From ff2f25320b29848538a3ef574f51900331f0de3d Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Fri, 18 Oct 2024 16:26:54 +0530 Subject: [PATCH 1/8] utility scripts --- seed_embeddings/gen_triplets.sh | 20 ++++++++++++++++++++ seed_embeddings/triplets.sh | 4 +++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 seed_embeddings/gen_triplets.sh diff --git a/seed_embeddings/gen_triplets.sh b/seed_embeddings/gen_triplets.sh new file mode 100644 index 000000000..26d2ddf45 --- /dev/null +++ b/seed_embeddings/gen_triplets.sh @@ -0,0 +1,20 @@ +# /usr/bin/bash + +PATH_VAR="/Pramana/ML_LLVM_Tools/IR2Vec_data/" + +echo "Data stored at $PATH_VAR" + +bash triplets.sh \ + ../build \ + 2 \ + "${PATH_VAR}ir_paths.txt" \ + "${PATH_VAR}triplets17.txt" \ + /usr \ + > "${PATH_VAR}log.txt" \ + 2> "${PATH_VAR}err.txt" + +echo "Triplets Generation Done" + +echo "Number of Triplets is " + +cat ${PATH_VAR}triplets17.txt | wc -l \ No newline at end of file diff --git a/seed_embeddings/triplets.sh b/seed_embeddings/triplets.sh index 1579f741e..bb11d7ae1 100644 --- a/seed_embeddings/triplets.sh +++ b/seed_embeddings/triplets.sh @@ -70,12 +70,14 @@ while read p; do fi USED_OPT[$a]=$opt DEBUG echo "opt from $opt" - ${LLVM_BUILD}/bin/opt-14 -S -$opt $p -o $tmpfile + ${LLVM_BUILD}/bin/opt-17 -S -$opt $p -o $tmpfile $COLLECT_BUILD/bin/ir2vec -collectIR -o $4 $tmpfile &>/dev/null let "a++" rm "$tmpfile" done & if [ $counter == 100 ]; then + echo "Current Triplet Count at " + cat $4 | wc -l sleep 20 counter=0 fi From 6c9284c2d4d7dc8d1fa4b02ffdd62f231c048504 Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Fri, 1 Nov 2024 11:57:56 +0530 Subject: [PATCH 2/8] rerunning training with ComPile dataset. New vocabs yet to be added --- seed_embeddings/OpenKE/generate_embedding.py | 4 +- .../OpenKE/generate_embedding_ray.py | 10 +- seed_embeddings/OpenKE/run_training_ray.sh | 26 +++ seed_embeddings/test_preprocess.py | 169 ++++++++++++++++++ seed_embeddings/triplets.sh | 10 +- 5 files changed, 207 insertions(+), 12 deletions(-) create mode 100644 seed_embeddings/OpenKE/run_training_ray.sh create mode 100644 seed_embeddings/test_preprocess.py diff --git a/seed_embeddings/OpenKE/generate_embedding.py b/seed_embeddings/OpenKE/generate_embedding.py index f7fa43cfa..b7318b7e4 100644 --- a/seed_embeddings/OpenKE/generate_embedding.py +++ b/seed_embeddings/OpenKE/generate_embedding.py @@ -180,7 +180,7 @@ def findRep(src, dest, index_dir): arg_conf = parser.parse_args() outfile = train(arg_conf) - + print("Train function exits") seedfile = os.path.join( arg_conf.index_dir, "embeddings/seedEmbedding_{}E_{}D_{}batches{}margin.txt".format( @@ -188,7 +188,7 @@ def findRep(src, dest, index_dir): ), ) - findRep(outfilejson, seedfile, arg_conf.index_dir) + findRep(outfile, seedfile, arg_conf.index_dir) print("Training finished...") print("seed file : ", seedfile) diff --git a/seed_embeddings/OpenKE/generate_embedding_ray.py b/seed_embeddings/OpenKE/generate_embedding_ray.py index 8eb70a73c..24efc3b44 100644 --- a/seed_embeddings/OpenKE/generate_embedding_ray.py +++ b/seed_embeddings/OpenKE/generate_embedding_ray.py @@ -36,11 +36,11 @@ def test_files(index_dir): print(entities, relations, train) if not os.path.exists(entities): - raise Exception("entity2id.txt not found") + raise Exception(f"{entities} not found") if not os.path.exists(relations): - raise Exception("relation2id.txt not found") + raise Exception(f"{relations} not found") if not os.path.exists(train): - raise Exception("train2id.txt not found") + raise Exception(f"{train} not found") def train(config, args=None): @@ -220,7 +220,7 @@ def reformat_embeddings(input_str): help="Path to the analogy file", required=False, type=str, - default="./analogies.txt", + default="/home/intern23002/iitH/ir2vec/IR2Vec/seed_embeddings/OpenKE/analogies.txt", ) arg_conf = parser.parse_args() @@ -286,7 +286,7 @@ def reformat_embeddings(input_str): param_space=search_space, tune_config=TuneConfig( search_alg=optuna, - max_concurrent_trials=12, + max_concurrent_trials=3, scheduler=scheduler, num_samples=128, ), diff --git a/seed_embeddings/OpenKE/run_training_ray.sh b/seed_embeddings/OpenKE/run_training_ray.sh new file mode 100644 index 000000000..44497718f --- /dev/null +++ b/seed_embeddings/OpenKE/run_training_ray.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# Define the directory path variable +INDEX_DIR="/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed" + +# Ensure the directory exists +if [ ! -d "$INDEX_DIR" ]; then + echo "Directory $INDEX_DIR does not exist. Exiting." + exit 1 +fi + +echo "$INDEX_DIR exists. Starting Training" + +LOG_PATH="$INDEX_DIR/log.txt" +ERR_PATH="$INDEX_DIR/err.txt" + +echo "LOGS stored at $LOG_PATH" +echo "ERR stored at $ERR_PATH" + + +# Execute the Python script with the directory variable +python3 generate_embedding_ray.py \ + --index_dir=/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed \ + --is_analogy=True \ + --dim=75 \ + > /Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/log.txt 2> /Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/err.txt diff --git a/seed_embeddings/test_preprocess.py b/seed_embeddings/test_preprocess.py new file mode 100644 index 000000000..69e4addf0 --- /dev/null +++ b/seed_embeddings/test_preprocess.py @@ -0,0 +1,169 @@ +# Part of the IR2Vec Project, under the Apache License v2.0 with LLVM +# Exceptions. See the LICENSE file for license information. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +# +""" This script generates entity2id.txt, train2id.txt and relation2id.txt """ + +# arg1 : path of the file generated by collectIR Pass + +import argparse +import os +import shutil + + +def getEntityDict(config): + uniqueWords = set() + # Iterate over all files in the specified folder + for filename in sorted(os.listdir(config.tripletFolder)): + filepath = os.path.join(config.tripletFolder, filename) + if os.path.isfile(filepath): + print(f"Reading from file {filepath}") + with open(filepath, "r") as file: + for line in file: + words = line.strip().split() + uniqueWords.update(words) + + uniqueWords = sorted(uniqueWords) + print(f"Unique entities found {len(uniqueWords)}") + + op = open(os.path.join(config.preprocessed_dir, "entity2id.txt"), "w") + entityDict = {} + op.write(str(len(uniqueWords)) + "\n") + for i, word in enumerate(uniqueWords): + op.write(str(word) + "\t" + str(i) + "\n") + entityDict[str(word)] = str(i) + op.close() + return entityDict + + +def getRelationDict(config): + max_len = 0 + for filename in sorted(os.listdir(config.tripletFolder)): + filepath = os.path.join(config.tripletFolder, filename) + if os.path.isfile(filepath): + print(f"Reading from file {filepath}") + with open(filepath, "r") as file: + for line in file: + length = len(line.strip().split(" ")) + max_len = max(max_len, length) + + maxArgs = max_len - 2 + relationDict = {} + + op = open(os.path.join(config.preprocessed_dir, "relation2id.txt"), "w") + print(f"Relations - {maxArgs+3}") + op.write(str(maxArgs + 3) + "\n") + relationDict["Type"] = "0" + relationDict["Next"] = "1" + + op.write("Type 0\n") + op.write("Next 1\n") + for i in range(maxArgs): + op.write("Arg" + str(i) + "\t" + str(i + 2) + "\n") + relationDict["Arg" + str(i)] = str(i + 2) + op.close() + + return relationDict + +def create_write_str(a, b, c): + return f"{a}\t{b}\t{c}\n" + +def createTrain2ID(entityDict, relationDict, config): + print("Generating train set") + opc = "" + nol = 0 + temp_file_path = os.path.join(config.preprocessed_dir, "train2id_temp.txt") + + + for filename in sorted(os.listdir(config.tripletFolder)): + filepath = os.path.join(config.tripletFolder, filename) + if os.path.isfile(filepath): + print(f"Reading from file {filepath}") + temp_file = os.path.join(config.tempDir, filename) + with open(filepath, "r") as file, open(temp_file, "w") as temp_file: + for sentence in file: + s = sentence.strip().split(" ") + s_len = len(s) + if s and s[0] != "": + if opc != "": + if s[0] not in entityDict: + print(sentence, s, s_len) + print(s[0] + " not found in entitiyDict") + if "Next" not in relationDict: + print("Next not found in relationDict") + temp_file.write(create_write_str( + entityDict[opc], entityDict[s[0]], relationDict["Next"] + )) + nol += 1 + opc = s[0] + temp_file.write(create_write_str( + entityDict[opc], + entityDict[s[1]], + relationDict["Type"] + )) + nol += 1 + for i, arg in enumerate(range(2, s_len)): + temp_file.write(create_write_str( + entityDict[opc], + entityDict[s[arg]], + relationDict[f"Arg{i}"] + )) + nol += 1 + + final_file_path = os.path.join(config.preprocessed_dir, "train2id.txt") + with open(final_file_path, "w") as final_file: + final_file.write(f"{nol}\n") + for filename in sorted(os.listdir(config.tempDir)): + temp_file_path = os.path.join(config.tempDir, filename) + if os.path.isfile(temp_file_path): + with open(temp_file_path, "r") as temp_file: + for line in temp_file: + final_file.write(line) + # Remove the temporary file to clean up + os.remove(temp_file_path) + + shutil.rmtree(config.tempDir) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser() + parser.add_argument( + "--tripletFolder", + dest="tripletFolder", + metavar="FILE", + help="Path of the director containing triplet files generated by collectIR pass.", + required=True, + ) + parser.add_argument( + "--preprocessed-dir", + dest="preprocessed_dir", + metavar="DIRECTORY", + help="Path of the triplet file generated by collectIR pass.", + default=None, + ) + config = parser.parse_args() + if config.preprocessed_dir is None: + config.preprocessed_dir = os.path.join( + os.path.dirname(config.tripletFolder), "preprocessed" + ) + i = 0 + while os.path.exists(config.preprocessed_dir): + i += 1 + config.preprocessed_dir = config.preprocessed_dir + str(i) + os.makedirs(config.preprocessed_dir) + + # create a temp folder to store train-temp-ids + config.tempDir = os.path.join( + os.path.dirname(config.tripletFolder), "temp_train" + ) + i = 0 + while os.path.exists(config.tempDir): + i += 1 + config.tempDir = config.tempDir + str(i) + os.makedirs(config.tempDir) + + ed = getEntityDict(config) + rd = getRelationDict(config) + createTrain2ID(ed, rd, config) + + print("Files are generated at the path ", config.preprocessed_dir) diff --git a/seed_embeddings/triplets.sh b/seed_embeddings/triplets.sh index bb11d7ae1..029893778 100644 --- a/seed_embeddings/triplets.sh +++ b/seed_embeddings/triplets.sh @@ -53,7 +53,7 @@ while read p; do a=0 USED_OPT=() while [ "$a" -lt "$NO_OF_OPT_FILES" ]; do # this is loop1 - tmpfile=$(mktemp /tmp/IR2Vec-CollectIR.XXXXXXXXXX) + tmpfile=$(mktemp ${PATH_VAR}/tmp/IR2Vec-CollectIR.XXXXXXXXXX) opt_index=$((RANDOM % 6)) DEBUG echo "opt_index from $opt_index" opt=${OPT_LEVELS[$opt_index]} @@ -73,12 +73,12 @@ while read p; do ${LLVM_BUILD}/bin/opt-17 -S -$opt $p -o $tmpfile $COLLECT_BUILD/bin/ir2vec -collectIR -o $4 $tmpfile &>/dev/null let "a++" - rm "$tmpfile" + # rm -rf "$tmpfile" done & if [ $counter == 100 ]; then - echo "Current Triplet Count at " - cat $4 | wc -l - sleep 20 + echo "========= PAUSE =========" + rm -rf ${PATH_VAR}/tmp/IR2Vec-CollectIR* + sleep 3 counter=0 fi From c9136ba7cb42a8ae040688005cc787dd1066de9e Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Mon, 18 Nov 2024 16:57:07 +0530 Subject: [PATCH 3/8] replacing vocabulary files --- vocabulary/seedEmbeddingVocab100D.txt | 131 +++++++++++++------------- vocabulary/seedEmbeddingVocab300D.txt | 131 +++++++++++++------------- vocabulary/seedEmbeddingVocab75D.txt | 131 +++++++++++++------------- 3 files changed, 204 insertions(+), 189 deletions(-) mode change 100644 => 100755 vocabulary/seedEmbeddingVocab100D.txt mode change 100644 => 100755 vocabulary/seedEmbeddingVocab300D.txt mode change 100644 => 100755 vocabulary/seedEmbeddingVocab75D.txt diff --git a/vocabulary/seedEmbeddingVocab100D.txt b/vocabulary/seedEmbeddingVocab100D.txt old mode 100644 new mode 100755 index f026c5764..0fe38d5be --- a/vocabulary/seedEmbeddingVocab100D.txt +++ b/vocabulary/seedEmbeddingVocab100D.txt @@ -1,63 +1,68 @@ -add:[-8.52362216e-02, -2.45945796e-01, -4.24607731e-02, 2.64923483e-01, -1.41214542e-02, -1.07707255e-01, 4.51593101e-02, 1.02487214e-01, -1.48341414e-02, 1.81787178e-01, 6.67016208e-02, 4.46189977e-02, -8.23750347e-02, 1.83093518e-01, 3.32678035e-02, -1.46622390e-01, -4.92643900e-02, -2.55224146e-02, 6.04326949e-02, 1.88715130e-01, -3.68193164e-02, 6.94231167e-02, 4.10126410e-02, -6.84764013e-02, 1.23058945e-01, -9.83736390e-05, -5.54158911e-03, 2.94519085e-02, 2.26749685e-02, 1.17240392e-01, 6.11324720e-02, -1.81771517e-01, -1.76415052e-02, -4.01592515e-02, 1.78097621e-01, 7.06670852e-03, -4.57172357e-02, -1.50619969e-01, -9.44827124e-02, -1.75480068e-01, -7.60255978e-02, 1.07171066e-01, 2.22498715e-01, 7.22258165e-02, 7.20588341e-02, -1.16421148e-01, -9.41838771e-02, 1.80813923e-01, -8.05889741e-02, 1.46086052e-01, -9.98349935e-02, 3.29788476e-02, -9.92206857e-02, 9.08804759e-02, 3.78689431e-02, 5.88943586e-02, -4.59491797e-02, -8.29120278e-02, 7.95054361e-02, 1.78439990e-02, -2.58509982e-02, 7.56616369e-02, 1.04568325e-01, -1.56202599e-01, -2.57734563e-02, 1.93596855e-02, 1.29040807e-01, -8.24761093e-02, -1.73545837e-01, 1.42969966e-01, -1.28778622e-01, -3.95107232e-02, 1.33133652e-02, -3.37289199e-02, -6.24400079e-02, -1.31070897e-01, -4.30826917e-02, -1.26567945e-01, -2.15651900e-01, -5.67506291e-02, -3.29258330e-02, 1.65608257e-01, -1.88492145e-02, 2.33287752e-01, 3.00378054e-02, -1.76738545e-01, -8.04325193e-02, 1.87702760e-01, -2.39736848e-02, -9.85645577e-02, 3.72615233e-02, -1.12956636e-01, -9.50063169e-02, 3.42431143e-02, 1.22220606e-01, -5.39523130e-03, 1.98720489e-03, 9.11523402e-03, -6.93807155e-02, 6.17282577e-02] -alloca:[-0.09549255, -0.12557219, 0.03379089, 0.12109557, -0.03531531, -0.2551805, 0.10788739, 0.09700596, -0.01370677, 0.1135722, 0.07690978, 0.05116574, -0.09614895, 0.19678918, 0.14742346, -0.00976098, 0.24440478, -0.03487564, -0.05972337, -0.07113709, -0.04069309, -0.00905408, 0.09381753, -0.05227873, 0.0185564, 0.00785588, 0.10815099, 0.09986073, 0.0029005, 0.12109574, 0.08769628, -0.07261439, -0.04622762, -0.11434357, 0.31857088, 0.05211561, -0.0501864, -0.08464269, -0.05009941, -0.16629553, -0.10458375, 0.03947812, 0.08374927, 0.02248335, 0.07524205, 0.12703352, 0.02529348, 0.05168853, -0.05606319, -0.13958237, -0.0585564, -0.05144294, -0.11440989, 0.12794414, 0.01429109, -0.02604704, 0.04282403, -0.17824344, -0.00103301, -0.00441383, -0.1290221, 0.11616968, 0.17841731, -0.17370644, 0.01878525, -0.13822994, 0.29534182, -0.08290374, -0.26018453, -0.2423333, 0.06269401, 0.15722081, 0.05572377, 0.03796894, 0.0097774, -0.09503853, -0.03461437, -0.18860193, 0.05917948, -0.05421929, 0.1554059, 0.06737203, 0.12789263, 0.18676774, -0.03264643, -0.14613546, 0.10640658, 0.04788931, 0.05284823, -0.07678876, -0.15884072, -0.09681277, -0.20900938, 0.13614763, 0.11053005, -0.01231453, 0.0082564, 0.01286345, 0.05174101, -0.03757114] -and:[-0.0881869, -0.1832501, -0.02236259, -0.08309272, -0.01707565, -0.09593864, 0.05584465, 0.11377291, 0.0052051, 0.33537892, -0.02086726, -0.04760219, -0.07862076, 0.17689508, 0.06404671, -0.24831565, -0.04806908, -0.01249005, 0.06386451, 0.17768936, -0.03290997, 0.07213664, 0.0320717, -0.06150476, 0.08116434, 0.00066787, -0.09663099, 0.09602754, 0.02356921, 0.12101333, 0.05900703, -0.16276178, -0.03739112, -0.03569444, 0.15475409, -0.07160591, -0.04432394, -0.09916383, -0.00070206, -0.13641287, -0.0825344, 0.09731495, 0.21391882, 0.05829814, 0.16758765, 0.17819895, -0.10077256, 0.01100022, -0.15785712, -0.10925666, -0.19227467, 0.02036687, 0.03744258, 0.0705176, 0.01200844, 0.06924565, 0.02984295, 0.00166557, 0.01469694, 0.01338413, 0.00133804, 0.0685681, 0.06490856, -0.13547117, 0.13122046, -0.04225351, 0.12522636, -0.07368809, -0.23429681, 0.07449005, 0.08751217, -0.01046039, 0.03592191, 0.02029108, -0.10386209, 0.05748203, -0.27302966, -0.12220228, 0.09895118, -0.04531586, -0.02545726, 0.03405684, -0.01663586, -0.09172897, -0.02909598, -0.1601327, 0.08839633, 0.0608284, -0.09534211, -0.07028268, 0.03571701, -0.10825088, -0.11168069, 0.02237209, 0.09868738, -0.0014685, -0.00517186, -0.01344037, -0.09333953, -0.03477098] -ashr:[-0.17676029, 0.10313923, -0.00422224, 0.04140399, 0.07537024, -0.09347995, 0.03889775, 0.1937052, 0.03877834, 0.12433453, -0.05621453, -0.09342647, 0.06852726, 0.11960614, 0.2329826, -0.08239498, -0.24359159, -0.02925007, 0.06965269, 0.05229177, -0.07672995, 0.02271152, 0.06093349, -0.01333139, 0.08810728, -0.0650942, -0.02691983, 0.11387724, 0.12446124, 0.08896013, 0.10819702, -0.05356165, -0.16467887, -0.13486785, 0.18615717, 0.09554695, -0.08764168, -0.00645575, -0.06144961, -0.2157099, -0.00717567, 0.02715934, 0.19245613, -0.02020936, -0.2103456, 0.01254946, -0.09238755, -0.08276135, 0.19606642, -0.14044479, -0.16258587, -0.1610684, -0.10104254, 0.15536247, -0.21380995, 0.06143969, -0.00510657, 0.06693038, 0.12561001, 0.05790403, 0.11904424, 0.06015869, 0.13805872, -0.34340182, -0.07052808, -0.07914555, 0.2187202, -0.05404146, 0.01415937, 0.01479177, 0.18482208, 0.0223961, -0.01074133, 0.18871637, -0.03872506, 0.02291136, 0.05926037, -0.1554712, -0.04937316, 0.03572288, 0.13166799, 0.3216803, -0.0597387, -0.10533224, 0.04918348, -0.12194781, 0.09272628, 0.08853518, 0.03546468, 0.00948116, -0.01518097, -0.10260459, -0.17166473, 0.1567235, 0.10187692, -0.04260992, 0.05165593, 0.09330627, -0.01242476, -0.10910615] -bitcast:[-2.07878817e-02, -8.23711231e-02, 1.00722564e-02, 1.34550288e-01, -4.26665656e-02, -1.56117603e-01, 3.60176153e-02, 1.64358735e-01, 7.73761645e-02, 1.26678392e-01, -8.82288069e-03, -8.71955529e-02, -1.34099036e-01, 2.37952948e-01, -1.03015065e-01, -3.16375331e-03, -2.05897301e-01, -2.51553040e-02, 1.34449201e-02, 1.17931567e-01, 1.30053461e-02, 7.81119913e-02, 5.57484552e-02, -1.52201191e-01, 5.92403876e-06, -3.54858898e-02, -4.84898388e-02, 4.37163413e-02, -1.17184460e-01, 1.56913966e-01, 9.40292403e-02, -4.74243090e-02, 9.07661915e-02, -1.45079255e-01, 1.06205590e-01, -2.15000622e-02, -7.28723779e-02, -1.37063980e-01, 7.85234869e-02, -3.06736454e-02, -8.54443237e-02, -3.38093308e-03, 2.71273911e-01, 2.16092374e-02, 2.23694965e-01, 3.12910303e-02, 3.58200893e-02, 1.54731227e-02, -1.15724750e-01, -1.67987525e-01, -1.97159931e-01, -8.45486671e-02, -6.90428391e-02, -1.85478870e-02, -1.13298140e-01, -6.34974837e-02, 8.66320208e-02, -7.73959830e-02, -7.51477014e-03, -4.42927331e-02, 1.62011728e-01, 6.54485524e-02, 1.05205335e-01, -3.28130648e-02, 7.44132102e-02, -2.36125980e-02, 2.33616680e-02, -4.82202284e-02, -1.56079859e-01, 6.80682734e-02, 2.08332837e-01, 9.13671404e-02, 2.21654788e-01, -1.72201872e-01, -1.04779126e-02, -4.54562865e-02, 2.02677418e-02, 1.64413229e-02, -5.17942458e-02, 1.12812768e-03, 2.52170950e-01, 1.47572741e-01, -4.16345848e-03, -8.78667831e-02, 8.03434253e-02, -3.77238467e-02, -2.80345604e-03, 1.32836118e-01, -5.94768003e-02, 1.26690671e-01, -5.75769730e-02, -6.82438612e-02, -1.56382814e-01, 1.02906309e-01, 7.42264315e-02, -4.65768129e-02, -4.51054312e-02, 2.40943264e-02, -2.39319339e-01, -6.20513149e-02] -br:[-0.099177, 0.3150131, -0.04487686, -0.01492688, -0.04303256, -0.19340976, 0.01871662, 0.08351724, 0.0033876, 0.04619076, 0.07775693, 0.03258252, -0.09622495, 0.12494505, -0.02928186, 0.12002835, -0.1534576, -0.01619091, 0.03424224, 0.13413754, -0.02958547, 0.06926636, 0.01635612, 0.04095785, 0.010296, 0.00197415, 0.09132183, 0.05388586, -0.09623589, 0.13405299, 0.09094108, -0.09166401, -0.06718332, -0.0475782, -0.0073903, -0.02782297, -0.04918024, -0.09153914, -0.02933892, -0.14185783, -0.12603974, 0.12627149, 0.23379128, 0.0762573, 0.11509198, 0.1119738, -0.03334486, 0.14956051, -0.17248306, -0.04407349, -0.09998709, -0.12013067, -0.17310591, -0.02307913, 0.12889126, -0.01481523, -0.08285125, 0.04331553, 0.05079079, 0.0329731, 0.25788632, 0.09153011, 0.08102073, -0.16415507, 0.14843951, 0.06474738, 0.1360627, -0.08181168, -0.18541642, 0.1441945, 0.1329959, -0.08139568, 0.04567936, -0.02717791, -0.10730068, -0.21552096, -0.09304699, -0.27975485, -0.21394645, -0.05183838, 0.14562888, 0.21152635, -0.0828347, -0.22074844, 0.02477005, -0.08336065, 0.01033397, -0.09007299, -0.17637205, -0.1772377, -0.05019882, -0.10411737, -0.08792149, 0.19512525, 0.11445063, 0.00522814, 0.03092966, 0.04109679, 0.05382293, -0.03247872] -call:[-1.04701392e-01, -6.70794174e-02, 4.89112502e-03, -1.47286300e-02, 2.04647966e-02, -1.97413385e-01, -3.58250663e-02, 1.59250021e-01, -1.05780900e-01, 1.55995816e-01, 5.03775179e-02, 8.49897489e-02, -9.04796049e-02, 2.17702419e-01, -2.23092780e-01, -5.64655662e-02, 6.14847466e-02, -3.92033309e-02, 7.84037113e-02, 9.65412706e-02, -3.16415839e-02, 6.42274767e-02, 2.68767532e-02, -2.76047647e-01, 7.42645115e-02, -1.03149582e-02, 5.46699017e-03, 4.80250157e-02, 1.09731639e-03, 1.77297935e-01, 7.34938905e-02, -2.02615678e-01, -4.62299883e-02, -1.33786008e-01, -8.89935810e-03, -1.12955518e-01, -8.67902562e-02, -1.19207859e-01, -1.41892117e-02, -1.07120745e-01, -5.56721240e-02, 1.47580907e-01, 2.27435231e-01, 8.31519589e-02, -1.50715411e-01, 2.31529847e-01, -1.11571252e-02, 2.63131887e-01, 6.14891164e-02, -1.42435431e-02, -2.70974010e-01, 5.35942391e-02, -1.48696870e-01, -3.24554816e-02, 4.26823422e-02, 3.30416746e-02, -8.73533264e-02, -2.07553096e-02, 7.73261711e-02, 1.87988579e-02, 1.71670690e-02, 3.21571231e-02, 8.45122114e-02, -2.24206865e-01, 2.67547332e-02, -2.14349806e-01, 1.82695374e-01, -1.00010969e-01, -8.99534896e-02, -1.20487973e-01, 7.94163868e-02, 3.91301289e-02, 1.59707248e-01, -5.97064719e-02, -1.63278416e-01, 9.43717882e-02, -9.63501409e-02, -1.49536476e-01, -3.67824845e-02, -1.04848124e-01, 1.14421330e-01, 2.97050446e-01, 9.69401076e-02, -6.76914304e-02, -2.94748805e-02, -1.53186977e-01, 9.19972137e-02, -5.97985834e-02, -2.77386606e-01, 3.22145596e-02, 4.07968536e-02, -1.31066158e-01, -2.48400986e-01, 3.02040756e-01, 1.45442486e-01, -5.20051904e-02, -9.17151477e-03, 1.16061055e-04, -1.23684011e-01, -1.22088194e-01] -constant:[-0.08644564, 0.04720904, 0.3374407, -0.18976857, 0.0811578, -0.33932808, 0.4035224, -0.07799068, -0.04368839, 0.43955603, -0.22769684, 0.35501516, 0.20531619, -0.00515914, -0.22324213, 0.09688146, -0.05597144, -0.29780877, -0.1481954, 0.08998086, 0.28699994, -0.03343057, 0.36576456, 0.29125366, -0.07470614, 0.13325071, 0.05129022, 0.10100243, -0.23313886, -0.13193938, -0.2418513, -0.07044391, 0.04079618, -0.3372998, 0.09795056, 0.40038717, 0.05735227, -0.49383435, -0.35446408, -0.23330846, 0.06698798, -0.0407949, -0.00064809, 0.40583038, -0.19727792, 0.18831186, -0.37656286, 0.2940002, -0.22246473, -0.20054726, 0.24802186, 0.25552902, 0.12516917, 0.14362192, 0.18986972, -0.09164374, 0.00373898, 0.09180713, -0.19041973, 0.24212387, 0.12381089, 0.31448025, -0.21835794, -0.16620648, -0.18439929, -0.17649852, 0.06383282, -0.3840267, 0.16084366, -0.16367114, 0.27042413, 0.11560916, 0.02215447, 0.26064414, 0.04134811, -0.09941078, -0.09943497, -0.0342853, 0.01636235, -0.11231827, -0.04950193, 0.5263929, 0.42759675, 0.10256311, 0.10700524, 0.04988717, -0.09191196, 0.06891631, -0.09606853, -0.30359405, 0.00320533, 0.11609415, 0.10246228, 0.16086128, 0.41071257, 0.18106623, 0.22133847, 0.12628044, -0.33202705, 0.09903702] -extractelement:[0.11015881, 0.1817078, -0.0108996, 0.0327295, -0.0338932, -0.15291688, 0.03729693, 0.02994337, 0.02760435, 0.2325014, 0.06247658, -0.11473273, -0.03262726, 0.21863921, -0.09958997, 0.19547632, 0.03035412, -0.05531217, -0.00231834, 0.14383015, 0.00248359, 0.07008117, 0.0485259, -0.12056551, -0.0664911, 0.02285596, 0.03037409, 0.00277384, -0.09285001, 0.08288768, 0.03289559, -0.16844527, -0.02132127, -0.14515994, -0.09100385, -0.0477846, -0.07270827, -0.12921655, -0.03342405, 0.02400822, 0.04773097, -0.10363717, 0.17770055, -0.04277344, -0.11009358, -0.04405073, -0.11866957, -0.03764169, -0.05859337, 0.04189719, -0.11980305, -0.0734432, -0.04584158, 0.14746214, 0.22073017, 0.22711752, -0.2523686, -0.10142963, 0.09167197, 0.23874976, 0.16649675, 0.01258223, 0.0985437, -0.22548202, 0.05445502, -0.04006629, 0.1540616, -0.05681247, -0.17387952, -0.15864551, -0.05983451, -0.12169134, 0.16300464, 0.19893873, -0.14403379, -0.11372939, 0.01181346, 0.03729149, 0.16335742, 0.09760231, -0.03500843, 0.14781824, 0.07057919, -0.05715268, -0.02241548, -0.16599551, 0.12072779, 0.1959893, 0.00652399, -0.0862033, 0.14193566, -0.15085481, -0.14382704, -0.03997584, 0.16362527, -0.09340642, 0.04757507, -0.08835962, -0.13892448, 0.02944472] -extractvalue:[0.12543365, 0.17244136, -0.0085203, 0.0131818, 0.12192795, -0.03234904, -0.0318835, 0.06758608, -0.11469257, 0.08445198, 0.03277346, 0.17310363, 0.03665498, 0.19127783, 0.0546701, -0.02470871, 0.17831165, -0.04748409, 0.0170707, 0.16792035, 0.01747213, 0.06124788, -0.01036114, 0.21252973, -0.18293281, 0.02461197, 0.0584524, -0.1572164, -0.18066396, 0.05628143, 0.12265512, -0.07449167, -0.03768009, -0.22513647, 0.0433997, -0.08851199, -0.09708109, -0.08637014, 0.20144814, -0.03303384, 0.07125487, 0.22310762, 0.16541758, 0.02135657, -0.05870954, 0.06865649, -0.03434946, 0.1320928, 0.03848596, -0.06029726, -0.1514179, -0.11752907, -0.10805283, -0.00667613, -0.05696455, 0.23884058, 0.07880201, -0.00506071, 0.11066493, 0.19166665, -0.05263668, 0.04985057, -0.01267756, -0.06756993, 0.05341687, -0.02555228, 0.10682516, -0.12895356, -0.20898606, 0.00580245, 0.14753044, -0.10811523, 0.12658529, -0.14201358, -0.18486081, -0.03794788, -0.01547229, -0.06546687, 0.00367165, -0.08506455, 0.03959191, 0.12186965, -0.07355496, 0.00913287, 0.02975254, -0.10356234, -0.0088994, 0.25191072, -0.05293767, -0.05974568, 0.06370568, -0.09822353, -0.10034354, 0.0989753, -0.11060101, 0.03015978, -0.04115984, -0.10316055, -0.08556107, 0.05772397] -fadd:[-3.25232595e-02, 5.97966239e-02, -2.50501605e-03, -2.41671860e-01, -1.52665913e-01, -1.24359682e-01, -8.03226829e-02, 1.29642203e-01, -1.59501564e-02, 1.40666664e-01, 8.39213580e-02, 4.61006351e-02, -9.25673097e-02, 1.98170781e-01, -1.09630287e-01, 4.72728461e-02, -6.46649897e-02, -2.74648517e-02, 2.02192622e-03, 1.81441516e-01, 1.00758284e-01, 6.08332902e-02, 8.94991308e-02, 2.63617411e-02, 1.40940383e-01, -4.16390822e-06, 1.08313389e-01, 2.59378236e-02, -1.33188190e-02, 1.23170756e-01, 7.33651593e-02, -1.85697570e-01, 1.11621693e-01, -1.12001859e-01, 3.31167787e-01, 2.48832069e-02, -4.89485338e-02, -1.66560456e-01, 2.34583430e-02, -5.56070581e-02, -9.01997834e-02, 1.03788309e-01, 2.46821225e-01, 1.28473260e-03, 1.50571883e-01, -1.87562052e-02, -6.71022683e-02, -1.91006325e-02, -1.74950168e-01, 9.15326923e-02, -9.61406156e-02, 1.26645520e-01, 7.83024654e-02, 2.19781641e-02, 1.57443378e-02, 2.66764034e-02, -1.28983065e-01, -6.55469820e-02, 8.46516714e-02, -4.30844575e-02, 2.67171681e-01, 6.13842383e-02, -1.07230216e-01, -8.59633535e-02, 1.72657594e-01, -3.23978215e-02, 3.25019495e-03, -8.00509006e-02, -1.33644626e-01, 9.82369576e-03, 1.31264478e-02, -8.20175856e-02, 9.46557242e-03, -6.53434452e-03, -4.88522872e-02, 1.28366530e-01, -1.38745621e-01, -1.28405333e-01, -2.83333976e-02, -5.56827076e-02, -1.03522474e-02, 5.20775020e-02, -9.03711002e-03, -1.90814480e-01, 2.99296528e-02, -1.22030959e-01, 9.06203166e-02, 1.90227166e-01, -8.11614543e-02, -1.64504915e-01, 5.31688742e-02, -1.14277504e-01, 6.30267933e-02, 1.96864188e-01, 1.05707690e-01, -4.49874587e-02, -5.31426445e-03, -2.54788101e-02, -1.61672890e-01, -4.85686846e-02] -fcmp:[-0.07419012, 0.11684816, -0.03898409, -0.22943959, -0.1401029, -0.10245115, 0.07488028, 0.10676046, 0.10444923, 0.17854697, 0.06504504, 0.03869213, -0.08444435, 0.19932303, -0.16914082, -0.0881528, -0.12249286, 0.10173966, -0.03760519, 0.17254528, -0.01906643, 0.08693043, -0.04417108, -0.02678977, 0.24512264, -0.00213834, 0.10567795, 0.02001777, -0.07972224, 0.09328899, 0.05786212, -0.17564139, 0.0139377, 0.06468958, -0.09446138, -0.04214328, -0.04553512, -0.06388254, -0.00670787, -0.02420081, 0.06109492, 0.09476268, 0.20108542, 0.06812051, 0.14059882, 0.02038882, -0.00827774, 0.04590783, -0.0684548, -0.11071896, -0.09700356, 0.01976173, -0.04335584, -0.06076335, 0.01395286, 0.06785708, -0.02151516, -0.00742891, 0.00734934, 0.01795086, -0.05580859, 0.06759918, 0.02109922, -0.12775181, 0.15562968, -0.07587544, 0.10828868, -0.06900802, -0.21700971, 0.21987149, 0.04424175, -0.02283643, 0.03176983, -0.039738, 0.03648339, -0.0978855, -0.13666598, -0.03817528, 0.03170637, -0.03291135, -0.03295244, 0.02152793, 0.14705418, 0.16685458, -0.02645591, -0.15356724, 0.12431041, 0.1495376, -0.07357807, -0.14828467, 0.03658584, -0.10417088, -0.12795211, 0.11975849, 0.09669127, -0.0147695, 0.07744023, 0.02918604, -0.11017347, -0.00259428] -fdiv:[-0.02851935, -0.02977753, 0.04797881, -0.16002922, -0.2739994, -0.05571995, 0.0347727, 0.07976963, 0.0122891, 0.07545689, 0.10755033, -0.07777403, -0.01965169, 0.16306162, 0.06462174, -0.06871983, 0.13782021, -0.01812159, 0.03680438, 0.17279354, -0.08469507, 0.06009267, 0.05078811, 0.05675481, 0.21506754, 0.07695015, 0.15413374, 0.06144127, -0.13497467, 0.08842142, -0.03839129, -0.20846984, 0.03480081, -0.08377707, 0.10487233, 0.07327569, -0.02101763, -0.13965248, 0.08109489, 0.1307609, -0.00660455, 0.10593361, 0.18417752, -0.02969596, -0.10129374, -0.00834186, -0.11685359, 0.24274711, -0.12930447, -0.06328312, -0.07138425, -0.14048494, -0.047382, 0.12680247, -0.06136982, 0.04713649, -0.24366245, -0.04119052, 0.0915467, -0.03433002, 0.23467347, -0.02806181, -0.08923019, -0.14692703, 0.11747012, -0.05399193, 0.01171021, -0.07405037, -0.09436411, -0.00142008, -0.11841816, -0.03983841, -0.10584622, 0.08862869, -0.15353557, -0.11465039, -0.04347554, -0.05438951, 0.0359162, 0.00674325, -0.00864024, 0.05938205, 0.11206808, 0.07246841, -0.01052807, -0.12588255, 0.08821127, 0.0906138, -0.07537003, -0.11216818, 0.08904202, -0.12487537, 0.04114659, 0.20806828, 0.14672591, -0.06176198, 0.03967106, 0.06796943, 0.02784103, -0.06661242] -floatTy:[-0.03554066, -0.07219202, 0.03032841, 0.08395071, 0.16654263, 0.02469288, 0.10792953, -0.15616006, -0.13037354, -0.05308032, 0.24445558, -0.03207595, -0.08020614, 0.09474771, -0.2580746, 0.07353462, -0.03670619, -0.08898182, 0.07204551, -0.00443542, 0.20582072, -0.15966927, -0.00936408, 0.09222627, -0.10127913, 0.20440692, -0.05475397, -0.09951981, 0.04184861, 0.01689406, 0.03628857, 0.12894958, -0.01189231, -0.04669143, -0.02333387, -0.20174949, 0.08055072, 0.00758745, 0.15534282, 0.22473206, 0.1762469, 0.00782499, -0.15731563, -0.12556803, 0.00441859, 0.00623101, -0.01149804, -0.00973536, -0.00287221, 0.18064079, 0.1013004, 0.05668283, -0.09545495, -0.08564378, -0.18737721, 0.15224598, 0.02284791, -0.02866246, -0.03221876, -0.14118108, -0.02214616, -0.0591343, -0.19087502, -0.04007247, 0.02534897, 0.04076721, -0.20957634, 0.11054103, -0.03581158, -0.07319796, -0.1329344, -0.17861629, 0.00208901, -0.24149635, -0.01556128, -0.11251435, 0.05853895, 0.1283922, -0.08415353, -0.10733026, 0.05733407, -0.09854538, -0.03878151, -0.08442533, -0.08745051, 0.06319115, -0.01616211, -0.14556316, -0.06591965, 0.16206527, -0.00886989, 0.19155751, -0.05300944, -0.05398215, 0.05403015, -0.08226205, 0.14091259, 0.1119808, 0.0555094, -0.11667454] -fmul:[-0.1185753, -0.13615306, 0.00484938, 0.04165395, -0.03317599, -0.13718367, 0.04906572, 0.00778528, 0.0764716, 0.16935678, 0.04816304, -0.0859753, -0.02958203, 0.21470581, 0.08905386, -0.11209283, 0.22241114, -0.03412962, 0.09455141, 0.1751519, 0.12894607, 0.03504061, 0.03827254, 0.13363554, -0.02161996, -0.03856876, 0.1392877, 0.00325197, -0.08855918, -0.00143537, 0.00789888, -0.21859562, 0.00343166, 0.06750929, -0.00813178, -0.06970946, -0.08563176, -0.11500722, 0.07916944, -0.00276161, 0.01209736, 0.18866448, 0.16641852, 0.01604792, 0.07490443, 0.15995884, -0.17711124, -0.05433702, -0.1643166, -0.1351143, -0.13869353, -0.12550355, -0.07411662, 0.10539798, 0.14160272, 0.14297834, -0.2371137, -0.05379802, -0.02138153, -0.00532857, 0.2032415, -0.05146542, 0.06547051, -0.11811713, 0.04982863, -0.09374387, -0.07902364, -0.06969839, -0.03203138, 0.04430814, 0.18096791, -0.00415012, -0.06312709, 0.12429202, -0.07620568, -0.11050078, -0.25231045, -0.13165767, 0.02669261, 0.00831437, -0.04078189, 0.12697074, 0.09287174, 0.10948132, 0.00567487, -0.18004748, 0.11385567, -0.01855352, -0.05886371, 0.00981937, 0.093337, -0.14039992, -0.02097351, 0.12466957, 0.16667524, -0.08684891, 0.03179542, 0.06828923, 0.01812844, -0.01773021] -fneg:[-0.07967768, 0.0257382, -0.09740639, 0.06787898, -0.12553738, -0.1588254, 0.0404582, 0.05235421, -0.13278304, -0.03190799, 0.01627852, -0.01708365, -0.16922686, 0.24339387, 0.04991701, 0.00759817, 0.06988426, -0.03634616, 0.05133811, 0.19829163, 0.00449598, 0.00958101, 0.02064109, -0.01307286, -0.143177, -0.01431423, 0.06909844, -0.06664465, -0.23599209, 0.0659041, 0.1429004, -0.22357555, 0.0963949, 0.19576049, 0.09289518, 0.01604964, -0.08336593, -0.11384837, 0.20007004, 0.12722318, -0.01336442, 0.03537125, 0.17940804, -0.04175236, 0.09377784, -0.03606307, -0.14674656, 0.03877357, -0.0593932, 0.03363463, -0.08947524, -0.10942028, -0.11241627, 0.05974098, -0.07781969, 0.1762602, -0.31520557, -0.04519112, 0.12528142, 0.07177059, 0.14049791, 0.02143748, -0.06559046, -0.13712324, 0.26525593, -0.08017721, 0.01999342, -0.13411684, -0.17971659, -0.06095642, 0.10666642, 0.03721513, 0.01934452, 0.12616944, -0.1326853, 0.16727997, -0.01583993, -0.18841387, -0.14675601, -0.15292367, 0.13459764, 0.13021947, 0.07058944, -0.13849314, -0.05655656, -0.12005194, 0.20023838, -0.05602298, 0.11965046, -0.07377418, 0.10417405, -0.02669079, -0.15781054, -0.04316432, 0.15543202, -0.0684517, 0.03773818, 0.11693568, -0.1733359, -0.0564064] -fpext:[-0.18426687, -0.15026188, 0.03890847, 0.03927221, -0.15648182, -0.16027395, 0.07988105, 0.1047267, 0.05574889, 0.2746149, 0.01715003, -0.07346141, -0.01752456, 0.2899341, -0.05475452, 0.00680553, 0.03047421, -0.03468033, 0.10530987, 0.22326142, -0.07591507, 0.080363, 0.07436662, -0.11116834, -0.07970588, -0.03727131, 0.1713403, 0.06791274, -0.08743562, 0.10569161, 0.03404247, -0.22793487, -0.05725041, -0.25389344, -0.05132939, -0.00793995, -0.04231216, -0.11769468, 0.13232592, -0.02173601, -0.03989946, -0.06245739, 0.23180124, -0.02189647, 0.14222233, -0.03469254, -0.06834032, 0.07855535, 0.00904491, -0.08018422, -0.04319506, -0.15872872, -0.04009562, 0.00186763, -0.04621039, 0.15363674, 0.00346706, -0.17390577, 0.01670262, 0.01854105, 0.18079011, -0.01880468, 0.0012762, -0.16248964, 0.17998855, -0.09201614, 0.03061481, -0.04298611, -0.26406047, 0.15737927, -0.03901811, 0.09908602, 0.19651212, -0.03613302, -0.1296272, 0.02149157, -0.2209785, 0.01423955, 0.09273185, -0.10507593, 0.13089411, 0.02410568, 0.09846523, 0.1331036, 0.01303839, 0.10926238, -0.02651915, -0.05778711, -0.16960011, 0.00833431, 0.04065713, -0.05367739, 0.03795866, 0.08211508, 0.12076677, -0.12073553, -0.00664333, 0.11101033, -0.15964875, -0.0666934] -fptosi:[-0.0554697, 0.11791588, -0.0013198, 0.12632935, 0.00447158, -0.14492078, 0.03891406, 0.09680992, 0.08548377, 0.09063601, 0.09051156, 0.05034095, -0.09754931, 0.1269517, -0.03805733, 0.04344397, 0.03175728, -0.04808291, 0.10078087, 0.1149365, -0.03799108, 0.07591638, -0.05638763, -0.0359469, 0.19751169, 0.0053115, 0.11815924, 0.0793542, 0.07977456, 0.15707728, 0.03038415, -0.18727718, -0.1367524, 0.07888949, 0.26762837, -0.03323869, 0.0277237, -0.07629527, 0.00876829, -0.07013759, -0.08821512, -0.04512594, 0.153249, 0.12013132, -0.07932937, 0.18108295, -0.1225926, 0.18256319, -0.18706508, 0.16552396, -0.25803035, 0.17260392, 0.08509452, 0.10007568, 0.09217111, 0.06008356, -0.00172302, -0.04164677, 0.03119178, 0.0876347, -0.13216065, 0.03179015, 0.18608956, -0.23122469, 0.14319035, -0.08295162, -0.06081326, -0.08201712, -0.03556689, 0.10634129, 0.06310246, -0.08388993, -0.14447589, 0.05015244, -0.18503955, -0.11269514, -0.31860548, -0.03589016, -0.12194233, 0.01626188, -0.08501407, 0.22369611, 0.18216018, -0.02301488, -0.11480652, -0.18599588, 0.07168116, 0.04052822, -0.05108454, -0.18706018, 0.14226672, -0.11834884, 0.03589581, 0.08744145, 0.15074429, 0.0439859, -0.02189867, -0.00480578, 0.05460484, -0.0682525] -fptoui:[0.01534599, 0.11102642, -0.06433313, 0.12988476, -0.1834939, -0.16949226, 0.01729213, 0.08380955, 0.11952619, -0.01518821, 0.07657523, -0.04023485, -0.07571229, 0.22758603, 0.08751385, 0.01347839, 0.02241973, 0.1481322, 0.04303844, 0.10267215, -0.08324239, 0.0142575, 0.00936347, -0.22054647, 0.25634748, -0.0381539, -0.05048601, -0.07610298, 0.1577609, 0.08765596, 0.02920991, -0.17836185, -0.15339334, 0.04885783, 0.08072589, -0.03573016, -0.18523148, -0.17444612, -0.09178676, 0.01785605, 0.07531517, 0.04415886, 0.22509561, 0.02334466, 0.06014464, 0.08462746, -0.10575932, 0.1549868, -0.25414446, -0.08759841, -0.24022678, -0.16427213, 0.10241618, -0.11295955, 0.12617837, -0.1453438, -0.21389423, -0.11913949, 0.09377643, -0.04626127, 0.09307901, 0.04208783, -0.01726591, -0.26377267, -0.02864962, -0.1088893, 0.07309006, -0.0451626, 0.01381598, -0.11376946, -0.0318372, -0.03117885, -0.00751992, 0.04759032, -0.17189564, -0.0671782, -0.04055243, 0.01991023, 0.16895834, 0.05444985, -0.15930498, 0.0692432, 0.08038696, -0.21758558, -0.058544, -0.13402379, 0.04276042, -0.05320217, 0.01905229, -0.07822247, -0.06815692, -0.08865747, 0.05312298, 0.16342764, 0.16332811, -0.08524821, 0.11748832, -0.00836508, 0.16828352, -0.06611577] -fptrunc:[0.03908361, -0.29163882, -0.01192833, 0.05700167, -0.15311228, 0.00592163, 0.11606749, 0.10364928, 0.00504514, 0.06242209, 0.02461933, -0.10485581, -0.05805987, 0.11109967, -0.21236938, -0.02764414, 0.00115695, -0.05327054, -0.04722964, 0.22064194, 0.05563463, 0.09927423, 0.00172509, 0.05695758, 0.15492564, -0.00116055, 0.10587673, -0.08940331, -0.26303604, 0.11133532, 0.06438829, -0.24923158, 0.00585104, 0.01792561, -0.05203447, -0.01861908, -0.04413635, -0.09662925, -0.06113444, -0.01912897, -0.1339004, 0.11452908, 0.21368553, -0.06880628, 0.08122889, 0.15311414, -0.0491191, 0.15580809, -0.13225053, 0.05510123, -0.03497581, -0.13011466, -0.2066264, 0.04036298, 0.00753686, -0.2602519, 0.09403002, -0.02894866, 0.12125255, 0.0565765, 0.03297821, -0.0520851, -0.01591829, -0.252252, 0.1965733, -0.07920001, -0.0565741, -0.11322758, -0.19400476, -0.0226372, -0.20854528, 0.00065207, 0.01669456, 0.00958129, -0.08440962, -0.22263911, -0.00767746, 0.01174589, 0.08269951, -0.05927481, -0.05633973, 0.34439847, 0.01708565, -0.0765264, 0.12886453, -0.04893937, 0.09297176, -0.00561692, 0.06084311, -0.04330954, 0.0815511, -0.17323127, -0.08324848, 0.14596382, 0.11188202, -0.1324599, -0.02025824, 0.14508359, -0.2174703, -0.03305363] -freeze:[-0.03251171, 0.00200092, -0.00259526, -0.01144693, 0.07541022, -0.1820837, 0.12136643, 0.1275448, -0.10030386, 0.08644852, 0.11850318, -0.11065793, -0.07471482, -0.01706886, 0.09554464, 0.14733784, 0.10404979, -0.02832513, -0.13587056, 0.20593883, -0.00259992, 0.13303153, -0.09656724, -0.16390903, 0.14290923, -0.01338019, -0.11247908, 0.09822869, -0.09266857, 0.14600083, 0.05307323, -0.06290563, -0.03556649, -0.00089339, -0.0603128, -0.14519496, -0.04811841, 0.0243117, 0.14283736, -0.09143746, 0.14046432, 0.03761658, 0.270574, 0.09178411, 0.18168195, 0.03010811, 0.0491721, 0.12065563, -0.05847578, 0.14248377, -0.19588259, -0.1006986, -0.09188465, 0.02975856, -0.128777, -0.01447822, 0.28755158, -0.10445415, 0.03533902, 0.0133198, 0.17674685, 0.04009562, -0.06872095, -0.04660055, -0.18056145, 0.02824324, -0.03542567, -0.05443713, -0.2357103, -0.02251058, -0.08036178, -0.11523858, 0.02935672, -0.06835491, 0.04550186, 0.11108991, -0.00739168, -0.19805464, -0.00315341, -0.13912842, 0.13789308, 0.37640804, -0.08988409, 0.1139189, -0.16979344, -0.19737336, 0.10531333, 0.06503565, -0.0589365, -0.09045003, 0.03648575, -0.13460322, -0.06677186, 0.35769236, 0.12746431, -0.02420334, 0.0050938, 0.03342573, -0.09689596, -0.0226867] -fsub:[1.43653125e-01, -1.32412300e-03, -2.78409017e-04, 3.85341011e-02, -7.74858668e-02, -2.86142975e-01, 2.65613496e-02, 4.87666428e-02, 1.96019560e-02, 8.04715976e-02, 5.02928011e-02, -2.45421771e-02, -2.72418857e-02, 1.48695216e-01, 7.34043792e-02, -1.14439778e-01, 1.73707098e-01, -2.42753271e-02, 5.16186655e-02, 1.55931130e-01, 1.39758410e-03, 3.22200656e-02, 1.47411730e-02, -8.05310160e-02, 1.25812709e-01, 9.25191790e-02, 1.01895370e-01, -3.19709070e-02, 9.84350592e-02, 9.15013626e-02, 1.97458472e-02, -2.15762556e-01, 4.14769538e-02, 9.13535580e-02, -6.18570857e-02, -1.36080399e-01, -9.37981233e-02, -3.23160216e-02, -1.91936027e-02, -5.41068427e-02, -8.75522662e-03, 1.37950674e-01, 1.92662671e-01, -2.14268696e-02, 3.69801782e-02, 1.98664218e-02, -1.52097628e-01, 1.65109828e-01, -1.51487887e-01, -2.57162377e-02, -1.80553540e-03, -4.98860478e-02, -7.46885687e-02, 1.18120104e-01, -3.23340250e-03, 1.65429220e-01, -1.59004137e-01, 2.62180399e-02, 3.60113941e-02, 8.32907185e-02, 1.85581386e-01, 2.19932068e-02, -1.61428750e-01, -1.06943697e-01, 1.90668121e-01, -1.47477672e-01, 1.93990812e-01, -1.04250342e-01, -1.74714252e-01, -2.20855102e-02, -7.85333589e-02, -5.84845208e-02, -1.56639423e-02, -2.07822010e-01, -4.88376580e-02, 9.55688953e-02, -9.25077945e-02, 2.45069694e-02, 6.11928031e-02, 4.78151478e-02, 1.24568343e-01, 8.31008181e-02, 9.43040401e-02, -5.49194887e-02, -2.14593876e-02, -1.22968636e-01, 1.65695976e-02, 3.39214057e-02, -1.87710542e-02, -1.11297153e-01, 1.18105434e-01, -1.11936070e-01, 1.29384607e-01, 3.65060598e-01, -8.66429787e-03, -5.79670519e-02, 4.63246480e-02, 5.36915325e-02, -1.44565403e-01, -7.03546405e-02] -function:[0.08432946, -0.13718535, 0.1798166, -0.1317964, 0.13148142, -0.11775618, 0.1532426, 0.18923613, 0.04347765, 0.13219926, -0.11602738, 0.23845321, 0.02091871, -0.03063676, -0.16969669, 0.11777938, 0.19847079, 0.01223313, -0.07809777, -0.08243314, 0.15152037, 0.05477112, -0.07050785, -0.05643432, 0.04624449, -0.11095016, -0.07817923, 0.08268431, -0.02165354, 0.05313284, -0.12874702, -0.03404368, 0.01434378, -0.04114128, 0.0605352, 0.0066458, -0.09188776, 0.03761177, -0.07798971, -0.08548588, -0.14254396, -0.00512754, -0.01704746, -0.07529174, -0.13692239, 0.14159389, 0.15625082, 0.20394756, -0.0534406, 0.03429073, -0.02854794, 0.19133213, -0.02054479, -0.14938825, 0.11266603, -0.24727456, -0.00051534, -0.01815787, -0.0888954, 0.1394308, 0.00088329, -0.09114514, 0.09761741, -0.0581107, 0.19087307, -0.17679083, 0.04638965, 0.07256806, 0.05799894, -0.07198817, 0.1536461, 0.18315509, 0.10839155, -0.15990162, -0.11709656, 0.05125028, -0.00596116, -0.00216505, -0.03288814, -0.3046133, -0.0321634, 0.24676047, 0.28927127, 0.05216954, 0.10431253, 0.02697779, -0.06505916, 0.0316359, 0.01370945, 0.12880163, -0.07995255, 0.04474904, -0.0030496, 0.08067484, 0.0821052, 0.09749625, -0.13063934, -0.08858643, -0.11060869, 0.00953265] -getelementptr:[-1.06063023e-01, -3.73198390e-02, -4.35395092e-02, 2.23260254e-01, -6.56511635e-02, -1.12049676e-01, 2.09393892e-02, 1.08264036e-01, -3.80514655e-03, -4.82548214e-02, 4.80085798e-02, 4.37810719e-02, 5.59795983e-02, 1.87313676e-01, 1.69590369e-01, 5.86156063e-02, -1.63686767e-01, 9.93320812e-03, -3.54090147e-02, 1.85476243e-01, -7.30280653e-02, 8.45279768e-02, -1.85825787e-02, -4.68590409e-02, -3.82779650e-02, -2.77343031e-04, 1.07430711e-01, 1.32057229e-02, -9.22889262e-02, 1.20579638e-01, 5.57196438e-02, -1.71571791e-01, -4.00907397e-02, -6.10451177e-02, 1.77448660e-01, -1.19765736e-01, -4.47260737e-02, -1.21931084e-01, -1.10676425e-04, -9.90907848e-02, -8.42135549e-02, 1.23196997e-01, 2.26401359e-01, 7.57011846e-02, 6.35488937e-03, 1.76852107e-01, -5.39443344e-02, 5.57306334e-02, -1.00927455e-02, 8.12712982e-02, -1.61576957e-01, 1.19383097e-01, -2.54868358e-01, 8.95112082e-02, 1.16598725e-01, -8.07882994e-02, -3.55551615e-02, -6.64514080e-02, 6.55135065e-02, -4.63855825e-02, 1.01226091e-01, 8.05892572e-02, -8.05058926e-02, -1.58557713e-01, 3.48293222e-02, 9.56726372e-02, -8.94681644e-03, -7.94050619e-02, -2.45119065e-01, -2.18818024e-01, 5.90824187e-02, 6.73788413e-02, -6.61129355e-02, -6.89433515e-02, -1.37265250e-01, 5.55576272e-02, -1.61160603e-01, -1.30748779e-01, 1.03025667e-01, -7.80676752e-02, -1.22718692e-01, 1.77025512e-01, 5.24887145e-02, -6.01164363e-02, 3.06629483e-02, -1.69721559e-01, 8.81848484e-02, 1.90549016e-01, -4.78637516e-02, -3.66856195e-02, -3.49488966e-02, -1.18229009e-01, -7.41251931e-02, 2.66166240e-01, 1.05340198e-01, 1.62121616e-02, 1.24955140e-02, -4.24992926e-02, -9.22343284e-02, -2.28578113e-02] -icmp:[-0.06381294, 0.17676495, 0.03431569, 0.20172207, 0.01039904, -0.07059901, 0.02721906, 0.04343188, -0.05227307, 0.3820558, 0.04348163, 0.04519399, -0.09151839, 0.14891335, 0.07235284, -0.21488905, -0.15366304, -0.04785908, 0.01448306, 0.15884778, -0.03996848, 0.06258953, 0.0198002, -0.01623865, 0.12808238, 0.00181316, 0.11205131, 0.01188926, -0.1492972, 0.15078227, 0.07120264, -0.10641106, -0.04608565, -0.10990186, -0.03944146, -0.01226474, -0.14484644, -0.06961066, 0.10706522, -0.10274337, -0.06439282, 0.1032786, 0.14661732, 0.07571676, 0.20919369, -0.07374114, -0.00736302, 0.07144766, 0.0203959, 0.00857562, -0.13852982, 0.01643888, 0.00455366, -0.02292045, 0.01382956, 0.00304465, -0.03656371, -0.09607888, 0.0485608, -0.03699828, 0.09713589, 0.06836824, 0.06869507, -0.16546951, -0.01076122, -0.20761381, 0.21833621, -0.07615891, -0.08275858, -0.23349804, -0.05592128, -0.06199257, -0.0009406, 0.04526978, -0.17834783, -0.03665482, 0.04198478, -0.13261084, -0.20342422, -0.03949397, 0.12425423, 0.17155804, 0.14695781, -0.00783983, 0.06012346, -0.08558455, -0.03083419, 0.19244738, -0.04821138, -0.0541654, 0.0336761, -0.09066571, -0.22810067, 0.2664105, 0.10780556, -0.09649264, -0.00929247, -0.00973827, -0.03242486, -0.02767201] -insertelement:[-0.02431526, -0.02821, -0.01474751, -0.17383182, -0.04851017, -0.2700136, 0.08769315, 0.05476001, 0.02850896, 0.11856344, 0.06085393, 0.10512923, -0.05208284, 0.25029323, 0.05559354, -0.0580108, 0.23263837, -0.02934784, -0.0694061, 0.1963453, 0.00657156, 0.04153831, -0.08736489, -0.12128452, 0.12344394, 0.10098697, 0.15986909, -0.06027528, -0.04436634, 0.1878123, 0.02212722, -0.1504686, -0.12829633, 0.1546098, -0.03594831, 0.06790844, 0.00327528, -0.05437412, -0.01389498, 0.00368347, 0.00607913, 0.07390202, 0.19065033, 0.02645727, 0.02672505, -0.02598314, -0.08120181, -0.0265095, -0.06253106, 0.1939478, -0.04663992, -0.21352085, -0.08769952, 0.13863963, -0.11080265, 0.25416508, -0.0131342, 0.00183094, 0.02272455, 0.02956321, 0.20915665, -0.05938819, -0.10566232, -0.0629337, 0.11202663, -0.03480664, 0.18482532, -0.02690433, -0.12158963, 0.03663435, -0.03684264, -0.02014683, -0.06030929, 0.12397692, -0.11643027, 0.0042477, -0.04494726, 0.05814534, -0.134404, 0.00339086, -0.00920388, 0.13428815, -0.04384674, -0.0559525, 0.08342902, -0.1993053, 0.13596928, 0.17117605, -0.03624995, -0.08287863, 0.10867614, -0.15158707, -0.15137242, 0.28727648, 0.14804833, -0.07017738, 0.04017374, -0.08594246, -0.030195, 0.04387292] -insertvalue:[0.07368766, -0.00283476, -0.01816029, -0.11995207, -0.21627477, -0.01762845, -0.09710025, -0.02184452, -0.20390469, 0.04978354, 0.02931972, -0.14109294, -0.06739342, 0.23479871, 0.08888885, -0.05747516, -0.0989153, -0.02506555, 0.12050808, 0.04612122, 0.03092545, -0.06623711, -0.01588413, -0.1149561, 0.08029485, -0.0460401, -0.00333219, 0.18208396, -0.05332236, 0.03006606, 0.09879952, -0.04365422, -0.08676033, -0.22901876, 0.0205539, 0.04544334, -0.10519175, -0.1354922, 0.12296194, -0.03680303, 0.04336058, 0.02475899, 0.16830578, -0.05031221, -0.04950489, 0.03949175, -0.12919392, -0.1605957, 0.13743988, -0.09456762, -0.09413066, -0.12290588, -0.1466488, 0.14567874, 0.30013502, 0.05705202, 0.04200117, 0.0429358, 0.02423933, -0.0431275, 0.16857034, -0.01996093, 0.04447777, -0.05015944, 0.17100777, -0.00709437, -0.15477978, -0.13746703, -0.01251285, -0.10154182, 0.07498093, -0.0593773, 0.2556743, 0.00541996, -0.03270694, -0.06651331, -0.08112945, 0.0176359, 0.07080435, 0.00481467, 0.04019531, -0.02826775, 0.17624968, -0.01392782, -0.02132884, -0.16857536, 0.08259024, -0.05456975, -0.00464022, -0.20664166, 0.02688083, -0.14457764, -0.08772081, 0.20396093, 0.03472181, 0.13362682, 0.08030541, -0.15711668, -0.24761479, -0.1486473] -integerTy:[-0.10629843, -0.00597095, -0.12177496, 0.1545618, 0.14840475, 0.06774051, -0.12312454, -0.12284395, 0.02727928, 0.0359809, 0.19541341, -0.01525921, 0.18040752, 0.02355622, -0.06778756, 0.01603565, -0.0863459, -0.09968174, -0.01177541, -0.00609532, 0.11691112, -0.09820568, -0.07312083, -0.19818097, 0.11165791, 0.10403782, -0.22467583, 0.03056726, 0.07944582, -0.10823306, 0.06485552, -0.02894754, -0.02030974, -0.0019227, -0.03297564, -0.10668563, 0.00631827, 0.12775739, 0.02394694, 0.0293906, 0.21928571, -0.11737766, -0.0596211, 0.12431481, -0.14021948, -0.05282145, 0.17827511, -0.04721097, 0.13661501, 0.13597642, 0.01365755, 0.07686953, 0.0735675, -0.12689653, -0.18581943, 0.10276816, 0.04013465, -0.00806608, 0.07205179, -0.01148596, -0.11219286, -0.01606004, -0.05517735, 0.02957282, -0.29044998, 0.1299732, 0.00213369, 0.08809072, -0.02110472, 0.03379825, -0.01002172, -0.13881044, 0.01505973, 0.0976615, 0.17016318, -0.13266183, 0.06827291, 0.17080092, -0.04742929, -0.02185343, 0.0362877, -0.12015845, -0.03688737, -0.08537249, 0.05818703, 0.06007848, -0.03808945, 0.01828563, -0.10889288, 0.26494345, 0.01937892, 0.03399719, -0.03819984, -0.04401752, 0.02702594, 0.03797123, -0.03524927, 0.06443124, 0.21449444, -0.12850355] -inttoptr:[-0.01377591, 0.11043059, -0.12844634, 0.04353043, -0.09467062, -0.14404644, -0.01046757, 0.12228243, -0.18531837, 0.08554913, -0.00769823, -0.14514306, -0.02804073, 0.00957848, 0.15271579, 0.07906365, -0.00299774, -0.02052507, 0.070458, 0.07646779, -0.15715204, 0.10599221, 0.06006987, -0.10529212, 0.13816859, -0.03392814, 0.05659771, -0.03801761, 0.16695325, 0.10533743, -0.04591336, -0.04449729, -0.165113, -0.17164642, 0.0058237, -0.19227007, 0.07325864, -0.17449997, 0.0790717, -0.15608312, 0.03779037, 0.0389495, 0.23571262, 0.12078992, -0.0966442, -0.05015961, -0.07673406, 0.16770934, -0.06837253, -0.07309788, -0.02819289, -0.12167789, -0.07492067, 0.03690268, 0.16422145, -0.07981167, 0.06598003, -0.17091176, 0.08058067, -0.03974774, 0.20942432, 0.02230899, 0.15619184, -0.04446582, 0.00584774, -0.0412904, 0.24438885, -0.12220972, 0.02975016, -0.02025965, 0.21291876, -0.06597722, -0.14096822, -0.0567697, -0.2023169, 0.18390949, 0.07024521, 0.09573201, -0.04381654, -0.0026591, 0.07957175, 0.03931009, -0.07002385, 0.0650707, 0.04962049, -0.05005969, 0.00140608, 0.12766571, -0.07744935, -0.0404495, -0.12856758, -0.10054623, -0.12929992, 0.07929495, 0.11946376, -0.0527789, 0.02238193, -0.04582688, 0.06286612, 0.11933255] -invoke:[-4.79477495e-02, -4.37538512e-02, 2.14098502e-04, -4.48970944e-02, 3.93624008e-02, -3.53455395e-02, -3.93055342e-02, 8.94530714e-02, -4.76442911e-02, 1.95293367e-01, 2.90794615e-02, 1.16118886e-01, 7.63157429e-03, 1.09598488e-01, 1.80335090e-01, -7.19198957e-02, -1.18466035e-01, -1.26239937e-02, 8.44175518e-02, 2.56773353e-01, -1.10275019e-02, -3.79480273e-02, -5.22314198e-03, 1.89141721e-01, 2.22434700e-02, 2.36968929e-03, 1.05277963e-01, -1.42625034e-01, -2.14529112e-02, 7.15086460e-02, 1.02414824e-01, -1.61834821e-01, -9.12191644e-02, -1.29776180e-01, -8.13744683e-03, -6.20572530e-02, -6.64934888e-02, -6.74760565e-02, 5.00219800e-02, -1.72701478e-01, -6.64113984e-02, 2.20640570e-01, 1.41921878e-01, -1.23179682e-01, -1.33829715e-03, 4.74685021e-02, -5.11074737e-02, 1.04639478e-01, -7.91229308e-02, 7.83334449e-02, -9.03665498e-02, 2.01174840e-01, -1.10384256e-01, -1.36460945e-01, 5.60139418e-02, -2.03792192e-02, -1.24865063e-01, 1.18873730e-01, 6.16551116e-02, -6.33603660e-03, 1.76620677e-01, 6.10028878e-02, -5.66619821e-02, -2.39012301e-01, 1.24191947e-01, 1.17043518e-02, 1.33204579e-01, -1.27141446e-01, -1.51802033e-01, -1.24671578e-01, 1.82786155e-02, -2.41206009e-02, 1.76642433e-01, -9.23082158e-02, -8.42260718e-02, -1.35295659e-01, -4.52754535e-02, -6.49391115e-02, 2.67771166e-03, -2.10763380e-01, 1.03556879e-01, 2.02133834e-01, 1.33662194e-01, 3.59767093e-03, -4.68906909e-02, -7.64989257e-02, 6.52824938e-02, -1.44288331e-01, -1.43271446e-01, -2.54415404e-02, -3.18020880e-02, -1.12537131e-01, -2.95660812e-02, 1.84705362e-01, 1.44985750e-01, -1.96307544e-02, -3.30789275e-02, 9.76456702e-02, 6.22483827e-02, -1.04234315e-01] -label:[-1.70278847e-01, -6.33158609e-02, 1.24444053e-01, -2.18309432e-01, 5.44853173e-02, -3.97669286e-01, 6.85409158e-02, -1.19578831e-01, 7.21278563e-02, 4.26745564e-01, -1.02086589e-01, 1.75334319e-01, -6.91433176e-02, -8.58651251e-02, 2.81250719e-02, 1.50861368e-01, -4.02623601e-02, -1.47487119e-01, -1.20059647e-01, 3.13228071e-01, -6.68118075e-02, -9.21474118e-03, 2.11344790e-02, 1.81965947e-01, -8.79407823e-02, -5.65940142e-02, 8.48237239e-03, -1.70364410e-01, -1.11142345e-01, -2.10978240e-02, -8.14931765e-02, 1.01985738e-01, -1.64452754e-02, -5.21999374e-02, 1.38780072e-01, 1.68702289e-01, 6.57888204e-02, -5.25406040e-02, -2.19774336e-01, -2.08418921e-01, -1.27118319e-01, -1.95882116e-02, 3.43626179e-02, -1.85499974e-02, -5.96486665e-02, -3.09314132e-02, -6.75856620e-02, 1.52055249e-01, -1.99610636e-01, -1.83554426e-01, 1.17220864e-01, 2.84789782e-02, 3.30042019e-02, 2.81458229e-01, 1.77426532e-01, -1.40411645e-01, -1.71568587e-01, 2.13158056e-02, -5.03321812e-02, 3.07152927e-01, 1.57800421e-01, 2.82562282e-02, -3.50744165e-02, -1.39990926e-01, 1.19268596e-01, -1.61711872e-01, -1.28153533e-01, -6.35592565e-02, 4.43754531e-02, -1.07930057e-01, 2.02961117e-01, 3.86973447e-03, -2.29454637e-02, 2.38456234e-01, 2.96319332e-02, -1.66371241e-01, -5.22215664e-02, -3.24533470e-02, -2.75302101e-02, 2.17241734e-01, -3.86376661e-04, 1.69234484e-01, 7.67232180e-02, 2.38987938e-01, -4.74099703e-02, 1.06001139e-01, -1.68087721e-01, -1.53467521e-01, -5.14220679e-03, -3.37484926e-01, 1.43990397e-01, 1.47677278e-02, 2.19082430e-01, 2.37994827e-02, 9.57245380e-02, 1.44380063e-01, 3.73819843e-02, 1.96425766e-01, -3.29046510e-02, 8.88913274e-02] -landingpad:[1.03113145e-01, 9.92903709e-02, 7.30866194e-02, -1.75897896e-01, -8.10509026e-02, 2.28176415e-02, 3.82100306e-02, -9.86565091e-03, -1.56279594e-01, 2.01696455e-01, 1.76040102e-02, 1.45413533e-01, -7.88529888e-02, 9.69541073e-02, 4.20627482e-02, -7.90351927e-02, -4.97990027e-02, -7.52556697e-02, 1.18502200e-01, 2.28400379e-01, -8.72700568e-03, 4.26628999e-02, -4.23901454e-02, 7.60810077e-02, -4.67239916e-02, -1.15774823e-02, 1.81137115e-01, -6.14955500e-02, -3.24456543e-02, 1.71597108e-01, 7.02524185e-02, -5.27166240e-02, -1.83869183e-01, -1.23276018e-01, -2.13556290e-01, 6.64191768e-02, -2.13614121e-01, -6.04937747e-02, 2.09989864e-02, -1.82051703e-01, 1.12142891e-01, 8.80258083e-02, 9.86292213e-02, 1.35060728e-01, 1.27289683e-01, -9.20894593e-02, -2.69087479e-02, -3.60022224e-02, 1.51578128e-01, 5.02313375e-02, 5.27352206e-02, 1.23943724e-01, -2.80857307e-06, -1.13758855e-01, 3.94643582e-02, 8.59412178e-02, 1.37303501e-01, 3.32194865e-01, 3.29371658e-03, 1.59598719e-02, -6.89905556e-03, 7.70471245e-02, 6.43394738e-02, -1.84268802e-01, 8.37943703e-02, -1.04791783e-01, 8.62041414e-02, -7.47103170e-02, -6.71094358e-02, -8.64955410e-02, 6.29674569e-02, -1.63089916e-01, 1.01876799e-02, -7.62798786e-02, -1.38638705e-01, 6.63735867e-02, 2.06998393e-01, -2.36072764e-01, -4.41362709e-02, 1.74887478e-03, -7.31557757e-02, 1.43993706e-01, 1.84361383e-01, -1.88085318e-01, 7.56450966e-02, -3.31846662e-02, 6.64059296e-02, -1.07206956e-01, -2.43195742e-01, -7.10479915e-02, -2.36829296e-01, -6.18142672e-02, -1.79122090e-01, 1.04567848e-01, 1.18763432e-01, -9.03276280e-02, -7.98200723e-03, -9.93477255e-02, 1.04339510e-01, -1.28647834e-01] -load:[-8.08405653e-02, 3.21540207e-01, -4.41686623e-02, -1.38807818e-01, -1.36429612e-02, -8.61457735e-02, 6.45549223e-02, 3.65951918e-02, -9.66648012e-02, -6.22380450e-02, 5.16491756e-02, 4.55973707e-02, -9.19684246e-02, 1.86596215e-01, 1.24360658e-01, 1.10692337e-01, 5.80766462e-02, -4.19665016e-02, 1.19262181e-01, 1.91956967e-01, -1.09953679e-01, -3.33718173e-02, 4.26402315e-02, -1.01771131e-01, 1.40093312e-01, -1.88881182e-04, 1.38682956e-02, 1.53894704e-02, 1.63484756e-02, 1.45328984e-01, 7.50646293e-02, -6.25177696e-02, 5.94270937e-02, -1.11528225e-01, 1.41719311e-01, -3.56543139e-02, -4.60029729e-02, -7.06327930e-02, -6.36029169e-02, -7.85711631e-02, -7.72892162e-02, 5.27529009e-02, 2.26394936e-01, 2.57920306e-02, -3.16273458e-02, 1.89298347e-01, -2.18151715e-02, 1.10672116e-01, -7.69285765e-03, 7.50245377e-02, -8.78641233e-02, 6.61391392e-02, 3.76431160e-02, 6.12791106e-02, -3.90478261e-02, -7.74604501e-03, -9.73058939e-02, -9.57482904e-02, 6.36115000e-02, 1.73895638e-02, 8.30394253e-02, 3.37328650e-02, -1.90865807e-02, -1.61292270e-01, 1.64209291e-01, -1.99395478e-01, -5.18193915e-02, -7.73451254e-02, -1.83285370e-01, -1.91420510e-01, 8.99169371e-02, -1.24672418e-02, 2.15710238e-01, -3.50636914e-02, -2.88546402e-02, 4.91228588e-02, -1.47718966e-01, -1.31714255e-01, -8.54195580e-02, -7.65539752e-03, -1.14223316e-01, 1.62718430e-01, 1.02798954e-01, 1.50881439e-01, 2.90946644e-02, -1.13107860e-01, 3.88892367e-02, 3.23341131e-01, 5.45694344e-02, -1.06797464e-01, 2.85433093e-03, -1.44431114e-01, -5.13872616e-02, 2.37454563e-01, 1.10516891e-01, 1.83880609e-02, 1.52829103e-03, 3.45684886e-02, 4.21399949e-03, -2.06756424e-02] -lshr:[-0.17024136, 0.10411678, -0.01164339, -0.04548335, 0.06530891, -0.2476887, 0.04210737, 0.03576789, 0.05321054, 0.10022357, 0.01811663, -0.13488461, -0.01012874, 0.26806793, 0.12345009, 0.02101261, -0.36041, 0.00430008, 0.06184491, 0.04118454, -0.02647545, 0.06767637, 0.01817472, 0.04315426, -0.1396919, -0.07239037, 0.00338489, -0.04044889, -0.15009062, 0.19606966, 0.03030269, -0.10555451, -0.12165167, -0.23948427, -0.13581164, -0.03006317, -0.08285325, -0.10617706, -0.0251316, -0.20707203, -0.03274789, 0.17637314, 0.30769143, -0.01968428, 0.09311135, 0.02482017, -0.10504574, -0.080327, 0.05108082, -0.01413484, -0.12056525, -0.13353467, 0.0683218, 0.05876585, -0.09094415, -0.1748214, 0.02682031, -0.01165269, 0.03736719, -0.0213234, 0.01267042, 0.07795929, 0.12224922, -0.06505424, -0.07419367, -0.08209741, 0.05395749, -0.01820676, -0.1347826, 0.0721442, 0.09135621, 0.03716783, 0.08097795, 0.08469485, -0.03400942, -0.10221346, -0.03802686, 0.10227831, -0.01060096, -0.07785649, 0.09980448, 0.09005487, 0.01325962, 0.01302627, -0.02368998, -0.11400393, 0.0525293, 0.14680986, -0.12547235, 0.02981818, 0.13511257, -0.09932868, 0.02514753, 0.18365589, 0.13210618, -0.0734877, 0.06043402, 0.09709161, 0.11041317, -0.0586015] -mul:[-0.11237971, 0.09876346, 0.02213491, 0.11142606, -0.01174554, -0.16785102, 0.02978942, 0.05660425, 0.07075646, 0.2599436, 0.06130151, -0.09510598, -0.00583686, -0.0388632, 0.30894345, -0.09855073, 0.09255391, -0.0444544, -0.1248768, 0.15977794, 0.1115512, 0.03567113, 0.10514766, -0.05674868, -0.04637711, 0.01645471, 0.04411943, 0.06863309, 0.09456915, 0.08464792, 0.06866521, -0.0745531, -0.19630428, -0.08132032, 0.1939253, 0.01699383, -0.0897494, -0.12735982, -0.09194063, -0.10075612, -0.00765091, 0.14485908, 0.26726627, -0.07071482, -0.07459436, 0.01122808, -0.07534542, 0.06342559, -0.01228105, 0.18302599, -0.15118791, -0.09792738, -0.09028663, 0.09337652, -0.03390493, 0.11660402, 0.00530379, 0.03476534, 0.1440348, 0.02737059, 0.00474342, 0.01751024, 0.05410315, -0.1316264, -0.1157103, -0.13902988, 0.26180732, -0.11643749, -0.13360056, 0.00479044, 0.16341007, -0.07186162, -0.09074775, 0.08933206, -0.05835011, -0.02483859, -0.2136433, 0.02075386, 0.05302465, 0.03297775, -0.18019801, 0.3633132, -0.11566965, 0.05641138, -0.0513707, -0.13744444, 0.01660597, 0.20761298, -0.06349137, 0.06110584, 0.10134917, -0.25336102, 0.02036187, 0.18552497, 0.15949447, -0.08701061, 0.03962825, -0.11503438, 0.13071242, -0.06818113] -or:[-9.66177657e-02, 2.73407191e-01, 2.23864059e-04, 2.21475124e-01, 4.85003875e-05, -1.21752143e-01, 4.06023823e-02, 1.31916046e-01, -1.30323472e-03, 3.19763809e-01, 9.23378617e-02, -4.98630889e-02, -6.11980185e-02, 2.02523589e-01, 1.36792380e-02, -1.34879962e-01, -1.00449808e-01, -1.82202570e-02, 7.11992010e-02, 1.37599483e-01, -4.95731533e-02, 1.15927979e-01, 3.43097560e-02, 8.73788670e-02, -1.03718899e-02, -7.54302251e-04, 9.91427973e-02, 5.75670004e-02, 2.77765971e-02, 1.28866941e-01, 6.80045113e-02, -1.74135745e-01, -4.34492528e-02, -4.51992936e-02, -5.44166118e-02, -1.11696772e-01, -5.18105961e-02, -7.39658251e-02, -5.64278029e-02, -1.20261356e-01, -1.17269024e-01, 1.74760714e-01, 2.49259204e-01, 9.36944038e-03, -1.36214495e-01, -1.44637778e-01, -4.15022671e-02, 5.31984307e-02, -1.79767981e-01, -7.36928359e-02, -9.24887359e-02, -1.71222940e-01, -1.82373285e-01, -9.29906964e-03, 1.49193369e-02, 7.58160204e-02, 2.72949874e-01, 8.26728195e-02, -9.04894620e-02, 1.86199173e-02, 1.07824698e-01, 8.06925595e-02, 5.78055568e-02, -1.40640184e-01, 2.23236736e-02, 3.62232737e-02, 1.33105025e-01, -8.56523365e-02, -1.93667024e-01, -2.09574699e-01, -7.98006132e-02, -5.55140786e-02, 3.89415137e-02, -1.53407948e-02, 1.76626369e-02, -1.60120890e-01, -2.01325700e-01, -6.93651214e-02, 2.11447969e-01, -7.97722116e-02, 5.25307208e-02, 1.58972085e-01, 8.88074338e-02, -8.32337886e-02, 2.15425249e-02, -1.94346011e-01, 7.49894232e-02, 2.53302604e-01, 5.90096228e-02, -1.01898521e-01, 6.36430010e-02, -1.37841716e-01, -5.60350940e-02, 3.39098088e-02, 1.11781985e-01, 8.19382295e-02, -1.64115953e-03, -5.64004667e-02, -1.19225003e-01, -3.21681350e-02] -phi:[0.04839491, -0.20099284, 0.01979376, -0.01842108, 0.36310238, -0.07578178, 0.20427679, 0.22432512, -0.3303758, 0.20915964, 0.07410439, 0.20407872, -0.05170761, 0.31521922, 0.14302452, 0.01577972, 0.22127253, 0.0049014, 0.11990388, -0.24549572, 0.02600457, 0.19602174, 0.099799, -0.07527959, 0.19014588, -0.01878966, 0.23209581, 0.24376227, 0.00832841, 0.24540855, 0.11293066, -0.35005382, -0.13304071, -0.1701065, -0.01642525, 0.09480687, -0.14326383, -0.19253689, -0.09680003, 0.04834467, 0.2307326, 0.25476447, 0.28438395, 0.15284978, 0.03590335, 0.27942657, -0.15493111, 0.11949239, -0.15559277, -0.04595242, -0.06647666, 0.08835454, -0.07909634, -0.11078117, 0.08273389, -0.34512964, 0.20871283, 0.4367814, 0.12072836, 0.04885447, 0.22460175, 0.09247412, -0.06169285, -0.45554423, -0.4579251, -0.5464737, 0.24149336, -0.19274741, -0.15641093, -0.03430081, 0.13937093, -0.18699448, 0.29745594, 0.09679671, -0.27231187, 0.08873921, -0.16079836, -0.26986456, 0.02304242, -0.35488036, 0.18229765, 0.32506648, 0.14826493, -0.115235, 0.4611771, -0.25885084, 0.16411892, 0.17685726, -0.47176343, 0.06344601, -0.24334872, -0.22168933, -0.22600527, 0.51431865, 0.27122545, -0.07349799, 0.0106428, -0.22662045, -0.10846464, -0.20229137] -pointer:[0.08265064, -0.11325785, 0.24138945, 0.04391604, 0.04041342, -0.16897543, 0.05155872, 0.05668448, -0.20431803, 0.03787981, -0.14154755, 0.19083153, -0.15171741, 0.03613846, -0.16867009, 0.05045661, 0.1885965, -0.16348945, -0.06652614, 0.05224623, 0.00306114, -0.01822854, 0.00746212, -0.09053768, 0.01182512, -0.12679613, 0.02318091, -0.03448309, -0.14373, 0.11279057, -0.16327009, -0.01706993, -0.05909263, -0.05614747, 0.08785715, 0.03881708, -0.20423181, -0.25661093, -0.20674756, -0.0282055, 0.03397173, -0.05737212, 0.04555275, 0.29361734, -0.13415915, 0.22118185, -0.00615504, 0.22260945, 0.04279921, 0.07884003, -0.11532544, 0.18356562, -0.00895991, -0.20645134, 0.02267926, -0.02170515, 0.0055044, 0.08456168, -0.13216546, 0.1462568, 0.05603937, -0.10927387, 0.03516431, -0.10315878, -0.09545423, -0.1033304, 0.0631221, -0.02092238, 0.09208758, -0.15736684, 0.16018824, 0.01738762, 0.2023443, -0.0589956, 0.01683514, 0.03994492, 0.06800775, -0.00613363, -0.00847713, -0.21867423, -0.05061867, 0.3211215, 0.33026937, 0.05790993, 0.06120717, 0.02437131, -0.07114349, -0.03603282, -0.04117692, 0.1735056, -0.0605395, 0.06951058, -0.0519618, 0.08257511, 0.2369263, -0.09280536, -0.17680594, 0.07420892, -0.12455291, -0.21443702] -pointerTy:[0.02051745, 0.03930061, -0.13780822, 0.08145397, 0.16789572, 0.13065016, -0.10542524, -0.05467955, -0.01762146, -0.04604477, 0.1701438, -0.09423845, 0.1351082, 0.05933728, 0.05937228, 0.14169995, -0.01656263, 0.04579956, -0.2092349, -0.21342191, -0.09793468, -0.13235041, -0.08375326, -0.16085519, -0.14973304, -0.08252603, -0.073769, -0.09369481, 0.11209913, -0.13380662, -0.07154229, -0.02884781, -0.1415144, -0.07497177, 0.08765043, -0.0837753, 0.18112853, 0.1547869, 0.15566485, 0.17924021, 0.24602093, -0.17226125, -0.13778397, -0.07413437, -0.16374694, 0.00985143, 0.02035384, -0.03247173, -0.14573525, -0.0355336, 0.01563889, 0.12733588, -0.01560288, -0.05402131, -0.05402966, 0.08729934, -0.07325768, -0.12084138, -0.03669873, -0.12557755, -0.00469869, -0.08747385, -0.15456621, 0.08866332, -0.07173667, 0.03690774, 0.005266, -0.14193033, -0.0655769, -0.13864315, -0.03037775, 0.10747161, 0.0863423, -0.1658659, 0.12764077, -0.10386666, 0.01972863, 0.10985653, -0.08763743, -0.22322369, 0.15891893, 0.07639797, -0.2104053, -0.06249189, -0.08361356, 0.02993679, -0.01047027, -0.01381014, -0.08932375, 0.03384283, -0.13624993, 0.034237, -0.07883053, 0.05878386, 0.02540432, -0.09568438, 0.136876, -0.1094427, 0.06140319, 0.0642976] -ptrtoint:[-0.17909163, 0.05978185, -0.01525458, 0.0827358, 0.13590105, -0.00665695, -0.04676352, -0.00894423, -0.07710728, 0.11890139, 0.06090152, -0.01691178, -0.04377104, 0.02271768, 0.19308871, -0.012085, 0.10865739, -0.02500987, -0.03387405, 0.19162256, -0.08741821, 0.03657227, 0.05859031, -0.15887739, -0.15453449, -0.03917694, -0.06103262, 0.04360914, -0.18288018, 0.10369539, 0.04278736, -0.12600316, -0.09115013, 0.07365742, 0.16715185, -0.16013275, -0.23858479, -0.03704453, -0.23288286, -0.0922052, -0.01609032, 0.04052043, 0.22064878, 0.04991644, -0.1820522, -0.01293597, -0.00953268, 0.13542275, 0.01086673, -0.2169931, -0.15197296, 0.01038968, -0.21295832, 0.19325565, -0.09963831, -0.12892094, 0.10379626, -0.22154826, 0.02759095, 0.09798551, 0.18511324, 0.03457121, 0.08533998, -0.04737198, -0.08656166, -0.1869868, 0.27729437, -0.05151283, -0.06691294, -0.1555337, 0.21875164, -0.06813416, 0.20546202, 0.09334102, -0.10061535, -0.11441533, 0.07134652, 0.01644493, -0.10885452, 0.04148402, -0.07033747, -0.06814387, 0.15373418, -0.11924837, -0.04265603, -0.13439938, 0.01207381, -0.14372517, -0.09025616, 0.01423502, -0.06217819, -0.19378968, -0.12694734, 0.11674285, 0.15144986, -0.07297731, 0.04569479, 0.10466555, 0.08926938, -0.05153132] -resume:[-0.14044924, 0.13945372, -0.01082298, -0.19382872, -0.11130358, -0.02215173, -0.05655283, 0.08988692, -0.1190704, 0.20340037, 0.06236982, 0.19533406, -0.05180738, 0.14083834, -0.10933527, -0.14059012, 0.00656026, -0.00822601, 0.1234389, 0.00893286, 0.00326151, 0.0169771, -0.0119205, 0.11337265, 0.17034674, 0.04142839, 0.06340145, 0.1201084, 0.16027287, 0.11548477, 0.05444419, -0.12784617, 0.0525673, 0.00539962, 0.16270362, -0.00174221, -0.0178054, -0.11105342, -0.12358405, -0.2160014, -0.14875932, 0.06881518, 0.09870582, 0.1350006, 0.05648372, 0.04053469, -0.06300869, 0.1591176, -0.06035259, -0.07586763, -0.03946432, 0.31034648, -0.15541229, -0.1152818, 0.17862293, -0.08012754, 0.03985415, 0.1402749, 0.01862949, -0.04081793, 0.02993261, 0.12385358, 0.13163991, -0.07725973, 0.1205721, -0.08683041, -0.00937064, -0.11749905, -0.1842058, -0.06215821, 0.20710115, -0.02624678, 0.1972167, 0.07452993, -0.13405319, -0.10536271, 0.00454211, -0.2972961, -0.0765842, -0.14508174, 0.03510478, 0.08485702, 0.185041, 0.04909214, 0.0072951, -0.13805138, -0.01179254, -0.15308988, -0.13167015, -0.0758693, -0.06825787, -0.08959401, -0.1522153, 0.20414852, 0.14502315, 0.07940947, 0.03748347, -0.07821426, 0.08629225, -0.08160039] -ret:[-0.09591126, -0.06698878, -0.03484356, 0.03359839, -0.01953151, -0.14768888, 0.00169076, 0.11464456, -0.02040822, 0.29314098, 0.0322926, 0.05045974, -0.09632246, 0.20435813, 0.01510998, -0.06225896, -0.16097747, -0.02402823, 0.10502088, 0.08989464, -0.03644531, 0.05034522, 0.03310894, 0.03022649, 0.020305, -0.00037919, 0.11813119, 0.09633532, 0.16158018, 0.12410717, 0.0630583, -0.14561032, -0.04435882, -0.00969109, 0.28998947, -0.08378932, -0.0456118, -0.14619417, -0.11908974, -0.11212875, -0.06872475, 0.02186882, 0.20860147, -0.00373741, 0.10754969, -0.1405023, -0.02596954, 0.08065356, -0.06896528, -0.24354708, -0.07617456, -0.25127682, -0.02488107, -0.02338922, 0.13320561, 0.08216611, -0.1348822, 0.09407592, 0.07763086, -0.06171962, 0.27832767, 0.0730993, 0.21437015, -0.00580073, 0.14338787, -0.2915523, -0.03126568, -0.08379723, -0.09040349, -0.16897635, 0.22608498, -0.0841593, 0.0633683, -0.07214461, -0.098145, 0.05474947, 0.07365204, -0.1379932, 0.09760639, -0.021544, 0.0542211, 0.07298078, 0.10069043, 0.12332905, 0.04861702, -0.1589684, 0.08266922, 0.02660372, -0.07247025, -0.07887976, 0.00344193, -0.12289905, -0.07873826, 0.23539269, 0.1225518, 0.00063645, 0.03656369, 0.01130281, 0.00417222, -0.0634011] -sdiv:[-0.21786626, 0.08368805, 0.02523644, 0.15505943, 0.04937742, -0.19698098, 0.05124503, -0.00454276, -0.06964485, 0.13353895, 0.03093543, -0.09835736, 0.07396861, -0.11897255, 0.16297477, -0.08445384, 0.01988987, -0.03023463, 0.07879532, 0.16067667, -0.07140077, 0.04213231, 0.04984304, -0.06411847, -0.02984477, -0.04093272, -0.04141847, 0.10641379, -0.1234076, 0.09908671, 0.02930241, -0.11639126, -0.2237201, -0.19327661, 0.16800296, 0.01549266, -0.02554015, -0.11475941, 0.13814816, -0.23606667, 0.00867831, 0.0420926, 0.19727513, 0.10908867, 0.10721561, -0.01662414, 0.04444286, 0.08103663, 0.0498569, -0.13047789, -0.21924527, -0.02877468, 0.01931869, 0.19235621, 0.20711644, 0.16483085, -0.27013958, 0.05634264, 0.11370754, 0.03794764, 0.24522354, 0.0236808, -0.07601246, -0.11071627, -0.21469952, -0.09200267, 0.09001629, -0.01701629, -0.17437169, 0.00666977, -0.05814692, -0.00812137, -0.15886936, 0.11760328, 0.06952538, -0.11701947, -0.19086948, -0.14732936, -0.24429274, 0.07078501, 0.0308146, 0.19630802, -0.03280472, 0.11603728, 0.10086931, -0.2136954, 0.08022172, 0.12991406, -0.14901562, 0.0271614, 0.06873772, -0.14489694, 0.05543732, 0.21427938, 0.09796366, -0.1065928, 0.04398327, 0.10854617, -0.00096756, -0.05962537] -select:[-9.50134471e-02, -1.81051895e-01, -2.49584159e-03, 2.06005573e-01, 3.87188233e-03, -1.02071553e-01, 4.03500497e-02, 1.25096247e-01, -1.35589018e-02, 3.02730352e-01, 2.95376461e-02, -6.66695908e-02, -3.76394615e-02, 1.99065477e-01, 2.83013750e-02, 1.17864102e-01, -5.47199585e-02, 6.69770613e-02, -3.66627239e-02, 2.08492041e-01, 5.59119396e-02, -1.11540100e-02, -5.02365036e-03, 6.90225605e-03, 1.25727892e-01, -1.21016550e-04, 6.91460492e-03, -8.30985531e-02, 6.24425057e-03, 1.55410066e-01, 6.49769157e-02, -2.18299925e-01, -4.55501676e-02, -1.14341050e-01, -5.95368631e-02, -1.13080099e-01, -5.00881523e-02, -7.27860481e-02, 3.17764059e-02, -1.33516818e-01, -4.71564196e-02, -4.15671133e-02, 2.11481512e-01, 7.19150007e-02, 7.73513317e-03, 1.11841835e-01, -6.97231591e-02, 8.89234245e-02, -2.50370186e-02, 9.39650685e-02, -2.12882280e-01, -2.99310505e-01, -1.83380902e-01, 1.07417241e-01, 2.17194930e-02, 1.61608718e-02, -7.34627917e-02, -1.71469748e-01, 7.98335299e-02, 1.59424692e-02, 3.37545455e-01, 1.84868295e-02, -2.91223228e-02, -1.67574465e-01, 5.93522526e-02, -2.08054334e-01, 1.48989826e-01, -8.43031704e-02, -9.71870571e-02, 2.56486505e-01, 2.11358629e-02, -8.17182139e-02, 2.41568349e-02, -6.28159940e-02, -9.22651365e-02, -2.41694115e-02, -1.14235111e-01, -1.72530651e-01, -1.59775898e-01, -5.80063798e-02, -9.64967534e-02, 1.07060954e-01, -3.90472487e-02, -1.22986868e-01, 5.26772700e-02, -1.80290952e-01, 9.65849012e-02, 5.04266145e-03, 5.80190867e-02, -1.08608462e-01, 4.15756367e-02, -1.26518860e-01, -8.35017189e-02, 4.17848825e-02, 1.40247181e-01, 1.42870415e-02, -1.79483055e-03, -7.96105489e-02, -9.60754678e-02, -4.56741937e-02] -sext:[-0.07915203, 0.02337764, -0.04503435, 0.213887, -0.00143184, -0.11183432, 0.04058618, 0.09663754, -0.12072034, 0.31149092, 0.08229417, -0.00182086, -0.0146011, 0.05989743, 0.16572538, 0.08462363, 0.0856493, -0.01208739, 0.03464735, 0.10251749, -0.00102504, 0.05261565, 0.03609066, 0.00269462, 0.01770539, 0.00345622, 0.04991233, 0.02834656, 0.01322936, 0.14382009, 0.01479668, -0.11096551, 0.10334315, -0.02321594, 0.242531, -0.07715522, -0.04484247, -0.0674979, 0.03657033, -0.16198948, -0.06864597, 0.05611972, 0.13942951, 0.06161565, -0.11131204, -0.02070504, -0.0788872, 0.02407323, -0.07656127, 0.03685286, -0.1083665, 0.11735029, 0.00863886, 0.0346837, -0.02823177, 0.12775385, -0.14619708, -0.06150686, 0.08291237, 0.00359558, -0.11871292, 0.0622145, 0.09834988, -0.14839011, -0.01461649, 0.09345926, 0.10875803, -0.10974131, -0.16425444, 0.08423738, 0.05787477, -0.07691549, 0.03620376, 0.22917216, -0.16867368, 0.05798502, -0.1051218, 0.10280024, -0.08469443, -0.04944262, -0.11994802, 0.20037128, -0.01213568, 0.067391, 0.0562983, -0.17249264, 0.10868816, -0.14391118, -0.01356548, -0.1046884, 0.12414721, -0.11088501, -0.12615547, 0.3728955, 0.10177331, 0.01704302, 0.01351611, 0.02030047, 0.08752514, -0.00876324] -shl:[-0.12600072, 0.17178538, -0.03773915, 0.14813186, 0.00309077, -0.13955322, 0.05872687, 0.03276375, 0.02957859, 0.17835826, 0.08971131, -0.05579292, -0.04961911, 0.1815136, 0.09675147, 0.06544447, -0.14549394, 0.01551801, 0.09785426, 0.13227257, 0.03021108, -0.03527103, -0.05179261, -0.00069295, 0.12745653, 0.01555206, 0.1171091, 0.04403834, -0.01998673, 0.14246745, 0.05627544, -0.21146798, 0.10623506, 0.03367621, 0.00273195, -0.06247865, -0.04869508, -0.08475212, -0.01894706, -0.2047682, -0.05738413, -0.03540916, 0.19342604, 0.09591562, -0.20742916, -0.06518107, -0.01141268, 0.06972227, 0.05889241, 0.19539835, -0.13152787, 0.0682364, -0.180224, 0.15051568, 0.06961914, -0.13385108, -0.1357468, 0.05068575, 0.04032204, -0.03327969, 0.00927468, 0.02808907, 0.059018, 0.03717202, -0.11838709, -0.10677551, 0.13554044, -0.0833236, -0.13367759, 0.03559484, 0.06238643, -0.0550037, -0.02533245, 0.08430438, -0.13447718, -0.2928003, -0.1579481, -0.04840491, 0.13009158, 0.05975904, 0.09551195, 0.21695271, -0.17272583, -0.00905969, -0.08620144, -0.18974042, 0.11295145, 0.2636354, -0.04623472, -0.05595813, -0.10295886, -0.1647606, -0.13313656, 0.23717678, 0.15271664, 0.03382812, 0.06191398, 0.10725134, 0.10339383, -0.10190611] -shufflevector:[-0.12675951, 0.07116304, 0.03145237, -0.02959634, -0.14729258, -0.25020698, 0.09980144, 0.05685308, -0.02052229, 0.17280927, 0.03558732, -0.05384561, -0.0932344, 0.21078916, -0.01024115, -0.03498147, -0.1286038, -0.04855656, 0.08253616, 0.20051228, -0.06828303, 0.09313139, 0.01540118, -0.07935187, 0.12513041, -0.04718774, 0.14047313, 0.10678864, -0.08427954, 0.12429833, 0.05720695, -0.2406934, -0.06556378, 0.04065274, 0.1121303, 0.03494449, -0.06822991, -0.07945977, 0.0892394, -0.03733722, -0.02634199, 0.10507209, 0.23455438, 0.03617063, 0.05571855, 0.08927187, -0.17278652, -0.04249284, 0.06806889, -0.02000428, -0.23261675, 0.08372654, -0.0760068, 0.1494188, -0.00984663, 0.073271, 0.02258225, 0.01148031, 0.11313377, 0.08052549, 0.01787192, 0.00494977, -0.03842711, -0.12378804, 0.17483531, 0.10490901, -0.1468796, -0.06224236, 0.06879725, 0.13993496, -0.07951561, -0.03976065, -0.15681376, 0.14130895, -0.20199397, -0.10297415, 0.03871452, 0.00952505, 0.04013392, 0.11179458, 0.25468507, 0.1068259, -0.10656156, -0.06676379, 0.12514235, -0.10953134, -0.0117294, 0.20780165, 0.05814133, -0.06696714, 0.11812696, -0.14363088, -0.10548032, 0.22875504, 0.10285584, -0.06827703, 0.03286001, 0.07818206, -0.18199266, -0.03743109] -sitofp:[-0.16832569, 0.23925985, -0.00210293, 0.0260516, 0.0768915, -0.16625571, 0.01602546, 0.05691445, 0.0020508, 0.09750295, 0.09087811, -0.0918676, -0.05640079, 0.17099148, -0.04565329, -0.14001136, -0.12121563, 0.01558873, -0.05211416, 0.16390374, -0.08164325, 0.08846082, 0.03409471, 0.04052002, 0.01627373, 0.00273625, 0.11751746, 0.02235544, -0.14852236, 0.15716347, 0.02690658, -0.19089751, 0.19776972, -0.01890383, -0.13309455, 0.01240283, -0.03736231, -0.08947572, 0.01762024, -0.17666656, -0.09012351, -0.04400975, 0.15709351, -0.05091354, -0.09312229, 0.11150968, -0.10950895, 0.08943179, -0.11963892, 0.09311008, -0.03931192, -0.08971342, -0.17940226, 0.1470238, 0.15129781, 0.1499645, -0.13999733, 0.23929577, 0.07231774, -0.04797386, 0.05212139, 0.05784668, -0.05731493, -0.24668387, 0.02754352, -0.18680055, -0.18779813, -0.09527654, -0.18769468, 0.16302873, 0.06074742, 0.00057653, 0.03739297, -0.06293976, -0.18558402, -0.04867147, -0.05908046, -0.15911801, -0.2472413, -0.0538899, 0.13486893, 0.15029062, 0.11845496, -0.09839643, -0.0091461, -0.195536, 0.17987216, -0.03399772, 0.08332697, -0.04513272, 0.16539429, -0.21738891, 0.12998375, 0.03440292, 0.13030784, -0.06806927, 0.02397371, 0.01202742, 0.00508961, -0.08404852] -srem:[-0.16409014, 0.07838917, 0.04023368, 0.135974, 0.13258739, -0.20247568, 0.06609736, 0.06568857, 0.13063675, 0.08692516, 0.0468335, -0.08981047, -0.08223876, 0.11367928, 0.18566288, -0.02603544, -0.08908951, -0.06548493, 0.11438271, 0.05413428, -0.03280425, 0.10066335, 0.01393046, 0.10595598, -0.08646865, -0.03190904, 0.01491745, 0.09313801, 0.09510665, 0.09619691, 0.06647727, 0.07209901, 0.08554738, -0.17115699, 0.02923004, 0.0284648, -0.03427012, -0.09555427, 0.07497569, -0.2038236, -0.07748044, 0.02802165, 0.13125126, 0.09248228, -0.09714492, 0.0296668, -0.22244203, -0.03194808, -0.10548791, -0.03108296, -0.20327716, -0.14501232, -0.08364192, 0.05909463, 0.1119902, 0.07354888, 0.07534458, -0.00334564, 0.04218324, 0.17105794, 0.10801592, 0.11984114, -0.11550033, -0.09049397, -0.20929213, -0.0292238, -0.00317313, -0.1102082, 0.01091479, 0.04538691, -0.04774939, 0.02503583, -0.04589644, -0.01060015, -0.03629277, 0.05280647, -0.1808559, -0.03119106, -0.04400877, 0.04077768, -0.08126456, 0.34399286, 0.01753456, -0.0561929, -0.01463763, -0.22189938, 0.15643677, 0.14467643, -0.10089339, 0.05035524, 0.07491127, -0.10075136, -0.05029656, 0.2892032, 0.14348505, -0.03291985, -0.15324704, 0.06894287, 0.14173703, -0.02064659] -store:[-0.03529134, 0.35634306, -0.02657891, -0.15801963, -0.00995737, -0.1218138, 0.0547715, 0.07967321, -0.01875694, -0.08180754, 0.06171454, 0.04990928, -0.10551745, 0.15094171, 0.10358493, 0.01375086, 0.00473249, -0.04866789, -0.03576321, 0.21203005, -0.03796157, 0.01240036, 0.0209163, -0.03091038, 0.1556912, 0.0007899, 0.0926505, 0.02426496, 0.00207357, 0.18937631, 0.08164503, -0.18094489, -0.09841919, -0.12268734, 0.18499546, -0.09187015, -0.0532405, -0.09094289, 0.07979473, -0.12503283, -0.07934996, 0.00833557, 0.20649771, 0.08081701, 0.06973518, -0.11531749, -0.04117833, 0.00828501, -0.02515841, 0.01397896, -0.30589247, -0.16457945, -0.22830844, -0.0239192, -0.02423633, -0.00200097, 0.10478237, 0.02534999, 0.02604761, -0.05149158, 0.2298505, 0.07937331, 0.18878005, -0.17463441, 0.14331897, -0.21256244, 0.17723332, -0.08604205, -0.08755677, -0.2355141, 0.07047425, -0.0761537, 0.10440067, -0.05469456, -0.05299526, -0.20872477, 0.04603479, -0.1143622, -0.21950087, -0.05393213, 0.2659531, 0.2283763, -0.00599449, -0.00557509, 0.05747205, -0.06636461, 0.18512394, -0.0472403, 0.0172425, -0.0248229, 0.03873602, -0.12216681, -0.04614364, 0.16042566, 0.11340576, -0.0886034, -0.00598549, 0.0008022, -0.04278593, -0.03525953] -structTy:[-3.96835431e-02, -8.90822113e-02, -1.42606497e-01, 3.81423131e-04, 2.19758577e-03, 7.48676881e-02, -2.73228675e-01, -1.16859656e-02, -1.65130183e-01, 5.11487089e-02, -1.69553101e-01, -9.22437832e-02, 1.31498396e-01, -1.37286678e-01, -4.27515320e-02, 4.96642515e-02, -5.52252568e-02, -7.46036172e-02, 9.02014505e-03, -2.35408291e-01, 1.69647247e-01, -1.96743369e-01, 6.45923838e-02, -2.51895841e-02, 6.68621659e-02, 1.36592939e-01, -2.00175524e-01, -1.11361094e-01, 1.27412558e-01, -1.62157789e-01, 9.96021554e-02, 1.41737461e-01, -6.41149059e-02, -7.38510862e-02, 8.01272225e-03, 8.53910372e-02, -1.33319601e-01, 6.27119839e-02, -3.33814435e-02, 2.12902755e-01, 2.27526739e-01, 4.87530306e-02, -1.07006870e-01, 1.33274287e-01, -9.23822448e-02, 1.46636186e-04, 2.46850885e-02, -8.27874169e-02, 2.46693432e-01, 1.76962674e-01, 7.22446889e-02, -4.17378284e-02, -1.11036569e-01, -2.21908048e-01, 9.17931423e-02, 7.30379373e-02, -7.76696280e-02, 1.57592788e-01, 4.10596803e-02, -1.17816523e-01, -1.32886797e-01, 1.60035461e-01, 3.47574726e-02, -2.21677311e-02, -4.64741886e-02, -7.44400769e-02, -4.25543822e-02, 1.13670794e-04, 5.09140380e-02, -1.32655710e-01, -6.25796542e-02, -4.66372781e-02, -1.11898392e-01, -2.02518195e-01, 1.28159031e-01, -5.34876473e-02, 1.09686367e-02, -6.88823611e-02, -7.58955181e-02, 6.08547069e-02, 3.31644602e-02, -1.13912836e-01, -2.02005599e-02, -1.82737440e-01, 3.51766162e-02, 2.10016206e-01, -4.25526053e-02, -1.94335639e-01, 1.49324343e-01, 2.16009989e-02, 1.20429546e-01, -1.30154220e-02, 2.46248320e-02, 8.41082633e-02, 1.70826092e-02, 9.59830508e-02, 1.38070285e-01, 7.90656060e-02, 6.93965480e-02, -1.37265459e-01] -sub:[-0.0953552, -0.26459047, 0.03308668, 0.13249162, -0.02339133, -0.16340615, 0.09955963, 0.08736164, -0.00749704, 0.258473, 0.02375738, -0.01721415, -0.04011932, 0.1698383, 0.18286662, 0.13691881, -0.06041747, -0.05069342, 0.06985351, 0.18605933, 0.0013146, 0.05105596, 0.09000639, -0.0791879, 0.09990679, -0.03802681, 0.01394006, 0.13074785, 0.02572679, 0.1152823, 0.0602135, -0.0645524, -0.0432878, -0.03946076, -0.01189882, -0.17136051, -0.08446245, -0.14384373, -0.04641701, -0.16400127, -0.00788906, 0.11455883, 0.23541838, 0.01119818, -0.11292889, 0.01591954, -0.17279945, 0.0085732, -0.00049456, 0.23344193, -0.09339388, -0.21455054, -0.14614382, 0.13186802, -0.02922259, 0.08590978, -0.22631744, -0.1641037, 0.11476243, 0.01831239, 0.06058609, 0.01612271, 0.04078725, -0.11939868, -0.08799169, -0.0831557, 0.11597776, -0.10387602, -0.15562047, 0.10277298, 0.0884128, -0.00211773, -0.07519984, 0.02181713, 0.00940274, -0.03150436, -0.19841634, 0.08125176, -0.0336112, 0.01718792, 0.29995593, 0.08398062, 0.01523209, -0.0875889, -0.00292724, -0.10402364, 0.09417068, 0.02840151, -0.08037011, -0.08590419, 0.04044127, -0.1441415, -0.03858523, -0.07990282, 0.11721177, -0.05477691, -0.02124342, -0.05910411, -0.13885908, -0.01996337] -switch:[-0.13785669, -0.15107918, -0.04796785, -0.22113088, 0.28105316, -0.3084381, 0.14055881, 0.08442263, -0.15649459, 0.39468428, 0.07498952, 0.20437865, -0.09887247, 0.15037191, 0.2262322, 0.06684801, 0.16424559, -0.00524498, 0.07166345, 0.10317154, -0.05140467, 0.06270579, 0.06683356, -0.04247428, 0.12293091, -0.01778657, 0.16808052, 0.03365473, 0.00600127, 0.2287539, 0.128691, -0.1871249, -0.09569948, -0.11760508, 0.08693129, 0.04876805, -0.0746339, -0.09217174, -0.09919852, -0.02021358, -0.03543155, 0.19938102, 0.23665167, 0.02790471, 0.05676728, 0.07625703, -0.09384394, 0.08068095, -0.25725934, -0.15707405, -0.05104439, 0.01520061, -0.10366441, 0.19825514, 0.11738565, -0.3328328, -0.01096464, 0.29800093, 0.13454375, 0.25953025, 0.1962808, 0.06187899, -0.02792281, -0.3613596, -0.09878037, -0.41259867, -0.00243621, -0.11636285, -0.11828742, -0.10344818, 0.15280734, -0.1635701, 0.18818699, 0.24468671, -0.19148564, -0.02964402, -0.14278461, -0.22543798, 0.00378041, 0.04667636, 0.1615017, 0.23346579, 0.02192483, 0.16351697, 0.2541493, -0.10605781, 0.01159541, -0.00798608, -0.33115175, -0.11546707, -0.06785078, -0.17802702, -0.03452291, 0.3095149, 0.17876463, -0.03307298, 0.01204066, -0.04922518, 0.0026099, -0.0974003] -trunc:[-1.48943663e-01, 1.61985293e-01, -1.70696221e-04, 6.21735305e-02, 4.97375801e-03, -1.19473130e-01, 1.54040540e-02, 1.30973652e-01, -1.51608521e-02, 7.85511658e-02, 2.28337310e-02, 4.50596847e-02, -9.06022266e-02, 3.59564871e-02, 1.11074835e-01, -2.65582591e-01, -9.11209360e-02, -4.00285376e-03, 2.34756917e-02, 1.96700767e-01, 2.90081520e-02, 9.75821391e-02, 2.68728212e-02, -6.27916083e-02, 5.49675226e-02, 2.38057997e-04, 9.13996622e-02, 6.64755180e-02, 3.03930193e-02, 1.37060389e-01, 6.22018278e-02, -1.20737016e-01, 7.61812404e-02, -3.84349562e-02, -7.73440162e-03, -7.51224235e-02, -4.63770628e-02, -7.12292418e-02, 1.56213537e-01, -1.45664543e-01, -8.24993625e-02, -2.50289496e-02, 2.52266616e-01, 7.49891028e-02, 1.55611202e-01, -1.38314575e-01, -5.34070050e-03, 5.22824563e-02, 4.10956843e-03, -4.68976535e-02, 4.39298861e-02, -2.37143904e-01, -1.92298517e-02, 9.85554699e-03, -6.91667199e-02, -5.23221008e-02, -7.32209012e-02, -3.67665179e-02, -7.13495398e-03, 1.47750219e-02, -7.81539232e-02, 7.38604516e-02, 4.12273046e-04, -1.57081068e-01, -6.99810013e-02, 1.42727736e-02, 4.92842011e-02, -7.66704008e-02, -8.69129151e-02, -1.92414001e-01, 1.11921877e-01, -5.43075018e-02, 1.54368639e-01, -6.88038170e-02, -1.88596337e-03, -1.95109889e-01, 7.79059902e-02, -2.12698374e-02, -2.11827502e-01, 9.64161754e-03, -8.94803405e-02, 1.98755145e-01, 4.62119319e-02, -2.24393412e-01, 5.96956238e-02, -6.89180791e-02, 9.04319510e-02, 3.39895546e-01, -7.37581700e-02, -3.13321911e-02, 4.22456339e-02, -1.09583467e-01, -7.39743263e-02, 2.99576640e-01, 1.02384903e-01, 5.89961139e-03, -4.28431435e-03, -1.99617445e-02, -4.58279587e-02, -7.89601505e-02] -udiv:[-0.17671652, 0.10229447, 0.00519551, 0.06101571, 0.0763792, -0.18405536, 0.05893987, -0.1103385, 0.00791495, 0.10986267, 0.0409479, -0.13180354, -0.03860949, -0.10525192, 0.04892656, -0.03093025, -0.13232875, 0.03807586, 0.07314262, 0.14658159, 0.01306364, 0.06231265, 0.05561756, -0.09672142, -0.01892682, -0.02354536, -0.03152575, 0.06246295, -0.15601172, 0.20085357, 0.03181548, -0.21236748, -0.06882647, -0.24529071, 0.02932597, -0.10867778, -0.08602572, -0.08900763, -0.23639227, -0.19431576, -0.0653095, 0.0828959, 0.30785608, 0.0346611, -0.00477405, 0.01868396, -0.19289365, 0.18062605, 0.00199238, 0.20700113, -0.08788174, 0.00964048, -0.04658434, 0.10516021, 0.12596835, -0.09676334, 0.03474849, -0.00646015, -0.00825688, -0.04109121, 0.19287434, 0.14219823, -0.11141567, -0.03986474, -0.26237622, -0.05288768, 0.2660759, -0.11791226, -0.11103091, 0.00146731, -0.07791728, -0.05956455, -0.05791739, -0.06013145, 0.03733175, 0.1666778, 0.01909983, -0.23549642, -0.04566164, 0.03196376, 0.07809507, -0.04718444, -0.03702124, -0.05550085, -0.05524414, -0.1061673, 0.11534564, 0.13780159, -0.25695655, 0.06229999, 0.10211676, -0.13834105, -0.12139603, 0.16129494, -0.07103133, -0.02762147, -0.12578516, -0.08813025, 0.05242309, -0.02097058] -uitofp:[-0.17258997, 0.08317631, 0.00159047, 0.04677379, 0.07849041, -0.15901978, 0.06930523, 0.06149773, 0.08035871, 0.05945555, 0.01625332, 0.1350944, -0.05387528, 0.23348717, 0.03979181, -0.03672469, 0.09965295, -0.01449795, -0.0907179, 0.20327848, 0.00445275, 0.08724411, 0.06808846, -0.03389622, 0.09875238, -0.03714811, 0.16171202, -0.11124533, 0.07414763, 0.03462869, 0.02677613, -0.22866257, 0.00079032, 0.00697522, 0.07336772, -0.19353878, -0.07927518, -0.11507886, 0.0542306, -0.06708235, -0.0307213, 0.2249962, 0.24164096, -0.10949063, 0.08361538, 0.02692904, -0.10580832, 0.15280604, -0.05279434, -0.04642436, -0.03333915, -0.14721957, 0.06987269, 0.11268786, -0.08782774, 0.28179362, -0.15912975, -0.05727448, 0.03074066, 0.00575958, -0.00639842, 0.00565872, -0.05683737, -0.26414344, -0.1134745, -0.08173503, 0.00603494, -0.04802901, 0.01352828, 0.01817799, -0.09797031, -0.10834252, 0.06738434, -0.11513596, -0.05307522, -0.10233205, 0.03159448, -0.21574691, -0.01804472, 0.14095852, 0.12034682, 0.05839874, 0.12210672, 0.05701111, -0.00840698, -0.04980013, 0.03922625, 0.01724898, -0.28122628, -0.00621354, 0.09819426, -0.22018862, -0.07949243, -0.0317892, 0.1301879, -0.06706842, 0.04421813, 0.07087731, -0.01899929, -0.06589555] -unreachable:[-0.06088371, 0.13193683, -0.03018444, 0.15896593, 0.0033598, 0.09663431, 0.11163876, 0.13079004, -0.01468084, 0.08175608, -0.00999199, 0.06351876, 0.02726974, -0.02018832, -0.0473082, -0.04504514, -0.10741987, 0.01347713, 0.16606618, 0.01929044, -0.03611498, -0.05202329, 0.10554367, 0.05255725, -0.0704831, 0.00160814, 0.10875788, 0.13734357, 0.14045468, 0.1380403, 0.02612598, -0.05882959, -0.21091446, -0.1128555, 0.08345397, 0.02365994, -0.04746438, -0.06829461, -0.13361861, -0.16740192, -0.08128867, 0.17816901, 0.1409021, 0.10420833, 0.13494818, -0.02437912, 0.03129028, 0.14431876, 0.13494477, 0.06452074, -0.09379561, 0.15755762, -0.21547836, -0.022196, 0.0536056, -0.19761625, -0.23442549, -0.05972091, -0.02123259, 0.07578047, -0.12083326, 0.02023016, -0.06540227, -0.23720072, -0.02123379, -0.2525388, 0.10508891, 0.01480465, -0.02081848, -0.00219039, 0.09978196, -0.04866889, 0.11588323, 0.06049645, -0.10539561, -0.0511655, -0.05829581, -0.13105415, 0.08427662, 0.05557, 0.05298607, 0.06963351, 0.08255908, 0.07347525, 0.01335096, -0.10886843, -0.04396117, -0.2236974, -0.23813556, -0.16491577, 0.06201493, -0.0737339, -0.12657407, 0.0404583, 0.10359443, 0.02877598, 0.03536025, 0.08561716, 0.0703247, -0.11086893] -urem:[-0.08549029, 0.09160238, -0.00241183, 0.05067972, 0.15899393, -0.01931739, 0.05753855, -0.11290436, 0.0076089, 0.09345544, 0.07004112, 0.14931405, -0.05836166, 0.23132688, 0.24841079, -0.06698868, -0.10419554, -0.01532327, 0.09040123, 0.13180336, -0.07404146, 0.1092893, 0.06295769, -0.15995945, 0.11533199, -0.04144646, -0.00576534, -0.02924641, -0.14578289, 0.20344952, 0.03532381, -0.03117668, -0.05160449, 0.03500823, -0.11252508, -0.17664222, -0.07940985, -0.12040678, -0.12449349, -0.21122253, -0.01698987, 0.04146675, 0.28569615, 0.02374074, 0.02850478, 0.02949483, 0.03958799, -0.04166255, -0.06555806, 0.00569926, -0.09925889, -0.15188931, -0.10791452, 0.08082949, 0.12191993, -0.00624607, 0.04424485, 0.05079485, 0.14598109, -0.02051969, 0.15129603, -0.00130547, 0.08836077, -0.04359945, -0.10000737, -0.08823593, 0.19829819, -0.11860672, -0.04696933, -0.06921311, -0.0385624, -0.14454114, -0.06662096, 0.02774117, -0.10033001, -0.09850532, -0.01309359, -0.3019796, -0.01657072, -0.07764618, -0.01968917, -0.00321299, -0.07419216, 0.05854518, -0.16480607, 0.05657026, 0.0020229, 0.16678901, -0.22832742, 0.16309422, 0.1353033, -0.1562748, 0.0068607, 0.15853357, 0.14734711, 0.07763742, 0.2270559, -0.16909193, -0.04115343, -0.05565834] -variable:[-0.04745717, -0.08637991, 0.1639285, 0.05114051, 0.03557682, -0.12990922, 0.07336151, 0.18193728, -0.02263653, 0.0647072, -0.13118894, 0.0706948, 0.12427193, 0.06009571, -0.1661605, 0.06285623, 0.12019422, 0.0589813, -0.09464766, -0.18064742, 0.18370065, 0.14896196, 0.05205907, -0.05699009, -0.0927754, -0.12338018, 0.01031358, 0.11119294, -0.14166753, -0.08204582, -0.17005804, -0.01536623, -0.10464924, -0.01305452, 0.08885329, 0.06114819, 0.03674849, -0.34666064, -0.1727605, -0.10190743, 0.03277443, -0.05261128, 0.08590446, 0.29270428, -0.09474073, 0.22252011, -0.16998203, 0.17469582, -0.01632195, 0.06632435, 0.06541058, 0.11040371, 0.0802538, -0.12276898, 0.11019022, -0.0230128, -0.01787852, 0.0922657, -0.10588636, 0.14600633, 0.06586216, -0.13569869, -0.12737776, -0.10237563, -0.10666361, -0.1718707, 0.07690907, -0.23457758, 0.09286352, -0.09383877, 0.16538797, 0.02497552, 0.03209268, 0.03432005, -0.05913163, -0.04922373, 0.05927496, -0.00142324, -0.02437539, -0.27331042, -0.04195979, 0.3012319, 0.28423536, 0.05868969, 0.05781042, -0.21984018, -0.0756731, -0.02196042, -0.05227526, 0.12267761, -0.00093613, 0.06875217, -0.06592193, 0.0894247, 0.14242776, 0.10645651, -0.16283514, -0.05019224, -0.2615151, -0.17419891] -vectorTy:[0.09214257, -0.04254282, -0.2082744, 0.1489835, 0.16765025, 0.12442486, -0.06085881, -0.02866303, 0.18554689, -0.08484387, 0.16206563, -0.01242073, 0.17323564, 0.06107936, -0.09174694, -0.0495562, -0.01831215, 0.04182582, -0.03232431, 0.08220705, 0.01549849, -0.1049181, -0.14759736, -0.03965862, 0.0188947, -0.10498622, -0.1803732, 0.16405664, 0.14511505, -0.10143329, -0.06956764, 0.05751402, 0.02792842, 0.14136231, 0.03651895, -0.11449363, 0.07786072, 0.12971582, 0.20839804, 0.20588775, 0.12468194, 0.00039439, 0.01450426, 0.15445328, 0.01187558, -0.07902222, -0.06411007, -0.05476548, 0.20955466, 0.15925792, 0.14728937, -0.00367325, -0.12067425, -0.11644303, -0.21257977, 0.21884163, -0.01551571, 0.06547339, -0.03973668, -0.09633668, -0.24208052, 0.11933044, -0.16694735, 0.04643975, -0.09887692, 0.05033477, -0.12200441, 0.1662296, -0.01365205, 0.01528752, -0.10588146, -0.08806136, -0.20088676, 0.05208419, -0.03125093, -0.06816924, -0.08123421, 0.0129625, -0.08165248, -0.14954782, -0.08383283, -0.0757656, -0.05523998, -0.13218589, 0.15462421, 0.02526899, -0.02197613, 0.06456108, -0.08720388, 0.10372602, -0.01931399, -0.13187875, 0.08807088, 0.02672064, 0.00975798, -0.11998563, 0.10483557, 0.08746739, 0.13014027, -0.13334289] -voidTy:[1.39123395e-01, -6.82682246e-02, -1.56617016e-01, -7.60084465e-02, 1.00919925e-01, 1.74035922e-01, -1.56080678e-01, -5.35190031e-02, 1.09261021e-01, -1.35638222e-01, 1.68325156e-01, 1.35690197e-01, -9.90925804e-02, -1.13364339e-01, -1.50621478e-02, 3.74432206e-02, -5.21973036e-02, 2.96468586e-02, 6.75825961e-03, -4.00914066e-02, 6.65328428e-02, 1.53036490e-01, 9.56951156e-02, 9.35865939e-02, 2.17673816e-02, 1.03012696e-01, -1.14968633e-02, -8.92200693e-02, 2.22642094e-01, -1.38613293e-02, -5.15563693e-03, 9.23900530e-02, -1.27655804e-01, 3.78469527e-02, 3.11730765e-02, -1.27757015e-02, 1.26724884e-01, 2.15029139e-02, 1.60096169e-01, 3.17343101e-02, -1.03545554e-01, -1.24611840e-01, -4.03355211e-02, -7.08277300e-02, 8.45108777e-02, -1.04451224e-01, 1.16720572e-01, 1.48278670e-02, 1.84134856e-01, -1.62828434e-02, -1.64145931e-05, -6.86618909e-02, -1.37460783e-01, 7.12566301e-02, 6.22349456e-02, -1.15113214e-01, -1.57700866e-01, 1.28431082e-01, -1.25484526e-01, -2.16529414e-01, -9.91288945e-02, -7.96836540e-02, 7.39990473e-02, -5.88596649e-02, -2.84298491e-02, -5.15003502e-02, 2.06307825e-02, -1.38278484e-01, 3.76871638e-02, -6.28824681e-02, 5.19816801e-02, -1.90032780e-01, -4.50734906e-02, -1.09323092e-01, 5.38111515e-02, 8.90467837e-02, 8.49439353e-02, -2.58022826e-02, -5.37883528e-02, -1.73901737e-01, 1.35274500e-01, -9.15873423e-02, -6.80732578e-02, -9.18437913e-02, 7.81169087e-02, 1.10999197e-01, -8.34695622e-02, -1.86496139e-01, -1.59131661e-01, -5.79612404e-02, -3.66159305e-02, 8.42922255e-02, 1.44578693e-02, 3.29559147e-02, 6.82946946e-03, -5.06191142e-02, 1.35032460e-01, 1.89761311e-01, -1.47584870e-01, -4.90086749e-02] -xor:[-0.16921039, 0.12408639, -0.034145, 0.13137488, -0.04762559, -0.03108282, 0.11359347, 0.04723426, 0.08214669, -0.08919795, 0.08350056, 0.02434964, -0.0256896, 0.18628141, 0.09431785, 0.02161829, -0.17557403, 0.01662976, 0.15725583, 0.13712473, -0.00457354, 0.03745704, -0.03570157, 0.06576116, 0.06272607, 0.01721253, -0.01528889, 0.06864108, -0.03288332, 0.09796044, 0.09011626, -0.23149484, 0.08231667, 0.04841082, -0.13498706, -0.05696484, -0.05362453, -0.11720514, 0.00099914, -0.23637904, -0.06771386, 0.13900891, 0.19573559, 0.01353323, 0.09763495, 0.16432948, -0.08079959, 0.0538074, 0.07155547, 0.02535601, -0.16881762, -0.02021813, -0.12348865, 0.01615006, -0.05484886, 0.27608117, -0.17019226, -0.05588771, 0.14863412, -0.01168946, 0.22599666, -0.0703093, 0.15534535, -0.12977424, -0.25004354, -0.17313497, 0.13966106, -0.09113417, -0.01070651, -0.19820745, 0.09653766, -0.0886725, 0.04275795, 0.05763382, 0.08995168, -0.0497935, -0.14781837, 0.03620582, -0.16778147, 0.01618672, -0.23161617, 0.20526892, -0.03256932, 0.1128776, 0.05835852, -0.17659847, 0.19213665, 0.1507903, -0.23795094, -0.00641877, 0.10532196, -0.17336258, -0.18323651, 0.01772483, 0.14239813, 0.03483916, 0.12513739, -0.1615746, 0.01592221, 0.06976533] -zext:[-1.33044437e-01, -2.52875745e-01, 3.50738093e-02, -2.03829944e-01, -5.82297966e-02, -1.05092958e-01, 4.42118868e-02, 1.12847589e-01, -1.57210976e-02, 9.47973505e-02, 8.15101340e-02, 4.34930958e-02, -7.35153481e-02, 1.79205835e-01, 4.31320854e-02, 6.20642006e-02, 1.99731160e-02, -1.93929952e-03, -4.71815653e-02, 1.87836722e-01, -6.38541579e-02, 5.80772832e-02, 5.34959137e-02, -6.36336505e-02, -9.44561362e-02, -3.94840681e-05, 1.80340484e-02, 6.65806234e-02, 1.84422173e-02, 1.28611282e-01, 6.59179240e-02, -1.37597591e-01, 1.75117403e-01, -4.69908975e-02, 6.37586415e-02, -6.76920712e-02, -4.30216230e-02, -6.56124204e-02, -4.91032265e-02, -1.42709956e-01, -1.11875355e-01, -8.30171350e-03, 2.17935696e-01, 6.31718040e-02, 1.23638242e-01, 1.87138334e-01, -1.01252785e-02, 6.76815137e-02, -7.43541047e-02, -7.46816248e-02, -1.13281965e-01, 1.19622834e-01, 1.11896917e-02, 8.83216560e-02, 3.06905359e-02, 1.12930745e-01, -1.71396554e-01, -1.75105166e-02, -4.67790440e-02, 1.85718816e-02, -1.56841706e-02, 7.76569992e-02, 1.44308535e-02, -1.63253114e-01, 1.79000050e-02, 1.80133302e-02, 3.17333966e-01, -7.50223324e-02, -8.86120647e-02, 1.56262398e-01, 7.72838667e-02, -6.56765550e-02, -1.00097515e-01, -3.52685601e-02, -1.37866139e-01, 3.65538932e-02, 1.63608536e-01, -5.79393171e-02, 2.18970180e-02, -5.66484667e-02, -6.28089085e-02, 1.92560479e-01, 4.35242988e-02, 3.29817012e-02, 2.57029757e-02, -1.71366796e-01, 4.26483452e-02, 3.12984526e-01, -5.45212887e-02, -2.74304971e-02, 2.81224921e-02, -1.13750860e-01, -7.34276101e-02, 1.34958059e-01, 1.25591040e-01, 1.68564655e-02, -1.45978597e-03, 1.05855344e-02, -2.16981005e-02, -6.22510351e-02] +add:[-0.15484513, 0.02970778, -0.02056151, 0.12075993, 0.00934308, -0.01901062, -0.02212448, -0.16255538, -0.03166137, -0.01626863, -0.00350121, 0.09363935, -0.07617376, -0.00733356, 0.0580132, 0.09474736, -0.11157771, -0.03500959, 0.04333189, -0.08732236, 0.10010002, 0.06173127, -0.05699731, -0.00083637, -0.12098105, -0.11253052, -0.22417137, 0.0142413, 0.01597322, -0.03113897, 0.01917485, 0.19582745, 0.13705935, -0.03145242, -0.2194691, 0.16066876, -0.12841487, -0.13136944, 0.1340207, -0.23501636, -0.05483999, 0.20693475, 0.18078674, 0.07077169, -0.06235082, -0.00882937, 0.09092775, 0.03516129, -0.00776419, 0.05376872, 0.08454724, 0.09692905, -0.02577369, 0.05173326, 0.08829049, 0.00594252, -0.07885723, -0.06626683, 0.00126833, 0.03525944, 0.19381683, 0.11673971, -0.16899343, -0.05601639, 0.06294831, 0.1619004, -0.1523074, 0.06883366, 0.156457, -0.08512669, 0.10224366, -0.00876656, -0.01906124, -0.04057086, 0.01484577, 0.10735235, 0.07987136, -0.09308399, 0.00220263, -0.2426127, -0.0800054, 0.2471762, -0.08400138, 0.03816826, -0.12898813, 0.08295971, 0.02704777, 0.16755444, -0.12520972, 0.09000725, 0.10248882, 0.13976434, 0.19443436, 0.03005268, 0.06629395, 0.00534025, 0.13384016, 0.03754035, -0.1842948, -0.1019412] +alloca:[-0.08166566, 0.08835543, -0.1288092, 0.13197269, 0.0146769, -0.03911212, 0.19801241, 0.00509961, -0.07555965, 0.04783738, -0.12855582, -0.08216903, 0.06506477, 0.0629959, 0.17032813, -0.09662798, 0.12929077, 0.07347479, -0.05178212, 0.22125678, -0.10099431, 0.06151744, -0.06519136, 0.04040501, 0.04939844, 0.00294743, -0.22920543, 0.18121253, 0.07919852, -0.03143045, -0.13409744, -0.08301162, 0.01794847, -0.16412853, -0.12311088, 0.06202135, -0.06070143, 0.06501003, -0.05715032, -0.15023758, -0.08596267, 0.09263531, 0.1115927, 0.11111145, -0.16633965, -0.07931464, 0.0679454, 0.03018244, -0.04786307, -0.10627459, 0.07692343, 0.18257488, 0.10484697, -0.01166916, 0.08549391, 0.1230538, 0.22097264, -0.03777274, 0.17532684, 0.01874996, 0.07913889, 0.06454659, -0.12542719, -0.04181826, 0.01189887, 0.01702066, -0.1689252, 0.03481283, 0.06388868, -0.13822179, 0.03735244, -0.00079258, -0.04207156, 0.08689333, 0.12104435, -0.09651953, -0.12117087, 0.05228726, 0.01103111, 0.15483591, 0.14985624, -0.08224261, -0.17385037, -0.00856331, -0.10643206, 0.20064206, 0.09222418, 0.10695715, 0.02774121, 0.25620338, 0.07973052, 0.2095851, 0.10302345, 0.03469864, -0.16889298, -0.051953, 0.06694607, 0.13660216, 0.08046792, 0.03628616] +and:[-0.09388398, 0.0141427, 0.0694027, 0.1159341, -0.00346022, 0.04431523, -0.00463192, -0.13779332, -0.00052495, 0.04056114, 0.03952097, -0.08709127, -0.10907927, 0.00999645, 0.15698126, -0.04684654, 0.10417277, -0.02840939, 0.04046953, 0.05151911, 0.09254943, 0.06355107, -0.22828256, 0.0408469, 0.19443959, 0.02418533, -0.22934347, -0.05057433, -0.14964096, -0.02965325, -0.09260925, 0.22533931, 0.18799591, -0.08439922, -0.22856013, 0.12239595, 0.02228385, -0.06197641, 0.14184783, -0.22519755, 0.11267272, 0.17632212, -0.0953403, 0.163749, 0.17249428, -0.05536105, 0.0587328, -0.07120056, -0.00332202, -0.1719864, 0.08463059, 0.11572792, -0.01659774, 0.08187382, -0.1486711, -0.01931593, 0.06353983, 0.06201529, -0.012717, 0.04579385, -0.04702346, -0.04147347, -0.12773769, -0.04215461, -0.11897084, 0.08728889, 0.20205137, -0.15158655, -0.00335045, 0.1982575, 0.07693204, 0.01714249, 0.0651775, -0.03211811, 0.06861138, -0.04996679, -0.1188488, 0.20412448, -0.0111106, -0.07683883, 0.0790351, 0.18070506, 0.04042637, 0.08077054, -0.09963732, 0.15504111, -0.00049323, 0.05271871, -0.12274276, 0.0259032, 0.10801992, 0.16613697, 0.00923377, 0.19110763, -0.0312283, 0.00930178, 0.14605427, -0.0506419, 0.23254643, -0.0314815] +ashr:[0.02652436, 0.10366568, -0.12211453, 0.1297425, -0.04013387, 0.09105197, -0.17227696, -0.01837661, 0.12479244, 0.02221499, 0.04134769, 0.09836069, 0.02053448, -0.02475207, 0.1361213, -0.03108019, 0.09591947, 0.18610398, 0.06093475, -0.06806133, 0.09663927, -0.05340279, 0.09520233, 0.03850334, -0.12169252, 0.01975616, -0.22525641, 0.19486755, -0.16057211, 0.03450775, 0.08272766, 0.13100848, 0.09821758, -0.08404194, -0.21017721, -0.02044212, -0.0551307, -0.04735815, 0.14810656, -0.24367154, -0.13599843, 0.02001956, 0.19633429, 0.14347851, -0.07941318, -0.10450509, 0.00961224, 0.13313377, -0.01836658, -0.19050837, 0.09812015, 0.09936349, -0.02726508, -0.12047984, 0.12674387, 0.13628435, -0.04162351, 0.12927005, 0.10975105, -0.06304466, 0.0709485, -0.11133088, -0.12220028, 0.12672637, -0.00806696, -0.08917437, 0.03754742, 0.18583718, -0.07269968, -0.02852948, -0.10051617, -0.06872403, 0.06364992, -0.03727286, -0.07846059, 0.10207111, 0.08847028, -0.08559939, -0.00958817, -0.10941101, -0.07688226, -0.21546924, 0.0667286, -0.09429643, -0.15790269, 0.1844489, -0.07374591, 0.03409331, -0.1252082, 0.10415138, 0.02682062, -0.13510248, -0.08897403, 0.06818463, -0.05775295, -0.11617688, 0.09784518, 0.08874215, 0.00143725, 0.0512594] +atomicrmw:[0.11005995, 0.03070047, 0.14669232, 0.08488496, -0.01439261, -0.05553275, -0.15991314, -0.10125894, 0.02371888, -0.02530545, -0.01021336, -0.01041375, -0.10128199, -0.06914596, -0.08149427, 0.14125147, 0.03103726, 0.07045283, 0.03449116, -0.11991611, 0.00978644, 0.05545922, 0.08146383, 0.03750495, -0.01338057, -0.01559869, -0.13702205, 0.03119306, -0.06536114, -0.0779461, -0.06047658, 0.04946306, -0.00839118, 0.01242211, 0.08423802, -0.05431009, 0.02793302, -0.03295778, 0.10355479, -0.05672634, 0.15167545, 0.09101646, 0.07055393, -0.00860707, 0.06422064, -0.05420247, 0.16201943, 0.00256085, 0.00275517, -0.09930059, 0.03940942, 0.13877262, -0.20461313, -0.13971971, -0.0771838, -0.00357177, -0.06323487, 0.14513624, 0.13203366, 0.0714917, 0.1595074, 0.02935226, -0.1687928, -0.16290283, 0.0145255, 0.07606877, -0.04107688, 0.03200428, -0.00624781, -0.07804428, -0.09193946, -0.0091236, -0.15990886, 0.00490408, 0.13570982, -0.09832191, -0.02692004, 0.16973096, 0.08446505, -0.16794334, 0.15993664, 0.08007867, 0.03782848, 0.11701584, -0.08579117, 0.19479752, -0.11413273, -0.19490865, -0.10872844, 0.12999453, 0.15776844, 0.1793442, 0.06863621, 0.03777748, -0.08683949, 0.17523588, -0.00317644, 0.10902631, 0.00285764, 0.01174756] +bitcast:[-0.02668619, 0.05082288, 0.04302698, 0.13033254, -0.00769631, 0.04680602, -0.18197992, -0.11891323, 0.03900926, -0.09281014, -0.0300337, 0.18101317, 0.02947281, -0.00143605, 0.11262815, 0.03866563, 0.06017349, 0.13747963, 0.05275691, -0.04592118, 0.15297988, 0.06496044, -0.06246904, 0.04087211, -0.1381692, 0.02260692, -0.22878456, -0.12297194, 0.04082321, 0.06101841, -0.00643787, 0.09759764, 0.06504081, 0.13556156, -0.22177207, -0.10550173, 0.06693332, -0.06089538, 0.13277498, -0.26686606, 0.02549561, 0.23443326, 0.03633379, 0.10633095, -0.13198687, 0.0818225, 0.15061599, 0.14021023, 0.01294461, 0.1369619, 0.077972, 0.09364347, -0.05419142, -0.39356384, 0.08997452, -0.0178259, 0.06428301, 0.15333693, -0.08584499, 0.09425582, -0.03136904, 0.13204962, -0.03123317, -0.08823485, 0.0165523, 0.08666742, 0.06346686, -0.11751712, 0.20738402, 0.04501946, 0.09785465, -0.03696257, -0.11570981, -0.05996086, 0.07159353, -0.01017272, 0.17345953, -0.08147816, -0.01144275, 0.02280131, 0.12763168, -0.06592876, 0.11419499, 0.14629504, 0.15072973, -0.06598019, 0.04810249, 0.01701491, -0.09579697, -0.01093143, -0.06542079, 0.13609189, 0.22542648, -0.17061266, -0.09817609, 0.1245034, 0.14672142, -0.05731678, 0.03668631, 0.00104549] +br:[-0.08071934, -0.04824373, 0.19701448, 0.15171117, 0.17751463, -0.02004844, -0.15425442, 0.09486673, -0.05309261, 0.01471425, 0.04911633, 0.21933076, 0.08641697, 0.00775754, 0.13567689, 0.10368162, 0.08493307, 0.02376769, 0.07188706, -0.1585116, -0.13676623, 0.02522228, 0.14686693, 0.03826247, -0.16356815, 0.02391704, -0.22821136, 0.17873524, 0.0308426, 0.0141116, 0.05649179, -0.03856474, 0.10089125, 0.00724986, -0.15254402, 0.19475545, 0.02502869, -0.12169129, 0.2116614, -0.01621355, 0.1989341, -0.01736035, -0.01722504, 0.13522188, -0.053768, 0.04972456, -0.01439482, 0.10704266, 0.03363181, 0.01683171, 0.12103041, 0.08888887, -0.08950063, -0.17586379, 0.07203483, -0.02772056, -0.0347855, 0.09209924, 0.07275282, 0.08423608, 0.18614279, -0.02807459, -0.15937187, -0.03214338, -0.08272623, -0.06770799, -0.09951647, 0.09217644, -0.10113933, 0.06455803, -0.19007027, 0.02671474, -0.12575224, -0.05119685, 0.09405516, 0.10194433, 0.01495283, -0.05871666, 0.01465235, 0.00684407, 0.01746905, 0.02213056, -0.15327953, -0.00548136, 0.01145682, 0.04532375, -0.00823893, -0.07573725, -0.12512913, 0.21221685, -0.03355342, -0.15345453, 0.03826943, 0.05202193, -0.13842379, -0.1053225, 0.13385656, 0.13886075, 0.17834768, 0.02819415] +call:[1.37421846e-01, -1.14600040e-01, 6.51552826e-02, 1.22918829e-01, 3.33984345e-02, 1.33401096e-01, -1.13856204e-01, -1.44755021e-01, -3.56325060e-02, -8.23394395e-03, -2.85751261e-02, 1.32592559e-01, 6.85605854e-02, -2.30543944e-03, 2.14542314e-01, 1.04828857e-01, 9.98849049e-02, -9.62432697e-02, -1.95493251e-02, 4.93500084e-02, 1.10620745e-01, 6.58971891e-02, 1.00595579e-01, 4.53032516e-02, -8.81131962e-02, 2.70226449e-02, -2.26838797e-01, 9.43858400e-02, -7.32692704e-02, 1.16841167e-01, -2.27076001e-02, 1.45894766e-01, 2.27547154e-01, 2.44771931e-02, 1.27621107e-02, 1.02414727e-01, -6.72166273e-02, -6.61091208e-02, 1.45298585e-01, -1.30321652e-01, -8.27292651e-02, 6.44501522e-02, 8.36936906e-02, 2.65655722e-02, -4.28355075e-02, 5.55415042e-02, 6.17167577e-02, 9.81137156e-02, -2.85276715e-02, -1.05276532e-01, 9.75379497e-02, 2.04347149e-01, -1.20455429e-01, -1.80732816e-01, 1.14135213e-01, -1.80458352e-02, 1.46148294e-01, 1.39297739e-01, -2.38373387e-03, 4.15175930e-02, 1.75736845e-01, -5.75097725e-02, -1.15152970e-01, -1.92466099e-02, -5.85401580e-02, 8.91173407e-02, 4.09006700e-02, 1.33577064e-01, 2.62022261e-02, 6.20715320e-02, -1.34328321e-01, -1.59639921e-02, -2.10132360e-01, -5.77940047e-02, 1.05751762e-02, 1.00489743e-01, 9.05622244e-02, 1.72266170e-01, 1.48944169e-01, -1.12225473e-01, 1.87022984e-01, -1.87317654e-01, -2.29981005e-01, -3.62622403e-02, -1.59565330e-01, 1.96679868e-02, -5.06200921e-03, 1.10483197e-02, -1.28067985e-01, 7.23787472e-02, 8.79861135e-03, 1.14434965e-01, 1.15553372e-01, -2.07488600e-04, -1.63590863e-01, 6.06413558e-02, 1.21000282e-01, 1.20466344e-01, -6.23066537e-02, 4.14299428e-01] +cmpxchg:[-1.44220591e-01, 1.25253588e-01, -4.09829505e-02, 1.22751795e-01, -3.51512916e-02, -8.02369118e-02, -1.96035132e-01, -1.54253349e-01, -9.72182676e-03, -1.21077308e-02, 7.80095831e-02, 1.37903899e-01, 1.36321023e-01, -5.01374677e-02, 3.72035317e-02, 9.54825524e-03, 1.57559156e-01, 5.88814244e-02, -9.96201634e-02, -6.15727913e-04, -6.03771443e-03, 6.39160275e-02, -2.37138588e-02, 3.76203880e-02, 3.44355628e-02, 1.98207255e-02, 1.09189123e-01, 1.18186548e-01, 1.25606939e-01, -1.48267582e-01, 1.48214772e-03, -3.77541385e-03, 2.07577467e-01, -8.06139410e-02, -7.13412985e-02, 8.81974474e-02, -1.96929462e-02, -8.35046023e-02, 1.36961550e-01, -1.17862970e-01, -6.15669005e-02, -5.70269069e-03, 3.46270353e-02, 6.66765496e-02, 4.55219224e-02, -6.91919774e-02, 1.44026786e-01, -1.03170067e-01, 3.95101160e-02, 6.04015030e-02, 4.53302041e-02, -6.15793932e-03, -2.28296384e-01, 2.77204923e-02, -1.03247717e-01, -1.53226648e-02, 7.80075928e-03, -1.25838788e-02, 1.38389215e-01, 7.37532675e-02, 1.45320157e-02, -7.41408616e-02, -1.17939271e-01, -1.44642994e-01, 2.21800376e-02, -3.58936749e-02, -3.71891856e-02, 7.90337846e-03, 1.04481168e-01, -8.08762982e-02, -8.37745890e-02, -9.70371813e-02, -1.59707665e-01, -2.97583230e-02, 1.06370449e-01, 4.55835052e-02, 2.26387940e-02, -8.99223983e-03, 1.96010381e-01, -2.80204177e-01, 1.81390405e-01, -8.79410133e-02, -1.36040390e-01, -2.33843966e-04, -1.74009055e-01, 5.42029254e-02, 8.04838091e-02, -2.23821118e-01, -1.15653269e-01, -2.25549825e-02, 5.20563424e-02, -1.91824645e-01, 1.49562046e-01, -1.13135010e-01, -1.90914899e-01, 2.73990314e-02, 1.02485329e-01, 1.77244157e-01, 1.46004423e-01, -1.85309630e-02] +constant:[0.01915183, 0.15695909, -0.03279283, 0.01739476, -0.26949376, -0.13039927, 0.25841323, 0.05682486, 0.10729947, 0.3428219, 0.12785645, 0.0388196, -0.05964164, 0.13856727, 0.06894376, 0.12619548, -0.02049069, -0.13292938, 0.17594697, -0.04604414, 0.12135733, 0.20042625, 0.12004492, -0.17197727, -0.24225347, -0.2946925, -0.16770202, 0.09829748, 0.00505334, -0.07171611, -0.3186382, -0.11579575, 0.1679488, 0.23057294, -0.50582093, -0.0010456, 0.10576705, 0.1432814, 0.03378328, -0.18586645, 0.05516331, -0.1858066, -0.06759008, 0.35791838, 0.14309594, 0.07728109, 0.03138169, -0.07419965, -0.23364833, 0.09853755, -0.04029123, 0.04148238, 0.0368444, -0.12006378, 0.01751854, 0.27514026, 0.28047773, 0.17899047, 0.24661428, 0.3070966, 0.3737593, -0.00724857, -0.02510874, 0.05234343, -0.01792182, 0.03973985, 0.12461882, 0.13523841, 0.16203782, 0.01818135, -0.05368237, 0.15402006, 0.09746563, -0.05799603, -0.08372222, 0.02462966, 0.00252418, 0.10846987, 0.32004866, -0.11539737, 0.07952331, -0.14951669, 0.06687686, 0.07224622, 0.01546831, 0.14781548, 0.01198374, -0.0842105, -0.04119324, 0.02244179, -0.01006588, -0.05421133, 0.07948853, -0.08273576, 0.11771082, 0.07846281, 0.10283758, 0.35663366, -0.11580739, 0.30919203] +extractelement:[-0.27941194, -0.10021886, -0.06017699, 0.13553901, 0.00090115, -0.03471727, -0.10793903, -0.10374112, -0.04765818, 0.04019524, 0.0440553, 0.32487816, 0.0351531, 0.00640116, 0.14605935, 0.15417512, 0.09917548, -0.02273253, 0.1279759, 0.21747468, 0.00939321, 0.05705033, -0.04972645, 0.04008451, -0.09589022, -0.018958, -0.22528577, 0.21249564, 0.19891043, 0.0273632, 0.06123371, 0.01504791, -0.0029767, 0.04877479, -0.05203055, 0.07169905, -0.04912283, -0.09942748, 0.15898603, -0.16017283, -0.00908784, 0.09149906, -0.05915989, 0.07913467, -0.16538566, 0.17293225, -0.01300392, 0.02989502, 0.03396305, -0.01872021, 0.13211524, 0.16723296, 0.12423261, -0.13626583, 0.10779616, -0.01626176, 0.03574997, 0.05794942, 0.06921832, 0.03614656, 0.0941925, 0.06095054, 0.09673361, -0.03645071, -0.02824119, 0.11985746, -0.04186448, 0.03266963, 0.05088016, -0.01529918, -0.1584519, 0.1539129, 0.01267757, 0.00441027, -0.14640915, -0.00905217, 0.05759659, 0.11406526, 0.00953505, 0.06526844, 0.03376096, 0.09162674, 0.10017354, -0.05194801, -0.00898341, 0.13963225, -0.09503808, 0.02402791, -0.12757656, 0.05156561, 0.19132183, 0.15916859, 0.09589817, -0.15707171, 0.06962015, -0.05458199, -0.09423964, -0.1055846, -0.02557286, 0.25340882] +extractvalue:[-0.06892321, -0.05943455, 0.2814908, 0.12089464, 0.01730803, 0.1397285, -0.03944296, -0.12106206, -0.07591233, 0.01223484, 0.05187957, 0.27411345, -0.04326967, -0.06033011, 0.13169646, 0.08909809, 0.05669672, -0.12662314, 0.02263035, -0.16197367, 0.14686887, 0.06671689, 0.16001154, 0.04106442, 0.24700736, 0.03227079, -0.23789108, 0.05358388, -0.18078539, 0.01950153, 0.1284058, -0.03388976, 0.18189028, -0.1289298, -0.12129729, 0.01689823, 0.04129398, -0.15072612, 0.12827174, -0.17423683, 0.04456247, 0.06299552, -0.09432715, 0.12758477, -0.03663186, -0.21889427, 0.00367397, -0.0390689, -0.08642121, -0.03019346, 0.12531433, 0.07674395, -0.04070896, -0.17518473, 0.06308022, -0.02704751, -0.09232976, 0.09006264, 0.1402844, 0.19270232, 0.20658919, -0.07262733, -0.04950992, -0.03703702, 0.06678947, -0.11185172, 0.17521292, 0.06484661, 0.11267343, 0.19019182, 0.00949533, -0.13833733, 0.07662765, -0.10631117, -0.02703062, 0.10767243, 0.04183187, -0.06336785, -0.04661795, 0.0064771, -0.01879255, -0.15069643, 0.04463869, 0.16111116, 0.00278538, 0.13851371, 0.11794608, 0.07400034, -0.13277733, 0.2279174, -0.05203273, -0.13583449, -0.03739018, 0.12154207, 0.00844127, 0.1363002, 0.23272628, -0.10100885, -0.10495424, -0.00612862] +fadd:[0.17501435, -0.00777822, -0.22052385, 0.01298467, 0.01077224, 0.08017144, -0.11034549, -0.10204273, -0.04364675, -0.00385757, -0.0065694, 0.18534872, 0.02640357, -0.05427886, 0.20299019, -0.06985427, 0.08170912, -0.00396237, 0.12320515, 0.07962167, 0.0702363, 0.06514414, -0.15122122, 0.03902723, -0.21365441, 0.07054538, -0.18830934, 0.21702817, -0.14274445, 0.03081699, -0.1017499, 0.02400281, 0.1376354, -0.08186619, -0.23498595, -0.05902927, 0.06965651, -0.09339516, 0.14513434, -0.06472909, 0.13375048, 0.08860678, 0.12411462, -0.05740777, 0.04392979, 0.18921794, 0.22882582, 0.09561536, -0.05409036, 0.04931691, 0.08236234, 0.00476924, -0.03939731, 0.01488996, 0.07844839, -0.0220318, 0.08055459, -0.11755057, 0.00477111, -0.00129085, 0.26231116, -0.00570293, 0.00549362, -0.03928555, -0.05628336, -0.08079655, 0.00073139, -0.04257576, 0.15690604, -0.09273832, -0.26754832, 0.23363061, 0.0876116, 0.07901974, 0.13843502, -0.05276706, 0.08970681, 0.21104322, -0.0543249, -0.1020032, 0.01522138, 0.15685482, -0.07149521, 0.04173061, -0.10455866, 0.19161156, -0.01620413, 0.15292044, -0.13797337, 0.03742811, 0.04040362, 0.15842573, -0.0931606, -0.12581296, -0.11144689, -0.11103646, 0.14556219, -0.09258864, 0.08838879, 0.04558905] +fcmp:[-0.10723653, -0.0907336, 0.09374346, 0.11183028, 0.10700401, -0.05967916, -0.08344556, -0.08195864, -0.05074362, 0.02148017, -0.03215645, 0.14629757, 0.01942804, 0.14746498, 0.16236137, -0.00868909, 0.09928012, 0.03232764, -0.02914769, 0.01846818, 0.04543589, 0.0591317, 0.08335453, 0.03714208, 0.03244232, 0.02575411, -0.21406183, -0.02501553, 0.02272106, -0.04932906, 0.14747539, -0.0049622, 0.18058737, 0.03119349, -0.21319765, 0.0779663, 0.07199895, 0.08482214, 0.14210375, -0.22864743, 0.14401524, 0.19598763, 0.22200933, 0.07840195, -0.14097777, 0.11453316, 0.04640586, -0.03887142, 0.13210708, 0.03037574, 0.01252556, 0.07625338, 0.09678804, 0.04615049, 0.11141152, -0.01675168, 0.04311237, 0.05261653, 0.008834, -0.13039285, 0.22641009, 0.07673802, -0.10293873, -0.03822679, 0.00440414, -0.0895037, 0.17421988, -0.15536477, -0.06661972, -0.12597936, -0.11619893, 0.15160812, -0.0455722, -0.02555881, -0.11877464, 0.02448278, -0.08683365, 0.14355713, 0.01670758, 0.09619697, 0.06529196, 0.07580113, -0.14641951, -0.0752345, 0.06138796, 0.19393922, -0.04506401, 0.02037305, 0.11728203, -0.01440995, 0.06597001, 0.1045408, 0.2434124, -0.01564497, 0.00715174, -0.12064333, 0.1372393, -0.03651457, -0.00581365, -0.01013623] +fdiv:[-0.00028621, -0.11418376, -0.06515384, 0.11074068, 0.1072417, -0.00529566, -0.09568087, -0.17745772, -0.0384916, 0.00311891, 0.12794994, -0.08808198, -0.10553024, -0.00770702, 0.20324154, 0.02925002, 0.10773496, -0.02730876, 0.02192537, 0.03127782, 0.1623117, 0.06812532, 0.08008689, 0.05409709, 0.04687742, -0.02048369, -0.23604123, 0.09675901, 0.00185163, -0.04324172, -0.09877559, 0.11493866, 0.1556853, -0.0105759, -0.13539974, -0.01022147, 0.00564965, -0.1440801, -0.15588568, 0.03491253, 0.04927272, 0.056381, 0.15719248, 0.02932155, -0.04012017, -0.04548769, 0.09690999, -0.01265801, 0.07356954, 0.18413734, 0.00776734, 0.09121397, 0.03817424, -0.27791092, 0.01046211, 0.04232521, 0.09223368, 0.25957993, 0.07279565, 0.28194118, 0.21647483, 0.17749442, -0.11948077, -0.04065794, -0.13231835, 0.0609193, -0.10494595, -0.00772566, -0.18558048, -0.05912289, -0.0535978, 0.20217136, -0.03041286, -0.04368297, 0.13167486, 0.18094519, 0.25846338, 0.10357791, -0.03133557, 0.12596628, 0.02591923, -0.13609287, 0.06875622, -0.05749037, 0.00382856, 0.04527105, 0.11414464, 0.16422619, -0.12871055, -0.08744423, 0.01015143, 0.01533848, 0.18858528, -0.15611897, 0.02106654, -0.1287534, 0.1248075, -0.1845103, 0.07016024, 0.0369007] +fence:[0.06893061, 0.05734629, 0.19163327, -0.08985585, -0.01713479, -0.03914704, -0.02101214, 0.06392568, 0.00238261, 0.02952975, -0.06403253, 0.0028932, -0.17069589, 0.09133352, -0.17953274, 0.239988, -0.05552698, 0.16865203, -0.07740865, 0.14920329, 0.16136293, 0.0583787, 0.07588305, 0.00262802, 0.06867088, 0.02119968, 0.13240008, 0.06780935, 0.07832061, -0.06483315, -0.07570455, 0.0653758, 0.07453176, -0.13800739, -0.12558667, -0.03245498, -0.10166458, -0.09986117, 0.13069724, 0.05697057, -0.09201682, -0.11583347, -0.05169684, 0.04253604, 0.05493578, -0.06601666, 0.03669414, 0.166203, -0.04859471, -0.1842431, 0.101519, 0.11973978, 0.13089819, -0.06961789, 0.0073765, -0.04653402, 0.07393426, -0.01265762, 0.16356236, 0.08245903, 0.18314192, 0.01127402, -0.09551775, -0.09689296, -0.00581495, 0.06605816, -0.05296552, 0.15010093, -0.07960031, 0.01783317, 0.03336922, -0.00540312, -0.2545709, 0.00862579, 0.13637446, -0.01674804, -0.11998946, 0.05233648, 0.00885981, -0.1305913, 0.21308307, -0.26597065, -0.20988438, 0.09383206, -0.13480641, 0.04207052, -0.16628379, -0.1770285, -0.12439049, 0.09082531, -0.08088766, 0.08397203, 0.03440076, 0.08983334, -0.09176951, 0.1478878, 0.022859, -0.02131012, 0.0706423, 0.02492319] +floatTy:[1.35683924e-01, -9.05642472e-03, -1.07209697e-01, -1.93049684e-02, 1.16448894e-01, 4.85994620e-03, 6.29575774e-02, -2.73164045e-02, -2.01518312e-01, 1.30523384e-01, 1.65382043e-01, 6.59823418e-02, -1.73840269e-01, 1.18629187e-01, -2.06651017e-01, 9.90619212e-02, 1.84461921e-01, 1.66568279e-01, 3.55384871e-02, -1.30623812e-02, 7.81177282e-02, -1.00422241e-01, 7.12638348e-02, -1.48949102e-01, 1.80664435e-02, 8.18393454e-02, 1.24255933e-01, -4.20871936e-02, -2.21967816e-01, -5.51589951e-03, -1.87403888e-01, 1.66084599e-02, -2.29822367e-01, 5.24446294e-02, 1.06901266e-01, 5.41586056e-02, -7.93145373e-02, 1.07830860e-01, -1.94169328e-01, 1.11955136e-01, 2.24326819e-01, -1.24076895e-01, 4.25915830e-02, -1.39234632e-01, 1.39414713e-01, -5.03391661e-02, 7.14709535e-02, 1.94944859e-01, 2.05338255e-01, 8.43569636e-02, 1.37621626e-01, 5.08133993e-02, -6.97614551e-02, -2.35078316e-02, 4.21209559e-02, 4.20731679e-02, -6.44855052e-02, -1.00000925e-01, -4.19929903e-03, -1.66254967e-01, -1.10028319e-01, 1.43106535e-01, 2.14200795e-01, 1.23264097e-01, -1.43915668e-01, 4.91949506e-02, -1.32581577e-01, -8.25633705e-02, 1.75394148e-01, 2.20539376e-01, -6.65790141e-02, 1.06604896e-01, 1.40924603e-01, 1.02074057e-01, -1.37682140e-01, -1.80573144e-04, -5.59359379e-02, -2.87696440e-02, -7.78852478e-02, -8.02507252e-02, -9.74324569e-02, -5.75212343e-03, 1.29982501e-01, 7.29377940e-02, -1.01445071e-01, -1.19285867e-01, -2.80830194e-03, 4.57157493e-02, 1.21114932e-01, -1.76235649e-03, -1.09095827e-01, -8.74070376e-02, 4.74020652e-02, 1.26896948e-01, 1.15540504e-01, 7.22580254e-02, 3.43493707e-02, -2.51692580e-03, 2.65273452e-02, -1.21669739e-01] +fmul:[1.53374314e-01, 3.72224860e-02, 8.30072016e-02, 1.17276281e-01, -3.92720802e-03, 7.87110906e-03, -5.58118196e-03, 1.32561848e-01, 3.32319140e-02, 1.42192317e-03, 1.09916724e-01, 1.72950089e-01, 1.82051733e-02, -1.60117112e-02, 1.13200061e-01, 1.11563131e-01, 1.22048937e-01, 4.82129864e-02, 1.09160997e-01, -1.39840931e-01, -1.05735309e-01, 6.82787076e-02, -4.26129512e-02, 4.11481075e-02, -6.00293577e-02, 1.07298151e-01, -2.32084438e-01, -5.14577888e-02, -1.30289227e-01, 1.02720164e-01, 6.85861185e-02, -1.79725662e-01, 1.74800023e-01, 1.10435173e-01, -1.23547666e-01, -4.01340201e-02, -2.93202773e-02, -5.36541305e-02, 1.54230580e-01, -2.45955706e-01, 1.67510271e-01, 8.91344249e-02, 1.92973912e-01, 1.15300268e-01, -2.20793650e-01, -8.81380215e-02, 5.59213422e-02, 9.11774933e-02, -7.80290784e-03, -1.45045295e-01, 8.82258192e-02, 2.01347470e-02, -7.66539052e-02, -1.17326893e-01, -9.65124089e-03, 6.72690347e-02, 7.24932253e-02, -2.77728140e-02, -3.35956849e-02, -1.48384780e-01, 1.60384506e-01, 1.90475285e-01, -1.17075585e-01, -3.89931910e-02, -4.81555162e-06, -8.59411247e-03, 3.10929008e-02, -8.76350850e-02, -5.26248924e-02, -1.06328214e-03, 2.49081478e-02, 1.99570894e-01, -1.49825169e-02, -7.23689944e-02, 1.25161290e-01, -1.95638180e-01, 7.66399354e-02, -6.49849605e-03, -2.73660403e-02, -1.72129840e-01, -1.21109620e-01, 1.21702272e-02, -4.70008142e-02, 4.37448956e-02, 1.38712022e-02, 5.69241345e-02, 6.92169219e-02, 5.31001091e-02, -1.24877475e-01, 1.47130743e-01, -6.43407507e-03, 1.19260564e-01, -9.16465148e-02, -1.97657734e-01, 1.17449746e-01, -2.42297620e-01, 1.73386320e-01, -9.55410898e-02, -1.28079578e-01, 2.61073083e-01] +fneg:[-1.65820003e-01, -1.19456574e-02, -8.94405693e-02, 1.19235344e-01, 1.79215521e-01, 6.94011673e-02, -1.19181983e-01, -1.26981229e-01, -4.52561080e-02, 3.71764675e-02, -9.81280953e-02, 1.76734000e-01, 2.10236628e-02, -4.83533219e-02, 1.49483591e-01, 7.37551004e-02, 1.27214968e-01, 8.53242166e-03, 9.02996957e-02, 8.29823539e-02, 6.80485144e-02, 6.46319166e-02, -3.64893116e-02, -3.33264610e-03, -8.12981278e-02, 2.22762525e-02, -1.24216385e-01, 2.21506491e-01, 8.69047120e-02, 1.70097813e-01, -1.00718746e-02, 1.36036426e-01, 1.58289839e-02, 1.62362710e-01, -2.29093507e-01, 5.14823683e-02, -7.11899772e-02, 7.61670992e-02, 1.11357525e-01, -2.51951337e-01, -7.84849897e-02, 6.92677125e-02, -8.40067416e-02, 8.08322653e-02, 1.09531038e-01, -2.72647422e-02, 1.74402252e-01, 1.22974545e-01, 2.30302903e-04, -2.86714714e-02, 9.91475731e-02, 4.66838665e-02, 1.64076880e-01, -2.46412411e-01, 1.20111398e-01, -1.27744209e-02, -7.74735659e-02, 1.37213111e-01, -6.61885291e-02, 2.87158624e-03, 2.49620438e-01, -9.45819467e-02, -1.17213786e-01, -3.95756066e-02, -8.38102475e-02, 6.54812083e-02, 4.27368954e-02, -1.00462243e-01, 5.28120287e-02, -6.07984550e-02, 6.95136189e-02, 5.44697829e-02, -1.95316747e-02, -2.82221064e-02, -5.44679463e-02, 9.10339355e-02, 1.87772274e-01, -1.86272889e-01, -3.90123539e-02, 1.06301658e-01, -6.63609579e-02, 1.96773276e-01, 6.54316321e-02, 5.99521510e-02, -1.07652850e-01, 9.02386904e-02, 1.89293429e-01, 1.19817548e-01, -7.64518231e-03, 4.97538969e-02, -5.69990166e-02, -1.29762769e-01, 1.06235683e-01, -1.11337036e-01, 2.58484613e-02, 3.65337953e-02, 1.62844867e-01, -1.04744181e-01, 9.60352421e-02, 1.73779860e-01] +fpext:[-0.15374836, -0.0067128, -0.16275187, 0.11814048, 0.02108965, 0.07600914, -0.07477289, 0.06907465, -0.05261073, 0.07192587, -0.09779638, 0.17406647, -0.04670672, -0.00225613, 0.18262371, -0.03249161, 0.12772545, 0.0943209, 0.1406212, -0.13242988, 0.21579799, 0.06321657, 0.01343595, -0.02657837, 0.04883733, -0.01035682, -0.23198283, -0.05368307, -0.12567927, 0.08457894, -0.03736306, -0.09998089, -0.06766719, 0.166946, -0.04531724, -0.11688881, -0.01472151, -0.12454184, 0.1876507, -0.23633069, 0.09246205, 0.01466808, 0.12931283, -0.13287194, -0.16836455, -0.0190695, -0.00479788, -0.01449366, -0.03053118, 0.13398279, 0.0858058, 0.12094026, 0.01825588, 0.03070111, 0.04304797, -0.01727736, 0.05208274, 0.27495167, -0.00373046, -0.09431177, 0.04012214, 0.078719, -0.09540389, -0.01741141, 0.04047269, -0.26140076, 0.2232347, -0.19470866, 0.10329138, 0.06974925, 0.02212533, 0.0878592, -0.01376654, -0.12689929, 0.15759687, -0.01871159, 0.02412913, 0.07214401, 0.01254621, -0.01477914, -0.04575107, -0.01626157, -0.11193304, -0.23753862, -0.05382617, 0.08174977, 0.12901545, 0.15075293, -0.12949704, 0.0841344, 0.02073115, -0.15372483, 0.22479175, 0.16430016, 0.00741984, -0.128416, -0.06252859, 0.10611627, -0.01459803, 0.03467171] +fptosi:[-0.15028225, 0.04198184, 0.09025942, 0.11993077, -0.00378271, 0.04453141, 0.07503651, 0.04625186, 0.00705027, -0.1296199, -0.02048331, 0.17202762, 0.02455848, 0.00476597, 0.14782688, -0.12085375, 0.10863201, -0.01982149, 0.05388702, 0.15360469, 0.00741953, 0.06484561, -0.04935281, 0.04004922, 0.03125466, 0.02275633, -0.22999194, 0.21427503, 0.16092381, 0.13846631, 0.11253448, -0.1760769, -0.01420751, 0.16636476, -0.22820164, -0.10906082, -0.0400731, -0.04317953, 0.11228968, -0.11751871, 0.02833033, 0.09269436, 0.13445546, 0.06453056, -0.06250805, 0.10146704, 0.0722214, 0.02056631, 0.02834581, 0.1233459, 0.10770163, 0.00749958, 0.12166867, -0.01565718, -0.04127885, -0.01187312, -0.00735892, 0.14610861, -0.06174259, -0.01151262, 0.19817, 0.19175108, -0.11770711, -0.1304154, -0.08493702, -0.08502094, 0.22801611, -0.27520198, -0.03656561, 0.09771346, -0.09060701, -0.00503398, -0.2209842, -0.11051514, -0.16253535, 0.12771674, -0.12261177, -0.09582672, -0.03143732, -0.11366437, -0.11149741, -0.09480959, 0.05868959, 0.09535538, -0.1538024, 0.01161102, 0.12617832, 0.0887505, -0.1179707, 0.1013335, 0.02179959, -0.04572182, -0.19410472, -0.04756276, -0.02416215, -0.11117777, -0.1292901, -0.14893009, 0.05777071, 0.05152842] +fptoui:[0.01179717, -0.01995482, 0.11097405, 0.10600802, 0.1435514, 0.05852634, -0.07047015, 0.02193182, 0.05694445, -0.05388214, 0.16736335, -0.09448297, -0.00653193, 0.03284877, 0.19372568, -0.09352689, -0.0789397, -0.01450072, 0.04602545, 0.0185218, 0.1141637, 0.06246275, 0.12531818, 0.03879822, -0.05649856, 0.02703957, -0.21536656, 0.20505203, -0.21346372, -0.03815145, -0.07384811, 0.07602712, 0.00444657, 0.18709224, -0.15049198, -0.08815748, 0.08323679, -0.04768005, 0.12244306, -0.24472314, -0.07240812, 0.17586966, 0.05285813, 0.02637293, 0.15908444, -0.03939092, -0.06589247, 0.01657695, -0.06709649, -0.09378437, 0.11033481, 0.18130913, 0.11647878, -0.08911426, 0.00246855, -0.01955297, 0.09633039, -0.07052822, -0.11525024, 0.00710506, 0.14690506, 0.0220571, -0.14792325, -0.05422186, 0.01614045, -0.06661497, -0.08984113, 0.21618263, -0.13472995, 0.05108705, 0.02470038, 0.1688016, -0.10845669, 0.05250217, -0.00642932, 0.00058065, -0.146999, -0.14537548, 0.0055576, 0.02778826, 0.04563466, 0.23364706, -0.08337533, -0.15622744, -0.11632498, -0.08737011, 0.09068944, 0.03425585, 0.06908409, -0.1311599, 0.04635809, 0.2117225, 0.02172403, -0.16260228, -0.00713062, -0.12291098, -0.15637836, -0.12624125, -0.09639955, 0.02259272] +fptrunc:[-0.21093476, -0.08940549, 0.1848251, -0.02786106, -0.0014827, 0.14699394, -0.1070476, 0.04964172, -0.04477904, -0.05297348, 0.09201299, 0.158115, 0.02118003, 0.0165286, 0.17653948, 0.02600702, 0.11932092, 0.01482455, 0.07949606, 0.10150332, -0.07883985, 0.0653341, 0.1117531, 0.04030275, 0.18823983, 0.04021283, -0.22567035, 0.06791465, 0.02462408, -0.03452322, -0.10127328, 0.10552978, 0.01495228, 0.31683433, -0.22504352, -0.0420573, -0.14694187, -0.13317454, 0.13159688, -0.03712945, 0.14638433, 0.06305347, 0.01220078, 0.1516932, 0.05801636, -0.14570807, -0.0301659, 0.03560301, -0.00321901, -0.11090143, -0.02098494, 0.01792402, -0.03718427, -0.12801506, 0.03699813, 0.05455462, 0.07917299, -0.03448817, -0.05587628, -0.06023329, 0.19924495, -0.10374229, -0.01388496, -0.03798681, 0.00690056, -0.0919619, -0.09879339, 0.06663234, 0.23070799, 0.10011891, 0.07642648, 0.22624181, -0.02026625, -0.16422829, -0.0996433, -0.05008354, 0.02731305, -0.08812463, -0.03538861, 0.2020025, 0.06817888, 0.1659786, -0.03187482, -0.10720643, -0.0398239, 0.03372928, 0.12329458, 0.07070538, -0.11836844, 0.02391778, -0.03723824, 0.03537755, 0.2209391, 0.20396072, -0.01941939, -0.01337339, -0.0828294, 0.04685989, 0.02471708, 0.03612902] +freeze:[-0.15324739, 0.04876969, 0.07388119, 0.14596218, 0.06728973, -0.14350723, -0.13375233, -0.02997683, -0.00763211, 0.02231307, 0.05232897, -0.16825481, 0.01554176, 0.05012508, 0.06702575, 0.03810275, 0.12900048, -0.15589258, 0.11152263, -0.15075141, -0.09735642, 0.05529645, -0.04333284, 0.04159613, -0.0125642, -0.1012037, -0.2270088, 0.1363581, -0.12981056, -0.02457699, -0.0380955, 0.04227004, 0.22239156, 0.08923819, -0.17993408, -0.01977069, -0.01260359, -0.0779092, 0.02525973, -0.16278523, 0.10968581, 0.0159869, -0.20394313, -0.08837086, -0.07341677, -0.05086898, -0.16215067, 0.11543731, 0.10079958, -0.0700727, 0.07751526, 0.10173596, -0.15362763, -0.08799373, 0.13926142, 0.0236695, -0.1319892, 0.21597545, 0.16703935, -0.04715461, 0.12613562, 0.08236301, -0.11517166, -0.08093975, -0.05313066, 0.03531203, 0.13490166, 0.06915808, 0.03311617, 0.12090684, 0.11941467, -0.09227996, -0.06371177, -0.06787843, 0.08269531, -0.09990806, 0.16701543, -0.09340821, 0.0306118, 0.02212976, 0.07733742, -0.07700422, -0.14718851, 0.1250593, -0.22535104, 0.10163549, -0.16055001, 0.13922985, -0.10390616, 0.15487672, -0.1138529, 0.00908473, 0.07266852, -0.14965172, 0.06208159, -0.08961646, 0.13698019, -0.18495454, 0.07351553, -0.03277649] +fsub:[-0.18498059, -0.08701386, 0.06513461, 0.13562857, 0.10294613, 0.11484709, -0.10803636, 0.08257654, -0.05470208, 0.02781903, 0.04622281, -0.00300647, -0.01969444, -0.00636034, 0.19827479, 0.03735971, 0.10636579, -0.03564617, 0.06780813, -0.08820651, 0.14565513, -0.02228754, 0.10238935, 0.03776956, 0.03432481, 0.02788131, -0.21710485, 0.14736141, -0.1493507, 0.14198843, -0.07001716, 0.13580804, 0.19801712, -0.06128609, -0.2274725, -0.00151033, -0.01299492, -0.13995773, 0.14079836, -0.15618351, 0.13800156, 0.11458585, -0.12438082, 0.22043549, 0.22638667, -0.05681659, 0.12266169, 0.12433099, -0.01135946, -0.02595525, 0.08115978, -0.02957293, 0.00183756, -0.19398892, 0.00108408, 0.09523101, 0.11581768, 0.04157556, 0.06446334, -0.00496223, 0.20536587, 0.07287387, 0.0766407, -0.01821868, 0.10642872, -0.01884527, -0.10212778, 0.12498025, 0.00337086, 0.0943909, -0.1290428, 0.08296686, -0.0972526, -0.15362084, 0.10937998, -0.01855109, -0.11925536, -0.16110295, -0.07439052, 0.10321384, 0.07604768, -0.17581911, 0.03404551, -0.1203905, -0.01857588, 0.03076847, 0.04154256, 0.01498669, -0.11042695, 0.15062281, -0.03827409, 0.13921311, 0.22369349, 0.00955134, 0.06918078, -0.1332437, 0.21194032, -0.08567781, -0.10762218, 0.06377082] +function:[1.05212266e-02, -4.36247550e-02, -5.77721000e-02, -6.86600283e-02, -1.58376426e-01, -1.05899535e-02, 4.89734933e-02, -8.92303064e-02, 1.75914139e-01, 1.66624635e-01, 1.24364592e-01, 1.05663883e-02, -1.33768857e-01, -1.07529908e-01, -1.19884595e-01, 7.41052032e-02, -4.62889224e-02, -5.43484204e-02, 1.35608464e-01, -3.36379483e-02, -2.41082991e-04, 2.93203779e-02, 2.51521952e-02, 1.06265701e-01, -2.44183078e-01, -3.62437487e-01, -5.21113351e-02, 2.30272952e-02, 3.43145616e-02, 9.72105339e-02, -2.07626328e-01, -5.84265441e-02, 5.51963225e-02, 1.53272167e-01, 7.33597130e-02, -2.97761932e-02, 3.15332979e-01, -3.96939740e-02, -6.88905790e-02, 4.11112942e-02, -1.30347952e-01, -1.40545098e-03, -9.30359811e-02, -8.05906579e-02, 1.64368272e-01, 5.06392568e-02, -1.44343734e-01, 9.05860141e-02, -2.19990402e-01, 4.82120253e-02, -3.70562561e-02, -1.49298608e-01, 1.40363961e-01, -1.77745800e-02, -6.17671087e-02, 1.93751484e-01, 1.76820099e-01, 1.71255559e-01, -9.86917242e-02, 1.83801532e-01, 4.36467901e-02, -1.79505676e-01, 4.13199030e-02, -1.40723288e-01, -1.06035031e-01, 1.79488454e-02, 9.28194597e-02, 1.19551845e-01, 1.66810960e-01, 4.33587991e-02, -3.15708853e-02, -6.35859221e-02, -7.89736435e-02, 3.77303921e-02, -9.33343992e-02, 3.41708423e-03, 1.69920325e-02, -4.93351021e-04, 6.99387416e-02, 1.73316896e-02, -7.37747848e-02, -3.82318571e-02, -1.26499236e-01, -4.84527508e-03, 1.61443159e-01, -1.06676549e-01, -1.19349301e-01, -3.76663916e-02, 1.46984970e-02, 2.99007352e-03, -3.12305503e-02, -1.74574509e-01, 6.88724890e-02, 7.00825304e-02, 2.67481850e-03, 6.12909980e-02, 5.29889949e-02, 1.45441502e-01, -9.71731097e-02, 1.34580553e-01] +getelementptr:[-0.02727983, 0.06093494, 0.10021276, 0.12345167, -0.00196636, 0.13106778, -0.10898294, -0.01391983, -0.07256909, 0.03830243, -0.04442161, -0.133976, 0.11804993, -0.05391963, 0.13219573, 0.04197894, 0.1006775, -0.20627467, 0.05590732, 0.12245144, 0.06172378, 0.06549043, -0.11894211, 0.03962038, 0.10295766, 0.02668026, -0.22291662, 0.18296313, -0.10186119, -0.03776436, -0.01751551, -0.11339889, 0.03941478, 0.10918123, -0.17379993, 0.11921095, -0.04451167, -0.08880962, 0.12844414, -0.1981045, 0.08851461, -0.10511538, -0.06264205, 0.10654319, -0.01367253, -0.21670769, 0.18994969, 0.00718806, -0.0413992, -0.15497382, 0.07646383, 0.13992669, -0.060373, -0.2149324, -0.01475877, -0.0274524, -0.08969899, 0.13440384, 0.15711194, -0.08135647, 0.18180294, 0.01918155, -0.09541065, -0.05372668, -0.09174948, 0.03766058, 0.02642755, 0.04489736, -0.11470073, -0.08919776, -0.22422992, -0.0059867, -0.1430404, 0.05635552, 0.02599081, 0.12844352, 0.08963295, 0.06402681, 0.01779809, -0.13622034, -0.04940832, -0.23404478, -0.19332717, -0.20107338, -0.1001284, 0.03793315, -0.10047987, -0.12453449, -0.1099059, -0.09999247, 0.00374144, -0.01262514, 0.14659394, -0.02240402, -0.04928448, -0.19375451, 0.02018817, -0.00440831, 0.12592293, 0.09950345] +icmp:[-0.20959876, 0.04156138, 0.06085877, 0.11377298, 0.02193059, 0.07596802, -0.10109752, 0.05211943, -0.00045788, 0.02903608, 0.06260763, 0.21488643, 0.01810827, -0.07635999, -0.16222139, -0.1268567, 0.0928147, 0.00118024, -0.15843192, -0.1298029, 0.10026355, 0.02843001, -0.1985083, 0.04214703, 0.14006412, 0.00542024, -0.22720899, 0.12027251, 0.08511206, -0.03296607, 0.06426828, 0.23703603, 0.18456042, -0.10820691, -0.13101721, -0.00034157, -0.0199707, -0.06489434, 0.12810075, -0.12195292, 0.03684032, 0.02883572, 0.08277808, 0.12856297, 0.17092614, 0.08309627, -0.00329011, 0.21234323, -0.03418293, 0.1356066, 0.07558315, 0.23089868, 0.04276591, -0.19634579, 0.09130659, 0.04700824, 0.03158331, 0.08931372, 0.06834921, 0.13041657, 0.18922083, 0.1197318, -0.11522641, -0.08694865, 0.01095211, -0.09902513, 0.08979762, 0.03900012, 0.07568035, 0.12996763, -0.18762192, -0.02391609, -0.00869777, -0.09779657, 0.10506523, 0.11947019, -0.11983787, -0.09381734, 0.04348704, -0.00166733, 0.08131496, 0.15342128, -0.04945667, 0.18869121, -0.18492462, 0.1486801, 0.01775796, 0.03211413, -0.12344705, 0.0049192, 0.06646651, 0.10606286, -0.08857808, 0.13148588, 0.09272888, -0.05470714, -0.05287485, 0.02280086, -0.04512032, 0.04244413] +indirectbr:[4.20013517e-02, 1.52401984e-01, 6.85334112e-03, 5.46206646e-02, 2.23121673e-01, 5.71688451e-02, 5.56901544e-02, -3.10432222e-02, -7.27228448e-02, -3.29435408e-01, 7.13692904e-02, 3.52720954e-02, 1.43906280e-01, 1.47839949e-01, 2.52914429e-01, 8.68248194e-02, -2.21883561e-02, -2.03420162e-01, -1.21109746e-01, 3.94470021e-02, 5.68377450e-02, 1.10794157e-01, 6.42567351e-02, 2.08895490e-01, 4.44485294e-03, 3.66348624e-01, -7.44741410e-02, 1.14427820e-01, -6.52819499e-02, 4.36955281e-02, -4.99444045e-02, 1.42462167e-03, 1.08783934e-02, 1.22478055e-02, 4.99485433e-03, 1.60904884e-01, -2.63487548e-01, 7.22611994e-02, 4.87518832e-02, -2.34723724e-02, 4.88757901e-02, -4.43153940e-02, 1.09187879e-01, -3.83185036e-02, -1.40896942e-02, 4.58729193e-02, 7.31691420e-02, -4.36261669e-02, 4.03373968e-03, -6.01265877e-02, 1.12381391e-01, 1.41178817e-01, -1.62372608e-02, -1.57589287e-01, 1.43122543e-02, -9.91724432e-02, -5.04452996e-02, 6.88358545e-02, -8.21931474e-03, 4.79224809e-02, -1.68505479e-02, 3.88414860e-02, -1.24464370e-01, 1.23342894e-01, 4.39560413e-02, 7.94139877e-02, 7.82926455e-02, 1.51671190e-03, -7.91097879e-02, 1.49230100e-02, -1.50398733e-02, 3.86023931e-02, 8.25022236e-02, -2.15229616e-02, 2.02089008e-02, 6.05428964e-02, 4.79062423e-02, 1.47430897e-01, -1.01518976e-02, 7.60300690e-03, 2.19094396e-01, -4.07779291e-02, 1.03696130e-01, -4.11211029e-02, -6.91794753e-02, 5.45026176e-02, 1.31396323e-01, -2.94684879e-02, -3.15583982e-02, 3.46049480e-02, -4.93146032e-02, 1.18670017e-01, -2.25824086e-04, -1.23448640e-01, -8.43151286e-02, 5.18461950e-02, -4.54835743e-02, 1.40964985e-01, -5.06418683e-02, -1.42744049e-01] +insertelement:[-0.2324237, -0.03171358, 0.18202293, 0.11687166, -0.00432816, -0.02622955, -0.07292334, 0.03953641, -0.01170358, 0.04922677, -0.08581807, 0.11750946, 0.02301003, 0.12907748, 0.07363708, -0.07552223, 0.11217991, -0.04898575, 0.02544232, -0.22046413, 0.19926605, -0.08861557, 0.09656161, 0.04052949, 0.0329278, 0.04213047, -0.23228832, 0.24003117, 0.01796363, -0.02566596, 0.07919533, -0.00115893, -0.01624097, -0.00878847, -0.2418234, 0.01979165, 0.05656441, -0.13197836, 0.15576231, -0.17303725, -0.02360631, 0.04148728, 0.22962919, -0.13737069, -0.00435394, 0.11904612, 0.13178866, -0.1092339, -0.05839387, 0.00735084, 0.09200626, 0.19003628, 0.12834686, 0.03899108, 0.13936609, -0.01425214, -0.04399342, -0.02825675, -0.09364261, -0.05487509, 0.30039608, 0.06095714, -0.05204326, -0.01571183, -0.14618775, 0.10310815, -0.08551032, 0.0909109, -0.07285038, -0.08696564, 0.27441764, 0.20755982, -0.0046773, -0.03682854, 0.06322996, 0.06913504, 0.11307959, -0.10764919, -0.02003516, -0.0840362, 0.01646243, -0.16048376, 0.08548428, 0.03423862, -0.06318045, 0.02031728, -0.10998556, 0.09907033, -0.12457342, 0.04816744, 0.01285553, 0.10845224, -0.01553614, -0.00212646, 0.21161121, 0.00781818, 0.23396727, 0.10235399, 0.08067391, 0.04226991] +insertvalue:[0.11735483, -0.07228319, 0.06452597, 0.13398567, 0.03421269, 0.01790218, -0.05523279, -0.1521001, -0.00271091, 0.06280789, -0.13693354, 0.20581909, -0.09848464, -0.20870636, -0.1033056, 0.13613941, 0.09365483, -0.11942684, 0.08768075, 0.09529725, 0.04956042, 0.06249535, -0.03806818, 0.04105768, -0.00791879, -0.04358083, -0.23933367, -0.10991387, 0.06339541, -0.14751709, 0.11668137, 0.04798419, 0.15238549, 0.17500411, -0.2359525, 0.28029764, -0.02004608, -0.03930982, 0.15733519, -0.13893297, -0.08491698, 0.1957405, 0.08887663, 0.10654178, -0.04119737, -0.03828781, -0.09287333, 0.17678975, 0.06556813, -0.09414218, -0.05535112, -0.24860291, -0.05534401, 0.01047359, 0.12811242, -0.01832516, -0.14698799, -0.00213248, -0.09665642, 0.1283284, 0.19449171, 0.041549, -0.13939816, 0.08063625, 0.00984878, 0.04159806, -0.05147957, 0.05710565, -0.07181891, 0.1780305, -0.04926959, 0.02291404, -0.05274268, -0.06370566, 0.09937856, -0.02783486, -0.05494561, 0.19832468, -0.00875232, 0.0086706, 0.04705402, -0.17918693, 0.11819296, -0.04305563, 0.21120362, 0.07462737, 0.10026699, 0.04390782, -0.12832215, -0.08881682, 0.11637636, 0.02213136, -0.06613152, 0.11824591, -0.13003348, -0.14455253, -0.03440196, 0.1132504, -0.03388071, -0.0459631] +integerTy:[-0.07798279, 0.09729774, -0.06053331, -0.11402459, 0.16298646, 0.07950029, 0.11139333, -0.06248767, 0.13722934, -0.01892764, -0.13496588, -0.02150867, -0.08610561, 0.12320617, -0.08344433, -0.15417531, -0.0930981, -0.00779124, -0.11099111, -0.03361172, 0.04733561, -0.20328847, 0.05180176, -0.14260286, 0.01206945, 0.11105232, 0.16752782, -0.07944495, -0.1357405, -0.20212658, 0.02680353, -0.03109478, -0.17071068, 0.07642383, 0.0901159, -0.01369506, 0.14583933, 0.12039646, -0.0908672, 0.06318472, 0.13261224, 0.09243267, -0.08132963, -0.10360124, 0.03165382, -0.0604607, -0.14042388, 0.16531645, 0.23350269, 0.09105272, -0.05924302, -0.01052225, -0.10817521, 0.04644459, 0.05067946, 0.09115247, -0.09182224, -0.09466077, 0.06503481, -0.04124333, -0.05362174, -0.03901932, 0.15954238, -0.13652006, -0.09092207, -0.02120222, 0.08802368, 0.03826731, -0.01130833, 0.14509849, 0.00318678, -0.21023257, 0.14809993, 0.11915758, -0.24825092, 0.11770319, -0.0240429, -0.11320976, -0.10015334, -0.15122437, -0.0299646, 0.19323966, 0.14557001, 0.12777726, -0.04971699, 0.00958261, -0.01712764, -0.05338105, 0.12340877, -0.08447646, 0.21934623, 0.24802013, 0.05342798, 0.10791513, 0.13209738, -0.12066218, -0.03312495, 0.0703809, 0.02502425, -0.06618271] +inttoptr:[0.05096667, 0.08459638, 0.22162054, 0.1150986, -0.01028399, -0.21406, 0.09515788, 0.0702737, -0.15528473, 0.056481, 0.08040468, 0.006476, 0.01997007, -0.0145789, 0.12307417, 0.16559178, -0.08797541, 0.06259997, 0.03513967, 0.09782706, 0.11517934, 0.04209224, 0.04066309, 0.04385439, 0.08642614, 0.02609422, -0.23988861, -0.05466734, 0.17309184, 0.03282501, 0.18277721, 0.13930532, 0.01248959, 0.00960059, 0.05809851, -0.01858488, 0.20381138, -0.11572462, 0.15415896, -0.16416301, -0.09536346, 0.08856498, 0.17863679, 0.10198975, -0.17948996, 0.13446373, 0.12541571, -0.15565458, -0.13234185, -0.15596278, -0.03725768, 0.16280243, -0.06858346, -0.17370506, 0.11683508, -0.01170519, 0.07215485, 0.03782213, 0.10491876, 0.06701484, 0.18106918, 0.02428591, -0.12441345, 0.1097096, 0.01391213, 0.06459522, -0.19532648, -0.00902568, 0.00616729, 0.16294375, -0.02580118, -0.13570614, -0.03195077, -0.0094842, 0.1160754, -0.08526462, 0.18705982, 0.02967185, 0.07329684, -0.17889993, -0.05698498, 0.04468891, -0.23276062, -0.00873121, -0.23263864, 0.20504227, -0.1275298, -0.2248524, -0.11981698, -0.05501909, 0.10710753, 0.14193541, 0.18196169, 0.01317145, -0.08095901, 0.00408099, 0.07845145, 0.0637454, 0.16748725, -0.01252047] +invoke:[1.99988903e-03, -1.20482109e-02, 4.23964001e-02, 1.31885171e-01, 4.63441201e-03, 1.34139746e-01, -5.98415248e-02, -2.98293456e-02, -4.68753949e-02, -3.57618183e-01, -3.23485560e-03, 1.58058405e-01, -1.25942126e-01, -6.89192209e-03, 5.88887632e-02, 1.07038528e-01, 1.02410011e-01, -3.10334787e-02, 2.20017433e-02, 6.93076402e-02, -9.76333953e-03, 4.76518795e-02, 1.39307737e-01, 3.97456475e-02, -1.48052601e-02, -2.21423045e-01, -2.32168496e-01, 1.18214197e-01, -6.02918677e-02, 2.71793152e-03, -3.69190238e-02, -7.97534585e-02, 2.69294530e-01, 1.53277591e-02, -1.99380621e-01, 1.26288459e-01, -2.79431324e-02, -1.33778766e-01, 1.70441881e-01, -1.10608421e-01, 7.40342066e-02, -1.64921377e-02, 1.07420534e-01, 6.97309673e-02, 7.60389864e-02, 5.09979911e-02, 6.92966133e-02, -5.52931130e-02, 3.47195044e-02, -1.37043580e-01, 8.91899616e-02, 2.25187704e-01, 6.27938239e-03, -1.25947848e-01, 9.49147493e-02, -1.13414703e-02, 3.20813023e-02, 1.31799683e-01, 2.08285064e-01, 9.05682370e-02, 1.79327384e-01, -5.48406914e-02, -1.16129406e-01, -2.09825769e-01, -1.72475010e-01, -5.29868677e-02, -5.09532541e-02, 3.31220329e-02, 1.90975405e-02, 4.98387069e-02, -1.00473262e-01, 2.82921683e-04, -1.51429236e-01, -1.80967543e-02, 2.70459689e-02, 1.04600072e-01, 8.51235762e-02, 1.59879178e-01, -1.49666397e-02, -4.79481928e-02, 5.28588183e-02, -9.72321332e-02, -2.31122985e-01, -1.07243657e-01, -1.26501039e-01, -1.72307342e-01, 1.50726512e-01, 3.57017629e-02, -1.34642228e-01, 7.82265887e-02, -7.19942451e-02, 1.56608284e-01, 1.17511712e-01, -1.32749304e-01, -6.04031421e-02, -5.79363434e-03, 5.01505360e-02, 3.50173004e-02, -3.34911905e-02, -3.13713262e-03] +label:[-0.0207419, 0.12566154, -0.09483647, 0.09518046, 0.3086335, -0.17478043, 0.2040101, 0.07915077, 0.0919316, -0.28965932, 0.09408462, 0.04834598, -0.07223021, 0.06039219, 0.13506597, 0.0635608, -0.3059585, -0.16671129, 0.19443786, -0.06054997, -0.12082306, 0.00399432, 0.25335562, 0.18891215, -0.18673989, 0.30413926, -0.16922854, 0.08910256, 0.03612492, -0.09725324, 0.21732625, -0.10777052, -0.37682554, 0.18714635, -0.02878352, 0.06911889, -0.22718778, 0.00334948, 0.13931781, -0.23386474, 0.02984553, -0.20285437, -0.04025953, 0.29356265, 0.21360593, 0.09702757, 0.26869878, 0.03004794, -0.14693327, 0.05899873, 0.02450701, -0.00657996, 0.05686585, -0.09574956, 0.09428935, -0.21755052, 0.19870971, 0.13511834, 0.23558684, 0.35429892, 0.18317589, 0.00586226, -0.08063415, 0.09934633, -0.14137758, 0.0714242, 0.07565954, 0.11856364, 0.04054626, 0.06035209, 0.01640592, 0.25978813, 0.03128114, -0.13600573, -0.01192348, 0.0186363, 0.01639987, 0.04396317, -0.34756088, -0.02406711, 0.17420337, -0.05798342, 0.06875545, 0.04964471, 0.03479365, 0.27089408, 0.04324593, -0.03471263, -0.10213348, 0.02963642, 0.01215074, 0.02610569, 0.02849583, -0.12550265, 0.13003564, 0.05711608, -0.00050701, 0.39909378, -0.0753678, -0.3245998] +landingpad:[-0.09363849, -0.11151177, 0.21233027, 0.0636611, -0.00380319, -0.00912234, 0.13762319, 0.10661241, -0.06479611, -0.08870396, 0.18410167, 0.16368572, 0.10788304, -0.01786121, -0.05067435, 0.16297606, -0.04694067, -0.0150793, -0.18207307, 0.11582885, -0.11235882, 0.02244108, -0.05789, -0.11145718, -0.00795527, -0.21535027, -0.22849667, 0.08591922, 0.05475704, 0.00868021, 0.01593949, 0.06718366, 0.2418782, 0.03220882, -0.01387068, 0.25085458, -0.01259401, -0.01927507, 0.1535317, 0.1171824, 0.10354003, -0.03729149, 0.088034, 0.04377231, 0.02163584, -0.05768088, 0.05609075, -0.06902473, -0.0459494, -0.08395201, 0.09476947, -0.06047876, 0.06430314, -0.12351996, -0.12751696, -0.08312873, 0.04965324, -0.03043909, 0.19869007, 0.06024817, -0.03851182, -0.1259549, 0.00697576, -0.24086383, 0.02952116, -0.04047157, -0.05882137, 0.0833912, -0.12731074, -0.08189653, -0.14132823, 0.01184019, 0.18427935, 0.00646458, 0.05274762, -0.03317836, 0.04043896, -0.11417796, 0.04326729, -0.12554026, -0.01455902, -0.11662254, -0.03593409, 0.03410574, -0.03602083, 0.10520167, 0.24520086, -0.19529782, -0.12839629, 0.07235812, 0.01214428, 0.10863976, 0.16462551, -0.19929208, 0.01943048, 0.06858066, 0.07212041, 0.14815944, -0.01079721, -0.02944771] +load:[-0.14250867, 0.07558595, 0.01955433, 0.11516298, -0.00503175, -0.0541485, -0.09384119, -0.16791175, -0.10588826, 0.04050335, -0.02204408, -0.12707937, -0.02103106, -0.07291184, 0.04942448, 0.13821341, 0.00940521, -0.04728377, 0.09987596, 0.19185512, 0.03250135, 0.06282584, 0.1505786, 0.03944292, -0.02667749, 0.02061722, -0.19525948, -0.04678915, 0.19917677, -0.03247701, -0.00796013, 0.20520072, 0.12656674, -0.09719269, -0.20614703, 0.13725968, -0.09973203, -0.08446377, 0.16969153, -0.12739913, 0.1387621, 0.02322399, 0.1729395, 0.02493306, 0.06144214, 0.05345426, 0.04720994, 0.10080604, -0.02124048, 0.04621473, 0.07568483, 0.12725338, -0.12053393, 0.06839523, 0.03420743, -0.01819229, -0.09599483, 0.1185574, 0.01698398, 0.05111325, 0.10456844, 0.03313148, -0.12030702, -0.09029745, 0.13140263, -0.09180105, 0.13103127, 0.21069576, -0.15264001, -0.0787503, 0.10841762, -0.00622454, -0.22927465, -0.02811618, -0.02188486, -0.06076387, 0.05693517, 0.04287313, 0.01309889, -0.13151851, 0.07736055, 0.15663065, 0.00807903, -0.14539422, -0.09674185, 0.12974742, 0.0990879, 0.06745216, -0.11811075, 0.21323462, -0.03109364, -0.05398965, 0.18113768, -0.11669094, -0.04037818, 0.07353364, 0.07695604, -0.09817867, -0.08503664, 0.01649394] +lshr:[-0.17499307, 0.06170246, 0.00391319, 0.11666837, -0.00372619, -0.00605663, -0.08418671, 0.17937554, -0.03120379, 0.03755128, 0.04414969, -0.09395316, 0.00558405, -0.00919688, 0.14177373, -0.03243914, 0.10299847, -0.01337128, 0.05645956, 0.12585543, 0.09845892, 0.06057512, -0.04157469, 0.03887207, -0.12438125, 0.02454705, -0.21717252, 0.10169456, -0.05901559, -0.03106417, -0.10461484, -0.22650379, 0.13494441, -0.18746494, 0.04075211, -0.08267799, -0.03274778, -0.03566725, 0.15750246, -0.07141294, 0.06737294, 0.16686106, -0.16142927, 0.13395421, -0.14858176, -0.15598407, 0.07487178, 0.1341081, 0.05260403, 0.08856057, 0.08233495, 0.12500961, -0.05290044, -0.00612408, 0.10820535, -0.013274, -0.02851021, 0.12760387, -0.03051735, 0.07274087, 0.2662276, 0.1157186, -0.12573932, -0.1334631, 0.07025855, -0.01003535, 0.0883177, -0.12892379, 0.1490133, -0.08615151, 0.07529502, -0.07267954, -0.0261286, -0.05627572, 0.02172411, 0.0779809, 0.34294543, 0.01847686, -0.0872442, -0.02844721, 0.1004348, -0.20443907, -0.05334682, -0.09686635, -0.04526369, 0.06979828, -0.06012895, -0.09771562, -0.11414862, -0.08296872, 0.09491637, 0.15627046, -0.07903046, -0.1552043, 0.09918291, -0.02439467, 0.1380027, 0.05964499, -0.04331538, 0.0317615] +mul:[0.12568891, 0.04052157, 0.02248583, 0.12429512, 0.10077801, 0.05483148, -0.14238456, -0.08982942, -0.02607313, 0.04413217, 0.02448802, -0.17373206, 0.01608609, -0.00252744, 0.15423173, -0.16246927, 0.10411734, -0.00260055, 0.02317029, -0.06200347, 0.11035305, 0.06497882, 0.1084607, 0.0412166, 0.03567567, -0.00912579, -0.22727503, -0.14199528, -0.07830062, -0.16021097, 0.13224462, 0.22520688, -0.02473053, -0.2276294, -0.2320886, -0.03814472, -0.01860634, -0.0659399, 0.15010034, -0.16525748, 0.06981173, 0.09348366, -0.02900897, 0.12309948, -0.06578472, 0.19230251, 0.07997157, 0.08371266, -0.0260937, 0.05503405, 0.07953469, 0.10602037, 0.1584572, -0.23561925, -0.03138191, 0.14301732, 0.0457942, 0.15428019, 0.00999161, 0.11853112, 0.14988695, 0.04413996, -0.11837111, -0.04375467, 0.01569659, 0.12673202, 0.03141495, 0.08757265, -0.07374371, -0.19698113, 0.08716562, -0.01062193, 0.08972609, -0.03416887, 0.0510575, 0.12511575, 0.19485754, 0.13875109, 0.02608114, -0.13510208, -0.00482731, -0.17617016, -0.06310094, -0.18890741, -0.06402466, 0.07213186, -0.02542512, 0.039978, -0.13188697, 0.15388893, -0.07755675, 0.13317393, -0.01666014, -0.13451064, -0.22541307, -0.12358861, 0.00275108, -0.09480201, 0.11406297, -0.03905614] +or:[-0.14926343, 0.03398681, 0.14255376, 0.117726, 0.03178966, -0.01197183, -0.03758015, -0.14905934, -0.01798418, 0.04283236, -0.06350204, -0.09241223, 0.04838341, -0.05194646, 0.16577676, -0.10945165, 0.10273644, -0.04638558, 0.06100567, -0.19490258, 0.01192001, 0.06132535, 0.09063784, 0.03927173, 0.16859497, 0.08483339, -0.22069238, 0.17109196, 0.01455465, -0.07309693, 0.00936556, 0.05719344, -0.02528631, -0.07869176, -0.22523805, -0.06465802, 0.00449615, -0.06418817, 0.1480953, -0.11805516, 0.06546334, 0.06881746, -0.10208062, 0.11681641, 0.14021389, -0.02906494, -0.03720719, -0.05058458, -0.00341183, 0.17886034, 0.09716011, -0.10286067, -0.05954486, -0.208051, 0.11416873, 0.03023535, 0.04144362, -0.10136826, -0.0603644, -0.08343481, 0.19154802, 0.11808151, -0.09072431, -0.03948245, 0.00388991, 0.07835568, -0.20054668, -0.0751818, -0.03642512, 0.11806035, 0.18830335, -0.07646046, -0.02914809, -0.01192413, 0.10347849, 0.12227345, 0.10208133, 0.10951929, 0.04378824, -0.07159024, 0.07808971, -0.08294556, -0.2064751, 0.17000584, -0.0830296, 0.2278975, 0.00188287, -0.09935778, -0.01254592, -0.01153885, 0.03514764, 0.15560754, 0.19256575, -0.02923292, -0.0773742, -0.2380664, 0.143518, 0.07686974, -0.05931006, 0.04853339] +phi:[-0.03516447, -0.03220597, 0.03993476, 0.1414129, -0.3194708, 0.05548335, 0.13034695, -0.11264109, 0.01828055, 0.30708727, 0.21133661, 0.00172056, 0.10053808, 0.00243964, 0.07359117, 0.1287596, 0.16953012, -0.11345536, -0.04302488, 0.02452122, 0.2411715, 0.0764525, -0.08228451, 0.04841644, -0.14264108, -0.30007184, -0.30866772, 0.10162014, -0.0879961, 0.04330831, -0.47264093, -0.04221134, 0.34622386, 0.2410451, -0.26199114, 0.08701169, 0.2519496, -0.06898717, 0.14604984, -0.06997984, 0.0945008, -0.03354426, 0.02589443, 0.10969498, 0.08291268, 0.07272556, -0.11962792, -0.02188537, -0.10512653, -0.0044452, 0.07590447, 0.00480158, 0.00473859, -0.16245262, 0.04862603, 0.0033696, 0.10822272, 0.13506967, 0.08865304, 0.09920598, 0.15033978, -0.06082416, -0.18578707, -0.14463918, 0.1277173, 0.09432762, 0.05052451, 0.04097108, 0.04738238, 0.06262261, -0.10287482, 0.00092199, -0.02752429, 0.03659046, -0.02136433, -0.0160693, 0.04948482, 0.05034123, 0.45753676, 0.00793753, -0.00940551, -0.08380523, -0.02678688, -0.02625991, 0.05968755, -0.01499627, -0.0044442, -0.09861894, -0.15555644, 0.05561902, 0.03880922, -0.02716369, 0.11798546, -0.03073118, 0.03656561, 0.02099866, 0.03385742, 0.18418704, -0.05031968, 0.41358733] +pointer:[0.03123539, -0.12279697, -0.0222969, -0.08209794, -0.19700322, 0.00165673, 0.20261402, 0.06467895, 0.13908474, 0.25042614, 0.1166008, 0.04022638, 0.22181834, -0.12917693, -0.11463903, 0.08896846, -0.04061838, -0.01393917, 0.00670557, -0.00684017, 0.18470453, -0.08203396, 0.11084605, 0.11433905, -0.18914528, -0.46315476, -0.04874598, 0.01896567, 0.04587683, 0.11604073, -0.24491957, -0.11011378, 0.09517997, 0.15915126, -0.18437222, -0.00950289, 0.0788699, 0.1431012, -0.0262903, 0.0529156, 0.12784281, -0.15338483, -0.05947744, 0.04482011, 0.09083443, 0.04918883, -0.1264147, -0.18407518, -0.18626171, 0.0879399, -0.08485964, 0.07293637, 0.14825654, -0.04602568, -0.09255552, 0.22612758, -0.0015418, 0.1760004, 0.18692377, -0.00765303, 0.02239273, -0.08001446, 0.01315096, -0.12539373, 0.18218094, 0.01749995, 0.0621087, 0.12694311, 0.1443823, 0.00299811, -0.03152865, 0.13128963, -0.09849889, -0.04628718, -0.10812365, -0.0021774, -0.00093766, 0.0941289, 0.23993275, -0.10318744, -0.11031704, -0.12886426, -0.1367767, 0.08353511, -0.00938423, -0.11108616, 0.0561689, -0.04820582, 0.00839405, -0.02193715, -0.11515243, -0.08234616, 0.08465125, 0.01679135, -0.04214418, 0.11930685, 0.05064099, 0.06035506, -0.12654103, 0.17779724] +pointerTy:[-0.11052639, -0.18481678, 0.09526484, -0.04985547, 0.12527941, 0.09704817, 0.09716175, 0.0408411, -0.23723999, 0.18257745, 0.13475773, -0.06241428, 0.19628583, 0.1730739, -0.00045628, 0.06727263, -0.20552696, -0.14464411, 0.08264596, 0.02723849, -0.1108482, -0.11055944, -0.01330858, -0.15015084, 0.16606191, 0.05683077, 0.15470846, 0.05877865, 0.13185674, 0.11583704, -0.11984072, -0.08194348, 0.01631281, -0.14951101, 0.01178439, 0.13346453, 0.13083492, -0.04959657, -0.17630176, 0.02559215, 0.12257794, -0.20896712, 0.09365615, -0.14511633, -0.09476913, -0.04605216, -0.09854354, -0.04170453, -0.1507726, -0.05576011, -0.21006472, -0.03599436, 0.20849103, 0.02206128, -0.12010481, 0.03699104, -0.10688034, -0.07670875, 0.06701352, -0.18515107, -0.02659226, 0.15697132, 0.11007931, 0.2113602, 0.09602954, 0.05114396, -0.09112716, -0.07425848, 0.12266865, 0.16390829, -0.08110466, -0.17459042, 0.14687014, 0.15833305, 0.13859132, -0.00033473, -0.01462258, -0.05891883, 0.04720468, -0.08807421, -0.02366836, 0.01190955, -0.10491285, 0.08441032, -0.0279544, -0.10993841, 0.00460701, 0.01260252, 0.10331254, 0.0802073, 0.186738, 0.00152124, -0.0032117, 0.17207147, 0.09664292, 0.00854789, -0.13166262, -0.07259565, 0.03070558, 0.16069916] +ptrtoint:[0.00404162, 0.03491534, 0.23792116, 0.11573713, 0.05896221, -0.12354601, -0.1554235, 0.17271443, 0.06746257, 0.00150827, 0.01909225, -0.13785426, -0.13958679, -0.05258848, 0.09190127, 0.10030559, 0.07158362, 0.11636219, -0.1950798, 0.10640074, 0.16238655, 0.01764357, 0.08152635, 0.04160857, -0.15833455, -0.04361302, -0.23360303, 0.10106531, 0.0942565, -0.03689511, -0.07255059, -0.23234652, -0.00580292, -0.21166347, -0.19031149, -0.13431084, -0.03822523, -0.0858656, 0.13410951, -0.11819587, 0.08725367, 0.23363414, 0.02108663, 0.05886723, -0.02843021, -0.06489522, 0.08851766, 0.03948434, -0.02764433, 0.11146583, 0.07785787, 0.12883769, -0.13130696, 0.03572157, 0.10745486, -0.01302982, -0.07216492, -0.15015537, 0.2830088, -0.10643569, 0.14169633, 0.04178928, -0.04918687, -0.07918888, 0.06725052, 0.27305105, -0.10569622, -0.05214078, 0.00952468, 0.07180876, 0.09670665, -0.03515245, -0.00500535, -0.0305531, 0.11334993, 0.00881321, -0.12394878, 0.20096207, 0.02178857, -0.08258627, 0.03165665, -0.24855556, 0.02958681, 0.00884254, -0.09961163, 0.1475876, -0.10293196, -0.03306563, -0.12171579, -0.0538505, 0.00696761, 0.10419938, 0.04848721, -0.11633462, -0.05830527, -0.10297018, 0.09303282, 0.00683534, 0.11163763, -0.00370169] +resume:[-1.50141679e-02, -1.54706314e-02, 1.99551329e-01, 1.25999615e-01, 1.77865513e-02, -3.05471923e-02, -1.12735778e-01, -5.78142935e-03, 3.15563899e-04, -6.98234013e-04, -6.20306991e-02, 1.40619073e-02, 8.13560784e-02, -2.12646518e-02, 3.16319475e-03, -1.01047650e-01, 1.28688112e-01, 8.54256228e-02, 4.83242460e-02, -8.52012560e-02, -5.35745285e-02, 6.56736121e-02, -2.45685652e-01, 4.25116159e-02, -1.34489536e-01, -1.51086878e-02, -2.44336531e-01, 8.30545500e-02, 6.84032217e-02, 4.06703092e-02, 1.05553925e-01, -8.64742044e-03, 2.35021219e-01, -1.95045248e-01, -1.17960041e-02, 2.14602053e-01, -2.58021839e-02, -9.33094472e-02, 1.42667025e-01, -1.16330482e-01, 2.32800782e-01, 2.33373754e-02, 1.53565750e-01, 2.00658292e-01, -4.90107834e-02, -8.23798701e-02, 6.57456578e-04, 2.80695260e-02, 5.80331916e-03, 1.34110585e-01, 4.57452238e-02, -9.97387394e-02, -1.50309384e-01, -1.32905722e-01, 9.89716873e-02, -9.06303618e-03, 1.66393474e-01, 2.86756337e-01, 1.36199072e-01, 7.09510073e-02, 1.90639079e-01, 1.53074833e-02, -1.35931000e-01, -4.14431430e-02, 9.00766067e-03, -7.05926567e-02, 7.89662227e-02, -2.08626747e-01, -9.78517011e-02, 4.52524088e-02, -8.40868205e-02, -1.34466672e-02, -6.70724586e-02, -3.53224352e-02, -2.28279158e-02, -2.43413188e-02, 2.12785780e-01, 3.54924530e-01, 1.17471889e-02, -1.34678707e-01, 3.80702168e-02, 7.22603649e-02, -1.00680254e-01, 2.15813629e-02, 8.75998810e-02, 9.37331691e-02, -9.86581948e-03, -8.44326243e-02, -1.34055495e-01, 1.45529836e-01, 1.17083877e-01, -1.28139839e-01, 7.13739172e-02, 1.69108547e-02, -1.82327479e-01, 1.44358128e-01, 9.17805955e-02, 1.02663733e-01, -9.72049870e-03, 3.22383009e-02] +ret:[-0.0686347, 0.00258598, 0.02829883, 0.11027299, -0.00879756, -0.0368485, -0.1504632, -0.02467126, 0.03310875, -0.03322588, 0.07820166, 0.12711222, 0.10471312, -0.00354038, 0.12488747, 0.05378586, 0.09097373, -0.021725, -0.0568461, -0.05202819, 0.00600058, 0.05929746, -0.2325409, 0.03848852, -0.08778458, -0.00512372, 0.01519693, 0.19929484, -0.19502695, -0.08044372, 0.01470502, 0.07108478, 0.14831452, 0.01037856, -0.19993365, -0.08808369, 0.00623923, -0.13275474, 0.14412133, -0.18954101, -0.14442307, 0.09160563, 0.02654279, 0.12437098, -0.05329191, -0.15909812, 0.1552888, -0.0090793, -0.00135415, -0.05166244, 0.07685594, -0.0438857, 0.05449715, -0.08557518, 0.06893756, -0.014471, 0.20950656, 0.2299362, 0.167024, 0.04307187, 0.14345187, -0.07237147, -0.10951395, 0.01645758, 0.02175338, -0.07203852, -0.12511875, -0.12697978, 0.10299105, 0.06535446, -0.15537006, 0.04532329, -0.17377846, -0.04091809, -0.01861942, -0.2618014, -0.0131409, 0.17111203, 0.00422839, -0.1211431, -0.02823527, 0.01898987, -0.07341271, -0.00437991, -0.05460339, 0.01380745, 0.11211807, -0.06871378, -0.12044284, -0.0719257, 0.10659634, 0.02313303, 0.04984871, -0.0449018, -0.09273878, 0.19676292, 0.0535182, 0.0268051, 0.18655668, 0.04572988] +sdiv:[-0.14640361, 0.03594426, -0.11871772, 0.1207587, -0.00492308, 0.0257461, 0.04101764, 0.10114965, 0.05824924, 0.00773021, 0.11414427, 0.04277244, -0.02879562, -0.00294027, 0.06321575, 0.03393394, 0.07978345, -0.05995471, 0.05129522, 0.17486198, 0.11528045, -0.00991462, -0.17123805, 0.03729113, -0.16213523, 0.1386366, -0.21496756, -0.04634824, -0.05163955, 0.04695604, 0.11981614, 0.0290098, 0.21515037, -0.07935817, -0.22431149, 0.0679554, 0.04909301, -0.10954382, 0.13949269, -0.01976271, 0.06294525, -0.06267948, 0.08520774, 0.1379977, -0.16616236, -0.03118994, 0.03869891, 0.09317021, 0.10379436, -0.08116202, 0.11185204, 0.13807496, 0.07227706, -0.20430326, -0.05133551, -0.01401461, 0.12452266, 0.20650034, -0.05748481, 0.18480408, 0.19627932, 0.10426082, -0.10561744, -0.02326898, 0.00974419, 0.06621911, -0.04919014, 0.1458757, -0.01960167, -0.07581795, 0.07577725, -0.12213571, 0.11574555, -0.00194779, -0.15311767, 0.04082781, -0.02348973, 0.04346616, 0.0327233, -0.16983587, 0.14158212, -0.03497766, -0.00323147, -0.04017096, -0.0844894, 0.23589054, -0.21733433, 0.0339077, -0.16785175, 0.07271111, -0.04286964, 0.02100052, 0.13932268, 0.08716384, -0.13864404, -0.12866236, -0.08407569, -0.11739346, 0.15697666, -0.00498388] +select:[-0.30019894, -0.06345372, 0.39231363, -0.05183335, -0.00743098, -0.03903657, -0.15403368, -0.07350855, 0.00458898, 0.01879309, 0.06260896, -0.1471575, 0.02696818, -0.01247122, 0.17698276, -0.05385592, 0.11112963, -0.02029849, 0.0565478, 0.08772548, 0.04949599, 0.06590793, 0.14982806, 0.04274646, -0.12376257, 0.02209394, -0.08727376, -0.06625335, -0.06047289, -0.0297906, -0.064386, 0.01676842, 0.04775412, 0.18102263, -0.24076386, -0.03607293, -0.06167434, -0.10181054, 0.139195, -0.2043733, -0.21515769, -0.06751331, 0.17340522, -0.10531486, -0.01696111, 0.11157431, -0.01084755, 0.13399664, -0.03010262, -0.26935032, 0.0928533, 0.19658607, -0.05965767, -0.10256395, -0.08961109, -0.03044873, 0.01562081, -0.00617256, 0.12809044, 0.11721548, 0.2178992, 0.1260408, -0.11285896, -0.04895652, 0.0060084, -0.10289667, -0.09267526, -0.12829262, 0.02473315, 0.05421846, -0.09601616, -0.06665837, -0.01837349, -0.00247511, 0.11297762, -0.10710774, 0.09915671, 0.19563441, 0.01214715, -0.159104, 0.05208159, -0.09560495, -0.0379245, -0.24410763, 0.0776592, 0.08614016, 0.11311051, -0.08067861, -0.13390338, -0.02365062, 0.11526995, 0.09538268, -0.17068505, 0.01390728, 0.08421307, 0.05124578, 0.16008997, -0.05514458, -0.03678321, 0.00442074] +sext:[-0.15857407, 0.00639652, 0.09153447, 0.11547587, -0.00611136, 0.11172437, -0.12920007, -0.07547607, -0.0670849, 0.00335223, 0.03126541, 0.15033981, 0.01932842, 0.08198097, 0.09380423, -0.11521458, 0.09637098, 0.03690718, 0.00741578, 0.26490915, 0.10256526, 0.06170769, -0.1760956, 0.03977927, -0.11508903, 0.02445932, -0.22118603, -0.02936863, -0.14523952, -0.04854831, 0.0897247, -0.24253157, -0.02715267, -0.08455518, -0.19457954, -0.17022069, -0.05800355, -0.10665256, 0.13523224, -0.1489678, 0.09078384, -0.02096144, -0.11476118, 0.00145202, -0.10967284, -0.03044779, 0.06198592, 0.12342383, -0.04789732, 0.02851099, 0.08863565, 0.12457395, -0.05501002, 0.13567734, -0.06975926, -0.00637585, -0.04702265, 0.03188536, 0.08266331, 0.04819411, 0.1935861, -0.02342299, -0.12984297, -0.03344819, -0.1325782, -0.08940519, 0.10906062, -0.09048521, 0.12123378, -0.08745729, 0.11998069, -0.04412608, -0.03247809, 0.01373177, 0.08291081, 0.1283761, 0.19323497, 0.19444989, 0.02199274, 0.05254773, 0.01989405, 0.08775058, -0.08266959, 0.03616131, 0.14351024, 0.14739552, -0.13745318, -0.13687243, -0.11560141, 0.1968449, -0.10289999, 0.17367579, 0.04666338, -0.1499157, -0.01277916, -0.13031586, 0.14336088, -0.05401715, 0.03137936, 0.04113427] +shl:[-0.16084848, 0.0523024, 0.09880876, 0.12032676, -0.06253252, 0.00641269, -0.1392388, -0.23197106, -0.02442086, 0.04721368, 0.03413253, 0.16732292, 0.03291196, -0.02235834, 0.13816066, -0.04197374, 0.10365378, -0.03158516, 0.05696104, 0.12549447, 0.0209555, 0.03171479, 0.1435196, 0.04034314, -0.10620729, 0.02104425, -0.22271429, 0.22949064, -0.06053802, -0.13234524, 0.0961842, 0.15741119, -0.03816645, -0.13853045, -0.11384084, -0.01374867, 0.02137251, -0.07791792, 0.10500184, -0.14379498, 0.15656407, 0.20320818, -0.12211584, 0.13678189, -0.1125805, 0.15003163, 0.00524663, 0.07563028, -0.02257847, -0.05306304, 0.07964048, 0.04829647, -0.07039995, 0.09879392, 0.11297577, -0.01372084, 0.14206009, 0.13659982, -0.14562868, 0.08971994, 0.16432516, 0.08798117, -0.12034827, -0.04296172, -0.11501157, -0.2461467, -0.04921009, -0.13117959, -0.14148161, -0.12335749, 0.008327, -0.00772201, 0.08702697, -0.02736445, 0.11048606, -0.11419152, 0.10798361, 0.02015896, 0.01854897, -0.1325733, -0.02432579, -0.15176179, 0.11047906, -0.02911108, -0.09651333, 0.21408929, 0.12479179, 0.17642266, 0.00163232, 0.05218966, -0.0558472, 0.1363031, 0.12258992, 0.06160068, -0.14950565, 0.170983, -0.01154251, 0.03320679, -0.11858592, 0.1193882] +shufflevector:[-0.16424449, 0.03753768, 0.21697162, 0.1418303, 0.07466765, 0.00120991, -0.06665894, -0.10389221, -0.05559856, 0.02182056, 0.01164802, 0.14740188, -0.0633403, -0.01053101, 0.16824721, -0.05118701, 0.1103372, -0.00172754, 0.05675363, 0.0322297, 0.03934862, 0.0677636, -0.04925682, 0.0411427, -0.18506975, 0.01857767, -0.23779862, 0.1716728, 0.08367673, 0.11057015, -0.11083832, -0.10997155, 0.1227897, -0.12480889, 0.00923082, -0.15885156, -0.02171421, -0.12957172, 0.11442749, -0.26125646, -0.02940042, 0.03296229, -0.08534453, 0.11438466, -0.12823269, 0.16761382, -0.00404003, -0.06328245, -0.01849457, -0.14828663, 0.08791085, 0.0953344, -0.03187123, -0.22152169, -0.00148264, 0.03451024, 0.04815899, -0.01620838, -0.10122207, -0.09818091, 0.20847157, -0.04678555, -0.12303443, -0.04414993, 0.07062237, 0.3026395, -0.11941798, 0.18959235, 0.20250039, -0.08545937, -0.078564, 0.16600186, -0.0362457, -0.07950808, -0.08404335, -0.23733354, -0.11903052, 0.10512573, -0.02532957, 0.15443715, -0.01149611, -0.07782774, -0.04754388, 0.10198209, -0.12357815, 0.24478513, 0.03737778, 0.04214462, 0.10026403, -0.08462055, -0.0039614, -0.08147328, 0.05919729, -0.16055961, 0.12155547, -0.07152006, 0.08000958, -0.14551759, 0.07794316, 0.02889257] +sitofp:[-0.0809712, -0.02110765, -0.06877948, 0.11354858, -0.00284663, -0.0537386, -0.12336037, 0.16979192, 0.02886233, 0.01061734, 0.02722204, -0.01076865, -0.00732182, -0.04009876, 0.15761802, -0.0492265, 0.08143418, 0.0017896, 0.05374901, -0.14792155, 0.10019098, 0.06057302, 0.19018444, 0.04070193, -0.24906686, 0.1217223, -0.22310756, 0.04770202, -0.15755968, 0.09774734, -0.00982724, -0.0956369, 0.15124366, 0.11415935, -0.18440893, -0.0565104, -0.15275374, -0.14224781, 0.13607106, -0.17342083, 0.17322685, 0.11406931, 0.08252628, 0.08555902, -0.12595874, 0.08208872, -0.13021141, 0.15210806, 0.02495711, -0.21295673, 0.09116891, 0.1432785, 0.11057005, 0.04446272, 0.07226824, 0.07662265, 0.1116879, 0.19774859, 0.07834398, 0.04975252, 0.06371645, 0.05955734, -0.09384163, -0.02059335, -0.01497728, 0.0741776, -0.17417172, 0.04187232, -0.14288023, 0.14226632, -0.00680635, -0.02627914, 0.07423603, -0.06058587, 0.10358642, -0.10563308, -0.05644285, -0.00606829, 0.01394663, 0.11189348, -0.13132551, -0.10931329, 0.09421417, -0.09978851, -0.15420742, 0.09659787, -0.0102334, 0.15428337, -0.02307143, -0.08555632, 0.01580549, -0.13491017, 0.03159506, -0.2480082, -0.00261832, -0.11467888, 0.17174858, 0.05875605, -0.0415584, 0.0132444] +srem:[-0.25358877, 0.03396596, 0.0542911, 0.1007071, 0.00846381, -0.096896, -0.04708197, 0.0521309, 0.09646299, 0.00307931, 0.03355018, -0.08071391, 0.02581872, -0.09325691, 0.03655343, 0.01930567, 0.10172131, -0.047978, 0.007517, -0.09715768, -0.00315477, -0.15242465, 0.16094787, 0.04018172, -0.01996703, -0.15751214, -0.21688582, 0.13483524, -0.12612686, -0.15254925, 0.02705964, 0.05147993, 0.17869203, 0.04719898, -0.14763267, -0.03758875, -0.07773658, -0.05204603, 0.1815783, -0.11967561, -0.03366322, 0.07986178, 0.08499246, 0.08991365, 0.25427955, 0.15901493, 0.06118333, 0.09491808, 0.05146434, 0.09207334, 0.08517045, 0.2323131, -0.07686792, 0.04006682, 0.12658077, 0.1617294, 0.10476515, 0.12323891, -0.05513564, -0.16369624, 0.11288075, 0.0158513, -0.11822689, -0.04011108, -0.1636498, -0.00795277, 0.16599183, 0.09457435, -0.06801423, -0.0351746, -0.0255776, -0.03409976, 0.10209166, 0.03428994, -0.10648743, -0.01236537, 0.08919555, 0.18718424, -0.01681734, 0.09254622, -0.01041513, -0.07334001, 0.07568216, 0.11307669, 0.21643423, 0.19405265, -0.12751262, 0.03383876, -0.13468972, -0.02726384, 0.08830889, 0.00644553, 0.06553319, 0.08104989, -0.06140735, 0.04545744, -0.04438983, 0.0204452, 0.10097943, 0.07647967] +store:[-0.1513739, -0.03411437, -0.04221611, 0.11314746, 0.0539379, -0.07645471, -0.05710909, 0.07511799, 0.02227693, 0.00454, 0.04932322, -0.1086095, 0.08864652, 0.05752159, 0.13018864, 0.04040261, 0.09975644, 0.12527634, 0.08908319, 0.12497717, 0.01992927, 0.06558619, -0.04125933, 0.04321392, 0.21779422, 0.02497384, -0.23701607, 0.08024618, 0.09269362, -0.05833395, -0.04178035, 0.07139061, 0.18466873, -0.00091263, -0.12645134, -0.06963113, -0.04743443, -0.09959917, 0.12512806, -0.15869646, -0.00669489, 0.19664952, -0.06180905, -0.01315776, -0.05813926, -0.06428437, 0.00170569, 0.12216861, -0.02802008, -0.05912458, 0.04431707, 0.13821328, 0.07133047, -0.3131874, -0.06621557, -0.01480495, -0.13953122, -0.00623562, 0.1266902, 0.03531896, 0.20192753, -0.04539055, -0.13498637, -0.15387447, -0.14699432, -0.06905171, -0.12526222, -0.25651568, -0.18522118, 0.16247404, 0.10036363, 0.03321344, 0.04025769, -0.05911388, 0.02687797, -0.04345729, -0.12630278, 0.20169689, -0.01111298, -0.1414546, 0.01770676, -0.24161541, -0.24563445, -0.21066038, -0.06986216, 0.05572482, -0.10242593, 0.05527595, -0.13199322, -0.04049235, 0.00474068, -0.16717711, -0.01300248, -0.09961539, -0.09635116, 0.25347742, 0.1148325, 0.12625973, 0.13929151, 0.03075134] +structTy:[-0.07569204, 0.02979807, -0.0795519, -0.20883563, 0.10592582, -0.12944545, 0.10642622, -0.06277933, -0.13690653, 0.01986542, -0.21376158, -0.07183478, -0.07395968, -0.17480351, 0.08968866, 0.05460893, -0.01872623, -0.04625754, -0.00525486, 0.02282558, -0.1294769, 0.1510143, -0.00427809, -0.23893811, 0.07616802, 0.1008932, 0.08886838, -0.0209262, 0.05581728, 0.01615302, 0.11378831, -0.04499672, 0.10524759, 0.09079441, 0.1618549, 0.15541363, 0.06159128, 0.16630872, -0.13214865, 0.07787295, -0.10860079, -0.03929839, 0.00871284, -0.14112864, 0.05185802, -0.05439852, -0.02897127, -0.06272991, 0.23005402, 0.02337408, -0.24813905, -0.04108126, -0.13878183, 0.04106055, -0.0459783, -0.18329766, -0.08000961, -0.1843809, 0.08795668, -0.02163626, -0.0280508, -0.16267522, 0.15620138, 0.09683127, -0.06375787, 0.04673496, 0.03956957, -0.04034472, -0.07945094, 0.15625644, -0.01116537, -0.20258403, -0.00071034, -0.16852707, -0.05971182, 0.03139012, -0.05274789, 0.03374419, 0.15713364, -0.01097132, 0.1025648, 0.00692456, -0.07935031, 0.08263553, 0.14368878, -0.1456855, 0.01724151, -0.16405544, 0.07007183, -0.07197673, -0.07864536, 0.09541366, 0.01430748, -0.04572582, 0.1263201, -0.01037158, -0.11553384, -0.00611723, 0.00668625, -0.17430364] +sub:[0.04870123, 0.05268868, 0.07746713, 0.12756419, 0.16944364, -0.13937698, 0.00534803, -0.11942159, -0.01338287, 0.03110681, 0.0286443, 0.0471615, 0.02352983, 0.00488988, 0.17517847, 0.0970678, 0.02838556, 0.11389863, 0.02439518, -0.07225507, 0.09995158, 0.06649969, -0.1715678, 0.04233553, -0.21239276, 0.00046799, -0.23186174, -0.0181255, -0.16841525, -0.14580159, 0.00690835, -0.04956625, 0.12421669, -0.11981262, -0.2290966, 0.06973072, -0.0179082, -0.14481163, 0.13906708, -0.06695569, -0.11337472, 0.08645074, -0.06852237, 0.05859858, 0.08820502, 0.20034267, 0.05067904, 0.02862588, 0.06953797, -0.1816561, 0.06851165, 0.13275535, -0.01146202, -0.22065464, -0.06568263, -0.01352185, -0.14932227, 0.1402073, -0.05708802, 0.05839678, 0.14319243, 0.11151125, -0.1340035, -0.0344869, 0.09548687, -0.10859335, 0.00595296, -0.07286656, -0.07367783, -0.03857144, -0.00927014, -0.14279598, -0.03065003, -0.06211001, -0.00077368, -0.14187375, -0.19714525, 0.21115917, -0.02686803, -0.13956499, 0.10077147, 0.07830063, -0.02422481, 0.14846203, -0.21925296, 0.1439332, -0.02997122, 0.05894428, -0.11179224, -0.00599753, 0.16290602, 0.08878819, 0.21563321, 0.15363094, 0.09553571, -0.14864793, 0.14928983, 0.05325302, 0.23518406, 0.06393687] +switch:[-0.01517062, 0.13535675, -0.08227356, 0.17593779, 0.03295058, -0.19658165, 0.3112473, 0.06754208, 0.09902342, 0.03295884, 0.16821569, 0.05591224, -0.04884087, 0.07699301, 0.1829141, 0.12812865, -0.24216212, -0.22906189, 0.21436837, -0.05277411, -0.02544154, 0.10431772, 0.22893277, 0.06604229, -0.26735497, 0.0392186, -0.3525496, 0.13303137, -0.01314763, -0.1449077, -0.06926397, -0.1162813, -0.09792543, 0.3025163, -0.34040242, 0.08336772, -0.06788926, -0.00145648, 0.19305481, -0.32913116, 0.05414177, -0.25857136, -0.04652941, 0.36165914, 0.277708, 0.12909088, 0.25916055, 0.03257256, -0.2020245, 0.09254065, 0.05636275, -0.02935963, 0.05655142, -0.15695634, 0.14588358, -0.01223984, 0.28986073, 0.19052398, 0.31097883, 0.49507174, 0.3133989, 0.00116844, -0.16080664, 0.046168, -0.12570074, 0.09001488, 0.1309759, 0.13030834, 0.10913511, 0.07378734, -0.04432861, 0.3112979, 0.05136794, -0.1851347, -0.03464446, 0.028486, 0.02093221, 0.08976642, -0.00739191, -0.050195, 0.20895551, -0.12630212, 0.06006237, 0.06157216, 0.05679007, 0.3335693, 0.0303828, -0.084782, -0.17022559, 0.05020723, 0.02497619, -0.00416343, 0.07966596, -0.16817005, 0.19010647, 0.07925315, 0.0460439, 0.56490177, -0.1178045, 0.01503985] +trunc:[-0.04723784, 0.07278649, 0.1830347, 0.02062254, -0.00314473, -0.12401776, -0.12570134, -0.07096503, 0.0095339, 0.04504297, 0.0233443, -0.02818805, -0.05699656, -0.02445763, 0.16097301, -0.04462784, 0.09699886, 0.08769091, 0.178411, 0.13938053, 0.08892754, -0.08873171, -0.04877134, 0.0433765, 0.23197773, 0.02259189, -0.24063796, -0.04459681, 0.1185195, 0.03483788, -0.033832, 0.10514826, 0.21178135, 0.08567072, -0.01269503, 0.07342143, -0.08501486, -0.10971398, 0.15124322, -0.21017075, 0.03939914, 0.11938066, -0.08800077, 0.1426844, 0.05195248, -0.01316022, 0.1066073, 0.12975797, -0.01364625, -0.16330665, 0.13885003, 0.02496509, -0.00259969, -0.14213988, 0.1329797, -0.01748641, 0.08953062, 0.26154205, 0.1619489, -0.07225803, 0.19850774, 0.13331607, 0.11186302, -0.03922547, 0.0120511, 0.16733874, 0.13052472, -0.0738312, -0.09531736, -0.21118313, -0.02509071, -0.03643897, -0.11625463, -0.02947635, -0.080329, 0.02350708, 0.2140443, -0.01634733, 0.02225931, 0.04948311, 0.04252015, 0.15847108, 0.02538355, -0.10251164, -0.0560933, 0.193257, 0.12976141, -0.21153851, -0.13497981, -0.07302561, 0.16934244, 0.00166508, 0.22446595, -0.17486985, -0.06165289, -0.13159639, 0.13545915, -0.04524289, 0.04734994, 0.04519483] +udiv:[-0.10951097, 0.01793622, 0.08754197, 0.13841455, 0.00038722, -0.19723558, -0.13260378, 0.05044271, 0.05951147, 0.03609601, 0.04347027, -0.1639593, -0.03731877, -0.0409637, 0.09820364, -0.07106811, -0.1270289, -0.18625136, -0.0510377, 0.00852508, -0.03731837, -0.10213851, 0.02970228, 0.04073162, 0.04416345, -0.00912907, -0.22333531, 0.1832368, -0.0987431, -0.03088599, 0.10529865, -0.18565832, 0.17681685, -0.09691712, -0.19819658, 0.09368737, -0.04852004, -0.06179892, -0.07577308, -0.14835112, -0.16031586, 0.10234158, -0.10457242, 0.11293654, -0.10003018, -0.05240411, -0.03530927, 0.12328544, -0.01285207, 0.03552159, -0.00346752, 0.11852404, -0.17676403, 0.02624089, -0.07069028, -0.01463479, 0.07617065, 0.10920486, -0.03268587, 0.1372663, 0.09092282, 0.11622884, -0.122812, -0.03862695, -0.00128782, -0.08866831, -0.04521555, -0.09436645, -0.02395228, 0.04012311, 0.09004094, -0.08848885, -0.02479295, -0.02712057, 0.0371279, 0.09887113, 0.24036267, 0.1389869, 0.01188614, -0.10133406, 0.05291012, 0.07696685, -0.03586022, -0.13635798, -0.1638121, 0.18582675, 0.1496543, 0.10178558, -0.12832011, -0.05171176, 0.13464339, 0.1083202, -0.0225869, -0.03919902, -0.13228796, 0.16248658, 0.07130803, 0.05553339, 0.0869536, 0.22934258] +uitofp:[0.17190161, -0.06186248, -0.12170164, 0.12836993, 0.16625308, 0.10610706, -0.16901778, 0.09932443, -0.0582529, 0.0447861, 0.02961094, -0.00129378, 0.07736564, -0.00792858, 0.16685268, 0.0083901, 0.10620253, 0.07324923, 0.01792235, -0.17130312, 0.16329643, 0.06332626, -0.0403664, 0.04041061, 0.0403927, 0.09864312, -0.23029412, -0.03034875, -0.16921379, 0.00237892, 0.09139999, 0.0308297, 0.10111356, 0.06743596, -0.23104858, -0.0646947, -0.04100725, -0.13548222, -0.14552127, -0.08014939, -0.02546035, 0.17969914, 0.02170645, 0.1363015, 0.06442364, 0.19093008, 0.07069132, 0.01674888, -0.0700455, -0.23115751, 0.13057117, 0.04320587, 0.04698109, 0.08344752, 0.05714111, -0.02196013, 0.18204658, 0.07298362, -0.04758853, 0.06590058, 0.1962238, -0.12328723, -0.01190656, -0.04218699, -0.03274233, 0.08401989, -0.01479369, -0.1673892, 0.03337803, -0.0847507, -0.06175967, 0.04670477, -0.03417562, -0.13639408, 0.12185762, -0.05553337, -0.13562706, 0.08661027, 0.03357485, 0.0123413, 0.01044126, -0.06906457, 0.10532431, 0.10178072, -0.04855254, 0.03549963, 0.04728824, 0.07788724, -0.12159744, -0.04966265, 0.11189395, -0.14025964, 0.18029556, -0.18091217, 0.26037917, 0.10407306, 0.23650824, -0.04274616, -0.23003645, 0.0242066] +unknownTy:[0.05542029, -0.06137297, -0.0855851, -0.20516655, -0.19431326, -0.08039322, 0.1354949, 0.00832647, -0.15071963, 0.08708925, -0.16530256, -0.05581666, -0.02963833, -0.08911653, -0.06563613, 0.02376611, -0.05057439, 0.12401586, -0.03787434, -0.03484692, -0.14855346, -0.1609254, -0.01485106, -0.14127119, -0.0121025, -0.00050218, 0.12582548, -0.02486694, 0.13026683, 0.01530879, -0.10952013, -0.01023607, -0.06439397, 0.04378748, 0.1990433, 0.17033508, -0.09172554, 0.1760203, 0.12927303, -0.12073509, 0.16510333, 0.09216274, -0.06790034, -0.06561371, 0.13330768, -0.01810686, 0.07019023, -0.00760924, -0.19169039, 0.09379394, -0.08143256, -0.17965685, 0.07220351, -0.05697388, -0.05369994, -0.20204379, -0.04737787, -0.09450065, -0.09684051, 0.08393968, -0.12058483, -0.16106296, 0.04552931, -0.06837823, 0.0157794, 0.08065069, -0.04368813, 0.10087565, 0.09575012, 0.14693771, 0.01320089, -0.15000853, -0.06216915, -0.19792816, 0.10153081, 0.05830313, 0.00303167, 0.08701605, -0.01637092, -0.0880251, -0.19598663, 0.03215129, 0.07983918, 0.0800072, -0.07359867, -0.12679087, -0.08990119, 0.20457108, 0.1976121, -0.13424946, -0.15788025, 0.00739519, 0.07206982, 0.11520236, -0.0773247, 0.10077844, -0.18065463, -0.07715163, -0.02976064, -0.09735743] +unreachable:[-0.02491008, 0.15177278, -0.19571576, 0.1359618, 0.01766698, 0.09799501, -0.06164625, -0.11558889, 0.04807346, -0.02996714, -0.13001586, 0.06315261, 0.10109328, 0.00512027, 0.00288659, -0.14905585, 0.078291, 0.10724218, 0.21612847, -0.12749732, -0.13289724, 0.06541033, 0.33640462, 0.04277571, -0.11059677, -0.01235427, -0.23500754, -0.05655389, -0.2014924, -0.1012006, 0.0640263, 0.0673289, 0.12274523, 0.0427134, 0.02390354, 0.07369693, -0.03792601, -0.15017213, 0.15382396, 0.10631318, 0.15774283, 0.05729683, -0.04044527, 0.18020377, -0.00524537, 0.07565805, 0.16059929, -0.07267069, 0.05584571, -0.08350338, 0.06142159, 0.08670827, -0.08652508, -0.1337222, 0.07751117, -0.02395448, 0.18282789, -0.00929386, 0.08059463, 0.02758358, 0.1776161, -0.0376745, -0.1053041, 0.03767196, 0.12300913, 0.088722, -0.20245883, -0.12597877, -0.01812202, 0.0725904, 0.04992103, 0.02807481, -0.13755596, 0.07620003, 0.09240456, -0.15685982, 0.05914682, -0.04569355, 0.02201944, 0.09464836, 0.11280952, -0.14726985, -0.14278765, 0.06349035, -0.03633626, -0.07169987, -0.14659126, -0.12237187, -0.13706835, 0.21853286, 0.13262442, -0.04325536, 0.08418597, -0.2576209, -0.01504518, 0.1355824, 0.06600002, 0.20105281, -0.06153724, 0.18159075] +urem:[6.14301004e-02, 2.99396664e-02, 1.06230542e-01, 1.64038792e-01, -2.54911333e-01, 1.32908523e-01, -1.38921261e-01, -5.53734228e-02, -9.11255032e-02, 4.38471474e-02, 1.97217148e-02, 1.50561690e-01, 2.45045349e-02, -5.22950329e-02, 1.39045358e-01, -4.79725860e-02, -1.45741981e-02, -1.29727826e-01, 2.36055747e-01, 1.24045990e-01, 1.17143854e-01, 1.44393323e-02, -1.22443609e-01, 4.46640626e-02, 1.90798953e-01, 2.42715813e-02, -2.47103497e-01, 9.47387367e-02, -1.26638830e-01, -1.71572283e-01, -9.91839096e-02, 2.51455698e-03, 1.21683225e-01, -7.11132959e-02, -2.15645626e-01, -6.93572685e-02, -7.07403347e-02, -6.34667948e-02, 1.50261015e-01, -1.67489797e-01, -4.37516496e-02, -1.73906684e-01, -8.36800933e-02, 1.73694715e-01, 1.11150816e-01, 5.14493771e-02, -1.26929909e-01, 8.19018669e-03, 3.63152435e-06, -1.66108832e-01, 1.83556706e-01, 1.35783032e-01, -1.81533560e-01, 4.62715402e-02, 1.78551182e-01, -2.06042212e-02, 4.17102054e-02, -6.36848446e-04, 1.80120558e-01, 1.15662009e-01, 3.79163623e-02, 1.85562208e-01, -1.46361366e-01, -4.07845564e-02, 1.53732132e-02, -7.75291994e-02, -2.19995040e-03, -1.02192774e-01, -1.16462596e-01, -7.71865472e-02, -1.63980220e-02, -9.92806405e-02, 9.47598442e-02, 6.14377186e-02, -1.77796140e-01, 7.35281110e-02, -1.05865702e-01, -2.83627002e-03, 5.08462153e-02, -2.30077967e-01, 9.36033502e-02, -2.93515678e-02, 1.38058171e-01, 7.42286965e-02, -1.92419216e-01, -1.29612908e-01, -1.18200146e-01, 3.95586938e-02, -1.36150286e-01, 7.82653168e-02, 2.16922686e-01, -1.07713275e-01, -4.31651883e-02, -1.64997488e-01, -1.30131558e-01, 1.03097029e-01, 1.93905026e-01, 8.72038230e-02, 3.02970335e-02, -1.85446575e-01] +variable:[3.12375128e-02, 1.30539209e-01, 1.61723588e-02, -6.49467111e-02, -1.95820883e-01, -8.34326893e-02, 6.45941794e-02, 5.48931174e-02, 8.16765130e-02, 2.35586002e-01, 9.70195830e-02, 3.95493396e-02, -4.15252112e-02, 1.49951652e-01, -3.59287560e-02, 8.18012729e-02, 1.94859028e-01, -4.02837880e-02, 1.51945248e-01, -3.90935875e-02, 1.85830683e-01, 1.68831661e-01, 9.44793820e-02, -1.34319723e-01, -1.94362253e-01, -4.06404734e-01, -6.14529811e-02, 9.39326435e-02, 5.20268735e-03, 1.17136873e-01, -2.32035071e-01, -1.18507229e-01, 9.42832455e-02, 2.06351563e-01, -2.23383561e-01, -1.84539612e-02, 7.65445232e-02, 1.42013192e-01, -6.43478343e-05, 4.21267040e-02, 7.58328810e-02, 1.16248932e-02, -5.41902483e-02, 2.88447380e-01, 1.64454803e-02, 1.00845747e-01, -8.92258361e-02, -1.73985049e-01, -1.95356682e-01, 8.60615969e-02, -8.22245702e-02, 6.89222738e-02, 6.23262152e-02, -5.99098131e-02, -7.95690045e-02, 2.26765409e-01, 2.29794085e-01, 1.69687361e-01, 1.96648747e-01, 5.15611668e-04, 2.94503331e-01, -6.13358803e-03, 2.71108486e-02, 5.12635857e-02, 1.19024150e-01, 4.80372757e-02, 1.02848507e-01, 1.09404676e-01, 1.44144505e-01, 4.50166240e-02, -4.72446084e-02, -7.59602934e-02, 9.24598798e-02, 1.46111995e-01, -7.50637800e-02, 9.06737521e-03, 1.80619229e-02, 9.39713120e-02, 2.23253369e-01, -9.87275764e-02, -1.17492966e-01, -1.23406254e-01, 5.71208671e-02, 7.31894150e-02, -6.83309650e-03, -1.05579317e-01, 2.11766344e-02, -5.65559529e-02, 1.19185839e-02, -1.95536781e-02, -4.10325006e-02, -8.38082135e-02, 6.07921742e-02, 5.16971909e-02, -4.25271876e-02, 9.91678908e-02, 1.07346803e-01, 5.74987680e-02, -1.11727588e-01, 1.91797078e-01] +vectorTy:[0.00614031, 0.09907117, -0.0414057, -0.10939466, -0.11920051, 0.01146506, 0.04077564, 0.13891624, -0.20420505, 0.12939502, -0.1009404, -0.0222585, -0.12395614, -0.12427059, -0.03760861, -0.20657997, -0.169934, 0.12750679, -0.07468151, -0.06033178, 0.01375014, -0.18789075, 0.00299274, -0.18556875, 0.00467018, 0.1437214, 0.01256599, -0.0175404, -0.21589653, 0.09700344, -0.1231083, 0.04066857, -0.03626051, 0.01938053, 0.00218011, 0.07265908, -0.05358825, 0.09936166, -0.12938951, 0.07689919, 0.11531569, -0.11654866, 0.07266484, -0.11887363, -0.04571981, -0.04815354, -0.00413034, 0.02322594, 0.18259148, -0.04733286, -0.12163141, -0.09418673, 0.06626461, 0.1009896, 0.22476521, 0.05066481, -0.08478651, -0.03744179, -0.16673774, -0.24311247, 0.03751571, -0.14411871, 0.10384535, 0.10013557, -0.09202613, -0.02355278, -0.08586396, -0.12270134, 0.03617898, 0.14075568, -0.00675538, -0.15505026, 0.14897585, -0.06937972, -0.01651718, 0.16235755, -0.03182485, -0.07366523, -0.19203182, -0.08594368, -0.10911306, 0.02290769, 0.04204687, 0.0020555, -0.01825168, 0.09733547, -0.12195294, -0.0061005, 0.1133976, -0.15671504, 0.11427031, 0.17694286, 0.04769726, 0.12199783, 0.07246605, -0.0687287, 0.10021547, -0.04218293, -0.01808224, -0.15808946] +voidTy:[-1.31454999e-02, -1.55033112e-01, -8.21222141e-02, -1.44160434e-03, 1.52217194e-01, -7.46934041e-02, 8.06317851e-02, 1.71387345e-01, 1.65648490e-01, -5.83195081e-03, -1.18014112e-01, 4.26951796e-02, -1.46619615e-03, 2.06327304e-01, -1.04272991e-01, -1.25803515e-01, -1.36984318e-01, -8.03959444e-02, -1.50751173e-01, -4.16148081e-02, -1.16978168e-01, -1.44305110e-01, 7.98624307e-02, -1.42257750e-01, -6.15743361e-02, -3.15034650e-02, 1.40135676e-01, -1.19731687e-02, 1.85350198e-02, -1.16543829e-01, -1.33267075e-01, -4.73312102e-02, -1.88883841e-01, -1.05455235e-01, 1.79171771e-01, -5.77818416e-02, -9.38186124e-02, 4.20276448e-02, -1.02798328e-01, 2.17100635e-01, -7.46888444e-02, -1.73076257e-01, -1.11067481e-01, -1.10583426e-02, 1.48684103e-02, -4.79153022e-02, 6.10323101e-02, 5.79626262e-02, 1.77542493e-01, -3.47119593e-03, -1.29478574e-01, 4.96839248e-02, 1.17401265e-01, -1.42710330e-02, 1.74067572e-01, 8.42365157e-03, -1.50812671e-01, 1.46133183e-02, 8.24004337e-02, -6.15238175e-02, 3.56396064e-02, -1.69414461e-01, 7.34013766e-02, 2.49002725e-01, 9.16551128e-02, 2.88306084e-02, 6.41968846e-02, -4.25490625e-02, -3.53730321e-02, 1.73063800e-01, -4.32360172e-02, 1.62903348e-03, 3.86096127e-02, 4.57001477e-02, -8.34977999e-02, 5.81580289e-02, -8.52416903e-02, -2.52661481e-02, 7.84361809e-02, 5.01761846e-02, 1.35188088e-01, -1.93234514e-02, -1.32053152e-01, 4.92609218e-02, 1.33746356e-01, -1.75845444e-01, 9.48965773e-02, -1.98444426e-01, 1.54817805e-01, -1.12670604e-02, 1.53576940e-01, -8.95969942e-02, -8.01482871e-02, -8.92878379e-05, -5.86797260e-02, 1.52423784e-01, 1.28768593e-01, -3.94945592e-02, 9.92924720e-03, -8.63720849e-02] +xor:[-1.49981141e-01, 4.36536781e-02, -1.24550359e-02, 1.21966712e-01, 6.21201694e-02, 6.57830946e-03, -1.91215426e-01, -1.66700765e-01, -6.11803308e-02, -7.90970027e-02, 3.26337218e-02, 1.01216786e-01, 1.92841829e-03, 7.38810226e-02, 1.03037655e-01, -2.35263202e-02, -1.66519471e-02, -6.90748962e-03, 5.65598607e-02, -2.46901605e-02, 1.25142276e-01, -4.43252288e-02, -3.59442569e-02, 3.08438987e-02, 2.68215612e-02, 1.82665903e-02, 7.73535483e-03, 1.48416251e-01, -8.32298398e-02, -1.27774579e-02, 1.57624856e-01, -1.01150371e-01, 2.15986192e-01, 1.38752103e-01, -2.39511162e-01, 1.15360692e-01, 9.19752009e-03, -4.53606024e-02, 1.39778838e-01, -1.17796458e-01, -3.65246348e-02, 5.63262515e-02, 4.62576002e-02, 1.29949778e-01, 1.58541426e-01, -1.48554623e-01, 1.49648502e-01, 1.18453257e-01, -5.54336458e-02, -1.54992327e-01, 1.21360473e-01, 2.23420709e-01, -1.25548735e-01, -2.29217857e-02, 1.18427962e-01, 6.53396267e-03, 4.85412218e-02, 1.54797554e-01, -3.15481477e-04, 8.99947286e-02, 5.38614765e-03, 6.14333972e-02, -3.79124917e-02, -4.19981033e-02, 1.40221352e-02, 2.28800386e-01, -7.07628056e-02, -1.85554147e-01, -1.74320992e-02, -1.49412945e-01, -1.90162316e-01, -7.42519572e-02, 9.76577550e-02, -1.12146333e-01, -1.56878471e-01, -3.29879314e-01, -1.15046673e-01, 3.92702259e-02, 8.31557512e-02, -1.33685963e-02, -4.02512923e-02, -6.21833093e-02, -1.69922322e-01, -4.68634591e-02, 1.47102894e-02, 2.11586222e-01, -6.62315497e-03, 2.73987614e-02, -1.42763287e-01, 2.47503016e-02, 2.38403380e-02, 1.67598560e-01, 1.89094707e-01, -1.77333981e-01, -1.90008543e-02, -2.39372328e-01, 1.61315650e-01, 7.32234865e-02, -1.50303682e-02, 4.54384461e-02] +zext:[-0.008744, -0.0384249, 0.08514123, 0.12929578, -0.0286111, -0.02888603, -0.17243147, 0.1920347, -0.0361572, 0.01190349, -0.00490175, 0.00542153, 0.04894925, -0.00886345, 0.06200792, -0.11479706, 0.01231216, 0.04795979, 0.03217929, -0.0994228, 0.12039724, 0.06555183, 0.15567386, 0.04233738, 0.10978765, 0.02713929, -0.23896058, -0.09041855, 0.02737135, -0.09576256, 0.04238113, -0.01313082, 0.22438407, 0.04811748, -0.24110278, -0.0234723, 0.1158933, -0.08278205, -0.02953329, -0.11423916, 0.02182137, 0.1316527, 0.01127502, 0.09107937, -0.05128013, -0.16336486, 0.12351633, 0.13031231, -0.0520529, -0.01102762, 0.04531654, 0.1607449, -0.04068224, -0.15056531, 0.09390696, -0.02652217, -0.05884719, 0.12513238, 0.01308026, -0.03914403, 0.21371806, 0.08978537, -0.12550874, -0.18773708, 0.07304002, 0.21201572, 0.08644984, -0.01204834, -0.10906386, 0.19325328, 0.10863314, 0.16710639, 0.00397359, 0.0546264, 0.09839225, -0.00801505, -0.1920622, -0.08407442, -0.02821298, 0.06373032, 0.08373458, 0.12356852, 0.1342439, -0.24494177, -0.05041875, 0.2623801, -0.0771627, -0.07665291, -0.13498843, 0.17604399, 0.13967144, 0.14620651, 0.24421115, -0.25556493, -0.22321175, 0.05123251, -0.02507322, 0.05075503, 0.12329383, 0.01088332] \ No newline at end of file diff --git a/vocabulary/seedEmbeddingVocab300D.txt b/vocabulary/seedEmbeddingVocab300D.txt old mode 100644 new mode 100755 index bfc6e535d..947d950a9 --- a/vocabulary/seedEmbeddingVocab300D.txt +++ b/vocabulary/seedEmbeddingVocab300D.txt @@ -1,63 +1,68 @@ -add:[0.11749230325222015, 0.0300205759704113, 0.013694677501916885, 0.04832835495471954, 0.021770639345049858, -0.003970275167375803, -0.0007869650726206601, 0.07521961629390717, -0.04413248226046562, -0.12594492733478546, 0.002373133087530732, -0.09104927629232407, 0.06585147231817245, 0.012301940470933914, 0.03137335181236267, 0.1241760328412056, 0.03951828554272652, 0.014776571653783321, -0.002835204591974616, 0.06729918718338013, 0.08156298846006393, -0.0013366906205192208, 0.04409302771091461, -0.0010145053965970874, -0.020468618720769882, -0.08129037916660309, 0.06353039294481277, -0.06347701698541641, 0.052752602845430374, 0.09995425492525101, -0.017669709399342537, 0.08688362687826157, 0.1107306107878685, 0.02224401757121086, 0.09685047715902328, 0.12583674490451813, 0.02067556045949459, -0.03250919654965401, -0.018650513142347336, -0.00248535955324769, 0.0902671068906784, 0.07652398943901062, 0.05983005091547966, -0.06012604758143425, -0.06264752149581909, 0.11516772210597992, 0.09369102120399475, -0.017637358978390694, -0.20887358486652374, -0.08884504437446594, -0.002245514653623104, -0.20811572670936584, -0.06564102321863174, -0.005684379488229752, -0.06724338978528976, -0.054020341485738754, -0.12253987044095993, 0.08845078945159912, -0.019986120983958244, 0.0801403596997261, -0.0828879103064537, 0.033922888338565826, 0.07170642167329788, 0.04084790498018265, 0.10720715671777725, -0.1105598732829094, 0.015334099531173706, 0.061292510479688644, 0.04206933081150055, -0.03977383300662041, 0.016566850244998932, 0.08386128395795822, -0.09004481136798859, 0.0008870689198374748, 0.04974149540066719, -0.09819941967725754, -0.015998810529708862, 0.05769187584519386, -0.02650376409292221, 0.016764800995588303, -0.011875579133629799, 0.041399210691452026, 0.22268342971801758, -0.05298083275556564, 0.0691351592540741, 0.037002623081207275, -0.05126461014151573, 0.04509174823760986, -0.02812092751264572, -0.020503820851445198, -0.08100620657205582, 0.03452900052070618, 0.02528996579349041, -0.06675590574741364, -0.0465707890689373, 0.02687857486307621, 0.023686280474066734, -0.03143654391169548, 0.020167812705039978, -0.010930470190942287, -0.00349067454226315, -0.09944862872362137, -0.034543491899967194, 0.14537222683429718, 0.1173195168375969, -0.10145056992769241, 0.028715020045638084, 0.07252784073352814, -0.02227734588086605, -0.07796324789524078, -0.145457923412323, 0.1300342082977295, -0.08697034418582916, 0.03899550437927246, 0.04171315208077431, 0.028263529762625694, 0.1970195770263672, 0.05381965637207031, 0.08571764826774597, -0.015217277221381664, 0.009563681669533253, 0.09811821579933167, 0.07353047281503677, -0.12060517817735672, 0.016056306660175323, -0.010948370210826397, 0.04964413866400719, -0.013021799735724926, 0.06085801124572754, -0.0357951819896698, -0.14753597974777222, -0.030397795140743256, 0.0842045471072197, -0.10367244482040405, 0.009853295981884003, 0.08528013527393341, 0.057772062718868256, -0.043673839420080185, -0.003223929787054658, -0.05204910784959793, 0.10992351919412613, -0.019095728173851967, -0.04841657355427742, -0.028532477095723152, -0.18249227106571198, -0.0921081081032753, 0.29742366075515747, 0.06373032927513123, 0.035233527421951294, -0.0005983832525089383, -0.0453273169696331, 0.07930388301610947, -0.03949206322431564, 0.015562267042696476, 0.0010511850705370307, -0.02922390215098858, 0.03409131243824959, 0.11480087041854858, -0.020562350749969482, 0.011559955775737762, -0.034448690712451935, 0.07742969691753387, -0.05148841440677643, -0.014563615433871746, 0.0049182879738509655, 0.041180480271577835, -0.1511366218328476, 0.08620993047952652, -0.07534673810005188, -0.04332449287176132, 0.0045070950873196125, -0.050409477204084396, 0.08609498292207718, 0.11587376147508621, -0.012441609986126423, -0.11706525832414627, -0.15041519701480865, -0.08608413487672806, 0.0957946702837944, -0.0742352157831192, -0.023605411872267723, -0.04548131301999092, -0.07083448022603989, 0.03244178369641304, -0.019106348976492882, -0.08293645083904266, 0.12845370173454285, 0.012360675260424614, 0.03572544828057289, -0.12322217226028442, 0.05364546924829483, -0.09891427308320999, 0.011990026570856571, 0.02016572840511799, 0.04380112886428833, -0.04642658680677414, 0.037627462297677994, -0.06610903143882751, -0.07147392630577087, 0.024689575657248497, -0.04707639664411545, 0.01928630657494068, -0.0060719274915754795, 0.11743844300508499, -0.036256805062294006, 0.09148045629262924, -0.05353086441755295, -0.0013117101043462753, -0.04875088110566139, -0.030005935579538345, 0.036699164658784866, 0.07331918179988861, 0.12335532903671265, 0.05452801287174225, -0.009192111901938915, 0.05080880597233772, 0.05308189243078232, -0.018874799832701683, 0.17934709787368774, -0.09328439831733704, 0.09927760064601898, 0.02739723026752472, -0.2267174869775772, -0.09018528461456299, 0.08737717568874359, -0.06641552597284317, -0.008741154335439205, 0.033089544624090195, 0.012256077490746975, 0.0441431999206543, -0.00913531519472599, 0.11067278683185577, -0.07346738874912262, 0.0724218338727951, -0.017555782571434975, -0.04207207262516022, -0.020102636888623238, -0.10153688490390778, -0.05545350909233093, -0.0390799343585968, -0.07426512241363525, -0.02957676164805889, 0.03642798960208893, 0.014339175075292587, 0.014225717633962631, -0.09768716990947723, 0.030039943754673004, -0.0247520599514246, 0.004193685948848724, 0.08415404707193375, 0.09641783684492111, 0.03353741019964218, -0.14439263939857483, -0.12867385149002075, 0.06204524263739586, 0.15358752012252808, 0.06732706725597382, -0.07658322900533676, 0.06706608086824417, 0.0056443908251821995, 0.0578906387090683, -0.12081968039274216, 0.007659082766622305, 0.1781732738018036, -0.05413655564188957, 0.0932130515575409, -0.10197333246469498, -0.13616958260536194, -0.11188450455665588, 0.06722550839185715, 0.05362563952803612, 0.03311001881957054, -0.11692371219396591, -0.06147992983460426, 0.08056080341339111, -0.022089358419179916, 0.03639214485883713, 0.03690308332443237, -0.0681799128651619, 0.08788901567459106, 0.08010413497686386, 0.15592268109321594, 0.04821786284446716, 0.015711598098278046, 0.11167937517166138, 0.017430080100893974, 0.06363038718700409, -0.05952809378504753, 0.13241460919380188, -0.020269913598895073, 0.033634696155786514, -0.1305849254131317, -0.10961457341909409, 0.04455173388123512, 0.07310380041599274, 0.0008620891021564603, 0.013242154382169247, -0.012912224046885967, -0.01742609404027462, 0.05697612091898918], -alloca:[0.0906946212053299, 0.0982593521475792, 0.01648043841123581, 0.008722305297851562, 0.08439357578754425, -0.005281055346131325, -0.017299173399806023, 0.06725242733955383, 0.05042901635169983, -0.12635521590709686, -0.03406187519431114, 0.11765912920236588, 0.0473676361143589, 0.008280248381197453, -0.00146118039265275, 0.029789645224809647, 0.06022685021162033, 0.1613990217447281, 0.04602605849504471, 0.0030533720273524523, 0.04260548949241638, 0.06856617331504822, 0.038552433252334595, -0.07368449866771698, -0.015022746287286282, 0.019654706120491028, -0.006654378492385149, -0.09988453984260559, 0.12845805287361145, 0.09944108128547668, -0.0864417552947998, -0.019072534516453743, 0.08114930242300034, 0.005096882116049528, -0.028252534568309784, 0.0641430988907814, 0.15864937007427216, -0.016932416707277298, -0.03440997749567032, -0.10763441026210785, 0.0963715985417366, 0.019945496693253517, 0.05532637611031532, 0.12716341018676758, -0.005517218261957169, 0.07459037005901337, -0.026980487629771233, 0.05578088015317917, -0.013947468250989914, -0.06706397235393524, -0.11402594298124313, -0.03329315036535263, -0.048519428819417953, -0.009688385762274265, -0.0456610731780529, 0.10816394537687302, 0.03549545258283615, 0.06923811137676239, -0.03709457442164421, 0.06826849281787872, 0.17785046994686127, 0.04291167110204697, 0.05925998091697693, -0.13388583064079285, -0.05793822556734085, 0.03879586234688759, -0.11031462252140045, 0.02735154516994953, 0.12407656013965607, -0.03849761560559273, -0.014892024919390678, -0.005252099595963955, 0.04451298713684082, 0.07299873232841492, 0.12571950256824493, -0.05227970704436302, 0.02003590203821659, 0.07928416877985, -0.07252080738544464, -0.028001660481095314, 0.09978483617305756, -0.04698151350021362, 0.2150951623916626, -0.12212077528238297, 0.13197962939739227, 0.13730107247829437, 0.02441525273025036, 0.017124803736805916, 0.04644492268562317, -0.0360180102288723, -0.04181250184774399, 0.08248373121023178, -0.044831834733486176, 0.08287247270345688, 0.03825356438755989, 0.04084986075758934, -0.09956785291433334, -0.03583601489663124, 0.02372676506638527, -0.003912108484655619, 0.0425608828663826, -0.03345240280032158, -0.03541552647948265, -0.03915474936366081, -0.0029562117997556925, -0.09659209102392197, -0.03793046995997429, 0.04235895723104477, -0.030190901830792427, -0.055809102952480316, 0.0034970100969076157, 0.17190764844417572, -0.11137929558753967, -0.03432450070977211, 0.04061534255743027, 0.004885424859821796, -0.010987834073603153, -0.03940308466553688, -0.010337542742490768, 0.01598314568400383, -0.07862896472215652, -0.05869372561573982, -0.11792699247598648, -0.09595205634832382, -0.09302124381065369, 0.09483949840068817, -0.13020585477352142, -0.07335935533046722, 0.058352865278720856, -0.06273308396339417, -0.045044951140880585, -0.03346901014447212, -0.046161286532878876, 0.024633627384901047, 0.005541193298995495, -0.02382485568523407, 0.030330248177051544, -0.13068705797195435, -0.0009984615026041865, 0.007767314091324806, -0.005988431163132191, 0.016230566427111626, -0.09881296753883362, 0.07132954895496368, -0.11006342619657516, -0.10176023095846176, 0.0894855260848999, -0.16032622754573822, 0.08619633316993713, 0.002597460988909006, -0.006687166169285774, -0.1127171590924263, -0.0027392685879021883, -0.013334481045603752, 0.13417193293571472, -0.04164960980415344, 0.0718473419547081, 0.1349244862794876, -0.03663289174437523, -0.03859064355492592, -0.036874040961265564, -0.06625370681285858, 0.00312413414940238, -0.07174412161111832, 0.028179805725812912, 0.02625671587884426, 0.18527650833129883, -0.10960269719362259, -0.017018137499690056, -0.14976170659065247, 0.0029826504178345203, 0.08043241500854492, 0.05566535145044327, -0.054023753851652145, -0.03854192793369293, 0.07519902288913727, -0.04840490221977234, -0.08057708293199539, 0.08409828692674637, -0.08547433465719223, 0.05341372638940811, 0.003043064847588539, -0.006503457203507423, 0.055344704538583755, -0.04135198891162872, -0.02574588730931282, 0.054770659655332565, 0.004303582012653351, -0.014229458756744862, -0.1284058541059494, 0.024553949013352394, -0.1001986488699913, -0.056057997047901154, 0.07563308626413345, -0.10795065015554428, 0.05200282856822014, -0.03734459728002548, -0.013110674917697906, -0.10868000984191895, -0.04664541035890579, -0.008014044724404812, -0.12852580845355988, -0.08273288607597351, -0.0029566455632448196, -0.02520282194018364, -0.02472119964659214, 0.008572466671466827, 0.0626874640583992, -0.10430493205785751, -0.047414667904376984, 0.030176900327205658, 0.04120459035038948, -0.13380315899848938, 0.04184804856777191, -0.017834758386015892, 0.10487698018550873, 0.041485559195280075, -0.02474345453083515, 0.019333429634571075, -0.1564202457666397, 0.08858905732631683, 0.037033963948488235, -0.033875707536935806, 0.04758685827255249, -0.03309899568557739, -0.049412768334150314, 0.008503885939717293, -0.008901739493012428, 0.013132576830685139, 0.04100671038031578, 0.08849218487739563, -0.0678931474685669, -0.11991715431213379, 0.13882482051849365, -0.115280382335186, -0.05907541885972023, -0.0884716659784317, -0.008509008213877678, -0.00411583948880434, 0.08988598734140396, -0.0730588361620903, -0.0064619132317602634, -0.0652102455496788, 0.08721815794706345, -0.0019238180248066783, 0.038923390209674835, 0.11124710738658905, -0.015321776270866394, 0.012899298220872879, 0.1047048568725586, 0.0998895913362503, 0.02929944358766079, -0.09355753660202026, 0.004123177379369736, 0.056810855865478516, -0.03750620037317276, 0.12091473489999771, -0.027454376220703125, -0.005877736955881119, -0.0025014220736920834, 0.10585346817970276, 0.035339854657649994, 0.0030854796059429646, -0.0420224629342556, 0.13479584455490112, 0.08365987986326218, -0.12643073499202728, -0.0984477549791336, 0.128767728805542, -0.000396992196328938, 0.1625179648399353, -0.011753637343645096, 0.01388525404036045, -0.08610942214727402, 0.002339865081012249, -0.04120159521698952, 0.03455713763833046, 0.008345447480678558, -0.04946977272629738, 0.04134350270032883, 0.06545254588127136, 0.1247870996594429, 0.0320381224155426, 0.015019766986370087, 0.11212588101625443, 0.013045981526374817, -0.08923548460006714, 0.10744535177946091, -0.07491110265254974, 0.1033230572938919, -0.10066165775060654, -0.044735826551914215, 0.02432899922132492, 0.05436985567212105, -0.003060900839045644, -0.019767073914408684, 0.1447359174489975, -0.06158764660358429, -0.07067617774009705, 0.008553629741072655], -and:[0.04364150017499924, 0.027443338185548782, 0.013515337370336056, -0.059797920286655426, 0.020524650812149048, -0.0038982343394309282, -0.014232052490115166, -0.009747902862727642, 0.10696861892938614, -0.11044986546039581, -0.0018249499844387174, 0.035457104444503784, 0.05746983736753464, -0.002210523933172226, 0.04602441191673279, 0.05438883975148201, 0.02149409055709839, 0.0005265075014904141, 0.1434965282678604, 0.012963902205228806, 0.05986545607447624, -0.020905403420329094, 0.033626146614551544, 0.058207329362630844, -0.018678750842809677, -0.07811860740184784, 0.04416561871767044, 0.02610357664525509, 0.05028059706091881, 0.09201808273792267, -0.026245951652526855, 0.07675717771053314, 0.0976497158408165, 0.023638499900698662, 0.015998413786292076, 0.09769751876592636, -0.02635321207344532, -0.02177444100379944, -0.02373514324426651, 0.0011110124178230762, 0.08383399248123169, 0.06185019388794899, 0.036217570304870605, -0.053489185869693756, -0.014241495169699192, 0.09728346019983292, 0.17959459125995636, 0.005844264756888151, 0.07339043915271759, -0.08051596581935883, -0.06765595078468323, 0.049435775727033615, -0.03733516484498978, -0.0652364045381546, -0.04183877259492874, -0.014482207596302032, -0.04569386690855026, 0.06316268444061279, -0.029964333400130272, 0.06867058575153351, 0.12776704132556915, 0.029317578300833702, 0.02388628199696541, 0.04564029350876808, 0.10361945629119873, 0.020679350942373276, -0.06213381886482239, 0.06026845797896385, 0.036132633686065674, -0.01384275034070015, 0.02171175181865692, -0.012594842351973057, -0.08600275963544846, -0.028703860938549042, 0.024620728567242622, 0.07885471731424332, 0.08232742547988892, 0.2359001189470291, 0.08688340336084366, -0.11550723016262054, -0.005893530789762735, -0.04338913783431053, 0.18144845962524414, -0.0908406674861908, 0.043430306017398834, 0.02820947952568531, 0.08856447786092758, 0.06756067276000977, -0.04058706387877464, 0.004449974279850721, -0.07651878893375397, 0.039012033492326736, 0.05784108489751816, 0.08965681493282318, -0.012676514685153961, 0.012645624577999115, 0.009414461441338062, -0.029708266258239746, 0.03330106660723686, 0.012016858905553818, 0.14607475697994232, -0.007425363641232252, -0.043100032955408096, 0.056489016860723495, 0.05491189658641815, -0.07734506577253342, 0.02451809123158455, 0.06706611812114716, 0.03792256489396095, -0.06034873053431511, 0.05308230221271515, -0.24869482219219208, -0.053979743272066116, -0.017197387292981148, 0.04856015741825104, 0.0317242406308651, -0.06656335294246674, 0.147987499833107, -0.05293232947587967, -0.03222881630063057, 0.008074582554399967, 0.03748480975627899, -0.05036287382245064, -0.004907062277197838, 0.01659522019326687, -0.015252139419317245, 0.034685418009757996, -0.010106492787599564, 0.06721226871013641, -0.046305540949106216, -0.19472970068454742, 0.03341744467616081, -0.05614500865340233, -0.08939744532108307, 0.0032505961135029793, 0.008756112307310104, 0.025156758725643158, 0.005139371380209923, -0.0021112700924277306, -0.03671582043170929, 0.0936838835477829, -0.020554348826408386, -0.024909578263759613, -0.029651595279574394, 0.18547780811786652, -0.08209485560655594, 0.157777339220047, 0.1403992772102356, 0.03330052271485329, 0.0039399066008627415, -0.06126173213124275, 0.05726206675171852, -0.10030264407396317, -0.045037586241960526, 0.038447268307209015, -0.025182191282510757, 0.0461496002972126, 0.058658208698034286, -0.07925382256507874, 0.011119263246655464, -0.036864232271909714, 0.03611698001623154, 0.02407141588628292, -0.06098909303545952, 0.0034591795410960913, 0.05525127798318863, -0.08248364925384521, 0.07614300400018692, -0.07669037580490112, -0.1414957195520401, 0.0045245615765452385, -0.017643239349126816, -0.05889734625816345, 0.04335303604602814, -0.012344326823949814, -0.06501606106758118, -0.1309792548418045, -0.09031781554222107, 0.08359609544277191, -0.06582164019346237, 0.0021969208028167486, -0.03668592497706413, -0.05233457684516907, 0.004529012367129326, -0.05536394938826561, -0.018970629200339317, -0.015108137391507626, 0.0014051528414711356, 0.0008586475742049515, -0.10802879929542542, 0.041031818836927414, -0.06792079657316208, -0.08856222778558731, 0.015024542808532715, -0.08011378347873688, -0.04125396907329559, -0.09505850076675415, 0.11991576105356216, -0.03219766914844513, -0.04859079420566559, -0.05127755552530289, 0.021190408617258072, -0.03622833639383316, 0.07523521780967712, -0.04619895666837692, 0.007316000759601593, 0.06938967108726501, 0.04473116248846054, -0.05291358381509781, -0.0209671538323164, 0.02250937558710575, -0.008514009416103363, -0.10214245319366455, 0.07066912949085236, 0.028574518859386444, -0.030284129083156586, 0.05096657946705818, -0.015053365379571915, -0.21457643806934357, 0.09840468317270279, 0.08441870659589767, 0.02634686417877674, -0.15453918278217316, 0.09177683293819427, 0.07752480357885361, -0.06139571964740753, -0.006845324765890837, 0.04692358151078224, 0.015020889230072498, 0.04465579614043236, -0.011940781958401203, -0.022751154378056526, -0.0977964997291565, 0.04656907543540001, -0.050152745097875595, -0.04865734651684761, 0.08967705070972443, -0.030632024630904198, -0.018287481740117073, -0.034272950142621994, -0.06611355394124985, -0.02743641473352909, 0.02786775305867195, 0.09187711030244827, 0.04311984032392502, 0.04632507264614105, 0.041531872004270554, 0.027957400307059288, 0.08140403777360916, 0.07216352224349976, 0.05363253131508827, 0.030911559239029884, 0.10812271386384964, 0.11875692009925842, 0.056838907301425934, -0.1894848644733429, 0.06593511998653412, -0.020906027406454086, 0.0666595995426178, 0.04639563336968422, 0.06658157706260681, -0.10010721534490585, 0.017160654067993164, -0.12237250804901123, -0.04561658948659897, 0.07673126459121704, -0.08067183196544647, -0.09741750359535217, -0.09620000422000885, -0.028139270842075348, 0.045799318701028824, 0.04021112993359566, -0.11906977742910385, -0.05035962536931038, -0.037911102175712585, -0.03542911261320114, 0.03152593970298767, 0.011334080249071121, -0.06723695993423462, 0.0477900467813015, 0.06951921433210373, 0.05079532787203789, -0.0579521544277668, 0.015261066146194935, 0.09907776862382889, 0.010205034166574478, 0.034321803599596024, -0.05889950320124626, -0.056411612778902054, -0.03537749499082565, 0.04221928492188454, -0.027047887444496155, 0.02975524216890335, 0.050204601138830185, 0.062134649604558945, 0.007225035224109888, 0.010448153130710125, -0.07840670645236969, -0.0182954054325819, -0.01927349530160427], -ashr:[-0.11964680254459381, 0.1324702501296997, 0.022544922307133675, 0.1358070820569992, 0.023575566709041595, 0.026811223477125168, -0.01921050250530243, -0.09777024388313293, 0.06444473564624786, -0.12215296924114227, -0.04104376211762428, -0.018382083624601364, 0.03371341899037361, 0.008328787051141262, 0.08668288588523865, -0.003283854341134429, 0.06480440497398376, 0.011342567391693592, -0.011718538589775562, 0.012295489199459553, 0.1120067909359932, 0.027255231514573097, 0.07499309629201889, 0.06817890703678131, -0.11517918109893799, 0.008397139608860016, 0.04940945655107498, -0.12281440943479538, 0.13245423138141632, 0.09715428948402405, -0.029444489628076553, 0.10578513145446777, -0.09042560309171677, 0.04813708737492561, 0.10992540419101715, 0.03813755512237549, -0.041581444442272186, -0.010058378800749779, -0.0370192714035511, 0.013732011429965496, 0.07915711402893066, 0.10324404388666153, -0.06416792422533035, -0.06686308979988098, -0.057177990674972534, 0.07033288478851318, -0.12455286830663681, -0.004005894530564547, 0.007666345685720444, -0.08720178157091141, -0.0763474553823471, 0.012135720811784267, 0.07069931924343109, -0.1284540444612503, 0.012316940352320671, 0.09293604642152786, 0.05521320551633835, 0.11449889093637466, -0.02328687720000744, 0.06204767897725105, 0.13555148243904114, 0.10180262476205826, 0.0936843678355217, -0.06929854303598404, 0.0808979868888855, 0.05329008772969246, -0.08323221653699875, 0.10622918605804443, 0.07066158205270767, -0.04886498674750328, -0.02156246267259121, -0.11869965493679047, -0.12508723139762878, -0.037109386175870895, -0.10190139710903168, 0.06876618415117264, -0.09010585397481918, -0.05016449838876724, -0.10153476148843765, -0.09037317335605621, -0.11892616003751755, -0.10243615508079529, 0.03237052634358406, 0.09177907556295395, 0.13348329067230225, -0.10544151067733765, -0.10197442770004272, 0.0168355330824852, 0.04993382468819618, -0.014911171048879623, -0.07965584099292755, 0.08274716883897781, 0.18402741849422455, -0.006842603906989098, -0.028443897143006325, -0.14519166946411133, -0.0513872466981411, -0.03631332889199257, 0.05612139031291008, 0.008953682146966457, 0.03335988149046898, -0.06236718222498894, -0.11947125941514969, 0.02892729453742504, -0.003850893583148718, -0.09777938574552536, -0.07774218171834946, -0.03324061632156372, -0.16535669565200806, -0.03985182195901871, 0.0404142290353775, 0.013028985820710659, -0.11671364307403564, -0.0851997658610344, 0.12917399406433105, 0.01198145654052496, -0.017893539741635323, -0.03855707868933678, -0.021948568522930145, -0.03623863682150841, -0.043613795191049576, -0.014528421685099602, -0.015140565112233162, -0.005850782617926598, -0.005157623440027237, 0.011118755675852299, 0.09119732677936554, -0.04292213171720505, 0.047537341713905334, -0.03301355987787247, -0.010502256453037262, 0.14121490716934204, 0.07362552732229233, 0.021502643823623657, 0.0011359016643837094, -0.02287915349006653, 0.018829714506864548, 0.07063166052103043, 1.028297992888838e-05, -0.12466876208782196, 0.006711598485708237, -0.06360483914613724, -0.09353449195623398, 0.14060507714748383, 0.021063795313239098, -0.1146647110581398, -0.0018127307994291186, 0.11252646893262863, -0.04593825712800026, -0.0666300356388092, -0.004669619258493185, 0.019677987322211266, -0.13128969073295593, -0.014846877194941044, 0.09960563480854034, 0.04224616661667824, 0.03638731688261032, -0.03230386599898338, 0.09371816366910934, -0.12451902776956558, -0.03607556223869324, 0.0652400553226471, 0.07352953404188156, 0.08993237465620041, 0.021093599498271942, -0.12267129868268967, -0.011574096977710724, -0.02147028036415577, 0.12199215590953827, -0.08346174657344818, 0.0116890212520957, -0.14792151749134064, -0.10421517491340637, 0.09728259593248367, -0.03798498585820198, -0.011577373370528221, -0.14300255477428436, -0.09856348484754562, 0.08707453310489655, -0.07424812763929367, -0.07445274293422699, -0.12682104110717773, -0.1019425019621849, -0.061867889016866684, 0.048002541065216064, -0.02036619931459427, 0.023922033607959747, 0.001500696991570294, -0.021431652829051018, -0.11355162411928177, 0.04096822068095207, -0.11042454093694687, 0.007168638985604048, -0.09591101109981537, -0.13656586408615112, -0.05922671779990196, 0.06982536613941193, -0.02372286655008793, 0.09300650656223297, -0.01586023159325123, -0.044895239174366, -0.0027434304356575012, -0.0411052480340004, 0.04726988449692726, -0.022060636430978775, 0.04405546560883522, 0.01487244013696909, 0.01687045581638813, -0.09188059717416763, -0.10091838240623474, 0.025704799219965935, -0.008579513989388943, -0.042547717690467834, -0.027687711641192436, 0.08259555697441101, 0.11405191570520401, -0.08196348696947098, -0.07115840911865234, -0.02781558968126774, 0.03035801276564598, -0.027288706973195076, 0.025553852319717407, -0.05551527440547943, -0.0072293952107429504, -0.034032005816698074, -0.10747724026441574, -0.0097033167257905, 0.07202233374118805, 0.016070155426859856, 0.04283029958605766, 0.15125948190689087, -0.06710430234670639, -0.11521341651678085, 0.1427309215068817, 0.016511596739292145, -0.11765231192111969, 0.04031515121459961, -0.10125967860221863, 0.08947835862636566, -0.02869313396513462, -0.07378446310758591, -0.04037340730428696, -0.07740385085344315, 0.07428483664989471, -0.0036783674731850624, 0.010951853357255459, 0.05203143134713173, -0.06643251329660416, -0.1115778386592865, 0.03083399310708046, 0.05064006894826889, 0.03251535817980766, 0.00012563691416289657, 0.01205398514866829, 0.06047021225094795, -0.005732321180403233, 0.09067065268754959, -0.019691064953804016, -0.022632619366049767, -0.06961798667907715, 0.07520777732133865, -0.08305998146533966, -0.0011275103315711021, -0.027292992919683456, 0.03102332353591919, 0.08570786565542221, -0.11672450602054596, -0.0984792709350586, -0.07371698319911957, -0.0006421112339012325, 0.00832819752395153, 0.04494369402527809, 0.04103242978453636, 0.05199401453137398, 0.056036144495010376, -0.016091465950012207, 0.043832927942276, -0.04405587911605835, -0.10461371392011642, -0.008636130020022392, 0.06355603784322739, 0.12355606257915497, -0.1362629532814026, 0.015867045149207115, 0.0906950905919075, -0.17637616395950317, -0.08956073224544525, 0.11705029755830765, -0.04221990704536438, -0.10909159481525421, -0.006568137090653181, -0.03860115632414818, 0.014640029519796371, 0.04078610613942146, 0.03494970127940178, -0.04183812439441681, 0.020118413493037224, -0.11574945598840714, -0.020607570186257362, 0.020115427672863007], -bitcast:[-0.13428804278373718, 0.10999651998281479, -0.13175350427627563, -0.06939411908388138, -0.14272646605968475, -0.12892960011959076, 0.08366329967975616, 0.14754125475883484, 0.008878231979906559, 0.12486682832241058, 0.06382793188095093, 0.01770634949207306, 0.028973529115319252, -0.005006582476198673, 0.06093898043036461, 0.11583944410085678, 0.05300160497426987, -0.003320434596389532, -0.014317598193883896, 0.049238547682762146, -0.07191917300224304, -0.10850692540407181, -0.04955894872546196, 0.01614857278764248, 0.004447032697498798, -0.11400642991065979, 0.08785361796617508, 0.026347963139414787, 0.12988543510437012, -0.059036362916231155, -0.11400970071554184, -0.005683806724846363, -0.12862984836101532, -0.032417237758636475, -0.03574344888329506, 0.10568990558385849, -0.03840256854891777, 0.01744595728814602, 0.08336586505174637, 0.04696352407336235, 0.08359350264072418, -0.018241457641124725, 0.11294188350439072, 0.11929547786712646, -0.06483683735132217, -0.13089610636234283, 0.04268372058868408, 0.009371158666908741, 0.012328018434345722, -0.07267078757286072, 0.0018374392529949546, 0.002039399929344654, 0.00843955110758543, -0.0009314172784797847, -0.04913536459207535, 0.05878826603293419, 0.025532493367791176, -0.12443770468235016, -0.05078575387597084, -0.08696361631155014, 0.04454158619046211, 0.09199579805135727, -0.12069148570299149, 0.11820297688245773, -0.09509752690792084, 0.004837969783693552, -0.11770682036876678, -0.05209626257419586, 0.04481228440999985, -0.03916247561573982, 0.12360896170139313, -0.006590219680219889, -0.10644956678152084, -0.015041875652968884, 0.09576648473739624, 0.028695665299892426, -0.007832766510546207, 0.019550273194909096, 0.14447347819805145, -0.023341041058301926, -0.01757683977484703, 0.10174726694822311, 0.017068637534976006, -0.12893834710121155, -0.0013377886498346925, -0.034880951046943665, 0.10788707435131073, 0.07389243692159653, 0.03655097261071205, 0.03435315191745758, -0.10213603079319, 0.11121588200330734, 0.10523032397031784, 0.019001655280590057, 0.08328179270029068, -0.10178482532501221, 0.006547098513692617, 0.015500669367611408, 0.03771812096238136, -0.01582406274974346, 0.04253585636615753, -0.0003049536026082933, -0.14481525123119354, 0.017122196033596992, -0.0024842319544404745, -0.02060294896364212, 0.05687270686030388, -0.12712030112743378, -0.08800908923149109, 0.08004871010780334, 0.007949753664433956, -0.009940209798514843, -0.02492714487016201, -0.000639776757452637, 0.06151602417230606, -0.12074820697307587, -0.08031808584928513, -0.028200136497616768, -0.038116294890642166, -0.06991119682788849, -0.10361456125974655, -0.08008711040019989, 0.11983828991651535, -0.05771194398403168, -0.09247389435768127, -0.10686974972486496, 0.13355281949043274, 0.07330621033906937, 0.08456525206565857, -0.09644820541143417, -0.003763339016586542, 0.09517645835876465, -0.07120364159345627, -0.1846926212310791, -0.004050204996019602, 0.02960897982120514, 0.028176045045256615, -0.12717211246490479, 0.08585408329963684, 0.10194908082485199, -0.12128422409296036, 0.05514010414481163, 0.07499489188194275, -0.026598216965794563, -0.04378630965948105, -0.1133618876338005, 0.047616034746170044, 0.016328006982803345, -0.048712607473134995, -0.058908965438604355, 0.035609111189842224, 0.03665004298090935, -0.13774003088474274, -0.013886820524930954, -0.06784119457006454, -0.06729856878519058, 0.0707387775182724, 0.021633796393871307, -0.045918844640254974, -0.061617422848939896, 0.08626765012741089, 0.030959177762269974, -0.1251908540725708, -0.059818778187036514, 0.0898585394024849, 0.10831774026155472, -0.02018275484442711, -0.02983105555176735, -0.01763025112450123, -0.0783151313662529, 0.012384350411593914, 0.07899527251720428, 0.018463682383298874, -0.03713388368487358, 0.02516397275030613, 0.002712804824113846, -0.03488835319876671, -0.10085542500019073, 0.09726578742265701, -0.05307686701416969, 0.007440474815666676, -0.057604044675827026, 0.023310165852308273, -0.0009405403980053961, -0.14101196825504303, -0.013558470644056797, 0.04468107223510742, 0.009073427878320217, -0.03551566228270531, -0.11691033095121384, -0.04198232293128967, -0.10371500253677368, 0.06168719381093979, 0.021223461255431175, -0.08460173010826111, 0.05815862491726875, 0.012994387187063694, -0.13464432954788208, 0.026793215423822403, 0.006421055644750595, 0.05149146169424057, 0.09625309705734253, -0.09055227786302567, 0.012400563806295395, -0.04750819131731987, -0.05579662695527077, -0.04608520120382309, 0.011082766577601433, 0.0019358868012204766, -0.09285460412502289, 0.020296573638916016, -0.07430596649646759, -0.1404571235179901, 0.054320503026247025, -0.08627108484506607, -0.1262464076280594, 0.11392802000045776, 0.03462415933609009, 0.05193885415792465, 0.034162938594818115, -0.03929005190730095, 0.0024217553436756134, -0.002708080690354109, 0.015163974836468697, -0.035363879054784775, -0.08926229178905487, -0.02183537185192108, 0.014326045289635658, 0.104982390999794, 0.12565352022647858, 0.00975925475358963, 0.0353497639298439, 0.13634029030799866, -0.07968298345804214, 0.05933547019958496, 0.017493806779384613, 0.07372581958770752, -0.006224104203283787, -0.037756673991680145, 0.12228228151798248, 0.018063833937048912, -0.039630644023418427, 0.028614556416869164, 0.09321713447570801, 0.06116694211959839, 0.05070405453443527, 0.10440891236066818, 0.08679483830928802, -0.0017702467739582062, -0.08073285222053528, 0.02437574975192547, 0.06773104518651962, -0.007900897413492203, -0.01350274309515953, 0.11892473697662354, -0.037267204374074936, 0.009513769298791885, 0.0745922103524208, 0.04656515643000603, 0.06395074725151062, 0.09121780097484589, -0.01158286351710558, 0.021106969565153122, -0.006084303837269545, 0.06784091889858246, -0.06216307729482651, -0.05544993653893471, -0.10082758218050003, -0.045003537088632584, -0.11002805083990097, 0.013597722165286541, 0.046254340559244156, -0.025464767590165138, -0.04588468000292778, -0.049135301262140274, -0.044084519147872925, 0.03556326404213905, -0.016765184700489044, 0.06002030149102211, -0.14291216433048248, 0.12921936810016632, -0.04035583883523941, -0.004587659612298012, -0.031240705400705338, 0.028981627896428108, 0.10444764047861099, -0.12712562084197998, -0.06148480623960495, -0.08486577123403549, -0.10671630501747131, -0.06643904745578766, -0.015196518041193485, 0.07702089846134186, 0.12024437636137009, -0.0735536590218544, -0.0901513621211052, -0.03415127098560333, 0.08879602700471878, 0.041609637439250946, -0.08939215540885925], -br:[0.08785571157932281, 0.013195495121181011, 0.017808379605412483, 0.06795401871204376, 0.021821221336722374, -0.010543112643063068, -0.014646743424236774, 0.059668056666851044, 0.07198186963796616, -0.11441650241613388, -0.12798799574375153, 0.18100641667842865, 0.0354817733168602, -0.0023606838658452034, 0.031048016622662544, -0.02194288559257984, 0.05539517477154732, 0.04800089821219444, -0.2777236998081207, 0.04613479599356651, 0.051604077219963074, -0.012494244612753391, 0.03565661609172821, -0.0073852078057825565, -0.027864566072821617, -0.057239096611738205, 0.10739699006080627, 0.03804556652903557, 0.041083503514528275, 0.0952015072107315, -0.05150705575942993, 0.07689198106527328, 0.08598209172487259, 0.07437635958194733, 0.07986851781606674, 0.09675506502389908, -0.08397003263235092, -0.06647903472185135, -0.03456087410449982, -0.07416849583387375, 0.09108291566371918, 0.1346164047718048, 0.002994971349835396, 0.0689457356929779, -0.013255174271762371, 0.11503878235816956, 0.08957342803478241, -0.06155918166041374, 0.23381926119327545, -0.05912306532263756, -0.1188996210694313, 0.06253840774297714, -0.09599898010492325, -0.027560699731111526, -0.09118977934122086, -0.03244386985898018, -0.05856714025139809, -0.08166761696338654, -0.012115860357880592, 0.07074368745088577, 0.0841599553823471, 0.0003609511477407068, 0.06923390179872513, -0.10807634890079498, 0.10874152928590775, -0.11136782914400101, 0.030855761840939522, 0.0005607783677987754, 0.05655137822031975, -0.03231152147054672, 0.025784224271774292, -0.007278153207153082, 0.07922602444887161, 0.07604193687438965, 0.036008626222610474, -0.02696589194238186, -0.11693526059389114, 0.06933259218931198, -0.03653818368911743, -0.17563365399837494, -0.013839248567819595, -0.03151010721921921, 0.005057080183178186, -0.046595897525548935, 0.059593316167593, -0.04170060157775879, -0.0742182806134224, 0.06942598521709442, -0.011392287909984589, -0.03822718933224678, -0.08161503821611404, 0.050322189927101135, 0.02296861819922924, -0.020323339849710464, 0.048685431480407715, 0.022758707404136658, 0.03102877177298069, -0.02629805915057659, 0.02213364467024803, 0.013346107676625252, -0.012470274232327938, -0.11948522180318832, 0.08714135736227036, -0.1644354909658432, 0.13469357788562775, -0.1010671928524971, -0.0015561130130663514, 0.01872645504772663, -0.017708921805024147, 0.013696965761482716, -0.1808222085237503, 0.2350335419178009, -0.058970917016267776, -0.10420913994312286, 0.03716996684670448, -0.08018376678228378, -0.16306620836257935, -0.21552327275276184, 0.09719808399677277, -0.0384175106883049, -0.009425296448171139, 0.10539630800485611, 0.07440657168626785, -0.12242230027914047, -0.012376430444419384, 0.0808996856212616, -0.014614646323025227, -0.010390611365437508, 0.10037725418806076, 0.009177567437291145, 0.10576052963733673, -0.08519542217254639, 0.0874658077955246, 0.12243010103702545, -0.0012150243856012821, 0.019706159830093384, 0.04129137098789215, 0.06587463617324829, -0.009095635265111923, -0.015085588209331036, 0.09599554538726807, 0.036102622747421265, 0.018219105899333954, -0.02199036441743374, 0.08090177178382874, -0.08835293352603912, 0.027101069688796997, 0.04308274760842323, 0.031314969062805176, 0.006954195909202099, 0.10647190362215042, 0.0819007083773613, -0.04081084206700325, -0.11858049780130386, 0.1444852203130722, -0.028385000303387642, 0.03496202453970909, 0.034295275807380676, -0.04032696411013603, 0.012201497331261635, -0.04078404977917671, 0.010394798591732979, -0.005284296348690987, -0.07730406522750854, -0.0023037714418023825, 0.015773169696331024, -0.11652252823114395, 0.08259930461645126, -0.0464739091694355, 0.005690985359251499, 0.010155891068279743, -0.0072904652915894985, 0.025937797501683235, 0.03570371866226196, -0.0062516797333955765, -0.16608303785324097, -0.06401313841342926, -0.08690430223941803, 0.0993364006280899, -0.08207681030035019, -0.047167181968688965, -0.04525964334607124, -0.027322163805365562, 0.08447223901748657, -0.025392606854438782, -0.019755519926548004, -0.02875504456460476, 0.012719821184873581, -0.0177136417478323, -0.11995746195316315, -0.08638095110654831, -0.0999094545841217, 0.08506863564252853, 0.01810891553759575, -0.09899792075157166, -0.009226768277585506, 0.10234144330024719, 0.06899867206811905, -0.054339323192834854, 0.04666150361299515, -0.018523260951042175, 0.0448179729282856, 0.026457294821739197, 0.051937833428382874, -0.034495070576667786, 0.06370661407709122, -0.03265649825334549, 0.002947965171188116, -0.19832180440425873, -0.030818812549114227, 0.0416673868894577, 0.10005892068147659, -0.046279869973659515, 0.0802292749285698, -0.053762491792440414, -0.06854470819234848, 0.05471525713801384, 0.007302958518266678, 0.030041176825761795, 0.03455451875925064, 0.09680552780628204, 0.038315918296575546, -0.2222549170255661, -0.008948056027293205, 0.08854078501462936, -0.06761482357978821, -0.0135352723300457, 0.0021683077793568373, 0.018239043653011322, 0.04622460529208183, 0.09106270968914032, -0.06417781114578247, -0.08302205801010132, 0.052519410848617554, -0.059388671070337296, -0.046581584960222244, -0.03072771057486534, -0.009707795456051826, 0.01313801296055317, -0.038448113948106766, -0.07657689601182938, -0.04382011666893959, 0.031288113445043564, -0.00858852919191122, 0.06245492026209831, -0.014602364040911198, 0.033882319927215576, 0.056905463337898254, 0.08254510909318924, 0.07881475985050201, 0.0441477932035923, 0.04007570445537567, -0.1458560973405838, -0.17146162688732147, 0.06347505003213882, 0.2176116406917572, 0.09746231883764267, 0.07029475271701813, -0.016138818114995956, -0.07354966551065445, 0.02794490195810795, -0.15858808159828186, 0.02789623849093914, -0.022013600915670395, -0.024813303723931313, 0.0887736976146698, -0.026259567588567734, -0.1036275252699852, -0.1115967407822609, -0.03289317339658737, 0.05991312488913536, 0.08681298047304153, 0.0798102542757988, -0.07631772011518478, 0.032370250672101974, -0.053676310926675797, 0.036553140729665756, -0.008558766916394234, -0.032912008464336395, 0.05534007400274277, 0.12425852566957474, 0.04227284714579582, 0.07997622340917587, 0.01682395115494728, 0.10038281232118607, 0.017175626009702682, -0.08979102969169617, -0.05411823093891144, -0.05229782685637474, -0.09751538187265396, -0.05229843035340309, -0.13236753642559052, -0.0582001730799675, 0.029628906399011612, 0.06826522946357727, 0.00527476379647851, 0.03218811750411987, -0.011387424543499947, 0.08665019273757935, -0.05230795219540596], -call:[0.0814986377954483, 0.036099281162023544, 0.01947028748691082, -0.00621518911793828, 0.022069863975048065, -0.004730906803160906, -0.014734582044184208, 0.11182581633329391, -0.031173115596175194, -0.11755819618701935, -0.1274181306362152, -0.1290156990289688, 0.04862455278635025, -0.015331861563026905, 0.1128772646188736, -0.0016055419109761715, 0.035888876765966415, 0.022181956097483635, -0.22276118397712708, 0.018388532102108, 0.10759530961513519, -0.04190920293331146, 0.03494610637426376, 0.027944091707468033, -0.030260415747761726, -0.058622702956199646, -0.1716146022081375, 0.027965698391199112, 0.03789254650473595, 0.09571647644042969, -0.042808257043361664, 0.06294122338294983, 0.08802682906389236, 0.031325388699769974, 0.016827810555696487, 0.08471491187810898, -0.07599303126335144, -0.04659672826528549, 0.12875032424926758, 0.03371363878250122, 0.08519469946622849, 0.040725935250520706, -0.027014315128326416, -0.056782763451337814, -0.011521409265697002, 0.09995482861995697, -0.12592749297618866, 0.06626163423061371, -0.07861629128456116, -0.0667131319642067, 0.09387184679508209, -0.16921158134937286, -0.037975478917360306, 0.04204069823026657, -0.04344809427857399, -0.03211639076471329, 0.11949539184570312, 0.06736426800489426, -0.025243224576115608, 0.0751546323299408, -0.0592031292617321, 0.035242557525634766, 0.05754873901605606, -0.11639147251844406, 0.10072143375873566, 0.03285439312458038, 0.01311644446104765, 0.0006857357802800834, 0.04303979501128197, -0.011567546054720879, 0.01608692854642868, -0.013210197910666466, -0.0713154748082161, -0.03862152248620987, -0.15794232487678528, -0.05575725436210632, 0.10595375299453735, -0.18930043280124664, 0.03140190243721008, -0.16110971570014954, -0.012764090672135353, -0.01749625988304615, 0.11034157127141953, -0.04353741183876991, 0.05167209357023239, 0.08455728739500046, -0.004050042945891619, 0.06639764457941055, -0.04368661344051361, 0.021889619529247284, -0.05817021057009697, 0.037491414695978165, 0.013667352497577667, 0.01726914569735527, -0.011720607988536358, 0.005178819410502911, 0.027630146592855453, -0.027673371136188507, 0.021831760182976723, 0.02135433629155159, -0.07722640037536621, -0.03332899883389473, -0.22135035693645477, -0.11184389889240265, -0.03322206810116768, -0.04164128750562668, 0.013454667292535305, 0.040183212608098984, -0.09264425188302994, -0.03668646514415741, 0.11601140350103378, -0.05193817615509033, -0.05582451820373535, -0.028950002044439316, 0.035927534103393555, 0.05381333827972412, -0.14075744152069092, 0.13229800760746002, -0.1566160023212433, -0.08373827487230301, -0.0655345544219017, 0.07824929803609848, 0.06456679105758667, -0.02628399431705475, 0.01336488127708435, -0.16471804678440094, -0.00894242338836193, -0.003907129634171724, 0.04560694098472595, -0.064179427921772, -0.042554620653390884, -0.0009691352024674416, 0.07277426868677139, -0.08321446925401688, 0.003204614855349064, 0.01699925772845745, 0.041284698992967606, 0.0631994754076004, -0.0013449718244373798, -0.013523492030799389, 0.07928085327148438, -0.09170165657997131, 0.009384706616401672, -0.058655932545661926, -0.04297323524951935, -0.05720371752977371, 0.07616989314556122, 0.1392158418893814, -0.0824800431728363, 0.0974733754992485, -0.035218190401792526, 0.07200168818235397, -0.05366935953497887, -0.008678781799972057, -0.008678920567035675, -0.026349438354372978, 0.1503484696149826, -0.02788671664893627, -0.0652986392378807, 0.010591053403913975, 0.0382072888314724, 0.030011380091309547, -0.10588330030441284, -0.06419261544942856, 0.005038457922637463, -0.03741389885544777, 0.13806793093681335, 0.06894046068191528, -0.06156202778220177, -0.052832379937171936, 0.011336314491927624, 0.04784136265516281, -0.1240662932395935, 0.0237896591424942, -0.008184618316590786, 0.15769238770008087, -0.07444890588521957, -0.09762636572122574, 0.08852847665548325, -0.062274228781461716, -0.020148545503616333, -0.03932120278477669, 0.04071134701371193, -0.0737849771976471, 0.018863828852772713, -0.013513020239770412, -0.04656122997403145, 0.002500102622434497, -0.024342307820916176, -0.11078182607889175, 0.011214439757168293, -0.06739131361246109, -0.020067352801561356, 0.015444471500813961, -0.07863311469554901, -0.021890485659241676, 0.10310528427362442, 0.09228666871786118, -0.014168349094688892, 0.004370240494608879, -0.051496800035238266, -0.009016317315399647, -0.08278845250606537, -0.014162678271532059, -0.03207975625991821, 0.02829589508473873, 0.07613250613212585, -0.0004847112868446857, -0.03740294277667999, -0.026247309520840645, 0.02677307277917862, 0.11458320915699005, 0.05288621038198471, 0.051999155431985855, -0.04941750690340996, -0.043331801891326904, 0.051513828337192535, -0.01430739276111126, -0.030718840658664703, -0.06787527352571487, 0.06329108029603958, 0.014918344095349312, -0.12706175446510315, 0.046456124633550644, -0.008343024179339409, -0.06259965151548386, -0.014583319425582886, -0.13090667128562927, 0.012705444358289242, 0.03649846836924553, 0.05200732499361038, 0.0527755543589592, -0.011826099827885628, 0.038029272109270096, -0.014651210978627205, -0.056396663188934326, -0.014397090300917625, -0.011567873880267143, -0.011539223603904247, -0.00952335074543953, -0.07038401812314987, -0.037035658955574036, 0.03077714331448078, 0.07488790899515152, 0.04970189556479454, 0.06901704519987106, 0.021153585985302925, 0.11578153073787689, 0.08983537554740906, 0.06379414349794388, 0.008813662454485893, -0.11628895998001099, 0.013256764970719814, -0.11931578814983368, 0.05761351063847542, 0.16958385705947876, 0.0620686337351799, -0.04456069692969322, -0.020299164578318596, -0.06658513844013214, -0.03519027307629585, 0.04054665565490723, 0.026147684082388878, 0.16380897164344788, 0.06478039920330048, 0.0794999748468399, 0.015252325683832169, -0.09735264629125595, -0.10368809103965759, 0.1201760545372963, 0.05272927135229111, -0.006420085672289133, -0.07088936120271683, -0.0429450124502182, 0.04293064773082733, 0.02432124875485897, 0.03292306512594223, 0.13934165239334106, -0.141486257314682, -0.19911424815654755, 0.036837268620729446, 0.09817450493574142, 0.014602243900299072, -0.04217929020524025, 0.0966738685965538, 0.01684647426009178, -0.05874086171388626, -0.0649830773472786, -0.016575852409005165, -0.001386746997013688, 0.044139645993709564, 0.050793614238500595, -0.05091995373368263, 0.031175408512353897, 0.025298133492469788, 0.004792448598891497, 0.022428199648857117, 0.025897683575749397, -0.011802268214523792, 0.05350078269839287], -constant:[-0.03512401506304741, 0.023259222507476807, 0.08121148496866226, -0.035154301673173904, -0.06609222292900085, -0.07391799241304398, 0.12921912968158722, 0.08792982995510101, -0.008143887855112553, 0.05011836066842079, -0.019942978397011757, 0.048456188291311264, -0.020540112629532814, -0.06787551194429398, -0.042564794421195984, -0.17218515276908875, -0.07777037471532822, 0.0602155365049839, 0.009566834196448326, -0.02563699334859848, -0.002007161732763052, 0.05969151481986046, -0.012323552742600441, -0.05669145658612251, -0.06306564062833786, 0.05887553468346596, -0.13955534994602203, 0.15874312818050385, -0.026340603828430176, 0.02922241948544979, 0.12123741209506989, -0.16056163609027863, 0.005807826295495033, 0.025427404791116714, -0.1510632336139679, 0.12147130072116852, 0.13375668227672577, 0.093732088804245, 0.06676728278398514, 0.017212126404047012, -0.07235563546419144, 0.021461674943566322, -0.024120882153511047, 0.05489562079310417, 0.01719103939831257, 0.016536442562937737, 0.02426872029900551, 0.023644359782338142, -0.020996740087866783, -0.01715673878788948, 0.03872218728065491, -0.10844889283180237, -0.07178588211536407, -0.15914438664913177, 0.09701527655124664, -0.06820283830165863, 0.08988909423351288, 0.09579357504844666, 0.04441042244434357, 0.12961351871490479, -0.037516381591558456, -0.08597972989082336, 0.007019597105681896, -0.03925083950161934, -0.12312658876180649, 0.13170213997364044, -0.1426621824502945, -0.06255527585744858, 0.04624980688095093, -0.07879403978586197, -0.09050147235393524, 0.058201368898153305, 0.005198718048632145, -0.006198055110871792, -0.1616072803735733, -0.022710636258125305, -0.061631884425878525, -0.08212681859731674, 0.006894088350236416, -0.08678966760635376, -0.17315305769443512, 0.027481738477945328, 0.05626862496137619, 0.009435607120394707, 0.025450006127357483, 0.04451655223965645, -0.04527154937386513, -0.12757238745689392, -0.006898878142237663, -0.06235198676586151, 0.051517922431230545, -0.03626491501927376, 0.011177665553987026, 0.04610529541969299, 0.017680654302239418, -0.01460717897862196, 0.07657069712877274, -0.06521528959274292, 0.13412919640541077, 0.08491308242082596, -0.08872433751821518, 0.04957858845591545, -0.11301293224096298, -0.055246394127607346, 0.10662531107664108, 0.02716791070997715, -0.08173318207263947, -0.022571908310055733, 0.0851970762014389, -0.17737805843353271, 0.06794604659080505, -0.08192646503448486, 0.0040780105628073215, -0.08560183644294739, 0.14017829298973083, 0.028926774859428406, -0.10954046994447708, 0.08283364027738571, -0.043233390897512436, 0.09604897350072861, 0.06285838037729263, -0.11676070839166641, 0.1569516807794571, -0.06709645688533783, -0.05004831403493881, 0.12538814544677734, -0.04657112807035446, -0.05138823762536049, -0.1251983791589737, 0.009488948620855808, -0.07505862414836884, -0.05882488191127777, 0.0012175444280728698, -0.007914349436759949, 0.04459447041153908, -0.11234169453382492, -0.15669773519039154, 0.0993284359574318, -0.0431189127266407, -0.07635083049535751, 0.04817375913262367, -0.04226415604352951, 0.0494590699672699, 0.1178838387131691, -0.012090499512851238, 0.019453993067145348, 0.024897532537579536, -0.007056106347590685, 0.016659120097756386, -0.08756978064775467, 0.002616632031276822, -0.0151519775390625, 0.13552160561084747, -0.04974512755870819, 0.11078990995883942, 0.04126952961087227, 0.12875698506832123, -0.13228285312652588, -0.006122919265180826, -0.07544128596782684, 0.014477710239589214, -0.03248407691717148, -0.061313457787036896, 0.10892892628908157, 0.09897693246603012, 0.09755342453718185, 0.0721743032336235, 0.01762758381664753, -0.0015534345293417573, -0.030713552609086037, 0.06997307389974594, -0.024057069793343544, 0.06269008666276932, -0.07594798505306244, -0.04862729460000992, -0.06362900882959366, 0.123996801674366, 0.006839089095592499, 0.014879446476697922, 0.0701165497303009, -0.14803117513656616, 0.0477922186255455, -0.08491601794958115, 0.027476590126752853, -0.006602579727768898, 0.04395990073680878, 0.0387268103659153, 0.051570843905210495, -0.06525812298059464, -0.01710491068661213, 0.04783955588936806, 0.00043213239405304193, 0.016946490854024887, 0.05458084121346474, 0.058211587369441986, -0.13246862590312958, 0.008997190743684769, 0.05886384844779968, 0.01820133998990059, 0.026503583416342735, 0.06260369718074799, 0.04686804860830307, 0.029244933277368546, -0.07200702279806137, 0.052718665450811386, -0.004416892770677805, 0.06146930903196335, 0.13233783841133118, -0.003522874554619193, 0.08334499597549438, -0.016096344217658043, 0.009149054996669292, 0.04538353905081749, -0.04939155653119087, -0.07319207489490509, 0.029119307175278664, 0.1577482521533966, 0.07133743911981583, 0.04163907468318939, -0.04650289937853813, 0.011265300214290619, 0.1244855746626854, -0.09960464388132095, -0.03666780889034271, 0.032335296273231506, 0.07553789764642715, -0.07723015546798706, 0.10728707164525986, -0.20880840718746185, 0.13107703626155853, 0.013425911776721478, -0.061595842242240906, -0.13670030236244202, 0.09870510548353195, -0.08278650790452957, 0.006586251314729452, -0.0004206437442917377, -0.04498421773314476, 0.033313360065221786, 0.058908138424158096, 0.04408741369843483, 0.030020756646990776, -0.04296806454658508, 0.011121323332190514, 0.004566401243209839, 0.046054571866989136, -0.026134885847568512, 0.07028409093618393, -0.011160741560161114, -0.0007557763601653278, -0.05670316517353058, -0.09740350395441055, 0.03830595687031746, -0.053379036486148834, 0.14748038351535797, 0.1199079304933548, -0.012226332910358906, 0.027563540264964104, -0.037795379757881165, -0.04034355655312538, 0.1257682591676712, 0.013374021276831627, -0.04714329540729523, 0.058473389595746994, -0.10278964042663574, -0.001662340248003602, 0.08497670292854309, -0.0020656269043684006, 0.00047221637214533985, 0.04813805967569351, 0.10136964172124863, -0.032599881291389465, 0.015402114018797874, 0.05383538082242012, 0.10970453917980194, 0.0683889165520668, -0.11103395372629166, 0.1139875054359436, 0.0314558781683445, -0.09779905527830124, -0.053199902176856995, -0.01027314830571413, -0.031349316239356995, -0.011801200918853283, 0.049874454736709595, -0.16397078335285187, -0.021925969049334526, 0.006999361794441938, -0.05051440745592117, 0.057130150496959686, -0.016148757189512253, 0.02532959170639515, 0.053506672382354736, -0.06368157267570496, 0.10021039843559265, 0.056637030094861984, 0.075217604637146, 0.03186038136482239, -0.10006421059370041, 0.14592860639095306], -extractelement:[-0.029856057837605476, 0.13189789652824402, 0.010557927191257477, 0.037469156086444855, -0.05925707146525383, -0.009324105456471443, -0.01721254363656044, 0.07933256030082703, -0.03212564438581467, -0.08268561214208603, -0.13578744232654572, 0.01733727753162384, 0.06837104260921478, 0.04987988993525505, 0.06851033866405487, 0.0418558344244957, -0.04478751868009567, 0.1477097123861313, -0.06771571189165115, 0.05825381726026535, 0.10076034814119339, 0.07799910008907318, 0.033257391303777695, 0.09171601384878159, -0.10305839031934738, -0.08852430433034897, -0.049623679369688034, -0.0009573841816745698, -0.01895245350897312, 0.1038079708814621, 0.09286156296730042, 0.04509256035089493, 0.0895237848162651, -0.08526943624019623, 0.0017097947420552373, 0.09589333832263947, -0.023504631593823433, -0.11793078482151031, -0.01029299758374691, 0.07163941115140915, 0.10532056540250778, 0.04048459976911545, 0.08365574479103088, 0.07916370779275894, -0.015200757421553135, 0.11137469112873077, 0.03359978273510933, 0.0186532624065876, -0.08712150156497955, 0.010198059491813183, 0.017828326672315598, 0.031280238181352615, -0.1498928964138031, -0.07107917219400406, -0.09386467933654785, -0.08130385726690292, -0.17496022582054138, 0.06188202276825905, -0.10642052441835403, 0.07937798649072647, 0.03177384287118912, -0.10984820127487183, 0.0944054052233696, 0.020244071260094643, 0.12843012809753418, -0.11094209551811218, -0.049828432500362396, 0.13703954219818115, -0.003294772934168577, 0.0042420136742293835, -0.0006576926680281758, -0.00802594143897295, -0.027749210596084595, -0.041984643787145615, 0.03611375391483307, 0.08659818768501282, 0.0023396059405058622, -0.2663581967353821, 0.033408306539058685, -0.15559279918670654, 0.019701208919286728, 0.03045097552239895, -0.03658278286457062, -0.028285207226872444, -0.07697183638811111, 0.035078275948762894, -0.014954442158341408, 0.1374482363462448, 0.019694622606039047, -0.02245624177157879, 0.04355579987168312, 0.04013798385858536, 0.0031336741521954536, 0.07940785586833954, -0.1475604623556137, 0.07064725458621979, 0.029990820214152336, -0.00346195581369102, 0.02098565362393856, 0.013210602104663849, 0.030988367274403572, -0.09708168357610703, -0.07485709339380264, 0.11820738017559052, -0.01934601552784443, -0.09919486194849014, -0.049895282834768295, 0.10506733506917953, -0.059653542935848236, -0.10290279239416122, -0.046318963170051575, 0.017025358974933624, -0.05289977043867111, 0.05535133555531502, 0.04135233908891678, 0.011073912493884563, -0.009327270090579987, -0.042629681527614594, -0.022731738165020943, -0.04865170270204544, 0.030405502766370773, 0.09443772584199905, 0.06386493891477585, -0.05520911514759064, 0.024886157363653183, 0.140934556722641, 0.07643916457891464, 0.053163014352321625, 0.037305139005184174, -0.10229882597923279, -0.09885012358427048, -0.12168096750974655, 0.114102303981781, -0.12366382032632828, -0.0023011062294244766, 0.012066339142620564, 0.08696623891592026, 0.0756179541349411, 0.03796856105327606, -0.01630934327840805, 0.07491724193096161, -0.08156565576791763, 0.032840296626091, -0.06977204978466034, -0.032375313341617584, -0.046962589025497437, 0.08418286591768265, -0.03364374488592148, 0.03143938258290291, -0.004496659152209759, 0.026175349950790405, 0.10398811846971512, -0.16437731683254242, -0.19013093411922455, 0.04299873113632202, 0.042240701615810394, -0.09490879625082016, -0.0928204283118248, -0.09986763447523117, 0.0247457604855299, 0.06542851030826569, -0.0486413836479187, 0.10295384377241135, -0.04283548891544342, 0.007276207208633423, 0.025618957355618477, 0.05548180267214775, 0.09015636891126633, -0.10440685600042343, -0.026729917153716087, -0.09054020047187805, -0.06342334300279617, 0.08632615208625793, -0.020762693136930466, -0.06667979806661606, 0.10677570104598999, -0.02900293469429016, -0.06763879209756851, -0.10128207504749298, -0.06059003248810768, 0.11595495790243149, -0.014720295555889606, -0.07446553558111191, 0.06043403595685959, 0.08459135890007019, -0.1135064959526062, -0.06995347887277603, 0.044171854853630066, -0.03538832068443298, -0.07303107529878616, -0.00843923632055521, 0.10593558847904205, -0.15936635434627533, 0.008738669566810131, -0.1257096827030182, 0.06483282148838043, 0.03052850440144539, -0.0614599846303463, 0.012394659221172333, -0.09586203098297119, -0.0461215004324913, 0.16943298280239105, 0.036098264157772064, -0.1186675876379013, -0.06525898724794388, 0.11385472863912582, 0.042103007435798645, 0.03781725838780403, 0.05327197164297104, 0.0050658900290727615, 0.07267105579376221, 0.09738458693027496, -0.014161946251988411, 0.13189366459846497, 0.00033204007195308805, -0.03941288962960243, 0.05046360567212105, -0.08661201596260071, 0.15837149322032928, 0.05999007821083069, 0.08304200321435928, -0.03301426023244858, 0.04953731223940849, -0.07181178778409958, -0.0292852483689785, -0.04910627380013466, 0.02609429880976677, 0.06703870743513107, -0.053399428725242615, -0.01660316064953804, -0.13331188261508942, 0.03985249996185303, -0.005425166804343462, 0.07774920761585236, 0.05153776705265045, -0.06053879112005234, -0.10424880683422089, -0.017048047855496407, 0.08550523221492767, -0.11722919344902039, -0.07415175437927246, -0.039579614996910095, -0.0021494312677532434, 0.11553052067756653, -0.008522608317434788, 0.047034863382577896, 0.019992200657725334, -0.051980338990688324, -0.1568443924188614, 0.027002284303307533, -0.0033022616989910603, -0.09532822668552399, 0.0075148725882172585, 0.006185488309711218, 0.05472186580300331, -0.0050176349468529224, -0.1289021521806717, -0.02109558880329132, -0.10548052936792374, 0.0009320576209574938, 0.03232662007212639, 0.08816245943307877, 0.01572093367576599, 0.0072821080684661865, 0.019507575780153275, 0.007994390092790127, 0.011629967018961906, -0.14094088971614838, -0.0983959287405014, 0.019177498295903206, 0.07960713654756546, 0.09225139766931534, -0.03532944992184639, -0.08616042137145996, 0.057515207678079605, -0.11079122871160507, 0.033866021782159805, -0.012223489582538605, -0.048395056277513504, 0.05670147389173508, 0.035755835473537445, 0.09303209185600281, 0.09359719604253769, 0.07991235703229904, -0.0014194886898621917, -0.0003668484278023243, -0.014546974562108517, -0.11974583566188812, -0.029718253761529922, 0.0803278386592865, 0.05015527829527855, 0.035613011568784714, -0.099758580327034, -0.004026602953672409, 0.07608497887849808, -0.06332691013813019, 0.038654625415802, 0.010750357061624527, 0.007315381895750761, 0.11009703576564789], -extractvalue:[0.09745842218399048, -0.06525204330682755, -0.06560727953910828, 0.09096771478652954, -0.07917319238185883, -0.11829207092523575, -0.0640142560005188, 0.13674117624759674, -0.031048176810145378, 0.01236371137201786, -0.06372176855802536, 0.027204930782318115, 0.05145282298326492, 0.043197426944971085, 0.15883782505989075, -0.00971965678036213, -0.1315893828868866, 0.007275983225554228, 0.00931299477815628, 0.127822145819664, -0.05828458443284035, -0.09627685695886612, -0.14943227171897888, -0.07479074597358704, -0.03081413358449936, 0.10946382582187653, 0.09162020683288574, 0.037824150174856186, -0.016351206228137016, 0.0024771832395344973, -0.05272587016224861, 0.025808315724134445, -0.05705949291586876, -0.02919256128370762, 0.030602745711803436, -0.08848407119512558, -0.028336724266409874, -0.08646933734416962, -0.08129842579364777, -0.12018758803606033, 0.054891254752874374, -0.018042847514152527, 0.019809676334261894, 0.08717398345470428, -0.0342358760535717, -0.052410077303647995, 0.0036464333534240723, 0.0017060856334865093, -0.057380981743335724, -0.04972277581691742, 0.036300886422395706, 0.02844836749136448, 0.027773048728704453, 0.012595630250871181, -0.017007367685437202, -0.011952999979257584, 0.0021053145173937082, 0.011075078509747982, 0.00014433267642743886, 0.07808803766965866, -0.0016495436429977417, 0.012561085633933544, 0.040499307215213776, -0.01699051447212696, 0.1260826289653778, -0.04613546282052994, 0.09877997636795044, 0.02724669873714447, 0.05311260744929314, -0.03641555830836296, 0.1324702352285385, 0.036215491592884064, 0.014587609097361565, -0.00644629867747426, 0.056313302367925644, -0.010742593556642532, 0.02810237556695938, -0.02769780345261097, 0.07943601161241531, -0.023661930114030838, -0.012339725159108639, 0.03476981073617935, 0.029981007799506187, -0.04221285134553909, 0.04474813491106033, 0.030312875285744667, 0.08530142158269882, 0.14085398614406586, -0.1579778790473938, 0.13737386465072632, 0.1393478512763977, -0.017844147980213165, -0.056836385279893875, -0.023387381806969643, -0.041132744401693344, 0.0495399609208107, 0.060096774250268936, 0.007779393810778856, 0.029510725289583206, 0.09273883700370789, -0.07753267139196396, 0.0739082619547844, 0.13083307445049286, 0.009911888279020786, -0.005442254710942507, 0.14413438737392426, -0.1404268443584442, -0.02872505784034729, -0.04113727807998657, 0.00205794139765203, 0.030997350811958313, -0.06326049566268921, 0.13918831944465637, -0.11745031177997589, 0.03880329057574272, 0.07023614645004272, -0.05624938756227493, -0.03175009414553642, 0.06372423470020294, -0.09627626091241837, -0.014583566226065159, 0.11059565842151642, 0.061594221740961075, -0.036625806242227554, 0.14122051000595093, 0.002643854822963476, 0.06594152003526688, 0.0528736338019371, 0.13922001421451569, 0.042368315160274506, -0.009292329661548138, -0.0643157884478569, 0.09255591779947281, 0.004416951909661293, -0.05070047080516815, 0.016920480877161026, 0.13242654502391815, 0.10996612161397934, 0.03548239544034004, -0.02024232968688011, 0.05842769891023636, -0.09458207339048386, -0.03342641890048981, -0.02321416325867176, 0.06022220849990845, -0.009702845476567745, -0.028757764026522636, -0.07309534400701523, -0.008607389405369759, 0.015296042896807194, -0.11590109020471573, 0.10318689793348312, 0.02443990856409073, -0.008358179591596127, 0.09289785474538803, 0.11251441389322281, -0.08821883797645569, 0.05849585682153702, -0.002623759675770998, -0.03845981881022453, 0.03971180319786072, -0.1289435178041458, 0.09997054189443588, -0.07281030714511871, -0.061711739748716354, -0.06784476339817047, -0.018445700407028198, 0.13500331342220306, -0.043528541922569275, -0.07971059530973434, 0.13655011355876923, -0.10090681910514832, -0.0005132872611284256, 0.038673609495162964, 0.1290183961391449, 0.02491961419582367, -0.01671413891017437, -0.03016275353729725, 0.09548608958721161, 0.10938668251037598, -0.13205529749393463, 0.011821698397397995, -0.11106457561254501, 0.008703449741005898, 0.009928777813911438, -0.014752386137843132, 0.07015068084001541, 0.03649378940463066, -0.03597512096166611, -0.04260484129190445, -0.08008109778165817, 0.09888461977243423, -0.10372145473957062, -0.03162849694490433, -0.10470165312290192, -0.01922483928501606, -0.02548549510538578, -0.04216131195425987, -0.15097551047801971, 0.08960471302270889, 0.05882543325424194, -0.030184099450707436, -0.14851045608520508, -0.002202156465500593, 0.02896878309547901, -0.017004044726490974, -0.01725967414677143, -0.0073911347426474094, 0.05716438964009285, -0.0011778159532696009, 0.12093206495046616, 0.04760463535785675, -0.10714605450630188, 0.13287360966205597, -0.03533139079809189, 0.045505352318286896, 0.045604605227708817, -0.07854524254798889, -0.09721241146326065, 0.020016292110085487, 0.02888997085392475, 6.061184831196442e-05, -0.011418440379202366, 0.04654571786522865, -0.035631924867630005, -0.047457944601774216, 0.029189858585596085, -0.029995203018188477, 0.07796815037727356, -0.03005298413336277, 0.1207183301448822, -0.06059543788433075, 0.003222500439733267, 0.03587950021028519, 0.13235948979854584, -0.052588507533073425, -0.04315175488591194, 0.02604447305202484, -0.017185229808092117, -0.14743266999721527, 0.07789939641952515, -0.049148816615343094, -0.0334363728761673, 0.04653729125857353, 0.08491945266723633, 0.012951460666954517, 0.020113926380872726, -0.0062780738808214664, -0.10990429669618607, 0.1042512059211731, 0.08225999027490616, -0.09579624235630035, 0.0015649351989850402, -0.006213522050529718, 0.11463760584592819, -0.005381322465837002, -0.06354057788848877, -0.04234590381383896, -0.15227735042572021, -0.08631238341331482, 0.0195686724036932, 0.0100587522611022, -0.13404671847820282, 0.013843812979757786, 0.07994471490383148, -0.021777156740427017, -0.014690311625599861, -0.08722080290317535, -0.13984738290309906, 0.1344671994447708, -0.03653817996382713, 0.057402364909648895, -0.05703410878777504, -0.06657108664512634, 0.0453275591135025, 0.00446273572742939, 0.030955083668231964, -0.13902686536312103, 0.1296224147081375, -0.12262695282697678, -0.09334015101194382, -0.03145521134138107, -0.06433501839637756, -0.026928236708045006, 0.15300174057483673, 0.12985597550868988, -0.04225318133831024, -0.12479541450738907, -0.08848406374454498, -0.11953387409448624, -0.01762314885854721, 0.06154932081699371, -0.0532783679664135, 0.009732005186378956, 0.07631048560142517, -0.1414981335401535, 0.018823720514774323, 0.11166586726903915, 0.026310017332434654, 0.026125282049179077], -fadd:[0.11163728684186935, 0.08968985080718994, 0.004053851589560509, -0.08074700832366943, 0.014349301345646381, -0.00791015662252903, 0.08091946691274643, 0.1685701161623001, 0.01860702596604824, -0.0018204589141532779, -0.04856519773602486, -0.001048367703333497, 0.06687696278095245, -0.03778816759586334, 0.03544829785823822, 0.021740993484854698, 0.004337766673415899, 0.15401823818683624, -0.1393199861049652, 0.022234225645661354, 0.0769319087266922, -0.18146441876888275, 0.037050314247608185, 0.02393336221575737, -0.01198210846632719, -0.09691227227449417, -0.033694688230752945, 0.030596453696489334, 0.02854584902524948, -0.12254070490598679, -0.10475685447454453, 0.04651162028312683, 0.10092105716466904, -0.08814555406570435, 0.023370904847979546, 0.12211282551288605, 0.10669166594743729, -0.036692578345537186, -0.00661219097673893, -0.013447796925902367, 0.0875028520822525, -0.19012871384620667, 0.18635985255241394, 0.025802413001656532, -0.017753995954990387, 0.12226416915655136, -0.03929881006479263, 0.18652038276195526, -0.014582429081201553, -0.023668840527534485, -0.19762995839118958, -0.08247662335634232, -0.05027048662304878, 0.08810286223888397, -0.0975903794169426, -0.06416216492652893, -0.13129501044750214, -0.13529758155345917, -0.0587509386241436, 0.10622545331716537, -0.017739085480570793, -0.07650701701641083, 0.04542118310928345, 0.030565131455659866, 0.13187327980995178, -0.1151508092880249, -0.035979632288217545, 0.05368482694029808, -0.0006132288253866136, -0.011296257376670837, 0.02668662741780281, -0.011818904429674149, -0.05268925428390503, -0.03467605635523796, 0.026736564934253693, -0.10981089621782303, -0.05043074116110802, -0.0003170916752424091, 0.09857378900051117, -0.021085195243358612, -0.0032600359991192818, -0.06748858839273453, 0.1865306943655014, -0.09019990265369415, 0.00770457461476326, 0.0117966802790761, 0.01724402979016304, 0.07301956415176392, -0.05980096757411957, -0.016064615920186043, 0.0068783387541770935, -0.07722952961921692, 0.024523073807358742, 0.022628245875239372, 0.08515101671218872, 0.14031964540481567, 0.029215876013040543, -0.06612657010555267, 0.027334943413734436, 0.00777897983789444, -0.025214919820427895, -0.11325318366289139, 0.11595171689987183, 0.01673038676381111, 0.06250305473804474, -0.04550043120980263, 0.00013839495659340173, 0.021053019911050797, 0.012854724191129208, -0.1224941685795784, -0.05526898801326752, 0.1170065850019455, -0.05100555345416069, 0.03174608200788498, 0.023802990093827248, -0.11757801473140717, 0.010520338080823421, 0.12265681475400925, -0.1333453506231308, -0.08365295082330704, 0.11975494027137756, 0.10965152084827423, 0.07793843001127243, 0.08757608383893967, 0.018880043178796768, -0.04758865013718605, 0.0715937614440918, -0.0007999149383977056, 0.10993073880672455, -0.10249418765306473, -0.17828068137168884, -0.09972349554300308, 0.11869587749242783, -0.07693301141262054, 0.010337642394006252, 0.05041779950261116, -0.0931234136223793, -0.03725595399737358, -0.0020794894080609083, 0.03751431405544281, 0.10067769885063171, -0.026078201830387115, -0.024536067619919777, -0.061415333300828934, -0.02179795876145363, -0.06267236918210983, 0.0038944126572459936, 0.010672875680029392, 0.1704603135585785, 0.01295513566583395, -0.0427606925368309, 0.1164446696639061, -0.14372378587722778, 0.05566949024796486, 0.013030106201767921, -0.028256995603442192, 0.008078007027506828, 0.008893661201000214, -0.09753469377756119, -0.04746747016906738, 0.05313152074813843, -0.0691998153924942, -0.08672531694173813, 0.14302311837673187, 0.0034490590915083885, 0.0577421672642231, -0.10920458287000656, 0.09359399229288101, -0.09535998851060867, 0.05419669300317764, -0.018140822649002075, -0.03154674172401428, 0.12377244234085083, 0.04552312195301056, 0.051422473043203354, 0.05599597841501236, 0.030197711661458015, -0.07669122517108917, 0.10510612279176712, -0.06328323483467102, -0.011525734327733517, -0.03123844601213932, -0.06647267937660217, 0.05072939023375511, -0.10924182087182999, -0.10251586884260178, 0.06662403047084808, -0.003071103012189269, 0.05697115510702133, -0.04509519413113594, -0.11266122758388519, -0.04340241849422455, -0.010947979055345058, 0.01750337705016136, -0.10003440827131271, 0.02054755575954914, 0.11144238710403442, 0.07796589285135269, -0.0840488001704216, -0.16720430552959442, -0.04502187296748161, 0.028513699769973755, -0.13277184963226318, 0.04185602068901062, -0.06269033998250961, -0.15037751197814941, -0.047507137060165405, 0.1052953377366066, 0.020045841112732887, 0.023213017731904984, 0.062209319323301315, -0.01901676319539547, -0.03478531539440155, 0.053689394146203995, -0.12614141404628754, -0.08854160457849503, 0.05974738299846649, 0.03962515667080879, -0.21372252702713013, 0.06154801696538925, 0.0981522649526596, -0.0028114519082009792, -0.01517097931355238, -0.05804171413183212, 0.04194525256752968, 0.004633517004549503, 0.07750533521175385, 0.06509760022163391, -0.05583055317401886, 0.024690033867955208, 0.07225504517555237, 0.16380400955677032, -0.03260520100593567, 0.11191285401582718, 0.06707361340522766, -0.03735982999205589, -0.02942759171128273, 0.0797375738620758, 0.08628320693969727, -0.04103836044669151, 0.018088392913341522, -0.019781386479735374, 0.043492529541254044, 0.01853158138692379, 0.09690260142087936, -0.08519147336483002, 0.022096754983067513, 0.03433401882648468, 0.007438692729920149, 0.10071394592523575, 0.1147206723690033, -0.04826872795820236, 0.07186732441186905, 0.05109747126698494, 0.049949076026678085, 0.10341616719961166, -0.030230900272727013, 0.027239292860031128, 0.009146742522716522, 0.04507123678922653, 0.004309706389904022, 0.0754159539937973, 0.01721344329416752, -0.19503530859947205, 0.04807793349027634, 0.04050145670771599, 0.04399349167943001, -0.14665721356868744, -0.11548791080713272, -0.030891792848706245, 0.08928404003381729, 0.04653165861964226, -0.17026858031749725, -0.06116830185055733, 0.059981927275657654, -0.0499412976205349, 0.03481144458055496, 0.07404075562953949, -0.038478124886751175, 0.06706441938877106, 0.09466278553009033, 0.06394987553358078, -0.0205058716237545, 0.08319041877985, 0.13541670143604279, 0.03523770347237587, -0.02220022864639759, -0.04499039426445961, -0.09545349329710007, 0.023316247388720512, 0.07221398502588272, -0.030158445239067078, -0.004859535489231348, 0.02537987194955349, 0.07496067881584167, 0.07863768190145493, 0.03698647767305374, 0.08940479159355164, -0.01163941528648138, 0.16461795568466187], -fcmp:[0.11230439692735672, -0.061453960835933685, 0.013421649113297462, -0.0470321923494339, 0.001026496640406549, -0.011976334266364574, 0.10497532784938812, 0.14521688222885132, -0.005365661345422268, -0.10501186549663544, -0.10605558007955551, -0.017889397218823433, 0.05959142744541168, -0.004239733796566725, 0.029549991711974144, -0.018216749653220177, 0.0017761730123311281, -0.07343057543039322, 0.029326220974326134, 0.058988023549318314, 0.05420537292957306, -0.025116758421063423, 0.03617945685982704, -0.015235880389809608, -0.002022706437855959, -0.08772329986095428, -0.036352869123220444, -0.0068028587847948074, -0.0007028259569779038, 0.13878999650478363, 0.06783125549554825, 0.04762997478246689, 0.09442378580570221, 0.0477219894528389, 0.07753699272871017, 0.13872484862804413, -0.04289325699210167, -0.048236358910799026, 0.019458862021565437, -0.018423525616526604, 0.0760004073381424, 0.15739719569683075, -0.04038187488913536, -0.007446950767189264, -0.002497901674360037, -0.004508894868195057, -0.0028731063939630985, -0.058400630950927734, 0.07147423923015594, 0.00894242525100708, 0.10441593080759048, -0.015112551860511303, -0.11638495326042175, 0.06280394643545151, -0.09099415689706802, -0.034988123923540115, -0.08226846903562546, -0.09725066274404526, -0.023280370980501175, 0.09989189356565475, -0.10540615022182465, -0.07158462703227997, 0.045777495950460434, 0.07290662080049515, 0.11610370129346848, -0.11438627541065216, 0.0927056297659874, 0.05784263834357262, -0.0008807234116829932, -0.020438510924577713, 0.01096991915255785, -0.09823451936244965, -0.00028465923969633877, 0.012933130376040936, 0.055548254400491714, 0.056637782603502274, -0.005040260963141918, 0.16920335590839386, 0.08292470872402191, 0.15182596445083618, 0.013472956605255604, 0.03934035077691078, 0.09418345242738724, -0.15880714356899261, 0.09984271973371506, 0.04954458028078079, 0.01708611473441124, 0.05382656306028366, -0.07047948986291885, -0.06268104165792465, -0.0014761518687009811, 0.0383397713303566, 0.07045866549015045, -0.08116637915372849, -0.011898213997483253, 0.10924485325813293, -0.0026932107284665108, 0.01988530531525612, -0.056843604892492294, 0.029482247307896614, 0.13247054815292358, -0.06461303681135178, -0.06828567385673523, -0.06767072528600693, 0.06937932968139648, -0.07842061668634415, 0.02925698086619377, 0.06790657341480255, 0.04876512661576271, -0.07333450019359589, -0.0171717070043087, 0.057499926537275314, -0.04978911206126213, 0.06696537137031555, 0.06099376082420349, -0.07791189849376678, 0.03213411569595337, -0.08838877826929092, 0.07640392333269119, 0.017097394913434982, 0.030894247815012932, 0.09690382331609726, 0.13234378397464752, 0.02364184521138668, 0.014465786516666412, 0.006236489396542311, 0.05266430228948593, -0.01997976563870907, 0.09125035256147385, -0.05396738648414612, -0.053444646298885345, 0.06574197858572006, 0.11513158679008484, -0.08147567510604858, -0.043190740048885345, 0.03265886753797531, 0.07102648913860321, 0.05994307994842529, -0.08424832671880722, 0.010152703151106834, 0.10810153931379318, 0.12794019281864166, 0.08703051507472992, -0.10278495401144028, 0.05355144664645195, -0.05912086367607117, -0.019495923072099686, -0.02330935373902321, 0.010930708609521389, 0.08189336210489273, -0.06353361159563065, 0.09217509627342224, -0.02740156464278698, -0.011209755204617977, 0.05590538680553436, -0.013592928647994995, -0.019994676113128662, -0.08271321654319763, -0.07040385156869888, 0.027286827564239502, 0.04272102564573288, 0.11861824989318848, -0.1048387661576271, -0.06762570142745972, -0.022241761907935143, 0.0037486993242055178, 0.0018369355238974094, 0.0842353031039238, -0.10563533753156662, 0.1518796980381012, -0.07256551086902618, -0.008479250594973564, 0.09437364339828491, 0.015596029348671436, -0.03130314126610756, 0.17861638963222504, -0.04152786359190941, -0.08478054404258728, 0.11379985511302948, -0.07203519344329834, 0.10992981493473053, -0.011935578659176826, 0.04945237189531326, 0.15268388390541077, -0.1594005823135376, -0.09195281565189362, 0.02582882158458233, 0.021991092711687088, 0.05743132159113884, -0.13125552237033844, -0.06640219688415527, 0.11037932336330414, -0.05770222470164299, 0.14386476576328278, -0.09813332557678223, -0.15253767371177673, 0.08448446542024612, 0.028666526079177856, -0.07408151775598526, -0.12383352220058441, 0.0046990192495286465, 0.07172483950853348, 0.15477196872234344, 0.035086676478385925, 0.021275872364640236, 0.03637343645095825, 0.11187256127595901, -0.006826034281402826, 0.014265206642448902, 0.009000188671052456, 0.07686174660921097, -0.011637335643172264, 0.004478067625313997, 0.1011500135064125, 0.012212256900966167, -0.11561260372400284, 0.06959901005029678, 0.008147637359797955, -0.073117196559906, -0.09191086888313293, 0.09363043308258057, 0.002356192795559764, -0.0666307732462883, -0.11804080009460449, 0.01427708100527525, 0.07935607433319092, 0.053907252848148346, 0.021147632971405983, -0.043086905032396317, 0.020155789330601692, 0.05820092558860779, 0.18315914273262024, -0.013397935777902603, -0.016003606840968132, -0.0986722856760025, -0.07050580531358719, 0.031187430024147034, 0.022728195413947105, -0.07712362706661224, -0.07032507658004761, 0.054653726518154144, -0.018789445981383324, 0.031158054247498512, 0.10929018259048462, 0.08833730220794678, 0.1155087947845459, 0.10643351823091507, 0.0885758176445961, 0.00533693702891469, -0.05960679426789284, 0.10150711983442307, -0.047194190323352814, -0.18369248509407043, -0.03964246064424515, 0.0679030641913414, -0.027196064591407776, -0.06930137425661087, -0.05791747570037842, 0.0022541999351233244, -0.0021469483617693186, 0.011326036415994167, -0.02446204237639904, 0.016144583001732826, -0.025311317294836044, 0.08845330029726028, 0.09966526180505753, 0.03846494108438492, -0.142354816198349, -0.10130951553583145, -0.025571534410119057, 0.01960897073149681, 0.03803345561027527, -0.013352814130485058, -0.07920455187559128, 0.15177133679389954, -0.09825986623764038, 0.036166004836559296, 0.0989442765712738, 0.08603323251008987, 0.05743665248155594, -0.00765369925647974, -0.023252401500940323, 0.11654838174581528, 0.08564062416553497, 0.1086917445063591, 0.017648912966251373, -0.04031575471162796, -0.071695975959301, -0.15400773286819458, -0.03185746818780899, 0.001151394098997116, 0.13461755216121674, -0.15828481316566467, -0.0214094091206789, 0.0791286900639534, 0.05652361735701561, 0.0035060327500104904, 0.08643168210983276, -0.06951306015253067, 0.0400504544377327], -fdiv:[-0.04802098870277405, 0.11095680296421051, -0.0025237025693058968, -0.07858984172344208, 0.014147174544632435, -0.007182531990110874, -0.024873673915863037, -0.07881682366132736, -0.006535619497299194, 0.046252477914094925, -0.025896888226270676, 0.013006928376853466, 0.08125850558280945, -0.039463259279727936, 0.000239302302361466, 0.08953646570444107, 0.00948681216686964, 0.148715540766716, 0.02330513298511505, -0.01741505041718483, 0.06611528247594833, -0.027842333540320396, 0.038202594965696335, 0.019828692078590393, -0.014796542935073376, -0.09258145093917847, -0.037940479815006256, -0.004701359663158655, 0.033592339605093, 0.11194506287574768, 0.09131664037704468, -0.1348377913236618, 0.10312364995479584, -0.093864805996418, 0.018115002661943436, 0.10070029646158218, 0.14218991994857788, -0.0038742467295378447, 0.0005138613632880151, 0.08906885981559753, -0.011063779704272747, -0.11536368727684021, 0.012261442840099335, -0.12535220384597778, -0.010389985516667366, 0.11553633213043213, 0.09872417896986008, -0.10082238167524338, -0.010035577230155468, 0.09518921375274658, 0.1632167249917984, -0.023935256525874138, -0.16455255448818207, 0.10966528952121735, -0.11536434292793274, -0.12255879491567612, -0.03261808305978775, -0.06926587969064713, -0.11089293658733368, 0.10367885231971741, 0.06704723089933395, -0.10999277979135513, 0.08262863010168076, 0.026514891535043716, 0.11907870322465897, -0.11545734852552414, -0.05216285213828087, 0.10942231118679047, -0.004261628724634647, -0.027275318279862404, 0.009345888160169125, -0.023007340729236603, -0.01149422861635685, -0.07405753433704376, -0.03924117609858513, -0.12067762762308121, 0.1781739592552185, 0.012928888201713562, -0.04640840366482735, -0.033650580793619156, 0.10678955912590027, -0.054492417722940445, 0.10503558814525604, -0.082411028444767, -0.011726374737918377, 0.06099269166588783, -0.04535827785730362, 0.007308741100132465, -0.10540857911109924, -0.058121342211961746, -0.0072111268527805805, 0.02875359170138836, -0.010868963785469532, 0.017905190587043762, -0.10084928572177887, 0.08729754388332367, 0.02915569208562374, -0.05471552163362503, 0.018808772787451744, 0.010770785622298717, -0.14247019588947296, -0.12574100494384766, -0.07628040015697479, 0.05358550325036049, 0.04782132804393768, -0.10244785994291306, 0.024081118404865265, 0.042714983224868774, 0.16643068194389343, -0.12076088786125183, 0.0671524927020073, -0.03302772343158722, -0.06475106626749039, 0.040864475071430206, 0.03575042635202408, 0.05370547994971275, 0.02436734363436699, 0.0038272629026323557, -0.14280281960964203, -0.03715691342949867, -0.022925570607185364, 0.10092975944280624, 0.0755191519856453, 0.17610503733158112, 0.007519497070461512, 0.027121640741825104, 0.017394348978996277, 0.07499663531780243, 0.031556013971567154, -0.0973348394036293, -0.07576370239257812, -0.0792311504483223, 0.11765474081039429, 0.034994374960660934, 0.012832560576498508, 0.008893920108675957, 0.06603629142045975, -0.03532254695892334, -0.00260879541747272, 0.04538114368915558, -0.02017906680703163, -0.027172906324267387, -0.1131197139620781, -0.05367328226566315, 0.05626189708709717, -0.061021920293569565, 0.019804783165454865, -0.025862032547593117, -0.04235205426812172, 0.0009148626122623682, 0.047793108969926834, 0.11475128680467606, 0.060844067484140396, 0.0028446842916309834, 0.1009717658162117, -0.030739208683371544, 0.007710332050919533, 0.05789446085691452, -0.09310983121395111, 0.026981208473443985, 0.04449004307389259, 0.022557079792022705, -0.08150894939899445, -0.05657239258289337, 0.007975684478878975, 0.04053685441613197, 0.00531553803011775, 0.08634757995605469, -0.08205470442771912, -0.10135027021169662, -0.07875853776931763, -0.024348264560103416, 0.11220192164182663, -0.011815990321338177, -0.03506011515855789, 0.05322675034403801, 0.09524895250797272, -0.06772787123918533, 0.11849883943796158, -0.07318981736898422, -0.01641288585960865, -0.014187281019985676, -0.07216165959835052, -0.23708544671535492, 0.03168802335858345, -0.09697742015123367, -0.017777709290385246, -0.014993542805314064, 0.04489091411232948, -0.006664854474365711, -0.12363610416650772, -0.04250176250934601, 0.013066569343209267, 0.013171432539820671, -0.10883352160453796, -0.13745994865894318, -0.09903869777917862, -0.07066609710454941, -0.07698109745979309, -0.10814940929412842, -0.06300901621580124, -0.057564299553632736, 0.12024042010307312, 0.021383406594395638, -0.06264651566743851, 0.05344178527593613, -0.16277329623699188, 0.11278191953897476, 0.02200213447213173, 0.03197003901004791, 0.07541368901729584, 0.03681636229157448, -0.03722868114709854, 0.0454312339425087, -0.06276204437017441, 0.028864730149507523, 0.06020127981901169, -0.11177824437618256, -0.11390663683414459, 0.12246961891651154, 0.10513244569301605, -0.029238978400826454, -0.08361655473709106, 0.006309198215603828, 0.04567313194274902, 0.02325255610048771, 0.024474844336509705, 0.012556557543575764, -0.06085710972547531, 0.023738032206892967, -0.03742659091949463, 0.09556185454130173, -0.03370232507586479, 0.0768951028585434, -0.027934890240430832, -0.035035766661167145, 0.06288391351699829, -0.01981395110487938, -0.010949413292109966, -0.03802088275551796, -0.11159063130617142, -0.01871446892619133, 0.044845081865787506, 0.11327429115772247, 0.06266874074935913, 0.04067094251513481, 0.020693205296993256, 0.09972041845321655, 0.04454571753740311, 0.09894610941410065, -0.027281513437628746, -0.046548884361982346, -0.06820130348205566, -0.13954652845859528, -0.0340898260474205, -0.019452501088380814, -0.10826775431632996, -0.029127830639481544, 0.0640462338924408, -0.07711517065763474, -0.028804756700992584, -0.05834531784057617, 0.041891440749168396, 0.017689242959022522, 0.02248505875468254, 0.0558796264231205, 0.0365527868270874, -0.14359158277511597, -0.11138889193534851, -0.02263912558555603, 0.08547336608171463, 0.045451819896698, -0.1467951238155365, -0.03944536671042442, -0.023566408082842827, -0.1094873771071434, 0.03636787831783295, 0.08023682236671448, -0.09303520619869232, 0.060521408915519714, 0.05569318309426308, -0.0010133085306733847, 0.19446004927158356, 0.14207923412322998, 0.09608273953199387, 1.7784412193577737e-05, 0.1057179719209671, -0.04737482964992523, 0.12534432113170624, 0.13680410385131836, 0.12460143864154816, 0.10344614088535309, -0.0975644662976265, 0.023407787084579468, 0.14859215915203094, 0.053247030824422836, 0.030895281583070755, -0.09192633628845215, -0.013395244255661964, -0.08734242618083954], -floatTy:[-0.025713283568620682, 0.012364408001303673, -0.0797799602150917, -0.11362140625715256, -0.08753057569265366, 0.10967350751161575, -0.08590028434991837, 0.01021300908178091, 0.029220882803201675, 0.11557108908891678, 0.04707400128245354, 0.007398644462227821, -0.07134965807199478, 0.01169736497104168, -0.07708293199539185, 0.1084323599934578, 0.102112777531147, -0.07491894066333771, 0.019768381491303444, 0.037549570202827454, -0.10927356779575348, -0.03574167191982269, -0.0912386029958725, 0.10336687415838242, 0.12892308831214905, 0.0797157883644104, -0.0892355740070343, -0.10439107567071915, -0.09495560079813004, -0.09674295783042908, 0.13774757087230682, -0.049523767083883286, -0.08763834834098816, -0.1418793797492981, 0.05782826989889145, -0.028374221175909042, -0.054471664130687714, 0.06453529745340347, 0.05844778195023537, -0.039331018924713135, -0.058552954345941544, -0.038093239068984985, 0.036933280527591705, -0.10425498336553574, -0.0904831513762474, -0.0940266028046608, -0.017594780772924423, 0.014289659447968006, -0.03518997132778168, 0.16413991153240204, -0.01839967630803585, -0.009730306454002857, 0.03925254940986633, 0.1050661951303482, -0.09000197798013687, 0.015157910995185375, -0.023016195744276047, -0.12215640395879745, 0.024649186059832573, -0.05076929181814194, 0.048250868916511536, 0.09244391322135925, -0.10903946310281754, 0.08632117509841919, -0.00715932622551918, -0.020005768164992332, -0.031417787075042725, 0.044837869703769684, 0.1084430068731308, 0.08613358438014984, 0.08922110497951508, 0.08763985335826874, -0.098876953125, -0.13141731917858124, 0.08663186430931091, 0.01022946648299694, 0.059272389858961105, 0.02258826047182083, 0.04336808994412422, 0.014427663758397102, 0.061857920140028, -0.06228458136320114, 0.03645794838666916, 0.060068584978580475, -0.045787129551172256, -0.048520706593990326, -0.07075124233961105, 0.0963488221168518, 0.010821808129549026, 0.10918792337179184, 0.1067909374833107, -0.0984255000948906, -0.03668754920363426, -0.016424505040049553, 0.039125412702560425, 0.09328264743089676, 0.09314072877168655, -0.05332217365503311, -0.1344689428806305, -0.12300685048103333, -0.050589848309755325, 0.04553396254777908, 0.04646126553416252, 0.02043534442782402, -0.048844728618860245, 0.08187616616487503, -0.09350348263978958, -0.06303873658180237, -0.047024693340063095, 0.018466992303729057, 0.010478760115802288, 0.012972197495400906, 0.10137902200222015, 0.12231859564781189, -0.1034437045454979, 0.0993313193321228, -0.017312705516815186, 0.010340441018342972, -0.04383024200797081, 0.05239417031407356, 0.09628832340240479, -0.010713465511798859, -0.05205893889069557, 0.05720585212111473, -0.10662011802196503, 0.028561139479279518, 0.11352299898862839, 0.13006210327148438, -0.07245297729969025, -0.02522912062704563, 0.023208221420645714, -0.07871191203594208, -0.04037517309188843, 0.01432068832218647, -0.077505923807621, 0.08138569444417953, -0.07983110845088959, -0.0936613604426384, -0.04671810194849968, 0.04082751274108887, -0.10330431908369064, -0.03235860913991928, -0.03844553977251053, 0.07243959605693817, -0.00957169197499752, 0.10093799233436584, 0.008811922743916512, -0.05881946533918381, -0.029846495017409325, -0.1052137240767479, 0.08231991529464722, -0.004126253537833691, -0.020959993824362755, 0.03122352622449398, -0.05275110527873039, 0.07623008638620377, -0.15124115347862244, -0.027277594432234764, 0.08568016439676285, 0.11223314702510834, -0.07375197112560272, 0.0900455042719841, 0.02490280568599701, 0.014875832013785839, -0.10307639837265015, 0.1096028983592987, 0.002899285638704896, -0.04578065872192383, 0.09149084985256195, 0.03914046287536621, -0.1337219476699829, -0.05573839321732521, -0.04553132504224777, -0.06473633646965027, 0.04610992595553398, 0.022045118734240532, 0.08350244909524918, 0.09162097424268723, -0.04661554470658302, 0.11206848174333572, 0.06685185432434082, 0.02348964847624302, 0.08556530624628067, 0.03115527704358101, -0.03250017389655113, 0.08009105920791626, 0.0050246575847268105, 0.05088568106293678, -0.08290685713291168, 0.12363442778587341, -0.15302185714244843, 0.08633668720722198, 0.021501101553440094, -0.0479436069726944, 0.03348416090011597, 0.1361701935529709, -0.005697354674339294, -0.09162890911102295, -0.013708616606891155, -0.022322459146380424, -0.08650252968072891, -0.03178732842206955, -0.062018491327762604, -0.035097651183605194, 0.08232517540454865, 0.004510043188929558, -0.022956976667046547, -0.09571240097284317, 0.05273003503680229, 0.0961063802242279, 0.10586803406476974, -0.10133197158575058, -0.014005329459905624, 0.029732074588537216, -0.00577067956328392, -0.056918915361166, -0.043217744678258896, -0.03636148199439049, -0.030687745660543442, 0.0547490231692791, -0.10584627836942673, -0.08603931963443756, 0.006118499208241701, 0.001722083892673254, 0.007220743224024773, 0.06637351214885712, -0.08974432200193405, 0.1005215272307396, -0.08039586991071701, -0.1073014959692955, 0.013842668384313583, 0.02373422123491764, 0.09011711180210114, -0.03986714035272598, 0.11124449223279953, 0.09555024653673172, 0.07510752975940704, 0.11558317393064499, -0.0841783732175827, 0.11569256335496902, -0.10372401773929596, 0.1146174892783165, 0.12567836046218872, -0.07560541480779648, -0.07239726185798645, -0.014692463912069798, 0.076491579413414, 0.023639926686882973, -0.0036118440330028534, -0.0007532659801654518, -0.030695924535393715, -0.0439746268093586, -0.023114008828997612, 0.024532746523618698, -0.10584528744220734, -0.022501716390252113, -0.0623088963329792, 0.044360484927892685, 0.09229003638029099, 0.09475396573543549, -0.03822612389922142, -0.0014032464241608977, 0.09597000479698181, 0.03491046279668808, 0.06850888580083847, -0.10352834314107895, 0.11126533895730972, 0.05505402386188507, 0.08085410296916962, 0.06169968098402023, -0.08653154224157333, 0.06524930149316788, -0.006514640990644693, 0.0101646538823843, -0.09630486369132996, -0.14745701849460602, -0.04607938602566719, -0.10269691795110703, 0.07133394479751587, 0.012212913483381271, -0.05582350865006447, -0.08795271813869476, 0.03185780718922615, -0.06778469681739807, -0.13595087826251984, 0.06845277547836304, 0.08397927135229111, 0.10593266040086746, -0.05205875635147095, 0.06465762853622437, -0.02727239392697811, 0.028350340202450752, 0.05614946410059929, -0.041205618530511856, 0.0854448601603508, -0.09924159944057465, 0.07339443266391754, 0.04578109458088875, 0.09279000014066696, -0.009449435397982597], -fmul:[0.10291722416877747, 0.012278737500309944, 0.008649703115224838, -0.06665170937776566, 0.021804790943861008, -0.0004265432944521308, 0.07630026340484619, 0.01084901299327612, -0.17343777418136597, -0.12243405729532242, -0.038214363157749176, 0.007759198546409607, 0.06536160409450531, -0.10577486455440521, 0.07547971606254578, -0.06612188369035721, -0.009902562946081161, 0.10548944771289825, -0.24700114130973816, -0.004289393313229084, 0.0795641764998436, -0.08885905146598816, 0.027978822588920593, 0.036208026111125946, -0.026895351707935333, 0.015372289344668388, -0.033705949783325195, 0.009058348834514618, 0.029484231024980545, 0.12033724039793015, 0.08536440879106522, 0.061275411397218704, 0.12430817633867264, -0.11883047223091125, -0.022227855399250984, 0.07158027589321136, 0.10519202798604965, 0.07183249294757843, -0.01240879949182272, 0.10906492918729782, 0.10414250195026398, -0.034594859927892685, 0.027091411873698235, 0.07089636474847794, -0.010740221478044987, 0.10682974010705948, 0.08848659694194794, 0.039890680462121964, 0.15927986800670624, 0.04588183015584946, -0.033255960792303085, 0.009284695610404015, 0.03255920857191086, -0.021161803975701332, -0.08717688918113708, -0.11497949063777924, -0.039357684552669525, -0.04768188297748566, -0.11375748366117477, 0.09705547988414764, 0.04509471729397774, -0.0722138062119484, 0.08228780329227448, 0.025955550372600555, 0.1040150374174118, -0.10495594888925552, 0.011137339286506176, -0.08243118971586227, -0.002791058272123337, 0.050157513469457626, 0.019407708197832108, -0.028624264523386955, -0.06198396533727646, -0.06965319067239761, -0.025899726897478104, 0.048173390328884125, 0.11117315292358398, 0.06604903191328049, 0.08022914826869965, -0.032689169049263, -0.004935864359140396, 0.0015925661427900195, 0.06437259912490845, -0.08343591541051865, -0.0003829322231467813, 0.07461431622505188, -0.04743935167789459, 0.046319615095853806, 0.036804914474487305, -0.014654840342700481, -0.06051839515566826, 0.03605388477444649, 0.1028142049908638, -0.03927701339125633, 0.018684562295675278, 0.04828695207834244, 0.024427635595202446, -0.05958876013755798, 0.021564003080129623, -0.04700588062405586, -0.12529274821281433, -0.07163332402706146, -0.057263121008872986, 0.01797390542924404, -0.06841013580560684, -0.07469303905963898, 0.0040237559005618095, 0.10389862954616547, 0.05005829408764839, -0.11406330019235611, 0.10054676234722137, 0.06888049095869064, -0.08066114783287048, 0.07716487348079681, 0.033158063888549805, 0.04819236695766449, -0.030249925330281258, -0.026601236313581467, -0.13413067162036896, -0.03449708968400955, 0.022510064765810966, 0.08694444596767426, 0.080880306661129, 0.1496570110321045, 0.03833351656794548, 0.10434841364622116, 0.034652017056941986, -0.06805861741304398, 0.007112970110028982, -0.058259911835193634, 0.09885511547327042, -0.043995436280965805, 0.10925508290529251, 0.0005279526230879128, 0.01094200648367405, -0.0021100447047501802, 0.05935001000761986, 0.052882153540849686, -0.0654156431555748, 0.026445260271430016, 0.11722587794065475, 0.08446262776851654, -0.0235042292624712, 0.0821780189871788, 0.0435270331799984, -0.05792529508471489, -0.006726906634867191, 0.00117613491602242, -0.08106663823127747, 0.0005481349071487784, -0.0935293510556221, 0.09690828621387482, 0.02215050533413887, -0.09792914986610413, 0.07568904757499695, -0.025772789493203163, 0.0045947544276714325, -0.06391096860170364, -0.0977858230471611, 0.027937104925513268, 0.04782005399465561, 0.10971518605947495, -0.09736496210098267, -0.10778304189443588, 0.0060079339891672134, 0.11743813008069992, 0.004844506271183491, 0.08684423565864563, -0.10085862874984741, 0.043240148574113846, -0.0878843367099762, -0.04714709892868996, 0.11250372976064682, 0.04365594685077667, -0.016135692596435547, 0.010722688399255276, 0.028647737577557564, -0.042769234627485275, 0.08568640053272247, -0.07265700399875641, -0.017785869538784027, -0.02477969601750374, -0.07555331289768219, -0.021760692819952965, 0.03544376790523529, -0.06010429188609123, -0.1600624918937683, -0.015326685272157192, -0.0646781176328659, 0.03937476873397827, 0.056173715740442276, -0.04817213863134384, -0.028905531391501427, 0.015599031932651997, -0.06617421656847, 0.027300896123051643, -0.08713182806968689, 0.17646010220050812, -0.07455649971961975, -0.09991678595542908, -0.08375462889671326, 0.08350116014480591, 0.11266083270311356, 0.07310356199741364, 0.025651229545474052, 0.018919212743639946, -0.042882975190877914, 0.09522318094968796, -0.029548218473792076, 0.03078821860253811, 0.05569760501384735, 0.02957714907824993, -0.02961338311433792, 0.04663817584514618, 0.013018160127103329, -0.06539472192525864, 0.057660020887851715, -0.027520429342985153, 0.02694307267665863, 0.04608633741736412, 0.09247191250324249, -0.020133161917328835, -0.08109233528375626, 0.017218006774783134, 0.18449479341506958, 0.023421505466103554, 0.01208675466477871, 0.05093266814947128, -0.04967496916651726, 0.02085217274725437, -0.08495450764894485, -0.09943311661481857, -0.11306287348270416, -0.10264068841934204, -0.02131553739309311, -0.034625642001628876, 0.04526593163609505, -0.10698479413986206, -0.007304361090064049, -0.036551766097545624, -0.07899705320596695, 0.08987707644701004, 0.04530205950140953, 0.11016879230737686, -0.10966747999191284, -0.08497264236211777, 0.019157886505126953, -0.11836862564086914, 0.12340373545885086, 0.08781478554010391, -0.00882837176322937, -0.04902711510658264, -0.019483499228954315, 0.05614006891846657, -0.029819119721651077, 0.13149257004261017, 0.05979149416089058, 0.0011032107286155224, 0.08729957789182663, 0.07009684294462204, -0.011909504421055317, -0.052536241710186005, 0.03651103377342224, -0.04458906501531601, 0.03647201880812645, 0.05873088166117668, 0.03794090449810028, -0.13244526088237762, -0.10476316511631012, 0.0835222378373146, 0.1336662471294403, 0.06800135225057602, 0.09798292815685272, -0.11128661781549454, 0.06777485460042953, -0.0930275097489357, 0.08225356787443161, 0.0023907290305942297, -0.10020019114017487, 0.05227481573820114, 0.015748776495456696, 0.07400096207857132, 0.0051150089129805565, 0.06673325598239899, 0.03469280153512955, -0.004499662667512894, -0.056773193180561066, -0.030416296795010567, -0.03125062212347984, 0.045705296099185944, 0.09170305728912354, -0.05653891712427139, -0.12579122185707092, 0.04085293784737587, 0.0643920972943306, 0.025937972590327263, 0.03083929233253002, -0.0550101213157177, 0.12223165482282639, -0.05196494609117508], -fneg:[0.10540662705898285, 0.11033086478710175, -0.04121791571378708, -0.0642407238483429, -0.030539557337760925, -0.011322282254695892, 0.09833654016256332, 0.20241805911064148, -0.049618788063526154, -0.006401399150490761, -0.1402771770954132, 0.010205675847828388, 0.05817562714219093, -0.020143676549196243, 0.06101606786251068, 0.13236263394355774, 0.009412231855094433, -0.008125782944262028, 0.03041008859872818, -0.10502491146326065, -0.03291315957903862, -0.0460330955684185, 0.034421224147081375, -0.036436453461647034, 0.011259161867201328, -0.10563135892152786, -0.05474153533577919, -0.0003164673689752817, -0.12433885782957077, 0.09021513164043427, 0.06031748652458191, 0.04187916964292526, -0.03577582910656929, -0.031154923141002655, 0.030637558549642563, 0.10511676967144012, 0.0641859620809555, 0.05670558661222458, -0.0659048780798912, -0.056636761873960495, 0.07968935370445251, -0.04814383015036583, 0.12216276675462723, 0.012263888493180275, -0.011712289415299892, 0.09601662307977676, -0.06932487338781357, -0.09499455243349075, 0.01264782715588808, 0.009697483852505684, 0.1571713238954544, 0.08406149595975876, 0.06917862594127655, 0.00848814845085144, -0.08524714410305023, -0.05642988160252571, -0.06240266188979149, -0.1261109709739685, -0.06306996196508408, 0.09569492191076279, 0.07789351791143417, 0.02483377791941166, 0.03965546935796738, 0.03577890619635582, 0.10918709635734558, -0.06424850225448608, -0.026495443657040596, -0.012179265730082989, 0.0021131427492946386, -0.024013163521885872, 0.07162273675203323, -0.010653226636350155, -0.022031744942069054, -0.05405930057168007, 0.043569568544626236, -0.023763559758663177, 0.06552807241678238, 0.01547874603420496, 0.1354205161333084, -0.01363404467701912, -0.0058509670197963715, 0.03921050950884819, 0.015162700787186623, -0.04514934495091438, -0.08014186471700668, 0.09565462917089462, -0.044005606323480606, 0.12117081880569458, 0.010690049268305302, 0.008530993945896626, 0.1137457862496376, 0.00511095579713583, -0.0713452473282814, 0.1534147709608078, -0.06410106271505356, 0.10509530454874039, 0.027838457375764847, -0.00500218803063035, -0.014223838225007057, -0.10933045297861099, 0.10826665163040161, -0.0911363959312439, -0.07536306232213974, 0.006203101947903633, 0.04380902647972107, -0.09435898065567017, 0.008662845008075237, -0.06633439660072327, -0.05725763738155365, -0.08437221497297287, -0.009109260514378548, -0.007021800614893436, -0.02262069471180439, 0.01714758574962616, 0.03097011335194111, 0.08438021689653397, 0.0023065716959536076, -0.06079332157969475, -0.03339126706123352, 0.01904030703008175, -0.07819092273712158, 0.09685439616441727, -0.09714075177907944, 0.10696256160736084, 0.0038828207179903984, 0.06829464435577393, 0.11322054266929626, 0.07389224320650101, 0.05867259204387665, -0.10857922583818436, 0.07061759382486343, -0.015341498889029026, 0.11139976233243942, -0.03779585286974907, -0.03377196937799454, 0.012980000115931034, 0.083197683095932, -0.08607333898544312, 0.010187199339270592, 0.09655097872018814, -0.0027648855466395617, 0.022296689450740814, 0.021988678723573685, -0.0397099144756794, -0.053256139159202576, -0.02847968600690365, -0.09906206279993057, 0.010881517082452774, -0.08718730509281158, 0.10765015333890915, 0.06937696039676666, 0.10660678893327713, -0.021853962913155556, -0.06702953577041626, 0.13198159635066986, 0.10155043005943298, 0.10305775701999664, 0.0681271031498909, 0.10499029606580734, 0.018820153549313545, 0.07452534139156342, 0.014891400001943111, -0.04446660727262497, -0.05955010652542114, 0.08858900517225266, 0.06038734316825867, -0.027204666286706924, 0.06471920758485794, -0.10472507029771805, 0.05539264157414436, 0.0025167888961732388, -0.053541116416454315, 0.038112036883831024, 0.04591498523950577, -0.1311689168214798, 0.011451740749180317, 0.0795094221830368, -0.07826846092939377, 0.10025066882371902, -0.06890993565320969, 0.1126854419708252, -0.008966210298240185, -0.03229609876871109, -0.009055640548467636, -0.05854491516947746, 0.05391155928373337, 0.07521835714578629, -0.005870542023330927, -0.02337034046649933, -0.03824028745293617, -0.10602768510580063, 0.011476349085569382, 0.005192588549107313, 0.01363073755055666, -0.12785634398460388, 0.07118920981884003, -0.034838318824768066, -0.04002326726913452, -0.10166746377944946, -0.04739931970834732, 0.029673239216208458, 0.05313761904835701, -0.15231630206108093, 0.06025953218340874, -0.05603181943297386, -0.1502431035041809, -0.05057472363114357, 0.0948871374130249, -0.1146281510591507, 0.03440557420253754, 0.08871109038591385, -0.01036845427006483, -0.14038147032260895, 0.04351609945297241, 0.014585325494408607, -0.02042211964726448, 0.05686607211828232, 0.03637845441699028, 0.01822749897837639, 0.09116611629724503, 0.08423064649105072, -0.10752560943365097, 0.004929614253342152, 0.06919010728597641, 0.14343790709972382, 0.029358772560954094, 0.01736886240541935, 0.061590440571308136, 0.0017428745049983263, -0.032158609479665756, 0.12139852344989777, -0.082650326192379, -0.017189256846904755, 0.0617835633456707, 0.07458417862653732, -0.04356405884027481, 0.028156831860542297, -0.0021392402704805136, -0.008126580156385899, -0.00993063673377037, -0.10482612997293472, -0.02051091566681862, 0.026786822825670242, 0.11027862876653671, 0.0572073757648468, -0.0989271029829979, 0.02105524204671383, 0.10871358215808868, 0.035279639065265656, 0.0963907465338707, -0.0019793841056525707, -0.04349638894200325, -0.0017465046839788556, -0.05990547686815262, -0.0621289424598217, -0.018010232597589493, 0.0019007871160283685, -0.07047760486602783, 0.0927530825138092, 0.09107481688261032, 0.11201296001672745, -0.16155903041362762, 0.03405889496207237, -0.0072996532544493675, 0.04421565309166908, -0.05709914118051529, 0.040419917553663254, -0.1300058662891388, -0.057300351560115814, -0.02613566629588604, 0.05249977111816406, 0.042808011174201965, -0.04580926150083542, -0.0644124373793602, 0.0138912508264184, -0.07370837777853012, 0.033150844275951385, 0.11618723720312119, -0.0704527497291565, 0.04780379310250282, -0.07038813829421997, 0.0036566827911883593, 0.11923091858625412, -0.08531037718057632, 0.014248310588300228, 0.011164914816617966, 0.021706270053982735, -0.046886615455150604, -0.14515407383441925, 0.11080142855644226, 0.06030727177858353, 0.12265485525131226, -0.11570733040571213, -0.007499027531594038, 0.08823345601558685, 0.06530600041151047, -0.039341043680906296, -0.07546322047710419, -0.057774804532527924, 0.00016518213669769466], -fpext:[0.12447477132081985, -0.06483553349971771, 0.010375154204666615, -0.04474526271224022, 0.01025899313390255, -0.00664758775383234, 0.10342159867286682, 0.15261727571487427, -0.060369823127985, -0.11104925721883774, -0.06432022899389267, 0.04901476949453354, 0.0570269450545311, -0.03920930251479149, 0.1126617044210434, 0.12083309143781662, 0.03303620219230652, 0.06614892184734344, -0.13893461227416992, 0.022823957726359367, 0.04707040265202522, -0.173273965716362, 0.0376044437289238, -0.029561102390289307, -0.008345311507582664, -0.1105370819568634, -0.05775591358542442, -0.01344931311905384, -0.13328523933887482, 0.08053965866565704, -0.11757544428110123, -0.03287956491112709, 0.021364742890000343, -0.05256092548370361, 0.055578939616680145, 0.11658058315515518, -0.00802432931959629, 0.0637909397482872, -0.031678780913352966, 0.0387972891330719, 0.06381764262914658, 0.012250445783138275, 0.03030354343354702, 0.06263890117406845, -0.011670422740280628, -0.1213890016078949, 0.0879800096154213, 0.06438396871089935, 0.05666321888566017, 0.04670004919171333, -0.022350095212459564, 0.03220300376415253, -0.20083744823932648, 0.08447425812482834, -0.06839905679225922, -0.09320265054702759, -0.07412653416395187, -0.13389892876148224, -0.06408743560314178, 0.10044002532958984, -0.03811722621321678, 0.06618569791316986, -0.10713594406843185, 0.10250400751829147, -0.040123071521520615, -0.13062967360019684, -0.08623853325843811, -0.007077375892549753, -0.07481284439563751, -0.05197533592581749, 0.020933717489242554, -0.010295756161212921, 0.02414226531982422, -0.028777195140719414, -0.01300990954041481, 0.0541347973048687, -0.1325538456439972, -0.018574215471744537, 0.085397869348526, -0.01716271974146366, -0.0056609660387039185, -0.0766872689127922, 0.15086039900779724, -0.05271529033780098, -0.0007070894353091717, 0.05961129814386368, -0.05871296301484108, 0.07185221463441849, 0.1388891190290451, 0.06028374657034874, -0.09830815345048904, 0.03620017319917679, 0.052754443138837814, -0.005242026410996914, 0.07020651549100876, 0.11245742440223694, 0.005119410343468189, -0.03573385998606682, -0.011586391367018223, -0.04118279367685318, 0.012406822293996811, -0.09735448658466339, -0.06757670640945435, 0.08837713301181793, 0.013078850694000721, -0.0742310881614685, 0.002896759659051895, 0.12804313004016876, -0.08500735461711884, -0.13190077245235443, 0.1434626579284668, -0.039323799312114716, -0.025705862790346146, 0.02410283125936985, 0.00993287656456232, -0.0637243464589119, -0.020722806453704834, -0.03497301787137985, -0.11414734274148941, -0.06678412854671478, -0.06605979055166245, 0.09017418324947357, 0.09689544141292572, -0.0005476716323755682, -0.09113064408302307, 0.014854279346764088, 0.10099664330482483, 0.07256633043289185, 0.05955061689019203, -0.07876232266426086, -0.018778126686811447, 0.05792120099067688, 0.11496890336275101, -0.018852729350328445, 0.0036075732205063105, -0.05486046522855759, 0.0719415694475174, 0.0899641215801239, 0.057237107306718826, 0.1017642393708229, 0.07057347148656845, 0.1454876810312271, 0.04169762134552002, -0.0737842321395874, -0.07932053506374359, -0.055222831666469574, -0.10699815303087234, -0.0630200207233429, -0.09705395251512527, 0.10349477082490921, 0.14441616833209991, 0.11583194136619568, -0.06155536323785782, -0.03543074429035187, 0.07653098553419113, -0.02743729203939438, -0.10575990378856659, -0.0772314965724945, -0.045142412185668945, 0.011298283003270626, 0.08611834794282913, -0.08546380698680878, -0.12743431329727173, -0.07574579864740372, 0.09218500554561615, 0.10929576307535172, -0.034360602498054504, 0.07039292901754379, -0.06488599628210068, -0.025954848155379295, -0.05197882652282715, 0.10420592874288559, 0.09828297793865204, 0.1214890107512474, 0.042555298656225204, -0.03186493739485741, 0.009839016012847424, -0.10412883758544922, 0.09193026274442673, -0.07238999009132385, -0.005728779826313257, 1.2175910342193674e-05, -0.01822918839752674, -0.04140536114573479, 0.018851958215236664, -0.06072540208697319, 0.03173571079969406, -0.0029376554302871227, 0.023560278117656708, 0.04236094281077385, -0.12217865139245987, -0.06623390316963196, 0.02457195706665516, 0.016993867233395576, 0.010518515482544899, 0.06379017978906631, -0.02748049423098564, -0.04600392282009125, -0.02615032158792019, -0.00795020442456007, 0.041253965348005295, 0.09457754343748093, 0.02418695017695427, 0.06391135603189468, -0.05637238547205925, 0.03595403954386711, -0.08650530129671097, 0.09349553287029266, 0.10176929086446762, -0.07502814382314682, 0.06187153607606888, -0.014498181641101837, -0.1625269204378128, 0.05414438247680664, -0.11981425434350967, 0.058399446308612823, 0.07418561726808548, 0.03900808468461037, 0.01960870251059532, 0.023396838456392288, 0.1019892692565918, 0.077976293861866, 0.058111801743507385, 0.016410207375884056, -0.009473924525082111, 0.017567884176969528, -0.02512047067284584, 0.04930407553911209, -0.008440003730356693, -0.024374637752771378, 0.01361866295337677, 0.008054378442466259, 0.13106900453567505, 0.0695594772696495, 0.047323353588581085, -0.08042781800031662, 0.05838574469089508, -0.01259763166308403, -0.007300952915102243, 0.0008131469367071986, -0.11294854432344437, -0.01848861202597618, 0.03336981683969498, 0.10182473063468933, 0.0623127780854702, 0.12191125750541687, 0.021264465525746346, 0.05759970098733902, -0.0070682005025446415, 0.11484085023403168, -0.04974422976374626, -0.024379847571253777, -0.01457846537232399, -0.04207581281661987, 0.05672871693968773, -0.021695269271731377, 0.008943133056163788, 0.16158904135227203, 0.0411338210105896, 0.12647849321365356, 0.019679442048072815, 0.009164180606603622, 0.02598876692354679, 0.11137687414884567, -0.10778320580720901, 0.01317298598587513, 0.04998374357819557, -0.14333604276180267, -0.059543535113334656, -0.10039536654949188, 0.047615133225917816, -0.04026635363698006, 0.04552866891026497, -0.08305295556783676, -0.06151118129491806, -0.08878974616527557, 0.035177864134311676, 0.11153163015842438, 0.01209188811480999, 0.02827991545200348, 0.13376112282276154, 0.08611288666725159, 0.15056771039962769, 0.07123669236898422, -0.11414305865764618, 0.023446815088391304, -0.08690471947193146, -0.035877179354429245, -0.1114337295293808, 0.07728435844182968, 0.0779525488615036, -0.0029773388523608446, -0.14243267476558685, -8.692557457834482e-06, 0.0930522084236145, -0.044895485043525696, -0.038858503103256226, 0.07805439084768295, 0.03034065105021, -0.10710681974887848], -fptosi:[0.019437279552221298, -0.10483511537313461, 0.01618562638759613, -0.10026170313358307, 0.014513708651065826, -0.006017926149070263, -0.025619924068450928, -0.018386727198958397, 0.07640111446380615, -0.12280663847923279, -0.07494453340768814, -0.0015266635455191135, 0.08944188803434372, -0.03351648151874542, 0.04130137339234352, -0.04280763491988182, -0.009371231310069561, 0.1465107947587967, -0.023152031004428864, -0.0010918432381004095, 0.07153153419494629, 0.07708355039358139, 0.035104893147945404, 0.010702112689614296, -0.04477516934275627, -0.08007381856441498, -0.013881265185773373, -0.006377086043357849, -0.040151726454496384, 0.09888673573732376, 0.04763845354318619, 0.08364798128604889, 0.09044849872589111, -0.1241241917014122, -0.005759370978921652, 0.1348281055688858, 0.06552736461162567, 0.015181106515228748, 0.004040234722197056, -0.004835102241486311, 0.10649432241916656, -0.0918685644865036, 0.19158011674880981, -0.11069878190755844, -0.0014710350660607219, 0.10586077719926834, 0.007339584641158581, 0.20835241675376892, -0.01233592163771391, 0.006744356360286474, -0.10673734545707703, 0.028154630213975906, 0.03147192299365997, 0.04663247987627983, -0.09151548892259598, -0.062357258051633835, -0.13019275665283203, 0.04148312658071518, -0.1033492311835289, -0.12750008702278137, -0.07909755408763885, -0.04719046503305435, 0.0799420028924942, 0.035889748483896255, -0.09039819240570068, -0.10773751139640808, 0.012706250883638859, 0.02265465445816517, -0.004072112496942282, -0.019497888162732124, -0.000990005093626678, -0.04469233751296997, -0.029406912624835968, 0.06246698647737503, 0.03641481325030327, 0.05734063312411308, 0.055015724152326584, 0.030189767479896545, -0.04125039651989937, 0.007538803853094578, 0.02191082574427128, 0.016448579728603363, 0.004240378271788359, -0.017024943605065346, 0.006579147651791573, 0.040256548672914505, 0.0011459749657660723, 0.034646935760974884, 0.046285852789878845, -0.07133585959672928, 0.01148142758756876, -0.07618437707424164, -0.042026497423648834, -0.11041941493749619, -0.03513556346297264, 0.01933179795742035, -0.09011698514223099, -0.04874194413423538, 0.019362090155482292, 0.014570232480764389, -0.04272965341806412, -0.09036090224981308, -0.034905679523944855, -0.006064882501959801, 0.10782710462808609, -0.09711893647909164, 0.02688411809504032, 0.06921162456274033, -0.05189977213740349, -0.09930169582366943, 0.014229620806872845, 0.0794924721121788, -0.05461831018328667, 0.051498547196388245, 0.03970416262745857, 0.06298121064901352, 0.029765412211418152, 0.202772319316864, -0.1333385854959488, 0.016164829954504967, 0.014785021543502808, 0.08947951346635818, 0.09462574124336243, -0.02218824066221714, 0.01718772202730179, 0.02063453011214733, -0.06831657141447067, -0.030043043196201324, -0.1629379838705063, -0.05724445730447769, 0.018466709181666374, -0.037519510835409164, 0.10458434373140335, 0.021589800715446472, -0.02689112164080143, 0.00196848320774734, 0.06762263923883438, 0.08301097899675369, 0.13587266206741333, -0.10818806290626526, 0.09935902059078217, 0.11817729473114014, -0.09656239300966263, -0.08812322467565536, 0.07517703622579575, -0.058626700192689896, 0.12178631871938705, -0.023758327588438988, -0.10190264880657196, 0.00859895721077919, -0.15430130064487457, 0.07325100898742676, 0.018694119527935982, -0.08508356660604477, 0.006747765466570854, -0.0272093266248703, 0.0006401207065209746, 0.018038693815469742, -0.061959657818078995, 0.016495535150170326, -0.037714164704084396, 0.019958913326263428, 0.13494066894054413, 0.05931539833545685, 0.005147314164787531, 0.021525494754314423, -0.046114642173051834, 0.08356977999210358, -0.099564328789711, 0.08948443084955215, -0.056189775466918945, 0.0032975729554891586, 0.08851902931928635, 0.01368146575987339, -0.09180224686861038, 0.02119528502225876, -0.07510574162006378, 0.12016024440526962, 0.08589069545269012, -0.08554580807685852, 0.06883969902992249, 0.1374029815196991, -0.05626672878861427, -0.033257268369197845, -0.0795297846198082, -0.11222310364246368, 0.02558203600347042, 0.049230288714170456, 0.044823162257671356, -0.1113598495721817, 0.014500511810183525, 0.1309085339307785, -0.04758162796497345, 0.06858610361814499, -0.10418327152729034, -0.03804942965507507, -0.03080253303050995, -0.016507433727383614, -0.04184196889400482, -0.1184520348906517, -0.072133868932724, 0.13286322355270386, -0.05191056802868843, -0.03187531977891922, -0.06921039521694183, 0.08443164080381393, 0.012801087461411953, 0.02570439875125885, -0.11483382433652878, -0.00200297636911273, 0.030783597379922867, -0.017346013337373734, 0.07320716977119446, 0.029090559110045433, 0.05005727708339691, -0.11236938834190369, -0.007311126682907343, 0.003542418824508786, -0.0427960641682148, 0.04324569180607796, 0.09152167290449142, 0.028570612892508507, 0.041935015469789505, 0.053933534771203995, -0.033574022352695465, 0.07704683393239975, 0.023820236325263977, 0.030795445665717125, -0.040114063769578934, 0.026557212695479393, -0.013297837227582932, -0.03667791187763214, -0.03748467192053795, 0.07317502796649933, -0.09696321189403534, -0.0332455039024353, -0.07652287930250168, -0.006806943565607071, -0.014349539764225483, -0.04904883727431297, 0.05182459577918053, -0.0021121555473655462, 0.06047068163752556, -0.12176087498664856, 0.09423188865184784, -0.023460084572434425, 0.03300616890192032, -0.06458111852407455, 0.05250721052289009, 0.07454907894134521, 0.09958858042955399, -0.12443464249372482, 0.11554457247257233, -0.03049713559448719, 0.04697902500629425, -0.01156482845544815, -0.12855422496795654, 0.09602829813957214, 0.16924701631069183, 0.09687434881925583, -0.1393534392118454, 0.03985084593296051, 0.002574306447058916, -0.005559741985052824, 0.027026057243347168, 0.10496901720762253, 0.020581858232617378, 0.060938578099012375, -0.10542716085910797, 0.027603337541222572, 0.08858973532915115, 0.16298530995845795, -0.09622352570295334, -0.11410171538591385, -0.14019520580768585, -0.07464190572500229, 0.03294432908296585, 0.10043973475694656, 0.015629025176167488, 0.05823036655783653, 0.06701381504535675, 0.12191932648420334, 0.003781474195420742, -0.13227957487106323, 0.10850590467453003, 0.009512238204479218, 0.044111475348472595, -0.021371860057115555, 0.0637771263718605, 0.008554330095648766, 0.10112681239843369, 0.06296757608652115, -0.006661694496870041, 0.056916482746601105, 0.06596893817186356, 0.028717175126075745, 0.03603425994515419, -0.007097321096807718, 0.13788273930549622, 0.00048233495908789337], -fptoui:[0.06995740532875061, -0.062439169734716415, -0.10050561279058456, -0.1344587355852127, -0.08826626092195511, -0.04773161560297012, -0.08152902126312256, -0.10202156007289886, -0.026081517338752747, 0.05284850299358368, -0.06613253802061081, 0.0018086348427459598, 0.003249174915254116, 0.061306826770305634, 0.005203464068472385, -0.09852989763021469, -0.045267872512340546, 0.16534480452537537, 0.0007616190705448389, 0.03382100164890289, 0.0858055055141449, 0.04436769708991051, 0.11339335143566132, 0.048321183770895004, -0.1400308758020401, -0.08867359906435013, 0.11859620362520218, 0.03165873885154724, 0.03148077428340912, 0.09956345707178116, 0.010244064033031464, 0.08100346475839615, 0.1000317931175232, -0.145707368850708, 0.00994582287967205, 0.1090111956000328, -0.0062841614708304405, -0.08601919561624527, 0.07622502744197845, 0.028280409052968025, 0.1184224784374237, -0.04271050915122032, -0.10755466669797897, -0.05226151645183563, -0.01567620225250721, 0.1141524687409401, 0.12948518991470337, 0.013932093977928162, 0.012947180308401585, 0.08877445012331009, -0.04124412685632706, -0.07484958320856094, 0.025072557851672173, 0.07332700490951538, -0.12070877104997635, -0.034654948860406876, -0.023564882576465607, 0.051041390746831894, 0.11272931098937988, 0.09037221223115921, -0.13817885518074036, -0.10555719584226608, 0.06883152574300766, 0.018522227182984352, 0.1274656355381012, -0.11250676214694977, -0.015561582520604134, 0.05110606923699379, 0.03979383781552315, -0.00950690358877182, 0.00032341681071557105, 0.11832652986049652, -0.03122805617749691, -0.047078680247068405, 0.08659913390874863, 0.0524541400372982, 0.06738298386335373, 0.01906726509332657, -0.08122900873422623, -0.020646823570132256, 0.021135548129677773, 0.042035408318042755, 0.01600128412246704, -0.10259461402893066, -0.11670725047588348, 0.03801087290048599, -0.09510155767202377, 0.12516722083091736, 0.004907047376036644, 0.018202301114797592, 0.006125463172793388, 0.036693885922431946, 0.01727982796728611, -0.05319340527057648, 0.08160915970802307, 0.013676359318196774, 0.025077752768993378, 0.10798563808202744, 0.02357412502169609, 0.021514633670449257, -0.059208836406469345, -0.09494825452566147, -0.08176153153181076, -0.011622479185461998, 0.0014818565687164664, -0.08037898689508438, 0.05669988691806793, 0.04471732676029205, 0.07063698768615723, 0.04147591069340706, -0.011387543752789497, 0.003266141517087817, -0.05417775735259056, 0.11757302284240723, 0.04390556365251541, 0.08222363144159317, -0.007452139165252447, -0.020082717761397362, -0.011805698275566101, 0.019790856167674065, 0.04306759312748909, 0.11418220400810242, 0.06560104340314865, -0.005306566599756479, 0.02026437409222126, 0.011746550910174847, -0.014003275893628597, -0.10714695602655411, 0.10427398979663849, 0.13643592596054077, 0.03364420682191849, -0.14649471640586853, -0.07061482220888138, 0.02625981532037258, 0.0035597842652350664, 0.013512150384485722, -0.006413143128156662, -0.02983916737139225, -0.09764949977397919, -0.05017506331205368, 0.11450475454330444, 0.006938560400158167, 0.020551985129714012, -0.06010366976261139, 0.1458410620689392, -0.060847919434309006, 0.0890444740653038, 0.10654336959123611, -0.02071632631123066, 0.032158464193344116, -0.1611924022436142, 0.07703416049480438, 0.032508593052625656, -0.010645571164786816, 0.06125874072313309, 0.0090499771758914, -0.005441664252430201, -0.067858025431633, -0.08195585012435913, 0.03278346732258797, -0.09081288427114487, 0.11916603147983551, -0.09340626001358032, -0.10055100172758102, -0.058933913707733154, -0.014550239779055119, -0.037230219691991806, 0.08770859986543655, -0.10528736561536789, 0.13089314103126526, -0.13527317345142365, 0.022698547691106796, 0.11128956079483032, -0.0165199376642704, -0.03947598114609718, 0.04488816112279892, -0.03470446169376373, -0.04256359115242958, -0.10467884689569473, -0.06517068296670914, 0.042532823979854584, -0.028526024892926216, -0.15229354798793793, -0.09296736121177673, 0.0027170220855623484, -0.007220991421490908, -0.10920990258455276, 0.13776594400405884, 0.06535663455724716, -0.0076814079657197, 0.04556874930858612, 0.1381717175245285, -0.1715238243341446, -0.007471101824194193, -0.015400716103613377, -0.10373615473508835, -0.05044203996658325, 0.043275732547044754, -0.039897721260786057, -0.05600041523575783, -0.046667519956827164, -0.06391396373510361, 0.007561471778899431, 0.061888739466667175, 0.06366214901208878, 0.1282229870557785, -0.03196962922811508, -0.02619188092648983, -0.08704021573066711, -0.028684372082352638, -0.018990250304341316, 0.14306966960430145, -0.1195700615644455, -0.07455591857433319, 0.055151816457509995, -0.13897006213665009, -0.005310860462486744, -0.017985796555876732, 0.023252397775650024, 0.05738513171672821, 0.09639685600996017, -0.024094752967357635, 0.0010100798681378365, 0.08854305744171143, -0.008909894153475761, 0.01741412840783596, 0.07678667455911636, 0.027442781254649162, -0.05974975600838661, 0.09112141281366348, -0.012731663882732391, -0.009755758568644524, -0.028152501210570335, 0.03728010505437851, -0.07967890799045563, -0.03725145012140274, 0.036915265023708344, 0.08693758398294449, -0.02524426020681858, -0.07817475497722626, 0.05846208333969116, 0.12841308116912842, -0.005767286755144596, 0.003669437952339649, 0.048505138605833054, 0.1293831318616867, -0.03353704884648323, 0.10523577779531479, 0.09979327768087387, 0.08107228577136993, -0.06861963123083115, -0.13139550387859344, -0.015806226059794426, -0.0914214625954628, -0.032568398863077164, 0.0031097964383661747, -0.135476753115654, -0.043981317430734634, 0.12255359441041946, -0.1078830137848854, -0.030358608812093735, 0.040916576981544495, 0.003144395537674427, -0.11544053256511688, -0.11118487268686295, 0.10810290277004242, 0.0010435610311105847, 0.013279352337121964, 0.015274051576852798, 0.0958314910531044, -0.05206572264432907, 0.09886351972818375, -0.026049070060253143, -0.05035751312971115, 0.06625455617904663, -0.13508178293704987, 0.05800976604223251, -0.0536721795797348, 0.0350787527859211, 0.1308361440896988, -0.018199225887656212, 0.06695756316184998, 0.017822084948420525, 0.14042359590530396, 0.10467008501291275, 0.09946960210800171, -0.12499149143695831, -0.10436560213565826, 0.09005957841873169, -0.007434888742864132, 0.11521513015031815, 0.009136752225458622, 0.13415376842021942, 0.02377336099743843, 0.07400556653738022, 0.02870604209601879, 0.04077930375933647, -0.10496371239423752, 0.14593523740768433, 0.005534629337489605], -fptrunc:[0.1453288495540619, 0.08775144070386887, -0.0052106948569417, -0.04762336239218712, 0.0040815891698002815, 0.09734247624874115, 0.10439679771661758, 0.16867029666900635, -0.07985914498567581, -0.004832786042243242, -0.06451387703418732, 0.05639435723423958, 0.05263756215572357, -0.03884073719382286, 0.01442096196115017, 0.12365984171628952, 0.12585978209972382, 0.01386400405317545, 0.029876340180635452, 0.05444936826825142, 0.11969822645187378, -0.12029044330120087, 0.029993172734975815, -0.011471954174339771, 0.023480797186493874, -0.11159764975309372, -0.047408971935510635, -0.004348820075392723, -0.13113664090633392, 0.09210478514432907, 0.07410462200641632, 0.022224504500627518, -0.04564344137907028, -0.062181491404771805, 0.056812088936567307, 0.12852323055267334, -0.027346642687916756, -0.06813354790210724, 0.056467946618795395, -0.011766997165977955, 0.0733657255768776, -0.06557715684175491, 0.013116535730659962, 0.025308258831501007, -0.012732618488371372, 0.1393289566040039, -0.05762597918510437, -0.015542288310825825, 0.011458485387265682, 0.04419812187552452, -0.03982287272810936, 0.009046023711562157, 0.07759866118431091, 0.10861069709062576, -0.08788377791643143, -0.11847013980150223, 0.10469920933246613, -0.12342079728841782, -0.06851925700902939, 0.09981383383274078, -0.0657869353890419, -0.07140740007162094, 0.11948870122432709, 0.02749042399227619, 0.10461687296628952, -0.1162104457616806, -0.017117714509367943, -0.014256533235311508, -0.004065606743097305, -0.03712404891848564, 0.02636810950934887, -0.027069274336099625, 0.039889704436063766, -0.09122932702302933, 0.023465830832719803, 0.03510768711566925, -0.015038908459246159, 0.050228822976350784, 0.09330844134092331, -0.10409685969352722, -0.011225104331970215, 0.033396851271390915, 0.034754108637571335, -0.04467376321554184, 0.04935871809720993, 0.022391043603420258, -0.005990845151245594, -0.10725301504135132, 0.02007872238755226, 0.029279207810759544, -0.06978348642587662, -0.08052150160074234, 0.010096995159983635, -0.11172497272491455, 0.07825162261724472, 0.12368807196617126, 0.03112916834652424, -0.026110632345080376, -0.06893055140972137, -0.02401982806622982, 0.09887511283159256, -0.09992745518684387, -0.06578768044710159, -0.024765554815530777, 0.04688340798020363, -0.10862883180379868, -0.01988634280860424, 0.0456247515976429, -0.014114337973296642, -0.08994290977716446, 0.01702859252691269, -0.08283314108848572, -0.04634300619363785, 0.07253015786409378, 0.009902791120111942, -0.09883550554513931, -0.057596225291490555, -0.08222244679927826, -0.013967947103083134, 0.06619822978973389, 0.020664358511567116, 0.0983998104929924, 0.07099659740924835, -0.012853470630943775, -0.03391018137335777, 0.012733270414173603, 0.08009808510541916, 0.07771424204111099, 0.018109725788235664, -0.007996948435902596, -0.0046205949038267136, 0.0646231397986412, 0.11703667789697647, -0.009486203081905842, 0.10851842910051346, 0.023275816813111305, 0.0746658518910408, -0.037606045603752136, 0.004045958165079355, 0.1083076074719429, -0.12647300958633423, -0.10329649597406387, 0.018627244979143143, -0.10057803988456726, -0.04415077716112137, -0.05526916682720184, 0.08389405906200409, -0.09822878241539001, -0.09594544023275375, -0.06444624066352844, 0.16806645691394806, 0.1252104938030243, 0.023212147876620293, -0.009445369243621826, 0.10735415667295456, -0.02531897835433483, -0.11381445825099945, -0.11466781795024872, -0.03035534918308258, 0.009187323041260242, 0.08098888397216797, -0.0018488902132958174, -0.07921390980482101, 0.14816191792488098, 0.10330088436603546, 0.04100119695067406, 0.06924155354499817, 0.0809401422739029, -0.03268543258309364, -0.0942642092704773, -0.07214520871639252, -0.018590429797768593, 0.10674115270376205, 0.02749701403081417, 0.0002453878987580538, 0.030005455017089844, 0.06796354800462723, -0.048430297523736954, 0.1088673546910286, 0.07294408977031708, -0.021588118746876717, -0.02611362561583519, 0.045532193034887314, -0.0775909498333931, 0.004119909834116697, -0.0891631543636322, 0.05786927416920662, 0.10352390259504318, 0.02255280129611492, 0.10433218628168106, -0.07394261658191681, 0.03071306087076664, 0.06789877265691757, 0.01861780881881714, -0.11740466207265854, 0.12824754416942596, -0.058831002563238144, -0.045528169721364975, -0.06100121885538101, -0.05280647799372673, 0.001716557890176773, 0.020818619057536125, 0.09061524271965027, -0.06444428861141205, -0.1108325868844986, -0.048958249390125275, -0.043821465224027634, 0.005118677858263254, 0.06303700804710388, 0.041623279452323914, 0.08770834654569626, 0.03910698741674423, 0.06712508946657181, 0.05469287559390068, -0.11197201907634735, -0.08057237416505814, 0.07630598545074463, 0.04659797623753548, -0.1072492003440857, 0.14159929752349854, 0.05556245520710945, -0.040179669857025146, -0.0004857706662733108, 0.09156075119972229, 0.049110110849142075, 0.09748249500989914, -0.009285889565944672, -0.11679241806268692, 0.10193152725696564, 0.01768418774008751, -0.005556006450206041, -0.09550104290246964, -0.027633482590317726, 0.07266981899738312, 0.058492064476013184, -0.04427845776081085, 0.11873748898506165, -0.09457061439752579, -0.011716361157596111, 0.1232435554265976, -0.11067619919776917, -0.020477715879678726, 0.08850637823343277, 0.08735252171754837, 0.06316617131233215, 0.013938085176050663, 0.02007020264863968, -0.1216561570763588, -0.06263633817434311, 0.05953602492809296, -0.09989102929830551, -0.037648364901542664, -0.017157090827822685, 0.05296297371387482, 0.04841561242938042, 0.0007669927435927093, 0.00018236355390399694, -0.05669773742556572, -0.1519147902727127, -0.10470101982355118, 0.00026040704688057303, 0.013235420919954777, 0.004704371560364962, -0.07059044390916824, 0.04583217576146126, 0.010078209452331066, 0.04509773105382919, -0.14028100669384003, -0.10775572806596756, 0.01694396696984768, 0.07426281273365021, 0.10361316800117493, -0.04086421802639961, -0.13120807707309723, 0.14388836920261383, -0.1206623762845993, 0.0343359112739563, 0.11522882431745529, 0.021686574444174767, 0.05653989315032959, 0.12504880130290985, 0.0527607761323452, 0.11777353286743164, -0.10069277882575989, 0.031252119690179825, 0.0168143380433321, 0.015733368694782257, -0.03613245114684105, 0.07561034709215164, 0.049893442541360855, 0.08749328553676605, 0.03395641967654228, -0.08397248387336731, -0.014927506446838379, -0.07446194440126419, 0.05099284648895264, -0.02902127243578434, 0.09359019994735718, 0.038014501333236694, 0.0014706451911479235], -freeze:[0.1333625465631485, -0.009717528708279133, 0.010009747929871082, -0.06807249039411545, 0.0018172719283029437, -0.015805725008249283, 0.00212504668161273, 0.07423410564661026, 0.11721303313970566, -0.12770216166973114, -0.03673763573169708, 0.021512459963560104, 0.05329915136098862, -0.004130559973418713, -0.09604015201330185, 0.0012453547678887844, 0.058544863015413284, -0.0934130996465683, 2.0254534319974482e-05, 0.06367185711860657, -0.12259861081838608, 0.08070874214172363, -0.0474386066198349, -0.004285943694412708, 0.012213434092700481, -0.044499803334474564, 0.09760663658380508, 0.028462862595915794, 0.05504076927900314, -0.06762687116861343, -0.027590181678533554, -0.0038643295411020517, 0.10129736363887787, -0.03278708457946777, -0.115582175552845, 0.13676226139068604, -0.036726001650094986, -0.11737024039030075, 0.05563552677631378, -0.12330885976552963, 0.10701001435518265, 0.02288201078772545, 0.05500107631087303, 0.008078912273049355, 0.025751028209924698, 0.07918287068605423, -0.003692369908094406, 0.10237184911966324, -0.04601883888244629, -0.10711846500635147, 0.029191218316555023, -0.01563023403286934, -0.07658647745847702, -0.10103332251310349, -0.04530614614486694, -0.01779414713382721, 0.11070860177278519, 0.14648376405239105, -0.04601075500249863, 0.009445942007005215, 0.07652479410171509, -0.07700209319591522, 0.06974343210458755, 0.15769805014133453, -0.09437780827283859, 0.09642984718084335, 0.06823083758354187, -0.14562949538230896, 0.16085201501846313, 0.018736548721790314, 0.021822448819875717, -0.049669455736875534, -0.10533458739519119, 0.09913194179534912, 0.03909577429294586, -0.048020556569099426, -0.1338699460029602, 0.12844985723495483, 0.09205576032400131, -0.011519279330968857, -0.09385273605585098, 0.050843123346567154, 0.018494637683033943, -0.043488699942827225, 0.07797865569591522, 0.03475046902894974, 0.09624899178743362, 0.07074505090713501, 0.017819050699472427, -0.07879117131233215, -0.050939518958330154, 0.04550040140748024, -0.04822365567088127, 0.061481062322854996, -0.09046515822410583, 0.011776973493397236, 0.04538251459598541, -0.023897092789411545, -0.057503700256347656, 0.06036827340722084, 0.01259718555957079, 0.019844353199005127, 0.07295828312635422, 0.007301908917725086, 0.032136961817741394, -0.12376642227172852, 0.062031086534261703, 0.11252541095018387, -0.07694656401872635, 0.09019631892442703, -0.04856541380286217, -0.028200820088386536, -0.05700208246707916, -0.03716447949409485, 0.05568007007241249, -0.07580829411745071, -0.041886381804943085, 0.03357958421111107, -0.023057449609041214, -0.09499607980251312, -0.12630914151668549, -0.05232403427362442, 0.0549701564013958, -0.03119771182537079, -0.13204047083854675, -0.014146402478218079, -0.07461512088775635, -0.006303249858319759, 0.017306094989180565, 0.07595779001712799, -0.0038361225742846727, 0.015272051095962524, 0.021455304697155952, 0.013744199648499489, 0.07526876777410507, 0.1277412623167038, 0.048431865870952606, -0.049112532287836075, -0.008057857863605022, -0.08226602524518967, -0.13591524958610535, -0.15761984884738922, -0.07130797952413559, -0.09842322766780853, 0.10588061809539795, -0.08953569829463959, 0.02355080470442772, 0.008572202175855637, -0.06609056144952774, -0.038483139127492905, 0.010637116618454456, -0.06293130666017532, -0.13606487214565277, 0.10494218021631241, -0.06411557644605637, -0.15672390162944794, 0.03276239335536957, 0.11996756494045258, -0.07421507686376572, -0.02102530002593994, -0.04157797992229462, 0.010069393552839756, -0.00643513398244977, -0.01320948638021946, 0.0015847589820623398, -0.032314665615558624, 0.02784888632595539, 0.10443495959043503, -0.02955678105354309, -0.01201756950467825, 0.015852343291044235, -0.057478129863739014, 0.016517333686351776, 0.1281290501356125, 0.09226016700267792, 0.045662008225917816, -0.1604672223329544, 0.0002610407245811075, 0.09783584624528885, 0.1315689980983734, -0.06338174641132355, -0.05760418251156807, 0.06701614707708359, 0.008612839505076408, -0.14809192717075348, 0.012684784829616547, 0.052948255091905594, -0.09987223148345947, 0.14160382747650146, -0.13013170659542084, 0.06820535659790039, 0.0899696946144104, 0.023742368444800377, 0.10659114271402359, -0.09693341702222824, -0.043931879103183746, -0.02766330912709236, -0.007021701894700527, 0.013016868382692337, -0.1324213296175003, -0.14056259393692017, -0.05507437884807587, -0.021293818950653076, 0.1483772248029709, -0.030140075832605362, 0.02832339145243168, 0.036827631294727325, -0.0026649280916899443, 0.11536888033151627, -0.024671515449881554, -0.09290171414613724, -0.13663224875926971, -0.04137083888053894, 0.07851555943489075, 0.09821903705596924, -0.042005155235528946, 0.1295013725757599, 0.01336606778204441, -0.12359068542718887, 0.020442131906747818, -0.08270060271024704, 0.04942627623677254, -0.030236516147851944, 0.05010535567998886, -0.02346142753958702, -0.04860561713576317, -0.014229414984583855, 0.027772994711995125, 0.01215076819062233, 0.03887262940406799, -0.01164048258215189, 0.07641779631376266, -0.09149879217147827, -0.02538575977087021, -0.07897698134183884, -0.05174482241272926, 0.03555081784725189, 0.12538105249404907, -0.055873803794384, 0.10265898704528809, 0.016567859798669815, -0.03964725881814957, 0.09418858587741852, -0.01353232841938734, 0.030322633683681488, 0.09200184047222137, 0.09370468556880951, -0.08036962896585464, -0.026131929829716682, 0.07265086472034454, -0.0014322423376142979, 0.04025239869952202, -0.06879229098558426, -0.007921000942587852, 0.06784649193286896, -0.001332689425908029, 0.003322359174489975, -0.03132976219058037, -0.048338137567043304, -0.021599838510155678, 0.099968321621418, 0.14100518822669983, 0.09789256006479263, -0.008121057413518429, 0.01958620920777321, 0.08319730311632156, -0.10042109340429306, -0.11407459527254105, -0.1097857728600502, 0.008595549501478672, 0.023567073047161102, 0.059519387781620026, -0.12283563613891602, -0.06860213726758957, 0.14310836791992188, 0.0894366130232811, -0.026334987953305244, 0.09604505449533463, -0.09341860562562943, 0.06329859048128128, 0.13138604164123535, 0.1041605994105339, 0.021008871495723724, -0.00037463975604623556, 0.13494810461997986, 0.022720525041222572, -0.0190427266061306, -0.06992880254983902, -0.04351121559739113, -0.07950133830308914, -0.0863141342997551, -0.03524242714047432, -0.01641790382564068, 0.11297857761383057, -0.07833027839660645, -0.0895136371254921, 0.008814255706965923, 0.004375914111733437, 0.037743933498859406, 0.11234623193740845], -fsub:[0.1205187663435936, 0.0552951917052269, -0.02893536537885666, -0.07390962541103363, -0.013671668246388435, -0.011569404974579811, -0.03323671221733093, -0.06801804155111313, -0.13241001963615417, -0.05141964554786682, 0.004861519206315279, 0.010682942345738411, 0.0698845237493515, -0.03853502869606018, 0.04016563668847084, 0.0123855946585536, -0.11736907064914703, 0.14857769012451172, -0.08787364512681961, -0.10872349888086319, 0.05957895144820213, -0.043877288699150085, 0.036764781922101974, -0.03322949633002281, -0.0005330236162990332, -0.09145880490541458, -0.036273043602705, 0.015931574627757072, -0.1355942338705063, 0.10605809837579727, 0.09183020889759064, 0.0005662993644364178, 0.09196144342422485, -0.05050364509224892, 0.023205414414405823, 0.14012347161769867, 0.1644696146249771, -0.0209695715457201, 0.0024986760690808296, -0.03067641891539097, 0.08615729212760925, 0.16227048635482788, -0.06320752203464508, -0.0408397912979126, -0.014916425570845604, 0.07771363854408264, -0.11149067431688309, 0.00924629345536232, -0.021036261692643166, 0.05233925208449364, -0.048092905431985855, 0.0014751208946108818, -0.08667390048503876, 0.095001220703125, -0.13172800838947296, -0.12050296366214752, -0.17792055010795593, -0.03372793272137642, -0.05209824815392494, 0.10315895825624466, 0.1299005001783371, -0.04427368938922882, 0.044166214764118195, 0.029371211305260658, 0.12765029072761536, -0.1150684580206871, -0.051879823207855225, 0.013888503424823284, -0.003198629943653941, -0.023653406649827957, 0.023432657122612, -0.011246247217059135, -0.010830946266651154, -0.06099776178598404, 0.043293505907058716, 0.009558890014886856, 0.1831979751586914, 0.028469758108258247, 0.11111033707857132, -0.17304271459579468, -0.003699245862662792, -0.11500624567270279, -0.03074750117957592, -0.050673842430114746, -0.10682127624750137, 0.09299454092979431, -0.03328973799943924, 0.12629248201847076, -0.07075714319944382, 0.06472455710172653, -0.002479097107425332, 0.02980073355138302, 0.05373341217637062, -0.006642625201493502, 0.14071953296661377, 0.11379784345626831, -0.09905601292848587, -0.10817255079746246, -0.03727809712290764, 0.01778760552406311, -0.0030898156110197306, -0.09882329404354095, 0.12524405121803284, 0.026450268924236298, 0.05737359821796417, -0.10075987130403519, -0.01751312054693699, 0.08052608370780945, -0.0031075356528162956, -0.11993047595024109, 0.020991146564483643, -0.03104741871356964, -0.05254899337887764, 0.0700298324227333, -0.028676902875304222, 0.030655642971396446, -0.12766441702842712, 0.058458492159843445, 0.01634235680103302, -0.03690669685602188, 0.024071859195828438, 0.11014977842569351, 0.06924957036972046, -0.1947300285100937, 0.01384102925658226, 0.02848096750676632, -0.02945518307387829, 0.004251397680491209, 0.04412946477532387, -0.10313025861978531, 0.048522595316171646, -0.04356801137328148, 0.11637173593044281, -0.015548912808299065, 0.020053565502166748, 0.010129465721547604, 0.08081869035959244, 0.04388526827096939, -0.0027065835893154144, -0.11796603351831436, 0.12899300456047058, -0.024931302294135094, -0.14948074519634247, -0.0624433197081089, -0.018358267843723297, -0.057781971991062164, 0.0038580428808927536, -0.0968337282538414, -0.09606146812438965, 0.00687039690092206, 0.045177798718214035, 0.11330460757017136, -0.033813487738370895, 0.006122990045696497, 0.12005110085010529, -0.027973638847470284, 0.03892361745238304, 0.05473197251558304, -0.08347415924072266, 0.02395309880375862, -0.04211478680372238, -0.06933075189590454, -0.08474825322628021, -0.06414064764976501, 0.0015028059715405107, 0.06354780495166779, -0.09032242745161057, 0.09011229127645493, -0.09226898103952408, 0.02463030442595482, -0.0568905808031559, -0.0707053616642952, -0.1394033282995224, 0.022177523002028465, -0.025267546996474266, 0.04706182703375816, 0.05752794072031975, -0.06210000440478325, 0.10611081123352051, -0.0595032274723053, -0.017255742102861404, -0.004381468519568443, -0.048257552087306976, -0.041404999792575836, -0.07153904438018799, -0.10677001625299454, -0.02583175338804722, -0.01368830818682909, 0.09731706231832504, -0.04017084091901779, -0.05161600187420845, 0.013254529796540737, 0.016968009993433952, 0.01598026603460312, -0.13541321456432343, -0.04275070130825043, -0.02866460010409355, -0.04266547039151192, -0.08202064037322998, -0.07864303141832352, -0.04819491505622864, -0.11923868954181671, 0.11989284306764603, 0.04046421870589256, -0.05707820877432823, 0.04997853562235832, 0.09705933183431625, 0.09331915527582169, -0.027196591719985008, -0.037285495549440384, 0.10312508791685104, -0.0684361457824707, -0.03739462047815323, 0.047607433050870895, -0.005971033126115799, -0.044112659990787506, 0.061817750334739685, 0.047447871416807175, 0.01481388695538044, 0.14100557565689087, 0.09770479053258896, -0.015351644717156887, -0.04207603260874748, 0.09206321090459824, 0.1917942613363266, 0.001055260538123548, -0.12229063361883163, 0.05522273853421211, -0.062440238893032074, 0.023492727428674698, 0.050053298473358154, -0.11573085188865662, -0.02579246647655964, 0.07598991692066193, -0.09818056225776672, -0.04454736411571503, 0.042287781834602356, 0.039976105093955994, -0.010862688533961773, -0.038669403642416, -0.0313715860247612, -0.017044907435774803, 0.04519342631101608, 0.06523709744215012, -0.06683226674795151, 0.15438352525234222, 0.02093351073563099, 0.0315297432243824, -0.02477983571588993, 0.10279076546430588, -0.00651338929310441, -0.08896899223327637, 0.08818931132555008, -0.16916261613368988, 0.04700610414147377, -0.01682036742568016, -0.1233956515789032, -0.10831022262573242, 0.1528993844985962, -0.014532964676618576, 0.00699021527543664, -0.04006596654653549, 0.03395206481218338, 0.03935592994093895, 0.054645538330078125, -0.12465016543865204, 0.03839978575706482, -0.12724338471889496, -0.11213403195142746, 0.0034610889852046967, -0.04523191228508949, 0.04718993231654167, 0.028502583503723145, -0.07934445887804031, -0.10772007703781128, -0.11320450901985168, 0.03474310785531998, 0.12437265366315842, -0.04573957994580269, 0.05751527100801468, -0.006017625797539949, 0.12254513800144196, 0.06402627378702164, 0.08268368989229202, 0.10808976739645004, 0.09118250012397766, 0.08140229433774948, -0.04633410647511482, -0.09479277580976486, 0.040330734103918076, 0.08294372260570526, -0.02784987911581993, -0.09920274466276169, 0.021071212366223335, 0.07615519315004349, 0.08404882252216339, 0.012670088559389114, 0.08943185210227966, -0.009949424304068089, 0.0853869840502739], -function:[0.04322085157036781, -0.021152162924408913, 0.10656001418828964, -0.09012050926685333, -0.1310921013355255, 0.09724064916372299, 0.035045232623815536, 0.02696680836379528, 0.0035588457249104977, 0.011112923733890057, -0.029479721561074257, -0.005013270769268274, -0.05816589668393135, 0.04481474682688713, 0.06145500764250755, 0.05979866907000542, 0.10390426963567734, -0.06808483600616455, -0.05736992508172989, -0.09658107906579971, -0.04357022047042847, 0.05393557250499725, -0.03894834220409393, 0.09748867154121399, 0.06106407940387726, -0.010432549752295017, -0.11321230232715607, -0.08280317485332489, -0.05430374667048454, -0.031391020864248276, -0.0088046258315444, -0.04295602813363075, -0.06883080303668976, -0.043777965009212494, -0.07007013261318207, -0.11850830167531967, -0.009334370493888855, 0.069966159760952, 0.03289083018898964, 0.0678567960858345, -0.003332174615934491, -0.0034710245672613382, -0.0028232592158019543, 0.10375262796878815, 0.1000080555677414, -0.048528194427490234, -0.09018769860267639, 0.03760944679379463, 0.0002696669253055006, 0.007190289441496134, 0.03618878126144409, -0.0871967226266861, -0.05620972812175751, 0.10971450805664062, 0.06085851043462753, -0.06554896384477615, 0.10901132971048355, -0.0016561796655878425, 0.07674458622932434, 0.13935726881027222, -0.007397796958684921, 0.09926324337720871, -0.07379558682441711, -0.03221135213971138, -0.02761446312069893, 0.06231502816081047, 0.10968052595853806, -0.11512035876512527, -0.08344852924346924, 0.08945229649543762, 0.07666769623756409, -0.08643710613250732, 0.04806418716907501, 0.033308811485767365, -0.08689423650503159, -0.014019365422427654, 0.07448053359985352, -0.07832168787717819, -0.01665201596915722, -0.0436813123524189, 0.11021795868873596, -0.05083886906504631, 0.050997499376535416, 0.059094782918691635, -0.048297684639692307, 0.02149985544383526, -0.12180715054273605, -0.1284581571817398, 0.023394543677568436, -0.025869963690638542, 0.12713277339935303, 0.08776798099279404, -0.035568952560424805, 0.03738701716065407, -0.04701170697808266, 0.07755452394485474, -0.043749772012233734, 0.05614103004336357, 0.12382850050926208, -0.10380122810602188, 0.05491622909903526, 0.1382717341184616, 0.01612832210958004, -0.03201064467430115, 0.004118664655834436, 0.09174227714538574, 0.023314783349633217, -0.06352859735488892, 0.08814948052167892, 0.11032567173242569, 0.055458132177591324, -0.03888033702969551, 0.06400090456008911, 0.0387829951941967, -0.04847320541739464, -0.002111331094056368, -0.04229797422885895, 0.06207122281193733, -0.002991104032844305, -0.05580155923962593, -0.052370212972164154, 0.12572841346263885, -0.04903552681207657, -0.04305326193571091, 0.10956692695617676, -0.1311897486448288, -0.05395643785595894, 0.07143757492303848, 0.08482372760772705, 0.0024415988009423018, 0.012205473147332668, 0.0038616072852164507, -0.07175896316766739, 0.003327949671074748, -0.09848695248365402, 0.08777229487895966, -0.030547428876161575, 0.09292694926261902, 0.06795309484004974, -0.08921877294778824, -0.03911598026752472, -0.07711629569530487, -0.0435868464410305, 0.019965162500739098, -0.00530534703284502, 0.07785781472921371, 0.053058743476867676, 0.04890456795692444, -0.031521786004304886, 0.05104341730475426, -0.002746822312474251, -0.10103441029787064, -0.009952765889465809, 0.04394461214542389, 0.020362628623843193, 0.08521729707717896, 0.09890308231115341, -0.02448287047445774, 0.04518255591392517, -0.12328128516674042, -0.07703645527362823, -0.07642247527837753, 0.001791676040738821, 0.05019259452819824, 0.1592860221862793, -0.11230064183473587, 0.06867874413728714, -0.04954729974269867, -0.11607110500335693, -0.0636020228266716, 0.09734508395195007, 0.10306322574615479, -0.06736166030168533, -0.15815597772598267, 0.0548243522644043, -0.00280581577681005, 0.03414838761091232, 0.0802205353975296, -0.05183251202106476, 0.04702161252498627, 0.08162844926118851, 0.101593516767025, 0.08810130506753922, -0.041483569890260696, 0.035112425684928894, 0.07760179042816162, -0.0002856708597391844, 0.09325902163982391, -0.11279883980751038, 0.061084769666194916, -0.05130893737077713, 0.05041736364364624, 0.012626566924154758, -0.07497186958789825, 0.06798689812421799, -0.10192444175481796, 0.034970734268426895, 0.048281993716955185, 0.08464884012937546, 0.05401894822716713, 0.08954218029975891, 0.0250988956540823, -0.07427963614463806, -0.09714549034833908, -0.09211938828229904, -0.015364240854978561, -0.013973689638078213, -0.09394746273756027, 0.020115450024604797, 0.12256231158971786, -0.0753706842660904, 0.013809836469590664, 0.03034059703350067, -0.10259108245372772, -0.09696397930383682, 0.048627085983753204, -0.09532785415649414, 0.12333595752716064, 0.00927285011857748, -0.03959627076983452, -0.08285544812679291, -0.08217912912368774, -0.07215770334005356, 0.024381695315241814, 0.03321821242570877, -0.045244548469781876, -0.09959976375102997, -0.07634637504816055, 0.11904243379831314, -0.061733122915029526, 0.005016404669731855, -0.027963176369667053, 0.0769958570599556, -0.06417810171842575, -0.15121762454509735, 0.05236772820353508, -0.03635374456644058, 0.09934709221124649, 0.0596172995865345, -0.07995177805423737, 0.0409562811255455, 0.08772630244493484, 0.10866106301546097, -0.054661065340042114, -0.044971831142902374, 0.04613777995109558, 0.11182383447885513, 0.020119372755289078, 0.039572522044181824, -0.07338069379329681, -0.0702928900718689, -0.0842968299984932, 0.03545428812503815, -0.002979057841002941, -0.08055039495229721, 0.0964016541838646, -0.06119026988744736, 0.02035752683877945, -0.04496469348669052, -0.06290331482887268, -0.014659401960670948, 0.026076363399624825, -0.10060421377420425, 0.05542568489909172, 0.0891207605600357, -0.060679152607917786, 0.11897236108779907, 0.0698123425245285, 0.07972144335508347, -0.08988668769598007, -0.05090434104204178, -0.08612915873527527, -0.012440401129424572, 0.10413923859596252, -0.019536694511771202, 0.1222883090376854, 0.10853340476751328, 0.09463416039943695, -0.06533786654472351, -0.06464463472366333, -0.13632948696613312, 0.008836580440402031, -0.017393387854099274, -0.010779562406241894, -0.027273790910840034, -0.06147665157914162, 0.023445377126336098, 0.045096948742866516, -0.02423263154923916, 0.09549393504858017, 0.09290225803852081, 0.08605700731277466, 0.005793909076601267, -0.13534507155418396, -0.055823005735874176, -0.04009317234158516, 0.07747621834278107, 0.03320280462503433, 0.08896252512931824, 0.03272227942943573], -getelementptr:[0.05346418544650078, 0.03259021416306496, 0.014959163963794708, 0.04319536313414574, 0.02284807153046131, -0.008093360811471939, -0.01846557855606079, 0.06808371841907501, -0.040743518620729446, -0.11570300161838531, -0.0036836087238043547, -0.07173722237348557, 0.060094304382801056, 0.019413689151406288, 0.04163924977183342, 0.03925730288028717, 0.010792792774736881, 0.02626802958548069, -0.20340809226036072, 0.0076637864112854, 0.08770706504583359, -0.01913914643228054, 0.03582561016082764, -0.04630574584007263, -0.023002129048109055, -0.07224726676940918, 0.040801506489515305, 0.03757152333855629, 0.03954190015792847, 0.10024881362915039, -0.06675989180803299, 0.037542734295129776, 0.07865990698337555, 0.037672143429517746, 0.05726619064807892, 0.06306525319814682, 0.03049854375422001, -0.012737441807985306, -0.02950967289507389, 0.044590793550014496, 0.08577462285757065, 0.10677652060985565, -0.12600630521774292, -0.07695119827985764, -0.012011137790977955, 0.10968837141990662, 0.052909333258867264, -0.15028192102909088, -0.203379824757576, -0.061146825551986694, -0.14720284938812256, 0.0632612332701683, -0.03957377374172211, -0.04661332070827484, -0.04489406943321228, -0.032527901232242584, 0.10346130281686783, 0.12842094898223877, -0.0324559286236763, 0.0777408555150032, -0.031354278326034546, 0.023754488676786423, 0.0694052204489708, 0.0314878486096859, 0.09382167458534241, -0.10083241015672684, 0.08233867585659027, 0.020822158083319664, 0.05420096591114998, -0.047381363809108734, 0.014979595318436623, -0.026636337861418724, -0.044497158378362656, -0.0664481669664383, 0.0336860753595829, 0.03466874361038208, -0.051565755158662796, -0.17985741794109344, 0.02137904241681099, -0.18160898983478546, -0.030984045937657356, 0.07558386772871017, -0.020498858764767647, -0.04779570549726486, 0.05720024183392525, 0.08778506517410278, 0.030683178454637527, 0.06714378297328949, -0.08243201673030853, -0.01733980141580105, -0.0611058808863163, 0.030344897881150246, -0.03664572909474373, 0.21713468432426453, 0.05472726374864578, 0.020037857815623283, 0.03159603476524353, 0.08030077069997787, 0.1037638783454895, 0.018288206309080124, 0.052960630506277084, -0.0781392753124237, 0.007535465061664581, -0.083110511302948, 0.02448359504342079, -0.09932786226272583, -0.006381080485880375, 0.05085715278983116, -0.016737641766667366, -0.05442409589886665, 0.1396065205335617, 0.10372532904148102, -0.06859627366065979, 0.03633300960063934, 0.0387968048453331, 0.048593517392873764, 0.040624503046274185, -0.24823333323001862, 0.006147205829620361, 0.07197029143571854, -0.11961113661527634, -0.007313599810004234, 0.055180035531520844, -0.09695246815681458, 0.007449070457369089, 0.0933726504445076, 0.061320118606090546, -0.0007014884613454342, 0.05878334492444992, -0.010480839759111404, -0.09914730489253998, 0.02512502297759056, 0.10098070651292801, -0.08803636580705643, 0.003382835304364562, 0.040292419493198395, 0.03766057640314102, -0.04502164572477341, -0.0032068926375359297, -0.09395227581262589, 0.10727257281541824, -0.03220675513148308, 0.11138135939836502, 0.03227189555764198, -0.05970466881990433, -0.06075214594602585, -0.12250950187444687, 0.021266000345349312, -0.16702261567115784, -0.0024902354925870895, -0.03771570697426796, 0.09485270082950592, -0.05340845137834549, -0.16484060883522034, 0.06373853981494904, 0.10871152579784393, 0.02396167814731598, 0.014379739761352539, -0.08650144189596176, 0.00933841709047556, -0.04127589240670204, 0.029882090166211128, 0.05636856332421303, -0.06951376795768738, 0.0031659931410104036, 0.0190317090600729, 0.14978697896003723, 0.08470448106527328, -0.07202039659023285, 0.03118421696126461, 0.003353127744048834, 0.03183125704526901, 0.0871616080403328, 0.08895427733659744, -0.03258415684103966, 0.073845773935318, -0.12856896221637726, -0.08579742163419724, 0.09180896729230881, -0.06834466010332108, -0.07336524873971939, -0.04151845723390579, -0.05461461469531059, -0.10596458613872528, 0.09006955474615097, -0.021817989647388458, 0.09975121170282364, -0.011771687306463718, 0.03648117184638977, -0.11477526277303696, -0.004833979997783899, -0.08212593197822571, -0.012067100964486599, 0.014786100015044212, -0.09853874146938324, -0.026313541457057, -0.04314495250582695, -0.1670161336660385, -0.0605902262032032, -0.06839560717344284, 0.05268197879195213, 0.020666150376200676, -0.0417039729654789, 0.10003186762332916, -0.02762542851269245, 0.032202862203121185, -0.057131797075271606, 0.005957463756203651, -0.031469687819480896, -0.0052691856399178505, 0.03771659731864929, 0.09960643947124481, 0.11298836767673492, 0.06887301057577133, -0.05972674489021301, -0.05296378955245018, 0.051432713866233826, 0.006421957165002823, -0.06205489858984947, -0.01729947328567505, 0.09301097691059113, 0.008498805575072765, 0.2568051517009735, 0.18733017146587372, 0.0817672461271286, -0.0514034777879715, -0.008368810638785362, 0.045466791838407516, 0.012988042086362839, 0.02546462044119835, 0.04836110770702362, -0.07953958958387375, -0.10243401676416397, 0.03966143727302551, -0.04430053383111954, -0.05294015631079674, 0.0580991730093956, -0.014782203361392021, -0.020184339955449104, -0.012669024989008904, -0.07381445914506912, -0.03189322352409363, -0.031030548736453056, 0.07931217551231384, 0.0456426739692688, 0.08997145295143127, 0.02087157778441906, -0.06428160518407822, -0.07768118381500244, 0.08002919703722, 0.045864418148994446, 0.029416600242257118, -0.049855541437864304, 0.08292696624994278, 0.05816536024212837, -0.2223728746175766, 0.05887129157781601, -0.13125689327716827, 0.056531038135290146, -0.05917775258421898, 0.010972743853926659, 0.09568186104297638, 0.021231070160865784, 0.1785813719034195, -0.12196668237447739, 0.08418718725442886, -0.11311567574739456, -0.11120468378067017, -0.10929811745882034, 0.008631057105958462, 0.04962862282991409, -0.008353838697075844, -0.025745529681444168, -0.0545748732984066, 0.05593421682715416, -0.020115597173571587, 0.03420514240860939, 0.03623396158218384, -0.08250685781240463, 0.0582459419965744, 0.03921421617269516, 0.046336058527231216, 0.016515184193849564, -0.1048714742064476, 0.11810335516929626, 0.006135526113212109, -0.04431943595409393, -0.06289341300725937, -0.008564051240682602, -0.04053226485848427, 0.06745888292789459, 0.05060800909996033, -0.05719182267785072, 0.026630006730556488, 0.06908217072486877, 0.008249449543654919, 0.01769460365176201, 0.001578913303092122, -0.013231638818979263, 0.05605138838291168], -icmp:[0.08805877715349197, 0.05851047858595848, 0.013190751895308495, -0.011207155883312225, -0.07800883799791336, -0.013758860528469086, -0.019151173532009125, 0.056694865226745605, -0.1277087777853012, -0.11066596210002899, 0.07309924811124802, 0.15568985044956207, 0.04053175821900368, -0.002737341681495309, -0.017256833612918854, 0.08043362945318222, 0.03589418902993202, 0.010740508325397968, -0.21264058351516724, 0.026789963245391846, 0.06780724972486496, -0.025138739496469498, 0.034490663558244705, -0.010419520549476147, -0.022558199241757393, -0.06186112388968468, 0.08822489529848099, 0.030109841376543045, 0.040680307894945145, 0.08734938502311707, -0.07097486406564713, 0.038164082914590836, 0.08718495815992355, -0.017461583018302917, -0.00841899961233139, 0.05561342462897301, -0.05298555642366409, -0.03632384166121483, -0.018906746059656143, -0.017594516277313232, 0.07503028213977814, -0.03989125043153763, 0.034092795103788376, -0.05780209228396416, -0.019678860902786255, 0.10312996804714203, -0.011595829389989376, 0.011754938401281834, 0.22584746778011322, -0.07437339425086975, 0.03720295801758766, 0.21013355255126953, -0.07214465737342834, -0.003992152400314808, -0.046386633068323135, -0.09602868556976318, -0.09273482114076614, 0.11392568796873093, -0.008580227382481098, 0.07290138304233551, -0.07153654098510742, 0.0363786555826664, 0.06675843894481659, 0.03273499384522438, 0.10336218029260635, 0.006157216150313616, 0.06203500181436539, 0.02744361013174057, 0.043654654175043106, -0.035865578800439835, 0.02475871331989765, -0.007961112074553967, -0.08205492794513702, 0.00018607596575748175, 0.03752531483769417, -0.1026611179113388, 0.03265000507235527, -0.2120104879140854, -0.014548059552907944, -0.17892985045909882, -0.013895724900066853, 0.06361942738294601, 0.22537729144096375, -0.041316594928503036, 0.027893725782632828, 0.028866365551948547, 0.06381800025701523, 0.0745340958237648, -0.04526644945144653, 0.05675651133060455, -0.07143986225128174, 0.04616456851363182, 0.026288053020834923, 0.12362436950206757, -0.02014763467013836, 0.00025357870617881417, 0.025393808260560036, -0.03111661970615387, 0.02278757095336914, 0.013804449699819088, 0.010523347184062004, -0.06683758646249771, -0.02901092730462551, 0.05840757116675377, -0.04503091797232628, -0.09482885897159576, -0.00622059591114521, 0.03641991317272186, -0.08840711414813995, 0.04823401942849159, 0.23463794589042664, 0.010032915510237217, -0.09781762212514877, -0.027475204318761826, 0.038784004747867584, 0.02437281794846058, 0.05708973854780197, 0.1495223045349121, -0.050577279180288315, -0.040606699883937836, -0.0870489776134491, 0.10979850590229034, 0.06552696973085403, -0.0326203815639019, 0.02433639019727707, 0.04916340857744217, -0.03001793473958969, 0.005374271422624588, 0.07584637403488159, -0.04688942804932594, -0.21856723725795746, -0.04024871811270714, 0.08594448864459991, -0.10393787175416946, 0.00730734271928668, 0.017015809193253517, 0.03929578512907028, 0.07287364453077316, -0.003449095878750086, -0.017167262732982635, 0.09473681449890137, -0.05667060241103172, -0.02920134924352169, -0.020220696926116943, 0.0766635611653328, -0.08423502743244171, 0.017452921718358994, 0.15224185585975647, -0.09349486231803894, 0.015223688445985317, -0.029658112674951553, 0.07413896173238754, -0.05235610529780388, 0.12003639340400696, -0.018826650455594063, -0.027204198762774467, 0.012276723980903625, 0.052107471972703934, -0.06253040581941605, 0.010153115727007389, 0.040024615824222565, 0.028199465945363045, -0.08902595192193985, -0.0708179846405983, 0.0012890712823718786, -0.022238148376345634, 0.015537978149950504, 0.07634347677230835, -0.04499004781246185, -0.06760447472333908, 0.012730404734611511, -0.045061808079481125, 0.03135696426033974, 0.037665992975234985, 0.002423024969175458, -0.12093640863895416, -0.1363678276538849, -0.08960127085447311, 0.09114868193864822, -0.0654657706618309, -0.05995892360806465, -0.01977698691189289, -0.0643596276640892, 0.13584788143634796, 0.020397964864969254, -0.015640536323189735, -0.017655083909630775, 0.011858533136546612, -0.0034120341297239065, -0.11175449192523956, 0.11689654737710953, -0.09017331153154373, -0.12534669041633606, -0.03360935300588608, -0.08784501999616623, -0.03653162345290184, -0.08465764671564102, -0.06148099899291992, -0.018945664167404175, -0.06470707058906555, -0.042575038969516754, -0.10256486386060715, -0.05988628417253494, 0.05303553491830826, -0.025134459137916565, -0.07299216091632843, 0.061203181743621826, 0.04721632972359657, -0.16298697888851166, -0.042697761207818985, 0.03987850248813629, -0.003922033589333296, -0.04268645495176315, 0.07668311148881912, -0.00015943039034027606, -0.10583315044641495, 0.04643166437745094, -0.018362214788794518, 0.15142081677913666, -0.001984358998015523, 0.08861082047224045, 0.020150374621152878, -0.2281600385904312, 0.19855907559394836, 0.08048682659864426, -0.0711403638124466, -0.01075635477900505, 0.021088195964694023, 0.01605231687426567, 0.04333111643791199, -0.019189797341823578, -0.017707576975226402, -0.05950916185975075, 0.046438705176115036, 0.006118995137512684, -0.047017358243465424, 0.14553384482860565, -0.00956800114363432, -0.01568513736128807, -0.038163747638463974, -0.0702090933918953, -0.03962016478180885, 0.027387799695134163, 0.07577627897262573, 0.054112937301397324, -0.04550686851143837, 0.019995857030153275, -0.05332155525684357, 0.007276075426489115, 0.061821043491363525, 0.02773195505142212, 0.026100192219018936, 0.02287593111395836, -0.16428586840629578, 0.06181880086660385, 0.035016052424907684, 0.05918360874056816, 0.05318000912666321, -0.011131883598864079, -0.05541996657848358, 0.0497121661901474, 0.02207607962191105, 0.017299264669418335, -0.1648591011762619, -0.03561369702219963, 0.03978356346487999, -0.08486153185367584, -0.11435668915510178, -0.1063104048371315, 0.002380521036684513, 0.026664189994335175, 0.052054163068532944, 0.011045875959098339, -0.05344139039516449, -0.02846069261431694, -0.01647195965051651, 0.03377506881952286, -0.018631702288985252, 0.045231226831674576, 0.0549965463578701, 0.074310302734375, 0.07763129472732544, 0.1689596325159073, -0.08209379017353058, 0.09955998510122299, 0.021177254617214203, -0.06019064784049988, -0.06714644283056259, -0.009603360667824745, -0.02351687289774418, 0.027225688099861145, 0.03529006242752075, 0.025854159146547318, 0.06119751185178757, 0.08900237083435059, 0.002877445425838232, 0.018380409106612206, 0.060308072715997696, -0.012438341975212097, -0.03098556213080883], -insertelement:[0.10798532515764236, -0.109798863530159, 0.013816005550324917, -0.07248387485742569, 0.0018892987864091992, -0.014182462356984615, 0.10675948113203049, -0.028076663613319397, 0.04886310175061226, -0.11610007286071777, -0.08641691505908966, 0.1380663961172104, 0.059194233268499374, -0.018915360793471336, 0.045827239751815796, -0.019469190388917923, 0.002856370061635971, -0.057439591735601425, -0.11383015662431717, -0.09585876762866974, 0.07645373046398163, -0.036246929317712784, 0.03230840712785721, 0.01628260873258114, 0.004984731320291758, -0.08548814058303833, 0.11651358008384705, -0.0027515292167663574, 0.0075510661117732525, 0.13744384050369263, 0.055674176663160324, -0.09119744598865509, 0.093307264149189, -0.05209534987807274, -0.009702310897409916, 0.14349669218063354, 0.06547975540161133, -0.11361351609230042, 0.010217167437076569, -0.06545288115739822, 0.09875986725091934, 0.1027042344212532, -0.07547994703054428, -0.11157630383968353, -0.02072916179895401, 0.11407950520515442, 0.04103057086467743, 0.03289990499615669, 0.012644663453102112, -0.05667157471179962, -0.03690323233604431, 0.07826953381299973, -0.1827724426984787, 0.02925986610352993, -0.08075076341629028, -0.0653102770447731, 0.027685433626174927, -0.0032712321262806654, -0.054747771471738815, 0.0817713811993599, 0.03361492231488228, -0.11047385632991791, 0.08356384932994843, 0.03074725531041622, -0.03711657226085663, -0.12555982172489166, -0.057407181710004807, 0.1074865385890007, -0.10400112718343735, -0.021438930183649063, 0.019540734589099884, -0.02546982653439045, -0.08459623903036118, -0.012748530134558678, 0.025234894827008247, -0.06396246701478958, -0.00679186824709177, -0.007020030170679092, 0.1450837403535843, 0.029695609584450722, -0.00933542475104332, -0.013410642743110657, -0.009061453863978386, -0.017331300303339958, 0.015050525777041912, 0.08444128930568695, 0.009879403747618198, -0.1038263812661171, -0.07958570122718811, -0.09929398447275162, 0.029763411730527878, 0.034012582153081894, 0.009160776622593403, -0.07083103805780411, -0.11141914129257202, 0.11227306723594666, 0.03589913249015808, -0.14462162554264069, 0.01798366568982601, 0.06014879792928696, -0.13560079038143158, -0.09878426790237427, 0.12449109554290771, 0.024078071117401123, 0.13562536239624023, -0.1031106561422348, 0.0257467832416296, 0.1095307394862175, -0.1171846017241478, -0.11570363491773605, -0.0256601944565773, 0.00923053827136755, -0.05707574635744095, 0.05890803411602974, -0.040132950991392136, 0.12254049628973007, 0.04212474822998047, -0.03464246168732643, -0.050205402076244354, -0.06882280856370926, 0.01226651482284069, 0.014208833687007427, 0.06825563311576843, -0.1290699690580368, 0.02023453451693058, 0.02278710901737213, 0.05343523249030113, 0.00987586285918951, 0.023064453154802322, -0.08702953159809113, -0.05577819049358368, -0.0406210757791996, 0.11745161563158035, -0.01680702157318592, -0.04947732388973236, 0.017645101994276047, 0.0870540514588356, 0.06925033032894135, 0.031446944922208786, -0.04534294828772545, 0.051468245685100555, -0.027625467628240585, 0.0816323310136795, -0.09991344809532166, 0.020983858034014702, -0.06077351048588753, -0.0010761303128674626, 0.014845428988337517, 0.013223260641098022, 0.0020056518260389566, 0.014599663205444813, 0.09715009480714798, 0.05283031240105629, -0.0513574481010437, 0.1210443526506424, -0.15996354818344116, -0.10052960366010666, 0.08955731987953186, -0.08545450121164322, 0.00019989708380308002, 0.06767987459897995, -0.07208680361509323, -0.0636233314871788, -0.017360614612698555, 0.003817441174760461, 0.021939853206276894, -0.014580553397536278, 0.11002647131681442, -0.1093725636601448, -0.13038720190525055, -0.07229525595903397, -0.08383511751890182, 0.10010498762130737, 0.0719280019402504, -0.052270106971263885, -0.07757272571325302, 0.04294382408261299, -0.08693273365497589, 0.09947527199983597, -0.032943565398454666, -0.06475292891263962, -0.014620555564761162, -0.07136876881122589, 0.20060524344444275, 0.02307119034230709, -0.023012319579720497, -0.0443807989358902, -0.06255365908145905, 0.04782463610172272, -0.11052308231592178, -0.036596715450286865, 0.0974060669541359, -0.026561914011836052, 0.014456788077950478, -0.10783865302801132, -0.0501612052321434, 0.10457584261894226, -0.0445735827088356, -0.06823407858610153, -0.15789629518985748, -0.09519439190626144, 0.10306704789400101, 0.13593800365924835, 0.15160205960273743, -0.05715426430106163, 0.039111487567424774, 0.11305384337902069, 0.07516667991876602, -0.015488428063690662, 0.03785111755132675, 0.08735507726669312, -0.07754700630903244, 0.006663827691227198, 0.1342633217573166, 0.020514225587248802, -0.06678277254104614, 0.06885987520217896, 0.008002580143511295, -0.013582861982285976, 0.14316438138484955, 0.04422307014465332, -0.0005198424914851785, 0.03595687821507454, -0.01225283183157444, 0.2025635540485382, 0.06231493130326271, 0.03303169459104538, -0.031697869300842285, -0.04167598485946655, 0.0037167733535170555, -0.03901911526918411, 0.07973892241716385, -0.013703176751732826, 0.07919183373451233, 0.048875778913497925, -0.059159766882658005, 0.04580726474523544, -0.018041182309389114, -0.01546645350754261, -0.04111773520708084, -0.09959734231233597, -0.05924682319164276, 0.0296386256814003, 0.11628652364015579, -0.0974341630935669, -0.007621609140187502, 0.022282171994447708, 0.06266500055789948, 0.07790517061948776, 0.10033658146858215, 0.007094650529325008, -0.04864269867539406, -0.11126471310853958, 0.019612211734056473, 0.06418312340974808, 0.10792036354541779, 0.004839991685003042, 0.05598364770412445, -0.009766104631125927, -0.11538808047771454, 0.10203029215335846, -0.010915407910943031, 0.049401432275772095, 0.206802099943161, 0.060514409095048904, 0.03610440716147423, 0.017968136817216873, -0.14400050044059753, -0.11145193129777908, 0.0012455935357138515, 0.08528385311365128, 0.06591854244470596, -0.015945380553603172, -0.13789719343185425, 0.15472444891929626, -0.07800997793674469, 0.032563332468271255, 0.08032867312431335, -0.056193023920059204, 0.0622541643679142, 0.05501428619027138, -0.0703837051987648, 0.09966680407524109, 0.06885788589715958, 0.15473595261573792, 0.012103686109185219, 0.0034076140727847815, -0.0637909397482872, 0.12444492429494858, 0.07432650029659271, 0.07085900753736496, 0.06309349089860916, -0.13250771164894104, 0.045023877173662186, -0.07038096338510513, 0.0846891924738884, 0.027600299566984177, -0.11376623809337616, 0.0342760793864727, 0.06064363941550255], -insertvalue:[-0.10716443508863449, 0.12841026484966278, -0.11151733994483948, 0.08869490772485733, -0.027298253029584885, 0.023153826594352722, -0.10110246390104294, -0.07599804550409317, 0.01820581965148449, 0.03882220759987831, 0.01913720928132534, -0.04833792895078659, 0.08866630494594574, 0.11995472013950348, -0.09415245056152344, 0.03323643282055855, -0.09166961908340454, -0.027082599699497223, 0.019424304366111755, 0.012875300832092762, -0.021487606689333916, 0.010137687437236309, -0.060757216066122055, 0.10229915380477905, -0.106843501329422, -0.09191534668207169, -0.1166742593050003, 0.09523464739322662, -0.12462344020605087, -0.12513162195682526, 0.12335795909166336, 0.03880586102604866, -0.0024666248355060816, -0.09263832867145538, 0.005968946032226086, -0.09773571044206619, 0.09474062919616699, -0.05830322578549385, -0.1099298894405365, 0.07249829918146133, 0.020717091858386993, -0.009677988477051258, 0.05138464644551277, -0.07471995055675507, -0.015930363908410072, 0.0668216198682785, -0.015787484124302864, 0.016843436285853386, -0.05223207175731659, -0.03456113860011101, -0.037219416350126266, -0.0031995894387364388, -0.03655136376619339, -0.04697952792048454, -0.12723901867866516, 0.12525172531604767, -0.16661810874938965, -0.06043115630745888, -0.12846900522708893, 0.06176485866308212, 0.05235988646745682, -0.11303975433111191, 0.00623661931604147, -0.06401200592517853, 0.1257476508617401, -0.09509944170713425, 0.04339616745710373, -0.056166570633649826, -0.028642645105719566, 0.09400253742933273, -0.07397672533988953, 0.013987019658088684, -0.02733956091105938, -0.051499780267477036, -0.0506025068461895, -0.0017398360650986433, 0.043033115565776825, -0.041732057929039, 0.1520487368106842, 0.01638159155845642, 0.09048287570476532, 0.013761158101260662, -0.003709480632096529, -0.08399219810962677, -0.08984649926424026, 0.03787178918719292, -0.023797428235411644, 0.04757019504904747, 0.044130533933639526, -0.0188889242708683, -0.07750418782234192, 0.09342821687459946, 0.0005115072126500309, 0.050396427512168884, 0.06480710953474045, -0.1239367127418518, 0.11784827709197998, -0.008503860794007778, 0.07482312619686127, 0.022220933809876442, -0.06404557079076767, 0.06101271137595177, -0.1189689040184021, 0.024559620767831802, -0.025650544092059135, 0.014910534955561161, -0.0479038804769516, -0.052945397794246674, -0.026074079796671867, -0.13092097640037537, -0.010096311569213867, -0.009144920855760574, 0.0734456405043602, 0.035971928387880325, 0.14450961351394653, -0.012806972488760948, 0.020578982308506966, -0.039224639534950256, 0.08062173426151276, -0.09113281965255737, 0.11117111146450043, -0.001339233829639852, 0.016909601166844368, 0.07598746567964554, 0.020868824794888496, 0.04747527465224266, 0.08985687792301178, -0.11887785792350769, 0.022361207753419876, -0.13585850596427917, -0.03086165525019169, 0.06008269265294075, -0.04846164584159851, -0.01063572522252798, 0.08802202343940735, -0.12605789303779602, -0.062159229069948196, -0.04741154983639717, 0.06890872865915298, 0.037687998265028, -0.0071289027109742165, 0.043132320046424866, 0.04796862229704857, -0.044093795120716095, 0.006792792584747076, -0.004160109907388687, 0.01269238255918026, 0.04086767137050629, 0.039819952100515366, -0.017867762595415115, 0.024206720292568207, 0.017394931986927986, -0.14908325672149658, -0.01667865552008152, -0.06527005881071091, 0.041341330856084824, -0.0009475401020608842, -0.03125253692269325, -0.10247574746608734, -0.11315467953681946, 0.1296079158782959, 0.04958353191614151, 0.10021144896745682, -0.05029653385281563, 0.009274465031921864, 0.074776791036129, -0.010476826690137386, 0.04977833479642868, -0.08560839295387268, -0.10497401654720306, 0.030694399029016495, -0.0069932155311107635, -0.09685631096363068, -0.12145619839429855, 0.04335330054163933, -0.024887504056096077, 0.0992613434791565, -0.0688350573182106, -0.10218197852373123, 0.08719244599342346, 0.11464162170886993, -0.04605451226234436, -0.10482582449913025, -0.02387889288365841, 0.0038971148896962404, -0.11623433232307434, 0.02737661637365818, -0.037145309150218964, -0.05654078722000122, 0.0315745510160923, -0.05628677085042, -0.03429471701383591, -0.01572820171713829, -0.09447111934423447, -0.12281829118728638, 0.06670670211315155, 0.0013502048095688224, 0.03043019212782383, 0.03603449463844299, -0.15345044434070587, -0.07740655541419983, -0.01632656902074814, 0.0736156776547432, -0.0938885435461998, -0.06889493763446808, 0.03874337300658226, 0.02498219534754753, 0.13925819098949432, 0.06237393617630005, 0.020831000059843063, -0.12879711389541626, -0.09598071873188019, -0.026610227301716805, -0.03792507201433182, 0.07273049652576447, -0.05756404995918274, -0.10450682789087296, -0.10775629431009293, 0.00014869777078274637, 0.008754502050578594, -0.008092405274510384, -0.1277196854352951, 0.050293002277612686, -0.024917511269450188, 0.022835660725831985, -0.12380192428827286, -0.09852779656648636, 0.07255788147449493, -0.05278380960226059, -0.013776926323771477, 0.10289159417152405, 0.0031709724571555853, 0.05064062401652336, -0.045783113688230515, 0.08112197369337082, -0.12884771823883057, 0.10241200029850006, -0.01787235587835312, 0.08621993660926819, -0.027993835508823395, -0.07721392065286636, -0.06810248643159866, -0.07670460641384125, 0.1241290271282196, -0.0734495222568512, 0.009781679138541222, -0.04413702338933945, 0.06582625210285187, -0.05824780464172363, -0.05859070271253586, -0.07896295934915543, -0.08885341137647629, 0.08677677065134048, 0.006063562817871571, -0.03887654468417168, -0.03763823211193085, -0.12149059772491455, -0.056642234325408936, 0.027378223836421967, 0.10486163198947906, -0.050067756325006485, -0.008549674414098263, 0.051709942519664764, -0.00280313054099679, 0.026663348078727722, -0.1252625584602356, 0.022708548232913017, -0.05177929252386093, 0.030573269352316856, -0.019683077931404114, -0.11475825309753418, 0.09825512766838074, 0.023715706542134285, -0.04550941661000252, -0.01309733185917139, -0.08850836008787155, -0.09546559303998947, -0.08870720863342285, -0.07172542810440063, -0.062336694449186325, 0.04197661206126213, -0.03380221128463745, -0.0021953918039798737, 0.005751010961830616, 0.005353287793695927, -0.0509188175201416, 0.12034628540277481, -0.11799212545156479, -0.09106909483671188, 0.019248364493250847, 0.06973984837532043, -0.01380671001970768, -0.04938516765832901, -0.11765988171100616, -0.10098084807395935, 0.10787969082593918, -0.14913025498390198, 0.006176821421831846, -0.005941156763583422, 0.13869978487491608], -integerTy:[-0.12154067307710648, 0.001931958133354783, -0.077987439930439, 0.08253557980060577, -0.08779674023389816, 0.0924898311495781, 0.04215896129608154, -0.09902749955654144, 0.033079445362091064, -0.01766498200595379, -0.015343462117016315, -0.014856410212814808, -0.031559236347675323, 0.10419374704360962, -0.07476335763931274, 0.05783108249306679, -0.09440015256404877, 0.016425959765911102, 0.018494492396712303, -0.08002585917711258, 0.016709186136722565, 0.08198067545890808, 0.11408236622810364, -0.024129293859004974, 0.07778008282184601, 0.04931458830833435, 0.018580956384539604, -0.07868529856204987, -0.04333799332380295, -0.005590764340013266, 0.04123848304152489, 0.05999830365180969, -0.004966046195477247, -0.04440077394247055, -0.0793956071138382, -0.0997430831193924, -0.06920316815376282, 0.02325277216732502, -0.10609108954668045, -0.0755801647901535, -0.07554212957620621, -0.03663717582821846, -0.034192368388175964, 0.006706960964947939, -0.14703190326690674, -0.05464283749461174, 0.05068333074450493, -0.041185759007930756, -0.03210096061229706, 0.021623041480779648, -0.0037824332248419523, -0.011057431809604168, 0.0228872187435627, 0.050387345254421234, 0.07443324476480484, 0.09539797157049179, -0.027925115078687668, 0.05415911599993706, 0.088389091193676, -0.13432469964027405, -0.05148179456591606, -0.012051045894622803, -0.06290543079376221, -0.0009715696796774864, -0.04905625805258751, 0.10155227035284042, 0.06540416181087494, 0.1283619999885559, -0.03547424450516701, -0.08309206366539001, 0.07863195240497589, -0.05052795633673668, -0.09403631091117859, -0.08965781331062317, 0.13748356699943542, 0.01799607090651989, -0.02357596717774868, -0.005469502415508032, 0.0051255179569125175, -0.04003247991204262, -0.05191826820373535, 0.018850700929760933, -0.004246407188475132, -0.04979018494486809, -0.07520649582147598, -0.08251476287841797, 0.08116450905799866, 0.09883332252502441, 0.008803648874163628, 0.1136019229888916, -0.009858865290880203, -0.09373991936445236, -0.005617173388600349, -0.018768073990941048, 0.017499953508377075, -0.08937045931816101, -0.08595645427703857, 0.08505214005708694, -0.09345634281635284, -0.06834642589092255, 0.10375209152698517, 0.06207752227783203, 0.06977558135986328, 0.05278338864445686, -0.05541606247425079, 0.07903551310300827, 0.09988320618867874, 0.0981791764497757, -0.06507784873247147, 0.123195581138134, -0.01581082120537758, 0.016926618292927742, -0.1323036551475525, 0.06296901404857635, -0.04836968705058098, 0.10916300117969513, 0.09654317051172256, 0.03562304377555847, 0.01664838381111622, 0.05630333721637726, 0.10093498975038528, -0.05921781808137894, -0.019421879202127457, -0.027507228776812553, 0.09526681154966354, 0.025261223316192627, -0.042082007974386215, 0.05722254142165184, -0.052539415657520294, 0.11121577769517899, -0.019679585471749306, -0.07400719076395035, -0.10879171639680862, -0.023431936278939247, 0.058892618864774704, 0.12608829140663147, 0.11214529722929001, 0.006013927981257439, 0.09074956178665161, -0.06205275282263756, -0.048736173659563065, -0.027202937752008438, 0.032668109983205795, 0.03609103336930275, -0.00945883896201849, 0.03802681714296341, 0.012878574430942535, 0.03932194039225578, 0.00495866360142827, -0.08219454437494278, -0.03551553934812546, -0.10696510970592499, -0.05253925919532776, 0.040961381047964096, -0.11889229714870453, 0.09646546095609665, -0.09872617572546005, 0.06690332293510437, 0.0632990375161171, 0.09560202807188034, -0.09997433423995972, 0.11579787731170654, 0.050615351647138596, 0.05586065724492073, -0.10484926402568817, 0.06772465258836746, -0.0016105311224237084, -0.07731867581605911, 0.07081376761198044, 0.011981544084846973, -0.03582526370882988, -0.052613455802202225, -0.08999226987361908, 0.08862069249153137, 0.04082487151026726, 0.0321354940533638, -0.08615333586931229, 0.07416742295026779, -0.015588267706334591, 0.04285676032304764, 0.08423137664794922, -0.1052621454000473, 0.06684810668230057, -0.0080384761095047, -0.015877628698945045, -0.05783797428011894, -0.03515364229679108, 0.11130811274051666, -0.07253485918045044, 0.029621198773384094, 0.05632638931274414, 0.14747300744056702, -0.1093444749712944, 0.07712026685476303, 0.048757076263427734, 0.06603354215621948, 0.040369149297475815, 0.008143061771988869, 0.09427908062934875, -0.014296045526862144, 0.06049982085824013, -0.04236375167965889, 0.054583072662353516, -0.05411478504538536, -0.09520869702100754, 0.005814120639115572, 0.031210118904709816, -0.08977238833904266, -0.020799877122044563, -0.055587224662303925, -0.07300185412168503, -0.01909141056239605, 0.022299790754914284, -0.002163936849683523, -0.07666175067424774, 0.08113077282905579, -0.08593727648258209, -0.12159520387649536, 0.000905695662368089, -0.03103802725672722, -0.12834027409553528, -0.016694365069270134, -0.03225313127040863, -0.012840239331126213, -0.025986628606915474, 0.10880912840366364, 0.08637072145938873, -0.019876468926668167, 0.09040280431509018, -0.06866134703159332, -0.06472660601139069, -0.0457238033413887, 0.028023429214954376, -0.12258227914571762, 0.03760791942477226, 0.10940128564834595, -0.05741959437727928, 0.06991619616746902, -0.09993954002857208, -0.09353102743625641, 0.09739919006824493, 0.08379767090082169, 0.09503193199634552, -0.10061988979578018, -0.0993511974811554, 0.04573488235473633, 0.1278468668460846, -0.05594300851225853, 0.027050893753767014, -0.10517161339521408, 0.053251177072525024, -0.04936601594090462, -0.0019000964239239693, 0.013956028036773205, -0.05701480433344841, -0.04514191672205925, -0.09499891847372055, -0.005127504467964172, -0.05704762041568756, 0.09143760800361633, 0.046083901077508926, 0.013135078363120556, 0.07257011532783508, -0.0011060534743592143, -0.052050501108169556, -0.0319727323949337, -0.0437149703502655, 0.10354770720005035, 0.06776018440723419, -0.06501453369855881, -0.10660688579082489, -0.0031295297667384148, -0.012565688230097294, 0.08342066407203674, -0.026844322681427002, 0.09736614674329758, -0.07463499903678894, -0.10260923951864243, -0.0018133962294086814, 0.03893882408738136, -0.03643915429711342, 0.06222149729728699, -0.06751004606485367, 0.09002336859703064, -0.06208403781056404, 0.08388245850801468, 0.05663219839334488, 0.06596096605062485, 0.016972359269857407, -0.08090927451848984, -0.11442787200212479, 0.011558759957551956, 0.1010136753320694, 0.09047047793865204, -0.051979873329401016, -0.13190285861492157, -0.0842532142996788, -0.0401553176343441, -0.10324186086654663, -0.0862199142575264], -inttoptr:[-0.10495243221521378, -0.06946215778589249, -0.09142652899026871, 0.05803794041275978, -0.09998007863759995, -0.09463315457105637, -0.1351490318775177, -0.02663700468838215, 0.05986786633729935, 0.08570712059736252, 0.04350007697939873, 0.002242851071059704, 0.12641456723213196, 0.14118029177188873, -0.11190911382436752, 0.10525903105735779, 0.12172391265630722, -0.018164219334721565, -0.005499218590557575, -0.01862257719039917, 0.045323390513658524, 0.0771993026137352, 0.1077006459236145, -0.13710713386535645, -0.0926399976015091, -0.06028525531291962, 0.12247529625892639, 0.03881097957491875, 0.04075770452618599, 0.04383609816431999, -0.05718272179365158, 0.044140104204416275, 0.07987456768751144, 0.005703356582671404, 0.01009040791541338, 0.07800096273422241, -0.054334428161382675, 0.03213958814740181, 0.15017151832580566, 0.12041215598583221, -0.11958343535661697, 0.01600269414484501, 0.011596811935305595, -0.07805100828409195, 0.09084592759609222, 0.026565225794911385, -0.023182621225714684, -0.026743721216917038, 0.013566628098487854, -0.07579782605171204, 0.03991974517703056, 0.013965817168354988, -0.15399372577667236, -0.028140919283032417, -0.11026142537593842, -0.03298463672399521, 0.024859996512532234, 0.10855536162853241, 0.007843032479286194, 0.07251466065645218, 0.032705195248126984, 0.03926025703549385, 0.06927913427352905, -0.09841110557317734, 0.10575076192617416, -0.09829406440258026, 0.06445717066526413, -0.029557911679148674, 0.07534432411193848, -0.09160078316926956, -0.13481228053569794, 0.10499122738838196, 0.10962217301130295, -0.05194767564535141, 0.07729804515838623, 0.0233430415391922, 0.018995625898241997, 0.022023046389222145, -0.06648958474397659, 0.027177276089787483, -0.015963448211550713, 0.0032687829807400703, -0.0014604200841858983, 0.1326986402273178, -0.1344837099313736, 0.015581152401864529, -0.09622259438037872, -0.029436586424708366, 0.046285100281238556, -0.07547222077846527, -0.04319469630718231, -0.007656550034880638, -0.06438355147838593, 0.08768688142299652, 0.06364335864782333, -0.06480641663074493, 0.03515336662530899, 0.10411316901445389, -0.12328701466321945, 0.023116838186979294, -0.09777972847223282, -0.12254016846418381, 0.08414128422737122, -0.06476160883903503, -0.1398196667432785, -0.09914170205593109, 0.12062248587608337, 0.028239930048584938, -0.031435057520866394, 0.12217003107070923, -0.02641231007874012, -0.0018149757524952292, -0.13093528151512146, 0.00643306877464056, 0.03959184139966965, 0.011756788939237595, 0.026504896581172943, -0.04221857339143753, -0.03334787115454674, -0.09549067914485931, -0.13291630148887634, 0.09242002665996552, -0.07963438332080841, -0.04365919157862663, -0.00017703291086945683, -0.09000968933105469, -0.029689710587263107, -0.11424668878316879, -0.08119922876358032, -0.055384498089551926, 0.0005853003822267056, -0.037629421800374985, 0.04761657491326332, 0.018039114773273468, 0.03777475282549858, 0.021148154512047768, 0.01953200064599514, -0.10036677867174149, -0.004011240787804127, -0.06413000077009201, 0.10960324108600616, 0.03683739900588989, -0.008129370398819447, 0.0007231300696730614, -0.020273951813578606, -0.07283919304609299, 0.0016818845178931952, -0.03746669366955757, 0.046385444700717926, -0.13603785634040833, -0.09976878017187119, 0.07590152323246002, 0.012970095500349998, -0.011426114477217197, 0.04061368480324745, -0.08441515266895294, 0.038456160575151443, 0.13950233161449432, 0.11998628824949265, 0.009254318661987782, -0.06611506640911102, 0.03134627640247345, -0.09047755599021912, 0.09183983504772186, 0.0206826813519001, -0.034285131841897964, -0.06356149166822433, 0.029161574319005013, 0.12526775896549225, 0.028183037415146828, 0.0841246247291565, 0.12622132897377014, 0.031416021287441254, -0.10859882831573486, -0.062445566058158875, -0.015272941440343857, -0.11832695454359055, 0.02008131518959999, -0.0675777867436409, 0.014659340493381023, -0.03609360009431839, -0.05627093091607094, -0.12016931176185608, 0.018245631828904152, 0.09820326417684555, 0.13632279634475708, 0.03104270249605179, -0.14525017142295837, 0.011093463748693466, -0.00773046026006341, -0.04953791946172714, -0.10103685408830643, -0.017085103318095207, -0.10839414596557617, 0.0932309553027153, -0.03340132161974907, 0.02117585763335228, -0.043560925871133804, 0.12962952256202698, 0.1098499745130539, 0.11276049166917801, -0.11046025902032852, -0.08567433059215546, 0.10670243948698044, -0.026402106508612633, 0.041374675929546356, 0.03878536447882652, -0.13596989214420319, -0.15248166024684906, -0.10770759731531143, 0.03958534449338913, 0.08567643165588379, 0.021457085385918617, -0.013051618821918964, -0.018858246505260468, -0.057935360819101334, -0.12067989259958267, -0.024201124906539917, 0.01864701882004738, 0.008834650740027428, 0.1386251598596573, -0.036565329879522324, 0.005761072039604187, 0.007509916555136442, -0.03450286015868187, -0.09313609451055527, -0.04405812919139862, 0.005472974851727486, 0.01526526641100645, 0.04739430919289589, -0.06034711375832558, 0.08376005291938782, 0.09210261702537537, 0.039888929575681686, -0.036614324897527695, 0.12679053843021393, -0.10111775249242783, -0.03130852431058884, -0.022321712225675583, 0.04533323645591736, -0.023854568600654602, -0.049478430300951004, -0.10295405983924866, 0.05313284322619438, 0.04103120043873787, 0.013185977935791016, -0.07134421169757843, 0.13690736889839172, 0.06695713847875595, 0.06380869448184967, -0.03300711512565613, 0.03020435757935047, 0.008996357209980488, 0.00011891612666659057, -0.034665223211050034, -0.052522752434015274, -0.07732725888490677, 0.0464315302670002, -0.036540597677230835, -0.01386698242276907, 0.05541625991463661, -0.013533621095120907, 0.04267851635813713, -0.005492711905390024, -0.12115345895290375, 0.13943687081336975, -0.14882400631904602, -0.10013747960329056, -0.110101118683815, 0.1131521537899971, 0.02262037806212902, -0.1275966614484787, -0.040585897862911224, 0.021726490929722786, 0.047374751418828964, 0.004278740845620632, 0.07569824159145355, -0.08311711996793747, 0.08134680986404419, 0.12795643508434296, 0.06802158802747726, -0.05530906096100807, 0.11557348072528839, -0.01638658531010151, 0.09890230000019073, -0.07481558620929718, 0.13608619570732117, -0.09119869023561478, 0.07404255121946335, -0.10764208436012268, 0.015446454286575317, -0.00917054619640112, -0.015412109903991222, -0.045161835849285126, 0.1449991911649704, 0.0018498775316402316, 0.026011712849140167, -0.017815429717302322, 0.1093173697590828, 0.11508049070835114], -invoke:[0.12934523820877075, 0.202055886387825, -0.11250954866409302, 0.048519253730773926, 0.026170598343014717, -0.001230514724738896, -0.025104783475399017, 0.11618292331695557, -0.14078553020954132, -0.002597660757601261, 0.006057587917894125, 0.06521250307559967, 0.052082885056734085, -0.039826106280088425, 0.15801256895065308, 0.11281312257051468, 0.03973307088017464, 0.02794739417731762, -0.11437809467315674, 0.014195053838193417, -0.012794844806194305, -0.11823213845491409, 0.03917029872536659, -0.06124616414308548, -0.031843915581703186, 0.10445177555084229, -0.02633996680378914, 0.03210877254605293, 0.03832389786839485, 0.11158860474824905, -0.02610216848552227, 0.09240768104791641, 0.04346977174282074, 0.11342845112085342, 0.10859847813844681, -0.08910176903009415, 0.06638030707836151, 0.040212612599134445, -0.07648203521966934, 0.05772532895207405, 0.06923163682222366, 0.04519253596663475, -0.08060600608587265, -0.0033836797811090946, -0.01218076515942812, 0.11050669848918915, -0.014423264190554619, 0.054191164672374725, -0.03218206390738487, 0.11633729934692383, 0.07660835236310959, -0.01884646899998188, 0.00472656125202775, 0.09677378833293915, -0.04733196273446083, -0.12592795491218567, 0.06563355773687363, 0.012571850791573524, 0.0052668387070298195, 0.10732712596654892, 0.046313315629959106, 0.03342213109135628, 0.04409698396921158, -0.12638546526432037, 0.11494331061840057, 0.029969949275255203, 0.04659838229417801, 0.01448969915509224, 0.057977475225925446, -0.025038281455636024, 0.034005265682935715, -0.16706641018390656, 0.023868007585406303, -0.08532898128032684, -0.17847858369350433, -0.17507986724376678, 0.034770019352436066, -0.1924128234386444, 0.021246101707220078, -0.18245522677898407, -0.030180400237441063, -0.04143643379211426, 0.08204391598701477, -0.06321199983358383, 0.05710674449801445, 0.07520020008087158, -0.06881821900606155, 0.010435719043016434, -0.1325203776359558, 0.05956694856286049, -0.05880969762802124, -0.07281338423490524, 0.02174324169754982, 0.09195209294557571, 0.059894535690546036, 0.04527914151549339, 0.027350550517439842, -0.047854408621788025, 0.0851132720708847, -0.02993057295680046, 0.03895527124404907, -0.07482456415891647, -0.04259515181183815, 0.14843535423278809, -0.04310290142893791, 0.15625299513339996, -0.05265357345342636, -0.008153365924954414, 0.09007903933525085, -0.059226229786872864, 0.022595180198550224, -0.052767861634492874, -0.08391358703374863, -0.14714954793453217, 0.035423409193754196, -0.015363880433142185, 0.04018400236964226, 0.1237390786409378, -0.12355701625347137, 0.07928015291690826, -0.006531673017889261, 0.11646826565265656, 0.09296958148479462, -0.10417162626981735, -0.017850829288363457, -0.039934247732162476, -0.11177977919578552, -0.007721777074038982, 0.13597548007965088, -0.011431713588535786, -0.0015696268528699875, 0.018496235832571983, 0.09534282982349396, -0.0922955572605133, 0.011170784942805767, -0.14367163181304932, -0.13449576497077942, 0.00017895561177283525, -0.0021460894495248795, 0.04317256808280945, 0.09788589179515839, -0.024501755833625793, -0.11880200356245041, 0.09053615480661392, -0.046018972992897034, -0.05850609019398689, -0.010738885961472988, 0.02659185416996479, 0.014748739078640938, 0.1497635543346405, -0.011434599757194519, 0.11855321377515793, 0.023661259561777115, -0.011436319909989834, 0.14684724807739258, -0.028629105538129807, 0.013092650100588799, 0.035987552255392075, -0.06101008504629135, 0.011875437572598457, -0.043981023132801056, 0.010506810620427132, 0.08478457480669022, -0.08234811574220657, -0.1082315742969513, -0.06575077772140503, 0.06480490416288376, 0.07421888411045074, -0.06787050515413284, -0.013319621793925762, 0.007762453518807888, 0.05814375355839729, 0.15368497371673584, 0.04708918184041977, 0.01758478954434395, -0.13351069390773773, 0.01107814908027649, -0.03719235956668854, 0.11538617312908173, -0.08330199122428894, -0.018075060099363327, 0.004564719740301371, 0.13916227221488953, -0.15389682352542877, -0.08372531831264496, -0.050713010132312775, 0.073336161673069, 0.11775749921798706, 0.0046821217983961105, -0.043699078261852264, 0.09914283454418182, -0.07368072122335434, 0.09444577246904373, 0.017932016402482986, -0.011444255709648132, 0.0007979456568136811, -0.007519572041928768, 0.10309522598981857, -0.14067170023918152, 0.039488568902015686, -0.013582916930317879, 0.012176429852843285, -0.1626368761062622, 0.03274385631084442, 0.027650946751236916, 0.03125494346022606, -0.2289201021194458, 0.11351191997528076, -0.15946348011493683, 0.02843080274760723, 0.0388370119035244, 0.11427000910043716, -0.000531975005287677, 0.04775980859994888, -0.1047859862446785, 0.06266475468873978, 0.04806598648428917, 0.04092774912714958, -0.1238972395658493, 0.016107361763715744, 0.10614220052957535, 0.03177838400006294, -0.0018383216811344028, -0.07987560331821442, 0.006312064826488495, -0.010765377432107925, -0.03239680826663971, -0.026794182136654854, 0.07083137333393097, 0.025988580659031868, 0.11859257519245148, 0.010509917512536049, -0.12698379158973694, 0.05774827301502228, 0.12262820452451706, -0.04621761292219162, -0.00019531029101926833, 0.011920618824660778, -0.00948007870465517, -0.04023629426956177, -0.08586274832487106, -0.011687914840877056, 0.048082780092954636, 0.08673164248466492, 0.07601247727870941, 0.07946593314409256, 0.022365236654877663, 0.03026045858860016, -0.12085410952568054, 0.10388094931840897, -0.021425185725092888, -0.02311033569276333, 0.125809445977211, 0.0029505020938813686, -0.14278703927993774, 0.20851175487041473, 0.08321476727724075, 0.027832690626382828, -0.013415001332759857, -0.004240475594997406, -0.040836039930582047, -0.11700604110956192, 0.018781807273626328, -0.018618272617459297, -0.0661146491765976, 0.07158491760492325, 0.05879850313067436, -0.09673707187175751, -0.11737184971570969, 0.13684993982315063, 0.06659135222434998, -0.03599454462528229, -0.027816127985715866, -0.047906745225191116, 0.023483989760279655, 0.08430582284927368, 0.03637733310461044, 0.15896952152252197, -0.0526934452354908, 0.050562534481287, -0.07037713378667831, 0.030911151319742203, -0.09053462743759155, -0.04594375193119049, 0.0995011255145073, 0.05177484452724457, -0.07183405756950378, -0.03356662020087242, -0.04879529029130936, -0.01583031192421913, 0.1731967031955719, -0.14877957105636597, -0.018401887267827988, 0.026881730183959007, 0.07372026145458221, 0.0062039694748818874, -0.045522015541791916, 0.005573742091655731, -0.0190776064991951, -0.016393227502703667], -label:[0.023177582770586014, -0.03410937637090683, -0.04700934514403343, -0.015392109751701355, 0.08029274642467499, 0.0587293840944767, 0.03662465885281563, 0.020744813606142998, 0.0436539426445961, 0.1034729927778244, 0.11687755584716797, -0.01330995000898838, -0.09032641351222992, -0.07633411884307861, -0.07472245395183563, -0.07449118047952652, 0.08173441141843796, 0.10944601893424988, 0.046820931136608124, -0.0919133722782135, -0.09947185963392258, -0.0170920230448246, -0.02609010972082615, -0.13167178630828857, 0.05597494915127754, 0.13637371361255646, 0.02540050446987152, 0.11086975038051605, 0.08585140854120255, 0.006707148626446724, 0.03238571062684059, -0.08967313170433044, -0.0921839028596878, 0.09766998887062073, -0.07400418072938919, -0.02353927679359913, 0.00968730729073286, -0.007842081598937511, 0.015754755586385727, -0.09150511026382446, -0.10281898826360703, -0.07958516478538513, 0.05236263573169708, 0.0697450190782547, 0.06145002320408821, 0.015391457825899124, 0.06077839806675911, -0.05054677650332451, 0.03290863707661629, 0.1028597354888916, 0.008069215342402458, -0.048207323998212814, -0.017885033041238785, -0.17006221413612366, -0.00667461846023798, -0.15298257768154144, -0.0664111003279686, -0.014304294250905514, 0.05459180474281311, -0.007931272499263287, 0.027516677975654602, 0.08736216276884079, -0.04033030942082405, -0.028857003897428513, -0.11612983793020248, -0.08171426504850388, -0.06197451427578926, -0.06727903336286545, -0.0633162409067154, 0.0480869822204113, -0.0359036922454834, -0.07840770483016968, 0.06414883583784103, 0.11337433010339737, -0.09873663634061813, -0.024237580597400665, -0.021648474037647247, -0.00845926720649004, -0.11944564431905746, -0.005032866261899471, 0.04915470629930496, -0.07489421963691711, -0.03610257804393768, 0.03766105696558952, -0.04478597268462181, -0.08889097720384598, 0.04283023253083229, -0.07637594640254974, 0.06258705258369446, -0.13828882575035095, 0.06201326474547386, 0.008963730186223984, -0.011343877762556076, 0.0027160749305039644, 0.04315780848264694, 0.10011068731546402, -0.03495239093899727, -0.13627541065216064, -0.03973805531859398, -0.049505118280649185, 0.031651705503463745, -0.03420184552669525, 0.02121991664171219, -0.07603312283754349, 0.012763574719429016, -0.12494474649429321, -0.06203453242778778, -0.06560274213552475, 0.11293815076351166, 0.018986143171787262, -0.02418196015059948, -0.07519246637821198, 0.020677056163549423, -0.07113073766231537, -0.02127043902873993, -0.07422249764204025, -0.070949986577034, 0.06036244332790375, 0.04401097446680069, 0.09859525412321091, -0.04806487634778023, 0.05018776282668114, -0.017995435744524002, -0.08597435057163239, -0.13420994579792023, 0.0567452646791935, -0.14996778964996338, -0.11381511390209198, -0.14551110565662384, 0.0627707988023758, -0.03132840618491173, 0.04643464460968971, 0.13601098954677582, 0.0488981157541275, 0.14509238302707672, 0.05865715071558952, -0.06988127529621124, 0.020664187148213387, -0.10977908968925476, -0.10207617282867432, -0.01827641762793064, 0.030557546764612198, -0.1516837626695633, 0.1314055472612381, 0.06459124386310577, -0.1227019652724266, 0.04679028317332268, -0.021837366744875908, 0.07232821732759476, 0.05561785399913788, 0.12622185051441193, -0.02281150594353676, 0.11314210295677185, -0.10649606585502625, 0.00700683007016778, -0.08953151851892471, -0.04370603337883949, -0.053944505751132965, 0.04884466901421547, -0.020589595660567284, -0.08387718349695206, -0.107937753200531, 0.03473673015832901, 0.1261599063873291, -0.052841708064079285, -0.028547754511237144, -0.047966115176677704, -0.02393498830497265, 0.03153422474861145, -0.01665164902806282, -0.05436965078115463, -0.04101896286010742, 0.12996982038021088, -0.008480454795062542, -0.14319665729999542, -0.06815492361783981, 0.14725959300994873, 0.08135642111301422, 0.007646726444363594, -0.11876596510410309, -0.12788504362106323, 0.06867051869630814, -0.12302238494157791, 0.04572349786758423, -0.07078704237937927, -0.056338269263505936, -0.010536972433328629, -0.05057467892765999, 0.06175541505217552, 0.005302800796926022, 0.13838723301887512, 0.01522161066532135, 0.13201504945755005, 0.10179149359464645, 0.013447855599224567, 0.0025588497519493103, -0.01407404150813818, 0.0496193990111351, -0.07363952696323395, 0.06200839951634407, -0.017062023282051086, 0.06194467470049858, 0.09537526220083237, -0.058148737996816635, -0.09615567326545715, -0.002896915888413787, 0.06728866696357727, 0.027745937928557396, 0.043641239404678345, 0.12034483999013901, -0.045675430446863174, 0.015519397333264351, -0.014679082669317722, 0.11088085919618607, 0.05111628770828247, 0.1295468807220459, -0.02581828646361828, 0.09645575284957886, 0.06106913834810257, 0.055261097848415375, 0.008073904551565647, -0.0538506917655468, -0.06789477169513702, -0.045299168676137924, 0.051315583288669586, -0.11545416712760925, 0.05696316435933113, -0.053267691284418106, -0.148690864443779, -0.039760980755090714, -0.12940606474876404, -0.10037665069103241, -0.16034528613090515, -0.022303443402051926, 0.04998287186026573, 0.033331453800201416, -0.05429777503013611, -0.1329619288444519, 0.12749986350536346, -0.08223249763250351, -0.02839239127933979, 0.05750260129570961, -0.006999795790761709, 0.03294062614440918, -0.055025599896907806, -0.0769146978855133, -0.030470257624983788, -0.035109080374240875, 0.026806432753801346, -0.014528323896229267, -0.11027123779058456, 0.07821393013000488, 0.04881696775555611, -0.06717067211866379, -0.03768468275666237, 0.13279691338539124, 0.020859384909272194, 0.006756358314305544, -0.038710817694664, 0.08386542648077011, -0.021351508796215057, -0.03922799229621887, -0.05915914103388786, -0.0008415670599788427, -0.1008925586938858, -0.029510261490941048, 0.0453839972615242, 0.09314914792776108, -0.13861827552318573, 0.03332526609301567, 0.13810378313064575, -0.05704208463430405, 0.05341862514615059, 0.1426854282617569, -0.023525258526206017, -0.07356856018304825, 0.00991489551961422, -0.0016541400691494346, -0.056687626987695694, 0.11266123503446579, 0.09323105961084366, 0.07148437947034836, -0.06875667721033096, -0.012324335053563118, -0.020575474947690964, -0.15428772568702698, 0.04600687325000763, 0.037233855575323105, -0.061077553778886795, -0.07296008616685867, 0.09602908790111542, -0.08456110954284668, 0.10018394887447357, 0.07981620728969574, -0.02099713496863842, -0.04359080269932747, -0.04461700841784477, 0.06241614744067192, 0.027154434472322464, 0.048626430332660675], -landingpad:[0.07566884160041809, 0.07248996943235397, 0.10437685996294022, 0.026256078854203224, -0.04289140924811363, -0.055946823209524155, -0.0778275728225708, -0.024933911859989166, -0.06194441020488739, 0.01762440614402294, 0.07441866397857666, -0.013383601792156696, -0.09251876175403595, -0.04684710502624512, -0.00985135231167078, -0.12057716399431229, -0.09691255539655685, -0.0034648936707526445, -0.05631629750132561, 0.07840249687433243, -0.04107946902513504, 0.008063022047281265, 0.016743646934628487, -0.08690167218446732, -0.038252752274274826, 0.09806643426418304, 0.10647369921207428, 0.05203353986144066, 0.0035955142229795456, -0.02459695376455784, -0.03814951702952385, -0.036054059863090515, 0.03657063469290733, 0.1294453740119934, -0.06956002116203308, -0.08784065395593643, 0.0039521255530416965, 0.026279596611857414, -0.08839444816112518, -0.08097019046545029, -0.04946283623576164, 0.030359461903572083, 0.03249263018369675, -0.014085909351706505, -0.03629324957728386, -0.07790888100862503, 0.0171620175242424, -0.06430409103631973, 0.01657225750386715, -0.022369472309947014, -0.010554715991020203, -0.017910649999976158, -0.005770608317106962, -0.006813572254031897, -0.08216702193021774, 0.023249605670571327, 0.0057726590894162655, -0.07039773464202881, 0.07330748438835144, -0.06678462773561478, -0.02635035663843155, 0.049894146621227264, 0.11840330064296722, -0.12250452488660812, 0.10841164737939835, 0.027886155992746353, 0.06708985567092896, -0.02624717354774475, -0.015071244910359383, -0.028161127120256424, 0.03214489668607712, 0.04947663098573685, 0.10091695934534073, -0.09538325667381287, -0.1765732318162918, 0.02473282627761364, 0.032673902809619904, 0.01629648171365261, -0.05944103002548218, 0.015384431928396225, 0.05782647058367729, -0.035548388957977295, -0.11004011332988739, 0.10435723513364792, 0.054450396448373795, -0.11389622092247009, -0.10948855429887772, -0.10145284980535507, -0.13990896940231323, 0.10218168795108795, -0.04582536593079567, 0.14533282816410065, -0.0552414208650589, 0.025245696306228638, -0.042480628937482834, -0.013738011941313744, 0.07191479206085205, -0.14994850754737854, 0.010336061008274555, 0.019053202122449875, -0.10577575117349625, 0.07335212826728821, 0.14109711349010468, 0.01216228399425745, 0.04574443772435188, 0.14978472888469696, -0.03790365904569626, -0.01767958141863346, 0.012421540915966034, 0.06642955541610718, -0.0015346705913543701, 0.035795778036117554, 0.07281049340963364, -0.14219291508197784, -0.11991414427757263, -0.14086662232875824, 0.026189060881733894, 0.020803608000278473, -0.03899962082505226, 0.01587185449898243, -0.08564183115959167, 0.11897347122430801, 0.07158936560153961, -0.009511932730674744, 0.10647276788949966, -0.0038835525047034025, -0.1307878941297531, 0.015223818831145763, 0.1263412982225418, 0.10770846903324127, 0.0307012852281332, -0.04026871547102928, 0.0004526450065895915, -0.013414189219474792, -0.05736082047224045, 0.02101205475628376, -0.13847565650939941, 0.08112118393182755, -0.0705282986164093, 0.12983372807502747, -0.05116971582174301, 0.12676191329956055, 0.025788530707359314, -0.015908364206552505, 0.03767705708742142, 0.1102055162191391, -0.020554477348923683, 0.05022990703582764, -0.062376804649829865, 0.14282839000225067, 0.14140893518924713, 0.027922499924898148, 0.028876660391688347, -0.04503239318728447, 0.02491435781121254, 0.10288619995117188, 0.0035128153394907713, -0.07030633836984634, 0.002267936710268259, 0.058310192078351974, 0.04260697588324547, 0.009116321802139282, 0.07965490221977234, -0.08693532645702362, -0.1042085587978363, -0.03577655926346779, -0.02320842072367668, -0.07594824582338333, -0.04426456242799759, 0.01492701843380928, 0.11017663776874542, 0.028397034853696823, -0.04883625730872154, 0.03476272523403168, 0.04489469528198242, 0.0005228139343671501, -0.008817752823233604, 0.04650196060538292, -0.05745626986026764, -0.11055393517017365, -0.1343490034341812, 0.07169347256422043, 0.15301813185214996, 0.0006765627767890692, 0.003802828025072813, -0.027011813595891, 0.00960609968751669, 0.05683949217200279, -0.08315515518188477, -0.03764751926064491, -0.12556828558444977, -0.0800987109541893, 0.15876516699790955, -0.11574026197195053, 0.021389111876487732, -0.0029577852692455053, 0.002058908110484481, 0.07892975956201553, 0.021726055070757866, 0.11084914207458496, 0.12202608585357666, 0.13466474413871765, -0.11023677885532379, -0.042490266263484955, 0.15714634954929352, -0.03976205363869667, 0.04590090364217758, 0.11922208964824677, -0.12145170569419861, -0.1110849380493164, 0.037059132009744644, 0.024860594421625137, -0.07874888926744461, -0.0487009733915329, -0.07357659935951233, 0.06674372404813766, -0.024793921038508415, 0.04624655470252037, -0.056304071098566055, 0.03203338757157326, 0.037063732743263245, 0.10559900850057602, 0.014522243291139603, -0.004306876566261053, -0.007239014841616154, -0.028541985899209976, -0.06817840039730072, -0.1352805346250534, 0.06928551942110062, 0.13083280622959137, 0.13889050483703613, 0.02928401529788971, 0.05896914750337601, 0.05141901597380638, 0.11718841642141342, -0.13265004754066467, 0.06724485754966736, 0.0003212308220099658, 0.07034580409526825, -0.14476625621318817, 0.06616809219121933, -0.16101936995983124, -0.13144545257091522, -0.10153970867395401, 0.10073572397232056, -0.09464627504348755, -0.07760720700025558, 0.0977867990732193, 0.0625847578048706, 0.038444772362709045, -0.11217077821493149, -0.019147885963320732, -0.057785388082265854, 0.015867451205849648, -0.1375599503517151, 0.060505591332912445, 0.11680100858211517, 0.05235967040061951, -0.0059390380047261715, -0.13241632282733917, -0.030444204807281494, -0.0034885311033576727, 0.11817850917577744, -0.019922664389014244, 0.05188225954771042, -0.08619631081819534, -0.0018229917623102665, 0.0665275901556015, 0.009407935664057732, 0.12911897897720337, -0.035137075930833817, 0.00014160978025756776, 0.0559924840927124, -0.06477633863687515, 0.0020047007128596306, 0.057849906384944916, -0.1318468153476715, 2.8501435735961422e-05, 0.017579054459929466, -0.06421113014221191, -0.08545190840959549, -0.009634798392653465, 0.0015391875058412552, -0.043889280408620834, -0.07009747624397278, 0.14182059466838837, -0.08569806069135666, 0.020867591723799706, 0.04953859746456146, -0.09424576908349991, -0.10518936812877655, -0.04083835706114769, 0.03095928207039833, 0.029231945052742958, -0.04101977497339249, 0.15263566374778748, 0.09215152263641357, 0.057726189494132996, -0.07969675958156586, -0.10764750838279724], -load:[0.11015752702951431, 0.029268447309732437, -0.11016183346509933, 0.08653724938631058, 0.015915527939796448, -0.0034839436411857605, -0.021092398092150688, 0.008537006564438343, -0.024883434176445007, -0.11326427012681961, -0.06911706924438477, 0.15870797634124756, 0.08081768453121185, -0.014083369635045528, 0.027484891936182976, 0.06166120991110802, 0.03736824914813042, -0.005228990223258734, 0.007214487064629793, 0.009775812737643719, -0.0056542144156992435, -0.11341260373592377, -0.13454242050647736, 0.05892527475953102, -0.07938753068447113, -0.08536206930875778, 0.04549265280365944, 0.037138618528842926, 0.016511734575033188, 0.08494697511196136, 0.0036615675780922174, 0.08415993303060532, 0.0758417621254921, -0.01208573393523693, 0.01805809885263443, 0.07628706097602844, -0.007666618563234806, -0.0013994792243465781, -0.03153218328952789, -0.0015520036686211824, 0.08747715502977371, 0.039002686738967896, 0.011567889712750912, 0.016822176054120064, -0.011576972901821136, 0.10658397525548935, -0.06923720240592957, 0.16802085936069489, -0.0642235279083252, -0.044020235538482666, 0.06933653354644775, 0.12847262620925903, -0.03983408212661743, -0.013040016405284405, -0.09598200023174286, -0.036063119769096375, 0.020543254911899567, -0.0817108228802681, -0.02449023723602295, 0.07895183563232422, -0.054271262139081955, 0.032342664897441864, 0.06763093918561935, 0.04576043039560318, 0.1272619217634201, 0.022929895669221878, 0.08265876024961472, 0.045300308614969254, 0.06272775679826736, -0.03717408701777458, -0.0048543913289904594, 0.06255768239498138, -0.008506343699991703, 0.02597547136247158, 0.03773064538836479, 0.028584247455000877, -0.07154714316129684, 0.20509357750415802, -0.0004477188049349934, 0.019882453605532646, -0.0018083240138366818, -0.022822435945272446, 0.21625888347625732, -0.044057127088308334, -0.09326308220624924, -0.011182968504726887, 0.06253457069396973, 0.07076490670442581, -0.07922834157943726, 0.04443090036511421, -0.052305303514003754, 0.03456711024045944, -0.05300859734416008, 0.11811947822570801, 0.060724593698978424, 0.10325626283884048, -0.06496524065732956, -0.0316617526113987, 0.019842633977532387, 0.024331826716661453, -0.08316114544868469, -0.09529179334640503, -0.0399639867246151, -0.0538930781185627, -0.06025334447622299, -0.09835650026798248, -0.021505990996956825, 0.03242947906255722, -0.09574815630912781, -0.05228764936327934, -0.008874391205608845, 0.11584614217281342, -0.054531972855329514, -0.020809974521398544, 0.03910883516073227, -0.020767083391547203, 0.2042132318019867, 0.16206718981266022, -0.11578965187072754, -0.000542558147571981, 0.02118055522441864, 0.024797379970550537, 0.05774388834834099, 0.05085263401269913, 0.016267331317067146, -0.026956573128700256, 0.05547542870044708, -0.05275795981287956, 0.033466968685388565, -0.006848757155239582, -0.21966274082660675, 0.03337421640753746, 0.0909193903207779, -0.05865608528256416, 0.03918588161468506, 0.014600574038922787, 0.052778441458940506, -0.033309757709503174, -0.003127611707895994, 0.028986752033233643, 0.06253298372030258, -0.13084524869918823, -0.07841729372739792, -0.049133822321891785, -0.15594591200351715, -0.05978778377175331, 0.02436159737408161, 0.14806731045246124, 0.15306881070137024, -0.0026479330845177174, 0.00029531301697716117, 0.022707771509885788, -0.13889716565608978, -0.1656605750322342, 0.001303979428485036, -0.027666768059134483, 0.0022360323928296566, -0.004812707658857107, -0.0497804656624794, 0.009658468887209892, -0.04196048900485039, 0.05920158326625824, 0.10202323645353317, -0.07051022350788116, 0.006605831440538168, 0.002803973387926817, 0.20033374428749084, 0.06635865569114685, -0.06905603408813477, -0.027724672108888626, -0.057432904839515686, -0.11369256675243378, 0.08332807570695877, 0.11208048462867737, 0.023688582703471184, -0.20379401743412018, -0.14172036945819855, -0.04932110756635666, 0.0764644593000412, -0.06618814170360565, -0.0340263694524765, -0.014456292614340782, -0.09647960215806961, -0.07418681681156158, -0.06010303646326065, -0.0009606736712157726, 0.013877072371542454, -0.0025587279815226793, 0.007845472544431686, -0.10970402508974075, 0.018109915778040886, -0.04000089690089226, -0.08413346856832504, -0.02288789115846157, -0.11721997708082199, -0.023321853950619698, 0.12888503074645996, -0.06248733401298523, -0.009532698430120945, 0.0310246329754591, -0.06627025455236435, 0.022749019786715508, -0.047784578055143356, 0.10611052066087723, -0.05517709255218506, 0.08274466544389725, 0.14415809512138367, 0.014861680567264557, -0.0013994458131492138, -0.022898327559232712, -0.10145309567451477, 0.04451027885079384, -0.1075054183602333, 0.06560036540031433, 0.04273325204849243, -0.02760438248515129, 0.039605725556612015, -0.07110577821731567, -0.06227115914225578, -0.0254324022680521, 0.08341383188962936, -0.02016351744532585, -0.12098759412765503, 0.08326240628957748, 0.08312246948480606, -0.07357612997293472, -0.015125569887459278, 0.03523460775613785, 0.013182160444557667, 0.020954621955752373, 0.05938590690493584, -0.05285719409584999, -0.051517147570848465, 0.056032031774520874, 0.01716996543109417, -0.05329180881381035, 0.09908050298690796, -0.016979891806840897, -0.013208644464612007, -0.029310941696166992, -0.07749170064926147, -0.027569688856601715, 0.032854557037353516, 0.08010171353816986, 0.03398366644978523, -0.04789437726140022, -0.04536791890859604, -0.05623743310570717, 0.0848919227719307, 0.05718209967017174, 0.06726611405611038, -0.03375883400440216, -0.042346011847257614, -0.17809510231018066, 0.04804912209510803, -0.2177991420030594, -0.09129184484481812, -0.006268841214478016, -0.0045347861014306545, -0.047925855964422226, 0.028112880885601044, -0.1597418636083603, 0.021478062495589256, -0.20050671696662903, -0.04868607595562935, 0.08496585488319397, -0.09544871747493744, -0.12356112897396088, -0.10865398496389389, -0.000762742361985147, 0.044015031307935715, 0.016773972660303116, 0.059875693172216415, -0.06151788681745529, 0.03912992402911186, -0.028794271871447563, 0.03568398952484131, -0.027398953214287758, -0.10337905585765839, 0.058990057557821274, 0.06304934620857239, 0.06769778579473495, -0.013515917584300041, -0.01834968663752079, 0.1052379310131073, 0.014276071451604366, -0.013129842467606068, -0.09559869021177292, -0.01479208655655384, -0.03926314413547516, 0.055685706436634064, -0.21774400770664215, -0.05164140462875366, 0.0045410883612930775, 0.0703592523932457, 0.004451909102499485, 0.023566914722323418, 0.029029101133346558, 0.032461803406476974, 0.08175347000360489], -lshr:[0.10438796132802963, 0.10533501207828522, 0.028655892238020897, 0.10514139384031296, 0.025265606120228767, 0.0011998943518847227, 0.083722785115242, -0.018568523228168488, -0.08813527226448059, -0.13191640377044678, 0.02998238615691662, -0.04469820857048035, 0.048513829708099365, -0.0060655646957457066, 0.12400326132774353, -0.13536712527275085, 0.04024067148566246, -0.0263080932199955, -0.23125459253787994, 0.015134847722947598, 0.11436542123556137, -0.16569200158119202, -0.09476444125175476, 0.10307800024747849, -0.033554624766111374, 0.01181738916784525, 0.05437127873301506, 0.028460564091801643, 0.059555646032094955, 0.13910800218582153, -0.13978420197963715, 0.11537404358386993, 0.13135001063346863, 0.07195120304822922, -0.13073591887950897, 0.042610567063093185, -0.10064536333084106, -0.06254611164331436, -0.03438521921634674, 0.10154367983341217, 0.021181127056479454, 0.11311826854944229, -0.15312567353248596, 0.07542774826288223, -0.012365836650133133, -0.10979799181222916, 0.10873904824256897, -0.03910411521792412, 0.022754013538360596, -0.11883445829153061, -0.013543667271733284, 0.029821189120411873, -0.11037887632846832, -0.07484599947929382, 0.0009085459751076996, -0.03883993625640869, 0.06273529678583145, 0.13325877487659454, -0.009532573632895947, 0.07295181602239609, -0.13142544031143188, 0.1045537069439888, 0.04719747602939606, 0.1174294725060463, 0.02559693716466427, 0.06413671374320984, 0.08374910056591034, 0.08029991388320923, 0.07423504441976547, 0.03319854661822319, 0.018193034455180168, -0.0395381860435009, -0.10453448444604874, 0.028705846518278122, -0.02057185396552086, -0.0320124626159668, -0.00878098513931036, 0.0475335456430912, -0.07593636959791183, -0.00492317508906126, -0.12879467010498047, 0.08102453500032425, -0.016143403947353363, -0.168479785323143, 0.10831473022699356, 0.09360534697771072, -0.07141538709402084, 0.05687481537461281, 0.11776583641767502, 0.035428401082754135, -0.12719745934009552, 0.04972562566399574, 0.13457870483398438, -0.1959313154220581, 0.1537303626537323, -0.1293608546257019, 0.009405737742781639, -0.03642170503735542, 0.09403260797262192, -0.046349287033081055, 0.09898776561021805, -0.07213594019412994, -0.03862049803137779, 0.06857877224683762, -0.020297953858971596, -0.07789521664381027, -0.03779561445116997, -0.09489138424396515, -0.03710813447833061, -0.03333592787384987, 0.06250780075788498, 0.01684541627764702, -0.09010645002126694, -0.03937523066997528, 0.06855957955121994, -0.0286013912409544, 0.02908061072230339, 0.08153390139341354, 0.012829586863517761, -0.11137397587299347, 0.029546070843935013, 0.020140910521149635, 0.13492754101753235, -0.0368654690682888, 0.08192962408065796, 0.01631864532828331, 0.05965913087129593, -0.013128116726875305, 0.02491445653140545, 0.007658243179321289, 0.0012632417492568493, -0.044439297169446945, 0.04145224392414093, 0.10232102870941162, 0.00896739587187767, -0.04232301935553551, -0.10563353449106216, 0.06797075271606445, -0.08794786781072617, -0.007508194539695978, 0.13433705270290375, 0.13524596393108368, 0.12456640601158142, 0.10223966091871262, 0.05969790741801262, -0.09623795747756958, -0.014366427436470985, 0.007073064334690571, -0.06537539511919022, 0.09514518082141876, 0.06626569479703903, 0.06773804128170013, 0.06366345286369324, 0.03211747482419014, -0.1384149044752121, -0.02880566567182541, 0.025134803727269173, -0.060405831784009933, -0.1117834523320198, 0.012028523720800877, -0.04099045693874359, 0.15379993617534637, -0.13707393407821655, -0.03529662266373634, -0.024084312841296196, -0.12115370482206345, 0.009562579914927483, 0.07040654867887497, -0.06963200122117996, 0.048911239951848984, 0.012449470348656178, -0.11971262842416763, 0.09884712845087051, 0.14006184041500092, 0.008585034869611263, 0.010571714490652084, -0.16204151511192322, -0.11579902470111847, -0.12035251408815384, -0.08576096594333649, -0.07995182275772095, -0.07996318489313126, -0.07883835583925247, 0.06100383400917053, 0.04657333344221115, -0.01570635661482811, 0.025195611640810966, 0.0010827166261151433, 0.009854909032583237, -0.1267356425523758, 0.13282819092273712, -0.126534104347229, -0.08100517094135284, 0.01887703686952591, -0.024807048961520195, -0.05064775422215462, 0.02676861360669136, -0.017865272238850594, -0.08377987891435623, 0.09963875263929367, -0.06552054733037949, 0.012521532364189625, -0.01639397256076336, 0.1431272029876709, 0.029113387688994408, 0.029492463916540146, 0.013367902487516403, 0.052343737334012985, 0.04572654888033867, -0.03486362099647522, 0.02293265052139759, 0.09437304735183716, 0.0030756876803934574, 0.08526859432458878, 0.10711885988712311, 0.013944122940301895, 0.05663840100169182, -0.015797246247529984, 0.08025030046701431, -0.10108528286218643, 0.1008499413728714, 0.04201614856719971, 0.029403122141957283, 0.018153304234147072, -0.13079123198986053, -0.10936382412910461, -0.012755640782415867, 0.05825969576835632, 0.01069625373929739, -0.04967470094561577, -0.004246103577315807, 0.10089199244976044, -0.13803575932979584, -0.09061390161514282, -0.004275856073945761, -0.07521187514066696, 0.06641490012407303, -0.12276557832956314, -0.005647016689181328, -0.033815544098615646, -0.07878095656633377, -0.05174817144870758, 0.03701678663492203, 0.09692563861608505, 0.029989106580615044, 0.026836274191737175, -0.11886788159608841, -0.024634217843413353, 0.0045229108072817326, -0.01925790123641491, 0.08976264297962189, 0.03925453871488571, -0.009363961406052113, 0.09386341273784637, 0.06982340663671494, -0.007369665428996086, 0.08444751054048538, 0.10461074858903885, -0.038737501949071884, 0.10408519953489304, 0.08009367436170578, -0.0059282598085701466, 0.013378487899899483, -0.02151477336883545, 0.0038655081298202276, 0.08578774333000183, -0.10835303366184235, -0.10817690193653107, -0.08212561160326004, -0.0317208506166935, -0.08530166745185852, 0.0529751293361187, -0.06000390648841858, 0.12238674610853195, 0.12451841682195663, 0.00872100330889225, 0.026436561718583107, -0.015312504954636097, -0.13132344186306, 0.033037904649972916, 0.025543993338942528, 0.05661561340093613, -0.06718438118696213, 0.018731392920017242, 0.10431936383247375, -0.11103419214487076, -0.10837216675281525, 0.1322021335363388, -0.11215677112340927, -0.032698530703783035, 0.06538087874650955, -0.16336879134178162, 0.014240535907447338, 0.04495193436741829, 0.0678066611289978, -0.0430569052696228, -0.004736056551337242, -0.13163869082927704, -0.026131678372621536, -0.018354015424847603], -mul:[0.0006312591722235084, 0.10004061460494995, 0.021312471479177475, 0.0952601432800293, 0.024016551673412323, -0.0001728661882225424, -0.019185317680239677, 0.10521018505096436, -0.08089321851730347, -0.12579227983951569, 0.022075723856687546, 0.0061785378493368626, 0.04644029960036278, 0.05600567162036896, 0.03584917634725571, -0.11996788531541824, 0.05993824079632759, 0.008752407506108284, -0.2529827952384949, -0.0017667972715571523, 0.10396571457386017, 0.07071123272180557, -0.03782544285058975, 0.09922875463962555, -0.035459164530038834, 0.0015007336623966694, 0.021581700071692467, 0.044423945248126984, 0.05367411673069, 0.11358420550823212, -0.02594088576734066, 0.10882078856229782, 0.08320778608322144, -0.06654991209506989, -0.015662377700209618, 0.045903995633125305, 0.10795208066701889, -0.036501720547676086, -0.016221944242715836, 0.060527361929416656, 0.10040866583585739, -0.025125691667199135, 0.0021939671132713556, 0.08034134656190872, -0.019430814310908318, 0.11661418527364731, -0.048933885991573334, -0.0329776294529438, 0.016312608495354652, -0.10188154876232147, -0.10787683725357056, 0.17244082689285278, 0.04085972532629967, -0.10817833989858627, -0.01918615959584713, -0.04396118223667145, 0.022690381854772568, 0.13727465271949768, -0.015500177629292011, 0.06184813752770424, 0.026144590228796005, -0.09740564227104187, 0.08343369513750076, 0.006841756869107485, 0.04215346649289131, 0.05859106406569481, 0.017268819734454155, 0.07703379541635513, 0.11988052725791931, 0.016893696039915085, 0.015695523470640182, -0.032112523913383484, -0.09914081543684006, 0.07882039994001389, -0.08312046527862549, 0.07905643433332443, -0.005084564443677664, -0.1538040190935135, -0.10231658816337585, -0.1159975454211235, -0.11293216794729233, -0.06374987214803696, -0.014885309152305126, -0.02061431109905243, 0.07348917424678802, -0.03548702597618103, 0.017934687435626984, 0.040981363505125046, -0.04997725412249565, 0.007339830044656992, -0.08847852051258087, -0.06544765084981918, 0.027023157104849815, -0.055697400122880936, -0.030737707391381264, 0.0287375058978796, 0.03263860568404198, -0.05779126659035683, 0.025036044418811798, 0.00016174405755009502, -0.04292837157845497, -0.10946470499038696, 0.0688181221485138, 0.04446021467447281, -0.0490049310028553, -0.04634058102965355, -0.09576210379600525, 0.07951615750789642, -0.08058594167232513, -0.014174941927194595, -0.14748947322368622, 0.053955066949129105, -0.10175741463899612, -0.1014266088604927, -0.08061109483242035, 0.03284186124801636, 0.04718019813299179, 0.14719761908054352, -0.13791343569755554, -0.08703786134719849, 0.016378482803702354, -0.05297395586967468, 0.06266968697309494, -0.03315134719014168, 0.07941377907991409, -0.0823153704404831, -0.11203472316265106, -0.011163674294948578, -0.014070486649870872, 0.02016294375061989, -0.012480931356549263, -0.05877700820565224, 0.04014233499765396, -0.07327129691839218, 0.026859592646360397, 0.004691069945693016, 0.0438455305993557, 0.002880592830479145, -0.0037649222649633884, -0.054541077464818954, 0.08514903485774994, 0.009926089085638523, -0.1655445247888565, 0.08445410430431366, -0.04973120614886284, -0.08963000029325485, -0.019502947106957436, 0.03753327950835228, -0.04481309652328491, -0.014487241394817829, -0.17569923400878906, 0.07132381945848465, -0.05499233677983284, 0.006235603708773851, 0.03820466250181198, -0.029061969369649887, 0.01534021645784378, 0.11122213304042816, -0.10554108768701553, 0.008375837467610836, -0.044393591582775116, -0.02703936956822872, 0.06977720558643341, 0.034752584993839264, 0.003498763544484973, -0.011663146317005157, -0.06918925046920776, 0.1008177399635315, 0.06268381327390671, -0.059277188032865524, 0.020835967734456062, -0.07778911292552948, 0.1163167878985405, 0.11685774475336075, -0.03404839336872101, 0.013140302151441574, -0.15229065716266632, 0.014611969701945782, 0.08217854797840118, -0.026988334953784943, -0.1016097292304039, -0.04128284007310867, -0.09625660628080368, -0.029749177396297455, -0.016561364755034447, -0.019286444410681725, -0.17681528627872467, -0.08970373868942261, 0.0042222547344863415, -0.10531706362962723, 0.10670029371976852, -0.09510554373264313, -0.11054974794387817, 0.0159078910946846, -0.0814155787229538, -0.032183777540922165, 0.07102137804031372, 0.10618708282709122, 0.002656231401488185, -0.14134205877780914, -0.09426569193601608, 0.037491075694561005, -0.04103831574320793, 0.07430368661880493, -0.020587554201483727, 0.06628049910068512, -0.09034766256809235, 0.01564767397940159, -0.06793062388896942, -0.013263305649161339, 0.022201411426067352, 0.14537443220615387, 0.05201241746544838, 0.07977686822414398, 0.1084483414888382, -0.027155045419931412, 0.046530831605196, -0.028707517310976982, -0.08810587972402573, -0.040939345955848694, 0.06596589088439941, 0.03345099464058876, -0.05383829399943352, 0.09361344575881958, -0.07546459883451462, -0.06421530991792679, -0.0049731191247701645, 0.04931693524122238, 0.014442993327975273, 0.04820841923356056, -0.07454944401979446, -0.024691559374332428, -0.11459748446941376, 0.10126923769712448, 0.12175504118204117, -0.03433442860841751, -0.14870581030845642, -0.09030003845691681, 0.014087527990341187, -0.03796287998557091, -0.06935616582632065, -0.0667627826333046, 0.06370627135038376, 0.054737839847803116, -0.003493218682706356, -0.10260309278964996, 0.019763469696044922, -0.08515197783708572, 0.004956698045134544, 0.07480179518461227, 0.12614527344703674, 0.03277216851711273, 0.10760850459337234, 0.19617372751235962, 0.05920114368200302, -0.05983572453260422, 0.0753524973988533, -0.1288793832063675, -0.10528702288866043, -0.02100193500518799, 0.08000094443559647, -0.08957396447658539, 0.008134138770401478, -0.08921636641025543, -0.001042934600263834, 0.07652553915977478, -0.11414030939340591, -0.09183262288570404, -0.10953391343355179, 0.02843899466097355, 0.08104667067527771, 0.08871090412139893, 0.023831354454159737, -0.1058100014925003, 0.10822493582963943, 0.03003673441708088, 0.03263859450817108, -0.019883617758750916, -0.12678304314613342, 0.0661582425236702, 0.06912916898727417, -0.09017057716846466, -0.08439033478498459, 0.015624433755874634, 0.12095609307289124, 0.026664910838007927, -0.035147249698638916, -0.02705424278974533, 0.045980993658304214, -0.06150571629405022, -0.10177690535783768, -0.056886959820985794, 0.027879033237695694, 0.05299266055226326, 0.062723807990551, 0.0043229274451732635, 0.03701792657375336, -0.0849054604768753, -0.002829762175679207, 0.06198130548000336], -or:[0.11730242520570755, 0.032592371106147766, 0.015521724708378315, 0.09832247346639633, 0.023351183161139488, -0.0012399294646456838, -0.018122775480151176, 0.0654069110751152, -0.049335330724716187, -0.12009330838918686, -0.05337939411401749, -0.08119966834783554, 0.06709520518779755, 0.02843601070344448, 0.0849541649222374, 0.017883528023958206, 0.021865617483854294, 0.02257257141172886, -0.14578042924404144, 0.019902057945728302, 0.10050129890441895, -0.16555486619472504, 0.035341840237379074, 0.07719084620475769, -0.019304482266306877, -0.04864002391695976, -0.004762187600135803, -0.002760622650384903, -0.017161475494503975, 0.10885311663150787, -0.07866087555885315, 0.04548664018511772, 0.07922632247209549, -0.043178919702768326, 0.02457350306212902, 0.037675950676202774, 0.01148588489741087, -0.10205893218517303, -0.021307898685336113, 0.006521075032651424, 0.019936440512537956, 0.06523804366588593, -0.08032770454883575, -0.06418520957231522, -0.06867734342813492, 0.1083366796374321, -0.010030035860836506, -0.09292055666446686, 0.2284669131040573, -0.06790125370025635, -0.11004268378019333, -0.1960502564907074, -0.04137292131781578, 0.05478539317846298, -0.044504158198833466, -0.03216031566262245, -0.11959144473075867, 0.05126728489995003, -0.02201620489358902, 0.07774417102336884, 0.0385754257440567, 0.018300555646419525, 0.04640704765915871, 0.028248252347111702, 0.08259158581495285, -0.09208227694034576, 0.04643036052584648, 0.04870269075036049, 0.06971530616283417, -0.0043291677720844746, 0.013880458660423756, -0.02407313510775566, -0.09342999756336212, 0.006559895351529121, 0.02379828318953514, -0.04312825947999954, -0.005058239679783583, -0.052506834268569946, 0.025376593694090843, 0.0885932669043541, -0.05956714600324631, -0.07641931623220444, -0.1817619502544403, -0.07615797966718674, 0.09799392521381378, 0.08134967088699341, 0.03979732096195221, 0.03764728829264641, -0.04298892617225647, -0.014578808099031448, -0.08248197287321091, 0.039378922432661057, 0.04033874347805977, 0.05667194724082947, -0.012716779485344887, 0.028311487287282944, 0.03991686552762985, -0.03173460438847542, 0.05035186931490898, 0.008279724977910519, 0.06274881213903427, -0.0679439976811409, -0.03767760470509529, 0.16396954655647278, 0.056338563561439514, -0.07345464080572128, -0.07610878348350525, 1.383037306368351e-05, 0.04341736435890198, -0.05081235244870186, -0.10625535249710083, -0.17790420353412628, -0.06523251533508301, -0.02403850294649601, 0.059295229613780975, 0.02244563214480877, -0.11505518853664398, -0.0030111444648355246, -0.0017263301415368915, -0.032065797597169876, 0.021474475041031837, 0.056133951991796494, 0.09227386862039566, -0.00026908685686066747, 0.040596745908260345, 0.06675367802381516, -0.06965067982673645, -0.002681350102648139, 0.04385186359286308, -0.03607669845223427, -0.21821704506874084, 0.03674984723329544, 0.10497394949197769, 0.14749106764793396, 0.008211708627641201, -0.013079791329801083, 0.04630642756819725, 0.06197453290224075, 0.0012477242853492498, -0.029490122571587563, 0.09723451733589172, -0.019061461091041565, -0.03369232267141342, -0.08461858332157135, -0.05461680144071579, -0.08781055361032486, 0.22435151040554047, -0.20418302714824677, 0.008040831424295902, -0.014760646037757397, -0.06798427551984787, 0.08919143676757812, -0.055212777107954025, 0.14660108089447021, 0.059929415583610535, -0.026699785143136978, 0.015165388584136963, 0.09911670535802841, -0.08013870567083359, -0.036227352917194366, -0.03639965131878853, -0.06517978757619858, 0.08291164040565491, -0.04834228381514549, 0.003201183397322893, 0.08732710778713226, -0.06963987648487091, 0.07793384045362473, -0.037772100418806076, -0.041650187224149704, -0.04378412291407585, -0.03993162885308266, 0.08966182172298431, 0.03365790843963623, 0.05768612027168274, 0.1347484141588211, -0.13611100614070892, -0.07926975935697556, 0.09412490576505661, -0.05484098196029663, -0.023935824632644653, -0.033995307981967926, -0.06960117816925049, -0.07174108177423477, -0.05967755615711212, -0.059560276567935944, 0.023919079452753067, 0.014520755968987942, -0.007378680631518364, -0.11939629167318344, -0.06620514392852783, -0.04525715112686157, 0.08236704766750336, 0.022357696667313576, -0.11824384331703186, -0.028310230001807213, 0.1129065752029419, 0.07673583179712296, -0.004148614127188921, -0.10084009915590286, -0.052461620420217514, 0.02191203273832798, -0.027363291010260582, 0.11048229783773422, -0.05017399042844772, -0.1715804636478424, 0.01007792167365551, 0.001476607983931899, 0.15960069000720978, 0.0034314007498323917, 0.03717472031712532, -0.016511056572198868, -0.11600549519062042, 0.05392177402973175, -0.05812699720263481, 0.018798397853970528, 0.04828394949436188, -0.04625380039215088, -0.006077498197555542, -0.1239200234413147, 0.07326388359069824, 0.029766634106636047, 0.1819107085466385, -0.08295730501413345, 0.040809515863657, -0.07015347480773926, -0.008683831430971622, 0.039616480469703674, 0.006757223978638649, 0.02845975197851658, 0.05780912935733795, -0.023515067994594574, -0.10994376242160797, -0.015183079056441784, -0.0012991820694878697, -0.06577442586421967, 0.0775705873966217, -0.020638281479477882, -0.012121039442718029, -0.03773713856935501, -0.07195378839969635, -0.03876510262489319, 0.03933241590857506, 0.08338598161935806, 0.04488535597920418, 0.054424405097961426, 0.02128881961107254, -0.050137463957071304, 0.085178904235363, 0.0633048564195633, 0.04230151325464249, 0.011693431995809078, -0.13667646050453186, 0.18955005705356598, 0.06156638637185097, -0.0908857211470604, 0.0653199777007103, -0.13075047731399536, -0.1060943752527237, -0.0030282402876764536, 0.02956061251461506, 0.14026112854480743, 0.00046882269089110196, -0.0903303250670433, -0.05228123441338539, 0.0743369534611702, -0.03472715616226196, -0.12939372658729553, -0.10874982923269272, 0.010608707554638386, 0.06167932227253914, 0.04710053279995918, -0.08067742735147476, -0.05718625709414482, 0.05884817987680435, -0.022187083959579468, 0.03341822326183319, 0.00953550636768341, -0.10262488573789597, 0.05465703830122948, 0.08258925378322601, 0.15752938389778137, -0.04679109901189804, 0.016558712348341942, 0.1419641375541687, 0.008012271486222744, 0.056718409061431885, -0.056637201458215714, -0.016583135351538658, -0.05176327005028725, 0.05588176101446152, -0.04621017351746559, -0.10050651431083679, 0.03960375860333443, 0.06316352635622025, 0.008348819799721241, 0.010051178745925426, 0.004591688048094511, -0.014017704874277115, 0.056295618414878845], -phi:[-0.016408246010541916, 0.03891175612807274, 0.0489308163523674, -0.010868148878216743, -0.04586280509829521, -0.05034831538796425, 0.09859230369329453, 0.11226890236139297, -0.030753057450056076, 0.013973028399050236, -0.06062198802828789, 0.07185124605894089, 0.023863380774855614, -0.03380166366696358, -0.0015088381478562951, -0.13888397812843323, -0.09419787675142288, 0.02746264636516571, -0.011708080768585205, 0.019393719732761383, 0.04335568845272064, 0.07379093766212463, 0.029949910938739777, -0.02794160507619381, -0.03663111478090286, 0.021047765389084816, -0.1635475903749466, 0.1235290989279747, 0.008116994984447956, 0.06496961414813995, 0.08440624922513962, -0.1312098652124405, 0.046767402440309525, 0.010881107300519943, -0.11853887140750885, 0.10200145095586777, 0.12111888080835342, 0.09310325980186462, 0.07726699858903885, 0.034177280962467194, -0.03551254794001579, 0.038562145084142685, -0.051878202706575394, 0.03356345370411873, -0.009615026414394379, 0.050076596438884735, -0.01951337419450283, 0.061680737882852554, -0.05502340570092201, -0.05812939628958702, 0.01815108209848404, -0.13697397708892822, -0.038750335574150085, -0.1152963936328888, 0.10734127461910248, -0.0326993353664875, 0.12013901025056839, 0.07765446603298187, 0.002787056379020214, 0.09690998494625092, -0.0240244809538126, -0.1104850098490715, 0.0376439169049263, -0.0638447180390358, -0.0891941487789154, 0.1162252351641655, -0.11077286303043365, -0.033810339868068695, 0.054218634963035583, -0.049233533442020416, -0.061408087611198425, 0.07013649493455887, -0.009734979830682278, -0.035689372569322586, -0.16076867282390594, -0.054161276668310165, -0.08308850973844528, -0.0941954031586647, 0.03127271682024002, -0.12694740295410156, -0.19296380877494812, 0.030525023117661476, 0.09464039653539658, -0.033154215663671494, 0.05244679003953934, 0.08574529737234116, -0.061541393399238586, -0.09683913737535477, -0.04378698766231537, -0.02390439808368683, 0.013266241177916527, -0.017253214493393898, 0.00420177960768342, 0.01655595749616623, -0.011493257246911526, -0.03790517896413803, 0.05687667056918144, -0.029947500675916672, 0.15110203623771667, 0.06058993935585022, -0.11389119178056717, 0.06443411111831665, -0.13059483468532562, -0.07943917065858841, 0.11374285817146301, 0.015029867179691792, -0.04939169064164162, 0.011945977807044983, 0.05332058295607567, -0.19669735431671143, 0.10899145156145096, -0.04946225509047508, -0.03215381130576134, -0.05451420694589615, 0.1642182469367981, 0.05664679408073425, -0.12825536727905273, 0.11761455237865448, -0.0633506029844284, 0.06914449483156204, 0.034434620290994644, -0.12855321168899536, 0.17146353423595428, -0.027074366807937622, -0.014984128065407276, 0.10307320207357407, -0.009144789539277554, -0.014523149468004704, -0.09016432613134384, -0.022276921197772026, -0.08867105841636658, -0.08732064068317413, 0.0219391118735075, -0.012445111759006977, 0.0036420070100575686, -0.13370734453201294, -0.12272091209888458, 0.06681784242391586, -0.0014291302068158984, -0.037134017795324326, 0.06850709021091461, -0.0701388493180275, 0.07463370263576508, 0.08482200652360916, -0.04361344501376152, -0.00783227477222681, 0.04464303329586983, 0.00846361368894577, -0.014537470415234566, -0.06305409222841263, -0.03651173412799835, 0.016685644164681435, 0.10142896324396133, -0.009027428925037384, 0.13233862817287445, 0.014815678820014, 0.1526447981595993, -0.10529103130102158, -0.04655538871884346, -0.0435858815908432, 0.04048986732959747, 0.005492552649229765, -0.08546636253595352, 0.07997879385948181, 0.11303654313087463, 0.0739438459277153, 0.10696596652269363, 0.05164732411503792, -0.03356855735182762, -0.04114033654332161, 0.03333276882767677, -0.0393216572701931, 0.028163563460111618, -0.0568881556391716, -0.008785218931734562, -0.026760879904031754, 0.08635419607162476, -0.0333540253341198, 0.047078054398298264, 0.08564189076423645, -0.1107143759727478, 0.012946940027177334, -0.0459788478910923, -0.01017710566520691, 0.020967071875929832, 0.00787125714123249, 0.06204137206077576, 0.022444328293204308, -0.04318206012248993, -0.040489256381988525, 0.010304998606443405, -0.03505020961165428, -0.015348725020885468, 0.016471438109874725, 0.06783916801214218, -0.14457635581493378, -0.012206191197037697, 0.09296229481697083, -0.003641610499471426, 0.003985359333455563, 0.04961755871772766, 0.010298301465809345, 0.0006231532897800207, -0.043324731290340424, 0.029019756242632866, 0.028262490406632423, 0.034104619175195694, 0.1035819947719574, -0.021863384172320366, 0.04277431219816208, 0.017579741775989532, 0.03984551876783371, 0.05366945266723633, -0.03662484139204025, -0.09237195551395416, -0.009270134381949902, 0.1740775853395462, 0.037467505782842636, 0.024307267740368843, -0.06686878949403763, 0.04272138699889183, 0.10758274793624878, -0.1217309832572937, -0.006619322579354048, 0.03907713666558266, 0.0945010632276535, -0.04417464882135391, 0.11864957213401794, -0.2057397961616516, 0.14897432923316956, 0.0435071736574173, -0.03758455812931061, -0.09949184954166412, 0.06934362649917603, -0.09122921526432037, -0.026452599093317986, -0.012212781235575676, -0.011927763000130653, -0.009096767753362656, 0.06066421419382095, 0.04656223952770233, -0.008803152479231358, -0.030357325449585915, 0.036364708095788956, 0.05049541965126991, 0.07118295133113861, -0.00022652214101981372, 0.08209268003702164, -0.0325363427400589, 0.034195803105831146, -0.02626645937561989, -0.1180720329284668, 0.01337261963635683, -0.02145460993051529, 0.11860980838537216, 0.15092918276786804, 0.01308216992765665, 0.03843601793050766, -0.020607611164450645, -0.07002637535333633, 0.0945645198225975, 0.04152030870318413, -0.012955843470990658, 0.04215916246175766, -0.06802264600992203, 0.04015984758734703, 0.05438100919127464, -0.045899759978055954, -0.026366712525486946, 0.05472882091999054, 0.059232279658317566, -0.011751803569495678, 0.007813879288733006, 0.02350270189344883, 0.11902623623609543, 0.07712250202894211, -0.1251288801431656, 0.14157307147979736, 0.014098783023655415, -0.12738896906375885, -0.062146034091711044, -0.020891880616545677, -0.0009326967992819846, 0.016342872753739357, 0.08709694445133209, -0.12820658087730408, -0.06018517538905144, -0.02752738445997238, -0.017917001619935036, 0.04126613959670067, -0.032782405614852905, 0.05179503187537193, 0.02277911826968193, -0.03634935989975929, 0.06731535494327545, 0.07201871275901794, 0.04544013738632202, 0.005125394556671381, -0.07559456676244736, 0.12112490832805634], -pointer:[0.027973519638180733, 0.007762730587273836, 0.11561083793640137, -0.03980673477053642, 0.1017330065369606, -0.11921237409114838, 0.029995489865541458, 0.06885294616222382, -0.09216480702161789, -0.03358641266822815, -0.091273233294487, -0.10228795558214188, -0.04916491359472275, -0.10628065466880798, 0.06336186826229095, -0.04633644223213196, -0.12990768253803253, -0.059670522809028625, -0.08280724287033081, 0.11093275994062424, 0.07062771916389465, 0.05534779652953148, 0.1227569654583931, -0.09847615659236908, 0.06499914079904556, -0.012648158706724644, -0.11578453332185745, 0.07522550970315933, -0.059610553085803986, -0.030843986198306084, -0.011928023770451546, -0.057382818311452866, -0.034267302602529526, 0.11275363713502884, -0.07382914423942566, 0.0004015517479274422, -0.04459233209490776, -0.03299378231167793, 0.14553354680538177, 0.07932844012975693, -0.008621135726571083, -0.0003023368481080979, -0.005766984075307846, -0.0028462589252740145, 0.10314414650201797, -0.04949704185128212, -0.08764651417732239, 0.021414726972579956, -0.06590491533279419, 0.02306961640715599, 0.0784360021352768, -0.07209122180938721, -0.06572812795639038, 0.0005295329610817134, 0.06221560388803482, 0.05655842646956444, 0.09213918447494507, -0.02946588583290577, 0.08698870241641998, -0.03976299613714218, -0.08653011173009872, -0.07000718265771866, -0.04235150292515755, -0.1043534129858017, 0.002736456459388137, 0.0956776961684227, -0.01352731604129076, -0.10132727026939392, 0.1266355961561203, 0.04285049065947533, -0.11731462180614471, 0.14134401082992554, 0.0849791020154953, -0.003871094435453415, -0.09300713986158371, -0.011350536718964577, -0.02087600901722908, -0.12031292915344238, -0.02082577906548977, -0.0796414241194725, -0.10840392112731934, -0.05974071845412254, 0.04343964159488678, 0.06527524441480637, -0.053483664989471436, 0.041248660534620285, 0.044665608555078506, -0.005621536169201136, 0.014132495038211346, 0.013397670350968838, 0.07460160553455353, 0.10082504898309708, -0.04732072353363037, 0.049913376569747925, -0.058372270315885544, 0.0480148121714592, -0.04609919339418411, -0.0829717144370079, 0.10033728182315826, 0.12585583329200745, -0.07120521366596222, 0.14381511509418488, -0.17635081708431244, -0.06751362979412079, 0.03922972083091736, 0.08704221248626709, 0.025020984932780266, -0.0693332627415657, -0.12732253968715668, 0.029846854507923126, 0.05720983073115349, -0.003507638815790415, 0.04514802247285843, -0.07277469336986542, 0.1160619780421257, 0.10100173205137253, -0.04513893276453018, 0.059622623026371, -0.12448882311582565, -0.06609651446342468, 0.08039853721857071, -0.0070303650572896, -0.041568100452423096, 0.031489819288253784, -0.08359993249177933, -0.1366548240184784, 0.05257304385304451, -0.06008435785770416, -0.045732200145721436, -0.13243485987186432, -0.01481699664145708, -0.055163439363241196, -0.06508789956569672, -0.052538130432367325, 0.08062048256397247, -0.09108073264360428, -0.033905792981386185, -0.01653933711349964, -0.046965595334768295, 0.02844194881618023, -0.03748581185936928, -0.07992894947528839, 0.042144980281591415, -0.03435558080673218, -0.0004842130292672664, 0.08594229817390442, 0.04456281289458275, 0.07007280737161636, -0.03847324475646019, 0.053669385612010956, 0.027286672964692116, -0.09173891693353653, 0.07026804238557816, 0.044190503656864166, -0.0774054229259491, -0.10367869585752487, 0.10261817276477814, -0.10346367210149765, 0.0411524772644043, -0.0305162500590086, 0.10750249028205872, -0.06519034504890442, -0.052772462368011475, 0.02785510942339897, 0.09240507334470749, -0.09330456703901291, 0.08646843582391739, -0.05063372477889061, 0.05633576959371567, -0.07485561072826385, -0.06287386268377304, 0.03595798835158348, -0.0851052775979042, -0.08713982254266739, 0.060209792107343674, 0.043010540306568146, 0.039738599210977554, -0.13720278441905975, -0.05343934893608093, 0.04522676393389702, -0.0565352700650692, -0.11912601441144943, 0.10912584513425827, -0.05050341412425041, 0.05873236432671547, 0.06897742301225662, -0.0023465973790735006, 0.09255032241344452, -0.12830768525600433, 0.06297996640205383, -0.07017618417739868, 0.03199569135904312, -0.04104157164692879, -0.07947726547718048, 0.058375295251607895, -0.10688763111829758, 0.04008322209119797, 0.04982602968811989, 0.08899976313114166, 0.026745116338133812, -0.11577540636062622, -0.03757839649915695, -0.10161756724119186, -0.09810756146907806, 0.10109823942184448, -0.01598895713686943, 0.015026355162262917, 0.03455880656838417, -0.06675384193658829, 0.017192848026752472, -0.06952442228794098, 0.08034694194793701, 0.030742080882191658, -0.11788243800401688, -0.07520195096731186, 0.04301826283335686, 0.1247958317399025, 0.05239977687597275, -0.016722124069929123, -0.04025879129767418, -0.047519560903310776, -0.08217036724090576, -0.06395139545202255, 0.031218312680721283, -0.0350198969244957, 0.026736188679933548, -0.11304927617311478, -0.09524622559547424, -0.10161298513412476, 0.10070051997900009, 0.08152913302183151, 0.03843889385461807, 0.057543039321899414, -0.03477180749177933, 0.0501684732735157, -0.05441007763147354, 0.014832183718681335, 0.08904281258583069, -0.10044122487306595, 0.13159388303756714, 0.0349467471241951, -0.10176718980073929, -0.11752282083034515, 0.12089088559150696, -0.04115671291947365, 0.046745046973228455, -0.08118671178817749, 0.14431990683078766, 0.04881012439727783, -0.0651724636554718, -0.018090179190039635, -0.14892874658107758, 0.03911590948700905, -0.05348723381757736, -0.05049530416727066, 0.08049335330724716, -0.04165316000580788, 0.021795136854052544, -0.04149371758103371, -0.14865629374980927, -0.012204727157950401, 0.07019731402397156, 0.09370927512645721, 0.07365699112415314, 0.058685846626758575, -0.05441847816109657, 0.12448403239250183, 0.03247641772031784, 0.08414299041032791, 0.09388771653175354, -0.05051137134432793, -0.05974730849266052, -0.011917470954358578, 0.02420692704617977, -0.053588565438985825, 0.12827099859714508, -0.09695227444171906, 0.10077222436666489, -0.11428084224462509, -0.15284107625484467, -0.14265410602092743, 0.04655839502811432, 0.058517780154943466, -0.010938074439764023, -0.027638763189315796, 0.07280919700860977, 0.014257989823818207, -0.03727211430668831, 0.03374388441443443, 0.09662585705518723, -0.013932974077761173, 0.11471039801836014, -0.0005637204740196466, -0.09985300898551941, -0.11632179468870163, 0.12364047020673752, 0.1031324565410614, 0.06598818302154541, -0.04819021746516228, 0.01722961664199829], -pointerTy:[-0.04716381058096886, -0.0035462761297822, -0.08261996507644653, -0.000703896745108068, -0.08958043158054352, -0.12659265100955963, 0.04028552770614624, -0.02565094642341137, 0.028299475088715553, 0.10949216037988663, 0.06789373606443405, 0.02641986683011055, -0.06618938595056534, -0.0969725251197815, -0.08954358845949173, 0.03589668869972229, -0.062018897384405136, 0.0511307455599308, 0.03289700672030449, 0.08888352662324905, -0.04870832338929176, 0.1287773847579956, -0.10104671865701675, -0.09730111062526703, 0.07982702553272247, 0.10963670164346695, -0.08566872030496597, -0.06931783258914948, -0.08855678886175156, -0.07162700593471527, -0.0037418862339109182, -0.05921686813235283, -0.07437198609113693, -0.08225706219673157, 0.05263419821858406, -0.054928600788116455, -0.05739966779947281, 0.02564372681081295, 0.09778054058551788, 0.026309171691536903, -0.0239946898072958, 0.01826406829059124, 0.03247164934873581, 0.028244860470294952, 0.07642640173435211, -0.0898946225643158, 0.024812189862132072, -0.002855160506442189, -0.054054707288742065, 0.07097789645195007, 0.007482150569558144, 0.011137759312987328, 0.030688324943184853, 0.07560251653194427, 0.036048416048288345, 0.09195958077907562, -0.0065743811428546906, 0.015588969923555851, -0.04181557148694992, -0.0680384635925293, -0.023030227050185204, -0.024766642600297928, -0.032756391912698746, 0.0805206224322319, -0.00016956670151557773, 0.10634735971689224, -0.0583702027797699, 0.07818756252527237, 0.06232107803225517, 0.08547519147396088, 0.08797308802604675, -0.09025973826646805, 0.10747553408145905, -0.11142102628946304, 0.136912539601326, 0.007758024614304304, -0.02943389303982258, -0.041798099875450134, 0.0042177001014351845, -0.05508293956518173, 0.08160343021154404, 0.04476655647158623, 0.012323277071118355, -0.0639476627111435, 0.0884035974740982, -0.034826017916202545, 0.10893603414297104, 0.03302067145705223, -0.024185219779610634, -0.08381541073322296, 0.030582234263420105, -0.0930941253900528, -0.08061736822128296, 0.04062590003013611, -0.08946606516838074, -0.008842390961945057, -0.04858500882983208, 0.1262279450893402, -0.10688754171133041, -0.06637720763683319, -0.005913393571972847, 0.011051320470869541, 0.06776440888643265, -0.057490408420562744, -0.0745873749256134, 0.10937171429395676, -0.08759258687496185, -0.07294903695583344, -0.05630302056670189, 0.03589127957820892, 0.00204674550332129, 0.009705973789095879, -0.12437672168016434, 0.08136456459760666, -0.06674209982156754, -0.08056238293647766, -0.02376604825258255, 0.012300918810069561, 0.013757622800767422, 0.07052811235189438, -0.05187088996171951, -0.022010060027241707, -0.11524895578622818, 0.02975190244615078, -0.028855100274086, -0.03742393106222153, -0.060444943606853485, 0.11680935323238373, -0.05418992042541504, 0.09041228145360947, -0.01045000459998846, 0.051317017525434494, -0.10238496214151382, 0.006471195723861456, -0.07628773152828217, 0.07606837153434753, -0.042284343391656876, -0.10790523886680603, 0.05428935959935188, -0.10719367116689682, -0.0705360621213913, -0.017926082015037537, -0.011722935363650322, -0.05106586962938309, -0.02178102917969227, 0.11055582016706467, -0.042517200112342834, -0.0529039166867733, -0.00475889490917325, -0.07859423756599426, 0.02416134998202324, -0.09977318346500397, -0.09155434370040894, 0.028276965022087097, -0.004976813681423664, -0.08631975203752518, -0.0897928774356842, -0.06623993813991547, 0.11665408313274384, -0.09257546812295914, -0.014239370822906494, -0.05583900213241577, 0.047205451875925064, 0.008950100280344486, -0.05676557496190071, -0.07237771898508072, 0.088223896920681, -0.09946271032094955, 0.06122618541121483, 0.024554748088121414, -0.04778015613555908, 0.11779364198446274, 0.016275426372885704, -0.08709249645471573, -0.06702733039855957, 0.011948072351515293, 0.006208610720932484, 0.12428759783506393, -0.059946127235889435, 0.1230136901140213, 0.1094435453414917, -0.022634759545326233, 0.0855095162987709, 0.018578950315713882, 0.029435358941555023, -0.06242506578564644, 0.011620196513831615, -0.08064709603786469, 0.0934658944606781, 0.0986274778842926, -0.033426035195589066, 0.13554538786411285, 0.014773021452128887, -0.11542637646198273, 0.11965049058198929, 0.10520832985639572, 0.009332998655736446, 0.04068543389439583, 0.014519019052386284, 0.004132776986807585, 0.10486885905265808, -0.096110038459301, 0.01995786279439926, -0.038258910179138184, 0.08700083196163177, 0.00600593164563179, 0.059745557606220245, 0.013418210670351982, 0.02284703217446804, 0.05479935184121132, -0.1132282242178917, -0.057718098163604736, -0.07901331782341003, -0.06065873056650162, 0.07183068990707397, -0.021446488797664642, 0.0559699572622776, -0.059022415429353714, -0.026592513546347618, -0.01425586175173521, -0.10269077122211456, -0.08471479266881943, -0.017149223014712334, 0.009241994470357895, -0.019876789301633835, -0.0019349128706380725, 0.07368340343236923, -0.07294153422117233, 0.10131240636110306, -0.012861870229244232, -0.0013204372953623533, 0.019647402688860893, 0.09875131398439407, -0.07014360278844833, -0.023000504821538925, 0.08072610944509506, -0.11253276467323303, 0.08141042292118073, -0.0657966285943985, 0.13141755759716034, 0.06636946648359299, 0.09189006686210632, 0.1225670799612999, -0.07782821357250214, -0.09246321767568588, -0.01546595711261034, -0.10165474563837051, -0.09503944218158722, -0.05645772069692612, -0.04843731224536896, -0.027387356385588646, 0.06828165799379349, -0.056133657693862915, 0.029443878680467606, -0.10030555725097656, -0.03927566483616829, 0.011375746689736843, 0.016847677528858185, 0.03714815154671669, 0.06662820279598236, -0.06983844935894012, 0.05166120082139969, 0.084617480635643, 0.03227651119232178, -0.034512754529714584, -0.0944448783993721, -0.09232494980096817, 0.05133114755153656, 0.10198932141065598, 0.03934333845973015, -0.09101245552301407, -0.0644727274775505, 0.024021543562412262, 0.04737424850463867, -0.06590334326028824, 0.03738697990775108, 0.08860454708337784, -0.037156328558921814, 0.06049717962741852, -0.08124754577875137, -0.04913465306162834, -0.05371444672346115, -0.002927264664322138, -0.09311110526323318, -0.07919750362634659, -0.016902688890695572, 0.07485639303922653, 0.10316533595323563, 0.004583731759339571, 0.05603397265076637, -0.09020470827817917, 0.06278182566165924, 0.02953759767115116, -0.08807951956987381, -0.019952580332756042, -0.1354898363351822, 0.11085737496614456, -0.03727435693144798, 0.0834486335515976, -0.02512572705745697], -ptrtoint:[-0.09142842143774033, -0.10314255952835083, 0.019885530695319176, 0.09785166382789612, 0.03944847360253334, -0.0032202245201915503, -0.017441006377339363, -0.011658649891614914, 0.04687296599149704, -0.11289525032043457, 0.031487591564655304, -0.05026447772979736, -0.011521988548338413, 0.07775742560625076, -0.06318231672048569, 0.05115532502532005, 0.06313543021678925, -0.0773145779967308, 0.012054294347763062, 0.009639562107622623, 0.08541399240493774, -0.010550403036177158, 0.0950189158320427, 0.06200225651264191, 0.10589297115802765, -0.044011835008859634, 0.06949463486671448, 0.03554987534880638, 0.05546799674630165, 0.08788133412599564, -0.04178653657436371, 0.12158001959323883, 0.0659472644329071, 0.06070351600646973, -0.019407575950026512, 0.06116820126771927, -0.00577031634747982, 0.10088564455509186, 0.13012632727622986, -0.019383404403924942, -0.12057244032621384, -0.016961904242634773, -0.10488459467887878, -0.063435398042202, -0.011354250833392143, 0.10224688053131104, 0.05519646406173706, -0.04237206652760506, -0.026275506243109703, -0.06196220591664314, -0.10012145340442657, 0.024317529052495956, -0.03720865398645401, -0.07820773124694824, -0.04372044652700424, 0.10597353428602219, 0.0017523744609206915, 0.12158683687448502, 0.0032473145984113216, 0.010719038546085358, -0.029734069481492043, 0.03683369979262352, 0.0557461641728878, -0.09110072255134583, 0.0783088430762291, 0.035627733916044235, 0.04140540212392807, 0.03454047814011574, 0.11928174644708633, -0.009599931538105011, -0.018306385725736618, 0.07059620320796967, 0.11565777659416199, 0.06671583652496338, -0.10921332985162735, -0.015478229150176048, -0.02000381425023079, 0.00044278783025220037, -0.13962973654270172, -0.06483453512191772, 0.0327029675245285, -0.004162957426160574, 0.01636282354593277, -0.026165740564465523, -0.0599525049328804, -0.09846564382314682, -0.09973784536123276, 0.07686369866132736, -0.08294349163770676, 0.050302039831876755, -0.09437056630849838, 0.07541685551404953, 0.10016199946403503, 0.05754061043262482, 0.0737648457288742, 0.052104514092206955, 0.026082491502165794, 0.10586028546094894, 0.021108821034431458, 0.02336420677602291, -0.001149450778029859, 0.06422387063503265, -0.04340704157948494, 0.008787120692431927, 0.04787781834602356, -0.09185124933719635, 0.08462651073932648, 0.0234652329236269, -0.15470175445079803, 0.05395210161805153, -0.011487090960144997, -0.034293629229068756, -0.1113380640745163, -0.03614683821797371, 0.03564658388495445, 0.011323084123432636, 0.031456321477890015, -0.04614172875881195, 0.11213455349206924, 0.06362194567918777, -0.06488784402608871, -0.05234907194972038, -0.11301711946725845, -0.04424600675702095, 0.011993256397545338, 0.011386271566152573, -0.1213570386171341, -0.08181366324424744, 0.058402035385370255, 0.028649980202317238, -0.1161418929696083, 0.08499729633331299, -0.03692027926445007, 0.0070056370459496975, 0.07517116516828537, 0.08487319201231003, 0.027462469413876534, 0.055773355066776276, -0.026244116947054863, -0.054505880922079086, 0.06870782375335693, -0.09580196440219879, -0.13699492812156677, 0.06557092815637589, -0.0441972091794014, -0.08874725550413132, 0.05778564512729645, 0.007924215868115425, 0.04561804234981537, -0.1173410564661026, 0.045328982174396515, -0.10876710712909698, -0.13322988152503967, -0.03248237073421478, 0.08683256804943085, 0.04036952182650566, 0.06738017499446869, 0.12833116948604584, -0.07104773074388504, 0.008189992979168892, -0.045310791581869125, -0.033772677183151245, 0.054889969527721405, -0.1035405620932579, 0.026317713782191277, -0.020271362736821175, 0.021427126601338387, 0.05119309946894646, 0.11626756191253662, -0.11868246644735336, -0.10442579537630081, 0.10423149913549423, -0.10297724604606628, -0.0646241158246994, -0.0111905662342906, 0.012521362863481045, -0.13607145845890045, -0.007397027686238289, -0.030410710722208023, -0.06650719046592712, -0.023327812552452087, -0.004587141331285238, -0.011357579380273819, -0.03868113085627556, 0.03917263075709343, -0.005161548964679241, -0.0721176341176033, 0.014076043851673603, -0.03539467975497246, -0.10004483163356781, 0.12871304154396057, -0.08322778344154358, 0.05791788548231125, 0.06154419854283333, -0.026001065969467163, -0.01342314388602972, -0.08046573400497437, 0.05085185915231705, 0.03120277263224125, -0.00808370765298605, -0.03487684205174446, 0.08951066434383392, -0.059943150728940964, 0.13297362625598907, -0.010361793451011181, -0.09617025405168533, -0.10410742461681366, -0.10483376681804657, 0.058850858360528946, -0.11387433856725693, 0.005148372612893581, 0.13561084866523743, 0.06401515007019043, 0.07645399868488312, 0.07487969100475311, 0.11078919470310211, 0.03666207194328308, -0.029495302587747574, 0.10062775760889053, -0.08986828476190567, 0.06566368043422699, 0.03660156577825546, 0.00572509691119194, -0.08563775569200516, -0.027966603636741638, -0.08029069006443024, -0.009878191165626049, -0.0035189955960959196, 0.015827426686882973, 0.04445856064558029, 0.0012702225940302014, -0.024405380710959435, -0.12036918103694916, 0.04790816456079483, -0.0016754448879510164, -0.057504840195178986, 0.06241079792380333, -0.05461984872817993, -0.0010214268695563078, 0.08378922194242477, -0.0706443265080452, -0.01785295456647873, -0.06510617583990097, 0.04338875785470009, 0.011917847208678722, 0.096471406519413, -0.03875245153903961, -0.08264271169900894, -0.002535265637561679, 0.02869882993400097, 0.11585400253534317, 0.030132470652461052, -0.11619004607200623, 0.008752556517720222, -0.08408258855342865, -0.01934448443353176, 0.09178253263235092, -0.05032142624258995, -0.10874065011739731, 0.0028486920055001974, 0.0821763128042221, 0.010141975246369839, -0.010315701365470886, -0.005099587608128786, -0.11040621250867844, 0.07550882548093796, -0.11985504627227783, -0.03307889401912689, 0.12436605244874954, 0.015354806557297707, 0.059036366641521454, 0.03362799808382988, 0.05391134321689606, -0.05948599427938461, 0.038454703986644745, 0.05199873447418213, 0.08464360982179642, -0.04561496526002884, -0.126784086227417, 0.09248395264148712, 0.07080520689487457, 0.15676820278167725, -0.13957756757736206, 0.015197334811091423, 0.08114342391490936, -0.0919782742857933, -0.03477654233574867, -0.08139348030090332, 0.07760521024465561, -0.0717802345752716, -0.0598713681101799, -0.14379458129405975, -0.01745058223605156, 0.0337173230946064, 0.06542684137821198, -0.05858476832509041, 0.14450603723526, 0.07988303154706955, 0.0048383381217718124, 0.0016992714954540133], -resume:[0.03365625813603401, -0.06374748051166534, 0.11727233231067657, 0.06497706472873688, 0.12406698614358902, 0.03712832182645798, -0.04737209528684616, -0.017367959022521973, 0.09190733730792999, 0.06746723502874374, -0.08397392928600311, 0.020948290824890137, -0.05557750537991524, -0.0021033722441643476, 0.14445176720619202, -0.0016750837676227093, 0.03680681809782982, 0.04324458912014961, 0.05718641355633736, 0.07622820883989334, -0.02240058407187462, -0.0627046674489975, 0.03598930314183235, -0.10588453710079193, -0.053461965173482895, -0.060093771666288376, -0.005495065823197365, 0.03702438995242119, 0.008803259581327438, -0.12043564021587372, -0.04718631133437157, 0.08992741256952286, 0.04748190566897392, 0.10288169234991074, 0.12479954212903976, -0.08263678103685379, 0.06727851182222366, -0.050219181925058365, -0.11147379130125046, 0.1123041883111, 0.07601518929004669, -0.05510075017809868, 0.07070086151361465, -0.04903077706694603, -0.005005570128560066, 0.10169780999422073, -0.13390178978443146, 0.021395191550254822, 0.014478392899036407, -0.053523529320955276, -0.04069669544696808, 0.022835539653897285, 0.0701962485909462, -0.026619674637913704, 0.11149829626083374, 0.09653574228286743, -0.022037282586097717, -0.08428140729665756, 0.08518997579813004, 0.024588508531451225, 0.023468703031539917, -0.033002834767103195, -0.016794288530945778, -0.1275932490825653, 0.10521791130304337, 0.02835644595324993, 0.05547575280070305, -0.00021430793276522309, 0.022362258285284042, 0.11008540540933609, -0.06645709276199341, 0.009880672208964825, 0.0643172487616539, 0.1175207644701004, 0.14153295755386353, -0.19372360408306122, -0.0841984897851944, 0.022899478673934937, -0.08604903519153595, -0.009586676023900509, 0.09597280621528625, -0.10800808668136597, -0.0725189670920372, -0.059260331094264984, 0.05820475518703461, 0.08873904496431351, 0.007147637195885181, -0.0968087911605835, -0.13619446754455566, -0.09855565428733826, 0.025518177077174187, -0.10789424926042557, 0.08061005920171738, -0.03434308245778084, -0.09769881516695023, -0.02485284022986889, -0.10383851081132889, -0.02539246343076229, 0.080050989985466, 0.03125742822885513, -0.023048035800457, 0.08952972292900085, -0.027885906398296356, -0.011301467195153236, -0.11139320582151413, 0.03857395797967911, 0.12082096189260483, -0.020672928541898727, 0.11335422843694687, -0.03609782084822655, -0.026234889402985573, 0.024983827024698257, 0.09077457338571548, -0.07445568591356277, 0.038425687700510025, -0.1148354634642601, 0.013240618631243706, -0.045065175741910934, 0.04315730184316635, 0.0725158229470253, 0.0284014493227005, 0.04166898503899574, 0.11580739170312881, -0.007516095414757729, -0.042432185262441635, 0.04344725236296654, -0.028641337528824806, -0.07958237826824188, 0.12223219126462936, -0.03490891680121422, -0.010894708335399628, -0.03837408497929573, -0.1323484182357788, 0.04042431712150574, -0.011037576012313366, -0.1366223394870758, -0.125772163271904, 0.05214435234665871, 0.12886224687099457, 0.035206180065870285, 0.09237577766180038, 0.015055728144943714, 0.031132224947214127, -0.017698820680379868, 0.07733941078186035, 0.06756005436182022, 0.024738818407058716, 0.0217051450163126, 0.01947714015841484, 0.13681571185588837, -0.11991171538829803, 0.021756736561655998, 0.024694571271538734, -0.10902592539787292, 0.0816676914691925, 0.014979001134634018, 0.09173747152090073, -0.006146277766674757, -0.05268274247646332, -0.044927872717380524, 0.0215707179158926, 0.034778546541929245, 0.1072322353720665, -0.08082594722509384, -0.10256513953208923, 0.053907331079244614, -0.05116422101855278, -0.07910027354955673, -0.0840471163392067, -0.07816534489393234, 0.005219971761107445, 0.025912020355463028, 0.021989362314343452, 0.01170219574123621, 0.04280070587992668, 0.0029869184363633394, 0.1130051389336586, 0.04383336752653122, 0.04479217529296875, -0.11399540305137634, 0.11050314456224442, -0.07662641257047653, 0.13699458539485931, -0.0038092234171926975, -0.0019301235442981124, -0.09522555768489838, 0.1350252330303192, 0.030859963968396187, -0.0236026830971241, -0.1310928463935852, -0.04237061366438866, -0.04060954973101616, 0.06415954977273941, 0.14240358769893646, 0.09547436982393265, 0.0026516523212194443, -0.039401087909936905, -0.04529794678092003, -0.09853862226009369, 0.09183790534734726, 0.024766795337200165, 0.0756886824965477, 0.0020457410719245672, -0.05423673614859581, -0.1023080125451088, -0.011391009204089642, 0.03522298112511635, -0.013247708790004253, 0.04345812276005745, 0.049551572650671005, 0.026062004268169403, 0.09934265166521072, 0.08992283046245575, -0.08702395111322403, -0.0605742521584034, -0.08821936696767807, 0.0012172915739938617, 0.03744923323392868, 0.05733116343617439, -0.003433516016229987, 0.0847625806927681, 0.11921878159046173, 0.031340181827545166, -0.0025216517969965935, 0.06345051527023315, 0.09856794029474258, -0.0968223512172699, -0.09011691808700562, 0.06523046642541885, 0.027596652507781982, 0.14966116845607758, 0.07529005408287048, 0.03652109205722809, 0.03948032483458519, -0.11899024248123169, -0.027308128774166107, -0.13805311918258667, 0.06487204134464264, -0.1127280741930008, -0.04957765340805054, -0.07659997045993805, 0.0034661847166717052, -0.02904507890343666, -0.07778692990541458, 0.10393977165222168, 0.012995515950024128, 0.03275691345334053, 0.10797310620546341, -0.013879713602364063, -0.12301184982061386, 0.1758723109960556, 0.11155997961759567, -0.010830194689333439, 0.018624581396579742, 0.04821157082915306, 0.003176477737724781, 0.12757599353790283, 0.03702149540185928, 0.02243628166615963, -0.11506372690200806, -0.07532849162817001, 0.02964288368821144, -0.016318591311573982, -0.019022295251488686, 0.016491955146193504, 0.11336807161569595, 0.06928877532482147, 0.05994933843612671, -0.10028159618377686, -0.00992040615528822, 0.09360021352767944, -0.0695018321275711, 0.0021554913837462664, -0.06471426039934158, 0.022272083908319473, 0.05553575977683067, -0.12874102592468262, 0.07165969908237457, 0.11401256918907166, -0.06146407127380371, 0.09810826927423477, -0.08893236517906189, 0.057812828570604324, -0.04172547161579132, 0.11298231035470963, 0.02273641712963581, -0.08235926181077957, 0.028763599693775177, 0.06459636986255646, -0.01735631935298443, -0.016452254727482796, -0.0372031070291996, 0.08360980451107025, -0.04287518188357353, -0.004737214185297489, 0.07555755972862244, 0.09382857382297516, -0.0724354013800621, -0.08198371529579163, 0.00021790055325254798], -ret:[-0.09674054384231567, 0.011646002531051636, 0.0220123790204525, 0.08269786089658737, 0.024001242592930794, -0.003258715383708477, -0.022134026512503624, -0.1075361892580986, -0.08320511877536774, -0.110727459192276, 0.004331420175731182, -0.09943877160549164, 0.019213082268834114, -0.0035782083868980408, 0.0886259377002716, 0.01478809118270874, 0.037315379828214645, 0.10957051068544388, 0.11091538518667221, 0.012972157448530197, 0.048377908766269684, -0.04931759461760521, 0.037485282868146896, 0.053575385361909866, -0.0571458637714386, -0.0869445875287056, -0.002634848468005657, 0.04557042941451073, 0.03820840269327164, 0.09830991178750992, -0.07182346284389496, 0.09351786226034164, 0.08197169750928879, 0.07231143862009048, 0.013373063877224922, 0.06863658130168915, 0.1322106122970581, -0.011358682066202164, -0.040809035301208496, 0.09999370574951172, 0.08795921504497528, -0.11467444151639938, 0.04843498021364212, -0.07162617146968842, -0.01178698893636465, 0.10732333362102509, 0.051228757947683334, -0.13187843561172485, 0.08597419410943985, -0.05484452471137047, -0.026551784947514534, -0.018989888951182365, 0.07357167452573776, -0.028150763362646103, -0.10227813571691513, -0.03571189567446709, -0.1169448271393776, 0.05218254402279854, -0.038397274911403656, 0.06858790665864944, -0.061270859092473984, 0.04378218576312065, 0.04380553215742111, -0.07675142586231232, 0.11781153082847595, -0.10287506878376007, -0.006958437152206898, 0.024926267564296722, 0.02793710306286812, -0.028145533055067062, -0.010624398477375507, 0.004141319077461958, -0.006328190211206675, -0.01498826127499342, -0.012024429626762867, 0.16178129613399506, 0.03811289742588997, -0.21933016180992126, -0.12854290008544922, 0.03340959921479225, 0.01896696910262108, 0.09853847324848175, 0.013758610934019089, -0.033866651356220245, -0.037663523107767105, 0.11441686749458313, -0.07454871386289597, 0.05038825049996376, -0.005837836768478155, 0.006504375021904707, -0.11198527365922928, 0.04702374339103699, 0.08791214227676392, -0.12014472484588623, 0.15953466296195984, -0.05513230338692665, -0.054308872669935226, -0.031693194061517715, 0.042511485517024994, 0.013635032810270786, -0.03606384992599487, -0.07362570613622665, -0.07536689937114716, -0.14928124845027924, -0.10470708459615707, -0.07931672781705856, -0.01926746405661106, -0.043895792216062546, -0.09946597367525101, -0.04895387589931488, 0.17680427432060242, 0.21342122554779053, -0.06798937171697617, -0.0018489033682271838, 0.040847573429346085, 0.022783398628234863, -0.16158829629421234, -0.24856016039848328, -0.010835406370460987, 0.019759854301810265, 0.009898228570818901, 0.08665759116411209, 0.09464925527572632, -0.015679391101002693, 0.012041639536619186, -0.05314306169748306, 0.043767862021923065, -0.08327889442443848, 0.09226507693529129, -0.08024445176124573, 0.16560031473636627, -0.06761103123426437, 0.045930322259664536, 0.045509692281484604, -0.002056061988696456, -0.029631387442350388, 0.019746607169508934, 0.06522338837385178, 0.0011762403883039951, 0.014680485241115093, 0.10131783783435822, 0.030569065362215042, 0.07877099514007568, -0.01453470066189766, -0.029490891844034195, -0.0608166940510273, 0.21427279710769653, 0.058132823556661606, 0.04372160881757736, 0.008312622085213661, -0.14304529130458832, 0.07562826573848724, -0.042368289083242416, -0.16805242002010345, 0.08407143503427505, -0.028065470978617668, 0.04653380811214447, 0.08308149874210358, -0.07245572656393051, 0.012048891745507717, 0.023197505623102188, 0.03201692923903465, 0.08548300713300705, -0.09036392718553543, 0.006963805295526981, 0.06456252932548523, -0.24866631627082825, 0.054898761212825775, -0.08782921731472015, -0.16112181544303894, 0.004584174603223801, 0.05886531248688698, 0.030686894431710243, 0.009129364974796772, -0.03487682342529297, 0.08051330596208572, -0.02245541848242283, -0.10364090651273727, 0.06863994151353836, -0.0818723738193512, -0.002524072304368019, -0.0009262587409466505, -0.06769675016403198, -0.0666249692440033, 0.08151853829622269, -0.02165587991476059, -0.038821566849946976, 0.005931116174906492, -0.026776885613799095, -0.1177278459072113, -0.041418906301259995, -0.10088739544153214, -0.08207442611455917, 0.016346272081136703, -0.09222711622714996, 0.002074198564514518, -0.06584631651639938, -0.1924540102481842, -0.0052200984209775925, -0.013408706523478031, -0.03857812657952309, 0.08609014749526978, -0.042431868612766266, 0.01620764657855034, -0.05308103561401367, -0.09089687466621399, 0.025429371744394302, 0.08579906821250916, -0.17373545467853546, -0.0491868332028389, 0.02535291016101837, 0.08433385193347931, -0.04462248086929321, 0.04343712702393532, 0.0684165507555008, -0.09106525033712387, 0.036450501531362534, -0.017338894307613373, -0.03109125979244709, 0.11790668964385986, 0.09897851943969727, 0.030413273721933365, -0.17348605394363403, -0.028565477579832077, 0.11331108212471008, -0.08943862468004227, -0.030264945700764656, 0.012543193995952606, 0.014792145229876041, 0.0462685264647007, 0.11251664161682129, -0.029128601774573326, 0.07550154626369476, 0.05524645000696182, 0.04620492085814476, -0.03652455657720566, 0.017717638984322548, -0.01474809180945158, -0.007109060417860746, -0.03753386810421944, -0.07813694328069687, -0.05997280031442642, -0.02721589244902134, 0.10486510396003723, 0.05543244630098343, -0.04887451231479645, 0.022724486887454987, 0.07872745394706726, -0.024645045399665833, 0.042641036212444305, 0.02635924704372883, 0.03406882658600807, 0.014367030002176762, 0.039062757045030594, 0.05929255113005638, 0.038360703736543655, 0.07665041834115982, 0.14881335198879242, -0.02949630469083786, 0.058409519493579865, 0.027893587946891785, -0.14439012110233307, 0.0248838160187006, -0.07328050583600998, -0.039369065314531326, 0.10390855371952057, 0.01081579178571701, -0.09306598454713821, -0.04674764722585678, -0.034437909722328186, 0.03772314637899399, -0.05788519233465195, 0.17204171419143677, -0.06987491995096207, -0.006787885446101427, -0.05063147842884064, 0.03691757470369339, -0.013478031381964684, 0.03212861344218254, 0.02439212240278721, 0.05984354019165039, 0.02037939615547657, 0.07892753928899765, 0.018993603065609932, 0.09430977702140808, -0.027730638161301613, -0.10849422216415405, -0.05478065460920334, -0.00583298783749342, -0.023595595732331276, 0.05421708896756172, -0.10788635164499283, -0.09153788536787033, 0.02556556649506092, 0.06921803206205368, 0.00910627655684948, 0.031084595248103142, -0.14290300011634827, -0.017965281382203102, 0.06044642999768257], -sdiv:[-0.0019895387813448906, 0.10256364941596985, 0.032864172011613846, 0.15328097343444824, 0.023030029609799385, 0.009213048964738846, -0.008561496622860432, -0.011411607265472412, 0.03880810737609863, -0.1290207803249359, 0.11711802333593369, 0.0250408872961998, -0.1118987649679184, -0.05669397488236427, 0.07961545139551163, -0.024095706641674042, 0.052218083292245865, 0.06698425859212875, 0.02919592708349228, -0.00806068629026413, 0.09051723778247833, 0.023396993055939674, 0.02797972969710827, 0.05861087515950203, -0.036203447729349136, 0.01611371338367462, 0.04219253733754158, 0.07709018886089325, 0.057343918830156326, -0.05146036297082901, -0.014603552408516407, -0.07451606541872025, 0.1309143304824829, 0.004022613167762756, -0.13122053444385529, 0.04360181465744972, 0.06891099363565445, 0.1421806514263153, -0.03410164639353752, -0.004878347739577293, 0.09995852410793304, -0.0772116631269455, -0.07613193988800049, 0.08526251465082169, -0.010535871610045433, 0.10314813256263733, -0.001519412617199123, 0.029406074434518814, 0.007431064732372761, -0.11075717210769653, -0.11133058369159698, 0.08655061572790146, 0.11170289665460587, -0.12360046058893204, 0.05469056963920593, -0.1220545768737793, 0.02621524967253208, 0.14247015118598938, -0.13767676055431366, 0.05524405092000961, 0.07431183755397797, 0.05092436820268631, 0.09365101903676987, 0.10311029106378555, 0.014477708376944065, 0.09122607111930847, 7.562382234027609e-05, 0.13620923459529877, 0.02723991684615612, -0.007657382637262344, 0.022989775985479355, -0.05367422103881836, -0.10025978833436966, 0.09142372757196426, -0.01930234022438526, -0.002630550879985094, -0.0077218469232320786, -0.012807422317564487, -0.04104131832718849, 0.14883677661418915, -0.12416032701730728, 0.04536612331867218, -0.008903573267161846, -0.023764632642269135, 0.061582114547491074, -0.12472260743379593, -0.018265539780259132, 0.060842011123895645, 0.04741093888878822, 0.07841470092535019, -0.07857110351324081, 0.0505463071167469, 0.035131022334098816, 0.09385056048631668, -0.019976584240794182, -0.10788329690694809, -0.04841460660099983, -0.0689692273736, 0.02061731182038784, 0.01068338192999363, -0.062899649143219, -0.06516444683074951, 0.02403693087399006, 0.025488317012786865, 0.04512972757220268, -0.10166775435209274, 0.036620743572711945, 0.12233692407608032, -0.11491680890321732, -0.13473573327064514, -0.04971598461270332, 0.01342794019728899, -0.08666770160198212, -0.15147696435451508, -0.02326536551117897, 0.01710600033402443, -0.02278205193579197, 0.005974350031465292, -0.06464473903179169, -0.09330353885889053, 0.00030144830816425383, -0.06665733456611633, 0.06597701460123062, 0.06350456178188324, -0.007083050906658173, -0.11650267243385315, 0.0026829615235328674, -0.011371225118637085, -0.006969173904508352, 0.057315655052661896, -0.06622996181249619, -0.03293584659695625, 0.0766318067908287, -0.10038969665765762, 0.07049932330846786, 0.1314273476600647, 0.0522509403526783, 0.07254191488027573, -0.006088932976126671, -0.010753287002444267, 0.06271158158779144, -0.05472820624709129, 0.018418479710817337, 0.10923651605844498, 0.006088383495807648, -0.09109857678413391, -0.02523316629230976, 0.14011159539222717, -0.09527640044689178, -0.0015561303589493036, -0.11146741360425949, -0.0612332709133625, -0.023109659552574158, -0.036531489342451096, -0.08545321971178055, -0.028514275327324867, 0.03707817569375038, 0.08215705305337906, -0.10417915135622025, 0.012804066762328148, -0.02537277527153492, 0.07623057812452316, -0.00530953798443079, 0.07477841526269913, 0.007288254797458649, -0.1252119392156601, -0.02978046052157879, 0.11003883183002472, -0.0687313973903656, 0.03953427076339722, 0.01742439903318882, -0.08943492919206619, -0.08692394196987152, 0.1303737312555313, 0.02852156013250351, 0.011973602697253227, -0.15833796560764313, -0.10864192247390747, 0.09114665538072586, -0.0825229063630104, -0.07861489802598953, -0.12047377228736877, -0.07057749480009079, -0.13178253173828125, 0.09449969977140427, 0.0014024751726537943, 0.021687980741262436, -0.023153133690357208, 0.1322866529226303, -0.1148742064833641, 0.07294968515634537, -0.12569747865200043, 0.03952624648809433, -0.036853138357400894, -0.08137417584657669, -0.05331404134631157, -0.0363696925342083, -0.15859481692314148, -0.02027922309935093, 0.07347825169563293, -0.11226920038461685, -0.05487463250756264, 0.0757782831788063, 0.08401548117399216, -0.03022763691842556, 0.04140233248472214, 0.07272790372371674, 0.09194589406251907, -0.12999027967453003, -0.034395039081573486, 0.022495469078421593, 0.16057339310646057, 0.06273232400417328, 0.0764136016368866, 0.08016696572303772, 0.08631449937820435, 0.130575031042099, 0.13369426131248474, -0.0031373316887766123, 0.009020849131047726, 0.09941073507070541, 0.04681617394089699, -0.12820489704608917, -0.04201238229870796, 0.08906399458646774, -0.05179170146584511, -0.01440337859094143, 0.05772955343127251, 0.012152227573096752, 0.040637072175741196, -0.1057722419500351, -0.12025453895330429, -0.10422928631305695, 0.13674528896808624, -0.030101055279374123, -0.032556504011154175, -0.00810790155082941, -0.115723617374897, 0.06293801218271255, 0.0033735460601747036, -0.07567454874515533, 0.06291458010673523, 0.04562852159142494, -0.08001164346933365, -0.0540105439722538, -0.16014797985553741, 0.053160522133111954, -0.12476673722267151, 0.08975228667259216, 0.07285531610250473, 0.026983346790075302, 0.03636946529150009, 0.06386792659759521, -0.08609895408153534, 0.06344857066869736, -0.0456666462123394, 0.08194821327924728, -0.007003979757428169, 0.04083423316478729, -0.01137048751115799, 0.05965863913297653, -0.07938361167907715, 0.07078275829553604, -0.0476841926574707, -0.011105157434940338, 0.08303682506084442, -0.10413854569196701, -0.11150793731212616, -0.11023484170436859, -0.042474232614040375, 0.03252197802066803, 0.044976748526096344, 0.051052313297986984, 0.12075766921043396, -0.0977451354265213, 0.003750232048332691, -0.025537630543112755, 0.01888248883187771, -0.11650431901216507, -0.004606177564710379, 0.043860554695129395, 0.083437979221344, -0.07282286882400513, -0.14938828349113464, 0.002943310420960188, -0.04116227105259895, -0.08963540941476822, -0.05069901421666145, 0.04725069925189018, -0.013494085520505905, 0.03522023558616638, -0.12012938410043716, -0.04276061803102493, 0.05133723095059395, 0.037579961121082306, -0.041354212909936905, 0.018919698894023895, -0.1001497358083725, -0.023143503814935684, 0.0008482275297865272], -select:[0.03229166567325592, 0.036197807639837265, 0.006878274958580732, 0.052490998059511185, 0.020372726023197174, -0.004776418674737215, -0.01823887601494789, 0.1041492372751236, 0.018778594210743904, 0.05700691044330597, 0.020217228680849075, 0.12290173768997192, 0.06265123188495636, 0.0015391577035188675, 0.1523314267396927, 0.033984288573265076, 0.061066724359989166, -0.09424210339784622, -0.2151545286178589, 0.01879527047276497, 0.09805405884981155, 0.020132796838879585, 0.036465004086494446, -0.009514943696558475, -0.02555253729224205, -0.06363970786333084, 0.04103608801960945, 0.030869878828525543, 0.04069267958402634, 0.08994922041893005, 0.021558105945587158, 0.08582572638988495, -0.054735343903303146, -0.021166648715734482, 0.04097428917884827, 0.11997853964567184, 0.014337237924337387, -0.00038625317392870784, -0.028187209740281105, 0.08944862335920334, 0.07737961411476135, -0.014139402657747269, -0.02453075349330902, -0.06835922598838806, -0.012943225912749767, 0.10978475958108902, -0.0637633353471756, 0.05509857088327408, -0.17144112288951874, -0.07226274162530899, -0.09037746489048004, 0.2451973557472229, -0.1659618318080902, -0.05540427193045616, -0.03437952324748039, -0.018075929954648018, 0.06274314224720001, 0.12479802966117859, -0.03502455726265907, 0.082488514482975, -0.0758456438779831, -0.07236897945404053, 0.06012149527668953, 0.16276989877223969, 0.11958868056535721, -0.11570066958665848, 0.03559601679444313, 0.04076119512319565, 0.04414970800280571, -0.02020478993654251, 0.017408212646842003, -0.037015754729509354, -0.005250539164990187, -0.05760245397686958, 0.039070941507816315, -0.0593593493103981, 0.04912300780415535, -0.2236759215593338, 0.06403519958257675, -0.03088274784386158, -0.013654705137014389, 0.06153513863682747, 0.2266145646572113, -0.044073693454265594, 0.05116627365350723, 0.08174792677164078, -0.021998072043061256, 0.07358856499195099, -0.04498076066374779, 0.047548048198223114, -0.06277946382761002, 0.028219345957040787, 0.020930660888552666, 0.028753219172358513, -0.01267361082136631, 0.03863013535737991, 0.030167197808623314, -0.022291289642453194, -0.05023377388715744, 0.026027295738458633, 0.04061991348862648, -0.07180376350879669, -0.040573250502347946, -0.15863046050071716, -0.016335902735590935, -0.10320651531219482, 0.026658667251467705, 0.060969941318035126, -0.009852368384599686, -0.05468671768903732, -0.04303479939699173, -0.14317452907562256, -0.06479290127754211, -0.023061122745275497, 0.03937733173370361, 0.019085483625531197, -0.14591525495052338, 0.1503107100725174, 0.01915665529668331, -0.04142393916845322, -0.0013066466199234128, 0.09924796968698502, 0.0675782710313797, 0.058467891067266464, -0.0017646518535912037, -0.022118596360087395, -0.026411578059196472, 0.0547323077917099, 0.0438113696873188, -0.003253211732953787, 0.05923797935247421, 0.0158142801374197, 0.09607797861099243, -0.10694370418787003, 0.08309497684240341, 0.01942366175353527, 0.06344816833734512, -0.047914545983076096, -0.0034959118347615004, -0.11487146466970444, 0.10405118018388748, 0.035837989300489426, 0.025399984791874886, -0.020977631211280823, -0.06114950776100159, -0.06159700080752373, -0.2475973218679428, -0.04798891395330429, -0.11722636967897415, -0.01841389201581478, -0.04067566990852356, 0.10955677181482315, -0.06308058649301529, 0.0015898392302915454, -0.00283819530159235, -0.02813470922410488, 0.004019181244075298, 0.05655420199036598, -0.06707267463207245, 0.009448295459151268, -0.04684508964419365, 0.0692179799079895, 0.09021718055009842, -0.06762564927339554, -0.003368733450770378, -0.06338315457105637, -0.2938168942928314, 0.0893663689494133, -0.06642203032970428, -0.10908032953739166, 0.010616918094456196, -0.060687389224767685, 0.02688911184668541, 0.1211216077208519, 0.02943096123635769, -0.1049281656742096, -0.15264873206615448, -0.03361491113901138, 0.09639966487884521, -0.062160372734069824, 0.11250025779008865, -0.02743356302380562, -0.09577088803052902, -0.015542715787887573, -0.034056007862091064, -0.0001855470472946763, 0.03372049331665039, -0.007266424596309662, 0.022205378860235214, -0.11504670977592468, -0.11231115460395813, -0.0399303063750267, -0.09131736308336258, 0.007403914351016283, -0.06742847710847855, -0.038705743849277496, 0.13219322264194489, -0.19372965395450592, -0.04237164184451103, 0.03954661637544632, -0.03261581063270569, 0.06952156126499176, -0.05509617552161217, 0.11189975589513779, -0.030087778344750404, 0.03230002149939537, 0.016877273097634315, -0.008712157607078552, -0.034538328647613525, 0.0025633913464844227, 0.04656624421477318, 0.13015764951705933, -0.13018850982189178, 0.08416727930307388, 0.04591505229473114, -0.021922823041677475, 0.05090932548046112, -0.01685689017176628, -0.12286639213562012, -0.0687214583158493, 0.095151886343956, 0.008661453612148762, -0.23234418034553528, 0.1309729516506195, 0.08594807237386703, -0.07615877687931061, -0.012077394872903824, 0.039740171283483505, 0.013682642951607704, 0.021560903638601303, 0.0535753108561039, -0.11553753912448883, -0.028790678828954697, 0.010294154286384583, -0.009044138714671135, -0.049509335309267044, -0.017618102952837944, -0.10398411005735397, -0.022284330800175667, -0.035160500556230545, -0.07692694664001465, -0.030674589797854424, 0.03857747092843056, 0.05644020065665245, 0.06889855861663818, 0.07123322784900665, 0.021432194858789444, -0.08487218618392944, 0.10637564212083817, 0.06915978342294693, 0.03425581008195877, -0.03209400549530983, -0.04410161077976227, 0.13062092661857605, 0.06343745440244675, 0.2203609049320221, -0.027575546875596046, 0.05130631849169731, 0.011154071427881718, -0.014589863829314709, -0.03689970448613167, -0.011389934457838535, 0.007311672903597355, 0.1799614131450653, 0.0899730920791626, 0.0837746411561966, 0.003765346249565482, -0.11803930252790451, -0.11409202218055725, 0.009992482140660286, 0.024518154561519623, 0.031078815460205078, 0.00992242805659771, -0.059767790138721466, 0.08174844831228256, 0.029980463907122612, 0.08649078011512756, -0.017314055934548378, -0.14340871572494507, 0.061763398349285126, 0.06892679631710052, 0.18783830106258392, 0.010907950811088085, -0.0003154727164655924, 0.10283780097961426, -0.0047352248802781105, 0.0895484909415245, -0.06581400334835052, 0.011083549819886684, 0.004195247311145067, 0.04685576260089874, -0.015962794423103333, 0.015631120651960373, 0.028737124055624008, 0.0727410539984703, -0.0005105538293719292, 0.016337309032678604, 0.008142848499119282, 0.03517116978764534, 0.05897177383303642], -sext:[-0.013093485496938229, 0.03566393628716469, 0.007474060636013746, 0.1321263611316681, 0.01464921422302723, -0.010554004460573196, -0.024185942485928535, -0.07559752464294434, -0.029659517109394073, -0.1214025691151619, -0.06564106792211533, -0.08239001035690308, 0.06837161630392075, -0.017204545438289642, 0.05305091291666031, 0.0024233965668827295, 0.03582322970032692, 0.04712270572781563, -0.07673663645982742, -0.0001500197104178369, 0.08731862157583237, 0.01378015149384737, 0.034929413348436356, -0.0030071442015469074, -0.03715218976140022, -0.039336830377578735, 0.10234847664833069, 0.015753960236907005, 0.03813312575221062, 0.09410359710454941, -0.009202387183904648, 0.0915873721241951, 0.0903354063630104, -0.013574859127402306, 0.002005926100537181, 0.0914885476231575, -0.06474646180868149, 0.08325900137424469, -0.005891777575016022, 0.06303220242261887, 0.09199965745210648, -0.05350339412689209, 0.12094034254550934, 0.019067807123064995, -0.007193500176072121, 0.09963858872652054, 0.047823794186115265, -0.022244982421398163, 0.07529464364051819, -0.06935981661081314, 0.10338910669088364, 0.22543424367904663, 0.06115393713116646, -0.09179887920618057, -0.0672098845243454, -0.03635787218809128, 0.1492522656917572, 0.05439307540655136, -0.042121656239032745, 0.06901928782463074, 0.07760358601808548, 0.027254652231931686, 0.07381102442741394, 0.028756815940141678, 0.0899500846862793, 0.038003332912921906, 0.01616927608847618, 0.04574975743889809, 0.07110287249088287, -0.008321872912347317, 0.016401082277297974, -0.030389199033379555, -0.04049994423985481, -0.0433746799826622, 0.04235920310020447, -0.18966132402420044, -0.09743791818618774, 0.16638289391994476, -0.14098051190376282, -0.0601179338991642, 0.09509334713220596, 0.054246097803115845, 0.06995605677366257, -0.023315725848078728, -0.005239491816610098, -0.037785306572914124, -0.029169632121920586, 0.03473615646362305, 0.04658260568976402, -0.05931900814175606, -0.010976576246321201, 0.0393352285027504, -0.11362996697425842, 0.076396144926548, 0.004188618157058954, 0.02732870727777481, 0.026082336902618408, -0.036883506923913956, 0.017421342432498932, 0.013719962909817696, -0.03514312580227852, -0.0904250368475914, 0.08156897127628326, -0.10083616524934769, -0.0847661942243576, -0.09621422737836838, 0.07871901243925095, 0.044383350759744644, -0.07571597397327423, -0.0641511008143425, -0.21113261580467224, -0.17581696808338165, -0.1137409582734108, -0.053313035517930984, 0.036255594342947006, 0.08358712494373322, -0.06472914665937424, -0.2146003395318985, -0.06240938976407051, -0.06255243718624115, -0.020467963069677353, 0.08889037370681763, 0.05239309370517731, -0.00505443150177598, 0.003840947989374399, -0.08286187797784805, -0.07900139689445496, -0.014731905423104763, 0.03983507305383682, -0.07379266619682312, 0.08527164906263351, -0.06069169566035271, -0.10634256154298782, 0.019477710127830505, 0.012695465236902237, 0.009214580990374088, 0.05318128317594528, 0.06144637614488602, -6.814471271354705e-05, -0.016246967017650604, 0.11293954402208328, -0.12775754928588867, -0.05116700381040573, -0.07555587589740753, -0.05494190379977226, -0.08577968180179596, -0.16354387998580933, -0.1203220784664154, 0.03959968686103821, -0.11375992000102997, -0.08311101794242859, 0.070290707051754, -0.10253146290779114, 0.01079582329839468, 0.031602464616298676, -0.026743365451693535, 0.042474180459976196, 0.10534398257732391, -0.07566779106855392, 0.011725423857569695, -0.03740803897380829, 0.014922850765287876, 0.10114267468452454, -0.013084192760288715, 0.005712335463613272, -0.026728207245469093, 0.029409462586045265, 0.05967656150460243, -0.08934465795755386, -0.039539262652397156, 0.004178896546363831, -0.08713656663894653, 0.034613609313964844, 0.09941074997186661, 0.013793728314340115, 0.02801264449954033, -0.1526278704404831, -0.05251901596784592, 0.0891328677535057, -0.08202428370714188, -0.036384113132953644, -0.039785146713256836, -0.050631083548069, -0.07815767079591751, 0.012682478874921799, -0.09607738256454468, -0.061830926686525345, 4.7870518756099045e-05, 0.03676813840866089, -0.10759618878364563, 0.001660217996686697, -0.08523770421743393, 0.0842084288597107, 0.013687163591384888, -0.118343785405159, -0.036370277404785156, 0.1034189835190773, 0.056966882199048996, -0.0033210902474820614, 0.018185926601290703, -0.026306862011551857, -0.04876575991511345, -0.037473201751708984, 0.061451397836208344, -0.028539158403873444, -0.08034086227416992, -0.007639485411345959, 0.06598134338855743, -0.050565510988235474, -0.027897071093320847, 0.04171035811305046, -0.07466793805360794, 0.16426202654838562, 0.04006220027804375, 0.05524846538901329, 0.029007401317358017, 0.03600272163748741, -0.03444947674870491, 0.14697782695293427, -0.038573212921619415, -0.028458371758461, 0.02315652370452881, -0.2098112553358078, 0.029006769880652428, -0.035442620515823364, -0.04554320499300957, -0.001348967431113124, 0.05847572162747383, 0.013608086854219437, -0.06816673278808594, -0.04285519942641258, -0.011081294156610966, -0.08768606930971146, 0.0637211874127388, -0.05350186303257942, -0.033657774329185486, -0.07813628762960434, -0.05764922872185707, -0.00823341403156519, -0.03571110591292381, -0.07297340780496597, -0.027774320915341377, 0.043056972324848175, 0.055397648364305496, 0.02107858471572399, -0.026417281478643417, 0.02166924625635147, -0.08313257247209549, 0.013780275359749794, 0.0778074711561203, 0.0720490887761116, 0.0319887213408947, -0.012185092084109783, -0.09765933454036713, 0.03187858313322067, -0.09202452003955841, 0.07940908521413803, -0.0473213829100132, 0.09105996042490005, -0.0439835786819458, 0.08346034586429596, 0.10685241967439651, 0.026742203161120415, 0.08341272920370102, 0.0029914623592048883, 0.09828277677297592, -0.03958558663725853, -0.11791540682315826, -0.10516081005334854, 0.0028695028740912676, 0.12177004665136337, -0.005563612096011639, -0.1812635362148285, -0.11112327873706818, 0.04508034884929657, -0.016725635156035423, 0.032243307679891586, 0.054546501487493515, -0.07295089215040207, 0.0711122527718544, 0.068151094019413, 0.15672069787979126, -0.060198571532964706, 0.015963423997163773, 0.11435524374246597, 0.005502838641405106, -0.03721930831670761, -0.04150761663913727, 0.030971873551607132, -0.04283874109387398, 0.042176082730293274, -0.05383516103029251, -0.05784430727362633, 0.033190976828336716, 0.06745722889900208, 0.0036617263685911894, 0.026604238897562027, -0.13711734116077423, 0.0507064014673233, 0.054421380162239075], -shl:[-0.0023395023308694363, 0.15129354596138, 0.025282610207796097, 0.09878227859735489, 0.022335125133395195, 0.002049099188297987, -0.01616954244673252, -0.0623614564538002, -0.04963531717658043, -0.1235731691122055, -0.02912686951458454, 0.017758211120963097, 0.049543824046850204, 0.0022430419921875, 0.04448752477765083, -0.038265474140644073, 0.05776778236031532, -0.0021212378051131964, -0.09005837887525558, 0.008963563479483128, 0.10386589169502258, 0.019677894189953804, 0.03344935551285744, 0.06269679963588715, 0.09266349673271179, -0.032501306384801865, 0.041564423590898514, -0.0062482599169015884, 0.053610559552907944, 0.10918691009283066, 0.03846658766269684, 0.10717465728521347, 0.11457855254411697, 0.06371867656707764, -0.013623053207993507, 0.05499853938817978, 0.010493576526641846, -0.006493136752396822, -0.01649595983326435, 0.0404360331594944, 0.09462273865938187, 0.05071641877293587, -0.09179429709911346, -0.10039406269788742, -0.005706573370844126, 0.10660737007856369, 0.03765783831477165, -0.1295022815465927, 0.2211044877767563, -0.10210447758436203, -0.08447758853435516, 0.022047987207770348, -0.039786435663700104, -0.0937221422791481, -0.04238050803542137, -0.11688272655010223, 0.0735459104180336, 0.13454701006412506, -0.09955629706382751, -0.11887075752019882, 0.025289271026849747, 0.031101513653993607, 0.09153436124324799, 0.02796161361038685, 0.04427987337112427, 0.059592463076114655, 0.05567288398742676, 0.07873784005641937, 0.11282651871442795, 0.007269213441759348, 0.00504008075222373, -0.11458384245634079, -0.0840521901845932, 0.08673176914453506, 0.020591987296938896, -0.0516352541744709, 0.020716406404972076, -0.2016274333000183, -0.10209937393665314, -0.010715942829847336, -0.10962308198213577, -0.05541915446519852, -0.12745587527751923, -0.026962444186210632, 0.10038596391677856, 0.02017286978662014, 0.014428919181227684, 0.016331173479557037, -0.0370657816529274, -0.049520038068294525, -0.04101157933473587, 0.04277937859296799, 0.08814235031604767, -0.052883896976709366, -0.11639711260795593, -0.017123699188232422, -0.05195199325680733, -0.031793542206287384, 0.01880582794547081, 0.02640397660434246, 0.10811292380094528, -0.06494566798210144, -0.04037060961127281, -0.11143288016319275, 0.01793558895587921, -0.09831254184246063, 0.020452789962291718, 0.08206547051668167, 0.1657131314277649, -0.044694844633340836, -0.16761167347431183, -0.07280754297971725, -0.09303697198629379, -0.04832761362195015, 0.038285985589027405, 0.046260084956884384, 0.19107428193092346, -0.03145986795425415, -0.07309825718402863, 0.010995964519679546, 0.017147120088338852, 0.018617866560816765, 0.08500929176807404, 0.009913495741784573, 0.021312760189175606, 0.0807546079158783, -0.0454840324819088, -0.021856993436813354, 0.004027043003588915, -0.029412228614091873, 0.0759626105427742, -0.04612140357494354, 0.0866178646683693, 0.14985868334770203, -0.05168470740318298, 0.0053516412153840065, 0.049707528203725815, 0.06165527552366257, -0.0033104338217526674, -0.0078548863530159, 0.08736959844827652, -0.021290788426995277, -0.038760945200920105, 0.07730309665203094, -0.01872330531477928, -0.08807054162025452, -0.053985703736543655, 0.14323954284191132, -0.09012114256620407, -0.012950727716088295, -0.0842708870768547, 0.027616627514362335, -0.09737711399793625, 0.010938121937215328, 0.05268196761608124, -0.031157810240983963, 0.04331247881054878, 0.10896211862564087, -0.08955246955156326, 0.016734128817915916, -0.03483375906944275, 0.09129071235656738, 0.034809671342372894, 0.05891989544034004, 0.006681299768388271, 0.0321672223508358, -0.02851022779941559, 0.06427393108606339, -0.06702085584402084, -0.0424385592341423, 0.004975443705916405, 0.013735935091972351, 0.05798609182238579, -0.04726482182741165, -0.03410371020436287, 0.03240519016981125, -0.15072432160377502, -0.00375003763474524, 0.1104566678404808, -0.08031388372182846, -0.05939197540283203, -0.04812350869178772, 0.0475754588842392, -0.06745807826519012, -0.14851096272468567, -0.016293153166770935, -0.032026514410972595, 0.011643596924841404, 0.0007156665087677538, -0.12762048840522766, 0.08414065837860107, -0.0931190624833107, -0.1341737061738968, 0.06920858472585678, -0.11010637879371643, -0.057797499001026154, -0.11655043810606003, -0.013601339422166348, -0.04122740775346756, -0.14670971035957336, -0.06433480978012085, 0.09487045556306839, -0.004375339951366186, 0.10298001766204834, -0.02097400091588497, 0.13788652420043945, -0.018923934549093246, 0.01552681066095829, -0.05379544571042061, 0.030804792419075966, 0.02626841329038143, 0.1102910116314888, 0.0902678370475769, 0.07615803182125092, 0.0638776496052742, -0.04053964838385582, 0.04404844716191292, -0.0376894511282444, 0.09025178104639053, 0.025919495150446892, 0.08474689722061157, 0.03775366395711899, 0.056049514561891556, 0.029972609132528305, 0.12418670207262039, -0.01779070310294628, -0.0031148474663496017, 0.01140117458999157, 0.012257654219865799, 0.03535953164100647, -0.00220368686132133, -0.02280689775943756, -0.1076417863368988, -0.004562323912978172, -0.061386480927467346, -0.02825630083680153, 0.09463261067867279, -0.07786737382411957, -0.011285150423645973, -0.033740781247615814, -0.07360686361789703, -0.030504342168569565, 0.043130725622177124, 0.0771360695362091, -0.0010001118062064052, 0.07275458425283432, -0.08653340488672256, -0.09071851521730423, -0.05379052832722664, 0.05899764597415924, 0.08038286119699478, 0.03485644981265068, 0.05754996836185455, 0.054863281548023224, 0.06201473996043205, 0.048594798892736435, 0.08042053133249283, -0.14030377566814423, -0.0919063463807106, -0.057138483971357346, 0.08671097457408905, -0.05965691804885864, 0.03319921717047691, 0.07512982934713364, -0.04971178248524666, 0.08742927759885788, -0.11150071024894714, 0.05123836547136307, -0.1059151440858841, 0.0029464748222380877, 0.07960791885852814, 0.09853196144104004, 0.01949497126042843, 0.004665041342377663, 0.14367279410362244, 0.033723700791597366, 0.07051629573106766, 0.02193809486925602, -0.11113746464252472, 0.05746482312679291, 0.07524168491363525, -0.026361562311649323, -0.028536029160022736, -0.12784959375858307, 0.11183959990739822, -0.02688203752040863, -0.01762635074555874, -0.061914123594760895, 0.11415788531303406, -0.012962677516043186, 0.08388492465019226, -0.19195343554019928, 0.02440778538584709, 0.057227179408073425, 0.03250898793339729, 0.057613614946603775, 0.029203778132796288, -0.09564629942178726, -0.02426156774163246, 0.04268030822277069], -shufflevector:[0.0035034222528338432, -0.0073991636745631695, 0.013478107750415802, 0.08104149997234344, 0.0015942000318318605, -0.010733711533248425, 0.103766530752182, -0.018826225772500038, -0.1100933626294136, -0.11446850746870041, -0.002800139831379056, 0.09114506095647812, 0.023937417194247246, -0.04828515276312828, 0.07764347642660141, -0.02489691972732544, 0.01140085980296135, 0.07882142812013626, -0.02509387582540512, 0.021182458847761154, 0.09568789601325989, -0.052267901599407196, 0.034392982721328735, 0.0643635019659996, -0.00034098263131454587, -0.09813421219587326, -0.04683752730488777, -0.007446753792464733, -0.13486814498901367, 0.1073165014386177, 0.08751638233661652, 0.03890198469161987, -0.06308890134096146, -0.04470205307006836, 0.0033613131381571293, 0.14083079993724823, -0.03320549055933952, 0.09891198575496674, 0.007061989977955818, 0.046696316450834274, 0.08891711384057999, -0.011795132420957088, 0.018497411161661148, -0.12099374830722809, -0.05652422830462456, 0.10994350910186768, -0.019384173676371574, 0.0285181887447834, 0.07576202601194382, -0.002554267877712846, -0.0444662868976593, -0.03540783002972603, 0.03188633918762207, -0.08126387000083923, -0.09202330559492111, -0.12439166754484177, -0.17510543763637543, -0.10063352435827255, -0.12065781652927399, 0.08143291622400284, 0.03980737179517746, 0.0972343310713768, 0.09682611376047134, 0.04262465611100197, 0.11733657121658325, -0.11779311299324036, -0.06354326009750366, -0.08833152800798416, -0.015248403884470463, -0.005412912927567959, 0.013045448809862137, -0.030806006863713264, -0.0879688709974289, -0.056622181087732315, 0.00965525396168232, -0.14502280950546265, -0.06402821093797684, 0.01048539113253355, 0.08685389161109924, -0.002886639442294836, -0.00856949482113123, 0.10448707640171051, -0.04079095646739006, -0.027429640293121338, -0.0009832617361098528, -0.059746675193309784, -0.016781944781541824, 0.06465707719326019, 0.06657075881958008, -0.04004073515534401, -0.04367012903094292, 0.04661457985639572, 0.11939027160406113, 0.13715383410453796, 0.02649594098329544, -0.13966168463230133, -0.03914043679833412, -0.11656951904296875, 0.018723443150520325, 0.012702773325145245, -0.011345872655510902, -0.09292597323656082, -0.11643003672361374, 0.012313240207731724, 0.11982006579637527, -0.10348282754421234, 0.04637295752763748, 0.11757953464984894, 0.04904819652438164, -0.12753748893737793, -0.012454722076654434, 0.02908535860478878, -0.05092986673116684, 0.08364217728376389, 0.02162720076739788, 0.010741946287453175, 0.021104302257299423, -0.01624845340847969, 0.07015717774629593, -0.037048280239105225, 0.005188271403312683, 0.0698729157447815, 0.05735960230231285, -0.03642263263463974, 0.013667626306414604, 0.011602548882365227, 0.10905439406633377, 0.0772535502910614, 0.030368700623512268, -0.07847874611616135, 0.038537491112947464, -0.04035278409719467, 0.1183631494641304, 0.023340554907917976, -0.04785901680588722, 0.01008647121489048, 0.07095293700695038, 0.07537645101547241, -0.06763939559459686, -0.12754714488983154, 0.046403154730796814, 0.021726956591010094, -0.03532230854034424, -0.08639097213745117, 0.03813057392835617, -0.08970166742801666, 0.055742695927619934, 0.021069791167974472, 0.0018036211840808392, 0.07229280471801758, -0.051101308315992355, 0.03532912954688072, -0.052136313170194626, 0.0704433023929596, 0.0782211422920227, -0.02855798602104187, 0.03140769898891449, -0.10394157469272614, -0.09413391351699829, 0.02158447541296482, 0.10931765288114548, 0.06715559214353561, -0.07619379460811615, 0.10349768400192261, 0.008946046233177185, 0.05323886126279831, 0.07705135643482208, 0.09001666307449341, -0.09974416345357895, 0.042117636650800705, -0.052937254309654236, -0.14464040100574493, 0.08837268501520157, 0.023872770369052887, -0.0769154354929924, 0.041846029460430145, -0.07289903610944748, -0.0908966064453125, 0.09709911048412323, -0.062034476548433304, -0.043890658766031265, -0.04394911974668503, -0.07562302052974701, -0.058091871440410614, 0.01000851858407259, -0.10476270318031311, -0.15796594321727753, -0.02201603353023529, 0.07711633294820786, -0.11550635099411011, -0.08352084457874298, -0.021444963291287422, 0.08947604894638062, 0.013210210017859936, -0.1405053734779358, -0.06494338065385818, -0.07436206936836243, -0.07750560343265533, -0.011035042814910412, -0.08902640640735626, -0.07384074479341507, 0.012985887005925179, 0.12069781869649887, -0.025223644450306892, -0.06740614771842957, 0.07531396299600601, 0.11032718420028687, 0.0952983871102333, 0.11854877322912216, 0.01346749346703291, 0.06477543711662292, -0.0714767575263977, -0.15323583781719208, 0.054579321295022964, 0.06527286767959595, -0.10142762213945389, 0.1169772669672966, -0.11117982864379883, 0.015573177486658096, 0.017463868483901024, 0.08962256461381912, -0.04178307577967644, -0.107089564204216, 0.10839103907346725, 0.043119877576828, -0.09073679894208908, -0.0009999689646065235, 0.08011531829833984, -0.05427450314164162, 0.019718531519174576, 0.0846155509352684, 0.044693827629089355, -0.0318305678665638, 0.1334265172481537, -0.017651285976171494, -0.12095914036035538, 0.09712983667850494, -0.10494846105575562, 0.092317596077919, -0.03549254313111305, -0.0734129324555397, -0.031351424753665924, 0.03633899986743927, 0.08797180652618408, -0.0846312940120697, -0.0982552021741867, 0.03673674166202545, -0.11776909232139587, -0.14733558893203735, 0.04676336422562599, -0.0658477395772934, -0.010817836970090866, -0.13377511501312256, -0.12708115577697754, 0.06312357634305954, 0.011327700689435005, 0.007625231519341469, 0.09417041391134262, 0.15032151341438293, -0.0817631408572197, 0.0503254160284996, 0.02624320238828659, 0.04796789214015007, 0.005255850963294506, 0.09391593933105469, -0.09850412607192993, 0.026929287239909172, -0.14351332187652588, -0.11097414791584015, -0.03653429448604584, 0.012496309354901314, 0.002073866780847311, 0.00805675983428955, -0.11982046812772751, 0.09714241325855255, -0.0876019299030304, 0.11023116856813431, 0.07440419495105743, -0.046514227986335754, -0.1322988122701645, 0.14435413479804993, 0.04808412492275238, 0.07241778820753098, 0.08088159561157227, 0.07371499389410019, -0.1774340718984604, 0.07855892926454544, -0.0485776886343956, -0.055432699620723724, -0.021316884085536003, 0.06439534574747086, 0.06522713601589203, -0.1612277328968048, -0.12584517896175385, 0.03511470928788185, 0.05485086888074875, 0.014164919964969158, -0.11026449501514435, -0.014528404921293259, 0.02298915944993496], -sitofp:[0.051899075508117676, -0.010272417217493057, 0.021237153559923172, -0.005028339568525553, 0.02448536641895771, -0.0009428421617485583, -0.009141654707491398, 0.0768490731716156, -0.019861595705151558, -0.07063215970993042, -0.06199898198246956, 0.023266011849045753, 0.044401999562978745, -0.041901011019945145, 0.11946507543325424, 0.10911990702152252, 0.038448285311460495, 0.06059173122048378, -0.006983589846640825, 0.003841084660962224, 0.09290376305580139, 0.03224142640829086, 0.033022113144397736, 0.03212346136569977, 0.08352279663085938, -0.0782821923494339, -0.016998495906591415, -0.0004931371076963842, 0.006840055342763662, 0.11016059666872025, 0.07355333119630814, 0.09988526254892349, 0.05960178002715111, 0.09664246439933777, 0.08204206079244614, 0.046210840344429016, -0.003425413044169545, 0.04753889888525009, -0.022350382059812546, 0.15463536977767944, 0.09181132167577744, -0.03643862158060074, 0.04649839177727699, -0.11880861967802048, -0.011370701715350151, 0.10840579867362976, -0.07347655296325684, -0.11844970285892487, 0.1678141951560974, 0.018058910965919495, 0.00869392417371273, 0.22319981455802917, 0.030645811930298805, -0.0633336529135704, -0.07965248823165894, -0.1191994771361351, -0.14042611420154572, -0.004298307932913303, -0.09767784923315048, 0.08262670040130615, -0.03325404226779938, 0.026239609345793724, 0.04722712188959122, 0.051032692193984985, 0.04494451358914375, 0.01732625439763069, 0.050847213715314865, 0.029944194480776787, -0.0018199923215433955, 0.01923777163028717, 0.020868295803666115, -0.025838524103164673, 0.009009765461087227, -0.07225555181503296, -0.006060971412807703, -0.02496057190001011, -0.08820347487926483, 0.0188039168715477, -0.042967598885297775, 0.006914801895618439, -0.013127585873007774, -0.059315022081136703, 0.15892408788204193, -0.007582179736346006, 0.029688440263271332, 0.1491314023733139, -0.015847789123654366, 0.047711607068777084, 0.02253151684999466, 0.03334636613726616, -0.12473732233047485, 0.013461890630424023, -0.06102296710014343, 0.15774580836296082, 0.05827853083610535, 0.12596462666988373, 0.0003177363832946867, -0.06532721221446991, 0.0179353766143322, 0.0021846212912350893, 0.12477269768714905, -0.10654410719871521, -0.030971862375736237, 0.0013577896170318127, 0.1394614428281784, -0.10255418717861176, -0.004429150372743607, 0.09629681706428528, 0.061012957245111465, -0.09717914462089539, -0.024344226345419884, -0.03994108736515045, -0.08691193163394928, 0.007558817975223064, -0.027621226385235786, -0.031043514609336853, 0.04772122576832771, 0.029622096568346024, -0.01014576107263565, 0.01035178080201149, 0.01867811568081379, 0.06320583075284958, 0.07787692546844482, -0.04502501338720322, 0.08453045785427094, 0.01444691326469183, 0.04354676976799965, 0.019136255607008934, -0.03417297080159187, -0.06537963449954987, 0.03626483678817749, -0.030640946701169014, 0.11437619477510452, 0.03593027591705322, 0.014372171834111214, -0.034477539360523224, 0.07755571603775024, 0.0647173672914505, -0.001652074628509581, 0.09665131568908691, 0.039085425436496735, 0.010026868432760239, 0.024910980835556984, 0.10882268846035004, -0.07860872894525528, -0.05907773971557617, -0.0775827020406723, -0.16464340686798096, 0.026808178052306175, 0.12013661116361618, 0.030688555911183357, 0.11502178013324738, -0.08266297727823257, -0.17452898621559143, 0.08071357756853104, -0.027989976108074188, 0.04709280654788017, 0.025839699432253838, -0.08965062350034714, 0.013349021784961224, -0.026412835344672203, 0.02328580431640148, -0.012179477140307426, 0.0680835023522377, 0.10476817190647125, 0.04986036941409111, -0.051910292357206345, 0.06965360045433044, -0.06960270553827286, 0.09695930033922195, -0.07559539377689362, -0.09872333705425262, 0.09515141695737839, 0.12709534168243408, -0.04683009162545204, -0.16932490468025208, -0.08867698162794113, -0.05339733511209488, 0.09057415276765823, -0.08992565423250198, -0.023225413635373116, 0.12291361391544342, -0.03777964413166046, 0.10736078768968582, 0.007155011873692274, -0.09211680293083191, -0.0795467272400856, -0.014179671183228493, 0.030577003955841064, -0.10772891342639923, -0.13144627213478088, -0.1261148899793625, 0.03523796796798706, 0.016964737325906754, -0.11484561860561371, 0.01874028891324997, -0.04022692143917084, -0.16574332118034363, -0.08299027383327484, -0.07456961274147034, -0.08101102709770203, 0.15720559656620026, 0.13805867731571198, -0.11226484179496765, -0.06253058463335037, -0.11061102896928787, -0.03859633579850197, 0.07657525688409805, 0.09294344484806061, 0.04223766550421715, 0.057920608669519424, 0.04204712063074112, 0.11361940950155258, 0.03072054125368595, -0.10455653071403503, -0.06929022073745728, 0.057872701436281204, 0.03536122292280197, 0.06971577554941177, -0.18952606618404388, 0.0909247025847435, 0.03211556375026703, 0.020780613645911217, -0.1823418140411377, 0.17293405532836914, 0.04249895364046097, -0.008902488276362419, 0.057935770601034164, -0.004911230877041817, 0.022054500877857208, 0.09360849112272263, 0.006980955135077238, -0.01715897023677826, 0.08053582906723022, 0.06627320498228073, -0.03359401971101761, 0.1425294578075409, -0.11604496836662292, -0.006612684577703476, -0.03636499121785164, -0.08316550403833389, -0.013898917473852634, 0.05086784437298775, 0.07746995985507965, -0.004297744948416948, -0.10056442022323608, 0.020679999142885208, -0.010829065926373005, 0.1232733502984047, 0.053351640701293945, 0.05452720820903778, 0.029157888144254684, -0.01813122071325779, 0.0136455362662673, 0.04819127917289734, 0.024368077516555786, 0.08250746130943298, -0.08535665273666382, 0.052804458886384964, 0.09149303287267685, 0.03638487309217453, -0.1655304729938507, 0.010873225517570972, 0.09204588830471039, 0.057426150888204575, 0.041624873876571655, 0.059533145278692245, -0.13898707926273346, -0.11220265924930573, -7.828392699593678e-05, 0.08273325115442276, 0.10061665624380112, -0.014868028461933136, -0.053031403571367264, 0.028158053755760193, -0.0574738085269928, 0.03378870710730553, -0.03892140835523605, -0.15577304363250732, 0.052990738302469254, 0.03528575971722603, 0.10135269910097122, 0.1690727323293686, -0.1517474502325058, 0.08822164684534073, 0.001332059851847589, 0.010022569447755814, 0.13405397534370422, -0.07361097633838654, 0.08810459822416306, 0.10501634329557419, 0.0730876475572586, -0.12789198756217957, -0.00827785860747099, 0.0637706071138382, 0.01646975241601467, 0.023536989465355873, -0.05841626599431038, -0.022948119789361954, -0.02244265191257], -srem:[-0.002134086797013879, 0.13424351811408997, 0.025241544470191002, 0.14151142537593842, 0.023624969646334648, 0.07027412950992584, -0.013362163677811623, -0.07529821991920471, -0.004799984861165285, -0.1317415088415146, -0.06818365305662155, 0.02082952857017517, 0.09486855566501617, -0.12014174461364746, 0.10843521356582642, -0.13042153418064117, -0.050945136696100235, 0.04647848755121231, -0.03165009245276451, -0.003334903856739402, 0.12682099640369415, 0.1455969512462616, -0.02249854989349842, 0.030961448326706886, -0.0863468199968338, 0.01743076741695404, 0.03344341367483139, 0.13603198528289795, 0.058214783668518066, 0.0973893254995346, 0.02028706483542919, 0.09395646303892136, 0.1389334499835968, 0.10876083374023438, -0.13416723906993866, 0.030854664742946625, 0.0876958817243576, -0.010705293156206608, -0.0294336024671793, -0.049674972891807556, 0.1193803921341896, -0.0349547378718853, 0.09700112789869308, 0.07164537161588669, 0.10790681838989258, 0.10518963634967804, 0.10643760114908218, 0.006978260353207588, 0.013319883495569229, -0.11132858693599701, -0.07143671065568924, 0.024814778938889503, 0.15188881754875183, -0.11951836198568344, 0.04019200801849365, -0.01841629296541214, 0.004533777944743633, 0.06313716620206833, -0.1388791799545288, 0.058985635638237, 0.03524889051914215, 0.029609831050038338, 0.08766187727451324, 0.050448618829250336, -0.013951004482805729, 0.09595023095607758, 0.049711085855960846, -0.12046696245670319, 0.060086239129304886, -0.03795856982469559, 0.010303049348294735, -0.05512773618102074, -0.08822640776634216, -0.05751367285847664, 0.022323668003082275, 0.09044590592384338, -0.01389305479824543, 0.025458749383687973, -0.06029355525970459, -0.10451619327068329, -0.12847581505775452, 0.09673137217760086, 0.05867720767855644, -0.012098908424377441, 0.07684814929962158, 0.1286405473947525, 0.0465669110417366, 0.036420416086912155, -0.05410594865679741, -0.0360848493874073, -0.08338571339845657, 0.04498209431767464, 0.03576896712183952, -0.006350486073642969, -0.06474236398935318, -0.15326565504074097, -0.055402278900146484, -0.04349836707115173, 0.025900445878505707, -0.08431839942932129, 0.1111551970243454, -0.07390473783016205, -0.02886609546840191, 0.0265820249915123, -0.11312320083379745, -0.10224253684282303, -0.014368511736392975, -0.09319281578063965, -0.1373145878314972, -0.036463212221860886, 0.0050146919675171375, -0.01036869641393423, -0.0878041461110115, -0.1535286158323288, 0.12516440451145172, 0.020643681287765503, -0.003312600776553154, -0.002859425498172641, 0.012437895871698856, 0.021115096285939217, 0.011514338664710522, 0.05279150605201721, 0.09237363189458847, 0.0718492865562439, 0.08764234930276871, 0.01842672936618328, -0.08841767907142639, 0.1200176402926445, -0.162299245595932, -0.008591476827859879, 0.047445449978113174, -0.06365226954221725, 0.0789504423737526, -0.009066580794751644, -0.13467839360237122, -0.030582468956708908, 0.023529332131147385, 0.08308573812246323, -0.0017578070983290672, -0.018830178305506706, 0.15946732461452484, -0.026674317196011543, -0.06290614604949951, 0.1272093653678894, -0.035500943660736084, -0.09259863197803497, -0.006817845162004232, 0.06971003860235214, -0.025642788037657738, -0.018383750692009926, -0.13571828603744507, 0.06544019281864166, 0.03821514546871185, 0.005148238502442837, -0.08349192887544632, -0.028493104502558708, 0.037541866302490234, -0.04145234078168869, -0.010960176587104797, 0.011798388324677944, -0.03881417587399483, 0.08033786714076996, 0.1426675170660019, 0.077793188393116, 0.007134758867323399, 0.11373579502105713, -0.025819966569542885, -0.11182793974876404, -0.06428402662277222, 0.12259994447231293, 0.020661691203713417, -0.08905581384897232, -0.04291939362883568, 0.1310613602399826, 0.05170578137040138, -0.002626724075525999, -0.1516818106174469, 0.12752696871757507, 0.09187167882919312, -0.0861571654677391, -0.08502830564975739, -0.08887894451618195, -0.07123465836048126, 0.02766786888241768, 0.02678726240992546, 0.005891996901482344, -0.07883378863334656, -0.0086643286049366, -0.12625032663345337, -0.11966758966445923, 0.07115338742733002, -0.1309889703989029, 0.008893465623259544, 0.017362253740429878, -0.08464200794696808, -0.04646678641438484, 0.12173707038164139, 0.020844116806983948, 0.03623531013727188, -0.023362137377262115, -0.05437984690070152, -0.05847031995654106, -0.005718601401895285, -0.07891002297401428, -0.032634515315294266, 0.08107329159975052, 0.0030509450007230043, 0.0444951131939888, -0.13269737362861633, -0.030446240678429604, 0.02402997575700283, 0.0092985974624753, 0.04412401467561722, -0.0167364701628685, 0.03145378455519676, -0.06836561113595963, -0.01655144989490509, -0.043462786823511124, 0.011606177315115929, 0.04485778883099556, -0.09484338760375977, 0.03762175142765045, 0.004546696785837412, -0.012321440503001213, 0.027223320677876472, -0.06694918870925903, -0.012173754163086414, 0.04891427606344223, 0.01229954231530428, 0.03879256919026375, -0.0377146415412426, -0.1473771035671234, -0.12077931314706802, -0.11583947390317917, -0.0590401329100132, -0.025111494585871696, 0.020112963393330574, -0.1313783973455429, -0.1287791132926941, -0.03481251373887062, -0.07487268000841141, -0.07096856832504272, 0.053263384848833084, 0.06933801621198654, -0.014020014554262161, -0.1118127852678299, 0.056416042149066925, -0.048814933747053146, 0.0541284903883934, 0.06876076757907867, -0.021465342491865158, 0.037344980984926224, 0.08659055829048157, 0.04025450348854065, 0.0643705502152443, 0.017242765054106712, 0.079587921500206, -0.12393959611654282, 0.10439284890890121, 0.03993746265769005, -0.13829894363880157, -0.02016310952603817, -0.0850391685962677, 0.01862328313291073, -0.06058267876505852, 0.0826338604092598, -0.10885441303253174, -0.10033994913101196, -0.11250615864992142, 0.06699085235595703, -0.006994910072535276, 0.12061341106891632, 0.024594871327280998, 0.07202811539173126, 0.10925634950399399, -0.0004005859373137355, -0.03776661679148674, -0.019562315195798874, -0.1274518519639969, 0.04706902056932449, 0.025217954069375992, 0.07144860923290253, -0.12253901362419128, -0.1401519924402237, 0.11247314512729645, -0.024524949491024017, -0.07519623637199402, 0.1296483725309372, -0.08620497584342957, 0.010864079929888248, -0.06722851097583771, -0.13660931587219238, -0.0463341549038887, 0.08708412200212479, 0.06246006116271019, 0.006408569868654013, 0.02058316022157669, -0.12153264135122299, -0.02282671071588993, -0.10435356944799423], -store:[0.0913454070687294, -0.19453386962413788, 0.016070930287241936, 0.063380666077137, 0.004487338475883007, -0.0076518882997334, -0.013206022791564465, 0.03924068436026573, 0.1000068411231041, -0.10768260061740875, 0.0049421158619225025, -0.027131294831633568, 0.040666963905096054, -0.0038541429676115513, 0.07121669501066208, 0.015405234880745411, 0.038443729281425476, -0.023998679593205452, -0.19874940812587738, 0.047740306705236435, 0.03880288451910019, -0.029680676758289337, 0.02985196001827717, 0.03531888127326965, -0.021069159731268883, -0.07872334867715836, 0.08785255998373032, 0.04883783683180809, 0.036262597888708115, 0.0819181352853775, -0.05158475786447525, 0.04209331423044205, 0.08697525411844254, -0.011157984845340252, 0.00743483193218708, 0.08097671717405319, 0.03319808840751648, -0.00991710927337408, -0.030555225908756256, 0.0878845825791359, 0.09061898291110992, 0.05130638927221298, -0.051381323486566544, -0.023325126618146896, -0.013101736083626747, 0.10641735047101974, 0.05195912346243858, 0.17762772738933563, 0.2291286140680313, -0.06379327923059464, 0.10330653935670853, -0.0757393017411232, -0.04165380075573921, -0.04781676456332207, -0.09008046239614487, -0.03589864820241928, 0.09214577823877335, 0.040925368666648865, -0.039737049490213394, 0.06998413056135178, -0.014942292124032974, 0.03399541601538658, 0.06776639074087143, 0.024295134469866753, 0.1218075379729271, -0.030113698914647102, 0.0950668454170227, -0.003973729908466339, 0.07193346321582794, -0.027247676625847816, 0.009083310142159462, 0.0071424865163862705, 0.04208265244960785, 0.04626971855759621, 0.06700890511274338, -0.1491895318031311, -0.06655362993478775, -0.21397759020328522, 0.003394137369468808, 0.028104394674301147, -0.01460359152406454, -0.028567278757691383, -0.11064110696315765, -0.058096930384635925, 0.024419784545898438, 0.05969158560037613, -0.05576449632644653, 0.06982468068599701, -0.04143267124891281, 0.03965209797024727, -0.07485659420490265, 0.055307842791080475, 0.118572898209095, 0.11146346479654312, -0.0217336006462574, 0.018961410969495773, 0.02777770161628723, -0.0051735034212470055, 0.023848965764045715, 0.016276072710752487, 0.10519351065158844, -0.10718017816543579, -0.05227946117520332, -0.10278428345918655, -0.03466329351067543, -0.09844040870666504, -0.008060511201620102, 0.01746821217238903, -0.10917263478040695, 0.0247726421803236, -0.0086669921875, -0.10644164681434631, -0.055766742676496506, -0.008535366505384445, 0.040135499089956284, 0.023238923400640488, 0.13924676179885864, -0.0865454226732254, 0.06893394142389297, -0.0430283397436142, 0.004205170553177595, 0.10492806136608124, 0.06486944109201431, -0.10829073935747147, 0.016861453652381897, -0.10670800507068634, 0.09660164266824722, 0.06942475587129593, 0.031791798770427704, -0.075231172144413, 0.07859360426664352, 0.011087789200246334, 0.07032546401023865, 0.12162647396326065, 0.011819730512797832, 0.016852719709277153, 0.03625698760151863, -0.04333023354411125, -0.002551082754507661, -0.02865266241133213, 0.09890522062778473, -0.06181422993540764, -0.06794025003910065, -0.030254380777478218, 0.07205644249916077, -0.07055351138114929, 0.23454107344150543, -0.0381614975631237, 0.040393855422735214, 0.04011952131986618, -0.12542562186717987, 0.07464837282896042, -0.05116775631904602, -0.16450728476047516, -0.009158443659543991, -0.027859071269631386, 0.03459109365940094, 0.051885973662137985, -0.05935513228178024, 0.010232667438685894, 0.03568977117538452, 0.02210335060954094, -0.07824575901031494, -0.0663144588470459, 0.006207338068634272, 0.015684839338064194, -0.25365692377090454, 0.06346748024225235, -0.04099250212311745, -0.02435796521604061, 0.014022449031472206, 0.05526062101125717, 0.02894650772213936, 0.08898045867681503, 0.030399059876799583, -0.1749836951494217, -0.06051914393901825, -0.08242148160934448, 0.08491308987140656, -0.0657896175980568, -0.0208453182131052, -0.018198277801275253, -0.0477212630212307, -0.12013447284698486, 0.03976109251379967, -0.016261400654911995, -0.017276020720601082, 0.0033727225381881, -0.06837781518697739, -0.1132836565375328, 0.007102621719241142, -0.09820310026407242, 0.16971269249916077, 0.014530928805470467, -0.11801231652498245, -0.031361788511276245, -0.12616223096847534, 0.11555709689855576, -0.004217434674501419, 0.035629723221063614, -0.03226681798696518, -0.12733094394207, -0.11613452434539795, 0.002957626013085246, -0.04166581854224205, 0.1725858449935913, -0.158066064119339, 0.008171087130904198, 0.038895584642887115, -0.02985367178916931, 0.026819173246622086, 0.06352890282869339, -0.13088859617710114, 0.0446116104722023, 0.01620507426559925, -0.09057419747114182, 0.048391833901405334, 0.02519269473850727, -0.02515498176217079, -0.07872419059276581, 0.08994097262620926, 0.025770846754312515, 0.09695909172296524, 0.14927271008491516, 0.0842072144150734, -0.07991228997707367, -0.015734612941741943, 0.011326500214636326, 0.012855653651058674, 0.0429719053208828, 0.06934422254562378, -0.02952752634882927, -0.07876485586166382, 0.046468671411275864, 0.043580956757068634, -0.05428696051239967, -0.0076804389245808125, -0.011091457679867744, -0.012534226290881634, -0.032884374260902405, -0.0743570402264595, -0.05962378531694412, -0.03237289935350418, 0.08314047008752823, 0.0432962030172348, -0.04589763283729553, 0.02073804661631584, 0.0085153104737401, -0.09402089565992355, 0.08102782815694809, -0.00613967701792717, 0.0315585732460022, -0.04041606932878494, -0.16575519740581512, 0.05924283340573311, 0.1778065413236618, 0.036451343446969986, 0.04839096590876579, -0.16074925661087036, -0.016206560656428337, 0.03965647518634796, 0.07088728994131088, 0.029968025162816048, 0.17177283763885498, 0.10082246363162994, 0.08225400745868683, -0.08075062185525894, -0.11013033986091614, -0.1084609180688858, -0.030579209327697754, 0.02122734859585762, 0.05156594142317772, 0.016020338982343674, -0.06922338157892227, 0.03164050355553627, -0.030758723616600037, 0.03519406542181969, -0.019467459991574287, -0.019138820469379425, 0.03329309821128845, 0.0748075544834137, 0.02033206820487976, 0.013436899520456791, -0.041125599294900894, 0.0965854749083519, 0.015680702403187752, -0.05761481076478958, -0.07775778323411942, -0.008424283005297184, -0.1005462184548378, 0.05512939766049385, 0.07678400725126266, -0.012603053823113441, 0.031898923218250275, 0.059254080057144165, 0.008827514946460724, 0.024470416828989983, -0.03304392099380493, 0.027612073346972466, -0.046784549951553345], -structTy:[-0.058652639389038086, -0.0013084508245810866, -0.08897984027862549, -0.0544528067111969, 0.10538779199123383, -0.10505302250385284, 0.016547584906220436, -0.019128136336803436, -0.011539007537066936, 0.14024050533771515, 0.030173446983098984, 0.046753447502851486, 0.12266246974468231, 0.03216996416449547, 0.054528601467609406, 0.028823688626289368, 0.07033540308475494, -0.09674062579870224, 0.026978207752108574, -0.0889773741364479, -0.11904113739728928, 0.05488629266619682, -0.09963250160217285, -0.0692967101931572, 0.08844393491744995, 0.13968592882156372, -0.06675472855567932, -0.08459299057722092, 0.09413856267929077, -0.10327563434839249, -0.11955629289150238, 0.034417130053043365, -0.08812955766916275, -0.03986440226435661, -0.07755830883979797, -0.11825841665267944, -0.033987242728471756, 0.04639928415417671, 0.020417537540197372, -0.04499698430299759, -0.11596457660198212, 0.019719846546649933, 0.0250391885638237, -0.003336862428113818, -0.10918799042701721, -0.09822378307580948, -0.01034705899655819, 0.00378114334307611, -0.03635382279753685, 0.09234793484210968, 0.009478294290602207, -0.0025386237539350986, -0.004717035684734583, -0.002601966494694352, 0.07896259427070618, 0.11866540461778641, -0.03201865032315254, -0.12205742299556732, 0.11137458682060242, -0.07930277287960052, -0.01587720960378647, 0.08317748457193375, 0.10067237913608551, 0.08673969656229019, -0.02062288112938404, -0.00020935795328114182, 0.02414875477552414, 0.03466396778821945, -0.11640136688947678, 0.088398776948452, -0.12366228550672531, -0.0895477905869484, 0.07908391952514648, -0.0017700163880363107, -0.05933954194188118, -0.0050339768640697, 0.07408227771520615, -0.013337507843971252, 0.03903092071413994, 0.0518423393368721, 0.07580164819955826, -0.00809324998408556, 0.02530675008893013, 0.09675130248069763, -0.02724410779774189, -0.029733819887042046, 0.06869093328714371, -0.05529707670211792, -0.0277235247194767, 0.11937766522169113, 0.02353809028863907, -0.11568886786699295, -0.046736180782318115, -0.005511451978236437, 0.03999294340610504, -0.092882439494133, -0.060937266796827316, 0.10696253925561905, -0.09353335201740265, -0.07603367418050766, -0.01399892196059227, 0.10229761898517609, 0.07415775209665298, -0.042634639889001846, -0.06878338009119034, 0.12368891388177872, 0.10432293266057968, -0.07021217048168182, 0.07967953383922577, 0.03656241297721863, -0.003972403705120087, 0.01512152235955, -0.08308540284633636, -0.0790913924574852, -0.07659810781478882, -0.09690025448799133, -0.04414519667625427, 0.031119104474782944, -0.008550501428544521, 0.008054114878177643, -0.0686253011226654, -0.04765154421329498, -0.09755757451057434, 0.04043741896748543, 0.08582141250371933, 0.024794243276119232, -0.048180751502513885, 0.11493632942438126, -0.06334658712148666, 0.12159492820501328, -0.010485523380339146, 0.07669167220592499, -0.07214141637086868, -0.008794035762548447, 0.08987952768802643, -0.07335370033979416, 0.004067598842084408, -0.09103823453187943, -0.11557884514331818, 0.11248722672462463, -0.09080930799245834, -0.05347459763288498, -0.026335572823882103, -0.09705421328544617, -0.009836810640990734, 0.1308847963809967, 0.01607906073331833, -0.0313778780400753, -0.010312010534107685, 0.08767615258693695, 0.07519404590129852, -0.03153238818049431, -0.03994068130850792, 0.031390853226184845, -0.06752476841211319, 0.1280508041381836, -0.021598894149065018, -0.11886128038167953, 0.08963532000780106, 0.09849291294813156, 0.13207954168319702, -0.01011384092271328, 0.04677428677678108, -0.12120280414819717, -0.14588388800621033, -0.06536147743463516, 0.055647362023591995, 0.11584947258234024, 0.06272894144058228, 0.023763669654726982, 0.05496443063020706, 0.08877909928560257, -0.07965122908353806, 0.008252725936472416, 0.046152930706739426, -0.019349968060851097, 0.0079030841588974, 0.10692897439002991, -0.12892726063728333, 0.11401604115962982, 0.09886915236711502, 0.10819858312606812, -0.07807570695877075, -0.006365374196320772, 0.036661721765995026, 0.07716009765863419, -0.05374499782919884, 0.11515417695045471, 0.09892868995666504, 0.12705574929714203, 0.056123100221157074, 0.040118589997291565, -0.04979320243000984, -0.10544272512197495, 0.09434762597084045, 0.12070367485284805, 0.01974763162434101, 0.026347646489739418, -0.10027315467596054, 0.04111665114760399, 0.1093519777059555, -0.04627558961510658, 0.0543057881295681, 0.07896288484334946, 0.11262041330337524, 0.006713414564728737, 0.06602738797664642, 0.05353553965687752, 0.0015793939819559455, 0.09857445955276489, 0.1242043524980545, -0.04217250645160675, 0.050495609641075134, -0.12852121889591217, 0.062402885407209396, -0.09171953797340393, -0.11004109680652618, -0.14361239969730377, 0.00215591536834836, -0.014886194840073586, -0.10557900369167328, -0.11157345771789551, -0.031920164823532104, 0.012143505737185478, 0.017327047884464264, 0.08543350547552109, 0.07841537147760391, -0.11900699138641357, -0.06177939474582672, -0.0997627004981041, 0.014846929349005222, -0.003086869837716222, 0.11140400916337967, -0.11427286267280579, 0.06929826736450195, 0.014766004867851734, -0.06323613226413727, -0.10812027752399445, 0.0511462576687336, -0.10854154825210571, 0.0427510030567646, 0.103419728577137, -0.09024263918399811, -0.08378451317548752, 0.1069881021976471, -0.0665305033326149, -0.09861931949853897, -0.10995811969041824, -0.006656176410615444, -0.06977089494466782, -0.031925540417432785, -0.049871206283569336, -0.005127841606736183, 0.012597392313182354, 0.0814858078956604, 0.03784889727830887, -0.09494491666555405, 0.03404730558395386, 0.057865675538778305, 0.0836576297879219, -0.028055919334292412, 0.018504757434129715, -0.11338631808757782, 0.00922144204378128, 0.07514802366495132, 0.10466818511486053, -0.11485811322927475, 0.12376373261213303, 0.12380999326705933, 0.03691631928086281, -0.10948684066534042, -0.07391861081123352, 0.05511309579014778, 0.031623613089323044, -0.11670220643281937, -0.012019151821732521, 0.09392265230417252, -0.120376817882061, -0.024945126846432686, -0.10340689867734909, -0.023449935019016266, -0.058303821831941605, 0.010813843458890915, 0.08442984521389008, -0.11691395938396454, -0.05387156829237938, 0.09273158758878708, 0.08263985067605972, 0.0358474925160408, -0.004261959344148636, -0.03891059011220932, 0.034276414662599564, -0.07771138846874237, 0.07336874306201935, -0.14243432879447937, 0.09055103361606598, -0.11585615575313568, -0.0209285207092762, -0.10241995751857758, -0.018416283652186394], -sub:[0.10473436117172241, 0.028019210323691368, 0.011713563464581966, -0.025255892425775528, 0.020608164370059967, -0.003959326539188623, -0.015212616883218288, -0.033365052193403244, -0.12662631273269653, -0.11822541058063507, 0.003907075151801109, 0.03895324096083641, 0.07412122189998627, 0.12247736006975174, -0.06851314008235931, 0.07961852103471756, 0.02260301075875759, -0.0020453936886042356, -0.20991741120815277, -0.02385062910616398, 0.06140416860580444, -0.022775696590542793, 0.0368279293179512, 0.07262332737445831, -0.0207483172416687, -0.040439777076244354, 0.05396916717290878, 0.017811158671975136, 0.05175594240427017, 0.09443368762731552, -0.09461883455514908, 0.06714273244142532, 0.10601356625556946, -0.013927919790148735, 0.008557572960853577, 0.08122950047254562, 0.10913100093603134, -0.02649957314133644, -0.027161194011569023, 0.02349065989255905, 0.07111620903015137, -0.08423811197280884, 0.0952688604593277, -0.07543638348579407, -0.07228386402130127, 0.10154496133327484, 0.08918867260217667, 0.18333499133586884, 0.0464666448533535, -0.09695244580507278, 0.021275382488965988, -0.12144473940134048, -0.0791078731417656, 0.007039812859147787, -0.04445416107773781, -0.059176985174417496, -0.03941701352596283, 0.12415366619825363, -0.03662042319774628, 0.06669188290834427, 0.16693134605884552, 0.03785942867398262, 0.0659482479095459, 0.04294930398464203, 0.07726404070854187, -0.06110817939043045, 0.009351466782391071, -0.07731389254331589, 0.04370643571019173, -0.025012390688061714, 0.023461202159523964, -0.014306227676570415, -0.08603718876838684, -0.016644801944494247, 0.000464296608697623, -0.18101167678833008, 0.06088794767856598, 0.08573010563850403, 0.08966732025146484, -0.1448136419057846, -0.03392345830798149, 0.06296910345554352, 0.002797973109409213, -0.04488709196448326, 0.00018862582510337234, 0.017274705693125725, -0.04807558283209801, 0.06668020039796829, 0.006138938013464212, 0.02872004546225071, -0.08160515129566193, 0.04155898839235306, 0.03461327403783798, 0.12643064558506012, -0.021856138482689857, 0.017824556678533554, 0.027025196701288223, -0.035977549850940704, 0.06719045341014862, 0.005727123934775591, -0.053106632083654404, -0.08818330615758896, -0.024240072816610336, 0.03892151638865471, 0.012556048110127449, -0.09335185587406158, -0.07678531110286713, 0.09059564024209976, -0.08813271671533585, -0.10918067395687103, -0.17552843689918518, 0.08625658601522446, -0.09093426167964935, -0.01783975586295128, 0.032813429832458496, 0.04071022942662239, 0.051852695643901825, 0.15474833548069, 7.159437518566847e-05, -0.03638540580868721, -0.06710556149482727, 0.044245071709156036, 0.058385077863931656, -0.004695026203989983, 0.03338790312409401, -0.011996662244200706, 0.02193068340420723, -0.00045758867054246366, 0.01522317435592413, -0.045402683317661285, -0.2043362706899643, -0.0008573865634389222, 0.0965283215045929, -0.12148267775774002, 0.013429130427539349, 0.008114824071526527, 0.051955658942461014, 0.07646110653877258, -0.001152239041402936, -0.050767965614795685, -0.004177022259682417, -0.03739315643906593, -0.06352677941322327, 0.0569138377904892, -0.17299923300743103, -0.08516839891672134, -0.05642331391572952, 0.019038351252675056, -0.07947732508182526, -0.012846260331571102, -0.052270762622356415, 0.07299696654081345, -0.06565599888563156, -0.12956713140010834, -0.008789333514869213, -0.02727937512099743, 0.03656549006700516, 0.10589993000030518, -0.08788083493709564, 0.010428493842482567, -0.04042283818125725, -0.06389687955379486, 0.05146525427699089, -0.019843120127916336, -0.06895799934864044, -0.09680300205945969, -0.007175448350608349, 0.08307763934135437, -0.03649712726473808, 0.05346188694238663, 0.016905713826417923, -0.07256565243005753, 0.03577360138297081, 0.1219240054488182, -0.03655453398823738, -0.12550510466098785, -0.14355669915676117, -0.09913218021392822, 0.08732898533344269, -0.057435035705566406, -0.03672640398144722, -0.039546236395835876, -0.0598626546561718, -0.14502379298210144, -0.01795637607574463, -0.014800655655562878, -0.07087218761444092, -0.011683553457260132, 0.018333638086915016, -0.10906360298395157, 0.036601461470127106, -0.0951802209019661, -0.054371122270822525, 0.015383634716272354, -0.11552871763706207, -0.03507138043642044, 0.043446868658065796, -0.03906203433871269, 0.0044859591871500015, -0.09658078104257584, -0.05562162026762962, 0.018920937553048134, -0.039943624287843704, 0.10764008015394211, -0.040849436074495316, -0.036111388355493546, -0.045865174382925034, 0.04622417688369751, -0.032678719609975815, -0.04149257391691208, 0.026071853935718536, 0.02218739502131939, -0.008880185894668102, 0.07276052981615067, 0.044555529952049255, 0.0799081102013588, 0.050382137298583984, -0.023806322365999222, 0.14941516518592834, 0.12081825733184814, 0.09727548807859421, 0.03528007119894028, -0.13086102902889252, 0.16597408056259155, 0.04083409160375595, -0.06837421655654907, -0.010313170030713081, 0.055020589381456375, 0.003774387063458562, 0.04081752151250839, -0.015290778130292892, -0.03476017713546753, -0.10146920382976532, 0.06705936044454575, 0.002018139697611332, -0.0484326109290123, 0.023959962651133537, -0.03085494041442871, -0.005705561488866806, -0.009228912182152271, -0.06910240650177002, -0.05446356162428856, -0.06188912317156792, 0.08011617511510849, 0.03037274442613125, -0.034864429384469986, 0.020289599895477295, -0.049672286957502365, 0.004603813402354717, 0.0938262864947319, -0.08313547074794769, 0.030231274664402008, 0.07956358790397644, -0.1748824268579483, 0.05799262970685959, -0.00712085934355855, 0.03227228671312332, -0.0027709256391972303, -0.021055253222584724, 0.04601287841796875, 0.08689674735069275, -0.12442120909690857, 0.036877263337373734, -0.04923402518033981, -0.02077683061361313, 0.07413655519485474, -0.1088903620839119, -0.1111641377210617, -0.1034579873085022, -0.02787039801478386, 0.04788917303085327, 0.1100357323884964, -0.07955358922481537, -0.06376560777425766, 0.05032157152891159, -0.018451081588864326, 0.032071277499198914, 0.010366593487560749, -0.08817105740308762, 0.05734861642122269, 0.07296987622976303, 0.06698860973119736, -0.05156339332461357, 0.015035346150398254, 0.12635008990764618, -0.0727829784154892, 0.09431769698858261, -0.052603743970394135, -0.0009145052172243595, 0.11954665929079056, 0.04873380810022354, -0.029056662693619728, -0.05416901782155037, 0.046543266624212265, 0.0646839290857315, -0.0009879485005512834, 0.012124579399824142, -0.08052273839712143, -0.013648509979248047, 0.05737822502851486], -switch:[0.01520855538547039, -0.010045399889349937, 0.017316235229372978, 0.008822858333587646, 0.02402111142873764, -0.0022484862711280584, 0.07433535903692245, 0.061123285442590714, 0.019838420674204826, 0.06642022728919983, 0.07330310344696045, 0.01302425004541874, -0.0441216379404068, -0.03776104375720024, -0.03309297934174538, -0.137189120054245, 0.03807989880442619, 0.1304052323102951, 0.060633786022663116, -0.04572387784719467, -0.04785133898258209, 0.0035930355079472065, 0.031409040093421936, -0.10263442248106003, -0.023659901693463326, 0.09814056754112244, -0.01326559018343687, 0.1635567843914032, 0.04129767045378685, 0.08909230679273605, 0.07467231154441833, -0.13119865953922272, -0.045663390308618546, 0.06427001953125, -0.12228087335824966, 0.06233147904276848, 0.06110115349292755, 0.015970982611179352, -0.009999156929552555, -0.0633467361330986, -0.06647150963544846, -0.05868490785360336, 0.0277871023863554, 0.07869744300842285, -0.009959143586456776, 0.10422584414482117, 0.08324010670185089, -0.010798969306051731, 0.03919503092765808, 0.050427619367837906, 0.02785266749560833, -0.10132009536027908, -0.04964118450880051, -0.21204204857349396, -0.029109729453921318, -0.11970669776201248, -0.03126169741153717, 0.061008092015981674, -0.008465851657092571, 0.07606127858161926, 0.005899230949580669, 0.03833470866084099, 0.04379092529416084, 0.005499815568327904, -0.1450100839138031, -0.09212375432252884, -0.11754380911588669, -0.017592571675777435, -0.0030621339101344347, -0.02353001944720745, -0.003933044150471687, -0.027367744594812393, -0.006810171063989401, 0.07842028886079788, -0.15789996087551117, -0.05605270713567734, -0.04867912828922272, -0.03671162948012352, -0.09334038197994232, -0.049893420189619064, -0.010598855093121529, -0.04523923248052597, 0.001019499497488141, -0.023524554446339607, 0.011148392222821712, -0.042494036257267, -0.0034801617730408907, -0.10713030397891998, 0.024139350280165672, -0.0998784527182579, 0.006869903765618801, 0.031007682904601097, 0.029148297384381294, 0.024989962577819824, 0.05775038152933121, 0.06149164214730263, 0.02435450255870819, -0.1015024483203888, 0.02299438789486885, 0.009668936021625996, -0.010699203237891197, -0.07027783989906311, -0.03435032442212105, -0.1031637042760849, 0.05668266862630844, -0.0987551212310791, -0.07745549827814102, -0.009444572031497955, 0.1231391429901123, -0.05915219336748123, 0.02034272439777851, -0.12586508691310883, -0.05579633265733719, -0.0985172688961029, 0.03627396002411842, -0.025039607658982277, -0.1367408186197281, 0.10976812988519669, 0.015766220167279243, 0.07515928894281387, 0.005947571247816086, 0.02305406890809536, 0.07071280479431152, -0.12009018659591675, -0.09813651442527771, 0.10822510719299316, -0.11223425716161728, -0.07600273936986923, -0.17517425119876862, 0.018209805712103844, -0.08946909010410309, 0.006803132593631744, 0.10892942547798157, 0.04240115359425545, 0.10377248376607895, 0.013216028921306133, -0.11404655128717422, 0.06801187247037888, -0.06724818795919418, -0.11493615806102753, 0.07790153473615646, 0.001952389837242663, -0.1230529323220253, 0.14701791107654572, 0.05994240567088127, -0.09030081331729889, 0.06817108392715454, -0.03815249353647232, 0.05456425994634628, 0.002000710228458047, 0.08556028455495834, 0.0350479893386364, 0.1490657776594162, -0.13859835267066956, 0.06121251732110977, -0.02756486088037491, 0.017516182735562325, -0.09411422908306122, -0.02357572317123413, 0.009473267011344433, -0.042714860290288925, -0.06782203912734985, -0.0023064364213496447, 0.14631667733192444, 0.004296077415347099, 0.029502777382731438, -0.009876636788249016, 0.06263458728790283, -0.0410919114947319, -0.04370512440800667, 0.004136347211897373, -0.05841264873743057, 0.09548991918563843, 0.024698497727513313, -0.11107511073350906, -0.10180940479040146, 0.1718934327363968, 0.03162500262260437, 0.08533890545368195, -0.07847701758146286, -0.16872291266918182, 0.013539120554924011, -0.13201981782913208, 0.06704875081777573, -0.04194774106144905, -0.025807689875364304, 0.015137039124965668, -0.0032557304948568344, 0.016933340579271317, -0.0933477133512497, 0.1273537129163742, -0.04657663032412529, 0.11460857093334198, 0.06477769464254379, -0.027433691546320915, -0.040395334362983704, -0.035010926425457, 0.08763585239648819, -0.04935513809323311, 0.03754660114645958, -0.029913591220974922, 0.08692309260368347, 0.06698473542928696, -0.05938374996185303, -0.05077389255166054, 0.030334381386637688, 0.10328647494316101, 0.08163248002529144, 0.023902397602796555, 0.13234610855579376, 0.027037274092435837, 0.048321306705474854, 0.010741783306002617, 0.08007775992155075, 0.018152844160795212, 0.08970066905021667, 0.050199318677186966, 0.045907799154520035, 0.08275232464075089, 0.028438877314329147, 0.08508838713169098, 0.02725515142083168, -0.12587212026119232, -0.07080020010471344, 0.0755581259727478, -0.08212412148714066, -0.007692812010645866, 0.005511774681508541, -0.22199884057044983, 0.02606748417019844, -0.0976073145866394, -0.13138557970523834, -0.18767257034778595, 0.07209078222513199, 4.431428897078149e-05, -0.033178020268678665, -0.056211646646261215, -0.100697360932827, 0.08396411687135696, -0.036949969828128815, -0.07299067080020905, -0.008126332424581051, 0.02887844666838646, 0.06947562843561172, -0.0063752708956599236, -0.04882245138287544, 0.020170962437987328, -0.018141767010092735, 0.005943316034972668, 0.05570812523365021, -0.08108799159526825, 0.03141217678785324, 0.05932972952723503, -0.10294195264577866, 0.05919677019119263, 0.1946672648191452, 0.06465493887662888, -0.007619786076247692, -0.05522125959396362, 0.04452625662088394, 0.04357827454805374, -0.010719356127083302, -0.00937236100435257, 0.031058503314852715, -0.12291223555803299, 0.044917743653059006, 0.016215821728110313, 0.04339674115180969, -0.1092197597026825, 0.010193126276135445, 0.16737349331378937, -0.0218778308480978, 0.060818031430244446, 0.11380238831043243, 0.054638978093862534, -0.04493430629372597, 0.03333541378378868, 0.042295169085264206, -0.07374408096075058, 0.05549710616469383, 0.06614950299263, 0.08681324124336243, -0.05701135843992233, 0.015948260203003883, 0.09168681502342224, -0.20091357827186584, 0.0014796715695410967, -0.024148928001523018, -0.08482588082551956, -0.0410136803984642, 0.06061352416872978, -0.056310709565877914, 0.0696425586938858, 0.037802886217832565, 0.06755468249320984, 0.005035063251852989, 0.0185907743871212, 0.04369066283106804, -0.018159694969654083, 0.11516299098730087], -trunc:[0.048244867473840714, -0.035732630640268326, 0.02366897277534008, 0.13906681537628174, 0.021670807152986526, -0.008912859484553337, 0.005073579493910074, -0.0007283734157681465, -0.0064540826715528965, -0.11349492520093918, 0.10454948246479034, 0.09718000888824463, 0.013687494210898876, -0.005035145673900843, 0.053915541619062424, -0.09889129549264908, 0.03745091333985329, -0.03539327532052994, -0.17817391455173492, 0.018920347094535828, 0.07879982143640518, -0.047978151589632034, 0.033623140305280685, 0.039929334074258804, -0.002377841155976057, -0.0534704253077507, 0.08835332095623016, 0.03174301236867905, 0.05326036363840103, 0.12575708329677582, -0.05959467962384224, 0.10750986635684967, 0.0795123428106308, 0.0818425863981247, 0.09863179177045822, 0.05531284958124161, -0.003890759078785777, 0.07250448316335678, -0.029053159058094025, -0.011625711806118488, 0.07406668365001678, 0.048691775649785995, 0.03663652762770653, -0.018822582438588142, -0.042688850313425064, 0.0993720293045044, -0.07048822194337845, 0.1542530655860901, 0.22147822380065918, -0.09924811869859695, 0.04785114899277687, 0.03473309427499771, 0.06858839839696884, 0.05096753314137459, -0.04290402680635452, -0.033343326300382614, -0.07301658391952515, 0.007296315860003233, -0.008019383065402508, 0.04943060129880905, -0.12105465680360794, 0.0621112622320652, 0.04179234430193901, 0.0615290105342865, 0.09210618585348129, 0.024459093809127808, -0.08080532401800156, 0.038223523646593094, 0.04742642492055893, -0.019176753237843513, 0.024714907631278038, -0.048243358731269836, -0.08021930605173111, -0.066962331533432, 0.03744776174426079, 0.08104781061410904, -0.13537177443504333, -0.006764383055269718, -0.0239765215665102, 0.13482871651649475, -0.0933273434638977, 0.02834584005177021, -0.08140388876199722, -0.041921354830265045, 0.05357076972723007, 0.0005327684921212494, 0.09648080915212631, 0.06822444498538971, -0.037287138402462006, 0.06975659728050232, -0.09699910879135132, 0.037954024970531464, 0.026138603687286377, 0.12882153689861298, 0.05300621688365936, 0.11621807515621185, 0.020008446648716927, -0.09436322748661041, 0.03288346156477928, 0.01941404491662979, -0.015796076506376266, -0.06952054798603058, 0.11844369024038315, -0.03178918734192848, 0.031285692006349564, -0.09497933089733124, 0.05645640566945076, 0.052285369485616684, -0.057967811822891235, 0.03636396676301956, -0.005061333533376455, 0.06866469234228134, -0.06526573747396469, -0.04905297979712486, -0.056358106434345245, 0.013878777623176575, 0.020232075825333595, 0.050883881747722626, 0.1405889242887497, -0.027802858501672745, 0.00903551746159792, -0.019792255014181137, 0.06728263944387436, -0.0930279940366745, 0.009609855711460114, -0.08277767896652222, -0.0839783176779747, -0.007821403443813324, 0.09194786101579666, -0.06857146322727203, 0.04116300120949745, 0.045032043009996414, 0.06784354895353317, -0.03901159018278122, 0.014984303154051304, 0.045219119638204575, 0.032240185886621475, 0.054050371050834656, -0.010380690917372704, -0.04198453947901726, 0.06953120231628418, 0.1373918354511261, -0.07105842977762222, -0.019256336614489555, -0.03960637003183365, -0.08711272478103638, 0.17093466222286224, -0.02387864887714386, 0.03369089961051941, -0.016160912811756134, -0.06845186650753021, 0.03311030566692352, -0.056929461658000946, -0.15879003703594208, 0.02157731167972088, -0.02650429867208004, 0.04402592033147812, 0.08515613526105881, -0.0686444491147995, 0.009641923010349274, -0.12314291298389435, 0.06594432890415192, 0.0022624870762228966, -0.0511220283806324, -0.022722549736499786, 0.03307102248072624, -0.2382124811410904, 0.05538427084684372, -0.03981640562415123, -0.022801049053668976, 0.012489426881074905, -0.10219891369342804, -0.044157400727272034, 0.12189389020204544, 0.039018720388412476, -0.16946053504943848, -0.15312935411930084, -0.0728730708360672, 0.09245654940605164, -0.06413421034812927, -0.07049331068992615, -0.06659621745347977, -0.01776961237192154, 0.052880000323057175, -0.07469742745161057, -0.008876100182533264, 0.020026352256536484, -0.006397341378033161, 0.08362248539924622, -0.11452112346887589, 0.014549853280186653, -0.10569991171360016, 0.13127605617046356, 0.015799392014741898, -0.08513496071100235, -0.042152464389801025, 0.002382948761805892, -0.04999467730522156, -0.011036278679966927, 0.06084553524851799, -0.019327374175190926, 0.08304513245820999, 0.020292317494750023, 0.10370071232318878, -0.04050358384847641, -0.18174877762794495, -0.09632894396781921, 0.010279069654643536, 0.10308289527893066, -0.10873787105083466, 0.018801817670464516, -0.01698804832994938, -0.06365486979484558, 0.07524554431438446, 0.05506345257163048, -0.11948861181735992, 0.046881601214408875, 0.03100469894707203, -0.1155666634440422, 0.020071156322956085, 0.02973833866417408, 0.04210733249783516, 0.2146822214126587, -0.03807837516069412, -0.11461134999990463, -0.05826379358768463, -0.01585986837744713, 0.024253826588392258, 0.01714984141290188, 0.05661866441369057, 0.07348340004682541, -0.028899895027279854, -0.06260233372449875, 0.03140047937631607, -0.008973724208772182, -0.026517240330576897, 0.13620080053806305, -0.0615963414311409, -0.04220885783433914, -0.03301866352558136, -0.03570856899023056, -0.029368529096245766, 0.03117954358458519, 0.05461721867322922, 0.037976477295160294, -0.06750522553920746, 0.051703620702028275, -0.07819978892803192, 0.18399308621883392, 0.03380397707223892, 0.08278205245733261, 0.042527180165052414, -0.05056457594037056, -0.09213253855705261, 0.06476987153291702, -0.04100591689348221, 0.0793990045785904, -0.1368710845708847, -0.10291997343301773, -0.056570593267679214, 0.08187105506658554, 0.06445566564798355, 0.003302185097709298, 0.018037322908639908, 0.02191353589296341, 0.08062168210744858, -0.09132667630910873, -0.09554975479841232, -0.10566835105419159, -0.020497478544712067, 0.013763252645730972, -0.01107235811650753, -0.12073631584644318, -0.0336848646402359, 0.10430825501680374, 0.023899581283330917, 0.06884490698575974, 0.06838306039571762, -0.016546575352549553, 0.059601157903671265, 0.06639096140861511, -0.05886879190802574, -0.06356911361217499, 0.015037450939416885, 0.10370304435491562, 0.09437552839517593, -0.058086834847927094, -0.05370151251554489, 0.0021431930363178253, -0.08363205194473267, -0.07745583355426788, -0.11853417754173279, -0.004782219883054495, 0.03258325904607773, 0.05215917527675629, 0.007274340372532606, 0.01436805073171854, 0.003227301174774766, -0.024347569793462753, 0.027806630358099937], -udiv:[0.011887423694133759, -0.07049741595983505, 0.05831241235136986, 0.1273624449968338, 0.021063992753624916, 0.01940426044166088, -0.009047374129295349, 0.016102507710456848, 0.019984740763902664, -0.11560746282339096, -0.013283830136060715, 0.01853351481258869, 0.07008516788482666, 0.003675182117149234, 0.06360271573066711, -0.13929477334022522, -0.04762201011180878, -0.06358323246240616, 0.006439645774662495, -0.0359700471162796, 0.12543386220932007, -0.1011321097612381, -0.1074380874633789, 0.11715727299451828, 0.09779102355241776, -0.0284385047852993, 0.04432239010930061, 0.10681010782718658, 0.05301595479249954, -0.1259099841117859, -0.11130257695913315, -0.036160022020339966, 0.12296392023563385, 0.050236787647008896, 0.0787741020321846, 0.020491041243076324, -0.14366954565048218, -0.016043324023485184, -0.024963298812508583, -0.09294494986534119, -0.03904130309820175, 0.14964918792247772, -0.08589162677526474, -0.028421558439731598, -0.10000478476285934, 0.11183876544237137, 0.036576200276613235, 0.02393384836614132, -0.0033509358763694763, -0.11091271042823792, -0.07961533218622208, -0.03031998872756958, 0.05219252407550812, -0.08834986388683319, 0.08082529157400131, -0.029695861041545868, 0.05089382082223892, 0.12918007373809814, -0.00021504954202100635, -0.007548060268163681, -0.08339391648769379, 0.02744780108332634, 0.00770206144079566, 0.059376806020736694, 0.0221356563270092, 0.09867184609174728, 0.12861156463623047, -0.003298752708360553, 0.08560135215520859, -0.04034476727247238, 0.028460141271352768, 0.0730188637971878, -0.1072159856557846, 0.08119639754295349, 0.007852302864193916, 0.03337027132511139, -0.006667155772447586, 0.03324059024453163, 0.06517845392227173, 0.05102347582578659, -0.1180812418460846, 0.12155427038669586, 0.03427175432443619, -0.04590969532728195, 0.08614219725131989, -0.054766640067100525, 0.0927998349070549, 0.06584665179252625, 0.03698888421058655, 0.0811767652630806, -0.09717494994401932, 0.024714631959795952, -0.02150767296552658, 0.007639732211828232, 0.02422325499355793, 0.0003419856366235763, 0.10120125114917755, 0.12517260015010834, 0.0007336189737543464, 0.039938393980264664, 0.08170162886381149, -0.13086900115013123, 0.0417972207069397, 0.04670035094022751, -0.05963188782334328, -0.039254628121852875, -0.09433063119649887, 0.06266295909881592, -0.08699867874383926, 0.01925869658589363, 0.0725628063082695, 0.037807293236255646, 0.00773964449763298, -0.03564855456352234, -0.0966414362192154, 0.054804325103759766, 0.060022108256816864, -0.0353119932115078, 0.13666218519210815, -0.1348741054534912, 0.12141726166009903, -0.12943005561828613, 0.019295349717140198, -0.026132598519325256, 0.07740823179483414, -0.016101032495498657, -0.021725617349147797, 0.001207415945827961, -0.01813426800072193, 0.04246540740132332, -0.049967069178819656, -0.0489003024995327, 0.02596549689769745, 0.037727952003479004, 0.02262345887720585, 0.10920417308807373, -0.08664745092391968, -0.04119464382529259, -0.00456741638481617, -0.032943978905677795, 0.149965301156044, -0.10297497361898422, -0.07573316991329193, 0.030309416353702545, -0.13485629856586456, -0.08436574041843414, -0.008152058348059654, 0.015627412125468254, -0.035317566245794296, -0.016002818942070007, 0.01894981414079666, 0.05968298017978668, 0.022334156557917595, 0.009891359135508537, -0.1395874321460724, -0.026248320937156677, 0.14134514331817627, 0.03686930611729622, -0.1089910939335823, 0.011237367987632751, -0.12691213190555573, 0.07400702685117722, -0.12408315390348434, -0.0035900846123695374, -0.004771490581333637, 0.07261351495981216, -0.005028561223298311, -0.05189598351716995, 0.006763032171875238, -0.03463929891586304, 0.032163552939891815, -0.012864106334745884, -0.08320631831884384, 0.126398965716362, 0.01914220303297043, -0.013203335925936699, -0.14234156906604767, -0.10440148413181305, 0.049343403428792953, -0.011159476824104786, -0.09020252525806427, -0.078068807721138, 0.023464303463697433, -0.01979285106062889, 0.03620991110801697, 0.005786803551018238, 0.015070629306137562, -0.007321751210838556, 0.08118577301502228, -0.11146555095911026, 0.09418943524360657, -0.121578648686409, 0.060560863465070724, 0.015690060332417488, -0.05056123808026314, -0.039196014404296875, -0.0049445899203419685, -0.013551440089941025, -0.02039813995361328, 0.027347788214683533, -0.03755860775709152, 0.009374136105179787, -0.03443698585033417, 0.14170227944850922, -0.035639069974422455, 0.023806579411029816, 0.014028538949787617, 0.00871549267321825, -0.09906972944736481, -0.032049693167209625, -0.06217509135603905, 0.11712178587913513, 0.008703610859811306, 0.07433198392391205, -0.09004543721675873, -0.030507974326610565, 0.052714791148900986, -0.01434796117246151, 0.09307746589183807, -0.14735719561576843, 0.05302034318447113, 0.049055662006139755, -0.011450742371380329, 0.005380965769290924, -0.03385959565639496, -0.06241230294108391, -0.012529035098850727, 0.05627576634287834, 0.010414722375571728, 0.06665988266468048, -0.03544130548834801, -0.12566643953323364, -0.10894617438316345, -0.015980657190084457, -0.03206314891576767, 0.06075674667954445, 0.056516360491514206, -0.1177467331290245, -0.07543132454156876, -0.00859806127846241, -0.035484086722135544, -0.09174343198537827, 0.03630378097295761, -0.02728268876671791, 0.006754634436219931, -0.08502723276615143, -0.05383000895380974, -0.042810242623090744, 0.04078849032521248, 0.05873561650514603, 0.10478385537862778, 0.04688750579953194, -0.038394659757614136, 0.017538657411932945, 0.0613839328289032, 0.026005029678344727, 0.07204130291938782, -0.04961182549595833, -0.10877510160207748, -0.0005599859287030995, -0.11513746529817581, -0.009297209791839123, -0.0636262446641922, 0.0009773563360795379, -0.08494799584150314, 0.07521519064903259, -0.10735807567834854, 0.08776035159826279, -0.10297553986310959, -0.05300908535718918, 0.045237090438604355, 0.07093591243028641, 0.0235860887914896, 0.10428200662136078, -0.10670439898967743, 0.06264166533946991, -0.03760600835084915, 0.005503671709448099, -0.11729037016630173, 0.07235036790370941, 0.06936731934547424, -0.08268222212791443, -0.09985220432281494, -0.10288387537002563, 0.11442539840936661, -0.019913749769330025, 0.07161727547645569, -0.06587529182434082, 0.05627994239330292, -0.006134431809186935, -0.06816793233156204, -0.053876351565122604, -0.014359581284224987, 0.11727585643529892, 0.05754196271300316, 0.07992017269134521, 0.0034830993972718716, -0.0020219748839735985, -0.026845717802643776, -0.04790741577744484], -uitofp:[0.09861419349908829, -0.07485195994377136, 0.016730427742004395, -0.020450953394174576, 0.02830970473587513, -0.0061029247008264065, 0.0020447613205760717, 0.15262937545776367, -0.08048796653747559, -0.11588608473539352, 0.09637900441884995, -0.010553847998380661, 0.009555859491229057, -0.03777662292122841, 0.03568005561828613, 0.11225332319736481, 0.023428253829479218, 0.12680953741073608, -0.028661737218499184, -0.04151293262839317, 0.05657532811164856, -0.11039960384368896, 0.03848108649253845, 0.15058352053165436, -0.008340687490999699, -0.08619362860918045, -0.04850860685110092, 0.005081905517727137, 0.03508080169558525, 0.14853474497795105, 0.07852817326784134, 0.0640275850892067, 0.07616546005010605, 0.022465767338871956, 0.08495743572711945, 0.08627398312091827, -0.06644154340028763, 0.04654395207762718, -0.013231673277914524, 0.09906173497438431, 0.049010977149009705, 0.18427687883377075, -0.03285324200987816, -0.12993846833705902, -0.019513273611664772, 0.12284025549888611, -0.1828444004058838, 0.08005034178495407, -0.011048813350498676, 0.12565171718597412, -0.013981775380671024, 0.07541156560182571, -0.16532859206199646, 0.11211627721786499, -0.08073718100786209, -0.09695252776145935, -0.050227511674165726, 0.06527760624885559, -0.018771296367049217, 0.10213741660118103, -0.20333713293075562, -0.10541901737451553, 0.010066315531730652, -0.11882907897233963, 0.11968337744474411, -0.1361876279115677, -0.10376367717981339, 0.10815258324146271, -0.07665804773569107, -0.031959760934114456, 0.014109971933066845, -0.00874751154333353, -0.10965338349342346, -0.09744352102279663, -0.0694856345653534, 0.08952557295560837, 0.11181040853261948, 0.07511653751134872, 0.03803552687168121, 0.01790420152246952, 0.06789218634366989, -0.11246408522129059, 0.12342167645692825, -0.06290759891271591, -0.06025394797325134, -0.06789560616016388, -0.060060009360313416, 0.07053787261247635, 0.0494210422039032, 0.03254295140504837, -0.13992036879062653, 0.030495990067720413, 0.11178316175937653, -0.03426343947649002, -0.10467562824487686, 0.09869895875453949, 0.027741266414523125, -0.10099611431360245, 0.024665268138051033, -0.03578178957104683, 0.1517895609140396, -0.13989844918251038, -0.05211018770933151, 0.005669828038662672, 0.028199899941682816, -0.04342116042971611, -0.03020201437175274, 0.09981369227170944, 0.10887932032346725, -0.11878897249698639, -0.0714157447218895, 0.027730582281947136, -0.051955029368400574, 0.13680560886859894, -0.08813312649726868, 0.00757679995149374, -0.08581671863794327, -0.05489259585738182, 0.01601782627403736, 0.015261146239936352, 0.011284774169325829, -0.09778346866369247, 0.07025772333145142, -0.19486287236213684, 0.04413171112537384, -0.007444365881383419, 0.04053865745663643, 0.0037671313621103764, 0.08265772461891174, -0.051269084215164185, 0.02231798693537712, 0.13929131627082825, 0.11430723965167999, 0.027962489053606987, 0.014065614901483059, 0.022449376061558723, 0.06628544628620148, 0.005474472884088755, -0.07742010802030563, -0.04058362543582916, 0.09710397571325302, -0.08739105612039566, 0.05226099491119385, -0.040600527077913284, -0.09693523496389389, -0.05868367478251457, -0.025410521775484085, 0.09279786050319672, 0.016356762498617172, 0.07781090587377548, 0.05464959517121315, 0.11227363348007202, 0.02378780208528042, -0.07382560521364212, 0.07979555428028107, -0.02811742201447487, -0.013008510693907738, 0.05629785731434822, -0.12564362585544586, 0.031897950917482376, -0.048042312264442444, -0.0882653146982193, 0.056965798139572144, -0.09006480127573013, -0.009094389155507088, 0.013374057598412037, -0.030720526352524757, 0.0906219333410263, -0.03728343918919563, 0.0737391859292984, -0.09281862527132034, -0.11083924025297165, 0.12293028831481934, 0.06059989705681801, -0.0638226568698883, -0.057352542877197266, 0.01712608151137829, -0.08984681218862534, 0.07097195833921432, -0.0415990836918354, -0.01609833538532257, 0.02703290991485119, -0.031907420605421066, -0.0017065154388546944, 0.03972829878330231, -0.03683740273118019, -0.14428211748600006, -0.08309812098741531, 0.029651418328285217, -0.08057227730751038, -0.16804859042167664, -0.0455496720969677, 0.006669914349913597, 0.01632506400346756, -0.0037605008110404015, 0.014029990881681442, 0.020793162286281586, -0.028472814708948135, -0.03537812829017639, 0.09850563853979111, -0.08919526636600494, -0.03798781707882881, 0.11488191038370132, 0.0074340468272566795, -0.051696114242076874, -0.02644425630569458, -0.0295563954859972, -0.04389593005180359, -0.02523660659790039, 0.010003242641687393, 0.03915533423423767, 0.08274195343255997, 0.10893101245164871, 0.1326872557401657, -0.07689908891916275, -0.06758544594049454, 0.05690290033817291, 0.010780995711684227, -0.042750049382448196, 0.08622188121080399, 0.10072287172079086, 0.030300160869956017, 0.1307525336742401, -0.012210256420075893, 0.16690592467784882, -0.027841253206133842, 0.11147350817918777, 0.07604213804006577, -0.052005842328071594, 0.06489603966474533, -0.06388732045888901, 0.08240150660276413, -0.0214023906737566, 0.07504922151565552, 0.027545688673853874, -0.08704619109630585, 0.16209611296653748, -0.0158345028758049, -0.07490743696689606, -0.08618141710758209, 0.07486604154109955, -0.014632035978138447, 0.031074093654751778, 0.10218334197998047, 0.0458010770380497, -0.11151382327079773, 0.020688846707344055, 0.01831059157848358, 0.08069632202386856, -0.04207789897918701, 0.07209961116313934, -0.00721457926556468, -0.02459757588803768, 0.02987559512257576, 0.059783805161714554, -0.022085601463913918, 0.06472697108983994, 0.016223087906837463, -0.05614982545375824, -0.008614521473646164, -0.004125677514821291, -0.1127186119556427, 0.01540696807205677, 0.0025529670529067516, 0.07256917655467987, 0.041345324367284775, 0.04902363568544388, -0.14615097641944885, -0.10420401394367218, -0.049276962876319885, 0.06110765039920807, -0.07196061313152313, -0.07173389941453934, -0.09439299255609512, -0.05369475483894348, -0.07603222876787186, 0.11734651029109955, 0.08728097379207611, -0.021044552326202393, 0.06446027755737305, 0.06573663651943207, 0.08888110518455505, 0.00540853850543499, 0.0823352113366127, 0.056687865406274796, 0.03542954474687576, 0.10087556391954422, -0.03836828097701073, -0.0756879448890686, -0.02981678768992424, 0.028310690075159073, -0.058699749410152435, -0.05362159386277199, 0.02714075893163681, 0.0705423355102539, 0.006798284128308296, 0.04775891825556755, 0.12921708822250366, -0.01417663786560297, 0.00538440328091383], -unreachable:[-0.018598448485136032, -0.05472341552376747, 0.049046069383621216, 0.14873795211315155, 0.05552111566066742, 0.020594153553247452, -0.020843829959630966, -0.05990014225244522, 0.036847617477178574, -0.11153433471918106, -0.03967227786779404, 0.011090012267231941, 0.028822848573327065, 0.07168950885534286, -0.06245589628815651, -0.07080081105232239, 0.05178818851709366, -0.11875041574239731, 0.014343186281621456, -0.028573565185070038, 0.01877339370548725, -0.07856953889131546, 0.06319767236709595, 0.03940226137638092, -0.04570004343986511, 0.09067009389400482, -0.05532776564359665, -0.0555095300078392, 0.03917091712355614, 0.05719423294067383, -0.060626693069934845, 0.08342371135950089, -0.08597462624311447, 0.07979691028594971, 0.11244310438632965, -0.08023237437009811, -0.028429469093680382, -0.045167095959186554, -0.06333807110786438, -0.061263252049684525, -0.05485502630472183, -6.832025974290445e-05, -0.15245181322097778, -0.05342809855937958, -0.0014055643696337938, 0.0763046145439148, -0.024365989491343498, 0.09542561322450638, 0.0048907967284321785, 0.12046753615140915, -0.04109082370996475, -0.015697525814175606, 0.045705392956733704, 0.04254012554883957, 0.0644395723938942, -0.025636298581957817, 0.14901314675807953, 0.09406335651874542, 0.12492353469133377, -0.06484701484441757, -0.022725310176610947, 0.04072357341647148, -0.059988878667354584, 0.09938254952430725, 0.015413734130561352, 0.041409753262996674, -0.13985618948936462, 0.02916429378092289, -0.07071930915117264, -0.06276193261146545, -0.022083774209022522, -0.11299806833267212, 0.12540920078754425, 0.09758323431015015, -0.15198279917240143, 0.01585194654762745, -0.07617835700511932, 0.025976432487368584, -0.1260712593793869, -0.010320819914340973, 0.07342039048671722, -0.008390159346163273, 0.005994499195367098, -0.02429201267659664, 0.05814030021429062, -0.07840584218502045, -0.07150837779045105, -0.11451266705989838, 0.02941867895424366, 0.10416367650032043, -0.06083903834223747, 0.06056031212210655, -0.026967303827404976, -0.05474870279431343, -0.09853409975767136, 0.005681058391928673, -0.08935237675905228, -0.028717445209622383, 0.07713928818702698, -0.029659684747457504, 0.0059729162603616714, -0.06455550342798233, -0.019467614591121674, -0.0400594137609005, 0.06431490182876587, -0.05053893104195595, -0.11993388831615448, -0.015171387232840061, -0.02235635370016098, -0.034759171307086945, -0.008709906600415707, 0.026936357840895653, 0.07921154797077179, -0.11247028410434723, -0.11555086821317673, 0.043365687131881714, -0.025592269375920296, 0.007973897270858288, 0.029046842828392982, 0.06894230097532272, -0.06212173402309418, -0.024642223492264748, 0.09572231024503708, 0.0867810770869255, -0.09537936747074127, -0.1233024001121521, -0.11021672189235687, -0.054277047514915466, 0.10071714222431183, 0.021518798545002937, -0.053507909178733826, 0.09290739893913269, -0.005006118211895227, -0.01211434043943882, -0.002348166424781084, -0.12790514528751373, -0.11881906539201736, 0.12287323921918869, -0.07635549455881119, 0.012055974453687668, 0.0926399976015091, 0.03721839189529419, -0.031226711347699165, -0.11484627425670624, -0.03939349204301834, 0.10649900883436203, -0.007390226237475872, 0.044373493641614914, 0.0068251038901507854, 0.07724688202142715, 0.06496111303567886, 0.05007535219192505, 0.0410350002348423, 0.06283199787139893, 0.04762541502714157, -0.026173487305641174, 0.0037587943952530622, -0.05633830279111862, -0.031146472319960594, 0.010464762337505817, -0.041128259152173996, -0.08265561610460281, 0.08005048334598541, -0.0787205696105957, -0.023709487169981003, -0.09988529235124588, -0.061757996678352356, -0.008759217336773872, -0.05855049192905426, 0.039616573601961136, 0.008417101576924324, 0.07660458236932755, -0.10881218314170837, 0.032665032893419266, -0.10932355374097824, -0.0018884976161643863, -0.1557641625404358, -0.1038484126329422, 0.046059563755989075, -0.0877673402428627, -0.0039804354310035706, 0.0276044774800539, 0.10564794391393661, -0.041244301944971085, 0.036563582718372345, 0.09089367836713791, 0.11373353749513626, 0.022925948724150658, -0.008982799015939236, -0.11016000807285309, -0.029095502570271492, -0.0694843977689743, 0.021049758419394493, 0.13089726865291595, 0.0005422449321486056, -0.008579922839999199, -0.011199990287423134, 0.12090548127889633, -0.05238774046301842, 0.09603403508663177, -0.03540559485554695, -0.0478375144302845, 0.00034954771399497986, -0.036153003573417664, 0.020458532497286797, 0.09983809292316437, -0.1082843616604805, -0.045258358120918274, -0.007017107680439949, -0.1041175052523613, -0.11202720552682877, 0.13226552307605743, 0.057642579078674316, 0.07958587259054184, -0.011140440590679646, 0.12568898499011993, -0.02982165850698948, 0.005292619112879038, 0.07198674231767654, 0.015674374997615814, 0.10126519203186035, 0.11303478479385376, 0.011200952343642712, 0.05561287701129913, -0.006614098325371742, -0.05220891907811165, -0.02689667046070099, -0.1369946449995041, 0.06150607764720917, -0.11782799661159515, 0.10038609057664871, -0.13626079261302948, -0.08388735353946686, 0.05063777416944504, -0.020660631358623505, -0.0949142575263977, -0.0882292315363884, -0.013245717622339725, 0.018044689670205116, -0.008556817658245564, -0.0716826319694519, 0.0019121672958135605, -0.1200777217745781, -0.06519860029220581, 0.06073588505387306, -0.08529138565063477, 0.03241497278213501, -0.09731846302747726, -0.10727200657129288, 0.056731291115283966, 0.16851875185966492, 0.036775827407836914, -0.010791998356580734, 0.05282559618353844, 0.057540152221918106, 0.0005900405230931938, 0.11340972781181335, 0.011308952234685421, -0.06930523365736008, -0.06047752872109413, -0.07948169857263565, 0.03870861604809761, -0.02247246913611889, -0.018648937344551086, -0.09638345241546631, 0.09826984256505966, -0.000985594466328621, 0.07566266506910324, -0.0254264734685421, -0.0683867335319519, 0.04919238016009331, -0.07062474638223648, 0.04343929514288902, -0.0940605029463768, -0.07635600864887238, 0.08648612350225449, 0.03332272544503212, 0.05717223510146141, 0.04417407885193825, 0.016543112695217133, 0.08246584236621857, 0.04719698801636696, 0.0010620314860716462, 0.017161907628178596, -0.0198710598051548, 0.03296719864010811, -0.10598985850811005, -0.043237823992967606, 0.11056456714868546, -0.0370982401072979, -0.11504727602005005, -0.10030003637075424, 0.06267562508583069, 0.031086575239896774, 0.06455033272504807, 0.0020049866288900375, -0.04726819694042206, 0.10823027044534683, -0.058475982397794724, -0.06860102713108063], -urem:[0.03721768409013748, -0.11193090677261353, 0.07254712283611298, 0.05090419575572014, 0.024677809327840805, 6.745541031705216e-05, 0.02786504104733467, 0.1293298453092575, 0.021291974931955338, 0.02697301097214222, 0.155004620552063, 0.02036871761083603, -0.04169485345482826, 0.11112827807664871, -0.021057650446891785, 0.07934246212244034, 0.039877817034721375, -0.11706296354532242, -0.0636260136961937, 0.13593481481075287, -0.11785722523927689, 0.04695115238428116, -0.12947171926498413, 0.13239146769046783, -0.016616810113191605, -0.05536382272839546, 0.061645545065402985, 0.10683382302522659, 0.0521702766418457, 0.08934451639652252, -0.11556394398212433, 0.12477731704711914, 0.12156430631875992, 0.05530824884772301, 0.08662471920251846, 0.05883486941456795, -0.03114817477762699, -0.10325103998184204, -0.027775058522820473, 0.0978507250547409, -0.12378887832164764, 0.06345764547586441, -0.12051675468683243, -0.08440808951854706, -0.1178118959069252, 0.1250973492860794, 0.049444105476140976, 0.026662450283765793, 0.01562541350722313, -0.17038187384605408, 0.03309747576713562, -0.02302122302353382, -0.005802331492304802, -0.07565285265445709, -0.020669298246502876, -0.0410124734044075, 0.05168244242668152, 0.13904470205307007, -0.010633689351379871, -0.02029152773320675, -0.022628750652074814, 0.07234027236700058, 0.025516564026474953, 0.1397636979818344, 0.0481792688369751, -0.05886170640587807, 0.14128534495830536, 0.022944362834095955, 0.04403838515281677, 0.049480512738227844, 0.02485639415681362, 0.08520827442407608, -0.12146655470132828, 0.07967046648263931, -0.037750840187072754, 0.0474078543484211, -0.010952922515571117, 0.025643741711974144, -0.09032077342271805, -0.08102524280548096, -0.11773814260959625, 0.09798192977905273, -0.013983075506985188, -0.050377678126096725, 0.10363970696926117, 0.033533189445734024, 0.1407850980758667, 0.07383675873279572, 0.053411394357681274, 0.056440480053424835, -0.1263403594493866, 0.013696612790226936, -0.01657235622406006, 0.012428997084498405, 0.07860872149467468, -0.027034400030970573, 0.11397749185562134, -0.02570299431681633, 0.12430425733327866, 0.060015201568603516, 0.040696896612644196, 0.02426295354962349, 0.015919283032417297, 0.029506530612707138, 0.057908907532691956, -0.0428936704993248, -0.06797967106103897, 0.06926710903644562, 0.10704510658979416, 0.04005841165781021, 0.062000490725040436, -0.014707478694617748, -0.06872903555631638, -0.03469537943601608, -0.09879585355520248, 0.07995977252721786, 0.011044294573366642, -0.043653454631567, 0.00964824017137289, 0.07067558169364929, 0.1358160376548767, 0.015104715712368488, -0.033462487161159515, -0.08560655266046524, 0.08206293731927872, 0.08001603186130524, 0.11620091646909714, -0.006791039370000362, -0.020115958526730537, 0.03597254678606987, -0.05712917447090149, 0.08982164412736893, 0.04397362470626831, 0.05870752036571503, 0.04822755977511406, 0.09360967576503754, 0.04464585334062576, -0.07103501260280609, -0.018309740349650383, -0.04988844320178032, 0.09381850063800812, -0.09944695234298706, 0.09219489246606827, 0.08287779986858368, -0.04911743476986885, 0.05316586419939995, 0.004490507300943136, 0.03748515993356705, -0.01160210557281971, -0.010402400977909565, -0.11514019966125488, -0.010390149429440498, 0.04710404947400093, -0.009579888544976711, -0.11903200298547745, -0.03048051707446575, 0.15921583771705627, 0.14479702711105347, 0.033492159098386765, 0.15081770718097687, -0.15026162564754486, 0.15815092623233795, 0.0061463466845452785, -0.10369393229484558, -0.02622925490140915, 0.0661277249455452, 0.008137976750731468, 0.06914526224136353, 0.07295689731836319, -0.1339518278837204, 0.0428491048514843, -0.030610209330916405, 0.023818975314497948, 0.14285731315612793, -0.007106036879122257, -0.013317317701876163, -0.14905811846256256, -0.14020687341690063, -0.036704353988170624, 0.055052656680345535, -0.14455243945121765, 0.09829630702733994, -0.07215418666601181, -0.021850548684597015, 0.05060531198978424, -0.014912441372871399, -0.06716204434633255, -0.005433710291981697, 0.00913986936211586, -0.126335009932518, 0.1502094864845276, -0.09928417950868607, -0.17141933739185333, -0.020456593483686447, -0.05220435932278633, -0.05950705334544182, 0.0022471079137176275, -0.048395786434412, 0.030240077525377274, -0.018060943111777306, -0.04945245012640953, 0.01199327688664198, -0.06798850744962692, 0.17282380163669586, -0.049178190529346466, -0.10854515433311462, 0.034867625683546066, 0.004167262464761734, 0.0685858279466629, -0.02283950336277485, -0.03379609435796738, 0.13224993646144867, 0.012202577665448189, 0.0865025743842125, 0.15591377019882202, -0.031107889488339424, 0.055737122893333435, -0.016692303121089935, -0.031983621418476105, -0.05163845047354698, 0.06684469431638718, 0.041159357875585556, 0.0011737925233319402, -0.010239644907414913, -0.03335469588637352, -0.10366813093423843, -0.011868617497384548, 0.12292145937681198, -0.13496550917625427, 0.07235318422317505, -0.06423475593328476, -0.014207872562110424, -0.1244434341788292, -0.012885606847703457, -0.013026989996433258, 0.0982026681303978, 0.06835910677909851, -0.05645051971077919, 0.04151243716478348, -0.013475039042532444, -0.07030215859413147, -0.1191154196858406, 0.03277431055903435, -0.0736924484372139, 0.0514526292681694, 0.01221392210572958, -0.11857905983924866, -0.04753876477479935, 0.10519124567508698, -0.042618896812200546, -0.038955461233854294, 0.14969149231910706, 0.0828704684972763, 0.01742163486778736, 0.06935969740152359, -0.023908348754048347, 0.07242608070373535, -0.035016316920518875, -0.1072801873087883, 0.013829348608851433, 0.08098246157169342, -0.011051766574382782, 0.13865037262439728, -0.012617443688213825, -0.10271547734737396, 0.082517609000206, -0.11036962270736694, -0.0013516738545149565, 0.04850418120622635, -0.04319111630320549, 0.057534851133823395, 0.05346654728055, 0.058080773800611496, 0.14841359853744507, 0.15968476235866547, 0.05712799355387688, 0.08798798173666, 0.005757538136094809, -0.130784273147583, -0.04646262153983116, 0.07033931463956833, 0.1324850171804428, 0.08321994543075562, -0.06559544801712036, 0.10698891431093216, -0.11180482059717178, 0.06665974110364914, -0.07403010129928589, -0.045111216604709625, -0.05325727537274361, 0.04573468118906021, -0.1691931039094925, 0.10064296424388885, 0.042604707181453705, 0.05882596597075462, 0.010664000175893307, -0.14165034890174866, 0.04947440326213837, -0.022227173671126366, 0.019127512350678444], -variable:[-0.06722398102283478, 0.020897574722766876, -0.061487797647714615, -0.03917808458209038, -0.09044834971427917, -0.10853178054094315, -0.08332311362028122, 0.07457540184259415, -0.09669177979230881, -0.04916795715689659, -0.09759976714849472, -0.011640663258731365, -0.026856577023863792, 0.06948361545801163, 0.10335034877061844, -0.05079018697142601, -0.07626287639141083, -0.06061064824461937, -0.08529732376337051, 0.11552552878856659, 0.07318433374166489, 0.05754517763853073, -0.04121451824903488, 0.05225590616464615, 0.07008325308561325, 0.06118481606245041, -0.12590928375720978, -0.06989224255084991, 0.10055916756391525, 0.0027354068588465452, -0.083295077085495, -0.08851727098226547, -0.010065075010061264, -0.10622013360261917, 0.050182364881038666, -0.0028578012716025114, 0.025763414800167084, 0.11342022567987442, 0.06879179179668427, 0.08234746009111404, 0.0019132100278511643, 0.0694027915596962, -0.006679234094917774, -0.004566729534417391, 0.10547396540641785, -0.02720356546342373, -0.09049005061388016, 0.015440941788256168, -0.09300204366445541, -0.13975337147712708, 0.039505358785390854, -0.07341693341732025, 0.0068575418554246426, 0.0005938877002336085, 0.1430981159210205, 0.05843495950102806, 0.09207864105701447, 0.11393868178129196, -0.10596942156553268, -0.02136983349919319, 0.0022858513984829187, -0.08908442407846451, -0.06668593734502792, -0.037352003157138824, -0.048036810010671616, -0.03188294172286987, -0.015293175354599953, -0.08027205616235733, -0.08223144710063934, 0.10079513490200043, -0.10335762053728104, 0.056961752474308014, 0.016254952177405357, -0.004984980449080467, -0.09634096920490265, -0.0102465795353055, -0.028842203319072723, -0.08254227042198181, 0.0029909515287727118, -0.08271457999944687, -0.1790722757577896, 0.0754704624414444, 0.04605806618928909, -0.11059720069169998, 0.11791902780532837, 0.043090518563985825, -0.12612274289131165, -0.07695724070072174, 0.01569277048110962, -0.06973620504140854, 0.07506163418292999, -0.10062456130981445, -0.038451187312603, -0.015654658898711205, 0.018467377871274948, -0.10304874181747437, 0.12650305032730103, 0.05947618931531906, 0.13487747311592102, 0.12208152562379837, -0.08176141232252121, 0.04305855929851532, -0.1815589964389801, -0.023750832304358482, 0.04254959151148796, 0.07924343645572662, 0.0878680944442749, 0.12440302968025208, 0.027144642546772957, -0.18313929438591003, 0.05904543772339821, -0.0005793760647065938, 0.041722528636455536, 0.1091863214969635, 0.12990325689315796, 0.029938338324427605, -0.05012798681855202, 0.05754958838224411, -0.1297921985387802, 0.10090410709381104, -0.048130545765161514, -0.11880336701869965, 0.1607857644557953, 0.03328116238117218, -0.08535878360271454, 0.04416629299521446, 0.05490431934595108, -0.059944815933704376, -0.04946117475628853, 0.010615584440529346, -0.01377532072365284, -0.06045155227184296, -0.04176456108689308, -0.008616636507213116, -0.10081978142261505, -0.10147222131490707, -0.03411303460597992, -0.038035616278648376, 0.08830506354570389, 0.07372419536113739, -0.028317056596279144, -0.04243031516671181, 0.05267130583524704, 0.055386003106832504, -0.0006581680499948561, 0.05622376501560211, 0.023836774751544, 0.07268241047859192, -0.03844830021262169, -0.1080479547381401, -0.08848228305578232, -0.04629972204566002, -0.009364668279886246, 0.04413479194045067, 0.08816602826118469, 0.08056290447711945, 0.10942227393388748, -0.025763917714357376, 0.021871788427233696, 0.09761617332696915, 0.11216125637292862, -0.04740133509039879, -0.09800378978252411, 0.05263803154230118, 0.09764017909765244, -0.0011872709728777409, 0.05661957710981369, -0.033080559223890305, 0.047992877662181854, -0.09809082746505737, -0.06427470594644547, -0.07324998080730438, -0.0900551900267601, -0.07890968769788742, -0.05758941173553467, 0.04580406844615936, 0.0370793454349041, 0.024752236902713776, -0.009860612452030182, 0.05442855507135391, 0.05296050384640694, 0.08723151683807373, 0.019838811829686165, -0.054170504212379456, -0.006725638639181852, -0.11417381465435028, -0.0034342193976044655, -0.10123497247695923, 0.007624648045748472, 0.06359023600816727, -0.07336746156215668, 0.01847555860877037, 0.019836606457829475, -0.08278173953294754, 0.0588759183883667, -0.13535359501838684, 0.04117436707019806, 0.05142412707209587, 0.08074066042900085, -0.04586608707904816, 0.08885834366083145, -0.06147504970431328, -0.0076879761181771755, 0.011313997209072113, -0.1212201863527298, -0.016602609306573868, 0.019000189378857613, -0.07533563673496246, -0.0018627968383952975, 0.09765295684337616, -0.06957976520061493, 0.002951881382614374, 0.038395192474126816, -0.0861724317073822, -0.11710968613624573, 0.037013787776231766, 0.1553966999053955, 0.10791216790676117, -0.04199087247252464, -0.04183482751250267, -0.014730894938111305, 0.1398879736661911, -0.05397728830575943, -0.027007492259144783, -0.0048422846011817455, 0.13075777888298035, 0.1033557802438736, 0.17691321671009064, -0.14011125266551971, 0.18169786036014557, -0.08011045306921005, 0.04203782603144646, -0.04084793105721474, -0.07020577043294907, -0.16556741297245026, 0.06232469901442528, 0.015327513217926025, 0.09198490530252457, -0.10498634725809097, 0.08190704882144928, 0.10104964673519135, 0.0628453865647316, -0.08455252647399902, -0.03511175513267517, 0.13746348023414612, 0.10709967464208603, -0.0638074204325676, 0.03904666379094124, 0.028084278106689453, -0.040577489882707596, -0.012644857168197632, -0.09095439314842224, 0.04060798138380051, 0.019657159224152565, 0.15628893673419952, 0.08240191638469696, -0.03549465537071228, -0.08187693357467651, 0.0477316752076149, -0.04255082085728645, -0.09025522321462631, 0.07026159763336182, -0.07375820726156235, 0.08123152703046799, -0.0024442574940621853, -0.04164751246571541, -0.04904194548726082, 0.008367315866053104, 0.0034980576019734144, 0.09395499527454376, -0.05597502738237381, -0.000734149303752929, -0.04823543131351471, 0.09039819240570068, 0.11198221892118454, 0.12522321939468384, -0.1029735878109932, 0.1100083440542221, 0.04970577731728554, -0.15801088511943817, -0.11195217072963715, -0.0930590108036995, 0.04057134687900543, 0.10170502215623856, -0.024671796709299088, -0.08807971328496933, -0.1337004452943802, 0.04468085989356041, 0.034585971385240555, 0.10100512951612473, -0.09451063722372055, 0.027574747800827026, -0.08413191884756088, -0.09895563125610352, -0.04993712902069092, 0.05580122768878937, -0.09777819365262985, -0.02726525254547596, -0.10735534876585007, 0.08775132894515991], -vectorTy:[-0.06241289898753166, 0.004826982039958239, 0.07862486690282822, -0.12181354314088821, 0.07617976516485214, -0.08638551086187363, -0.09041833132505417, -0.03509153053164482, 0.016388747841119766, -0.018637945875525475, 0.049827784299850464, -0.01294662244617939, -0.07564223557710648, -0.12054163962602615, -0.05666237324476242, -0.02743103727698326, -0.11690379679203033, 0.05044194310903549, 0.005098235327750444, -0.10942550748586655, 0.0009709909209050238, 0.040292274206876755, 0.09057588130235672, 0.0016042186180129647, -0.0843707025051117, -0.12531542778015137, 0.006776702124625444, -0.12188025563955307, -0.12451908737421036, 0.08489389717578888, 0.11693891137838364, -0.01819503679871559, -0.09313741326332092, -0.132375568151474, 0.057572994381189346, -0.01686514914035797, -0.0808563157916069, -0.008275029249489307, 0.05268635228276253, -0.09138934314250946, -0.05551648139953613, -0.05295573174953461, 0.0021799481473863125, -0.04733235761523247, -0.11523178964853287, -0.07347045838832855, -0.020320331677794456, -0.05923652648925781, 0.036799997091293335, 0.042998310178518295, -0.010192212648689747, 0.05478940159082413, 0.06677944213151932, 0.07875257730484009, 0.07988692075014114, 0.06892012804746628, -0.06863892078399658, -0.11646917462348938, 0.0676674172282219, -0.06948179751634598, -0.04733675718307495, -0.10183468461036682, -0.019584832713007927, -0.022357579320669174, -0.0472385473549366, -0.0065088761039078236, 0.03137906640768051, 0.14968523383140564, -0.09703677147626877, -0.13239562511444092, -0.029761139303445816, 0.06728215515613556, -0.09093834459781647, -0.1272537261247635, 0.1374194175004959, 0.01757986657321453, 0.015496047213673592, 0.0545254647731781, 0.05701399967074394, 0.043634433299303055, 0.05934983491897583, -0.010528509505093098, 0.03684449940919876, 0.07281694561243057, -0.029505327343940735, -0.03750480338931084, 0.025403879582881927, 0.0017174105159938335, 0.007033504545688629, 0.07638365775346756, 0.07836227864027023, -0.07507079094648361, -0.0013990211300551891, -0.08082647621631622, -0.0060880789533257484, -0.05453059822320938, -0.11550980061292648, -0.07872509211301804, -0.12888717651367188, -0.1520897001028061, 0.007768580224364996, -0.019702667370438576, 0.08911039680242538, 0.024338651448488235, -0.013781759887933731, 0.05917617306113243, 0.0875094085931778, 0.1362219601869583, 0.07544772326946259, -0.032852716743946075, 0.011538934893906116, 0.010482167825102806, 0.1139616072177887, 0.09693079441785812, -0.11479281634092331, -0.01763414591550827, 0.013725360855460167, 0.03482891991734505, 0.0131545290350914, -0.03128822147846222, 0.09803451597690582, -0.05040109157562256, -0.06679433584213257, 0.044030867516994476, 0.13507474958896637, 0.008012090809643269, 0.09089712053537369, 0.13908261060714722, -0.07555892318487167, 0.06709587574005127, 0.01939011737704277, 0.08220484107732773, -0.039082057774066925, 0.02865004539489746, -0.14179463684558868, 0.07838711142539978, 0.14342720806598663, -0.001389162614941597, -0.13509610295295715, 0.11846602708101273, -0.07413319498300552, 0.04987947642803192, 0.038702089339494705, -0.1424320787191391, 0.020317889750003815, 0.0748748928308487, -0.04390198364853859, 0.037664737552404404, -0.040094852447509766, 0.04742616042494774, -0.03456908464431763, -0.05239736661314964, -0.0015437299152836204, 0.052410755306482315, -0.05207284167408943, 0.10008321702480316, -0.08640415966510773, 0.04280327633023262, 0.05843926593661308, -0.03895715996623039, 0.07101757824420929, 0.06673591583967209, -0.019804073497653008, 0.09123702347278595, 0.07624270766973495, -0.13554750382900238, -0.022949228063225746, -0.04989144206047058, 0.05915604904294014, 0.12332750111818314, 0.10463643819093704, -0.06279987096786499, -0.01065140776336193, 0.09421728551387787, 0.12086943536996841, 0.056916169822216034, -0.09616173803806305, 0.10366422683000565, -0.03188201040029526, 0.05865320563316345, -0.011847076937556267, -0.07011912763118744, -0.07005799561738968, -0.0056504299864172935, 0.05705108493566513, 0.09343358129262924, 0.001482228864915669, 0.05455239117145538, 0.1066373661160469, 0.1102759838104248, -0.053777702152729034, 0.09530054777860641, 0.005958486348390579, -0.09042172878980637, 0.02085677720606327, 0.07037857174873352, -0.01708899438381195, -0.08803101629018784, -3.9178346924018115e-05, -0.13743947446346283, -0.11674663424491882, -0.09362410008907318, 0.10680053383111954, 0.07992707937955856, 0.08876685798168182, 0.020125946030020714, -0.0008800475625321269, -0.100517138838768, 0.1296071708202362, 0.09811477363109589, -0.005972618702799082, -0.16115674376487732, 0.08707510679960251, -0.11997685581445694, 0.15885920822620392, 0.03695964440703392, -0.09407193958759308, 0.10652824491262436, -0.02809939533472061, 0.023979712277650833, -0.13232596218585968, -0.080770343542099, -0.0023222521413117647, 0.043553341180086136, 0.05030835047364235, 0.0817314088344574, 0.1394796371459961, -0.0036487989127635956, -0.06407161056995392, -0.11791536211967468, -0.06836482882499695, 0.03653600811958313, 0.07835477590560913, -0.04395153373479843, 0.03761535510420799, 0.11023906618356705, -0.001967532793059945, -0.0972498208284378, 0.023670660331845284, 0.040349096059799194, 0.1257213056087494, 0.11295410245656967, 0.09546134620904922, -0.07628906518220901, -0.10830466449260712, 0.05053380876779556, -0.12456599622964859, -0.07827019691467285, 0.03532594442367554, -0.02997671812772751, 0.051766108721494675, 0.10157513618469238, -0.0352790430188179, -0.002622089581564069, -0.08348789811134338, -0.0524972602725029, 0.030866701155900955, -0.056400116533041, 0.14362841844558716, 0.019854137673974037, -0.12053661048412323, -0.02675808221101761, -0.10067848861217499, -0.0225237887352705, 0.03330560773611069, -0.07908334583044052, 0.10688205063343048, 0.019537750631570816, 0.06328074634075165, -0.09208951890468597, -0.11784270405769348, -0.021655255928635597, -0.03846805542707443, 0.024272426962852478, -0.003536220407113433, -0.12817957997322083, -0.0649915412068367, 0.03670653700828552, 0.032322317361831665, 0.02406773343682289, 0.02123248763382435, -0.007870791479945183, -0.10092390328645706, -0.07657333463430405, -0.066042460501194, 0.08083223551511765, 0.1212729662656784, 0.11727755516767502, -0.04139317572116852, -0.05196963623166084, 0.06237521767616272, 0.0935497060418129, 0.02601737156510353, 0.08142166584730148, -0.04645576328039169, -0.10777196288108826, 0.06300286203622818, -0.15671144425868988, 0.10473494231700897, -0.11677901446819305], -voidTy:[-0.051130276173353195, -0.03638109564781189, 0.09866306930780411, 0.01786789298057556, 0.10858377814292908, 0.09280766546726227, 0.04265524074435234, -0.07091964781284332, -0.0313023217022419, 0.00010794095578603446, -0.018329564481973648, -0.007959515787661076, -0.13060447573661804, 0.060319941490888596, -0.07115860283374786, -0.026015786454081535, 0.09751341491937637, -0.09132068604230881, 0.04947888106107712, -0.08308844268321991, -0.10402654111385345, 0.006021786946803331, -0.01850762963294983, 0.0029252308886498213, 0.08401572704315186, -0.0034339542035013437, 0.10072061419487, 0.0672379583120346, -0.05833600461483002, -0.08401046693325043, 0.00022481878113467246, -0.05330955609679222, -0.07580741494894028, 0.012742512859404087, 0.1387505829334259, -0.05613609030842781, 0.022179601714015007, -0.027025215327739716, -0.09746904671192169, -0.12847572565078735, 0.11848023533821106, -0.06985979527235031, 0.019511722028255463, 0.10729069262742996, 0.10880681127309799, -0.044268615543842316, 0.03949040174484253, -0.0038909846916794777, 0.025494376197457314, 0.08577542006969452, 0.02382265403866768, -0.054320238530635834, 0.037272755056619644, 0.03493489697575569, -0.10418273508548737, 0.09978575259447098, -0.0032036141492426395, -0.030418911948800087, -0.10410740971565247, -0.09220413863658905, 0.013108246959745884, -0.010429813526570797, -0.11475547403097153, 0.06279020011425018, -0.04172924906015396, 0.0030740625225007534, 0.045490965247154236, 0.05522424727678299, -0.0190880186855793, -0.0999240130186081, -0.06994817405939102, 0.09642168134450912, 0.0965796560049057, 0.10297597199678421, -0.04760897532105446, -0.001545011531561613, 0.061627499759197235, -0.038537830114364624, 0.07587302476167679, 0.016028771176934242, 0.024656888097524643, -0.07081535458564758, -0.016241034492850304, 0.07462364435195923, -0.08163723349571228, -0.023980846628546715, -0.0849633738398552, -0.0356656014919281, 0.023102877661585808, -0.034086406230926514, -0.08009913563728333, -0.07997951656579971, 0.01756695657968521, -0.05126895755529404, -0.044067852199077606, -0.07198546826839447, 0.10842560231685638, 0.08166729658842087, -0.07437245547771454, 0.11001816391944885, 0.04625129699707031, 0.015010470524430275, 0.06706922501325607, -0.08312630653381348, -0.0756896585226059, 0.08732204884290695, 0.10214199870824814, -0.09394250810146332, 0.09930059313774109, 0.08315258473157883, -0.004104259889572859, -0.006123787257820368, 0.055690616369247437, 0.018181487917900085, -0.07127486169338226, 0.02646445669233799, -0.066597580909729, 0.0004853832069784403, 0.02213624306023121, -0.06722967326641083, 0.07222338020801544, -0.0517481192946434, -0.04528927057981491, 0.07190951704978943, 0.05025368556380272, -0.012350707314908504, 0.01542666181921959, 0.03322912007570267, 0.027212107554078102, 0.08829661458730698, 0.014589332044124603, -0.03956112265586853, -0.08516739308834076, 0.008479666896164417, -0.08478131145238876, -0.06511932611465454, -0.0532459057867527, -0.054311200976371765, 0.10330340266227722, -0.0012507362989708781, -0.028293734416365623, 0.004341765772551298, 0.06563760340213776, -0.09597919136285782, 0.012606254778802395, 0.08596670627593994, 0.010318423621356487, -0.014425267465412617, 0.07218636572360992, 0.08450114727020264, 0.04233579337596893, -0.07636958360671997, 0.015464781783521175, 0.007298131473362446, -0.060063768178224564, 0.08129660785198212, -0.07648614048957825, -0.008585029281675816, 0.074346162378788, 0.08953335881233215, -0.09572717547416687, -0.10400428622961044, 0.04821041226387024, 0.0452020987868309, -0.10950852185487747, -0.07435896247625351, -0.06262461096048355, -0.11787451803684235, 0.06909574568271637, 0.03381040319800377, 0.11014226824045181, 0.09858874976634979, -0.10254223644733429, -0.0027186181396245956, -0.0930999144911766, -0.04752946272492409, 0.06035254895687103, 0.029195548966526985, -0.07866315543651581, 0.04579368978738785, 0.0761319175362587, 0.09107955545186996, 0.06174883991479874, -0.0010692400392144918, 0.04072466865181923, -0.08362259715795517, 0.03074420429766178, -0.09959610551595688, -0.10376744717359543, 0.08545458316802979, 0.05727000907063484, 0.07508370280265808, -0.012547451071441174, 0.08027787506580353, 0.07148437201976776, 0.10853084176778793, -0.019603317603468895, 0.045814722776412964, 0.07340246438980103, 0.012025750242173672, 0.04663653299212456, -0.08610650151968002, -0.009084596298635006, -0.10095936059951782, 0.07179824262857437, 0.03495550528168678, 0.02018514648079872, -0.09656238555908203, 0.05783107131719589, -0.0626341849565506, -0.05899953469634056, -0.041392989456653595, 0.028555577620863914, -0.05301413685083389, 0.06257402896881104, -0.05118200555443764, -0.09515964239835739, -0.05421758443117142, 0.03997620567679405, 0.030690038576722145, -0.08573668450117111, 0.0597662627696991, -0.031898826360702515, 0.004898177459836006, 0.016544580459594727, -0.021867265924811363, -0.09565700590610504, -0.11804379522800446, 0.03394787386059761, -0.09056056290864944, 0.05165080353617668, -0.0049062455072999, 0.11686348170042038, -0.06684722006320953, 0.06489338725805283, 0.09651878476142883, -0.07445422559976578, 0.0969969630241394, 0.11428935825824738, 0.031134411692619324, -0.09729164838790894, -0.10921022295951843, 0.0981321632862091, -0.04958188906311989, -0.08535121381282806, 0.048620130866765976, 0.08875175565481186, 0.06320448964834213, -0.021762818098068237, 0.11325135827064514, -0.03254028782248497, 0.10679588466882706, -0.012553202919661999, -0.04586930572986603, -0.06691595166921616, 0.045555777847766876, -0.07155003398656845, 0.0469975620508194, -0.009177414700388908, -0.03038761205971241, -0.10468140989542007, 0.016094209626317024, 0.0909135565161705, 0.007177499122917652, -0.014682716690003872, -0.0025472852867096663, 0.06757540255784988, 0.10497456789016724, 0.08618881553411484, -0.11725228279829025, -0.09263330698013306, -0.11517202109098434, 0.014102857559919357, 0.008596119470894337, -0.08365333080291748, -0.08322262018918991, -0.04251425340771675, -0.0813438668847084, 0.13440045714378357, -0.06373483687639236, -0.10919106751680374, -0.06993544101715088, 0.02318808063864708, 0.09450250118970871, -0.08088227361440659, 0.03880501165986061, 0.029723161831498146, 0.10073338449001312, 0.08711113035678864, 0.0843488797545433, 0.09860888123512268, -0.06836140900850296, -0.021125679835677147, -0.09524685144424438, -0.09993276000022888, -0.06374645978212357, -0.0955597460269928, 0.05866594985127449, 0.07380179315805435, -0.03618999943137169], -xor:[0.02850889414548874, 0.016122348606586456, 0.06125081330537796, 0.0691559836268425, 0.022419774904847145, 0.032109662890434265, 0.054567862302064896, 0.06017962470650673, 0.14181914925575256, -0.11789358407258987, -0.002298385137692094, -0.0823565274477005, 0.003308825194835663, 0.004457678645849228, 0.04958873242139816, -0.03700493648648262, -0.012500419281423092, -0.07431792467832565, -0.04806962236762047, -0.030782293528318405, 0.11923831701278687, -0.03464711457490921, -0.11825656145811081, 0.107060007750988, -0.08120116591453552, -0.04726693406701088, 0.05913110822439194, 0.07032808661460876, 0.04331385716795921, 0.1350676715373993, -0.008571766316890717, 0.10840743035078049, 0.11954697966575623, 0.05086253583431244, 0.09308783710002899, 0.0731002539396286, -0.0343574583530426, -0.16045276820659637, -0.03453970327973366, 0.1253538876771927, 0.07734642177820206, 0.02394375205039978, -0.036810386925935745, 0.016338370740413666, -0.10474246740341187, 0.11733261495828629, 0.11443556845188141, 0.04047130420804024, 0.06983865797519684, -0.09877092391252518, -0.08611274510622025, 0.03157594054937363, -0.030547911301255226, -0.024534326046705246, 0.04040493816137314, -0.03521240875124931, 0.036791618913412094, 0.12000218033790588, -0.010286327451467514, 0.048377543687820435, -0.11733869463205338, -0.07979510724544525, 0.091684989631176, 0.02342154271900654, 0.10305161774158478, 0.06001032516360283, 0.05540313571691513, 0.13069595396518707, 0.03130289912223816, 0.006158784031867981, 0.01433050911873579, -0.1114296019077301, -0.09175293147563934, -0.10417451709508896, 0.007487418595701456, -0.03512037172913551, 0.07614914327859879, -0.16592693328857422, 0.07751339673995972, 0.019926078617572784, -0.11936461925506592, 0.08614391088485718, -0.12203402817249298, -0.0630701407790184, 0.09279970079660416, -0.13358454406261444, 0.017901035025715828, 0.049118492752313614, -0.05596701428294182, -0.11802154034376144, -0.0894211083650589, 0.03392677754163742, 0.11189716309309006, 0.018472639843821526, -0.16546715795993805, -0.035586558282375336, 0.03198998048901558, -0.018171146512031555, 0.06710707396268845, -0.04932544380426407, 0.0380089208483696, -0.06349387764930725, -0.057839203625917435, 0.054765112698078156, 0.010927731171250343, -0.0393650121986866, -0.09247084707021713, 0.061667706817388535, 0.03077644854784012, -0.015962760895490646, -0.06434885412454605, -0.09281765669584274, -0.06444490700960159, -0.0754341334104538, 0.14984260499477386, 0.04286636784672737, 0.058012764900922775, -0.0077441842295229435, 0.09073005616664886, 0.012156877666711807, 0.03533976525068283, 0.017114661633968353, 0.06711376458406448, 0.10119982063770294, 0.07315267622470856, -0.14156994223594666, 0.056945789605379105, -0.002625294728204608, 0.08637098222970963, -0.00684761768206954, 0.0013889723923057318, -0.04614178091287613, 0.07513992488384247, 0.019676003605127335, -0.06165898218750954, 0.07760712504386902, 0.05396366864442825, 0.05615755543112755, 0.028438862413167953, -0.019361646845936775, 0.1123521700501442, -0.0008295216830447316, 0.09331256151199341, -0.10266079008579254, 0.17826206982135773, -0.05822199955582619, 0.025285257026553154, 0.11239959299564362, -0.03557601198554039, -0.011408751830458641, -0.09928442537784576, 0.08175795525312424, -0.01682860404253006, -0.026031561195850372, -0.034648146480321884, 0.014749736525118351, -0.052103180438280106, 0.07410089671611786, -0.10776301473379135, 0.03274040296673775, 0.038501229137182236, 0.11404471844434738, 0.10348466038703918, -0.03515414521098137, -0.03474320471286774, -0.11050517112016678, -0.1138509064912796, 0.09421475976705551, -0.10328011959791183, 0.05647391453385353, 0.027305619791150093, -0.11514031887054443, -0.016689183190464973, 0.08844897896051407, -0.014890128746628761, 0.0012746861902996898, -0.15834742784500122, -0.1078733578324318, 0.04802209138870239, -0.02676294557750225, -0.08298003673553467, -0.10729356855154037, -0.08257520943880081, 0.0322532020509243, -0.04230545088648796, -0.011754359118640423, 0.029205776751041412, 0.01936701498925686, -0.030693931505084038, -0.11438024044036865, 0.06107289344072342, -0.047267090529203415, -0.11427384614944458, -0.021910473704338074, -0.06358212232589722, -0.14330245554447174, 0.056200191378593445, -0.042782578617334366, -0.016990330070257187, -0.01295135822147131, -0.06723343580961227, 0.09169119596481323, 0.021173201501369476, 0.10038840025663376, -0.013593863695859909, 0.023083407431840897, -0.06590733677148819, -0.012554291635751724, -0.07120760530233383, 0.005729447118937969, -0.014640141278505325, 0.07905466854572296, 0.09973802417516708, 0.12747761607170105, 0.08122245222330093, -0.008459709584712982, 0.0492662712931633, -0.04746609181165695, 0.08347847312688828, -0.05157579109072685, 0.04555978626012802, 0.01584935560822487, 0.03435288369655609, -0.011553019285202026, -0.0533347986638546, 0.07892630994319916, 0.02568441443145275, 0.0706252008676529, 0.030546247959136963, 0.06377565115690231, -0.028170013800263405, -0.027218546718358994, -0.08297593146562576, -0.012526989914476871, 0.009014210663735867, -0.005242783576250076, 0.13462738692760468, -0.05491386726498604, -0.1169259175658226, -0.10943371057510376, -0.06823986023664474, -0.07392050325870514, 0.008698364719748497, 0.10497599840164185, 0.04980243369936943, -0.07541131973266602, 0.03086310438811779, -0.08578178286552429, 0.004716114141047001, -0.04264259338378906, 0.09927122294902802, 0.0520697645843029, 0.10302580893039703, -0.021419886499643326, 0.06317799538373947, -0.01973331719636917, 0.07108589261770248, -0.05965675786137581, -0.10054848343133926, -0.0559568777680397, -0.09534613788127899, -0.0770171731710434, 0.0029230720829218626, 0.011326035484671593, 0.03268936648964882, 0.09339290857315063, -0.0819045752286911, -0.1344621330499649, -0.09971802681684494, -0.01900664158165455, 0.056779082864522934, 0.007322171702980995, -0.052195675671100616, 0.12593621015548706, 0.13874800503253937, 0.013239342719316483, -0.01902967318892479, 0.01505742222070694, -0.0627816691994667, 0.07134024053812027, 0.04308174550533295, -0.050676021724939346, -0.15697339177131653, 0.026531483978033066, 0.020904775708913803, -0.018543599173426628, -0.0393439382314682, -0.06263639777898788, 0.04467281326651573, -0.06002475693821907, 0.00010185038263443857, -0.05827232450246811, -0.0774264708161354, 0.039884209632873535, 0.05366294085979462, 0.011302622966468334, 0.028371110558509827, -0.13380616903305054, -0.011322276666760445, 0.0037596861366182566], -zext:[0.04730381444096565, 0.00912463292479515, 0.01959952525794506, -0.012376721017062664, -0.04268995672464371, -0.005030529107898474, -0.010850860737264156, 0.032976534217596054, 0.03937356919050217, -0.1222648024559021, -0.033509038388729095, 0.16889631748199463, 0.05906807631254196, -0.0035584792494773865, 0.06776411086320877, 0.05886312201619148, 0.001615810440853238, 0.0080344807356596, 0.002172647276893258, 0.004401928745210171, 0.06328756362199783, 0.011020183563232422, 0.03494656831026077, -0.005174732301384211, -0.013495003804564476, -0.05350612476468086, 0.04265286400914192, 0.003794741351157427, 0.04803496226668358, 0.10034096986055374, -0.012576522305607796, 0.0915340781211853, 0.0963422954082489, 0.027135107666254044, 0.026230627670884132, 0.0831742137670517, -0.039392583072185516, -0.018966104835271835, -0.03287746384739876, -0.0021382258273661137, 0.08646173775196075, -0.03044869937002659, 0.029191771522164345, 0.06805073469877243, -0.010110142640769482, 0.10266883671283722, -0.0679231584072113, -0.09561631083488464, 0.006417223252356052, -0.06408759206533432, 0.1011955663561821, 0.10666747391223907, -0.03741465508937836, -0.0863695964217186, -0.04381589964032173, -0.04428809881210327, -0.040002480149269104, -0.12272331863641739, -0.035958290100097656, 0.06687577813863754, 0.19531302154064178, 0.031750068068504333, 0.04221270978450775, 0.052622973918914795, 0.10491511225700378, 0.025690948590636253, 0.017040923237800598, 0.07876088470220566, 0.006007727235555649, -0.010870310477912426, 0.013475731015205383, -0.022037440910935402, -0.08359947800636292, -0.003443425986915827, 0.02193797007203102, -0.008447995409369469, 0.03441707417368889, 0.2662454843521118, -0.03876703605055809, 0.08875840902328491, -0.07644054293632507, -0.06021738052368164, -0.12028155475854874, -0.04582761600613594, 0.014421549625694752, -0.007793296594172716, -0.04499012976884842, 0.06827089190483093, 0.1029738113284111, -0.005538899917155504, -0.02158558927476406, -0.012393123470246792, 0.12300880998373032, -0.05422411113977432, -0.050671402364969254, 0.06832412630319595, -0.02676577866077423, -0.03681441396474838, 0.020826170220971107, 0.012966551817953587, 0.07694922387599945, -0.10519629716873169, -0.033896878361701965, 0.1774871051311493, 0.009452827274799347, -0.09609222412109375, 0.0332193560898304, 0.08807408809661865, -0.08803272247314453, -0.05079424008727074, -0.11745373904705048, -0.0038226088508963585, -0.06816530972719193, -0.04057944193482399, 0.03211062401533127, 0.043107155710458755, 0.06919949501752853, -0.1166519895195961, 0.013367719948291779, 0.011187635362148285, 0.00923215877264738, 0.04738839343190193, -0.08688798546791077, 0.008153349161148071, 0.013347032479941845, -0.012875866144895554, -0.024536967277526855, -0.010526815429329872, 0.05845051258802414, -0.02557174302637577, -0.16381660103797913, -0.08447771519422531, 0.10649522393941879, 0.06174210086464882, 0.0069506000727415085, 0.09160025417804718, 0.0641351193189621, 0.061099473387002945, -0.055884335190057755, -0.01895526982843876, 0.09289205074310303, -0.06247041001915932, -0.08254362642765045, -0.06278558075428009, 0.07206697762012482, -0.0869564339518547, -0.1452004611492157, -0.11844579130411148, 0.03641810640692711, 0.005353834014385939, -0.07159608602523804, 0.09572779387235641, -0.03982168063521385, -0.105586476624012, 0.07442085444927216, -0.026733845472335815, 0.04664592817425728, 0.09670199453830719, -0.07397814840078354, 0.015350965782999992, -0.0389292910695076, 0.056970421224832535, 0.004050475545227528, -0.06939607858657837, 0.004623928107321262, -0.07122905552387238, -0.14111381769180298, 0.06497446447610855, -0.09501296281814575, 0.1087615042924881, 0.003189855022355914, -0.08836575597524643, 0.044489044696092606, 0.10837875306606293, 0.04174990952014923, 0.16613423824310303, -0.14956320822238922, -0.08189839869737625, 0.08729895204305649, -0.07863779366016388, -0.049569085240364075, -0.000711308151949197, -0.04482744634151459, -0.1509108692407608, -0.0609871931374073, -0.05230388790369034, 0.11562161147594452, -0.003932568244636059, 0.033203188329935074, -0.11573635786771774, 0.029692277312278748, -0.05841280519962311, 0.08165393769741058, 0.016287026926875114, -0.1005372405052185, -0.04421450197696686, -0.131681889295578, -0.15914928913116455, -0.03642909228801727, 0.035847220569849014, -0.06319503486156464, 0.08398623764514923, -0.04023822396993637, 0.10031852126121521, -0.052412521094083786, -0.05195455998182297, -0.024405747652053833, 0.06165965646505356, -0.03141201660037041, -0.03844333440065384, 0.028647394850850105, 0.04882261902093887, -0.08849287033081055, 0.119425468146801, 0.08180642873048782, 0.02115805260837078, 0.05097338184714317, -0.018298272043466568, -0.059048257768154144, -0.0376398041844368, 0.0898037776350975, 0.04370546340942383, 0.0957275778055191, -0.054160285741090775, -0.10816225409507751, -0.06329983472824097, -0.00365979946218431, 0.05810891091823578, 0.004010294564068317, 0.037393320351839066, 0.0018380323890596628, 0.020454367622733116, -0.1000179722905159, 0.06801479309797287, 0.034238725900650024, -0.032721418887376785, -0.03248782828450203, -0.011775457300245762, 0.01122578326612711, 0.07755214720964432, -0.07309477776288986, -0.022612983360886574, 0.033459775149822235, 0.055012937635183334, 0.04029522463679314, 0.10883574932813644, 0.028107792139053345, -0.053677741438150406, -0.07763919234275818, 0.029355278238654137, 0.10360149294137955, 0.03493426367640495, -0.017558155581355095, 0.14852848649024963, 0.06046433746814728, -0.1329329013824463, 0.0730389878153801, -0.039347998797893524, -0.07359468936920166, -0.04412171244621277, 0.066388800740242, 0.03735882416367531, 0.008734708651900291, -0.1917009800672531, 0.016795700415968895, 0.07470197230577469, -0.09935513883829117, -0.13508355617523193, -0.10376112163066864, -0.01789206638932228, 0.05829178914427757, 0.10811405628919601, -0.091734379529953, 0.09762480854988098, 0.06460684537887573, 0.0971614345908165, 0.03381640836596489, 0.08226238191127777, -0.10006847232580185, 0.057589154690504074, 0.07513588666915894, 0.15604470670223236, -0.05159064382314682, 0.016428619623184204, 0.10725048184394836, 0.011158211156725883, -0.039242591708898544, -0.040914785116910934, -0.009529070928692818, -0.03985278308391571, -0.002024393994361162, -0.19174349308013916, -0.09732978790998459, 0.03979957103729248, 0.06349771469831467, -0.04322708025574684, 0.01589369960129261, -0.049775153398513794, -0.02531931921839714, -0.06609929352998734] +add:[-0.09119588, 0.00242868, 0.15473107, -0.03437948, 0.00381359, -0.05198278, 0.10681888, -0.03011716, -0.10066073, 0.03867204, -0.05159261, 0.00751618, -0.04305038, 0.04011174, -0.0397151, 0.04991153, -0.00620287, -0.06427971, 0.05330718, 0.08231995, 0.07142389, -0.07058582, -0.03277518, -0.03165784, -0.00669905, 0.10087702, -0.03580216, -0.02721513, 0.06704541, -0.02739247, -0.06277992, 0.01847892, -0.02575827, 0.02561458, 0.12261391, 0.1145105, -0.1028716, 0.07033557, -0.02246662, -0.19609685, -0.02754086, 0.08167982, -0.08868735, -0.08472206, 0.0190392, 0.04233891, 0.01372399, -0.11305279, 0.0927781, 0.01635189, 0.02508439, 0.1118636, -0.05585402, -0.02586629, -0.05386887, 0.07520097, 0.00664877, 0.04086153, 0.13720234, 0.03435809, 0.05575293, 0.16361326, -0.10495286, -0.13433154, 0.0301261, 0.01142288, -0.09840827, -0.00466942, 0.08410039, -0.02851701, -0.00519806, -0.1124664, 0.04624857, 0.05939907, -0.04043328, -0.10710806, -0.02649543, -0.01478733, 0.02239153, -0.16670614, -0.06814945, -0.01611879, 0.1177292, 0.08422229, -0.04935082, -0.01176647, -0.09604868, 0.04533608, -0.01606586, -0.09081408, -0.00498476, -0.03317842, -0.06805986, -0.08929179, 0.1962517, 0.10527766, -0.00943773, 0.01461916, -0.05079592, 0.02014444, -0.01233193, -0.03067553, 0.08046829, -0.10914702, 0.19933738, 0.02036438, -0.03567015, 0.0550386, 0.03717265, -0.12252584, 0.13532324, 0.06026173, 0.1102227, 0.06192292, 0.0131604, 0.11337182, -0.0807396, -0.0408343, 0.01874676, -0.03462133, 0.05193595, 0.12056891, -0.04241233, -0.08345412, 0.093385, -0.10769074, 0.02730338, 0.01729374, -0.0205506, -0.06639861, 0.0544442, -0.02622701, -0.06883284, -0.07562367, 0.04352282, 0.0414653, -0.04654391, -0.02251568, 0.0629251, -0.00212676, 0.03773387, 0.1165555, 0.04717209, 0.11277839, -0.0242162, -0.0231328, -0.04893984, -0.03680631, 0.0497079, 0.06526665, 0.04076867, 0.02703815, 0.12371452, 0.10976168, -0.02679066, -0.19414192, -0.06900349, -0.06907611, -0.06684659, -0.11471873, -0.07860515, 0.04214362, 0.00185399, -0.06994357, 0.0730264, 0.07483484, 0.08498769, -0.02216634, -0.05847862, -0.06912644, 0.13047339, -0.00191084, 0.10722652, -0.10536923, 0.13077797, 0.09965378, 0.04811366, -0.11495072, -0.0575375, -0.05908275, 0.07605494, -0.09139068, -0.03645519, 0.01684943, 0.08402336, -0.04185386, 0.07204574, -0.02344488, 0.0134579, 0.00777266, -0.00943947, 0.02800395, -0.04704421, -0.03750816, -0.03037813, -0.10139205, 0.07813533, -0.0656092, 0.04302317, 0.02426383, -0.02169425, 0.16010828, 0.00483232, 0.02553222, -0.0132686, -0.00184405, -0.05743993, -0.1263488, -0.04609844, 0.06130458, -0.00094897, 0.01437961, -0.09601845, -0.11786956, 0.05055472, -0.08515713, -0.00502576, 0.01221691, 0.14600007, 0.01729415, 0.0623985, -0.00071532, 0.07021251, 0.14606223, -0.04156241, 0.03775124, -0.03573701, 0.08376334, -0.03350386, 0.11730788, 0.07494742, -0.03241617, 0.01424565, 0.111472, 0.13957605, -0.01237147, 0.05977685, -0.11342071, 0.11266274, 0.04591236, 0.0908391, 0.01804001, -0.03117518, -0.06188578, -0.04091716, 0.08247331, 0.00254612, 0.0138916, 0.02652888, 0.01707461, 0.02025272, -0.10299466, -0.09629166, 0.01818219, -0.01138833, -0.0035325, -0.09269219, 0.07268378, 0.10538705, -0.04804574, -0.06401654, -0.20238253, 0.03086069, 0.09440944, 0.00304295, -0.08479832, 0.03866769, 0.0120024, 0.01488237, 0.04452336, -0.02839325, -0.0393277, 0.01154725, -0.03022227, -0.03128324, -0.07823943, 0.05648195, -0.02459502, 0.04124762, -0.02607809, -0.04387918, -0.03338804, 0.03072842, 0.04849295, 0.02472821, -0.07347437, -0.00055529, -0.1386967, 0.0242466, -0.05489954, 0.06293359, 0.02723343, -0.00310047, -0.04376234, -0.07487439, 0.02208474, 0.05323291, -0.08967334, -0.07565136, -0.03620133] +alloca:[-0.09701762, -0.06210534, -0.07011634, -0.03258001, 0.12312047, 0.11643743, -0.06083246, -0.00775813, 0.0283519, 0.07168533, -0.0496403, -0.12306016, -0.08108571, -0.09435012, -0.04836591, 0.03752329, -0.0033273, -0.06588504, -0.05506087, -0.05406682, 0.07690194, -0.06742103, 0.07201374, -0.00147747, 0.02930148, -0.02771839, -0.1187666, -0.01682267, 0.0685088, 0.07074416, -0.08255955, -0.06099886, 0.01631803, 0.02376759, -0.03736704, -0.01686086, 0.05830001, 0.06862171, -0.08820657, 0.01304553, -0.00427437, 0.0856298, -0.09345169, -0.12107241, 0.13109903, -0.07518256, -0.0997005, -0.01836914, 0.13560389, -0.12307121, -0.01537677, 0.11220618, -0.05891729, -0.08398462, 0.02130741, -0.00079929, 0.07283422, 0.01655472, 0.14535257, 0.02177779, -0.00675851, -0.11304471, -0.11856084, -0.03844733, -0.03042348, 0.10303293, -0.01427707, -0.12663414, -0.11403339, 0.01522067, -0.06078409, 0.01246527, -0.09850229, 0.06453605, 0.09502903, -0.05605848, -0.02849524, -0.0149852, 0.03321753, -0.03040635, -0.07600468, -0.05611307, -0.06078605, 0.10862246, -0.04905244, -0.01785146, 0.12475619, -0.03400242, -0.0023559, -0.10795039, -0.00687363, 0.03817451, -0.01967685, 0.09169225, 0.01115671, -0.0387779, -0.09759232, 0.01733682, -0.12051249, 0.0390288, -0.08279123, 0.07022824, 0.08426112, -0.06622661, -0.01370823, -0.08777032, 0.08280262, 0.04517138, 0.09559647, -0.09685048, 0.163425, -0.10999171, -0.04906484, 0.0894892, -0.15564652, 0.05548915, -0.00335147, -0.04138485, 0.03561993, 0.0435259, -0.04281074, 0.11320779, 0.01550935, -0.09438278, 0.10501585, -0.1279842, 0.08773509, 0.0163754, -0.11457743, -0.04730799, 0.04789395, -0.02720218, -0.07533031, 0.04493484, 0.04471786, -0.0795506, -0.08854906, -0.03453654, 0.0669769, 0.00960275, -0.18116069, 0.12812504, -0.02937496, -0.00861753, -0.03030273, -0.01306887, -0.05226621, -0.10885912, 0.08216322, 0.06655692, 0.05218646, 0.03407638, 0.1234134, 0.11529741, -0.05009662, 0.04298591, -0.06474379, 0.09173787, 0.11320684, 0.02604164, -0.14714539, -0.03013496, -0.05174971, 0.05328712, 0.09438683, -0.00579711, 0.09482381, 0.12324774, 0.10414842, 0.10855953, -0.03199549, 0.07013723, 0.11794646, 0.10117631, 0.17613368, -0.10628866, -0.07612915, -0.05211522, 0.10453818, 0.04957286, 0.1047473, -0.10730181, 0.07576872, 0.01857291, -0.09014887, 0.08647913, -0.04708583, 0.02814052, -0.00215443, -0.12207635, 0.06264309, 0.11846138, -0.0897455, -0.11378758, -0.03753149, -0.10854959, 0.1204135, -0.06807155, 0.04384536, 0.10898997, -0.12380388, 0.03716516, 0.03686056, -0.00198944, -0.0140885, -0.00451639, -0.06362306, -0.1359926, -0.04869484, 0.06971783, 0.02618958, -0.12909102, -0.07581753, -0.13086635, -0.01684761, 0.07863966, 0.07027316, 0.03822268, -0.08421054, 0.12587933, 0.04981916, 0.00749309, 0.11313101, 0.04165309, -0.04395834, 0.00163597, -0.07538749, 0.10795851, -0.06364501, -0.04346536, -0.04075741, -0.1062997, 0.07505078, -0.07859485, 0.04866505, -0.04987695, 0.0131887, 0.00419276, 0.11210059, 0.0485866, 0.09881017, -0.04310456, 0.04428339, 0.03313407, 0.08451887, 0.03462489, -0.04812449, 0.03159798, 0.11098982, -0.06172638, -0.02735175, 0.11601893, -0.10615265, -0.06742029, 0.00601058, 0.00266116, 0.0888984, 0.07652505, -0.045854, -0.04747747, -0.02777163, 0.0870541, 0.03245978, 0.10063384, 0.00074996, -0.10720406, -0.06371406, -0.02580989, -0.02038605, -0.10007779, 0.03307592, -0.04125971, 0.04494932, -0.03155812, -0.00644056, -0.0473776, -0.01119774, -0.07288992, 0.0755998, -0.12080334, 0.03731525, -0.01061923, 0.13848141, -0.07522608, 0.02514636, -0.08467974, 0.00040942, 0.02337233, 0.02667889, -0.11279989, 0.06870998, 0.03444672, 0.03968455, 0.04858831, 0.02644127, 0.00316084, -0.01510582, -0.09463184, 0.07677642, -0.04218242] +and:[-0.09231838, -0.00791056, -0.13542387, -0.03419685, -0.05651451, -0.04312718, -0.1356682, -0.03032804, -0.1352013, 0.02418601, -0.05240114, 0.00702077, -0.04543834, 0.04082565, -0.03958076, -0.10551731, -0.00634767, -0.06504894, 0.05507198, 0.08200998, 0.0718154, -0.0722337, -0.03254343, -0.03134109, -0.00599972, 0.07618771, -0.03133007, -0.02752115, 0.06629452, -0.12361021, 0.13670252, 0.0284915, -0.02720604, 0.02719302, 0.1244277, 0.0189625, -0.0962228, 0.06881586, -0.03731517, 0.1295051, -0.02793528, 0.08283673, -0.09088109, -0.08545853, -0.0591972, 0.05161822, -0.07234743, -0.10783275, 0.09400187, 0.01670686, -0.09913322, 0.11122413, -0.05578669, -0.01948436, -0.05514774, 0.01085146, 0.00537731, -0.05177051, 0.13801207, 0.03478168, -0.00160929, 0.16333774, -0.1049348, 0.19216706, -0.08165412, 0.045886, -0.04299492, 0.03267011, 0.08127661, -0.0308755, -0.0060884, -0.0354794, -0.1010384, 0.05998476, -0.04765418, -0.09991579, -0.03215004, -0.01485791, -0.1067306, -0.17768745, -0.06803732, -0.0182911, -0.06294181, 0.10645951, -0.05037041, -0.01232906, -0.09698024, 0.04639664, -0.01370984, -0.09136589, -0.00541901, -0.03893549, -0.03797178, -0.08837581, -0.05866859, 0.10634688, 0.04243062, 0.01315473, -0.03812995, 0.00652962, -0.01108619, -0.03095855, 0.08169822, -0.14524971, 0.2000425, -0.03820211, 0.01022228, 0.05459231, 0.01736038, -0.12296862, 0.140033, 0.07651738, 0.11170438, 0.06104761, -0.03487806, 0.12188061, -0.06111851, -0.04254104, 0.05496207, 0.00246303, 0.05295812, 0.12212213, -0.04026075, -0.08388618, 0.09342386, -0.10699692, 0.03134449, 0.01915258, -0.08444189, -0.06616039, 0.05660016, -0.02622134, -0.06871703, -0.07577032, 0.04302084, 0.03952937, -0.04931812, -0.03671359, 0.0418427, 0.05614962, -0.06846572, -0.03670726, 0.03685955, 0.04359781, -0.0202706, -0.02161211, -0.04941459, -0.03233662, 0.05833988, 0.05575132, -0.05165961, 0.0278898, 0.1251528, 0.11160322, -0.03305808, 0.19434917, -0.07065513, -0.06970617, -0.0117639, 0.21507877, -0.14159502, 0.04126406, -0.0499309, -0.07000756, 0.07319471, 0.072001, 0.08555169, -0.02050565, -0.04464218, -0.05961508, 0.03469361, -0.00109287, 0.10750111, 0.13790649, 0.06855044, 0.10957303, 0.0376501, 0.15619019, -0.05829102, 0.17759939, -0.02629955, 0.03967689, 0.07781439, 0.01740039, -0.06966232, -0.04749774, 0.07176332, -0.02178625, -0.05493863, 0.01026122, 0.04529019, 0.0306487, -0.05169212, -0.04168313, -0.03148385, -0.10213724, 0.0783502, -0.06640024, -0.03910745, 0.00915194, -0.12322363, 0.15290359, -0.02501809, 0.02506122, -0.0126686, -0.05241322, -0.05811569, -0.04649837, -0.04622499, 0.05903942, -0.00136501, 0.02650431, -0.11480336, -0.11837514, -0.00723599, -0.07135046, -0.00352809, 0.01321574, 0.12383489, -0.00837568, 0.05981904, 0.11727999, 0.07063387, -0.13142002, -0.04123398, 0.03653618, -0.02648344, 0.08858065, -0.03050957, -0.02388623, 0.07562248, -0.03771996, -0.0533069, -0.0136721, -0.12340231, -0.01161794, 0.06074557, -0.11300842, 0.11324441, 0.04638482, 0.094508, 0.02966815, -0.03147305, -0.06028631, -0.04114335, 0.05220388, 0.04194989, 0.01774781, 0.03179874, 0.01603821, 0.02035463, -0.04621911, -0.09785835, 0.04467069, -0.01110076, -0.02031003, -0.0631927, 0.07368808, -0.09663891, -0.04569426, -0.06506072, -0.099852, 0.0305244, 0.0949484, 0.01237461, -0.08977225, 0.04617193, -0.02472956, 0.01444088, 0.09474199, -0.02941076, -0.04021316, 0.02775788, -0.03049645, -0.00431926, -0.07341872, 0.01706718, -0.01543024, 0.04276058, -0.00893312, 0.03704906, -0.03435021, 0.11072394, 0.0574826, -0.03725352, -0.07328285, -0.00064357, -0.13905004, 0.02368848, -0.0586697, 0.06491448, 0.06815876, -0.012801, -0.03988005, -0.07661445, 0.0374951, 0.0565112, -0.0913085, -0.09750046, -0.03016984] +ashr:[-0.09349421, 0.08860021, -0.06937762, -0.04648652, -0.1148721, -0.04183562, -0.15864877, -0.11708408, -0.06757006, 0.08614424, -0.0571828, -0.0410471, -0.0327631, -0.10992473, -0.04743247, -0.13509835, 0.03462099, -0.07842175, 0.03414469, 0.04805396, 0.07287604, -0.06725463, -0.05116133, -0.03458476, -0.00630197, -0.0133137, -0.04028198, -0.04266597, 0.06938212, -0.07358029, -0.14525755, 0.02986868, 0.08286178, 0.06748316, 0.12748165, 0.12319673, 0.135567, 0.1384324, -0.08360796, -0.01311767, -0.02873707, 0.0852607, -0.1232395, -0.12356667, 0.02679898, 0.06654491, -0.09212436, -0.03897383, 0.11816186, 0.01770952, -0.03359686, 0.13487099, -0.02171056, -0.01871625, -0.0507382, 0.10933218, -0.00078574, -0.15382795, 0.11168641, 0.04677823, -0.06974478, 0.01836978, -0.11826259, -0.1298918, -0.0343994, 0.05909733, -0.06682564, 0.03851841, 0.08904254, -0.0346916, 0.149208, -0.16555683, 0.07243577, 0.0788923, 0.00771115, -0.09779578, 0.03147142, -0.01471178, -0.06877413, 0.03767894, -0.08022609, 0.08866327, 0.12247741, -0.00616987, 0.00711083, -0.00310258, -0.07530425, 0.03306608, -0.02533084, -0.0591279, 0.02463442, 0.07518827, -0.05128239, -0.10862304, -0.11885354, 0.10426125, -0.03679984, 0.01468443, 0.00345196, -0.0023156, -0.02680028, -0.03118948, 0.09626387, -0.20779024, 0.02866085, -0.04470279, -0.09609536, 0.04966476, 0.04925914, -0.12751225, 0.17493066, -0.0586167, 0.11947633, 0.08995692, -0.02245413, -0.13158673, 0.05483716, -0.04450107, 0.08648248, -0.0367543, -0.09099142, 0.14190881, -0.11035594, 0.08417366, 0.0953313, -0.13082658, 0.08519521, -0.01820327, -0.01716768, -0.03159543, -0.07324613, -0.02665078, -0.07884789, -0.10901868, 0.06324953, -0.01962811, -0.0467564, -0.04250545, 0.07055195, -0.00974582, 0.04893436, -0.04223385, -0.02432149, -0.11106686, 0.02275201, -0.06931809, -0.07372487, -0.03342894, 0.06259415, 0.11924442, 0.02253684, 0.04700973, 0.0438919, -0.00179333, 0.01546325, 0.02753881, -0.07639173, 0.08946723, 0.08829828, 0.15691492, -0.14465179, 0.05019315, 0.00305257, 0.05613311, 0.08282039, 0.07098898, 0.0905464, 0.13129997, -0.06952631, -0.14640567, -0.13434514, -0.00125997, -0.08850131, -0.20414774, 0.10165501, 0.10502239, 0.04233658, 0.07307374, -0.06312021, 0.07086965, 0.0091199, 0.07994552, -0.11511035, 0.01849269, 0.02998658, -0.08790988, -0.00569905, 0.00923751, -0.07134841, -0.11577494, 0.11481018, 0.02734267, -0.00943084, -0.04134204, -0.03398709, -0.10577714, -0.10113985, -0.05679346, -0.11324205, -0.06669974, -0.14192726, 0.0665809, -0.00185622, -0.16658172, -0.01452589, -0.07406422, -0.03212613, -0.04723305, -0.04229258, 0.05798243, 0.01259879, 0.00694806, -0.06032047, -0.13963842, 0.06763744, -0.03142674, 0.01157053, -0.02046495, -0.01335975, -0.04337171, 0.05606087, 0.11765204, 0.11854956, -0.05770754, -0.0118641, 0.07487988, 0.03274479, 0.08521537, -0.07929199, 0.06742609, 0.04127213, -0.09927481, 0.07305939, -0.0910739, 0.04297648, -0.13312393, 0.06448886, -0.11512468, 0.14183314, 0.00869443, -0.05860468, 0.01846843, -0.03568121, -0.06387476, -0.03473837, 0.06236918, 0.08999034, 0.08878984, -0.04045574, 0.01350088, -0.02073134, -0.09993789, 0.00527633, 0.06047351, -0.0029168, 0.00071039, -0.04678021, 0.06806391, -0.00022622, 0.04578971, -0.07274745, 0.0418915, 0.02563132, 0.13212053, 0.10329807, -0.11109376, 0.0347611, -0.02412488, 0.00347595, -0.04870949, -0.02928521, -0.03482283, -0.00093093, -0.03573365, -0.04737829, -0.08399882, -0.02700912, -0.04456839, 0.04461616, -0.11686547, 0.11666334, -0.03377875, 0.08066671, 0.02860086, 0.0278892, 0.0483698, -0.00477323, -0.00638766, -0.1293799, -0.0772108, -0.09411846, -0.01465694, -0.1216605, -0.05771436, -0.07679162, 0.04327638, 0.04787572, -0.10447425, -0.03734611, -0.00399313] +atomicrmw:[-0.05791979, -0.10249908, -0.07780139, -0.06555127, 0.05549127, 0.02848047, 0.04460939, 0.09798995, -0.06142766, -0.04399861, -0.0454214, -0.01019566, -0.05017965, 0.09170164, -0.04656781, -0.13866124, -0.02017142, 0.05210361, 0.01572394, 0.11208043, 0.08029637, -0.10415714, -0.03296571, -0.02233447, 0.01260671, 0.02814916, -0.01917147, -0.02160329, -0.08867126, -0.0080278, -0.10257468, 0.11796568, -0.03524422, 0.02546755, -0.05374067, 0.01189015, 0.02901166, 0.05465942, 0.07330692, -0.07070376, 0.00918515, 0.02493808, 0.07179914, 0.08449268, 0.06744739, 0.03181978, 0.09169248, -0.10774943, 0.07189903, 0.05215055, -0.01411892, 0.07224969, -0.07633482, 0.01818102, -0.06909142, -0.13887906, 0.00913478, -0.02573386, -0.12298188, 0.03163927, 0.05861367, 0.02102982, -0.11915889, 0.04329251, -0.03078808, 0.14964053, -0.03121014, -0.01507423, -0.04499101, -0.1080191, -0.03944724, 0.08813675, 0.03716565, 0.03317825, 0.16918933, -0.1101051, -0.03558435, -0.02969363, -0.03661323, -0.1521884, -0.06775655, 0.01373302, 0.1638141, 0.13186477, -0.06660554, 0.0816919, -0.07304824, 0.06299911, -0.02965355, -0.09830794, -0.01128805, 0.1068022, -0.14002906, 0.1077964, 0.12902051, 0.11337955, 0.00022992, 0.04016781, 0.02258649, -0.10947157, 0.09981704, -0.12141712, 0.08446221, 0.08339892, 0.06858088, -0.08527732, 0.08830553, -0.09814692, -0.03166687, 0.12203439, -0.10694596, 0.13550846, 0.01200021, -0.02911901, -0.05285224, 0.01553939, -0.14688304, -0.03494867, -0.08537848, -0.05592679, 0.06202588, 0.04202667, 0.16242908, -0.08025569, 0.04817593, -0.02372598, 0.02870193, 0.07109641, 0.03792179, -0.15004191, 0.02940033, -0.02610469, 0.03406144, -0.05356669, 0.04227647, 0.04024944, -0.15334947, -0.0243681, -0.0929063, 0.08336761, 0.02520714, 0.03972157, 0.00873833, 0.04545898, 0.00834376, -0.02459437, -0.00132482, -0.13091637, -0.06315376, 0.00856003, 0.04950875, 0.02217274, 0.13837984, 0.0891832, -0.03230264, 0.01787181, -0.04118706, -0.05040161, 0.03325167, -0.05612488, -0.14888145, -0.08041825, -0.11016069, -0.11959303, 0.0786598, 0.02214025, 0.09977424, -0.10032408, 0.0859537, -0.03672613, 0.05118164, -0.01111948, 0.11988012, 0.04248438, 0.09373101, 0.09231471, 0.13203584, 0.0537581, -0.04175131, 0.00053436, 0.00561385, -0.07679626, -0.08083934, 0.01603653, 0.02798355, -0.07362046, 0.06986865, -0.09122843, 0.14058656, -0.01330149, 0.00496502, 0.10219844, -0.10130711, -0.09714767, -0.0309014, -0.11143487, 0.14188528, -0.06866355, 0.04605975, -0.01214008, -0.00816182, 0.0110306, 0.12051746, 0.15011103, -0.01314695, -0.06432698, -0.06280319, 0.02618759, -0.04942123, -0.00225461, 0.02620743, 0.12851186, 0.0962688, -0.06387042, -0.05138883, -0.05516348, -0.02840856, 0.11378651, 0.0348115, 0.08979317, -0.03576029, 0.00535826, -0.07162948, 0.01768183, -0.04462852, -0.12314173, -0.02821456, -0.08560707, -0.04188015, -0.08728197, 0.06945203, -0.08553318, -0.0588684, -0.02250112, -0.01997636, -0.006626, 0.0648486, -0.01706472, 0.10771037, 0.05253484, -0.06175319, 0.07903255, -0.04144075, -0.09449539, -0.04866837, 0.14400432, -0.1854667, 0.00744883, 0.07268924, 0.04668921, 0.04271811, 0.07431768, -0.09670561, -0.11901931, 0.0213828, 0.02064327, 0.07307415, 0.07410188, -0.00634241, -0.12059648, 0.01769557, 0.00160106, 0.07331012, 0.05202606, -0.00575302, -0.09744549, 0.05025353, 0.13666874, -0.04450412, 0.04868171, -0.03018506, 0.04650153, 0.03007908, 0.00978256, -0.06375556, 0.01300405, 0.07190265, 0.01837816, -0.11460058, 0.06678481, -0.04372842, 0.05032807, 0.10789711, -0.13578714, -0.00198448, -0.08705013, -0.00046318, -0.01556912, 0.11644111, 0.10796068, 0.10563686, -0.04068575, -0.02400361, 0.00420765, -0.09432077, 0.07148172, 0.0540703, -0.09097418, -0.0849212, 0.00308079] +bitcast:[-0.09400944, 0.03323402, 0.11378304, -0.06719416, -0.04048214, -0.0560984, 0.04933229, -0.10847686, 0.04077307, -0.0634409, -0.04618023, -0.15287423, -0.0399979, -0.13134661, -0.05058953, 0.03782829, 0.01603861, 0.01836945, 0.05716988, -0.05420856, 0.071119, -0.04124365, -0.04691129, -0.01427087, -0.00675796, -0.02925986, -0.08923072, -0.03769306, 0.07700354, 0.09100728, 0.08110333, 0.02938869, 0.10631332, -0.05855983, 0.12549156, 0.11836442, 0.03373859, -0.00192926, -0.00714672, -0.08550999, -0.02951837, 0.0743445, -0.11680122, 0.00213759, -0.01055277, 0.07002291, -0.05601111, 0.0009937, -0.01209992, -0.00781896, 0.08601271, 0.11944991, -0.05622677, 0.00112794, -0.05162059, 0.1137967, 0.05697544, 0.08847692, 0.1411695, 0.01683204, 0.17325449, 0.14175616, -0.11954053, 0.01322264, 0.03828255, -0.11922867, -0.02579863, -0.0096512, 0.11209059, -0.02454261, 0.07332925, 0.0324476, -0.09676478, 0.06976727, 0.09012999, -0.14104107, -0.00626727, -0.01523076, 0.01789276, -0.08586271, -0.05981706, 0.02975717, -0.07203924, 0.12672955, -0.04832514, 0.01084152, -0.0706794, 0.0151756, -0.02732146, -0.05567953, -0.0080507, 0.11367135, 0.00389892, -0.0476264, 0.04531739, 0.10798147, 0.056612, 0.00878768, 0.01408842, -0.06069124, 0.09098681, -0.03355367, 0.08369522, 0.1054048, 0.08990613, 0.05187974, -0.05004267, 0.11469862, -0.07830755, -0.03358523, 0.0859823, 0.12794621, 0.1134969, 0.05780248, 0.0901409, -0.10732342, -0.03312628, 0.0071164, 0.18657163, 0.01061686, 0.05542297, 0.04741706, -0.13332383, 0.08010149, 0.08531459, -0.10673679, 0.01356722, -0.02803527, 0.14772438, -0.10771619, 0.05314428, -0.02359692, -0.0715244, -0.09406482, 0.01561871, 0.01768422, -0.0468573, 0.00850856, 0.09809866, 0.07362239, -0.03507813, -0.11538576, 0.07664317, 0.0478719, 0.12097985, -0.01974516, -0.04864564, 0.02889343, 0.05801689, 0.09487586, -0.10440996, 0.01998659, -0.02783952, 0.05566894, 0.02855724, 0.04528026, -0.06283663, -0.06016758, -0.07181726, 0.21807164, -0.13673013, 0.05806019, 0.00072387, -0.09834397, 0.09638263, 0.10646298, -0.03959174, -0.06010227, -0.0080081, -0.07597321, 0.0621605, -0.00571358, 0.02680725, 0.08810666, 0.06948166, 0.1679983, 0.07629704, -0.06867953, -0.06015407, 0.07623473, 0.11912816, -0.07072797, -0.13213474, 0.01661312, 0.18156502, -0.02580368, -0.01200365, -0.0936077, 0.0699992, 0.01043107, -0.02369995, 0.01789615, -0.01981099, -0.0434545, -0.03062345, -0.06197065, 0.04212082, -0.06820397, 0.02939957, 0.10704731, -0.13559332, -0.1385103, -0.13142052, 0.02012211, 0.01237807, -0.10919793, -0.05871557, 0.06174624, -0.04298963, 0.08666348, -0.02035174, 0.03235925, -0.11692922, -0.11644761, -0.02619913, -0.01859014, 0.01542178, 0.06208662, 0.0707992, 0.02484558, 0.06983769, 0.1046581, -0.10251753, -0.01163184, -0.01466608, 0.01145514, 0.06003982, 0.04964273, -0.02369729, 0.13079077, 0.07495517, -0.10245445, 0.05166899, 0.08534817, 0.08443063, -0.00612145, 0.0620333, -0.12931658, -0.00896935, 0.0483428, 0.08564255, 0.08348877, -0.03214736, 0.09293389, -0.03956646, 0.04071431, -0.07748121, -0.02454359, -0.0101929, 0.03380489, 0.02157907, -0.08772206, -0.08839498, 0.00416822, -0.04706103, -0.1137317, 0.08280545, 0.07326156, 0.02820691, -0.01637143, -0.04637514, -0.09034743, -0.00098859, 0.09738775, 0.14161919, -0.09161443, 0.03992961, 0.01904972, -0.02032926, 0.09878708, -0.04442504, -0.0255416, 0.00223531, -0.03171112, 0.05111437, -0.06584795, 0.08341634, -0.02262011, 0.02040698, 0.04780267, 0.08997227, 0.00804937, -0.03923069, 0.00778476, -0.01695167, -0.0660929, -0.00858713, 0.1323748, -0.09704933, -0.05501241, 0.05494862, 0.05847855, 0.0140526, -0.02271585, -0.07147283, 0.06539249, 0.01161163, -0.09347534, 0.04151259, -0.00229751] +br:[-9.17043462e-02, -2.39167945e-03, 2.96482220e-02, -4.86898124e-02, 1.27645265e-02, -5.39633371e-02, -1.23733776e-02, -1.34446502e-01, 9.26971510e-02, -1.12449527e-02, -4.22919318e-02, -1.03020772e-01, -9.41437855e-03, -1.16007850e-01, -1.17181158e-02, -5.47893383e-02, 2.29249559e-02, 1.75989419e-02, 5.43497764e-02, 8.65622461e-02, 7.07879663e-02, -7.58268312e-02, -4.07746062e-02, -2.52881460e-02, 1.79425012e-02, -1.07855454e-01, -1.10126667e-01, 4.61840443e-03, 5.48087582e-02, -1.29334211e-01, 7.58706853e-02, 2.94058695e-02, 8.02225620e-02, 1.92159954e-02, 1.07712395e-01, 1.14542469e-01, 4.62458991e-02, 2.63673775e-02, -3.30252163e-02, -1.31700352e-01, -1.39560988e-02, 7.74279982e-02, -8.08996409e-02, -6.68176860e-02, 3.74916382e-02, 7.78899863e-02, -7.16442615e-02, -1.96972862e-02, 9.32583287e-02, 6.05934002e-02, -1.58009008e-01, 1.10870183e-01, -5.59949800e-02, -1.79144870e-02, -5.07834405e-02, 1.30568128e-02, 1.05079465e-01, 4.12953682e-02, 1.00632951e-01, 4.26412635e-02, 1.29800394e-01, 1.36999473e-01, -1.03755161e-01, -3.81747819e-02, -8.34089592e-02, -4.78487946e-02, -1.13328926e-01, -2.99757235e-02, 1.52843213e-02, 7.00139161e-03, -4.21652198e-02, -2.59475205e-02, -8.51159394e-02, 6.85533136e-02, 8.82742777e-02, -1.00433126e-01, -1.46343224e-02, -1.44281490e-02, 4.11296748e-02, -1.64643377e-01, -5.84433526e-02, -1.95842814e-02, 1.34202568e-02, 1.05540305e-01, -4.23131250e-02, -1.01109678e-02, 1.12487763e-01, 3.13628861e-03, -1.65710207e-02, -7.67406300e-02, -8.62178765e-03, -7.56275430e-02, -8.02399516e-02, -7.38820955e-02, 2.14060992e-01, 1.09896898e-01, 6.40594065e-02, 1.05470587e-02, -4.35388535e-02, -9.90268514e-02, -3.33033949e-02, -1.16608031e-01, 8.13739002e-02, 1.62772983e-01, 1.57399207e-01, 5.12901060e-02, -1.29354551e-01, -3.20271738e-02, 4.59040366e-02, 3.94459069e-02, 1.02827594e-01, 6.40168712e-02, 7.63609484e-02, 5.52107617e-02, -1.41243309e-01, -1.01082750e-01, -2.84759030e-02, -1.37852747e-02, -9.23653692e-02, 4.83363261e-03, 5.47844879e-02, 1.06542751e-01, 1.78594440e-02, 1.89414825e-02, 8.25195014e-02, -1.04254231e-01, 4.98492979e-02, 5.19179478e-02, 2.78483853e-02, 1.18661504e-02, 5.53346425e-02, -2.64354777e-02, -6.96554333e-02, -6.99443966e-02, 4.00077477e-02, 6.82157930e-03, -5.22176623e-02, -2.21714210e-02, 6.63680807e-02, 7.12572783e-02, 5.47559820e-02, 1.28885418e-01, -4.97801136e-03, 2.02102996e-02, -3.76668945e-02, -6.14210172e-03, -4.82395291e-02, -8.08421969e-02, 6.00086115e-02, 1.07727991e-02, 4.92600948e-02, 3.04202195e-02, 1.22744374e-01, 1.10191673e-01, -9.97217819e-02, 7.75852874e-02, -7.02328831e-02, -3.97550948e-02, 4.39584479e-02, -1.19239382e-01, -8.03808942e-02, 3.75830904e-02, -3.24247107e-02, -8.41013119e-02, 9.43890139e-02, 1.07645117e-01, 7.09492117e-02, -5.85983023e-02, -2.38586422e-02, -3.74800079e-02, 1.16857002e-02, 1.14251678e-04, 9.56246927e-02, -1.17746763e-01, 9.54684429e-03, -9.19903442e-02, 4.08881530e-02, 1.12786330e-01, -5.44145368e-02, 1.44712001e-01, -5.20841740e-02, -9.25240740e-02, 7.19540045e-02, 1.77955329e-02, -1.07250154e-01, -5.06232753e-02, -4.83532064e-03, -1.20005962e-02, -1.45373354e-02, -1.09406874e-01, 9.56635326e-02, 2.01549996e-02, -3.08768395e-02, -4.27362472e-02, -2.97606941e-02, -1.00732170e-01, -2.44019250e-03, -6.65057823e-02, -9.64941606e-02, 8.23325589e-02, -1.12652769e-02, -1.37425497e-01, 1.14857629e-01, -7.14965165e-03, -1.26229208e-02, -4.56884019e-02, -5.98186366e-02, 1.41048938e-01, -4.33303192e-02, 5.20431697e-02, -9.08543095e-02, -8.30774531e-02, 4.47754748e-03, -1.15431048e-01, 5.42349927e-02, 7.01001436e-02, -5.53586800e-03, 2.80811861e-02, -1.52104154e-01, 3.93175483e-02, 5.24521954e-02, 8.71424377e-02, -1.77311879e-02, 6.75255805e-02, -4.06340361e-02, 6.86513111e-02, 3.61086405e-03, -6.40918538e-02, -4.46804762e-02, 1.86324604e-02, 6.55701607e-02, -9.43411812e-02, -1.00566790e-01, -1.45590857e-01, -1.44607559e-01, 2.69633867e-02, 5.75985759e-02, -1.22755133e-01, 1.32425323e-01, 4.63982671e-02, 9.77170095e-02, 4.31491882e-02, -3.18311043e-02, -6.59525543e-02, -3.69435214e-02, 8.69925246e-02, -8.63125473e-02, -3.44467238e-02, -1.11788395e-03, -3.77633260e-03, 2.09815241e-02, 6.52313903e-02, 1.59600005e-03, -7.58208781e-02, 3.97022394e-03, 1.31129427e-02, -2.62685306e-03, 7.36496449e-02, -1.14564477e-02, -5.92248216e-02, 4.12387736e-02, 1.19137414e-01, 2.91792210e-02, 9.37640965e-02, 1.20208018e-01, -7.60759488e-02, 3.36136781e-02, 8.05167779e-02, 6.88287020e-02, -1.08402446e-01, -3.02276500e-02, -4.90232334e-02, 2.56065410e-02, -3.05545088e-02, 3.20101269e-02, -6.01537153e-02, 8.93631727e-02, 1.90832075e-02, -6.30936101e-02, 3.44081894e-02, -8.50224644e-02, 6.70190677e-02, 3.08124311e-02, -4.90599535e-02, 1.29437353e-02, -7.54591525e-02, -1.78031652e-04, 7.69451708e-02, 4.37092744e-02, 1.58637892e-02, 5.44780381e-02, 5.53136617e-02, -7.47882053e-02, -1.13450065e-02, -8.46218467e-02, 6.87757647e-03, 5.64194378e-03, -8.70725140e-02, -3.05420794e-02, -8.15988984e-03] +call:[-9.01157856e-02, -3.12351733e-02, 7.98052102e-02, -4.73939925e-02, 9.08513889e-02, -5.22023663e-02, 1.73759274e-02, 9.89589617e-02, 7.28166848e-02, 1.96958464e-02, -5.19462749e-02, -1.80055213e-03, -2.12026201e-03, 2.48128437e-02, -4.47316468e-02, -7.34818131e-02, -3.62121151e-03, 5.46550713e-02, -4.49524857e-02, -1.70298237e-02, 7.16349408e-02, 1.29968941e-01, -2.50329282e-02, -2.07932275e-02, 1.42160701e-02, -1.73927769e-02, -1.14205211e-01, -2.69267559e-02, -8.23227018e-02, 1.34214722e-02, -1.37456674e-02, 2.84977779e-02, 9.16896090e-02, 2.75894883e-03, 1.22392811e-01, 1.13994278e-01, 1.25166878e-01, 2.95337271e-02, -6.77887574e-02, 1.40939847e-01, 6.24890067e-02, 4.02566344e-02, -6.86191171e-02, -6.53098226e-02, 3.49855050e-02, 4.76418138e-02, -9.00346190e-02, 1.44722546e-03, 9.16871056e-02, -1.00753307e-01, 1.24782160e-01, 8.60727057e-02, -5.45726344e-02, -1.71786752e-02, 9.60298926e-02, 7.11075962e-02, -6.63983077e-02, -2.83368547e-02, 7.32618049e-02, 3.98145393e-02, -1.27987251e-01, 1.11056507e-01, -1.03954904e-01, 1.52637482e-01, -2.94956155e-02, 1.51918963e-01, -5.86656667e-02, -1.15191258e-01, -7.47536048e-02, 2.28501409e-02, 1.28929496e-01, -1.02977596e-01, -1.03898264e-01, 6.32838905e-02, 1.05079124e-02, -6.07175864e-02, -2.79880278e-02, -1.37161119e-02, 1.62605688e-01, 1.56706702e-02, -4.46320437e-02, -1.53266639e-03, 2.61526555e-02, 6.84047397e-03, -3.41094732e-02, -1.39116617e-02, -8.51734281e-02, 8.40348541e-04, -1.69979930e-02, -6.60249144e-02, -6.13097753e-03, 8.01146626e-02, -1.11389697e-01, 7.19282404e-02, -1.55119151e-01, -1.50898740e-01, -4.83785989e-03, 1.33963339e-02, 2.03502197e-02, -9.85061750e-02, -2.70597376e-02, -3.15614790e-02, 7.99339712e-02, 4.27885912e-02, 3.30624059e-02, 3.43928598e-02, -3.96670885e-02, 1.21008039e-01, 3.79739664e-02, 2.06002616e-03, -1.00646742e-01, 8.55393931e-02, 8.81523862e-02, 4.45960015e-02, 5.34878671e-02, 1.04925700e-01, -7.42562935e-02, 6.49741441e-02, -8.55857208e-02, -2.77782585e-02, 5.43798581e-02, 7.40625858e-02, 1.06685301e-02, 3.82921919e-02, 7.74289146e-02, -3.85154113e-02, 4.79226783e-02, -1.83296588e-03, -1.20080091e-01, 4.03627800e-03, 5.46976812e-02, -2.54036933e-02, -6.48737326e-02, -6.85287341e-02, 4.22219858e-02, 3.49065475e-02, -7.95012563e-02, -3.09440605e-02, 6.68450221e-02, -4.62385640e-03, 1.20559928e-03, -9.51499715e-02, -3.23690958e-02, -1.82231843e-01, 5.07600196e-02, -2.04046331e-02, -4.77748886e-02, -2.84658838e-02, 5.21801561e-02, 9.53340679e-02, 4.69691493e-02, 2.80699171e-02, 1.06749818e-01, 9.94947106e-02, 8.77073407e-03, -1.33158371e-01, -7.93327615e-02, -6.68912604e-02, -6.86432719e-02, -1.46257291e-02, -9.71421525e-02, 3.92920338e-02, -3.80327590e-02, -7.11395293e-02, 7.95622244e-02, 8.98143724e-02, -1.80772580e-02, 1.07261933e-01, 2.91525126e-02, -8.81004892e-03, -1.10057943e-01, -1.53043109e-03, 9.23365876e-02, 9.21711400e-02, 1.37042943e-02, -3.25585492e-02, -1.10168315e-01, -1.60433993e-01, -5.42400405e-02, 8.61735791e-02, 1.13869675e-01, -9.11755785e-02, -9.49550495e-02, 1.64908972e-02, 9.54357386e-02, -1.30596250e-01, 4.42879135e-03, -5.12355752e-02, -1.00501336e-01, -2.75461767e-02, 5.28192744e-02, 3.56223136e-02, -4.15039323e-02, -4.29010168e-02, 1.20889135e-01, -9.70290601e-02, 4.25951481e-02, -6.49916157e-02, -9.68750268e-02, 6.25247741e-03, -1.36612028e-01, -7.75205642e-02, 1.13747329e-01, 1.03510907e-02, -1.24455830e-02, 4.54479419e-02, -5.72579019e-02, 1.10336542e-01, -4.60895114e-02, 4.74278368e-02, 5.92649095e-02, 2.71879304e-02, -6.25693947e-02, -7.97871724e-02, 6.83004260e-02, -5.93722379e-03, -4.88325208e-03, 7.97804594e-02, 5.78060858e-02, -4.92230542e-02, 6.41752183e-02, -1.17415927e-01, 3.28957476e-02, -1.21745281e-01, -4.19292711e-02, -9.91861746e-02, 1.75147094e-02, 5.85260987e-02, -5.37653938e-02, -4.57395799e-02, 6.94392323e-02, -3.60844173e-02, 1.21521559e-02, 1.24335311e-01, -1.22702084e-01, -1.46904111e-01, 5.90152480e-02, -1.02453232e-01, 1.10691793e-01, 4.57643270e-02, -8.88139457e-02, 6.48424700e-02, -3.72238606e-02, -7.08026737e-02, -3.99192572e-02, 3.04720737e-02, 4.73865122e-02, -3.19411159e-02, 6.80080578e-02, -1.31852282e-02, 2.02372707e-02, -7.63031840e-02, -1.04101062e-01, 3.61061320e-02, 4.60741576e-03, 1.30178528e-02, -9.73285660e-02, 6.85705394e-02, -6.81619684e-04, -6.87907860e-02, -6.08937815e-02, -6.63406402e-02, 1.18597345e-02, 9.31573063e-02, -1.43709301e-04, -9.94955674e-02, 4.87426817e-02, -2.81205075e-03, -1.45996988e-01, -2.95456517e-02, -2.68750396e-02, -2.11578757e-02, 3.17500196e-02, -2.96463594e-02, 2.89919879e-02, -1.00758635e-02, 1.51990056e-02, -1.39319941e-01, 3.88541520e-02, -7.14611262e-02, -8.08448270e-02, -5.25443219e-02, -1.36453360e-01, 3.53652164e-02, -1.12631761e-01, -7.02306107e-02, -8.61183624e-04, 1.22743780e-02, -1.19098380e-01, 4.23579365e-02, 7.66898245e-02, 7.63632879e-02, 9.63105634e-03, 7.43155717e-04, -6.59840181e-02, 3.04132327e-02, 6.53128251e-02, -8.52537826e-02, -1.12735555e-02, -5.06130280e-03] +cmpxchg:[-1.32308155e-01, 3.32941189e-02, 2.74527632e-02, -5.29211052e-02, -9.52619091e-02, -1.92145985e-02, 1.56387147e-02, -1.79666132e-02, -1.09019540e-01, 9.83355343e-02, -4.96613495e-02, 1.18750848e-01, 8.66697207e-02, 9.37397331e-02, -5.43917567e-02, -8.94035846e-02, 1.04655921e-01, 8.36371407e-02, -5.02460375e-02, 7.52514005e-02, 7.85737038e-02, -6.77233785e-02, 6.44250214e-02, -2.35519968e-02, 8.33209511e-03, -1.13834128e-01, -1.11601263e-01, -1.37015665e-02, -7.71819521e-03, 6.19675964e-03, -2.74686515e-02, 1.18554734e-01, -9.51275080e-02, 1.21978886e-01, -5.38010374e-02, -3.62836905e-02, 3.48715335e-02, 1.54852688e-01, 4.67315167e-02, -5.54122729e-04, 8.92201364e-02, -1.04009360e-01, 7.18735904e-02, -1.41349629e-01, 3.65412347e-02, 3.35430019e-02, 2.78163776e-02, -1.59782037e-04, 1.33487418e-01, 1.20389529e-01, -3.98335606e-02, -2.75568105e-02, -8.22993144e-02, 1.84551571e-02, 8.65045115e-02, -1.38717458e-01, -6.19275589e-03, -1.87393650e-02, -1.15625106e-01, 2.74046082e-02, 5.73674068e-02, -1.25141088e-02, -1.28771812e-01, 2.55486872e-02, -1.43811673e-01, 1.51940554e-01, -2.53925659e-02, -1.07452519e-01, -7.84529522e-02, -1.65452231e-02, 8.86169523e-02, 2.04466842e-02, 9.11799818e-02, 7.58950710e-02, 1.59969568e-01, -3.00690420e-02, -3.49213332e-02, 4.87965569e-02, -3.57868671e-02, 5.12849540e-03, -8.17716271e-02, -1.31980136e-01, 1.32850707e-01, -6.56967703e-03, -2.83841807e-02, -5.83830336e-03, 5.31104393e-03, -2.79767960e-02, -1.13239726e-02, -1.09932870e-01, -3.36216986e-02, 1.95118878e-02, -1.09826691e-01, 5.79891093e-02, 2.57966891e-02, 7.44152963e-02, 1.01363599e-01, 3.84810977e-02, 4.59429920e-02, 8.09225142e-02, 9.96508077e-02, 8.53144750e-02, 8.57193172e-02, 5.31886742e-02, -6.50767516e-03, 6.57965839e-02, -5.44624589e-02, 5.47907874e-02, -8.71566683e-03, 1.31386872e-02, -1.06280044e-01, 7.58078247e-02, 9.44136269e-03, 3.13268490e-02, 1.50318250e-01, -1.23121202e-01, -8.98170918e-02, 6.77019134e-02, -1.23793162e-01, 8.81462730e-03, 8.20046365e-02, 3.57859321e-02, -4.14344110e-02, 7.23673552e-02, 7.51029849e-02, -2.08769310e-02, 6.92676306e-02, 6.44683689e-02, -1.31498694e-01, -7.31655359e-02, -7.76796490e-02, -1.05037309e-01, 3.26373652e-02, 4.32098401e-04, 6.42323121e-02, 6.25396101e-03, -1.18638389e-01, -3.49360742e-02, -1.11576520e-01, 9.27034169e-02, 4.94828112e-02, -3.84035148e-03, -1.25618931e-02, 7.80698881e-02, -3.69675644e-02, -3.06311473e-02, 6.54124245e-02, -1.38902470e-01, 1.78592708e-02, -1.02817386e-01, 5.03469184e-02, 2.81252749e-02, 3.23264301e-02, -1.00675747e-02, -1.23614691e-01, 1.39338346e-02, -4.06536506e-03, 7.96190724e-02, 4.62509170e-02, -1.05047729e-02, -1.16669796e-01, -8.65096673e-02, 1.04218153e-02, -1.16589807e-01, 5.94911017e-02, 1.77525878e-02, 1.06010593e-01, -1.08318716e-01, -7.39926696e-02, -3.21468525e-02, 8.62361491e-03, -1.38520412e-02, 1.21926136e-01, -3.09608392e-02, -5.55637516e-02, 2.05120340e-01, 1.16447471e-01, 2.81480867e-02, -3.39136757e-02, -3.09229251e-02, -6.42856508e-02, -1.10737085e-01, -5.58436438e-02, 1.64507255e-02, 2.21875589e-03, 1.05686724e-01, 2.82443538e-02, -4.62665819e-02, -4.31488790e-02, -3.32883224e-02, 7.54441023e-02, -1.20165460e-01, -1.33259550e-01, -1.10411525e-01, -2.83450149e-02, -1.34907514e-01, 1.34308219e-01, -6.94769174e-02, -1.02402091e-01, -1.13603305e-02, -2.51970123e-02, -2.87760552e-02, 1.21040151e-01, 6.05099741e-03, -1.09214544e-01, -1.14373125e-01, -6.96865469e-02, 3.12527567e-02, 1.01729922e-01, -1.04486905e-01, 4.84091602e-02, 5.40217608e-02, 3.46151367e-02, -7.94994310e-02, 8.16015154e-02, 1.05955325e-01, -9.61813852e-02, 6.78986078e-03, 3.08294892e-02, 1.13020599e-01, -1.55084636e-02, -4.86111268e-02, -1.68734659e-02, -2.49901190e-02, -7.00586513e-02, 6.08120561e-02, 3.47977155e-03, -1.08084038e-01, -5.42784147e-02, -6.03743829e-02, -2.06161495e-02, -1.49995551e-01, -2.76524089e-02, 3.36573012e-02, 3.17966603e-02, 3.14740501e-02, -5.91475107e-02, -9.83131304e-03, 1.10761821e-01, 6.46197200e-02, -4.90294322e-02, 1.11073002e-01, -4.38228548e-02, -1.00466192e-01, -3.63025516e-02, 1.45954311e-01, -4.68861125e-02, 2.80524064e-02, -1.09311171e-01, 3.53920087e-02, -2.71686409e-02, -1.36794850e-01, -2.65051294e-02, -1.28851727e-01, 5.30421436e-02, 2.11525261e-02, 1.93508831e-03, 2.16074344e-02, -1.02773257e-01, -1.18269913e-01, -6.76532742e-03, 4.51074280e-02, -8.81314948e-02, 1.01837821e-01, 1.04777550e-03, -1.23062856e-01, -7.25939125e-02, 4.41881791e-02, -2.13120319e-02, 1.16165742e-01, 1.20564245e-01, 5.99521510e-02, -1.28776049e-02, 3.32735218e-02, 2.18440630e-02, 1.18893441e-02, -1.16735892e-02, -7.25529343e-02, -9.27422717e-02, 6.54505640e-02, 4.82798181e-02, -1.36830494e-01, 2.95604765e-03, -8.72006714e-02, 5.41716516e-02, -9.92845669e-02, 2.07775086e-02, -1.77893303e-02, 1.17113777e-01, 4.91487160e-02, 9.62902755e-02, -5.33190630e-02, -1.04729258e-01, 3.61536210e-03, 1.44051025e-02, 5.28662950e-02, -3.40876095e-02, 2.88445633e-02, -8.64084363e-02, 1.08638145e-01] +constant:[-0.02548523, -0.09796383, 0.03865865, 0.05632564, -0.11568191, -0.11605776, 0.07062579, 0.0359362, 0.01127408, -0.14633842, -0.0104219, -0.04976336, -0.10663625, -0.02907171, 0.05850931, -0.03901975, 0.07253268, 0.04212488, -0.02916503, -0.01904467, 0.12841298, 0.04491638, -0.11877144, -0.10740452, 0.11656532, 0.103239, 0.03904609, -0.10491036, -0.01685475, 0.08125878, -0.05183639, 0.10362166, 0.01483385, 0.08919527, 0.02560062, 0.05566524, 0.08969514, 0.09651974, -0.12180942, 0.06445839, -0.08784453, 0.16565362, 0.01286026, -0.09086431, 0.07420171, -0.03350335, 0.14574766, 0.04459533, 0.00311607, 0.07776489, 0.04328865, -0.00270957, 0.0291153, 0.07091549, 0.0328955, -0.06752695, 0.04539592, 0.11124966, -0.07065682, 0.11910934, 0.06619763, 0.05866095, -0.00645744, -0.09074625, -0.01129841, 0.09213325, 0.1205309, 0.0790339, -0.01371448, -0.12100813, 0.05203715, -0.03691262, -0.0079429, -0.08077218, -0.05397069, 0.08305516, 0.10730979, 0.07489368, 0.06888468, 0.06104615, -0.12764882, -0.11070995, -0.01427196, 0.0477038, -0.12838367, -0.11395323, -0.0398111, -0.08242738, 0.11518086, 0.08842357, -0.08051893, -0.06015769, -0.03718505, 0.0367018, -0.10364176, -0.07596599, -0.02872682, 0.09456442, -0.03277679, -0.04190117, 0.04191469, 0.03160318, -0.00311392, 0.09114904, -0.11688703, 0.13284692, 0.04914544, -0.04336768, -0.07405631, 0.05917038, -0.01818095, 0.00986744, -0.09342047, -0.08111629, 0.11195026, 0.06603303, -0.00371278, 0.01053814, -0.01940287, 0.07077848, 0.13663982, -0.02641273, 0.05662545, -0.13898411, -0.10986144, 0.08022919, -0.02707833, 0.06220035, 0.03181754, 0.07555476, 0.10044712, -0.09943394, -0.10467213, -0.11535719, 0.10664982, 0.12492417, -0.06328414, 0.0058091, 0.04757448, -0.0075033, 0.06324477, -0.04719046, -0.12866123, -0.12937272, -0.00467707, -0.10820528, -0.1042472, -0.06999326, -0.03121926, -0.07602112, -0.16393545, -0.0456091, -0.09531227, 0.02358054, -0.08924855, -0.05081957, 0.06319348, -0.02536061, -0.00876234, -0.04609382, -0.01071392, -0.13894103, 0.0712854, 0.09855269, 0.06378664, -0.06990576, 0.00156115, 0.0546585, 0.08304684, 0.11215331, -0.05588932, -0.11644372, -0.0232773, 0.04228372, 0.04350201, -0.05491601, -0.05390972, -0.05127884, -0.12384945, 0.0174176, 0.03636238, -0.01734249, -0.03440101, -0.06468967, 0.07035536, -0.06059297, -0.12157977, 0.09822674, 0.06071286, -0.07356235, 0.08408824, -0.05985945, -0.08587027, 0.00410672, 0.05644143, -0.03089919, -0.07974147, 0.02585068, 0.11487588, -0.0374009, -0.08175328, -0.01550362, 0.0554319, -0.02367064, -0.06981773, -0.05330928, 0.03103341, 0.00146437, 0.00401901, 0.09755848, -0.11928508, 0.10295699, -0.10628552, 0.02999453, 0.04340562, 0.09554426, -0.08250813, -0.10331322, 0.10151316, -0.0557949, -0.07256401, -0.06381345, 0.08807663, -0.05463967, -0.13113692, -0.04213298, 0.05731477, 0.12333887, 0.05212554, -0.13606137, 0.12980765, -0.04229183, -0.09029683, 0.10246673, -0.01646995, -0.08398901, 0.12042503, 0.02448061, -0.09652866, -0.04021, -0.03438536, -0.08790196, 0.03751694, -0.12596434, -0.1303897, 0.04431691, 0.11558329, -0.0052422, 0.01495108, 0.08897703, 0.11578989, -0.08155154, -0.0669807, 0.13014632, 0.09593934, -0.0869019, 0.03862876, -0.01457432, 0.05398675, -0.01358025, 0.07144351, 0.00416709, -0.07168837, 0.12908788, 0.06166292, -0.04143513, -0.12185021, -0.10686425, -0.06701675, 0.03446487, 0.03610782, -0.10800596, 0.08803282, 0.05241703, -0.03487564, 0.01148953, -0.11601666, 0.09762732, -0.04743225, -0.04712487, -0.00953452, -0.01475034, 0.10144478, 0.11847591, 0.09145529, 0.00834882, 0.06661055, -0.06648998, -0.05226465, -0.12353042, -0.13532054, 0.05048452, 0.1130593, 0.04597214, 0.08614729, 0.11728264, 0.02876284, -0.04298836, -0.03799528, 0.0576851] +extractelement:[-9.20688137e-02, 4.25030431e-03, 1.62468702e-01, -3.51082273e-02, 8.96577686e-02, -7.58383870e-02, 7.15000406e-02, -3.04802749e-02, -9.04730484e-02, 5.15310764e-02, 2.49424437e-03, 1.86435021e-02, -3.83072458e-02, -6.38368279e-02, -1.50823658e-02, -8.55170339e-02, 2.38781460e-02, -6.83952793e-02, 5.30993901e-02, -5.66602759e-02, 6.90990090e-02, -5.91375083e-02, -4.35019098e-02, -3.26575935e-02, -5.18197950e-04, -2.08684713e-01, -1.14086911e-01, -2.69728098e-02, 7.54563510e-02, -1.11085556e-01, 1.37817606e-01, -1.03981784e-02, 8.08239803e-02, -6.05923943e-02, 1.24907710e-01, 1.15443453e-01, -1.10929944e-01, -5.10730594e-03, -8.19435343e-02, 1.36011705e-01, -2.80182939e-02, 8.30503404e-02, -9.12595093e-02, -8.53617415e-02, 3.39602455e-02, -6.40394688e-02, -1.06839761e-01, -6.93201944e-02, 7.76188374e-02, 7.97509849e-02, 4.09465618e-02, 1.07100762e-01, -5.52087538e-02, -3.55357230e-02, -9.02119651e-02, 9.07469019e-02, -1.10542618e-01, 1.11031987e-01, 1.39064044e-01, -6.72004608e-05, 7.29659796e-02, 4.84765158e-04, -1.03291638e-01, 7.95402303e-02, -3.10472064e-02, 6.68023108e-03, -1.79096144e-02, 2.26714835e-02, 9.74937826e-02, 2.89223380e-02, -2.36809291e-02, 6.87792525e-02, -1.09744407e-01, 4.08376381e-02, -8.87594894e-02, -7.31641352e-02, 1.59569439e-02, -1.35723725e-02, -1.14967749e-01, 1.20007463e-01, 3.63932177e-02, -2.13115755e-02, 2.81183980e-02, 1.15564689e-02, -4.42342348e-02, -1.49578182e-02, 6.91092014e-02, 6.34208843e-02, 1.94153208e-02, -7.89030194e-02, -2.84914579e-03, -3.13635245e-02, 4.26141545e-02, -1.43059596e-01, 5.67407534e-02, 1.03729002e-01, 9.37997655e-04, -1.84235955e-03, 1.12343244e-02, 2.43041851e-02, -3.82032320e-02, -3.01258117e-02, 7.85300359e-02, -1.85936272e-01, 1.18472584e-01, 2.28651520e-02, -4.24500704e-02, 1.37359977e-01, -6.47921339e-02, -1.02993473e-01, 1.64673671e-01, 9.35077295e-02, -1.67491883e-02, 8.28233585e-02, -5.90391010e-02, 7.11030960e-02, 7.17508420e-02, -4.04067710e-02, 6.70866817e-02, 3.86005640e-02, -4.43766788e-02, 1.33824155e-01, -6.69067679e-03, -8.99706781e-02, 1.23351060e-01, -1.20450653e-01, 3.03989910e-02, -6.36389805e-03, -1.52845144e-01, -6.52740672e-02, 5.45038134e-02, -2.63036601e-02, -7.14999065e-02, -1.03213049e-01, 3.29904258e-02, 4.56084423e-02, -2.83650551e-02, -4.63212095e-02, 6.48905933e-02, -2.82136407e-02, -1.33517955e-03, -7.18259960e-02, 2.82727983e-02, 1.14561617e-02, -3.83271798e-02, -3.70732718e-03, -6.15809523e-02, 5.10797314e-02, 6.85983375e-02, 8.55980441e-02, -1.03072442e-01, 4.15537693e-02, -3.48642617e-02, 1.11882970e-01, 1.02304360e-02, 4.55051027e-02, -8.78418162e-02, 6.15062378e-03, 1.05358496e-01, 8.34700093e-03, -6.11160696e-02, 4.28854041e-02, 4.61860299e-02, -1.01782056e-02, 1.04990490e-01, 1.03565000e-01, 8.40941593e-02, 1.22282840e-01, -4.62461710e-02, -1.33849069e-01, -1.22720757e-02, 4.26571025e-03, 8.79722834e-02, 8.02778602e-02, -8.72919858e-02, -8.77297372e-02, -1.19898561e-02, 1.09815992e-01, -5.86843267e-02, -4.32264693e-02, 1.07930504e-01, -7.88287222e-02, 1.84669092e-01, 4.79280986e-02, 3.75716649e-02, -5.49287945e-02, -8.49651396e-02, 3.09993699e-02, -6.82925209e-02, -9.91981402e-02, -2.31581014e-02, 2.58701760e-02, -4.07879688e-02, 2.97961123e-02, -4.10492420e-02, -9.92228687e-02, 3.87107730e-02, -2.60630473e-02, 9.29840188e-03, 4.97408472e-02, -8.08564872e-02, 5.95122054e-02, -1.31207496e-01, 1.55103551e-02, -1.39461402e-02, 6.84844516e-03, -5.81383221e-02, 8.43201429e-02, -4.37502041e-02, 7.69594759e-02, -1.77426338e-02, -1.18141890e-01, -1.15596794e-01, -1.31581441e-01, -4.35461430e-03, 3.34122218e-02, -2.34044669e-03, 1.13110263e-02, 4.75233719e-02, -2.60670707e-02, 5.33971228e-02, 2.56354026e-02, 8.80748704e-02, -1.29483491e-01, -3.66257541e-02, 9.69725624e-02, -2.56922785e-02, 1.00218229e-01, -7.25642368e-02, 5.78963198e-02, 9.02088434e-02, -2.79625785e-02, -6.17747679e-02, 8.86811167e-02, 7.35017508e-02, -4.71682288e-02, 5.83392791e-02, -1.27258688e-01, 1.17008477e-01, -8.91588181e-02, -1.12747625e-02, -4.24074642e-05, -2.51322724e-02, 8.43255445e-02, -3.63631882e-02, 3.40218730e-02, 3.47634181e-02, -4.00935076e-02, 6.83867782e-02, -2.36410499e-02, 1.56313218e-02, -1.24083094e-01, 3.76114695e-05, 5.35118505e-02, -1.13511337e-02, -1.58545817e-03, 7.18024233e-03, 7.39776045e-02, 4.92978208e-02, 3.07558514e-02, -6.41576201e-02, -5.35419583e-02, 3.16451043e-02, 9.47022811e-02, 3.86984553e-03, -7.10059628e-02, -2.39870395e-03, -2.88485251e-02, 2.72101816e-02, -1.71251491e-01, -2.85828207e-02, -8.78124610e-02, 7.45574245e-03, -3.12590376e-02, 4.88659889e-02, -8.75354856e-02, 1.14264853e-01, -1.14175700e-01, 4.30087708e-02, -9.95904356e-02, -8.49195644e-02, -3.72073874e-02, 1.24142386e-01, 7.13511705e-02, 2.47205738e-02, -6.91220984e-02, -2.98667175e-04, -7.97365513e-03, -1.01072863e-01, -6.97236434e-02, 8.16067960e-03, 9.52608064e-02, 3.63742299e-02, -1.19519876e-02, -7.19176754e-02, 1.35030644e-02, 4.66384962e-02, -9.28080603e-02, -5.75286746e-02, -7.73119554e-02] +extractvalue:[-7.49169141e-02, 1.01038687e-01, -9.92218927e-02, -6.74741715e-02, -1.52448460e-01, -6.02589846e-02, -1.03531629e-02, 9.73684862e-02, 1.22126408e-01, -5.25754243e-02, -4.84005436e-02, -1.21457778e-01, -1.69689395e-02, -1.26634285e-01, -2.53823046e-02, -5.91366887e-02, -9.46306344e-03, 2.56266184e-02, 5.81342764e-02, 7.42222965e-02, 6.96721151e-02, -3.73819172e-02, -4.83644567e-02, -3.32334898e-02, -1.25228316e-02, 8.97589251e-02, -1.63837951e-02, -3.97155359e-02, -8.68743509e-02, 5.92627935e-03, 1.20388523e-01, 2.92685255e-02, 1.05619043e-01, 2.76132245e-02, 1.22535147e-01, 1.19448438e-01, 1.14223711e-01, 3.52256261e-02, 1.31381691e-01, 6.75257994e-03, -2.93173790e-02, 5.94641119e-02, -7.16359690e-02, -5.44862375e-02, -1.32754166e-02, 7.33286813e-02, -3.38607281e-02, 3.83370440e-04, 3.46821547e-02, -8.75978619e-02, -9.21134185e-03, 1.30487174e-01, 4.56659868e-02, -1.73686109e-02, -4.74910438e-02, 1.08343348e-01, 7.92570412e-02, -8.80380049e-02, 1.06239572e-01, 5.36315516e-02, 5.38693704e-02, -8.32484066e-02, 4.44614179e-02, -8.88621360e-02, -2.30691768e-02, -4.30618264e-02, -1.52031705e-02, 1.36710241e-01, 7.53513798e-02, -1.37456199e-02, -1.44787386e-01, 1.50824673e-02, 5.12380078e-02, 7.91138783e-02, 9.08139274e-02, -1.45597860e-01, 5.63562661e-02, -1.53390113e-02, -3.38176936e-02, -4.38214540e-02, 2.23334339e-02, 2.98509896e-02, 1.13902681e-01, 1.20510124e-01, 1.24925887e-03, -7.83544406e-03, 9.76462513e-02, 3.82185448e-03, -4.16086279e-02, -6.39223158e-02, 4.30098213e-02, 1.51450317e-02, -2.72252169e-02, -1.30365461e-01, 3.13627198e-02, 1.11797705e-01, 8.49983189e-03, 8.88544228e-03, -8.18984061e-02, -7.30713680e-02, -6.03135629e-03, -4.08659354e-02, 9.31124538e-02, -1.04422532e-01, -1.17299855e-02, 5.98203624e-03, -5.51870652e-02, 6.84021413e-02, -5.13937660e-02, 1.46435469e-01, 1.02761403e-01, 8.42526853e-02, 1.17323555e-01, 6.20498732e-02, -1.27782747e-01, 1.19586155e-01, -1.47188246e-01, -1.04469314e-01, 1.35350926e-02, -4.69907112e-02, 5.86250275e-02, -5.04550487e-02, 3.73361073e-02, 4.30625826e-02, -5.24890274e-02, -1.08702213e-01, 4.42177840e-02, 8.97560343e-02, -3.16432789e-02, -4.52868603e-02, 6.17516376e-02, -9.63212177e-03, -6.96905255e-02, -7.99914300e-02, 4.86426763e-02, 3.53284217e-02, -3.25986892e-02, 2.08535697e-02, 9.23287272e-02, 7.21468627e-02, 6.65763989e-02, -1.16239309e-01, 3.40380110e-02, 4.12784377e-03, -5.02242930e-02, -4.77434918e-02, -5.15103266e-02, -2.97534727e-02, 4.52581234e-02, 4.08911481e-02, -2.09864639e-02, -1.12637013e-01, 1.23663910e-01, -6.71628455e-04, 5.47819259e-03, 6.92813173e-02, 1.84321944e-02, -7.05491975e-02, -7.44832233e-02, 5.13030067e-02, -7.48017505e-02, 6.14782460e-02, -5.11717759e-02, -8.38637426e-02, -2.97406819e-02, 9.02844369e-02, 1.85285937e-02, 8.99347737e-02, -1.31737351e-01, -1.15952268e-01, 1.04479663e-01, -4.08287048e-02, 3.39886472e-02, -2.30573475e-01, -5.96815906e-02, -1.06042854e-01, 9.60560963e-02, 4.44671065e-02, -6.06493428e-02, 1.76402554e-01, 1.16047293e-01, 7.32979551e-02, -1.41986519e-01, 1.63946468e-02, -6.64267167e-02, -5.12342490e-02, 5.20578586e-02, -6.44585937e-02, -6.87361881e-02, 2.83103529e-02, 5.21933809e-02, 1.62672419e-02, -1.82765163e-02, -2.96632238e-02, 1.44605860e-02, -6.42592460e-02, -4.80617620e-02, -6.93509057e-02, -1.08625613e-01, -7.73118213e-02, -1.49600476e-01, 1.31656572e-01, 8.05404335e-02, -2.85022762e-02, 1.14728482e-02, 7.99089149e-02, -1.85474735e-02, 8.41204450e-02, -4.35798205e-02, 5.11343107e-02, 1.04576372e-01, 4.46868166e-02, -6.13782108e-02, -1.02175353e-02, 7.16490671e-02, -5.89489192e-02, -4.87483433e-03, 9.79420543e-03, -1.26641750e-01, -7.93999881e-02, 6.98409155e-02, 6.57734417e-05, 3.52901034e-02, 7.13729039e-02, -4.28807996e-02, 2.23344192e-02, 1.06637582e-01, 4.85159121e-02, 2.13255584e-02, 1.35222375e-01, 7.83185214e-02, -2.69612242e-02, 9.67980921e-02, -9.55581143e-02, -1.20759830e-01, 7.78707489e-03, 6.31406754e-02, -1.18954048e-01, 1.29844412e-01, 4.73091900e-02, 7.51691451e-03, 4.56734970e-02, -3.30411457e-02, -7.69682005e-02, -4.55600210e-02, 4.23127487e-02, -4.55382094e-02, -1.69438608e-02, -7.75550380e-02, 3.47586460e-02, 2.19807215e-02, -9.46957245e-02, 4.84408904e-03, 3.97545695e-02, 2.68394756e-03, -1.87800098e-02, -1.61293164e-01, 6.08439520e-02, 1.29028901e-01, 8.51481929e-02, -1.19541727e-01, -9.35452059e-02, -3.41388909e-03, 9.39378515e-02, 1.46167636e-01, 3.81894149e-02, 6.68359995e-02, 1.97217390e-02, 6.20895289e-02, 1.67359829e-01, -4.58320156e-02, -2.08150242e-02, 4.35368717e-02, -8.44355226e-02, 3.73232514e-02, -8.16532373e-02, 1.42380333e-04, -5.87631054e-02, 4.04561721e-02, 3.24561372e-02, 2.43710298e-02, 9.37974080e-02, -1.17987551e-01, 5.77321500e-02, -1.12637773e-01, -1.98265389e-02, -5.29612228e-03, -1.02535412e-02, 4.07219492e-02, 2.06686147e-02, 4.04821336e-02, 1.04463175e-01, -1.20970868e-01, -3.61631699e-02, -7.69787803e-02, 5.38358986e-02, 1.17871784e-01, -6.21469803e-02, 3.25916111e-02, -2.69337767e-03] +fadd:[-0.08909763, 0.02005762, 0.05077001, -0.02652089, 0.00660622, -0.082649, -0.09821944, -0.1605171, -0.09806129, -0.02382003, -0.04147702, 0.09419095, -0.04320186, 0.07830828, 0.02942901, 0.0415747, -0.01657447, -0.08350278, 0.05704548, -0.00676612, 0.07643046, -0.09121826, -0.04614821, -0.01633444, 0.00697872, 0.18529515, -0.02125018, -0.03718398, -0.08587442, 0.0086453, -0.01705768, 0.02964044, 0.10535992, -0.02470987, 0.12301597, 0.11670349, -0.11724972, 0.00854879, 0.05768794, -0.01760799, -0.02838707, 0.08363336, -0.06481392, -0.06449018, 0.01999055, 0.06944665, 0.06983504, -0.07569849, 0.07826559, -0.01288548, -0.07749486, 0.08938994, -0.05478383, -0.01812059, -0.06669772, 0.07310076, 0.0774756, 0.03958225, 0.14759979, -0.03296613, 0.07350382, -0.03282151, -0.00428722, 0.02381659, -0.08865185, -0.1371909, -0.02877942, 0.04313041, 0.09800525, 0.02196656, -0.04325179, -0.07758901, -0.11639665, 0.0348934, -0.14051966, -0.13993908, -0.04779672, -0.01537686, 0.05175143, 0.00610939, 0.02798716, 0.01584172, 0.08253112, 0.01428355, -0.06544505, 0.06224424, -0.0493377, 0.05327586, -0.00728717, -0.05339717, -0.00774274, -0.10559116, -0.10441311, -0.16641276, 0.01260792, 0.09749645, -0.05371183, 0.00951724, 0.10139894, 0.023751, -0.03784986, -0.04045502, 0.08974937, -0.10198832, 0.01984341, -0.00308189, 0.03392471, 0.02179678, -0.00815972, 0.01012356, 0.09894974, 0.13264665, 0.10123641, 0.06260619, -0.16162786, 0.10443952, -0.1079428, -0.04541621, 0.04797133, -0.00112563, 0.05800252, 0.08396745, 0.13902031, -0.09013261, -0.06133249, -0.07847052, 0.03268551, -0.01527829, -0.11487959, -0.0941525, 0.03041118, -0.02560828, -0.07234646, -0.10594623, 0.00021457, -0.01769215, -0.11581784, 0.01878576, 0.11052924, -0.0222981, 0.0224737, 0.01115785, 0.03735691, -0.05781346, -0.02566717, -0.0093097, -0.02247832, 0.03308658, 0.06649872, 0.01017943, -0.10314022, 0.01585551, 0.12616654, 0.11023654, -0.01935151, -0.06490594, -0.08752701, -0.06172097, -0.07846107, 0.06903787, -0.14310242, 0.04413204, -0.07122654, -0.09260114, 0.07630645, 0.1194278, -0.04733499, 0.11760153, 0.04659164, 0.05690323, 0.02354984, 0.01381125, 0.05529725, 0.00861755, 0.08077879, -0.0380413, -0.0245686, 0.0522407, -0.05860634, 0.08977254, 0.1261329, 0.08531495, -0.12084133, 0.01571872, 0.0520361, -0.05851517, 0.03416857, 0.02587227, -0.10494617, 0.001576, -0.00036386, 0.0227403, 0.03944479, -0.04334905, -0.03037314, -0.06344061, -0.00868875, -0.06641909, 0.04406378, -0.0803607, -0.14159565, 0.03318393, -0.12997392, 0.1349725, 0.02828933, 0.07272458, -0.05733155, -0.08279847, -0.04383537, 0.06884558, 0.08949276, 0.1309531, -0.05368073, -0.13464502, -0.0407398, -0.08595555, 0.01051646, 0.09758402, 0.03246697, 0.00631883, 0.06581299, 0.11872153, -0.10320197, -0.08341462, -0.03131834, 0.02155214, -0.00293295, 0.09217502, 0.02184672, 0.13059612, 0.0770539, -0.00066007, -0.03840907, -0.039567, 0.03442058, 0.00188444, 0.06275445, -0.12527083, -0.03011004, 0.04639184, 0.13878295, 0.04649243, -0.03184849, 0.0786656, -0.04540487, 0.0575432, -0.1245978, -0.00229947, 0.06910536, 0.04646021, 0.02200223, -0.03042146, -0.10790824, 0.03040086, -0.03709537, -0.00300177, -0.02225126, 0.07197315, 0.09076335, -0.06517006, 0.01770608, 0.03998498, -0.00393277, 0.08715144, 0.14050218, 0.00683783, 0.03328232, 0.08142309, -0.04967654, -0.10011604, -0.04915596, -0.1002379, 0.01999924, -0.02969904, -0.05657441, -0.07476605, -0.05333434, -0.0013959, 0.04074947, -0.10180982, -0.1677101, 0.12549302, 0.03059659, 0.0729744, -0.09708998, 0.05416638, -0.0037986, -0.01076765, -0.12278353, -0.07725897, 0.02436248, -0.05441748, 0.04523338, -0.04535306, -0.08732548, 0.0205114, -0.04835857, -0.09731523, 0.1032427, -0.00148961] +fcmp:[-9.69061404e-02, 7.39270300e-02, -3.60425971e-02, -2.90279090e-02, 4.21841219e-02, -6.24628402e-02, -1.63502945e-03, -3.53090130e-02, -8.50408599e-02, -5.75739481e-02, -6.16140757e-03, 6.08071079e-03, -4.93698232e-02, -1.33429110e-01, 2.54805181e-02, 1.00436509e-01, -4.73127031e-04, -6.85264543e-02, 5.83516844e-02, -6.62357584e-02, 7.58204386e-02, -2.96214707e-02, 3.85477766e-02, -3.48724537e-02, -4.79898192e-02, -3.45686711e-02, -1.15631990e-01, 1.75604504e-02, -8.16648081e-02, -8.50024000e-02, -1.46328268e-04, 1.11611374e-02, 1.08310305e-01, 6.65151561e-03, 1.30430773e-01, 1.21273741e-01, 5.59455380e-02, 9.93929617e-03, 1.06805719e-01, -2.07576603e-02, -3.44566368e-02, 8.63991156e-02, -8.55121538e-02, -5.80419675e-02, -1.07862785e-01, -7.26920143e-02, -6.30927533e-02, -9.39631686e-02, -4.33228984e-02, 3.22657079e-02, -3.82193476e-02, 1.13931306e-01, -5.78764454e-02, -4.50503193e-02, -7.02999532e-02, 8.00427645e-02, -9.60043743e-02, 9.79791954e-02, 1.46214753e-01, 1.24926288e-02, 1.25965923e-01, 1.42007396e-01, 2.63980241e-03, 1.35114044e-02, -1.03331476e-01, -1.10801980e-01, -2.93915328e-02, 1.00321453e-02, -1.03562847e-01, 4.49925661e-03, -8.85891095e-02, 7.64940158e-02, -1.22873060e-01, -9.03472211e-03, -1.32726967e-01, -1.29110605e-01, -8.98215100e-02, -1.52576799e-02, -7.96435103e-02, -2.88080517e-02, -5.77411316e-02, -2.22599208e-02, -1.50889754e-01, 1.11465864e-01, -5.22177182e-02, -1.28325000e-02, -7.67656416e-02, 6.70093223e-02, 1.94952153e-02, -1.05314925e-01, -6.18579425e-03, -4.81981300e-02, 6.27372488e-02, -9.53568518e-02, -9.34909806e-02, -1.11911464e-02, 1.09056920e-01, 8.94656498e-03, 4.39707264e-02, 3.38599198e-02, -8.07643160e-02, -3.34255993e-02, 8.11570138e-02, 2.77738832e-02, 8.16434696e-02, 5.26044890e-02, -1.07864648e-01, 4.88854200e-02, -3.68120074e-02, 3.03885061e-02, 6.72174394e-02, 1.31097540e-01, 9.88164246e-02, 5.59200831e-02, -2.32061092e-02, 1.13332141e-02, -8.63752738e-02, -6.05085008e-02, 2.78201383e-02, 3.58002931e-02, 5.31382672e-02, 9.61283147e-02, -1.30872279e-01, -1.03410780e-01, 1.08187579e-01, -1.09111406e-01, -4.04405482e-02, -2.82965694e-02, -1.64409634e-02, 1.21262111e-01, 6.38167784e-02, -2.68915948e-02, -7.26255998e-02, -8.10712427e-02, 3.78361605e-02, 4.21473719e-02, 1.18778995e-03, 1.44308927e-02, 1.11274123e-01, 1.45503180e-03, -2.21181825e-01, -5.26583418e-02, 4.51059733e-03, -6.28152350e-03, -3.12569439e-02, -1.59195885e-02, -5.02285771e-02, 3.79891992e-02, 7.69890919e-02, 4.50197086e-02, -6.00738637e-02, 3.03859208e-02, 1.30219430e-01, 1.15632676e-01, 3.68989557e-02, -1.19324900e-01, -3.90337482e-02, -7.36031011e-02, -7.47023597e-02, 8.80885422e-02, -1.47747308e-01, 6.23987168e-02, -7.14666098e-02, -7.43472353e-02, 8.75598565e-02, 1.22684896e-01, -2.71835756e-02, 1.19735003e-01, -1.24947339e-01, 1.19102873e-01, 6.94421008e-02, 1.34613574e-03, 6.70456141e-02, 9.48319286e-02, 8.61842111e-02, -1.31158769e-01, -9.42286402e-02, 1.27797902e-01, -6.23881631e-02, -3.50348838e-02, -2.04997379e-02, 6.08138554e-02, -1.73778124e-02, 1.73802041e-02, 1.61686223e-02, 4.49370481e-02, -1.15972474e-01, -3.89758348e-02, -9.58556216e-03, 2.66427118e-02, -8.00420418e-02, 1.99492928e-02, -2.13613734e-02, -4.40171733e-02, 3.42463143e-02, -6.56248108e-02, 2.20999103e-02, -6.90528229e-02, 5.09179272e-02, 4.27421322e-03, -1.44207090e-01, 5.49843013e-02, -1.35169804e-01, -1.09299108e-01, 2.32634097e-02, 1.05342291e-01, -5.97673431e-02, -4.34490815e-02, -4.69100624e-02, 9.61906165e-02, 4.24059778e-02, -1.18076369e-01, -1.25400797e-01, -1.50390580e-01, 7.75682703e-02, -5.93219586e-02, -4.96634562e-03, -6.32092953e-02, 5.91342896e-02, -5.95480204e-02, 7.01382011e-02, -8.00541192e-02, 7.06121475e-02, 2.87829954e-02, -4.20050919e-02, 1.92530788e-02, 1.41656220e-01, 1.12827152e-01, 1.17449081e-02, 1.34739697e-01, 9.60914791e-02, 2.02979352e-02, 1.51858807e-01, -5.65198921e-02, -1.43712172e-02, -7.60949925e-02, 1.23825274e-01, -1.31562278e-01, 2.46286727e-02, 4.79628593e-02, -8.18983093e-02, 1.73761174e-02, 4.51732464e-02, 6.82774410e-02, -4.34791893e-02, 8.60880781e-03, -4.43281606e-02, -3.07239592e-02, -2.07971837e-02, 3.51011418e-02, 2.14164574e-02, -1.02441765e-01, -1.14332944e-01, 4.17766487e-03, -5.29951639e-02, -2.80239340e-02, -5.86430021e-02, 7.55943209e-02, -8.58204141e-02, 8.49842727e-02, -3.87349799e-02, -3.47753614e-02, 1.52904866e-02, 9.52949002e-02, 1.29565507e-01, 3.66983600e-02, -2.54120259e-03, -3.24972011e-02, 4.83485796e-02, -5.59598915e-02, -3.76044214e-02, -6.22593202e-02, -8.94042179e-02, -3.18723321e-02, 5.25912046e-02, -8.34987834e-02, 8.10206234e-02, -1.64550338e-02, 4.24997211e-02, -7.95375407e-02, -9.48951840e-02, -1.32939890e-01, -9.58260596e-02, 9.37406197e-02, -8.14367160e-02, -1.65073425e-02, -8.53164587e-03, 1.73537526e-02, -1.20447196e-01, -1.58188790e-01, 7.14612752e-02, 1.11009888e-01, 4.18835059e-02, 1.03017250e-02, -7.06488565e-02, 1.19897714e-02, -6.28159046e-02, -9.50652808e-02, 2.18604524e-02, -1.22168371e-02] +fdiv:[-9.08233151e-02, 5.77498414e-02, 3.43208015e-02, -1.46717336e-02, 1.13314897e-01, -1.16804220e-01, 9.41969976e-02, -1.47179931e-01, -5.88329919e-02, -4.71567363e-03, -4.98235077e-02, -5.10943830e-02, -4.61904444e-02, -1.28461495e-01, 3.30950469e-02, 3.78963314e-02, -4.55650454e-03, 2.87616067e-02, -2.08403692e-02, -7.02433661e-02, 7.39880428e-02, 1.48913974e-03, -4.61418331e-02, -1.66480336e-02, 3.68817560e-02, -6.88579977e-02, -1.20812565e-01, 1.77539289e-02, 7.68334270e-02, -7.28066415e-02, 5.58319725e-02, -6.07178956e-02, 1.05142884e-01, -8.04860517e-02, 1.24472536e-01, 1.18090175e-01, -5.00506610e-02, 8.67961161e-03, 6.04779944e-02, -1.42790256e-02, -3.36687975e-02, 8.45252201e-02, -8.12634900e-02, 4.58668917e-02, 1.12971216e-02, 7.18853772e-02, 7.40817040e-02, -6.91701751e-03, 1.15424162e-03, -4.86057326e-02, 6.45633712e-02, 1.13134272e-01, -5.49282730e-02, -9.66960788e-02, -5.19394800e-02, 3.35274567e-03, 1.46279316e-02, 7.67795071e-02, 1.51522890e-01, 1.01195522e-01, 6.83337301e-02, -2.61149406e-02, 4.16215956e-02, -2.25321297e-02, 4.22202796e-02, 1.70446467e-02, 4.90959510e-02, -6.08032942e-02, 1.01415105e-01, 2.80869454e-02, -3.49197537e-02, 1.19254865e-01, -1.18689060e-01, 6.23382516e-02, -9.31404680e-02, -1.41550824e-01, -7.17296004e-02, -1.49576114e-02, -5.31975031e-02, 6.61613643e-02, 4.77221981e-02, -2.28971411e-02, 6.28652796e-02, 1.05002210e-01, -5.08616120e-02, -2.02305838e-02, -7.61963353e-02, 1.06059927e-02, 2.23469771e-02, 1.35849863e-02, -8.15069675e-03, -7.44176004e-03, 7.19393194e-02, -1.54336132e-02, -6.59321547e-02, 5.76192979e-04, -5.28915152e-02, 1.06490552e-02, -7.82413408e-02, 2.01344155e-02, -3.21333371e-02, -3.15190516e-02, -6.03940785e-02, 7.54304901e-02, 8.76196660e-03, 5.16665168e-02, -7.65295839e-03, 4.20330726e-02, 6.87786192e-02, 8.66915286e-02, 9.94182155e-02, 1.27097696e-01, 1.15877613e-01, 5.51141761e-02, -1.61915943e-01, 1.05221942e-01, -1.25682771e-01, -5.15334159e-02, -4.64951023e-02, 6.87001972e-03, 5.37172519e-02, 8.14809129e-02, -6.43089041e-02, -9.81966406e-02, 1.28709182e-01, -1.11085869e-01, 2.80425008e-02, -3.42263561e-03, 1.68833897e-01, 1.59159184e-01, 1.48430273e-01, 3.68131064e-02, -7.21397549e-02, -7.04080015e-02, -8.30528215e-02, 3.71010751e-02, -1.29987836e-01, -2.77965851e-02, 1.12645321e-01, -2.69763973e-02, -9.01819915e-02, 2.34542787e-02, 9.02199447e-02, 7.42621645e-02, -8.57148669e-04, -8.00119620e-03, -5.13283685e-02, -1.02918506e-01, 6.50063083e-02, 4.66096215e-03, -1.03945673e-01, 2.25913208e-02, 1.09174430e-01, 1.11378044e-01, -3.10618281e-02, 5.35511039e-02, -8.83695334e-02, -9.95290205e-02, -7.95817226e-02, -8.37807804e-02, -7.91402981e-02, 3.84375229e-02, -4.42348272e-02, -6.78168386e-02, 1.54411821e-02, 1.19815908e-01, -2.80720871e-02, -2.19927728e-02, -3.12668346e-02, 4.95231040e-02, 1.73177183e-01, 2.13606004e-02, 3.97985280e-02, -2.13864874e-02, -9.88687500e-02, -1.52447764e-02, -1.86699964e-02, -1.17023364e-01, -5.92393540e-02, 2.99375765e-02, 1.42900497e-01, 8.73205513e-02, -7.33477622e-02, 1.77504309e-02, -1.22558214e-02, 3.18164192e-03, -3.46949957e-02, 1.06485644e-02, 7.21696839e-02, -4.75716079e-03, -1.13585638e-02, 1.97896343e-02, 6.20167702e-02, 1.70102585e-02, -3.23085226e-02, 2.67450958e-02, 1.23001248e-01, -6.72094673e-02, -4.83367592e-02, 1.43470988e-01, -1.46646738e-01, 6.36641830e-02, -1.31624520e-01, 1.30805418e-01, 2.91399099e-02, -8.38106498e-03, -5.81651255e-02, 1.46296192e-02, -8.86387825e-02, 1.05186865e-01, 2.35006362e-02, -1.01761781e-01, -1.26650259e-01, -1.21359766e-01, 4.62529026e-02, -4.54526581e-03, -4.50890278e-03, 6.98010623e-02, -6.96527809e-02, -3.57869044e-02, 6.76912740e-02, -7.50987651e-03, -1.02551073e-01, 6.77929297e-02, -4.17160466e-02, -1.09001525e-01, 9.70257744e-02, 9.45567414e-02, 2.38927063e-02, 1.33350804e-01, 7.76427165e-02, -6.18324149e-03, -7.81856775e-02, 3.54747735e-02, -1.15135320e-01, -5.87588083e-03, 6.01142198e-02, -1.25798911e-01, -3.86295319e-02, 4.69371974e-02, -4.63504642e-02, 4.46492024e-02, -3.13958004e-02, 7.64227659e-02, -4.15202901e-02, -6.25063898e-03, -1.12478055e-01, -3.84668708e-02, 2.56016571e-02, -6.72014756e-03, 2.14721896e-02, -7.62739731e-03, -1.06887020e-01, 2.97375023e-02, -3.62360626e-02, -1.15944073e-01, -3.85976620e-02, 7.27976486e-02, 1.32498574e-02, 8.63994136e-02, -1.17379718e-01, -1.11459903e-01, -2.25705421e-03, 9.85610932e-02, 1.42389193e-01, -7.51585066e-02, 1.86334196e-02, -2.85982974e-02, -9.61163267e-03, 2.74059400e-02, -4.98303846e-02, -1.09902442e-01, 6.53702319e-02, -1.01662323e-01, 5.40986136e-02, -9.25518498e-02, -4.03312184e-02, 5.66055030e-02, 4.43564504e-02, -8.23964272e-03, 4.10539545e-02, -9.55306292e-02, -7.09394142e-02, 9.15408060e-02, 1.36499442e-02, 1.90343931e-02, -5.30534926e-05, -1.11408077e-01, -7.09476024e-02, -2.52379887e-02, 1.75308585e-02, 3.43939215e-02, 4.90768179e-02, -4.79403473e-02, -6.37709424e-02, 1.43301636e-02, 1.09680898e-01, -4.60903496e-02, -1.02943256e-01, -7.28668319e-03] +fence:[-1.09983653e-01, -6.67085424e-02, -1.21512795e-02, 1.22093536e-01, 6.86444715e-02, 2.81444155e-02, -9.71730519e-03, 4.58188988e-02, -3.23657994e-03, -8.59291479e-03, -5.65562174e-02, -6.94266930e-02, 1.00951955e-01, -1.56378783e-02, 4.22405601e-02, 2.13276725e-02, -9.01568122e-03, 8.03376511e-02, -1.13944642e-01, 9.42900255e-02, 9.38558355e-02, -8.59211311e-02, -2.21189614e-02, -8.66450518e-02, 4.99382764e-02, -3.63720837e-03, 5.59866205e-02, 5.66938566e-03, -8.11752975e-02, -7.19093159e-02, -3.49643698e-04, 1.23929091e-01, -2.44610198e-02, 2.24345718e-02, -3.19900215e-02, -6.63500875e-02, 5.90412654e-02, 5.19109555e-02, -6.98647797e-02, -2.70618834e-02, 1.13034546e-01, -1.06418297e-01, 7.46146739e-02, -1.06132947e-01, 5.13240360e-02, -1.15253935e-02, -2.85096210e-03, -1.12028874e-01, 6.91978112e-02, -3.88038121e-02, -2.98461784e-02, 7.07710683e-02, -1.02603182e-01, -5.28269447e-02, 1.13431402e-01, -1.32803336e-01, 5.57018444e-02, 4.03513461e-02, -1.53124249e-02, 3.83406132e-02, -7.63770267e-02, 3.98085192e-02, 2.36585904e-02, 5.40091135e-02, -5.93132898e-02, -2.65326947e-02, -1.34512112e-02, -6.75376058e-02, -5.34741096e-02, 1.59277394e-02, -1.79751068e-02, 1.48153976e-02, -1.29934013e-01, 6.54759035e-02, 1.22945890e-01, 5.20918099e-03, 9.26171802e-03, -4.25588004e-02, -2.77796052e-02, 2.36327630e-02, 1.03689127e-01, -1.08082881e-02, -7.08379745e-02, 8.70800018e-02, -4.76794355e-02, -2.14640163e-02, -2.99687013e-02, 8.73662904e-03, -2.83428282e-02, -7.52640218e-02, -1.88439079e-02, 7.21559301e-02, -1.05858214e-01, 1.43310100e-01, 2.74264049e-02, 8.66215602e-02, 7.37198591e-02, 6.91504553e-02, -1.31729007e-01, -1.03922695e-01, -1.88974626e-02, -1.19400844e-01, 7.95325488e-02, 6.62979577e-03, 3.60887460e-02, -6.15261383e-02, 9.40179005e-02, -9.59598944e-02, 7.98240602e-02, 1.69627041e-01, -1.02713987e-01, 9.26201716e-02, -2.76486222e-02, -4.68850741e-03, -3.71994674e-02, -1.10843154e-02, -8.15362930e-02, 1.07336350e-01, 9.60474485e-04, -9.70934704e-02, 3.18267606e-02, -7.56220743e-02, -3.97819541e-02, -6.51678815e-02, 3.20329107e-02, -1.24326773e-01, 7.42148235e-02, 7.55945519e-02, 2.50410419e-02, -2.60334071e-02, 3.97676118e-02, -9.23144817e-02, 9.94376019e-02, 3.79800685e-02, 3.84470336e-02, 6.33476488e-03, -1.24028221e-01, -2.27732062e-02, -9.96007994e-02, 7.78018087e-02, 1.22927941e-01, 3.10357623e-02, -1.05220797e-02, 4.18427736e-02, 8.86890739e-02, 6.09663911e-02, -2.19871830e-02, -1.30082667e-01, -1.00379038e-04, 4.62117270e-02, 1.11444339e-01, 2.80099791e-02, 5.79476990e-02, 4.49705534e-02, -8.73060431e-03, -1.53494449e-02, 1.26143709e-01, 3.42698619e-02, 4.00703251e-02, 5.27807511e-02, -7.27095380e-02, -8.09833854e-02, -9.92160439e-02, -1.13247842e-01, 7.55739883e-02, 3.14939618e-02, 5.61693385e-02, -5.43311015e-02, 4.72016856e-02, -7.91874453e-02, -2.05511395e-02, -3.18451002e-02, 1.02561869e-01, 4.14384231e-02, 1.10315830e-01, -2.46160361e-03, 1.30268753e-01, 3.58492583e-02, 9.75516215e-02, 3.21257045e-03, -3.53184193e-02, -1.05375700e-01, 5.37308864e-02, 1.28863472e-02, -4.49389555e-02, -9.72321257e-02, 3.57160829e-02, -8.75040889e-02, 4.81489748e-02, -1.23685159e-01, 8.89945105e-02, 1.15511082e-01, -1.01938881e-01, -1.14936166e-01, 1.26342773e-01, -1.22399367e-01, 3.99245843e-02, -6.56090900e-02, -1.13186732e-01, -1.33673446e-02, 2.31348281e-03, 4.90398984e-03, 1.14236265e-01, 1.21230505e-01, -4.14036699e-02, 2.48195659e-02, 9.31159034e-02, 9.00268089e-03, -4.47900258e-02, -1.56590287e-02, -4.38997149e-02, 5.23952357e-02, 4.18820754e-02, -1.16863344e-02, -5.92371523e-02, 2.88787130e-02, -5.61947329e-03, -1.04020946e-02, 6.17125491e-03, 1.04891971e-01, 6.47534430e-02, 3.01140025e-02, -4.65496220e-02, -4.23223153e-02, -4.66546342e-02, -1.08088471e-01, 7.79328053e-04, -9.95259080e-03, 9.58888307e-02, -8.89120996e-02, 5.04980888e-03, 1.27580343e-02, 8.66908729e-02, -1.28558958e-02, -1.31089836e-02, 1.01641171e-01, -7.80441537e-02, 9.56847593e-02, 1.19649403e-01, 7.60537833e-02, -4.27622173e-04, -4.44404893e-02, -8.39398336e-03, -8.53065327e-02, -5.20037189e-02, 9.05950889e-02, 7.87222832e-02, -4.37481189e-03, 9.25291702e-02, -1.00247756e-01, 6.23079315e-02, -2.67296750e-02, -8.40725303e-02, -6.43531308e-02, 2.40316950e-02, 8.47895443e-02, 8.87437984e-02, 9.36203524e-02, -1.01542167e-01, -1.13020264e-01, 1.24857329e-01, 1.03150092e-01, 1.13763362e-01, -5.38891703e-02, -1.11128576e-01, 8.53470638e-02, 5.01051173e-02, 4.63287299e-03, 3.64029929e-02, 1.53737133e-02, 1.02477968e-01, 4.83435616e-02, 3.65394056e-02, 1.41713135e-02, 2.11404823e-02, 1.18572004e-02, 3.69924568e-02, 6.20975345e-02, -1.08412646e-01, 4.65271287e-02, -6.21488877e-02, -4.22780737e-02, -1.03059389e-01, -1.46522254e-01, 5.63028734e-03, -8.42652544e-02, 3.35540250e-02, 4.24857205e-03, 1.12640440e-01, 2.73548681e-02, 1.07362695e-01, -7.01344833e-02, 7.46100843e-02, 9.48456451e-02, 5.87837696e-02, -1.25240609e-01, -5.06587215e-02, 1.08956389e-01, 8.75613242e-02, 5.92911392e-02] +floatTy:[0.06337944, 0.10215556, -0.0014874, -0.09895988, 0.11549123, -0.06646009, 0.02904767, 0.04075907, 0.01986496, 0.07817274, 0.04168646, -0.06384226, 0.04729296, 0.06290343, 0.06655053, 0.00822862, 0.09636094, 0.08669265, -0.09001675, -0.11781675, -0.07461568, 0.06260824, -0.09321942, 0.11581486, -0.1023282, -0.00735596, 0.09821028, 0.07982436, -0.1105621, -0.03709594, 0.02341871, -0.08050277, -0.01419673, -0.14523454, -0.03270061, -0.04574671, -0.06851503, -0.11730342, -0.03084842, 0.04991578, -0.10487019, -0.06580725, 0.07863318, 0.10265455, -0.08969045, -0.0167009, 0.02528914, -0.06125797, -0.10652121, -0.02515366, 0.01028168, -0.09132483, 0.1209403, 0.07104185, 0.02925441, 0.10083904, -0.02910935, -0.0006844, -0.05580362, -0.09563545, 0.01558957, -0.07374504, 0.14314257, -0.01060042, -0.04522844, -0.10700175, 0.02635617, -0.00961415, 0.00347815, -0.03480938, -0.04531138, 0.04913728, -0.01566189, -0.08581977, -0.11595474, -0.04152073, 0.0820996, 0.06002477, 0.02118974, 0.01204788, 0.12325934, 0.10072815, 0.00986247, -0.08737788, 0.06881296, -0.08649372, 0.00400395, 0.06843355, -0.11046688, 0.0441643, 0.09964915, 0.0744064, 0.11612208, 0.01150502, 0.00317107, -0.07007673, 0.03038665, -0.08219782, -0.00360591, 0.01398094, 0.08489794, -0.07532677, 0.10391764, -0.01129, -0.00803364, -0.06899958, 0.01056284, -0.0405903, -0.02333048, 0.03672012, 0.01180753, 0.01624803, -0.0740749, -0.06529077, -0.09404736, 0.05084549, -0.10510533, 0.08941682, -0.01402426, -0.04957973, -0.06586345, -0.12034213, 0.02408371, 0.09009189, -0.06733495, 0.03721322, 0.05621608, -0.11662543, 0.0195651, -0.11057589, -0.06070511, 0.09711265, 0.08085974, 0.09744015, -0.11125942, -0.10585039, -0.04891122, -0.08361602, -0.05688554, -0.13464862, 0.02540003, -0.03598709, 0.08054005, 0.06707399, -0.06741704, 0.10323976, -0.10184018, 0.1210136, -0.08725739, 0.00063613, -0.04721852, -0.03869876, -0.025005, -0.07106545, 0.1021643, 0.02522491, -0.02239274, -0.10253481, -0.08321477, -0.00121622, 0.09523294, 0.10789081, 0.00561999, 0.08995093, -0.07382733, -0.05706242, -0.12010472, 0.05730646, 0.06219097, -0.01111027, 0.03272524, 0.07198995, -0.08313367, 0.01132201, -0.01688492, -0.07604507, -0.00427831, -0.01993085, 0.06089623, -0.03918174, 0.05251008, 0.00263893, -0.00608366, -0.09638102, -0.0133573, 0.09618761, 0.11329314, -0.08417151, -0.04925214, 0.07449233, -0.112202, -0.04352337, 0.10699961, 0.01236931, -0.08851162, 0.0885683, -0.05008854, 0.10070414, -0.03255844, 0.13332424, -0.07700963, 0.0106825, -0.12690265, 0.02308322, -0.0550647, 0.05835772, 0.0794829, -0.00182743, 0.05063422, -0.07545082, 0.09186698, -0.06696125, -0.04219575, 0.05195853, 0.09475742, -0.06385184, 0.11998247, -0.00867386, -0.00548783, 0.08019941, 0.11484435, 0.08556244, -0.09376386, -0.00589594, 0.10360542, -0.08133113, -0.01098113, -0.0739037, 0.11485261, 0.00062368, -0.01893038, 0.09458718, -0.02509817, -0.00643618, -0.02749234, 0.09811009, -0.07287119, 0.07319631, -0.10296262, -0.01190783, 0.01485643, -0.03821719, 0.08264413, 0.1778781, 0.10110793, -0.09505952, -0.11968084, 0.04431134, 0.05503901, -0.09870282, -0.08723225, 0.04970294, 0.0695512, -0.02969028, 0.09405093, -0.05428011, 0.03534181, -0.07326414, -0.02795781, -0.10322261, 0.01595675, -0.00921058, 0.09000138, -0.07288006, 0.05017969, 0.01053173, -0.00022584, -0.09697574, 0.04607237, -0.01424369, -0.09365354, -0.01831375, -0.08553559, 0.09069705, -0.1067868, 0.09649685, 0.04649891, 0.05522968, -0.04901291, 0.10109146, 0.00378607, -0.0140524, -0.01906277, 0.02327968, 0.06581769, 0.14135538, -0.10012233, 0.00290704, -0.0577705, 0.07615718, -0.03902925, -0.0476512, 0.06838758, 0.04806264, 0.09797964, -0.08084787, -0.02193751, -0.12061493, 0.10445467, 0.1031859] +fmul:[-9.20078456e-02, 5.09684272e-02, -9.75079648e-03, -2.70638913e-02, -1.87165029e-02, -8.11519027e-02, 9.93417725e-02, -3.48920673e-02, 1.33926466e-01, -5.72556304e-03, -4.71491702e-02, -1.25366285e-01, -4.78054099e-02, -1.29109889e-01, -9.84602884e-05, 2.03825105e-02, -4.34712367e-03, -8.29039514e-02, 3.02390847e-02, -8.03656355e-02, 7.54728913e-02, -4.22695326e-03, -4.61800694e-02, 5.31525612e-02, 1.47449775e-02, 1.13613538e-01, -1.19268157e-01, -3.81039754e-02, 7.13158473e-02, 9.07079969e-03, 2.08976924e-01, 2.95625608e-02, 1.08038180e-01, -5.93067557e-02, 1.25125676e-01, 1.19657591e-01, -1.17860563e-01, 8.50403961e-03, 3.76936980e-02, -2.78221648e-02, -3.37835029e-02, 8.44452679e-02, -8.50836858e-02, 1.70598049e-02, 2.75105350e-02, 6.91188723e-02, 5.81504777e-02, -3.81397866e-02, -1.57519709e-02, -5.14998473e-02, -2.22590584e-02, 1.26412883e-01, -5.57160750e-02, -2.00686529e-02, -5.32165505e-02, 6.94381744e-02, 1.21542839e-02, -1.13949649e-01, 1.43685669e-01, 6.73651248e-02, -9.81705263e-03, -1.05952986e-01, 6.11974411e-02, -1.31385013e-01, 3.64177264e-02, -1.29812881e-01, -3.02964356e-03, 1.18103124e-01, 1.07241891e-01, 1.56116178e-02, -2.17739195e-02, 6.64660484e-02, -1.16900623e-01, 3.91729064e-02, 8.44484046e-02, -1.40714467e-01, -4.49273400e-02, -1.51973208e-02, -4.79436405e-02, 2.25678347e-02, 3.23212966e-02, -2.17254162e-02, 1.40839264e-01, 1.07596919e-01, -5.88145256e-02, 3.14025604e-03, -1.34933712e-02, 2.40311418e-02, 2.06417739e-02, -3.94987687e-02, -6.94960216e-03, -2.24715900e-02, 1.11907050e-01, -1.55956313e-01, 4.99935597e-02, -3.59592354e-03, 9.16950107e-02, 9.70969908e-03, 2.58628204e-02, -6.14260249e-02, -7.82411322e-02, -3.30346338e-02, 8.14471543e-02, -6.21179231e-02, 8.01986307e-02, 5.11314385e-02, -2.92603038e-02, -6.46040663e-02, -3.21057290e-02, 1.09419122e-01, 1.06629968e-01, 1.33649603e-01, -2.50645389e-04, 5.73553741e-02, -1.63565964e-01, -6.10168651e-02, -8.62663612e-02, -1.00603193e-01, 1.01648360e-01, -1.05495099e-03, 5.34928702e-02, 9.80184004e-02, 1.07842974e-01, 3.34411338e-02, 1.13502644e-01, -1.10823199e-01, 3.02522928e-02, -2.49635819e-02, -1.95692554e-02, -1.22945249e-01, 5.11162654e-02, -2.47573294e-02, -7.22119957e-02, -1.08621828e-01, 3.32836546e-02, 3.64794880e-02, -1.17172591e-01, 1.68683846e-02, 7.05056116e-02, -2.35363338e-02, -1.07836369e-02, 1.16671771e-02, 3.86678241e-02, -4.02325913e-02, -3.26760598e-02, -1.88476834e-02, -5.04554212e-02, -4.69955169e-02, 6.54633790e-02, 4.63246414e-03, -1.04258530e-01, -1.10269055e-01, 1.17291443e-01, 1.11658536e-01, 4.79784496e-02, 4.35168743e-02, -5.23424745e-02, -8.47382098e-02, -7.58226961e-02, 7.14448690e-02, -1.43417686e-01, 5.45638725e-02, -5.54754436e-02, -6.93714991e-02, 9.35541466e-02, 1.06504492e-01, 1.10014994e-02, 1.18659347e-01, -6.89184219e-02, -4.56575081e-02, 2.12320220e-02, -6.80803787e-04, -8.57904628e-02, -3.78397033e-02, 1.06242329e-01, -5.11134602e-02, 2.82807611e-02, -2.19550245e-02, -5.86381666e-02, -1.07524749e-02, 1.43292755e-01, 8.64451751e-02, -9.54621509e-02, 1.99841950e-02, 4.42538634e-02, 3.71157052e-03, -5.48118651e-02, 1.03552938e-01, -1.58276185e-01, 3.18208331e-04, 1.45699945e-03, 1.99543349e-02, -6.04039198e-03, -1.08273393e-02, -3.11622582e-02, -7.92410150e-02, 1.18275307e-01, -6.70936853e-02, -9.32368264e-02, 1.18784294e-01, -1.41463786e-01, 5.98812364e-02, -4.91973422e-02, -9.20018647e-03, 1.57840867e-02, -1.27925230e-02, -5.77997826e-02, 3.60315405e-02, -4.73236032e-02, 1.00761697e-01, 2.63424497e-02, -1.01801395e-01, -1.22553587e-01, -1.38593435e-01, 7.64679089e-02, -6.53197914e-02, 2.83746771e-03, -4.66940459e-04, 4.51526418e-02, -3.77365649e-02, 6.74987137e-02, 1.08934328e-01, -1.04834303e-01, -7.24605620e-02, -1.81398392e-02, -8.86117294e-03, 6.37370571e-02, 5.73702492e-02, 2.37618517e-02, 1.06169403e-01, 8.98907855e-02, 4.14363854e-03, -2.85070650e-02, -5.63506149e-02, 6.40322715e-02, -7.70395249e-02, 6.23282865e-02, -1.26216412e-01, 2.38646492e-02, -7.08294436e-02, -8.70856419e-02, 3.48495692e-02, -3.20775099e-02, 6.18500225e-02, -4.19664755e-02, 5.62697984e-02, -1.08643614e-01, -2.49200854e-02, 8.67264196e-02, 1.44869938e-01, 2.19262112e-02, 1.12168446e-01, -9.92064830e-03, 2.89465673e-02, -2.46779397e-02, -1.86229143e-02, -3.77659611e-02, 7.32149333e-02, 8.92925113e-02, 8.35492834e-02, -2.23123077e-02, 8.98671001e-02, -4.50646225e-03, 1.36361495e-01, 1.29677266e-01, 5.94511069e-03, 1.75362527e-02, -3.15064192e-02, -2.88288444e-02, -1.47857359e-02, -4.99569103e-02, -9.19568762e-02, -3.60385627e-02, -3.17657925e-02, 5.08916490e-02, -8.53363648e-02, -9.40989517e-03, 2.52364343e-03, 4.16757464e-02, -9.51490700e-02, 4.77470122e-02, 1.34721532e-01, 3.39776352e-02, 7.13005587e-02, -9.01583359e-02, 5.29582687e-02, -3.20955692e-03, 2.49406938e-02, -1.25006974e-01, -7.51997158e-02, 3.73156257e-02, -1.72410328e-02, 4.06958684e-02, -4.53391857e-02, -6.08580709e-02, 1.64244846e-02, 7.49730617e-02, -9.76401716e-02, -8.58125016e-02, -3.89553793e-03] +fneg:[-0.09219581, 0.00684131, -0.10452498, 0.07909575, 0.10207056, -0.08563884, 0.00214886, -0.1504912, -0.09740259, 0.01570997, -0.02940113, 0.00120496, -0.02923867, -0.13323757, -0.10048872, -0.15391171, 0.03871307, -0.02384414, -0.00455389, -0.08151144, 0.07783268, -0.03503232, -0.0474912, 0.06273101, 0.01364015, -0.03270999, -0.11460184, -0.12246671, -0.0885135, 0.00686724, -0.00933376, 0.02949307, 0.10581747, -0.06041097, 0.12495626, 0.11868085, -0.11930873, -0.0251316, -0.11479492, 0.00765703, -0.02872622, 0.08496976, -0.11681747, -0.04364573, -0.05995006, 0.08058123, -0.02892851, -0.01731248, 0.02624494, -0.08521188, -0.09054983, 0.11667106, 0.0483654, -0.01789684, -0.04276441, 0.08620163, 0.01476808, -0.06305446, 0.14932314, 0.04804208, 0.05785875, 0.00715679, 0.05378535, 0.01722059, -0.08849877, -0.12696181, -0.02335569, -0.04296995, 0.11130781, 0.0276824, 0.02222835, -0.14152108, 0.06142093, 0.00606642, -0.14262389, -0.14225571, -0.02137993, -0.01461602, -0.03409344, 0.13767996, -0.00994316, -0.0199718, -0.080231, 0.00717913, -0.05146378, -0.02011233, -0.04833494, 0.06102679, 0.01124899, -0.04862509, -0.00771083, 0.08253682, 0.05823474, 0.00969928, 0.03475104, 0.10310352, 0.09407058, 0.0076072, 0.10746319, 0.01812422, -0.08561548, -0.03183303, 0.0392424, 0.04013812, 0.04626155, 0.05648456, -0.07816253, -0.05837693, -0.01835629, 0.01036837, 0.100193, -0.07872266, 0.11399032, 0.07374865, -0.09079786, 0.0841176, -0.12828237, 0.00516521, 0.08163631, 0.01079436, 0.06178366, 0.06757066, 0.13142665, 0.02672663, 0.10610456, -0.07874807, -0.07987989, -0.0425339, 0.1094602, -0.06998289, 0.07791856, -0.02651498, -0.07363705, 0.06105641, 0.04580245, -0.03138166, -0.0183296, -0.03107044, 0.09176468, -0.026262, -0.03424221, 0.03500072, 0.01009801, 0.03295338, -0.02957062, 0.00498414, -0.0513703, 0.08902967, 0.07204967, 0.00517529, -0.10497159, -0.0072326, 0.12343072, 0.11285525, 0.02245813, -0.02000934, -0.09168276, -0.07374734, -0.08300619, 0.0587531, -0.02629784, 0.04016393, 0.04955253, -0.07776966, 0.00680432, 0.12224637, -0.04828722, 0.11981514, -0.0357194, 0.04626217, 0.01192363, -0.03981931, 0.01295051, -0.01377629, 0.0888839, -0.00166881, -0.0433514, 0.07341047, -0.0601634, 0.06826078, -0.01396837, -0.11006121, 0.07933788, -0.00104243, 0.05478959, 0.03611729, 0.04011795, 0.00159577, 0.07419771, 0.02304804, 0.05083997, 0.01980651, -0.02879971, -0.0423688, 0.00344624, -0.03418479, -0.12493423, -0.06793565, -0.10723107, 0.10835328, -0.14675507, 0.12674446, -0.13176054, -0.11316551, 0.05163749, 0.09640687, -0.0584133, -0.09594642, -0.04663214, 0.11299695, -0.12536168, -0.10905733, -0.09502384, -0.139813, 0.07932533, 0.03517701, 0.07244263, 0.07076341, 0.03009494, -0.01949394, 0.06902313, 0.12757427, 0.1409103, 0.02032713, 0.01633747, 0.01515114, -0.02432616, 0.0963718, 0.04762029, 0.07334665, 0.07812686, 0.09167723, -0.05862779, -0.02954966, -0.05698551, 0.0098892, 0.06528199, -0.12954319, 0.06154574, 0.04737342, -0.02595105, 0.04535034, -0.03244233, 0.09522908, -0.03578845, 0.02316157, -0.05977995, 0.05703576, 0.02722257, -0.02233246, 0.02095997, 0.09259212, 0.01623048, 0.04589348, -0.06855608, 0.00857554, -0.10239457, 0.07410002, -0.06743368, -0.0601908, 0.02795044, -0.06607203, -0.00845358, 0.12629198, 0.14278841, -0.08273131, 0.02444486, -0.02779036, -0.14452693, 0.05117997, -0.04992216, -0.109994, -0.0478075, -0.03288142, 0.05363562, 0.08652811, -0.00900176, -0.01461803, 0.04331533, -0.11008769, 0.16864476, -0.11992093, -0.04879107, 0.07789057, -0.11187436, 0.09236455, -0.08177466, -0.0399881, -0.1256557, -0.08547717, 0.03092477, -0.04940755, 0.06721609, -0.07700584, 0.06769706, -0.0202539, 0.06326591, -0.09879214, -0.07273822, 0.00059313] +fpext:[-0.09207907, 0.04867399, 0.05251972, 0.06107732, -0.08448642, -0.0853411, 0.00211574, -0.14407118, 0.02210241, 0.04722776, -0.03454399, -0.08441419, -0.0016653, -0.13621794, -0.06181326, 0.0087699, 0.05721225, 0.01549814, 0.05604149, -0.06226685, 0.07468049, 0.14174995, -0.06457601, 0.01684091, -0.0784097, -0.04987879, 0.0113413, -0.07830749, 0.07553289, 0.10042489, 0.04817406, 0.02823325, 0.10321579, -0.04124705, 0.12315149, 0.11592029, -0.11895423, -0.01033329, 0.03470603, -0.02755987, -0.01294963, 0.08544693, -0.11367661, -0.07037906, -0.08159111, 0.08865035, -0.05418597, -0.01742313, 0.07018261, -0.07621901, 0.00757341, 0.11291396, -0.00224713, -0.01597362, -0.08642688, 0.11784843, 0.00968237, -0.02821196, 0.15070651, 0.11009628, -0.07476716, 0.137221, 0.06380285, 0.01043979, -0.04091045, -0.11109697, 0.04133955, 0.11194714, 0.02409407, 0.02670381, 0.0026105, 0.1171336, -0.10684387, 0.0607856, -0.12325615, -0.14124323, -0.08711894, -0.06097564, -0.03312031, 0.05299494, 0.07090949, 0.06117758, -0.08516184, -0.00957115, 0.00907131, 0.00311532, 0.0826751, 0.02016628, -0.00463084, -0.06104826, 0.05178378, 0.09282075, 0.1092713, -0.01977971, 0.03528568, 0.03735286, 0.15529084, -0.00599303, -0.12748154, 0.00258141, -0.07286055, -0.03071563, 0.10349718, -0.06001007, 0.018029, 0.05238061, -0.11649006, -0.03824767, 0.10882705, -0.12768462, 0.07951157, 0.04563544, 0.11129607, 0.07007757, -0.09958548, 0.08566234, -0.03810686, 0.04587634, 0.04770757, 0.0006057, 0.06078615, -0.05934471, -0.04204115, -0.09188885, -0.08877636, -0.10750529, 0.01815812, -0.030811, -0.03907473, -0.15054192, 0.06137974, -0.02768882, -0.07449213, -0.07362286, -0.00227779, -0.05688687, -0.01004972, -0.04124073, 0.07076826, -0.02463142, -0.07890549, 0.01684011, -0.00879507, 0.02242504, -0.02284878, 0.01990069, -0.05067335, 0.053861, 0.07714509, 0.00941815, -0.02380278, 0.03144526, 0.11962619, 0.11182193, 0.07951563, 0.01774749, -0.09352645, -0.07107326, 0.00936166, 0.1178869, -0.02626039, 0.04209072, 0.0001967, -0.04806539, 0.09574613, 0.10926957, -0.05474148, 0.07913984, -0.04557466, 0.04999779, 0.02035364, -0.00502838, 0.03000718, -0.0905975, 0.12051669, 0.0590828, -0.01552832, 0.04060863, -0.06582904, 0.0075409, -0.02380905, 0.10248581, 0.00901349, 0.09295256, -0.04448182, 0.0083579, -0.07339675, 0.05450607, -0.07688531, 0.07599305, -0.01689777, 0.01510749, -0.00678613, 0.04942766, 0.01746233, -0.05897526, -0.05077602, -0.06815566, -0.10627225, 0.18249895, -0.14546849, -0.00662988, -0.13114294, 0.09001379, 0.03060536, 0.13293539, 0.00047397, 0.069459, -0.04462674, 0.06897555, 0.10027819, -0.10950042, -0.02563063, -0.12701225, 0.10465728, -0.05738227, 0.02447133, 0.03839304, 0.00492052, -0.04539634, 0.0689971, 0.11673982, 0.14383484, 0.03030322, -0.0157281, 0.00060468, 0.06322095, 0.09405559, -0.03320163, 0.12795042, 0.07532909, 0.06007391, 0.12334875, 0.01734532, -0.02113824, 0.02688181, 0.04681421, -0.12493831, 0.12729108, 0.0471612, 0.01164632, 0.07864817, -0.03158857, 0.07863513, -0.00731666, 0.00874129, -0.04067932, 0.01040794, -0.02547212, -0.0193046, -0.07867303, 0.00087855, -0.11306939, 0.02727546, -0.0516452, -0.0039458, -0.00645443, 0.07316096, 0.08835375, -0.06176079, 0.0338988, 0.06455963, -0.0430942, 0.11114629, 0.14136675, -0.10324871, 0.03090109, 0.07701227, -0.15186432, 0.06037153, -0.06812426, -0.1412277, -0.00157936, -0.03072621, -0.05968122, -0.00836118, 0.10929726, 0.00908591, 0.04201023, -0.10403311, 0.00831499, -0.13162568, -0.05198946, 0.07072756, -0.00757325, 0.05510634, -0.00441461, -0.01596452, -0.08376995, -0.05511596, 0.03591051, -0.00539548, 0.04356144, -0.08051053, -0.03509825, -0.10464641, 0.03281847, -0.09009084, -0.04556689, 0.0018785] +fptosi:[-0.09184909, 0.0266596, -0.08811317, 0.0116678, -0.02604229, -0.06353664, -0.047449, 0.09562393, 0.11406922, 0.06883635, -0.07728998, -0.06045033, 0.03004972, -0.13057463, 0.04246265, 0.08061696, 0.00937914, -0.08459118, 0.05345204, -0.06948678, -0.08257701, -0.02824438, -0.04702242, -0.00745419, 0.01127822, 0.01318536, -0.11532754, -0.02557769, 0.08329995, -0.04652803, -0.02990381, -0.02284884, 0.10587329, 0.03013055, 0.12888652, 0.11776133, 0.05464503, 0.01087942, 0.10940795, 0.16310479, -0.02900033, 0.08572739, -0.12738663, -0.09369889, -0.05548617, 0.07354066, -0.08817992, 0.1138982, 0.07301258, -0.08420935, -0.11475299, 0.11250737, -0.04857904, -0.01763499, 0.00238816, 0.0872557, 0.07837854, 0.04294889, 0.15412736, 0.01757459, 0.05591404, -0.12940778, 0.05443746, -0.05857961, -0.07966337, -0.08486533, -0.0237789, 0.02453609, 0.10374817, 0.032179, -0.08365713, 0.07250985, 0.09059715, 0.07221231, -0.07273891, -0.05873631, -0.11140867, -0.01531152, 0.07878441, 0.14847267, -0.00887478, -0.0227058, 0.01569755, -0.00413391, 0.00326083, -0.00235207, 0.11018319, -0.0197776, 0.00572181, 0.02307703, -0.02740729, 0.07028762, -0.12275448, 0.03277773, -0.14729926, 0.10008093, -0.01544212, 0.01014661, 0.11986291, 0.04612501, -0.04164552, -0.00184493, 0.09154995, -0.01727058, 0.07884638, 0.05902177, 0.01463129, 0.00812126, -0.00155799, -0.05077381, 0.10411683, -0.00264949, 0.12841806, 0.07910353, -0.05913134, 0.01589408, -0.02865979, 0.01103599, 0.07132797, 0.02809437, 0.07223767, 0.06690481, -0.11283889, 0.03214107, 0.10543571, -0.10718955, 0.05904832, -0.01786055, -0.10500646, -0.0855592, 0.06087171, -0.03828335, -0.07466709, -0.07319322, 0.05970043, 0.00701009, -0.07898287, -0.11749314, 0.07334241, 0.00591095, 0.12228579, 0.03163102, 0.00125348, 0.0062684, 0.03959573, -0.00459297, -0.05230784, -0.0035732, 0.06973207, -0.11218969, -0.10642736, 0.02977518, 0.11125299, 0.11278909, -0.04710808, 0.06723475, -0.08696114, -0.06451855, -0.07398693, 0.05422486, -0.05250228, 0.04040432, -0.071226, 0.05012002, 0.0661646, 0.12446426, -0.04384394, -0.01791816, -0.04334224, 0.02579527, 0.07582775, -0.00520536, -0.07565892, 0.07084458, -0.01177111, 0.07107577, -0.00248761, -0.05996603, -0.06274201, 0.03079124, -0.00468416, 0.08608021, 0.05526573, 0.08079754, 0.13498718, 0.06989627, -0.01501697, 0.11924317, 0.0148896, 0.00636233, -0.08897611, 0.01994921, -0.02694648, -0.0350529, 0.01422589, -0.04532565, 0.11115161, -0.06822184, -0.10637087, -0.06206845, 0.11622293, 0.11554863, -0.13358554, 0.14356132, 0.03366326, -0.01215804, -0.05806224, 0.03166519, -0.04609812, 0.10265017, 0.05280426, -0.1005984, -0.13447034, -0.13444716, 0.08085778, -0.04935688, 0.05504992, 0.06200756, -0.10984769, -0.06705935, 0.06851218, 0.12263289, -0.0022501, 0.02470225, -0.05404936, 0.02062571, 0.08828226, 0.09080615, -0.02969578, 0.13549171, 0.07739751, -0.01705738, 0.04892953, -0.08969457, -0.10039266, 0.01396553, 0.05798306, -0.12953466, -0.05956023, 0.04714131, 0.10199564, 0.04649507, -0.03233631, 0.09181231, -0.02777832, 0.07205611, 0.15880015, 0.03317976, 0.00060515, -0.01023862, 0.02087589, -0.00200961, 0.00728682, 0.04240321, -0.0653548, -0.00504967, -0.09716035, 0.0736484, -0.05318979, 0.03565714, 0.00821751, -0.11327887, -0.02467379, 0.10259388, 0.14433661, 0.03500279, -0.0496967, 0.03176183, 0.03016551, -0.0760312, -0.04579784, -0.12342023, 0.0069621, -0.03085413, 0.06019463, -0.01902286, -0.01811117, -0.0425052, 0.04243603, -0.10476262, 0.05170094, -0.09468537, -0.05870152, 0.11475015, 0.02481294, 0.05960725, -0.00068711, -0.14813608, -0.12490903, -0.06546955, 0.01054749, -0.01229558, 0.04314145, -0.05466187, -0.03561316, 0.01818363, 0.12927593, -0.09087387, 0.14079885, 0.08812217] +fptoui:[-0.09453936, 0.12849995, -0.0205031, 0.01559492, 0.04902463, -0.07205523, -0.01164076, -0.01493594, 0.07894822, -0.0153303, -0.08367963, -0.11593449, -0.04793422, 0.03810877, 0.07239616, 0.00548835, -0.00935092, -0.09028434, 0.06270074, -0.09661689, -0.1041315, -0.02461011, -0.01025046, 0.06358385, 0.06455661, 0.05460741, -0.11922191, 0.0598316, 0.08203291, -0.12728232, 0.05396587, 0.03089773, 0.10983418, -0.07347381, 0.12918155, 0.12086693, 0.05473908, -0.08463877, -0.1446351, -0.02690124, -0.03217107, 0.08717063, -0.12634404, 0.00920912, 0.04940164, -0.08536073, -0.09758113, -0.11728206, 0.05975071, -0.08391399, 0.01036575, 0.09166975, -0.05622305, -0.01859377, 0.00072157, 0.06522691, 0.06788898, -0.02296484, 0.15565564, -0.04355655, -0.11361875, 0.01516983, -0.0656903, 0.02576194, 0.11216489, -0.13659202, -0.10497109, -0.05748058, 0.11270135, 0.03917487, 0.00514848, 0.01458091, 0.07189573, 0.10212043, -0.10782913, -0.05817739, -0.03209118, -0.01488143, -0.03256004, -0.05244122, -0.06180451, -0.02394056, 0.04574301, 0.01080185, -0.06179134, -0.0212112, -0.00387568, 0.01821706, 0.00122871, 0.02135194, -0.00851425, 0.05177197, 0.08984206, 0.04376025, 0.03326991, 0.10523934, 0.1282612, 0.01206627, 0.1483034, 0.03707869, -0.03058779, -0.00399693, -0.02389825, -0.06562682, 0.01871447, 0.05434802, -0.0740161, -0.0935572, -0.00074243, -0.02704298, -0.08681776, 0.11250082, 0.12622936, 0.06269712, -0.08502629, 0.05721063, 0.08566912, -0.07336831, 0.04430791, 0.02990372, 0.07701798, 0.0733391, -0.03836737, 0.00116455, 0.08538803, -0.10877106, 0.0465766, 0.00346573, 0.12763667, -0.10608058, 0.05578275, -0.02753267, -0.07214371, -0.07022829, -0.10223771, 0.03786553, -0.11458647, -0.11716498, 0.03889568, -0.01341251, -0.170324, 0.08683787, 0.09593296, 0.03700107, 0.14317375, 0.00018668, -0.01008885, 0.08630609, -0.01785223, -0.01473205, 0.06362987, -0.08773544, 0.10714983, 0.11415438, -0.0389474, 0.03194817, -0.08066408, -0.0631144, -0.08263365, 0.05284779, -0.08605065, 0.01628376, 0.08502053, -0.11007648, 0.07990153, 0.12651347, -0.0273718, 0.12122166, 0.09366734, 0.04353422, 0.14310989, 0.09233801, 0.00623363, 0.08553948, -0.01184464, -0.00419725, -0.01715288, 0.0331568, -0.06264411, 0.04057871, -0.03088723, -0.12820552, 0.00393988, 0.0437973, 0.07013668, 0.03782552, 0.07767163, 0.14663269, -0.01396696, 0.00300238, -0.01785715, 0.03669091, -0.06705701, -0.04412983, -0.04242549, -0.03085692, 0.03586696, -0.06773499, 0.04417673, 0.00652539, 0.11174148, -0.02978872, -0.13264625, 0.06442942, 0.05276534, 0.02765493, -0.0583857, -0.02911852, -0.04590076, 0.12091716, -0.0443568, -0.09683264, -0.13829735, -0.06033231, -0.04231088, -0.04816465, 0.06445368, 0.08903345, -0.00409866, 0.00634382, 0.06797867, 0.11391143, -0.11838527, 0.04250951, -0.00852993, -0.11381678, 0.06760965, 0.10070113, 0.06937727, 0.13841887, -0.04590589, -0.03829756, -0.07912231, -0.03490101, 0.05870807, 0.00035128, 0.05941721, -0.13208343, -0.0709194, 0.04766158, -0.0490755, 0.03301863, 0.06142343, 0.09699165, 0.03840562, 0.06311464, -0.14778362, -0.04596403, 0.04838902, -0.02326738, 0.02258378, -0.02127166, -0.09525878, 0.01583083, -0.06976215, -0.1130394, 0.05932866, 0.07525633, 0.09111548, -0.02392294, -0.10833093, -0.10922965, -0.01007429, -0.01919851, 0.01532662, -0.07671401, 0.01782954, -0.02860554, -0.13157028, -0.0909965, -0.05042473, -0.10745525, 0.02863394, 0.07095937, 0.06522072, -0.07352117, -0.0649982, 0.0576512, 0.04467726, -0.11115481, -0.03738559, 0.02775447, 0.1269822, -0.09283312, -0.07086056, 0.08420036, -0.00029912, -0.01082791, -0.12757206, -0.06938749, 0.03926477, 0.15443292, 0.04432498, -0.04529963, -0.09630468, 0.01364609, 0.11314315, -0.09381842, -0.10911047, -0.03124576] +fptrunc:[-0.09340627, 0.05717945, -0.10372575, 0.01651155, 0.03327132, -0.0843107, -0.01276833, -0.01115752, -0.0006253, 0.04698769, 0.07777059, -0.11216477, -0.01137865, -0.13438411, 0.02993785, -0.00385038, 0.03913769, 0.02533406, 0.06132729, -0.09088681, 0.07816971, 0.04097601, 0.03386371, 0.06216973, -0.06066155, -0.10044004, -0.01806356, 0.05824679, 0.07912458, -0.07392839, -0.08252178, 0.0301106, 0.10720175, -0.05934668, 0.12568064, 0.11905569, -0.12086395, -0.07734968, 0.0348253, -0.02691744, -0.02971512, 0.08318592, -0.09101992, -0.06684018, -0.08848642, 0.08112574, -0.06182721, -0.13360031, 0.01906415, 0.01112278, -0.02028195, 0.0927413, -0.03767082, -0.01738191, 0.04117759, 0.09174861, 0.03210302, -0.06546639, 0.15499502, 0.07511304, 0.1119907, -0.12684348, 0.05668384, 0.10309791, -0.02148915, -0.09034153, -0.00813911, -0.08515572, 0.10963096, 0.0373997, -0.10694068, 0.1794851, -0.11459201, 0.04477175, -0.13969935, -0.14357027, -0.09293668, -0.01550233, -0.03231965, -0.0276746, 0.064509, 0.004732, -0.09486639, 0.00810045, -0.04292202, -0.02245594, 0.01344009, 0.00160228, -0.00435619, -0.11199988, -0.0091041, 0.04483903, 0.06964228, -0.13363191, 0.02710034, 0.10448975, 0.07368989, 0.00622381, -0.07013024, 0.02378284, -0.08461549, -0.03128733, 0.09200452, -0.09689967, 0.00539519, 0.05348678, 0.03624045, 0.05051135, -0.00268082, -0.0791849, 0.10054695, -0.08212076, -0.08864201, 0.05562899, -0.14770792, 0.01171683, -0.1135827, 0.07773772, 0.05531288, 0.01817244, 0.06374262, -0.05819103, -0.08377541, 0.00647961, -0.12541339, -0.0970601, -0.09193584, 0.01344735, -0.01660236, 0.11772133, 0.05712347, -0.02781627, -0.07206247, -0.07284726, -0.09973459, -0.05101604, -0.02544402, 0.01714422, 0.08962614, 0.07282756, -0.05054376, 0.02645253, 0.02320596, 0.07404208, 0.02499727, 0.0048538, -0.0497256, 0.01205793, 0.07303808, 0.0586259, -0.10573915, -0.11233573, 0.11024865, 0.11338656, -0.01830091, -0.05036134, -0.09224019, -0.07443243, -0.08156706, 0.04862785, -0.02651994, 0.03976475, 0.05176755, -0.03109042, 0.09112295, 0.12468067, -0.04826876, -0.02299155, 0.04566282, 0.06075857, -0.00442491, -0.05550227, -0.06819287, -0.07859372, 0.11661077, -0.00178213, -0.07266926, 0.04281355, -0.05792243, 0.1071756, -0.00660443, -0.10861631, -0.07365094, -0.05002607, -0.04556558, -0.00183372, -0.07257701, 0.14658827, -0.10148362, 0.01616582, 0.00212697, 0.01895225, -0.027561, -0.03351488, 0.0131426, 0.02872988, -0.03681875, -0.06844882, 0.03444786, -0.08200727, -0.12647432, -0.03039796, -0.13301992, -0.09740151, 0.04966835, 0.1227361, -0.05755914, -0.02454519, -0.04420497, 0.10974475, -0.13081808, -0.11250137, -0.13564101, -0.10872276, 0.06758627, 0.03224477, 0.06318893, 0.06347559, -0.04364616, 0.02478418, 0.06936571, -0.0076732, -0.12095888, -0.00142203, -0.0247042, -0.10922909, 0.09977255, 0.05670876, 0.03708535, 0.13579847, 0.07346196, 0.02145598, -0.06238492, -0.03997806, -0.02053382, 0.00924791, 0.05868173, -0.13025287, -0.06359172, 0.04664528, -0.03709754, 0.05527597, 0.05176729, 0.09020171, 0.05677487, 0.03175909, 0.07388806, -0.0285497, 0.00190458, -0.0233688, 0.02151741, 0.00899958, -0.11560638, 0.02621929, -0.06883936, -0.11881007, 0.05760374, 0.07426029, 0.1438742, -0.06072126, 0.03172285, -0.11039019, -0.01008667, 0.10112904, 0.14390223, -0.07513017, 0.06602179, 0.07609536, 0.0450657, 0.00673084, -0.05042985, -0.11816706, -0.09180827, -0.03028712, 0.06304941, -0.06906361, 0.10887302, -0.04602044, 0.04383275, -0.04600941, 0.00318832, -0.09196462, -0.04670611, 0.10362514, -0.11363634, 0.06154434, -0.00027068, 0.05026311, -0.12248743, -0.06480956, 0.05162457, -0.05747982, 0.04921485, -0.08942124, -0.01497491, -0.06939477, -0.07064947, -0.02598636, -0.04427369, -0.00814317] +freeze:[-7.72300810e-02, 3.11000887e-02, 9.31693166e-02, -5.03972694e-02, -1.03661083e-01, 8.46057758e-02, -8.60253442e-03, 2.27436554e-04, 6.27435073e-02, 2.18697060e-02, -6.10958003e-02, -6.33558109e-02, -5.31212948e-02, 3.44182141e-02, -3.55128385e-02, 1.02868833e-01, 8.61144513e-02, -6.92293942e-02, 1.75475813e-02, 1.01084262e-01, 7.04728737e-02, -5.22082709e-02, -4.44981754e-02, -3.46859209e-02, -1.60278624e-03, 2.66248062e-02, -1.25054821e-01, -2.80544758e-02, 6.96343035e-02, -9.27206799e-02, 1.12757117e-01, 1.62214395e-02, 8.01049173e-02, -8.09622481e-02, 7.08866417e-02, 1.05403602e-01, 4.53138351e-02, 1.08132966e-01, -8.79488811e-02, -2.65812464e-02, -4.32058461e-02, 6.21676855e-02, -7.33411536e-02, 6.77144751e-02, 1.32616118e-01, 5.29115573e-02, -9.25011709e-02, -1.19277075e-01, -7.09187239e-02, -7.39540011e-02, 1.64161801e-01, 1.30552739e-01, -5.87835237e-02, -1.02736026e-01, -5.24687357e-02, 9.29549783e-02, 4.30646837e-02, -4.11225930e-02, 8.30866545e-02, 4.31686081e-02, 1.37325749e-01, 5.30280769e-02, -1.23461992e-01, 5.49184792e-02, 1.00399435e-01, -1.06969718e-02, -1.26624793e-01, 4.79762591e-02, 8.36167559e-02, -3.51585671e-02, 1.15016811e-01, 2.79215816e-02, -8.80312845e-02, 7.99162984e-02, -1.80929266e-02, -7.60640949e-02, -6.79254010e-02, -1.50959557e-02, -1.85505878e-02, -5.45190349e-02, -8.49236771e-02, -2.35620737e-02, 2.12066472e-01, 5.54776527e-02, -4.09875475e-02, -8.05642363e-03, -1.78910166e-01, -1.03431158e-02, -5.31725027e-02, -1.03870817e-01, 6.03611988e-04, 5.82703874e-02, -6.00996204e-02, -4.32763202e-03, -1.41788453e-01, -1.20651061e-02, -1.46286217e-02, 1.77791230e-02, -1.75458938e-01, -8.78069177e-02, -1.66803226e-02, -3.30064297e-02, -3.41289900e-02, -3.74242291e-02, -2.81743277e-02, -8.70012194e-02, -9.73437652e-02, 1.44351900e-01, -7.17345998e-02, 1.49029940e-01, 1.73015565e-01, 1.48209348e-01, 9.61291939e-02, 5.32868020e-02, -9.66803953e-02, -6.66157752e-02, 2.07567252e-02, -1.98940802e-02, 3.90376449e-02, -3.46820205e-02, 2.44522039e-02, 3.76829505e-02, -2.60189604e-02, -9.95688736e-02, 1.35270387e-01, -1.18297912e-01, 1.39325811e-02, -1.92742702e-02, 7.05791116e-02, -1.28614500e-01, -9.01226848e-02, 3.92270572e-02, -2.20889095e-02, -5.75744025e-02, 5.29685393e-02, 4.33655344e-02, 5.90433069e-02, 1.09691732e-02, 5.74789457e-02, 6.31053075e-02, -1.36727899e-01, -1.38794497e-01, 2.07637344e-02, 3.50878611e-02, -6.38323277e-02, -2.10854132e-02, -7.94189796e-02, -5.06700687e-02, 4.96267714e-02, 5.11005484e-02, 4.39206846e-02, -7.02967271e-02, 7.49621391e-02, 5.84929832e-04, 3.21027115e-02, -5.93077838e-02, -3.46591771e-02, -1.09748825e-01, 5.21360040e-02, 2.78375577e-02, -1.45448953e-01, 6.16331585e-02, -1.59760937e-01, 3.55694592e-02, -4.72395383e-02, -1.20663838e-02, 8.32928643e-02, 1.29285291e-01, -7.38143399e-02, -1.27982274e-01, -3.59738409e-03, -8.89136642e-03, -9.19207186e-02, -5.36245815e-02, -8.35132971e-02, -6.37359731e-03, 5.28510213e-02, -6.03763610e-02, -5.70707209e-02, -7.50009120e-02, -3.75267817e-03, 3.59813757e-02, -7.72418231e-02, 1.81442760e-02, 1.49589017e-01, 4.36269678e-03, 1.02689773e-01, -3.43414508e-02, -1.48521960e-02, -6.22704066e-02, 4.01546136e-02, 1.85137540e-02, 4.73360438e-03, 3.19323242e-02, -4.24603410e-02, -1.04207054e-01, -9.24782157e-02, 1.57024302e-02, -5.40285371e-02, 1.28928557e-01, -1.42485304e-02, 1.79131690e-03, 2.29688138e-02, -1.88428804e-01, -1.53251933e-02, -8.81637782e-02, -7.46669099e-02, -2.92152856e-02, -1.32960975e-01, 8.10771137e-02, 5.91127239e-02, -4.70000412e-03, -1.09051764e-01, -1.54841945e-01, 7.44312257e-02, 3.57321240e-02, -3.53536606e-02, -3.91916633e-02, 3.73229608e-02, -3.48209664e-02, 5.49025461e-02, 4.48711589e-02, 6.28964901e-02, 6.43540267e-03, -4.40462790e-02, -8.03005174e-02, 1.45813152e-01, 6.91757947e-02, -4.60804962e-02, -5.15377671e-02, 9.61247534e-02, -7.10662305e-02, -1.09293886e-01, 1.22450769e-01, 4.96884659e-02, -8.05362612e-02, 6.24335594e-02, -1.18051901e-01, 4.70622629e-02, 4.77266423e-02, 1.07282639e-01, -1.15587295e-03, -5.50204739e-02, -1.73659250e-02, -4.07879278e-02, 9.80487317e-02, 1.51348904e-01, -4.30618934e-02, 3.27699818e-03, 1.33553594e-01, 2.10160203e-02, 2.05733497e-02, 1.03876446e-05, -1.79162100e-02, 4.53037163e-03, -2.58347038e-02, -1.29571661e-01, 4.82179336e-02, -1.50299162e-01, 9.09626558e-02, -1.33071497e-01, -5.81708588e-02, 3.37396860e-02, 9.90447626e-02, 8.88185343e-04, 3.89356613e-02, -5.58611983e-03, -3.45465094e-02, 9.58691612e-02, 4.28911336e-02, -2.97636259e-02, -3.25156227e-02, -8.33379179e-02, -1.07693747e-01, 4.39982042e-02, -8.38764682e-02, -3.85258794e-02, -8.65563452e-02, 4.28845808e-02, 2.13070922e-02, -4.57427576e-02, -5.94944470e-02, -1.93653312e-02, -1.63253956e-02, 2.77369879e-02, -7.33678937e-02, -9.22448526e-05, -1.31557748e-01, -9.20762867e-02, 3.22655565e-03, 7.22420290e-02, 1.72426805e-01, -1.00545332e-01, -1.16872182e-02, -7.94944614e-02, 3.29793058e-02, 7.23282844e-02, 1.60785814e-04, -4.47843708e-02, -1.20033465e-01] +fsub:[-9.14391652e-02, -2.55252197e-02, -3.62210460e-02, -9.10290610e-03, -1.38086695e-02, -8.02810341e-02, 3.37458029e-02, -3.05024590e-02, -8.34522769e-02, 1.38242170e-02, -7.40649030e-02, -5.92110083e-02, -3.99113446e-02, -1.28499106e-01, 3.92132364e-02, 5.11267446e-02, -5.98795991e-03, -8.18723738e-02, 5.74985184e-02, -7.76008889e-02, 6.80112839e-02, -9.50997416e-03, 1.57431457e-02, -2.79361475e-02, 8.71786196e-03, 8.32619071e-02, -9.97652635e-02, -3.77519317e-02, 7.37601146e-02, 1.20521076e-02, 9.43770558e-02, 2.83960812e-02, 1.05182730e-01, -7.61677697e-02, 1.23179421e-01, 1.17182113e-01, -1.06980503e-01, -9.31793731e-03, 4.26506624e-02, -1.87455025e-02, -3.40717547e-02, 8.34798738e-02, -1.14251472e-01, 2.89648101e-02, -8.25820044e-02, 7.20319077e-02, -1.02944858e-01, -1.14059806e-01, 2.49195937e-02, 5.37307672e-02, -2.42159721e-02, 1.14515819e-01, -5.36444150e-02, -9.59999561e-02, -4.30497304e-02, 9.04762521e-02, 1.28662229e-01, 2.47460566e-02, 9.24949348e-02, -5.10179959e-02, 7.46927485e-02, -9.05464869e-03, 1.84783340e-02, -8.50985665e-03, -8.56081098e-02, -1.19455159e-01, -2.93603987e-02, 3.84062380e-02, 1.03401154e-01, 2.07478590e-02, 4.81549688e-02, 6.66354746e-02, -1.15714431e-01, 7.19802082e-02, -6.81318715e-02, -1.39113292e-01, 2.04537064e-02, -1.40333474e-02, 4.67454223e-03, 1.21491514e-01, -7.50631094e-02, -1.93786025e-02, -5.40494397e-02, 2.08367016e-02, -4.97993790e-02, -2.15555634e-03, -6.02133125e-02, 2.03090832e-02, -5.11664860e-02, -4.14754376e-02, -6.63182233e-03, -8.20861012e-02, -2.52406881e-03, -2.52331179e-02, 3.90236378e-02, 1.19829299e-02, -6.67561591e-02, 9.63525567e-03, 1.98560972e-02, 1.81201734e-02, -2.75162440e-02, -3.17195915e-02, 8.98670182e-02, 2.44599804e-02, 1.75928771e-02, 1.24948490e-02, 4.48576584e-02, 5.57009354e-02, 1.59419040e-04, 1.16274199e-02, 1.16947249e-01, 1.37328342e-01, 1.06441975e-01, 6.32622465e-02, -5.85968383e-02, 7.72928679e-03, -1.02483898e-01, -3.27804312e-02, -7.27328286e-02, 9.32368264e-03, 5.65682612e-02, 1.03933588e-01, -1.29502416e-01, -1.04927436e-01, -1.36258066e-01, -1.02198325e-01, 3.67570929e-02, -3.29564624e-02, -1.05798617e-01, -4.00223210e-02, 5.50933331e-02, -2.57725604e-02, -7.21607432e-02, -1.07555248e-01, 8.96993726e-02, 1.20844562e-02, -8.71094503e-03, 8.25038403e-02, 1.11363888e-01, -2.59587746e-02, -1.01379985e-02, -2.18395874e-01, 4.53840531e-02, -1.55940637e-01, -1.59817025e-01, -2.20177113e-03, -5.01777753e-02, 2.03431416e-02, 5.86901940e-02, 8.18213820e-03, -1.02566496e-01, -7.85441250e-02, 1.12282567e-01, 1.10489644e-01, 2.90440768e-02, -5.07474057e-02, -8.94973427e-02, -6.91939816e-02, -7.99307749e-02, 5.14024273e-02, -1.29419327e-01, 5.22704534e-02, -1.53427482e-01, -6.53724968e-02, 2.52013188e-02, 1.18180513e-01, -8.20674282e-03, 1.22580603e-01, 4.06962298e-02, -6.37572631e-02, -1.05664223e-01, -5.37317060e-02, 1.29726334e-02, -8.34929645e-02, 6.79329708e-02, -3.59069631e-02, -1.91233419e-02, -9.41278636e-02, -5.89304157e-02, 2.77330371e-04, -1.31082139e-04, -4.53924835e-02, 2.07983088e-02, 1.69097930e-02, 1.02929428e-01, 4.74356972e-02, 3.63368988e-02, 3.65865193e-02, -1.01022832e-01, -6.29533529e-02, -6.94576427e-02, 1.93717256e-02, -1.64168663e-02, -4.27476466e-02, -3.02640833e-02, -5.74157201e-02, -8.41880143e-02, -6.61740750e-02, 2.59329509e-02, 5.80329895e-02, -1.41654700e-01, -5.24744019e-02, -6.40728623e-02, -1.01927154e-01, 3.10382731e-02, 1.05711199e-01, -5.72782159e-02, 2.12067291e-02, -4.20928895e-02, 9.86418799e-02, 5.46972044e-02, -1.05503224e-01, -1.21921904e-01, -1.52651921e-01, 8.01036656e-02, -2.14190576e-02, 2.01758631e-02, 6.19025491e-02, 3.73245068e-02, -6.05192408e-02, 6.78975210e-02, 1.27138183e-01, -1.16753042e-01, 1.46772623e-01, 9.13011562e-03, 2.03583986e-02, 3.12127583e-02, 9.64384302e-02, 1.16948299e-01, 1.30359098e-01, 8.07884261e-02, 3.26656410e-03, 1.70642212e-02, -1.04127415e-01, 8.28810316e-03, 7.77107524e-03, 5.82775213e-02, -1.27230510e-01, -2.87029743e-02, 4.58621196e-02, 6.95463344e-02, 4.99938205e-02, 1.87945012e-02, 8.75125453e-02, -4.10864130e-02, 3.69375907e-02, 1.18114471e-01, -3.62949036e-02, 6.57365248e-02, -1.70213562e-02, 2.09177081e-02, -2.10005906e-03, 8.36400595e-03, 2.81574577e-02, -5.35277054e-02, -2.52985279e-03, -1.24398194e-01, 7.21869916e-02, -3.55142355e-02, -6.33520409e-02, -4.32716645e-02, -1.49446512e-02, -7.75308255e-03, 1.19753473e-01, 1.39219776e-01, 3.57067026e-02, 2.37803236e-02, -2.71631610e-02, 8.49172100e-02, -7.38441646e-02, -5.01294322e-02, -8.70497599e-02, 3.59222405e-02, -3.03526055e-02, 5.18518724e-02, -7.82584548e-02, -5.56425117e-02, 1.10847801e-01, 4.02615480e-02, -1.03345528e-01, 4.32582274e-02, 1.79524627e-02, -1.64294448e-02, 1.15741536e-01, -1.08006611e-01, 5.55323474e-02, -4.69472259e-03, -7.59665743e-02, -1.23129845e-01, -6.56160936e-02, -3.38365361e-02, -6.12781234e-02, 4.68635038e-02, -3.66739556e-02, -6.37635291e-02, 1.08583663e-02, 6.54549673e-02, -9.71900225e-02, 9.54822004e-02, -8.16271231e-02] +function:[5.72192520e-02, 4.03445140e-02, -3.59848961e-02, 4.32453305e-02, 4.21998017e-02, 4.58277091e-02, 1.90593265e-02, 3.53055038e-02, 1.27563905e-02, -4.48135026e-02, 5.20716123e-02, -5.83184846e-02, 7.65381232e-02, -1.45192845e-02, 8.64056721e-02, 5.12003973e-02, -9.46681425e-02, -3.05489618e-02, -1.47896707e-02, -1.09463826e-01, -7.49755427e-02, 2.70246919e-02, -1.35884821e-01, 1.02723710e-01, -1.05944455e-01, 6.82239160e-02, -6.43705055e-02, 8.47042277e-02, -1.83025729e-02, -1.60345528e-02, 2.41220333e-02, 9.88254324e-02, -2.74005020e-03, -6.93917871e-02, -2.50032824e-03, -6.40518889e-02, -1.65109597e-02, -7.47035258e-03, -1.27818035e-02, 6.32094517e-02, 1.29157022e-01, -8.15163776e-02, 1.39952581e-02, 5.62433377e-02, -4.97960672e-02, -3.02585401e-02, -2.92716194e-02, 5.82618192e-02, -7.40666911e-02, 6.59949854e-02, 4.02586795e-02, -1.22987300e-01, 1.69217154e-01, 1.28702551e-01, 3.58278230e-02, -6.55817315e-02, -8.88684243e-02, -4.46971413e-03, -6.58350810e-02, 1.13442540e-01, -6.60879761e-02, 4.23001423e-02, -3.96044776e-02, 7.91472495e-02, 5.01034856e-02, -2.78587770e-02, -8.46401826e-02, -8.41802135e-02, -2.98780799e-02, 8.65027234e-02, 3.22082788e-02, -3.87980491e-02, 7.74754211e-03, -1.24542102e-01, -4.59020250e-02, 8.72925445e-02, 7.84692019e-02, 8.09601024e-02, 4.34917547e-02, -3.58045772e-02, 9.26669985e-02, 8.66338015e-02, -4.16707136e-02, 4.54131551e-02, -1.22953638e-01, -1.07269965e-01, -3.40659767e-02, -1.28099829e-01, -1.05527580e-01, 1.15381390e-01, -1.80925608e-01, 3.07477172e-02, -3.75794992e-02, 5.20837456e-02, -3.49021032e-02, -4.99650352e-02, -2.53120661e-02, 1.13557205e-01, -3.25853713e-02, -4.24983464e-02, 3.90440337e-02, 1.33377194e-01, -1.13933794e-01, 3.70490663e-02, -1.65785812e-02, 1.42039180e-01, -6.38468489e-02, -8.62998515e-02, -7.27232695e-02, 5.39853312e-02, 5.64010872e-04, -2.78497282e-02, -8.34494531e-02, -7.28936419e-02, 1.26311183e-02, -4.65091169e-02, 4.66940589e-02, 6.33262619e-02, -2.51345113e-02, 9.09239724e-02, -1.10821486e-01, -8.12871605e-02, 5.16348295e-02, -1.84842441e-02, -7.44515583e-02, 6.95419461e-02, -2.23357957e-02, -1.02173738e-01, 6.50845021e-02, 7.01921061e-02, -2.03058757e-02, 1.02719896e-01, -1.47231847e-01, 8.54751281e-03, -4.74215262e-02, 1.31949782e-01, -3.41438577e-02, 3.49812098e-02, -3.61795649e-02, 1.10910572e-01, 4.88388948e-02, -4.53206934e-02, 4.65949774e-02, -2.34216638e-02, -9.03803259e-02, -1.36934400e-01, 6.70649484e-02, 6.70063868e-02, -1.47595003e-01, 5.72588407e-02, 1.01173967e-01, -4.62154821e-02, -1.16835833e-02, -8.85905027e-02, 9.77380872e-02, -1.89716015e-02, -1.26551554e-01, 5.59429638e-02, 1.05131716e-01, -5.59284016e-02, 3.85751873e-02, -4.46374267e-02, -6.97866306e-02, 6.62582740e-02, 3.93637344e-02, -2.75636222e-02, -1.26711726e-01, 3.19765694e-02, 1.04447871e-01, 9.85295624e-02, -5.26452363e-02, 9.86645222e-02, 9.63829383e-02, 2.61408836e-02, -4.36074175e-02, -5.11843599e-02, -8.23199302e-02, -2.72889789e-02, 6.99415877e-02, 1.68049075e-02, 3.19486372e-02, -1.63206700e-02, -2.80528385e-02, -9.74698961e-02, 4.85796854e-02, 8.77687261e-02, 5.80250099e-02, -7.26247653e-02, -8.02994668e-02, 8.25574771e-02, -1.74831506e-02, 7.89184645e-02, 8.43582749e-02, 9.08501297e-02, 6.23958111e-02, 9.79479775e-02, -7.64856040e-02, -1.24136269e-01, -6.70185313e-02, -1.10393234e-01, 5.79703674e-02, 3.27666849e-03, -3.97873372e-02, -1.97983421e-02, 1.04410931e-01, 8.85850117e-02, 1.17451057e-01, 4.31262702e-02, 3.26291621e-02, -7.84771144e-02, 8.83575827e-02, -2.09824797e-02, -2.81684566e-02, 4.75599766e-02, 2.76518241e-02, 1.15917049e-01, -1.72600791e-01, -9.25927460e-02, 1.41854770e-02, 5.84985465e-02, -1.84327289e-02, -6.14791773e-02, -1.30622191e-02, -4.50358018e-02, 1.05828345e-01, -4.15405296e-02, 1.64977666e-02, -3.55563313e-02, -1.15276389e-01, -1.16896024e-02, -3.47764567e-02, 7.66855404e-02, 5.86840324e-02, 3.84722799e-02, 1.74640007e-02, -8.52643251e-02, -2.41487082e-02, 1.40033096e-01, -1.77865215e-02, -2.75132135e-02, -6.09667040e-02, -7.12154806e-02, -9.74325836e-02, 8.94046724e-02, -1.23581000e-01, -9.36379880e-02, 1.02822095e-01, -1.02893293e-01, -3.12161632e-02, 9.68361944e-02, 1.14928059e-01, -1.64711960e-02, -5.96360080e-02, 1.16627380e-01, 9.38673839e-02, 1.01720661e-01, 4.19073775e-02, -2.11980399e-02, 4.96238582e-02, 2.20287498e-03, 3.42042930e-02, 5.56983359e-05, -8.19717795e-02, -6.59630895e-02, -7.01561868e-02, -2.43343860e-02, 8.61041620e-02, -1.19112171e-01, -4.88246791e-02, 2.96887662e-02, -1.16325907e-01, 1.04514658e-01, -3.15985940e-02, 1.34171739e-01, -1.17261343e-01, 1.05141796e-01, 2.82634683e-02, -8.26497152e-02, -4.46924195e-02, -1.43230483e-01, -1.10019380e-02, 1.12061491e-02, -8.14277157e-02, 1.02105916e-01, -8.63022581e-02, 8.48815888e-02, 1.03104174e-01, -4.10873257e-02, -3.87867503e-02, 1.01767130e-01, -5.06604761e-02, -4.34531569e-02, -2.13833619e-02, -7.67459199e-02, 7.83882663e-02, 9.77453440e-02, 2.49135457e-02, 2.21112128e-02, 8.96609426e-02, -7.81415254e-02] +getelementptr:[-9.41945165e-02, 9.55303237e-02, 7.28594735e-02, -4.70013134e-02, -2.33811606e-02, -1.62024293e-02, 1.25621026e-03, -3.30127701e-02, 7.25363269e-02, 3.32333185e-02, -6.32998869e-02, -9.63968784e-02, -4.22527194e-02, -8.82229581e-02, -5.58310561e-02, -9.00835171e-02, 4.69856488e-04, 7.23282546e-02, 5.55923656e-02, 7.70672262e-02, 7.41427615e-02, -7.62210488e-02, -8.25839490e-03, -2.23709382e-02, 5.86283440e-03, -3.24844755e-02, -1.10357136e-01, -2.42948420e-02, -8.06664973e-02, 2.66453288e-02, 1.08671956e-01, 2.92842966e-02, 9.63134766e-02, 1.31399632e-01, 1.25219062e-01, 1.18186422e-01, -1.01834118e-01, 1.41640767e-01, 7.12485015e-02, 1.44013062e-01, -2.65643001e-02, 6.00480177e-02, -6.97093457e-02, -1.64741993e-01, 1.19204327e-01, 2.28612684e-02, 3.59166111e-03, -1.31193757e-01, 4.85378876e-02, -1.17733076e-01, 1.39155269e-01, 9.17280093e-02, -5.58587462e-02, -1.93437282e-02, -5.94625287e-02, -1.19239077e-01, 5.93689159e-02, 1.10028148e-01, 1.16159156e-01, 3.68115976e-02, -3.82066797e-03, 1.25888720e-01, -7.44014829e-02, -1.31637365e-01, -4.35805134e-02, -1.41086914e-02, 7.38652349e-02, -7.80119449e-02, 8.48221779e-02, -4.25340468e-03, 1.38013512e-01, -5.28228730e-02, -1.08836271e-01, 6.60674721e-02, 5.35648037e-03, -7.19658658e-02, -4.86891195e-02, -1.49303544e-02, -2.28279144e-01, -6.44875690e-03, -5.88417426e-02, -2.27344725e-02, 2.95386929e-02, 9.06809196e-02, -4.61273976e-02, -1.64619479e-02, -8.85885358e-02, -2.29830737e-03, -9.52273700e-03, -7.81102255e-02, -6.72575226e-03, 4.10023481e-02, 1.33502893e-02, 7.12196082e-02, 7.91449919e-02, 1.06332451e-01, 2.91838944e-02, 1.12554375e-02, -5.17513603e-02, 2.96312533e-02, -2.41063610e-02, -3.10580656e-02, 8.23572800e-02, 1.54119134e-01, -1.70447096e-01, -4.04673927e-02, 6.94447905e-02, 4.83343601e-02, -5.02772257e-02, -3.28428596e-02, 1.53190047e-01, 8.89753252e-02, 1.06570058e-01, 5.56843840e-02, -1.60718590e-01, 1.17444776e-01, -8.36254582e-02, 3.70031521e-02, 1.52898403e-02, -4.18611839e-02, 7.40257204e-02, 8.25185254e-02, -1.37635082e-01, -7.17376098e-02, 6.78199008e-02, -8.81215706e-02, 5.67176081e-02, 6.23705946e-02, -4.45709564e-02, -6.51735365e-02, 5.31643890e-02, -2.68074442e-02, -4.98222336e-02, -7.49315917e-02, 4.75409776e-02, 2.72993185e-02, -5.29148318e-02, -3.01764272e-02, -8.31344426e-02, -7.06136739e-03, 1.19590769e-02, -8.71773660e-02, -9.51191119e-04, 1.18782043e-01, 7.04472736e-02, -8.43468960e-03, -5.05559556e-02, -9.79364440e-02, 4.68674749e-02, 2.39878669e-02, 2.32991297e-02, 2.93071698e-02, 1.09308004e-01, 1.04897216e-01, -2.46645957e-02, -1.45431921e-01, -6.35033175e-02, -6.99864551e-02, 4.18647937e-02, 9.04800594e-02, -1.13339603e-01, 2.39780620e-02, 1.10119253e-01, -7.00316206e-02, 8.39606300e-02, 5.32347895e-02, 8.50078836e-02, -1.46491565e-02, -2.80058570e-02, -1.03562318e-01, -1.01996504e-01, -1.23943696e-02, 8.13089386e-02, 1.05854079e-01, 7.10915551e-02, -3.05486843e-02, 9.14646387e-02, 1.04914382e-01, -4.42718044e-02, 1.22960217e-01, 1.50935294e-03, 1.63453165e-02, -9.62360948e-02, 1.62672531e-02, -1.19234286e-01, -5.11230566e-02, 5.79378009e-03, 4.64297161e-02, -1.47219161e-02, -4.55681095e-03, 2.21035648e-02, 1.58560406e-02, -5.51817715e-02, -1.01110928e-01, -3.17052454e-02, -1.26567036e-01, 6.67133108e-02, -6.68934286e-02, 4.23306301e-02, -7.08894804e-03, -1.32219106e-01, -8.05842504e-02, 1.16373412e-01, 4.01399191e-03, -1.49455629e-02, 4.90841530e-02, -5.85407950e-02, 6.61844835e-02, -4.50490937e-02, 5.20365126e-02, 5.09352162e-02, -5.27357571e-02, -5.12017868e-02, -8.57790112e-02, 7.07908943e-02, -8.33639596e-03, -5.77964354e-03, 1.16849942e-02, 1.53072923e-01, -6.46186918e-02, 6.64194301e-02, -7.99274519e-02, -1.94929317e-02, -1.33357346e-01, -4.33076024e-02, 5.08619472e-02, 6.62245229e-02, 8.59917626e-02, 1.02830157e-01, 8.42287317e-02, 7.35722184e-02, -2.70276740e-02, -5.76663986e-02, 1.71926513e-01, 1.29164547e-01, 1.15618249e-02, 6.25992939e-02, -9.26723927e-02, 1.12437926e-01, -9.42417607e-02, 4.86280508e-02, 3.60177644e-02, -3.17013785e-02, 2.53060311e-02, -4.29386199e-02, 9.29102898e-02, 4.94774953e-02, -1.48339039e-02, 6.56246841e-02, -4.86786244e-03, 2.12274380e-02, 3.22415940e-02, -9.02963951e-02, 3.87919992e-02, 4.98262281e-03, 5.76077309e-03, -5.68468869e-03, 7.33094513e-02, 5.02080508e-02, -6.80471882e-02, -1.26716699e-02, 4.32713851e-02, 1.25446310e-02, 9.63331759e-02, 1.09988064e-01, -1.02364749e-01, 1.25440741e-02, -2.98901438e-03, 3.09378132e-02, -4.08792570e-02, -2.53755860e-02, -2.16503087e-02, -1.19074341e-02, -2.99331248e-02, 3.25320177e-02, -7.26994872e-02, -4.13470380e-02, -2.56734490e-02, 3.97399478e-02, 2.72941850e-02, -8.11958909e-02, -5.79656437e-02, -8.08824413e-03, -5.03600128e-02, 1.09135564e-02, -7.48789608e-02, 1.53973160e-04, 5.32260628e-06, 6.97913170e-02, -6.17610812e-02, 6.86986148e-02, 6.34297282e-02, -6.19754102e-03, -3.63538153e-02, -6.67192787e-02, 3.78829800e-02, 3.85047905e-02, -9.19039994e-02, -1.54200122e-02, 1.10835865e-01] +icmp:[-0.09553858, 0.01514783, -0.15947372, -0.03388533, 0.01964583, -0.03570122, 0.14682499, -0.03015806, -0.10329599, 0.01333602, -0.05545053, -0.18553688, -0.03566628, -0.09085825, -0.02325991, -0.0629151, -0.00592768, 0.00153285, -0.00693261, 0.08762845, 0.07509584, -0.07761357, -0.04640122, -0.03377407, 0.01011886, 0.13973472, -0.04037851, -0.02694, 0.067249, 0.0353734, -0.1420414, 0.03008364, 0.08008964, 0.02479102, 0.12764584, 0.11904832, -0.10399797, 0.04154946, 0.02180018, -0.20876615, -0.02786749, 0.08532571, -0.08521065, -0.09027492, -0.08092985, 0.04058959, -0.07475363, -0.01969355, 0.09447953, 0.01963933, 0.1104965, 0.09735176, -0.05783308, -0.01945024, -0.06045133, -0.01047459, -0.04549866, 0.12842883, 0.13622737, 0.04008153, 0.03381507, 0.03770684, -0.08425482, 0.15338467, 0.01586761, 0.01552791, -0.00432213, -0.04249878, 0.07724465, 0.00617835, -0.05714939, -0.01642781, -0.12164457, 0.06754445, 0.08859243, -0.09132177, -0.03069839, -0.01564758, -0.1928813, 0.0673345, -0.065458, -0.0164967, -0.0776247, 0.11944281, -0.05113791, -0.01452188, -0.0903204, 0.02704812, -0.01597972, -0.0924697, -0.00715326, 0.12320943, -0.00802003, -0.03992886, -0.04436658, 0.10889284, 0.08344933, 0.01875925, -0.12637569, 0.02496753, -0.01619374, -0.03199666, 0.08419828, -0.17929266, 0.04500232, -0.06787068, -0.03509207, 0.14517736, 0.04022127, 0.14102302, 0.16106175, 0.08857799, 0.11408202, 0.05716401, 0.03514035, -0.01567551, -0.05159129, -0.02036548, -0.09845381, -0.0484938, 0.05200459, 0.12444442, -0.02811892, -0.08403943, 0.09351213, -0.11919804, 0.03729055, 0.07799201, -0.01831931, -0.06738792, 0.04494594, -0.02791205, -0.0717821, -0.06702638, 0.04135518, 0.04472524, -0.0592066, -0.02273069, 0.02967369, 0.07105682, -0.04141435, 0.1369919, 0.06533996, -0.00882535, 0.06998958, -0.0230357, -0.04409425, -0.01602998, 0.05226294, 0.11653797, 0.05107821, 0.03146043, 0.11989911, 0.09856663, -0.03056784, -0.1868386, -0.06342958, 0.00334829, 0.04243157, -0.11467104, -0.1372487, 0.03716397, -0.06001597, -0.0985228, -0.02472002, 0.08936708, 0.07318718, 0.12257622, -0.03217489, -0.05315126, -0.1345471, -0.00357083, 0.11119725, 0.02158529, 0.03205232, 0.1457477, 0.08445914, -0.14611451, -0.06174435, -0.0496036, 0.08608307, 0.02064999, -0.12418333, 0.01762942, -0.10654979, -0.04861642, 0.07457723, -0.05316183, 0.05778711, -0.11273497, 0.04023691, 0.06085913, -0.05563218, -0.00273281, -0.03095217, -0.10610982, 0.07847693, -0.06888875, -0.10980888, -0.09553554, -0.10908468, 0.12113078, 0.11918235, 0.0238528, -0.01316332, 0.01995732, -0.05941702, -0.16870868, -0.04691518, 0.05643947, -0.00210965, 0.0149818, -0.108996, -0.09072679, -0.02661509, -0.00982812, -0.00590716, 0.06531748, 0.16863495, 0.05717254, 0.06715702, 0.12113319, 0.06890136, 0.12921913, -0.04420024, 0.03929305, 0.03742132, 0.08073741, -0.03958474, 0.08132926, 0.0088872, -0.02686179, -0.01261071, 0.09545447, 0.06936958, -0.02530729, 0.06148217, -0.11196429, 0.11987161, 0.04868248, -0.09669586, 0.02788156, -0.03287568, 0.02798844, -0.04665108, 0.07783503, -0.02892599, -0.01182815, 0.0380727, 0.01327338, 0.02237704, -0.03295023, -0.01092488, -0.00990487, -0.00823949, 0.00671392, -0.03615239, 0.07601317, -0.00728608, -0.05730699, -0.06511951, -0.1058523, 0.03372194, 0.09664157, 0.06459457, 0.00951769, 0.05373775, -0.02639359, 0.01782378, 0.14660235, -0.03002783, -0.03973309, 0.02115357, -0.03128856, -0.01886823, -0.07756793, 0.09477314, -0.02681311, 0.04278613, -0.09785447, 0.0444768, -0.02518952, 0.02896714, 0.0634457, 0.00735404, -0.07681521, -0.00053938, -0.06948669, -0.12133607, 0.02113606, 0.0847505, 0.00811088, -0.00100183, -0.06583893, -0.0749491, 0.02677225, 0.04857982, -0.09206272, 0.02248381, -0.0221483] +indirectbr:[0.0437245, -0.12955448, 0.06145707, 0.08812106, -0.06796457, -0.0262422, -0.03719127, -0.01014393, 0.0191643, 0.04638183, 0.04104766, 0.08966342, -0.08054932, 0.03641221, -0.08181622, -0.1018264, -0.13807794, 0.05425666, 0.08571658, -0.05388337, 0.11164965, 0.06239635, 0.12495952, 0.10908373, 0.03394679, -0.02394871, 0.07041165, -0.09884188, -0.0575472, -0.01325792, 0.07439378, -0.11924415, -0.00622659, 0.00090478, 0.00536654, 0.01655336, 0.04380364, -0.10052383, -0.04042154, 0.006053, -0.09216594, -0.10243839, -0.10970517, 0.01031514, 0.02251636, -0.06580509, -0.11562806, -0.01288586, 0.11138391, -0.02332033, -0.00447514, -0.05615038, -0.19699445, -0.15963055, 0.10193478, -0.00741452, -0.0628508, 0.00651672, -0.00948519, -0.1062419, 0.03155736, -0.00690578, 0.06587935, 0.00430291, 0.03600308, 0.06430248, 0.0318814, -0.07448005, -0.09157537, 0.10683526, 0.01060381, -0.00142378, 0.01940386, 0.08520123, 0.12265592, -0.02028995, -0.08338989, -0.07976627, 0.03198703, 0.07132638, 0.05917634, -0.07265818, 0.00586319, -0.05602498, 0.1021356, 0.14367223, 0.01601768, 0.1377772, 0.03142086, -0.02480508, 0.12478776, 0.00490677, 0.02267657, -0.02798757, -0.02810272, -0.0987559, 0.02520395, -0.13163348, 0.12299689, 0.03237927, -0.14004306, 0.07312478, -0.07466656, 0.02074679, -0.05171656, -0.10611151, -0.08186851, -0.02973587, 0.14319098, 0.01634655, -0.11984951, -0.0120708, -0.05416887, -0.01226721, 0.01965027, 0.08846998, 0.05244021, 0.09678482, -0.09138008, -0.05996831, -0.05810679, 0.09305725, 0.01269743, 0.04256513, -0.01939313, 0.00683474, -0.05067606, -0.12754728, -0.00535858, 0.01632191, -0.05231369, 0.10957576, 0.11842386, 0.04914481, -0.06638551, -0.11857385, 0.07325786, -0.0365111, 0.02927766, -0.06744642, 0.00258837, 0.00335672, -0.08943888, -0.08878767, 0.15735625, 0.13273653, 0.07610537, -0.00392436, 0.19599482, -0.06420065, 0.0579093, -0.08469017, 0.00508205, -0.07039502, 0.11020269, -0.00919459, 0.13385361, -0.0636578, -0.1774916, -0.03534168, 0.00834356, 0.08999998, 0.04144897, -0.06178547, -0.08568013, -0.07394321, -0.07784597, 0.02364159, 0.07247967, 0.00710938, 0.01295061, 0.07506931, -0.00491438, 0.00120226, -0.068871, -0.01638826, -0.1267214, -0.02744799, 0.08382078, -0.03584118, -0.01534844, -0.01057456, 0.01903686, -0.07418132, -0.04177674, -0.09449293, -0.06787404, 0.06732345, -0.05829481, -0.04336821, 0.11197875, 0.15375039, -0.02995685, -0.01175775, 0.11225767, 0.0626118, -0.02441781, 0.07243291, 0.09471023, 0.08856894, 0.03826903, -0.0161378, -0.02754175, -0.0011996, -0.05935949, 0.05796896, 0.07008174, -0.00266729, -0.00633835, -0.05858921, 0.02044408, 0.07252266, 0.04858979, -0.00544514, -0.07479574, -0.1202512, 0.13320135, 0.09886255, -0.02080708, -0.02769805, -0.08084255, 0.01227459, -0.04195591, 0.00396715, 0.10852703, 0.11560348, -0.0149607, -0.05545843, -0.00036631, -0.04992756, -0.08023967, -0.08661673, -0.08619936, 0.02666569, 0.00390477, -0.03997204, -0.07320339, 0.07260393, -0.09108376, -0.06051976, 0.02018801, 0.06826847, -0.14597178, -0.05131523, 0.11271887, -0.06330872, -0.08218808, -0.08753324, -0.00411962, -0.07115959, -0.14324649, 0.05778499, 0.11994883, -0.12078094, -0.1487633, 0.13501762, -0.03129171, -0.06870518, -0.01337385, 0.03592378, 0.03422618, 0.01460574, -0.05434315, 0.01783877, -0.05384793, 0.01399909, 0.08673543, 0.12414795, -0.0750563, -0.01271382, 0.07779754, 0.11170746, -0.07910693, -0.16804688, -0.05891309, 0.0015096, 0.0671912, 0.02960892, 0.17800984, 0.12237854, 0.04266543, 0.04772704, -0.08435633, 0.00892044, 0.08725785, 0.04916067, -0.12810451, 0.05187617, -0.01225151, 0.05773468, -0.06862359, -0.06474284, 0.08992349, 0.07251154, -0.04510277, -0.12679473, -0.03098839, 0.03095233, 0.00941431, -0.08112182] +insertelement:[-9.36835781e-02, -4.31109369e-02, -8.06350261e-02, -1.84730105e-02, -1.44417901e-02, -6.16516583e-02, 1.29756570e-01, -1.27283946e-01, -7.71978945e-02, -8.30197558e-02, -4.79792766e-02, 8.82349536e-03, -4.98595238e-02, -9.17314067e-02, -6.54858276e-02, -1.06060550e-01, -4.22520097e-03, -7.44046941e-02, 5.85806966e-02, -8.15212503e-02, 7.35165104e-02, -2.99520940e-02, -4.66497205e-02, -3.55188288e-02, -1.59485079e-02, -1.28497735e-01, -2.70068813e-02, -3.02862693e-02, 7.66661018e-02, 1.33080110e-02, -2.20536981e-02, 2.87609790e-02, 1.06492415e-01, -7.45217130e-02, 1.26076981e-01, 1.17884822e-01, 8.32903534e-02, 1.30440101e-01, 6.34433702e-02, -2.88235024e-02, -2.89244615e-02, 8.41011479e-02, -6.98513910e-02, -5.84693365e-02, -8.94886851e-02, 6.64996430e-02, -2.47039348e-02, 1.03629738e-01, 2.28890888e-02, -2.01543584e-03, -4.89005260e-02, 1.27589867e-01, -5.63603826e-02, -2.05146782e-02, -8.87956396e-02, 1.22505747e-01, 4.46594097e-02, -1.22512616e-01, 1.38022140e-01, 4.44125012e-02, 6.03743084e-02, 5.50516322e-02, -4.95841764e-02, -4.69085276e-02, 3.81792672e-02, -8.66751969e-02, 7.63951167e-02, 3.94511595e-02, 9.34066176e-02, 1.01693692e-02, 1.75147951e-01, -1.55749068e-01, -1.18728489e-01, 6.56456575e-02, -1.41161591e-01, -1.07748181e-01, -6.07214905e-02, -1.42623596e-02, 9.48463082e-02, 1.01035684e-01, 3.36968154e-02, 7.90482238e-02, 8.66875872e-02, -9.52046812e-02, -5.03630638e-02, -1.86565649e-02, 4.68069948e-02, 2.23673861e-02, 1.94241176e-04, -4.76172715e-02, -4.34718281e-03, -3.61010917e-02, 4.36406732e-02, -1.28459558e-01, 4.03961428e-02, 2.07733493e-02, 1.08479492e-01, 4.96840198e-03, 2.21648682e-02, 1.88226476e-02, -3.32893208e-02, -3.27799842e-02, 7.37142116e-02, 6.93064358e-04, 4.46417443e-02, 5.23997173e-02, -2.20283754e-02, 8.43333378e-02, -4.37117182e-02, 1.33095691e-02, -4.87282276e-02, -5.56701533e-02, 1.04782626e-01, 5.69871515e-02, 2.09644083e-02, 2.07966124e-03, -7.79018831e-03, -4.18836921e-02, 5.20293377e-02, -3.24928723e-02, 5.23766130e-02, 1.02917016e-01, -1.26197666e-01, -9.90334302e-02, 1.10470518e-01, -1.07090086e-01, 3.10063008e-02, -3.02700046e-02, 7.88533688e-02, 8.31601769e-02, 6.48034662e-02, -2.54955888e-02, -7.06360638e-02, -1.02813564e-01, 1.60577819e-02, 3.72729823e-02, 4.38212752e-02, 1.76428277e-02, 6.98174760e-02, -3.28682698e-02, 1.87597778e-02, 2.64626015e-02, 4.06940095e-02, 1.21644795e-01, 1.48170814e-01, -1.98109671e-02, -5.23918942e-02, 1.46597652e-02, 6.29652962e-02, 2.25201454e-02, -8.67530983e-03, 3.23708728e-02, 1.12884305e-01, 1.11233421e-01, 6.20198920e-02, -1.26881048e-01, -4.05401997e-02, -8.17839205e-02, -7.46406689e-02, 8.56596902e-02, -1.40944362e-01, 6.13835491e-02, -1.24099962e-01, -7.01488629e-02, 1.40829002e-02, 1.04395077e-01, -4.46614958e-02, 1.19175613e-01, -2.75939573e-02, -9.95937884e-02, -1.06034130e-01, 1.53929184e-04, 4.94307233e-03, -7.16627464e-02, 8.52482617e-02, -1.05792642e-01, -2.59486195e-02, -1.32110029e-01, -5.95813133e-02, 9.84662995e-02, 9.63372067e-02, -1.10327549e-01, -7.07139298e-02, 1.71353556e-02, -2.40254719e-02, -1.58383534e-03, 1.06569193e-02, 1.23585589e-01, -1.09104186e-01, 2.30321456e-02, -2.28544343e-02, 1.72123860e-03, -1.17442599e-02, 6.92839315e-03, -3.15147974e-02, -7.90934265e-02, -4.06534821e-02, -5.51844016e-02, 4.90913689e-02, 9.33839381e-02, 1.02189124e-01, 6.17054962e-02, -2.53745057e-02, -1.72319353e-01, 3.07526998e-02, 1.32167479e-02, -5.13637625e-02, -2.16606632e-02, -4.25382219e-02, 8.95148963e-02, 5.11353575e-02, -8.01563114e-02, -1.21084690e-01, -1.37471423e-01, 6.67554662e-02, -5.65640302e-03, -4.52120882e-03, -1.02574239e-02, -5.99484034e-02, -5.50048463e-02, 6.03021607e-02, 8.82535204e-02, 1.22195795e-01, -1.14930719e-01, 1.78116299e-02, 4.01382595e-02, 1.39441013e-01, 8.86931494e-02, 1.44324545e-02, 1.30813777e-01, 9.06314477e-02, 7.77325640e-03, -5.70373749e-03, 8.11551884e-02, 3.47802937e-02, -1.13125838e-01, 6.18598200e-02, -1.25843778e-01, 8.45856816e-02, 4.65442687e-02, -5.79428719e-03, 1.89606082e-02, -3.09853535e-02, 4.08040285e-02, -4.29487154e-02, 4.07947460e-03, 1.39831677e-01, -2.96715517e-02, 6.59656152e-02, -1.21403569e-02, 2.27485225e-02, 3.67290415e-02, -1.11622766e-01, 3.42510529e-02, -3.06145716e-02, -2.34356653e-02, -2.63173915e-02, 7.20799416e-02, 1.19245715e-01, 8.49566162e-02, -8.75644684e-02, 6.79141879e-02, -8.77059437e-03, 8.95428956e-02, 1.19014524e-01, -6.87076673e-02, 1.35676945e-02, -3.22235487e-02, 7.07108602e-02, -9.06683281e-02, -4.52781878e-02, -4.08520699e-02, -6.48960397e-02, -3.18040997e-02, 5.35545945e-02, -8.11913386e-02, -5.51764295e-02, -7.27234036e-02, 4.11549956e-02, -9.61186364e-02, 1.78188294e-01, -1.22664928e-01, 4.30288948e-02, 7.33725205e-02, 1.71042308e-02, -4.36881110e-02, -1.84361264e-03, -9.59720928e-03, -1.23975523e-01, -6.66346997e-02, 3.09699774e-03, -5.51324487e-02, 2.12826524e-02, -8.14339817e-02, -7.18896165e-02, 2.42773704e-02, -3.00095174e-02, -9.26418677e-02, -8.40407684e-02, -1.11844048e-01] +insertvalue:[0.01742418, 0.07188454, 0.03141554, -0.08001661, -0.09820169, -0.04748088, 0.0498437, 0.07815956, -0.04877802, -0.07897945, -0.00375595, 0.12600859, -0.00295017, -0.1267944, -0.01548052, -0.08040778, 0.02835643, 0.06066934, 0.05893276, 0.05675076, 0.07143968, 0.04959161, -0.05260012, -0.03299836, -0.04708515, -0.04890129, -0.00648285, -0.04134211, -0.08849573, -0.11465414, -0.00191602, -0.00188678, 0.08703253, 0.04852767, 0.12987095, 0.12295388, 0.1334943, 0.01086046, 0.16592753, -0.02961125, -0.02895582, 0.04175628, -0.08624832, -0.07097516, -0.12140146, 0.05061273, 0.11004853, -0.02299275, 0.09267104, 0.13509738, -0.05893076, 0.00651173, -0.01767362, 0.00611273, -0.06736211, -0.03873446, -0.1285867, -0.01511887, 0.0309605, 0.04761594, 0.15058044, 0.10545012, -0.06127735, 0.05617202, -0.1521368, 0.05824976, -0.02719502, 0.12290931, 0.06751718, -0.06147508, 0.0674897, 0.02525486, -0.13260935, -0.01448068, 0.01074046, -0.11362343, 0.03315121, -0.01211037, -0.05945054, 0.01489692, 0.0289051, 0.10307086, -0.09441973, 0.1338764, 0.11324181, -0.01059378, -0.08865507, 0.09537967, 0.0397999, -0.06549895, -0.01224535, -0.10726655, 0.06547497, -0.17958076, 0.09436838, 0.11477001, -0.01109465, 0.01249717, 0.10860165, -0.06747466, 0.08784938, -0.03271628, 0.08688668, 0.03391415, 0.06998201, 0.0380835, -0.09418026, 0.09773342, -0.08117317, 0.01253946, 0.06694669, 0.06706505, 0.11725463, 0.0382516, 0.09196896, -0.11350192, -0.16902106, 0.06910685, -0.18622027, -0.04851975, -0.09504306, 0.1395872, -0.01870291, 0.04922463, 0.06240507, -0.0349325, 0.0196818, 0.11526256, -0.13686447, 0.08199427, 0.14491613, -0.01840467, -0.07215369, -0.07886483, 0.03826202, 0.05695079, -0.04022238, -0.04449581, 0.11014411, -0.01218794, 0.11167252, 0.02721996, -0.02582286, -0.17103164, -0.07832265, -0.05185046, -0.05017213, -0.05274234, 0.05789052, 0.12886962, -0.06063193, 0.0616937, 0.00700372, 0.08569232, -0.02051701, -0.08911696, -0.08678462, -0.04579409, -0.05303261, 0.05219667, 0.06304422, 0.02788827, 0.06481604, -0.09049307, 0.10744125, 0.10226969, -0.03410416, -0.06151334, -0.09516358, -0.14443623, -0.10001127, 0.00269765, 0.07268791, -0.04974546, -0.06097336, 0.13494311, 0.04426281, 0.06095106, -0.0635848, -0.02770803, -0.01554013, 0.07802138, -0.07719083, -0.02135228, 0.12186512, -0.10861876, -0.03976466, -0.10817777, 0.07519622, -0.02337073, -0.11836238, 0.07447985, -0.03533899, -0.04589074, -0.02226664, 0.0397555, 0.00025616, -0.07393943, -0.11202484, -0.07663035, -0.06615309, 0.04592097, -0.0148181, 0.01919341, -0.01098082, -0.09610975, 0.02095729, 0.02509749, -0.04271089, 0.03840375, -0.08071079, -0.00859342, 0.09394158, -0.08127508, 0.01211697, -0.13886112, -0.00510498, -0.09598204, 0.05230223, -0.10692404, 0.08612517, 0.06379668, 0.0560934, -0.02969407, 0.07225595, 0.058513, -0.06039088, 0.04383919, -0.08409459, 0.08181274, 0.07409648, -0.04508009, -0.06993552, 0.07876792, 0.05348654, -0.00938632, 0.12578888, -0.1000522, 0.09799515, -0.11025006, -0.12027223, 0.08725113, -0.03479601, -0.07306311, -0.04928603, 0.01803817, -0.05228031, 0.09152879, 0.01609378, 0.00424922, 0.01094239, -0.10263173, 0.00470191, 0.06408476, -0.01036088, 0.03046412, -0.13917412, 0.06778325, 0.01174786, -0.06140591, 0.0477372, 0.05364909, 0.01520497, 0.09709202, -0.00271701, -0.09457321, 0.10244992, 0.02445798, 0.00770526, -0.02959928, -0.03404194, 0.0196333, 0.00962243, -0.03222118, -0.05364431, -0.09892432, 0.12881036, -0.07587764, -0.07315861, 0.01845771, 0.04567926, 0.09009259, -0.12839803, 0.12762973, -0.12612832, -0.05956718, -0.01036918, -0.01720629, 0.06626347, 0.10141335, -0.09851315, -0.11625332, -0.0051581, -0.16117796, -0.07471429, 0.054362, -0.00513102, -0.0632071, -0.06397466, 0.0067286] +integerTy:[8.72068927e-02, 8.54858682e-02, 3.00691612e-02, 2.38592178e-02, 5.29291146e-02, 1.36861086e-01, -4.85976711e-02, 3.58142667e-02, -4.32398133e-02, 1.27960339e-01, 4.33228165e-02, -2.68367417e-02, 3.03497184e-02, 8.63329396e-02, 3.26692201e-02, -8.16425681e-03, -1.00841686e-01, -1.24702724e-02, -4.50095199e-02, 2.90722642e-02, -8.96179602e-02, -7.94858951e-03, 7.26635158e-02, 7.10385367e-02, -1.09969415e-01, 5.64849377e-02, 7.75762498e-02, 9.16955769e-02, 1.14705198e-01, -7.41495639e-02, 1.47703653e-02, -1.17080487e-01, -3.50390859e-02, -9.20044333e-02, 1.62207037e-02, -9.78427082e-02, -4.99952845e-02, -4.92684469e-02, -1.68003105e-02, 4.56848741e-02, -1.09781370e-01, -5.53714074e-02, 4.07147082e-03, 1.20181546e-01, -8.88481885e-02, -1.46920517e-01, -7.43949786e-03, -2.39841919e-02, -1.30855381e-01, 5.64048924e-02, 1.13302395e-02, -6.52544722e-02, 3.64956558e-02, 6.78007677e-02, 2.62482781e-02, 5.40697984e-02, -9.02806595e-02, 1.51498513e-02, -1.74457803e-02, -9.48013738e-02, -6.16113022e-02, -3.64858247e-02, -8.79625231e-03, 1.11932484e-02, 8.21904764e-02, 5.95576279e-02, -4.15617786e-02, -2.96352692e-02, -1.37460995e-02, -1.00492530e-01, -5.31160180e-03, -3.14070396e-02, 1.14974387e-01, 1.15371555e-01, -2.35801451e-02, 4.12384011e-02, 8.89094323e-02, -1.06653437e-01, -8.76105279e-02, -5.29190823e-02, -6.08192524e-04, 9.54237506e-02, -1.35790939e-02, -8.32592845e-02, 1.07156880e-01, 9.39797685e-02, -7.65632838e-04, 1.43190354e-01, -1.02901548e-01, -1.09902635e-01, 1.11153297e-01, 8.82742703e-02, 2.23820545e-02, -4.42568772e-02, -3.82611714e-02, -1.72569193e-02, -8.40130001e-02, 8.01045001e-02, -1.50677990e-02, 1.24694996e-01, 1.23749822e-01, 9.43250507e-02, -9.67978314e-02, -8.27954561e-02, 6.58720732e-02, -1.52398556e-01, 7.09719285e-02, -4.22057025e-02, 5.13293920e-03, -6.17443472e-02, 8.05736240e-03, -6.66756928e-02, 8.65137503e-02, 1.32937253e-01, -1.61564648e-02, -4.32972945e-02, 1.02846868e-01, -1.56334578e-03, -2.42371559e-02, 8.31776112e-02, -1.14388175e-01, -2.97580864e-02, 1.03383204e-02, 1.10150374e-01, 3.32263708e-02, 1.20390323e-03, -1.10854648e-01, -9.40232351e-02, -3.32159759e-03, -1.18435360e-01, -1.24705046e-01, -1.13538794e-01, 8.52296501e-02, 7.20319599e-02, -5.87665811e-02, -4.81155850e-02, 8.70199725e-02, -9.71734002e-02, -9.85056683e-02, -6.94375560e-02, -1.29307806e-02, -2.17252914e-02, 1.14023499e-01, 3.56375836e-02, -4.17352319e-02, 6.50264025e-02, 7.87957981e-02, 7.47724175e-02, -1.33920789e-01, 6.21043965e-02, 1.03246026e-01, 1.01272881e-01, -2.04439424e-02, -8.86519924e-02, 8.02475289e-02, -2.96996105e-02, 2.94593666e-02, 3.83464172e-02, 6.51025027e-02, -2.20275670e-02, 6.06875755e-02, 1.23218544e-01, -7.86373913e-02, 6.35472313e-02, -1.07013270e-01, -2.41999365e-02, 1.24180168e-02, -1.37575613e-02, -9.50686410e-02, -6.43078163e-02, 8.15081373e-02, 8.94303620e-02, -1.50073599e-02, 2.11162828e-02, -7.18389228e-02, 1.09957673e-01, 1.03048868e-01, -1.93863660e-02, -1.02180623e-01, -4.23571048e-03, -4.68272194e-02, 4.22628708e-02, -3.13617513e-02, -7.69556612e-02, -8.19172058e-03, 4.70974594e-02, 1.37952253e-01, -8.53510574e-02, 7.09642991e-02, 8.78501311e-02, -1.58692911e-01, -3.07852458e-02, 8.42145160e-02, 4.65026982e-02, 6.86933622e-02, 4.20797504e-02, 1.17703736e-01, 1.05411910e-01, 1.02497779e-01, 2.46969480e-02, 4.29456383e-02, -4.31539863e-02, -5.96597977e-02, 3.65205109e-02, -8.56915191e-02, -1.13917641e-01, 7.01605231e-02, -2.21280847e-02, 4.60618325e-02, -5.05162477e-02, 3.38501073e-02, 7.11128786e-02, -3.05256597e-03, 5.22787832e-02, -1.51791908e-02, -2.40239054e-02, 8.89582261e-02, 5.71999066e-02, -1.23615479e-02, -1.21508807e-01, -5.61931655e-02, -9.68456715e-02, 8.03136900e-02, -2.21266914e-02, 7.87141845e-02, -1.12628549e-01, -7.11607859e-02, -2.93527097e-02, 5.34558892e-02, 8.38830918e-02, 1.15191527e-01, 5.37594818e-02, 7.84324259e-02, -6.64020237e-03, -1.78326461e-02, 5.80963083e-02, -6.33984059e-02, 8.44091550e-03, -4.49126698e-02, -3.71888392e-02, -3.49588171e-02, -9.37498808e-02, 1.03265487e-01, 4.59015071e-02, 9.30680856e-02, -5.84214404e-02, 1.88624933e-02, 1.14168778e-01, -2.70837229e-02, 6.46583959e-02, -9.30127501e-02, -7.10135475e-02, -3.42038833e-02, -7.37369061e-03, -8.97166878e-02, -4.34481278e-02, -5.05108684e-02, -6.89868778e-02, -3.47492583e-02, -7.36678392e-02, -1.09426910e-02, -3.80335376e-02, -4.74562161e-02, -8.31894279e-02, -9.47090536e-02, 1.20318085e-01, 7.27759078e-02, -1.06716685e-01, 1.19211458e-01, 5.34564070e-02, 5.58266267e-02, 7.06450790e-02, 3.46601307e-02, -1.10049553e-01, -9.66658369e-02, 7.97158107e-02, -3.55905853e-02, 1.14920894e-02, -4.99503277e-02, -2.07493640e-02, -1.58775169e-02, 8.72298796e-03, 8.02236050e-02, -1.70726292e-02, 9.63105112e-02, 1.28211174e-02, -1.08660661e-01, 2.97720283e-02, -4.53122705e-02, 1.15259811e-01, 9.62677300e-02, 6.39849529e-02, -1.61324158e-01, 5.78179285e-02, 3.99601385e-02, 1.10919334e-01, 1.33347394e-05, 9.64442417e-02, 5.13439626e-02, 8.44675452e-02] +inttoptr:[-0.0885331, 0.02115573, -0.02109313, -0.0623556, 0.00758153, -0.02892798, -0.00288621, 0.00054952, -0.11267169, -0.10104184, -0.04629666, 0.10855006, -0.10957469, 0.05248141, -0.05709977, 0.018641, -0.00844262, 0.00043561, 0.05270802, 0.07348409, 0.06582648, -0.06717359, -0.02751167, -0.05553792, -0.00976205, -0.11727048, -0.01684756, -0.02708339, 0.03693484, 0.00827153, 0.03995972, 0.02713631, -0.00026466, 0.13631676, -0.06262175, 0.00913407, 0.08735787, 0.14095652, 0.0191396, -0.0360763, -0.02453845, 0.0584747, -0.02525973, -0.03779308, 0.08466373, -0.07042768, -0.04915256, 0.06993365, 0.05826705, -0.09334201, -0.01986252, 0.12274549, -0.05559909, 0.01942172, -0.10247271, 0.1279866, 0.00135621, -0.03084495, 0.1019552, 0.0346045, 0.06120107, 0.18956313, -0.11893158, 0.02490697, -0.08046787, 0.10123851, 0.00028882, 0.06527413, -0.06322502, -0.02385161, 0.08129825, -0.01086236, -0.09403549, -0.01925551, 0.15586886, -0.0709485, 0.00135218, -0.01315174, -0.02784342, -0.12527625, -0.05691656, 0.07491413, -0.02412665, 0.12325392, -0.05045773, -0.01087675, 0.07812787, 0.016891, -0.01672047, -0.10155611, 0.06586105, 0.08598839, 0.00133693, -0.00068772, 0.03176231, 0.10442666, 0.06891265, -0.08838659, -0.04438808, -0.07479845, 0.07155068, -0.10582063, 0.07633012, -0.06054809, 0.01254246, -0.05601385, 0.03461446, -0.11689439, -0.10795604, -0.10281199, -0.10209754, 0.09120893, 0.02878697, 0.0528082, 0.13610053, -0.10456748, -0.01671452, -0.11083104, 0.05579025, -0.05447328, -0.00982895, 0.02386293, 0.08361547, 0.07870576, 0.03877776, -0.12186158, 0.05897968, 0.0648481, -0.0810039, -0.0611469, 0.04045827, -0.00904581, -0.0512176, -0.09447633, 0.0399017, 0.04350073, -0.07418688, 0.01531971, 0.0631519, 0.07635326, -0.08801176, 0.06682488, -0.01017109, 0.07242182, -0.01536113, -0.06318761, -0.04121631, -0.05376236, -0.0095467, 0.11261221, 0.0465709, 0.04155396, 0.12707801, -0.02769164, 0.03851377, 0.01397761, 0.03822321, 0.01393413, 0.08869939, 0.05425125, -0.13420618, 0.08295019, 0.0520622, -0.08209619, 0.11009998, 0.02368659, 0.09458021, 0.0883598, -0.07498528, -0.1059668, -0.13954633, -0.00113032, 0.10986465, 0.05930838, 0.09502997, -0.00344664, 0.11654367, 0.04232535, -0.03992614, 0.09191837, -0.04074951, -0.1033013, 0.01602288, 0.0156846, 0.00427574, -0.13565297, -0.1249646, -0.07522345, 0.0139233, 0.08438171, 0.04500853, -0.01681448, -0.05175139, 0.04587532, -0.02993722, -0.09102031, 0.07547644, -0.0622533, 0.04054854, -0.08156628, -0.01835029, -0.00838624, 0.11000659, -0.05322577, -0.0124923, -0.05338654, -0.03409367, -0.03324152, 0.01029755, 0.03621163, 0.05464811, 0.05752187, 0.09240341, 0.07660841, -0.03183801, -0.02101547, -0.00548133, -0.01216643, -0.00936265, 0.02454081, -0.00542744, -0.00244519, 0.09239306, 0.01559581, -0.04078994, 0.0935535, 0.09121027, -0.09258508, -0.04211883, 0.05747961, 0.00750886, -0.1265068, 0.08450764, -0.09621923, 0.03002588, -0.14423303, 0.05829254, -0.01904511, 0.11853895, 0.04714726, -0.06171126, 0.01596007, -0.02957813, -0.08640247, -0.04360962, 0.0308143, -0.04128066, -0.01851161, 0.00135809, 0.03567776, 0.04289054, -0.02534815, -0.08468673, -0.00503131, 0.01826607, 0.0134359, 0.08004753, -0.02428627, 0.17825393, 0.07439671, -0.03497915, -0.07861307, 0.06415822, 0.0331373, 0.00483232, -0.09799696, 0.05187158, -0.00733222, -0.00564636, 0.01035915, -0.02624168, 0.05212816, 0.0361061, -0.02314619, -0.06583062, -0.07668985, 0.09041167, 0.04089002, -0.10598364, 0.05850371, 0.02552528, -0.12766455, 0.1133322, -0.09468889, 0.00659555, -0.08742809, -0.00134699, 0.12892447, 0.10297903, -0.04160256, 0.05113604, 0.04303969, -0.11133427, 0.02739863, -0.10144018, 0.04855799, -0.00317739, -0.08670578, 0.04686113, -0.00795867] +invoke:[-0.07532754, -0.167012, 0.0889641, -0.05102497, 0.08758739, -0.05432454, -0.11603996, 0.10070459, 0.0638376, 0.02811254, -0.0524672, 0.00076289, -0.04139067, -0.11157651, -0.02496581, -0.09288494, -0.00316074, -0.06452893, 0.04788792, 0.08627206, 0.07177735, 0.13254738, -0.03305432, -0.02311744, 0.01937018, -0.03088326, -0.11960628, -0.02636983, -0.08455819, 0.01419605, 0.13672581, 0.02926547, 0.07979564, 0.14406063, 0.11924985, 0.11687908, 0.05775299, 0.0297873, -0.05767437, 0.14457285, -0.02565921, 0.06102538, -0.07030712, -0.05622522, 0.02664279, 0.06069532, -0.07709569, -0.00306348, 0.04933808, -0.01299082, 0.00920366, 0.11358994, -0.05633866, -0.01834722, -0.05761332, -0.11839049, -0.15525866, -0.03108068, 0.03594157, 0.04290681, -0.13077794, 0.00797948, -0.1124377, 0.02297579, -0.01999388, 0.05797448, 0.06576005, 0.12377492, 0.08446079, 0.01111357, 0.13023302, -0.09850673, -0.10632703, 0.05788204, 0.01185531, -0.06215954, -0.01243308, -0.0145299, 0.16732568, 0.08574904, 0.06852912, -0.01278282, 0.02302608, 0.01050962, -0.04714488, -0.01567677, -0.08560929, -0.01534387, -0.01611913, -0.04883228, -0.00732262, -0.01343042, -0.11434251, -0.06845029, -0.16129974, 0.10871159, 0.01822002, 0.01489729, 0.1290466, 0.02777857, -0.02476728, -0.03212703, 0.08235995, 0.12728688, -0.08143711, -0.08352611, 0.01866726, -0.01025738, 0.03472659, 0.01114282, -0.10385379, 0.07718372, 0.08391277, 0.02901166, 0.0285804, 0.12114172, -0.0355487, 0.01591273, -0.09024682, -0.00043247, -0.07146467, 0.08632147, 0.0126816, 0.04296397, 0.02684898, -0.02910397, 0.04280469, 0.06346837, -0.01138658, 0.01144454, 0.05496375, -0.02676207, -0.07055224, 0.03515587, 0.04073159, 0.04197603, -0.09294911, -0.00948324, 0.06831768, 0.0667207, 0.0038725, -0.09658922, 0.04439896, -0.07607443, 0.17542128, -0.02042414, -0.05052754, -0.00761649, 0.04819491, 0.02972968, 0.04510465, 0.02940578, 0.11359502, 0.00325627, -0.02008901, -0.13547316, -0.07091772, -0.0642134, 0.04263884, -0.11602056, -0.08367916, 0.04081418, -0.02557126, -0.07520736, -0.03348392, 0.0998742, 0.08595458, -0.01397352, -0.01111755, -0.01247061, 0.01263036, -0.00594803, 0.07579129, 0.09687059, 0.08276363, -0.02612344, -0.14146116, -0.16583341, 0.09931188, -0.02959447, -0.01073966, -0.09018064, -0.09343915, 0.01745486, 0.09778757, -0.04569153, -0.00392934, 0.1272026, -0.01622337, -0.10889335, 0.13123491, 0.01989724, -0.03043707, -0.04271727, -0.03133549, -0.08797856, -0.01616314, -0.06663469, 0.03768825, 0.00208609, -0.01127641, -0.10227659, 0.11650145, 0.00489471, -0.01226566, 0.04741845, -0.05884699, 0.17043374, -0.04499361, 0.05606194, 0.02546243, 0.02398698, 0.08167611, -0.07180697, 0.0630327, -0.00527971, -0.00613463, 0.08939517, 0.05267329, -0.01143259, 0.05358092, -0.12148132, -0.05651722, -0.12382705, -0.04273436, -0.10128691, 0.0723505, 0.07125434, -0.06133939, -0.06274957, 0.07449492, -0.02585742, 0.05917037, 0.09355047, 0.16386963, -0.15172781, 0.06034711, -0.11965115, 0.11993165, 0.04675814, 0.05942528, 0.03241117, -0.03254911, 0.0559864, -0.04175553, 0.03332508, -0.08151624, 0.06284678, 0.0022159, -0.00572282, 0.02198933, 0.09725954, -0.00122962, 0.04116456, 0.00491709, 0.00331574, -0.1003942, 0.07308196, 0.00031289, -0.05708904, -0.06578399, -0.0639078, 0.16825719, 0.09481206, -0.00071811, -0.08930777, 0.03559149, 0.14596134, -0.14971797, -0.02860818, -0.02931084, -0.02314179, 0.03252716, -0.03098546, 0.02085111, -0.01969797, 0.09749901, 0.00248862, 0.04113216, 0.03841913, 0.04172938, -0.03004694, -0.12515527, 0.00898371, -0.11059473, -0.07422434, -0.00075853, 0.01261281, -0.12135503, -0.06395444, 0.03504536, 0.10616986, 0.02629486, -0.11066279, -0.07368347, -0.12910146, 0.01141759, -0.0908843, 0.11384922, -0.01455024] +label:[9.53550041e-02, -9.27495062e-02, 5.52002825e-02, -1.09754190e-01, 7.53188366e-03, 3.31895985e-02, -5.30212522e-02, -8.20814893e-02, -4.58581150e-02, -1.50503367e-02, 1.28660932e-01, 5.99055737e-02, 2.66844016e-02, -6.38526976e-02, 9.57698449e-02, -6.35713711e-02, -7.60733783e-02, -5.50635979e-02, 1.20269515e-01, 1.21334478e-01, -1.15378583e-02, -1.19466066e-01, 3.82127166e-02, 4.74546030e-02, 1.32990912e-01, -3.85897583e-05, -6.96677342e-02, 5.78617267e-02, 1.34428769e-01, -3.71808410e-02, 5.59526794e-02, -5.03892675e-02, -1.07426286e-01, -5.60902916e-02, -1.15057938e-01, 4.48098965e-02, 1.90075510e-03, -4.15440984e-02, 7.56085292e-03, -8.04412663e-02, 4.73199822e-02, -3.53840413e-03, -2.13466212e-02, 2.92018298e-02, 5.50660565e-02, 1.21231988e-01, 7.23385485e-03, -5.34027740e-02, 2.31309123e-02, 6.90807328e-02, -9.67910364e-02, 1.06953122e-01, -1.23422250e-01, -9.43154991e-02, -1.20092340e-01, 4.76404876e-02, -9.08847302e-02, -8.19521025e-03, -1.01477310e-01, -3.70577276e-02, 9.04631466e-02, -6.91656768e-02, -4.63292226e-02, -7.08095580e-02, 6.95066974e-02, -1.15591269e-02, 5.29347593e-03, 1.02679119e-01, 1.43701196e-01, -1.01161584e-01, -7.92520419e-02, 7.18634576e-02, 1.32529691e-01, 4.06859033e-02, 6.38050586e-02, 6.22183830e-02, -2.97018792e-02, -9.69863310e-02, -7.23971650e-02, 4.58373763e-02, 1.56779792e-02, 5.28960191e-02, -3.42743434e-02, 6.15281500e-02, 2.62988210e-02, 5.71549013e-02, 7.25416243e-02, 5.88519983e-02, 2.78779138e-02, 7.86861852e-02, 5.64613119e-02, 3.37303840e-02, 1.13128178e-01, -1.11631542e-01, -9.44688618e-02, 6.56108186e-02, 8.82618204e-02, -6.89422190e-02, 8.03836361e-02, 1.09091863e-01, -7.62347281e-02, -7.88063928e-02, 1.31744280e-01, 6.91329390e-02, -1.60633437e-02, -1.82418041e-02, -9.83942524e-02, -7.67710805e-02, 7.34164193e-02, 7.56592825e-02, -3.38768475e-02, -1.01145476e-01, -1.26640081e-01, -1.18710689e-01, -1.65428370e-02, 9.01326537e-02, 8.53719637e-02, -1.62813459e-02, -2.51728594e-02, 1.05163470e-01, -1.93695445e-02, 9.79299247e-02, 5.70461005e-02, -1.71598780e-03, -8.27990621e-02, 1.14312246e-01, -1.40872523e-01, -8.88019502e-02, 6.91642165e-02, 9.17278156e-02, -1.99941862e-02, 4.49926443e-02, 3.73079814e-02, 8.05846602e-03, -4.47782278e-02, -3.54938433e-02, -4.53515835e-02, 1.31996840e-01, -3.45374504e-03, 1.21951014e-01, 5.75905666e-02, 6.24952503e-02, -3.44395824e-03, -1.31774396e-02, 1.21527769e-01, 5.76590821e-02, 3.57342325e-02, -4.07516807e-02, 1.21305875e-01, -1.08562157e-01, -3.11034638e-02, 8.99452791e-02, 1.97596289e-02, 1.55572698e-01, 6.07700199e-02, 8.16772953e-02, 5.33437394e-02, 5.76787703e-02, -1.30255312e-01, -7.41264895e-02, 1.22702688e-01, -9.37314518e-03, 9.59333330e-02, -2.39985529e-02, -8.29284117e-02, 6.13288507e-02, 1.33103594e-01, 6.85613081e-02, 8.18771869e-02, 9.64089632e-02, 8.22816864e-02, 1.02393832e-02, -1.31925300e-01, -4.84000370e-02, -8.60962495e-02, 5.73783889e-02, -8.59706700e-02, 8.85361731e-02, 3.00255120e-02, -1.13076359e-01, -1.06914803e-01, 1.31922990e-01, 9.84325334e-02, 7.59592354e-02, -2.19262633e-02, -3.45423557e-02, -9.89824161e-02, 8.03635344e-02, 8.90212879e-02, 8.35391730e-02, 6.80453405e-02, 8.70432556e-02, 4.65187393e-02, 1.35094142e-02, -1.12116486e-01, 1.14162214e-01, -1.07090995e-01, -1.33950144e-01, -3.01331375e-02, 7.53073245e-02, 5.50422817e-02, -6.36343509e-02, -9.58277732e-02, -5.57387099e-02, 6.06559366e-02, -8.16733465e-02, -1.17099166e-01, 1.14436924e-01, 7.94870555e-02, 1.23163596e-01, -9.33696330e-03, 8.16058815e-02, 1.78812984e-02, 1.08271919e-01, -1.03225149e-01, -3.02371774e-02, 6.43861294e-02, 4.02518138e-02, -3.43878311e-03, 5.51895313e-02, -9.61888433e-02, 8.07816014e-02, 4.99837138e-02, 8.75320584e-02, 3.04134078e-02, 1.02067567e-01, 2.72879917e-02, -1.80094112e-02, 9.24484953e-02, -1.06043145e-01, -1.14640864e-02, -6.96555823e-02, -7.06871003e-02, 6.71325671e-03, 1.23043150e-01, 7.96276107e-02, -2.61978991e-02, -6.55229837e-02, 5.21888919e-02, 1.15726262e-01, 8.79363343e-02, -1.20891206e-01, -8.79916623e-02, -3.21528735e-03, 3.07840854e-02, 8.76064077e-02, -2.35154014e-02, 1.17457122e-01, -1.31736800e-01, 7.90271237e-02, -5.52300625e-02, 4.49693054e-02, 6.44138530e-02, -3.66451778e-02, -6.69680461e-02, 6.45613819e-02, -1.02342464e-01, 1.38216570e-01, 5.29901460e-02, 1.33124277e-01, -8.08052793e-02, 9.34063718e-02, 7.92456418e-02, 7.87455589e-03, -7.80481696e-02, 1.07034288e-01, -4.33654804e-03, 5.24209142e-02, 5.79473078e-02, 5.10052592e-02, -9.26724076e-02, 4.67478670e-02, -3.39163691e-02, -9.74065289e-02, 9.83062088e-02, -1.24536447e-01, 3.24842781e-02, 1.38133228e-01, 9.81462598e-02, 9.64062139e-02, 1.26441583e-01, 1.11116827e-01, -2.75300667e-02, 8.96668956e-02, -4.59614508e-02, -1.30257711e-01, -8.04038271e-02, 2.80405991e-02, 1.03386194e-01, -1.03741869e-01, -1.16062857e-01, 7.90039152e-02, 1.01603493e-01, -6.15907311e-02, -3.31989117e-02, -5.33299111e-02, -1.27021894e-01, -1.84400603e-02, 8.84147584e-02, -8.54286030e-02] +landingpad:[-0.03488839, -0.06490408, 0.0060413, -0.06927884, 0.15260838, -0.06099026, -0.00397648, 0.08873805, 0.01612807, -0.05855919, 0.04434897, 0.05616912, 0.08454572, -0.05903976, -0.09037096, -0.00241409, -0.00510367, 0.0017878, -0.10430234, 0.10178001, 0.0387981, -0.11447287, -0.00045878, -0.02267542, 0.01557574, -0.04853947, 0.06744435, 0.00567707, -0.08871374, 0.01321212, 0.00515057, 0.05596952, -0.04542505, 0.14553322, 0.11026868, -0.07660165, -0.10521657, 0.0222892, -0.0931456, -0.03122595, 0.10520653, -0.12588984, 0.0649517, -0.06876935, 0.01302561, 0.09363627, -0.10388417, -0.02480699, 0.05225219, -0.08882165, 0.00751059, 0.08771913, -0.12650017, -0.04416669, 0.10192084, -0.1226875, -0.09282011, 0.04268797, -0.06485897, 0.04199084, -0.07820839, 0.0660226, -0.0954388, -0.03332349, 0.02450497, -0.0621039, 0.08471561, -0.07909075, -0.01796925, 0.15537491, -0.01385021, 0.05185932, 0.05234884, -0.04307427, 0.08952271, 0.09528245, 0.00183257, 0.04113338, -0.03141973, 0.0932381, 0.07709266, -0.0160587, 0.08031867, -0.10673119, 0.03213306, 0.11209933, 0.01654586, -0.0434255, -0.06588677, -0.06579079, 0.10826658, 0.00095897, -0.11066258, 0.00558249, 0.00671814, 0.11476037, -0.04692729, -0.0802976, -0.15074812, -0.10854586, 0.0138902, -0.11948931, -0.03698508, 0.0320606, 0.04047817, 0.02318628, 0.03179781, 0.04349409, 0.09584239, 0.0103828, -0.1091058, 0.0737339, -0.04819943, -0.00302801, 0.04044167, 0.09913982, 0.0018383, 0.06725512, -0.06682283, 0.05774877, 0.08075701, -0.00908047, 0.09256598, 0.04531379, 0.00436355, -0.01513304, 0.07865033, 0.10509151, 0.02427559, -0.02693655, 0.04131239, -0.09562214, 0.11038079, -0.12067178, 0.03272357, -0.04839956, 0.03938299, 0.03385077, -0.06284482, -0.060876, -0.03035336, 0.02423887, -0.05513691, 0.01069012, -0.02426378, 0.0831081, 0.07169402, 0.0446768, 0.02080742, 0.01854707, 0.05558095, -0.09847429, 0.14195263, -0.04150117, -0.10590169, -0.06981271, 0.13050304, 0.00079748, 0.04533535, 0.00832357, -0.06266447, 0.09629231, 0.01587909, -0.07028085, -0.10301346, 0.02932642, 0.08005075, -0.12479724, -0.06155153, -0.02671044, -0.11266525, -0.03047351, 0.1027495, -0.0492362, 0.09286155, 0.03991342, 0.04386762, 0.00906081, 0.00067793, 0.00412033, -0.03350515, -0.08049987, -0.06114959, 0.07192463, -0.05537101, -0.00625112, -0.02952101, -0.00489366, 0.01992018, 0.10234252, 0.12134399, -0.09684817, -0.04303047, -0.02876631, 0.08228959, -0.13490003, 0.02282484, -0.02558905, 0.09782379, -0.10207285, 0.03282068, 0.01091513, 0.11939496, 0.02211536, -0.09128448, 0.07328792, 0.0063509, -0.00334273, 0.09711017, -0.10447463, -0.04824791, 0.0211299, 0.11043033, 0.08901092, -0.08170877, 0.0014522, -0.0998985, -0.01307405, 0.04409882, 0.04292607, -0.04463692, -0.11509031, -0.05031509, 0.0310502, -0.04356449, 0.10889044, 0.0083378, -0.09725495, -0.01313258, -0.06045998, -0.07607647, 0.0186511, -0.11360985, -0.01232875, 0.03713035, 0.10944588, 0.02913404, 0.0719714, 0.1277305, -0.05940701, 0.00801057, 0.06924262, 0.07707712, -0.07309552, -0.0389465, 0.0232208, -0.08994356, -0.12999192, 0.13514961, 0.00659981, 0.06425989, -0.02184968, 0.14509846, -0.14209181, 0.05617069, 0.01941893, 0.02668067, 0.09702462, -0.11082906, -0.03250733, 0.08597013, 0.01340891, 0.16911978, -0.03576885, -0.02257468, -0.05004693, -0.08324446, 0.15541685, 0.09466253, -0.00823841, 0.145814, 0.00485849, 0.03786717, 0.06632535, 0.02323003, 0.00918003, 0.10305001, 0.08158989, 0.01034539, 0.05702501, -0.11499847, 0.02938991, -0.10918879, -0.13242275, 0.10540206, -0.06860102, 0.0744086, -0.00750414, 0.10916404, 0.04995371, 0.12143692, -0.02853443, -0.12468117, 0.10068953, -0.11446356, -0.14180607, 0.08725458, 0.09772653, -0.07504933, -0.02879323] +load:[-0.08827578, 0.07791463, 0.13856906, -0.04628001, 0.08286175, -0.02131927, 0.06440105, 0.1002536, -0.14252089, 0.04536394, -0.03982883, 0.11255047, -0.01520411, -0.11051929, -0.02112005, -0.13065371, -0.00795815, 0.00348915, 0.05505504, 0.07659137, 0.07228495, -0.06142965, -0.04317892, -0.02218238, -0.00127712, -0.20661671, -0.01893728, -0.02514921, 0.06410161, 0.08693684, 0.11832809, 0.02903653, 0.07089093, 0.01788224, 0.06742475, 0.11473638, 0.05855435, 0.02660412, 0.00977218, -0.05513901, -0.02752171, 0.04899304, -0.06936218, -0.08460011, 0.02664277, 0.05513791, -0.08388752, 0.00275819, 0.0772733, -0.12085515, -0.19706282, 0.10562467, -0.05460037, -0.01696244, -0.00296234, 0.07758176, 0.06074069, -0.08811489, 0.08397932, 0.04176225, -0.00490727, -0.12142345, -0.09895667, 0.06350474, -0.01523834, -0.06563285, -0.03086512, -0.02753078, 0.08241763, 0.0219628, -0.14152084, 0.08721795, 0.04592305, 0.07490484, 0.08167522, -0.10755883, -0.04960551, -0.01441737, -0.23313272, -0.00255447, 0.0234442, -0.02303518, 0.06588645, 0.10638574, -0.02476816, -0.00866674, 0.1002475, -0.00713161, -0.01696706, -0.09328194, -0.00967948, 0.10123356, -0.05294377, -0.07287566, -0.09690869, 0.1045915, 0.09092148, 0.0166956, 0.00124032, -0.06467171, -0.01851586, -0.02958569, 0.08201079, -0.18165495, -0.07001838, -0.06805637, -0.0866647, -0.02111665, 0.03893368, 0.13322783, -0.10135967, 0.07473334, 0.01306058, 0.06709254, -0.1421136, 0.11723997, -0.09166259, 0.04861989, -0.04400211, 0.00624133, 0.02055807, 0.03907252, 0.00501852, 0.04830265, 0.07762865, -0.10773666, 0.0598143, 0.05074663, 0.01372638, -0.08358043, 0.04746721, -0.02632936, -0.04071122, -0.06893966, 0.04545105, 0.00816531, -0.05185477, -0.02394361, 0.06485257, 0.06283171, -0.00056492, -0.10136054, -0.00213462, 0.08426701, -0.12526248, -0.00677133, -0.04931496, -0.00358448, 0.03535356, 0.03795735, 0.04865477, 0.02865966, 0.10339585, 0.10467499, 0.00933138, 0.17178108, -0.07707784, -0.05279705, 0.04461518, 0.10370965, -0.08226284, 0.04397186, -0.05126091, -0.10172143, 0.03951101, 0.03920138, 0.06358302, 0.1165706, -0.12944378, -0.11973878, 0.04722974, -0.01289798, 0.10656548, 0.09136266, 0.0079678, -0.10371708, 0.08739899, -0.09077972, -0.05586094, 0.02022084, 0.11694596, -0.08329058, 0.07823875, 0.01617237, -0.13988516, -0.04733336, -0.00356746, -0.06845965, -0.03739309, -0.03268738, 0.02417932, 0.06397672, -0.04467686, -0.04569131, -0.02704854, -0.09193333, 0.04355227, -0.06641795, 0.04196784, 0.00369309, -0.01182413, -0.15610132, 0.03697359, 0.00082177, -0.01360192, -0.03183023, -0.05843419, -0.14881958, -0.04293032, 0.04307102, 0.00189258, -0.08129147, -0.07912164, -0.11988801, -0.03127957, -0.00739899, -0.00648599, 0.04326233, -0.16487963, 0.00942957, 0.06801938, 0.09810074, 0.01451892, -0.03741273, -0.0426867, -0.01831807, 0.01052505, 0.04764775, -0.03872077, 0.10100275, 0.06159967, -0.03694623, 0.09145232, -0.14354502, -0.1293202, -0.00124114, 0.05671953, -0.12401493, 0.11564261, 0.04733442, 0.09856252, 0.06662862, -0.03278646, -0.07236851, -0.03155778, 0.05093737, -0.12727393, -0.01506837, 0.03714519, -0.02207867, 0.02143319, 0.01990654, -0.0920456, -0.01520822, 0.00488141, 0.00824528, -0.00295245, 0.0635764, 0.07311345, -0.05158846, -0.04662549, -0.07682785, 0.01032174, 0.09426493, -0.00081968, -0.07250058, 0.03652671, 0.02210031, -0.01612739, -0.1055732, -0.02799392, 0.01897063, -0.03220577, -0.03056997, 0.0325122, -0.06842896, 0.0032884, -0.09285432, -0.07481798, 0.03161563, -0.07996556, -0.13764603, -0.0490794, -0.07372326, 0.02535455, -0.0739979, 0.00026277, -0.16141641, -0.10218176, 0.00576801, 0.07739312, -0.07238971, 0.03231436, 0.00123133, -0.07100983, 0.02076289, 0.0108276, 0.02807127, -0.01716243, -0.00265923] +lshr:[-8.69889557e-02, -8.78285766e-02, 1.09951772e-01, -3.34419459e-02, -3.27713378e-02, -9.32075270e-03, -1.16333678e-01, -3.36346813e-02, -9.56068337e-02, 8.87279958e-02, -5.05680032e-02, 3.71619477e-03, -5.28715663e-02, -1.19823359e-01, -4.68969196e-02, 2.84118503e-02, -1.31359370e-02, -6.24085143e-02, 2.81878971e-02, 8.13875347e-02, 6.93142638e-02, -7.25682601e-02, -4.28990349e-02, -3.16838399e-02, 1.16816899e-02, 1.28096446e-01, -1.07422642e-01, -3.37696634e-02, 6.08961172e-02, 1.57978430e-01, -1.67838708e-02, 2.69910749e-02, -4.95567136e-02, -8.39450024e-03, 6.50409609e-02, 1.35712856e-02, 3.69037390e-02, 1.12919718e-01, 2.26332843e-02, -7.00187916e-03, -2.41606180e-02, 7.85005838e-02, -6.87878206e-02, -1.10987440e-01, 1.01761922e-01, -2.98544150e-02, 5.67046218e-02, -7.18430355e-02, 8.98258686e-02, 1.89129896e-02, 1.53687913e-02, 1.19668245e-01, -5.42645790e-02, -1.93020124e-02, -6.80863261e-02, 4.07773368e-02, 6.02104794e-03, -8.17028284e-02, 1.23165190e-01, 1.23710989e-03, 9.98923108e-02, 1.25622554e-02, -1.06340326e-01, 1.32041648e-01, -3.59892435e-02, 1.39296632e-02, -9.80368629e-02, 3.57812718e-02, 7.71720707e-02, -3.23000364e-02, -6.67662695e-02, -4.70301099e-02, -8.51761177e-02, 6.71062917e-02, -4.57679946e-03, -9.69111919e-02, 3.84389888e-04, -1.46519681e-02, -1.33112609e-01, -5.54411896e-02, -6.83258325e-02, -2.08177324e-02, 3.88454609e-02, 1.03316590e-01, -4.81208786e-02, -1.23109890e-03, 9.20131132e-02, 4.75252420e-02, -2.03013774e-02, -8.69113654e-02, 1.36421099e-02, 1.42235667e-01, -8.88159126e-02, 5.16485721e-02, 1.29170343e-01, 4.93594259e-02, 1.20687366e-01, 1.99442524e-02, -6.24445565e-02, 3.95076834e-02, -1.74010471e-02, -2.96969954e-02, 7.82567039e-02, 5.66477478e-02, 1.80937380e-01, -6.30138218e-02, 1.58197265e-02, -2.76811719e-02, -2.85707023e-02, -8.99525657e-02, 1.56764820e-01, 4.66290265e-02, 1.07914932e-01, 7.71167576e-02, 1.68287374e-06, 1.20950548e-03, -8.16008002e-02, -7.65149593e-02, 1.67364880e-01, -3.87987979e-02, 4.73090783e-02, 1.08811542e-01, -4.62842826e-03, -8.92795548e-02, 9.63104069e-02, -1.08985581e-01, 3.49646434e-02, -1.59812365e-02, -8.29304531e-02, -3.49947065e-02, 5.96257970e-02, -2.47635115e-02, -6.98654354e-02, -6.92131668e-02, 4.76743914e-02, 3.53377424e-02, -4.58464511e-02, -3.13250348e-02, 6.28065020e-02, 5.69777600e-02, -6.54644966e-02, 5.95209114e-02, -8.59670490e-02, 9.00921524e-02, 2.11765934e-02, -2.32653953e-02, -4.95853461e-02, -6.16089925e-02, 6.28968403e-02, 2.37834733e-02, 3.49151492e-02, 2.94845290e-02, 1.22068107e-01, 1.05884030e-01, 2.61984412e-02, 1.86586499e-01, -4.34209444e-02, -6.65642917e-02, -6.53275326e-02, 6.86670020e-02, -1.37371108e-01, 4.60582227e-02, -8.51769224e-02, -5.61064407e-02, 2.74919234e-02, 5.51605411e-02, 8.80950838e-02, 3.04793455e-02, -2.61065178e-02, -9.70313698e-02, 8.75032991e-02, -3.59521876e-03, 1.05544195e-01, -1.04433231e-01, 2.73070689e-02, 2.97408849e-02, 4.28861417e-02, -6.22474737e-02, -4.29614782e-02, -3.15887518e-02, -2.28961874e-02, -3.52096111e-02, -1.01792566e-01, 1.63995214e-02, 5.87058775e-02, -3.56701463e-02, -3.47188450e-02, -7.53404340e-03, -8.09387341e-02, -9.93424281e-02, -3.78919803e-02, 2.37200595e-02, -1.00451171e-01, 7.66915157e-02, -3.06624621e-02, -9.86767486e-02, 8.89508948e-02, -6.37244061e-02, -8.05397183e-02, 1.31896466e-01, -1.36175007e-01, -7.80785084e-02, 1.03629544e-01, 2.20753532e-02, -1.27450991e-02, -4.96645495e-02, -6.02600090e-02, -2.49614764e-04, -4.85872999e-02, 5.34211621e-02, 1.26229627e-02, -3.96323614e-02, -1.86870564e-02, -1.31969139e-01, 6.13297038e-02, -1.68209523e-02, -5.00660948e-03, 1.07007943e-01, -1.33897185e-01, -4.30882797e-02, 4.77203652e-02, 1.13382883e-01, 3.16917412e-02, 7.60787874e-02, -4.06202227e-02, 2.76980121e-02, 4.26656976e-02, 9.05557051e-02, -3.91826108e-02, 4.42227162e-02, 7.99761117e-02, -3.99768390e-02, -1.15232803e-02, -4.37397994e-02, -1.31059840e-01, -5.13616949e-02, 5.83494306e-02, -1.07585333e-01, 1.15611039e-01, 4.56361957e-02, -1.28565192e-01, -1.39992579e-03, -3.84877175e-02, -7.73420883e-03, -4.05803658e-02, 1.10501207e-01, 4.24306504e-02, 3.78558598e-02, 6.13388382e-02, 3.24901901e-02, 1.71985347e-02, -8.88906494e-02, -7.81433657e-03, 3.09823472e-02, 3.71592049e-03, 1.95444169e-04, -8.83921385e-02, 6.93579167e-02, 4.15122733e-02, -4.82229702e-02, -6.74910173e-02, -9.23931524e-02, 3.04666646e-02, 9.20868516e-02, 1.19721629e-01, -9.81597677e-02, 2.80396771e-02, -2.95368806e-02, 1.51281739e-02, 7.11983889e-02, -2.77794022e-02, -3.70613486e-02, 2.36532725e-02, -4.46472280e-02, -4.22125347e-02, -7.61298761e-02, -2.29761992e-02, -2.65451316e-02, 3.97947766e-02, -9.84473005e-02, -4.96388860e-02, -1.04232460e-01, 2.55857147e-02, 1.74431913e-02, 2.36406326e-02, -7.41841793e-02, -1.81335048e-03, -8.23642313e-02, 2.19719857e-02, -1.36513531e-01, 3.43567766e-02, 7.70359039e-02, -2.62459982e-02, -8.61850102e-03, -7.03927949e-02, 3.87446359e-02, 7.81125501e-02, -8.92441869e-02, -5.15617691e-02, -5.87503007e-03] +mul:[-9.16945860e-02, 6.07049838e-02, 7.99717233e-02, -3.32854614e-02, -2.78752297e-02, 6.51538149e-02, -1.31647363e-01, -3.63311581e-02, 6.32247254e-02, 4.08882201e-02, -5.34893312e-02, 3.12974094e-03, -5.82448952e-02, 4.63202521e-02, -4.00613174e-02, -1.12396821e-01, -2.83812871e-03, -6.65900409e-02, 2.58733071e-02, 8.30924511e-02, 7.22575784e-02, -7.18127713e-02, -4.48782779e-02, -3.20515484e-02, 1.13265906e-02, -1.32133380e-01, -1.13178931e-01, -3.62487584e-02, 6.42763227e-02, 1.28964810e-02, -9.14521664e-02, 2.81855930e-02, 8.53683278e-02, 2.49742530e-02, -3.51694822e-02, 1.16192497e-01, 1.14212491e-01, 9.51120704e-02, 2.13790257e-02, -2.59335227e-02, -2.70027947e-02, 8.26787129e-02, -1.14656933e-01, 6.26516566e-02, 9.55438837e-02, -5.16226776e-02, 6.60745753e-03, 1.06851310e-01, 9.43776891e-02, 9.95753035e-02, -2.35827966e-03, 1.14053212e-01, -5.56975454e-02, -1.82199683e-02, -6.50973991e-02, 4.40468192e-02, -3.25392261e-02, 1.09954871e-01, 1.36281744e-01, 3.22162062e-02, 1.26286909e-01, -1.09559000e-01, -1.06242560e-01, -2.99639963e-02, -8.86598229e-02, 1.86555739e-02, -9.11540017e-02, 3.48094180e-02, 6.26106635e-02, -3.50060388e-02, 1.16194814e-01, -1.36831552e-01, -1.00295715e-01, 6.89738616e-02, -5.37249520e-02, -1.07934475e-01, 5.08289272e-03, -1.55642331e-02, -2.11171079e-02, -6.65854588e-02, -6.94650859e-02, -1.68940015e-02, 3.02599296e-02, 8.72304142e-02, -5.08666039e-02, -1.15948468e-02, -2.04237401e-01, 5.38995788e-02, -8.22029263e-03, -8.86146575e-02, -6.23027328e-03, -4.24036465e-04, -3.58186886e-02, 8.15939009e-02, -1.01235658e-02, 1.04818240e-01, 7.93330073e-02, 1.58059448e-02, -4.76296209e-02, 3.03236861e-02, -1.72038712e-02, -3.03465351e-02, 8.13221335e-02, -1.48022845e-01, 1.18190587e-01, -6.56906441e-02, 1.33401398e-02, -2.78887581e-02, 1.35255363e-02, -4.28355075e-02, -4.97975051e-02, 1.13123938e-01, 1.14784740e-01, 7.34482929e-02, -4.99039143e-02, -1.02259032e-01, -8.65891799e-02, -8.56623128e-02, 5.70330992e-02, -4.33874130e-02, 5.01601733e-02, 1.23140559e-01, -1.68418512e-01, -2.83621326e-02, 1.02447689e-01, -1.17665008e-01, 4.11106050e-02, -5.25281066e-03, -1.11187495e-01, -5.79730347e-02, 6.06868044e-02, -2.57622879e-02, -7.16253296e-02, -6.61843121e-02, 4.67934050e-02, 4.19943444e-02, -6.68625832e-02, -3.84913534e-02, 6.67968467e-02, -8.38200189e-03, 3.64028178e-02, -3.51031423e-02, 4.42874581e-02, 1.27349332e-01, 1.95515659e-02, -2.56172772e-02, -5.04121445e-02, -7.74903968e-02, 5.90618812e-02, 2.70534530e-02, 3.96389440e-02, 3.05882785e-02, 1.24976844e-01, 1.10646158e-01, -2.99324072e-03, 7.11851642e-02, -7.19607398e-02, -6.88184202e-02, -6.74332678e-02, 2.23636389e-01, -1.42514095e-01, 3.52014825e-02, 9.33094881e-03, -8.17965195e-02, 7.49541074e-02, 9.03583691e-02, 5.59923276e-02, 1.06624186e-01, -2.68584210e-02, -1.29196942e-01, -1.08865730e-01, 1.09009583e-04, 1.08516231e-01, -4.66932505e-02, 7.13795424e-02, 9.74138826e-02, 4.52119187e-02, -1.31730959e-01, -5.97049296e-02, -3.21113989e-02, 3.54928486e-02, 7.26350620e-02, -1.06757522e-01, 1.67976376e-02, 6.95844889e-02, -2.91624032e-02, 3.12585160e-02, -1.16997138e-02, 7.10932463e-02, -2.37027239e-02, -6.84379274e-03, 8.60693157e-02, -4.47805040e-02, -4.33892794e-02, -3.12007237e-02, -1.02436133e-01, 8.07851478e-02, -6.63487390e-02, 4.25744466e-02, 6.87327385e-02, -1.40480012e-01, -1.44918039e-01, 2.53795367e-03, -1.14924505e-01, -1.23338923e-02, -1.10269841e-02, -5.96384928e-02, 3.28278244e-02, -4.75463383e-02, 5.45052513e-02, 1.68873859e-03, -9.07488614e-02, -8.02306533e-02, -1.30020186e-01, 1.77270323e-02, -1.69165488e-02, -5.20757958e-03, -5.75855561e-03, -1.52840108e-01, -5.56869991e-02, 6.47398978e-02, -4.37591374e-02, 8.40813741e-02, 1.09541185e-01, -4.17419709e-02, 2.68625487e-02, 4.91176993e-02, 1.03258386e-01, -6.18624911e-02, 1.17210716e-01, 7.83445090e-02, -5.49991280e-02, -5.83082102e-02, -1.28652409e-01, 1.04663841e-01, -1.48609877e-02, 6.54700249e-02, -1.17844842e-01, 1.14581451e-01, 4.67274562e-02, 6.95562512e-02, 2.98334453e-02, -3.32512632e-02, -6.06363826e-02, -4.34290431e-02, 1.09112591e-01, 2.02830937e-02, 2.04059146e-02, 2.27981284e-02, 1.41814593e-02, 1.69866905e-02, 4.59017884e-03, -2.08112542e-02, 4.93157543e-02, -9.35510639e-03, -5.29486279e-04, -1.36634335e-01, 7.24297985e-02, 8.53642896e-02, 4.53712568e-02, -7.39027485e-02, 5.01997173e-02, 1.50228105e-02, 9.45654958e-02, 9.98501182e-02, 1.70967225e-02, 3.07392124e-02, -2.77616959e-02, 4.11294959e-03, 1.38418987e-01, -2.93314569e-02, -3.99960093e-02, 9.48678330e-03, -3.08646914e-02, -4.88435440e-02, -7.91886672e-02, -2.44925562e-02, -2.86795814e-02, -8.41371715e-02, -1.12695150e-01, 6.12331927e-02, -3.10765952e-02, 5.37583865e-02, -1.00416750e-01, -2.70669367e-02, -7.18642175e-02, -1.74079358e-03, 3.69055569e-02, 2.28042901e-02, 2.58647520e-02, 4.19604927e-02, 8.83442685e-02, -6.38707206e-02, -3.65843251e-02, -7.31546059e-02, 4.11333255e-02, -2.35555824e-02, -9.17388722e-02, -1.90486126e-02, -4.21843715e-02] +or:[-0.09599749, 0.08067925, -0.06262298, -0.03684795, -0.08870692, 0.06980872, -0.04246692, -0.03385751, 0.06784367, 0.06159936, -0.05521637, 0.11315256, -0.05599487, -0.11822066, -0.04206763, -0.01208014, 0.02498783, -0.07021869, 0.05852763, -0.04043992, 0.07618607, -0.05841177, -0.04640276, -0.03261956, -0.00964492, -0.09084649, -0.11870872, -0.03432128, 0.08021099, 0.01210626, 0.1415344, 0.02956104, 0.10986564, 0.02883054, -0.03954681, 0.1231138, 0.11542901, 0.05309827, -0.04744321, 0.0283176, -0.03021236, 0.08761337, -0.0955884, -0.08657255, -0.00402693, 0.04153682, -0.06239037, 0.09307334, 0.1014846, 0.12172601, 0.1655624, 0.12253563, -0.05795343, -0.01847338, -0.06728511, 0.08160127, 0.01807391, -0.16463155, 0.14897987, 0.02938943, 0.09811223, 0.14545254, -0.11562132, 0.17334522, 0.02601552, 0.09546024, -0.12586436, -0.01602039, 0.09833523, -0.04019328, -0.11185963, -0.01186916, -0.10344196, 0.06423125, -0.00107719, -0.11482515, -0.00034712, -0.01600806, -0.13878976, -0.01213276, -0.07415058, 0.02726244, 0.03657786, 0.13107237, -0.05547502, -0.01194142, 0.10334693, 0.07561212, -0.00839174, -0.10068808, -0.00629069, -0.03685636, 0.067522, -0.01622101, -0.04572342, 0.11153975, 0.04673932, 0.01488339, -0.06590684, 0.03595567, -0.02868139, -0.03144509, 0.0861346, -0.15182564, 0.11862138, -0.07838739, 0.01682049, -0.01947766, -0.04373011, 0.02549208, 0.160202, 0.04208693, 0.11945777, 0.07254302, -0.02634506, 0.13505268, 0.03020671, -0.04603157, -0.08613657, 0.00077281, 0.05533324, 0.13042755, 0.0771478, -0.09204255, 0.1015847, -0.11195923, 0.00156668, -0.00343304, -0.14136091, 0.07744094, -0.01236223, -0.02671321, -0.07437833, -0.07897456, 0.05007585, 0.04480386, -0.05823859, -0.04003621, 0.07390536, 0.00434175, -0.07909305, -0.00638863, 0.06165071, -0.01095834, 0.0306424, -0.03246874, -0.05345365, -0.06987204, 0.06258248, 0.03831637, 0.03594305, 0.03150146, 0.12880881, 0.11704031, -0.03453047, -0.11597352, -0.07571658, -0.03509089, -0.07565861, -0.00558382, -0.15012702, 0.04161216, -0.03519466, -0.06584568, 0.08564232, 0.10919333, 0.09487955, -0.01484297, -0.07790813, 0.01760544, -0.0781376, 0.00045307, 0.1055647, -0.0345029, -0.07484341, 0.10204612, 0.03743986, 0.06592128, -0.06247694, 0.19134384, 0.1031277, -0.09088449, -0.14006382, 0.01778546, 0.05610702, -0.03050494, 0.05623459, -0.00440763, 0.04112682, 0.00247464, -0.04426443, 0.03023596, -0.04606802, 0.05075276, -0.03316773, -0.10438935, 0.10094336, -0.07028265, 0.04549599, -0.08341952, -0.13741861, 0.11307457, 0.04373582, -0.14088753, -0.012276, -0.07284307, -0.06414514, -0.14472905, -0.04964982, 0.07859476, -0.01661533, -0.05264537, -0.12342631, -0.13069104, 0.06388507, -0.03198165, -0.00376583, -0.00595441, -0.15053266, -0.05969243, 0.0560435, -0.04974031, 0.08807296, -0.15305164, -0.04283128, 0.04033863, 0.06501956, 0.09852269, -0.04198412, 0.10357665, 0.08124614, -0.09084915, -0.08830217, -0.16640268, 0.08149178, -0.02357922, 0.06580598, -0.12853502, 0.06596354, 0.04868695, 0.10218405, 0.03277214, -0.03598584, -0.01073664, 0.05044857, 0.05882978, 0.07563891, 0.01476608, 0.00267772, 0.02953618, 0.0177557, 0.0446521, -0.02254748, 0.03104371, -0.02103566, -0.01241218, -0.08641605, 0.07516352, -0.0341556, -0.05634482, -0.06905088, 0.04712481, -0.00291892, 0.10102268, 0.10630031, -0.10311818, 0.04153886, 0.00885148, 0.00365349, -0.14120808, -0.0316746, -0.0432707, -0.00490799, -0.03220279, -0.05114882, -0.0854557, 0.04406368, -0.02859481, 0.04426715, -0.10571288, 0.16486609, -0.03223762, 0.1321117, 0.08153574, 0.02469569, -0.07514992, -0.00086316, -0.00136222, 0.02277843, 0.05634002, 0.04153327, -0.05232724, -0.04741713, -0.0503218, -0.07865082, 0.04480188, 0.0264648, -0.09609643, -0.05861006, -0.04518864] +phi:[-0.09871957, -0.04125508, -0.03406632, 0.1376088, -0.05267553, -0.04902184, -0.02344397, 0.10444868, 0.08320308, -0.08644935, -0.05770433, -0.11539928, -0.02294803, 0.03702242, -0.0177987, 0.01323064, 0.08933306, -0.03631936, -0.0508424, -0.0411815, 0.06806381, 0.11995476, -0.0445798, -0.18158263, 0.01871348, 0.06062201, -0.01905045, -0.18182172, -0.09145615, 0.15023601, -0.0850222, 0.02856708, 0.08384316, 0.16314398, 0.11315798, 0.01615772, 0.03244168, 0.0091786, -0.05946888, 0.15065297, -0.0286834, 0.07999959, -0.08465469, -0.03887774, 0.00727518, -0.06208692, 0.07437945, 0.10576966, -0.0424059, 0.01953151, 0.13180166, -0.03696029, 0.08926405, 0.14295116, 0.10500947, -0.1272344, 0.0764194, 0.0567135, 0.00999985, 0.04181507, 0.00130717, 0.10462474, 0.03429344, -0.05653193, 0.03068008, 0.04101142, 0.06334946, 0.04650677, -0.09435094, -0.04333197, 0.12008958, -0.11768426, -0.09610154, 0.00303586, 0.01608381, -0.03177728, 0.02821518, 0.15846983, 0.1476565, -0.00868462, -0.06095331, -0.02054228, -0.00102454, -0.00043829, -0.04658985, -0.00434507, -0.08861098, -0.03637734, 0.16411825, -0.00525219, -0.11372343, -0.07596229, -0.12342977, 0.10690565, -0.0672754, -0.14915691, -0.06718089, 0.16884476, 0.0217629, -0.11756507, -0.03668113, 0.07246222, -0.02896006, -0.00095161, -0.07621259, 0.05456972, 0.11314674, -0.04076108, -0.11477346, -0.0065564, -0.08857188, 0.05760275, -0.02181843, 0.02610962, 0.04303158, 0.00353368, 0.05518556, -0.07465618, -0.09885935, 0.00093242, 0.04499358, -0.04855285, 0.01054824, -0.07735791, -0.03004101, -0.03153297, 0.06317943, 0.10552302, 0.00121728, 0.00649594, 0.03885466, -0.0851698, -0.0737067, -0.04264697, 0.03616685, 0.04615489, 0.00277004, -0.04269117, 0.0368267, -0.03741962, -0.0122003, -0.10146936, -0.05984475, -0.0639232, -0.0358655, -0.08218923, -0.04048718, -0.00431176, -0.06737575, -0.01360345, -0.10416584, -0.09969094, -0.15543625, -0.00700174, -0.15595023, -0.10988958, 0.12463549, -0.0720287, 0.04712421, -0.02765483, -0.08597597, -0.07801952, 0.0060011, 0.00378116, 0.09489028, -0.13437952, -0.056121, -0.01754166, 0.01553604, 0.01733642, -0.11922632, -0.03715962, 0.06595799, 0.08249474, 0.11601734, -0.1089863, -0.00641281, -0.14325778, -0.05866076, 0.09623047, 0.12221652, -0.09716752, -0.097733, 0.01745814, -0.01652131, 0.01090373, -0.07378677, 0.01569019, 0.0225168, -0.14544125, 0.05090691, -0.12055808, -0.01738212, 0.01854569, 0.1401032, -0.11082817, -0.00900672, 0.06892201, 0.04403239, -0.08838563, -0.00349312, 0.07029448, 0.12189219, 0.01725614, 0.00528742, 0.02645054, 0.00512133, -0.08450297, -0.04651145, 0.02733508, -0.07354996, 0.02729559, -0.00670779, -0.06373088, 0.08934611, 0.02466701, -0.10236894, -0.03416205, 0.017852, -0.01289361, -0.13572103, -0.12809165, 0.02554259, -0.12115931, -0.04228672, -0.10671565, 0.03967395, 0.10097902, -0.03966979, -0.06244965, 0.06783868, 0.00765546, -0.00762988, 0.05803527, -0.11034041, -0.16398709, 0.05898997, 0.07051446, -0.1646033, -0.0887475, 0.00831238, 0.01498371, 0.07098944, -0.05987947, -0.03456471, 0.00415085, 0.04568953, -0.04715744, 0.09327811, 0.00450406, 0.02277593, 0.00862234, 0.00328556, 0.0260103, 0.0033049, -0.11102785, 0.10423046, -0.07111385, -0.00526781, -0.0657595, 0.1421875, -0.07678745, 0.00582998, 0.08470977, 0.1295148, -0.09155709, -0.05924011, -0.02485362, -0.12864065, -0.0334061, -0.03150494, -0.1815796, 0.01980028, 0.05453142, -0.06955119, 0.0048105, -0.03029486, 0.02662905, 0.04398625, -0.12233806, -0.09058086, -0.03557168, 0.03244158, 0.02762516, 0.02493641, 0.0730226, -0.00045149, 0.03509872, -0.1331555, -0.05752684, -0.07568443, -0.01275109, 0.03965852, -0.01412226, -0.00330196, 0.01788441, 0.11773885, -0.00544388, -0.11537187, -0.01059332] +pointer:[0.04571063, 0.04843002, 0.03719688, 0.05364693, 0.03828807, 0.04671364, 0.05820454, 0.03569352, -0.00582599, -0.14607447, -0.14255373, -0.05014561, 0.10112239, -0.01999821, 0.07883657, 0.05187754, 0.0688398, -0.11391909, 0.01937777, -0.12483322, -0.04462476, 0.04545032, -0.12808388, -0.10641929, 0.11944318, 0.02485629, -0.06980103, -0.08979616, -0.01797892, 0.07928441, -0.12621756, 0.10833306, -0.03057862, 0.08727648, 0.00745765, 0.04082958, 0.08673783, -0.10339493, -0.01612211, 0.06600515, 0.05831181, -0.03038886, 0.02895648, 0.01826766, -0.06120931, -0.03282152, -0.00078373, 0.05166876, -0.12699416, 0.07563706, 0.03020444, -0.00819598, 0.03067349, 0.07222269, 0.03663684, -0.06700692, -0.00187959, -0.00448042, -0.09013373, 0.12006631, -0.07628526, -0.00961247, 0.11360481, -0.00656665, 0.0932496, 0.0945504, 0.04487314, -0.01124427, -0.02530261, 0.06195023, 0.04519809, -0.02042267, -0.00447205, -0.07512364, -0.04974379, 0.07919548, 0.068613, 0.07957155, 0.06962882, 0.04408687, -0.00391636, 0.08622512, 0.03899143, 0.05761784, 0.07639697, -0.1143558, -0.03478519, -0.12109274, 0.08967476, 0.06289273, -0.08484816, 0.00130038, -0.03407145, -0.01219221, -0.10070658, -0.07690804, 0.04596666, 0.09617639, 0.08629379, -0.17277223, 0.0692196, 0.03133722, -0.11581303, 0.04532935, -0.0284388, -0.0497156, 0.04524529, 0.07568894, -0.07237207, 0.07494285, -0.01747757, -0.00856348, 0.01703878, -0.0825467, 0.01427485, -0.05327367, 0.08759993, 0.03959366, -0.02336073, -0.09007522, 0.01480502, -0.12862574, 0.05531782, -0.02028608, -0.10399728, 0.08730795, -0.03535461, 0.1783113, -0.05844305, 0.0756136, -0.03452452, -0.16030739, -0.15287153, 0.05377678, -0.05372696, 0.13196161, 0.09754183, 0.07119659, -0.05389513, -0.11204032, 0.05551553, -0.04693064, -0.12340121, 0.04260679, -0.08873702, -0.10656723, 0.05281008, 0.09385198, -0.15078762, 0.05722057, -0.03703019, -0.04609463, -0.04607218, -0.10201369, -0.09310293, -0.04351952, 0.05231252, 0.04891948, 0.10886663, 0.01947865, 0.00971829, -0.05928982, -0.02252041, 0.07805562, -0.03738296, -0.07756601, -0.1254805, -0.08640017, -0.04989186, 0.10201863, -0.05232834, -0.12754788, -0.03601248, 0.03997732, 0.04449497, 0.01181681, 0.06520863, -0.05062845, -0.13330948, -0.01103346, 0.01232139, -0.00587077, -0.02160682, 0.126961, 0.06833926, 0.07187529, 0.02502494, -0.10417029, -0.04037987, -0.07173084, -0.01867659, -0.08621899, -0.09153904, 0.07065191, 0.05872888, -0.00976612, -0.01734447, 0.16136187, 0.12702882, -0.12966493, 0.09899658, -0.01725465, 0.1767381, -0.02908232, 0.08443218, 0.10168998, 0.10058126, 0.02543708, 0.04601916, -0.05710548, 0.03829353, -0.02242297, 0.05715949, 0.04228174, -0.00228442, 0.09704155, -0.17710552, 0.02364227, 0.08969056, 0.07894709, -0.06162252, -0.06346892, -0.00998301, -0.04246837, -0.13379803, -0.04011364, -0.05253295, -0.02730389, -0.13368382, -0.01203135, -0.06435546, 0.07870848, 0.06787578, 0.04787545, -0.01393324, -0.08347937, -0.04087169, 0.13302393, -0.07554323, 0.00057789, 0.03314097, 0.09809373, 0.1490339, -0.14041828, -0.13249527, -0.07224055, -0.06793392, -0.11864131, 0.13403274, -0.0844458, 0.12293883, 0.09747674, 0.09735029, -0.0871886, 0.10630049, -0.07442731, 0.03792186, -0.15945607, -0.06489288, 0.02818716, 0.0737779, 0.00422411, 0.11276332, -0.0120454, -0.06832957, -0.00759381, -0.14273539, 0.08868335, -0.06984461, 0.03239371, 0.06997541, -0.10590065, 0.09946258, 0.05257206, -0.00369063, 0.09401747, 0.07570051, -0.06137939, -0.05074228, -0.01317624, -0.01036726, 0.0312394, -0.06939431, -0.05974037, -0.05488346, 0.00022953, -0.07773109, -0.0617914, -0.04209631, 0.04004822, 0.01577808, -0.07378351, -0.03968787, -0.09549692, 0.08210852, -0.09113405, -0.01068062, 0.08491565, -0.03689008, -0.09663679] +pointerTy:[0.06092924, 0.09796862, -0.00103752, -0.10362073, 0.12077715, 0.06169633, -0.01567383, -0.06034598, 0.04286472, 0.09145653, -0.1056205, 0.0328755, 0.04225273, 0.02883723, 0.04323753, -0.01845065, -0.09368236, 0.04546576, -0.11273997, 0.01972409, -0.0737431, 0.00470377, 0.12141586, -0.06658955, -0.10633438, -0.00904588, 0.09947211, 0.09357519, 0.00754546, -0.01990281, 0.02531661, -0.11914298, -0.03465002, -0.130023, -0.10047489, -0.11092203, -0.03887726, 0.07537738, -0.03562976, 0.05726036, 0.09526736, -0.05661931, 0.08555847, 0.0206606, -0.07060018, -0.15595171, -0.03431432, -0.09352573, -0.09487303, -0.08653492, 0.05040496, -0.08733437, 0.12271702, -0.0934457, -0.10133172, 0.10629038, 0.09477488, 0.01192438, -0.03140387, -0.05728554, -0.0488859, 0.02717685, 0.00573337, -0.00477286, -0.05388472, 0.11328033, 0.04280995, -0.02878759, -0.11640517, 0.09243777, 0.03372295, -0.01266718, -0.02452908, -0.10932853, -0.02390232, 0.04557969, 0.08275427, -0.1032298, 0.00389863, -0.00893777, 0.09455959, 0.09144659, -0.02603229, -0.0860557, 0.07976266, 0.08206645, -0.01096939, 0.07145012, 0.0375103, 0.04250777, -0.07793014, 0.06990713, 0.10141893, -0.04037643, -0.00605645, 0.01598169, 0.00543972, -0.11967793, -0.01337427, 0.08813284, 0.09523727, 0.12139393, -0.10369755, -0.03329218, -0.04712709, -0.13888198, 0.12174252, 0.10875969, -0.09814748, -0.05955559, -0.12372345, -0.02626005, -0.07949015, -0.03949163, 0.04203641, 0.00599353, -0.05847906, -0.07175018, 0.02461828, 0.06561698, -0.12474205, -0.11860323, 0.0279719, 0.11452141, -0.06603479, 0.05562677, 0.11528945, -0.07209002, -0.03147213, -0.01726345, -0.03309248, 0.09204325, 0.07744429, 0.1303819, -0.07529533, -0.01045317, 0.10700455, 0.05460037, -0.05752746, -0.11447749, 0.03004655, -0.02106244, 0.06682462, 0.0661833, -0.0056643, 0.08575556, 0.08520345, 0.07369199, -0.09662085, -0.03353288, 0.00468787, -0.06618029, -0.00580229, -0.10816108, 0.08249385, 0.01663631, 0.04380124, 0.11597784, 0.13968734, -0.00350154, 0.08234777, 0.04085473, 0.0001713, 0.12205698, -0.09448445, -0.08590918, -0.09140524, 0.04834454, -0.10371356, -0.06178734, 0.00015845, -0.10362541, -0.04864161, 0.02638113, -0.07581106, -0.09485254, 0.12101978, -0.01247405, 0.12155548, 0.04356444, 0.04550569, -0.01360497, -0.01060857, 0.10240256, -0.06769636, -0.04880902, 0.05979404, 0.04511401, 0.03473115, 0.11203963, -0.0795258, -0.07634754, 0.06513544, -0.11248283, -0.09604846, 0.06583729, 0.0639118, 0.11027812, -0.01435861, -0.04392042, 0.07754409, 0.00114427, -0.04515889, 0.0149932, -0.08507851, -0.03912069, 0.0865337, -0.01546718, -0.10581411, -0.06349412, 0.09108723, -0.00898691, 0.00954246, 0.10444574, 0.00927354, 0.01131932, -0.10981358, -0.0772581, -0.005535, -0.12160774, -0.03780862, 0.02694821, 0.04178673, -0.02696865, 0.07948457, -0.06337038, -0.02056925, -0.05863785, 0.04869426, 0.01041861, 0.10897887, 0.02069264, 0.07494511, 0.02629681, -0.03378722, 0.09232539, 0.09634802, 0.11048035, -0.03499382, -0.06253447, 0.03164501, -0.09366278, 0.11625309, 0.07132085, 0.09612797, -0.09518165, -0.06556739, 0.06706127, -0.00597022, -0.10435873, -0.0998183, 0.00203511, 0.05324938, -0.01674956, 0.10772971, 0.10047884, 0.04679887, -0.12511566, 0.04045493, 0.01495822, 0.01710926, -0.00968238, -0.09180042, -0.1015618, -0.09259602, -0.00845523, -0.04165379, 0.09338302, -0.03316911, -0.03293062, 0.06622507, 0.11539302, 0.09967021, -0.08052409, 0.11456191, 0.08832859, -0.10102756, -0.09250138, -0.04995235, 0.10291332, -0.03382366, -0.01113761, 0.08154891, -0.04648772, -0.04379277, 0.0580634, 0.09990287, 0.03282121, -0.05154575, 0.08308324, -0.00542897, 0.06557141, -0.03630591, 0.10979303, 0.05213044, 0.09330896, -0.02590256, 0.06296889, 0.05267268, 0.10005292] +ptrtoint:[-0.03328403, 0.11486924, 0.15105163, -0.05574108, -0.02725758, 0.05867715, 0.05390983, -0.03685167, -0.0989763, -0.02838184, -0.05279909, 0.0009895, -0.04375121, -0.08592115, -0.00548068, -0.07707305, -0.01292153, -0.06571075, 0.05712552, 0.08667324, 0.0692378, -0.08169001, -0.03218831, -0.0318361, -0.00513633, -0.12198422, -0.02146369, -0.0264349, 0.06469642, 0.05639994, 0.14134619, 0.02832551, 0.03380079, 0.02337206, 0.10073081, -0.01439557, 0.11279885, 0.04010112, -0.02956896, -0.02897802, -0.02547206, 0.0510654, -0.06826153, -0.08722957, 0.06809383, 0.04155471, 0.05683975, 0.02247624, 0.10168147, 0.07587447, 0.14532405, 0.07664237, -0.05717824, -0.08013732, -0.05620703, -0.0147246, 0.00741375, -0.09641596, 0.08565456, 0.01424836, -0.00229114, -0.08374683, -0.10361275, 0.14728549, -0.07715608, 0.00707484, -0.04819679, 0.11379115, 0.05362102, -0.02083863, 0.04453786, 0.19880316, -0.12320909, 0.07065149, 0.06824168, -0.10572421, 0.05808757, -0.01483922, 0.03500677, -0.13747703, -0.06528847, 0.06619585, 0.02121758, 0.11793421, -0.04463535, 0.01273195, -0.05596849, 0.02003166, -0.04004914, -0.08771064, -0.00188714, -0.1168053, -0.07710279, 0.00370385, -0.07869149, 0.07213053, -0.09986261, 0.01346511, -0.07425632, -0.09479708, 0.04520656, -0.05953763, 0.08149852, -0.09654122, 0.17252623, -0.08093481, 0.04400469, 0.09306744, 0.06129692, 0.08234943, 0.15763687, 0.11985362, 0.08976288, 0.0533205, -0.03687697, -0.0156966, -0.02140255, -0.08938886, 0.14821808, -0.0490195, -0.03199835, 0.11736836, -0.13256307, -0.0887389, 0.06779696, -0.1211506, 0.05664945, 0.08746698, -0.02487429, 0.10324764, 0.03642232, -0.02505578, -0.06210402, -0.09242184, 0.03587138, 0.03801301, -0.06778264, 0.02069969, -0.02802049, 0.06114512, -0.07003963, 0.0003798, 0.01307608, 0.09270494, -0.02365283, -0.02047857, -0.04710595, -0.07488445, 0.04864846, 0.08745351, 0.04765862, 0.02970941, -0.03717953, 0.08417398, -0.01194958, -0.0988009, -0.03538597, -0.03736191, -0.01666961, -0.03834721, -0.14151728, 0.0602532, -0.11978988, -0.07895331, 0.06588129, 0.06320883, 0.08095501, -0.05417901, -0.07142022, -0.12866558, 0.01755486, 0.00153748, 0.10590295, -0.10271545, -0.00353225, -0.13559712, 0.05697173, -0.00542794, -0.05459484, 0.06636475, -0.05363929, 0.06647046, -0.22295316, 0.01699089, -0.11742532, -0.05098437, 0.01041866, -0.03150683, -0.06983891, -0.09324999, 0.08380056, 0.10378798, -0.01129961, -0.04340719, -0.0325078, -0.1079483, 0.07824184, -0.06549282, 0.04294624, -0.02700194, -0.0159092, -0.15401149, 0.02683356, -0.12303907, -0.01217526, -0.02862923, -0.05268213, 0.15300825, -0.04034232, 0.03980866, 0.00234512, 0.02864957, -0.05236471, -0.10809943, -0.01641355, -0.09476371, -0.00510293, -0.01602571, -0.12527877, -0.06017177, 0.05982063, -0.08018825, -0.08700517, 0.04235798, -0.04156297, 0.04830201, 0.03396327, 0.03874399, -0.01957085, 0.09946007, 0.00588254, -0.05161084, 0.06992598, 0.08331694, -0.08694383, -0.04652061, 0.05921599, -0.03109497, 0.11725473, -0.07004657, -0.10871793, -0.00035161, -0.01136544, -0.07533038, -0.04354756, 0.06726597, -0.06687808, -0.02970818, 0.00134077, 0.02263087, 0.03593982, -0.12062785, -0.10131721, -0.05252124, 0.00478968, -0.04999063, 0.01509171, 0.0717708, 0.06174812, 0.08142014, -0.08592333, -0.04702151, 0.06123473, 0.08799746, -0.0026898, 0.03647231, 0.04960772, 0.00160257, 0.0381631, 0.08334103, -0.0289131, -0.02454377, 0.02997001, -0.03018739, 0.02069416, -0.07905708, 0.04767312, -0.08219641, -0.07881612, 0.01853492, -0.08069206, -0.05266042, 0.1067078, -0.10291595, 0.00801259, -0.07495844, -0.00129293, 0.07840847, 0.06440388, 0.03914128, 0.10171404, -0.07700343, -0.07079866, 0.00723601, -0.07837538, 0.02316356, 0.02360438, -0.08498669, 0.01992881, -0.02600944] +resume:[-0.04971975, -0.10000893, -0.07689898, -0.07218172, 0.0277928, -0.05560621, -0.11751638, 0.07850274, 0.07969152, 0.00394688, -0.02760325, -0.05699113, 0.03245703, -0.1397403, -0.04966355, 0.07687013, 0.09028982, 0.05263539, 0.01747994, 0.09994746, 0.06724577, 0.06577773, 0.05426493, -0.02160393, 0.0143989, -0.02018506, -0.00829888, -0.01822605, -0.04974941, 0.15224135, -0.05683867, -0.00118508, 0.08088776, 0.04746401, 0.10852326, 0.11538666, -0.07527561, 0.00609338, 0.03606059, 0.03864902, 0.00539183, 0.02855628, -0.05982843, -0.04649625, -0.01768739, 0.0916473, -0.09879897, 0.11516099, 0.01085436, -0.09414721, 0.04122957, -0.01376627, 0.08409413, 0.01751588, -0.07535935, 0.0015349, 0.06098229, 0.0570708, 0.04720725, 0.10099626, -0.05443855, -0.14895461, -0.01076233, -0.08484574, -0.05660914, -0.00507923, 0.06664753, -0.05257964, -0.09124009, -0.050659, -0.07310669, -0.04114795, -0.07943441, 0.00287927, -0.09787001, -0.10901636, -0.00991896, -0.01121183, 0.07208686, -0.05992087, -0.05216926, 0.04927938, -0.03461945, 0.12637353, 0.03598815, 0.07539219, 0.09318481, -0.06117549, -0.01769596, -0.0852889, -0.02323561, -0.13196516, -0.14747183, 0.02758961, -0.10176981, 0.11541887, -0.11625706, -0.01218386, -0.12223834, -0.10291111, -0.08479259, -0.03361493, 0.08288566, -0.10599123, -0.08214483, 0.05175922, 0.08279647, -0.03027468, 0.00041512, -0.1303924, 0.08682233, 0.03820128, 0.07733028, 0.07718829, -0.07729491, -0.03900605, 0.02855051, -0.09050293, -0.04224429, 0.0010722, -0.07528085, 0.06086392, 0.02562095, -0.03800028, 0.11299923, -0.02894589, 0.03284748, 0.04816299, 0.06182843, -0.01822702, 0.1077287, 0.02630177, -0.07161554, -0.06958008, 0.04161337, -0.06988616, 0.03536795, -0.01876095, 0.10586178, 0.05983077, -0.16194852, 0.1214774, -0.03175893, -0.09700438, 0.07083799, -0.04664603, -0.04761462, -0.03853963, 0.08479124, -0.00142771, 0.01796296, 0.05722909, 0.13596639, 0.00987565, -0.10529351, 0.08013716, -0.10231965, -0.03977264, 0.04444288, -0.02064166, -0.08117057, 0.03375162, 0.00418526, -0.01117073, 0.11257147, 0.09488856, 0.07451902, -0.07678375, 0.02076789, -0.00992305, 0.01106199, 0.00495352, 0.09548138, 0.08013469, 0.14867349, 0.00336105, -0.07368326, -0.0327163, -0.05321542, 0.02158467, 0.15210949, 0.10118937, 0.06218996, 0.01773639, -0.05287707, 0.05953544, -0.07537096, 0.03874671, 0.0491812, -0.06508834, 0.09040762, 0.02190832, 0.03449065, -0.04640226, -0.01426245, -0.09023329, 0.03774657, -0.04038559, -0.09882439, 0.01913859, -0.01441261, 0.0515197, 0.116106, -0.12589559, -0.00979612, -0.01121723, -0.06086124, -0.12458402, 0.09686878, 0.01490101, -0.02379205, -0.1377558, 0.10457977, -0.11051305, 0.08703119, 0.07797505, -0.02704914, -0.0671201, -0.13226968, 0.04419644, -0.03410861, -0.1037115, -0.02445828, 0.07284725, -0.04036949, 0.06581438, 0.13275945, -0.08997616, -0.07476599, -0.01240574, 0.07027411, 0.05169485, -0.0622635, -0.10992797, -0.13662384, 0.03427446, 0.05870375, -0.07947224, 0.13455108, -0.02357074, 0.07574388, 0.09913995, -0.04032681, 0.03760634, -0.03032228, -0.01748438, 0.11984889, -0.04246109, 0.00713927, -0.00334411, -0.01067777, 0.11466487, 0.01270368, -0.10616285, 0.0040198, 0.02326182, 0.0271312, -0.03651755, 0.09959746, -0.06642827, -0.07119647, -0.1126913, 0.02274565, 0.0889429, 0.12239731, -0.09458169, 0.05254613, 0.13029513, 0.10262446, -0.09057024, -0.03071743, -0.04572453, 0.0215303, -0.0311003, 0.02960162, 0.03026919, 0.10983732, -0.02231232, -0.06988796, 0.05155658, -0.07337728, 0.07122341, 0.10151848, -0.08569958, -0.12083717, 0.06142009, -0.00172657, 0.07345904, 0.10420708, 0.09566615, -0.04337936, -0.01867907, -0.07321037, 0.00334259, -0.08857013, -0.01332992, 0.122491, -0.03146014, -0.13800704, 0.00930812] +ret:[-9.54411551e-02, 3.07239089e-02, -1.33858874e-01, -3.48546058e-02, 7.92488456e-03, -5.62614873e-02, -1.59829646e-01, 1.23625681e-01, 1.69538587e-01, 8.77723619e-02, -4.31279391e-02, -4.54876944e-02, 3.70909050e-02, -1.21364973e-01, -9.39253345e-03, 1.61878631e-01, -2.37133028e-03, 5.31244650e-02, 5.67444265e-02, -4.90354411e-02, 7.57231265e-02, -6.42262548e-02, -4.58164439e-02, -3.07574850e-02, 2.16137506e-02, -1.65210724e-01, -2.14401279e-02, -1.54035129e-02, 5.14183715e-02, -2.25954391e-02, -1.39104083e-01, 3.10841333e-02, 8.37145895e-02, 2.54487172e-02, 1.11746892e-01, 1.19199723e-01, 6.15492910e-02, 8.61956645e-03, 1.41297668e-01, 1.55512644e-02, -1.00714741e-02, 8.27379227e-02, -8.33072960e-02, -9.07747597e-02, 3.77505124e-02, 3.34050618e-02, 4.37662043e-02, -8.05056770e-04, 1.04910254e-01, 8.54335539e-03, 1.55289754e-01, 7.56162331e-02, -5.62685430e-02, -1.49699152e-02, -5.35317436e-02, -4.71350597e-03, -5.07697351e-02, 9.04358178e-02, 1.39486268e-01, 4.59322929e-02, 6.00823164e-02, -2.17016600e-02, -7.03292191e-02, 1.84888020e-01, -1.39626458e-01, -5.97821996e-02, -2.53143683e-02, -3.89358997e-02, 4.65506762e-02, 2.04481427e-02, -5.28255962e-02, 8.05874094e-02, 6.20216727e-02, 7.02071935e-02, -1.05117243e-02, -1.10898338e-01, -1.45627733e-03, -1.41512826e-02, 1.69685140e-01, -2.11134255e-02, -5.69529943e-02, 1.86954830e-02, -3.09408177e-02, 1.13655567e-01, -4.93670069e-02, -1.41707156e-02, -9.05611292e-02, 2.28438787e-02, -1.83163182e-04, -7.33436197e-02, -1.45497238e-02, -6.64669052e-02, -8.96416306e-02, 2.00234633e-02, 2.23158136e-01, 1.09660149e-01, 1.28676400e-01, 1.32841319e-02, 1.23793341e-01, -2.82239635e-04, -3.31202522e-02, -3.25138681e-02, 8.49214867e-02, 7.99448490e-02, 1.85961723e-01, 5.35334349e-02, 4.47967984e-02, -2.61133295e-02, 3.81064750e-02, 3.60018313e-02, 1.06761999e-01, 4.46126945e-02, 3.92153822e-02, 7.54513443e-02, 5.23290075e-02, -1.10150740e-01, -1.04566127e-01, 4.66222456e-03, 2.11910270e-02, 3.84536735e-03, 5.59593476e-02, 7.65654594e-02, 7.63035789e-02, -6.13935478e-02, 8.55626985e-02, -9.58317518e-02, 5.12054600e-02, 5.44315651e-02, 9.05687809e-02, 1.41054476e-02, 6.28548861e-02, -2.77177840e-02, -7.37407804e-02, -7.35367611e-02, 4.15426269e-02, 2.81510632e-02, -8.25467408e-02, -2.63473727e-02, 8.03595707e-02, 6.91524148e-02, -1.53533056e-01, 4.97892052e-02, -2.93847192e-02, 2.78907046e-02, -4.62953597e-02, -2.16586851e-02, -4.68825586e-02, -4.82971705e-02, 6.00957014e-02, 1.72878653e-02, 2.08221972e-02, 3.24518755e-02, 1.17469117e-01, 1.13839701e-01, -2.61746738e-02, -8.07736367e-02, -8.27716589e-02, -1.78014915e-02, 4.46612909e-02, -1.16996780e-01, -8.84660184e-02, 3.16954441e-02, -5.47940657e-02, -1.00041680e-01, 9.76139307e-02, 1.02775455e-01, 5.47788925e-02, 9.61566865e-02, 5.08270413e-02, -5.71849104e-03, -4.75547984e-02, 4.19540331e-03, 1.12647511e-01, -9.41837057e-02, 7.08373338e-02, 3.99968959e-02, 2.75806896e-02, 9.21191052e-02, -5.93582653e-02, 1.47614881e-01, -1.46787763e-02, -9.48001295e-02, 3.52858156e-02, 1.79539863e-02, -9.43173468e-02, 5.42214848e-02, -5.32590644e-03, 2.15497445e-02, 8.03074688e-02, -1.15520701e-01, 6.24024943e-02, 1.03180297e-01, -9.06749815e-02, -4.56260778e-02, -2.76909694e-02, -1.01827875e-01, 8.10766742e-02, -6.88629746e-02, 3.83289382e-02, 7.57364184e-02, -8.79136696e-02, 2.12611899e-01, 1.18959613e-01, 7.06748366e-02, 5.84419537e-03, -2.73510031e-02, -6.07360378e-02, -1.35494664e-01, -4.34427522e-02, 3.02604605e-02, -2.66616344e-02, -9.30014029e-02, 2.28333343e-02, -1.09288514e-01, -2.78453920e-02, 7.53993317e-02, -5.67969074e-03, -9.81537811e-03, -1.50306419e-01, 6.28274530e-02, 6.79362714e-02, 2.18232274e-02, -5.67394495e-02, 9.56157595e-02, -4.18137014e-02, 5.38549013e-02, -5.44118322e-03, 6.07016310e-02, -7.04749748e-02, 8.32378194e-02, 6.42835870e-02, -4.86341380e-02, 1.42702684e-02, 9.29232761e-02, 9.56977233e-02, 1.31674362e-02, 5.90528883e-02, -1.26662686e-01, 1.26004308e-01, -1.33264558e-02, -1.89690024e-01, 8.18902478e-02, -3.30246277e-02, -7.28175566e-02, -3.61936986e-02, 1.38523988e-02, -4.71679419e-02, -1.29190972e-02, -8.76396149e-03, -1.24029070e-02, 2.21344475e-02, 5.46816625e-02, -9.23844501e-02, 1.84356607e-02, 3.35229794e-03, 2.43017338e-02, 1.21208295e-01, 7.49531761e-02, -3.80346067e-02, -6.23465553e-02, -1.25915660e-02, -4.46270220e-02, 1.69212054e-02, 9.49550644e-02, 1.24696322e-01, -8.93020630e-02, 5.08709028e-02, 2.18432080e-02, -6.50907261e-03, -1.26895636e-01, -3.28554437e-02, -5.09028696e-02, 3.57384831e-02, -3.16535719e-02, 2.35126037e-02, 6.08600955e-03, 8.71156529e-02, -4.37933765e-02, 4.29081023e-02, -9.20437202e-02, 7.76220635e-02, 1.24887284e-02, -2.90171318e-02, -1.20454207e-01, -5.52569218e-02, -5.79970293e-02, -1.30240560e-05, -1.12819038e-01, 1.04861125e-01, -5.92274740e-02, 7.96927661e-02, 1.84274502e-02, -3.64899226e-02, -1.76216115e-03, -6.76700547e-02, 1.01691671e-02, 1.03499271e-01, -9.08533335e-02, -4.51794825e-02, 4.57510538e-03] +sdiv:[-0.09530628, -0.07342412, 0.15243459, -0.03368295, -0.09508602, -0.05397789, -0.03846833, 0.08013029, 0.05646336, 0.0797256, -0.06483237, -0.0002631, 0.02231789, 0.05898023, 0.01088423, 0.03822688, -0.00868016, -0.08589912, 0.05472552, 0.08766674, 0.03130227, -0.06413095, -0.04489891, -0.03676198, 0.01707266, 0.0423263, -0.05108585, -0.02901038, 0.01339554, -0.02103957, -0.01776626, 0.02791437, 0.09719431, 0.13662927, -0.02899878, 0.11903906, 0.04381966, 0.13450752, 0.13099268, -0.1926291, -0.0354861, 0.08570938, -0.07290022, 0.10510573, 0.10172089, 0.04687236, -0.04184042, 0.03779377, -0.05459095, -0.06201721, 0.06735124, 0.13189414, -0.05806702, -0.10039957, -0.0563814, 0.08990932, 0.02787086, -0.07034212, 0.10149096, 0.04887366, 0.1620956, -0.09594646, -0.11714504, 0.06467365, -0.03033956, 0.06077514, -0.03163728, -0.04399967, 0.08431298, -0.03084159, 0.09738933, -0.15279682, -0.12721454, 0.07298094, -0.01983394, -0.07231722, -0.11886587, -0.01522852, -0.05965678, 0.11974103, -0.07937418, -0.02239126, 0.05955691, 0.10873601, -0.04913468, -0.00568324, 0.09076274, 0.04224093, 0.00919274, -0.03557311, -0.00617162, 0.05257592, -0.14434382, -0.11512942, -0.03465721, 0.09229635, -0.06130151, 0.01964174, -0.05337896, 0.05633824, -0.02404904, -0.03419622, 0.08308287, -0.11040502, -0.03316284, -0.03676021, 0.05434963, 0.11870711, -0.00246049, 0.00513039, 0.16999008, 0.12755321, 0.09576591, 0.06392328, -0.04259817, -0.08975105, -0.02925522, -0.04793021, 0.18092415, -0.04040196, 0.04870569, 0.13691527, -0.13442922, 0.07920561, 0.12878172, -0.12955628, 0.04124047, -0.01136757, -0.17525113, 0.08105741, -0.05268491, 0.00686143, -0.05187662, -0.10949939, 0.08145654, 0.04394159, -0.10271912, 0.01964816, 0.11784574, 0.07497307, -0.04303554, -0.22511089, -0.00781918, 0.00640527, -0.1022252, -0.06732642, -0.07455451, -0.05841304, 0.06162837, 0.08770463, 0.03885878, 0.03113722, -0.03667706, 0.03915955, 0.01540097, 0.00536148, -0.04304118, 0.03010038, -0.00547665, 0.04492341, -0.14684786, 0.0622035, -0.09871398, -0.06815847, 0.05011009, 0.06593949, 0.06011942, -0.01236316, -0.03543388, -0.1247929, 0.13030557, 0.00074008, 0.1024758, 0.1696826, 0.03537757, 0.00612874, 0.0652189, -0.10995369, -0.06001663, 0.04517952, 0.08453549, 0.04759596, -0.15376692, 0.01721328, -0.08947644, -0.04647509, -0.03472358, -0.00930312, 0.07312983, -0.0067922, -0.06426332, 0.02040398, 0.03675625, -0.0271459, -0.03174834, -0.10418694, 0.05864277, -0.05506357, -0.05121068, -0.10295855, -0.02063888, -0.1321021, 0.11884752, 0.02498337, -0.04225306, -0.06258389, -0.07196448, -0.151607, -0.04787362, 0.08843692, 0.01660902, 0.03436413, -0.11489413, -0.14278063, 0.05461938, 0.03616533, -0.00546548, -0.03661327, -0.11968958, -0.01678935, 0.05470828, 0.02559601, 0.05647021, 0.06758071, -0.04414204, 0.07511938, 0.03815395, 0.05574947, -0.05283434, 0.10628447, 0.09597687, -0.0594386, 0.05161611, -0.0633917, 0.04546138, -0.0995443, 0.06277889, -0.11680438, 0.12050541, -0.0773743, 0.06295144, 0.00216025, -0.03844868, -0.06544512, -0.04539347, 0.09373529, 0.00568276, -0.02452778, -0.09247489, 0.0362552, 0.02203363, -0.12632954, -0.01958727, 0.03749122, 0.00271118, -0.01115079, -0.08468407, 0.07428467, -0.00488976, 0.08662488, -0.08781344, 0.03758438, 0.03066335, 0.09457184, 0.08815476, 0.03915844, 0.04692417, -0.03477973, 0.02540202, -0.07874093, -0.02837167, -0.0299399, 0.04819113, -0.05928246, 0.01175441, -0.08901887, -0.04537582, 0.001267, 0.04209948, -0.07970545, 0.04162471, 0.00416541, -0.02853915, -0.00706799, 0.02715958, -0.08058668, -0.00068198, -0.00934975, 0.02749679, -0.076792, -0.08248315, 0.03439238, -0.11919583, -0.03242655, -0.07699355, 0.04093152, 0.1157782, -0.09299643, -0.04376543, -0.10707628] +select:[-0.07796419, 0.02654017, 0.08561981, -0.02640493, -0.01594472, -0.02236026, -0.14508659, -0.03720352, -0.09896445, 0.01629127, -0.05137004, -0.10974763, -0.01763774, -0.05593148, -0.01446243, -0.06425056, -0.00496455, 0.03369481, 0.05330964, 0.08117819, 0.07079569, -0.05443976, -0.04328646, -0.03167757, -0.00093328, -0.02923173, -0.02121072, -0.0252748, 0.07455094, 0.01843606, 0.11085869, 0.02806481, 0.07689437, -0.03884915, 0.12072627, 0.11284443, 0.11578644, 0.12316164, 0.0392734, 0.14061184, -0.02739017, 0.07758864, -0.06668904, 0.04812334, 0.04169875, 0.03895923, -0.01973481, -0.02168304, 0.03212382, 0.021742, 0.1415739, 0.0731042, -0.05343235, -0.0172648, -0.06137224, -0.0264897, 0.04668789, -0.02681453, 0.09086787, 0.04026331, 0.05581107, 0.13394874, 0.03190872, 0.23795313, -0.11614687, 0.09184876, -0.03400401, 0.0356311, 0.07906206, -0.02448694, -0.08523912, 0.01030453, -0.11671007, 0.06368773, -0.05499426, -0.09505437, -0.0209304, -0.01439222, 0.16133747, -0.12258141, -0.05668128, 0.00979907, 0.03932089, 0.01205427, -0.0488922, -0.01652792, 0.0182678, 0.03706345, -0.02009147, -0.06221933, -0.0079091, -0.01060873, -0.10770779, -0.1823324, -0.14627458, 0.10239322, 0.10354113, 0.02787915, 0.01292837, 0.02086703, -0.0138052, -0.05054976, 0.0788445, -0.1129076, -0.07109348, -0.06147011, -0.07432042, -0.01408505, -0.04717709, 0.21654566, 0.10194627, 0.10390955, 0.10507096, 0.04760725, 0.03200601, -0.10385958, -0.07837848, -0.00231574, 0.0683814, -0.04562495, 0.04408996, 0.07792012, 0.06200287, -0.07446406, 0.05178285, -0.1013263, 0.05706012, 0.00793589, -0.0118787, 0.07729924, 0.0518249, -0.02455699, -0.04687339, -0.04985608, 0.03522102, 0.04141714, -0.04765773, -0.02570418, 0.02878981, 0.06869982, 0.01201405, -0.0847813, 0.03941, 0.00496324, 0.04432188, -0.02101281, -0.04367724, -0.00891525, 0.02237167, 0.02787223, 0.04089325, 0.02967302, 0.06358458, 0.04663718, -0.00726428, 0.11754782, -0.0420486, -0.07015564, -0.06851706, -0.09912136, -0.11625592, 0.01653208, -0.02959692, -0.09399243, 0.0658228, 0.05822728, -0.02725052, 0.11271071, -0.02555392, -0.11246318, -0.00447512, -0.01304343, 0.052237, -0.03285364, 0.07364816, -0.09844851, 0.06490673, 0.14925937, -0.05590437, 0.09965234, 0.0868555, -0.08860127, -0.09358503, 0.01590551, -0.03638406, -0.01351995, 0.13145205, -0.08135018, -0.13474065, -0.00871949, -0.04125211, 0.02468042, -0.08746354, -0.04192827, -0.03043211, -0.09012035, 0.03843782, -0.06465846, -0.10318128, -0.09411661, -0.01229213, -0.09135763, -0.10304278, 0.15394732, -0.01218351, -0.0498736, -0.05551047, -0.1349622, -0.04451358, 0.07896928, 0.0476933, 0.01487865, -0.10786752, -0.06524313, 0.05300893, -0.00604325, -0.00556351, -0.03812594, -0.15270823, 0.04924905, 0.06517618, 0.11869089, 0.0281928, -0.13911727, -0.04166517, 0.03583926, 0.10725681, 0.02912779, -0.03876043, 0.0576381, 0.07251933, -0.01662375, 0.07919393, 0.07614515, -0.1902373, 0.00155387, 0.05850331, -0.10892732, 0.10204969, 0.04684079, -0.12895931, 0.0213314, -0.03105752, -0.06078756, -0.04364074, 0.04227859, -0.04479041, -0.01462635, 0.02757902, -0.01904804, 0.02067573, -0.07223241, -0.00652185, 0.0409578, -0.0066166, -0.000929, -0.00730141, 0.06901992, -0.08749437, -0.06090651, -0.04372075, 0.0429941, 0.01658001, 0.08620527, -0.00281021, -0.07856856, 0.04941496, -0.00805557, 0.01806066, 0.12043692, -0.02896875, -0.02340477, 0.0116375, -0.02241104, -0.05103842, -0.03382081, 0.01537115, -0.05607319, 0.03923286, -0.07652445, 0.04319616, -0.02627008, 0.04598856, 0.01593353, 0.00412251, -0.05510549, -0.00063809, -0.00721269, -0.11451862, 0.00170511, 0.05443547, -0.12199099, -0.00032248, -0.14988975, -0.06866679, 0.03955351, 0.05304941, -0.085539, -0.08310488, -0.00681133] +sext:[-9.59484428e-02, -3.27703878e-02, -1.12713210e-01, -3.72636355e-02, -2.39436273e-02, -4.70903553e-02, 4.43284996e-02, -1.36169195e-01, 8.85430723e-02, 5.51328957e-02, -5.14997281e-02, -7.43211284e-02, -3.91484685e-02, -1.34412467e-01, -4.36857417e-02, -4.99352664e-02, -1.54544199e-02, -4.78476621e-02, 1.58760548e-02, -3.74063067e-02, 7.89701864e-02, -7.86790997e-02, -4.57723774e-02, -3.29304188e-02, 9.22206789e-03, -1.36940569e-01, -3.78028192e-02, -2.83577535e-02, 6.66290447e-02, -1.26523390e-01, -2.95901094e-02, 2.95266788e-02, 7.48098344e-02, 2.52385363e-02, 7.39391446e-02, 1.13328241e-01, 9.09067765e-02, 7.94604421e-02, -3.73446494e-02, 9.68520492e-02, -2.68892758e-02, 8.26907754e-02, -6.91690296e-02, -5.28502129e-02, -3.70980403e-03, 7.22466633e-02, -4.52034138e-02, 2.94079985e-02, 9.77531150e-02, 6.21589981e-02, 1.42028525e-01, 1.28230229e-01, -5.87749481e-02, -1.82653610e-02, -7.20512494e-02, 5.44419885e-02, 2.20023338e-02, -1.37820337e-02, 1.39488786e-01, 3.56879272e-02, 6.52706921e-02, 1.90036558e-02, -1.14699855e-01, 1.97646230e-01, -9.35181975e-02, -1.45132644e-02, 7.05279708e-02, 3.45783532e-02, 5.16825803e-02, -3.04575209e-02, -7.10362047e-02, 8.29099957e-03, -1.01655699e-01, 7.29674622e-02, 9.26711112e-02, -1.45944163e-01, -9.94027331e-02, -3.84244844e-02, -1.71484798e-01, -8.70360527e-03, -7.35077932e-02, -1.21211878e-03, 1.28528967e-01, 1.11500740e-01, 2.55378592e-03, -1.44659844e-03, 9.80088636e-02, 4.22747433e-02, -1.93761960e-02, -1.08412921e-01, -2.52999482e-03, 6.88034520e-02, -8.16523954e-02, 1.23460693e-02, -6.40071779e-02, 1.03649750e-01, -4.89538610e-02, 1.57749448e-02, -7.31495619e-02, -3.82175483e-03, -4.49630022e-02, -3.20537128e-02, 9.38708335e-02, -1.10688873e-01, -8.67016539e-02, -8.53420496e-02, 2.89110746e-02, -2.29439270e-02, -7.41088167e-02, -1.23199165e-01, 1.68617457e-01, -6.37749657e-02, 9.88586433e-03, 8.25214088e-02, -3.42022367e-02, -6.68337941e-03, -1.08905546e-01, -2.75673978e-02, 1.90523267e-01, -1.01603772e-02, 5.13014384e-02, 5.57652302e-02, -9.64716226e-02, -8.83246809e-02, 1.17732562e-01, -1.31453648e-01, 3.46066169e-02, -1.17685683e-02, -7.69512579e-02, -1.11793287e-01, -3.02447658e-02, -2.76419539e-02, -7.56081641e-02, -5.35653718e-02, 5.10638803e-02, 4.03676890e-02, -4.50198650e-02, -2.02165470e-02, 7.01196194e-02, 8.41303766e-02, -7.31289014e-02, -2.81973612e-02, 7.72461593e-02, 3.53357084e-02, 5.33950292e-02, -2.25417595e-02, -5.35107553e-02, -5.13429008e-02, -3.71273272e-02, 7.37200454e-02, 3.92575860e-02, 2.99321730e-02, 1.30621940e-01, 1.15710519e-01, 3.58344801e-02, 7.13519752e-02, -5.74123152e-02, -7.40330741e-02, 3.00734630e-03, 9.19894427e-02, -1.48609191e-01, 4.51747254e-02, -1.42706901e-01, -3.92957516e-02, 2.19538566e-02, 1.03726491e-01, 6.87058493e-02, -1.84839182e-02, -4.60453965e-02, 5.13854176e-02, 1.16883613e-01, -8.73474311e-03, 1.15008838e-01, -1.20973758e-01, 2.70706918e-02, 1.01735964e-01, 3.39984596e-02, 1.07706256e-01, -5.84304519e-02, 6.43019751e-02, 1.40299052e-01, -9.41635743e-02, 7.85125047e-02, 1.74720567e-02, 1.56876519e-02, -3.95811237e-02, 1.01744652e-01, -2.31129527e-02, 2.50287522e-02, -8.62087309e-02, 8.55379552e-02, 2.03447659e-02, -2.35365462e-02, 6.53539896e-02, -3.12440898e-02, -1.06746405e-01, 8.50830004e-02, -6.96118921e-02, 4.37040702e-02, 1.03556395e-01, -1.33185729e-01, -1.38810217e-01, 2.47475747e-02, -1.24995604e-01, 3.57136480e-03, -3.76408808e-02, -6.54002205e-02, -1.29659206e-01, -4.87498455e-02, 6.84924573e-02, 2.58496241e-03, -8.25555250e-02, -6.96093738e-02, -1.39027089e-01, 7.81053454e-02, 1.02797672e-01, -4.97377012e-03, 9.93446335e-02, 3.95479798e-02, -3.12595405e-02, 5.55126779e-02, 1.18490763e-01, 7.17213005e-02, 1.43938586e-01, -4.36186232e-02, 6.21401966e-02, 1.35894656e-01, 7.88838938e-02, -3.75514738e-02, 4.22089994e-02, 7.92540163e-02, -5.83730452e-02, 4.77558263e-02, -1.14433274e-01, -4.53732908e-02, -4.08583507e-02, 6.25734925e-02, -1.22899547e-01, 1.22007720e-01, 5.00710569e-02, -1.52108014e-01, -1.75573259e-05, -3.37657668e-02, -6.49050847e-02, -3.89792137e-02, 1.03640348e-01, 4.10768911e-02, 1.99002717e-02, -6.39990494e-02, 1.52826337e-02, 2.03395803e-02, -7.32851103e-02, -1.14748396e-01, 3.41827571e-02, 3.80704924e-03, -1.57312769e-03, -7.31422845e-03, 7.59386048e-02, 4.18869853e-02, 6.99826926e-02, -4.76840250e-02, -1.11272894e-01, 3.36619914e-02, 1.01806201e-01, 1.46085262e-01, 3.77378538e-02, 5.61228767e-02, -1.88882314e-02, 2.17372905e-02, 1.87034622e-01, -3.00157256e-02, -3.60430479e-02, 5.00938594e-02, -3.71724926e-02, -5.20790555e-02, -8.10603052e-02, -5.97780710e-03, -3.10376547e-02, -1.15524292e-01, -8.76963660e-02, -6.61613941e-02, -3.65024619e-02, 1.66271243e-03, -5.65002970e-02, 2.53084674e-02, -8.45609009e-02, -8.40822351e-04, -1.17314279e-01, 2.69489493e-02, -5.58010004e-02, 7.38822669e-02, 7.64861554e-02, 4.45985720e-02, -7.26437988e-03, -5.61004207e-02, 2.75583379e-02, 1.29401684e-02, -9.39012095e-02, 9.87134725e-02, -7.87207764e-03] +shl:[-0.08246298, -0.00663229, -0.10336553, -0.05498307, -0.06005912, -0.01941997, 0.13836296, -0.0374295, -0.10046864, 0.0664353, -0.05357745, 0.10605264, -0.05879007, -0.11317369, -0.04428409, 0.02619446, -0.01469052, -0.00632534, 0.01806099, 0.06476795, 0.07136983, -0.07433701, -0.04499131, -0.03209122, -0.00591554, -0.12987979, -0.04161751, -0.03724113, 0.0643755, 0.15262964, -0.01770195, -0.01480412, 0.07844278, 0.03381388, 0.12282273, 0.11218453, 0.03648698, 0.05466011, 0.13140652, 0.10231569, -0.02752792, 0.08155245, -0.0815442, -0.02361384, 0.08174042, 0.04608373, -0.03075824, 0.11258566, 0.10365082, 0.01957305, 0.01663032, 0.12370451, -0.05608317, -0.08133394, -0.06658696, 0.01526337, -0.03048271, 0.03830395, 0.11674959, 0.02914385, -0.01551296, 0.12899806, -0.11254624, -0.15509996, -0.08282261, 0.05925979, 0.05131324, 0.11111774, 0.08019465, -0.04037561, 0.07084781, -0.12066743, 0.05015914, 0.06204399, 0.02356606, -0.10999577, -0.00570376, -0.01474917, -0.10472813, -0.07286627, -0.07196821, -0.00078647, 0.03717043, 0.12803087, -0.04885881, -0.00075548, 0.09614927, 0.07512258, 0.00853719, -0.08887053, -0.00274146, 0.00170008, -0.10263275, -0.1077304, 0.07087548, 0.00234003, 0.07556711, 0.01545195, -0.01237132, 0.00102798, 0.08989224, -0.03045379, 0.08202886, 0.06383777, -0.04375376, -0.08257226, -0.10322915, 0.0467199, -0.04441569, 0.00274923, -0.00913766, -0.03019271, 0.11234323, 0.07847768, -0.03516878, -0.0921509, -0.00541039, -0.04517939, 0.18066278, -0.04387338, 0.05020466, 0.1270451, 0.18992497, -0.09075055, 0.11157866, -0.11555224, 0.02759233, -0.01102643, -0.01886, -0.10900767, 0.10192804, -0.02441839, -0.07223345, -0.05657072, 0.04864458, 0.0434461, -0.05117723, -0.05170107, 0.10670073, -0.00107384, -0.04784028, 0.00861385, 0.10239001, -0.0646319, -0.0600362, -0.0394414, -0.05134523, -0.07712457, 0.06481249, 0.09377331, 0.01180194, 0.03164783, 0.12689756, 0.11058391, 0.03035821, 0.07340632, -0.054617, -0.06968416, 0.09480964, -0.07268648, -0.14374481, 0.05043521, -0.08882271, -0.06062213, -0.0011103, 0.06518909, 0.09214498, 0.12226962, -0.06430053, -0.11429816, 0.13523465, -0.00066237, 0.10891483, 0.0334015, 0.00520935, 0.09865219, 0.03353417, 0.09561529, -0.05916495, 0.10156702, -0.03521175, 0.07930899, -0.00678042, 0.01701043, 0.16943087, -0.08591826, -0.03294617, -0.01628479, -0.01425015, -0.02284527, -0.06410638, 0.02678315, -0.03663948, 0.05926332, -0.03173522, -0.10221602, 0.09786609, -0.06662861, -0.0860874, 0.01630387, -0.13977577, 0.12199433, -0.05010752, -0.05394553, -0.01239687, 0.01432023, -0.0627516, 0.07088464, -0.0490794, 0.05427851, 0.09744551, 0.00588473, -0.0732009, -0.13544358, 0.07758638, 0.0861757, -0.00493693, 0.0906692, -0.13813677, -0.06361877, 0.0498119, -0.05415266, 0.08389911, -0.14578378, -0.04212333, 0.04673318, 0.03409117, 0.09057893, -0.05539823, 0.08016143, 0.08088091, -0.07316072, -0.05985724, -0.11391597, 0.01958972, -0.03161199, 0.06226074, -0.10924895, 0.11770093, 0.04678937, -0.20724581, 0.01653344, -0.04043517, 0.01940287, -0.04279918, 0.06301231, 0.04858459, 0.02168738, -0.0121514, 0.03314997, 0.01003393, -0.03619482, -0.09790004, 0.03400374, -0.00985637, 0.00068411, -0.03655597, 0.07123012, 0.01325261, -0.05421546, -0.06649122, -0.10346381, 0.03027975, 0.09590835, 0.10410406, -0.0708772, 0.03493896, 0.01450103, 0.01138369, 0.08540434, -0.02925337, -0.05445265, 0.01023655, -0.05013036, -0.05145345, -0.03049448, -0.02487191, -0.06791685, 0.04146703, -0.09877365, 0.07095051, -0.07716704, 0.02749894, 0.07797067, 0.02483976, -0.07379062, -0.00424445, -0.0702231, 0.03764869, -0.03136835, 0.0233868, 0.04388947, -0.03073122, -0.01516327, -0.07340214, 0.04317094, 0.0667434, -0.09205695, -0.04146173, -0.0069498] +shufflevector:[-0.09767764, -0.08824353, 0.03899099, 0.00435545, -0.12186711, -0.06970686, -0.0964485, -0.15932237, 0.10698082, -0.08271722, -0.05207738, -0.13201332, -0.06717548, -0.11417846, 0.03035436, -0.15256873, -0.00623783, -0.09191355, 0.06220686, -0.08748576, 0.07807508, 0.00270376, -0.04804925, -0.03689964, -0.00981624, 0.08910014, -0.02157023, -0.03968275, 0.08048654, -0.05001489, -0.01883393, 0.03058131, 0.11258105, 0.02425602, 0.13034901, 0.12317532, 0.04727338, -0.02885999, 0.03723011, -0.0269001, -0.03285646, 0.08813968, -0.08352013, -0.05317977, 0.05921962, 0.06883889, -0.07058411, -0.04710471, 0.03802047, 0.09123185, 0.16916318, 0.13365102, -0.05890374, -0.02201891, -0.07651007, 0.13027045, 0.00079081, -0.09976818, 0.15173972, 0.04976823, 0.07734457, 0.0343353, -0.02343747, -0.0236652, -0.03016256, -0.08790555, 0.005418, -0.09522364, 0.10536186, 0.01590682, -0.05981902, 0.05773063, -0.12175989, 0.03322184, -0.13542558, -0.11806653, -0.03346157, -0.01536293, -0.05942194, -0.02961218, -0.06232034, 0.02511616, 0.12006239, -0.00643507, -0.0621863, -0.01278472, -0.07098591, 0.03949068, -0.00741875, -0.06452134, -0.00720875, 0.03844375, 0.03301651, 0.10466582, 0.04810766, -0.00846522, -0.04495259, 0.00425196, 0.02390406, 0.02117003, -0.08809555, -0.03415649, 0.04569992, -0.09380415, 0.0302259, 0.01185175, 0.11396313, -0.07982223, -0.04363602, 0.10383818, 0.10576716, -0.08882217, 0.10393316, 0.0626775, -0.05167208, 0.00541126, -0.09153425, -0.13180703, 0.05019467, 0.02322562, 0.0573269, 0.06601585, -0.12760146, 0.07381766, -0.08447533, -0.12702318, 0.0413956, -0.02221406, -0.00239304, -0.1267106, -0.02687616, 0.02600872, -0.07710236, -0.11172882, 0.03778006, 0.0364376, -0.05517386, 0.01742734, 0.11318761, -0.02823873, 0.0014472, 0.00087909, -0.05974534, -0.03941434, 0.01138888, -0.01530579, -0.05110165, -0.02978478, 0.07456181, 0.10353065, -0.10877196, 0.04399728, 0.13738659, 0.11699829, 0.03390636, 0.12972778, -0.05139959, -0.0677564, -0.07815008, -0.08493526, -0.14908585, 0.06371298, -0.0734336, -0.07982688, 0.11781821, 0.09885693, 0.03669797, 0.12473743, -0.04996821, 0.04790597, -0.11250798, -0.00097103, 0.02750812, -0.05887029, 0.1807055, 0.04730426, -0.04415016, 0.10402518, -0.06202928, -0.02767167, 0.15198478, 0.08579168, -0.1052456, 0.0172431, 0.03096639, 0.00482743, -0.11542083, 0.01428059, 0.15929607, 0.03832043, -0.00415191, 0.01829973, -0.00823167, -0.03183181, -0.03212618, -0.08441022, -0.01361329, -0.06965211, -0.07819369, -0.01905163, -0.14871311, 0.0653914, -0.1370752, -0.1303213, 0.03559852, 0.05729793, -0.06006886, -0.01837532, -0.04709406, 0.10477725, 0.1092696, -0.12358826, -0.1170919, -0.14443778, 0.07339801, -0.00757742, 0.01918112, 0.02507209, -0.1339297, -0.01462435, 0.06807345, 0.00641969, -0.10309967, -0.00795997, -0.00766664, -0.01595472, -0.02874503, -0.04187082, 0.01396769, 0.13766983, 0.09034921, -0.07187845, -0.04366202, 0.03456269, -0.04311907, -0.12563239, 0.06455275, -0.1322562, 0.10023831, 0.04922025, -0.00091972, 0.02836566, -0.02958779, 0.08225197, -0.04628842, -0.00105177, -0.05692149, -0.03073487, 0.05792613, 0.1370226, 0.00117446, 0.163057, -0.10422243, -0.00899994, -0.03961383, -0.00483126, 0.05885932, 0.07635187, 0.06435519, 0.08866296, -0.07109056, 0.08435484, -0.00818073, 0.11777627, 0.14011103, -0.10825064, -0.00220766, -0.03039416, 0.02849347, -0.11295001, -0.05113573, -0.08079687, 0.0540285, -0.0322139, 0.05607092, -0.08311003, 0.02281468, 0.00233219, 0.04346379, -0.10225716, 0.04873992, -0.16081506, -0.04683599, -0.02753261, -0.06971258, -0.01232723, -0.0041086, -0.05128678, -0.1062126, -0.08455689, 0.05379061, 0.01973249, 0.04396429, -0.04309249, -0.10112929, 0.01957832, 0.05969197, -0.09861042, 0.09898364, -0.00664616] +sitofp:[-0.0753744, 0.09145416, 0.1555449, -0.04343096, -0.04187974, -0.0613342, 0.03747431, -0.01311198, 0.18480359, 0.07983042, -0.04085352, 0.1214034, -0.03824124, -0.00510322, -0.00197638, 0.06575616, -0.00733312, 0.01426382, 0.06054407, 0.06837738, -0.03837593, -0.03852464, -0.04686191, -0.03360996, 0.03716014, -0.11065669, -0.11904676, -0.03037732, 0.07352351, -0.00366261, 0.13700725, 0.02964313, 0.10976966, -0.06002636, 0.11286175, 0.12202552, 0.13635387, 0.01388849, 0.09918825, -0.08906828, -0.02865072, 0.08486143, -0.0737728, -0.06269169, 0.12064653, 0.07327877, -0.03751387, 0.02340587, 0.05713205, -0.09062459, -0.11139003, -0.00720703, -0.03751345, -0.01884312, -0.04029186, 0.09686267, 0.01018491, -0.09145243, 0.14805205, 0.05549261, 0.07002069, -0.0474736, 0.02751913, 0.0940137, 0.08676677, -0.08470725, -0.03594333, 0.0542172, 0.11722886, 0.02328634, -0.13169254, 0.07381582, -0.09918078, 0.08507709, -0.11538577, -0.14614736, -0.03793857, -0.01498347, -0.01067772, -0.04255897, -0.0441641, -0.02304756, 0.09037255, 0.07408415, -0.03343658, -0.02254057, 0.09329609, -0.01150529, -0.0353207, -0.03445831, 0.01264861, -0.13486099, 0.03305937, 0.02379638, 0.09048309, 0.00178547, -0.08172756, 0.01078502, -0.06115428, 0.02779035, -0.03487869, -0.03254306, 0.0947466, 0.03186164, 0.00068999, 0.05402592, -0.06045951, 0.0477472, 0.0042654, -0.08962741, 0.17218879, -0.05809978, 0.11993269, 0.09521508, -0.08740162, -0.11182312, -0.04486572, 0.00746691, 0.1991905, -0.02003743, 0.04893283, 0.09862206, -0.08858527, -0.07354423, 0.13657196, -0.11105728, -0.00067087, -0.03081425, -0.02797302, 0.10219789, 0.0185813, -0.02727172, -0.07489301, -0.07345959, 0.00303324, 0.04825957, -0.00582316, 0.05257469, 0.06287421, -0.00416539, -0.04738541, -0.13385402, 0.04726102, 0.05680057, -0.06315746, -0.00172845, -0.07800166, 0.02787197, 0.06617817, 0.02175479, 0.01057648, 0.03096228, -0.08160361, 0.11599668, 0.0385261, 0.07384232, -0.09436936, -0.08163699, -0.07575915, 0.11648346, -0.08673766, 0.04573912, -0.00397917, 0.01022491, -0.03185963, 0.11532104, -0.02567515, 0.1252364, -0.08608069, -0.140685, 0.12905581, 0.00262936, 0.02472823, 0.06711929, 0.05080428, -0.08832861, -0.02120402, -0.07389614, -0.059571, -0.04946458, 0.13058828, 0.08649216, 0.03365498, 0.01789804, 0.15231758, 0.02886189, 0.05921626, 0.00371158, -0.09679064, -0.10739135, 0.00686768, 0.02194305, -0.01461044, 0.10990438, -0.04403361, -0.06067961, -0.07613112, -0.01531695, -0.06518944, 0.11210913, -0.01685654, -0.0745684, -0.13539442, -0.10273951, 0.01386134, 0.08669548, -0.06109518, -0.09523421, -0.04507129, 0.0863164, 0.06109398, -0.0334253, -0.12706192, -0.1468626, 0.07688086, -0.05888567, 0.03457575, 0.07539641, 0.09287009, -0.05064199, 0.06972261, -0.0371217, 0.12896347, -0.09238124, -0.04298326, 0.02839879, 0.04283432, 0.0856059, 0.01077063, 0.13622819, 0.07799818, 0.05254097, -0.039849, 0.0820153, -0.03671689, 0.00299981, 0.06283057, -0.1336771, 0.13113089, -0.00158964, -0.10989346, 0.01343755, -0.03408653, 0.09733635, 0.05883835, 0.05171843, -0.05206356, -0.04167711, -0.01938211, -0.01624588, 0.02196675, 0.02273727, -0.11637606, 0.04362718, 0.00361213, -0.11816, -0.10711404, 0.07584228, 0.11043523, 0.08293633, -0.1491113, -0.11101446, 0.01878005, 0.1000608, 0.13137041, 0.03722589, 0.03463736, -0.02745966, -0.03593809, -0.09749051, -0.05126872, -0.12124974, -0.05354523, -0.03632983, 0.03324502, -0.08098339, -0.00322342, -0.08635914, 0.04512234, -0.10699271, -0.03986282, -0.13928857, -0.04205846, 0.06321575, -0.10240678, 0.05839284, -0.00063841, -0.02087596, -0.08922117, -0.06676295, -0.07059107, 0.18959576, -0.0669812, -0.05301645, -0.07932755, -0.04075606, 0.01264694, -0.08819079, 0.07269217, -0.03655554] +srem:[0.11786712, -0.07605783, 0.02075459, -0.04209545, 0.02705169, 0.09116716, 0.02981281, 0.08356008, -0.06009063, 0.09781791, 0.09040714, 0.02743848, -0.03427244, -0.08115954, -0.04130102, 0.05564915, 0.03677768, -0.06818973, 0.01229622, 0.10119162, 0.08486122, -0.07576665, -0.04552713, -0.03454794, -0.05559987, -0.00788799, -0.04205025, -0.02796359, -0.06991072, -0.01211815, 0.00067198, -0.00998652, 0.08166391, -0.00111733, -0.02392163, 0.11791438, 0.13558389, 0.10251769, 0.1366511, -0.03538041, -0.01872796, 0.08329268, -0.0733709, -0.1421174, 0.04597077, 0.01359946, 0.10161963, -0.0020375, -0.10498751, 0.03074155, -0.01754127, 0.07847209, -0.05849594, -0.02898816, -0.06643997, -0.01153698, -0.09852165, -0.08597989, 0.08321917, 0.04814372, 0.10096131, 0.01720767, -0.10517982, 0.04283426, -0.09120381, 0.01286237, -0.03084158, -0.04604005, 0.0692585, -0.0431663, 0.07039623, 0.01841088, -0.07956944, 0.06834022, -0.0691786, -0.09554251, -0.13838054, -0.11393801, -0.04374835, 0.12942407, -0.0738572, -0.02329236, -0.08793221, -0.10037374, 0.11596114, -0.07588406, -0.07559013, 0.08848084, 0.03233813, -0.1185542, -0.00328487, -0.1593353, -0.1128227, 0.01318133, 0.04039935, -0.02638926, 0.05685763, 0.02183824, -0.08891839, 0.0541781, -0.03384489, -0.03189066, 0.08543821, -0.03453987, 0.06872522, -0.0864593, -0.08237148, 0.08458565, 0.08407348, -0.12055095, 0.17261387, -0.06852482, 0.0874107, -0.12690347, -0.05135709, 0.00583993, 0.11197799, -0.07218237, 0.09453759, -0.03588437, -0.09727669, 0.14600237, -0.00874445, -0.10353935, 0.14050727, -0.03265773, -0.11968181, -0.02062472, -0.1312392, 0.13609383, 0.08366608, -0.02766167, -0.01067447, -0.06083335, 0.05103201, 0.04607213, 0.09588845, -0.02628568, -0.013622, 0.05734533, 0.04254561, -0.11269768, 0.06473038, 0.08262838, -0.10269754, -0.02414096, -0.0789618, -0.05403486, 0.06554308, 0.06793845, 0.04146836, 0.03234183, 0.06381914, 0.10963488, 0.00832619, -0.01182409, -0.04556751, -0.09937622, 0.04423609, 0.05528898, -0.15100037, 0.03684381, -0.1312482, -0.0252526, -0.05872689, 0.0649242, 0.08300358, -0.01596921, -0.10462378, -0.14093165, -0.10591616, 0.00079315, 0.10701551, -0.15002334, 0.09605589, -0.00155625, -0.13871929, 0.04867408, -0.05014535, -0.00427578, -0.00150456, 0.01928433, -0.07694998, 0.01813783, 0.04148949, -0.04636067, -0.03546957, -0.02765356, 0.05700783, -0.0708333, -0.02534453, 0.02904963, -0.02144129, 0.11849224, -0.03236476, -0.10910731, 0.00351031, 0.00441747, 0.05432789, -0.01931661, -0.01512089, -0.00498085, 0.02717398, -0.10597541, -0.01476219, -0.06982735, -0.07451104, 0.02496638, -0.13285649, 0.06945559, -0.09110571, -0.02868197, -0.07603406, -0.15187475, 0.06400621, 0.06378125, -0.00676518, -0.11132859, 0.03409121, -0.04444034, 0.05462382, -0.02159362, 0.09788156, -0.13236478, -0.04463936, 0.0650617, -0.06632875, 0.08063406, -0.08316904, -0.06854472, 0.09828071, 0.07049992, -0.13484797, 0.13692811, 0.03492433, -0.08363353, 0.10903084, -0.11374392, 0.1307403, -0.09832217, -0.11204338, -0.00087007, -0.06935173, -0.0611119, 0.06613993, -0.00364153, 0.14398764, 0.07566261, -0.12831977, 0.00453966, 0.02029925, -0.03279305, -0.12539665, 0.05891233, 0.00407342, -0.02369943, -0.12384584, 0.07427824, -0.10528336, -0.04180683, -0.1051826, -0.10056355, 0.03262243, 0.09711204, -0.00246941, 0.03693768, 0.00763093, -0.03890984, 0.02617025, 0.04359804, -0.02920257, -0.03589976, -0.10615683, -0.05248687, -0.03591805, -0.07139263, 0.03291535, -0.06374752, 0.04303939, -0.07065493, 0.0441281, 0.07509147, -0.04794801, 0.11736579, 0.02817198, -0.06891663, -0.00075718, -0.11827605, 0.02094081, -0.16312401, 0.09168031, -0.08916974, -0.05628384, -0.11603139, -0.07713037, 0.03132793, 0.07084491, -0.00037791, -0.0847232, -0.12171892] +store:[-0.08903931, 0.01477351, -0.16975456, -0.03869233, 0.08591213, -0.05286226, 0.01271167, 0.09312024, -0.11008505, 0.01705777, -0.04068642, 0.09034588, 0.05857085, -0.1137473, -0.01713106, 0.18228568, 0.02965618, 0.04843634, 0.05409046, 0.05892447, 0.07006766, -0.05871285, -0.04446597, -0.030472, 0.01323328, 0.0120728, -0.02527971, -0.01617173, 0.05148768, -0.09299327, -0.09184083, 0.03078791, 0.07672646, 0.02320655, 0.10552847, 0.11286711, 0.05690309, 0.01965879, 0.10392925, -0.17978816, -0.00886398, 0.05826887, -0.06892841, -0.08317981, 0.04419875, 0.04416849, -0.04129114, -0.00560893, 0.07707873, 0.01263469, 0.13022913, 0.09577118, -0.05374857, -0.01682168, -0.05109674, 0.00328851, 0.08162475, -0.09610985, 0.11719684, 0.04118329, -0.00021794, 0.00146261, -0.00929514, 0.147008, -0.02824865, -0.04862466, 0.03465507, -0.02102894, 0.06558853, 0.01842379, 0.11239655, -0.14923806, -0.10030538, 0.06644839, -0.00574317, -0.103911, -0.01349163, -0.01360875, 0.1390039, -0.17634422, -0.05986012, -0.01847992, -0.07007754, 0.10483809, -0.04373745, -0.01363763, -0.12267966, -0.00717594, -0.00897231, -0.0799719, -0.01080373, -0.01813792, -0.07877526, 0.05303009, -0.02741439, 0.10273574, 0.02460029, 0.0138234, -0.0665507, -0.09051956, -0.02835545, -0.03087048, 0.07986797, 0.01528096, 0.17689668, 0.05026675, -0.08223184, -0.03069851, 0.03848013, 0.09873651, 0.11196933, 0.07507595, 0.08933773, 0.05533758, 0.03875369, -0.07596236, -0.09147686, 0.00382365, 0.01784022, 0.00316507, 0.04934647, 0.06618479, 0.07925421, -0.07053488, 0.08670541, -0.10596565, 0.04569234, 0.04553508, 0.0145301, -0.06223933, 0.05279234, -0.02554594, -0.06920958, -0.06800231, 0.03932521, 0.00625915, -0.05444177, -0.02175868, 0.06652327, 0.06556224, -0.17845112, -0.05527367, -0.00995723, 0.09222326, -0.11922956, -0.01628445, -0.04633487, -0.04068635, 0.05857733, 0.03767274, 0.04566443, 0.03009226, 0.1126679, 0.10713553, -0.02379782, 0.08178282, -0.08186516, -0.0202583, 0.04210842, 0.1142363, -0.1132584, 0.0328228, -0.06930861, -0.08594689, 0.08873525, 0.09538279, 0.06017308, -0.05503499, -0.04085709, -0.02415857, 0.13031419, 0.00242326, 0.10341664, -0.10917801, 0.06667609, -0.00946411, 0.03067829, 0.1124696, -0.0563769, 0.14423122, -0.04871555, -0.09049631, 0.07894222, 0.01625496, 0.13212112, 0.0512867, 0.00172734, -0.0497104, -0.09206664, -0.04291053, 0.07826913, 0.03535723, -0.06064798, -0.04250681, -0.02792424, -0.08830997, 0.05753523, -0.06492318, -0.10138942, 0.01667715, -0.0804102, 0.16097884, 0.11158653, 0.01692261, -0.01124761, 0.01551697, -0.05720916, 0.00800699, -0.04037887, 0.04304434, -0.01158291, -0.03472126, -0.02911476, -0.11528846, -0.02024142, 0.07286364, -0.00561035, -0.00692618, -0.16268888, 0.03903696, 0.06383353, 0.03320108, -0.0335034, -0.11520877, -0.0404283, 0.04750182, 0.09833851, 0.02574484, -0.07022915, 0.06634412, 0.06715878, -0.07985663, -0.07731491, 0.09649435, 0.14379801, 0.01017926, 0.05620866, -0.11550322, 0.11266752, 0.04565116, 0.09884171, 0.05237962, -0.03178823, -0.07050665, -0.04035759, 0.01837533, 0.12013102, -0.02865369, 0.00811802, -0.01332645, 0.02099236, 0.02962447, -0.00083848, -0.07263641, 0.00356771, 0.01307332, -0.00651529, 0.07056639, -0.10046653, 0.04629093, -0.04886217, -0.06123469, 0.0262438, 0.09189153, -0.00063973, -0.07181688, 0.03325131, 0.02389189, 0.01386592, 0.13653918, -0.03039285, 0.00530236, 0.03414563, -0.02982284, 0.03071749, -0.06745435, 0.09718839, -0.04660594, -0.06671019, 0.00525845, 0.04057214, 0.00141365, 0.03176106, -0.09287519, -0.07460524, -0.07130767, -0.00105351, -0.14463115, 0.08134033, -0.04388152, 0.07435302, -0.01085434, 0.00745162, -0.00785066, -0.07264104, 0.01289723, 0.00993892, -0.01088522, -0.04002017, -0.00233466] +structTy:[0.10398478, 0.0844404, -0.0028563, -0.10353144, -0.06316324, 0.04899618, 0.00041752, 0.04211551, 0.0228021, 0.0849439, 0.07700521, 0.08624353, 0.12379903, 0.12135006, 0.05197684, -0.01702064, 0.03580007, 0.05957656, -0.11845661, 0.00152981, -0.09939963, 0.09409495, 0.10469922, 0.08444922, -0.10640141, -0.0128, 0.11553987, 0.10865671, 0.11277395, -0.02807874, 0.01425342, -0.09752063, -0.03603492, -0.09781467, -0.06766666, -0.13021868, -0.04690151, -0.0840122, 0.08622112, 0.05945419, -0.11378544, -0.08907368, 0.12400987, 0.1094217, 0.02397802, -0.04110545, -0.02780062, 0.01452952, -0.1201671, -0.0704981, 0.0499284, -0.11969472, 0.09313186, 0.09473353, 0.08960532, -0.07046625, -0.06189816, 0.01567337, -0.07965226, -0.0565657, -0.10078995, 0.00759897, 0.01389275, -0.00533356, 0.07836611, -0.05259541, 0.03049599, -0.01232914, -0.07401791, 0.09641992, 0.02666128, 0.00111096, 0.00332416, -0.12184513, 0.00254136, 0.07216516, -0.09075359, -0.08195874, 0.0273147, 0.00820441, 0.10132988, 0.08832192, 0.00322056, -0.11689571, -0.10146225, 0.09141129, -0.01097059, 0.08715777, -0.11990695, 0.05623364, 0.10718828, -0.04558684, 0.01396663, 0.04353547, -0.04831731, -0.07371695, -0.07739151, 0.07394755, -0.00249924, 0.02440835, 0.11730098, 0.10842269, -0.10879723, 0.01261674, -0.04678693, -0.05320382, 0.00898022, 0.10337242, -0.08926117, -0.03623619, -0.00999841, -0.0388702, -0.07361633, 0.08796328, 0.04685762, 0.04608702, -0.06383379, 0.10863714, -0.03415035, 0.05249289, 0.10506508, -0.04260721, 0.02388674, 0.10347633, -0.05553691, 0.08410192, 0.10753801, 0.10031976, 0.0369143, -0.06188395, -0.11714356, 0.09824339, 0.08884721, 0.12167714, -0.07580453, -0.08737624, 0.12343314, -0.09306537, -0.0891379, -0.10015831, 0.03124662, -0.02092741, -0.05600296, 0.05398671, -0.00898682, 0.0937934, 0.12285605, 0.09166954, -0.06671929, -0.07384576, 0.10951727, -0.04615943, -0.02190594, -0.10259511, -0.0472725, -0.01047637, 0.04179905, -0.11287963, 0.0789326, -0.03010022, 0.10554809, -0.01721754, 0.01563533, -0.04322645, -0.09181673, -0.05913369, -0.10482438, 0.01945741, 0.02512772, 0.04454375, 0.00594313, 0.08042887, -0.05003912, 0.02247876, -0.06557558, -0.07484882, 0.081439, -0.0302665, 0.10086389, -0.01206004, 0.02928484, -0.01285904, -0.00039842, -0.09464402, 0.02744178, -0.04349054, 0.06193498, 0.00795537, 0.02767348, 0.06700891, -0.0917168, -0.11120648, 0.0938106, -0.08609767, -0.10971659, 0.08539889, -0.05513034, 0.10680855, -0.05444958, 0.01554686, 0.08811786, -0.0033333, -0.05214964, 0.01973361, -0.13790901, 0.0213667, -0.11163352, -0.0084236, -0.10241391, 0.06554424, 0.05727352, 0.03915421, 0.04509392, 0.05441131, -0.11554854, 0.01865609, 0.05586138, -0.12229072, -0.00326622, 0.0825519, 0.13056561, 0.03201636, -0.08672094, -0.01724296, 0.08040805, -0.04776705, -0.10029218, 0.09742265, 0.04782291, -0.0047685, -0.10858816, 0.09394278, -0.00544215, 0.01180102, -0.03701139, -0.06424756, -0.11042396, -0.03957242, -0.0335254, 0.10698017, 0.01859781, -0.02732334, -0.099872, 0.05572052, 0.08771785, -0.1010631, -0.0883453, 0.06996985, 0.01119835, -0.10309558, -0.10721214, -0.04001687, 0.05512914, -0.01773435, -0.08462644, 0.0792473, -0.05845647, -0.09394115, -0.02198078, 0.0277374, 0.03880566, -0.00615108, -0.11198665, -0.08459148, -0.09798421, -0.00579512, -0.09020751, 0.08830883, 0.08130035, -0.02627441, -0.10648566, 0.11749703, 0.03835156, 0.1109366, 0.11148429, 0.11002024, -0.092209, -0.04674381, -0.09880386, 0.11478245, -0.03286843, 0.0150685, -0.09750167, -0.0469207, 0.1232275, 0.05596367, 0.11411449, 0.01085796, 0.08377894, 0.12786277, 0.01445221, -0.07123452, 0.06793322, -0.09723512, 0.11317402, 0.09436416, -0.07319859, 0.07616659, 0.02228888, 0.10867501] +sub:[-0.09494445, 0.06848365, 0.12205097, -0.03959151, -0.02927215, -0.02687294, -0.07420408, -0.0353977, -0.09351335, -0.04633317, -0.05417258, 0.00402539, -0.04649889, -0.10124214, -0.04395557, -0.11632687, -0.00140696, 0.01070214, 0.05370382, 0.06891892, 0.0735845, -0.06141932, -0.04563565, -0.03246485, 0.00782099, 0.13948059, -0.11651716, -0.03273725, 0.06514974, -0.1627566, 0.02004835, 0.02252646, 0.08162591, -0.00928999, 0.12668508, 0.11731808, 0.01257317, 0.08448209, 0.02736891, -0.16785099, -0.02747745, 0.08476953, -0.0837324, -0.11946118, 0.04108004, 0.01237015, 0.0847548, 0.10030559, 0.10541973, 0.11513136, -0.13398275, 0.07310037, -0.05764388, -0.01853176, -0.06488636, 0.01546316, -0.03920058, 0.10392705, 0.13273971, 0.014034, -0.01697199, 0.02069598, -0.11382639, -0.03800937, -0.09373307, 0.08841001, -0.10892482, 0.03296025, 0.0813719, -0.03461815, -0.09230939, -0.14496802, -0.08955242, 0.07640082, -0.03700216, -0.08669849, -0.06068675, -0.01510115, -0.10655057, 0.04963896, -0.07350637, -0.0231183, 0.03292886, 0.02949117, -0.05187184, -0.00868174, 0.02073256, 0.04762916, -0.00146757, -0.09221981, -0.00579306, 0.00583209, -0.08516118, 0.05445264, 0.1609084, 0.06754446, -0.04329205, 0.0159036, -0.04426554, 0.03026617, -0.01507564, -0.03094801, 0.08374528, -0.15208448, 0.16876605, -0.05767294, 0.00801598, -0.06334164, -0.04386992, -0.01938289, 0.15871616, 0.11155632, 0.11639929, 0.06924931, -0.03415883, -0.124851, -0.14403455, -0.09012661, -0.09276111, -0.04198871, 0.05252516, 0.12508145, -0.13831897, -0.0881937, 0.09930559, -0.11528337, 0.04479402, -0.00248436, -0.01109837, -0.10937475, 0.07949752, -0.02628348, -0.07016896, -0.05499154, 0.04998932, 0.04237422, -0.07308432, -0.03861578, -0.01138262, 0.05617697, -0.07429691, -0.05898451, 0.04445554, 0.045173, 0.02179861, -0.02970338, -0.05059253, -0.06990916, 0.05990136, 0.01814411, 0.0452854, 0.0310883, 0.12401608, 0.11359555, -0.03886516, 0.05936166, -0.06058338, -0.06869528, -0.07077403, -0.09254432, -0.14505632, 0.02301051, -0.04669204, -0.09455157, 0.0663133, 0.06780417, 0.09390734, 0.12232085, -0.04096878, -0.12204991, 0.09420493, -0.0010089, 0.03604238, -0.1116633, 0.07029102, 0.09993175, 0.06351601, 0.08463247, -0.06060741, 0.11452122, -0.16762096, -0.1120863, 0.12885182, 0.01744088, 0.14468023, -0.02839965, 0.02838652, -0.05608352, 0.04831915, -0.0383626, -0.0267051, 0.03639468, -0.1161485, -0.0442415, -0.03238763, -0.10455024, 0.09036961, -0.0682475, -0.10079794, 0.02282542, -0.14131904, -0.14700042, 0.08480556, 0.0235306, -0.01254855, -0.03465287, -0.06691226, 0.02379558, -0.04736276, 0.05606009, 0.05502679, -0.07930918, -0.08054678, -0.09822783, 0.06398667, -0.01144198, -0.00469159, 0.06931776, -0.02215662, -0.04788851, 0.05447281, 0.1159787, 0.07471027, 0.09316013, -0.04276908, 0.04761779, 0.00321996, 0.10372538, -0.05960097, 0.07444828, 0.07998235, -0.06109702, 0.09651858, 0.00503842, -0.09945747, -0.0144609, 0.06248209, -0.11205962, 0.11425795, 0.04820586, 0.0923992, 0.01847494, -0.04057307, -0.09273482, -0.04316257, 0.11777078, 0.02695649, 0.03213795, -0.03817299, 0.03210399, 0.01266425, -0.10064821, -0.05274574, 0.04858893, -0.00931269, 0.00048393, -0.02282662, 0.07387739, 0.03190946, 0.06407153, -0.07666802, 0.05722786, 0.00126766, 0.09756675, 0.00362059, -0.10615142, 0.02265609, -0.02738072, 0.00323484, 0.13288909, -0.03016639, -0.03942814, -0.01525078, -0.03153331, -0.02931101, -0.08156494, -0.02533334, -0.05931148, 0.04234428, -0.10812777, 0.01102374, 0.13740149, -0.0427645, 0.01236552, 0.01720706, -0.03020155, -0.00306541, 0.03460921, 0.05382002, -0.05152238, 0.04809175, 0.09740091, -0.01703873, -0.01583858, -0.07461619, 0.04376406, 0.07086452, -0.09403715, -0.0780853, -0.00641412] +switch:[1.82230957e-02, -1.46673784e-01, 9.21162441e-02, -3.54075357e-02, -5.72238006e-02, -6.19609244e-02, 2.76381755e-03, -2.34435946e-02, -5.80182392e-03, -9.63488072e-02, 7.90170282e-02, 1.02808874e-03, -4.76602688e-02, -1.10481307e-01, 1.25816122e-01, -9.28602815e-02, -4.57451772e-03, -1.67666283e-03, 6.15103655e-02, 7.23074228e-02, 7.93735012e-02, -5.01879863e-02, -4.95701618e-02, -3.49150226e-02, 1.76449358e-01, 6.74000755e-02, -2.21984256e-02, -3.01887020e-02, 7.18837678e-02, 2.97830049e-02, -2.28071673e-04, 3.17240730e-02, -5.84750175e-02, 2.56566778e-02, -4.04704735e-02, 1.28964543e-01, 6.72396049e-02, 3.06997895e-02, -7.48330876e-02, -8.95913783e-03, -3.10011972e-02, 9.05034021e-02, -7.78072923e-02, -4.72846515e-02, 1.30601645e-01, 6.20225370e-02, 8.41480345e-02, -1.09065697e-03, 5.43660894e-02, 1.29867852e-01, -2.75610872e-02, 8.54839757e-02, -6.14266768e-02, -1.95460171e-02, -5.04239053e-02, -1.02417078e-02, -2.91618258e-02, 7.42028281e-02, -1.40128121e-01, 4.99171279e-02, 1.46890625e-01, -2.99796159e-03, -9.03796405e-02, -1.46436647e-01, 3.06645092e-02, 4.73056771e-02, 7.92344436e-02, 1.44205689e-01, 7.98976570e-02, -1.74117669e-01, -7.40434881e-03, 1.35804685e-02, 6.85091615e-02, -5.46167605e-03, 1.37726991e-02, 1.01390459e-01, 5.28632440e-02, -1.62072722e-02, -8.01484392e-04, 1.08141184e-01, -7.33539015e-02, -2.51849778e-02, -3.82433943e-02, 1.18551590e-01, -5.18379658e-02, -1.80709008e-02, 1.72555149e-02, -2.84970086e-03, 8.43922645e-02, 1.31055489e-01, -7.20921764e-03, -3.11990064e-02, 3.56045105e-02, -4.04984355e-02, -1.71444386e-01, -2.09432188e-03, 4.39108238e-02, 1.36508550e-02, 2.89736930e-02, 3.40445042e-02, -2.61740182e-02, -3.41676064e-02, 9.15355310e-02, 1.44226521e-01, -9.22889709e-02, 5.78432269e-02, -2.75776125e-02, -1.05328619e-01, 1.44610379e-03, 1.17564797e-01, -7.19052404e-02, -4.98395786e-02, -1.74313098e-01, -1.55286297e-01, 5.99528067e-02, 1.35556847e-01, 5.34775853e-02, -4.42090072e-02, -6.58465773e-02, 1.56475991e-01, 6.42231554e-02, 5.64143583e-02, 1.11051932e-01, -9.26656052e-02, -1.58155188e-01, 1.47060484e-01, -8.23343620e-02, -1.55640962e-02, 1.03107229e-01, 1.28384903e-01, 6.48312345e-02, -2.89664529e-02, -3.13004665e-02, -8.17870796e-02, 5.07755205e-02, 4.10613306e-02, -1.23869248e-01, 8.58842283e-02, 7.60532022e-02, 7.28216320e-02, 1.00537784e-01, 2.43796734e-03, -8.18978697e-02, -8.24780688e-02, 6.95520341e-02, -2.36221030e-02, -5.64260334e-02, -1.24988884e-01, 5.98589890e-02, -1.52967289e-01, -1.14695273e-01, 3.28661576e-02, -4.71328944e-02, 1.23109691e-01, -1.59946941e-02, 1.72025654e-02, 1.04566008e-01, -3.11607053e-03, -7.77859017e-02, -9.99234095e-02, 5.49158566e-02, -8.68881866e-02, 1.32686362e-01, 3.99068445e-02, -8.49385187e-03, 2.63695815e-03, 8.05242807e-02, 1.31041706e-01, 1.19769238e-01, 1.65171534e-01, 1.35466158e-02, -5.13773076e-02, -8.95379782e-02, 7.32137449e-03, -1.61653347e-02, -2.21055350e-03, -1.34480849e-01, 2.26954035e-02, -6.31849617e-02, -5.16405404e-02, -3.50034945e-02, 6.33815825e-02, 3.57133038e-02, 1.84101332e-02, 2.04679761e-02, -1.10381909e-01, -1.70273811e-01, 1.38713285e-01, 1.39004782e-01, 3.61546013e-03, 1.48700386e-01, 2.23871972e-02, -3.43204215e-02, -4.86632288e-02, -3.44161168e-02, 3.44432443e-02, -1.59645051e-01, -7.42960274e-02, 4.77764681e-02, 1.94872376e-02, -2.08032615e-02, -4.94972467e-02, -2.22981125e-02, -8.48864168e-02, -1.35311931e-02, -1.30552858e-01, -6.40754476e-02, 6.09221831e-02, 5.30294143e-02, 1.84793338e-01, -8.18554759e-02, 1.60487369e-01, -7.60515556e-02, 8.31529126e-02, -3.61520424e-02, 3.82622033e-02, -6.02410641e-03, -4.06743959e-02, 6.18978627e-02, -1.47146184e-05, -1.45755589e-01, 1.19065214e-02, 1.28459394e-01, 1.36010619e-02, -4.66533229e-02, 3.38105671e-02, 1.09111689e-01, 6.48710802e-02, 1.39975831e-01, -1.97123528e-01, 8.21544454e-02, -1.19877607e-01, -1.49543926e-01, 7.99035579e-02, 5.97476512e-02, -6.58515049e-03, 6.72217682e-02, -4.13156524e-02, -2.12552007e-02, 5.11281937e-02, 4.19479944e-02, -1.62192091e-01, -3.57964523e-02, -7.29772523e-02, -4.76461686e-02, 1.29329219e-01, 4.93308008e-02, 7.24830627e-02, -6.47586957e-02, 1.51599005e-01, 2.30839942e-02, -2.17884332e-02, 4.67900245e-04, 4.28219996e-02, 4.95077902e-03, -8.63966346e-03, -3.70625891e-02, 8.00406486e-02, 1.05738908e-01, 7.35925063e-02, -9.07932781e-03, 5.19292392e-02, 1.70663632e-02, 1.04407586e-01, -4.89918166e-04, 3.93007286e-02, -7.41250813e-02, -2.47457009e-02, -5.94177702e-03, 8.43859762e-02, -3.28813270e-02, -3.82379293e-02, 3.82671170e-02, -3.38234603e-02, 4.61377949e-02, -8.14452469e-02, -4.03589755e-02, 1.78039953e-01, 4.59448248e-02, 2.03773286e-02, 6.60418719e-02, 6.41929209e-02, 3.81838866e-02, 1.57985240e-01, 2.63568163e-02, -7.08300993e-02, -4.28793079e-04, -1.45186139e-02, 2.75479145e-02, -1.86989799e-01, -1.93673670e-01, 1.18773639e-01, 1.80737942e-01, -6.74974592e-03, 2.24003606e-02, 3.33442837e-02, -4.90845479e-02, -1.01720192e-01, 2.60008220e-02, -5.91744203e-03] +trunc:[-0.09069052, -0.00856405, -0.10881952, -0.05069736, 0.00628406, -0.06469081, -0.12144392, 0.07370768, -0.11411092, 0.06546251, -0.04877181, 0.00238593, -0.03459736, -0.13986792, -0.04702191, 0.06592274, -0.01418401, 0.00180827, 0.01866212, 0.08842317, 0.07638592, -0.0776244, -0.0442874, -0.03253607, 0.00990842, 0.03024869, -0.07044224, -0.02736762, -0.06133202, -0.12773938, 0.13718072, 0.02950159, 0.07502466, 0.02349333, -0.03429123, 0.1158153, -0.11853915, 0.07401083, 0.0046715, 0.10084243, -0.02689261, 0.08158442, -0.06983188, 0.08012192, 0.02017705, 0.08271459, 0.00871722, 0.11362044, 0.0719827, 0.01287744, -0.05394344, 0.12493879, -0.05852875, -0.0179905, -0.04644617, 0.11017529, 0.02152885, -0.09845413, 0.12161411, 0.05037363, -0.00106848, 0.07948381, -0.10928987, 0.15399164, -0.08705053, -0.014555, 0.06277097, 0.02218105, 0.09848541, -0.0297642, 0.06753765, -0.03577851, -0.0959889, 0.07014994, -0.06256049, -0.14147316, -0.03659892, -0.0187117, -0.17512527, -0.12144799, -0.06717411, 0.00315104, 0.16945072, 0.04920094, -0.04852661, -0.01967142, 0.09704297, 0.03886316, -0.02841245, -0.10037743, 0.00604078, -0.10800809, -0.08782808, -0.02616588, -0.12414587, 0.10652979, -0.02215327, 0.00900719, -0.0569739, 0.00894248, -0.02231268, -0.06461532, 0.0910627, -0.11528061, 0.08729875, 0.03341809, -0.04844396, -0.02183511, 0.03935719, -0.01409231, 0.13975506, 0.11504132, 0.03110278, 0.0669358, -0.02931679, -0.06638764, -0.05251675, -0.03295575, 0.07849658, -0.02841824, 0.05653493, 0.00413038, 0.02094361, -0.09067824, 0.11212046, -0.07983397, 0.01395607, -0.01077914, -0.06158095, -0.10719809, 0.03054979, -0.02859535, -0.07203794, -0.09399433, 0.04979326, 0.01425015, -0.01737768, 0.01275939, 0.08909567, 0.07561785, -0.06035783, 0.07109469, -0.01786304, 0.12072801, -0.02310807, -0.02103692, -0.05271443, -0.00280532, 0.06304026, 0.03783371, 0.03887673, 0.02830748, 0.13398796, 0.00281637, 0.01477472, -0.11410747, -0.04624989, -0.07535898, 0.03329262, 0.21582763, -0.08888667, 0.05907753, 0.06336345, -0.05611245, 0.0134684, 0.06983107, 0.08230904, -0.02158814, -0.01854561, -0.11247301, 0.04537944, -0.03079014, 0.11130829, -0.1374169, 0.01163592, 0.09868495, 0.06318855, 0.1122501, -0.05638636, 0.10727581, 0.12967008, 0.04165374, 0.05686298, 0.01697432, 0.07626464, -0.05118998, 0.07737517, 0.05602977, -0.06611525, 0.06521197, 0.01279695, 0.01870003, -0.02349679, -0.02654948, -0.02965263, -0.10362551, 0.0769649, -0.06738275, 0.04563204, 0.11512192, -0.14191934, -0.18719877, -0.13272859, 0.02139098, -0.01396666, -0.03046942, -0.06005831, -0.12040097, -0.0479958, 0.08427179, 0.00205723, -0.00062016, 0.00303, -0.10114814, -0.01763233, -0.01800423, -0.00626668, 0.01421074, -0.13580619, -0.02991443, 0.05598553, -0.08706678, 0.05286516, 0.13318883, -0.0434802, 0.07091179, 0.05311641, 0.0710042, -0.02426281, 0.03830455, 0.07836992, -0.02839404, 0.06272449, 0.14402418, 0.14199208, -0.05060368, 0.06101434, -0.1280026, 0.11643973, 0.0481708, -0.06937701, 0.04435814, -0.03236249, -0.07346335, -0.04145261, 0.11668725, 0.03796726, -0.00429297, -0.07901973, 0.0272727, 0.02224657, -0.08061658, -0.11238667, 0.03048641, 0.00465658, -0.11147922, 0.00858276, 0.07368833, 0.03276803, -0.00075244, -0.04562974, 0.07718385, 0.04272735, 0.10010941, 0.14234005, 0.03630562, 0.05158894, 0.00191592, 0.06758034, 0.16480672, -0.02888063, -0.02989195, 0.0124988, -0.05004475, 0.03389416, -0.07745092, 0.04603759, -0.01669758, 0.04162449, -0.06895139, 0.03242306, -0.1353909, 0.04407966, -0.04471209, 0.02616031, -0.05305643, -0.00049896, 0.06097955, 0.02844643, -0.05522902, 0.0726321, -0.04243707, -0.11887328, -0.00754457, -0.07816753, 0.02455406, 0.02875824, -0.09017128, -0.10819915, -0.01038165] +udiv:[1.75699852e-02, 1.63717791e-01, -4.88417633e-02, -5.59903905e-02, 2.30418053e-02, 1.15926355e-01, -2.11150367e-02, -3.13948421e-03, 3.90274785e-02, 9.37099829e-02, -5.37449569e-02, 7.12769628e-02, -1.22789271e-01, 4.41913530e-02, -4.03947420e-02, 5.87395839e-02, 9.20161896e-04, 5.84653951e-02, -3.09888311e-02, 8.44295621e-02, 6.71917200e-02, -6.33083060e-02, -4.32416797e-02, -3.22477594e-02, 3.30110528e-02, 3.14729288e-02, -1.18971989e-01, -2.68378817e-02, 6.21047132e-02, -5.92623092e-02, -9.93225141e-04, -5.97978234e-02, 6.74524307e-02, 1.06827497e-01, 1.17330148e-03, 1.69277247e-02, 1.29671440e-01, 1.29314542e-01, 2.98597459e-02, 1.53243924e-02, -2.57589258e-02, 5.81337027e-02, -7.03474209e-02, 1.06891170e-01, 1.28440604e-01, -5.10011986e-02, 1.18113987e-01, 1.15220584e-01, 1.17137164e-01, -9.11746621e-02, 2.47575250e-02, 1.22551382e-01, -5.53212874e-02, -1.63716469e-02, -5.19215763e-02, -2.33192090e-02, -1.14893816e-01, 5.29831946e-02, 8.56330767e-02, 4.73414809e-02, -5.94671816e-02, -4.46983278e-02, -1.14836566e-01, 5.37523180e-02, 9.74750519e-02, 1.05184093e-01, -3.00222524e-02, 4.03344482e-02, 6.24035113e-02, -4.15790640e-02, 1.97115857e-02, 5.18218502e-02, 6.04202040e-02, 7.99850598e-02, 8.64783600e-02, -6.09386824e-02, 6.83379779e-03, -1.23325912e-02, 2.74332073e-02, -6.25708029e-02, -7.70327523e-02, -3.90499197e-02, 1.27425134e-01, 1.30195767e-01, 1.06076486e-01, -1.98900197e-02, -5.94966337e-02, -4.28632274e-02, 2.61100717e-02, -2.27470393e-03, 1.98915079e-02, -9.82206538e-02, -8.78966376e-02, -3.49071473e-02, 2.93970034e-02, 1.12692073e-01, -4.22342531e-02, 1.85324736e-02, -1.45027891e-01, -7.12822527e-02, -1.80613517e-03, 4.83946502e-02, 8.15224051e-02, -1.16694439e-02, 3.85974743e-03, -8.35023820e-02, -7.47592971e-02, 6.18730821e-02, -4.24698414e-03, 3.90361575e-03, 1.65136278e-01, 5.19564301e-02, 1.16218545e-01, 8.84437338e-02, 2.84331553e-02, 5.88888582e-03, 5.26379757e-02, -3.84773538e-02, -3.46903577e-02, -4.68206182e-02, -8.46515372e-02, 1.32276714e-01, -1.13549516e-01, -7.36024156e-02, 1.36816442e-01, -1.24911755e-01, 4.32765037e-02, 8.28898549e-02, -2.01892897e-01, 1.20643765e-01, 1.47624582e-01, -9.95476637e-03, -4.69020531e-02, -4.30148616e-02, 4.97168526e-02, 4.84427661e-02, -9.86863375e-02, -3.84097323e-02, 5.71950264e-02, 6.83519170e-02, -5.18324748e-02, 1.16008632e-02, 1.70646515e-02, -7.47198984e-03, -3.33806947e-02, -6.80859610e-02, -7.59785846e-02, -9.24692005e-02, -4.30421941e-02, 1.01189017e-01, 4.91701923e-02, 4.19359244e-02, -1.76371951e-02, -2.01588799e-03, -3.88424620e-02, -9.78818387e-02, -6.59597293e-02, -9.77060720e-02, 9.62130874e-02, 4.60811034e-02, -8.22164342e-02, -2.72468422e-02, 9.36965495e-02, 4.28541079e-02, -4.92419191e-02, 4.98524308e-02, 9.26789418e-02, -1.80652328e-02, -1.02611274e-01, -1.38795957e-01, 5.52098006e-02, 5.74068120e-03, 1.11998841e-01, -1.34567348e-02, -1.44565374e-01, 9.28443000e-02, 7.10826665e-02, -1.39134720e-01, -4.46213000e-02, 2.57595330e-02, -7.20204115e-02, -5.32876588e-02, 4.25977595e-02, 1.76743325e-02, -1.27906367e-01, -9.31271315e-02, 2.87014935e-02, -4.89342175e-02, -7.03581274e-02, -1.12884954e-01, 1.07768796e-01, 7.20325187e-02, -7.55689144e-02, 1.11857541e-01, -3.92054729e-02, -1.05413049e-01, 1.11273244e-01, -1.37683302e-02, -5.00242859e-02, 1.30537162e-02, -1.95207857e-02, 5.82617819e-02, 1.15530200e-01, 5.53700589e-02, -1.45304510e-02, -9.52979103e-02, -7.02364668e-02, 1.16613600e-02, -1.26770630e-01, 4.22485881e-02, -2.86240857e-02, 1.93487722e-02, -5.71072921e-02, -6.70829490e-02, 4.19370318e-03, 3.95159610e-02, -6.02290500e-03, -5.27076572e-02, -1.03586707e-02, -4.06458676e-02, 2.30814535e-02, -1.06773391e-01, 8.98270458e-02, -6.87726215e-02, -4.23558690e-02, 8.63163844e-02, 6.09837919e-02, 6.76583052e-02, -7.42255449e-02, -1.50656644e-02, -3.72536369e-02, -8.48336518e-02, 4.65022698e-02, -5.96719570e-02, -1.94256064e-02, -5.17275184e-02, 5.91075607e-02, -9.35697630e-02, 1.26241907e-01, -1.04793407e-01, -5.07655777e-02, -2.75579537e-03, -4.69973870e-02, -7.72106126e-02, 7.13287219e-02, 1.14364035e-01, -1.92703940e-02, -2.97009237e-02, -6.37793913e-02, 7.52712553e-03, 1.50652966e-02, -1.15996987e-01, -2.14496139e-03, 6.45721033e-02, 4.62089619e-03, -1.09122626e-01, -8.51657391e-02, 5.14045805e-02, 1.08926930e-01, 6.57496527e-02, -1.02959193e-01, -5.21127433e-02, 3.19818817e-02, 9.36435834e-02, -1.20714435e-03, -8.00573155e-02, 5.86445816e-02, -2.86645349e-02, 3.45011870e-03, -1.78329647e-02, -2.68394276e-02, 5.30701764e-02, 5.18199317e-02, -1.02387898e-01, -3.83075103e-02, -9.41409171e-02, -2.36595422e-02, -9.92296636e-02, 7.06227496e-02, 2.21033636e-02, 4.73616533e-02, 1.00648291e-01, 1.31305724e-01, -4.48653772e-02, 2.65933685e-02, -8.21263045e-02, 1.73351902e-04, 3.42274792e-02, 6.42525181e-02, 2.86783483e-02, -1.32075995e-01, 1.36706203e-01, -1.14858307e-01, -6.01519085e-03, -7.35434666e-02, 4.72912714e-02, 6.80679530e-02, -7.09482515e-03, -1.27583355e-01, -2.63873041e-02] +uitofp:[-5.63282184e-02, 6.00155368e-02, 8.85935277e-02, 2.91776378e-03, 3.78707536e-02, -7.59595931e-02, 3.59038375e-02, -1.39360413e-01, 6.01789281e-02, 1.17000274e-01, -4.77598906e-02, -2.12960206e-02, -3.35729420e-02, -1.34922862e-01, -1.42520730e-04, 3.63386124e-02, -1.85869280e-02, -2.56832540e-02, 5.96569031e-02, -7.22092539e-02, 6.91009909e-02, -9.67973657e-03, -4.61243540e-02, 9.48724151e-03, 1.36814704e-02, -1.00822814e-01, -2.37582549e-02, -3.81490961e-02, 7.55089000e-02, -6.98652491e-02, 5.66754453e-02, 2.87580304e-02, -6.70712516e-02, 2.33250633e-02, 1.23944961e-01, 1.17191322e-01, -1.15598373e-01, -1.68355722e-02, -1.36635408e-01, 1.42917663e-01, -2.74909344e-02, 5.92416339e-02, -1.15694597e-01, -4.81480099e-02, 1.56862882e-03, 8.16571936e-02, -5.28250411e-02, 4.64775525e-02, 1.39026478e-01, 8.94033015e-02, -3.69505072e-03, -6.26091361e-02, 1.03697032e-01, -1.79900359e-02, -1.17800683e-02, 5.62886335e-02, 2.26217806e-02, -7.60979503e-02, 1.42328084e-01, -7.83044919e-02, -7.74269104e-02, 3.37102264e-02, 4.31387611e-02, 4.97212112e-02, -5.72984144e-02, -7.04233572e-02, -4.34574634e-02, 6.73430637e-02, 1.14692688e-01, 2.51765605e-02, -1.65649906e-01, 3.18033844e-02, -9.46829021e-02, 8.68383348e-02, -6.15696423e-02, -1.40382409e-01, 1.09597772e-01, -1.43268015e-02, 5.42225596e-03, -8.97116214e-02, 5.39331846e-02, -9.69645102e-04, -8.86531174e-02, 8.01505446e-02, -4.76641357e-02, -8.92950688e-03, 1.26900166e-01, 5.75553204e-05, -3.12171280e-02, -4.66957241e-02, 9.86527372e-03, -1.10930815e-01, 1.08534442e-02, -1.20255537e-01, 2.46250015e-02, 1.09282121e-01, -8.24425556e-03, 7.94796180e-03, -1.51883420e-02, -8.07689317e-03, -3.71166728e-02, -3.12558189e-02, 9.15531814e-02, -5.11700809e-02, 8.20210874e-02, 5.26816770e-02, -9.71948355e-02, -9.76071432e-02, -4.44715284e-02, 1.34744316e-01, 1.10382631e-01, 5.08151241e-02, 1.13625258e-01, 9.35120881e-02, 6.83782250e-02, -1.49970138e-02, -9.29416344e-02, 1.72455609e-02, 9.90539566e-02, 7.08967354e-03, 5.92078790e-02, 9.21331644e-02, -1.19662724e-01, 7.22469820e-04, 7.93043897e-02, -9.73228961e-02, 6.36658743e-02, -3.02702077e-02, 9.29800197e-02, -3.62472460e-02, 5.68846092e-02, -2.68639103e-02, -7.35373199e-02, -4.71124724e-02, -3.56700458e-03, 2.35400144e-02, -2.00953912e-02, -7.88051784e-02, 6.13487959e-02, -1.92941055e-02, -1.04992166e-02, 7.53214136e-02, 6.78344741e-02, 6.77612349e-02, 1.60729319e-01, 4.05398523e-03, -4.90324832e-02, 5.64296022e-02, 6.35367781e-02, -1.76413252e-03, -1.04457676e-01, 2.81302165e-02, -9.10903215e-02, 1.12319939e-01, -3.34432758e-02, -2.40643136e-02, -9.20465514e-02, -6.68784603e-02, -1.08863652e-01, 8.25430378e-02, 4.94795479e-02, 4.27765474e-02, 7.57356137e-02, 2.21654512e-02, 3.06743216e-02, 1.24781564e-01, 3.33287045e-02, 1.20569669e-01, -7.49522895e-02, 4.87999395e-02, 2.24118177e-02, -5.64084128e-02, 2.35851072e-02, -7.93482512e-02, -9.54198912e-02, 1.05381310e-01, -2.73512844e-02, 6.95345998e-02, -5.83676398e-02, -5.93514368e-02, -2.75438633e-02, 9.26789120e-02, 4.37387787e-02, 1.66400503e-02, 1.40622146e-02, -5.06052263e-02, 1.21910766e-01, 1.45848423e-01, -1.55744880e-01, -1.25195533e-01, 2.25903392e-02, 3.89373899e-02, -1.93368476e-02, -4.36389297e-02, -5.09965867e-02, -4.10466902e-02, 4.32559736e-02, -6.73405230e-02, 3.93078215e-02, 1.49577865e-02, -1.41833678e-01, -7.83148855e-02, -1.30669370e-01, 4.10185680e-02, 3.60450894e-02, 1.25355244e-01, -3.05857770e-02, -4.11229171e-02, -3.91723029e-02, 4.05617617e-02, 6.66899681e-02, -1.14073947e-01, -1.22696869e-01, -1.07229777e-01, 8.26053545e-02, -5.64539693e-02, 3.51469405e-02, 9.91492644e-02, 3.23158018e-02, -7.31296092e-02, 6.83096722e-02, 1.20353021e-01, -1.19290501e-01, -4.95836623e-02, 1.63247660e-02, 2.42421664e-02, 1.01504840e-01, 1.01055712e-01, 2.84238532e-02, 1.30453721e-01, 6.99899122e-02, -6.46391660e-02, 1.62032600e-02, -1.01348415e-01, -1.12251751e-02, 1.09829120e-02, 6.02016151e-02, -1.30423591e-01, -4.46134880e-02, 4.65044230e-02, -7.52534419e-02, 4.43941243e-02, -1.78460535e-02, 8.18970874e-02, -4.04245742e-02, 2.87893414e-02, -4.14789654e-02, -2.06607543e-02, 9.33266133e-02, -2.56698411e-02, 1.23823360e-02, 2.25730147e-02, 1.10989641e-02, 3.46661285e-02, -6.52538985e-02, -1.13936633e-01, -1.33922338e-01, 7.35126287e-02, 1.41057119e-01, -6.19319454e-02, -4.34278809e-02, 9.47084054e-02, -9.45150666e-03, 9.97077525e-02, 1.41091019e-01, -7.25038499e-02, 3.26399058e-02, 2.52691805e-02, 6.50415793e-02, 8.76456276e-02, -5.06774113e-02, -1.22560926e-01, 1.99846495e-02, -3.04119363e-02, 5.26297018e-02, -7.45076314e-02, -1.16043705e-02, -1.24479339e-01, 4.40428369e-02, -1.12777561e-01, 4.78612445e-02, 5.03533520e-02, -4.63219807e-02, 3.07141896e-02, -9.75703821e-02, 6.15129471e-02, -4.50750254e-03, -1.11115858e-01, -1.24545902e-01, -3.51502411e-02, 1.88302752e-02, 6.21906631e-02, 4.33849581e-02, -1.51248565e-02, -1.66323464e-02, 3.15329307e-05, 1.17833316e-02, -9.42854360e-02, 4.55419384e-02, -7.05491332e-03] +unknownTy:[-0.08978615, 0.08604635, 0.00821112, 0.04686889, -0.00101029, 0.09055027, 0.0257161, -0.05442363, 0.02902259, 0.03048775, 0.07145371, -0.03695042, 0.05917024, 0.05989602, -0.11224926, -0.00266398, -0.10521812, 0.11385372, -0.1067156, -0.07200094, -0.09193016, 0.08576576, 0.09934279, 0.094043, -0.10458443, -0.00109049, 0.0958501, -0.06252585, -0.11429717, 0.04683558, -0.00199763, -0.09502595, 0.10916534, -0.10354826, -0.07838654, -0.09967819, -0.05357688, -0.10221253, -0.0229328, 0.0335619, 0.09319797, -0.06664226, 0.09507477, 0.07479795, -0.09269055, -0.03358859, 0.01581774, -0.03590173, -0.11226773, -0.0205493, 0.02865408, -0.10440473, 0.10742707, -0.11025715, 0.05853212, 0.08078041, 0.08141707, 0.01129168, -0.04826729, -0.07737791, -0.01224103, 0.04422827, 0.09477243, -0.01489189, -0.03290652, -0.09063295, 0.02739128, -0.07850638, -0.00619033, -0.07328627, 0.00679465, 0.00040724, 0.01769609, 0.11202416, -0.03862508, 0.06600593, -0.09352265, -0.09710532, 0.03368496, -0.00171955, 0.0887532, -0.08129261, -0.05140676, -0.08943265, 0.08617195, 0.10618942, -0.00175232, -0.08666159, 0.04403316, 0.07700085, -0.06775662, -0.00866899, 0.06582611, -0.03309257, -0.00274901, -0.07609633, -0.06905001, 0.07653906, -0.00382685, -0.01246157, -0.09784551, -0.07993367, -0.10046861, 0.01451916, -0.03657187, -0.03330661, 0.03167195, 0.09181464, 0.02547017, -0.05004278, -0.00670447, -0.07623707, -0.07256798, -0.06724243, 0.05997859, -0.02437048, 0.07118158, -0.05331712, -0.02895476, 0.07729451, -0.07348443, -0.11226143, 0.01251263, 0.07393535, -0.00677743, 0.06808397, 0.1099469, 0.10228327, 0.02164344, -0.09276336, -0.03590871, 0.10207657, 0.0886282, 0.00631967, 0.08079276, -0.09606047, 0.0978144, 0.06036185, -0.01735945, -0.10559683, 0.02479964, -0.02370557, 0.09468216, 0.07709676, -0.02600477, 0.08867917, 0.0950565, 0.0930969, -0.11354181, -0.0628259, -0.03876393, 0.08814997, -0.02790073, -0.10016135, 0.0969744, 0.00024623, -0.0115929, 0.08609959, 0.09036657, 0.00290278, 0.08983185, -0.01171031, -0.00177083, -0.01892726, -0.06383381, -0.07241121, -0.10815201, -0.08466421, -0.09985387, -0.05760162, -0.01290495, 0.08052593, -0.05305063, 0.02184189, -0.05511095, 0.02613739, -0.0441314, -0.02622986, 0.07821494, 0.02992556, 0.05140843, 0.0047847, -0.01151473, -0.09930155, 0.02605081, -0.0697941, 0.04555734, -0.08057658, -0.0390778, 0.08423249, -0.09584866, -0.05979219, 0.1000574, -0.0717798, -0.10985031, 0.05050858, 0.06075554, 0.05752412, -0.02478955, 0.04311449, 0.08836006, -0.02039124, -0.06661972, 0.02308118, -0.07811435, -0.08187937, 0.09187179, -0.00970396, 0.10088242, -0.07301389, 0.07173055, -0.03970388, -0.02186177, 0.07825094, -0.10539299, -0.09999524, 0.10670441, 0.09393889, 0.00061971, -0.10343733, -0.04099821, -0.08906221, -0.01110954, -0.00256139, 0.10149505, -0.00395801, -0.08786382, -0.05373333, 0.05947446, 0.01092714, -0.09108129, 0.08940531, 0.07503937, 0.0014931, -0.03489729, 0.08467741, -0.10039686, 0.03245505, -0.03881358, 0.11170197, 0.02256047, 0.07300644, 0.09770721, 0.04056339, 0.09965075, -0.09751173, 0.02720584, -0.0975764, -0.03424701, 0.05817256, 0.10860001, 0.041708, 0.09884666, -0.02491111, -0.11964062, -0.05242791, 0.0494818, -0.10256524, -0.02472056, 0.02071353, 0.01033227, -0.01737094, -0.07070377, -0.10318071, -0.03039237, 0.08582819, -0.06162644, -0.11089289, -0.0480149, -0.02768658, 0.07293434, 0.11058716, 0.05887664, 0.10254722, 0.1111923, 0.10160086, -0.09574272, 0.02379113, -0.09975246, 0.10239129, -0.03300572, 0.04858131, 0.00527334, -0.03205954, 0.09525187, 0.09802733, 0.10738315, 0.04123269, -0.0405672, 0.01950369, -0.0399888, -0.03680857, -0.02632365, 0.08982592, 0.10718733, 0.10515059, -0.05887289, 0.0919353, 0.04999418, 0.10227452] +unreachable:[-5.52709438e-02, -1.01937324e-01, -1.04569986e-01, -4.67760973e-02, 1.19750902e-01, -5.99652976e-02, -1.15737960e-01, 1.03570096e-01, 9.64547768e-02, 2.17881589e-03, -3.22779939e-02, 9.10651982e-02, 5.73438480e-02, -1.11046411e-01, -1.27793513e-02, 6.55312240e-02, 9.62859094e-02, 5.56881726e-02, 5.65436184e-02, 9.41383019e-02, 5.51034287e-02, -1.02077849e-01, -4.16359119e-02, -2.19594650e-02, 1.89023260e-02, 8.54447037e-02, 3.01837060e-03, 5.15663158e-03, 6.99327968e-04, -2.31286809e-02, -8.87769982e-02, 3.33681740e-02, -5.66759184e-02, 1.84113588e-02, 9.55888554e-02, 1.18309490e-01, 6.22245073e-02, 3.06655094e-03, -5.09460224e-03, 1.04439715e-02, 1.72746796e-02, -1.44419167e-02, 6.18006624e-02, -8.72938186e-02, 5.28316982e-02, 8.33937004e-02, -1.15522198e-01, 4.57376577e-02, 3.96507010e-02, -9.54099745e-02, 2.58888789e-02, 7.30298236e-02, -3.59535292e-02, -1.09471623e-02, -2.41794493e-02, 1.18427962e-01, 1.23231225e-01, 6.37334138e-02, 7.63408020e-02, 4.53896187e-02, -8.92812908e-02, -4.74106930e-02, -9.03688818e-02, -8.80149454e-02, 6.68792473e-03, -7.85098746e-02, 5.68454787e-02, -1.04174033e-01, 1.01606034e-01, 3.11888698e-02, -6.05628751e-02, -4.48961407e-02, -2.98433919e-02, 7.35735968e-02, 8.76972005e-02, -1.09784201e-01, 3.52249853e-02, -1.40007613e-02, 5.57769574e-02, -7.08195269e-02, 7.78903961e-02, -4.51224819e-02, -4.42769863e-02, 1.09304823e-01, -1.70091707e-02, 6.08805642e-02, 9.20490250e-02, -6.25734329e-02, -6.29907399e-02, -8.79416168e-02, -1.49213057e-02, -1.18331037e-01, -1.45116359e-01, 1.15072347e-01, -7.74639249e-02, 1.16930358e-01, 9.42377970e-02, -7.24048261e-03, -1.07854411e-01, -1.13536432e-01, -2.81377919e-02, -3.25536467e-02, 8.38390291e-02, -2.54237354e-02, -8.48808065e-02, 5.37863970e-02, 9.26411822e-02, -3.74613963e-02, 8.28043222e-02, -5.91177903e-02, 4.87794094e-02, 3.74928527e-02, 7.50380531e-02, 7.96348304e-02, -1.72731236e-01, 1.10664211e-01, 4.64004241e-02, -1.09439380e-01, -5.54779023e-02, 4.25597001e-03, -6.48404732e-02, 3.84177491e-02, 7.86678120e-02, 8.74429196e-02, 1.16201855e-01, -3.16438153e-02, 1.00515999e-01, 3.60737108e-02, 3.31937112e-02, -1.55305509e-02, 9.93735716e-02, -2.68793423e-02, -3.79754119e-02, -7.43257180e-02, 4.48058210e-02, -5.23953103e-02, 4.25856793e-03, -1.86321847e-02, 1.02063902e-01, 7.32773766e-02, -1.62989706e-01, 1.32866204e-01, -3.74185182e-02, -9.00973156e-02, 7.69415200e-02, -4.83184541e-03, -5.03515340e-02, -6.21081591e-02, 7.86897987e-02, -3.46415155e-02, 7.32799768e-02, 3.53603065e-02, -5.28341159e-02, 2.54612006e-02, 6.78459182e-02, 7.75834024e-02, -1.03867218e-01, -3.07565974e-03, 4.57472019e-02, -2.24916320e-02, -7.41688237e-02, 3.30502577e-02, 6.29735291e-02, 5.42810634e-02, 1.14037715e-01, 7.15137506e-03, 7.06479624e-02, -7.28717968e-02, 5.15148118e-02, -2.35888734e-02, 1.04026169e-01, 8.95848721e-02, -7.86316171e-02, 1.72285698e-02, -7.53595456e-02, -1.04964539e-01, -6.70245439e-02, 9.19887796e-03, -5.55575602e-02, 1.52719662e-01, 1.13920540e-01, -1.09811880e-01, 6.54279813e-02, 1.92131735e-02, -9.32657346e-02, 8.65206271e-02, -9.07443166e-02, 6.12104386e-02, 9.03685316e-02, -5.27224243e-02, 9.01027173e-02, 2.55328137e-02, -3.07633057e-02, -9.03286561e-02, -1.94773749e-02, -1.76417977e-02, -3.26204598e-02, -6.76888153e-02, 2.61736028e-02, -1.08109996e-01, -1.54286884e-02, 1.11901246e-01, 1.17453113e-01, -6.15648441e-02, -1.27999876e-02, 8.63379985e-02, -5.99271320e-02, -1.35528892e-01, -3.60891558e-02, -1.12578250e-01, -1.17865950e-01, -1.32508770e-01, -7.26269977e-03, -1.17718846e-01, -3.87470350e-02, 8.02655816e-02, -1.19393608e-02, -6.41744062e-02, -1.38027608e-01, 2.51911674e-02, 6.96708858e-02, 7.30812782e-03, -5.48128709e-02, 7.33343884e-02, -4.24734168e-02, -9.71495807e-02, -3.95844914e-02, 1.58636887e-02, -6.75332248e-02, -6.52261674e-02, 6.58009723e-02, 6.87720627e-02, 8.41057003e-02, -1.16804250e-01, -1.31620720e-01, 6.40463084e-02, 5.87212220e-02, -1.23778187e-01, 1.36645943e-01, 4.77052890e-02, 9.05447826e-02, 1.01867735e-01, -3.41184773e-02, -7.90514499e-02, -2.29802672e-02, -2.08464898e-02, 6.24872968e-02, -3.69402468e-02, 1.30473241e-01, -2.89744604e-02, 2.18963157e-02, 8.18461329e-02, -6.33441955e-02, -7.56986588e-02, 5.97221684e-03, 2.15110555e-02, 9.74850059e-02, 6.54519200e-02, 6.86451644e-02, -6.85093924e-02, -1.44225851e-01, -1.12989932e-01, 1.55101474e-02, -4.55300994e-02, 5.49875476e-05, 3.26195583e-02, 3.91741991e-02, 3.22471932e-02, 9.62909162e-02, -8.65751803e-02, -3.05914227e-02, -4.56750840e-02, 4.73318920e-02, -3.09622753e-02, 4.35091555e-02, 3.34775746e-02, -5.88080995e-02, 3.76253054e-02, 3.13777737e-02, -1.26001716e-01, -9.88654345e-02, 2.74300817e-02, -4.05841619e-02, -1.36741817e-01, -1.22325607e-01, 6.98985979e-02, 4.23982419e-04, 1.08393282e-01, 1.07008368e-01, -1.62174031e-02, 1.10536143e-01, 3.42210867e-02, 1.47760808e-02, 1.45096267e-02, -1.01555727e-01, -9.89428535e-03, -4.78308201e-02, 4.60647009e-02, -1.59665748e-01, 2.24652551e-02] +urem:[6.37800843e-02, -3.44740935e-02, 3.38592641e-02, -5.01501337e-02, -6.07392676e-02, -1.22115454e-02, -8.51174220e-02, 5.81752881e-02, -6.45875335e-02, 9.62441266e-02, -6.93672523e-02, 5.42080142e-02, -2.81106941e-02, 4.72185351e-02, -3.52735817e-02, 7.36806244e-02, -3.39625031e-02, 5.88907562e-02, 5.29842824e-02, 9.65383574e-02, 5.49752004e-02, -8.20069611e-02, -4.15412001e-02, -3.25626172e-02, 5.84281795e-03, 2.76996847e-02, -3.76136079e-02, -2.69694030e-02, 5.46883605e-02, 1.11569082e-02, -1.84937706e-03, 2.79560126e-02, 6.63260370e-02, 6.06576763e-02, 6.71670809e-02, 1.25135388e-02, 1.31158084e-01, 1.30671486e-01, -1.35874227e-01, -1.85383838e-02, -2.50142775e-02, 5.15981615e-02, -6.96410313e-02, -1.16012640e-01, 1.34126753e-01, 4.03180197e-02, -7.48150945e-02, 1.15937486e-01, 1.28759071e-01, 1.06406607e-01, -4.50192355e-02, -6.46102130e-02, 1.14827953e-01, -1.75183844e-02, -1.65569149e-02, -2.93603563e-03, 2.27142554e-02, 5.32188863e-02, 8.16761926e-02, -1.14492506e-01, 7.01970086e-02, 4.84970100e-02, -1.16747484e-01, 5.68439476e-02, -8.90945941e-02, 5.89479282e-02, -1.92911997e-01, 1.16147831e-01, 7.71237090e-02, -4.21988405e-02, -2.37110332e-02, -1.47128105e-01, 1.07769065e-01, 9.05478299e-02, 3.32950801e-02, -6.09119572e-02, 1.25135154e-01, -1.35670248e-02, -5.51159605e-02, -1.54142454e-01, -8.09842050e-02, -1.67328846e-02, 1.54499784e-01, 7.49016628e-02, -2.32021529e-02, -6.71061175e-03, -4.04475220e-02, 6.56047761e-02, -4.12300639e-02, -9.97785255e-02, 1.82832479e-02, -2.96987854e-02, -1.05761647e-01, -1.22187072e-02, 3.76071520e-02, 1.12219118e-01, -3.88875864e-02, 1.95829850e-02, 3.59078385e-02, 4.85572703e-02, -1.15683693e-02, -2.84634605e-02, 9.04474109e-02, -2.41592955e-02, 3.85831743e-02, -8.21667090e-02, -3.64842778e-03, 7.06594586e-02, -4.11317833e-02, 1.15870096e-01, 1.65670797e-01, 5.10742888e-02, 8.92065167e-02, 9.63103250e-02, 3.23252417e-02, 4.71063145e-03, 1.03505373e-01, 1.30984178e-02, 5.07044233e-02, -4.40551788e-02, 3.62624936e-02, 1.46224141e-01, 9.81083065e-02, -7.82605410e-02, 8.55694041e-02, 4.13576141e-02, 2.99061108e-02, 6.64100274e-02, -6.95526674e-02, -2.96279583e-02, -7.45076910e-02, -2.68650353e-02, -4.59731817e-02, -4.37063612e-02, 7.75342807e-02, 4.44809273e-02, -1.08172502e-02, -1.11082479e-01, 2.81369928e-02, 6.56306744e-02, -4.07180376e-02, 3.41237779e-03, 9.01937336e-02, -4.09307703e-03, -9.77223826e-05, -1.15461409e-01, -1.14731573e-01, -2.86816396e-02, 4.23295163e-02, 5.06145172e-02, 4.59458344e-02, 3.11131068e-02, -8.65644664e-02, -1.40726729e-03, -1.08492695e-01, -1.75824724e-02, -7.03542307e-02, 1.02517240e-01, 1.04657695e-01, 5.26229478e-02, -8.55504051e-02, -7.83326104e-02, 1.07136548e-01, 3.95919643e-02, -4.39185016e-02, -1.09270342e-01, 9.54313874e-02, 1.23882800e-01, -2.54874527e-02, -1.32433489e-01, -1.67820230e-02, -1.29286340e-02, 1.03565007e-01, -3.81019413e-02, -9.38518345e-02, 7.15448521e-03, 4.24921103e-02, 4.22758982e-02, 6.12791702e-02, 3.82828861e-02, -4.36992683e-02, 1.99912693e-02, 1.33660845e-02, 1.73264053e-02, 3.97201627e-02, -1.02083072e-01, 1.54394239e-01, 5.38825942e-03, -1.91779763e-01, -1.23758152e-01, 1.29844427e-01, 4.07459587e-02, -1.11140102e-01, -4.46597598e-02, -5.11815064e-02, -1.04160026e-01, 6.03646934e-02, 6.84230169e-03, 4.22186777e-02, 1.04544684e-01, -1.36809805e-02, 1.48529187e-02, 1.15872815e-01, -1.06197648e-01, -1.04460113e-01, -5.08726910e-02, -7.01988339e-02, 2.09977496e-02, 1.69512667e-02, 2.99710520e-02, 1.01297572e-01, 2.12903526e-02, 3.26603092e-02, -7.01250508e-02, -8.32132809e-03, -9.36795771e-02, -6.76332740e-03, 1.35281146e-01, 3.09280679e-02, -8.63252580e-02, 4.26559448e-02, -1.50972962e-01, 6.23551831e-02, -1.75793022e-02, -4.29285616e-02, 7.93094933e-02, 7.60536045e-02, 7.70352930e-02, -8.61684605e-02, 2.48934645e-02, -1.18873470e-01, -8.46109018e-02, -5.92188686e-02, 1.20418394e-04, 7.61729723e-04, -3.64068034e-03, 5.87608032e-02, -1.05720602e-01, 1.34541452e-01, 1.58532523e-03, -4.60391119e-02, -1.78467459e-03, -4.61158119e-02, -6.82963580e-02, -4.33834791e-02, 1.14636317e-01, 1.06787071e-01, 7.76240602e-02, 3.52021353e-03, -2.28086393e-03, 1.59565844e-02, -8.03262368e-02, 3.41794034e-03, 5.18797226e-02, 5.03503997e-03, -6.24488201e-03, -7.46343881e-02, 5.10708764e-02, -3.48705589e-03, -6.07466027e-02, -1.03193112e-01, -1.03324972e-01, 3.27992998e-02, 9.08515826e-02, -2.28651776e-03, 3.79569605e-02, 1.10025987e-01, 2.31752694e-02, 4.61352207e-02, 9.12802387e-03, -2.75414605e-02, -2.67405938e-02, 1.23894699e-02, 5.36253341e-02, -4.60395664e-02, -7.51101896e-02, -4.13134210e-02, -1.26530766e-01, -6.52752370e-02, -9.08548534e-02, -4.55590338e-02, -9.75269377e-02, 4.84894365e-02, -4.30265516e-02, 2.65399311e-02, -8.45695063e-02, 1.30579268e-04, -8.29757452e-02, 3.48819271e-02, 5.29188961e-02, -1.28913909e-01, 1.62006453e-01, -1.22535087e-01, -7.58794788e-03, -7.64454231e-02, 4.14790809e-02, 6.83384314e-02, -8.56514201e-02, -7.69600868e-02, -5.73743656e-02] +variable:[-0.01629216, -0.09777723, 0.03839657, 0.05520136, -0.11503527, 0.0384846, 0.06905622, 0.03168663, 0.00740753, -0.05866515, -0.14200911, -0.0466872, -0.10836672, 0.11148902, -0.08178182, -0.03983175, 0.13334876, -0.11387826, -0.10989654, -0.12152026, -0.00964535, 0.04443132, 0.01191928, -0.10570234, 0.11565124, 0.02383037, -0.06633332, -0.10222262, -0.01392964, 0.07728435, -0.04389086, -0.05459826, 0.15733543, 0.0846524, 0.02221406, -0.0574013, -0.02762196, 0.09702169, -0.0111233, 0.06254312, 0.04008316, 0.16515747, 0.015931, 0.0227664, -0.0629366, -0.14436828, 0.14456628, 0.04086677, 0.00658759, -0.02526662, 0.03891369, -0.10942062, 0.02690926, 0.06917176, 0.03226882, -0.06443422, 0.13796891, -0.00600936, 0.04156552, -0.0375773, -0.06963805, 0.04931718, 0.11348538, -0.01145639, -0.00941028, 0.03658777, 0.03840219, 0.07973164, -0.01117831, -0.11879035, 0.04984201, -0.03351231, -0.00575844, -0.07907102, -0.05461473, 0.07906954, 0.06080083, 0.07259934, 0.06651908, -0.04800255, -0.00756581, -0.11114976, -0.01730385, -0.06111321, -0.12796189, -0.11438348, -0.03433416, -0.095155, 0.1124448, 0.08652952, -0.07880291, -0.01394331, -0.03257362, 0.03086806, -0.00493038, -0.07414373, -0.1249178, 0.09226859, -0.03373437, -0.03154184, -0.10979704, 0.03043433, -0.09676966, -0.03471522, -0.02475495, 0.13373217, 0.04246588, -0.00930444, -0.06736437, 0.05767434, -0.01634118, 0.11010228, 0.02214341, -0.07602465, 0.01017241, 0.06820641, -0.00248548, 0.01078564, -0.01127459, -0.08739058, 0.13710895, -0.01248765, -0.05752391, -0.02743595, -0.00481491, 0.0772976, -0.0341737, 0.05234945, -0.06158632, 0.07449996, -0.03802945, -0.10188738, -0.14998142, 0.0365682, -0.04986346, 0.12493492, 0.08034781, -0.11529958, -0.03858291, -0.11136663, 0.0581776, -0.04298491, -0.02156483, -0.12949318, 0.01675584, -0.15555, 0.04304967, 0.07261526, -0.02456397, 0.04889262, -0.1627862, -0.17119193, -0.090062, -0.09038348, -0.08651297, -0.04767806, 0.05961994, -0.01180658, -0.01652699, -0.04548912, -0.0091154, -0.13714208, 0.072855, 0.09648295, 0.15883444, -0.06654774, 0.0073045, -0.08860768, 0.08278573, 0.1080992, -0.04854274, -0.11630935, -0.02704483, 0.0330007, 0.04118693, -0.05028557, 0.0669044, -0.0495762, 0.0232869, 0.01293552, 0.0286519, -0.01299344, -0.03203902, -0.06357292, 0.07043215, 0.07319758, -0.12187425, 0.09907772, -0.04353702, -0.07054486, -0.02068815, -0.05754137, 0.05260525, 0.07586841, 0.05472583, -0.02318262, 0.05494667, 0.02090343, 0.00212119, -0.02934104, -0.0829656, -0.01684431, 0.04995486, -0.02750227, 0.08444235, 0.09833822, 0.07645619, 0.00379444, -0.12342776, -0.0316725, -0.11674834, -0.02481906, 0.06137859, 0.02901305, 0.15791549, -0.05693255, -0.07741997, 0.02383794, 0.01308417, -0.07036135, -0.06803139, -0.05895802, -0.00514082, -0.04999163, -0.13223435, -0.03951024, -0.0387893, 0.15868762, -0.12345713, -0.00973022, 0.0159575, 0.07987306, 0.06121591, 0.04373547, -0.01574007, -0.08197194, -0.02279816, 0.0208004, -0.0932117, -0.16456239, -0.04879988, -0.08714795, 0.03319589, -0.03506787, -0.13180342, -0.07313167, 0.11524372, -0.11960623, 0.0081466, -0.07148102, 0.1159178, -0.08055682, -0.06613345, 0.13069989, 0.09666317, -0.17200631, 0.02658139, -0.01330143, 0.05778244, -0.13600527, 0.06830472, 0.00562293, -0.07959494, 0.00318318, 0.0562713, -0.16173688, -0.11658178, -0.10709355, -0.06647655, 0.03392978, -0.10783219, -0.10709502, -0.05858401, 0.0837394, -0.14293966, 0.06736731, -0.1151343, 0.09633154, -0.04733848, -0.04290641, -0.00321027, -0.09592629, 0.10247198, 0.12000268, -0.01244624, 0.00348037, -0.08238589, -0.06509732, -0.04810729, -0.00081826, -0.02728076, 0.05359858, -0.03081788, -0.07557862, 0.08486786, 0.11801808, 0.02003356, 0.069798, -0.03508877, -0.08872095] +vectorTy:[5.53421155e-02, 1.33608907e-01, -2.15619220e-03, 8.02479982e-02, 2.13209502e-02, 5.20178527e-02, -2.93410178e-02, -1.00442670e-01, -4.18430865e-02, 1.15563132e-01, -6.08426668e-02, -2.82086730e-02, -8.88065845e-02, 8.53280202e-02, -8.55240896e-02, 5.44183739e-02, -8.27901140e-02, 3.87444347e-02, -8.06568637e-02, -4.50414158e-02, -7.78749660e-02, 4.12446409e-02, 7.86406323e-02, 1.05876692e-01, -1.14972629e-01, 6.95829690e-02, 7.99261332e-02, 8.77107084e-02, 1.87230576e-02, -3.16335708e-02, 1.48404194e-02, -8.12138543e-02, -3.56862247e-02, 7.23692998e-02, -5.74139729e-02, -9.18918923e-02, -9.05989856e-02, -7.40465298e-02, 6.47915155e-02, -9.97096598e-02, -1.03054784e-01, -3.68701257e-02, 4.23355326e-02, 1.10219054e-01, -8.81426111e-02, -3.14333551e-02, 2.31629107e-02, 6.62349537e-02, -1.18904725e-01, -5.06771207e-02, 1.23731708e-02, -2.71734828e-03, 1.06612638e-01, 6.73199818e-02, 1.95421167e-02, 9.20547619e-02, 3.90612483e-02, -2.78709158e-02, -2.92324205e-03, -1.07485138e-01, -6.11473136e-02, -1.71411224e-02, -1.83727941e-04, -4.30637300e-02, 7.06890076e-02, -1.03471212e-01, 9.00942460e-03, -1.33590400e-02, 1.14654060e-02, -9.29787308e-02, 1.94686768e-03, -4.17752340e-02, -3.72679648e-03, -6.72483966e-02, -1.11449659e-01, 3.57768610e-02, -7.28553236e-02, -1.06348053e-01, -2.73238681e-02, -2.04643351e-03, 4.70392816e-02, 9.02025849e-02, 2.94014066e-02, -1.03574097e-01, 8.07156488e-02, 9.62540731e-02, 1.53542515e-02, 1.19479187e-01, -1.03970073e-01, 7.91625753e-02, 1.21975534e-01, -7.08612148e-03, 1.24001078e-01, 2.32710876e-02, -4.08721343e-03, -6.38881251e-02, -4.78194728e-02, -1.02294825e-01, -7.60328248e-02, 1.10782951e-01, 9.86737460e-02, 5.16973734e-02, -8.84283707e-02, -6.30152151e-02, 2.95355320e-02, -1.40802175e-01, -1.15627246e-02, 4.16795425e-02, -5.54577559e-02, -5.88624179e-02, 8.71381816e-03, -6.24904484e-02, 5.58684394e-02, 1.25102445e-01, -2.50951722e-02, -4.80986796e-02, -4.41297255e-02, -6.81495443e-02, 1.36902660e-01, -9.50971395e-02, -3.70450541e-02, -1.03082761e-01, -8.61019567e-02, 6.68521821e-02, -7.26967826e-02, 5.70401829e-03, -8.91418085e-02, -1.18906453e-01, -3.76791582e-02, 1.04915500e-01, -5.04345074e-02, 8.51659402e-02, 5.04147075e-02, 7.36734718e-02, -6.01187684e-02, -5.42885624e-02, 7.91606084e-02, 7.32247457e-02, -8.83845761e-02, -1.21541776e-01, -1.29945446e-02, -2.03425549e-02, 1.13642886e-01, 1.12140670e-01, -4.16885577e-02, -5.98448776e-02, -1.03030637e-01, 9.70366448e-02, -9.55483690e-02, 5.56493253e-02, 9.76668522e-02, 1.01523548e-01, 2.74246205e-02, -9.12521333e-02, 1.09802991e-01, -2.81786192e-02, 3.03223096e-02, 2.79103704e-02, -8.70596468e-02, 3.63978110e-02, 6.17491379e-02, 1.26610681e-01, 3.60873900e-02, 9.11327526e-02, -9.69242752e-02, -2.20911074e-02, -1.23354815e-01, 3.11630126e-02, -7.90482461e-02, -5.58691621e-02, 5.31811006e-02, 8.83010775e-02, -7.65118152e-02, 1.22970734e-02, -4.56351638e-02, 8.19622129e-02, 1.17143132e-02, -4.44222838e-02, 3.97068821e-02, 2.35160496e-02, -6.64624944e-02, 1.39394373e-01, -2.14883089e-02, -7.82428309e-02, -2.42266431e-03, 6.15155436e-02, 1.40822053e-01, 9.09307692e-03, -3.19313221e-02, 1.22642025e-01, -1.28189802e-01, -4.85562235e-02, 9.95016247e-02, 1.04958333e-01, 3.62773016e-02, 8.12006891e-02, 1.04224175e-01, 9.62942168e-02, -7.09690340e-03, -5.91106340e-02, -7.99357593e-02, -8.76007508e-03, -1.25480607e-01, -9.48668867e-02, 9.25299004e-02, 1.91330519e-02, 6.68985248e-02, -2.49783508e-02, 4.84815873e-02, -4.34554890e-02, 1.02105446e-01, 6.96814805e-02, -2.56995670e-02, 4.57899235e-02, 1.68405157e-02, -1.24047501e-02, 1.18550003e-01, -6.44795895e-02, -1.51046682e-02, -1.19289182e-01, 1.16141759e-01, 1.00575343e-01, -9.60371345e-02, -4.73918952e-03, 1.10749431e-01, -5.35958931e-02, -4.63391058e-02, -2.25058030e-02, 1.16108522e-01, 1.88172072e-01, -8.39872137e-02, 8.90197456e-02, 7.32791349e-02, -5.09157926e-02, -7.61434808e-03, -3.44017968e-02, -5.42915910e-02, 5.80383372e-03, -7.01269433e-02, 1.02433093e-01, -1.78447608e-02, -7.80769363e-02, 9.33202431e-02, 1.34775609e-01, 1.18725955e-01, -7.24161342e-02, -4.07766178e-02, 1.02458082e-01, -6.29112199e-02, 6.56502098e-02, -9.38110203e-02, -7.85830524e-03, -6.09830096e-02, -2.49394979e-02, -1.42400473e-01, 3.93424742e-02, -3.27503644e-02, -6.38505220e-02, 3.55770835e-03, 4.44747359e-02, -3.16368230e-02, -4.50681485e-02, -9.10736397e-02, -5.66643625e-02, -7.93907046e-02, 1.13842256e-01, 9.44488272e-02, -1.03080764e-01, 1.22655340e-01, 1.55185480e-02, 5.82478903e-02, 6.65233210e-02, -8.22357759e-02, 9.96319056e-02, -9.49792564e-02, 2.25283056e-02, -1.05717830e-01, 2.51925588e-02, -4.83843535e-02, -4.75782007e-02, 4.55139438e-03, -6.88359588e-02, -2.11462323e-02, 2.72639170e-02, 9.79139060e-02, 1.43348083e-01, 8.48840997e-02, 6.93859765e-03, -5.97659536e-02, 4.32787128e-02, -2.74392255e-02, 6.46894099e-04, -5.12101576e-02, -4.95420136e-02, 6.06116056e-02, -8.10029656e-02, -1.85541983e-03, -1.24030434e-01, 9.74044129e-02, 9.54677761e-02] +voidTy:[8.62130895e-02, -7.29272664e-02, -2.66963020e-02, 6.77534640e-02, 1.10241488e-01, -9.89525542e-02, -2.29046494e-02, 4.23313156e-02, 5.50939217e-02, 8.06508735e-02, 7.73083046e-02, -3.25657874e-02, -9.66217294e-02, 2.63372026e-02, 8.57916623e-02, -3.44706757e-04, 1.09869808e-01, 1.10560544e-01, -8.38856101e-02, -7.33921155e-02, -8.79794210e-02, 9.14782658e-02, 1.12952888e-01, 8.31926465e-02, -8.28644931e-02, -3.15820379e-03, 1.21130228e-01, 1.23672090e-01, -4.87535968e-02, -6.59752339e-02, -2.54574306e-02, 7.66650140e-02, 1.09361947e-01, -6.92277029e-02, -1.84680261e-02, -9.38679725e-02, -3.38567272e-02, 7.15092048e-02, 9.35704112e-02, -3.61425383e-03, 6.26609325e-02, -9.83757377e-02, 1.13576651e-01, 2.49644723e-02, -3.79390568e-02, -7.19054639e-02, -1.84879787e-02, -4.26672176e-02, -6.91538379e-02, 9.81927849e-03, 1.61709879e-02, -8.79850686e-02, 9.33905095e-02, 7.55698085e-02, -9.67432633e-02, 9.71986447e-03, -5.21674640e-02, 4.62787896e-02, -5.05425110e-02, -5.45725338e-02, -1.22248217e-01, -5.02246358e-02, 9.13765207e-02, 2.13382002e-02, -5.30817993e-02, -4.89626117e-02, -6.38735145e-02, -9.02425051e-02, -9.07457620e-02, 8.77018347e-02, 1.05633708e-02, -3.84153910e-02, 1.30092502e-02, -8.78906548e-02, -2.40209866e-02, 7.30045587e-02, 8.03627372e-02, 8.74588862e-02, 6.87852874e-02, 1.20902713e-02, -1.11239746e-01, 7.96345770e-02, -8.32916945e-02, -8.59516487e-02, 9.27165076e-02, 8.25650916e-02, -1.80418305e-02, 1.58520937e-02, 2.25029457e-02, 1.08364513e-02, 7.87738115e-02, 5.39788902e-02, 3.11429128e-02, 4.36288230e-02, -1.45057142e-02, -6.38470650e-02, -3.76413427e-02, -1.03930943e-01, 1.18930805e-02, -2.71698404e-02, 7.21679926e-02, -7.78059885e-02, -7.94628263e-02, 5.22752739e-02, -5.48344962e-02, -1.76725052e-02, 1.04472861e-01, -6.50206804e-02, 2.79776566e-02, -6.40020892e-03, 1.05981957e-02, -8.77378508e-02, -4.08609323e-02, -4.85749319e-02, 5.91727495e-02, -8.32450390e-02, -6.05907328e-02, 1.06381461e-01, 1.25096587e-04, -4.73217852e-02, -1.43523470e-01, -7.79863521e-02, 3.41556072e-02, 7.94574693e-02, -2.86432318e-02, -3.64351273e-02, -2.65719201e-02, -7.78519958e-02, 4.97176163e-02, 1.55726506e-03, -7.85344467e-02, 1.03897475e-01, 1.20485559e-01, 4.91863899e-02, 1.00595072e-01, -1.08241327e-01, 1.06198661e-01, 3.54844369e-02, -4.68714572e-02, -4.44086939e-02, 2.99999341e-02, 6.84340522e-02, -4.47028950e-02, 5.45791350e-02, -1.06437383e-02, 1.06179476e-01, 4.36124653e-02, -3.38207446e-02, -7.81143159e-02, -7.25495815e-02, -1.56273115e-02, 1.10078052e-01, -7.98655227e-02, -7.63163939e-02, -5.26205599e-02, -5.21836895e-03, -1.08582258e-01, 9.79576781e-02, 7.62454197e-02, -4.51945253e-02, 9.97665226e-02, 9.63761955e-02, -6.41326234e-03, 1.10104084e-01, -9.07925665e-02, 1.07576242e-02, -1.30429715e-02, -1.29069895e-01, 7.78857693e-02, 5.00710979e-02, -6.28620433e-03, 1.14759400e-01, -5.15455753e-02, -4.93109645e-03, -6.10524192e-02, -1.72943827e-02, -9.50746536e-02, 2.55615767e-02, 1.30721807e-01, 3.88185382e-02, -7.88007006e-02, -1.84377618e-02, 3.21521610e-02, 1.08518504e-01, -4.64134067e-02, -3.75916958e-02, 5.85785024e-02, -9.16057676e-02, 1.55361909e-02, -1.59454048e-02, -2.73352247e-02, 7.19750226e-02, -5.26808612e-02, 1.10233203e-01, 9.31191072e-02, 1.06568821e-01, -4.56267744e-02, 8.99467617e-02, -6.60001487e-02, 4.84053977e-02, -2.60958578e-02, -1.92317495e-03, 3.26352492e-02, 1.94713566e-02, 1.02999009e-01, -7.20738396e-02, -1.10616326e-01, 3.11759412e-02, -9.93295535e-02, -9.04011428e-02, 1.05781183e-02, 9.09506455e-02, 1.23845346e-01, 1.02436937e-01, -1.07952751e-01, 9.34537873e-02, 9.03534591e-02, 5.01066744e-02, -3.00785508e-02, 5.40993065e-02, 6.08476717e-03, 7.46219233e-03, -4.41335253e-02, -1.57612432e-02, 8.13627392e-02, 9.24208015e-02, -1.14703804e-01, -1.15454160e-01, 2.89899390e-02, -7.25314543e-02, -8.73726308e-02, -1.45046525e-02, 6.40518516e-02, 2.92977840e-02, -3.90998013e-02, 1.38353944e-01, -1.13659553e-01, 4.87076901e-02, -5.84492199e-02, -5.65271750e-02, 4.80253249e-02, -1.25741567e-02, 8.67375582e-02, 5.18906415e-02, 1.01722524e-01, -1.14690788e-01, 4.21103314e-02, -9.22586247e-02, -3.05820182e-02, -9.84171554e-02, -1.18369125e-01, 6.48217052e-02, 8.19334835e-02, -1.32762313e-01, -7.76542053e-02, 1.19134009e-01, 4.62516434e-02, -1.06036276e-01, -6.00696355e-02, 1.21595496e-02, 4.67445962e-02, -7.36472150e-03, 9.11500677e-02, -1.25174105e-01, -9.27868262e-02, 1.13935791e-01, 9.58170816e-02, 6.15385622e-02, -5.59285469e-02, -3.07572857e-02, 8.34302232e-02, 9.79244262e-02, 6.77512661e-02, -1.10853799e-01, -1.62550546e-02, 1.20259888e-01, 3.81287634e-02, 3.01632360e-02, -1.20902725e-01, 1.02356531e-01, -3.20654027e-02, 4.26634327e-02, 5.78349456e-02, -1.26327768e-01, -5.38603328e-02, 9.86389145e-02, 1.00423798e-01, 4.70819697e-02, 8.31928551e-02, 5.77138141e-02, 4.61356193e-02, -1.69454031e-02, -3.57766747e-02, 1.21297255e-01, 1.10090569e-01, -8.87150466e-02, -9.97476727e-02, 8.71677548e-02, 4.36206162e-02, 1.29172429e-01] +xor:[-6.43384606e-02, 7.38578662e-03, 1.45738974e-01, -6.36126623e-02, 6.15352318e-02, -5.76374829e-02, 7.68888295e-02, 9.19639468e-02, 5.70706427e-02, 6.97799250e-02, -4.98611480e-02, 3.06659099e-02, -5.87876774e-02, -6.72982410e-02, -1.05295032e-01, 7.07910536e-03, -1.76997352e-02, -7.24817440e-02, 5.99128827e-02, 1.00639932e-01, 8.08042884e-02, -1.10985689e-01, -4.70296554e-02, -3.58532742e-02, 7.53463246e-03, -1.09506615e-01, -4.03358713e-02, -4.03400846e-02, -9.37524810e-02, 1.55308634e-01, 1.74633101e-01, 3.18465531e-02, 8.18624571e-02, 2.85305362e-02, -5.39915040e-02, 2.13985052e-02, -1.15394123e-01, 1.31735161e-01, -6.31045327e-02, -1.54745225e-02, -2.91812811e-02, 7.59407431e-02, -7.59496614e-02, 1.16618715e-01, 1.13924995e-01, 6.22127131e-02, 9.68793705e-02, -6.08476661e-02, 9.67264697e-02, 1.67057104e-02, -3.73360962e-02, 1.37192890e-01, -6.11550696e-02, -1.92053206e-02, -7.60398954e-02, 1.66717882e-03, -9.91900563e-02, 2.30232310e-02, 1.01992220e-01, -5.28916195e-02, 8.68708789e-02, 1.53769612e-01, -1.25402555e-01, -3.06076128e-02, -4.91955802e-02, -8.31505433e-02, 3.39466482e-02, 8.27217475e-02, 8.92273560e-02, -4.14151996e-02, 1.32478178e-01, -1.61597341e-01, 5.84291816e-02, 8.39407444e-02, 9.00908336e-02, -1.14684068e-01, 5.81891648e-02, -1.48925912e-02, 1.40248403e-01, -4.13360409e-02, -8.25925618e-02, -2.09230911e-02, 1.16214342e-01, 1.40931219e-01, -6.81299195e-02, -2.35487334e-03, 1.05661154e-01, 7.08001554e-02, -4.54338714e-02, -8.37873891e-02, 1.14484522e-02, 5.78871034e-02, -1.10872649e-01, -9.30773020e-02, 5.19798584e-02, 1.22005075e-01, -1.48906317e-02, 1.40127242e-02, -7.20241219e-02, -8.34984481e-02, 7.28440359e-02, -4.19581942e-02, 8.65038335e-02, 1.74201339e-01, 8.79086778e-02, -8.43766034e-02, 1.24610728e-02, 5.60213961e-02, 1.13101804e-03, 1.99474947e-04, 1.79581314e-01, 1.56000465e-01, 1.04707085e-01, 9.63544101e-02, 1.15750514e-01, -8.60411325e-04, -5.05525991e-02, -6.91877902e-02, 7.96902105e-02, -3.87535542e-02, 5.78246899e-02, 1.47529900e-01, 4.10611443e-02, 8.39735270e-02, 1.23523049e-01, -2.87809744e-02, -6.53986782e-02, -3.80609334e-02, -1.96557473e-02, 1.22507669e-01, -6.74088746e-02, -2.75745671e-02, -5.07902019e-02, -1.24847613e-01, 5.34568615e-02, 4.71205935e-02, 8.86660255e-03, 1.46636944e-02, -2.04105377e-02, 6.48342744e-02, -8.79705921e-02, 5.05638914e-03, -1.01426281e-02, 9.92075279e-02, -1.32302627e-01, -3.43643241e-02, -1.05242291e-02, 3.59628797e-02, 6.03170209e-02, 3.89186032e-02, 3.53329256e-02, -5.64261572e-03, 1.46894798e-01, 1.13835678e-01, -2.55880710e-02, -1.23369254e-01, -4.23960127e-02, -6.72600418e-02, -7.63853267e-02, -9.23287645e-02, -1.57176405e-01, 6.71288595e-02, -1.06608942e-01, -8.14393833e-02, -3.80397402e-02, 6.61158711e-02, 1.01492845e-01, 1.34559676e-01, -1.15498923e-01, -1.23318925e-01, 2.36240542e-03, -2.27104826e-03, 1.15576379e-01, -1.11229390e-01, 9.68717411e-03, 8.32057446e-02, 5.35510257e-02, 9.51145068e-02, -6.08694106e-02, 8.81016925e-02, 6.10151142e-02, -1.99115276e-02, -1.30075440e-01, 1.82298739e-02, -9.57994014e-02, -3.90010327e-02, 1.94946099e-02, -2.79359855e-02, -7.85964206e-02, -2.40359753e-02, 1.05684593e-01, 2.63413265e-02, -2.33034138e-02, -4.67985421e-02, -3.41134332e-02, -1.11880921e-01, 5.56567870e-02, -4.60408963e-02, 5.52113876e-02, -1.01296768e-01, -2.25699283e-02, 9.59223881e-02, 1.26553893e-01, -2.45228961e-01, -1.49788214e-02, -6.46403357e-02, -7.50543103e-02, -7.11895004e-02, 1.15058525e-02, 4.02518511e-02, 1.18887000e-01, 4.28978205e-02, -8.97592008e-02, -1.61321580e-01, 8.37233141e-02, -1.03059970e-01, -3.70312594e-02, 4.37799804e-02, 8.36088210e-02, -2.66765356e-02, 1.66229513e-02, 1.28718585e-01, 5.77915274e-02, -1.26580730e-01, 1.14182131e-02, 1.01718709e-01, 7.83407595e-03, 8.03921819e-02, -1.73790511e-02, 4.23866622e-02, 1.00121707e-01, -7.97512904e-02, 4.58018221e-02, 8.77200663e-02, 1.78861879e-02, -9.03369263e-02, 6.97182417e-02, -1.20076254e-01, 1.31309971e-01, 3.01751979e-02, -6.34161904e-02, 1.79594290e-02, -4.51079346e-02, -7.17332959e-02, -4.70112823e-02, 2.16829479e-02, 6.72642216e-02, -3.52880321e-02, 4.06871177e-03, 5.71956225e-02, 2.17954889e-02, -3.29956450e-02, 4.85620880e-03, 5.55641763e-02, 4.08203853e-03, -2.03399248e-02, -1.39150396e-01, 7.76727572e-02, -8.84580091e-02, -3.64972949e-02, -9.02353749e-02, 8.84752274e-02, 3.30980122e-02, 9.83107612e-02, 1.07591264e-01, 1.64031498e-02, 3.60383987e-02, -3.53904851e-02, 8.44064802e-02, 6.39811754e-02, -3.14106308e-02, -3.13321166e-02, -1.14424303e-02, -3.57173458e-02, -5.17688273e-03, -8.65766928e-02, 1.89127121e-02, -3.54981087e-02, 4.36999127e-02, -1.00438379e-01, 8.99744183e-02, -5.42525388e-02, 7.75430575e-02, -7.83633664e-02, -2.76023075e-02, -8.15881416e-02, -5.10915322e-03, 1.38624117e-01, -1.34849116e-01, -8.49774778e-02, 7.60831982e-02, 2.20255964e-02, -1.29521132e-01, -6.33514347e-03, -9.97038111e-02, 4.63870503e-02, 3.18546221e-02, -1.07324563e-01, -7.37006217e-02, -2.63320636e-02] +zext:[-0.09206638, 0.00270119, 0.15418273, -0.04134863, 0.07210469, 0.06583542, -0.13548507, 0.07346978, -0.13672288, 0.05128169, -0.05077722, 0.11699023, -0.0382048, -0.11118713, -0.04021001, 0.07073952, -0.00816586, -0.06115638, 0.01724532, 0.0236744, 0.07100954, -0.07488302, -0.04368261, -0.02398776, -0.00760422, -0.13463734, -0.03538223, -0.02614539, 0.06568573, -0.02069225, -0.08317636, 0.02867625, 0.07743214, 0.02488199, 0.12222699, 0.11619257, 0.090748, 0.06227715, 0.00653255, -0.19828211, -0.0272529, 0.08069477, -0.08975051, -0.08571357, 0.07366925, -0.02863693, -0.06751174, -0.11638711, 0.09362104, 0.01243628, -0.14728422, 0.11222128, -0.05550931, -0.0320996, -0.02667872, 0.07169352, 0.04473315, -0.09891157, 0.13925777, 0.05202943, 0.05142035, 0.01937477, -0.10471366, -0.02041181, -0.09863115, -0.01912055, -0.03643239, 0.05202175, 0.0924345, -0.02639994, 0.06960126, 0.12628159, 0.05210971, 0.06901842, 0.08943349, -0.10856748, -0.07364641, -0.0149689, -0.1270625, -0.17801036, -0.06843448, -0.01437575, 0.02381674, 0.1066661, -0.04676664, -0.00434499, 0.16921677, 0.03680438, -0.0173457, -0.09249728, -0.00446078, 0.06974775, 0.00419387, -0.07709657, -0.14470214, 0.1078196, 0.00361575, 0.01363555, -0.05221062, -0.00767435, 0.01753874, -0.03064837, 0.0821472, -0.11903069, 0.20260328, 0.03468513, 0.018, -0.0222681, 0.03940389, -0.07203703, -0.07250199, -0.05269295, 0.11292202, 0.06755083, -0.02692317, 0.12284108, -0.06650799, -0.06356915, 0.07102119, -0.0359807, 0.05474656, 0.06822024, 0.02399918, -0.08389449, 0.0966313, -0.11011917, 0.04411249, 0.05352641, -0.08372309, -0.04523518, 0.05361553, -0.02640199, -0.07108896, -0.07128716, 0.04407426, 0.03896879, -0.04994361, -0.03647377, 0.06513728, 0.01986334, -0.11892154, -0.09027607, 0.01152532, 0.08307644, -0.02726823, -0.01906923, -0.04990215, -0.05419898, 0.05263706, 0.05379965, 0.04468546, 0.02849189, 0.12639976, 0.11092559, -0.01907762, -0.10202645, -0.07243174, -0.06745019, 0.03204095, -0.11748592, -0.1184311, 0.04162078, 0.06224603, -0.07885036, 0.01924157, 0.11192489, 0.07158074, -0.0244897, -0.04419583, -0.11101535, -0.14103681, -0.00502032, 0.10793474, 0.06892367, 0.02430563, 0.09885022, 0.06897844, 0.0942919, -0.05790357, -0.06679272, 0.06257036, 0.05646089, 0.00252567, 0.01739259, -0.01559263, -0.09226757, 0.01035733, -0.0256761, -0.03102144, 0.00486232, 0.07019686, 0.02009742, -0.05250899, 0.0228355, -0.03096779, -0.10239294, 0.07793415, -0.06639136, 0.04328438, -0.00556767, -0.01918183, -0.15087453, -0.07376359, -0.14206979, -0.01277673, -0.00527536, -0.05879755, -0.11322439, -0.04607481, 0.06181184, -0.01271908, -0.07033713, -0.08301133, -0.12439214, 0.04491446, -0.01855471, -0.00504013, 0.01127382, -0.13183603, -0.02681294, 0.06384694, 0.09422836, 0.07131048, 0.01489949, -0.04188188, 0.05576064, -0.02417868, 0.0844811, -0.034211, 0.12882733, 0.0727654, -0.03377172, 0.01524484, -0.13342072, -0.12823017, -0.00984531, 0.05982092, -0.12056703, 0.11499968, 0.04622677, -0.13913034, 0.04117975, -0.03072185, 0.01406652, -0.04045348, 0.05714978, -0.00631485, 0.01469957, 0.02845218, 0.0154358, 0.02087436, -0.1214446, -0.09892067, 0.0285593, -0.00195842, -0.02985541, -0.00323828, 0.0736098, 0.04613332, -0.04881877, 0.02121915, -0.11001094, 0.00515569, 0.09451589, -0.00128329, -0.00557444, 0.05118162, 0.02231538, 0.01824751, 0.14194345, -0.02942713, -0.03141093, 0.00901096, -0.03071915, 0.03237809, -0.07707829, 0.06175473, -0.01879364, 0.04164349, -0.10024448, -0.06850255, -0.02887854, 0.12041315, -0.06744161, -0.06227558, -0.07398664, -0.00061624, 0.05986407, 0.02729473, -0.00485806, 0.06859947, 0.07002531, -0.00790272, -0.04011634, -0.07619969, 0.0223654, 0.07029122, -0.09048761, -0.04464496, -0.01331965] \ No newline at end of file diff --git a/vocabulary/seedEmbeddingVocab75D.txt b/vocabulary/seedEmbeddingVocab75D.txt old mode 100644 new mode 100755 index 1db19858f..4a7bc32d7 --- a/vocabulary/seedEmbeddingVocab75D.txt +++ b/vocabulary/seedEmbeddingVocab75D.txt @@ -1,63 +1,68 @@ -add:[-0.10706678, 0.13097984, -0.11605535, 0.17951646, 0.10842272, 0.18399747, -0.19379032, -0.2647733, -0.12766051, -0.00485199, 0.15614752, 0.03155349, 0.03493667, 0.12071995, -0.12817192, 0.01423827, 0.28815243, -0.13548505, -0.01277111, 0.06369204, -0.0081173, -0.10599774, -0.06833462, -0.03803566, -0.0472391, -0.13475174, -0.44472298, -0.19732524, -0.14006428, -0.12402665, -0.08527854, -0.21508977, 0.04458212, -0.11118651, -0.03227397, -0.15087713, 0.08002315, -0.15108559, 0.17325413, -0.1550306, -0.03043029, -0.14906237, 0.00364336, -0.02208263, 0.15527144, 0.08057675, -0.01540586, 0.0479391, -0.1746707, 0.0312925, -0.14524665, 0.1009572, 0.00929103, 0.13883665, -0.18489668, -0.10525297, 0.16679022, 0.1297575, -0.0057894, -0.02373602, 0.14198376, 0.07001822, -0.04425224, -0.15120569, -0.19380043, 0.16383831, 0.01327805, -0.07002157, 0.11953219, 0.00253665, -0.20047452, 0.18101144, -0.05616577, 0.05226176, 0.00271469] -alloca:[0.17945297, 0.12782614, 0.21235164, 0.12550819, 0.11093373, 0.15053092, -0.1985414, -0.19275506, -0.1463461, -0.02888313, 0.16476473, 0.03344321, 0.03544059, -0.12281881, 0.20685922, 0.05335882, -0.24483645, 0.12437144, -0.13738704, 0.06926467, -0.01236823, -0.14164591, -0.06462298, 0.02696911, -0.08085018, -0.1587167, 0.06712169, -0.20152582, -0.15852675, 0.22358498, 0.05526809, -0.00264076, 0.04593778, -0.1184096, 0.21148157, -0.17092028, -0.11420453, -0.1554349, 0.17760003, -0.17140207, -0.09149083, -0.14809465, 0.11227789, -0.14545228, 0.15926957, -0.05340089, 0.11267719, 0.04943088, -0.13083653, -0.16758578, -0.20546715, -0.01046424, 0.10473233, 0.14263427, -0.19120769, -0.14945947, 0.1383381, 0.03608947, 0.04094962, -0.02461379, 0.14626645, 0.09119257, -0.0416082, -0.14475973, 0.23820469, 0.18458243, 0.01332372, -0.13989814, 0.12224149, -0.00257317, -0.15992273, 0.18817104, -0.05721908, 0.00615159, 0.24600025] -and:[-0.11178716, 0.13483258, -0.15002933, 0.15391214, 0.11146516, 0.15175094, -0.19856161, -0.27618977, -0.13286063, -0.00655276, 0.16306019, 0.03391848, 0.03587318, 0.12616551, -0.13362664, 0.01764604, 0.29947793, -0.14044237, 0.1129781, 0.06706466, -0.00831874, -0.10934035, -0.07040038, -0.04142912, -0.05216355, -0.13893102, -0.30102658, -0.20554256, -0.1438112, -0.1314689, -0.0867063, -0.49475932, 0.04639493, -0.11538583, -0.04123582, -0.1564892, 0.0834691, -0.15724008, 0.18090673, -0.16223198, -0.03251988, -0.1544349, 0.00185687, -0.09721139, 0.16244216, 0.08392943, -0.01618329, 0.05011995, -0.18062851, 0.03049534, -0.13162978, 0.10417423, 0.01204258, 0.15839572, -0.19408533, -0.10810632, 0.17155176, 0.13542517, -0.00432706, -0.02385384, 0.14791825, 0.07252786, -0.04344646, -0.14658219, -0.15141281, 0.16878209, 0.01392884, -0.07210843, 0.1252286, 0.00241671, -0.19492956, -0.05302701, -0.05951639, 0.05534134, 0.00249913] -ashr:[-0.10929906, 0.17612839, -0.11600731, -0.23503795, 0.09720282, 0.14072503, -0.18027568, -0.2803111, -0.21011733, 0.1064183, 0.17594221, 0.03080301, 0.07072744, 0.05714689, -0.11605146, 0.04875292, 0.0241426, 0.16152227, -0.01514135, 0.07370667, 0.00061038, -0.08699173, -0.05054572, -0.09078233, -0.08152417, -0.20319045, -0.07695799, -0.2061721, -0.20922238, 0.22261831, -0.28820044, -0.05467343, 0.06598304, -0.10182495, 0.21412489, -0.19759132, 0.07957324, -0.20146614, 0.09765558, -0.17162085, -0.09122259, -0.15034494, -0.12574612, 0.06703107, 0.16114126, 0.08407308, 0.1678488, 0.0505508, -0.13599212, 0.03040495, -0.20570397, 0.10100126, 0.09384924, 0.0983595, -0.21832477, -0.057018, 0.14105481, 0.03707432, -0.00569969, -0.06819412, 0.11119773, 0.04818765, -0.0939882, 0.14159662, 0.23880427, 0.19243136, 0.07138436, -0.16928138, -0.21220447, -0.00465763, 0.00957019, -0.05063453, -0.0598246, -0.14699112, 0.13301979] -bitcast:[-0.10315816, 0.0816453, -0.21884088, 0.06798919, 0.22739294, 0.0640339, 0.11784311, 0.09506627, 0.19640507, -0.1061683, 0.14800216, -0.15943746, 0.05496758, 0.12763985, 0.21045704, 0.04627991, 0.11577551, 0.12563764, 0.10995742, 0.13987751, 0.10902822, -0.08610999, -0.05738439, -0.14674646, -0.14567736, 0.1975445, -0.15007484, -0.1799645, 0.02444018, -0.03901434, 0.04009971, -0.14321053, 0.07627886, 0.20762299, -0.20748158, 0.17948043, 0.10235873, 0.00023856, 0.18213229, -0.12178227, -0.19155867, -0.07504618, -0.04669186, 0.11121777, -0.13352537, -0.05498422, -0.20033237, 0.22666101, 0.02394146, 0.06419373, -0.0086145, 0.11629897, 0.10842079, 0.21837686, -0.09290663, 0.23453136, -0.05618316, 0.07314663, 0.04041479, -0.03686116, -0.06541585, 0.16816922, 0.10113157, -0.11516596, 0.12729663, 0.18704572, 0.21209802, 0.05036264, -0.20056765, -0.08030804, -0.18798172, -0.05386178, 0.21649109, 0.12457379, -0.23290847] -br:[-0.13466758, 0.13462044, -0.11900182, 0.14940342, 0.10728918, 0.1602117, -0.18300878, -0.11410869, -0.15767391, -0.08192963, 0.16048539, 0.03106693, 0.0062218, 0.32384592, -0.13333374, 0.01737556, -0.35089645, -0.13951534, 0.32495296, 0.01929854, -0.00861498, -0.11707225, -0.06431757, -0.05223176, -0.04886034, -0.1565396, -0.24797156, -0.18374826, -0.14625117, -0.08047657, -0.04435138, 0.06476029, 0.04438542, -0.11804207, -0.02682809, -0.13218015, 0.31462273, -0.15577368, 0.18048187, -0.16110891, -0.03371485, -0.15339556, 0.03271793, 0.00630022, 0.16150798, 0.08510585, -0.01574472, 0.05013437, -0.1801857, -0.17099534, -0.1501832, 0.12065745, 0.01174447, 0.14283277, -0.14324749, -0.11230699, 0.17124574, 0.13318825, -0.00403612, -0.02349767, 0.1477884, 0.07065933, -0.03957716, -0.14633095, -0.15106276, 0.16803761, 0.01083914, -0.07434659, 0.12422366, -0.00674346, -0.19807695, 0.19070752, -0.05874697, 0.05328529, 0.00263743] -call:[0.14482532, 0.14326757, -0.15085314, -0.04092033, 0.0209726, 0.17022459, -0.20072381, 0.08939568, -0.15637758, -0.13988748, -0.26898825, 0.03325888, 0.04572382, -0.31501377, -0.1450185, 0.0261996, -0.17067844, 0.09898938, -0.2944188, -0.00886531, -0.00514833, -0.07931045, 0.00602785, -0.01886678, 0.20276964, -0.12007877, 0.22482176, -0.2681193, -0.08419776, 0.21180737, 0.05318057, 0.2844758, 0.06083709, -0.12837744, -0.06748573, -0.14210708, -0.3420069, -0.1958193, 0.2321262, -0.20586585, -0.04130536, -0.19348837, 0.08342399, 0.36395246, 0.17684563, 0.10515745, -0.04181844, 0.02709665, -0.22896197, 0.30263722, -0.09295031, -0.31957364, -0.00433618, 0.12611122, -0.18056175, 0.3066922, 0.21866941, 0.1626749, -0.00615647, -0.28773254, 0.18925248, 0.09600297, -0.08468354, -0.20638923, -0.19032606, 0.12741329, -0.20380476, -0.09236535, 0.15666015, 0.027502, 0.28376308, -0.3791352, -0.07245122, 0.06987173, -0.13707748] -constant:[-0.05511775, -0.08224074, 0.08653096, 0.4863616, 0.2476299, -0.07138691, 0.44700274, 0.04436373, 0.09296414, 0.0686087, -0.11327551, -0.11816442, 0.2512074, -0.12631956, 0.10144527, -0.40181464, -0.03053996, -0.02082835, -0.13831106, -0.253976, 0.27632302, 0.1657126, 0.13695326, 0.20861977, 0.03519448, 0.12430684, 0.05921895, 0.26770428, 0.13858305, 0.07001018, -0.315329, 0.11938018, 0.32305434, 0.12312049, 0.13810511, 0.08054793, -0.10096874, 0.03923778, -0.39813322, 0.11467672, 0.39932993, 0.02084116, -0.0068024, -0.38385683, 0.04948922, -0.16758485, 0.09372494, -0.10735551, 0.10021734, -0.4156233, 0.12506564, -0.08016244, -0.26558447, -0.13219741, 0.17242356, 0.13817824, -0.01288403, -0.31951007, -0.1818523, -0.17777084, -0.35218972, -0.16993074, -0.31980267, 0.35484686, 0.03130734, -0.04649718, -0.0845923, 0.14208128, 0.03328462, 0.21987958, 0.16688436, 0.4204589, 0.18413895, -0.10522495, -0.06958065] -extractelement:[-0.13334301, 0.13824242, -0.1777799, 0.19641759, 0.1192126, 0.2089696, -0.21124807, -0.04611871, -0.12823536, -0.16428901, -0.00694824, 0.07086436, -0.20107614, 0.13457699, -0.13841413, -0.20406596, 0.12342261, -0.1551251, 0.11633983, 0.00781696, -0.01117946, -0.09194981, -0.26064873, -0.04221923, 0.06729442, -0.11331707, -0.1575914, 0.03098936, -0.08996629, -0.1677314, -0.11706422, -0.15807948, 0.04784825, -0.12363577, -0.04299357, -0.09287591, 0.08699572, -0.16162103, 0.18954541, 0.18733715, 0.18527527, -0.16211925, 0.01841691, -0.24795406, -0.06417608, 0.08705449, -0.34089014, 0.04867454, -0.19771865, 0.03108035, -0.1314961, 0.10390847, 0.00210152, 0.16652024, -0.1476344, -0.11725239, 0.18920864, 0.13918674, -0.00471087, -0.01769734, 0.15430662, 0.12118539, 0.24754849, -0.16714816, -0.21405493, 0.08530156, 0.22711486, -0.07599557, 0.12583134, 0.01627942, -0.22304477, -0.05357931, -0.06064295, 0.06179977, 0.24206032] -extractvalue:[0.14426622, 0.0586798, -0.09706913, 0.14877641, -0.25502053, 0.15195489, -0.1566787, 0.24299988, 0.23574317, -0.07162391, -0.22991037, 0.03165187, -0.22608593, 0.01468999, -0.11515595, 0.01825508, -0.06865417, -0.1404803, -0.01040856, -0.03346428, -0.22164406, -0.14025804, 0.23578045, -0.23462011, -0.045315, -0.02686119, -0.0206653, 0.01651808, 0.02044199, -0.18469973, 0.19499204, -0.05297833, 0.02682888, -0.12157851, -0.02729162, -0.09813424, 0.02225483, 0.23500983, 0.21803817, -0.16138217, -0.03408895, -0.15375352, 0.06347576, -0.06099097, -0.1794837, 0.23301016, 0.17049761, 0.02065851, -0.18001623, 0.01151185, 0.04512748, -0.00573916, -0.03807861, 0.13767283, -0.12640858, -0.12627049, -0.1995161, -0.17798784, 0.00845151, 0.02543758, -0.20610349, 0.04735759, -0.04220745, -0.1452903, -0.12603642, 0.04538869, -0.19606718, -0.03102922, 0.04413663, 0.24769837, -0.20390615, 0.07117273, -0.11142858, 0.05541492, 0.24263766] -fadd:[-0.10873123, 0.13037448, -0.18534161, 0.18515441, 0.11261778, 0.19606866, -0.19855583, -0.04479901, -0.12877528, -0.15118788, -0.01939856, 0.07455989, -0.18490526, 0.05251479, -0.13063222, -0.19204916, 0.02582661, -0.14519615, -0.01473167, -0.00184892, -0.00860755, -0.112672, -0.25621638, -0.03804077, 0.15780579, -0.11617256, -0.07628617, 0.10131412, -0.08613286, -0.1489821, -0.06002842, -0.04803097, 0.04578746, -0.11480423, -0.04673449, -0.08242401, 0.07866412, -0.152193, 0.17761528, 0.17768967, 0.17454574, -0.18040213, 0.06017968, 0.0645328, 0.15748358, 0.08116906, -0.4018228, 0.04057113, -0.1863352, 0.03174699, -0.12215038, 0.10104799, 0.00263386, 0.1581356, -0.14009237, -0.10980193, 0.17721009, 0.13239942, -0.00362236, -0.01748145, 0.14479299, 0.12227024, 0.23331605, -0.15699492, -0.20088439, 0.09237133, 0.01604627, -0.07126047, 0.1216723, 0.00635546, -0.20864682, 0.17545675, -0.05706025, 0.06430314, 0.23661163] -fcmp:[-0.09831024, 0.1177328, -0.15053168, 0.1668956, 0.10194673, 0.17747606, -0.17944369, -0.01656551, -0.1081959, -0.13423076, -0.0083208, 0.06832938, -0.16663359, 0.11133014, -0.11787042, -0.17280787, 0.10577738, -0.13183661, 0.09999792, 0.01005413, -0.00800985, -0.11900718, -0.23241626, -0.03194214, 0.14458095, -0.08857993, -0.13901676, -0.12804943, -0.03810829, -0.13830633, -0.02034832, -0.15582977, 0.03966385, -0.21123466, -0.04061278, -0.0737746, 0.07400599, -0.13606748, 0.16037306, 0.16100772, 0.15734638, -0.16412482, 0.08469577, -0.22943822, -0.0703051, 0.03550187, -0.17478071, 0.03853272, -0.16823666, 0.02888121, -0.10854868, 0.09304217, 0.00087926, 0.14260164, -0.12434422, -0.10082047, 0.16072698, 0.11885008, -0.00344257, -0.01215652, 0.13043456, 0.08610432, 0.21218961, -0.14265156, -0.18132636, 0.0748597, 0.01380804, -0.06413551, 0.10812144, 0.01471414, -0.18892944, -0.04726761, -0.05034782, 0.05965589, 0.20503323] -fdiv:[-0.1083142, 0.13170409, -0.18761444, 0.19075245, 0.11425695, 0.19935226, -0.20120272, -0.04145905, -0.12772538, -0.16055192, -0.02654456, 0.07551043, -0.1863077, 0.04952206, -0.13158378, -0.19505195, 0.01627452, -0.14791232, -0.01763806, 0.0014818, -0.00974015, -0.08713593, -0.26082575, -0.0348734, 0.16258475, -0.11312099, -0.06462681, 0.2554564, -0.08579222, -0.14956969, -0.06205287, -0.04617219, 0.04640255, -0.11571387, -0.04207394, -0.07177421, 0.07482164, -0.15266077, 0.1793157, 0.18114524, 0.17665583, -0.18152018, 0.06277426, -0.08340688, 0.15903024, 0.08205476, -0.3324572, -0.15855703, -0.18905288, 0.02863684, -0.12305809, 0.09608548, -0.00266558, 0.16051604, -0.13511042, -0.11073927, 0.18117134, 0.13207485, -0.0035845, -0.01663129, 0.14735432, 0.13560806, 0.2390274, -0.15975215, -0.20400149, 0.08512522, 0.04421749, -0.07282987, 0.12241568, 0.00965695, -0.2123333, 0.08572439, -0.05605263, 0.06658893, 0.24007745] -floatTy:[0.04900556, -0.10384431, 0.10619805, -0.08045595, -0.10991948, -0.10077553, 0.07339532, 0.14942664, 0.12023108, 0.08361579, -0.09868611, 0.19891165, -0.23421414, 0.01352532, 0.10448531, 0.13516873, 0.04104601, 0.02958678, 0.02299329, 0.1514195, -0.15553081, 0.13952388, -0.13896915, -0.14777902, -0.10149621, 0.14660524, -0.03156482, 0.18424718, 0.1407891, -0.2237127, 0.16614203, -0.00163921, -0.12673005, 0.12534565, 0.05904828, 0.12794818, 0.00817295, 0.11660493, 0.02156415, 0.24247064, -0.13803738, 0.07462812, -0.10431179, -0.055183, -0.1808114, -0.13278495, -0.09894497, -0.08459757, 0.11150088, -0.04819359, 0.13634738, 0.02157767, 0.14846906, -0.12682004, 0.09123623, 0.05239185, -0.05507969, 0.18156756, 0.11898128, 0.12904477, -0.15837269, -0.12526217, 0.17645235, -0.01030331, 0.08386946, -0.1083485, 0.11908209, 0.1599665, -0.12037949, -0.12735032, -0.0725907, 0.01908005, -0.15298285, 0.16727036, 0.14050354] -fmul:[-0.11000263, 0.13313764, -0.16819902, 0.1866679, 0.11289538, 0.19923902, -0.20158935, -0.10965466, -0.13151023, -0.15339647, 0.00137716, 0.07292396, -0.1705247, 0.05061687, -0.13322882, -0.19424087, 0.01911283, -0.14698511, -0.01600348, 0.01016757, -0.00949535, -0.08578771, -0.25654045, -0.04006492, 0.16177996, -0.13001451, -0.06598155, 0.10235288, -0.12216382, -0.14728908, -0.19769233, -0.04453951, 0.04660948, -0.11446673, -0.04299885, -0.11318354, 0.07576509, -0.15535352, 0.17898083, 0.18015653, 0.17673412, -0.1542999, 0.05283326, 0.06858768, 0.16159816, 0.08381413, -0.34344092, 0.04670792, -0.18845932, 0.03031277, -0.12988667, 0.09807498, 0.00718184, 0.15824817, -0.16129062, -0.10814532, 0.17967564, 0.13519818, -0.00363093, -0.02139519, 0.14737067, 0.1092656, 0.2355478, -0.159828, -0.20372307, 0.10592715, 0.2155067, -0.07222086, 0.12408899, 0.00687299, -0.21276967, 0.0916472, -0.05917447, 0.06157613, 0.24216153] -fneg:[0.1272929, 0.11098243, -0.19493657, 0.18704055, 0.12977211, 0.19760184, -0.2011749, 0.10378501, -0.11935267, -0.15768325, -0.20259221, 0.07731552, -0.20338854, 0.11889816, -0.13052368, -0.19354439, 0.07626642, -0.14857754, 0.10825964, -0.01353588, -0.01104351, -0.08277993, -0.25518838, -0.03899327, 0.1612618, -0.01545228, -0.10768183, 0.2534764, -0.06081063, -0.16674054, 0.01763026, -0.09180292, 0.04378516, -0.11615089, -0.04529132, 0.18327025, 0.06614358, -0.05828108, 0.18041882, 0.17760223, 0.17644961, -0.15371816, 0.0641077, 0.06343781, -0.11340044, -0.03372987, -0.23527198, 0.01273888, -0.18882784, 0.03041904, -0.04068949, 0.07045509, -0.0026318, 0.19458877, -0.13573602, -0.11694964, 0.17905717, 0.130643, 0.00541951, -0.01507348, 0.14619434, 0.15836413, 0.23706934, -0.15997343, -0.20333211, 0.08333846, 0.16580339, -0.07277556, 0.07136942, 0.01852913, -0.21162856, -0.04937368, -0.05561843, 0.08875916, 0.23905317] -fpext:[2.3889039e-02, 1.1029585e-01, -2.1694064e-01, 1.8653962e-01, 2.2691385e-01, 1.9574586e-01, -2.0049310e-01, 9.4666131e-02, -1.2724364e-01, -1.4684629e-01, -2.6979610e-02, 7.6569587e-02, -1.6401602e-01, 1.1953403e-01, -1.3126844e-01, -1.9337073e-01, 9.7773880e-02, -1.4722602e-01, 1.0870947e-01, -4.7738426e-03, -9.9636763e-03, -1.3130748e-01, -2.5393358e-01, -3.9765608e-02, 1.5942533e-01, -1.0315144e-01, -1.2541974e-01, 2.5341213e-01, -7.9163589e-02, -1.4747337e-01, 2.4794929e-02, -1.1882598e-01, 4.6331774e-02, -1.1652424e-01, -2.0294240e-01, -4.0969416e-02, 7.2171763e-02, -6.0102597e-02, 1.7984131e-01, 1.7708856e-01, 1.7548151e-01, -1.5351015e-01, 6.6925168e-02, 6.1265044e-02, -8.2261592e-02, 2.5082914e-02, -2.1478510e-01, 4.1686200e-02, -1.8823083e-01, 3.0637426e-02, -4.6937604e-02, 8.6195819e-02, 2.1627222e-04, 2.1729887e-01, -1.3694453e-01, -1.1408991e-01, 1.7551251e-01, 1.3138162e-01, 7.8319147e-04, -1.6518131e-02, 1.4514638e-01, 1.4490409e-01, 1.7909285e-01, -1.5800813e-01, -2.0310356e-01, 9.7424991e-02, 2.0606364e-01, -7.2445914e-02, 1.2246952e-01, 5.2800714e-03, -2.0693912e-01, -4.9303558e-02, 1.9984254e-01, 1.1296164e-01, 1.2244859e-01] -fptosi:[0.1373729, 0.12883618, -0.16352044, 0.18331416, 0.11165845, 0.19683856, -0.19772632, -0.11136317, -0.12968811, -0.1480879, 0.0067587, 0.07343934, -0.16673195, 0.1234552, -0.13161102, -0.19265643, 0.107696, -0.14450003, 0.00037484, 0.01189654, -0.0088324, -0.13086006, -0.24928111, -0.03620821, 0.1151085, -0.12670605, -0.13663803, -0.15294494, -0.1224799, -0.14602166, -0.04644055, -0.16333403, 0.04555976, -0.24189918, -0.02742246, -0.09617416, 0.06832792, -0.15242375, 0.17582151, 0.17896035, 0.1734453, -0.18223304, 0.05435333, -0.02137768, 0.15711978, 0.08181176, 0.11010902, 0.04648223, -0.18499935, 0.03126073, -0.12697712, 0.0994917, 0.00950376, 0.15537114, -0.14221182, -0.11015689, 0.1767709, 0.13201703, -0.00371583, 0.20973718, 0.1448866, 0.10775527, 0.2309068, -0.15708631, -0.20018397, -0.17917103, 0.02361767, -0.07141636, 0.12183826, 0.00374293, -0.20800817, -0.05120487, -0.05720833, 0.05778734, 0.23726696] -fptoui:[1.34434968e-01, 1.27162203e-01, -1.26332492e-01, 1.43472478e-01, 1.67107824e-02, 1.90460622e-01, -1.67077854e-01, -4.31036428e-02, -5.84473461e-03, 1.94610119e-01, -1.18339737e-03, -1.18181668e-01, -1.63993463e-01, -4.22932627e-03, -5.70860989e-02, -3.70724685e-02, -6.66463077e-02, -1.40057087e-01, -1.40196038e-02, 1.11302454e-02, -1.12090126e-01, -1.26267821e-01, -1.78080454e-01, -3.28613520e-02, 6.55227527e-02, -9.51863378e-02, 2.86316429e-03, -1.40513226e-01, 2.11926088e-01, -1.40184373e-01, -6.01268075e-02, -4.18982767e-02, -2.44321357e-02, -2.34633580e-01, -4.49065231e-02, -7.49414414e-02, -1.03680985e-02, -1.45848736e-01, 1.70776814e-01, 1.73121408e-01, 1.79659743e-02, -1.75821245e-01, 4.84935082e-02, -5.29969335e-02, 1.81584924e-01, 1.85759827e-01, -1.93469658e-01, -1.93183571e-01, -1.72479257e-01, -6.10608933e-03, -1.17593743e-01, -9.10734851e-03, -1.02117851e-01, 1.51014999e-01, 2.12572739e-01, -1.02930807e-01, 1.78619102e-01, 1.26010776e-01, -1.86922371e-01, 2.07345694e-01, 1.66270494e-01, 4.59922589e-02, 2.25611597e-01, -1.52390793e-01, -1.93683058e-01, -2.10861161e-01, -1.80179209e-01, -6.79619983e-02, 1.01475030e-01, 5.67920804e-02, -2.03148112e-01, 9.35386488e-05, 1.77665465e-02, 5.59489168e-02, 1.62640288e-01] -fptrunc:[0.13507551, 0.08662265, -0.20684563, 0.1779264, 0.19366996, 0.19928405, -0.19115536, 0.09741689, -0.1157898, -0.14627774, -0.04321446, 0.13611025, -0.16534406, -0.02706414, -0.12561758, -0.1846078, -0.10099479, -0.16950977, -0.01332796, -0.00468324, -0.00924775, -0.12539107, -0.2476966, -0.03697419, 0.15332113, 0.02717782, 0.06184624, 0.24026999, -0.02332935, -0.15212959, 0.00301866, -0.04206852, 0.04305651, -0.1102203, -0.02822751, 0.16004287, -0.08910867, -0.05537027, 0.17084935, 0.17041169, 0.16798739, -0.19032383, 0.06548668, -0.08427053, -0.07714352, 0.01484849, -0.22265097, 0.17633918, -0.18077783, 0.01184065, -0.04223398, -0.00799209, -0.00124257, 0.20681325, -0.12639467, -0.10767608, 0.17034629, 0.1247315, -0.00063698, -0.01105678, 0.13903384, 0.04814726, 0.22382991, -0.15209682, -0.19993167, 0.07498992, 0.04061472, 0.00894266, 0.11516804, 0.01132974, -0.20081756, 0.06491906, -0.05320828, 0.11706732, 0.22729383] -freeze:[0.19257964, 0.19922924, 0.22845781, -0.20918986, 0.09615742, 0.08813676, -0.13007207, -0.28252187, -0.20277372, -0.00285527, 0.20707846, 0.03269857, 0.05792099, 0.09884403, -0.21888764, 0.0199495, 0.03486069, -0.13990091, 0.01667993, 0.07614928, 0.08568508, -0.08850384, -0.05862335, 0.24327727, -0.05080977, -0.08769658, -0.07556956, -0.21303618, -0.02403472, -0.11753988, -0.06449939, -0.06754956, 0.09903342, 0.05907881, 0.18789217, -0.22513159, 0.07989435, -0.22023727, 0.16526549, -0.16563816, -0.03285323, -0.19686759, -0.05526138, -0.08269978, -0.08173671, 0.01490044, 0.17477824, 0.23617344, -0.04094684, -0.14997905, -0.1934059, 0.08517106, 0.01273688, 0.05140221, -0.21445394, 0.2334229, 0.17481774, 0.17307074, -0.01497588, -0.22724962, -0.04395574, -0.22981015, -0.10490765, 0.14049004, -0.15349036, 0.19155516, 0.22017959, 0.00709452, 0.14702573, -0.04498778, -0.16169429, -0.04348697, -0.06332687, 0.05611038, 0.01098999] -fsub:[-0.10476302, 0.12542433, -0.17647877, 0.1786793, 0.10913915, 0.18946025, -0.191358, -0.04164409, -0.12347393, -0.1504743, -0.02479569, 0.07111109, -0.18156642, 0.05054973, -0.12513603, -0.18577117, 0.02628745, -0.1401456, -0.01518289, -0.00354086, -0.00885875, -0.08602829, -0.24641128, -0.03600265, 0.15528652, -0.10402499, -0.07289824, 0.24243075, -0.08007814, -0.14872944, -0.02782464, -0.04947096, 0.0445951, -0.11104182, -0.04380236, -0.08080605, 0.07588449, -0.14606269, 0.17145774, 0.17244749, 0.16844998, -0.17483109, 0.05860758, -0.28901112, -0.07676851, 0.17479438, -0.21654579, 0.01940797, -0.17933942, 0.02937181, -0.1172727, 0.09601063, -0.00263024, 0.15110013, -0.1318215, -0.10504271, 0.17152634, 0.12668324, -0.00336666, -0.01625384, 0.13985498, 0.11553686, 0.2260049, -0.15182681, -0.19351181, 0.07778634, 0.01684441, -0.06904304, 0.11642942, 0.00772887, -0.20214222, -0.049887, -0.05513437, 0.06182734, 0.23033473] -function:[0.07087264, -0.07715042, 0.05874059, -0.13924591, -0.12748645, -0.08829046, 0.23358145, 0.20105776, 0.11009008, 0.07405281, -0.08094433, -0.0829369, 0.16543509, -0.08498039, 0.09908375, 0.13518533, -0.0194154, -0.01221862, -0.10831806, -0.20102835, -0.15210986, 0.15468667, 0.13170041, 0.14903253, 0.24928756, 0.12419113, 0.05789361, -0.00129296, 0.11380319, 0.05218219, 0.14241683, 0.08289858, -0.15494025, 0.13394447, -0.16814493, 0.05700672, -0.06969604, 0.08131509, -0.00970547, -0.18973432, -0.15343298, 0.05649161, 0.20527421, 0.17734532, 0.01022343, 0.15239944, 0.04542852, -0.10245346, 0.13777171, 0.16834758, 0.13177899, -0.07684261, -0.2092511, -0.13731961, 0.11852706, 0.10172775, -0.22111587, -0.2148933, 0.15957674, 0.12867072, 0.22943936, -0.164847, -0.2101238, -0.21214265, 0.02781455, -0.06813682, -0.08800039, 0.13484041, -0.18195598, 0.16143988, 0.11279666, -0.20649853, -0.15624169, 0.21497591, -0.06755896] -getelementptr:[-0.14634334, 0.12948418, -0.11503786, 0.14507276, 0.09063736, 0.14393866, -0.1757465, -0.1906176, -0.12738505, -0.07622356, 0.15730369, 0.03061217, 0.03747678, 0.2232822, -0.12837602, -0.04787541, -0.3024429, -0.1356514, -0.20493838, 0.01333389, -0.00760518, -0.10626648, -0.03553912, -0.03813244, -0.04541107, -0.12106249, 0.1444827, -0.15215373, -0.10700025, -0.13056989, -0.08320381, -0.47304174, 0.0449689, -0.10947487, -0.0278797, -0.1219172, 0.08132998, -0.15041, 0.17378081, -0.1559312, 0.15688911, -0.14836746, 0.0092639, -0.13855964, 0.15648755, 0.0813685, -0.01539182, 0.04580735, -0.17473969, 0.21075436, -0.12747958, 0.12778966, 0.00290254, 0.12006913, -0.2047303, -0.10826406, 0.16493101, 0.12908581, -0.00380957, -0.02293618, 0.14278038, 0.0713244, -0.04576431, 0.13764144, -0.14565526, 0.12818377, 0.01346012, -0.07020358, 0.12030254, 0.0058628, -0.20072266, -0.05157725, -0.05726963, 0.05315081, 0.00254139] -icmp:[-0.10969561, 0.13326222, -0.11806951, 0.18324454, 0.11058358, 0.15053809, -0.19195011, -0.11332984, -0.13068, -0.0111747, 0.15630968, 0.03160869, 0.03557754, 0.05428812, -0.131786, 0.01763578, 0.29399103, -0.13815893, -0.01582003, 0.01917153, -0.00759274, -0.10897626, -0.05990775, -0.04164411, -0.04822834, -0.12635493, -0.12839127, -0.20213506, -0.10822182, -0.12239946, -0.06652816, -0.4940955, 0.04586652, -0.11307177, -0.03890553, -0.12857974, 0.4113753, -0.15491834, 0.17824028, -0.159824, -0.03192518, -0.15189394, 0.01119939, 0.03291865, 0.15997088, 0.08326948, -0.01603109, 0.04912903, -0.17884566, 0.03234044, -0.13174565, 0.10036604, 0.0089768, 0.14046605, -0.1716929, -0.10553217, 0.1691209, 0.1336029, -0.00505475, -0.02715854, 0.14558148, 0.07285865, -0.04641947, -0.14444941, -0.14956313, 0.1675603, 0.01070396, -0.07178568, 0.12346014, 0.00264034, -0.20218931, 0.18754801, -0.05911333, 0.05441646, 0.00300689] -insertelement:[-0.1104931, 0.13435946, -0.16740434, 0.1909089, 0.11453833, 0.19913752, -0.201145, -0.17181988, -0.12990634, -0.15733488, 0.01103377, 0.07403385, -0.19067755, 0.05659281, -0.1327349, -0.19538072, 0.02343484, -0.14819813, -0.01554454, 0.00921893, -0.00647542, -0.08540612, -0.26100376, -0.03634705, 0.16765112, -0.10861496, -0.07738972, 0.06890561, -0.08808507, -0.15872478, -0.06591291, -0.05361471, 0.04665549, -0.11406729, -0.04147775, -0.11218558, 0.08107399, -0.1542376, 0.17992978, 0.18099019, 0.17721385, -0.18993302, 0.03905813, -0.30657682, -0.07932588, 0.08231516, -0.20271443, 0.04749179, -0.18884075, 0.01523502, -0.13022666, 0.10111987, 0.00102864, 0.15882038, -0.1688363, -0.10956942, 0.18005282, 0.13484526, -0.0063764, -0.0242506, 0.14692612, 0.11777592, 0.23874299, -0.15973455, -0.2039948, 0.11537186, 0.21692751, -0.07190187, 0.1233889, 0.01425269, -0.21240549, -0.0528725, -0.05624196, 0.05907395, 0.24069618] -insertvalue:[-0.09875207, -0.1714084, -0.17448501, -0.05500454, -0.03368652, -0.19084807, 0.15094712, -0.03978536, 0.1313515, -0.19683114, -0.03120292, -0.16458064, -0.15630096, 0.05070753, 0.16386797, 0.11045002, 0.11953997, 0.1334012, 0.07337415, -0.08667754, -0.04855481, 0.04043591, -0.21467037, 0.04876019, -0.0904218, 0.00143209, -0.06295151, 0.09086672, -0.04096752, -0.11947396, -0.12021854, -0.04494649, 0.09700233, 0.14941849, -0.05310388, 0.18482774, 0.07009561, 0.17008236, 0.08557777, 0.06514586, -0.10545991, 0.17381305, 0.01084712, 0.10524479, -0.1008845, -0.183286, -0.20012572, -0.14668721, 0.08051436, 0.21215467, 0.18288761, 0.0772287, 0.08486479, -0.11070843, 0.14811186, 0.14061394, -0.11395239, -0.06261241, 0.15542322, -0.01529685, -0.11505058, 0.16915536, 0.21295418, -0.01675938, 0.15865982, 0.09708425, 0.17962472, -0.13718157, -0.19584663, -0.16169825, -0.19526207, -0.11267254, -0.12390247, -0.1037976, 0.00466637] -integerTy:[-0.05895382, -0.08773074, 0.06992726, -0.31011233, -0.13048527, -0.10587289, 0.05197246, 0.11830473, 0.11592712, 0.17741975, 0.07661638, 0.17850745, -0.08980408, 0.08872516, 0.10607537, 0.17136358, 0.13644408, 0.01311096, 0.02419001, 0.23305452, -0.17139797, 0.13690701, 0.11479, -0.21357676, -0.1899478, 0.10415972, -0.11652931, -0.09769165, 0.15676561, -0.23224157, 0.10116645, -0.12614302, -0.15886351, -0.16665749, -0.13050455, 0.08655596, 0.01707506, 0.08300704, -0.0263752, -0.04439607, -0.17297547, 0.06548287, -0.23450397, -0.00410204, -0.13871993, -0.01783468, 0.20883788, 0.1585069, 0.075288, -0.05117706, 0.11569144, 0.03889959, 0.17440279, -0.14135467, 0.09397258, 0.07870792, -0.02154971, 0.10194483, -0.14623329, 0.16707808, -0.19285178, -0.18017578, 0.07884493, 0.2594352, 0.05723228, -0.13506767, 0.10019378, 0.15450986, -0.11666895, -0.18157922, 0.08850383, 0.0062976, 0.17424847, 0.17297816, 0.05142448] -inttoptr:[-0.13630244, 0.1394812, 0.09082608, 0.15104489, 0.01774232, -0.13840991, 0.01065149, -0.11621346, -0.00252811, 0.21313493, 0.15903583, -0.1296972, 0.10214894, 0.11171967, -0.03819407, 0.01599813, 0.10556564, 0.1661376, 0.11314746, 0.15266941, -0.11538962, -0.08747453, 0.18267399, 0.20305595, -0.2017417, 0.21432902, -0.10308855, -0.18534417, -0.13134196, 0.09993339, -0.10776421, -0.09298802, -0.03029798, 0.19584055, -0.02545767, -0.14516763, 0.08564661, -0.15706332, 0.18191946, -0.16316868, -0.10425402, 0.11010062, -0.0479327, 0.11809943, 0.19715278, 0.13697258, 0.12513216, -0.196676, 0.05488879, 0.19722784, -0.15231481, 0.08681407, -0.10788315, -0.21445514, 0.22154817, -0.10709018, -0.09173875, 0.13078192, -0.19902122, -0.02503786, 0.17685084, 0.09781817, -0.04346599, 0.16277169, 0.10102073, 0.19040433, 0.21730414, -0.17189498, -0.14639756, -0.06024209, -0.20907345, -0.05495603, 0.01513247, -0.16496265, -0.23925038] -invoke:[-0.17037813, 0.12447809, -0.13254088, 0.16741143, -0.29689348, 0.17245242, -0.1753155, 0.27199855, -0.1479448, -0.08975344, -0.2388202, 0.03697256, 0.02300099, -0.27569947, -0.14945273, 0.02014936, -0.14911516, -0.16015211, -0.23843327, -0.01150125, -0.01184224, -0.10053053, -0.01891209, -0.04529067, 0.1769977, -0.14764817, 0.1858467, 0.29046112, -0.10172998, 0.18476044, 0.04675948, 0.18468481, 0.05041242, -0.13219522, -0.03313631, -0.12524456, 0.09232612, -0.06788205, -0.33390293, -0.18106446, -0.06505071, -0.1723444, 0.12838279, 0.3172158, 0.1821126, 0.0955131, -0.03461147, 0.02496569, -0.20339684, 0.26446992, -0.07812006, 0.11357581, -0.00242351, 0.15685299, -0.1453846, -0.12997872, 0.1138543, -0.13915779, 0.00910551, 0.02702536, 0.16584009, 0.08293587, -0.05373611, -0.1639482, -0.16794938, 0.07561965, -0.18069787, -0.08345903, 0.13999896, 0.00712107, 0.24829929, -0.33074573, -0.06754953, 0.06254003, -0.11928315] -label:[-0.08421724, -0.10250711, 0.11215679, 0.03593931, -0.12462043, -0.02116062, -0.02468752, 0.14892796, 0.03624122, 0.2573024, 0.26621008, 0.1473021, 0.16479708, 0.11161798, 0.03291009, -0.09228926, 0.20894618, -0.25664115, 0.20051186, -0.13776602, 0.13812794, 0.08599985, 0.11859813, 0.12606345, -0.1787899, 0.04831297, 0.12180986, 0.2105218, 0.0406118, 0.14002106, -0.24280258, 0.14901407, -0.0706777, 0.02931729, 0.32707393, 0.07797667, 0.17175199, 0.08435421, -0.21704178, 0.23822264, 0.06267213, 0.24012461, -0.24429479, -0.00610719, 0.23788038, -0.06578419, -0.09999645, 0.16555783, 0.23481676, -0.15229315, 0.03339487, -0.02717743, -0.14654148, -0.05192868, 0.14201662, -0.27716735, -0.11879828, -0.2512509, 0.17667766, 0.14006434, -0.00560042, -0.14142503, 0.02450437, -0.04081944, 0.05965927, -0.21140096, -0.06488664, 0.08721694, 0.2432311, 0.14565244, -0.10602848, 0.10125864, 0.08721873, -0.1536091, -0.17011659] -landingpad:[-0.14584796, -0.16767813, -0.01705973, 0.00093497, -0.2436182, -0.18231551, 0.06912599, 0.232326, 0.17945138, -0.2238229, -0.20365967, -0.16778396, -0.01338567, 0.06786925, -0.0089755, 0.22903025, -0.10159695, 0.05511137, 0.08055997, -0.04842087, 0.02367443, -0.16437764, 0.18895102, -0.14594522, -0.11077365, -0.03415364, -0.0526613, 0.03391879, 0.16745631, 0.15810244, 0.18886559, -0.06867921, -0.0954337, 0.15118866, 0.00546555, 0.17617542, 0.06660912, 0.18861406, -0.09817892, -0.11471829, -0.06352893, 0.17084128, 0.10971251, 0.03079901, -0.12283082, 0.11941736, 0.14988025, 0.12327142, 0.15214007, 0.03017107, 0.16773368, 0.06079161, 0.14422408, 0.01841416, 0.15053785, -0.01172967, -0.14936632, -0.14004451, 0.05743803, 0.17034504, -0.15224192, 0.04629263, 0.01544103, 0.02796921, 0.15804203, -0.16536269, 0.02765706, -0.2177597, -0.0776866, -0.22482842, 0.21214648, -0.04934264, 0.14992182, -0.18284532, 0.12743513] -load:[0.14515816, 0.12730086, -0.11675689, 0.13731101, 0.0856357, 0.14036776, -0.1680394, -0.10500994, -0.12388522, -0.00997473, 0.15036497, 0.02959538, -0.14294048, 0.11579642, -0.12299019, 0.01710502, 0.2744816, -0.12820424, -0.17692348, 0.06387755, -0.00997787, -0.10073593, -0.221399, -0.03850655, -0.04604952, -0.12999706, -0.23317862, -0.18918784, -0.136777, -0.1259924, -0.08401669, -0.44748387, 0.04140297, -0.10600363, -0.02825268, -0.14835529, 0.0767852, -0.14656888, 0.16522723, -0.14833589, -0.03145197, -0.14087194, 0.00418875, -0.08156209, 0.14937344, 0.07756609, -0.01715839, 0.04561085, -0.16615209, 0.02954168, -0.16565895, 0.07675724, 0.01007609, 0.12687837, -0.13445675, -0.10035386, 0.15792593, 0.1236473, -0.00307636, -0.01651428, 0.1361811, 0.0755292, -0.03676795, -0.13428877, -0.13931923, 0.1571369, 0.01346655, -0.06821621, 0.11397477, -0.00336121, -0.19289134, -0.04844571, -0.05658585, 0.05074035, 0.00364443] -lshr:[-1.07618235e-01, 1.72638521e-01, -1.15980022e-01, -2.29095370e-01, 9.65579972e-02, 1.38108417e-01, -1.76737547e-01, -2.71451771e-01, -2.03912869e-01, -1.02555100e-03, 1.69754341e-01, 3.08463741e-02, 5.36250919e-02, 1.21660687e-01, -1.74549952e-01, 1.69236306e-02, 1.34103879e-01, -1.34251148e-01, -1.09291431e-02, 7.34013617e-02, 4.81260680e-02, -8.32869262e-02, -4.93266359e-02, -8.71899873e-02, -4.87988330e-02, -1.87684625e-01, -1.73489943e-01, -2.01266050e-01, -1.87993333e-01, -9.25938040e-02, -2.67284721e-01, -1.70980498e-01, 5.49704246e-02, -9.92908999e-02, -2.04201669e-01, -1.88772425e-01, 8.08538347e-02, -1.96026564e-01, -1.59017637e-01, -1.56015217e-01, -3.07364762e-02, -1.47628203e-01, -1.18779279e-01, 1.12054415e-01, 1.56248108e-01, 8.06738585e-02, 1.59131959e-01, 4.82034311e-02, -1.74115866e-01, 3.33038792e-02, -1.82583794e-01, 1.01199277e-01, 1.13783469e-02, 9.69657749e-02, -2.11351588e-01, -5.26013300e-02, 1.65175989e-01, 1.31593123e-01, -5.34626422e-03, -6.75430447e-02, 1.04004987e-01, 4.81479615e-02, -9.91894677e-02, 1.36073366e-01, -1.45649791e-01, 1.97602749e-01, 4.21781391e-02, -7.01575503e-02, 1.53188914e-01, 1.35687616e-04, 9.17893182e-03, -5.32824658e-02, -5.76535352e-02, 5.21502644e-02, -2.27659225e-01] -mul:[-1.10740639e-01, 1.79489031e-01, -1.16963282e-01, -2.33437970e-01, 9.87611338e-02, 1.49095193e-01, -1.82653472e-01, -2.79600203e-01, -1.97915658e-01, 1.39354763e-03, 1.74758449e-01, 3.16131786e-02, 5.40922359e-02, 1.24427542e-01, -1.77638933e-01, 1.73734594e-02, 2.94302821e-01, -1.37859747e-01, 1.13455996e-01, 7.11286962e-02, 2.80722103e-04, -8.68532956e-02, -5.32661788e-02, -6.27722964e-02, -5.23782670e-02, -1.87031299e-01, -2.50176728e-01, -2.06857830e-01, -1.81378320e-01, -9.91749838e-02, -1.99474856e-01, -2.10756496e-01, 4.60124500e-02, -1.09496146e-01, 2.05390289e-01, -1.93141758e-01, 8.26756209e-02, -2.02435717e-01, 1.57658204e-01, -1.61479577e-01, -3.25814299e-02, -1.51643500e-01, -5.50450161e-02, 1.16838366e-01, 1.61545411e-01, 8.40181708e-02, -2.01780185e-01, 5.08336052e-02, -1.77847996e-01, 3.34045105e-02, -1.89214364e-01, 1.03171140e-01, 1.11006750e-02, 9.96930301e-02, -2.13933602e-01, -8.31998661e-02, 1.69776157e-01, 1.36905089e-01, -7.23596616e-03, -7.03386515e-02, 1.47096902e-01, 4.73428033e-02, -9.53844786e-02, 1.40168130e-01, -1.49634287e-01, 1.76833391e-01, 1.42325740e-02, -7.01029822e-02, 1.48151264e-01, 1.46238506e-03, 9.14167427e-03, -5.46112247e-02, -6.03365153e-02, 5.26305772e-02, 1.81084534e-03] -or:[-0.10545847, 0.128841, -0.14629026, 0.17671728, 0.10541161, 0.1452954, -0.19208096, -0.26102364, -0.12768617, -0.07223696, 0.15802775, 0.03196834, 0.01273388, 0.11991186, -0.1273087, 0.01605262, 0.28355837, -0.1339228, -0.01369879, 0.02059641, -0.00814792, -0.10595141, -0.06777362, -0.03963358, -0.04625091, -0.13565284, -0.2567866, -0.19570036, -0.14286374, -0.12997858, -0.08209349, -0.46220544, 0.04389297, -0.11056517, -0.03333032, -0.15437946, 0.07864793, -0.15014647, 0.17209147, -0.15338379, -0.03033057, -0.14717023, 0.01365776, -0.02373198, 0.15401708, 0.07996901, -0.01564746, 0.04807418, -0.17326052, 0.03048565, -0.12832771, 0.09849346, 0.01073802, 0.13247147, -0.18602005, -0.10404839, 0.16417612, 0.12832864, -0.00375266, -0.02193816, 0.1411213, 0.06878087, -0.0414301, -0.14032999, -0.1449, 0.14572303, 0.01162843, -0.06873709, 0.11880528, 0.00282644, -0.19748962, 0.17471638, -0.0566086, 0.05271496, 0.00232344] -phi:[0.16505243, 0.16049314, -0.17289443, 0.21912654, 0.4185169, 0.13733086, 0.17491576, -0.28879407, -0.11458892, -0.11623015, -0.30420232, -0.26313967, 0.02635299, -0.3593261, -0.12667379, -0.2878424, -0.19345047, 0.14500995, -0.33731002, -0.05418503, 0.07374757, -0.03973716, -0.10962506, -0.0216001, 0.16983663, -0.08537833, 0.2804635, 0.03990281, -0.098049, 0.24968961, -0.09870985, 0.32718843, 0.14398097, -0.07338686, -0.03432579, -0.16179925, -0.390389, -0.152486, -0.1530621, 0.00060386, 0.25888667, -0.15926011, 0.15051255, -0.21384007, -0.15373367, 0.04145497, -0.07132615, -0.25352055, 0.02538978, -0.2478801, -0.11097675, -0.33755103, -0.04691213, 0.07508368, -0.05963779, 0.35231087, -0.25979388, -0.12548721, -0.42427787, -0.38969982, -0.11973464, 0.03433835, -0.12401191, 0.08178731, -0.212353, 0.09710696, -0.27779645, -0.04685023, -0.11876755, 0.00199457, 0.323862, 0.27804938, -0.01935326, -0.3441187, -0.18507953] -pointer:[-0.04260793, -0.06655251, 0.0683827, -0.16628, -0.1327496, -0.1192655, 0.03336288, 0.25193292, 0.12020645, -0.21788007, -0.0926288, -0.33410597, 0.19710302, -0.09973855, 0.11243664, 0.15928231, -0.0234532, 0.26252532, -0.10966486, -0.24944538, 0.28036997, 0.17110308, 0.20078544, 0.16493188, 0.290333, 0.13994451, 0.04575525, -0.06554279, 0.10987123, 0.05426969, 0.16664775, 0.02802411, 0.31233883, 0.15636835, -0.19513567, 0.06443949, -0.08091348, 0.09128414, 0.01986683, -0.07266335, 0.06737777, 0.06538786, 0.2529973, 0.20844017, -0.24561793, -0.19505124, 0.0734731, -0.31207955, -0.06948306, 0.19679287, 0.10214823, -0.08847999, -0.23900308, -0.16090985, 0.03401919, 0.11077866, -0.00749398, -0.00366133, -0.20090736, -0.18661766, 0.01663766, 0.21449998, -0.27308217, -0.05783403, 0.02704501, -0.07756831, -0.10079198, -0.18371654, -0.21206969, -0.17070684, 0.13148035, -0.24232186, 0.19117421, -0.08119162, -0.05410983] -pointerTy:[0.06106736, -0.12349674, 0.17019917, -0.08414872, -0.12162091, -0.11493171, 0.09028275, 0.12890002, 0.14708637, 0.15056878, 0.02994711, 0.16398947, -0.09669119, 0.06416745, 0.14228098, 0.1596261, -0.09310527, 0.18277259, 0.04528873, 0.18208562, -0.16108184, 0.15556088, 0.14967172, 0.14207251, -0.1702539, 0.14975922, 0.00762874, 0.11305032, 0.15105066, -0.00398245, 0.17565133, -0.02440955, -0.14144371, 0.13705797, 0.07325926, 0.10544213, 0.01701942, 0.11734937, 0.00385431, 0.03158404, -0.18258087, 0.12936145, -0.14789775, -0.06379373, -0.15407959, -0.13860792, 0.02199786, 0.14426517, 0.15864013, -0.05444241, 0.14669472, 0.01814392, 0.15084662, -0.14623053, 0.14005995, 0.02525642, -0.07524002, 0.17881763, 0.12757415, 0.1521277, -0.1638457, -0.14205529, 0.0757456, 0.16856319, 0.12415951, -0.12737201, 0.12555027, 0.15302233, -0.13898452, 0.15318881, -0.07542091, 0.0076905, -0.15670809, 0.15843765, 0.05349815] -ptrtoint:[-0.00816662, 0.19040845, 0.20297833, -0.01445115, 0.01286274, 0.1388536, -0.12834401, -0.25448227, -0.18602331, 0.11218877, 0.16607688, 0.02404105, 0.08811599, 0.11005177, -0.04818001, 0.05179739, -0.05825163, 0.15343176, 0.10150934, 0.09455664, -0.0843754, -0.1285684, 0.01307766, -0.05897991, -0.07532796, -0.18418753, -0.1115199, -0.19556019, -0.18551438, 0.2176016, -0.10437213, -0.10136399, -0.03294409, -0.10394157, 0.18672661, -0.18701841, 0.03547023, -0.19007061, 0.1333624, -0.16449562, -0.08741398, -0.0972076, -0.06125146, 0.05744944, 0.15746726, 0.07936066, 0.16241315, 0.05675254, -0.10836843, 0.01312472, -0.19523665, 0.0164252, 0.0918045, 0.09326963, -0.19768307, -0.09408253, 0.128529, 0.1384969, -0.17873324, -0.17067038, 0.16512468, -0.04128785, -0.05075456, 0.12075716, 0.22557029, 0.18317577, 0.03894774, -0.17253353, 0.11979695, -0.03928764, -0.02036279, 0.07949624, -0.05820873, -0.14405596, -0.22275722] -resume:[0.13037221, -0.16173543, 0.13458313, 0.13334186, -0.1978227, -0.1913591, -0.08266275, -0.10539632, -0.03537533, -0.07999261, -0.1888888, 0.09123345, -0.01312841, -0.04382619, 0.17804968, 0.0711588, -0.11729724, 0.0934309, -0.01422059, -0.0741116, -0.03279833, -0.19914162, -0.07376206, 0.03569537, 0.07874546, -0.13707635, 0.06425411, -0.12457802, -0.16188276, 0.14148334, 0.08412136, -0.03689551, -0.07043207, -0.20703934, -0.02252792, 0.19750863, -0.033062, 0.17924878, -0.07769594, -0.14863983, -0.05841683, 0.16428049, 0.15180947, -0.21731207, 0.14294364, -0.07557691, 0.15722235, 0.02009239, 0.09232536, 0.01271097, -0.06394573, -0.01228985, 0.18844755, 0.1295341, 0.14470226, -0.15141319, -0.14120032, -0.12438326, 0.05964512, 0.18555959, 0.13490148, 0.04603386, -0.00602201, -0.13373813, 0.15960513, -0.17103422, -0.1792076, -0.13181998, 0.08289735, -0.1511489, 0.20325269, 0.11857883, -0.11881144, -0.10513151, 0.22182767] -ret:[-0.15868923, 0.1349383, -0.17091866, 0.15446638, 0.11590775, 0.15517706, -0.2041222, -0.11587869, -0.13392796, -0.10321935, 0.15008125, 0.03055824, -0.00416798, -0.18004377, -0.13517867, 0.01493629, 0.30301064, -0.08629195, 0.33057842, 0.01448719, -0.00978797, -0.11399369, -0.08553061, -0.04123082, -0.06511337, -0.17489514, -0.37978184, -0.18547371, -0.17780186, -0.07696914, -0.13219626, -0.05637591, 0.04734724, -0.11862542, -0.03535185, -0.13939175, 0.08252498, -0.15738043, 0.18223797, -0.1627762, -0.06201587, -0.1529406, 0.0504948, -0.09689271, 0.1644328, 0.08499561, -0.01689226, 0.04760371, -0.18340605, 0.22181557, -0.13375576, 0.12520806, 0.0112763, 0.1603191, -0.1456238, -0.11290328, 0.17398314, 0.13095538, -0.00311895, -0.02351524, 0.14960586, 0.12061052, 0.18068948, -0.14880593, -0.15416823, 0.16443218, 0.01066161, -0.14379273, 0.126047, -0.00124509, -0.21231118, 0.19050261, -0.05867328, 0.00696932, 0.0025822] -sdiv:[-0.1080407, 0.1901844, -0.11603287, -0.24059227, 0.09864137, 0.13577417, -0.17973639, -0.27967322, -0.20948485, 0.00114907, 0.19843854, 0.03040717, 0.05632383, 0.12221054, -0.2112495, 0.01894132, 0.03244886, -0.13253069, -0.01357965, 0.07498644, 0.05119408, -0.06709869, -0.05151782, -0.09100531, -0.05264058, -0.20247222, -0.12862803, -0.20636694, -0.21299663, -0.10185096, -0.29176903, -0.16390459, 0.09336192, -0.09844302, 0.20892984, -0.21211214, 0.08028145, -0.2122692, -0.162864, -0.15979283, -0.03135847, -0.1484897, -0.07831246, 0.06954102, 0.15943323, 0.08275507, -0.13675603, 0.05052621, -0.17471251, 0.03110945, -0.18684193, 0.10069941, 0.01219233, 0.06511583, -0.21929686, -0.05095504, 0.16737965, 0.16719955, -0.00743731, -0.07113376, 0.1047412, 0.0452371, -0.1040564, 0.1407309, -0.14787188, 0.18525307, 0.21821006, -0.06789627, 0.15881357, -0.00230124, 0.01077223, -0.05214523, -0.05975898, 0.05244323, 0.02462071] -select:[0.17570536, 0.13175449, -0.11720598, 0.14844438, 0.09280295, 0.14566837, -0.1768578, -0.11089199, -0.12885936, -0.00730331, 0.15556662, 0.03110983, 0.03409553, 0.12267582, -0.12987325, 0.01591347, -0.28995955, -0.13713442, 0.31774223, 0.01413707, -0.0089218, -0.10580166, -0.05917821, -0.03972784, -0.04355109, -0.1133311, -0.07766423, -0.158014, -0.10279176, -0.13709833, -0.08557661, -0.47814846, 0.04511175, -0.11089844, -0.03224563, -0.11226902, 0.08064924, -0.15144405, 0.15985128, -0.15788692, -0.0312807, -0.15031807, 0.01041373, -0.09034625, 0.15847835, 0.08195098, -0.01600686, 0.04578463, -0.17644133, 0.21165982, -0.12680317, 0.33608407, 0.00331462, 0.09868409, -0.14361018, -0.10572648, 0.16693854, 0.13131157, -0.00395222, -0.01618505, 0.14390245, 0.07120807, -0.04470149, -0.14178777, -0.14743042, 0.10959363, 0.01382386, -0.07081821, 0.12153695, 0.00529651, -0.20341483, -0.05135162, -0.05888305, 0.05382327, 0.00301529] -sext:[0.14193074, 0.13331981, -0.11316784, 0.14529039, 0.10394517, 0.14700282, -0.19387709, -0.1918389, -0.12983558, -0.01084572, 0.16912027, 0.03287292, 0.0138519, 0.21869631, -0.12947397, 0.01767851, 0.28681394, -0.13507745, 0.19557841, 0.06553879, -0.00864815, -0.10663193, -0.06740876, -0.04023706, -0.04694913, -0.13625306, -0.2858375, -0.19928427, -0.1687486, -0.12430062, -0.08675309, -0.2216403, 0.0451508, -0.11176624, -0.02937848, -0.18189447, 0.2055244, -0.15293373, 0.17383349, -0.15753525, -0.03242385, -0.14866887, -0.00659716, 0.03523885, 0.15639767, 0.08121428, -0.2088679, 0.04757152, -0.17467941, 0.03303692, -0.14673805, 0.12393042, 0.01084362, 0.13507022, -0.18777242, -0.10503101, 0.16581522, 0.13111342, -0.00434989, -0.02247462, 0.14306474, 0.09170811, -0.04379092, -0.14178753, -0.14546809, 0.16244873, 0.21214104, -0.07103316, 0.12081423, 0.00103163, -0.1985043, -0.05231175, -0.05821783, 0.05281277, 0.00271138] -shl:[-0.10962299, 0.17157932, -0.11628958, -0.22798763, 0.10675383, 0.1465067, -0.19432092, -0.27347434, -0.19272803, -0.00467924, 0.16813307, 0.03174194, 0.03681118, 0.12207404, -0.16365911, 0.01676101, 0.28884143, -0.1362595, -0.01413362, 0.0640187, -0.00290764, -0.08968821, -0.06562076, -0.03855459, -0.04742669, -0.17907973, -0.24505056, -0.20147194, -0.17322421, -0.09907816, -0.1774844, -0.17232426, 0.04600691, -0.11030911, 0.19882818, -0.18334828, 0.08060682, -0.19751978, 0.15444238, -0.1564924, -0.02938661, -0.14876589, -0.02421146, -0.02221021, 0.15663463, 0.08073836, 0.28887117, 0.04870383, -0.17562103, 0.03241557, -0.18358599, 0.10095274, 0.01097513, 0.09756496, -0.20801228, -0.09545287, 0.16648073, 0.13132367, -0.00595507, -0.06696107, 0.14315507, 0.04893938, -0.09288485, 0.13636243, -0.14691542, 0.16434048, 0.01410966, -0.06945652, 0.14393893, 0.00253077, 0.01031348, -0.05477588, -0.05727636, 0.05201687, 0.00194674] -shufflevector:[0.17483364, 0.13115706, -0.18338135, 0.18253379, 0.11080077, 0.19348918, -0.196079, -0.0836405, -0.12688895, -0.15084423, 0.01821721, 0.07461558, -0.16502301, 0.05466224, -0.12936248, -0.18893263, -0.04437944, -0.14436224, -0.014762, 0.01898859, -0.0070331, -0.08453238, -0.24593197, -0.03968965, 0.157458, -0.11371791, -0.0753779, -0.16818443, -0.08551001, -0.13767277, -0.10484876, -0.0528789, 0.06492164, -0.10932673, -0.04854098, -0.02566783, 0.07854476, -0.15017813, 0.17526467, 0.17481187, 0.1716613, -0.17334035, -0.00167675, -0.09324684, -0.04767295, 0.08061834, -0.28809136, 0.04798317, -0.18400045, -0.09304745, -0.1272209, 0.09948572, 0.00988194, 0.16462424, -0.1655161, -0.10226988, 0.17478825, 0.13012879, -0.00379962, -0.02175537, 0.14237158, 0.13957314, 0.2262166, -0.15584967, -0.1981501, 0.12978207, 0.2082821, -0.06961904, 0.1198678, 0.00652868, -0.20552067, 0.11192889, -0.05652459, 0.07463548, 0.2336592] -sitofp:[-0.29108527, 0.12790772, -0.16100681, 0.17973714, 0.10925914, 0.17328022, -0.19328831, -0.1674593, -0.12717909, -0.1363776, -0.01498309, 0.074142, -0.12664206, 0.12203554, -0.12813628, -0.18627314, 0.04338283, -0.13617095, 0.12641974, 0.01076815, -0.00785737, -0.08199393, -0.24595861, -0.03890288, 0.1529076, -0.15737917, -0.17345259, 0.10036492, -0.14979506, -0.14150459, -0.1664958, -0.16057086, 0.04458313, -0.11036573, -0.0341856, -0.1373805, 0.10106766, -0.15014675, 0.17110193, 0.15770996, 0.16870552, -0.14717673, 0.05119879, 0.0494065, 0.15398785, 0.07942107, -0.13957359, 0.04591445, -0.1819675, 0.22181766, -0.14331876, 0.1173426, 0.00971132, 0.14909846, -0.17786597, -0.10786527, 0.16595513, 0.1297594, -0.00244543, -0.02122716, 0.1410589, 0.09302963, 0.05819383, -0.14059974, -0.17445703, 0.14401363, 0.20743331, -0.07091213, 0.11902855, 0.00150675, -0.00067626, -0.05047701, -0.05693055, 0.06381766, 0.13242699] -srem:[-0.09511058, -0.22333251, -0.11283466, -0.23229806, 0.09467302, 0.13198733, -0.1751315, -0.27097037, -0.20391029, 0.00244621, 0.1871059, 0.03038308, 0.05424803, 0.05416562, -0.2058974, 0.01789558, 0.03147008, -0.12857653, -0.01066092, 0.07116364, 0.04932972, -0.08006483, -0.05024991, -0.08859668, -0.0507385, -0.18871959, -0.07438382, -0.20066781, -0.19065556, -0.08647687, -0.27900684, -0.05229042, 0.09278244, -0.08365447, 0.20336972, -0.19690502, 0.07637599, -0.20699988, -0.15928416, -0.15538216, -0.03102072, -0.14554623, -0.1659274, 0.06833176, 0.15557079, 0.08088901, 0.16355434, 0.04926935, -0.17034793, 0.03091393, -0.18174136, 0.09605742, 0.01217947, 0.0618361, -0.2140307, -0.03938679, 0.16354196, 0.03456322, 0.20199138, -0.06795325, -0.09788004, 0.04382343, -0.10173707, 0.13628949, -0.14404215, 0.18634076, 0.20419657, -0.06317975, 0.15327744, -0.00050698, 0.01127682, -0.0499315, -0.05773271, 0.05096628, 0.12725323] -store:[-1.05590612e-01, 1.32598594e-01, -1.54261157e-01, 1.43107131e-01, 9.94813591e-02, 1.45947382e-01, -1.75568134e-01, -1.10561438e-01, -1.27192587e-01, -1.07404411e-01, 1.42010316e-01, 3.02091036e-02, 3.47717851e-02, 4.64678481e-02, -1.27567261e-01, 1.81444604e-02, 2.84991175e-01, -1.33111238e-01, 3.12230974e-01, 1.76632777e-02, -8.96568131e-03, -1.05656721e-01, -6.32665157e-02, -3.84085365e-02, -4.80909348e-02, -1.30426526e-01, -5.79183884e-02, -1.76741526e-01, -1.35157168e-01, -9.92313698e-02, -8.17455873e-02, -4.71966952e-01, 4.39312644e-02, -1.09371774e-01, -3.69049385e-02, -1.49084643e-01, 7.36290291e-02, -1.51506767e-01, 1.73248649e-01, -1.54650167e-01, -3.33715342e-02, -1.48017153e-01, 4.69589196e-02, -9.19863284e-02, 1.55287489e-01, 8.08470696e-02, -1.55509487e-02, 4.79109213e-02, -1.73930481e-01, 2.08546072e-01, -1.45561188e-01, 7.78940469e-02, 1.06241200e-02, 1.51971519e-01, -1.69575423e-01, -1.03343032e-01, 1.64520115e-01, 1.28797293e-01, -5.33816125e-03, -2.58404966e-02, 1.41839057e-01, 9.36184302e-02, -4.41807508e-02, -1.40177250e-01, -1.45344943e-01, 1.64973468e-01, 9.71000548e-03, -7.01929554e-02, 1.18878320e-01, 4.20484517e-04, -1.98174134e-01, 1.80982545e-01, -5.69966733e-02, 5.29081859e-02, 2.81189382e-03] -structTy:[0.0590105, -0.14963323, 0.14306381, -0.11648162, -0.13216892, -0.14146574, 0.17197067, 0.13388273, 0.14939635, 0.15379034, -0.03590541, 0.16693301, -0.11791866, 0.02428223, 0.14764172, 0.16304608, -0.07464151, 0.16513915, 0.04626357, 0.14785753, -0.16151825, 0.16201071, 0.14255643, -0.15511888, -0.16765755, 0.14808613, -0.01178089, 0.12766574, 0.15551333, -0.00747758, 0.17664994, -0.0148455, -0.13892668, 0.16061294, -0.07150439, 0.14115639, 0.01462318, 0.1346958, -0.03193542, 0.08099027, -0.16465132, 0.15260778, -0.14707021, -0.04599617, -0.14564432, -0.16116522, 0.0183207, 0.1341545, 0.17055003, -0.04925883, 0.16229935, 0.01456681, 0.15151751, -0.16201456, 0.16061835, 0.05757306, -0.07170651, -0.02158798, 0.1654083, 0.15771464, -0.17080092, 0.15839715, 0.11564606, 0.09963245, 0.12658949, -0.14364205, 0.10520593, 0.14662296, -0.1512836, 0.15457897, 0.02865676, 0.00943352, -0.16204782, 0.15784879, -0.05171135] -sub:[-0.09881721, 0.12537305, -0.13016401, 0.16653623, 0.09798183, 0.13586399, -0.17919166, -0.2497389, -0.1760078, -0.00528205, 0.15304293, 0.02892013, 0.032878, 0.11096786, -0.11947061, 0.01469286, 0.02765922, -0.12512055, -0.01445937, 0.0622199, -0.00616534, -0.09564053, -0.05882335, -0.0359677, -0.04547442, -0.15401107, -0.2463363, -0.18419084, -0.13159917, -0.11247505, -0.11382478, -0.44430435, 0.04172413, -0.10021146, -0.03118592, -0.16559172, 0.07285816, -0.18117833, 0.15983723, -0.14396775, -0.02818411, -0.13687925, -0.01262031, -0.08688642, 0.14433752, 0.0745844, -0.01509091, 0.04397901, -0.16103318, 0.02782912, -0.16809069, 0.09165896, 0.00879955, 0.08927512, -0.18684989, -0.09087317, 0.15303099, 0.12054114, -0.00405373, -0.02580445, 0.13136064, 0.08690883, -0.04755613, -0.12459586, -0.13489048, 0.15286513, 0.01279789, -0.06502793, 0.1124654, 0.00174818, -0.1845721, -0.04667281, -0.05306401, 0.04806401, 0.00305727] -switch:[0.09548028, 0.09851293, -0.09791192, 0.24275608, 0.14937389, 0.1929901, -0.26087144, -0.14658403, -0.16949812, 0.14262015, 0.14538579, 0.04097397, 0.01518083, -0.07441656, -0.17127606, -0.25440085, 0.10602551, -0.1802303, 0.06275352, 0.01162103, -0.0089239, -0.08309367, -0.08049762, -0.05111814, -0.08784451, -0.15479162, 0.3384307, 0.04873493, -0.15969352, 0.32349157, -0.40701175, 0.36144748, 0.05984428, -0.14377564, 0.26766047, -0.12602505, -0.0529832, -0.20031077, -0.13762884, 0.17910193, 0.22995204, 0.12229605, -0.1505076, -0.1946372, 0.20805524, 0.10786962, -0.26100898, 0.06331249, 0.20925248, -0.22252071, -0.16811611, -0.28236368, 0.01342723, 0.12919533, -0.03879561, -0.13644172, -0.35402858, -0.1292579, -0.00827596, -0.03130217, 0.19059454, 0.01429174, -0.0611405, -0.18895972, -0.15734144, -0.11891826, -0.24520122, -0.06282789, 0.1599826, 0.00474087, 0.01431001, 0.24733992, -0.07526454, -0.39185977, -0.3058426] -trunc:[-1.36811793e-01, 1.67938128e-01, -1.12058200e-01, 6.62409887e-02, 9.16510969e-02, 1.42627805e-01, -1.72531992e-01, -2.63230264e-01, -1.89903647e-01, -7.43066799e-03, 1.61957592e-01, 3.00346557e-02, 3.52388211e-02, 1.99403167e-01, -1.29218757e-01, 1.84870679e-02, 2.83326745e-01, -1.31465584e-01, 1.91873118e-01, 7.08255842e-02, -5.70347626e-03, -1.06859475e-01, -5.71674518e-02, -8.79198536e-02, -4.90500145e-02, -1.76253095e-01, -2.41765901e-01, -1.98071256e-01, -1.65196046e-01, -9.84440148e-02, -8.40751976e-02, -2.14823738e-01, 4.22967784e-02, -1.08100109e-01, -2.89799571e-02, -1.76890388e-01, 1.99554786e-01, -1.94301888e-01, 1.54805914e-01, -1.54455468e-01, -3.22737806e-02, -1.45465598e-01, -2.85377522e-04, 1.12740539e-01, 1.54975608e-01, 8.14621672e-02, -9.96743236e-03, 5.00754155e-02, -1.70285389e-01, 4.13373224e-02, -1.81011677e-01, 3.25282156e-01, 1.26180872e-02, 1.21963099e-01, -1.98182613e-01, -9.64406803e-02, 1.62552461e-01, 1.30482644e-01, -4.22334485e-03, -3.61689553e-02, 1.39273763e-01, 6.64202794e-02, -4.54185046e-02, 8.14628601e-02, -1.43102348e-01, 1.70172676e-01, 1.54201342e-02, -6.93341419e-02, 1.19819410e-01, -1.10864714e-02, 7.98286218e-03, -5.97647242e-02, -5.83026856e-02, 5.12241088e-02, 2.02081446e-03] -udiv:[-0.09094892, 0.19416736, -0.11578448, -0.23698431, 0.08992871, 0.00551312, 0.14702776, -0.27541465, -0.20772141, 0.00320542, 0.19159731, -0.01936948, 0.0711722, 0.04869929, -0.20913154, 0.01940354, 0.02099044, -0.10997307, -0.01390613, 0.08852389, 0.09030807, -0.08401795, 0.01092258, -0.09438308, -0.05078439, -0.2005092, -0.0585936, -0.20389175, -0.21060936, -0.09819287, -0.11091644, -0.04329691, -0.17772639, 0.09820999, -0.21181932, -0.20419192, 0.07226628, -0.21055269, -0.16154705, -0.15796861, -0.03205026, -0.11930269, -0.12319315, 0.05126907, 0.15790679, 0.08218154, 0.16767572, 0.09756813, -0.16911054, 0.01490148, -0.18465523, 0.08949899, 0.01290585, -0.01491118, -0.2165934, 0.00616188, 0.165687, 0.16949247, -0.02802533, -0.19512807, -0.10086588, -0.19205898, -0.11844035, 0.13903886, -0.14648019, 0.184539, -0.19000791, -0.06534467, 0.1752777, -0.03921586, 0.01097237, 0.0895052, -0.06099788, 0.05226254, -0.2311955] -uitofp:[-0.28474295, 0.13217203, -0.16568871, 0.18379283, 0.11226938, 0.19207269, -0.19832176, -0.08162867, -0.12924019, -0.13496576, -0.00762922, 0.07567707, -0.15030566, 0.12156913, -0.1307342, -0.19167385, 0.11801702, -0.14493088, 0.10906817, 0.01311873, -0.01061422, -0.09030879, -0.251764, -0.03967099, 0.1586867, -0.14576115, -0.12991518, 0.10370931, -0.1244427, -0.14580499, -0.06180171, -0.14415021, 0.04207605, -0.11499359, -0.03921367, -0.12659079, 0.07339595, -0.15185502, 0.1766244, 0.17538792, 0.17453255, -0.1522221, 0.05713944, 0.0651423, 0.15804505, 0.08223064, -0.19757104, 0.04586276, -0.18602233, 0.03112394, -0.12740982, 0.10457055, 0.00761122, 0.1563707, -0.14385206, -0.10981123, 0.17529841, 0.1344809, -0.0042707, -0.01513807, 0.14462957, 0.09708796, 0.1768233, -0.15789527, -0.19911379, 0.08259769, 0.04403876, -0.07122029, 0.12193058, 0.00843644, -0.20593181, -0.04928745, -0.05748281, 0.06752896, -0.33122623] -unreachable:[0.13830788, -0.1384795, 0.12985048, -0.01590925, -0.17242672, -0.16921625, -0.08732756, 0.06238424, -0.19026113, -0.0158169, 0.16435188, 0.02325607, -0.00133849, -0.12819748, -0.15801033, 0.06894314, -0.11699118, -0.03206338, -0.04867816, 0.08262745, -0.02899568, -0.17304559, 0.00456284, -0.1043093, -0.06316522, -0.19096501, 0.10812564, -0.17962073, -0.20548488, 0.1455722, 0.06589094, 0.03311252, -0.07200453, -0.18936579, 0.12057041, -0.19025533, -0.12212797, 0.1456004, -0.14757317, -0.15557618, -0.05640632, 0.14078732, 0.14334233, -0.16418514, 0.14397267, 0.0625571, 0.15891595, 0.07323151, -0.10111858, -0.14292835, 0.01567381, -0.10903962, 0.17538103, 0.08803182, -0.00309126, -0.14454287, 0.0691599, -0.11123948, 0.05696773, 0.09039135, 0.09839866, -0.05023813, -0.03404732, 0.02872319, 0.17865536, 0.13223949, -0.17297149, -0.16898467, 0.14986424, -0.10918473, 0.1600209, 0.15127546, 0.16981383, -0.1279901, 0.14220221] -urem:[-0.11265117, 0.20686236, -0.12146873, -0.23542368, 0.09378337, 0.02999638, 0.14878128, -0.28188494, -0.20065261, 0.00433275, 0.16977304, -0.01879602, 0.22663146, 0.0617098, -0.1831158, 0.01779491, 0.03017136, -0.08971473, 0.07763614, 0.08042387, 0.09445225, -0.08793671, 0.0159521, -0.07481197, -0.05264295, -0.18723217, -0.08170687, -0.21142115, -0.1702957, -0.0912115, -0.15084253, -0.06110323, -0.1994154, 0.10485501, 0.02635208, -0.17529666, 0.08368196, -0.20547396, -0.13216047, -0.1626017, -0.03278501, -0.12043266, -0.13597806, 0.11791392, 0.16410512, 0.085006, 0.17119788, 0.20151798, 0.22284089, 0.03112911, -0.19075638, 0.10404129, 0.01210428, -0.01493562, -0.21803944, -0.00028815, 0.17211886, 0.1743311, -0.02144206, -0.18241248, 0.09792571, -0.04942631, -0.12507392, 0.14260796, -0.1524944, 0.19653419, -0.20759608, 0.22784927, 0.18324168, -0.03458956, 0.00935992, -0.05326611, -0.07238707, 0.04781368, -0.2394482] -variable:[-0.04416586, -0.06529783, 0.06804077, -0.17281267, 0.21564505, -0.10317826, -0.04053801, -0.28083235, 0.11455013, -0.25391814, -0.09901162, -0.32934445, 0.22513658, -0.10261232, 0.10434292, -0.19085433, -0.02302103, 0.27024737, -0.11197262, -0.2376181, 0.28228357, 0.15263258, 0.12693042, 0.16975136, 0.29924616, 0.13014257, 0.02674635, -0.10427801, 0.1129915, 0.02840486, 0.17082089, 0.02872703, 0.3129407, 0.14322756, -0.20241754, 0.06491784, -0.08436896, 0.03400991, 0.07390775, -0.07466827, 0.3478845, 0.01303683, 0.26052088, 0.21157041, -0.25165147, -0.18953912, 0.07487449, -0.32147086, -0.072584, 0.20075838, 0.10203002, -0.06976248, -0.22996348, -0.15062493, -0.08361167, 0.1157522, 0.02569508, 0.0058547, -0.1650832, -0.1911111, 0.01633538, -0.13533501, -0.27804825, -0.05999075, 0.02358659, -0.07764025, -0.07134418, 0.14262564, -0.20307393, 0.17827222, 0.13546483, -0.24436948, 0.16881269, -0.08427223, -0.05620972] -vectorTy:[0.06019246, -0.08325528, 0.06796158, -0.1322501, -0.05250492, -0.05546387, 0.00084803, -0.13031249, 0.10292219, 0.16610621, -0.10459585, 0.21548297, -0.26862848, 0.08505963, 0.07657417, 0.16639674, 0.06083921, -0.00245328, 0.01956977, 0.21975385, -0.16639455, 0.14512713, -0.15006405, -0.2066719, -0.18236274, 0.12637317, -0.09601986, 0.17929196, 0.15004157, -0.2437613, 0.11610509, -0.12576523, -0.13349846, 0.00924278, 0.05477205, 0.11079396, 0.0149577, 0.08251344, 0.02648669, 0.28141958, -0.16844293, 0.02850299, -0.1849258, -0.00724132, -0.19553263, 0.16303328, -0.09641571, -0.08541372, -0.01167152, -0.0498387, 0.13118263, 0.03702982, 0.16826656, -0.12130306, 0.05498985, 0.07180171, 0.01047648, 0.19805974, 0.1132893, 0.12827364, -0.15292895, -0.0969883, 0.15015276, 0.25131726, 0.03910673, -0.12237693, 0.12764196, 0.14949943, -0.11722989, -0.142063, 0.07540323, 0.00866951, -0.16423495, 0.1803801, 0.08819818] -voidTy:[0.02707169, -0.1911424, 0.18000233, -0.10855684, -0.15720911, -0.16028677, 0.08442728, 0.14063193, 0.14310814, 0.15267418, 0.03571516, 0.17472863, -0.1096759, -0.04809512, 0.15041178, 0.1852203, -0.08891776, 0.06437854, 0.07771051, 0.17514206, -0.18457355, 0.17228611, 0.14382029, 0.17567936, -0.19985509, 0.14512071, 0.00597054, -0.0005212, 0.16043086, 0.01015274, 0.1932167, 0.10049, -0.18615878, -0.14139535, -0.07989334, 0.13810824, 0.00811669, 0.16482183, -0.0484471, 0.05603446, -0.19822212, 0.21622814, -0.13391475, -0.07386104, -0.01220543, -0.17700416, 0.02550385, -0.04609942, 0.19161303, -0.08407282, 0.17597687, 0.01678882, 0.17494556, -0.15565564, 0.18086468, 0.01991182, -0.07939529, -0.04929006, 0.17783763, 0.18024826, -0.14163949, 0.18041377, 0.11955009, 0.00620418, 0.1386835, -0.18642457, 0.09366929, 0.16274834, -0.12151442, -0.19673795, 0.0550727, 0.10491449, 0.14478931, -0.02286906, 0.05187593] -xor:[-0.14333177, 0.17120288, -0.11569388, -0.22889645, 0.0944928, 0.13705893, -0.1748709, -0.27198055, -0.20403583, -0.00204914, 0.16587155, 0.03005969, 0.03635887, 0.12084309, -0.17170708, 0.01672503, 0.2855867, -0.13425359, 0.2921407, 0.0620962, 0.00266978, -0.0903588, -0.06116274, -0.08814006, -0.04630399, -0.18787035, -0.1754261, -0.20075771, -0.18573092, -0.11999942, -0.14531347, -0.171928, 0.04110451, -0.10397294, -0.03485578, -0.17938605, 0.08046042, -0.19675075, -0.14346175, -0.15566549, -0.0307311, -0.14872791, -0.03878547, -0.00254308, 0.1565295, 0.08097854, 0.16432391, 0.04949491, -0.17471117, 0.2079512, -0.17290911, 0.10197662, 0.01110592, 0.09702181, -0.21049088, -0.05485036, 0.16571115, 0.13224575, -0.00631514, -0.0666507, 0.10324501, 0.04556064, -0.0946413, 0.1366175, -0.14613271, 0.1439316, 0.01403525, -0.06756077, 0.15449193, 0.01570368, 0.00935933, -0.07182793, -0.05895546, 0.05251422, 0.00088228] -zext:[0.14294301, 0.16004492, -0.133936, 0.17041178, 0.10354671, 0.14033805, -0.18445012, -0.25389433, -0.18157399, -0.06085023, 0.15627292, 0.05945444, 0.0152561, 0.11567469, -0.12275951, 0.01612445, 0.2721165, -0.12822908, 0.29646817, 0.06210494, -0.00723742, -0.1003171, -0.06575806, -0.05716129, -0.04435528, -0.16020222, -0.23530036, -0.18981609, -0.14945146, -0.11926567, -0.08064298, -0.2043876, 0.04202923, -0.10597136, -0.03096929, -0.17040831, 0.0771085, -0.18618186, 0.16527407, -0.14749476, -0.02966438, -0.14139591, 0.0018809, -0.02142575, 0.14795087, 0.07683742, -0.01349613, 0.04579562, -0.17163049, 0.02995836, -0.17292565, 0.11137506, 0.01039091, 0.13139422, -0.19006667, -0.09951284, 0.15722732, 0.12452687, -0.00450555, -0.02189622, 0.13461596, 0.06696767, -0.04037055, -0.13414587, -0.1399019, 0.1544194, 0.01091198, -0.0665535, 0.11422376, 0.00154535, -0.13661395, -0.04903502, -0.05472786, 0.05032588, 0.00220357] +add:[-0.09226847, 0.15125966, -0.13294142, -0.20676646, 0.04923468, -0.10948785, -0.0068655, 0.11290075, -0.10103161, -0.0165078, -0.05958663, 0.1441574, -0.17540787, 0.00905966, -0.15748021, 0.2284992, 0.07411892, 0.13629647, 0.06011836, -0.08209579, -0.11914685, 0.0280709, 0.02832137, 0.17908259, 0.22440965, 0.259809, -0.06413112, -0.26318136, 0.08651663, 0.05631861, -0.18000501, 0.15292233, 0.04976793, 0.0536436, 0.13691261, -0.06600922, 0.03558503, 0.05165604, -0.11549862, -0.11321225, -0.19012861, 0.13797747, 0.20656265, 0.18992025, -0.14775439, -0.03572332, 0.1128633, 0.1950512, -0.04059759, 0.04845148, -0.1482847, -0.07111435, 0.17439039, -0.08632617, -0.16985829, 0.01249307, 0.02192383, 0.27359787, 0.04276892, -0.17452767, 0.10531174, 0.17477758, -0.04698553, -0.11718433, -0.10919913, -0.05134534, 0.04224272, 0.0342928, 0.1796377, -0.07124811, 0.00049062, 0.04035163, 0.05658809, 0.03933584, 0.04894526] +alloca:[1.18855581e-01, -3.89328226e-02, -1.94196552e-01, -3.61200236e-02, 2.04913691e-01, -1.26220390e-01, 1.00312449e-01, -9.42202434e-02, -1.23587109e-01, -1.54318875e-02, -1.54855102e-01, 1.72253743e-01, -2.17184439e-01, 8.31744000e-02, -1.09763645e-01, 1.38438866e-01, 1.41595513e-01, 3.56260836e-02, 4.14084755e-02, -2.19739601e-01, 9.78234932e-02, 5.04689589e-02, 4.95745279e-02, 1.96516320e-01, 2.62553543e-01, -1.47274688e-01, 3.55098918e-02, 3.49008702e-02, 2.64043093e-01, -1.17063813e-01, -2.06321165e-01, -1.23798912e-02, 1.26712531e-01, 6.31344840e-02, -1.83707342e-01, -3.46496254e-01, 6.20910116e-02, 6.33926019e-02, 4.76331674e-02, 1.55070499e-01, -2.24008471e-01, 1.23794243e-01, 1.57163799e-01, 2.36943841e-01, -1.85923025e-01, 1.73831031e-01, -2.12988332e-01, 1.56556457e-01, -7.38566071e-02, 2.54984379e-01, 2.06310317e-01, -7.93016627e-02, 2.12124661e-01, 3.63892652e-02, -2.05123588e-01, 9.21223219e-03, 1.71243891e-01, -4.95716035e-02, 4.95939441e-02, -1.94593310e-01, -1.60183296e-01, -1.16758257e-01, 7.73453992e-03, -1.49453521e-01, 1.98677406e-01, -7.21585080e-02, -1.60203930e-02, -1.72221512e-01, 2.30181530e-01, 5.78167476e-02, -1.38900839e-04, 2.17575021e-02, -1.59599394e-01, 1.31887095e-02, 1.06889062e-01] +and:[-0.11349563, 0.15388122, -0.13433227, -0.19881092, 0.05190393, -0.12105679, 0.01138351, 0.11944963, -0.09911745, -0.02067114, -0.06154192, 0.14966486, -0.178811, 0.01141085, -0.1529166, 0.11743718, 0.07556341, 0.14244841, 0.05128298, -0.09258156, -0.12260778, 0.02731835, 0.04698222, 0.18104394, 0.22422865, -0.05642309, -0.070392, -0.25598577, 0.09059877, 0.06693283, 0.05245325, 0.1598527, 0.04736241, 0.05498298, 0.13948277, -0.06968977, 0.0391961, 0.05228699, -0.12056538, -0.11382939, -0.19050786, 0.14301476, 0.3077587, 0.19215682, -0.15602873, -0.03547745, 0.11534373, 0.19629963, -0.03727361, 0.04910332, -0.15303205, -0.06964394, -0.05297059, -0.08823062, -0.17770074, 0.00872566, 0.02400573, 0.27204797, 0.03968339, -0.18187696, 0.11898391, 0.38309893, -0.04581496, -0.1242491, -0.10809507, -0.05139413, 0.04214625, 0.03426936, 0.18671155, -0.07132821, 0.00778714, 0.03936392, 0.05717754, 0.03521097, 0.05448974] +ashr:[-0.07930324, 0.15941435, -0.13514331, -0.27293956, 0.03462965, -0.10821332, -0.02055053, 0.09943318, -0.1036774, -0.02570017, -0.09268819, 0.13524929, -0.20466335, 0.08069654, -0.17741424, -0.06206233, -0.0256988, 0.18555306, 0.03992474, 0.2669134, 0.0236036, -0.11345835, -0.02006176, 0.13077252, 0.21500641, -0.05182869, -0.19080208, -0.07973492, 0.08849213, -0.06986547, 0.03671584, 0.07397895, 0.07096109, 0.07046983, 0.14897823, -0.16493577, 0.05120055, 0.04758648, -0.11079577, -0.14378875, -0.18896353, 0.16299061, 0.10584806, 0.21997187, -0.14238366, -0.05375843, 0.09774764, -0.11478709, -0.05187486, 0.04168386, -0.18631029, -0.10766587, -0.27260458, -0.11252486, 0.02769651, 0.15694663, -0.07513881, 0.08705645, 0.03409195, -0.16314954, -0.15079369, 0.10173875, -0.03495449, -0.10704746, -0.10184862, -0.05807001, 0.03663762, 0.04727783, 0.18753031, -0.05647518, 0.04323597, 0.04489552, 0.02954316, -0.00127809, 0.05898013] +atomicrmw:[0.11494604, 0.23395595, -0.02333697, -0.06582664, 0.03365234, -0.10071705, 0.2599188, 0.14150837, -0.02039259, -0.02640906, -0.08215658, -0.05718844, -0.18029292, 0.00582361, -0.12541924, 0.19178674, 0.09266941, 0.10635783, 0.16385621, -0.02105573, -0.13102174, 0.2811406, -0.23014404, 0.28069568, -0.01947013, 0.07872311, 0.15919574, -0.06063201, -0.19319133, 0.13537623, 0.07447615, 0.2668276, -0.10109195, 0.02752811, 0.22304888, -0.07381391, 0.02339443, -0.04810279, -0.15402506, 0.10358555, 0.03797969, 0.11451613, -0.0585752, -0.01589024, -0.11412632, 0.20187333, -0.11398935, 0.23283046, -0.09538554, -0.09562144, 0.12449027, -0.02557278, -0.01903142, 0.05323355, -0.22661279, -0.20582086, -0.09917215, -0.0691619, 0.06426011, -0.21965678, -0.11625069, 0.17230146, -0.19669244, 0.20218274, 0.06168146, -0.03922909, -0.21703891, 0.01130336, 0.19969149, 0.0397533, -0.02912519, 0.1325366, 0.04277714, 0.08776253, -0.00747575] +bitcast:[0.08383701, 0.14653057, -0.1428157, 0.04539916, -0.10678733, -0.18486774, 0.2750552, 0.11546366, -0.07725725, -0.0156537, -0.0423786, 0.1504245, 0.0149316, 0.00668556, -0.12500696, 0.15009293, 0.03904219, 0.1358139, -0.18104811, -0.02364185, -0.17568518, 0.26013446, 0.0350101, 0.2462418, 0.00953937, 0.06004437, -0.09149528, -0.06592511, 0.09774999, 0.14299823, -0.17790417, 0.29044065, 0.03143733, 0.08219148, 0.1440148, -0.05293121, 0.01279637, 0.05255678, -0.11205882, -0.09241805, -0.1290063, 0.1873361, -0.06930552, 0.19943874, -0.14479662, -0.03749521, 0.07691723, -0.07488944, -0.04917015, -0.10374431, 0.08621758, -0.07360297, -0.0463197, -0.0714035, -0.18118252, 0.00266881, -0.20716321, -0.11629696, 0.03368693, 0.09729633, -0.10709317, 0.18579638, 0.15059969, -0.12261904, -0.10500432, -0.04017282, 0.06499103, 0.04818302, 0.13256957, -0.16777582, 0.02964339, 0.01966166, 0.04609156, 0.02556011, 0.02376046] +br:[-0.18066913, 0.15305206, -0.1446502, 0.26520842, -0.10927686, -0.12196652, 0.24019513, 0.11124383, -0.08609068, -0.02356525, -0.05097887, 0.14667648, -0.19284078, 0.01917799, -0.06656485, 0.12049287, 0.05589096, 0.15731406, 0.13366807, -0.03205893, -0.15664886, -0.12532003, 0.01217582, 0.1531905, 0.01102285, -0.06690694, -0.01322227, 0.10176691, -0.07853225, 0.11552668, 0.14163221, 0.15690699, 0.0414167, 0.06324951, 0.02882571, -0.26624727, 0.03584276, 0.04684597, -0.10829604, 0.04570472, -0.14798053, 0.14357443, 0.22131611, 0.19503237, -0.16116083, 0.17783917, 0.11405902, 0.16712905, -0.05550294, 0.25707218, 0.09446891, -0.0757626, -0.24274205, -0.10156222, -0.18097976, -0.19846821, 0.0483626, -0.36983398, 0.04028702, -0.1586773, 0.12742089, -0.10613734, -0.10901561, -0.10725214, -0.10122246, -0.05648681, 0.00284378, 0.0501002, 0.14707486, -0.06288729, 0.01890643, 0.08425618, -0.09535466, 0.02514943, 0.06243763] +call:[-0.19717644, 0.12622648, -0.15807435, 0.1454165, -0.12835354, -0.12143495, -0.13334283, -0.08281007, -0.0684526, -0.01128228, -0.07333044, 0.17266083, -0.03552289, 0.01501852, -0.19280592, 0.05810411, 0.00160274, 0.15296558, -0.24576592, 0.16887079, -0.17225291, 0.01597055, -0.16839172, 0.17319603, 0.02397274, -0.0955271, 0.00929426, -0.36251608, -0.11702069, 0.11998024, -0.1870907, 0.04482993, 0.16743478, 0.07192282, 0.06351361, 0.22607134, 0.05618253, 0.06473362, -0.16164483, -0.14664277, -0.21827005, 0.13502121, -0.36720452, 0.13695459, -0.13853945, 0.20408642, -0.18654191, 0.20107797, -0.06737102, 0.10268719, 0.13228269, -0.08588035, -0.06602301, -0.1469216, -0.20875604, 0.25470948, -0.1200052, 0.33424294, 0.04470507, -0.18875074, 0.1108698, -0.19651341, -0.03379259, -0.14055023, 0.20061916, -0.06712557, -0.21382582, 0.05378571, 0.23621333, -0.09723581, -0.01115729, 0.09694345, 0.22128345, 0.07328582, 0.04034882] +cmpxchg:[0.12757984, 0.2458363, -0.01834744, -0.06156967, -0.0900517, -0.09284855, 0.2332462, 0.134498, -0.01014405, -0.02901292, -0.09111625, 0.05694036, -0.20108429, 0.09755725, 0.00686136, 0.03473542, 0.02512054, -0.12307884, 0.12347603, 0.10803552, 0.17533337, 0.2834975, 0.04287224, -0.04893664, -0.14026456, 0.12290119, -0.0333569, -0.07536059, 0.2503936, 0.12260228, 0.07054315, 0.25542498, 0.09371328, -0.01427729, 0.2276569, 0.08759204, 0.08520691, -0.06085894, -0.16605827, 0.0880937, 0.12536818, 0.11854483, -0.09944069, -0.02903962, -0.12250321, 0.19187951, 0.12193416, 0.1818273, -0.11715733, -0.08389001, 0.12864085, 0.0119792, 0.01123442, -0.08985353, -0.19238052, -0.19657889, 0.16897362, -0.04654022, -0.22383784, -0.21464251, 0.03651294, 0.06736086, -0.08847472, 0.19431435, 0.17966662, 0.01246504, -0.2136911, -0.05856933, 0.22285102, 0.07094758, 0.08972821, 0.09838235, 0.19555996, 0.09322407, -0.05612246] +constant:[4.72749472e-01, 1.48194745e-01, 1.11641765e-01, 4.82692719e-02, 4.41628277e-01, 1.13829240e-01, -4.57335487e-02, 4.11828816e-01, -4.33595628e-01, 3.09552252e-01, 4.71248589e-02, 1.23697072e-02, -9.79807079e-02, -3.06573033e-01, -6.38067350e-02, -1.24089271e-01, 3.53058130e-01, -5.31104326e-01, -1.28169432e-01, 7.65371174e-02, 4.48110104e-01, 1.89548329e-01, -3.66268724e-01, 6.55879602e-02, 1.84071571e-01, 1.58517752e-02, 4.05817449e-01, 1.95887178e-01, -2.37624481e-01, 4.78531390e-01, -2.16427110e-02, -2.37476930e-01, 3.20676237e-01, -1.29844964e-01, -1.61412284e-01, 1.62395090e-01, 3.79630864e-01, 3.97990793e-01, -6.89142644e-02, -7.58090988e-02, -3.36277968e-04, -1.07623935e-01, -2.68479288e-01, 1.92890298e-02, 1.25685811e-01, 7.71670938e-02, -5.84496483e-02, 3.22591253e-02, 2.41275296e-01, -2.00825892e-02, -7.68316537e-02, 1.07424997e-01, -2.46208489e-01, -4.55161810e-01, 2.09286779e-01, 1.86072007e-01, -1.35230478e-02, 2.34057367e-01, -1.74012855e-01, 3.75306070e-01, 5.39520802e-03, -7.43765980e-02, 1.04338944e-01, 1.09047763e-01, 4.72892709e-02, -4.22554672e-01, -1.31045476e-01, 3.68870020e-01, 7.34035820e-02, -7.98334274e-03, -3.03920746e-01, -1.93008333e-01, 1.61693305e-01, 3.51695865e-01, 3.09996814e-01] +extractelement:[-0.1056306, 0.13637413, -0.16741425, -0.21409886, 0.16818717, -0.19753715, -0.10216974, -0.07915679, -0.11219222, -0.0036858, -0.05495644, 0.1600006, -0.2241225, 0.02270724, -0.11438614, 0.14435096, -0.04027895, 0.1985412, 0.0465661, 0.13115579, -0.18769684, -0.11049763, 0.05826474, 0.17212492, 0.23627178, 0.08451036, -0.09340198, -0.25291005, 0.08986481, -0.08069268, 0.05228764, -0.02181751, 0.08428247, 0.05898284, 0.05239776, -0.30541602, 0.05095091, 0.0594219, 0.0320219, -0.15287933, -0.20972094, 0.10459346, -0.1026767, 0.19961861, -0.17988442, -0.06371235, -0.1857577, 0.16873042, -0.02096641, 0.2480851, -0.13658507, -0.07181868, -0.05484147, -0.13290742, 0.03470469, 0.01713907, 0.01036886, -0.13153818, 0.04620079, 0.10717691, 0.10743141, 0.18590273, 0.1662169, -0.12332886, -0.12208515, -0.06296309, 0.04271952, 0.0430361, 0.15195616, -0.19989258, 0.00172858, 0.03411611, 0.1490697, -0.03111784, 0.0699145] +extractvalue:[-0.19557916, 0.14316322, -0.13312094, -0.01760706, -0.13382943, -0.12475744, -0.1532779, 0.13430688, -0.07958924, -0.0374059, 0.00451955, 0.14833046, -0.07857408, 0.01320206, -0.08330178, 0.1111073, -0.02091784, 0.18264912, -0.20070295, -0.20969376, -0.13361825, -0.12152787, 0.05043396, 0.11952859, 0.01541768, -0.12715596, -0.21857652, -0.0487936, -0.1859981, 0.12064518, -0.17158923, 0.26792797, 0.11401704, 0.09650899, 0.10899272, 0.35996738, 0.00620253, 0.03201106, -0.13521919, -0.1389531, -0.13843594, 0.23923784, 0.20997173, 0.05507929, -0.09996966, -0.03208064, 0.40470096, -0.08695336, -0.05855197, -0.12264409, -0.20811838, -0.12778917, 0.10817845, -0.11528131, -0.03739256, 0.18607898, -0.20355558, -0.08390498, 0.04221002, -0.18326798, -0.10408083, 0.11097213, -0.04908501, -0.0966808, -0.11169371, -0.0308799, 0.05885854, 0.05600378, 0.14184882, 0.04647773, 0.03364285, 0.10600228, -0.10948382, 0.04228939, 0.02561448] +fadd:[-0.17153674, 0.07580437, -0.18450908, -0.02367458, 0.03768895, -0.19304666, 0.064489, 0.11564367, -0.12062237, -0.03377279, 0.18595688, 0.14704344, 0.10474586, 0.01212602, -0.2384057, 0.12008301, 0.08519544, 0.1722929, -0.1699751, -0.00505293, -0.18350092, -0.15698445, 0.06258859, 0.26790482, 0.01599127, -0.12173083, 0.11577278, -0.05815688, -0.21512122, 0.15683667, 0.12245244, 0.06299919, 0.14914805, 0.06992521, 0.2835893, -0.0539335, 0.02606986, 0.05953715, -0.12838939, -0.10673054, -0.17981705, 0.23994273, 0.19506548, 0.23140986, -0.16691981, -0.07235906, 0.1040448, -0.1083846, -0.04653168, 0.02851211, -0.0990642, -0.07379948, -0.04978012, -0.12924635, -0.21231592, 0.00166771, -0.10354967, 0.00400196, 0.05527994, 0.1030421, 0.1283796, 0.06465825, 0.15050714, -0.13849898, -0.11317272, -0.05924603, 0.08647003, 0.04882906, 0.1631427, -0.201991, -0.01636233, -0.01537631, -0.14417517, 0.02902796, 0.06560948] +fcmp:[0.07606123, 0.02276269, -0.16852944, 0.22519708, 0.01367419, -0.18461396, -0.0302335, -0.04360458, -0.1139752, -0.10070425, -0.03982948, 0.15632786, 0.08463322, 0.01245369, -0.23529181, 0.05302278, 0.06934603, 0.14257322, -0.18707445, -0.27290285, -0.1682716, -0.10963459, 0.12017678, 0.20293301, 0.15191194, 0.07722141, -0.09447803, -0.10032279, 0.09594039, 0.12277827, 0.11888262, 0.08950471, 0.13444144, 0.09028395, -0.2201222, -0.04832786, 0.00205311, 0.05506429, 0.14064522, -0.1033441, -0.15578924, 0.21356156, -0.0627977, 0.1851938, -0.1941505, -0.07287381, 0.11304773, 0.12960687, -0.03018892, 0.00033831, 0.06253489, -0.06986611, 0.0215436, -0.13862538, -0.13700399, 0.0070872, -0.07886577, -0.00703586, 0.04916636, 0.09067454, 0.12693039, 0.17653817, 0.17051344, -0.13503504, -0.11477737, -0.05059408, 0.08220564, 0.04447178, 0.12341841, -0.18246037, 0.00391554, 0.01368048, 0.31107187, 0.00957761, 0.05361329] +fdiv:[-0.17763573, 0.07309272, -0.19040169, 0.07097059, 0.03514552, -0.1953292, 0.09520616, 0.17193091, -0.11334595, -0.01301495, -0.06511573, 0.15030421, 0.10858468, 0.01036635, -0.13097358, 0.18823601, 0.07324911, 0.17668241, -0.20551598, -0.16959393, -0.18503009, -0.15035859, 0.20057295, 0.20202968, 0.00994174, -0.06232603, 0.06668825, -0.05147364, -0.31606656, 0.07028868, 0.00516363, 0.0751708, -0.24474931, 0.05286335, -0.07185736, 0.25098148, 0.04204176, 0.06298565, -0.12069659, -0.11679743, -0.18051115, 0.24562044, 0.11637552, 0.21157263, -0.19725917, -0.03310544, 0.104313, -0.04298911, -0.01643089, 0.04715292, -0.13636965, -0.07355083, -0.0501419, -0.12025541, -0.19678721, 0.00944851, 0.15023313, 0.03794691, 0.04151805, 0.10923279, -0.06775325, 0.06487099, 0.15592316, -0.1508878, -0.103574, -0.0535129, 0.09220055, 0.04846648, 0.11179326, -0.18981014, -0.02485409, -0.08304262, -0.10076118, 0.04801485, 0.06261544] +fence:[-0.1904529, 0.08759129, 0.18031983, -0.06785244, 0.08319698, -0.00288439, 0.05520177, -0.07564197, -0.05587118, -0.01837703, -0.04438169, 0.1185879, -0.16894777, -0.05249271, -0.10837808, 0.19477189, 0.04394192, 0.10882807, 0.17617813, -0.2532157, 0.15572937, 0.13845669, -0.06514692, -0.02379414, -0.06965374, 0.10306346, 0.19377343, -0.02874405, -0.05017876, 0.10612155, 0.11845708, 0.08066263, 0.0781197, -0.18749273, 0.10603137, -0.05870881, -0.10053992, -0.13878852, -0.13738409, 0.09950177, -0.00213844, 0.11697304, 0.04892316, -0.03797291, -0.11252423, 0.19456536, -0.01087503, 0.23642096, -0.19449721, 0.2387346, 0.1257504, 0.19456325, 0.07471533, 0.19798082, -0.17539889, -0.20664825, -0.10228548, -0.07557914, 0.09055158, -0.1734112, 0.12894803, 0.0352653, -0.1918439, 0.20476027, 0.17360027, -0.01289704, -0.21545917, -0.11663342, -0.17372684, 0.15701748, -0.06969631, 0.15860063, 0.06559713, 0.16732858, -0.05731736] +floatTy:[-0.07350491, -0.11680284, -0.01926272, -0.07495476, -0.17140882, 0.0138638, 0.17267533, -0.19771329, 0.12208015, 0.11901549, -0.11914849, -0.10826624, 0.2563966, -0.12387758, 0.10305085, -0.04297696, -0.14117129, 0.00320742, -0.09174882, 0.05395375, -0.05747689, -0.2144738, -0.08236077, -0.15023468, -0.17255647, 0.02667941, -0.00137857, 0.0249626, -0.10337954, -0.13277319, -0.03186056, 0.02346992, -0.03572765, -0.09494715, -0.05538685, -0.04068785, -0.16414985, -0.10450252, 0.07982559, 0.02220452, 0.10103352, -0.13016528, -0.05872156, -0.14628571, 0.12792115, -0.18677625, -0.06692088, -0.24388078, 0.1645614, -0.16166784, -0.09332854, -0.15481119, 0.01255698, 0.13867407, -0.0623369, 0.13457522, -0.15551136, -0.10518958, -0.04533606, 0.21575262, -0.02216931, 0.04007071, 0.23379318, 0.14017807, 0.10867114, 0.15882117, 0.24578089, -0.11136219, -0.13991868, -0.03945466, -0.17772467, -0.16700383, -0.16638602, -0.19568586, -0.14187162] +fmul:[-0.18090893, 0.0657922, -0.17686762, -0.10724793, 0.02744417, -0.19267806, 0.06731214, 0.16849075, -0.11086459, -0.02613373, -0.06512409, 0.14158869, 0.10488072, 0.00507775, -0.21030477, 0.10839274, 0.09492837, 0.17222406, -0.18876845, -0.0295506, -0.18446396, -0.24057734, 0.13001253, 0.25305867, 0.03556137, 0.02799782, -0.04856464, -0.06384787, -0.324862, 0.15845948, 0.03321122, 0.07730442, 0.13827994, 0.07237677, 0.12637587, -0.01963539, 0.01715304, 0.06249408, -0.11569066, -0.10418914, -0.17897172, 0.23293415, -0.00221722, 0.22260308, -0.17537469, -0.06146367, 0.11167818, -0.09998927, -0.01955939, 0.01474542, -0.13132527, -0.07036548, -0.05514928, -0.10193402, -0.1950871, 0.00086164, -0.14813763, -0.01329973, 0.04435847, 0.1054095, 0.01333025, 0.0887832, 0.17384169, -0.13873126, -0.10546471, -0.05369536, 0.08741014, 0.05420766, 0.14143194, -0.20836458, -0.01751493, 0.00169319, -0.09900413, 0.01747746, 0.06592384] +fneg:[-2.09938288e-01, 4.23174948e-02, -2.09981963e-01, -9.53705832e-02, 3.42034139e-02, -2.21325040e-01, 1.95680961e-01, -1.69828162e-01, -1.35216698e-01, -8.11442658e-02, 4.92434986e-02, 1.73844621e-01, 1.17823966e-01, 1.76307298e-02, -2.94742942e-01, 6.71416372e-02, 8.87839720e-02, 1.23810872e-01, -2.27173492e-01, -3.13185528e-02, -2.09746808e-01, -2.73426980e-01, 1.36174694e-01, 1.45918533e-01, 7.44389230e-03, 7.55327791e-02, 5.49614653e-02, -3.48391309e-02, -2.43215352e-01, 3.39347906e-02, 1.10526413e-01, -2.08153546e-01, 2.24379674e-01, 1.07939348e-01, 9.17364433e-02, -5.11631444e-02, 5.32060601e-02, 7.10529685e-02, -6.63324296e-02, -1.05773486e-01, -1.62837356e-01, 1.70079753e-01, 8.47334191e-02, 2.72411972e-01, -1.88633636e-01, -8.57689306e-02, 9.72472206e-02, -1.35092869e-01, -2.46544890e-02, 1.32096801e-02, -2.25358725e-01, -9.24348310e-02, -5.45363687e-02, -1.56246662e-01, -2.05360666e-01, 2.66382762e-04, -1.54410064e-01, -8.48942026e-02, -2.93852352e-02, 1.20324336e-01, 1.28113061e-01, -7.47667775e-02, 2.28228807e-01, -1.66849047e-01, -1.04744308e-01, -7.03447312e-02, 9.93978456e-02, 6.26010746e-02, -1.16928197e-01, -3.13289165e-01, 6.05447143e-02, -8.76199454e-02, 2.48245336e-02, 4.22688499e-02, 8.70449468e-02] +fpext:[-0.17600405, 0.08047868, -0.1923008, -0.09891184, 0.0185958, -0.18838866, -0.166891, -0.12195985, -0.11438627, -0.13168654, -0.03590561, 0.15121347, 0.08537649, 0.02153496, -0.20457104, 0.19596528, 0.06878025, 0.17258108, -0.20933513, -0.22496644, -0.17779073, -0.24951361, 0.20196585, -0.15386327, 0.0135645, 0.07112271, -0.07600742, -0.06465758, -0.18999828, 0.03837833, 0.07646786, 0.07570424, 0.21107246, 0.13864806, -0.01273531, -0.00923891, 0.0449921, 0.06604844, -0.12068121, -0.11325724, -0.14932163, 0.2032789, 0.01938049, 0.24428648, -0.19765091, -0.0780395, 0.10519428, -0.13782437, -0.05468379, 0.15722804, -0.06760475, -0.08245427, -0.04488452, -0.11939392, -0.18806237, -0.01754115, -0.09829115, -0.08648204, -0.1323188, 0.08795342, -0.03921803, 0.14305848, 0.00491918, -0.16518131, -0.04233173, -0.11117499, 0.10588512, 0.09708475, 0.11669495, -0.19264954, 0.06225182, -0.19459271, -0.04204109, -0.07437715, 0.06844749] +fptosi:[-0.19263381, 0.18174471, -0.19834194, -0.08450547, 0.03721796, -0.20564933, 0.08134344, 0.1167338, -0.11764207, -0.04246106, 0.1932949, 0.27890006, 0.09806437, 0.02582885, -0.21447566, -0.0570739, 0.06355205, 0.17987597, -0.21833752, -0.06623737, 0.18090767, -0.13734418, 0.13610722, 0.08469011, 0.01031601, 0.08685239, -0.06190683, -0.02022957, 0.0165536, -0.11565601, -0.19628824, 0.0808333, 0.21732156, 0.10820238, 0.02523241, -0.08414054, 0.03822953, 0.06685203, -0.13110797, -0.12590878, -0.1599047, 0.23351248, 0.21677686, 0.25847423, -0.21728325, -0.08227366, -0.01478503, -0.14397657, -0.05229704, 0.09926414, -0.21801247, -0.08840783, -0.00492768, -0.12301008, -0.20143436, -0.0098808, 0.04232688, -0.04994902, -0.04696508, 0.10272446, 0.13090202, -0.29353723, 0.02689058, -0.16907251, -0.10443014, -0.05676102, 0.09988669, 0.05310713, 0.10221975, -0.21505772, 0.09698033, -0.06867661, -0.13257055, 0.04651419, 0.07193781] +fptoui:[-0.1879092, 0.09994039, -0.19055447, -0.04214029, 0.19478677, -0.21574633, 0.06391818, 0.1501939, -0.08467146, 0.06594839, 0.19546448, 0.25693843, 0.13626184, -0.00574005, -0.14835551, 0.19510362, 0.11365452, 0.08150242, -0.22374207, -0.00273804, -0.20506182, 0.02244803, 0.16625056, 0.17310701, 0.05111235, 0.0762303, 0.12750651, -0.02805013, 0.02407981, -0.1621514, -0.20112251, -0.11178979, -0.06855167, 0.05380713, -0.17227179, -0.26456967, 0.01493325, 0.08736785, -0.15288986, 0.05752717, -0.16908218, 0.15264502, 0.08506001, 0.23035404, -0.15225022, -0.04571576, -0.20252173, -0.10949254, 0.03674928, 0.23033485, 0.04838211, -0.02508143, 0.06544064, -0.00089409, -0.22117977, 0.00666875, -0.08801871, 0.00035094, 0.00468596, 0.12030341, 0.3341362, 0.02963332, 0.24867868, -0.1556182, -0.15591963, 0.08423429, 0.09444957, 0.02441556, -0.11417062, -0.19038425, -0.00401029, -0.0754626, -0.12215281, 0.07848697, 0.13340436] +fptrunc:[-0.17936662, 0.07060859, 0.21576765, -0.07035782, 0.02576292, -0.19454595, -0.21100873, 0.0245366, -0.09298423, -0.09408545, 0.14888632, 0.15942185, 0.11113587, 0.01371012, -0.13329527, 0.19825839, 0.08291511, 0.15132926, -0.20726912, -0.1300714, -0.18455495, -0.24500868, 0.20065752, 0.10013139, 0.01054023, -0.24196903, 0.04518595, -0.05986942, -0.09963182, 0.04502942, 0.02330203, 0.08131657, 0.20772876, 0.10029087, -0.07886539, -0.0572882, 0.0276582, 0.07003502, 0.13842097, -0.11758377, -0.14440045, 0.16809283, 0.08070138, 0.20840013, -0.204488, 0.08041397, 0.07206084, -0.09975072, -0.00520591, 0.18392056, 0.03729428, -0.08061408, -0.04694039, -0.10087265, -0.1873621, 0.00249349, -0.10884741, -0.07659909, -0.13298567, 0.10202346, 0.20819677, 0.10528623, 0.21215048, -0.15945788, -0.09764024, -0.04858336, 0.09358448, 0.05456955, -0.09905535, -0.20052545, 0.04759773, -0.08576542, -0.11454549, -0.02414334, 0.07290436] +freeze:[-0.08374099, 0.07313842, -0.12180836, -0.04961821, 0.03374871, -0.09018513, 0.2940434, 0.16032335, -0.09140815, 0.00354495, -0.10704956, 0.14404793, -0.2113185, 0.1329046, -0.11724603, 0.14923745, 0.01111014, 0.13067506, -0.1806806, 0.15763433, -0.08551528, 0.01476054, 0.12851246, 0.19974402, 0.23558316, 0.14184092, -0.24236256, -0.08140577, 0.19259292, 0.10209869, -0.21917859, -0.00177884, -0.02547693, 0.04522397, -0.15742987, 0.01531267, -0.01283341, 0.04273434, -0.10554937, -0.11766138, -0.21295716, 0.17178811, -0.06266864, 0.02141375, -0.18267825, 0.03124882, 0.08473425, 0.11937509, -0.01912502, -0.24190152, -0.16369314, -0.07056099, -0.00066241, -0.08064936, 0.01346543, 0.2192256, 0.19844198, -0.08322206, 0.04701163, -0.18698075, -0.19423091, 0.08846557, 0.13663407, -0.07756042, -0.11794151, 0.0409576, 0.05166351, 0.04267202, 0.19592428, -0.06828057, -0.03720487, 0.05658891, 0.1828469, -0.1753942, 0.0425075] +fsub:[-0.1827058, 0.09188128, -0.1817807, -0.08386481, 0.03507368, -0.19533978, 0.21733703, 0.11542296, -0.13356782, -0.01568625, 0.0537874, 0.15243678, 0.1092654, 0.0147724, -0.2919243, 0.19557092, 0.05948753, 0.11157303, -0.20193669, 0.12822223, -0.18421544, -0.11627194, 0.13636722, 0.20137127, 0.03076042, -0.22310434, -0.05573625, -0.0671407, -0.01681193, 0.10432418, 0.0869706, 0.07878966, 0.15909287, 0.08719365, -0.1664022, -0.02821237, -0.00599831, 0.06285255, -0.11443951, -0.14757916, -0.20209473, 0.2377617, -0.03728458, 0.2253817, -0.22601373, -0.07049032, 0.11112694, -0.11066268, -0.02310183, 0.06032091, -0.14706872, -0.07582852, -0.05332466, -0.15086307, -0.16447094, 0.04318003, -0.14273217, -0.07255894, 0.03650419, 0.10797624, 0.11345389, -0.28479365, 0.17369494, -0.13902244, -0.12161452, -0.05709174, 0.08761599, 0.04982189, 0.06608889, -0.17610228, 0.03268071, -0.07464819, -0.16890904, 0.01638867, 0.05222209] +function:[-0.02146735, -0.15796456, 0.02635166, 0.04299385, -0.18314648, 0.06943139, -0.06291246, 0.00698476, 0.20468809, 0.19611494, 0.10947703, -0.02099347, 0.08335586, -0.20279191, 0.19230263, -0.11166774, -0.20799787, -0.0076787, 0.01617268, 0.06276546, 0.02741946, 0.09996815, -0.11508977, -0.23375322, 0.08674872, -0.01030678, 0.20850746, -0.15152359, 0.03864069, -0.22280668, -0.04057046, -0.13363576, 0.14861378, 0.21710402, -0.15290314, 0.06150629, 0.18974748, 0.2452589, 0.10166952, -0.29984027, 0.12696065, -0.21030113, -0.10001801, -0.16053577, 0.21179916, 0.10312785, -0.0464002, -0.10175062, -0.21893138, 0.02191992, 0.22870977, 0.34786862, 0.10559032, 0.16053589, -0.09776252, 0.16926627, 0.1114317, 0.07961015, 0.20750554, 0.27804676, -0.14569567, -0.09462339, 0.01863719, 0.15803385, 0.10721076, -0.2591507, -0.12981355, 0.25240764, -0.07973988, -0.09894886, -0.186348, -0.05444523, 0.12873787, 0.19199565, -0.22463934] +getelementptr:[0.11356945, 0.16420412, -0.1640074, 0.1189482, 0.02361428, -0.10209873, -0.10297938, 0.14115871, -0.11194533, -0.01789187, -0.09499816, 0.1478291, -0.1784526, 0.00821744, -0.1611206, 0.13289732, 0.04139844, 0.1133464, -0.20556906, -0.09218193, 0.00657696, 0.02283398, 0.05097346, 0.16322827, 0.03874142, -0.07104035, -0.02163506, 0.26217568, 0.09412129, 0.06577672, -0.14498055, 0.10408258, 0.07619922, 0.04048405, 0.16606054, 0.20573032, 0.05973282, 0.05400199, -0.14493258, 0.07855369, -0.17468272, 0.14130789, 0.19513711, 0.15972467, -0.13647015, 0.18188193, 0.36191556, 0.22751738, -0.024095, 0.08456933, 0.05574253, -0.06774855, -0.27969953, -0.13459553, -0.15751928, 0.00538284, -0.21918638, -0.38109255, 0.04641056, 0.03651842, 0.10598525, -0.15115552, -0.04241499, -0.10949366, -0.10716118, -0.03785178, 0.03219279, 0.03378424, 0.22536995, -0.07156458, -0.02320261, 0.09300733, 0.18830773, 0.09863496, 0.02633877] +icmp:[-0.1641099, 0.12913613, -0.11048631, 0.238875, 0.0075097, -0.09591229, 0.03286604, 0.10887414, -0.08919015, -0.0145085, -0.04726601, 0.13281755, -0.15219611, 0.00681822, -0.13519955, 0.22674657, 0.0651373, 0.12633668, 0.13351113, -0.15299864, -0.11814834, 0.02036636, 0.05292618, 0.13341148, 0.21161592, -0.0521103, -0.00279631, -0.30772963, 0.08514831, 0.05909274, 0.06032963, 0.14888896, 0.02653387, 0.04699105, 0.10476387, -0.06745261, 0.02030572, 0.04752504, -0.117439, -0.12344151, -0.15145579, 0.134214, 0.29366368, 0.17596458, -0.13351393, -0.02948583, 0.11651005, 0.17776312, -0.04011288, 0.05254741, -0.14617726, -0.05937104, -0.0357817, -0.06426694, -0.15558591, 0.00991076, 0.00503722, 0.25265566, 0.04163801, -0.16236193, 0.10351527, 0.19438492, -0.0604066, -0.1099935, -0.10132384, -0.04925206, 0.03976053, 0.03508792, 0.13665426, -0.05943009, -0.00835077, 0.05304742, 0.17997845, 0.04899522, 0.04428194] +indirectbr:[-0.01204762, -0.12721041, -0.05569853, 0.1424455, -0.13038567, 0.1824379, -0.1195498, -0.10243332, 0.10762887, -0.34977585, 0.10613564, -0.03193827, -0.01542262, 0.33240741, -0.21602336, 0.0650174, -0.12386712, -0.01165902, 0.05542162, 0.1496384, 0.03423556, 0.0273397, -0.07176702, -0.11634523, 0.02743626, -0.10453371, -0.01599, -0.04345039, 0.10443792, -0.14214475, 0.09952807, -0.0616132, -0.12465278, -0.11489379, 0.02641002, 0.21358219, -0.22406143, -0.26549977, 0.08546343, 0.32351884, -0.02376354, 0.05970608, 0.04830921, -0.10316502, -0.12375024, -0.14926358, -0.0826954, 0.0040203, 0.07231954, -0.20467165, 0.15954795, 0.12211046, 0.08072688, 0.12263478, 0.09846199, -0.05915936, 0.03732969, 0.04008668, -0.13034691, -0.14964685, 0.10449092, -0.06760281, 0.02051798, -0.20714685, 0.08945604, 0.26670918, -0.10220104, -0.2777853, -0.07455413, 0.14951015, 0.3050868, -0.1365463, -0.13821901, -0.21513888, -0.23652679] +insertelement:[-0.18742824, 0.02089223, -0.1806105, -0.11712623, 0.0337056, -0.16999392, -0.36941358, -0.03516577, -0.12054383, -0.03211968, -0.05598078, 0.14871006, -0.20239584, 0.01594366, -0.22411975, 0.12604992, 0.06552524, 0.1495488, -0.19169006, 0.00554593, -0.15232934, -0.12372645, 0.1418781, 0.19762719, 0.22822095, -0.05455219, -0.13564506, -0.09528788, -0.07974611, 0.21666779, 0.0674925, 0.07365318, 0.12747023, 0.05890271, 0.02975079, -0.03309466, 0.0606543, 0.06594283, -0.11158059, -0.15001854, -0.16235998, 0.19519383, 0.07892809, 0.2099983, -0.18832837, -0.06460179, 0.11781331, -0.11951236, -0.02002133, 0.04151338, -0.14481962, -0.07279072, -0.04587731, -0.12868612, 0.00210835, 0.04398788, -0.11492153, -0.03289788, 0.03749502, 0.10390034, 0.07048145, 0.05804898, 0.17998855, -0.13267764, -0.11392947, -0.05381425, 0.08991965, 0.04599144, 0.13564445, -0.19794647, -0.02201175, 0.03889946, 0.23598437, -0.01089515, 0.06092957] +insertvalue:[0.0737884, 0.23785661, -0.08208606, -0.09662684, -0.15695034, -0.14015724, -0.23626441, 0.12025999, 0.21619344, -0.10966193, -0.04038031, -0.10518529, -0.0535773, 0.0127159, 0.1449197, -0.02178489, -0.06512421, 0.23044463, 0.13332798, 0.12813132, -0.16761945, -0.12417971, -0.05241316, 0.14574915, 0.01120552, 0.09589129, -0.05234067, -0.12275247, -0.05540868, 0.0153265, 0.30873504, 0.2537784, -0.03524628, 0.10147756, 0.19903085, 0.2047409, 0.04088103, 0.05466085, -0.00140273, -0.19555457, -0.14118348, 0.04410137, -0.10189914, 0.1826649, -0.02131908, -0.09946583, 0.35876143, 0.18034913, -0.05733407, -0.11911616, 0.08530632, -0.12513837, -0.30798212, -0.1666016, 0.20442457, 0.03271183, -0.02104928, -0.07767656, 0.04159521, 0.05622947, 0.17076252, 0.0644299, -0.09590822, -0.11766641, -0.11689872, -0.06153355, 0.00983306, 0.05989188, 0.13494745, -0.10254756, 0.02400926, 0.09988034, 0.19727652, 0.04688921, 0.04327286] +integerTy:[0.02828759, -0.03297489, -0.00862224, 0.008222, -0.0783286, 0.12668386, -0.04677579, -0.1660051, 0.11963888, 0.18539645, -0.18608038, 0.19787821, 0.0898185, -0.12753253, 0.07520655, -0.15416251, -0.16184951, 0.01927157, 0.03379928, 0.06357023, 0.04066639, -0.02752791, 0.16200809, -0.11292267, -0.02483522, 0.2060908, -0.2751605, -0.1424134, 0.18103479, -0.2503721, -0.1006321, 0.20210308, -0.21774201, -0.08912377, 0.04681936, -0.15324032, -0.16674711, -0.13717036, 0.06137032, -0.00316918, 0.07411592, -0.14151968, -0.00102385, -0.15538949, 0.1292113, -0.195434, -0.08497112, -0.00796043, 0.14488491, -0.16146477, -0.26488304, 0.08503429, 0.04006785, 0.12344056, 0.12282163, -0.04933761, -0.03689232, 0.08044001, 0.15420729, -0.08246488, -0.08061364, 0.12921712, 0.03863291, 0.10616666, -0.03144247, 0.20789446, 0.19962087, -0.14234729, -0.00665365, 0.08639224, -0.18015437, -0.04306339, -0.02072087, 0.17344733, -0.15240274] +inttoptr:[0.11799293, 0.10016125, -0.1549606, -0.092232, 0.02104423, -0.12553659, -0.34557655, -0.05632961, -0.08104709, -0.01952566, -0.06855603, 0.15966378, -0.25992402, -0.01110045, -0.14765349, -0.1105964, -0.05551039, 0.17763555, 0.17632706, -0.20534459, -0.14523984, 0.30066422, -0.02327736, 0.2915919, 0.2606417, -0.13814417, -0.19813128, -0.03791555, 0.2707301, 0.2201749, 0.03477608, 0.2741417, 0.08901929, 0.02220085, 0.1917356, -0.06103428, 0.01186275, 0.00983543, -0.134187, 0.08631459, 0.03193251, 0.14685898, 0.07240996, 0.06012966, -0.1037708, -0.02558313, 0.11854475, 0.21649958, -0.06201843, 0.15565458, 0.11953333, -0.02488605, -0.05456833, 0.02705109, -0.00556197, -0.19505142, -0.21181607, -0.08357295, 0.05246291, -0.23123887, 0.00687603, 0.17149624, -0.15675735, -0.10503054, 0.05532804, -0.03318362, -0.20571744, 0.03092023, 0.16756403, 0.1656058, 0.00093181, 0.15678132, 0.28123572, 0.01698178, 0.00804001] +invoke:[-0.21565515, 0.18123214, 0.22108254, 0.15576363, -0.13839923, -0.12981431, -0.13468416, -0.10325108, -0.12305694, -0.01069573, -0.06105614, -0.26180536, -0.14545362, 0.00564035, -0.20934688, 0.06758368, 0.03973497, 0.16663995, -0.23966105, 0.17748658, -0.20084912, 0.02369981, 0.07614433, 0.19925424, 0.05168648, -0.09962455, -0.12312674, 0.39736757, -0.17597187, -0.12212165, -0.17974627, -0.01404112, 0.17784499, 0.08489674, 0.04473555, 0.25486726, 0.06535286, 0.07235018, -0.16648327, -0.1643115, -0.18108961, 0.14473648, -0.2453395, 0.2106056, -0.12629841, 0.20983139, -0.20055123, 0.21023159, -0.06929732, 0.08629547, 0.12865308, -0.09644269, -0.37160024, 0.21888466, -0.24232213, -0.02912279, 0.03462497, 0.35807788, 0.06383441, -0.19538526, 0.12580478, -0.17118546, 0.02003164, -0.14513607, -0.15239754, -0.06643169, -0.22205149, 0.05818094, 0.18772201, -0.08939395, -0.02083752, 0.1221242, 0.22323382, -0.2332375, 0.04196756] +label:[-0.08195425, 0.08986681, 0.07932949, 0.05040008, -0.04770369, 0.1036137, -0.03450504, -0.03131102, 0.10568307, -0.25449547, 0.40891767, 0.03005167, -0.05722238, 0.22012636, -0.09090385, -0.089614, 0.29391402, -0.01362176, 0.41432717, 0.06520778, -0.07054248, 0.1754684, 0.01264393, 0.07221783, 0.17082171, -0.00258786, -0.04760845, 0.28019378, -0.12348694, -0.04424995, 0.3188019, -0.21401595, -0.18886915, 0.32835257, -0.19493921, 0.17185657, -0.1459432, -0.15949132, 0.39863616, 0.3266757, 0.32006612, -0.09932003, -0.04995399, 0.04784168, 0.11907734, -0.34694213, -0.06108432, -0.29888245, -0.2661678, -0.47109148, 0.02306627, -0.3730777, -0.26233977, 0.11874919, -0.1756911, -0.28203917, 0.39215282, -0.21880595, 0.32986024, -0.02893859, 0.0088203, -0.02873928, 0.13645364, -0.00540331, -0.45749483, 0.18105891, 0.3545704, -0.17503542, -0.46717745, 0.37871784, 0.23742503, 0.32491776, -0.3709473, -0.16099106, -0.16758518] +landingpad:[-0.21413283, 0.07332458, 0.02809758, 0.13180298, 0.03499594, 0.1933705, 0.06682315, -0.09591784, -0.00802295, -0.00203262, 0.01162583, -0.24185391, -0.10959508, -0.01924413, -0.04734194, 0.17701729, -0.2467986, -0.13082738, 0.18671623, -0.29349163, 0.15593474, -0.10671376, -0.02095505, -0.07383122, -0.16391894, 0.0957875, 0.13518119, 0.03122237, -0.06527613, 0.2369231, -0.22305255, 0.07418589, 0.01598982, -0.23831819, 0.04177319, 0.08733507, 0.07716181, -0.20926794, 0.06797829, 0.10567227, -0.01753129, 0.09409909, -0.07793332, -0.07648738, -0.07802591, 0.22892104, 0.11521813, 0.25445867, 0.08258408, 0.11817107, 0.11272361, 0.01004454, 0.00701899, 0.21173449, -0.02889407, -0.21116352, 0.16541566, -0.00682365, -0.23730892, -0.16880488, 0.09069086, 0.0404853, -0.2468136, 0.17845337, 0.07460188, -0.03445113, -0.20544758, -0.04681233, 0.15365207, -0.09446546, 0.22154877, 0.17958467, 0.02850998, -0.21470752, -0.05958666] +load:[-0.18313943, 0.15198089, -0.10847442, 0.25872916, -0.11115342, -0.14198643, 0.26329216, 0.11900152, -0.06613103, -0.03729493, -0.04572776, 0.14664604, -0.17977965, 0.02788556, -0.14404452, 0.15294756, -0.00563166, 0.12621629, 0.11113657, -0.04768517, -0.1558305, 0.00143102, 0.05407189, 0.13481085, 0.00946835, -0.09212171, -0.01248237, -0.32300985, -0.04323886, 0.07733882, -0.17239986, 0.1692786, 0.07732725, 0.03511339, 0.03291289, -0.06481492, 0.0009765, 0.04184683, -0.11758766, 0.07742862, -0.14508556, 0.12225436, 0.46491712, 0.17782973, -0.12592311, 0.05176556, 0.37599334, 0.13858378, -0.05401319, -0.02729061, 0.11043098, -0.06531968, 0.1913217, -0.02669194, -0.17810678, 0.0072155, 0.0146095, -0.12777379, 0.01954567, -0.19051458, -0.09991094, 0.18367642, -0.03049516, -0.09345251, -0.09304623, 0.005605, 0.0035353, 0.02566591, 0.13700894, -0.05640379, 0.00980258, 0.08310146, 0.05167176, 0.00362597, 0.02931265] +lshr:[-0.03515298, 0.14625666, -0.171797, -0.15385719, 0.02699187, -0.09904394, 0.0662342, 0.09957902, -0.11135877, -0.02147998, -0.07591082, 0.13880157, -0.1913014, 0.0208877, -0.20882143, 0.24480563, 0.06608772, 0.14324512, -0.06128193, -0.04613286, -0.03391617, 0.13658187, -0.03745132, 0.21193206, 0.21779427, -0.04935086, -0.18564542, -0.09553069, 0.09042333, 0.09140295, 0.11829869, 0.15135407, 0.0662374, 0.04210296, 0.13339543, -0.05063304, 0.02885056, 0.03754345, -0.11286719, -0.11859933, -0.18946657, 0.19481318, 0.06294443, 0.13902442, -0.15940475, -0.05753384, 0.11145177, 0.18400258, -0.05000046, 0.03918633, -0.19140908, -0.06621899, -0.06061944, -0.10455327, -0.16244893, 0.00392148, 0.01772981, 0.23874399, 0.0501877, -0.18257919, -0.29951766, 0.16150182, -0.05087248, -0.10639068, -0.10371984, -0.05208996, 0.05045497, 0.03744963, 0.18148518, -0.06407842, -0.01298604, 0.03116213, 0.03925642, 0.02667316, 0.04766724] +mul:[-0.01013962, 0.16457033, -0.16822903, -0.40285668, 0.03926047, -0.11437435, 0.01765068, 0.1272621, -0.11147796, -0.02156874, -0.07221997, 0.14695314, -0.17959704, 0.01266034, -0.18494341, 0.10465328, 0.07224093, 0.15249129, 0.05090214, -0.05316129, -0.12265138, 0.0471352, -0.01434617, 0.19963257, 0.22775142, -0.04931874, -0.09388551, -0.11397004, 0.09219155, -0.0468651, 0.1255576, 0.16310075, 0.00639423, 0.0560603, 0.16035219, -0.05026558, 0.03391953, 0.05200769, -0.13528928, -0.12421798, -0.19160932, 0.17535509, 0.17521241, 0.2039268, -0.1356969, -0.05585511, 0.11607828, 0.18996826, -0.05158792, 0.05207343, -0.17553838, -0.07080225, -0.07488652, -0.11864464, -0.13744716, 0.01940869, 0.01628884, 0.30307713, 0.0462421, -0.1828323, -0.21545771, 0.18075143, -0.04024711, -0.12249982, -0.10894768, -0.05817762, 0.04092629, 0.03618029, 0.18915969, -0.07251228, -0.00778072, 0.04246541, 0.05913598, 0.05885862, 0.04627848] +or:[0.09108278, 0.1721479, -0.1530225, 0.24057078, 0.0357848, -0.14925325, 0.02698733, 0.12568346, -0.0993613, -0.0423282, -0.07956324, 0.14896806, -0.19497223, 0.02355411, -0.16057736, 0.11040425, 0.07323334, 0.1743537, -0.15104012, 0.05775923, -0.14680395, 0.04575695, 0.02876326, 0.19933657, 0.22750401, -0.11699814, -0.1350227, -0.25168094, 0.09657802, -0.02890631, 0.12656228, 0.16761272, 0.0214266, 0.06949975, 0.14912519, -0.07375011, 0.03664432, 0.05047937, -0.1169848, -0.13122362, -0.1945397, 0.15760568, 0.2051663, 0.19558178, -0.1740225, -0.05563143, 0.11927515, 0.14231063, -0.05388204, -0.00473989, -0.14714085, -0.07687397, 0.17772064, -0.09860776, -0.04018535, 0.00759339, 0.02731223, 0.24838881, 0.04601368, -0.19698301, -0.04891865, 0.20419018, 0.14551103, -0.12312976, -0.11413883, -0.05646772, 0.05012054, 0.03617495, 0.18689804, -0.06810451, 0.00421706, 0.04451695, 0.02220686, 0.04064554, 0.05149548] +phi:[0.14574748, 0.00448328, 0.3774384, 0.22188851, 0.29711968, -0.17246956, -0.22798792, 0.17728762, -0.1506173, -0.01529943, -0.074467, -0.07883935, 0.05287629, 0.01002054, 0.01465927, 0.07962288, 0.12522173, -0.24461924, -0.25968865, 0.25957966, 0.16498363, 0.00742004, -0.07538617, -0.08132502, 0.02513341, -0.15534237, 0.1277187, 0.12128175, -0.07787137, 0.21499899, -0.21981412, -0.01817692, 0.11790613, -0.34500244, 0.01718361, -0.00916887, 0.03943733, 0.08321884, -0.18452178, -0.16664022, -0.24397576, 0.15209539, -0.2275877, -0.04434392, -0.16310242, 0.29929635, -0.2742668, 0.23324353, -0.04115092, 0.1778573, -0.36343107, 0.32038668, -0.06109313, -0.13128643, 0.3809128, 0.41497025, -0.16766603, 0.38399875, -0.3942831, 0.16921899, -0.23570935, -0.3221364, -0.08967954, -0.13125223, 0.29526898, -0.09243768, -0.35459995, 0.09036484, 0.24394031, -0.27684262, 0.01127498, -0.4243147, 0.32919088, 0.04971826, 0.4923091] +pointer:[-0.07775559, -0.18863875, 0.10846306, 0.04765376, 0.06318449, 0.11486695, -0.04681852, -0.02283169, 0.134526, 0.21544592, -0.24132563, -0.25043324, 0.19429323, -0.22630525, 0.20173317, 0.22268729, -0.11172275, -0.38408083, -0.01269624, 0.0584139, 0.01480664, 0.13043216, 0.12074444, -0.24551189, -0.16759391, 0.00117354, 0.30889568, -0.13886409, 0.04676978, 0.3528593, -0.03963276, -0.23019168, 0.16283606, -0.14554074, -0.14956361, 0.15319401, 0.27382898, 0.28121775, -0.3458652, -0.32775682, 0.0862601, -0.11332006, -0.0405313, -0.27280602, 0.14931957, 0.09087642, -0.0493107, -0.00461221, 0.21083537, -0.00130464, 0.01650243, 0.12613863, 0.11473305, 0.11785799, 0.16483735, 0.151604, 0.11309673, 0.16076814, -0.1445356, -0.03006034, -0.0033997, -0.07489629, -0.2520989, 0.1209276, 0.05844545, -0.29099113, -0.13125679, 0.2726044, -0.0554234, 0.02607987, -0.22126749, -0.08912107, 0.12276275, -0.14199328, 0.23415829] +pointerTy:[0.2061167, -0.14907601, -0.02017762, -0.0224598, -0.1739986, 0.12114455, -0.17402473, -0.20146745, 0.12246801, 0.1260035, -0.19015145, 0.05958349, 0.11387737, -0.12877904, 0.13612697, -0.1426747, -0.16507968, -0.02654755, -0.08294366, 0.06865275, 0.04526726, -0.06085516, 0.18449223, -0.13264656, -0.16994074, 0.02235973, -0.168293, -0.10196934, 0.02899001, -0.19232745, -0.08081874, 0.02080429, -0.10398879, -0.10087281, -0.01905089, 0.04629362, -0.17002816, -0.1499554, 0.1760304, 0.20019437, 0.10980381, -0.14491844, -0.06497687, -0.13251217, 0.13984813, -0.11767785, -0.09482115, -0.05732037, 0.16058275, 0.1251189, 0.14558843, 0.08471547, 0.06131018, 0.15013425, 0.09988306, -0.03570935, -0.171316, -0.11725532, 0.13588199, 0.06116647, 0.02141421, 0.02885198, 0.04794504, 0.10421289, 0.24300005, 0.17145112, 0.15733938, 0.12194008, -0.04139609, 0.18055929, -0.17887127, 0.13263755, 0.11424429, -0.21833475, 0.09080296] +ptrtoint:[-0.06415597, 0.16581962, -0.11447688, -0.20821305, 0.01393627, -0.10480499, 0.02877784, 0.11931965, -0.0903246, -0.01237062, -0.11191767, 0.13569292, -0.18560588, 0.00680207, -0.16858286, 0.26891577, -0.01190089, 0.20076427, 0.15784216, -0.05432002, -0.1356284, 0.04035666, -0.03149262, 0.26334575, 0.23468502, -0.02287563, -0.2066369, -0.1486282, 0.1023028, 0.16168049, -0.12980904, 0.17122626, 0.02466564, 0.0439151, 0.1124684, -0.05654094, -0.00512382, 0.03418587, -0.12811841, -0.15569396, -0.19574045, 0.22658177, 0.20065907, 0.03803709, -0.09988634, 0.19446445, 0.07789375, 0.21531175, -0.06644954, 0.01982719, 0.11694454, -0.07156242, -0.04457823, -0.02884255, 0.00182173, 0.03548123, 0.03959937, -0.35179573, 0.06103252, -0.19234043, 0.12923214, 0.17876206, -0.136637, -0.09184986, -0.11583184, -0.04123931, 0.01127549, 0.02688371, 0.16675003, -0.04023606, -0.01996934, 0.11789093, 0.0372667, 0.00918604, 0.01763116] +resume:[0.0768612, -0.05809422, -0.07949571, 0.18856186, 0.170006, -0.12605074, 0.02120433, 0.101303, 0.00080811, -0.08816858, -0.04717124, -0.09981931, -0.06090263, 0.06271931, 0.08309074, -0.06890503, 0.01304799, 0.14701276, 0.11548907, -0.2297266, -0.14977317, -0.24798259, -0.08579548, 0.13812715, -0.01464694, -0.27386728, -0.09659681, 0.1549261, -0.24715579, 0.09716501, -0.21175094, 0.02997893, -0.03778547, 0.10392357, -0.01633511, -0.23175566, 0.0423396, -0.027151, -0.00817948, -0.09067354, -0.13474675, 0.06362391, 0.20072663, 0.13468514, -0.04761725, 0.16004805, -0.09693465, 0.14489119, -0.05608147, 0.21296576, 0.10202584, -0.10714541, 0.1814151, -0.07816014, 0.18440205, -0.09892324, 0.0232281, 0.06413919, 0.03792079, -0.14657566, -0.24558401, -0.10154067, -0.11644318, -0.07546193, -0.03133224, -0.05587293, -0.16970544, 0.05354525, 0.13733819, -0.2490009, 0.09787878, 0.07752881, -0.14267543, -0.04094706, 0.06809311] +ret:[-0.16891503, 0.01816073, -0.16521302, -0.33112803, 0.17696795, -0.14289688, 0.06100983, 0.11202072, -0.07504983, -0.03376308, -0.04449403, 0.14500456, -0.17458141, 0.01937419, -0.04806188, 0.10758615, 0.06117645, 0.17039324, 0.11898611, -0.01548968, -0.1576143, -0.12574907, -0.02887498, 0.13938235, 0.00406812, -0.08491568, 0.01564338, 0.05175638, -0.1328987, 0.11547687, 0.31351894, 0.1690406, 0.13106324, 0.06727482, 0.16314285, 0.12397028, 0.02729055, 0.03602757, -0.12322291, -0.06018671, -0.13232166, 0.13293742, 0.24458787, 0.19813068, -0.13154076, 0.16555738, 0.07992917, 0.15891601, -0.06087557, 0.26850426, 0.09600125, -0.07681318, 0.19063863, -0.06279487, -0.18668175, -0.00935774, 0.02816519, 0.2528443, 0.04580719, -0.13788223, -0.13626361, 0.15021154, -0.09495512, -0.10755127, -0.06692181, -0.05065513, 0.00401663, 0.04534153, 0.10573483, -0.07607134, 0.02454485, 0.08517301, -0.01385046, 0.04703423, 0.06009516] +sdiv:[-0.08697516, 0.15100522, -0.13518502, 0.20069331, 0.03649918, -0.10310803, 0.04024129, 0.10924838, -0.1241749, -0.01623379, -0.07529126, 0.14442669, -0.24519031, 0.09484152, -0.25667444, -0.10340611, 0.05384178, 0.19976114, -0.15197887, -0.05565317, -0.03056811, 0.14833096, -0.0747151, 0.267562, 0.24064055, 0.07551291, -0.22109747, -0.08555378, 0.26974958, 0.16588932, 0.07018241, 0.16756919, 0.01217606, 0.04810045, 0.05600408, -0.05585638, -0.00417345, 0.03285752, -0.13009028, -0.14007434, -0.2193388, 0.26711014, 0.19889487, 0.09505671, -0.23086856, -0.04958421, 0.11112323, 0.2040661, -0.04450966, 0.0519245, -0.15580705, -0.07064559, -0.05209007, -0.13597964, 0.00786739, 0.21734957, 0.05959184, 0.09851185, 0.05491867, -0.20428169, -0.15922211, 0.07375793, 0.10073187, -0.10345113, -0.11356042, -0.013985, 0.04824717, 0.04056428, 0.18923256, -0.07700931, -0.02152473, 0.07638341, 0.03958036, 0.02512564, 0.03637771] +select:[-0.17589012, 0.1591472, -0.12311839, 0.2658546, -0.02498877, -0.10041999, 0.03012674, 0.12544009, -0.06761574, -0.02337204, -0.0673648, 0.14087002, -0.20325129, 0.01057886, -0.1615128, 0.15239331, 0.05013895, 0.14913653, 0.13276637, -0.04770147, -0.13664798, 0.0185274, 0.04536012, 0.15049413, 0.01123958, -0.08701201, -0.07915936, -0.37862903, -0.05212003, 0.06044174, -0.17468444, 0.08701835, 0.01563778, 0.04558097, 0.04723652, -0.3088086, 0.01805666, 0.05727576, -0.12992363, -0.14806955, -0.15608174, 0.1403236, -0.1276614, 0.02989666, -0.12775649, -0.04032174, 0.10663348, 0.20654517, -0.04325851, 0.07149842, -0.12060584, -0.07539102, -0.01114002, -0.08527429, 0.00475131, 0.03477619, -0.02176761, -0.43131715, 0.05751758, 0.1035651, 0.01038325, 0.09511791, 0.16065718, -0.08698864, -0.11273398, -0.01551829, 0.06097199, 0.04441325, 0.15942355, -0.19907185, -0.04369975, 0.11362157, 0.21811284, 0.05801347, 0.02566496] +sext:[-9.14541036e-02, 1.51511118e-01, -1.45038322e-01, -2.82946736e-01, 4.00361195e-02, -1.62323803e-01, 2.13311121e-01, 4.52463850e-02, -1.01893075e-01, -2.99757719e-02, -6.79420158e-02, 1.47164822e-01, -1.86046809e-01, 2.03259643e-02, -1.84465483e-01, -1.60458423e-02, 7.19789416e-02, 1.46856233e-01, 4.14541103e-02, -6.23770133e-02, -1.24584801e-01, 1.41117766e-01, -2.83677280e-02, 1.88005432e-01, 2.22784430e-01, 6.64168894e-02, -1.92244202e-01, 4.48507816e-02, 8.62568095e-02, 7.17988089e-02, -1.80714160e-01, 1.57889739e-01, 1.40214875e-01, 5.94148152e-02, 1.38165012e-01, -6.97524846e-02, 1.99358296e-02, 3.87669578e-02, -1.16310619e-01, -1.16560429e-01, -1.86164707e-01, 1.89860329e-01, 2.36568719e-01, 2.11229622e-01, -1.84963927e-01, 1.42111838e-01, 9.05751809e-02, 1.20608024e-01, -5.58095202e-02, 6.25170991e-02, -1.88634396e-01, -7.56277442e-02, -4.73671667e-02, -8.48592147e-02, -1.76579773e-01, 9.53397830e-05, 1.50782485e-02, -1.15354754e-01, 4.53714542e-02, -1.91620484e-01, 1.22293286e-01, -1.92399755e-01, 2.49990933e-02, -1.45940393e-01, -9.46301147e-02, -4.84425351e-02, 6.44107312e-02, 4.38051447e-02, 1.85686961e-01, -7.12038949e-02, -7.11938925e-03, 3.64520140e-02, 2.77326517e-02, 2.14182306e-02, 5.47050089e-02] +shl:[0.0962167, 0.16208725, -0.17982458, -0.18940093, 0.03068897, -0.12155394, 0.02398272, 0.11500345, -0.11256784, -0.02351354, -0.08273932, 0.14908375, -0.18262532, 0.02065357, -0.21191126, 0.07357242, 0.07007495, 0.16785425, 0.04603807, 0.06216083, -0.13218983, 0.04318256, -0.02949017, 0.24260026, 0.23019809, -0.05072148, -0.19236559, -0.24076289, 0.09617961, -0.01351602, 0.08975732, 0.16535956, 0.02839054, 0.07869124, 0.14774242, -0.05373244, 0.0436439, 0.05278594, -0.11758411, -0.13808614, -0.19694163, 0.19895329, 0.17511822, 0.22869386, -0.16635895, -0.06751847, 0.11795657, 0.15751152, -0.05215228, 0.01504957, -0.19701657, -0.08264625, -0.0551257, -0.12542969, -0.01085246, 0.01414032, 0.02275443, 0.26202977, 0.04312161, -0.1944405, -0.30748564, 0.16825794, -0.04237102, -0.12205335, -0.11114204, -0.05704192, 0.04650329, 0.04609466, 0.18954994, -0.0625058, -0.00373412, 0.03803542, 0.03898941, 0.03283693, 0.04937024] +shufflevector:[9.49454531e-02, 3.88390347e-02, -1.81564167e-01, -9.25810561e-02, 3.63992490e-02, -1.76608175e-01, 6.56432435e-02, -3.81999165e-02, -1.18249312e-01, -2.49000173e-02, -7.30086565e-02, 1.54326737e-01, 5.78161106e-02, 8.88080988e-03, -2.35916048e-01, 6.28413707e-02, 1.01309262e-01, 1.56629086e-01, -1.96661204e-01, -2.35499561e-01, -1.42551571e-01, -2.09826201e-01, 1.37009352e-01, 2.67857343e-01, 2.31571198e-01, -2.87858695e-01, -4.57247011e-02, -7.94333443e-02, -1.68671384e-01, 1.74567208e-01, 8.32402781e-02, 8.61869827e-02, 1.49507642e-01, 6.52212948e-02, -2.35584155e-01, -5.06599732e-02, 1.83779579e-02, 5.92196025e-02, -1.20981254e-01, -1.10173889e-01, -1.93948537e-01, 2.32090339e-01, 1.60877943e-01, 2.31100127e-01, -1.86098754e-01, -7.13405013e-02, 1.18538015e-01, -1.05673805e-01, -2.29708347e-02, 3.58076729e-02, 6.24643974e-02, -7.12506920e-02, -5.59212565e-02, -1.15790889e-01, -1.91475540e-01, 5.09378128e-03, -2.19631419e-01, 1.31708095e-02, 4.76014763e-02, 9.40409824e-02, 1.08769216e-01, 6.84844181e-02, 1.87145680e-01, -1.41213417e-01, -1.15307607e-01, -5.64600639e-02, 7.02881962e-02, 4.68227454e-02, 1.59708768e-01, -1.73232377e-01, 1.81367737e-04, 2.21703053e-02, 2.16376893e-02, 5.75477676e-03, 7.38684088e-02] +sitofp:[-0.17983477, 0.0978947, -0.1531875, -0.00535997, 0.01502661, -0.18738776, 0.21868847, 0.11210296, -0.09472543, -0.02644082, 0.1708155, 0.14155222, -0.2315506, 0.10199393, -0.18996353, 0.15808398, -0.00224431, 0.19383119, -0.19159487, -0.02825833, -0.17417078, -0.15981847, 0.07830741, 0.14286959, 0.23172978, 0.07879087, -0.17481473, -0.05421657, -0.16681874, -0.1226524, 0.03412434, -0.00153027, 0.13990438, 0.06749753, -0.05043832, -0.05451442, 0.02371797, 0.04564046, -0.12832338, -0.14411692, -0.2091155, 0.20097302, 0.1983871, 0.14862236, -0.19047453, -0.02405283, 0.10122752, -0.08195024, -0.05110596, -0.03843111, -0.19846502, -0.11667409, -0.04858128, -0.09478167, -0.01776368, 0.21580648, -0.06357754, -0.12950444, 0.03591193, 0.09705086, 0.12338582, 0.18395214, 0.07570713, -0.10352064, -0.11375362, 0.04333669, 0.07337146, 0.04758281, 0.1286156, -0.19744906, -0.00131556, -0.05406854, -0.13830335, -0.01707732, 0.05812272] +srem:[-0.08394834, 0.09520227, 0.22461611, -0.08118973, -0.10072602, -0.08320269, 0.10504999, 0.05023011, -0.13337213, -0.10933513, -0.2302395, -0.08200544, -0.23752685, 0.15999642, -0.27794334, 0.18326746, 0.06836244, 0.21793577, 0.06998227, -0.0334548, -0.05425982, -0.11788745, -0.15032001, 0.15754387, 0.24987388, 0.14097147, -0.20683661, -0.10549385, -0.04760491, 0.01366062, 0.09764769, 0.08632989, -0.04746145, 0.05133167, 0.09570973, -0.06729168, 0.06274897, 0.04487838, 0.17031792, -0.14626412, -0.2319965, -0.1250873, 0.00168452, 0.15191206, -0.22632325, 0.16031003, 0.12661986, 0.20375252, -0.03465536, -0.13577786, -0.19415091, -0.07487895, -0.05437847, -0.15410474, 0.21577384, 0.23044205, 0.18211187, -0.07129791, 0.07651903, -0.20593965, 0.06887855, 0.18985786, 0.00935915, -0.10111032, -0.11352097, -0.08030272, 0.03715573, 0.04166712, 0.20810598, -0.18965796, -0.04486238, 0.0640821, 0.17034099, -0.06549162, 0.05864169] +store:[-1.88093007e-01, 1.60291269e-01, -1.65521309e-01, -3.54852498e-01, -1.09040141e-01, -1.40313536e-01, 1.09041966e-01, 1.23296231e-01, -8.85770023e-02, -2.63130181e-02, -5.77904172e-02, 1.51808694e-01, -2.03957021e-01, 3.01138945e-02, -7.57453069e-02, 2.18694553e-01, 5.33539727e-02, 1.53376058e-01, 1.23160824e-01, -2.05060214e-01, -1.60298228e-01, -1.15182914e-01, 5.49190082e-02, 1.53904408e-01, 8.12864956e-03, 2.86737889e-01, 1.09512359e-04, 5.38766943e-02, 8.98236036e-02, 1.13770217e-01, -1.31985378e-02, 1.62497342e-01, 8.52784961e-02, 6.39274269e-02, 2.81745233e-02, 2.03441918e-01, 3.32976468e-02, 4.97367978e-02, -1.24097921e-01, -8.21926966e-02, -1.50609702e-01, 1.39993474e-01, 2.18934774e-01, 2.01895729e-01, -1.58165336e-01, 1.74078599e-01, 9.32517722e-02, 1.72539413e-01, -5.90021759e-02, 7.23405853e-02, 1.05191223e-01, -7.77017847e-02, 1.94634452e-01, -1.02509595e-01, -1.83312848e-01, -4.43138592e-02, 6.14173263e-02, 2.81677306e-01, 4.34542596e-02, -1.71090961e-01, 1.49233893e-01, -2.39541277e-01, -8.56694430e-02, -9.65045765e-02, -1.00670740e-01, -5.49344905e-02, 6.67970255e-03, 4.66185696e-02, 1.28349125e-01, -6.21188059e-02, 1.01668453e-02, 8.49640891e-02, -5.36984503e-02, 4.07270268e-02, 6.44078553e-02] +structTy:[-0.03418246, -0.11075132, 0.10661521, -0.00905343, -0.16164331, 0.11424856, 0.17208678, -0.18516436, 0.16558404, -0.17011607, 0.05240053, -0.12861758, 0.1107965, 0.17016666, 0.20343627, -0.15289956, -0.14092442, 0.00883194, -0.05257475, 0.05894461, 0.04085862, -0.06434099, 0.16847764, -0.1711239, -0.21677718, 0.03336657, -0.10772707, -0.0510764, 0.02543659, -0.0999507, -0.11050932, 0.02365885, -0.18653397, -0.1271004, -0.02384198, 0.00095032, -0.15967737, 0.1142317, 0.09970731, 0.19694628, 0.14824945, -0.16927442, -0.05686397, -0.16001433, 0.17581166, -0.0929436, -0.08144436, -0.02184111, 0.15690142, 0.01979637, 0.03833535, 0.11039752, 0.05477306, 0.10497133, 0.10133681, -0.0210151, -0.06635367, -0.02925796, -0.12960085, -0.04181282, 0.04048129, -0.06193779, 0.04162695, 0.16465828, 0.14097202, 0.15634513, -0.02778068, -0.19494152, -0.04806024, 0.08313479, -0.16694908, 0.13308097, 0.10937294, -0.21071085, -0.1882103] +sub:[0.09883063, 0.17874897, -0.16482326, 0.24482581, 0.04196369, -0.11601446, 0.03003301, 0.13717915, -0.11311945, -0.02674848, -0.08563223, 0.1461973, -0.20784053, 0.02278476, -0.17754978, 0.08743756, 0.07291452, 0.15215982, 0.09928902, -0.05416673, -0.11615059, 0.10966311, 0.01083728, 0.19936693, 0.23748717, -0.05537945, -0.1050532, -0.38493237, 0.0951113, -0.0026442, -0.18164179, 0.17038183, 0.03349147, 0.05547187, 0.19279571, -0.06346135, 0.04358225, 0.04602193, -0.14518127, -0.12142047, -0.20232342, 0.17818764, 0.20893128, 0.20176856, -0.14625004, -0.05381666, 0.12352304, 0.1797062, -0.05961331, 0.05230281, -0.18152395, -0.07168846, -0.06180314, -0.11982168, -0.19573867, 0.01431415, 0.02497256, -0.13569371, 0.04815729, -0.2026115, 0.14123692, 0.19859178, -0.04513481, -0.12013336, -0.11387958, -0.05916243, 0.03674304, 0.03634093, 0.19997998, -0.07440074, 0.00057926, 0.04980087, 0.05253602, 0.06275474, 0.05220722] +switch:[0.18504432, 0.43945542, 0.43555775, 0.26224315, 0.31630325, -0.21685877, -0.26169533, 0.24154828, -0.18381861, -0.04052582, 0.3414471, 0.28438884, -0.36482567, 0.03211465, -0.35501167, 0.08055121, 0.54916084, -0.29969764, 0.20845746, 0.30635843, 0.21266244, 0.02487791, -0.1139953, 0.28301284, 0.45431164, -0.17648576, 0.1622794, 0.546009, -0.48750797, 0.26462522, 0.12574409, -0.02765214, 0.0812884, 0.09094796, -0.45485052, 0.37017122, 0.04626472, 0.0946198, 0.27713907, 0.23819582, 0.050641, 0.17909178, -0.40245947, 0.33154202, -0.20576447, -0.09320801, -0.32193214, -0.0731267, -0.10685159, -0.29610917, -0.35358602, -0.14318074, -0.5852318, -0.16974322, 0.03353741, 0.01341712, 0.23685636, -0.01623508, 0.07949368, 0.19597991, -0.2829223, -0.34610003, 0.40758792, -0.19189954, -0.20244965, -0.09853499, 0.09310704, 0.08823697, -0.21046965, 0.09861161, 0.00750976, 0.05658107, -0.13703121, 0.06423699, 0.10414697] +trunc:[-0.15799908, 0.15801533, -0.1242532, -0.21200514, 0.03278058, -0.17850026, 0.25926444, 0.08365627, -0.10823797, -0.03377144, -0.00398958, 0.1450703, -0.21491024, 0.01859963, -0.19638193, 0.2446366, 0.03697384, 0.15621942, -0.17633978, -0.06811865, -0.12074214, 0.095064, 0.05019038, 0.1407721, 0.01325525, 0.09639622, -0.20354162, 0.12929055, 0.04000989, 0.15922585, -0.16977249, 0.1599534, 0.14137667, 0.05241567, 0.12500794, -0.06056188, 0.02216591, 0.03179351, -0.11531655, -0.11397507, -0.17749478, 0.19828635, 0.1965053, 0.07451422, -0.19082734, 0.00196706, 0.09327761, 0.13195777, -0.04368127, 0.03892864, -0.19799219, -0.07980189, -0.11973812, -0.09194604, -0.12852849, -0.00827818, 0.02874178, -0.16207254, 0.03897946, -0.19897982, -0.2156134, 0.22539799, -0.13306002, -0.09724879, -0.09999408, -0.04678461, 0.05268745, 0.04703225, 0.16160288, -0.07583094, 0.04995457, 0.11012611, 0.04634674, 0.02214188, 0.04503505] +udiv:[-0.07606027, 0.2444226, -0.11818068, 0.00922437, 0.0390295, -0.10537817, 0.05272108, 0.16839781, -0.0796544, -0.00523368, -0.13530503, -0.0984704, -0.24518521, 0.10929733, -0.02662787, 0.04361172, -0.03817885, 0.23174277, 0.12060095, 0.02063057, 0.08005672, 0.15417892, -0.07979519, 0.15342703, 0.23800066, 0.10488119, -0.21502419, -0.0568368, 0.16768534, -0.14709146, -0.22912937, 0.08095236, -0.18286258, 0.04348898, 0.08500523, -0.04992688, 0.05009996, 0.03727436, -0.14909407, -0.14678855, -0.22199015, 0.08893611, 0.07501223, 0.08875467, -0.08010735, 0.15229508, 0.09125017, 0.19528364, -0.05801836, 0.04915029, -0.19033805, -0.12289941, -0.0513588, -0.0425952, 0.18342853, 0.21552894, 0.24382645, 0.01269669, 0.04144744, -0.20555417, -0.37631366, 0.05906312, -0.07460591, -0.10203534, -0.10544115, 0.0529982, 0.01022402, 0.02798656, 0.2143403, 0.0382891, -0.01267191, 0.10560723, 0.03542716, 0.07388954, 0.03031381] +uitofp:[-0.19302252, 0.1018251, -0.18166903, -0.1442589, -0.09532873, -0.19498377, 0.24626957, 0.11724032, -0.09888735, -0.02787492, 0.18139073, 0.15968928, 0.09880982, 0.01320287, -0.11574198, 0.19606762, -0.00375778, -0.17530411, -0.1964242, 0.1246192, -0.18433478, -0.21202722, 0.13052015, 0.13952951, 0.02445625, -0.25830445, -0.0800626, -0.07901483, -0.20275612, -0.16997945, 0.03984687, 0.08061361, 0.14807451, 0.10070364, 0.08560546, -0.02508404, 0.02763044, 0.06037147, -0.13433568, -0.164586, -0.17119062, 0.1965365, 0.03739766, 0.22387137, -0.09499644, -0.07127535, 0.10686409, -0.09469698, -0.05890173, 0.18366006, -0.21277738, -0.14103873, -0.05528907, -0.08951978, -0.18175197, 0.00919391, -0.15266953, -0.10416534, 0.00331969, 0.10685817, -0.03519263, 0.16045196, 0.1789714, -0.14217623, -0.14721371, -0.0546411, 0.08560245, 0.05068568, 0.05723847, 0.04873477, 0.04082363, -0.06232882, -0.18523395, 0.03794456, 0.07440113] +unknownTy:[0.01551174, -0.1435919, 0.01007901, -0.00957842, -0.14378151, 0.09587656, 0.1667376, -0.15322988, 0.10642286, 0.15228656, -0.10895553, -0.09635285, 0.14035335, -0.15117297, 0.1696388, -0.12112683, -0.11432681, -0.0371678, -0.06227292, 0.06549551, -0.01391593, -0.05097401, 0.13224007, -0.13626784, -0.1420951, 0.02632097, -0.05536637, -0.08034272, 0.02845144, -0.06568822, -0.06297023, 0.01303792, -0.12123713, -0.10930884, -0.02699326, -0.03124471, -0.14914593, -0.1219582, 0.07858317, 0.15857954, 0.10074021, -0.14246671, -0.05899359, -0.1336706, 0.14865333, -0.0947776, -0.07239415, -0.15813538, 0.13062732, 0.01381315, 0.13771541, -0.16170576, 0.01325906, 0.09795707, 0.07013485, -0.03732455, -0.12424755, -0.0130874, -0.05599476, 0.1575643, -0.06557861, -0.05022219, 0.03758768, 0.09647081, 0.12693794, 0.13695292, 0.12372465, -0.14400858, -0.06769843, -0.01190318, 0.14542519, -0.10191257, -0.01646549, 0.10868472, -0.13793077] +unreachable:[-0.19723187, -0.07599054, 0.03231944, 0.20548742, 0.23399253, -0.13633507, -0.07326956, 0.10415623, -0.05290673, 0.00840791, -0.03562344, 0.14457016, -0.17257336, 0.06215099, 0.08059645, -0.03542479, -0.00963129, 0.08039452, 0.10734174, -0.25295654, -0.15467307, -0.23945545, -0.11313187, 0.14184445, -0.07335886, -0.12188421, 0.03679744, 0.16979688, -0.13334289, 0.11316293, -0.21514986, -0.04767802, -0.05794778, 0.07579046, -0.14783724, -0.2650891, -0.00540755, -0.02775195, -0.03930768, 0.07340709, -0.05773142, 0.06686997, 0.19820468, 0.18151519, -0.0642269, 0.16748163, -0.1048004, 0.14876708, -0.05695693, 0.26744986, 0.10994709, -0.07962517, 0.19615541, -0.05762282, -0.17683895, -0.09227378, -0.20505084, 0.05896708, 0.02779803, -0.15971215, -0.161087, -0.08352805, -0.14597267, -0.07582328, -0.05785902, 0.00042929, -0.14370391, 0.04582885, 0.01706188, -0.2698227, 0.08668849, 0.07488413, -0.15432313, -0.02799117, 0.05102365] +urem:[-1.03779197e-01, 2.48738423e-01, -1.16186447e-01, -2.38725822e-03, 3.29375677e-02, -9.83382910e-02, 9.25296992e-02, 1.24680631e-01, -7.36690313e-02, 2.53406093e-02, 1.81746840e-01, 1.41450047e-01, -2.23567501e-01, 9.92782861e-02, 2.04890668e-01, 2.05459997e-01, -1.53276538e-02, -1.97503909e-01, 1.24440975e-01, 3.39385033e-01, 5.60318446e-03, 1.52665988e-01, -1.51932150e-01, 1.45712912e-01, 2.43214026e-01, 3.73440832e-02, -2.53660351e-01, -5.54296598e-02, 1.51768133e-01, -1.93652183e-01, 4.33704332e-02, 8.88528824e-02, -2.62920447e-02, 4.13356833e-02, 1.03296310e-01, -5.48671819e-02, 8.36464111e-04, 2.99944151e-02, -1.63681701e-01, -1.74848124e-01, -2.16284230e-01, 1.17242754e-01, 6.51326403e-02, 3.45015787e-02, -8.19151923e-02, 1.87723950e-01, 9.28124860e-02, 2.10479259e-01, -6.23065121e-02, 4.49833088e-02, -2.11531788e-01, -1.45285025e-01, -5.34012616e-02, -6.06970005e-02, 2.60277689e-02, 2.28397161e-01, 1.32175952e-01, 4.95526846e-03, 3.95628810e-02, -2.02173382e-01, -9.36997235e-02, 6.43078089e-02, -1.44763887e-01, -8.65202099e-02, -1.52457312e-01, 5.99495023e-02, 8.26535001e-03, 3.35136093e-02, 2.19489664e-01, 6.45155236e-02, 1.43292854e-02, 1.09075055e-01, 3.24562920e-04, 8.76325741e-02, 3.61402184e-02] +variable:[0.34946224, -0.19019732, 0.07578591, 0.02897718, 0.05939914, 0.09255851, -0.03282658, -0.0090376, -0.32591802, 0.22781034, -0.25443596, -0.24814288, 0.23791632, -0.23426986, 0.19043575, -0.09448758, 0.26265177, -0.04971005, -0.44241226, 0.054227, 0.17631966, 0.14941601, -0.27322114, 0.0413098, -0.14805423, 0.01182298, 0.13030513, -0.04307371, 0.10640893, -0.03138629, -0.01959838, -0.18702428, 0.15458089, -0.10429435, 0.2039723, -0.13720034, 0.29253316, 0.30620822, -0.36029872, -0.34622905, 0.0085082, -0.08486366, -0.00206584, -0.2243905, 0.10251586, 0.05383456, -0.04545249, 0.0111686, 0.18918674, -0.0227955, -0.05147374, 0.08439591, 0.0916481, -0.33703306, 0.1688015, 0.13786754, -0.2861574, 0.17359604, -0.1390886, 0.28799313, 0.01379709, -0.04141701, -0.2446216, 0.09028133, 0.03619798, -0.30685475, -0.09645826, 0.28463972, 0.00339627, 0.00310675, -0.22293043, -0.15761617, 0.12691037, 0.2626032, 0.2581085] +vectorTy:[0.01924545, -0.10047846, -0.0207595, -0.03213615, -0.05755702, 0.111853, -0.05126722, -0.14782767, 0.09039567, 0.14130563, 0.10620538, 0.05215713, 0.2449533, -0.12985094, 0.05321037, -0.14473073, -0.13760532, 0.01916095, -0.09587242, -0.13404803, 0.04011045, -0.03267908, 0.2632289, -0.1206261, -0.13523142, 0.05740057, -0.26359946, -0.00203709, 0.17603761, -0.17686865, -0.0594833, 0.12250432, -0.17104226, -0.07775503, 0.03946605, -0.1254066, -0.15979595, -0.12681052, 0.05566283, 0.00327375, 0.06243605, -0.06536931, 0.11056228, -0.10833837, 0.12949127, -0.2069612, 0.19081448, -0.26199454, 0.1620367, -0.02223855, -0.2592795, 0.04499221, 0.00045452, 0.10600089, 0.0538751, 0.13719264, -0.1602509, -0.01697994, -0.05173802, -0.08095637, 0.05421554, 0.05259135, 0.20910649, -0.15834016, -0.02733349, 0.19103193, 0.24459204, -0.13528448, -0.01581658, 0.08329262, -0.16949055, -0.15230547, -0.02274264, -0.12891859, -0.13018787] +voidTy:[-0.061326, -0.17669086, 0.12545134, -0.01617306, -0.16802354, 0.10747934, 0.08065147, -0.19317791, 0.15066993, 0.12109338, -0.12275604, -0.10432348, 0.12200886, -0.10591377, 0.17020199, -0.158907, -0.13004076, -0.03174711, 0.03195576, 0.06950434, -0.02492143, -0.18072803, 0.07125335, -0.13420853, -0.20071271, 0.03469162, -0.04936522, 0.1398541, -0.05204892, -0.06660047, 0.01561067, 0.00763709, -0.2093901, -0.13374195, -0.0347373, 0.10955653, -0.18764363, -0.19372213, 0.12362833, 0.20651025, 0.2071469, -0.17849223, -0.12355274, -0.10006152, 0.16707808, 0.01705527, -0.07375366, -0.06328662, 0.11909553, 0.18020234, 0.03544328, 0.13358958, 0.12168103, 0.16216294, 0.11393836, -0.11889113, -0.01668723, 0.0462836, 0.15403059, -0.03172195, 0.11577552, -0.14457542, -0.02979214, 0.10728759, 0.14393401, 0.15189333, 0.08763766, -0.1834039, -0.16329639, 0.13051145, 0.14288281, -0.00671209, -0.12653272, 0.15909481, -0.16999884] +xor:[-0.07455786, 0.16715275, -0.14468741, -0.07621277, 0.03204519, -0.10287224, 0.32985628, 0.11150161, -0.11987245, -0.02437313, -0.07570856, 0.14419538, -0.2224779, 0.01031712, -0.2765939, -0.01631433, 0.00549595, 0.10991857, 0.14155118, -0.04307441, -0.13198636, 0.08614279, -0.09146988, 0.26521686, 0.22853024, 0.13277547, -0.2110845, -0.10619276, -0.04985113, 0.18869734, 0.05740701, 0.15613872, 0.07506935, 0.0472548, 0.13955116, -0.08029979, 0.02304715, 0.03142639, -0.12660795, -0.12721755, -0.20504181, 0.14785768, 0.12347214, 0.0669478, -0.11030468, -0.06073261, 0.1137653, 0.20449352, -0.03639516, -0.05577605, -0.2002716, -0.07669689, -0.05608141, -0.07678374, -0.0118753, 0.17441204, -0.27891317, -0.02888634, 0.0484849, -0.20040192, 0.11861041, 0.15237367, 0.15149045, -0.09543461, -0.11857695, -0.04791029, 0.04368738, 0.04123551, 0.18757796, -0.06863275, 0.01621565, 0.11146253, 0.10789274, 0.02389193, 0.04289607] +zext:[-0.10371742, 0.14221004, -0.13298006, 0.23650487, 0.02504659, -0.1558534, 0.04980243, 0.10529575, -0.0867353, -0.0286998, 0.00639361, 0.14572915, -0.16362962, 0.0171505, -0.1476239, 0.2197204, 0.06600441, 0.13680908, 0.0433678, -0.06812242, -0.11591819, 0.03261645, 0.05156131, 0.14571871, 0.2028426, 0.11325595, -0.09031556, -0.00272263, 0.08558092, 0.04824093, -0.17558345, 0.15323906, 0.04586327, 0.05361458, 0.12586784, -0.12731417, 0.02227405, 0.04016992, -0.11015071, -0.11093915, -0.15416315, 0.14074808, 0.1820509, 0.18369122, -0.15217939, -0.01421617, 0.08675517, 0.15473503, -0.04504943, 0.04100595, 0.00469663, -0.06961203, -0.07134401, -0.06580366, -0.17333157, 0.00489506, 0.021513, -0.33183601, 0.03292152, -0.17519909, -0.06210884, 0.35711867, -0.0346562, -0.12306777, -0.09380004, -0.04140116, 0.04775601, 0.02219661, 0.15293652, -0.05633859, 0.01147127, 0.03094926, 0.04313596, 0.03127145, 0.05043723] \ No newline at end of file From f3360077a417aa98339e6f2ad467c311fe07559f Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Mon, 18 Nov 2024 17:11:59 +0530 Subject: [PATCH 4/8] pre-commit changes --- seed_embeddings/OpenKE/run_training_ray.sh | 13 +++---- seed_embeddings/gen_triplets.sh | 16 ++++---- seed_embeddings/test_preprocess.py | 45 ++++++++++++---------- seed_embeddings/triplets.sh | 2 +- vocabulary/seedEmbeddingVocab100D.txt | 2 +- vocabulary/seedEmbeddingVocab300D.txt | 2 +- vocabulary/seedEmbeddingVocab75D.txt | 2 +- 7 files changed, 43 insertions(+), 39 deletions(-) diff --git a/seed_embeddings/OpenKE/run_training_ray.sh b/seed_embeddings/OpenKE/run_training_ray.sh index 44497718f..d89bb8fe7 100644 --- a/seed_embeddings/OpenKE/run_training_ray.sh +++ b/seed_embeddings/OpenKE/run_training_ray.sh @@ -5,8 +5,8 @@ INDEX_DIR="/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed" # Ensure the directory exists if [ ! -d "$INDEX_DIR" ]; then - echo "Directory $INDEX_DIR does not exist. Exiting." - exit 1 + echo "Directory $INDEX_DIR does not exist. Exiting." + exit 1 fi echo "$INDEX_DIR exists. Starting Training" @@ -17,10 +17,9 @@ ERR_PATH="$INDEX_DIR/err.txt" echo "LOGS stored at $LOG_PATH" echo "ERR stored at $ERR_PATH" - # Execute the Python script with the directory variable python3 generate_embedding_ray.py \ - --index_dir=/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed \ - --is_analogy=True \ - --dim=75 \ - > /Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/log.txt 2> /Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/err.txt + --index_dir=/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed \ + --is_analogy=True \ + --dim=75 \ + >/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/log.txt 2>/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/err.txt diff --git a/seed_embeddings/gen_triplets.sh b/seed_embeddings/gen_triplets.sh index 26d2ddf45..ede7f4c23 100644 --- a/seed_embeddings/gen_triplets.sh +++ b/seed_embeddings/gen_triplets.sh @@ -5,16 +5,16 @@ PATH_VAR="/Pramana/ML_LLVM_Tools/IR2Vec_data/" echo "Data stored at $PATH_VAR" bash triplets.sh \ - ../build \ - 2 \ - "${PATH_VAR}ir_paths.txt" \ - "${PATH_VAR}triplets17.txt" \ - /usr \ - > "${PATH_VAR}log.txt" \ - 2> "${PATH_VAR}err.txt" + ../build \ + 2 \ + "${PATH_VAR}ir_paths.txt" \ + "${PATH_VAR}triplets17.txt" \ + /usr \ + >"${PATH_VAR}log.txt" \ + 2>"${PATH_VAR}err.txt" echo "Triplets Generation Done" echo "Number of Triplets is " -cat ${PATH_VAR}triplets17.txt | wc -l \ No newline at end of file +cat ${PATH_VAR}triplets17.txt | wc -l diff --git a/seed_embeddings/test_preprocess.py b/seed_embeddings/test_preprocess.py index 69e4addf0..ffe648c2b 100644 --- a/seed_embeddings/test_preprocess.py +++ b/seed_embeddings/test_preprocess.py @@ -22,7 +22,7 @@ def getEntityDict(config): for line in file: words = line.strip().split() uniqueWords.update(words) - + uniqueWords = sorted(uniqueWords) print(f"Unique entities found {len(uniqueWords)}") @@ -65,16 +65,17 @@ def getRelationDict(config): return relationDict + def create_write_str(a, b, c): return f"{a}\t{b}\t{c}\n" + def createTrain2ID(entityDict, relationDict, config): print("Generating train set") opc = "" nol = 0 temp_file_path = os.path.join(config.preprocessed_dir, "train2id_temp.txt") - for filename in sorted(os.listdir(config.tripletFolder)): filepath = os.path.join(config.tripletFolder, filename) if os.path.isfile(filepath): @@ -91,23 +92,29 @@ def createTrain2ID(entityDict, relationDict, config): print(s[0] + " not found in entitiyDict") if "Next" not in relationDict: print("Next not found in relationDict") - temp_file.write(create_write_str( - entityDict[opc], entityDict[s[0]], relationDict["Next"] - )) + temp_file.write( + create_write_str( + entityDict[opc], + entityDict[s[0]], + relationDict["Next"], + ) + ) nol += 1 opc = s[0] - temp_file.write(create_write_str( - entityDict[opc], - entityDict[s[1]], - relationDict["Type"] - )) + temp_file.write( + create_write_str( + entityDict[opc], entityDict[s[1]], relationDict["Type"] + ) + ) nol += 1 for i, arg in enumerate(range(2, s_len)): - temp_file.write(create_write_str( - entityDict[opc], - entityDict[s[arg]], - relationDict[f"Arg{i}"] - )) + temp_file.write( + create_write_str( + entityDict[opc], + entityDict[s[arg]], + relationDict[f"Arg{i}"], + ) + ) nol += 1 final_file_path = os.path.join(config.preprocessed_dir, "train2id.txt") @@ -121,7 +128,7 @@ def createTrain2ID(entityDict, relationDict, config): final_file.write(line) # Remove the temporary file to clean up os.remove(temp_file_path) - + shutil.rmtree(config.tempDir) @@ -151,11 +158,9 @@ def createTrain2ID(entityDict, relationDict, config): i += 1 config.preprocessed_dir = config.preprocessed_dir + str(i) os.makedirs(config.preprocessed_dir) - + # create a temp folder to store train-temp-ids - config.tempDir = os.path.join( - os.path.dirname(config.tripletFolder), "temp_train" - ) + config.tempDir = os.path.join(os.path.dirname(config.tripletFolder), "temp_train") i = 0 while os.path.exists(config.tempDir): i += 1 diff --git a/seed_embeddings/triplets.sh b/seed_embeddings/triplets.sh index 029893778..f7c4afece 100644 --- a/seed_embeddings/triplets.sh +++ b/seed_embeddings/triplets.sh @@ -76,7 +76,7 @@ while read p; do # rm -rf "$tmpfile" done & if [ $counter == 100 ]; then - echo "========= PAUSE =========" + echo "========= PAUSE =========" rm -rf ${PATH_VAR}/tmp/IR2Vec-CollectIR* sleep 3 counter=0 diff --git a/vocabulary/seedEmbeddingVocab100D.txt b/vocabulary/seedEmbeddingVocab100D.txt index 0fe38d5be..e115dd048 100755 --- a/vocabulary/seedEmbeddingVocab100D.txt +++ b/vocabulary/seedEmbeddingVocab100D.txt @@ -65,4 +65,4 @@ variable:[3.12375128e-02, 1.30539209e-01, 1.61723588e-02, -6.49467111e-02, -1.95 vectorTy:[0.00614031, 0.09907117, -0.0414057, -0.10939466, -0.11920051, 0.01146506, 0.04077564, 0.13891624, -0.20420505, 0.12939502, -0.1009404, -0.0222585, -0.12395614, -0.12427059, -0.03760861, -0.20657997, -0.169934, 0.12750679, -0.07468151, -0.06033178, 0.01375014, -0.18789075, 0.00299274, -0.18556875, 0.00467018, 0.1437214, 0.01256599, -0.0175404, -0.21589653, 0.09700344, -0.1231083, 0.04066857, -0.03626051, 0.01938053, 0.00218011, 0.07265908, -0.05358825, 0.09936166, -0.12938951, 0.07689919, 0.11531569, -0.11654866, 0.07266484, -0.11887363, -0.04571981, -0.04815354, -0.00413034, 0.02322594, 0.18259148, -0.04733286, -0.12163141, -0.09418673, 0.06626461, 0.1009896, 0.22476521, 0.05066481, -0.08478651, -0.03744179, -0.16673774, -0.24311247, 0.03751571, -0.14411871, 0.10384535, 0.10013557, -0.09202613, -0.02355278, -0.08586396, -0.12270134, 0.03617898, 0.14075568, -0.00675538, -0.15505026, 0.14897585, -0.06937972, -0.01651718, 0.16235755, -0.03182485, -0.07366523, -0.19203182, -0.08594368, -0.10911306, 0.02290769, 0.04204687, 0.0020555, -0.01825168, 0.09733547, -0.12195294, -0.0061005, 0.1133976, -0.15671504, 0.11427031, 0.17694286, 0.04769726, 0.12199783, 0.07246605, -0.0687287, 0.10021547, -0.04218293, -0.01808224, -0.15808946] voidTy:[-1.31454999e-02, -1.55033112e-01, -8.21222141e-02, -1.44160434e-03, 1.52217194e-01, -7.46934041e-02, 8.06317851e-02, 1.71387345e-01, 1.65648490e-01, -5.83195081e-03, -1.18014112e-01, 4.26951796e-02, -1.46619615e-03, 2.06327304e-01, -1.04272991e-01, -1.25803515e-01, -1.36984318e-01, -8.03959444e-02, -1.50751173e-01, -4.16148081e-02, -1.16978168e-01, -1.44305110e-01, 7.98624307e-02, -1.42257750e-01, -6.15743361e-02, -3.15034650e-02, 1.40135676e-01, -1.19731687e-02, 1.85350198e-02, -1.16543829e-01, -1.33267075e-01, -4.73312102e-02, -1.88883841e-01, -1.05455235e-01, 1.79171771e-01, -5.77818416e-02, -9.38186124e-02, 4.20276448e-02, -1.02798328e-01, 2.17100635e-01, -7.46888444e-02, -1.73076257e-01, -1.11067481e-01, -1.10583426e-02, 1.48684103e-02, -4.79153022e-02, 6.10323101e-02, 5.79626262e-02, 1.77542493e-01, -3.47119593e-03, -1.29478574e-01, 4.96839248e-02, 1.17401265e-01, -1.42710330e-02, 1.74067572e-01, 8.42365157e-03, -1.50812671e-01, 1.46133183e-02, 8.24004337e-02, -6.15238175e-02, 3.56396064e-02, -1.69414461e-01, 7.34013766e-02, 2.49002725e-01, 9.16551128e-02, 2.88306084e-02, 6.41968846e-02, -4.25490625e-02, -3.53730321e-02, 1.73063800e-01, -4.32360172e-02, 1.62903348e-03, 3.86096127e-02, 4.57001477e-02, -8.34977999e-02, 5.81580289e-02, -8.52416903e-02, -2.52661481e-02, 7.84361809e-02, 5.01761846e-02, 1.35188088e-01, -1.93234514e-02, -1.32053152e-01, 4.92609218e-02, 1.33746356e-01, -1.75845444e-01, 9.48965773e-02, -1.98444426e-01, 1.54817805e-01, -1.12670604e-02, 1.53576940e-01, -8.95969942e-02, -8.01482871e-02, -8.92878379e-05, -5.86797260e-02, 1.52423784e-01, 1.28768593e-01, -3.94945592e-02, 9.92924720e-03, -8.63720849e-02] xor:[-1.49981141e-01, 4.36536781e-02, -1.24550359e-02, 1.21966712e-01, 6.21201694e-02, 6.57830946e-03, -1.91215426e-01, -1.66700765e-01, -6.11803308e-02, -7.90970027e-02, 3.26337218e-02, 1.01216786e-01, 1.92841829e-03, 7.38810226e-02, 1.03037655e-01, -2.35263202e-02, -1.66519471e-02, -6.90748962e-03, 5.65598607e-02, -2.46901605e-02, 1.25142276e-01, -4.43252288e-02, -3.59442569e-02, 3.08438987e-02, 2.68215612e-02, 1.82665903e-02, 7.73535483e-03, 1.48416251e-01, -8.32298398e-02, -1.27774579e-02, 1.57624856e-01, -1.01150371e-01, 2.15986192e-01, 1.38752103e-01, -2.39511162e-01, 1.15360692e-01, 9.19752009e-03, -4.53606024e-02, 1.39778838e-01, -1.17796458e-01, -3.65246348e-02, 5.63262515e-02, 4.62576002e-02, 1.29949778e-01, 1.58541426e-01, -1.48554623e-01, 1.49648502e-01, 1.18453257e-01, -5.54336458e-02, -1.54992327e-01, 1.21360473e-01, 2.23420709e-01, -1.25548735e-01, -2.29217857e-02, 1.18427962e-01, 6.53396267e-03, 4.85412218e-02, 1.54797554e-01, -3.15481477e-04, 8.99947286e-02, 5.38614765e-03, 6.14333972e-02, -3.79124917e-02, -4.19981033e-02, 1.40221352e-02, 2.28800386e-01, -7.07628056e-02, -1.85554147e-01, -1.74320992e-02, -1.49412945e-01, -1.90162316e-01, -7.42519572e-02, 9.76577550e-02, -1.12146333e-01, -1.56878471e-01, -3.29879314e-01, -1.15046673e-01, 3.92702259e-02, 8.31557512e-02, -1.33685963e-02, -4.02512923e-02, -6.21833093e-02, -1.69922322e-01, -4.68634591e-02, 1.47102894e-02, 2.11586222e-01, -6.62315497e-03, 2.73987614e-02, -1.42763287e-01, 2.47503016e-02, 2.38403380e-02, 1.67598560e-01, 1.89094707e-01, -1.77333981e-01, -1.90008543e-02, -2.39372328e-01, 1.61315650e-01, 7.32234865e-02, -1.50303682e-02, 4.54384461e-02] -zext:[-0.008744, -0.0384249, 0.08514123, 0.12929578, -0.0286111, -0.02888603, -0.17243147, 0.1920347, -0.0361572, 0.01190349, -0.00490175, 0.00542153, 0.04894925, -0.00886345, 0.06200792, -0.11479706, 0.01231216, 0.04795979, 0.03217929, -0.0994228, 0.12039724, 0.06555183, 0.15567386, 0.04233738, 0.10978765, 0.02713929, -0.23896058, -0.09041855, 0.02737135, -0.09576256, 0.04238113, -0.01313082, 0.22438407, 0.04811748, -0.24110278, -0.0234723, 0.1158933, -0.08278205, -0.02953329, -0.11423916, 0.02182137, 0.1316527, 0.01127502, 0.09107937, -0.05128013, -0.16336486, 0.12351633, 0.13031231, -0.0520529, -0.01102762, 0.04531654, 0.1607449, -0.04068224, -0.15056531, 0.09390696, -0.02652217, -0.05884719, 0.12513238, 0.01308026, -0.03914403, 0.21371806, 0.08978537, -0.12550874, -0.18773708, 0.07304002, 0.21201572, 0.08644984, -0.01204834, -0.10906386, 0.19325328, 0.10863314, 0.16710639, 0.00397359, 0.0546264, 0.09839225, -0.00801505, -0.1920622, -0.08407442, -0.02821298, 0.06373032, 0.08373458, 0.12356852, 0.1342439, -0.24494177, -0.05041875, 0.2623801, -0.0771627, -0.07665291, -0.13498843, 0.17604399, 0.13967144, 0.14620651, 0.24421115, -0.25556493, -0.22321175, 0.05123251, -0.02507322, 0.05075503, 0.12329383, 0.01088332] \ No newline at end of file +zext:[-0.008744, -0.0384249, 0.08514123, 0.12929578, -0.0286111, -0.02888603, -0.17243147, 0.1920347, -0.0361572, 0.01190349, -0.00490175, 0.00542153, 0.04894925, -0.00886345, 0.06200792, -0.11479706, 0.01231216, 0.04795979, 0.03217929, -0.0994228, 0.12039724, 0.06555183, 0.15567386, 0.04233738, 0.10978765, 0.02713929, -0.23896058, -0.09041855, 0.02737135, -0.09576256, 0.04238113, -0.01313082, 0.22438407, 0.04811748, -0.24110278, -0.0234723, 0.1158933, -0.08278205, -0.02953329, -0.11423916, 0.02182137, 0.1316527, 0.01127502, 0.09107937, -0.05128013, -0.16336486, 0.12351633, 0.13031231, -0.0520529, -0.01102762, 0.04531654, 0.1607449, -0.04068224, -0.15056531, 0.09390696, -0.02652217, -0.05884719, 0.12513238, 0.01308026, -0.03914403, 0.21371806, 0.08978537, -0.12550874, -0.18773708, 0.07304002, 0.21201572, 0.08644984, -0.01204834, -0.10906386, 0.19325328, 0.10863314, 0.16710639, 0.00397359, 0.0546264, 0.09839225, -0.00801505, -0.1920622, -0.08407442, -0.02821298, 0.06373032, 0.08373458, 0.12356852, 0.1342439, -0.24494177, -0.05041875, 0.2623801, -0.0771627, -0.07665291, -0.13498843, 0.17604399, 0.13967144, 0.14620651, 0.24421115, -0.25556493, -0.22321175, 0.05123251, -0.02507322, 0.05075503, 0.12329383, 0.01088332] diff --git a/vocabulary/seedEmbeddingVocab300D.txt b/vocabulary/seedEmbeddingVocab300D.txt index 947d950a9..a2ccfa521 100755 --- a/vocabulary/seedEmbeddingVocab300D.txt +++ b/vocabulary/seedEmbeddingVocab300D.txt @@ -65,4 +65,4 @@ variable:[-0.01629216, -0.09777723, 0.03839657, 0.05520136, -0.11503527, 0.03848 vectorTy:[5.53421155e-02, 1.33608907e-01, -2.15619220e-03, 8.02479982e-02, 2.13209502e-02, 5.20178527e-02, -2.93410178e-02, -1.00442670e-01, -4.18430865e-02, 1.15563132e-01, -6.08426668e-02, -2.82086730e-02, -8.88065845e-02, 8.53280202e-02, -8.55240896e-02, 5.44183739e-02, -8.27901140e-02, 3.87444347e-02, -8.06568637e-02, -4.50414158e-02, -7.78749660e-02, 4.12446409e-02, 7.86406323e-02, 1.05876692e-01, -1.14972629e-01, 6.95829690e-02, 7.99261332e-02, 8.77107084e-02, 1.87230576e-02, -3.16335708e-02, 1.48404194e-02, -8.12138543e-02, -3.56862247e-02, 7.23692998e-02, -5.74139729e-02, -9.18918923e-02, -9.05989856e-02, -7.40465298e-02, 6.47915155e-02, -9.97096598e-02, -1.03054784e-01, -3.68701257e-02, 4.23355326e-02, 1.10219054e-01, -8.81426111e-02, -3.14333551e-02, 2.31629107e-02, 6.62349537e-02, -1.18904725e-01, -5.06771207e-02, 1.23731708e-02, -2.71734828e-03, 1.06612638e-01, 6.73199818e-02, 1.95421167e-02, 9.20547619e-02, 3.90612483e-02, -2.78709158e-02, -2.92324205e-03, -1.07485138e-01, -6.11473136e-02, -1.71411224e-02, -1.83727941e-04, -4.30637300e-02, 7.06890076e-02, -1.03471212e-01, 9.00942460e-03, -1.33590400e-02, 1.14654060e-02, -9.29787308e-02, 1.94686768e-03, -4.17752340e-02, -3.72679648e-03, -6.72483966e-02, -1.11449659e-01, 3.57768610e-02, -7.28553236e-02, -1.06348053e-01, -2.73238681e-02, -2.04643351e-03, 4.70392816e-02, 9.02025849e-02, 2.94014066e-02, -1.03574097e-01, 8.07156488e-02, 9.62540731e-02, 1.53542515e-02, 1.19479187e-01, -1.03970073e-01, 7.91625753e-02, 1.21975534e-01, -7.08612148e-03, 1.24001078e-01, 2.32710876e-02, -4.08721343e-03, -6.38881251e-02, -4.78194728e-02, -1.02294825e-01, -7.60328248e-02, 1.10782951e-01, 9.86737460e-02, 5.16973734e-02, -8.84283707e-02, -6.30152151e-02, 2.95355320e-02, -1.40802175e-01, -1.15627246e-02, 4.16795425e-02, -5.54577559e-02, -5.88624179e-02, 8.71381816e-03, -6.24904484e-02, 5.58684394e-02, 1.25102445e-01, -2.50951722e-02, -4.80986796e-02, -4.41297255e-02, -6.81495443e-02, 1.36902660e-01, -9.50971395e-02, -3.70450541e-02, -1.03082761e-01, -8.61019567e-02, 6.68521821e-02, -7.26967826e-02, 5.70401829e-03, -8.91418085e-02, -1.18906453e-01, -3.76791582e-02, 1.04915500e-01, -5.04345074e-02, 8.51659402e-02, 5.04147075e-02, 7.36734718e-02, -6.01187684e-02, -5.42885624e-02, 7.91606084e-02, 7.32247457e-02, -8.83845761e-02, -1.21541776e-01, -1.29945446e-02, -2.03425549e-02, 1.13642886e-01, 1.12140670e-01, -4.16885577e-02, -5.98448776e-02, -1.03030637e-01, 9.70366448e-02, -9.55483690e-02, 5.56493253e-02, 9.76668522e-02, 1.01523548e-01, 2.74246205e-02, -9.12521333e-02, 1.09802991e-01, -2.81786192e-02, 3.03223096e-02, 2.79103704e-02, -8.70596468e-02, 3.63978110e-02, 6.17491379e-02, 1.26610681e-01, 3.60873900e-02, 9.11327526e-02, -9.69242752e-02, -2.20911074e-02, -1.23354815e-01, 3.11630126e-02, -7.90482461e-02, -5.58691621e-02, 5.31811006e-02, 8.83010775e-02, -7.65118152e-02, 1.22970734e-02, -4.56351638e-02, 8.19622129e-02, 1.17143132e-02, -4.44222838e-02, 3.97068821e-02, 2.35160496e-02, -6.64624944e-02, 1.39394373e-01, -2.14883089e-02, -7.82428309e-02, -2.42266431e-03, 6.15155436e-02, 1.40822053e-01, 9.09307692e-03, -3.19313221e-02, 1.22642025e-01, -1.28189802e-01, -4.85562235e-02, 9.95016247e-02, 1.04958333e-01, 3.62773016e-02, 8.12006891e-02, 1.04224175e-01, 9.62942168e-02, -7.09690340e-03, -5.91106340e-02, -7.99357593e-02, -8.76007508e-03, -1.25480607e-01, -9.48668867e-02, 9.25299004e-02, 1.91330519e-02, 6.68985248e-02, -2.49783508e-02, 4.84815873e-02, -4.34554890e-02, 1.02105446e-01, 6.96814805e-02, -2.56995670e-02, 4.57899235e-02, 1.68405157e-02, -1.24047501e-02, 1.18550003e-01, -6.44795895e-02, -1.51046682e-02, -1.19289182e-01, 1.16141759e-01, 1.00575343e-01, -9.60371345e-02, -4.73918952e-03, 1.10749431e-01, -5.35958931e-02, -4.63391058e-02, -2.25058030e-02, 1.16108522e-01, 1.88172072e-01, -8.39872137e-02, 8.90197456e-02, 7.32791349e-02, -5.09157926e-02, -7.61434808e-03, -3.44017968e-02, -5.42915910e-02, 5.80383372e-03, -7.01269433e-02, 1.02433093e-01, -1.78447608e-02, -7.80769363e-02, 9.33202431e-02, 1.34775609e-01, 1.18725955e-01, -7.24161342e-02, -4.07766178e-02, 1.02458082e-01, -6.29112199e-02, 6.56502098e-02, -9.38110203e-02, -7.85830524e-03, -6.09830096e-02, -2.49394979e-02, -1.42400473e-01, 3.93424742e-02, -3.27503644e-02, -6.38505220e-02, 3.55770835e-03, 4.44747359e-02, -3.16368230e-02, -4.50681485e-02, -9.10736397e-02, -5.66643625e-02, -7.93907046e-02, 1.13842256e-01, 9.44488272e-02, -1.03080764e-01, 1.22655340e-01, 1.55185480e-02, 5.82478903e-02, 6.65233210e-02, -8.22357759e-02, 9.96319056e-02, -9.49792564e-02, 2.25283056e-02, -1.05717830e-01, 2.51925588e-02, -4.83843535e-02, -4.75782007e-02, 4.55139438e-03, -6.88359588e-02, -2.11462323e-02, 2.72639170e-02, 9.79139060e-02, 1.43348083e-01, 8.48840997e-02, 6.93859765e-03, -5.97659536e-02, 4.32787128e-02, -2.74392255e-02, 6.46894099e-04, -5.12101576e-02, -4.95420136e-02, 6.06116056e-02, -8.10029656e-02, -1.85541983e-03, -1.24030434e-01, 9.74044129e-02, 9.54677761e-02] voidTy:[8.62130895e-02, -7.29272664e-02, -2.66963020e-02, 6.77534640e-02, 1.10241488e-01, -9.89525542e-02, -2.29046494e-02, 4.23313156e-02, 5.50939217e-02, 8.06508735e-02, 7.73083046e-02, -3.25657874e-02, -9.66217294e-02, 2.63372026e-02, 8.57916623e-02, -3.44706757e-04, 1.09869808e-01, 1.10560544e-01, -8.38856101e-02, -7.33921155e-02, -8.79794210e-02, 9.14782658e-02, 1.12952888e-01, 8.31926465e-02, -8.28644931e-02, -3.15820379e-03, 1.21130228e-01, 1.23672090e-01, -4.87535968e-02, -6.59752339e-02, -2.54574306e-02, 7.66650140e-02, 1.09361947e-01, -6.92277029e-02, -1.84680261e-02, -9.38679725e-02, -3.38567272e-02, 7.15092048e-02, 9.35704112e-02, -3.61425383e-03, 6.26609325e-02, -9.83757377e-02, 1.13576651e-01, 2.49644723e-02, -3.79390568e-02, -7.19054639e-02, -1.84879787e-02, -4.26672176e-02, -6.91538379e-02, 9.81927849e-03, 1.61709879e-02, -8.79850686e-02, 9.33905095e-02, 7.55698085e-02, -9.67432633e-02, 9.71986447e-03, -5.21674640e-02, 4.62787896e-02, -5.05425110e-02, -5.45725338e-02, -1.22248217e-01, -5.02246358e-02, 9.13765207e-02, 2.13382002e-02, -5.30817993e-02, -4.89626117e-02, -6.38735145e-02, -9.02425051e-02, -9.07457620e-02, 8.77018347e-02, 1.05633708e-02, -3.84153910e-02, 1.30092502e-02, -8.78906548e-02, -2.40209866e-02, 7.30045587e-02, 8.03627372e-02, 8.74588862e-02, 6.87852874e-02, 1.20902713e-02, -1.11239746e-01, 7.96345770e-02, -8.32916945e-02, -8.59516487e-02, 9.27165076e-02, 8.25650916e-02, -1.80418305e-02, 1.58520937e-02, 2.25029457e-02, 1.08364513e-02, 7.87738115e-02, 5.39788902e-02, 3.11429128e-02, 4.36288230e-02, -1.45057142e-02, -6.38470650e-02, -3.76413427e-02, -1.03930943e-01, 1.18930805e-02, -2.71698404e-02, 7.21679926e-02, -7.78059885e-02, -7.94628263e-02, 5.22752739e-02, -5.48344962e-02, -1.76725052e-02, 1.04472861e-01, -6.50206804e-02, 2.79776566e-02, -6.40020892e-03, 1.05981957e-02, -8.77378508e-02, -4.08609323e-02, -4.85749319e-02, 5.91727495e-02, -8.32450390e-02, -6.05907328e-02, 1.06381461e-01, 1.25096587e-04, -4.73217852e-02, -1.43523470e-01, -7.79863521e-02, 3.41556072e-02, 7.94574693e-02, -2.86432318e-02, -3.64351273e-02, -2.65719201e-02, -7.78519958e-02, 4.97176163e-02, 1.55726506e-03, -7.85344467e-02, 1.03897475e-01, 1.20485559e-01, 4.91863899e-02, 1.00595072e-01, -1.08241327e-01, 1.06198661e-01, 3.54844369e-02, -4.68714572e-02, -4.44086939e-02, 2.99999341e-02, 6.84340522e-02, -4.47028950e-02, 5.45791350e-02, -1.06437383e-02, 1.06179476e-01, 4.36124653e-02, -3.38207446e-02, -7.81143159e-02, -7.25495815e-02, -1.56273115e-02, 1.10078052e-01, -7.98655227e-02, -7.63163939e-02, -5.26205599e-02, -5.21836895e-03, -1.08582258e-01, 9.79576781e-02, 7.62454197e-02, -4.51945253e-02, 9.97665226e-02, 9.63761955e-02, -6.41326234e-03, 1.10104084e-01, -9.07925665e-02, 1.07576242e-02, -1.30429715e-02, -1.29069895e-01, 7.78857693e-02, 5.00710979e-02, -6.28620433e-03, 1.14759400e-01, -5.15455753e-02, -4.93109645e-03, -6.10524192e-02, -1.72943827e-02, -9.50746536e-02, 2.55615767e-02, 1.30721807e-01, 3.88185382e-02, -7.88007006e-02, -1.84377618e-02, 3.21521610e-02, 1.08518504e-01, -4.64134067e-02, -3.75916958e-02, 5.85785024e-02, -9.16057676e-02, 1.55361909e-02, -1.59454048e-02, -2.73352247e-02, 7.19750226e-02, -5.26808612e-02, 1.10233203e-01, 9.31191072e-02, 1.06568821e-01, -4.56267744e-02, 8.99467617e-02, -6.60001487e-02, 4.84053977e-02, -2.60958578e-02, -1.92317495e-03, 3.26352492e-02, 1.94713566e-02, 1.02999009e-01, -7.20738396e-02, -1.10616326e-01, 3.11759412e-02, -9.93295535e-02, -9.04011428e-02, 1.05781183e-02, 9.09506455e-02, 1.23845346e-01, 1.02436937e-01, -1.07952751e-01, 9.34537873e-02, 9.03534591e-02, 5.01066744e-02, -3.00785508e-02, 5.40993065e-02, 6.08476717e-03, 7.46219233e-03, -4.41335253e-02, -1.57612432e-02, 8.13627392e-02, 9.24208015e-02, -1.14703804e-01, -1.15454160e-01, 2.89899390e-02, -7.25314543e-02, -8.73726308e-02, -1.45046525e-02, 6.40518516e-02, 2.92977840e-02, -3.90998013e-02, 1.38353944e-01, -1.13659553e-01, 4.87076901e-02, -5.84492199e-02, -5.65271750e-02, 4.80253249e-02, -1.25741567e-02, 8.67375582e-02, 5.18906415e-02, 1.01722524e-01, -1.14690788e-01, 4.21103314e-02, -9.22586247e-02, -3.05820182e-02, -9.84171554e-02, -1.18369125e-01, 6.48217052e-02, 8.19334835e-02, -1.32762313e-01, -7.76542053e-02, 1.19134009e-01, 4.62516434e-02, -1.06036276e-01, -6.00696355e-02, 1.21595496e-02, 4.67445962e-02, -7.36472150e-03, 9.11500677e-02, -1.25174105e-01, -9.27868262e-02, 1.13935791e-01, 9.58170816e-02, 6.15385622e-02, -5.59285469e-02, -3.07572857e-02, 8.34302232e-02, 9.79244262e-02, 6.77512661e-02, -1.10853799e-01, -1.62550546e-02, 1.20259888e-01, 3.81287634e-02, 3.01632360e-02, -1.20902725e-01, 1.02356531e-01, -3.20654027e-02, 4.26634327e-02, 5.78349456e-02, -1.26327768e-01, -5.38603328e-02, 9.86389145e-02, 1.00423798e-01, 4.70819697e-02, 8.31928551e-02, 5.77138141e-02, 4.61356193e-02, -1.69454031e-02, -3.57766747e-02, 1.21297255e-01, 1.10090569e-01, -8.87150466e-02, -9.97476727e-02, 8.71677548e-02, 4.36206162e-02, 1.29172429e-01] xor:[-6.43384606e-02, 7.38578662e-03, 1.45738974e-01, -6.36126623e-02, 6.15352318e-02, -5.76374829e-02, 7.68888295e-02, 9.19639468e-02, 5.70706427e-02, 6.97799250e-02, -4.98611480e-02, 3.06659099e-02, -5.87876774e-02, -6.72982410e-02, -1.05295032e-01, 7.07910536e-03, -1.76997352e-02, -7.24817440e-02, 5.99128827e-02, 1.00639932e-01, 8.08042884e-02, -1.10985689e-01, -4.70296554e-02, -3.58532742e-02, 7.53463246e-03, -1.09506615e-01, -4.03358713e-02, -4.03400846e-02, -9.37524810e-02, 1.55308634e-01, 1.74633101e-01, 3.18465531e-02, 8.18624571e-02, 2.85305362e-02, -5.39915040e-02, 2.13985052e-02, -1.15394123e-01, 1.31735161e-01, -6.31045327e-02, -1.54745225e-02, -2.91812811e-02, 7.59407431e-02, -7.59496614e-02, 1.16618715e-01, 1.13924995e-01, 6.22127131e-02, 9.68793705e-02, -6.08476661e-02, 9.67264697e-02, 1.67057104e-02, -3.73360962e-02, 1.37192890e-01, -6.11550696e-02, -1.92053206e-02, -7.60398954e-02, 1.66717882e-03, -9.91900563e-02, 2.30232310e-02, 1.01992220e-01, -5.28916195e-02, 8.68708789e-02, 1.53769612e-01, -1.25402555e-01, -3.06076128e-02, -4.91955802e-02, -8.31505433e-02, 3.39466482e-02, 8.27217475e-02, 8.92273560e-02, -4.14151996e-02, 1.32478178e-01, -1.61597341e-01, 5.84291816e-02, 8.39407444e-02, 9.00908336e-02, -1.14684068e-01, 5.81891648e-02, -1.48925912e-02, 1.40248403e-01, -4.13360409e-02, -8.25925618e-02, -2.09230911e-02, 1.16214342e-01, 1.40931219e-01, -6.81299195e-02, -2.35487334e-03, 1.05661154e-01, 7.08001554e-02, -4.54338714e-02, -8.37873891e-02, 1.14484522e-02, 5.78871034e-02, -1.10872649e-01, -9.30773020e-02, 5.19798584e-02, 1.22005075e-01, -1.48906317e-02, 1.40127242e-02, -7.20241219e-02, -8.34984481e-02, 7.28440359e-02, -4.19581942e-02, 8.65038335e-02, 1.74201339e-01, 8.79086778e-02, -8.43766034e-02, 1.24610728e-02, 5.60213961e-02, 1.13101804e-03, 1.99474947e-04, 1.79581314e-01, 1.56000465e-01, 1.04707085e-01, 9.63544101e-02, 1.15750514e-01, -8.60411325e-04, -5.05525991e-02, -6.91877902e-02, 7.96902105e-02, -3.87535542e-02, 5.78246899e-02, 1.47529900e-01, 4.10611443e-02, 8.39735270e-02, 1.23523049e-01, -2.87809744e-02, -6.53986782e-02, -3.80609334e-02, -1.96557473e-02, 1.22507669e-01, -6.74088746e-02, -2.75745671e-02, -5.07902019e-02, -1.24847613e-01, 5.34568615e-02, 4.71205935e-02, 8.86660255e-03, 1.46636944e-02, -2.04105377e-02, 6.48342744e-02, -8.79705921e-02, 5.05638914e-03, -1.01426281e-02, 9.92075279e-02, -1.32302627e-01, -3.43643241e-02, -1.05242291e-02, 3.59628797e-02, 6.03170209e-02, 3.89186032e-02, 3.53329256e-02, -5.64261572e-03, 1.46894798e-01, 1.13835678e-01, -2.55880710e-02, -1.23369254e-01, -4.23960127e-02, -6.72600418e-02, -7.63853267e-02, -9.23287645e-02, -1.57176405e-01, 6.71288595e-02, -1.06608942e-01, -8.14393833e-02, -3.80397402e-02, 6.61158711e-02, 1.01492845e-01, 1.34559676e-01, -1.15498923e-01, -1.23318925e-01, 2.36240542e-03, -2.27104826e-03, 1.15576379e-01, -1.11229390e-01, 9.68717411e-03, 8.32057446e-02, 5.35510257e-02, 9.51145068e-02, -6.08694106e-02, 8.81016925e-02, 6.10151142e-02, -1.99115276e-02, -1.30075440e-01, 1.82298739e-02, -9.57994014e-02, -3.90010327e-02, 1.94946099e-02, -2.79359855e-02, -7.85964206e-02, -2.40359753e-02, 1.05684593e-01, 2.63413265e-02, -2.33034138e-02, -4.67985421e-02, -3.41134332e-02, -1.11880921e-01, 5.56567870e-02, -4.60408963e-02, 5.52113876e-02, -1.01296768e-01, -2.25699283e-02, 9.59223881e-02, 1.26553893e-01, -2.45228961e-01, -1.49788214e-02, -6.46403357e-02, -7.50543103e-02, -7.11895004e-02, 1.15058525e-02, 4.02518511e-02, 1.18887000e-01, 4.28978205e-02, -8.97592008e-02, -1.61321580e-01, 8.37233141e-02, -1.03059970e-01, -3.70312594e-02, 4.37799804e-02, 8.36088210e-02, -2.66765356e-02, 1.66229513e-02, 1.28718585e-01, 5.77915274e-02, -1.26580730e-01, 1.14182131e-02, 1.01718709e-01, 7.83407595e-03, 8.03921819e-02, -1.73790511e-02, 4.23866622e-02, 1.00121707e-01, -7.97512904e-02, 4.58018221e-02, 8.77200663e-02, 1.78861879e-02, -9.03369263e-02, 6.97182417e-02, -1.20076254e-01, 1.31309971e-01, 3.01751979e-02, -6.34161904e-02, 1.79594290e-02, -4.51079346e-02, -7.17332959e-02, -4.70112823e-02, 2.16829479e-02, 6.72642216e-02, -3.52880321e-02, 4.06871177e-03, 5.71956225e-02, 2.17954889e-02, -3.29956450e-02, 4.85620880e-03, 5.55641763e-02, 4.08203853e-03, -2.03399248e-02, -1.39150396e-01, 7.76727572e-02, -8.84580091e-02, -3.64972949e-02, -9.02353749e-02, 8.84752274e-02, 3.30980122e-02, 9.83107612e-02, 1.07591264e-01, 1.64031498e-02, 3.60383987e-02, -3.53904851e-02, 8.44064802e-02, 6.39811754e-02, -3.14106308e-02, -3.13321166e-02, -1.14424303e-02, -3.57173458e-02, -5.17688273e-03, -8.65766928e-02, 1.89127121e-02, -3.54981087e-02, 4.36999127e-02, -1.00438379e-01, 8.99744183e-02, -5.42525388e-02, 7.75430575e-02, -7.83633664e-02, -2.76023075e-02, -8.15881416e-02, -5.10915322e-03, 1.38624117e-01, -1.34849116e-01, -8.49774778e-02, 7.60831982e-02, 2.20255964e-02, -1.29521132e-01, -6.33514347e-03, -9.97038111e-02, 4.63870503e-02, 3.18546221e-02, -1.07324563e-01, -7.37006217e-02, -2.63320636e-02] -zext:[-0.09206638, 0.00270119, 0.15418273, -0.04134863, 0.07210469, 0.06583542, -0.13548507, 0.07346978, -0.13672288, 0.05128169, -0.05077722, 0.11699023, -0.0382048, -0.11118713, -0.04021001, 0.07073952, -0.00816586, -0.06115638, 0.01724532, 0.0236744, 0.07100954, -0.07488302, -0.04368261, -0.02398776, -0.00760422, -0.13463734, -0.03538223, -0.02614539, 0.06568573, -0.02069225, -0.08317636, 0.02867625, 0.07743214, 0.02488199, 0.12222699, 0.11619257, 0.090748, 0.06227715, 0.00653255, -0.19828211, -0.0272529, 0.08069477, -0.08975051, -0.08571357, 0.07366925, -0.02863693, -0.06751174, -0.11638711, 0.09362104, 0.01243628, -0.14728422, 0.11222128, -0.05550931, -0.0320996, -0.02667872, 0.07169352, 0.04473315, -0.09891157, 0.13925777, 0.05202943, 0.05142035, 0.01937477, -0.10471366, -0.02041181, -0.09863115, -0.01912055, -0.03643239, 0.05202175, 0.0924345, -0.02639994, 0.06960126, 0.12628159, 0.05210971, 0.06901842, 0.08943349, -0.10856748, -0.07364641, -0.0149689, -0.1270625, -0.17801036, -0.06843448, -0.01437575, 0.02381674, 0.1066661, -0.04676664, -0.00434499, 0.16921677, 0.03680438, -0.0173457, -0.09249728, -0.00446078, 0.06974775, 0.00419387, -0.07709657, -0.14470214, 0.1078196, 0.00361575, 0.01363555, -0.05221062, -0.00767435, 0.01753874, -0.03064837, 0.0821472, -0.11903069, 0.20260328, 0.03468513, 0.018, -0.0222681, 0.03940389, -0.07203703, -0.07250199, -0.05269295, 0.11292202, 0.06755083, -0.02692317, 0.12284108, -0.06650799, -0.06356915, 0.07102119, -0.0359807, 0.05474656, 0.06822024, 0.02399918, -0.08389449, 0.0966313, -0.11011917, 0.04411249, 0.05352641, -0.08372309, -0.04523518, 0.05361553, -0.02640199, -0.07108896, -0.07128716, 0.04407426, 0.03896879, -0.04994361, -0.03647377, 0.06513728, 0.01986334, -0.11892154, -0.09027607, 0.01152532, 0.08307644, -0.02726823, -0.01906923, -0.04990215, -0.05419898, 0.05263706, 0.05379965, 0.04468546, 0.02849189, 0.12639976, 0.11092559, -0.01907762, -0.10202645, -0.07243174, -0.06745019, 0.03204095, -0.11748592, -0.1184311, 0.04162078, 0.06224603, -0.07885036, 0.01924157, 0.11192489, 0.07158074, -0.0244897, -0.04419583, -0.11101535, -0.14103681, -0.00502032, 0.10793474, 0.06892367, 0.02430563, 0.09885022, 0.06897844, 0.0942919, -0.05790357, -0.06679272, 0.06257036, 0.05646089, 0.00252567, 0.01739259, -0.01559263, -0.09226757, 0.01035733, -0.0256761, -0.03102144, 0.00486232, 0.07019686, 0.02009742, -0.05250899, 0.0228355, -0.03096779, -0.10239294, 0.07793415, -0.06639136, 0.04328438, -0.00556767, -0.01918183, -0.15087453, -0.07376359, -0.14206979, -0.01277673, -0.00527536, -0.05879755, -0.11322439, -0.04607481, 0.06181184, -0.01271908, -0.07033713, -0.08301133, -0.12439214, 0.04491446, -0.01855471, -0.00504013, 0.01127382, -0.13183603, -0.02681294, 0.06384694, 0.09422836, 0.07131048, 0.01489949, -0.04188188, 0.05576064, -0.02417868, 0.0844811, -0.034211, 0.12882733, 0.0727654, -0.03377172, 0.01524484, -0.13342072, -0.12823017, -0.00984531, 0.05982092, -0.12056703, 0.11499968, 0.04622677, -0.13913034, 0.04117975, -0.03072185, 0.01406652, -0.04045348, 0.05714978, -0.00631485, 0.01469957, 0.02845218, 0.0154358, 0.02087436, -0.1214446, -0.09892067, 0.0285593, -0.00195842, -0.02985541, -0.00323828, 0.0736098, 0.04613332, -0.04881877, 0.02121915, -0.11001094, 0.00515569, 0.09451589, -0.00128329, -0.00557444, 0.05118162, 0.02231538, 0.01824751, 0.14194345, -0.02942713, -0.03141093, 0.00901096, -0.03071915, 0.03237809, -0.07707829, 0.06175473, -0.01879364, 0.04164349, -0.10024448, -0.06850255, -0.02887854, 0.12041315, -0.06744161, -0.06227558, -0.07398664, -0.00061624, 0.05986407, 0.02729473, -0.00485806, 0.06859947, 0.07002531, -0.00790272, -0.04011634, -0.07619969, 0.0223654, 0.07029122, -0.09048761, -0.04464496, -0.01331965] \ No newline at end of file +zext:[-0.09206638, 0.00270119, 0.15418273, -0.04134863, 0.07210469, 0.06583542, -0.13548507, 0.07346978, -0.13672288, 0.05128169, -0.05077722, 0.11699023, -0.0382048, -0.11118713, -0.04021001, 0.07073952, -0.00816586, -0.06115638, 0.01724532, 0.0236744, 0.07100954, -0.07488302, -0.04368261, -0.02398776, -0.00760422, -0.13463734, -0.03538223, -0.02614539, 0.06568573, -0.02069225, -0.08317636, 0.02867625, 0.07743214, 0.02488199, 0.12222699, 0.11619257, 0.090748, 0.06227715, 0.00653255, -0.19828211, -0.0272529, 0.08069477, -0.08975051, -0.08571357, 0.07366925, -0.02863693, -0.06751174, -0.11638711, 0.09362104, 0.01243628, -0.14728422, 0.11222128, -0.05550931, -0.0320996, -0.02667872, 0.07169352, 0.04473315, -0.09891157, 0.13925777, 0.05202943, 0.05142035, 0.01937477, -0.10471366, -0.02041181, -0.09863115, -0.01912055, -0.03643239, 0.05202175, 0.0924345, -0.02639994, 0.06960126, 0.12628159, 0.05210971, 0.06901842, 0.08943349, -0.10856748, -0.07364641, -0.0149689, -0.1270625, -0.17801036, -0.06843448, -0.01437575, 0.02381674, 0.1066661, -0.04676664, -0.00434499, 0.16921677, 0.03680438, -0.0173457, -0.09249728, -0.00446078, 0.06974775, 0.00419387, -0.07709657, -0.14470214, 0.1078196, 0.00361575, 0.01363555, -0.05221062, -0.00767435, 0.01753874, -0.03064837, 0.0821472, -0.11903069, 0.20260328, 0.03468513, 0.018, -0.0222681, 0.03940389, -0.07203703, -0.07250199, -0.05269295, 0.11292202, 0.06755083, -0.02692317, 0.12284108, -0.06650799, -0.06356915, 0.07102119, -0.0359807, 0.05474656, 0.06822024, 0.02399918, -0.08389449, 0.0966313, -0.11011917, 0.04411249, 0.05352641, -0.08372309, -0.04523518, 0.05361553, -0.02640199, -0.07108896, -0.07128716, 0.04407426, 0.03896879, -0.04994361, -0.03647377, 0.06513728, 0.01986334, -0.11892154, -0.09027607, 0.01152532, 0.08307644, -0.02726823, -0.01906923, -0.04990215, -0.05419898, 0.05263706, 0.05379965, 0.04468546, 0.02849189, 0.12639976, 0.11092559, -0.01907762, -0.10202645, -0.07243174, -0.06745019, 0.03204095, -0.11748592, -0.1184311, 0.04162078, 0.06224603, -0.07885036, 0.01924157, 0.11192489, 0.07158074, -0.0244897, -0.04419583, -0.11101535, -0.14103681, -0.00502032, 0.10793474, 0.06892367, 0.02430563, 0.09885022, 0.06897844, 0.0942919, -0.05790357, -0.06679272, 0.06257036, 0.05646089, 0.00252567, 0.01739259, -0.01559263, -0.09226757, 0.01035733, -0.0256761, -0.03102144, 0.00486232, 0.07019686, 0.02009742, -0.05250899, 0.0228355, -0.03096779, -0.10239294, 0.07793415, -0.06639136, 0.04328438, -0.00556767, -0.01918183, -0.15087453, -0.07376359, -0.14206979, -0.01277673, -0.00527536, -0.05879755, -0.11322439, -0.04607481, 0.06181184, -0.01271908, -0.07033713, -0.08301133, -0.12439214, 0.04491446, -0.01855471, -0.00504013, 0.01127382, -0.13183603, -0.02681294, 0.06384694, 0.09422836, 0.07131048, 0.01489949, -0.04188188, 0.05576064, -0.02417868, 0.0844811, -0.034211, 0.12882733, 0.0727654, -0.03377172, 0.01524484, -0.13342072, -0.12823017, -0.00984531, 0.05982092, -0.12056703, 0.11499968, 0.04622677, -0.13913034, 0.04117975, -0.03072185, 0.01406652, -0.04045348, 0.05714978, -0.00631485, 0.01469957, 0.02845218, 0.0154358, 0.02087436, -0.1214446, -0.09892067, 0.0285593, -0.00195842, -0.02985541, -0.00323828, 0.0736098, 0.04613332, -0.04881877, 0.02121915, -0.11001094, 0.00515569, 0.09451589, -0.00128329, -0.00557444, 0.05118162, 0.02231538, 0.01824751, 0.14194345, -0.02942713, -0.03141093, 0.00901096, -0.03071915, 0.03237809, -0.07707829, 0.06175473, -0.01879364, 0.04164349, -0.10024448, -0.06850255, -0.02887854, 0.12041315, -0.06744161, -0.06227558, -0.07398664, -0.00061624, 0.05986407, 0.02729473, -0.00485806, 0.06859947, 0.07002531, -0.00790272, -0.04011634, -0.07619969, 0.0223654, 0.07029122, -0.09048761, -0.04464496, -0.01331965] diff --git a/vocabulary/seedEmbeddingVocab75D.txt b/vocabulary/seedEmbeddingVocab75D.txt index 4a7bc32d7..672b9a97c 100755 --- a/vocabulary/seedEmbeddingVocab75D.txt +++ b/vocabulary/seedEmbeddingVocab75D.txt @@ -65,4 +65,4 @@ variable:[0.34946224, -0.19019732, 0.07578591, 0.02897718, 0.05939914, 0.0925585 vectorTy:[0.01924545, -0.10047846, -0.0207595, -0.03213615, -0.05755702, 0.111853, -0.05126722, -0.14782767, 0.09039567, 0.14130563, 0.10620538, 0.05215713, 0.2449533, -0.12985094, 0.05321037, -0.14473073, -0.13760532, 0.01916095, -0.09587242, -0.13404803, 0.04011045, -0.03267908, 0.2632289, -0.1206261, -0.13523142, 0.05740057, -0.26359946, -0.00203709, 0.17603761, -0.17686865, -0.0594833, 0.12250432, -0.17104226, -0.07775503, 0.03946605, -0.1254066, -0.15979595, -0.12681052, 0.05566283, 0.00327375, 0.06243605, -0.06536931, 0.11056228, -0.10833837, 0.12949127, -0.2069612, 0.19081448, -0.26199454, 0.1620367, -0.02223855, -0.2592795, 0.04499221, 0.00045452, 0.10600089, 0.0538751, 0.13719264, -0.1602509, -0.01697994, -0.05173802, -0.08095637, 0.05421554, 0.05259135, 0.20910649, -0.15834016, -0.02733349, 0.19103193, 0.24459204, -0.13528448, -0.01581658, 0.08329262, -0.16949055, -0.15230547, -0.02274264, -0.12891859, -0.13018787] voidTy:[-0.061326, -0.17669086, 0.12545134, -0.01617306, -0.16802354, 0.10747934, 0.08065147, -0.19317791, 0.15066993, 0.12109338, -0.12275604, -0.10432348, 0.12200886, -0.10591377, 0.17020199, -0.158907, -0.13004076, -0.03174711, 0.03195576, 0.06950434, -0.02492143, -0.18072803, 0.07125335, -0.13420853, -0.20071271, 0.03469162, -0.04936522, 0.1398541, -0.05204892, -0.06660047, 0.01561067, 0.00763709, -0.2093901, -0.13374195, -0.0347373, 0.10955653, -0.18764363, -0.19372213, 0.12362833, 0.20651025, 0.2071469, -0.17849223, -0.12355274, -0.10006152, 0.16707808, 0.01705527, -0.07375366, -0.06328662, 0.11909553, 0.18020234, 0.03544328, 0.13358958, 0.12168103, 0.16216294, 0.11393836, -0.11889113, -0.01668723, 0.0462836, 0.15403059, -0.03172195, 0.11577552, -0.14457542, -0.02979214, 0.10728759, 0.14393401, 0.15189333, 0.08763766, -0.1834039, -0.16329639, 0.13051145, 0.14288281, -0.00671209, -0.12653272, 0.15909481, -0.16999884] xor:[-0.07455786, 0.16715275, -0.14468741, -0.07621277, 0.03204519, -0.10287224, 0.32985628, 0.11150161, -0.11987245, -0.02437313, -0.07570856, 0.14419538, -0.2224779, 0.01031712, -0.2765939, -0.01631433, 0.00549595, 0.10991857, 0.14155118, -0.04307441, -0.13198636, 0.08614279, -0.09146988, 0.26521686, 0.22853024, 0.13277547, -0.2110845, -0.10619276, -0.04985113, 0.18869734, 0.05740701, 0.15613872, 0.07506935, 0.0472548, 0.13955116, -0.08029979, 0.02304715, 0.03142639, -0.12660795, -0.12721755, -0.20504181, 0.14785768, 0.12347214, 0.0669478, -0.11030468, -0.06073261, 0.1137653, 0.20449352, -0.03639516, -0.05577605, -0.2002716, -0.07669689, -0.05608141, -0.07678374, -0.0118753, 0.17441204, -0.27891317, -0.02888634, 0.0484849, -0.20040192, 0.11861041, 0.15237367, 0.15149045, -0.09543461, -0.11857695, -0.04791029, 0.04368738, 0.04123551, 0.18757796, -0.06863275, 0.01621565, 0.11146253, 0.10789274, 0.02389193, 0.04289607] -zext:[-0.10371742, 0.14221004, -0.13298006, 0.23650487, 0.02504659, -0.1558534, 0.04980243, 0.10529575, -0.0867353, -0.0286998, 0.00639361, 0.14572915, -0.16362962, 0.0171505, -0.1476239, 0.2197204, 0.06600441, 0.13680908, 0.0433678, -0.06812242, -0.11591819, 0.03261645, 0.05156131, 0.14571871, 0.2028426, 0.11325595, -0.09031556, -0.00272263, 0.08558092, 0.04824093, -0.17558345, 0.15323906, 0.04586327, 0.05361458, 0.12586784, -0.12731417, 0.02227405, 0.04016992, -0.11015071, -0.11093915, -0.15416315, 0.14074808, 0.1820509, 0.18369122, -0.15217939, -0.01421617, 0.08675517, 0.15473503, -0.04504943, 0.04100595, 0.00469663, -0.06961203, -0.07134401, -0.06580366, -0.17333157, 0.00489506, 0.021513, -0.33183601, 0.03292152, -0.17519909, -0.06210884, 0.35711867, -0.0346562, -0.12306777, -0.09380004, -0.04140116, 0.04775601, 0.02219661, 0.15293652, -0.05633859, 0.01147127, 0.03094926, 0.04313596, 0.03127145, 0.05043723] \ No newline at end of file +zext:[-0.10371742, 0.14221004, -0.13298006, 0.23650487, 0.02504659, -0.1558534, 0.04980243, 0.10529575, -0.0867353, -0.0286998, 0.00639361, 0.14572915, -0.16362962, 0.0171505, -0.1476239, 0.2197204, 0.06600441, 0.13680908, 0.0433678, -0.06812242, -0.11591819, 0.03261645, 0.05156131, 0.14571871, 0.2028426, 0.11325595, -0.09031556, -0.00272263, 0.08558092, 0.04824093, -0.17558345, 0.15323906, 0.04586327, 0.05361458, 0.12586784, -0.12731417, 0.02227405, 0.04016992, -0.11015071, -0.11093915, -0.15416315, 0.14074808, 0.1820509, 0.18369122, -0.15217939, -0.01421617, 0.08675517, 0.15473503, -0.04504943, 0.04100595, 0.00469663, -0.06961203, -0.07134401, -0.06580366, -0.17333157, 0.00489506, 0.021513, -0.33183601, 0.03292152, -0.17519909, -0.06210884, 0.35711867, -0.0346562, -0.12306777, -0.09380004, -0.04140116, 0.04775601, 0.02219661, 0.15293652, -0.05633859, 0.01147127, 0.03094926, 0.04313596, 0.03127145, 0.05043723] From e8d94fa94fd0cd2272578af3089e13c9a094d78f Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Mon, 18 Nov 2024 17:30:29 +0530 Subject: [PATCH 5/8] updating oracle - to comply with new vocabulary --- ...the_closest_pair_from_two_sorted_arrays.ll | 60 +- .../Iterative_QuickSort.ll | 64 +- .../Nearly_sorted_Algo.ll | 3517 +++++---------- .../aho-corasick-algorithm.ll | 2394 +++++----- ...am-substring-search-search-permutations.ll | 72 +- .../bellman-ford-algorithm.ll | 70 +- .../PE-benchmarks-llfiles-llvm17/bfs.ll | 765 ++-- .../biconnectivity.ll | 511 +-- .../binary-insertion-sort.ll | 2 +- .../binomial-coefficient.ll | 56 +- .../birthday-paradox.ll | 58 +- .../boolean-parenthesization-problem.ll | 62 +- .../boruvkas-algorithm.ll | 2 +- .../box-stacking.ll | 2 +- .../boyer-moore-algorithm.ll | 824 ++-- .../channel-assignment.ll | 52 +- .../coin-change.ll | 54 +- ...m-points-in-a-grid-using-two-traversals.ll | 62 +- ...truction-of-lcp-array-from-suffix-array.ll | 2930 ++++++------ .../count-1s-sorted-binary-array.ll | 50 +- ...r-binary-strings-without-consecutive-1s.ll | 54 +- ...whose-sum-of-digits-equals-to-given-sum.ll | 50 +- ...nt-possible-ways-to-construct-buildings.ll | 46 +- .../count-ways-reach-nth-stair.ll | 2 +- .../cut-vertices.ll | 517 +-- .../cutting-a-rod.ll | 2 +- .../detect-cycle-in-a-graph.ll | 513 +-- .../detect-cycle-undirected-graph.ll | 511 +-- .../dfa-based-division.ll | 2 +- .../PE-benchmarks-llfiles-llvm17/dfs.ll | 511 +-- .../edit-distance.ll | 887 ++-- ...icient-constructtion-of-finite-automata.ll | 74 +- .../egg-dropping-puzzle.ll | 2 +- .../euler-circuit-directed-graph.ll | 713 ++- .../eulerian-path-and-circuit.ll | 705 ++- ...ind-common-elements-three-sorted-arrays.ll | 44 +- .../find-k-closest-elements-given-value.ll | 2 +- ...-consecutive-path-in-a-character-matrix.ll | 66 +- ...imum-number-of-coins-that-make-a-change.ll | 56 +- .../find-parity.ll | 48 +- .../find-two-non-repeating-element.ll | 60 +- .../finite-automata-algorithm.ll | 2 +- .../floyd-warshall.ll | 46 +- .../graph-coloring.ll | 699 ++- .../hamiltonian-cycle-backtracking.ll | 70 +- .../insertion-sort-for-singly-linked-list.ll | 2 +- .../PE-benchmarks-llfiles-llvm17/karatsuba.ll | 1964 +++++---- .../kmp-algorithm.ll | 67 +- ...sorted-array-set-2-expected-linear-time.ll | 60 +- ...rted-array-set-3-worst-case-linear-time.ll | 266 +- .../largest-independent-set-problem.ll | 64 +- .../largest-sum-contiguous-subarray.ll | 48 +- .../lexicographic-rank-of-a-string.ll | 62 +- .../little-and-big-endian-mystery.ll | 2 +- .../longest-bitonic-subsequence.ll | 2 +- ...-length-substring-sum-first-second-half.ll | 64 +- .../longest-increasing-subsequence.ll | 2 +- .../longest-palindrome-substring.ll | 751 ++-- .../longest-palindromic-subsequence.ll | 2 +- .../longest-path-directed-acyclic-graph.ll | 1993 ++++----- .../m-coloring-problem.ll | 2 +- .../magic-square.ll | 60 +- .../matrix-chain-multiplication.ll | 58 +- .../maximum-length-chain-of-pairs.ll | 62 +- ...uying-and-selling-a-share-at-most-twice.ll | 74 +- ...b-matrix-with-all-1s-in-a-binary-matrix.ll | 54 +- .../maximum-sum-increasing-subsequence.ll | 60 +- .../maximum-sum-rectangle-in-a-2d-matrix.ll | 62 +- .../merge-sort-for-doubly-linked-list.ll | 70 +- .../mergeSort_LinkedList.ll | 68 +- .../min-cost-path.ll | 2 +- ...-to-move-maximum-and-minimum-to-corners.ll | 44 +- .../minimum-cost-polygon-triangulation.ll | 76 +- .../minimum-cut-in-a-directed-graph.ll | 1383 +++--- ...-of-jumps-to-reach-end-of-a-given-array.ll | 66 +- ...um-positive-points-to-reach-destination.ll | 64 +- .../mobile-numeric-keypad-problem.ll | 2 +- ...obile-numeric-keypad-problem_space_optm.ll | 2 +- .../n-queen-problem.ll | 2 +- .../naive-algorithm.ll | 64 +- .../optimal-binary-search-tree.ll | 60 +- .../optimized-naive-algorithm.ll | 838 ++-- .../overlapping-subproblems-property.ll | 50 +- .../palindrome-partitioning.ll | 2 +- .../partition-problem.ll | 2 +- .../permutations-of-a-given-string.ll | 743 ++-- .../program-for-nth-fibonacci-number.ll | 2 +- .../program-wish-womens-day.ll | 54 +- .../quicksort-for-linked-list.ll | 72 +- .../quicksort-on-singly-linked-list.ll | 66 +- .../rabin-karp-algorithm.ll | 64 +- .../rat-in-a-maze.ll | 2 +- .../reservoir-sampling.ll | 66 +- .../rotate-bits-of-an-integer.ll | 42 +- .../shortest-common-supersequence.ll | 70 +- .../sieve-of-eratosthenes.ll | 60 +- .../snake-ladder.ll | 1377 +++--- .../sort-array-wave-form-2.ll | 52 +- ...sort-n-numbers-range-0-n2-1-linear-time.ll | 64 +- ...r-x-find-pair-array-whose-sum-closest-x.ll | 60 +- .../strongly-connected-components.ll | 1809 ++++---- .../subset-sum-problem.ll | 2 +- .../subset-sum.ll | 2 +- .../PE-benchmarks-llfiles-llvm17/sudoku.ll | 68 +- .../tarjan-algorithm.ll | 1744 ++++---- .../the-knights-tour.ll | 2 +- .../topological-sorting.ll | 1811 ++++---- ...of-non-decreasing-numbers-with-n-digits.ll | 54 +- .../tower-of-hanoi.ll | 40 +- .../transitive-closure-of-a-graph.ll | 2 +- .../trie-suffixes.ll | 1586 +++---- .../tug-of-war.ll | 72 +- .../ugly-numbers.ll | 2 +- .../union-find.ll | 72 +- .../vertex-cover-problem.ll | 509 +-- .../weighted-job-scheduling.ll | 281 +- .../PE-benchmarks-llfiles-llvm17/word-wrap.ll | 62 +- .../z-algorithm-linear-time.ll | 1074 ++--- src/test-suite/oracle/FA_llvm17_f/ir2vec.txt | 3912 +++++++---------- .../oracle/FA_llvm17_onDemand/ir2vec.txt | 538 +-- src/test-suite/oracle/FA_llvm17_p/ir2vec.txt | 236 +- src/test-suite/oracle/FA_llvm17_p/sqlite3.txt | 2 +- src/test-suite/oracle/SYM_llvm17_f/ir2vec.txt | 3912 +++++++---------- .../oracle/SYM_llvm17_onDemand/ir2vec.txt | 538 +-- src/test-suite/oracle/SYM_llvm17_p/ir2vec.txt | 236 +- .../oracle/SYM_llvm17_p/sqlite3.txt | 2 +- 126 files changed, 20497 insertions(+), 26730 deletions(-) diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/Find_the_closest_pair_from_two_sorted_arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/Find_the_closest_pair_from_two_sorted_arrays.ll index 87ba06b29..7f6ef9bb6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/Find_the_closest_pair_from_two_sorted_arrays.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/Find_the_closest_pair_from_two_sorted_arrays.ll @@ -3,40 +3,23 @@ source_filename = "PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cp target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [22 x i8] c"The closest pair is [\00", align 1 @.str.1 = private unnamed_addr constant [3 x i8] c", \00", align 1 @.str.2 = private unnamed_addr constant [4 x i8] c"] \0A\00", align 1 @__const.main.ar1 = private unnamed_addr constant [4 x i32] [i32 1, i32 4, i32 5, i32 7], align 16 @__const.main.ar2 = private unnamed_addr constant [4 x i32] [i32 10, i32 20, i32 30, i32 40], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -88,7 +71,7 @@ define dso_local void @_Z12printClosestPiS_iii(ptr noundef %0, ptr noundef %1, i %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) #8 + %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 @@ -111,7 +94,7 @@ define dso_local void @_Z12printClosestPiS_iii(ptr noundef %0, ptr noundef %1, i %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) #8 + %60 = call i32 @abs(i32 noundef %59) #5 store i32 %60, ptr %11, align 4 br label %61 @@ -166,14 +149,14 @@ define dso_local void @_Z12printClosestPiS_iii(ptr noundef %0, ptr noundef %1, i } ; Function Attrs: nounwind willreturn memory(none) -declare i32 @abs(i32 noundef) #5 +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) #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) #1 +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() #6 { +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 @@ -196,23 +179,14 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #8 = { nounwind willreturn memory(none) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -222,6 +196,6 @@ attributes #8 = { nounwind willreturn memory(none) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/Iterative_QuickSort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/Iterative_QuickSort.ll index 7d2548539..54e654233 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/Iterative_QuickSort.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/Iterative_QuickSort.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/Iterative_QuickSort.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @__const.main.arr = private unnamed_addr constant [8 x i32] [i32 4, i32 3, i32 5, i32 2, i32 1, i32 3, i32 2, i32 3], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_Iterative_QuickSort.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -53,7 +36,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -134,7 +117,7 @@ define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z18quickSortIterativePiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -255,13 +238,13 @@ define dso_local void @_Z18quickSortIterativePiii(ptr noundef %0, i32 noundef %1 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #6 { +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 @@ -296,12 +279,12 @@ define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #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 @_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) #1 +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() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -319,23 +302,14 @@ define dso_local noundef i32 @main() #7 { } ; 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: noinline uwtable -define internal void @_GLOBAL__sub_I_Iterative_QuickSort.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -345,7 +319,7 @@ attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/Nearly_sorted_Algo.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/Nearly_sorted_Algo.ll index fe105f2a8..3841ff527 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/Nearly_sorted_Algo.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/Nearly_sorted_Algo.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/Nearly_sorted_Algo.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -15,21 +16,15 @@ target triple = "x86_64-pc-linux-gnu" %"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.__gnu_cxx::__normal_iterator.0" = type { ptr } +%"class.std::allocator" = type { i8 } %"class.__gnu_cxx::__normal_iterator" = type { ptr } -%"struct.std::__false_type" = type { i8 } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { %"struct.std::greater" } %"struct.std::forward_iterator_tag" = type { i8 } %"struct.std::random_access_iterator_tag" = type { i8 } -%"class.std::move_iterator" = type { ptr } +%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { %"struct.std::greater" } %"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { %"struct.std::greater" } -%"struct.std::integral_constant" = type { i8 } - -$_ZNSt6vectorIiSaIiEEC2Ev = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_ = comdat any +%"class.__gnu_cxx::__normal_iterator.0" = type { ptr } -$_ZNSt6vectorIiSaIiEED2Ev = comdat any +$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPivEET_S8_RKS4_ = comdat any $_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv = comdat any @@ -41,17 +36,7 @@ $_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv = comdat any $_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev = comdat any -$_ZNSt12_Vector_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E = comdat any +$_ZNSt6vectorIiSaIiEED2Ev = comdat any $_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any @@ -67,127 +52,37 @@ $_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any $_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any -$_ZNSaIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt6vectorIiSaIiEEC2EOS1_ = comdat any - -$_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_ = comdat any - -$_ZNSt6vectorIiSaIiEE3endEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE = comdat any +$_ZNSt6vectorIiSaIiEEC2IPivEET_S4_RKS0_ = comdat any $_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any $_ZNSt6vectorIiSaIiEE5beginEv = comdat any -$_ZNSt12_Vector_baseIiSaIiEEC2EOS1_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_ = comdat any - -$_ZNSaIiEC2ERKS_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_ = comdat any - -$_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_ = comdat any - -$_ZNKSt6vectorIiSaIiEE6cbeginEv = comdat any - -$_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any - -$_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag = comdat any - -$_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_ = comdat any - -$_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_ = comdat any - -$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any - -$_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any +$_ZNSt6vectorIiSaIiEE3endEv = comdat any -$_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_ = comdat any +$_ZNSt12_Vector_baseIiSaIiEEC2ERKS0_ = comdat any -$_ZSt7advanceIPimEvRT_T0_ = comdat any +$_ZNSt6vectorIiSaIiEE19_M_range_initializeIPiEEvT_S4_St20forward_iterator_tag = comdat any -$_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E = comdat any +$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any -$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any +$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any $_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any -$_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag = comdat any - -$_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E = comdat any - -$_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_ = comdat any - -$_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_ = comdat any - -$_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_ = comdat any - -$_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZSt12__miter_baseIPiET_S1_ = comdat any - -$_ZNKSt13move_iteratorIPiE4baseEv = comdat any - -$_ZNSt13move_iteratorIPiEC2ES0_ = comdat any - -$_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_ = comdat any - -$_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_ = comdat any +$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any -$_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE = comdat any +$_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E = comdat any -$_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_ = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = comdat any +$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag = comdat any +$_ZSt3minImERKT_S2_S2_ = comdat any $_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_ = comdat any @@ -197,40 +92,36 @@ $_ZSt4copyIPiS0_ET0_T_S2_S1_ = comdat any $_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_ = comdat any -$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any - -$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any +$_ZSt12__miter_baseIPiET_S1_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any +$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any +$_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any +$_ZSt12__niter_baseIPiET_S1_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any +$_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_ = comdat any -$_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_ = comdat any +$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiiEEPT0_PT_S6_S4_ = comdat any -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = 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 @@ -247,6 +138,8 @@ $_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 @@ -255,23 +148,23 @@ $_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv = comdat any $_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - $_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any $_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any +$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any $_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = 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 @@ -287,299 +180,234 @@ $_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_ = co $_ZNKSt6vectorIiSaIiEE3endEv = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 +$_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 [24 x i8] c"vector::_M_range_insert\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 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_Nearly_sorted_Algo.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z5sortKPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 personality ptr @__gxx_personality_v0 { +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 %"class.std::vector", align 8 - %10 = alloca ptr, align 8 - %11 = alloca i32, align 4 + %9 = alloca i32, align 4 + %10 = alloca i32, align 4 + %11 = alloca ptr, align 8 %12 = alloca i32, align 4 - %13 = 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 ptr, ptr %4, align 8 - %16 = load i32, ptr %6, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, ptr %15, i64 %17 - %19 = getelementptr inbounds i32, ptr %18, i64 1 - call void @llvm.memset.p0.i64(ptr align 8 %9, i8 0, i64 24, i1 false) - call void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(ptr noundef nonnull align 8 dereferenceable(25) %7, ptr noundef %14, ptr noundef %19, ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 8 dereferenceable(24) %9) - to label %20 unwind label %45 - -20: ; preds = %3 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - store i32 0, ptr %12, align 4 - %21 = load i32, ptr %6, align 4 - %22 = add nsw i32 %21, 1 - store i32 %22, ptr %13, align 4 - br label %23 + %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 -23: ; preds = %42, %20 - %24 = load i32, ptr %13, align 4 - %25 = load i32, ptr %5, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %53 - -27: ; preds = %23 - %28 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(ptr noundef nonnull align 8 dereferenceable(25) %7) - to label %29 unwind label %49 - -29: ; preds = %27 - %30 = load i32, ptr %28, align 4 - %31 = load ptr, ptr %4, align 8 - %32 = load i32, ptr %12, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, ptr %12, align 4 - %34 = sext i32 %32 to i64 - %35 = getelementptr inbounds i32, ptr %31, i64 %34 - store i32 %30, ptr %35, align 4 +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 %36 unwind label %49 - -36: ; preds = %29 - %37 = load ptr, ptr %4, align 8 - %38 = load i32, ptr %13, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i32, ptr %37, i64 %39 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(ptr noundef nonnull align 8 dereferenceable(25) %7, ptr noundef nonnull align 4 dereferenceable(4) %40) - to label %41 unwind label %49 - -41: ; preds = %36 - br label %42 - -42: ; preds = %41 - %43 = load i32, ptr %13, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, ptr %13, align 4 - br label %23, !llvm.loop !6 - -45: ; preds = %3 - %46 = landingpad { ptr, i32 } + 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 - %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 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - br label %70 - -49: ; preds = %61, %59, %54, %36, %29, %27 - %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 - call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(25) %7) #3 - br label %70 - -53: ; preds = %23 - br label %54 - -54: ; preds = %68, %53 - %55 = invoke noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(25) %7) - to label %56 unwind label %49 - -56: ; preds = %54 - %57 = zext i1 %55 to i32 - %58 = icmp eq i32 %57, 0 - br i1 %58, label %59, label %69 - -59: ; preds = %56 - %60 = invoke noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(ptr noundef nonnull align 8 dereferenceable(25) %7) - to label %61 unwind label %49 - -61: ; preds = %59 - %62 = load i32, ptr %60, align 4 - %63 = load ptr, ptr %4, align 8 - %64 = load i32, ptr %12, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, ptr %12, align 4 - %66 = sext i32 %64 to i64 - %67 = getelementptr inbounds i32, ptr %63, i64 %66 - store i32 %62, ptr %67, align 4 + %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 %68 unwind label %49 + to label %62 unwind label %43 -68: ; preds = %61 - br label %54, !llvm.loop !8 +62: ; preds = %55 + br label %48, !llvm.loop !8 -69: ; preds = %56 +63: ; preds = %50 call void @llvm.trap() unreachable -70: ; preds = %49, %45 - %71 = load ptr, ptr %10, align 8 - %72 = load i32, ptr %11, align 4 - %73 = insertvalue { ptr, i32 } poison, ptr %71, 0 - %74 = insertvalue { ptr, i32 } %73, i32 %72, 1 - resume { ptr, i32 } %74 -} - -; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(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 @_ZNSt12_Vector_baseIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - ret void +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_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(ptr noundef nonnull align 8 dereferenceable(25) %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3, ptr noundef nonnull align 8 dereferenceable(24) %4) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"class.__gnu_cxx::__normal_iterator.0", align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca ptr, align 8 - %14 = alloca i32, align 4 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", 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 %6, align 8 - store ptr %1, ptr %7, align 8 - store ptr %2, ptr %8, align 8 - store ptr %3, ptr %9, align 8 - store ptr %4, ptr %10, align 8 - %19 = load ptr, ptr %6, align 8 + 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 - call void @_ZNSt6vectorIiSaIiEEC2EOS1_(ptr noundef nonnull align 8 dereferenceable(24) %20, ptr noundef nonnull align 8 dereferenceable(24) %21) #3 - %22 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 1 - %23 = load ptr, ptr %9, align 8 - %24 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 - %25 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 - %26 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %27 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 - store ptr %26, ptr %27, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE(ptr noundef nonnull align 8 dereferenceable(8) %11, ptr noundef nonnull align 8 dereferenceable(8) %12) #3 - %28 = load ptr, ptr %7, align 8 - %29 = load ptr, ptr %8, align 8 - %30 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %11, i32 0, i32 0 - %31 = load ptr, ptr %30, align 8 - %32 = invoke ptr @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(ptr noundef nonnull align 8 dereferenceable(24) %24, ptr %31, ptr noundef %28, ptr noundef %29) - to label %33 unwind label %47 - -33: ; preds = %5 - %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %15, i32 0, i32 0 - store ptr %32, ptr %34, align 8 - %35 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 - %36 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %35) #3 - %37 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %16, i32 0, i32 0 - store ptr %36, ptr %37, align 8 - %38 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 0 - %39 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %38) #3 - %40 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 - store ptr %39, ptr %40, align 8 - %41 = getelementptr inbounds %"class.std::priority_queue", ptr %19, i32 0, i32 1 - %42 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %16, i32 0, i32 0 - %43 = load ptr, ptr %42, align 8 - %44 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 - %45 = load ptr, ptr %44, align 8 - invoke void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(ptr %43, ptr %45) - to label %46 unwind label %47 - -46: ; preds = %33 + %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 -47: ; preds = %33, %5 - %48 = landingpad { ptr, i32 } +41: ; preds = %4 + %42 = landingpad { ptr, i32 } cleanup - %49 = extractvalue { ptr, i32 } %48, 0 - store ptr %49, ptr %13, align 8 - %50 = extractvalue { ptr, i32 } %48, 1 - store i32 %50, ptr %14, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %20) #3 - br label %51 - -51: ; preds = %47 - %52 = load ptr, ptr %13, align 8 - %53 = load i32, ptr %14, align 4 - %54 = insertvalue { ptr, i32 } poison, ptr %52, 0 - %55 = insertvalue { ptr, i32 } %54, i32 %53, 1 - resume { ptr, i32 } %55 -} - -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 #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::_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 1 - %9 = load ptr, ptr %8, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %6, ptr noundef %9, ptr noundef nonnull align 1 dereferenceable(1) %10) - to label %11 unwind label %12 - -11: ; preds = %1 - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - ret void + %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 -12: ; preds = %1 - %13 = landingpad { ptr, i32 } - catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #16 - unreachable +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) #7 comdat align 2 { +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) #3 + %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) #4 comdat align 2 { +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 @@ -587,11 +415,11 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g 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) #3 + %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) #3 + %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 @@ -601,12 +429,12 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g %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) #3 + 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) #4 comdat align 2 { +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 @@ -619,11 +447,11 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g %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) #3 + %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) #3 + %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 @@ -636,30 +464,30 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(25) %0) #7 comdat align 2 { +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) #3 + %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() #8 +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 #6 comdat align 2 { +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) #3 + 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) #4 { +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 @@ -695,16 +523,16 @@ define dso_local void @_Z10printArrayPii(ptr noundef %0, i32 noundef %1) #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) #1 +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) #1 +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) #1 +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)) #1 +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() #9 { +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca [6 x i32], align 16 @@ -725,75 +553,48 @@ define dso_local noundef i32 @main() #9 { } ; 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) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_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 %"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) #3 - 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 #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 @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - ret void -} +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 @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} + %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 -; 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 #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::_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 -} +16: ; preds = %1 + br label %17 -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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 +17: ; preds = %16 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %6) #12 ret void -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %7, ptr noundef %8) - 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) #7 comdat align 2 { +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 @@ -802,9 +603,9 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #16 +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 } @@ -813,7 +614,7 @@ 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 #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -835,19 +636,19 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef 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) #3 + 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) #16 + 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) #4 comdat { +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 @@ -859,7 +660,7 @@ define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %0, ptr } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %0, ptr noundef %1) #7 comdat align 2 { +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 @@ -868,55 +669,52 @@ define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S } ; 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) #4 comdat align 2 { +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 - 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 - %9 = icmp ne ptr %8, null - br i1 %9, label %10, label %14 - -10: ; preds = %3 - %11 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 - %12 = load ptr, ptr %5, align 8 - %13 = load i64, ptr %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) - br label %14 + %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 -14: ; preds = %10, %3 +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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) + %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 @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { +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 @@ -925,121 +723,72 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #14 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #9 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EOS1_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 8 dereferenceable(24) %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 = load ptr, ptr %4, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(ptr noundef nonnull align 8 dereferenceable(24) %5, ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef %2, ptr noundef %3) #4 comdat align 2 { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 +; 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 i64, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"struct.std::__false_type", align 1 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %6, i32 0, i32 0 - store ptr %1, ptr %16, align 8 - store ptr %0, ptr %7, 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 = call ptr @_ZNKSt6vectorIiSaIiEE6cbeginEv(ptr noundef nonnull align 8 dereferenceable(24) %17) #3 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", ptr %11, i32 0, i32 0 - store ptr %18, ptr %19, align 8 - %20 = call noundef i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(ptr noundef nonnull align 8 dereferenceable(8) %6, ptr noundef nonnull align 8 dereferenceable(8) %11) #3 - store i64 %20, ptr %10, align 8 - %21 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %17) #3 - %22 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %13, i32 0, i32 0 - store ptr %21, ptr %22, align 8 - %23 = load i64, ptr %10, align 8 - %24 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %13, i64 noundef %23) #3 - %25 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 - store ptr %24, ptr %25, align 8 - %26 = load ptr, ptr %8, align 8 - %27 = load ptr, ptr %9, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 - %29 = load ptr, ptr %28, align 8 - call void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(ptr noundef nonnull align 8 dereferenceable(24) %17, ptr %29, ptr noundef %26, ptr noundef %27) - %30 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %17) #3 - %31 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %15, i32 0, i32 0 - store ptr %30, ptr %31, align 8 - %32 = load i64, ptr %10, align 8 - %33 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %15, i64 noundef %32) #3 - %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %33, ptr %34, align 8 - %35 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - %36 = load ptr, ptr %35, align 8 - ret ptr %36 -} + %18 = load ptr, ptr %8, align 8 + store ptr %7, ptr %5, align 8 + br label %19 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 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) #3 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %2, i32 0, i32 0 - %8 = load ptr, ptr %7, align 8 - ret ptr %8 -} +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 -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %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 %"class.__gnu_cxx::__normal_iterator.0", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %7) #3 - %9 = load ptr, ptr %8, align 8 - store ptr %9, ptr %6, align 8 +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) #4 comdat { +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 @@ -1063,1349 +812,359 @@ define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iterato } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { +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) #3 + 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_baseIiSaIiEEC2EOS1_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { +; 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 - %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 - %8 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - ret void + %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_baseIiSaIiEE12_Vector_implC2EOS2_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { +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 = load ptr, ptr %4, align 8 - call void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 + %6 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 %7 = load ptr, ptr %4, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(ptr noundef nonnull align 8 dereferenceable(24) %5, ptr noundef nonnull align 8 dereferenceable(24) %7) #3 + 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: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca ptr, align 8 +; 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 - 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 @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 + %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_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr noundef nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { +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 - 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>::_Vector_impl_data", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", 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::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 1 - %11 = load ptr, ptr %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", 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::_Vector_base>::_Vector_impl_data", ptr %5, i32 0, i32 2 - %15 = load ptr, ptr %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %15, i32 0, i32 2 - %17 = load ptr, ptr %16, align 8 - store ptr %17, ptr %14, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %18, i32 0, i32 2 - store ptr null, ptr %19, align 8 - %20 = load ptr, ptr %4, align 8 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 1 - store ptr null, ptr %21, align 8 - %22 = load ptr, ptr %4, align 8 - %23 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %22, i32 0, i32 0 - store ptr null, ptr %23, 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 @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 +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 nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(ptr noundef nonnull align 8 dereferenceable(8) %0, ptr noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { +; 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 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) #3 - %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) #3 - %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 + %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 ptr @_ZNKSt6vectorIiSaIiEE6cbeginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 +; 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 - 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) #3 - %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 + %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 void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef %2, ptr noundef %3) #4 comdat align 2 { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.std::__false_type", align 1 +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 - %9 = alloca ptr, align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"struct.std::forward_iterator_tag", align 1 - %12 = alloca %"struct.std::random_access_iterator_tag", align 1 - %13 = alloca %"struct.std::random_access_iterator_tag", align 1 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %1, ptr %14, align 8 - store ptr %0, ptr %7, align 8 - store ptr %2, ptr %8, align 8 - store ptr %3, ptr %9, align 8 - %15 = load ptr, ptr %7, align 8 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %10, ptr align 8 %5, i64 8, i1 false) - %16 = load ptr, ptr %8, align 8 - %17 = load ptr, ptr %9, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %8) - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %10, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - call void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(24) %15, ptr %19, ptr noundef %16, ptr noundef %17) - ret void + 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 nounwind uwtable -define linkonce_odr dso_local ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 +; 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 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) #3 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 - %13 = load ptr, ptr %12, align 8 - ret ptr %13 -} + %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 -; 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) #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.__gnu_cxx::__normal_iterator.0", ptr %3, i32 0, i32 0 - ret ptr %4 +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: 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 #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 %"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 @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(24) %0, ptr %1, ptr noundef %2, ptr noundef %3) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.std::forward_iterator_tag", align 1 - %7 = alloca ptr, align 8 - %8 = alloca ptr, align 8 - %9 = alloca ptr, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca ptr, align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = alloca ptr, align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %19 = alloca i64, align 8 - %20 = alloca ptr, align 8 - %21 = alloca ptr, align 8 - %22 = alloca ptr, align 8 - %23 = alloca i32, align 4 - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %1, ptr %24, align 8 - store ptr %0, ptr %7, align 8 - store ptr %2, ptr %8, align 8 - store ptr %3, ptr %9, align 8 - %25 = load ptr, ptr %7, align 8 - %26 = load ptr, ptr %8, align 8 - %27 = load ptr, ptr %9, align 8 - %28 = icmp ne ptr %26, %27 - br i1 %28, label %29, label %208 - -29: ; preds = %4 - %30 = load ptr, ptr %8, align 8 - %31 = load ptr, ptr %9, align 8 - %32 = call noundef i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(ptr noundef %30, ptr noundef %31) - store i64 %32, ptr %10, align 8 - %33 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %34 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %33, i32 0, i32 2 - %35 = load ptr, ptr %34, align 8 - %36 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %37 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %36, i32 0, i32 1 - %38 = load ptr, ptr %37, align 8 - %39 = ptrtoint ptr %35 to i64 - %40 = ptrtoint ptr %38 to i64 - %41 = sub i64 %39, %40 - %42 = sdiv exact i64 %41, 4 - %43 = load i64, ptr %10, align 8 - %44 = icmp uge i64 %42, %43 - br i1 %44, label %45, label %126 - -45: ; preds = %29 - %46 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %47 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %12, i32 0, i32 0 - store ptr %46, ptr %47, align 8 - %48 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(ptr noundef nonnull align 8 dereferenceable(8) %12, ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - store i64 %48, ptr %11, align 8 - %49 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %50 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %49, i32 0, i32 1 - %51 = load ptr, ptr %50, align 8 - store ptr %51, ptr %13, align 8 - %52 = load i64, ptr %11, align 8 - %53 = load i64, ptr %10, align 8 - %54 = icmp ugt i64 %52, %53 - br i1 %54, label %55, label %89 - -55: ; preds = %45 - %56 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %57 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %56, i32 0, i32 1 - %58 = load ptr, ptr %57, align 8 - %59 = load i64, ptr %10, align 8 - %60 = sub i64 0, %59 - %61 = getelementptr inbounds i32, ptr %58, i64 %60 - %62 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %63 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %62, i32 0, i32 1 - %64 = load ptr, ptr %63, align 8 - %65 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %66 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %65, i32 0, i32 1 - %67 = load ptr, ptr %66, align 8 - %68 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %69 = call noundef ptr @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %61, ptr noundef %64, ptr noundef %67, ptr noundef nonnull align 1 dereferenceable(1) %68) - %70 = load i64, ptr %10, align 8 - %71 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %72 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %71, i32 0, i32 1 - %73 = load ptr, ptr %72, align 8 - %74 = getelementptr inbounds i32, ptr %73, i64 %70 - store ptr %74, ptr %72, align 8 - %75 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - %76 = load ptr, ptr %75, align 8 - %77 = load ptr, ptr %13, align 8 - %78 = load i64, ptr %10, align 8 - %79 = sub i64 0, %78 - %80 = getelementptr inbounds i32, ptr %77, i64 %79 - %81 = load ptr, ptr %13, align 8 - %82 = call noundef ptr @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(ptr noundef %76, ptr noundef %80, ptr noundef %81) - %83 = load ptr, ptr %8, align 8 - %84 = load ptr, ptr %9, align 8 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %14, ptr align 8 %5, i64 8, i1 false) - %85 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %14, i32 0, i32 0 - %86 = load ptr, ptr %85, align 8 - %87 = call ptr @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(ptr noundef %83, ptr noundef %84, ptr %86) - %88 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %15, i32 0, i32 0 - store ptr %87, ptr %88, align 8 - br label %125 - -89: ; preds = %45 - %90 = load ptr, ptr %8, align 8 - store ptr %90, ptr %16, align 8 - %91 = load i64, ptr %11, align 8 - call void @_ZSt7advanceIPimEvRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %16, i64 noundef %91) - %92 = load ptr, ptr %16, align 8 - %93 = load ptr, ptr %9, align 8 - %94 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %95 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %94, i32 0, i32 1 - %96 = load ptr, ptr %95, align 8 - %97 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %98 = call noundef ptr @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(ptr noundef %92, ptr noundef %93, ptr noundef %96, ptr noundef nonnull align 1 dereferenceable(1) %97) - %99 = load i64, ptr %10, align 8 - %100 = load i64, ptr %11, align 8 - %101 = sub i64 %99, %100 - %102 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %103 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %102, i32 0, i32 1 - %104 = load ptr, ptr %103, align 8 - %105 = getelementptr inbounds i32, ptr %104, i64 %101 - store ptr %105, ptr %103, align 8 - %106 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - %107 = load ptr, ptr %106, align 8 - %108 = load ptr, ptr %13, align 8 - %109 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %110 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %109, i32 0, i32 1 - %111 = load ptr, ptr %110, align 8 - %112 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %113 = call noundef ptr @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %107, ptr noundef %108, ptr noundef %111, ptr noundef nonnull align 1 dereferenceable(1) %112) - %114 = load i64, ptr %11, align 8 - %115 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %116 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %115, i32 0, i32 1 - %117 = load ptr, ptr %116, align 8 - %118 = getelementptr inbounds i32, ptr %117, i64 %114 - store ptr %118, ptr %116, align 8 - %119 = load ptr, ptr %8, align 8 - %120 = load ptr, ptr %16, align 8 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %17, ptr align 8 %5, i64 8, i1 false) - %121 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %17, i32 0, i32 0 - %122 = load ptr, ptr %121, align 8 - %123 = call ptr @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(ptr noundef %119, ptr noundef %120, ptr %122) - %124 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %18, i32 0, i32 0 - store ptr %123, ptr %124, align 8 - br label %125 - -125: ; preds = %89, %55 - br label %207 - -126: ; preds = %29 - %127 = load i64, ptr %10, align 8 - %128 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %25, i64 noundef %127, ptr noundef @.str.2) - store i64 %128, ptr %19, align 8 - %129 = load i64, ptr %19, align 8 - %130 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %25, i64 noundef %129) - store ptr %130, ptr %20, align 8 - %131 = load ptr, ptr %20, align 8 - store ptr %131, ptr %21, align 8 - %132 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %133 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %132, i32 0, i32 0 - %134 = load ptr, ptr %133, align 8 - %135 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - %136 = load ptr, ptr %135, align 8 - %137 = load ptr, ptr %20, align 8 - %138 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %139 = invoke noundef ptr @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %134, ptr noundef %136, ptr noundef %137, ptr noundef nonnull align 1 dereferenceable(1) %138) - to label %140 unwind label %156 - -140: ; preds = %126 - store ptr %139, ptr %21, align 8 - %141 = load ptr, ptr %8, align 8 - %142 = load ptr, ptr %9, align 8 - %143 = load ptr, ptr %21, align 8 - %144 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %145 = invoke noundef ptr @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(ptr noundef %141, ptr noundef %142, ptr noundef %143, ptr noundef nonnull align 1 dereferenceable(1) %144) - to label %146 unwind label %156 - -146: ; preds = %140 - store ptr %145, ptr %21, align 8 - %147 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - %148 = load ptr, ptr %147, align 8 - %149 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %150 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %149, i32 0, i32 1 - %151 = load ptr, ptr %150, align 8 - %152 = load ptr, ptr %21, align 8 - %153 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - %154 = invoke noundef ptr @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %148, ptr noundef %151, ptr noundef %152, ptr noundef nonnull align 1 dereferenceable(1) %153) - to label %155 unwind label %156 - -155: ; preds = %146 - store ptr %154, ptr %21, align 8 - br label %175 - -156: ; preds = %146, %140, %126 - %157 = landingpad { ptr, i32 } - catch ptr null - %158 = extractvalue { ptr, i32 } %157, 0 - store ptr %158, ptr %22, align 8 - %159 = extractvalue { ptr, i32 } %157, 1 - store i32 %159, ptr %23, align 4 - br label %160 - -160: ; preds = %156 - %161 = load ptr, ptr %22, align 8 - %162 = call ptr @__cxa_begin_catch(ptr %161) #3 - %163 = load ptr, ptr %20, align 8 - %164 = load ptr, ptr %21, align 8 - %165 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %163, ptr noundef %164, ptr noundef nonnull align 1 dereferenceable(1) %165) - to label %166 unwind label %170 - -166: ; preds = %160 - %167 = load ptr, ptr %20, align 8 - %168 = load i64, ptr %19, align 8 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %25, ptr noundef %167, i64 noundef %168) - to label %169 unwind label %170 - -169: ; preds = %166 - invoke void @__cxa_rethrow() #17 - to label %217 unwind label %170 - -170: ; preds = %169, %166, %160 - %171 = landingpad { ptr, i32 } - cleanup - %172 = extractvalue { ptr, i32 } %171, 0 - store ptr %172, ptr %22, align 8 - %173 = extractvalue { ptr, i32 } %171, 1 - store i32 %173, ptr %23, align 4 - invoke void @__cxa_end_catch() - to label %174 unwind label %214 - -174: ; preds = %170 - br label %209 - -175: ; preds = %155 - %176 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %177 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %176, i32 0, i32 0 - %178 = load ptr, ptr %177, align 8 - %179 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %180 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %179, i32 0, i32 1 - %181 = load ptr, ptr %180, align 8 - %182 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 - call void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %178, ptr noundef %181, ptr noundef nonnull align 1 dereferenceable(1) %182) - %183 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %184 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %183, i32 0, i32 0 - %185 = load ptr, ptr %184, align 8 - %186 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %187 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %186, i32 0, i32 2 - %188 = load ptr, ptr %187, align 8 - %189 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %190 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %189, i32 0, i32 0 - %191 = load ptr, ptr %190, align 8 - %192 = ptrtoint ptr %188 to i64 - %193 = ptrtoint ptr %191 to i64 - %194 = sub i64 %192, %193 - %195 = sdiv exact i64 %194, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %25, ptr noundef %185, i64 noundef %195) - %196 = load ptr, ptr %20, align 8 - %197 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %198 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %197, i32 0, i32 0 - store ptr %196, ptr %198, align 8 - %199 = load ptr, ptr %21, align 8 - %200 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %201 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %200, i32 0, i32 1 - store ptr %199, ptr %201, align 8 - %202 = load ptr, ptr %20, align 8 - %203 = load i64, ptr %19, align 8 - %204 = getelementptr inbounds i32, ptr %202, i64 %203 - %205 = getelementptr inbounds %"struct.std::_Vector_base", ptr %25, i32 0, i32 0 - %206 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %205, i32 0, i32 2 - store ptr %204, ptr %206, align 8 - br label %207 - -207: ; preds = %175, %125 - br label %208 - -208: ; preds = %207, %4 - ret void - -209: ; preds = %174 - %210 = load ptr, ptr %22, align 8 - %211 = load i32, ptr %23, align 4 - %212 = insertvalue { ptr, i32 } poison, ptr %210, 0 - %213 = insertvalue { ptr, i32 } %212, i32 %211, 1 - resume { ptr, i32 } %213 - -214: ; preds = %170 - %215 = landingpad { ptr, i32 } - catch ptr null - %216 = extractvalue { ptr, i32 } %215, 0 - call void @__clang_call_terminate(ptr %216) #16 - unreachable - -217: ; preds = %169 - unreachable -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %0) #7 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(ptr noundef %0, ptr noundef %1) #4 comdat { - %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 -} - -; 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) #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 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 - %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) #3 - %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 uwtable -define linkonce_odr dso_local noundef ptr @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca ptr, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", 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 - %11 = load ptr, ptr %5, align 8 - %12 = call ptr @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(ptr noundef %11) - %13 = getelementptr inbounds %"class.std::move_iterator", ptr %9, i32 0, i32 0 - store ptr %12, ptr %13, align 8 - %14 = load ptr, ptr %6, align 8 - %15 = call ptr @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(ptr noundef %14) - %16 = getelementptr inbounds %"class.std::move_iterator", ptr %10, i32 0, i32 0 - store ptr %15, ptr %16, align 8 - %17 = load ptr, ptr %7, align 8 - %18 = load ptr, ptr %8, align 8 - %19 = getelementptr inbounds %"class.std::move_iterator", ptr %9, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - %21 = getelementptr inbounds %"class.std::move_iterator", ptr %10, i32 0, i32 0 - %22 = load ptr, ptr %21, align 8 - %23 = call noundef ptr @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(ptr %20, ptr %22, ptr noundef %17, ptr noundef nonnull align 1 dereferenceable(1) %18) - ret ptr %23 -} - -; 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) #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_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 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) #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.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 - ret ptr %4 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local ptr @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(ptr noundef %0, ptr noundef %1, ptr %2) #4 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 ptr, align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %2, ptr %9, align 8 - store ptr %0, ptr %6, align 8 - store ptr %1, ptr %7, align 8 - %10 = load ptr, ptr %6, align 8 - %11 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %10) - %12 = load ptr, ptr %7, align 8 - %13 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %12) - 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", ptr %8, i32 0, i32 0 - %15 = load ptr, ptr %14, align 8 - %16 = call ptr @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(ptr noundef %11, ptr noundef %13, ptr %15) - %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - store ptr %16, ptr %17, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt7advanceIPimEvRT_T0_(ptr noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #4 comdat { - %3 = alloca ptr, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"struct.std::random_access_iterator_tag", align 1 - %7 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load i64, ptr %4, align 8 - store i64 %8, ptr %5, align 8 - %9 = load ptr, ptr %3, align 8 - %10 = load i64, ptr %5, align 8 - %11 = load ptr, ptr %3, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %11) - call void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(ptr noundef nonnull align 8 dereferenceable(8) %9, i64 noundef %10) - ret void -} - -; 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) #4 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 i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, ptr noundef %2) #4 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) #3 - %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - %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) #3 - %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - 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) #3 - %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) #3 - %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) #3 - 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 uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %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 = icmp ne i64 %6, 0 - br i1 %7, label %8, label %12 - -8: ; preds = %2 - %9 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 - %10 = load i64, ptr %4, align 8 - %11 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10) - br label %13 - -12: ; preds = %2 - br label %13 - -13: ; preds = %12, %8 - %14 = phi ptr [ %11, %8 ], [ null, %12 ] - ret ptr %14 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca ptr, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", 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 - %11 = load ptr, ptr %5, align 8 - %12 = call ptr @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(ptr noundef %11) - %13 = getelementptr inbounds %"class.std::move_iterator", ptr %9, i32 0, i32 0 - store ptr %12, ptr %13, align 8 - %14 = load ptr, ptr %6, align 8 - %15 = call ptr @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(ptr noundef %14) - %16 = getelementptr inbounds %"class.std::move_iterator", ptr %10, i32 0, i32 0 - store ptr %15, ptr %16, align 8 - %17 = load ptr, ptr %7, align 8 - %18 = load ptr, ptr %8, align 8 - %19 = getelementptr inbounds %"class.std::move_iterator", ptr %9, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - %21 = getelementptr inbounds %"class.std::move_iterator", ptr %10, i32 0, i32 0 - %22 = load ptr, ptr %21, align 8 - %23 = call noundef ptr @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(ptr %20, ptr %22, ptr noundef %17, ptr noundef nonnull align 1 dereferenceable(1) %18) - ret ptr %23 -} - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #7 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - %11 = sdiv exact i64 %10, 4 - ret i64 %11 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(ptr %0, ptr %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca %"class.std::move_iterator", align 8 - %7 = alloca ptr, align 8 - %8 = alloca ptr, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", align 8 - %11 = getelementptr inbounds %"class.std::move_iterator", ptr %5, i32 0, i32 0 - store ptr %0, ptr %11, align 8 - %12 = getelementptr inbounds %"class.std::move_iterator", 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.std::move_iterator", ptr %9, i32 0, i32 0 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds %"class.std::move_iterator", ptr %10, i32 0, i32 0 - %17 = load ptr, ptr %16, align 8 - %18 = call noundef ptr @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(ptr %15, ptr %17, ptr noundef %13) - ret ptr %18 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local ptr @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(ptr noundef %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = alloca ptr, align 8 - store ptr %0, ptr %3, align 8 - %4 = load ptr, ptr %3, align 8 - call void @_ZNSt13move_iteratorIPiEC2ES0_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %4) - %5 = getelementptr inbounds %"class.std::move_iterator", 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 @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(ptr %0, ptr %1, ptr noundef %2) #4 comdat { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca ptr, align 8 - %7 = alloca i8, align 1 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", ptr %4, i32 0, i32 0 - store ptr %0, ptr %10, align 8 - %11 = getelementptr inbounds %"class.std::move_iterator", ptr %5, i32 0, i32 0 - store ptr %1, ptr %11, align 8 - store ptr %2, ptr %6, align 8 - store i8 1, ptr %7, align 1 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) - %12 = load ptr, ptr %6, align 8 - %13 = getelementptr inbounds %"class.std::move_iterator", ptr %8, i32 0, i32 0 - %14 = load ptr, ptr %13, align 8 - %15 = getelementptr inbounds %"class.std::move_iterator", ptr %9, i32 0, i32 0 - %16 = load ptr, ptr %15, align 8 - %17 = call noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(ptr %14, ptr %16, ptr noundef %12) - ret ptr %17 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(ptr %0, ptr %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca ptr, align 8 - %7 = alloca %"class.std::move_iterator", align 8 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = getelementptr inbounds %"class.std::move_iterator", ptr %4, i32 0, i32 0 - store ptr %0, ptr %9, align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", 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.std::move_iterator", ptr %7, i32 0, i32 0 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds %"class.std::move_iterator", ptr %8, i32 0, i32 0 - %15 = load ptr, ptr %14, align 8 - %16 = call noundef ptr @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(ptr %13, ptr %15, ptr noundef %11) - ret ptr %16 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(ptr %0, ptr %1, ptr noundef %2) #4 comdat { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca ptr, align 8 - %7 = alloca %"class.std::move_iterator", align 8 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = getelementptr inbounds %"class.std::move_iterator", ptr %4, i32 0, i32 0 - store ptr %0, ptr %9, align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", 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.std::move_iterator", ptr %7, i32 0, i32 0 - %12 = load ptr, ptr %11, align 8 - %13 = call noundef ptr @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(ptr %12) - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %5, i64 8, i1 false) - %14 = getelementptr inbounds %"class.std::move_iterator", ptr %8, i32 0, i32 0 - %15 = load ptr, ptr %14, align 8 - %16 = call noundef ptr @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(ptr %15) - %17 = load ptr, ptr %6, align 8 - %18 = call noundef ptr @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(ptr noundef %13, ptr noundef %16, ptr noundef %17) - ret ptr %18 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(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_baseIPiET_S1_(ptr noundef %7) #3 - %9 = load ptr, ptr %5, align 8 - %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #3 - %11 = load ptr, ptr %6, align 8 - %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #3 - %13 = call noundef ptr @_ZSt14__copy_move_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 uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(ptr %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = getelementptr inbounds %"class.std::move_iterator", ptr %2, i32 0, i32 0 - store ptr %0, ptr %3, align 8 - %4 = call noundef ptr @_ZNKSt13move_iteratorIPiE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %2) - %5 = call noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %4) - ret ptr %5 -} - -; 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) #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 %4, align 8 - ret ptr %5 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_(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_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) #7 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_a2ILb1EPiS0_ET1_T0_S2_S1_(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_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(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 @_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #7 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 ne i64 %14, 0 - 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 %21 - -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds i32, ptr %22, i64 %23 - ret ptr %24 -} - -; 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) #10 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr noundef %0) #7 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 @_ZNKSt13move_iteratorIPiE4baseEv(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 %"class.std::move_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 @_ZNSt13move_iteratorIPiEC2ES0_(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 %"class.std::move_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 ptr @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(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_baseIPiET_S1_(ptr noundef %7) #3 - %9 = load ptr, ptr %5, align 8 - %10 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %9) #3 - %11 = load ptr, ptr %6, align 8 - %12 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #3 - %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 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) #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_a2ILb1EPiS0_ET1_T0_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 @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(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_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(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_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #7 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 ne i64 %14, 0 - 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 %24 - -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds i32, ptr %25, i64 %27 - ret ptr %28 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local ptr @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(ptr noundef %0, ptr noundef %1, ptr %2) #4 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 ptr, align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %2, ptr %10, align 8 - store ptr %0, ptr %6, align 8 - store ptr %1, ptr %7, align 8 - 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 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %11) #3 - %13 = load ptr, ptr %7, align 8 - %14 = call noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %13) #3 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) - %15 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %9, i32 0, i32 0 - %16 = load ptr, ptr %15, align 8 - %17 = call noundef ptr @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(ptr %16) #3 - %18 = call noundef ptr @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(ptr noundef %12, ptr noundef %14, ptr noundef %17) - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %8, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - %21 = call ptr @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(ptr %20, ptr noundef %18) - %22 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - store ptr %21, ptr %22, align 8 - %23 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - %24 = load ptr, ptr %23, align 8 - ret ptr %24 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(ptr %0, ptr noundef %1) #7 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca ptr, align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - store ptr %0, ptr %7, align 8 - store ptr %1, ptr %5, align 8 - %8 = load ptr, ptr %5, align 8 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %6, ptr align 8 %4, i64 8, i1 false) - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %6, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - %11 = call noundef ptr @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(ptr %10) #3 - %12 = ptrtoint ptr %8 to i64 - %13 = ptrtoint ptr %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - %16 = call ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(ptr noundef nonnull align 8 dereferenceable(8) %4, i64 noundef %15) #3 - %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 - store ptr %16, ptr %17, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %3, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - ret ptr %19 -} - -; 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) #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_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_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(ptr %0) #7 comdat { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", 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_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %2) #3 - %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_a2ILb0EPiS0_ET1_T0_S2_S1_(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_mIiEEPT_PKS3_S6_S4_(ptr noundef %7, ptr noundef %8, ptr noundef %9) - ret ptr %10 -} +; Function Attrs: noreturn +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #7 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 ne i64 %14, 0 - br i1 %15, label %16, label %21 +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #10 -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 %21 +; Function Attrs: nobuiltin allocsize(0) +declare noundef nonnull ptr @_Znwm(i64 noundef) #11 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds i32, ptr %22, i64 %23 - ret ptr %24 +; 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 void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(ptr noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #7 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 +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 i64, align 8 + %5 = alloca ptr, align 8 store ptr %0, ptr %4, align 8 - store i64 %1, ptr %5, align 8 - %6 = load i64, ptr %5, align 8 - %7 = call i1 @llvm.is.constant.i64(i64 %6) - br i1 %7, label %8, label %15 - -8: ; preds = %2 - %9 = load i64, ptr %5, align 8 - %10 = icmp eq i64 %9, 1 - br i1 %10, label %11, label %15 + 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 = %8 - %12 = load ptr, ptr %4, align 8 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i32 1 - store ptr %14, ptr %12, align 8 - br label %31 - -15: ; preds = %8, %2 - %16 = load i64, ptr %5, align 8 - %17 = call i1 @llvm.is.constant.i64(i64 %16) - br i1 %17, label %18, label %25 - -18: ; preds = %15 - %19 = load i64, ptr %5, align 8 - %20 = icmp eq i64 %19, -1 - br i1 %20, label %21, label %25 - -21: ; preds = %18 - %22 = load ptr, ptr %4, align 8 - %23 = load ptr, ptr %22, align 8 - %24 = getelementptr inbounds i32, ptr %23, i32 -1 - store ptr %24, ptr %22, align 8 - br label %30 - -25: ; preds = %18, %15 - %26 = load i64, ptr %5, align 8 - %27 = load ptr, ptr %4, align 8 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds i32, ptr %28, i64 %26 - store ptr %29, ptr %27, align 8 - br label %30 +11: ; preds = %2 + %12 = load ptr, ptr %5, align 8 + store ptr %12, ptr %3, align 8 + br label %15 -30: ; preds = %25, %21 - br label %31 +13: ; preds = %2 + %14 = load ptr, ptr %4, align 8 + store ptr %14, ptr %3, align 8 + br label %15 -31: ; preds = %30, %11 - ret void +15: ; preds = %13, %11 + %16 = load ptr, ptr %3, align 8 + ret ptr %16 } -; Function Attrs: convergent nocallback nofree nosync nounwind willreturn memory(none) -declare i1 @llvm.is.constant.i64(i64) #13 - ; 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) #4 comdat { +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 - %8 = load ptr, ptr %4, align 8 - %9 = load ptr, ptr %5, align 8 - %10 = load ptr, ptr %6, align 8 - %11 = call noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(ptr noundef %8, ptr noundef %9, ptr noundef %10) - ret ptr %11 + 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) #4 comdat align 2 { +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 @@ -2420,7 +1179,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__ } ; 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) #4 comdat { +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 @@ -2437,7 +1196,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPiS0_ET0_T_S2_S1_(ptr nound } ; 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) #4 comdat { +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 @@ -2445,248 +1204,139 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S 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) #3 + %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) #3 + %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) #3 + %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 i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { +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 - %4 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - %5 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 - ret i64 %5 + ret ptr %3 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(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::_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 +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: noreturn -declare void @_ZSt20__throw_length_errorPKc(ptr noundef) #14 - -; 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) #7 comdat { - %3 = alloca ptr, align 8 +; 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 - %6 = load ptr, ptr %4, align 8 - %7 = load i64, ptr %6, 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 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 2305843009213693951, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { ptr, i32 } - catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #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) #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::_Vector_base", ptr %3, i32 0, i32 0 - ret ptr %4 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { +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 - %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 + ret ptr %3 } -; 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) #7 comdat { - %3 = alloca ptr, align 8 +; 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 - %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 nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 + 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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 i64, 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 i64 %1, ptr %5, 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 i64, ptr %5, align 8 - %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable - -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable + %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 i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} + %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 -; Function Attrs: noreturn -declare void @_ZSt28__throw_bad_array_new_lengthv() #14 +21: ; preds = %3 + %22 = load i64, ptr %7, align 8 + %23 = icmp eq i64 %22, 1 + br i1 %23, label %24, label %27 -; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +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 -; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #15 +27: ; preds = %24, %21 + br label %28 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local ptr @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(ptr noundef %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = alloca ptr, align 8 - store ptr %0, ptr %3, align 8 - %4 = load ptr, ptr %3, align 8 - call void @_ZNSt13move_iteratorIPiEC2ES0_(ptr noundef nonnull align 8 dereferenceable(8) %2, ptr noundef %4) - %5 = getelementptr inbounds %"class.std::move_iterator", ptr %2, i32 0, i32 0 - %6 = load ptr, ptr %5, align 8 - ret ptr %6 +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: 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 #6 comdat align 2 { +; 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 %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 + %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 #6 comdat align 2 { +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 @@ -2696,7 +1346,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7grea } ; 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) #4 comdat { +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 @@ -2711,7 +1361,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter %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) #3 + %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 @@ -2719,7 +1369,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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) #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 @@ -2729,10 +1379,10 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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) #3 + %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) #3 + %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) @@ -2762,7 +1412,46 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter } ; 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) #7 comdat align 2 { +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 @@ -2772,7 +1461,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #4 comdat { +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 @@ -2813,12 +1502,12 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it %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) #3 + %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) #3 + %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 @@ -2836,16 +1525,16 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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) #3 + %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) #3 + %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) #3 + %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) #3 + %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 @@ -2872,16 +1561,16 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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) #3 + %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) #3 + %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) #3 + %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) #3 + %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 @@ -2900,8 +1589,31 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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) #4 comdat align 2 { +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 @@ -2912,14 +1624,14 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_com 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) #3 - %12 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 + %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 #6 comdat align 2 { +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 @@ -2932,7 +1644,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7great } ; 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) #4 comdat { +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 @@ -2964,7 +1676,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter 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) #3 + %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 @@ -2978,16 +1690,16 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter 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) #3 + %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) #3 + %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) #3 + %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) #3 + %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 @@ -3000,16 +1712,16 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter 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) #3 + %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) #3 + %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) #7 comdat align 2 { +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 @@ -3026,7 +1738,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(ptr } ; 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) #7 comdat align 2 { +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 @@ -3036,41 +1748,41 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_com 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) #3 + %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) #7 comdat align 2 { +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) #3 + %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) #3 + %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) #7 comdat align 2 { +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) #3 + 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) #7 comdat align 2 { +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 @@ -3079,8 +1791,22 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z 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) #4 comdat { +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 @@ -3093,13 +1819,13 @@ define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iterator 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) #3 + %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) #3 + %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) @@ -3117,25 +1843,36 @@ define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iterator } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 comdat align 2 { +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 - 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 i32, ptr %6, i32 -1 - store ptr %7, ptr %5, align 8 - %8 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::_Vector_base", ptr %3, i32 0, i32 0 - %10 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %9, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef %11) #3 + %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) #7 comdat align 2 { +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 @@ -3147,7 +1884,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #4 comdat { +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 @@ -3162,15 +1899,15 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_itera %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) #3 + %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) #3 + %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) #3 + %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) #3 + %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) @@ -3180,76 +1917,72 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_itera ret void } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %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 = load ptr, ptr %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %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 = load ptr, ptr %4, align 8 - 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) #4 comdat align 2 { +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 %"class.__gnu_cxx::__normal_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 = 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 1 - %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 2 - %12 = load ptr, ptr %11, align 8 - %13 = icmp ne ptr %9, %12 - br i1 %13, label %14, label %24 - -14: ; preds = %2 - %15 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %16, i32 0, i32 1 + %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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %18, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 1 - %22 = load ptr, ptr %21, align 8 - %23 = getelementptr inbounds i32, ptr %22, i32 1 - store ptr %23, ptr %21, align 8 - br label %30 + %19 = icmp ne ptr %15, %18 + br i1 %19, label %20, label %37 -24: ; preds = %2 - %25 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %25, ptr %26, align 8 - %27 = load ptr, ptr %4, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - %29 = load ptr, ptr %28, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %29, ptr noundef nonnull align 4 dereferenceable(4) %27) - br label %30 +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 -30: ; preds = %24, %14 +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) #4 comdat { +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 @@ -3263,14 +1996,14 @@ define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iterato %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) #3 + %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) #3 + %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) #3 + %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 @@ -3279,165 +2012,254 @@ define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iterato ret void } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #7 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 +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 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.__gnu_cxx::__normal_iterator", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca ptr, align 8 %12 = alloca ptr, align 8 - %13 = alloca ptr, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - store ptr %1, ptr %14, align 8 - store ptr %0, ptr %5, align 8 - store ptr %2, ptr %6, align 8 - %15 = load ptr, ptr %5, align 8 - %16 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %15, i64 noundef 1, ptr noundef @.str.3) - store i64 %16, ptr %7, align 8 - %17 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %18 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %17, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - store ptr %19, ptr %8, align 8 - %20 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 1 - %22 = load ptr, ptr %21, align 8 - store ptr %22, ptr %9, align 8 - %23 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 - store ptr %23, ptr %24, align 8 - %25 = 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) %11) #3 - store i64 %25, ptr %10, align 8 - %26 = load i64, ptr %7, align 8 - %27 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %15, i64 noundef %26) - store ptr %27, ptr %12, align 8 - %28 = load ptr, ptr %12, align 8 - store ptr %28, ptr %13, align 8 - %29 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %30 = load ptr, ptr %12, align 8 - %31 = load i64, ptr %10, align 8 - %32 = getelementptr inbounds i32, ptr %30, i64 %31 - %33 = load ptr, ptr %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %29, ptr noundef %32, ptr noundef nonnull align 4 dereferenceable(4) %33) #3 - store ptr null, ptr %13, align 8 - %34 = load ptr, ptr %8, align 8 - %35 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #3 - %36 = load ptr, ptr %35, align 8 - %37 = load ptr, ptr %12, align 8 - %38 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %39 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %34, ptr noundef %36, ptr noundef %37, ptr noundef nonnull align 1 dereferenceable(1) %38) #3 - store ptr %39, ptr %13, align 8 - %40 = load ptr, ptr %13, align 8 - %41 = getelementptr inbounds i32, ptr %40, i32 1 - store ptr %41, ptr %13, align 8 - %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #3 - %43 = load ptr, ptr %42, align 8 - %44 = load ptr, ptr %9, align 8 - %45 = load ptr, ptr %13, align 8 - %46 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %47 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %43, ptr noundef %44, ptr noundef %45, ptr noundef nonnull align 1 dereferenceable(1) %46) #3 - store ptr %47, ptr %13, align 8 - %48 = load ptr, ptr %8, align 8 - %49 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %50 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %49, i32 0, i32 2 - %51 = load ptr, ptr %50, align 8 - %52 = load ptr, ptr %8, align 8 - %53 = ptrtoint ptr %51 to i64 - %54 = ptrtoint ptr %52 to i64 - %55 = sub i64 %53, %54 - %56 = sdiv exact i64 %55, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %15, ptr noundef %48, i64 noundef %56) - %57 = load ptr, ptr %12, align 8 - %58 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %59 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %58, i32 0, i32 0 - store ptr %57, ptr %59, align 8 - %60 = load ptr, ptr %13, align 8 - %61 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %62 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %61, i32 0, i32 1 - store ptr %60, ptr %62, align 8 - %63 = load ptr, ptr %12, align 8 - %64 = load i64, ptr %7, align 8 - %65 = getelementptr inbounds i32, ptr %63, i64 %64 - %66 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %67 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %66, i32 0, i32 2 - store ptr %65, ptr %67, 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 nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { +; 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 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 ptr %1, ptr %5, 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 ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - %10 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void + %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) #7 comdat align 2 { +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 - %9 = alloca %"struct.std::integral_constant", 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 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - %13 = load ptr, ptr %8, align 8 - %14 = call noundef ptr @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(ptr noundef %10, ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - ret ptr %14 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #7 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", 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 + %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 = load ptr, ptr %9, align 8 - %14 = call noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %10, ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - ret ptr %14 + %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 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) #7 comdat { +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 @@ -3447,18 +2269,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3 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) #3 + %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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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 @@ -3495,7 +2317,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_if } ; 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 #6 comdat align 2 { +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 @@ -3505,7 +2327,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7great } ; 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) #7 comdat align 2 { +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 @@ -3519,84 +2341,85 @@ define linkonce_odr dso_local ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vector %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) #3 + 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) #7 comdat align 2 { +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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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) #3 + %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) #3 + %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) #7 comdat align 2 { +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) #3 + 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: noinline uwtable -define internal void @_GLOBAL__sub_I_Nearly_sorted_Algo.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - 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) #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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { cold noreturn nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { convergent nocallback nofree nosync nounwind willreturn memory(none) } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -3606,7 +2429,7 @@ attributes #18 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/aho-corasick-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/aho-corasick-algorithm.ll index 3f55f53f2..d4a2b161e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/aho-corasick-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/aho-corasick-algorithm.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/aho-corasick-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -19,10 +20,9 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%"class.std::allocator.3" = type { i8 } +%struct._Guard = type { ptr } $_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any @@ -62,53 +62,31 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZNSaIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any - -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -118,12 +96,8 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZSt3maxImERKT_S2_S2_ = comdat any @@ -134,30 +108,18 @@ $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any $_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any $_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -168,12 +130,8 @@ $_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -192,7 +150,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -200,7 +160,7 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any $_ZNSt5dequeIiSaIiEE5frontEv = comdat any @@ -208,14 +168,8 @@ $_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any $_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @out = dso_local global [500 x i32] zeroinitializer, align 16 @f = dso_local global [500 x i32] zeroinitializer, align 16 @g = dso_local global [500 x [26 x i32]] zeroinitializer, align 16 @@ -228,27 +182,11 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any @.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 [42 x i8] c"basic_string::_M_construct null not valid\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 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_aho_corasick_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr noundef %0, i32 noundef %1) #4 personality ptr @__gxx_personality_v0 { +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 @@ -293,7 +231,7 @@ define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_string %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) #3 + %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 @@ -301,7 +239,7 @@ define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_string %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) #3 + %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 @@ -439,7 +377,7 @@ define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_string 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) #3 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %12) #13 br label %216 124: ; preds = %119, %103 @@ -581,7 +519,7 @@ define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_string 214: ; preds = %131 %215 = load i32, ptr %5, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %12) #3 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %12) #13 ret i32 %215 216: ; preds = %120 @@ -593,7 +531,7 @@ define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_string } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 +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 @@ -602,7 +540,7 @@ declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4size 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 #0 comdat align 2 { +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 @@ -613,7 +551,7 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr } ; 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) #4 comdat align 2 { +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 @@ -628,47 +566,47 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr 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) #6 comdat align 2 { +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) #3 + %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) #6 comdat align 2 { +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) #3 + %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) #6 comdat align 2 { +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) #3 + 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 #7 comdat align 2 { +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) #3 + 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) #6 { +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 @@ -714,7 +652,7 @@ define dso_local noundef i32 @_Z13findNextStateic(i32 noundef %0, i8 noundef sig } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(ptr noundef %0, i32 noundef %1, ptr noundef %2) #4 { +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 ptr, align 8 @@ -734,7 +672,7 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait 13: ; preds = %72, %3 %14 = load i32, ptr %8, align 4 %15 = sext i32 %14 to i64 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #13 %17 = icmp ult i64 %15, %16 br i1 %17, label %18, label %75 @@ -791,7 +729,7 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait %56 = load i32, ptr %9, align 4 %57 = sext i32 %56 to i64 %58 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %55, i64 %57 - %59 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %58) #3 + %59 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %58) #13 %60 = sub i64 %54, %59 %61 = add i64 %60, 1 %62 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8) %52, i64 noundef %61) @@ -823,287 +761,341 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait 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 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) #1 +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)) #1 +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) #1 +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) #1 +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) #1 +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)) #1 +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #6 -; 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 [4 x %"class.std::__cxx11::basic_string"], align 16 +; 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 %"class.std::allocator", align 1 + %4 = alloca ptr, align 8 %5 = alloca ptr, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca i1, align 1 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::allocator", align 1 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - %15 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %2, i64 0, i64 0 - store i1 true, ptr %10, align 1 - store ptr %15, ptr %3, align 8 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %15, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %4) - to label %16 unwind label %30 - -16: ; preds = %0 - %17 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %15, i64 1 - store ptr %17, ptr %3, align 8 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %7) - to label %18 unwind label %34 - -18: ; preds = %16 - %19 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %17, i64 1 - store ptr %19, ptr %3, align 8 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %19, ptr noundef @.str.5, ptr noundef nonnull align 1 dereferenceable(1) %8) - to label %20 unwind label %38 - -20: ; preds = %18 - %21 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %19, i64 1 - store ptr %21, ptr %3, align 8 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %21, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %9) - to label %22 unwind label %42 - -22: ; preds = %20 - store i1 false, ptr %10, align 1 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %12) - to label %23 unwind label %59 - -23: ; preds = %22 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - store i32 4, ptr %13, align 4 - %24 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %2, i64 0, i64 0 - %25 = load i32, ptr %13, align 4 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %26 unwind label %63 - -26: ; preds = %23 - invoke void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(ptr noundef %24, i32 noundef %25, ptr noundef %14) - to label %27 unwind label %67 - -27: ; preds = %26 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - %28 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %2, i32 0, i32 0 - %29 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %28, i64 4 - br label %72 - -30: ; preds = %0 - %31 = landingpad { ptr, i32 } + %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 - %32 = extractvalue { ptr, i32 } %31, 0 - store ptr %32, ptr %5, align 8 - %33 = extractvalue { ptr, i32 } %31, 1 - store i32 %33, ptr %6, align 4 - br label %48 - -34: ; preds = %16 - %35 = landingpad { ptr, i32 } + %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 - %36 = extractvalue { ptr, i32 } %35, 0 - store ptr %36, ptr %5, align 8 - %37 = extractvalue { ptr, i32 } %35, 1 - store i32 %37, ptr %6, align 4 - br label %47 - -38: ; preds = %18 - %39 = landingpad { ptr, i32 } + %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 - %40 = extractvalue { ptr, i32 } %39, 0 - store ptr %40, ptr %5, align 8 - %41 = extractvalue { ptr, i32 } %39, 1 - store i32 %41, ptr %6, align 4 - br label %46 - -42: ; preds = %20 - %43 = landingpad { ptr, i32 } + %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 - %44 = extractvalue { ptr, i32 } %43, 0 - store ptr %44, ptr %5, align 8 - %45 = extractvalue { ptr, i32 } %43, 1 - store i32 %45, ptr %6, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - br label %46 - -46: ; preds = %42, %38 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - br label %47 - -47: ; preds = %46, %34 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - br label %48 - -48: ; preds = %47, %30 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 - %49 = load i1, ptr %10, align 1 - br i1 %49, label %50, label %58 - -50: ; preds = %48 - %51 = load ptr, ptr %3, align 8 - %52 = icmp eq ptr %15, %51 - br i1 %52, label %57, label %53 - -53: ; preds = %53, %50 - %54 = phi ptr [ %51, %50 ], [ %55, %53 ] - %55 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %54, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %55) #3 - %56 = icmp eq ptr %55, %15 - br i1 %56, label %57, label %53 - -57: ; preds = %53, %50 - br label %58 - -58: ; preds = %57, %48 + %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 -59: ; preds = %22 - %60 = landingpad { ptr, i32 } - cleanup - %61 = extractvalue { ptr, i32 } %60, 0 - store ptr %61, ptr %5, align 8 - %62 = extractvalue { ptr, i32 } %60, 1 - store i32 %62, ptr %6, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - br label %78 +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 -63: ; preds = %23 - %64 = landingpad { ptr, i32 } +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 - %65 = extractvalue { ptr, i32 } %64, 0 - store ptr %65, ptr %5, align 8 - %66 = extractvalue { ptr, i32 } %64, 1 - store i32 %66, ptr %6, align 4 - br label %71 - -67: ; preds = %26 - %68 = landingpad { ptr, i32 } + %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 - %69 = extractvalue { ptr, i32 } %68, 0 - store ptr %69, ptr %5, align 8 - %70 = extractvalue { ptr, i32 } %68, 1 - store i32 %70, ptr %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 - br label %71 - -71: ; preds = %67, %63 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - br label %78 + %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 -72: ; preds = %72, %27 - %73 = phi ptr [ %29, %27 ], [ %74, %72 ] - %74 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %73, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %74) #3 - %75 = icmp eq ptr %74, %28 - br i1 %75, label %76, label %72 - -76: ; preds = %72 - %77 = load i32, ptr %1, align 4 - ret i32 %77 - -78: ; preds = %71, %59 - %79 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], ptr %2, i32 0, i32 0 - %80 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %79, i64 4 - br label %81 - -81: ; preds = %81, %78 - %82 = phi ptr [ %80, %78 ], [ %83, %81 ] - %83 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %82, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %83) #3 - %84 = icmp eq ptr %83, %79 - br i1 %84, label %85, label %81 - -85: ; preds = %81 - br label %86 +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 -86: ; preds = %85, %58 - %87 = load ptr, ptr %5, align 8 - %88 = load i32, ptr %6, align 4 - %89 = insertvalue { ptr, i32 } poison, ptr %87, 0 - %90 = insertvalue { ptr, i32 } %89, i32 %88, 1 - resume { ptr, i32 } %90 -} +111: ; preds = %107, %103 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %31) #13 + br label %118 -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 + %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 -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #14 + to label %18 unwind label %19 -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 +18: ; preds = %17 + unreachable -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 +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 -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 +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 = %25 +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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } - cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 - br label %32 - -32: ; preds = %28 +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 @@ -1111,41 +1103,38 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #1 +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 #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 + 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) #3 + 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) #14 + 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) #6 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -1159,7 +1148,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De } ; 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 { +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 @@ -1167,12 +1156,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret %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) #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 void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { +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 @@ -1180,12 +1169,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #6 comdat align 2 { +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 @@ -1194,9 +1183,9 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #14 +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 } @@ -1205,7 +1194,7 @@ 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 #7 comdat align 2 { +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 @@ -1225,24 +1214,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef n %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) #3 + 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) #3 + 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) #3 + 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 #7 comdat align 2 { +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 @@ -1272,7 +1261,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; 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 { +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 @@ -1294,7 +1283,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -1307,87 +1296,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes ret void } -; Function Attrs: mustprogress 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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 - -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 + %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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #14 + %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 #7 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #14 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #15 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #6 comdat { +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 @@ -1408,7 +1406,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { +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 @@ -1417,51 +1415,34 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #10 +declare void @_ZdlPv(ptr noundef) #9 -; Function Attrs: mustprogress 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) #6 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_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 + %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 { +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 @@ -1469,27 +1450,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { +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 @@ -1498,12 +1460,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate 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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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 @@ -1511,325 +1473,211 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr nou } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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)) #1 +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 -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: 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_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { +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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) + %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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { +; 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 i64, 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 %2, align 8 - br i1 false, label %6, label %9 + %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 +} -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #2 -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 +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 -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 +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 @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #7 comdat align 2 { +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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 - %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 i32, align 4 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #15 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #15 - to label %56 unwind label %41 + %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 -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 +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 -45: ; preds = %41 - br label %48 +10: ; preds = %7 + br label %11 -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +11: ; preds = %10, %1 ret void -48: ; preds = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } +12: ; preds = %7 + %13 = landingpad { ptr, i32 } catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #14 - unreachable - -56: ; preds = %40 + %14 = extractvalue { ptr, i32 } %13, 0 + call void @__clang_call_terminate(ptr %14) #15 unreachable } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #6 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #11 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { - %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 -} - -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: 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_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #6 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !18 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 -} - -; Function Attrs: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 -} - -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 { +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 @@ -1838,14 +1686,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull } ; 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 { +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) #3 + 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 @@ -1859,7 +1707,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #13 br label %12 12: ; preds = %8 @@ -1871,17 +1719,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #7 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1949,21 +1802,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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() #15 + invoke void @__cxa_rethrow() #14 to label %101 unwind label %62 62: ; preds = %49 @@ -1983,12 +1836,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -2022,7 +1875,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %99 = landingpad { ptr, i32 } catch ptr null %100 = extractvalue { ptr, i32 } %99, 0 - call void @__clang_call_terminate(ptr %100) #14 + call void @__clang_call_terminate(ptr %100) #15 unreachable 101: ; preds = %49 @@ -2030,16 +1883,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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 #7 comdat align 2 { +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 @@ -2048,22 +1892,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #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 @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #7 comdat align 2 { +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 @@ -2079,7 +1915,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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 { +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 @@ -2107,45 +1943,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 + %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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 + %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 -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 +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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -2179,7 +2030,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 !19 + br label %12, !llvm.loop !18 23: ; preds = %16 %24 = landingpad { ptr, i32 } @@ -2192,11 +2043,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 - invoke void @__cxa_rethrow() #15 + 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 @@ -2229,15 +2080,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %45 = landingpad { ptr, i32 } catch ptr null %46 = extractvalue { ptr, i32 } %45, 0 - call void @__clang_call_terminate(ptr %46) #14 + 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) #6 comdat align 2 { +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 @@ -2252,7 +2107,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -2260,267 +2115,244 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #15 - unreachable + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #15 +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 = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #16 - ret ptr %19 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #14 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #12 +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) #4 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 + %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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #15 - unreachable + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #15 +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 = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #16 - ret ptr %19 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #14 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 +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() #6 comdat align 2 { +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) #4 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 - -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 - -30: ; preds = %28, %16 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 + %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 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.9) #15 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - %10 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + %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) #6 comdat align 2 { +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 @@ -2528,25 +2360,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #6 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #11 +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) #4 comdat align 2 { +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 @@ -2582,12 +2414,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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 { +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() #3 + %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 @@ -2602,71 +2434,69 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { ptr, i32 } + %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 - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #14 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #6 comdat { +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 @@ -2694,17 +2524,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - ; 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 { +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 @@ -2863,7 +2684,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -2878,19 +2699,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #4 comdat { +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 @@ -2907,7 +2728,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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 { +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 @@ -2924,7 +2745,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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 { +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 @@ -2932,18 +2753,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #6 comdat { +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 @@ -2951,7 +2772,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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 { +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 @@ -2961,7 +2782,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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 { +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 @@ -2976,7 +2797,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { +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 @@ -2984,7 +2805,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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 { +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 @@ -2994,12 +2815,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { +; 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 @@ -3015,7 +2836,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -3024,20 +2845,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + br label %28 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #13 +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) #4 comdat { +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 @@ -3045,18 +2893,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -3071,7 +2919,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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 { +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 @@ -3081,12 +2929,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { +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 @@ -3102,7 +2950,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -3114,29 +2962,44 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 +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) #6 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #6 comdat align 2 { +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 @@ -3146,136 +3009,130 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 2 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = getelementptr inbounds i32, ptr %11, i64 -1 - %13 = icmp ne ptr %7, %12 - br i1 %13, label %14, label %25 - -14: ; preds = %1 - %15 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %24 = getelementptr inbounds i32, ptr %23, i32 1 - store ptr %24, ptr %22, align 8 - br label %27 + 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 -25: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %26 unwind label %28 +33: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %34 unwind label %36 -26: ; preds = %25 - br label %27 +34: ; preds = %33 + br label %35 -27: ; preds = %26, %14 +35: ; preds = %34, %18 ret void -28: ; preds = %25 - %29 = landingpad { ptr, i32 } +36: ; preds = %33 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #14 + %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 @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #6 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #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 @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %5 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %5, i32 0, i32 2 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 0 - %8 = load ptr, ptr %7, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %8) #3 - %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 1 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 %12 = load ptr, ptr %11, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12) #3 - %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 2 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds ptr, ptr %18, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 1 - %23 = load ptr, ptr %22, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 - store ptr %23, ptr %26, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %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 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_aho_corasick_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #14 = { noreturn nounwind } -attributes #15 = { noreturn } -attributes #16 = { allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -3285,7 +3142,7 @@ attributes #16 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} @@ -3299,4 +3156,3 @@ attributes #16 = { allocsize(0) } !16 = distinct !{!16, !7} !17 = distinct !{!17, !7} !18 = distinct !{!18, !7} -!19 = distinct !{!19, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/anagram-substring-search-search-permutations.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/anagram-substring-search-search-permutations.ll index 995996d03..3f38a5225 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/anagram-substring-search-search-permutations.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/anagram-substring-search-search-permutations.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/anagram-substring-search-search-permutations.cp target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [16 x i8] c"Found at Index \00", align 1 @__const.main.txt = private unnamed_addr constant [11 x i8] c"BACDGABCDA\00", align 1 @__const.main.pat = private unnamed_addr constant [5 x i8] c"ABCD\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7comparePcS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -88,7 +71,7 @@ define dso_local noundef zeroext i1 @_Z7comparePcS_(ptr noundef %0, ptr noundef } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { +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 @@ -100,11 +83,11 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { 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) #10 + %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) #10 + %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) @@ -224,21 +207,21 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #6 +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) #7 +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) #1 +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) #1 +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) #1 +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)) #1 +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() #8 { +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 @@ -252,25 +235,16 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -280,7 +254,7 @@ attributes #10 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/bellman-ford-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/bellman-ford-algorithm.ll index cb332af42..72b3a0575 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/bellman-ford-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/bellman-ford-algorithm.ll @@ -3,40 +3,23 @@ source_filename = "PE-benchmarks/bellman-ford-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +module asm ".globl _ZSt21ios_base_library_initv" + %struct.Graph = type { i32, i32, ptr } %struct.Edge = type { i32, i32, i32 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [29 x i8] c"Vertex Distance from Source\0A\00", align 1 @.str.1 = private unnamed_addr constant [10 x i8] c"%d \09\09 %d\0A\00", align 1 @.str.2 = private unnamed_addr constant [37 x i8] c"Graph contains negative weight cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_bellman_ford_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #4 { +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) #9 + %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 @@ -52,7 +35,7 @@ define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) %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) #9 + %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 @@ -61,16 +44,16 @@ define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +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) #6 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +declare noundef nonnull ptr @_Znam(i64 noundef) #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -106,10 +89,10 @@ define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #4 { ret void } -declare i32 @printf(ptr noundef, ...) #1 +declare i32 @printf(ptr noundef, ...) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z11BellmanFordP5Graphi(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -356,13 +339,13 @@ define dso_local void @_Z11BellmanFordP5Graphi(ptr noundef %0, i32 noundef %1) # } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #7 +declare ptr @llvm.stacksave() #4 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #7 +declare void @llvm.stackrestore(ptr) #4 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -523,22 +506,13 @@ define dso_local noundef i32 @main() #8 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_bellman_ford_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -548,7 +522,7 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/bfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/bfs.ll index d331a99ec..8a52def1a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/bfs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/bfs.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/bfs.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -48,12 +49,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any @@ -66,8 +63,6 @@ $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $__clang_call_terminate = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any @@ -76,15 +71,9 @@ $_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any $_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -96,19 +85,11 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any $_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE = comdat any @@ -116,31 +97,13 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [38 x i8] c"Following is Breadth First Traversal \00", align 1 @.str.2 = private unnamed_addr constant [27 x i8] c"(starting from vertex 2) \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_bfs.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -161,7 +124,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -173,7 +136,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -185,25 +148,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -221,14 +184,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -239,7 +202,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -256,7 +219,7 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab %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) #14 + %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 @@ -283,7 +246,7 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab br label %18, !llvm.loop !6 31: ; preds = %18 - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %7) #3 + 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 @@ -293,16 +256,16 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab to label %36 unwind label %80 36: ; preds = %31 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + 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) #3 + %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) #3 + %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 @@ -314,13 +277,13 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab to label %47 unwind label %80 47: ; preds = %45 - call void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #3 + 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) #3 + %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) @@ -332,15 +295,15 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab %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) #3 + %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) #3 + %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) #3 + %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 @@ -350,12 +313,12 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab 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) #3 + %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) #3 + %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 @@ -369,21 +332,21 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab 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) #3 + 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) #3 + %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) #3 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %7) #14 ret void 89: ; preds = %80 @@ -397,7 +360,7 @@ define dso_local void @_ZN5Graph3BFSEi(ptr noundef nonnull align 8 dereferenceab 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 #6 comdat align 2 { +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 @@ -407,7 +370,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -422,39 +385,39 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5em } ; 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) #8 comdat align 2 { +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) #3 + %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) #3 + %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) #1 +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) #1 +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) #8 comdat align 2 { +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) #3 + %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) #3 + 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) #8 comdat align 2 { +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 @@ -463,17 +426,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -489,21 +452,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -514,7 +477,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -528,16 +491,16 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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() #10 { +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 @@ -555,54 +518,42 @@ define dso_local noundef i32 @main() #10 { } ; 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 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -616,91 +567,105 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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) #3 + 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %6 = load ptr, ptr %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, 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_base", ptr %8, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - store ptr %10, ptr %3, align 8 - br label %11 - -11: ; preds = %23, %1 - %12 = load ptr, ptr %3, align 8 - %13 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, i32 0, i32 0 - %14 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %13, i32 0, i32 0 - %15 = icmp ne ptr %12, %14 - br i1 %15, label %16, label %27 - -16: ; preds = %11 - %17 = load ptr, ptr %3, align 8 - store ptr %17, ptr %4, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %18, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - store ptr %20, ptr %3, align 8 - %21 = load ptr, ptr %4, align 8 - %22 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %21) - to label %23 unwind label %28 - -23: ; preds = %16 - store ptr %22, ptr %5, align 8 - %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %25 = load ptr, ptr %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %24, ptr noundef %25) #3 - %26 = load ptr, ptr %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef %26) #3 - br label %11, !llvm.loop !10 - -27: ; preds = %11 + %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 -28: ; preds = %16 - %29 = landingpad { ptr, i32 } +36: ; preds = %20 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #15 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #8 comdat align 2 { +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) #3 + %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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -710,19 +675,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #8 comdat align 2 { +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 @@ -731,39 +684,48 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::__cxx11::_List_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef 1) - to label %8 unwind label %9 - -8: ; preds = %2 + %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 -9: ; preds = %2 - %10 = landingpad { ptr, i32 } +15: ; No predecessors! + %16 = landingpad { ptr, i32 } catch ptr null - %11 = extractvalue { ptr, i32 } %10, 0 - call void @__clang_call_terminate(ptr %11) #15 + %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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -772,33 +734,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -807,24 +743,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #10 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -832,7 +759,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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) #7 comdat align 2 { +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 @@ -848,44 +775,63 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(4) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #8 comdat align 2 { +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 @@ -902,17 +848,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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 #6 comdat align 2 { +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 @@ -930,22 +882,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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 @@ -957,153 +894,139 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #16 +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #13 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { +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 - 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} - -; 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { - %3 = alloca %"struct.std::_List_iterator", align 8 - %4 = alloca ptr, align 8 - %5 = alloca ptr, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 - store ptr %1, ptr %6, align 8 - store ptr %0, ptr %4, align 8 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(ptr noundef nonnull align 8 dereferenceable(24) %7, i64 noundef 1) - to label %8 unwind label %17 - -8: ; preds = %2 - %9 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - call void @_ZNSt8__detail15_List_node_base9_M_unhookEv(ptr noundef nonnull align 8 dereferenceable(16) %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", ptr %3, i32 0, i32 0 - %12 = load ptr, ptr %11, align 8 - store ptr %12, ptr %5, align 8 - %13 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %7) #3 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15) #3 - %16 = load ptr, ptr %5, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %7, ptr noundef %16) #3 + %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 -17: ; preds = %2 - %18 = landingpad { ptr, i32 } +25: ; preds = %2 + %26 = landingpad { ptr, i32 } catch ptr null - %19 = extractvalue { ptr, i32 } %18, 0 - call void @__clang_call_terminate(ptr %19) #15 + %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) #8 comdat align 2 { +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 @@ -1120,10 +1043,10 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_si } ; Function Attrs: nounwind -declare void @_ZNSt8__detail15_List_node_base9_M_unhookEv(ptr noundef nonnull align 8 dereferenceable(16)) #2 +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 #6 comdat align 2 { +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 @@ -1135,30 +1058,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_bfs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #16 = { builtin nounwind } +attributes #17 = { noreturn } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1168,7 +1085,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/biconnectivity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/biconnectivity.ll index 1766d3ed3..455af90ab 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/biconnectivity.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/biconnectivity.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/biconnectivity.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -42,12 +43,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -62,59 +59,31 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time = internal global i32 0, align 4 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [5 x i8] c"Yes\0A\00", align 1 @.str.1 = private unnamed_addr constant [4 x i8] c"No\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_biconnectivity.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -135,7 +104,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -147,7 +116,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -159,25 +128,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -201,14 +170,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -219,7 +188,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -258,13 +227,13 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef %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) #3 + 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) #3 + %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) @@ -276,14 +245,14 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef %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) #3 + %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) #3 + %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) #3 + %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 @@ -414,7 +383,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef 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) #3 + %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 @@ -427,7 +396,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(ptr noundef } ; 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 { +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 @@ -437,7 +406,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -446,17 +415,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -472,21 +441,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -497,7 +466,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat { +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 @@ -526,7 +495,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -540,7 +509,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -554,7 +523,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align %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) #14 + %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 @@ -563,7 +532,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align %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) #14 + %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 @@ -572,7 +541,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align %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) #14 + %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 @@ -581,7 +550,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align %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) #14 + %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 @@ -671,7 +640,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(ptr noundef nonnull align } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #10 { +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -769,57 +738,45 @@ define dso_local noundef i32 @main() #10 { 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 @_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 #6 comdat align 2 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -833,7 +790,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -849,66 +806,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -925,17 +901,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -944,7 +926,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -962,34 +944,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1001,127 +968,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #16 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #16 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1129,24 +1071,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1156,7 +1083,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1165,15 +1092,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +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 #6 comdat align 2 { +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 @@ -1185,30 +1112,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_biconnectivity.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #17 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1218,7 +1139,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/binary-insertion-sort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/binary-insertion-sort.ll index 2e3f8953b..74fd40ffe 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/binary-insertion-sort.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/binary-insertion-sort.ll @@ -242,7 +242,7 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/binomial-coefficient.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/binomial-coefficient.ll index 634469fec..c0333bd30 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/binomial-coefficient.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/binomial-coefficient.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/binomial-coefficient.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [12 x i8] c"Value of C[\00", align 1 @.str.1 = private unnamed_addr constant [3 x i8] c"][\00", align 1 @.str.2 = private unnamed_addr constant [6 x i8] c"] is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_binomial_coefficient.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13binomialCoeffii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -163,10 +146,10 @@ define dso_local noundef i32 @_Z13binomialCoeffii(i32 noundef %0, i32 noundef %1 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #6 { +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 @@ -190,10 +173,10 @@ define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #6 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 5, ptr %1, align 4 @@ -212,24 +195,15 @@ define dso_local noundef i32 @main() #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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_binomial_coefficient.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -239,7 +213,7 @@ attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/birthday-paradox.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/birthday-paradox.ll index 7ff6ae879..8df56a24e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/birthday-paradox.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/birthday-paradox.ll @@ -3,79 +3,55 @@ source_filename = "PE-benchmarks/birthday-paradox.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_birthday_paradox.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z4findd(double noundef %0) #4 { +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) #3 + %6 = call double @log(double noundef %5) #5 %7 = fmul double 7.300000e+02, %6 - %8 = call double @sqrt(double noundef %7) #3 + %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) #2 +declare double @sqrt(double noundef) #1 ; Function Attrs: nounwind -declare double @log(double noundef) #2 +declare double @log(double noundef) #1 ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare double @llvm.ceil.f64(double) #5 +declare double @llvm.ceil.f64(double) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_birthday_paradox.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -85,4 +61,4 @@ attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/boolean-parenthesization-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/boolean-parenthesization-problem.ll index 40e5d1de7..7a63cf001 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/boolean-parenthesization-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/boolean-parenthesization-problem.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/boolean-parenthesization-problem.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.symbols = private unnamed_addr constant [5 x i8] c"TTFT\00", align 1 @__const.main.operators = private unnamed_addr constant [4 x i8] c"|&^\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z12countParenthPcS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #4 { +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 @@ -510,13 +493,13 @@ define dso_local noundef i32 @_Z12countParenthPcS_i(ptr noundef %0, ptr noundef } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +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 @@ -525,7 +508,7 @@ define dso_local noundef i32 @main() #6 { 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) #9 + %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 @@ -537,29 +520,20 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #8 +declare i64 @strlen(ptr noundef) #4 -declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #8 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -569,7 +543,7 @@ attributes #9 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/boruvkas-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/boruvkas-algorithm.ll index 5fdede85b..c5970968c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/boruvkas-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/boruvkas-algorithm.ll @@ -671,7 +671,7 @@ attributes #5 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/box-stacking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/box-stacking.ll index ede07155c..d5af923dc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/box-stacking.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/box-stacking.ll @@ -498,7 +498,7 @@ attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/boyer-moore-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/boyer-moore-algorithm.ll index 575eeaf04..dc67a4c79 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/boyer-moore-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/boyer-moore-algorithm.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/boyer-moore-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,64 +14,35 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZSt3maxIiERKT_S2_S2_ = comdat any $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_boyer_moore_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 { +define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(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 @@ -136,7 +108,7 @@ define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_t 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) #4 personality ptr @__gxx_personality_v0 { +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 personality ptr @__gxx_personality_v0 { %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 %5 = alloca i32, align 4 @@ -151,10 +123,10 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %14 = alloca i32, align 4 store ptr %0, ptr %3, align 8 store ptr %1, ptr %4, align 8 - %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #9 %16 = trunc i64 %15 to i32 store i32 %16, ptr %5, align 4 - %17 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + %17 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #9 %18 = trunc i64 %17 to i32 store i32 %18, ptr %6, align 4 call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %1) @@ -164,7 +136,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI to label %21 unwind label %53 21: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 store i32 0, ptr %11, align 4 br label %22 @@ -220,7 +192,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI store ptr %55, ptr %9, align 8 %56 = extractvalue { ptr, i32 } %54, 1 store i32 %56, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 br label %105 57: ; preds = %48 @@ -318,7 +290,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr nou 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) #5 comdat { +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 @@ -346,175 +318,196 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z ret ptr %16 } -; 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.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %8, ptr noundef %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = load i32, ptr %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { ptr, i32 } + %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 - %18 = extractvalue { ptr, i32 } %17, 0 - store ptr %18, ptr %4, align 8 - %19 = extractvalue { ptr, i32 } %17, 1 - store i32 %19, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { ptr, i32 } + %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 - %22 = extractvalue { ptr, i32 } %21, 0 - store ptr %22, ptr %4, align 8 - %23 = extractvalue { ptr, i32 } %21, 1 - store i32 %23, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { ptr, i32 } + %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 - %26 = extractvalue { ptr, i32 } %25, 0 - store ptr %26, ptr %4, align 8 - %27 = extractvalue { ptr, i32 } %25, 1 - store i32 %27, ptr %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { ptr, i32 } + %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 - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %4, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { ptr, i32 } + %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 - %34 = extractvalue { ptr, i32 } %33, 0 - store ptr %34, ptr %4, align 8 - %35 = extractvalue { ptr, i32 } %33, 1 - store i32 %35, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load ptr, ptr %4, align 8 - %41 = load i32, ptr %5, align 4 - %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 - %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 - resume { ptr, i32 } %43 + %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: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -522,337 +515,223 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +; 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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 - -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #7 -; 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 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void + %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_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #10 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } + %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 - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #10 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +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 = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #11 - unreachable - -56: ; preds = %40 - unreachable +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #5 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 ptr @__cxa_begin_catch(ptr) - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #11 - unreachable -} - -declare void @_ZSt9terminatev() - declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #5 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat { +; 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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !11 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +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: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_boyer_moore_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { nounwind } attributes #10 = { noreturn } attributes #11 = { noreturn nounwind } @@ -864,10 +743,9 @@ attributes #11 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !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-llvm17/channel-assignment.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/channel-assignment.ll index 944e2e924..9f6207cfe 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/channel-assignment.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/channel-assignment.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/channel-assignment.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [56 x i8] c"The number of maximum packets sent in the time slot is \00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 @.str.2 = private unnamed_addr constant [2 x i8] c"T\00", align 1 @.str.3 = private unnamed_addr constant [5 x i8] c"-> R\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_channel_assignment.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -133,7 +116,7 @@ define dso_local noundef zeroext i1 @_Z3bpmPA4_iiPbPi(ptr noundef %0, i32 nounde } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z6maxBPMPA4_i(ptr noundef %0) #4 { +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 @@ -229,14 +212,14 @@ define dso_local noundef i32 @_Z6maxBPMPA4_i(ptr noundef %0) #4 { } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 +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) #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) #1 +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() #6 { +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 @@ -261,19 +244,10 @@ define dso_local noundef i32 @main() #6 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_channel_assignment.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -283,7 +257,7 @@ attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/coin-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/coin-change.ll index 11c8d60ba..34958e5b0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/coin-change.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/coin-change.ll @@ -3,36 +3,19 @@ source_filename = "PE-benchmarks/coin-change.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3], align 4 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_coin_change.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z5countPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -202,13 +185,13 @@ define dso_local noundef i32 @_Z5countPiii(ptr noundef %0, i32 noundef %1, i32 n } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [3 x i32], align 4 %3 = alloca i32, align 4 @@ -226,24 +209,15 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_coin_change.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -253,7 +227,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/collect-maximum-points-in-a-grid-using-two-traversals.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/collect-maximum-points-in-a-grid-using-two-traversals.ll index f92a44e97..a87dc8d2a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/collect-maximum-points-in-a-grid-using-two-traversals.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/collect-maximum-points-in-a-grid-using-two-traversals.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/collect-maximum-points-in-a-grid-using-two-trav target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,30 +13,12 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt3maxIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [5 x [4 x i32]] [[4 x i32] [i32 3, i32 6, i32 8, i32 2], [4 x i32] [i32 5, i32 2, i32 4, i32 3], [4 x i32] [i32 1, i32 1, i32 20, i32 10], [4 x i32] [i32 1, i32 1, i32 20, i32 10], [4 x i32] [i32 1, i32 1, i32 20, i32 10]], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [23 x i8] c"Maximum collection is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7isValidiii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -77,7 +60,7 @@ define dso_local noundef zeroext i1 @_Z7isValidiii(i32 noundef %0, i32 noundef % } ; 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) #5 { +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 @@ -397,7 +380,7 @@ define dso_local noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii(ptr noundef %0, ptr n } ; 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) #4 comdat { +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 @@ -426,7 +409,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z15geMaxCollectionPA4_i(ptr noundef %0) #5 { +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 @@ -439,10 +422,10 @@ define dso_local noundef i32 @_Z15geMaxCollectionPA4_i(ptr noundef %0) #5 { } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #6 +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() #7 { +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 @@ -455,27 +438,18 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -485,4 +459,4 @@ attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/construction-of-lcp-array-from-suffix-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/construction-of-lcp-array-from-suffix-array.ll index 42c3cfa9a..dfe983077 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/construction-of-lcp-array-from-suffix-array.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/construction-of-lcp-array-from-suffix-array.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -21,13 +22,12 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::__normal_iterator.3" = type { ptr } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_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::integral_constant" = type { i8 } +%"struct.std::random_access_iterator_tag" = type { i8 } $_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_ = comdat any @@ -39,12 +39,8 @@ $_ZNSt6vectorIiSaIiEED2Ev = comdat any $_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_ = comdat any -$_ZNSaIiED2Ev = comdat any - $_ZNSt6vectorIiSaIiEEixEm = comdat any $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any @@ -57,33 +53,21 @@ $_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any $_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any $_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any @@ -91,7 +75,7 @@ $_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_E $_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_ = comdat any -$_ZSt4__lgl = comdat any +$_ZSt4__lgIlET_S0_ = comdat any $_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any @@ -125,6 +109,10 @@ $_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 @@ -147,7 +135,9 @@ $_ZSt12__niter_baseIP6suffixET_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -155,8 +145,6 @@ $_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4 $_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_ = comdat any -$_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E = comdat any - $_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any $_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any @@ -169,18 +157,12 @@ $_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any $_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any $_ZNSt6vectorIiSaIiEE3endEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any $_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any @@ -201,21 +183,11 @@ $_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any $_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - $_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any @@ -229,10 +201,6 @@ $_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_ = comdat any $_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi = comdat any -$_ZNSaIiEC2ERKS_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_ = comdat any - $_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any $_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm = comdat any @@ -249,22 +217,16 @@ $_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag = comdat any $_ZSt17__size_to_integerm = comdat any -$_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_ = comdat any - $_ZSt8__fill_aIPiiEvT_S1_RKT0_ = comdat any $_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_ = comdat any -$_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_ = comdat any - $_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E = comdat any $_ZNKSt6vectorIiSaIiEE5beginEv = comdat any $_ZNKSt6vectorIiSaIiEE3endEv = comdat any -$_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_ = comdat any - $_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any $_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_ = comdat any @@ -283,41 +245,25 @@ $_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_ $_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = 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 -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [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 [42 x i8] c"basic_string::_M_construct null not valid\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 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #4 { +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 @@ -371,10 +317,10 @@ define dso_local noundef i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #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) #5 +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) #6 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %6 = alloca i32, align 4 @@ -663,7 +609,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t 207: ; preds = %76 store i1 false, ptr %17, align 1 - call void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 + call void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 store i32 0, ptr %18, align 4 br label %208 @@ -697,7 +643,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t store ptr %223, ptr %19, align 8 %224 = extractvalue { ptr, i32 } %222, 1 store i32 %224, ptr %20, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 br label %230 225: ; preds = %208 @@ -706,7 +652,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t br i1 %226, label %228, label %227 227: ; preds = %225 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 br label %228 228: ; preds = %227, %225 @@ -723,12 +669,12 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #7 +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) #1 +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) #6 comdat { +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 @@ -749,332 +695,384 @@ define linkonce_odr dso_local void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(ptr n } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { +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) #3 + 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) #6 comdat align 2 { +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 %"class.__gnu_cxx::__normal_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 = 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 1 - %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 2 - %12 = load ptr, ptr %11, align 8 - %13 = icmp ne ptr %9, %12 - br i1 %13, label %14, label %24 - -14: ; preds = %2 - %15 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %16, i32 0, i32 1 + %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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %18, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = getelementptr inbounds %"struct.std::_Vector_base", ptr %6, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 1 - %22 = load ptr, ptr %21, align 8 - %23 = getelementptr inbounds i32, ptr %22, i32 1 - store ptr %23, ptr %21, align 8 - br label %30 + %19 = icmp ne ptr %15, %18 + br i1 %19, label %20, label %37 -24: ; preds = %2 - %25 = call ptr @_ZNSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - store ptr %25, ptr %26, align 8 - %27 = load ptr, ptr %4, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %5, i32 0, i32 0 - %29 = load ptr, ptr %28, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr %29, ptr noundef nonnull align 4 dereferenceable(4) %27) - br label %30 +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 -30: ; preds = %24, %14 +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 #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 + %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 %3, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %7, i32 0, i32 1 + %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 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %6, ptr noundef %9, ptr noundef nonnull align 1 dereferenceable(1) %10) - to label %11 unwind label %12 + %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 -11: ; preds = %1 - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 +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 -12: ; preds = %1 - %13 = landingpad { ptr, i32 } +18: ; preds = %1 + %19 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #15 + %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) #7 +declare void @llvm.stackrestore(ptr) #3 -; Function Attrs: mustprogress noinline uwtable +; 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 i32, align 4 - %8 = alloca i1, align 1 - %9 = alloca i32, align 4 - %10 = alloca %"class.std::allocator", align 1 + %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 i32, align 4 - %13 = alloca %"class.std::vector", align 8 - %14 = alloca i32, align 4 - %15 = alloca %"class.std::allocator", align 1 - %16 = alloca i32, align 4 + %12 = alloca ptr, align 8 + %13 = alloca ptr, align 8 + %14 = alloca ptr, align 8 + %15 = alloca i32, align 4 + %16 = alloca i1, align 1 %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 ptr %2, ptr %6, align 8 - %20 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %2) #3 - %21 = trunc i64 %20 to i32 - store i32 %21, ptr %7, align 4 - store i1 false, ptr %8, align 1 - %22 = load i32, ptr %7, align 4 - %23 = sext i32 %22 to i64 - store i32 0, ptr %9, align 4 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %23, ptr noundef nonnull align 4 dereferenceable(4) %9, ptr noundef nonnull align 1 dereferenceable(1) %10) - to label %24 unwind label %43 - -24: ; preds = %3 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - %25 = load i32, ptr %7, align 4 - %26 = sext i32 %25 to i64 - store i32 0, ptr %14, align 4 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %13, i64 noundef %26, ptr noundef nonnull align 4 dereferenceable(4) %14, ptr noundef nonnull align 1 dereferenceable(1) %15) - to label %27 unwind label %47 - -27: ; preds = %24 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - store i32 0, ptr %16, align 4 - br label %28 - -28: ; preds = %40, %27 - %29 = load i32, ptr %16, align 4 - %30 = load i32, ptr %7, align 4 - %31 = icmp slt i32 %29, %30 - br i1 %31, label %32, label %51 - -32: ; preds = %28 - %33 = load i32, ptr %16, align 4 - %34 = load i32, ptr %16, align 4 - %35 = sext i32 %34 to i64 - %36 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %35) #3 - %37 = load i32, ptr %36, align 4 - %38 = sext i32 %37 to i64 - %39 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %13, i64 noundef %38) #3 - store i32 %33, ptr %39, align 4 - br label %40 - -40: ; preds = %32 - %41 = load i32, ptr %16, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, ptr %16, align 4 - br label %28, !llvm.loop !12 + %18 = alloca %"class.std::allocator", align 1 + %19 = alloca ptr, align 8 + %20 = alloca i32, align 4 + %21 = alloca %"class.std::vector", align 8 + %22 = alloca i32, align 4 + %23 = alloca %"class.std::allocator", align 1 + %24 = alloca i32, align 4 + %25 = alloca i32, align 4 + %26 = alloca i32, align 4 + %27 = alloca i32, align 4 + store ptr %0, ptr %12, align 8 + store ptr %1, ptr %13, align 8 + store ptr %2, ptr %14, align 8 + %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 + %29 = trunc i64 %28 to i32 + store i32 %29, ptr %15, align 4 + store i1 false, ptr %16, align 1 + %30 = load i32, ptr %15, align 4 + %31 = sext i32 %30 to i64 + store i32 0, ptr %17, align 4 + store ptr %18, ptr %11, align 8 + %32 = load ptr, ptr %11, align 8 + store ptr %32, ptr %4, align 8 + %33 = load ptr, ptr %4, align 8 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %31, ptr noundef nonnull align 4 dereferenceable(4) %17, ptr noundef nonnull align 1 dereferenceable(1) %18) + to label %34 unwind label %57 + +34: ; preds = %3 + store ptr %18, ptr %9, align 8 + %35 = load ptr, ptr %9, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %35) #15 + %36 = load i32, ptr %15, align 4 + %37 = sext i32 %36 to i64 + store i32 0, ptr %22, align 4 + store ptr %23, ptr %10, align 8 + %38 = load ptr, ptr %10, align 8 + store ptr %38, ptr %5, align 8 + %39 = load ptr, ptr %5, align 8 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %37, ptr noundef nonnull align 4 dereferenceable(4) %22, ptr noundef nonnull align 1 dereferenceable(1) %23) + to label %40 unwind label %62 + +40: ; preds = %34 + store ptr %23, ptr %7, align 8 + %41 = load ptr, ptr %7, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %41) #15 + store i32 0, ptr %24, align 4 + br label %42 -43: ; preds = %3 - %44 = landingpad { ptr, i32 } +42: ; preds = %54, %40 + %43 = load i32, ptr %24, align 4 + %44 = load i32, ptr %15, align 4 + %45 = icmp slt i32 %43, %44 + br i1 %45, label %46, label %67 + +46: ; preds = %42 + %47 = load i32, ptr %24, align 4 + %48 = load i32, ptr %24, align 4 + %49 = sext i32 %48 to i64 + %50 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %49) #15 + %51 = load i32, ptr %50, align 4 + %52 = sext i32 %51 to i64 + %53 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %52) #15 + store i32 %47, ptr %53, align 4 + br label %54 + +54: ; preds = %46 + %55 = load i32, ptr %24, align 4 + %56 = add nsw i32 %55, 1 + store i32 %56, ptr %24, align 4 + br label %42, !llvm.loop !12 + +57: ; preds = %3 + %58 = 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 @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - br label %135 - -47: ; preds = %24 - %48 = landingpad { ptr, i32 } + %59 = extractvalue { ptr, i32 } %58, 0 + store ptr %59, ptr %19, align 8 + %60 = extractvalue { ptr, i32 } %58, 1 + store i32 %60, ptr %20, align 4 + store ptr %18, ptr %8, align 8 + %61 = load ptr, ptr %8, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %61) #15 + br label %151 + +62: ; preds = %34 + %63 = landingpad { ptr, i32 } cleanup - %49 = extractvalue { ptr, i32 } %48, 0 - store ptr %49, ptr %11, align 8 - %50 = extractvalue { ptr, i32 } %48, 1 - store i32 %50, ptr %12, align 4 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - br label %134 - -51: ; preds = %28 - store i32 0, ptr %17, align 4 - store i32 0, ptr %18, align 4 - br label %52 - -52: ; preds = %127, %51 - %53 = load i32, ptr %18, align 4 - %54 = load i32, ptr %7, align 4 - %55 = icmp slt i32 %53, %54 - br i1 %55, label %56, label %130 + %64 = extractvalue { ptr, i32 } %63, 0 + store ptr %64, ptr %19, align 8 + %65 = extractvalue { ptr, i32 } %63, 1 + store i32 %65, ptr %20, align 4 + store ptr %23, ptr %6, align 8 + %66 = load ptr, ptr %6, align 8 + call void @_ZNSt15__new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %66) #15 + br label %150 -56: ; preds = %52 - %57 = load i32, ptr %18, align 4 - %58 = sext i32 %57 to i64 - %59 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %13, i64 noundef %58) #3 - %60 = load i32, ptr %59, align 4 - %61 = load i32, ptr %7, align 4 - %62 = sub nsw i32 %61, 1 - %63 = icmp eq i32 %60, %62 - br i1 %63, label %64, label %65 - -64: ; preds = %56 - store i32 0, ptr %17, align 4 - br label %127 - -65: ; preds = %56 - %66 = load i32, ptr %18, align 4 - %67 = sext i32 %66 to i64 - %68 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %13, i64 noundef %67) #3 - %69 = load i32, ptr %68, align 4 - %70 = add nsw i32 %69, 1 - %71 = sext i32 %70 to i64 - %72 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %71) #3 - %73 = load i32, ptr %72, align 4 - store i32 %73, ptr %19, align 4 - br label %74 - -74: ; preds = %106, %65 - %75 = load i32, ptr %18, align 4 - %76 = load i32, ptr %17, align 4 - %77 = add nsw i32 %75, %76 - %78 = load i32, ptr %7, align 4 - %79 = icmp slt i32 %77, %78 - br i1 %79, label %80, label %104 - -80: ; preds = %74 - %81 = load i32, ptr %19, align 4 - %82 = load i32, ptr %17, align 4 - %83 = add nsw i32 %81, %82 - %84 = load i32, ptr %7, align 4 - %85 = icmp slt i32 %83, %84 - br i1 %85, label %86, label %104 - -86: ; preds = %80 - %87 = load i32, ptr %18, align 4 - %88 = load i32, ptr %17, align 4 - %89 = add nsw i32 %87, %88 - %90 = sext i32 %89 to i64 - %91 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %90) - to label %92 unwind label %109 - -92: ; preds = %86 - %93 = load i8, ptr %91, align 1 - %94 = sext i8 %93 to i32 - %95 = load i32, ptr %19, align 4 - %96 = load i32, ptr %17, align 4 - %97 = add nsw i32 %95, %96 - %98 = sext i32 %97 to i64 - %99 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %98) - to label %100 unwind label %109 - -100: ; preds = %92 - %101 = load i8, ptr %99, align 1 - %102 = sext i8 %101 to i32 - %103 = icmp eq i32 %94, %102 - br label %104 - -104: ; preds = %100, %80, %74 - %105 = phi i1 [ false, %80 ], [ false, %74 ], [ %103, %100 ] - br i1 %105, label %106, label %113 - -106: ; preds = %104 - %107 = load i32, ptr %17, align 4 - %108 = add nsw i32 %107, 1 - store i32 %108, ptr %17, align 4 - br label %74, !llvm.loop !13 - -109: ; preds = %92, %86 - %110 = landingpad { ptr, i32 } +67: ; preds = %42 + store i32 0, ptr %25, align 4 + store i32 0, ptr %26, align 4 + br label %68 + +68: ; preds = %143, %67 + %69 = load i32, ptr %26, align 4 + %70 = load i32, ptr %15, align 4 + %71 = icmp slt i32 %69, %70 + br i1 %71, label %72, label %146 + +72: ; preds = %68 + %73 = load i32, ptr %26, align 4 + %74 = sext i32 %73 to i64 + %75 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %74) #15 + %76 = load i32, ptr %75, align 4 + %77 = load i32, ptr %15, align 4 + %78 = sub nsw i32 %77, 1 + %79 = icmp eq i32 %76, %78 + br i1 %79, label %80, label %81 + +80: ; preds = %72 + store i32 0, ptr %25, align 4 + br label %143 + +81: ; preds = %72 + %82 = load i32, ptr %26, align 4 + %83 = sext i32 %82 to i64 + %84 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %83) #15 + %85 = load i32, ptr %84, align 4 + %86 = add nsw i32 %85, 1 + %87 = sext i32 %86 to i64 + %88 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %87) #15 + %89 = load i32, ptr %88, align 4 + store i32 %89, ptr %27, align 4 + br label %90 + +90: ; preds = %122, %81 + %91 = load i32, ptr %26, align 4 + %92 = load i32, ptr %25, align 4 + %93 = add nsw i32 %91, %92 + %94 = load i32, ptr %15, align 4 + %95 = icmp slt i32 %93, %94 + br i1 %95, label %96, label %120 + +96: ; preds = %90 + %97 = load i32, ptr %27, align 4 + %98 = load i32, ptr %25, align 4 + %99 = add nsw i32 %97, %98 + %100 = load i32, ptr %15, align 4 + %101 = icmp slt i32 %99, %100 + br i1 %101, label %102, label %120 + +102: ; preds = %96 + %103 = load i32, ptr %26, align 4 + %104 = load i32, ptr %25, align 4 + %105 = add nsw i32 %103, %104 + %106 = sext i32 %105 to i64 + %107 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %106) + to label %108 unwind label %125 + +108: ; preds = %102 + %109 = load i8, ptr %107, align 1 + %110 = sext i8 %109 to i32 + %111 = load i32, ptr %27, align 4 + %112 = load i32, ptr %25, align 4 + %113 = add nsw i32 %111, %112 + %114 = sext i32 %113 to i64 + %115 = invoke noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %114) + to label %116 unwind label %125 + +116: ; preds = %108 + %117 = load i8, ptr %115, align 1 + %118 = sext i8 %117 to i32 + %119 = icmp eq i32 %110, %118 + br label %120 + +120: ; preds = %116, %96, %90 + %121 = phi i1 [ false, %96 ], [ false, %90 ], [ %119, %116 ] + br i1 %121, label %122, label %129 + +122: ; preds = %120 + %123 = load i32, ptr %25, align 4 + %124 = add nsw i32 %123, 1 + store i32 %124, ptr %25, align 4 + br label %90, !llvm.loop !13 + +125: ; preds = %108, %102 + %126 = landingpad { ptr, i32 } cleanup - %111 = extractvalue { ptr, i32 } %110, 0 - store ptr %111, ptr %11, align 8 - %112 = extractvalue { ptr, i32 } %110, 1 - store i32 %112, ptr %12, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #3 - br label %134 - -113: ; preds = %104 - %114 = load i32, ptr %17, align 4 - %115 = load i32, ptr %18, align 4 - %116 = sext i32 %115 to i64 - %117 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %13, i64 noundef %116) #3 - %118 = load i32, ptr %117, align 4 - %119 = sext i32 %118 to i64 - %120 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %119) #3 - store i32 %114, ptr %120, align 4 - %121 = load i32, ptr %17, align 4 - %122 = icmp sgt i32 %121, 0 - br i1 %122, label %123, label %126 - -123: ; preds = %113 - %124 = load i32, ptr %17, align 4 - %125 = add nsw i32 %124, -1 - store i32 %125, ptr %17, align 4 - br label %126 - -126: ; preds = %123, %113 - br label %127 - -127: ; preds = %126, %64 - %128 = load i32, ptr %18, align 4 - %129 = add nsw i32 %128, 1 - store i32 %129, ptr %18, align 4 - br label %52, !llvm.loop !14 - -130: ; preds = %52 - store i1 true, ptr %8, align 1 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #3 - %131 = load i1, ptr %8, align 1 - br i1 %131, label %133, label %132 - -132: ; preds = %130 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 - br label %133 - -133: ; preds = %132, %130 + %127 = extractvalue { ptr, i32 } %126, 0 + store ptr %127, ptr %19, align 8 + %128 = extractvalue { ptr, i32 } %126, 1 + store i32 %128, ptr %20, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + br label %150 + +129: ; preds = %120 + %130 = load i32, ptr %25, align 4 + %131 = load i32, ptr %26, align 4 + %132 = sext i32 %131 to i64 + %133 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %21, i64 noundef %132) #15 + %134 = load i32, ptr %133, align 4 + %135 = sext i32 %134 to i64 + %136 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %135) #15 + store i32 %130, ptr %136, align 4 + %137 = load i32, ptr %25, align 4 + %138 = icmp sgt i32 %137, 0 + br i1 %138, label %139, label %142 + +139: ; preds = %129 + %140 = load i32, ptr %25, align 4 + %141 = add nsw i32 %140, -1 + store i32 %141, ptr %25, align 4 + br label %142 + +142: ; preds = %139, %129 + br label %143 + +143: ; preds = %142, %80 + %144 = load i32, ptr %26, align 4 + %145 = add nsw i32 %144, 1 + store i32 %145, ptr %26, align 4 + br label %68, !llvm.loop !14 + +146: ; preds = %68 + store i1 true, ptr %16, align 1 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %21) #15 + %147 = load i1, ptr %16, align 1 + br i1 %147, label %149, label %148 + +148: ; preds = %146 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %149 + +149: ; preds = %148, %146 ret void -134: ; preds = %109, %47 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 - br label %135 +150: ; preds = %125, %62 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 + br label %151 -135: ; preds = %134, %43 - %136 = load ptr, ptr %11, align 8 - %137 = load i32, ptr %12, align 4 - %138 = insertvalue { ptr, i32 } poison, ptr %136, 0 - %139 = insertvalue { ptr, i32 } %138, i32 %137, 1 - resume { ptr, i32 } %139 +151: ; preds = %150, %57 + %152 = load ptr, ptr %19, align 8 + %153 = load i32, ptr %20, align 4 + %154 = insertvalue { ptr, i32 } poison, ptr %152, 0 + %155 = insertvalue { ptr, i32 } %154, i32 %153, 1 + resume { ptr, i32 } %155 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { +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 @@ -1091,17 +1089,8 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noun ret i64 %13 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1133,7 +1122,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef 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) #3 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %11) #15 br label %23 23: ; preds = %19 @@ -1144,17 +1133,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(ptr noundef resume { ptr, i32 } %27 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - ; 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) #4 comdat align 2 { +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 @@ -1169,7 +1149,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %0, i32 noundef %1) #6 { +define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %0, i32 noundef %1) #2 { %3 = alloca ptr, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -1187,7 +1167,7 @@ define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %0, i32 noundef 10: ; preds = %6 %11 = load i32, ptr %5, align 4 %12 = sext i32 %11 to i64 - %13 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %12) #3 + %13 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNSt6vectorIiSaIiEEixEm(ptr noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %12) #15 %14 = load i32, ptr %13, align 4 %15 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %14) %16 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8) %15, ptr noundef @.str) @@ -1204,266 +1184,276 @@ define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %0, i32 noundef 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 @_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) #1 +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) #1 +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)) #1 +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() #9 personality ptr @__gxx_personality_v0 { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator.0", align 1 +; 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::vector", align 8 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::vector", align 8 + %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 %"class.std::vector", align 8 + %12 = alloca i32, align 4 %13 = alloca %"class.std::vector", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %14 unwind label %35 - -14: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %15 unwind label %39 - -15: ; preds = %14 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %17 = trunc i64 %16 to i32 - invoke void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(ptr sret(%"class.std::vector") align 8 %6, ptr noundef %7, i32 noundef %17) - to label %18 unwind label %43 - -18: ; preds = %15 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %20 = trunc i64 %19 to i32 - store i32 %20, ptr %8, align 4 - %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.2) + %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 = %18 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %9, ptr noundef nonnull align 8 dereferenceable(24) %6) - to label %23 unwind label %47 - -23: ; preds = %22 - %24 = load i32, ptr %8, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %9, i32 noundef %24) +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 = %23 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %26 unwind label %47 - -26: ; preds = %25 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %12, ptr noundef nonnull align 8 dereferenceable(24) %6) - to label %27 unwind label %55 - -27: ; preds = %26 - invoke void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(ptr sret(%"class.std::vector") align 8 %10, ptr noundef %11, ptr noundef %12) - to label %28 unwind label %59 - -28: ; preds = %27 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %12) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - %29 = 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 %30 unwind label %64 +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 -30: ; preds = %28 +29: ; preds = %25 invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(ptr noundef nonnull align 8 dereferenceable(24) %13, ptr noundef nonnull align 8 dereferenceable(24) %10) - to label %31 unwind label %64 - -31: ; preds = %30 - %32 = load i32, ptr %8, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(ptr noundef %13, i32 noundef %32) - to label %33 unwind label %68 - -33: ; preds = %31 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %34 = load i32, ptr %1, align 4 - ret i32 %34 - -35: ; preds = %0 - %36 = landingpad { ptr, i32 } - cleanup - %37 = extractvalue { ptr, i32 } %36, 0 - store ptr %37, ptr %4, align 8 - %38 = extractvalue { ptr, i32 } %36, 1 - store i32 %38, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %75 + 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 -39: ; preds = %14 - %40 = landingpad { ptr, i32 } +42: ; preds = %0 + %43 = landingpad { ptr, i32 } cleanup - %41 = extractvalue { ptr, i32 } %40, 0 - store ptr %41, ptr %4, align 8 - %42 = extractvalue { ptr, i32 } %40, 1 - store i32 %42, ptr %5, align 4 - br label %74 - -43: ; preds = %15 - %44 = landingpad { ptr, i32 } - cleanup - %45 = extractvalue { ptr, i32 } %44, 0 - store ptr %45, ptr %4, align 8 - %46 = extractvalue { ptr, i32 } %44, 1 - store i32 %46, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - br label %74 - -47: ; preds = %25, %22, %18 + %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 %4, align 8 + store ptr %49, ptr %8, align 8 %50 = extractvalue { ptr, i32 } %48, 1 - store i32 %50, ptr %5, align 4 - br label %73 + store i32 %50, ptr %9, align 4 + br label %82 -51: ; preds = %23 +51: ; preds = %22 %52 = landingpad { ptr, i32 } cleanup %53 = extractvalue { ptr, i32 } %52, 0 - store ptr %53, ptr %4, align 8 + store ptr %53, ptr %8, align 8 %54 = extractvalue { ptr, i32 } %52, 1 - store i32 %54, ptr %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 - br label %73 + 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 = %26 +55: ; preds = %32, %29, %25 %56 = landingpad { ptr, i32 } cleanup %57 = extractvalue { ptr, i32 } %56, 0 - store ptr %57, ptr %4, align 8 + store ptr %57, ptr %8, align 8 %58 = extractvalue { ptr, i32 } %56, 1 - store i32 %58, ptr %5, align 4 - br label %63 + store i32 %58, ptr %9, align 4 + br label %81 -59: ; preds = %27 +59: ; preds = %30 %60 = landingpad { ptr, i32 } cleanup %61 = extractvalue { ptr, i32 } %60, 0 - store ptr %61, ptr %4, align 8 + store ptr %61, ptr %8, align 8 %62 = extractvalue { ptr, i32 } %60, 1 - store i32 %62, ptr %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %12) #3 - br label %63 - -63: ; preds = %59, %55 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - br label %73 + store i32 %62, ptr %9, align 4 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #15 + br label %81 -64: ; preds = %30, %28 - %65 = landingpad { ptr, i32 } +63: ; preds = %33 + %64 = landingpad { ptr, i32 } cleanup - %66 = extractvalue { ptr, i32 } %65, 0 - store ptr %66, ptr %4, align 8 - %67 = extractvalue { ptr, i32 } %65, 1 - store i32 %67, ptr %5, align 4 - br label %72 - -68: ; preds = %31 - %69 = landingpad { ptr, i32 } + %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 - %70 = extractvalue { ptr, i32 } %69, 0 - store ptr %70, ptr %4, align 8 - %71 = extractvalue { ptr, i32 } %69, 1 - store i32 %71, ptr %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %13) #3 - br label %72 - -72: ; preds = %68, %64 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - br label %73 - -73: ; preds = %72, %63, %51, %47 - call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - br label %74 - -74: ; preds = %73, %43, %39 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %75 + %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 -75: ; preds = %74, %35 - %76 = load ptr, ptr %4, align 8 - %77 = load i32, ptr %5, align 4 - %78 = insertvalue { ptr, i32 } poison, ptr %76, 0 - %79 = insertvalue { ptr, i32 } %78, i32 %77, 1 - resume { ptr, i32 } %79 -} +80: ; preds = %76, %72 + call void @_ZNSt6vectorIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %14) #15 + br label %81 -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 + %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 -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.4) #17 + to label %18 unwind label %19 -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 +18: ; preds = %17 + unreachable -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 +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 -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 +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 = %25 - ret void +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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } - cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 - br label %32 +31: ; preds = %27 + ret void -32: ; preds = %28 +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 @@ -1471,114 +1461,144 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) 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 #1 +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)) #2 +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 #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"class.std::allocator", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = load ptr, ptr %4, align 8 - %12 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %11) #3 - %13 = load ptr, ptr %4, align 8 - %14 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %13) #3 - call void @_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_(ptr sret(%"class.std::allocator") align 1 %5, ptr noundef nonnull align 1 dereferenceable(1) %14) - invoke void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr noundef nonnull align 8 dereferenceable(24) %10, i64 noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %5) - to label %15 unwind label %34 - -15: ; preds = %2 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - %16 = load ptr, ptr %4, align 8 - %17 = call ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %16) #3 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 - store ptr %17, ptr %18, align 8 - %19 = load ptr, ptr %4, align 8 - %20 = call ptr @_ZNKSt6vectorIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %19) #3 - %21 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 - store ptr %20, ptr %21, align 8 - %22 = getelementptr inbounds %"struct.std::_Vector_base", ptr %10, i32 0, i32 0 - %23 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %22, i32 0, i32 0 - %24 = load ptr, ptr %23, align 8 - %25 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 - %27 = load ptr, ptr %26, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 - %29 = load ptr, ptr %28, align 8 - %30 = invoke noundef ptr @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(ptr %27, ptr %29, ptr noundef %24, ptr noundef nonnull align 1 dereferenceable(1) %25) - to label %31 unwind label %38 - -31: ; preds = %15 - %32 = getelementptr inbounds %"struct.std::_Vector_base", ptr %10, i32 0, i32 0 - %33 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %32, i32 0, i32 1 - store ptr %30, ptr %33, 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 -34: ; preds = %2 - %35 = landingpad { ptr, i32 } +50: ; preds = %2 + %51 = landingpad { ptr, i32 } cleanup - %36 = extractvalue { ptr, i32 } %35, 0 - store ptr %36, ptr %6, align 8 - %37 = extractvalue { ptr, i32 } %35, 1 - store i32 %37, ptr %7, align 4 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %42 + %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 -38: ; preds = %15 - %39 = landingpad { ptr, i32 } +55: ; preds = %30 + %56 = landingpad { ptr, i32 } cleanup - %40 = extractvalue { ptr, i32 } %39, 0 - store ptr %40, ptr %6, align 8 - %41 = extractvalue { ptr, i32 } %39, 1 - store i32 %41, ptr %7, align 4 - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - br label %42 + %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 -42: ; preds = %38, %34 - %43 = load ptr, ptr %6, align 8 - %44 = load i32, ptr %7, align 4 - %45 = insertvalue { ptr, i32 } poison, ptr %43, 0 - %46 = insertvalue { ptr, i32 } %45, i32 %44, 1 - resume { ptr, i32 } %46 +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 #8 comdat align 2 { +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) #3 + 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 #8 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %3) #3 + %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 #8 comdat align 2 { +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 @@ -1592,327 +1612,214 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_da } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { +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)) #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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %0) #6 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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 - -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 +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 -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #9 -; 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 #8 comdat align 2 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void + %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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 + %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 -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 +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 -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.4) #16 +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 -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 +39: ; preds = %33 + br label %40 -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 +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 -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 +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 -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #16 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } +48: ; preds = %42, %40 + %49 = landingpad { ptr, i32 } cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 + %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 -45: ; preds = %41 - br label %48 +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 +} -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +; 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 +} -48: ; preds = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #15 - unreachable +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #8 -56: ; preds = %40 - unreachable -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #4 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #4 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %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 -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #10 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #6 comdat { +; 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 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 } -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: 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 ptr @__cxa_begin_catch(ptr) - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #8 -declare void @__cxa_rethrow() +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 -declare void @__cxa_end_catch() - -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #4 -declare void @_ZSt9terminatev() +; 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 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #4 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} +10: ; preds = %7 + br label %11 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 +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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !16 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare i64 @strlen(ptr noundef) #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 -} +declare void @_ZSt9terminatev() -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { +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 @@ -1920,7 +1827,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noun } ; 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) #6 comdat { +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 @@ -1944,7 +1851,7 @@ define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter %19 = ptrtoint ptr %17 to i64 %20 = sub i64 %18, %19 %21 = sdiv exact i64 %20, 12 - %22 = call noundef i64 @_ZSt4__lgl(i64 noundef %21) + %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 @@ -1963,7 +1870,7 @@ define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter } ; 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) #6 comdat { +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 @@ -1975,7 +1882,7 @@ define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suf } ; 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) #6 comdat { +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 @@ -2036,26 +1943,25 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5 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 !17 + 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__lgl(i64 noundef %0) #4 comdat { +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 i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 + %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) #6 comdat { +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 @@ -2106,7 +2012,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu } ; 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) #6 comdat { +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 @@ -2131,7 +2037,7 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__o } ; 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) #6 comdat { +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 @@ -2174,7 +2080,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIP6s } ; 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) #6 comdat { +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 @@ -2218,14 +2124,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__op %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 !18 + 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) #6 comdat { +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 @@ -2253,14 +2159,14 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops1 %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 !19 + 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) #6 comdat { +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 @@ -2329,14 +2235,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops1 %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 !20 + 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) #6 comdat align 2 { +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 @@ -2370,7 +2276,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_com } ; 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) #6 comdat { +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 @@ -2410,7 +2316,7 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15 } ; 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) #6 comdat { +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 @@ -2477,7 +2383,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 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 !21 + br label %23, !llvm.loop !26 52: ; preds = %23 %53 = load i64, ptr %12, align 8 @@ -2527,7 +2433,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 } ; 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 #8 comdat align 2 { +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 @@ -2542,7 +2448,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suff } ; 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) #6 comdat { +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 @@ -2597,7 +2503,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ %40 = sub nsw i64 %39, 1 %41 = sdiv i64 %40, 2 store i64 %41, ptr %13, align 8 - br label %19, !llvm.loop !22 + br label %19, !llvm.loop !27 42: ; preds = %29 %43 = load ptr, ptr %9, align 8 @@ -2608,7 +2514,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ } ; 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) #6 comdat align 2 { +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 @@ -2642,7 +2548,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_com } ; 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) #6 comdat { +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 @@ -2736,7 +2642,7 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP6suffixN9__gnu } ; 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) #6 comdat { +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 @@ -2761,7 +2667,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP6suffixN %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 !23 + br label %11, !llvm.loop !28 18: ; preds = %11 %19 = load ptr, ptr %7, align 8 @@ -2779,7 +2685,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP6suffixN %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 !24 + br label %21, !llvm.loop !29 28: ; preds = %21 %29 = load ptr, ptr %6, align 8 @@ -2798,23 +2704,23 @@ define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP6suffixN %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 !25 + 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) #4 comdat { +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) #3 + 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) #4 comdat { +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 @@ -2830,11 +2736,59 @@ define linkonce_odr dso_local void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_IS 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) #12 +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) #6 comdat { +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 @@ -2904,14 +2858,14 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5_ %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 !26 + 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) #6 comdat { +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 @@ -2949,14 +2903,14 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP6suffixN9_ %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 !27 + 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) #6 comdat { +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 @@ -2973,7 +2927,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIP6suffixS1_ET0_T_ } ; 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) #6 comdat { +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 @@ -3004,7 +2958,7 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ %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 !28 + br label %12, !llvm.loop !33 21: ; preds = %12 %22 = load ptr, ptr %4, align 8 @@ -3013,7 +2967,7 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ } ; 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) #6 comdat { +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 @@ -3025,7 +2979,7 @@ define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suff } ; 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) #6 comdat { +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 @@ -3033,18 +2987,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EP6su 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -3052,7 +3006,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIP6suffixET_S2_(ptr } ; 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) #4 comdat { +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 @@ -3062,7 +3016,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIP6suffixET_RKS2_S2 } ; 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) #6 comdat { +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 @@ -3077,7 +3031,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP6s } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr noundef %0) #4 comdat { +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 @@ -3085,7 +3039,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP6suffixET_S2_(ptr } ; 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) #6 comdat { +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 @@ -3095,12 +3049,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP6s %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_bI6suffixEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { +; 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 @@ -3116,7 +3070,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %13 = sdiv exact i64 %12, 12 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -3128,21 +3082,48 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds %struct.suffix, ptr %25, i64 %27 - ret ptr %28 +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) #5 +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) #6 comdat align 2 { +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 @@ -3176,7 +3157,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp } ; 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 #8 comdat align 2 { +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 @@ -3191,7 +3172,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suff } ; 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 #8 comdat align 2 { +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 @@ -3203,22 +3184,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suf ret void } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(ptr noundef %0, ptr noundef %1, ptr noundef nonnull align 1 dereferenceable(1) %2) #6 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 - call void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %7, ptr noundef %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) #4 comdat align 2 { +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 @@ -3227,7 +3194,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3249,19 +3216,19 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(ptr noundef 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) #3 + 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) #15 + 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) #6 comdat { +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 @@ -3273,7 +3240,7 @@ define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(ptr noundef %0, ptr } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(ptr noundef %0, ptr noundef %1) #4 comdat align 2 { +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 @@ -3282,55 +3249,52 @@ define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S } ; 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) #6 comdat align 2 { +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 - 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 - %9 = icmp ne ptr %8, null - br i1 %9, label %10, label %14 + %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 -10: ; preds = %3 - %11 = getelementptr inbounds %"struct.std::_Vector_base", ptr %7, i32 0, i32 0 - %12 = load ptr, ptr %5, align 8 - %13 = load i64, ptr %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12, i64 noundef %13) - br label %14 +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 -14: ; preds = %10, %3 +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 #8 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) + %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 @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { +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 @@ -3339,148 +3303,136 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #18 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - ret void -} +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) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 +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 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.__gnu_cxx::__normal_iterator", align 8 + %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 + %11 = alloca ptr, align 8 %12 = alloca ptr, align 8 - %13 = alloca ptr, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %4, i32 0, i32 0 - store ptr %1, ptr %14, align 8 - store ptr %0, ptr %5, align 8 - store ptr %2, ptr %6, align 8 - %15 = load ptr, ptr %5, align 8 - %16 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(ptr noundef nonnull align 8 dereferenceable(24) %15, i64 noundef 1, ptr noundef @.str.5) - store i64 %16, ptr %7, align 8 - %17 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %18 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %17, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - store ptr %19, ptr %8, align 8 - %20 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %20, i32 0, i32 1 - %22 = load ptr, ptr %21, align 8 - store ptr %22, ptr %9, align 8 - %23 = call ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", ptr %11, i32 0, i32 0 - store ptr %23, ptr %24, align 8 - %25 = 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) %11) #3 - store i64 %25, ptr %10, align 8 - %26 = load i64, ptr %7, align 8 - %27 = call noundef ptr @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(ptr noundef nonnull align 8 dereferenceable(24) %15, i64 noundef %26) - store ptr %27, ptr %12, align 8 - %28 = load ptr, ptr %12, align 8 - store ptr %28, ptr %13, align 8 - %29 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %30 = load ptr, ptr %12, align 8 - %31 = load i64, ptr %10, align 8 - %32 = getelementptr inbounds i32, ptr %30, i64 %31 - %33 = load ptr, ptr %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %29, ptr noundef %32, ptr noundef nonnull align 4 dereferenceable(4) %33) #3 - store ptr null, ptr %13, align 8 - %34 = load ptr, ptr %8, align 8 - %35 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #3 - %36 = load ptr, ptr %35, align 8 - %37 = load ptr, ptr %12, align 8 - %38 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %39 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %34, ptr noundef %36, ptr noundef %37, ptr noundef nonnull align 1 dereferenceable(1) %38) #3 - store ptr %39, ptr %13, align 8 - %40 = load ptr, ptr %13, align 8 - %41 = getelementptr inbounds i32, ptr %40, i32 1 - store ptr %41, ptr %13, align 8 - %42 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %4) #3 - %43 = load ptr, ptr %42, align 8 - %44 = load ptr, ptr %9, align 8 - %45 = load ptr, ptr %13, align 8 - %46 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %15) #3 - %47 = call noundef ptr @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(ptr noundef %43, ptr noundef %44, ptr noundef %45, ptr noundef nonnull align 1 dereferenceable(1) %46) #3 - store ptr %47, ptr %13, align 8 - %48 = load ptr, ptr %8, align 8 - %49 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %50 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %49, i32 0, i32 2 - %51 = load ptr, ptr %50, align 8 - %52 = load ptr, ptr %8, align 8 - %53 = ptrtoint ptr %51 to i64 - %54 = ptrtoint ptr %52 to i64 - %55 = sub i64 %53, %54 - %56 = sdiv exact i64 %55, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(ptr noundef nonnull align 8 dereferenceable(24) %15, ptr noundef %48, i64 noundef %56) - %57 = load ptr, ptr %12, align 8 - %58 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %59 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %58, i32 0, i32 0 - store ptr %57, ptr %59, align 8 - %60 = load ptr, ptr %13, align 8 - %61 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %62 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %61, i32 0, i32 1 - store ptr %60, ptr %62, align 8 - %63 = load ptr, ptr %12, align 8 - %64 = load i64, ptr %7, align 8 - %65 = getelementptr inbounds i32, ptr %63, i64 %64 - %66 = getelementptr inbounds %"struct.std::_Vector_base", ptr %15, i32 0, i32 0 - %67 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", ptr %66, i32 0, i32 2 - store ptr %65, ptr %67, 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) #4 comdat align 2 { +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) #3 + 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 nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #4 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - 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) #6 comdat align 2 { +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 @@ -3490,8 +3442,8 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEm 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) #3 - %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #3 + %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 @@ -3499,30 +3451,30 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEm 15: ; preds = %3 %16 = load ptr, ptr %6, align 8 - call void @_ZSt20__throw_length_errorPKc(ptr noundef %16) #16 + 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) #3 - %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #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) #3 + %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) #3 + %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) #3 + %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %9) #15 br label %34 32: ; preds = %26 @@ -3535,16 +3487,16 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEm } ; 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) #4 comdat { +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) #3 + %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) #3 + %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 @@ -3554,65 +3506,70 @@ define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { +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) #3 + 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) #6 comdat align 2 { +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 - 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 = icmp ne i64 %6, 0 - br i1 %7, label %8, label %12 + %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 -8: ; preds = %2 - %9 = getelementptr inbounds %"struct.std::_Vector_base", ptr %5, i32 0, i32 0 - %10 = load i64, ptr %4, align 8 - %11 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %9, i64 noundef %10) - br label %13 +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 -12: ; preds = %2 - br label %13 +16: ; preds = %2 + br label %17 -13: ; preds = %12, %8 - %14 = phi ptr [ %11, %8 ], [ null, %12 ] - ret ptr %14 +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) #4 comdat align 2 { +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 - %9 = alloca %"struct.std::integral_constant", 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 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - %13 = load ptr, ptr %8, align 8 - %14 = call noundef ptr @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(ptr noundef %10, ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - ret ptr %14 + %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) #4 comdat align 2 { +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 @@ -3621,20 +3578,20 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #10 +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) #4 comdat { +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 @@ -3663,32 +3620,40 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 2305843009213693951, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 + %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 -10: ; preds = %1 - %11 = landingpad { ptr, i32 } +15: ; preds = %1 + %16 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #15 + %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) #4 comdat align 2 { +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 @@ -3697,16 +3662,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %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 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #4 comdat { +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 @@ -3734,25 +3690,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - ; 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 #8 comdat align 2 { +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 @@ -3766,81 +3705,52 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vector } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #6 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 unreachable -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #16 +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #17 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 +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() #10 +declare void @_ZSt28__throw_bad_array_new_lengthv() #9 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #10 +declare void @_ZSt17__throw_bad_allocv() #9 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #14 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(ptr noundef %0, ptr noundef %1, ptr noundef %2, ptr noundef nonnull align 1 dereferenceable(1) %3) #4 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", 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 %6, align 8 - %11 = load ptr, ptr %7, align 8 - %12 = load ptr, ptr %8, align 8 - %13 = load ptr, ptr %9, align 8 - %14 = call noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(ptr noundef %10, ptr noundef %11, ptr noundef %12, ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - ret ptr %14 -} +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) #4 comdat { +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 @@ -3850,18 +3760,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3 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) #3 + %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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -3898,39 +3808,52 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__relocate_a_1IiiENSt9enable_if } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %0) #4 comdat { +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: mustprogress noinline uwtable +; 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 i64, align 8 + %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 - %5 = alloca %"class.std::allocator", align 1 - store i64 %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %6 = load i64, ptr %3, align 8 - %7 = load ptr, ptr %4, align 8 - call void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %8 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - %9 = icmp ugt i64 %6, %8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br i1 %9, label %10, label %11 - -10: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.6) #16 + %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 -11: ; preds = %2 - %12 = load i64, ptr %3, align 8 - ret i64 %12 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3942,7 +3865,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr nou %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) #3 + 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 @@ -3957,7 +3880,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr nou 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) #3 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 br label %18 18: ; preds = %14 @@ -3969,7 +3892,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(ptr nou } ; 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) #6 comdat align 2 { +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 @@ -3982,7 +3905,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRK %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) #3 + %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 @@ -3991,42 +3914,30 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRK } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #8 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - 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 #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 = load ptr, ptr %4, align 8 - call void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %5) #3 + %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) #6 comdat align 2 { +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 @@ -4055,7 +3966,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_stora } ; 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) #6 comdat { +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 @@ -4072,7 +3983,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt24__uninitialized_fill_n_aIPimiiE } ; 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) #6 comdat { +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 @@ -4089,7 +4000,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt20uninitialized_fill_nIPimiET_S1_ } ; 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) #6 comdat align 2 { +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 @@ -4104,26 +4015,27 @@ define linkonce_odr dso_local noundef ptr @_ZNSt22__uninitialized_fill_nILb1EE15 } ; 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) #6 comdat { +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 i64, align 8 - %6 = alloca ptr, align 8 - %7 = alloca %"struct.std::random_access_iterator_tag", align 1 + %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 - 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 = load i64, ptr %5, align 8 - %11 = call noundef i64 @_ZSt17__size_to_integerm(i64 noundef %10) - %12 = load ptr, ptr %6, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %4) - %13 = call noundef ptr @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(ptr noundef %9, i64 noundef %11, ptr noundef nonnull align 4 dereferenceable(4) %12) - ret ptr %13 + %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) #6 comdat { +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 @@ -4160,22 +4072,15 @@ define linkonce_odr dso_local noundef ptr @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt17__size_to_integerm(i64 noundef %0) #4 comdat { +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 nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(ptr noundef nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - ret void -} - ; 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) #6 comdat { +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 @@ -4190,7 +4095,7 @@ define linkonce_odr dso_local void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(ptr noundef %0 } ; 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) #4 comdat { +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 @@ -4219,25 +4124,14 @@ define linkonce_odr dso_local void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifI %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 !29 + br label %10, !llvm.loop !34 20: ; preds = %10 ret void } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_(ptr noalias sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_(ptr sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %5) - 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) #6 comdat { +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 @@ -4262,71 +4156,62 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__uninitialized_copy_aIN9__gnu_ } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNKSt6vectorIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #4 comdat align 2 { +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) #3 + 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) #4 comdat align 2 { +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) #3 + 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 void @_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_(ptr noalias sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZNSaIiEC2ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - ; 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) #6 comdat { +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 %"class.__gnu_cxx::__normal_iterator.3", align 8 + %8 = alloca i8, align 1 %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %4, i32 0, i32 0 - store ptr %0, ptr %10, align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %5, i32 0, i32 0 - store ptr %1, ptr %11, 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 - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %8, ptr align 8 %4, i64 8, i1 false) - call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %5, i64 8, i1 false) - %12 = load ptr, ptr %6, align 8 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %8, i32 0, i32 0 - %14 = load ptr, ptr %13, align 8 - %15 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", ptr %9, i32 0, i32 0 - %16 = load ptr, ptr %15, align 8 - %17 = call noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(ptr %14, ptr %16, ptr noundef %12) - ret ptr %17 + 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) #6 comdat align 2 { +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 @@ -4349,7 +4234,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__uninitialized_copyILb1EE13__ } ; 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) #6 comdat { +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 @@ -4384,7 +4269,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIN9__gnu_cxx17__normal_itera } ; 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) #6 comdat { +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 @@ -4398,20 +4283,20 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EN9__gnu_cxx17 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -4423,7 +4308,7 @@ define linkonce_odr dso_local ptr @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iter } ; 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) #4 comdat { +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 @@ -4433,7 +4318,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr } ; 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) #6 comdat { +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 @@ -4448,17 +4333,17 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_ } ; 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) #4 comdat { +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) #3 + %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) #6 comdat { +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 @@ -4468,12 +4353,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_ %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_mIiEEPT_PKS3_S6_S4_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { +; 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 @@ -4489,7 +4374,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 4 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -4498,17 +4383,44 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + br label %28 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds i32, ptr %22, i64 %23 - ret ptr %24 +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 noundef nonnull align 8 dereferenceable(8) ptr @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(ptr noundef nonnull align 8 dereferenceable(8) %0) #4 comdat align 2 { +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 @@ -4517,7 +4429,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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 #8 comdat align 2 { +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 @@ -4530,30 +4442,29 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vecto ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nosync nounwind willreturn } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } +; 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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -4563,7 +4474,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} @@ -4574,12 +4485,12 @@ attributes #17 = { allocsize(0) } !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} +!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} @@ -4588,3 +4499,8 @@ attributes #17 = { allocsize(0) } !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-llvm17/count-1s-sorted-binary-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-1s-sorted-binary-array.ll index 593170493..27c39846d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-1s-sorted-binary-array.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-1s-sorted-binary-array.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/count-1s-sorted-binary-array.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [7 x i8] c"\01\01\01\01\00\00\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [32 x i8] c"Count of 1's in given array is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z9countOnesPbii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -128,7 +111,7 @@ define dso_local noundef i32 @_Z9countOnesPbii(ptr noundef %0, i32 noundef %1, i } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca [7 x i8], align 1 %3 = alloca i32, align 4 @@ -145,25 +128,16 @@ define dso_local noundef i32 @main() #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) #6 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -173,4 +147,4 @@ attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-number-binary-strings-without-consecutive-1s.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-number-binary-strings-without-consecutive-1s.ll index 58e75942a..e839c7c2e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-number-binary-strings-without-consecutive-1s.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-number-binary-strings-without-consecutive-1s.ll @@ -3,35 +3,18 @@ source_filename = "PE-benchmarks/count-number-binary-strings-without-consecutive target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z12countStringsi(i32 noundef %0) #4 { +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 @@ -112,13 +95,13 @@ define dso_local noundef i32 @_Z12countStringsi(i32 noundef %0) #4 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +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) @@ -127,25 +110,16 @@ define dso_local noundef i32 @main() #6 { ret i32 0 } -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 @_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) #1 +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)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -155,6 +129,6 @@ attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll index 9324312e2..abe9a4cd2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll @@ -3,36 +3,19 @@ source_filename = "PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-eq target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @lookup = dso_local global [101 x [501 x i64]] zeroinitializer, align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i64 @_Z8countRecii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -129,7 +112,7 @@ define dso_local noundef i64 @_Z8countRecii(i32 noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i64 @_Z10finalCountii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -180,10 +163,10 @@ define dso_local noundef i64 @_Z10finalCountii(i32 noundef %0, i32 noundef %1) # } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 +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() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -197,21 +180,12 @@ define dso_local noundef i32 @main() #6 { ret i32 0 } -declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEy(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEy(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -221,7 +195,7 @@ attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-possible-ways-to-construct-buildings.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-possible-ways-to-construct-buildings.ll index 5f929bf3c..97a7c879e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-possible-ways-to-construct-buildings.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-possible-ways-to-construct-buildings.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/count-possible-ways-to-construct-buildings.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [19 x i8] c"Count of ways for \00", align 1 @.str.1 = private unnamed_addr constant [14 x i8] c" sections is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9countWaysi(i32 noundef %0) #4 { +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 @@ -99,7 +82,7 @@ define dso_local noundef i32 @_Z9countWaysi(i32 noundef %0) #4 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -114,22 +97,13 @@ define dso_local noundef i32 @main() #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) #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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -139,6 +113,6 @@ attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-ways-reach-nth-stair.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-ways-reach-nth-stair.ll index 1e69c0ee1..d236d804a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/count-ways-reach-nth-stair.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/count-ways-reach-nth-stair.ll @@ -148,7 +148,7 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/cut-vertices.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/cut-vertices.ll index b8369778d..3b05a09a1 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/cut-vertices.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/cut-vertices.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/cut-vertices.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -42,12 +43,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -62,61 +59,33 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time = internal global i32 0, align 4 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in first graph \0A\00", align 1 @.str.2 = private unnamed_addr constant [39 x i8] c"\0AArticulation points in second graph \0A\00", align 1 @.str.3 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in third graph \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_cut_vertices.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -137,7 +106,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -149,7 +118,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -161,25 +130,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -203,14 +172,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -221,7 +190,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -261,13 +230,13 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align %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) #3 + 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) #3 + %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) @@ -279,14 +248,14 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align %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) #3 + %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) #3 + %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) #3 + %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 @@ -419,7 +388,7 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align 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) #3 + %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 @@ -427,7 +396,7 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(ptr noundef nonnull align } ; 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 { +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 @@ -437,7 +406,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -446,17 +415,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -472,21 +441,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -497,7 +466,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat { +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 @@ -526,7 +495,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -540,7 +509,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -555,7 +524,7 @@ define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceabl %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) #14 + %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 @@ -564,7 +533,7 @@ define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceabl %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) #14 + %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 @@ -573,7 +542,7 @@ define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceabl %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) #14 + %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 @@ -582,12 +551,12 @@ define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceabl %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) #14 + %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) #14 + %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 @@ -705,12 +674,12 @@ define dso_local void @_ZN5Graph2APEv(ptr noundef nonnull align 8 dereferenceabl 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 @_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) #1 +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() #10 { +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -745,54 +714,42 @@ define dso_local noundef i32 @main() #10 { } ; 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 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -806,7 +763,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -822,66 +779,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 - -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 + %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) #2 +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) #8 comdat align 2 { +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 @@ -898,17 +874,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -917,7 +899,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -935,34 +917,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -974,127 +941,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #16 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #16 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} - -; 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1102,24 +1044,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1129,7 +1056,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1138,15 +1065,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +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 #6 comdat align 2 { +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 @@ -1158,30 +1085,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_cut_vertices.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #17 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1191,7 +1112,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/cutting-a-rod.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/cutting-a-rod.ll index 4fbde36f3..11f2076ae 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/cutting-a-rod.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/cutting-a-rod.ll @@ -162,7 +162,7 @@ attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-in-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-in-a-graph.ll index 43db8ceb5..d57b9455e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-in-a-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-in-a-graph.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/detect-cycle-in-a-graph.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -40,12 +41,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -60,58 +57,30 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [21 x i8] c"Graph contains cycle\00", align 1 @.str.1 = private unnamed_addr constant [28 x i8] c"Graph doesn't contain cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_detect_cycle_in_a_graph.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -132,7 +101,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -144,7 +113,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -156,25 +125,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -192,14 +161,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -210,7 +179,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -245,13 +214,13 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef %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) #3 + 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) #3 + %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) @@ -263,15 +232,15 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef %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) #3 + %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) #3 + %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) #3 + %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 @@ -280,7 +249,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef 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) #3 + %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 @@ -293,7 +262,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef 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) #3 + %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 @@ -312,7 +281,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef 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) #3 + %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 @@ -333,7 +302,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(ptr noundef } ; 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 { +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 @@ -343,7 +312,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -352,17 +321,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -378,21 +347,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -403,7 +372,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -417,7 +386,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -429,12 +398,12 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull al %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) #14 + %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) #14 + %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 @@ -506,7 +475,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull al } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #10 { +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 @@ -532,57 +501,45 @@ define dso_local noundef i32 @main() #10 { 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 @_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 #6 comdat align 2 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -596,7 +553,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -612,66 +569,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -688,17 +664,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -707,7 +689,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -725,34 +707,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -764,127 +731,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 + %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 -13: ; preds = %12, %1 +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 -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #16 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #16 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -892,24 +834,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -919,7 +846,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -928,15 +855,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +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 #6 comdat align 2 { +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 @@ -948,30 +875,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_detect_cycle_in_a_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #17 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -981,7 +902,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-undirected-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-undirected-graph.ll index 90a13042a..7fc191e86 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-undirected-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/detect-cycle-undirected-graph.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/detect-cycle-undirected-graph.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -40,12 +41,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -60,58 +57,30 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [22 x i8] c"Graph contains cycle\0A\00", align 1 @.str.1 = private unnamed_addr constant [29 x i8] c"Graph doesn't contain cycle\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_detect_cycle_undirected_graph.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -132,7 +101,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -144,7 +113,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -156,25 +125,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -198,14 +167,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -216,7 +185,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -235,13 +204,13 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no %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) #3 + 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) #3 + %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) @@ -253,15 +222,15 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no %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) #3 + %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) #3 + %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) #3 + %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 @@ -270,7 +239,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no 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) #3 + %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 @@ -285,7 +254,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no 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) #3 + %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 @@ -302,7 +271,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no 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) #3 + %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 @@ -315,7 +284,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(ptr noundef no } ; 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 { +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 @@ -325,7 +294,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -334,17 +303,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -360,21 +329,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -385,7 +354,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -399,7 +368,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -410,7 +379,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull al %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) #14 + %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 @@ -488,7 +457,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(ptr noundef nonnull al } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #10 { +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -531,57 +500,45 @@ define dso_local noundef i32 @main() #10 { 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 @_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 #6 comdat align 2 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -595,7 +552,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -611,66 +568,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -687,17 +663,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -706,7 +688,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -724,34 +706,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -763,127 +730,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 + %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 -13: ; preds = %12, %1 +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 -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #16 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #16 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -891,24 +833,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -918,7 +845,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -927,15 +854,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +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 #6 comdat align 2 { +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 @@ -947,30 +874,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_detect_cycle_undirected_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #17 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -980,7 +901,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/dfa-based-division.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/dfa-based-division.ll index 06f02105b..29dda9128 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/dfa-based-division.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/dfa-based-division.ll @@ -200,6 +200,6 @@ attributes #5 = { nounwind allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/dfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/dfs.ll index ca05c6047..eb728a872 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/dfs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/dfs.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/dfs.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -40,12 +41,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -60,58 +57,30 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [62 x i8] c"Following is Depth First Traversal (starting from vertex 2) \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_dfs.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -132,7 +101,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -144,7 +113,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -156,25 +125,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -192,14 +161,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -210,7 +179,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, ptr noundef %2) #7 align 2 { +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 @@ -229,13 +198,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + 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) #3 + %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) @@ -247,15 +216,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + %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) #3 + %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) #3 + %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 @@ -264,7 +233,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) @@ -274,19 +243,19 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) #1 +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) #1 +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 #6 comdat align 2 { +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 @@ -296,7 +265,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -305,17 +274,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -331,21 +300,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -356,7 +325,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -370,7 +339,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph3DFSEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #7 align 2 { +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 @@ -381,7 +350,7 @@ define dso_local void @_ZN5Graph3DFSEi(ptr noundef nonnull align 8 dereferenceab %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) #14 + %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 @@ -415,7 +384,7 @@ define dso_local void @_ZN5Graph3DFSEi(ptr noundef nonnull align 8 dereferenceab } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #10 { +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 @@ -432,54 +401,42 @@ define dso_local noundef i32 @main() #10 { } ; 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 { +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) #3 + 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -493,7 +450,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -509,66 +466,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -585,17 +561,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -604,7 +586,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -622,34 +604,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -661,127 +628,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 + %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 -13: ; preds = %12, %1 +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 -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #16 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #16 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -789,24 +731,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -816,7 +743,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -825,15 +752,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +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 #6 comdat align 2 { +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 @@ -845,30 +772,24 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_dfs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #17 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -878,7 +799,7 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/edit-distance.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/edit-distance.ll index 7d6c5583e..a10e40c5c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/edit-distance.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/edit-distance.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/edit-distance.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,63 +14,34 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZSt3minIiERKT_S2_S2_ = comdat any $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [7 x i8] c"sunday\00", align 1 @.str.1 = private unnamed_addr constant [9 x i8] c"saturday\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@.str.2 = private unnamed_addr constant [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_edit_distance.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 { +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 @@ -83,7 +55,7 @@ define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noun } ; 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 { +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 @@ -112,7 +84,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #4 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %7 = alloca ptr, align 8 @@ -182,8 +154,8 @@ define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_tra 50: ; preds = %44 store i32 %49, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 br label %114 51: ; preds = %43 @@ -202,11 +174,11 @@ define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_tra 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) %11) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #9 br label %59 59: ; preds = %55, %51 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #9 br label %116 60: ; preds = %29 @@ -259,12 +231,12 @@ define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_tra 83: ; preds = %81 %84 = add nsw i32 1, %82 store i32 %84, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #9 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #9 + 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 br label %114 85: ; preds = %60 @@ -319,27 +291,27 @@ define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_tra store ptr %107, ptr %12, align 8 %108 = extractvalue { ptr, i32 } %106, 1 store i32 %108, ptr %13, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #9 br label %109 109: ; preds = %105, %101 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #9 br label %110 110: ; preds = %109, %97 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #9 br label %111 111: ; preds = %110, %93 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #9 br label %112 112: ; preds = %111, %89 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #9 br label %113 113: ; preds = %112, %85 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #9 br label %116 114: ; preds = %83, %50, %27, %22 @@ -354,192 +326,213 @@ define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_tra resume { ptr, i32 } %120 } -declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +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 #1 +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 #2 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 -; 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.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %23 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - 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 %11 unwind label %27 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %31 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %35 - -13: ; preds = %12 - %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = trunc i64 %14 to i32 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - %17 = trunc i64 %16 to i32 - %18 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(ptr noundef %8, ptr noundef %9, i32 noundef %15, i32 noundef %17) - to label %19 unwind label %39 - -19: ; preds = %13 - %20 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %18) - to label %21 unwind label %39 - -21: ; preds = %19 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %22 = load i32, ptr %1, align 4 - ret i32 %22 - -23: ; preds = %0 - %24 = landingpad { ptr, i32 } + %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 - %25 = extractvalue { ptr, i32 } %24, 0 - store ptr %25, ptr %4, align 8 - %26 = extractvalue { ptr, i32 } %24, 1 - store i32 %26, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %46 - -27: ; preds = %10 - %28 = landingpad { ptr, i32 } + %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 - %29 = extractvalue { ptr, i32 } %28, 0 - store ptr %29, ptr %4, align 8 - %30 = extractvalue { ptr, i32 } %28, 1 - store i32 %30, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - br label %45 - -31: ; preds = %11 - %32 = landingpad { ptr, i32 } + %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 - %33 = extractvalue { ptr, i32 } %32, 0 - store ptr %33, ptr %4, align 8 - %34 = extractvalue { ptr, i32 } %32, 1 - store i32 %34, ptr %5, align 4 - br label %44 - -35: ; preds = %12 - %36 = landingpad { ptr, i32 } + %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 - %37 = extractvalue { ptr, i32 } %36, 0 - store ptr %37, ptr %4, align 8 - %38 = extractvalue { ptr, i32 } %36, 1 - store i32 %38, ptr %5, align 4 - br label %43 - -39: ; preds = %19, %13 - %40 = landingpad { ptr, i32 } + %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 - %41 = extractvalue { ptr, i32 } %40, 0 - store ptr %41, ptr %4, align 8 - %42 = extractvalue { ptr, i32 } %40, 1 - store i32 %42, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - br label %43 - -43: ; preds = %39, %35 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - br label %44 - -44: ; preds = %43, %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - br label %45 - -45: ; preds = %44, %27 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %46 - -46: ; preds = %45, %23 - %47 = load ptr, ptr %4, align 8 - %48 = load i32, ptr %5, align 4 - %49 = insertvalue { ptr, i32 } poison, ptr %47, 0 - %50 = insertvalue { ptr, i32 } %49, i32 %48, 1 - resume { ptr, i32 } %50 -} + %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 -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -547,342 +540,228 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -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 @_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)) #2 - -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 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) +; 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 noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +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: 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 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.2) #10 + %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 -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #10 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 - -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +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 = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #11 - unreachable - -56: ; preds = %40 - unreachable +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #5 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 } -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: 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 i64 @strlen(ptr noundef) #3 -declare ptr @__cxa_begin_catch(ptr) - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #2 -declare void @__cxa_rethrow() +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 @__cxa_end_catch() +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #11 - unreachable +; 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 } -declare void @_ZSt9terminatev() +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #3 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #5 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat { +; 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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !6 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +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: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_edit_distance.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZSt9terminatev() -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { nounwind } attributes #10 = { noreturn } attributes #11 = { noreturn nounwind } @@ -894,6 +773,4 @@ attributes #11 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} -!6 = distinct !{!6, !7} -!7 = !{!"llvm.loop.mustprogress"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/efficient-constructtion-of-finite-automata.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/efficient-constructtion-of-finite-automata.ll index 75a8a9665..607d7c051 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/efficient-constructtion-of-finite-automata.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/efficient-constructtion-of-finite-automata.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/efficient-constructtion-of-finite-automata.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [24 x i8] c"pattern found at index \00", align 1 @__const.main.txt = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 16 @__const.main.pat = private unnamed_addr constant [6 x i8] c"GEEKS\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z15computeTransFunPciPA256_i(ptr noundef %0, i32 noundef %1, ptr noundef %2) #4 { +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 @@ -170,7 +153,7 @@ define dso_local void @_Z15computeTransFunPciPA256_i(ptr noundef %0, i32 noundef } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { +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 @@ -182,11 +165,11 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { 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) #10 + %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) #10 + %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 @@ -253,24 +236,24 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #5 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #6 +declare i64 @strlen(ptr noundef) #2 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #7 +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) #1 +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) #1 +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) #1 +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)) #1 +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) #7 +declare void @llvm.stackrestore(ptr) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +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 @@ -284,25 +267,16 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -312,7 +286,7 @@ attributes #10 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/egg-dropping-puzzle.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/egg-dropping-puzzle.ll index d3e867845..ba08b7da5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/egg-dropping-puzzle.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/egg-dropping-puzzle.ll @@ -275,7 +275,7 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/euler-circuit-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/euler-circuit-directed-graph.ll index 573de784c..31a5efc55 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/euler-circuit-directed-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/euler-circuit-directed-graph.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/euler-circuit-directed-graph.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -46,12 +47,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any @@ -66,8 +63,6 @@ $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $__clang_call_terminate = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any @@ -76,15 +71,9 @@ $_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any $_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -96,19 +85,11 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any $_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any @@ -116,30 +97,12 @@ $_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [35 x i8] c"Given directed graph is eulerian n\00", align 1 @.str.1 = private unnamed_addr constant [39 x i8] c"Given directed graph is NOT eulerian n\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_euler_circuit_directed_graph.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -161,7 +124,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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) #15 + %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 @@ -173,7 +136,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 24: ; preds = %24, %22 %25 = phi ptr [ %20, %22 ], [ %26, %24 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %25) #3 + 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 @@ -187,7 +150,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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) #15 + %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 @@ -219,25 +182,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -269,7 +232,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(ptr noundef no %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) #3 + %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 @@ -303,7 +266,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(ptr noundef no } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -366,7 +329,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align %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) #3 + %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 @@ -401,7 +364,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align %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) #3 + %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 @@ -476,7 +439,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align %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) #3 + %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 @@ -502,7 +465,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align 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) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 br label %131 122: ; preds = %109, %101 @@ -520,7 +483,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align br label %127 127: ; preds = %126, %117 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %10) #15 br label %128 128: ; preds = %127, %75 @@ -538,7 +501,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(ptr noundef nonnull align } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -557,7 +520,7 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(pt } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1, ptr noundef %2) #7 align 2 { +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 @@ -573,13 +536,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + 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) #3 + %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) @@ -591,15 +554,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + %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) #3 + %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) #3 + %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 @@ -608,7 +571,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) @@ -618,7 +581,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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 @@ -626,7 +589,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer } ; 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 { +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 @@ -636,7 +599,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -645,17 +608,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -671,21 +634,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -696,7 +659,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -710,7 +673,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -738,13 +701,13 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) br i1 %19, label %20, label %62 20: ; preds = %15 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %7) #3 + 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) #3 + %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) @@ -756,16 +719,16 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) %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) #3 + %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) #3 + %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) #3 + %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 @@ -784,7 +747,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) 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) #3 + %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 @@ -794,7 +757,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) 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) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 br label %66 58: ; preds = %28 @@ -812,7 +775,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) br i1 %63, label %65, label %64 64: ; preds = %62 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) #15 br label %65 65: ; preds = %64, %62 @@ -827,14 +790,14 @@ define dso_local void @_ZN5Graph12getTransposeEv(ptr noalias sret(%class.Graph) } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -847,7 +810,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr 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 #6 comdat align 2 { +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 @@ -866,7 +829,7 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de 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) #3 + 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 @@ -889,13 +852,13 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #10 +declare ptr @llvm.stacksave() #7 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #10 +declare void @llvm.stackrestore(ptr) #7 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #11 personality ptr @__gxx_personality_v0 { +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 @@ -946,7 +909,7 @@ define dso_local noundef i32 @main() #11 personality ptr @__gxx_personality_v0 { 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) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 br label %25 20: ; preds = %12 @@ -958,7 +921,7 @@ define dso_local noundef i32 @main() #11 personality ptr @__gxx_personality_v0 { 23: ; preds = %22, %15 store i32 0, ptr %1, align 4 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %2) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(24) %2) #15 %24 = load i32, ptr %1, align 4 ret i32 %24 @@ -971,7 +934,7 @@ define dso_local noundef i32 @main() #11 personality ptr @__gxx_personality_v0 { } ; 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) #7 comdat align 2 { +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 @@ -996,57 +959,45 @@ define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull ali 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 @_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 #6 comdat align 2 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -1060,103 +1011,117 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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) #12 +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 #6 comdat align 2 { +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) #3 + 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) #3 + 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %6 = load ptr, ptr %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, 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_base", ptr %8, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - store ptr %10, ptr %3, align 8 - br label %11 + %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 -11: ; preds = %23, %1 - %12 = load ptr, ptr %3, align 8 - %13 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, i32 0, i32 0 - %14 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %13, i32 0, i32 0 - %15 = icmp ne ptr %12, %14 - br i1 %15, label %16, label %27 +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 -16: ; preds = %11 - %17 = load ptr, ptr %3, align 8 - store ptr %17, ptr %4, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %18, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - store ptr %20, ptr %3, align 8 - %21 = load ptr, ptr %4, align 8 - %22 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %21) - to label %23 unwind label %28 - -23: ; preds = %16 - store ptr %22, ptr %5, align 8 - %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %25 = load ptr, ptr %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %24, ptr noundef %25) #3 - %26 = load ptr, ptr %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef %26) #3 - br label %11, !llvm.loop !17 - -27: ; preds = %11 +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 -28: ; preds = %16 - %29 = landingpad { ptr, i32 } +36: ; preds = %20 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #16 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #8 comdat align 2 { +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) #3 + %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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1166,19 +1131,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #8 comdat align 2 { +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 @@ -1187,39 +1140,48 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::__cxx11::_List_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef 1) - to label %8 unwind label %9 + %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 -8: ; preds = %2 +14: ; preds = %2 ret void -9: ; preds = %2 - %10 = landingpad { ptr, i32 } +15: ; No predecessors! + %16 = landingpad { ptr, i32 } catch ptr null - %11 = extractvalue { ptr, i32 } %10, 0 - call void @__clang_call_terminate(ptr %11) #16 + %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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1228,33 +1190,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1263,24 +1199,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + 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 @_ZNSaISt10_List_nodeIiEED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #10 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1288,7 +1215,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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) #7 comdat align 2 { +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 @@ -1304,44 +1231,63 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(4) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #8 comdat align 2 { +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 @@ -1358,17 +1304,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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 #6 comdat align 2 { +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 @@ -1386,22 +1338,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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 @@ -1413,118 +1350,93 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 + %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 -13: ; preds = %12, %1 +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 -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #16 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #7 comdat align 2 { +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 @@ -1533,7 +1445,7 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_ } ; 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) #8 comdat align 2 { +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 @@ -1545,7 +1457,7 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_ } ; 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 { +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 @@ -1557,32 +1469,25 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_euler_circuit_directed_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { nocallback nofree nosync nounwind willreturn } -attributes #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 } -attributes #19 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1592,7 +1497,7 @@ attributes #19 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/eulerian-path-and-circuit.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/eulerian-path-and-circuit.ll index 1f5c732dc..fe4fabdf7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/eulerian-path-and-circuit.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/eulerian-path-and-circuit.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/eulerian-path-and-circuit.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -46,12 +47,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any @@ -66,8 +63,6 @@ $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $__clang_call_terminate = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any @@ -76,15 +71,9 @@ $_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any $_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -96,19 +85,11 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any @@ -116,31 +97,13 @@ $_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any $_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [23 x i8] c"graph is not Eulerian\0A\00", align 1 @.str.1 = private unnamed_addr constant [24 x i8] c"graph has a Euler path\0A\00", align 1 @.str.2 = private unnamed_addr constant [25 x i8] c"graph has a Euler cycle\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_eulerian_path_and_circuit.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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 { +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 @@ -164,14 +127,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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 { +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) #3 + %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 @@ -182,7 +145,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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 { +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 @@ -198,13 +161,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + 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) #3 + %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) @@ -216,15 +179,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + %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) #3 + %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) #3 + %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 @@ -233,7 +196,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) @@ -243,7 +206,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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 @@ -251,7 +214,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { +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 @@ -261,7 +224,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; 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 { +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 @@ -270,17 +233,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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 +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) #6 comdat { +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 @@ -296,21 +259,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; 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 { +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) #3 + 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 { +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 @@ -321,7 +284,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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 { +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 @@ -335,7 +298,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { +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 @@ -391,7 +354,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr noundef nonnul %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) #3 + %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 @@ -448,7 +411,7 @@ define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr noundef nonnul %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) #3 + %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 @@ -479,10 +442,10 @@ define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(ptr noundef nonnul } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #8 +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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -501,10 +464,10 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(pt } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #8 +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) #4 align 2 { +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 @@ -538,7 +501,7 @@ define dso_local noundef i32 @_ZN5Graph10isEulerianEv(ptr noundef nonnull align %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) #3 + %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 @@ -581,7 +544,7 @@ define dso_local noundef i32 @_ZN5Graph10isEulerianEv(ptr noundef nonnull align } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z4testR5Graph(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 { +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 @@ -616,10 +579,10 @@ define dso_local void @_Z4testR5Graph(ptr noundef nonnull align 8 dereferenceabl 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 @_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() #9 personality ptr @__gxx_personality_v0 { +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 @@ -747,11 +710,11 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { 37: ; preds = %36 store i32 0, ptr %1, align 4 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %8) #3 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %6) #3 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #3 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #3 + 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 @@ -798,23 +761,23 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { 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) #3 + 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) #3 + 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) #3 + 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) #3 + 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) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 br label %63 63: ; preds = %62 @@ -826,7 +789,7 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 comdat align 2 { +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 @@ -857,7 +820,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 de 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -871,7 +834,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 de 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 #5 comdat align 2 { +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 @@ -890,7 +853,7 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de 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) #3 + 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 @@ -903,72 +866,60 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 +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) #10 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #11 +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 #5 comdat align 2 { +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) #3 + 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 #5 comdat align 2 { +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) #3 - 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 #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 @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { +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) #6 comdat align 2 { +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 @@ -982,103 +933,117 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { +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) #3 + 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) #12 +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 #5 comdat align 2 { +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) #3 + 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) #3 + 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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %6 = load ptr, ptr %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, 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_base", ptr %8, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - store ptr %10, ptr %3, align 8 - br label %11 - -11: ; preds = %23, %1 - %12 = load ptr, ptr %3, align 8 - %13 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, i32 0, i32 0 - %14 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %13, i32 0, i32 0 - %15 = icmp ne ptr %12, %14 - br i1 %15, label %16, label %27 - -16: ; preds = %11 - %17 = load ptr, ptr %3, align 8 - store ptr %17, ptr %4, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %18, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - store ptr %20, ptr %3, align 8 - %21 = load ptr, ptr %4, align 8 - %22 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %21) - to label %23 unwind label %28 - -23: ; preds = %16 - store ptr %22, ptr %5, align 8 - %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %25 = load ptr, ptr %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %24, ptr noundef %25) #3 - %26 = load ptr, ptr %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef %26) #3 - br label %11, !llvm.loop !12 - -27: ; preds = %11 + %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 -28: ; preds = %16 - %29 = landingpad { ptr, i32 } +36: ; preds = %20 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #15 + %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 #5 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #6 comdat align 2 { +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) #3 + %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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1088,19 +1053,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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 { +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 @@ -1109,39 +1062,48 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::__cxx11::_List_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef 1) - to label %8 unwind label %9 + %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 -8: ; preds = %2 +14: ; preds = %2 ret void -9: ; preds = %2 - %10 = landingpad { ptr, i32 } +15: ; No predecessors! + %16 = landingpad { ptr, i32 } catch ptr null - %11 = extractvalue { ptr, i32 } %10, 0 - call void @__clang_call_terminate(ptr %11) #15 + %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) #6 comdat align 2 { +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) #3 + %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 { +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 @@ -1150,18 +1112,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %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 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { +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 @@ -1170,39 +1121,15 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE store i64 %2, ptr %6, align 8 %7 = load ptr, ptr %4, align 8 %8 = load ptr, ptr %5, align 8 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_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) #3 + 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 @_ZNSaISt10_List_nodeIiEED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #10 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { +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 @@ -1210,7 +1137,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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 { +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 @@ -1226,44 +1153,63 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(4) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #6 comdat align 2 { +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 @@ -1280,17 +1226,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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 #5 comdat align 2 { +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 @@ -1308,22 +1260,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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 { +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 @@ -1335,118 +1272,93 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 #5 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #11 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - %10 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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 #5 comdat align 2 { +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 @@ -1459,7 +1371,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L } ; 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 { +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 @@ -1468,7 +1380,7 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_ } ; 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) #6 comdat align 2 { +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 @@ -1479,32 +1391,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_ ret i64 %7 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_eulerian_path_and_circuit.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #11 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 } -attributes #19 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1514,7 +1419,7 @@ attributes #19 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-common-elements-three-sorted-arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-common-elements-three-sorted-arrays.ll index 01c4791e9..b5a50f771 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-common-elements-three-sorted-arrays.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-common-elements-three-sorted-arrays.ll @@ -3,40 +3,23 @@ source_filename = "PE-benchmarks/find-common-elements-three-sorted-arrays.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @__const.main.ar1 = private unnamed_addr constant [6 x i32] [i32 1, i32 5, i32 10, i32 20, i32 40, i32 80], align 16 @__const.main.ar2 = private unnamed_addr constant [5 x i32] [i32 6, i32 7, i32 20, i32 80, i32 100], align 16 @__const.main.ar3 = private unnamed_addr constant [8 x i32] [i32 3, i32 4, i32 15, i32 20, i32 30, i32 70, i32 80, i32 120], align 16 @.str.1 = private unnamed_addr constant [21 x i8] c"Common Elements are \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -190,7 +173,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIc 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() #5 { +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 @@ -217,21 +200,12 @@ define dso_local noundef i32 @main() #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) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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} @@ -241,6 +215,6 @@ attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-k-closest-elements-given-value.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-k-closest-elements-given-value.ll index 9818e2277..0adf94c5b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-k-closest-elements-given-value.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-k-closest-elements-given-value.ll @@ -327,7 +327,7 @@ attributes #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll index b7fbee522..a58947707 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/find-length-of-the-longest-consecutive-path-in- target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,32 +13,14 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt3maxIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @x = dso_local global [8 x i32] [i32 0, i32 1, i32 1, i32 -1, i32 1, i32 0, i32 -1, i32 -1], align 16 @y = dso_local global [8 x i32] [i32 1, i32 0, i32 1, i32 1, i32 -1, i32 -1, i32 0, i32 -1], align 16 @dp = dso_local global [3 x [3 x i32]] zeroinitializer, align 16 @__const.main.mat = private unnamed_addr constant [3 x [3 x i8]] [[3 x i8] c"acd", [3 x i8] c"hba", [3 x i8] c"igf"], align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z7isvalidii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -76,7 +59,7 @@ define dso_local noundef zeroext i1 @_Z7isvalidii(i32 noundef %0, i32 noundef %1 } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %0, i8 noundef signext %1) #4 { +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 @@ -91,7 +74,7 @@ define dso_local noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %0, i8 } ; 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) #5 { +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 @@ -212,7 +195,7 @@ define dso_local noundef i32 @_Z10getLenUtilPA3_ciic(ptr noundef %0, i32 noundef } ; 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) #4 comdat { +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 @@ -241,7 +224,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z6getLenPA3_cc(ptr noundef %0, i8 noundef signext %1) #5 { +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 @@ -350,10 +333,10 @@ define dso_local noundef i32 @_Z6getLenPA3_cc(ptr noundef %0, i8 noundef signext } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #6 +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() #7 { +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 @@ -378,29 +361,20 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 +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)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -410,7 +384,7 @@ attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-minimum-number-of-coins-that-make-a-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-minimum-number-of-coins-that-make-a-change.ll index 31e962915..5c1c367e5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-minimum-number-of-coins-that-make-a-change.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-minimum-number-of-coins-that-make-a-change.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/find-minimum-number-of-coins-that-make-a-change target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.coins = private unnamed_addr constant [4 x i32] [i32 9, i32 6, i32 5, i32 1], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [27 x i8] c"Minimum coins required is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z8minCoinsPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -174,13 +157,13 @@ define dso_local noundef i32 @_Z8minCoinsPiii(ptr noundef %0, i32 noundef %1, i3 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -199,26 +182,17 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -228,7 +202,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-parity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-parity.ll index 57d787bf1..29a2f68b6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-parity.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-parity.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/find-parity.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [14 x i8] c"Parity of no \00", align 1 @.str.1 = private unnamed_addr constant [4 x i8] c" = \00", align 1 @.str.2 = private unnamed_addr constant [4 x i8] c"odd\00", align 1 @.str.3 = private unnamed_addr constant [5 x i8] c"even\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_find_parity.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9getParityj(i32 noundef %0) #4 { +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 @@ -66,7 +49,7 @@ define dso_local noundef i32 @_Z9getParityj(i32 noundef %0) #4 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -85,24 +68,15 @@ define dso_local noundef i32 @main() #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) #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 @_ZNSolsEj(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEj(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #2 -declare i32 @getchar() #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_parity.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare i32 @getchar() #2 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -112,6 +86,6 @@ attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-two-non-repeating-element.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-two-non-repeating-element.ll index 2fef63538..c5d73c803 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/find-two-non-repeating-element.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/find-two-non-repeating-element.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/find-two-non-repeating-element.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [8 x i32] [i32 2, i32 3, i32 7, i32 9, i32 11, i32 2, i32 3, i32 11], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [32 x i8] c"The non-repeating elements are \00", align 1 @.str.1 = private unnamed_addr constant [6 x i8] c" and \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_find_two_non_repeating_element.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(ptr noundef %0, i32 noundef %1, ptr noundef %2, ptr noundef %3) #4 { +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 @@ -147,14 +130,14 @@ define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(ptr noundef %0, i32 nounde } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { +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) #8 + %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) #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 @@ -172,30 +155,21 @@ define dso_local noundef i32 @main() #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) #6 +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) #7 - -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 ptr @_Znam(i64 noundef) #3 -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 @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #4 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_two_non_repeating_element.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #7 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -205,7 +179,7 @@ attributes #8 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/finite-automata-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/finite-automata-algorithm.ll index 5a326ae05..a3657ab7f 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/finite-automata-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/finite-automata-algorithm.ll @@ -326,7 +326,7 @@ attributes #6 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/floyd-warshall.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/floyd-warshall.ll index 9842a842c..c84ccb7b8 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/floyd-warshall.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/floyd-warshall.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/floyd-warshall.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [83 x i8] c"The following matrix shows the shortest distances between every pair of vertices \0A\00", align 1 @.str.1 = private unnamed_addr constant [4 x i8] c"INF\00", align 1 @.str.2 = private unnamed_addr constant [3 x i8] c"\09 \00", align 1 @__const.main.graph = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 0, i32 5, i32 99999, i32 10], [4 x i32] [i32 99999, i32 0, i32 3, i32 99999], [4 x i32] [i32 99999, i32 99999, i32 0, i32 1], [4 x i32] [i32 99999, i32 99999, i32 99999, i32 0]], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_floyd_warshall.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13floydWarshallPA4_i(ptr noundef %0) #4 { +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 @@ -204,7 +187,7 @@ define dso_local void @_Z13floydWarshallPA4_i(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13printSolutionPA4_i(ptr noundef %0) #4 { +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 @@ -289,7 +272,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr nou 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() #5 { +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 @@ -300,21 +283,12 @@ define dso_local noundef i32 @main() #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) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_floyd_warshall.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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} @@ -324,7 +298,7 @@ attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/graph-coloring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/graph-coloring.ll index 379b6f79a..49232526e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/graph-coloring.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/graph-coloring.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/graph-coloring.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -44,12 +45,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any @@ -64,8 +61,6 @@ $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $__clang_call_terminate = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any @@ -74,15 +69,9 @@ $_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any $_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEED2Ev = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -94,48 +83,22 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [8 x i8] c"Vertex \00", align 1 @.str.1 = private unnamed_addr constant [13 x i8] c" ---> Color \00", align 1 @.str.2 = private unnamed_addr constant [22 x i8] c"Coloring of graph 1 \0A\00", align 1 @.str.3 = private unnamed_addr constant [23 x i8] c"\0AColoring of graph 2 \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_graph_coloring.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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 { +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 @@ -159,14 +122,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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 { +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) #3 + %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 @@ -177,7 +140,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { +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 @@ -267,13 +230,13 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d br i1 %57, label %58, label %155 58: ; preds = %53 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #3 + 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) #3 + %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) @@ -285,14 +248,14 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d %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) #3 + %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) #3 + %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) #3 + %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 @@ -301,7 +264,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d 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) #3 + %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 @@ -315,7 +278,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d 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) #3 + %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 @@ -362,7 +325,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d %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) #3 + %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) @@ -374,14 +337,14 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d %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) #3 + %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) #3 + %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) #3 + %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 @@ -390,7 +353,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d 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) #3 + %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 @@ -404,7 +367,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d 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) #3 + %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 @@ -453,10 +416,10 @@ define dso_local void @_ZN5Graph14greedyColoringEv(ptr noundef nonnull align 8 d } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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 #6 comdat align 2 { +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 @@ -466,7 +429,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; 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 { +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 @@ -475,17 +438,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #8 +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) #7 comdat { +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 @@ -501,21 +464,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; 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 { +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) #3 + 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) #7 comdat align 2 { +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 @@ -526,7 +489,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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 { +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 @@ -539,19 +502,19 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z 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) #1 +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) #1 +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) #1 +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)) #1 +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) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { +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 @@ -628,8 +591,8 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { 24: ; preds = %23 store i32 0, ptr %1, align 4 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %5) #3 - call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #3 + 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 @@ -649,11 +612,11 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { 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) #3 + 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) #3 + call void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #14 br label %35 35: ; preds = %34 @@ -665,7 +628,7 @@ define dso_local noundef i32 @main() #9 personality ptr @__gxx_personality_v0 { } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) unnamed_addr #0 comdat align 2 { +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 @@ -696,7 +659,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 de 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -710,7 +673,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 de 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 #6 comdat align 2 { +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 @@ -729,7 +692,7 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de 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) #3 + 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 @@ -742,72 +705,60 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 de } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 +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) #10 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #8 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #11 +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 #6 comdat align 2 { +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) #3 + 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 #6 comdat align 2 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #7 comdat align 2 { +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 @@ -821,103 +772,117 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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) #12 +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 #6 comdat align 2 { +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) #3 + 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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %6 = load ptr, ptr %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, 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_base", ptr %8, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - store ptr %10, ptr %3, align 8 - br label %11 - -11: ; preds = %23, %1 - %12 = load ptr, ptr %3, align 8 - %13 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, i32 0, i32 0 - %14 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %13, i32 0, i32 0 - %15 = icmp ne ptr %12, %14 - br i1 %15, label %16, label %27 - -16: ; preds = %11 - %17 = load ptr, ptr %3, align 8 - store ptr %17, ptr %4, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %18, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - store ptr %20, ptr %3, align 8 - %21 = load ptr, ptr %4, align 8 - %22 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %21) - to label %23 unwind label %28 - -23: ; preds = %16 - store ptr %22, ptr %5, align 8 - %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %25 = load ptr, ptr %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %24, ptr noundef %25) #3 - %26 = load ptr, ptr %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef %26) #3 - br label %11, !llvm.loop !14 - -27: ; preds = %11 + %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 -28: ; preds = %16 - %29 = landingpad { ptr, i32 } +36: ; preds = %20 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #17 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #7 comdat align 2 { +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) #3 + %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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -927,19 +892,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %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 = load ptr, ptr %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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 { +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 @@ -948,39 +901,48 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::__cxx11::_List_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef 1) - to label %8 unwind label %9 - -8: ; preds = %2 + %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 -9: ; preds = %2 - %10 = landingpad { ptr, i32 } +15: ; No predecessors! + %16 = landingpad { ptr, i32 } catch ptr null - %11 = extractvalue { ptr, i32 } %10, 0 - call void @__clang_call_terminate(ptr %11) #17 + %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) #7 comdat align 2 { +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) #3 + %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) #7 comdat align 2 { +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 @@ -989,18 +951,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #4 comdat align 2 { +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 @@ -1009,39 +960,15 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE store i64 %2, ptr %6, align 8 %7 = load ptr, ptr %4, align 8 %8 = load ptr, ptr %5, align 8 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #10 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1049,7 +976,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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 { +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 @@ -1065,44 +992,63 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(4) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #7 comdat align 2 { +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 @@ -1119,17 +1065,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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 #6 comdat align 2 { +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 @@ -1147,22 +1099,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #7 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #7 comdat align 2 { +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 @@ -1174,118 +1111,93 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 + %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 -13: ; preds = %12, %1 +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 -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #17 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #11 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #7 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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 #6 comdat align 2 { +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 @@ -1297,32 +1209,25 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_graph_coloring.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync 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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #11 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 } -attributes #19 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1332,7 +1237,7 @@ attributes #19 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/hamiltonian-cycle-backtracking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/hamiltonian-cycle-backtracking.ll index f2a005031..b76aa1499 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/hamiltonian-cycle-backtracking.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/hamiltonian-cycle-backtracking.ll @@ -3,40 +3,23 @@ source_filename = "PE-benchmarks/hamiltonian-cycle-backtracking.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [25 x i8] c"\0ASolution does not exist\00", align 1 @.str.1 = private unnamed_addr constant [54 x i8] c"Solution Exists: Following is one Hamiltonian Cycle \0A\00", align 1 @.str.2 = private unnamed_addr constant [2 x i8] c" \00", align 1 @__const.main.graph1 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\01", [5 x i8] c"\00\01\01\01\00"], align 16 @__const.main.graph2 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\00", [5 x i8] c"\00\01\01\00\00"], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -112,7 +95,7 @@ define dso_local noundef zeroext i1 @_Z6isSafeiPA5_bPii(i32 noundef %0, ptr noun } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii(ptr noundef %0, ptr noundef %1, i32 noundef %2) #5 { +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 @@ -218,13 +201,13 @@ define dso_local noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii(ptr noundef %0, pt } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z8hamCyclePA5_b(ptr noundef %0) #5 { +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) #9 + %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 @@ -276,12 +259,12 @@ define dso_local noundef zeroext i1 @_Z8hamCyclePA5_b(ptr noundef %0) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #6 +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) #1 +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) #5 { +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 @@ -320,14 +303,14 @@ define dso_local void @_Z13printSolutionPi(ptr noundef %0) #5 { ret void } -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 @_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) #1 +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)) #1 +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() #7 { +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 @@ -342,24 +325,15 @@ define dso_local noundef i32 @main() #7 { } ; 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: noinline uwtable -define internal void @_GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -369,7 +343,7 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/insertion-sort-for-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/insertion-sort-for-singly-linked-list.ll index fdfd1c70d..ab3d14862 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/insertion-sort-for-singly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/insertion-sort-for-singly-linked-list.ll @@ -226,7 +226,7 @@ attributes #5 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/karatsuba.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/karatsuba.ll index 5994317c6..90723045d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/karatsuba.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/karatsuba.ll @@ -3,49 +3,35 @@ source_filename = "PE-benchmarks/karatsuba.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_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 -$_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_ = comdat any - -$_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = 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_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [5 x i8] c"%ld\0A\00", align 1 @.str.1 = private unnamed_addr constant [5 x i8] c"1100\00", align 1 @.str.2 = private unnamed_addr constant [5 x i8] c"1010\00", align 1 @@ -54,26 +40,10 @@ $_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any @.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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_karatsuba.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 { +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 @@ -86,11 +56,11 @@ define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt1 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) #3 + %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) #3 + %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 @@ -114,8 +84,8 @@ define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt1 %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) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 + %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 @@ -151,8 +121,8 @@ define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt1 %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) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 + %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 @@ -178,98 +148,64 @@ define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt1 } ; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -; Function Attrs: mustprogress 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) #4 comdat personality ptr @__gxx_personality_v0 { +; 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 i8, align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i1, align 1 - %8 = alloca %"class.std::allocator", align 1 + %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 - %12 = alloca i64, align 8 - store ptr %0, ptr %4, align 8 - store i8 %1, ptr %5, align 1 - store ptr %2, ptr %6, align 8 - store i1 false, ptr %7, align 1 - %13 = load ptr, ptr %6, align 8 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(ptr sret(%"class.std::allocator") align 1 %9, ptr noundef nonnull align 8 dereferenceable(32) %13) #3 - invoke void @_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_(ptr sret(%"class.std::allocator") align 1 %8, ptr noundef nonnull align 1 dereferenceable(1) %9) - to label %14 unwind label %27 - -14: ; preds = %3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - %15 = load ptr, ptr %6, align 8 - %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 - store i64 %16, ptr %12, align 8 - %17 = load i64, ptr %12, align 8 - %18 = add i64 %17, 1 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %18) - to label %19 unwind label %31 - -19: ; preds = %14 - %20 = load i8, ptr %5, align 1 - %21 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 1, i8 noundef signext %20) - to label %22 unwind label %31 - -22: ; preds = %19 - %23 = load ptr, ptr %6, align 8 - %24 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %23) - to label %25 unwind label %31 - -25: ; preds = %22 - store i1 true, ptr %7, align 1 - %26 = load i1, ptr %7, align 1 - br i1 %26, label %36, label %35 - -27: ; preds = %3 - %28 = landingpad { ptr, i32 } - cleanup - %29 = extractvalue { ptr, i32 } %28, 0 - store ptr %29, ptr %10, align 8 - %30 = extractvalue { ptr, i32 } %28, 1 - store i32 %30, ptr %11, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - br label %37 - -31: ; preds = %22, %19, %14 - %32 = landingpad { ptr, i32 } - cleanup - %33 = extractvalue { ptr, i32 } %32, 0 - store ptr %33, ptr %10, align 8 - %34 = extractvalue { ptr, i32 } %32, 1 - store i32 %34, ptr %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 - br label %37 - -35: ; preds = %25 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 - br label %36 - -36: ; preds = %35, %25 + 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 -37: ; preds = %31, %27 - %38 = load ptr, ptr %10, align 8 - %39 = load i32, ptr %11, align 4 - %40 = insertvalue { ptr, i32 } poison, ptr %38, 0 - %41 = insertvalue { ptr, i32 } %40, i32 %39, 1 - resume { ptr, i32 } %41 +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)) #2 +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 #2 +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) #4 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %6 = alloca ptr, align 8 @@ -288,7 +224,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai store ptr %1, ptr %5, align 8 store ptr %2, ptr %6, align 8 store i1 false, ptr %7, align 1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 %18 = 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 %19 unwind label %64 @@ -339,8 +275,8 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai to label %48 unwind label %64 48: ; preds = %36 - %49 = 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) %16) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #3 + %49 = 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) %16) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #10 %50 = load i32, ptr %13, align 4 %51 = load i32, ptr %14, align 4 %52 = and i32 %50, %51 @@ -368,7 +304,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai store ptr %66, ptr %9, align 8 %67 = extractvalue { ptr, i32 } %65, 1 store i32 %67, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 br label %78 68: ; preds = %22 @@ -381,8 +317,8 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai to label %72 unwind label %64 72: ; preds = %71 - %73 = 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) %17) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #3 + %73 = 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) %17) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #10 br label %74 74: ; preds = %72, %68 @@ -391,7 +327,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai br i1 %75, label %77, label %76 76: ; preds = %74 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 br label %77 77: ; preds = %76, %74 @@ -406,14 +342,14 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai } ; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 +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) #1 +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) #4 { +define dso_local noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 { %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 store ptr %0, ptr %3, align 8 @@ -430,10 +366,10 @@ define dso_local noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcS ret i32 %13 } -declare noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +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) #4 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %5 = alloca ptr, align 8 @@ -490,8 +426,8 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra 40: ; preds = %38 %41 = sext i32 %39 to i64 store i64 %41, ptr %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #10 br label %173 42: ; preds = %37 @@ -510,11 +446,11 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra store ptr %48, ptr %9, align 8 %49 = extractvalue { ptr, i32 } %47, 1 store i32 %49, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #10 br label %50 50: ; preds = %46, %42 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #10 br label %175 51: ; preds = %34 @@ -562,8 +498,8 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra to label %75 unwind label %126 75: ; preds = %73 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #10 store i64 %74, ptr %17, align 8 invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %21, ptr noundef nonnull align 8 dereferenceable(32) %14) to label %76 unwind label %118 @@ -577,8 +513,8 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra to label %79 unwind label %135 79: ; preds = %77 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %21) #3 + 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) %21) #10 store i64 %78, ptr %20, align 8 invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %25, ptr noundef nonnull align 8 dereferenceable(32) %13) to label %80 unwind label %118 @@ -608,12 +544,12 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra to label %87 unwind label %160 87: ; preds = %85 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %29) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %24) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #3 + 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) %29) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #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) %26) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #10 store i64 %86, ptr %23, align 8 %88 = load i64, ptr %17, align 8 %89 = load i32, ptr %12, align 4 @@ -634,10 +570,10 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra %104 = load i64, ptr %20, align 8 %105 = add nsw i64 %103, %104 store i64 %105, ptr %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #10 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #10 + 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 br label %173 106: ; preds = %51 @@ -692,11 +628,11 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra store ptr %128, ptr %9, align 8 %129 = extractvalue { ptr, i32 } %127, 1 store i32 %129, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #10 br label %130 130: ; preds = %126, %122 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %18) #10 br label %169 131: ; preds = %76 @@ -715,11 +651,11 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra store ptr %137, ptr %9, align 8 %138 = extractvalue { ptr, i32 } %136, 1 store i32 %138, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %22) #10 br label %139 139: ; preds = %135, %131 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %21) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %21) #10 br label %169 140: ; preds = %80 @@ -774,43 +710,43 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra store ptr %162, ptr %9, align 8 %163 = extractvalue { ptr, i32 } %161, 1 store i32 %163, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #10 br label %164 164: ; preds = %160, %156 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %29) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %29) #10 br label %165 165: ; preds = %164, %152 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %28) #10 br label %166 166: ; preds = %165, %148 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %24) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %24) #10 br label %167 167: ; preds = %166, %144 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %26) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %26) #10 br label %168 168: ; preds = %167, %140 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #10 br label %169 169: ; preds = %168, %139, %130, %118 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %16) #10 br label %170 170: ; preds = %169, %114 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #10 br label %171 171: ; preds = %170, %110 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #10 br label %172 172: ; preds = %171, %106 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #10 br label %175 173: ; preds = %87, %40, %33 @@ -825,524 +761,677 @@ define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_tra resume { ptr, i32 } %179 } -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 +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) #1 +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: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 personality ptr @__gxx_personality_v0 { - %1 = alloca %"class.std::__cxx11::basic_string", align 8 - %2 = alloca %"class.std::allocator", align 1 +; 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 i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca %"class.std::allocator", align 1 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca %"class.std::allocator", align 1 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::allocator", align 1 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::allocator", align 1 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = alloca %"class.std::allocator", align 1 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - %18 = alloca %"class.std::allocator", align 1 - %19 = alloca %"class.std::__cxx11::basic_string", align 8 - %20 = alloca %"class.std::allocator", align 1 - %21 = alloca %"class.std::__cxx11::basic_string", align 8 - %22 = alloca %"class.std::allocator", align 1 - %23 = alloca %"class.std::__cxx11::basic_string", align 8 - %24 = alloca %"class.std::allocator", align 1 - %25 = alloca %"class.std::__cxx11::basic_string", align 8 - %26 = alloca %"class.std::allocator", align 1 - %27 = alloca %"class.std::__cxx11::basic_string", align 8 - %28 = alloca %"class.std::allocator", align 1 - %29 = alloca %"class.std::__cxx11::basic_string", align 8 - %30 = alloca %"class.std::allocator", align 1 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %2) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %1, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %2) - to label %31 unwind label %73 - -31: ; preds = %0 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %5, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %6) - to label %32 unwind label %77 - -32: ; preds = %31 - %33 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %1, ptr noundef %5) - to label %34 unwind label %81 - -34: ; preds = %32 - %35 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %33) - to label %36 unwind label %81 - -36: ; preds = %34 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %2) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %8) - to label %37 unwind label %87 - -37: ; preds = %36 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %10) - to label %38 unwind label %91 - -38: ; preds = %37 - %39 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %7, ptr noundef %9) - to label %40 unwind label %95 - -40: ; preds = %38 - %41 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %39) - to label %42 unwind label %95 - -42: ; preds = %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %12) - to label %43 unwind label %101 - -43: ; preds = %42 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %14) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %13, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %14) - to label %44 unwind label %105 - -44: ; preds = %43 - %45 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %11, ptr noundef %13) - to label %46 unwind label %109 - -46: ; preds = %44 - %47 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %45) - to label %48 unwind label %109 - -48: ; preds = %46 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %16) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %15, ptr noundef @.str.5, ptr noundef nonnull align 1 dereferenceable(1) %16) - to label %49 unwind label %115 - -49: ; preds = %48 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %17, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %18) - to label %50 unwind label %119 - -50: ; preds = %49 - %51 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %15, ptr noundef %17) - to label %52 unwind label %123 - -52: ; preds = %50 - %53 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %51) - to label %54 unwind label %123 - -54: ; preds = %52 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %16) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %20) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %19, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %20) - to label %55 unwind label %129 - -55: ; preds = %54 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %22) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %21, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %22) - to label %56 unwind label %133 - -56: ; preds = %55 - %57 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %19, ptr noundef %21) - to label %58 unwind label %137 - -58: ; preds = %56 - %59 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %57) - to label %60 unwind label %137 - -60: ; preds = %58 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %21) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %20) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %23, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %24) - to label %61 unwind label %143 - -61: ; preds = %60 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %26) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %25, ptr noundef @.str.7, ptr noundef nonnull align 1 dereferenceable(1) %26) - to label %62 unwind label %147 - -62: ; preds = %61 - %63 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %23, ptr noundef %25) - to label %64 unwind label %151 - -64: ; preds = %62 - %65 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %63) - to label %66 unwind label %151 - -66: ; preds = %64 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %23) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %28) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %27, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %28) - to label %67 unwind label %157 - -67: ; preds = %66 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %30) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %29, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %30) - to label %68 unwind label %161 - -68: ; preds = %67 - %69 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %27, ptr noundef %29) - to label %70 unwind label %165 - -70: ; preds = %68 - %71 = invoke i32 (ptr, ...) @printf(ptr noundef @.str, i64 noundef %69) - to label %72 unwind label %165 - -72: ; preds = %70 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %29) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %30) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %28) #3 + %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 -73: ; preds = %0 - %74 = landingpad { ptr, i32 } +171: ; preds = %0 + %172 = landingpad { ptr, i32 } cleanup - %75 = extractvalue { ptr, i32 } %74, 0 - store ptr %75, ptr %3, align 8 - %76 = extractvalue { ptr, i32 } %74, 1 - store i32 %76, ptr %4, align 4 - br label %86 - -77: ; preds = %31 - %78 = landingpad { ptr, i32 } + %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 - %79 = extractvalue { ptr, i32 } %78, 0 - store ptr %79, ptr %3, align 8 - %80 = extractvalue { ptr, i32 } %78, 1 - store i32 %80, ptr %4, align 4 - br label %85 - -81: ; preds = %34, %32 - %82 = landingpad { ptr, i32 } + %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 - %83 = extractvalue { ptr, i32 } %82, 0 - store ptr %83, ptr %3, align 8 - %84 = extractvalue { ptr, i32 } %82, 1 - store i32 %84, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #3 - br label %85 - -85: ; preds = %81, %77 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 - br label %86 - -86: ; preds = %85, %73 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %2) #3 - br label %171 - -87: ; preds = %36 - %88 = landingpad { ptr, i32 } + %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 - %89 = extractvalue { ptr, i32 } %88, 0 - store ptr %89, ptr %3, align 8 - %90 = extractvalue { ptr, i32 } %88, 1 - store i32 %90, ptr %4, align 4 - br label %100 - -91: ; preds = %37 - %92 = landingpad { ptr, i32 } + %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 - %93 = extractvalue { ptr, i32 } %92, 0 - store ptr %93, ptr %3, align 8 - %94 = extractvalue { ptr, i32 } %92, 1 - store i32 %94, ptr %4, align 4 - br label %99 - -95: ; preds = %40, %38 - %96 = landingpad { ptr, i32 } + %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 - %97 = extractvalue { ptr, i32 } %96, 0 - store ptr %97, ptr %3, align 8 - %98 = extractvalue { ptr, i32 } %96, 1 - store i32 %98, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - br label %99 - -99: ; preds = %95, %91 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %10) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - br label %100 - -100: ; preds = %99, %87 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %8) #3 - br label %171 - -101: ; preds = %42 - %102 = landingpad { ptr, i32 } + %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 - %103 = extractvalue { ptr, i32 } %102, 0 - store ptr %103, ptr %3, align 8 - %104 = extractvalue { ptr, i32 } %102, 1 - store i32 %104, ptr %4, align 4 - br label %114 - -105: ; preds = %43 - %106 = landingpad { ptr, i32 } + %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 - %107 = extractvalue { ptr, i32 } %106, 0 - store ptr %107, ptr %3, align 8 - %108 = extractvalue { ptr, i32 } %106, 1 - store i32 %108, ptr %4, align 4 - br label %113 - -109: ; preds = %46, %44 - %110 = landingpad { ptr, i32 } + %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 - %111 = extractvalue { ptr, i32 } %110, 0 - store ptr %111, ptr %3, align 8 - %112 = extractvalue { ptr, i32 } %110, 1 - store i32 %112, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %13) #3 - br label %113 - -113: ; preds = %109, %105 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %11) #3 - br label %114 - -114: ; preds = %113, %101 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %12) #3 - br label %171 - -115: ; preds = %48 - %116 = landingpad { ptr, i32 } + %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 - %117 = extractvalue { ptr, i32 } %116, 0 - store ptr %117, ptr %3, align 8 - %118 = extractvalue { ptr, i32 } %116, 1 - store i32 %118, ptr %4, align 4 - br label %128 - -119: ; preds = %49 - %120 = landingpad { ptr, i32 } + %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 - %121 = extractvalue { ptr, i32 } %120, 0 - store ptr %121, ptr %3, align 8 - %122 = extractvalue { ptr, i32 } %120, 1 - store i32 %122, ptr %4, align 4 - br label %127 - -123: ; preds = %52, %50 - %124 = landingpad { ptr, i32 } + %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 - %125 = extractvalue { ptr, i32 } %124, 0 - store ptr %125, ptr %3, align 8 - %126 = extractvalue { ptr, i32 } %124, 1 - store i32 %126, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %17) #3 - br label %127 - -127: ; preds = %123, %119 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %18) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %15) #3 - br label %128 - -128: ; preds = %127, %115 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %16) #3 - br label %171 - -129: ; preds = %54 - %130 = landingpad { ptr, i32 } + %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 - %131 = extractvalue { ptr, i32 } %130, 0 - store ptr %131, ptr %3, align 8 - %132 = extractvalue { ptr, i32 } %130, 1 - store i32 %132, ptr %4, align 4 - br label %142 - -133: ; preds = %55 - %134 = landingpad { ptr, i32 } + %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 - %135 = extractvalue { ptr, i32 } %134, 0 - store ptr %135, ptr %3, align 8 - %136 = extractvalue { ptr, i32 } %134, 1 - store i32 %136, ptr %4, align 4 - br label %141 - -137: ; preds = %58, %56 - %138 = landingpad { ptr, i32 } + %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 - %139 = extractvalue { ptr, i32 } %138, 0 - store ptr %139, ptr %3, align 8 - %140 = extractvalue { ptr, i32 } %138, 1 - store i32 %140, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %21) #3 - br label %141 - -141: ; preds = %137, %133 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %19) #3 - br label %142 - -142: ; preds = %141, %129 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %20) #3 - br label %171 - -143: ; preds = %60 - %144 = landingpad { ptr, i32 } + %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 - %145 = extractvalue { ptr, i32 } %144, 0 - store ptr %145, ptr %3, align 8 - %146 = extractvalue { ptr, i32 } %144, 1 - store i32 %146, ptr %4, align 4 - br label %156 - -147: ; preds = %61 - %148 = landingpad { ptr, i32 } + %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 - %149 = extractvalue { ptr, i32 } %148, 0 - store ptr %149, ptr %3, align 8 - %150 = extractvalue { ptr, i32 } %148, 1 - store i32 %150, ptr %4, align 4 - br label %155 - -151: ; preds = %64, %62 - %152 = landingpad { ptr, i32 } + %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 - %153 = extractvalue { ptr, i32 } %152, 0 - store ptr %153, ptr %3, align 8 - %154 = extractvalue { ptr, i32 } %152, 1 - store i32 %154, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %25) #3 - br label %155 - -155: ; preds = %151, %147 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %23) #3 - br label %156 - -156: ; preds = %155, %143 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %24) #3 - br label %171 - -157: ; preds = %66 - %158 = landingpad { ptr, i32 } + %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 - %159 = extractvalue { ptr, i32 } %158, 0 - store ptr %159, ptr %3, align 8 - %160 = extractvalue { ptr, i32 } %158, 1 - store i32 %160, ptr %4, align 4 - br label %170 - -161: ; preds = %67 - %162 = landingpad { ptr, i32 } + %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 - %163 = extractvalue { ptr, i32 } %162, 0 - store ptr %163, ptr %3, align 8 - %164 = extractvalue { ptr, i32 } %162, 1 - store i32 %164, ptr %4, align 4 - br label %169 - -165: ; preds = %70, %68 - %166 = landingpad { ptr, i32 } + %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 - %167 = extractvalue { ptr, i32 } %166, 0 - store ptr %167, ptr %3, align 8 - %168 = extractvalue { ptr, i32 } %166, 1 - store i32 %168, ptr %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %29) #3 - br label %169 - -169: ; preds = %165, %161 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %30) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %27) #3 - br label %170 - -170: ; preds = %169, %157 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %28) #3 - br label %171 - -171: ; preds = %170, %156, %142, %128, %114, %100, %86 - %172 = load ptr, ptr %3, align 8 - %173 = load i32, ptr %4, align 4 - %174 = insertvalue { ptr, i32 } poison, ptr %172, 0 - %175 = insertvalue { ptr, i32 } %174, i32 %173, 1 - resume { ptr, i32 } %175 + %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, ...) #1 - -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 + %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 -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 +17: ; preds = %3 + invoke void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #11 + to label %18 unwind label %19 -27: ; preds = %25 - ret void +18: ; preds = %17 + unreachable -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -1350,376 +1439,338 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_(ptr noalias sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_(ptr sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %5) +; 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: 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: 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 -; 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 +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 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +44: ; preds = %40 + store i1 true, ptr %22, align 1 + %45 = load i1, ptr %22, align 1 + br i1 %45, label %51, label %50 -declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef, i8 noundef signext) #1 +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 -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)) #1 +50: ; preds = %44 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #10 + br label %51 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_(ptr noalias sret(%"class.std::allocator") align 1 %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZNSaIcEC1ERKS_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %5) #3 +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 void @_ZNSaIcEC1ERKS_(ptr noundef nonnull align 1 dereferenceable(1), ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(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 -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: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) - ret void -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef, i64 noundef) #3 -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 -; 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 { +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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void + %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_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.8) #10 + %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 -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #10 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 - -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) - ret void +39: ; preds = %33 + br label %40 -48: ; preds = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 +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 -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #11 - unreachable +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 -56: ; preds = %40 - unreachable -} +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #6 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 +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: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { +; 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 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 } -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: 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 ptr @__cxa_begin_catch(ptr) +declare i64 @strlen(ptr noundef) #1 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #3 -declare void @__cxa_rethrow() +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 @__cxa_end_catch() +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #11 - unreachable +; 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 } -declare void @_ZSt9terminatev() +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #1 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #6 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #3 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #6 comdat { +; 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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !10 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +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: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_karatsuba.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZSt9terminatev() -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { noreturn } -attributes #11 = { noreturn nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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} @@ -1729,9 +1780,14 @@ attributes #11 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} !9 = distinct !{!9, !7} -!10 = distinct !{!10, !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-llvm17/kmp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/kmp-algorithm.ll index 49781a8f3..39b99e81c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/kmp-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/kmp-algorithm.ll @@ -3,32 +3,14 @@ source_filename = "PE-benchmarks/kmp-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +module asm ".globl _ZSt21ios_base_library_initv" -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [27 x i8] c"Found pattern at index %d \00", align 1 @__const.main.txt = private unnamed_addr constant [20 x i8] c"ABABDABACDABABCABAB\00", align 16 @__const.main.pat = private unnamed_addr constant [10 x i8] c"ABABCABAB\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_kmp_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9KMPSearchPcS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -40,11 +22,11 @@ define dso_local void @_Z9KMPSearchPcS_(ptr noundef %0, ptr noundef %1) #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) #10 + %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) #10 + %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 @@ -168,13 +150,13 @@ define dso_local void @_Z9KMPSearchPcS_(ptr noundef %0, ptr noundef %1) #4 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #5 +declare i64 @strlen(ptr noundef) #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #6 +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) #7 { +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 @@ -263,13 +245,13 @@ define dso_local void @_Z15computeLPSArrayPciPi(ptr noundef %0, i32 noundef %1, ret void } -declare i32 @printf(ptr noundef, ...) #1 +declare i32 @printf(ptr noundef, ...) #4 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #6 +declare void @llvm.stackrestore(ptr) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +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 @@ -283,25 +265,16 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kmp_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nosync nounwind willreturn } -attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -311,7 +284,7 @@ attributes #10 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll index 30309ee9e..ac3b76f71 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set- target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [7 x i32] [i32 12, i32 3, i32 5, i32 7, i32 4, i32 19, i32 26], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #4 { +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 @@ -124,7 +107,7 @@ define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z15randomPartitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #5 { +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 @@ -138,7 +121,7 @@ define dso_local noundef i32 @_Z15randomPartitionPiii(ptr noundef %0, i32 nounde %11 = sub nsw i32 %9, %10 %12 = add nsw i32 %11, 1 store i32 %12, ptr %7, align 4 - %13 = call i32 @rand() #3 + %13 = call i32 @rand() #6 %14 = load i32, ptr %7, align 4 %15 = srem i32 %13, %14 store i32 %15, ptr %8, align 4 @@ -161,7 +144,7 @@ define dso_local noundef i32 @_Z15randomPartitionPiii(ptr noundef %0, i32 nounde } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #5 { +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 @@ -181,7 +164,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #5 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #5 { +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 @@ -262,7 +245,7 @@ define dso_local noundef i32 @_Z9partitionPiii(ptr noundef %0, i32 noundef %1, i declare i32 @rand() #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -282,26 +265,19 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -311,6 +287,6 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll index f19969bfd..6bed7207c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set- target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -21,7 +22,7 @@ $_ZN9__gnu_cxx5__ops16__iter_less_iterEv = comdat any $_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_ = comdat any -$_ZSt4__lgl = comdat any +$_ZSt4__lgIlET_S0_ = comdat any $_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any @@ -55,6 +56,10 @@ $_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 @@ -77,34 +82,18 @@ $_ZSt12__niter_baseIPiET_S1_ = comdat any $_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_ = comdat any +$_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 -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [7 x i32] [i32 12, i32 3, i32 5, i32 7, i32 4, i32 19, i32 26], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z10findMedianPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -125,7 +114,7 @@ define dso_local noundef i32 @_Z10findMedianPii(ptr noundef %0, i32 noundef %1) } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(ptr noundef %0, ptr noundef %1) #4 comdat { +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 @@ -140,7 +129,7 @@ define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(ptr noundef %0, ptr noun } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #4 { +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 @@ -343,10 +332,10 @@ define dso_local noundef i32 @_Z11kthSmallestPiiii(ptr noundef %0, i32 noundef % } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 { +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 @@ -461,10 +450,10 @@ define dso_local noundef i32 @_Z9partitionPiiii(ptr noundef %0, i32 noundef %1, } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #6 { +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 @@ -484,7 +473,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #6 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -504,14 +493,14 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 +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) #4 comdat { +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 @@ -533,7 +522,7 @@ define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_ %17 = ptrtoint ptr %15 to i64 %18 = sub i64 %16, %17 %19 = sdiv exact i64 %18, 4 - %20 = call noundef i64 @_ZSt4__lgl(i64 noundef %19) + %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 @@ -546,12 +535,12 @@ define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_ } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() #6 comdat { +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) #4 comdat { +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 @@ -608,19 +597,18 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops1 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt4__lgl(i64 noundef %0) #6 comdat { +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 i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 + %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) #4 comdat { +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 @@ -660,7 +648,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5_ } ; 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) #4 comdat { +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 @@ -680,7 +668,7 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_I } ; 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) #4 comdat { +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 @@ -715,7 +703,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIPiN } ; 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) #4 comdat { +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 @@ -764,7 +752,7 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_It } ; 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) #4 comdat { +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 @@ -799,7 +787,7 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter } ; 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) #4 comdat { +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 @@ -866,7 +854,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter } ; 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) #6 comdat align 2 { +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 @@ -883,7 +871,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_le } ; 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) #4 comdat { +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 @@ -915,7 +903,7 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_ } ; 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) #4 comdat { +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 @@ -1021,7 +1009,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ } ; 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 #9 comdat align 2 { +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 @@ -1030,7 +1018,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15 } ; 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) #4 comdat { +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 @@ -1093,7 +1081,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_It } ; 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) #6 comdat align 2 { +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 @@ -1110,7 +1098,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_le } ; 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) #4 comdat { +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 @@ -1202,7 +1190,7 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5_ } ; 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) #6 comdat { +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 @@ -1266,19 +1254,19 @@ define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIPiN9__gnu } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(ptr noundef %0, ptr noundef %1) #6 comdat { +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) #3 + 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) #6 comdat { +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 @@ -1297,11 +1285,59 @@ define linkonce_odr dso_local void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__no 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) #10 +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) #4 comdat { +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 @@ -1372,7 +1408,7 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15 } ; 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) #4 comdat { +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 @@ -1409,7 +1445,7 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_c } ; 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) #4 comdat { +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 @@ -1426,7 +1462,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ } ; 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) #4 comdat { +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 @@ -1467,13 +1503,13 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cx } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() #6 comdat { +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) #4 comdat { +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 @@ -1481,18 +1517,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EPiS0 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) #3 + %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) #3 + %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) #3 + %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) #6 comdat { +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 @@ -1500,7 +1536,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPiET_S1_(ptr nound } ; 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) #6 comdat { +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 @@ -1510,7 +1546,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPiET_RKS1_S1_(ptr } ; 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) #4 comdat { +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 @@ -1525,7 +1561,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EPiS } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr noundef %0) #6 comdat { +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 @@ -1533,7 +1569,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPiET_S1_(ptr nound } ; 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) #4 comdat { +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 @@ -1543,12 +1579,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EPiS %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_bIiEEPT_PKS3_S6_S4_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { +; 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 @@ -1564,7 +1600,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %13 = sdiv exact i64 %12, 4 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -1576,21 +1612,49 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds i32, ptr %25, i64 %27 - ret ptr %28 +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) #8 +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 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) #6 comdat align 2 { +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 @@ -1606,23 +1670,15 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_les ret i1 %12 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -1632,7 +1688,7 @@ attributes #10 = { nocallback nofree nosync nounwind speculatable willreturn mem !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-independent-set-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-independent-set-problem.ll index 059edb089..b78029500 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-independent-set-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-independent-set-problem.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/largest-independent-set-problem.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -11,29 +12,11 @@ target triple = "x86_64-pc-linux-gnu" %"class.std::locale" = type { ptr } %class.node = type { i32, i32, ptr, ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [40 x i8] c"Size of the Largest Independent Set is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_largest_independent_set_problem.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -57,7 +40,7 @@ define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4LISSP4node(ptr noundef %0) #5 { +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 @@ -188,11 +171,11 @@ define dso_local noundef i32 @_Z4LISSP4node(ptr noundef %0) #5 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z7newNodei(i32 noundef %0) #5 { +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) #9 + %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 @@ -213,13 +196,13 @@ define dso_local noundef ptr @_Z7newNodei(i32 noundef %0) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #6 +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) #7 +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() #8 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca ptr, align 8 store i32 0, ptr %1, align 4 @@ -274,26 +257,17 @@ define dso_local noundef i32 @main() #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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_largest_independent_set_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -303,4 +277,4 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-sum-contiguous-subarray.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-sum-contiguous-subarray.ll index 7ca515ddf..bbfb0b715 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-sum-contiguous-subarray.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/largest-sum-contiguous-subarray.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/largest-sum-contiguous-subarray.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [27 x i8] c"Maximum contiguous sum is \00", align 1 @.str.1 = private unnamed_addr constant [16 x i8] c"Starting index \00", align 1 @.str.2 = private unnamed_addr constant [14 x i8] c"Ending index \00", align 1 @__const.main.a = private unnamed_addr constant [8 x i32] [i32 -2, i32 -3, i32 4, i32 -1, i32 -2, i32 1, i32 5, i32 -3], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z14maxSubArraySumPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -130,10 +113,10 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr nou 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() #5 +declare void @llvm.trap() #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -149,22 +132,13 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { cold noreturn nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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} @@ -174,6 +148,6 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/lexicographic-rank-of-a-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/lexicographic-rank-of-a-string.ll index 806428820..884c6345d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/lexicographic-rank-of-a-string.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/lexicographic-rank-of-a-string.ll @@ -3,36 +3,19 @@ source_filename = "PE-benchmarks/lexicographic-rank-of-a-string.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.str = private unnamed_addr constant [7 x i8] c"string\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z4facti(i32 noundef %0) #4 { +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 @@ -56,7 +39,7 @@ define dso_local noundef i32 @_Z4facti(i32 noundef %0) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z18findSmallerInRightPcii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #5 { +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 @@ -114,7 +97,7 @@ define dso_local noundef i32 @_Z18findSmallerInRightPcii(ptr noundef %0, i32 nou } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8findRankPc(ptr noundef %0) #4 { +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 @@ -123,7 +106,7 @@ define dso_local noundef i32 @_Z8findRankPc(ptr noundef %0) #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) #9 + %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 @@ -172,10 +155,10 @@ define dso_local noundef i32 @_Z8findRankPc(ptr noundef %0) #4 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #6 +declare i64 @strlen(ptr noundef) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -187,26 +170,17 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -216,7 +190,7 @@ attributes #9 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/little-and-big-endian-mystery.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/little-and-big-endian-mystery.ll index 9b2177ada..3b0f35a99 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/little-and-big-endian-mystery.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/little-and-big-endian-mystery.ll @@ -70,6 +70,6 @@ attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-bitonic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-bitonic-subsequence.ll index d700b76e2..9fa057c2b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-bitonic-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-bitonic-subsequence.ll @@ -353,7 +353,7 @@ attributes #6 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-even-length-substring-sum-first-second-half.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-even-length-substring-sum-first-second-half.ll index 6b93b5051..4d2d89316 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-even-length-substring-sum-first-second-half.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-even-length-substring-sum-first-second-half.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/longest-even-length-substring-sum-first-second- target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.str = private unnamed_addr constant [7 x i8] c"153803\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [28 x i8] c"Length of the substring is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z10findLengthPc(ptr noundef %0) #4 { +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 @@ -47,7 +30,7 @@ define dso_local noundef i32 @_Z10findLengthPc(ptr noundef %0) #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) #9 + %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 @@ -223,16 +206,16 @@ define dso_local noundef i32 @_Z10findLengthPc(ptr noundef %0) #4 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #5 +declare i64 @strlen(ptr noundef) #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #6 +declare ptr @llvm.stacksave() #2 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #6 +declare void @llvm.stackrestore(ptr) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -245,28 +228,19 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nosync nounwind willreturn } -attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -276,7 +250,7 @@ attributes #9 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-increasing-subsequence.ll index b0e10dd07..e39a0416b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-increasing-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-increasing-subsequence.ll @@ -151,6 +151,6 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindrome-substring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindrome-substring.ll index a3e5c855f..eab0e1f3c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindrome-substring.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindrome-substring.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/longest-palindrome-substring.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,62 +14,33 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_longest_palindrome_substring.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 { +define dso_local void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(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 @@ -109,7 +81,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIc 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) #4 personality ptr @__gxx_personality_v0 { +define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef %0) #0 personality ptr @__gxx_personality_v0 { %2 = alloca ptr, align 8 %3 = alloca i32, align 4 %4 = alloca ptr, align 8 @@ -126,7 +98,7 @@ define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt1 %15 = alloca ptr, align 8 %16 = alloca i32, align 4 store ptr %0, ptr %2, align 8 - %17 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + %17 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 %18 = trunc i64 %17 to i32 store i32 %18, ptr %3, align 4 %19 = load i32, ptr %3, align 4 @@ -329,7 +301,7 @@ define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt1 to label %146 unwind label %149 146: ; preds = %139 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #11 %147 = load i32, ptr %7, align 4 %148 = load ptr, ptr %4, align 8 call void @llvm.stackrestore(ptr %148) @@ -342,7 +314,7 @@ define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt1 store ptr %151, ptr %15, align 8 %152 = extractvalue { ptr, i32 } %150, 1 store i32 %152, ptr %16, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #11 br label %153 153: ; preds = %149 @@ -357,10 +329,10 @@ define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt1 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() #5 +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) #6 +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 @@ -372,143 +344,153 @@ declare i32 @__gxx_personality_v0(...) 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) #5 +declare void @llvm.stackrestore(ptr) #3 -; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 personality ptr @__gxx_personality_v0 { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %7 unwind label %16 - -7: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %8 = 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 %9 unwind label %20 - -9: ; preds = %7 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %10 unwind label %20 - -10: ; preds = %9 - %11 = invoke noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef %6) - to label %12 unwind label %24 - -12: ; preds = %10 - %13 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8) %8, i32 noundef %11) - to label %14 unwind label %24 - -14: ; preds = %12 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = load i32, ptr %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { ptr, i32 } + %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 - %18 = extractvalue { ptr, i32 } %17, 0 - store ptr %18, ptr %4, align 8 - %19 = extractvalue { ptr, i32 } %17, 1 - store i32 %19, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %29 - -20: ; preds = %9, %7 - %21 = landingpad { ptr, i32 } + %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 - %22 = extractvalue { ptr, i32 } %21, 0 - store ptr %22, ptr %4, align 8 - %23 = extractvalue { ptr, i32 } %21, 1 - store i32 %23, ptr %5, align 4 - br label %28 - -24: ; preds = %12, %10 - %25 = landingpad { ptr, i32 } + %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 - %26 = extractvalue { ptr, i32 } %25, 0 - store ptr %26, ptr %4, align 8 - %27 = extractvalue { ptr, i32 } %25, 1 - store i32 %27, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - br label %28 - -28: ; preds = %24, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %29 - -29: ; preds = %28, %16 - %30 = load ptr, ptr %4, align 8 - %31 = load i32, ptr %5, align 4 - %32 = insertvalue { ptr, i32 } poison, ptr %30, 0 - %33 = insertvalue { ptr, i32 } %32, i32 %31, 1 - resume { ptr, i32 } %33 -} + %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 -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -516,341 +498,227 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) +; 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 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +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: 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 #8 comdat align 2 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #12 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } + %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 - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #12 - to label %56 unwind label %41 + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #13 + unreachable -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 - -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +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 = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #13 - unreachable - -56: ; preds = %40 - unreachable +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #9 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #10 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 ptr @__cxa_begin_catch(ptr) - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #13 - unreachable -} - -declare void @_ZSt9terminatev() - declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #9 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #9 comdat { +; 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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !12 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +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: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #9 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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_palindrome_substring.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { nounwind } attributes #12 = { noreturn } attributes #13 = { noreturn nounwind } @@ -862,11 +730,10 @@ attributes #13 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !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-llvm17/longest-palindromic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindromic-subsequence.ll index cf952a151..e5afd0652 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindromic-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-palindromic-subsequence.ll @@ -293,7 +293,7 @@ attributes #6 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-path-directed-acyclic-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-path-directed-acyclic-graph.ll index e8f6a9c05..7d39b4b13 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-path-directed-acyclic-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/longest-path-directed-acyclic-graph.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/longest-path-directed-acyclic-graph.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -70,12 +71,8 @@ $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev = comdat any @@ -88,8 +85,6 @@ $_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv = comdat any $__clang_call_terminate = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_ = comdat any - $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv = comdat any $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E = comdat any @@ -98,15 +93,9 @@ $_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv = comdat any $_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS2_m = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m = comdat any - -$_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev = comdat any $_ZNSt5dequeIiSaIiEED2Ev = comdat any @@ -130,31 +119,19 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any $_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_ = comdat any @@ -166,30 +143,18 @@ $_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_ = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv = comdat any $_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -206,14 +171,8 @@ $_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -236,7 +195,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -244,17 +205,11 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -264,12 +219,8 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any @@ -286,40 +237,18 @@ $_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any $_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [5 x i8] c"INF \00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.2 = private unnamed_addr constant [52 x i8] c"Following are longest distances from source vertex \00", align 1 @.str.3 = private unnamed_addr constant [3 x i8] c" \0A\00", align 1 @.str.4 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp, ptr null }] @_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 internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -340,7 +269,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -352,7 +281,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -364,25 +293,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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 #6 align 2 { +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 @@ -401,7 +330,7 @@ define dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable 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) #3 + 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 @@ -414,19 +343,19 @@ define dso_local void @_ZN5GraphD2Ev(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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) #7 +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) #8 align 2 { +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 @@ -450,7 +379,7 @@ define dso_local void @_ZN5Graph7addEdgeEiii(ptr noundef nonnull align 8 derefer } ; 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 #6 comdat align 2 { +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 @@ -468,14 +397,14 @@ define linkonce_odr dso_local void @_ZN11AdjListNodeC2Eii(ptr noundef nonnull al } ; 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) #8 comdat align 2 { +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) #3 + %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 @@ -486,7 +415,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9pus } ; 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) #8 align 2 { +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 @@ -505,13 +434,13 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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) #3 + 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) #3 + %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) @@ -523,14 +452,14 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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) #3 + %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) #3 + %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) #3 + %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) @@ -551,7 +480,7 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa 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) #3 + %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 @@ -561,7 +490,7 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { +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 @@ -571,7 +500,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #9 comdat align 2 { +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 @@ -580,17 +509,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5begi %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) #3 + 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) #10 +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) #9 comdat { +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 @@ -606,21 +535,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11A } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #9 comdat align 2 { +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) #3 + 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) #9 comdat align 2 { +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 @@ -631,7 +560,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #9 comdat align 2 { +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 @@ -641,7 +570,7 @@ define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode4getVEv(ptr noundef n } ; 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) #9 comdat align 2 { +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 @@ -655,7 +584,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -668,7 +597,7 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #8 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -699,7 +628,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere %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) #16 + %28 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %27) #15 to label %29 unwind label %43 29: ; preds = %2 @@ -735,7 +664,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere 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) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 br label %189 47: ; preds = %30 @@ -829,7 +758,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere to label %96 unwind label %43 96: ; preds = %94 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %15) #3 + 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 @@ -843,7 +772,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere %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) #3 + %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) @@ -855,14 +784,14 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere %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) #3 + %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) #3 + %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) #3 + %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 @@ -874,7 +803,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere %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) #3 + %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 @@ -888,13 +817,13 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere %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) #3 + %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) #3 + %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 @@ -908,7 +837,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere 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) #3 + %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 @@ -980,7 +909,7 @@ define dso_local void @_ZN5Graph11longestPathEi(ptr noundef nonnull align 8 dere 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) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 ret void 189: ; preds = %43 @@ -1003,42 +932,42 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #11 +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) #9 comdat align 2 { +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) #3 + %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) #9 comdat align 2 { +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) #3 + %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) #9 comdat align 2 { +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) #3 + 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) #9 comdat align 2 { +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 @@ -1049,7 +978,7 @@ define linkonce_odr dso_local noundef ptr @_ZNKSt14_List_iteratorI11AdjListNodeE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode9getWeightEv(ptr noundef nonnull align 4 dereferenceable(8) %0) #9 comdat align 2 { +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 @@ -1058,25 +987,25 @@ define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode9getWeightEv(ptr noun 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) #1 +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) #1 +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) #11 +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 #6 comdat align 2 { +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) #3 + 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() #12 personality ptr @__gxx_personality_v0 { +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 @@ -1144,7 +1073,7 @@ define dso_local noundef i32 @main() #12 personality ptr @__gxx_personality_v0 { 24: ; preds = %22 store i32 0, ptr %1, align 4 - call void @_ZN5GraphD1Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #3 + call void @_ZN5GraphD1Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #16 %25 = load i32, ptr %1, align 4 ret i32 %25 @@ -1155,7 +1084,7 @@ define dso_local noundef i32 @main() #12 personality ptr @__gxx_personality_v0 { 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) #3 + call void @_ZN5GraphD1Ev(ptr noundef nonnull align 8 dereferenceable(16) %2) #16 br label %30 30: ; preds = %26 @@ -1167,54 +1096,42 @@ define dso_local noundef i32 @main() #12 personality ptr @__gxx_personality_v0 { } ; 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 #6 comdat align 2 { +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) #3 - 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 #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 @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #9 comdat align 2 { +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 @@ -1228,91 +1145,105 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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) #3 + 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) #3 + 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) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %6 = load ptr, ptr %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, 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_base", ptr %8, i32 0, i32 0 - %10 = load ptr, ptr %9, align 8 - store ptr %10, ptr %3, align 8 - br label %11 - -11: ; preds = %23, %1 - %12 = load ptr, ptr %3, align 8 - %13 = getelementptr inbounds %"class.std::__cxx11::_List_base", ptr %6, i32 0, i32 0 - %14 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %13, i32 0, i32 0 - %15 = icmp ne ptr %12, %14 - br i1 %15, label %16, label %27 - -16: ; preds = %11 - %17 = load ptr, ptr %3, align 8 - store ptr %17, ptr %4, align 8 - %18 = load ptr, ptr %4, align 8 - %19 = getelementptr inbounds %"struct.std::__detail::_List_node_base", ptr %18, i32 0, i32 0 - %20 = load ptr, ptr %19, align 8 - store ptr %20, ptr %3, align 8 - %21 = load ptr, ptr %4, align 8 - %22 = invoke noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %21) - to label %23 unwind label %28 - -23: ; preds = %16 - store ptr %22, ptr %5, align 8 - %24 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %6) #3 - %25 = load ptr, ptr %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(ptr noundef nonnull align 1 dereferenceable(1) %24, ptr noundef %25) #3 - %26 = load ptr, ptr %4, align 8 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(ptr noundef nonnull align 8 dereferenceable(24) %6, ptr noundef %26) #3 - br label %11, !llvm.loop !14 + %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 -27: ; preds = %11 - ret void +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 -28: ; preds = %16 - %29 = landingpad { ptr, i32 } +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 - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #18 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #9 comdat align 2 { +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) #3 + %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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1322,19 +1253,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #9 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #9 comdat align 2 { +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 @@ -1343,39 +1262,48 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::__cxx11::_List_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef 1) - to label %8 unwind label %9 - -8: ; preds = %2 - ret void - -9: ; preds = %2 - %10 = landingpad { ptr, i32 } + %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 - %11 = extractvalue { ptr, i32 } %10, 0 - call void @__clang_call_terminate(ptr %11) #18 + %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) #9 comdat align 2 { +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) #3 + %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) #9 comdat align 2 { +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 @@ -1384,33 +1312,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufI11Adj } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #9 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 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #9 comdat align 2 { +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 @@ -1419,24 +1321,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #7 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} +declare void @_ZdlPv(ptr noundef) #4 ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1444,20 +1337,20 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 + 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #16 ret void 8: ; preds = %1 @@ -1469,7 +1362,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull } ; 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) #9 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -1483,7 +1376,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De } ; 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) #9 comdat align 2 { +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 @@ -1491,12 +1384,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret %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) #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 void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #9 comdat align 2 { +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 @@ -1504,12 +1397,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #9 comdat align 2 { +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 @@ -1518,7 +1411,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1538,24 +1431,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef n %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) #3 + 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) #3 + 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) #3 + 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 #6 comdat align 2 { +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 @@ -1585,7 +1478,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; 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) #9 comdat align 2 { +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 @@ -1607,7 +1500,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -1620,87 +1513,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes ret void } -; Function Attrs: mustprogress 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) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 - -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 + %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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #18 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #18 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #18 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #9 comdat { +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 @@ -1721,7 +1623,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #9 comdat align 2 { +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 @@ -1730,48 +1632,31 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } -; Function Attrs: mustprogress 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) #9 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { %4 = alloca ptr, align 8 %5 = alloca ptr, align 8 - %6 = 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 %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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) #9 comdat align 2 { +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 @@ -1779,27 +1664,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #9 comdat align 2 { +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 @@ -1808,12 +1674,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1821,16 +1687,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr nou } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1838,7 +1695,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noun } ; 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) #8 comdat align 2 { +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 @@ -1854,44 +1711,62 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_ %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) #3 + 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) #8 comdat align 2 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(24) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(8) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #9 comdat align 2 { +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 @@ -1908,17 +1783,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 } ; 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) #8 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 -} - -; 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 #6 comdat align 2 { + %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 @@ -1936,22 +1817,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11A } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(8) %2) #9 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(8) %9) #3 - 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) #9 comdat align 2 { +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 @@ -1963,117 +1829,93 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #18 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1) #8 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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #8 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #19 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #19 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #20 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(8) %2) #9 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 - call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %9, i64 8, i1 false) - ret void -} +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 #6 comdat align 2 { +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 @@ -2086,133 +1928,140 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8 } ; 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) #8 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 + %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 -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 +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 -30: ; preds = %28, %16 - ret void -} +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #9 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 +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) #8 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #9 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #9 comdat align 2 { + %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 @@ -2220,25 +2069,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #9 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #14 +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) #8 comdat align 2 { +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 @@ -2274,18 +2123,24 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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) #8 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 + %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) #9 comdat align 2 { +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 @@ -2300,7 +2155,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -2308,12 +2163,12 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; 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) #9 comdat { +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() #3 + %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 @@ -2328,77 +2183,75 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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() #9 comdat align 2 { +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) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 + %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 -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 -10: ; preds = %1 - %11 = landingpad { ptr, i32 } +15: ; preds = %1 + %16 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #18 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %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 noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #9 comdat { +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 @@ -2426,25 +2279,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - ; 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) #8 comdat align 2 { +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 @@ -2603,7 +2439,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -2618,19 +2454,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #8 comdat { +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 @@ -2647,7 +2483,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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) #8 comdat { +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 @@ -2664,7 +2500,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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) #9 comdat { +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 @@ -2692,45 +2528,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 + %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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 + %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 -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 +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) #8 comdat { +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 @@ -2738,18 +2589,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #9 comdat { +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 @@ -2757,7 +2608,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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) #9 comdat { +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 @@ -2767,7 +2618,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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) #8 comdat { +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 @@ -2782,7 +2633,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #9 comdat { +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 @@ -2790,7 +2641,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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) #8 comdat { +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 @@ -2800,12 +2651,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #9 comdat align 2 { +; 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 @@ -2821,7 +2672,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2830,20 +2681,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #10 +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) #8 comdat { +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 @@ -2851,18 +2729,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #8 comdat { +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 @@ -2877,7 +2755,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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) #8 comdat { +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 @@ -2887,12 +2765,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #9 comdat align 2 { +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 @@ -2908,7 +2786,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2920,118 +2798,105 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 -} +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1) #8 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 @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 +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 @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #8 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #19 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #19 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #20 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 +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 @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1) #8 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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #8 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #19 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #19 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #20 - ret ptr %19 +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) #15 +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 { @@ -3050,7 +2915,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + 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 @@ -3064,7 +2929,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #16 br label %12 12: ; preds = %8 @@ -3076,17 +2941,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3154,14 +3024,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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 @@ -3188,12 +3058,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -3235,16 +3105,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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 #6 comdat align 2 { +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 @@ -3253,22 +3114,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #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 @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { +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 @@ -3284,7 +3137,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3331,10 +3184,10 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 + 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 @@ -3380,7 +3233,7 @@ 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) #9 comdat align 2 { +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 @@ -3388,12 +3241,12 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(p %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) #3 + %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) #9 comdat { +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 @@ -3409,19 +3262,19 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiR } ; 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) #9 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 - %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #9 comdat align 2 { +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 @@ -3436,7 +3289,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ %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) #3 + 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 @@ -3452,7 +3305,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ } ; 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) #9 comdat align 2 { +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 @@ -3462,140 +3315,132 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = icmp ne ptr %7, %11 - br i1 %12, label %13, label %24 + %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 -13: ; preds = %1 - %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 0 - %17 = load ptr, ptr %16, align 8 - %18 = getelementptr inbounds i32, ptr %17, i32 -1 - store ptr %18, ptr %16, align 8 - %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - %23 = load ptr, ptr %22, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %23) #3 - br label %26 +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 -24: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %25 unwind label %27 +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 -25: ; preds = %24 - br label %26 +33: ; preds = %32 + br label %34 -26: ; preds = %25, %13 +34: ; preds = %33, %17 ret void -27: ; preds = %24 - %28 = landingpad { ptr, i32 } +35: ; preds = %32 + %36 = landingpad { ptr, i32 } catch ptr null - %29 = extractvalue { ptr, i32 } %28, 0 - call void @__clang_call_terminate(ptr %29) #18 + %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 @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #9 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #9 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 %7 = load ptr, ptr %6, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %7) #3 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 3 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds ptr, ptr %13, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %14) #3 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 2 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds i32, ptr %18, i64 -1 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - store ptr %19, ptr %22, 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) %3) #3 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %27 = load ptr, ptr %26, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %23, ptr noundef %27) #3 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #9 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 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #11 = { nocallback nofree nosync nounwind willreturn } -attributes #12 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { nocallback nofree nounwind willreturn memory(argmem: write) } -attributes #16 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 } -attributes #20 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -3605,7 +3450,7 @@ attributes #20 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/m-coloring-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/m-coloring-problem.ll index de1d522b6..8739467e7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/m-coloring-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/m-coloring-problem.ll @@ -280,7 +280,7 @@ attributes #4 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/magic-square.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/magic-square.ll index e15f0f658..126a2a8bf 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/magic-square.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/magic-square.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/magic-square.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [24 x i8] c"The Magic Square for n=\00", align 1 @.str.1 = private unnamed_addr constant [29 x i8] c":\0ASum of each row or column \00", align 1 @.str.2 = private unnamed_addr constant [4 x i8] c":\0A\0A\00", align 1 @.str.3 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_magic_square.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z14generateSquarei(i32 noundef %0) #4 { +define dso_local void @_Z14generateSquarei(i32 noundef %0) #0 { %2 = alloca i32, align 4 %3 = alloca ptr, align 8 %4 = alloca i64, align 8 @@ -229,24 +212,24 @@ define dso_local void @_Z14generateSquarei(i32 noundef %0) #4 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 +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) #1 +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) #1 +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) #1 +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)) #1 +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) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -256,20 +239,11 @@ define dso_local noundef i32 @main() #7 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_magic_square.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -279,7 +253,7 @@ attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/matrix-chain-multiplication.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/matrix-chain-multiplication.ll index 5e2306b4b..a8d7ab702 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/matrix-chain-multiplication.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/matrix-chain-multiplication.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/matrix-chain-multiplication.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [4 x i32] [i32 1, i32 2, i32 3, i32 4], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [38 x i8] c"Minimum number of multiplications is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_matrix_chain_multiplication.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z16MatrixChainOrderPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -234,13 +217,13 @@ define dso_local noundef i32 @_Z16MatrixChainOrderPii(ptr noundef %0, i32 nounde } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -257,28 +240,19 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #1 +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) #1 +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #4 -declare i32 @getchar() #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_matrix_chain_multiplication.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare i32 @getchar() #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -288,7 +262,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-length-chain-of-pairs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-length-chain-of-pairs.ll index 4d5c50ce2..1c19df4dc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-length-chain-of-pairs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-length-chain-of-pairs.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/maximum-length-chain-of-pairs.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } @@ -11,30 +12,12 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::ios_base::_Words" = type { ptr, i64 } %"class.std::locale" = type { ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [4 x %class.Pair] [%class.Pair { i32 5, i32 24 }, %class.Pair { i32 15, i32 25 }, %class.Pair { i32 27, i32 40 }, %class.Pair { i32 50, i32 60 }], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [33 x i8] c"Length of maximum size chain is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -51,7 +34,7 @@ define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(ptr noundef %0, i32 noun %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) #9 + %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 @@ -203,13 +186,13 @@ define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(ptr noundef %0, i32 noun } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #6 +declare noundef nonnull ptr @_Znam(i64 noundef) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -225,28 +208,19 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -256,7 +230,7 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll index fa73b9576..dd87cd197 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,30 +13,12 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt3maxIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.price = private unnamed_addr constant [7 x i32] [i32 2, i32 30, i32 15, i32 10, i32 8, i32 25, i32 80], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [18 x i8] c"Maximum Profit = \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z9maxProfitPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -55,7 +38,7 @@ define dso_local noundef i32 @_Z9maxProfitPii(ptr noundef %0, i32 noundef %1) #4 %17 = extractvalue { i64, i1 } %16, 1 %18 = extractvalue { i64, i1 } %16, 0 %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias noundef nonnull ptr @_Znam(i64 noundef %19) #11 + %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 @@ -227,7 +210,7 @@ define dso_local noundef i32 @_Z9maxProfitPii(ptr noundef %0, i32 noundef %1) #4 br i1 %139, label %141, label %140 140: ; preds = %131 - call void @_ZdaPv(ptr noundef %138) #12 + call void @_ZdaPv(ptr noundef %138) #9 br label %141 141: ; preds = %140, %131 @@ -236,13 +219,13 @@ define dso_local noundef i32 @_Z9maxProfitPii(ptr noundef %0, i32 noundef %1) #4 } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #6 +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) #7 comdat { +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 @@ -271,10 +254,10 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(ptr noundef) #8 +declare void @_ZdaPv(ptr noundef) #4 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #9 { +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -290,31 +273,22 @@ define dso_local noundef i32 @main() #9 { } ; 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) #10 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #7 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #11 = { builtin allocsize(0) } -attributes #12 = { builtin nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -324,7 +298,7 @@ attributes #12 = { builtin nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll index eaaa47491..6e6dc0308 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,32 +13,14 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt3minIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [30 x i8] c"Maximum size sub-matrix is: \0A\00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.2 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 @__const.main.M = private unnamed_addr constant [6 x [5 x i32]] [[5 x i32] [i32 0, i32 1, i32 1, i32 0, i32 1], [5 x i32] [i32 1, i32 1, i32 0, i32 1, i32 0], [5 x i32] [i32 0, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1], [5 x i32] zeroinitializer], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z17printMaxSubSquarePA5_i(ptr noundef %0) #4 { +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 @@ -327,7 +310,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i(ptr noundef %0) #4 { } ; 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 { +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 @@ -355,12 +338,12 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z 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) #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) #1 +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() #6 { +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 @@ -369,22 +352,13 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -394,7 +368,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-increasing-subsequence.ll index 33482fe9e..ad62195a6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-increasing-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-increasing-subsequence.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/maximum-sum-increasing-subsequence.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [7 x i32] [i32 1, i32 101, i32 2, i32 3, i32 100, i32 4, i32 5], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [46 x i8] c"Sum of maximum sum increasing subsequence is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z8maxSumISPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -208,13 +191,13 @@ define dso_local noundef i32 @_Z8maxSumISPii(ptr noundef %0, i32 noundef %1) #4 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -231,30 +214,21 @@ define dso_local noundef i32 @main() #6 { } ; 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 +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) #1 +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) #1 +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) #1 +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)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -264,7 +238,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-rectangle-in-a-2d-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-rectangle-in-a-2d-matrix.ll index e3858501e..b9da1b17f 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-rectangle-in-a-2d-matrix.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/maximum-sum-rectangle-in-a-2d-matrix.ll @@ -3,15 +3,14 @@ source_filename = "PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [14 x i8] c"(Top, Left) (\00", align 1 @.str.1 = private unnamed_addr constant [3 x i8] c", \00", align 1 @@ -19,25 +18,9 @@ target triple = "x86_64-pc-linux-gnu" @.str.3 = private unnamed_addr constant [18 x i8] c"(Bottom, Right) (\00", align 1 @.str.4 = private unnamed_addr constant [13 x i8] c"Max sum is: \00", align 1 @__const.main.M = private unnamed_addr constant [4 x [5 x i32]] [[5 x i32] [i32 1, i32 2, i32 -1, i32 -4, i32 -20], [5 x i32] [i32 -8, i32 -3, i32 4, i32 2, i32 1], [5 x i32] [i32 3, i32 8, i32 10, i32 1, i32 3], [5 x i32] [i32 -4, i32 -1, i32 1, i32 7, i32 -6]], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -187,7 +170,7 @@ define dso_local noundef i32 @_Z6kadanePiS_S_i(ptr noundef %0, ptr noundef %1, p } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10findMaxSumPA5_i(ptr noundef %0) #5 { +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 @@ -320,18 +303,18 @@ define dso_local void @_Z10findMaxSumPA5_i(ptr noundef %0) #5 { } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #6 +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) #1 +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) #1 +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) #1 +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)) #1 +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() #7 { +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 @@ -342,23 +325,14 @@ define dso_local noundef i32 @main() #7 { } ; 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: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -368,7 +342,7 @@ attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/merge-sort-for-doubly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/merge-sort-for-doubly-linked-list.ll index 304e5585f..b52660c53 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/merge-sort-for-doubly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/merge-sort-for-doubly-linked-list.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/merge-sort-for-doubly-linked-list.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -11,32 +12,14 @@ target triple = "x86_64-pc-linux-gnu" %"class.std::locale" = type { ptr } %class.Node = type { i32, ptr, ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [38 x i8] c"Forward Traversal using next poitner\0A\00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.2 = private unnamed_addr constant [40 x i8] c"\0ABackward Traversal using prev pointer\0A\00", align 1 @.str.3 = private unnamed_addr constant [27 x i8] c"Linked List after sorting\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -121,7 +104,7 @@ define dso_local noundef ptr @_Z5mergeP4NodeS0_(ptr noundef %0, ptr noundef %1) } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z9mergeSortP4Node(ptr noundef %0) #4 { +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 @@ -164,7 +147,7 @@ define dso_local noundef ptr @_Z9mergeSortP4Node(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef ptr @_Z5splitP4Node(ptr noundef %0) #5 { +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 @@ -222,13 +205,13 @@ define dso_local noundef ptr @_Z5splitP4Node(ptr noundef %0) #5 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6insertPP4Nodei(ptr noundef %0, i32 noundef %1) #4 { +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) #9 + %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 @@ -273,13 +256,13 @@ define dso_local void @_Z6insertPP4Nodei(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #6 +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) #7 +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) #4 { +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 @@ -332,12 +315,12 @@ define dso_local void @_Z5printP4Node(ptr noundef %0) #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) #1 +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) #1 +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) #5 { +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 @@ -357,7 +340,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #5 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca ptr, align 8 store i32 0, ptr %1, align 4 @@ -377,22 +360,13 @@ define dso_local noundef i32 @main() #8 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -402,7 +376,7 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/mergeSort_LinkedList.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/mergeSort_LinkedList.ll index 4d943d838..97c379061 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/mergeSort_LinkedList.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/mergeSort_LinkedList.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/mergeSort_LinkedList.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -11,30 +12,12 @@ target triple = "x86_64-pc-linux-gnu" %"class.std::locale" = type { ptr } %class.Node = type { i32, ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [25 x i8] c"Sorted Linked List is: \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_mergeSort_LinkedList.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9MergeSortPP4Node(ptr noundef %0) #4 { +define dso_local void @_Z9MergeSortPP4Node(ptr noundef %0) #0 { %2 = alloca ptr, align 8 %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 @@ -74,7 +57,7 @@ define dso_local void @_Z9MergeSortPP4Node(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #5 { +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 @@ -135,7 +118,7 @@ define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(ptr noundef %0, ptr nound } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -212,7 +195,7 @@ define dso_local noundef ptr @_Z11SortedMergeP4NodeS0_(ptr noundef %0, ptr nound } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(ptr noundef %0) #4 { +define dso_local void @_Z9printListP4Node(ptr noundef %0) #0 { %2 = alloca ptr, align 8 store ptr %0, ptr %2, align 8 br label %3 @@ -238,18 +221,18 @@ define dso_local void @_Z9printListP4Node(ptr noundef %0) #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) #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) #1 +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) #4 { +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) #9 + %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 @@ -268,13 +251,13 @@ define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #6 +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) #7 +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() #8 { +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca ptr, align 8 %3 = alloca ptr, align 8 @@ -294,22 +277,13 @@ define dso_local noundef i32 @main() #8 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_mergeSort_LinkedList.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -319,7 +293,7 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/min-cost-path.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/min-cost-path.ll index 79344fe22..684fbe808 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/min-cost-path.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/min-cost-path.ll @@ -173,4 +173,4 @@ attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll index 67d8b32fd..8a05882c6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll @@ -3,36 +3,19 @@ source_filename = "PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-mini target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @__const.main.a = private unnamed_addr constant [4 x i32] [i32 5, i32 6, i32 1, i32 3], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z5solvePii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -142,7 +125,7 @@ define dso_local void @_Z5solvePii(ptr noundef %0, i32 noundef %1) #4 { 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() #5 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -156,21 +139,12 @@ define dso_local noundef i32 @main() #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) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #3 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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} @@ -180,6 +154,6 @@ attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cost-polygon-triangulation.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cost-polygon-triangulation.ll index b743b211f..687bda439 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cost-polygon-triangulation.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cost-polygon-triangulation.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/minimum-cost-polygon-triangulation.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,28 +14,10 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef double @_Z3mindd(double noundef %0, double noundef %1) #4 { +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 @@ -58,7 +41,7 @@ define dso_local noundef double @_Z3mindd(double noundef %0, double noundef %1) } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef double @_Z4dist5PointS_(i64 %0, i64 %1) #5 { +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 @@ -91,17 +74,17 @@ define dso_local noundef double @_Z4dist5PointS_(i64 %0, i64 %1) #5 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %0) #4 comdat { +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) #3 + %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) #5 { +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 @@ -155,10 +138,10 @@ define dso_local noundef double @_Z4costP5Pointiii(ptr noundef %0, i32 noundef % } ; 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 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) #5 { +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 @@ -351,13 +334,13 @@ define dso_local noundef double @_Z5mTCDPP5Pointi(ptr noundef %0, i32 noundef %1 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #7 +declare ptr @llvm.stacksave() #3 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #7 +declare void @llvm.stackrestore(ptr) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +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 @@ -388,29 +371,22 @@ define dso_local noundef i32 @main() #8 { } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #9 +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) #1 +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) #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: write) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -420,7 +396,7 @@ attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: write) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cut-in-a-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cut-in-a-directed-graph.ll index 84dd287f6..f8ee98e4a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cut-in-a-directed-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-cut-in-a-directed-graph.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/minimum-cut-in-a-directed-graph.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -55,31 +56,19 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZNSaIiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -89,12 +78,8 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZSt3maxImERKT_S2_S2_ = comdat any @@ -105,30 +90,18 @@ $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any $_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any $_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -139,12 +112,8 @@ $_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -163,7 +132,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -171,7 +142,7 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any $_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any @@ -183,37 +154,15 @@ $_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any $_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [4 x i8] c" - \00", align 1 @__const.main.graph = private unnamed_addr constant [6 x [6 x i32]] [[6 x i32] [i32 0, i32 16, i32 13, i32 0, i32 0, i32 0], [6 x i32] [i32 0, i32 0, i32 10, i32 12, i32 0, i32 0], [6 x i32] [i32 0, i32 4, i32 0, i32 0, i32 14, i32 0], [6 x i32] [i32 0, i32 0, i32 9, i32 0, i32 0, i32 20], [6 x i32] [i32 0, i32 0, i32 0, i32 7, i32 0, i32 4], [6 x i32] zeroinitializer], align 16 @.str.1 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %0, i32 noundef %1, i32 noundef %2, ptr noundef %3) #4 personality ptr @__gxx_personality_v0 { +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 @@ -319,7 +268,7 @@ define dso_local noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %0, i32 noundef %1, i3 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) #3 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %10) #12 br label %82 68: ; preds = %55, %44, %36 @@ -343,7 +292,7 @@ define dso_local noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %0, i32 noundef %1, i3 %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) #3 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %10) #12 ret i32 %81 82: ; preds = %64 @@ -355,10 +304,10 @@ define dso_local noundef i32 @_Z3bfsPA6_iiiPi(ptr noundef %0, i32 noundef %1, i3 } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #5 +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 #0 comdat align 2 { +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 @@ -369,7 +318,7 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr } ; 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) #4 comdat align 2 { +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 @@ -384,47 +333,47 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(ptr 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) #6 comdat align 2 { +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) #3 + %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) #6 comdat align 2 { +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) #3 + %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) #6 comdat align 2 { +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) #3 + 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 #7 comdat align 2 { +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) #3 + 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) #4 { +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 @@ -487,7 +436,7 @@ define dso_local void @_Z3dfsPA6_iiPb(ptr noundef %0, i32 noundef %1, ptr nounde } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6minCutPA6_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -735,7 +684,7 @@ define dso_local void @_Z6minCutPA6_iii(ptr noundef %0, i32 noundef %1, i32 noun } ; 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) #6 comdat { +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 @@ -763,16 +712,16 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z 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) #1 +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) #1 +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) #1 +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)) #1 +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() #8 { +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 @@ -783,35 +732,35 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 +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 #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 + 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) #3 + 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) #14 + 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) #6 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -825,7 +774,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De } ; 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 { +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 @@ -833,12 +782,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret %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) #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 void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #6 comdat align 2 { +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 @@ -846,12 +795,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #6 comdat align 2 { +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 @@ -860,9 +809,9 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #10 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #14 +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 } @@ -871,7 +820,7 @@ 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 #7 comdat align 2 { +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 @@ -891,24 +840,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef n %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) #3 + 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) #3 + 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) #3 + 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 #7 comdat align 2 { +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 @@ -938,7 +887,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; 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 { +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 @@ -960,7 +909,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -973,87 +922,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes ret void } -; Function Attrs: mustprogress 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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 i64, align 8 - %7 = alloca %"class.std::allocator.0", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 - -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 + %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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #14 + %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 #7 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #14 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #13 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #6 comdat { +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 @@ -1074,7 +1032,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { +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 @@ -1083,51 +1041,34 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #14 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #11 +declare void @_ZdlPv(ptr noundef) #9 -; Function Attrs: mustprogress 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) #6 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_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 + %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 { +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 @@ -1135,27 +1076,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #6 comdat align 2 { +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 @@ -1164,12 +1086,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate 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) #3 + call void @_ZdlPv(ptr noundef %8) #14 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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 @@ -1177,16 +1099,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr nou } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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 @@ -1194,7 +1107,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noun } ; 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 { +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 @@ -1203,14 +1116,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(ptr noundef nonnull } ; 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 { +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) #3 + 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 @@ -1224,7 +1137,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #12 br label %12 12: ; preds = %8 @@ -1236,17 +1149,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #7 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1314,14 +1232,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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 @@ -1348,12 +1266,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -1387,7 +1305,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %99 = landingpad { ptr, i32 } catch ptr null %100 = extractvalue { ptr, i32 } %99, 0 - call void @__clang_call_terminate(ptr %100) #14 + call void @__clang_call_terminate(ptr %100) #13 unreachable 101: ; preds = %49 @@ -1395,16 +1313,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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 #7 comdat align 2 { +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 @@ -1413,22 +1322,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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 + 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 #7 comdat align 2 { +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 @@ -1444,7 +1345,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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 { +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 @@ -1472,45 +1373,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.0", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 + %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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1557,10 +1473,10 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 + 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 @@ -1594,7 +1510,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %45 = landingpad { ptr, i32 } catch ptr null %46 = extractvalue { ptr, i32 } %45, 0 - call void @__clang_call_terminate(ptr %46) #14 + call void @__clang_call_terminate(ptr %46) #13 unreachable 47: ; preds = %27 @@ -1606,7 +1522,7 @@ 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) #6 comdat align 2 { +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 @@ -1621,7 +1537,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -1629,267 +1545,244 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #15 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #15 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #16 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 +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() #12 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #12 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #13 +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) #4 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 + %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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #15 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #15 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #16 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 +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() #6 comdat align 2 { +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) #4 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 - -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 - -30: ; preds = %28, %16 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 + %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 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #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 = load ptr, ptr %5, align 8 - %9 = load ptr, ptr %6, align 8 - %10 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + %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) #6 comdat align 2 { +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 @@ -1897,25 +1790,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #6 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #12 +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) #4 comdat align 2 { +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 @@ -1951,12 +1844,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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 { +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() #3 + %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 @@ -1971,71 +1864,69 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { ptr, i32 } + %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 - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #14 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #6 comdat { +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 @@ -2063,17 +1954,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - ; 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 { +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 @@ -2232,7 +2114,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -2247,19 +2129,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #4 comdat { +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 @@ -2276,7 +2158,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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 { +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 @@ -2293,7 +2175,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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 { +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 @@ -2301,18 +2183,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #6 comdat { +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 @@ -2320,7 +2202,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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 { +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 @@ -2330,7 +2212,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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 { +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 @@ -2345,7 +2227,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #6 comdat { +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 @@ -2353,7 +2235,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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 { +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 @@ -2363,12 +2245,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { +; 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 @@ -2384,7 +2266,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2393,20 +2275,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #9 +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) #4 comdat { +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 @@ -2414,18 +2323,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -2440,7 +2349,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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 { +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 @@ -2450,12 +2359,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #6 comdat align 2 { +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 @@ -2471,7 +2380,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2483,18 +2392,33 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 +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) #6 comdat align 2 { +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 @@ -2502,12 +2426,12 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(p %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) #3 + %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) #6 comdat { +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 @@ -2523,18 +2447,18 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiR } ; 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) #6 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #6 comdat align 2 { +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 @@ -2544,136 +2468,129 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 2 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = getelementptr inbounds i32, ptr %11, i64 -1 - %13 = icmp ne ptr %7, %12 - br i1 %13, label %14, label %25 - -14: ; preds = %1 - %15 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %24 = getelementptr inbounds i32, ptr %23, i32 1 - store ptr %24, ptr %22, align 8 - br label %27 + 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 -25: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %26 unwind label %28 +33: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %34 unwind label %36 -26: ; preds = %25 - br label %27 +34: ; preds = %33 + br label %35 -27: ; preds = %26, %14 +35: ; preds = %34, %18 ret void -28: ; preds = %25 - %29 = landingpad { ptr, i32 } +36: ; preds = %33 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #14 + %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 @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #6 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #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 @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %5 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %5, i32 0, i32 2 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 0 - %8 = load ptr, ptr %7, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %8) #3 - %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 1 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 %12 = load ptr, ptr %11, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12) #3 - %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 2 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds ptr, ptr %18, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 1 - %23 = load ptr, ptr %22, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 - store ptr %23, ptr %26, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %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 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #16 = { builtin allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -2683,7 +2600,7 @@ attributes #16 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll index 31fe207ce..0fd31ba62 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [6 x i32] [i32 1, i32 3, i32 6, i32 1, i32 0, i32 9], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [41 x i8] c"Minimum number of jumps to reach end is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #4 { +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 @@ -57,7 +40,7 @@ define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8minJumpsPii(ptr noundef %0, i32 noundef %1) #5 { +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 @@ -72,7 +55,7 @@ define dso_local noundef i32 @_Z8minJumpsPii(ptr noundef %0, i32 noundef %1) #5 %12 = extractvalue { i64, i1 } %11, 1 %13 = extractvalue { i64, i1 } %11, 0 %14 = select i1 %12, i64 -1, i64 %13 - %15 = call noalias noundef nonnull ptr @_Znam(i64 noundef %14) #10 + %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 @@ -192,13 +175,13 @@ define dso_local noundef i32 @_Z8minJumpsPii(ptr noundef %0, i32 noundef %1) #5 } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #6 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #2 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #7 +declare noundef nonnull ptr @_Znam(i64 noundef) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -214,29 +197,20 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #7 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -246,7 +220,7 @@ attributes #10 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-positive-points-to-reach-destination.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-positive-points-to-reach-destination.ll index ca45a6235..efce85ac5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-positive-points-to-reach-destination.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/minimum-positive-points-to-reach-destination.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/minimum-positive-points-to-reach-destination.cp target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -14,30 +15,12 @@ $_ZSt3maxIiERKT_S2_S2_ = comdat any $_ZSt3minIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.points = private unnamed_addr constant [3 x [3 x i32]] [[3 x i32] [i32 -2, i32 -3, i32 3], [3 x i32] [i32 -5, i32 -10, i32 1], [3 x i32] [i32 10, i32 30, i32 -5]], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [34 x i8] c"Minimum Initial Points Required: \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z16minInitialPointsPA3_i(ptr noundef %0) #4 { +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 @@ -83,7 +66,7 @@ define dso_local noundef i32 @_Z16minInitialPointsPA3_i(ptr noundef %0) #4 { %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) #9 + %40 = call i32 @abs(i32 noundef %39) #6 %41 = add nsw i32 %40, 1 br label %42 @@ -285,10 +268,10 @@ define dso_local noundef i32 @_Z16minInitialPointsPA3_i(ptr noundef %0) #4 { } ; Function Attrs: nounwind willreturn memory(none) -declare i32 @abs(i32 noundef) #5 +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) #6 comdat { +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 @@ -317,7 +300,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #6 comdat { +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 @@ -346,7 +329,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -359,28 +342,19 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { nounwind willreturn memory(none) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -390,7 +364,7 @@ attributes #9 = { nounwind willreturn memory(none) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem.ll index 0b90aedba..82751f8a1 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem.ll @@ -408,7 +408,7 @@ attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem_space_optm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem_space_optm.ll index 4f750d172..daf90b3f6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem_space_optm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/mobile-numeric-keypad-problem_space_optm.ll @@ -450,7 +450,7 @@ attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/n-queen-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/n-queen-problem.ll index ff29865b2..8549bd1f2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/n-queen-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/n-queen-problem.ll @@ -257,7 +257,7 @@ attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/naive-algorithm.ll index 026dc79b8..a5d4024c4 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/naive-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/naive-algorithm.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/naive-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 @__const.main.txt = private unnamed_addr constant [19 x i8] c"AABAACAADAABAAABAA\00", align 16 @__const.main.pat = private unnamed_addr constant [5 x i8] c"AABA\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_naive_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -44,11 +27,11 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #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) #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) #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 @@ -129,18 +112,18 @@ define dso_local void @_Z6searchPcS_(ptr noundef %0, ptr noundef %1) #4 { } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #5 +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) #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) #1 +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) #1 +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)) #1 +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() #6 { +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 @@ -154,23 +137,14 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_naive_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #8 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -180,7 +154,7 @@ attributes #8 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/optimal-binary-search-tree.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/optimal-binary-search-tree.ll index 6697476d4..2c26ee503 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/optimal-binary-search-tree.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/optimal-binary-search-tree.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/optimal-binary-search-tree.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.keys = private unnamed_addr constant [3 x i32] [i32 10, i32 12, i32 20], align 4 @__const.main.freq = private unnamed_addr constant [3 x i32] [i32 34, i32 8, i32 50], align 4 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [24 x i8] c"Cost of Optimal BST is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_optimal_binary_search_tree.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z17optimalSearchTreePiS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #4 { +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 @@ -255,10 +238,10 @@ define dso_local noundef i32 @_Z17optimalSearchTreePiS_i(ptr noundef %0, ptr nou } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 { +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 @@ -301,10 +284,10 @@ define dso_local noundef i32 @_Z3sumPiii(ptr noundef %0, i32 noundef %1, i32 nou } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -323,27 +306,18 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_optimal_binary_search_tree.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -353,7 +327,7 @@ attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/optimized-naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/optimized-naive-algorithm.ll index 5729d92a5..13fba9cbf 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/optimized-naive-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/optimized-naive-algorithm.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/optimized-naive-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,62 +14,33 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_optimized_naive_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 { +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 { %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 %5 = alloca i32, align 4 @@ -77,10 +49,10 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %8 = alloca i32, align 4 store ptr %0, ptr %3, align 8 store ptr %1, ptr %4, align 8 - %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #9 %10 = trunc i64 %9 to i32 store i32 %10, ptr %5, align 4 - %11 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %11 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #9 %12 = trunc i64 %11 to i32 store i32 %12, ptr %6, align 4 store i32 0, ptr %7, align 4 @@ -178,187 +150,208 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI } ; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 +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) #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) #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) #1 +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) #1 +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)) #1 +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() #5 personality ptr @__gxx_personality_v0 { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.1, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %6) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %8, ptr noundef %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = load i32, ptr %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { ptr, i32 } + %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 - %18 = extractvalue { ptr, i32 } %17, 0 - store ptr %18, ptr %4, align 8 - %19 = extractvalue { ptr, i32 } %17, 1 - store i32 %19, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { ptr, i32 } + %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 - %22 = extractvalue { ptr, i32 } %21, 0 - store ptr %22, ptr %4, align 8 - %23 = extractvalue { ptr, i32 } %21, 1 - store i32 %23, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { ptr, i32 } + %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 - %26 = extractvalue { ptr, i32 } %25, 0 - store ptr %26, ptr %4, align 8 - %27 = extractvalue { ptr, i32 } %25, 1 - store i32 %27, ptr %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { ptr, i32 } + %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 - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %4, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { ptr, i32 } + %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 - %34 = extractvalue { ptr, i32 } %33, 0 - store ptr %34, ptr %4, align 8 - %35 = extractvalue { ptr, i32 } %33, 1 - store i32 %35, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load ptr, ptr %4, align 8 - %41 = load i32, ptr %5, align 4 - %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 - %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 - resume { ptr, i32 } %43 + %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: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %27, %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -368,342 +361,228 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits declare i32 @__gxx_personality_v0(...) -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) 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 #1 +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 #2 - -declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) +; 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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +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: 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 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.3) #10 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #10 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 - -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) - ret void + %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 -48: ; preds = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 +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 -53: ; preds = %41 - %54 = landingpad { ptr, i32 } +36: ; preds = %33 + %37 = landingpad { ptr, i32 } catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #11 + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 unreachable -56: ; preds = %40 - 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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #7 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 + %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: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 +; Function Attrs: nounwind +declare i64 @strlen(ptr noundef) #1 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { +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 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 } -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 +; Function Attrs: nounwind +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #1 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -; Function Attrs: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 -declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #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 #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 -declare ptr @__cxa_begin_catch(ptr) +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 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +10: ; preds = %7 + br label %11 -declare void @__cxa_rethrow() +11: ; preds = %10, %1 + ret void -declare void @__cxa_end_catch() +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 uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 void @_ZSt9terminatev() - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #7 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #7 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !9 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 -} - -; Function Attrs: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 = load i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 -} +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare void @_ZSt9terminatev() -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_optimized_naive_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { nounwind } attributes #10 = { noreturn } attributes #11 = { noreturn nounwind } @@ -715,8 +594,7 @@ attributes #11 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !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-llvm17/overlapping-subproblems-property.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/overlapping-subproblems-property.ll index b09ba879f..8304c04b9 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/overlapping-subproblems-property.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/overlapping-subproblems-property.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/overlapping-subproblems-property.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @lookup = dso_local global [100 x i32] zeroinitializer, align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [21 x i8] c"Fibonacci number is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_overlapping_subproblems_property.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z11_initializev() #4 { +define dso_local void @_Z11_initializev() #0 { %1 = alloca i32, align 4 store i32 0, ptr %1, align 4 br label %2 @@ -61,7 +44,7 @@ define dso_local void @_Z11_initializev() #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #5 { +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 @@ -110,7 +93,7 @@ define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #5 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -123,23 +106,14 @@ define dso_local noundef i32 @main() #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) #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 @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_overlapping_subproblems_property.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -149,6 +123,6 @@ attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/palindrome-partitioning.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/palindrome-partitioning.ll index 3f908e968..f0ac62e18 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/palindrome-partitioning.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/palindrome-partitioning.ll @@ -363,7 +363,7 @@ attributes #6 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/partition-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/partition-problem.ll index 20fc23278..bc3305fd5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/partition-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/partition-problem.ll @@ -311,7 +311,7 @@ attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/permutations-of-a-given-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/permutations-of-a-given-string.ll index 4e7966c40..b9d7243ff 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/permutations-of-a-given-string.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/permutations-of-a-given-string.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/permutations-of-a-given-string.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,62 +14,33 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_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 -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [4 x i8] c"ABC\00", align 1 -@.str.1 = private unnamed_addr constant [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_permutations_of_a_given_string.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -107,7 +79,7 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %27 = load i32, ptr %7, align 4 %28 = sext i32 %27 to i64 %29 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %28) - 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) %26, ptr noundef nonnull align 1 dereferenceable(1) %29) #3 + 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) %26, ptr noundef nonnull align 1 dereferenceable(1) %29) #9 call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %0) %30 = load i32, ptr %5, align 4 %31 = add nsw i32 %30, 1 @@ -116,14 +88,14 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa to label %33 unwind label %43 33: ; preds = %23 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 %34 = load i32, ptr %5, 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) %0, i64 noundef %35) %37 = load i32, ptr %7, align 4 %38 = sext i32 %37 to i64 %39 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(ptr noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %38) - 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) %36, ptr noundef nonnull align 1 dereferenceable(1) %39) #3 + 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) %36, ptr noundef nonnull align 1 dereferenceable(1) %39) #9 br label %40 40: ; preds = %33 @@ -139,7 +111,7 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa store ptr %45, ptr %9, align 8 %46 = extractvalue { ptr, i32 } %44, 1 store i32 %46, ptr %10, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #9 br label %49 47: ; preds = %19 @@ -163,7 +135,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr nou 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) #5 comdat { +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 @@ -189,141 +161,151 @@ declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #3 -; 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.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %8 unwind label %16 - -8: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %10 = trunc i64 %9 to i32 - store i32 %10, ptr %6, align 4 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %11 unwind label %20 - -11: ; preds = %8 - %12 = load i32, ptr %6, align 4 - %13 = sub nsw i32 %12, 1 - invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(ptr noundef %7, i32 noundef 0, i32 noundef %13) - to label %14 unwind label %24 - -14: ; preds = %11 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = load i32, ptr %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { ptr, i32 } + %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 - %18 = extractvalue { ptr, i32 } %17, 0 - store ptr %18, ptr %4, align 8 - %19 = extractvalue { ptr, i32 } %17, 1 - store i32 %19, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %29 - -20: ; preds = %8 - %21 = landingpad { ptr, i32 } + %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 - %22 = extractvalue { ptr, i32 } %21, 0 - store ptr %22, ptr %4, align 8 - %23 = extractvalue { ptr, i32 } %21, 1 - store i32 %23, ptr %5, align 4 - br label %28 - -24: ; preds = %11 - %25 = landingpad { ptr, i32 } + %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 - %26 = extractvalue { ptr, i32 } %25, 0 - store ptr %26, ptr %4, align 8 - %27 = extractvalue { ptr, i32 } %25, 1 - store i32 %27, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - br label %28 - -28: ; preds = %24, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %29 - -29: ; preds = %28, %16 - %30 = load ptr, ptr %4, align 8 - %31 = load i32, ptr %5, align 4 - %32 = insertvalue { ptr, i32 } poison, ptr %30, 0 - %33 = insertvalue { ptr, i32 } %32, i32 %31, 1 - resume { ptr, i32 } %33 -} + %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 -; Function Attrs: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +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 - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 + %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 -32: ; preds = %28 +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 @@ -332,339 +314,225 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits } ; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #3 -; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 +; 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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 - -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #7 -; 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 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void + %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_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 + %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 -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.1) #10 - unreachable +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 -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } +36: ; preds = %33 + %37 = landingpad { ptr, i32 } catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #10 - to label %56 unwind label %41 + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #11 + unreachable -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 +39: ; preds = %33 + br label %40 -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +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 = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #11 - unreachable - -56: ; preds = %40 - unreachable +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #5 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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) #2 +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 ptr @__cxa_begin_catch(ptr) - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 - -declare void @__cxa_rethrow() - -declare void @__cxa_end_catch() - -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #9 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #11 - unreachable -} - -declare void @_ZSt9terminatev() - declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #5 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #5 comdat { +; 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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !8 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 +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: nounwind -declare i64 @strlen(ptr noundef) #2 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 +; Function Attrs: noinline noreturn nounwind uwtable +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 } -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare ptr @__cxa_begin_catch(ptr) -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_permutations_of_a_given_string.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @_ZSt9terminatev() + +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { nounwind } attributes #10 = { noreturn } attributes #11 = { noreturn nounwind } @@ -676,7 +544,6 @@ attributes #11 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} -!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/program-for-nth-fibonacci-number.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/program-for-nth-fibonacci-number.ll index 1e35522d7..149aad21b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/program-for-nth-fibonacci-number.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/program-for-nth-fibonacci-number.ll @@ -91,6 +91,6 @@ attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/program-wish-womens-day.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/program-wish-womens-day.ll index cbab2617d..c4f342904 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/program-wish-womens-day.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/program-wish-womens-day.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/program-wish-womens-day.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,31 +13,13 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.2 = private unnamed_addr constant [18 x i8] c"HappY Women's DaY\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_program_wish_womens_day.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { +define dso_local noundef i32 @main() #0 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -262,36 +245,29 @@ define dso_local noundef i32 @main() #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %0) #5 comdat { +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) #3 + %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) #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 @_ZNSolsEPFRSoS_E(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) #2 -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 @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #2 ; Function Attrs: nounwind -declare double @sqrt(double noundef) #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_program_wish_womens_day.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare double @sqrt(double noundef) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -301,7 +277,7 @@ attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" " !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-for-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-for-linked-list.ll index 254a72df3..4fcc49447 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-for-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-for-linked-list.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/quicksort-for-linked-list.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -11,31 +12,13 @@ target triple = "x86_64-pc-linux-gnu" %"class.std::locale" = type { ptr } %class.Node = type { i32, ptr, ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 @.str.2 = private unnamed_addr constant [28 x i8] c"Linked List after sorting \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_quicksort_for_linked_list.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -55,7 +38,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef ptr @_Z8lastNodeP4Node(ptr noundef %0) #4 { +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 @@ -89,7 +72,7 @@ define dso_local noundef ptr @_Z8lastNodeP4Node(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef ptr @_Z9partitionP4NodeS0_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -186,7 +169,7 @@ define dso_local noundef ptr @_Z9partitionP4NodeS0_(ptr noundef %0, ptr noundef } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10_quickSortP4NodeS0_(ptr noundef %0, ptr noundef %1) #5 { +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 @@ -232,7 +215,7 @@ define dso_local void @_Z10_quickSortP4NodeS0_(ptr noundef %0, ptr noundef %1) # } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9quickSortP4Node(ptr noundef %0) #5 { +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 @@ -246,7 +229,7 @@ define dso_local void @_Z9quickSortP4Node(ptr noundef %0) #5 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(ptr noundef %0) #5 { +define dso_local void @_Z9printListP4Node(ptr noundef %0) #1 { %2 = alloca ptr, align 8 store ptr %0, ptr %2, align 8 br label %3 @@ -273,22 +256,22 @@ define dso_local void @_Z9printListP4Node(ptr noundef %0) #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) #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) #1 +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) #1 +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)) #1 +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) #5 { +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) #8 + %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 @@ -323,10 +306,10 @@ define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #6 +declare noundef nonnull ptr @_Znwm(i64 noundef) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca ptr, align 8 store i32 0, ptr %1, align 4 @@ -347,21 +330,12 @@ define dso_local noundef i32 @main() #7 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_quicksort_for_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -371,7 +345,7 @@ attributes #8 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-on-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-on-singly-linked-list.ll index 80d5717a8..9eb02ee5a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-on-singly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/quicksort-on-singly-linked-list.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/quicksort-on-singly-linked-list.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -11,38 +12,20 @@ target triple = "x86_64-pc-linux-gnu" %"class.std::locale" = type { ptr } %struct.Node = type { i32, ptr } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str.2 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 @.str.3 = private unnamed_addr constant [28 x i8] c"Linked List after sorting \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #4 { +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) #8 + %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 @@ -60,10 +43,10 @@ define dso_local void @_Z4pushPP4Nodei(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +declare noundef nonnull ptr @_Znwm(i64 noundef) #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printListP4Node(ptr noundef %0) #4 { +define dso_local void @_Z9printListP4Node(ptr noundef %0) #0 { %2 = alloca ptr, align 8 store ptr %0, ptr %2, align 8 br label %3 @@ -89,10 +72,10 @@ define dso_local void @_Z9printListP4Node(ptr noundef %0) #4 { ret void } -declare i32 @printf(ptr noundef, ...) #1 +declare i32 @printf(ptr noundef, ...) #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef ptr @_Z7getTailP4Node(ptr noundef %0) #6 { +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 @@ -126,7 +109,7 @@ define dso_local noundef ptr @_Z7getTailP4Node(ptr noundef %0) #6 { } ; 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) #6 { +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 @@ -242,7 +225,7 @@ define dso_local noundef ptr @_Z9partitionP4NodeS0_PS0_S1_(ptr noundef %0, ptr n } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -335,7 +318,7 @@ define dso_local noundef ptr @_Z14quickSortRecurP4NodeS0_(ptr noundef %0, ptr no } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9quickSortPP4Node(ptr noundef %0) #4 { +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 @@ -350,7 +333,7 @@ define dso_local void @_Z9quickSortPP4Node(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca ptr, align 8 store i32 0, ptr %1, align 4 @@ -370,23 +353,14 @@ define dso_local noundef i32 @main() #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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -396,7 +370,7 @@ attributes #8 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/rabin-karp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/rabin-karp-algorithm.ll index 952811579..fac1b4f8c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/rabin-karp-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/rabin-karp-algorithm.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/rabin-karp-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 @__const.main.txt = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 16 @__const.main.pat = private unnamed_addr constant [5 x i8] c"GEEK\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_rabin_karp_algorithm.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z6searchPcS_i(ptr noundef %0, ptr noundef %1, i32 noundef %2) #4 { +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 @@ -49,11 +32,11 @@ define dso_local void @_Z6searchPcS_i(ptr noundef %0, ptr noundef %1, i32 nounde 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) #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) #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 @@ -260,18 +243,18 @@ define dso_local void @_Z6searchPcS_i(ptr noundef %0, ptr noundef %1, i32 nounde } ; Function Attrs: nounwind willreturn memory(read) -declare i64 @strlen(ptr noundef) #5 +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) #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) #1 +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) #1 +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)) #1 +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() #6 { +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 @@ -288,23 +271,14 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_rabin_karp_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #8 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -314,7 +288,7 @@ attributes #8 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/rat-in-a-maze.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/rat-in-a-maze.ll index 5b001d74d..ff6132058 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/rat-in-a-maze.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/rat-in-a-maze.ll @@ -280,7 +280,7 @@ attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/reservoir-sampling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/reservoir-sampling.ll index 3347af8db..320520580 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/reservoir-sampling.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/reservoir-sampling.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/reservoir-sampling.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [42 x i8] c"Following are k randomly selected items \0A\00", align 1 @__const.main.stream = private unnamed_addr constant [12 x i32] [i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_reservoir_sampling.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z10printArrayPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -79,7 +62,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr nou 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) #4 { +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 @@ -124,9 +107,9 @@ define dso_local void @_Z12selectKItemsPiii(ptr noundef %0, i32 noundef %1, i32 br label %15, !llvm.loop !8 31: ; preds = %15 - %32 = call i64 @time(ptr noundef null) #3 + %32 = call i64 @time(ptr noundef null) #6 %33 = trunc i64 %32 to i32 - call void @srand(i32 noundef %33) #3 + call void @srand(i32 noundef %33) #6 br label %34 34: ; preds = %56, %31 @@ -136,7 +119,7 @@ define dso_local void @_Z12selectKItemsPiii(ptr noundef %0, i32 noundef %1, i32 br i1 %37, label %38, label %59 38: ; preds = %34 - %39 = call i32 @rand() #3 + %39 = call i32 @rand() #6 %40 = load i32, ptr %7, align 4 %41 = add nsw i32 %40, 1 %42 = srem i32 %39, %41 @@ -177,22 +160,22 @@ define dso_local void @_Z12selectKItemsPiii(ptr noundef %0, i32 noundef %1, i32 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #2 ; Function Attrs: nounwind -declare void @srand(i32 noundef) #2 +declare void @srand(i32 noundef) #3 ; Function Attrs: nounwind -declare i64 @time(ptr noundef) #2 +declare i64 @time(ptr noundef) #3 ; Function Attrs: nounwind -declare i32 @rand() #2 +declare i32 @rand() #3 ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #2 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #6 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [12 x i32], align 16 %3 = alloca i32, align 4 @@ -209,22 +192,15 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_reservoir_sampling.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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} @@ -234,7 +210,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/rotate-bits-of-an-integer.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/rotate-bits-of-an-integer.ll index 4dc62c198..f67e4c990 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/rotate-bits-of-an-integer.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/rotate-bits-of-an-integer.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/rotate-bits-of-an-integer.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -15,32 +16,14 @@ $_ZN3gfg10leftRotateEij = comdat any $_ZN3gfg11rightRotateEij = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [18 x i8] c"Left Rotation of \00", align 1 @.str.1 = private unnamed_addr constant [5 x i8] c" by \00", align 1 @.str.2 = private unnamed_addr constant [5 x i8] c" is \00", align 1 @.str.3 = private unnamed_addr constant [20 x i8] c"\0ARight Rotation of \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_rotate_bits_of_an_integer.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #4 { +define dso_local noundef i32 @main() #0 { %1 = alloca %class.gfg, align 1 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -77,7 +60,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZStlsISt11char_traitsIc 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) #5 comdat align 2 { +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 @@ -97,7 +80,7 @@ define linkonce_odr dso_local noundef i32 @_ZN3gfg10leftRotateEij(ptr noundef no } ; 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) #5 comdat align 2 { +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 @@ -118,18 +101,9 @@ define linkonce_odr dso_local noundef i32 @_ZN3gfg11rightRotateEij(ptr noundef n declare i32 @getchar() #1 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_rotate_bits_of_an_integer.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -139,4 +113,4 @@ attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" " !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/shortest-common-supersequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/shortest-common-supersequence.ll index c11b3bb3f..1d9b1a81a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/shortest-common-supersequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/shortest-common-supersequence.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/shortest-common-supersequence.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,31 +13,13 @@ target triple = "x86_64-pc-linux-gnu" $_ZSt3minIiERKT_S2_S2_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.X = private unnamed_addr constant [7 x i8] c"AGGTAB\00", align 1 @__const.main.Y = private unnamed_addr constant [8 x i8] c"GXTXAYB\00", align 1 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [41 x i8] c"Length of the shortest supersequence is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_shortest_common_supersequence.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z8superSeqPcS_ii(ptr noundef %0, ptr noundef %1, i32 noundef %2, i32 noundef %3) #4 { +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 @@ -224,10 +207,10 @@ define dso_local noundef i32 @_Z8superSeqPcS_ii(ptr noundef %0, ptr noundef %1, } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 comdat { +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 @@ -256,10 +239,10 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +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 @@ -270,10 +253,10 @@ define dso_local noundef i32 @main() #7 { %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) #10 + %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) #10 + %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) @@ -281,32 +264,23 @@ define dso_local noundef i32 @main() #7 { } ; 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 +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) #1 +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) #1 +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) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_shortest_common_supersequence.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare i64 @strlen(ptr noundef) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { nounwind willreturn memory(read) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nounwind willreturn memory(read) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -316,7 +290,7 @@ attributes #10 = { nounwind willreturn memory(read) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/sieve-of-eratosthenes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/sieve-of-eratosthenes.ll index f5380ea3d..d488132cb 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/sieve-of-eratosthenes.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/sieve-of-eratosthenes.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/sieve-of-eratosthenes.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [41 x i8] c"Following are the prime numbers smaller \00", align 1 @.str.2 = private unnamed_addr constant [19 x i8] c" than or equal to \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #4 { +define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #0 { %2 = alloca i32, align 4 %3 = alloca ptr, align 8 %4 = alloca i64, align 8 @@ -150,20 +133,20 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #4 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 +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) #1 +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) #1 +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) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -178,24 +161,15 @@ define dso_local noundef i32 @main() #7 { ret i32 0 } -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 @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8), ptr noundef) #3 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(ptr noundef nonnull align 8 dereferenceable(8)) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -205,7 +179,7 @@ attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/snake-ladder.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/snake-ladder.ll index 6c419a452..7bfbadbd7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/snake-ladder.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/snake-ladder.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/snake-ladder.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -54,31 +55,19 @@ $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_ = comdat any -$_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m = comdat any +$_ZNSt15__new_allocatorI10queueEntryE10deallocateEPS0_m = comdat any $_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m = comdat any - -$_ZNSaIP10queueEntryED2Ev = comdat any - $_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIP10queueEntryEC2IS_EERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev = comdat any +$_ZNSt15__new_allocatorIP10queueEntryE10deallocateEPS1_m = comdat any -$_ZNSaI10queueEntryED2Ev = comdat any +$_ZNSt15__new_allocatorIP10queueEntryED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev = comdat any +$_ZNSt15__new_allocatorI10queueEntryED2Ev = comdat any $_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev = comdat any @@ -88,12 +77,8 @@ $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm = comdat any -$_ZNSaI10queueEntryEC2Ev = comdat any - $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev = comdat any - $_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev = comdat any $_ZSt3maxImERKT_S2_S2_ = comdat any @@ -104,30 +89,18 @@ $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_ = comdat any $_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_ = comdat any -$_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorIP10queueEntryE8allocateEmPKv = comdat any $_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv = comdat any -$_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorI10queueEntryE8allocateEmPKv = comdat any $_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv = comdat any $_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_ = comdat any -$_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_ = comdat any - $_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv = comdat any $_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv = comdat any @@ -138,12 +111,8 @@ $_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any $_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_ = comdat any -$_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv = comdat any - $_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any @@ -162,7 +131,9 @@ $_ZSt12__niter_baseIPP10queueEntryET_S3_ = comdat any $_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_ = comdat any +$_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 @@ -170,7 +141,7 @@ $_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_ = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryS4_EEPT0_PT_S8_S6_ = comdat any $_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv = comdat any @@ -182,36 +153,14 @@ $_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv = comdat any $_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv = comdat any -$_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_ = comdat any - $_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [29 x i8] c"Min Dice throws required is \00", align 1 @.str.1 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_snake_ladder.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 noundef %1) #4 personality ptr @__gxx_personality_v0 { +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 @@ -228,7 +177,7 @@ define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 nounde 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) #15 + %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 @@ -298,7 +247,7 @@ define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 nounde 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) #3 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 br label %109 52: ; preds = %40 @@ -394,7 +343,7 @@ define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 nounde 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) #3 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %7) #14 ret i32 %108 109: ; preds = %48 @@ -406,10 +355,10 @@ define dso_local noundef i32 @_Z16getMinDiceThrowsPii(ptr noundef %0, i32 nounde } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #0 comdat align 2 { +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 @@ -420,10 +369,10 @@ define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EE } ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: write) -declare void @llvm.memset.p0.i64(ptr nocapture writeonly, i8, i64, i1 immarg) #6 +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) #4 comdat align 2 { +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 @@ -438,50 +387,50 @@ define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EE 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) #7 comdat align 2 { +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) #3 + %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) #7 comdat align 2 { +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) #3 + %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) #8 +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) #7 comdat align 2 { +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) #3 + 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 #9 comdat align 2 { +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) #3 + 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() #10 { +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca ptr, align 8 @@ -546,42 +495,42 @@ define dso_local noundef i32 @main() #10 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #11 +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) #1 +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) #1 +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) #11 +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 #9 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %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) #3 + 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) #3 + 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) #16 + 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) #7 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -595,7 +544,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy } ; 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) #7 comdat align 2 { +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 @@ -603,12 +552,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(ptr %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) #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 void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #7 comdat align 2 { +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 @@ -616,12 +565,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(ptr n %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) #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) #7 comdat align 2 { +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 @@ -630,9 +579,9 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #16 +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 } @@ -641,7 +590,7 @@ 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 #9 comdat align 2 { +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 @@ -661,24 +610,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev( %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) #3 + 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) #3 + 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) #3 + 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 #9 comdat align 2 { +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 @@ -708,7 +657,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E } ; 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) #7 comdat align 2 { +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 @@ -730,7 +679,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_ 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) #3 + 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 @@ -743,87 +692,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_ ret void } -; Function Attrs: mustprogress 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 i64, align 8 - %7 = alloca %"class.std::allocator.0", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 + %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 -11: ; preds = %3 - call void @_ZNSaIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 +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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #16 + %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 #9 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #16 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #15 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #7 comdat { +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 @@ -844,7 +802,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { +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 @@ -853,51 +811,34 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10 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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #13 +declare void @_ZdlPv(ptr noundef) #11 -; Function Attrs: mustprogress 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) #7 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_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 + %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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) #7 comdat align 2 { +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 @@ -905,27 +846,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #9 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 - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 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 @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { +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 @@ -934,12 +856,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE1 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) #3 + call void @_ZdlPv(ptr noundef %8) #16 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { +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 @@ -947,16 +869,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { +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 @@ -964,7 +877,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2 } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { +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 @@ -973,14 +886,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(ptr nou } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 + 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 @@ -994,7 +907,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev( 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) #3 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #14 br label %12 12: ; preds = %8 @@ -1006,17 +919,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaI10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1084,14 +1002,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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 @@ -1118,12 +1036,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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) #3 + 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) #3 + 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 @@ -1157,7 +1075,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %99 = landingpad { ptr, i32 } catch ptr null %100 = extractvalue { ptr, i32 } %99, 0 - call void @__clang_call_terminate(ptr %100) #16 + call void @__clang_call_terminate(ptr %100) #15 unreachable 101: ; preds = %49 @@ -1165,16 +1083,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaI10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; 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 #9 comdat align 2 { +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 @@ -1183,22 +1092,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_De %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) #3 + 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) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 + 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 #9 comdat align 2 { +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 @@ -1214,7 +1115,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E } ; 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) #7 comdat { +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 @@ -1242,45 +1143,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.0", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.0") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 + %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 -11: ; preds = %2 - call void @_ZNSaIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 +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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIP10queueEntryED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 + %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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1327,10 +1243,10 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 + 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 @@ -1364,7 +1280,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ %45 = landingpad { ptr, i32 } catch ptr null %46 = extractvalue { ptr, i32 } %45, 0 - call void @__clang_call_terminate(ptr %46) #16 + call void @__clang_call_terminate(ptr %46) #15 unreachable 47: ; preds = %27 @@ -1376,7 +1292,7 @@ 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) #7 comdat align 2 { +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 @@ -1391,7 +1307,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E 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() #3 + %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 @@ -1399,266 +1315,242 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #17 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #17 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 +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() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +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) #4 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 + %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 @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #17 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #17 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 +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 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #7 comdat align 2 { +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) #4 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds %struct.queueEntry, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(8) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds %struct.queueEntry, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 - -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(8) %29) - br label %30 - -30: ; preds = %28, %16 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(8) %2) #7 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 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(8) %9) #3 + %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) #4 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(8) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(8) %2) #7 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 - call void @llvm.memcpy.p0.p0.i64(ptr align 4 %8, ptr align 4 %9, i64 8, i1 false) + %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) #7 comdat align 2 { +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 @@ -1666,25 +1558,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4siz %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) #3 + %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) #7 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #14 +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) #4 comdat align 2 { +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 @@ -1720,12 +1612,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve } ; 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) #7 comdat { +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() #3 + %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 @@ -1740,71 +1632,69 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorI10queueEn %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 8 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 8 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { ptr, i32 } + %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 - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #16 + %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 i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #7 comdat { +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 @@ -1832,17 +1722,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %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 i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - ; 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) #4 comdat align 2 { +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 @@ -2001,7 +1882,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) #3 + 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 @@ -2016,19 +1897,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) #3 + 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) #3 + 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) #4 comdat { +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 @@ -2045,7 +1926,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S } ; 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) #4 comdat { +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 @@ -2062,7 +1943,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPP10queueEntryS2_ } ; 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) #4 comdat { +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 @@ -2070,18 +1951,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPP10queueEntr 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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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 @@ -2089,7 +1970,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPP10queueEntryET_S } ; 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) #7 comdat { +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 @@ -2099,7 +1980,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPP10queueEntryET_R } ; 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) #4 comdat { +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 @@ -2114,7 +1995,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPP10queueEnt } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S3_(ptr noundef %0) #7 comdat { +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 @@ -2122,7 +2003,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPP10queueEntryET_S } ; 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) #4 comdat { +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 @@ -2132,12 +2013,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPP10queueEnt %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_mIP10queueEntryEEPT_PKS5_S8_S6_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #7 comdat align 2 { +; 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 @@ -2153,7 +2034,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2162,20 +2043,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #8 +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) #4 comdat { +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 @@ -2183,18 +2091,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPP10 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -2209,7 +2117,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPP1 } ; 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) #4 comdat { +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 @@ -2219,12 +2127,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPP1 %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_bIP10queueEntryEEPT_PKS5_S8_S6_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIP10queueEntryEEPT_PKS5_S8_S6_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #7 comdat align 2 { +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 @@ -2240,7 +2148,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2252,18 +2160,33 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 +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) #7 comdat align 2 { +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 @@ -2271,12 +2194,12 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0 %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) #3 + %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) #7 comdat { +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 @@ -2292,18 +2215,18 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10 } ; 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) #7 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 4 dereferenceable(8) ptr @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #7 comdat align 2 { +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 @@ -2313,138 +2236,130 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 2 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 2 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = getelementptr inbounds %struct.queueEntry, ptr %11, i64 -1 - %13 = icmp ne ptr %7, %12 - br i1 %13, label %14, label %25 - -14: ; preds = %1 - %15 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %16 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %16, i32 0, i32 2 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %17, i32 0, i32 0 - %19 = load ptr, ptr %18, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %24 = getelementptr inbounds %struct.queueEntry, ptr %23, i32 1 - store ptr %24, ptr %22, align 8 - br label %27 + 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 -25: ; preds = %1 - invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %26 unwind label %28 +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 -26: ; preds = %25 - br label %27 +34: ; preds = %33 + br label %35 -27: ; preds = %26, %14 +35: ; preds = %34, %18 ret void -28: ; preds = %25 - %29 = landingpad { ptr, i32 } +36: ; preds = %33 + %37 = landingpad { ptr, i32 } catch ptr null - %30 = extractvalue { ptr, i32 } %29, 0 - call void @__clang_call_terminate(ptr %30) #16 + %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 @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #7 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #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 nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %5 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %5, i32 0, i32 2 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %6, i32 0, i32 0 - %8 = load ptr, ptr %7, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(ptr noundef nonnull align 1 dereferenceable(1) %4, ptr noundef %8) #3 - %9 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 1 + %11 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %10, i32 0, i32 0 %12 = load ptr, ptr %11, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %12) #3 - %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 2 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 3 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds ptr, ptr %18, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef %19) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 1 - %23 = load ptr, ptr %22, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %24, i32 0, i32 2 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %25, i32 0, i32 0 - store ptr %23, ptr %26, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_snake_ladder.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { nocallback nofree nosync nounwind willreturn } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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 } -attributes #18 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -2454,7 +2369,7 @@ attributes #18 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-array-wave-form-2.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-array-wave-form-2.ll index cdf4a9daa..f30f131e4 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-array-wave-form-2.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-array-wave-form-2.ll @@ -3,37 +3,20 @@ source_filename = "PE-benchmarks/sort-array-wave-form-2.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [7 x i32] [i32 10, i32 90, i32 49, i32 2, i32 1, i32 5, i32 23], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_sort_array_wave_form_2.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { +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 @@ -53,7 +36,7 @@ define dso_local void @_Z4swapPiS_(ptr noundef %0, ptr noundef %1) #4 { } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z10sortInWavePii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -150,7 +133,7 @@ define dso_local void @_Z10sortInWavePii(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #5 { +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -190,25 +173,16 @@ define dso_local noundef i32 @main() #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) #6 - -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 @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 @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), 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) #3 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sort_array_wave_form_2.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEi(ptr noundef nonnull align 8 dereferenceable(8), i32 noundef) #3 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -218,7 +192,7 @@ attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-n-numbers-range-0-n2-1-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-n-numbers-range-0-n2-1-linear-time.ll index 54aee9666..f248624f7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-n-numbers-range-0-n2-1-linear-time.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/sort-n-numbers-range-0-n2-1-linear-time.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @__const.main.arr = private unnamed_addr constant [7 x i32] [i32 40, i32 12, i32 45, i32 32, i32 33, i32 1, i32 22], align 16 @.str.1 = private unnamed_addr constant [17 x i8] c"Given array is n\00", align 1 @.str.2 = private unnamed_addr constant [19 x i8] c"nSorted array is n\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i32 @_Z9countSortPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -231,13 +214,13 @@ define dso_local noundef i32 @_Z9countSortPiii(ptr noundef %0, i32 noundef %1, i } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #6 +declare void @llvm.trap() #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local void @_Z4sortPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -253,7 +236,7 @@ define dso_local void @_Z4sortPii(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #7 { +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 @@ -288,12 +271,12 @@ define dso_local void @_Z8printArrPii(ptr noundef %0, i32 noundef %1) #7 { 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 @_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) #1 +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() #8 { +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -315,24 +298,15 @@ define dso_local noundef i32 @main() #8 { } ; 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) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #6 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { cold noreturn nounwind } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -342,7 +316,7 @@ attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll index 3856196a1..2d23fc139 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [22 x i8] c" The closest pair is \00", align 1 @.str.1 = private unnamed_addr constant [6 x i8] c" and \00", align 1 @__const.main.arr = private unnamed_addr constant [6 x i32] [i32 10, i32 22, i32 28, i32 29, i32 30, i32 40], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z12printClosestPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -73,7 +56,7 @@ define dso_local void @_Z12printClosestPiii(ptr noundef %0, i32 noundef %1, i32 %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) #8 + %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 @@ -96,7 +79,7 @@ define dso_local void @_Z12printClosestPiii(ptr noundef %0, i32 noundef %1, i32 %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) #8 + %51 = call i32 @abs(i32 noundef %50) #5 store i32 %51, ptr %11, align 4 br label %52 @@ -150,14 +133,14 @@ define dso_local void @_Z12printClosestPiii(ptr noundef %0, i32 noundef %1, i32 } ; Function Attrs: nounwind willreturn memory(none) -declare i32 @abs(i32 noundef) #5 +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) #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) #1 +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() #6 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -174,23 +157,14 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #8 = { nounwind willreturn memory(none) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -200,6 +174,6 @@ attributes #8 = { nounwind willreturn memory(none) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/strongly-connected-components.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/strongly-connected-components.ll index 2b484bb50..b95e0ca5f 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/strongly-connected-components.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/strongly-connected-components.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/strongly-connected-components.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -59,12 +60,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt5dequeIiSaIiEED2Ev = comdat any @@ -91,31 +88,19 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any @@ -137,32 +122,18 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -179,14 +150,8 @@ $_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -209,7 +174,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -217,17 +184,11 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -237,12 +198,8 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any @@ -259,37 +216,15 @@ $_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any $_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [61 x i8] c"Following are strongly connected components in given graph \0A\00", align 1 @.str.2 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_strongly_connected_components.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -310,7 +245,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -322,7 +257,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -334,25 +269,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -371,13 +306,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + 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) #3 + %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) @@ -389,15 +324,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer %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) #3 + %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) #3 + %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) #3 + %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 @@ -406,7 +341,7 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) @@ -416,19 +351,19 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(ptr noundef nonnull align 8 derefer 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) #3 + %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) #1 +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) #1 +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 #6 comdat align 2 { +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 @@ -438,7 +373,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -447,17 +382,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -473,21 +408,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -508,7 +443,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -522,7 +457,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; Function Attrs: mustprogress noinline uwtable -define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -545,13 +480,13 @@ define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull ali br i1 %15, label %16, label %46 16: ; preds = %11 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %5) #3 + 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) #3 + %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) @@ -563,16 +498,16 @@ define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull ali %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) #3 + %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) #3 + %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) #3 + %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 @@ -580,7 +515,7 @@ define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull ali 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) #3 + %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 @@ -598,14 +533,14 @@ define dso_local { i32, ptr } @_ZN5Graph12getTransposeEv(ptr noundef nonnull ali } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -616,7 +551,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { +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 @@ -634,7 +569,7 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 align 2 { +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 @@ -652,13 +587,13 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr n %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) #3 + 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) #3 + %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) @@ -670,15 +605,15 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr n %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) #3 + %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) #3 + %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) #3 + %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 @@ -687,7 +622,7 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr n 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) #3 + %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 @@ -698,7 +633,7 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr n 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) #3 + %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 @@ -708,7 +643,7 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(ptr n } ; 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) #7 comdat align 2 { +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 @@ -721,7 +656,7 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph9printSCCsEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -738,7 +673,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(ptr noundef nonnull align 8 derefer %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) #15 + %16 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %15) #14 to label %17 unwind label %31 17: ; preds = %1 @@ -774,7 +709,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(ptr noundef nonnull align 8 derefer 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) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 br label %105 35: ; preds = %18 @@ -902,7 +837,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(ptr noundef nonnull align 8 derefer br label %79, !llvm.loop !14 104: ; preds = %81 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 ret void 105: ; preds = %31 @@ -927,51 +862,51 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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) #3 + 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) #1 +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)) #1 +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 #6 comdat align 2 { +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) #3 + 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() #10 { +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 @@ -987,54 +922,42 @@ define dso_local noundef i32 @main() #10 { } ; 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 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -1048,20 +971,20 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 + 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 ret void 8: ; preds = %1 @@ -1073,7 +996,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull } ; 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) #8 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -1087,7 +1010,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De } ; 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) #8 comdat align 2 { +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 @@ -1095,12 +1018,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret %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) #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 void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #8 comdat align 2 { +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 @@ -1108,12 +1031,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #8 comdat align 2 { +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 @@ -1122,8 +1045,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1133,7 +1056,7 @@ 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 #6 comdat align 2 { +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 @@ -1153,24 +1076,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef n %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) #3 + 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) #3 + 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) #3 + 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 #6 comdat align 2 { +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 @@ -1200,7 +1123,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; 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) #8 comdat align 2 { +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 @@ -1222,7 +1145,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -1235,87 +1158,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes ret void } -; Function Attrs: mustprogress 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 + %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 -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 +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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #16 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #16 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #16 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { +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 @@ -1336,7 +1268,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1345,51 +1277,34 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #12 +declare void @_ZdlPv(ptr noundef) #10 -; Function Attrs: mustprogress 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) #8 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_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 + %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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) #8 comdat align 2 { +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 @@ -1397,27 +1312,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1426,29 +1322,20 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate 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) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(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 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1456,7 +1343,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noun } ; 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 { +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 @@ -1469,26 +1356,26 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L } ; 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1497,7 +1384,7 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M } ; 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) #7 comdat align 2 { +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 @@ -1513,44 +1400,63 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 { +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 %"struct.std::__allocated_ptr", align 8 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - %9 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %8) - store ptr %9, ptr %5, align 8 - %10 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %8) #3 - store ptr %10, ptr %6, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %11, ptr noundef %12) #3 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = call noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %14) - %16 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %15, ptr noundef nonnull align 4 dereferenceable(4) %16) #3 - %17 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %18 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %18 + %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) #2 +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) #8 comdat align 2 { +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 @@ -1567,17 +1473,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -1586,7 +1498,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -1604,22 +1516,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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 @@ -1631,273 +1528,240 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #16 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable + %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 = %11 - call void @_ZSt17__throw_bad_allocv() #17 +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { +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 ptr, align 8 + %6 = 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 + store i64 %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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { +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 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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 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) #3 - 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) #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 %"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 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 + %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 -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 +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 -30: ; preds = %28, %16 - ret void -} +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 +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) #7 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.2) #17 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + %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) #8 comdat align 2 { +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 @@ -1905,25 +1769,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #8 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #13 +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) #7 comdat align 2 { +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 @@ -1959,18 +1823,24 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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) #7 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 + %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) #8 comdat align 2 { +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 @@ -1985,7 +1855,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -1993,12 +1863,12 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; 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) #8 comdat { +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() #3 + %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 @@ -2013,77 +1883,75 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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() #8 comdat align 2 { +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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 + %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 -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 -10: ; preds = %1 - %11 = landingpad { ptr, i32 } +15: ; preds = %1 + %16 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #16 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #8 comdat { +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 @@ -2111,25 +1979,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - ; 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) #7 comdat align 2 { +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 @@ -2288,7 +2139,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -2303,19 +2154,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #7 comdat { +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 @@ -2332,7 +2183,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -2349,7 +2200,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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) #8 comdat { +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 @@ -2377,45 +2228,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 + %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 -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 +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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 + %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 -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 +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) #7 comdat { +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 @@ -2423,18 +2289,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #8 comdat { +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 @@ -2442,7 +2308,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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) #8 comdat { +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 @@ -2452,7 +2318,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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) #7 comdat { +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 @@ -2467,7 +2333,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #8 comdat { +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 @@ -2475,7 +2341,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -2485,12 +2351,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +; 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 @@ -2506,7 +2372,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2515,20 +2381,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #9 +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) #7 comdat { +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 @@ -2536,18 +2429,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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 @@ -2562,7 +2455,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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) #7 comdat { +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 @@ -2572,12 +2465,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +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 @@ -2593,7 +2486,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2605,118 +2498,105 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 -} +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 +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 @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 +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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #17 +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 +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) #14 +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 { @@ -2735,7 +2615,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + 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 @@ -2749,7 +2629,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 br label %12 12: ; preds = %8 @@ -2761,17 +2641,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -2839,21 +2724,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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() #17 + invoke void @__cxa_rethrow() #18 to label %101 unwind label %62 62: ; preds = %49 @@ -2873,12 +2758,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -2920,16 +2805,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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 #6 comdat align 2 { +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 @@ -2938,22 +2814,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #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 @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { +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 @@ -2969,7 +2837,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3016,11 +2884,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 - invoke void @__cxa_rethrow() #17 + 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 @@ -3065,7 +2933,7 @@ 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) #8 comdat align 2 { +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 @@ -3073,12 +2941,12 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(p %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) #3 + %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) #8 comdat { +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 @@ -3094,19 +2962,19 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiR } ; 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) #8 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 - %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #8 comdat align 2 { +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 @@ -3121,7 +2989,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ %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) #3 + 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 @@ -3137,7 +3005,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ } ; 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) #8 comdat align 2 { +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 @@ -3147,138 +3015,131 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = icmp ne ptr %7, %11 - br i1 %12, label %13, label %24 + %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 -13: ; preds = %1 - %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 0 - %17 = load ptr, ptr %16, align 8 - %18 = getelementptr inbounds i32, ptr %17, i32 -1 - store ptr %18, ptr %16, align 8 - %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - %23 = load ptr, ptr %22, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %23) #3 - br label %26 +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 -24: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %25 unwind label %27 +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 -25: ; preds = %24 - br label %26 +33: ; preds = %32 + br label %34 -26: ; preds = %25, %13 +34: ; preds = %33, %17 ret void -27: ; preds = %24 - %28 = landingpad { ptr, i32 } +35: ; preds = %32 + %36 = landingpad { ptr, i32 } catch ptr null - %29 = extractvalue { ptr, i32 } %28, 0 - call void @__clang_call_terminate(ptr %29) #16 + %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 @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #8 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #8 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 %7 = load ptr, ptr %6, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %7) #3 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 3 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds ptr, ptr %13, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %14) #3 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 2 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds i32, ptr %18, i64 -1 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - store ptr %19, ptr %22, 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) %3) #3 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %27 = load ptr, ptr %26, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %23, ptr noundef %27) #3 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_strongly_connected_components.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { nocallback nofree nounwind willreturn memory(argmem: write) } -attributes #15 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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 = { noreturn } -attributes #18 = { allocsize(0) } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -3288,7 +3149,7 @@ attributes #18 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum-problem.ll index 9eee99548..829470698 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum-problem.ll @@ -281,7 +281,7 @@ attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum.ll index 818fed386..35b1090b2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/subset-sum.ll @@ -356,7 +356,7 @@ attributes #8 = { nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/sudoku.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/sudoku.ll index 4802202f6..d08467359 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/sudoku.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/sudoku.ll @@ -3,38 +3,21 @@ source_filename = "PE-benchmarks/sudoku.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @__const.main.grid = private unnamed_addr constant [9 x [9 x i32]] [[9 x i32] [i32 3, i32 0, i32 6, i32 5, i32 0, i32 8, i32 4, i32 0, i32 0], [9 x i32] [i32 5, i32 2, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0], [9 x i32] [i32 0, i32 8, i32 7, i32 0, i32 0, i32 0, i32 0, i32 3, i32 1], [9 x i32] [i32 0, i32 0, i32 3, i32 0, i32 1, i32 0, i32 0, i32 8, i32 0], [9 x i32] [i32 9, i32 0, i32 0, i32 8, i32 6, i32 3, i32 0, i32 0, i32 5], [9 x i32] [i32 0, i32 5, i32 0, i32 0, i32 9, i32 0, i32 6, i32 0, i32 0], [9 x i32] [i32 1, i32 3, i32 0, i32 0, i32 0, i32 0, i32 2, i32 5, i32 0], [9 x i32] [i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 7, i32 4], [9 x i32] [i32 0, i32 0, i32 5, i32 2, i32 0, i32 6, i32 3, i32 0, i32 0]], align 16 @.str.1 = private unnamed_addr constant [19 x i8] c"No solution exists\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_sudoku.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef zeroext i1 @_Z11SolveSudokuPA9_i(ptr noundef %0) #4 { +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 @@ -114,7 +97,7 @@ define dso_local noundef zeroext i1 @_Z11SolveSudokuPA9_i(ptr noundef %0) #4 { } ; 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) #5 { +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 @@ -191,7 +174,7 @@ define dso_local noundef zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_(ptr no } ; 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) #5 { +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 @@ -245,7 +228,7 @@ define dso_local noundef zeroext i1 @_Z6isSafePA9_iiii(ptr noundef %0, i32 nound } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z9UsedInRowPA9_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #5 { +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 @@ -298,7 +281,7 @@ define dso_local noundef zeroext i1 @_Z9UsedInRowPA9_iii(ptr noundef %0, i32 nou } ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z9UsedInColPA9_iii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #5 { +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 @@ -351,7 +334,7 @@ define dso_local noundef zeroext i1 @_Z9UsedInColPA9_iii(ptr noundef %0, i32 nou } ; 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) #5 { +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 @@ -429,7 +412,7 @@ define dso_local noundef zeroext i1 @_Z9UsedInBoxPA9_iiii(ptr noundef %0, i32 no } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z9printGridPA9_i(ptr noundef %0) #4 { +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 @@ -484,16 +467,16 @@ define dso_local void @_Z9printGridPA9_i(ptr noundef %0) #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) #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) #1 +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) #1 +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)) #1 +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() #6 { +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 @@ -518,22 +501,13 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_sudoku.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -543,7 +517,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/tarjan-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/tarjan-algorithm.ll index 84ca11a56..add5437cf 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/tarjan-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/tarjan-algorithm.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/tarjan-algorithm.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -57,12 +58,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -77,40 +74,26 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -131,14 +114,8 @@ $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -163,7 +140,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -171,31 +150,17 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any @@ -211,19 +176,13 @@ $_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any $_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any $_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -235,24 +194,16 @@ $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any $_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any -$_ZNSaIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time = internal global i32 0, align 4 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @@ -263,25 +214,9 @@ $_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any @.str.5 = private unnamed_addr constant [24 x i8] c"\0ASCCs in fourth graph \0A\00", align 1 @.str.6 = private unnamed_addr constant [23 x i8] c"\0ASCCs in fifth graph \0A\00", align 1 @.str.7 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_tarjan_algorithm.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -302,7 +237,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -314,7 +249,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -326,25 +261,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -362,14 +297,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -380,7 +315,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -419,13 +354,13 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(pt %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) #3 + 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) #3 + %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) @@ -437,14 +372,14 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(pt %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) #3 + %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) #3 + %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) #3 + %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 @@ -515,7 +450,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(pt 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) #3 + %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 @@ -583,7 +518,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(pt } ; 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) #7 comdat align 2 { +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 @@ -596,7 +531,7 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr } ; 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 { +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 @@ -606,7 +541,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -615,17 +550,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -641,21 +576,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -666,7 +601,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat { +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 @@ -695,7 +630,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -709,31 +644,31 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #8 comdat align 2 { +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) #3 + %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) #1 +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) #1 +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) #8 comdat align 2 { +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) #3 + 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) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -752,7 +687,7 @@ define dso_local void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceab %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) #15 + %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 @@ -761,14 +696,14 @@ define dso_local void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceab %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) #15 + %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) #15 + %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) #15 + %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 @@ -868,7 +803,7 @@ define dso_local void @_ZN5Graph3SCCEv(ptr noundef nonnull align 8 dereferenceab } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +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 { @@ -884,10 +819,10 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr declare i32 @__gxx_personality_v0(...) ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #10 +declare void @_ZdlPv(ptr noundef) #8 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #11 { +define dso_local noundef i32 @main() #9 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -953,54 +888,42 @@ define dso_local noundef i32 @main() #11 { } ; 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 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -1014,7 +937,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -1030,66 +953,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 + %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 -22: ; preds = %2 - %23 = landingpad { ptr, i32 } +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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -1106,17 +1048,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -1125,7 +1073,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -1143,32 +1091,17 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1180,124 +1113,99 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #17 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #12 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1305,24 +1213,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -1332,7 +1225,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1341,138 +1234,145 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + 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) #7 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 - -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 - -30: ; preds = %28, %16 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 + %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) #7 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + %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) #8 comdat align 2 { +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 @@ -1480,25 +1380,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #8 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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 +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) #7 comdat align 2 { +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 @@ -1534,19 +1434,25 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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) #7 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 -} - -; 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) #8 comdat align 2 { - %3 = 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 @@ -1560,7 +1466,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -1568,12 +1474,12 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; 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) #8 comdat { +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() #3 + %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 @@ -1588,37 +1494,36 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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() #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -1634,7 +1539,7 @@ define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buf } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { +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 @@ -1655,32 +1560,40 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 + %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 -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 -10: ; preds = %1 - %11 = landingpad { ptr, i32 } +15: ; preds = %1 + %16 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #17 + %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) #8 comdat align 2 { +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 @@ -1689,16 +1602,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #8 comdat { +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 @@ -1726,25 +1630,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - ; 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) #7 comdat align 2 { +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 @@ -1903,7 +1790,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -1918,19 +1805,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #7 comdat { +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 @@ -1947,7 +1834,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -1964,7 +1851,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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) #8 comdat { +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 @@ -1992,73 +1879,100 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 - %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 + %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 -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 +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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 + %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 -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 +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 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 + %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 -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 +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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #17 + %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) #7 comdat { +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 @@ -2066,18 +1980,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #8 comdat { +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 @@ -2085,7 +1999,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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) #8 comdat { +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 @@ -2095,7 +2009,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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) #7 comdat { +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 @@ -2110,7 +2024,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #8 comdat { +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 @@ -2118,7 +2032,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -2128,12 +2042,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +; 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 @@ -2149,7 +2063,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2158,20 +2072,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #9 +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) #7 comdat { +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 @@ -2179,18 +2120,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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 @@ -2205,7 +2146,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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) #7 comdat { +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 @@ -2215,12 +2156,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +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 @@ -2236,7 +2177,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2248,120 +2189,96 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 -} +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 -; Function Attrs: mustprogress 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) #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 %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} +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 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} +31: ; preds = %27, %24 + br label %32 -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void +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 @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 + %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 @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 +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 @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #7 comdat align 2 { +; 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 @@ -2370,73 +2287,48 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE store i64 %2, ptr %6, align 8 %7 = load ptr, ptr %4, align 8 %8 = load ptr, ptr %5, align 8 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) + call void @_ZdlPv(ptr noundef %8) #16 ret void } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +; 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 - 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 + %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 - call void @_ZdlPv(ptr noundef %8) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 4611686018427387903 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #19 - ret ptr %19 +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 #6 comdat align 2 { +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 @@ -2449,19 +2341,19 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L } ; 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) #8 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 - %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #8 comdat align 2 { +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 @@ -2469,12 +2361,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #8 comdat align 2 { +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 @@ -2489,7 +2381,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ %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) #3 + 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 @@ -2505,7 +2397,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ } ; 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) #8 comdat align 2 { +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 @@ -2515,7 +2407,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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 #6 comdat align 2 { +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 @@ -2545,68 +2437,67 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = icmp ne ptr %7, %11 - br i1 %12, label %13, label %24 + %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 -13: ; preds = %1 - %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 0 - %17 = load ptr, ptr %16, align 8 - %18 = getelementptr inbounds i32, ptr %17, i32 -1 - store ptr %18, ptr %16, align 8 - %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - %23 = load ptr, ptr %22, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %23) #3 - br label %26 +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 -24: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %25 unwind label %27 +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 -25: ; preds = %24 - br label %26 +33: ; preds = %32 + br label %34 -26: ; preds = %25, %13 +34: ; preds = %33, %17 ret void -27: ; preds = %24 - %28 = landingpad { ptr, i32 } +35: ; preds = %32 + %36 = landingpad { ptr, i32 } catch ptr null - %29 = extractvalue { ptr, i32 } %28, 0 - call void @__clang_call_terminate(ptr %29) #17 + %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 void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - 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) #8 comdat align 2 { +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 @@ -2615,93 +2506,87 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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) #8 comdat align 2 { +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 - 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %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 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %7) #3 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 3 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds ptr, ptr %13, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %14) #3 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 2 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds i32, ptr %18, i64 -1 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - store ptr %19, ptr %22, 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) %3) #3 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %27 = load ptr, ptr %26, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %23, ptr noundef %27) #3 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 + 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %9 unwind label %10 + %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 -9: ; preds = %2 +15: ; preds = %2 ret void -10: ; preds = %2 - %11 = landingpad { ptr, i32 } +16: ; No predecessors! + %17 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #17 + %18 = extractvalue { ptr, i32 } %17, 0 + call void @__clang_call_terminate(ptr %18) #17 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -2710,12 +2595,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + 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) #14 +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 { @@ -2734,7 +2619,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + 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 @@ -2748,7 +2633,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 br label %12 12: ; preds = %8 @@ -2760,17 +2645,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -2838,14 +2728,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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 @@ -2872,12 +2762,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -2919,25 +2809,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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 #6 comdat align 2 { +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 @@ -2946,22 +2830,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #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 @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { +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 @@ -2977,7 +2853,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -3024,10 +2900,10 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 + 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 @@ -3073,7 +2949,7 @@ 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) #8 comdat align 2 { +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 @@ -3095,7 +2971,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -3109,48 +2985,32 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(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 internal void @_GLOBAL__sub_I_tarjan_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() ret void } attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #10 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { nocallback nofree nounwind willreturn memory(argmem: write) } -attributes #15 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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 } -attributes #19 = { allocsize(0) } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -3160,7 +3020,7 @@ attributes #19 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/the-knights-tour.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/the-knights-tour.ll index a84b2eff8..cb9ca08f2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/the-knights-tour.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/the-knights-tour.ll @@ -332,7 +332,7 @@ attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/topological-sorting.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/topological-sorting.ll index f82e40753..b537c9b99 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/topological-sorting.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/topological-sorting.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/topological-sorting.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -59,12 +60,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt5dequeIiSaIiEED2Ev = comdat any @@ -91,31 +88,19 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - $_ZSt16__deque_buf_sizem = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any +$_ZNSt15__new_allocatorIiE10deallocateEPim = comdat any $_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - $_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any +$_ZNSt15__new_allocatorIPiE10deallocateEPS0_m = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any +$_ZNSt15__new_allocatorIPiED2Ev = comdat any -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any +$_ZNSt15__new_allocatorIiED2Ev = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -129,40 +114,26 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any $_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - $_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - $_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any $_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any @@ -179,14 +150,8 @@ $_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any $_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - $_ZSt3minImERKT_S2_S2_ = comdat any -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - $_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any $_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any @@ -209,7 +174,9 @@ $_ZSt12__niter_baseIPPiET_S2_ = comdat any $_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -217,17 +184,11 @@ $_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any +$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiS3_EEPT0_PT_S7_S5_ = comdat any -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any +$_ZNSt15__new_allocatorIPiE8allocateEmPKv = comdat any -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any +$_ZNSt15__new_allocatorIiE8allocateEmPKv = comdat any $_ZNSt5dequeIiSaIiEEC2Ev = comdat any @@ -237,12 +198,8 @@ $_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any -$_ZNSaIiEC2Ev = comdat any - $_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - $_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any $_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any @@ -259,37 +216,15 @@ $_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any $_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - $_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.1 = private unnamed_addr constant [53 x i8] c"Following is a Topological Sort of the given graph \0A\00", align 1 @.str.2 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_topological_sorting.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -310,7 +245,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -322,7 +257,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -334,25 +269,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -370,14 +305,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -388,7 +323,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; 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) #7 align 2 { +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 @@ -406,13 +341,13 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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) #3 + 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) #3 + %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) @@ -424,15 +359,15 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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) #3 + %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) #3 + %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) #3 + %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 @@ -441,7 +376,7 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa 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) #3 + %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 @@ -452,7 +387,7 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa 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) #3 + %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 @@ -462,7 +397,7 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa } ; 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 { +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 @@ -472,7 +407,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -481,17 +416,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -507,21 +442,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #8 comdat align 2 { +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 @@ -532,7 +467,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -546,7 +481,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z } ; 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) #7 comdat align 2 { +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 @@ -559,7 +494,7 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph15topologicalSortEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 personality ptr @__gxx_personality_v0 { +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 @@ -573,7 +508,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(ptr noundef nonnull align 8 %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) #15 + %13 = invoke noalias noundef nonnull ptr @_Znam(i64 noundef %12) #14 to label %14 unwind label %28 14: ; preds = %1 @@ -609,7 +544,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(ptr noundef nonnull align 8 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) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 br label %71 32: ; preds = %15 @@ -685,7 +620,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(ptr noundef nonnull align 8 br label %56, !llvm.loop !10 70: ; preds = %58 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #15 ret void 71: ; preds = %28 @@ -710,51 +645,51 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(ptr 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) #8 comdat align 2 { +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) #3 + %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) #1 +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) #1 +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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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) #3 + 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 #6 comdat align 2 { +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) #3 + 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() #10 { +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 @@ -771,54 +706,42 @@ define dso_local noundef i32 @main() #10 { } ; 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 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -832,20 +755,20 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality ptr @__gxx_personality_v0 { +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) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(ptr sret(%"struct.std::_Deque_iterator") align 8 %4, ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 + 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef nonnull align 8 dereferenceable(80) %5) #15 ret void 8: ; preds = %1 @@ -857,7 +780,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(ptr noundef nonnull } ; 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) #8 comdat align 2 { +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 %7 = alloca ptr, align 8 @@ -871,7 +794,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De } ; 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) #8 comdat align 2 { +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 @@ -879,12 +802,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(ptr noalias sret %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) #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 void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(%"struct.std::_Deque_iterator") align 8 %0, ptr noundef nonnull align 8 dereferenceable(80) %1) #8 comdat align 2 { +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 @@ -892,12 +815,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(ptr noalias sret(% %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) #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) #8 comdat align 2 { +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 @@ -906,8 +829,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #11 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -917,7 +840,7 @@ 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 #6 comdat align 2 { +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 @@ -937,24 +860,24 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(ptr noundef n %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) #3 + 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) #3 + 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) #3 + 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 #6 comdat align 2 { +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 @@ -984,7 +907,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(ptr no } ; 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) #8 comdat align 2 { +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 @@ -1006,7 +929,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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) #3 + 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 @@ -1019,87 +942,96 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes ret void } -; Function Attrs: mustprogress 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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 - store ptr %0, ptr %4, align 8 - store ptr %1, ptr %5, align 8 - store i64 %2, ptr %6, align 8 - %8 = load ptr, ptr %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %7, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load ptr, ptr %5, align 8 - %10 = load i64, ptr %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %9, i64 noundef %10) - to label %11 unwind label %12 - -11: ; preds = %3 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 + %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 -12: ; preds = %3 - %13 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %14 = extractvalue { ptr, i32 } %13, 0 - call void @__clang_call_terminate(ptr %14) #16 + %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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + %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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = load ptr, ptr %4, align 8 - %8 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - to label %9 unwind label %11 + %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 -9: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(ptr noundef nonnull align 1 dereferenceable(1) %6, ptr noundef %7, i64 noundef %8) - to label %10 unwind label %11 +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 -10: ; preds = %9 +16: ; preds = %12 ret void -11: ; preds = %9, %2 - %12 = landingpad { ptr, i32 } +17: ; preds = %2 + %18 = landingpad { ptr, i32 } catch ptr null - %13 = extractvalue { ptr, i32 } %12, 0 - call void @__clang_call_terminate(ptr %13) #16 + %19 = extractvalue { ptr, i32 } %18, 0 + call void @__clang_call_terminate(ptr %19) #16 unreachable } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { +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 @@ -1120,7 +1052,7 @@ define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef % } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1129,51 +1061,34 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE 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) #3 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #12 +declare void @_ZdlPv(ptr noundef) #10 -; Function Attrs: mustprogress 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) #8 comdat align 2 { +; 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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %4, align 8 - %6 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_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 + %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 %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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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) #8 comdat align 2 { +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 @@ -1181,27 +1096,8 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z ret ptr %4 } -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %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 - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(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 nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1210,29 +1106,20 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate 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) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(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 + call void @_ZdlPv(ptr noundef %8) #17 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 ret void } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 @@ -1240,7 +1127,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(ptr noun } ; 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) #7 comdat align 2 { +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 @@ -1256,66 +1143,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 + %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 -22: ; preds = %2 - %23 = landingpad { ptr, i32 } +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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 + %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 -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 +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) #2 +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) #8 comdat align 2 { +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 @@ -1332,17 +1238,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -1351,7 +1263,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -1369,32 +1281,17 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1406,127 +1303,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #16 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable + %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 = %11 - call void @_ZSt17__throw_bad_allocv() #17 +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +declare noundef nonnull ptr @_Znwm(i64 noundef) #2 ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} - -; 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1534,23 +1406,8 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1559,12 +1416,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + 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 #6 comdat align 2 { +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 @@ -1577,133 +1434,140 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L } ; 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) #7 comdat align 2 { +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 - 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::_Deque_base", ptr %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %7, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 2 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds i32, ptr %13, i64 -1 - %15 = icmp ne ptr %9, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %2 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = getelementptr inbounds i32, ptr %26, i32 1 - store ptr %27, ptr %25, align 8 - br label %30 + %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 -28: ; preds = %2 - %29 = load ptr, ptr %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(ptr noundef nonnull align 8 dereferenceable(80) %5, ptr noundef nonnull align 4 dereferenceable(4) %29) - br label %30 +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 -30: ; preds = %28, %16 - ret void -} +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 +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) #7 comdat align 2 { +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 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %5 = load ptr, ptr %3, align 8 - %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(ptr noundef @.str.2) #17 + %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 -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(ptr noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 1) - %11 = call noundef ptr @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(ptr noundef nonnull align 8 dereferenceable(80) %5) - %12 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, 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 3 - %15 = load ptr, ptr %14, align 8 - %16 = getelementptr inbounds ptr, ptr %15, i64 1 - store ptr %11, ptr %16, align 8 - %17 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %18 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 +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 0 + %20 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %19, i32 0, i32 3 %21 = load ptr, ptr %20, align 8 - %22 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %17, ptr noundef %21, ptr noundef nonnull align 4 dereferenceable(4) %22) #3 - %23 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %23, i32 0, i32 3 - %25 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %26, i32 0, i32 3 - %28 = load ptr, ptr %27, align 8 - %29 = getelementptr inbounds ptr, ptr %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %24, ptr noundef %29) #3 - %30 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %30, i32 0, i32 3 - %32 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %31, i32 0, i32 1 - %33 = load ptr, ptr %32, align 8 - %34 = getelementptr inbounds %"class.std::_Deque_base", ptr %5, i32 0, i32 0 - %35 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %34, i32 0, i32 3 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 0 - store ptr %33, ptr %36, align 8 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 + %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) #8 comdat align 2 { +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 @@ -1711,25 +1575,25 @@ define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(ptr nound %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) #3 + %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) #8 comdat align 2 { +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) #3 - %5 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %4) #3 + %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) #13 +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) #7 comdat align 2 { +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 @@ -1765,18 +1629,24 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE } ; 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) #7 comdat align 2 { +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 - 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 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) - %6 = call noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef %5) - ret ptr %6 + %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) #8 comdat align 2 { +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 @@ -1791,7 +1661,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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() #3 + %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 @@ -1799,12 +1669,12 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP } ; 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) #8 comdat { +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() #3 + %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 @@ -1819,77 +1689,75 @@ define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ %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 i32 - %21 = sext i32 %20 to i64 - %22 = sub nsw i64 %15, %21 - %23 = mul nsw i64 %5, %22 - %24 = load ptr, ptr %3, align 8 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %24, i32 0, i32 0 - %26 = load ptr, ptr %25, align 8 - %27 = load ptr, ptr %3, align 8 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %27, i32 0, i32 1 - %29 = load ptr, ptr %28, align 8 - %30 = ptrtoint ptr %26 to i64 - %31 = ptrtoint ptr %29 to i64 - %32 = sub i64 %30, %31 - %33 = sdiv exact i64 %32, 4 - %34 = add nsw i64 %23, %33 - %35 = load ptr, ptr %4, align 8 - %36 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %35, i32 0, i32 2 - %37 = load ptr, ptr %36, align 8 - %38 = load ptr, ptr %4, align 8 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %38, i32 0, i32 0 - %40 = load ptr, ptr %39, align 8 - %41 = ptrtoint ptr %37 to i64 - %42 = ptrtoint ptr %40 to i64 - %43 = sub i64 %41, %42 - %44 = sdiv exact i64 %43, 4 - %45 = add nsw i64 %34, %44 - ret i64 %45 + %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() #8 comdat align 2 { +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) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 i64, align 8 - %4 = alloca i64, align 8 - store ptr %0, ptr %2, align 8 - store i64 9223372036854775807, ptr %3, align 8 - %5 = load ptr, ptr %2, align 8 - %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, ptr %4, align 8 - %7 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZSt3minImERKT_S2_S2_(ptr noundef nonnull align 8 dereferenceable(8) %3, ptr noundef nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 + %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 -8: ; preds = %1 - %9 = load i64, ptr %7, align 8 - ret i64 %9 +13: ; preds = %1 + %14 = load i64, ptr %12, align 8 + ret i64 %14 -10: ; preds = %1 - %11 = landingpad { ptr, i32 } +15: ; preds = %1 + %16 = landingpad { ptr, i32 } catch ptr null - %12 = extractvalue { ptr, i32 } %11, 0 - call void @__clang_call_terminate(ptr %12) #16 + %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 i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %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) #8 comdat { +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 @@ -1917,25 +1785,8 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 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 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 2305843009213693951 -} - ; 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) #7 comdat align 2 { +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 @@ -2094,7 +1945,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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 @@ -2109,19 +1960,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(pt %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) #3 + 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) #3 + 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) #7 comdat { +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 @@ -2138,7 +1989,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt4copyIPPiS1_ET0_T_S3_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -2155,7 +2006,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2 } ; 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) #8 comdat { +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 @@ -2183,45 +2034,60 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %16 } -; Function Attrs: mustprogress 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +; 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 %"class.std::allocator.3", align 1 + %5 = alloca ptr, align 8 %6 = alloca ptr, align 8 - %7 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store i64 %1, ptr %4, align 8 - %8 = load ptr, ptr %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(ptr sret(%"class.std::allocator.3") align 1 %5, ptr noundef nonnull align 8 dereferenceable(80) %8) #3 - %9 = load i64, ptr %4, align 8 - %10 = invoke noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - ret ptr %10 + %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 -12: ; preds = %2 - %13 = landingpad { ptr, i32 } +20: ; preds = %2 + %21 = landingpad { ptr, i32 } cleanup - %14 = extractvalue { ptr, i32 } %13, 0 - store ptr %14, ptr %6, align 8 - %15 = extractvalue { ptr, i32 } %13, 1 - store i32 %15, ptr %7, align 4 - call void @_ZNSaIPiED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %5) #3 - br label %16 + %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 -16: ; preds = %12 - %17 = load ptr, ptr %6, align 8 - %18 = load i32, ptr %7, align 4 - %19 = insertvalue { ptr, i32 } poison, ptr %17, 0 - %20 = insertvalue { ptr, i32 } %19, i32 %18, 1 - resume { ptr, i32 } %20 +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) #7 comdat { +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 @@ -2229,18 +2095,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_ 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) #3 + %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) #3 + %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) #3 + %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) #8 comdat { +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 @@ -2248,7 +2114,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIPPiET_S2_(ptr noun } ; 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) #8 comdat { +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 @@ -2258,7 +2124,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIPPiET_RKS2_S2_(ptr } ; 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) #7 comdat { +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 @@ -2273,7 +2139,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0 } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noundef %0) #8 comdat { +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 @@ -2281,7 +2147,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIPPiET_S2_(ptr noun } ; 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) #7 comdat { +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 @@ -2291,12 +2157,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0 %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_mIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +; 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 @@ -2312,7 +2178,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %21 16: ; preds = %3 @@ -2321,20 +2187,47 @@ define linkonce_odr dso_local noundef ptr @_ZNSt11__copy_moveILb0ELb1ESt26random %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 %21 + 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 -21: ; preds = %16, %3 - %22 = load ptr, ptr %6, align 8 - %23 = load i64, ptr %7, align 8 - %24 = getelementptr inbounds ptr, ptr %22, i64 %23 - ret ptr %24 +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) #9 +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) #7 comdat { +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 @@ -2342,18 +2235,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb0EPPiS 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) #3 + %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) #3 + %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) #3 + %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) #7 comdat { +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 @@ -2368,7 +2261,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb0EPPi } ; 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) #7 comdat { +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 @@ -2378,12 +2271,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb0EPPi %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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_bIPiEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #8 comdat align 2 { +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 @@ -2399,7 +2292,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %13 = sdiv exact i64 %12, 8 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -2411,118 +2304,105 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb0ELb1ES %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 %24 + br label %32 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds ptr, ptr %25, i64 %27 - ret ptr %28 -} +24: ; preds = %3 + %25 = load i64, ptr %7, align 8 + %26 = icmp eq i64 %25, 1 + br i1 %26, label %27, label %31 -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 +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 @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 2305843009213693951 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 - unreachable + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 2305843009213693951 + br i1 %14, label %15, label %16 -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 8 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} +15: ; preds = %12 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 1152921504606846975 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 + unreachable -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 +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 @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 4611686018427387903 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #17 + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #17 +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #18 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 4 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 +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) #14 +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 { @@ -2541,7 +2421,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + 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 @@ -2555,7 +2435,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n 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) #3 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(ptr noundef nonnull align 8 dereferenceable(80) %6) #15 br label %12 12: ; preds = %8 @@ -2567,17 +2447,22 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(ptr noundef n } ; 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 #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 + %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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -2645,21 +2530,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 49: ; preds = %45 %50 = load ptr, ptr %10, align 8 - %51 = call ptr @__cxa_begin_catch(ptr %50) #3 + %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) #3 + 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() #17 + invoke void @__cxa_rethrow() #18 to label %101 unwind label %62 62: ; preds = %49 @@ -2679,12 +2564,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) #3 + 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) #3 + 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 @@ -2726,16 +2611,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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 #6 comdat align 2 { +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 @@ -2744,22 +2620,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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) #3 + 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) #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 @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(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_Deque_iteratorIiRiPiEC2Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { +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 @@ -2775,7 +2643,7 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(ptr nounde } ; 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 @@ -2822,11 +2690,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 27: ; preds = %23 %28 = load ptr, ptr %8, align 8 - %29 = call ptr @__cxa_begin_catch(ptr %28) #3 + %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) #3 - invoke void @__cxa_rethrow() #17 + 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 @@ -2871,7 +2739,7 @@ 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) #8 comdat align 2 { +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 @@ -2879,12 +2747,12 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(p %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) #3 + %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) #8 comdat { +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 @@ -2900,19 +2768,19 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiR } ; 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) #8 comdat align 2 { +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) #3 - %5 = call noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt15_Deque_iteratorIiRiPiEmmEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 - %6 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(ptr noundef nonnull align 8 dereferenceable(32) %3) #3 + 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) #8 comdat align 2 { +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 @@ -2927,7 +2795,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ %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) #3 + 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 @@ -2943,7 +2811,7 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) ptr @_ } ; 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) #8 comdat align 2 { +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 @@ -2953,138 +2821,131 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(ptr noundef nonnull align 8 dereferenceable(80) %0) #8 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 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 %6, align 8 %7 = load ptr, ptr %6, align 8 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 + %10 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %9, i32 0, i32 0 %11 = load ptr, ptr %10, align 8 - %12 = icmp ne ptr %7, %11 - br i1 %12, label %13, label %24 + %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 -13: ; preds = %1 - %14 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, 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 0 - %17 = load ptr, ptr %16, align 8 - %18 = getelementptr inbounds i32, ptr %17, i32 -1 - store ptr %18, ptr %16, align 8 - %19 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(ptr noundef nonnull align 8 dereferenceable(80) %3) #3 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - %23 = load ptr, ptr %22, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %19, ptr noundef %23) #3 - br label %26 +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 -24: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %3) - to label %25 unwind label %27 +32: ; preds = %1 + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(ptr noundef nonnull align 8 dereferenceable(80) %7) + to label %33 unwind label %35 -25: ; preds = %24 - br label %26 +33: ; preds = %32 + br label %34 -26: ; preds = %25, %13 +34: ; preds = %33, %17 ret void -27: ; preds = %24 - %28 = landingpad { ptr, i32 } +35: ; preds = %32 + %36 = landingpad { ptr, i32 } catch ptr null - %29 = extractvalue { ptr, i32 } %28, 0 - call void @__clang_call_terminate(ptr %29) #16 + %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 @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #8 comdat align 2 { +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 - 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 @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %5, ptr noundef %6) #3 - ret void -} - -; 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) #8 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 %"struct.std::_Deque_iterator", ptr %5, i32 0, i32 1 + %5 = alloca ptr, align 8 + %6 = alloca ptr, align 8 + store ptr %0, ptr %6, align 8 %7 = load ptr, ptr %6, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(ptr noundef nonnull align 8 dereferenceable(80) %3, ptr noundef %7) #3 - %8 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %10, i32 0, i32 3 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %11, i32 0, i32 3 - %13 = load ptr, ptr %12, align 8 - %14 = getelementptr inbounds ptr, ptr %13, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %14) #3 - %15 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %16, i32 0, i32 2 - %18 = load ptr, ptr %17, align 8 - %19 = getelementptr inbounds i32, ptr %18, i64 -1 - %20 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", ptr %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", ptr %21, i32 0, i32 0 - store ptr %19, ptr %22, 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) %3) #3 - %24 = getelementptr inbounds %"class.std::_Deque_base", ptr %3, i32 0, i32 0 + %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 - %27 = load ptr, ptr %26, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(ptr noundef nonnull align 1 dereferenceable(1) %23, ptr noundef %27) #3 - ret void -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1) #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 = load ptr, ptr %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_topological_sorting.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() + 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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { nocallback nofree nounwind willreturn memory(argmem: write) } -attributes #15 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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 = { noreturn } -attributes #18 = { allocsize(0) } +attributes #17 = { builtin nounwind } +attributes #18 = { noreturn } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -3094,7 +2955,7 @@ attributes #18 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/total-number-of-non-decreasing-numbers-with-n-digits.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/total-number-of-non-decreasing-numbers-with-n-digits.ll index 9876ee5f1..90ada2105 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/total-number-of-non-decreasing-numbers-with-n-digits.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/total-number-of-non-decreasing-numbers-with-n-digits.ll @@ -3,35 +3,18 @@ source_filename = "PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-d target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef i64 @_Z18countNonDecreasingi(i32 noundef %0) #4 { +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 @@ -189,16 +172,16 @@ define dso_local noundef i64 @_Z18countNonDecreasingi(i32 noundef %0) #4 { } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +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) #6 +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) #5 +declare void @llvm.stackrestore(ptr) #1 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #7 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -209,22 +192,13 @@ define dso_local noundef i32 @main() #7 { ret i32 0 } -declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEx(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEx(ptr noundef nonnull align 8 dereferenceable(8), i64 noundef) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -234,7 +208,7 @@ attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/tower-of-hanoi.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/tower-of-hanoi.ll index d02327cbb..7f8378b2d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/tower-of-hanoi.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/tower-of-hanoi.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/tower-of-hanoi.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [22 x i8] c"Move disk 1 from rod \00", align 1 @.str.1 = private unnamed_addr constant [9 x i8] c" to rod \00", align 1 @.str.2 = private unnamed_addr constant [11 x i8] c"Move disk \00", align 1 @.str.3 = private unnamed_addr constant [11 x i8] c" from rod \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_tower_of_hanoi.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z12towerOfHanoiiccc(i32 noundef %0, i8 noundef signext %1, i8 noundef signext %2, i8 noundef signext %3) #4 { +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 @@ -98,7 +81,7 @@ declare noundef nonnull align 8 dereferenceable(8) ptr @_ZSt4endlIcSt11char_trai 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() #5 { +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 store i32 0, ptr %1, align 4 @@ -108,18 +91,9 @@ define dso_local noundef i32 @main() #5 { ret i32 0 } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_tower_of_hanoi.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -129,4 +103,4 @@ attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/transitive-closure-of-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/transitive-closure-of-a-graph.ll index d6a8e2954..0a1426311 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/transitive-closure-of-a-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/transitive-closure-of-a-graph.ll @@ -257,7 +257,7 @@ attributes #3 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/trie-suffixes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/trie-suffixes.ll index a68a83aed..a599b7b94 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/trie-suffixes.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/trie-suffixes.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/trie-suffixes.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -20,12 +21,11 @@ target triple = "x86_64-pc-linux-gnu" %"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" = 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.std::__false_type" = type { i8 } -%"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any @@ -53,14 +53,12 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any + $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any $_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any @@ -73,58 +71,34 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any - $_ZNSt11char_traitsIcE6lengthEPKc = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any - -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any - $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any - -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [18 x i8] c"Pattern not found\00", align 1 @.str.1 = private unnamed_addr constant [27 x i8] c"Pattern found at position \00", align 1 @@ -137,26 +111,10 @@ $_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any @.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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_trie_suffixes.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 align 2 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %6 = alloca i32, align 4 @@ -171,7 +129,7 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri %12 = getelementptr inbounds %class.SuffixTrieNode, ptr %11, i32 0, i32 1 %13 = load ptr, ptr %12, align 8 call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr noundef nonnull align 8 dereferenceable(24) %13, ptr noundef nonnull align 4 dereferenceable(4) %6) - %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 %15 = icmp ugt i64 %14, 0 br i1 %15, label %16, label %49 @@ -223,7 +181,7 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri to label %44 unwind label %45 44: ; preds = %36 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #12 br label %49 45: ; preds = %36 @@ -233,7 +191,7 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri store ptr %47, ptr %8, align 8 %48 = extractvalue { ptr, i32 } %46, 1 store i32 %48, ptr %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #12 br label %50 49: ; preds = %44, %3 @@ -248,14 +206,14 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri } ; 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 { +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) #3 + %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 @@ -266,21 +224,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: nounwind -declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 +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) #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) #5 +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 #0 comdat align 2 { +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) #3 + 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 @@ -312,15 +270,15 @@ define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(ptr noundef nonnull declare i32 @__gxx_personality_v0(...) ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #6 +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) #1 +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 #2 +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) #4 align 2 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 @@ -330,7 +288,7 @@ define dso_local noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stri store ptr %0, ptr %4, align 8 store ptr %1, ptr %5, align 8 %9 = load ptr, ptr %4, align 8 - %10 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %10 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 %11 = icmp eq i64 %10, 0 br i1 %11, label %12, label %15 @@ -363,7 +321,7 @@ define dso_local noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stri 31: ; preds = %23 store ptr %30, ptr %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 br label %37 32: ; preds = %23 @@ -373,7 +331,7 @@ define dso_local noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stri store ptr %34, ptr %7, align 8 %35 = extractvalue { ptr, i32 } %33, 1 store i32 %35, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 br label %39 36: ; preds = %15 @@ -393,7 +351,7 @@ define dso_local noundef ptr @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stri } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %0, ptr noundef %1) #4 align 2 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 @@ -413,7 +371,7 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha to label %16 unwind label %22 16: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 store ptr %15, ptr %5, align 8 %17 = load ptr, ptr %5, align 8 %18 = icmp eq ptr %17, null @@ -431,16 +389,16 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha store ptr %24, ptr %7, align 8 %25 = extractvalue { ptr, i32 } %23, 1 store i32 %25, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 br label %49 26: ; preds = %16 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #3 - %27 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %9) #12 + %27 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 %28 = trunc i64 %27 to i32 store i32 %28, ptr %10, align 4 %29 = load ptr, ptr %5, align 8 - %30 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #3 + %30 = call ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %29) #12 %31 = getelementptr inbounds %"struct.std::_List_iterator", ptr %11, i32 0, i32 0 store ptr %30, ptr %31, align 8 call void @llvm.memcpy.p0.p0.i64(ptr align 8 %9, ptr align 8 %11, i64 8, i1 false) @@ -448,15 +406,15 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha 32: ; preds = %45, %26 %33 = load ptr, ptr %5, align 8 - %34 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %33) #3 + %34 = call ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %33) #12 %35 = getelementptr inbounds %"struct.std::_List_iterator", ptr %12, 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) %9, ptr noundef nonnull align 8 dereferenceable(8) %12) #3 + %36 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(ptr noundef nonnull align 8 dereferenceable(8) %9, ptr noundef nonnull align 8 dereferenceable(8) %12) #12 br i1 %36, label %37, label %47 37: ; preds = %32 %38 = 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) - %39 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #3 + %39 = call noundef nonnull align 4 dereferenceable(4) ptr @_ZNKSt14_List_iteratorIiEdeEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #12 %40 = load i32, ptr %39, align 4 %41 = load i32, ptr %10, align 4 %42 = sub nsw i32 %40, %41 @@ -465,7 +423,7 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha br label %45 45: ; preds = %37 - %46 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #3 + %46 = call noundef nonnull align 8 dereferenceable(8) ptr @_ZNSt14_List_iteratorIiEppEv(ptr noundef nonnull align 8 dereferenceable(8) %9) #12 br label %32, !llvm.loop !8 47: ; preds = %32 @@ -482,16 +440,16 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha resume { ptr, i32 } %53 } -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 +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) #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 @_ZNSolsEPFRSoS_E(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) #2 -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 @_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 #7 comdat align 2 { +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 @@ -501,7 +459,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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 @@ -510,17 +468,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #9 +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) #8 comdat { +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 @@ -536,23 +494,23 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #8 comdat align 2 { +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) #3 + 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) #1 +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) #8 comdat align 2 { +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 @@ -563,7 +521,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #8 comdat align 2 { +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 @@ -576,310 +534,364 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z ret ptr %3 } -; 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.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 i32, align 4 - %6 = alloca %class.SuffixTrie, align 8 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator", align 1 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::allocator", align 1 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator", align 1 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %16 unwind label %44 - -16: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %7, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %17 unwind label %48 - -17: ; preds = %16 - invoke void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %6, ptr noundef %7) - to label %18 unwind label %52 - -18: ; preds = %17 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - %19 = 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 %20 unwind label %48 - -20: ; preds = %18 - %21 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %19, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %22 unwind label %48 - -22: ; preds = %20 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef @.str.4, ptr noundef nonnull align 1 dereferenceable(1) %9) - to label %23 unwind label %56 - -23: ; preds = %22 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %6, ptr noundef %8) - to label %24 unwind label %60 - -24: ; preds = %23 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - %25 = 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 %26 unwind label %48 - -26: ; preds = %24 - %27 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %25, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %28 unwind label %48 - -28: ; preds = %26 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %11) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef @.str.6, ptr noundef nonnull align 1 dereferenceable(1) %11) - to label %29 unwind label %65 - -29: ; preds = %28 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %6, ptr noundef %10) - to label %30 unwind label %69 - -30: ; preds = %29 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %11) #3 - %31 = 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 %32 unwind label %48 - -32: ; preds = %30 - %33 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %31, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %34 unwind label %48 - -34: ; preds = %32 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %12, ptr noundef @.str.8, ptr noundef nonnull align 1 dereferenceable(1) %13) - to label %35 unwind label %74 - -35: ; preds = %34 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %6, ptr noundef %12) - to label %36 unwind label %78 - -36: ; preds = %35 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - %37 = 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 %38 unwind label %48 - -38: ; preds = %36 - %39 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEPFRSoS_E(ptr noundef nonnull align 8 dereferenceable(8) %37, ptr noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %40 unwind label %48 + %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", 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", align 1 + %30 = alloca %"class.std::__cxx11::basic_string", align 8 + %31 = alloca %"class.std::allocator", align 1 + %32 = alloca %"class.std::__cxx11::basic_string", align 8 + %33 = alloca %"class.std::allocator", align 1 + %34 = alloca %"class.std::__cxx11::basic_string", align 8 + %35 = alloca %"class.std::allocator", 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 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %14, ptr noundef @.str.10, ptr noundef nonnull align 1 dereferenceable(1) %15) - to label %41 unwind label %83 + 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 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(ptr noundef nonnull align 8 dereferenceable(2056) %6, ptr noundef %14) - to label %42 unwind label %87 - -42: ; preds = %41 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %43 = load i32, ptr %1, align 4 - ret i32 %43 - -44: ; preds = %0 - %45 = landingpad { ptr, i32 } + 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 - %46 = extractvalue { ptr, i32 } %45, 0 - store ptr %46, ptr %4, align 8 - %47 = extractvalue { ptr, i32 } %45, 1 - store i32 %47, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %93 - -48: ; preds = %38, %36, %32, %30, %26, %24, %20, %18, %16 - %49 = landingpad { ptr, i32 } + %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 - %50 = extractvalue { ptr, i32 } %49, 0 - store ptr %50, ptr %4, align 8 - %51 = extractvalue { ptr, i32 } %49, 1 - store i32 %51, ptr %5, align 4 - br label %92 - -52: ; preds = %17 - %53 = landingpad { ptr, i32 } + %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 - %54 = extractvalue { ptr, i32 } %53, 0 - store ptr %54, ptr %4, align 8 - %55 = extractvalue { ptr, i32 } %53, 1 - store i32 %55, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %7) #3 - br label %92 - -56: ; preds = %22 - %57 = landingpad { ptr, i32 } + %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 - %58 = extractvalue { ptr, i32 } %57, 0 - store ptr %58, ptr %4, align 8 - %59 = extractvalue { ptr, i32 } %57, 1 - store i32 %59, ptr %5, align 4 - br label %64 - -60: ; preds = %23 - %61 = landingpad { ptr, i32 } + %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 - %62 = extractvalue { ptr, i32 } %61, 0 - store ptr %62, ptr %4, align 8 - %63 = extractvalue { ptr, i32 } %61, 1 - store i32 %63, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - br label %64 - -64: ; preds = %60, %56 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %9) #3 - br label %92 - -65: ; preds = %28 - %66 = landingpad { ptr, i32 } + %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 - %67 = extractvalue { ptr, i32 } %66, 0 - store ptr %67, ptr %4, align 8 - %68 = extractvalue { ptr, i32 } %66, 1 - store i32 %68, ptr %5, align 4 - br label %73 - -69: ; preds = %29 - %70 = landingpad { ptr, i32 } + %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 - %71 = extractvalue { ptr, i32 } %70, 0 - store ptr %71, ptr %4, align 8 - %72 = extractvalue { ptr, i32 } %70, 1 - store i32 %72, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %10) #3 - br label %73 - -73: ; preds = %69, %65 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %11) #3 - br label %92 - -74: ; preds = %34 - %75 = landingpad { ptr, i32 } + %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 - %76 = extractvalue { ptr, i32 } %75, 0 - store ptr %76, ptr %4, align 8 - %77 = extractvalue { ptr, i32 } %75, 1 - store i32 %77, ptr %5, align 4 - br label %82 - -78: ; preds = %35 - %79 = landingpad { ptr, i32 } + %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 - %80 = extractvalue { ptr, i32 } %79, 0 - store ptr %80, ptr %4, align 8 - %81 = extractvalue { ptr, i32 } %79, 1 - store i32 %81, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #3 - br label %82 - -82: ; preds = %78, %74 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %13) #3 - br label %92 - -83: ; preds = %40 - %84 = landingpad { ptr, i32 } + %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 - %85 = extractvalue { ptr, i32 } %84, 0 - store ptr %85, ptr %4, align 8 - %86 = extractvalue { ptr, i32 } %84, 1 - store i32 %86, ptr %5, align 4 - br label %91 - -87: ; preds = %41 - %88 = landingpad { ptr, i32 } + %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 - %89 = extractvalue { ptr, i32 } %88, 0 - store ptr %89, ptr %4, align 8 - %90 = extractvalue { ptr, i32 } %88, 1 - store i32 %90, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %14) #3 - br label %91 - -91: ; preds = %87, %83 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %15) #3 - br label %92 - -92: ; preds = %91, %82, %73, %64, %52, %48 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %93 - -93: ; preds = %92, %44 - %94 = load ptr, ptr %4, align 8 - %95 = load i32, ptr %5, align 4 - %96 = insertvalue { ptr, i32 } poison, ptr %94, 0 - %97 = insertvalue { ptr, i32 } %96, i32 %95, 1 - resume { ptr, i32 } %97 + %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: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 + %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 -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 +18: ; preds = %17 + unreachable -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 +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 -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 +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 -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 +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 -27: ; preds = %25 +31: ; preds = %27 ret void -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } - cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 - br label %32 - -32: ; preds = %28 +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 @@ -887,11 +899,8 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traits resume { ptr, i32 } %36 } -; Function Attrs: nounwind -declare void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 ptr, align 8 %5 = alloca i32, align 4 @@ -909,7 +918,7 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI 11: ; preds = %22, %2 %12 = load i32, ptr %5, align 4 %13 = sext i32 %12 to i64 - %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #12 %15 = icmp ult i64 %13, %14 br i1 %15, label %16, label %29 @@ -923,7 +932,7 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI to label %21 unwind label %25 21: ; preds = %16 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 br label %22 22: ; preds = %21 @@ -939,7 +948,7 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI store ptr %27, ptr %7, align 8 %28 = extractvalue { ptr, i32 } %26, 1 store i32 %28, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #12 br label %30 29: ; preds = %11 @@ -954,63 +963,51 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI } ; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { +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) #3 + 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 #7 comdat align 2 { +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) #3 - 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 #7 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 + 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 @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { +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 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { +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) #8 comdat align 2 { +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 @@ -1023,8 +1020,16 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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) #4 comdat align 2 { +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 @@ -1040,66 +1045,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 - -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 + %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) #2 +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) #8 comdat align 2 { +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 @@ -1116,17 +1140,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #8 comdat align 2 { +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 @@ -1135,7 +1165,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 #7 comdat align 2 { +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 @@ -1153,32 +1183,17 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1190,124 +1205,99 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #15 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #4 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 - -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 - -14: ; preds = %11 - call void @_ZSt28__throw_bad_array_new_lengthv() #16 - unreachable + %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 -15: ; preds = %11 - call void @_ZSt17__throw_bad_allocv() #16 +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 = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #17 - ret ptr %19 -} +16: ; preds = %12 + call void @_ZSt17__throw_bad_allocv() #15 + unreachable -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #10 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt17__throw_bad_allocv() #10 ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #8 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} - -; 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) #8 comdat align 2 { +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) #3 + %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) #8 comdat align 2 { +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 @@ -1315,25 +1305,10 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #12 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #15 +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 } @@ -1342,7 +1317,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #8 comdat align 2 { +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 @@ -1351,12 +1326,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + 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 #7 comdat align 2 { +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 @@ -1368,331 +1343,211 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L 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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) - ret void -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 +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 -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 -} +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #10 -; 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 { +; 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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - ret void + %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_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 +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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.11) #16 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } + %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 - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #16 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } - cleanup - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 + %38 = extractvalue { ptr, i32 } %37, 0 + call void @__clang_call_terminate(ptr %38) #16 + unreachable -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) +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 = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 - -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #15 - unreachable - -56: ; preds = %40 - unreachable +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #8 comdat { +; 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = icmp eq ptr %3, null - ret i1 %4 -} - -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #11 - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 + %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 } -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: nounwind -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 +declare i64 @strlen(ptr noundef) #1 -declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #2 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #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) #2 -declare void @__cxa_rethrow() +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #2 -declare void @__cxa_end_catch() - -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #8 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 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 - %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 + 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 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #8 comdat { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 + store ptr %7, ptr %6, align 8 ret void } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { +; 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 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !10 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 -} - -; Function Attrs: nounwind -declare i64 @strlen(ptr noundef) #2 + %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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #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 = load i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %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 -; Function Attrs: nounwind -declare void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +10: ; preds = %7 + br label %11 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_trie_suffixes.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() +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 } -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { nounwind } attributes #13 = { builtin allocsize(0) } attributes #14 = { builtin nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } +attributes #15 = { noreturn } +attributes #16 = { noreturn nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -1702,9 +1557,8 @@ attributes #17 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !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-llvm17/tug-of-war.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/tug-of-war.ll index 3b5371a79..db3a1ff3a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/tug-of-war.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/tug-of-war.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/tug-of-war.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [22 x i8] c"The first subset is: \00", align 1 @.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 @.str.2 = private unnamed_addr constant [24 x i8] c"\0AThe second subset is: \00", align 1 @__const.main.arr = private unnamed_addr constant [11 x i32] [i32 23, i32 45, i32 -34, i32 12, i32 0, i32 98, i32 -99, i32 4, i32 189, i32 -1, i32 4], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_tug_of_war.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; 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) #4 { +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 @@ -116,7 +99,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %0, i32 noundef %1, %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) #9 + %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 @@ -127,7 +110,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %0, i32 noundef %1, %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) #9 + %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 @@ -193,10 +176,10 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(ptr noundef %0, i32 noundef %1, } ; Function Attrs: nounwind willreturn memory(none) -declare i32 @abs(i32 noundef) #5 +declare i32 @abs(i32 noundef) #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z8tugOfWarPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -210,11 +193,11 @@ define dso_local void @_Z8tugOfWarPii(ptr noundef %0, i32 noundef %1) #4 { 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) #10 + %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) #10 + %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 @@ -347,14 +330,14 @@ define dso_local void @_Z8tugOfWarPii(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #6 +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) #1 +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) #1 +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() #7 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [11 x i32], align 16 %3 = alloca i32, align 4 @@ -368,25 +351,16 @@ define dso_local noundef i32 @main() #7 { } ; 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: noinline uwtable -define internal void @_GLOBAL__sub_I_tug_of_war.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #5 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nounwind willreturn memory(none) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #9 = { nounwind willreturn memory(none) } -attributes #10 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -396,7 +370,7 @@ attributes #10 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/ugly-numbers.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/ugly-numbers.ll index ad110212e..75371fef0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/ugly-numbers.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/ugly-numbers.ll @@ -120,7 +120,7 @@ attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protect !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/union-find.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/union-find.ll index 06fbb7d0d..6e2ef1b83 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/union-find.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/union-find.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/union-find.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -12,36 +13,18 @@ target triple = "x86_64-pc-linux-gnu" %class.Graph = type { i32, i32, ptr } %class.Edge = type { i32, i32 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [21 x i8] c"graph contains cycle\00", align 1 @.str.1 = private unnamed_addr constant [28 x i8] c"graph doesn't contain cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_union_find.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) #4 { +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) #9 + %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 @@ -61,7 +44,7 @@ define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) %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) #9 + %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 @@ -70,19 +53,19 @@ define dso_local noundef ptr @_Z11createGraphii(i32 noundef %0, i32 noundef %1) } ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 +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) #6 +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) #7 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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) #4 { +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 @@ -118,7 +101,7 @@ define dso_local noundef i32 @_Z4findPii(ptr noundef %0, i32 noundef %1) #4 { } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z5UnionPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -154,7 +137,7 @@ define dso_local void @_Z5UnionPiii(ptr noundef %0, i32 noundef %1, i32 noundef } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z7isCycleP5Graph(ptr noundef %0) #4 { +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 @@ -171,7 +154,7 @@ define dso_local noundef i32 @_Z7isCycleP5Graph(ptr noundef %0) #4 { %14 = extractvalue { i64, i1 } %13, 1 %15 = extractvalue { i64, i1 } %13, 0 %16 = select i1 %14, i64 -1, i64 %15 - %17 = call noalias noundef nonnull ptr @_Znam(i64 noundef %16) #9 + %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 @@ -246,7 +229,7 @@ define dso_local noundef i32 @_Z7isCycleP5Graph(ptr noundef %0) #4 { } ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #8 { +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -311,24 +294,15 @@ define dso_local noundef i32 @main() #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) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_union_find.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +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 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #6 = { nocallback nofree nounwind willreturn memory(argmem: write) } -attributes #7 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #9 = { builtin allocsize(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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -338,6 +312,6 @@ attributes #9 = { builtin allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/vertex-cover-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/vertex-cover-problem.ll index 8b5d4b0f4..db582f117 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/vertex-cover-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/vertex-cover-problem.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/vertex-cover-problem.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -40,12 +41,8 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any $_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_headerC2Ev = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - $_ZNSt8__detail17_List_node_header7_M_initEv = comdat any $_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any @@ -60,57 +57,29 @@ $_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - $_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any $_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = 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 -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - $__clang_call_terminate = comdat any -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any +$_ZNSt15__new_allocatorISt10_List_nodeIiEE10deallocateEPS1_m = comdat any $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_vertex_cover_problem.cpp, ptr null }] @_ZN5GraphC1Ei = dso_local unnamed_addr alias void (ptr, i32), ptr @_ZN5GraphC2Ei -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 - ; 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 @@ -131,7 +100,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable %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 + %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 @@ -143,7 +112,7 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable 23: ; preds = %23, %21 %24 = phi ptr [ %19, %21 ], [ %25, %23 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %24) #3 + 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 @@ -155,25 +124,25 @@ define dso_local void @_ZN5GraphC2Ei(ptr noundef nonnull align 8 dereferenceable } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 +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) #4 +declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #5 +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 #6 comdat align 2 { +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) #3 + 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) #7 align 2 { +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 @@ -197,14 +166,14 @@ define dso_local void @_ZN5Graph7addEdgeEii(ptr noundef nonnull align 8 derefere } ; 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) #7 comdat align 2 { +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) #3 + %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 @@ -215,7 +184,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(ptr } ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { +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 @@ -259,7 +228,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull align 8 br label %18, !llvm.loop !6 30: ; preds = %18 - call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %6) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef nonnull align 8 dereferenceable(8) %6) #15 store i32 0, ptr %7, align 4 br label %31 @@ -286,7 +255,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull 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) #3 + %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) @@ -298,14 +267,14 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull 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) #3 + %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) #3 + %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) #3 + %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 @@ -332,7 +301,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull align 8 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) #3 + %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 @@ -388,10 +357,10 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(ptr noundef nonnull align 8 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #8 +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 #6 comdat align 2 { +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 @@ -401,7 +370,7 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(ptr noundef non } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #9 comdat align 2 { +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 @@ -410,17 +379,17 @@ define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE5beginEv(ptr nounde %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) #3 + 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) #10 +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) #9 comdat { +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 @@ -436,21 +405,21 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local ptr @_ZNSt7__cxx114listIiSaIiEE3endEv(ptr noundef nonnull align 8 dereferenceable(24) %0) #9 comdat align 2 { +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) #3 + 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) #9 comdat align 2 { +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 @@ -461,7 +430,7 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; 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) #9 comdat align 2 { +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 @@ -474,15 +443,15 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) ptr @_Z 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) #1 +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) #1 +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) #8 +declare void @llvm.stackrestore(ptr) #5 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #11 { +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 @@ -498,54 +467,42 @@ define dso_local noundef i32 @main() #11 { } ; 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 { +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) #3 - 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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - %4 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", ptr %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(ptr noundef nonnull align 8 dereferenceable(24) %4) #3 + 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 @_ZNSaISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - 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) #3 + %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 @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(ptr noundef nonnull align 1 dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { +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) #9 comdat align 2 { +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 @@ -559,7 +516,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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) #7 comdat align 2 { +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 @@ -575,66 +532,85 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE %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) #3 + 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) #7 comdat align 2 personality ptr @__gxx_personality_v0 { +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 %"struct.std::__allocated_ptr", align 8 + %7 = alloca ptr, align 8 %8 = alloca ptr, align 8 - %9 = alloca i32, align 4 - store ptr %0, ptr %3, align 8 - store ptr %1, ptr %4, align 8 - %10 = load ptr, ptr %3, align 8 - %11 = call noundef ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(ptr noundef nonnull align 8 dereferenceable(24) %10) - store ptr %11, ptr %5, align 8 - %12 = call noundef nonnull align 1 dereferenceable(1) ptr @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(ptr noundef nonnull align 8 dereferenceable(24) %10) #3 - store ptr %12, ptr %6, align 8 - %13 = load ptr, ptr %6, align 8 - %14 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr noundef nonnull align 1 dereferenceable(1) %13, ptr noundef %14) #3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %5, align 8 - %17 = invoke noundef ptr @_ZNSt10_List_nodeIiE9_M_valptrEv(ptr noundef nonnull align 8 dereferenceable(20) %16) - to label %18 unwind label %22 - -18: ; preds = %2 - %19 = load ptr, ptr %4, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %15, ptr noundef %17, ptr noundef nonnull align 4 dereferenceable(4) %19) #3 - %20 = call noundef nonnull align 8 dereferenceable(16) ptr @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(ptr noundef nonnull align 8 dereferenceable(16) %7, ptr null) #3 - %21 = load ptr, ptr %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - ret ptr %21 - -22: ; preds = %2 - %23 = landingpad { ptr, i32 } + %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 - %24 = extractvalue { ptr, i32 } %23, 0 - store ptr %24, ptr %8, align 8 - %25 = extractvalue { ptr, i32 } %23, 1 - store i32 %25, ptr %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(ptr noundef nonnull align 8 dereferenceable(16) %7) #3 - br label %26 - -26: ; preds = %22 - %27 = load ptr, ptr %8, align 8 - %28 = load i32, ptr %9, align 4 - %29 = insertvalue { ptr, i32 } poison, ptr %27, 0 - %30 = insertvalue { ptr, i32 } %29, i32 %28, 1 - resume { ptr, i32 } %30 + %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) #2 +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) #9 comdat align 2 { +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 @@ -651,17 +627,23 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si } ; 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) #7 comdat align 2 { +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 - 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 = call noundef ptr @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %4, i64 noundef 1) - ret ptr %5 + %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) #9 comdat align 2 { +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 @@ -670,7 +652,7 @@ define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) ptr @_Z } ; 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 { +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 @@ -688,34 +670,19 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #9 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 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, ptr noundef nonnull align 4 dereferenceable(4) %9) #3 - 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) #9 comdat align 2 { +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) #3 + %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) #9 comdat align 2 { +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 @@ -727,127 +694,102 @@ define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) ptr @_ } ; 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 { +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 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %5 = load ptr, ptr %4, align 8 - %6 = icmp ne ptr %5, null - br i1 %6, label %7, label %13 + %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 -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 0 - %9 = load ptr, ptr %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", ptr %3, i32 0, i32 1 - %11 = load ptr, ptr %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(ptr noundef nonnull align 1 dereferenceable(1) %9, ptr noundef %11, i64 noundef 1) - to label %12 unwind label %14 +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 -12: ; preds = %7 - br label %13 +18: ; preds = %10 + br label %19 -13: ; preds = %12, %1 +19: ; preds = %18, %1 ret void -14: ; preds = %7 - %15 = landingpad { ptr, i32 } +20: ; No predecessors! + %21 = landingpad { ptr, i32 } catch ptr null - %16 = extractvalue { ptr, i32 } %15, 0 - call void @__clang_call_terminate(ptr %16) #16 + %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 @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(ptr noundef nonnull align 1 dereferenceable(1) %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 = call noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %6, ptr noundef null) - ret ptr %7 -} - -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(ptr noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, ptr noundef %2) #7 comdat align 2 { +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 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 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %16 + %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 -11: ; preds = %3 - %12 = load i64, ptr %5, align 8 - %13 = icmp ugt i64 %12, 768614336404564650 - br i1 %13, label %14, label %15 +12: ; preds = %3 + %13 = load i64, ptr %6, align 8 + %14 = icmp ugt i64 %13, 768614336404564650 + br i1 %14, label %15, label %16 -14: ; preds = %11 +15: ; preds = %12 call void @_ZSt28__throw_bad_array_new_lengthv() #17 unreachable -15: ; preds = %11 +16: ; preds = %12 call void @_ZSt17__throw_bad_allocv() #17 unreachable -16: ; preds = %3 - %17 = load i64, ptr %5, align 8 - %18 = mul i64 %17, 24 - %19 = call noalias noundef nonnull ptr @_Znwm(i64 noundef %18) #18 - ret ptr %19 -} - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(ptr noundef nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca ptr, align 8 - store ptr %0, ptr %2, align 8 - %3 = load ptr, ptr %2, align 8 - ret i64 384307168202282325 +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 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 ; Function Attrs: noreturn -declare void @_ZSt17__throw_bad_allocv() #12 +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znwm(i64 noundef) #5 - -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, ptr noundef nonnull align 4 dereferenceable(4) %2) #9 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 = load i32, ptr %9, align 4 - store i32 %10, ptr %8, align 4 - ret void -} +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) #9 comdat align 2 { +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) #3 + %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) #9 comdat align 2 { +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 @@ -855,24 +797,9 @@ define linkonce_odr dso_local noundef ptr @_ZN9__gnu_cxx16__aligned_membufIiE7_M ret ptr %4 } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_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 - %9 = load i64, ptr %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %7, ptr noundef %8, i64 noundef %9) - ret void -} - ; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #13 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 +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 } @@ -882,7 +809,7 @@ declare ptr @__cxa_begin_catch(ptr) declare void @_ZSt9terminatev() ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef %1, i64 noundef %2) #9 comdat align 2 { +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 @@ -891,15 +818,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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) #3 + call void @_ZdlPv(ptr noundef %8) #18 ret void } ; Function Attrs: nobuiltin nounwind -declare void @_ZdlPv(ptr noundef) #14 +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 #6 comdat align 2 { +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 @@ -911,31 +838,25 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_vertex_cover_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { nocallback nofree nosync nounwind willreturn } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #13 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #14 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #15 = { builtin allocsize(0) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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 = { allocsize(0) } +attributes #18 = { builtin nounwind } !llvm.module.flags = !{!0, !1, !2, !3, !4} !llvm.ident = !{!5} @@ -945,7 +866,7 @@ attributes #18 = { allocsize(0) } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/weighted-job-scheduling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/weighted-job-scheduling.ll index 8784819fc..8823004e2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/weighted-job-scheduling.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/weighted-job-scheduling.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/weighted-job-scheduling.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } @@ -24,7 +25,7 @@ $_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6 $_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_ = comdat any -$_ZSt4__lgl = comdat any +$_ZSt4__lgIlET_S0_ = comdat any $_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any @@ -58,6 +59,10 @@ $_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 @@ -80,7 +85,9 @@ $_ZSt12__niter_baseIP3JobET_S2_ = comdat any $_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_ = comdat any +$_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 @@ -88,30 +95,12 @@ $_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE $_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_ = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @__const.main.arr = private unnamed_addr constant [4 x %struct.Job] [%struct.Job { i32 3, i32 10, i32 20 }, %struct.Job { i32 1, i32 2, i32 50 }, %struct.Job { i32 6, i32 19, i32 100 }, %struct.Job { i32 2, i32 100, i32 200 }], align 16 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [23 x i8] c"The optimal profit is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_weighted_job_scheduling.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline nounwind uwtable -define dso_local noundef zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i64 %2, i32 %3) #4 { +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 @@ -135,10 +124,10 @@ define dso_local noundef zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i6 } ; 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 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) #4 { +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 @@ -195,7 +184,7 @@ define dso_local noundef i32 @_Z17latestNonConflictP3Jobi(ptr noundef %0, i32 no } ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %0, i32 noundef %1) #6 { +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 @@ -217,7 +206,7 @@ define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %0, i32 nounde %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) #12 + %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 @@ -296,7 +285,7 @@ define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %0, i32 nounde br i1 %75, label %77, label %76 76: ; preds = %67 - call void @_ZdaPv(ptr noundef %74) #13 + call void @_ZdaPv(ptr noundef %74) #10 br label %77 77: ; preds = %76, %67 @@ -305,7 +294,7 @@ define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(ptr noundef %0, i32 nounde } ; 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) #6 comdat { +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 @@ -326,13 +315,13 @@ define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(ptr noun } ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none) -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #7 +declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #3 ; Function Attrs: nobuiltin allocsize(0) -declare noundef nonnull ptr @_Znam(i64 noundef) #8 +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) #4 comdat { +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 @@ -361,10 +350,10 @@ define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) ptr @_Z } ; Function Attrs: nobuiltin nounwind -declare void @_ZdaPv(ptr noundef) #9 +declare void @_ZdaPv(ptr noundef) #5 ; Function Attrs: mustprogress noinline norecurse uwtable -define dso_local noundef i32 @main() #10 { +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 @@ -379,12 +368,12 @@ define dso_local noundef i32 @main() #10 { 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 @_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) #1 +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) #6 comdat { +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 @@ -408,7 +397,7 @@ define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_co %19 = ptrtoint ptr %17 to i64 %20 = sub i64 %18, %19 %21 = sdiv exact i64 %20, 12 - %22 = call noundef i64 @_ZSt4__lgl(i64 noundef %21) + %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 @@ -427,7 +416,7 @@ define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_co } ; 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) #6 comdat { +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 @@ -439,7 +428,7 @@ define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3Job } ; 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) #6 comdat { +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 @@ -507,19 +496,18 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__o } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt4__lgl(i64 noundef %0) #4 comdat { +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 i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 + %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) #6 comdat { +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 @@ -570,7 +558,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cx } ; 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) #6 comdat { +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 @@ -595,7 +583,7 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops1 } ; 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) #6 comdat { +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 @@ -638,7 +626,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt27__unguarded_partition_pivotIP3J } ; 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) #6 comdat { +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 @@ -689,7 +677,7 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15 } ; 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) #6 comdat { +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 @@ -724,7 +712,7 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_I } ; 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) #6 comdat { +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 @@ -800,7 +788,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_I } ; 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) #6 comdat align 2 { +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 @@ -833,7 +821,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_com } ; 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) #6 comdat { +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 @@ -873,7 +861,7 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_It } ; 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) #6 comdat { +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 @@ -990,7 +978,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o } ; 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 #11 comdat align 2 { +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 @@ -1005,7 +993,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS } ; 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) #6 comdat { +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 @@ -1071,7 +1059,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops } ; 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) #6 comdat align 2 { +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 @@ -1104,7 +1092,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_com } ; 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) #6 comdat { +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 @@ -1198,7 +1186,7 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cx } ; 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) #6 comdat { +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 @@ -1264,19 +1252,19 @@ define linkonce_odr dso_local noundef ptr @_ZSt21__unguarded_partitionIP3JobN9__ } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(ptr noundef %0, ptr noundef %1) #4 comdat { +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) #3 + 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) #4 comdat { +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 @@ -1292,11 +1280,59 @@ define linkonce_odr dso_local void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6_ 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) #7 +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) #6 comdat { +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 @@ -1373,7 +1409,7 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__op } ; 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) #6 comdat { +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 @@ -1418,7 +1454,7 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP3JobN9__gn } ; 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) #6 comdat { +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 @@ -1435,7 +1471,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt13move_backwardIP3JobS1_ET0_T_S3_ } ; 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) #6 comdat { +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 @@ -1475,7 +1511,7 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu } ; 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) #6 comdat { +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 @@ -1487,7 +1523,7 @@ define linkonce_odr dso_local ptr @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS } ; 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) #6 comdat { +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 @@ -1495,18 +1531,18 @@ define linkonce_odr dso_local noundef ptr @_ZSt22__copy_move_backward_aILb1EP3Jo 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) #3 + %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) #3 + %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) #3 + %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) #4 comdat { +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 @@ -1514,7 +1550,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__miter_baseIP3JobET_S2_(ptr no } ; 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) #4 comdat { +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 @@ -1524,7 +1560,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(p } ; 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) #6 comdat { +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 @@ -1539,7 +1575,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a1ILb1EP3J } ; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr noundef %0) #4 comdat { +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 @@ -1547,7 +1583,7 @@ define linkonce_odr dso_local noundef ptr @_ZSt12__niter_baseIP3JobET_S2_(ptr no } ; 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) #6 comdat { +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 @@ -1557,12 +1593,12 @@ define linkonce_odr dso_local noundef ptr @_ZSt23__copy_move_backward_a2ILb1EP3J %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_bI3JobEEPT_PKS4_S7_S5_(ptr noundef %7, ptr noundef %8, ptr noundef %9) + %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 nounwind uwtable -define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_(ptr noundef %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { +; 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 @@ -1578,7 +1614,7 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %13 = sdiv exact i64 %12, 12 store i64 %13, ptr %7, align 8 %14 = load i64, ptr %7, align 8 - %15 = icmp ne i64 %14, 0 + %15 = icmp sgt i64 %14, 1 br i1 %15, label %16, label %24 16: ; preds = %3 @@ -1590,21 +1626,48 @@ define linkonce_odr dso_local noundef ptr @_ZNSt20__copy_move_backwardILb1ELb1ES %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 %24 + 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 -24: ; preds = %16, %3 - %25 = load ptr, ptr %6, align 8 - %26 = load i64, ptr %7, align 8 - %27 = sub i64 0, %26 - %28 = getelementptr inbounds %struct.Job, ptr %25, i64 %27 - ret ptr %28 +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) #5 +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) #6 comdat align 2 { +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 @@ -1637,7 +1700,7 @@ define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp } ; 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 #11 comdat align 2 { +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 @@ -1652,7 +1715,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS } ; 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 #11 comdat align 2 { +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 @@ -1664,26 +1727,18 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3Job ret void } -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_weighted_job_scheduling.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } -attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) } -attributes #8 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #12 = { builtin allocsize(0) } -attributes #13 = { builtin nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -1693,7 +1748,7 @@ attributes #13 = { builtin nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/word-wrap.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/word-wrap.ll index 1a892c7b6..5dbf5afea 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/word-wrap.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/word-wrap.ll @@ -3,39 +3,22 @@ source_filename = "PE-benchmarks/word-wrap.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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 } -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @_ZSt4cout = external global %"class.std::basic_ostream", align 8 @.str = private unnamed_addr constant [13 x i8] c"Line number \00", align 1 @.str.1 = private unnamed_addr constant [17 x i8] c": From word no. \00", align 1 @.str.2 = private unnamed_addr constant [5 x i8] c" to \00", align 1 @__const.main.l = private unnamed_addr constant [4 x i32] [i32 3, i32 2, i32 2, i32 5], align 16 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_word_wrap.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z13solveWordWrapPiii(ptr noundef %0, i32 noundef %1, i32 noundef %2) #4 { +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 @@ -407,10 +390,10 @@ define dso_local void @_Z13solveWordWrapPiii(ptr noundef %0, i32 noundef %1, i32 } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare ptr @llvm.stacksave() #5 +declare ptr @llvm.stacksave() #1 ; Function Attrs: mustprogress noinline uwtable -define dso_local noundef i32 @_Z13printSolutionPii(ptr noundef %0, i32 noundef %1) #4 { +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 @@ -461,18 +444,18 @@ define dso_local noundef i32 @_Z13printSolutionPii(ptr noundef %0, i32 noundef % } ; Function Attrs: nocallback nofree nosync nounwind willreturn -declare void @llvm.stackrestore(ptr) #5 +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) #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) #1 +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) #1 +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)) #1 +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() #6 { +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -489,22 +472,13 @@ define dso_local noundef i32 @main() #6 { } ; 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 uwtable -define internal void @_GLOBAL__sub_I_word_wrap.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} +declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #4 -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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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} @@ -514,7 +488,7 @@ attributes #7 = { nocallback nofree nounwind willreturn memory(argmem: readwrite !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm17/z-algorithm-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm17/z-algorithm-linear-time.ll index dd450f449..e3b37b6a2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm17/z-algorithm-linear-time.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm17/z-algorithm-linear-time.ll @@ -3,7 +3,8 @@ source_filename = "PE-benchmarks/z-algorithm-linear-time.cpp" target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-pc-linux-gnu" -%"class.std::ios_base::Init" = type { i8 } +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" } @@ -13,9 +14,8 @@ target triple = "x86_64-pc-linux-gnu" %"struct.std::__cxx11::basic_string::_Alloc_hider" = type { ptr } %union.anon = type { i64, [8 x i8] } %"class.std::allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } %"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } +%struct._Guard = type { ptr } $_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_ = comdat any @@ -23,57 +23,31 @@ $_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_ $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_ = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_ = comdat any - -$_ZNSt11char_traitsIcE6lengthEPKc = comdat any +$_ZNSt15__new_allocatorIcED2Ev = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any +$_ZSt12__str_concatINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEET_PKNS6_10value_typeENS6_9size_typeES9_SA_RKNS6_14allocator_typeE = comdat any -$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type = comdat any +$_ZNSt11char_traitsIcE6lengthEPKc = comdat any $_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag = comdat any -$_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_ = comdat any - -$_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_ = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag = comdat any +$_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev = comdat any -$_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_ = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardC2EPS4_ = comdat any -$_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc = comdat any +$_ZZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tagEN6_GuardD2Ev = comdat any -$_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_ = comdat any +$__clang_call_terminate = comdat any -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 @.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 @_ZSt4cout = external 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 [42 x i8] c"basic_string::_M_construct null not valid\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__sub_I_z_algorithm_linear_time.cpp, ptr null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(ptr @_ZNSt8ios_base4InitD1Ev, ptr @_ZStL8__ioinit, ptr @__dso_handle) #3 - ret void -} - -declare void @_ZNSt8ios_base4InitC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare void @_ZNSt8ios_base4InitD1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare i32 @__cxa_atexit(ptr, ptr, ptr) #3 +@.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) #4 personality ptr @__gxx_personality_v0 { +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %0, ptr noundef %1) #0 personality ptr @__gxx_personality_v0 { %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 %5 = alloca %"class.std::__cxx11::basic_string", align 8 @@ -92,8 +66,8 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI to label %14 unwind label %47 14: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %5) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #11 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %5) #11 %16 = trunc i64 %15 to i32 store i32 %16, ptr %9, align 4 %17 = load i32, ptr %9, align 4 @@ -110,7 +84,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI to label %22 unwind label %55 22: ; preds = %21 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #11 store i32 0, ptr %13, align 4 br label %23 @@ -126,7 +100,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %30 = getelementptr inbounds i32, ptr %20, i64 %29 %31 = load i32, ptr %30, align 4 %32 = sext i32 %31 to i64 - %33 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %33 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #11 %34 = icmp eq i64 %32, %33 br i1 %34, label %35, label %59 @@ -137,7 +111,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 37: ; preds = %35 %38 = load i32, ptr %13, align 4 %39 = sext i32 %38 to i64 - %40 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #3 + %40 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %1) #11 %41 = sub i64 %39, %40 %42 = sub i64 %41, 1 %43 = invoke noundef nonnull align 8 dereferenceable(8) ptr @_ZNSolsEm(ptr noundef nonnull align 8 dereferenceable(8) %36, i64 noundef %42) @@ -157,7 +131,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI store ptr %49, ptr %7, align 8 %50 = extractvalue { ptr, i32 } %48, 1 store i32 %50, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #11 br label %66 51: ; preds = %44, %37, %35, %14 @@ -176,7 +150,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI store ptr %57, ptr %7, align 8 %58 = extractvalue { ptr, i32 } %56, 1 store i32 %58, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %12) #11 br label %65 59: ; preds = %46, %27 @@ -191,11 +165,11 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 63: ; preds = %23 %64 = load ptr, ptr %10, align 8 call void @llvm.stackrestore(ptr %64) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #11 ret void 65: ; preds = %55, %51 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %5) #11 br label %66 66: ; preds = %65, %47 @@ -207,7 +181,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI } ; 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) #4 comdat { +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 @@ -217,56 +191,59 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 %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) #3 + 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: mustprogress 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) #4 comdat personality ptr @__gxx_personality_v0 { +; 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 i1, align 1 + %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 - store i1 false, ptr %7, align 1 - %10 = load ptr, ptr %5, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef nonnull align 8 dereferenceable(32) %10) - %11 = load ptr, ptr %6, align 8 - %12 = invoke noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %11) - to label %13 unwind label %15 - -13: ; preds = %3 - store i1 true, ptr %7, align 1 - %14 = load i1, ptr %7, align 1 - br i1 %14, label %20, label %19 - -15: ; preds = %3 - %16 = landingpad { ptr, i32 } - cleanup - %17 = extractvalue { ptr, i32 } %16, 0 - store ptr %17, ptr %8, align 8 - %18 = extractvalue { ptr, i32 } %16, 1 - store i32 %18, ptr %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 - br label %21 - -19: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 - br label %20 - -20: ; preds = %19, %13 + %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 -21: ; preds = %15 - %22 = load ptr, ptr %8, align 8 - %23 = load i32, ptr %9, align 4 - %24 = insertvalue { ptr, i32 } poison, ptr %22, 0 - %25 = insertvalue { ptr, i32 } %24, i32 %23, 1 - resume { ptr, i32 } %25 +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(...) @@ -278,10 +255,10 @@ declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noun 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() #5 +declare ptr @llvm.stacksave() #3 ; Function Attrs: mustprogress noinline uwtable -define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(ptr noundef %0, ptr noundef %1) #4 { +define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(ptr noundef %0, ptr noundef %1) #0 { %3 = alloca ptr, align 8 %4 = alloca ptr, align 8 %5 = alloca i32, align 4 @@ -291,7 +268,7 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %9 = alloca i32, align 4 store ptr %0, ptr %3, align 8 store ptr %1, ptr %4, align 8 - %10 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #3 + %10 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(ptr noundef nonnull align 8 dereferenceable(32) %0) #11 %11 = trunc i64 %10 to i32 store i32 %11, ptr %5, align 4 store i32 0, ptr %7, align 4 @@ -460,538 +437,556 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa ret void } -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 +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) #1 +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) #1 +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) #1 +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)) #1 +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) #5 +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) #1 +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 norecurse uwtable -define dso_local noundef i32 @main() #6 personality ptr @__gxx_personality_v0 { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 +; 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 %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, ptr %1, align 4 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %2, ptr noundef @.str.2, ptr noundef nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC2IS3_EEPKcRKS3_(ptr noundef nonnull align 8 dereferenceable(32) %6, ptr noundef @.str.3, ptr noundef nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(ptr noundef %8, ptr noundef %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - store i32 0, ptr %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - %15 = load i32, ptr %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { ptr, i32 } + %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 - %18 = extractvalue { ptr, i32 } %17, 0 - store ptr %18, ptr %4, align 8 - %19 = extractvalue { ptr, i32 } %17, 1 - store i32 %19, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { ptr, i32 } + %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 - %22 = extractvalue { ptr, i32 } %21, 0 - store ptr %22, ptr %4, align 8 - %23 = extractvalue { ptr, i32 } %21, 1 - store i32 %23, ptr %5, align 4 - call void @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { ptr, i32 } + %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 - %26 = extractvalue { ptr, i32 } %25, 0 - store ptr %26, ptr %4, align 8 - %27 = extractvalue { ptr, i32 } %25, 1 - store i32 %27, ptr %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { ptr, i32 } + %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 - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %4, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { ptr, i32 } + %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 - %34 = extractvalue { ptr, i32 } %33, 0 - store ptr %34, ptr %4, align 8 - %35 = extractvalue { ptr, i32 } %33, 1 - store i32 %35, ptr %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(ptr noundef nonnull align 8 dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load ptr, ptr %4, align 8 - %41 = load i32, ptr %5, align 4 - %42 = insertvalue { ptr, i32 } poison, ptr %40, 0 - %43 = insertvalue { ptr, i32 } %42, i32 %41, 1 - resume { ptr, i32 } %43 + %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: nounwind -declare void @_ZNSaIcEC1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - ; 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 #0 comdat align 2 personality ptr @__gxx_personality_v0 { +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 - %9 = load ptr, ptr %4, align 8 - %10 = getelementptr inbounds %"class.std::__cxx11::basic_string", ptr %9, i32 0, i32 0 - %11 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %9) - %12 = load ptr, ptr %6, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderC1EPcRKS3_(ptr noundef nonnull align 8 dereferenceable(8) %10, ptr noundef %11, ptr noundef nonnull align 1 dereferenceable(1) %12) - %13 = load ptr, ptr %5, align 8 - %14 = load ptr, ptr %5, align 8 - %15 = icmp ne ptr %14, null - br i1 %15, label %16, label %22 - -16: ; preds = %3 - %17 = load ptr, ptr %5, align 8 - %18 = load ptr, ptr %5, align 8 - %19 = invoke noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %18) - to label %20 unwind label %28 - -20: ; preds = %16 - %21 = getelementptr inbounds i8, ptr %17, i64 %19 - br label %25 - -22: ; preds = %3 - %23 = load ptr, ptr %5, align 8 - %24 = getelementptr inbounds i8, ptr %23, i64 -1 - br label %25 - -25: ; preds = %22, %20 - %26 = phi ptr [ %21, %20 ], [ %24, %22 ] - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %9, ptr noundef %13, ptr noundef %26) - to label %27 unwind label %28 - -27: ; preds = %25 - ret void + %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 -28: ; preds = %25, %16 - %29 = landingpad { ptr, i32 } +19: ; preds = %23, %17 + %20 = landingpad { ptr, i32 } cleanup - %30 = extractvalue { ptr, i32 } %29, 0 - store ptr %30, ptr %7, align 8 - %31 = extractvalue { ptr, i32 } %29, 1 - store i32 %31, ptr %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %10) #3 - br label %32 - -32: ; preds = %28 - %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 @_ZNSaIcED1Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #1 - -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)) #1 - -; 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)) #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: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_(ptr noundef nonnull align 8 dereferenceable(32) %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 %"struct.std::__false_type", align 1 - 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 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %8, ptr noundef %9, ptr noundef %10) + %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 -} -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZNSt11char_traitsIcE6lengthEPKc(ptr noundef %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 - store ptr %5, ptr %2, align 8 - br i1 false, label %6, label %9 - -6: ; preds = %1 - %7 = load ptr, ptr %4, align 8 - %8 = call noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %7) - store i64 %8, ptr %3, align 8 - br label %12 - -9: ; preds = %1 - %10 = load ptr, ptr %4, align 8 - %11 = call i64 @strlen(ptr noundef %10) #3 - store i64 %11, ptr %3, align 8 - br label %12 - -12: ; preds = %9, %6 - %13 = load i64, ptr %3, align 8 - ret i64 %13 +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 @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_Alloc_hiderD2Ev(ptr noundef nonnull align 8 dereferenceable(8) %0) unnamed_addr #7 comdat align 2 { +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 - call void @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1) %3) #3 ret void } -; Function Attrs: mustprogress noinline uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE16_M_construct_auxIPKcEEvT_S8_St12__false_type(ptr noundef nonnull align 8 dereferenceable(32) %0, ptr noundef %1, ptr noundef %2) #4 comdat align 2 { - %4 = alloca %"struct.std::__false_type", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 - %7 = alloca ptr, align 8 - %8 = alloca %"struct.std::forward_iterator_tag", align 1 - %9 = alloca %"struct.std::random_access_iterator_tag", align 1 - store ptr %0, ptr %5, align 8 - store ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %10 = load ptr, ptr %5, align 8 - %11 = load ptr, ptr %6, align 8 - %12 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag(ptr noundef nonnull align 8 dereferenceable(32) %10, ptr noundef %11, ptr noundef %12) - ret void -} - -; 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) #4 comdat align 2 personality ptr @__gxx_personality_v0 { - %4 = alloca %"struct.std::forward_iterator_tag", align 1 - %5 = alloca ptr, align 8 - %6 = alloca ptr, align 8 +; 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 i64, 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 ptr %1, ptr %6, align 8 - store ptr %2, ptr %7, align 8 - %11 = load ptr, ptr %5, align 8 - %12 = load ptr, ptr %6, align 8 - %13 = call noundef zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %12) - br i1 %13, label %14, label %19 - -14: ; preds = %3 - %15 = load ptr, ptr %6, align 8 - %16 = load ptr, ptr %7, align 8 - %17 = icmp ne ptr %15, %16 - br i1 %17, label %18, label %19 - -18: ; preds = %14 - call void @_ZSt19__throw_logic_errorPKc(ptr noundef @.str.4) #11 - unreachable - -19: ; preds = %14, %3 - %20 = load ptr, ptr %6, align 8 - %21 = load ptr, ptr %7, align 8 - %22 = call noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %20, ptr noundef %21) - store i64 %22, ptr %8, align 8 - %23 = load i64, ptr %8, align 8 - %24 = icmp ugt i64 %23, 15 - br i1 %24, label %25, label %28 - -25: ; preds = %19 - %26 = call noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_createERmm(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef nonnull align 8 dereferenceable(8) %8, i64 noundef 0) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32) %11, ptr noundef %26) - %27 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %27) - br label %28 - -28: ; preds = %25, %19 - %29 = invoke noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %30 unwind label %33 - -30: ; preds = %28 - %31 = load ptr, ptr %6, align 8 - %32 = load ptr, ptr %7, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef %29, ptr noundef %31, ptr noundef %32) #3 - br label %46 - -33: ; preds = %28 - %34 = landingpad { ptr, i32 } - catch ptr null - %35 = extractvalue { ptr, i32 } %34, 0 - store ptr %35, ptr %9, align 8 - %36 = extractvalue { ptr, i32 } %34, 1 - store i32 %36, ptr %10, align 4 - br label %37 - -37: ; preds = %33 - %38 = load ptr, ptr %9, align 8 - %39 = call ptr @__cxa_begin_catch(ptr %38) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32) %11) - to label %40 unwind label %41 - -40: ; preds = %37 - invoke void @__cxa_rethrow() #11 - to label %56 unwind label %41 - -41: ; preds = %40, %37 - %42 = landingpad { ptr, i32 } + %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 - %43 = extractvalue { ptr, i32 } %42, 0 - store ptr %43, ptr %9, align 8 - %44 = extractvalue { ptr, i32 } %42, 1 - store i32 %44, ptr %10, align 4 - invoke void @__cxa_end_catch() - to label %45 unwind label %53 - -45: ; preds = %41 - br label %48 - -46: ; preds = %30 - %47 = load i64, ptr %8, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32) %11, i64 noundef %47) + %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 -48: ; preds = %45 - %49 = load ptr, ptr %9, align 8 - %50 = load i32, ptr %10, align 4 - %51 = insertvalue { ptr, i32 } poison, ptr %49, 0 - %52 = insertvalue { ptr, i32 } %51, i32 %50, 1 - resume { ptr, i32 } %52 +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 +} -53: ; preds = %41 - %54 = landingpad { ptr, i32 } - catch ptr null - %55 = extractvalue { ptr, i32 } %54, 0 - call void @__clang_call_terminate(ptr %55) #12 - unreachable +; Function Attrs: nounwind +declare noundef ptr @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE5c_strEv(ptr noundef nonnull align 8 dereferenceable(32)) #2 -56: ; preds = %40 - unreachable -} +; 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 zeroext i1 @_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_(ptr noundef %0) #8 comdat { +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 = icmp eq ptr %3, null - ret i1 %4 + %4 = call i64 @strlen(ptr noundef %3) #11 + ret i64 %4 } -; Function Attrs: noreturn -declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #9 +; 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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_(ptr noundef %0, ptr noundef %1) #4 comdat { - %3 = alloca ptr, align 8 - %4 = alloca ptr, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", 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 @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %3) - %9 = call noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %7, ptr noundef %8) - ret i64 %9 -} +; 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_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #1 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(ptr noundef nonnull align 8 dereferenceable(32), i64 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) #1 +declare noundef nonnull align 8 dereferenceable(32) ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKcm(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef, i64 noundef) #4 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE11_M_capacityEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +; 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_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 +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 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +declare noundef ptr @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_local_dataEv(ptr noundef nonnull align 8 dereferenceable(32)) #4 -declare ptr @__cxa_begin_catch(ptr) +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 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE10_M_disposeEv(ptr noundef nonnull align 8 dereferenceable(32)) #1 +; Function Attrs: noreturn +declare void @_ZSt19__throw_logic_errorPKc(ptr noundef) #8 -declare void @__cxa_rethrow() +; 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 -declare void @__cxa_end_catch() +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 -; Function Attrs: noinline noreturn nounwind uwtable -define linkonce_odr hidden void @__clang_call_terminate(ptr noundef %0) #10 comdat { - %2 = call ptr @__cxa_begin_catch(ptr %0) #3 - call void @_ZSt9terminatev() #12 +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 -} -declare void @_ZSt9terminatev() +39: ; preds = %33 + br label %40 -declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_M_set_lengthEm(ptr noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 +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 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPKcENSt15iterator_traitsIT_E15difference_typeES3_S3_St26random_access_iterator_tag(ptr noundef %0, ptr noundef %1) #8 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %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 ptr, ptr %4, align 8 - %8 = ptrtoint ptr %6 to i64 - %9 = ptrtoint ptr %7 to i64 - %10 = sub i64 %8, %9 - ret i64 %10 +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: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPKcENSt15iterator_traitsIT_E17iterator_categoryERKS3_(ptr noundef nonnull align 8 dereferenceable(8) %0) #8 comdat { +; 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 - store ptr %0, ptr %2, 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: mustprogress noinline uwtable -define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxx11char_traitsIcE6lengthEPKc(ptr noundef %0) #4 comdat align 2 { - %2 = alloca ptr, align 8 - %3 = alloca i64, align 8 - %4 = alloca i8, align 1 - store ptr %0, ptr %2, align 8 - store i64 0, ptr %3, align 8 - br label %5 - -5: ; preds = %11, %1 - %6 = load ptr, ptr %2, align 8 - %7 = load i64, ptr %3, align 8 - %8 = getelementptr inbounds i8, ptr %6, i64 %7 - store i8 0, ptr %4, align 1 - %9 = call noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %8, ptr noundef nonnull align 1 dereferenceable(1) %4) - %10 = xor i1 %9, true - br i1 %10, label %11, label %14 - -11: ; preds = %5 - %12 = load i64, ptr %3, align 8 - %13 = add i64 %12, 1 - store i64 %13, ptr %3, align 8 - br label %5, !llvm.loop !11 - -14: ; preds = %5 - %15 = load i64, ptr %3, align 8 - ret i64 %15 -} +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7_M_dataEPc(ptr noundef nonnull align 8 dereferenceable(32), ptr noundef) #4 -; Function Attrs: nounwind -declare i64 @strlen(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) #4 -; Function Attrs: mustprogress noinline nounwind uwtable -define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx11char_traitsIcE2eqERKcS3_(ptr noundef nonnull align 1 dereferenceable(1) %0, ptr noundef nonnull align 1 dereferenceable(1) %1) #8 comdat align 2 { +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 = load i8, ptr %5, align 1 - %7 = sext i8 %6 to i32 - %8 = load ptr, ptr %4, align 8 - %9 = load i8, ptr %8, align 1 - %10 = sext i8 %9 to i32 - %11 = icmp eq i32 %7, %10 - ret i1 %11 + %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 @_ZNSaIcED2Ev(ptr noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13_S_copy_charsEPcPKcS7_(ptr noundef, ptr noundef, ptr noundef) #2 -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_z_algorithm_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() +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 uwtable +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 } -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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #3 = { nounwind } -attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #5 = { nocallback nofree nosync nounwind willreturn } -attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #10 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -attributes #11 = { noreturn } -attributes #12 = { noreturn nounwind } +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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+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"="+cmov,+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { noinline noreturn nounwind uwtable "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cmov,+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} @@ -1001,10 +996,15 @@ attributes #12 = { noreturn nounwind } !2 = !{i32 7, !"PIE Level", i32 2} !3 = !{i32 7, !"uwtable", i32 2} !4 = !{i32 7, !"frame-pointer", i32 2} -!5 = !{!"Ubuntu clang version 17.0.2 (++20230927043059+b7eba056b93c-1~exp1~20230927163154.45)"} +!5 = !{!"Ubuntu clang version 17.0.6 (++20231208085846+6009708b4367-1~exp1~20231208085949.74)"} !6 = distinct !{!6, !7} !7 = !{!"llvm.loop.mustprogress"} !8 = distinct !{!8, !7} !9 = distinct !{!9, !7} !10 = distinct !{!10, !7} -!11 = distinct !{!11, !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/oracle/FA_llvm17_f/ir2vec.txt b/src/test-suite/oracle/FA_llvm17_f/ir2vec.txt index c1aff1319..38a17b156 100644 --- a/src/test-suite/oracle/FA_llvm17_f/ir2vec.txt +++ b/src/test-suite/oracle/FA_llvm17_f/ir2vec.txt @@ -1,2220 +1,1692 @@ -PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 3.441593 -1.976313 -3.345061 8.194787 0.354827 0.888550 0.799832 -0.786119 1.010347 -9.295628 -3.854402 6.580499 1.502130 0.613780 -0.329945 2.735048 2.281260 1.653938 -8.743174 -0.143467 1.385181 -0.912442 -1.474642 -0.563162 -0.289064 -3.163202 6.397602 2.415086 0.695990 5.988415 -1.593946 4.664117 5.112712 -0.234028 2.491971 4.001606 -2.035899 0.069436 -4.181773 -2.298100 7.622240 2.217041 0.422440 3.174350 -1.008529 6.771568 2.472873 5.790398 4.442917 -2.382880 3.038998 4.585885 -2.238766 -1.561879 -6.821929 0.724916 2.718675 0.679155 -2.345551 2.251375 -1.560784 1.783713 2.581104 1.759005 7.587666 1.881969 5.967415 5.949112 5.472123 -4.880345 1.551218 0.818054 1.414931 0.600829 6.376967 -4.000788 -6.086877 0.757616 -1.384537 -5.786343 0.184508 -0.610713 7.718246 -4.620268 -2.374529 -1.238889 2.048258 6.798028 -3.069290 0.971398 -6.077637 -0.109697 -1.202321 8.206218 1.864535 2.015095 -1.466653 1.783815 -1.042669 1.401671 1.534562 -6.567397 2.014582 -9.260123 -4.125435 -4.944706 1.790872 2.085031 -6.540350 1.194579 -2.541702 4.449771 -9.188050 -0.996163 1.153500 1.575933 6.552297 -1.321491 -1.551572 0.049388 1.190044 2.617896 2.954324 -2.955937 1.895817 -1.266023 0.394470 0.872222 2.325008 1.776352 -6.166296 -2.149574 1.207198 0.625791 1.399660 3.415251 4.025290 -1.991978 2.925386 -3.701379 5.261243 -7.047359 -2.273634 -3.121089 -4.224702 -3.533852 4.874774 3.814971 6.330615 -1.595909 -1.673714 -0.049709 -8.512772 -10.341389 0.331410 0.294680 -1.266044 2.811474 -1.280487 2.506121 -5.641328 2.187347 5.018224 -3.025916 -3.509080 -0.014389 2.137051 1.110259 -2.111531 -1.764528 -0.963419 -1.469777 2.094876 7.558402 -1.130849 -11.667606 -9.669505 -2.752010 5.516768 -3.679439 -0.198871 -2.860606 -2.859064 -3.996729 -0.477467 -4.921160 0.189588 -0.081282 -2.852529 -7.314824 2.206141 -1.155368 0.003752 1.999155 -6.172625 1.493515 4.040361 1.701789 0.786385 1.660328 0.019875 -4.771135 -3.149878 2.323243 -3.592141 5.654770 3.199663 -0.523998 -3.279322 -3.073040 -5.116284 2.628629 -4.227225 4.048465 1.061740 -2.760983 2.175939 -5.268493 0.377205 -3.038347 1.814892 0.665676 -8.870129 7.483336 5.243503 -4.397008 -0.105001 -0.653823 3.185197 -0.368781 3.711802 -5.240623 -3.945861 1.069779 0.437749 0.064376 -0.873038 1.401907 -1.340214 -2.099220 -5.737894 -2.312176 5.332981 2.542242 -0.834153 -0.688044 2.635528 -3.314302 1.506968 5.604680 3.939624 1.812091 -5.120077 -12.985396 1.874088 -2.304701 -1.491273 0.839651 -3.289220 -1.911701 2.322563 -2.946047 5.394071 -1.183936 -3.105613 5.630194 -7.238919 -5.695371 -5.436335 -2.780891 1.367980 -0.443710 1.644669 -3.222495 0.872826 -1.435237 1.660562 -3.224751 -3.127723 3.255200 3.655992 5.614388 -0.021658 0.068169 6.158601 2.168910 -1.651000 -1.851659 -0.104164 -4.219078 1.435290 -8.161198 -1.109429 1.448847 3.177290 -4.352562 1.042307 -1.105589 2.296816 0.507290 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = 3.823390 -0.898085 -1.215565 5.820091 0.100990 -0.072919 1.655289 2.080571 0.468526 -8.994785 -4.511385 4.463290 0.785408 -0.259573 0.138486 1.821950 2.030468 2.752335 -10.628277 0.365568 2.335761 0.706569 -0.266277 -1.787338 0.182670 -2.186259 2.085754 2.195349 0.733373 5.840084 -1.767942 2.785767 5.013418 0.621361 2.105586 4.493050 -1.638892 -0.655201 -1.092845 -2.301769 7.340869 3.156731 -0.131543 2.940501 -0.116992 6.291639 1.800766 4.187311 1.385925 -2.415267 1.979932 -1.633224 -3.531055 -0.873622 -5.598524 0.582017 3.053432 2.916618 -1.943508 3.322224 -2.045344 1.450847 2.333339 -0.939698 6.675130 2.159601 4.244212 4.852828 5.551932 -4.236646 1.421712 0.397411 1.381500 0.104848 3.285200 -4.039927 -3.450218 -3.921425 -0.688812 -8.892242 -0.333534 -0.572061 9.217277 -4.586509 0.385230 0.761151 1.188220 5.676445 -2.847314 -0.437080 -5.670433 0.110589 -0.698152 6.887844 0.774699 1.329884 -0.608211 1.684913 0.061811 1.351717 0.900482 -4.958607 -1.174649 -9.459398 -1.981088 -3.685121 0.687620 1.423336 -5.478765 0.167935 0.053048 4.762194 -9.001589 -1.170599 1.801701 1.466174 2.785563 -0.000528 -2.129722 0.046294 -0.365986 2.526505 2.772379 -4.653179 1.023440 -1.598428 -0.531908 0.859040 2.120026 1.429976 -6.597941 -2.476236 1.534216 -0.611288 0.665365 3.059210 2.479680 -1.117684 2.552825 -4.846747 4.986127 -6.413124 -0.894936 -2.166110 -4.279939 -2.936783 7.323349 4.399533 3.501784 -0.261113 -1.007261 -0.311463 -6.589836 -8.412599 1.625612 0.078148 1.395799 1.243796 -0.814806 0.966454 -4.549207 0.898435 2.007835 -2.469489 -2.285907 -0.455807 3.305405 0.685604 -2.113505 -2.543087 0.113962 1.597476 0.606678 4.752234 -2.267776 -7.924223 -7.785072 -3.094691 5.301610 -2.841325 -0.398480 -2.513438 -1.281935 -2.895949 0.320042 -4.301165 1.170084 0.077106 -3.227639 -7.168893 1.937501 -1.262407 -0.177576 1.923973 -4.152158 0.894746 3.778605 2.800060 0.067050 1.285364 0.770393 -4.529233 -3.523659 0.621148 -2.511514 5.317051 3.214476 -0.020096 -4.506174 -1.872538 -4.316442 4.250612 -2.400150 3.202459 -0.854341 -2.465189 3.418578 -3.787495 1.267774 -4.189427 2.126919 1.026386 -10.725187 6.406184 4.763058 -4.202698 -0.737782 -2.653972 2.307192 1.068697 4.120346 -3.856950 -3.683055 1.570823 -1.254464 -0.061935 -2.255538 1.444829 -1.120263 -0.570224 -5.516033 -2.109890 5.087831 2.274566 -0.866901 1.009576 2.809446 -0.608404 1.575640 5.745148 2.879253 0.268846 -5.044911 -12.316355 2.336165 3.407886 0.521065 0.425414 -2.857544 -2.448412 1.694649 -1.959387 4.815044 2.917085 -2.561288 4.934148 -5.713115 -5.230748 -4.249363 -0.457377 1.977311 -1.219508 1.043144 -2.275215 1.155104 -0.345085 1.730177 -0.259858 -3.658879 -0.752217 2.635515 5.856693 1.104037 -0.904189 6.014741 0.899890 -1.767872 -0.829978 -0.447628 -1.999175 1.208874 -5.462076 -1.147886 0.601370 2.831706 -4.066202 2.610609 -0.157602 1.497748 1.360335 -PE-benchmarks/channel-assignment.cpp__main = 1.214859 -1.467144 0.548351 1.809711 0.309289 -0.034176 0.827609 0.908572 0.492141 -2.997323 -1.230067 0.351916 -0.046256 -0.079139 0.349068 0.038488 0.938696 0.541725 -4.123290 0.099235 0.716910 0.255794 0.169921 -0.459484 0.065116 -1.026001 0.653536 1.580560 0.180232 1.967150 -0.711350 0.355190 1.692322 0.258297 0.835825 1.897223 0.447583 -0.118724 -0.438268 -0.132137 2.913493 1.009609 -0.650481 0.847407 0.421098 2.345535 0.940496 1.837446 1.288356 -0.874839 1.140127 -1.734866 -1.153334 -0.755545 -2.175803 0.166368 1.974572 1.665886 -1.214609 1.470145 -0.806626 0.396828 0.726859 -0.061319 2.140915 0.625072 1.429966 1.270018 2.085870 -1.854784 -0.009200 0.481007 0.920412 0.373199 0.489798 -1.859477 -0.975760 -3.905281 0.217384 -2.687542 -0.517548 -0.271774 1.504136 -1.405474 0.339610 1.121843 -0.504391 1.532716 -1.094042 -0.233527 -2.238529 0.010361 0.703660 2.670249 0.004365 0.002965 0.716576 0.816789 0.434899 1.108508 0.895292 -1.825966 -1.078188 -3.893772 -0.927554 -1.204779 0.192264 0.034430 -1.631627 -0.112548 0.933635 0.369590 -2.625889 -0.307207 0.866930 0.882875 0.549957 -0.915595 -0.274192 -0.152316 -0.020188 0.817900 1.418306 -1.952677 0.439170 -0.948272 0.489008 0.760468 0.660053 0.100329 -1.148014 -0.776015 0.619626 0.430957 -0.118834 0.381005 0.233131 -0.609185 0.976445 -1.894716 2.133548 -2.148803 0.099486 -0.797160 -0.692575 -0.830546 3.380866 0.783806 0.867623 0.410074 -1.213400 0.242194 -1.659880 -3.536066 0.563501 0.423041 0.887410 0.237838 -0.496183 0.367126 -1.164419 -0.145492 -0.039462 -0.812544 -0.681720 -0.060355 -0.553537 0.249386 -0.705039 -0.884287 0.821960 1.568349 0.023705 1.481739 -1.045955 -2.586413 -1.896455 -1.390288 1.792588 -0.827252 -0.310047 -0.328271 -0.515547 -1.816779 0.888650 -1.465096 0.513244 -0.313873 -1.750618 -2.460253 0.814722 -0.824060 0.965390 1.021665 -1.521587 0.135561 -0.149532 1.463099 0.222957 0.461644 0.527654 -2.213830 -1.830042 -0.429255 -0.453062 2.515231 -0.055065 0.114362 -0.732034 -0.689909 -1.031101 1.662391 -0.986227 0.801876 -0.149693 -1.527960 1.416844 -0.786736 0.106802 -1.635339 0.990050 1.014965 -1.794000 2.858265 1.985428 -1.616552 -0.883236 -0.962547 0.367549 0.665122 1.973600 -1.361319 -1.296934 0.783438 -0.106449 -0.066212 -0.993024 0.621473 0.084909 0.075414 -2.248460 -1.281896 1.293296 1.194615 -0.174276 0.604667 1.171628 0.442572 -0.583827 2.556399 0.396473 0.399093 -1.459588 -4.012329 1.217106 2.331254 0.381545 0.475446 -1.826244 -0.968986 0.500246 0.541398 1.745981 2.823692 -0.361097 1.931048 -1.609161 -1.857429 -1.493339 -0.449539 0.603675 -0.726270 0.427102 -0.956876 0.528839 -0.393195 0.382902 0.079839 -0.583355 -0.873504 0.549212 1.346009 0.449954 -0.500125 2.194833 -0.002997 -0.952778 -0.323264 -0.004131 -0.566424 1.118181 -0.544437 -0.473591 -0.208072 1.075639 -1.134565 0.846565 -0.093471 0.490587 0.467214 -PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = 3.102643 -3.134291 -2.749365 7.218782 0.427297 1.104002 0.777127 -0.581780 1.439841 -9.462164 -3.107277 6.390180 1.197524 1.018322 -0.405121 2.558166 1.922862 0.864004 -7.442316 -0.327473 1.449823 -0.973682 -1.490205 0.090558 -0.271813 -2.982162 6.313263 2.261546 0.622655 5.437884 -1.417144 4.698881 4.995266 -0.163487 2.148198 3.411426 -1.243785 -0.585684 -4.078675 -1.953283 7.126424 1.977091 -0.047646 2.485253 -1.514371 5.797511 3.107732 6.599565 5.049199 -2.135821 2.499283 2.531781 -2.386823 -1.362397 -6.317817 0.671348 1.755422 0.906763 -2.004700 1.844679 -1.519312 1.327006 2.046817 1.665617 7.839983 1.741933 6.374923 5.903265 4.417812 -4.403470 1.171285 0.913553 0.657561 0.463513 6.150489 -3.573861 -4.368801 0.271660 -0.125317 -4.790774 -0.815255 -0.794008 6.873415 -4.002341 -2.571664 -1.378017 1.765063 6.320136 -2.803299 1.586105 -6.116542 -0.063066 0.504877 7.583675 1.208321 1.297377 -1.285236 1.585034 -0.701902 1.271291 2.759185 -5.398365 1.226216 -7.499305 -3.081161 -4.100924 1.295909 2.312658 -5.902525 1.084887 -1.784245 3.161540 -8.565085 -0.768337 1.666953 1.410957 8.492489 0.114755 -1.164651 -0.008553 1.403281 2.128954 2.415242 -2.479534 2.353024 -1.910431 1.796025 0.898287 2.085500 1.580192 -7.066377 -1.784416 1.301003 0.979466 1.055258 3.154699 4.181474 -1.796250 2.620082 -3.022193 4.423708 -6.518140 -1.664565 -2.525074 -2.918656 -2.961222 6.543085 4.583482 6.118478 -0.868258 -2.628685 0.072783 -7.776726 -10.214352 0.013399 0.541181 -1.662305 2.903475 -1.240350 2.413580 -4.584407 2.559449 4.655602 -2.629066 -3.120106 0.066069 0.118119 1.072752 -1.735439 -1.483820 -0.542941 -1.154146 1.491238 7.381949 -0.981432 -11.906314 -9.630268 -2.646378 4.580165 -3.042362 -0.075947 -2.763323 -2.590801 -4.030720 -0.488540 -3.885092 0.358051 0.047876 -3.489719 -6.348356 2.135058 -1.000038 -0.795806 1.892006 -5.223981 1.062241 2.170548 2.118553 0.781036 1.069527 -0.199088 -4.584292 -3.378901 1.949769 -3.496772 6.150098 2.006451 -0.687467 -2.784618 -2.674102 -5.073364 2.533348 -5.078630 3.935267 0.876903 -2.991956 1.699140 -5.512720 -0.080736 -2.281898 1.987545 0.800524 -7.704495 7.352391 4.981458 -3.551633 -0.254763 -0.342015 2.673379 0.029308 3.189550 -4.545220 -3.436040 0.805816 0.681797 0.050023 0.204231 1.339016 -1.521221 -2.439652 -5.566801 -2.886554 4.183785 2.342712 -0.598674 -0.503179 2.560136 -2.758388 0.520882 5.382232 3.491421 1.695948 -3.696879 -11.983861 1.757162 -1.736071 -1.866083 1.160355 -4.158545 -1.303181 1.851426 -3.596995 4.572647 -1.727840 -2.494277 4.821374 -7.360054 -4.774412 -4.576440 -2.882469 0.808839 0.008063 1.732510 -2.439584 0.977537 -1.393360 1.081300 -3.207093 -2.672317 2.971636 3.030749 4.259532 -0.520762 0.358057 5.079045 1.753065 -1.108917 -1.702506 -0.141153 -3.891792 2.065762 -7.395296 -0.793655 1.336348 2.640713 -3.561160 0.555046 -1.355453 1.671681 -0.027983 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.964898 -0.515640 -1.028873 2.246820 -0.096822 -0.593847 0.605827 0.984874 0.150678 -3.722620 -2.095263 1.382135 0.465968 -0.631521 0.589587 1.062842 0.855940 0.843620 -3.862625 0.573611 0.927227 -0.053554 -1.383591 -0.163391 -0.111456 -1.139568 -0.642769 0.871512 -0.061152 2.438158 -0.871478 1.345296 2.034252 -0.296431 0.969434 1.903504 -0.642772 -0.213659 0.581535 0.058132 3.418541 1.194908 -0.115266 0.955596 0.463328 2.595014 -0.647974 3.548767 -0.182717 -0.998796 2.095694 -0.899764 -1.256300 0.355641 -2.457810 0.527593 2.336081 0.952671 -1.304499 1.670493 -1.410626 0.763042 1.070482 -0.081908 3.411138 2.023559 1.774241 2.113836 2.765551 -1.232596 0.734187 0.150765 0.735753 -0.506097 1.017488 -1.376782 -0.699899 -1.976995 0.256383 -3.229885 0.184227 -0.403553 4.374024 -2.191288 -0.075672 0.835924 1.045124 2.542652 -1.750863 0.100492 -2.261988 0.094190 -0.509506 3.532130 -0.076496 0.922417 -0.715875 0.996007 -0.070644 0.574487 -0.299886 -1.963438 -1.977307 -4.433530 -2.141140 -1.122682 -0.267340 0.286095 -3.251460 -0.166042 1.260340 1.199754 -3.970795 -0.063333 0.795008 0.536851 1.551526 2.037368 -2.380450 -0.303833 -0.386281 1.152413 0.799083 -0.795899 0.632970 -2.538246 0.209372 0.747411 0.883212 0.222629 -3.451440 -0.182224 0.531638 -0.669596 -0.181320 1.274067 1.065658 -1.029562 1.287731 -1.879966 1.910594 -3.728659 -0.789872 -1.706027 -2.415173 -0.705076 3.046086 2.667917 1.853751 0.330121 -1.129878 -0.382943 -3.712124 -3.927521 0.180148 -0.573862 0.907315 -0.067697 -0.348686 -0.100871 -1.378102 0.364895 1.011098 -1.534353 -0.766116 -0.881433 3.172995 0.159908 -1.134181 -1.430293 -0.194486 1.093680 -0.251786 1.708458 -0.864971 -2.726867 -3.622349 -1.258826 2.082541 -0.793906 0.433574 -0.991653 -0.150434 -2.399796 0.288073 -1.569539 0.103258 -0.402960 -1.212148 -2.783122 0.625144 -0.251239 -0.705835 -0.048223 -1.925489 0.475340 1.945820 1.463528 0.353651 0.621165 0.107207 -2.303557 -2.362263 0.101394 -0.836649 2.618879 2.354875 0.085600 -0.936142 -0.617414 -2.662372 1.900685 -2.201601 1.077168 0.292724 -1.447775 1.784301 -2.096776 -0.892121 -1.990911 0.894328 -0.089758 -3.920092 3.309268 1.881563 -2.151305 -0.421261 -1.860802 1.478523 0.614394 2.293147 -1.223031 -0.676654 0.637688 -0.308770 -0.192030 -0.688367 1.104671 -0.795034 0.353063 -2.334547 -0.812293 2.398737 1.553234 -0.365919 0.494398 0.401419 -0.181537 0.809352 2.333516 1.038494 -0.474680 -1.575618 -5.223988 0.761926 0.131839 -0.374849 0.230921 -1.513658 -1.094820 0.071684 -0.660804 2.290574 0.829710 -0.263307 2.016247 -2.714868 -2.542590 -1.575457 0.336165 0.448871 -0.988711 0.558879 -1.047956 0.409195 0.118021 1.344853 0.288063 -2.111679 -1.778947 0.646935 2.139592 0.057314 -1.032232 2.548361 0.357854 -0.639606 -0.556538 -0.287777 -0.280870 0.890865 -1.915090 -0.743366 -0.457860 1.104922 -1.851215 1.768462 -0.156141 0.985980 1.081820 -PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 8.057361 -1.148251 -9.022462 23.731620 0.488451 2.124515 2.769478 -1.180263 0.380086 -29.016350 -11.957307 16.154191 4.633255 2.424929 -0.423579 7.254546 4.540388 8.027140 -25.563025 -1.598457 5.658785 0.400965 -0.430259 -5.048554 -0.220634 -5.273918 14.289156 5.674882 2.585806 17.196159 -4.330146 12.907663 14.681011 0.174973 4.160400 9.521397 -4.308031 0.983350 -11.248325 -7.356485 21.048644 5.555001 1.547575 9.383983 -4.291227 18.465754 7.508408 12.941821 7.983592 -6.471600 5.769163 10.258762 -6.488318 -4.898269 -17.473507 2.886647 10.557958 7.181361 -4.810573 7.142274 -1.463355 4.521226 7.528672 0.465644 19.584713 7.375315 15.081034 18.041495 15.852926 -13.784218 4.588190 -0.636209 2.108291 -1.506313 16.529001 -15.991298 -14.704724 -1.123162 -5.372971 -23.345188 1.138511 -0.817887 26.272654 -13.721348 -4.155575 -1.575680 6.668921 18.702545 -7.760957 2.269270 -16.476295 -0.723841 -6.632866 25.228046 5.080423 3.588613 -4.997731 4.675461 -0.850784 3.234423 5.190281 -15.110847 5.182632 -26.124838 -11.076417 -10.744986 5.218437 6.528308 -17.084395 1.068921 -7.037521 11.129434 -29.154721 -4.789839 4.790040 7.164508 14.239870 -6.311427 -7.618014 2.035169 1.720300 6.439795 8.008603 -10.502288 5.070371 -0.716813 -4.543317 1.338161 6.607090 4.984881 -20.459887 -8.283584 -0.147021 1.194714 4.613010 8.115597 10.883186 -3.400178 8.224047 -12.084322 14.592026 -21.439107 -4.554071 -5.825218 -14.085978 -9.832737 12.479466 7.595862 14.218383 -5.579462 -5.278843 -1.007781 -23.035948 -26.735739 3.553578 2.980367 -1.310185 9.120884 -4.048533 5.912657 -15.770685 5.329628 16.586332 -7.471210 -10.140746 0.095866 12.167314 2.153969 -6.453049 -7.005339 -1.036404 -1.503231 5.331445 19.400691 -3.385026 -24.640442 -27.737220 -7.579195 15.896316 -9.789106 -0.777344 -8.637120 -5.898236 -11.160164 -0.734377 -15.320036 2.008426 2.833174 -9.231875 -20.923281 6.935438 -2.882433 -3.490215 7.078886 -16.286688 4.012583 11.305054 6.915821 0.462214 2.630687 2.347692 -15.328898 -11.288686 4.615322 -10.076486 11.812491 9.854269 1.149117 -12.592317 -7.228905 -13.012573 7.408166 -7.660853 10.545294 -0.707628 -3.218679 6.440497 -16.047562 4.470151 -10.483779 3.725826 2.633757 -28.914874 21.334903 12.417078 -10.310712 -0.327916 -2.619504 8.331011 -1.725936 10.032309 -14.899682 -13.108782 3.641764 -0.868314 -0.097998 -5.992041 3.636161 -3.986888 -6.124433 -16.149735 -5.213106 14.145523 7.091339 -2.669811 2.013271 9.638527 -9.075565 1.804656 17.364896 11.227667 2.637313 -12.484810 -32.896375 4.958230 -5.820092 -1.850839 -0.055113 -7.605905 -5.191433 8.554281 -4.125718 14.391313 -0.705804 -9.781752 15.389348 -19.865983 -15.023409 -12.987776 -4.890890 6.275710 -2.385796 0.671108 -8.620253 2.892108 -1.372786 3.096925 -5.943924 -11.269762 6.761535 8.345161 19.412144 -1.466024 -0.087871 18.230298 5.274624 -4.627295 -2.807693 -1.421609 -9.430920 3.059869 -22.166853 -2.022317 5.070531 8.250809 -12.150615 3.883139 -4.849365 2.796322 2.831832 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.238471 -0.121010 -0.022331 0.362141 0.107552 -0.289054 0.110900 0.160585 -0.069783 -0.591989 -0.228487 -0.104835 0.012376 -0.243889 0.166652 0.124264 0.172770 0.259881 -0.613354 0.251526 0.171389 0.043556 -0.223996 -0.141414 -0.012924 -0.235382 -0.216738 0.269369 -0.017725 0.423424 -0.299532 0.105331 0.337683 0.025407 0.347443 0.434675 0.167717 -0.063283 0.188529 0.207386 0.741756 0.163466 -0.080707 0.045745 0.292781 0.507954 -0.015653 0.321362 -0.162783 -0.162061 0.230003 -0.304014 -0.109983 0.013560 -0.541281 0.158590 0.435822 0.355661 -0.442424 0.336600 -0.292843 0.116324 0.217424 0.008969 0.625061 0.183993 0.151359 0.331574 0.632117 -0.207274 0.047015 0.054094 0.320908 -0.133591 0.128240 -0.067048 -0.063568 -1.007005 0.003512 -0.578952 0.088529 0.081745 0.507826 -0.414217 0.177331 0.460363 0.087362 0.419438 -0.357556 -0.156380 -0.509433 0.008988 -0.018727 0.610329 0.037155 0.053326 -0.019512 0.293840 0.045105 0.223699 -0.068269 -0.440348 -0.466535 -1.033993 -0.502924 -0.207857 -0.178265 -0.168583 -0.591634 -0.153960 0.609147 0.376411 -0.687325 0.076934 0.157013 0.077404 -0.102144 -0.202089 -0.336391 0.029194 -0.208353 0.181758 0.145869 -0.181830 -0.011137 -0.433208 0.130414 0.151518 0.210165 -0.065200 -0.283830 0.007126 0.127584 -0.074604 -0.166470 0.065575 0.004780 -0.344423 0.224400 -0.411293 0.431888 -0.517582 0.081730 -0.348578 -0.409788 -0.071438 0.612683 0.263389 0.140958 0.122310 -0.338942 0.021159 -0.581103 -0.860475 0.178673 -0.142649 0.214877 -0.060478 -0.092127 -0.095399 -0.122804 -0.115947 0.163961 -0.384351 -0.149004 -0.165121 0.330064 0.001745 -0.208199 -0.340937 0.035604 0.568340 0.044589 0.144848 -0.343606 -0.140925 -0.448244 -0.334105 0.368370 -0.116950 0.085266 -0.092282 -0.027670 -0.545783 0.328796 -0.338066 0.122929 -0.276302 -0.132471 -0.506922 0.026530 -0.157958 -0.035275 -0.053050 -0.335136 0.176957 0.028793 -0.000167 -0.010292 0.029905 0.103586 -0.453984 -0.510239 -0.029956 0.063639 0.401750 0.280870 0.164279 -0.198004 -0.119405 -0.357376 0.430678 -0.370759 0.125167 0.198397 -0.455517 0.477152 -0.278353 -0.268385 -0.268941 0.273057 0.038768 -0.320107 0.665529 0.440087 -0.513850 -0.156315 -0.386261 0.232816 0.215375 0.628835 -0.196459 0.016607 0.198882 0.003136 -0.077745 -0.217617 0.231301 -0.093840 0.316721 -0.515943 -0.258161 0.313479 0.428087 -0.034133 0.124891 -0.036726 0.076651 -0.143477 0.551900 0.100071 0.113607 -0.317787 -0.602005 0.171264 0.038857 0.159971 0.121338 -0.210110 -0.164419 -0.091439 0.076487 0.509782 0.481435 -0.083319 0.412650 -0.471715 -0.533261 -0.217261 0.100630 0.082499 -0.353128 0.262941 -0.302374 0.011958 -0.110230 0.318743 0.086171 -0.183710 -0.454430 0.074762 0.226017 0.182903 -0.351489 0.502107 -0.008408 -0.227861 -0.061496 -0.007220 0.090285 0.241679 -0.118567 -0.273411 -0.215103 0.236261 -0.305491 0.454957 -0.133852 0.220331 0.268904 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.478565 -0.050464 -0.034550 0.684005 0.116776 -0.487013 0.230169 0.398760 -0.234134 -0.913382 -0.297243 0.073772 0.023820 -0.337455 0.137667 0.127646 0.216062 0.317786 -1.360822 0.331920 0.202529 0.015739 -0.439488 -0.453344 -0.035516 -0.264367 -0.049238 0.653857 -0.064396 0.715419 -0.448550 0.095987 0.477852 0.162255 0.670303 0.634121 0.211175 -0.061531 0.059472 0.150199 1.149039 0.538467 -0.416182 0.085773 0.458819 0.863776 0.236072 0.104614 -0.638760 -0.179660 -0.008729 -0.077483 -0.313965 -0.168150 -0.836178 0.087802 0.810297 0.658366 -0.622096 0.611078 -0.525700 0.156091 0.396599 0.242994 1.048902 0.132403 0.425111 0.557424 0.968202 -0.503328 0.082742 0.033612 0.560633 -0.291904 0.131854 -0.044861 -0.391634 -1.587004 0.121946 -1.385305 -0.036240 0.238784 0.722768 -0.585776 0.304875 0.563994 0.191070 0.609706 -0.813171 -0.273376 -0.796332 -0.078999 -0.243002 1.427361 0.095438 0.150072 0.180928 0.614554 0.290559 0.433912 -0.066417 -0.760358 -0.317219 -1.657689 -0.529177 -0.302946 -0.355149 -0.246992 -0.642039 -0.319932 1.005982 0.772728 -1.049093 0.006355 0.246911 0.077558 -0.034997 -0.660893 -0.394909 0.326641 -0.488642 0.193138 0.463531 -0.444247 0.057745 -0.165788 0.194921 0.267804 0.385494 0.206950 -0.864509 0.038903 0.422109 -0.326710 -0.244261 0.111853 -0.126999 -0.476239 0.309269 -0.867001 0.841727 -0.832244 0.362620 -0.425598 -0.652385 -0.064545 0.331012 0.509193 -0.068249 0.143254 -0.273620 0.219681 -0.872717 -1.611551 0.471509 0.177081 0.173030 -0.281630 -0.175748 -0.103909 -0.415808 -0.223591 0.556166 -0.594201 -0.354022 -0.278236 0.915331 0.189350 -0.392809 -0.234149 0.178753 0.768522 0.359289 0.428968 -0.639149 -0.501584 -0.851000 -0.477815 0.650190 -0.190978 -0.201521 -0.095016 -0.186703 -0.872544 0.589474 -0.563664 0.512198 -0.408774 -0.129782 -0.848684 0.080147 -0.229151 -0.021513 -0.054403 -0.515435 0.193960 0.076719 -0.240639 -0.151960 0.052567 0.456227 -0.530659 -0.709863 0.143788 0.186615 0.716332 0.379427 0.267017 -0.353687 -0.106814 -0.568873 0.772729 -0.266822 0.310234 0.114201 -0.718689 0.807091 -0.408424 -0.453424 -0.306306 0.498725 0.158202 -0.084170 1.333841 0.893585 -0.798991 -0.303290 -0.457587 0.305755 0.327302 1.025386 -0.612603 -0.276942 0.313097 -0.021916 -0.141669 -0.183759 0.325959 -0.045715 0.335494 -0.841737 -0.425664 0.488147 0.577339 0.025533 0.323942 -0.096976 -0.137744 -0.394323 1.001969 0.172884 0.285258 -0.604507 -0.831463 0.330332 -0.436502 0.211811 -0.055152 -0.170374 -0.468266 -0.151916 0.162996 0.781140 0.854412 -0.699505 0.677460 -0.872307 -0.836421 -0.622386 0.139788 0.143390 -0.574664 0.396925 -0.457962 0.121968 -0.162079 0.440047 0.091137 -0.251459 -0.487065 0.059108 0.306765 0.236423 -0.720686 0.879827 -0.042297 -0.342937 -0.190005 -0.003606 -0.032754 0.482601 -0.295363 -0.436125 -0.359616 0.536025 -0.478259 0.612286 0.049593 0.357491 0.496703 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = 0.709586 -0.616390 -1.285763 3.635620 -0.118272 0.483270 0.290244 -0.891382 -0.042077 -4.206139 -1.476489 1.552775 0.817901 0.754139 -0.084154 1.217373 0.424104 0.689116 -3.540466 -0.324990 1.055008 -0.042402 0.166050 -0.168306 -0.092038 -1.242518 2.623060 0.769928 0.310605 2.481447 -0.605244 2.362893 2.146872 -0.298569 0.487687 1.516636 -0.503150 0.444037 -1.833682 -0.348251 2.773892 0.538593 0.107845 0.688529 -0.913102 2.618001 1.289315 1.806907 0.843970 -1.230800 1.271417 2.403494 -0.581278 -0.857949 -2.238076 0.312950 1.895553 1.304373 -0.746100 0.805097 -0.351824 0.589036 1.029749 0.847770 3.027126 0.814888 2.689857 2.647156 1.998906 -2.071678 0.667002 0.136359 -0.242543 -0.557361 2.872654 -2.070262 -2.411666 0.252898 -0.776630 -2.810521 -0.154550 0.412818 2.679791 -1.843807 -1.268422 -0.329823 0.770701 2.893388 -1.002650 0.824147 -2.245323 -0.151827 -0.783720 3.894312 0.808370 0.308946 -0.609702 0.927762 -0.032908 0.494006 0.855775 -2.323660 0.889593 -3.294031 -1.940475 -1.827498 1.175851 1.360158 -3.029988 0.080931 -1.199635 1.010894 -4.181519 -0.076920 0.669944 1.640763 2.996773 -1.490410 -0.926342 0.362271 0.430907 0.781380 1.446681 -1.114494 1.027866 -0.468992 0.145260 0.380856 0.713214 0.509224 -2.654395 -1.116908 -0.184397 -0.065272 0.678626 1.392885 2.235145 -0.476442 1.271605 -1.749446 2.131313 -3.351541 -0.295048 -0.876932 -2.043183 -1.367394 0.622915 1.030907 1.740465 -1.362679 -1.614604 0.148998 -3.623015 -4.062568 -0.104344 0.733528 -0.379080 1.678671 -0.790173 1.232558 -2.174693 1.254115 2.489971 -0.916269 -1.358750 0.188862 1.174798 0.571130 -0.927847 -0.628761 -0.322631 -1.084951 0.739431 3.653907 -0.273607 -3.542916 -4.481552 -1.159741 2.226936 -1.384059 -0.126573 -1.410387 -1.127139 -2.365828 0.327289 -2.204125 0.010060 0.350384 -1.149163 -2.838304 0.940311 -0.436324 -0.423986 0.991693 -2.486395 0.286190 1.623369 0.196272 0.588118 0.172284 0.220499 -1.889732 -1.311669 1.014720 -1.907904 1.761817 0.894296 -0.114399 -1.250527 -1.248271 -1.854963 0.796497 -0.442381 1.456875 0.125749 -0.591097 0.814505 -2.388217 0.639744 -1.076828 0.405802 0.453784 -3.078014 3.229850 1.823761 -1.211194 0.111621 0.326332 1.179171 -0.422202 0.943600 -2.057574 -1.752987 0.339619 0.037868 0.105431 -0.607086 0.501450 -0.888997 -1.058759 -1.972447 -0.804502 1.761784 1.043116 -0.323698 0.109648 1.367193 -1.705862 0.124962 2.008645 1.571927 0.468737 -1.469622 -4.380699 0.876300 -2.427996 -0.804803 -0.107602 -0.937595 -0.492434 1.471905 -0.240044 2.085218 0.114231 -1.574219 2.269543 -3.070707 -2.210325 -2.098689 -1.125914 0.571299 -0.134691 -0.303411 -1.273068 0.599444 -0.146596 0.274615 -1.059673 -1.539860 1.465847 1.198261 2.693734 -0.456201 0.072468 2.526137 0.769537 -0.489118 -0.747619 0.184768 -1.539625 0.634137 -2.760429 -0.445308 0.851902 1.306470 -1.637364 0.139103 -1.231765 0.268238 0.414752 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = 4.687367 -1.271323 -4.520800 11.815211 -0.418676 1.384804 1.457457 -0.211366 0.028277 -16.344954 -7.677491 7.277878 2.496127 1.344206 0.458134 4.472067 2.549629 3.530298 -15.987451 -0.592871 4.268455 0.094017 0.190818 -1.415658 0.312058 -3.897994 6.096356 2.609675 1.092344 9.610476 -2.488201 7.811594 8.384573 0.015218 2.269006 5.578687 -4.562247 -0.086969 -4.196531 -3.182135 11.464597 3.095285 0.719865 3.824351 -2.418077 10.106399 2.754885 7.755332 4.667426 -4.143386 4.723617 3.262208 -3.973373 -1.371616 -9.142201 0.971084 5.689276 3.893297 -2.371150 3.585283 -2.286612 2.803633 3.894924 -0.118748 11.871459 4.418125 9.138014 9.398977 8.176568 -6.898549 3.224576 -0.380432 -0.171990 -1.096985 7.572744 -8.112737 -6.430715 -2.230172 -2.227244 -13.388336 0.110201 -0.553472 14.495832 -7.362526 -2.514646 -1.029816 3.537862 10.980671 -4.307748 1.810030 -8.991053 -0.031858 -2.479533 12.029992 1.909325 1.926632 -2.787419 2.561723 -0.873447 1.348629 2.288444 -7.940844 0.340865 -14.342879 -5.920974 -5.956986 3.295854 4.140958 -10.504187 1.404708 -2.730861 5.161370 -15.820236 -1.878128 2.307657 4.389006 7.394582 0.066691 -5.397618 -0.348130 0.828523 4.688917 4.550372 -5.173506 3.434894 -3.580184 -1.204796 1.304925 3.616315 2.299365 -11.012517 -4.411687 0.592114 -0.330195 2.214689 5.763899 6.872267 -0.710265 4.704162 -6.578652 7.910330 -12.310835 -2.412724 -4.086148 -7.254296 -5.199578 8.317753 7.580989 6.600816 -2.171775 -3.257636 -0.256693 -13.190198 -13.471776 0.421422 0.830939 0.367703 4.343403 -2.125808 3.423218 -8.100729 3.794709 6.882881 -4.017730 -5.039545 -0.654740 5.942220 1.763152 -3.753469 -3.876566 -1.028106 -0.672177 0.625840 10.498032 -1.566731 -12.720162 -15.844584 -4.490585 8.756512 -5.323132 0.001686 -5.482476 -2.186586 -6.578115 -0.448483 -7.717210 -0.307383 1.645727 -5.532860 -11.456215 3.577405 -1.301176 -2.364643 3.229820 -8.560647 1.613587 7.264624 4.653746 1.342966 1.504868 0.274265 -7.712319 -6.182460 2.350068 -6.174124 7.245400 6.011248 -0.577979 -7.017955 -4.042178 -7.406096 5.092232 -3.760249 5.791924 -0.655567 -2.744436 3.505812 -8.499849 2.114096 -5.355355 1.911148 0.785953 -18.038104 11.558731 6.856153 -5.844562 0.014198 -3.050605 5.257612 -0.610089 4.857631 -6.798851 -5.840884 1.121373 -0.624296 0.125296 -2.711133 2.356751 -2.912736 -3.603063 -8.431438 -2.988347 8.691050 3.711389 -1.479287 1.193227 5.051861 -3.548695 2.773522 8.632176 5.822843 -0.092450 -6.220076 -19.710090 2.631102 -0.062758 -1.248420 0.128203 -4.680389 -3.069670 3.772223 -3.299128 8.143792 0.971877 -4.506197 8.243219 -10.084615 -8.080919 -7.848387 -2.026638 2.451434 -0.920371 -0.009394 -4.089881 1.554654 0.120742 2.274763 -2.203274 -7.438131 1.657465 4.614471 10.909723 -0.366906 -0.171226 9.661720 3.153160 -2.150991 -2.372179 -0.272554 -5.133968 2.101630 -10.907606 -1.347961 2.806511 4.224748 -6.827740 2.026858 -2.214061 1.885895 1.369890 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 11.903030 -2.219369 -0.272941 12.110091 3.234217 -3.701739 1.489488 8.044522 1.286899 -14.159470 -7.898091 8.891445 -0.629363 0.029964 4.330265 1.871185 5.100419 4.602514 -23.448324 3.410209 -1.252105 1.125187 -4.639540 -8.435689 2.085596 1.613948 5.236282 7.134318 2.095416 8.972222 -8.758312 2.804627 6.213731 2.693548 8.391273 2.705877 1.178137 -3.474849 -6.492331 -9.137940 18.760015 6.675852 -0.674826 11.257595 3.327500 10.761591 3.507132 9.411209 5.470193 -2.490167 3.677671 -5.840957 -6.583939 -0.313430 -15.382982 5.336764 9.745306 4.507489 -7.254508 7.553854 1.059327 4.850574 6.122633 -4.957630 15.484334 3.359127 9.891481 8.723321 13.249190 -8.819897 3.045517 0.049285 12.165256 2.243272 2.686270 -11.931276 -2.272938 -19.485634 2.383114 -20.613314 4.073838 -4.957614 13.360621 -9.053244 5.604144 5.130726 -0.744896 10.210117 -11.077413 1.210202 -10.914258 0.145581 -1.831981 16.610624 -1.401318 1.368914 3.671176 4.684768 0.104177 6.273579 2.180920 -7.418571 1.521477 -23.535912 -7.466557 1.032779 -2.079433 -3.460927 -6.981082 2.387960 4.303589 7.418813 -13.537044 -8.050470 1.985685 0.085923 -2.655222 -3.427400 -1.473956 -2.215348 -4.110573 8.914124 4.211226 -10.870474 5.415350 -3.544320 -3.996941 5.725612 10.964501 5.329536 -7.604898 -4.910921 2.990983 2.376499 -3.100501 1.237679 0.749776 -4.754296 6.598213 -8.717414 9.804941 -11.582660 -3.149250 -6.652417 -2.901214 -2.713497 13.819547 2.202893 6.563309 8.143011 -1.387805 -0.035776 -10.952978 -18.580866 7.752548 4.472583 1.352136 1.626563 -0.504089 1.524513 -6.978994 -7.088196 7.123323 -10.281008 -11.069827 -6.823100 5.655346 -0.024645 -4.595187 -8.010205 8.843869 11.138622 -0.862894 6.095104 -4.558181 -14.069864 -9.980024 -5.872057 9.990101 -3.601242 -0.378300 0.855551 0.002057 -7.266490 3.101738 -11.569934 5.232969 -1.205547 -9.401810 -12.974916 2.323768 -2.554847 3.553656 2.497253 -9.805737 6.580440 1.598696 10.876101 -5.246716 5.775791 7.806111 -14.275838 -14.731278 -3.815076 0.965848 12.388561 2.472476 2.681946 -7.980765 -4.226141 -4.174881 10.488965 -12.190858 6.015336 -1.115549 -5.363925 6.352785 -8.588366 -2.931847 -8.433057 5.515129 3.674347 -13.740332 15.849120 9.763679 -12.785009 -4.569091 -13.647158 8.230710 2.017108 18.365537 -9.533090 -4.842033 4.102475 3.331791 -2.644359 -9.684153 5.750351 3.106895 -3.001559 -12.521817 -8.751728 7.499990 5.717876 0.962134 3.256696 6.639725 2.260852 -3.738744 18.095693 2.731086 2.562954 -10.264174 -22.113964 2.995337 13.552090 3.093862 3.405706 -10.776657 -7.850051 -0.831258 1.195424 9.786902 10.319141 1.858425 9.674781 -11.107602 -9.829979 -7.171329 1.952694 1.652568 -5.248549 3.990120 -7.918887 -0.601806 -3.136434 4.612745 -4.070867 -1.199042 -9.267458 -0.028567 7.165197 2.046536 -3.697438 13.372782 5.136178 -6.460850 0.535016 -2.840251 -3.779564 3.800866 -6.794526 -3.545328 -1.354554 2.736090 -9.482052 6.716269 2.905993 4.671293 0.294030 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/aho-corasick-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.075961 -2.511849 -3.403094 10.349401 0.153531 -4.195171 1.612558 4.400992 0.174263 -10.284036 -3.664691 4.592492 1.853660 -0.858734 1.507902 2.671721 0.838733 1.829053 -14.487868 3.395423 0.769926 -0.427815 -6.153471 -4.219636 -0.059617 -1.307378 2.367885 5.809484 -0.204627 6.908921 -4.763199 2.924091 5.814237 0.092855 5.991067 4.215400 1.098992 -0.799205 -3.529190 -1.240648 11.264135 6.891818 -4.207112 2.673352 0.848129 9.290722 2.706523 7.416223 -4.822609 -2.753453 2.301686 -1.375343 -4.092343 -1.621024 -8.756237 2.710791 8.598792 5.570525 -4.974609 5.517838 -4.754056 2.339573 5.063818 3.132546 12.565525 3.517802 8.020087 7.582357 10.378344 -6.215397 2.318413 0.596224 5.495410 -2.101193 4.578802 -4.460074 -5.561227 -11.746152 2.715892 -12.359804 -0.349999 0.820787 9.114090 -8.023555 2.425347 3.629181 3.600124 8.548113 -9.854607 1.421862 -8.500341 -1.217527 -2.780738 16.422646 0.063784 1.810443 1.131900 6.494707 1.779264 3.789414 0.993040 -7.583970 -0.874867 -14.642434 -6.314672 -1.657995 -3.536414 -0.370673 -8.097103 -1.625819 5.894637 6.354104 -11.949164 -1.457401 1.799232 1.288527 7.193541 -1.854222 -2.379854 2.380976 -2.288932 2.510016 4.918002 -5.696500 3.540337 -1.970343 1.707439 4.256687 4.452634 4.060755 -11.909936 0.100458 3.695262 -2.175874 -0.810201 2.783278 0.542128 -6.168466 4.271827 -8.278602 8.679365 -11.126736 -0.420151 -4.427448 -7.868989 -0.868734 6.548224 4.923071 3.193840 1.640998 -3.410589 1.207353 -11.000708 -17.409475 2.603172 3.342332 0.339145 -0.893322 -1.582974 0.409278 -5.596515 -0.597261 7.016048 -7.209434 -6.442632 -2.269771 8.962500 1.905062 -3.798617 -3.076263 2.439674 5.356873 2.929563 7.982511 -3.600070 -11.395405 -11.578368 -4.295702 7.372487 -1.623844 -1.391349 -1.868809 -2.370343 -10.019257 3.746412 -7.145333 5.553562 -1.594307 -3.032709 -10.125402 2.201888 -1.424340 0.421768 -0.049080 -6.729074 2.826287 1.714102 1.424669 -2.090469 2.426943 4.987713 -8.214323 -8.893439 1.941193 0.007950 11.096548 3.340710 2.087147 -2.076470 -2.151624 -7.198057 8.111315 -6.728833 4.279553 0.233754 -5.220692 6.787826 -7.220950 -4.666980 -6.482132 4.797915 1.512997 -1.974594 14.547181 8.908708 -8.073503 -1.986651 -4.730605 4.911398 2.631212 11.319640 -7.846227 -4.861505 2.502369 1.817556 -1.568063 -2.690350 3.093275 -1.555613 -0.344494 -7.944059 -4.302823 5.268162 4.669615 0.315855 1.639168 0.232045 -3.501741 -3.965354 10.329174 3.440675 1.741518 -7.241029 -12.951017 3.609251 -3.390404 -0.401829 -0.989036 -5.739343 -4.199873 -0.347242 0.689609 8.001010 7.445647 -5.046943 7.463266 -12.272570 -8.292561 -7.158942 1.097443 0.303251 -3.591694 3.399790 -4.637388 1.393808 -0.364640 3.499722 -2.583023 -3.629271 -3.745232 1.111975 4.408230 -0.244569 -5.988460 10.259262 1.865882 -2.015944 -2.616120 -0.333146 -3.385180 2.966564 -5.279640 -2.952464 -1.420830 5.079927 -6.100666 4.683891 1.347244 2.062936 3.221621 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.314023 -1.766105 -1.151194 4.067630 1.271632 -1.317694 -0.310987 1.153899 0.414772 -3.173543 -1.875253 3.719624 -0.111494 -0.142014 1.086947 0.593432 1.430675 -0.042858 -4.981865 1.491791 -1.652743 -1.017352 -2.962506 -1.667841 0.186691 0.665168 2.584998 2.206973 0.031529 1.482300 -2.291533 1.508246 0.816937 0.787166 3.090219 -0.305105 -0.151710 -1.377793 -2.556298 -2.459531 5.086920 1.409368 0.205024 2.908410 1.142385 2.554258 0.641372 4.616307 3.030256 0.272368 2.372653 -0.660013 -1.252512 0.283186 -5.047723 1.538022 1.447918 -0.948061 -1.776402 1.264588 -0.231921 1.410654 1.545801 -0.325852 5.784652 0.627636 3.437832 2.369361 3.086920 -1.833795 0.483035 0.417228 4.632364 1.284583 0.669551 -3.035448 -1.133961 -3.597297 0.601931 -3.366877 1.832487 -1.891492 3.236202 -1.912334 0.359631 0.120227 -0.124648 2.526245 -3.470924 1.162057 -3.351687 0.059170 -0.303706 3.735201 -0.628866 0.676876 0.642490 0.755196 -0.571357 1.811886 0.043233 -2.162856 1.085680 -6.111331 -2.599603 0.893449 -1.089723 -1.891578 -2.380263 1.078902 -0.101442 2.054862 -2.605418 -2.843246 -0.228118 -1.120698 1.171293 0.464869 -0.295064 -1.003682 -0.259357 3.136188 1.225697 -1.299571 1.605946 -2.350834 -0.285122 1.427853 3.369060 1.743696 -2.352388 -0.544575 1.004435 1.328549 -0.726133 -0.485770 -0.291560 -1.308290 1.450596 -1.024166 2.388410 -3.199407 -1.731758 -3.193725 -0.759852 0.226437 4.830475 1.534696 3.780276 3.010839 0.086528 0.301793 -3.684751 -5.909827 1.376828 0.479158 -0.864374 -0.178038 0.218639 0.569960 -1.311742 -2.081019 3.293527 -3.490566 -3.768756 -2.551388 -0.260472 0.302647 -1.221172 -1.853376 2.100155 2.763596 -0.283535 1.991569 -0.829893 -6.777038 -2.709604 -1.330679 1.987180 -0.892569 0.171926 0.627070 -0.061017 -2.508395 0.401891 -2.870375 1.353508 -0.528428 -2.530578 -2.934951 0.038855 -0.408776 1.639790 -0.162748 -2.489845 2.236422 0.763321 3.654799 -1.387920 2.633137 1.317272 -3.842280 -4.216120 -0.858676 0.856901 4.502862 0.742797 0.691587 -1.543094 -1.377593 -2.267483 2.596610 -5.296297 1.478306 0.943341 -1.962040 0.915607 -3.029309 -1.288671 -1.223937 1.593874 0.526655 -4.451184 3.863560 2.983645 -3.946427 -1.453217 -4.213174 2.606543 -0.050319 5.761110 -2.466609 -0.187517 0.696777 2.609745 -1.197517 -2.142905 1.563530 1.123235 -1.432090 -3.794963 -3.006679 1.615959 1.244029 0.635935 -0.828525 0.393499 0.211698 -1.422382 4.915049 0.764392 1.019710 -2.672493 -7.271777 0.203694 3.600649 -0.172326 2.063323 -3.676407 -2.075519 -1.272323 -1.551227 2.741309 0.339176 0.533330 2.374371 -2.992892 -2.146898 -2.287515 0.336053 -0.596627 -1.337857 2.347329 -2.563644 -0.975486 -1.153478 1.334638 -2.393943 0.396174 -2.146699 0.078886 0.948959 0.524258 -0.704896 2.843002 2.004577 -1.411240 -0.636706 -0.223508 -1.728353 1.445905 -3.785770 -1.255113 -0.830036 0.458859 -2.098274 1.011210 1.412225 1.939348 -0.479719 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.206554 -0.269356 -0.602733 3.047863 -0.255281 -2.101910 1.321190 2.223464 -0.647318 -4.572019 -1.517353 0.080374 0.586246 -1.299677 0.245708 0.924508 0.440135 1.476376 -7.263615 1.351459 1.857526 0.516207 -1.462116 -1.882309 -0.147936 -1.477343 -1.068782 2.539788 -0.307056 3.673043 -1.638476 0.572152 2.694369 0.102794 2.245878 3.383934 0.399827 0.065877 0.952061 1.101017 4.620445 3.020616 -2.590904 -0.223468 1.313167 4.231504 0.763401 1.040714 -3.974224 -1.384666 0.017347 -0.528796 -1.905136 -0.847675 -2.872005 0.325896 4.532316 4.047378 -2.429387 2.890706 -2.777295 0.501462 1.935966 1.413660 4.484177 1.437337 1.926616 2.759214 4.562787 -2.334996 0.779328 -0.196921 1.347976 -2.026606 1.139262 -0.746379 -2.152929 -7.169892 0.853419 -7.091905 -0.859583 1.427623 3.716474 -3.310821 1.589166 2.467265 1.682424 3.291434 -3.656406 -1.000573 -3.438633 -0.468157 -1.239849 7.607311 0.160299 0.760087 0.452319 3.212106 1.480484 1.471154 -0.032435 -3.441855 -2.251638 -6.959937 -2.074344 -1.995515 -1.455929 0.046023 -3.675315 -1.711360 4.678829 2.754551 -5.706479 0.682116 1.477334 1.069483 1.042733 -1.893716 -2.146035 1.877977 -2.360784 0.227753 2.191931 -2.334471 0.215696 -0.701439 0.916922 1.451756 0.941977 0.865782 -5.397290 0.457159 1.899855 -2.248865 -0.558032 1.435750 0.087613 -2.166744 1.488451 -4.731778 3.916558 -4.526155 1.568041 -1.412017 -3.502748 -0.626648 0.991686 2.806372 -1.110106 -0.296094 -1.576623 0.752164 -4.452264 -7.002871 1.522649 0.888827 1.206731 -1.260496 -1.055576 -0.609847 -2.047804 -0.095270 1.782891 -2.311737 -1.134782 -0.811861 5.788515 1.086512 -1.681341 -0.690361 0.090597 2.896597 1.429316 2.386934 -2.674458 -1.875769 -4.890580 -2.160918 3.304182 -0.772298 -0.917249 -1.357479 -0.930213 -4.250974 2.575126 -2.400348 2.227665 -1.468177 -0.327806 -4.232180 0.869644 -0.860425 -0.447450 -0.063594 -2.436237 0.393468 0.758744 -0.931621 -0.314437 -0.264118 1.993135 -2.696530 -2.872236 1.033876 0.095931 3.600379 1.905920 0.852406 -1.060775 -0.374430 -2.930753 3.625928 -0.544998 1.606563 -0.083975 -2.832603 4.053043 -1.981706 -1.821234 -2.350047 2.138601 0.549332 0.293386 6.720614 3.810570 -3.083822 -0.787503 -1.475769 1.284660 1.656618 3.677967 -2.849517 -2.201100 1.342013 -0.918546 -0.512782 -0.572095 1.319253 -1.084884 1.736502 -3.363544 -1.036038 2.452747 2.539883 -0.205928 1.959800 -0.287110 -1.378691 -1.482429 3.871965 1.175223 0.564928 -2.745472 -4.002089 1.902210 -2.882784 0.761006 -1.327016 -0.743951 -1.939097 -0.046635 1.603221 3.551160 4.796978 -3.552683 3.085078 -4.721218 -4.077117 -3.008940 0.798977 0.819580 -2.047556 0.893426 -1.665639 1.110157 0.047415 1.919234 0.917547 -2.259784 -2.143768 0.703559 2.179705 0.582454 -3.686789 4.260314 -0.469550 -1.146825 -1.108514 -0.087507 -0.308826 1.601595 -0.435505 -1.446897 -1.158743 2.811556 -2.482965 2.934606 0.223956 1.012119 2.484404 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.667788 0.275765 -2.603501 4.695788 -1.179973 -0.980332 0.822131 -0.292023 -0.421793 -5.227520 -0.264728 2.131049 0.763790 0.696338 -1.336970 2.867520 -0.170990 1.008306 -3.376515 0.560210 2.318570 0.746021 -0.515764 -0.002483 0.630622 -1.132188 1.259964 0.840788 0.158587 3.558141 -0.973381 2.805747 3.627017 -0.820877 -0.167971 2.552478 0.122398 1.748981 -0.075682 0.072105 2.129595 0.631904 -1.311064 -0.091582 -1.482777 4.076630 1.393595 2.339367 -3.295761 -2.354188 -0.201107 1.828211 -1.235118 -1.168434 -1.724765 1.016739 1.380595 3.794266 -1.256053 1.431893 -1.527343 0.812345 2.308686 1.915086 4.219820 2.964988 2.513225 4.278982 4.351652 -2.101057 1.757977 0.017075 -0.380484 -1.561581 2.966288 -1.025251 -2.553880 0.107813 -0.839282 -4.010853 -1.225710 1.487317 4.780358 -3.624578 -0.725420 -1.266543 2.024993 4.833194 -2.898607 1.510396 -3.473559 -0.390955 -0.620880 6.145888 0.736268 0.877880 -1.742058 2.712185 0.068353 -0.003373 -0.345630 -2.524614 -0.322596 -2.170958 -1.867647 -2.514131 -0.026801 2.549070 -6.112548 -0.901589 -0.202544 3.241585 -7.491809 0.208640 0.849054 1.504004 5.262847 1.785068 -1.314570 1.906361 -0.572535 -0.695826 0.620578 -1.039923 1.440387 -0.673834 -0.629258 0.530288 0.357841 1.989672 -7.922946 0.183515 0.713149 -2.954458 1.540174 4.043241 2.532402 -0.937435 1.502797 -3.941356 2.693273 -5.211092 -1.745998 0.294315 -5.169864 -1.831193 0.871739 3.376381 1.200483 -3.071381 -1.898755 -1.515371 -6.248160 -5.435084 -0.110677 0.447429 -0.193604 2.177082 -1.310720 0.366826 -3.273678 1.654095 3.634570 -1.685514 -1.725571 -0.807048 4.756225 1.446232 -0.227915 -1.002305 -2.037314 -0.619489 0.822076 3.966595 -0.787752 -3.705804 -7.731929 -1.125805 2.796754 -1.193862 -0.327876 -2.983612 -1.645246 -4.188180 0.763260 -2.409088 0.259421 0.158723 0.266693 -4.461692 2.717810 -0.411730 -2.037977 0.145538 -2.418238 0.301453 1.646620 -1.776009 0.855746 -0.304279 0.151045 -1.222068 -1.520865 3.374036 -1.667923 1.824563 2.190996 -0.052073 -1.145132 -1.852846 -3.499307 3.267077 -0.883877 2.535669 1.396715 0.952771 3.124200 -3.276809 0.255534 -2.147040 1.555806 0.035518 -3.361997 3.734999 2.539624 -2.243179 0.705614 0.506068 2.270073 1.197645 0.804396 -2.910168 -3.140309 1.211755 0.007104 -0.164137 0.097592 0.146909 -2.235079 0.769416 -2.143691 0.481604 2.627640 1.207993 -1.221804 0.216475 0.085300 -4.366453 0.390005 1.959331 2.842202 0.417103 -2.450519 -4.374049 0.475124 -5.445782 -0.309854 -1.345476 -1.463705 0.206190 2.493982 -1.817534 3.396408 -0.902856 -4.098216 2.958980 -6.672382 -3.738500 -1.678240 -0.207437 0.430607 0.283305 0.893526 -0.732013 0.957343 1.477264 1.678246 -1.446922 -3.974163 1.579717 1.760972 4.408697 -2.298952 -1.737526 3.829670 -0.452633 0.397877 -1.567472 0.996853 -1.344498 -0.709148 -4.484616 -0.720453 0.914387 2.837104 -3.735299 2.838923 -0.910025 -0.166744 1.518526 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.739142 0.416136 -6.631625 13.952260 -2.549958 -6.960928 4.639985 6.671879 -0.526541 -16.942247 -4.429411 8.267874 3.895508 -3.254156 -1.415023 5.140519 0.093564 6.693050 -22.981462 4.477231 5.984758 2.309121 -7.151485 -6.909113 -0.571715 -4.654435 1.499827 7.208648 -0.196762 13.876102 -4.913341 3.702609 11.246769 -1.011946 6.826458 11.981233 1.700221 1.595546 -0.956073 0.973157 15.146781 12.631349 -7.883045 1.647652 0.957717 15.753742 5.342020 4.776613 -14.402082 -6.410203 -2.838315 3.503800 -7.608419 -4.495663 -9.735025 1.862769 12.216947 12.168062 -7.483097 10.027248 -7.971009 1.660149 8.259662 6.860970 15.877002 5.414461 8.257493 12.285620 17.142475 -9.023041 4.549762 -0.612955 3.555211 -7.153929 11.262478 -2.025487 -12.668154 -13.545630 2.242141 -22.867485 -4.114251 5.393663 15.940154 -14.063156 4.650186 5.324504 8.902150 13.976853 -13.417403 -2.389112 -12.214108 -2.509276 -6.176060 28.958214 2.517095 4.649755 -1.123887 11.664237 4.226912 3.271741 0.885740 -13.891360 -1.703236 -21.013103 -5.823491 -8.786238 -5.382717 3.384761 -13.722180 -6.149323 9.598756 15.565166 -23.568524 2.441671 5.114868 2.417018 11.985777 -6.044645 -4.390914 9.102554 -6.117329 -1.161929 7.106943 -9.794312 1.741881 3.025419 2.172646 4.659647 2.507191 5.808364 -23.519085 0.752637 7.071701 -7.361178 0.151785 8.521774 2.847930 -9.837819 5.676265 -17.389166 13.445224 -16.225850 2.121186 -2.269951 -15.838222 -4.502312 2.509692 8.860551 0.645944 -5.419262 -4.470334 0.979477 -18.315119 -27.760442 6.104417 3.616424 1.124688 -1.248396 -3.640813 -1.696113 -11.013614 2.531442 10.275244 -7.802997 -5.076241 -0.173909 21.969847 3.928027 -5.542402 -1.793874 -1.948384 4.569985 9.774544 12.179045 -7.700178 -14.223970 -21.043955 -5.873242 12.914013 -3.113103 -3.544116 -6.748734 -6.353667 -13.568976 5.503400 -9.724938 8.910624 -3.691789 0.808992 -16.388979 3.983556 -2.408660 -2.586110 -0.205606 -9.622713 1.634325 4.861733 -6.012166 -2.034743 -0.733501 7.552894 -8.114202 -7.823914 7.896113 -2.389584 13.447532 7.571474 3.148819 -4.613816 -1.565517 -12.161224 11.872198 -5.051796 7.525273 -0.284686 -7.346231 14.376999 -9.367777 -6.276791 -9.294721 7.722357 1.192056 -0.115513 22.602114 14.029134 -9.979474 -0.234539 -0.160973 5.283459 6.305416 11.434482 -12.817394 -11.453990 4.979748 -3.865833 -1.005598 -1.059368 3.272635 -5.890987 4.307673 -10.435715 -1.539710 9.973045 7.507336 -1.525637 4.661660 -0.696088 -10.218256 -3.538712 12.562883 7.011284 3.308958 -12.777629 -15.346012 6.906092 -17.042892 0.646703 -6.006683 -2.599395 -4.937819 3.453181 0.539887 12.275080 10.046456 -15.218374 11.358262 -21.979211 -15.461257 -11.244210 0.898262 3.467684 -4.223677 4.113509 -5.144596 5.331270 0.458531 6.514860 -0.744388 -9.395695 -0.073994 4.777423 8.919463 -0.520617 -11.667054 16.612868 -1.212556 -2.113539 -3.810415 -1.039062 -3.667990 2.125538 -8.212150 -4.237025 -1.654062 11.300928 -10.331761 10.599674 -0.705455 2.829400 8.386436 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.448199 -0.125339 -0.007377 0.501680 0.288297 -0.345386 0.147330 0.254810 -0.010629 -0.920365 -0.401945 0.061499 0.003827 -0.310335 0.197390 0.188439 0.356875 0.428958 -0.716203 0.316033 0.187323 0.100003 -0.324203 -0.210400 0.002225 -0.294751 -0.272558 0.276638 0.071128 0.609199 -0.461767 0.111624 0.494365 0.011926 0.478141 0.621199 0.339726 -0.125314 0.206614 0.080452 1.151294 0.182214 0.028282 0.300062 0.444384 0.720931 -0.120150 0.723494 -0.083973 -0.235485 0.371571 -0.513256 -0.194876 0.065624 -0.841010 0.385102 0.617828 0.423881 -0.674415 0.460495 -0.200095 0.200364 0.289765 -0.114900 0.768791 0.380237 0.112008 0.494901 0.976038 -0.344294 0.007033 0.156359 0.551417 0.009952 0.261044 -0.230156 -0.018444 -1.136091 -0.023292 -0.694840 0.254058 -0.066928 0.984869 -0.642838 0.283366 0.696675 0.105723 0.568139 -0.403633 -0.220003 -0.750638 0.071332 -0.046034 0.817388 0.014563 0.119111 -0.109676 0.326431 -0.016353 0.351985 -0.073734 -0.610092 -0.694540 -1.447578 -0.752689 -0.317839 -0.220707 -0.233168 -0.834599 -0.186310 0.708262 0.588033 -0.992192 0.036850 0.211581 0.096918 -0.105748 -0.036774 -0.513714 -0.066647 -0.250775 0.200524 0.028881 -0.245965 -0.085457 -0.621788 0.037798 0.150939 0.334513 -0.129779 -0.443038 -0.037313 0.060699 -0.029163 -0.242182 0.021732 0.026232 -0.621271 0.350272 -0.472246 0.521167 -0.734796 -0.094834 -0.502298 -0.659560 -0.154626 1.045543 0.225898 0.466272 0.244823 -0.423229 -0.172177 -0.803793 -1.109473 0.280113 -0.294649 0.338749 0.042209 -0.095286 -0.121878 -0.220236 -0.272552 0.190820 -0.562976 -0.223248 -0.267497 0.587957 -0.192711 -0.240982 -0.621858 0.079880 0.848344 0.004281 0.135456 -0.498733 -0.266191 -0.612320 -0.504974 0.528517 -0.216778 0.245435 -0.072651 0.010800 -0.658733 0.335032 -0.507911 0.164168 -0.404825 -0.284218 -0.755512 0.103633 -0.255536 -0.090824 0.027438 -0.528338 0.346693 0.069746 0.177017 -0.054449 0.064855 0.072020 -0.841624 -0.805432 -0.130722 0.088305 0.592544 0.458123 0.220892 -0.300122 -0.253781 -0.531308 0.573382 -0.751388 0.171509 0.315984 -0.508808 0.625148 -0.450818 -0.307460 -0.557970 0.395432 0.099640 -0.673118 0.893323 0.527854 -0.759713 -0.249139 -0.641721 0.348491 0.282984 0.958677 -0.285760 -0.015710 0.374068 -0.043389 -0.122145 -0.434438 0.357317 -0.075289 0.533206 -0.810738 -0.411614 0.431144 0.636053 -0.101201 0.165445 0.085901 0.158271 -0.100163 0.890688 0.214803 0.179336 -0.519919 -1.009251 0.236378 0.176810 0.241936 0.220966 -0.366706 -0.245410 -0.070522 0.076559 0.738147 0.492832 0.144083 0.625823 -0.702292 -0.759484 -0.106133 0.095681 0.219388 -0.511386 0.370859 -0.490309 -0.040565 -0.219594 0.441164 0.074278 -0.257745 -0.654322 0.120907 0.416860 0.272044 -0.361729 0.727116 0.048187 -0.363995 0.068375 -0.045180 0.269840 0.249833 -0.301381 -0.330151 -0.285236 0.234497 -0.460745 0.716819 -0.183624 0.286342 0.323076 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 1.915230 0.463950 -0.564355 2.287853 -0.270152 -2.305452 0.923871 2.014314 -0.844037 -2.696983 -0.751467 0.777593 0.310909 -1.461001 0.089581 0.404521 0.150954 1.347719 -5.540341 1.388927 0.810164 0.427875 -1.824814 -2.371759 -0.148974 -0.235931 -0.462253 2.127771 -0.312691 2.541530 -1.424400 0.020194 1.479068 0.473869 2.190357 2.052661 0.328099 0.029988 0.485583 0.435462 3.334650 2.775818 -2.033137 0.151169 1.438680 2.855961 1.058828 -0.473612 -3.653541 -0.511296 -0.964796 0.551088 -1.457447 -0.771234 -2.166257 0.026613 3.243456 2.725006 -1.719732 2.320695 -1.857901 0.394315 1.649836 1.207610 3.503253 0.612173 1.279814 1.971026 3.423042 -1.518862 0.743647 -0.606586 1.886750 -1.812657 0.660284 -0.099767 -2.020177 -5.197212 0.552683 -6.087208 -0.305021 1.302349 2.599733 -2.279503 1.795864 1.617812 1.403306 2.024159 -3.300988 -1.205930 -2.227230 -0.504380 -1.721935 6.127765 0.134826 0.846841 0.608983 2.530273 1.390568 1.084669 -0.345976 -2.568206 -0.394096 -5.426280 -1.073077 -0.880379 -1.896957 -0.600011 -1.855671 -1.506270 3.531832 2.875536 -3.963617 -0.015258 0.848270 -0.062310 0.090018 -2.572088 -1.251515 2.083757 -2.508497 0.302795 1.699006 -1.956136 0.009704 0.533388 0.183378 1.162959 1.089916 1.347483 -4.112130 0.510095 1.731165 -1.774064 -0.776615 0.793103 -0.709645 -1.642334 0.795297 -3.731531 2.943593 -2.908247 1.484279 -0.940828 -2.462629 -0.042124 -0.681854 1.718844 -1.279757 -0.091027 -0.281090 0.921018 -3.039765 -5.548107 2.178356 1.001714 0.398469 -1.574027 -0.534867 -0.856951 -1.657512 -0.759921 2.289829 -1.988075 -1.186168 -0.999347 5.074010 0.952706 -1.443498 -0.137471 0.424340 2.424217 1.994277 1.459085 -2.343982 -1.623401 -3.309109 -1.207614 2.383748 -0.392973 -1.243071 -0.542601 -0.712822 -2.786352 2.025196 -1.846020 2.412485 -1.270215 0.366034 -2.902908 0.160363 -0.530749 -0.033318 -0.583166 -1.492624 0.455074 0.577292 -1.183959 -1.038153 0.058033 2.363586 -1.486220 -2.057438 1.001607 0.872074 2.418320 1.374843 1.181467 -1.277540 0.194181 -2.038573 2.744583 -0.291682 1.230478 -0.190047 -2.106307 3.272591 -1.290989 -1.718157 -1.174397 1.719175 0.361601 0.770374 5.066328 3.061593 -2.485713 -0.616339 -1.185478 1.036200 1.280733 3.249206 -2.562047 -1.766247 1.111159 -0.673526 -0.563105 -0.504986 0.947112 -0.452818 1.242525 -2.367994 -0.758107 1.691411 1.598377 0.180957 1.421424 -0.851935 -1.445507 -1.643709 3.167416 0.685763 0.898989 -2.362519 -2.174474 1.194701 -2.827508 0.961623 -1.113919 0.069923 -1.809239 -0.414838 1.031803 2.473082 3.380168 -3.506163 2.032026 -3.642635 -2.910959 -2.454919 1.039230 0.674620 -1.842908 1.015723 -1.335107 0.748578 -0.066436 1.702172 0.611319 -1.160151 -1.455074 0.209182 1.106010 0.534803 -3.344822 3.135554 -0.411907 -0.962595 -0.665566 -0.286174 -0.317721 1.147427 -0.631070 -1.232629 -1.220119 2.308425 -1.814198 2.508118 0.553390 1.113739 1.943337 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 1.597252 0.220957 -0.556670 1.999271 -0.432421 -2.383653 1.122034 2.024132 -0.741321 -2.712022 -0.603604 -0.142100 0.515821 -1.589201 0.169136 0.496120 -0.117854 1.512933 -5.142196 1.386575 1.221589 0.666003 -1.741664 -2.114467 -0.289537 -0.750898 -1.134821 2.098156 -0.432488 2.609081 -1.134960 -0.239027 1.778101 0.055612 1.783362 2.599527 0.911178 0.389355 0.999697 1.402335 3.291497 2.820582 -2.313251 -0.341526 1.419466 2.932358 0.889381 -0.323435 -4.641964 -0.888042 -0.816925 0.090011 -1.365886 -0.985072 -1.860805 0.113826 3.805232 3.339825 -1.990589 2.601073 -2.142352 0.131662 1.665676 1.476614 3.213776 0.857760 1.123216 1.876047 3.664996 -1.423443 0.603757 -0.429900 1.266478 -2.284614 1.019704 0.054769 -2.014112 -5.805164 0.780989 -5.703054 -0.697946 1.682506 2.347801 -2.501409 1.805611 2.332825 1.631839 2.085763 -3.176533 -1.474940 -2.125334 -0.587526 -1.548805 6.646519 0.285791 0.776604 0.534680 2.863253 1.668666 1.088170 -0.168640 -2.536733 -1.262618 -5.335664 -1.321453 -1.200369 -1.840161 -0.331909 -2.146997 -2.069278 4.182665 2.331875 -4.226810 0.793232 1.315635 0.408038 0.707830 -2.788685 -1.513059 2.341822 -2.413647 -0.325089 1.637214 -1.968745 -0.152515 0.436718 0.825084 1.188380 0.483233 0.812271 -4.217010 0.752072 1.567688 -1.981620 -0.710630 0.886757 -0.591146 -2.174782 0.908168 -4.035352 2.949615 -3.197790 1.812762 -0.610650 -2.958437 -0.158403 -0.550989 1.425705 -1.576236 -0.660010 -1.142530 0.797997 -3.135358 -5.888768 1.925621 0.993097 0.800868 -1.572419 -0.764597 -1.134505 -1.436556 -0.349049 1.897460 -1.706764 -0.570153 -0.460665 5.531705 0.928206 -1.445554 -0.185391 0.109610 2.503726 2.240920 1.387457 -2.288945 -0.889259 -3.232540 -1.261704 2.367880 -0.134630 -1.094386 -0.791642 -0.969217 -3.450393 2.306813 -1.721158 2.463646 -1.402570 0.503155 -2.871613 0.256447 -0.546426 -0.149547 -0.624143 -1.517765 0.159325 0.200381 -1.746954 -0.727287 -0.470766 2.312826 -1.593416 -2.079572 1.123527 0.688380 2.476661 1.272052 1.284730 -0.570465 0.434526 -2.094888 2.593302 -0.006285 0.931140 -0.132254 -2.314860 3.639547 -1.153692 -2.055052 -1.624185 1.658277 0.249603 2.149053 5.339667 2.989166 -2.171395 -0.565763 -0.474368 0.674897 1.594869 2.918162 -2.326621 -1.839890 1.213400 -1.073302 -0.443584 -0.280201 0.911009 -0.858253 1.854618 -2.223948 -0.501404 1.590916 2.019785 -0.041095 1.818422 -0.972084 -1.522656 -1.941451 2.861601 0.618883 0.667974 -2.128543 -1.589680 1.472322 -3.822657 0.766907 -1.598357 0.220899 -1.501264 -0.084723 1.742883 2.453842 4.278734 -3.471781 2.023626 -3.822894 -3.209872 -2.204945 1.040860 0.785041 -1.877837 0.687510 -1.182320 1.150407 0.041819 1.633286 1.007091 -1.524667 -1.543863 0.142131 1.044521 0.316546 -3.648638 3.277500 -0.835660 -0.752536 -0.702959 -0.327667 0.084686 1.375293 0.202442 -1.281232 -1.402485 2.444869 -1.684111 2.773966 0.048059 0.834784 2.521098 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 1.985402 -1.705968 -0.915062 3.618751 0.798214 0.511521 0.608923 0.579777 1.204351 -5.680661 -1.478791 4.617859 0.220879 0.502444 -0.529587 0.912715 1.649717 1.577471 -3.672650 -0.076060 0.336545 0.492419 -0.064040 -0.617431 0.094223 -0.877661 2.941198 0.506066 1.082652 2.744606 -1.171962 1.595412 2.504969 -0.045146 0.921254 2.026286 1.061835 -0.551477 -2.219421 -2.186845 4.384322 0.985913 0.438852 2.759476 -0.297814 3.040160 1.506526 4.327204 3.734923 -1.203795 0.531112 -0.650833 -1.634265 -0.803806 -3.741670 1.162050 0.271576 0.984948 -1.351008 1.228646 0.481909 0.653827 1.034681 -0.489768 3.091265 0.847131 2.412662 3.263450 2.965327 -2.553936 0.178378 0.750463 1.421088 1.858935 3.816338 -2.545319 -1.885026 -0.472783 -0.678991 -2.237524 0.163275 -1.202382 5.107698 -2.555591 -0.129126 0.561758 0.477183 3.117915 -0.797944 0.452668 -3.717921 0.135366 0.755236 3.314278 0.585811 0.519204 -1.072400 0.388339 -0.500036 0.831776 2.002511 -2.827711 0.353871 -4.231331 -1.161439 -2.239743 0.153821 0.806777 -2.965125 0.496822 -1.131979 3.604114 -4.884323 -0.829987 0.619065 0.295542 4.302936 0.399828 -0.215036 -0.087647 0.553841 0.564673 0.519302 -2.552269 0.194997 0.057617 -0.304614 0.144831 1.131056 0.665892 -3.441578 -1.511581 0.408047 1.640628 0.336655 0.937406 1.754573 -1.814616 1.361477 -1.513508 1.916111 -2.685096 -1.765527 -0.461597 -2.057946 -1.891475 6.405615 0.833940 4.254884 0.014421 -0.996429 -1.059339 -3.268374 -5.291127 1.162419 -0.243165 -0.088399 2.119377 -0.326230 0.835042 -2.385912 0.371027 1.406366 -1.309190 -1.366145 0.350575 -0.961548 -0.700827 -0.296478 -1.901561 0.287150 0.984687 1.046681 2.980573 -1.172203 -6.376029 -3.917190 -1.456546 2.494101 -1.693818 0.415101 -0.566192 -1.145657 -0.790222 -0.475517 -2.277251 0.538105 -0.280983 -2.340784 -3.679143 1.435875 -1.075833 -0.168622 1.761795 -2.524892 1.145508 0.212597 2.163682 -0.271047 0.431221 0.023450 -3.836194 -2.392743 0.048728 -1.721911 3.376780 0.724203 0.000000 -2.167156 -1.559866 -2.473066 1.747577 -3.989231 1.677590 0.354509 -1.026639 1.127749 -2.358639 0.702082 -2.523068 1.539301 1.124531 -5.177479 3.526367 2.305451 -2.134251 -0.342709 -0.648781 1.056632 0.587879 2.352652 -2.455267 -2.246569 1.405776 -0.143961 -0.024935 -1.589362 0.672173 -0.173052 -0.089260 -3.504072 -1.614374 1.763029 1.210360 -0.570961 -0.347668 2.210100 -0.537709 -0.268085 3.853472 1.932609 1.351684 -2.912108 -6.652818 1.311346 1.715950 -0.084081 1.161240 -2.753750 -0.525900 1.544855 -2.148205 2.226300 -1.321122 0.110567 2.632798 -4.186597 -2.433732 -0.856151 -1.516429 1.305596 -0.134383 1.632723 -1.605926 0.202100 -1.107650 0.570218 -1.729141 -0.941180 1.372954 1.739548 2.380407 0.753049 0.595714 2.857604 0.687927 -1.308615 0.493210 -0.277126 -0.827012 -0.011873 -4.610626 0.057687 0.710275 1.065691 -2.011302 1.260905 -0.520199 0.436944 -0.284133 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.924978 -0.545719 -0.207341 1.187406 0.101650 -0.010766 0.333950 0.593001 0.195532 -2.275640 -1.213600 0.436001 0.110420 -0.078601 0.468723 0.433065 0.572463 0.506747 -2.292082 0.159738 0.585641 0.115277 -0.050203 -0.025828 0.078173 -0.609592 -0.410680 0.373499 0.146003 1.304548 -0.574599 0.740958 1.127871 -0.017983 0.337817 0.958507 -0.132270 -0.254451 0.180759 -0.136782 1.896885 0.428769 -0.065665 0.605367 0.097671 1.391906 -0.347963 1.993091 0.555519 -0.606707 1.182917 -1.339870 -0.675950 0.228053 -1.363863 0.397008 1.107974 0.719670 -0.591712 0.781621 -0.629618 0.436752 0.460180 -0.574216 1.634851 0.964130 0.968344 1.101328 1.387318 -0.840527 0.286610 0.158614 0.350460 0.095220 0.391277 -0.992279 -0.056175 -1.826960 0.019273 -1.614904 0.029166 -0.439381 2.174788 -1.133026 0.019011 0.716300 0.191802 1.402874 -0.679284 0.285788 -1.399464 0.133830 0.213168 1.347975 -0.026347 0.186774 -0.356885 0.339668 -0.090304 0.362752 0.171607 -0.911927 -1.339458 -2.385683 -1.080484 -0.557063 0.108764 0.198214 -1.799695 0.187691 0.709085 0.677817 -2.076682 -0.155456 0.359489 0.541982 0.559918 1.044694 -1.121370 -0.446863 -0.002811 0.717331 0.460281 -0.791295 0.355489 -1.493554 -0.011912 0.376261 0.534616 -0.055246 -1.243396 -0.438356 0.205293 0.000174 -0.020709 0.565547 0.675796 -0.391421 0.734239 -0.881523 1.002786 -1.772452 -0.458780 -0.760584 -1.023999 -0.492430 2.669091 1.239690 1.012199 0.489912 -0.774663 -0.289902 -1.643147 -1.911336 0.026102 -0.258651 0.764760 0.259134 -0.195377 0.166020 -0.632582 0.193338 0.017023 -0.747060 -0.425894 -0.315511 0.631767 -0.086966 -0.450503 -1.051744 0.125739 0.917724 -0.562065 0.878775 -0.406247 -1.187290 -1.648881 -0.849135 1.135045 -0.547243 0.340559 -0.473717 0.128833 -1.138859 0.215948 -0.868454 -0.138578 -0.012359 -1.122199 -1.575828 0.442432 -0.281613 -0.237615 0.374571 -1.021816 0.295882 0.704642 1.240087 0.268190 0.338439 -0.073030 -1.504626 -1.443563 -0.384272 -0.634123 1.433310 0.881662 -0.084718 -0.697095 -0.546572 -1.148387 1.220864 -1.218723 0.503817 -0.064404 -0.688899 0.754706 -0.960383 -0.247421 -1.268989 0.499162 0.191586 -2.387190 1.579476 0.886435 -1.097092 -0.312947 -1.264986 0.730820 0.361691 1.297665 -0.537590 -0.310614 0.353282 -0.022574 -0.077204 -0.753216 0.610096 -0.322684 0.070629 -1.327296 -0.588749 1.120340 0.811272 -0.215619 0.317489 0.735018 0.469199 0.363163 1.346803 0.512340 -0.364991 -0.821308 -2.912178 0.479402 1.403829 -0.019134 0.383905 -1.243411 -0.512620 0.150075 -0.264635 1.203470 0.783560 0.395779 1.150359 -1.169415 -1.189210 -0.627859 0.092119 0.254347 -0.483301 0.332746 -0.562572 0.126996 0.097121 0.497930 0.175020 -1.050878 -1.124996 0.339660 1.243659 0.241809 -0.188947 1.326638 0.334044 -0.571661 -0.131438 -0.096753 -0.144079 0.329060 -0.852922 -0.253897 -0.010508 0.372250 -0.948742 0.781441 -0.098280 0.237284 0.282085 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = 0.753270 -0.713152 -0.436551 2.045870 0.226179 0.495136 0.177589 -0.165540 0.189573 -2.732006 -1.317242 1.228166 0.226692 0.362121 0.186772 0.620872 0.728361 0.324319 -2.702091 -0.163876 0.515520 -0.215682 0.113084 0.005953 0.067788 -0.930251 1.514897 0.674107 0.220060 1.528714 -0.537103 1.261529 1.413392 0.134178 0.634610 0.955705 -0.645470 -0.173614 -1.010409 -0.604968 2.153249 0.390461 0.091616 0.783186 -0.235438 1.747031 0.661352 1.380289 1.463410 -0.646927 0.928486 0.317802 -0.600101 -0.271561 -1.874436 0.191856 0.723407 0.350944 -0.564167 0.516761 -0.468778 0.495167 0.507185 -0.045056 2.107422 0.331590 1.826953 1.445149 1.226011 -1.323011 0.306511 0.281265 0.322882 0.351309 1.186173 -1.186286 -1.113941 -0.578990 -0.355482 -1.732445 -0.005897 -0.299820 1.942202 -1.031103 -0.659468 -0.178614 0.048748 1.788601 -0.610399 0.330273 -1.735170 0.071726 0.053584 1.616952 0.452997 0.206146 -0.178230 0.378209 -0.224748 0.478769 0.559926 -1.501678 0.118811 -2.616177 -1.037249 -1.129287 0.775874 0.495733 -1.731278 0.537089 -0.480787 0.965371 -2.244271 -0.350519 0.325394 0.649138 1.241124 -0.483473 -0.473854 -0.360617 0.398359 0.960860 0.872158 -0.937438 0.626682 -0.778926 0.217827 0.210472 0.771694 0.306043 -1.153890 -0.867119 0.245229 0.297644 0.297993 0.775187 1.090906 -0.154856 0.848460 -0.826124 1.401898 -1.841123 -0.345614 -0.897563 -0.786900 -0.892664 2.017284 1.178543 1.465651 -0.028696 -0.590089 0.058897 -2.036693 -2.470614 -0.014148 0.178353 -0.021926 0.797485 -0.349659 0.862424 -1.301530 0.492259 0.900162 -0.750411 -0.886355 -0.098242 -0.192746 0.263906 -0.545769 -0.645708 -0.014974 0.003266 -0.062291 1.867524 -0.273542 -2.679228 -2.337117 -0.926665 1.388571 -1.030815 0.046956 -0.704758 -0.438193 -1.130869 0.061762 -1.275484 -0.123493 0.117883 -1.218479 -1.949755 0.511931 -0.370884 0.054599 0.712344 -1.552983 0.336689 0.921995 0.820856 0.380880 0.448296 -0.114641 -1.331567 -1.027472 0.208513 -1.032083 1.508420 0.586570 -0.336732 -1.143637 -0.894048 -1.169467 0.909561 -0.806074 0.963260 0.024817 -0.834151 0.375648 -1.223743 0.357954 -0.799699 0.423644 0.304709 -2.986644 1.829476 1.348768 -1.135229 -0.206616 -0.567015 0.827507 -0.130770 1.028526 -1.165790 -0.753188 0.137888 0.185556 0.049425 -0.444243 0.504078 -0.227226 -0.722456 -1.647873 -0.893674 1.349229 0.646444 -0.166189 0.029392 1.037318 -0.198561 0.447070 1.562853 0.873133 0.258779 -1.149726 -3.628678 0.469234 0.671207 -0.248519 0.490627 -1.076909 -0.590311 0.423822 -0.704213 1.412503 0.180590 -0.463128 1.498329 -1.427722 -1.304457 -1.363722 -0.736044 0.248282 -0.170498 0.406159 -0.786449 0.111049 -0.311774 0.273494 -0.644511 -0.804488 0.382613 0.806955 1.527334 0.198228 0.290991 1.509565 0.646294 -0.608055 -0.462584 0.046035 -1.041915 0.595246 -1.872020 -0.364582 0.407158 0.579323 -1.040083 0.043138 -0.283273 0.533522 -0.047491 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.255305 -0.502387 0.262949 0.650705 0.237250 0.231292 0.193692 0.081832 0.084752 -1.120528 -0.573698 -0.094122 -0.063195 0.136756 0.274045 0.017102 0.458385 0.106968 -1.174228 -0.114705 0.239392 -0.063253 0.189351 0.095495 0.029502 -0.460667 0.197270 0.517177 0.095343 0.645325 -0.285366 0.303349 0.581338 0.140796 0.286933 0.544761 0.115579 -0.107051 -0.235433 -0.079843 1.068710 0.024736 -0.067892 0.282654 0.094578 0.789155 0.152297 0.692099 0.725534 -0.295438 0.616946 -0.710359 -0.216778 -0.118395 -0.853764 0.108120 0.568149 0.432795 -0.432529 0.378646 -0.267627 0.213658 0.147610 -0.217785 0.751241 0.195282 0.550211 0.434898 0.554185 -0.680579 -0.060591 0.241464 0.221666 0.259761 -0.056405 -0.554630 -0.041514 -1.334333 0.004614 -0.673541 -0.090833 -0.194041 0.503012 -0.370387 -0.130053 0.385875 -0.365087 0.539758 -0.240133 0.091468 -0.851616 0.042914 0.386703 0.461619 0.099241 -0.139701 0.218941 0.153958 0.026945 0.426485 0.247971 -0.552479 -0.535912 -1.358050 -0.559454 -0.357010 0.302378 -0.005206 -0.624175 0.116607 0.353212 0.058022 -0.760166 -0.147849 0.215796 0.432368 -0.100295 -0.177575 -0.254614 -0.327011 0.171739 0.414014 0.494710 -0.463268 0.282560 -0.662809 0.168729 0.162147 0.353169 -0.070290 -0.045915 -0.395916 0.105936 0.217863 -0.051298 0.042328 0.197037 -0.016201 0.409958 -0.383142 0.692795 -0.712981 0.024246 -0.427890 -0.158050 -0.296258 1.377904 0.398736 0.460864 0.334934 -0.532036 0.075965 -0.560982 -1.042663 0.022982 0.130597 0.360087 0.233516 -0.202890 0.332037 -0.354520 -0.008257 -0.036623 -0.310342 -0.305348 -0.053999 -0.519797 0.035336 -0.248457 -0.474239 0.343702 0.517097 -0.353779 0.519530 -0.280040 -0.632549 -0.586289 -0.552879 0.564490 -0.375799 0.049235 -0.060891 -0.061034 -0.665289 0.285832 -0.512827 -0.085127 -0.060909 -0.792585 -0.822658 0.285035 -0.298264 0.177893 0.472357 -0.598779 0.120278 0.027189 0.578263 0.223821 0.197267 -0.011751 -0.709572 -0.680514 -0.298950 -0.273600 0.706654 0.076422 -0.077653 -0.320767 -0.412444 -0.298036 0.555389 -0.344976 0.264536 0.023911 -0.532563 0.236158 -0.342937 0.051276 -0.425082 0.274213 0.391794 -1.020285 0.756328 0.591099 -0.570124 -0.364703 -0.531256 0.208580 0.087648 0.703006 -0.343165 -0.155143 0.183857 0.142119 0.006878 -0.373232 0.269473 0.113382 -0.147662 -0.836118 -0.568617 0.466687 0.433049 -0.038008 0.184723 0.593117 0.435667 -0.003770 0.866340 0.134644 0.042928 -0.316168 -1.421153 0.353351 1.081452 0.065643 0.381686 -0.725402 -0.283034 0.077725 0.036719 0.608917 0.736835 0.136669 0.724551 -0.275113 -0.538708 -0.455128 -0.252130 0.127080 -0.301640 0.193272 -0.362263 0.066227 -0.180078 0.061657 -0.008447 -0.164846 -0.441812 0.153319 0.486495 0.173161 0.118841 0.673904 0.130712 -0.422058 -0.118323 0.059432 -0.189371 0.472153 -0.314712 -0.219862 0.003122 0.206283 -0.363689 0.068971 -0.116430 0.141438 0.076117 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 1.533884 -0.491581 -0.941560 3.106479 -0.046014 0.707486 0.470030 -0.022690 0.194655 -4.012581 -1.373964 3.514729 0.355228 0.595274 -0.445323 1.119624 1.201255 0.822702 -4.347284 -0.291347 0.611422 -0.255206 -0.014372 -0.394952 0.036242 -1.332646 3.038291 1.344199 0.604327 2.725087 -0.909749 1.659813 2.225722 0.029617 0.815744 1.780396 -0.606905 -0.279021 -2.271301 -1.593596 3.194045 0.672836 0.149998 1.512461 -0.506945 3.121532 1.361155 1.904402 3.340420 -1.171729 0.826095 2.275454 -1.480919 -0.936846 -2.792309 0.035487 0.374581 0.760588 -0.933540 1.043964 -0.554481 0.756767 0.984776 0.373315 2.734596 0.543720 2.422964 2.351239 2.177192 -2.569651 0.427269 0.517404 0.563349 0.912790 2.472534 -1.862579 -2.252615 -0.885176 -0.563659 -3.235121 -0.375755 -0.293595 3.631901 -2.030545 -0.880348 -0.351469 0.499715 2.764236 -1.185851 0.578740 -2.778323 -0.034315 -0.019680 3.220391 0.833758 0.359437 -0.244379 0.557695 -0.317939 0.856842 0.993988 -2.826344 0.640626 -3.523926 -1.499210 -2.314334 0.867497 0.954477 -2.466388 0.870198 -0.020605 2.439586 -3.884719 -0.667719 0.762317 0.780970 2.059347 -0.159675 -0.350178 0.001917 0.487886 1.322629 1.662121 -1.724972 0.820514 0.455508 -0.163710 0.257308 1.097755 0.842161 -2.805282 -1.534881 0.886960 0.340232 0.676158 1.233844 1.610053 -0.430447 1.323572 -1.618444 2.450998 -2.674037 -0.857651 -0.914130 -0.710564 -1.815710 2.244228 2.095816 2.350861 -0.373764 -0.471885 0.002041 -2.993360 -3.545266 0.259487 0.358101 -0.476436 1.435593 -0.571135 1.400078 -2.272221 0.757000 1.319206 -1.205852 -1.560242 0.208839 0.234629 0.415536 -0.707483 -1.157347 -0.020892 -0.640958 0.801230 2.958756 -0.749293 -5.210260 -3.749810 -1.453061 2.540980 -1.788345 -0.317269 -0.957673 -1.455494 -0.578139 -0.122211 -2.192006 -0.075034 0.116090 -1.634469 -3.279257 1.590999 -0.753313 -0.601788 1.309831 -2.684580 0.523889 1.005939 0.613009 0.355867 0.449626 0.031385 -2.398152 -1.223996 0.582501 -1.785318 2.210112 1.442897 -0.227000 -2.336856 -1.445019 -1.794953 1.291461 -2.115309 1.938228 0.067223 -1.262357 0.929205 -2.038210 0.916075 -1.142163 1.139075 0.840450 -4.764535 3.501980 2.800739 -1.916674 -0.188039 -0.207151 0.992416 0.182273 1.507843 -2.528576 -2.052871 0.534917 0.231219 0.125234 -0.101601 0.680024 -0.292698 -1.181619 -2.502261 -1.053561 2.150150 1.110553 -0.214230 -0.278871 1.737335 -0.991854 0.713715 2.501429 1.487654 0.967655 -2.055326 -5.776960 1.222708 0.248467 -0.397779 1.120591 -1.707934 -0.851842 1.216261 -1.390455 2.243970 -1.299953 -1.385969 2.442352 -2.881113 -2.347783 -2.394582 -1.534448 0.645697 0.021382 1.291997 -1.212905 0.159684 -0.773614 0.319427 -1.686593 -0.586875 1.569539 1.709031 2.463262 0.915931 0.226449 2.736115 0.754874 -1.136311 -0.640967 -0.186033 -1.837180 0.438563 -3.126448 -0.066821 0.940676 1.456234 -1.856845 0.144989 -0.078562 0.601051 -0.229904 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 1.731277 -0.643431 -0.188649 2.788082 0.250561 0.329978 0.877698 0.818928 0.593265 -4.520838 -2.154482 2.579142 0.248213 0.209101 0.097548 0.687252 1.230722 1.280931 -4.832673 -0.134142 1.034715 0.334906 0.264083 -0.737965 0.102848 -1.252057 1.436261 1.460656 0.614501 3.050028 -0.977119 1.327964 2.533479 0.343897 0.924669 2.392163 -0.167704 -0.381729 -1.268451 -1.402541 3.821466 1.027266 -0.072641 1.910937 -0.074066 3.366440 0.839532 2.072532 2.128464 -1.310559 1.198618 -0.261961 -1.724532 -0.894350 -2.914328 0.480626 1.477344 1.171789 -1.280215 1.606932 -0.142623 0.720823 1.049163 -0.450582 2.800219 1.187568 1.788014 2.406915 2.768999 -2.666058 0.315197 0.485644 0.794505 0.691813 1.571406 -2.103405 -1.499937 -2.013605 -0.329102 -3.696840 -0.512613 -0.688504 3.505371 -2.333475 -0.022754 0.642260 0.042214 2.691428 -0.995401 0.073669 -2.984821 -0.037331 0.372602 3.031815 0.406924 0.339101 -0.108699 0.680571 -0.016692 1.131118 0.941066 -2.709137 -0.767544 -4.389525 -1.343559 -2.048465 0.628517 0.769385 -2.659051 0.210535 0.184299 2.186243 -4.254427 -0.801335 1.040441 1.081107 0.827022 -0.426167 -0.773671 -0.124660 0.269089 1.114168 1.297304 -2.202416 0.588570 -0.452975 -0.389491 0.413189 1.140895 0.553448 -2.659468 -1.698354 0.782146 0.496469 0.336399 1.147395 1.249459 -0.552968 1.327799 -2.150584 2.668204 -2.981394 -0.634473 -1.097058 -1.167065 -1.684135 3.253083 1.463024 2.127382 0.128082 -0.845254 -0.148795 -2.804328 -4.223621 0.875067 0.222322 0.713654 1.123796 -0.621710 0.924443 -2.242415 0.357127 0.735177 -1.336638 -1.322348 -0.103198 0.522899 0.107190 -0.942324 -1.307964 0.468356 0.723855 0.154437 2.443600 -1.123998 -3.437935 -3.535590 -1.866950 2.755771 -1.635855 -0.185556 -0.894907 -0.829578 -1.557974 0.153629 -2.298224 0.444454 -0.021933 -2.068192 -3.673941 1.359724 -0.893348 -0.003943 1.581764 -2.557779 0.541075 0.863388 1.275568 0.177619 0.652906 0.223571 -2.590915 -1.938328 -0.034339 -1.386665 2.540839 1.329823 0.100644 -2.186550 -1.382678 -1.747697 2.085871 -2.077443 1.774380 -0.112235 -1.191365 1.586907 -1.936556 0.366863 -2.060297 1.316374 1.167033 -4.462439 3.214047 2.264893 -2.146923 -0.617069 -1.133359 0.903273 0.633752 2.319332 -2.177930 -2.073379 1.030438 -0.185933 0.007806 -1.276799 0.878030 -0.177142 -0.164758 -2.910530 -1.287787 2.259523 1.408462 -0.352751 0.757060 1.996800 -0.018009 0.387678 3.094427 1.474016 0.494072 -2.304458 -5.514121 1.517906 1.734398 0.298600 0.791026 -2.170140 -1.177446 1.156290 -0.606191 2.510984 0.643454 -0.693256 2.765343 -2.721299 -2.682967 -1.974363 -0.883983 1.076007 -0.423899 0.791931 -1.055075 0.517949 -0.312753 0.486776 -0.448504 -1.293566 -0.175649 1.386945 2.899084 0.604624 0.036669 3.147064 0.506568 -1.359381 -0.241430 -0.316906 -1.070039 0.467597 -2.733424 -0.467463 0.487841 1.396662 -2.055989 1.006931 -0.266614 0.422030 0.149011 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = 4.710014 -2.712278 -3.315951 9.803702 -0.210052 2.413106 1.419746 -0.379309 1.796709 -12.669143 -5.440905 8.716435 1.822460 2.039268 -0.016766 3.958822 3.055227 1.540139 -11.094539 -0.811747 2.256863 -0.988903 -0.061866 0.076593 -0.143044 -4.614698 7.903570 3.230716 1.485616 8.368029 -1.825645 6.254299 7.321833 -0.495420 2.238410 5.752531 -2.241268 -0.426186 -6.364441 -3.676551 9.763852 1.847570 0.680531 4.502010 -2.411208 9.410182 2.684941 8.121915 7.706529 -3.890444 5.706196 4.003952 -3.902747 -2.453961 -8.375619 0.686308 2.521630 1.003878 -2.818304 3.000040 -1.413664 2.343232 3.019519 1.638024 8.993194 3.119524 7.638579 7.885812 6.447331 -7.703187 1.507954 2.128226 0.504557 2.118314 7.157259 -6.428718 -6.208224 0.650332 -1.329495 -6.377204 -1.568469 -1.913628 9.847865 -6.300017 -3.437731 -1.174389 0.895246 8.831679 -3.010482 2.696497 -8.136852 -0.456054 0.837354 8.108121 1.470535 1.464581 -1.337934 1.423916 -1.532460 2.393692 3.019433 -8.507128 0.185095 -8.883782 -5.172799 -6.509816 3.535451 3.893490 -8.838066 2.012104 -3.043616 4.787875 -11.795545 -1.543033 2.258003 3.555316 8.772609 1.237829 -1.821822 -0.840027 3.193221 4.093176 4.482462 -4.317877 3.350034 -1.923459 0.441334 1.355057 2.952810 1.960414 -8.511385 -4.549268 2.140035 1.371548 2.230023 4.564725 5.820350 -1.541681 4.064120 -4.327845 7.424299 -9.549357 -3.905920 -4.047089 -3.610440 -5.237131 8.279946 5.440143 8.867373 -1.035154 -3.232702 0.108588 -9.845318 -11.293416 -0.544547 0.691126 -0.714690 4.899362 -1.837559 4.591094 -6.797030 3.677487 3.709801 -3.581771 -4.664387 0.456685 -0.558868 1.440777 -2.618981 -2.754067 -0.319264 -2.737153 1.261396 10.370674 -0.876414 -14.225836 -12.345221 -4.437076 7.695189 -5.200353 -0.157438 -3.377913 -3.783619 -4.878598 -1.174867 -6.836399 0.024348 0.908264 -5.312092 -10.058088 4.600038 -1.804746 -0.564339 4.124140 -7.991816 1.266039 3.662792 2.857880 1.775245 2.514732 -0.894824 -6.881961 -4.469112 1.910411 -5.814727 8.025876 3.870208 -1.063051 -4.638452 -4.858486 -5.844240 4.048664 -6.502321 5.668297 0.837426 -2.712052 2.590000 -6.907874 1.584660 -5.058088 2.973894 2.478739 -13.375127 8.560881 6.757985 -5.362786 -0.477919 -0.929002 3.505504 0.261965 4.461103 -5.914535 -5.734051 1.599590 1.587447 0.351268 -1.570757 1.932027 -1.620451 -3.359121 -7.286476 -3.089040 6.931132 3.302937 -0.913507 -0.508013 5.338071 -2.674775 2.096903 7.061101 5.282467 1.543798 -6.114728 -17.154415 3.604766 0.693806 -2.132095 2.471593 -6.202666 -2.259829 3.947169 -3.870729 6.955303 -2.583600 -2.361020 7.816806 -8.750155 -7.542240 -7.342974 -4.034998 1.560539 0.561758 1.755172 -3.136633 1.461965 -0.932478 0.814161 -4.098456 -3.619828 3.609993 4.848347 8.639322 0.501087 1.737979 8.334941 3.013310 -2.541804 -2.445894 0.375841 -5.854149 1.400003 -10.407237 -1.131580 2.913010 4.109232 -5.865784 0.140528 -1.143680 1.281487 -0.673038 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.470075 -0.063040 0.250976 0.741960 0.168189 -0.090309 0.423261 0.479374 0.085875 -1.480856 -0.731717 0.312709 -0.003602 -0.075961 0.137925 0.027080 0.386152 0.697451 -1.550971 0.008080 0.469769 0.344374 0.179002 -0.416422 0.031665 -0.322541 -0.164193 0.540572 0.231216 1.069070 -0.419879 0.128555 0.846090 0.180940 0.233262 0.937979 0.398121 -0.068251 -0.076752 -0.284245 1.361378 0.320962 -0.114199 0.602728 0.180287 1.126503 0.161750 0.523263 0.215177 -0.478810 0.270234 -0.741669 -0.544889 -0.291485 -0.878131 0.315129 0.848695 0.881249 -0.551632 0.741771 -0.086988 0.202065 0.354933 -0.439532 0.728347 0.562636 0.197717 0.687715 1.133411 -0.902031 -0.007115 0.137184 0.357064 0.079719 0.195884 -0.587636 -0.195067 -1.592114 -0.095493 -1.502340 -0.148385 -0.100226 1.253414 -0.867085 0.356678 0.759642 -0.073508 0.710806 -0.355348 -0.191311 -1.000510 0.021907 0.101302 1.091691 0.147113 -0.030548 0.037439 0.315529 0.220560 0.491923 0.203172 -0.732533 -0.754947 -1.806280 -0.517028 -0.543086 0.012435 0.080033 -0.829712 -0.232180 0.730918 0.719595 -1.482112 -0.211396 0.487145 0.482367 -0.386724 -0.324702 -0.453395 0.054424 -0.143805 0.163387 0.413888 -0.864571 0.036486 -0.223280 -0.254263 0.103781 0.353787 0.017094 -0.689671 -0.551197 0.110761 0.022381 -0.041320 0.152052 0.134699 -0.287342 0.468292 -0.891185 0.906505 -0.954871 0.051696 -0.237564 -0.566292 -0.453399 1.272617 0.288941 0.402357 0.124448 -0.475013 -0.179146 -0.733421 -1.405101 0.539229 0.108262 0.626884 0.230698 -0.234391 0.074845 -0.607610 -0.145185 0.071139 -0.454258 -0.279009 -0.014029 0.539612 -0.148817 -0.343198 -0.746430 0.342730 0.802650 -0.067113 0.397933 -0.617559 -0.387266 -0.902224 -0.732842 0.921816 -0.425577 -0.022510 -0.196389 -0.125743 -0.635772 0.333098 -0.735986 0.255983 -0.085322 -0.749390 -1.255327 0.413757 -0.379406 -0.090649 0.571848 -0.753961 0.179292 0.107371 0.385711 -0.011336 0.078499 0.265490 -0.977389 -0.843684 -0.288501 -0.240521 0.695045 0.460868 0.253331 -0.761983 -0.374114 -0.489717 0.861255 -0.542101 0.407947 -0.132178 -0.399643 0.788329 -0.517023 0.001051 -0.866391 0.489119 0.518672 -1.246241 1.125476 0.712883 -0.730037 -0.357062 -0.577036 0.178545 0.416926 1.035038 -0.694756 -0.624549 0.536890 -0.288771 -0.038163 -0.654660 0.356337 -0.035685 0.301395 -1.000682 -0.446062 0.607583 0.653616 -0.139685 0.532942 0.709425 0.290722 -0.033081 1.157478 0.381576 0.044416 -0.696668 -1.479016 0.639936 0.792039 0.387005 0.208364 -0.674280 -0.414007 0.378906 0.203956 0.855508 0.876070 -0.105714 0.956846 -0.793037 -0.930133 -0.335916 -0.066067 0.526923 -0.480710 0.265424 -0.408600 0.214557 -0.049988 0.181536 0.209495 -0.407577 -0.630237 0.246994 0.921624 0.269540 -0.169142 1.143656 -0.033537 -0.603516 0.133343 -0.177584 0.075814 0.159446 -0.415566 -0.180358 -0.033642 0.458767 -0.652383 0.689421 -0.190522 -0.036509 0.343325 -PE-benchmarks/word-wrap.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 7.410614 -5.063799 -14.101667 30.033623 -3.138046 7.235836 2.185574 -4.173231 -0.755190 -39.536530 -13.581039 19.892229 8.778051 9.429025 -2.289671 12.432451 4.041839 7.032814 -33.643769 -4.493935 10.667806 1.031922 1.393201 0.564593 -0.813317 -9.576128 24.381628 2.483030 4.014197 23.672616 -3.710058 23.415055 21.832871 -3.921164 2.865224 11.932105 -7.500699 0.757313 -17.792246 -8.248931 25.979205 3.272074 2.968260 9.476026 -13.370363 23.781453 8.851624 16.392069 10.055411 -11.935108 10.333824 15.577884 -6.215286 -6.476628 -21.041999 2.063712 6.919804 9.228948 -2.999296 5.646281 -2.610082 4.266611 9.754810 5.868389 27.906201 9.560679 24.922305 25.737408 16.542774 -17.932346 9.110905 -0.439077 -8.600820 -2.625009 24.217726 -16.388473 -17.754147 4.165892 -7.584904 -23.785286 -3.962824 -0.326869 27.901010 -17.234832 -9.361897 -8.090113 9.489373 27.071595 -7.772671 8.836175 -23.497493 -3.869558 -1.546329 23.870952 5.734514 4.453810 -8.797737 5.783172 -4.115800 0.255870 9.568929 -21.388136 9.268945 -20.416008 -13.695620 -16.462274 8.725430 17.175260 -25.850805 3.636589 -16.988072 14.564932 -38.410286 -2.923814 2.007559 12.433568 33.608692 0.658866 -9.488092 0.532695 6.532040 6.389427 10.158936 -10.737585 12.003897 -6.220942 -0.736300 2.187428 6.156704 8.223349 -29.484870 -12.533109 1.990025 -3.093329 8.606012 17.846502 21.795735 -2.116000 10.613871 -14.758436 17.828497 -25.272952 -10.470155 -5.779025 -20.413743 -14.857629 17.874952 14.271309 17.206540 -10.641996 -14.864814 0.735720 -30.808627 -32.105999 -2.016013 4.547011 -5.222539 18.006875 -6.878029 12.163311 -22.511995 14.478524 20.515763 -6.923946 -13.696355 2.084207 3.657527 6.234148 -6.321079 -4.794438 -4.625734 -12.131296 7.301962 33.557977 -0.640581 -33.977586 -43.316743 -7.776355 20.933176 -13.200801 -1.299785 -15.036047 -10.558271 -18.390735 -4.447620 -18.519012 -2.135911 4.553005 -12.332563 -27.724503 12.211478 -2.630607 -7.395032 9.975040 -20.927516 3.498071 15.723202 4.773622 4.335951 0.256332 -1.840780 -14.609376 -11.262960 11.803866 -18.607277 18.440953 8.627467 -2.975680 -14.816043 -12.380049 -15.725573 9.972037 -8.660127 16.831329 1.937096 -3.299031 4.540233 -22.898586 5.107532 -12.069503 4.180755 2.795809 -36.181137 26.041355 11.609724 -10.331557 3.905700 2.318918 13.138498 -3.031511 3.743447 -16.274254 -17.175196 3.253395 3.394772 1.667712 -6.850825 1.914509 -9.008157 -12.314714 -19.185139 -7.483287 20.360582 6.050207 -4.457829 -1.519348 14.505411 -17.251022 3.806716 18.034927 19.631754 2.669518 -12.874415 -38.512211 6.966814 -10.904037 -5.669449 -4.399704 -13.307588 -2.633262 14.503800 -12.556527 17.464638 -5.986705 -13.639709 19.872508 -29.539867 -19.455281 -19.741271 -8.844076 5.421947 4.152370 -1.357602 -8.938145 6.790265 1.912099 2.925641 -11.069431 -17.763036 16.629812 13.930931 25.096141 -6.085635 5.203961 22.628252 9.755378 -2.105374 -6.069902 2.285558 -16.665992 1.164835 -31.222523 -1.887904 12.349917 11.559801 -17.295858 0.005656 -9.202176 0.334205 1.320886 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 2.687388 -0.089692 -2.225552 4.045644 -0.526691 -0.240115 0.556208 0.629624 -0.107658 -5.764527 -3.231589 1.639077 1.245828 -0.000704 0.734617 2.536921 0.940485 1.217268 -6.050468 0.562555 1.835876 -0.072950 -1.073762 -0.100553 -0.007330 -1.952360 0.074246 0.560710 0.112316 3.970077 -1.368424 2.979939 3.355382 -0.731799 1.225413 2.576156 -1.662439 -0.056270 -0.171816 -0.039459 4.656888 1.543897 0.058605 0.962290 -0.470896 4.140883 -0.485813 4.361867 -0.857264 -1.902041 2.912038 0.134979 -1.691897 0.564007 -3.338600 0.737126 3.179348 1.612276 -1.449278 1.971928 -1.903615 1.378675 1.784357 0.300341 5.006227 2.558854 3.203447 3.452866 3.862876 -2.170464 1.684714 -0.004228 0.097214 -1.148759 2.556667 -2.490822 -1.823897 -1.332616 -0.137453 -4.919064 0.364819 -0.097174 6.373915 -3.549107 -0.612293 0.578999 1.748322 4.518127 -2.464158 0.797359 -3.226841 0.061244 -1.432396 5.196265 0.214207 1.268246 -1.467519 1.636248 -0.394511 0.335626 -0.278447 -3.287806 -1.859528 -5.513786 -3.365335 -2.142474 0.545773 1.503790 -5.354117 0.194518 0.360907 2.331828 -6.432097 0.251469 0.872217 1.599683 3.012033 2.275724 -3.186966 -0.367323 -0.269503 2.072187 1.520594 -1.401352 1.454203 -3.190623 0.046013 1.185301 1.393665 0.516490 -4.999745 -0.740121 0.589641 -1.525318 0.359231 2.802617 2.699113 -1.296020 2.178676 -2.893541 3.014463 -5.684025 -1.420848 -2.408514 -4.194150 -1.567398 3.071529 3.823939 2.416026 -0.363520 -1.736438 -0.361343 -6.047390 -5.180776 -0.463599 -0.367067 0.798145 1.009161 -0.709395 0.691094 -2.695257 1.411858 2.031051 -2.212834 -1.683569 -0.977894 4.788287 0.615107 -1.781338 -1.817051 -0.834868 0.165263 -0.171979 3.777175 -0.652551 -3.841995 -6.462675 -1.893050 3.547208 -1.690212 0.755522 -2.270141 -0.434383 -3.717185 0.226666 -2.900582 -0.197944 0.130897 -1.412997 -4.502913 1.153891 -0.288275 -1.408460 0.243519 -3.304546 0.714618 3.733933 1.313275 0.805470 0.753900 0.020794 -3.143547 -2.938722 0.936805 -2.197384 3.486785 3.331850 -0.369951 -1.719126 -1.438285 -3.642035 2.583327 -2.074073 1.965096 0.112099 -1.154891 2.087205 -3.482593 -0.477303 -2.890829 0.997188 -0.336005 -6.130718 4.816714 2.790535 -2.896199 0.072357 -2.089619 2.802262 0.280754 2.576544 -1.970021 -1.446138 0.510767 -0.251727 -0.128189 -1.130229 1.461848 -1.830384 -0.489559 -2.949223 -0.636101 3.821271 1.995840 -0.654173 0.435701 1.234398 -1.239368 1.654851 2.846531 2.126247 -0.736224 -2.617244 -7.597919 0.980784 -1.141825 -0.796086 -0.185866 -1.621431 -1.238054 0.778273 -1.043659 3.631522 1.115564 -0.909263 3.294184 -4.437179 -3.960963 -2.991930 0.115975 0.475709 -0.842448 0.021477 -1.727336 0.705444 0.505153 1.806373 -0.198451 -3.647283 -1.119482 1.468828 4.287328 -0.195456 -0.957973 4.072601 1.223860 -0.573867 -1.178962 0.028408 -1.256230 0.727000 -3.148019 -1.100199 0.366724 1.733651 -3.137745 1.819119 -0.706087 1.057877 1.248481 -PE-benchmarks/word-wrap.cpp__main = 1.935194 -1.359563 -2.603056 6.628035 -0.352424 1.411742 0.783517 -0.514640 0.000354 -9.040747 -3.225214 4.158443 1.742693 1.842216 -0.321354 2.478720 1.205196 1.756936 -7.653053 -0.914314 2.317596 0.307317 0.190338 -0.033120 -0.218907 -2.286932 4.832588 1.044962 0.934948 5.499478 -1.027993 4.681876 4.993569 -0.740396 0.778127 3.152874 -0.870330 0.154608 -3.729903 -1.752365 6.379666 0.870764 0.425473 2.392405 -2.426399 5.638491 1.838266 4.236369 2.203738 -2.729063 2.527033 2.366244 -1.620249 -1.542543 -5.042560 0.732433 2.259368 2.478277 -1.174383 1.752357 -0.700844 1.010537 2.208176 1.033113 6.148042 2.418049 5.229555 5.634348 4.263588 -4.388908 1.656799 0.262148 -1.284001 -0.285251 4.995405 -3.773652 -3.725991 -0.485462 -1.434525 -5.481952 -0.905754 -0.259386 6.489176 -4.072997 -1.766581 -0.879163 1.748870 5.877718 -1.944409 1.710610 -5.542986 -0.732956 -0.124586 5.795711 1.247353 0.908794 -1.674766 1.423582 -0.622227 0.591362 2.109977 -4.877610 1.124302 -5.570077 -3.345005 -3.703385 1.718674 3.377110 -5.819606 0.495543 -2.721874 3.249493 -8.661835 -0.679086 0.803116 2.882774 6.880212 0.125223 -2.280496 0.082902 1.351920 1.302613 2.399622 -2.692402 2.471455 -1.597622 -0.060818 0.564054 1.467670 1.576505 -6.445029 -2.770081 0.473042 -0.527255 1.640039 3.483846 4.357684 -0.910104 2.542251 -3.528035 4.258791 -5.913549 -2.157538 -1.415769 -4.663074 -3.241837 4.912749 3.016902 4.066294 -1.917255 -3.536236 -0.060045 -6.747800 -7.774978 -0.115048 1.029189 -0.581393 3.728096 -1.571541 2.506883 -4.923472 2.710041 4.174142 -1.756181 -2.927691 0.440240 1.064910 1.065472 -1.510730 -1.589928 -0.581304 -1.714692 1.461708 7.074178 -0.586732 -7.476078 -9.252632 -2.139854 4.839313 -2.921050 -0.221757 -2.995308 -2.299706 -4.437381 -0.590186 -4.210854 -0.187644 0.749337 -3.207062 -6.489658 2.816628 -0.848353 -1.462328 2.466652 -4.832617 0.845048 3.059071 1.345974 0.941237 0.166587 -0.203659 -3.881433 -3.107586 2.073778 -3.821663 4.553159 1.986997 -0.423672 -3.156879 -2.810796 -3.638722 2.629046 -2.434907 3.569970 0.441057 -1.080284 1.496675 -4.981511 0.835320 -3.201630 1.271400 1.023707 -7.798314 6.264569 2.998673 -2.683640 0.342709 0.048115 2.718817 -0.269737 1.730481 -3.820115 -3.857284 1.139289 0.603741 0.270448 -1.792504 0.702285 -1.734299 -2.179556 -4.720634 -1.993112 4.436111 1.854270 -1.010989 0.008384 3.412028 -3.188253 0.588118 4.646672 4.148995 0.601509 -3.073220 -9.009603 1.926696 -1.726712 -1.070784 -0.639665 -3.383412 -0.857982 3.174381 -2.318192 4.175552 -0.471502 -2.626675 4.776458 -6.534137 -4.636456 -4.132206 -1.947070 1.436957 0.358873 0.056704 -2.230098 1.527165 0.202485 0.689039 -2.179322 -3.755269 2.813504 2.865747 5.538260 -1.078030 0.923070 5.413461 1.920298 -0.874497 -1.150135 0.383884 -3.197684 0.578830 -6.547948 -0.534450 2.293602 2.650117 -3.880726 0.525213 -1.936772 0.074540 0.619427 -PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = 3.539780 -0.175482 -2.086791 5.490711 0.448977 -1.454632 0.932624 1.583864 0.222787 -7.321783 -3.902719 2.256241 1.019760 -1.177043 0.988943 1.806793 1.739863 2.388322 -8.737983 1.371954 2.019740 0.219022 -2.035174 -1.566485 -0.010079 -1.905678 0.100670 1.865577 0.365811 5.239830 -2.344400 2.778882 4.028248 -0.044403 3.061136 3.931366 -1.268092 -0.174565 0.158615 -0.474031 7.191917 2.955118 -0.425925 2.010545 0.951593 5.693494 -0.072385 4.364101 -1.044314 -2.007500 2.421983 0.181174 -1.920288 0.011585 -5.345928 1.395143 4.928653 2.325500 -3.101805 2.966350 -1.905838 1.582243 2.550743 0.181516 6.621386 2.755384 2.888353 4.551810 5.987448 -2.946152 1.613991 -0.235807 2.059602 -1.264735 2.797952 -2.634552 -2.949272 -3.933199 -0.328265 -7.385958 0.837899 -0.095818 7.121490 -4.747457 0.897242 1.603873 2.079681 5.360274 -3.583633 -0.560010 -4.929909 -0.142413 -2.195964 7.648660 0.487980 1.706125 -0.855594 2.520497 -0.240724 1.361429 -0.506777 -4.987326 -1.763879 -9.776552 -4.071146 -2.854829 -0.219845 0.622784 -5.949741 -0.531918 1.416943 3.708100 -8.286246 -0.323597 1.085619 1.075294 1.143763 -0.368545 -3.425032 0.224413 -1.481703 2.017440 1.816570 -2.473847 0.728243 -3.258937 -0.557105 1.461514 2.214322 0.940572 -5.094797 -0.626208 1.031826 -1.159291 -0.337689 2.526068 1.987176 -2.560609 2.536876 -4.360482 4.496500 -6.365468 -0.895858 -3.293497 -4.828545 -1.892014 3.479055 3.322862 2.746358 -0.039771 -1.690841 -0.160577 -7.285209 -8.432737 1.398488 -0.505947 1.194174 0.451618 -0.940057 0.314903 -3.643765 0.320527 3.072068 -3.449570 -2.519378 -1.517496 6.299478 0.456913 -2.224309 -2.282770 -0.356819 2.295515 0.470468 4.005728 -2.350376 -4.255506 -7.355388 -2.676671 4.758815 -2.207445 0.404743 -2.153918 -0.554908 -4.732248 1.037233 -4.213420 0.809194 -1.328038 -1.138937 -6.050698 0.950183 -1.009812 -0.320464 0.443673 -4.419621 1.663428 3.953427 1.803202 -0.131491 1.141537 1.093576 -4.443271 -4.111847 0.963849 -1.313472 4.554939 3.808804 0.410862 -2.379750 -1.731098 -4.302547 3.795109 -2.888726 2.667284 0.659698 -2.778238 3.755123 -4.034841 -1.695897 -3.616623 1.891176 0.264291 -5.711464 6.687298 3.714849 -4.556715 -0.386380 -3.279249 3.139540 0.832594 4.874945 -3.265551 -2.238538 1.478370 -0.700237 -0.445877 -2.262160 1.864654 -1.410704 0.814642 -4.962554 -1.538072 4.674119 2.957794 -0.558859 1.186166 1.012454 -1.302878 1.160720 5.375747 2.612480 0.469916 -4.328620 -8.927669 1.604158 -1.120696 0.552050 -0.456983 -1.717819 -2.295922 0.294495 -0.157598 5.073379 3.174854 -1.729755 4.658076 -5.984557 -5.462407 -3.753047 0.517730 1.417688 -2.152108 0.697538 -2.883981 0.897849 -0.393890 2.824810 0.169232 -3.743678 -2.238187 1.910449 4.492999 0.156820 -2.243250 5.648017 1.166029 -1.832997 -0.873788 -0.383365 -1.267586 1.184113 -4.019257 -1.854218 -0.393135 2.556773 -4.037554 3.314725 -0.750177 2.141399 1.966733 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = 0.584794 0.018274 -0.192714 0.793240 0.149432 -0.589224 0.009507 0.289002 -0.373831 -0.551232 -0.223730 0.168601 -0.072073 -0.323603 0.343671 0.090695 0.138070 0.031746 -0.753820 0.423889 -0.232660 -0.227688 -0.634534 -0.512140 0.022900 0.408139 -0.109683 0.422456 -0.062377 0.437208 -0.566000 0.227608 0.044018 0.323901 0.696172 -0.141030 0.059795 -0.094656 -0.127131 -0.134325 0.838424 0.224913 -0.229096 0.250831 0.418628 0.463790 -0.056064 0.568657 -0.441077 0.285340 0.466912 -0.270698 -0.039845 0.244201 -0.741677 0.129311 0.746900 0.220095 -0.246000 0.293003 -0.467675 0.373816 0.317550 0.080506 1.139127 0.397298 0.381265 0.521788 0.688668 -0.321619 0.193144 -0.193679 0.975012 -0.220261 -0.419022 -0.196079 -0.067760 -1.205433 -0.029979 -0.898721 0.359249 -0.068737 0.744230 -0.358213 0.254672 0.208446 0.048671 0.323311 -0.960153 0.246356 -0.551117 -0.041379 -0.369450 0.861087 -0.183592 0.217142 0.000207 0.263859 0.108286 0.293586 -0.298305 -0.391844 -0.079064 -1.216606 -0.695764 0.468565 -0.574884 -0.526866 -0.525464 -0.038846 0.706104 0.397839 -0.599036 -0.527764 -0.193338 -0.136612 -0.047636 0.199724 -0.542456 0.162324 -0.440713 0.560158 0.364830 -0.098040 0.218554 -0.763848 -0.264497 0.323945 0.716334 0.422098 -0.632999 0.147713 0.251646 -0.292581 -0.313690 -0.171105 -0.416585 -0.198172 0.147638 -0.343207 0.565043 -0.722216 -0.179566 -0.667027 -0.564014 0.362207 0.523895 0.480271 0.284377 0.684618 -0.053508 0.162485 -0.675299 -1.072684 0.411762 0.071398 -0.047233 -0.382325 0.062654 -0.039970 -0.252255 -0.535588 0.864697 -0.782449 -0.738298 -0.778174 0.626202 0.055092 -0.377720 -0.337412 0.366503 0.827527 0.026013 0.313631 -0.408452 -0.603695 -0.671181 -0.255884 0.427891 -0.147463 -0.112756 0.190755 0.318029 -0.890253 0.348700 -0.446812 0.482280 -0.109981 -0.237714 -0.577790 -0.040851 -0.035119 0.114857 -0.226268 -0.246861 0.353921 0.158255 0.375358 -0.336488 0.572414 0.445894 -0.515949 -1.023005 -0.133000 0.500773 0.648023 0.251696 0.330866 -0.356956 -0.196208 -0.583119 0.772087 -0.623030 0.231481 0.139202 -0.220438 0.474411 -0.461914 -0.576715 -0.152463 0.375267 0.125329 -0.536221 0.844158 0.552168 -0.805386 -0.301334 -1.100202 0.646986 0.070052 1.298048 -0.481191 0.069408 0.203032 0.543682 -0.299532 -0.429883 0.376793 0.086681 -0.049430 -0.606637 -0.477576 0.284041 0.304703 0.210406 -0.046682 -0.226451 -0.061186 -0.452029 0.948228 0.128686 0.087593 -0.331223 -0.781165 -0.111589 0.185470 0.185781 0.261185 -0.461549 -0.503169 -0.479406 -0.087877 0.627493 0.333034 -0.271101 0.476478 -0.552593 -0.399843 -0.457448 0.467342 -0.093996 -0.720403 0.447125 -0.496942 -0.210799 0.136180 0.453601 0.002097 -0.020781 -0.779570 -0.299967 0.197378 -0.016317 -0.505585 0.534607 0.347783 -0.379476 -0.125173 0.117515 -0.133369 0.313270 -0.591308 -0.312678 -0.312096 0.268148 -0.449850 0.477568 0.326502 0.267806 0.140008 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 3.085142 0.152638 -1.611596 4.421272 0.565681 -1.612187 1.062557 1.782653 0.043461 -6.530313 -3.120963 3.076468 0.949306 -1.225469 0.216438 1.461801 1.558792 2.843389 -7.579977 1.095956 1.558599 0.620477 -1.925552 -2.171270 -0.153061 -1.346360 0.391595 1.753658 0.556555 4.552748 -2.096301 1.686608 3.567981 0.149910 2.508926 3.735515 -0.279868 -0.301800 -0.004923 -0.986358 6.461771 2.932433 -0.524189 2.098823 1.012346 4.992691 0.740040 2.833584 -1.424654 -1.622347 0.730531 0.162863 -2.193070 -0.622471 -4.835557 1.274702 3.821419 2.492854 -2.710768 2.932213 -1.153313 1.158041 2.422991 0.005087 5.550774 1.941677 2.231259 3.975476 5.435590 -2.753922 1.062952 -0.186247 2.183018 -0.844353 2.842521 -2.097493 -2.698947 -3.919420 -0.354580 -7.417887 0.749374 0.209417 7.034550 -4.190386 1.367169 1.766748 1.954732 4.375453 -3.069652 -1.189623 -4.587660 -0.169120 -2.016345 7.217083 0.810764 1.388944 -0.771195 2.417159 0.174831 1.247700 -0.211628 -4.389643 -1.125433 -8.921334 -2.822105 -2.778553 -0.816018 0.291579 -4.492056 -1.085086 1.823392 4.425654 -7.499850 -0.437416 1.297473 0.430128 0.994009 -1.477869 -2.642972 1.040224 -1.872870 1.066923 1.329090 -2.692847 0.074826 -1.133132 -0.593785 0.864456 1.765897 1.158456 -5.449321 -0.666987 1.126873 -1.060054 -0.248808 1.817945 1.228678 -2.599437 1.884747 -4.112473 3.880615 -5.217881 -0.197903 -2.130993 -4.429886 -1.751554 3.136422 2.472907 2.095612 -0.326105 -1.028962 -0.286782 -5.915433 -7.913584 2.259066 -0.154066 0.966238 0.149917 -0.794467 -0.121350 -3.214088 -0.198726 2.936683 -3.022606 -1.994538 -0.986157 6.210085 0.296637 -1.849405 -1.968606 -0.167607 2.702162 1.478985 2.991356 -2.668424 -4.007300 -6.073362 -2.317789 4.133678 -1.842943 0.005978 -1.551952 -1.066833 -3.574157 1.071776 -3.479808 1.540411 -1.290320 -0.847418 -5.460623 0.927356 -1.086974 -0.710549 0.507643 -3.707954 1.582812 2.824084 0.826543 -0.818173 0.465422 1.467896 -4.012848 -3.467374 1.082317 -0.705422 4.049890 3.423201 0.949934 -2.966727 -1.112835 -3.575954 3.418105 -2.451481 2.346422 0.385142 -2.644926 3.632360 -3.413614 -0.959395 -3.170321 2.084029 0.394513 -5.124553 6.435992 3.741821 -3.899176 -0.401721 -2.315034 2.151542 1.038073 4.362714 -3.443946 -2.538397 1.812348 -1.249145 -0.482308 -1.942800 1.389095 -0.883721 1.256772 -4.780947 -1.388567 3.640427 2.588103 -0.442523 1.317244 0.756047 -1.402210 0.292789 5.262232 2.293418 0.899733 -4.172036 -7.525485 1.810885 -1.151720 0.902892 -0.350264 -0.953608 -1.958626 0.595085 -0.424266 4.176538 2.531105 -2.402965 4.101524 -5.663772 -4.817353 -2.767732 0.350849 1.852338 -1.936998 1.372756 -2.537439 0.705809 -0.791340 2.432314 -0.046500 -2.895594 -1.412018 1.851862 3.869379 0.739168 -2.337966 5.068811 0.323778 -1.683137 -0.294666 -0.730871 -0.554051 1.139950 -3.739661 -1.550143 -0.396361 2.506136 -3.353800 3.386785 -0.553681 1.671944 2.011661 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.933409 -0.662995 -0.203847 1.006427 0.319977 -0.565013 0.248549 0.421881 0.059744 -1.505460 -0.593848 0.213416 0.080818 -0.514435 0.329532 0.393310 0.542890 0.238823 -1.657682 0.568323 0.204912 -0.122688 -0.814443 -0.170499 -0.054709 -0.709529 -0.042508 0.756963 -0.096485 0.973576 -0.618626 0.299999 0.814325 -0.088821 0.920060 1.051215 0.258546 -0.148351 0.206038 0.384502 1.914190 0.565026 -0.260369 0.293515 0.729414 1.277089 -0.061787 1.536978 -0.068016 -0.359847 0.910439 -0.481070 -0.421319 -0.012290 -1.496211 0.347210 1.226343 0.509933 -1.117576 0.795391 -0.708594 0.300209 0.528860 0.391660 1.647107 0.519191 0.751958 0.824786 1.551378 -0.605172 0.055945 0.361038 0.907657 -0.024351 0.512351 -0.527103 -0.448640 -1.840458 0.229854 -1.081753 0.167791 -0.108083 1.242544 -0.942635 0.135604 0.850088 0.228674 1.066401 -0.974983 -0.211125 -1.253854 0.035143 -0.019830 1.833120 -0.083613 0.365372 0.023615 0.693363 0.028306 0.640647 -0.021424 -1.219543 -0.938819 -2.399770 -1.238622 -0.604410 -0.326956 -0.349083 -1.456317 -0.205869 1.002336 0.588655 -1.532132 0.148648 0.347524 0.130390 0.674286 0.028477 -0.749015 -0.090219 -0.280419 0.485584 0.371817 -0.349241 0.087427 -1.138363 0.571931 0.504972 0.469154 -0.080374 -1.075657 0.158130 0.416473 -0.057233 -0.343256 0.180244 0.091868 -1.040954 0.581363 -0.889802 1.051087 -1.522255 -0.157550 -1.003185 -0.995212 -0.191758 1.558262 0.707111 0.776672 0.366771 -0.740151 0.031734 -1.576505 -2.296633 0.172037 -0.324967 0.317370 -0.170674 -0.198675 -0.104721 -0.409226 -0.233765 0.418804 -0.913195 -0.417007 -0.484463 0.785889 0.053249 -0.463514 -0.581497 0.062735 1.093787 0.220327 0.684865 -0.664407 -1.315108 -1.252052 -0.762455 0.888254 -0.315372 0.176165 -0.164386 -0.206944 -1.465148 0.597062 -0.807432 0.331601 -0.701558 -0.462135 -1.224261 0.190745 -0.346812 0.168456 -0.127671 -0.944267 0.385064 0.131620 0.345162 0.073482 0.248955 0.126087 -1.349491 -1.342241 0.037149 0.101891 1.507588 0.585882 0.190604 -0.059366 -0.340269 -1.073999 0.938996 -1.232652 0.339636 0.572891 -1.156398 1.041622 -0.733475 -0.677811 -0.835312 0.669888 0.070019 -0.580217 1.895152 1.173411 -1.303151 -0.452764 -0.836852 0.583582 0.421162 1.501279 -0.559207 -0.131418 0.444395 0.173658 -0.202192 -0.359058 0.584627 -0.143065 0.638152 -1.366383 -0.742942 0.829602 1.027251 -0.107340 0.129318 -0.125579 -0.013016 -0.329375 1.460611 0.255605 0.337094 -0.870954 -2.058273 0.383316 -0.087799 -0.005701 0.263264 -0.745290 -0.553524 -0.217085 0.106448 1.266795 0.940367 -0.088394 1.032354 -1.298019 -1.335863 -0.720180 0.033700 0.097096 -0.679503 0.578881 -0.780307 0.052224 -0.367469 0.738352 -0.043191 -0.488591 -0.825095 0.214687 0.508039 0.313165 -0.789520 1.216799 0.112844 -0.415944 -0.303440 0.055420 0.025510 0.766704 -0.530775 -0.616386 -0.563751 0.561805 -0.716611 0.932531 -0.067051 0.729438 0.522823 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = 0.623383 -0.582545 -0.292544 1.211419 0.206961 -0.309769 0.135825 0.100978 0.031939 -1.589254 -0.559648 0.150245 0.165365 -0.166597 0.289183 0.452253 0.443308 0.213044 -1.509638 0.362736 0.312156 -0.063121 -0.518497 -0.106883 -0.013945 -0.681148 0.420170 0.566270 0.037573 1.007818 -0.578316 0.471094 0.859641 -0.181244 0.785400 0.900920 0.216063 0.062675 -0.225623 0.323469 1.741061 0.439447 -0.210142 0.263088 0.421134 1.237698 0.210734 1.130501 -0.009806 -0.480354 0.722672 0.064219 -0.246319 -0.175031 -1.317513 0.352054 1.193894 0.635978 -0.991686 0.623694 -0.506107 0.277605 0.478901 0.496299 1.489622 0.367624 0.899290 0.906994 1.294169 -0.691669 0.087782 0.273208 0.597482 -0.094451 0.798413 -0.616031 -0.688020 -1.336041 0.018865 -0.982699 0.105314 0.074522 1.020550 -0.944373 -0.000304 0.608040 0.139733 1.066363 -0.788702 -0.108643 -1.152439 -0.046925 -0.134842 1.785709 0.093235 0.203009 0.038157 0.729211 0.071907 0.559463 0.207137 -1.191199 -0.469747 -2.078921 -1.183167 -0.671758 0.035609 -0.000477 -1.323524 -0.189620 0.572238 0.458496 -1.556331 0.228033 0.341542 0.378405 0.878091 -0.550610 -0.564835 0.040948 -0.172032 0.372638 0.491752 -0.401053 0.204946 -0.786439 0.499672 0.419022 0.452543 -0.003122 -0.864243 -0.050316 0.178538 -0.000650 -0.234476 0.274800 0.332518 -0.907377 0.651315 -0.810096 1.055099 -1.449042 -0.088929 -0.810053 -0.929458 -0.303480 1.088013 0.441428 0.722833 -0.008314 -0.879319 0.061619 -1.560190 -2.111337 0.137633 0.023165 0.128078 0.207311 -0.277018 0.187148 -0.566345 -0.010437 0.654401 -0.758583 -0.456718 -0.262253 0.563213 0.085666 -0.456141 -0.513174 0.013034 0.641773 0.283909 0.964714 -0.515555 -1.232262 -1.449922 -0.667255 0.909953 -0.413887 0.171508 -0.234959 -0.322901 -1.452215 0.534848 -0.949708 0.276600 -0.521920 -0.434011 -1.215703 0.226162 -0.331793 0.158930 0.055541 -1.017130 0.294297 0.130417 0.146833 0.152483 0.138714 0.219463 -1.263932 -1.123257 0.206685 -0.213674 1.256494 0.348584 0.060606 -0.117355 -0.408092 -0.918529 0.691736 -0.802340 0.393219 0.425670 -0.878097 0.814809 -0.757395 -0.436776 -0.761521 0.491400 0.193857 -0.453267 1.785185 1.061778 -1.014993 -0.249604 -0.370801 0.567052 0.231466 1.126751 -0.678427 -0.340640 0.320996 0.075873 -0.086915 -0.338819 0.504854 -0.246058 0.297159 -1.192669 -0.607864 0.748893 0.852367 -0.061985 0.158996 0.141112 -0.317142 -0.364656 1.299653 0.438872 0.401068 -0.803762 -1.753870 0.429310 -0.551825 -0.062233 0.070743 -0.566659 -0.427048 0.004628 0.245002 1.129298 0.880927 -0.253987 1.051387 -1.370371 -1.233566 -0.762028 -0.201786 0.116237 -0.534309 0.298576 -0.742072 0.158047 -0.293920 0.521350 -0.206765 -0.424678 -0.277481 0.260037 0.633524 0.132849 -0.471201 1.179612 0.190433 -0.441792 -0.272277 0.139295 -0.205095 0.629096 -0.612626 -0.556529 -0.298027 0.544782 -0.705488 0.566148 -0.320717 0.507165 0.422043 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = 3.851977 -0.661619 -2.101901 5.916134 0.806906 -1.530758 0.963169 1.502998 0.373241 -7.744142 -3.880530 2.675103 0.988269 -1.261830 0.925401 1.867681 2.092171 2.295303 -8.862404 1.503765 1.799643 0.016936 -2.430592 -1.544530 -0.076840 -2.186517 0.748946 2.238543 0.385236 5.426331 -2.524271 2.805630 4.210623 -0.070640 3.541531 4.270359 -0.906479 -0.244091 -0.205370 -0.528217 7.912411 3.029092 -0.422812 2.273102 1.275719 6.093388 0.190344 5.046339 -0.533914 -2.022939 2.672362 0.332423 -1.973849 -0.186076 -6.067896 1.545430 5.089052 2.230541 -3.631037 3.106617 -1.905229 1.643614 2.670388 0.606161 7.075651 2.679618 3.160412 4.815621 6.444221 -3.277232 1.415547 0.128130 2.604026 -0.867119 3.192570 -2.866491 -3.298623 -4.076263 -0.255530 -7.167347 0.940156 -0.259760 7.249495 -4.921565 0.780475 1.758761 1.966666 5.575654 -3.809691 -0.645143 -5.456336 -0.143686 -2.034483 8.166412 0.485683 1.827803 -0.712515 2.665147 -0.322266 1.743658 -0.331849 -5.563746 -1.675351 -10.428829 -4.457042 -3.183426 -0.299106 0.386946 -6.204187 -0.573483 1.369014 3.910139 -8.515838 -0.341706 1.141224 0.977388 1.764559 -0.606256 -3.295124 0.166870 -1.367371 2.076564 1.902989 -2.486303 0.693749 -3.364357 -0.198793 1.562657 2.387688 0.938862 -5.296359 -0.551018 1.185090 -0.850198 -0.474255 2.329459 1.908962 -3.105346 2.690543 -4.420618 4.817312 -6.654770 -1.082338 -3.657772 -5.001016 -1.989025 4.087959 3.207064 3.423867 0.100589 -1.893463 -0.125912 -7.663293 -9.333824 1.474194 -0.610252 0.995742 0.547233 -0.999773 0.421492 -3.819138 0.109554 3.347973 -3.733522 -2.758835 -1.608270 5.907374 0.409456 -2.264145 -2.353213 -0.249308 2.553088 0.803545 4.358880 -2.610511 -5.326138 -7.604613 -2.917915 4.957974 -2.372272 0.438257 -1.982286 -0.848892 -5.110948 1.152908 -4.497804 1.013446 -1.743556 -1.326879 -6.386292 1.080472 -1.234118 -0.033350 0.539241 -4.790850 1.890386 3.655729 1.881033 -0.159635 1.270617 1.053668 -5.001188 -4.497585 1.049643 -1.166723 5.204929 3.713119 0.466253 -2.214902 -1.968933 -4.596856 3.895316 -3.573811 2.797928 1.132365 -3.229444 3.949432 -4.253995 -1.808611 -3.758957 2.201288 0.448799 -5.627568 7.292563 4.194079 -5.026051 -0.633278 -3.302787 3.209368 0.882705 5.400285 -3.546308 -2.345032 1.713310 -0.443964 -0.520496 -2.303037 1.980662 -1.222734 1.025524 -5.579555 -2.003265 4.772461 3.286318 -0.572080 0.974515 0.968405 -1.424650 0.821011 6.063338 2.698712 0.998842 -4.684489 -9.653948 1.742653 -1.288548 0.461832 -0.183937 -2.049515 -2.426869 0.250936 -0.277905 5.458146 3.088009 -1.730118 5.041173 -6.449463 -5.849362 -3.946130 0.182451 1.460749 -2.298162 1.071267 -3.279054 0.833379 -0.864584 2.969909 -0.221871 -3.505310 -2.023759 2.062513 4.417444 0.299305 -2.311708 5.963528 1.220892 -1.976189 -0.943583 -0.266164 -1.311313 1.552120 -4.513223 -2.062745 -0.598538 2.731044 -4.158756 3.427754 -0.756654 2.497852 1.980244 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = 8.151846 -0.239293 -5.403086 12.953082 1.244801 -0.825152 1.784431 3.054710 0.750593 -14.896007 -6.350734 12.651453 1.831475 -0.452288 1.144195 4.620604 4.468542 5.448679 -17.060030 0.941153 1.160455 -0.369929 -3.460301 -4.959018 0.324229 -1.472753 6.689860 4.644871 1.947306 10.710643 -4.643183 6.303088 8.051772 1.408521 6.143851 5.165432 -0.865776 -0.856703 -6.209448 -5.573571 14.874367 4.857020 0.266770 7.825899 0.277913 12.119687 3.185061 9.081913 4.780152 -2.409491 4.202402 2.305824 -4.961784 -1.337373 -12.336193 2.012831 5.045682 2.469532 -4.965737 6.201559 -0.535346 3.845106 4.952281 -0.808538 13.744597 4.139200 8.256057 10.316188 11.208658 -7.775894 3.066839 -1.463355 5.563525 0.364730 7.610708 -8.150643 -7.072059 -5.879578 -1.135205 -14.764285 1.472030 -2.306193 15.347228 -9.748720 0.520434 1.379839 3.114829 11.190092 -7.104891 0.365207 -10.764530 -1.278544 -1.924929 15.156110 2.474643 3.551677 -1.707948 3.466808 -0.645958 2.558781 2.459902 -10.422971 1.626543 -16.814751 -7.102296 -4.763780 -0.180910 1.065357 -9.134933 0.696086 -0.464821 9.182039 -17.035655 -4.338661 2.282538 0.934686 6.068730 -1.200503 -3.142693 1.364065 -0.818351 5.342809 3.718567 -7.924205 2.239073 -1.660367 -3.196749 1.921649 6.261016 3.980079 -11.662357 -3.545911 3.264612 0.075742 1.030358 3.855163 3.419636 -4.326696 5.083032 -7.928867 9.379017 -11.507936 -4.842472 -4.200895 -7.115975 -5.586918 10.309869 4.803102 9.607588 1.155023 -1.871366 -0.355402 -13.265884 -18.510222 5.095556 0.470428 -0.598736 3.625410 -1.659333 1.984705 -9.600466 -0.032779 8.812573 -7.181692 -7.984334 -2.591853 6.437259 1.014261 -4.283669 -4.926244 0.917973 3.011244 4.008366 9.642661 -3.908406 -17.267111 -14.032964 -4.823730 10.359013 -5.661425 0.027604 -3.117434 -2.570880 -7.246040 -0.744336 -9.810471 3.494442 -0.211638 -4.839874 -13.026329 4.439411 -2.145587 0.943961 3.214812 -9.642144 4.382199 5.006143 4.520710 -2.613668 3.434419 2.466750 -9.328028 -8.354369 1.806370 -3.856520 9.377893 4.481352 1.867953 -7.980676 -3.717598 -8.051236 7.377041 -9.309463 7.229620 0.661407 -4.126162 5.500565 -8.647436 -1.709772 -6.436581 4.731639 1.537981 -14.979105 12.193231 8.463524 -9.424745 -1.120164 -5.285200 6.291654 0.790559 10.734963 -9.328140 -7.476398 3.244031 1.165273 -0.638849 -4.708966 3.313464 -0.846887 -1.780631 -11.258302 -4.004936 9.467674 5.452130 -0.874369 1.646017 4.893285 -3.664138 -0.046192 12.240869 5.716299 2.983286 -8.551194 -20.714747 2.425944 2.393718 0.653200 1.608307 -6.793418 -3.753249 2.333094 -4.272531 9.212390 0.368742 -4.393196 9.778904 -12.501488 -10.411253 -8.338567 -1.142599 3.423948 -2.930259 3.564844 -5.115903 0.981060 -1.519149 4.500100 -3.071137 -4.935204 0.865042 4.350859 9.430659 0.031305 -1.925674 12.155667 3.119793 -4.100435 -0.992027 -2.357085 -4.798320 3.079351 -13.757230 -2.242564 1.155535 5.210474 -8.993971 4.171275 -0.565744 3.502615 1.357582 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.252458 -0.110099 -0.027042 0.360881 0.104063 -0.305994 0.113129 0.183265 -0.070670 -0.607014 -0.247345 -0.122373 0.015889 -0.258804 0.178084 0.128064 0.174292 0.277390 -0.652041 0.265787 0.188751 0.053848 -0.227689 -0.150902 -0.010502 -0.232693 -0.262723 0.263918 -0.015846 0.438184 -0.311030 0.108765 0.349656 0.022209 0.354786 0.448564 0.153046 -0.069452 0.225171 0.213118 0.759192 0.174772 -0.080193 0.043303 0.299565 0.520274 -0.038746 0.336692 -0.185719 -0.169707 0.245424 -0.338719 -0.116410 0.029380 -0.546695 0.166983 0.461071 0.374541 -0.453619 0.347233 -0.300633 0.121429 0.227430 -0.010316 0.641883 0.205931 0.141424 0.341687 0.653537 -0.201501 0.059470 0.040877 0.321364 -0.151815 0.116816 -0.079541 -0.045601 -1.047367 0.007453 -0.619599 0.098374 0.081958 0.540427 -0.435407 0.203757 0.478944 0.100239 0.436345 -0.367393 -0.163999 -0.518658 0.008325 -0.027371 0.622342 0.025747 0.054818 -0.023187 0.301497 0.038667 0.220527 -0.083431 -0.446629 -0.504995 -1.065269 -0.517784 -0.206707 -0.188257 -0.167787 -0.617445 -0.160642 0.633278 0.373409 -0.717838 0.078850 0.158935 0.078926 -0.134463 -0.175066 -0.366822 0.022317 -0.230327 0.191485 0.141491 -0.187891 -0.016048 -0.465846 0.115791 0.161408 0.214117 -0.069620 -0.295998 0.011281 0.128015 -0.089549 -0.174406 0.076252 0.007922 -0.349165 0.230261 -0.427161 0.439426 -0.537763 0.078644 -0.362641 -0.425496 -0.073527 0.626594 0.278414 0.127472 0.131777 -0.343333 0.018956 -0.601848 -0.859749 0.182593 -0.159613 0.238076 -0.069665 -0.092702 -0.106537 -0.118230 -0.119555 0.148084 -0.398114 -0.152889 -0.179459 0.376253 -0.000646 -0.213857 -0.354794 0.032817 0.595068 0.024457 0.136386 -0.355217 -0.105454 -0.463333 -0.341884 0.382365 -0.117502 0.095322 -0.102358 -0.010206 -0.555877 0.334394 -0.348938 0.117512 -0.284895 -0.127215 -0.522516 0.026126 -0.159175 -0.039623 -0.060350 -0.340357 0.186224 0.049112 0.023119 -0.015585 0.029621 0.106052 -0.472086 -0.527477 -0.038074 0.067077 0.407106 0.304101 0.169359 -0.206944 -0.119308 -0.364530 0.448390 -0.374653 0.129567 0.195834 -0.462329 0.497093 -0.288716 -0.276614 -0.290855 0.277026 0.034064 -0.349729 0.677539 0.434968 -0.527975 -0.150667 -0.420693 0.246370 0.223820 0.642725 -0.186755 0.020202 0.204413 -0.007828 -0.081647 -0.237543 0.238056 -0.103942 0.334653 -0.524625 -0.254560 0.331390 0.437303 -0.035329 0.138763 -0.040453 0.088352 -0.131858 0.563029 0.102089 0.098936 -0.325307 -0.622597 0.174202 0.067519 0.178488 0.113570 -0.210249 -0.170163 -0.101617 0.092317 0.524912 0.516857 -0.069935 0.420550 -0.484121 -0.550526 -0.220606 0.129756 0.089435 -0.362880 0.252325 -0.308292 0.013607 -0.101980 0.336455 0.110826 -0.206475 -0.503131 0.078426 0.244115 0.186503 -0.370592 0.516822 -0.007857 -0.234371 -0.057759 -0.013386 0.101321 0.235526 -0.102461 -0.278649 -0.217772 0.239606 -0.321129 0.479136 -0.135354 0.224357 0.278099 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.472752 -0.059320 -0.031803 0.674973 0.125562 -0.465495 0.223324 0.380665 -0.227106 -0.900640 -0.303712 0.085624 0.018059 -0.326756 0.140590 0.121877 0.224943 0.301882 -1.314896 0.320166 0.186940 0.001607 -0.434928 -0.426952 -0.036515 -0.262919 -0.041793 0.645231 -0.061864 0.697880 -0.437538 0.101918 0.467199 0.161934 0.656987 0.619155 0.204131 -0.066234 0.051308 0.134980 1.134192 0.508530 -0.387759 0.098598 0.451412 0.846773 0.218731 0.140854 -0.580336 -0.172419 0.024862 -0.089399 -0.304335 -0.158082 -0.834206 0.087838 0.780914 0.619883 -0.610977 0.593696 -0.513079 0.157513 0.382996 0.226988 1.031541 0.137566 0.418921 0.545518 0.944547 -0.498262 0.072535 0.048515 0.558006 -0.261204 0.114354 -0.053358 -0.371964 -1.533345 0.115766 -1.329022 -0.030125 0.213083 0.723173 -0.566309 0.278499 0.544344 0.171984 0.595135 -0.789202 -0.255561 -0.787455 -0.073150 -0.224294 1.365864 0.092050 0.146761 0.175447 0.582125 0.271439 0.433402 -0.074285 -0.744644 -0.321874 -1.627022 -0.531144 -0.293139 -0.338513 -0.249435 -0.634930 -0.301990 0.967682 0.749640 -1.016622 -0.008548 0.238579 0.074151 -0.036994 -0.605152 -0.395818 0.295169 -0.455609 0.203476 0.456328 -0.420626 0.061966 -0.190499 0.189473 0.256019 0.383842 0.197791 -0.834488 0.029121 0.409618 -0.305163 -0.237847 0.097903 -0.123356 -0.456457 0.305430 -0.826511 0.821401 -0.819691 0.334083 -0.433018 -0.633981 -0.064146 0.365480 0.510638 -0.027241 0.158058 -0.267402 0.209309 -0.854527 -1.571399 0.450784 0.158858 0.171892 -0.270332 -0.168458 -0.090918 -0.404429 -0.222513 0.539151 -0.583360 -0.352648 -0.278775 0.863184 0.179759 -0.382384 -0.243392 0.180503 0.747270 0.332351 0.421358 -0.620295 -0.517928 -0.825782 -0.472300 0.634015 -0.192761 -0.189557 -0.084228 -0.179446 -0.849793 0.563846 -0.552628 0.484019 -0.398331 -0.147292 -0.831475 0.083117 -0.225652 -0.021071 -0.046326 -0.508624 0.193974 0.085615 -0.207067 -0.139615 0.067671 0.427024 -0.526148 -0.703377 0.127136 0.180068 0.707669 0.382860 0.257251 -0.348548 -0.116466 -0.563124 0.754675 -0.287097 0.303061 0.123632 -0.704257 0.779406 -0.406077 -0.436658 -0.297872 0.487763 0.160518 -0.140666 1.287844 0.874017 -0.789622 -0.306554 -0.465158 0.300234 0.316028 1.012775 -0.592152 -0.256957 0.307012 -0.003945 -0.138852 -0.184262 0.321720 -0.034113 0.319330 -0.833768 -0.430678 0.482619 0.566684 0.025472 0.301312 -0.088080 -0.113304 -0.367551 0.988091 0.167628 0.274317 -0.586945 -0.852801 0.321007 -0.381973 0.196520 -0.026016 -0.187171 -0.459811 -0.152215 0.132362 0.767600 0.803430 -0.659702 0.668300 -0.836744 -0.814914 -0.607835 0.130332 0.137325 -0.562935 0.399455 -0.452907 0.110791 -0.165112 0.425943 0.081153 -0.239926 -0.486605 0.058055 0.302372 0.234268 -0.682380 0.857740 -0.033572 -0.340173 -0.187474 0.000486 -0.032470 0.477834 -0.316693 -0.428191 -0.352060 0.516260 -0.466197 0.590253 0.052228 0.355274 0.478529 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/strongly-connected-components.cpp__main = 2.737013 -0.366125 -0.497140 3.848620 1.036388 -0.630223 0.987149 1.668823 -0.089328 -5.719843 -3.011584 1.928300 0.291614 -0.535301 1.013197 0.865659 1.883845 1.804991 -6.421340 0.520074 1.074571 0.116024 -1.001168 -1.356263 0.067750 -1.203336 0.224655 2.255330 0.587913 3.913867 -1.833956 1.430808 3.062937 0.472977 2.285634 2.932157 0.398048 -0.335554 -0.558734 -1.029421 6.085018 1.509740 -0.165030 2.333645 1.108034 4.520120 0.100827 3.739249 0.508561 -1.313461 2.390197 -1.633048 -1.688397 -0.388316 -4.495161 1.129900 3.557772 2.113966 -2.699008 2.652333 -0.853519 1.135992 1.601765 -0.761123 4.557170 2.112218 2.125080 3.178038 4.532562 -2.992915 0.295750 0.393021 1.996036 0.138436 0.893675 -2.889012 -1.196728 -4.846273 0.084040 -5.590049 0.236017 -0.777226 5.596012 -3.350770 0.676476 2.088898 0.338405 3.472152 -2.433624 -0.403905 -4.140736 -0.248488 -0.387259 5.185562 0.383053 0.683708 0.235154 1.423832 0.221797 1.957079 0.150021 -3.454139 -2.166365 -7.387320 -3.134288 -1.641385 0.047758 -0.061014 -3.626242 -0.587835 1.827219 2.157760 -5.744058 -1.045640 1.328479 1.179081 0.195091 0.161075 -2.500884 -0.264586 -0.584790 1.490325 1.648599 -2.391523 0.536532 -2.189486 -0.573314 0.745199 1.969195 0.471586 -3.603864 -1.212308 0.792739 -0.425777 -0.329621 0.563389 0.650517 -1.705077 2.066657 -2.935404 3.615503 -4.681262 -0.783279 -2.151459 -2.961590 -1.560756 4.525754 1.988567 2.631597 1.065642 -1.563207 -0.222015 -4.375588 -6.286203 1.535121 0.036298 1.456305 0.557508 -0.799170 0.548685 -2.579904 -0.619320 1.664522 -2.465546 -2.125697 -1.170391 3.102397 -0.021319 -1.551561 -2.453057 0.923378 2.572811 -0.003672 2.551338 -2.111625 -3.688752 -4.360629 -2.498417 3.604298 -1.731460 0.191486 -0.717158 -0.393769 -3.458807 0.808562 -3.419368 0.967933 -0.882018 -2.330740 -4.713378 1.527724 -1.147160 0.129972 1.310676 -3.298242 1.281477 1.655083 2.180891 -0.292039 0.932600 0.751552 -4.008852 -3.819649 -0.360003 -0.715480 3.517517 2.139946 0.691739 -2.164403 -1.452259 -2.760278 3.128158 -2.612156 1.858891 0.318868 -2.101477 2.740251 -2.729361 -0.776699 -3.024069 1.782714 1.212391 -5.168168 4.787795 2.924390 -3.557778 -1.240727 -2.874542 1.635305 0.903783 4.423604 -2.518450 -1.918518 1.583886 -0.026043 -0.332248 -2.153065 1.543010 -0.086629 0.651547 -4.501484 -2.117429 3.138883 2.689761 -0.315472 1.418682 1.730219 0.346940 0.062484 5.020388 1.535018 0.402593 -2.684700 -7.319961 1.573710 1.978234 0.615562 0.506703 -2.419506 -1.919139 0.317860 -0.012275 3.694272 2.582494 -0.598324 3.815409 -3.645788 -3.962013 -2.440325 0.196782 1.399472 -1.997711 0.813711 -2.144521 0.539792 -0.584105 1.431998 0.284596 -1.929037 -2.375027 0.871091 3.256464 0.464491 -0.964728 4.493604 0.635032 -1.916597 -0.196235 -0.415709 -0.295603 1.686918 -3.134691 -1.327423 -0.491512 1.655862 -2.787270 2.093275 -0.220218 1.098152 1.421565 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.192261 -0.248260 -0.600534 2.983574 -0.265023 -2.115627 1.306390 2.224639 -0.647352 -4.487515 -1.473203 0.043091 0.585547 -1.310341 0.235100 0.924708 0.421049 1.464781 -7.196542 1.356452 1.838572 0.527329 -1.460689 -1.892098 -0.154268 -1.445114 -1.093573 2.496295 -0.316137 3.627823 -1.615728 0.546471 2.646078 0.090272 2.223376 3.344426 0.401448 0.074097 0.982879 1.123919 4.553382 3.009489 -2.585699 -0.247777 1.319633 4.166124 0.747073 0.997120 -4.029345 -1.356990 -0.008564 -0.510663 -1.888358 -0.832295 -2.819421 0.317587 4.518225 4.026335 -2.402970 2.871454 -2.747995 0.491913 1.924431 1.424823 4.429677 1.418733 1.882862 2.717941 4.516775 -2.279938 0.780909 -0.224189 1.334885 -2.048598 1.126329 -0.732540 -2.128536 -7.110286 0.855579 -7.040090 -0.832706 1.430004 3.654320 -3.271918 1.606081 2.456208 1.690238 3.240776 -3.633699 -1.017201 -3.370217 -0.464727 -1.257535 7.579507 0.137101 0.769466 0.447139 3.195255 1.481833 1.439634 -0.040386 -3.391007 -2.226680 -6.866419 -2.034954 -1.964491 -1.469206 0.037588 -3.619538 -1.718444 4.649806 2.698108 -5.639775 0.695391 1.460180 1.044514 1.040673 -1.894018 -2.132683 1.890856 -2.390601 0.213025 2.145667 -2.308111 0.192775 -0.681295 0.907651 1.449928 0.921835 0.854429 -5.369892 0.497644 1.882650 -2.263962 -0.563670 1.424347 0.072260 -2.162657 1.455776 -4.705261 3.860304 -4.470420 1.569353 -1.388049 -3.477679 -0.598979 0.902134 2.751787 -1.160317 -0.304381 -1.553115 0.750476 -4.403793 -6.920328 1.521506 0.885383 1.188525 -1.277995 -1.040423 -0.640813 -2.008467 -0.109909 1.773561 -2.288658 -1.107477 -0.821583 5.810663 1.084941 -1.668071 -0.650377 0.081458 2.886683 1.444260 2.337299 -2.654897 -1.800425 -4.833819 -2.119422 3.257622 -0.746576 -0.914326 -1.340916 -0.915724 -4.219053 2.563947 -2.358739 2.233456 -1.466346 -0.281674 -4.166759 0.845073 -0.841579 -0.435067 -0.093485 -2.392564 0.386185 0.739847 -0.951665 -0.331541 -0.280254 1.996592 -2.658798 -2.838171 1.036812 0.127238 3.551266 1.871647 0.855806 -1.010717 -0.341487 -2.889414 3.577694 -0.501012 1.577399 -0.080904 -2.795046 4.025006 -1.942642 -1.824441 -2.326441 2.112592 0.520842 0.402189 6.672973 3.754302 -3.045284 -0.771191 -1.456424 1.273378 1.637235 3.627981 -2.805252 -2.182864 1.335067 -0.929709 -0.520667 -0.560851 1.301467 -1.077576 1.750976 -3.311242 -0.999008 2.410855 2.514167 -0.204395 1.959945 -0.319981 -1.397656 -1.499630 3.817282 1.150942 0.559511 -2.711418 -3.894921 1.871166 -2.935790 0.766890 -1.366269 -0.690928 -1.923575 -0.051694 1.641305 3.503826 4.803104 -3.531890 3.029165 -4.684816 -4.041295 -2.966459 0.825344 0.815009 -2.034845 0.849700 -1.650211 1.110989 0.055065 1.924089 0.935698 -2.246885 -2.134097 0.683256 2.149555 0.567088 -3.698419 4.204538 -0.477727 -1.118822 -1.093288 -0.091535 -0.285121 1.589865 -0.374297 -1.432926 -1.169417 2.788623 -2.455060 2.932927 0.231864 1.006446 2.480527 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.661535 0.283992 -2.603703 4.656549 -1.181559 -0.994984 0.810162 -0.292037 -0.425370 -5.182554 -0.240945 2.087462 0.763634 0.684797 -1.333460 2.875836 -0.178744 1.002555 -3.335221 0.570629 2.308664 0.750912 -0.517791 -0.006214 0.623693 -1.118772 1.231144 0.811254 0.150936 3.536348 -0.964605 2.796224 3.599438 -0.831181 -0.177120 2.532014 0.129468 1.752325 -0.046384 0.101629 2.101820 0.618885 -1.305967 -0.112913 -1.470518 4.039171 1.372249 2.325467 -3.340281 -2.337615 -0.200360 1.824710 -1.221100 -1.149634 -1.703612 1.017287 1.382475 3.783913 -1.248525 1.423450 -1.516822 0.810730 2.304124 1.920609 4.199787 2.956180 2.487156 4.256603 4.330393 -2.063779 1.758539 0.000709 -0.384371 -1.581701 2.955671 -1.016363 -2.528483 0.121778 -0.838508 -3.974927 -1.199970 1.486988 4.745731 -3.604350 -0.716074 -1.259125 2.029303 4.808219 -2.890204 1.500307 -3.436158 -0.386328 -0.629128 6.132941 0.720239 0.884656 -1.750490 2.702765 0.067626 -0.020299 -0.355320 -2.494729 -0.328191 -2.127098 -1.860572 -2.493961 -0.034857 2.538421 -6.093244 -0.907995 -0.206349 3.201185 -7.456510 0.223378 0.840097 1.492022 5.262740 1.789605 -1.322640 1.910619 -0.596582 -0.696093 0.589065 -1.018114 1.425454 -0.687797 -0.626613 0.531829 0.350725 1.972618 -7.902939 0.215612 0.701062 -2.968310 1.531801 4.034199 2.527119 -0.942590 1.485786 -3.923980 2.659263 -5.185096 -1.745188 0.296631 -5.162542 -1.810294 0.834767 3.347003 1.172333 -3.068101 -1.899518 -1.517058 -6.230602 -5.394995 -0.114659 0.439130 -0.200666 2.165466 -1.301655 0.345676 -3.241055 1.642481 3.631020 -1.681006 -1.709558 -0.820978 4.772699 1.445101 -0.224036 -0.986249 -2.044811 -0.611389 0.825463 3.934331 -0.777528 -3.646634 -7.700758 -1.105500 2.769625 -1.179687 -0.316680 -2.973178 -1.631709 -4.187475 0.763206 -2.385945 0.260560 0.154675 0.291313 -4.424519 2.698476 -0.400464 -2.032579 0.121684 -2.396695 0.301750 1.633872 -1.788314 0.848177 -0.314312 0.149298 -1.207510 -1.514778 3.370916 -1.645669 1.799082 2.172926 -0.048866 -1.106748 -1.835236 -3.477952 3.241850 -0.864175 2.514491 1.408487 0.968899 3.110292 -3.256743 0.240483 -2.135455 1.541880 0.013265 -3.290865 3.713845 2.506369 -2.227984 0.712917 0.503785 2.271240 1.185974 0.785374 -2.873897 -3.115995 1.209693 0.006507 -0.173835 0.100492 0.142841 -2.233122 0.785734 -2.118769 0.500177 2.602187 1.204068 -1.220740 0.219085 0.061731 -4.371501 0.375877 1.930549 2.825742 0.409694 -2.426977 -4.312634 0.454051 -5.480428 -0.306620 -1.368491 -1.433882 0.215332 2.485938 -1.787789 3.375908 -0.884910 -4.072588 2.928477 -6.652087 -3.726485 -1.649748 -0.183397 0.424796 0.281427 0.866135 -0.731294 0.957694 1.480606 1.690266 -1.430852 -3.971192 1.567718 1.744903 4.394273 -2.306218 -1.749254 3.797973 -0.453262 0.411208 -1.559815 0.996212 -1.324077 -0.706740 -4.441017 -0.719945 0.900335 2.820861 -3.721663 2.845433 -0.910135 -0.167295 1.522489 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.699761 0.467478 -6.639185 13.887427 -2.592305 -6.951176 4.632414 6.670202 -0.521474 -16.836664 -4.380818 8.277856 3.902127 -3.239907 -1.451038 5.120006 0.045507 6.688737 -22.905674 4.453854 5.973764 2.329580 -7.126694 -6.921552 -0.573468 -4.597752 1.492671 7.159370 -0.196424 13.820722 -4.867914 3.669638 11.197174 -1.020712 6.767378 11.925433 1.678686 1.615981 -0.953229 0.955768 15.018259 12.632802 -7.885967 1.627688 0.914161 15.676742 5.351470 4.678699 -14.447526 -6.388885 -2.915485 3.560267 -7.598128 -4.504110 -9.627681 1.834745 12.166231 12.151120 -7.412870 9.994512 -7.928678 1.636576 8.241505 6.861523 15.775547 5.394805 8.206259 12.239670 17.061965 -8.977684 4.561983 -0.654435 3.500433 -7.178127 11.253595 -1.998914 -12.668412 -13.417842 2.238984 -22.834070 -4.126402 5.414064 15.873360 -14.020645 4.667553 5.269252 8.919223 13.913187 -13.376705 -2.392411 -12.123234 -2.519384 -6.203250 28.903900 2.512225 4.646228 -1.127153 11.641147 4.234799 3.219031 0.885680 -13.824769 -1.628545 -20.862506 -5.731393 -8.754028 -5.390331 3.413328 -13.628427 -6.156013 9.537929 15.527886 -23.494550 2.441064 5.097066 2.394316 11.974658 -6.047863 -4.342915 9.139070 -6.127818 -1.207679 7.081101 -9.786335 1.727477 3.127259 2.130895 4.643003 2.464098 5.829342 -23.501851 0.764969 7.056154 -7.375870 0.172046 8.527769 2.834313 -9.792044 5.634459 -17.365040 13.383594 -16.144506 2.129836 -2.194312 -15.794718 -4.488707 2.361873 8.808679 0.575484 -5.466830 -4.411186 0.979466 -18.230938 -27.634033 6.109954 3.641186 1.099424 -1.258588 -3.627767 -1.714891 -10.996643 2.547139 10.258888 -7.746238 -5.044192 -0.143305 21.996360 3.933133 -5.518223 -1.734610 -1.962114 4.499208 9.797547 12.138306 -7.665641 -14.154774 -20.982814 -5.810303 12.866625 -3.082413 -3.568344 -6.744868 -6.351807 -13.480543 5.465805 -9.673400 8.913767 -3.654704 0.868604 -16.316723 3.971647 -2.380677 -2.588996 -0.215024 -9.561433 1.605837 4.860454 -6.043420 -2.055718 -0.755210 7.570027 -8.032554 -7.734063 7.915326 -2.386788 13.367419 7.540394 3.148345 -4.595437 -1.523339 -12.104868 11.812284 -4.970490 7.508647 -0.327462 -7.272391 14.336252 -9.321697 -6.245554 -9.260077 7.684256 1.177798 -0.030830 22.514104 13.960425 -9.896731 -0.193293 -0.090141 5.247541 6.287431 11.334262 -12.797008 -11.476373 4.960305 -3.900957 -0.995618 -1.032052 3.230477 -5.892400 4.284269 -10.340894 -1.469718 9.928831 7.438984 -1.521052 4.661628 -0.711729 -10.257331 -3.532305 12.469867 6.997641 3.291222 -12.739641 -15.208742 6.887319 -17.097108 0.649945 -6.056652 -2.533827 -4.907998 3.474208 0.553976 12.193786 10.007249 -15.242970 11.287813 -21.933975 -15.392087 -11.209577 0.911730 3.471739 -4.176379 4.065448 -5.092832 5.343061 0.489487 6.484038 -0.733583 -9.379380 -0.014099 4.769439 8.888775 -0.551665 -11.656729 16.547979 -1.234347 -2.075695 -3.792302 -1.054053 -3.671102 2.068178 -8.164884 -4.191996 -1.625525 11.287444 -10.296817 10.566982 -0.692671 2.789912 8.368930 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.106873 -2.559710 -3.390141 10.424255 0.198778 -4.198905 1.623155 4.398900 0.159727 -10.409645 -3.727022 4.562068 1.846113 -0.868630 1.554590 2.691693 0.891096 1.842554 -14.573117 3.413947 0.791722 -0.450921 -6.167409 -4.202359 -0.059457 -1.373283 2.360597 5.867053 -0.203190 6.978287 -4.814165 2.968250 5.875681 0.109280 6.051670 4.280122 1.123943 -0.823187 -3.530647 -1.220459 11.407596 6.880960 -4.204233 2.687802 0.887261 9.381827 2.693561 7.508269 -4.778759 -2.781423 2.387258 -1.454360 -4.099182 -1.610033 -8.874666 2.740136 8.651881 5.601330 -5.049400 5.555628 -4.809640 2.367385 5.083529 3.116391 12.679686 3.539908 8.074244 7.637537 10.463643 -6.273615 2.306125 0.639316 5.542284 -2.082204 4.573153 -4.478691 -5.547598 -11.913040 2.715194 -12.408959 -0.342387 0.805189 9.192804 -8.072179 2.403541 3.697639 3.576326 8.623052 -9.898751 1.430674 -8.608446 -1.208453 -2.744555 16.466940 0.079708 1.802608 1.135155 6.518702 1.771988 3.848016 0.987928 -7.655118 -0.972975 -14.817563 -6.421975 -1.692740 -3.521740 -0.398372 -8.205223 -1.620733 5.981127 6.402467 -12.037981 -1.457614 1.821270 1.325072 7.178088 -1.854868 -2.442900 2.339859 -2.275002 2.563056 4.957885 -5.707987 3.562610 -2.089122 1.749536 4.269384 4.503649 4.036249 -11.919809 0.076360 3.712865 -2.166467 -0.830027 2.777834 0.561531 -6.202932 4.321258 -8.307347 8.754165 -11.216382 -0.416455 -4.509724 -7.919160 -0.887059 6.722007 4.994133 3.263325 1.696342 -3.484523 1.211846 -11.092732 -17.548858 2.597545 3.321470 0.377239 -0.878833 -1.602191 0.436757 -5.616311 -0.606741 7.032259 -7.273003 -6.481152 -2.296652 8.928152 1.902878 -3.829599 -3.152150 2.458887 5.437908 2.889886 8.028951 -3.640881 -11.444601 -11.647792 -4.371446 7.430256 -1.661827 -1.365011 -1.877015 -2.369662 -10.120004 3.793079 -7.205178 5.543130 -1.628328 -3.105686 -10.213200 2.217474 -1.456773 0.410737 -0.028912 -6.798963 2.857807 1.721338 1.452739 -2.063461 2.448303 4.968522 -8.294527 -8.991814 1.913900 -0.002857 11.173698 3.384619 2.088808 -2.111092 -2.203831 -7.255988 8.186580 -6.805549 4.301472 0.274677 -5.303570 6.831532 -7.276425 -4.701212 -6.515014 4.840638 1.535100 -2.090090 14.636240 8.985716 -8.163613 -2.032882 -4.816616 4.951406 2.652001 11.433072 -7.867450 -4.830823 2.523220 1.857781 -1.577140 -2.723373 3.139514 -1.555463 -0.327120 -8.050257 -4.380938 5.320816 4.746946 0.312381 1.646940 0.260720 -3.444060 -3.964895 10.431193 3.457439 1.750848 -7.276453 -13.098805 3.635717 -3.314882 -0.400637 -0.929277 -5.813050 -4.229014 -0.368977 0.669392 8.093020 7.496073 -5.024337 7.547991 -12.313240 -8.369393 -7.200560 1.085870 0.300400 -3.649623 3.455066 -4.693483 1.383068 -0.394653 3.529244 -2.587521 -3.650706 -3.824848 1.121145 4.449965 -0.208720 -5.993439 10.335718 1.889502 -2.064620 -2.637524 -0.316884 -3.383501 3.030639 -5.332353 -3.004674 -1.445019 5.096809 -6.142215 4.714801 1.326545 2.095929 3.246314 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.332550 -1.788941 -1.156089 4.126910 1.279924 -1.306986 -0.297699 1.154609 0.419541 -3.248034 -1.912534 3.767128 -0.110331 -0.133527 1.092218 0.593503 1.447608 -0.035856 -5.044207 1.489225 -1.639191 -1.027152 -2.969359 -1.660472 0.193819 0.637552 2.617012 2.246322 0.039722 1.520527 -2.311511 1.528333 0.859303 0.795858 3.111959 -0.270059 -0.155039 -1.384240 -2.587809 -2.483833 5.146514 1.425197 0.199840 2.935476 1.138131 2.612586 0.659457 4.662836 3.086174 0.248018 2.394362 -0.666871 -1.271017 0.266533 -5.094764 1.545670 1.460823 -0.933949 -1.800538 1.281313 -0.254595 1.418084 1.556559 -0.329214 5.832799 0.645015 3.480125 2.406019 3.130537 -1.882423 0.481487 0.443691 4.649408 1.309179 0.689750 -3.053265 -1.165039 -3.637353 0.601699 -3.410823 1.807879 -1.896274 3.292396 -1.948181 0.344936 0.124682 -0.129100 2.571266 -3.491908 1.175929 -3.411488 0.056257 -0.290516 3.768015 -0.611195 0.673179 0.647675 0.771594 -0.573012 1.840461 0.053770 -2.211425 1.072430 -6.192583 -2.631390 0.863692 -1.079977 -1.883578 -2.428856 1.086788 -0.085250 2.105764 -2.664700 -2.856111 -0.213082 -1.102650 1.186640 0.467103 -0.300892 -1.014261 -0.231260 3.147271 1.264941 -1.324176 1.624933 -2.362509 -0.276024 1.431655 3.385240 1.756813 -2.383466 -0.579178 1.020613 1.346289 -0.720712 -0.474642 -0.279102 -1.318032 1.479459 -1.048373 2.438079 -3.250991 -1.739242 -3.214375 -0.781587 0.201127 4.907045 1.579686 3.830975 3.015238 0.070412 0.301240 -3.729301 -5.985883 1.378016 0.480652 -0.852583 -0.162688 0.206572 0.596575 -1.349666 -2.069488 3.302930 -3.510239 -3.792825 -2.543527 -0.278703 0.302756 -1.231040 -1.885049 2.106552 2.768381 -0.290143 2.038354 -0.846317 -6.862382 -2.762222 -1.365772 2.028550 -0.914644 0.167948 0.612677 -0.076775 -2.534158 0.408534 -2.907831 1.351362 -0.531790 -2.570028 -2.992600 0.061587 -0.425397 1.634365 -0.138233 -2.529213 2.242188 0.779239 3.676434 -1.373832 2.649448 1.314845 -3.880733 -4.245924 -0.857571 0.829601 4.553456 0.770656 0.687594 -1.585031 -1.405522 -2.308035 2.637169 -5.342578 1.504823 0.941197 -1.995077 0.942165 -3.063675 -1.283967 -1.248424 1.617573 0.551223 -4.544580 3.910677 3.035763 -3.981281 -1.467037 -4.224929 2.615779 -0.032338 5.804490 -2.510455 -0.209903 0.703019 2.618357 -1.190083 -2.151296 1.579275 1.116558 -1.443549 -3.841576 -3.039647 1.653632 1.265255 0.633847 -0.832540 0.419853 0.221360 -1.408614 4.965230 0.787113 1.029330 -2.707828 -7.373685 0.230891 3.643002 -0.180427 2.097682 -3.725360 -2.091381 -1.266911 -1.586248 2.783285 0.327441 0.513532 2.423147 -3.031577 -2.178890 -2.326503 0.308738 -0.592659 -1.345253 2.387447 -2.576907 -0.976843 -1.161598 1.330433 -2.415248 0.385836 -2.146509 0.098596 0.973585 0.537223 -0.695938 2.892994 2.011839 -1.433827 -0.650286 -0.220115 -1.751340 1.454277 -3.844253 -1.265494 -0.821536 0.480093 -2.122876 1.013780 1.408275 1.948269 -0.479435 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.337444 -0.004493 -0.132116 0.648163 -0.146520 -0.613164 0.332664 0.446837 -0.211783 -0.911119 -0.159868 -0.079853 0.153585 -0.386353 0.054876 0.188317 -0.063048 0.508913 -1.405709 0.367341 0.428731 0.227375 -0.326915 -0.556088 -0.082403 -0.317058 -0.245032 0.587436 -0.098304 0.824490 -0.350541 0.014079 0.604336 0.020675 0.397914 0.791959 0.350341 0.107728 0.181472 0.445880 0.968072 0.676494 -0.616466 -0.136970 0.298768 0.897790 0.330740 -0.125937 -1.084622 -0.337950 -0.218369 0.028886 -0.368935 -0.317827 -0.560527 0.069263 0.961362 1.033022 -0.537011 0.723638 -0.661033 0.043781 0.476480 0.360699 0.940484 0.235388 0.355352 0.589978 1.078654 -0.487838 0.164556 -0.076748 0.281193 -0.643334 0.448268 0.063890 -0.586766 -1.835776 0.119039 -1.559618 -0.251630 0.535561 0.675474 -0.768367 0.425382 0.730406 0.451845 0.698651 -0.847417 -0.332641 -0.692652 -0.126819 -0.312650 1.821291 0.191198 0.131381 0.054130 0.791841 0.467271 0.310749 0.046817 -0.737759 -0.414360 -1.563335 -0.464831 -0.432883 -0.440818 -0.039734 -0.775176 -0.522724 1.300861 0.780293 -1.328446 0.267405 0.437445 0.240127 0.236093 -0.941892 -0.388093 0.661423 -0.574354 -0.064790 0.505420 -0.620051 -0.004958 0.114662 0.290392 0.299429 0.144837 0.145863 -1.081415 0.084982 0.399574 -0.484799 -0.129919 0.290752 -0.045179 -0.590876 0.300619 -1.149089 0.882832 -0.907288 0.555306 -0.143727 -0.800621 -0.115517 0.117101 0.428418 -0.381933 -0.255062 -0.500643 0.190298 -0.923977 -1.738420 0.496331 0.277124 0.232494 -0.289663 -0.254218 -0.254741 -0.399859 0.006311 0.525310 -0.502442 -0.149179 -0.001022 1.267884 0.245954 -0.410194 -0.203962 -0.000416 0.695398 0.613106 0.449745 -0.607302 -0.262038 -0.983753 -0.452244 0.722561 -0.090411 -0.271002 -0.316318 -0.331707 -0.983495 0.703679 -0.509152 0.618667 -0.305428 0.016590 -0.909004 0.102337 -0.189996 -0.155824 -0.102659 -0.515988 0.037870 -0.057455 -0.606921 -0.118392 -0.181574 0.594070 -0.505121 -0.612624 0.283942 0.075941 0.657736 0.348083 0.378895 -0.300891 0.031449 -0.589469 0.756736 -0.090148 0.281168 -0.029683 -0.697128 1.029427 -0.382669 -0.533255 -0.451982 0.486788 0.091967 0.460260 1.553216 0.923862 -0.608172 -0.155002 -0.069710 0.197785 0.487443 0.847526 -0.704777 -0.493926 0.343722 -0.264039 -0.109500 -0.058782 0.285001 -0.329033 0.472391 -0.639753 -0.168428 0.427799 0.646726 -0.038081 0.480209 -0.150673 -0.392235 -0.554107 0.774158 0.233402 0.186876 -0.599672 -0.499003 0.476785 -1.024044 0.213366 -0.312052 -0.056201 -0.343768 0.108261 0.450598 0.758413 1.143785 -0.951978 0.637167 -1.115038 -0.953933 -0.590205 0.177510 0.209543 -0.518768 0.309005 -0.355325 0.307787 0.014175 0.409486 0.188033 -0.400026 -0.337783 0.097712 0.374714 0.169334 -0.948001 0.983472 -0.202355 -0.273686 -0.213288 -0.095270 -0.033618 0.344098 0.061729 -0.335751 -0.307684 0.708504 -0.499873 0.785461 -0.126847 0.134331 0.674339 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.769736 -0.092919 -0.196680 0.798092 0.239995 -0.640060 0.248061 0.509291 -0.051548 -1.356512 -0.581742 0.242948 0.087445 -0.546519 0.223897 0.343981 0.437584 0.654273 -1.443595 0.542080 0.335308 0.145886 -0.633379 -0.418383 -0.026599 -0.428096 -0.417298 0.469191 0.039601 0.982522 -0.652433 0.197385 0.773576 -0.028823 0.764178 0.985302 0.283657 -0.158344 0.391852 0.168723 1.672380 0.521359 -0.112226 0.341057 0.631971 1.150543 -0.124476 0.939300 -0.416404 -0.371062 0.430539 -0.473106 -0.403759 0.055543 -1.200370 0.433716 0.998372 0.694284 -0.976898 0.771362 -0.449466 0.278148 0.530948 0.006102 1.298574 0.556951 0.281375 0.809213 1.497719 -0.482175 0.152491 0.098517 0.755927 -0.199409 0.473615 -0.311305 -0.236271 -1.675482 0.043457 -1.416389 0.292321 0.039995 1.544956 -1.039309 0.489540 0.920836 0.374238 0.962993 -0.792712 -0.384344 -1.093148 0.025836 -0.246638 1.573059 0.010498 0.280014 -0.139331 0.631618 0.025202 0.445070 -0.170707 -1.025175 -0.911551 -2.207440 -1.028276 -0.538138 -0.441514 -0.268399 -1.277589 -0.340781 1.111450 0.964307 -1.645599 0.105099 0.331424 0.061374 -0.013614 -0.072812 -0.800540 0.084368 -0.541344 0.308980 0.162201 -0.435153 -0.106650 -0.751634 0.076173 0.316186 0.450308 -0.035248 -1.033693 0.048264 0.270756 -0.231123 -0.337455 0.219546 0.063102 -0.910612 0.503375 -0.925705 0.881375 -1.223763 -0.058051 -0.726397 -1.052550 -0.242720 1.162685 0.550764 0.474647 0.220214 -0.506886 -0.122429 -1.375763 -1.807930 0.464632 -0.371958 0.432785 -0.104976 -0.159256 -0.254431 -0.411780 -0.299124 0.386338 -0.862067 -0.355146 -0.410176 1.318608 -0.102387 -0.423098 -0.727100 0.017688 1.138761 0.196702 0.331470 -0.779291 -0.542832 -1.128709 -0.678868 0.879528 -0.296437 0.221631 -0.213350 -0.078572 -1.003238 0.513605 -0.784624 0.338662 -0.629240 -0.216904 -1.185677 0.151189 -0.324448 -0.153549 -0.093823 -0.799680 0.463278 0.275085 0.136070 -0.136664 0.069161 0.241794 -1.149627 -1.101502 0.009042 0.112198 0.963129 0.808478 0.339681 -0.458446 -0.261369 -0.889871 0.905380 -0.987966 0.356820 0.394745 -0.843562 1.069385 -0.708649 -0.522511 -0.807495 0.620312 0.061065 -0.881357 1.547945 0.908366 -1.150954 -0.267242 -0.857289 0.554627 0.456972 1.353282 -0.526687 -0.181978 0.520630 -0.155062 -0.182038 -0.516168 0.502141 -0.202779 0.766774 -1.166112 -0.479339 0.782849 0.898636 -0.125464 0.288534 -0.043861 -0.007563 -0.145964 1.288841 0.337850 0.260775 -0.868046 -1.552155 0.383584 -0.106351 0.331689 0.135239 -0.395371 -0.428184 -0.124063 0.113381 1.125092 0.793289 -0.146094 0.918376 -1.252983 -1.238671 -0.420623 0.244648 0.316321 -0.699820 0.511568 -0.688330 0.038243 -0.265462 0.753373 0.145234 -0.516779 -0.907314 0.257946 0.649617 0.377769 -0.788594 1.170730 0.011852 -0.469487 -0.024578 -0.111884 0.255727 0.370470 -0.454757 -0.502453 -0.426932 0.524609 -0.767786 1.110659 -0.173489 0.511922 0.571383 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 1.420573 -0.275427 -0.895976 1.733492 -0.117551 -1.130154 0.485027 0.751183 -0.148407 -2.089251 -0.504761 1.402272 0.360865 -0.872025 -0.104405 0.781836 0.449990 0.712388 -2.983499 0.867711 0.340489 -0.062900 -1.590746 -0.823699 -0.215593 -0.880645 0.502881 1.232935 -0.223965 1.682471 -0.775559 0.426339 1.255106 -0.153113 1.408040 1.650572 0.132804 -0.028375 -0.018808 0.380623 2.504718 1.529974 -0.796054 0.297753 0.860261 2.080857 0.596713 0.967005 -1.074984 -0.557955 0.054089 1.044281 -0.958446 -0.467081 -1.935915 0.084903 1.482923 0.972812 -1.420072 1.419144 -1.193402 0.319755 1.059238 1.210388 2.549583 0.397282 1.291096 1.487261 2.341949 -0.960274 0.444473 0.098210 1.159549 -0.603806 1.516854 -0.188006 -1.677189 -2.011436 0.277449 -2.759916 -0.041901 0.526386 2.148606 -1.631021 0.364725 0.784062 1.073449 1.774336 -1.892732 -0.636484 -1.717619 -0.209828 -0.775291 3.854841 0.267707 0.834054 -0.062829 1.483891 0.374299 0.642516 -0.052636 -2.163626 -0.229139 -3.427737 -1.230698 -1.263969 -0.899515 -0.230272 -1.846210 -0.616584 1.570577 2.068320 -2.795724 0.342230 0.607791 -0.181630 1.505351 -0.920428 -0.755396 0.939347 -0.937078 0.390706 0.860850 -0.879898 0.059685 -0.004434 0.703091 0.690272 0.564081 0.585137 -2.847334 0.358145 1.132222 -0.626156 -0.320234 0.788600 0.156541 -1.532735 0.729325 -2.044126 1.817081 -2.216838 0.234637 -0.935128 -1.737572 -0.435070 0.513307 1.368784 0.522135 -0.322618 -0.468242 0.328944 -2.649506 -3.980534 0.835170 0.014906 -0.103325 -0.507698 -0.351413 -0.378444 -1.166955 -0.042757 1.483825 -1.320641 -0.653039 -0.412082 2.575033 0.544816 -0.855529 -0.253527 -0.246083 0.943971 1.548688 1.378295 -1.206883 -2.583649 -2.471933 -0.805415 1.576039 -0.452903 -0.346917 -0.501501 -0.952941 -1.764288 0.865820 -1.261216 1.079045 -1.014018 0.121168 -1.993871 0.286664 -0.374489 -0.156069 -0.440831 -1.419770 0.416503 0.504929 -0.762367 -0.258231 0.069548 0.820713 -1.332468 -1.283032 0.943990 0.018429 2.028911 1.224608 0.482486 -0.560295 -0.110962 -1.810986 1.381891 -1.319690 0.896679 0.557841 -1.721335 1.890783 -1.172316 -1.005875 -0.841205 1.150760 -0.070026 -0.311716 3.358514 2.274652 -1.829840 -0.293210 -0.314077 0.814586 0.721159 1.881136 -1.582196 -0.971280 0.656826 -0.230240 -0.233852 0.054776 0.657002 -0.430408 0.788795 -1.797437 -0.554968 1.454917 1.261104 -0.109227 0.273822 -0.567951 -1.180834 -0.617725 1.962881 0.625510 0.860796 -1.722046 -2.564050 0.730495 -2.224148 -0.043291 -0.194488 -0.295538 -0.851354 -0.030165 -0.193276 1.787312 0.783833 -1.835574 1.458806 -2.722384 -2.211080 -1.652047 -0.021651 0.306925 -0.792562 1.086041 -0.983367 0.369941 -0.505080 1.246455 -0.323385 -0.807617 -0.103779 0.652291 0.797544 0.479529 -1.800113 2.075250 -0.157563 -0.430182 -0.638577 -0.163557 -0.405250 0.899644 -1.270261 -0.832056 -0.714513 1.485697 -1.282405 1.500918 0.063287 1.154336 1.079214 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 1.892373 0.428481 -0.554247 2.252040 -0.234991 -2.219278 0.896350 1.941470 -0.815814 -2.646050 -0.777741 0.826429 0.288017 -1.418353 0.101227 0.381752 0.186725 1.283843 -5.355294 1.341949 0.747212 0.370687 -1.807651 -2.265464 -0.153273 -0.230277 -0.432309 2.093110 -0.302686 2.471250 -1.380017 0.044373 1.436433 0.472240 2.136987 1.992766 0.299549 0.011157 0.452849 0.374274 3.275343 2.655618 -1.918543 0.203019 1.409040 2.787912 0.988658 -0.326631 -3.418935 -0.482206 -0.829079 0.503948 -1.418860 -0.730593 -2.158790 0.026802 3.125304 2.569631 -1.675250 2.251051 -1.807528 0.400140 1.595405 1.143712 3.434141 0.633491 1.255192 1.923621 3.328431 -1.498460 0.702781 -0.546460 1.876470 -1.689259 0.590463 -0.133773 -1.941568 -4.980030 0.527817 -5.860699 -0.280208 1.198885 2.602817 -2.201621 1.689372 1.538537 1.327209 1.966019 -3.205083 -1.134212 -2.191719 -0.480925 -1.647216 5.881096 0.121295 0.834146 0.586365 2.399902 1.313422 1.082586 -0.378235 -2.505508 -0.412911 -5.303375 -1.081592 -0.841171 -1.830433 -0.609880 -1.827822 -1.434316 3.377613 2.783343 -3.833648 -0.075153 0.814809 -0.076407 0.083185 -2.346572 -1.255895 1.957313 -2.375522 0.344466 1.670060 -1.860641 0.026692 0.433650 0.161595 1.115534 1.083267 1.310860 -3.992746 0.471077 1.681134 -1.687681 -0.750772 0.737244 -0.694824 -1.563226 0.779983 -3.568712 2.861954 -2.858624 1.368867 -0.971144 -2.389616 -0.040541 -0.543066 1.725441 -1.113686 -0.031726 -0.255978 0.879082 -2.967684 -5.387456 2.094948 0.927909 0.393652 -1.528830 -0.505468 -0.804914 -1.612012 -0.755387 2.222120 -1.944822 -1.180747 -1.001700 4.865676 0.914208 -1.401780 -0.174790 0.430882 2.338300 1.886439 1.428866 -2.268159 -1.690495 -3.208444 -1.185328 2.318936 -0.400158 -1.194822 -0.499323 -0.683978 -2.695172 1.921729 -1.801781 2.299178 -1.228434 0.295872 -2.834025 0.172342 -0.516483 -0.032026 -0.551155 -1.465552 0.455277 0.613971 -1.049058 -0.988463 0.119061 2.245949 -1.468205 -2.031562 0.935106 0.845655 2.383997 1.389808 1.142333 -1.256789 0.155381 -2.016456 2.672006 -0.374240 1.201812 -0.151597 -2.048444 3.161623 -1.282167 -1.651134 -1.140669 1.675256 0.370562 0.542065 4.881710 2.983297 -2.448450 -0.629366 -1.215932 1.014317 1.235484 3.198820 -2.480012 -1.685849 1.086828 -0.601167 -0.551845 -0.506735 0.930185 -0.406398 1.177704 -2.336182 -0.778162 1.669752 1.555755 0.180633 1.329975 -0.816753 -1.347763 -1.535567 3.111756 0.664933 0.854912 -2.292258 -2.261447 1.157192 -2.609479 0.899509 -0.996599 0.002377 -1.775307 -0.416046 0.907616 2.418971 3.173754 -3.346382 1.995394 -3.500353 -2.825007 -2.396710 1.001300 0.650224 -1.795798 1.026377 -1.314986 0.703654 -0.078692 1.645871 0.570866 -1.114184 -1.453136 0.205175 1.088586 0.526021 -3.191035 3.047074 -0.376797 -0.951319 -0.655655 -0.269799 -0.316632 1.128300 -0.718135 -1.200907 -1.189973 2.229277 -1.766030 2.419951 0.564077 1.105259 1.870663 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 1.628307 0.265017 -0.574807 2.045985 -0.476249 -2.490738 1.155551 2.112270 -0.775914 -2.775894 -0.573263 -0.194204 0.545389 -1.643443 0.154269 0.526516 -0.161033 1.591152 -5.365122 1.445537 1.296549 0.733350 -1.769868 -2.242776 -0.286043 -0.758846 -1.171220 2.140509 -0.445757 2.696141 -1.188349 -0.266414 1.831247 0.055502 1.849415 2.674193 0.944530 0.412782 1.040130 1.476867 3.366135 2.967987 -2.450835 -0.402910 1.456431 3.017194 0.972052 -0.494546 -4.929513 -0.923614 -0.978126 0.152201 -1.413697 -1.033568 -1.872772 0.113861 3.949057 3.525045 -2.046140 2.687394 -2.206009 0.125244 1.733600 1.557294 3.302247 0.835277 1.154866 1.936660 3.783324 -1.448063 0.654589 -0.501832 1.280740 -2.435119 1.108116 0.097166 -2.112801 -6.060723 0.811156 -5.977590 -0.726749 1.807724 2.353092 -2.598668 1.932543 2.427685 1.728507 2.159352 -3.296242 -1.561735 -2.169682 -0.616456 -1.642924 6.950607 0.302837 0.795895 0.558623 3.022123 1.760926 1.090504 -0.133234 -2.616092 -1.240322 -5.487792 -1.314848 -1.249505 -1.923427 -0.320177 -2.185489 -2.158063 4.369078 2.448093 -4.388731 0.866326 1.356629 0.422707 0.723587 -3.054639 -1.512209 2.496390 -2.574602 -0.375186 1.672553 -2.081788 -0.173095 0.555811 0.852360 1.245886 0.491285 0.858137 -4.370613 0.801530 1.629817 -2.088371 -0.741767 0.956227 -0.608122 -2.273798 0.927574 -4.233489 3.049580 -3.263516 1.949122 -0.576729 -3.053485 -0.160461 -0.718735 1.422580 -1.771096 -0.733613 -1.172413 0.847616 -3.229701 -6.089315 2.026710 1.079640 0.805242 -1.628885 -0.799837 -1.199083 -1.493545 -0.353347 1.984293 -1.761527 -0.577388 -0.458962 5.793706 0.975487 -1.497573 -0.140918 0.098575 2.605437 2.375183 1.426615 -2.381175 -0.816134 -3.359645 -1.288142 2.448190 -0.125985 -1.152229 -0.844942 -1.006436 -3.563261 2.430169 -1.775885 2.601603 -1.454738 0.590102 -2.957409 0.242105 -0.562575 -0.154149 -0.665994 -1.552704 0.159990 0.161369 -1.911743 -0.787463 -0.543227 2.454727 -1.616137 -2.112338 1.207329 0.719982 2.521617 1.261038 1.333205 -0.595177 0.481815 -2.128013 2.681760 0.087802 0.967138 -0.175769 -2.386349 3.776830 -1.168255 -2.139090 -1.666392 1.712723 0.236503 2.419902 5.566490 3.086895 -2.219318 -0.549286 -0.437360 0.703517 1.650459 2.981506 -2.427724 -1.937523 1.243874 -1.160786 -0.457712 -0.276372 0.932350 -0.916198 1.934623 -2.264127 -0.476344 1.620808 2.073028 -0.041185 1.926931 -1.018557 -1.644936 -2.070048 2.930265 0.646119 0.721126 -2.216300 -1.491103 1.517913 -4.095727 0.838606 -1.740163 0.303109 -1.542986 -0.083286 1.887803 2.521775 4.521211 -3.667948 2.069458 -4.000551 -3.317795 -2.277682 1.087605 0.814700 -1.935521 0.677530 -1.208074 1.205226 0.056378 1.704390 1.054419 -1.583151 -1.545666 0.148415 1.067219 0.326509 -3.837332 3.387283 -0.878232 -0.765250 -0.716700 -0.348080 0.083031 1.398828 0.300368 -1.320984 -1.440669 2.543250 -1.744814 2.883956 0.035609 0.847818 2.612089 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 6.113995 -1.465349 -2.077321 8.398117 1.421059 0.064550 0.587490 2.297953 0.587499 -10.738403 -5.293107 6.682169 0.742111 1.444900 1.857230 2.840819 2.881444 3.138673 -12.686911 0.416102 0.459631 0.434682 -0.831645 -3.268330 1.078145 0.230310 4.500254 2.327502 1.743980 6.446745 -4.275065 4.358360 5.223472 0.973567 3.082037 1.591161 -0.032396 -1.284388 -4.926343 -5.235390 10.799882 1.633347 1.708443 6.425118 -0.642106 7.034837 1.481470 8.807603 6.009169 -2.030054 4.879524 -3.128496 -3.397893 0.434017 -8.919592 3.119652 3.987989 2.021718 -2.795477 3.586227 1.294952 3.326374 3.265424 -3.189739 9.587015 3.728428 6.589826 6.191262 7.343404 -5.424010 2.282896 -0.624498 4.218730 1.055969 3.662016 -8.682306 -1.832194 -5.808286 -0.025128 -9.605464 2.263540 -3.089240 9.946760 -6.194246 0.617193 1.500359 0.516703 7.402438 -4.544023 2.292605 -7.339035 0.133120 -0.358951 8.516323 0.164419 1.229566 -0.669972 1.356081 -0.823596 2.109848 2.235493 -4.668761 0.499338 -11.181157 -5.467190 -0.709160 0.594789 0.565370 -6.459249 1.940806 -1.531206 3.824795 -10.449813 -4.416106 1.002139 1.706477 2.839203 1.730981 -2.157656 -1.932455 -0.212913 5.126769 1.784789 -5.757194 3.274228 -4.059563 -2.831045 2.137223 5.565359 2.233887 -5.903182 -3.696851 0.426131 1.048611 0.269416 2.005795 2.871625 -1.896713 4.139684 -4.052275 5.087390 -7.837814 -4.515141 -3.280369 -4.133595 -3.063562 10.375237 1.984608 6.545915 3.105066 -2.461634 -1.270898 -8.079922 -10.478537 2.464493 1.176895 0.546564 3.755105 -0.767969 1.994992 -5.507163 -1.531503 5.001365 -5.229628 -6.603659 -3.164848 1.657078 -0.468178 -2.644468 -5.095355 2.951227 3.655081 -0.897355 5.782324 -1.301711 -10.378983 -8.575340 -3.632229 6.484730 -3.491008 1.082256 -1.599179 0.181860 -5.572283 -0.478758 -6.961252 1.101133 1.291497 -6.294272 -8.613231 2.698067 -1.285495 1.037291 2.651200 -6.619489 3.559499 2.680235 6.871992 -1.560125 3.019411 1.732214 -8.587714 -8.294961 -1.368318 -2.347922 6.540799 1.650312 0.960929 -5.380943 -3.574022 -3.969425 5.054747 -7.683016 4.100086 -0.456635 -1.385596 2.179005 -6.366712 -0.022990 -5.376538 2.343880 1.543430 -12.675895 8.340038 4.245575 -6.394614 -1.500005 -6.574939 5.332170 0.061625 8.570136 -5.425420 -3.691734 1.975047 2.022734 -0.947100 -5.377274 3.013428 0.053378 -2.882988 -7.564436 -4.517203 5.259499 3.441406 -0.451771 1.182282 5.447955 -0.010947 0.050983 9.328866 2.987570 0.417863 -4.891075 -15.716621 1.116410 7.741796 0.620403 2.043864 -7.159349 -2.853780 1.620245 -1.707592 6.178008 2.313145 1.675876 6.249681 -7.193905 -5.938686 -3.973627 -0.087373 1.495416 -1.888610 1.019699 -4.050001 -0.111224 -0.403240 2.126095 -2.500275 -3.066783 -2.501770 1.351810 6.904373 -0.463290 0.529608 7.979665 3.726132 -2.805407 0.279818 -1.551975 -2.443936 1.783862 -7.119092 -1.098173 1.255960 1.417157 -6.047504 2.659913 -0.317057 1.225486 -0.414411 -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.533988 -0.554552 0.111774 0.478511 0.313520 -0.149649 0.100765 0.178882 0.064885 -0.893319 -0.453480 -0.053692 -0.074598 -0.211832 0.339525 0.206537 0.435654 -0.039832 -0.914280 0.266668 0.088050 -0.098237 -0.268569 0.074547 0.077399 -0.466193 -0.049128 0.386496 -0.056277 0.450314 -0.402923 0.205420 0.393073 0.016398 0.479608 0.462815 0.082768 -0.167743 0.134289 0.210453 1.130226 0.114181 -0.008336 0.259987 0.489993 0.633710 -0.186988 1.112744 0.434647 -0.168063 0.807069 -0.603948 -0.212562 0.146094 -0.893821 0.242366 0.664040 0.125941 -0.578974 0.363460 -0.354710 0.236189 0.159841 0.007355 0.898386 0.321294 0.495461 0.316453 0.784049 -0.288524 -0.049932 0.316057 0.592944 0.226582 0.080730 -0.454926 -0.014603 -1.171344 0.093235 -0.372582 0.178358 -0.298098 0.608146 -0.376342 -0.074181 0.488013 -0.120970 0.522918 -0.378241 -0.006956 -0.683536 0.166846 0.184820 0.674252 -0.152582 0.165267 0.014434 0.227546 -0.035235 0.411485 0.047192 -0.518827 -0.703579 -1.352534 -0.769787 -0.224661 0.012519 -0.295718 -0.857708 0.145914 0.460715 0.107240 -0.648849 -0.003213 0.146225 0.164591 0.204752 0.235084 -0.437132 -0.405936 0.020909 0.488367 0.110420 -0.130322 0.116648 -1.068067 0.335416 0.286000 0.362360 -0.221374 -0.230755 -0.024094 0.096943 0.149987 -0.217252 0.014857 0.084678 -0.466816 0.365232 -0.300429 0.496024 -0.839458 -0.221328 -0.702513 -0.353335 -0.060178 1.326945 0.414164 0.585175 0.476853 -0.470021 -0.084886 -0.765917 -1.048339 -0.091096 -0.296728 0.301015 -0.005408 -0.056930 0.019194 -0.127261 -0.229046 0.014799 -0.482275 -0.182371 -0.420088 -0.066182 -0.090183 -0.226429 -0.488893 0.132331 0.734748 -0.239036 0.255995 -0.245947 -0.713043 -0.535588 -0.519970 0.392490 -0.206432 0.246463 -0.039786 0.093151 -0.816309 0.327756 -0.392783 -0.015834 -0.298922 -0.564503 -0.587434 0.075364 -0.207593 0.188134 -0.031710 -0.495004 0.191919 0.032699 0.539692 0.202555 0.258714 -0.132804 -0.875599 -0.908158 -0.245763 0.021765 0.850089 0.206075 -0.033742 -0.039165 -0.272327 -0.560476 0.537186 -0.793225 0.069198 0.318572 -0.621629 0.399572 -0.321248 -0.281035 -0.486085 0.283394 0.015325 -0.666179 0.902627 0.561936 -0.773181 -0.406728 -0.743028 0.376492 0.162129 0.894952 -0.151623 0.166385 0.154406 0.223273 -0.106825 -0.310666 0.435261 -0.001378 0.281406 -0.802621 -0.570406 0.437368 0.599459 -0.094085 0.019460 0.100885 0.327076 -0.059836 0.795443 0.056435 0.083683 -0.369473 -1.360155 0.088301 0.637444 -0.039024 0.383661 -0.657751 -0.369948 -0.207573 0.054994 0.711114 0.550171 0.390823 0.545918 -0.403337 -0.607028 -0.262501 -0.063582 -0.056751 -0.412196 0.307609 -0.416662 -0.118670 -0.172997 0.367273 0.006204 -0.262334 -0.654661 0.001198 0.297107 0.244803 -0.212993 0.558489 0.193794 -0.268446 -0.141531 0.101221 0.088090 0.511330 -0.204823 -0.342535 -0.357895 0.070928 -0.322657 0.443100 -0.014520 0.451034 0.119151 -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.499140 -0.901325 -0.193307 1.946283 0.972670 -0.440214 -0.054009 0.592130 0.551570 -1.715401 -1.188144 1.233654 0.014727 0.129032 0.699141 0.298753 0.802985 0.060009 -2.393145 0.589529 -0.667195 -0.201186 -1.112477 -0.635826 0.079751 -0.241266 0.772929 1.338134 -0.023086 0.618130 -1.015449 0.608276 0.715827 0.197939 1.216032 0.136931 0.582355 -0.667099 -1.261831 -0.807606 2.760096 0.532266 0.332079 1.532184 0.616600 1.537063 0.134200 2.547022 1.526060 -0.252150 1.276505 -1.083936 -0.828734 -0.140690 -2.545988 1.312617 0.846866 -0.443547 -1.225679 0.939690 0.041222 0.510183 0.758845 -0.574173 2.547820 0.425616 1.666969 0.981841 1.817916 -0.890414 -0.273141 0.641833 2.214054 0.952357 0.393150 -1.761317 -0.363710 -2.104574 0.600579 -1.284187 0.865084 -1.208937 1.500350 -1.143403 -0.108050 0.779715 -0.337072 1.316555 -1.466004 0.367651 -1.697122 0.179530 0.171889 1.875100 -0.175739 0.031055 0.438439 0.440259 -0.058533 1.193563 0.097986 -0.829368 -0.352041 -3.307817 -1.611859 0.255727 -0.084097 -0.969292 -1.256836 0.323974 0.051113 0.816425 -1.337881 -1.155073 0.493236 -0.212509 0.401641 0.073434 -0.066419 -0.938307 0.321081 1.335202 0.480269 -0.858456 0.793114 -1.167658 0.188329 0.573447 1.448772 0.236439 -0.680220 -0.418321 0.081164 0.844543 -0.124986 -0.533578 -0.093233 -1.136784 1.037862 -0.460786 1.195230 -1.759429 -0.835778 -1.544582 -0.358949 -0.045658 3.051220 0.424161 2.066155 1.561350 -0.424341 -0.219703 -1.873658 -3.014869 0.420707 0.343845 0.134784 0.051703 -0.090048 0.172903 -0.367441 -0.928023 1.206503 -1.683234 -1.597006 -0.890525 -0.332796 -0.055006 -0.637886 -1.482887 1.187553 1.582912 -0.481174 0.722844 -0.274440 -2.961097 -0.844574 -0.965003 0.868380 -0.327563 0.539592 0.183483 -0.227380 -1.469588 0.381792 -1.634644 0.502908 -0.224307 -1.762886 -1.545801 0.137460 -0.384278 0.740761 0.116240 -1.490331 1.110302 0.113755 1.880451 -0.387829 0.985227 0.368162 -2.235919 -2.116951 -0.881181 0.118610 2.370758 0.431029 0.476454 -0.411468 -0.596885 -1.094362 1.248987 -2.485434 0.315383 0.506698 -1.204445 0.428415 -1.488893 -0.625988 -1.202930 0.710812 0.182017 -1.951317 2.028151 1.596049 -1.996870 -1.130281 -2.008952 0.911099 0.180903 3.143401 -1.095723 -0.019253 0.374202 1.136573 -0.638727 -1.221451 0.877058 0.595874 -0.469766 -2.041684 -1.617660 0.630524 1.141733 0.058611 -0.062972 0.543067 0.750799 -0.485168 2.221325 0.228595 0.244269 -1.240512 -3.690992 0.365339 2.158940 -0.346650 1.022044 -1.953198 -0.912763 -0.390882 -0.304973 1.528300 0.864455 1.055583 1.323428 -1.302523 -1.248972 -0.728234 -0.079939 -0.285926 -0.714873 1.092547 -1.295824 -0.379276 -0.749530 0.339533 -1.138948 -0.125731 -1.510957 0.025618 0.543324 0.328062 -0.053226 1.635932 0.754998 -0.578506 -0.224748 -0.259332 -0.467028 0.861985 -1.314767 -0.700095 -0.679351 -0.171390 -0.747582 0.532018 0.338786 0.718451 0.130241 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = 4.092714 -6.260276 -5.438464 11.919720 -0.562159 3.556348 1.290045 -2.293883 -0.116814 -17.432321 -6.880163 10.138716 2.815901 3.600470 -1.144772 4.660614 2.259413 2.088049 -15.615284 -2.250165 3.077266 -1.355907 0.620754 0.739907 -0.354529 -4.428671 11.361304 2.471813 1.253875 9.020012 -1.456837 8.722933 8.689526 -0.369587 0.990036 4.922050 -4.034669 0.019562 -6.820065 -4.623021 11.904543 0.964640 1.999534 3.839532 -4.845401 9.415567 3.768719 12.133958 10.964081 -4.165027 8.005322 1.634408 -3.630093 -1.402250 -10.836069 0.399149 2.195747 2.200808 -0.977592 2.308247 -2.203325 2.558578 3.275914 0.829547 13.347608 3.660046 12.198650 8.830651 6.034322 -7.902341 2.863434 1.063682 -1.705429 0.160325 8.610354 -9.563044 -6.985253 0.201281 -1.687895 -9.675722 -1.244607 -0.753798 13.508381 -6.194381 -5.798888 -3.392596 3.006640 10.775934 -3.200190 4.324377 -11.221360 -0.186442 1.306889 10.102287 2.901516 1.813713 -3.357106 1.132284 -1.669081 1.029692 4.142405 -7.792202 2.190415 -12.424645 -5.137166 -6.564871 4.128410 5.483553 -10.530288 2.162749 -5.855160 4.352659 -14.411832 -2.132793 1.809212 4.326159 13.794651 3.375771 -3.823114 -1.031602 3.401458 3.993550 5.336243 -4.252699 4.487696 -4.853233 2.255566 0.456197 2.812025 2.695043 -12.277969 -5.044316 1.294097 0.874956 3.633969 5.700698 8.073687 0.798927 4.454230 -4.628947 6.566951 -11.101026 -3.697129 -3.246455 -8.001753 -5.747124 13.504047 8.248778 9.255325 -2.762337 -5.180138 -0.287346 -12.363574 -15.175557 -1.442227 1.068819 -1.255434 5.566273 -2.179299 5.212154 -8.640435 5.290417 7.065657 -2.951296 -5.594387 0.410965 -1.323550 2.158860 -2.854886 -2.542107 -1.513485 -3.363333 0.648158 12.719919 -0.061506 -19.899302 -15.853670 -4.104612 8.113125 -5.510109 -0.323622 -5.516172 -3.608280 -7.848936 -2.293737 -6.631474 -1.313067 2.702863 -7.999545 -11.269437 4.308767 -0.990120 -1.266806 4.281250 -8.610829 1.184045 6.278665 5.380389 2.532029 1.820876 -1.319865 -7.997455 -6.148176 3.160338 -7.694524 8.984864 3.743935 -1.505863 -6.302879 -5.371182 -7.492811 3.414917 -6.468733 6.246528 -0.181447 -3.701791 1.536904 -8.956299 3.991619 -3.889582 1.659208 1.296092 -20.278935 11.978495 6.386973 -4.441605 0.438917 -0.670084 4.420290 -1.126471 3.087059 -6.951398 -5.811676 0.683334 0.948920 0.573208 -0.864414 1.634579 -2.717741 -5.699859 -9.596460 -5.473731 7.817911 2.627745 -1.404201 -0.978823 6.017165 -4.104820 2.638941 9.131889 5.611701 -0.065765 -5.272670 -24.056414 2.730268 2.935485 -3.724099 1.500307 -7.591450 -1.758016 5.032784 -6.946275 7.281597 -2.391785 -4.573246 7.952076 -9.715244 -7.120290 -8.029204 -4.215569 1.632227 1.065462 0.748924 -3.607158 1.631894 -0.278122 0.499161 -4.415009 -6.270021 4.886322 5.314842 10.132713 -1.048884 2.920891 8.628628 3.475005 -1.095882 -3.035113 0.045463 -6.058616 3.772079 -13.463467 -0.584138 4.384008 4.052269 -6.260238 -0.611161 -1.954549 0.973503 0.352048 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 6.877774 -0.924500 -0.165823 6.462540 2.361102 -1.938819 -0.075258 4.564541 0.806317 -6.771358 -4.648438 4.754825 -0.514127 0.552225 3.425992 0.831928 2.832446 2.550607 -10.493934 1.987345 -1.995981 0.360919 -3.143325 -4.815312 1.269659 2.569951 2.516349 3.069912 1.458915 3.913958 -5.253029 1.592760 2.605149 1.496603 4.275477 -0.437970 1.629519 -2.309862 -4.340330 -6.280839 10.262972 2.164229 1.333124 7.596901 1.600026 4.675175 0.652739 6.954656 3.875573 -0.877076 3.383318 -5.604953 -2.938391 0.974755 -8.634185 4.358833 4.491567 0.972931 -3.745099 3.825106 1.966849 3.313078 3.300871 -4.522055 8.295611 2.624462 5.047632 4.503091 6.963060 -4.413969 1.690585 0.036163 7.648743 2.069923 0.327543 -7.342127 0.817596 -8.971818 1.587025 -8.533881 3.843405 -4.044149 7.466581 -4.774391 3.061198 3.201834 -1.086972 4.999347 -6.126793 1.850714 -5.327246 0.230804 -0.927525 6.582016 -1.263078 0.502427 1.816681 1.621374 -0.530946 3.514710 0.563072 -2.358558 0.779446 -11.394410 -4.944382 3.019405 -1.421638 -2.660278 -3.311400 1.810274 0.964316 3.077013 -6.087243 -5.783826 0.255763 -0.313643 -2.380081 0.625687 -1.017008 -2.959238 -1.843120 5.581093 0.981662 -5.466121 3.694375 -3.418555 -3.391273 3.145617 7.069182 2.950836 -2.478889 -2.952591 0.488656 1.803226 -2.083955 -0.400580 0.167540 -2.558831 3.786879 -2.788291 4.116759 -5.914076 -3.642995 -3.963094 -1.647338 -0.719673 9.343463 -0.321943 5.126666 6.341812 -0.957837 -0.971124 -5.270971 -8.548685 4.284105 2.596370 0.715677 1.636637 0.257531 0.780369 -3.082032 -5.202875 4.278715 -6.283626 -7.077226 -4.687251 1.972217 -1.007494 -2.393591 -5.806012 6.194484 6.863513 -2.034365 2.257598 -1.533098 -6.700522 -3.947617 -2.754712 4.786965 -1.576261 0.800298 1.522235 1.146593 -4.037070 0.893946 -6.462414 2.418140 0.052485 -6.132881 -6.452748 0.894186 -0.925527 2.100100 1.265196 -5.121882 4.580781 0.789640 7.702491 -3.663759 4.184066 3.886923 -8.407682 -9.462804 -3.559060 1.264994 6.299241 1.139231 1.705872 -3.974475 -2.640352 -1.557600 5.483353 -8.431993 2.734527 -0.502047 -1.522680 1.935397 -5.218863 -2.214329 -5.167867 2.544692 2.074565 -8.837216 6.875270 3.761505 -7.012914 -2.776524 -9.399485 5.279457 0.472947 11.489937 -4.481966 -1.368744 2.411912 3.238037 -1.892697 -6.808588 3.441051 2.397232 -2.596815 -6.427655 -5.319561 3.312012 2.912300 0.826549 1.553285 4.249887 2.565852 -1.719558 10.189029 1.256970 0.429379 -4.973496 -11.931788 0.940600 10.388922 1.588315 2.556014 -7.119116 -4.118028 -0.837535 0.158600 4.710850 4.739976 4.451754 4.829084 -5.162551 -4.577829 -2.290474 2.122191 0.535987 -3.227815 1.947573 -4.643757 -0.949383 -1.432988 2.282232 -2.820133 0.028650 -6.948381 -1.327946 3.619295 0.247436 -0.488156 6.908968 4.011328 -3.664027 1.227953 -1.942722 -1.356591 1.550655 -3.892009 -1.894015 -0.788559 0.074870 -5.247340 3.506526 1.762924 1.869683 -0.555217 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/z-algorithm-linear-time.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/z-algorithm-linear-time.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/z-algorithm-linear-time.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = 4.559178 -2.345645 -4.312801 12.166860 -0.476869 3.259673 1.845974 -2.057243 0.052261 -15.382563 -5.968287 7.397719 3.209757 4.181308 -1.476939 5.607020 2.127050 2.352948 -12.767376 -1.831564 3.797755 -0.475672 1.612955 0.181167 -0.379001 -4.971284 10.117592 2.484212 1.709358 10.073804 -1.620927 8.188613 9.280358 -0.807474 1.355173 6.614629 -1.706997 0.476722 -8.086293 -3.863433 10.159348 1.429745 1.867017 3.236788 -5.500008 10.633768 5.840958 9.282227 5.296646 -5.200069 5.620600 2.431946 -4.286322 -2.822938 -8.608449 0.468087 2.484118 4.300391 -1.719730 3.169881 -1.760548 2.505812 3.897019 2.429101 10.174085 2.936931 9.022855 8.928785 7.161567 -9.340380 2.505530 2.119722 -2.183808 0.221613 9.381152 -9.387514 -7.849662 2.352160 -1.636014 -8.989694 -1.993994 0.211156 12.779371 -7.207982 -4.457642 -2.201017 1.530924 10.481913 -3.426854 3.544469 -9.412754 -0.440688 -0.337411 10.321052 2.261511 1.216548 -1.988908 1.577528 -0.969157 1.618423 2.984624 -9.125476 1.955661 -8.998952 -4.651925 -7.556838 4.241955 6.374455 -10.107003 0.751009 -7.150982 5.707869 -15.021624 -1.125216 2.809913 5.707839 12.487263 1.449404 -1.661398 -0.110680 3.798140 3.938056 6.419416 -5.704388 4.603932 -1.338933 0.658735 1.038692 2.505056 2.391738 -11.501615 -5.459814 1.294053 -1.233642 3.768304 6.102207 7.803587 -0.804453 4.811973 -6.012562 7.926155 -11.018838 -3.759586 -2.714172 -8.568721 -6.391258 9.724888 6.229784 8.667942 -3.735703 -4.534458 0.186606 -11.657908 -13.085989 -1.523957 1.920714 -1.285680 7.194063 -2.462425 5.537287 -9.051158 5.140916 6.357943 -2.624722 -5.876927 1.472533 0.089646 2.420673 -3.101982 -2.790370 -0.843772 -5.097892 2.401446 13.815228 -0.725108 -17.576610 -16.247715 -4.929068 9.117928 -5.884461 -0.637262 -5.718748 -4.925354 -6.477997 -1.483286 -8.001788 -0.241867 2.721813 -5.939130 -11.948543 5.487936 -1.907524 -1.889910 5.345836 -8.487585 0.723152 6.481809 2.549509 2.274987 1.503281 -0.687616 -6.765384 -4.101007 3.793361 -7.398053 8.178098 3.468947 -1.066810 -5.658142 -5.645214 -6.342431 3.786829 -3.133668 6.361211 -0.145859 -0.422760 2.635198 -8.663349 5.287164 -4.909464 2.504664 2.588844 -17.711550 9.971601 7.809866 -4.680421 0.199428 0.874988 4.010620 -0.424596 3.061242 -6.821158 -7.677754 1.765884 0.931987 0.548561 -1.827965 0.885132 -3.358735 -5.544165 -7.556615 -3.079160 7.291980 3.141310 -1.685380 -1.491502 6.776668 -4.919250 2.391630 7.723389 6.121654 1.137149 -6.454592 -20.860805 4.061801 -0.327378 -2.781550 0.838485 -5.367565 -1.065231 6.566645 -5.732280 7.824461 -0.117181 -5.091701 9.076785 -10.815971 -8.475943 -8.602272 -4.430298 2.281933 1.157425 -0.641486 -4.355345 2.743310 -0.562396 0.145520 -4.767424 -5.564351 6.417810 5.664980 11.433824 -1.227825 2.906751 9.995287 3.028542 -0.366493 -3.025870 1.501736 -6.012827 1.560793 -11.927460 -1.191601 4.662282 5.174622 -6.545629 -0.353578 -3.038181 -0.060556 0.948096 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 1.810426 -0.540636 -0.543897 3.729988 0.130962 0.761499 1.001614 0.404490 0.269916 -5.683184 -2.532076 2.716297 0.625996 0.873308 -0.222640 1.223858 1.185523 1.566800 -5.735276 -0.500233 1.521720 0.403391 0.776611 -0.710587 0.068097 -1.519529 2.324556 1.395480 0.788987 3.818980 -1.015656 2.106792 3.293363 0.299705 0.811978 2.771364 -0.277586 -0.237268 -2.023987 -1.740962 4.270867 0.974259 0.215893 1.830743 -0.968110 4.055709 1.662725 2.369327 2.027012 -1.784216 1.292200 -0.263991 -1.960969 -1.087627 -3.281871 0.415091 1.431885 1.929820 -1.097310 1.718707 -0.224642 0.883574 1.346077 -0.303948 3.394043 1.199096 2.437506 3.025762 3.062846 -3.405709 0.645719 0.489198 0.084918 0.373070 2.332248 -2.947121 -2.072519 -1.559912 -0.515474 -4.651961 -0.700132 -0.287924 4.545654 -2.792720 -0.404824 0.282277 0.194055 3.462293 -1.143174 0.417283 -3.621923 -0.088798 0.172123 3.697384 0.718609 0.264505 -0.293727 0.758180 0.000136 1.011667 1.116748 -3.206747 -0.275194 -4.686797 -1.396973 -2.592365 1.063133 1.579889 -3.238227 0.113285 -0.824263 2.680816 -5.473031 -0.808300 1.216019 1.742719 1.807141 -0.451423 -0.774659 0.000609 0.529240 1.292945 1.942652 -2.734961 1.062196 -0.257240 -0.446496 0.354256 1.227862 0.801363 -3.611606 -2.213811 0.716505 -0.016006 0.802349 1.757719 2.026250 -0.288239 1.674160 -2.686505 3.128089 -3.617289 -0.702878 -0.934931 -2.240818 -2.241699 3.740194 1.927730 2.361140 -0.510407 -1.197918 -0.070421 -3.575940 -4.934710 0.659186 0.625238 0.531912 1.931675 -0.864835 1.444508 -3.090230 0.929435 1.450055 -1.269980 -1.840780 0.197200 0.577517 0.418140 -1.169716 -1.414765 0.359854 -0.021839 0.377571 3.683425 -1.115232 -4.586225 -4.953285 -2.154803 3.432945 -2.087794 -0.315517 -1.567898 -1.238427 -1.952991 -0.003163 -2.887967 0.342077 0.478026 -2.418230 -4.547667 1.800456 -0.997459 -0.409532 2.130615 -3.035761 0.494849 1.663746 1.242411 0.349068 0.510278 0.242333 -2.745289 -1.922149 0.470387 -2.110452 2.759086 1.447654 -0.009795 -2.778633 -1.812368 -2.002894 2.202747 -1.484208 2.266926 -0.380552 -0.774472 1.589195 -2.633404 1.315173 -2.167452 1.325294 1.347848 -6.113060 3.776112 2.744244 -2.181678 -0.421906 -0.767396 1.187922 0.428267 2.098663 -2.652363 -2.776138 1.081072 -0.277867 0.110911 -1.385670 0.705248 -0.599522 -0.940756 -3.255288 -1.366038 2.693924 1.426578 -0.529959 0.586579 2.691029 -0.610001 0.642125 3.484997 1.947243 0.472493 -2.625068 -6.936057 1.787408 1.581132 0.124062 0.536157 -2.198718 -0.992946 1.912487 -1.207586 2.951743 0.933700 -1.461607 3.390405 -3.494563 -3.162698 -2.626597 -1.192295 1.314137 -0.209508 0.323033 -1.390859 0.855514 -0.257974 0.329115 -0.788844 -1.850826 0.679639 1.844178 3.956256 0.288197 0.463809 3.855227 0.682017 -1.063000 -0.458799 -0.079005 -1.475879 0.493286 -3.574808 -0.496670 1.141499 1.801411 -2.498302 0.752350 -0.727446 0.119947 0.375819 -PE-benchmarks/n-queen-problem.cpp__main = 0.324256 -0.260800 0.039211 0.931203 0.120276 0.229472 0.271408 0.053569 0.034182 -1.473599 -0.659359 0.319781 0.081137 0.226408 0.091676 0.210045 0.370691 0.401894 -1.382220 -0.145828 0.406215 0.059638 0.288322 -0.083830 0.005279 -0.466173 0.417223 0.472304 0.195402 0.978518 -0.312822 0.516217 0.848704 0.146944 0.232229 0.743377 0.106319 -0.090305 -0.465652 -0.304189 1.183694 0.099290 0.019333 0.377470 -0.180638 1.066452 0.382401 0.582667 0.633899 -0.459471 0.445979 -0.429850 -0.387756 -0.255725 -0.921988 0.127595 0.409900 0.600652 -0.374812 0.461981 -0.176217 0.241554 0.303793 -0.203328 0.887112 0.269878 0.576248 0.731961 0.770052 -0.923394 0.079056 0.182603 0.052922 0.126151 0.352352 -0.644810 -0.313206 -1.000322 -0.129455 -1.083271 -0.197799 -0.059327 0.973235 -0.670984 -0.115343 0.293448 -0.144076 0.843415 -0.288252 0.131197 -1.037062 -0.013555 0.257226 0.728335 0.240968 -0.093903 0.016720 0.188050 0.020192 0.359385 0.282262 -0.793206 -0.352111 -1.395892 -0.516520 -0.607459 0.298529 0.276126 -0.856348 0.020921 0.138087 0.592849 -1.317567 -0.187722 0.327782 0.535074 0.127231 -0.244999 -0.242703 -0.093452 0.183853 0.381752 0.591564 -0.684828 0.309083 -0.305341 -0.016064 0.089329 0.367343 0.085192 -0.559012 -0.604264 0.173833 0.079576 0.131204 0.307101 0.438256 -0.017083 0.467047 -0.639834 0.865405 -0.872807 -0.037561 -0.307337 -0.470205 -0.532670 1.314381 0.509508 0.572623 0.041357 -0.516465 0.039154 -0.823272 -1.322129 0.153646 0.173500 0.274050 0.480439 -0.262436 0.408939 -0.669094 0.190786 0.243250 -0.367260 -0.468370 0.082714 -0.234547 0.090290 -0.317789 -0.522475 0.220750 0.247162 -0.096113 0.847245 -0.344203 -0.897247 -1.085306 -0.649048 0.859585 -0.534215 -0.031880 -0.314203 -0.257332 -0.631215 0.164065 -0.733615 0.008080 0.078954 -0.765391 -1.174406 0.445040 -0.323448 -0.083833 0.618882 -0.784174 0.151975 0.241850 0.341105 0.154474 0.136270 0.039441 -0.721298 -0.609261 -0.065037 -0.497867 0.693378 0.303552 0.022186 -0.700665 -0.525521 -0.429504 0.658551 -0.394454 0.519908 -0.045251 -0.358839 0.399370 -0.627612 0.236027 -0.500183 0.379768 0.445800 -1.526542 0.915171 0.747195 -0.612588 -0.222348 -0.350366 0.277969 0.151090 0.696362 -0.602837 -0.513698 0.292001 0.041476 0.025349 -0.413791 0.222243 -0.079512 -0.226685 -0.911104 -0.476046 0.635930 0.462871 -0.100210 0.189550 0.756082 0.134614 0.083381 0.960893 0.404857 0.095780 -0.558779 -1.691829 0.504430 0.766293 0.100874 0.312631 -0.702080 -0.219229 0.402743 -0.233693 0.786882 0.476217 -0.228515 0.931766 -0.705006 -0.791806 -0.627987 -0.308024 0.296575 -0.194520 0.201555 -0.398705 0.183958 -0.117614 0.057943 -0.135913 -0.355171 -0.092654 0.397682 0.906378 0.146360 0.156465 0.983141 0.150718 -0.399419 -0.120682 0.012213 -0.325405 0.257280 -0.749376 -0.193651 0.240974 0.429615 -0.599214 0.163896 -0.258977 -0.005804 0.126433 -PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = 3.115593 -2.509689 -6.125649 14.249657 -1.023349 3.718391 1.039472 -2.865371 -0.379102 -18.547468 -6.752859 9.338476 3.869985 4.827601 -1.110137 4.934097 2.304701 2.998755 -16.378792 -2.564132 4.777182 0.458455 0.892310 1.075948 -0.393610 -4.354399 11.398143 1.745779 1.929779 10.934802 -1.709367 11.045880 10.161503 -1.940229 0.930503 5.640692 -3.294778 0.572500 -8.396691 -3.860980 11.884980 0.178594 2.660598 5.041217 -6.031848 11.080433 4.336095 8.052628 5.607881 -5.655108 5.272631 7.460875 -2.559242 -3.302161 -9.673323 0.905377 4.124080 4.785834 -1.549670 2.524737 -0.125607 1.861559 4.363803 2.405496 12.464970 4.889350 11.126636 11.382281 7.728562 -8.432055 3.859207 0.023398 -3.599547 -0.648808 11.170869 -8.813520 -8.105895 2.509028 -3.834215 -11.968338 -1.701436 -0.592659 13.038830 -7.593979 -4.747866 -4.355139 3.472242 12.240501 -2.862428 4.194723 -10.636312 -1.696084 -1.203368 11.492136 2.520532 1.815694 -3.751024 2.495248 -2.095688 0.538225 3.436296 -9.985845 4.413470 -10.693272 -6.918066 -7.571019 4.291028 7.717101 -12.314083 1.714202 -9.905743 6.334788 -18.296866 -2.236036 0.904544 6.047768 13.730982 0.252528 -4.885324 -0.924576 3.844790 3.325886 5.106295 -4.623521 5.773815 -3.798320 -0.991061 0.882795 2.685840 3.436798 -12.596788 -6.458195 0.117339 -0.534692 4.065581 7.415621 9.989784 -0.005050 5.062901 -6.909721 8.041856 -12.071599 -5.721613 -2.834398 -9.274782 -7.050399 7.474873 6.262206 9.090233 -5.030232 -6.835258 0.235046 -14.216475 -14.671710 -1.189567 1.562184 -2.065248 8.793026 -3.344295 5.987725 -10.464595 6.001520 9.792770 -2.738776 -6.559084 0.481796 1.541055 2.769719 -2.650093 -2.534016 -1.701712 -6.147048 2.610352 15.618351 -0.271588 -16.014956 -20.296222 -3.706756 9.636417 -6.218040 -0.560040 -6.750203 -4.922286 -8.496763 -2.427155 -8.649206 -2.573902 2.063890 -6.291132 -12.919347 5.775696 -1.467938 -3.709834 5.054384 -10.197199 1.518782 8.073266 3.879825 2.729227 0.245012 -1.552541 -7.299211 -5.463914 4.896777 -8.765969 7.773203 4.220558 -1.211487 -6.986372 -6.085375 -7.217612 4.015760 -4.014090 7.634807 1.569882 -1.258444 1.878293 -10.726930 3.561488 -5.045745 1.532435 1.802393 -18.988687 12.683605 5.009397 -4.864604 1.412268 0.919880 5.804182 -1.702202 1.519319 -7.633318 -7.931238 1.672649 1.969466 0.878307 -3.930147 0.857712 -3.567244 -6.030723 -8.756664 -3.809992 9.362178 2.900197 -2.136843 -1.378145 7.105710 -8.066046 2.122412 8.812416 8.452997 1.317318 -5.002310 -19.189051 3.278146 -5.085665 -2.808435 -1.616404 -6.863123 -1.082573 7.032781 -6.080108 8.248900 -3.513707 -5.598612 9.424189 -13.438871 -8.813909 -9.154370 -4.600467 2.760798 2.140600 -0.862529 -4.610438 3.057630 0.631057 0.998920 -5.216784 -8.203588 7.297653 6.511483 11.450675 -3.327127 3.564082 10.515421 4.273781 -1.003972 -2.712095 1.100961 -7.342505 0.577086 -14.894363 -0.736852 5.716051 5.162307 -7.809020 -0.298753 -4.967616 0.465791 0.536842 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/shortest-common-supersequence.cpp__main = 1.186675 0.010761 -0.767432 3.531874 -0.412018 0.139459 0.925865 0.675386 -0.258883 -5.451183 -2.144986 1.202633 0.804559 0.571966 0.280871 0.747535 0.473334 1.719210 -6.190677 -0.277274 2.254608 1.027419 0.700681 -0.642454 0.160300 -0.979861 0.406118 0.665184 0.594717 3.765502 -1.034844 2.250414 3.109711 -0.085420 0.334238 2.228994 -0.388123 0.367945 -0.639328 -0.632561 3.764976 0.942623 -0.016549 1.230951 -1.040488 3.494430 0.233871 2.025655 -0.176741 -1.984625 1.193392 -0.344360 -1.084505 -0.387200 -2.232858 0.685012 2.655815 3.025558 -0.709810 1.684871 -0.875225 0.698552 1.392172 -0.394526 3.263193 2.377803 1.785442 3.039733 3.187676 -2.401638 1.202028 -0.572721 -0.866422 -1.292103 1.991427 -2.028042 -1.601224 -2.904550 -0.681196 -5.131185 -0.759963 0.235578 4.199017 -2.911148 0.405980 0.651674 1.378735 3.393557 -1.340736 0.579453 -3.057079 -0.285571 -0.667223 4.457416 0.529593 0.524145 -0.819690 1.133779 0.268626 0.386509 0.569105 -2.336032 -0.649701 -4.538624 -1.863750 -1.784556 0.683375 1.857403 -3.705130 -0.132091 0.142502 1.985499 -5.953701 -0.428063 0.678976 2.129604 1.337503 0.145316 -1.926342 0.139611 -0.167172 0.478680 1.448270 -2.387880 1.132295 -1.573357 -1.132464 0.559473 0.935843 0.508264 -3.542867 -1.543994 0.012916 -1.136648 0.636864 2.098653 2.084920 -0.213192 1.615651 -3.211375 2.635561 -3.441708 -0.695201 -0.603491 -3.119141 -1.736621 2.719906 1.748938 0.935890 -0.966231 -2.159470 -0.380968 -3.823622 -4.401331 0.500166 0.553971 1.126777 1.632718 -1.003527 0.723639 -2.904690 1.127476 1.650465 -1.113329 -1.365021 -0.028125 2.512764 0.329325 -1.088698 -1.583497 0.027100 0.201639 -0.188504 3.174085 -0.812501 -1.980694 -5.470309 -1.625480 3.182016 -1.426040 -0.159889 -2.087295 -0.445278 -2.585592 0.163215 -2.443304 -0.030687 0.500881 -1.654883 -4.142773 1.474696 -0.622973 -0.984969 1.368430 -2.652293 0.292219 2.146589 1.099709 0.483702 -0.049957 0.505539 -2.362571 -2.176488 0.558131 -1.939784 1.548770 1.513610 0.152514 -1.974621 -1.466240 -2.015528 2.130041 -0.691686 1.831816 -0.423437 -0.708921 1.833722 -2.542242 -0.012545 -2.486323 0.620819 0.730427 -3.986496 3.970339 1.123285 -1.674484 0.008347 -1.028181 1.589497 0.507778 1.664899 -2.170123 -2.307961 0.890417 -0.649496 0.111544 -1.550506 0.681376 -1.356966 -0.452940 -2.456608 -0.748160 2.768308 1.450841 -0.675898 1.033275 2.264537 -1.310411 0.919194 2.730885 2.193262 -0.427692 -1.733578 -4.857201 1.457782 -0.396740 0.424754 -1.246476 -1.956975 -0.936306 1.852728 0.294052 2.661259 2.024560 -1.222046 2.870385 -3.777656 -2.959105 -2.034304 -0.118287 1.172113 -0.622983 -0.769968 -1.163861 1.271424 0.927569 0.784818 0.385430 -2.850560 -0.516995 1.211292 3.414979 -0.690242 -0.178093 3.659793 0.873292 -0.920516 -0.232119 -0.180627 -0.984207 -0.237989 -2.259287 -0.217389 0.951919 1.569922 -2.506146 1.451713 -1.150924 -0.407022 1.077977 -PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = 0.568496 -0.554674 -0.283844 1.153060 0.189215 -0.270352 0.116153 0.069488 0.030852 -1.498312 -0.525847 0.133818 0.160412 -0.133164 0.274303 0.431532 0.413959 0.187029 -1.411178 0.329262 0.297046 -0.065601 -0.470680 -0.085239 -0.010376 -0.644158 0.429292 0.521541 0.040999 0.945348 -0.540481 0.462164 0.809761 -0.177275 0.734020 0.833900 0.188716 0.067483 -0.239333 0.303290 1.626451 0.400347 -0.191359 0.240702 0.375049 1.159685 0.210500 1.052783 0.013627 -0.456955 0.684947 0.091283 -0.217096 -0.168670 -1.233121 0.327903 1.114699 0.592827 -0.924831 0.568984 -0.468868 0.261649 0.445324 0.476039 1.399250 0.333235 0.864188 0.857127 1.194295 -0.652546 0.085410 0.254686 0.541469 -0.088053 0.764226 -0.589252 -0.657762 -1.221436 0.007560 -0.903254 0.096341 0.075020 0.936936 -0.882480 -0.019172 0.548591 0.121999 1.006567 -0.729711 -0.087309 -1.079522 -0.048716 -0.124928 1.662875 0.094691 0.180465 0.038409 0.683159 0.061198 0.520600 0.208171 -1.120234 -0.415270 -1.931170 -1.114930 -0.634668 0.061839 0.020059 -1.242086 -0.167076 0.502414 0.410326 -1.457109 0.218615 0.315582 0.369725 0.845405 -0.538616 -0.520143 0.033997 -0.146651 0.354882 0.471646 -0.371881 0.205907 -0.736502 0.473975 0.392396 0.426148 -0.000630 -0.790585 -0.058153 0.156489 0.008793 -0.213096 0.265426 0.332728 -0.840146 0.616899 -0.746972 0.991262 -1.359346 -0.086154 -0.760611 -0.861341 -0.291675 1.006527 0.407911 0.684111 -0.022611 -0.837411 0.065567 -1.469542 -1.970116 0.113698 0.036735 0.104782 0.218835 -0.264570 0.200758 -0.536968 0.008862 0.624246 -0.705249 -0.436290 -0.237008 0.492045 0.087308 -0.427045 -0.474821 0.007241 0.570319 0.260982 0.930942 -0.468582 -1.164534 -1.375172 -0.621435 0.854012 -0.396899 0.164369 -0.225716 -0.308263 -1.367588 0.495800 -0.900745 0.246311 -0.480258 -0.409617 -1.138977 0.214247 -0.310008 0.154968 0.061050 -0.961954 0.272470 0.124889 0.137724 0.154073 0.129811 0.201769 -1.183299 -1.043848 0.203755 -0.222769 1.172736 0.310809 0.041794 -0.107233 -0.392226 -0.854178 0.633155 -0.734258 0.373879 0.397431 -0.814763 0.743891 -0.715266 -0.396252 -0.706130 0.449312 0.186536 -0.427485 1.666752 0.990700 -0.938888 -0.221734 -0.326365 0.536398 0.200868 1.033816 -0.636538 -0.323034 0.287479 0.078357 -0.074676 -0.313965 0.469832 -0.236601 0.250075 -1.111675 -0.567933 0.702024 0.788957 -0.053703 0.142269 0.146350 -0.311266 -0.340228 1.209624 0.420694 0.379665 -0.747118 -1.643722 0.401244 -0.530705 -0.068762 0.062681 -0.529702 -0.392376 0.010604 0.231282 1.054336 0.818765 -0.239431 0.988727 -1.286315 -1.150912 -0.726600 -0.205838 0.101542 -0.488059 0.263679 -0.695935 0.151188 -0.274317 0.477209 -0.209445 -0.394569 -0.228816 0.249517 0.599802 0.113595 -0.417953 1.101208 0.190543 -0.414498 -0.261802 0.140831 -0.215701 0.588727 -0.584184 -0.521682 -0.261636 0.507236 -0.660950 0.499017 -0.314781 0.469673 0.382403 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 3.713433 -0.654615 -2.122763 5.731094 0.734332 -1.426239 0.992346 1.438937 0.477306 -7.693390 -3.865338 2.649195 1.053258 -1.241716 0.821467 1.904020 2.061227 2.373087 -8.726733 1.435364 1.937310 0.099845 -2.338761 -1.385660 -0.115647 -2.419003 0.700404 2.144036 0.380677 5.391114 -2.367614 2.768557 4.299823 -0.220109 3.372889 4.468325 -0.922867 -0.208802 -0.068011 -0.393987 7.788531 3.024549 -0.356591 2.171384 1.193419 6.070461 0.177269 4.935151 -0.522842 -2.185036 2.557578 0.447382 -1.999587 -0.269158 -5.927643 1.523085 4.920242 2.218916 -3.661258 3.109864 -1.853951 1.527457 2.634340 0.627308 6.853980 2.607067 3.067968 4.737985 6.378246 -3.187636 1.385597 0.206410 2.298537 -0.875247 3.433874 -2.758220 -3.337325 -3.780086 -0.238105 -7.010953 0.825466 -0.177872 7.202058 -4.928873 0.713681 1.779697 2.054991 5.603207 -3.583624 -0.794584 -5.374345 -0.142839 -1.965000 8.072140 0.584172 1.806622 -0.762943 2.668596 -0.355903 1.667667 -0.297705 -5.563385 -1.771718 -10.253602 -4.347357 -3.441394 -0.166484 0.557920 -6.209331 -0.638856 1.274964 3.924320 -8.527654 -0.089379 1.267083 1.018251 1.832833 -0.667260 -3.239191 0.157627 -1.273772 1.897752 1.810940 -2.461171 0.603525 -3.175859 -0.049104 1.476116 2.149117 0.785427 -5.261855 -0.566990 1.152052 -0.819290 -0.390711 2.457612 2.087849 -3.144861 2.695450 -4.428297 4.724794 -6.576661 -0.999936 -3.508835 -4.983839 -2.147313 3.978201 3.172095 3.372886 -0.184135 -1.945860 -0.181602 -7.646612 -9.209416 1.366852 -0.700472 1.053493 0.637085 -1.047986 0.378101 -3.774472 0.323317 3.121647 -3.552099 -2.507081 -1.353459 5.934286 0.418432 -2.196830 -2.298428 -0.440039 2.334002 0.865162 4.303385 -2.548607 -5.179632 -7.534917 -2.885860 4.909923 -2.334518 0.497807 -2.109000 -1.013964 -4.934607 1.087220 -4.419444 0.873381 -1.792280 -1.205532 -6.315959 1.095372 -1.236697 -0.147733 0.554956 -4.796480 1.798602 3.690784 1.671069 -0.035334 1.054314 0.915448 -4.889323 -4.221707 1.159032 -1.352723 5.073461 3.798120 0.398659 -2.126294 -1.898622 -4.540225 3.714317 -3.451974 2.758763 1.153785 -3.282796 3.938387 -4.191736 -1.700116 -3.770183 2.136724 0.365789 -5.542917 7.176827 4.127544 -4.866434 -0.529335 -2.953028 3.040855 0.926772 5.062149 -3.427793 -2.373357 1.689403 -0.674410 -0.427066 -2.151159 1.896004 -1.320939 1.149869 -5.475452 -1.846587 4.796429 3.290915 -0.666389 1.013901 0.974407 -1.449825 0.994310 5.825211 2.698998 0.978271 -4.665907 -9.544357 1.834901 -1.526660 0.390644 -0.284917 -1.877087 -2.276741 0.410183 -0.285757 5.367716 3.004863 -1.727666 4.968573 -6.429772 -5.882778 -3.868186 0.059236 1.518843 -2.113790 0.988895 -3.166293 0.938348 -0.934183 2.919508 -0.199919 -3.599954 -1.833967 2.219025 4.417708 0.340202 -2.265915 5.917742 1.066835 -1.863323 -0.943630 -0.326657 -1.243016 1.491293 -4.388242 -2.033327 -0.553393 2.734602 -4.093367 3.404242 -0.914274 2.481368 2.055837 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 4.940202 0.562869 -3.235549 7.658396 1.059038 -0.315265 1.034218 1.899581 0.208444 -8.534048 -3.648279 7.870747 0.834707 -0.368957 0.713862 2.834892 2.920932 3.425173 -10.094426 0.430044 0.318676 -0.270727 -1.904639 -3.254566 0.245597 -0.500385 3.814497 3.075988 1.170861 6.222756 -2.710603 3.690466 4.680932 1.310764 3.866540 2.599876 -0.127659 -0.574923 -4.022784 -3.428589 8.928167 2.714296 0.321156 4.917929 0.408917 7.378591 1.921607 5.244538 3.150341 -0.925705 2.459614 1.058604 -3.065205 -0.747590 -7.589026 1.131903 2.542938 1.113647 -2.982365 3.796317 0.084956 2.300923 2.832542 -1.193310 8.219011 2.410454 4.889675 5.970566 6.623118 -4.498005 1.543055 -1.175691 3.791629 0.419576 3.776410 -5.189931 -3.876874 -3.823357 -0.701912 -9.136504 1.087958 -1.819130 9.257579 -5.787506 0.294571 0.902843 1.376635 6.312467 -4.237239 -0.013817 -6.632876 -0.856415 -0.949445 8.779409 1.619604 1.980318 -0.874098 1.706208 -0.269789 1.499226 1.551734 -6.125115 0.772492 -9.705397 -4.305392 -2.338626 -0.164128 0.213652 -4.853832 0.372010 -0.319447 5.691099 -10.111719 -3.098378 1.453292 0.136122 3.214510 -0.342904 -1.955974 0.951825 -0.323519 3.500176 2.220020 -4.913740 1.098344 -0.836337 -2.454380 0.823315 3.961819 2.394822 -6.779059 -2.195657 1.965131 0.120720 0.748627 1.675064 1.233377 -2.588904 3.039701 -4.487385 5.557733 -6.547264 -3.175046 -2.255205 -4.000421 -3.329907 6.339376 2.939990 6.035771 1.378426 -0.641002 -0.254478 -7.635047 -10.895892 3.384051 0.093292 -0.290321 2.038944 -0.955740 1.115267 -5.740783 -0.261995 5.479448 -4.337144 -5.146193 -1.740973 3.596336 0.367297 -2.609056 -3.176821 0.706195 2.246368 2.560367 5.344950 -2.554319 -10.651299 -7.618011 -2.816571 6.041559 -3.602573 0.206392 -1.614001 -1.093682 -4.297320 -0.703409 -6.176615 2.239440 0.035262 -3.089338 -7.620864 2.921450 -1.439594 0.921130 2.021709 -5.500622 2.856415 2.827194 3.109180 -1.793630 2.132950 1.401685 -5.427807 -5.075831 0.635102 -2.207395 5.563807 2.381696 1.570435 -5.363128 -2.012336 -4.928853 4.569061 -5.728457 4.156296 0.288050 -2.267345 3.109571 -4.968008 -0.989302 -3.636063 2.963676 0.945487 -9.564376 6.665699 5.181870 -5.814154 -1.029846 -3.536601 3.671712 0.561040 6.806148 -5.493586 -4.514695 1.928592 1.062799 -0.462311 -3.005398 2.038472 -0.098441 -1.105643 -7.064403 -2.577588 5.679593 3.352532 -0.560445 1.088080 2.973964 -1.638851 -0.160763 7.365264 2.985786 1.908698 -4.731629 -12.337923 0.823238 2.602362 0.626668 1.462491 -4.029094 -2.099371 1.055456 -3.103808 5.689046 -0.267984 -2.666472 5.733033 -6.917969 -5.993230 -4.888398 -0.525530 2.130367 -1.974145 2.495847 -2.919860 0.325212 -0.899383 2.482099 -1.565889 -2.911035 0.479763 2.432094 5.581947 0.055457 -1.034470 7.134941 1.707957 -2.483432 -0.336688 -1.566931 -2.640149 2.280335 -8.805288 -1.240053 0.526074 2.822128 -5.134502 2.276079 -0.267622 2.053595 0.716445 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.252458 -0.110099 -0.027042 0.360881 0.104063 -0.305994 0.113129 0.183265 -0.070670 -0.607014 -0.247345 -0.122373 0.015889 -0.258804 0.178084 0.128064 0.174292 0.277390 -0.652041 0.265787 0.188751 0.053848 -0.227689 -0.150902 -0.010502 -0.232693 -0.262723 0.263918 -0.015846 0.438184 -0.311030 0.108765 0.349656 0.022209 0.354786 0.448564 0.153046 -0.069452 0.225171 0.213118 0.759192 0.174772 -0.080193 0.043303 0.299565 0.520274 -0.038746 0.336692 -0.185719 -0.169707 0.245424 -0.338719 -0.116410 0.029380 -0.546695 0.166983 0.461071 0.374541 -0.453619 0.347233 -0.300633 0.121429 0.227430 -0.010316 0.641883 0.205931 0.141424 0.341687 0.653537 -0.201501 0.059470 0.040877 0.321364 -0.151815 0.116816 -0.079541 -0.045601 -1.047367 0.007453 -0.619599 0.098374 0.081958 0.540427 -0.435407 0.203757 0.478944 0.100239 0.436345 -0.367393 -0.163999 -0.518658 0.008325 -0.027371 0.622342 0.025747 0.054818 -0.023187 0.301497 0.038667 0.220527 -0.083431 -0.446629 -0.504995 -1.065269 -0.517784 -0.206707 -0.188257 -0.167787 -0.617445 -0.160642 0.633278 0.373409 -0.717838 0.078850 0.158935 0.078926 -0.134463 -0.175066 -0.366822 0.022317 -0.230327 0.191485 0.141491 -0.187891 -0.016048 -0.465846 0.115791 0.161408 0.214117 -0.069620 -0.295998 0.011281 0.128015 -0.089549 -0.174406 0.076252 0.007922 -0.349165 0.230261 -0.427161 0.439426 -0.537763 0.078644 -0.362641 -0.425496 -0.073527 0.626594 0.278414 0.127472 0.131777 -0.343333 0.018956 -0.601848 -0.859749 0.182593 -0.159613 0.238076 -0.069665 -0.092702 -0.106537 -0.118230 -0.119555 0.148084 -0.398114 -0.152889 -0.179459 0.376253 -0.000646 -0.213857 -0.354794 0.032817 0.595068 0.024457 0.136386 -0.355217 -0.105454 -0.463333 -0.341884 0.382365 -0.117502 0.095322 -0.102358 -0.010206 -0.555877 0.334394 -0.348938 0.117512 -0.284895 -0.127215 -0.522516 0.026126 -0.159175 -0.039623 -0.060350 -0.340357 0.186224 0.049112 0.023119 -0.015585 0.029621 0.106052 -0.472086 -0.527477 -0.038074 0.067077 0.407106 0.304101 0.169359 -0.206944 -0.119308 -0.364530 0.448390 -0.374653 0.129567 0.195834 -0.462329 0.497093 -0.288716 -0.276614 -0.290855 0.277026 0.034064 -0.349729 0.677539 0.434968 -0.527975 -0.150667 -0.420693 0.246370 0.223820 0.642725 -0.186755 0.020202 0.204413 -0.007828 -0.081647 -0.237543 0.238056 -0.103942 0.334653 -0.524625 -0.254560 0.331390 0.437303 -0.035329 0.138763 -0.040453 0.088352 -0.131858 0.563029 0.102089 0.098936 -0.325307 -0.622597 0.174202 0.067519 0.178488 0.113570 -0.210249 -0.170163 -0.101617 0.092317 0.524912 0.516857 -0.069935 0.420550 -0.484121 -0.550526 -0.220606 0.129756 0.089435 -0.362880 0.252325 -0.308292 0.013607 -0.101980 0.336455 0.110826 -0.206475 -0.503131 0.078426 0.244115 0.186503 -0.370592 0.516822 -0.007857 -0.234371 -0.057759 -0.013386 0.101321 0.235526 -0.102461 -0.278649 -0.217772 0.239606 -0.321129 0.479136 -0.135354 0.224357 0.278099 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.472752 -0.059320 -0.031803 0.674973 0.125562 -0.465495 0.223324 0.380665 -0.227106 -0.900640 -0.303712 0.085624 0.018059 -0.326756 0.140590 0.121877 0.224943 0.301882 -1.314896 0.320166 0.186940 0.001607 -0.434928 -0.426952 -0.036515 -0.262919 -0.041793 0.645231 -0.061864 0.697880 -0.437538 0.101918 0.467199 0.161934 0.656987 0.619155 0.204131 -0.066234 0.051308 0.134980 1.134192 0.508530 -0.387759 0.098598 0.451412 0.846773 0.218731 0.140854 -0.580336 -0.172419 0.024862 -0.089399 -0.304335 -0.158082 -0.834206 0.087838 0.780914 0.619883 -0.610977 0.593696 -0.513079 0.157513 0.382996 0.226988 1.031541 0.137566 0.418921 0.545518 0.944547 -0.498262 0.072535 0.048515 0.558006 -0.261204 0.114354 -0.053358 -0.371964 -1.533345 0.115766 -1.329022 -0.030125 0.213083 0.723173 -0.566309 0.278499 0.544344 0.171984 0.595135 -0.789202 -0.255561 -0.787455 -0.073150 -0.224294 1.365864 0.092050 0.146761 0.175447 0.582125 0.271439 0.433402 -0.074285 -0.744644 -0.321874 -1.627022 -0.531144 -0.293139 -0.338513 -0.249435 -0.634930 -0.301990 0.967682 0.749640 -1.016622 -0.008548 0.238579 0.074151 -0.036994 -0.605152 -0.395818 0.295169 -0.455609 0.203476 0.456328 -0.420626 0.061966 -0.190499 0.189473 0.256019 0.383842 0.197791 -0.834488 0.029121 0.409618 -0.305163 -0.237847 0.097903 -0.123356 -0.456457 0.305430 -0.826511 0.821401 -0.819691 0.334083 -0.433018 -0.633981 -0.064146 0.365480 0.510638 -0.027241 0.158058 -0.267402 0.209309 -0.854527 -1.571399 0.450784 0.158858 0.171892 -0.270332 -0.168458 -0.090918 -0.404429 -0.222513 0.539151 -0.583360 -0.352648 -0.278775 0.863184 0.179759 -0.382384 -0.243392 0.180503 0.747270 0.332351 0.421358 -0.620295 -0.517928 -0.825782 -0.472300 0.634015 -0.192761 -0.189557 -0.084228 -0.179446 -0.849793 0.563846 -0.552628 0.484019 -0.398331 -0.147292 -0.831475 0.083117 -0.225652 -0.021071 -0.046326 -0.508624 0.193974 0.085615 -0.207067 -0.139615 0.067671 0.427024 -0.526148 -0.703377 0.127136 0.180068 0.707669 0.382860 0.257251 -0.348548 -0.116466 -0.563124 0.754675 -0.287097 0.303061 0.123632 -0.704257 0.779406 -0.406077 -0.436658 -0.297872 0.487763 0.160518 -0.140666 1.287844 0.874017 -0.789622 -0.306554 -0.465158 0.300234 0.316028 1.012775 -0.592152 -0.256957 0.307012 -0.003945 -0.138852 -0.184262 0.321720 -0.034113 0.319330 -0.833768 -0.430678 0.482619 0.566684 0.025472 0.301312 -0.088080 -0.113304 -0.367551 0.988091 0.167628 0.274317 -0.586945 -0.852801 0.321007 -0.381973 0.196520 -0.026016 -0.187171 -0.459811 -0.152215 0.132362 0.767600 0.803430 -0.659702 0.668300 -0.836744 -0.814914 -0.607835 0.130332 0.137325 -0.562935 0.399455 -0.452907 0.110791 -0.165112 0.425943 0.081153 -0.239926 -0.486605 0.058055 0.302372 0.234268 -0.682380 0.857740 -0.033572 -0.340173 -0.187474 0.000486 -0.032470 0.477834 -0.316693 -0.428191 -0.352060 0.516260 -0.466197 0.590253 0.052228 0.355274 0.478529 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/topological-sorting.cpp__main = 2.207397 -0.241316 -0.012133 2.950860 1.074534 -0.547467 0.904683 1.546145 -0.230166 -4.765945 -2.687841 0.896994 0.096529 -0.534913 1.016434 0.493275 1.684036 1.452090 -5.393312 0.425294 1.008863 0.134222 -0.718479 -1.030781 0.042495 -1.120245 -0.447994 2.105656 0.458220 3.222184 -1.524716 0.947689 2.562311 0.463619 1.944945 2.636236 0.576007 -0.280582 -0.070688 -0.601792 5.235932 1.143218 -0.187202 1.827079 1.220145 3.816851 -0.208418 3.190203 0.125455 -1.122386 2.241667 -2.086805 -1.380837 -0.302625 -3.766339 1.013740 3.364855 2.027913 -2.489802 2.323304 -0.821882 0.861832 1.245141 -0.884122 3.655607 1.909462 1.534730 2.444535 3.839332 -2.524073 -0.047186 0.533502 1.692850 0.151790 0.031455 -2.464144 -0.548271 -4.797740 0.219195 -4.768090 0.120992 -0.710043 4.653085 -2.706023 0.665888 2.159899 -0.053242 2.637304 -1.975344 -0.514012 -3.538248 -0.186864 -0.196893 4.152521 0.205168 0.353030 0.500620 1.152212 0.336280 1.916730 -0.074162 -2.757244 -2.603601 -6.395228 -2.761858 -1.240606 0.101930 -0.222350 -2.954176 -0.744251 2.031712 1.437771 -4.612369 -0.819531 1.263204 1.157328 -0.466187 0.399202 -2.488139 -0.412028 -0.512451 1.162081 1.498984 -1.870701 0.345510 -2.222541 -0.409548 0.564492 1.578568 0.137540 -2.790004 -1.009920 0.553347 -0.482463 -0.433292 0.108932 0.227573 -1.415497 1.783518 -2.390288 3.063741 -3.977975 -0.421219 -1.910619 -2.508811 -1.170842 3.957404 1.755553 1.993040 1.185356 -1.454528 -0.190140 -3.448692 -5.042896 1.227998 -0.002717 1.689797 0.225483 -0.725398 0.433746 -1.898068 -0.699209 0.989181 -1.991468 -1.631105 -1.056028 2.745844 -0.145716 -1.297930 -2.236721 0.969691 2.576861 -0.398995 1.813711 -1.978093 -2.408602 -3.276696 -2.259157 2.922238 -1.395402 0.227389 -0.426779 -0.103871 -3.107257 0.907854 -2.871157 0.733872 -0.918839 -2.136601 -3.874753 1.317533 -1.082323 0.123819 1.172958 -2.634055 1.003997 1.329470 2.059561 -0.085370 0.702494 0.569450 -3.451599 -3.382316 -0.657179 -0.408628 2.944976 1.865363 0.645123 -1.680831 -1.198681 -2.257382 2.734994 -1.922254 1.305726 0.248725 -1.866612 2.427150 -2.115278 -0.662534 -2.655502 1.509724 1.222389 -4.340264 3.940419 2.400670 -2.997705 -1.326463 -2.697457 1.138503 0.923263 3.852976 -1.825351 -1.400829 1.413563 -0.072368 -0.308618 -1.931047 1.370534 0.078058 0.852558 -3.911652 -1.976149 2.534955 2.428874 -0.255742 1.438650 1.446977 0.861361 0.066928 4.333347 1.039710 0.149144 -2.014057 -6.025161 1.395730 2.168635 0.636208 0.469274 -1.974604 -1.725535 0.052424 0.320718 3.185449 2.744689 -0.250590 3.226103 -2.650380 -3.286268 -1.884616 0.361562 1.220786 -1.944999 0.565869 -1.825806 0.475253 -0.487113 1.058281 0.687854 -1.637298 -2.723051 0.493732 2.651232 0.491303 -0.823258 3.723979 0.355904 -1.712689 -0.086785 -0.237747 0.174477 1.661677 -2.207609 -1.226530 -0.675742 1.258911 -2.122691 1.794685 -0.164409 0.840071 1.428990 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.192261 -0.248260 -0.600534 2.983574 -0.265023 -2.115627 1.306390 2.224639 -0.647352 -4.487515 -1.473203 0.043091 0.585547 -1.310341 0.235100 0.924708 0.421049 1.464781 -7.196542 1.356452 1.838572 0.527329 -1.460689 -1.892098 -0.154268 -1.445114 -1.093573 2.496295 -0.316137 3.627823 -1.615728 0.546471 2.646078 0.090272 2.223376 3.344426 0.401448 0.074097 0.982879 1.123919 4.553382 3.009489 -2.585699 -0.247777 1.319633 4.166124 0.747073 0.997120 -4.029345 -1.356990 -0.008564 -0.510663 -1.888358 -0.832295 -2.819421 0.317587 4.518225 4.026335 -2.402970 2.871454 -2.747995 0.491913 1.924431 1.424823 4.429677 1.418733 1.882862 2.717941 4.516775 -2.279938 0.780909 -0.224189 1.334885 -2.048598 1.126329 -0.732540 -2.128536 -7.110286 0.855579 -7.040090 -0.832706 1.430004 3.654320 -3.271918 1.606081 2.456208 1.690238 3.240776 -3.633699 -1.017201 -3.370217 -0.464727 -1.257535 7.579507 0.137101 0.769466 0.447139 3.195255 1.481833 1.439634 -0.040386 -3.391007 -2.226680 -6.866419 -2.034954 -1.964491 -1.469206 0.037588 -3.619538 -1.718444 4.649806 2.698108 -5.639775 0.695391 1.460180 1.044514 1.040673 -1.894018 -2.132683 1.890856 -2.390601 0.213025 2.145667 -2.308111 0.192775 -0.681295 0.907651 1.449928 0.921835 0.854429 -5.369892 0.497644 1.882650 -2.263962 -0.563670 1.424347 0.072260 -2.162657 1.455776 -4.705261 3.860304 -4.470420 1.569353 -1.388049 -3.477679 -0.598979 0.902134 2.751787 -1.160317 -0.304381 -1.553115 0.750476 -4.403793 -6.920328 1.521506 0.885383 1.188525 -1.277995 -1.040423 -0.640813 -2.008467 -0.109909 1.773561 -2.288658 -1.107477 -0.821583 5.810663 1.084941 -1.668071 -0.650377 0.081458 2.886683 1.444260 2.337299 -2.654897 -1.800425 -4.833819 -2.119422 3.257622 -0.746576 -0.914326 -1.340916 -0.915724 -4.219053 2.563947 -2.358739 2.233456 -1.466346 -0.281674 -4.166759 0.845073 -0.841579 -0.435067 -0.093485 -2.392564 0.386185 0.739847 -0.951665 -0.331541 -0.280254 1.996592 -2.658798 -2.838171 1.036812 0.127238 3.551266 1.871647 0.855806 -1.010717 -0.341487 -2.889414 3.577694 -0.501012 1.577399 -0.080904 -2.795046 4.025006 -1.942642 -1.824441 -2.326441 2.112592 0.520842 0.402189 6.672973 3.754302 -3.045284 -0.771191 -1.456424 1.273378 1.637235 3.627981 -2.805252 -2.182864 1.335067 -0.929709 -0.520667 -0.560851 1.301467 -1.077576 1.750976 -3.311242 -0.999008 2.410855 2.514167 -0.204395 1.959945 -0.319981 -1.397656 -1.499630 3.817282 1.150942 0.559511 -2.711418 -3.894921 1.871166 -2.935790 0.766890 -1.366269 -0.690928 -1.923575 -0.051694 1.641305 3.503826 4.803104 -3.531890 3.029165 -4.684816 -4.041295 -2.966459 0.825344 0.815009 -2.034845 0.849700 -1.650211 1.110989 0.055065 1.924089 0.935698 -2.246885 -2.134097 0.683256 2.149555 0.567088 -3.698419 4.204538 -0.477727 -1.118822 -1.093288 -0.091535 -0.285121 1.589865 -0.374297 -1.432926 -1.169417 2.788623 -2.455060 2.932927 0.231864 1.006446 2.480527 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.661535 0.283992 -2.603703 4.656549 -1.181559 -0.994984 0.810162 -0.292037 -0.425370 -5.182554 -0.240945 2.087462 0.763634 0.684797 -1.333460 2.875836 -0.178744 1.002555 -3.335221 0.570629 2.308664 0.750912 -0.517791 -0.006214 0.623693 -1.118772 1.231144 0.811254 0.150936 3.536348 -0.964605 2.796224 3.599438 -0.831181 -0.177120 2.532014 0.129468 1.752325 -0.046384 0.101629 2.101820 0.618885 -1.305967 -0.112913 -1.470518 4.039171 1.372249 2.325467 -3.340281 -2.337615 -0.200360 1.824710 -1.221100 -1.149634 -1.703612 1.017287 1.382475 3.783913 -1.248525 1.423450 -1.516822 0.810730 2.304124 1.920609 4.199787 2.956180 2.487156 4.256603 4.330393 -2.063779 1.758539 0.000709 -0.384371 -1.581701 2.955671 -1.016363 -2.528483 0.121778 -0.838508 -3.974927 -1.199970 1.486988 4.745731 -3.604350 -0.716074 -1.259125 2.029303 4.808219 -2.890204 1.500307 -3.436158 -0.386328 -0.629128 6.132941 0.720239 0.884656 -1.750490 2.702765 0.067626 -0.020299 -0.355320 -2.494729 -0.328191 -2.127098 -1.860572 -2.493961 -0.034857 2.538421 -6.093244 -0.907995 -0.206349 3.201185 -7.456510 0.223378 0.840097 1.492022 5.262740 1.789605 -1.322640 1.910619 -0.596582 -0.696093 0.589065 -1.018114 1.425454 -0.687797 -0.626613 0.531829 0.350725 1.972618 -7.902939 0.215612 0.701062 -2.968310 1.531801 4.034199 2.527119 -0.942590 1.485786 -3.923980 2.659263 -5.185096 -1.745188 0.296631 -5.162542 -1.810294 0.834767 3.347003 1.172333 -3.068101 -1.899518 -1.517058 -6.230602 -5.394995 -0.114659 0.439130 -0.200666 2.165466 -1.301655 0.345676 -3.241055 1.642481 3.631020 -1.681006 -1.709558 -0.820978 4.772699 1.445101 -0.224036 -0.986249 -2.044811 -0.611389 0.825463 3.934331 -0.777528 -3.646634 -7.700758 -1.105500 2.769625 -1.179687 -0.316680 -2.973178 -1.631709 -4.187475 0.763206 -2.385945 0.260560 0.154675 0.291313 -4.424519 2.698476 -0.400464 -2.032579 0.121684 -2.396695 0.301750 1.633872 -1.788314 0.848177 -0.314312 0.149298 -1.207510 -1.514778 3.370916 -1.645669 1.799082 2.172926 -0.048866 -1.106748 -1.835236 -3.477952 3.241850 -0.864175 2.514491 1.408487 0.968899 3.110292 -3.256743 0.240483 -2.135455 1.541880 0.013265 -3.290865 3.713845 2.506369 -2.227984 0.712917 0.503785 2.271240 1.185974 0.785374 -2.873897 -3.115995 1.209693 0.006507 -0.173835 0.100492 0.142841 -2.233122 0.785734 -2.118769 0.500177 2.602187 1.204068 -1.220740 0.219085 0.061731 -4.371501 0.375877 1.930549 2.825742 0.409694 -2.426977 -4.312634 0.454051 -5.480428 -0.306620 -1.368491 -1.433882 0.215332 2.485938 -1.787789 3.375908 -0.884910 -4.072588 2.928477 -6.652087 -3.726485 -1.649748 -0.183397 0.424796 0.281427 0.866135 -0.731294 0.957694 1.480606 1.690266 -1.430852 -3.971192 1.567718 1.744903 4.394273 -2.306218 -1.749254 3.797973 -0.453262 0.411208 -1.559815 0.996212 -1.324077 -0.706740 -4.441017 -0.719945 0.900335 2.820861 -3.721663 2.845433 -0.910135 -0.167295 1.522489 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.699761 0.467478 -6.639185 13.887427 -2.592305 -6.951176 4.632414 6.670202 -0.521474 -16.836664 -4.380818 8.277856 3.902127 -3.239907 -1.451038 5.120006 0.045507 6.688737 -22.905674 4.453854 5.973764 2.329580 -7.126694 -6.921552 -0.573468 -4.597752 1.492671 7.159370 -0.196424 13.820722 -4.867914 3.669638 11.197174 -1.020712 6.767378 11.925433 1.678686 1.615981 -0.953229 0.955768 15.018259 12.632802 -7.885967 1.627688 0.914161 15.676742 5.351470 4.678699 -14.447526 -6.388885 -2.915485 3.560267 -7.598128 -4.504110 -9.627681 1.834745 12.166231 12.151120 -7.412870 9.994512 -7.928678 1.636576 8.241505 6.861523 15.775547 5.394805 8.206259 12.239670 17.061965 -8.977684 4.561983 -0.654435 3.500433 -7.178127 11.253595 -1.998914 -12.668412 -13.417842 2.238984 -22.834070 -4.126402 5.414064 15.873360 -14.020645 4.667553 5.269252 8.919223 13.913187 -13.376705 -2.392411 -12.123234 -2.519384 -6.203250 28.903900 2.512225 4.646228 -1.127153 11.641147 4.234799 3.219031 0.885680 -13.824769 -1.628545 -20.862506 -5.731393 -8.754028 -5.390331 3.413328 -13.628427 -6.156013 9.537929 15.527886 -23.494550 2.441064 5.097066 2.394316 11.974658 -6.047863 -4.342915 9.139070 -6.127818 -1.207679 7.081101 -9.786335 1.727477 3.127259 2.130895 4.643003 2.464098 5.829342 -23.501851 0.764969 7.056154 -7.375870 0.172046 8.527769 2.834313 -9.792044 5.634459 -17.365040 13.383594 -16.144506 2.129836 -2.194312 -15.794718 -4.488707 2.361873 8.808679 0.575484 -5.466830 -4.411186 0.979466 -18.230938 -27.634033 6.109954 3.641186 1.099424 -1.258588 -3.627767 -1.714891 -10.996643 2.547139 10.258888 -7.746238 -5.044192 -0.143305 21.996360 3.933133 -5.518223 -1.734610 -1.962114 4.499208 9.797547 12.138306 -7.665641 -14.154774 -20.982814 -5.810303 12.866625 -3.082413 -3.568344 -6.744868 -6.351807 -13.480543 5.465805 -9.673400 8.913767 -3.654704 0.868604 -16.316723 3.971647 -2.380677 -2.588996 -0.215024 -9.561433 1.605837 4.860454 -6.043420 -2.055718 -0.755210 7.570027 -8.032554 -7.734063 7.915326 -2.386788 13.367419 7.540394 3.148345 -4.595437 -1.523339 -12.104868 11.812284 -4.970490 7.508647 -0.327462 -7.272391 14.336252 -9.321697 -6.245554 -9.260077 7.684256 1.177798 -0.030830 22.514104 13.960425 -9.896731 -0.193293 -0.090141 5.247541 6.287431 11.334262 -12.797008 -11.476373 4.960305 -3.900957 -0.995618 -1.032052 3.230477 -5.892400 4.284269 -10.340894 -1.469718 9.928831 7.438984 -1.521052 4.661628 -0.711729 -10.257331 -3.532305 12.469867 6.997641 3.291222 -12.739641 -15.208742 6.887319 -17.097108 0.649945 -6.056652 -2.533827 -4.907998 3.474208 0.553976 12.193786 10.007249 -15.242970 11.287813 -21.933975 -15.392087 -11.209577 0.911730 3.471739 -4.176379 4.065448 -5.092832 5.343061 0.489487 6.484038 -0.733583 -9.379380 -0.014099 4.769439 8.888775 -0.551665 -11.656729 16.547979 -1.234347 -2.075695 -3.792302 -1.054053 -3.671102 2.068178 -8.164884 -4.191996 -1.625525 11.287444 -10.296817 10.566982 -0.692671 2.789912 8.368930 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.106873 -2.559710 -3.390141 10.424255 0.198778 -4.198905 1.623155 4.398900 0.159727 -10.409645 -3.727022 4.562068 1.846113 -0.868630 1.554590 2.691693 0.891096 1.842554 -14.573117 3.413947 0.791722 -0.450921 -6.167409 -4.202359 -0.059457 -1.373283 2.360597 5.867053 -0.203190 6.978287 -4.814165 2.968250 5.875681 0.109280 6.051670 4.280122 1.123943 -0.823187 -3.530647 -1.220459 11.407596 6.880960 -4.204233 2.687802 0.887261 9.381827 2.693561 7.508269 -4.778759 -2.781423 2.387258 -1.454360 -4.099182 -1.610033 -8.874666 2.740136 8.651881 5.601330 -5.049400 5.555628 -4.809640 2.367385 5.083529 3.116391 12.679686 3.539908 8.074244 7.637537 10.463643 -6.273615 2.306125 0.639316 5.542284 -2.082204 4.573153 -4.478691 -5.547598 -11.913040 2.715194 -12.408959 -0.342387 0.805189 9.192804 -8.072179 2.403541 3.697639 3.576326 8.623052 -9.898751 1.430674 -8.608446 -1.208453 -2.744555 16.466940 0.079708 1.802608 1.135155 6.518702 1.771988 3.848016 0.987928 -7.655118 -0.972975 -14.817563 -6.421975 -1.692740 -3.521740 -0.398372 -8.205223 -1.620733 5.981127 6.402467 -12.037981 -1.457614 1.821270 1.325072 7.178088 -1.854868 -2.442900 2.339859 -2.275002 2.563056 4.957885 -5.707987 3.562610 -2.089122 1.749536 4.269384 4.503649 4.036249 -11.919809 0.076360 3.712865 -2.166467 -0.830027 2.777834 0.561531 -6.202932 4.321258 -8.307347 8.754165 -11.216382 -0.416455 -4.509724 -7.919160 -0.887059 6.722007 4.994133 3.263325 1.696342 -3.484523 1.211846 -11.092732 -17.548858 2.597545 3.321470 0.377239 -0.878833 -1.602191 0.436757 -5.616311 -0.606741 7.032259 -7.273003 -6.481152 -2.296652 8.928152 1.902878 -3.829599 -3.152150 2.458887 5.437908 2.889886 8.028951 -3.640881 -11.444601 -11.647792 -4.371446 7.430256 -1.661827 -1.365011 -1.877015 -2.369662 -10.120004 3.793079 -7.205178 5.543130 -1.628328 -3.105686 -10.213200 2.217474 -1.456773 0.410737 -0.028912 -6.798963 2.857807 1.721338 1.452739 -2.063461 2.448303 4.968522 -8.294527 -8.991814 1.913900 -0.002857 11.173698 3.384619 2.088808 -2.111092 -2.203831 -7.255988 8.186580 -6.805549 4.301472 0.274677 -5.303570 6.831532 -7.276425 -4.701212 -6.515014 4.840638 1.535100 -2.090090 14.636240 8.985716 -8.163613 -2.032882 -4.816616 4.951406 2.652001 11.433072 -7.867450 -4.830823 2.523220 1.857781 -1.577140 -2.723373 3.139514 -1.555463 -0.327120 -8.050257 -4.380938 5.320816 4.746946 0.312381 1.646940 0.260720 -3.444060 -3.964895 10.431193 3.457439 1.750848 -7.276453 -13.098805 3.635717 -3.314882 -0.400637 -0.929277 -5.813050 -4.229014 -0.368977 0.669392 8.093020 7.496073 -5.024337 7.547991 -12.313240 -8.369393 -7.200560 1.085870 0.300400 -3.649623 3.455066 -4.693483 1.383068 -0.394653 3.529244 -2.587521 -3.650706 -3.824848 1.121145 4.449965 -0.208720 -5.993439 10.335718 1.889502 -2.064620 -2.637524 -0.316884 -3.383501 3.030639 -5.332353 -3.004674 -1.445019 5.096809 -6.142215 4.714801 1.326545 2.095929 3.246314 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.332550 -1.788941 -1.156089 4.126910 1.279924 -1.306986 -0.297699 1.154609 0.419541 -3.248034 -1.912534 3.767128 -0.110331 -0.133527 1.092218 0.593503 1.447608 -0.035856 -5.044207 1.489225 -1.639191 -1.027152 -2.969359 -1.660472 0.193819 0.637552 2.617012 2.246322 0.039722 1.520527 -2.311511 1.528333 0.859303 0.795858 3.111959 -0.270059 -0.155039 -1.384240 -2.587809 -2.483833 5.146514 1.425197 0.199840 2.935476 1.138131 2.612586 0.659457 4.662836 3.086174 0.248018 2.394362 -0.666871 -1.271017 0.266533 -5.094764 1.545670 1.460823 -0.933949 -1.800538 1.281313 -0.254595 1.418084 1.556559 -0.329214 5.832799 0.645015 3.480125 2.406019 3.130537 -1.882423 0.481487 0.443691 4.649408 1.309179 0.689750 -3.053265 -1.165039 -3.637353 0.601699 -3.410823 1.807879 -1.896274 3.292396 -1.948181 0.344936 0.124682 -0.129100 2.571266 -3.491908 1.175929 -3.411488 0.056257 -0.290516 3.768015 -0.611195 0.673179 0.647675 0.771594 -0.573012 1.840461 0.053770 -2.211425 1.072430 -6.192583 -2.631390 0.863692 -1.079977 -1.883578 -2.428856 1.086788 -0.085250 2.105764 -2.664700 -2.856111 -0.213082 -1.102650 1.186640 0.467103 -0.300892 -1.014261 -0.231260 3.147271 1.264941 -1.324176 1.624933 -2.362509 -0.276024 1.431655 3.385240 1.756813 -2.383466 -0.579178 1.020613 1.346289 -0.720712 -0.474642 -0.279102 -1.318032 1.479459 -1.048373 2.438079 -3.250991 -1.739242 -3.214375 -0.781587 0.201127 4.907045 1.579686 3.830975 3.015238 0.070412 0.301240 -3.729301 -5.985883 1.378016 0.480652 -0.852583 -0.162688 0.206572 0.596575 -1.349666 -2.069488 3.302930 -3.510239 -3.792825 -2.543527 -0.278703 0.302756 -1.231040 -1.885049 2.106552 2.768381 -0.290143 2.038354 -0.846317 -6.862382 -2.762222 -1.365772 2.028550 -0.914644 0.167948 0.612677 -0.076775 -2.534158 0.408534 -2.907831 1.351362 -0.531790 -2.570028 -2.992600 0.061587 -0.425397 1.634365 -0.138233 -2.529213 2.242188 0.779239 3.676434 -1.373832 2.649448 1.314845 -3.880733 -4.245924 -0.857571 0.829601 4.553456 0.770656 0.687594 -1.585031 -1.405522 -2.308035 2.637169 -5.342578 1.504823 0.941197 -1.995077 0.942165 -3.063675 -1.283967 -1.248424 1.617573 0.551223 -4.544580 3.910677 3.035763 -3.981281 -1.467037 -4.224929 2.615779 -0.032338 5.804490 -2.510455 -0.209903 0.703019 2.618357 -1.190083 -2.151296 1.579275 1.116558 -1.443549 -3.841576 -3.039647 1.653632 1.265255 0.633847 -0.832540 0.419853 0.221360 -1.408614 4.965230 0.787113 1.029330 -2.707828 -7.373685 0.230891 3.643002 -0.180427 2.097682 -3.725360 -2.091381 -1.266911 -1.586248 2.783285 0.327441 0.513532 2.423147 -3.031577 -2.178890 -2.326503 0.308738 -0.592659 -1.345253 2.387447 -2.576907 -0.976843 -1.161598 1.330433 -2.415248 0.385836 -2.146509 0.098596 0.973585 0.537223 -0.695938 2.892994 2.011839 -1.433827 -0.650286 -0.220115 -1.751340 1.454277 -3.844253 -1.265494 -0.821536 0.480093 -2.122876 1.013780 1.408275 1.948269 -0.479435 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.337444 -0.004493 -0.132116 0.648163 -0.146520 -0.613164 0.332664 0.446837 -0.211783 -0.911119 -0.159868 -0.079853 0.153585 -0.386353 0.054876 0.188317 -0.063048 0.508913 -1.405709 0.367341 0.428731 0.227375 -0.326915 -0.556088 -0.082403 -0.317058 -0.245032 0.587436 -0.098304 0.824490 -0.350541 0.014079 0.604336 0.020675 0.397914 0.791959 0.350341 0.107728 0.181472 0.445880 0.968072 0.676494 -0.616466 -0.136970 0.298768 0.897790 0.330740 -0.125937 -1.084622 -0.337950 -0.218369 0.028886 -0.368935 -0.317827 -0.560527 0.069263 0.961362 1.033022 -0.537011 0.723638 -0.661033 0.043781 0.476480 0.360699 0.940484 0.235388 0.355352 0.589978 1.078654 -0.487838 0.164556 -0.076748 0.281193 -0.643334 0.448268 0.063890 -0.586766 -1.835776 0.119039 -1.559618 -0.251630 0.535561 0.675474 -0.768367 0.425382 0.730406 0.451845 0.698651 -0.847417 -0.332641 -0.692652 -0.126819 -0.312650 1.821291 0.191198 0.131381 0.054130 0.791841 0.467271 0.310749 0.046817 -0.737759 -0.414360 -1.563335 -0.464831 -0.432883 -0.440818 -0.039734 -0.775176 -0.522724 1.300861 0.780293 -1.328446 0.267405 0.437445 0.240127 0.236093 -0.941892 -0.388093 0.661423 -0.574354 -0.064790 0.505420 -0.620051 -0.004958 0.114662 0.290392 0.299429 0.144837 0.145863 -1.081415 0.084982 0.399574 -0.484799 -0.129919 0.290752 -0.045179 -0.590876 0.300619 -1.149089 0.882832 -0.907288 0.555306 -0.143727 -0.800621 -0.115517 0.117101 0.428418 -0.381933 -0.255062 -0.500643 0.190298 -0.923977 -1.738420 0.496331 0.277124 0.232494 -0.289663 -0.254218 -0.254741 -0.399859 0.006311 0.525310 -0.502442 -0.149179 -0.001022 1.267884 0.245954 -0.410194 -0.203962 -0.000416 0.695398 0.613106 0.449745 -0.607302 -0.262038 -0.983753 -0.452244 0.722561 -0.090411 -0.271002 -0.316318 -0.331707 -0.983495 0.703679 -0.509152 0.618667 -0.305428 0.016590 -0.909004 0.102337 -0.189996 -0.155824 -0.102659 -0.515988 0.037870 -0.057455 -0.606921 -0.118392 -0.181574 0.594070 -0.505121 -0.612624 0.283942 0.075941 0.657736 0.348083 0.378895 -0.300891 0.031449 -0.589469 0.756736 -0.090148 0.281168 -0.029683 -0.697128 1.029427 -0.382669 -0.533255 -0.451982 0.486788 0.091967 0.460260 1.553216 0.923862 -0.608172 -0.155002 -0.069710 0.197785 0.487443 0.847526 -0.704777 -0.493926 0.343722 -0.264039 -0.109500 -0.058782 0.285001 -0.329033 0.472391 -0.639753 -0.168428 0.427799 0.646726 -0.038081 0.480209 -0.150673 -0.392235 -0.554107 0.774158 0.233402 0.186876 -0.599672 -0.499003 0.476785 -1.024044 0.213366 -0.312052 -0.056201 -0.343768 0.108261 0.450598 0.758413 1.143785 -0.951978 0.637167 -1.115038 -0.953933 -0.590205 0.177510 0.209543 -0.518768 0.309005 -0.355325 0.307787 0.014175 0.409486 0.188033 -0.400026 -0.337783 0.097712 0.374714 0.169334 -0.948001 0.983472 -0.202355 -0.273686 -0.213288 -0.095270 -0.033618 0.344098 0.061729 -0.335751 -0.307684 0.708504 -0.499873 0.785461 -0.126847 0.134331 0.674339 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.769736 -0.092919 -0.196680 0.798092 0.239995 -0.640060 0.248061 0.509291 -0.051548 -1.356512 -0.581742 0.242948 0.087445 -0.546519 0.223897 0.343981 0.437584 0.654273 -1.443595 0.542080 0.335308 0.145886 -0.633379 -0.418383 -0.026599 -0.428096 -0.417298 0.469191 0.039601 0.982522 -0.652433 0.197385 0.773576 -0.028823 0.764178 0.985302 0.283657 -0.158344 0.391852 0.168723 1.672380 0.521359 -0.112226 0.341057 0.631971 1.150543 -0.124476 0.939300 -0.416404 -0.371062 0.430539 -0.473106 -0.403759 0.055543 -1.200370 0.433716 0.998372 0.694284 -0.976898 0.771362 -0.449466 0.278148 0.530948 0.006102 1.298574 0.556951 0.281375 0.809213 1.497719 -0.482175 0.152491 0.098517 0.755927 -0.199409 0.473615 -0.311305 -0.236271 -1.675482 0.043457 -1.416389 0.292321 0.039995 1.544956 -1.039309 0.489540 0.920836 0.374238 0.962993 -0.792712 -0.384344 -1.093148 0.025836 -0.246638 1.573059 0.010498 0.280014 -0.139331 0.631618 0.025202 0.445070 -0.170707 -1.025175 -0.911551 -2.207440 -1.028276 -0.538138 -0.441514 -0.268399 -1.277589 -0.340781 1.111450 0.964307 -1.645599 0.105099 0.331424 0.061374 -0.013614 -0.072812 -0.800540 0.084368 -0.541344 0.308980 0.162201 -0.435153 -0.106650 -0.751634 0.076173 0.316186 0.450308 -0.035248 -1.033693 0.048264 0.270756 -0.231123 -0.337455 0.219546 0.063102 -0.910612 0.503375 -0.925705 0.881375 -1.223763 -0.058051 -0.726397 -1.052550 -0.242720 1.162685 0.550764 0.474647 0.220214 -0.506886 -0.122429 -1.375763 -1.807930 0.464632 -0.371958 0.432785 -0.104976 -0.159256 -0.254431 -0.411780 -0.299124 0.386338 -0.862067 -0.355146 -0.410176 1.318608 -0.102387 -0.423098 -0.727100 0.017688 1.138761 0.196702 0.331470 -0.779291 -0.542832 -1.128709 -0.678868 0.879528 -0.296437 0.221631 -0.213350 -0.078572 -1.003238 0.513605 -0.784624 0.338662 -0.629240 -0.216904 -1.185677 0.151189 -0.324448 -0.153549 -0.093823 -0.799680 0.463278 0.275085 0.136070 -0.136664 0.069161 0.241794 -1.149627 -1.101502 0.009042 0.112198 0.963129 0.808478 0.339681 -0.458446 -0.261369 -0.889871 0.905380 -0.987966 0.356820 0.394745 -0.843562 1.069385 -0.708649 -0.522511 -0.807495 0.620312 0.061065 -0.881357 1.547945 0.908366 -1.150954 -0.267242 -0.857289 0.554627 0.456972 1.353282 -0.526687 -0.181978 0.520630 -0.155062 -0.182038 -0.516168 0.502141 -0.202779 0.766774 -1.166112 -0.479339 0.782849 0.898636 -0.125464 0.288534 -0.043861 -0.007563 -0.145964 1.288841 0.337850 0.260775 -0.868046 -1.552155 0.383584 -0.106351 0.331689 0.135239 -0.395371 -0.428184 -0.124063 0.113381 1.125092 0.793289 -0.146094 0.918376 -1.252983 -1.238671 -0.420623 0.244648 0.316321 -0.699820 0.511568 -0.688330 0.038243 -0.265462 0.753373 0.145234 -0.516779 -0.907314 0.257946 0.649617 0.377769 -0.788594 1.170730 0.011852 -0.469487 -0.024578 -0.111884 0.255727 0.370470 -0.454757 -0.502453 -0.426932 0.524609 -0.767786 1.110659 -0.173489 0.511922 0.571383 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 1.420573 -0.275427 -0.895976 1.733492 -0.117551 -1.130154 0.485027 0.751183 -0.148407 -2.089251 -0.504761 1.402272 0.360865 -0.872025 -0.104405 0.781836 0.449990 0.712388 -2.983499 0.867711 0.340489 -0.062900 -1.590746 -0.823699 -0.215593 -0.880645 0.502881 1.232935 -0.223965 1.682471 -0.775559 0.426339 1.255106 -0.153113 1.408040 1.650572 0.132804 -0.028375 -0.018808 0.380623 2.504718 1.529974 -0.796054 0.297753 0.860261 2.080857 0.596713 0.967005 -1.074984 -0.557955 0.054089 1.044281 -0.958446 -0.467081 -1.935915 0.084903 1.482923 0.972812 -1.420072 1.419144 -1.193402 0.319755 1.059238 1.210388 2.549583 0.397282 1.291096 1.487261 2.341949 -0.960274 0.444473 0.098210 1.159549 -0.603806 1.516854 -0.188006 -1.677189 -2.011436 0.277449 -2.759916 -0.041901 0.526386 2.148606 -1.631021 0.364725 0.784062 1.073449 1.774336 -1.892732 -0.636484 -1.717619 -0.209828 -0.775291 3.854841 0.267707 0.834054 -0.062829 1.483891 0.374299 0.642516 -0.052636 -2.163626 -0.229139 -3.427737 -1.230698 -1.263969 -0.899515 -0.230272 -1.846210 -0.616584 1.570577 2.068320 -2.795724 0.342230 0.607791 -0.181630 1.505351 -0.920428 -0.755396 0.939347 -0.937078 0.390706 0.860850 -0.879898 0.059685 -0.004434 0.703091 0.690272 0.564081 0.585137 -2.847334 0.358145 1.132222 -0.626156 -0.320234 0.788600 0.156541 -1.532735 0.729325 -2.044126 1.817081 -2.216838 0.234637 -0.935128 -1.737572 -0.435070 0.513307 1.368784 0.522135 -0.322618 -0.468242 0.328944 -2.649506 -3.980534 0.835170 0.014906 -0.103325 -0.507698 -0.351413 -0.378444 -1.166955 -0.042757 1.483825 -1.320641 -0.653039 -0.412082 2.575033 0.544816 -0.855529 -0.253527 -0.246083 0.943971 1.548688 1.378295 -1.206883 -2.583649 -2.471933 -0.805415 1.576039 -0.452903 -0.346917 -0.501501 -0.952941 -1.764288 0.865820 -1.261216 1.079045 -1.014018 0.121168 -1.993871 0.286664 -0.374489 -0.156069 -0.440831 -1.419770 0.416503 0.504929 -0.762367 -0.258231 0.069548 0.820713 -1.332468 -1.283032 0.943990 0.018429 2.028911 1.224608 0.482486 -0.560295 -0.110962 -1.810986 1.381891 -1.319690 0.896679 0.557841 -1.721335 1.890783 -1.172316 -1.005875 -0.841205 1.150760 -0.070026 -0.311716 3.358514 2.274652 -1.829840 -0.293210 -0.314077 0.814586 0.721159 1.881136 -1.582196 -0.971280 0.656826 -0.230240 -0.233852 0.054776 0.657002 -0.430408 0.788795 -1.797437 -0.554968 1.454917 1.261104 -0.109227 0.273822 -0.567951 -1.180834 -0.617725 1.962881 0.625510 0.860796 -1.722046 -2.564050 0.730495 -2.224148 -0.043291 -0.194488 -0.295538 -0.851354 -0.030165 -0.193276 1.787312 0.783833 -1.835574 1.458806 -2.722384 -2.211080 -1.652047 -0.021651 0.306925 -0.792562 1.086041 -0.983367 0.369941 -0.505080 1.246455 -0.323385 -0.807617 -0.103779 0.652291 0.797544 0.479529 -1.800113 2.075250 -0.157563 -0.430182 -0.638577 -0.163557 -0.405250 0.899644 -1.270261 -0.832056 -0.714513 1.485697 -1.282405 1.500918 0.063287 1.154336 1.079214 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 1.892373 0.428481 -0.554247 2.252040 -0.234991 -2.219278 0.896350 1.941470 -0.815814 -2.646050 -0.777741 0.826429 0.288017 -1.418353 0.101227 0.381752 0.186725 1.283843 -5.355294 1.341949 0.747212 0.370687 -1.807651 -2.265464 -0.153273 -0.230277 -0.432309 2.093110 -0.302686 2.471250 -1.380017 0.044373 1.436433 0.472240 2.136987 1.992766 0.299549 0.011157 0.452849 0.374274 3.275343 2.655618 -1.918543 0.203019 1.409040 2.787912 0.988658 -0.326631 -3.418935 -0.482206 -0.829079 0.503948 -1.418860 -0.730593 -2.158790 0.026802 3.125304 2.569631 -1.675250 2.251051 -1.807528 0.400140 1.595405 1.143712 3.434141 0.633491 1.255192 1.923621 3.328431 -1.498460 0.702781 -0.546460 1.876470 -1.689259 0.590463 -0.133773 -1.941568 -4.980030 0.527817 -5.860699 -0.280208 1.198885 2.602817 -2.201621 1.689372 1.538537 1.327209 1.966019 -3.205083 -1.134212 -2.191719 -0.480925 -1.647216 5.881096 0.121295 0.834146 0.586365 2.399902 1.313422 1.082586 -0.378235 -2.505508 -0.412911 -5.303375 -1.081592 -0.841171 -1.830433 -0.609880 -1.827822 -1.434316 3.377613 2.783343 -3.833648 -0.075153 0.814809 -0.076407 0.083185 -2.346572 -1.255895 1.957313 -2.375522 0.344466 1.670060 -1.860641 0.026692 0.433650 0.161595 1.115534 1.083267 1.310860 -3.992746 0.471077 1.681134 -1.687681 -0.750772 0.737244 -0.694824 -1.563226 0.779983 -3.568712 2.861954 -2.858624 1.368867 -0.971144 -2.389616 -0.040541 -0.543066 1.725441 -1.113686 -0.031726 -0.255978 0.879082 -2.967684 -5.387456 2.094948 0.927909 0.393652 -1.528830 -0.505468 -0.804914 -1.612012 -0.755387 2.222120 -1.944822 -1.180747 -1.001700 4.865676 0.914208 -1.401780 -0.174790 0.430882 2.338300 1.886439 1.428866 -2.268159 -1.690495 -3.208444 -1.185328 2.318936 -0.400158 -1.194822 -0.499323 -0.683978 -2.695172 1.921729 -1.801781 2.299178 -1.228434 0.295872 -2.834025 0.172342 -0.516483 -0.032026 -0.551155 -1.465552 0.455277 0.613971 -1.049058 -0.988463 0.119061 2.245949 -1.468205 -2.031562 0.935106 0.845655 2.383997 1.389808 1.142333 -1.256789 0.155381 -2.016456 2.672006 -0.374240 1.201812 -0.151597 -2.048444 3.161623 -1.282167 -1.651134 -1.140669 1.675256 0.370562 0.542065 4.881710 2.983297 -2.448450 -0.629366 -1.215932 1.014317 1.235484 3.198820 -2.480012 -1.685849 1.086828 -0.601167 -0.551845 -0.506735 0.930185 -0.406398 1.177704 -2.336182 -0.778162 1.669752 1.555755 0.180633 1.329975 -0.816753 -1.347763 -1.535567 3.111756 0.664933 0.854912 -2.292258 -2.261447 1.157192 -2.609479 0.899509 -0.996599 0.002377 -1.775307 -0.416046 0.907616 2.418971 3.173754 -3.346382 1.995394 -3.500353 -2.825007 -2.396710 1.001300 0.650224 -1.795798 1.026377 -1.314986 0.703654 -0.078692 1.645871 0.570866 -1.114184 -1.453136 0.205175 1.088586 0.526021 -3.191035 3.047074 -0.376797 -0.951319 -0.655655 -0.269799 -0.316632 1.128300 -0.718135 -1.200907 -1.189973 2.229277 -1.766030 2.419951 0.564077 1.105259 1.870663 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 1.628307 0.265017 -0.574807 2.045985 -0.476249 -2.490738 1.155551 2.112270 -0.775914 -2.775894 -0.573263 -0.194204 0.545389 -1.643443 0.154269 0.526516 -0.161033 1.591152 -5.365122 1.445537 1.296549 0.733350 -1.769868 -2.242776 -0.286043 -0.758846 -1.171220 2.140509 -0.445757 2.696141 -1.188349 -0.266414 1.831247 0.055502 1.849415 2.674193 0.944530 0.412782 1.040130 1.476867 3.366135 2.967987 -2.450835 -0.402910 1.456431 3.017194 0.972052 -0.494546 -4.929513 -0.923614 -0.978126 0.152201 -1.413697 -1.033568 -1.872772 0.113861 3.949057 3.525045 -2.046140 2.687394 -2.206009 0.125244 1.733600 1.557294 3.302247 0.835277 1.154866 1.936660 3.783324 -1.448063 0.654589 -0.501832 1.280740 -2.435119 1.108116 0.097166 -2.112801 -6.060723 0.811156 -5.977590 -0.726749 1.807724 2.353092 -2.598668 1.932543 2.427685 1.728507 2.159352 -3.296242 -1.561735 -2.169682 -0.616456 -1.642924 6.950607 0.302837 0.795895 0.558623 3.022123 1.760926 1.090504 -0.133234 -2.616092 -1.240322 -5.487792 -1.314848 -1.249505 -1.923427 -0.320177 -2.185489 -2.158063 4.369078 2.448093 -4.388731 0.866326 1.356629 0.422707 0.723587 -3.054639 -1.512209 2.496390 -2.574602 -0.375186 1.672553 -2.081788 -0.173095 0.555811 0.852360 1.245886 0.491285 0.858137 -4.370613 0.801530 1.629817 -2.088371 -0.741767 0.956227 -0.608122 -2.273798 0.927574 -4.233489 3.049580 -3.263516 1.949122 -0.576729 -3.053485 -0.160461 -0.718735 1.422580 -1.771096 -0.733613 -1.172413 0.847616 -3.229701 -6.089315 2.026710 1.079640 0.805242 -1.628885 -0.799837 -1.199083 -1.493545 -0.353347 1.984293 -1.761527 -0.577388 -0.458962 5.793706 0.975487 -1.497573 -0.140918 0.098575 2.605437 2.375183 1.426615 -2.381175 -0.816134 -3.359645 -1.288142 2.448190 -0.125985 -1.152229 -0.844942 -1.006436 -3.563261 2.430169 -1.775885 2.601603 -1.454738 0.590102 -2.957409 0.242105 -0.562575 -0.154149 -0.665994 -1.552704 0.159990 0.161369 -1.911743 -0.787463 -0.543227 2.454727 -1.616137 -2.112338 1.207329 0.719982 2.521617 1.261038 1.333205 -0.595177 0.481815 -2.128013 2.681760 0.087802 0.967138 -0.175769 -2.386349 3.776830 -1.168255 -2.139090 -1.666392 1.712723 0.236503 2.419902 5.566490 3.086895 -2.219318 -0.549286 -0.437360 0.703517 1.650459 2.981506 -2.427724 -1.937523 1.243874 -1.160786 -0.457712 -0.276372 0.932350 -0.916198 1.934623 -2.264127 -0.476344 1.620808 2.073028 -0.041185 1.926931 -1.018557 -1.644936 -2.070048 2.930265 0.646119 0.721126 -2.216300 -1.491103 1.517913 -4.095727 0.838606 -1.740163 0.303109 -1.542986 -0.083286 1.887803 2.521775 4.521211 -3.667948 2.069458 -4.000551 -3.317795 -2.277682 1.087605 0.814700 -1.935521 0.677530 -1.208074 1.205226 0.056378 1.704390 1.054419 -1.583151 -1.545666 0.148415 1.067219 0.326509 -3.837332 3.387283 -0.878232 -0.765250 -0.716700 -0.348080 0.083031 1.398828 0.300368 -1.320984 -1.440669 2.543250 -1.744814 2.883956 0.035609 0.847818 2.612089 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 2.362010 -1.456845 -3.949853 9.273434 -0.634977 2.762178 0.752843 -1.212685 -0.017308 -12.578913 -4.604970 6.863413 2.343994 3.338030 -0.528006 3.381115 1.809714 1.948606 -10.624310 -1.727219 3.131543 0.219239 0.892832 0.788775 -0.139821 -3.009793 7.080152 1.047880 1.492377 7.368686 -1.273176 7.481017 6.836681 -1.059120 0.815868 3.772383 -1.972647 -0.128191 -5.718108 -3.080236 7.816256 0.421987 1.346063 3.549595 -4.107625 7.514118 2.614294 5.474662 3.922176 -3.809710 3.231177 3.665340 -2.102298 -1.971949 -6.262625 0.637161 1.868156 3.034236 -1.078408 1.718282 -0.397099 1.286640 2.748079 1.056050 8.019497 3.026156 7.310029 7.945123 4.933250 -5.851584 2.427406 0.259290 -2.487614 0.147425 7.205462 -5.295493 -4.788728 0.846841 -2.226515 -7.763031 -1.599409 -0.880216 9.137092 -5.170869 -3.032632 -2.497440 2.141602 8.319108 -1.985357 3.128217 -7.139760 -1.198419 0.217973 7.002877 1.656068 1.016341 -2.512147 1.564088 -1.447020 0.489337 2.435735 -6.618172 2.246713 -6.592251 -4.239733 -5.019549 2.897213 5.263993 -8.067136 1.436156 -5.778550 5.049919 -12.122503 -1.492819 0.607581 3.868795 9.273187 1.075712 -3.125432 -0.674167 2.652214 2.241095 3.418372 -3.475740 3.881765 -2.035324 -0.821039 0.538148 2.010021 2.431534 -8.940816 -4.489001 0.751875 -0.206558 2.601958 5.089259 6.857408 -0.060377 3.434163 -4.470541 5.437854 -7.741479 -3.744666 -1.812389 -5.797356 -4.787446 6.406893 4.860999 6.259635 -2.534614 -4.125295 0.113461 -9.234486 -9.804465 -0.664402 1.142905 -1.188299 5.896671 -2.135268 4.190520 -6.862845 4.325385 5.737964 -1.980083 -4.347423 0.494466 0.224431 1.737524 -1.658569 -1.916156 -0.900911 -3.800953 1.408368 10.441380 -0.320801 -10.728545 -13.395741 -2.653195 6.486717 -4.241318 -0.285015 -4.223443 -3.137517 -4.900705 -1.712582 -5.836551 -1.353187 1.338528 -4.579318 -8.771666 4.089430 -1.066028 -2.585875 3.667502 -6.601471 1.089012 4.847521 2.780890 1.686759 0.262451 -1.100507 -4.620546 -3.497721 2.911125 -6.154246 5.371731 2.906627 -1.124326 -4.900717 -4.175531 -4.904577 3.366852 -3.096452 5.252189 0.721865 -0.881996 1.185033 -7.120556 1.986099 -3.677496 1.489002 1.497076 -12.813889 7.874108 3.551762 -3.372360 0.822280 0.211100 3.782112 -0.719260 1.382912 -4.920804 -5.174592 1.111989 1.471534 0.620704 -2.551522 0.715748 -2.306798 -4.015506 -5.728453 -2.396542 6.309957 1.876409 -1.296186 -0.654589 5.136391 -4.567849 1.309305 5.770211 5.817355 0.733056 -3.691246 -12.829634 2.429420 -1.958699 -1.903609 -0.741456 -5.159685 -0.819344 4.398236 -4.717860 5.406953 -2.617104 -3.395312 6.340440 -9.056054 -5.803698 -6.041793 -3.097111 1.668687 1.476867 -0.068367 -2.713975 2.010191 0.431915 0.557452 -3.505408 -5.310133 4.644221 4.350645 7.609279 -1.649369 2.526691 6.975598 2.945679 -1.047210 -1.698500 0.798856 -4.965738 0.008627 -10.473113 -0.463842 3.889997 3.292085 -5.280888 -0.389982 -2.716197 0.053071 0.023821 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/binomial-coefficient.cpp__main = 1.331887 -0.436989 -1.118256 2.597778 -0.326199 0.398199 0.421021 0.428465 -0.085955 -4.173894 -2.305753 0.947545 0.681112 0.420429 0.669268 1.196785 0.648635 0.649903 -4.285809 -0.104492 1.350329 -0.015582 -0.071879 0.343773 0.006825 -1.230664 -0.020867 0.483719 0.165843 2.589935 -0.673388 2.233452 2.290470 -0.327239 0.337191 1.501975 -1.070940 -0.202910 -0.262738 -0.238065 2.960553 0.503912 0.055731 0.793881 -0.707752 2.631795 -0.549327 2.871609 0.226529 -1.294858 2.223598 -0.708147 -0.964716 0.247898 -2.093880 0.351216 1.870744 1.205083 -0.589521 1.102227 -1.198863 0.725170 0.958636 -0.371125 3.144493 1.864262 2.274060 2.337687 2.120438 -1.610151 0.960519 0.029096 -0.512754 -0.464466 1.065352 -1.670472 -0.608993 -1.774005 -0.200350 -3.231571 -0.302297 -0.467486 3.811039 -1.995195 -0.673010 0.203808 0.811271 2.897955 -1.239550 1.009389 -2.304992 -0.110203 -0.073206 2.540089 0.161140 0.478125 -0.901030 0.710427 -0.332206 0.261751 0.046802 -1.840862 -1.501194 -3.395902 -2.106908 -1.187473 0.673836 1.235982 -3.454534 0.422591 0.075802 1.091776 -4.107193 -0.240273 0.425284 1.416978 1.806051 1.983378 -2.343635 -0.682613 0.377755 1.288276 1.164426 -0.977885 1.287363 -2.539742 -0.110759 0.586902 0.816312 0.323837 -3.002927 -1.005183 0.371039 -0.691374 0.473718 1.728045 1.980965 -0.092217 1.362568 -1.711526 1.927090 -3.487594 -1.033625 -1.337517 -2.283827 -1.133558 3.050110 2.744537 1.611381 0.082447 -1.547359 -0.150015 -3.493838 -3.214782 -0.514305 -0.084472 0.782405 0.913301 -0.596482 0.831610 -1.699516 1.198333 0.950780 -1.119908 -1.104187 -0.458943 1.766679 0.468734 -0.930023 -1.281759 -0.257246 0.002396 -0.736303 2.634915 -0.208934 -2.205257 -4.160831 -1.236666 2.241489 -1.150647 0.335399 -1.459317 -0.161481 -2.400643 -0.058190 -1.739779 -0.618923 0.398456 -1.737671 -2.983003 1.055691 -0.194871 -1.023773 0.667239 -2.105513 0.313771 2.229807 1.612917 0.808970 0.433390 -0.361939 -1.893941 -2.023993 0.194231 -1.763449 2.204072 1.915171 -0.404332 -1.320683 -1.149964 -2.113748 1.896720 -1.293686 1.357007 -0.064318 -0.772721 0.966265 -2.273777 -0.251103 -1.872595 0.542056 0.106930 -4.622775 2.864401 1.318088 -1.608490 -0.068909 -1.525847 1.609981 0.154424 1.380010 -1.096190 -0.876340 0.276660 0.277037 0.023833 -0.998345 0.824821 -0.990649 -0.756716 -1.967574 -0.718223 2.487631 1.146718 -0.427789 0.379599 1.363202 -0.307571 1.054582 1.863990 1.461854 -0.882006 -1.125227 -4.948391 0.748543 0.622062 -0.588794 -0.056119 -1.929678 -0.746020 0.678278 -0.916437 2.164151 0.611409 -0.267416 2.144118 -2.452429 -2.214301 -1.936548 -0.015483 0.295073 -0.289095 -0.014491 -0.855631 0.559374 0.625212 0.715843 -0.019155 -2.497868 -0.956105 0.908082 2.731029 -0.305816 0.032212 2.498229 0.932383 -0.548620 -0.742941 0.067598 -1.040981 0.405461 -2.253118 -0.449881 0.610149 0.924576 -1.915650 0.681526 -0.469955 0.237287 0.547625 -PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 6.338484 -1.351040 -7.327150 13.084739 -0.392349 2.448902 0.893320 -1.236879 1.134174 -15.401657 -6.008241 10.829369 3.236480 2.556037 -0.537571 7.021061 3.023579 2.189550 -11.139509 -0.512883 2.568246 -2.191864 -2.557354 0.632525 -0.791659 -5.738026 9.186519 2.150828 1.478093 9.868259 -2.425649 8.496846 9.009965 -1.802326 2.744949 6.053522 -2.484710 -0.034275 -7.843112 -3.938774 11.466941 3.160801 0.080743 4.117563 -3.856171 11.155825 2.528505 11.195161 3.155462 -4.800462 4.927843 6.735258 -4.096877 -1.323071 -9.770606 1.465087 3.050085 1.559181 -3.354746 3.168449 -3.602709 3.266032 4.400238 3.575486 11.749454 3.883559 10.266369 10.623580 8.295852 -8.610206 3.038731 2.240645 -0.209967 0.907539 11.203803 -5.353127 -8.437711 3.738556 -1.015991 -7.277814 -0.898448 -0.931851 15.500288 -8.570645 -4.930638 -1.831952 4.271412 12.072510 -5.695969 4.390318 -9.767111 -0.395962 -1.953039 12.750570 2.936627 2.737030 -4.186607 2.978374 -2.145453 1.518509 2.089138 -10.340678 1.016585 -10.331932 -7.285558 -8.020515 3.230925 5.620816 -12.070598 1.732946 -2.840361 9.343332 -15.398597 -0.249899 1.970977 3.597997 15.173368 4.189843 -3.987999 0.250222 2.941303 3.619197 5.006619 -3.645814 4.312138 -2.128125 1.645812 1.371517 3.416624 3.288806 -14.061203 -3.227979 2.859399 -1.655333 3.132458 6.975943 8.424815 -4.197583 5.442359 -5.141181 7.890944 -12.492453 -4.739253 -4.348141 -9.146873 -5.955967 8.589956 9.323612 10.797512 -2.346084 -3.693611 -1.062780 -14.657032 -14.952688 -1.895377 0.960959 -2.491332 5.734753 -2.176161 5.141131 -8.951990 5.761627 7.537485 -4.958969 -5.975081 0.627779 6.327089 1.934346 -3.380653 -3.372908 -2.574969 -4.661042 2.938738 13.758501 -0.617221 -18.477051 -17.394262 -4.638823 9.303948 -6.078360 0.762082 -5.514174 -5.002110 -6.944776 -1.556958 -7.753007 0.493232 1.060453 -4.230211 -12.158623 5.064355 -1.332847 -4.107275 3.277881 -9.920798 2.294516 7.215147 0.282592 1.819552 2.194719 -1.029220 -7.796323 -4.963800 4.678160 -7.561629 10.401851 7.163306 -1.788626 -4.912100 -5.705700 -9.137314 5.199794 -7.980365 6.916012 1.216042 -2.362631 3.027303 -9.769993 0.072108 -5.898631 3.703296 0.846610 -14.862796 11.803752 9.315772 -6.385857 0.757122 -0.487641 6.025047 -0.139994 5.147140 -7.916845 -6.286763 1.589288 1.566523 0.139961 -0.051366 2.286769 -3.648317 -4.421832 -8.094735 -2.317196 8.650298 3.901854 -1.605277 -1.894389 5.011602 -6.123912 3.847469 7.713717 7.307386 1.315156 -7.810772 -20.618956 3.391350 -6.965949 -4.547339 1.121059 -5.208379 -1.846074 4.386450 -7.098241 8.805931 -5.064530 -4.612973 9.295332 -13.192389 -9.655606 -8.626215 -4.366089 1.109869 0.314934 3.130428 -4.471477 1.406897 -1.339884 2.000529 -6.331766 -6.245511 5.716868 5.888878 10.346347 -0.300665 0.570303 9.966158 4.282727 -1.718073 -3.538210 0.615353 -6.774229 1.414531 -14.050937 -1.566674 3.670177 5.026166 -7.657742 0.755315 -1.498165 1.589610 0.786134 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = 6.482879 -3.661480 -6.721943 14.451856 -0.789704 3.016609 1.654688 -0.750958 0.310927 -18.621917 -7.597409 12.796733 3.207856 3.145519 -1.195975 6.343652 3.072384 2.449976 -17.153906 -1.176804 3.231855 -1.914927 -1.251658 0.040902 -0.464540 -5.943005 10.866555 3.712885 1.414159 11.167051 -2.422047 9.606678 10.512895 -0.765598 2.835594 6.754999 -4.034772 -0.583075 -8.042888 -5.161005 13.043929 3.546807 0.210888 4.490301 -4.300641 12.274722 4.545179 12.366925 6.625365 -5.044770 5.747304 4.177747 -5.479889 -1.912485 -11.335945 0.586407 2.762328 2.766618 -2.691078 3.632986 -4.494342 2.969500 4.450968 2.291066 14.503347 3.560691 13.038164 11.442222 8.461030 -9.742264 3.230058 2.056424 -0.329804 0.838156 10.962670 -7.538472 -9.234847 0.285008 -0.965895 -12.019882 -2.061289 -0.828261 17.899239 -8.588061 -5.317049 -2.590356 3.760225 13.581507 -5.942005 4.689341 -11.742425 -0.581811 -0.819861 13.944291 3.323399 2.506563 -3.168937 2.844658 -1.573143 1.929643 2.887581 -10.728671 1.532823 -13.702847 -6.221276 -8.487532 3.680380 5.833850 -12.804763 2.187152 -3.157459 9.359219 -17.514220 -1.408502 2.716673 4.016575 16.154836 3.734402 -3.942057 0.190917 2.955380 4.553645 6.801501 -5.811068 4.875483 -1.967231 1.905026 1.285138 3.666376 3.957824 -16.568754 -4.951083 3.630126 -1.426150 3.533878 7.011743 9.106599 -1.854458 5.716436 -6.370806 9.021326 -13.952172 -3.720702 -4.274041 -9.281665 -6.661185 14.547444 11.002815 10.878972 -2.479821 -3.491762 -0.089765 -15.643509 -17.614872 -0.952366 1.539060 -1.937571 5.305199 -2.410943 5.777262 -10.023482 5.706925 7.520865 -4.709242 -6.545400 0.624189 3.487997 2.830536 -3.611389 -3.137734 -2.072877 -4.101468 2.546889 15.255465 -1.226638 -23.282746 -18.917123 -5.223847 10.272995 -6.459288 -0.499387 -6.039259 -5.164378 -7.111646 -1.623802 -8.413650 0.628514 1.691067 -6.527604 -14.052119 5.346497 -1.429376 -3.335009 4.190214 -10.301336 1.744300 7.657766 2.739761 2.196783 2.147143 -0.607944 -8.571914 -5.622157 4.353133 -8.825546 11.501455 6.708991 -1.917760 -7.295543 -5.870572 -10.061230 5.835950 -7.029427 7.760213 -0.142604 -4.219017 3.434470 -10.800733 2.662144 -5.788852 3.735616 1.511524 -21.319447 13.895579 10.304859 -6.565663 0.381362 -0.843835 5.405018 0.078144 5.381900 -9.001093 -7.296351 1.172428 1.170717 0.405760 -0.163403 2.613442 -3.380298 -5.559371 -9.815205 -4.120539 9.729029 3.861689 -1.343707 -0.965975 5.986994 -5.143844 3.743227 9.516498 6.961867 0.939453 -8.134761 -26.881705 3.946213 -1.094693 -4.193497 1.980889 -6.689082 -2.823192 4.809996 -8.043453 9.450878 -3.824417 -6.517608 9.937130 -13.425873 -9.822635 -10.397493 -4.698918 1.433119 0.653190 3.250038 -4.482283 1.924630 -1.135918 1.424632 -5.916384 -6.458611 5.511621 6.412784 11.225476 0.465168 1.253256 11.060208 3.897434 -2.049134 -4.043532 0.122284 -7.609112 2.636111 -15.607244 -1.351286 4.143922 5.678362 -7.969890 0.187144 -0.909350 1.964712 0.770007 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 1.813395 -1.262293 -1.030942 3.570202 0.154864 0.560409 0.742886 0.223170 0.307265 -4.957723 -2.041508 2.755728 0.597835 0.573914 -0.094952 1.197143 1.070130 0.834597 -4.512386 -0.246473 0.819963 -0.255867 -0.325852 -0.150488 -0.150984 -1.599948 2.196484 1.416329 0.427281 3.063861 -0.786182 1.855256 2.789993 -0.110088 0.782156 2.231145 -0.048014 -0.096479 -1.827047 -1.122456 3.927508 0.957346 -0.163928 1.477991 -0.557049 3.434632 1.056444 3.628296 1.742171 -1.385765 1.719927 -0.069946 -1.534408 -0.724465 -3.206362 0.451786 1.564409 1.269082 -1.196590 1.437460 -1.069324 0.748170 1.169461 0.337343 3.502634 1.265818 2.879868 2.784713 2.761026 -2.861923 0.420737 0.832134 0.482512 0.505870 2.355326 -2.173287 -2.083925 -1.519344 -0.080441 -3.142048 -0.575792 -0.416467 4.439070 -2.391095 -0.927576 0.312054 0.500651 3.182287 -1.604322 0.860832 -3.289515 -0.068858 0.135954 3.937131 0.727846 0.503171 -0.458096 0.848300 -0.073960 1.027343 0.870908 -2.829163 -0.491700 -4.409681 -1.883779 -2.159644 0.700367 1.070570 -3.244102 0.186386 0.064330 2.098151 -4.543463 -0.411861 1.012565 1.241495 3.442617 0.683824 -1.111001 -0.009586 0.683650 0.949196 1.804308 -1.825172 1.044249 -0.789367 0.519185 0.444033 0.966167 0.692987 -3.818997 -1.289813 0.809869 -0.065861 0.608142 1.254599 1.762381 -0.921504 1.598121 -1.922547 2.595060 -3.726179 -0.841941 -1.131988 -2.387809 -1.630855 4.511548 2.277369 2.901361 -0.248321 -1.363653 -0.227866 -3.708286 -5.059338 0.133575 0.441585 0.133992 1.197510 -0.698661 1.234502 -2.440372 0.892695 1.499389 -1.322479 -1.502538 0.167679 0.823669 0.365169 -0.973201 -1.307051 0.024968 0.013109 0.528713 3.448366 -0.755901 -5.547621 -4.357552 -1.697854 2.770230 -1.589583 -0.087963 -1.149235 -1.267887 -2.277216 0.026469 -2.239903 0.392493 0.146011 -2.188544 -3.849082 1.501987 -0.675063 -0.489162 1.391956 -2.773664 0.479833 1.307443 1.105013 0.533612 0.589137 0.070389 -2.859019 -2.101785 0.500009 -1.844228 3.349036 1.490064 -0.180090 -1.605094 -1.537403 -2.520904 1.851155 -2.240071 1.754423 0.044020 -1.348803 1.359638 -2.543319 0.360605 -2.062050 1.241850 0.876213 -4.797282 3.981444 2.835799 -1.998146 -0.450634 -0.593999 1.122833 0.414475 2.176815 -2.436179 -1.976104 0.800322 0.173176 0.011186 -0.529059 0.866125 -0.556862 -0.788766 -2.958226 -1.413685 2.306802 1.489470 -0.395166 0.123973 1.774043 -0.708343 0.462541 3.096405 1.584898 0.310284 -2.179452 -6.891909 1.414584 0.477072 -0.754977 0.716665 -2.239140 -0.938957 1.292461 -1.318524 2.636560 0.156868 -1.130494 2.876919 -3.355430 -2.783035 -2.292657 -1.182208 0.682107 -0.370125 1.013260 -1.392648 0.586000 -0.453899 0.369692 -1.160744 -1.436326 0.548404 1.367099 2.764557 0.249482 0.127555 3.192447 0.712564 -0.926011 -0.737367 -0.050390 -1.393274 0.941260 -3.373813 -0.418930 0.610725 1.524602 -2.031160 0.611330 -0.283944 0.415336 0.507778 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 1.127433 -0.538836 -0.241141 1.777628 0.164574 0.659998 0.364511 0.169960 0.265146 -2.589990 -0.872104 2.763397 -0.045712 0.485857 -0.366597 0.485803 1.106528 0.493235 -3.017934 -0.280143 0.183146 -0.228551 0.136286 -0.193074 0.101005 -0.859366 2.166266 1.098239 0.537638 1.708900 -0.696602 0.847863 1.372092 0.239382 0.628997 1.188263 -0.174693 -0.469265 -1.661377 -1.472822 2.190762 0.369632 0.159835 1.281996 -0.169274 2.063544 0.997219 1.378530 3.299183 -0.709633 0.440259 0.940750 -1.199908 -0.639947 -2.001741 -0.040885 -0.297448 0.317236 -0.677865 0.687280 -0.181704 0.498892 0.489144 -0.116764 1.574436 0.067654 1.454681 1.304415 1.279381 -1.833091 0.035029 0.551962 0.693541 1.254540 1.288326 -1.242647 -1.221546 -1.096797 -0.272203 -2.061027 -0.391614 -0.524978 2.252342 -1.204462 -0.510610 -0.158648 -0.127989 1.594356 -0.620346 0.351801 -2.019941 0.038665 0.549911 1.564912 0.548113 0.071268 0.100611 0.111076 -0.248030 0.765996 0.790934 -1.859228 0.295289 -2.391146 -0.682614 -1.547088 0.553373 0.404069 -1.275001 0.788384 0.127631 1.923387 -2.199703 -0.699532 0.514210 0.270726 0.842539 0.139827 0.144852 -0.210169 0.466424 0.990166 1.164244 -1.336054 0.444141 0.514142 -0.142479 0.064704 0.830606 0.568955 -1.505794 -1.227935 0.846276 0.646050 0.371007 0.513045 0.827421 -0.119667 0.845530 -0.883483 1.565341 -1.319379 -0.616912 -0.499611 0.137144 -1.277787 2.326469 1.471594 1.752532 0.208391 -0.046004 -0.033448 -1.492462 -2.232198 0.342733 0.152665 -0.223780 0.948236 -0.290767 1.029733 -1.403018 0.198996 0.356617 -0.756175 -1.045593 0.167280 -0.872829 0.145910 -0.296032 -0.916580 0.280296 -0.151820 0.333128 1.639229 -0.668280 -3.887841 -1.906711 -1.069740 1.612520 -1.259563 -0.235792 -0.303095 -0.962064 0.173110 -0.172400 -1.366459 -0.129709 -0.009728 -1.446059 -2.123402 1.156613 -0.666179 -0.234639 1.119341 -1.692271 0.389598 0.289313 0.759681 0.193139 0.391589 -0.087045 -1.657904 -0.769915 0.035310 -1.150279 1.575425 0.784962 -0.223858 -1.810105 -1.025199 -0.997930 1.000743 -1.889651 1.300368 -0.000112 -1.017538 0.514645 -1.088655 0.796716 -0.594673 0.979628 0.853312 -3.636320 2.094564 2.034695 -1.383755 -0.339637 -0.333792 0.420816 0.302204 1.181820 -1.680232 -1.323465 0.419835 0.254399 0.111492 -0.082085 0.476016 0.188630 -0.809432 -1.828966 -0.939394 1.296561 0.671731 -0.060623 -0.285350 1.388488 -0.094728 0.543916 1.851607 0.740125 0.812242 -1.382645 -4.175108 0.935910 1.600164 -0.121458 1.293342 -1.550297 -0.590066 0.711757 -1.296946 1.380439 -1.150824 -0.633990 1.599155 -1.542803 -1.370453 -1.478389 -1.226368 0.428449 0.095210 1.340593 -0.721627 -0.042240 -0.773972 0.071832 -1.244323 0.073496 0.930824 1.184570 1.352904 1.026729 0.418497 1.696168 0.393298 -0.974212 -0.279136 -0.214961 -1.134290 0.303600 -2.149881 0.050330 0.604087 0.844342 -1.120944 -0.053600 0.222272 0.429575 -0.437737 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.056463 -0.197422 -0.296938 1.053181 -0.140769 0.313708 0.024996 -0.547991 -0.230315 -1.354233 -0.372079 0.265791 0.274911 0.541701 -0.026280 0.518098 0.157061 0.149387 -0.927716 -0.211168 0.431817 -0.000121 0.311046 0.220280 0.008468 -0.454476 0.869119 0.134914 0.198510 0.847510 -0.307969 0.773310 0.818300 -0.263136 0.003008 0.446708 0.011043 0.217391 -0.767705 -0.024857 0.886003 -0.376728 0.341081 0.096500 -0.485951 0.864329 0.437376 0.801011 0.865974 -0.567930 0.739472 0.553403 -0.049392 -0.196768 -0.660773 0.117418 0.360402 0.652864 -0.280247 0.173097 -0.016310 0.246663 0.284167 0.290099 0.834438 0.363352 0.760527 0.725117 0.535526 -0.742029 0.201709 0.079161 -0.350193 -0.112151 0.822884 -0.933618 -0.448113 -0.102258 -0.258873 -0.610391 -0.071422 0.240847 0.834753 -0.636287 -0.455825 -0.054666 0.000544 0.900598 -0.142026 0.439983 -0.779186 -0.056331 -0.005441 0.849458 0.216091 -0.155541 -0.120606 0.182534 -0.073533 0.182841 0.293527 -0.713497 0.079590 -0.688093 -0.893053 -0.566383 0.525987 0.605707 -1.070831 0.077373 -0.341196 0.029456 -1.316650 0.031219 0.228329 0.776579 0.836745 -0.050607 -0.324962 -0.138743 0.281237 0.374781 0.577454 -0.240013 0.503730 -0.374896 0.019845 0.143490 0.265332 -0.014441 -0.594900 -0.555819 -0.216265 -0.089121 0.201567 0.375437 0.744605 0.059045 0.541950 -0.353497 0.646150 -1.009702 -0.301454 -0.298356 -0.576776 -0.504120 0.524673 0.300256 0.588446 -0.439457 -0.862302 0.033026 -1.068691 -0.812382 -0.289690 0.212714 -0.084227 0.884283 -0.333001 0.608954 -0.588092 0.393747 0.570345 -0.258116 -0.529764 0.046604 -0.246982 0.139063 -0.270704 -0.429339 -0.016470 -0.446896 -0.026122 1.166835 -0.000171 -1.018925 -1.427166 -0.462178 0.743736 -0.487736 0.128598 -0.430837 -0.350208 -0.781425 0.057887 -0.773604 -0.345874 0.196254 -0.521055 -0.966903 0.504523 -0.212526 -0.312849 0.421688 -0.892733 0.062278 0.274375 0.120011 0.409741 -0.067131 -0.076141 -0.807954 -0.510354 0.231576 -0.709027 0.276559 0.189041 -0.038655 -0.467010 -0.602466 -0.404977 0.058171 -0.211889 0.446213 0.158789 -0.054459 0.144517 -0.765447 0.553737 -0.271475 0.076143 0.322295 -1.451025 1.030131 0.509708 -0.324805 0.065324 0.190186 0.424118 -0.122506 0.143511 -0.534580 -0.459734 0.087017 0.153424 0.093747 -0.153134 0.197904 -0.349109 -0.493825 -0.572351 -0.280544 0.503729 0.390989 -0.068694 -0.107182 0.684436 -0.458984 0.066379 0.599735 0.447666 0.133729 -0.153315 -1.505432 0.355692 -0.292683 -0.188121 0.218483 -0.465636 0.046056 0.594250 -0.080244 0.685381 -0.139665 -0.166639 0.780371 -0.891439 -0.710828 -0.613259 -0.511230 0.102667 0.051345 -0.204062 -0.459773 0.142667 0.007063 -0.026810 -0.439140 -0.256836 0.490988 0.374023 0.915671 -0.118190 0.361415 0.828887 0.278302 -0.171164 -0.211771 0.180131 -0.377575 0.151114 -0.649109 -0.098393 0.434350 0.383041 -0.544844 -0.149028 -0.612211 -0.129933 0.025235 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = 4.741016 -1.805481 -5.671637 13.087500 -0.069152 1.600404 1.297061 -1.109567 1.230373 -15.466251 -6.566143 7.347781 3.240444 1.945250 -0.086431 5.356429 2.330150 3.275746 -12.581527 -0.416288 3.586183 -0.373087 -0.823533 -1.071107 -0.469917 -4.892972 8.331187 2.243485 1.549687 10.068628 -2.289338 7.752034 8.781809 -1.203439 2.559740 6.498977 -2.181047 0.839876 -6.606779 -2.817002 11.378829 3.415296 0.229232 4.065486 -3.164304 10.685016 3.772100 8.249045 2.270810 -4.711775 4.420297 5.788564 -3.419046 -2.521773 -9.303044 2.007829 5.909609 3.415821 -3.167301 3.548141 -2.532900 2.601718 4.296659 2.417778 11.346152 3.863510 9.259761 10.103152 8.756129 -8.234953 2.660956 1.376240 0.183297 -0.501342 10.665223 -6.739876 -8.943607 1.514509 -2.326292 -9.204458 -0.187140 -0.010603 13.609820 -8.281212 -3.354794 -0.748332 3.504069 11.059141 -4.689358 2.347025 -9.032265 -0.412152 -2.776172 13.114825 2.855056 2.255068 -3.122812 3.397670 -1.025119 1.784369 2.846635 -9.559826 1.375096 -12.498141 -6.687597 -7.464951 3.528452 5.082656 -11.201249 0.635461 -3.647799 6.609605 -15.856563 -0.314092 2.632223 4.641234 12.054171 -1.718315 -3.632758 0.891512 1.944312 3.108893 4.814341 -5.122449 3.371046 -2.025885 0.630595 1.330433 3.066875 2.396804 -10.868564 -3.895751 0.653787 -0.497453 2.656197 5.989708 7.479840 -3.832348 5.075764 -6.157585 8.335467 -12.420268 -3.173829 -3.983480 -8.828150 -5.627348 7.144512 5.547880 9.083538 -3.650478 -4.455437 -0.624657 -13.565193 -14.760766 -0.063024 1.666944 -1.065143 5.589034 -2.317689 4.347661 -8.686943 4.800250 7.802008 -4.329848 -5.128044 1.061349 5.946702 1.429484 -3.521945 -3.569936 -1.800766 -2.725692 3.073377 12.590559 -1.281072 -14.843637 -16.410665 -4.544658 9.109545 -5.655147 0.273043 -5.372013 -4.257902 -7.641902 -0.371593 -8.244201 0.869899 1.101273 -4.445668 -11.911468 3.991426 -1.588638 -1.881586 3.821798 -9.379180 1.847326 6.604035 1.704997 1.410329 1.726403 0.451113 -8.062850 -5.374675 3.744261 -6.684990 8.960960 4.994369 -0.854833 -4.941684 -4.932159 -7.819901 4.383502 -4.583471 6.004037 0.337098 -2.167218 3.648484 -9.059696 1.057197 -6.649963 2.516502 1.409526 -13.225500 11.548612 7.719768 -5.563302 0.561745 -0.321518 5.042010 -0.409815 5.005743 -7.651669 -6.924021 1.885181 -0.066183 0.169374 -2.223953 2.069572 -3.660673 -3.418142 -8.017453 -2.670985 7.803831 4.100307 -1.541158 -0.021991 5.217133 -5.586792 1.946343 8.138517 7.209479 1.405844 -7.851879 -18.489020 3.556763 -5.882800 -2.587661 -0.266000 -4.138668 -2.281288 4.830687 -3.254347 8.390466 0.300052 -4.650760 9.176881 -12.275080 -9.277045 -7.698931 -3.514706 2.517256 -0.774042 0.671395 -5.008069 2.263472 -0.873821 1.730986 -4.326862 -6.291600 4.552891 5.196400 10.664567 -0.941842 0.527789 10.184712 3.582831 -2.217911 -2.528198 0.485296 -6.128971 1.454776 -11.617683 -1.679396 3.161426 4.974605 -7.037829 1.664645 -2.922229 1.309970 1.544185 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = 3.832165 -2.340989 -3.749433 9.535003 0.344485 1.559342 1.169358 -0.399947 0.785553 -12.660518 -5.124802 7.376645 1.819725 1.364161 -0.565239 3.500068 2.428654 2.650395 -10.672714 -0.509364 2.286083 -0.335372 -0.251962 -1.080078 -0.197134 -3.467788 7.318848 2.112582 1.267386 7.302110 -1.683644 5.853395 6.578258 0.080442 2.370790 4.900500 -2.209099 -0.250901 -5.061380 -3.651959 9.033732 2.608683 0.802157 3.799950 -2.063884 7.956278 3.663423 6.356086 4.650337 -3.145291 2.832938 2.635545 -3.248398 -1.902208 -7.832650 0.939622 2.334728 1.924826 -2.070207 2.645260 -1.749238 1.902586 2.925799 0.754558 9.048969 1.898469 7.309186 7.437248 6.077074 -6.275306 1.739120 1.269909 0.693308 0.861191 7.382799 -5.789729 -6.374990 0.027006 -1.915475 -7.760197 -0.210890 -0.567774 11.427780 -5.545079 -2.677099 -1.249020 2.215245 8.110710 -3.011355 1.517477 -7.571022 -0.113741 -1.012135 8.317557 2.204495 1.614616 -2.149943 1.708560 -0.995321 1.476002 2.332953 -7.136958 1.665509 -10.447199 -3.493293 -5.689521 2.596675 3.200026 -7.567308 1.041923 -3.451960 6.473835 -11.529288 -1.283048 1.826151 2.473165 8.344616 -0.789203 -2.086373 0.161174 1.624679 2.958634 3.687299 -4.589521 2.224653 -1.014950 0.300747 0.425535 2.723721 2.208633 -8.666318 -3.688907 1.178653 0.839482 1.987657 4.199659 5.430528 -1.732694 3.460135 -4.386247 6.172114 -8.391321 -2.215007 -2.850529 -6.031792 -4.498611 9.058855 5.211139 7.258009 -1.990884 -2.076707 -0.295749 -9.414358 -11.532695 0.685877 0.806124 -0.747660 3.987362 -1.375128 3.269913 -6.719415 3.325175 5.507795 -3.000150 -3.936747 0.656260 1.616808 1.135486 -2.416359 -2.637313 -0.852464 -1.205994 2.115635 8.972674 -1.429362 -13.298367 -11.611119 -3.530365 6.676960 -4.496326 -0.254938 -3.651731 -3.178395 -3.941985 -0.786975 -5.989397 0.831866 0.808605 -4.627259 -9.077286 2.990366 -1.445997 -1.191798 3.215769 -6.458954 1.480188 4.629262 2.770903 0.659460 1.631710 0.011004 -6.202406 -4.160501 2.465754 -5.059033 6.756836 3.831518 -0.701393 -5.360660 -3.686634 -5.692199 3.548886 -4.169354 4.773950 -0.010847 -2.372485 2.444906 -6.625504 2.358766 -4.299025 2.193941 1.331539 -13.923148 8.373314 6.129947 -4.492238 -0.035094 -0.868789 3.347337 -0.204319 3.801613 -5.651372 -5.094265 1.473286 -0.139525 0.201022 -1.690852 1.292049 -1.821979 -2.842176 -6.930832 -2.948033 6.133225 2.454541 -1.098996 -0.419746 4.208192 -3.093069 1.395652 7.397149 5.085945 1.505549 -6.334922 -16.505726 2.608343 0.578156 -1.621840 0.883061 -4.013531 -2.017979 3.377365 -4.610492 6.035069 -0.401605 -3.875899 6.688375 -8.359400 -6.464316 -5.888102 -2.852191 2.102408 -0.277694 1.391712 -3.504100 1.274419 -1.267148 1.177575 -3.349694 -4.317783 3.476732 4.313091 7.841266 0.449316 0.955700 7.315079 2.463106 -1.798040 -1.682437 0.195350 -4.559094 1.486769 -10.493605 -1.224233 2.403020 3.597513 -5.067950 0.998838 -1.352227 1.531082 0.614915 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 3.989568 -1.153080 -2.499254 7.699724 -0.359654 0.272041 1.726739 1.733475 0.235009 -11.914269 -5.859642 4.033990 1.531721 0.248917 0.622483 2.845283 1.960952 3.369089 -12.646154 0.119338 3.488374 0.825712 0.072345 -1.700871 0.106453 -2.906164 2.056177 2.026134 0.909833 7.456234 -2.091081 4.607992 6.385112 0.149770 1.897394 5.204724 -2.300342 -0.234313 -1.523119 -2.086028 8.790451 3.239438 -0.166387 2.951337 -1.032937 7.730157 1.513442 5.590696 1.181990 -3.355406 3.163412 -1.053848 -3.617942 -0.819641 -6.459011 1.027357 4.872508 4.019427 -2.131052 3.785417 -2.654783 1.921261 2.974082 -0.964561 8.510611 3.422917 5.711508 6.482247 6.666843 -5.278987 2.157718 0.149140 0.457533 -0.915326 4.440028 -5.438175 -4.059942 -5.029493 -1.141273 -10.602924 -0.259918 -0.167247 11.583729 -5.952246 -0.470192 0.965159 2.271918 7.518376 -3.489058 0.640376 -6.747277 0.012364 -1.437498 8.746269 1.224405 1.336164 -1.710963 2.372038 -0.010685 1.287957 1.131153 -5.826601 -1.929926 -11.631103 -3.651995 -4.388990 1.562116 2.642090 -7.794845 0.165115 0.304856 5.099824 -11.785731 -0.865744 2.195314 2.966196 4.062681 0.435270 -4.068099 0.056330 -0.283347 2.973978 3.492311 -4.985862 1.889828 -2.953689 -0.614459 1.134929 2.528091 1.495147 -8.335349 -3.108684 1.031968 -0.848467 1.090730 4.229734 4.333982 -1.248418 3.496993 -5.735632 6.149117 -8.911696 -1.079357 -2.808211 -6.226858 -3.606074 8.430862 5.799097 4.067607 -0.995750 -2.447716 -0.457874 -8.906106 -10.240029 1.149573 0.596347 1.849220 2.173216 -1.356252 1.672899 -5.580111 2.401436 3.401513 -3.108771 -2.892985 -0.320265 5.235300 0.910315 -2.857644 -3.392921 -0.288154 1.401723 0.227251 6.590769 -2.091282 -7.980956 -10.631894 -3.747569 6.678349 -3.557739 -0.025940 -3.682304 -1.387562 -4.752584 0.517431 -5.491930 0.766268 0.703325 -4.325895 -8.840217 2.494450 -1.247136 -1.467511 2.397801 -5.588269 1.032626 5.055972 3.497377 0.621894 1.248076 0.870621 -6.127852 -5.030292 0.990351 -4.149901 6.041936 4.624227 -0.207391 -5.199536 -2.630005 -5.389286 4.867974 -2.715641 3.912245 -1.176439 -2.472838 3.809590 -5.686000 1.144817 -5.364219 2.041122 1.044555 -12.854915 8.551645 5.295675 -4.612277 -0.379198 -3.077808 3.404040 0.785661 4.516430 -4.617898 -4.312228 1.604356 -1.443847 0.010748 -2.727289 1.906252 -2.177001 -1.270359 -6.305083 -2.159290 6.345209 2.944989 -1.098933 1.569914 3.823422 -1.326267 1.662585 6.869204 4.092113 -0.459900 -5.542803 -14.762467 2.777061 2.491412 -0.204574 -0.081855 -3.620667 -2.654099 2.432820 -1.915614 6.013377 3.743038 -2.923874 6.245836 -7.319188 -6.551491 -5.190301 -0.483161 2.250197 -1.541742 0.361920 -2.906628 1.589513 0.262154 1.935296 -0.267757 -5.551886 -1.139851 3.060839 7.942502 0.556352 -0.849187 7.517499 1.613289 -2.128154 -1.232969 -0.358550 -2.747430 1.350815 -6.617877 -1.360589 1.310637 3.415812 -5.216954 2.820790 -1.024457 1.117459 1.857274 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp___GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = 8.809799 -7.041970 -11.502508 21.440755 -1.415866 3.413602 1.464286 -1.813252 0.243852 -27.029575 -10.880922 18.132433 5.726250 4.576461 -1.011685 9.786012 4.060904 4.103266 -25.128580 -1.441596 4.385463 -2.765202 -2.979987 -1.011306 -0.920843 -7.247183 18.259736 3.944462 1.947275 15.641591 -3.580577 15.229510 14.048428 -1.470479 4.851735 8.806018 -7.393204 -0.819730 -12.056228 -7.898264 19.846618 4.727026 1.896284 6.568520 -6.883896 16.706939 7.510210 16.773140 9.423084 -6.939277 8.866296 8.239932 -7.020563 -2.726852 -17.856387 0.885593 4.021656 3.989852 -3.337333 5.253020 -5.189039 4.668632 7.039024 4.415497 22.805364 3.771981 19.584614 16.846187 11.812972 -13.028311 6.272327 1.279404 -0.797464 -0.723473 18.024643 -13.030911 -13.470284 1.350432 -2.274027 -18.069066 -0.465571 0.116205 25.323184 -12.013965 -8.205423 -5.031976 7.275034 20.010201 -8.489905 6.534733 -16.856676 -1.172275 -1.645507 20.313245 4.939320 4.456882 -5.502391 4.905879 -3.289449 1.772889 5.146227 -15.376884 6.194604 -22.005820 -9.039603 -11.621227 4.900158 8.352673 -17.776278 3.038711 -8.434039 11.738337 -25.442912 -2.617492 2.798710 5.334961 22.376112 1.568493 -5.251849 0.041532 3.226211 7.719987 8.630045 -7.948151 7.607744 -3.263940 2.726038 2.149121 6.271900 6.552414 -22.923807 -6.821780 4.310631 -0.651852 5.090159 11.287563 14.436521 -1.995241 7.721391 -10.053615 12.845261 -19.711104 -5.591034 -6.713639 -14.638145 -9.591962 17.495171 13.754890 14.884728 -5.156019 -6.118915 0.963568 -23.330186 -27.109222 -0.525571 2.789720 -4.524808 8.756253 -3.275850 7.663595 -15.152492 8.420769 14.831468 -7.375709 -10.398716 0.040265 3.794512 5.163467 -5.830044 -4.049909 -2.677157 -6.073179 4.741265 22.346370 -0.985312 -33.229508 -28.951116 -6.338705 14.861463 -8.975632 -0.611029 -8.907318 -8.282707 -11.249965 -2.806750 -12.360704 1.013421 2.692278 -9.478396 -19.928175 6.107124 -1.164422 -4.088360 5.309817 -15.242335 3.360761 11.976653 4.241435 1.408712 3.512879 -0.047222 -12.063220 -9.243221 8.013555 -12.218499 15.415637 8.750831 -2.507898 -10.496585 -7.883608 -13.020525 7.204997 -10.380500 12.030622 0.623167 -5.977514 3.971860 -16.829859 4.142444 -7.343540 4.295776 0.918091 -31.254395 21.122301 13.372246 -9.657072 1.722700 -0.963181 9.409901 -2.108474 6.994701 -13.159115 -10.207440 1.555452 1.601008 0.476287 -1.542716 2.530107 -4.969032 -9.313678 -14.990806 -6.598138 14.381150 4.694152 -1.644572 -1.653631 8.012805 -10.268434 3.078898 15.346103 11.150408 1.860734 -12.213231 -37.489423 5.316375 -2.435851 -6.767744 0.795313 -9.717669 -3.568668 6.982173 -11.826944 12.203578 -3.030617 -10.130772 14.047482 -20.197866 -14.310989 -15.492649 -5.886548 2.555262 1.248346 2.610644 -7.344459 2.925804 -1.929723 3.785495 -9.587399 -10.277042 9.351907 9.635177 17.161656 -0.900775 1.705856 16.207783 6.305541 -1.625428 -5.943432 -0.084812 -11.680631 4.617563 -23.604891 -2.762145 6.506851 8.656153 -12.504444 0.469797 -2.192068 3.882656 1.536144 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 2.075571 -1.495474 -2.075817 4.730021 -0.170140 0.629262 0.613098 0.044898 0.088630 -6.429479 -2.768895 3.433672 1.158098 0.876258 0.038307 1.957586 1.012105 1.258938 -6.079507 -0.300062 1.277931 -0.322993 -0.420641 -0.401511 -0.174501 -1.705447 3.143249 1.138138 0.510057 3.866355 -0.992521 3.098009 3.398145 -0.207035 0.986416 2.387119 -1.111656 -0.178311 -2.285928 -1.594687 4.871326 1.152067 0.172526 1.604459 -1.282142 4.081099 1.381227 3.947485 1.723265 -1.747453 2.142627 0.702416 -1.756531 -0.621639 -4.077134 0.463534 1.686395 1.571991 -1.000682 1.596597 -1.297437 1.082143 1.634210 0.458064 5.018956 1.330756 4.042277 3.775053 3.172927 -3.229809 1.234239 0.378681 -0.005459 -0.201366 3.532312 -2.993001 -2.634181 -1.248677 -0.412025 -4.624087 -0.240656 -0.061241 5.957306 -3.011762 -1.408558 -0.268376 1.416090 4.472188 -2.021081 1.304363 -4.016954 -0.177647 -0.237606 4.867545 1.064815 0.827464 -1.116545 1.223106 -0.432124 0.702841 1.115941 -3.410858 0.317418 -5.705719 -2.297313 -2.569719 0.992464 1.736443 -4.234378 0.418268 -0.846336 2.610746 -6.077494 -0.586882 0.937064 1.570823 4.200449 0.402063 -1.599972 -0.016887 0.561480 1.603637 2.044853 -2.153794 1.606521 -1.117830 0.450619 0.542478 1.446208 1.202155 -5.024256 -1.665694 0.868353 -0.259945 0.996344 2.323321 2.976383 -0.626636 1.911727 -2.618395 3.153123 -4.725312 -1.036916 -1.499238 -3.458170 -2.139024 4.596749 3.062559 3.152260 -0.834120 -1.738982 -0.010552 -5.154959 -6.352802 0.116443 0.679635 -0.275381 1.816713 -0.835977 1.554608 -3.335554 1.618122 2.864473 -1.782718 -2.187883 0.015613 1.371187 0.884685 -1.412490 -1.458389 -0.278587 -0.514334 0.676683 4.667021 -0.554238 -6.605921 -6.355966 -1.814585 3.581952 -2.017343 -0.064537 -1.950876 -1.605239 -2.912007 -0.241200 -2.882463 0.317429 0.577358 -2.546707 -4.830666 1.504502 -0.452187 -0.978401 1.459244 -3.543988 0.741413 2.501043 1.229167 0.373863 0.739158 0.160255 -3.153000 -2.593191 1.245994 -2.613292 3.638998 2.097107 -0.361637 -2.446529 -1.828237 -2.972015 2.135679 -2.405977 2.567644 -0.079605 -1.439825 1.349408 -3.708891 0.647001 -2.226815 1.155312 0.514753 -6.905194 5.060422 3.112805 -2.373869 0.046481 -0.751794 2.015228 -0.089356 2.192065 -3.024086 -2.357357 0.662159 0.131737 0.044079 -0.770005 0.816541 -1.099800 -1.640670 -3.614703 -1.609641 3.231153 1.480842 -0.444907 0.147596 2.131194 -1.673827 0.626268 3.793769 2.435672 0.123490 -2.783000 -8.476013 1.513564 0.135679 -1.169289 0.238794 -2.512711 -1.007418 1.628933 -2.030970 3.032609 0.352180 -1.901014 3.463407 -4.475538 -3.473754 -3.220742 -1.091798 0.821426 -0.196965 0.637943 -1.748121 0.763902 -0.285488 0.841934 -1.611987 -2.477468 1.085149 1.938246 4.067365 -0.075139 0.186533 4.023286 1.261655 -0.740794 -1.112993 -0.137923 -2.178338 1.076207 -4.683611 -0.643719 1.238682 1.972800 -2.910738 0.620714 -0.553567 0.606368 0.657143 -PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.925946 0.182237 -1.134267 1.950707 -0.506534 -0.256948 0.521479 1.301106 -0.174574 -3.967968 -3.153227 -0.393604 0.704784 -0.281974 1.520175 1.434139 0.449147 0.761243 -4.596302 0.471739 1.793225 -0.027219 -0.428091 0.385577 0.124244 -1.248583 -2.933596 0.109667 -0.088750 2.695746 -0.945895 1.890586 2.160391 -0.407499 0.194273 1.551205 -1.491685 -0.378437 1.598386 0.515104 2.985787 1.063372 -0.486739 0.240420 -0.192444 2.549482 -2.409939 3.976861 -1.378940 -1.379190 3.087461 -2.837586 -1.301505 1.417172 -1.664416 0.771161 3.159690 1.451717 -0.677071 1.447361 -2.099169 1.084461 1.023873 -1.275876 3.294081 3.026094 1.793345 1.991872 2.696344 -1.073322 1.178150 -0.228186 -0.388874 -1.169556 -0.188416 -1.361112 0.499893 -3.369955 0.403255 -3.720775 -0.125053 -0.754659 4.763183 -2.404774 -0.059070 1.337645 1.259481 2.986208 -1.815314 1.033572 -1.932640 0.310278 -0.445707 2.797318 -0.348197 0.637047 -1.378566 0.864740 -0.142637 0.190391 -0.788258 -1.159502 -4.108099 -4.107940 -2.715548 -0.573005 0.195579 0.852060 -4.226961 0.257694 2.192487 0.554624 -4.203614 0.140900 0.779422 1.557029 0.654632 4.273606 -3.902825 -0.972822 -0.257493 1.529718 0.874046 -0.599803 1.127852 -4.182206 -0.118595 0.903331 0.828978 -0.220425 -3.390816 -0.237085 0.414902 -1.497441 0.116686 1.794964 1.750119 -0.343775 1.571127 -1.852797 1.666872 -4.404070 -0.972246 -1.805501 -2.956126 -0.613337 3.630676 3.877762 0.965381 0.880074 -1.549787 -0.732651 -3.987206 -2.606844 -0.824544 -0.638556 2.030540 -0.191163 -0.332267 0.033895 -1.037454 0.975989 -0.003640 -1.504145 -0.627010 -1.102488 4.549629 0.086404 -1.151845 -2.076512 -0.510440 1.131561 -2.052513 1.472337 -0.179921 -0.246588 -3.891536 -1.533984 2.277179 -0.788675 0.956520 -1.741468 0.949635 -3.119458 0.216024 -1.372703 -0.712191 0.546311 -1.742072 -2.929901 0.659107 0.130253 -1.629013 -0.075678 -1.986118 0.243478 3.102345 2.119843 1.059744 0.552519 -0.385975 -2.182943 -2.818817 -0.508332 -1.488508 2.415167 3.180195 -0.460229 -0.859442 -0.827157 -2.695743 2.617852 -1.729834 0.810714 -0.569259 -0.726701 1.542126 -2.267161 -1.362290 -2.727446 0.488259 -0.496726 -4.525847 2.879934 1.247401 -1.895182 -0.198906 -3.124169 2.026221 0.667650 2.330574 -0.527249 -0.083112 0.126068 -0.195954 -0.252234 -0.940153 1.463759 -1.474612 0.018495 -1.675129 -0.303100 2.672446 1.715889 -0.503829 1.211210 0.891511 0.762923 1.930298 1.417707 1.056341 -2.327978 -1.008102 -5.106580 0.613679 1.312149 -0.580636 -0.178124 -1.987756 -1.171185 -0.034318 -0.153068 2.458517 1.816743 0.786915 2.003839 -2.012737 -2.374352 -1.475994 1.249353 0.008994 -1.005404 -0.074634 -0.618212 0.486606 1.376592 1.277709 1.204981 -3.547343 -3.630578 0.261989 3.094720 -0.253897 -0.888563 2.608257 0.842747 -0.603733 -0.699605 -0.264782 -0.163839 0.454972 -0.825959 -0.577316 -0.021693 0.560460 -2.069115 1.718870 -0.038902 0.140967 1.171283 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = 0.315903 -0.185403 -0.646026 1.659679 0.026649 0.427703 0.065125 -0.598079 0.056289 -1.947436 -0.714047 0.705697 0.396968 0.675166 0.151439 0.682168 0.298446 0.014584 -1.021217 -0.150948 0.505793 -0.351482 0.036126 0.621150 -0.002052 -0.656521 0.921365 0.011311 0.258936 1.233689 -0.340824 1.131804 0.925258 -0.262024 0.253196 0.539659 0.192452 -0.083735 -1.098458 -0.135460 1.281855 0.219303 -0.326894 0.017123 -0.672493 1.241613 0.135006 1.426787 1.044143 -0.769993 0.530832 -0.231800 -0.293839 -0.171835 -0.967422 0.383465 0.351808 0.622902 -0.502355 0.062173 -0.123441 0.434607 0.463405 0.391965 1.262559 0.562340 1.145226 1.247704 1.007969 -1.041155 0.172610 0.077988 -0.406334 0.158800 1.065993 -0.519574 -0.701333 -0.368601 -0.061822 -0.265259 -0.690726 -0.413487 0.703071 -0.870020 -0.410915 -0.022617 0.163997 1.278788 -0.552231 0.680712 -1.269894 0.000617 0.573390 1.109984 0.136641 -0.162368 -0.549668 0.298139 -0.075598 0.310194 0.653673 -1.034152 -0.453398 -0.854334 -0.973932 -0.811637 0.232947 0.657309 -1.309742 0.076303 -0.423836 0.466816 -1.762789 0.038836 0.475310 0.740444 1.976528 0.701736 -0.516906 -0.011732 0.655091 0.183990 0.716217 -0.169961 0.697170 -0.299217 0.474840 0.152153 0.278232 0.175736 -1.406980 -0.185005 0.397099 0.353849 0.230128 0.477908 1.004180 -0.288175 0.759185 -0.578968 0.728426 -1.376817 -0.658981 -0.179686 -1.072340 -0.687634 1.636805 0.912986 1.127411 -0.318235 -1.019959 -0.189756 -1.760564 -1.589011 -0.254060 0.252957 -0.198990 0.884681 -0.216463 0.557939 -0.950232 0.655259 0.991912 -0.263274 -0.686435 0.134764 -0.104396 0.071263 -0.081968 -0.614411 -0.248838 -0.569594 0.047055 1.516203 -0.004937 -1.723525 -2.054585 -0.615770 1.071487 -0.638162 0.183148 -0.731080 -0.504014 -1.455353 -0.303673 -0.847988 -0.122225 0.229649 -0.887517 -1.431257 0.595606 -0.192215 -0.599675 0.455746 -1.361517 0.095756 0.473293 0.168544 0.642738 -0.206040 -0.276335 -0.804679 -0.776273 0.502448 -0.976526 1.193157 0.485731 -0.304175 -0.086754 -0.776863 -0.987976 0.555928 -1.280484 0.569755 0.274664 -0.040915 0.152486 -1.270057 -0.164972 -0.566040 0.361992 0.317880 -0.812343 1.206500 1.047005 -0.634757 0.031176 0.138960 0.641053 0.168797 0.858113 -0.922801 -0.733729 0.083940 0.392872 -0.058845 0.226027 0.275987 -0.399453 -0.566892 -0.892763 -0.441205 0.648884 0.708068 -0.200046 0.063352 0.642131 -0.665727 0.052720 0.805755 0.715896 0.088697 -0.524852 -1.674930 0.536015 -0.639623 -0.568297 0.012473 -1.301970 -0.044512 0.684207 -0.719352 1.001117 -0.565951 -0.264921 1.134350 -1.557241 -0.885589 -0.851113 -0.679063 -0.086775 0.218450 0.459857 -0.317234 0.432483 0.020776 0.118859 -0.872360 -0.798577 0.530645 0.535693 1.037992 -0.495647 0.308755 1.212256 0.198997 -0.110033 -0.224528 0.197989 -0.681548 0.297589 -1.513691 -0.128219 0.469822 0.425314 -0.773287 -0.081893 -0.584695 -0.217605 0.151014 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = 0.315903 -0.185403 -0.646026 1.659679 0.026649 0.427703 0.065125 -0.598079 0.056289 -1.947436 -0.714047 0.705697 0.396968 0.675166 0.151439 0.682168 0.298446 0.014584 -1.021217 -0.150948 0.505793 -0.351482 0.036126 0.621150 -0.002052 -0.656521 0.921365 0.011311 0.258936 1.233689 -0.340824 1.131804 0.925258 -0.262024 0.253196 0.539659 0.192452 -0.083735 -1.098458 -0.135460 1.281855 0.219303 -0.326894 0.017123 -0.672493 1.241613 0.135006 1.426787 1.044143 -0.769993 0.530832 -0.231800 -0.293839 -0.171835 -0.967422 0.383465 0.351808 0.622902 -0.502355 0.062173 -0.123441 0.434607 0.463405 0.391965 1.262559 0.562340 1.145226 1.247704 1.007969 -1.041155 0.172610 0.077988 -0.406334 0.158800 1.065993 -0.519574 -0.701333 -0.368601 -0.061822 -0.265259 -0.690726 -0.413487 0.703071 -0.870020 -0.410915 -0.022617 0.163997 1.278788 -0.552231 0.680712 -1.269894 0.000617 0.573390 1.109984 0.136641 -0.162368 -0.549668 0.298139 -0.075598 0.310194 0.653673 -1.034152 -0.453398 -0.854334 -0.973932 -0.811637 0.232947 0.657309 -1.309742 0.076303 -0.423836 0.466816 -1.762789 0.038836 0.475310 0.740444 1.976528 0.701736 -0.516906 -0.011732 0.655091 0.183990 0.716217 -0.169961 0.697170 -0.299217 0.474840 0.152153 0.278232 0.175736 -1.406980 -0.185005 0.397099 0.353849 0.230128 0.477908 1.004180 -0.288175 0.759185 -0.578968 0.728426 -1.376817 -0.658981 -0.179686 -1.072340 -0.687634 1.636805 0.912986 1.127411 -0.318235 -1.019959 -0.189756 -1.760564 -1.589011 -0.254060 0.252957 -0.198990 0.884681 -0.216463 0.557939 -0.950232 0.655259 0.991912 -0.263274 -0.686435 0.134764 -0.104396 0.071263 -0.081968 -0.614411 -0.248838 -0.569594 0.047055 1.516203 -0.004937 -1.723525 -2.054585 -0.615770 1.071487 -0.638162 0.183148 -0.731080 -0.504014 -1.455353 -0.303673 -0.847988 -0.122225 0.229649 -0.887517 -1.431257 0.595606 -0.192215 -0.599675 0.455746 -1.361517 0.095756 0.473293 0.168544 0.642738 -0.206040 -0.276335 -0.804679 -0.776273 0.502448 -0.976526 1.193157 0.485731 -0.304175 -0.086754 -0.776863 -0.987976 0.555928 -1.280484 0.569755 0.274664 -0.040915 0.152486 -1.270057 -0.164972 -0.566040 0.361992 0.317880 -0.812343 1.206500 1.047005 -0.634757 0.031176 0.138960 0.641053 0.168797 0.858113 -0.922801 -0.733729 0.083940 0.392872 -0.058845 0.226027 0.275987 -0.399453 -0.566892 -0.892763 -0.441205 0.648884 0.708068 -0.200046 0.063352 0.642131 -0.665727 0.052720 0.805755 0.715896 0.088697 -0.524852 -1.674930 0.536015 -0.639623 -0.568297 0.012473 -1.301970 -0.044512 0.684207 -0.719352 1.001117 -0.565951 -0.264921 1.134350 -1.557241 -0.885589 -0.851113 -0.679063 -0.086775 0.218450 0.459857 -0.317234 0.432483 0.020776 0.118859 -0.872360 -0.798577 0.530645 0.535693 1.037992 -0.495647 0.308755 1.212256 0.198997 -0.110033 -0.224528 0.197989 -0.681548 0.297589 -1.513691 -0.128219 0.469822 0.425314 -0.773287 -0.081893 -0.584695 -0.217605 0.151014 -PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 8.773456 -1.449438 -6.225532 15.873519 -0.314649 -1.378621 3.027733 3.294736 1.255678 -22.829394 -10.433176 13.214621 3.307119 -1.204477 -0.277739 5.731339 4.535373 8.272015 -25.729969 1.304760 5.828457 1.636782 -2.942966 -5.301564 -0.107504 -5.208268 6.518741 4.610489 1.951735 15.186113 -5.178347 8.444673 12.547193 0.283820 6.255938 10.917082 -4.661943 -0.807311 -3.577813 -5.197102 19.240348 7.932462 -0.424693 7.307014 -0.326965 16.160903 3.896893 9.300710 2.515233 -6.009959 4.038664 4.042173 -7.108301 -2.520034 -14.936378 2.511306 9.071078 6.322516 -6.242045 7.788216 -2.680642 3.925007 6.942243 0.103067 17.982719 5.892769 10.284334 13.937832 14.903685 -9.886336 4.995949 -1.247454 3.430465 -2.204688 12.006677 -9.205031 -10.456051 -7.697626 -2.588297 -22.813580 1.046436 0.058363 21.571718 -13.018370 1.246844 1.265241 6.178084 15.793936 -7.582126 -1.470817 -14.535142 -0.601710 -4.359715 20.988337 3.123556 4.327758 -3.401818 6.300176 -0.798724 2.424479 1.865679 -14.322540 0.197512 -25.677319 -7.794537 -10.373506 0.820735 4.222457 -15.030196 -0.267751 0.244578 12.731005 -24.719176 -1.974423 3.541691 2.930060 6.919584 -4.789927 -6.416840 2.331116 -3.056675 5.019753 4.934922 -9.420949 2.191007 -2.652898 -2.324185 2.410618 5.688289 4.440773 -17.481377 -4.850958 3.365783 -1.558683 1.268038 8.818816 7.528784 -4.639099 6.444551 -12.722898 12.554935 -16.461012 -2.172176 -6.080027 -11.561453 -7.693075 11.249043 8.799646 8.230257 -3.054312 -3.183408 -0.460735 -19.374984 -24.405459 5.176878 0.223536 1.218909 3.839825 -2.883269 2.108275 -12.475426 2.926207 9.525585 -8.047440 -6.947949 -1.682234 13.413440 1.758058 -5.834200 -4.826983 -1.483983 3.107814 3.981303 13.026592 -5.880783 -17.147871 -22.164926 -6.899039 13.897535 -7.458364 -0.423974 -6.941329 -4.017471 -9.524625 0.941441 -11.693704 3.129979 -1.417196 -5.182141 -18.199434 4.103985 -2.809236 -1.447307 3.536628 -12.880661 4.066168 9.826295 3.903149 -0.832937 2.003168 3.198009 -11.754460 -9.058132 4.277109 -6.372806 11.777767 10.015639 0.953150 -10.955908 -5.021330 -11.244650 9.267550 -7.583883 9.383418 0.104440 -6.990738 8.788175 -11.606300 -0.016597 -9.273350 5.259003 1.385592 -20.868238 19.110841 10.871466 -10.994550 0.116963 -4.998217 7.669577 1.486977 10.220681 -11.494325 -9.668899 4.117657 -3.400858 -0.310447 -5.184776 3.962223 -3.573731 -0.145723 -14.261404 -3.994359 13.362105 6.268891 -2.013987 3.340151 5.500628 -6.023224 2.229246 14.939339 8.819462 2.677659 -12.970507 -27.350542 5.204568 -1.350294 1.468026 -0.724328 -5.580298 -5.506099 4.216087 -3.309074 12.897310 4.255625 -8.202618 12.770300 -17.840028 -14.558733 -10.923273 -1.726073 5.406932 -2.891063 2.735194 -6.480829 2.664601 -1.370932 6.103261 -1.999719 -9.798124 0.610031 7.846431 14.710208 1.359606 -4.176419 15.819716 2.765813 -4.875828 -1.937956 -2.277125 -5.705352 2.419619 -15.054888 -3.290565 1.963335 8.106289 -11.664375 7.417515 -2.329981 4.721034 3.407600 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/graph-coloring.cpp__main = 10.569060 0.578099 -5.302602 15.200302 2.023621 -2.328671 2.953321 5.803947 -1.569560 -18.211903 -8.258008 9.843876 1.591270 -1.738473 3.441024 5.408647 5.698696 6.610095 -23.449480 1.608688 1.898925 -0.429814 -4.542177 -7.083689 0.530911 -1.338281 4.520838 7.773052 1.859229 13.767757 -6.252047 6.132761 9.583702 2.116106 8.526867 6.790552 0.633719 -0.072704 -5.407416 -4.113702 20.045192 6.400345 -1.757547 8.458500 2.720329 15.681204 3.209467 10.597066 0.672079 -2.360681 6.544085 -0.069353 -5.954767 -1.555238 -15.634409 1.693207 11.739426 6.921731 -7.760194 9.529809 -2.243098 4.714996 6.175533 -1.373330 17.476058 5.926852 10.390218 11.797113 15.188397 -9.988352 3.162739 -2.048122 7.674239 -1.420760 4.780689 -11.842326 -6.710115 -16.628884 -0.188375 -22.750468 1.559950 -2.017126 19.215931 -11.981544 2.116831 4.872902 2.406182 12.559658 -10.871596 -0.722086 -13.466329 -2.205026 -3.447469 21.674332 2.362590 3.681072 0.329784 5.659659 1.245491 4.711986 2.249757 -12.623871 -1.748049 -23.549494 -10.686816 -3.810894 -1.040037 -0.201781 -10.266310 -1.344005 4.662175 7.712881 -21.017872 -5.044483 4.080097 2.623134 4.227209 -1.608342 -7.357624 2.500530 -2.849019 6.969125 6.645273 -10.018405 2.774606 -4.342394 -3.590396 3.263151 7.949687 4.382735 -14.388226 -3.624288 4.079380 -2.125631 -0.169755 2.791237 1.657585 -5.953180 6.998100 -11.493622 13.122520 -16.413989 -4.032583 -5.310804 -10.022826 -5.843138 11.493068 6.470886 8.715867 3.004361 -4.102267 0.675893 -15.743920 -23.168177 7.104987 1.728803 1.351928 2.325669 -2.486657 1.834937 -11.062995 -1.858991 10.683968 -8.842800 -9.814560 -4.740337 12.264334 1.498425 -6.140398 -6.999218 2.692067 7.240647 4.908649 10.715309 -6.528586 -17.524219 -15.974423 -6.514814 13.268750 -6.524035 -0.517563 -2.616965 -1.806144 -12.835458 1.701077 -13.036701 5.284821 -1.087268 -6.639031 -15.844742 6.092027 -2.930807 1.418213 3.668374 -11.263024 4.765444 5.796149 6.573937 -3.294288 3.829407 5.042954 -13.028678 -13.512120 0.751798 -3.081362 12.609710 4.989051 3.390191 -9.176130 -3.303869 -9.651884 10.679145 -8.780211 7.816296 -0.212416 -5.601605 8.991149 -9.654036 -3.375438 -8.746183 6.146034 2.760454 -16.188451 17.410786 11.648336 -12.361507 -3.014446 -8.300452 7.447278 1.854805 14.812879 -11.023430 -9.131060 4.477704 1.475242 -0.978145 -6.828039 4.987245 -0.461785 -0.903100 -15.104467 -5.899294 11.938787 8.501558 -0.705959 4.448835 5.470505 -2.741326 -2.684325 17.418367 5.139156 2.760284 -8.820985 -24.267490 2.674463 4.111574 1.493810 1.266799 -7.561330 -5.870514 1.035783 -1.779970 12.192107 7.126310 -6.290719 12.578609 -13.832164 -13.594874 -11.129930 1.071587 4.636020 -6.542457 3.112090 -6.991856 1.661458 -1.311323 5.761553 -0.610474 -6.588149 -3.152285 2.593914 11.555049 -0.317764 -4.847983 16.025197 2.682420 -5.664344 -1.283419 -2.348488 -3.919047 7.579765 -13.323655 -3.832637 -0.609600 6.903788 -10.906549 6.075767 -0.285718 4.552939 4.254153 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = 0.979863 0.177745 -0.271754 1.212716 0.072547 -0.219517 0.392583 0.456178 -0.406868 -1.913561 -0.639717 1.385518 0.034971 -0.147667 -0.129824 0.615674 0.591987 0.512816 -2.906152 0.180781 0.416495 -0.004301 -0.295067 -0.522081 0.099089 -0.734466 0.722057 0.913425 0.103500 1.351298 -0.768121 0.682332 1.001317 0.293480 1.016842 0.981431 -0.542823 -0.344535 -0.294506 -0.591694 1.917800 0.822530 -0.376899 0.404260 0.327695 1.654790 0.484546 0.133214 0.316253 -0.439583 -0.081437 0.948732 -0.871745 -0.174701 -1.577145 -0.132922 0.494174 0.780746 -0.750957 0.738289 -0.702668 0.434524 0.558471 0.163262 1.778822 -0.040291 1.150434 1.097637 1.289387 -1.013211 0.320187 0.071113 0.501371 -0.081418 0.713856 -0.354231 -0.727363 -2.177649 -0.021908 -3.146931 -0.049265 0.116443 2.131053 -0.958541 0.162178 0.192402 0.484216 1.459568 -0.982218 -0.162704 -1.541959 -0.001288 -0.236929 2.260746 0.313003 0.275526 0.089817 0.642510 -0.006998 0.496196 0.113869 -1.488677 -0.013783 -2.639476 -0.716386 -1.070126 0.011328 0.011110 -1.198446 0.202902 1.438506 1.885044 -1.983254 -0.201642 0.425349 0.074027 0.058266 -0.510420 -0.458879 0.387806 -0.512317 0.712143 0.870368 -0.819558 0.270257 0.141388 -0.011784 0.225091 0.805823 0.480700 -1.986639 -0.453400 0.920224 -0.441385 -0.023295 0.675036 0.499232 -0.255988 0.614233 -1.402561 1.384088 -1.280831 0.358994 -0.716099 -0.466171 -0.706716 0.617085 1.648367 0.229230 0.099646 0.119600 0.303444 -1.633904 -2.117030 0.522235 0.067849 -0.060577 -0.025153 -0.267809 0.323457 -1.035156 0.038625 0.653347 -0.901627 -0.796308 -0.384271 1.344061 0.394274 -0.520306 -0.446954 0.045001 0.407691 0.394480 1.075223 -0.851247 -1.834105 -1.854219 -0.878101 1.271612 -0.793511 -0.279874 -0.457341 -0.504230 -0.285867 0.426472 -1.073056 0.436171 -0.408715 -0.405052 -1.608208 0.583584 -0.414472 -0.567808 0.200371 -1.157454 0.406286 0.587909 -0.257442 -0.066918 0.032509 0.526981 -0.903439 -0.691117 0.380027 -0.427653 0.922363 1.109825 0.118091 -1.454177 -0.498402 -0.942996 1.092503 -0.686488 0.992880 0.076432 -1.200998 1.066687 -0.914807 0.145567 -0.235033 0.795654 0.135354 -1.964913 2.134135 1.654136 -1.417754 -0.279845 -0.723780 0.673468 0.384792 1.119177 -1.134293 -0.630596 0.230973 -0.117246 -0.049646 0.082483 0.494059 -0.045080 0.002144 -1.533232 -0.668146 1.307440 0.738359 -0.060188 0.178369 0.402228 -0.303234 0.119524 1.481350 0.517452 0.605745 -1.122695 -2.517329 0.455649 -0.224321 0.187755 0.359818 -0.364385 -0.734351 -0.038784 -0.442121 1.336272 0.003818 -1.381780 1.161563 -1.424035 -1.340644 -1.402081 -0.307728 0.209752 -0.370476 0.844123 -0.622755 -0.082144 -0.494486 0.643480 -0.412285 -0.429516 0.058718 0.729479 1.025870 0.915527 -0.833653 1.444748 0.238633 -0.564485 -0.413049 -0.103641 -0.559477 0.584464 -1.238555 -0.406913 0.039705 0.797579 -0.993741 0.593461 0.311371 0.741676 0.325813 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = 0.189053 -0.218197 0.088020 0.345692 0.272683 -0.016122 0.049397 -0.001506 -0.089737 -0.583898 -0.278892 -0.099005 -0.051711 -0.062486 0.197263 0.091031 0.314708 0.029717 -0.389300 0.079211 0.050529 -0.146347 -0.146949 0.079822 -0.007948 -0.333272 0.026710 0.316104 -0.005514 0.305485 -0.247842 0.180434 0.267827 0.086958 0.374859 0.318461 0.140159 -0.128570 -0.025358 0.064855 0.744706 -0.035478 0.014302 0.100429 0.262318 0.441282 -0.051825 0.430416 0.162117 -0.103087 0.373884 -0.315234 -0.033967 0.043538 -0.628883 0.133323 0.259371 0.107783 -0.418977 0.199331 -0.242055 0.138620 0.089755 -0.010220 0.555289 0.062287 0.269836 0.257822 0.414230 -0.286515 -0.088087 0.239748 0.278674 0.137703 -0.045110 -0.074395 0.062125 -0.733079 0.032099 -0.226147 0.076560 -0.092235 0.387593 -0.193120 -0.111491 0.325485 -0.128231 0.323365 -0.228008 -0.011516 -0.535673 0.041478 0.142937 0.257910 0.061724 -0.004166 0.067223 0.137169 -0.030938 0.319106 -0.038536 -0.373330 -0.411222 -0.858941 -0.511051 -0.179938 0.053973 -0.187818 -0.446575 0.007446 0.404344 0.256218 -0.372056 -0.003466 0.082022 0.127017 -0.063238 -0.028651 -0.287673 -0.207773 0.034954 0.239598 0.167361 -0.017668 0.097409 -0.528104 0.221753 0.058409 0.271164 -0.095936 -0.104143 -0.074942 0.110427 0.026192 -0.139437 -0.063357 0.045909 -0.207788 0.235880 -0.135932 0.364504 -0.421645 0.029295 -0.429192 -0.265266 -0.075770 0.743932 0.321620 0.345131 0.298634 -0.299600 0.038690 -0.441880 -0.701139 -0.001572 -0.085409 0.151806 0.038710 -0.091110 0.118350 -0.124717 -0.105324 0.124700 -0.313701 -0.195063 -0.173268 -0.097158 -0.011064 -0.157846 -0.315462 0.127909 0.411353 -0.141241 0.217660 -0.240141 -0.289973 -0.316865 -0.356811 0.258854 -0.181443 0.112221 0.021449 -0.021681 -0.476606 0.233415 -0.290732 0.003454 -0.239724 -0.318898 -0.404006 0.079664 -0.170832 -0.037681 0.087307 -0.333586 0.175779 0.029339 0.093534 0.100907 0.100136 -0.078135 -0.377487 -0.470895 -0.101177 0.006508 0.384679 0.219751 0.003586 -0.122371 -0.244646 -0.283799 0.341410 -0.353765 0.105294 0.248180 -0.437139 0.195784 -0.258883 -0.163322 -0.131164 0.222816 0.110470 -0.486830 0.460456 0.392097 -0.478239 -0.269453 -0.418175 0.190726 0.072567 0.569155 -0.111589 0.154391 0.120512 0.192345 -0.049469 -0.137767 0.219049 0.073375 0.118259 -0.573273 -0.420120 0.267263 0.377003 -0.018331 0.036338 0.109154 0.252952 -0.022014 0.560771 0.067102 0.119175 -0.192663 -0.700740 0.112090 0.257367 -0.001472 0.263802 -0.298957 -0.179193 -0.149552 -0.106033 0.442090 0.209166 0.069581 0.413344 -0.198257 -0.376425 -0.207779 -0.082772 -0.004416 -0.306093 0.270350 -0.296788 -0.065454 -0.216310 0.171128 -0.036194 -0.069272 -0.359462 0.033706 0.156186 0.185907 -0.051715 0.365183 0.099027 -0.217980 -0.097431 0.096026 0.049429 0.382211 -0.306723 -0.288454 -0.172740 0.083389 -0.188554 0.147230 -0.052446 0.232997 0.143330 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.637637 -0.220219 -0.058939 0.750600 0.325665 -0.361660 0.188805 0.394707 -0.200373 -1.214148 -0.546351 0.182280 -0.016892 -0.309446 0.270190 0.177640 0.467922 0.280525 -1.407818 0.309197 0.168003 -0.105648 -0.561699 -0.287807 -0.015714 -0.367208 -0.091113 0.648986 -0.003645 0.778708 -0.544590 0.230081 0.561133 0.170836 0.801967 0.686663 0.154665 -0.193118 0.094100 0.005648 1.525858 0.413192 -0.235946 0.264863 0.542821 0.978793 -0.022088 0.783185 -0.243889 -0.192502 0.437886 -0.428886 -0.304299 0.017926 -1.194690 0.217990 0.866526 0.519550 -0.783785 0.596725 -0.485928 0.269253 0.374174 0.042356 1.305336 0.281160 0.499028 0.639346 1.061280 -0.578649 0.031062 0.173867 0.666294 -0.072867 0.059368 -0.310268 -0.134924 -1.669307 0.136433 -1.307449 0.131922 -0.036531 1.168882 -0.629485 0.231607 0.632875 0.118961 0.714248 -0.768388 -0.182141 -1.067035 -0.018952 -0.090534 1.327627 0.026765 0.156633 0.153657 0.487637 0.090862 0.540835 -0.086067 -0.839715 -0.631109 -1.968422 -0.809702 -0.314020 -0.228256 -0.310099 -0.916539 -0.188012 0.968051 0.728750 -1.174888 -0.093867 0.195637 0.106323 -0.036909 -0.096972 -0.689296 -0.004538 -0.363931 0.383766 0.391452 -0.320707 0.101728 -0.685333 0.175904 0.252921 0.533016 0.104496 -0.959183 -0.026349 0.370785 -0.176838 -0.300795 0.038760 -0.046328 -0.508515 0.420733 -0.710742 0.853640 -1.072159 0.132711 -0.707100 -0.773882 -0.126752 1.012985 0.713736 0.402049 0.447800 -0.355146 0.117238 -1.096153 -1.742392 0.340997 -0.034399 0.298464 -0.176726 -0.162031 0.014673 -0.416397 -0.299815 0.479348 -0.716076 -0.473145 -0.442475 0.869383 0.062989 -0.394896 -0.465989 0.242942 0.969478 0.027781 0.446755 -0.658092 -0.704936 -0.971756 -0.612632 0.708084 -0.310853 0.007521 -0.034609 -0.045913 -0.959740 0.488924 -0.671791 0.350276 -0.485695 -0.388933 -0.963787 0.166370 -0.287889 -0.018710 0.045642 -0.648871 0.350744 0.228800 0.227899 -0.083933 0.184869 0.256586 -0.851953 -1.011426 -0.037171 0.147752 0.890879 0.587300 0.176557 -0.380664 -0.299178 -0.742307 0.848768 -0.726264 0.342791 0.258761 -0.807400 0.721548 -0.635813 -0.428587 -0.447519 0.532817 0.201650 -0.765468 1.340777 0.860179 -0.997995 -0.405208 -0.852525 0.440106 0.268287 1.223157 -0.484977 -0.098301 0.350173 0.119541 -0.159180 -0.349054 0.421079 0.052079 0.344973 -1.158296 -0.656669 0.643596 0.686899 -0.000271 0.266838 0.053131 0.101505 -0.247488 1.294534 0.201128 0.228548 -0.619923 -1.466119 0.292924 0.064053 0.185673 0.166789 -0.424018 -0.521662 -0.268991 -0.024900 0.928512 0.719980 -0.313405 0.827600 -0.873428 -0.909662 -0.588193 0.141085 0.150603 -0.649710 0.432217 -0.587015 0.008513 -0.268386 0.497153 0.089689 -0.311430 -0.793315 0.087292 0.443269 0.297104 -0.557692 0.937298 0.104491 -0.435906 -0.151317 0.035372 0.058316 0.611091 -0.581339 -0.505871 -0.365494 0.407658 -0.556446 0.598496 0.072631 0.462706 0.428415 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 2.108646 -0.453344 -0.871328 2.175214 0.379995 -1.521671 0.471067 1.335528 -0.310590 -2.894346 -1.065020 1.959098 0.066205 -1.085211 0.318517 0.525893 0.852532 0.976136 -3.891999 1.144606 0.090092 -0.019926 -2.128915 -1.496877 -0.006051 -0.014930 0.138605 1.365959 0.044310 2.020004 -1.480927 0.440327 1.170226 0.393058 1.996256 1.330496 0.197645 -0.350601 0.018698 -0.466847 3.629977 1.663149 -0.737779 1.110600 1.306212 2.337385 0.243463 2.415407 -0.583062 -0.181426 0.721042 -0.258938 -1.056506 0.013671 -2.906899 0.516532 2.289049 1.249709 -1.571524 1.563987 -0.920435 0.770274 1.223784 0.318427 3.648178 1.017588 1.183239 1.804013 2.927962 -1.281808 0.519809 -0.179543 2.338401 -0.459508 0.882315 -1.227420 -1.063713 -3.607938 0.125648 -3.993510 0.635655 -0.081949 3.618968 -1.933350 1.219244 1.083088 0.948904 1.755596 -2.367218 -0.442426 -2.516240 -0.108651 -0.851214 4.455830 -0.182736 0.852090 0.034161 1.279474 0.256024 0.959876 -0.071906 -2.194279 -0.570184 -4.998849 -1.660330 -0.495391 -1.348791 -0.823915 -2.389787 -0.477620 1.959918 2.328756 -3.534323 -0.702112 0.280142 -0.355989 0.716754 -0.043314 -1.558053 0.721293 -1.404879 1.028754 0.844690 -1.149676 0.066913 -1.101900 -0.241163 0.864812 1.443142 0.906050 -3.533443 0.158697 1.009664 -0.278966 -0.719756 0.294755 -0.421856 -1.462973 0.824627 -2.155960 2.069906 -2.903594 -0.182298 -1.533660 -2.165338 -0.138748 2.155403 1.619979 1.327039 0.874047 -0.290080 0.139611 -3.098225 -4.882515 1.471619 -0.152643 0.264924 -0.670194 -0.138614 -0.366870 -1.306458 -1.057832 1.974547 -2.022801 -1.475853 -1.396133 3.249374 0.111210 -1.017191 -0.968118 0.495497 2.507453 0.832015 1.101815 -1.700179 -3.004809 -2.966834 -1.124019 1.929415 -0.703338 -0.218560 -0.079324 -0.078750 -2.129541 0.912857 -1.724009 1.418981 -1.009541 -0.596106 -2.493990 0.307184 -0.526283 0.293702 -0.256602 -1.509196 0.993791 0.695137 0.989133 -0.807956 0.799261 1.262815 -2.465734 -2.711966 0.160674 0.652413 2.515450 1.490153 0.799945 -1.281987 -0.474990 -2.340047 2.170698 -2.753081 1.064630 0.453207 -1.573287 2.126177 -1.879156 -1.142669 -1.286651 1.431693 0.354511 -1.994136 3.797740 2.222665 -2.571880 -0.660654 -2.119386 1.404886 0.723736 3.263390 -1.792815 -0.884306 1.024477 0.155924 -0.559049 -1.085088 1.018332 -0.017412 0.808778 -2.745132 -1.274010 1.604607 1.367779 0.092835 0.370381 -0.260540 -0.775527 -1.128641 3.411596 0.692355 0.773084 -2.012054 -4.024104 0.556445 -0.458798 0.678892 0.299851 -1.103734 -1.409461 -0.541057 -0.272359 2.262214 1.280520 -1.278725 1.886808 -3.116337 -2.282922 -1.536409 0.669537 0.524570 -1.530456 1.273685 -1.492151 -0.033610 -0.362330 1.551772 -0.023476 -0.707957 -1.528056 0.291365 1.207312 0.553040 -1.929616 2.434822 0.310865 -1.067064 -0.210953 -0.186795 -0.151093 0.932360 -1.952405 -0.911354 -0.847574 1.321506 -1.706090 2.023210 0.478109 1.217978 0.851665 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.710884 -0.364373 0.040015 0.942520 0.397616 -0.439780 0.046023 0.270313 -0.248183 -0.871425 -0.363940 0.190720 -0.146095 -0.204987 0.391500 0.027945 0.333018 -0.150843 -0.961052 0.366780 -0.267848 -0.303748 -0.562114 -0.395213 0.052777 0.177798 0.201882 0.637700 -0.027580 0.509041 -0.641143 0.225291 0.152749 0.355207 0.796103 0.013180 0.216497 -0.165223 -0.346982 -0.224620 1.197060 0.190074 -0.244444 0.425799 0.520813 0.630282 0.008600 1.001667 0.029942 0.204845 0.718966 -0.489307 -0.120758 0.142254 -1.056718 0.251943 0.921280 0.202415 -0.425346 0.315195 -0.458574 0.395152 0.287622 0.124195 1.252092 0.393917 0.592376 0.549955 0.832273 -0.588024 -0.010285 0.138167 1.156111 0.129204 -0.392923 -0.443197 -0.114999 -1.443297 0.053285 -0.741383 0.288550 -0.287919 0.696094 -0.339145 0.090215 0.313632 -0.187351 0.381479 -0.948985 0.331125 -0.798604 0.044622 -0.134081 0.966534 -0.233893 0.177303 0.157264 0.246853 0.116843 0.587930 -0.116196 -0.517470 -0.198564 -1.534481 -0.823363 0.334611 -0.380997 -0.575201 -0.639025 0.074229 0.658812 0.285022 -0.565032 -0.583290 -0.117571 0.025573 0.164523 0.171089 -0.473379 -0.080920 -0.226174 0.603441 0.446775 -0.153259 0.295512 -0.951437 -0.034812 0.361165 0.798953 0.320806 -0.562583 0.028256 0.238602 -0.065759 -0.331302 -0.311433 -0.374602 -0.332621 0.262516 -0.290413 0.699166 -0.878255 -0.230364 -0.847204 -0.490802 0.313273 1.061444 0.442427 0.592370 0.873173 -0.220778 0.117181 -0.706213 -1.367452 0.292460 0.137807 0.007934 -0.269249 0.019372 0.152553 -0.295666 -0.627235 0.759366 -0.829449 -0.788256 -0.795120 0.167622 -0.019785 -0.352544 -0.439282 0.539878 0.949908 -0.120016 0.484559 -0.426866 -1.030009 -0.720007 -0.482179 0.488880 -0.247246 -0.092488 0.268352 0.252973 -1.074585 0.427658 -0.536124 0.474501 -0.177261 -0.633852 -0.731890 0.053386 -0.161927 0.279335 -0.021004 -0.439826 0.365200 -0.023342 0.633688 -0.192993 0.659158 0.338045 -0.865978 -1.274376 -0.282114 0.485165 0.999235 0.108264 0.216122 -0.239856 -0.400682 -0.635577 0.853703 -0.866662 0.226033 0.219429 -0.393381 0.453154 -0.505670 -0.526648 -0.323096 0.456058 0.310590 -0.570127 1.118010 0.718368 -0.952981 -0.537533 -1.199059 0.598734 0.084411 1.534856 -0.569974 0.045130 0.265505 0.685424 -0.320271 -0.485862 0.482203 0.219070 -0.058624 -0.899908 -0.817697 0.249385 0.466464 0.188656 -0.061578 -0.008923 0.133710 -0.515194 1.267215 0.143635 0.181847 -0.433020 -1.262989 0.016895 0.522855 0.077478 0.431242 -0.810684 -0.661611 -0.448447 -0.004225 0.795077 0.499401 -0.024134 0.677103 -0.566743 -0.485746 -0.480486 0.216424 -0.117602 -0.763110 0.518168 -0.646920 -0.238856 -0.032693 0.342222 -0.148553 0.066747 -0.816196 -0.312877 0.219471 0.073515 -0.330361 0.648981 0.457104 -0.491074 -0.154265 0.220647 -0.148624 0.503647 -0.646905 -0.366381 -0.371279 0.204468 -0.417701 0.403357 0.377966 0.317931 0.058950 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.104922 0.054820 -0.383003 1.386145 0.185338 -0.774232 0.202620 0.537517 -0.457325 -1.352804 -0.544480 1.127439 -0.020093 -0.484272 0.152459 0.249597 0.379214 0.224457 -1.919101 0.562135 -0.155653 -0.290987 -1.038479 -0.787859 -0.026969 0.077199 0.380042 0.956699 -0.075985 1.011732 -0.771723 0.378916 0.467100 0.401278 1.119393 0.442004 -0.072948 -0.212353 -0.342426 -0.425732 1.670375 0.704271 -0.354982 0.577050 0.652319 1.197018 0.221969 0.790074 -0.320603 0.075906 0.362288 0.368671 -0.534192 -0.028632 -1.426994 0.093046 0.933340 0.344788 -0.608345 0.710288 -0.753740 0.445753 0.603859 0.350335 1.873067 0.442635 0.846486 0.984097 1.376141 -0.814239 0.220151 0.023494 1.354173 -0.105590 0.027898 -0.288267 -0.721653 -1.435576 0.012240 -1.987678 0.213515 -0.038327 1.710421 -0.784493 0.198762 0.209486 0.331931 0.882554 -1.460096 0.063604 -1.160103 -0.061957 -0.623778 1.967318 -0.030234 0.488903 0.052904 0.560497 0.213862 0.634417 -0.363588 -1.104910 0.042042 -2.335684 -0.860313 -0.074464 -0.692210 -0.543531 -0.994667 -0.099279 0.972423 1.367155 -1.430117 -0.643008 0.056109 -0.216087 0.286954 0.047600 -0.710830 0.348416 -0.583876 0.710125 0.750094 -0.415900 0.246227 -0.438275 -0.158506 0.372076 0.930676 0.717232 -1.719232 0.007536 0.685479 -0.446539 -0.294002 0.049479 -0.299967 -0.459761 0.373055 -0.923454 1.175620 -1.384445 -0.111931 -0.944002 -0.944333 0.101452 0.613246 1.149668 0.612612 0.589712 0.126626 0.227035 -1.426133 -2.225301 0.702378 0.128071 -0.118652 -0.499717 -0.028758 0.011130 -0.769096 -0.559525 1.312635 -1.119008 -0.979391 -0.873270 1.398886 0.239713 -0.590020 -0.420716 0.339143 0.840432 0.467979 0.823822 -0.808066 -1.844471 -1.492097 -0.594051 0.969782 -0.407044 -0.374420 0.031925 -0.110959 -1.035812 0.463754 -0.868803 0.750811 -0.359523 -0.368253 -1.281039 0.151729 -0.183799 -0.087615 -0.195149 -0.758971 0.433618 0.537802 0.197021 -0.368566 0.642194 0.603246 -0.870151 -1.252775 0.159793 0.401978 1.232772 0.860256 0.396434 -0.841640 -0.324753 -1.173175 1.204418 -1.038992 0.623208 0.214261 -0.739152 1.004527 -0.863860 -0.584693 -0.319322 0.757840 0.221876 -1.331609 1.864155 1.378769 -1.388976 -0.478927 -1.162995 0.761640 0.291947 1.838655 -1.133020 -0.384416 0.408576 0.439354 -0.343199 -0.308648 0.567578 0.078657 0.035806 -1.263948 -0.760697 0.800709 0.628131 0.175561 -0.010776 -0.237097 -0.349249 -0.325573 1.632674 0.391279 0.381746 -0.981514 -2.002897 0.225243 -0.292670 0.093594 0.344485 -0.567849 -0.931144 -0.389000 -0.472329 1.201584 0.090226 -0.988922 0.985592 -1.312398 -1.051931 -1.079207 0.280101 0.063972 -0.854406 0.903428 -0.784326 -0.125294 -0.117936 0.676108 -0.247191 -0.215934 -0.624750 0.016358 0.568414 0.315337 -0.841854 1.217129 0.332189 -0.569329 -0.341397 0.045450 -0.350962 0.524277 -1.355337 -0.511124 -0.450246 0.722555 -0.817492 0.799136 0.538516 0.645645 0.390346 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 4.157995 -0.520198 -1.424394 5.822154 0.533950 -1.354298 0.547497 2.232483 0.222849 -6.423880 -3.589659 3.159599 0.726425 0.033962 1.502973 1.660367 1.451788 1.801611 -8.659580 1.333978 0.361110 0.227303 -2.181221 -2.530673 0.202822 -0.547740 1.672110 2.651311 0.374673 4.098534 -2.701334 2.309328 3.368751 0.154099 2.627702 1.928487 -0.097452 -0.780341 -2.375991 -2.226118 7.310367 2.308144 0.188922 3.397308 0.453807 5.073107 0.796553 4.674704 0.828594 -1.725391 2.688688 -0.920143 -2.506195 -0.401908 -5.840604 2.168005 3.852740 1.824640 -2.688905 3.213245 -1.057473 1.757944 2.771546 -0.890162 6.987433 2.348458 4.403993 4.271044 5.618558 -3.500670 1.230031 0.357416 3.354908 -0.042265 2.155091 -4.537028 -1.924371 -5.413652 0.604573 -7.239664 1.344427 -1.145548 6.961949 -4.306817 0.753393 1.729839 0.867978 4.941834 -4.501142 0.836504 -4.520849 -0.089501 -1.432958 7.156151 -0.105639 0.693680 0.445122 2.095865 0.071323 2.181210 0.127288 -3.397195 -0.502890 -8.772381 -4.043964 -0.557930 -0.226414 -0.346831 -4.598120 0.289697 1.238040 2.832460 -6.834359 -2.184978 1.336708 0.897908 1.388030 0.044085 -1.920176 -0.822969 -0.796116 3.278332 2.223690 -3.464574 2.359893 -2.166952 -0.833390 1.928115 3.534089 1.629219 -4.763303 -1.715719 0.691711 -0.274019 -0.288477 1.243907 1.325201 -2.093782 2.928170 -3.527868 4.401799 -6.287863 -1.543664 -3.198705 -3.028602 -1.253621 5.229648 2.404117 3.379891 1.759039 -1.556983 -0.141241 -6.234691 -7.674241 1.673329 1.475269 0.595772 0.807480 -0.616211 0.660200 -2.844821 -0.967790 3.512307 -4.030474 -3.969505 -1.897587 3.761938 0.536006 -2.308310 -3.426640 2.154118 2.739956 -0.133239 3.643290 -1.310923 -6.142035 -5.818910 -2.498594 4.285059 -1.567414 0.214300 -0.925230 -0.818832 -3.946809 1.086341 -4.874259 1.535360 -0.068904 -3.315034 -5.794333 1.274559 -0.776443 0.146653 0.629833 -4.346662 2.123386 2.205623 3.239861 -1.044199 1.955860 2.033611 -5.499744 -5.336210 -0.595930 -0.706473 5.138422 2.652471 1.039163 -2.734152 -1.729763 -3.130845 3.778132 -4.114549 2.310403 -0.028145 -2.237448 2.615588 -4.493945 -0.920250 -3.958363 1.854378 0.834583 -6.819385 6.708324 4.247242 -4.790554 -1.437220 -4.295711 3.230824 0.638860 6.572296 -3.659105 -2.026389 1.424464 1.136239 -1.016642 -3.002991 2.080532 -0.109757 -1.394233 -4.838436 -2.756697 3.599951 2.714286 0.002842 0.886723 2.074763 -0.206866 -0.393941 6.084308 1.994673 0.137535 -4.027122 -9.774183 1.672760 2.404849 -0.020086 0.742371 -3.574509 -2.694796 0.385601 -0.095693 4.453677 3.176563 -0.058478 4.271953 -5.403532 -4.734779 -3.458700 0.686190 0.538605 -1.944283 1.114152 -3.207508 0.297379 -0.618930 1.672326 -1.666306 -1.903833 -3.060943 0.657765 3.995853 0.383249 -1.323099 5.808398 1.973671 -1.858411 -0.703906 -0.678358 -1.872424 1.418198 -3.547115 -1.587984 -0.402943 1.640852 -3.769162 2.436881 0.368582 1.356504 1.124851 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = 0.725200 -1.070653 0.340322 1.363389 0.515058 0.379902 0.278317 0.157524 0.274716 -2.147483 -1.005608 0.782716 -0.163394 0.148116 0.223370 0.077087 0.971219 0.140526 -2.687568 -0.089496 0.259373 -0.171279 0.201038 -0.019863 0.132767 -0.795508 1.205919 1.015244 0.172911 1.108215 -0.563577 0.626429 1.049721 0.384193 0.835671 0.960123 -0.254722 -0.388742 -0.643820 -0.547533 2.078226 0.302784 0.024624 0.771408 0.288024 1.464134 0.722624 1.200311 2.052565 -0.403353 0.844570 -0.702885 -0.605409 -0.317856 -1.851733 0.051385 0.547919 0.356623 -0.771029 0.571069 -0.298298 0.374060 0.302288 -0.248274 1.691602 -0.023276 1.334414 0.872230 1.016680 -1.146465 -0.044233 0.412082 0.747946 0.771458 0.343461 -1.210478 -0.559021 -1.727042 -0.084019 -1.489834 -0.044799 -0.488587 1.038479 -0.591191 -0.254345 0.161939 -0.574068 1.153871 -0.411039 -0.041114 -1.674419 0.117663 0.643773 0.977005 0.142036 -0.023723 0.452935 0.209714 -0.125779 0.738558 0.588577 -1.283321 -0.187058 -2.621083 -0.642256 -0.867448 0.514292 -0.095960 -1.050751 0.486689 -0.117319 0.511504 -1.433482 -0.509404 0.278974 0.337357 0.187409 -0.662997 -0.027750 -0.619774 0.270261 0.985031 0.801858 -1.005480 0.379862 -0.825127 0.308335 0.284186 0.744038 0.113192 -0.313847 -0.764480 0.409467 0.673380 -0.044430 0.199091 0.397472 -0.019194 0.638034 -0.700531 1.266087 -1.177516 -0.104339 -0.857240 -0.025914 -0.671687 2.482117 0.763761 1.075108 0.548804 -0.422979 0.245343 -1.171262 -2.111273 0.203891 0.035906 0.255216 0.422122 -0.255441 0.623127 -0.839088 -0.125290 0.135437 -0.597344 -0.709197 -0.257197 -1.340961 0.175806 -0.366952 -0.541773 0.492653 0.767335 -0.295345 1.132779 -0.562606 -2.315159 -1.234702 -0.944090 1.040480 -0.812989 -0.068611 -0.167258 -0.256765 -0.775412 0.311898 -1.004323 -0.069313 -0.245007 -1.321831 -1.538592 0.420272 -0.569731 0.669073 0.737192 -1.129555 0.316680 0.165491 1.218897 0.240030 0.477939 -0.083975 -1.298784 -1.027556 -0.282341 -0.446434 1.466184 0.013790 -0.217550 -0.917986 -0.718479 -0.652954 0.919493 -0.798701 0.681113 0.130977 -1.168732 0.387971 -0.608058 0.455693 -0.555253 0.551313 0.567109 -2.464943 1.484704 1.257025 -1.208823 -0.593961 -0.870911 0.420555 0.056438 1.185951 -0.808910 -0.469650 0.260087 0.263808 0.005415 -0.592573 0.432365 0.328793 -0.351330 -1.734549 -1.191590 0.995324 0.599057 -0.063757 0.055943 0.903590 0.526910 0.056304 1.750146 0.277652 0.504596 -0.930412 -3.251957 0.484655 2.209262 0.178093 0.822332 -1.244994 -0.654578 0.062273 -0.399954 1.164997 0.834184 -0.060710 1.253974 -0.710229 -0.981378 -1.100572 -0.649755 0.233834 -0.280055 0.544540 -0.701816 -0.025041 -0.599907 0.234043 -0.352633 -0.187021 -0.210541 0.579794 0.843838 0.530931 0.195433 1.174481 0.310945 -0.696676 -0.279590 0.061086 -0.626884 0.869160 -1.152639 -0.400043 0.036021 0.413283 -0.685997 0.064012 -0.012160 0.712320 -0.163870 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 3.064466 0.191859 -1.167528 4.009727 0.447127 -1.615794 0.593104 1.822567 0.352229 -4.493422 -2.520470 3.036127 0.582437 -0.646796 0.608747 1.208201 1.077062 1.953789 -6.585816 1.302534 0.384679 0.746938 -1.892496 -2.323934 0.102987 -0.419547 0.436585 1.965873 0.160089 2.974632 -1.998155 1.271505 2.456480 0.042386 1.928576 1.782188 0.174548 -0.545937 -1.031876 -1.242270 5.381524 2.067972 0.218340 2.626387 0.947101 3.964706 0.437051 3.211312 0.500821 -1.198114 1.247243 0.005816 -2.197031 -0.484310 -4.134835 1.855012 2.834167 1.332358 -2.189902 2.717070 -0.407031 1.028821 2.124502 -0.774863 4.926166 1.977332 2.456370 2.932958 4.749161 -1.990182 0.701805 -0.082120 3.047409 -0.133831 2.062324 -3.120217 -1.853249 -3.969505 0.235518 -6.093146 1.338274 -0.733087 5.608526 -3.607036 1.059818 1.625068 1.170146 3.491896 -3.092669 -0.349766 -3.286970 0.086588 -1.503168 6.074954 -0.000121 0.765037 -0.108739 1.734024 0.296414 1.424134 -0.130810 -2.649689 -0.692227 -7.144029 -2.898345 -0.842758 -0.757091 -0.629080 -3.518715 -0.258462 1.242601 2.981633 -5.608626 -1.465914 1.359552 0.085040 0.399781 -0.443130 -1.497950 -0.113617 -1.046725 1.991323 1.098136 -2.564619 0.820034 -1.025764 -0.991155 1.158566 2.264230 0.893077 -3.862699 -0.920081 0.297496 -0.159887 -0.136166 0.706156 0.458910 -2.147996 2.032911 -3.052520 3.138403 -4.547688 -1.075223 -2.192291 -2.402306 -0.914298 3.144918 1.580148 2.381398 0.870647 -0.627938 -0.562528 -4.864147 -5.896830 1.789387 0.323441 0.732566 0.103789 -0.437023 -0.409910 -1.969828 -1.011782 2.687690 -3.078163 -2.440930 -1.432173 4.165059 0.066952 -1.706681 -2.706774 1.069601 2.583739 0.470102 1.782985 -1.474480 -4.432194 -4.042008 -1.888808 3.071939 -1.010525 0.446190 -0.916260 -0.643489 -2.541542 0.900465 -3.518404 1.273765 -0.431524 -1.879473 -4.241911 0.735616 -0.717389 0.015930 0.036407 -3.187577 1.689543 1.726180 2.114571 -0.939291 1.009784 1.499522 -4.228372 -3.587165 -0.428622 -0.322886 3.591272 2.449851 1.354879 -2.415608 -0.760545 -2.841414 2.754189 -3.351282 1.438764 0.220477 -1.909078 2.561003 -3.183777 -0.707810 -3.037459 1.493172 0.144178 -4.936026 5.292933 3.296522 -3.771419 -1.108965 -3.000339 2.109574 0.824995 5.037199 -2.975878 -1.711193 1.271305 0.006810 -0.871784 -2.278340 1.623701 -0.224033 0.130869 -3.738309 -1.632877 2.652640 2.332619 -0.288930 0.795399 0.936235 -0.423235 -0.260166 4.206740 1.420519 0.386507 -3.228360 -6.968561 1.203854 1.017987 0.383225 0.552093 -2.063728 -1.921723 0.299995 0.048008 3.532795 1.964822 -0.365973 3.019020 -4.326440 -3.726586 -2.040394 0.499013 0.777698 -1.603319 1.329183 -2.345167 0.043991 -0.541459 1.612316 -0.888193 -1.726986 -2.272902 0.853743 2.905543 0.709043 -1.666620 4.366565 0.777119 -1.310752 -0.214472 -0.955272 -0.680171 0.717368 -2.479981 -1.042921 -0.829659 1.264634 -2.660013 2.717753 0.037419 1.285439 1.236421 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 4.680179 0.284316 -0.958816 4.328132 1.100071 -2.196250 0.881187 3.286424 0.679553 -6.548912 -4.031213 3.217387 0.431756 -1.151412 1.272104 1.468502 2.148031 3.102138 -9.542216 1.936658 1.065331 1.312075 -2.184209 -2.728273 0.510122 -0.560334 -1.713454 1.820049 0.614122 4.320848 -3.358184 1.537579 3.460420 0.247793 2.999410 2.817330 0.291688 -1.301633 0.390927 -1.792648 7.852286 2.825992 0.538917 3.653701 1.798643 5.317094 -0.865404 5.677183 0.604956 -1.794751 2.185580 -3.469339 -3.061373 0.779035 -5.696688 2.955881 4.067394 2.151302 -3.376981 3.700983 -0.258301 1.777404 2.614059 -2.461939 6.337041 3.181004 1.981192 3.595260 6.664760 -2.248807 1.169242 -0.412036 4.139309 -0.031723 1.688199 -4.099071 -0.736627 -6.912046 0.620599 -8.422432 2.151981 -1.598521 8.086720 -5.243267 2.611335 3.269733 1.342662 4.713215 -3.673441 -0.776067 -4.900908 0.440780 -1.463756 7.101276 -0.475852 1.151859 -0.486145 2.080667 -0.038662 1.686865 -0.630037 -3.438922 -3.006333 -10.387312 -3.925709 -1.100032 -1.326913 -0.937772 -5.206220 -0.248918 2.430211 4.399515 -7.780609 -1.721275 1.404366 -0.025286 -1.556865 1.444221 -2.763277 -0.932503 -2.076174 2.722494 0.541038 -3.493406 0.544248 -3.332753 -1.989818 1.641399 3.237301 0.593292 -4.594229 -0.964281 0.514245 -0.411353 -0.852882 1.125647 0.639196 -3.016547 2.842742 -4.133042 3.637577 -5.601410 -1.824759 -3.158223 -3.753271 -1.330992 6.442813 2.366625 2.923945 2.289639 -0.937038 -1.410680 -6.345450 -7.501606 2.497307 -0.813118 2.326456 0.142401 -0.404776 -0.946457 -2.491773 -1.975377 1.948254 -4.341688 -3.000981 -2.601754 5.891324 -0.746758 -2.082527 -4.257183 1.422134 5.158075 -0.949817 1.272580 -2.568144 -3.894980 -5.041659 -2.941929 4.246393 -1.479751 1.521944 -1.184085 0.500024 -3.412823 1.036240 -4.440218 1.158208 -1.137180 -2.538930 -5.819247 0.797650 -1.209126 -0.061677 0.187997 -4.061605 2.690318 2.770621 4.076224 -1.272689 1.315063 1.564732 -6.091941 -5.444939 -1.332165 -0.336119 4.686795 3.650054 1.421905 -3.254138 -1.304128 -3.759749 4.478952 -5.422607 1.861818 0.286212 -2.609301 3.697763 -3.941575 -1.467882 -4.598314 2.261716 0.206054 -7.354362 6.527812 3.524287 -5.509701 -1.450246 -5.824867 3.283318 1.547907 7.224058 -3.050958 -1.553398 1.950207 -0.619273 -1.122927 -3.929362 2.531993 -0.337124 1.374022 -5.397716 -2.156451 3.898045 3.326494 -0.572032 1.566453 1.670107 0.859875 0.778155 6.076226 1.608171 0.025705 -4.373006 -9.781649 1.487469 4.281282 1.533811 0.792937 -3.359915 -2.500203 -0.204526 0.130171 4.940217 3.779886 1.206399 4.151455 -5.404808 -5.071614 -1.831199 1.401247 1.307806 -2.530020 1.599174 -3.039443 -0.066651 -0.556838 2.949247 0.154799 -3.002563 -5.212206 1.143338 4.022570 1.202856 -2.246583 5.790922 1.026901 -2.070938 0.467490 -1.499400 0.475411 0.608725 -2.670818 -1.519681 -1.276473 1.170509 -3.963384 4.559397 0.020372 1.829912 1.610553 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/trie-suffixes.cpp__main = 17.417280 0.070625 -1.311853 13.808898 4.811944 -6.655976 0.520844 12.951847 0.561755 -14.207771 -10.083800 10.290032 -1.678249 -1.835567 8.866170 2.601018 6.451683 6.969755 -26.378737 6.178157 -4.279745 1.158175 -8.076128 -12.952271 3.486804 7.396525 1.942962 7.383173 2.849164 9.862916 -12.457212 2.740207 5.400805 4.356829 10.827911 -1.009158 3.235776 -4.784913 -6.651658 -12.171914 23.415782 6.585260 1.791247 16.985826 5.959436 11.205966 0.408113 15.616674 5.871280 -0.463010 8.069169 -13.620873 -7.336197 3.473687 -19.015158 8.296246 12.247267 3.175865 -8.659609 10.265593 3.305702 7.888671 7.694378 -11.074859 19.494927 7.241765 10.236599 9.665624 17.677882 -8.446127 4.796614 -2.309074 19.105106 2.742444 -1.242192 -17.053238 1.851915 -24.879487 3.454510 -23.388704 8.860285 -9.034665 18.358388 -11.840204 9.098227 8.548901 -1.515174 11.168271 -15.583974 2.409102 -11.408236 0.095786 -3.568585 17.481350 -3.406038 2.887530 3.694818 4.122482 -0.248766 7.160385 0.362544 -5.968257 -0.206722 -26.986421 -11.567082 8.169333 -5.624156 -7.500343 -7.620267 3.448372 4.865304 7.067469 -15.607351 -13.420128 0.891109 -1.893440 -7.439153 3.072155 -4.444171 -4.987904 -6.280918 13.900579 2.068216 -13.543523 6.620492 -9.274078 -9.457113 7.823084 16.038243 6.634480 -6.424163 -5.199572 2.393327 2.341287 -5.277359 -0.911195 -1.886997 -6.768230 8.202603 -8.368527 9.948000 -14.386712 -9.062490 -8.396840 -4.552300 -1.336046 20.225965 0.434007 10.097975 15.425154 -1.214916 -2.036168 -12.191017 -19.855343 11.411436 3.596831 2.610081 1.581047 1.145786 -0.446373 -7.142881 -13.065624 9.583012 -14.592405 -15.750099 -12.653937 8.812169 -2.254620 -5.905951 -13.391105 12.953259 18.083369 -2.727739 3.381232 -4.887536 -14.648815 -8.358671 -6.025902 11.671455 -3.467245 1.490895 3.157266 4.581861 -10.386431 2.345437 -14.800677 6.308614 -0.168897 -12.163179 -14.299581 2.192836 -1.895156 5.802656 1.087731 -10.427069 10.068652 2.654583 18.359178 -9.412401 9.992159 9.466342 -19.082030 -22.844058 -8.290176 4.101271 14.593763 2.424478 5.154062 -10.200782 -3.917290 -4.819232 14.297844 -19.253875 6.041148 -1.863692 -3.346489 7.047221 -10.378422 -7.128355 -11.973002 6.387570 3.351591 -19.636600 15.860648 9.084291 -17.085150 -6.302022 -23.068854 12.596021 2.325316 27.115469 -9.973924 -3.775238 5.636704 6.962128 -4.345535 -16.043452 8.551755 4.626823 -3.715430 -14.636215 -10.705267 9.017711 7.741249 1.659743 4.490137 7.621589 5.845130 -4.467716 23.196711 1.642652 0.675028 -10.860582 -26.743685 0.266591 25.088550 5.158865 5.606094 -15.426300 -9.875960 -3.445508 0.591389 11.520882 12.780190 8.637860 10.565349 -11.491608 -11.298729 -6.090142 7.639062 1.832116 -9.084877 4.675951 -9.885337 -2.246552 -1.723635 7.319628 -3.216426 -1.516486 -17.570438 -4.079675 8.351629 0.420073 -4.325161 16.277171 8.167579 -8.500116 2.933704 -5.212996 -1.963080 4.689108 -7.945367 -4.363905 -3.304277 1.017613 -12.711562 10.427190 4.615406 5.613682 -0.276417 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 2.588089 -0.716579 -0.662676 4.343047 0.972784 -0.408246 0.307885 1.163063 0.434625 -4.951625 -2.840748 2.617546 0.422459 0.421232 0.917062 0.917611 1.436544 1.255145 -6.154168 0.504195 0.099993 0.142322 -1.166917 -1.564043 0.115144 -0.614304 1.665845 2.070698 0.365275 2.647471 -1.844586 1.742776 2.505654 0.329432 1.906270 1.248530 0.126534 -0.775746 -2.170342 -1.973026 5.536894 1.296516 0.483508 2.746575 0.304934 3.715985 0.791030 3.535756 1.786381 -1.157293 1.854754 -1.123825 -1.746009 -0.482366 -4.631809 1.880885 2.245301 0.930082 -1.989969 2.116515 -0.257609 1.143353 1.755760 -1.154651 5.046252 1.352622 3.351391 2.993682 3.733556 -2.564336 0.371261 0.438408 2.571348 0.675508 1.487379 -3.509156 -1.244742 -3.668599 0.335446 -4.881540 1.200887 -1.232710 4.897366 -2.865322 0.179443 1.151478 0.117476 3.423231 -2.630853 0.454466 -3.699647 0.067929 -0.490008 4.555128 0.207728 0.128673 0.439337 1.206561 -0.032753 1.731240 0.406172 -2.306631 -0.286125 -6.717096 -2.824615 -0.579525 0.324891 -0.413804 -3.018746 0.330060 0.284889 2.063495 -4.644607 -1.869220 1.026473 0.567525 0.813265 -0.508411 -1.011663 -1.004039 -0.101022 2.246974 1.460955 -2.499273 1.568588 -1.490846 -0.535009 0.925091 2.622774 0.942751 -2.880895 -1.533226 0.133408 0.437603 0.002552 0.349605 0.843676 -1.317329 2.158124 -2.065707 3.027318 -4.160832 -1.010494 -2.347218 -1.832837 -1.025087 4.749378 1.461548 3.005489 1.498543 -1.006549 -0.261954 -4.341503 -5.680591 1.212572 1.083309 0.524108 0.796457 -0.549503 0.695613 -2.017538 -0.784577 2.529982 -2.837629 -2.921160 -1.160484 1.459013 0.165257 -1.559517 -2.645652 1.747858 2.224250 -0.545001 2.483052 -0.969213 -4.910952 -3.746251 -1.960516 2.811799 -1.300014 0.477956 -0.547477 -0.611565 -2.619939 0.636683 -3.549692 0.951449 -0.034863 -2.975097 -4.218403 0.895982 -0.790498 0.404085 0.936276 -3.277671 1.774454 1.385556 2.839728 -0.650412 1.302117 1.112930 -4.081383 -3.640803 -0.806092 -0.700237 3.692791 1.630770 0.718149 -2.202928 -1.426369 -2.225193 2.512533 -2.947036 1.526133 0.107896 -1.895690 1.307675 -3.251821 -0.104609 -2.738235 1.245912 0.736605 -5.731197 4.519748 2.966961 -3.430491 -1.352421 -3.148907 2.033758 0.183971 4.821094 -2.682057 -1.302557 0.968691 0.809374 -0.746410 -2.336525 1.430937 0.398511 -1.136344 -4.038157 -2.468495 2.368703 1.919231 -0.081031 0.643272 1.936482 0.394500 -0.199841 4.542061 1.399786 0.275894 -2.782957 -7.593980 1.205586 2.872750 0.001766 0.939649 -2.788423 -1.814562 0.259295 -0.354791 3.168965 2.004987 0.316977 3.168355 -3.446660 -3.076083 -2.125444 -0.099502 0.475207 -1.316879 1.060218 -2.390545 -0.041089 -0.879183 0.829170 -1.426814 -1.188124 -2.046109 0.733075 2.765661 0.468858 -0.262550 3.967383 1.342398 -1.421601 -0.314149 -0.573058 -1.227171 1.255733 -3.072303 -1.096124 -0.257267 0.725128 -2.349055 1.257484 0.103894 0.948421 0.632058 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/trie-suffixes.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 8.430950 -3.798453 -8.758297 18.806762 0.280412 0.622199 1.910016 -0.859327 1.871661 -22.403802 -9.436946 12.633789 4.221839 0.558467 -0.084264 7.371374 4.622229 4.709569 -21.148089 0.697594 4.153078 -1.270969 -4.228828 -1.735194 -0.868015 -7.186340 11.282279 4.479193 1.465748 14.340323 -3.950745 10.939070 12.157123 -1.700554 5.590377 9.964048 -4.545424 0.581970 -7.218085 -3.710320 18.538862 5.541569 0.815832 6.567982 -2.028704 15.878794 3.842340 14.432087 4.914297 -6.039106 8.013791 9.718933 -5.095838 -2.841372 -15.726140 2.608544 9.656894 3.763511 -6.162766 5.969155 -4.017877 4.180806 6.650328 4.135278 19.331925 6.183127 13.506030 14.600423 14.054867 -10.732781 4.161504 1.567995 2.770147 -1.020781 15.985551 -9.599364 -12.931688 0.047509 -2.888807 -15.713268 1.254643 -0.689611 21.149998 -12.025785 -4.414086 -1.029092 6.117620 16.380390 -7.845851 2.217194 -14.141021 -0.403413 -4.491679 22.139978 3.405629 4.747891 -4.454596 5.730645 -2.274284 2.910092 2.615208 -15.054663 1.772493 -22.425308 -11.043643 -10.937083 3.265244 5.110776 -17.663347 1.221000 -3.736293 9.851882 -24.404432 -1.038754 3.131006 4.389231 16.375663 -1.959530 -6.684351 0.499873 1.461730 5.683787 6.180797 -6.186516 4.168466 -5.248908 1.049663 2.666380 5.067518 3.505417 -16.873602 -4.106006 1.959537 -0.171813 2.618837 8.347713 9.732718 -6.162024 7.180263 -9.912181 12.285499 -19.234647 -5.384974 -7.784526 -12.527516 -7.678903 9.864088 9.440228 14.471547 -4.027711 -5.685792 -0.631064 -21.696149 -24.593650 0.578500 0.154247 -1.584604 6.094890 -3.026948 4.706438 -12.306999 5.448876 11.712761 -7.583099 -7.680414 -0.555377 11.325022 2.166261 -5.419029 -4.968218 -2.679724 -1.963448 4.522719 17.139123 -2.930777 -23.663111 -24.610531 -6.460282 13.163403 -7.905616 0.529137 -7.044112 -5.891417 -11.492031 -0.364897 -11.837406 0.810327 -0.586105 -5.641404 -17.123708 5.117195 -2.413968 -1.867866 3.669705 -14.099078 3.666773 10.644176 3.713098 1.580136 3.281467 0.516046 -12.735993 -9.092728 5.381353 -8.127981 13.950910 9.344782 -0.561132 -6.834610 -6.689152 -13.126314 6.533612 -10.218664 8.841166 2.538074 -6.166975 6.367649 -13.798412 -0.033753 -8.893975 4.197875 1.006048 -19.570268 19.152992 11.696432 -10.330252 0.174652 -2.509210 8.127049 -0.396434 8.991130 -11.116909 -8.792218 3.070336 0.184091 -0.178364 -3.063276 3.596054 -4.327334 -3.184823 -13.487107 -4.833844 12.707813 6.689117 -2.185429 -0.707719 5.313384 -9.026970 3.245084 13.507099 9.533206 3.051906 -11.912532 -29.789863 4.461367 -9.662424 -3.437265 0.061723 -6.473180 -4.297059 5.176671 -4.781167 13.054080 -0.374929 -7.039357 13.226309 -19.248191 -14.326668 -11.832630 -4.155420 3.516066 -1.930013 2.483405 -7.922360 2.392125 -2.399957 4.724075 -5.681328 -9.379960 4.611803 7.861562 14.173048 -0.508298 -1.378677 14.990485 4.799754 -3.491334 -3.965783 -0.017001 -8.238688 3.558242 -17.715089 -3.097595 2.760341 7.619856 -10.703202 4.250246 -3.254889 4.848566 2.596051 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = 5.513023 -2.680622 -4.922093 11.942856 -1.128745 -0.248388 1.533327 1.693677 1.334632 -13.429414 -6.780470 8.749724 2.983454 1.085984 1.835996 3.946196 2.025868 2.857238 -15.577057 0.514194 2.902228 -0.327784 -2.328217 -2.248519 -0.182973 -3.115214 6.433209 3.385032 1.037494 9.484027 -2.797252 6.962542 7.113658 -0.969232 2.915101 5.775114 -3.565803 -0.273975 -4.847288 -3.599867 11.480151 3.433130 0.038779 4.863490 -2.320570 9.794020 2.304118 8.248936 3.033755 -4.347832 5.105377 4.586018 -4.298173 -1.924079 -8.953426 1.407926 5.987924 3.455605 -3.002429 4.768940 -2.915870 2.566726 4.554137 1.957886 12.418640 3.873699 8.955978 9.605676 8.656446 -7.428373 3.816387 0.018383 1.276368 -1.121718 8.678801 -6.754932 -6.675844 -3.575324 -0.585724 -11.475929 -0.345797 -0.138636 13.362175 -7.886764 -1.497477 -0.086523 3.855901 11.435788 -5.889303 2.812252 -7.864616 -0.985434 -1.921483 12.452173 1.575448 2.555686 -1.708783 3.665693 -1.334873 2.219566 1.782561 -8.269679 1.432851 -14.658567 -6.284932 -5.323862 1.633530 3.429316 -10.548426 1.136056 -1.479264 4.334380 -14.680848 -2.293497 2.314265 3.751290 6.607159 -0.556214 -3.109501 -0.500225 0.648331 4.760223 4.764089 -5.280794 4.341352 -2.926232 -0.240944 2.982002 4.117803 3.288354 -9.961986 -3.896089 2.278483 -0.500066 1.841503 5.880907 7.036185 -1.642205 4.638262 -7.469789 8.596977 -12.166229 -2.845783 -4.730563 -6.178526 -4.817644 6.390766 5.173872 6.904218 -1.980526 -4.121127 0.737124 -12.661921 -14.622492 1.293037 1.876918 -0.697605 3.879386 -1.881206 2.919625 -7.694968 2.711307 6.941042 -5.296802 -5.629053 -1.103030 4.186730 2.950393 -3.829939 -3.847527 0.401740 -1.375784 1.387066 11.006411 -0.809388 -13.687704 -15.328060 -4.115631 9.297218 -3.860131 -0.364917 -4.354559 -4.298432 -6.604534 -0.095416 -7.333523 1.052106 0.999942 -4.626968 -11.592639 2.714158 -0.475528 -1.693713 2.712594 -9.191958 1.934633 6.442933 2.446649 -0.188144 3.089946 1.572168 -7.492816 -6.445003 2.780548 -5.012869 8.068192 5.529151 -0.429766 -4.865626 -3.862740 -6.225847 5.560689 -6.489160 6.737833 0.326770 -3.655251 4.360686 -8.909385 -0.826022 -6.113463 2.642097 1.101329 -14.412359 12.027743 6.926918 -6.483626 0.327099 -2.678639 5.420748 -0.281359 6.649736 -8.022354 -5.729705 1.699724 0.712351 -0.095077 -3.225103 2.106999 -2.615461 -3.786485 -7.534053 -2.736926 8.386409 3.887523 -0.444441 1.163549 4.658142 -4.719476 1.615048 8.821812 6.285081 0.081349 -7.333417 -18.089986 4.507216 -0.645501 -2.086681 0.356119 -6.265424 -3.375768 3.549638 -2.169888 6.883284 2.107126 -3.171552 8.537905 -11.140646 -9.260059 -8.673996 -1.488963 1.750503 -0.731527 0.901343 -4.357133 2.223778 -0.184838 3.311463 -3.964266 -5.353925 0.658730 4.194812 9.683616 -0.749180 -0.658469 10.708732 3.484903 -2.316574 -3.022174 -1.109193 -6.246452 1.438762 -9.395850 -1.819145 2.416351 5.380483 -8.215336 2.515082 -0.900602 2.363661 1.520866 -PE-benchmarks/biconnectivity.cpp__main = 12.169842 -2.403392 -3.655591 19.145104 1.774405 -3.330188 4.990413 8.320384 0.755879 -27.339116 -17.435348 8.627509 2.998879 -1.986319 5.154724 3.877996 6.052867 7.403223 -35.357630 3.030498 8.057183 1.722271 -3.702989 -5.808883 0.552600 -6.865242 0.595002 9.773877 1.773235 19.250399 -7.160903 8.671415 14.638908 0.624761 8.436258 15.354032 -4.711983 -1.457847 -0.246594 -4.433145 26.351959 8.824302 -1.285263 9.597701 2.451588 20.815467 0.180497 15.919768 0.181947 -8.490710 10.855980 -3.557259 -9.360666 -2.450050 -18.305833 4.496333 18.702096 10.237451 -10.285960 11.775526 -6.279778 4.094100 8.257231 -2.150798 22.390335 10.339940 11.773824 15.736605 20.796247 -13.761113 3.991151 1.845623 6.188526 -1.957996 6.422299 -13.407289 -8.318243 -18.738655 0.423967 -29.803471 -0.906527 -1.800703 27.489633 -15.817676 2.177860 6.541055 4.057978 19.009135 -11.565003 -0.552173 -17.210038 -0.992255 -4.346557 24.318280 0.811527 3.652998 0.281255 7.700985 0.240298 8.081003 -0.999049 -15.579514 -8.901749 -36.650034 -12.506846 -9.233932 1.784443 2.870633 -20.073023 -1.902050 4.972001 8.812408 -28.574068 -4.171590 6.822595 7.534083 -0.565572 0.670088 -12.348154 -2.463009 -2.363729 7.814790 9.489484 -10.590079 4.477656 -10.780240 -1.622993 5.194815 7.543502 3.267597 -17.603571 -7.116522 3.762555 -2.912328 -0.070080 7.075367 7.810228 -4.838732 9.754394 -16.017267 17.689758 -24.814913 -1.816166 -11.187220 -13.809699 -7.638790 15.214057 12.118484 9.466666 0.983580 -6.820085 0.154801 -22.697916 -27.840076 5.105781 0.763249 6.938814 1.998389 -3.692770 3.130769 -12.445787 0.330944 7.369222 -10.327615 -8.538991 -5.097029 17.106674 2.828095 -7.562988 -9.916934 2.502502 6.996013 -2.111758 14.561739 -7.408864 -16.163944 -24.863629 -11.348126 17.948454 -6.971974 -0.254680 -6.980102 -3.192570 -15.215862 3.834041 -15.266729 2.170633 -2.525465 -10.060025 -22.636860 4.715468 -3.271712 -1.744446 5.073169 -15.804510 3.694032 13.777950 10.113764 0.383312 5.027794 3.415492 -16.900335 -15.485800 0.187535 -5.519112 16.656846 13.354830 0.760519 -10.273181 -6.522622 -12.952716 14.895734 -9.073271 9.874322 -0.467689 -9.431258 13.660489 -14.414061 -2.620652 -14.565336 6.391592 4.109842 -29.126809 23.604064 13.525090 -14.916192 -3.421187 -12.222979 7.846534 3.509773 17.522044 -12.359562 -9.249321 5.410424 -2.131967 -1.007349 -10.122934 6.655296 -3.376456 0.722352 -17.982857 -7.942123 16.615448 10.689369 -1.380422 7.011591 7.780965 -0.325890 4.262402 20.792558 8.867078 -1.547905 -14.286913 -35.830953 9.227050 7.349089 0.877851 0.517959 -10.182140 -10.259241 2.722577 0.452643 16.953176 14.316434 -4.129578 17.672577 -17.717692 -19.033091 -14.446441 1.610960 5.481256 -6.797184 1.186426 -9.280746 4.322206 -0.503011 6.626608 1.132796 -12.463335 -11.695903 5.339638 18.104261 1.462517 -4.282649 21.610722 3.680704 -7.383229 -3.530373 -1.691264 -4.679473 4.906136 -12.667007 -6.005438 -0.661400 8.836946 -14.230878 9.566204 -0.908800 5.822135 6.897921 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.602277 -0.313928 0.149640 0.777540 0.007411 -0.263518 0.360406 0.603764 0.027057 -1.598058 -0.460991 0.356488 0.031041 0.002800 0.129470 0.179743 0.386737 0.551758 -1.767679 0.175333 0.458616 0.383395 -0.082338 -0.389055 0.067048 -0.390184 -0.017960 0.506399 0.299581 1.127353 -0.629638 -0.083595 0.899884 -0.162268 0.368059 0.979070 0.784325 0.121497 -0.214161 -0.020183 1.581068 0.517472 -0.389589 0.493521 0.359905 1.217223 0.216318 0.880807 0.061267 -0.663586 0.265185 -0.599751 -0.588499 -0.312565 -0.894801 0.427450 1.222817 1.348565 -0.862589 0.868272 -0.266506 0.182138 0.403376 -0.004270 0.811635 0.561668 0.418439 0.707962 1.281545 -0.930177 -0.062007 0.206860 0.482259 0.030009 0.545959 -0.736358 -0.374957 -2.299486 0.109480 -1.548167 -0.237703 0.106592 1.303246 -1.133234 0.559953 1.083638 -0.033223 0.722584 -0.641501 -0.190300 -1.073078 -0.063532 0.070675 1.872002 0.092942 -0.077575 0.205915 0.701006 0.441744 0.633921 0.445028 -0.867456 -0.839352 -1.881757 -0.746046 -0.583983 -0.073753 0.158349 -0.898789 -0.390375 1.338341 0.592688 -1.605145 0.159639 0.604143 0.541081 0.351553 -0.340709 -0.451484 0.310327 -0.394933 -0.043030 0.557133 -0.941893 0.032756 -0.056781 0.068667 0.310900 0.351151 0.017755 -1.073316 -0.335414 0.132618 -0.088611 -0.268437 0.067421 0.059099 -0.801080 0.676356 -1.026155 0.990599 -1.160557 0.080868 -0.165294 -0.692892 -0.371571 1.391484 0.223880 0.281052 -0.008509 -0.863328 -0.238686 -0.946323 -1.678141 0.555688 0.364703 0.556661 0.244808 -0.283356 0.078853 -0.524323 -0.241599 0.036873 -0.558556 -0.202541 0.021299 0.784623 -0.207315 -0.338819 -0.838226 0.351841 0.972424 0.185722 0.452479 -0.729905 -0.782439 -1.063413 -0.715517 0.985756 -0.328237 0.079218 -0.026630 -0.275860 -0.919123 0.562987 -0.863271 0.496753 -0.330488 -0.728452 -1.303694 0.511941 -0.439327 -0.057980 0.411893 -0.853069 0.117809 -0.360335 0.220908 0.022682 -0.131225 0.561601 -1.507629 -1.134940 -0.168236 -0.269799 1.022471 0.234024 0.197233 -0.442706 -0.299106 -0.639804 0.824946 -0.792931 0.310682 -0.130925 -0.625376 1.009226 -0.455362 -0.184025 -1.131689 0.622854 0.648575 -0.380043 1.866881 1.005640 -0.744044 -0.307902 -0.245380 0.196331 0.618204 1.117958 -0.864174 -0.784954 0.567003 -0.429877 -0.022315 -0.437408 0.533438 -0.163083 0.469848 -1.043278 -0.433375 0.485865 0.805502 -0.031443 0.589681 0.631521 -0.051201 -0.475199 1.343138 0.363167 0.221628 -0.740098 -1.472667 0.840154 0.217334 0.273101 0.028876 -0.743102 -0.449087 0.347359 0.675718 0.874926 1.196595 -0.142560 0.990698 -1.305503 -1.120380 -0.316463 -0.154968 0.408022 -0.566194 0.318469 -0.517812 0.303088 -0.086286 0.240096 0.073888 -0.168152 -0.554459 0.109034 0.671379 0.385942 -0.428012 1.272171 -0.112572 -0.723382 0.160392 -0.123013 0.198947 0.268945 -0.026098 -0.193745 -0.221323 0.567925 -0.681644 0.748915 -0.170018 -0.091423 0.458061 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = 1.701289 -0.948512 -1.102629 3.397694 0.275453 0.403622 0.462333 -0.084458 0.376256 -4.367147 -1.618054 3.224265 0.540511 0.529664 -0.406130 1.213482 1.156210 0.861565 -4.524681 -0.113429 0.586639 -0.259819 -0.447468 -0.390700 -0.052747 -1.422562 3.029954 1.294235 0.440495 2.758185 -1.007056 1.882426 2.412355 0.031535 1.260358 1.945910 -0.276492 -0.255255 -2.096515 -1.233345 3.661554 1.110709 -0.070037 1.443746 -0.349164 3.187405 1.687962 2.341701 2.074371 -1.137197 0.638068 1.305165 -1.427895 -0.828636 -3.205741 0.325119 0.950502 0.787012 -1.236459 1.175554 -0.360554 0.740890 1.149567 0.637685 3.360369 0.345246 2.741430 2.470394 2.520386 -2.441073 0.552508 0.448454 0.885298 0.583435 2.827509 -1.798857 -2.503303 -0.490974 -0.266874 -3.224774 -0.171619 -0.209122 3.281423 -2.160890 -0.736244 -0.170684 0.511042 3.026120 -1.419569 0.395596 -3.057613 -0.048115 -0.153246 3.864725 0.864766 0.633873 -0.345580 0.990061 -0.171779 0.815142 1.012143 -3.070387 0.801333 -4.264542 -1.458623 -2.314125 0.487282 0.859567 -2.695428 0.373898 -0.762710 2.787116 -4.139721 -0.434332 0.683189 0.603612 2.815302 -0.989462 -0.266529 0.226546 0.270702 1.064475 1.437960 -1.792677 0.778012 0.079304 0.412443 0.422841 1.120591 0.910437 -3.052160 -1.102982 0.937179 0.327597 0.467090 1.327744 1.709003 -0.971668 1.360819 -1.907291 2.386526 -2.899028 -0.656885 -1.008349 -1.776132 -1.639533 2.520026 1.662832 2.441504 -0.482390 -0.685978 0.061595 -3.534003 -5.041587 0.534284 0.395324 -0.504055 1.285630 -0.631197 1.120789 -2.535934 0.573443 2.040433 -1.403492 -1.653578 -0.006852 0.562166 0.470397 -0.862148 -0.716183 -0.116963 -0.102992 1.133317 3.268155 -0.908246 -5.468781 -4.102302 -1.458745 2.557812 -1.664873 -0.184964 -1.078778 -1.391647 -1.794433 0.050252 -2.190753 0.360954 -0.184328 -1.476474 -3.463052 1.039832 -0.738542 -0.104269 1.115571 -2.791531 0.708783 1.191089 0.494111 0.202649 0.422603 0.242686 -2.281504 -1.517433 0.950112 -1.648749 2.826459 1.020567 -0.186336 -1.836449 -1.352340 -2.144648 1.546804 -2.077776 1.876976 0.279644 -1.368359 1.139734 -2.295652 0.398016 -1.191071 1.237644 0.620104 -3.832338 3.866111 2.832935 -2.096594 -0.227942 -0.228506 1.258680 0.155707 1.934781 -2.634432 -2.002929 0.654867 0.093143 0.009684 -0.441250 0.745807 -0.369818 -0.764031 -2.841659 -1.291738 2.097617 1.211401 -0.298285 -0.081585 1.399820 -1.216394 0.249246 2.928184 1.447561 1.128168 -2.363843 -5.834408 1.091048 -0.463265 -0.409333 0.651763 -1.620794 -0.809522 1.060712 -1.524830 2.469662 -0.348485 -1.575239 2.610006 -3.399016 -2.599278 -2.362664 -1.476991 0.660095 -0.096580 1.200428 -1.456897 0.372399 -0.877077 0.672499 -1.566265 -1.089549 1.481184 1.659154 2.306113 0.365370 -0.048682 2.911058 0.652226 -0.812431 -0.673347 -0.168987 -1.551168 0.787478 -3.428809 -0.535694 0.588800 1.514172 -1.951115 0.527402 -0.417998 0.950193 0.161264 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 4.054636 -2.250306 -4.151293 8.438841 -0.176593 0.176491 0.852858 0.160657 0.409586 -10.727290 -4.416018 6.418778 2.102390 0.987550 0.251869 3.614246 1.786753 1.932705 -10.392373 0.171538 1.778680 -0.634091 -2.081634 -0.802915 -0.321433 -2.838213 4.938424 1.967260 0.728898 6.484577 -2.134082 5.306546 5.460974 -0.967512 2.143197 4.144496 -1.613360 -0.156475 -3.526002 -2.087493 8.670655 2.051694 0.254182 2.940009 -1.515546 6.983758 1.783265 7.640765 2.109070 -2.937500 3.633572 3.076692 -2.859948 -1.015668 -7.150186 1.234024 4.078823 2.571881 -2.541635 2.935907 -1.836985 1.888060 3.064757 1.718418 9.505127 2.652969 6.952973 6.808644 6.230395 -5.129148 2.160417 0.612882 0.882876 -0.544946 7.405500 -4.969237 -4.787291 -1.230700 -0.352429 -7.872263 0.166864 -0.134498 10.622461 -5.529808 -2.169380 -0.011655 3.031425 8.084522 -3.972342 2.141805 -6.522009 -0.327076 -1.381182 10.354519 1.410970 1.872923 -2.103169 2.760038 -0.857554 1.492294 1.405124 -6.231852 0.437342 -10.249259 -4.994771 -4.321849 0.975485 2.576273 -8.354974 0.511651 -1.146726 4.578857 -11.281843 -0.798354 1.569825 2.346470 8.155447 0.681621 -3.283172 -0.072299 0.469610 2.726674 3.010215 -3.015781 2.565960 -2.396363 0.823155 1.542229 2.518671 1.889770 -9.099667 -2.085468 1.396518 -0.554414 1.224124 3.824223 5.188754 -2.214660 3.397812 -4.719486 5.357846 -9.206721 -2.306418 -3.139801 -6.147883 -3.344314 5.564980 4.711797 6.101857 -1.430728 -3.223776 -0.121506 -9.905700 -11.730637 0.270800 0.732651 -0.649113 2.981199 -1.417797 2.179732 -5.379616 2.343991 5.584312 -3.642961 -3.858609 -0.696826 4.492343 1.373048 -2.418593 -2.522378 -0.545818 -0.706216 1.501906 8.226427 -1.039939 -11.511866 -11.638666 -3.034378 6.134157 -3.103486 0.229516 -3.038975 -2.904201 -5.695488 -0.094806 -5.160864 0.492536 0.173228 -3.267263 -8.061963 2.256237 -0.713200 -1.944654 1.742499 -6.599925 1.612402 4.617379 1.634243 0.473591 1.319197 0.603332 -6.097828 -4.958399 2.277352 -3.971316 6.537751 4.251285 -0.334094 -3.217083 -2.973052 -5.820541 3.463252 -5.469391 4.271093 0.777547 -2.640169 2.847070 -6.859214 -0.008010 -3.969453 2.118000 0.565023 -10.162743 9.787942 5.425218 -4.626924 0.086258 -1.501081 3.801749 -0.089197 4.434388 -5.480670 -3.856130 1.326067 0.461001 -0.147037 -1.450920 1.777932 -2.042206 -1.980403 -6.153359 -2.471019 5.406352 3.132442 -0.672572 0.139797 2.822888 -3.925582 0.983931 6.649055 4.124063 0.676993 -4.958382 -14.371802 2.546095 -3.190232 -2.236922 0.312298 -4.093175 -1.871736 2.426715 -2.814268 5.472741 -0.284360 -2.733936 5.957560 -9.139753 -6.462570 -5.416008 -1.672056 1.233894 -0.559708 1.182065 -3.489844 1.122287 -0.788295 2.140591 -3.016721 -4.329585 1.386103 3.127718 6.552091 -0.306212 -0.467823 7.136620 2.154359 -1.293607 -1.935263 -0.299560 -3.382514 1.732304 -7.982861 -1.302730 1.452332 3.484418 -5.218436 1.798637 -1.061216 1.742991 1.263941 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 1.215852 -0.738346 -0.422149 1.461847 0.381365 -0.639230 0.321198 0.480036 0.149897 -2.083111 -0.769725 0.721747 0.107301 -0.528146 0.241033 0.595552 0.711762 0.335982 -2.045440 0.654682 0.288905 -0.095995 -1.012984 -0.152992 -0.005136 -0.836979 0.131843 0.873166 -0.041827 1.316960 -0.763222 0.515833 1.140099 -0.174956 0.984126 1.329469 0.295157 -0.108600 0.167116 0.235052 2.351192 0.638607 -0.236467 0.584565 0.764338 1.700482 -0.082122 2.214949 0.098936 -0.539438 1.100727 -0.359344 -0.613887 -0.065263 -1.874777 0.542344 1.404624 0.624216 -1.334781 0.956581 -0.749999 0.399144 0.724248 0.445769 2.060282 0.898385 0.979575 1.209191 2.096104 -0.830139 0.127552 0.489894 1.142649 0.134225 0.821793 -0.767005 -0.684593 -1.758975 0.149084 -1.362381 0.188379 -0.260270 1.931827 -1.309059 0.052771 0.790028 0.385521 1.503932 -1.216213 -0.103641 -1.653111 0.069789 -0.055433 2.374703 -0.079324 0.549807 -0.172918 0.812995 -0.071382 0.747394 -0.062034 -1.541495 -1.049826 -2.869330 -1.543906 -0.865994 -0.359304 -0.251105 -2.067269 -0.167829 0.886367 0.929960 -2.197276 0.037451 0.416065 0.161809 1.162458 0.503058 -0.970728 -0.128218 -0.237793 0.515459 0.344417 -0.426338 0.146813 -1.375954 0.471296 0.547192 0.563212 0.035378 -1.725016 0.135375 0.449677 -0.111537 -0.248634 0.404888 0.290998 -1.292166 0.762975 -1.124260 1.273882 -2.062712 -0.564210 -1.133124 -1.417991 -0.385702 2.015748 1.004400 1.284745 0.291030 -0.845919 -0.237624 -2.183412 -2.848544 0.178149 -0.490015 0.331476 0.018889 -0.256380 -0.074746 -0.704185 -0.245591 0.670468 -1.136490 -0.588518 -0.643873 1.190387 0.021422 -0.449413 -0.841381 -0.073569 1.149856 0.257798 0.979762 -0.771134 -2.021011 -1.873372 -0.925884 1.173557 -0.478135 0.248416 -0.340211 -0.322981 -1.747620 0.550891 -1.054638 0.264679 -0.779373 -0.625094 -1.678309 0.445778 -0.424854 0.040975 -0.083281 -1.280687 0.514054 0.357943 0.561100 0.148898 0.332205 0.018474 -1.753805 -1.656266 0.170770 -0.016936 1.901899 0.886245 0.174721 -0.195825 -0.561534 -1.514655 1.249831 -1.756331 0.554654 0.791897 -1.171638 1.321461 -1.078486 -0.701559 -1.183980 0.854639 0.082338 -1.245489 2.328143 1.438776 -1.661763 -0.490838 -1.000312 0.812334 0.538240 1.783219 -0.855047 -0.380231 0.625938 0.226347 -0.246158 -0.478658 0.694660 -0.240063 0.777517 -1.733707 -0.853470 1.133017 1.238319 -0.245063 0.045532 -0.065597 -0.243170 -0.168864 1.824816 0.519165 0.409961 -1.184161 -2.884041 0.431822 -0.223595 -0.078452 0.349764 -1.084632 -0.645940 -0.041745 -0.172032 1.661273 0.645597 -0.130723 1.362903 -1.882808 -1.722756 -0.808549 -0.045418 0.190662 -0.699666 0.822123 -0.971902 0.047231 -0.375674 0.928514 -0.254814 -0.805323 -0.794187 0.402117 0.883507 0.231123 -0.860226 1.603771 0.164990 -0.486268 -0.361253 0.074549 -0.032402 0.710951 -1.085796 -0.644836 -0.559455 0.729241 -1.059702 1.275852 -0.078296 0.860616 0.587640 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/weighted-job-scheduling.cpp__main = 1.249432 -0.501592 -0.576152 2.047363 0.046581 -0.219376 0.513175 0.620920 0.074006 -3.187555 -1.579092 0.942768 0.406921 -0.037692 0.397845 0.733254 0.567883 0.866426 -3.409595 0.190298 0.833074 0.182045 -0.342203 -0.425443 -0.009157 -0.804103 0.109932 0.740540 0.206385 2.057647 -0.784780 1.067431 1.680846 -0.116070 0.525009 1.517593 -0.090143 -0.077441 -0.216135 -0.286848 2.746531 0.703363 -0.137789 0.862437 -0.011830 2.159340 0.040491 2.232998 0.104324 -0.951704 1.249497 -0.556618 -0.979559 -0.144505 -1.953568 0.548242 1.899915 1.350654 -0.919250 1.237992 -0.723666 0.551323 0.874267 -0.168912 2.498255 1.254330 1.457315 1.734192 2.209779 -1.494822 0.474168 0.174334 0.445601 -0.282830 1.253917 -1.454582 -0.778997 -2.087792 0.002226 -2.851417 -0.017663 -0.121488 3.189653 -1.780163 -0.031063 0.856816 0.625028 2.121232 -1.191426 0.300590 -1.929855 0.030144 -0.275997 2.973544 0.210291 0.383903 -0.437418 0.847296 0.067418 0.643832 0.209910 -1.567275 -1.105509 -3.604837 -1.570578 -1.032632 0.089983 0.465389 -2.505179 -0.118450 0.789825 1.108424 -3.354930 -0.210847 0.706032 0.922274 1.090202 0.410757 -1.422941 -0.122609 -0.166065 0.732478 0.857896 -1.153896 0.537717 -1.265522 0.015634 0.516611 0.724504 0.199961 -2.313368 -0.640662 0.279185 -0.335392 0.112557 0.867246 1.056961 -0.698712 1.062899 -1.668133 1.677672 -2.781483 -0.396621 -0.933904 -1.832324 -0.812791 2.274118 1.374501 1.270658 0.009828 -1.150900 -0.247368 -2.591619 -3.253955 0.302488 0.084839 0.683237 0.487077 -0.423688 0.282779 -1.289194 0.282864 0.900254 -1.111439 -0.819731 -0.343257 1.814980 0.112511 -0.784215 -1.231486 0.132397 0.807151 -0.097166 1.669112 -0.639111 -2.064717 -2.913586 -1.190402 1.857176 -0.779807 0.161427 -0.805633 -0.368348 -1.889295 0.389015 -1.460522 0.187012 -0.019521 -1.257609 -2.464387 0.650886 -0.346390 -0.511280 0.558538 -1.769967 0.393795 1.162612 0.884694 0.183903 0.337814 0.302749 -2.059779 -1.887191 0.015945 -0.852847 1.892911 1.339526 0.119317 -1.013844 -0.755321 -1.625496 1.496697 -1.442467 0.954866 -0.035013 -0.864795 1.302867 -1.691786 -0.252114 -1.654386 0.713725 0.334472 -2.877300 2.880477 1.502683 -1.502864 -0.315999 -1.131752 0.975205 0.391860 1.797354 -1.376540 -0.972081 0.620911 -0.180195 -0.116830 -0.868571 0.755593 -0.564504 0.023540 -1.887753 -0.776920 1.553606 1.243795 -0.265216 0.573384 0.946957 -0.297652 0.262612 2.094358 0.962293 -0.214943 -1.357457 -3.985948 0.913345 0.213345 -0.154978 0.120802 -1.365194 -0.777083 0.568813 -0.103605 1.776707 1.167986 -0.318029 1.823119 -2.261904 -1.990355 -1.208838 -0.024188 0.547257 -0.673035 0.293544 -0.986559 0.375950 0.029691 0.686145 -0.069280 -1.437986 -0.914101 0.572468 1.988222 0.104042 -0.451902 2.254702 0.396733 -0.681273 -0.308451 -0.200575 -0.368313 0.528507 -1.382199 -0.429723 0.062625 0.926885 -1.505875 1.124937 -0.290798 0.315544 0.695053 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.347070 -0.316043 -1.383030 3.795953 0.348857 -1.046170 0.973269 1.109040 0.145984 -5.400899 -1.840172 3.102720 0.242738 -0.462381 -0.398948 1.463856 1.458838 1.449829 -4.941255 0.785824 1.236774 0.407326 -1.681493 -0.490780 0.267356 -1.283064 0.393019 1.621106 0.359055 3.516040 -1.525750 1.509953 3.086843 -0.347995 1.203420 3.038815 0.451551 0.327491 0.290921 -0.790835 4.573335 1.278278 -0.452300 1.891012 0.729086 4.187146 0.021298 4.423630 -0.289328 -1.715699 1.154088 0.026987 -1.797181 -0.530837 -3.552390 1.356209 2.529940 2.270575 -2.362521 2.200024 -1.044517 0.916735 1.862014 0.324642 4.170733 2.853926 1.873939 3.353591 4.891366 -2.283350 0.709318 0.666347 1.822435 0.281456 1.938223 -1.710483 -1.767394 -2.177620 -0.288721 -4.529557 -0.032515 -0.380491 6.062715 -3.436806 0.141770 0.651700 1.315758 3.792592 -2.607771 0.104207 -3.902508 0.044090 -0.577460 5.681937 0.321560 1.244248 -0.941621 1.793739 -0.102108 1.215180 -0.461374 -3.096776 -1.708660 -5.755595 -2.621681 -2.298949 -0.562141 0.579864 -4.969032 -0.535919 1.104399 3.331830 -6.314387 -0.552297 0.968209 0.549496 2.474810 2.331054 -2.335608 0.312619 -0.694047 0.280219 0.609740 -1.350726 0.461655 -1.781010 -0.628919 0.553611 1.084825 1.044296 -5.840336 -0.204506 0.777966 -1.142876 0.243934 1.863689 1.211953 -1.944704 1.756148 -3.122033 2.749849 -4.916081 -1.807365 -1.229824 -4.034058 -1.560393 3.526457 2.947985 2.813752 -0.516409 -1.167786 -1.508416 -5.336134 -5.924511 0.882937 -0.640249 0.857970 0.846134 -0.768672 -0.034696 -2.695229 -0.239689 2.174708 -2.178575 -1.470205 -1.284860 4.673172 0.094601 -0.609188 -2.149654 -0.584747 1.642018 0.377367 2.381211 -1.812600 -4.584291 -5.463776 -1.789091 2.973791 -1.357806 0.221741 -1.383729 -0.962329 -3.090941 0.577906 -2.505694 0.242257 -1.052918 -1.215801 -4.421972 1.922084 -0.878258 -1.079612 0.442030 -2.934654 1.029952 1.910879 1.040574 0.321610 0.402405 0.124119 -3.276064 -2.954176 1.057497 -0.807474 3.212381 2.917595 0.264830 -1.559464 -1.552122 -3.669375 3.220953 -3.329614 1.928052 1.300164 -1.093295 3.120031 -2.853572 -0.557850 -2.866244 1.877267 0.474741 -5.013062 4.666675 2.880923 -3.379121 -0.597122 -1.779488 1.851342 1.320710 3.101900 -2.755917 -2.179256 1.712971 -0.294257 -0.354275 -1.100249 1.115974 -0.740529 1.491452 -3.698106 -1.101625 2.944039 2.151086 -0.911338 0.413329 0.557684 -1.555920 0.793465 3.871961 1.962031 0.571965 -2.880727 -6.780818 1.051489 -1.237255 0.075167 0.176968 -2.236227 -1.204869 1.085424 -1.414135 3.621997 -0.161113 -1.469443 3.247433 -5.082000 -3.844901 -1.444261 -0.117210 1.088415 -1.036752 1.788880 -1.724189 0.400082 -0.121612 1.907467 -0.715695 -2.781687 -0.995045 1.396341 3.265015 -0.272823 -1.525220 3.989733 -0.065639 -0.999868 -0.526181 -0.029490 -0.144079 0.332051 -3.915115 -0.840859 -0.399233 2.005251 -3.117561 3.222093 -0.123432 1.150527 1.502825 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = 0.399748 -0.084499 -0.091516 0.503323 0.224496 -0.328547 0.148134 0.168186 0.008593 -0.782344 -0.253138 0.305712 0.033418 -0.273179 0.060355 0.196020 0.284352 0.407862 -0.448786 0.264555 0.082604 0.091275 -0.400984 -0.230415 -0.038131 -0.242020 -0.047188 0.245830 0.060690 0.537890 -0.365490 0.054414 0.423161 -0.026412 0.395427 0.551379 0.430018 -0.040893 0.026581 0.034737 0.983435 0.203522 0.011923 0.333177 0.384326 0.635978 0.013042 0.607506 -0.140607 -0.196617 0.179011 -0.171282 -0.191901 -0.044311 -0.734266 0.339835 0.487434 0.334620 -0.583397 0.436496 -0.128022 0.154232 0.275480 0.048842 0.633964 0.310361 0.109353 0.466232 0.891571 -0.338800 -0.009775 0.165079 0.538400 0.030468 0.443710 -0.121399 -0.212448 -0.712620 -0.053623 -0.524674 0.212583 -0.014030 0.913927 -0.589743 0.204261 0.566711 0.162825 0.471344 -0.384422 -0.223071 -0.631822 0.049156 -0.124797 0.890606 0.087752 0.177946 -0.160578 0.322363 0.038684 0.300987 -0.021639 -0.582344 -0.397085 -1.209278 -0.619792 -0.338874 -0.261729 -0.196418 -0.673958 -0.227930 0.549087 0.692391 -0.896569 0.053441 0.211179 0.024223 0.187048 -0.160185 -0.351641 0.103071 -0.201859 0.059432 0.014155 -0.226167 -0.105272 -0.281980 0.055111 0.092425 0.261026 -0.043868 -0.554616 -0.004443 0.060751 -0.011597 -0.184245 0.016719 -0.001716 -0.658229 0.294065 -0.445237 0.449786 -0.636620 -0.108068 -0.345974 -0.675258 -0.143729 0.780326 0.106743 0.527281 0.067967 -0.336222 -0.201330 -0.730659 -1.127270 0.332663 -0.200705 0.170115 0.059741 -0.078484 -0.144297 -0.283828 -0.235572 0.359051 -0.479664 -0.171849 -0.157190 0.629408 -0.183834 -0.215962 -0.505870 0.029157 0.635599 0.261639 0.167213 -0.444193 -0.490990 -0.579692 -0.387702 0.464295 -0.178923 0.169396 -0.037951 -0.134069 -0.556272 0.255581 -0.434498 0.265384 -0.356127 -0.188858 -0.669920 0.100028 -0.212045 -0.118804 0.010879 -0.483290 0.290013 0.013005 -0.045044 -0.087825 0.035379 0.129135 -0.711772 -0.651300 0.003131 0.074368 0.540909 0.402349 0.244437 -0.244749 -0.187004 -0.540218 0.440340 -0.744511 0.160558 0.312299 -0.403429 0.576100 -0.411544 -0.289047 -0.475984 0.375201 0.084353 -0.426602 0.854589 0.545721 -0.645353 -0.206628 -0.347552 0.272765 0.260572 0.836319 -0.395452 -0.130035 0.376158 -0.081996 -0.101860 -0.298019 0.292611 -0.071183 0.484784 -0.694009 -0.316119 0.341535 0.554003 -0.105620 0.092551 0.033775 -0.064641 -0.168006 0.779437 0.243884 0.263280 -0.528434 -0.817881 0.231581 -0.264387 0.133978 0.167371 -0.269100 -0.191323 0.042364 -0.020333 0.620535 0.205651 -0.034389 0.546909 -0.757351 -0.692004 -0.065919 -0.024401 0.230033 -0.433935 0.423053 -0.436243 -0.008129 -0.230709 0.380652 -0.064243 -0.170419 -0.301436 0.125952 0.332823 0.208850 -0.339829 0.664802 -0.004703 -0.288267 0.074797 -0.064694 0.223855 0.192582 -0.424923 -0.263576 -0.270152 0.276044 -0.406983 0.671053 -0.175666 0.247676 0.328014 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 3.296672 -1.354164 -1.791699 4.535880 0.554595 -1.455907 1.244729 1.517452 0.523801 -7.021990 -2.271928 4.847792 0.213379 -0.937055 -0.645176 1.816050 1.933217 2.060556 -6.378605 1.115271 1.061852 0.470693 -2.521115 -1.115728 0.230929 -1.495977 1.124263 2.017354 0.516884 4.161645 -1.913872 1.269797 3.718472 -0.289177 1.737595 3.846849 0.586638 0.286214 0.201027 -1.371549 6.337632 1.997989 -0.456525 2.763525 1.328074 5.053960 0.350864 6.258481 0.603714 -1.882529 1.504200 -0.399110 -2.543514 -0.768416 -5.097168 1.666563 3.092528 2.403095 -3.086850 2.884444 -1.022983 1.207741 2.223911 0.409359 5.779531 3.088932 2.603986 4.000940 5.991778 -2.858793 0.657683 0.957121 2.946538 0.699572 3.293489 -2.764922 -2.563685 -2.944393 -0.269213 -5.610822 0.292192 -0.552888 8.244309 -4.278858 0.423260 1.048813 1.671598 4.440010 -3.061911 -0.387390 -5.148850 0.229092 -0.538316 7.671614 0.472501 1.675420 -1.133987 2.183211 -0.022350 1.636504 0.176304 -3.981447 -1.922886 -8.126206 -2.859750 -2.993449 -0.883102 0.324893 -6.001486 -0.803703 1.582479 4.399472 -7.960085 -0.684008 1.449247 0.162486 3.938482 2.278468 -2.637963 0.674986 -1.024490 0.418829 0.631237 -2.026618 0.055886 -1.810743 -0.241272 0.603787 1.435167 1.283463 -7.732045 -0.266604 1.081923 -0.442290 0.081198 1.958671 1.112479 -2.834778 2.074247 -3.737909 3.324178 -6.308089 -2.002249 -1.562477 -4.906608 -1.882718 5.770576 3.416520 4.237897 -0.534269 -1.184318 -1.938447 -6.595477 -8.464917 1.622109 -0.862029 0.913743 0.749104 -0.698559 -0.266974 -3.276822 -0.616599 2.726086 -2.777047 -1.648888 -1.464467 5.517280 -0.207095 -0.950539 -2.577954 -0.589381 2.791163 1.010899 2.642846 -2.440957 -7.237169 -6.515898 -2.258656 3.651989 -1.713759 0.304816 -1.309574 -1.336641 -3.629109 0.634489 -3.089503 1.092911 -1.430621 -1.818196 -5.467606 2.033107 -1.139705 -0.543248 0.495375 -3.595765 1.358926 1.776536 1.591350 -0.007913 0.752324 0.468126 -4.891130 -4.068163 1.153301 -0.927536 4.557228 3.575435 0.559668 -2.148002 -1.645813 -4.909099 3.672541 -5.344340 2.264156 1.410576 -1.891454 3.954560 -3.386766 -0.424055 -3.677697 2.490367 0.647332 -6.589130 6.370689 4.000742 -4.236001 -0.838989 -2.137547 2.024331 1.703450 4.203134 -3.664250 -2.823142 2.251301 -0.843909 -0.461337 -1.236195 1.511939 -0.655371 2.098109 -5.186960 -1.733279 3.431368 2.628275 -1.014165 0.524035 0.611064 -1.949867 0.220336 5.524281 2.216737 1.096098 -4.095682 -9.753149 1.453435 -0.876608 0.148101 0.613192 -2.818818 -1.661726 1.225802 -1.894203 4.343630 -0.131024 -1.792011 3.911940 -6.582081 -4.758493 -1.630797 -0.247549 1.546306 -1.427320 2.567245 -2.108833 0.295659 -0.625566 2.345664 -0.994650 -2.959618 -1.089393 1.760735 3.926153 0.270227 -2.027512 4.846824 -0.244634 -1.432971 -0.371894 -0.375602 0.028581 0.945679 -5.198670 -1.076322 -0.770647 2.468613 -3.696998 4.109508 0.055899 1.682679 1.730038 -PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = -0.010673 -0.115027 -0.098960 0.789071 -0.083893 0.278286 0.112885 -0.340060 -0.173393 -1.022211 -0.289363 -0.025296 0.149359 0.451324 0.094006 0.156815 0.083923 0.106244 -0.883526 -0.236783 0.449065 0.002086 0.382185 0.246993 0.045798 -0.317109 0.271784 0.115974 0.146406 0.726407 -0.238803 0.649951 0.628383 -0.004620 0.024618 0.324270 0.042672 0.211511 -0.406789 -0.014710 0.588723 -0.215220 0.192361 -0.013223 -0.472091 0.646655 0.118010 0.684123 0.502683 -0.487328 0.544378 -0.203070 0.037930 0.053078 -0.368154 0.082374 0.229905 0.546863 -0.097331 0.165643 -0.197496 0.241949 0.163203 0.035257 0.574101 0.349948 0.325803 0.476917 0.340262 -0.552097 0.209967 -0.075576 -0.447661 -0.282733 0.305648 -0.386221 -0.237119 -0.300363 -0.089558 -0.390229 -0.271757 0.184716 0.348468 -0.468237 -0.247452 0.045708 0.043103 0.671409 -0.126466 0.426009 -0.627515 -0.041777 0.094856 0.538368 0.243199 -0.058710 -0.088751 0.036039 0.027594 0.093022 0.094830 -0.398529 -0.063966 -0.588696 -0.508535 -0.337184 0.416798 0.501922 -0.772574 0.053647 -0.164037 0.176855 -0.967711 -0.015079 0.067805 0.642680 0.238619 0.186749 -0.145791 -0.118947 0.239940 0.162322 0.506845 -0.311985 0.431182 -0.513422 -0.127948 0.090056 0.228374 -0.045979 -0.262133 -0.352739 -0.069265 -0.217356 0.169576 0.363874 0.538430 0.263889 0.396874 -0.387190 0.435919 -0.483542 -0.143181 -0.132631 -0.571353 -0.365570 0.681556 0.304145 0.282626 -0.226294 -0.675716 0.000863 -0.710351 -0.807574 -0.197280 0.203355 0.169575 0.608814 -0.277610 0.416714 -0.596858 0.361075 0.330760 -0.153468 -0.406911 0.078560 -0.360922 0.124430 -0.222122 -0.318364 0.060503 -0.299239 -0.336046 0.858629 0.018636 -0.487257 -1.044765 -0.379523 0.581156 -0.332453 0.052339 -0.422647 -0.088437 -0.628114 -0.027091 -0.477105 -0.277075 0.237225 -0.356702 -0.752366 0.305341 -0.160008 -0.149879 0.404276 -0.593197 -0.012725 0.365973 0.082455 0.347905 0.028077 -0.021117 -0.242813 -0.283954 0.124048 -0.583313 -0.062922 0.080726 -0.075513 -0.166036 -0.515285 -0.272514 0.185929 -0.070020 0.340678 0.014729 -0.053840 0.120902 -0.478624 0.102585 -0.116746 0.015924 0.277049 -0.740793 0.471328 0.129373 -0.209461 0.008302 -0.045877 0.319764 0.007414 0.228131 -0.350348 -0.276633 0.021682 0.064050 0.099638 -0.083176 0.108048 -0.306299 -0.405347 -0.332148 -0.152413 0.411579 0.265131 -0.065311 0.028482 0.642215 -0.159566 0.394235 0.340270 0.298348 -0.098944 -0.061989 -1.017650 0.306137 0.037560 -0.053546 -0.053282 -0.510401 0.036659 0.463932 -0.044953 0.472530 0.221447 -0.070896 0.603593 -0.525204 -0.466749 -0.461462 -0.280968 0.031897 -0.054353 -0.311783 -0.211144 0.280399 0.193514 0.012559 -0.032194 -0.361218 0.061459 0.216750 0.562371 -0.304946 0.341718 0.640114 0.241988 -0.114413 -0.151304 0.090407 -0.249795 -0.026512 -0.471364 -0.069767 0.330146 0.241068 -0.422764 -0.097945 -0.435272 -0.247135 0.143777 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.720654 -0.435379 -1.447760 4.084693 0.719016 -1.914721 1.284461 2.060883 0.430220 -6.220340 -2.558190 4.398631 0.245548 -1.515884 -0.420721 1.617130 2.112496 2.246529 -6.787142 1.488996 1.011317 0.475233 -2.838545 -1.561590 0.140839 -1.540506 0.457313 2.247345 0.333625 4.211781 -2.100898 1.068974 3.388697 -0.089663 2.551387 4.086224 0.411170 -0.138766 0.587626 -1.151718 6.417008 2.754959 -0.624488 2.703849 1.981189 5.132657 0.285647 4.840727 -0.449194 -1.660311 1.040342 -0.026487 -2.709436 -0.588294 -5.022102 1.505027 3.423269 2.170050 -3.417136 3.199695 -0.991835 1.176851 2.301355 0.373687 5.338337 2.645621 1.986282 3.659376 6.185036 -2.604520 0.736111 0.727697 3.389531 0.319652 2.614280 -2.154221 -2.548762 -3.438997 -0.004702 -6.598674 0.628404 -0.505420 7.400943 -4.257099 1.125618 1.507934 1.592728 4.191816 -3.316176 -1.172347 -4.725846 0.167725 -1.241571 7.709476 0.275682 1.901603 -0.747459 2.422510 0.063957 1.720760 -0.567686 -4.348074 -1.840385 -8.616181 -2.791007 -2.949137 -1.347937 -0.238271 -5.087788 -0.976542 1.920590 4.786303 -7.314389 -0.582639 1.401332 -0.275010 1.836794 1.001347 -2.421652 0.779086 -1.638287 0.796931 0.684768 -2.058919 -0.199408 -1.462705 -0.443969 0.858361 1.639857 1.231164 -6.780875 -0.050715 1.436737 -0.796613 -0.421561 1.786242 0.712713 -3.083898 2.014455 -4.202605 3.567235 -5.629899 -1.372355 -2.061033 -4.495649 -1.698247 3.926393 3.050839 3.293121 -0.114221 -0.538557 -1.371951 -6.216135 -8.125966 2.112529 -1.054846 1.073496 0.040019 -0.600553 -0.672001 -3.185240 -1.016212 2.489676 -3.033648 -1.650375 -1.744713 6.387386 -0.097227 -1.258961 -2.297933 -0.372211 3.043898 1.306818 2.176960 -2.921976 -5.905186 -5.818173 -2.316634 3.760673 -1.619687 0.205321 -1.126156 -1.167426 -3.345964 0.917901 -3.204467 1.364928 -1.986039 -1.136195 -5.258880 1.512313 -1.191764 -0.509548 0.150564 -3.526271 1.538195 2.248654 1.219210 -0.394831 0.762471 0.928335 -4.373851 -3.727821 1.055819 -0.294453 4.533831 3.695199 0.735971 -2.236999 -1.268406 -4.463423 3.814282 -4.592649 2.224315 1.373242 -2.386434 4.235282 -3.176926 -0.973234 -3.367504 2.610246 0.450964 -5.446388 6.305835 4.182531 -4.649208 -0.994256 -2.515856 2.097279 1.733002 4.707361 -3.496255 -2.560258 2.253796 -1.068111 -0.554528 -1.511320 1.653042 -0.471697 2.453599 -5.049189 -1.608312 3.717139 2.794132 -0.866628 0.798080 0.179347 -1.427365 0.435935 5.464339 1.944054 1.315180 -4.413966 -8.642674 1.473637 -1.024941 0.552876 0.427768 -1.995375 -2.055668 0.568805 -1.310639 4.476371 0.883564 -2.074720 3.909633 -6.028808 -4.983066 -2.051860 0.018247 1.637758 -1.783889 2.489807 -2.352060 0.352651 -0.955376 2.806742 -0.491222 -2.773226 -1.615081 1.750982 3.578516 0.721841 -2.730024 4.996965 -0.305587 -1.490101 -0.354460 -0.547907 0.211280 1.074245 -4.444846 -1.466859 -1.259828 2.565174 -3.646573 4.391506 0.227047 2.352546 1.993240 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.806852 -1.145856 -0.524445 1.904682 0.726590 -0.649077 0.397123 0.560860 0.315935 -2.801831 -1.209006 1.592850 0.061405 -0.667342 0.232034 0.756769 1.155962 0.328905 -2.591379 0.760844 0.107402 -0.308992 -1.461926 -0.154376 -0.008848 -1.139209 0.643136 1.196167 -0.019594 1.626806 -0.950246 0.656130 1.389531 -0.101608 1.405346 1.703244 0.248149 -0.279105 -0.028376 -0.110898 3.256611 0.885195 -0.105542 1.141270 1.119592 2.190935 -0.105389 3.305993 0.778895 -0.581021 1.611684 -0.369375 -0.943592 -0.066633 -2.743624 0.707982 1.612602 0.288522 -1.732721 1.191036 -0.739961 0.574224 0.831455 0.480702 2.752253 1.046540 1.406498 1.472642 2.644623 -1.162105 0.004689 0.885003 1.773881 0.588679 1.155618 -1.192791 -1.009712 -1.719534 0.183330 -1.658350 0.370675 -0.677146 2.746907 -1.557832 -0.132238 0.804043 0.347465 1.847227 -1.425174 -0.172033 -2.231221 0.209635 -0.010047 3.030551 -0.075569 0.867103 -0.233874 0.811916 -0.203994 1.100985 -0.040588 -2.054464 -1.150595 -3.940355 -1.871129 -1.202208 -0.328232 -0.457348 -2.534474 -0.041999 0.710781 1.388824 -2.649991 -0.175903 0.540178 0.005739 1.651257 0.812678 -1.138509 -0.326486 -0.068229 0.811932 0.380978 -0.464303 0.115509 -1.744036 0.668099 0.553901 0.837612 0.075475 -2.325457 0.049914 0.610269 0.216902 -0.298760 0.370938 0.359064 -1.661088 0.980040 -1.244328 1.564884 -2.674865 -0.882971 -1.622788 -1.718960 -0.555058 2.924220 1.351968 2.286677 0.557472 -0.759732 -0.424748 -2.801654 -3.878530 0.259881 -0.770982 0.329736 0.034997 -0.212909 0.011571 -1.033956 -0.447640 0.903946 -1.460199 -0.795770 -0.908656 1.338190 -0.101396 -0.568336 -1.093033 -0.051759 1.387454 0.328801 1.252190 -0.970398 -3.441678 -2.322936 -1.245402 1.474075 -0.741671 0.353497 -0.289031 -0.457337 -2.018136 0.435467 -1.362228 0.384290 -1.006474 -1.074167 -2.127496 0.539184 -0.560708 0.214866 -0.009174 -1.713480 0.716385 0.617947 1.036241 0.191527 0.668893 -0.096205 -2.380012 -2.158765 0.145804 -0.052903 2.653977 1.237935 0.124536 -0.372079 -0.793629 -2.120890 1.505039 -2.743766 0.733981 1.058666 -1.565433 1.538510 -1.426610 -0.720026 -1.453467 1.115255 0.130110 -2.211048 2.903008 1.958671 -2.248557 -0.783348 -1.376901 0.986327 0.597818 2.424504 -1.174130 -0.478225 0.804725 0.312899 -0.310752 -0.577062 0.949900 -0.088486 0.916873 -2.480555 -1.349701 1.511602 1.555114 -0.325137 -0.100214 0.005476 -0.143026 -0.045952 2.565344 0.658425 0.628199 -1.710523 -4.453635 0.511484 0.092547 -0.280792 0.757014 -1.532779 -0.985731 -0.098975 -0.622574 2.143215 0.354460 -0.074358 1.786430 -2.289158 -2.155052 -1.034912 -0.292321 0.282098 -0.861169 1.239875 -1.286717 -0.073766 -0.714982 1.130506 -0.517208 -0.921465 -0.840923 0.582125 1.179961 0.454958 -0.872591 2.008449 0.300399 -0.649866 -0.427355 0.054010 -0.037005 1.073792 -1.951446 -0.849889 -0.780341 0.806323 -1.297339 1.521285 0.095536 1.330245 0.609036 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.118344 -1.120458 -1.965398 4.199162 0.565369 -1.663612 0.862638 1.220342 0.595475 -5.533916 -1.966965 3.417965 0.259488 -1.328855 -0.076290 1.817387 1.611460 1.387599 -5.411042 1.484270 0.865893 -0.050085 -2.850193 -0.747764 0.056288 -1.628273 0.875946 1.965241 0.019842 3.380902 -1.691061 1.414411 3.063785 -0.352080 2.151949 3.328265 0.050920 0.196561 0.382824 -0.336202 5.541601 2.320723 -0.963339 1.898990 1.466113 4.456806 0.155604 5.058386 -0.755513 -1.479621 1.463275 0.343070 -1.845242 -0.454071 -4.428299 1.183017 3.169474 1.566199 -3.105454 2.429706 -1.367576 1.120116 2.136531 1.220882 5.388089 2.395067 2.614733 3.576226 5.286105 -2.021613 0.875221 0.681487 2.710003 0.024163 2.713876 -1.677319 -2.591971 -2.481048 0.109742 -4.562970 0.332137 -0.350210 5.661063 -3.647257 0.331499 0.674313 1.671513 4.181947 -3.173137 -0.362634 -4.229705 0.107877 -0.849024 7.079715 0.212534 1.711884 -1.040757 2.270297 -0.221830 1.326512 -0.447223 -3.967183 -1.471781 -7.283696 -2.868078 -2.610930 -0.979520 0.080678 -5.293688 -0.778816 1.157819 3.710846 -6.415286 -0.289578 0.956893 -0.173829 3.315120 1.139866 -2.285453 0.582341 -0.995405 0.735194 0.679060 -1.122325 0.190610 -2.344460 0.598865 1.014075 1.259701 1.191603 -6.160385 0.435679 1.442769 -0.704267 -0.095970 2.119530 1.120273 -2.894158 1.793470 -3.479803 3.085327 -5.437648 -1.356284 -2.059462 -4.269685 -1.358239 3.573371 3.245190 3.179006 -0.240855 -1.086630 -1.125611 -6.176510 -7.894733 0.915915 -1.037714 0.445760 0.094675 -0.638482 -0.342298 -2.714524 -0.218460 2.699251 -2.673671 -1.624953 -1.756660 5.076334 0.383813 -1.135917 -1.517636 -0.863230 2.115413 1.035906 2.776517 -1.995554 -5.877905 -5.780839 -1.949136 3.182229 -1.406124 0.274038 -1.467985 -1.146765 -4.160932 0.921314 -2.705602 1.070223 -1.728352 -0.760393 -4.498284 1.196182 -0.863058 -0.087050 -0.341158 -3.232016 1.291421 1.977247 0.738769 0.017476 0.979158 0.403597 -3.720932 -3.266105 1.471743 -0.458565 4.642309 3.053985 0.390008 -1.221383 -1.242817 -4.357594 3.481167 -4.243360 2.002564 1.720121 -2.135312 3.627309 -2.852024 -1.537359 -2.731367 2.219179 -0.058540 -3.928774 5.545523 3.821173 -4.068218 -0.632833 -1.959307 2.229848 1.316288 3.817152 -3.005273 -1.920415 1.675040 -0.271660 -0.520522 -0.946443 1.347323 -0.742224 1.867250 -4.317816 -1.383706 3.337756 2.309467 -0.868570 0.098749 -0.333993 -1.895400 0.211409 4.471673 1.781358 1.081722 -3.641855 -7.767597 0.943829 -2.112465 -0.186408 0.243126 -2.018469 -1.547946 0.304124 -1.521266 4.165603 0.635713 -1.936696 3.421223 -5.710926 -4.448124 -2.260758 -0.112508 0.800549 -1.306066 2.276254 -1.860857 0.160012 -0.681203 2.518583 -0.848780 -2.920995 -1.070075 1.546032 3.005093 -0.042358 -2.655422 4.096591 0.018480 -0.974054 -0.950403 -0.072128 -0.420258 1.279133 -4.315703 -1.536863 -1.028973 2.213395 -3.272124 3.499957 -0.044133 2.245326 1.637883 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.255945 -1.479346 -1.259011 3.894986 1.048028 -0.744416 0.860481 1.065799 0.800809 -5.625540 -2.453872 4.262076 0.149044 -0.753957 -0.125214 1.434785 2.149205 1.213187 -5.462321 0.906085 0.443568 -0.279365 -2.272464 -0.546989 0.071022 -1.776829 1.758899 2.035532 0.325082 3.401977 -1.660710 1.466831 2.906973 0.006357 2.179448 3.184809 0.120079 -0.441561 -0.571385 -1.296766 5.720965 1.899003 -0.230154 2.589866 1.317736 4.348903 0.379308 5.420676 1.748059 -1.300715 1.907087 -0.147743 -2.149175 -0.436903 -4.864358 1.183770 2.358691 0.769387 -2.754939 2.207141 -0.773282 1.134570 1.681157 0.366220 4.875802 1.872656 2.606951 3.096548 4.754337 -2.550473 0.370667 1.196118 2.901616 1.190410 2.533838 -2.252071 -2.301877 -2.165019 0.002766 -4.199277 0.435534 -1.188237 5.690612 -3.204757 -0.107633 0.722146 0.782259 3.732664 -2.456198 -0.214397 -4.328579 0.304559 -0.161936 5.731423 0.321069 1.527653 -0.697674 1.418032 -0.437164 1.640914 0.082784 -3.902270 -1.260739 -7.205882 -2.634778 -2.652935 -0.415842 -0.129794 -4.525077 0.001446 0.467612 3.685936 -5.639810 -0.783973 0.989835 -0.086223 2.767033 1.269093 -1.679703 -0.152441 -0.182417 1.280781 0.833006 -1.502279 0.261866 -1.988877 0.386036 0.685974 1.549194 0.857634 -4.970579 -0.435817 1.289517 0.360207 -0.053075 1.341887 1.130793 -2.431197 1.814167 -2.719025 2.949553 -4.765094 -1.665464 -2.201727 -3.184554 -1.623510 4.899642 2.792898 4.203211 0.462172 -0.702157 -1.040487 -5.265240 -7.253841 0.965833 -1.040389 0.458400 0.560459 -0.469043 0.263980 -2.721379 -0.497590 1.994087 -2.494304 -1.729194 -1.335145 2.978051 -0.065155 -0.966470 -1.915277 -0.237161 1.928143 0.714966 2.642203 -1.876156 -6.833416 -4.895788 -2.165910 3.113756 -1.752550 0.374858 -0.918041 -1.108443 -2.964948 0.317373 -2.692707 0.653726 -1.370330 -1.929668 -4.431234 1.322911 -1.052660 0.074088 0.565228 -3.357590 1.357101 1.768919 1.829886 0.128964 1.171281 0.046021 -3.967415 -3.272670 0.622863 -0.788943 4.605602 2.591803 0.107299 -1.719610 -1.596930 -3.893504 3.031691 -4.826374 1.973235 1.392963 -2.220570 2.744247 -2.891333 -0.687848 -2.592499 2.141242 0.468451 -5.409783 5.052501 3.722298 -3.960902 -1.024234 -2.184549 1.845554 1.048110 4.003186 -2.886654 -1.828040 1.580965 0.031134 -0.400871 -1.166330 1.452114 -0.161054 1.135611 -4.538909 -2.038318 3.109250 2.308799 -0.710627 -0.065495 0.679279 -0.716036 0.546649 4.692251 1.622078 1.178527 -3.578062 -8.693055 1.127373 0.320389 -0.271201 1.258768 -2.720396 -1.646684 0.470407 -1.953912 3.863028 -0.079617 -0.968546 3.487003 -4.662014 -3.956835 -2.089709 -0.813790 0.969015 -1.098665 2.439521 -2.086874 0.024038 -1.192967 1.919969 -1.226141 -2.049523 -0.703982 1.676681 2.904252 0.643318 -1.308024 3.953346 0.393243 -1.279408 -0.612439 -0.240858 -0.534612 1.294476 -4.568345 -1.191605 -0.694524 1.761228 -2.856744 2.687266 0.168658 2.137155 0.924985 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.039156 -0.986819 -0.669121 2.258583 0.385723 -0.221090 0.403232 0.045084 0.300421 -3.053016 -0.812730 1.907146 -0.107088 0.037654 -0.385195 0.954873 0.976589 0.369268 -2.361538 0.293690 0.464428 -0.076939 -0.601578 0.075637 0.340960 -0.858231 1.273544 1.016782 0.199371 1.662848 -0.821681 1.047931 1.603406 0.020023 0.644896 1.466428 0.095756 0.227292 -0.242417 -0.667471 2.370014 0.462819 -0.324155 1.001694 0.272957 2.224170 0.463879 2.720536 1.006082 -0.834756 0.797893 0.096568 -0.898290 -0.394915 -2.249706 0.709361 0.839216 0.917069 -1.236844 0.838786 -0.394793 0.631571 0.878635 0.252161 2.577686 1.178041 1.501724 1.749706 2.382513 -1.305304 0.267141 0.644709 1.251272 0.550879 1.194749 -1.193711 -1.087629 -1.136916 -0.315063 -2.026154 -0.000395 -0.352232 2.598229 -1.563742 -0.390276 -0.269553 0.220220 2.120393 -1.225063 0.379725 -2.415242 0.211215 0.346695 2.973336 0.314019 0.552145 -0.473117 0.863590 -0.280193 0.720736 0.087060 -1.619173 -0.498228 -3.121523 -1.239722 -1.390378 0.125275 0.273633 -2.841605 0.145906 0.051832 1.621639 -3.199314 -0.494326 0.442034 0.190894 1.785702 0.826234 -0.568743 0.100013 0.032140 0.376377 0.241658 -0.543318 0.376651 -1.116561 0.018112 0.179983 0.715756 0.655191 -2.987222 -0.174221 0.443225 0.016024 0.342995 1.097751 0.815705 -0.736131 0.906631 -1.490470 1.413202 -2.586973 -1.020283 -0.693794 -1.679381 -0.952331 2.505966 1.649154 2.065141 -0.274003 -0.565179 -0.915766 -2.949095 -3.593863 0.212703 -0.373106 0.138366 0.818342 -0.396851 0.328683 -1.502155 -0.070884 1.248701 -1.176198 -0.962837 -0.779205 1.083142 0.155955 -0.114855 -1.058433 -0.425580 0.817846 -0.083291 1.423200 -0.759521 -3.512389 -2.987660 -1.019838 1.379476 -0.928670 0.154492 -0.737172 -0.597852 -1.744833 0.265488 -1.302271 0.003901 -0.429380 -1.024463 -2.269309 1.120175 -0.550402 -0.075767 0.383270 -1.601001 0.583751 0.567330 0.738784 0.399806 0.498792 -0.135511 -1.735774 -1.538760 0.694286 -0.552415 1.862200 1.042076 -0.164312 -0.857449 -1.157041 -1.992123 1.699070 -2.237690 1.139437 0.960095 -0.603428 1.341360 -1.450387 0.126712 -1.104866 1.030084 0.298219 -2.937262 2.198613 1.757481 -1.890528 -0.396998 -0.841450 1.025253 0.535439 1.533769 -1.545811 -1.074391 0.749997 0.204298 -0.163504 -0.316918 0.533614 -0.205643 0.528357 -2.224824 -0.921308 1.426153 0.956531 -0.511956 -0.117216 0.369786 -0.820864 0.226805 2.156952 0.988458 0.614824 -1.631134 -4.357294 0.270191 -0.083932 -0.118157 0.651189 -1.667547 -0.487078 0.613762 -1.180467 1.970668 -0.422035 -0.963103 1.761287 -2.651200 -1.837728 -0.729620 -0.586544 0.328793 -0.282366 1.331044 -0.840112 -0.091503 -0.262085 0.909461 -0.942949 -1.260634 0.097462 0.912930 1.823618 -0.208327 -0.566910 1.885444 -0.013486 -0.486990 -0.511307 0.219151 -0.430809 0.466376 -2.665667 -0.499674 -0.058377 0.959428 -1.664062 1.390128 0.008147 0.805295 0.325901 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 3.179208 -0.664251 -2.044639 6.190646 0.388097 -0.135108 1.497440 0.864726 0.862802 -8.894092 -2.531476 5.870648 0.343080 0.753255 -1.267779 2.559167 2.006231 2.504383 -7.032901 -0.039922 1.949642 0.794949 -0.888145 -0.640808 0.455417 -1.747584 2.570163 1.989049 1.192958 5.360219 -2.092845 2.388289 5.243718 -0.366503 0.606229 4.189437 1.260538 0.791088 -1.686186 -2.578741 6.382419 1.533301 -0.826720 3.237702 -0.577645 6.321076 1.611216 6.491084 0.809797 -2.945956 0.722509 -0.353440 -2.953407 -1.364012 -4.879250 1.908489 2.763654 3.945174 -2.838735 2.849704 -0.332010 1.596849 2.669857 0.307933 5.427645 3.815365 3.445327 5.352352 6.472218 -4.477836 1.173683 0.841221 1.684346 1.020991 4.130660 -3.302018 -3.051235 -1.682201 -0.402977 -6.279876 -0.788924 -0.483036 8.667726 -5.291534 -0.332451 0.184742 1.535281 5.983528 -3.058187 1.312582 -6.112434 0.188924 -0.108691 8.512063 1.130397 1.107885 -1.873027 2.321025 -0.062740 1.432593 0.719927 -4.466025 -1.248038 -7.365554 -2.790781 -4.029857 0.084035 2.282145 -6.875496 -0.643728 0.168263 5.480209 -9.611381 -1.160884 1.583482 1.464170 5.189376 2.699847 -2.117451 0.825639 -0.304038 -0.116494 1.173048 -2.929394 1.019423 -0.973584 -0.907052 0.452110 1.488002 2.104778 -9.099024 -1.234399 1.150643 -1.385202 1.293632 3.381106 2.898223 -2.259418 2.725554 -4.503488 3.812968 -6.726439 -2.536870 -0.324879 -5.762554 -3.115431 5.985165 3.956469 4.339762 -1.341319 -1.806176 -2.728104 -7.309985 -9.048729 1.061091 0.181778 0.735712 2.690559 -1.390375 0.948335 -4.899375 0.490430 3.360840 -2.611148 -2.603779 -1.039287 5.220031 0.064755 -0.853501 -2.803027 -0.717276 1.214375 0.499053 4.736744 -2.152756 -8.159975 -8.617667 -2.883964 4.783733 -2.671586 0.204565 -2.559626 -1.929467 -4.429090 0.350807 -3.720381 0.699486 -0.291842 -2.526320 -7.187060 3.448818 -1.456441 -1.646293 2.002146 -4.815262 1.376683 2.134878 1.035917 0.481524 0.524858 0.191497 -4.989190 -3.625879 1.794935 -2.618313 4.890939 3.451321 0.108557 -3.123159 -2.870611 -4.933033 4.706910 -4.739889 3.428599 0.961497 -0.334849 3.853492 -4.161417 0.389797 -4.151272 2.888125 1.378870 -7.959001 6.786181 4.635492 -4.171875 -0.476016 -1.367058 2.567395 1.650823 3.740396 -5.211071 -4.569672 2.590806 -0.809239 -0.244528 -1.428055 1.280255 -1.062275 0.897408 -5.322373 -1.352996 3.854624 2.412677 -1.559164 0.532392 2.609738 -2.811308 1.275295 5.666562 3.145422 0.967713 -4.246674 -10.808832 1.973861 -1.308364 -0.181906 0.472776 -3.812947 -1.080890 2.998485 -2.833688 5.127176 -0.859487 -2.463221 5.095313 -7.903684 -5.351328 -2.065281 -1.582715 1.842584 -0.587938 2.626317 -1.920380 0.509619 -0.176258 1.728987 -2.015799 -4.004749 0.551114 2.583516 5.768875 -0.868462 -1.172613 5.855711 -0.011837 -1.438673 -0.506287 -0.284357 -0.788714 0.132105 -6.604041 -0.550006 0.838381 2.914663 -4.844342 3.676380 -0.644834 0.462157 1.356785 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 1.555254 0.579306 -0.633307 1.500484 0.043419 -1.048508 0.848141 1.305125 0.088998 -2.644460 -1.294877 1.404838 0.462387 -0.765602 -0.025495 0.580892 0.355056 1.713972 -2.152316 0.510930 0.704112 0.716084 -1.153111 -1.136905 -0.243762 -0.407700 -1.130576 0.565040 0.251155 2.135332 -0.724424 -0.032296 1.598440 -0.290920 0.364681 1.924668 1.135246 0.229363 0.413570 -0.229341 2.596756 1.339412 -0.437380 1.240891 0.616126 2.117312 -0.400674 1.985873 -2.106916 -0.909261 0.279259 -0.641314 -1.232714 -0.268297 -1.479327 1.032427 2.432131 1.709489 -1.209421 1.818944 -0.505712 0.367768 1.063773 -0.194069 1.502320 1.952571 0.145410 1.611924 2.989743 -1.367377 0.258458 0.180666 0.961014 -0.538902 1.299113 -0.575250 -0.910150 -1.719108 0.066830 -2.952900 0.122667 0.040604 4.079931 -2.314998 0.948935 1.786457 1.224491 1.531457 -1.458945 -0.561493 -1.544225 0.018298 -1.132470 3.884822 0.291645 0.816628 -0.821126 1.129946 0.583863 0.658447 -0.266173 -1.458768 -1.632399 -3.534390 -1.425699 -1.022060 -0.943482 0.167883 -2.078575 -1.185124 1.967360 2.158440 -3.486053 0.114979 1.040144 0.477908 0.938020 0.661741 -1.802193 0.928762 -0.878754 -0.476311 0.258116 -1.207645 -0.292041 -0.165415 -0.485467 0.229260 0.363961 0.237131 -3.361959 -0.075795 0.160376 -0.946185 -0.147893 0.529040 0.156805 -1.871196 0.930778 -2.043552 1.420135 -2.633838 -0.340365 -0.351969 -2.898934 -0.571520 1.494818 0.750201 1.154330 -0.352774 -0.746621 -1.035561 -2.366591 -3.370846 1.239971 -0.063284 1.040345 -0.141450 -0.310935 -0.695811 -1.328401 -0.309869 1.040059 -1.189362 -0.237860 -0.137208 4.751955 -0.561071 -0.794957 -1.513991 -0.054817 1.461224 0.893491 0.614522 -1.266005 -1.096112 -2.378361 -1.021055 1.822925 -0.423556 0.184914 -0.530262 -0.435932 -1.687677 0.441350 -1.229606 1.135470 -0.431464 -0.577883 -2.447204 0.652504 -0.346439 -1.032290 0.267846 -1.499700 0.478520 0.970970 -0.038856 -0.345388 -0.048576 0.859879 -2.101002 -1.877528 0.103451 -0.168922 1.720565 2.016009 0.832388 -0.815834 -0.266080 -1.995821 1.623306 -1.765423 0.619584 -0.052724 -0.464933 2.191761 -1.445410 -0.990668 -2.380608 1.043257 0.315359 -1.342325 2.996312 1.473469 -1.481356 -0.380187 -0.836303 0.647218 1.068076 2.295463 -1.669489 -1.415573 1.350634 -1.121686 -0.272557 -0.900859 0.838757 -0.646560 1.439489 -1.676948 -0.219655 1.281469 1.571731 -0.474229 1.036508 0.414061 -0.594916 0.017776 2.087526 1.085438 -0.180017 -1.745615 -2.633912 1.143238 -1.710171 0.194023 -0.448521 -0.621650 -0.838365 0.796147 0.324082 1.753974 1.006454 -0.615997 1.705935 -2.754913 -2.294918 -0.212757 0.425668 1.185319 -1.254746 0.694270 -0.976609 0.587879 0.108972 0.935044 0.421880 -1.488819 -1.249883 0.310506 1.815640 0.122013 -1.317750 2.480576 -0.231381 -0.764632 0.351180 -0.640141 0.759217 -0.002076 -1.099009 -0.316372 -0.570002 1.166206 -1.513117 2.463303 -0.217310 0.014684 1.567392 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.588381 -0.414378 -1.277161 3.628644 0.340908 -0.848978 1.178810 1.233044 0.374998 -5.693227 -2.084232 3.020591 0.438883 -0.234243 -0.331344 1.566948 1.272555 1.722242 -4.427484 0.472350 1.210529 0.590188 -1.514029 -0.606915 0.060873 -1.280471 0.124782 1.395413 0.517392 3.700638 -1.412640 1.129832 3.292292 -0.525710 0.721758 3.181263 1.325647 0.522590 -0.120929 -0.847667 4.779025 1.406550 -0.580728 2.102696 0.485633 4.181290 0.032274 5.141675 -1.009859 -1.883152 1.420106 -1.100868 -2.029460 -0.568445 -3.391673 1.604654 3.227223 2.729529 -2.311521 2.505233 -0.761203 0.953264 1.810774 0.244868 3.699983 3.242590 1.805953 3.277469 4.958151 -2.738581 0.531365 0.830699 1.562922 0.187113 2.231944 -2.097003 -1.652777 -2.142080 0.113419 -4.272617 -0.209534 -0.418361 6.445114 -3.740154 0.179350 1.408743 1.291109 3.583820 -2.478369 0.280858 -3.789172 0.097050 -0.585592 6.274144 0.384465 1.161120 -1.198212 1.800381 0.316404 1.304047 -0.034347 -2.896330 -2.243351 -5.707690 -2.632184 -2.265446 -0.553140 0.883358 -4.671586 -1.068483 1.434424 3.064655 -6.291378 -0.291082 1.373694 1.044069 3.253541 2.562540 -2.541235 0.587135 -0.553467 -0.185694 0.675549 -1.654713 0.408091 -1.541298 -0.340165 0.526652 0.905265 0.833671 -6.301972 -0.300560 0.538783 -1.244678 0.269896 1.636268 1.238473 -2.394200 1.918356 -3.162498 2.620239 -5.120737 -1.654499 -0.840484 -4.662171 -1.525240 4.204842 2.451146 3.004444 -0.524176 -1.659740 -1.869821 -5.026694 -6.325205 0.915178 -0.179756 1.199350 0.913671 -0.802604 -0.057021 -2.795402 -0.138358 2.037056 -2.029229 -1.250011 -0.877397 5.240243 -0.329283 -0.892140 -2.345057 -0.312488 1.699376 0.477864 2.459767 -1.727586 -4.513956 -5.318680 -1.980928 3.155306 -1.316075 0.404946 -1.270174 -1.001416 -3.678953 0.512356 -2.439059 0.851966 -0.658800 -1.735460 -4.639752 1.999013 -0.840821 -1.221100 0.846839 -3.074559 0.863224 1.586494 0.986203 0.282592 0.344711 0.418430 -3.828946 -3.331690 0.741429 -1.066567 3.666148 2.837909 0.447931 -1.239194 -1.478958 -3.720981 3.157752 -3.544046 1.697674 0.759058 -0.698414 3.175040 -2.862750 -0.722183 -3.528116 1.922085 0.764786 -4.339963 5.111590 2.970752 -3.028138 -0.712779 -1.471751 1.624808 1.452243 3.357543 -3.011938 -2.580891 1.974329 -0.774584 -0.342852 -1.226798 1.273413 -0.848936 1.538622 -3.644075 -1.045858 2.592378 2.353550 -0.978329 0.844528 1.139633 -1.379852 0.499653 4.043070 1.924315 0.158692 -2.789707 -6.847832 1.511074 -1.465470 -0.284049 -0.009420 -2.441085 -1.140536 1.571413 -0.947107 3.518378 0.526930 -1.058651 3.396318 -5.154042 -3.936100 -1.059080 -0.289798 1.349870 -1.241358 1.461947 -1.636474 0.617922 0.018144 1.516543 -0.482415 -2.859373 -1.134215 1.087392 3.565875 -0.482033 -1.366027 4.197107 -0.139080 -0.992363 -0.187702 -0.282129 0.366819 0.474198 -3.536452 -0.678443 -0.384598 1.943660 -3.046223 3.279803 -0.313983 0.462830 1.793317 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = 5.672424 -2.573706 -3.448096 8.471027 0.373200 0.456679 1.758905 1.408569 0.588422 -13.123368 -4.519256 7.450497 1.508091 1.414921 -0.459508 3.728687 2.657573 2.315453 -12.366317 -0.097706 2.338863 -0.165246 -2.131112 -0.163264 -0.344865 -3.781981 4.565422 3.229630 1.205418 7.984375 -2.812731 4.235048 7.391087 -1.037403 2.197558 5.840804 1.138113 -0.171886 -3.934246 -2.352194 10.955590 3.072874 -1.239719 3.559523 -1.002856 9.034413 2.089576 10.678160 1.956133 -4.074765 3.538962 -1.145709 -4.239117 -1.336343 -8.122499 1.467236 4.636432 4.624831 -4.045909 4.120073 -1.918815 1.871782 3.433266 1.900694 9.378384 3.987791 7.194603 7.178205 8.068611 -6.729066 1.545673 1.558743 1.067622 0.803648 6.209372 -5.093060 -4.535262 -4.417538 1.210129 -8.813165 -2.105993 -0.844342 11.086303 -7.108952 -1.489555 1.368382 2.513891 8.576158 -4.916845 2.235066 -9.007516 -0.555003 0.326560 12.210195 1.301832 1.585425 -1.850713 3.015100 0.197488 2.435185 2.166149 -7.565978 -2.116934 -11.185439 -4.924919 -5.522533 0.291355 3.324990 -8.926399 -0.751882 0.883860 6.428362 -12.258385 -0.502299 2.255216 2.723707 9.955836 4.415581 -4.163708 0.475264 0.470464 1.268066 3.854911 -4.054802 2.464494 -2.727981 1.878342 1.593778 2.200230 2.302325 -12.604828 -1.930329 2.906244 -1.680701 1.185755 3.947626 4.555266 -3.762192 4.296867 -5.814433 6.054429 -9.736137 -2.475755 -1.903013 -7.815377 -3.963377 10.084179 6.847593 6.060461 -0.450494 -4.288018 -1.256687 -10.374780 -14.620132 0.208008 0.955242 0.444166 2.801507 -2.041497 2.413114 -6.458327 1.864469 4.490674 -3.644337 -4.046552 -0.720707 4.944898 0.967839 -2.426337 -2.880719 -0.308234 0.556716 1.631460 8.846293 -2.570842 -13.645843 -12.144759 -4.414202 7.355280 -3.753024 0.108418 -3.300846 -3.229077 -7.880288 0.341143 -5.510236 1.353890 -0.629464 -4.677345 -9.994486 4.162456 -1.747457 -2.058292 2.607090 -7.387330 1.467832 3.169339 2.187969 1.046758 0.633492 0.334065 -7.722887 -6.056182 2.229186 -4.486391 9.555936 4.239914 -0.259341 -3.403574 -3.543875 -7.160802 6.096480 -7.249137 4.663030 0.656457 -3.177990 4.598488 -6.366098 -1.108006 -5.153307 4.046152 1.830005 -9.674614 12.151387 7.541150 -5.690635 -0.840890 -1.593588 3.554631 1.914887 5.677282 -6.743567 -5.679425 2.590616 0.066196 -0.197535 -1.431162 2.393457 -1.769829 -0.683308 -8.012135 -3.308346 5.831810 4.081165 -1.311154 0.454859 3.799567 -2.968310 0.778426 8.612243 3.762689 0.919301 -4.907343 -16.211632 3.768754 -1.560348 -2.218857 0.500895 -5.990446 -2.036007 3.216977 -3.984322 7.228177 0.385960 -3.101095 7.349258 -10.468249 -7.883811 -5.741653 -2.510177 1.522654 -0.775160 2.792334 -3.189929 1.443881 -0.864134 1.831519 -2.761622 -5.144107 0.602067 3.318898 6.575144 -0.416323 -1.265876 8.483002 1.313420 -1.700428 -1.703595 -0.350409 -2.108813 2.369544 -8.315878 -1.345330 1.041182 4.041027 -5.830705 2.683770 -0.894822 0.949884 2.063031 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.369941 -0.524162 -0.035307 0.565710 0.186114 -0.233610 0.126630 0.052474 0.093058 -0.708760 -0.117065 0.183878 0.001833 -0.196630 0.100991 0.175940 0.259563 0.059824 -0.644355 0.255989 0.008691 -0.065203 -0.344466 -0.073791 -0.022221 -0.384650 0.334044 0.437152 -0.050210 0.435629 -0.298240 0.109432 0.368069 -0.022701 0.428867 0.483340 0.327346 -0.026955 -0.160006 0.229435 0.915407 0.217704 -0.152666 0.166392 0.353952 0.608382 0.227232 0.684466 0.265589 -0.153504 0.347346 -0.066073 -0.171083 -0.153739 -0.769905 0.153504 0.479632 0.218297 -0.536584 0.358908 -0.296414 0.123242 0.229062 0.337853 0.770174 0.098768 0.445005 0.368364 0.736235 -0.353709 -0.047803 0.252539 0.548397 0.106994 0.454192 -0.233341 -0.405662 -0.911919 0.045386 -0.280015 0.034195 -0.025063 0.308505 -0.402114 -0.035591 0.390425 0.002263 0.467174 -0.437654 -0.086608 -0.628382 0.041384 0.116223 0.920009 0.031601 0.150178 0.029719 0.341477 0.071996 0.354023 0.189433 -0.633363 -0.214005 -1.125700 -0.569314 -0.348560 -0.142876 -0.220017 -0.643683 -0.051019 0.395952 0.333932 -0.665098 0.082370 0.191028 0.063802 0.566459 -0.392432 -0.077943 0.034570 -0.013100 0.213804 0.212877 -0.237120 0.048868 -0.376942 0.419178 0.242637 0.225288 -0.053302 -0.336532 0.036663 0.191719 0.183360 -0.140103 0.020825 0.011436 -0.575832 0.268872 -0.413745 0.531346 -0.629651 -0.055837 -0.409766 -0.347557 -0.095970 0.868490 0.140824 0.491529 0.103673 -0.451131 0.028421 -0.678308 -1.295243 0.109954 -0.085185 0.004403 0.023577 -0.102553 -0.010729 -0.217803 -0.130328 0.308322 -0.413331 -0.188850 -0.132019 -0.130193 0.019390 -0.199008 -0.260683 0.061624 0.506191 0.303641 0.395101 -0.291415 -0.954255 -0.536562 -0.377860 0.392733 -0.163879 0.040948 -0.032207 -0.233387 -0.736240 0.345807 -0.374338 0.223436 -0.316924 -0.301544 -0.568033 0.079813 -0.212434 0.217168 -0.019200 -0.479619 0.152369 -0.232358 0.030434 0.061368 0.124683 0.082028 -0.679877 -0.639082 0.041580 0.046877 0.789800 0.012320 0.113878 -0.002271 -0.182448 -0.487416 0.391933 -0.704301 0.138229 0.341243 -0.600806 0.466866 -0.287578 -0.301532 -0.312406 0.352105 0.080726 -0.004847 0.976433 0.694661 -0.617535 -0.272154 -0.183979 0.223208 0.205429 0.748581 -0.393125 -0.110989 0.219991 0.170319 -0.086806 -0.115575 0.276734 -0.035662 0.257478 -0.669069 -0.428857 0.270543 0.514607 -0.053826 -0.048990 -0.030045 -0.094505 -0.381108 0.716478 0.109671 0.353194 -0.443142 -0.915614 0.194609 -0.134238 -0.046729 0.254596 -0.467795 -0.212762 -0.006867 0.030827 0.597640 0.383785 -0.095652 0.504345 -0.655174 -0.614672 -0.324531 -0.212688 0.009471 -0.300563 0.429901 -0.397063 0.001748 -0.261852 0.290966 -0.222196 -0.040626 -0.065609 0.106527 0.125790 0.175806 -0.320380 0.566621 0.042811 -0.213938 -0.159804 0.060823 -0.076578 0.419384 -0.286205 -0.277344 -0.279477 0.293215 -0.286937 0.396273 -0.109567 0.353193 0.168972 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = 2.532385 -1.374372 -1.283809 3.838516 0.367504 -0.163664 0.855433 0.989861 0.367351 -5.709917 -2.238963 3.299062 0.219914 0.060498 0.003544 1.208640 1.337022 1.060523 -5.737556 0.326950 0.868028 -0.062131 -1.227638 -0.379839 -0.052529 -1.625713 1.600137 1.766525 0.448509 3.280983 -1.328064 1.324982 3.132930 -0.258703 1.237801 2.698667 0.487555 0.112877 -1.252065 -0.873401 5.119202 1.741766 -0.811235 1.886651 0.361006 3.959320 0.658926 4.760044 1.239757 -1.620900 1.587033 -0.588195 -1.829192 -0.643103 -3.754128 0.770583 2.611166 1.791610 -2.211329 1.988310 -0.896686 0.816212 1.445190 0.573961 4.274795 1.712021 3.155842 3.235700 3.661359 -2.774383 0.422621 0.820373 1.374654 0.548815 2.463861 -2.284396 -2.232527 -2.658009 0.448715 -4.041177 -0.841004 -0.484377 4.524180 -3.088821 -0.301299 0.962734 0.776157 3.578970 -2.249760 0.544457 -3.914688 -0.110029 0.069671 5.633575 0.527802 0.560817 -0.556683 1.545242 0.253799 1.404935 0.749371 -3.342444 -1.226384 -6.078745 -2.136753 -2.292047 0.053625 0.843019 -3.848620 -0.462816 0.963401 2.959827 -5.275768 -0.390276 1.185252 0.863257 3.511094 1.046559 -1.764289 0.246323 -0.032667 0.592001 1.765291 -1.723733 0.711216 -1.326084 1.019660 0.791894 1.064222 1.065510 -5.016203 -0.826281 1.309211 -0.249366 0.108184 1.340357 1.586701 -1.928595 1.932500 -2.580470 2.839808 -4.455484 -0.687375 -1.122730 -3.135219 -1.490910 4.207565 2.809579 2.846115 0.075461 -1.653218 -0.711165 -4.508815 -6.990636 0.613584 0.284256 0.517811 0.634231 -0.739809 0.802166 -2.573515 0.451119 1.749406 -1.599224 -1.489046 -0.519053 2.302957 0.248260 -1.152376 -1.368398 0.010544 0.935085 0.626846 3.380782 -1.420028 -5.908035 -4.931773 -1.995992 3.131390 -1.483341 0.074090 -1.093474 -1.195757 -3.499698 0.549438 -2.518084 0.785475 -0.709098 -2.092974 -4.228070 1.425072 -0.837249 -0.240489 0.910556 -3.068330 0.659958 1.276237 1.171735 0.343142 0.641274 0.451058 -3.674389 -2.732175 0.577647 -1.710905 4.483013 1.903023 -0.040238 -1.598807 -1.313517 -3.351242 2.931046 -3.440637 1.775583 0.251155 -1.710935 2.416549 -2.443318 -0.794140 -2.372377 1.823347 0.882653 -3.986135 5.262743 3.524396 -2.695774 -0.622731 -1.045418 1.333300 1.062895 3.091299 -3.097788 -2.141939 1.158836 -0.254338 -0.109444 -0.830029 1.330174 -0.526377 0.243702 -3.711220 -1.504159 2.599244 1.859630 -0.449616 0.467400 1.376981 -0.814777 0.089875 4.073984 1.446478 0.507005 -2.681881 -7.452879 1.678008 -0.177465 -0.724586 0.496206 -2.541093 -1.363075 0.921051 -1.288821 3.265645 0.633658 -1.198294 3.228398 -4.406607 -3.485590 -2.404361 -0.935492 0.667210 -0.831543 1.633940 -1.268694 0.568615 -0.542274 0.915364 -0.847661 -2.008432 -0.499101 1.191655 2.543987 0.186930 -0.991397 3.664198 0.371799 -1.273489 -0.631139 -0.219900 -0.789443 1.338998 -3.592987 -0.881302 -0.153242 1.671276 -2.460580 1.494813 -0.187530 0.900932 1.012756 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 1.555254 0.579306 -0.633307 1.500484 0.043419 -1.048508 0.848141 1.305125 0.088998 -2.644460 -1.294877 1.404838 0.462387 -0.765602 -0.025495 0.580892 0.355056 1.713972 -2.152316 0.510930 0.704112 0.716084 -1.153111 -1.136905 -0.243762 -0.407700 -1.130576 0.565040 0.251155 2.135332 -0.724424 -0.032296 1.598440 -0.290920 0.364681 1.924668 1.135246 0.229363 0.413570 -0.229341 2.596756 1.339412 -0.437380 1.240891 0.616126 2.117312 -0.400674 1.985873 -2.106916 -0.909261 0.279259 -0.641314 -1.232714 -0.268297 -1.479327 1.032427 2.432131 1.709489 -1.209421 1.818944 -0.505712 0.367768 1.063773 -0.194069 1.502320 1.952571 0.145410 1.611924 2.989743 -1.367377 0.258458 0.180666 0.961014 -0.538902 1.299113 -0.575250 -0.910150 -1.719108 0.066830 -2.952900 0.122667 0.040604 4.079931 -2.314998 0.948935 1.786457 1.224491 1.531457 -1.458945 -0.561493 -1.544225 0.018298 -1.132470 3.884822 0.291645 0.816628 -0.821126 1.129946 0.583863 0.658447 -0.266173 -1.458768 -1.632399 -3.534390 -1.425699 -1.022060 -0.943482 0.167883 -2.078575 -1.185124 1.967360 2.158440 -3.486053 0.114979 1.040144 0.477908 0.938020 0.661741 -1.802193 0.928762 -0.878754 -0.476311 0.258116 -1.207645 -0.292041 -0.165415 -0.485467 0.229260 0.363961 0.237131 -3.361959 -0.075795 0.160376 -0.946185 -0.147893 0.529040 0.156805 -1.871196 0.930778 -2.043552 1.420135 -2.633838 -0.340365 -0.351969 -2.898934 -0.571520 1.494818 0.750201 1.154330 -0.352774 -0.746621 -1.035561 -2.366591 -3.370846 1.239971 -0.063284 1.040345 -0.141450 -0.310935 -0.695811 -1.328401 -0.309869 1.040059 -1.189362 -0.237860 -0.137208 4.751955 -0.561071 -0.794957 -1.513991 -0.054817 1.461224 0.893491 0.614522 -1.266005 -1.096112 -2.378361 -1.021055 1.822925 -0.423556 0.184914 -0.530262 -0.435932 -1.687677 0.441350 -1.229606 1.135470 -0.431464 -0.577883 -2.447204 0.652504 -0.346439 -1.032290 0.267846 -1.499700 0.478520 0.970970 -0.038856 -0.345388 -0.048576 0.859879 -2.101002 -1.877528 0.103451 -0.168922 1.720565 2.016009 0.832388 -0.815834 -0.266080 -1.995821 1.623306 -1.765423 0.619584 -0.052724 -0.464933 2.191761 -1.445410 -0.990668 -2.380608 1.043257 0.315359 -1.342325 2.996312 1.473469 -1.481356 -0.380187 -0.836303 0.647218 1.068076 2.295463 -1.669489 -1.415573 1.350634 -1.121686 -0.272557 -0.900859 0.838757 -0.646560 1.439489 -1.676948 -0.219655 1.281469 1.571731 -0.474229 1.036508 0.414061 -0.594916 0.017776 2.087526 1.085438 -0.180017 -1.745615 -2.633912 1.143238 -1.710171 0.194023 -0.448521 -0.621650 -0.838365 0.796147 0.324082 1.753974 1.006454 -0.615997 1.705935 -2.754913 -2.294918 -0.212757 0.425668 1.185319 -1.254746 0.694270 -0.976609 0.587879 0.108972 0.935044 0.421880 -1.488819 -1.249883 0.310506 1.815640 0.122013 -1.317750 2.480576 -0.231381 -0.764632 0.351180 -0.640141 0.759217 -0.002076 -1.099009 -0.316372 -0.570002 1.166206 -1.513117 2.463303 -0.217310 0.014684 1.567392 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 6.607915 -1.272573 -2.507190 6.533221 2.436669 -1.654370 1.452474 2.711987 1.253547 -9.368178 -6.060489 6.698104 0.578994 -2.213941 0.774267 2.113028 4.066148 2.300247 -10.152079 2.001229 0.583765 -1.163138 -4.944392 -1.164344 -0.355202 -3.469354 1.123529 3.890296 0.253967 6.188018 -2.866402 2.774042 4.817538 0.412941 5.119787 5.979133 -0.875310 -1.742752 -0.062369 -2.122491 10.680510 4.169266 0.023795 4.697994 3.169102 7.782177 -0.620753 8.922630 1.293623 -1.868392 3.741485 -0.709359 -3.957545 -0.037669 -8.935439 1.950019 4.769488 -0.360477 -5.165385 4.224395 -1.989696 1.951917 2.895036 -0.048134 8.659636 2.930743 4.098594 5.180943 8.402688 -4.220627 0.555255 2.229822 5.508739 2.013162 3.103951 -2.793279 -3.785648 -2.449742 0.538408 -7.812638 1.183682 -2.670705 10.886391 -5.542776 -0.296410 1.965607 1.654318 6.480871 -4.722949 -1.285394 -7.145904 0.370354 -1.561742 8.773891 0.574407 3.274551 -1.037386 2.305498 -0.910185 3.205877 -1.385324 -7.384693 -3.329467 -13.973489 -4.983142 -4.406998 -1.061257 -0.975967 -7.340956 -0.314353 0.878713 7.566742 -9.128969 -1.330534 1.752360 -0.665972 2.468014 2.759598 -4.403626 -0.997872 -0.481125 2.991615 1.906612 -2.273027 0.197172 -4.171105 0.726081 1.155871 2.990809 1.291663 -7.674528 -0.606858 2.879767 0.181140 -0.652661 1.864953 1.675409 -4.576960 3.210343 -4.333578 5.456630 -8.419354 -2.554306 -5.277477 -6.096258 -2.506209 7.563973 5.885927 7.439872 1.999382 -0.078828 -0.983542 -9.279508 -12.653263 2.025904 -2.352680 1.374817 -0.505963 -0.555193 0.288903 -4.632981 -0.998333 3.479684 -4.811405 -3.079498 -2.611102 7.404083 -0.024539 -2.371798 -3.236365 -0.330466 3.371160 1.102090 4.455873 -3.728621 -10.521206 -7.829233 -3.994177 5.719496 -3.091682 0.742456 -1.385573 -1.488635 -5.080925 0.326042 -4.908202 1.009267 -3.036114 -2.886779 -7.692813 1.235269 -1.590633 -0.290964 0.633011 -5.983009 2.667270 5.557591 3.473862 -0.081849 2.571722 -0.174923 -6.056246 -5.583828 0.639875 -1.067406 8.500241 6.382551 0.154039 -3.008315 -2.322296 -7.102578 5.711716 -7.851461 3.374994 2.168372 -4.596781 4.952167 -5.164893 -2.634919 -4.461807 3.768950 0.389097 -10.413986 8.349742 6.628310 -7.475968 -2.055090 -5.262142 3.292120 1.752191 8.131799 -4.449864 -2.271826 2.535035 0.014078 -0.835358 -2.518879 2.938812 -0.119983 2.097322 -8.025779 -3.631942 6.220248 4.458044 -0.913147 0.362289 0.574590 0.184739 2.515795 8.233191 2.650797 1.365171 -6.664044 -15.174051 2.135583 0.760905 -0.739063 2.018678 -3.702300 -3.735638 -0.576842 -4.162401 7.036089 0.109039 -1.217820 6.317880 -7.025353 -7.249255 -4.640801 -0.417135 1.780145 -2.680088 4.187232 -4.048400 0.316756 -2.494018 3.750705 -1.089569 -4.226565 -3.140635 2.819356 4.796363 1.645972 -2.231128 7.152640 1.088122 -2.418327 -1.269851 -0.772139 -0.811264 2.577174 -8.347783 -2.931617 -1.945345 2.867836 -4.763438 4.614409 0.739988 4.687714 2.386021 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.766714 -3.031340 -0.984211 2.906398 1.073022 -0.506126 0.637878 1.034273 0.662861 -5.239476 -2.435040 3.605664 0.076777 -0.803594 0.090476 0.803738 1.906885 1.053684 -5.991223 0.759846 0.168751 -0.417708 -1.884066 -0.658628 -0.025075 -1.465591 2.533482 1.836323 0.224370 2.684764 -1.325621 1.204892 2.048825 0.429651 2.285843 2.531952 -0.464565 -0.898049 -0.543174 -1.315249 5.756736 2.423361 -0.529867 2.244677 1.304950 3.426398 0.408904 4.936261 2.931398 -0.766146 2.272606 -0.836022 -1.862365 -0.296036 -5.154667 0.641846 2.029341 0.347997 -2.108274 1.730205 -0.542703 0.834399 1.190290 -0.110013 5.367893 0.727014 3.049464 2.160569 3.472203 -1.961262 0.217862 0.909922 2.591101 0.634131 2.135950 -2.483629 -1.978674 -4.603836 -0.011871 -4.892968 0.438402 -1.167678 3.741693 -2.274657 0.504359 0.510106 0.555618 2.769270 -1.827513 -0.663590 -4.394712 0.215807 0.771021 5.328895 0.392475 1.282202 -0.267076 0.866818 -0.413772 1.382948 0.961629 -3.358131 -0.676866 -7.889434 -1.709645 -2.129629 -0.330896 -0.468036 -3.379529 0.219254 0.582347 2.685549 -4.410390 -0.845044 0.731225 -0.474115 2.407869 -0.234028 -1.266491 0.230255 -0.110455 1.536732 0.947382 -1.383752 0.051858 -2.303115 1.359008 0.436665 1.434467 0.713588 -4.099012 -0.636940 1.381966 1.776085 -0.192372 0.820391 0.730326 -1.683621 1.324728 -2.559688 2.465826 -3.685298 -0.377344 -2.078308 -2.020543 -1.302858 5.648352 2.507210 3.731654 0.805129 -0.881492 -0.279936 -4.236125 -7.788450 1.130898 -0.943277 0.305925 0.050525 -0.208454 0.297467 -2.173052 -0.519271 1.625312 -1.995915 -1.447437 -0.994243 0.920744 0.060003 -0.930484 -1.309248 -0.013576 2.523234 0.700089 1.960463 -1.683034 -6.926959 -3.756685 -1.769440 2.516316 -1.532347 0.116763 -0.574220 -0.835227 -2.742395 0.113260 -2.196350 1.004303 -1.226860 -2.554881 -3.357252 0.548118 -0.847877 1.341636 0.491311 -2.621889 1.153348 1.037329 2.674811 -0.114384 1.140514 0.598698 -3.716716 -3.271241 0.274583 -0.580287 4.740206 1.285435 0.026731 -1.891252 -1.064303 -3.320255 2.422838 -5.140523 1.639604 0.843604 -3.267013 1.988346 -2.178884 -0.643696 -1.525199 1.708094 0.324718 -4.429046 4.707851 3.140278 -3.278737 -0.903395 -2.036805 1.319186 0.714400 3.410614 -2.217200 -1.221586 1.040445 0.027431 -0.283689 -1.080074 1.193049 0.151527 0.592628 -4.728566 -2.861076 2.650033 1.726178 -0.354152 -0.054164 0.513996 -0.061138 -0.800510 4.796839 1.104809 1.063531 -3.076644 -8.430101 0.941626 2.125989 -0.074691 1.279241 -2.890192 -1.591748 -0.095544 -1.608570 2.997360 1.395619 -1.416868 2.732616 -3.459049 -3.001875 -2.170916 -0.628772 0.805646 -0.912751 2.136271 -1.718868 0.004180 -1.327345 1.509485 -0.853034 -1.386783 -0.648779 1.491455 2.004323 1.054893 -1.374711 3.052724 0.454122 -1.187249 -0.509942 -0.393323 -0.703396 2.188712 -3.943874 -1.139299 -0.633908 1.290459 -2.040938 1.761538 0.318478 2.160252 0.596974 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = 0.503384 -0.442033 -0.016704 0.583531 0.354192 -0.140758 0.110645 0.078847 0.027678 -0.910427 -0.423549 0.219075 -0.030347 -0.198112 0.225851 0.202886 0.454174 0.041077 -0.606977 0.218178 -0.003193 -0.180059 -0.428679 0.078644 -0.024570 -0.470429 0.109342 0.437643 -0.025578 0.487636 -0.343061 0.217807 0.426150 0.003676 0.503507 0.535610 0.225714 -0.135907 -0.030401 0.085285 1.161174 0.076184 0.057782 0.330583 0.447944 0.689962 -0.122942 1.117954 0.363612 -0.165746 0.721289 -0.360282 -0.180159 0.044331 -0.975349 0.257951 0.518657 0.049177 -0.637354 0.375024 -0.317706 0.209991 0.194528 0.101528 0.876415 0.305028 0.438238 0.421660 0.808798 -0.402822 -0.107755 0.403214 0.591147 0.279273 0.194128 -0.310303 -0.123048 -0.783170 0.059881 -0.250227 0.160719 -0.260190 0.807088 -0.411816 -0.162455 0.443272 -0.059155 0.527511 -0.403868 -0.017647 -0.758003 0.100678 0.124839 0.687235 -0.009623 0.186383 -0.029478 0.200092 -0.065937 0.461039 -0.036148 -0.627736 -0.583848 -1.324758 -0.802012 -0.316184 -0.035044 -0.278540 -0.811868 0.010817 0.407038 0.350542 -0.689006 -0.024837 0.170502 0.099670 0.360198 0.263210 -0.450819 -0.284412 0.091932 0.345457 0.160904 -0.048003 0.086076 -0.823928 0.327948 0.160376 0.340253 -0.134747 -0.424757 -0.031479 0.135862 0.123519 -0.179212 -0.050701 0.069184 -0.528928 0.360041 -0.244607 0.516361 -0.826507 -0.241876 -0.665280 -0.520527 -0.115280 1.245428 0.420459 0.817367 0.365934 -0.425074 -0.100534 -0.813649 -1.196296 -0.002391 -0.272752 0.187715 0.030951 -0.079222 0.061576 -0.223835 -0.192968 0.222457 -0.495428 -0.242035 -0.303517 0.077512 -0.091236 -0.223934 -0.494796 0.100511 0.571287 -0.043544 0.353063 -0.309159 -0.920811 -0.580598 -0.493261 0.425712 -0.239906 0.203526 0.012498 -0.087446 -0.754943 0.230935 -0.432019 0.051187 -0.357580 -0.493047 -0.650428 0.140677 -0.219924 0.035917 0.034905 -0.556623 0.248325 0.092925 0.332144 0.147735 0.240995 -0.131810 -0.798494 -0.818013 -0.120136 0.018052 0.824180 0.378445 0.043717 -0.068516 -0.319219 -0.630828 0.476649 -0.894609 0.140106 0.428463 -0.607230 0.415986 -0.435211 -0.286592 -0.423493 0.351257 0.091973 -0.770248 0.861728 0.633304 -0.770066 -0.389073 -0.573656 0.313181 0.169136 0.915096 -0.257697 0.089871 0.249134 0.240069 -0.102018 -0.224990 0.370804 0.041427 0.287505 -0.860133 -0.577399 0.440878 0.609462 -0.084537 -0.051934 0.068811 0.207146 -0.031826 0.868243 0.145129 0.180928 -0.423598 -1.375560 0.168834 0.259693 -0.119254 0.411520 -0.576834 -0.312768 -0.124354 -0.186746 0.711360 0.156687 0.210279 0.615091 -0.516108 -0.664118 -0.273634 -0.139400 0.027838 -0.411467 0.445984 -0.473000 -0.083799 -0.292615 0.326505 -0.134474 -0.179807 -0.454436 0.079552 0.288840 0.225184 -0.152817 0.613143 0.148133 -0.276209 -0.133044 0.086071 0.082677 0.495569 -0.559690 -0.358220 -0.328834 0.167200 -0.337504 0.416418 -0.038278 0.423588 0.212695 -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.775807 -0.229223 -0.042998 0.610374 0.297585 -0.304662 0.289447 0.382615 0.022039 -1.138406 -0.699726 0.505293 -0.008377 -0.376015 0.221702 0.175483 0.547974 0.277405 -0.803600 0.241901 0.028786 -0.051875 -0.716278 -0.032662 -0.083496 -0.425684 -0.352286 0.500494 -0.019355 0.707782 -0.338039 0.069909 0.560510 -0.068473 0.450653 0.797825 0.345781 -0.055643 0.240581 -0.003146 1.431707 0.237270 0.115551 0.640642 0.635044 0.891046 -0.404358 1.560100 0.025025 -0.258613 0.904880 -0.620016 -0.404957 0.064628 -1.062651 0.348725 0.913764 0.202886 -0.758964 0.731484 -0.337558 0.251142 0.290996 -0.052947 0.918423 0.770293 0.280656 0.515806 1.162274 -0.502992 -0.101213 0.429335 0.740669 0.263958 0.077801 -0.444490 -0.096216 -0.803770 0.096160 -0.670437 0.215659 -0.357998 1.615383 -0.659479 0.001035 0.671353 0.052309 0.533754 -0.537675 -0.179448 -0.814525 0.113346 -0.107989 1.078875 -0.063965 0.364604 -0.118192 0.239809 0.047391 0.540272 -0.280911 -0.677789 -0.968374 -1.757735 -0.922655 -0.334840 -0.225400 -0.321496 -0.952226 -0.236237 0.631969 0.496336 -1.041087 -0.099279 0.325052 0.086330 0.246986 0.839995 -0.873863 -0.243116 -0.037390 0.263917 0.170473 -0.125270 0.007974 -0.932889 0.082517 0.148602 0.334443 -0.100762 -0.979677 -0.031938 0.093153 -0.066869 -0.252523 -0.055236 -0.053084 -0.644369 0.460498 -0.483208 0.613486 -1.230142 -0.400956 -0.701171 -0.965804 -0.127654 1.421747 0.583861 1.042267 0.361535 -0.383794 -0.346688 -1.031852 -1.408322 0.222012 -0.359855 0.508610 -0.143535 -0.059395 -0.171831 -0.372329 -0.348266 0.232073 -0.552180 -0.137090 -0.406741 1.034820 -0.229729 -0.349620 -0.753642 0.164427 0.768246 -0.037141 0.201149 -0.493319 -0.995529 -0.728297 -0.536217 0.603844 -0.207222 0.233906 0.070829 -0.075865 -0.840924 0.171903 -0.511567 0.152863 -0.407590 -0.584536 -0.888841 0.239009 -0.213857 -0.138564 0.029078 -0.631642 0.234021 0.436855 0.550556 0.114861 0.307659 -0.018958 -1.023000 -1.050543 -0.226814 0.046452 0.969072 0.866891 0.189891 -0.139545 -0.235592 -0.943756 0.642275 -1.115967 0.128953 0.379730 -0.562505 0.734724 -0.546357 -0.347067 -0.815940 0.424993 0.149757 -1.325502 1.070035 0.711547 -0.938622 -0.509040 -0.784464 0.320102 0.338487 1.183122 -0.389989 -0.075472 0.480217 -0.061609 -0.120114 -0.403823 0.473702 0.053411 0.553652 -1.024332 -0.520391 0.681776 0.753549 -0.163092 0.115607 0.092302 0.257865 0.167071 1.102715 0.206717 -0.015962 -0.583779 -1.834570 0.335299 0.275579 -0.117864 0.363530 -0.617425 -0.494055 -0.030948 -0.199259 0.824773 0.185366 0.243841 0.759487 -0.689921 -0.902867 -0.199197 0.035289 0.263894 -0.626312 0.462611 -0.516765 0.025129 -0.193026 0.463181 0.121408 -0.427160 -0.892199 0.026674 0.539265 0.206302 -0.306578 0.895289 -0.014498 -0.350927 -0.007653 -0.057314 0.381625 0.475097 -0.727171 -0.365558 -0.529071 0.294427 -0.510687 0.843928 0.041123 0.448517 0.543739 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 4.362802 -0.997558 -1.595281 3.864345 0.909178 -1.883545 1.150384 2.254077 0.706514 -6.197111 -3.081915 4.984570 0.397924 -1.930783 -0.042112 1.446282 2.424326 2.369208 -7.332322 1.694732 0.517583 0.138265 -3.393204 -1.659333 -0.173858 -1.670951 0.769334 2.192244 0.292083 4.165034 -2.124825 1.077359 3.133132 -0.049912 3.187013 4.074959 -0.028685 -0.849392 0.312668 -1.299350 7.238288 3.244927 -0.168667 3.142510 2.344364 5.042274 0.041327 5.524646 0.905976 -1.341017 1.820664 -0.207879 -2.828243 -0.251350 -5.806836 1.265709 3.280243 1.035307 -3.491008 3.252052 -0.924380 1.206226 2.180450 0.192425 5.854692 2.107679 2.204296 3.416777 5.951959 -2.442261 0.712045 0.728505 3.808358 0.580552 2.972671 -2.393596 -2.690213 -3.779406 0.111403 -6.561219 1.086449 -1.024342 7.421904 -4.168182 1.307320 1.767559 1.601684 4.013883 -3.158411 -1.579126 -4.844724 0.170533 -1.186075 7.328432 0.179904 2.176657 -0.737087 1.954769 -0.273230 1.712074 -0.375753 -4.876626 -1.687202 -9.625999 -2.962299 -2.959826 -1.568835 -0.741145 -4.700057 -0.659957 1.678921 4.904966 -6.875706 -0.641842 1.269917 -0.834518 1.720007 0.770893 -2.466042 0.425992 -1.418533 1.614381 0.870959 -2.114184 -0.384715 -1.916954 0.033035 0.996485 1.863669 0.978832 -5.957192 -0.240696 1.730492 0.194957 -0.774751 1.367399 0.610386 -3.376123 1.993471 -3.860603 3.572580 -5.353990 -1.349407 -2.808884 -3.941121 -1.647423 4.988930 2.988283 4.105602 0.598452 -0.417323 -0.840221 -6.103403 -8.678519 2.255994 -1.610555 0.893120 -0.364764 -0.300219 -0.695398 -2.986007 -1.119505 2.213212 -3.199118 -1.703662 -1.652950 5.449541 -0.250705 -1.606691 -2.259330 -0.162394 3.254804 1.681548 2.135282 -2.948833 -6.910364 -5.256676 -2.324233 3.886542 -1.725184 0.399238 -0.790099 -1.138898 -2.996275 0.510792 -3.277163 1.451218 -2.243353 -1.429657 -5.106508 0.896663 -1.156474 0.032395 -0.003447 -3.676403 1.782752 2.511287 2.072286 -0.663216 1.141812 0.931253 -4.847353 -3.999413 0.600887 -0.295910 5.375133 3.743411 0.806572 -2.478365 -1.015794 -4.584832 3.477705 -5.777176 2.169617 1.343221 -3.415420 3.942491 -3.267837 -1.329254 -3.197475 2.626795 0.251546 -6.014856 6.541081 4.384084 -4.905367 -1.038545 -2.924647 2.149041 1.540821 5.188457 -3.251073 -2.071489 2.098219 -0.922171 -0.551862 -1.782584 1.855469 -0.251561 2.138961 -5.440429 -2.073401 4.018771 2.872453 -0.636545 0.387319 0.117859 -0.743858 0.369379 5.858080 1.728119 1.452092 -4.651596 -9.631170 1.594762 0.330901 0.418696 1.021753 -2.168495 -2.279126 0.019856 -1.649479 4.426811 0.951502 -1.477128 3.858670 -5.583251 -5.018862 -2.571155 -0.024467 1.626963 -1.848035 2.739410 -2.622592 0.242883 -1.539753 2.939317 -0.526835 -2.297351 -1.789405 1.945575 3.091693 1.491823 -2.627651 4.919515 0.113048 -1.680182 -0.260894 -0.901563 0.008249 1.540010 -4.577222 -1.589244 -1.432642 2.377485 -3.400888 4.060721 0.275686 2.975960 1.736180 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.991242 -1.112758 -0.333262 1.847642 0.680933 -0.777154 0.555595 0.973787 0.431424 -3.156679 -1.345515 2.237413 0.013854 -0.823867 0.049166 0.536436 1.333421 0.969726 -3.733804 0.780755 0.188974 0.071760 -1.465220 -0.739187 0.004843 -0.920828 0.807417 1.255536 0.175369 1.923963 -1.136355 0.412103 1.475634 0.106131 1.659635 1.969543 0.268701 -0.473137 -0.086504 -0.572022 3.792644 1.481970 -0.181212 1.537566 1.268749 2.436085 0.320249 2.819254 1.173385 -0.621950 1.032190 -0.513328 -1.286481 -0.257584 -3.118196 0.637327 1.632476 0.661557 -1.827171 1.507175 -0.324752 0.566286 0.947398 0.099719 2.987196 0.740899 1.190089 1.506743 2.831832 -1.303121 0.128211 0.528902 2.047130 0.517077 1.436264 -1.476549 -1.237749 -2.919529 0.051031 -3.067398 0.484322 -0.578818 2.952262 -1.837710 0.704482 1.001205 0.326532 1.803554 -1.376813 -0.779553 -2.625599 0.153820 -0.090365 3.580553 0.036960 0.836049 -0.053469 0.909506 -0.084001 1.050200 0.216875 -2.378982 -0.752479 -4.982435 -1.420449 -1.436681 -0.599879 -0.541231 -2.199418 -0.168059 0.893050 1.977702 -3.150075 -0.360716 0.621561 -0.297273 0.791571 -0.337695 -0.788958 0.098445 -0.536388 0.880012 0.470561 -1.158538 -0.167255 -1.127002 0.289658 0.546296 1.001384 0.301932 -2.373224 -0.254800 0.780649 0.559415 -0.470908 0.399217 0.168091 -1.639871 0.984332 -1.860511 1.804123 -2.426736 -0.443246 -1.401892 -1.452998 -0.786970 3.135399 1.076239 2.057474 0.499874 -0.546282 -0.302099 -2.724371 -4.543860 1.072891 -0.698775 0.429344 -0.011410 -0.179611 -0.190700 -1.328379 -0.734867 0.860234 -1.519369 -0.847060 -0.783874 1.433082 -0.177387 -0.701491 -1.127727 0.195636 2.003798 0.708818 0.994420 -1.464237 -3.587815 -2.315805 -1.290175 1.800270 -0.878214 0.189745 -0.214048 -0.538430 -1.631275 0.468579 -1.607396 0.772257 -1.159177 -1.057999 -2.416676 0.435303 -0.744200 0.478836 0.184170 -1.787862 0.864327 0.562158 1.291104 -0.251037 0.569036 0.500207 -2.684637 -2.200767 0.064018 -0.029586 2.823140 1.156810 0.353639 -1.144908 -0.619902 -2.023835 1.664868 -3.028770 0.955656 0.736762 -1.980638 1.797905 -1.455910 -0.497750 -1.451627 1.315401 0.338100 -2.492774 3.328584 2.202040 -2.428754 -0.732227 -1.422422 0.928245 0.734279 2.639858 -1.546127 -0.915782 1.027056 -0.249457 -0.265864 -0.967087 0.933417 0.087659 1.018767 -2.935304 -1.394579 1.725146 1.461142 -0.276305 0.142045 0.256331 -0.085036 -0.329123 3.170372 0.682147 0.979971 -2.193052 -4.823227 0.793854 0.938731 0.346053 0.766607 -1.393336 -1.115558 -0.020229 -0.465183 2.167515 1.076144 -0.547656 1.922808 -2.548207 -2.334046 -1.171530 -0.287823 0.717124 -0.927375 1.394367 -1.361871 0.016077 -0.948693 1.291962 -0.371964 -0.730284 -0.794452 0.870646 1.274740 0.878862 -1.190936 2.311773 0.086331 -0.946351 -0.088492 -0.306517 -0.003459 1.087451 -1.937041 -0.808148 -0.746248 1.041992 -1.494100 1.801078 0.058698 1.477370 0.613250 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 2.083543 -1.216300 -0.493342 1.961786 0.644294 -0.646303 0.607821 0.950023 0.502014 -3.134930 -1.600010 1.805752 0.122862 -0.753363 0.275008 0.589174 1.323096 0.700187 -3.339189 0.649040 0.135192 -0.170779 -1.619403 -0.371900 -0.124286 -1.100662 0.447738 1.318198 0.046370 1.956029 -0.936136 0.515800 1.534126 -0.070966 1.498995 2.000505 0.332083 -0.308452 -0.004442 -0.299681 3.709728 1.417820 -0.295986 1.492791 1.208302 2.476197 -0.095043 3.478887 0.584675 -0.661193 1.584200 -0.828780 -1.235225 -0.158484 -3.006955 0.653229 2.128356 0.519340 -1.822843 1.627282 -0.656105 0.621330 0.930755 0.243185 2.957675 1.130837 1.438380 1.541791 2.825352 -1.392176 0.092328 0.717285 1.892725 0.474533 1.164276 -1.373179 -1.154080 -2.375085 0.266439 -2.539807 0.379435 -0.745395 3.094222 -1.825012 0.269301 1.082510 0.316744 1.816998 -1.549257 -0.503301 -2.447807 0.130405 -0.086392 3.624614 0.009277 0.967201 -0.149861 0.928494 -0.026670 1.103824 0.072609 -2.299026 -1.251444 -4.848630 -1.758260 -1.329397 -0.507530 -0.458501 -2.393874 -0.283047 0.902450 1.615056 -3.034752 -0.234187 0.664466 -0.063753 1.403432 0.513731 -1.252055 -0.064983 -0.263067 0.819764 0.624419 -0.911692 0.075794 -1.617066 0.580100 0.614115 0.886198 0.241344 -2.616521 -0.068976 0.754503 0.387158 -0.422526 0.417945 0.240105 -1.710089 1.093386 -1.740055 1.817902 -2.910285 -0.668386 -1.564208 -1.920695 -0.668193 3.216524 1.362713 2.395135 0.594539 -0.741314 -0.381348 -2.943436 -4.669996 0.732531 -0.585603 0.605786 -0.167563 -0.224285 -0.144324 -1.351679 -0.534334 0.914480 -1.485168 -0.762395 -0.782050 1.910238 -0.136530 -0.825300 -1.154656 0.182362 1.740407 0.506992 1.226290 -1.262533 -3.671196 -2.427614 -1.250905 1.792718 -0.806167 0.275132 -0.176622 -0.533629 -2.159348 0.403170 -1.523481 0.684058 -1.050443 -1.286222 -2.451693 0.497176 -0.605611 0.423042 0.195381 -1.860393 0.726938 0.849240 1.366616 0.008397 0.742589 0.355369 -2.565774 -2.330483 0.006766 -0.175267 3.088475 1.373792 0.218085 -0.554158 -0.620740 -2.324295 1.735469 -2.966310 0.847891 0.759491 -1.792022 1.745579 -1.555616 -0.880259 -1.740790 1.239940 0.304878 -2.343994 3.263290 2.188326 -2.397620 -0.845655 -1.509823 0.969901 0.692686 2.730044 -1.468180 -0.812319 0.994925 -0.115740 -0.262834 -0.901733 0.999406 0.039043 0.908282 -2.791151 -1.379482 1.820798 1.575051 -0.316347 0.196778 0.245741 -0.005569 -0.159445 2.993474 0.676692 0.555160 -2.022140 -4.954333 0.832205 0.430079 -0.151270 0.640076 -1.640917 -1.160120 -0.032797 -0.513795 2.169051 1.058172 -0.296658 2.016443 -2.471494 -2.382047 -1.246687 -0.236784 0.610343 -1.043703 1.256933 -1.325039 0.186365 -0.759009 1.242862 -0.241643 -1.076661 -1.129380 0.669189 1.331867 0.487566 -1.073953 2.364084 0.113255 -0.827229 -0.269946 -0.226057 -0.001333 1.222287 -2.029039 -0.872731 -0.866859 1.023995 -1.495016 1.730859 0.115172 1.404416 0.887805 -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.310481 -0.103199 0.053779 0.432740 0.220050 -0.298273 0.168814 0.201348 -0.010849 -0.730045 -0.207162 0.097125 -0.003488 -0.230606 0.076036 0.112271 0.248203 0.388965 -0.566240 0.223912 0.138051 0.143272 -0.233513 -0.271552 -0.008416 -0.224061 -0.066878 0.292688 0.064058 0.513189 -0.362178 -0.008924 0.397180 0.032941 0.368609 0.531874 0.458941 -0.035189 0.028930 0.071917 0.913984 0.211245 -0.084471 0.252295 0.365582 0.602810 0.103543 0.361110 -0.170110 -0.196771 0.062591 -0.271924 -0.183597 -0.101316 -0.647766 0.294651 0.523297 0.470086 -0.544985 0.427811 -0.124469 0.120804 0.245104 0.013369 0.547437 0.217226 0.085782 0.392158 0.816849 -0.356821 -0.036172 0.129404 0.477027 -0.008992 0.327844 -0.121508 -0.171921 -1.000257 -0.030029 -0.622619 0.126277 0.046264 0.664304 -0.523892 0.270188 0.609080 0.073805 0.400760 -0.350657 -0.249471 -0.601900 0.038479 -0.059420 0.857827 0.083581 0.082377 -0.038340 0.346160 0.121678 0.319051 0.058583 -0.516493 -0.386278 -1.174338 -0.506281 -0.305148 -0.222357 -0.188583 -0.549999 -0.235831 0.634796 0.586856 -0.813462 0.058109 0.227638 0.095699 0.002149 -0.415863 -0.249897 0.130508 -0.239881 0.030210 0.070971 -0.320409 -0.097711 -0.192529 0.066706 0.107405 0.243374 -0.056213 -0.396594 -0.042590 0.066353 -0.011493 -0.188217 -0.014071 -0.049997 -0.568503 0.269494 -0.495660 0.471785 -0.528971 0.053115 -0.259318 -0.531861 -0.129420 0.687998 0.026011 0.284633 0.077622 -0.357402 -0.124140 -0.571700 -1.058901 0.356677 -0.077762 0.214414 0.044760 -0.105105 -0.124149 -0.250125 -0.248956 0.266290 -0.416848 -0.146904 -0.115174 0.467320 -0.147814 -0.202771 -0.446451 0.109310 0.696149 0.219713 0.129248 -0.460122 -0.282872 -0.480029 -0.403062 0.440463 -0.160851 0.095833 -0.030301 -0.109408 -0.545427 0.351406 -0.409918 0.292198 -0.324534 -0.211185 -0.629131 0.093222 -0.236837 -0.041712 0.069955 -0.426301 0.233505 -0.119907 -0.074522 -0.090533 -0.017214 0.195658 -0.651787 -0.606418 -0.044271 0.097195 0.473128 0.231038 0.238078 -0.248139 -0.161347 -0.395804 0.456703 -0.523083 0.136086 0.209721 -0.408259 0.560264 -0.305604 -0.248414 -0.428813 0.357940 0.146149 -0.191919 0.842606 0.521576 -0.575022 -0.231135 -0.313729 0.197633 0.268830 0.784091 -0.385622 -0.160702 0.352861 -0.105440 -0.090308 -0.307392 0.267199 -0.041640 0.453820 -0.652504 -0.324821 0.261201 0.523514 -0.083655 0.186943 0.092600 0.000242 -0.268593 0.754414 0.183648 0.264044 -0.467833 -0.619416 0.258464 -0.135053 0.219962 0.110556 -0.247583 -0.200144 0.043092 0.152560 0.570952 0.482906 -0.083088 0.518875 -0.652004 -0.624551 -0.073534 -0.022251 0.227185 -0.434644 0.344465 -0.392254 0.021156 -0.204912 0.310170 0.009334 -0.118656 -0.324511 0.080421 0.282573 0.218062 -0.347727 0.632068 -0.039638 -0.306267 0.081779 -0.050817 0.212576 0.216152 -0.203696 -0.247844 -0.251700 0.266195 -0.349664 0.603485 -0.173267 0.179226 0.309277 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 1.555254 0.579306 -0.633307 1.500484 0.043419 -1.048508 0.848141 1.305125 0.088998 -2.644460 -1.294877 1.404838 0.462387 -0.765602 -0.025495 0.580892 0.355056 1.713972 -2.152316 0.510930 0.704112 0.716084 -1.153111 -1.136905 -0.243762 -0.407700 -1.130576 0.565040 0.251155 2.135332 -0.724424 -0.032296 1.598440 -0.290920 0.364681 1.924668 1.135246 0.229363 0.413570 -0.229341 2.596756 1.339412 -0.437380 1.240891 0.616126 2.117312 -0.400674 1.985873 -2.106916 -0.909261 0.279259 -0.641314 -1.232714 -0.268297 -1.479327 1.032427 2.432131 1.709489 -1.209421 1.818944 -0.505712 0.367768 1.063773 -0.194069 1.502320 1.952571 0.145410 1.611924 2.989743 -1.367377 0.258458 0.180666 0.961014 -0.538902 1.299113 -0.575250 -0.910150 -1.719108 0.066830 -2.952900 0.122667 0.040604 4.079931 -2.314998 0.948935 1.786457 1.224491 1.531457 -1.458945 -0.561493 -1.544225 0.018298 -1.132470 3.884822 0.291645 0.816628 -0.821126 1.129946 0.583863 0.658447 -0.266173 -1.458768 -1.632399 -3.534390 -1.425699 -1.022060 -0.943482 0.167883 -2.078575 -1.185124 1.967360 2.158440 -3.486053 0.114979 1.040144 0.477908 0.938020 0.661741 -1.802193 0.928762 -0.878754 -0.476311 0.258116 -1.207645 -0.292041 -0.165415 -0.485467 0.229260 0.363961 0.237131 -3.361959 -0.075795 0.160376 -0.946185 -0.147893 0.529040 0.156805 -1.871196 0.930778 -2.043552 1.420135 -2.633838 -0.340365 -0.351969 -2.898934 -0.571520 1.494818 0.750201 1.154330 -0.352774 -0.746621 -1.035561 -2.366591 -3.370846 1.239971 -0.063284 1.040345 -0.141450 -0.310935 -0.695811 -1.328401 -0.309869 1.040059 -1.189362 -0.237860 -0.137208 4.751955 -0.561071 -0.794957 -1.513991 -0.054817 1.461224 0.893491 0.614522 -1.266005 -1.096112 -2.378361 -1.021055 1.822925 -0.423556 0.184914 -0.530262 -0.435932 -1.687677 0.441350 -1.229606 1.135470 -0.431464 -0.577883 -2.447204 0.652504 -0.346439 -1.032290 0.267846 -1.499700 0.478520 0.970970 -0.038856 -0.345388 -0.048576 0.859879 -2.101002 -1.877528 0.103451 -0.168922 1.720565 2.016009 0.832388 -0.815834 -0.266080 -1.995821 1.623306 -1.765423 0.619584 -0.052724 -0.464933 2.191761 -1.445410 -0.990668 -2.380608 1.043257 0.315359 -1.342325 2.996312 1.473469 -1.481356 -0.380187 -0.836303 0.647218 1.068076 2.295463 -1.669489 -1.415573 1.350634 -1.121686 -0.272557 -0.900859 0.838757 -0.646560 1.439489 -1.676948 -0.219655 1.281469 1.571731 -0.474229 1.036508 0.414061 -0.594916 0.017776 2.087526 1.085438 -0.180017 -1.745615 -2.633912 1.143238 -1.710171 0.194023 -0.448521 -0.621650 -0.838365 0.796147 0.324082 1.753974 1.006454 -0.615997 1.705935 -2.754913 -2.294918 -0.212757 0.425668 1.185319 -1.254746 0.694270 -0.976609 0.587879 0.108972 0.935044 0.421880 -1.488819 -1.249883 0.310506 1.815640 0.122013 -1.317750 2.480576 -0.231381 -0.764632 0.351180 -0.640141 0.759217 -0.002076 -1.099009 -0.316372 -0.570002 1.166206 -1.513117 2.463303 -0.217310 0.014684 1.567392 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.369941 -0.524162 -0.035307 0.565710 0.186114 -0.233610 0.126630 0.052474 0.093058 -0.708760 -0.117065 0.183878 0.001833 -0.196630 0.100991 0.175940 0.259563 0.059824 -0.644355 0.255989 0.008691 -0.065203 -0.344466 -0.073791 -0.022221 -0.384650 0.334044 0.437152 -0.050210 0.435629 -0.298240 0.109432 0.368069 -0.022701 0.428867 0.483340 0.327346 -0.026955 -0.160006 0.229435 0.915407 0.217704 -0.152666 0.166392 0.353952 0.608382 0.227232 0.684466 0.265589 -0.153504 0.347346 -0.066073 -0.171083 -0.153739 -0.769905 0.153504 0.479632 0.218297 -0.536584 0.358908 -0.296414 0.123242 0.229062 0.337853 0.770174 0.098768 0.445005 0.368364 0.736235 -0.353709 -0.047803 0.252539 0.548397 0.106994 0.454192 -0.233341 -0.405662 -0.911919 0.045386 -0.280015 0.034195 -0.025063 0.308505 -0.402114 -0.035591 0.390425 0.002263 0.467174 -0.437654 -0.086608 -0.628382 0.041384 0.116223 0.920009 0.031601 0.150178 0.029719 0.341477 0.071996 0.354023 0.189433 -0.633363 -0.214005 -1.125700 -0.569314 -0.348560 -0.142876 -0.220017 -0.643683 -0.051019 0.395952 0.333932 -0.665098 0.082370 0.191028 0.063802 0.566459 -0.392432 -0.077943 0.034570 -0.013100 0.213804 0.212877 -0.237120 0.048868 -0.376942 0.419178 0.242637 0.225288 -0.053302 -0.336532 0.036663 0.191719 0.183360 -0.140103 0.020825 0.011436 -0.575832 0.268872 -0.413745 0.531346 -0.629651 -0.055837 -0.409766 -0.347557 -0.095970 0.868490 0.140824 0.491529 0.103673 -0.451131 0.028421 -0.678308 -1.295243 0.109954 -0.085185 0.004403 0.023577 -0.102553 -0.010729 -0.217803 -0.130328 0.308322 -0.413331 -0.188850 -0.132019 -0.130193 0.019390 -0.199008 -0.260683 0.061624 0.506191 0.303641 0.395101 -0.291415 -0.954255 -0.536562 -0.377860 0.392733 -0.163879 0.040948 -0.032207 -0.233387 -0.736240 0.345807 -0.374338 0.223436 -0.316924 -0.301544 -0.568033 0.079813 -0.212434 0.217168 -0.019200 -0.479619 0.152369 -0.232358 0.030434 0.061368 0.124683 0.082028 -0.679877 -0.639082 0.041580 0.046877 0.789800 0.012320 0.113878 -0.002271 -0.182448 -0.487416 0.391933 -0.704301 0.138229 0.341243 -0.600806 0.466866 -0.287578 -0.301532 -0.312406 0.352105 0.080726 -0.004847 0.976433 0.694661 -0.617535 -0.272154 -0.183979 0.223208 0.205429 0.748581 -0.393125 -0.110989 0.219991 0.170319 -0.086806 -0.115575 0.276734 -0.035662 0.257478 -0.669069 -0.428857 0.270543 0.514607 -0.053826 -0.048990 -0.030045 -0.094505 -0.381108 0.716478 0.109671 0.353194 -0.443142 -0.915614 0.194609 -0.134238 -0.046729 0.254596 -0.467795 -0.212762 -0.006867 0.030827 0.597640 0.383785 -0.095652 0.504345 -0.655174 -0.614672 -0.324531 -0.212688 0.009471 -0.300563 0.429901 -0.397063 0.001748 -0.261852 0.290966 -0.222196 -0.040626 -0.065609 0.106527 0.125790 0.175806 -0.320380 0.566621 0.042811 -0.213938 -0.159804 0.060823 -0.076578 0.419384 -0.286205 -0.277344 -0.279477 0.293215 -0.286937 0.396273 -0.109567 0.353193 0.168972 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.784988 -0.454900 -0.375187 0.563016 0.211264 0.500046 -0.059473 0.368621 0.280344 -1.084960 -0.803335 1.266894 -0.029200 0.120057 0.003088 0.308063 1.019667 -0.269107 -0.990082 0.234874 -0.307000 -0.612101 -0.685644 0.537612 0.187610 -0.537177 0.555257 0.481797 0.014419 0.748413 0.207680 0.291316 0.555057 -0.150591 0.882724 0.940894 0.020655 -0.004974 -0.430204 -0.542397 1.264070 0.485580 0.089633 0.382386 -0.015331 0.892779 0.208064 1.062081 1.079302 0.095659 0.409911 0.058158 -0.496505 -0.043519 -1.623228 -0.051116 0.063551 -0.834965 -0.623840 0.575539 0.003976 0.354109 0.069381 0.288197 1.103519 -0.414733 0.700586 0.606846 1.032508 -0.516601 0.002750 0.805127 0.400187 0.451871 0.500461 -0.241041 -0.627358 0.356230 0.173639 -0.301624 -0.049460 -0.565107 1.187902 -0.507469 -0.394002 0.023744 -0.672895 0.896035 -0.495502 0.205776 -0.698291 -0.114653 0.201609 0.479709 0.534449 0.688137 0.461820 -0.187787 -0.291256 0.317309 -0.091315 -1.008032 -0.093913 -1.712241 -0.307403 -0.710453 -0.105591 -0.119673 -0.586495 -0.233919 -0.290164 1.248460 -0.414873 0.051787 0.221701 0.128016 0.321617 -0.187488 -0.168966 0.018106 0.664975 0.465744 0.828163 -0.153167 -0.218851 0.060086 0.805977 0.199257 0.353987 -0.058341 -0.503725 -0.586264 0.672517 0.482453 -0.281640 0.110997 -0.002465 -0.459471 0.095141 0.005130 0.710500 -0.728163 -0.280690 -0.347280 -0.346390 -0.369622 1.314777 0.495210 1.263835 0.028124 0.114320 0.298995 -0.887910 -1.779960 0.429117 0.175319 -0.305216 0.004363 -0.132088 0.805786 -0.747022 0.380171 0.366601 -0.513026 -0.575005 0.366386 -0.302517 0.253125 -0.231729 -0.133578 -0.389335 -0.273671 0.298510 0.611640 -0.250209 -1.835017 -0.500493 -0.498907 0.799477 -0.374324 0.122868 0.173865 -0.322308 -0.236083 -0.384561 -0.457821 0.129765 -0.146283 -0.824530 -0.876536 -0.416874 -0.181674 0.223085 0.421438 -0.953625 0.214589 0.522746 0.160984 -0.119555 0.206612 -0.447701 -0.460806 -0.519435 0.142187 -0.179315 1.218383 0.458872 -0.342847 -0.338482 -0.086016 -0.179193 0.383607 -1.055502 0.763471 0.199242 -0.974425 0.449675 -0.474684 -0.305562 -0.157614 0.554386 0.240650 -1.612246 0.643780 1.187953 -0.529647 -0.614989 0.329397 -0.389545 0.045417 1.096860 -0.466242 -0.308584 0.277773 0.302917 0.031543 0.232423 0.551287 -0.072841 0.084202 -1.375236 -0.407354 0.857199 0.468949 0.136484 -0.064636 0.681890 0.427080 0.286870 1.117323 0.337018 0.125702 -1.079606 -2.041440 0.379971 0.489964 -0.471477 0.696190 -0.384783 -0.239340 0.027246 -1.071218 0.895616 -0.428275 0.075189 0.831673 -0.205017 -0.937815 -0.808360 -0.352115 0.098711 0.191727 0.802651 -0.629172 0.141856 -1.147774 -0.033007 -0.534905 0.148669 0.321137 0.335568 0.071656 0.553257 0.184119 0.720770 0.212668 -0.416255 -0.172487 -0.390894 -0.267443 0.423704 -1.332406 -0.503299 -0.239309 0.816146 -0.427059 0.252494 0.289353 0.721523 0.261572 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = 1.041798 0.397163 -1.404124 2.404295 -0.717067 -0.048977 0.485531 0.400025 -0.942908 -3.571771 -0.824317 0.870610 1.128467 1.186245 -0.457108 1.416295 -0.141628 0.770202 -4.169120 -0.100319 1.494231 0.291248 -0.294259 0.101286 -0.146412 -1.004764 0.606242 0.665812 0.230292 2.838812 -0.689633 1.657583 2.398519 -0.781587 0.317915 1.780398 1.016713 0.300199 -1.200194 0.371391 2.316329 0.902744 -0.896659 -0.385137 -1.414884 2.783146 1.047510 1.450109 -2.409284 -1.624641 -0.228633 0.233775 -1.133673 -0.627630 -1.341515 0.104507 1.500958 2.819825 -0.681096 1.330979 -0.844252 0.219317 1.289048 1.283263 2.490952 0.820957 1.911766 2.095270 2.420817 -1.944338 0.965302 -0.013024 -1.304670 -1.430695 1.959482 -0.647150 -1.509940 -1.734515 0.547614 -3.756674 -1.570320 0.998432 2.481126 -2.344207 -0.152538 0.618172 1.141471 2.865220 -1.956040 0.906255 -2.250141 -0.764502 -0.523592 4.325466 0.735945 0.382192 -0.376489 1.419814 0.769588 0.201262 0.259258 -2.263564 -0.368539 -1.979866 -1.272623 -1.554820 -0.535511 1.957002 -2.854919 -1.119553 0.413427 2.680353 -4.214067 0.678158 0.692235 1.694656 3.408068 0.696848 -1.354469 1.294217 -0.215108 -0.393365 1.896242 -1.422725 1.192142 0.289474 0.684006 0.653182 0.060189 0.840151 -4.544317 -0.561632 1.188569 -2.110919 0.586710 1.692523 1.579250 -0.935304 1.200560 -2.589367 1.867661 -2.777624 -0.097366 0.540913 -3.547445 -1.127466 0.536878 1.960988 -0.153517 -1.319932 -1.969251 0.391365 -3.254678 -4.506296 0.061223 1.303921 -0.107641 1.099482 -1.086209 0.829821 -2.198998 1.149117 2.144090 -0.759214 -1.323738 0.422536 2.769607 1.069642 -0.648797 -0.225360 -0.517944 -0.844432 1.451527 3.407277 -0.774988 -2.455564 -4.475743 -1.037677 2.451151 -0.736373 -0.541082 -1.598036 -1.396723 -3.087562 0.451459 -1.570178 0.319145 0.138307 -0.575826 -3.011938 1.152835 -0.386423 -1.846449 0.664739 -2.127819 0.007032 1.271916 -1.344944 0.389951 -1.112635 0.529553 -0.909764 -1.255061 1.616977 -1.520393 2.038700 0.778900 0.049720 -0.771730 -0.702071 -1.716882 1.947229 -0.280407 1.598163 -0.220308 -0.281123 1.704698 -2.082846 -0.578416 -0.991863 1.181242 0.485355 -0.689928 4.108678 2.119265 -0.978379 0.211472 0.909308 0.883963 0.818763 0.940499 -2.118891 -2.208838 0.694158 0.172911 0.033108 -0.037297 0.417633 -1.495499 -0.428493 -1.533226 -0.188832 1.447106 1.287015 -0.319726 0.466737 0.987852 -1.956177 -0.257059 1.741777 1.275295 -0.069423 -0.845089 -2.380673 1.441771 -3.392071 -0.626191 -1.277180 -0.912004 0.046606 1.542055 -0.935967 2.059239 0.877197 -2.378766 2.104608 -3.785313 -2.574495 -2.212235 -0.299875 0.367229 0.277336 0.120244 -0.974392 1.409200 0.426604 0.345902 -0.681814 -2.145795 0.900365 0.901485 1.756613 -0.803614 -0.754349 2.943208 0.107522 0.243407 -0.759219 0.085539 -0.587687 0.106971 -1.503487 -0.425306 0.718709 1.937907 -1.785120 0.727856 -0.932149 -0.635534 1.486405 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.160901 -0.163544 -0.072647 0.158100 0.019407 0.247271 -0.129733 0.095641 -0.037824 -0.510212 -0.310785 -0.039424 0.012524 0.065490 0.301673 0.388468 0.407380 0.009187 -0.332094 0.030356 0.106523 -0.160395 -0.094435 0.362005 0.220267 -0.300761 -0.125059 0.022036 -0.018603 0.352650 0.063218 0.314970 0.261802 -0.030541 0.331890 0.250075 0.027358 0.089175 -0.064042 0.214540 0.558290 -0.121261 0.083908 -0.235753 -0.090891 0.418875 -0.204585 0.247420 0.337137 0.021113 0.307418 -0.011081 0.044677 0.092207 -0.617764 -0.087678 0.005714 -0.020478 -0.322243 0.240889 -0.179975 0.299876 0.015843 0.067233 0.479871 0.027996 0.327943 0.277154 0.334724 -0.113994 0.114404 0.210901 -0.069027 -0.150384 0.055200 -0.084018 0.019264 -0.482746 -0.019510 -0.130139 0.045849 -0.202179 0.580289 -0.148441 -0.156153 0.371901 -0.265240 0.455863 -0.118515 0.298648 -0.416026 -0.044490 0.043288 0.326618 0.268044 0.238138 0.108815 -0.080111 -0.097803 0.024276 0.106902 -0.347975 -0.366470 -0.546490 -0.262566 -0.222079 0.020661 0.080909 -0.359567 -0.092466 0.294820 0.163240 -0.294113 0.179025 -0.058234 0.270632 0.087880 0.101541 -0.324087 -0.069467 0.200209 0.289997 0.287636 -0.067028 0.135772 -0.358313 0.364923 0.184289 0.105094 -0.203618 -0.000810 -0.257043 0.211562 0.086590 -0.124638 0.085661 0.167932 -0.074391 0.149007 0.110095 0.233919 -0.388554 -0.035515 -0.010195 -0.318784 -0.099835 0.600340 0.077557 0.271976 0.208174 -0.199023 0.191382 -0.497598 -0.716043 0.023189 0.102358 0.063467 0.145818 -0.149198 0.333264 -0.232238 0.208191 0.068614 -0.136152 -0.087904 0.172074 -0.190645 0.090339 -0.164434 -0.151746 -0.185740 -0.028868 -0.106677 0.333745 -0.079881 -0.391847 -0.345909 -0.239481 0.333009 -0.195545 0.148191 0.175444 0.000747 -0.238922 0.083713 -0.228002 -0.162678 0.002538 -0.377156 -0.387352 -0.272899 -0.220332 -0.014828 0.093963 -0.449160 0.221389 0.018351 -0.246800 -0.001571 -0.048331 -0.281250 -0.073713 -0.263633 -0.223626 -0.213452 0.159792 0.079566 -0.089889 0.040861 -0.029095 0.010555 0.234405 -0.133216 0.211090 -0.083127 -0.407093 0.107747 -0.182563 -0.087242 -0.309880 0.184816 0.067147 -0.424961 0.101436 0.535525 -0.166260 -0.251131 -0.017206 0.052036 -0.032565 0.490166 -0.078896 0.120000 0.126337 0.305373 0.036997 0.222200 0.138795 -0.117326 -0.010813 -0.603227 -0.113151 0.398167 0.274592 -0.028308 -0.094642 0.340656 0.212113 0.224595 0.411130 0.138681 -0.068323 -0.148888 -0.523302 0.110969 0.253514 -0.023243 0.126972 -0.125815 0.130326 -0.022264 -0.347408 0.365033 0.281873 0.254405 0.294676 0.044798 -0.423648 -0.278611 -0.017537 0.016863 0.059174 0.155557 -0.241643 -0.039188 -0.321397 0.070698 -0.180519 -0.253167 -0.125818 0.053168 0.229445 0.340885 -0.199946 0.284074 0.167236 -0.125542 0.162780 -0.118773 0.116459 0.343470 -0.141717 -0.290842 -0.060526 0.275779 -0.237934 0.124598 -0.109845 0.128509 0.070425 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 3.362697 1.846036 -2.055219 3.628500 -0.225428 -0.419605 1.157422 2.418982 -0.090387 -7.030131 -3.648398 2.557076 1.603837 0.188776 0.069689 2.379388 1.503942 3.594032 -6.087794 0.353451 2.329941 0.782007 -1.448229 -0.743620 -0.023727 -1.305299 -1.856835 0.145548 1.079581 4.953848 -1.648910 1.714162 4.488889 -1.821572 0.724901 4.309574 2.003179 0.682493 -0.106893 -1.067147 6.070125 1.276435 0.511767 2.219842 -0.737997 5.337484 -0.995691 5.632246 -3.726983 -2.487806 0.900393 -1.504616 -2.330375 0.198246 -3.969564 2.093288 4.751049 3.609530 -2.460470 3.626785 -0.160287 1.291423 2.227416 -0.380869 4.014654 3.916708 1.080283 4.394574 6.369819 -3.293862 1.428798 0.455011 -0.303602 -1.627433 3.376528 -2.886051 -1.468017 -2.158398 0.162495 -6.626915 0.283233 -0.386043 9.914699 -5.436446 1.181031 2.972559 1.919113 4.856018 -2.712955 0.366987 -3.633183 -0.605649 -2.282196 7.635538 1.173603 1.950283 -1.467449 1.612057 0.433310 0.674469 -0.563021 -3.755867 -2.881954 -6.612641 -3.721788 -2.640045 -0.945320 2.061089 -5.565178 -2.450959 1.867155 4.442461 -8.269064 0.636436 1.644507 2.500047 2.729509 2.988162 -4.974431 0.954289 -0.625431 -0.234870 1.258280 -2.218004 0.196912 -1.332355 -0.946716 0.815651 1.147981 0.069418 -7.649230 -1.705802 0.120588 -2.627615 -0.018266 2.309184 1.633082 -3.426328 2.432807 -3.744302 3.208532 -6.458830 -1.894176 -0.587149 -7.051704 -2.111182 3.454311 1.869585 3.094461 -1.411775 -2.567961 -1.626233 -6.459895 -6.403585 1.542969 0.554149 1.786356 1.697365 -1.327643 0.333057 -3.733343 0.456724 2.390732 -2.017994 -1.673217 0.339155 9.007042 -0.668139 -1.737093 -3.279341 -0.706985 1.127213 1.044673 3.152332 -1.834439 -2.089001 -6.711366 -2.442175 4.874040 -1.653790 0.972216 -1.844962 -0.897109 -4.091389 -0.132225 -3.453868 1.130180 -0.091073 -1.986722 -5.982723 1.341446 -0.954879 -2.899979 1.517033 -4.487481 1.507780 3.602777 0.590795 -0.386340 -1.025443 0.611138 -4.691029 -4.642919 0.672685 -1.980594 3.087214 3.894383 0.896832 -2.001312 -1.229895 -3.384790 3.068535 -3.017754 2.417586 -0.627573 -0.370251 3.760952 -4.046301 -1.573826 -4.894863 1.937642 0.885985 -5.369820 6.273001 2.759259 -2.731165 -0.333083 -1.000282 1.641205 1.276226 4.100347 -2.998474 -3.416512 2.865637 -1.461197 -0.189002 -2.251898 2.085212 -1.903019 1.685044 -4.190660 -0.238648 3.762621 3.062648 -0.909698 1.711316 2.874350 -1.418652 1.137157 4.919712 3.286735 -1.121799 -3.034767 -6.573117 2.526639 -2.995875 -0.038808 -1.185965 -1.418956 -0.859522 2.420987 0.248164 4.301905 1.423864 -0.319797 4.306852 -5.926979 -5.514802 -1.382143 0.579772 2.656626 -1.357484 -0.358675 -2.662265 1.571114 -0.099992 1.524936 0.380390 -4.097567 -1.645550 1.449891 5.135226 -0.536340 -1.215349 5.883250 0.603811 -1.340771 0.761421 -1.319224 1.242172 -0.255596 -3.229933 -0.529797 0.250440 2.927088 -3.828747 4.269674 -1.147835 -0.420430 3.382718 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 4.860605 -2.105727 -6.795697 12.716076 -0.370615 2.987237 1.049057 0.188785 0.907016 -18.800242 -7.243481 12.233793 3.418602 3.112812 -1.029611 5.257766 3.631295 4.604988 -14.822638 -1.391793 3.832971 -0.112218 -1.490214 0.396426 -0.178695 -3.720525 9.390900 0.992261 2.340287 10.830172 -1.803266 9.295024 9.793351 -2.196574 1.936980 6.696230 -1.999351 -0.062619 -7.061383 -5.443924 13.497003 1.752528 2.512548 6.564565 -4.530384 11.090019 2.681359 10.195849 5.838694 -4.785109 3.578946 5.743051 -3.646003 -2.127063 -12.105101 2.092021 3.555279 2.481641 -2.391575 3.667872 0.164278 2.277118 4.348459 0.922328 12.971537 4.855394 9.158954 11.699639 9.958012 -7.912907 3.659768 0.920946 -1.838211 0.053285 11.287665 -7.983717 -7.513482 1.952683 -3.316341 -11.436496 -0.432847 -2.051303 17.442098 -8.728702 -3.173597 -2.314146 4.007213 12.759832 -3.526727 3.120465 -11.075140 -1.684406 -1.261336 11.521052 3.384627 4.023645 -4.321514 1.839755 -2.413566 0.451227 3.461828 -10.035097 3.176044 -12.938319 -6.420389 -7.702137 2.333411 6.292696 -11.987948 0.750718 -6.895521 9.943420 -17.587437 -1.952702 1.001654 4.343511 13.367876 1.765700 -6.088136 0.083932 3.112188 2.691121 3.523291 -4.902329 3.504771 -2.005184 -0.977705 0.531352 3.188072 2.998956 -14.490864 -6.247291 0.885448 0.162854 2.983117 7.007156 8.376610 -2.721640 4.535018 -6.383687 7.648545 -11.698706 -6.046040 -2.437926 -10.163781 -6.858916 11.431738 6.131680 10.643887 -3.962822 -5.480773 -0.917448 -14.636402 -16.513220 1.161281 0.906058 -1.699822 7.398925 -2.688025 4.868236 -10.440474 5.489732 9.304729 -3.783330 -5.943937 1.349191 4.341414 1.208869 -2.528717 -3.850611 -2.705403 -3.257541 3.609679 12.829860 -1.362223 -16.313066 -18.289068 -3.786761 9.887897 -6.048457 0.353056 -5.605905 -4.286081 -6.649017 -3.300950 -8.101598 -0.685374 1.233185 -7.017158 -13.182696 4.360101 -1.535678 -3.651920 4.850370 -10.665249 2.755843 8.098811 3.912811 0.749102 0.075431 -1.724341 -8.772369 -7.176030 4.136031 -7.591434 9.038699 5.974170 -0.902316 -7.558263 -5.161342 -7.228227 5.081912 -8.001366 7.848151 0.897372 -2.228308 3.025156 -10.448236 0.597407 -6.898092 2.767012 1.439143 -18.856858 12.463435 5.519407 -5.576047 0.828679 0.185962 5.216066 -0.724569 4.059889 -7.553446 -7.868177 2.967903 0.993508 0.491094 -3.642039 2.050293 -3.321486 -3.392115 -10.959899 -3.079708 9.935469 3.491959 -2.132841 -0.449061 7.169005 -6.511650 2.313865 10.721154 9.147168 1.174414 -7.258524 -19.681618 3.484494 -3.477896 -2.473088 -1.106665 -6.924403 -1.591506 6.219702 -6.923996 8.438879 -4.259000 -4.293006 9.379514 -13.322849 -9.791500 -7.221220 -3.563059 3.812698 1.245263 1.136704 -4.965063 2.578512 -1.505497 1.887769 -4.957813 -7.724413 6.045732 6.433781 10.851755 -1.510954 2.161687 10.707907 4.209130 -2.339886 -1.094786 -1.002394 -5.734343 -0.528576 -16.106721 -0.681930 4.522594 6.109039 -8.204852 2.475459 -3.092585 0.996897 1.434610 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.686781 -1.875252 -0.611258 3.279139 0.185450 0.555530 0.730767 0.732986 0.630615 -5.222706 -1.960990 1.949978 0.496057 0.497012 0.212818 0.810518 1.426955 0.851258 -5.430698 -0.145044 1.031283 -0.006719 -0.278128 0.076500 0.004619 -1.467022 1.950358 1.499743 0.432326 3.144982 -0.697225 1.675469 2.796983 -0.396750 0.904295 2.591723 0.353573 0.033544 -1.481740 -0.662709 4.457254 0.864674 -0.187088 1.568700 -0.396414 3.547493 0.990813 3.531740 2.193067 -1.373252 1.781476 -0.476339 -1.325197 -0.984110 -3.781781 0.437146 2.432197 1.596814 -1.437743 1.779667 -0.527169 0.678570 1.196925 0.376925 3.726284 1.330932 2.575359 2.734095 3.324582 -2.670337 0.472138 0.749637 0.337269 0.316643 2.064788 -2.857352 -1.835130 -3.097092 -0.198588 -3.433607 -0.565289 -0.692688 3.464168 -2.351921 -0.414388 0.649571 0.006965 3.169059 -1.432319 0.553760 -3.450971 -0.341171 0.603311 3.984265 0.504930 0.725852 0.074220 0.852737 -0.036122 1.007454 1.318461 -3.018741 -0.524496 -5.046123 -2.019073 -2.097165 0.412207 0.943912 -3.251324 -0.064315 -0.262852 1.353829 -4.521726 -0.437960 0.793985 1.589887 2.818843 -0.314088 -1.331305 -0.199950 0.720948 0.991210 1.728591 -2.071568 0.915472 -1.332401 0.601079 0.858081 0.893359 0.321531 -2.995490 -1.554958 0.613165 0.565901 0.285923 1.231673 1.368689 -1.069055 1.417492 -2.339523 2.858021 -3.628296 -1.043335 -0.983940 -2.055070 -1.624358 4.596304 1.344445 2.437722 -0.276528 -2.212713 0.168261 -3.547788 -5.585191 0.449582 0.579523 0.387614 1.347766 -0.906603 1.176099 -2.424878 0.816416 1.388365 -1.210017 -1.453952 0.279297 -0.142389 0.422564 -0.878601 -1.247493 0.220079 0.703181 0.585247 3.204191 -0.892661 -4.593111 -4.182711 -1.668296 2.897081 -1.482571 -0.180649 -0.959033 -1.130030 -2.880167 0.218322 -2.258959 0.168153 -0.097666 -2.741538 -3.878855 1.267971 -0.937734 0.369743 1.567805 -3.024641 0.517247 0.817808 1.857235 0.402051 0.315872 -0.057147 -3.316986 -2.910423 0.229429 -1.449841 3.633723 0.612437 -0.078572 -1.274519 -1.316383 -1.754250 2.003851 -2.334107 1.812811 0.214662 -1.723471 1.556703 -2.210860 -0.169577 -2.386928 1.218637 1.091148 -3.626057 4.455078 2.374385 -2.094859 -0.774879 -0.492776 0.925621 0.381109 2.253741 -2.182422 -2.196893 1.166840 0.415093 0.013521 -1.241893 0.888832 -0.416881 -0.359587 -3.657338 -1.554871 2.475279 1.630928 -0.443709 0.345533 2.075145 -0.634161 -0.417633 3.821790 1.645832 0.453073 -2.030785 -6.049335 1.539894 1.112407 -0.306658 0.235079 -2.819983 -0.940613 1.394580 -0.425510 2.709553 1.665249 -0.618443 2.983520 -3.224473 -3.036782 -2.279525 -0.972641 0.990062 -0.279012 0.487684 -1.619033 0.851528 -0.708589 0.487534 -0.805732 -1.564728 0.235632 1.310575 2.445291 -0.031568 -0.078741 3.348179 0.682218 -1.115884 -0.467073 -0.165878 -1.297873 0.956266 -2.716968 -0.451401 0.440006 1.930699 -2.081284 1.045394 -0.585699 0.553019 0.637222 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 4.962469 -1.567578 -5.240488 9.882221 -0.715794 1.067488 0.996148 -0.440593 0.217461 -12.757242 -5.439629 6.702492 2.887398 1.665757 -0.171399 5.465087 1.849072 2.101435 -11.103989 -0.030774 2.892549 -0.770439 -1.562098 -0.067960 -0.311160 -4.242023 5.553003 1.429003 0.792842 8.184885 -2.202162 6.767381 7.392597 -1.457404 2.193892 4.997636 -2.399143 0.094884 -4.302303 -1.905696 9.462882 2.700732 0.249770 2.547905 -2.685989 8.685277 1.959954 9.023285 1.037369 -3.886828 4.766737 2.761520 -3.417379 -0.487972 -7.668441 1.329276 4.160402 2.724294 -2.463855 3.035830 -2.989334 2.494406 3.609466 2.172504 10.224697 3.692681 8.238958 8.005283 7.131117 -6.076160 2.950750 0.875888 -0.308388 -0.982394 8.175607 -5.601842 -6.037892 0.700424 -0.645734 -8.187341 -0.173818 -0.100012 12.437686 -6.969525 -2.897425 -0.545452 3.458377 9.680978 -4.595419 2.718502 -7.653090 -0.219248 -1.953088 11.013683 1.633115 2.343768 -3.051413 2.941193 -1.067910 0.845615 1.538619 -7.599530 -0.129850 -9.684529 -5.908724 -5.678483 2.020278 4.186783 -10.115869 0.814978 -1.984089 5.789182 -13.140443 0.186550 1.793870 3.388923 11.087104 2.755820 -3.958377 0.215840 1.100771 3.219111 3.713681 -3.494163 3.377064 -3.224336 1.126770 1.687336 2.615401 2.013544 -11.377208 -2.378622 1.535345 -1.899409 1.915597 5.591734 6.444465 -2.871685 4.354382 -5.185917 6.229607 -10.748885 -3.195994 -3.691501 -8.351011 -4.236644 7.216343 6.688432 6.940913 -2.122146 -3.648407 -0.542105 -12.090534 -12.174375 -1.025552 0.563871 -0.789773 3.914610 -1.750539 3.077474 -6.842168 3.872872 5.830694 -3.956116 -4.374692 -0.272886 5.999281 1.528819 -3.058671 -2.671710 -1.885780 -2.015682 1.822104 10.248453 -0.816127 -13.021962 -14.089682 -3.677271 7.408039 -4.207294 0.735942 -4.698212 -2.914796 -6.940513 -0.551948 -6.217781 0.415235 0.870114 -3.580321 -9.794222 3.318860 -0.846867 -2.594627 2.026665 -7.454253 1.544920 5.999478 1.497637 1.502624 1.241454 -0.115610 -6.533718 -5.018439 3.300688 -5.564489 7.846633 5.007838 -1.042926 -3.768991 -3.916200 -7.271231 4.122183 -4.880768 4.954823 0.452307 -2.161841 3.049457 -7.834845 0.615225 -5.177458 2.337604 0.200128 -12.225750 10.399084 6.551781 -5.056651 0.552580 -1.254107 5.009768 -0.056649 4.254501 -5.652591 -4.681442 1.100338 0.340563 0.012649 -1.077394 2.193390 -3.423954 -2.703370 -6.540229 -2.116845 7.015105 3.489262 -1.322190 -0.287882 3.610772 -4.449380 2.239146 6.444231 5.220925 0.264555 -5.852611 -16.609442 2.385678 -4.051119 -2.702169 0.035676 -3.954050 -1.735527 3.277428 -3.861126 7.147514 -0.668202 -3.532769 7.151103 -10.352275 -7.790666 -6.611616 -2.269354 1.107401 -0.299200 0.853262 -3.761446 1.589753 -0.150722 2.227115 -3.273379 -5.921104 2.677392 4.076534 8.618987 -0.647967 -0.232937 8.312960 2.924234 -0.883531 -2.599899 0.335204 -4.280932 1.595566 -9.249765 -1.512587 2.310158 3.988066 -6.168666 1.723065 -1.695264 1.463008 1.443993 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 1.754237 -0.638647 -0.769982 2.831543 0.185479 0.004956 0.771484 0.569986 0.290088 -4.207435 -1.848155 1.730690 0.600305 0.168100 0.092693 1.081865 0.853497 1.104882 -3.672045 0.034556 0.914288 0.176037 -0.481633 -0.432116 -0.134268 -1.266575 0.846424 1.002868 0.377034 2.818824 -0.861689 1.216723 2.416388 -0.270934 0.646195 2.178974 0.496035 0.083163 -0.970473 -0.567655 3.588830 1.026292 -0.241731 1.329183 -0.145080 3.029060 0.443766 3.177843 0.148303 -1.312187 1.464564 -0.528466 -1.357289 -0.482666 -2.622294 0.809219 2.292100 1.623491 -1.298877 1.623240 -0.780198 0.698408 1.158649 0.175544 2.769160 1.654529 1.851722 2.325998 2.986999 -2.356840 0.394233 0.598649 0.608056 0.034129 1.964082 -1.887512 -1.540460 -1.735966 -0.011626 -2.967432 -0.188850 -0.268124 4.066062 -2.451810 -0.204187 1.063168 0.651612 2.600222 -1.525986 0.344922 -2.667385 0.024626 -0.328804 3.996949 0.428308 0.589075 -0.577582 1.042799 0.174830 0.910611 0.564952 -2.351610 -1.123171 -4.138897 -1.972530 -1.731874 0.221337 0.801404 -2.978684 -0.310063 0.657956 1.752846 -4.237406 -0.092480 1.021857 1.239092 2.454049 0.585104 -1.428923 0.171848 0.118784 0.526160 1.175134 -1.615222 0.655421 -0.978065 0.179221 0.525412 0.798669 0.334474 -3.348289 -0.823785 0.360352 -0.371977 0.272258 1.043696 1.237444 -1.418550 1.466103 -2.044906 2.227093 -3.476048 -0.756420 -0.983955 -2.690604 -1.238736 3.195205 1.469290 2.196901 -0.243410 -1.470154 -0.554785 -3.292414 -4.402127 0.372714 0.279694 0.605567 0.900741 -0.612328 0.553283 -2.029620 0.437826 1.282036 -1.325848 -1.063459 -0.023926 2.282783 -0.047923 -0.974597 -1.489256 0.077866 0.703823 0.492159 2.460446 -0.892890 -3.475155 -3.741392 -1.562725 2.488727 -1.196075 0.182592 -0.978956 -0.834029 -2.450169 0.310956 -1.979837 0.569761 -0.038964 -1.705211 -3.385336 1.210992 -0.611034 -0.561111 1.046997 -2.411385 0.499044 1.144781 0.849660 0.308723 0.354435 0.346502 -2.792508 -2.273440 0.259654 -1.210778 2.811372 1.480010 0.142765 -1.081359 -1.169400 -2.239322 1.786007 -1.997734 1.269246 0.050384 -0.906747 1.649082 -2.150428 -0.175155 -2.392991 1.107957 0.684130 -3.161314 3.741214 2.246421 -1.878727 -0.480481 -0.828077 1.111304 0.578645 2.303449 -2.045838 -1.738331 1.028663 -0.274371 -0.111920 -0.907722 0.920154 -0.677870 0.058948 -2.534024 -1.011213 1.928932 1.659841 -0.487422 0.528613 1.435503 -0.636187 0.189930 2.799174 1.427578 0.086798 -1.999487 -5.151152 1.300840 -0.379242 -0.364057 0.174198 -1.743409 -0.882263 1.157187 -0.328522 2.428975 1.037259 -0.611334 2.574002 -3.155818 -2.714093 -1.470712 -0.583264 0.868950 -0.784578 0.572892 -1.375545 0.628450 -0.182599 0.643230 -0.480403 -1.611693 -0.276513 0.908792 2.591161 0.041964 -0.376231 3.044035 0.468210 -0.829112 -0.313168 -0.145451 -0.519089 0.658988 -2.185164 -0.456402 0.165609 1.337222 -1.904143 1.364154 -0.463375 0.229225 0.914657 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = 5.505919 -1.259265 -5.709002 11.053469 -0.159563 2.430537 1.133143 -0.593408 1.179720 -13.319275 -5.449249 9.428288 2.504070 2.510318 -0.528367 5.648008 2.631169 1.883687 -9.588892 -0.549017 2.251978 -1.621372 -1.539197 0.592927 -0.552377 -4.877209 7.687380 2.034154 1.462588 8.561152 -1.887837 6.959154 7.875836 -1.184447 2.251878 5.485406 -1.640289 -0.205684 -6.906815 -3.977849 9.796701 2.887563 0.040925 3.870216 -3.569576 9.692880 2.531756 9.714565 3.035761 -4.289240 4.018083 3.776766 -3.939267 -1.291328 -8.213259 1.240212 1.961839 1.463310 -2.769829 2.775573 -3.043267 2.553525 3.616039 2.406643 9.574296 3.113357 8.412269 8.983439 6.952947 -7.859924 2.284480 2.474936 -0.191669 1.383888 8.963248 -4.802948 -7.082040 2.802711 -0.641693 -6.254325 -1.591576 -1.124894 13.458009 -7.346456 -3.997983 -1.432242 2.813374 10.024309 -4.697751 3.818476 -8.668447 -0.405556 -0.892562 9.796071 2.405625 1.899228 -3.217474 2.198579 -1.659146 1.550872 1.807697 -8.679529 0.407894 -8.624930 -5.203332 -6.796970 2.951077 4.954621 -9.827038 1.262607 -2.847300 8.633310 -13.031287 -0.504284 2.030913 3.182121 12.493025 4.239454 -2.815976 0.102741 3.130368 2.942027 4.836336 -3.730588 3.728714 -1.442454 1.437230 1.036489 2.823879 2.937698 -11.871351 -3.425446 2.742904 -1.161278 2.762433 5.729677 6.986272 -3.285097 4.750046 -4.415065 6.855059 -10.258939 -3.916921 -3.330712 -7.707882 -5.257682 9.183303 8.242104 9.533397 -1.683487 -2.997032 -1.008422 -11.755245 -12.631929 -1.368515 0.923246 -1.687370 5.017808 -1.743408 4.666388 -7.735975 4.954172 5.588332 -3.820024 -5.047162 0.944494 3.965152 1.629655 -2.734471 -3.102493 -1.793291 -3.941871 2.153754 11.663340 -0.665293 -16.360262 -14.341928 -4.226545 8.069507 -5.152903 0.510254 -4.633157 -4.275114 -5.393127 -1.518863 -6.722174 0.667447 1.153440 -4.252285 -10.542873 4.535359 -1.318965 -3.362008 3.424551 -7.934629 1.692017 6.078488 0.854696 1.551088 2.131678 -0.945920 -6.540327 -3.990908 3.582721 -6.604617 9.406349 5.824588 -1.654894 -4.597187 -5.022890 -7.563283 4.968349 -6.789792 5.883396 0.514016 -1.759545 2.761654 -8.122414 0.624056 -5.242653 3.452130 1.386223 -13.988354 9.195333 8.279804 -5.220394 0.388424 -0.436537 4.567016 0.393678 4.573410 -6.607870 -5.625301 1.511887 1.261190 0.228416 -0.430471 1.826521 -2.957925 -3.926461 -6.936038 -2.178427 7.346608 3.036160 -1.370378 -1.652662 4.925804 -4.328771 3.512967 6.822506 6.165187 0.914947 -7.007018 -18.251377 3.332456 -3.400075 -3.747068 1.413127 -4.945810 -1.563868 4.018152 -6.827278 7.490725 -3.863700 -3.859653 8.138424 -10.830710 -8.114304 -7.326037 -3.792044 0.981883 0.437341 2.892342 -3.557865 1.474406 -1.092648 1.101928 -5.245260 -5.088272 4.573992 4.988181 8.903012 0.006120 1.205323 8.578327 3.450518 -1.535815 -2.876921 0.747293 -5.724130 0.958716 -12.330720 -1.321771 3.261413 4.226918 -6.440469 0.372592 -1.085946 0.939684 0.585320 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.821203 -2.122206 -3.285808 6.680473 0.170215 1.434092 0.733987 -0.506017 0.694627 -9.290158 -3.366194 6.111827 1.384720 1.429624 -0.565382 2.813419 1.629745 1.765362 -6.489185 -0.557469 1.311826 -0.443682 -0.339435 -0.086337 -0.273769 -2.347291 5.109328 0.892955 1.088882 4.938485 -1.066874 4.361054 4.648089 -0.360579 1.076344 3.186831 -0.793253 -0.189810 -3.868707 -2.831595 6.596898 1.265109 0.869851 2.745401 -2.032642 5.330239 2.013085 6.564939 3.562130 -2.332413 2.650780 0.905841 -2.245024 -0.890446 -5.827751 0.935307 1.103907 1.387648 -1.302943 1.600815 -0.998606 1.422949 1.956040 0.453930 6.430866 1.771260 5.267964 5.471669 3.991907 -4.457674 1.184358 1.199514 0.079221 0.681054 6.213482 -4.253283 -3.834592 1.346677 -1.019800 -4.549490 -0.319822 -0.741306 9.129657 -4.074123 -2.439884 -0.796505 1.819755 5.912575 -1.933892 2.117063 -5.922412 -0.061827 -0.005464 6.275744 1.518335 1.042968 -2.383472 1.084213 -1.016407 0.798423 2.159623 -4.704721 0.645612 -6.540040 -2.632801 -3.847194 1.680786 2.635603 -5.978002 0.672063 -2.554480 4.852837 -8.628551 -0.761757 1.186371 1.741853 8.366221 1.469555 -1.851287 -0.046392 1.717616 1.696018 2.321399 -2.722565 1.712190 -1.046538 0.490879 0.139865 1.678115 1.472947 -7.456982 -2.473576 0.856460 0.436949 1.593171 2.905328 4.295318 -1.437824 2.500769 -2.718252 3.665496 -6.152032 -2.384148 -1.651737 -5.009892 -3.186019 7.807700 4.123785 6.524356 -1.201974 -2.275251 -0.826601 -7.006272 -8.768890 -0.074102 0.268999 -0.696343 3.241643 -0.883985 2.447141 -4.533632 2.813225 3.753033 -2.007328 -2.795736 0.670886 1.217452 0.443715 -1.442447 -2.175764 -0.770375 -1.361990 1.206949 6.593734 -0.613528 -10.770613 -8.837776 -2.364418 4.525520 -3.062474 0.341078 -2.473851 -2.246123 -3.196935 -1.179526 -3.875652 0.349757 0.844806 -3.578853 -6.246844 2.454674 -0.887881 -1.618867 2.402314 -4.446968 1.134176 3.355480 1.829965 0.614657 1.127401 -0.437515 -4.770823 -3.234683 1.653229 -4.121250 5.093056 3.022728 -0.589194 -3.350796 -2.868538 -4.706721 2.400710 -4.709899 3.281326 0.189032 -1.167554 1.396756 -5.092342 1.520406 -3.184380 1.701393 0.999787 -10.029268 5.939400 4.087750 -2.853943 0.179517 -0.366857 2.384591 0.030966 2.529924 -3.714040 -3.373850 1.150474 0.227980 0.157879 -0.972139 0.858852 -1.428324 -2.079676 -5.134184 -1.988087 3.996207 1.635939 -0.865219 -0.794431 3.204109 -2.408541 1.369093 5.126998 3.564955 0.662847 -4.066792 -12.351754 1.876198 -0.811590 -1.940602 0.707175 -3.553032 -0.770617 2.698672 -4.079462 4.015654 -2.185009 -2.173564 4.581122 -6.838483 -4.362643 -3.504332 -2.150050 1.273296 0.180383 1.339068 -2.238072 0.809096 -0.753710 0.570425 -2.761409 -3.207314 2.720170 3.007580 5.439220 0.069962 1.246187 4.885494 1.790373 -0.991418 -1.003159 0.129308 -2.813946 0.780454 -8.289659 -0.547020 2.015195 2.271967 -3.584650 0.538958 -1.009580 0.423487 0.277244 -PE-benchmarks/binary-insertion-sort.cpp__main = 1.563395 -0.903069 -0.769331 3.201740 0.340081 0.646974 0.654970 0.325266 0.342528 -4.804768 -2.204839 2.516081 0.432472 0.505473 0.028818 0.925437 1.120324 1.054422 -4.406489 -0.343256 0.886286 -0.069630 0.059251 -0.323933 -0.046208 -1.318781 1.845814 1.114817 0.510479 2.789457 -0.772021 1.720773 2.500549 0.209472 0.733064 1.969439 -0.314109 -0.264763 -1.498229 -1.387208 3.731153 0.920653 0.004581 1.587553 -0.479541 3.058353 0.897784 2.798954 1.628840 -1.204109 1.254246 -0.376659 -1.426850 -0.552678 -3.059789 0.499696 1.364911 1.135768 -0.929244 1.275463 -0.696135 0.744251 0.980334 -0.362900 3.187843 1.037343 2.505367 2.535484 2.422504 -2.553367 0.400583 0.595778 0.465240 0.511785 2.033157 -2.012849 -1.644767 -1.224125 -0.333320 -3.357960 -0.288312 -0.536024 4.336828 -2.083516 -0.728012 0.250417 0.421750 2.871232 -1.164693 0.555124 -3.100888 0.064441 0.081653 3.292719 0.762764 0.405830 -0.557936 0.663957 -0.126524 0.860513 0.903023 -2.400951 -0.406013 -4.433124 -1.414463 -1.910567 0.807739 0.934801 -2.826531 0.312731 -0.194411 2.264262 -4.243183 -0.627294 0.832774 1.080562 2.402526 0.140834 -1.105336 -0.184953 0.519299 0.973251 1.416824 -1.876535 0.805315 -0.745939 0.079824 0.175944 1.060665 0.628168 -3.157314 -1.425074 0.559650 0.138371 0.567695 1.184519 1.634994 -0.558724 1.386534 -1.768534 2.289760 -3.202013 -0.630216 -0.981975 -2.084252 -1.565034 3.959633 2.083040 2.599141 -0.069291 -0.982337 -0.318463 -3.245481 -4.539746 0.382092 0.373679 0.356285 1.164726 -0.570029 1.105090 -2.317057 0.793540 1.361729 -1.179168 -1.327709 0.118920 0.927929 0.170755 -0.882199 -1.349145 0.124085 0.294646 0.141293 2.871069 -0.766353 -4.506733 -3.961010 -1.604354 2.507328 -1.598236 -0.026666 -1.090976 -0.858850 -1.767627 -0.052698 -2.028533 0.263266 0.268943 -2.192454 -3.512796 1.200849 -0.656287 -0.475415 1.466273 -2.455777 0.546673 1.551738 1.286424 0.339481 0.591215 0.049474 -2.477430 -1.917235 0.238119 -1.691174 2.699564 1.480266 -0.222217 -1.964689 -1.407596 -2.181103 1.822172 -1.862875 1.619660 -0.230216 -1.080871 1.071747 -2.207405 0.509799 -1.883708 1.024148 0.793638 -4.993814 3.313379 2.305927 -1.818925 -0.436475 -0.935612 1.076417 0.249125 1.988468 -2.133115 -1.741949 0.742156 -0.108432 0.022632 -0.839570 0.748154 -0.378322 -0.750783 -2.899476 -1.341550 2.159948 1.195648 -0.406981 0.332510 1.899410 -0.320544 0.712602 2.960845 1.545846 0.173034 -2.115191 -6.237071 1.200917 0.916445 -0.413717 0.540757 -1.956303 -0.954728 1.111743 -1.309218 2.313553 0.276342 -0.935052 2.607020 -2.849372 -2.366475 -1.868666 -0.944437 0.852592 -0.423962 0.814491 -1.231573 0.443102 -0.404030 0.353674 -0.799811 -1.582238 0.268715 1.295795 2.768370 0.326315 0.302880 2.828291 0.733825 -1.001359 -0.430036 -0.167931 -1.181714 0.729078 -3.317731 -0.389883 0.651858 1.182781 -1.852423 0.620941 -0.264948 0.369680 0.368651 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 3.226855 -1.537688 -2.785939 7.824923 -0.134165 1.855408 0.974660 -0.885574 0.524377 -10.600309 -3.992958 7.249761 1.693161 2.313419 -0.959476 3.324092 1.949794 1.941893 -9.635341 -1.121906 2.050461 -0.335164 0.560723 -0.361700 -0.080024 -3.064323 6.778334 1.954075 1.363215 6.592420 -1.858820 4.933715 5.985622 -0.390521 1.287664 4.059009 -1.119185 -0.132380 -5.315275 -3.146709 7.441802 1.228262 0.595590 3.139084 -2.601953 7.088523 3.121590 5.865511 5.217850 -3.139525 2.712441 3.259393 -3.032962 -1.835143 -6.269921 0.763134 1.984271 2.228621 -1.807003 2.155603 -0.328085 1.742760 2.479092 1.035820 6.993113 1.994793 6.234925 6.126490 5.067047 -5.959763 1.507754 0.825054 -0.154849 0.882809 6.533035 -5.128840 -5.063513 0.650783 -0.987122 -6.843361 -0.934106 -0.451863 8.186798 -5.055495 -2.414035 -0.990801 1.338368 7.217713 -2.322361 1.928558 -6.506881 -0.224875 -0.203164 7.965952 1.890188 0.972503 -1.392582 1.490777 -0.650021 1.426204 2.479895 -6.282741 1.425642 -7.555758 -3.683980 -5.130462 2.240685 3.645055 -6.815899 1.102405 -2.616541 4.971715 -10.097152 -1.136807 1.690363 2.852703 7.211824 -0.240904 -1.366573 0.113343 1.488044 2.309345 3.343735 -3.775773 2.434917 -0.162190 0.068118 0.679345 2.168025 1.811385 -7.604657 -3.458000 1.254357 0.161802 1.924025 3.665658 4.877885 -0.976249 3.196007 -3.785842 5.098443 -7.131526 -2.272052 -1.862810 -4.121196 -4.166537 5.330939 3.781999 5.699991 -1.778781 -2.362988 -0.216745 -7.963058 -9.574236 0.111782 1.192984 -0.913945 4.320351 -1.695417 3.407223 -5.837974 2.558188 4.242985 -2.624544 -3.887558 0.383034 1.226863 0.984707 -1.856490 -1.899568 -0.473549 -2.031765 1.541891 8.417637 -1.014415 -11.232207 -10.404383 -3.324245 6.010348 -4.009742 -0.247889 -3.116317 -2.987436 -4.017310 -0.723157 -5.232014 -0.210264 0.957008 -3.889765 -8.088715 3.254270 -1.375828 -1.303206 3.279725 -6.580903 1.159276 3.144642 1.447649 1.154731 0.732564 -0.078509 -5.231560 -3.259690 2.043703 -4.608816 5.244490 2.658116 -0.575259 -4.414815 -3.667727 -4.566189 2.816229 -4.084115 4.470085 0.108658 -1.589680 1.911215 -5.493716 2.041055 -3.163519 2.117926 1.716074 -10.439952 8.074699 5.193911 -3.688978 0.062607 0.008685 2.830548 -0.029320 3.040979 -5.646192 -4.995461 1.252052 0.363882 0.268430 -0.992825 1.493840 -1.673819 -2.727515 -5.617481 -2.364661 4.726021 2.496956 -0.800000 -0.021170 4.363972 -3.002028 1.391709 5.677406 3.999725 1.379959 -4.313423 -13.375889 2.663079 -1.095757 -1.369889 1.275667 -4.041972 -1.332346 3.609765 -3.284562 5.337990 -2.005953 -2.882627 5.908541 -7.723118 -5.622953 -5.192055 -3.432415 1.590413 0.557451 1.116214 -2.788567 1.102703 -0.828335 0.582902 -3.451133 -3.047818 3.741724 3.822493 6.799005 0.046332 1.194065 6.595027 1.974792 -1.615188 -1.474668 -0.280198 -3.775509 0.909911 -7.823433 -0.487976 2.652088 3.219904 -4.562757 0.325324 -1.511646 0.595234 -0.076197 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = 2.019435 -1.582254 -1.029905 3.922863 0.256441 1.329412 0.626031 -0.309231 0.081834 -6.157417 -2.377254 4.199845 0.614874 1.653332 -0.593448 1.595466 1.422531 0.627617 -6.051402 -0.841949 0.862963 -0.578822 0.467086 0.331264 -0.004791 -1.823873 3.715782 1.497325 0.739039 3.452386 -1.130839 2.595350 3.320786 0.105991 0.877061 2.255701 -0.289383 -0.531945 -2.889246 -1.991724 4.354199 0.471673 0.340018 1.653208 -1.385870 3.891583 1.812713 4.278201 3.822160 -1.669502 1.846715 -0.352731 -2.035421 -0.771134 -3.821942 0.143828 0.480621 1.208662 -1.046941 1.202435 -0.307073 0.945872 1.102489 0.157322 4.083214 0.601359 3.769170 2.925974 2.415765 -3.435823 0.486300 0.859745 0.010065 1.164886 2.632061 -3.022610 -2.092903 -0.659789 0.122919 -3.866876 -1.000594 -0.603232 4.351397 -2.398882 -1.580665 -0.472632 -0.029667 3.835813 -1.267054 1.231559 -4.085357 -0.067391 0.918668 3.788946 1.002831 0.297732 -0.247448 0.472702 -0.238236 1.130463 1.284224 -3.344275 0.152451 -4.501288 -1.601754 -2.668614 1.094365 1.826290 -3.520839 0.659514 -1.386673 3.013811 -5.062452 -0.890380 0.945914 1.357338 3.920094 1.078796 -0.582994 -0.402777 1.079472 1.466258 2.294035 -2.184358 1.474559 -0.518230 0.624526 0.271909 1.218132 1.000062 -4.380251 -1.976398 1.334637 0.176142 0.966895 1.634007 2.448874 0.011498 1.764853 -1.846330 2.595098 -3.647365 -1.137899 -0.908822 -2.157209 -2.228272 4.906346 2.858190 3.250370 -0.158318 -1.192322 0.052546 -3.984284 -5.838199 -0.070885 0.627661 -0.207834 2.166065 -0.898778 2.088130 -3.050128 1.060116 1.717774 -1.288273 -2.272534 0.000946 -0.872873 0.671716 -0.827365 -0.965339 0.154666 -0.691913 0.264642 4.648627 -0.783100 -7.297898 -5.220333 -2.051923 3.146286 -2.184913 -0.247545 -1.348654 -1.567323 -2.305058 -0.474413 -2.658867 -0.417252 0.421579 -2.904199 -4.450694 1.828572 -0.894629 -0.524692 2.052936 -3.459695 0.524783 1.560707 1.516982 0.863438 0.454050 -0.335093 -2.731422 -1.960320 0.739204 -2.510147 3.376145 1.163716 -0.568241 -2.441492 -2.079149 -2.555276 1.942881 -2.648694 2.407461 -0.032049 -1.275793 0.905378 -2.689565 1.440918 -1.220087 1.484003 1.281491 -6.804433 4.469682 3.219376 -2.181050 -0.399909 -0.424294 1.211928 0.275298 1.923261 -2.960385 -2.458971 0.619500 0.540287 0.164393 -0.355263 0.887263 -0.492945 -1.691895 -3.497588 -1.951698 2.369998 1.341677 -0.288579 -0.134775 2.537287 -0.623575 0.906818 3.546755 1.520216 0.617271 -1.993576 -8.705478 1.619515 1.814010 -0.934812 1.371269 -3.018880 -0.729571 1.658495 -2.870469 2.853589 -1.034169 -1.368310 3.226157 -3.733900 -2.794357 -3.012479 -2.039633 0.610718 0.471307 1.064625 -1.399675 0.553346 -0.707027 0.083133 -1.866072 -1.420142 1.457637 1.990954 3.265398 0.292716 1.063190 3.462499 0.788407 -0.782949 -0.937928 -0.148732 -1.709515 1.095529 -4.504524 -0.372021 1.292096 1.581731 -2.243745 -0.248749 -0.379433 0.398227 -0.068142 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.741489 -0.823942 -0.209708 1.424809 0.169908 0.403194 0.315043 0.029110 0.176113 -2.238196 -0.986014 0.843813 0.174170 0.412856 0.141512 0.460163 0.576776 0.205268 -2.079082 -0.203966 0.367939 -0.236698 0.091851 0.219803 -0.046231 -0.821137 0.775293 0.710464 0.190650 1.323866 -0.428840 0.846946 1.231356 0.014286 0.301629 0.969489 0.117077 -0.161635 -0.770673 -0.354251 1.776747 0.171902 -0.073494 0.537928 -0.295197 1.515201 0.320568 1.895635 1.226835 -0.633459 1.118806 -0.708788 -0.642395 -0.203999 -1.488337 0.188404 0.709436 0.568784 -0.556947 0.604968 -0.458003 0.389405 0.419499 -0.056861 1.539856 0.520953 1.279962 1.047678 1.101035 -1.315434 0.091348 0.442024 0.163345 0.381544 0.641022 -1.045079 -0.526634 -1.209016 0.108419 -1.165692 -0.345323 -0.329955 1.470204 -0.950693 -0.534464 0.306345 -0.123758 1.365566 -0.616296 0.518513 -1.556027 0.021452 0.509136 1.366289 0.290098 0.042893 -0.070740 0.254501 -0.053692 0.559024 0.436565 -1.184933 -0.651228 -2.031860 -0.986852 -0.861626 0.384895 0.438341 -1.511346 0.207981 0.161384 0.669318 -1.809220 -0.218943 0.428011 0.687538 1.174769 0.517562 -0.503716 -0.297811 0.468795 0.597775 0.892533 -0.765648 0.587543 -0.829125 0.390487 0.251190 0.467362 0.118520 -1.196369 -0.619783 0.407299 0.158009 0.236472 0.445889 0.754220 -0.203124 0.738539 -0.706736 1.112951 -1.560744 -0.380442 -0.576221 -0.788558 -0.688275 2.362220 1.069181 1.264102 0.228499 -0.843444 -0.024545 -1.469377 -2.268326 -0.138477 0.170470 0.256648 0.603230 -0.358828 0.675100 -0.897954 0.357585 0.345461 -0.605314 -0.712818 0.018791 -0.342670 0.157256 -0.391125 -0.669738 0.189818 0.220910 -0.190188 1.497439 -0.290065 -2.192354 -1.701156 -0.892201 1.175908 -0.732152 0.054048 -0.416523 -0.416571 -1.246498 0.088423 -0.932842 -0.158378 0.107345 -1.294063 -1.672035 0.665274 -0.368424 -0.090616 0.757954 -1.298093 0.203214 0.388087 0.787150 0.426382 0.303835 -0.136592 -1.265597 -1.106815 -0.068584 -0.809104 1.521386 0.454213 -0.164888 -0.586587 -0.799044 -0.972402 0.937407 -1.178300 0.717131 0.053603 -0.688742 0.472572 -0.978790 0.071369 -0.787617 0.587763 0.513654 -2.075014 1.697453 1.221948 -0.935567 -0.345192 -0.526304 0.487204 0.215637 1.090315 -0.927258 -0.646239 0.308642 0.325675 0.002317 -0.301374 0.457219 -0.166957 -0.440589 -1.357834 -0.797989 0.890377 0.750326 -0.124355 0.070727 0.941850 0.152638 0.204175 1.382059 0.489961 0.008185 -0.691603 -3.101976 0.662417 0.975440 -0.347437 0.607065 -1.405866 -0.338945 0.479987 -0.615519 1.172749 0.282239 -0.079874 1.311267 -1.179806 -1.137962 -0.997619 -0.586018 0.176195 -0.146581 0.483340 -0.604392 0.213547 -0.201277 0.090998 -0.456025 -0.574094 -0.116307 0.537402 1.127707 0.106526 0.242429 1.354038 0.325470 -0.471313 -0.374826 -0.010195 -0.559054 0.564383 -1.212490 -0.212975 0.277678 0.553173 -0.826577 0.114487 -0.169137 0.114359 0.109960 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp___GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = 0.979863 0.177745 -0.271754 1.212716 0.072547 -0.219517 0.392583 0.456178 -0.406868 -1.913561 -0.639717 1.385518 0.034971 -0.147667 -0.129824 0.615674 0.591987 0.512816 -2.906152 0.180781 0.416495 -0.004301 -0.295067 -0.522081 0.099089 -0.734466 0.722057 0.913425 0.103500 1.351298 -0.768121 0.682332 1.001317 0.293480 1.016842 0.981431 -0.542823 -0.344535 -0.294506 -0.591694 1.917800 0.822530 -0.376899 0.404260 0.327695 1.654790 0.484546 0.133214 0.316253 -0.439583 -0.081437 0.948732 -0.871745 -0.174701 -1.577145 -0.132922 0.494174 0.780746 -0.750957 0.738289 -0.702668 0.434524 0.558471 0.163262 1.778822 -0.040291 1.150434 1.097637 1.289387 -1.013211 0.320187 0.071113 0.501371 -0.081418 0.713856 -0.354231 -0.727363 -2.177649 -0.021908 -3.146931 -0.049265 0.116443 2.131053 -0.958541 0.162178 0.192402 0.484216 1.459568 -0.982218 -0.162704 -1.541959 -0.001288 -0.236929 2.260746 0.313003 0.275526 0.089817 0.642510 -0.006998 0.496196 0.113869 -1.488677 -0.013783 -2.639476 -0.716386 -1.070126 0.011328 0.011110 -1.198446 0.202902 1.438506 1.885044 -1.983254 -0.201642 0.425349 0.074027 0.058266 -0.510420 -0.458879 0.387806 -0.512317 0.712143 0.870368 -0.819558 0.270257 0.141388 -0.011784 0.225091 0.805823 0.480700 -1.986639 -0.453400 0.920224 -0.441385 -0.023295 0.675036 0.499232 -0.255988 0.614233 -1.402561 1.384088 -1.280831 0.358994 -0.716099 -0.466171 -0.706716 0.617085 1.648367 0.229230 0.099646 0.119600 0.303444 -1.633904 -2.117030 0.522235 0.067849 -0.060577 -0.025153 -0.267809 0.323457 -1.035156 0.038625 0.653347 -0.901627 -0.796308 -0.384271 1.344061 0.394274 -0.520306 -0.446954 0.045001 0.407691 0.394480 1.075223 -0.851247 -1.834105 -1.854219 -0.878101 1.271612 -0.793511 -0.279874 -0.457341 -0.504230 -0.285867 0.426472 -1.073056 0.436171 -0.408715 -0.405052 -1.608208 0.583584 -0.414472 -0.567808 0.200371 -1.157454 0.406286 0.587909 -0.257442 -0.066918 0.032509 0.526981 -0.903439 -0.691117 0.380027 -0.427653 0.922363 1.109825 0.118091 -1.454177 -0.498402 -0.942996 1.092503 -0.686488 0.992880 0.076432 -1.200998 1.066687 -0.914807 0.145567 -0.235033 0.795654 0.135354 -1.964913 2.134135 1.654136 -1.417754 -0.279845 -0.723780 0.673468 0.384792 1.119177 -1.134293 -0.630596 0.230973 -0.117246 -0.049646 0.082483 0.494059 -0.045080 0.002144 -1.533232 -0.668146 1.307440 0.738359 -0.060188 0.178369 0.402228 -0.303234 0.119524 1.481350 0.517452 0.605745 -1.122695 -2.517329 0.455649 -0.224321 0.187755 0.359818 -0.364385 -0.734351 -0.038784 -0.442121 1.336272 0.003818 -1.381780 1.161563 -1.424035 -1.340644 -1.402081 -0.307728 0.209752 -0.370476 0.844123 -0.622755 -0.082144 -0.494486 0.643480 -0.412285 -0.429516 0.058718 0.729479 1.025870 0.915527 -0.833653 1.444748 0.238633 -0.564485 -0.413049 -0.103641 -0.559477 0.584464 -1.238555 -0.406913 0.039705 0.797579 -0.993741 0.593461 0.311371 0.741676 0.325813 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = 0.189053 -0.218197 0.088020 0.345692 0.272683 -0.016122 0.049397 -0.001506 -0.089737 -0.583898 -0.278892 -0.099005 -0.051711 -0.062486 0.197263 0.091031 0.314708 0.029717 -0.389300 0.079211 0.050529 -0.146347 -0.146949 0.079822 -0.007948 -0.333272 0.026710 0.316104 -0.005514 0.305485 -0.247842 0.180434 0.267827 0.086958 0.374859 0.318461 0.140159 -0.128570 -0.025358 0.064855 0.744706 -0.035478 0.014302 0.100429 0.262318 0.441282 -0.051825 0.430416 0.162117 -0.103087 0.373884 -0.315234 -0.033967 0.043538 -0.628883 0.133323 0.259371 0.107783 -0.418977 0.199331 -0.242055 0.138620 0.089755 -0.010220 0.555289 0.062287 0.269836 0.257822 0.414230 -0.286515 -0.088087 0.239748 0.278674 0.137703 -0.045110 -0.074395 0.062125 -0.733079 0.032099 -0.226147 0.076560 -0.092235 0.387593 -0.193120 -0.111491 0.325485 -0.128231 0.323365 -0.228008 -0.011516 -0.535673 0.041478 0.142937 0.257910 0.061724 -0.004166 0.067223 0.137169 -0.030938 0.319106 -0.038536 -0.373330 -0.411222 -0.858941 -0.511051 -0.179938 0.053973 -0.187818 -0.446575 0.007446 0.404344 0.256218 -0.372056 -0.003466 0.082022 0.127017 -0.063238 -0.028651 -0.287673 -0.207773 0.034954 0.239598 0.167361 -0.017668 0.097409 -0.528104 0.221753 0.058409 0.271164 -0.095936 -0.104143 -0.074942 0.110427 0.026192 -0.139437 -0.063357 0.045909 -0.207788 0.235880 -0.135932 0.364504 -0.421645 0.029295 -0.429192 -0.265266 -0.075770 0.743932 0.321620 0.345131 0.298634 -0.299600 0.038690 -0.441880 -0.701139 -0.001572 -0.085409 0.151806 0.038710 -0.091110 0.118350 -0.124717 -0.105324 0.124700 -0.313701 -0.195063 -0.173268 -0.097158 -0.011064 -0.157846 -0.315462 0.127909 0.411353 -0.141241 0.217660 -0.240141 -0.289973 -0.316865 -0.356811 0.258854 -0.181443 0.112221 0.021449 -0.021681 -0.476606 0.233415 -0.290732 0.003454 -0.239724 -0.318898 -0.404006 0.079664 -0.170832 -0.037681 0.087307 -0.333586 0.175779 0.029339 0.093534 0.100907 0.100136 -0.078135 -0.377487 -0.470895 -0.101177 0.006508 0.384679 0.219751 0.003586 -0.122371 -0.244646 -0.283799 0.341410 -0.353765 0.105294 0.248180 -0.437139 0.195784 -0.258883 -0.163322 -0.131164 0.222816 0.110470 -0.486830 0.460456 0.392097 -0.478239 -0.269453 -0.418175 0.190726 0.072567 0.569155 -0.111589 0.154391 0.120512 0.192345 -0.049469 -0.137767 0.219049 0.073375 0.118259 -0.573273 -0.420120 0.267263 0.377003 -0.018331 0.036338 0.109154 0.252952 -0.022014 0.560771 0.067102 0.119175 -0.192663 -0.700740 0.112090 0.257367 -0.001472 0.263802 -0.298957 -0.179193 -0.149552 -0.106033 0.442090 0.209166 0.069581 0.413344 -0.198257 -0.376425 -0.207779 -0.082772 -0.004416 -0.306093 0.270350 -0.296788 -0.065454 -0.216310 0.171128 -0.036194 -0.069272 -0.359462 0.033706 0.156186 0.185907 -0.051715 0.365183 0.099027 -0.217980 -0.097431 0.096026 0.049429 0.382211 -0.306723 -0.288454 -0.172740 0.083389 -0.188554 0.147230 -0.052446 0.232997 0.143330 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = 0.986526 -0.764097 -0.509232 1.704788 0.355550 -0.206944 0.169265 0.174014 0.213323 -2.379296 -0.939121 0.585556 0.272197 -0.022673 0.357577 0.688142 0.683135 0.359025 -1.880968 0.353894 0.393693 -0.098149 -0.653644 -0.057099 -0.020184 -0.912336 0.611182 0.587779 0.226900 1.473233 -0.796758 0.694837 1.276913 -0.323010 0.916852 1.216633 0.428701 0.044527 -0.525157 0.097214 2.430683 0.570051 -0.203801 0.633143 0.389271 1.737540 0.114624 2.036653 0.174381 -0.742858 1.080176 -0.118625 -0.444744 -0.160345 -1.828756 0.689750 1.581001 0.781019 -1.307750 0.800525 -0.506002 0.431591 0.631099 0.450978 1.874752 0.698292 1.208548 1.335848 1.790621 -1.126054 0.075764 0.492063 0.771106 0.126847 1.242109 -0.958434 -0.864579 -1.424469 0.041572 -1.145684 0.134917 -0.157265 1.814327 -1.453318 -0.066539 0.858973 0.204944 1.522491 -0.991179 0.067511 -1.648409 -0.031576 -0.112643 2.363735 0.184914 0.287475 -0.145838 0.867486 -0.007680 0.765684 0.373783 -1.598342 -0.786070 -2.710380 -1.656799 -0.976782 0.165380 0.203873 -1.878679 -0.183678 0.646614 0.790534 -2.212897 0.252506 0.489824 0.590308 1.513414 -0.164145 -0.859789 -0.017070 -0.053345 0.379072 0.568125 -0.587671 0.288981 -1.027953 0.548609 0.460948 0.625645 0.012610 -1.384969 -0.183260 0.171323 0.070644 -0.212650 0.372612 0.625965 -1.367686 0.978107 -0.930866 1.324771 -2.027570 -0.425110 -1.009477 -1.409474 -0.545399 1.921834 0.617214 1.414321 0.056842 -1.195642 -0.209954 -2.146904 -2.823882 0.137976 0.035560 0.213576 0.513745 -0.360856 0.411769 -0.879121 0.048333 0.797753 -1.051651 -0.668602 -0.237463 0.922674 -0.102932 -0.537742 -0.913485 -0.005533 0.757273 0.251553 1.382030 -0.622893 -1.890648 -2.052626 -0.947781 1.318326 -0.674095 0.405306 -0.313395 -0.424166 -1.870914 0.459728 -1.320584 0.326634 -0.575435 -0.831688 -1.792976 0.472014 -0.450597 0.023050 0.319311 -1.523648 0.484717 0.269046 0.424102 0.221474 0.216884 0.184815 -1.952363 -1.615926 0.186932 -0.516501 1.859614 0.613247 -0.028974 -0.190326 -0.723535 -1.346774 0.978348 -1.503178 0.601258 0.483453 -0.956406 0.992013 -1.182537 -0.595236 -1.331610 0.716347 0.375472 -0.929716 2.380568 1.376079 -1.322628 -0.284215 -0.546059 0.796637 0.332021 1.586167 -1.004841 -0.602637 0.511626 0.075168 -0.103064 -0.526880 0.733257 -0.356602 0.333158 -1.652639 -0.810741 1.002679 1.167123 -0.125624 0.226903 0.502040 -0.365120 -0.262024 1.822815 0.763164 0.410642 -1.169084 -2.701526 0.671909 -0.587488 -0.220333 0.160300 -1.020471 -0.530481 0.177335 0.149738 1.532610 0.831256 -0.023895 1.530152 -1.982008 -1.683416 -0.836708 -0.377757 0.247950 -0.643615 0.479864 -1.020238 0.219847 -0.389211 0.585691 -0.421296 -0.649538 -0.329534 0.418844 1.052735 0.141706 -0.346993 1.662677 0.386194 -0.683773 -0.221737 0.103561 -0.242827 0.646679 -1.101104 -0.604715 -0.224142 0.635315 -1.040463 0.726877 -0.405122 0.469110 0.469549 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = 0.385366 -1.002209 0.050148 0.787628 0.306781 0.176685 0.049894 -0.083400 0.309266 -1.090551 -0.276059 0.158483 -0.030266 0.210160 0.241570 0.208734 0.467038 -0.182821 -0.866670 0.063456 0.015992 -0.201870 -0.072812 0.235868 0.052817 -0.588366 0.775797 0.462590 0.120264 0.550874 -0.392773 0.295488 0.530033 -0.082894 0.453185 0.473630 0.417757 -0.053366 -0.625328 0.091388 1.162165 0.101385 -0.187215 0.286828 0.179289 0.771600 0.315685 1.195300 1.041484 -0.309352 0.698959 -0.381330 -0.168759 -0.177517 -1.000383 0.252997 0.550193 0.228876 -0.634744 0.247251 -0.226654 0.203205 0.146068 0.287994 0.845201 0.012946 0.815041 0.443225 0.618274 -0.654752 -0.160366 0.457965 0.508291 0.484256 0.527135 -0.603009 -0.394227 -1.149618 0.101238 0.033270 -0.105272 -0.265142 0.082155 -0.460771 -0.267616 0.391525 -0.377990 0.593136 -0.350607 0.228131 -0.892917 0.039087 0.539572 0.781305 0.067040 -0.050270 0.176974 0.303244 -0.008335 0.515785 0.576397 -0.758448 -0.301802 -1.191074 -0.732188 -0.463450 0.278156 -0.006979 -0.740363 0.197850 0.195637 0.057984 -0.635160 0.086456 0.203491 0.335354 0.937378 -0.332058 0.073450 -0.221904 0.319148 0.333395 0.414001 -0.369718 0.269194 -0.602934 0.633678 0.303982 0.336327 -0.104002 -0.033107 -0.183134 0.164920 0.536427 -0.104617 -0.019215 0.252084 -0.590164 0.475183 -0.225331 0.639517 -0.714263 -0.218642 -0.482585 -0.108350 -0.251085 1.629536 0.129325 0.854509 0.283607 -0.779839 0.019958 -0.707859 -1.452798 -0.123192 0.124752 -0.004096 0.396281 -0.178752 0.439534 -0.284475 -0.012324 0.100634 -0.424106 -0.339657 -0.009529 -1.042503 -0.030160 -0.144806 -0.390391 0.205550 0.439884 -0.004399 0.740481 -0.172866 -1.400877 -0.631860 -0.526048 0.499643 -0.364795 0.189802 0.038282 -0.257888 -0.945613 0.295299 -0.547390 0.052796 -0.236989 -0.789310 -0.737630 0.255355 -0.326171 0.441316 0.342631 -0.726669 0.162911 -0.461429 0.447553 0.271431 0.214354 -0.039572 -1.050153 -0.841674 -0.117763 -0.301116 1.169683 -0.333501 -0.190336 0.111848 -0.466222 -0.442124 0.441676 -0.967139 0.216065 0.285382 -0.650871 0.220745 -0.341205 -0.231569 -0.482966 0.392694 0.365491 -0.083667 1.094436 0.802833 -0.614873 -0.310125 -0.175562 0.258244 0.139036 0.792297 -0.450812 -0.188104 0.144661 0.375575 -0.015329 -0.183984 0.367496 0.030290 -0.081777 -0.849143 -0.653799 0.244670 0.535976 0.004809 -0.076592 0.436085 0.101521 -0.403916 0.914483 0.162737 0.379357 -0.434709 -1.409550 0.333620 0.524089 -0.210746 0.456035 -0.978170 -0.188037 0.058550 0.063648 0.654088 0.529383 0.288866 0.724323 -0.664307 -0.612481 -0.425635 -0.556761 -0.093065 -0.182566 0.431154 -0.463073 0.022932 -0.350689 0.077210 -0.468116 0.083859 0.058930 0.160982 0.181869 0.163456 0.120772 0.624973 0.244105 -0.399186 -0.185406 0.170251 -0.320765 0.527143 -0.363493 -0.250526 -0.080384 0.177782 -0.317292 -0.018811 -0.165129 0.231562 -0.110574 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 3.713605 -0.519119 -1.604565 5.540235 0.878194 -1.409903 1.146953 1.811641 0.526652 -7.936359 -4.095411 2.151016 0.923066 -1.219525 0.953947 1.665832 2.176649 2.717167 -9.224575 1.357239 2.224434 0.490054 -1.847936 -1.635830 0.015629 -2.293855 0.119363 2.132991 0.573617 5.587412 -2.553893 2.515230 4.436371 -0.077442 3.276825 4.651241 -0.644581 -0.264050 0.211101 -0.533097 8.013805 3.030725 -0.396789 2.351503 1.284805 6.191892 0.084049 4.776228 -0.565812 -2.323353 2.458777 -0.504288 -2.126165 -0.256885 -5.884429 1.742572 5.343144 2.830105 -3.756887 3.299821 -1.614212 1.555664 2.624218 0.013987 6.585149 2.825171 2.682385 4.679982 6.593838 -3.358104 1.312238 0.105995 2.318708 -0.855920 3.047771 -3.069636 -2.897303 -4.870238 -0.245294 -7.617353 0.845659 -0.253152 7.334148 -5.103410 1.244706 2.313453 1.806217 5.507761 -3.422976 -0.983175 -5.495342 -0.069883 -1.840157 8.038498 0.474842 1.561375 -0.588590 2.680846 -0.207553 1.789771 -0.178200 -5.412268 -2.313462 -10.654422 -4.288045 -3.378084 -0.127584 0.553713 -6.142404 -0.747419 1.715974 3.777221 -8.744844 -0.195292 1.401837 1.297201 0.843750 -0.851298 -3.347983 0.040153 -1.517529 1.820341 1.738330 -2.886974 0.475417 -3.273377 -0.446784 1.488132 2.223185 0.615612 -4.934863 -0.816284 0.942303 -0.816526 -0.508882 2.324780 1.954173 -3.095891 2.783971 -4.664323 4.808898 -6.526095 -0.835176 -3.365733 -4.905657 -2.225800 4.371889 2.859461 2.998908 0.041607 -2.078184 -0.353270 -7.353436 -8.975985 1.636380 -0.619744 1.604376 0.722106 -1.097571 0.303095 -3.747472 0.034223 2.636676 -3.541655 -2.444774 -1.374407 6.063997 0.146191 -2.192999 -2.664051 -0.099385 2.987943 0.435468 3.930198 -2.805474 -4.272117 -7.342874 -3.124330 5.059712 -2.378052 0.579007 -2.065246 -0.707258 -4.884886 1.293010 -4.535092 0.893272 -1.762929 -1.507357 -6.523275 1.198669 -1.412096 -0.082324 0.892330 -4.798510 1.846592 3.508404 2.081138 -0.127866 0.941166 1.079312 -5.247564 -4.480775 0.692258 -1.286526 4.948046 3.675077 0.495379 -2.384526 -1.957286 -4.269064 3.975070 -3.242649 2.702855 0.850121 -3.169504 4.105256 -4.071827 -1.542498 -4.182873 2.177344 0.658412 -5.700771 7.218512 3.950385 -4.901916 -0.674783 -3.380270 2.961009 1.079632 5.291408 -3.401567 -2.508078 1.901320 -0.996751 -0.435990 -2.665538 1.978570 -1.229272 1.400166 -5.628694 -1.927632 4.749431 3.414993 -0.716688 1.469398 1.438018 -0.958872 0.955762 6.109396 2.658203 0.827088 -4.686606 -9.477269 2.029031 -0.500136 0.905149 -0.342215 -2.021333 -2.382544 0.493535 0.321808 5.438211 3.961884 -1.330016 5.117293 -6.279969 -5.921822 -3.557817 0.250806 1.814488 -2.348825 0.753712 -3.204133 0.979518 -0.843322 2.869735 0.249337 -3.659448 -2.513463 2.112849 4.669392 0.459760 -2.250948 6.104659 0.980552 -2.141464 -0.591125 -0.441889 -0.869302 1.371573 -3.798922 -1.957219 -0.539187 2.638393 -4.172275 3.679143 -0.994618 2.220142 2.101344 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = 0.168845 -0.124803 -0.180599 0.468997 0.054158 -0.116273 0.088980 -0.045457 -0.061171 -0.539226 -0.142351 0.214820 0.074275 -0.082736 0.041286 0.190096 0.098481 0.134788 -0.264191 0.100757 0.045321 -0.091961 -0.267259 -0.033828 -0.077831 -0.274160 0.169473 0.258135 -0.037050 0.370128 -0.148620 0.186893 0.298683 -0.006082 0.210373 0.319046 0.199127 0.014386 -0.167978 0.109789 0.559220 0.118389 -0.098601 0.069400 0.101183 0.446892 0.105670 0.314256 -0.133121 -0.131887 0.136760 0.141275 -0.095143 -0.093780 -0.471545 0.090109 0.228400 0.144399 -0.272844 0.246156 -0.297011 0.088311 0.176505 0.203976 0.540274 0.106084 0.317948 0.350202 0.469062 -0.299119 0.013897 0.153544 0.204800 -0.052583 0.342153 0.079696 -0.303122 -0.366613 -0.024262 -0.263679 -0.030527 0.081969 0.470874 -0.316117 -0.146944 0.215256 0.141708 0.391742 -0.344246 0.018703 -0.427163 -0.009250 -0.050026 0.622589 0.191974 0.113718 -0.130180 0.234300 0.067741 0.184925 0.008057 -0.413815 -0.133739 -0.710062 -0.418374 -0.258458 -0.082842 -0.045306 -0.488314 -0.100237 0.358330 0.506534 -0.557563 0.077709 0.149980 0.088476 0.439350 -0.178738 -0.204105 0.148536 0.024236 0.065368 0.210957 -0.094369 0.084888 -0.128651 0.240849 0.043663 0.146509 0.042205 -0.462511 -0.013821 0.153225 -0.062218 -0.005744 0.093620 0.104017 -0.314053 0.195791 -0.284684 0.368818 -0.481893 0.030243 -0.215210 -0.450781 -0.093147 0.423305 0.307820 0.360480 -0.046736 -0.279859 -0.003921 -0.561148 -0.931513 0.083823 0.021561 -0.029343 0.029412 -0.096665 0.032934 -0.247702 0.067084 0.410691 -0.286920 -0.144801 0.009045 0.267206 0.056128 -0.184406 -0.214833 -0.054111 0.145603 0.258742 0.359138 -0.172421 -0.568486 -0.514211 -0.236971 0.311665 -0.137012 0.001551 -0.105153 -0.225326 -0.494131 0.173073 -0.250795 0.160895 -0.113996 -0.151320 -0.446945 0.072967 -0.081676 -0.165434 0.004203 -0.355989 0.092843 0.059057 -0.254693 0.055068 0.042356 0.059758 -0.261472 -0.336496 0.140726 -0.083990 0.405699 0.272644 0.092229 -0.128409 -0.139914 -0.426513 0.294539 -0.394894 0.155238 0.178722 -0.322887 0.303360 -0.320841 -0.259421 -0.142339 0.233294 0.021719 -0.187605 0.604214 0.499849 -0.359536 -0.120529 -0.042677 0.174231 0.129154 0.471789 -0.341098 -0.082831 0.134794 0.090360 -0.040516 0.031828 0.169561 -0.109562 0.080233 -0.397874 -0.198942 0.240340 0.338591 -0.041141 -0.004397 -0.005923 -0.149976 -0.106851 0.390552 0.187568 0.128240 -0.286417 -0.545606 0.158382 -0.501767 -0.137054 0.117663 -0.197543 -0.100455 0.066246 -0.197828 0.401328 -0.036606 -0.286562 0.374142 -0.494712 -0.438197 -0.253106 -0.131201 0.024126 -0.218097 0.356821 -0.236148 0.044569 -0.109407 0.163143 -0.174368 -0.138014 0.041815 0.096008 0.191318 0.070194 -0.179936 0.430774 0.037190 -0.128410 -0.148490 0.013382 -0.091413 0.224390 -0.434915 -0.192188 -0.110001 0.255134 -0.238176 0.238033 -0.101811 0.130562 0.230905 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = 10.767273 1.318973 -8.849824 17.941580 0.833375 -0.978553 2.871358 4.298900 -0.245906 -23.012025 -10.003220 16.484635 3.004692 -1.338978 0.852182 7.720379 5.816217 9.706723 -26.024830 1.035335 3.860756 0.774702 -3.128244 -7.651363 0.480588 -2.304100 7.347765 5.324378 2.846470 16.344203 -6.037280 10.011070 12.498242 2.016488 7.815203 8.344793 -2.876428 -0.658978 -6.645498 -6.993801 20.856046 7.338937 0.352881 9.829264 -0.263538 17.779598 4.251535 11.081278 4.112616 -3.736503 4.942580 3.375583 -7.347808 -1.653805 -16.746531 2.207239 8.247175 5.778269 -6.355504 8.830319 -1.025111 5.152356 7.177496 -2.351871 18.934323 6.659436 10.773831 15.265298 16.187174 -10.557552 5.230615 -3.436191 5.857925 -1.914847 10.926416 -12.744824 -10.096467 -10.070940 -3.048335 -25.491059 2.302574 -1.794797 25.712857 -14.602147 0.986815 1.744883 5.989513 16.207702 -9.376435 -0.496182 -15.685612 -1.760099 -4.422215 22.432856 4.065004 4.926331 -4.336483 5.414626 -0.709410 2.125490 3.077553 -15.026796 1.010316 -25.318803 -9.666258 -7.794490 0.112778 3.144110 -13.651535 0.029074 -0.205233 14.613191 -27.180787 -5.017997 3.714547 1.985384 7.548479 -1.799210 -7.577913 3.381363 -2.555823 7.210417 5.272701 -11.460445 2.065392 -1.946939 -6.059145 1.859843 7.893529 5.540789 -18.903971 -5.425926 3.884675 -1.357448 1.998791 6.932305 5.852506 -5.599881 7.205126 -12.692943 13.445823 -17.126781 -5.665568 -4.986652 -12.852930 -8.636791 14.153804 9.123280 11.428462 -0.221830 -2.125029 -0.818035 -19.690764 -25.845746 7.387212 -0.229658 0.203062 5.172423 -2.587417 2.407251 -14.296490 2.115810 12.975686 -9.302620 -10.334846 -3.216061 14.161454 1.170251 -6.433010 -6.994533 -0.726247 4.540509 6.132403 13.406653 -6.474193 -21.698061 -21.678633 -6.756334 15.316218 -8.812899 0.242514 -6.203587 -2.639586 -10.400628 -0.971879 -14.452988 4.504013 0.122264 -6.541689 -19.041206 6.507534 -3.011103 -0.574038 4.464622 -13.058994 5.745788 9.374197 6.850806 -3.251875 3.404126 3.541181 -13.478747 -11.809399 3.270917 -6.976834 12.229419 8.540430 2.816524 -13.952188 -4.687408 -12.171239 10.701997 -10.581328 10.338305 -0.483184 -4.670317 8.622445 -12.949537 -0.875225 -9.514100 6.223333 1.458805 -25.245927 18.246158 11.890316 -12.574951 -0.460317 -7.050585 9.039913 1.197637 13.074440 -12.777329 -11.381371 4.478462 -0.790416 -0.492799 -6.898110 4.517474 -2.879297 -1.660617 -16.093172 -4.323116 14.768345 7.452420 -1.985287 3.471679 6.847325 -5.966786 0.265971 17.400326 8.600895 3.350461 -12.125827 -29.997668 2.671676 3.369686 1.627446 0.851986 -7.564210 -4.947248 3.638373 -6.612418 13.891771 2.167895 -8.809009 13.788634 -18.049104 -15.114272 -11.836212 -0.536776 6.190280 -4.431368 3.761862 -6.828898 1.733755 -1.022022 6.500455 -2.056146 -10.082845 1.709219 6.915493 16.067362 0.302462 -3.614742 17.337719 3.568783 -5.539323 -0.968839 -3.297109 -5.992586 4.103260 -20.014760 -2.837970 2.365869 7.912956 -13.027815 6.802623 -1.991411 4.584009 2.933030 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.252458 -0.110099 -0.027042 0.360881 0.104063 -0.305994 0.113129 0.183265 -0.070670 -0.607014 -0.247345 -0.122373 0.015889 -0.258804 0.178084 0.128064 0.174292 0.277390 -0.652041 0.265787 0.188751 0.053848 -0.227689 -0.150902 -0.010502 -0.232693 -0.262723 0.263918 -0.015846 0.438184 -0.311030 0.108765 0.349656 0.022209 0.354786 0.448564 0.153046 -0.069452 0.225171 0.213118 0.759192 0.174772 -0.080193 0.043303 0.299565 0.520274 -0.038746 0.336692 -0.185719 -0.169707 0.245424 -0.338719 -0.116410 0.029380 -0.546695 0.166983 0.461071 0.374541 -0.453619 0.347233 -0.300633 0.121429 0.227430 -0.010316 0.641883 0.205931 0.141424 0.341687 0.653537 -0.201501 0.059470 0.040877 0.321364 -0.151815 0.116816 -0.079541 -0.045601 -1.047367 0.007453 -0.619599 0.098374 0.081958 0.540427 -0.435407 0.203757 0.478944 0.100239 0.436345 -0.367393 -0.163999 -0.518658 0.008325 -0.027371 0.622342 0.025747 0.054818 -0.023187 0.301497 0.038667 0.220527 -0.083431 -0.446629 -0.504995 -1.065269 -0.517784 -0.206707 -0.188257 -0.167787 -0.617445 -0.160642 0.633278 0.373409 -0.717838 0.078850 0.158935 0.078926 -0.134463 -0.175066 -0.366822 0.022317 -0.230327 0.191485 0.141491 -0.187891 -0.016048 -0.465846 0.115791 0.161408 0.214117 -0.069620 -0.295998 0.011281 0.128015 -0.089549 -0.174406 0.076252 0.007922 -0.349165 0.230261 -0.427161 0.439426 -0.537763 0.078644 -0.362641 -0.425496 -0.073527 0.626594 0.278414 0.127472 0.131777 -0.343333 0.018956 -0.601848 -0.859749 0.182593 -0.159613 0.238076 -0.069665 -0.092702 -0.106537 -0.118230 -0.119555 0.148084 -0.398114 -0.152889 -0.179459 0.376253 -0.000646 -0.213857 -0.354794 0.032817 0.595068 0.024457 0.136386 -0.355217 -0.105454 -0.463333 -0.341884 0.382365 -0.117502 0.095322 -0.102358 -0.010206 -0.555877 0.334394 -0.348938 0.117512 -0.284895 -0.127215 -0.522516 0.026126 -0.159175 -0.039623 -0.060350 -0.340357 0.186224 0.049112 0.023119 -0.015585 0.029621 0.106052 -0.472086 -0.527477 -0.038074 0.067077 0.407106 0.304101 0.169359 -0.206944 -0.119308 -0.364530 0.448390 -0.374653 0.129567 0.195834 -0.462329 0.497093 -0.288716 -0.276614 -0.290855 0.277026 0.034064 -0.349729 0.677539 0.434968 -0.527975 -0.150667 -0.420693 0.246370 0.223820 0.642725 -0.186755 0.020202 0.204413 -0.007828 -0.081647 -0.237543 0.238056 -0.103942 0.334653 -0.524625 -0.254560 0.331390 0.437303 -0.035329 0.138763 -0.040453 0.088352 -0.131858 0.563029 0.102089 0.098936 -0.325307 -0.622597 0.174202 0.067519 0.178488 0.113570 -0.210249 -0.170163 -0.101617 0.092317 0.524912 0.516857 -0.069935 0.420550 -0.484121 -0.550526 -0.220606 0.129756 0.089435 -0.362880 0.252325 -0.308292 0.013607 -0.101980 0.336455 0.110826 -0.206475 -0.503131 0.078426 0.244115 0.186503 -0.370592 0.516822 -0.007857 -0.234371 -0.057759 -0.013386 0.101321 0.235526 -0.102461 -0.278649 -0.217772 0.239606 -0.321129 0.479136 -0.135354 0.224357 0.278099 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.472752 -0.059320 -0.031803 0.674973 0.125562 -0.465495 0.223324 0.380665 -0.227106 -0.900640 -0.303712 0.085624 0.018059 -0.326756 0.140590 0.121877 0.224943 0.301882 -1.314896 0.320166 0.186940 0.001607 -0.434928 -0.426952 -0.036515 -0.262919 -0.041793 0.645231 -0.061864 0.697880 -0.437538 0.101918 0.467199 0.161934 0.656987 0.619155 0.204131 -0.066234 0.051308 0.134980 1.134192 0.508530 -0.387759 0.098598 0.451412 0.846773 0.218731 0.140854 -0.580336 -0.172419 0.024862 -0.089399 -0.304335 -0.158082 -0.834206 0.087838 0.780914 0.619883 -0.610977 0.593696 -0.513079 0.157513 0.382996 0.226988 1.031541 0.137566 0.418921 0.545518 0.944547 -0.498262 0.072535 0.048515 0.558006 -0.261204 0.114354 -0.053358 -0.371964 -1.533345 0.115766 -1.329022 -0.030125 0.213083 0.723173 -0.566309 0.278499 0.544344 0.171984 0.595135 -0.789202 -0.255561 -0.787455 -0.073150 -0.224294 1.365864 0.092050 0.146761 0.175447 0.582125 0.271439 0.433402 -0.074285 -0.744644 -0.321874 -1.627022 -0.531144 -0.293139 -0.338513 -0.249435 -0.634930 -0.301990 0.967682 0.749640 -1.016622 -0.008548 0.238579 0.074151 -0.036994 -0.605152 -0.395818 0.295169 -0.455609 0.203476 0.456328 -0.420626 0.061966 -0.190499 0.189473 0.256019 0.383842 0.197791 -0.834488 0.029121 0.409618 -0.305163 -0.237847 0.097903 -0.123356 -0.456457 0.305430 -0.826511 0.821401 -0.819691 0.334083 -0.433018 -0.633981 -0.064146 0.365480 0.510638 -0.027241 0.158058 -0.267402 0.209309 -0.854527 -1.571399 0.450784 0.158858 0.171892 -0.270332 -0.168458 -0.090918 -0.404429 -0.222513 0.539151 -0.583360 -0.352648 -0.278775 0.863184 0.179759 -0.382384 -0.243392 0.180503 0.747270 0.332351 0.421358 -0.620295 -0.517928 -0.825782 -0.472300 0.634015 -0.192761 -0.189557 -0.084228 -0.179446 -0.849793 0.563846 -0.552628 0.484019 -0.398331 -0.147292 -0.831475 0.083117 -0.225652 -0.021071 -0.046326 -0.508624 0.193974 0.085615 -0.207067 -0.139615 0.067671 0.427024 -0.526148 -0.703377 0.127136 0.180068 0.707669 0.382860 0.257251 -0.348548 -0.116466 -0.563124 0.754675 -0.287097 0.303061 0.123632 -0.704257 0.779406 -0.406077 -0.436658 -0.297872 0.487763 0.160518 -0.140666 1.287844 0.874017 -0.789622 -0.306554 -0.465158 0.300234 0.316028 1.012775 -0.592152 -0.256957 0.307012 -0.003945 -0.138852 -0.184262 0.321720 -0.034113 0.319330 -0.833768 -0.430678 0.482619 0.566684 0.025472 0.301312 -0.088080 -0.113304 -0.367551 0.988091 0.167628 0.274317 -0.586945 -0.852801 0.321007 -0.381973 0.196520 -0.026016 -0.187171 -0.459811 -0.152215 0.132362 0.767600 0.803430 -0.659702 0.668300 -0.836744 -0.814914 -0.607835 0.130332 0.137325 -0.562935 0.399455 -0.452907 0.110791 -0.165112 0.425943 0.081153 -0.239926 -0.486605 0.058055 0.302372 0.234268 -0.682380 0.857740 -0.033572 -0.340173 -0.187474 0.000486 -0.032470 0.477834 -0.316693 -0.428191 -0.352060 0.516260 -0.466197 0.590253 0.052228 0.355274 0.478529 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = 0.168845 -0.124803 -0.180599 0.468997 0.054158 -0.116273 0.088980 -0.045457 -0.061171 -0.539226 -0.142351 0.214820 0.074275 -0.082736 0.041286 0.190096 0.098481 0.134788 -0.264191 0.100757 0.045321 -0.091961 -0.267259 -0.033828 -0.077831 -0.274160 0.169473 0.258135 -0.037050 0.370128 -0.148620 0.186893 0.298683 -0.006082 0.210373 0.319046 0.199127 0.014386 -0.167978 0.109789 0.559220 0.118389 -0.098601 0.069400 0.101183 0.446892 0.105670 0.314256 -0.133121 -0.131887 0.136760 0.141275 -0.095143 -0.093780 -0.471545 0.090109 0.228400 0.144399 -0.272844 0.246156 -0.297011 0.088311 0.176505 0.203976 0.540274 0.106084 0.317948 0.350202 0.469062 -0.299119 0.013897 0.153544 0.204800 -0.052583 0.342153 0.079696 -0.303122 -0.366613 -0.024262 -0.263679 -0.030527 0.081969 0.470874 -0.316117 -0.146944 0.215256 0.141708 0.391742 -0.344246 0.018703 -0.427163 -0.009250 -0.050026 0.622589 0.191974 0.113718 -0.130180 0.234300 0.067741 0.184925 0.008057 -0.413815 -0.133739 -0.710062 -0.418374 -0.258458 -0.082842 -0.045306 -0.488314 -0.100237 0.358330 0.506534 -0.557563 0.077709 0.149980 0.088476 0.439350 -0.178738 -0.204105 0.148536 0.024236 0.065368 0.210957 -0.094369 0.084888 -0.128651 0.240849 0.043663 0.146509 0.042205 -0.462511 -0.013821 0.153225 -0.062218 -0.005744 0.093620 0.104017 -0.314053 0.195791 -0.284684 0.368818 -0.481893 0.030243 -0.215210 -0.450781 -0.093147 0.423305 0.307820 0.360480 -0.046736 -0.279859 -0.003921 -0.561148 -0.931513 0.083823 0.021561 -0.029343 0.029412 -0.096665 0.032934 -0.247702 0.067084 0.410691 -0.286920 -0.144801 0.009045 0.267206 0.056128 -0.184406 -0.214833 -0.054111 0.145603 0.258742 0.359138 -0.172421 -0.568486 -0.514211 -0.236971 0.311665 -0.137012 0.001551 -0.105153 -0.225326 -0.494131 0.173073 -0.250795 0.160895 -0.113996 -0.151320 -0.446945 0.072967 -0.081676 -0.165434 0.004203 -0.355989 0.092843 0.059057 -0.254693 0.055068 0.042356 0.059758 -0.261472 -0.336496 0.140726 -0.083990 0.405699 0.272644 0.092229 -0.128409 -0.139914 -0.426513 0.294539 -0.394894 0.155238 0.178722 -0.322887 0.303360 -0.320841 -0.259421 -0.142339 0.233294 0.021719 -0.187605 0.604214 0.499849 -0.359536 -0.120529 -0.042677 0.174231 0.129154 0.471789 -0.341098 -0.082831 0.134794 0.090360 -0.040516 0.031828 0.169561 -0.109562 0.080233 -0.397874 -0.198942 0.240340 0.338591 -0.041141 -0.004397 -0.005923 -0.149976 -0.106851 0.390552 0.187568 0.128240 -0.286417 -0.545606 0.158382 -0.501767 -0.137054 0.117663 -0.197543 -0.100455 0.066246 -0.197828 0.401328 -0.036606 -0.286562 0.374142 -0.494712 -0.438197 -0.253106 -0.131201 0.024126 -0.218097 0.356821 -0.236148 0.044569 -0.109407 0.163143 -0.174368 -0.138014 0.041815 0.096008 0.191318 0.070194 -0.179936 0.430774 0.037190 -0.128410 -0.148490 0.013382 -0.091413 0.224390 -0.434915 -0.192188 -0.110001 0.255134 -0.238176 0.238033 -0.101811 0.130562 0.230905 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 6.914007 1.174678 -3.852242 9.024615 2.197913 -0.934495 1.985823 3.824363 -0.917535 -10.112805 -4.456572 7.111005 0.582115 -1.298493 2.404449 3.449211 4.094032 4.407380 -11.283087 0.478274 -0.320099 -0.582786 -2.956911 -4.540154 0.219025 0.589525 1.757366 4.897001 1.587036 8.148697 -3.265854 2.987693 5.397398 1.723039 4.680850 3.068080 3.444794 0.706148 -4.338289 -2.404845 12.027729 2.987592 -0.581795 6.589991 2.186702 9.626460 1.169588 9.523501 1.222924 -0.113580 5.467457 -2.392081 -3.557035 -0.789907 -9.427618 1.340384 7.126365 3.461394 -4.720950 6.351303 -0.122789 2.872666 3.201255 -2.337082 9.191267 5.074526 5.124516 6.551123 9.575562 -6.077733 0.636696 -1.404990 6.092410 0.324427 1.491514 -8.734624 -3.469683 -9.929303 -0.162041 -11.807783 1.099070 -2.901975 12.845734 -7.731865 0.835349 4.104220 0.365803 6.039448 -6.466123 -0.299450 -8.093229 -1.723638 -1.288044 12.821978 1.847133 2.442253 -0.428160 2.190958 1.367901 2.975248 1.885009 -7.120375 -2.715103 -12.616875 -7.303854 -0.764412 -1.157475 -0.896845 -4.896660 -1.630291 2.461957 4.090899 -12.580071 -4.112371 3.069165 1.174764 4.092113 2.574437 -5.305727 2.068212 -0.349537 3.763320 3.665406 -6.403056 0.590102 -2.828580 -3.477240 1.005124 4.578880 2.118529 -8.498232 -1.927199 1.830813 -0.699071 0.410018 -0.762741 -1.188138 -5.005465 4.327113 -5.719217 7.315367 -9.820790 -4.970144 -1.787613 -6.970446 -3.487162 9.921246 2.942403 8.279791 3.297656 -2.617208 -1.050613 -8.329511 -14.140325 5.009922 0.198496 1.295357 1.659490 -1.242546 0.741761 -6.694750 -1.869929 6.784263 -5.033868 -6.184986 -2.810552 7.181720 -0.606551 -3.465218 -5.747280 1.806690 5.418466 3.979426 5.310684 -4.160989 -12.783034 -7.305149 -3.627584 7.745451 -4.116418 0.616768 -0.426103 -0.180174 -8.676629 -0.367758 -8.188161 3.702092 0.141485 -5.203268 -9.062635 5.098845 -2.006368 1.828636 3.022865 -6.150330 3.086444 2.378486 6.078967 -2.501553 2.895187 2.387503 -8.938828 -9.468578 -1.028538 -1.853494 8.446837 1.696794 3.249499 -5.399953 -1.411275 -6.735804 6.596224 -7.581440 3.816364 -0.230944 -1.632576 5.263855 -5.305712 -2.880342 -6.270075 4.108346 2.193076 -10.173444 8.878131 6.866059 -7.269913 -2.680218 -5.139048 3.732977 1.635527 10.170398 -6.662660 -6.376537 3.440081 1.826519 -0.646478 -4.888311 3.239341 0.291159 -0.004020 -9.549486 -3.460707 6.583912 6.002535 -0.726754 2.694479 3.748560 -0.660393 -2.548013 10.833105 2.355409 1.383954 -3.943235 -15.158258 0.554690 5.218515 0.466248 1.998652 -5.929421 -2.699388 0.806877 -2.436535 7.259102 2.843056 -2.459916 7.607103 -7.387411 -7.773371 -5.242442 0.926440 3.552535 -4.930955 2.735381 -3.908536 0.801620 -0.320075 2.741149 0.353117 -3.816660 -1.785434 0.454084 6.690958 -1.206367 -1.906058 9.553951 1.040609 -3.674775 0.412750 -1.962005 -0.941024 5.399547 -9.759612 -1.477648 -0.946719 3.495286 -6.049606 3.550936 -0.313065 1.683761 2.760320 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.637637 -0.220219 -0.058939 0.750600 0.325665 -0.361660 0.188805 0.394707 -0.200373 -1.214148 -0.546351 0.182280 -0.016892 -0.309446 0.270190 0.177640 0.467922 0.280525 -1.407818 0.309197 0.168003 -0.105648 -0.561699 -0.287807 -0.015714 -0.367208 -0.091113 0.648986 -0.003645 0.778708 -0.544590 0.230081 0.561133 0.170836 0.801967 0.686663 0.154665 -0.193118 0.094100 0.005648 1.525858 0.413192 -0.235946 0.264863 0.542821 0.978793 -0.022088 0.783185 -0.243889 -0.192502 0.437886 -0.428886 -0.304299 0.017926 -1.194690 0.217990 0.866526 0.519550 -0.783785 0.596725 -0.485928 0.269253 0.374174 0.042356 1.305336 0.281160 0.499028 0.639346 1.061280 -0.578649 0.031062 0.173867 0.666294 -0.072867 0.059368 -0.310268 -0.134924 -1.669307 0.136433 -1.307449 0.131922 -0.036531 1.168882 -0.629485 0.231607 0.632875 0.118961 0.714248 -0.768388 -0.182141 -1.067035 -0.018952 -0.090534 1.327627 0.026765 0.156633 0.153657 0.487637 0.090862 0.540835 -0.086067 -0.839715 -0.631109 -1.968422 -0.809702 -0.314020 -0.228256 -0.310099 -0.916539 -0.188012 0.968051 0.728750 -1.174888 -0.093867 0.195637 0.106323 -0.036909 -0.096972 -0.689296 -0.004538 -0.363931 0.383766 0.391452 -0.320707 0.101728 -0.685333 0.175904 0.252921 0.533016 0.104496 -0.959183 -0.026349 0.370785 -0.176838 -0.300795 0.038760 -0.046328 -0.508515 0.420733 -0.710742 0.853640 -1.072159 0.132711 -0.707100 -0.773882 -0.126752 1.012985 0.713736 0.402049 0.447800 -0.355146 0.117238 -1.096153 -1.742392 0.340997 -0.034399 0.298464 -0.176726 -0.162031 0.014673 -0.416397 -0.299815 0.479348 -0.716076 -0.473145 -0.442475 0.869383 0.062989 -0.394896 -0.465989 0.242942 0.969478 0.027781 0.446755 -0.658092 -0.704936 -0.971756 -0.612632 0.708084 -0.310853 0.007521 -0.034609 -0.045913 -0.959740 0.488924 -0.671791 0.350276 -0.485695 -0.388933 -0.963787 0.166370 -0.287889 -0.018710 0.045642 -0.648871 0.350744 0.228800 0.227899 -0.083933 0.184869 0.256586 -0.851953 -1.011426 -0.037171 0.147752 0.890879 0.587300 0.176557 -0.380664 -0.299178 -0.742307 0.848768 -0.726264 0.342791 0.258761 -0.807400 0.721548 -0.635813 -0.428587 -0.447519 0.532817 0.201650 -0.765468 1.340777 0.860179 -0.997995 -0.405208 -0.852525 0.440106 0.268287 1.223157 -0.484977 -0.098301 0.350173 0.119541 -0.159180 -0.349054 0.421079 0.052079 0.344973 -1.158296 -0.656669 0.643596 0.686899 -0.000271 0.266838 0.053131 0.101505 -0.247488 1.294534 0.201128 0.228548 -0.619923 -1.466119 0.292924 0.064053 0.185673 0.166789 -0.424018 -0.521662 -0.268991 -0.024900 0.928512 0.719980 -0.313405 0.827600 -0.873428 -0.909662 -0.588193 0.141085 0.150603 -0.649710 0.432217 -0.587015 0.008513 -0.268386 0.497153 0.089689 -0.311430 -0.793315 0.087292 0.443269 0.297104 -0.557692 0.937298 0.104491 -0.435906 -0.151317 0.035372 0.058316 0.611091 -0.581339 -0.505871 -0.365494 0.407658 -0.556446 0.598496 0.072631 0.462706 0.428415 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 2.108646 -0.453344 -0.871328 2.175214 0.379995 -1.521671 0.471067 1.335528 -0.310590 -2.894346 -1.065020 1.959098 0.066205 -1.085211 0.318517 0.525893 0.852532 0.976136 -3.891999 1.144606 0.090092 -0.019926 -2.128915 -1.496877 -0.006051 -0.014930 0.138605 1.365959 0.044310 2.020004 -1.480927 0.440327 1.170226 0.393058 1.996256 1.330496 0.197645 -0.350601 0.018698 -0.466847 3.629977 1.663149 -0.737779 1.110600 1.306212 2.337385 0.243463 2.415407 -0.583062 -0.181426 0.721042 -0.258938 -1.056506 0.013671 -2.906899 0.516532 2.289049 1.249709 -1.571524 1.563987 -0.920435 0.770274 1.223784 0.318427 3.648178 1.017588 1.183239 1.804013 2.927962 -1.281808 0.519809 -0.179543 2.338401 -0.459508 0.882315 -1.227420 -1.063713 -3.607938 0.125648 -3.993510 0.635655 -0.081949 3.618968 -1.933350 1.219244 1.083088 0.948904 1.755596 -2.367218 -0.442426 -2.516240 -0.108651 -0.851214 4.455830 -0.182736 0.852090 0.034161 1.279474 0.256024 0.959876 -0.071906 -2.194279 -0.570184 -4.998849 -1.660330 -0.495391 -1.348791 -0.823915 -2.389787 -0.477620 1.959918 2.328756 -3.534323 -0.702112 0.280142 -0.355989 0.716754 -0.043314 -1.558053 0.721293 -1.404879 1.028754 0.844690 -1.149676 0.066913 -1.101900 -0.241163 0.864812 1.443142 0.906050 -3.533443 0.158697 1.009664 -0.278966 -0.719756 0.294755 -0.421856 -1.462973 0.824627 -2.155960 2.069906 -2.903594 -0.182298 -1.533660 -2.165338 -0.138748 2.155403 1.619979 1.327039 0.874047 -0.290080 0.139611 -3.098225 -4.882515 1.471619 -0.152643 0.264924 -0.670194 -0.138614 -0.366870 -1.306458 -1.057832 1.974547 -2.022801 -1.475853 -1.396133 3.249374 0.111210 -1.017191 -0.968118 0.495497 2.507453 0.832015 1.101815 -1.700179 -3.004809 -2.966834 -1.124019 1.929415 -0.703338 -0.218560 -0.079324 -0.078750 -2.129541 0.912857 -1.724009 1.418981 -1.009541 -0.596106 -2.493990 0.307184 -0.526283 0.293702 -0.256602 -1.509196 0.993791 0.695137 0.989133 -0.807956 0.799261 1.262815 -2.465734 -2.711966 0.160674 0.652413 2.515450 1.490153 0.799945 -1.281987 -0.474990 -2.340047 2.170698 -2.753081 1.064630 0.453207 -1.573287 2.126177 -1.879156 -1.142669 -1.286651 1.431693 0.354511 -1.994136 3.797740 2.222665 -2.571880 -0.660654 -2.119386 1.404886 0.723736 3.263390 -1.792815 -0.884306 1.024477 0.155924 -0.559049 -1.085088 1.018332 -0.017412 0.808778 -2.745132 -1.274010 1.604607 1.367779 0.092835 0.370381 -0.260540 -0.775527 -1.128641 3.411596 0.692355 0.773084 -2.012054 -4.024104 0.556445 -0.458798 0.678892 0.299851 -1.103734 -1.409461 -0.541057 -0.272359 2.262214 1.280520 -1.278725 1.886808 -3.116337 -2.282922 -1.536409 0.669537 0.524570 -1.530456 1.273685 -1.492151 -0.033610 -0.362330 1.551772 -0.023476 -0.707957 -1.528056 0.291365 1.207312 0.553040 -1.929616 2.434822 0.310865 -1.067064 -0.210953 -0.186795 -0.151093 0.932360 -1.952405 -0.911354 -0.847574 1.321506 -1.706090 2.023210 0.478109 1.217978 0.851665 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.710884 -0.364373 0.040015 0.942520 0.397616 -0.439780 0.046023 0.270313 -0.248183 -0.871425 -0.363940 0.190720 -0.146095 -0.204987 0.391500 0.027945 0.333018 -0.150843 -0.961052 0.366780 -0.267848 -0.303748 -0.562114 -0.395213 0.052777 0.177798 0.201882 0.637700 -0.027580 0.509041 -0.641143 0.225291 0.152749 0.355207 0.796103 0.013180 0.216497 -0.165223 -0.346982 -0.224620 1.197060 0.190074 -0.244444 0.425799 0.520813 0.630282 0.008600 1.001667 0.029942 0.204845 0.718966 -0.489307 -0.120758 0.142254 -1.056718 0.251943 0.921280 0.202415 -0.425346 0.315195 -0.458574 0.395152 0.287622 0.124195 1.252092 0.393917 0.592376 0.549955 0.832273 -0.588024 -0.010285 0.138167 1.156111 0.129204 -0.392923 -0.443197 -0.114999 -1.443297 0.053285 -0.741383 0.288550 -0.287919 0.696094 -0.339145 0.090215 0.313632 -0.187351 0.381479 -0.948985 0.331125 -0.798604 0.044622 -0.134081 0.966534 -0.233893 0.177303 0.157264 0.246853 0.116843 0.587930 -0.116196 -0.517470 -0.198564 -1.534481 -0.823363 0.334611 -0.380997 -0.575201 -0.639025 0.074229 0.658812 0.285022 -0.565032 -0.583290 -0.117571 0.025573 0.164523 0.171089 -0.473379 -0.080920 -0.226174 0.603441 0.446775 -0.153259 0.295512 -0.951437 -0.034812 0.361165 0.798953 0.320806 -0.562583 0.028256 0.238602 -0.065759 -0.331302 -0.311433 -0.374602 -0.332621 0.262516 -0.290413 0.699166 -0.878255 -0.230364 -0.847204 -0.490802 0.313273 1.061444 0.442427 0.592370 0.873173 -0.220778 0.117181 -0.706213 -1.367452 0.292460 0.137807 0.007934 -0.269249 0.019372 0.152553 -0.295666 -0.627235 0.759366 -0.829449 -0.788256 -0.795120 0.167622 -0.019785 -0.352544 -0.439282 0.539878 0.949908 -0.120016 0.484559 -0.426866 -1.030009 -0.720007 -0.482179 0.488880 -0.247246 -0.092488 0.268352 0.252973 -1.074585 0.427658 -0.536124 0.474501 -0.177261 -0.633852 -0.731890 0.053386 -0.161927 0.279335 -0.021004 -0.439826 0.365200 -0.023342 0.633688 -0.192993 0.659158 0.338045 -0.865978 -1.274376 -0.282114 0.485165 0.999235 0.108264 0.216122 -0.239856 -0.400682 -0.635577 0.853703 -0.866662 0.226033 0.219429 -0.393381 0.453154 -0.505670 -0.526648 -0.323096 0.456058 0.310590 -0.570127 1.118010 0.718368 -0.952981 -0.537533 -1.199059 0.598734 0.084411 1.534856 -0.569974 0.045130 0.265505 0.685424 -0.320271 -0.485862 0.482203 0.219070 -0.058624 -0.899908 -0.817697 0.249385 0.466464 0.188656 -0.061578 -0.008923 0.133710 -0.515194 1.267215 0.143635 0.181847 -0.433020 -1.262989 0.016895 0.522855 0.077478 0.431242 -0.810684 -0.661611 -0.448447 -0.004225 0.795077 0.499401 -0.024134 0.677103 -0.566743 -0.485746 -0.480486 0.216424 -0.117602 -0.763110 0.518168 -0.646920 -0.238856 -0.032693 0.342222 -0.148553 0.066747 -0.816196 -0.312877 0.219471 0.073515 -0.330361 0.648981 0.457104 -0.491074 -0.154265 0.220647 -0.148624 0.503647 -0.646905 -0.366381 -0.371279 0.204468 -0.417701 0.403357 0.377966 0.317931 0.058950 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = 0.661413 -0.718516 -0.082552 0.763629 0.427570 -0.193916 0.103107 0.052190 0.128587 -1.084227 -0.426819 0.351265 -0.019567 -0.247172 0.247957 0.295187 0.514980 -0.048572 -0.766896 0.328295 -0.048017 -0.245521 -0.541596 0.101680 -0.013448 -0.598086 0.351161 0.531787 -0.052988 0.555670 -0.417364 0.288348 0.504527 -0.036242 0.625599 0.621055 0.246013 -0.163555 -0.129294 0.154963 1.389479 0.137468 0.034930 0.383912 0.530142 0.819617 -0.054412 1.487585 0.626005 -0.184331 0.918618 -0.296298 -0.228869 0.018149 -1.208764 0.310694 0.614928 -0.027755 -0.764250 0.394708 -0.386644 0.242569 0.248906 0.272038 1.124112 0.321784 0.646986 0.511697 1.001927 -0.462602 -0.124193 0.518707 0.785573 0.379271 0.430860 -0.463589 -0.308435 -0.867127 0.085561 -0.150477 0.182160 -0.344779 0.804657 -0.495723 -0.250221 0.456119 -0.039745 0.689441 -0.513346 0.030070 -0.909510 0.138454 0.194492 0.939815 -0.057199 0.275382 -0.052022 0.256048 -0.112751 0.550623 0.073881 -0.817070 -0.572204 -1.546234 -0.970150 -0.420460 -0.042954 -0.330880 -1.046831 0.097144 0.339866 0.346767 -0.816563 -0.007358 0.195353 0.090756 0.761955 0.243849 -0.409339 -0.341026 0.171807 0.453582 0.170450 -0.068316 0.106962 -1.001533 0.522907 0.265523 0.385828 -0.172786 -0.491540 0.012997 0.186569 0.264695 -0.181753 -0.032023 0.123959 -0.748557 0.418376 -0.274688 0.617844 -1.011054 -0.377360 -0.829795 -0.548279 -0.137314 1.551369 0.433961 1.069342 0.410412 -0.545026 -0.102956 -1.026658 -1.539608 -0.083509 -0.367806 0.098294 0.069038 -0.082119 0.095659 -0.248240 -0.203183 0.290827 -0.613631 -0.312436 -0.366624 -0.128586 -0.086044 -0.232329 -0.515209 0.058392 0.631852 0.051399 0.529454 -0.298335 -1.409352 -0.743917 -0.587555 0.498681 -0.290256 0.240486 -0.024613 -0.152140 -0.967208 0.271294 -0.513855 0.072099 -0.432377 -0.594899 -0.760869 0.152453 -0.261532 0.187109 -0.010645 -0.704609 0.293526 -0.002746 0.439378 0.196852 0.323885 -0.195061 -1.056132 -1.011529 -0.087774 0.024627 1.145389 0.294547 0.023157 0.018729 -0.395083 -0.789413 0.532400 -1.218769 0.170890 0.572442 -0.772657 0.494326 -0.520513 -0.371051 -0.520136 0.429285 0.057408 -0.715916 1.145415 0.811246 -0.935917 -0.443164 -0.602178 0.397013 0.194461 1.089434 -0.338720 0.073071 0.263951 0.383078 -0.139248 -0.219559 0.453453 0.004703 0.327467 -1.024078 -0.722066 0.484343 0.743966 -0.106131 -0.168569 0.016804 0.135508 -0.144275 1.028609 0.175832 0.304979 -0.553566 -1.736163 0.161677 0.237404 -0.212666 0.521460 -0.784648 -0.366691 -0.135794 -0.205136 0.887205 0.169454 0.281265 0.720543 -0.719162 -0.812045 -0.376648 -0.244700 -0.037391 -0.412692 0.564726 -0.592281 -0.123450 -0.380343 0.396779 -0.297429 -0.182253 -0.364600 0.129868 0.294392 0.258094 -0.206250 0.715030 0.238945 -0.289714 -0.221159 0.132027 -0.015262 0.604237 -0.657976 -0.408951 -0.386972 0.201686 -0.388183 0.476599 -0.045198 0.566796 0.151117 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.104922 0.054820 -0.383003 1.386145 0.185338 -0.774232 0.202620 0.537517 -0.457325 -1.352804 -0.544480 1.127439 -0.020093 -0.484272 0.152459 0.249597 0.379214 0.224457 -1.919101 0.562135 -0.155653 -0.290987 -1.038479 -0.787859 -0.026969 0.077199 0.380042 0.956699 -0.075985 1.011732 -0.771723 0.378916 0.467100 0.401278 1.119393 0.442004 -0.072948 -0.212353 -0.342426 -0.425732 1.670375 0.704271 -0.354982 0.577050 0.652319 1.197018 0.221969 0.790074 -0.320603 0.075906 0.362288 0.368671 -0.534192 -0.028632 -1.426994 0.093046 0.933340 0.344788 -0.608345 0.710288 -0.753740 0.445753 0.603859 0.350335 1.873067 0.442635 0.846486 0.984097 1.376141 -0.814239 0.220151 0.023494 1.354173 -0.105590 0.027898 -0.288267 -0.721653 -1.435576 0.012240 -1.987678 0.213515 -0.038327 1.710421 -0.784493 0.198762 0.209486 0.331931 0.882554 -1.460096 0.063604 -1.160103 -0.061957 -0.623778 1.967318 -0.030234 0.488903 0.052904 0.560497 0.213862 0.634417 -0.363588 -1.104910 0.042042 -2.335684 -0.860313 -0.074464 -0.692210 -0.543531 -0.994667 -0.099279 0.972423 1.367155 -1.430117 -0.643008 0.056109 -0.216087 0.286954 0.047600 -0.710830 0.348416 -0.583876 0.710125 0.750094 -0.415900 0.246227 -0.438275 -0.158506 0.372076 0.930676 0.717232 -1.719232 0.007536 0.685479 -0.446539 -0.294002 0.049479 -0.299967 -0.459761 0.373055 -0.923454 1.175620 -1.384445 -0.111931 -0.944002 -0.944333 0.101452 0.613246 1.149668 0.612612 0.589712 0.126626 0.227035 -1.426133 -2.225301 0.702378 0.128071 -0.118652 -0.499717 -0.028758 0.011130 -0.769096 -0.559525 1.312635 -1.119008 -0.979391 -0.873270 1.398886 0.239713 -0.590020 -0.420716 0.339143 0.840432 0.467979 0.823822 -0.808066 -1.844471 -1.492097 -0.594051 0.969782 -0.407044 -0.374420 0.031925 -0.110959 -1.035812 0.463754 -0.868803 0.750811 -0.359523 -0.368253 -1.281039 0.151729 -0.183799 -0.087615 -0.195149 -0.758971 0.433618 0.537802 0.197021 -0.368566 0.642194 0.603246 -0.870151 -1.252775 0.159793 0.401978 1.232772 0.860256 0.396434 -0.841640 -0.324753 -1.173175 1.204418 -1.038992 0.623208 0.214261 -0.739152 1.004527 -0.863860 -0.584693 -0.319322 0.757840 0.221876 -1.331609 1.864155 1.378769 -1.388976 -0.478927 -1.162995 0.761640 0.291947 1.838655 -1.133020 -0.384416 0.408576 0.439354 -0.343199 -0.308648 0.567578 0.078657 0.035806 -1.263948 -0.760697 0.800709 0.628131 0.175561 -0.010776 -0.237097 -0.349249 -0.325573 1.632674 0.391279 0.381746 -0.981514 -2.002897 0.225243 -0.292670 0.093594 0.344485 -0.567849 -0.931144 -0.389000 -0.472329 1.201584 0.090226 -0.988922 0.985592 -1.312398 -1.051931 -1.079207 0.280101 0.063972 -0.854406 0.903428 -0.784326 -0.125294 -0.117936 0.676108 -0.247191 -0.215934 -0.624750 0.016358 0.568414 0.315337 -0.841854 1.217129 0.332189 -0.569329 -0.341397 0.045450 -0.350962 0.524277 -1.355337 -0.511124 -0.450246 0.722555 -0.817492 0.799136 0.538516 0.645645 0.390346 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = 0.529464 -0.592753 -0.001611 0.593101 0.314428 -0.158841 0.134333 0.076945 0.104206 -0.870989 -0.360605 0.280167 -0.039720 -0.210514 0.204321 0.185433 0.417352 -0.033748 -0.643473 0.238672 -0.043093 -0.167990 -0.432493 0.080694 -0.016686 -0.473237 0.223484 0.479292 -0.057725 0.457790 -0.306934 0.170925 0.402752 -0.020539 0.450050 0.527975 0.251878 -0.094391 -0.081413 0.143539 1.115242 0.112343 0.016945 0.348353 0.457439 0.667466 -0.044554 1.219645 0.522603 -0.155931 0.768594 -0.315697 -0.218417 -0.022733 -0.947449 0.221819 0.553729 0.019543 -0.598907 0.386933 -0.325180 0.186117 0.188561 0.193425 0.867087 0.309282 0.498252 0.371838 0.816779 -0.395420 -0.125833 0.431816 0.652608 0.321161 0.271102 -0.396214 -0.249405 -0.785437 0.069768 -0.160518 0.106045 -0.283897 0.662852 -0.386164 -0.200212 0.400563 -0.085501 0.494305 -0.410287 -0.000698 -0.709953 0.118540 0.172050 0.777763 -0.050405 0.221093 -0.011945 0.195019 -0.023216 0.468252 0.051550 -0.623875 -0.508845 -1.292718 -0.753690 -0.317269 -0.049217 -0.291735 -0.805510 0.044017 0.316277 0.237671 -0.647208 -0.030975 0.199326 0.093403 0.556413 0.215718 -0.339629 -0.264733 0.154922 0.355753 0.185997 -0.094594 0.090347 -0.803069 0.404335 0.212806 0.291616 -0.144788 -0.397449 -0.017185 0.137456 0.223712 -0.152545 -0.057091 0.040755 -0.557098 0.340156 -0.263931 0.517500 -0.843656 -0.289676 -0.634055 -0.435794 -0.093586 1.300657 0.349463 0.863429 0.325576 -0.452583 -0.102656 -0.780132 -1.261882 -0.028273 -0.265966 0.147511 0.014280 -0.064039 0.039163 -0.206737 -0.195996 0.203339 -0.454104 -0.196322 -0.284880 -0.105094 -0.075631 -0.207313 -0.445900 0.099924 0.540212 0.038061 0.376526 -0.253364 -1.157286 -0.548921 -0.472828 0.402596 -0.208696 0.160496 0.016522 -0.131746 -0.789054 0.235085 -0.393467 0.069286 -0.319332 -0.540663 -0.617031 0.133367 -0.212001 0.171596 0.008776 -0.544277 0.178010 -0.011249 0.395766 0.183573 0.280922 -0.123763 -0.849042 -0.834125 -0.125354 0.024014 0.930088 0.239106 0.044624 0.014923 -0.279830 -0.648676 0.444352 -0.966177 0.103139 0.422264 -0.616763 0.435836 -0.372675 -0.281002 -0.446587 0.340823 0.084621 -0.622089 0.926142 0.677550 -0.746783 -0.412593 -0.476186 0.269979 0.192034 0.899066 -0.299008 0.029462 0.237645 0.263575 -0.102282 -0.193937 0.373491 0.032029 0.271718 -0.820417 -0.575973 0.392027 0.604616 -0.091805 -0.108023 0.037964 0.155023 -0.123510 0.834508 0.107350 0.205436 -0.428836 -1.431271 0.170053 0.286444 -0.177801 0.444320 -0.670552 -0.325186 -0.072684 -0.143349 0.692846 0.194426 0.221814 0.580917 -0.525773 -0.647248 -0.290400 -0.203848 -0.005347 -0.365618 0.460801 -0.449614 -0.069838 -0.270476 0.298200 -0.185178 -0.140847 -0.349171 0.061430 0.236106 0.202840 -0.166693 0.594760 0.131780 -0.247175 -0.167022 0.090384 0.024465 0.509472 -0.496598 -0.315402 -0.358472 0.182527 -0.300288 0.420640 -0.023067 0.439936 0.170375 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.192261 -0.248260 -0.600534 2.983574 -0.265023 -2.115627 1.306390 2.224639 -0.647352 -4.487515 -1.473203 0.043091 0.585547 -1.310341 0.235100 0.924708 0.421049 1.464781 -7.196542 1.356452 1.838572 0.527329 -1.460689 -1.892098 -0.154268 -1.445114 -1.093573 2.496295 -0.316137 3.627823 -1.615728 0.546471 2.646078 0.090272 2.223376 3.344426 0.401448 0.074097 0.982879 1.123919 4.553382 3.009489 -2.585699 -0.247777 1.319633 4.166124 0.747073 0.997120 -4.029345 -1.356990 -0.008564 -0.510663 -1.888358 -0.832295 -2.819421 0.317587 4.518225 4.026335 -2.402970 2.871454 -2.747995 0.491913 1.924431 1.424823 4.429677 1.418733 1.882862 2.717941 4.516775 -2.279938 0.780909 -0.224189 1.334885 -2.048598 1.126329 -0.732540 -2.128536 -7.110286 0.855579 -7.040090 -0.832706 1.430004 3.654320 -3.271918 1.606081 2.456208 1.690238 3.240776 -3.633699 -1.017201 -3.370217 -0.464727 -1.257535 7.579507 0.137101 0.769466 0.447139 3.195255 1.481833 1.439634 -0.040386 -3.391007 -2.226680 -6.866419 -2.034954 -1.964491 -1.469206 0.037588 -3.619538 -1.718444 4.649806 2.698108 -5.639775 0.695391 1.460180 1.044514 1.040673 -1.894018 -2.132683 1.890856 -2.390601 0.213025 2.145667 -2.308111 0.192775 -0.681295 0.907651 1.449928 0.921835 0.854429 -5.369892 0.497644 1.882650 -2.263962 -0.563670 1.424347 0.072260 -2.162657 1.455776 -4.705261 3.860304 -4.470420 1.569353 -1.388049 -3.477679 -0.598979 0.902134 2.751787 -1.160317 -0.304381 -1.553115 0.750476 -4.403793 -6.920328 1.521506 0.885383 1.188525 -1.277995 -1.040423 -0.640813 -2.008467 -0.109909 1.773561 -2.288658 -1.107477 -0.821583 5.810663 1.084941 -1.668071 -0.650377 0.081458 2.886683 1.444260 2.337299 -2.654897 -1.800425 -4.833819 -2.119422 3.257622 -0.746576 -0.914326 -1.340916 -0.915724 -4.219053 2.563947 -2.358739 2.233456 -1.466346 -0.281674 -4.166759 0.845073 -0.841579 -0.435067 -0.093485 -2.392564 0.386185 0.739847 -0.951665 -0.331541 -0.280254 1.996592 -2.658798 -2.838171 1.036812 0.127238 3.551266 1.871647 0.855806 -1.010717 -0.341487 -2.889414 3.577694 -0.501012 1.577399 -0.080904 -2.795046 4.025006 -1.942642 -1.824441 -2.326441 2.112592 0.520842 0.402189 6.672973 3.754302 -3.045284 -0.771191 -1.456424 1.273378 1.637235 3.627981 -2.805252 -2.182864 1.335067 -0.929709 -0.520667 -0.560851 1.301467 -1.077576 1.750976 -3.311242 -0.999008 2.410855 2.514167 -0.204395 1.959945 -0.319981 -1.397656 -1.499630 3.817282 1.150942 0.559511 -2.711418 -3.894921 1.871166 -2.935790 0.766890 -1.366269 -0.690928 -1.923575 -0.051694 1.641305 3.503826 4.803104 -3.531890 3.029165 -4.684816 -4.041295 -2.966459 0.825344 0.815009 -2.034845 0.849700 -1.650211 1.110989 0.055065 1.924089 0.935698 -2.246885 -2.134097 0.683256 2.149555 0.567088 -3.698419 4.204538 -0.477727 -1.118822 -1.093288 -0.091535 -0.285121 1.589865 -0.374297 -1.432926 -1.169417 2.788623 -2.455060 2.932927 0.231864 1.006446 2.480527 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.661535 0.283992 -2.603703 4.656549 -1.181559 -0.994984 0.810162 -0.292037 -0.425370 -5.182554 -0.240945 2.087462 0.763634 0.684797 -1.333460 2.875836 -0.178744 1.002555 -3.335221 0.570629 2.308664 0.750912 -0.517791 -0.006214 0.623693 -1.118772 1.231144 0.811254 0.150936 3.536348 -0.964605 2.796224 3.599438 -0.831181 -0.177120 2.532014 0.129468 1.752325 -0.046384 0.101629 2.101820 0.618885 -1.305967 -0.112913 -1.470518 4.039171 1.372249 2.325467 -3.340281 -2.337615 -0.200360 1.824710 -1.221100 -1.149634 -1.703612 1.017287 1.382475 3.783913 -1.248525 1.423450 -1.516822 0.810730 2.304124 1.920609 4.199787 2.956180 2.487156 4.256603 4.330393 -2.063779 1.758539 0.000709 -0.384371 -1.581701 2.955671 -1.016363 -2.528483 0.121778 -0.838508 -3.974927 -1.199970 1.486988 4.745731 -3.604350 -0.716074 -1.259125 2.029303 4.808219 -2.890204 1.500307 -3.436158 -0.386328 -0.629128 6.132941 0.720239 0.884656 -1.750490 2.702765 0.067626 -0.020299 -0.355320 -2.494729 -0.328191 -2.127098 -1.860572 -2.493961 -0.034857 2.538421 -6.093244 -0.907995 -0.206349 3.201185 -7.456510 0.223378 0.840097 1.492022 5.262740 1.789605 -1.322640 1.910619 -0.596582 -0.696093 0.589065 -1.018114 1.425454 -0.687797 -0.626613 0.531829 0.350725 1.972618 -7.902939 0.215612 0.701062 -2.968310 1.531801 4.034199 2.527119 -0.942590 1.485786 -3.923980 2.659263 -5.185096 -1.745188 0.296631 -5.162542 -1.810294 0.834767 3.347003 1.172333 -3.068101 -1.899518 -1.517058 -6.230602 -5.394995 -0.114659 0.439130 -0.200666 2.165466 -1.301655 0.345676 -3.241055 1.642481 3.631020 -1.681006 -1.709558 -0.820978 4.772699 1.445101 -0.224036 -0.986249 -2.044811 -0.611389 0.825463 3.934331 -0.777528 -3.646634 -7.700758 -1.105500 2.769625 -1.179687 -0.316680 -2.973178 -1.631709 -4.187475 0.763206 -2.385945 0.260560 0.154675 0.291313 -4.424519 2.698476 -0.400464 -2.032579 0.121684 -2.396695 0.301750 1.633872 -1.788314 0.848177 -0.314312 0.149298 -1.207510 -1.514778 3.370916 -1.645669 1.799082 2.172926 -0.048866 -1.106748 -1.835236 -3.477952 3.241850 -0.864175 2.514491 1.408487 0.968899 3.110292 -3.256743 0.240483 -2.135455 1.541880 0.013265 -3.290865 3.713845 2.506369 -2.227984 0.712917 0.503785 2.271240 1.185974 0.785374 -2.873897 -3.115995 1.209693 0.006507 -0.173835 0.100492 0.142841 -2.233122 0.785734 -2.118769 0.500177 2.602187 1.204068 -1.220740 0.219085 0.061731 -4.371501 0.375877 1.930549 2.825742 0.409694 -2.426977 -4.312634 0.454051 -5.480428 -0.306620 -1.368491 -1.433882 0.215332 2.485938 -1.787789 3.375908 -0.884910 -4.072588 2.928477 -6.652087 -3.726485 -1.649748 -0.183397 0.424796 0.281427 0.866135 -0.731294 0.957694 1.480606 1.690266 -1.430852 -3.971192 1.567718 1.744903 4.394273 -2.306218 -1.749254 3.797973 -0.453262 0.411208 -1.559815 0.996212 -1.324077 -0.706740 -4.441017 -0.719945 0.900335 2.820861 -3.721663 2.845433 -0.910135 -0.167295 1.522489 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.699761 0.467478 -6.639185 13.887427 -2.592305 -6.951176 4.632414 6.670202 -0.521474 -16.836664 -4.380818 8.277856 3.902127 -3.239907 -1.451038 5.120006 0.045507 6.688737 -22.905674 4.453854 5.973764 2.329580 -7.126694 -6.921552 -0.573468 -4.597752 1.492671 7.159370 -0.196424 13.820722 -4.867914 3.669638 11.197174 -1.020712 6.767378 11.925433 1.678686 1.615981 -0.953229 0.955768 15.018259 12.632802 -7.885967 1.627688 0.914161 15.676742 5.351470 4.678699 -14.447526 -6.388885 -2.915485 3.560267 -7.598128 -4.504110 -9.627681 1.834745 12.166231 12.151120 -7.412870 9.994512 -7.928678 1.636576 8.241505 6.861523 15.775547 5.394805 8.206259 12.239670 17.061965 -8.977684 4.561983 -0.654435 3.500433 -7.178127 11.253595 -1.998914 -12.668412 -13.417842 2.238984 -22.834070 -4.126402 5.414064 15.873360 -14.020645 4.667553 5.269252 8.919223 13.913187 -13.376705 -2.392411 -12.123234 -2.519384 -6.203250 28.903900 2.512225 4.646228 -1.127153 11.641147 4.234799 3.219031 0.885680 -13.824769 -1.628545 -20.862506 -5.731393 -8.754028 -5.390331 3.413328 -13.628427 -6.156013 9.537929 15.527886 -23.494550 2.441064 5.097066 2.394316 11.974658 -6.047863 -4.342915 9.139070 -6.127818 -1.207679 7.081101 -9.786335 1.727477 3.127259 2.130895 4.643003 2.464098 5.829342 -23.501851 0.764969 7.056154 -7.375870 0.172046 8.527769 2.834313 -9.792044 5.634459 -17.365040 13.383594 -16.144506 2.129836 -2.194312 -15.794718 -4.488707 2.361873 8.808679 0.575484 -5.466830 -4.411186 0.979466 -18.230938 -27.634033 6.109954 3.641186 1.099424 -1.258588 -3.627767 -1.714891 -10.996643 2.547139 10.258888 -7.746238 -5.044192 -0.143305 21.996360 3.933133 -5.518223 -1.734610 -1.962114 4.499208 9.797547 12.138306 -7.665641 -14.154774 -20.982814 -5.810303 12.866625 -3.082413 -3.568344 -6.744868 -6.351807 -13.480543 5.465805 -9.673400 8.913767 -3.654704 0.868604 -16.316723 3.971647 -2.380677 -2.588996 -0.215024 -9.561433 1.605837 4.860454 -6.043420 -2.055718 -0.755210 7.570027 -8.032554 -7.734063 7.915326 -2.386788 13.367419 7.540394 3.148345 -4.595437 -1.523339 -12.104868 11.812284 -4.970490 7.508647 -0.327462 -7.272391 14.336252 -9.321697 -6.245554 -9.260077 7.684256 1.177798 -0.030830 22.514104 13.960425 -9.896731 -0.193293 -0.090141 5.247541 6.287431 11.334262 -12.797008 -11.476373 4.960305 -3.900957 -0.995618 -1.032052 3.230477 -5.892400 4.284269 -10.340894 -1.469718 9.928831 7.438984 -1.521052 4.661628 -0.711729 -10.257331 -3.532305 12.469867 6.997641 3.291222 -12.739641 -15.208742 6.887319 -17.097108 0.649945 -6.056652 -2.533827 -4.907998 3.474208 0.553976 12.193786 10.007249 -15.242970 11.287813 -21.933975 -15.392087 -11.209577 0.911730 3.471739 -4.176379 4.065448 -5.092832 5.343061 0.489487 6.484038 -0.733583 -9.379380 -0.014099 4.769439 8.888775 -0.551665 -11.656729 16.547979 -1.234347 -2.075695 -3.792302 -1.054053 -3.671102 2.068178 -8.164884 -4.191996 -1.625525 11.287444 -10.296817 10.566982 -0.692671 2.789912 8.368930 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.106873 -2.559710 -3.390141 10.424255 0.198778 -4.198905 1.623155 4.398900 0.159727 -10.409645 -3.727022 4.562068 1.846113 -0.868630 1.554590 2.691693 0.891096 1.842554 -14.573117 3.413947 0.791722 -0.450921 -6.167409 -4.202359 -0.059457 -1.373283 2.360597 5.867053 -0.203190 6.978287 -4.814165 2.968250 5.875681 0.109280 6.051670 4.280122 1.123943 -0.823187 -3.530647 -1.220459 11.407596 6.880960 -4.204233 2.687802 0.887261 9.381827 2.693561 7.508269 -4.778759 -2.781423 2.387258 -1.454360 -4.099182 -1.610033 -8.874666 2.740136 8.651881 5.601330 -5.049400 5.555628 -4.809640 2.367385 5.083529 3.116391 12.679686 3.539908 8.074244 7.637537 10.463643 -6.273615 2.306125 0.639316 5.542284 -2.082204 4.573153 -4.478691 -5.547598 -11.913040 2.715194 -12.408959 -0.342387 0.805189 9.192804 -8.072179 2.403541 3.697639 3.576326 8.623052 -9.898751 1.430674 -8.608446 -1.208453 -2.744555 16.466940 0.079708 1.802608 1.135155 6.518702 1.771988 3.848016 0.987928 -7.655118 -0.972975 -14.817563 -6.421975 -1.692740 -3.521740 -0.398372 -8.205223 -1.620733 5.981127 6.402467 -12.037981 -1.457614 1.821270 1.325072 7.178088 -1.854868 -2.442900 2.339859 -2.275002 2.563056 4.957885 -5.707987 3.562610 -2.089122 1.749536 4.269384 4.503649 4.036249 -11.919809 0.076360 3.712865 -2.166467 -0.830027 2.777834 0.561531 -6.202932 4.321258 -8.307347 8.754165 -11.216382 -0.416455 -4.509724 -7.919160 -0.887059 6.722007 4.994133 3.263325 1.696342 -3.484523 1.211846 -11.092732 -17.548858 2.597545 3.321470 0.377239 -0.878833 -1.602191 0.436757 -5.616311 -0.606741 7.032259 -7.273003 -6.481152 -2.296652 8.928152 1.902878 -3.829599 -3.152150 2.458887 5.437908 2.889886 8.028951 -3.640881 -11.444601 -11.647792 -4.371446 7.430256 -1.661827 -1.365011 -1.877015 -2.369662 -10.120004 3.793079 -7.205178 5.543130 -1.628328 -3.105686 -10.213200 2.217474 -1.456773 0.410737 -0.028912 -6.798963 2.857807 1.721338 1.452739 -2.063461 2.448303 4.968522 -8.294527 -8.991814 1.913900 -0.002857 11.173698 3.384619 2.088808 -2.111092 -2.203831 -7.255988 8.186580 -6.805549 4.301472 0.274677 -5.303570 6.831532 -7.276425 -4.701212 -6.515014 4.840638 1.535100 -2.090090 14.636240 8.985716 -8.163613 -2.032882 -4.816616 4.951406 2.652001 11.433072 -7.867450 -4.830823 2.523220 1.857781 -1.577140 -2.723373 3.139514 -1.555463 -0.327120 -8.050257 -4.380938 5.320816 4.746946 0.312381 1.646940 0.260720 -3.444060 -3.964895 10.431193 3.457439 1.750848 -7.276453 -13.098805 3.635717 -3.314882 -0.400637 -0.929277 -5.813050 -4.229014 -0.368977 0.669392 8.093020 7.496073 -5.024337 7.547991 -12.313240 -8.369393 -7.200560 1.085870 0.300400 -3.649623 3.455066 -4.693483 1.383068 -0.394653 3.529244 -2.587521 -3.650706 -3.824848 1.121145 4.449965 -0.208720 -5.993439 10.335718 1.889502 -2.064620 -2.637524 -0.316884 -3.383501 3.030639 -5.332353 -3.004674 -1.445019 5.096809 -6.142215 4.714801 1.326545 2.095929 3.246314 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.332550 -1.788941 -1.156089 4.126910 1.279924 -1.306986 -0.297699 1.154609 0.419541 -3.248034 -1.912534 3.767128 -0.110331 -0.133527 1.092218 0.593503 1.447608 -0.035856 -5.044207 1.489225 -1.639191 -1.027152 -2.969359 -1.660472 0.193819 0.637552 2.617012 2.246322 0.039722 1.520527 -2.311511 1.528333 0.859303 0.795858 3.111959 -0.270059 -0.155039 -1.384240 -2.587809 -2.483833 5.146514 1.425197 0.199840 2.935476 1.138131 2.612586 0.659457 4.662836 3.086174 0.248018 2.394362 -0.666871 -1.271017 0.266533 -5.094764 1.545670 1.460823 -0.933949 -1.800538 1.281313 -0.254595 1.418084 1.556559 -0.329214 5.832799 0.645015 3.480125 2.406019 3.130537 -1.882423 0.481487 0.443691 4.649408 1.309179 0.689750 -3.053265 -1.165039 -3.637353 0.601699 -3.410823 1.807879 -1.896274 3.292396 -1.948181 0.344936 0.124682 -0.129100 2.571266 -3.491908 1.175929 -3.411488 0.056257 -0.290516 3.768015 -0.611195 0.673179 0.647675 0.771594 -0.573012 1.840461 0.053770 -2.211425 1.072430 -6.192583 -2.631390 0.863692 -1.079977 -1.883578 -2.428856 1.086788 -0.085250 2.105764 -2.664700 -2.856111 -0.213082 -1.102650 1.186640 0.467103 -0.300892 -1.014261 -0.231260 3.147271 1.264941 -1.324176 1.624933 -2.362509 -0.276024 1.431655 3.385240 1.756813 -2.383466 -0.579178 1.020613 1.346289 -0.720712 -0.474642 -0.279102 -1.318032 1.479459 -1.048373 2.438079 -3.250991 -1.739242 -3.214375 -0.781587 0.201127 4.907045 1.579686 3.830975 3.015238 0.070412 0.301240 -3.729301 -5.985883 1.378016 0.480652 -0.852583 -0.162688 0.206572 0.596575 -1.349666 -2.069488 3.302930 -3.510239 -3.792825 -2.543527 -0.278703 0.302756 -1.231040 -1.885049 2.106552 2.768381 -0.290143 2.038354 -0.846317 -6.862382 -2.762222 -1.365772 2.028550 -0.914644 0.167948 0.612677 -0.076775 -2.534158 0.408534 -2.907831 1.351362 -0.531790 -2.570028 -2.992600 0.061587 -0.425397 1.634365 -0.138233 -2.529213 2.242188 0.779239 3.676434 -1.373832 2.649448 1.314845 -3.880733 -4.245924 -0.857571 0.829601 4.553456 0.770656 0.687594 -1.585031 -1.405522 -2.308035 2.637169 -5.342578 1.504823 0.941197 -1.995077 0.942165 -3.063675 -1.283967 -1.248424 1.617573 0.551223 -4.544580 3.910677 3.035763 -3.981281 -1.467037 -4.224929 2.615779 -0.032338 5.804490 -2.510455 -0.209903 0.703019 2.618357 -1.190083 -2.151296 1.579275 1.116558 -1.443549 -3.841576 -3.039647 1.653632 1.265255 0.633847 -0.832540 0.419853 0.221360 -1.408614 4.965230 0.787113 1.029330 -2.707828 -7.373685 0.230891 3.643002 -0.180427 2.097682 -3.725360 -2.091381 -1.266911 -1.586248 2.783285 0.327441 0.513532 2.423147 -3.031577 -2.178890 -2.326503 0.308738 -0.592659 -1.345253 2.387447 -2.576907 -0.976843 -1.161598 1.330433 -2.415248 0.385836 -2.146509 0.098596 0.973585 0.537223 -0.695938 2.892994 2.011839 -1.433827 -0.650286 -0.220115 -1.751340 1.454277 -3.844253 -1.265494 -0.821536 0.480093 -2.122876 1.013780 1.408275 1.948269 -0.479435 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.337444 -0.004493 -0.132116 0.648163 -0.146520 -0.613164 0.332664 0.446837 -0.211783 -0.911119 -0.159868 -0.079853 0.153585 -0.386353 0.054876 0.188317 -0.063048 0.508913 -1.405709 0.367341 0.428731 0.227375 -0.326915 -0.556088 -0.082403 -0.317058 -0.245032 0.587436 -0.098304 0.824490 -0.350541 0.014079 0.604336 0.020675 0.397914 0.791959 0.350341 0.107728 0.181472 0.445880 0.968072 0.676494 -0.616466 -0.136970 0.298768 0.897790 0.330740 -0.125937 -1.084622 -0.337950 -0.218369 0.028886 -0.368935 -0.317827 -0.560527 0.069263 0.961362 1.033022 -0.537011 0.723638 -0.661033 0.043781 0.476480 0.360699 0.940484 0.235388 0.355352 0.589978 1.078654 -0.487838 0.164556 -0.076748 0.281193 -0.643334 0.448268 0.063890 -0.586766 -1.835776 0.119039 -1.559618 -0.251630 0.535561 0.675474 -0.768367 0.425382 0.730406 0.451845 0.698651 -0.847417 -0.332641 -0.692652 -0.126819 -0.312650 1.821291 0.191198 0.131381 0.054130 0.791841 0.467271 0.310749 0.046817 -0.737759 -0.414360 -1.563335 -0.464831 -0.432883 -0.440818 -0.039734 -0.775176 -0.522724 1.300861 0.780293 -1.328446 0.267405 0.437445 0.240127 0.236093 -0.941892 -0.388093 0.661423 -0.574354 -0.064790 0.505420 -0.620051 -0.004958 0.114662 0.290392 0.299429 0.144837 0.145863 -1.081415 0.084982 0.399574 -0.484799 -0.129919 0.290752 -0.045179 -0.590876 0.300619 -1.149089 0.882832 -0.907288 0.555306 -0.143727 -0.800621 -0.115517 0.117101 0.428418 -0.381933 -0.255062 -0.500643 0.190298 -0.923977 -1.738420 0.496331 0.277124 0.232494 -0.289663 -0.254218 -0.254741 -0.399859 0.006311 0.525310 -0.502442 -0.149179 -0.001022 1.267884 0.245954 -0.410194 -0.203962 -0.000416 0.695398 0.613106 0.449745 -0.607302 -0.262038 -0.983753 -0.452244 0.722561 -0.090411 -0.271002 -0.316318 -0.331707 -0.983495 0.703679 -0.509152 0.618667 -0.305428 0.016590 -0.909004 0.102337 -0.189996 -0.155824 -0.102659 -0.515988 0.037870 -0.057455 -0.606921 -0.118392 -0.181574 0.594070 -0.505121 -0.612624 0.283942 0.075941 0.657736 0.348083 0.378895 -0.300891 0.031449 -0.589469 0.756736 -0.090148 0.281168 -0.029683 -0.697128 1.029427 -0.382669 -0.533255 -0.451982 0.486788 0.091967 0.460260 1.553216 0.923862 -0.608172 -0.155002 -0.069710 0.197785 0.487443 0.847526 -0.704777 -0.493926 0.343722 -0.264039 -0.109500 -0.058782 0.285001 -0.329033 0.472391 -0.639753 -0.168428 0.427799 0.646726 -0.038081 0.480209 -0.150673 -0.392235 -0.554107 0.774158 0.233402 0.186876 -0.599672 -0.499003 0.476785 -1.024044 0.213366 -0.312052 -0.056201 -0.343768 0.108261 0.450598 0.758413 1.143785 -0.951978 0.637167 -1.115038 -0.953933 -0.590205 0.177510 0.209543 -0.518768 0.309005 -0.355325 0.307787 0.014175 0.409486 0.188033 -0.400026 -0.337783 0.097712 0.374714 0.169334 -0.948001 0.983472 -0.202355 -0.273686 -0.213288 -0.095270 -0.033618 0.344098 0.061729 -0.335751 -0.307684 0.708504 -0.499873 0.785461 -0.126847 0.134331 0.674339 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.769736 -0.092919 -0.196680 0.798092 0.239995 -0.640060 0.248061 0.509291 -0.051548 -1.356512 -0.581742 0.242948 0.087445 -0.546519 0.223897 0.343981 0.437584 0.654273 -1.443595 0.542080 0.335308 0.145886 -0.633379 -0.418383 -0.026599 -0.428096 -0.417298 0.469191 0.039601 0.982522 -0.652433 0.197385 0.773576 -0.028823 0.764178 0.985302 0.283657 -0.158344 0.391852 0.168723 1.672380 0.521359 -0.112226 0.341057 0.631971 1.150543 -0.124476 0.939300 -0.416404 -0.371062 0.430539 -0.473106 -0.403759 0.055543 -1.200370 0.433716 0.998372 0.694284 -0.976898 0.771362 -0.449466 0.278148 0.530948 0.006102 1.298574 0.556951 0.281375 0.809213 1.497719 -0.482175 0.152491 0.098517 0.755927 -0.199409 0.473615 -0.311305 -0.236271 -1.675482 0.043457 -1.416389 0.292321 0.039995 1.544956 -1.039309 0.489540 0.920836 0.374238 0.962993 -0.792712 -0.384344 -1.093148 0.025836 -0.246638 1.573059 0.010498 0.280014 -0.139331 0.631618 0.025202 0.445070 -0.170707 -1.025175 -0.911551 -2.207440 -1.028276 -0.538138 -0.441514 -0.268399 -1.277589 -0.340781 1.111450 0.964307 -1.645599 0.105099 0.331424 0.061374 -0.013614 -0.072812 -0.800540 0.084368 -0.541344 0.308980 0.162201 -0.435153 -0.106650 -0.751634 0.076173 0.316186 0.450308 -0.035248 -1.033693 0.048264 0.270756 -0.231123 -0.337455 0.219546 0.063102 -0.910612 0.503375 -0.925705 0.881375 -1.223763 -0.058051 -0.726397 -1.052550 -0.242720 1.162685 0.550764 0.474647 0.220214 -0.506886 -0.122429 -1.375763 -1.807930 0.464632 -0.371958 0.432785 -0.104976 -0.159256 -0.254431 -0.411780 -0.299124 0.386338 -0.862067 -0.355146 -0.410176 1.318608 -0.102387 -0.423098 -0.727100 0.017688 1.138761 0.196702 0.331470 -0.779291 -0.542832 -1.128709 -0.678868 0.879528 -0.296437 0.221631 -0.213350 -0.078572 -1.003238 0.513605 -0.784624 0.338662 -0.629240 -0.216904 -1.185677 0.151189 -0.324448 -0.153549 -0.093823 -0.799680 0.463278 0.275085 0.136070 -0.136664 0.069161 0.241794 -1.149627 -1.101502 0.009042 0.112198 0.963129 0.808478 0.339681 -0.458446 -0.261369 -0.889871 0.905380 -0.987966 0.356820 0.394745 -0.843562 1.069385 -0.708649 -0.522511 -0.807495 0.620312 0.061065 -0.881357 1.547945 0.908366 -1.150954 -0.267242 -0.857289 0.554627 0.456972 1.353282 -0.526687 -0.181978 0.520630 -0.155062 -0.182038 -0.516168 0.502141 -0.202779 0.766774 -1.166112 -0.479339 0.782849 0.898636 -0.125464 0.288534 -0.043861 -0.007563 -0.145964 1.288841 0.337850 0.260775 -0.868046 -1.552155 0.383584 -0.106351 0.331689 0.135239 -0.395371 -0.428184 -0.124063 0.113381 1.125092 0.793289 -0.146094 0.918376 -1.252983 -1.238671 -0.420623 0.244648 0.316321 -0.699820 0.511568 -0.688330 0.038243 -0.265462 0.753373 0.145234 -0.516779 -0.907314 0.257946 0.649617 0.377769 -0.788594 1.170730 0.011852 -0.469487 -0.024578 -0.111884 0.255727 0.370470 -0.454757 -0.502453 -0.426932 0.524609 -0.767786 1.110659 -0.173489 0.511922 0.571383 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 1.420573 -0.275427 -0.895976 1.733492 -0.117551 -1.130154 0.485027 0.751183 -0.148407 -2.089251 -0.504761 1.402272 0.360865 -0.872025 -0.104405 0.781836 0.449990 0.712388 -2.983499 0.867711 0.340489 -0.062900 -1.590746 -0.823699 -0.215593 -0.880645 0.502881 1.232935 -0.223965 1.682471 -0.775559 0.426339 1.255106 -0.153113 1.408040 1.650572 0.132804 -0.028375 -0.018808 0.380623 2.504718 1.529974 -0.796054 0.297753 0.860261 2.080857 0.596713 0.967005 -1.074984 -0.557955 0.054089 1.044281 -0.958446 -0.467081 -1.935915 0.084903 1.482923 0.972812 -1.420072 1.419144 -1.193402 0.319755 1.059238 1.210388 2.549583 0.397282 1.291096 1.487261 2.341949 -0.960274 0.444473 0.098210 1.159549 -0.603806 1.516854 -0.188006 -1.677189 -2.011436 0.277449 -2.759916 -0.041901 0.526386 2.148606 -1.631021 0.364725 0.784062 1.073449 1.774336 -1.892732 -0.636484 -1.717619 -0.209828 -0.775291 3.854841 0.267707 0.834054 -0.062829 1.483891 0.374299 0.642516 -0.052636 -2.163626 -0.229139 -3.427737 -1.230698 -1.263969 -0.899515 -0.230272 -1.846210 -0.616584 1.570577 2.068320 -2.795724 0.342230 0.607791 -0.181630 1.505351 -0.920428 -0.755396 0.939347 -0.937078 0.390706 0.860850 -0.879898 0.059685 -0.004434 0.703091 0.690272 0.564081 0.585137 -2.847334 0.358145 1.132222 -0.626156 -0.320234 0.788600 0.156541 -1.532735 0.729325 -2.044126 1.817081 -2.216838 0.234637 -0.935128 -1.737572 -0.435070 0.513307 1.368784 0.522135 -0.322618 -0.468242 0.328944 -2.649506 -3.980534 0.835170 0.014906 -0.103325 -0.507698 -0.351413 -0.378444 -1.166955 -0.042757 1.483825 -1.320641 -0.653039 -0.412082 2.575033 0.544816 -0.855529 -0.253527 -0.246083 0.943971 1.548688 1.378295 -1.206883 -2.583649 -2.471933 -0.805415 1.576039 -0.452903 -0.346917 -0.501501 -0.952941 -1.764288 0.865820 -1.261216 1.079045 -1.014018 0.121168 -1.993871 0.286664 -0.374489 -0.156069 -0.440831 -1.419770 0.416503 0.504929 -0.762367 -0.258231 0.069548 0.820713 -1.332468 -1.283032 0.943990 0.018429 2.028911 1.224608 0.482486 -0.560295 -0.110962 -1.810986 1.381891 -1.319690 0.896679 0.557841 -1.721335 1.890783 -1.172316 -1.005875 -0.841205 1.150760 -0.070026 -0.311716 3.358514 2.274652 -1.829840 -0.293210 -0.314077 0.814586 0.721159 1.881136 -1.582196 -0.971280 0.656826 -0.230240 -0.233852 0.054776 0.657002 -0.430408 0.788795 -1.797437 -0.554968 1.454917 1.261104 -0.109227 0.273822 -0.567951 -1.180834 -0.617725 1.962881 0.625510 0.860796 -1.722046 -2.564050 0.730495 -2.224148 -0.043291 -0.194488 -0.295538 -0.851354 -0.030165 -0.193276 1.787312 0.783833 -1.835574 1.458806 -2.722384 -2.211080 -1.652047 -0.021651 0.306925 -0.792562 1.086041 -0.983367 0.369941 -0.505080 1.246455 -0.323385 -0.807617 -0.103779 0.652291 0.797544 0.479529 -1.800113 2.075250 -0.157563 -0.430182 -0.638577 -0.163557 -0.405250 0.899644 -1.270261 -0.832056 -0.714513 1.485697 -1.282405 1.500918 0.063287 1.154336 1.079214 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 1.892373 0.428481 -0.554247 2.252040 -0.234991 -2.219278 0.896350 1.941470 -0.815814 -2.646050 -0.777741 0.826429 0.288017 -1.418353 0.101227 0.381752 0.186725 1.283843 -5.355294 1.341949 0.747212 0.370687 -1.807651 -2.265464 -0.153273 -0.230277 -0.432309 2.093110 -0.302686 2.471250 -1.380017 0.044373 1.436433 0.472240 2.136987 1.992766 0.299549 0.011157 0.452849 0.374274 3.275343 2.655618 -1.918543 0.203019 1.409040 2.787912 0.988658 -0.326631 -3.418935 -0.482206 -0.829079 0.503948 -1.418860 -0.730593 -2.158790 0.026802 3.125304 2.569631 -1.675250 2.251051 -1.807528 0.400140 1.595405 1.143712 3.434141 0.633491 1.255192 1.923621 3.328431 -1.498460 0.702781 -0.546460 1.876470 -1.689259 0.590463 -0.133773 -1.941568 -4.980030 0.527817 -5.860699 -0.280208 1.198885 2.602817 -2.201621 1.689372 1.538537 1.327209 1.966019 -3.205083 -1.134212 -2.191719 -0.480925 -1.647216 5.881096 0.121295 0.834146 0.586365 2.399902 1.313422 1.082586 -0.378235 -2.505508 -0.412911 -5.303375 -1.081592 -0.841171 -1.830433 -0.609880 -1.827822 -1.434316 3.377613 2.783343 -3.833648 -0.075153 0.814809 -0.076407 0.083185 -2.346572 -1.255895 1.957313 -2.375522 0.344466 1.670060 -1.860641 0.026692 0.433650 0.161595 1.115534 1.083267 1.310860 -3.992746 0.471077 1.681134 -1.687681 -0.750772 0.737244 -0.694824 -1.563226 0.779983 -3.568712 2.861954 -2.858624 1.368867 -0.971144 -2.389616 -0.040541 -0.543066 1.725441 -1.113686 -0.031726 -0.255978 0.879082 -2.967684 -5.387456 2.094948 0.927909 0.393652 -1.528830 -0.505468 -0.804914 -1.612012 -0.755387 2.222120 -1.944822 -1.180747 -1.001700 4.865676 0.914208 -1.401780 -0.174790 0.430882 2.338300 1.886439 1.428866 -2.268159 -1.690495 -3.208444 -1.185328 2.318936 -0.400158 -1.194822 -0.499323 -0.683978 -2.695172 1.921729 -1.801781 2.299178 -1.228434 0.295872 -2.834025 0.172342 -0.516483 -0.032026 -0.551155 -1.465552 0.455277 0.613971 -1.049058 -0.988463 0.119061 2.245949 -1.468205 -2.031562 0.935106 0.845655 2.383997 1.389808 1.142333 -1.256789 0.155381 -2.016456 2.672006 -0.374240 1.201812 -0.151597 -2.048444 3.161623 -1.282167 -1.651134 -1.140669 1.675256 0.370562 0.542065 4.881710 2.983297 -2.448450 -0.629366 -1.215932 1.014317 1.235484 3.198820 -2.480012 -1.685849 1.086828 -0.601167 -0.551845 -0.506735 0.930185 -0.406398 1.177704 -2.336182 -0.778162 1.669752 1.555755 0.180633 1.329975 -0.816753 -1.347763 -1.535567 3.111756 0.664933 0.854912 -2.292258 -2.261447 1.157192 -2.609479 0.899509 -0.996599 0.002377 -1.775307 -0.416046 0.907616 2.418971 3.173754 -3.346382 1.995394 -3.500353 -2.825007 -2.396710 1.001300 0.650224 -1.795798 1.026377 -1.314986 0.703654 -0.078692 1.645871 0.570866 -1.114184 -1.453136 0.205175 1.088586 0.526021 -3.191035 3.047074 -0.376797 -0.951319 -0.655655 -0.269799 -0.316632 1.128300 -0.718135 -1.200907 -1.189973 2.229277 -1.766030 2.419951 0.564077 1.105259 1.870663 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 1.628307 0.265017 -0.574807 2.045985 -0.476249 -2.490738 1.155551 2.112270 -0.775914 -2.775894 -0.573263 -0.194204 0.545389 -1.643443 0.154269 0.526516 -0.161033 1.591152 -5.365122 1.445537 1.296549 0.733350 -1.769868 -2.242776 -0.286043 -0.758846 -1.171220 2.140509 -0.445757 2.696141 -1.188349 -0.266414 1.831247 0.055502 1.849415 2.674193 0.944530 0.412782 1.040130 1.476867 3.366135 2.967987 -2.450835 -0.402910 1.456431 3.017194 0.972052 -0.494546 -4.929513 -0.923614 -0.978126 0.152201 -1.413697 -1.033568 -1.872772 0.113861 3.949057 3.525045 -2.046140 2.687394 -2.206009 0.125244 1.733600 1.557294 3.302247 0.835277 1.154866 1.936660 3.783324 -1.448063 0.654589 -0.501832 1.280740 -2.435119 1.108116 0.097166 -2.112801 -6.060723 0.811156 -5.977590 -0.726749 1.807724 2.353092 -2.598668 1.932543 2.427685 1.728507 2.159352 -3.296242 -1.561735 -2.169682 -0.616456 -1.642924 6.950607 0.302837 0.795895 0.558623 3.022123 1.760926 1.090504 -0.133234 -2.616092 -1.240322 -5.487792 -1.314848 -1.249505 -1.923427 -0.320177 -2.185489 -2.158063 4.369078 2.448093 -4.388731 0.866326 1.356629 0.422707 0.723587 -3.054639 -1.512209 2.496390 -2.574602 -0.375186 1.672553 -2.081788 -0.173095 0.555811 0.852360 1.245886 0.491285 0.858137 -4.370613 0.801530 1.629817 -2.088371 -0.741767 0.956227 -0.608122 -2.273798 0.927574 -4.233489 3.049580 -3.263516 1.949122 -0.576729 -3.053485 -0.160461 -0.718735 1.422580 -1.771096 -0.733613 -1.172413 0.847616 -3.229701 -6.089315 2.026710 1.079640 0.805242 -1.628885 -0.799837 -1.199083 -1.493545 -0.353347 1.984293 -1.761527 -0.577388 -0.458962 5.793706 0.975487 -1.497573 -0.140918 0.098575 2.605437 2.375183 1.426615 -2.381175 -0.816134 -3.359645 -1.288142 2.448190 -0.125985 -1.152229 -0.844942 -1.006436 -3.563261 2.430169 -1.775885 2.601603 -1.454738 0.590102 -2.957409 0.242105 -0.562575 -0.154149 -0.665994 -1.552704 0.159990 0.161369 -1.911743 -0.787463 -0.543227 2.454727 -1.616137 -2.112338 1.207329 0.719982 2.521617 1.261038 1.333205 -0.595177 0.481815 -2.128013 2.681760 0.087802 0.967138 -0.175769 -2.386349 3.776830 -1.168255 -2.139090 -1.666392 1.712723 0.236503 2.419902 5.566490 3.086895 -2.219318 -0.549286 -0.437360 0.703517 1.650459 2.981506 -2.427724 -1.937523 1.243874 -1.160786 -0.457712 -0.276372 0.932350 -0.916198 1.934623 -2.264127 -0.476344 1.620808 2.073028 -0.041185 1.926931 -1.018557 -1.644936 -2.070048 2.930265 0.646119 0.721126 -2.216300 -1.491103 1.517913 -4.095727 0.838606 -1.740163 0.303109 -1.542986 -0.083286 1.887803 2.521775 4.521211 -3.667948 2.069458 -4.000551 -3.317795 -2.277682 1.087605 0.814700 -1.935521 0.677530 -1.208074 1.205226 0.056378 1.704390 1.054419 -1.583151 -1.545666 0.148415 1.067219 0.326509 -3.837332 3.387283 -0.878232 -0.765250 -0.716700 -0.348080 0.083031 1.398828 0.300368 -1.320984 -1.440669 2.543250 -1.744814 2.883956 0.035609 0.847818 2.612089 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = 4.317214 -4.269966 -4.869011 10.440837 -0.381619 1.122987 0.841589 -0.774395 0.425708 -13.547527 -4.901624 9.194564 2.195613 0.948405 -0.572634 4.228141 2.309565 1.924253 -12.480059 -0.149593 1.943951 -1.261586 -1.973677 -0.658994 -0.392486 -4.015481 8.939176 2.691385 0.651743 7.412951 -1.883622 6.013673 7.119747 -0.666255 2.694999 4.600343 -3.305372 -0.079290 -5.023267 -2.760167 10.457311 2.806785 0.143327 3.293413 -1.666083 8.305987 3.407074 8.428775 5.425096 -3.009184 4.753138 3.990451 -3.127337 -1.598387 -9.371460 0.583610 3.045979 1.740439 -2.473456 2.666392 -3.363087 2.106013 3.270216 2.332939 11.713402 2.449501 10.184240 8.164346 6.459925 -5.913949 2.321287 0.896051 0.972166 0.164311 8.474086 -5.836882 -7.257713 -0.948930 -1.427494 -8.297355 -0.061469 -0.290451 11.531374 -5.830650 -3.312543 -1.776157 3.238999 9.398001 -4.286325 1.700319 -8.719465 -0.289939 -0.735398 10.987784 2.322213 2.375270 -2.217938 2.570059 -1.188275 1.361585 3.019686 -7.833382 2.129078 -11.860676 -5.205418 -5.944476 2.166628 3.046313 -9.026742 1.574047 -1.881769 4.768927 -12.212414 -0.825247 1.593173 2.102042 12.250159 -0.249409 -2.907068 0.400939 1.127507 3.337181 3.887542 -3.917161 2.750647 -2.541812 2.203591 1.104414 2.795869 2.565663 -10.857235 -2.686637 1.877904 0.316655 1.890130 4.695270 5.421906 -2.172082 3.744569 -4.561620 6.470056 -10.017111 -2.414280 -3.765046 -6.237564 -4.234186 9.601441 6.367882 7.564135 -2.164161 -3.284280 0.088892 -11.598235 -13.759022 -0.035667 0.667659 -1.804354 3.124557 -1.595640 3.219289 -6.751536 3.344392 6.293061 -3.810125 -4.257786 -0.092780 1.982488 1.792149 -2.745358 -2.029535 -1.716086 -1.037828 2.684267 10.104611 -1.119389 -16.726973 -13.165926 -3.256029 6.856713 -4.370970 -0.289426 -3.904893 -3.573682 -6.219035 -0.517459 -5.952765 0.998328 0.271975 -4.569742 -9.707280 2.935441 -0.975248 -0.381868 1.922751 -7.466813 1.618810 4.048188 2.491580 1.131527 1.569140 0.045671 -7.123425 -5.214546 3.294696 -4.819251 8.401614 3.607986 -0.868903 -4.726264 -3.570944 -7.271675 3.411818 -5.495534 5.129934 0.759541 -4.812299 2.659431 -6.927236 1.363214 -4.332150 2.249365 0.341930 -13.409611 11.354337 6.936673 -5.112978 0.268464 -0.605833 4.171383 -0.435476 4.046047 -6.464164 -4.708562 0.872009 0.519677 0.104658 -0.263518 1.988576 -2.186283 -2.974007 -8.111493 -3.883330 6.897985 3.013391 -0.915233 -0.610679 2.975077 -4.466884 0.787174 7.801004 5.000960 1.572375 -6.014974 -18.481186 2.175270 -1.439000 -2.447307 0.978093 -4.692947 -2.427656 2.684810 -4.154366 6.667106 -1.318215 -4.705226 6.673455 -9.754485 -7.060378 -7.070466 -3.119425 1.230650 -0.264749 2.271874 -3.657374 0.939454 -1.271753 1.945070 -4.096782 -4.249457 4.050463 4.398331 7.313872 0.405339 -0.323030 7.563287 2.748372 -1.800514 -2.712626 -0.131554 -5.356869 3.227316 -10.555026 -1.265585 2.034366 4.058213 -5.500130 1.020901 -0.908069 2.604231 0.699567 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.864584 -0.927606 -0.509254 2.901891 0.268060 -0.313685 0.941624 0.978077 0.265583 -4.679242 -2.024307 2.091740 0.436997 -0.242266 0.100398 0.768600 0.925715 1.432439 -4.547440 0.179370 0.988301 0.431646 -0.545028 -0.918038 -0.083232 -1.142079 0.836496 1.317414 0.378434 2.950066 -0.963956 0.835874 2.534548 -0.061003 0.724510 2.403668 0.460218 0.066296 -0.634440 -0.694118 4.124363 1.307616 -0.352494 1.664456 0.328968 3.176610 0.510561 3.139818 0.454884 -1.271286 1.441041 -0.804823 -1.563866 -0.677168 -2.980916 0.857889 2.673785 1.921964 -1.437043 1.904599 -0.888932 0.628500 1.210793 -0.123561 3.123109 1.837719 1.992602 2.413559 3.383053 -2.384765 0.276755 0.538884 1.052418 0.064071 1.875410 -2.105312 -1.683019 -2.840879 -0.149440 -3.828772 -0.147750 -0.296171 4.517113 -2.549567 0.173217 1.299167 0.752595 2.620158 -1.606265 -0.132333 -2.959140 0.084484 -0.333969 4.553263 0.445405 0.679286 -0.451026 1.125053 0.387779 1.140200 0.719529 -2.379853 -1.230535 -5.217966 -1.897060 -1.763269 0.035765 0.502588 -3.004152 -0.415537 1.220549 1.718193 -4.547219 -0.329528 1.215483 1.114841 2.189574 0.074016 -1.629682 0.295724 -0.221280 0.456741 1.141808 -1.993496 0.339676 -0.984683 0.116058 0.456244 0.855784 0.354924 -3.616646 -0.932016 0.333859 -0.188782 0.165442 0.867575 0.885204 -1.474726 1.435262 -2.352170 2.429455 -3.686995 -0.512837 -0.990403 -2.633871 -1.222463 3.811232 1.428127 2.091478 -0.206568 -1.439183 -0.665998 -3.331755 -4.912322 0.875041 0.221860 0.885416 0.547277 -0.583402 0.279006 -2.060891 0.071352 1.242342 -1.408854 -0.908928 -0.157953 2.495010 -0.183128 -1.014451 -1.689355 0.193850 1.447477 0.574775 2.144087 -1.231794 -3.755525 -3.705717 -1.694161 2.602940 -1.183833 -0.010818 -0.915047 -0.771250 -2.482428 0.519625 -2.048768 0.872059 -0.205028 -2.008594 -3.647673 1.147341 -0.690227 -0.233066 0.999897 -2.461141 0.499468 0.910914 1.228640 0.148604 0.361614 0.581095 -3.264499 -2.672162 0.043973 -0.915705 2.989516 1.490143 0.387886 -1.501206 -1.002338 -2.423389 1.990638 -2.117942 1.244814 -0.091734 -1.421386 2.070845 -1.995879 -0.119721 -2.710595 1.177811 0.744782 -3.623558 4.323423 2.359311 -2.076313 -0.675867 -1.072645 0.947658 0.785620 2.641263 -2.322576 -1.919192 1.214226 -0.623509 -0.163734 -1.079591 1.063352 -0.543675 0.470534 -3.021836 -1.364429 2.030825 1.832433 -0.502934 0.862559 1.360769 -0.471964 -0.076991 3.344058 1.428774 0.134103 -2.226043 -5.723660 1.419317 0.339698 -0.023004 0.184093 -1.896419 -1.283881 1.088143 0.029871 2.575490 1.585653 -0.787871 2.626940 -3.236266 -2.847043 -1.403950 -0.413559 1.148411 -1.100781 0.760569 -1.420530 0.581138 -0.209443 0.739033 -0.187745 -1.611239 -0.682227 0.841853 2.648526 0.345586 -0.729695 3.236813 0.309096 -1.168249 -0.144452 -0.386653 -0.329846 0.904687 -2.135403 -0.434767 -0.113308 1.418982 -1.933581 1.832936 -0.289352 0.394787 1.082400 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = 3.750759 -2.609931 -3.540602 8.463751 0.187071 1.932924 0.813716 -0.566296 0.809523 -11.544288 -4.412941 8.210762 1.544696 1.698722 -0.730238 3.438533 2.659729 1.940248 -10.021842 -0.782200 1.669398 -0.769589 -0.396085 -0.459173 -0.075801 -3.284550 7.512838 1.950577 1.231108 6.464678 -1.764401 5.585542 6.005494 -0.016147 2.376337 4.053484 -2.330408 -0.655619 -5.127151 -3.792206 8.446392 1.999614 0.819448 3.588613 -1.935436 7.209203 3.335824 6.513251 5.611803 -2.743892 2.916798 2.648427 -3.112485 -1.442452 -7.595840 0.571802 1.286766 1.336187 -1.953538 2.154462 -1.199601 1.990124 2.491625 0.894299 8.393608 1.336877 7.280510 6.750013 4.958582 -5.656079 1.733509 0.981015 0.632671 1.188841 7.050983 -5.392113 -5.360738 0.343550 -1.359639 -7.136094 -0.175276 -0.932843 10.150561 -4.854062 -2.851584 -1.595776 1.826538 7.662368 -2.569782 1.803095 -7.275275 -0.139311 -0.049310 7.724528 1.918752 1.499752 -1.902396 1.636241 -1.283771 1.206198 2.650380 -6.719426 2.014069 -9.172530 -3.297971 -5.322079 2.394650 2.939683 -6.788107 1.652579 -3.211104 5.909879 -10.264007 -1.289135 1.231533 1.841288 8.217998 -0.315541 -1.562698 -0.218077 1.485265 3.114292 3.120180 -3.979901 2.341374 -0.736734 0.384739 0.544897 2.761307 2.247602 -8.438186 -3.322826 1.694128 0.962176 1.696405 3.969254 5.173110 -1.183458 3.160890 -3.827189 5.374093 -7.295735 -2.430447 -2.717318 -4.741269 -4.246749 8.623563 5.115978 6.854369 -1.261211 -1.598731 -0.050587 -8.726294 -10.940129 0.360934 0.669797 -1.264899 3.827952 -1.283428 3.302318 -6.175982 2.954766 4.831015 -2.930664 -3.953802 0.196838 0.320187 1.148752 -2.101224 -1.918230 -0.678473 -1.533125 1.698281 8.472740 -1.176824 -13.274265 -10.837009 -3.111654 5.984845 -4.290015 -0.095435 -2.993819 -2.940067 -3.354623 -0.863948 -5.302017 0.523520 0.557875 -4.265031 -8.292243 2.924653 -1.323128 -0.945177 2.936005 -6.206635 1.579955 3.792733 2.524876 0.699674 1.463554 -0.080763 -5.530866 -3.667257 2.324356 -4.920966 6.145796 3.421742 -1.016648 -4.903206 -3.570209 -5.236565 3.121026 -4.656295 4.722770 0.319112 -2.509018 1.608884 -6.032971 2.229947 -3.376252 2.216724 1.195340 -12.786382 8.043848 5.621046 -4.358536 0.033668 -0.776793 3.345457 -0.401294 3.304827 -5.252355 -4.445994 1.069641 0.361227 0.272528 -1.086608 1.341630 -1.208270 -2.964775 -6.664342 -2.830989 5.717833 2.059113 -0.841228 -0.561654 4.006628 -3.025389 1.049376 6.709471 4.313149 1.745422 -5.436465 -15.423719 2.184934 0.665431 -1.706993 1.393049 -4.200317 -1.706558 2.787507 -4.634884 5.371941 -1.989678 -3.241938 5.964045 -7.903638 -5.697212 -5.647210 -3.207062 1.523142 0.321396 1.776452 -2.909903 0.811581 -1.405204 1.233305 -3.611444 -3.566484 3.854510 4.221592 6.763933 0.632565 1.098173 6.425914 2.347414 -1.642838 -1.639643 -0.033014 -4.370005 1.530801 -10.084568 -1.001592 2.415297 3.151128 -4.772213 0.321395 -0.885034 1.727975 -0.195824 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 1.338222 -0.770456 -0.539218 2.292632 0.148061 0.194040 0.554880 0.469358 0.262603 -3.639537 -1.684967 1.497104 0.342695 0.154143 0.209338 0.773761 0.823112 0.849403 -3.513781 -0.026035 0.802034 0.082922 -0.082167 -0.300199 0.003207 -1.032810 0.811084 0.851341 0.322408 2.229981 -0.730703 1.223813 1.954669 0.024337 0.594933 1.643714 -0.158195 -0.166780 -0.716583 -0.665491 2.949726 0.752719 -0.072902 1.106722 -0.136469 2.420252 0.389690 2.430206 0.990676 -0.993271 1.317638 -0.657642 -1.123778 -0.293317 -2.270839 0.465737 1.497626 1.115785 -0.892928 1.173497 -0.675592 0.622154 0.830272 -0.243220 2.477956 1.109247 1.735351 1.885572 2.141667 -1.816721 0.379362 0.368143 0.465575 0.165009 1.369021 -1.698591 -1.058758 -1.823134 -0.160523 -2.699131 -0.140135 -0.375518 3.284665 -1.792090 -0.298646 0.577754 0.395434 2.220896 -1.034483 0.348465 -2.286071 0.069666 0.062202 2.729057 0.347052 0.365359 -0.436770 0.667787 -0.035051 0.679546 0.563621 -1.860979 -0.854084 -3.637234 -1.408890 -1.376325 0.417873 0.597043 -2.414210 0.141505 0.364245 1.411693 -3.377958 -0.319126 0.706288 0.908513 1.509499 0.343179 -1.126074 -0.171620 0.168953 0.850326 0.995339 -1.431326 0.582628 -1.035681 0.046842 0.375455 0.808915 0.291665 -2.393495 -0.923051 0.394683 0.042331 0.259184 0.942827 1.156190 -0.634348 1.122790 -1.563049 1.838156 -2.663679 -0.553554 -0.938865 -1.686257 -1.084021 3.247661 1.557960 1.735406 0.056896 -0.975528 -0.270963 -2.586270 -3.491327 0.265560 0.104924 0.542377 0.737125 -0.443399 0.603403 -1.584320 0.479675 0.828224 -1.060497 -0.926576 -0.119143 0.951196 0.073163 -0.767582 -1.190423 0.114406 0.626226 -0.003518 1.974548 -0.664509 -2.896813 -2.994438 -1.308228 1.987317 -1.111126 0.110612 -0.833419 -0.491121 -1.644330 0.217223 -1.599327 0.212965 0.071763 -1.653925 -2.741030 0.902835 -0.510212 -0.286604 0.905721 -1.903682 0.414344 1.007385 1.182624 0.296430 0.445073 0.139935 -2.187119 -1.814378 0.036985 -1.157066 2.151184 1.215060 -0.047522 -1.305310 -0.993984 -1.694529 1.530884 -1.574523 1.135880 -0.079381 -0.935245 1.116661 -1.684663 0.126353 -1.720373 0.828749 0.530595 -3.511378 2.818340 1.743166 -1.576285 -0.382863 -0.994241 0.946949 0.357864 1.749666 -1.497624 -1.220488 0.634846 -0.117101 -0.041391 -0.800746 0.731872 -0.419645 -0.232800 -2.175907 -0.954857 1.722545 1.154279 -0.328282 0.396699 1.295229 -0.166600 0.259651 2.303795 1.093099 0.018961 -1.583917 -4.655286 0.943359 0.958400 -0.192311 0.419224 -1.642108 -0.790364 0.743949 -0.539881 1.919513 0.807513 -0.397056 2.019611 -2.236377 -2.017023 -1.384366 -0.464542 0.621846 -0.506212 0.518747 -0.975615 0.358192 -0.144481 0.506482 -0.329283 -1.350076 -0.350464 0.866327 2.156214 0.262662 -0.109403 2.307673 0.500871 -0.805143 -0.319368 -0.144497 -0.687615 0.575425 -2.007952 -0.374028 0.280820 0.953597 -1.526531 0.849874 -0.259574 0.332098 0.412756 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp___GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 2.854858 -1.457439 -2.364671 5.886763 0.046432 1.313806 0.587554 -0.268260 0.337033 -7.991680 -3.283279 5.086205 1.005279 1.037151 -0.073962 2.325852 1.916555 1.123633 -7.905660 -0.422971 1.530251 -0.721756 -0.202577 0.004050 0.133154 -2.464854 4.239430 1.288566 0.648839 4.726565 -1.483051 4.294503 4.168648 0.217090 1.857272 2.660644 -2.413686 -0.513371 -2.825795 -2.399400 5.791473 1.486794 0.634846 2.152201 -1.399786 5.107957 1.319395 4.985172 4.154609 -2.022717 2.469761 1.394297 -2.028766 -0.047701 -5.078516 0.345521 0.867483 0.655133 -1.141660 1.519569 -1.692311 1.726019 1.728409 0.285067 6.133948 1.421539 4.787056 4.499812 3.580985 -3.640787 1.649552 0.287597 0.161883 0.398164 4.071785 -3.219438 -3.463900 -0.353825 -0.771539 -5.003280 -0.112419 -0.708687 6.850336 -3.422359 -1.879693 -1.107837 1.655790 5.609730 -2.132967 1.561550 -5.008097 0.131024 -0.364571 5.081787 1.260077 1.394518 -1.421327 0.845335 -1.037487 0.610773 1.098954 -4.465238 0.953721 -6.646616 -2.609482 -3.487641 1.797355 2.000221 -5.229693 1.743354 -1.709992 4.238309 -7.110956 -0.959311 0.464581 1.368716 4.473220 1.270073 -1.355564 -0.735679 0.929420 2.631852 2.240165 -2.639269 1.936339 -1.888746 -0.115769 0.633383 2.245285 1.321642 -5.282607 -2.006158 1.283889 0.080254 1.161471 3.217455 3.743793 -0.345406 2.353727 -2.732994 3.699275 -4.919135 -1.833778 -2.351386 -3.356009 -2.862383 6.012067 4.417450 4.286047 -0.425356 -1.051353 -0.109746 -6.428620 -7.139992 -0.253454 0.068963 -0.442117 2.432189 -0.879797 2.163030 -4.467998 2.133991 2.979674 -2.280657 -2.866341 -0.285074 0.608368 0.927758 -1.601945 -1.588737 -0.585897 -0.910208 0.130256 5.739172 -0.570374 -8.592873 -7.697420 -2.329053 4.283792 -2.972255 0.111608 -2.596918 -1.374533 -2.303657 -0.800300 -3.522335 -0.279929 0.573544 -2.825354 -5.783280 1.847132 -0.820701 -0.820984 1.704728 -4.369470 1.102253 3.502296 2.015374 0.812405 1.303438 -0.420245 -3.466353 -2.616019 1.474683 -3.424763 3.726794 2.728437 -0.999578 -3.220974 -2.707963 -3.760901 2.466772 -3.306416 3.296634 0.156075 -2.076294 1.106009 -4.139291 0.867010 -2.136059 1.297153 0.364827 -9.068121 5.295828 3.531977 -3.344926 -0.036251 -1.590352 2.915605 -0.283937 2.645768 -3.381744 -2.468481 0.369321 0.345523 0.168807 -0.512952 1.137772 -1.184987 -2.281106 -4.342933 -1.826085 4.531856 1.551343 -0.672122 -0.473044 2.818795 -1.629704 2.270774 4.294392 2.932261 0.599338 -3.653477 -11.147277 1.215378 1.193522 -1.036208 0.747835 -3.199571 -1.431750 1.623121 -3.207979 4.008193 -0.957608 -1.837303 4.161686 -4.964703 -4.006358 -4.187990 -1.839490 0.641230 -0.057229 0.913792 -2.006767 0.549591 -0.546394 1.345836 -1.967974 -2.990761 1.677747 2.840436 4.656273 0.289159 0.587836 4.539996 2.113189 -1.086738 -1.415522 -0.061355 -3.121838 0.833657 -6.491108 -0.696857 1.611793 1.993843 -3.515571 0.427715 -0.391367 1.397965 -0.026460 -PE-benchmarks/naive-algorithm.cpp__main = 0.891645 -0.026680 0.044812 1.328501 0.249546 -0.126862 0.542117 0.618907 -0.010539 -2.405864 -1.106846 0.837930 0.089106 -0.101815 0.087637 0.237233 0.625698 0.964849 -2.499347 0.029473 0.669463 0.393494 0.012559 -0.581608 0.060280 -0.501338 0.033753 0.634350 0.301295 1.609509 -0.656336 0.433312 1.287066 0.209308 0.507350 1.283921 0.264441 -0.068772 -0.146116 -0.557804 2.119955 0.607327 -0.021674 0.910491 0.225179 1.677899 0.196115 1.124393 0.210191 -0.703235 0.381236 -0.744273 -0.802964 -0.204297 -1.429928 0.464729 1.168786 1.167832 -0.760408 1.047504 -0.291804 0.396975 0.575380 -0.467399 1.358757 0.855255 0.538937 1.149250 1.726129 -1.231960 0.165399 0.126341 0.488072 0.007126 0.599113 -0.932182 -0.541635 -1.777746 -0.151919 -2.345690 -0.018149 -0.109877 2.404645 -1.310606 0.377681 0.833086 0.267079 1.248781 -0.672361 -0.221364 -1.531154 0.087627 -0.230560 1.981905 0.255442 0.237664 -0.144183 0.489790 0.229676 0.585684 0.162046 -1.146136 -0.716413 -2.795496 -0.791540 -0.871184 0.048161 0.196148 -1.350849 -0.218189 0.749032 1.344145 -2.367686 -0.290452 0.554999 0.578154 -0.056986 -0.087777 -0.777920 0.043383 -0.301722 0.288048 0.540920 -1.188485 0.105662 -0.408033 -0.420365 0.138489 0.618377 0.140758 -1.518250 -0.645560 0.146721 -0.204596 -0.027477 0.437476 0.402671 -0.493305 0.750272 -1.335802 1.256017 -1.535890 -0.096105 -0.452266 -1.303886 -0.697321 1.878793 0.725326 0.744189 0.052501 -0.506389 -0.358664 -1.488748 -2.230396 0.685347 0.085352 0.723335 0.366468 -0.301064 0.089446 -1.158682 -0.121222 0.489699 -0.722058 -0.504462 -0.158108 1.311281 -0.181899 -0.546869 -1.036986 0.305142 0.957788 -0.004597 0.810030 -0.845398 -1.177763 -1.761795 -0.989114 1.393547 -0.673139 0.016252 -0.455405 -0.187464 -0.864986 0.308288 -1.114021 0.371482 -0.135963 -0.970446 -1.904945 0.568574 -0.477850 -0.293593 0.660756 -1.170320 0.330848 0.630759 0.590482 -0.026338 0.135470 0.359596 -1.461315 -1.242244 -0.132637 -0.452048 0.992123 0.915961 0.238950 -1.109286 -0.577226 -0.996610 1.152363 -0.813767 0.673520 -0.149488 -0.600211 1.076955 -0.952662 0.075302 -1.238318 0.617712 0.505496 -2.217023 1.873420 1.049122 -1.159375 -0.427593 -0.870995 0.510290 0.447178 1.453057 -1.101916 -0.910552 0.687549 -0.517471 -0.055296 -0.773051 0.521363 -0.170789 0.313340 -1.543037 -0.635892 1.122133 0.902080 -0.271475 0.597660 0.946465 0.065667 0.253560 1.781382 0.701694 0.087869 -1.173808 -2.707135 0.763886 0.724306 0.382991 0.070547 -0.834147 -0.683659 0.524293 0.002448 1.320899 1.017900 -0.346708 1.400921 -1.428757 -1.428371 -0.607802 -0.102993 0.724927 -0.706709 0.273219 -0.713402 0.290593 -0.108428 0.461469 0.193574 -0.842767 -0.677420 0.442075 1.433664 0.311690 -0.296849 1.714991 0.116083 -0.707262 0.126462 -0.233622 0.068135 0.246480 -1.041530 -0.279854 -0.045594 0.664329 -1.051852 1.042534 -0.189774 0.156079 0.595500 -PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/sudoku.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 3.411192 -1.285038 -2.396434 6.638787 1.156053 1.147191 0.976794 0.013493 1.681390 -8.510498 -4.575470 7.047304 0.954174 0.565868 -0.469294 1.688658 2.626295 2.628037 -7.379042 -0.456906 0.967426 -0.212872 -0.963566 -0.798538 -0.217741 -2.126299 4.732854 1.941850 1.312407 5.396432 -1.501544 3.508084 4.594405 0.373559 1.794074 3.841257 -0.929968 -0.671802 -3.466081 -3.750991 7.056751 1.904348 1.094834 4.448812 -0.650815 6.002139 2.005493 5.803731 4.925670 -2.040271 2.115739 1.576052 -2.639623 -1.338655 -6.261107 1.352225 1.787494 0.193794 -2.148539 2.148673 0.274374 1.551181 2.096679 -0.748661 5.633703 1.884324 4.038857 4.857008 5.050105 -4.645441 0.913191 0.984568 2.156680 1.976855 4.868919 -3.782422 -4.349557 1.307039 -1.399435 -5.663650 0.430055 -1.728630 8.324411 -4.371748 -1.365826 -0.537984 0.978557 5.501172 -1.888871 0.347828 -5.717174 0.175828 -0.548854 5.561656 1.755660 1.429642 -1.654823 0.714333 -1.206826 1.345840 1.202258 -5.522757 0.779833 -9.039896 -2.846710 -4.343496 1.196187 1.504314 -5.222976 0.827140 -3.013727 5.597482 -8.124773 -1.904883 1.319684 0.785244 3.614131 -0.168476 -1.433460 -0.285470 1.274624 2.064831 2.015026 -3.166291 0.947538 -0.661362 -0.812222 0.074935 1.996778 1.654259 -4.879594 -2.759643 0.948857 1.472639 1.158942 2.310572 3.190735 -1.647427 2.524743 -2.860131 4.121651 -5.557232 -2.580195 -2.104183 -3.696169 -3.526177 6.437759 3.041691 6.826325 -0.561677 -0.498579 -1.067080 -6.491424 -8.879284 1.400721 -0.415401 -0.199974 2.611338 -0.763860 2.060055 -5.049751 1.018575 3.639799 -2.515348 -3.032322 0.154874 2.012968 -0.174049 -1.462315 -2.490036 -0.375152 -0.427142 1.120561 5.404328 -1.629232 -10.045870 -7.295122 -2.574585 4.952251 -3.530165 0.265206 -2.026671 -2.079608 -2.293771 -1.173735 -4.267856 -0.146471 -0.017342 -3.596966 -6.760074 1.951104 -1.309582 -0.279806 2.800238 -5.351781 1.839649 4.260502 3.030367 0.189619 1.695231 -0.210072 -4.592181 -2.819886 0.790337 -3.227218 5.344429 3.575808 -0.279432 -4.240856 -2.828106 -4.366061 2.999584 -5.073127 3.584036 0.477504 -1.640757 1.911555 -4.631834 0.842398 -3.198820 1.972604 1.252571 -10.792179 5.338687 4.428586 -4.015563 -0.316791 -1.624030 2.330259 0.128425 3.972962 -4.774520 -3.763236 1.583058 -0.280782 0.041582 -2.204531 1.236606 -0.496695 -1.308645 -5.534026 -2.298054 4.518113 2.076049 -0.902957 -0.331379 3.293267 -1.250395 2.293416 5.625244 3.313632 1.327639 -4.974574 -12.477522 2.002114 1.511009 -0.603792 1.756730 -3.544004 -1.523490 2.152071 -3.993740 4.571138 -1.803418 -1.505176 5.178576 -5.766738 -4.728061 -3.574570 -2.311116 2.151319 -0.331207 2.468133 -2.741373 0.584295 -1.656676 1.131002 -2.623142 -2.804677 1.821776 3.487385 5.402841 0.387668 1.012835 5.478127 1.460375 -2.058758 -0.387490 -0.892930 -2.694463 0.440213 -8.163268 -0.673610 1.464069 2.295674 -3.962296 1.503894 -0.942782 1.724833 0.144040 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = 2.114878 -1.484735 -1.291570 3.750197 0.613014 0.403234 0.541392 0.084198 0.686791 -4.710302 -1.993631 4.681709 0.229475 0.068928 -0.449532 0.928301 1.751476 0.875852 -5.104316 0.042027 0.193933 -0.489474 -0.956292 -0.505237 -0.045518 -1.524525 3.750520 1.802196 0.394277 2.757017 -0.985958 2.011560 2.448921 0.414675 1.763409 2.191398 -0.874446 -0.623182 -2.137255 -1.892142 4.269490 1.322162 0.326815 2.225816 0.216168 3.439106 1.893986 3.058789 3.919521 -0.886991 1.069774 1.641657 -1.718013 -0.967661 -4.042232 0.139221 0.387695 -0.095801 -1.433434 1.293888 -0.439664 0.786869 1.128921 0.343914 4.090057 0.157470 3.052380 2.657480 2.721723 -2.509505 0.379394 0.752127 1.786485 1.469700 2.943291 -2.166621 -2.883773 -0.135754 -0.562873 -3.406465 0.089967 -0.816756 4.535031 -1.980738 -1.150333 -0.648218 0.563639 3.135520 -1.375520 0.138181 -3.475047 0.090526 0.226864 3.627272 0.855127 0.914980 -0.417892 0.607924 -0.524946 1.098728 0.897172 -3.499401 1.178235 -5.438216 -1.262828 -2.564178 0.514114 0.272675 -2.823675 0.827961 -1.341711 3.398058 -4.293490 -1.095201 0.640326 -0.086741 2.693888 -0.672839 -0.364600 -0.241830 0.544823 1.686409 1.495983 -1.979859 0.567036 -0.053860 0.296934 0.284308 1.431932 1.080552 -3.379483 -1.394070 1.196808 1.075829 0.407187 1.154815 1.607750 -0.792111 1.296726 -1.742230 2.662385 -3.125168 -0.979214 -1.553818 -1.528803 -1.809528 4.062145 2.388550 3.671890 -0.071814 0.045647 0.097760 -3.849375 -5.741182 0.885752 -0.188843 -0.599754 1.037598 -0.404452 1.109327 -2.694048 0.508123 2.273022 -1.550218 -1.745421 -0.243215 -0.083433 0.473529 -0.853983 -0.869830 0.000000 -0.145425 1.167118 3.195402 -1.137873 -7.531186 -4.102959 -1.560189 2.628836 -1.912727 -0.327414 -0.842551 -1.504654 -1.036380 -0.230007 -2.340041 0.305971 -0.469490 -1.992032 -3.700395 0.971010 -0.888472 0.371538 1.116613 -2.876279 0.898060 1.830839 1.536370 0.090091 1.025955 -0.048566 -2.481834 -1.530098 0.739201 -1.595562 3.298702 1.660234 -0.201276 -2.492727 -1.405994 -2.640018 1.671845 -2.910600 2.064076 0.561953 -2.045406 1.191004 -2.519742 0.805707 -1.149102 1.402055 0.647168 -6.295946 3.637303 3.260045 -2.674061 -0.560832 -0.730406 1.209373 0.132053 2.358980 -2.762434 -1.920993 0.744514 0.221841 -0.007681 -0.589374 0.778556 0.147159 -0.783479 -3.519649 -1.809914 2.611309 1.135133 -0.293931 -0.525864 1.285731 -0.820246 0.519121 3.496297 1.464096 1.529250 -2.952138 -7.853995 1.023025 1.096234 -0.558758 1.480236 -2.109589 -1.254796 0.779598 -2.754120 2.673081 -1.276719 -1.548012 2.754351 -3.327676 -2.680324 -2.693916 -1.682155 0.793410 -0.129481 1.916438 -1.619430 0.063684 -1.413603 0.857414 -1.828138 -1.041148 1.502951 2.004675 2.288914 0.964271 0.093674 2.943850 0.710903 -1.133705 -0.732512 -0.268402 -1.881909 1.039702 -4.923024 -0.644464 0.351625 1.547074 -1.989942 0.620169 0.015860 1.791783 -0.135708 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 2.638546 -0.926513 -2.809870 6.369936 0.012407 1.338581 0.778860 -0.608803 0.483321 -7.841529 -3.741348 5.136795 1.488109 1.139798 -0.077625 2.036841 1.215921 1.204149 -6.680371 -0.508259 1.535731 -0.420070 -0.838997 0.279229 -0.410973 -2.465709 3.966334 2.163594 0.817901 5.109281 -1.086965 3.850039 4.591874 -0.203571 0.897163 3.187503 -0.656919 -0.104448 -3.518234 -2.076289 5.848915 1.365184 0.217298 2.375876 -1.298937 5.590520 1.822550 5.564909 2.580370 -2.511521 2.423476 1.663087 -1.864184 -1.226558 -4.602813 0.723575 1.961087 1.182992 -1.940475 1.755615 -1.306274 1.250151 2.003652 0.963007 5.379453 2.064759 4.848014 4.196779 4.071268 -4.476721 1.053358 1.012435 0.161369 0.423308 4.309523 -2.742101 -3.952154 0.423282 -0.356940 -4.963793 -1.367057 -0.346732 6.797920 -4.000404 -2.116614 -0.252583 1.353414 5.517329 -2.696782 1.613375 -5.070453 -0.318517 -0.314379 5.822869 1.398099 0.532305 -1.428163 1.271590 -0.512713 1.039209 1.203020 -4.870422 -0.129048 -6.367814 -3.448056 -3.750644 1.416390 2.139592 -5.727793 0.442118 -1.276984 4.147057 -7.447065 -0.850459 1.691461 1.929112 5.600834 1.560377 -1.891593 0.254438 1.557812 1.651542 3.245216 -1.992471 2.168342 -0.878705 0.524752 0.878876 0.938356 1.568350 -5.894258 -2.218368 1.525037 -0.143272 1.013055 2.465524 3.489390 -1.098561 2.686812 -2.745196 4.182931 -5.961779 -1.834603 -1.513650 -4.034079 -2.909297 4.763835 4.422160 4.936579 -1.030645 -2.033265 -0.210672 -6.356096 -7.964222 -0.463286 0.649659 -0.451809 2.095166 -1.042489 2.593893 -4.335478 2.307598 3.654395 -1.866751 -2.851258 0.637597 2.115913 0.518927 -1.540049 -1.336849 -0.710158 -1.781811 0.781225 6.471126 -0.668122 -8.910216 -7.799160 -1.972437 4.620032 -2.857898 -0.126745 -2.506897 -2.341792 -3.577521 -0.532406 -3.748968 -0.323989 0.418565 -3.262428 -6.087593 2.346599 -0.900885 -1.413442 2.113585 -4.856562 0.758682 3.708396 1.425869 1.278841 0.937494 -0.239205 -3.832654 -2.578464 1.236454 -3.628898 5.199173 3.108060 -0.672576 -2.858141 -2.639566 -4.279506 2.694634 -3.646232 3.052820 0.203069 -1.638783 1.706138 -4.547558 0.188902 -2.371715 1.414931 1.131945 -7.751169 5.817025 4.522336 -2.996608 0.012820 -0.316159 2.142931 0.419832 2.776923 -4.421978 -3.410150 0.350524 0.417716 0.203754 -0.484763 1.101375 -1.713838 -2.040783 -4.176174 -1.767141 4.027947 2.129276 -0.616795 -0.412679 2.758783 -1.908951 1.750550 4.246136 2.706832 0.427420 -3.193630 -10.391673 2.153114 -1.049988 -1.837184 0.755857 -2.954171 -0.963189 1.677512 -3.302294 4.032326 -1.458123 -2.421237 4.676658 -5.804861 -4.484082 -4.384069 -1.957922 0.622179 0.276753 1.754042 -1.834084 1.279854 -0.531922 0.360643 -2.571452 -3.021638 1.857746 2.559879 4.669153 -0.469014 0.452263 5.128203 1.378845 -1.301176 -1.146119 -0.285696 -2.874541 0.650446 -6.655945 -0.782645 1.665829 2.478166 -3.473661 0.264859 -1.025161 0.623771 0.322617 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = 1.375029 -1.227146 -0.459869 2.885133 0.507986 0.530771 0.379358 -0.023096 0.662825 -3.727655 -1.459162 2.709610 0.166534 0.407955 -0.159240 0.672389 1.329146 0.638636 -3.929757 -0.112250 0.372144 -0.172106 -0.110772 -0.319106 0.083803 -1.212882 2.890383 1.256638 0.506100 2.220209 -0.904023 1.308384 1.956661 0.197620 1.212291 1.661498 -0.247917 -0.305549 -1.906898 -1.266736 3.303511 0.862493 0.074108 1.611877 -0.005146 2.683103 1.556225 1.978948 2.994512 -0.897217 0.716374 0.846993 -1.151603 -0.851964 -2.949755 0.327047 0.755243 0.468821 -1.202850 0.935577 -0.121298 0.620152 0.810472 0.213437 2.701307 0.121882 2.274902 1.991872 2.044130 -2.132673 0.201052 0.565803 1.176115 1.108208 2.176139 -1.843136 -2.080342 -0.874940 -0.445365 -2.430949 -0.033424 -0.545716 2.457945 -1.653841 -0.524216 -0.124417 -0.145060 2.319367 -0.901021 0.059175 -2.682352 0.047922 0.272320 2.692093 0.638894 0.338995 0.062262 0.622095 -0.263640 0.937833 1.144871 -2.610953 0.718174 -3.930082 -1.144190 -1.959308 0.725102 0.459281 -2.003424 0.619919 -0.840906 1.949823 -3.177021 -0.631926 0.572936 0.447750 1.791900 -1.355716 0.135495 -0.195889 0.449834 1.146957 1.223993 -1.741774 0.542818 -0.078948 0.255191 0.349807 1.104758 0.626571 -1.568086 -1.231122 0.612892 1.014955 0.259379 0.803489 1.151593 -0.751034 1.171168 -1.363792 2.127334 -2.202005 -0.636742 -1.029347 -0.709674 -1.448384 2.916283 1.022475 2.420344 -0.090141 -0.544901 0.038578 -2.607274 -3.987308 0.586320 0.240572 -0.303139 1.212986 -0.453727 1.109356 -2.000136 0.227058 1.246115 -1.130572 -1.338086 0.019132 -0.812827 0.207053 -0.618879 -0.850097 0.217937 0.259683 0.650232 2.506526 -0.827774 -4.823881 -2.967496 -1.327803 2.086876 -1.527292 -0.092537 -0.606824 -1.068349 -1.122530 0.077334 -1.964145 0.183374 -0.268209 -1.650460 -2.878368 0.873753 -0.824729 0.549183 1.202938 -2.329212 0.644771 0.615829 1.132588 0.183732 0.620529 0.117545 -2.290376 -1.373608 0.345492 -1.221583 2.526672 0.440766 -0.260548 -1.682145 -1.243363 -1.544467 1.260309 -1.907099 1.498569 0.260101 -1.387523 0.816091 -1.557549 0.600731 -1.156127 1.021715 0.820978 -3.663351 2.932666 2.375584 -1.864829 -0.407115 -0.410537 0.899332 0.089180 1.768210 -2.125409 -1.621576 0.582605 0.133748 0.052551 -0.704109 0.656424 0.042137 -0.684907 -2.625914 -1.392308 1.737714 0.959363 -0.193065 -0.147666 1.475815 -0.508172 0.150617 2.726741 1.161489 1.190217 -2.124566 -5.246160 0.965108 1.080720 -0.080169 0.989167 -1.702503 -0.840195 0.778471 -1.066745 2.030745 0.010083 -0.792990 2.257150 -2.445966 -2.037071 -1.881045 -1.455992 0.627148 -0.150324 1.123855 -1.298615 0.160103 -1.002180 0.436815 -1.364836 -0.461537 1.134104 1.410612 1.811427 0.615384 0.288463 2.326370 0.621437 -1.072981 -0.396156 -0.093873 -1.438244 0.734963 -2.826469 -0.424283 0.439743 1.081086 -1.518896 0.282983 -0.307976 0.977890 -0.232150 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = 1.375029 -1.227148 -0.459869 2.885133 0.507986 0.530771 0.379359 -0.023096 0.662825 -3.727656 -1.459162 2.709610 0.166534 0.407955 -0.159240 0.672389 1.329146 0.638637 -3.929758 -0.112250 0.372143 -0.172106 -0.110772 -0.319106 0.083803 -1.212882 2.890385 1.256638 0.506100 2.220209 -0.904023 1.308384 1.956662 0.197620 1.212291 1.661498 -0.247916 -0.305550 -1.906898 -1.266736 3.303512 0.862493 0.074108 1.611878 -0.005146 2.683103 1.556225 1.978949 2.994515 -0.897216 0.716376 0.846991 -1.151604 -0.851965 -2.949757 0.327047 0.755243 0.468821 -1.202850 0.935578 -0.121298 0.620152 0.810472 0.213437 2.701308 0.121883 2.274904 1.991872 2.044130 -2.132673 0.201052 0.565803 1.176115 1.108208 2.176139 -1.843137 -2.080342 -0.874943 -0.445365 -2.430949 -0.033424 -0.545716 2.457944 -1.653840 -0.524216 -0.124417 -0.145060 2.319367 -0.901021 0.059175 -2.682353 0.047922 0.272321 2.692093 0.638894 0.338995 0.062262 0.622094 -0.263640 0.937833 1.144872 -2.610953 0.718174 -3.930084 -1.144190 -1.959308 0.725102 0.459281 -2.003424 0.619919 -0.840906 1.949821 -3.177021 -0.631926 0.572936 0.447750 1.791901 -1.355716 0.135495 -0.195889 0.449834 1.146957 1.223993 -1.741775 0.542819 -0.078949 0.255192 0.349807 1.104758 0.626571 -1.568087 -1.231122 0.612892 1.014956 0.259379 0.803489 1.151592 -0.751034 1.171168 -1.363792 2.127334 -2.202005 -0.636742 -1.029347 -0.709674 -1.448384 2.916286 1.022475 2.420344 -0.090141 -0.544902 0.038578 -2.607273 -3.987309 0.586320 0.240572 -0.303139 1.212986 -0.453727 1.109356 -2.000136 0.227058 1.246115 -1.130572 -1.338086 0.019132 -0.812830 0.207053 -0.618879 -0.850097 0.217937 0.259685 0.650232 2.506526 -0.827774 -4.823883 -2.967496 -1.327804 2.086876 -1.527292 -0.092538 -0.606824 -1.068349 -1.122531 0.077334 -1.964145 0.183374 -0.268208 -1.650461 -2.878368 0.873753 -0.824729 0.549184 1.202938 -2.329212 0.644771 0.615827 1.132589 0.183732 0.620529 0.117545 -2.290377 -1.373609 0.345492 -1.221583 2.526673 0.440765 -0.260547 -1.682145 -1.243363 -1.544467 1.260309 -1.907100 1.498569 0.260101 -1.387524 0.816091 -1.557549 0.600731 -1.156127 1.021715 0.820978 -3.663352 2.932667 2.375584 -1.864829 -0.407116 -0.410537 0.899332 0.089180 1.768210 -2.125409 -1.621576 0.582605 0.133748 0.052551 -0.704109 0.656424 0.042137 -0.684907 -2.625916 -1.392309 1.737714 0.959363 -0.193065 -0.147666 1.475815 -0.508172 0.150615 2.726743 1.161489 1.190217 -2.124566 -5.246162 0.965108 1.080723 -0.080169 0.989167 -1.702504 -0.840195 0.778471 -1.066745 2.030746 0.010085 -0.792990 2.257150 -2.445966 -2.037072 -1.881045 -1.455992 0.627148 -0.150324 1.123856 -1.298615 0.160103 -1.002180 0.436815 -1.364836 -0.461537 1.134104 1.410612 1.811427 0.615384 0.288463 2.326370 0.621437 -1.072981 -0.396156 -0.093874 -1.438244 0.734964 -2.826469 -0.424283 0.439743 1.081087 -1.518896 0.282983 -0.307976 0.977890 -0.232150 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = 2.138726 -1.806336 -0.944017 4.117961 0.654450 0.936903 0.551895 0.148595 0.856219 -5.798060 -2.152417 4.176240 0.325317 0.771950 -0.377952 1.276391 1.846295 1.009805 -5.436852 -0.163111 0.620928 -0.203351 0.035996 -0.480541 0.154444 -1.688908 4.281261 1.373008 0.847171 3.235735 -1.175607 2.207032 2.963921 0.377444 1.771583 2.379091 -0.537974 -0.637092 -2.837325 -2.285674 4.641097 1.419355 0.307955 2.280446 -0.422295 3.820847 2.408743 2.990255 3.991073 -1.363798 0.835236 0.278885 -1.897153 -1.023360 -4.183805 0.404943 0.223996 0.668455 -1.419959 1.240470 -0.382736 0.902426 1.149229 0.110795 3.951738 -0.068819 3.339947 3.061035 2.703179 -3.108907 0.407687 0.946198 1.287523 1.637293 3.270380 -2.873693 -2.878022 -0.946300 -0.657765 -3.441308 -0.193297 -0.802061 4.522845 -2.426964 -0.803274 -0.407634 -0.033933 3.437915 -1.219855 0.317071 -3.979754 0.041647 0.531683 3.248126 0.890743 0.498722 -0.216737 0.687595 -0.513644 1.102603 1.663410 -3.671807 1.084911 -5.139024 -1.014343 -2.842872 1.150100 0.982745 -2.752269 0.888611 -1.730351 3.588981 -4.679976 -0.868610 0.790792 0.557042 3.277967 -1.069539 0.308306 -0.224231 0.821116 1.689514 1.769659 -2.786612 0.816496 0.108564 0.356850 0.299023 1.610165 1.091540 -3.070203 -1.943931 1.080549 1.361233 0.546765 1.485708 2.013532 -0.979180 1.640311 -1.914719 2.948418 -2.950225 -1.049455 -1.291910 -1.610912 -2.235036 5.708128 2.039484 3.656834 -0.149430 -0.551902 -0.011805 -3.682581 -5.618866 0.785721 0.300104 -0.499338 1.974941 -0.492791 1.699572 -3.040605 0.778200 1.730414 -1.472719 -1.958678 0.251863 -1.617562 0.352318 -0.852069 -1.245661 0.181399 0.170518 0.968661 3.778551 -1.118392 -7.390673 -4.499084 -1.865242 3.040851 -2.270651 -0.104311 -1.051044 -1.556033 -1.093873 -0.283769 -2.862395 0.575724 -0.120567 -2.601023 -4.247679 1.392379 -1.127001 0.401904 1.845873 -2.941489 0.886644 1.090385 1.770086 0.096124 0.938011 0.025320 -3.233748 -1.921556 0.726491 -2.111049 3.744277 0.819971 -0.556502 -2.749724 -1.826466 -2.243337 1.941508 -2.737322 2.281257 0.089614 -1.659378 1.039675 -2.464865 1.417326 -1.808225 1.541838 1.153963 -6.527766 3.806913 3.419822 -2.523120 -0.400417 -0.544890 1.306673 0.188487 2.257121 -2.736904 -2.414575 0.803830 0.098137 0.126536 -0.982306 0.697851 -0.128284 -1.237524 -3.728783 -1.923834 2.626223 1.040834 -0.333774 -0.432217 2.291539 -0.717755 0.313794 4.062217 1.935501 1.562616 -3.364717 -8.169007 1.396286 2.641312 -0.252603 1.260055 -2.535280 -1.033937 1.252362 -2.461791 2.764678 -0.009861 -1.363490 3.192790 -3.620675 -2.865005 -2.711151 -1.902874 0.904317 0.027202 1.479571 -1.691795 0.343235 -1.331161 0.531086 -1.982304 -0.955514 1.907101 2.194491 2.955557 0.998802 0.727342 3.285976 0.995114 -1.240657 -0.536343 0.074428 -2.114833 0.854612 -4.834378 -0.634425 0.923240 1.524556 -2.233794 0.239362 -0.270619 1.146692 -0.367526 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = 1.277533 -0.894678 -0.565402 2.479420 0.259261 0.277996 0.398879 0.287667 0.195226 -3.846808 -1.784107 2.399302 0.141163 0.045535 -0.020363 0.630998 1.091520 0.880193 -4.331683 -0.023010 0.635515 -0.000962 -0.065004 -0.516598 0.146197 -0.931827 1.839155 0.996446 0.279797 2.045046 -0.805492 1.455241 1.839441 0.444260 1.067904 1.423939 -1.063123 -0.448404 -0.880798 -1.191108 3.020957 0.922965 0.213690 1.358725 0.087167 2.344546 1.070874 1.601718 2.227290 -0.719010 0.641355 0.110140 -1.183322 -0.367439 -2.614115 0.104154 0.626594 0.493560 -0.759881 0.966434 -0.468761 0.622891 0.749215 -0.408296 2.926802 0.302808 2.182938 1.854482 1.827783 -1.542926 0.517626 0.097132 0.863424 0.506140 1.464026 -1.734606 -1.514554 -1.323460 -0.530749 -3.334437 0.160770 -0.384092 3.282328 -1.415226 -0.418407 -0.272241 0.333595 2.298254 -0.838503 -0.065414 -2.387594 0.138831 -0.092277 2.285437 0.540360 0.480442 -0.297187 0.499097 -0.219754 0.546025 0.565842 -2.053542 0.386949 -4.253985 -0.805086 -1.534125 0.527153 0.323352 -2.015665 0.599259 -0.562334 2.148042 -3.193859 -0.755220 0.435747 0.257112 0.916643 -0.716399 -0.618885 -0.289244 -0.005465 1.346941 0.981763 -1.631645 0.450559 -0.572754 -0.106377 0.198112 1.106805 0.653076 -2.075922 -1.167488 0.587414 0.597687 0.234210 1.066603 1.198791 -0.066255 0.955707 -1.479707 1.855093 -2.221020 -0.309683 -1.047780 -1.130357 -1.208545 3.194793 1.806979 1.669114 0.006406 -0.092751 0.052248 -2.622395 -3.633781 0.673290 -0.045212 0.105673 0.650630 -0.302690 0.652224 -1.849874 0.333958 1.272065 -1.031350 -1.084451 -0.368477 0.085823 0.324718 -0.749324 -0.798897 0.041197 0.611095 0.186941 1.963394 -0.807944 -3.830670 -2.931898 -1.162624 1.893006 -1.312248 -0.146374 -0.858450 -0.526290 -0.877701 0.047929 -1.652088 0.117321 -0.068509 -1.625514 -2.683646 0.511723 -0.535660 0.072612 0.740166 -1.842539 0.532698 1.301155 1.427307 0.102843 0.587982 0.093707 -1.869229 -1.443641 0.275203 -1.173924 1.886750 1.147239 -0.193197 -2.180180 -0.865241 -1.626213 1.407008 -1.320236 1.368706 -0.092817 -1.342560 0.853652 -1.554464 0.759021 -0.968565 0.723216 0.304907 -4.991433 2.690624 1.915685 -1.765088 -0.320764 -1.023711 1.025500 0.033668 1.520208 -1.695779 -1.157495 0.358769 -0.236813 0.031564 -0.754353 0.636979 -0.090600 -0.572524 -2.422522 -1.194542 2.013487 0.717318 -0.244373 0.143415 1.132212 -0.186567 0.460788 2.571186 1.026266 0.544163 -1.891754 -5.396631 0.607845 1.975185 0.056111 0.699764 -1.396271 -0.998710 0.424316 -1.385887 1.855125 0.313138 -1.025539 1.855630 -1.945237 -1.777241 -1.790884 -0.712802 0.617766 -0.296077 0.827056 -0.961304 0.071627 -0.524605 0.686383 -0.586800 -1.185467 0.282315 1.217397 2.006419 0.653767 -0.026465 2.073137 0.520931 -0.855134 -0.393656 -0.248605 -1.101894 0.718312 -2.828531 -0.488752 0.305631 0.915722 -1.488217 0.592334 -0.097467 1.076356 0.047021 -PE-benchmarks/sudoku.cpp__main = 1.448222 -0.187391 -0.060176 2.296994 0.433035 0.164362 0.724645 0.829008 0.355235 -3.891775 -2.147168 2.258054 0.084262 -0.027160 0.071895 0.378527 1.167475 1.433759 -4.590326 -0.064758 0.952097 0.429214 0.245860 -0.904581 0.174380 -0.868321 0.967928 1.245624 0.552663 2.572279 -0.976077 1.099154 2.076786 0.627889 0.999591 1.996593 -0.451063 -0.529584 -0.700813 -1.473775 3.367837 1.015493 0.097388 1.789541 0.203680 2.820686 0.748788 1.203436 1.689874 -0.989061 0.521502 -0.369731 -1.497363 -0.622082 -2.573989 0.432957 1.130610 0.936640 -1.087865 1.367220 0.068196 0.622277 0.871930 -0.933628 2.445757 0.790170 1.337624 1.929202 2.392044 -2.048212 0.334876 0.168011 0.933059 0.547544 1.046366 -1.593892 -1.162763 -1.811517 -0.449537 -3.994012 -0.160384 -0.567171 3.306699 -1.914176 0.254488 0.485575 0.081272 2.265193 -0.769393 -0.364399 -2.589073 0.060237 0.025808 2.394793 0.474891 0.311974 -0.118211 0.542305 -0.026062 0.888902 0.504726 -2.231755 -0.507526 -4.460380 -0.869870 -1.694714 0.402797 0.407404 -2.085617 0.168383 0.049817 2.488264 -3.684073 -0.930510 0.806867 0.602089 -0.452197 -0.836670 -0.774118 -0.133515 -0.133359 1.041384 0.954941 -1.957952 0.257181 -0.297675 -0.694160 0.157946 1.100979 0.578663 -2.025989 -1.529798 0.662292 0.371430 0.174683 0.947348 0.952763 -0.233939 1.060167 -1.932559 2.186213 -2.300348 -0.260152 -0.909129 -1.046690 -1.439063 2.581559 1.403246 1.524710 0.217519 -0.176609 -0.155076 -2.348466 -3.627476 1.155915 0.007835 0.758312 0.728704 -0.435855 0.605007 -2.008240 0.002282 0.804063 -1.163505 -1.141357 -0.311283 0.942542 0.013932 -0.807725 -1.154871 0.380898 0.933435 -0.021682 1.692159 -1.246035 -2.571863 -2.870625 -1.578445 2.323038 -1.445161 -0.183438 -0.816590 -0.458152 -0.973558 0.160076 -1.957532 0.280775 -0.153046 -1.673234 -3.109204 0.836266 -0.776144 -0.047945 1.267573 -2.083509 0.621683 1.303296 1.222681 -0.054363 0.526091 0.273585 -1.935237 -1.485981 -0.116778 -1.043894 1.839847 1.449202 0.127405 -2.462142 -1.043048 -1.465154 1.947722 -1.447640 1.535108 -0.237518 -1.068372 1.396423 -1.586596 0.429647 -1.461188 1.061236 0.840655 -4.607104 2.539464 1.864542 -1.971763 -0.524039 -1.380939 0.811371 0.493927 2.077059 -1.905249 -1.626098 0.833801 -0.484565 -0.007996 -1.342606 0.756930 -0.023306 -0.003447 -2.629681 -1.163198 2.056685 1.094131 -0.313708 0.799933 1.624251 0.244845 0.670762 2.766142 1.168994 0.439280 -2.102579 -4.796012 1.128537 2.000167 0.636609 0.644438 -1.492811 -1.140508 0.689528 -0.807253 2.157838 0.667902 -0.805706 2.297212 -2.095619 -2.179518 -1.612659 -0.519677 1.088596 -0.519862 0.805933 -0.920711 0.308946 -0.382702 0.593727 -0.127306 -1.286276 -0.473211 1.233324 2.493004 0.689227 -0.061066 2.633272 0.334099 -1.255421 -0.017610 -0.466777 -0.693089 0.337030 -2.520787 -0.509689 0.318919 1.064475 -1.772272 1.068964 -0.199052 0.646567 0.216050 -PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = 4.624187 -1.096494 -2.229799 7.118246 1.072806 -0.825507 1.294336 1.751607 1.340694 -9.572263 -4.934041 4.761427 0.991123 -0.829458 0.567846 1.980066 2.987815 3.015408 -11.409072 1.172614 2.101591 0.141902 -2.000491 -1.709071 0.035849 -2.858047 2.309765 2.836396 0.936269 6.720788 -2.874555 3.409552 5.319392 0.187082 3.947423 5.412009 -1.194513 -0.686797 -1.312590 -1.861797 9.336784 3.784462 -0.323387 3.521142 0.961798 7.618634 1.225347 5.652421 2.086600 -2.676105 2.320676 0.619911 -3.044870 -0.826124 -7.407281 1.641553 4.798241 2.168262 -4.086684 3.594474 -1.357403 1.878791 3.022281 0.002714 7.803298 2.377361 3.913547 5.629945 7.314007 -4.538468 1.529036 0.373307 3.123783 0.270617 4.421770 -3.759323 -4.502632 -4.046161 -0.516751 -8.782811 0.639848 -0.869797 8.289201 -5.919623 0.699371 1.488414 1.667651 6.757271 -3.835839 -0.834406 -6.849265 -0.092223 -1.550388 8.895588 1.059288 1.883027 -0.659558 2.725474 -0.630615 2.067031 0.435979 -7.047545 -1.192019 -12.457443 -4.251075 -4.679308 0.244916 0.932087 -6.834474 -0.036466 0.280670 5.738451 -10.164820 -0.856147 1.570811 0.956416 1.683269 -1.462369 -2.605933 0.018816 -0.934445 2.630524 2.542509 -3.951382 0.762644 -2.531586 -0.451399 1.537100 2.780698 1.397647 -5.518828 -1.616708 1.777268 0.260089 -0.081117 2.984034 2.744180 -3.217101 3.259386 -5.212395 5.836433 -7.172021 -1.458717 -3.687118 -4.670592 -3.263544 5.653927 3.752042 4.755356 -0.013393 -1.512686 -0.236820 -8.555372 -11.160661 2.087634 -0.582302 0.983401 1.412704 -1.198055 1.118686 -5.076312 0.368675 3.346951 -4.062128 -3.353086 -1.114155 5.014151 0.452812 -2.356050 -2.775938 -0.179766 2.410173 1.046834 5.433460 -3.133778 -7.908778 -8.712034 -3.610362 6.194152 -3.396755 0.353214 -2.414135 -1.566471 -4.665572 0.772894 -5.487584 0.732501 -1.752112 -2.257399 -7.962405 1.600987 -1.793940 0.329040 1.693874 -6.078050 2.238760 4.264671 2.797459 -0.145848 1.554503 0.994669 -5.895458 -4.499021 1.079581 -2.303720 6.512802 4.014313 0.104085 -3.622440 -2.611516 -5.064555 4.699921 -4.785842 3.851630 0.866355 -3.758151 4.255249 -4.869686 -1.212277 -4.289325 2.872924 1.075773 -8.164337 8.213854 5.501811 -5.865555 -0.643683 -3.352679 3.365423 1.093398 6.039975 -4.817431 -3.659866 2.050571 -0.795667 -0.322148 -2.843029 2.142559 -1.051269 0.494411 -6.806621 -2.412606 5.773665 3.483028 -0.737695 0.968755 2.255319 -1.283374 1.587762 7.245144 3.273613 1.658785 -6.144133 -12.597490 2.529263 0.505542 0.658105 0.588061 -3.055568 -2.680410 0.969186 -1.415568 6.332997 2.783111 -2.033695 6.242717 -7.476268 -6.805554 -4.933424 -0.875643 2.096972 -1.865775 1.958052 -3.688924 1.052126 -1.605647 3.004814 -1.034222 -3.769908 -1.115257 3.360694 5.490778 0.867118 -1.736795 7.180649 1.320241 -2.672497 -0.935987 -0.715795 -2.298719 1.347202 -6.115442 -1.991191 0.043082 3.278774 -5.027743 3.414525 -0.897006 2.949417 1.517602 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 3.436874 -1.729047 -1.730113 6.317173 0.901634 0.427790 1.079671 0.645102 1.337974 -8.004763 -3.741207 5.903806 0.647392 0.077513 -0.224650 1.369392 2.603914 2.041996 -9.026035 0.083793 1.114287 -0.325592 -1.122453 -1.088995 -0.035630 -2.365343 4.406682 2.601342 0.832019 5.200519 -1.789874 3.042396 4.332552 0.605192 2.829042 3.942724 -1.224461 -0.630371 -2.744441 -2.685642 7.127566 2.744805 0.025276 3.412886 0.059518 5.997001 2.319143 4.507719 4.145498 -1.907939 1.541276 1.210525 -2.635407 -1.280491 -6.220784 0.727841 2.193585 0.866041 -2.485010 2.490076 -0.861206 1.454575 2.122889 0.124433 6.268685 1.048395 4.220566 4.623338 4.987386 -4.218021 1.028837 0.604336 2.370409 1.245351 4.271702 -3.192248 -4.546845 -1.530685 -0.778352 -6.379734 0.055729 -1.045307 6.490034 -4.036265 -0.608948 -0.205280 0.895858 5.398016 -2.573833 -0.241774 -5.708263 -0.009735 -0.353185 6.539311 1.471406 1.538795 -0.483091 1.513645 -0.609349 1.589403 1.214728 -5.690981 0.995127 -9.515114 -2.382047 -4.152147 0.825052 0.982151 -4.760338 0.749280 -1.525592 5.052946 -7.688757 -1.398946 1.095916 0.509038 3.008413 -1.810408 -0.714405 -0.013232 0.325330 2.217787 2.455911 -3.657462 0.940302 -0.693617 -0.124312 0.706422 2.279885 1.668870 -4.556149 -2.008035 1.703981 1.089799 0.601151 2.403084 2.455550 -1.637065 2.389457 -3.706834 4.596345 -5.131266 -1.344634 -2.394221 -2.999872 -3.044785 5.773458 3.094589 4.941053 -0.307487 -0.524506 -0.059170 -6.424897 -9.528704 1.677071 0.040267 -0.134807 1.693860 -0.907647 1.595819 -4.792018 0.696251 3.192395 -2.719226 -2.885468 -0.243737 1.254543 0.632178 -1.680726 -1.702023 -0.022775 0.660345 1.361632 5.238018 -2.057124 -9.578609 -7.040287 -2.673413 4.818304 -3.118032 -0.313566 -1.854747 -1.983312 -2.680938 -0.145040 -4.143794 0.616400 -0.704635 -2.737584 -6.500293 1.518520 -1.441505 0.832433 2.080533 -4.931894 1.552369 3.158660 2.378849 0.020676 1.556698 0.485727 -4.044575 -2.762243 1.149379 -2.442524 5.220712 2.470334 -0.277585 -3.522122 -2.350473 -4.044322 3.294758 -3.936531 3.465944 0.471074 -2.955991 2.452522 -3.768009 0.178532 -2.704644 2.205214 1.137357 -8.049490 6.067570 4.748677 -4.325425 -0.620408 -1.694872 2.301170 0.418264 4.231683 -4.550685 -3.472161 1.399143 -0.291993 -0.016915 -1.628070 1.316871 -0.313900 -0.935071 -5.566403 -2.372023 4.536410 2.111132 -0.595942 0.078395 2.481654 -1.314138 1.328988 5.714845 2.754907 1.823566 -5.026812 -11.508538 1.991931 1.423593 -0.039572 1.124194 -3.172541 -2.041591 1.433088 -2.686023 4.613983 0.490368 -2.373688 4.930835 -5.695807 -4.831638 -4.334617 -2.001061 1.653669 -0.738561 2.172332 -2.673589 0.762723 -1.680310 1.698006 -1.958916 -2.359097 1.261472 3.162719 4.272511 0.744798 -0.236116 5.417381 1.207053 -2.021967 -0.950112 -0.619438 -2.870516 1.190163 -6.681218 -1.138336 0.682588 2.649743 -3.752187 1.600546 -0.422511 2.354614 0.478071 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 4.050881 -0.706063 -0.092803 5.572496 1.607933 -1.061751 1.874984 2.887396 0.289964 -9.010719 -5.835607 2.252833 0.230972 -1.204838 1.299013 0.498967 2.770933 2.695115 -11.668380 1.041081 2.535414 0.677321 -1.004874 -1.848908 0.264205 -2.566571 -0.522595 3.770660 0.642791 6.140471 -2.546080 1.927015 4.872633 0.921558 3.444105 5.579544 -0.779655 -0.727301 0.673703 -1.367496 9.095192 3.219849 -0.525026 3.318603 2.021224 7.011370 0.158424 4.984877 0.667822 -2.486051 3.033190 -2.924325 -3.087482 -0.796915 -6.470416 1.566017 6.084670 3.194853 -4.080554 3.922348 -1.759918 1.230477 2.370978 -1.599770 6.671145 3.023747 2.886121 4.402628 7.026117 -4.394006 0.420472 1.065901 3.030017 0.227219 0.799423 -3.992314 -2.495787 -7.086276 0.068790 -9.980721 -0.216751 -1.076761 8.328703 -4.879849 1.208598 2.738807 0.319526 5.279617 -3.370031 -1.474941 -6.252985 -0.006479 -1.005309 7.476494 0.345048 1.000712 0.672769 2.278441 0.425596 3.131005 -0.587615 -5.364219 -3.873414 -12.986768 -3.624624 -3.317645 0.407980 0.096621 -5.850475 -0.963334 2.149053 3.890884 -8.808960 -1.323663 2.318220 1.803373 -1.739564 -0.413974 -4.021887 -0.817256 -1.039574 2.170707 3.007562 -3.674938 0.465739 -3.542490 -0.526915 1.186380 2.370632 0.620807 -4.835466 -2.175551 1.295789 -0.452948 -0.576493 1.378232 1.268570 -1.991494 3.101042 -5.003373 5.667688 -7.255097 -0.073334 -3.644997 -4.318420 -2.396593 6.188381 4.047562 3.139651 1.123560 -1.474358 -0.230810 -6.703654 -9.437338 2.264553 -0.405023 3.081624 -0.026479 -1.144998 0.770313 -3.883337 -0.726430 1.497003 -3.193058 -2.379958 -1.689031 5.483568 0.197864 -2.236438 -3.264248 0.937422 3.801228 -0.862209 3.601908 -3.590111 -4.954742 -6.717715 -4.110257 5.515150 -2.564866 -0.074515 -1.754796 -0.413696 -4.713577 1.642196 -4.966831 0.714273 -1.770881 -3.436426 -7.213607 1.462191 -1.795873 0.349961 1.876533 -4.759258 1.365469 4.111928 4.044627 0.277274 1.428149 0.957286 -5.547355 -4.902478 -0.646369 -1.186726 5.667854 4.129644 0.415991 -3.644675 -2.096675 -4.381977 5.180593 -2.728177 2.679523 -0.046445 -3.668639 4.813047 -3.781125 -0.669832 -4.520651 2.483875 1.785783 -9.269820 7.248580 4.732637 -5.272037 -1.873565 -4.579070 1.908304 1.743196 6.276872 -3.657288 -2.804539 2.135037 -1.208582 -0.375738 -3.499623 2.413044 -0.379620 1.467562 -6.638125 -3.197774 5.181709 3.718813 -0.614426 2.396907 2.339618 1.335149 1.500585 7.326164 2.152147 0.162209 -4.869272 -11.949029 2.798396 3.933523 1.210118 0.653660 -2.992515 -3.615552 0.261069 -0.019852 6.034686 5.244767 -1.340132 5.820644 -4.987893 -5.999874 -4.120204 0.357295 2.198850 -2.857055 1.109309 -3.159533 1.157160 -0.892745 2.032581 1.236803 -3.743961 -4.535846 1.740569 5.131817 1.252054 -1.543810 6.708840 0.539747 -2.963536 -0.597387 -0.453894 -0.512285 2.012097 -4.070907 -2.225352 -1.018640 2.525801 -3.980675 3.525575 -0.252114 2.369494 2.418562 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/coin-change.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.447079 -2.089485 -4.639236 11.096767 -0.262551 2.737940 1.200355 -1.166374 0.337558 -15.152273 -5.340421 9.246333 2.503012 3.407723 -1.008903 3.642197 2.325934 2.560963 -13.083595 -1.634973 3.221228 0.524685 0.490365 0.299112 -0.073980 -3.483936 8.689458 1.616328 1.764288 8.591045 -1.680419 8.136508 7.919794 -0.924582 1.481487 4.736655 -2.109911 -0.158882 -6.698153 -4.013917 10.009594 1.154701 1.573676 4.659587 -3.937308 8.993155 3.792893 7.269145 5.806257 -4.214315 3.010410 4.231933 -2.971525 -2.407913 -8.034816 0.877038 2.322873 3.400947 -1.814020 2.313230 0.057439 1.398915 3.333901 1.303861 9.664931 3.178014 8.725787 9.280110 6.334812 -6.818691 2.711013 0.344024 -1.492997 0.732203 9.147416 -6.553095 -6.208901 1.630619 -2.438252 -9.800440 -1.807826 -1.131016 11.247739 -6.202939 -3.429460 -2.754858 2.604813 9.974231 -2.498978 3.148804 -8.885218 -1.105854 -0.070293 9.243485 1.967791 1.560503 -2.905905 1.990939 -1.350675 0.846728 3.214591 -8.270778 3.241152 -9.389455 -4.586632 -6.247334 2.829480 5.423075 -9.411207 1.374615 -6.660895 7.193155 -14.387367 -1.932101 1.070486 3.893377 10.922186 0.582047 -3.084094 -0.561343 2.498499 2.546682 3.950532 -4.523848 3.915154 -1.385815 -0.869580 0.716055 2.404357 2.975849 -10.868527 -5.222818 1.199996 0.510368 2.678962 5.672702 7.681340 -0.708171 3.967695 -5.456714 6.415097 -9.114125 -4.230522 -2.005834 -6.860795 -5.625197 8.104846 5.414742 7.830755 -3.037347 -3.925198 0.033082 -11.178793 -13.146194 0.050761 1.026492 -1.337387 6.522554 -2.309468 4.453434 -8.239240 4.341969 7.172981 -2.462482 -5.192066 0.448420 0.751686 1.795976 -1.986665 -2.079913 -0.939079 -3.570360 2.288749 12.030766 -1.011981 -14.091952 -15.500095 -3.302786 7.670248 -4.827753 -0.364806 -4.642353 -3.787411 -5.427184 -1.809315 -6.906345 -1.052339 0.968338 -5.029619 -10.423452 4.351982 -1.524109 -2.546255 4.087511 -7.952492 1.389557 5.451886 3.392138 1.481450 0.478330 -0.916539 -6.046029 -4.385102 3.460145 -6.854811 6.712942 3.457627 -1.094296 -6.047044 -4.710068 -6.200194 4.030421 -4.588569 6.196219 0.774487 -1.516418 2.067832 -8.282656 2.449381 -4.122688 2.159055 1.695753 -15.450360 10.001594 4.891963 -4.367515 0.689473 0.295844 4.183491 -0.422942 2.422207 -6.352724 -6.293000 1.578675 1.261988 0.574426 -3.034503 1.061814 -2.259058 -4.046080 -7.563759 -3.119357 7.297409 2.365077 -1.502098 -0.804203 5.653317 -5.281884 1.182851 7.707678 6.422114 1.512464 -5.164335 -16.089205 2.800328 -2.035832 -2.002914 -0.343110 -5.718702 -1.279565 5.103127 -5.690239 6.620405 -3.555989 -4.138350 7.517733 -11.112410 -7.065400 -7.010877 -3.909131 2.201140 1.518940 0.642975 -3.534360 2.285717 -0.041131 0.902402 -4.366723 -5.984597 5.376125 5.331239 8.618608 -1.350609 2.397988 8.353614 3.135107 -1.381046 -1.767976 0.544644 -5.466829 0.282751 -12.928158 -0.763996 4.002179 3.982512 -6.257459 0.204938 -2.923815 0.699956 -0.038269 -PE-benchmarks/coin-change.cpp__main = 1.189780 -0.704655 -0.790682 2.859890 0.088378 0.446717 0.608908 0.204792 0.213590 -4.279023 -1.725666 1.873029 0.543449 0.591528 0.039388 0.793505 0.761935 0.949297 -3.841602 -0.279868 1.003191 0.286360 0.088791 -0.119518 -0.040867 -1.062077 1.363337 0.791332 0.466431 2.599541 -0.654838 1.720383 2.302634 -0.166650 0.401678 1.739977 0.026262 -0.034456 -1.292595 -0.804573 3.177743 0.524824 0.093170 1.348006 -0.621756 2.736539 0.663516 2.488562 1.174728 -1.258072 1.188577 -0.103457 -1.036534 -0.608699 -2.360152 0.510043 1.513436 1.447195 -0.852418 1.133576 -0.313319 0.472260 0.978892 -0.033000 2.617318 1.332495 2.021153 2.399856 2.312443 -2.120114 0.517222 0.291922 0.026205 0.179970 1.942587 -1.861990 -1.349905 -1.260996 -0.406631 -2.972836 -0.496389 -0.392089 3.339895 -2.003712 -0.502703 0.248655 0.507314 2.616183 -0.962959 0.644086 -2.608005 -0.162071 0.111762 2.964801 0.452231 0.344542 -0.618069 0.705957 -0.068311 0.611526 0.779440 -2.211339 -0.338198 -3.485325 -1.593976 -1.623420 0.528648 1.123931 -2.779380 0.073566 -0.495484 1.735164 -4.089016 -0.450729 0.650147 1.274919 2.256295 0.324967 -1.215093 -0.150205 0.471421 0.627904 1.176487 -1.524910 0.895771 -0.875632 -0.158794 0.343968 0.707758 0.496578 -2.821009 -1.318158 0.305405 0.061856 0.498685 1.221914 1.650490 -0.568059 1.250033 -1.794961 2.013425 -2.865672 -0.919137 -0.690714 -2.044117 -1.400150 3.052812 1.451039 2.050852 -0.395421 -1.420037 -0.230832 -2.974720 -3.962012 0.233713 0.268252 0.348867 1.384100 -0.662607 0.914595 -2.045888 0.791200 1.409700 -0.915045 -1.210318 0.072574 0.778186 0.205625 -0.695448 -1.137870 0.071591 0.055890 0.293686 2.772218 -0.611519 -3.268120 -3.860764 -1.284712 2.281534 -1.241702 0.011489 -1.093386 -0.812449 -1.957351 -0.037020 -1.904461 -0.052579 0.150948 -1.770714 -3.125805 1.226862 -0.571925 -0.583142 1.226992 -2.262946 0.393798 1.190273 1.195382 0.415840 0.219851 -0.017418 -2.217168 -1.824296 0.354878 -1.563738 2.235219 1.094177 -0.057650 -1.489039 -1.257567 -1.813890 1.584083 -1.592923 1.462195 0.072225 -0.695575 1.100988 -2.126291 0.225515 -1.758881 0.836071 0.706335 -3.846186 3.134004 1.621120 -1.498428 -0.222855 -0.533869 1.038403 0.304073 1.487493 -1.796869 -1.669539 0.758243 0.116678 0.040896 -1.100957 0.592169 -0.562662 -0.534142 -2.330766 -1.015782 1.934815 1.151572 -0.442303 0.250486 1.656070 -0.745051 0.189254 2.491806 1.542683 0.132878 -1.531181 -4.647179 1.090955 0.192538 -0.306454 0.104368 -1.921305 -0.608320 1.298140 -0.856518 2.084964 0.244388 -0.671189 2.321416 -2.904449 -2.230484 -1.636560 -0.777489 0.775138 -0.182916 0.369028 -1.109168 0.660738 0.011451 0.348729 -0.676184 -1.652533 0.299855 1.146195 2.426411 -0.161950 0.262692 2.639008 0.642703 -0.736829 -0.329341 -0.015458 -0.988910 0.308575 -2.728064 -0.284360 0.674076 1.147455 -1.773034 0.685683 -0.702488 0.082730 0.382464 -PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 3.956137 -2.080438 -7.850607 17.235580 -1.404990 4.227014 1.243962 -3.285885 -0.293520 -21.240829 -7.883299 11.052505 4.752119 5.173694 -1.157626 6.344435 2.581832 3.684653 -18.169286 -2.740274 5.769893 0.251166 0.707873 0.949985 -0.560028 -5.320560 13.052026 1.614755 2.110697 12.958959 -1.901715 13.271258 11.832896 -2.186805 1.383372 6.614654 -4.428965 0.833876 -9.785124 -4.557951 13.659834 0.866723 2.881862 5.499098 -7.269934 13.040071 4.588092 9.792124 6.197208 -6.547357 6.396104 9.195519 -2.910621 -3.297293 -11.200588 1.146520 4.579103 5.099195 -1.675325 3.033332 -1.215673 2.587841 5.292422 2.957477 14.832666 5.872267 13.035014 14.024908 9.173269 -9.876969 4.938532 -0.094005 -4.533819 -1.391452 13.770831 -9.329002 -9.915706 3.828579 -4.491000 -13.279343 -1.560030 -0.363396 16.078491 -9.195296 -5.664256 -4.939499 5.074640 15.028925 -3.897022 5.166658 -12.247002 -1.801606 -1.427153 13.926540 3.169024 2.576466 -5.021205 3.012332 -2.671144 0.239445 3.955630 -11.700810 5.218079 -12.257439 -8.191780 -9.020092 5.169733 9.027097 -14.813973 2.191356 -10.670125 7.284094 -21.801906 -2.143738 0.956293 7.081788 17.026090 0.839664 -5.684301 -0.713465 4.280159 4.005773 5.838673 -5.401082 6.742554 -4.303491 -1.292769 1.133271 3.423084 4.044644 -15.398657 -6.998331 0.241259 -1.342212 4.809799 9.308204 12.010570 -0.493466 5.982624 -8.108662 9.585669 -14.450552 -6.539093 -3.719561 -11.509874 -8.237519 8.779657 7.912284 11.010403 -5.988446 -7.538716 0.120152 -17.399415 -17.083754 -1.586288 1.796267 -2.579393 10.079272 -3.752966 6.772421 -12.519685 7.819877 11.681199 -3.611919 -7.659448 0.897315 3.057559 3.246257 -3.509912 -3.122756 -2.390339 -7.742734 3.149157 18.603939 -0.081837 -19.047576 -24.455609 -4.304163 11.436142 -7.339843 -0.441317 -8.261747 -5.661213 -9.414240 -2.904205 -10.147273 -2.391040 2.653911 -6.361215 -15.168347 6.666858 -1.539108 -3.985663 5.616095 -11.792146 1.970643 10.187405 3.670720 2.898396 0.691487 -1.579699 -7.680061 -5.518202 6.113032 -10.391918 8.825697 5.226539 -1.513121 -7.857249 -7.216255 -8.972378 4.762710 -4.060677 9.021248 1.658127 -1.509569 2.195405 -12.944840 3.611284 -6.232978 1.743679 1.592079 -21.688115 13.707377 6.042666 -5.805569 1.879777 0.816218 7.296197 -2.143476 2.103845 -8.816347 -9.032324 1.812585 1.998278 0.963016 -3.947178 0.955394 -4.671373 -7.162733 -9.920503 -3.827718 11.403748 3.380163 -2.594431 -1.699296 8.145355 -9.718084 3.146524 9.308025 10.385054 1.217680 -6.653424 -22.362763 3.623801 -7.037094 -3.512936 -2.203755 -7.061206 -1.328949 8.118435 -6.722662 9.744051 -4.214273 -6.789008 11.091572 -16.159121 -10.585221 -10.779208 -5.196670 3.092446 2.045990 -1.190335 -5.445134 3.561289 0.756209 1.614457 -6.166268 -9.902145 8.763030 7.721411 13.955942 -3.777984 3.628016 12.399112 5.439171 -1.073808 -3.370971 1.332690 -8.981492 0.452528 -17.959123 -0.934021 6.743727 6.197521 -9.407523 -0.064276 -5.460913 0.596483 0.840473 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 1.118593 -0.391579 -1.205420 4.012081 -0.320745 0.786447 0.668416 -0.003073 -0.071132 -5.594449 -2.240690 1.604802 0.964340 1.036968 0.203553 1.191430 0.674460 1.313276 -5.589652 -0.573756 1.981672 0.490767 0.681018 -0.123190 0.041007 -1.330038 1.649496 0.605478 0.600596 3.661300 -0.842713 2.868593 3.167355 -0.238357 0.348806 2.021401 -0.708513 0.225936 -1.574953 -0.863580 3.771455 0.592067 0.180530 1.232018 -1.504985 3.547471 0.599186 2.432826 0.850401 -1.894133 1.623900 0.420113 -0.939868 -0.503584 -2.642330 0.548451 2.105616 2.320433 -0.615043 1.290125 -0.802310 0.798830 1.352042 -0.047026 3.581110 1.969093 2.651260 3.355740 2.779618 -2.662313 1.219655 -0.251873 -1.069824 -0.792775 2.547006 -2.233146 -1.842865 -1.685424 -0.808141 -4.259713 -0.614833 0.005090 4.079969 -2.692006 -0.535790 -0.014236 1.173184 3.731240 -1.232383 1.108577 -3.249816 -0.307979 -0.229751 3.942148 0.698151 0.437611 -0.981817 0.983848 -0.193024 0.296323 0.940537 -2.642462 -0.074742 -4.067549 -2.124197 -2.049384 1.177946 2.083311 -3.860624 0.339113 -0.822558 1.717794 -5.791728 -0.430939 0.505711 2.204896 2.646747 0.216357 -1.724819 -0.160315 0.503267 0.882540 1.593833 -2.047632 1.553555 -1.618892 -0.645833 0.514342 1.025933 0.656766 -3.492298 -1.723263 0.070484 -0.716546 0.908095 2.251659 2.641272 -0.144505 1.693089 -2.662407 2.688098 -3.663341 -1.043343 -0.874236 -2.930940 -1.953618 3.019104 2.024168 1.825801 -0.971200 -2.228937 -0.159136 -4.130827 -4.449962 -0.067944 0.642339 0.453708 2.136492 -1.035539 1.351047 -3.025617 1.645655 2.030746 -1.115967 -1.698983 0.173794 1.407234 0.548359 -1.070426 -1.379903 -0.132106 -0.626245 -0.049747 3.999176 -0.411938 -3.186147 -5.833327 -1.549532 3.151957 -1.738743 -0.037683 -2.102640 -0.806398 -2.651961 -0.126656 -2.558804 -0.344189 0.689230 -1.896223 -4.153265 1.655214 -0.579741 -0.906779 1.605940 -2.923485 0.429355 2.259032 1.170930 0.690643 0.133342 0.064473 -2.274145 -1.939012 0.811462 -2.405849 2.054381 1.324674 -0.232740 -1.952309 -1.798967 -2.100986 1.896284 -0.829398 2.074469 -0.157064 -0.664836 1.137907 -2.935591 0.336155 -2.213947 0.591659 0.682248 -4.684353 3.731109 1.441356 -1.654082 0.133342 -0.714748 1.802273 -0.006624 1.333363 -2.177802 -2.209617 0.655208 -0.017889 0.177123 -1.337659 0.560728 -1.258679 -1.255125 -2.594984 -0.945638 2.874891 1.265665 -0.658746 0.469985 2.465100 -1.522727 0.891576 2.601540 2.391883 -0.222051 -1.734617 -5.436681 1.271090 -0.518784 -0.200543 -0.780776 -2.101337 -0.674693 1.908739 -0.469552 2.667379 0.987546 -1.221410 3.012194 -3.816688 -2.870548 -2.412598 -0.744824 0.932966 -0.195335 -0.532794 -1.309515 1.082388 0.563927 0.564502 -0.502161 -2.714222 0.527063 1.544375 3.608498 -0.749835 0.411253 3.504538 1.228237 -0.757382 -0.570692 0.091482 -1.697838 0.063997 -3.165214 -0.244031 1.394038 1.528775 -2.510100 0.653043 -1.237931 -0.235694 0.601485 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = 6.610469 -2.639311 -8.807965 18.598336 -1.127308 2.483286 2.779478 -3.442878 -0.747099 -25.030970 -8.615040 14.076346 5.548203 5.540820 -4.063116 8.632248 2.281912 6.361534 -22.040820 -2.319084 5.640822 1.074144 0.412333 -1.293566 -0.919426 -5.445556 12.636599 2.430344 2.655073 15.165130 -3.217372 12.411135 14.266580 -2.283250 1.203175 9.803181 -0.867257 1.750675 -10.123586 -5.337534 16.336317 2.245185 3.712825 5.777807 -7.724825 15.270069 8.108862 16.218004 5.113605 -7.655177 6.324053 5.215878 -5.958051 -3.861780 -13.324027 2.270827 7.315862 8.603200 -3.251519 5.468567 0.786706 3.614756 6.665693 3.378315 16.392855 6.461170 12.461584 14.224512 12.622705 -12.368016 4.802974 0.648816 -2.554725 -2.892806 17.448460 -14.787679 -11.802194 4.785720 -2.735421 -18.344334 -0.747444 1.606939 22.178084 -12.319780 -5.537211 -2.269576 5.700986 17.052233 -4.935821 4.825949 -14.428703 -0.640496 -3.552527 22.509402 3.765865 2.903497 -6.010768 3.952850 -0.960575 1.245678 4.282027 -13.356186 3.423710 -18.067051 -8.127456 -11.004091 3.189250 9.553583 -17.731522 -1.259754 -10.178019 11.091729 -27.564494 -1.551259 4.053094 7.291234 19.930767 0.399212 -5.372581 2.789744 2.584602 3.535056 6.907331 -7.637811 5.221982 -1.579190 -0.948007 1.402660 3.143710 3.737601 -22.906197 -6.815537 0.302847 -2.261917 4.797192 8.822479 12.628307 -2.509081 6.960609 -11.087791 10.112906 -18.314400 -4.902266 -2.730816 -17.364515 -9.088012 10.379346 7.252139 12.963520 -7.767708 -7.106678 -1.439524 -19.836671 -24.552167 0.355879 1.785706 -1.201048 10.631961 -3.878133 5.543093 -14.001432 6.558364 13.551142 -4.616965 -8.898361 0.877756 8.459020 2.137600 -4.757035 -4.068478 -2.165275 -5.406085 5.226634 20.063798 -2.263070 -25.188836 -27.141256 -6.403613 13.618926 -7.792046 -0.138580 -8.690231 -6.870055 -12.093469 -1.699008 -11.532970 0.007127 2.948685 -6.755203 -18.008762 6.837122 -2.433249 -5.533521 6.488790 -13.634007 2.253427 10.751153 3.491254 2.150811 0.485359 1.550699 -11.758895 -7.748479 6.429142 -11.124486 10.139928 7.494490 0.687119 -8.838653 -7.397795 -11.370123 4.636248 -7.131024 9.225546 0.775371 0.557897 5.524666 -15.015602 6.754834 -7.213384 3.458317 2.763686 -25.333518 19.420191 9.963444 -7.006785 1.360449 1.305170 6.705567 -0.474857 5.101089 -11.894429 -12.057620 3.925173 -1.180835 0.458747 -3.957408 1.891146 -5.467898 -5.054677 -12.101982 -3.656810 10.385607 5.338192 -2.976860 -0.880142 8.624994 -10.784482 1.851450 13.000837 8.849192 2.119287 -9.220598 -31.255433 5.572277 -8.749103 -3.806302 -0.700740 -6.454029 -0.885782 10.902786 -7.766404 11.899674 -2.274165 -8.847474 13.035577 -20.886107 -13.323331 -10.341106 -5.763122 5.075215 1.511563 -0.896867 -7.079784 3.964387 -0.520337 1.960789 -6.187094 -10.505716 7.976158 8.388715 16.909529 -3.303996 2.309491 15.565725 2.934644 0.073830 -2.620362 -0.033562 -5.741245 1.120354 -19.256534 -1.343545 6.076440 8.150342 -10.719411 3.118733 -6.907177 0.236085 3.038439 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 1.611034 -0.382453 -1.422283 3.838976 -0.172308 0.179854 0.848966 -0.093616 -0.265940 -5.759708 -2.312407 2.278343 1.048771 0.823360 -0.473067 1.661205 0.586281 1.770724 -5.560991 -0.282241 1.614686 0.595715 0.233665 -0.580069 -0.091994 -1.186131 1.463298 0.719018 0.576040 3.617445 -0.981579 2.387767 3.277048 -0.329351 0.313708 2.505007 -0.016279 0.293499 -1.355434 -0.899157 4.031616 0.682289 0.602107 1.315431 -1.213025 3.600779 1.266922 3.525735 0.519426 -1.814951 1.576098 -0.113411 -1.505468 -0.650272 -2.960197 0.705663 2.391201 2.544648 -0.969930 1.652730 -0.119525 0.846243 1.523822 0.072550 3.673795 1.897836 2.346509 3.054260 3.301991 -2.726083 1.012104 0.061339 -0.311934 -0.853484 3.076503 -3.258836 -2.016906 -0.834315 -0.513066 -4.950882 -0.146482 0.321161 5.311384 -2.991081 -0.573487 0.367469 1.147557 3.730678 -1.260553 0.721801 -3.305631 -0.034509 -0.782090 5.123010 0.646065 0.533927 -1.179431 1.040607 0.064040 0.501576 0.680631 -2.795953 -0.444315 -4.920653 -2.019443 -2.225433 0.488678 1.801879 -4.158085 -0.504500 -1.003728 2.373935 -6.384866 -0.351305 1.134772 1.823952 3.038480 0.222421 -1.793596 0.469655 0.125047 0.853831 1.521870 -1.993696 0.979092 -1.000002 -0.457491 0.430387 0.813629 0.549390 -4.862251 -1.551758 0.004474 -0.751298 0.775000 1.820322 2.442514 -0.615719 1.668183 -2.868418 2.471450 -4.338625 -0.783663 -0.762648 -3.940394 -1.870788 2.875166 1.779947 2.328744 -1.270733 -1.777843 -0.473193 -4.347280 -5.422788 0.374457 0.262795 0.590553 1.936531 -0.869171 0.859344 -2.877705 1.051083 2.414991 -1.214722 -1.739874 -0.073721 2.637669 0.259911 -1.205064 -1.460940 -0.200035 -0.117279 0.593407 3.780411 -0.885716 -4.320495 -5.772920 -1.761879 3.194127 -1.623506 0.073634 -1.899068 -1.045920 -2.945683 0.086138 -2.624367 0.070174 0.521215 -1.758434 -4.223160 1.448798 -0.648562 -1.253833 1.399313 -2.964410 0.494962 2.379665 1.136292 0.452038 0.092658 0.518217 -2.951259 -2.259791 0.834665 -2.169193 2.276683 1.946724 0.353888 -2.183916 -1.521038 -2.549584 1.628663 -1.480117 1.855078 -0.082768 -0.128502 1.776954 -3.164937 1.169580 -2.118545 0.886510 0.704144 -5.802104 4.520245 2.209011 -1.851738 -0.004814 -0.563155 1.492967 0.286305 1.752470 -2.492545 -2.481945 1.075513 -0.591612 0.012800 -1.364831 0.714696 -1.227714 -0.531849 -2.891521 -0.908136 2.442814 1.559795 -0.696738 0.405792 1.995855 -1.620446 0.452165 3.167360 1.814329 0.053298 -2.079057 -6.903720 1.416335 -0.872351 -0.325534 -0.164077 -1.581879 -0.533574 2.161050 -1.021880 2.899127 0.789434 -1.563309 3.043528 -4.389478 -3.182767 -2.064571 -0.709047 1.298782 -0.249383 -0.228569 -1.599503 0.899987 0.134072 0.648390 -0.562296 -2.608503 0.333954 1.549583 3.934086 -0.466379 0.074262 3.745411 0.487262 -0.353763 -0.375430 -0.150144 -0.718255 0.318898 -3.431522 -0.433353 0.961843 1.766700 -2.496171 1.368570 -1.455977 -0.005395 1.040296 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/karatsuba.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = 5.603458 -1.708019 -1.871899 6.881309 1.617732 0.936805 0.959695 1.547271 1.358182 -9.684721 -4.593541 7.824555 0.537384 0.948857 0.306732 2.332490 3.731917 1.907750 -10.378050 0.041778 0.573314 -0.740525 -1.537223 -0.789791 0.376461 -2.325307 4.137990 2.421553 1.357479 5.937905 -3.076341 3.745245 5.016817 0.579522 3.349871 3.494666 -0.452274 -1.606673 -3.658267 -4.389719 9.173911 2.338089 0.858705 4.950650 -0.045833 6.910988 0.906947 8.843047 5.931167 -2.244595 3.317915 -1.577141 -3.623857 0.339743 -7.862925 1.957349 1.908413 0.559469 -3.029684 2.951037 -0.554138 2.541268 2.354038 -1.221806 7.510145 2.350324 5.047513 5.235611 6.132847 -5.116874 1.198054 1.085858 3.284736 2.547081 4.124432 -4.701034 -2.906146 -2.436820 0.305359 -6.556510 0.711046 -2.871911 9.422654 -5.153824 -0.680988 0.810024 0.801271 6.584478 -3.435969 1.402521 -7.097082 0.442092 0.319107 7.081922 0.879704 1.841317 -0.961441 1.036269 -1.201664 2.082625 1.292271 -5.741943 -0.515678 -9.992542 -3.902685 -3.534296 0.793908 0.832841 -6.129602 1.906517 -0.834271 6.293901 -8.692624 -2.341147 0.870931 0.629933 4.035213 3.243764 -1.467200 -1.644458 0.685068 3.373505 1.975972 -4.107049 1.894935 -2.645846 -0.845542 1.150114 3.795888 1.603858 -6.387273 -2.331453 1.991847 0.801470 0.409008 2.263442 2.961365 -2.330053 3.448379 -3.327403 4.494446 -6.183353 -3.548400 -3.230653 -3.931705 -3.342347 9.910758 4.268260 7.072273 2.105285 -0.853131 -1.275425 -7.567893 -10.041113 1.180253 -0.325747 0.384531 2.634771 -0.755091 2.028461 -5.279075 -0.144915 2.817188 -4.073731 -4.325992 -1.470129 1.502664 -0.281167 -1.790424 -3.567303 0.988958 1.763411 -0.291062 5.562104 -1.870955 -11.712391 -7.870926 -3.589109 5.593368 -3.600283 0.945160 -1.586720 -1.138513 -3.037932 -0.935849 -4.890423 0.421199 -0.315375 -4.564347 -7.742961 2.543677 -1.650863 -0.144284 2.580507 -5.996784 2.643072 3.366004 4.336229 -0.089563 2.246729 -0.034312 -6.243513 -5.036768 -0.015091 -2.857352 6.491035 3.213473 -0.567656 -3.858932 -3.559542 -4.925470 4.453486 -7.531089 3.879401 0.581134 -2.816846 2.112949 -5.045664 -0.211219 -4.097576 2.944309 1.358311 -10.994753 7.138799 5.085762 -5.837798 -1.385044 -4.396703 3.737224 0.687761 6.607018 -4.781260 -3.113142 1.741918 0.856060 -0.385380 -2.309183 2.371144 0.001724 -1.424735 -6.867742 -3.463653 5.188332 3.028234 -0.743128 -0.100387 4.079053 -0.082146 2.485253 7.323383 2.862627 1.219479 -5.329484 -15.148093 1.903773 4.519595 -0.496381 2.318873 -5.674691 -2.423875 1.327905 -3.825906 5.612872 -0.898000 0.327521 5.825614 -6.541136 -5.544714 -3.926695 -1.952698 1.244720 -1.023250 2.841070 -3.345531 0.131242 -1.722831 2.133690 -2.662046 -2.686084 -0.554940 2.893814 5.093249 1.040221 0.522249 6.519688 2.483507 -2.344359 -0.508509 -0.966167 -2.187375 1.212679 -7.871257 -1.005979 0.791756 1.892765 -4.784417 2.039286 0.429709 2.128889 -0.102913 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 3.347384 -0.643379 -0.487142 3.219914 1.367636 -0.692541 0.133516 1.946636 0.458866 -3.455672 -2.267548 2.016234 -0.068058 0.056146 1.648151 0.936284 1.573181 0.845910 -4.469285 0.910297 -0.837239 -0.151644 -1.617953 -1.662005 0.431296 0.407635 0.675179 1.627852 0.471630 1.990179 -2.081980 1.001876 1.485668 0.529888 2.072260 0.231986 1.066605 -0.906561 -1.847404 -1.960855 5.021363 1.089189 0.433364 3.171181 0.963445 2.779542 -0.104778 4.538171 1.378902 -0.350829 2.456030 -2.970778 -1.549417 0.443372 -4.207377 1.940657 2.302887 0.258723 -1.948415 2.005407 0.194427 1.431687 1.387211 -1.703854 4.118122 1.540702 2.554070 2.113976 3.537136 -1.993826 0.278309 0.432632 3.511132 1.150783 0.226074 -3.578832 0.029339 -4.216901 0.808988 -3.331936 1.514494 -2.155505 4.122373 -2.491029 0.687193 1.790947 -0.494243 2.403629 -2.849081 0.778285 -2.828095 0.110827 -0.131887 3.491452 -0.457382 0.474649 0.454374 0.724520 -0.092872 1.696579 0.325140 -1.520894 -0.951193 -5.258140 -2.834245 0.910143 -0.408083 -1.216870 -2.093920 0.552209 0.578878 1.354530 -3.211796 -2.175949 0.604619 0.049187 0.480139 1.478227 -1.026325 -1.261297 -0.114261 2.521571 0.680491 -2.266671 1.374852 -2.364024 -0.879819 1.203749 2.854008 0.790899 -1.841177 -0.949001 0.305361 0.624830 -0.534458 -0.391193 -0.066843 -1.951465 1.924607 -1.290527 2.167894 -3.444507 -2.120517 -2.066116 -1.526885 -0.442807 5.564427 0.688003 3.351174 2.984517 -0.849320 -0.676326 -3.030233 -4.613258 1.326166 0.569033 0.590869 0.584043 0.014158 0.320806 -1.404917 -1.845846 1.865146 -2.834356 -2.947566 -1.944983 1.034165 -0.493102 -1.217510 -2.945384 2.181579 3.100837 -0.646236 1.314645 -0.756335 -4.265864 -2.011805 -1.576132 2.257523 -0.921504 0.835227 0.411951 0.399897 -2.706592 0.289159 -3.073670 1.174151 0.007627 -3.037760 -3.109699 0.858351 -0.562784 0.980507 0.598086 -2.386347 1.903376 0.582737 3.658250 -1.168812 1.924245 1.061495 -4.181563 -4.496594 -1.593344 0.121750 3.888539 0.677658 0.744272 -1.350915 -1.083062 -1.752835 2.757054 -4.202141 0.992322 0.081103 -0.932834 1.122555 -2.467017 -1.240799 -2.853088 1.372231 0.655445 -4.182585 3.276913 2.333944 -3.446743 -1.591966 -4.117799 2.205878 0.422039 5.402628 -1.867306 -0.703549 1.047554 1.645154 -0.864267 -2.788964 1.672373 0.766106 -0.782347 -3.435859 -2.392873 1.773113 1.958706 0.051620 0.501114 1.695485 1.234395 -0.692421 4.462097 0.636307 0.042371 -2.175625 -6.382442 0.333256 4.535725 0.050162 1.341808 -3.445068 -1.687361 -0.458306 -0.416512 2.621071 2.095307 1.914271 2.536164 -2.464992 -2.465624 -1.228420 0.735949 0.175727 -1.701926 1.180530 -2.095661 -0.383228 -0.595236 1.034630 -1.045586 -0.681218 -2.978475 -0.435091 1.913409 0.099712 -0.242853 3.314563 1.587165 -1.376095 0.212078 -0.589003 -0.446966 1.399666 -2.391946 -0.992115 -0.727494 0.036688 -2.184160 1.510765 0.692320 0.904924 0.211606 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 6.882433 -1.141096 -2.673196 10.015392 2.281431 0.852454 1.384118 2.057861 1.828894 -12.774534 -5.607930 8.168721 1.020866 1.591525 1.248551 3.576878 3.607741 2.995926 -11.956796 -0.154645 0.893860 -0.315601 -1.433635 -2.309363 0.546160 -1.082646 4.722147 3.053938 1.911653 7.984589 -3.809634 5.279014 6.366806 0.864858 3.348550 2.986381 1.324490 -1.417997 -5.937396 -4.719582 11.728954 2.057942 1.499654 6.904437 -1.208432 8.877059 2.242626 11.848579 6.684245 -2.403909 4.857779 -3.533130 -4.303098 -0.039803 -9.440730 3.387077 3.897351 2.218525 -3.316467 4.264109 0.624051 3.032455 3.399418 -2.550132 9.856285 4.724516 6.750110 7.816340 8.636953 -6.501970 1.416336 0.115756 3.777379 1.835072 5.016865 -8.985070 -2.879199 -4.049980 0.434774 -9.194020 1.385599 -3.653505 12.138751 -7.971398 -0.309167 1.658617 1.027376 8.461021 -4.889576 2.094601 -8.625902 0.183695 0.060064 10.343576 0.425916 1.632404 -1.380781 1.180752 -0.516473 2.378136 2.904341 -6.032725 -1.036966 -11.116440 -6.167895 -2.182213 0.632168 1.325081 -7.353254 1.374596 -2.148093 4.309981 -12.765620 -4.166858 2.317258 2.137477 6.176993 4.415684 -2.352048 -1.392456 1.455597 4.429804 2.399773 -5.651613 2.878144 -4.129254 -2.275573 1.517599 5.136206 1.794973 -9.031308 -3.491439 0.629247 0.656267 1.075947 1.783649 3.263021 -3.529643 4.826166 -4.407779 5.898139 -9.142989 -5.427079 -3.351200 -5.292813 -3.931686 13.371154 3.521908 9.459715 2.818049 -2.817268 -2.144674 -9.721821 -12.392803 1.815865 0.464374 0.490568 4.571572 -1.221590 2.327304 -6.451501 -0.602329 5.871243 -5.221188 -6.675394 -2.210239 2.346690 -0.777171 -2.838883 -6.109008 2.124661 2.885618 0.069460 7.177877 -1.853261 -13.982905 -10.436468 -4.573114 7.237027 -4.216656 1.590395 -2.360136 -0.807181 -6.062954 -1.314429 -7.428241 1.289905 1.414632 -6.965997 -10.078634 4.177218 -1.777249 -0.183919 3.583113 -7.428515 3.241693 3.595116 7.012300 -0.912280 2.616251 0.600260 -9.214547 -8.175048 -0.971915 -3.465990 8.279455 2.223032 0.932746 -5.085608 -3.882307 -6.227623 5.662637 -9.201880 4.430934 0.190489 -1.204200 2.814754 -7.470428 -0.655305 -6.561444 3.145692 1.734086 -13.604535 8.878233 5.722975 -6.669768 -1.995655 -5.673223 4.992984 0.708205 9.134342 -6.349619 -5.057753 2.403067 2.009251 -0.810725 -4.559179 3.043301 -0.632981 -2.617780 -8.691659 -4.488340 5.816198 4.811933 -1.151330 0.508141 6.248279 -0.446595 0.848915 9.416057 3.704438 0.820633 -5.177567 -17.945674 1.611328 5.451389 -0.398715 2.251856 -7.999635 -2.456177 2.219010 -3.461478 7.305361 0.403384 1.256862 7.591020 -8.809957 -7.141539 -4.254803 -1.380862 2.087317 -2.165296 1.939266 -4.120471 0.378015 -0.846333 1.805740 -2.965712 -4.262640 -0.968191 2.180477 7.750113 -0.993343 1.100236 9.128189 3.264142 -2.498903 0.031021 -1.338654 -2.276997 2.150013 -9.470739 -0.922915 1.176505 1.902041 -6.135470 2.794680 -0.939261 0.984659 0.312115 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.165803 0.073929 -0.157990 1.060231 -0.114761 0.141065 0.222683 -0.249511 -0.440636 -1.589204 -0.732279 -0.214639 0.329036 0.502063 0.067950 0.333948 0.037032 0.277016 -1.713494 -0.200485 0.778289 0.285658 0.395165 0.261299 0.034232 -0.378618 0.066801 0.258972 0.073026 1.092747 -0.307087 0.911998 0.984130 -0.233945 -0.212387 0.618885 0.040504 0.143991 -0.219516 0.242762 0.993813 -0.393547 0.365430 0.128962 -0.520887 1.021929 0.155552 1.065718 0.243221 -0.690602 0.884294 -0.155736 -0.182961 -0.131963 -0.540561 0.116635 0.832290 1.021932 -0.140526 0.386686 -0.023563 0.133187 0.403889 -0.017342 0.955356 0.863739 0.619156 0.694672 0.945383 -0.670259 0.346705 -0.069015 -0.538412 -0.369324 0.301298 -1.007562 -0.199590 -0.510822 -0.203167 -1.339394 -0.287708 0.127736 0.958734 -0.710416 -0.329757 0.029484 0.112487 1.057503 -0.251053 0.421276 -0.822951 -0.072499 -0.119786 0.925514 -0.003728 -0.025145 -0.222205 0.102353 0.068642 0.132516 -0.101731 -0.638878 -0.391977 -1.001903 -0.958057 -0.406193 0.226163 0.681092 -1.498847 -0.089710 -0.630032 0.036372 -1.725099 -0.175883 0.217610 1.020204 0.399433 0.670021 -0.913775 -0.359805 0.262858 0.363154 0.621378 -0.306990 0.642772 -1.059992 -0.252869 0.227072 0.098032 -0.067756 -0.826107 -0.618940 -0.241844 -0.530257 0.315935 0.522855 0.784582 0.274094 0.549568 -0.760406 0.667352 -1.335960 -0.460554 -0.217593 -1.122217 -0.476533 0.502022 0.579818 0.273740 -0.370680 -1.061306 -0.013920 -1.245196 -0.987175 -0.349380 0.004184 0.348180 0.751713 -0.418665 0.377356 -0.700494 0.252525 0.632085 -0.138098 -0.524871 -0.258738 0.353344 0.244367 -0.250823 -0.502266 0.003899 -0.305325 -0.239736 1.210625 -0.078314 -0.525792 -1.710797 -0.557732 0.891652 -0.375691 0.006815 -0.775227 -0.137977 -1.291215 0.106900 -0.718965 -0.725554 0.279644 -0.645006 -1.143700 0.523284 -0.165436 -0.566903 0.385764 -0.899195 -0.057154 0.920326 0.576040 0.571756 -0.194470 -0.225032 -0.638584 -0.721068 0.104241 -0.639316 0.370904 0.347051 0.072987 -0.547595 -0.528335 -0.587048 0.529127 0.070664 0.432127 0.126063 0.168817 0.448269 -0.878556 0.385316 -0.396454 0.024094 0.182415 -1.939371 1.175473 0.280776 -0.450620 -0.064145 -0.243458 0.504466 0.029641 0.215813 -0.481871 -0.513107 0.194831 0.218700 0.032443 -0.664643 0.207746 -0.495683 -0.348600 -0.590297 -0.310327 0.710884 0.565846 -0.273469 0.015784 0.671325 -0.264438 0.335506 0.612922 0.399240 -0.307937 0.105139 -1.548859 0.338895 0.004660 -0.090546 -0.039956 -0.674544 -0.043106 0.710280 -0.189073 0.930213 0.350567 -0.099917 0.873423 -0.866669 -0.842133 -0.706244 -0.134560 0.211794 0.020151 -0.437958 -0.491136 0.352299 0.410619 0.080296 0.008464 -1.011104 -0.163304 0.272453 1.097044 -0.510117 0.256635 1.090641 0.207783 0.059487 -0.251883 0.173997 -0.116218 0.015037 -0.451981 -0.099374 0.358051 0.400574 -0.658206 0.258201 -0.770119 -0.172750 0.385050 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 30.429152 -3.479101 -2.319903 34.657367 8.479118 -3.505192 0.755731 16.937630 4.354187 -36.878177 -21.074041 23.659299 -1.435722 6.283975 13.876488 4.929993 12.143942 12.537782 -49.224285 5.335633 -4.573495 2.004779 -7.353525 -19.532352 6.814084 11.458846 21.335337 11.261196 9.547738 24.126407 -22.359018 12.400262 16.136793 6.586632 14.760034 0.467651 5.082334 -8.171675 -25.558892 -31.129946 44.546700 7.985652 5.836282 35.502380 -0.446620 23.218575 9.012223 30.851076 24.261113 -6.741539 14.617492 -18.268312 -12.612410 1.694677 -36.897064 15.442962 20.502099 8.591000 -13.204688 14.100808 10.540816 15.781160 15.688998 -17.964804 34.854240 13.987538 24.831992 25.189811 32.150758 -25.772464 11.501945 -1.094562 26.966502 10.042988 8.124178 -35.833889 -1.621991 -30.837764 1.859292 -37.549812 11.709678 -17.656796 32.704896 -22.712331 11.331221 7.742031 -4.174566 26.898855 -25.516591 12.836349 -24.570398 0.343128 -3.693204 28.582323 -4.892923 3.194302 4.951138 4.586843 -4.679786 13.548356 7.405110 -15.112829 10.670269 -45.417740 -20.681050 8.774378 -2.720570 -3.008644 -17.948121 11.596668 -7.825934 12.841597 -33.873313 -27.295592 -0.486177 4.717838 -1.679451 3.200552 -3.875509 -12.611321 -3.780333 25.150066 7.329001 -27.894822 19.319982 -13.708433 -18.249722 14.525978 29.907260 15.644320 -10.607386 -18.546471 2.532084 8.764218 -5.730530 5.019127 8.765577 -8.030765 17.067800 -14.018250 20.359685 -27.900742 -20.922219 -12.961743 -8.460906 -9.067995 40.089772 -1.571132 25.290972 22.319301 -7.573505 -4.344017 -24.283115 -36.848563 16.609488 12.063916 -0.481527 16.910738 -0.128214 9.669321 -20.814914 -17.789051 20.779202 -23.782845 -33.380049 -17.829710 3.027209 -3.323469 -9.002557 -24.155760 25.084527 20.640792 -5.672254 20.369342 -4.701369 -35.304739 -27.625134 -12.544251 26.740685 -11.859346 -0.213616 1.760146 3.434795 -18.158545 -0.219302 -29.758175 6.092538 4.938223 -28.451261 -33.419843 8.809554 -4.536517 7.223243 11.711989 -26.288007 17.800063 6.349111 34.884074 -13.937683 18.495536 14.708607 -36.795040 -40.587665 -11.629018 0.047686 28.754265 1.352002 4.281360 -21.567352 -16.037031 -5.810520 25.177195 -35.230447 17.677734 -3.910868 0.411962 8.141626 -24.754234 -5.806797 -23.518887 10.915285 12.291658 -45.216203 30.097751 16.244214 -28.284731 -8.188912 -36.248311 25.554683 0.557218 43.930356 -23.491191 -13.920842 11.460605 15.709644 -5.821844 -31.237680 13.017888 6.921161 -17.674296 -26.558019 -21.871982 17.749510 11.172553 1.990544 4.038335 25.264021 5.274420 -4.611729 45.436958 10.454700 3.087167 -22.258178 -55.851265 4.920861 43.317116 7.116282 10.080471 -34.931102 -16.734640 4.333182 -3.317090 22.339135 17.223555 17.223442 24.856822 -27.106419 -21.456610 -14.649739 5.520993 5.436322 -9.652928 5.398892 -20.449043 -1.079521 -3.904244 8.482538 -15.704802 -2.736011 -18.789473 -2.594793 22.361602 -3.918485 2.299214 33.347244 21.485031 -16.747843 4.789077 -6.346857 -12.612566 2.877479 -22.930007 -4.841063 5.064582 3.961549 -27.190765 13.369259 3.420630 5.539466 -6.642388 -PE-benchmarks/karatsuba.cpp__main = 70.127780 -4.842106 -2.721963 69.012471 20.119239 -13.629082 1.134763 45.167042 6.884324 -73.063081 -46.610248 47.595545 -5.759194 8.079737 34.811448 9.182055 27.216009 27.328728 -109.475125 16.035175 -14.081326 3.984721 -21.605621 -47.865798 15.741679 29.330223 34.471810 26.920539 18.764097 48.229368 -51.536304 20.919146 29.734258 17.121223 37.320949 -3.047469 11.492825 -20.203592 -47.943986 -66.847641 98.371861 20.740892 10.738665 78.055321 7.746747 47.648196 13.154310 65.067987 43.213001 -10.040684 32.080766 -49.315055 -28.591798 8.564867 -81.018302 35.133997 48.085588 16.474511 -31.136386 34.376851 21.337215 35.128058 33.445646 -44.826470 77.367636 29.697691 51.501345 49.890359 70.455301 -51.086775 24.014746 -3.913428 67.458465 20.021602 6.344787 -76.396842 3.783934 -81.782875 8.938778 -88.468735 30.203259 -40.255922 72.546569 -48.028001 30.520458 23.674673 -10.541664 54.060388 -60.192762 24.009394 -50.852007 0.881437 -10.326916 63.161898 -13.003352 7.692597 14.872340 12.137218 -7.567864 31.351271 11.085359 -28.001059 16.635070 -104.248942 -45.408452 27.803336 -11.321232 -15.838782 -34.208367 23.704374 -3.607148 27.737917 -67.751457 -61.136492 -0.947101 4.606131 -17.971553 8.908222 -11.521196 -27.895203 -15.327971 57.584116 13.404399 -60.552832 39.927307 -32.967904 -41.181842 33.181923 68.898132 33.966449 -21.814104 -36.170923 7.314400 16.614993 -17.656779 5.332904 10.232432 -19.379706 36.726655 -30.652076 43.117812 -59.912876 -42.489686 -31.228512 -16.288673 -14.126249 86.726224 -2.892089 49.667423 58.126115 -11.379410 -8.791028 -49.557211 -79.000609 41.381656 25.996112 3.172269 27.054500 2.203015 15.144469 -40.156005 -46.974481 42.775345 -55.879108 -72.562940 -45.458540 16.328533 -8.521438 -21.181194 -54.536323 58.905002 57.024623 -15.525752 33.643530 -13.028218 -68.262837 -49.970928 -26.677641 55.138412 -21.833942 0.784074 9.496396 13.235716 -39.624151 3.439450 -64.258456 18.201594 7.610243 -61.087321 -68.261466 15.132960 -8.684687 18.821628 19.772286 -52.635029 40.977553 12.489044 78.880812 -35.075619 42.821208 36.642291 -80.529964 -93.358536 -30.985096 7.528946 61.944926 4.747065 12.102879 -46.222294 -30.097715 -11.847762 58.012329 -78.072554 34.665683 -10.543190 -2.690399 19.875525 -50.555667 -19.209654 -51.381479 24.650980 24.524341 -93.873040 64.937778 35.085001 -65.262795 -21.643142 -89.253148 56.016200 3.256015 104.267120 -47.967270 -24.185597 24.651858 34.291056 -14.898136 -70.164392 31.814885 19.025124 -33.634836 -58.650408 -49.021573 37.756631 25.785229 6.643142 13.827795 50.142447 19.275475 -13.052820 101.193114 17.021539 4.228989 -48.024956 -117.873196 7.518379 103.731083 18.357844 22.870077 -74.037162 -40.520551 0.052764 -2.704503 47.493275 45.303720 40.488464 50.837742 -53.234605 -45.583536 -29.297553 20.315212 9.867867 -27.485272 13.637586 -44.145372 -5.272051 -8.408082 21.714573 -27.969729 -3.950940 -56.049693 -12.266186 43.825091 -5.065042 -1.123382 71.145921 45.300583 -38.121122 12.138133 -16.756063 -21.602340 10.466199 -42.878670 -13.568142 3.311900 5.588326 -58.063418 33.139915 14.115244 15.589616 -11.919038 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = 0.277624 -0.459011 0.215402 0.397871 0.390053 -0.023841 0.067556 0.017364 -0.001208 -0.706166 -0.306055 -0.123936 -0.107911 -0.079462 0.249611 0.079193 0.358898 -0.051578 -0.540575 0.137830 0.046388 -0.121438 -0.060281 0.070460 0.054958 -0.402894 0.150937 0.394064 -0.005698 0.322165 -0.317136 0.154059 0.295458 0.119449 0.395612 0.357533 0.209949 -0.163497 -0.070123 0.102006 0.892216 -0.041670 0.008548 0.184514 0.355604 0.488205 -0.008333 0.678638 0.482661 -0.112011 0.531622 -0.460711 -0.088606 0.015470 -0.747921 0.207138 0.370435 0.098372 -0.469099 0.197747 -0.228312 0.145118 0.073571 -0.019845 0.623226 0.092934 0.359195 0.227669 0.548731 -0.336387 -0.172874 0.364333 0.452159 0.286144 0.019167 -0.268825 0.009523 -0.972459 0.033995 -0.150815 0.064142 -0.219082 0.291302 -0.197396 -0.141952 0.399208 -0.224477 0.357631 -0.213878 0.018361 -0.608097 0.126699 0.268144 0.345815 -0.018977 0.008668 0.094004 0.113286 -0.014850 0.435768 0.099045 -0.399844 -0.484182 -1.016329 -0.571216 -0.198750 0.104837 -0.258033 -0.567468 0.114103 0.362776 0.147827 -0.380082 -0.045856 0.134231 0.196334 0.058147 -0.088805 -0.219594 -0.329219 0.132397 0.317687 0.138599 -0.091891 0.082536 -0.702550 0.324534 0.117228 0.300481 -0.206955 0.026062 -0.121393 0.066332 0.196864 -0.135015 -0.131481 0.041299 -0.323916 0.265946 -0.128550 0.402144 -0.495669 -0.051143 -0.509465 -0.168357 -0.072021 1.085826 0.227943 0.478377 0.403984 -0.401247 -0.020033 -0.436642 -0.822694 -0.065325 -0.153723 0.185313 0.088314 -0.078596 0.147297 -0.086167 -0.193562 0.035555 -0.344602 -0.190102 -0.234400 -0.420799 -0.081839 -0.122730 -0.396415 0.171181 0.552893 -0.191235 0.235750 -0.215909 -0.520155 -0.303786 -0.482986 0.270747 -0.208357 0.141762 0.009500 0.017807 -0.590815 0.297632 -0.314132 -0.007439 -0.234062 -0.524361 -0.441226 0.083291 -0.225389 0.135429 0.116071 -0.394543 0.164990 -0.136003 0.297174 0.168885 0.165013 -0.151937 -0.623380 -0.657942 -0.220974 0.042084 0.575995 0.037351 -0.015600 -0.088673 -0.307154 -0.316091 0.397351 -0.544137 0.055475 0.278295 -0.500995 0.238416 -0.228893 -0.153816 -0.246197 0.245517 0.129025 -0.453897 0.611102 0.454222 -0.560206 -0.384010 -0.503648 0.183433 0.113874 0.712050 -0.134513 0.154112 0.133747 0.284167 -0.080069 -0.212197 0.305217 0.076253 0.175868 -0.677292 -0.579220 0.208692 0.491341 -0.051429 0.004299 0.166675 0.354483 -0.118173 0.670679 0.043429 0.162858 -0.238252 -0.931121 0.103218 0.550082 -0.008939 0.388338 -0.526282 -0.257605 -0.136690 0.003996 0.553108 0.374993 0.270531 0.463726 -0.199876 -0.409751 -0.170521 -0.165423 -0.039713 -0.330879 0.309653 -0.358845 -0.122610 -0.240627 0.144842 -0.085537 -0.044497 -0.387432 -0.005389 0.165912 0.243648 -0.018577 0.399328 0.175194 -0.263130 -0.100780 0.134874 0.053849 0.445100 -0.216185 -0.285101 -0.229706 0.016498 -0.159324 0.199632 -0.052081 0.272842 0.046788 -PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.238557 -0.386034 0.197262 0.316539 0.303196 -0.003661 0.062138 0.018965 -0.000414 -0.586619 -0.259959 -0.104115 -0.099620 -0.058749 0.218251 0.075961 0.316399 -0.054329 -0.460041 0.098762 0.031395 -0.092209 -0.056726 0.074964 0.055976 -0.337483 0.106912 0.314586 -0.013799 0.263239 -0.265748 0.121223 0.234743 0.092245 0.317999 0.278193 0.173402 -0.124586 -0.052954 0.096315 0.742958 -0.035304 0.006653 0.171053 0.313005 0.398750 -0.021975 0.571800 0.402263 -0.092144 0.449050 -0.398459 -0.083206 0.031177 -0.613125 0.161690 0.326865 0.081701 -0.378125 0.188015 -0.191493 0.137475 0.049010 -0.021906 0.514752 0.087831 0.317609 0.170538 0.443368 -0.265413 -0.131283 0.289205 0.384809 0.244004 0.001490 -0.226357 0.020349 -0.823436 0.025554 -0.132960 0.071822 -0.191041 0.251251 -0.154648 -0.126343 0.336256 -0.207365 0.276616 -0.174332 0.010990 -0.485559 0.120211 0.217525 0.294411 -0.023649 0.020149 0.071045 0.103762 0.008263 0.345840 0.091690 -0.310158 -0.400797 -0.852276 -0.475327 -0.150334 0.091250 -0.225616 -0.458198 0.113473 0.311556 0.116709 -0.306069 -0.031750 0.103780 0.163260 0.041406 -0.063659 -0.183494 -0.283649 0.101602 0.285694 0.107326 -0.083751 0.087041 -0.607323 0.261453 0.109596 0.264538 -0.172055 0.023753 -0.100517 0.043317 0.164608 -0.128927 -0.094939 0.029325 -0.254442 0.232948 -0.121995 0.328601 -0.425910 -0.049883 -0.421227 -0.141182 -0.047042 0.913698 0.198103 0.393394 0.345161 -0.334831 -0.033534 -0.365527 -0.678255 -0.051044 -0.113900 0.170911 0.069515 -0.057966 0.102201 -0.084646 -0.174039 0.029928 -0.278803 -0.131871 -0.214050 -0.339219 -0.076457 -0.121620 -0.340946 0.158875 0.477921 -0.170590 0.170099 -0.170787 -0.433930 -0.247463 -0.389118 0.216984 -0.165794 0.131740 0.024849 0.029523 -0.499260 0.253878 -0.248843 -0.006246 -0.179508 -0.455767 -0.357508 0.060857 -0.179421 0.114962 0.084231 -0.317454 0.120504 -0.107507 0.255692 0.154846 0.146514 -0.111691 -0.515300 -0.560665 -0.200336 0.019717 0.477435 0.028797 -0.028658 -0.070541 -0.235535 -0.275971 0.333427 -0.448391 0.029130 0.215752 -0.409391 0.182792 -0.170188 -0.126634 -0.211763 0.190789 0.093824 -0.390274 0.513315 0.384055 -0.474379 -0.336608 -0.432431 0.172701 0.084606 0.594211 -0.116754 0.141259 0.100759 0.211603 -0.057996 -0.182889 0.270906 0.073480 0.133231 -0.557584 -0.468063 0.192020 0.400341 -0.050353 0.011272 0.157533 0.298756 -0.091882 0.546669 0.024476 0.121665 -0.192634 -0.776431 0.072590 0.474468 -0.017648 0.327008 -0.446062 -0.225155 -0.116352 0.007676 0.444156 0.321732 0.240296 0.376325 -0.146735 -0.329823 -0.128814 -0.152833 -0.041579 -0.290088 0.255971 -0.281681 -0.105431 -0.180141 0.138791 -0.055509 -0.047970 -0.333634 -0.027213 0.139733 0.200141 -0.017277 0.328228 0.135749 -0.215367 -0.076467 0.108356 0.060790 0.386400 -0.165812 -0.236619 -0.213979 0.004444 -0.139452 0.179273 -0.037867 0.242196 0.044444 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/karatsuba.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/karatsuba.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/karatsuba.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/karatsuba.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 4.221070 -5.730024 -4.422885 10.991785 -0.061371 2.053746 0.841352 -1.330350 0.450242 -15.278213 -5.061508 9.039910 1.940784 1.614010 -0.450519 3.901491 2.899693 1.733481 -13.767823 -0.835311 2.281128 -1.247821 -0.744765 -0.015894 -0.094319 -4.080964 9.587866 2.336326 0.989764 7.595625 -2.106624 7.392710 7.273937 -0.268869 2.643465 4.414491 -3.551371 -0.294267 -5.110106 -3.342086 11.203423 2.203088 1.179052 3.563319 -2.204894 8.323281 2.705656 10.542114 8.649068 -3.229455 6.387954 3.107665 -2.808311 -0.925651 -10.081295 0.687751 3.116369 1.841669 -2.252058 2.438456 -2.385365 2.647259 2.964048 1.488312 12.505800 2.820850 10.669245 8.797281 5.987038 -6.119505 2.465277 0.566077 0.211524 0.471936 8.747888 -7.562729 -6.316120 -1.323044 -1.755989 -8.223672 0.029846 -0.988247 10.286497 -5.594672 -3.453092 -1.810988 3.059624 9.909104 -3.341565 2.787477 -9.627447 -0.059045 0.646232 10.865659 2.014637 2.201228 -2.551568 2.020523 -1.715995 1.230586 3.943961 -7.568227 2.095768 -12.145034 -5.584978 -5.858908 3.303449 3.362361 -9.880434 2.421079 -3.316470 3.749716 -13.089866 -1.338812 0.966636 2.955731 12.072911 0.593089 -2.916936 -0.568968 1.323410 3.872975 3.462257 -3.805455 3.185908 -4.590842 1.576534 1.157498 3.296866 2.054745 -10.936751 -3.157743 1.276460 1.306754 1.932031 4.942067 6.619747 -1.080629 3.797693 -4.546964 6.248339 -9.991752 -3.114834 -4.030680 -6.003345 -4.616422 10.852797 5.990890 8.178401 -1.627591 -4.533038 -0.024422 -11.881200 -14.566841 -0.579411 0.421441 -1.169730 4.413566 -1.728385 3.662812 -7.066803 3.840272 6.057277 -3.748310 -4.656524 -0.366936 -0.831387 1.486737 -2.700384 -2.251454 -1.036079 -1.125928 0.942668 10.930404 -0.748360 -16.669561 -14.214190 -3.603780 6.936589 -4.798482 0.115042 -3.955621 -2.789401 -6.542605 -1.038689 -6.231738 0.171450 0.697908 -5.764135 -9.575898 3.297882 -1.272138 0.346970 2.790899 -7.679796 1.821224 4.115519 3.839655 1.430369 1.921756 -0.277172 -7.571872 -5.886167 2.624654 -5.675067 7.954811 2.849911 -1.223012 -4.522247 -4.410694 -6.992854 3.291389 -6.292389 5.349853 0.897615 -4.794580 1.803851 -7.298698 1.945268 -4.005061 1.954413 0.749906 -14.323771 11.015573 5.589901 -5.244477 0.040469 -1.677928 4.584946 -1.112828 3.989139 -5.813670 -4.372965 0.834420 0.858286 0.241270 -1.115046 1.851726 -1.842680 -3.452216 -8.867530 -4.720798 7.124226 2.869002 -1.067572 -0.567618 4.308282 -4.143617 0.889191 8.383689 4.995061 1.335971 -5.537087 -19.860894 2.082006 0.171400 -2.311127 0.781294 -6.361173 -2.241631 3.505341 -3.684352 6.570432 -1.613175 -3.067509 6.889932 -9.733931 -6.765351 -6.817363 -3.362531 1.268426 -0.065482 0.922994 -3.450502 0.906607 -1.000431 1.967662 -3.605151 -4.848154 3.408929 4.563348 7.991437 -0.030699 0.451425 7.483505 3.342755 -1.889018 -2.373084 -0.070575 -5.272770 3.488796 -11.436048 -1.089762 2.629549 3.525678 -5.696499 0.577276 -1.428642 2.204062 -0.027649 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = 1.510535 -3.446567 -1.476660 5.270574 0.342186 1.010610 0.388908 -0.874258 0.409633 -7.058734 -2.230373 4.072896 0.598385 0.723004 -0.320245 1.284998 1.513785 0.766961 -6.479150 -0.426914 0.789124 -0.438439 -0.011028 -0.203264 -0.021257 -1.787092 5.455585 1.518976 0.501829 3.153388 -0.869603 3.000247 3.261684 0.097484 1.293560 2.093113 -1.323000 -0.097111 -2.759374 -1.561147 5.243439 0.866477 0.514249 1.878263 -0.655400 3.677608 2.449175 4.413600 5.094887 -1.274963 2.731606 1.246838 -1.175822 -1.165858 -4.915584 0.181302 1.428096 1.044011 -1.191878 1.032705 -0.739799 0.933735 1.214491 0.627966 5.846096 0.553352 5.227978 3.887085 2.573119 -2.901561 0.658484 0.542759 0.730998 0.701501 4.294571 -4.153456 -3.290254 -1.242239 -1.170110 -3.798469 0.123577 -0.430202 4.417731 -2.114511 -1.643377 -0.993332 0.570926 4.196348 -1.148137 0.771300 -4.478907 0.005915 0.759548 4.893501 1.001649 0.582646 -0.565296 0.873002 -0.636990 0.927938 2.284596 -3.543055 1.639356 -6.262953 -2.142005 -2.740824 1.675464 1.121316 -4.111132 1.031936 -2.129248 1.095427 -5.790823 -0.901298 0.643309 1.222794 5.649449 -1.718150 -0.666735 -0.319778 0.810786 1.877277 1.863974 -2.172490 1.198047 -1.573321 1.038916 0.403384 1.437666 0.900997 -4.143605 -1.845835 0.286858 1.511507 0.791279 1.619393 2.638647 -0.386075 1.612108 -1.926835 3.022064 -4.514288 -0.905451 -1.711874 -2.072069 -2.109494 5.676765 1.946924 4.030986 -0.882090 -2.046085 0.263288 -5.072230 -7.154364 0.154103 0.370586 -0.720183 2.080591 -0.754826 1.818747 -3.007768 1.353483 2.820951 -1.395176 -2.015220 0.038791 -2.071150 0.677364 -1.074785 -0.967520 -0.104394 -0.199347 0.792562 4.959413 -0.585053 -8.793675 -6.046230 -1.646265 2.949873 -2.234815 -0.219123 -1.402475 -1.551882 -2.782782 -0.019316 -2.958655 0.181317 0.135970 -3.165344 -4.292574 1.311848 -0.845742 1.168133 1.556510 -3.377772 0.743322 1.238084 2.403299 0.583821 0.923382 -0.005080 -3.758681 -2.615615 0.915938 -2.358069 3.925188 0.398732 -0.430511 -2.389502 -1.863153 -3.012027 1.223130 -2.425556 2.234314 0.427005 -2.437128 0.743192 -2.938406 1.819490 -1.667360 0.840556 0.750044 -7.026244 5.000603 2.907888 -2.290634 -0.242649 -0.309495 1.551821 -0.636600 1.698480 -2.801986 -2.166737 0.477854 0.372419 0.151468 -0.885121 0.683103 -0.330805 -1.661509 -4.362173 -2.674559 2.832987 1.149082 -0.376236 -0.440544 2.007396 -1.629664 -0.524996 4.271976 1.992281 1.246494 -2.601569 -9.729292 1.034059 1.277657 -0.810776 0.856408 -2.971309 -1.066655 1.601723 -1.564342 2.843073 0.119452 -1.698004 3.121012 -4.262290 -2.806183 -3.080455 -1.962903 0.803155 -0.028168 0.644268 -1.808872 0.277103 -1.028341 0.517702 -1.939252 -1.477868 2.094304 2.090122 3.312181 0.301558 0.505406 3.195611 1.212270 -1.107756 -0.962476 0.100815 -2.547952 2.047216 -5.281489 -0.554684 1.061563 1.589482 -2.190980 -0.031117 -0.874458 1.303108 -0.235317 -PE-benchmarks/kmp-algorithm.cpp__main = 1.164887 -0.881197 -0.366831 2.349505 0.227985 0.021126 0.592877 0.406489 0.012103 -3.863171 -1.462492 1.628671 0.276207 0.013556 0.012325 0.552361 0.822325 1.086819 -3.671780 -0.052995 0.819638 0.288281 -0.095878 -0.585597 0.014785 -0.824560 1.103440 0.843902 0.369480 2.183321 -0.781051 1.052953 1.908124 0.112116 0.664588 1.634691 0.036904 -0.024951 -0.602979 -0.746341 3.202345 0.750586 0.087167 1.192715 0.064157 2.320964 0.473367 2.235781 1.109083 -0.944583 1.164875 -0.401599 -0.958872 -0.379887 -2.430484 0.533175 1.618564 1.405139 -0.982488 1.231281 -0.430415 0.581223 0.822507 -0.226750 2.633127 1.135117 1.715375 2.008744 2.207340 -1.727704 0.328544 0.182037 0.498001 0.021880 1.534333 -1.800841 -1.112079 -1.971590 -0.348809 -2.989769 0.010304 -0.165789 3.091877 -1.745068 0.063002 0.692456 0.547846 2.108656 -0.914081 0.023822 -2.455024 0.049614 -0.028399 3.138680 0.406354 0.399006 -0.370231 0.724828 0.093974 0.709646 0.731047 -1.766734 -0.488004 -3.895179 -1.386639 -1.345438 0.349380 0.468576 -2.280997 -0.082644 0.427737 1.246426 -3.563468 -0.366352 0.655410 0.895557 1.462953 -0.223174 -1.090194 0.076726 -0.222924 0.536273 0.785338 -1.421722 0.355576 -0.948452 -0.081904 0.243312 0.828694 0.287378 -2.649079 -0.875877 0.145235 0.040704 0.126635 0.782399 0.977862 -0.640350 1.039065 -1.698596 1.765830 -2.550413 -0.352316 -0.788124 -1.833353 -1.048128 2.846939 1.040014 1.522660 -0.187946 -1.202726 -0.341599 -2.579264 -3.715766 0.620156 0.155847 0.577812 0.762743 -0.470782 0.389403 -1.678443 0.220034 1.105220 -1.015589 -0.862499 -0.174481 1.023330 -0.070103 -0.766557 -1.169530 0.215106 0.914644 0.157885 1.848277 -0.880995 -2.793101 -3.065149 -1.244059 1.924107 -1.038385 0.016939 -0.727146 -0.470438 -1.712775 0.260610 -1.655901 0.461758 -0.111090 -1.558202 -2.663469 0.858724 -0.568138 -0.060003 0.877990 -1.832386 0.474642 0.753404 0.955339 0.097255 0.259133 0.388210 -2.282419 -1.896274 0.097358 -0.902109 1.837727 0.940256 0.194263 -1.369541 -0.917772 -1.643000 1.317286 -1.410962 1.084163 -0.001180 -1.143868 1.216523 -1.584544 0.290953 -1.612119 0.749164 0.582511 -3.268153 3.017369 1.460707 -1.539285 -0.412249 -0.888510 0.844158 0.281400 1.721731 -1.588301 -1.291448 0.780569 -0.414918 -0.040803 -0.893470 0.664154 -0.302327 0.079118 -2.447957 -1.214835 1.640607 1.165612 -0.350565 0.578745 1.244362 -0.437115 -0.022757 2.599241 1.114254 0.235196 -1.550531 -4.449858 0.937212 0.519881 0.128008 0.077239 -1.466468 -0.845635 0.900737 -0.092827 1.833347 0.886787 -0.592749 1.946570 -2.382602 -1.980170 -1.133677 -0.407602 0.850366 -0.708359 0.275059 -1.002149 0.361996 -0.199236 0.585835 -0.133861 -1.214246 -0.331183 0.786657 2.100697 0.247719 -0.324131 2.303693 0.361997 -0.867718 -0.065050 -0.235466 -0.362052 0.777508 -2.030518 -0.358435 0.157957 0.970696 -1.488038 1.072446 -0.397229 0.317298 0.595262 -PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = 0.793010 -0.420714 -0.363100 1.110340 0.143541 -0.155879 0.374343 0.301980 -0.045177 -1.586527 -0.684916 2.062878 -0.077723 -0.256191 -0.279122 0.164860 0.520346 0.425883 -2.220806 0.240752 0.074709 -0.032346 -0.496304 -0.436474 0.051030 -0.477886 1.147714 0.974990 0.046368 1.025095 -0.389098 0.348667 0.734555 0.335666 0.690506 0.916538 -0.301620 -0.307742 -0.477656 -0.705932 1.645678 0.685838 -0.045689 0.822213 0.354752 1.297607 0.610141 0.964224 1.541725 -0.277109 0.206679 0.743759 -0.816288 -0.415708 -1.472659 -0.076936 0.011350 0.059854 -0.553509 0.585888 -0.297545 0.116166 0.405420 -0.007971 1.696955 0.059511 0.893386 0.779704 1.147725 -0.858986 0.048774 0.360304 0.887637 0.367547 0.887243 -0.590117 -1.091322 -1.047796 -0.166392 -2.113915 -0.248393 -0.177303 1.834500 -0.724087 -0.032133 -0.125519 0.270306 0.958724 -0.655661 -0.252578 -1.393707 0.007186 0.101752 1.681217 0.278746 0.294253 0.042227 0.217831 -0.002886 0.545646 0.104120 -1.203323 0.240533 -2.434344 -0.233298 -0.853589 -0.084191 -0.169484 -1.096604 0.169807 0.251715 1.735316 -1.757868 -0.518338 0.442640 -0.208704 0.384787 -0.174131 -0.228423 0.190907 0.071200 0.592532 0.738111 -0.654466 0.053440 0.169808 0.140457 0.057473 0.474602 0.449385 -1.696563 -0.641517 0.675560 0.437790 0.070742 0.234604 0.162993 -0.145153 0.435739 -0.945492 1.060738 -1.214375 0.053661 -0.523965 -0.347097 -0.567813 1.297037 1.295779 1.222752 0.031372 0.187970 0.070248 -1.368462 -2.342945 0.605940 -0.252784 -0.079690 -0.010303 -0.070490 0.211779 -0.858770 -0.101526 0.706181 -0.535075 -0.525262 -0.187995 0.376796 0.238551 -0.292170 -0.417182 0.005215 0.290294 0.514968 0.731793 -0.649513 -2.930752 -1.382760 -0.659979 0.962827 -0.520112 -0.335498 -0.291653 -0.556171 -0.126228 0.069463 -0.836804 0.266487 -0.292594 -0.715521 -1.212424 0.317226 -0.317971 0.027831 0.195716 -0.793741 0.199752 0.564971 0.475778 -0.006379 0.344860 0.195401 -0.885491 -0.571414 0.170612 -0.258901 1.167011 0.848619 0.138557 -1.341146 -0.358290 -1.176201 0.804641 -1.508964 0.699314 0.133483 -1.105079 0.844694 -0.815725 0.270366 -0.111042 0.645581 0.249718 -2.586419 1.482128 1.467286 -1.042355 -0.336092 -0.333943 0.171343 0.403319 1.053712 -1.069902 -0.626383 0.278304 0.009070 -0.017239 -0.101960 0.394892 0.062567 -0.014413 -1.362040 -0.817090 1.014497 0.486778 -0.061141 -0.148347 0.229672 -0.196170 0.052948 1.400170 0.362902 0.544220 -1.120627 -3.009374 0.436488 0.516313 0.024173 0.833287 -0.731579 -0.641133 0.173002 -1.109669 1.094410 -0.592006 -1.070369 0.925050 -1.208076 -1.001831 -1.045947 -0.453035 0.229542 -0.171118 1.091061 -0.472424 -0.029407 -0.464837 0.276265 -0.501527 -0.104210 0.228379 0.619914 0.664810 0.762884 -0.304172 1.121501 0.025618 -0.506660 -0.297154 -0.151976 -0.515375 0.427063 -1.695652 -0.250317 -0.105442 0.652234 -0.671606 0.446487 0.220349 0.748477 0.085592 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = 4.283516 -1.972709 -2.803627 4.968381 0.367449 -1.579083 1.229816 1.342452 0.496976 -6.311688 -2.472283 7.215938 0.649404 -1.475146 -0.617715 1.905463 2.117210 1.269858 -7.847357 1.549570 0.066729 -0.864984 -4.334283 -1.188516 -0.406622 -2.422376 3.492920 3.152469 -0.172677 4.222545 -1.659214 1.870549 3.245553 -0.090717 3.446515 3.949426 -0.790324 -0.590313 -1.253537 -1.241004 7.033311 3.519598 -0.793185 2.585527 1.677883 5.431045 1.377128 5.680055 2.310426 -1.259399 1.748044 2.988401 -2.942829 -1.014556 -6.222693 0.264335 2.331956 0.159557 -3.177030 2.895515 -1.954891 0.991202 2.296879 2.032901 7.285310 1.237040 4.201858 3.862178 5.459653 -3.011810 0.812080 1.202287 3.536391 0.615797 4.493910 -2.027743 -4.611808 -2.428720 0.288146 -6.478501 0.017807 -0.578443 7.229170 -3.778015 -0.321027 0.233682 2.164834 4.670927 -3.906533 -0.776669 -5.242337 -0.180878 -0.793042 8.584473 0.720511 2.356085 -0.515933 2.185085 -0.258284 1.810956 0.061647 -5.730089 0.240190 -9.361608 -2.744165 -3.615026 -1.172695 -0.397950 -5.186060 -0.223108 1.047881 5.756707 -7.137468 -0.572444 1.461216 -0.981465 4.962671 0.466038 -1.759512 1.157699 -0.483951 1.961639 2.334824 -1.891939 0.436057 -0.723917 1.598346 1.179444 1.779396 1.744871 -7.721306 -0.314352 2.828043 0.500688 -0.171389 1.801902 1.126556 -3.007136 2.005531 -3.921225 4.241562 -6.017822 -1.002757 -2.934251 -3.623363 -1.848426 4.204704 4.567196 4.964449 -0.258780 -0.276658 0.196779 -7.140944 -10.486124 1.608198 -0.929034 -0.721425 -0.530577 -0.491867 0.186982 -3.526638 0.027499 3.649956 -3.118043 -2.203085 -1.119551 4.475808 1.017774 -1.687283 -1.055420 -0.656632 1.277791 3.005927 4.022762 -2.389457 -11.050491 -6.615945 -2.163813 4.038385 -1.901006 -0.529902 -1.158241 -2.471646 -3.133530 0.404627 -3.354771 1.631417 -2.010232 -1.495447 -5.197429 1.133703 -0.977989 0.166309 -0.206812 -4.031312 1.329508 2.504507 0.924603 -0.194763 1.340456 0.858351 -4.134076 -3.262807 1.856640 -0.875919 6.225197 3.602911 0.544621 -2.430194 -1.198623 -5.449713 3.192712 -6.269342 2.763014 1.589570 -4.349988 3.948334 -3.997355 -1.235410 -1.935400 2.812970 0.119596 -6.051878 7.468403 5.816548 -4.808477 -0.907938 -1.309980 2.029836 1.462310 4.690771 -4.121331 -2.489841 1.438803 0.147464 -0.402516 -0.098929 1.695849 -0.407147 0.881394 -5.442339 -2.460137 4.311139 2.612283 -0.386010 -0.575901 -0.348113 -2.310241 -0.157710 5.618555 1.878899 2.159602 -4.822356 -10.966822 1.609729 -2.307391 -0.948729 1.462860 -2.495384 -2.323003 0.241215 -3.295243 4.625890 -1.228773 -3.575385 3.979283 -6.535513 -5.145507 -4.356888 -1.234193 0.746391 -1.013855 3.614730 -2.545669 0.369845 -1.887996 2.502865 -2.106439 -1.749036 0.698238 2.449151 2.588152 1.578682 -2.573158 4.967206 0.380197 -1.288704 -1.607327 -0.486978 -1.886125 2.196345 -6.301632 -1.626073 -1.057038 3.099686 -3.283963 2.840351 0.686787 3.471159 1.469722 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = 4.404775 -0.601655 -3.109404 4.426158 0.079228 -2.044821 0.844436 1.394178 -0.050479 -5.627123 -2.181619 6.396372 0.837595 -1.995581 -0.461684 2.433964 1.904720 1.524192 -6.370497 1.972718 0.158094 -0.831316 -4.493258 -1.142373 -0.474938 -2.146143 1.922098 2.346748 -0.225864 3.986559 -1.796100 1.897843 3.098855 -0.587787 3.173672 3.704243 -0.992880 -0.692195 -0.297688 -0.777448 6.434881 2.754580 0.021404 2.184932 1.857793 5.017559 0.101709 5.649975 0.977080 -1.215402 2.230809 3.110455 -2.624403 -0.222260 -5.527918 0.489563 1.981149 0.081048 -3.169526 2.814750 -2.285991 1.201600 2.363260 1.998000 6.532654 2.007483 3.281082 3.904863 5.614193 -2.226500 1.068094 0.923941 3.162888 0.206601 4.040774 -1.547461 -3.595436 -1.298056 0.168677 -5.469238 0.751742 -0.422756 8.220516 -3.976453 -0.272659 0.578932 2.855355 4.742997 -3.881335 -0.649477 -4.441654 -0.065682 -1.668964 7.664520 0.343044 2.634002 -1.246246 1.998091 -0.660256 1.421248 -0.886885 -5.315829 -0.787986 -7.893383 -3.655487 -3.236892 -1.611265 -0.482370 -5.502339 -0.208969 1.798968 5.362805 -6.906372 -0.225313 1.123459 -1.071015 4.463297 2.449034 -2.791094 0.618771 -0.984657 2.031825 1.393854 -1.025527 0.176534 -1.459931 0.808826 1.113311 1.677656 1.304365 -7.734865 0.272305 2.425538 -0.765357 -0.301187 1.933856 1.202192 -3.294004 1.887595 -3.356570 3.672868 -5.957110 -1.881374 -3.266045 -4.149919 -1.576539 3.453982 4.659501 4.490229 -0.065576 -0.189804 -0.267508 -7.150361 -8.278259 1.081377 -1.824093 -0.504574 -0.543748 -0.323819 -0.363738 -2.887748 -0.033300 3.212344 -3.371688 -2.011281 -1.623748 5.936858 0.649120 -1.672051 -1.619466 -1.141434 1.063738 2.674766 3.397470 -2.249845 -9.003088 -6.362380 -1.967159 3.797346 -1.667964 0.047170 -1.229663 -2.019875 -2.671301 0.213641 -3.143882 1.152829 -2.140691 -0.533693 -4.912322 1.242666 -0.706865 -1.127058 -0.987248 -3.835545 1.555067 2.942585 0.378889 -0.238722 1.118350 0.272668 -4.090272 -3.290864 1.841771 -0.610314 5.101521 4.779149 0.731182 -2.205458 -1.054789 -5.331214 2.828094 -5.907293 2.507876 2.063235 -3.690406 3.813661 -3.837726 -1.364088 -2.284411 2.600964 -0.528350 -6.500346 6.978038 5.072553 -4.885232 -0.572852 -1.887798 2.453516 1.337788 4.439295 -3.329962 -1.776488 1.484207 0.142669 -0.550203 0.052852 1.747075 -0.860139 1.390708 -4.749294 -1.673204 4.359016 2.879007 -0.497093 -0.787151 -1.016537 -2.304048 0.784788 4.780456 1.936249 1.636978 -4.292087 -9.892439 1.238838 -3.016840 -0.933163 1.239936 -1.731816 -2.056735 -0.029030 -3.012330 4.543573 -2.328964 -2.627142 3.546014 -6.301797 -5.210770 -3.715409 -0.329611 0.712446 -1.252024 3.254843 -2.528955 0.026225 -1.512835 3.028824 -1.704897 -2.118873 -0.171874 2.256986 2.841793 1.612733 -2.874542 4.727087 0.495223 -1.024719 -1.415948 -0.525249 -1.074094 1.571641 -5.687314 -1.547918 -1.183188 2.880613 -3.379174 3.385220 0.649212 3.297560 1.640329 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 1.582149 -0.573111 -0.926118 1.694279 0.270656 -0.659189 0.299598 0.450659 0.011960 -2.300316 -1.000699 1.899675 0.206406 -0.706164 0.090366 0.817870 0.891827 0.464965 -2.416299 0.740354 0.087602 -0.386005 -1.553916 -0.221585 -0.136956 -0.966302 0.583052 0.997211 -0.082752 1.504122 -0.779719 0.774077 1.213788 -0.136855 1.327717 1.448850 -0.250712 -0.351234 -0.037442 -0.152121 2.719268 0.845006 0.045182 0.805064 0.821745 1.952968 -0.077601 2.460482 0.687739 -0.473697 1.249088 0.483924 -0.841265 0.026520 -2.340342 0.299745 0.907887 0.055282 -1.387115 1.033189 -0.914387 0.498507 0.818687 0.552113 2.643723 0.746657 1.287491 1.439183 2.137390 -0.901826 0.277041 0.507074 1.298424 0.212428 1.222489 -0.710975 -1.040237 -1.156118 0.096006 -1.856624 0.328168 -0.308166 2.891686 -1.435002 -0.149724 0.457938 0.734735 1.788146 -1.396078 -0.185519 -1.906236 0.025335 -0.279808 2.577680 0.077530 0.811474 -0.329820 0.704900 -0.312829 0.712415 -0.296938 -1.997168 -0.712194 -3.344129 -1.631971 -1.138353 -0.447631 -0.338613 -2.238518 -0.009064 0.813927 1.744306 -2.531324 -0.100225 0.408977 -0.245303 1.363437 0.898972 -1.158877 -0.093506 -0.213820 0.935199 0.573594 -0.320088 0.152626 -1.177456 0.491155 0.472021 0.755594 0.278083 -2.434620 0.013418 0.828995 -0.054513 -0.241887 0.542189 0.425522 -1.207965 0.817265 -1.138900 1.456409 -2.314248 -0.650006 -1.490704 -1.488957 -0.552696 2.038430 1.752821 1.864996 0.314224 -0.393256 -0.058012 -2.691761 -3.270810 0.288476 -0.771509 0.028838 -0.138541 -0.156895 -0.009980 -0.947590 -0.108175 1.011686 -1.342104 -0.807723 -0.704509 1.589944 0.180365 -0.645618 -0.815532 -0.247534 0.778915 0.586536 1.233187 -0.874730 -3.206180 -2.262697 -0.930339 1.412978 -0.663057 0.187511 -0.370848 -0.575307 -1.324501 0.240370 -1.252443 0.281626 -0.894723 -0.533514 -1.884014 0.423434 -0.370053 -0.221234 -0.251845 -1.485288 0.658201 0.964990 0.506552 0.049888 0.524636 -0.026989 -1.735393 -1.531850 0.400572 -0.185438 2.079820 1.642963 0.202333 -0.744336 -0.566513 -1.966707 1.196786 -2.365116 0.854822 0.900222 -1.601734 1.364929 -1.449900 -0.582545 -0.890195 0.993696 -0.074917 -2.623884 2.547297 1.895817 -1.970102 -0.406145 -1.065798 0.961657 0.487854 1.926703 -1.054445 -0.352792 0.551795 0.259089 -0.219251 -0.210134 0.763344 -0.212322 0.545616 -2.018538 -0.943421 1.638569 1.221443 -0.168596 -0.267817 -0.229153 -0.409925 0.213238 2.025730 0.626193 0.571236 -1.520967 -3.959851 0.461772 -0.372563 -0.285267 0.724028 -0.963486 -0.790586 -0.181322 -1.046772 1.841236 -0.441860 -0.584494 1.477672 -2.139796 -1.962356 -1.347886 -0.144270 0.181201 -0.630596 1.248566 -1.064831 -0.061655 -0.652412 1.116727 -0.541137 -0.735205 -0.511258 0.747809 1.014261 0.652608 -0.917089 1.780684 0.265898 -0.524851 -0.537306 -0.073394 -0.318946 0.833726 -2.033630 -0.739137 -0.530436 0.935165 -1.237228 1.194361 0.131771 1.296355 0.568314 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = 0.783563 -0.358288 -0.233793 0.720071 0.090747 -0.246085 0.217955 0.454119 -0.117652 -1.448346 -0.838332 0.796704 -0.046223 -0.339307 0.214923 0.319949 0.474304 0.310800 -2.201444 0.318274 0.312299 -0.009006 -0.431136 -0.243649 0.126700 -0.475263 0.101486 0.548599 -0.060399 0.851455 -0.511710 0.436566 0.609535 0.233268 0.623622 0.675709 -0.528803 -0.331680 0.240003 -0.149669 1.507682 0.634583 -0.140958 0.429616 0.469247 1.020969 -0.076158 1.025075 0.520714 -0.266121 0.571101 -0.105908 -0.635164 0.136408 -1.199760 0.027076 0.590571 0.268849 -0.462385 0.598293 -0.512083 0.304969 0.322870 -0.260293 1.725562 0.292381 0.837751 0.545231 1.018469 -0.401919 0.226331 0.080417 0.628308 -0.050940 0.397026 -0.496338 -0.339047 -1.620837 -0.046928 -1.983821 0.089488 -0.190695 1.644059 -0.635094 0.145074 0.220814 0.315673 0.913079 -0.611378 -0.187170 -1.047915 0.156168 -0.011088 1.541580 0.030126 0.335563 -0.092312 0.315996 0.012783 0.323350 -0.036667 -0.799290 -0.511619 -2.273072 -0.533963 -0.469539 -0.060503 -0.194841 -1.314399 0.242728 0.652878 1.074211 -1.539737 -0.232229 0.241524 -0.008284 0.062091 0.175218 -0.747472 -0.110228 -0.238564 0.785991 0.367085 -0.462029 0.122268 -0.863301 0.142301 0.217061 0.539151 0.122467 -1.372646 -0.283100 0.436067 0.051249 -0.100832 0.427632 0.258391 -0.133753 0.426551 -0.903960 0.812905 -1.343236 0.067856 -0.716711 -0.564261 -0.282722 1.264818 1.343316 0.653264 0.356578 -0.089837 0.000542 -1.433965 -1.895357 0.243227 -0.322359 0.344373 -0.164003 -0.045056 -0.024268 -0.528011 -0.127865 0.391391 -0.621583 -0.314445 -0.525337 0.951272 0.141440 -0.400973 -0.515878 -0.012109 0.749252 -0.122016 0.384302 -0.468579 -1.490921 -1.324952 -0.627963 0.767147 -0.401899 0.010743 -0.351819 0.019517 -0.621471 0.263147 -0.606086 0.092393 -0.205508 -0.637391 -0.978536 0.071881 -0.183961 0.004796 -0.090411 -0.657304 0.185184 0.755866 0.593672 0.110335 0.304581 0.126310 -0.808511 -0.879500 -0.051627 -0.209149 0.966323 0.840725 -0.024741 -0.914082 -0.203363 -1.110424 0.922260 -1.101616 0.420508 0.020797 -0.918353 0.688751 -0.653584 -0.124171 -0.346866 0.409950 -0.099674 -1.959423 1.320378 0.964676 -1.042000 -0.323903 -0.943897 0.532648 0.269472 1.003931 -0.526062 -0.116076 0.115183 -0.065112 -0.075936 -0.280515 0.510184 -0.111519 0.125635 -1.137519 -0.615272 0.966025 0.546641 -0.103449 0.141732 0.128571 0.099118 0.174925 1.055345 0.225233 0.022409 -0.765608 -2.449002 0.174432 0.545804 0.100388 0.405521 -0.619232 -0.633975 -0.189300 -0.503474 0.962413 0.374340 -0.441481 0.715131 -0.908412 -0.875821 -0.762197 0.045852 0.075549 -0.390079 0.554422 -0.370305 -0.080904 -0.085801 0.566661 0.078276 -0.628392 -0.646644 0.295058 0.735743 0.520934 -0.553169 0.913688 0.158397 -0.372650 -0.266665 -0.109110 -0.161782 0.524861 -0.874928 -0.387311 -0.271515 0.343040 -0.639561 0.640233 0.171342 0.676585 0.217595 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 1.536909 -1.533158 -0.520633 1.726110 0.376288 -0.269019 0.223239 0.232431 0.505558 -2.212844 -0.737790 1.522701 0.073159 -0.340498 0.218516 0.718598 1.041152 -0.114572 -2.465261 0.584474 -0.097488 -0.494045 -1.154716 0.133090 -0.017372 -1.148891 1.324260 1.096066 -0.051431 1.295493 -0.775830 0.718059 1.127528 -0.227201 1.270295 1.270901 0.021690 -0.288666 -0.611822 0.048417 2.638613 0.706920 -0.124881 0.815523 0.763350 1.840681 0.333656 2.849521 1.853133 -0.474243 1.558025 0.149310 -0.776814 -0.165984 -2.370552 0.257115 1.022685 -0.050873 -1.389182 0.874637 -0.756124 0.519633 0.640013 0.849037 2.413018 0.425142 1.684816 1.174105 1.852089 -1.022644 0.082130 0.715365 1.457116 0.750548 1.316499 -1.216903 -1.199440 -1.472949 0.221964 -0.873847 0.180197 -0.586011 1.532333 -1.182151 -0.436868 0.400757 0.061536 1.603260 -1.202264 0.087144 -1.850387 0.112582 0.359713 2.334746 -0.097453 0.636423 0.024711 0.672858 -0.272556 0.843343 0.438489 -1.996125 -0.457200 -3.003001 -1.581171 -1.145273 -0.089958 -0.324767 -1.978065 0.392647 0.278857 0.827304 -1.937129 -0.041053 0.345047 -0.043781 1.982738 0.345701 -0.373810 -0.411033 0.213660 1.104940 0.672881 -0.553874 0.367075 -1.353905 0.963896 0.761469 0.742276 0.094336 -1.390165 -0.014822 0.748666 0.650450 -0.247908 0.393530 0.450318 -1.302874 0.862707 -0.894018 1.453872 -2.057096 -0.863752 -1.457906 -0.725197 -0.532773 2.697245 1.113794 2.005514 0.502327 -0.791881 0.054197 -2.275208 -3.266054 -0.057310 -0.497212 -0.140873 0.187233 -0.186088 0.296939 -0.812198 -0.128414 0.608634 -1.183431 -0.778342 -0.572180 -0.370811 0.169295 -0.511092 -0.632297 0.031377 0.791573 0.485853 1.475982 -0.577738 -3.795758 -1.872282 -0.945573 1.250201 -0.705834 0.237019 -0.150478 -0.634022 -1.599617 0.349007 -1.173834 0.152769 -0.787433 -1.000725 -1.717161 0.461594 -0.502628 0.622741 0.003820 -1.556050 0.500476 0.106325 0.980604 0.303699 0.681151 -0.131803 -2.080919 -1.677854 0.166589 -0.322690 2.582263 0.489380 -0.118733 -0.136479 -0.677833 -1.606258 1.027945 -2.472341 0.702618 0.916244 -1.650907 0.974211 -1.051676 -0.513276 -0.972433 0.941776 0.152954 -1.548079 2.632004 1.963799 -1.865729 -0.571496 -0.795521 0.877773 0.350595 1.838137 -1.046752 -0.425912 0.410600 0.601410 -0.164356 -0.233759 0.781351 -0.024465 0.191497 -1.967487 -1.142657 1.278355 1.160884 -0.121530 -0.466686 0.095010 -0.262846 -0.256718 2.003313 0.400948 0.827609 -1.384430 -3.948529 0.465043 0.469534 -0.468911 0.954273 -1.601996 -0.713776 -0.101321 -0.600990 1.686081 0.150200 0.027100 1.456088 -1.869488 -1.731315 -1.359190 -0.699580 -0.073853 -0.396864 1.158154 -1.056725 -0.072279 -0.777281 0.871046 -0.888721 -0.324271 -0.066873 0.663291 0.659685 0.532800 -0.539818 1.570621 0.394334 -0.548909 -0.613184 0.116550 -0.657462 1.059843 -1.499084 -0.626406 -0.482715 0.757101 -1.019316 0.716840 0.072890 1.289135 0.063724 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 3.214551 -2.168288 -0.217983 2.894751 1.236568 -0.641899 0.716471 1.448774 0.141541 -5.055970 -2.865459 1.358430 -0.082878 -0.987230 1.209956 0.953703 2.297765 0.013330 -6.325316 1.096021 0.583249 -0.875750 -1.903537 0.141831 0.072477 -2.395017 0.200118 2.602837 -0.179649 2.906644 -1.721610 1.345937 2.450658 0.136611 2.726773 2.980342 -0.551274 -0.985161 0.473022 0.063285 6.001606 1.413519 -0.321412 1.471988 2.033567 3.954586 -0.782835 5.636179 1.979249 -1.065103 3.852638 -1.961276 -1.727376 0.314221 -4.859929 0.658618 3.227077 0.667229 -2.984343 2.136896 -2.082823 1.079909 1.182528 0.211011 5.161171 1.630865 2.879675 2.200586 4.015749 -2.164482 -0.049442 1.541328 2.504332 0.991421 0.328435 -2.485657 -0.730833 -5.161426 0.836887 -3.792807 0.232233 -1.390181 4.514174 -2.260268 -0.367020 1.694605 0.001918 3.189113 -2.485646 -0.090332 -4.023877 0.304094 0.536301 4.377233 -0.495279 0.989305 0.513805 1.201656 -0.311307 2.235886 -0.256036 -3.432935 -3.221946 -7.354431 -3.404602 -1.750581 0.064112 -0.881671 -4.301664 0.386723 2.162822 1.293558 -4.119892 -0.418697 0.932581 0.572557 1.209901 2.177539 -2.700713 -1.607834 -0.057315 2.372531 1.550201 -0.899484 0.726316 -4.297675 1.418916 1.284187 1.719288 -0.188254 -3.289667 -0.318723 1.436415 0.125947 -0.760633 0.476742 0.645564 -1.797998 1.889506 -2.064079 3.157929 -4.865582 -0.906469 -3.508202 -2.093571 -0.868448 5.664040 3.567030 3.029678 2.077541 -1.486667 0.124666 -4.550319 -6.015430 -0.156682 -1.104339 1.348470 -0.444230 -0.481430 0.515933 -1.371276 -0.630091 0.363894 -2.444580 -1.475811 -1.866552 1.512166 0.273946 -1.257271 -1.873737 0.554354 2.693413 -0.851320 2.226115 -1.664339 -5.010828 -3.730434 -2.568640 2.687341 -1.380790 0.473261 -0.414968 -0.217201 -3.580159 1.108404 -2.444669 0.057162 -1.658791 -2.551417 -3.683884 0.973108 -1.037569 0.527604 0.208170 -2.905919 0.961807 1.520477 2.842842 0.774601 1.335926 -0.398363 -4.063248 -3.987402 -0.554264 -0.276419 4.705218 2.306059 -0.234414 -0.783544 -1.436220 -3.276613 2.974932 -3.820519 1.232918 1.252303 -3.492440 2.373986 -2.245972 -1.105479 -2.342852 1.786584 0.489422 -4.927155 5.051441 3.405055 -4.001281 -1.751089 -3.494919 1.654978 0.929906 4.251915 -1.343885 -0.200440 0.913262 0.883524 -0.448878 -1.077690 1.863823 0.127344 0.908123 -4.494730 -2.791929 3.054236 2.735738 -0.264564 0.276315 0.468606 1.160566 0.441707 4.544880 0.590331 0.350737 -2.352145 -8.482964 1.082803 2.694611 -0.409932 1.533986 -2.966385 -2.236968 -0.924609 -0.644017 3.776057 2.022038 0.394587 3.194923 -2.752113 -3.569622 -2.698721 -0.115708 0.106868 -1.659879 1.547015 -2.097667 -0.085150 -1.081711 1.724102 -0.035917 -1.669896 -3.073377 0.734085 2.006174 1.283137 -1.286777 3.438421 0.783530 -1.405762 -1.138707 0.272300 -0.291189 2.597251 -2.395067 -1.700822 -1.356754 1.152669 -2.028743 1.780704 0.625811 2.399965 0.938910 -PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = 0.568496 -0.554674 -0.283844 1.153060 0.189215 -0.270352 0.116153 0.069488 0.030852 -1.498312 -0.525847 0.133818 0.160412 -0.133164 0.274303 0.431532 0.413959 0.187029 -1.411178 0.329262 0.297046 -0.065601 -0.470680 -0.085239 -0.010376 -0.644158 0.429292 0.521541 0.040999 0.945348 -0.540481 0.462164 0.809761 -0.177275 0.734020 0.833900 0.188716 0.067483 -0.239333 0.303290 1.626451 0.400347 -0.191359 0.240702 0.375049 1.159685 0.210500 1.052783 0.013627 -0.456955 0.684947 0.091283 -0.217096 -0.168670 -1.233121 0.327903 1.114699 0.592827 -0.924831 0.568984 -0.468868 0.261649 0.445324 0.476039 1.399250 0.333235 0.864188 0.857127 1.194295 -0.652546 0.085410 0.254686 0.541469 -0.088053 0.764226 -0.589252 -0.657762 -1.221436 0.007560 -0.903254 0.096341 0.075020 0.936936 -0.882480 -0.019172 0.548591 0.121999 1.006567 -0.729711 -0.087309 -1.079522 -0.048716 -0.124928 1.662875 0.094691 0.180465 0.038409 0.683159 0.061198 0.520600 0.208171 -1.120234 -0.415270 -1.931170 -1.114930 -0.634668 0.061839 0.020059 -1.242086 -0.167076 0.502414 0.410326 -1.457109 0.218615 0.315582 0.369725 0.845405 -0.538616 -0.520143 0.033997 -0.146651 0.354882 0.471646 -0.371881 0.205907 -0.736502 0.473975 0.392396 0.426148 -0.000630 -0.790585 -0.058153 0.156489 0.008793 -0.213096 0.265426 0.332728 -0.840146 0.616899 -0.746972 0.991262 -1.359346 -0.086154 -0.760611 -0.861341 -0.291675 1.006527 0.407911 0.684111 -0.022611 -0.837411 0.065567 -1.469542 -1.970116 0.113698 0.036735 0.104782 0.218835 -0.264570 0.200758 -0.536968 0.008862 0.624246 -0.705249 -0.436290 -0.237008 0.492045 0.087308 -0.427045 -0.474821 0.007241 0.570319 0.260982 0.930942 -0.468582 -1.164534 -1.375172 -0.621435 0.854012 -0.396899 0.164369 -0.225716 -0.308263 -1.367588 0.495800 -0.900745 0.246311 -0.480258 -0.409617 -1.138977 0.214247 -0.310008 0.154968 0.061050 -0.961954 0.272470 0.124889 0.137724 0.154073 0.129811 0.201769 -1.183299 -1.043848 0.203755 -0.222769 1.172736 0.310809 0.041794 -0.107233 -0.392226 -0.854178 0.633155 -0.734258 0.373879 0.397431 -0.814763 0.743891 -0.715266 -0.396252 -0.706130 0.449312 0.186536 -0.427485 1.666752 0.990700 -0.938888 -0.221734 -0.326365 0.536398 0.200868 1.033816 -0.636538 -0.323034 0.287479 0.078357 -0.074676 -0.313965 0.469832 -0.236601 0.250075 -1.111675 -0.567933 0.702024 0.788957 -0.053703 0.142269 0.146350 -0.311266 -0.340228 1.209624 0.420694 0.379665 -0.747118 -1.643722 0.401244 -0.530705 -0.068762 0.062681 -0.529702 -0.392376 0.010604 0.231282 1.054336 0.818765 -0.239431 0.988727 -1.286315 -1.150912 -0.726600 -0.205838 0.101542 -0.488059 0.263679 -0.695935 0.151188 -0.274317 0.477209 -0.209445 -0.394569 -0.228816 0.249517 0.599802 0.113595 -0.417953 1.101208 0.190543 -0.414498 -0.261802 0.140831 -0.215701 0.588727 -0.584184 -0.521682 -0.261636 0.507236 -0.660950 0.499017 -0.314781 0.469673 0.382403 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = 5.277733 -1.248639 -3.528968 10.077196 0.747379 -0.814072 1.603070 1.120211 1.658190 -12.390250 -5.665636 6.314054 1.761603 -0.735904 0.591278 2.842454 3.144418 3.671781 -13.578718 1.169307 3.028147 0.252454 -2.229869 -2.027078 -0.023105 -3.683731 3.999733 3.121511 1.116878 8.872681 -3.242998 5.273032 7.069718 -0.075353 4.514854 6.629245 -1.929300 0.058735 -2.482442 -2.060278 11.346896 4.326402 -0.010084 4.251803 0.194327 9.681528 1.630061 7.148008 2.502391 -3.691785 3.490689 2.956119 -3.106149 -1.274605 -8.936673 2.026873 6.059604 2.637053 -4.633173 4.267675 -1.820262 2.524785 3.986288 1.171987 10.066604 3.742096 5.174679 7.926071 9.181493 -5.855219 2.443767 0.011678 2.737891 -0.700361 6.993059 -4.715718 -6.817111 -2.583716 -1.294160 -9.830295 0.610170 -0.572179 10.069542 -7.651140 0.201201 1.029005 3.042908 9.100915 -4.622580 -0.362791 -8.363320 -0.289276 -2.513652 11.959937 1.551923 2.838843 -1.517551 3.327749 -0.928417 2.122226 0.905787 -9.013288 -0.064970 -14.461822 -5.839671 -6.200745 1.010105 2.109755 -9.323388 0.108192 -0.935875 6.529833 -13.633919 -0.904545 1.715527 1.991731 4.027882 -2.275507 -2.994139 0.380221 -0.611610 3.013682 3.120999 -4.793287 1.464975 -3.227013 -0.962183 2.006199 3.394815 1.748598 -7.420758 -2.093467 1.610991 0.000000 0.477763 4.635231 4.318884 -3.816949 4.110870 -6.743051 7.504592 -9.344871 -2.410436 -4.660235 -6.519206 -4.390403 5.790998 3.943010 6.442530 -1.356570 -2.696941 -0.319252 -11.575617 -14.226033 2.063737 -0.460285 0.602696 2.742745 -1.785395 1.693481 -7.226838 1.591936 5.409708 -4.964606 -4.441988 -1.033090 6.138284 0.815818 -3.228538 -3.080796 -0.727908 1.280020 1.759223 8.239047 -3.078905 -10.240667 -12.555066 -4.303541 8.065866 -4.416278 0.289804 -3.835800 -2.337776 -6.401611 0.474316 -7.174571 0.998127 -1.551163 -2.256557 -10.313869 2.294903 -2.025784 0.460281 2.161049 -8.059856 2.565053 5.568875 2.506460 0.142314 2.067123 1.199214 -6.978776 -5.270400 2.303160 -3.510686 7.135934 4.812357 0.238520 -3.911147 -3.723551 -6.585708 5.005752 -5.568128 5.168929 1.477022 -4.169147 5.105387 -6.709057 -1.587752 -5.490445 2.970887 1.116325 -9.226900 10.114154 6.031393 -6.931676 -0.305545 -3.096634 4.645108 0.842076 6.855689 -6.332358 -5.110063 2.388734 -0.845851 -0.238053 -3.153022 2.374844 -2.099330 0.041806 -8.035143 -2.529739 7.602287 4.304697 -1.168422 0.928702 3.086859 -3.313852 2.235177 8.414347 5.056598 2.138054 -7.632260 -15.280547 3.053828 -2.424129 0.423105 -0.226532 -3.749488 -3.093735 2.273412 -1.182371 8.022778 2.619827 -3.015974 8.007664 -10.295770 -8.815540 -6.570326 -1.551910 2.591432 -2.061730 1.193329 -4.496719 1.784859 -1.308570 3.747227 -1.565358 -5.211421 0.184342 4.462167 7.559446 -0.106405 -1.842737 9.295651 2.280897 -2.958482 -1.463379 -0.639553 -3.754200 1.124758 -8.535341 -2.284286 0.694489 4.445321 -6.643678 4.029819 -1.898140 3.212156 1.875591 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 3.541590 -1.901884 -2.051462 6.771502 0.619817 0.240102 1.134297 0.562594 1.313301 -8.576505 -4.007880 5.574684 0.954126 -0.020398 -0.062403 1.781240 2.483020 2.220062 -9.287521 0.190943 1.422623 -0.162057 -1.276041 -1.116382 -0.124243 -2.536785 4.210485 2.513008 0.760401 5.599229 -1.814128 3.319115 4.748355 0.188278 2.660419 4.247440 -1.305911 -0.342425 -2.610241 -2.221413 7.554295 2.693318 0.067908 3.370177 -0.031760 6.363731 2.179679 5.166186 3.696852 -2.161771 2.378754 1.383641 -2.604647 -1.351094 -6.413836 0.885299 3.162621 1.367070 -2.682017 2.766771 -1.009402 1.559510 2.409650 0.429121 6.798356 1.750757 4.573480 5.107006 5.523990 -4.361139 1.279457 0.507907 2.186000 0.746202 4.756374 -3.932029 -4.700765 -1.870447 -0.909651 -6.748125 0.279467 -0.858892 7.182263 -4.496167 -0.656927 0.003439 1.181910 5.858926 -2.785169 -0.153495 -5.833508 -0.050633 -0.589536 7.417697 1.309315 1.620159 -0.734916 1.860354 -0.621310 1.543025 1.252494 -5.964443 0.620210 -10.021722 -3.171493 -4.283251 0.871711 1.232438 -5.590247 0.539689 -1.426534 4.291119 -8.590051 -1.172873 1.284658 0.989048 3.731280 -1.753882 -1.401090 0.004460 0.236759 2.370139 2.500595 -3.613211 1.146303 -1.327549 -0.090433 1.000084 2.256186 1.542958 -5.153389 -2.011522 1.349102 0.850765 0.608926 2.714178 2.769862 -1.919915 2.637697 -4.070092 4.952711 -6.193966 -1.581546 -2.732831 -3.635200 -3.104798 5.867050 3.061418 5.123989 -0.666620 -1.218606 -0.112549 -7.235562 -9.969526 1.469839 0.015339 0.004717 1.867854 -1.062010 1.532125 -4.878864 0.938204 3.495773 -2.923719 -2.926534 -0.361769 2.104501 0.663000 -1.975054 -1.924112 -0.157747 0.692013 1.446780 5.673812 -1.978936 -9.552021 -7.918588 -2.781908 5.175680 -3.158037 -0.130475 -2.129348 -2.030002 -3.566382 0.047955 -4.502546 0.599105 -0.638811 -2.915884 -6.955217 1.699843 -1.396769 0.798222 1.970135 -5.323558 1.557489 3.357825 2.624369 0.186654 1.532864 0.556559 -4.712947 -3.329831 1.246175 -2.590975 5.563868 2.772280 -0.110137 -3.412910 -2.420631 -4.422967 3.295456 -3.937657 3.517472 0.613772 -2.917961 2.764922 -4.249777 0.192599 -3.356348 2.122586 1.042131 -8.346540 6.825690 4.832532 -4.485063 -0.529517 -1.715322 2.657564 0.332085 4.312579 -4.633885 -3.643075 1.537940 -0.363863 -0.055001 -1.919177 1.471736 -0.687530 -0.822909 -5.749970 -2.299981 4.899173 2.436222 -0.720223 0.217888 2.494530 -1.762715 0.967259 5.929446 3.052088 1.625954 -5.087006 -12.073656 2.079351 0.783489 -0.154278 0.908803 -3.315291 -2.080574 1.682759 -2.107883 5.001179 1.064218 -2.326583 5.251454 -6.346932 -5.365357 -4.510717 -1.860085 1.782338 -0.891070 1.755513 -2.925518 0.887689 -1.421996 1.901818 -1.852541 -2.842391 1.070542 3.180911 4.943972 0.465478 -0.519556 5.890865 1.285379 -2.006310 -1.060927 -0.542829 -2.900517 1.336701 -6.559953 -1.232452 0.691501 2.922219 -4.109063 1.972272 -0.823073 2.340461 0.738578 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 2.182183 -0.712724 0.341640 2.990715 1.169517 -0.373282 1.000625 1.501192 0.173325 -5.145398 -3.239283 0.775375 -0.000581 -0.513099 0.904657 0.175784 1.850322 1.383821 -6.259956 0.404503 1.335898 0.212829 -0.424572 -0.782547 0.102701 -1.583213 -0.235240 2.224237 0.453365 3.364293 -1.511401 1.026190 2.723986 0.558059 1.976915 3.174292 -0.056473 -0.494580 0.228914 -0.734618 5.314224 1.445885 -0.204363 1.863162 1.249084 3.941066 0.038248 3.017352 0.819294 -1.401232 2.047703 -2.179441 -1.609686 -0.466634 -3.867118 0.924300 3.440775 1.904590 -2.476500 2.221022 -0.896338 0.789152 1.206253 -0.996395 3.646680 1.590118 1.595571 2.330442 3.821487 -2.641518 -0.041906 0.828484 1.716614 0.488820 0.122183 -2.376090 -0.914999 -4.557917 0.076794 -5.093714 -0.040989 -0.765386 4.380970 -2.565042 0.574185 1.820320 -0.270937 2.785979 -1.693518 -0.752256 -3.659518 0.053680 -0.104150 3.831827 0.198458 0.341606 0.627765 1.136341 0.207679 2.016148 -0.149850 -3.008679 -2.546741 -7.263605 -2.291127 -1.841522 0.399971 -0.078569 -3.178257 -0.492373 1.409829 1.746517 -4.597327 -0.763840 1.271557 1.183035 -1.126562 -0.258911 -2.250172 -0.771327 -0.420910 1.306639 1.694635 -2.007696 0.303403 -2.323107 -0.147904 0.588145 1.444407 0.115022 -2.232257 -1.273077 0.642771 -0.051545 -0.420944 0.472558 0.624722 -1.090981 1.766796 -2.550965 3.194354 -3.952989 -0.074221 -2.144210 -2.203105 -1.345379 4.101230 2.071675 1.918090 0.984067 -1.148209 -0.101862 -3.501693 -5.236863 1.119179 -0.138182 1.881462 0.172700 -0.709947 0.609706 -2.006171 -0.586154 0.559333 -1.814244 -1.361510 -0.929915 2.263814 -0.025589 -1.217150 -2.040958 0.856278 2.435007 -0.781663 1.944268 -2.076491 -2.555182 -3.466712 -2.468684 3.011976 -1.562355 0.070273 -0.668551 -0.216012 -2.781911 1.023269 -2.765249 0.272437 -1.071444 -2.308518 -4.043542 0.974952 -1.189250 0.349504 1.340142 -2.783185 0.833050 1.886164 2.421425 0.257603 0.802757 0.378656 -3.311716 -3.001325 -0.655354 -0.622907 3.198820 2.064729 0.194620 -1.865370 -1.345349 -2.239100 2.884126 -1.636989 1.417505 0.137330 -2.133025 2.479684 -2.002385 -0.301074 -2.559134 1.466246 1.290358 -5.072584 3.986054 2.609653 -3.059528 -1.309869 -2.747163 1.009575 0.920312 3.635724 -1.878465 -1.400484 1.323511 -0.453413 -0.217375 -2.039004 1.343878 0.079767 0.800614 -3.970410 -2.084857 2.694725 2.226641 -0.303251 1.339963 1.560476 1.160074 0.662391 4.335956 1.075189 0.172491 -2.491321 -6.728046 1.690227 2.816417 0.716781 0.585947 -1.985804 -1.968578 0.086489 0.147066 3.311180 3.203619 -0.278021 3.366487 -2.497793 -3.297086 -2.144555 0.050987 1.277680 -1.713714 0.627379 -1.882497 0.559154 -0.713031 1.041523 0.668984 -1.833175 -2.743497 0.896321 2.790219 0.777873 -0.636204 3.704918 0.316084 -1.811046 -0.249760 -0.153644 -0.102895 1.437743 -2.129612 -1.323391 -0.604617 1.298775 -2.103144 1.796381 -0.182634 1.215094 1.293554 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 2.217956 -1.298811 -1.462925 4.943388 0.280455 0.689152 0.602316 -0.327428 0.780348 -6.185197 -2.165849 4.522063 0.758510 0.799712 -0.380732 1.643420 1.580868 1.167734 -6.080016 -0.187995 1.038004 -0.133148 -0.205864 -0.517172 0.093972 -1.931311 4.360688 1.510789 0.780154 3.992438 -1.420072 2.721196 3.451924 -0.027228 1.647565 2.657973 -0.627853 -0.109198 -3.064242 -1.786628 5.053210 1.252800 0.276356 2.264779 -0.679766 4.455353 2.039937 3.388699 3.654240 -1.766821 1.419475 2.310285 -1.696417 -1.138765 -4.298550 0.630391 1.346971 0.927947 -1.674745 1.476025 -0.187635 1.146112 1.559586 0.924913 4.505702 0.951663 3.505114 3.684134 3.518118 -3.385751 0.862050 0.464453 0.953906 0.745387 4.218660 -2.802668 -3.572121 -0.012993 -0.739995 -3.807091 -0.218615 -0.461326 4.245254 -3.146460 -0.956012 -0.390925 0.752367 4.309500 -1.557476 0.577592 -4.124037 -0.069805 -0.156845 5.104697 1.003656 0.936161 -0.606536 1.126633 -0.473296 1.070395 1.636557 -4.265089 1.311610 -5.415421 -2.259993 -3.268149 1.169779 1.490603 -4.016717 0.809160 -1.597310 3.254031 -5.976522 -0.704805 0.823714 1.189082 3.806776 -1.391673 -0.192856 0.055856 0.644290 1.554433 1.718139 -2.498626 1.141077 -0.255769 0.022377 0.678329 1.654155 1.035364 -3.731159 -1.793961 0.867095 0.739083 0.719360 2.062462 2.487431 -1.234716 1.931666 -2.546072 3.362494 -3.965926 -1.421542 -1.610143 -2.104397 -2.456636 3.358472 1.652053 3.705084 -0.848290 -1.276335 -0.073092 -4.944569 -6.471759 0.569331 0.372546 -0.636944 2.353833 -0.912953 1.731192 -3.656508 1.018203 2.652734 -1.937614 -2.351079 -0.027208 0.105633 0.462284 -1.196531 -1.123768 -0.159701 -0.533329 1.220213 4.723616 -0.944025 -7.139012 -6.005325 -2.074168 3.664046 -2.443962 -0.087312 -1.657014 -1.751833 -2.368096 -0.198031 -3.287854 0.342905 -0.093679 -1.991014 -4.881166 1.616312 -1.072688 0.193132 1.709385 -4.020545 0.974525 1.504478 0.902042 0.407032 0.800187 0.171701 -3.365930 -2.103332 1.253872 -2.327625 3.383352 1.204139 -0.267080 -2.385810 -2.191887 -2.799377 1.814509 -3.014844 2.688837 0.572272 -1.644502 1.477034 -3.090870 0.592026 -1.984240 1.450122 0.976479 -5.177749 4.884942 3.241982 -2.828950 -0.181131 -0.293225 1.895522 0.084955 2.509680 -3.486245 -2.889556 0.889015 0.178543 0.096252 -0.862726 1.015222 -0.690528 -1.078813 -3.782358 -1.644430 3.071506 1.667218 -0.485642 -0.131830 2.327691 -1.885676 0.604092 3.861326 2.389045 1.599471 -3.285994 -7.870292 1.501930 -0.650681 -0.358490 0.760997 -2.506560 -1.116907 1.795312 -1.477346 3.467789 -0.670873 -1.581577 3.706251 -4.811499 -3.670560 -3.182056 -2.161082 0.961458 -0.032598 1.013614 -1.912294 0.582646 -0.902537 0.916737 -2.071092 -1.529918 2.199419 2.388465 3.543023 0.242079 0.300480 4.091132 1.281547 -1.284854 -0.782224 -0.141801 -2.376712 0.606644 -4.825904 -0.612728 1.072390 1.983703 -2.865043 0.678527 -0.885499 1.104607 -0.148552 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = 4.360311 -2.159498 -3.200530 8.863985 0.196653 1.224921 1.263799 -0.211942 1.328844 -11.289834 -4.533776 8.702031 1.570539 1.184103 -0.641912 3.193897 2.714724 2.208736 -10.949289 -0.315224 1.898362 -0.523236 -0.813619 -0.840930 -0.069654 -3.544669 7.251515 2.782505 1.236572 7.405571 -2.090366 5.259093 6.341897 0.034647 2.836499 5.078303 -1.894298 -0.424674 -5.086988 -3.531325 9.064593 2.498289 0.637013 4.153305 -1.505619 8.234857 3.038549 6.513612 5.906072 -3.159837 3.345260 3.843404 -3.461632 -1.933757 -7.827906 0.798269 2.053618 1.042819 -2.701442 2.844185 -0.802530 2.068329 2.930133 1.436477 8.522245 2.124122 6.412268 6.918002 6.290233 -6.172225 1.734047 1.014976 1.314203 1.167365 7.122737 -5.000774 -6.286649 0.720974 -1.251239 -7.220665 -0.713314 -1.098288 8.892692 -5.752744 -2.076698 -1.129645 1.699842 7.980177 -3.003324 1.202629 -7.515010 -0.292037 -0.282951 8.684978 1.772310 2.008074 -1.447560 1.770775 -1.098828 1.772878 2.317543 -7.777447 1.696243 -9.736548 -3.858088 -5.915103 2.010825 2.894145 -7.492783 1.289251 -3.121950 6.280067 -11.050793 -1.482226 1.610806 1.963452 7.059709 -0.831680 -1.083470 0.084956 1.511256 3.056893 3.339697 -4.210995 2.194639 -0.831012 0.031067 1.000786 2.825711 2.193315 -7.930956 -3.337021 2.101021 0.815992 1.629958 4.168196 4.681776 -1.787178 3.352150 -4.669946 6.206098 -7.667582 -2.858768 -3.158733 -4.283551 -4.532510 6.616828 4.297297 7.164382 -1.419858 -1.892389 -0.043733 -9.206296 -11.883059 0.867930 0.327759 -0.956154 3.802859 -1.517778 3.090285 -6.729796 2.392270 4.709983 -3.468590 -4.261579 -0.041403 1.051431 1.185142 -2.348149 -1.940397 -0.604794 -1.671346 2.107600 8.716074 -1.591078 -13.259654 -11.212512 -3.672180 6.799935 -4.450995 -0.351565 -3.222193 -3.268823 -4.195012 -0.932392 -5.912962 0.603298 0.094998 -3.762762 -8.968939 3.103653 -1.635829 -0.158251 2.999530 -7.051784 1.621678 3.954340 1.784498 0.739825 1.850625 -0.055121 -5.495222 -3.625475 2.454302 -4.432849 6.510565 3.501769 -0.487192 -4.594708 -3.850926 -5.527461 3.669112 -5.677767 5.142881 0.915196 -2.865930 2.836457 -5.981270 0.975717 -3.668181 2.734404 1.569670 -11.047824 8.260333 5.946031 -5.169409 -0.230763 -0.861699 3.389032 0.296918 4.432707 -5.986143 -5.214411 1.603592 0.445227 0.171350 -1.435635 1.657769 -1.390227 -2.124018 -6.870516 -2.802914 6.172133 2.838432 -0.921699 -0.313788 3.915240 -3.246959 1.851178 6.806747 4.553391 2.183263 -6.115024 -15.137738 2.798221 -0.680077 -1.071510 1.352067 -4.689573 -2.107464 3.202632 -3.830896 6.294670 -1.967680 -3.352801 6.740010 -8.601520 -6.805584 -6.270782 -3.349386 1.778938 0.128978 1.931169 -3.089556 1.261102 -1.276552 1.658520 -3.453274 -3.475312 3.531472 4.527919 7.020356 0.354009 0.586064 7.515028 2.272275 -2.034981 -1.770749 -0.261527 -4.542665 1.115906 -9.799763 -1.244023 2.053357 3.817309 -5.376223 1.225096 -1.149085 1.979408 0.024262 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = 2.794731 -1.871827 -0.741601 4.371249 0.528246 0.497238 0.907546 0.684548 0.945391 -6.388331 -3.034550 4.359747 0.314836 0.154984 0.129155 1.193173 2.100784 1.135799 -7.297491 0.060172 0.974766 -0.211270 -0.373228 -0.515657 0.150664 -2.047407 3.101245 2.180328 0.572805 3.963776 -1.431433 2.345182 3.438188 0.436005 1.947878 3.094093 -1.127672 -0.763700 -1.893652 -1.899031 5.697385 1.496467 0.235261 2.645564 0.158656 4.661306 1.357755 4.095272 4.376303 -1.554618 2.467211 0.052578 -2.284092 -0.888007 -4.852204 0.392016 1.595191 0.607795 -1.926874 1.951470 -0.569171 1.175189 1.455597 -0.095414 4.993056 1.189677 3.496382 3.398001 3.720100 -3.309671 0.628473 0.766017 1.654260 1.316989 2.626796 -3.254177 -2.597946 -2.119878 -0.409465 -4.711008 -0.261037 -1.250347 4.825150 -2.930085 -0.671756 0.020151 0.077889 4.153331 -1.619671 0.172908 -4.467896 0.075818 0.702031 4.290611 0.487590 0.916582 -0.127648 0.863932 -0.546262 1.478561 1.198048 -4.213130 -0.290837 -6.806427 -2.105381 -2.984903 0.915340 0.710290 -4.083566 0.942274 -0.855851 2.854548 -5.751791 -1.240851 1.004474 0.819639 2.227893 -0.294377 -0.828694 -0.745244 0.616751 2.338841 1.848712 -2.650914 1.007772 -1.524047 0.097217 0.793185 1.835056 0.889177 -3.590249 -1.987357 1.385200 1.057703 0.392051 1.758649 1.912767 -0.746161 1.867188 -2.647120 3.640038 -4.349165 -1.372055 -2.268083 -1.505233 -2.290179 5.439135 2.643899 3.820398 0.412571 -0.879339 0.081158 -4.684225 -6.672806 0.761606 -0.270443 0.348262 1.411161 -0.701709 1.407478 -3.184442 0.464441 1.428247 -2.078697 -2.150050 -0.637889 -0.431224 0.490810 -1.304774 -1.441908 0.330567 0.709207 0.265171 3.917559 -1.346634 -7.149652 -5.276003 -2.427160 3.674446 -2.389308 -0.132198 -1.277427 -1.222723 -2.298035 -0.042980 -3.178373 0.187423 -0.364276 -2.907649 -4.998298 1.535914 -1.166285 0.768966 1.655195 -3.734964 0.955660 1.764280 2.490525 0.437328 1.364437 -0.135564 -3.591640 -2.687754 0.300424 -1.894717 4.182172 1.757674 -0.257793 -2.816826 -1.986993 -2.958548 2.678439 -3.484623 2.576939 0.454113 -2.405357 1.855948 -2.791647 0.574377 -2.293137 1.753392 1.085984 -7.163986 4.663723 3.509606 -3.468716 -0.842812 -1.818616 1.715023 0.480724 3.254207 -2.947086 -2.356321 1.021246 0.283518 -0.015161 -1.420856 1.275021 -0.108152 -0.647341 -4.447485 -2.223162 3.553498 1.812102 -0.437389 0.164822 2.189910 -0.259998 0.812469 4.436496 1.848136 1.086190 -3.380942 -9.409815 1.581688 2.957425 -0.031254 1.551635 -3.332008 -1.727557 1.041791 -1.806853 3.676434 0.256693 -0.971737 3.768788 -3.895776 -3.716089 -3.380651 -1.536737 0.992718 -0.346114 1.494919 -1.741312 0.378458 -0.926921 1.119680 -1.242219 -1.720167 0.219931 2.228833 3.595681 0.907392 0.077303 4.124451 1.014708 -1.615312 -0.849446 -0.275091 -2.032477 1.217428 -4.698960 -0.906201 0.488842 1.853793 -2.849594 1.076882 -0.160419 1.680800 -0.119947 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 1.316817 -0.354507 -0.484351 1.664641 -0.004279 -0.299464 0.346119 0.670390 -0.097882 -2.743563 -1.678828 0.918090 0.191444 -0.413976 0.494034 0.739663 0.635201 0.526261 -3.686966 0.427477 0.766246 -0.007139 -0.447325 -0.302722 0.149680 -0.877907 -0.078610 0.718027 -0.100458 1.649658 -0.754463 1.054112 1.396638 0.155354 0.845638 1.175592 -1.095192 -0.342991 0.380757 -0.095215 2.435416 0.921815 -0.107493 0.626568 0.426515 1.840696 -0.172914 1.659537 0.210315 -0.619213 1.202013 -0.488360 -0.979210 0.276887 -1.828290 0.168113 1.382793 0.561445 -0.692458 1.011046 -1.097469 0.573540 0.671194 -0.333360 2.637233 0.896753 1.660082 1.334543 1.811140 -0.795644 0.591176 0.016963 0.656531 -0.240246 0.589258 -0.995605 -0.706859 -1.772672 -0.077811 -2.932503 0.166589 -0.267222 2.842367 -1.293282 -0.106745 0.319003 0.549492 1.958209 -1.124897 -0.053433 -1.621726 0.201445 -0.398939 2.245770 0.046150 0.620723 -0.361912 0.668505 -0.028285 0.397627 -0.144452 -1.378122 -0.972061 -3.470722 -1.203095 -0.830888 0.124434 0.081764 -2.281026 0.342114 0.630718 1.229490 -2.674730 -0.241277 0.421199 0.375289 0.510538 0.496679 -1.400628 -0.391863 -0.325297 1.257180 0.676171 -0.889114 0.431912 -1.681588 0.111953 0.490486 0.827156 0.203974 -1.966249 -0.438074 0.502929 -0.397127 -0.016598 1.023653 0.809444 -0.294957 0.855699 -1.403342 1.459168 -2.455165 -0.240737 -1.280153 -1.326813 -0.548246 2.076524 2.042025 0.855443 0.340621 -0.373593 -0.046593 -2.528297 -2.649827 0.134171 -0.365263 0.631452 -0.105662 -0.193744 0.089998 -1.058139 0.173643 0.627659 -1.062994 -0.598539 -0.793004 1.640637 0.298227 -0.797178 -0.844102 -0.176129 0.851448 -0.329125 1.223019 -0.550424 -1.992071 -2.486005 -1.027770 1.476007 -0.728274 0.125723 -0.882996 0.071334 -1.459624 0.371508 -1.153904 0.000726 -0.118654 -0.967022 -1.997243 0.204930 -0.197336 -0.197747 -0.066888 -1.329532 0.284045 1.554752 1.022449 0.316586 0.519637 0.014936 -1.391925 -1.502087 0.047127 -0.632214 1.672469 1.420222 -0.146625 -1.257598 -0.448570 -1.710230 1.520896 -0.921700 0.780439 -0.082229 -1.183303 1.114818 -1.183921 -0.204319 -1.122014 0.516225 -0.237223 -3.403216 2.288576 1.441998 -1.611404 -0.350348 -1.534437 1.118152 0.278337 1.552094 -0.906475 -0.366447 0.151917 -0.164137 -0.114670 -0.579076 0.853967 -0.487688 0.014978 -1.710472 -0.739141 1.798994 0.946756 -0.244096 0.387170 0.373105 0.106007 0.734119 1.577733 0.646166 -0.291877 -1.278135 -3.954872 0.318288 0.915249 -0.044447 0.274352 -0.915945 -1.032378 -0.118816 -0.520451 1.719238 0.898184 -0.464808 1.366942 -1.513408 -1.640671 -1.410745 0.170556 0.165964 -0.623574 0.445291 -0.691026 0.070314 0.118002 0.934325 0.214934 -1.541690 -1.104804 0.521949 1.650962 0.425461 -0.680347 1.720987 0.458099 -0.533203 -0.549050 -0.139958 -0.472678 0.700186 -1.344838 -0.619341 -0.242501 0.637353 -1.250832 1.031166 0.083160 0.946044 0.484974 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 1.424089 -0.427702 0.113257 1.967035 0.331539 -0.149372 0.793722 0.994636 0.317768 -3.498138 -1.797607 1.424696 0.096352 -0.188550 0.227784 0.318565 0.975433 1.278710 -4.066218 0.118043 0.929637 0.490398 0.062066 -0.786329 0.099426 -0.834921 0.222971 1.164429 0.424372 2.381838 -0.933982 0.662078 1.949576 0.320845 0.783103 2.002469 0.139823 -0.281409 -0.267024 -0.815165 3.191027 0.947573 -0.125501 1.434556 0.355641 2.588277 0.380348 1.792489 1.006326 -1.008517 0.952347 -1.155210 -1.344572 -0.474999 -2.272030 0.565820 1.726538 1.416656 -1.187626 1.511110 -0.298250 0.550254 0.863957 -0.711336 2.201720 1.179687 1.035853 1.709924 2.515082 -1.872369 0.216570 0.263279 0.903758 0.274521 0.838820 -1.626954 -0.836470 -2.730433 -0.162807 -3.438594 -0.177090 -0.431517 3.078854 -1.928807 0.502201 1.076747 0.086673 1.971231 -0.940070 -0.311976 -2.344672 0.075491 0.122434 2.705928 0.226276 0.277194 -0.023516 0.682841 0.184230 0.952952 0.424874 -1.917098 -1.208602 -4.206240 -1.162589 -1.373884 0.117093 0.265553 -2.145709 -0.145017 0.850943 1.606353 -3.462185 -0.570002 0.887068 0.782011 -0.071388 -0.291864 -0.989320 -0.101399 -0.241617 0.742120 0.900161 -1.810743 0.205008 -0.773184 -0.417062 0.365787 0.882804 0.234988 -1.967357 -1.094467 0.450590 0.091548 0.001537 0.673092 0.599072 -0.626320 1.064155 -1.923002 2.016869 -2.412804 -0.268937 -0.863797 -1.293513 -1.103076 2.935922 1.085146 1.301525 0.275629 -0.739756 -0.301030 -2.190655 -3.442887 0.943141 -0.007150 1.040928 0.487804 -0.444961 0.281258 -1.552763 -0.164433 0.385690 -1.128339 -0.836270 -0.288759 1.184888 -0.120567 -0.773686 -1.353758 0.474988 1.369446 -0.087367 1.342989 -1.190787 -2.105457 -2.523491 -1.532224 2.118839 -1.076726 -0.032932 -0.637116 -0.324962 -1.404757 0.433779 -1.710443 0.405350 -0.232776 -1.613428 -2.871497 0.852419 -0.737684 0.055052 1.034314 -1.856030 0.482539 0.789288 1.261140 0.029522 0.404618 0.375104 -2.213027 -1.817805 -0.325201 -0.688170 1.936266 1.170593 0.293773 -1.678940 -0.880948 -1.444578 1.846572 -1.485425 1.121311 -0.156424 -1.083705 1.611288 -1.350257 0.081849 -1.842619 1.037457 0.835265 -3.412359 2.710910 1.703967 -1.820733 -0.637852 -1.372133 0.699313 0.709373 2.187041 -1.594896 -1.401618 0.971054 -0.482658 -0.090376 -1.273392 0.813667 -0.145675 0.392003 -2.377784 -1.058573 1.713904 1.315711 -0.318980 0.848639 1.363294 0.315845 0.252160 2.599099 0.932831 0.183425 -1.777857 -4.324031 1.187542 1.770235 0.580576 0.468447 -1.599794 -1.048285 0.679620 -0.033063 2.043095 1.471213 -0.347871 2.124899 -2.056377 -2.159827 -1.201487 -0.236003 0.986207 -0.785672 0.597922 -0.972396 0.389971 -0.206619 0.619719 0.167685 -1.143182 -1.053305 0.820515 2.136046 0.552314 -0.382902 2.531804 0.180655 -1.153009 0.020399 -0.374546 -0.244959 0.447127 -1.526359 -0.442306 -0.003146 1.030362 -1.583813 1.373698 -0.219259 0.396861 0.538189 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = 8.499167 -3.405100 -8.697834 17.504427 -0.112085 4.012031 1.445098 -1.971193 1.700061 -21.320727 -7.930412 14.855586 3.210841 4.140313 -0.360611 8.443988 4.389437 1.529355 -15.524369 -1.280992 3.266145 -3.424770 -2.945590 2.599342 -0.925910 -7.765036 12.645646 3.962577 1.863297 12.334618 -2.961566 10.935029 12.378093 -2.041024 3.128446 8.020547 -2.767716 0.311739 -10.701064 -5.431395 15.824441 3.113943 0.175776 5.966524 -5.248214 14.832780 3.221565 17.839633 6.771953 -6.787980 8.256540 5.533868 -5.251841 -1.826842 -13.050445 1.105403 3.340166 1.767354 -4.869180 4.058554 -4.294274 4.355634 5.402410 5.083135 15.965912 5.485566 14.276864 13.725780 10.132706 -11.669622 3.466972 3.658259 -0.796105 2.600492 13.064328 -7.854255 -10.355842 5.024370 -0.216701 -7.596878 -3.238931 -2.090009 18.621787 -10.536578 -7.411393 -3.578347 3.963588 15.886736 -6.792859 6.969978 -13.856344 -0.520614 -0.181660 15.760111 3.253337 2.947350 -4.834770 2.771342 -2.686480 2.768236 2.576921 -13.484823 0.598573 -13.173927 -8.760544 -10.322320 4.878166 7.946898 -16.317411 1.957854 -5.791779 11.458540 -19.485682 -1.491483 2.410674 5.001698 20.823570 8.418864 -5.015386 -1.228284 5.496187 4.642595 7.610578 -4.183664 6.353802 -5.149757 3.277354 1.886783 4.194890 4.533988 -18.870062 -4.738881 4.685380 -1.886800 4.437579 9.176905 11.072713 -3.904707 7.280287 -6.212198 10.056661 -16.476788 -6.666541 -5.440115 -11.783552 -7.841561 14.465317 13.626969 14.886271 -2.074339 -5.808837 -1.571949 -18.821563 -21.099247 -3.801168 1.081819 -2.671652 7.717053 -3.127815 7.565431 -11.938180 7.605633 8.947785 -5.500652 -8.159252 -0.251880 3.936408 3.184068 -4.284283 -3.520654 -2.636482 -6.867379 1.907343 19.245925 -0.327143 -26.756628 -22.925313 -6.750151 12.139337 -8.008063 0.608869 -7.350027 -6.527535 -10.896661 -2.385277 -9.775331 0.080571 1.484533 -6.592775 -16.111816 7.026206 -2.070415 -3.992929 4.654903 -12.987520 2.206298 9.176778 1.517822 3.505120 3.888450 -2.645889 -9.980981 -6.547680 5.865585 -10.298262 14.639822 8.640419 -2.687258 -5.886306 -8.032606 -12.322545 7.674719 -11.333031 9.109760 2.098976 -2.939306 4.113685 -11.851034 0.318200 -6.897741 5.168445 2.037852 -21.317293 14.574781 12.318534 -8.396004 0.141248 -0.769791 7.374837 0.348424 6.425727 -10.361287 -8.171007 2.174466 2.953813 0.400197 0.047447 2.790114 -3.955110 -6.232868 -11.333054 -3.802551 11.398305 4.444427 -2.302097 -3.435287 7.214847 -7.059880 5.889246 10.630954 8.557752 1.288373 -9.050218 -29.918688 4.899268 -5.357729 -6.698702 2.370245 -8.940112 -2.465478 5.849134 -11.166778 11.832751 -7.100263 -5.218938 12.435921 -16.625052 -12.421514 -12.124886 -6.567735 0.608420 1.258210 4.230837 -4.585846 1.739176 -1.351416 1.721095 -8.101366 -8.536979 6.549323 7.382896 13.061182 -1.370414 1.712215 12.595282 5.301865 -1.984418 -5.216544 1.408445 -8.582188 2.712671 -19.898011 -2.449338 4.655111 6.191136 -9.869413 -0.146544 -1.911593 1.905736 0.702235 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 6.246463 -3.170703 -5.596817 13.100756 -0.216594 1.772975 1.372043 -0.483933 1.346857 -16.769028 -7.187983 11.073914 2.468218 1.403426 0.235605 5.329612 3.528061 2.379147 -15.168655 -0.310908 3.068182 -1.426013 -1.996679 0.009492 -0.249564 -5.333521 8.433281 3.063028 1.145633 10.056345 -2.679471 8.332898 9.256617 -0.669458 3.410622 6.440207 -4.167933 -0.108612 -5.795971 -3.855344 12.862358 3.276476 0.759692 5.118186 -2.422542 11.223094 2.057844 11.779166 6.341660 -4.557827 6.931682 4.216800 -4.118889 -1.218351 -10.767741 1.160328 4.282140 1.338609 -3.528626 3.809532 -3.247521 3.295375 4.135481 2.087722 13.373980 4.625991 10.448250 10.502504 8.661287 -7.841875 3.085747 1.229023 0.706018 0.620442 9.613080 -6.947559 -8.054294 0.841572 -1.496336 -9.456017 -0.608274 -1.600994 14.680129 -8.019364 -3.899975 -1.926063 3.470715 12.092316 -4.867159 2.897823 -10.297954 -0.180969 -0.893668 12.742933 2.231219 3.173314 -3.098530 2.525399 -1.905322 1.956172 2.143310 -10.096116 0.817736 -14.016309 -6.907474 -7.506956 3.345860 4.584279 -12.342729 2.119273 -3.486135 7.038007 -16.009856 -1.643757 1.814306 3.286501 12.186760 2.396184 -4.153272 -0.899161 2.270824 4.646236 4.671551 -4.466168 3.852288 -4.568841 0.655920 1.678178 3.952266 2.806154 -12.654180 -3.843819 2.413110 -0.317898 2.391302 6.767947 7.566202 -2.296987 5.132579 -5.929762 8.301822 -12.749535 -4.424442 -5.403864 -7.820663 -5.726415 10.865703 8.385087 10.380292 -1.677481 -3.578792 -0.616411 -14.723594 -16.458061 -0.618653 0.062973 -0.838933 4.822546 -2.108298 4.278072 -9.044796 4.527886 6.732752 -4.989598 -5.651928 -0.865513 3.727902 1.895550 -3.716614 -3.158029 -1.661783 -2.492633 1.258543 12.928874 -1.129643 -18.533804 -17.251843 -4.927560 9.322219 -5.930047 0.299671 -5.298204 -3.634573 -7.473468 -1.349187 -7.980102 0.236143 0.605985 -5.424982 -12.600686 4.099986 -1.536412 -0.896158 3.040014 -9.883917 2.065175 7.234138 3.526076 1.949021 3.034378 -0.818644 -7.970143 -5.925340 3.461843 -6.681733 9.517542 6.289931 -1.336714 -5.549454 -5.366137 -9.189496 5.326039 -7.625398 6.744800 1.244124 -4.109522 3.688291 -8.892794 0.380142 -6.031715 3.033612 0.975947 -17.226515 11.754353 7.812981 -7.113057 -0.090202 -2.375228 5.867875 -0.094522 5.896464 -7.581473 -5.879537 1.538898 0.813944 0.185259 -1.466977 2.713368 -2.931111 -3.443155 -9.359668 -3.561270 9.556133 3.953893 -1.521019 -0.677082 4.954162 -4.555380 3.724847 8.830989 6.739649 1.108547 -7.843120 -23.065637 3.181028 -1.541786 -2.824218 1.256880 -6.623890 -3.242537 3.708324 -5.584704 9.031706 -2.446977 -3.845269 9.210575 -12.176202 -9.539322 -8.911432 -3.720066 1.589375 -0.297025 2.035737 -4.130854 1.480381 -0.744290 2.724762 -4.137586 -6.624750 3.262634 5.619294 10.405461 -0.311129 0.366129 10.121725 3.977625 -2.509290 -3.209154 -0.039340 -6.334249 2.133579 -13.995075 -1.930522 2.634030 4.792946 -7.691930 1.717085 -1.416729 2.883388 0.682444 -PE-benchmarks/tug-of-war.cpp__main = 1.555340 -0.784298 -0.822209 3.006811 0.202407 0.258809 0.571595 0.228037 0.312583 -4.204427 -1.843256 2.204946 0.435801 0.189032 0.175520 0.985890 1.022009 0.844712 -3.780352 -0.053256 0.806883 -0.115030 -0.413542 -0.198772 -0.070928 -1.301810 1.459599 1.047485 0.345589 2.603673 -0.801366 1.569166 2.316808 -0.041607 0.863366 1.911943 -0.280005 -0.028672 -1.154296 -0.837450 3.511432 0.812919 0.031439 1.407653 -0.199162 2.914920 0.439663 2.898513 1.273801 -1.174897 1.638627 0.113240 -1.108769 -0.427450 -2.762915 0.502510 1.576925 0.886266 -1.188906 1.294180 -0.752002 0.767038 1.015291 0.188494 3.044180 1.316097 2.127276 2.428816 2.503676 -2.158212 0.462236 0.477551 0.506020 0.262801 1.893074 -1.725853 -1.624679 -1.093969 -0.255189 -2.621121 -0.182037 -0.420884 3.663684 -2.085980 -0.548089 0.314445 0.537133 2.702798 -1.242928 0.411308 -2.700667 0.002411 -0.067207 3.293886 0.513941 0.598841 -0.499130 0.727415 -0.163878 0.838769 0.519862 -2.426334 -0.502592 -4.044865 -1.813661 -1.771481 0.599896 0.802932 -2.901124 0.160813 -0.009401 1.711265 -3.960475 -0.412674 0.697466 0.967728 2.199740 0.347443 -1.170052 -0.182856 0.370932 0.913755 1.188974 -1.352866 0.753928 -1.166231 0.100600 0.403493 0.991359 0.474621 -2.875185 -0.997645 0.503212 -0.048353 0.347460 1.224347 1.413564 -0.806304 1.340759 -1.689460 2.198453 -3.150796 -0.819104 -1.252849 -2.015218 -1.326740 3.152380 1.743069 2.393799 -0.138835 -1.130913 -0.293921 -3.307033 -4.257105 0.217162 0.100595 0.311407 1.011967 -0.571890 0.836185 -2.097997 0.649490 1.343496 -1.279745 -1.233030 -0.193618 1.114545 0.193165 -0.944376 -1.184088 0.000586 0.223997 0.200229 2.698838 -0.685097 -3.916797 -3.805937 -1.468772 2.360344 -1.374923 0.084310 -1.013309 -0.802129 -2.034657 0.045168 -1.994163 0.267018 -0.052629 -1.630955 -3.238827 1.078306 -0.586863 -0.191624 0.972362 -2.415862 0.531915 1.356397 0.975557 0.398178 0.645075 0.025441 -2.314346 -1.856491 0.396343 -1.326293 2.436717 1.483434 -0.066707 -1.349404 -1.291171 -2.151292 1.598992 -1.938263 1.464635 0.255587 -1.145906 1.265141 -2.027467 -0.043458 -1.811942 0.947920 0.589210 -3.903134 3.124788 2.041545 -1.914271 -0.399587 -0.882604 1.203965 0.288991 1.984869 -1.918307 -1.469756 0.731420 0.006211 -0.017578 -0.708473 0.799501 -0.499127 -0.348598 -2.571697 -1.102986 2.171838 1.311614 -0.394983 0.212197 1.391564 -0.603151 0.590845 2.609943 1.481191 0.267354 -1.938344 -5.469760 1.068575 0.163945 -0.363786 0.409624 -1.793884 -0.933887 0.914608 -0.857047 2.328895 0.249284 -0.692610 2.452338 -2.844888 -2.476977 -1.840177 -0.790835 0.653513 -0.521181 0.631446 -1.164904 0.421914 -0.277691 0.647029 -0.655321 -1.466659 0.073076 1.130254 2.478473 0.104305 -0.072754 2.720673 0.701441 -0.901116 -0.510400 -0.084049 -1.012867 0.685870 -2.905157 -0.538506 0.326581 1.205397 -1.852717 0.846649 -0.375408 0.564331 0.483383 -PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = 2.929831 -1.653191 -3.272345 6.762444 0.030697 0.787374 0.425915 -0.943351 0.092277 -8.254830 -3.081750 4.250665 1.787588 1.170185 -0.186567 3.440967 1.482950 0.942933 -6.525342 -0.054298 1.464856 -0.964462 -1.304032 0.187918 -0.345709 -3.021912 4.921622 1.298588 0.460786 5.002014 -1.423012 4.628087 4.699487 -0.861041 2.031114 3.246298 -1.205740 0.089755 -3.467101 -1.084317 6.447862 1.484818 0.260086 1.512199 -1.472719 5.595023 2.016131 5.645964 1.066297 -2.326538 3.037105 2.379964 -1.753924 -0.713417 -5.575565 0.761507 2.363335 1.462946 -2.039819 1.742996 -1.857257 1.560751 2.260086 2.205532 6.964059 1.570374 5.756742 5.246227 4.401153 -4.039382 1.533911 0.947384 0.092349 -0.255851 5.627931 -3.494639 -4.262626 0.954649 -0.479071 -4.272762 0.022174 0.060777 7.190049 -4.075332 -2.421919 -0.591282 1.824718 6.177576 -2.888974 1.745724 -5.245778 -0.246466 -0.990400 7.058249 1.260242 1.439634 -1.503067 1.943459 -0.781801 0.926278 1.280903 -5.355467 0.739304 -6.269867 -3.974967 -3.890375 1.476198 2.402306 -6.246216 0.446456 -1.900391 3.542938 -7.981824 0.192553 0.992163 2.015638 7.987871 0.410328 -1.948860 0.119394 0.967445 2.056803 2.519441 -1.999156 2.176337 -1.901627 1.431021 0.982995 1.814026 1.295882 -6.882765 -1.377171 1.057165 -0.809420 1.093059 3.215653 4.178778 -2.107284 2.734317 -2.993536 4.162128 -6.675267 -1.873615 -2.656867 -5.267633 -2.708360 4.706495 3.755146 4.940089 -1.431708 -2.576805 0.100696 -7.832574 -8.577076 -0.701630 0.547742 -1.130162 2.733067 -1.235074 2.306690 -4.443415 2.359820 4.357682 -2.591310 -3.069085 -0.112557 2.387541 1.169847 -1.929252 -1.312469 -1.076511 -1.410203 1.698674 7.131823 -0.648869 -9.320914 -9.018205 -2.375352 4.572705 -2.852168 0.330319 -2.666729 -2.355364 -4.821047 -0.188372 -4.142287 0.499098 0.062178 -2.201513 -6.221986 2.048005 -0.767904 -1.069297 1.375565 -4.967073 1.151295 3.268635 0.471466 0.950054 0.816951 -0.158617 -4.110223 -3.162120 2.509078 -3.490068 5.209510 2.548746 -0.683864 -1.994811 -2.692518 -4.584165 2.261808 -3.001743 3.214786 0.974223 -1.858509 1.686917 -5.159779 0.520442 -2.799986 1.593558 0.327132 -7.108704 6.751067 4.457036 -3.418182 0.156624 -0.276047 3.108574 -0.332201 2.733552 -3.680771 -2.877898 0.740307 0.710124 0.001578 -0.439052 1.219190 -1.806909 -1.823621 -4.672295 -1.931334 4.245620 2.294377 -0.722245 -0.589576 2.059547 -3.150306 0.790672 4.589256 3.313233 1.042962 -3.773511 -10.633696 1.501847 -3.336370 -2.008554 0.130954 -2.408617 -1.023945 1.920771 -2.651613 4.595816 -0.575199 -2.602761 4.729449 -6.758217 -5.009970 -4.513378 -2.006822 0.614488 -0.194939 0.694957 -2.760194 0.939699 -0.805670 1.384396 -2.694053 -3.171622 2.605017 2.726479 5.010098 -0.448625 0.021689 5.204669 1.913514 -0.523029 -1.868166 0.582142 -2.975211 1.705347 -6.578708 -1.368719 1.326523 2.642153 -3.699361 0.600132 -1.278310 1.341201 0.868716 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = 2.613800 -4.721930 -3.977566 8.432867 -0.092968 1.758957 0.666138 -1.118253 0.146677 -12.166963 -3.479630 5.417429 1.581806 1.975531 -0.356188 3.333215 1.748127 1.057530 -9.080194 -0.661671 1.964192 -0.381792 0.532391 0.303699 -0.003292 -2.947283 7.017540 1.050409 0.938109 5.342446 -1.249835 6.623306 5.998913 -0.550548 1.563786 3.453848 -1.618569 0.031213 -4.132462 -1.926628 7.929292 0.718705 1.222794 1.954730 -2.342321 5.818561 3.530273 8.487826 4.302339 -2.728652 5.009852 -0.376989 -1.960669 -1.075757 -7.008919 0.458713 1.874241 3.122667 -1.549445 1.632781 -1.836268 1.669391 2.045171 1.404995 9.457620 1.477798 8.505548 6.961064 3.858226 -4.651469 1.509398 1.049920 -0.746728 0.024036 7.266625 -6.799895 -3.821620 0.915465 -1.092100 -5.209454 -0.318512 -0.241170 10.724024 -3.933611 -4.085288 -1.059743 2.256628 7.790962 -1.738645 3.586390 -7.027556 -0.203771 1.399246 7.605949 0.863831 0.729255 -2.704892 1.436656 -1.027712 0.860603 3.533079 -5.250763 0.777125 -7.076688 -3.180812 -4.064551 2.602471 3.069616 -7.678577 0.898033 -3.717375 3.033205 -10.327770 -0.407307 1.107381 2.830431 12.468358 1.686289 -2.825722 -0.673461 1.826639 2.817664 2.910185 -3.677086 2.550858 -3.470218 1.936802 0.889356 1.956430 1.118512 -10.168236 -2.836714 0.593840 0.521030 1.439322 3.477253 6.229547 -0.780411 2.800611 -3.322268 4.471219 -8.033550 -2.345136 -2.453027 -6.885589 -3.386958 11.575352 5.037721 6.824578 -1.444238 -4.197575 0.231580 -8.585921 -10.626266 -0.886726 0.615168 -0.707732 4.052553 -1.235959 3.015821 -4.721535 4.337778 4.919910 -1.917307 -3.257008 0.222414 -1.907170 1.157322 -1.890480 -1.661411 -0.378972 -2.075534 0.848150 9.093765 -0.423767 -13.159388 -11.159592 -2.692277 4.881997 -3.331567 0.263476 -2.780883 -2.255301 -5.194874 -0.281404 -4.688086 0.796899 0.880004 -4.472490 -7.333368 2.765653 -1.131642 -0.801298 2.546335 -4.677120 0.821804 3.314456 3.236778 1.167268 1.130463 -0.190667 -5.834109 -4.387684 1.930239 -5.799003 6.103886 2.002657 -0.861489 -2.937024 -3.207288 -5.245910 2.198229 -2.942961 3.465539 0.506415 -2.242830 1.183096 -6.640797 3.561632 -3.806219 1.344509 1.197800 -13.109171 7.240541 4.030130 -3.122355 0.077187 -0.415309 2.834542 -0.541620 1.956391 -3.154529 -3.417385 0.803152 0.703708 0.306949 -1.385080 0.761856 -1.614608 -2.742135 -6.283902 -3.442932 4.485124 1.743781 -0.841801 -0.825159 3.603661 -2.796302 -0.572698 6.225972 3.512943 1.025386 -3.777053 -15.558016 1.835630 0.204644 -3.052372 0.312837 -4.346316 -0.763658 2.941172 -4.083970 4.408725 -0.841891 -2.012388 5.008596 -8.015361 -4.775888 -4.667659 -2.369658 0.981783 0.379261 -0.395344 -2.476752 1.117593 -0.532978 0.706790 -2.518386 -4.709366 2.995024 3.100006 6.302688 -0.335420 1.468360 5.301857 2.037234 -0.542456 -1.564619 1.045818 -3.335430 2.687440 -10.108841 -1.125330 2.232867 2.535450 -3.807571 -0.151322 -1.700356 0.694677 0.085687 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = 0.930714 -0.756257 -0.398841 1.748047 0.253776 0.218740 0.183126 0.081603 0.193587 -2.462028 -1.169553 1.349771 0.127764 0.103861 0.171802 0.565138 0.774330 0.297060 -2.653571 0.066369 0.353025 -0.225742 -0.212173 -0.053313 0.074722 -0.853997 1.224631 0.710139 0.149250 1.362599 -0.605549 0.999063 1.244607 0.140050 0.814743 0.957304 -0.537545 -0.290362 -0.693147 -0.518108 2.153884 0.541369 0.031168 0.773322 0.098336 1.632079 0.517865 1.485353 1.346609 -0.532349 0.842061 0.037010 -0.688820 -0.146041 -1.876991 0.177221 0.613697 0.228394 -0.699540 0.593029 -0.520462 0.462719 0.490092 -0.018178 2.096935 0.253375 1.645165 1.262356 1.276335 -1.083076 0.259380 0.298845 0.631222 0.417702 1.027187 -0.991119 -0.968336 -0.861682 -0.185085 -1.693997 0.050344 -0.353756 1.904450 -0.997535 -0.429343 -0.020136 0.069822 1.633024 -0.714224 0.131375 -1.676148 0.087146 0.109666 1.606940 0.314999 0.312676 -0.123510 0.418629 -0.200367 0.503797 0.413493 -1.475718 -0.066850 -2.669216 -0.933820 -1.021155 0.429871 0.207864 -1.618323 0.454708 -0.172170 1.147862 -2.039709 -0.304942 0.295751 0.300272 1.106538 -0.238091 -0.446889 -0.319682 0.192381 0.945127 0.722876 -0.860353 0.441617 -0.804733 0.311627 0.264757 0.759031 0.298067 -1.244840 -0.621675 0.443365 0.300269 0.104540 0.649331 0.806822 -0.341215 0.763631 -0.830392 1.279551 -1.688631 -0.347559 -0.933121 -0.738621 -0.733848 2.165301 1.234422 1.385667 0.176557 -0.413016 0.042631 -1.938624 -2.516212 0.128665 -0.044859 0.024425 0.480468 -0.241423 0.589524 -1.103484 0.227990 0.726517 -0.823958 -0.776818 -0.269850 -0.094594 0.216376 -0.499210 -0.606526 -0.011580 0.336713 0.027151 1.505583 -0.426180 -2.717970 -2.021223 -0.867398 1.254107 -0.874406 0.073209 -0.522060 -0.374300 -1.022218 0.111853 -1.133157 0.010315 -0.141047 -1.058245 -1.776738 0.380431 -0.365638 0.139601 0.442469 -1.368038 0.377678 0.767192 0.806603 0.254102 0.457998 -0.075865 -1.313290 -1.071477 0.168628 -0.755858 1.606538 0.626790 -0.259986 -1.033893 -0.711012 -1.227708 0.992902 -1.112763 0.853504 0.143421 -1.027361 0.542993 -1.048608 0.144438 -0.736201 0.557621 0.206855 -2.732987 1.836893 1.409273 -1.270060 -0.273561 -0.718665 0.781215 0.055598 1.195926 -1.046748 -0.581159 0.184044 0.157313 -0.007790 -0.386135 0.556164 -0.133759 -0.385232 -1.654178 -0.901311 1.286134 0.672974 -0.127736 -0.011577 0.700396 -0.084103 0.346651 1.591694 0.669573 0.341902 -1.188176 -3.527550 0.418149 0.851652 -0.170998 0.566923 -1.061560 -0.632319 0.165000 -0.784664 1.362333 0.155694 -0.402533 1.338953 -1.399044 -1.287549 -1.247940 -0.567991 0.179105 -0.236854 0.655052 -0.737918 0.033071 -0.391477 0.458731 -0.550980 -0.682980 0.097082 0.725636 1.202480 0.379828 0.016070 1.401694 0.490708 -0.581901 -0.417514 -0.016180 -0.792009 0.640480 -1.738663 -0.434274 0.122515 0.557768 -0.978171 0.279671 -0.086338 0.728926 0.010216 -PE-benchmarks/Iterative_QuickSort.cpp__main = 1.220399 -1.119546 -0.666160 2.638902 0.223407 0.273324 0.618282 0.216953 -0.078668 -4.266874 -1.557071 1.445766 0.427369 0.485928 -0.022572 0.833724 0.789742 0.788366 -3.751371 -0.195946 0.875301 0.089345 0.063413 -0.188914 -0.055535 -1.108715 1.318075 0.968095 0.365757 2.334633 -0.734059 1.555746 2.260151 -0.027629 0.642517 1.824442 0.282691 -0.034643 -1.004942 -0.586313 3.277466 0.491639 0.053879 0.894455 -0.332225 2.549771 0.931422 2.881286 0.756404 -1.146652 1.499618 -1.056791 -1.068782 -0.488364 -2.539463 0.410236 1.524437 1.745223 -1.034718 1.222030 -0.600181 0.576524 0.867514 0.102878 2.945025 0.948205 2.203157 2.154021 2.129164 -2.080214 0.277792 0.508081 0.157469 0.019071 1.686011 -2.139174 -1.029649 -1.475809 -0.003593 -2.808952 -0.346730 -0.079504 3.697147 -1.779610 -0.672550 0.639181 0.434765 2.497975 -0.990321 0.656170 -2.693069 -0.051347 0.330780 3.238279 0.357559 0.192202 -0.444349 0.749713 0.133724 0.826743 0.798274 -1.995479 -0.776932 -3.546372 -1.388865 -1.474148 0.447569 0.791944 -2.636817 -0.253703 0.020171 1.422831 -3.808071 -0.210182 0.798141 1.198386 2.678127 0.484089 -1.272603 -0.071443 0.229675 0.658503 1.259138 -1.542439 0.716416 -1.082867 0.430513 0.348678 0.728573 0.288018 -3.399447 -0.995163 0.393753 -0.217195 0.262426 0.840962 1.450731 -0.565061 1.187020 -1.724915 1.911424 -2.980681 -0.425746 -0.781476 -2.537842 -1.156663 3.719177 1.628088 1.870962 -0.166452 -1.509379 -0.096380 -2.832871 -4.181562 0.212346 0.366685 0.494921 1.007491 -0.603111 0.765325 -1.745164 0.707372 1.321748 -0.911207 -1.102258 -0.063217 0.615804 0.201508 -0.797985 -1.018672 0.284938 0.330083 0.176423 2.618694 -0.802733 -3.611064 -3.532905 -1.411372 2.069382 -1.121934 -0.012762 -0.811750 -0.734628 -2.232514 0.331033 -1.756594 0.422854 0.013801 -1.772704 -2.976069 1.096904 -0.634001 -0.435810 1.125187 -1.936487 0.332116 1.000294 1.000697 0.357154 0.216462 0.233685 -2.280739 -1.950198 0.258743 -1.453604 2.265984 1.004243 0.053280 -1.146266 -1.113941 -1.841958 1.432918 -1.218220 1.174320 0.044762 -0.934369 1.159071 -2.063884 0.667015 -1.631211 0.889669 0.816261 -3.912353 3.170469 1.817019 -1.506560 -0.456812 -0.642749 0.802077 0.360073 1.610270 -1.526682 -1.428012 0.766296 -0.066870 -0.008906 -0.790671 0.588065 -0.391250 -0.275982 -2.512103 -1.317716 1.572274 1.215358 -0.330088 0.377850 1.421982 -0.388557 -0.145602 2.706529 1.010667 0.206027 -1.416085 -5.208674 1.136371 0.408225 -0.505957 0.189024 -1.662093 -0.610367 1.019896 -0.799753 1.967449 0.789519 -0.713369 2.186559 -2.711294 -2.127093 -1.511448 -0.619625 0.692984 -0.444714 0.188419 -1.087269 0.562143 -0.225976 0.344939 -0.369292 -1.554708 -0.081322 0.854820 2.239412 0.041522 0.059644 2.480023 0.319222 -0.558422 -0.347927 0.086244 -0.467413 1.000032 -2.618673 -0.521958 0.339027 1.114657 -1.499404 0.661756 -0.515678 0.134380 0.651399 -PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 3.718360 -0.417575 -2.246206 3.609729 -0.620027 0.331584 0.552958 1.605563 -0.493495 -7.002116 -5.095650 1.588331 1.075474 0.591398 1.738936 2.717591 1.504317 0.407299 -8.456732 0.308596 2.162624 -0.844790 -1.304395 1.223476 0.208570 -2.586910 -2.133859 0.895652 0.089911 4.463557 -1.838267 3.467655 3.765204 -0.778908 1.246933 2.630226 -2.471548 -0.716196 0.870602 -0.111375 5.566746 1.583076 -0.272477 0.997952 -0.278719 4.693227 -2.667223 7.276791 -0.525033 -2.367308 5.007592 -2.955518 -2.551190 1.983093 -3.724543 0.738546 4.028542 1.442456 -1.590050 2.327971 -2.880734 1.804509 1.485155 -1.056006 5.933902 3.498335 4.195084 3.087208 3.743912 -2.371636 1.671532 0.409378 -0.135336 -0.706034 0.345110 -2.759828 -0.089103 -3.417584 1.126559 -6.198662 -0.389168 -1.181612 7.844845 -3.853194 -1.279956 1.110397 1.270296 5.131276 -3.038239 1.870838 -3.841190 0.181593 -0.606272 4.968602 -0.036413 1.235651 -1.405556 1.486482 -0.312382 0.808191 -1.155055 -2.977074 -4.996769 -6.857398 -4.164427 -1.669301 0.930833 1.777774 -6.518914 0.684355 1.997237 2.340812 -6.473017 0.144550 1.047135 2.057208 2.328919 6.853922 -5.364164 -1.662683 -0.050139 2.866790 2.271262 -0.950611 2.231404 -5.794584 0.507737 1.356304 1.754505 0.388732 -6.318938 -0.849914 1.448634 -2.280818 0.171267 2.901319 3.159003 -0.476288 2.907362 -2.650619 2.986614 -7.095834 -1.780877 -3.153313 -4.595147 -1.414099 5.512087 6.958386 2.636232 1.422952 -1.931865 -0.652706 -6.850248 -5.693494 -1.413955 -0.470211 2.281591 0.257319 -0.744190 1.256224 -2.484935 1.431333 0.674952 -2.600574 -1.773702 -1.936042 5.946923 0.680106 -1.951122 -2.553885 -0.657382 0.639865 -2.661683 3.759855 -0.554071 -3.977955 -6.793927 -2.524438 3.892914 -1.816244 1.336157 -2.211825 0.542274 -4.861214 -0.020669 -2.777766 -1.306310 0.327287 -2.996545 -4.965391 1.364532 -0.049221 -2.353448 0.281997 -3.766301 0.456690 5.256178 3.166207 1.861718 1.138730 -0.650196 -3.512747 -4.135900 -0.050076 -3.146691 4.601558 4.908735 -1.417922 -1.698987 -1.697270 -4.721587 4.037277 -3.309500 2.002052 -0.602738 -1.654011 2.115221 -3.732457 -1.445961 -3.290002 1.282520 -0.231922 -8.655026 5.520539 3.131954 -3.432542 -0.386210 -4.138783 3.204896 0.832762 3.440406 -1.603449 -0.624163 -0.006844 0.046006 -0.072326 -0.937741 2.495645 -1.828870 -0.875733 -3.429310 -1.060095 4.583046 2.426314 -0.413366 1.190211 1.791554 0.766965 3.421141 3.107675 1.516951 -2.671538 -1.931496 -10.412156 1.286504 1.898864 -1.790049 0.435273 -3.264938 -1.938154 -0.186935 -2.015925 4.067329 1.098524 0.366752 3.656160 -3.753682 -4.100900 -3.555736 0.650742 -0.269368 -0.988553 0.447267 -1.303461 0.739629 1.271217 1.818666 0.702131 -4.926459 -4.111891 0.968974 4.584725 0.004639 -0.527230 4.388907 1.445561 -0.942449 -1.653056 -0.206337 -0.762101 1.321962 -3.207100 -1.363765 0.057011 1.188763 -3.449252 1.455717 0.328196 0.996485 1.491633 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.866997 -0.438035 -0.244076 1.088375 0.058073 0.159657 0.308672 0.355778 -0.047397 -1.981248 -1.288879 0.316543 0.154111 0.155428 0.468436 0.435819 0.564176 0.133741 -2.082956 -0.025428 0.463612 -0.261403 -0.275664 0.337127 -0.036576 -0.807299 -0.333804 0.654022 0.047930 1.258307 -0.445618 0.731677 1.072647 -0.073398 0.361496 0.952387 -0.130299 -0.144896 -0.018715 -0.030589 1.741332 0.276045 -0.113642 0.407325 0.057801 1.420963 -0.434777 2.012269 0.326877 -0.633017 1.434071 -1.074069 -0.633880 0.191768 -1.266415 0.202805 1.150436 0.532309 -0.634306 0.773490 -0.773980 0.424216 0.378915 -0.256924 1.522288 0.874523 1.039678 0.828699 1.125822 -0.984874 0.145159 0.393251 0.178644 0.103967 -0.053184 -0.790364 -0.072242 -1.494023 0.276840 -1.411631 -0.254018 -0.359736 1.842153 -0.959134 -0.404422 0.554250 -0.031050 1.212483 -0.784633 0.422285 -1.287535 0.027995 0.192998 1.270213 0.102541 0.154108 -0.098306 0.337502 0.031454 0.551474 -0.149092 -0.933929 -1.428935 -2.176388 -1.189886 -0.543243 0.267022 0.262080 -1.596045 0.039953 0.736922 0.497009 -1.642395 -0.081307 0.433660 0.659611 0.480378 1.373445 -1.227280 -0.450861 0.220081 0.670420 0.851694 -0.403760 0.577594 -1.457354 0.292621 0.305619 0.472851 0.015345 -1.332085 -0.384134 0.387248 -0.285996 0.009544 0.416600 0.586305 -0.165254 0.799327 -0.720906 1.031239 -1.836172 -0.336292 -0.834207 -1.066532 -0.420362 2.040937 1.581122 0.978496 0.473318 -0.770877 -0.107646 -1.586579 -1.908849 -0.217832 0.003374 0.696281 0.107717 -0.282162 0.416632 -0.669260 0.232198 0.124283 -0.662916 -0.483674 -0.312529 0.816571 0.137570 -0.521322 -0.836371 0.143171 0.429713 -0.619829 1.020812 -0.327557 -1.324128 -1.539498 -0.842679 1.085746 -0.528343 0.219410 -0.350573 -0.067528 -1.412159 0.169236 -0.807000 -0.245664 -0.013142 -1.130416 -1.466364 0.503055 -0.212386 -0.384980 0.390771 -1.092027 0.112665 0.940611 0.900926 0.523159 0.368144 -0.133108 -1.107780 -1.249869 -0.226726 -0.700242 1.405553 1.063194 -0.212604 -0.401690 -0.572860 -1.156115 1.120650 -1.018853 0.499903 -0.017111 -0.679907 0.655759 -0.923816 -0.338381 -0.903862 0.493326 0.313292 -2.198776 1.533307 1.063183 -1.008445 -0.409445 -1.017466 0.588578 0.328355 1.207170 -0.572854 -0.249299 0.226479 0.151586 -0.022252 -0.340235 0.629429 -0.218042 -0.172650 -1.200644 -0.599071 1.092907 0.818403 -0.095796 0.303992 0.651172 0.465778 0.588979 1.190128 0.331264 -0.491425 -0.531025 -2.899517 0.588752 0.928926 -0.415511 0.417082 -1.166855 -0.539339 0.083614 -0.452637 1.150956 0.535567 0.118989 1.190365 -0.866714 -1.156259 -0.930379 -0.068085 0.064613 -0.435735 0.352904 -0.490073 0.241474 0.087862 0.307128 0.103675 -0.944270 -1.093984 0.227511 1.081481 0.088754 -0.018327 1.301885 0.245811 -0.456083 -0.405532 -0.005540 -0.184210 0.606553 -0.897898 -0.400503 -0.083148 0.434584 -0.828568 0.364896 0.016405 0.218033 0.470524 -PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = 0.568496 -0.554674 -0.283844 1.153060 0.189215 -0.270352 0.116153 0.069488 0.030852 -1.498312 -0.525847 0.133818 0.160412 -0.133164 0.274303 0.431532 0.413959 0.187029 -1.411178 0.329262 0.297046 -0.065601 -0.470680 -0.085239 -0.010376 -0.644158 0.429292 0.521541 0.040999 0.945348 -0.540481 0.462164 0.809761 -0.177275 0.734020 0.833900 0.188716 0.067483 -0.239333 0.303290 1.626451 0.400347 -0.191359 0.240702 0.375049 1.159685 0.210500 1.052783 0.013627 -0.456955 0.684947 0.091283 -0.217096 -0.168670 -1.233121 0.327903 1.114699 0.592827 -0.924831 0.568984 -0.468868 0.261649 0.445324 0.476039 1.399250 0.333235 0.864188 0.857127 1.194295 -0.652546 0.085410 0.254686 0.541469 -0.088053 0.764226 -0.589252 -0.657762 -1.221436 0.007560 -0.903254 0.096341 0.075020 0.936936 -0.882480 -0.019172 0.548591 0.121999 1.006567 -0.729711 -0.087309 -1.079522 -0.048716 -0.124928 1.662875 0.094691 0.180465 0.038409 0.683159 0.061198 0.520600 0.208171 -1.120234 -0.415270 -1.931170 -1.114930 -0.634668 0.061839 0.020059 -1.242086 -0.167076 0.502414 0.410326 -1.457109 0.218615 0.315582 0.369725 0.845405 -0.538616 -0.520143 0.033997 -0.146651 0.354882 0.471646 -0.371881 0.205907 -0.736502 0.473975 0.392396 0.426148 -0.000630 -0.790585 -0.058153 0.156489 0.008793 -0.213096 0.265426 0.332728 -0.840146 0.616899 -0.746972 0.991262 -1.359346 -0.086154 -0.760611 -0.861341 -0.291675 1.006527 0.407911 0.684111 -0.022611 -0.837411 0.065567 -1.469542 -1.970116 0.113698 0.036735 0.104782 0.218835 -0.264570 0.200758 -0.536968 0.008862 0.624246 -0.705249 -0.436290 -0.237008 0.492045 0.087308 -0.427045 -0.474821 0.007241 0.570319 0.260982 0.930942 -0.468582 -1.164534 -1.375172 -0.621435 0.854012 -0.396899 0.164369 -0.225716 -0.308263 -1.367588 0.495800 -0.900745 0.246311 -0.480258 -0.409617 -1.138977 0.214247 -0.310008 0.154968 0.061050 -0.961954 0.272470 0.124889 0.137724 0.154073 0.129811 0.201769 -1.183299 -1.043848 0.203755 -0.222769 1.172736 0.310809 0.041794 -0.107233 -0.392226 -0.854178 0.633155 -0.734258 0.373879 0.397431 -0.814763 0.743891 -0.715266 -0.396252 -0.706130 0.449312 0.186536 -0.427485 1.666752 0.990700 -0.938888 -0.221734 -0.326365 0.536398 0.200868 1.033816 -0.636538 -0.323034 0.287479 0.078357 -0.074676 -0.313965 0.469832 -0.236601 0.250075 -1.111675 -0.567933 0.702024 0.788957 -0.053703 0.142269 0.146350 -0.311266 -0.340228 1.209624 0.420694 0.379665 -0.747118 -1.643722 0.401244 -0.530705 -0.068762 0.062681 -0.529702 -0.392376 0.010604 0.231282 1.054336 0.818765 -0.239431 0.988727 -1.286315 -1.150912 -0.726600 -0.205838 0.101542 -0.488059 0.263679 -0.695935 0.151188 -0.274317 0.477209 -0.209445 -0.394569 -0.228816 0.249517 0.599802 0.113595 -0.417953 1.101208 0.190543 -0.414498 -0.261802 0.140831 -0.215701 0.588727 -0.584184 -0.521682 -0.261636 0.507236 -0.660950 0.499017 -0.314781 0.469673 0.382403 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = 9.741573 -3.398121 -9.121346 18.566840 0.264801 -0.545580 1.955907 0.390560 1.307040 -23.153832 -10.926328 10.762609 4.459106 -0.580139 1.466066 8.138288 4.850957 4.387229 -22.364289 1.869368 4.897884 -1.630355 -5.579851 -1.195892 -0.882046 -8.027020 7.413313 4.615411 0.852325 14.993958 -4.594792 11.531181 12.692791 -2.143703 6.551015 10.800969 -5.467047 0.139418 -4.503549 -2.164199 20.053414 5.896335 0.587493 5.965754 -0.870840 16.688843 0.852571 16.968678 2.307510 -6.403717 10.816659 7.155888 -5.275977 -1.178090 -16.343792 3.147805 11.913596 3.868775 -7.361428 6.786224 -5.629429 4.643957 7.071964 3.928365 21.077216 8.129151 13.468175 15.095238 15.511387 -10.233966 4.578637 1.764836 2.897282 -2.154784 14.322416 -9.858621 -11.158314 -2.560535 -1.836968 -16.631167 1.603637 -1.142737 22.975843 -12.906101 -4.067950 0.534996 6.809477 17.480243 -9.060955 2.460352 -14.529930 -0.359942 -4.579667 22.897481 2.259639 5.318149 -4.767889 6.382850 -2.547123 3.343041 1.037862 -15.370500 -2.171203 -24.089907 -13.260007 -10.385102 2.793917 4.642351 -20.126316 0.863381 -1.193872 8.901332 -25.494775 -0.417422 3.238504 4.824001 15.421996 1.824162 -9.859759 -0.666883 0.759327 6.632348 5.930322 -4.986207 4.534800 -9.241868 1.385444 3.593162 5.551769 2.732979 -18.503596 -3.188792 2.340146 -1.650094 1.750588 8.784742 9.916224 -6.873585 7.806998 -10.364836 12.851845 -21.645108 -5.776242 -10.017144 -14.211362 -7.047203 10.868583 11.674856 14.294001 -2.496698 -6.549488 -0.639864 -23.710948 -25.130687 -0.362068 -1.116614 0.083357 4.843644 -3.098141 4.071410 -11.590142 5.409693 10.883404 -8.869394 -7.711531 -2.284720 14.686366 2.253232 -6.149124 -5.730502 -2.894393 -0.301309 2.682045 16.887415 -3.144192 -21.376954 -25.770877 -7.292471 13.687418 -7.593112 1.496645 -7.404815 -4.585866 -13.734704 0.278960 -12.197109 0.512550 -1.423802 -5.633575 -17.701700 4.975603 -2.202707 -2.464763 2.413061 -14.462298 3.968839 12.024663 4.819156 2.115289 3.716566 -0.034274 -13.509319 -10.962315 4.904647 -7.630135 14.842107 11.469875 -0.593458 -5.949177 -6.837501 -14.478200 7.960875 -11.068085 8.631167 3.211378 -7.073562 7.623909 -14.727231 -2.029884 -10.198757 4.513299 0.275778 -20.345002 20.032482 11.582672 -11.718768 -0.312844 -5.304815 9.350082 0.204145 10.648642 -9.809086 -7.220549 3.119734 0.600376 -0.589645 -3.547363 4.681127 -5.005516 -1.696794 -14.105607 -4.991391 14.078403 7.993465 -2.249995 0.119297 4.345266 -7.830975 3.851186 13.943448 9.484097 1.518516 -11.828716 -31.057805 4.340556 -9.249772 -3.665357 -0.212295 -6.941441 -5.194793 3.707275 -4.072234 14.425949 1.310139 -5.644334 13.809867 -19.618776 -15.702524 -12.285768 -2.295323 2.902613 -3.009711 1.994713 -8.238799 2.370479 -1.556797 6.062384 -3.940528 -11.289268 0.418333 7.212075 14.895987 -0.491711 -2.772171 15.838864 5.246665 -3.551004 -4.575955 0.259881 -7.163423 4.172420 -17.022601 -4.276204 1.546115 7.564118 -11.440832 5.674913 -2.860057 5.568703 3.625412 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.252458 -0.110099 -0.027042 0.360881 0.104063 -0.305994 0.113129 0.183265 -0.070670 -0.607014 -0.247345 -0.122373 0.015889 -0.258804 0.178084 0.128064 0.174292 0.277390 -0.652041 0.265787 0.188751 0.053848 -0.227689 -0.150902 -0.010502 -0.232693 -0.262723 0.263918 -0.015846 0.438184 -0.311030 0.108765 0.349656 0.022209 0.354786 0.448564 0.153046 -0.069452 0.225171 0.213118 0.759192 0.174772 -0.080193 0.043303 0.299565 0.520274 -0.038746 0.336692 -0.185719 -0.169707 0.245424 -0.338719 -0.116410 0.029380 -0.546695 0.166983 0.461071 0.374541 -0.453619 0.347233 -0.300633 0.121429 0.227430 -0.010316 0.641883 0.205931 0.141424 0.341687 0.653537 -0.201501 0.059470 0.040877 0.321364 -0.151815 0.116816 -0.079541 -0.045601 -1.047367 0.007453 -0.619599 0.098374 0.081958 0.540427 -0.435407 0.203757 0.478944 0.100239 0.436345 -0.367393 -0.163999 -0.518658 0.008325 -0.027371 0.622342 0.025747 0.054818 -0.023187 0.301497 0.038667 0.220527 -0.083431 -0.446629 -0.504995 -1.065269 -0.517784 -0.206707 -0.188257 -0.167787 -0.617445 -0.160642 0.633278 0.373409 -0.717838 0.078850 0.158935 0.078926 -0.134463 -0.175066 -0.366822 0.022317 -0.230327 0.191485 0.141491 -0.187891 -0.016048 -0.465846 0.115791 0.161408 0.214117 -0.069620 -0.295998 0.011281 0.128015 -0.089549 -0.174406 0.076252 0.007922 -0.349165 0.230261 -0.427161 0.439426 -0.537763 0.078644 -0.362641 -0.425496 -0.073527 0.626594 0.278414 0.127472 0.131777 -0.343333 0.018956 -0.601848 -0.859749 0.182593 -0.159613 0.238076 -0.069665 -0.092702 -0.106537 -0.118230 -0.119555 0.148084 -0.398114 -0.152889 -0.179459 0.376253 -0.000646 -0.213857 -0.354794 0.032817 0.595068 0.024457 0.136386 -0.355217 -0.105454 -0.463333 -0.341884 0.382365 -0.117502 0.095322 -0.102358 -0.010206 -0.555877 0.334394 -0.348938 0.117512 -0.284895 -0.127215 -0.522516 0.026126 -0.159175 -0.039623 -0.060350 -0.340357 0.186224 0.049112 0.023119 -0.015585 0.029621 0.106052 -0.472086 -0.527477 -0.038074 0.067077 0.407106 0.304101 0.169359 -0.206944 -0.119308 -0.364530 0.448390 -0.374653 0.129567 0.195834 -0.462329 0.497093 -0.288716 -0.276614 -0.290855 0.277026 0.034064 -0.349729 0.677539 0.434968 -0.527975 -0.150667 -0.420693 0.246370 0.223820 0.642725 -0.186755 0.020202 0.204413 -0.007828 -0.081647 -0.237543 0.238056 -0.103942 0.334653 -0.524625 -0.254560 0.331390 0.437303 -0.035329 0.138763 -0.040453 0.088352 -0.131858 0.563029 0.102089 0.098936 -0.325307 -0.622597 0.174202 0.067519 0.178488 0.113570 -0.210249 -0.170163 -0.101617 0.092317 0.524912 0.516857 -0.069935 0.420550 -0.484121 -0.550526 -0.220606 0.129756 0.089435 -0.362880 0.252325 -0.308292 0.013607 -0.101980 0.336455 0.110826 -0.206475 -0.503131 0.078426 0.244115 0.186503 -0.370592 0.516822 -0.007857 -0.234371 -0.057759 -0.013386 0.101321 0.235526 -0.102461 -0.278649 -0.217772 0.239606 -0.321129 0.479136 -0.135354 0.224357 0.278099 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.472752 -0.059320 -0.031803 0.674973 0.125562 -0.465495 0.223324 0.380665 -0.227106 -0.900640 -0.303712 0.085624 0.018059 -0.326756 0.140590 0.121877 0.224943 0.301882 -1.314896 0.320166 0.186940 0.001607 -0.434928 -0.426952 -0.036515 -0.262919 -0.041793 0.645231 -0.061864 0.697880 -0.437538 0.101918 0.467199 0.161934 0.656987 0.619155 0.204131 -0.066234 0.051308 0.134980 1.134192 0.508530 -0.387759 0.098598 0.451412 0.846773 0.218731 0.140854 -0.580336 -0.172419 0.024862 -0.089399 -0.304335 -0.158082 -0.834206 0.087838 0.780914 0.619883 -0.610977 0.593696 -0.513079 0.157513 0.382996 0.226988 1.031541 0.137566 0.418921 0.545518 0.944547 -0.498262 0.072535 0.048515 0.558006 -0.261204 0.114354 -0.053358 -0.371964 -1.533345 0.115766 -1.329022 -0.030125 0.213083 0.723173 -0.566309 0.278499 0.544344 0.171984 0.595135 -0.789202 -0.255561 -0.787455 -0.073150 -0.224294 1.365864 0.092050 0.146761 0.175447 0.582125 0.271439 0.433402 -0.074285 -0.744644 -0.321874 -1.627022 -0.531144 -0.293139 -0.338513 -0.249435 -0.634930 -0.301990 0.967682 0.749640 -1.016622 -0.008548 0.238579 0.074151 -0.036994 -0.605152 -0.395818 0.295169 -0.455609 0.203476 0.456328 -0.420626 0.061966 -0.190499 0.189473 0.256019 0.383842 0.197791 -0.834488 0.029121 0.409618 -0.305163 -0.237847 0.097903 -0.123356 -0.456457 0.305430 -0.826511 0.821401 -0.819691 0.334083 -0.433018 -0.633981 -0.064146 0.365480 0.510638 -0.027241 0.158058 -0.267402 0.209309 -0.854527 -1.571399 0.450784 0.158858 0.171892 -0.270332 -0.168458 -0.090918 -0.404429 -0.222513 0.539151 -0.583360 -0.352648 -0.278775 0.863184 0.179759 -0.382384 -0.243392 0.180503 0.747270 0.332351 0.421358 -0.620295 -0.517928 -0.825782 -0.472300 0.634015 -0.192761 -0.189557 -0.084228 -0.179446 -0.849793 0.563846 -0.552628 0.484019 -0.398331 -0.147292 -0.831475 0.083117 -0.225652 -0.021071 -0.046326 -0.508624 0.193974 0.085615 -0.207067 -0.139615 0.067671 0.427024 -0.526148 -0.703377 0.127136 0.180068 0.707669 0.382860 0.257251 -0.348548 -0.116466 -0.563124 0.754675 -0.287097 0.303061 0.123632 -0.704257 0.779406 -0.406077 -0.436658 -0.297872 0.487763 0.160518 -0.140666 1.287844 0.874017 -0.789622 -0.306554 -0.465158 0.300234 0.316028 1.012775 -0.592152 -0.256957 0.307012 -0.003945 -0.138852 -0.184262 0.321720 -0.034113 0.319330 -0.833768 -0.430678 0.482619 0.566684 0.025472 0.301312 -0.088080 -0.113304 -0.367551 0.988091 0.167628 0.274317 -0.586945 -0.852801 0.321007 -0.381973 0.196520 -0.026016 -0.187171 -0.459811 -0.152215 0.132362 0.767600 0.803430 -0.659702 0.668300 -0.836744 -0.814914 -0.607835 0.130332 0.137325 -0.562935 0.399455 -0.452907 0.110791 -0.165112 0.425943 0.081153 -0.239926 -0.486605 0.058055 0.302372 0.234268 -0.682380 0.857740 -0.033572 -0.340173 -0.187474 0.000486 -0.032470 0.477834 -0.316693 -0.428191 -0.352060 0.516260 -0.466197 0.590253 0.052228 0.355274 0.478529 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 5.952603 -2.026749 -5.378029 11.682601 -0.366748 -1.034804 1.022675 1.719905 0.968509 -12.701680 -6.918950 7.980106 2.969448 0.588351 1.865773 4.197332 2.192450 3.030893 -14.140330 1.148702 1.918477 -0.494227 -3.973379 -2.353582 -0.494861 -2.721447 4.741247 3.274339 0.653266 8.386412 -3.068854 6.450635 6.749918 -1.261130 3.354857 4.891351 -2.621419 -0.468149 -4.250385 -3.200968 11.896832 3.466804 0.596985 4.933986 -1.353618 9.432800 1.235395 9.721440 1.613937 -3.808379 5.678158 3.033238 -3.976056 -1.131795 -9.574132 2.624949 6.398140 2.791722 -3.714031 4.909738 -2.854685 2.652631 4.770388 1.111490 12.834118 4.419148 8.742445 9.176350 9.106808 -6.404850 3.252607 0.280992 2.667104 -1.098539 7.816673 -7.129669 -5.718274 -4.179097 -0.106847 -11.312796 1.415221 -0.686786 14.574216 -7.996627 -1.309657 0.737646 3.936751 10.735616 -6.632185 2.362099 -7.898647 -0.687179 -2.630877 12.959708 1.333796 2.404672 -1.840180 3.841757 -1.263751 2.329596 0.520343 -7.529596 0.249704 -15.431405 -7.472262 -4.075443 0.809625 2.107732 -10.413607 0.477504 -0.582004 4.439953 -14.192899 -2.294738 2.300074 2.631712 6.678839 0.875771 -4.372057 -0.805092 0.129786 4.729699 4.105363 -4.334622 4.075270 -3.834845 -0.276662 2.710143 4.462298 2.955889 -10.443131 -2.847714 1.395890 -0.890837 1.275596 4.570402 5.728138 -2.986162 4.927862 -6.528740 7.844485 -12.550491 -3.224685 -5.448229 -7.375321 -3.780241 7.587299 5.571659 7.682285 -0.791801 -3.677800 -0.056421 -13.325015 -14.765704 1.298255 1.484629 -0.336966 2.788155 -1.626801 2.028856 -6.596960 1.750046 7.583060 -6.081694 -5.905563 -1.733628 6.951120 2.152934 -4.005192 -4.808518 0.594909 0.299273 1.030185 9.493304 -1.122059 -13.486068 -14.141459 -3.828601 8.387526 -3.353503 0.687462 -3.682962 -3.530138 -7.117947 0.172149 -7.607371 1.227429 0.395583 -4.767417 -10.972053 2.349237 -0.484744 -1.684593 1.601768 -8.854239 2.900781 6.807814 3.686020 -0.546697 2.947968 1.727259 -8.286919 -7.258926 1.956046 -4.007417 8.642996 6.541422 0.382646 -4.377500 -3.419688 -7.050508 5.377984 -7.104266 5.563349 0.852714 -3.810340 4.177076 -9.357866 -1.288223 -6.507932 2.599997 0.405592 -14.439200 12.096628 7.102474 -7.078358 -0.300912 -4.103455 5.773910 -0.214808 8.060512 -7.281574 -4.434453 1.861831 0.945781 -0.771652 -3.535112 2.563465 -2.150858 -3.099159 -7.951915 -3.105711 7.897074 4.306439 -0.504925 0.806496 3.517863 -3.943323 1.136363 9.021901 5.630565 -0.205839 -7.103383 -18.636582 3.654278 -0.771555 -2.290741 0.460109 -5.748004 -3.365173 2.366961 -2.315264 7.260318 2.243950 -2.250217 8.105163 -11.112430 -9.050061 -7.434837 -0.509644 1.446700 -1.695773 1.544889 -5.138180 1.457931 -0.735335 3.459198 -3.882556 -5.400270 -1.256804 3.490600 8.849302 -0.546143 -1.300433 10.318631 3.344066 -2.121969 -2.584018 -1.185018 -4.901913 1.933135 -9.282955 -2.236810 1.166330 4.400837 -7.552213 3.207744 -0.730978 2.641835 2.360131 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/tarjan-algorithm.cpp__main = 13.792021 -3.608701 -2.487996 20.153727 4.320635 -4.127236 5.038151 9.168156 -0.651984 -30.839998 -18.893414 4.413832 3.008011 -2.224579 6.928896 4.126271 8.363668 7.333949 -35.097837 3.309993 7.760258 0.535624 -6.511529 -4.756028 -0.577992 -8.644421 -2.732049 11.787776 1.887513 20.202650 -8.667814 7.925963 16.473403 -0.509299 10.337597 17.413503 -0.184305 -1.320350 0.545004 -2.804359 32.112809 7.850594 -1.207718 9.769176 5.134059 23.314418 -2.836938 22.840707 -2.926980 -9.469420 16.184426 -9.732542 -8.847726 -1.823236 -22.524312 7.203359 24.088950 13.391146 -14.772376 14.149515 -8.030636 4.974066 9.037729 -2.245220 25.010043 13.366722 12.416961 16.850083 24.065401 -15.803398 1.573327 4.544472 7.687490 -1.335241 3.746560 -15.972429 -4.798838 -26.655059 2.470553 -29.577110 0.745285 -2.719731 31.986079 -17.447705 2.400081 11.892175 2.935110 19.273358 -13.758519 -0.571064 -20.629548 -1.008512 -3.645469 28.305210 0.264169 2.673937 2.059757 8.949341 0.956819 11.628361 -2.131514 -16.695209 -15.986470 -41.407590 -18.568070 -8.684469 1.614648 1.195052 -22.386910 -4.536468 11.323854 5.774396 -29.909968 -3.292396 8.010265 9.289440 1.180512 4.925502 -17.522478 -4.187493 -2.949310 7.264169 10.319350 -9.377185 4.887349 -15.934166 0.086004 5.324459 8.844050 1.339415 -20.605018 -5.745966 2.531862 -4.810822 -2.010161 3.856374 6.016914 -8.499054 11.892500 -15.617594 19.352945 -29.123802 -2.232717 -14.206817 -18.167638 -6.779610 21.865126 13.107219 11.920895 4.212285 -11.027541 -0.821836 -25.430120 -31.483359 4.226480 1.477058 9.891559 1.286169 -4.789325 3.243797 -11.264750 -1.632072 7.107204 -12.727383 -9.544765 -6.189620 21.578446 1.181721 -8.648513 -13.591702 4.965906 12.073549 -4.260069 14.448259 -9.582990 -15.259403 -25.462712 -13.549578 18.724453 -7.258991 1.646553 -4.744127 -2.802301 -20.611048 5.971125 -17.379888 3.067203 -5.085414 -13.099808 -24.922098 6.781012 -4.818873 -2.256506 5.748368 -18.006466 5.342376 12.526065 12.420356 0.982974 4.531335 3.561383 -22.279751 -21.097391 -2.033296 -3.983700 19.828945 15.445504 2.045071 -7.480528 -7.894801 -15.005166 16.075149 -11.189913 8.600812 1.628767 -11.873429 15.035450 -16.338329 -4.258697 -18.438529 7.826804 6.115769 -28.460594 28.042440 14.878425 -17.723849 -6.422145 -15.783598 8.385372 4.451220 22.263927 -11.546941 -7.911594 7.741401 -1.105284 -2.087135 -11.102700 8.204335 -2.019869 3.216133 -22.461793 -11.235157 16.621858 14.488347 -1.348239 8.324812 8.106045 2.258502 2.251773 25.715617 8.544200 -2.091981 -13.606974 -40.071763 10.873968 7.405006 0.309999 0.332057 -12.042145 -11.440967 1.301082 3.566015 19.399378 18.895813 -1.046400 20.284708 -19.296574 -21.648041 -13.365861 2.861389 6.135508 -10.530928 1.029592 -12.369833 4.236997 -2.134501 6.948668 2.331325 -12.594101 -18.032765 3.638477 18.364246 1.794549 -5.435900 24.034051 3.621684 -8.897494 -2.982399 -0.785673 -0.994354 8.848777 -11.977494 -7.963902 -3.336071 8.657544 -14.244264 11.100816 -0.895941 5.277006 10.202761 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.192261 -0.248260 -0.600534 2.983574 -0.265023 -2.115627 1.306390 2.224639 -0.647352 -4.487515 -1.473203 0.043091 0.585547 -1.310341 0.235100 0.924708 0.421049 1.464781 -7.196542 1.356452 1.838572 0.527329 -1.460689 -1.892098 -0.154268 -1.445114 -1.093573 2.496295 -0.316137 3.627823 -1.615728 0.546471 2.646078 0.090272 2.223376 3.344426 0.401448 0.074097 0.982879 1.123919 4.553382 3.009489 -2.585699 -0.247777 1.319633 4.166124 0.747073 0.997120 -4.029345 -1.356990 -0.008564 -0.510663 -1.888358 -0.832295 -2.819421 0.317587 4.518225 4.026335 -2.402970 2.871454 -2.747995 0.491913 1.924431 1.424823 4.429677 1.418733 1.882862 2.717941 4.516775 -2.279938 0.780909 -0.224189 1.334885 -2.048598 1.126329 -0.732540 -2.128536 -7.110286 0.855579 -7.040090 -0.832706 1.430004 3.654320 -3.271918 1.606081 2.456208 1.690238 3.240776 -3.633699 -1.017201 -3.370217 -0.464727 -1.257535 7.579507 0.137101 0.769466 0.447139 3.195255 1.481833 1.439634 -0.040386 -3.391007 -2.226680 -6.866419 -2.034954 -1.964491 -1.469206 0.037588 -3.619538 -1.718444 4.649806 2.698108 -5.639775 0.695391 1.460180 1.044514 1.040673 -1.894018 -2.132683 1.890856 -2.390601 0.213025 2.145667 -2.308111 0.192775 -0.681295 0.907651 1.449928 0.921835 0.854429 -5.369892 0.497644 1.882650 -2.263962 -0.563670 1.424347 0.072260 -2.162657 1.455776 -4.705261 3.860304 -4.470420 1.569353 -1.388049 -3.477679 -0.598979 0.902134 2.751787 -1.160317 -0.304381 -1.553115 0.750476 -4.403793 -6.920328 1.521506 0.885383 1.188525 -1.277995 -1.040423 -0.640813 -2.008467 -0.109909 1.773561 -2.288658 -1.107477 -0.821583 5.810663 1.084941 -1.668071 -0.650377 0.081458 2.886683 1.444260 2.337299 -2.654897 -1.800425 -4.833819 -2.119422 3.257622 -0.746576 -0.914326 -1.340916 -0.915724 -4.219053 2.563947 -2.358739 2.233456 -1.466346 -0.281674 -4.166759 0.845073 -0.841579 -0.435067 -0.093485 -2.392564 0.386185 0.739847 -0.951665 -0.331541 -0.280254 1.996592 -2.658798 -2.838171 1.036812 0.127238 3.551266 1.871647 0.855806 -1.010717 -0.341487 -2.889414 3.577694 -0.501012 1.577399 -0.080904 -2.795046 4.025006 -1.942642 -1.824441 -2.326441 2.112592 0.520842 0.402189 6.672973 3.754302 -3.045284 -0.771191 -1.456424 1.273378 1.637235 3.627981 -2.805252 -2.182864 1.335067 -0.929709 -0.520667 -0.560851 1.301467 -1.077576 1.750976 -3.311242 -0.999008 2.410855 2.514167 -0.204395 1.959945 -0.319981 -1.397656 -1.499630 3.817282 1.150942 0.559511 -2.711418 -3.894921 1.871166 -2.935790 0.766890 -1.366269 -0.690928 -1.923575 -0.051694 1.641305 3.503826 4.803104 -3.531890 3.029165 -4.684816 -4.041295 -2.966459 0.825344 0.815009 -2.034845 0.849700 -1.650211 1.110989 0.055065 1.924089 0.935698 -2.246885 -2.134097 0.683256 2.149555 0.567088 -3.698419 4.204538 -0.477727 -1.118822 -1.093288 -0.091535 -0.285121 1.589865 -0.374297 -1.432926 -1.169417 2.788623 -2.455060 2.932927 0.231864 1.006446 2.480527 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.861563 -0.797122 -0.338947 1.158629 0.201089 -0.444915 0.163345 0.254098 0.117618 -1.392332 -0.370895 0.309811 0.125922 -0.321792 0.281511 0.472542 0.412541 0.080892 -1.581163 0.492113 0.095746 -0.211472 -0.723471 -0.184910 -0.038237 -0.595579 0.415395 0.692047 -0.092186 0.912497 -0.600392 0.423600 0.728118 -0.079027 0.855450 0.762154 0.230983 -0.094675 -0.217353 0.334479 1.675007 0.579783 -0.423775 0.202875 0.472839 1.174694 0.213656 1.367393 0.049643 -0.270281 0.749631 -0.141224 -0.353689 -0.069809 -1.394877 0.257767 1.097874 0.445998 -0.890953 0.632750 -0.708645 0.337392 0.528770 0.599464 1.666532 0.334042 1.006180 0.859684 1.337640 -0.654246 0.161226 0.236364 0.858877 -0.068386 0.726214 -0.509606 -0.672231 -1.678519 0.201287 -0.886425 0.112740 -0.048259 0.814879 -0.865736 0.001609 0.598747 0.231720 1.075426 -1.056960 0.050326 -1.173963 -0.001246 0.012928 1.893573 -0.026784 0.343187 -0.011670 0.725771 0.040297 0.503125 0.243597 -1.192299 -0.441861 -2.055135 -1.136675 -0.525183 -0.287317 -0.237911 -1.336885 -0.025002 0.797795 0.540543 -1.414928 0.119318 0.216356 0.136848 1.153914 -0.282711 -0.419318 0.078310 -0.207433 0.525542 0.454290 -0.431009 0.256248 -0.895253 0.638607 0.584814 0.514015 0.094094 -0.997976 0.177966 0.473084 0.030290 -0.237325 0.273054 0.168442 -0.983723 0.530194 -0.838851 1.031715 -1.381225 -0.175081 -0.864909 -0.815371 -0.156640 1.365903 0.595629 0.722346 0.300850 -0.745685 0.150256 -1.511443 -2.350653 0.103318 -0.059653 -0.013253 -0.048099 -0.199215 0.048699 -0.485589 -0.090440 0.652724 -0.907281 -0.564595 -0.389443 0.377935 0.165686 -0.449828 -0.372881 0.058596 0.858325 0.400849 0.945510 -0.476109 -1.615957 -1.336237 -0.634757 0.853017 -0.346994 0.077614 -0.186302 -0.272455 -1.509415 0.568353 -0.763822 0.416906 -0.489345 -0.452052 -1.160896 0.182898 -0.285102 0.290847 -0.100237 -0.939428 0.359648 -0.080731 0.204138 0.033470 0.299988 0.235858 -1.234411 -1.258959 0.171137 0.012606 1.568525 0.221500 0.112440 0.000989 -0.369245 -0.982540 0.876074 -1.202572 0.411734 0.473104 -1.027209 0.822063 -0.725091 -0.722508 -0.680762 0.639146 0.056737 -0.073156 1.930483 1.218615 -1.168645 -0.335487 -0.615135 0.676066 0.284377 1.390562 -0.716961 -0.241569 0.312424 0.375716 -0.199267 -0.226829 0.528022 -0.180961 0.267375 -1.190341 -0.677517 0.688411 0.860596 -0.039609 0.001648 -0.073268 -0.297424 -0.561214 1.319973 0.295177 0.432276 -0.835125 -1.816467 0.282648 -0.371324 -0.119418 0.231628 -0.830940 -0.459536 -0.147897 0.084011 1.158693 0.831797 -0.256377 0.967425 -1.381624 -1.186102 -0.836835 -0.123696 -0.050197 -0.532119 0.606920 -0.735467 0.040682 -0.303989 0.644875 -0.324537 -0.353724 -0.338875 0.212677 0.416022 0.168435 -0.724083 1.115824 0.259024 -0.362179 -0.394152 0.098271 -0.331628 0.716771 -0.557010 -0.502906 -0.367084 0.580975 -0.702883 0.671537 -0.046112 0.622723 0.292060 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.710283 0.310645 -2.606414 4.715493 -1.164198 -1.038500 0.787996 -0.266904 -0.477861 -5.154092 -0.225666 2.114485 0.736602 0.682907 -1.296162 2.852679 -0.188729 0.965667 -3.347802 0.592765 2.231319 0.714549 -0.555327 -0.086181 0.640117 -0.980878 1.261863 0.833762 0.155477 3.524638 -1.016532 2.802804 3.535662 -0.763554 -0.128828 2.407763 0.128536 1.744966 -0.118909 0.023246 2.100943 0.614130 -1.326401 -0.068743 -1.457271 4.009928 1.380834 2.336732 -3.359536 -2.251926 -0.174613 1.803970 -1.201194 -1.113545 -1.726158 1.016798 1.423214 3.765985 -1.201842 1.402928 -1.518931 0.855810 2.315579 1.903834 4.260311 2.979427 2.513921 4.273631 4.322876 -2.085333 1.777052 -0.047812 -0.267480 -1.587024 2.839769 -1.052991 -2.506324 0.060844 -0.848335 -4.019706 -1.151884 1.453206 4.744618 -3.577950 -0.686932 -1.299229 1.997043 4.770005 -2.980877 1.576946 -3.431710 -0.392869 -0.674290 6.142486 0.679369 0.893674 -1.730086 2.681564 0.080060 -0.006168 -0.377579 -2.460835 -0.242256 -2.130612 -1.875935 -2.350511 -0.095863 2.471509 -6.047441 -0.876655 -0.198139 3.182237 -7.413905 0.098290 0.773251 1.458170 5.233165 1.830308 -1.331673 1.927139 -0.636122 -0.628546 0.619348 -1.021649 1.467316 -0.727296 -0.716257 0.560179 0.445342 2.056787 -7.909725 0.222911 0.710477 -2.988191 1.505725 3.975064 2.441789 -0.903466 1.464316 -3.895161 2.668570 -5.183773 -1.788057 0.262730 -5.151339 -1.732835 0.823870 3.342207 1.179111 -2.952722 -1.846579 -1.492527 -6.200520 -5.395178 -0.064241 0.492730 -0.246196 2.124664 -1.271101 0.365029 -3.252161 1.552566 3.737271 -1.741993 -1.820778 -0.924815 4.768138 1.443637 -0.241802 -0.990547 -1.962178 -0.553548 0.809904 3.946417 -0.781816 -3.694267 -7.700929 -1.088129 2.768338 -1.184749 -0.356563 -2.909895 -1.556755 -4.226331 0.767022 -2.402546 0.321726 0.199171 0.259237 -4.420923 2.687386 -0.383755 -1.986086 0.106616 -2.368208 0.335103 1.622060 -1.706761 0.779056 -0.218935 0.217786 -1.216847 -1.605549 3.330941 -1.557607 1.818212 2.126453 -0.014058 -1.144979 -1.851457 -3.475330 3.294439 -0.896071 2.525657 1.381756 1.031005 3.091774 -3.270627 0.199629 -2.109002 1.553080 0.043867 -3.308671 3.716007 2.504403 -2.262915 0.684957 0.373822 2.333614 1.158608 0.899124 -2.916096 -3.107184 1.210619 0.112060 -0.213336 0.047238 0.162029 -2.186581 0.706793 -2.121011 0.454199 2.569716 1.171725 -1.171357 0.194741 0.050054 -4.373235 0.305910 1.998866 2.817264 0.407859 -2.414981 -4.307467 0.397079 -5.392877 -0.280451 -1.336595 -1.486305 0.161278 2.422640 -1.795521 3.380429 -0.888593 -4.078526 2.928220 -6.638324 -3.678704 -1.670563 -0.115354 0.396308 0.220222 0.887658 -0.760705 0.912753 1.524102 1.694204 -1.446470 -3.917075 1.510584 1.664127 4.379199 -2.342282 -1.756555 3.788516 -0.383678 0.376401 -1.552031 1.015391 -1.361864 -0.703205 -4.494358 -0.715348 0.897034 2.808086 -3.733827 2.835904 -0.831548 -0.179986 1.476824 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.187652 0.130128 0.097078 0.638137 0.157243 -0.057955 -0.006667 0.099525 -0.374873 -0.391653 -0.276031 0.044704 -0.160130 0.112570 0.319297 -0.177626 0.083808 -0.076712 -0.468591 -0.011471 -0.181717 -0.251223 -0.027276 -0.306920 0.107872 0.510720 0.035319 0.366825 0.078885 0.247249 -0.403512 0.239923 -0.044328 0.509214 0.359930 -0.415745 -0.037237 -0.124093 -0.454224 -0.517774 0.365022 -0.072401 -0.162784 0.257655 -0.013716 0.248936 0.050162 0.100873 0.073018 0.285585 0.270909 -0.458493 0.069932 0.166913 -0.371423 0.019528 0.312672 0.175342 0.138231 0.004197 -0.260763 0.309285 0.076707 -0.319341 0.594527 0.232382 0.289473 0.324111 0.132441 -0.474656 0.087187 -0.159516 0.538962 0.024882 -0.808153 -0.148372 0.192598 -0.956741 -0.100419 -0.675767 0.082154 -0.132045 0.365708 -0.051960 0.062296 -0.059311 -0.296880 0.064047 -0.545416 0.515420 -0.415396 -0.055908 -0.081370 -0.018040 -0.034273 -0.134777 0.148702 -0.034277 0.085964 0.243628 -0.146994 -0.042252 0.086934 -0.623902 -0.323393 0.597173 -0.180557 -0.291372 -0.072433 0.177286 0.431628 0.226893 -0.149872 -0.731500 -0.265405 0.094986 -0.561806 0.195716 -0.249162 -0.029406 -0.064802 0.453800 0.503288 -0.148574 0.381187 -0.452131 -0.487914 0.093914 0.651066 0.462235 -0.067418 -0.257549 0.125692 -0.131417 -0.111502 -0.264388 -0.353810 0.397720 0.086855 -0.020488 0.414113 -0.266663 -0.056405 -0.334554 -0.089095 0.260140 0.487740 0.425897 0.140730 0.727400 0.094349 0.188935 -0.052722 -0.344868 0.262950 0.352762 0.016664 -0.129077 0.029764 0.315193 -0.269351 -0.353423 0.533243 -0.438965 -0.730932 -0.472771 -0.154986 0.021179 -0.216693 -0.321637 0.547953 0.452568 -0.402210 0.283672 -0.194649 -0.228143 -0.304185 -0.215348 0.275584 -0.202784 -0.207438 0.219093 0.408568 -0.393199 0.163865 -0.303785 0.220327 0.269778 -0.487635 -0.394143 0.087038 -0.035384 0.026023 0.206013 -0.070207 0.212511 0.119562 0.509685 -0.222030 0.551845 0.320115 -0.140930 -0.633711 -0.333898 0.239885 0.223032 0.036632 0.139488 -0.589681 -0.322383 -0.156980 0.643510 -0.166453 0.235026 -0.228739 0.117932 0.012504 -0.296644 -0.158924 0.072274 0.193010 0.384534 -0.894873 0.164510 0.258110 -0.385304 -0.274081 -0.948724 0.396937 -0.072699 0.883744 -0.408681 0.046436 0.030971 0.585117 -0.149887 -0.403978 0.199074 0.223158 -0.538949 -0.328682 -0.448427 0.094571 -0.030175 0.255948 -0.013730 0.250613 0.286514 -0.183772 0.644224 0.100557 -0.100880 -0.026257 -0.458499 -0.080656 0.961386 0.197871 0.394954 -0.538332 -0.356611 -0.344662 -0.226746 0.287358 0.105939 -0.172986 0.364146 0.049089 0.092268 -0.343228 0.255146 -0.101122 -0.484972 0.318831 -0.225026 -0.238462 0.241583 -0.031677 -0.020800 0.167108 -0.580694 -0.320851 0.166758 -0.072628 0.083798 0.263107 0.391326 -0.404913 -0.042559 0.147764 -0.282956 0.101817 -0.548462 -0.077969 0.084111 0.051741 -0.233811 -0.100662 0.339855 -0.130013 -0.157057 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.678287 0.524317 -6.652194 13.854465 -2.624393 -6.965490 4.616637 6.672293 -0.541161 -16.728987 -4.322887 8.299298 3.898093 -3.233510 -1.466267 5.096064 -0.006124 6.682466 -22.830580 4.447171 5.932302 2.335199 -7.122345 -6.967597 -0.570638 -4.498112 1.509613 7.129484 -0.194228 13.768281 -4.848145 3.642627 11.134467 -1.002039 6.729388 11.833503 1.671408 1.634026 -0.983977 0.917018 14.906864 12.627366 -7.888191 1.625846 0.878731 15.597627 5.374474 4.584020 -14.488438 -6.342056 -2.978440 3.612428 -7.578216 -4.505548 -9.548126 1.810062 12.120579 12.126145 -7.338409 9.960671 -7.892214 1.631307 8.236094 6.853829 15.713562 5.377839 8.174523 12.207455 16.994342 -8.944857 4.579756 -0.705082 3.496216 -7.207043 11.216335 -1.980629 -12.664081 -13.332786 2.228614 -22.813888 -4.121497 5.426910 15.809168 -13.974588 4.690828 5.210488 8.924983 13.849276 -13.378694 -2.369391 -12.043242 -2.532465 -6.240665 28.859586 2.505217 4.644599 -1.123498 11.611948 4.244867 3.179477 0.877265 -13.755984 -1.522164 -20.732288 -5.661799 -8.672192 -5.421757 3.410212 -13.531587 -6.152548 9.491392 15.500893 -23.420025 2.395476 5.062409 2.356958 11.956584 -6.056223 -4.298551 9.183062 -6.148005 -1.220483 7.069981 -9.785484 1.732173 3.213853 2.066741 4.637016 2.460586 5.877983 -23.479176 0.773032 7.048561 -7.390121 0.182204 8.512139 2.792844 -9.743255 5.589386 -17.331775 13.332994 -16.068283 2.124548 -2.133556 -15.750868 -4.453164 2.234090 8.754488 0.521411 -5.472570 -4.347203 0.990653 -18.147387 -27.537461 6.139291 3.682264 1.053705 -1.276277 -3.605571 -1.724703 -10.982694 2.530889 10.293046 -7.721393 -5.059923 -0.146126 22.002771 3.939927 -5.502990 -1.690740 -1.945353 4.455606 9.828335 12.108438 -7.633909 -14.117928 -20.923235 -5.746832 12.824902 -3.056579 -3.607951 -6.719017 -6.333055 -13.417303 5.435689 -9.638922 8.937623 -3.605437 0.912132 -16.251565 3.955094 -2.351043 -2.575831 -0.235331 -9.500195 1.595252 4.845682 -6.059061 -2.102435 -0.741889 7.612933 -7.958269 -7.689490 7.923053 -2.349946 13.296333 7.495799 3.172111 -4.602160 -1.490274 -12.048563 11.775408 -4.921055 7.497744 -0.368658 -7.191131 14.298696 -9.288276 -6.239060 -9.211597 7.656867 1.173796 0.037458 22.434314 13.906262 -9.837473 -0.165263 -0.063897 5.236145 6.269406 11.291333 -12.795284 -11.489437 4.945622 -3.884806 -1.001059 -1.022400 3.198462 -5.878845 4.233162 -10.256116 -1.427847 9.875602 7.373232 -1.497332 4.648038 -0.735601 -10.292756 -3.557815 12.412806 6.978241 3.281123 -12.702663 -15.080805 6.848853 -17.120237 0.662100 -6.080257 -2.494483 -4.894185 3.476156 0.553007 12.126179 9.961337 -15.270299 11.224962 -21.894054 -15.319776 -11.187286 0.949551 3.464240 -4.156128 4.042566 -5.059392 5.338215 0.526141 6.457362 -0.740142 -9.338543 0.028309 4.732357 8.851474 -0.590111 -11.651843 16.491354 -1.229247 -2.055665 -3.774041 -1.064875 -3.691607 2.021778 -8.148200 -4.155193 -1.600331 11.273941 -10.269433 10.539245 -0.664166 2.750271 8.339294 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.256511 -0.206680 -0.627576 1.847394 0.781163 -0.660624 -0.186106 0.535126 0.267646 -1.640734 -1.028579 1.058152 0.241006 0.103387 0.687048 0.539429 0.594462 0.586641 -1.500529 0.670313 -0.505021 -0.039376 -1.267971 -0.734158 -0.042939 0.033198 0.098411 0.769097 0.168130 0.709895 -1.105230 0.641966 0.811245 -0.083051 1.092536 0.078587 0.912761 -0.513397 -1.032466 -0.746292 2.620220 0.323138 0.503473 1.325097 0.398442 1.446870 -0.248006 2.372504 0.464976 -0.364195 1.097226 -1.086633 -0.515356 0.131241 -2.275587 1.614834 0.780949 -0.016629 -1.326588 0.897914 0.122078 0.530446 0.879756 -0.714516 2.345758 0.748373 1.138373 1.269350 1.868990 -0.738076 -0.087951 0.328571 1.806461 0.417529 0.594311 -1.411193 0.060624 -1.926819 0.475817 -1.215757 1.119548 -0.832108 2.226280 -1.548091 0.298040 1.154030 0.106490 1.393895 -1.472112 0.381413 -1.640534 -0.007806 -0.158698 1.804496 -0.008429 -0.102919 0.043695 0.559999 -0.187584 0.921810 -0.173528 -0.730688 -0.689597 -2.872411 -1.985275 0.378340 -0.319250 -0.727948 -1.414543 -0.120465 0.647827 1.061492 -1.730279 -0.849629 0.449786 -0.173454 0.346802 0.493979 -0.578951 -0.578223 -0.043943 0.920283 0.200605 -0.619325 0.633332 -1.040259 -0.198593 0.407977 1.408162 0.215395 -1.057397 -0.263874 -0.170411 0.330038 -0.224001 -0.503280 -0.020887 -1.399535 1.089082 -0.362183 0.986707 -1.700176 -0.877714 -1.352352 -1.011263 -0.057290 2.774061 0.268300 1.926639 1.279549 -0.699231 -0.441350 -2.056939 -2.584207 0.584718 0.255228 0.193044 0.248406 -0.139310 0.033021 -0.256624 -0.797196 1.363370 -1.839995 -1.632890 -0.733629 0.792602 -0.284172 -0.648941 -1.814629 0.957286 1.624169 -0.420796 0.514259 -0.384461 -1.850016 -1.006466 -0.807391 0.923012 -0.250813 0.877932 0.149108 -0.121663 -1.424109 0.284754 -1.731265 0.589223 -0.307265 -1.270305 -1.596871 0.225647 -0.316833 0.039022 0.020108 -1.452024 1.370631 0.171799 1.339012 -0.638932 0.626227 0.505147 -2.252407 -2.111803 -0.710680 0.103232 1.801704 0.894958 0.742144 -0.507934 -0.615845 -1.073092 1.105485 -2.489308 0.334382 0.591381 -0.887232 0.532946 -1.777864 -0.810992 -1.386790 0.721668 0.160534 -1.891627 1.819465 1.213688 -1.797949 -0.713406 -1.917173 1.083610 0.244363 3.027047 -0.913124 0.077119 0.546434 0.891233 -0.641275 -1.278969 0.817313 0.288010 -0.157793 -1.824738 -1.228796 0.595383 1.181072 0.089246 0.095091 0.468648 0.465927 -0.477248 2.082757 0.491342 0.101327 -1.094543 -2.917945 0.404488 1.240067 -0.127481 0.704290 -1.504647 -0.519299 -0.318442 -0.182090 1.437371 0.531312 1.088074 1.292925 -1.694663 -1.373075 -0.291572 0.331055 -0.092965 -0.852198 0.961510 -1.347968 -0.332042 -0.606323 0.477915 -0.976124 -0.179952 -1.711932 0.032916 0.692508 0.219969 -0.174804 1.682563 0.708518 -0.634827 0.084480 -0.371458 -0.066148 0.456805 -1.303520 -0.667073 -0.501044 -0.110673 -0.936285 0.778261 -0.006134 0.282787 0.404215 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.715883 -0.055665 -0.161636 0.734083 0.239868 -0.597929 0.232469 0.491405 -0.059457 -1.286791 -0.569183 0.195488 0.073836 -0.513238 0.223071 0.315034 0.421731 0.642340 -1.366866 0.506538 0.334558 0.153972 -0.564734 -0.402288 -0.016125 -0.392965 -0.441120 0.427216 0.051348 0.931011 -0.629321 0.184972 0.732272 -0.012971 0.718836 0.928480 0.264488 -0.163520 0.396000 0.141417 1.582487 0.474091 -0.087880 0.326725 0.597051 1.082858 -0.139781 0.859754 -0.394333 -0.353527 0.399702 -0.498601 -0.376281 0.071422 -1.127240 0.423675 0.935968 0.673168 -0.922111 0.723347 -0.407148 0.267244 0.495255 -0.049912 1.207371 0.532401 0.231629 0.759978 1.411076 -0.451981 0.143351 0.082603 0.703754 -0.188102 0.410318 -0.293726 -0.173009 -1.617947 0.030929 -1.365269 0.289941 0.032443 1.481014 -0.983719 0.488015 0.890270 0.341749 0.904749 -0.726912 -0.370021 -1.035626 0.029951 -0.229316 1.436754 0.008495 0.244876 -0.131843 0.583337 0.015799 0.418848 -0.174141 -0.949655 -0.896453 -2.091903 -0.970720 -0.497366 -0.408021 -0.254444 -1.202957 -0.319668 1.070111 0.917370 -1.556826 0.088913 0.309828 0.067667 -0.106522 -0.058472 -0.775397 0.058989 -0.524607 0.296234 0.138000 -0.415166 -0.109583 -0.727235 0.034693 0.285918 0.435966 -0.045618 -0.942332 0.026237 0.239355 -0.225543 -0.324976 0.200213 0.060068 -0.839530 0.477065 -0.866413 0.823845 -1.137298 -0.046683 -0.685435 -0.986862 -0.234041 1.113240 0.517783 0.426273 0.229437 -0.472759 -0.126085 -1.279469 -1.657343 0.447788 -0.362400 0.439655 -0.089221 -0.149447 -0.238959 -0.379626 -0.295807 0.335325 -0.815403 -0.336941 -0.394944 1.253303 -0.114796 -0.395855 -0.714973 0.028220 1.104025 0.139871 0.280620 -0.747347 -0.425691 -1.048291 -0.652778 0.831323 -0.285894 0.224533 -0.201938 -0.043529 -0.921517 0.486409 -0.745284 0.302808 -0.591729 -0.212184 -1.121663 0.142929 -0.312635 -0.163816 -0.073283 -0.748413 0.449776 0.270995 0.147390 -0.135330 0.057717 0.221866 -1.086404 -1.041937 -0.019589 0.107489 0.871713 0.778413 0.322597 -0.466883 -0.255854 -0.817786 0.865124 -0.913313 0.335501 0.360064 -0.782448 1.004384 -0.667835 -0.476951 -0.766960 0.581620 0.065737 -0.889935 1.428648 0.830569 -1.086406 -0.252314 -0.850597 0.526065 0.431419 1.281209 -0.476786 -0.154964 0.495439 -0.159101 -0.171634 -0.517034 0.476279 -0.186640 0.733135 -1.103609 -0.454588 0.739948 0.848140 -0.119416 0.292427 -0.016622 0.035011 -0.112927 1.219881 0.318859 0.230111 -0.810971 -1.451183 0.361047 -0.027124 0.348193 0.132832 -0.366040 -0.402536 -0.124916 0.117466 1.062237 0.768461 -0.106488 0.868553 -1.155568 -1.160982 -0.372153 0.251995 0.311918 -0.672324 0.470631 -0.649568 0.026696 -0.246271 0.710108 0.165294 -0.492930 -0.905612 0.240987 0.631064 0.370486 -0.730066 1.102643 0.014564 -0.458767 -0.000201 -0.111008 0.267691 0.333035 -0.410679 -0.473527 -0.393545 0.476987 -0.727862 1.054938 -0.170855 0.468503 0.535894 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 1.430322 -0.270097 -0.896519 1.745281 -0.114079 -1.138857 0.480594 0.756209 -0.158905 -2.083559 -0.501705 1.407676 0.355458 -0.872403 -0.096945 0.777204 0.447993 0.705010 -2.986015 0.872138 0.325020 -0.070173 -1.598253 -0.839692 -0.212308 -0.853067 0.509025 1.237436 -0.223057 1.680129 -0.785944 0.427655 1.242351 -0.139587 1.417698 1.625722 0.132618 -0.029847 -0.033313 0.364946 2.504542 1.529023 -0.800141 0.306587 0.862911 2.075008 0.598430 0.969258 -1.078835 -0.540817 0.059238 1.040133 -0.954465 -0.459863 -1.940424 0.084805 1.491071 0.969227 -1.410735 1.415040 -1.193824 0.328771 1.061529 1.207033 2.561688 0.401932 1.296449 1.490667 2.340446 -0.964584 0.448176 0.088506 1.182927 -0.604871 1.493673 -0.195331 -1.672757 -2.023622 0.275484 -2.768872 -0.032284 0.519630 2.148383 -1.625741 0.370553 0.776041 1.066997 1.766693 -1.910867 -0.621157 -1.716729 -0.211137 -0.784323 3.856750 0.259534 0.835858 -0.058748 1.479651 0.376786 0.645342 -0.057088 -2.156847 -0.211952 -3.428440 -1.233771 -1.235279 -0.911716 -0.243654 -1.837050 -0.610316 1.572219 2.064530 -2.787203 0.317212 0.594422 -0.188400 1.499436 -0.912287 -0.757203 0.942651 -0.944986 0.404215 0.866907 -0.880605 0.068057 -0.012334 0.685162 0.695942 0.583004 0.601971 -2.848691 0.359605 1.134105 -0.630132 -0.325449 0.776773 0.139475 -1.524910 0.725031 -2.038363 1.818943 -2.216573 0.226063 -0.941908 -1.735331 -0.419578 0.511127 1.367825 0.523491 -0.299543 -0.457655 0.333850 -2.643489 -3.980571 0.845253 0.025626 -0.112431 -0.515859 -0.345302 -0.374573 -1.169177 -0.060740 1.505075 -1.332839 -0.675283 -0.432849 2.574121 0.544523 -0.859083 -0.254386 -0.229556 0.955539 1.545576 1.380713 -1.207740 -2.593176 -2.471968 -0.801941 1.575782 -0.453916 -0.354894 -0.488844 -0.937951 -1.772060 0.866583 -1.264537 1.091278 -1.005119 0.114752 -1.993151 0.284446 -0.371147 -0.146771 -0.443845 -1.414073 0.423174 0.502567 -0.746057 -0.272055 0.088623 0.834411 -1.334335 -1.301186 0.935995 0.036041 2.032737 1.215314 0.489448 -0.567941 -0.114206 -1.810462 1.392409 -1.326069 0.898913 0.552494 -1.708913 1.887080 -1.175093 -1.014046 -0.835914 1.153000 -0.063905 -0.315277 3.358947 2.274259 -1.836826 -0.298802 -0.340070 0.827060 0.715685 1.903886 -1.590636 -0.969518 0.657011 -0.209129 -0.241752 0.044125 0.660839 -0.421100 0.773007 -1.797885 -0.564164 1.448423 1.254635 -0.099350 0.268953 -0.570287 -1.181180 -0.631718 1.976545 0.623815 0.860429 -1.719647 -2.563017 0.719101 -2.206637 -0.038057 -0.188108 -0.306022 -0.862165 -0.042824 -0.194822 1.788216 0.783097 -1.836762 1.458755 -2.719632 -2.201524 -1.656210 -0.008042 0.301228 -0.804803 1.090346 -0.989250 0.360953 -0.496381 1.247242 -0.326509 -0.796794 -0.115206 0.636135 0.794530 0.472316 -1.801573 2.073358 -0.143646 -0.437143 -0.637020 -0.159721 -0.412808 0.900351 -1.280929 -0.831136 -0.715173 1.483142 -1.284838 1.499012 0.079004 1.151798 1.070081 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 1.892373 0.428481 -0.554247 2.252040 -0.234991 -2.219278 0.896350 1.941470 -0.815814 -2.646050 -0.777741 0.826429 0.288017 -1.418353 0.101227 0.381752 0.186725 1.283843 -5.355294 1.341949 0.747212 0.370687 -1.807651 -2.265464 -0.153273 -0.230277 -0.432309 2.093110 -0.302686 2.471250 -1.380017 0.044373 1.436433 0.472240 2.136987 1.992766 0.299549 0.011157 0.452849 0.374274 3.275343 2.655618 -1.918543 0.203019 1.409040 2.787912 0.988658 -0.326631 -3.418935 -0.482206 -0.829079 0.503948 -1.418860 -0.730593 -2.158790 0.026802 3.125304 2.569631 -1.675250 2.251051 -1.807528 0.400140 1.595405 1.143712 3.434141 0.633491 1.255192 1.923621 3.328431 -1.498460 0.702781 -0.546460 1.876470 -1.689259 0.590463 -0.133773 -1.941568 -4.980030 0.527817 -5.860699 -0.280208 1.198885 2.602817 -2.201621 1.689372 1.538537 1.327209 1.966019 -3.205083 -1.134212 -2.191719 -0.480925 -1.647216 5.881096 0.121295 0.834146 0.586365 2.399902 1.313422 1.082586 -0.378235 -2.505508 -0.412911 -5.303375 -1.081592 -0.841171 -1.830433 -0.609880 -1.827822 -1.434316 3.377613 2.783343 -3.833648 -0.075153 0.814809 -0.076407 0.083185 -2.346572 -1.255895 1.957313 -2.375522 0.344466 1.670060 -1.860641 0.026692 0.433650 0.161595 1.115534 1.083267 1.310860 -3.992746 0.471077 1.681134 -1.687681 -0.750772 0.737244 -0.694824 -1.563226 0.779983 -3.568712 2.861954 -2.858624 1.368867 -0.971144 -2.389616 -0.040541 -0.543066 1.725441 -1.113686 -0.031726 -0.255978 0.879082 -2.967684 -5.387456 2.094948 0.927909 0.393652 -1.528830 -0.505468 -0.804914 -1.612012 -0.755387 2.222120 -1.944822 -1.180747 -1.001700 4.865676 0.914208 -1.401780 -0.174790 0.430882 2.338300 1.886439 1.428866 -2.268159 -1.690495 -3.208444 -1.185328 2.318936 -0.400158 -1.194822 -0.499323 -0.683978 -2.695172 1.921729 -1.801781 2.299178 -1.228434 0.295872 -2.834025 0.172342 -0.516483 -0.032026 -0.551155 -1.465552 0.455277 0.613971 -1.049058 -0.988463 0.119061 2.245949 -1.468205 -2.031562 0.935106 0.845655 2.383997 1.389808 1.142333 -1.256789 0.155381 -2.016456 2.672006 -0.374240 1.201812 -0.151597 -2.048444 3.161623 -1.282167 -1.651134 -1.140669 1.675256 0.370562 0.542065 4.881710 2.983297 -2.448450 -0.629366 -1.215932 1.014317 1.235484 3.198820 -2.480012 -1.685849 1.086828 -0.601167 -0.551845 -0.506735 0.930185 -0.406398 1.177704 -2.336182 -0.778162 1.669752 1.555755 0.180633 1.329975 -0.816753 -1.347763 -1.535567 3.111756 0.664933 0.854912 -2.292258 -2.261447 1.157192 -2.609479 0.899509 -0.996599 0.002377 -1.775307 -0.416046 0.907616 2.418971 3.173754 -3.346382 1.995394 -3.500353 -2.825007 -2.396710 1.001300 0.650224 -1.795798 1.026377 -1.314986 0.703654 -0.078692 1.645871 0.570866 -1.114184 -1.453136 0.205175 1.088586 0.526021 -3.191035 3.047074 -0.376797 -0.951319 -0.655655 -0.269799 -0.316632 1.128300 -0.718135 -1.200907 -1.189973 2.229277 -1.766030 2.419951 0.564077 1.105259 1.870663 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 1.592828 0.267875 -0.547986 1.979005 -0.494741 -2.526345 1.133169 2.109001 -0.770037 -2.711922 -0.559658 -0.278635 0.552701 -1.644656 0.146209 0.498912 -0.209782 1.579088 -5.312008 1.469510 1.307598 0.760290 -1.764296 -2.242561 -0.299414 -0.749452 -1.224062 2.091444 -0.458403 2.644175 -1.176636 -0.287651 1.797188 0.029529 1.808147 2.660701 0.916505 0.400854 1.103748 1.490490 3.297763 2.956010 -2.434587 -0.451748 1.441263 2.937386 0.936501 -0.558694 -5.006640 -0.939761 -1.008712 0.145236 -1.394127 -1.019663 -1.815556 0.142264 3.935758 3.516643 -2.020855 2.649632 -2.204462 0.107037 1.739050 1.560698 3.260447 0.819350 1.104198 1.905110 3.737161 -1.398013 0.658713 -0.492933 1.241465 -2.473895 1.097865 0.149531 -2.065435 -6.007772 0.821391 -5.923415 -0.705184 1.831780 2.289712 -2.555464 1.959903 2.420269 1.752906 2.131303 -3.273950 -1.558714 -2.104578 -0.596885 -1.665796 6.891345 0.267765 0.776492 0.560031 3.011924 1.746525 1.077313 -0.182106 -2.544291 -1.240020 -5.433762 -1.273389 -1.227954 -1.925967 -0.314207 -2.176776 -2.165149 4.368186 2.404794 -4.315345 0.892487 1.337776 0.414791 0.670578 -3.069887 -1.509211 2.474890 -2.615543 -0.399985 1.630962 -2.032743 -0.170828 0.557733 0.866757 1.252177 0.469525 0.842903 -4.337591 0.825472 1.599645 -2.110350 -0.756179 0.967966 -0.583260 -2.246477 0.894740 -4.198537 2.988831 -3.211166 1.998851 -0.591333 -3.025954 -0.116203 -0.803405 1.389599 -1.858411 -0.753660 -1.161653 0.849359 -3.196929 -5.993034 1.999626 1.094579 0.809133 -1.656879 -0.788194 -1.218857 -1.418305 -0.354043 1.945961 -1.754568 -0.544206 -0.456664 5.825288 0.982341 -1.481016 -0.110566 0.101452 2.590717 2.320215 1.378985 -2.349658 -0.654498 -3.328418 -1.263087 2.394566 -0.083771 -1.154282 -0.844622 -1.001535 -3.512155 2.447154 -1.726092 2.583766 -1.462866 0.630353 -2.905513 0.181500 -0.540332 -0.182855 -0.709263 -1.521155 0.155199 0.163662 -1.947093 -0.785790 -0.566537 2.461832 -1.573383 -2.070232 1.206727 0.762753 2.454502 1.288215 1.327529 -0.539811 0.486614 -2.066878 2.634563 0.145582 0.934336 -0.169236 -2.374646 3.754202 -1.158723 -2.135576 -1.650608 1.677875 0.215545 2.504326 5.535006 3.016443 -2.174002 -0.524920 -0.441423 0.690739 1.642765 2.937228 -2.364909 -1.876166 1.235753 -1.181408 -0.478131 -0.264297 0.913220 -0.922800 1.946679 -2.192052 -0.455117 1.559426 2.036491 -0.027307 1.926288 -1.058889 -1.638948 -2.051013 2.867853 0.636690 0.683953 -2.206248 -1.384610 1.532293 -4.163478 0.846955 -1.791151 0.359139 -1.544406 -0.085128 1.956863 2.480799 4.560359 -3.617078 2.013855 -3.977843 -3.284216 -2.224348 1.130741 0.791489 -1.910316 0.625095 -1.208123 1.211277 0.061049 1.695700 1.058408 -1.571131 -1.606070 0.136631 1.040968 0.335456 -3.845483 3.330554 -0.868370 -0.744000 -0.712763 -0.341544 0.100630 1.336133 0.408757 -1.322576 -1.442400 2.512643 -1.709680 2.896046 0.042065 0.823138 2.613292 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.765614 -0.360100 0.020846 1.179374 0.376709 -0.319658 0.118648 0.348674 -0.248183 -1.245923 -0.645759 0.246863 -0.106723 -0.105880 0.462846 0.012247 0.355104 -0.083205 -1.423356 0.287709 -0.079260 -0.326920 -0.442085 -0.359770 0.095254 0.072315 0.145612 0.778064 0.029087 0.730676 -0.706796 0.378014 0.393528 0.418695 0.808362 0.162173 0.053785 -0.220160 -0.399957 -0.376447 1.389948 0.282916 -0.323823 0.470534 0.358163 0.905399 -0.004403 1.126916 0.138101 0.054212 0.827158 -0.685827 -0.225555 0.122566 -1.166079 0.265176 1.042117 0.371342 -0.438468 0.372188 -0.614613 0.434846 0.342028 -0.045242 1.438766 0.543579 0.771997 0.737190 0.970780 -0.841300 0.049768 0.176152 1.033754 0.129413 -0.453340 -0.544655 -0.131450 -1.746853 0.090448 -1.141833 0.106455 -0.294860 1.001340 -0.522030 0.061386 0.330281 -0.166871 0.640229 -1.038418 0.473505 -1.059267 0.008780 -0.079360 1.042574 -0.156605 0.095432 0.184067 0.309166 0.095968 0.660572 -0.101716 -0.667664 -0.398864 -1.858535 -0.927590 0.232298 -0.267910 -0.415733 -0.882357 0.129057 0.810280 0.431575 -0.887739 -0.657364 -0.053089 0.216713 0.049693 0.331849 -0.612709 -0.165071 -0.121506 0.658476 0.676448 -0.313031 0.441374 -1.059112 -0.085880 0.381049 0.852734 0.396168 -0.728491 -0.180149 0.321138 -0.110733 -0.248470 -0.174666 -0.237622 -0.223427 0.398681 -0.433809 0.937039 -1.136289 -0.201573 -0.902798 -0.585136 0.163727 1.346429 0.779692 0.637787 0.920923 -0.280431 0.147237 -0.884507 -1.555722 0.235049 0.207211 0.169576 -0.209786 -0.066576 0.325357 -0.472340 -0.464969 0.677976 -0.891146 -0.921224 -0.725832 0.252858 0.022913 -0.403389 -0.576998 0.572271 0.934285 -0.337319 0.724561 -0.465257 -1.119892 -1.011935 -0.656084 0.722001 -0.364333 -0.128027 0.107751 0.270849 -1.170380 0.440776 -0.701000 0.393388 -0.085173 -0.832298 -1.033605 0.199224 -0.210625 0.163333 0.165255 -0.610317 0.371771 0.188709 0.813200 -0.114858 0.707049 0.323790 -0.973132 -1.370237 -0.318856 0.280383 1.163907 0.311158 0.150933 -0.489281 -0.550250 -0.754670 1.106246 -0.886515 0.391051 0.052343 -0.476179 0.539255 -0.693270 -0.486047 -0.482957 0.525081 0.434723 -1.101599 1.270354 0.860335 -1.035767 -0.542812 -1.352365 0.654035 0.150614 1.654078 -0.717899 -0.079284 0.251852 0.690083 -0.273553 -0.552110 0.528812 0.136803 -0.205403 -1.048777 -0.903526 0.468884 0.516026 0.183549 0.037476 0.209970 0.267135 -0.320969 1.424545 0.266196 0.045830 -0.534431 -1.707007 0.163090 0.877299 0.078299 0.490869 -1.019898 -0.733975 -0.417774 -0.095880 0.970610 0.607918 -0.109883 0.905765 -0.672747 -0.600595 -0.706697 0.203349 -0.085178 -0.764606 0.563129 -0.649848 -0.200813 0.040938 0.272405 -0.118697 -0.117721 -0.975690 -0.212320 0.446322 0.085610 -0.268794 0.888219 0.524235 -0.595116 -0.230671 0.212122 -0.298654 0.475275 -0.795999 -0.367274 -0.211877 0.288861 -0.557010 0.350176 0.386774 0.240573 0.057442 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 1.933185 -0.373450 -1.012643 3.084611 0.463305 -1.362148 0.138741 1.195947 0.026922 -2.537815 -1.173942 1.267295 0.562249 -0.022020 0.736119 0.722808 0.282596 0.635183 -3.586550 1.065175 -0.349593 -0.116556 -2.118318 -1.448521 -0.155182 -0.080127 0.405070 1.829423 -0.122404 1.444158 -1.467907 0.872267 1.418935 0.015706 1.794082 0.562113 0.907269 -0.469801 -1.455986 -0.623973 3.564748 1.526457 -0.551898 1.138767 0.334414 2.506773 0.466072 2.293016 -1.234097 -0.671797 0.815829 -0.826561 -1.051174 -0.393152 -2.968113 1.549849 1.975105 1.009580 -1.698639 1.689364 -0.896623 0.650661 1.588994 0.191582 3.913652 0.903785 2.313378 2.115480 2.946341 -1.518979 0.303385 0.263588 2.127699 -0.394524 0.959437 -1.545575 -0.937027 -3.629513 1.060043 -3.232781 0.635990 -0.184237 2.754387 -2.302351 0.622324 1.428301 0.782486 2.339992 -3.019865 0.501192 -2.453839 -0.344521 -0.761757 4.320030 0.063122 0.096235 0.528440 1.679704 0.437003 1.356033 -0.119626 -1.564805 -0.366419 -4.419460 -2.321665 0.281991 -0.963634 -0.714362 -2.025489 -0.598973 1.700292 1.778487 -3.013420 -0.913528 0.698936 0.034423 1.331430 -0.455184 -0.634475 0.201156 -0.533293 0.992862 1.213212 -1.434515 1.267995 -0.622173 0.283309 1.046108 1.766233 1.029010 -2.952762 -0.055671 0.604602 -0.426156 -0.248031 0.009341 -0.141867 -1.887418 1.440505 -1.811860 2.254501 -3.024979 -0.242852 -1.624198 -2.007459 0.036298 2.387984 1.042739 1.383809 1.152859 -0.992944 0.188691 -3.248516 -4.942450 0.946379 1.269008 0.097653 -0.306124 -0.436404 -0.030836 -1.026306 -0.650095 2.509958 -2.561687 -2.378210 -0.836277 2.356560 0.454000 -1.235521 -1.591601 1.340085 2.003625 0.341868 1.721656 -0.822854 -3.014329 -2.517449 -1.172639 1.761736 -0.198211 0.112078 -0.168153 -0.692939 -2.799928 1.058044 -2.443385 1.659524 -0.412139 -1.260282 -2.718672 0.426416 -0.367466 0.048179 -0.166358 -2.050536 1.402814 0.347339 0.761870 -0.973489 0.769454 1.546930 -2.584062 -2.836395 -0.073306 0.280611 3.023687 1.195256 1.101531 -0.550889 -0.575613 -1.820573 2.137606 -2.366563 0.883935 0.356699 -1.640244 1.502412 -2.516283 -1.495061 -1.844136 1.275172 0.308085 -0.991023 3.840775 2.472389 -2.568444 -0.957906 -2.028531 1.471800 0.604089 4.163343 -2.055579 -0.746849 0.732206 1.054358 -0.821261 -1.182175 0.979481 0.053030 -0.403689 -2.509019 -1.593916 1.149018 1.557667 0.226160 0.487817 0.135245 -0.363004 -1.303621 3.104931 0.795251 0.290810 -1.883007 -3.742734 0.965870 -0.241158 -0.266464 0.026321 -1.771035 -1.135564 -0.359204 0.167713 2.240860 1.995417 -0.546052 2.048389 -3.232569 -2.296853 -1.609882 0.600933 -0.175248 -1.242169 1.173349 -1.699354 0.118187 -0.466385 0.805072 -1.175581 -0.669301 -1.973162 0.037253 0.986733 -0.001978 -1.384853 2.947625 0.700789 -0.588958 -0.571733 -0.349807 -0.747577 0.985999 -1.593065 -1.078657 -0.732577 0.841057 -1.537519 1.194793 0.379743 0.446647 1.112863 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.122683 -2.541350 -3.392826 10.438497 0.200120 -4.214601 1.612848 4.410697 0.139238 -10.385341 -3.717530 4.572625 1.836561 -0.867325 1.566241 2.679972 0.880925 1.826459 -14.571618 3.419837 0.760710 -0.463225 -6.178761 -4.235123 -0.052730 -1.310684 2.368098 5.868679 -0.201115 6.966651 -4.829029 2.967630 5.844153 0.134792 6.063231 4.223057 1.117123 -0.824344 -3.556389 -1.254748 11.390632 6.879811 -4.212585 2.702528 0.886332 9.360092 2.694412 7.502957 -4.793906 -2.744862 2.390612 -1.458622 -4.090487 -1.594456 -8.869137 2.736609 8.663501 5.591669 -5.021293 5.542637 -4.805705 2.382633 5.085680 3.107534 12.691208 3.548753 8.078457 7.638441 10.449766 -6.275753 2.315753 0.614225 5.580174 -2.088072 4.522578 -4.491809 -5.536151 -11.920685 2.712197 -12.424622 -0.324835 0.792805 9.186376 -8.056451 2.417862 3.674059 3.566289 8.600451 -9.929805 1.462007 -8.594597 -1.212495 -2.766655 16.462544 0.061138 1.805807 1.143066 6.506548 1.776820 3.846638 0.977211 -7.632033 -0.932736 -14.799233 -6.416588 -1.630256 -3.545899 -0.420052 -8.176066 -1.608465 5.976370 6.387261 -12.011527 -1.508078 1.791931 1.309429 7.163056 -1.832010 -2.443928 2.348786 -2.292520 2.585064 4.966536 -5.707416 3.577968 -2.095581 1.707214 4.278949 4.535818 4.072358 -11.921787 0.080997 3.714610 -2.178249 -0.837693 2.755781 0.526896 -6.180093 4.307624 -8.291886 8.749391 -11.207088 -0.433570 -4.514940 -7.909518 -0.854362 6.698749 4.988537 3.256001 1.738110 -3.454940 1.221489 -11.070646 -17.529363 2.616447 3.345217 0.357795 -0.897359 -1.588160 0.442822 -5.617787 -0.639926 7.069824 -7.290120 -6.521846 -2.335689 8.933924 1.903079 -3.833368 -3.146308 2.489720 5.451443 2.882453 8.028535 -3.637419 -11.451726 -11.640854 -4.356590 7.423926 -1.659999 -1.383251 -1.852118 -2.337143 -10.124176 3.788541 -7.205322 5.566202 -1.605365 -3.111186 -10.202470 2.211915 -1.445814 0.428192 -0.036224 -6.779562 2.867495 1.720197 1.485373 -2.093222 2.484123 4.996849 -8.288286 -9.017113 1.899440 0.031994 11.171378 3.364398 2.101185 -2.123516 -2.205224 -7.247866 8.200649 -6.806781 4.304002 0.257095 -5.268458 6.818514 -7.276730 -4.713599 -6.501714 4.839435 1.545089 -2.090031 14.624862 8.973945 -8.166565 -2.038038 -4.862680 4.972370 2.638479 11.464823 -7.879480 -4.829509 2.520237 1.895292 -1.591736 -2.741835 3.142076 -1.537662 -0.362070 -8.038593 -4.389921 5.303459 4.724789 0.332897 1.638447 0.254360 -3.447764 -3.988683 10.446050 3.452311 1.744555 -7.265963 -13.081731 3.610260 -3.282955 -0.390029 -0.924332 -5.825673 -4.247777 -0.393017 0.668831 8.084535 7.491125 -5.027474 7.538646 -12.300816 -8.341218 -7.205087 1.117490 0.289217 -3.667512 3.454727 -4.698090 1.366843 -0.371771 3.526779 -2.590033 -3.629730 -3.844510 1.087612 4.441646 -0.227704 -5.994582 10.323323 1.915685 -2.073499 -2.632377 -0.311131 -3.398742 3.024080 -5.346551 -2.996937 -1.441983 5.088775 -6.142895 4.706028 1.361093 2.085398 3.225631 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.304658 -1.788259 -1.149967 4.092555 1.268288 -1.293277 -0.299939 1.140588 0.434971 -3.225076 -1.905549 3.757182 -0.104352 -0.124702 1.074165 0.588335 1.437251 -0.035040 -5.009500 1.479594 -1.625110 -1.013970 -2.952947 -1.637577 0.190171 0.617604 2.610237 2.222847 0.038974 1.500046 -2.290338 1.519162 0.856962 0.776219 3.085187 -0.258952 -0.165483 -1.382719 -2.568970 -2.474729 5.110100 1.418780 0.211914 2.918392 1.123152 2.590489 0.655780 4.633417 3.089578 0.230846 2.369075 -0.649785 -1.267446 0.259463 -5.061006 1.545501 1.429055 -0.941998 -1.792687 1.267697 -0.241448 1.401048 1.546503 -0.326070 5.789654 0.629605 3.457509 2.386991 3.103237 -1.861914 0.477599 0.452364 4.608064 1.311036 0.712729 -3.030762 -1.162133 -3.578379 0.601522 -3.374695 1.798900 -1.884492 3.268097 -1.935577 0.340299 0.115249 -0.121684 2.560510 -3.452781 1.161640 -3.386721 0.060290 -0.284230 3.730554 -0.607181 0.664420 0.643056 0.766512 -0.580400 1.826059 0.053299 -2.195081 1.073477 -6.150641 -2.602813 0.839867 -1.062912 -1.862439 -2.417043 1.083613 -0.108323 2.100117 -2.641490 -2.826718 -0.208066 -1.101558 1.180237 0.455818 -0.282151 -1.021062 -0.222606 3.120583 1.246318 -1.310000 1.614546 -2.333748 -0.262387 1.419654 3.354551 1.739858 -2.364168 -0.580194 1.008167 1.353249 -0.713379 -0.460882 -0.257837 -1.309522 1.472207 -1.036669 2.412786 -3.222101 -1.723873 -3.196450 -0.765326 0.192167 4.875214 1.565614 3.811691 2.978890 0.074518 0.294330 -3.710849 -5.939407 1.360457 0.473541 -0.849009 -0.153920 0.204973 0.591324 -1.333674 -2.046863 3.268055 -3.482490 -3.757217 -2.513134 -0.287759 0.301774 -1.217303 -1.870144 2.086953 2.734875 -0.296640 2.020507 -0.832209 -6.821192 -2.742518 -1.354311 2.008466 -0.903039 0.175029 0.602034 -0.092010 -2.492387 0.399551 -2.886169 1.330540 -0.535891 -2.549062 -2.969308 0.052525 -0.421701 1.619128 -0.139500 -2.518242 2.229290 0.781249 3.650368 -1.358990 2.622853 1.298508 -3.855627 -4.197737 -0.846700 0.813081 4.521210 0.777884 0.673879 -1.568406 -1.397344 -2.287927 2.603631 -5.314840 1.494307 0.941941 -1.991970 0.927532 -3.049781 -1.260440 -1.240629 1.601155 0.541277 -4.526142 3.879645 3.011346 -3.949985 -1.449881 -4.181704 2.592512 -0.034198 5.750213 -2.487541 -0.202916 0.694802 2.586905 -1.179900 -2.132337 1.563660 1.108030 -1.433261 -3.812339 -3.015917 1.642375 1.249276 0.626156 -0.833820 0.417960 0.218580 -1.383944 4.921582 0.786498 1.024528 -2.701342 -7.335598 0.241445 3.614275 -0.185838 2.081920 -3.696178 -2.071897 -1.250720 -1.580403 2.757747 0.311628 0.522245 2.401084 -3.016866 -2.164647 -2.304629 0.293544 -0.591405 -1.315475 2.370323 -2.559082 -0.968673 -1.167712 1.318636 -2.415560 0.385212 -2.124740 0.115545 0.963922 0.543635 -0.682807 2.869475 1.995433 -1.416624 -0.646847 -0.223236 -1.742071 1.430085 -3.815471 -1.257381 -0.812901 0.471379 -2.105801 1.003723 1.393573 1.941022 -0.479586 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.463086 -1.192984 -0.368286 1.648657 0.666382 -0.206989 0.183291 0.244444 0.299905 -2.238047 -0.979586 1.995765 -0.065326 -0.348013 0.113200 0.488969 1.147911 0.114928 -2.462688 0.478723 -0.193870 -0.496716 -1.160286 -0.114753 0.026338 -0.846086 1.480567 1.082202 0.049184 1.200677 -0.822144 0.729764 0.940427 0.205337 1.438807 1.091667 -0.204437 -0.533956 -0.642010 -0.607583 2.700495 0.774851 0.018604 1.113895 0.800749 1.718786 0.356932 2.377958 1.905975 -0.255638 1.151678 0.133176 -0.773932 -0.090594 -2.534839 0.280517 0.632169 -0.268964 -1.219256 0.715397 -0.386999 0.520445 0.553896 0.309307 2.484789 0.199625 1.475318 1.114342 1.693026 -1.025358 0.027852 0.652916 1.622321 0.816117 1.010768 -1.036597 -1.012118 -1.385146 0.009633 -1.527859 0.354673 -0.707203 1.783502 -0.969900 -0.201656 0.126494 -0.036033 1.412356 -1.008966 -0.081577 -1.991651 0.152840 0.275193 2.039777 0.050806 0.606103 0.022803 0.392775 -0.366567 0.857931 0.240282 -1.850320 -0.099362 -3.327677 -1.180649 -0.992382 -0.111815 -0.492026 -1.670829 0.433791 0.049585 1.428403 -1.832982 -0.506371 0.187415 -0.317907 1.114732 0.038308 -0.336007 -0.353652 0.146992 1.123375 0.545204 -0.487318 0.215070 -1.114296 0.564987 0.395687 0.963121 0.315570 -1.420934 -0.279830 0.740744 0.777456 -0.235539 0.221841 0.300084 -0.906217 0.712463 -0.823485 1.318755 -1.722905 -0.591761 -1.418116 -0.633793 -0.540037 2.514700 1.186299 2.102368 0.699969 -0.215364 0.024635 -2.065686 -3.259334 0.322260 -0.563336 -0.150487 0.143002 -0.078147 0.343005 -0.969708 -0.385159 0.820717 -1.177677 -0.950516 -0.712897 -0.192491 0.072238 -0.451494 -0.656175 0.145423 0.918267 0.326692 1.186746 -0.754438 -3.694537 -1.748608 -0.955442 1.174377 -0.815733 0.125980 -0.080508 -0.441935 -1.089449 0.146565 -1.157104 0.258670 -0.745258 -1.062075 -1.627090 0.311808 -0.511280 0.533542 0.145197 -1.388915 0.680722 0.434648 1.102325 0.038320 0.773606 -0.032992 -1.742898 -1.499065 0.100499 -0.145955 2.215028 0.657879 -0.055702 -0.811437 -0.738902 -1.547764 1.111399 -2.474414 0.807103 0.786859 -1.537546 0.812752 -1.188483 -0.260822 -0.567391 0.925268 0.212073 -2.381418 2.129224 1.776451 -1.877177 -0.624224 -1.129936 0.834905 0.232033 1.914068 -1.072407 -0.330656 0.440423 0.534604 -0.188407 -0.426092 0.692366 0.237580 0.120737 -2.165769 -1.386631 1.284515 0.918522 -0.082102 -0.437495 0.182674 0.030099 -0.103871 2.219708 0.467237 0.870355 -1.482675 -4.036131 0.324637 0.942045 -0.168118 1.087220 -1.395720 -0.828749 -0.252549 -1.038963 1.611345 -0.151715 -0.303066 1.412810 -1.587257 -1.473074 -1.223989 -0.586551 0.104797 -0.455990 1.310243 -1.050825 -0.256123 -0.884961 0.801916 -0.829482 -0.254612 -0.128268 0.700503 0.730785 0.683085 -0.411135 1.436368 0.452721 -0.640658 -0.413820 0.039758 -0.538827 0.974539 -2.068010 -0.663512 -0.398199 0.597021 -0.964578 0.659370 0.231139 1.337859 -0.020214 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = 4.966488 -3.600201 -5.753379 12.392382 0.000000 2.441592 0.843365 -1.429401 1.154291 -15.976033 -6.203853 10.531496 2.669267 1.966795 -0.683428 5.339722 3.315857 2.451095 -13.715509 -0.961916 2.313375 -1.565182 -1.510810 -0.512392 -0.436058 -4.896970 10.964162 2.538856 1.231232 8.982874 -2.185277 8.268117 8.312038 -0.484209 3.345273 5.389371 -3.996939 -0.387541 -7.096180 -4.333025 11.842944 3.016706 0.642972 4.532943 -2.863065 10.023537 3.976359 8.617274 6.323561 -3.643096 4.569240 6.401126 -3.619161 -2.001924 -10.792916 0.874791 3.045710 1.151121 -2.768940 2.881062 -2.372588 2.839900 3.754735 2.319683 12.606850 2.359281 11.110026 9.919199 7.134281 -7.584456 2.834627 1.023619 0.551631 0.687062 10.481367 -6.454408 -8.356204 1.712369 -2.078897 -9.395201 0.248324 -0.907797 13.251994 -6.804078 -4.486861 -2.589950 3.381126 10.993044 -4.213173 2.735064 -9.922656 -0.315214 -1.283884 11.817516 2.995771 2.644022 -2.974933 2.880285 -1.924232 1.400739 3.388316 -9.588633 3.371198 -13.021695 -5.789765 -7.460481 3.421280 4.310039 -9.979156 2.319243 -4.213266 7.631346 -14.462913 -1.308740 1.475076 2.717440 12.820186 -1.497939 -2.806376 0.266725 1.717560 4.193952 4.189373 -4.496127 3.567215 -1.964623 1.389911 1.014388 3.778998 3.218010 -11.770998 -3.853745 2.043442 0.823399 2.474773 6.135322 7.529954 -2.203451 4.458556 -5.282596 7.691826 -10.959644 -3.249109 -4.420636 -6.988276 -5.630363 8.956855 6.944620 9.404423 -2.417938 -2.992057 0.134684 -13.198482 -15.603616 0.021051 1.155219 -2.373616 5.106455 -1.999526 4.514841 -8.755368 4.703928 7.889203 -4.479546 -5.525455 0.212690 2.582581 1.955151 -3.305694 -2.198241 -1.672816 -2.600202 2.886587 12.473526 -1.121209 -18.022112 -15.952075 -3.965199 8.315879 -5.882744 -0.083551 -4.604056 -4.261589 -6.342691 -1.225758 -7.505949 0.947573 0.708504 -5.295954 -11.473100 3.684999 -1.403536 -1.302439 3.384624 -9.208739 2.322879 5.811127 2.298638 1.160779 2.089167 -0.037657 -7.578990 -5.316947 3.978507 -6.595317 9.043333 4.911389 -1.449575 -5.932393 -4.876841 -7.723560 3.982180 -6.384459 6.602862 0.895174 -4.009795 2.135567 -8.724454 1.628511 -4.756231 2.651662 0.829563 -15.644914 12.009647 7.717327 -6.055404 0.386175 -0.750381 5.305100 -1.198430 4.539342 -7.622068 -5.902850 1.160347 0.739570 0.281258 -0.993523 2.005559 -2.318621 -4.254608 -9.221119 -3.773535 8.331211 3.114036 -1.220090 -0.693498 4.774052 -5.377047 1.936101 8.987358 6.657868 2.270954 -7.649825 -20.542627 2.572561 -3.102679 -3.004156 0.922732 -5.281060 -2.532421 3.635267 -5.696476 7.726112 -3.093404 -5.102473 8.343586 -11.486752 -8.239198 -8.302028 -4.413123 1.846573 0.156437 2.243534 -4.329620 1.158351 -1.800940 2.133078 -5.257979 -5.388355 5.948869 5.800716 9.574432 0.091004 0.788191 8.995314 3.723374 -2.158082 -2.883262 -0.044902 -6.810035 2.851925 -13.824721 -1.588682 3.226414 4.604443 -6.794541 0.508027 -1.499527 2.862905 0.110786 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 1.524990 -0.736451 -0.875873 2.791679 -0.004751 0.192020 0.534953 0.441912 0.201320 -4.317384 -2.073092 1.613505 0.514667 0.098640 0.326500 1.126361 0.923424 0.999991 -4.367102 -0.000666 1.030015 0.048942 -0.259935 -0.351062 0.008276 -1.227187 0.990102 0.810711 0.274292 2.622219 -0.855577 1.684914 2.287243 -0.049288 0.785461 1.786993 -0.705478 -0.135714 -0.690165 -0.646261 3.473127 0.958784 -0.077463 1.172616 -0.205459 2.817286 0.292866 2.528156 0.809245 -1.130819 1.578333 -0.140963 -1.187561 -0.191491 -2.686216 0.466001 1.893335 1.163479 -0.985761 1.341200 -0.927397 0.814625 1.031460 -0.163145 3.235250 1.335914 2.320266 2.356306 2.449840 -1.909687 0.718596 0.146082 0.375698 -0.142841 1.715623 -1.824090 -1.344331 -1.805089 -0.307786 -3.420082 0.078936 -0.293508 3.889947 -2.105352 -0.397430 0.437063 0.706416 2.754016 -1.300987 0.386170 -2.608388 0.061570 -0.306808 3.333894 0.435757 0.573573 -0.629196 0.940798 -0.128399 0.566021 0.529655 -2.210067 -0.754437 -4.354185 -1.817564 -1.602665 0.554318 0.791385 -2.948616 0.269854 0.352973 1.643031 -4.115338 -0.281684 0.671594 1.018695 1.812452 0.180912 -1.523323 -0.141763 -0.053158 1.166828 1.082606 -1.485390 0.786959 -1.472732 0.056091 0.510827 1.037522 0.441336 -2.906669 -0.964255 0.403429 -0.163168 0.278169 1.439585 1.540269 -0.642103 1.338982 -1.906910 2.184243 -3.298662 -0.598331 -1.287466 -2.073490 -1.238089 3.048079 1.991120 1.808245 -0.090459 -1.136651 -0.214897 -3.381769 -4.003732 0.244497 0.121263 0.519091 0.823913 -0.529513 0.651949 -1.960229 0.726278 1.257323 -1.331959 -1.111364 -0.304083 1.699987 0.231227 -1.052748 -1.248734 -0.066652 0.608265 -0.000883 2.425780 -0.681587 -3.158712 -3.855635 -1.389648 2.346561 -1.316709 0.177801 -1.142256 -0.493035 -2.122576 0.221886 -1.951520 0.225836 0.086286 -1.690540 -3.199915 0.907743 -0.460634 -0.397464 0.801967 -2.286879 0.527056 1.556878 1.182339 0.353242 0.524051 0.213994 -2.417980 -2.086944 0.269035 -1.406788 2.428159 1.601780 -0.138964 -1.583427 -1.081668 -2.079743 1.719428 -1.592769 1.402963 -0.076714 -1.183683 1.220135 -2.067148 0.022356 -1.927584 0.798034 0.315553 -4.180452 3.403528 1.953231 -1.888073 -0.273565 -1.229991 1.408797 0.181959 1.887324 -1.739480 -1.300787 0.561796 -0.224290 -0.028640 -0.882261 0.884414 -0.653048 -0.397279 -2.530049 -0.988271 2.303401 1.263942 -0.391425 0.508473 1.352623 -0.489816 0.551781 2.578478 1.433556 -0.043883 -1.898237 -5.357556 0.893009 0.463966 -0.252301 0.204796 -1.627722 -0.982243 0.717163 -0.583007 2.272187 0.862259 -0.692128 2.315875 -2.716893 -2.406098 -1.817935 -0.434208 0.655652 -0.618026 0.424443 -1.131821 0.387850 -0.059486 0.827653 -0.320414 -1.825560 -0.337025 1.060048 2.692070 0.191874 -0.316716 2.688824 0.696777 -0.871269 -0.496643 -0.178377 -0.978498 0.792102 -2.406909 -0.529272 0.342318 1.144201 -1.918539 1.000006 -0.353394 0.612909 0.531651 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/edit-distance.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.833192 -0.862920 -0.247018 1.099988 0.326314 -0.115255 0.069136 0.194005 0.308903 -1.667120 -0.717162 0.608994 0.019989 -0.063177 0.340994 0.411760 0.723772 0.154664 -1.629851 0.371329 0.159523 -0.170242 -0.462254 0.115403 0.070961 -0.685215 0.479941 0.504698 0.196073 0.978181 -0.702054 0.509501 0.860881 -0.142196 0.842980 0.864674 0.151436 -0.217311 -0.295453 -0.036159 1.849767 0.347551 0.003988 0.550555 0.436260 1.255902 0.058719 1.766925 1.159673 -0.484358 1.012194 -0.506872 -0.400584 0.029745 -1.514948 0.416743 0.744147 0.266544 -1.034790 0.512551 -0.336585 0.363218 0.379816 0.090194 1.465315 0.308798 0.875544 0.819339 1.190521 -0.702057 0.024427 0.404939 0.843817 0.470670 0.676685 -0.811894 -0.423087 -1.412188 0.056065 -0.711227 0.138579 -0.367135 1.118787 -0.985700 -0.010212 0.555802 -0.155181 1.091049 -0.630329 0.049213 -1.333455 0.030888 0.345870 1.159596 0.019511 0.128667 0.031462 0.441041 -0.214266 0.592628 0.271766 -1.241178 -0.724761 -2.129314 -1.143386 -0.692972 0.101740 -0.059586 -1.371198 0.151000 0.384324 0.615033 -1.410884 0.027550 0.270541 0.157050 0.679117 0.167476 -0.425069 -0.337868 0.057776 0.656999 0.439207 -0.456520 0.179753 -1.055805 0.435615 0.402227 0.571282 -0.040808 -0.528362 -0.212097 0.313012 0.461418 -0.259757 0.187909 0.386806 -0.829427 0.700624 -0.496198 0.931800 -1.252595 -0.482781 -0.914290 -0.503199 -0.423919 2.152438 0.642324 1.229693 0.415159 -0.734534 -0.075400 -1.438692 -1.940763 0.078535 -0.299598 0.197892 0.345295 -0.161260 0.349284 -0.446000 -0.120305 0.157427 -0.831873 -0.551134 -0.312056 -0.323588 -0.074552 -0.297089 -0.760258 0.080181 0.765624 -0.101312 0.813399 -0.498107 -1.741731 -1.170132 -0.738179 0.907996 -0.543212 0.397435 -0.085659 -0.193534 -1.065986 0.263628 -0.948974 -0.035870 -0.543798 -0.772699 -1.240273 0.285982 -0.412926 0.304522 0.202822 -1.061968 0.435204 0.079383 0.811979 0.192010 0.345495 -0.061791 -1.510843 -1.197308 -0.101679 -0.368908 1.514608 0.345690 -0.122940 -0.304265 -0.570964 -0.904168 0.809872 -1.559869 0.459899 0.463044 -0.960223 0.655821 -0.721910 -0.338606 -0.793130 0.628739 0.315781 -1.322696 1.506061 1.103814 -1.155655 -0.258161 -0.720509 0.595023 0.318711 1.268630 -0.553531 -0.202211 0.299531 0.245439 -0.065786 -0.467252 0.583377 -0.085612 0.193746 -1.308232 -0.743383 0.786807 0.781054 -0.008155 -0.070959 0.353989 0.163345 -0.053923 1.390438 0.336691 0.399213 -0.869650 -2.453333 0.447851 0.900214 -0.039593 0.625640 -1.093892 -0.365526 -0.107905 -0.232997 1.120432 0.448409 0.346661 1.069626 -1.182836 -1.141062 -0.684075 -0.312991 0.044518 -0.352570 0.667390 -0.717256 -0.013747 -0.445144 0.500703 -0.385495 -0.228416 -0.466027 0.421738 0.565327 0.403159 -0.119038 1.080152 0.286727 -0.621025 -0.178190 0.053223 -0.251890 0.487595 -0.839770 -0.462194 -0.191887 0.358323 -0.742553 0.435646 -0.178655 0.582262 0.037314 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 18.478111 -1.823714 -3.179108 19.464921 3.974793 -0.833717 0.474370 8.627487 0.086234 -21.941400 -13.071987 15.132374 0.212973 5.904289 6.796631 5.433245 6.471835 5.940980 -31.471076 1.908883 -2.552248 -0.716314 -3.435857 -9.808862 3.593338 5.262733 12.441388 7.503569 5.111333 14.767366 -13.098505 8.696275 10.088893 3.799270 8.432814 0.382162 2.322692 -4.860471 -15.775040 -17.322846 25.075205 3.728242 3.794295 18.191652 -1.952683 14.744207 5.764184 20.842123 13.853726 -4.061635 10.628138 -11.429421 -9.183602 1.932030 -21.261243 7.399099 10.218432 4.677223 -6.602197 8.716676 5.837326 9.496746 8.623587 -9.864684 21.582299 6.796877 16.251659 12.770955 17.248536 -15.670369 6.571544 -0.284994 13.978428 4.705486 3.827776 -22.581777 -1.064080 -16.153587 3.392682 -24.677993 5.016953 -9.147506 20.083727 -13.425942 3.238438 3.693346 -2.932927 16.700801 -15.158461 9.076860 -15.003413 -0.139105 -1.630472 18.544999 -1.421100 1.899544 2.960370 2.585205 -1.590916 7.710733 3.229226 -9.422868 4.382413 -25.085244 -12.043232 4.406360 -1.057518 -0.321979 -11.862273 6.081925 -4.802501 9.418890 -20.268448 -15.030006 1.086541 3.522151 0.889290 6.250949 -2.976734 -6.571862 -1.442614 15.743118 6.729648 -15.690600 11.959662 -7.633233 -8.747825 7.875786 16.796979 9.001465 -10.679918 -10.597013 3.532007 2.361818 -1.648481 3.042625 5.686485 -2.722671 10.371279 -8.471815 11.679263 -17.749879 -11.946229 -7.026543 -6.889465 -5.787975 22.188720 3.094763 14.387831 12.781401 -3.623335 -1.302019 -15.269443 -23.656421 7.830477 7.410809 -0.328543 9.369684 -0.597808 6.932114 -12.726881 -9.156307 12.619108 -13.813886 -20.522145 -10.766701 2.692332 -0.302461 -5.702095 -12.503096 13.216413 9.077424 -3.358355 14.236110 -2.463959 -24.849426 -17.138499 -8.281126 16.065740 -7.519132 -0.162358 0.019450 1.252617 -12.734869 -0.727334 -17.440508 2.539832 4.309557 -17.097148 -19.640874 5.879011 -2.309450 2.831939 6.948709 -15.925814 9.275406 6.056738 19.145178 -6.335293 10.280315 7.625508 -19.961791 -22.902220 -5.622049 -2.459712 16.540455 1.825182 1.975409 -13.047122 -9.357427 -5.018907 14.568312 -20.348276 10.776129 -3.483266 0.948484 4.528210 -14.866618 -1.721064 -10.798792 6.873378 6.851491 -29.538430 19.221016 11.459211 -16.291253 -4.701624 -19.731692 14.240037 0.658868 24.771165 -14.162741 -8.782075 5.336263 9.833267 -3.122287 -15.429969 8.231208 3.093437 -11.828697 -15.421424 -12.346935 10.141877 7.091078 1.629018 2.498161 14.716511 3.260318 -1.315239 25.294378 4.027321 0.439546 -11.254007 -37.054035 2.897883 25.066755 1.476939 7.292734 -20.161252 -8.612238 2.662988 -5.494461 13.594059 7.262281 7.249074 14.718287 -15.360818 -13.056774 -11.064532 2.294115 1.941221 -4.301848 3.079618 -11.156674 -0.389300 -1.548250 3.964915 -9.030934 -2.934810 -9.694657 -0.951789 14.303416 -2.413433 2.549060 19.947510 11.316964 -7.720013 0.852744 -4.063003 -6.993120 3.460335 -14.599999 -3.290223 3.468467 2.927998 -15.658334 5.219075 2.522073 2.599550 -3.132644 -PE-benchmarks/edit-distance.cpp__main = 9.539017 -0.701712 -0.671009 9.227890 2.619151 -1.950008 0.042899 6.049387 0.616870 -9.574330 -6.246289 6.464277 -0.557689 1.532740 4.769402 1.452954 3.507358 3.339682 -15.336286 2.165837 -2.125962 0.206441 -3.160659 -6.241023 1.983266 3.736841 3.688436 3.928439 2.290953 6.265786 -7.208778 3.044211 3.956840 2.313554 5.353624 -0.808974 1.806969 -2.765346 -6.505420 -8.760368 13.279882 2.769273 1.638440 9.936720 0.863423 6.634739 1.091367 9.889904 5.596653 -1.458040 4.945015 -7.756018 -4.037977 1.795174 -11.024740 5.162236 5.941877 1.937332 -4.207045 5.013555 2.388298 4.893909 4.462726 -6.258070 11.058241 3.876510 6.969594 6.234369 9.198385 -6.642503 3.034687 -0.594104 9.108266 2.138467 0.325496 -10.264997 0.859779 -11.841278 2.181207 -12.087122 4.107466 -5.259438 9.830854 -6.745600 3.805684 3.738890 -1.302833 7.417971 -8.537418 3.697437 -7.162278 0.086621 -1.212458 9.152695 -1.402181 0.881892 2.229010 1.759339 -0.660229 4.314192 0.925145 -3.360928 1.434869 -14.298680 -6.481166 4.149740 -1.492459 -2.395415 -4.867689 2.976995 0.619754 4.260701 -8.985244 -8.077319 0.115564 0.449237 -2.803743 2.327604 -1.337119 -3.793535 -2.087410 7.884082 2.178565 -8.101670 5.653681 -4.770616 -5.306906 4.444952 9.604911 4.301272 -3.560332 -4.381490 1.172558 1.607947 -2.223613 0.318945 1.028170 -2.460378 5.255542 -4.147506 5.687801 -7.968192 -5.513874 -4.552798 -2.550094 -1.572687 12.433657 0.253132 6.621469 8.368407 -1.512883 -1.115182 -7.122774 -11.491562 5.317811 3.846317 0.832480 3.101047 0.178680 1.871539 -5.156268 -6.274758 5.816951 -8.155045 -10.209771 -6.197596 2.267595 -0.953899 -3.175928 -7.612756 8.155797 7.872445 -2.940023 4.394294 -1.592539 -9.639054 -6.413654 -3.815923 7.240853 -2.644349 0.614465 1.291206 1.842652 -5.700486 0.538453 -8.826649 2.643051 1.189257 -8.334717 -9.160679 1.866555 -1.131209 2.562110 2.358490 -7.182384 5.717745 1.867532 10.490264 -4.600249 5.849639 5.156579 -10.676335 -12.620863 -4.424919 0.731569 7.931011 1.021151 1.853346 -5.650239 -4.061172 -1.968702 7.741879 -11.050059 4.387703 -1.512195 -0.955116 2.518563 -7.081651 -3.055244 -6.581858 3.360898 3.100489 -12.223730 8.968170 4.829290 -9.063880 -3.231648 -12.483314 7.542179 0.672551 14.968468 -6.387614 -2.711719 2.952492 4.799883 -2.226038 -8.847719 4.566248 2.529333 -4.753888 -7.978076 -6.607049 4.852214 3.772697 1.146557 2.055795 6.694813 3.098227 -1.349400 13.316518 1.768372 0.020400 -6.223625 -16.681688 1.170436 14.375794 1.987780 3.172435 -10.251645 -5.273233 -0.370928 -0.368317 6.447811 6.217274 5.617805 6.813410 -7.084234 -6.244135 -4.039826 2.874437 0.640486 -3.913706 1.846813 -5.915925 -0.726472 -1.004253 2.880056 -3.616286 -0.550778 -8.599163 -1.766056 5.541184 -0.614047 -0.058903 9.741767 5.977626 -4.816656 1.348458 -2.616787 -2.622715 1.589791 -5.591474 -2.075100 0.044678 0.466928 -7.645205 4.079509 2.263038 1.758571 -1.111195 -PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/edit-distance.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/edit-distance.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/edit-distance.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/edit-distance.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = 4.141941 -1.560929 -4.098572 9.240100 0.037135 2.280638 0.818172 -1.321391 0.315522 -12.066231 -4.598133 8.764520 2.074777 2.611996 -1.423803 4.382311 2.626547 2.147937 -10.484931 -1.035620 2.037557 -0.844942 -0.153697 -0.219766 -0.114240 -3.630006 8.655841 1.828852 1.503360 7.389461 -2.057966 6.455575 6.677895 -0.378023 2.289567 4.501322 -2.206410 -0.530230 -6.277930 -4.194427 8.548951 1.679815 1.481202 3.506590 -2.995387 8.095158 4.101722 6.797929 6.007797 -3.394313 2.728177 4.121438 -3.497362 -1.562208 -7.663834 0.585104 0.686690 1.603482 -1.938927 2.166828 -0.764150 2.223823 2.920881 1.458266 8.485148 1.394072 7.370389 7.024886 5.517151 -6.476020 2.120633 1.121001 0.014183 1.240638 7.928220 -5.979015 -6.187547 2.407557 -1.421140 -7.589607 -0.349288 -0.472671 10.731843 -5.625114 -3.370388 -2.142620 1.932402 8.411119 -2.839589 2.310554 -7.629528 -0.170635 -0.830777 8.102423 2.223404 1.541005 -2.049609 1.470290 -1.431977 1.115250 2.237818 -7.588782 2.695608 -8.452471 -3.721864 -6.133659 2.639083 3.953267 -7.518331 1.580998 -4.663424 7.107220 -11.284699 -1.240606 1.444005 2.433476 8.735729 0.693326 -1.306252 -0.126852 1.843746 3.372527 3.826810 -4.024027 2.860428 -0.145812 0.117004 0.542884 2.806030 2.501335 -9.128567 -3.774554 1.731598 0.154905 2.266613 4.609635 6.089617 -1.183256 3.656295 -4.073048 5.703682 -7.782284 -3.070016 -2.558040 -5.655348 -4.972555 7.038800 5.512871 7.207502 -2.105112 -1.732504 -0.116600 -9.604111 -10.694747 -0.122417 0.767309 -1.824619 5.003303 -1.556071 3.981850 -7.114360 3.199284 5.602630 -3.011523 -4.799763 0.341289 1.118393 1.441405 -2.195689 -2.096271 -1.049409 -2.957113 2.222788 9.756306 -1.167012 -14.502822 -12.142731 -3.492417 6.829047 -4.848645 -0.074201 -3.798917 -3.637110 -3.528506 -1.443766 -6.051448 -0.174194 0.952951 -4.055735 -9.074797 3.572458 -1.477620 -1.973761 3.366603 -7.068882 1.650325 4.907716 1.779372 1.019149 1.169940 -0.496429 -5.628505 -3.289782 3.134217 -5.708861 6.198545 3.772564 -1.094785 -5.531001 -4.215899 -5.442573 3.059974 -4.704714 5.379847 0.424134 -1.640441 1.722361 -6.938311 3.167747 -2.996125 2.403613 1.338523 -14.411532 8.546157 6.428594 -4.576612 0.396236 -0.120106 3.780248 -0.511624 3.080781 -5.989610 -5.321192 1.157171 0.511080 0.348691 -0.942396 1.269946 -1.838794 -3.775568 -6.570571 -2.620501 6.093114 2.281369 -1.028710 -1.240903 4.590400 -3.878910 2.284420 6.744814 4.726124 1.993924 -5.717533 -16.567874 2.496519 -0.582244 -2.066826 1.492053 -3.959710 -1.275841 3.772244 -5.772415 6.090295 -3.087909 -3.962427 6.704306 -8.723507 -6.441111 -6.437199 -3.820556 1.646421 0.849314 1.573235 -3.496170 1.047852 -1.532987 1.145706 -4.552494 -3.777975 5.257995 4.934759 7.856472 0.339370 1.635969 7.335554 2.552372 -1.139585 -1.953183 0.207581 -4.690356 1.089955 -10.678207 -0.957479 3.201917 3.672849 -5.368234 0.072859 -1.518166 1.485505 -0.059301 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = 2.229700 -2.015164 -1.791327 4.928791 0.531494 1.338093 0.461633 -0.470481 0.617593 -6.932265 -2.814443 5.116727 0.681321 1.102501 -0.444478 1.682207 1.836833 0.997674 -5.982498 -0.553857 0.699478 -0.707086 -0.205543 -0.040673 -0.049631 -2.004381 4.790463 1.481636 0.779593 3.676276 -1.085683 3.154465 3.440401 0.232628 1.461026 2.377094 -1.200290 -0.601260 -3.245733 -2.539624 5.138138 1.014771 0.638920 2.410890 -0.981068 4.230011 2.079579 4.348622 4.771509 -1.502124 1.845013 1.050002 -1.888724 -0.877378 -4.812379 0.385064 0.353643 0.261809 -1.206879 1.138975 -0.561192 1.120184 1.308077 0.146279 4.910602 0.542973 4.353280 3.612117 2.859178 -3.474739 0.681161 0.936434 0.851318 1.481719 3.672254 -3.279656 -3.152281 -0.104326 -0.774888 -3.771456 -0.165647 -0.929905 5.608165 -2.635588 -1.932049 -1.035009 0.570027 4.287667 -1.395165 1.079018 -4.528114 0.050939 0.283938 3.806391 1.316492 0.777919 -0.893409 0.514472 -0.838761 1.019929 1.418118 -3.962574 1.157091 -5.920577 -1.861603 -3.140767 1.474420 1.446215 -3.768542 1.185295 -2.165246 3.727800 -5.454416 -1.117699 0.757662 0.876458 4.389934 0.065690 -0.678471 -0.456677 1.266068 1.931134 2.006721 -2.294622 1.294130 -0.641424 0.505962 0.111987 1.683148 1.259384 -4.181996 -2.137964 1.063451 1.201332 1.039620 1.869037 2.848453 -0.559243 1.864229 -1.756093 3.050069 -3.944634 -1.483171 -1.635492 -2.341080 -2.523562 6.045355 3.080887 4.523024 -0.379910 -0.834276 -0.122986 -4.779457 -6.588372 0.245296 0.226708 -0.737138 2.218686 -0.692675 2.161065 -3.549928 1.381039 2.634047 -1.699673 -2.400402 0.139973 -0.906995 0.554301 -1.023761 -1.329335 -0.257378 -0.635059 0.750655 4.764607 -0.749099 -8.591433 -5.688856 -1.980111 3.407118 -2.625385 -0.051887 -1.556730 -1.740322 -1.855126 -0.744185 -3.002277 -0.063798 0.279646 -3.193096 -4.815994 1.621265 -0.900747 -0.366309 1.955667 -3.762606 0.999761 2.106715 2.145910 0.545324 1.049555 -0.418450 -3.509358 -2.362035 1.032293 -2.820626 3.975598 1.828057 -0.699965 -3.065764 -2.257181 -3.005067 1.910064 -3.465322 2.719032 0.252750 -1.803429 0.800351 -3.382719 1.377976 -1.681312 1.402879 0.900558 -8.258876 4.664901 3.527588 -2.655720 -0.236313 -0.641908 1.738082 -0.176639 2.238482 -3.214296 -2.451254 0.632158 0.456121 0.147333 -0.638172 0.867834 -0.382181 -1.872089 -4.165881 -2.195615 3.164602 1.244310 -0.428805 -0.581988 2.472915 -1.089871 1.000049 4.343580 2.287150 1.104536 -3.162553 -9.922850 1.319664 2.059326 -1.085613 1.467364 -3.106051 -1.060479 1.529712 -3.361991 3.191150 -1.340282 -1.604617 3.565053 -4.018266 -3.146669 -3.240053 -2.195336 0.856301 0.217787 1.637624 -1.854719 0.287706 -1.191391 0.499472 -2.412510 -1.693219 2.217742 2.516134 3.641263 0.600753 1.079440 3.644348 1.387606 -1.173946 -0.956380 -0.106486 -2.571573 1.133765 -6.102363 -0.546639 1.356831 1.652452 -2.587117 -0.025412 -0.395927 1.180008 -0.303696 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 3.203280 -2.180174 -2.169827 6.181755 0.266869 1.373194 0.726575 -0.164172 0.756328 -8.558359 -3.211467 4.812206 1.066947 1.210502 0.234617 2.532886 2.021959 0.811239 -7.427870 -0.347478 1.485899 -0.772656 -0.263580 0.358759 0.086039 -2.810893 4.101950 1.283512 0.738615 4.908616 -1.529681 4.366997 4.416168 -0.049917 1.935683 3.031679 -1.399892 -0.513012 -2.988603 -2.084410 6.382293 1.536202 0.516525 2.202399 -1.398410 5.364261 0.930574 6.466723 3.324198 -2.262117 3.505200 0.214563 -2.094553 -0.022369 -5.444020 0.758062 1.720804 1.067814 -1.613993 1.710796 -1.670899 1.800353 1.748249 0.631912 6.497363 1.834801 5.073361 5.053040 3.904385 -4.056750 1.361615 0.876996 0.143194 0.524944 4.587409 -3.540690 -3.127558 -0.534865 -0.385873 -4.215209 -0.457467 -1.125241 6.672325 -3.742092 -1.748163 -0.278312 1.288307 5.898292 -2.199753 1.983301 -5.448157 0.056557 0.439054 5.853127 0.857906 1.337480 -1.403215 1.076819 -1.017241 0.968918 1.619622 -4.650973 -0.053248 -6.307487 -3.183557 -3.498754 1.935627 2.114767 -5.995595 1.457346 -1.635556 3.650764 -7.759844 -0.587158 0.640015 1.957015 6.284872 1.550561 -1.364726 -0.616246 1.248810 2.388274 2.109203 -2.626819 2.114106 -2.739395 0.467650 0.938112 2.203935 0.977382 -6.127995 -1.859157 1.282151 0.112351 1.005130 3.084003 3.894552 -1.141253 2.550306 -2.950936 3.836144 -5.632124 -2.156087 -2.579597 -3.774801 -2.825602 7.036135 3.871655 5.177365 -0.081593 -2.281058 -0.273566 -6.793756 -8.118628 -0.598655 0.096436 -0.123433 2.853818 -0.977097 2.290072 -4.320159 2.219802 2.585459 -2.459304 -2.885876 -0.203326 0.117251 0.673649 -1.627462 -1.756661 -0.294528 -0.770316 -0.036321 6.398575 -0.504906 -8.833719 -8.362272 -2.664073 4.407559 -2.925355 0.456882 -2.344464 -1.392307 -3.455569 -0.738731 -3.772302 0.292344 0.430006 -3.200935 -6.016243 2.231685 -0.984623 -0.476663 2.025159 -4.470431 1.129255 2.850149 1.881274 0.946367 1.441177 -0.331881 -4.008898 -3.256013 1.250096 -3.428855 4.752366 2.198652 -1.024407 -2.194925 -3.044098 -4.105497 2.784141 -4.023114 3.194605 0.498661 -2.142867 1.283130 -4.313883 0.383985 -2.974836 1.676742 0.776990 -7.694788 5.572445 3.506492 -3.504324 -0.332634 -1.709045 2.906296 -0.056796 3.194503 -3.057409 -2.479452 0.712074 0.787054 0.090692 -0.898114 1.281716 -1.220835 -1.829375 -4.718394 -2.216639 4.327617 1.993970 -0.741077 -0.335181 3.111363 -1.731202 1.642878 4.574600 3.023287 0.547159 -3.702439 -11.198089 1.557387 0.262615 -1.304086 0.485572 -4.012628 -1.297189 1.903068 -2.402634 4.218721 -0.562831 -1.071283 4.524927 -5.854185 -4.375761 -3.928671 -1.912093 0.526675 -0.126544 0.649119 -2.023774 0.794573 -0.449430 1.256263 -1.916785 -3.028781 1.207348 2.625055 4.836976 0.021972 0.615851 4.816457 2.216343 -1.059824 -1.361250 0.251128 -2.815149 1.154288 -6.594677 -0.896919 1.465799 1.971470 -3.613337 0.537454 -0.604719 0.976461 -0.016562 -PE-benchmarks/finite-automata-algorithm.cpp__main = 1.052627 -1.015417 -0.345901 1.756328 0.385668 0.187325 0.263617 0.022845 0.268224 -2.494316 -0.938918 1.096841 0.153900 0.107590 0.236096 0.610550 0.807795 0.142072 -2.089136 0.104717 0.277786 -0.298030 -0.325358 0.144298 0.007505 -0.987112 1.067100 0.719641 0.138357 1.393299 -0.597180 1.012280 1.257701 0.006582 0.810468 1.096073 0.005710 -0.210390 -0.723253 -0.318644 2.286188 0.367606 0.100051 0.725666 0.096658 1.682092 0.223512 2.296236 1.247889 -0.601217 1.351552 -0.349528 -0.579316 -0.067819 -1.956635 0.354632 0.816602 0.305434 -0.892211 0.658648 -0.576002 0.516888 0.508032 0.258195 2.027366 0.565696 1.423920 1.338510 1.471007 -1.224605 0.124918 0.563631 0.583962 0.429958 1.106982 -1.099177 -0.791110 -0.987094 -0.006244 -0.972359 -0.024251 -0.470442 1.768724 -1.075791 -0.482259 0.344605 0.085655 1.603006 -0.762330 0.394491 -1.782271 0.095869 0.349494 1.768838 0.137467 0.364786 -0.195573 0.379915 -0.239127 0.647995 0.441160 -1.505818 -0.469600 -2.416944 -1.287835 -1.000173 0.387864 0.170455 -1.854246 0.330264 -0.026386 0.871228 -2.093598 -0.158250 0.301120 0.515927 1.620951 0.348817 -0.488704 -0.383170 0.396234 0.784068 0.624823 -0.666387 0.505780 -1.227716 0.456712 0.378716 0.710714 0.050469 -1.411612 -0.433061 0.382468 0.287321 0.054849 0.514851 0.801236 -0.692014 0.813360 -0.810191 1.258596 -1.783690 -0.627197 -1.058181 -1.033477 -0.683177 2.632606 0.992183 1.744967 0.313808 -0.906555 -0.088633 -1.959539 -2.720943 -0.130631 -0.167508 0.119698 0.640171 -0.283300 0.558786 -1.028003 0.257619 0.617362 -0.886091 -0.796829 -0.243392 -0.313337 0.069859 -0.483911 -0.743863 0.104420 0.385410 -0.025360 1.627238 -0.363434 -2.698959 -2.092238 -0.987333 1.249408 -0.800368 0.221835 -0.423845 -0.397694 -1.373524 0.100699 -1.134288 0.106336 -0.220999 -1.158801 -1.769810 0.597567 -0.441034 0.129459 0.516391 -1.390663 0.412911 0.437043 0.764098 0.334245 0.512087 -0.166914 -1.580752 -1.381467 0.091623 -0.655920 1.764615 0.531559 -0.167145 -0.431907 -0.909422 -1.278226 0.954350 -1.607343 0.751913 0.471153 -1.007825 0.609782 -1.170095 -0.126020 -0.971822 0.661084 0.326783 -2.015412 1.908239 1.290393 -1.350892 -0.442267 -0.768135 0.781131 0.152360 1.436016 -0.861877 -0.485515 0.372732 0.424047 -0.066729 -0.397889 0.556460 -0.161556 -0.149379 -1.710525 -1.009771 1.167048 0.930450 -0.207135 -0.137177 0.738322 -0.132193 0.150457 1.716038 0.678323 0.348339 -1.101493 -3.456672 0.505260 0.499015 -0.335881 0.516140 -1.435304 -0.516384 0.319290 -0.530368 1.453910 0.202961 0.019016 1.455715 -1.593053 -1.431805 -1.048735 -0.593046 0.123309 -0.340675 0.518314 -0.828124 0.102051 -0.390676 0.465975 -0.554144 -0.642073 -0.075988 0.604210 1.148812 0.205670 0.026294 1.489972 0.558157 -0.480750 -0.396269 0.146141 -0.563644 0.699583 -1.682112 -0.456296 0.028461 0.553382 -0.973661 0.404942 -0.173184 0.543871 0.099162 -PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 5.688026 -0.520598 -3.963833 10.198805 1.210985 0.929657 1.638884 1.556176 0.632599 -12.737879 -5.625048 9.645061 1.474572 1.065074 -0.124386 3.461315 3.405332 3.986681 -12.464949 -0.412038 1.221840 -0.284086 -1.766610 -2.786772 -0.102758 -1.886137 6.305563 3.464045 1.705212 8.297482 -2.741316 5.302310 6.714642 1.092108 3.834918 4.351466 -0.409308 -0.887367 -5.911490 -5.190406 11.602450 3.482720 0.683417 5.960776 -1.253266 9.501787 3.293939 7.626296 4.403735 -2.534851 2.696396 0.768967 -4.318567 -1.446100 -9.839444 1.727401 2.709005 2.189925 -3.107618 4.314279 -0.751058 2.432217 3.616887 -1.216280 10.285765 2.818353 6.903582 7.889207 7.838057 -6.932635 1.763802 0.066192 3.051519 0.963359 5.798611 -6.919682 -5.590623 -3.246394 -0.841014 -11.230360 0.404807 -1.685140 13.201774 -7.210807 -0.820539 0.149167 1.867036 8.198903 -4.923021 0.725105 -9.455472 -0.659293 -1.172042 10.364474 2.335685 1.841294 -1.468176 2.004012 -0.407246 1.951808 2.245384 -7.587096 1.190954 -12.461398 -4.384283 -4.322256 0.928019 1.870168 -6.355095 0.391138 -1.835352 8.414958 -12.851586 -3.254871 2.353904 1.314617 6.075410 0.500877 -2.213780 0.850124 0.790800 3.481175 3.956778 -5.901837 2.237602 -0.401547 -1.715312 0.485514 4.336627 3.248126 -9.584794 -3.760869 2.067391 -0.199115 1.551061 2.996373 3.396607 -2.613297 4.302233 -5.569228 6.986533 -8.459072 -3.071969 -2.670118 -6.287348 -4.707519 10.305431 5.291846 8.083882 0.242207 -1.659834 -0.786335 -9.766970 -14.023807 3.046580 1.116668 -0.439940 3.463243 -1.410871 2.556623 -7.759583 1.248178 6.825205 -4.520735 -5.971381 -0.668814 3.924050 0.677495 -3.121435 -4.146014 0.671477 0.845530 2.506704 7.971871 -2.837185 -15.224922 -10.911874 -3.889369 7.770593 -4.679929 0.016567 -2.871764 -2.656115 -4.430329 -1.197474 -7.550675 2.142451 0.674628 -5.553821 -10.247246 3.885435 -1.759489 -0.933584 3.601881 -7.105391 2.811102 5.453224 3.538012 -1.155855 2.245297 1.373102 -7.056255 -5.687981 1.390491 -4.211432 8.173248 4.376986 0.735429 -6.843388 -3.379374 -6.313372 5.442153 -6.512341 5.450813 -0.242798 -2.324651 3.369344 -7.233482 0.807351 -4.901980 3.413816 1.794994 -14.694521 8.672157 7.147481 -6.214759 -0.972608 -3.098849 4.058935 0.582323 7.291024 -7.207501 -6.051418 2.303988 0.385244 -0.235045 -3.051348 2.017754 -0.791449 -2.774155 -9.193226 -3.421468 7.051980 3.569193 -0.950155 0.546346 4.939413 -2.297744 1.451312 9.562770 4.715989 1.748460 -6.689574 -17.964623 2.435812 3.553664 -0.510349 1.504442 -5.083449 -2.528848 2.591300 -5.316324 7.006165 -0.143288 -3.914160 7.754571 -9.004471 -7.486226 -6.160659 -1.850293 2.775277 -1.714890 2.851445 -3.855975 1.201437 -1.510753 1.864466 -3.061297 -4.119412 1.755112 3.810814 7.837639 0.138539 0.265883 9.040885 2.187191 -2.627869 -0.790164 -1.171488 -3.788662 2.098722 -11.756735 -1.384855 1.668751 3.699548 -6.253242 2.078310 -0.660733 1.712634 1.348438 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.238471 -0.121010 -0.022331 0.362141 0.107552 -0.289054 0.110900 0.160585 -0.069783 -0.591989 -0.228487 -0.104835 0.012376 -0.243889 0.166652 0.124264 0.172770 0.259881 -0.613354 0.251526 0.171389 0.043556 -0.223996 -0.141414 -0.012924 -0.235382 -0.216738 0.269369 -0.017725 0.423424 -0.299532 0.105331 0.337683 0.025407 0.347443 0.434675 0.167717 -0.063283 0.188529 0.207386 0.741756 0.163466 -0.080707 0.045745 0.292781 0.507954 -0.015653 0.321362 -0.162783 -0.162061 0.230003 -0.304014 -0.109983 0.013560 -0.541281 0.158590 0.435822 0.355661 -0.442424 0.336600 -0.292843 0.116324 0.217424 0.008969 0.625061 0.183993 0.151359 0.331574 0.632117 -0.207274 0.047015 0.054094 0.320908 -0.133591 0.128240 -0.067048 -0.063568 -1.007005 0.003512 -0.578952 0.088529 0.081745 0.507826 -0.414217 0.177331 0.460363 0.087362 0.419438 -0.357556 -0.156380 -0.509433 0.008988 -0.018727 0.610329 0.037155 0.053326 -0.019512 0.293840 0.045105 0.223699 -0.068269 -0.440348 -0.466535 -1.033993 -0.502924 -0.207857 -0.178265 -0.168583 -0.591634 -0.153960 0.609147 0.376411 -0.687325 0.076934 0.157013 0.077404 -0.102144 -0.202089 -0.336391 0.029194 -0.208353 0.181758 0.145869 -0.181830 -0.011137 -0.433208 0.130414 0.151518 0.210165 -0.065200 -0.283830 0.007126 0.127584 -0.074604 -0.166470 0.065575 0.004780 -0.344423 0.224400 -0.411293 0.431888 -0.517582 0.081730 -0.348578 -0.409788 -0.071438 0.612683 0.263389 0.140958 0.122310 -0.338942 0.021159 -0.581103 -0.860475 0.178673 -0.142649 0.214877 -0.060478 -0.092127 -0.095399 -0.122804 -0.115947 0.163961 -0.384351 -0.149004 -0.165121 0.330064 0.001745 -0.208199 -0.340937 0.035604 0.568340 0.044589 0.144848 -0.343606 -0.140925 -0.448244 -0.334105 0.368370 -0.116950 0.085266 -0.092282 -0.027670 -0.545783 0.328796 -0.338066 0.122929 -0.276302 -0.132471 -0.506922 0.026530 -0.157958 -0.035275 -0.053050 -0.335136 0.176957 0.028793 -0.000167 -0.010292 0.029905 0.103586 -0.453984 -0.510239 -0.029956 0.063639 0.401750 0.280870 0.164279 -0.198004 -0.119405 -0.357376 0.430678 -0.370759 0.125167 0.198397 -0.455517 0.477152 -0.278353 -0.268385 -0.268941 0.273057 0.038768 -0.320107 0.665529 0.440087 -0.513850 -0.156315 -0.386261 0.232816 0.215375 0.628835 -0.196459 0.016607 0.198882 0.003136 -0.077745 -0.217617 0.231301 -0.093840 0.316721 -0.515943 -0.258161 0.313479 0.428087 -0.034133 0.124891 -0.036726 0.076651 -0.143477 0.551900 0.100071 0.113607 -0.317787 -0.602005 0.171264 0.038857 0.159971 0.121338 -0.210110 -0.164419 -0.091439 0.076487 0.509782 0.481435 -0.083319 0.412650 -0.471715 -0.533261 -0.217261 0.100630 0.082499 -0.353128 0.262941 -0.302374 0.011958 -0.110230 0.318743 0.086171 -0.183710 -0.454430 0.074762 0.226017 0.182903 -0.351489 0.502107 -0.008408 -0.227861 -0.061496 -0.007220 0.090285 0.241679 -0.118567 -0.273411 -0.215103 0.236261 -0.305491 0.454957 -0.133852 0.220331 0.268904 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.478565 -0.050464 -0.034550 0.684005 0.116776 -0.487013 0.230169 0.398760 -0.234134 -0.913382 -0.297243 0.073772 0.023820 -0.337455 0.137667 0.127646 0.216062 0.317786 -1.360822 0.331920 0.202529 0.015739 -0.439488 -0.453344 -0.035516 -0.264367 -0.049238 0.653857 -0.064396 0.715419 -0.448550 0.095987 0.477852 0.162255 0.670303 0.634121 0.211175 -0.061531 0.059472 0.150199 1.149039 0.538467 -0.416182 0.085773 0.458819 0.863776 0.236072 0.104614 -0.638760 -0.179660 -0.008729 -0.077483 -0.313965 -0.168150 -0.836178 0.087802 0.810297 0.658366 -0.622096 0.611078 -0.525700 0.156091 0.396599 0.242994 1.048902 0.132403 0.425111 0.557424 0.968202 -0.503328 0.082742 0.033612 0.560633 -0.291904 0.131854 -0.044861 -0.391634 -1.587004 0.121946 -1.385305 -0.036240 0.238784 0.722768 -0.585776 0.304875 0.563994 0.191070 0.609706 -0.813171 -0.273376 -0.796332 -0.078999 -0.243002 1.427361 0.095438 0.150072 0.180928 0.614554 0.290559 0.433912 -0.066417 -0.760358 -0.317219 -1.657689 -0.529177 -0.302946 -0.355149 -0.246992 -0.642039 -0.319932 1.005982 0.772728 -1.049093 0.006355 0.246911 0.077558 -0.034997 -0.660893 -0.394909 0.326641 -0.488642 0.193138 0.463531 -0.444247 0.057745 -0.165788 0.194921 0.267804 0.385494 0.206950 -0.864509 0.038903 0.422109 -0.326710 -0.244261 0.111853 -0.126999 -0.476239 0.309269 -0.867001 0.841727 -0.832244 0.362620 -0.425598 -0.652385 -0.064545 0.331012 0.509193 -0.068249 0.143254 -0.273620 0.219681 -0.872717 -1.611551 0.471509 0.177081 0.173030 -0.281630 -0.175748 -0.103909 -0.415808 -0.223591 0.556166 -0.594201 -0.354022 -0.278236 0.915331 0.189350 -0.392809 -0.234149 0.178753 0.768522 0.359289 0.428968 -0.639149 -0.501584 -0.851000 -0.477815 0.650190 -0.190978 -0.201521 -0.095016 -0.186703 -0.872544 0.589474 -0.563664 0.512198 -0.408774 -0.129782 -0.848684 0.080147 -0.229151 -0.021513 -0.054403 -0.515435 0.193960 0.076719 -0.240639 -0.151960 0.052567 0.456227 -0.530659 -0.709863 0.143788 0.186615 0.716332 0.379427 0.267017 -0.353687 -0.106814 -0.568873 0.772729 -0.266822 0.310234 0.114201 -0.718689 0.807091 -0.408424 -0.453424 -0.306306 0.498725 0.158202 -0.084170 1.333841 0.893585 -0.798991 -0.303290 -0.457587 0.305755 0.327302 1.025386 -0.612603 -0.276942 0.313097 -0.021916 -0.141669 -0.183759 0.325959 -0.045715 0.335494 -0.841737 -0.425664 0.488147 0.577339 0.025533 0.323942 -0.096976 -0.137744 -0.394323 1.001969 0.172884 0.285258 -0.604507 -0.831463 0.330332 -0.436502 0.211811 -0.055152 -0.170374 -0.468266 -0.151916 0.162996 0.781140 0.854412 -0.699505 0.677460 -0.872307 -0.836421 -0.622386 0.139788 0.143390 -0.574664 0.396925 -0.457962 0.121968 -0.162079 0.440047 0.091137 -0.251459 -0.487065 0.059108 0.306765 0.236423 -0.720686 0.879827 -0.042297 -0.342937 -0.190005 -0.003606 -0.032754 0.482601 -0.295363 -0.436125 -0.359616 0.536025 -0.478259 0.612286 0.049593 0.357491 0.496703 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/snake-ladder.cpp__main = 3.204869 -3.225155 -0.498330 4.938088 0.868467 0.784545 1.072516 0.978477 1.463172 -7.115777 -3.003342 3.406040 0.324418 0.524451 0.647148 1.292076 2.434495 0.809462 -7.929609 -0.098742 0.815187 -0.332711 -0.359623 -0.391751 0.143236 -2.256768 3.314758 2.653698 0.636507 4.283579 -1.643676 2.316511 3.789402 0.270882 2.143935 3.144836 0.033949 -0.629692 -2.588219 -1.474484 6.763663 1.680054 -0.468046 2.775681 0.145354 5.220314 1.603193 5.809725 4.611662 -1.651753 3.408532 -1.778220 -2.335205 -1.004934 -5.684513 0.771469 2.979080 1.434569 -2.461009 2.410585 -0.837719 1.373741 1.622286 0.070440 5.633335 1.498368 4.335649 3.662293 4.237156 -4.001233 0.439336 0.936914 2.061580 1.486184 2.576569 -4.529414 -2.471434 -4.790049 0.220231 -4.448042 -0.315515 -1.608304 4.273423 -3.346418 -0.604299 0.986211 -0.494194 4.318160 -2.266558 0.617033 -5.287779 -0.004955 1.512277 5.418240 0.266557 0.637359 0.319447 1.335173 -0.246313 1.869878 2.267332 -4.452539 -0.981830 -7.604884 -2.923226 -2.763972 0.998581 0.589068 -4.224334 0.893829 -0.171683 1.621467 -6.049303 -1.139772 1.241183 1.426793 3.595150 -0.350950 -0.683102 -0.819148 0.850153 2.440715 2.267333 -3.316875 1.517080 -2.403461 0.800536 1.419856 2.107121 0.711193 -3.418043 -1.813978 1.347253 1.438109 0.226406 1.392135 1.721690 -1.599490 2.390554 -2.980554 4.198906 -5.026077 -1.565955 -2.394724 -1.712297 -2.275679 7.711413 2.145193 4.234955 1.117638 -2.278967 0.109369 -4.887176 -8.138158 0.573559 0.430198 0.556730 1.659873 -0.962184 1.633646 -3.251118 0.361327 1.377503 -2.402914 -2.566904 -0.567983 -1.526350 0.389843 -1.529679 -1.832872 1.074220 1.846112 0.160430 4.436424 -1.365648 -8.058719 -5.303517 -2.744429 4.003557 -2.442943 0.139822 -0.980459 -1.205346 -3.903727 0.448619 -3.620084 0.687759 -0.299987 -4.110417 -5.524238 2.027688 -1.438663 1.651247 2.197213 -4.172403 1.108292 0.655831 3.471320 0.446874 1.545723 0.271106 -5.021681 -4.078860 -0.261167 -1.956670 5.863910 0.564840 -0.282925 -1.869016 -2.220169 -3.016483 3.173008 -4.199989 2.483656 0.411880 -2.770180 1.854941 -2.973798 -0.008610 -3.324580 2.056646 1.555965 -5.536861 5.814829 4.041139 -3.805778 -1.345137 -2.189755 1.950872 0.534467 4.255906 -3.241493 -2.658087 1.242944 0.833369 -0.126930 -1.893934 1.540873 0.082089 -0.906487 -5.282145 -2.826484 3.449492 2.404664 -0.451152 0.445871 2.878629 0.016639 -0.469952 5.521449 1.702440 1.143872 -3.347944 -10.243219 1.780933 4.200491 -0.257409 1.575865 -4.662938 -1.752786 1.057110 -0.810212 4.037396 2.458568 -0.195990 4.390283 -4.292713 -4.104266 -3.490290 -1.753657 0.896425 -0.799889 1.409668 -2.150776 0.587395 -1.062968 1.019733 -1.378689 -1.641051 -0.246171 1.843806 3.500222 0.460432 -0.000149 4.683157 1.176312 -1.837264 -0.861811 -0.134111 -2.169964 2.157117 -4.025581 -0.946155 0.343743 1.874287 -3.034910 0.984867 -0.263170 1.449947 -0.057678 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.075961 -2.511849 -3.403094 10.349401 0.153531 -4.195171 1.612558 4.400992 0.174263 -10.284036 -3.664691 4.592492 1.853660 -0.858734 1.507902 2.671721 0.838733 1.829053 -14.487868 3.395423 0.769926 -0.427815 -6.153471 -4.219636 -0.059617 -1.307378 2.367885 5.809484 -0.204627 6.908921 -4.763199 2.924091 5.814237 0.092855 5.991067 4.215400 1.098992 -0.799205 -3.529190 -1.240648 11.264135 6.891818 -4.207112 2.673352 0.848129 9.290722 2.706523 7.416223 -4.822609 -2.753453 2.301686 -1.375343 -4.092343 -1.621024 -8.756237 2.710791 8.598792 5.570525 -4.974609 5.517838 -4.754056 2.339573 5.063818 3.132546 12.565525 3.517802 8.020087 7.582357 10.378344 -6.215397 2.318413 0.596224 5.495410 -2.101193 4.578802 -4.460074 -5.561227 -11.746152 2.715892 -12.359804 -0.349999 0.820787 9.114090 -8.023555 2.425347 3.629181 3.600124 8.548113 -9.854607 1.421862 -8.500341 -1.217527 -2.780738 16.422646 0.063784 1.810443 1.131900 6.494707 1.779264 3.789414 0.993040 -7.583970 -0.874867 -14.642434 -6.314672 -1.657995 -3.536414 -0.370673 -8.097103 -1.625819 5.894637 6.354104 -11.949164 -1.457401 1.799232 1.288527 7.193541 -1.854222 -2.379854 2.380976 -2.288932 2.510016 4.918002 -5.696500 3.540337 -1.970343 1.707439 4.256687 4.452634 4.060755 -11.909936 0.100458 3.695262 -2.175874 -0.810201 2.783278 0.542128 -6.168466 4.271827 -8.278602 8.679365 -11.126736 -0.420151 -4.427448 -7.868989 -0.868734 6.548224 4.923071 3.193840 1.640998 -3.410589 1.207353 -11.000708 -17.409475 2.603172 3.342332 0.339145 -0.893322 -1.582974 0.409278 -5.596515 -0.597261 7.016048 -7.209434 -6.442632 -2.269771 8.962500 1.905062 -3.798617 -3.076263 2.439674 5.356873 2.929563 7.982511 -3.600070 -11.395405 -11.578368 -4.295702 7.372487 -1.623844 -1.391349 -1.868809 -2.370343 -10.019257 3.746412 -7.145333 5.553562 -1.594307 -3.032709 -10.125402 2.201888 -1.424340 0.421768 -0.049080 -6.729074 2.826287 1.714102 1.424669 -2.090469 2.426943 4.987713 -8.214323 -8.893439 1.941193 0.007950 11.096548 3.340710 2.087147 -2.076470 -2.151624 -7.198057 8.111315 -6.728833 4.279553 0.233754 -5.220692 6.787826 -7.220950 -4.666980 -6.482132 4.797915 1.512997 -1.974594 14.547181 8.908708 -8.073503 -1.986651 -4.730605 4.911398 2.631212 11.319640 -7.846227 -4.861505 2.502369 1.817556 -1.568063 -2.690350 3.093275 -1.555613 -0.344494 -7.944059 -4.302823 5.268162 4.669615 0.315855 1.639168 0.232045 -3.501741 -3.965354 10.329174 3.440675 1.741518 -7.241029 -12.951017 3.609251 -3.390404 -0.401829 -0.989036 -5.739343 -4.199873 -0.347242 0.689609 8.001010 7.445647 -5.046943 7.463266 -12.272570 -8.292561 -7.158942 1.097443 0.303251 -3.591694 3.399790 -4.637388 1.393808 -0.364640 3.499722 -2.583023 -3.629271 -3.745232 1.111975 4.408230 -0.244569 -5.988460 10.259262 1.865882 -2.015944 -2.616120 -0.333146 -3.385180 2.966564 -5.279640 -2.952464 -1.420830 5.079927 -6.100666 4.683891 1.347244 2.062936 3.221621 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = 3.314023 -1.766105 -1.151194 4.067630 1.271632 -1.317694 -0.310987 1.153899 0.414772 -3.173543 -1.875253 3.719624 -0.111494 -0.142014 1.086947 0.593432 1.430675 -0.042858 -4.981865 1.491791 -1.652743 -1.017352 -2.962506 -1.667841 0.186691 0.665168 2.584998 2.206973 0.031529 1.482300 -2.291533 1.508246 0.816937 0.787166 3.090219 -0.305105 -0.151710 -1.377793 -2.556298 -2.459531 5.086920 1.409368 0.205024 2.908410 1.142385 2.554258 0.641372 4.616307 3.030256 0.272368 2.372653 -0.660013 -1.252512 0.283186 -5.047723 1.538022 1.447918 -0.948061 -1.776402 1.264588 -0.231921 1.410654 1.545801 -0.325852 5.784652 0.627636 3.437832 2.369361 3.086920 -1.833795 0.483035 0.417228 4.632364 1.284583 0.669551 -3.035448 -1.133961 -3.597297 0.601931 -3.366877 1.832487 -1.891492 3.236202 -1.912334 0.359631 0.120227 -0.124648 2.526245 -3.470924 1.162057 -3.351687 0.059170 -0.303706 3.735201 -0.628866 0.676876 0.642490 0.755196 -0.571357 1.811886 0.043233 -2.162856 1.085680 -6.111331 -2.599603 0.893449 -1.089723 -1.891578 -2.380263 1.078902 -0.101442 2.054862 -2.605418 -2.843246 -0.228118 -1.120698 1.171293 0.464869 -0.295064 -1.003682 -0.259357 3.136188 1.225697 -1.299571 1.605946 -2.350834 -0.285122 1.427853 3.369060 1.743696 -2.352388 -0.544575 1.004435 1.328549 -0.726133 -0.485770 -0.291560 -1.308290 1.450596 -1.024166 2.388410 -3.199407 -1.731758 -3.193725 -0.759852 0.226437 4.830475 1.534696 3.780276 3.010839 0.086528 0.301793 -3.684751 -5.909827 1.376828 0.479158 -0.864374 -0.178038 0.218639 0.569960 -1.311742 -2.081019 3.293527 -3.490566 -3.768756 -2.551388 -0.260472 0.302647 -1.221172 -1.853376 2.100155 2.763596 -0.283535 1.991569 -0.829893 -6.777038 -2.709604 -1.330679 1.987180 -0.892569 0.171926 0.627070 -0.061017 -2.508395 0.401891 -2.870375 1.353508 -0.528428 -2.530578 -2.934951 0.038855 -0.408776 1.639790 -0.162748 -2.489845 2.236422 0.763321 3.654799 -1.387920 2.633137 1.317272 -3.842280 -4.216120 -0.858676 0.856901 4.502862 0.742797 0.691587 -1.543094 -1.377593 -2.267483 2.596610 -5.296297 1.478306 0.943341 -1.962040 0.915607 -3.029309 -1.288671 -1.223937 1.593874 0.526655 -4.451184 3.863560 2.983645 -3.946427 -1.453217 -4.213174 2.606543 -0.050319 5.761110 -2.466609 -0.187517 0.696777 2.609745 -1.197517 -2.142905 1.563530 1.123235 -1.432090 -3.794963 -3.006679 1.615959 1.244029 0.635935 -0.828525 0.393499 0.211698 -1.422382 4.915049 0.764392 1.019710 -2.672493 -7.271777 0.203694 3.600649 -0.172326 2.063323 -3.676407 -2.075519 -1.272323 -1.551227 2.741309 0.339176 0.533330 2.374371 -2.992892 -2.146898 -2.287515 0.336053 -0.596627 -1.337857 2.347329 -2.563644 -0.975486 -1.153478 1.334638 -2.393943 0.396174 -2.146699 0.078886 0.948959 0.524258 -0.704896 2.843002 2.004577 -1.411240 -0.636706 -0.223508 -1.728353 1.445905 -3.785770 -1.255113 -0.830036 0.458859 -2.098274 1.011210 1.412225 1.939348 -0.479719 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = 0.661413 -0.718516 -0.082552 0.763629 0.427570 -0.193916 0.103107 0.052190 0.128587 -1.084227 -0.426819 0.351265 -0.019567 -0.247172 0.247957 0.295187 0.514980 -0.048572 -0.766896 0.328295 -0.048017 -0.245521 -0.541596 0.101680 -0.013448 -0.598086 0.351161 0.531787 -0.052988 0.555670 -0.417364 0.288348 0.504527 -0.036242 0.625599 0.621055 0.246013 -0.163555 -0.129294 0.154963 1.389479 0.137468 0.034930 0.383912 0.530142 0.819617 -0.054412 1.487585 0.626005 -0.184331 0.918618 -0.296298 -0.228869 0.018149 -1.208764 0.310694 0.614928 -0.027755 -0.764250 0.394708 -0.386644 0.242569 0.248906 0.272038 1.124112 0.321784 0.646986 0.511697 1.001927 -0.462602 -0.124193 0.518707 0.785573 0.379271 0.430860 -0.463589 -0.308435 -0.867127 0.085561 -0.150477 0.182160 -0.344779 0.804657 -0.495723 -0.250221 0.456119 -0.039745 0.689441 -0.513346 0.030070 -0.909510 0.138454 0.194492 0.939815 -0.057199 0.275382 -0.052022 0.256048 -0.112751 0.550623 0.073881 -0.817070 -0.572204 -1.546234 -0.970150 -0.420460 -0.042954 -0.330880 -1.046831 0.097144 0.339866 0.346767 -0.816563 -0.007358 0.195353 0.090756 0.761955 0.243849 -0.409339 -0.341026 0.171807 0.453582 0.170450 -0.068316 0.106962 -1.001533 0.522907 0.265523 0.385828 -0.172786 -0.491540 0.012997 0.186569 0.264695 -0.181753 -0.032023 0.123959 -0.748557 0.418376 -0.274688 0.617844 -1.011054 -0.377360 -0.829795 -0.548279 -0.137314 1.551369 0.433961 1.069342 0.410412 -0.545026 -0.102956 -1.026658 -1.539608 -0.083509 -0.367806 0.098294 0.069038 -0.082119 0.095659 -0.248240 -0.203183 0.290827 -0.613631 -0.312436 -0.366624 -0.128586 -0.086044 -0.232329 -0.515209 0.058392 0.631852 0.051399 0.529454 -0.298335 -1.409352 -0.743917 -0.587555 0.498681 -0.290256 0.240486 -0.024613 -0.152140 -0.967208 0.271294 -0.513855 0.072099 -0.432377 -0.594899 -0.760869 0.152453 -0.261532 0.187109 -0.010645 -0.704609 0.293526 -0.002746 0.439378 0.196852 0.323885 -0.195061 -1.056132 -1.011529 -0.087774 0.024627 1.145389 0.294547 0.023157 0.018729 -0.395083 -0.789413 0.532400 -1.218769 0.170890 0.572442 -0.772657 0.494326 -0.520513 -0.371051 -0.520136 0.429285 0.057408 -0.715916 1.145415 0.811246 -0.935917 -0.443164 -0.602178 0.397013 0.194461 1.089434 -0.338720 0.073071 0.263951 0.383078 -0.139248 -0.219559 0.453453 0.004703 0.327467 -1.024078 -0.722066 0.484343 0.743966 -0.106131 -0.168569 0.016804 0.135508 -0.144275 1.028609 0.175832 0.304979 -0.553566 -1.736163 0.161677 0.237404 -0.212666 0.521460 -0.784648 -0.366691 -0.135794 -0.205136 0.887205 0.169454 0.281265 0.720543 -0.719162 -0.812045 -0.376648 -0.244700 -0.037391 -0.412692 0.564726 -0.592281 -0.123450 -0.380343 0.396779 -0.297429 -0.182253 -0.364600 0.129868 0.294392 0.258094 -0.206250 0.715030 0.238945 -0.289714 -0.221159 0.132027 -0.015262 0.604237 -0.657976 -0.408951 -0.386972 0.201686 -0.388183 0.476599 -0.045198 0.566796 0.151117 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 2.207538 -0.261790 -0.598435 3.041467 -0.255802 -2.106828 1.323593 2.230038 -0.652076 -4.568882 -1.521046 0.076193 0.584232 -1.305135 0.247283 0.920228 0.440827 1.478959 -7.266127 1.352918 1.858650 0.518801 -1.465483 -1.884660 -0.148117 -1.474444 -1.084062 2.541623 -0.308581 3.672120 -1.637865 0.566595 2.692310 0.104242 2.246446 3.386186 0.398669 0.066208 0.964148 1.102166 4.620802 3.021541 -2.589231 -0.222416 1.319944 4.230306 0.756278 1.037732 -3.984831 -1.383913 0.018295 -0.536698 -1.906516 -0.845620 -2.869282 0.324664 4.536981 4.050039 -2.430819 2.895476 -2.778364 0.500567 1.935394 1.408388 4.481747 1.441955 1.919075 2.755573 4.564075 -2.331467 0.778260 -0.198033 1.349287 -2.029302 1.126388 -0.744925 -2.146048 -7.175397 0.854658 -7.101457 -0.858589 1.428113 3.724395 -3.309518 1.594745 2.471191 1.681758 3.286214 -3.656492 -1.007195 -3.435591 -0.468301 -1.244277 7.605585 0.157455 0.760901 0.455334 3.211466 1.483587 1.472728 -0.041607 -3.437937 -2.260522 -6.964626 -2.072597 -1.991270 -1.459844 0.041663 -3.671902 -1.717097 4.685885 2.753177 -5.705003 0.680366 1.478791 1.067574 1.025384 -1.885912 -2.154392 1.876865 -2.366316 0.227038 2.191776 -2.332517 0.212649 -0.704790 0.911462 1.450477 0.941392 0.865062 -5.400322 0.458026 1.899135 -2.254983 -0.561852 1.432682 0.081040 -2.162866 1.487580 -4.734230 3.915991 -4.527662 1.570970 -1.413029 -3.505867 -0.623541 0.986836 2.809834 -1.116024 -0.293672 -1.572431 0.751326 -4.449698 -6.997114 1.527166 0.886344 1.215048 -1.268508 -1.054428 -0.615968 -2.045551 -0.100989 1.779056 -2.310363 -1.130808 -0.816658 5.804016 1.085643 -1.682920 -0.692443 0.093305 2.902421 1.425147 2.377337 -2.678992 -1.863444 -4.885536 -2.160453 3.302995 -0.768966 -0.918364 -1.354487 -0.926298 -4.248647 2.576498 -2.399129 2.228131 -1.471090 -0.325622 -4.230201 0.868189 -0.859802 -0.449831 -0.066789 -2.431532 0.391702 0.765281 -0.928869 -0.315523 -0.264087 1.995123 -2.693517 -2.872682 1.030236 0.101062 3.594995 1.914138 0.855588 -1.062496 -0.369814 -2.931237 3.627624 -0.538799 1.603465 -0.085483 -2.832625 4.058039 -1.978686 -1.820694 -2.350773 2.137709 0.549531 0.284289 6.717078 3.807695 -3.084935 -0.790618 -1.482164 1.282021 1.659392 3.679481 -2.845747 -2.198494 1.344035 -0.924478 -0.513063 -0.574939 1.319817 -1.082431 1.743115 -3.363610 -1.034898 2.455140 2.540156 -0.205806 1.964535 -0.290742 -1.372602 -1.478242 3.872802 1.171817 0.560093 -2.743527 -4.000688 1.903018 -2.876389 0.764852 -1.329058 -0.738497 -1.943151 -0.050419 1.605452 3.549903 4.802048 -3.553045 3.083188 -4.715282 -4.076900 -3.006825 0.806885 0.822384 -2.052626 0.890488 -1.663937 1.111037 0.049976 1.921430 0.928205 -2.262326 -2.158460 0.699407 2.179657 0.583873 -3.690900 4.260372 -0.474755 -1.147222 -1.106236 -0.088818 -0.299867 1.602672 -0.431942 -1.448991 -1.165058 2.811447 -2.482124 2.940582 0.227018 1.013768 2.491381 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = 0.529464 -0.592753 -0.001611 0.593101 0.314428 -0.158841 0.134333 0.076945 0.104206 -0.870989 -0.360605 0.280167 -0.039720 -0.210514 0.204321 0.185433 0.417352 -0.033748 -0.643473 0.238672 -0.043093 -0.167990 -0.432493 0.080694 -0.016686 -0.473237 0.223484 0.479292 -0.057725 0.457790 -0.306934 0.170925 0.402752 -0.020539 0.450050 0.527975 0.251878 -0.094391 -0.081413 0.143539 1.115242 0.112343 0.016945 0.348353 0.457439 0.667466 -0.044554 1.219645 0.522603 -0.155931 0.768594 -0.315697 -0.218417 -0.022733 -0.947449 0.221819 0.553729 0.019543 -0.598907 0.386933 -0.325180 0.186117 0.188561 0.193425 0.867087 0.309282 0.498252 0.371838 0.816779 -0.395420 -0.125833 0.431816 0.652608 0.321161 0.271102 -0.396214 -0.249405 -0.785437 0.069768 -0.160518 0.106045 -0.283897 0.662852 -0.386164 -0.200212 0.400563 -0.085501 0.494305 -0.410287 -0.000698 -0.709953 0.118540 0.172050 0.777763 -0.050405 0.221093 -0.011945 0.195019 -0.023216 0.468252 0.051550 -0.623875 -0.508845 -1.292718 -0.753690 -0.317269 -0.049217 -0.291735 -0.805510 0.044017 0.316277 0.237671 -0.647208 -0.030975 0.199326 0.093403 0.556413 0.215718 -0.339629 -0.264733 0.154922 0.355753 0.185997 -0.094594 0.090347 -0.803069 0.404335 0.212806 0.291616 -0.144788 -0.397449 -0.017185 0.137456 0.223712 -0.152545 -0.057091 0.040755 -0.557098 0.340156 -0.263931 0.517500 -0.843656 -0.289676 -0.634055 -0.435794 -0.093586 1.300657 0.349463 0.863429 0.325576 -0.452583 -0.102656 -0.780132 -1.261882 -0.028273 -0.265966 0.147511 0.014280 -0.064039 0.039163 -0.206737 -0.195996 0.203339 -0.454104 -0.196322 -0.284880 -0.105094 -0.075631 -0.207313 -0.445900 0.099924 0.540212 0.038061 0.376526 -0.253364 -1.157286 -0.548921 -0.472828 0.402596 -0.208696 0.160496 0.016522 -0.131746 -0.789054 0.235085 -0.393467 0.069286 -0.319332 -0.540663 -0.617031 0.133367 -0.212001 0.171596 0.008776 -0.544277 0.178010 -0.011249 0.395766 0.183573 0.280922 -0.123763 -0.849042 -0.834125 -0.125354 0.024014 0.930088 0.239106 0.044624 0.014923 -0.279830 -0.648676 0.444352 -0.966177 0.103139 0.422264 -0.616763 0.435836 -0.372675 -0.281002 -0.446587 0.340823 0.084621 -0.622089 0.926142 0.677550 -0.746783 -0.412593 -0.476186 0.269979 0.192034 0.899066 -0.299008 0.029462 0.237645 0.263575 -0.102282 -0.193937 0.373491 0.032029 0.271718 -0.820417 -0.575973 0.392027 0.604616 -0.091805 -0.108023 0.037964 0.155023 -0.123510 0.834508 0.107350 0.205436 -0.428836 -1.431271 0.170053 0.286444 -0.177801 0.444320 -0.670552 -0.325186 -0.072684 -0.143349 0.692846 0.194426 0.221814 0.580917 -0.525773 -0.647248 -0.290400 -0.203848 -0.005347 -0.365618 0.460801 -0.449614 -0.069838 -0.270476 0.298200 -0.185178 -0.140847 -0.349171 0.061430 0.236106 0.202840 -0.166693 0.594760 0.131780 -0.247175 -0.167022 0.090384 0.024465 0.509472 -0.496598 -0.315402 -0.358472 0.182527 -0.300288 0.420640 -0.023067 0.439936 0.170375 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.667788 0.275765 -2.603501 4.695788 -1.179973 -0.980332 0.822131 -0.292023 -0.421793 -5.227520 -0.264728 2.131049 0.763790 0.696338 -1.336970 2.867520 -0.170990 1.008306 -3.376515 0.560210 2.318570 0.746021 -0.515764 -0.002483 0.630622 -1.132188 1.259964 0.840788 0.158587 3.558141 -0.973381 2.805747 3.627017 -0.820877 -0.167971 2.552478 0.122398 1.748981 -0.075682 0.072105 2.129595 0.631904 -1.311064 -0.091582 -1.482777 4.076630 1.393595 2.339367 -3.295761 -2.354188 -0.201107 1.828211 -1.235118 -1.168434 -1.724765 1.016739 1.380595 3.794266 -1.256053 1.431893 -1.527343 0.812345 2.308686 1.915086 4.219820 2.964988 2.513225 4.278982 4.351652 -2.101057 1.757977 0.017075 -0.380484 -1.561581 2.966288 -1.025251 -2.553880 0.107813 -0.839282 -4.010853 -1.225710 1.487317 4.780358 -3.624578 -0.725420 -1.266543 2.024993 4.833194 -2.898607 1.510396 -3.473559 -0.390955 -0.620880 6.145888 0.736268 0.877880 -1.742058 2.712185 0.068353 -0.003373 -0.345630 -2.524614 -0.322596 -2.170958 -1.867647 -2.514131 -0.026801 2.549070 -6.112548 -0.901589 -0.202544 3.241585 -7.491809 0.208640 0.849054 1.504004 5.262847 1.785068 -1.314570 1.906361 -0.572535 -0.695826 0.620578 -1.039923 1.440387 -0.673834 -0.629258 0.530288 0.357841 1.989672 -7.922946 0.183515 0.713149 -2.954458 1.540174 4.043241 2.532402 -0.937435 1.502797 -3.941356 2.693273 -5.211092 -1.745998 0.294315 -5.169864 -1.831193 0.871739 3.376381 1.200483 -3.071381 -1.898755 -1.515371 -6.248160 -5.435084 -0.110677 0.447429 -0.193604 2.177082 -1.310720 0.366826 -3.273678 1.654095 3.634570 -1.685514 -1.725571 -0.807048 4.756225 1.446232 -0.227915 -1.002305 -2.037314 -0.619489 0.822076 3.966595 -0.787752 -3.705804 -7.731929 -1.125805 2.796754 -1.193862 -0.327876 -2.983612 -1.645246 -4.188180 0.763260 -2.409088 0.259421 0.158723 0.266693 -4.461692 2.717810 -0.411730 -2.037977 0.145538 -2.418238 0.301453 1.646620 -1.776009 0.855746 -0.304279 0.151045 -1.222068 -1.520865 3.374036 -1.667923 1.824563 2.190996 -0.052073 -1.145132 -1.852846 -3.499307 3.267077 -0.883877 2.535669 1.396715 0.952771 3.124200 -3.276809 0.255534 -2.147040 1.555806 0.035518 -3.361997 3.734999 2.539624 -2.243179 0.705614 0.506068 2.270073 1.197645 0.804396 -2.910168 -3.140309 1.211755 0.007104 -0.164137 0.097592 0.146909 -2.235079 0.769416 -2.143691 0.481604 2.627640 1.207993 -1.221804 0.216475 0.085300 -4.366453 0.390005 1.959331 2.842202 0.417103 -2.450519 -4.374049 0.475124 -5.445782 -0.309854 -1.345476 -1.463705 0.206190 2.493982 -1.817534 3.396408 -0.902856 -4.098216 2.958980 -6.672382 -3.738500 -1.678240 -0.207437 0.430607 0.283305 0.893526 -0.732013 0.957343 1.477264 1.678246 -1.446922 -3.974163 1.579717 1.760972 4.408697 -2.298952 -1.737526 3.829670 -0.452633 0.397877 -1.567472 0.996853 -1.344498 -0.709148 -4.484616 -0.720453 0.914387 2.837104 -3.735299 2.838923 -0.910025 -0.166744 1.518526 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.739142 0.416136 -6.631625 13.952260 -2.549958 -6.960928 4.639985 6.671879 -0.526541 -16.942247 -4.429411 8.267874 3.895508 -3.254156 -1.415023 5.140519 0.093564 6.693050 -22.981462 4.477231 5.984758 2.309121 -7.151485 -6.909113 -0.571715 -4.654435 1.499827 7.208648 -0.196762 13.876102 -4.913341 3.702609 11.246769 -1.011946 6.826458 11.981233 1.700221 1.595546 -0.956073 0.973157 15.146781 12.631349 -7.883045 1.647652 0.957717 15.753742 5.342020 4.776613 -14.402082 -6.410203 -2.838315 3.503800 -7.608419 -4.495663 -9.735025 1.862769 12.216947 12.168062 -7.483097 10.027248 -7.971009 1.660149 8.259662 6.860970 15.877002 5.414461 8.257493 12.285620 17.142475 -9.023041 4.549762 -0.612955 3.555211 -7.153929 11.262478 -2.025487 -12.668154 -13.545630 2.242141 -22.867485 -4.114251 5.393663 15.940154 -14.063156 4.650186 5.324504 8.902150 13.976853 -13.417403 -2.389112 -12.214108 -2.509276 -6.176060 28.958214 2.517095 4.649755 -1.123887 11.664237 4.226912 3.271741 0.885740 -13.891360 -1.703236 -21.013103 -5.823491 -8.786238 -5.382717 3.384761 -13.722180 -6.149323 9.598756 15.565166 -23.568524 2.441671 5.114868 2.417018 11.985777 -6.044645 -4.390914 9.102554 -6.117329 -1.161929 7.106943 -9.794312 1.741881 3.025419 2.172646 4.659647 2.507191 5.808364 -23.519085 0.752637 7.071701 -7.361178 0.151785 8.521774 2.847930 -9.837819 5.676265 -17.389166 13.445224 -16.225850 2.121186 -2.269951 -15.838222 -4.502312 2.509692 8.860551 0.645944 -5.419262 -4.470334 0.979477 -18.315119 -27.760442 6.104417 3.616424 1.124688 -1.248396 -3.640813 -1.696113 -11.013614 2.531442 10.275244 -7.802997 -5.076241 -0.173909 21.969847 3.928027 -5.542402 -1.793874 -1.948384 4.569985 9.774544 12.179045 -7.700178 -14.223970 -21.043955 -5.873242 12.914013 -3.113103 -3.544116 -6.748734 -6.353667 -13.568976 5.503400 -9.724938 8.910624 -3.691789 0.808992 -16.388979 3.983556 -2.408660 -2.586110 -0.205606 -9.622713 1.634325 4.861733 -6.012166 -2.034743 -0.733501 7.552894 -8.114202 -7.823914 7.896113 -2.389584 13.447532 7.571474 3.148819 -4.613816 -1.565517 -12.161224 11.872198 -5.051796 7.525273 -0.284686 -7.346231 14.376999 -9.367777 -6.276791 -9.294721 7.722357 1.192056 -0.115513 22.602114 14.029134 -9.979474 -0.234539 -0.160973 5.283459 6.305416 11.434482 -12.817394 -11.453990 4.979748 -3.865833 -1.005598 -1.059368 3.272635 -5.890987 4.307673 -10.435715 -1.539710 9.973045 7.507336 -1.525637 4.661660 -0.696088 -10.218256 -3.538712 12.562883 7.011284 3.308958 -12.777629 -15.346012 6.906092 -17.042892 0.646703 -6.006683 -2.599395 -4.937819 3.453181 0.539887 12.275080 10.046456 -15.218374 11.358262 -21.979211 -15.461257 -11.244210 0.898262 3.467684 -4.223677 4.113509 -5.144596 5.331270 0.458531 6.514860 -0.744388 -9.395695 -0.073994 4.777423 8.919463 -0.520617 -11.667054 16.612868 -1.212556 -2.113539 -3.810415 -1.039062 -3.667990 2.125538 -8.212150 -4.237025 -1.654062 11.300928 -10.331761 10.599674 -0.705455 2.829400 8.386436 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.337444 -0.004493 -0.132116 0.648163 -0.146520 -0.613164 0.332664 0.446837 -0.211783 -0.911119 -0.159868 -0.079853 0.153585 -0.386353 0.054876 0.188317 -0.063048 0.508913 -1.405709 0.367341 0.428731 0.227375 -0.326915 -0.556088 -0.082403 -0.317058 -0.245032 0.587436 -0.098304 0.824490 -0.350541 0.014079 0.604336 0.020675 0.397914 0.791959 0.350341 0.107728 0.181472 0.445880 0.968072 0.676494 -0.616466 -0.136970 0.298768 0.897790 0.330740 -0.125937 -1.084622 -0.337950 -0.218369 0.028886 -0.368935 -0.317827 -0.560527 0.069263 0.961362 1.033022 -0.537011 0.723638 -0.661033 0.043781 0.476480 0.360699 0.940484 0.235388 0.355352 0.589978 1.078654 -0.487838 0.164556 -0.076748 0.281193 -0.643334 0.448268 0.063890 -0.586766 -1.835776 0.119039 -1.559618 -0.251630 0.535561 0.675474 -0.768367 0.425382 0.730406 0.451845 0.698651 -0.847417 -0.332641 -0.692652 -0.126819 -0.312650 1.821291 0.191198 0.131381 0.054130 0.791841 0.467271 0.310749 0.046817 -0.737759 -0.414360 -1.563335 -0.464831 -0.432883 -0.440818 -0.039734 -0.775176 -0.522724 1.300861 0.780293 -1.328446 0.267405 0.437445 0.240127 0.236093 -0.941892 -0.388093 0.661423 -0.574354 -0.064790 0.505420 -0.620051 -0.004958 0.114662 0.290392 0.299429 0.144837 0.145863 -1.081415 0.084982 0.399574 -0.484799 -0.129919 0.290752 -0.045179 -0.590876 0.300619 -1.149089 0.882832 -0.907288 0.555306 -0.143727 -0.800621 -0.115517 0.117101 0.428418 -0.381933 -0.255062 -0.500643 0.190298 -0.923977 -1.738420 0.496331 0.277124 0.232494 -0.289663 -0.254218 -0.254741 -0.399859 0.006311 0.525310 -0.502442 -0.149179 -0.001022 1.267884 0.245954 -0.410194 -0.203962 -0.000416 0.695398 0.613106 0.449745 -0.607302 -0.262038 -0.983753 -0.452244 0.722561 -0.090411 -0.271002 -0.316318 -0.331707 -0.983495 0.703679 -0.509152 0.618667 -0.305428 0.016590 -0.909004 0.102337 -0.189996 -0.155824 -0.102659 -0.515988 0.037870 -0.057455 -0.606921 -0.118392 -0.181574 0.594070 -0.505121 -0.612624 0.283942 0.075941 0.657736 0.348083 0.378895 -0.300891 0.031449 -0.589469 0.756736 -0.090148 0.281168 -0.029683 -0.697128 1.029427 -0.382669 -0.533255 -0.451982 0.486788 0.091967 0.460260 1.553216 0.923862 -0.608172 -0.155002 -0.069710 0.197785 0.487443 0.847526 -0.704777 -0.493926 0.343722 -0.264039 -0.109500 -0.058782 0.285001 -0.329033 0.472391 -0.639753 -0.168428 0.427799 0.646726 -0.038081 0.480209 -0.150673 -0.392235 -0.554107 0.774158 0.233402 0.186876 -0.599672 -0.499003 0.476785 -1.024044 0.213366 -0.312052 -0.056201 -0.343768 0.108261 0.450598 0.758413 1.143785 -0.951978 0.637167 -1.115038 -0.953933 -0.590205 0.177510 0.209543 -0.518768 0.309005 -0.355325 0.307787 0.014175 0.409486 0.188033 -0.400026 -0.337783 0.097712 0.374714 0.169334 -0.948001 0.983472 -0.202355 -0.273686 -0.213288 -0.095270 -0.033618 0.344098 0.061729 -0.335751 -0.307684 0.708504 -0.499873 0.785461 -0.126847 0.134331 0.674339 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.448199 -0.125339 -0.007377 0.501680 0.288297 -0.345386 0.147330 0.254810 -0.010629 -0.920365 -0.401945 0.061499 0.003827 -0.310335 0.197390 0.188439 0.356875 0.428958 -0.716203 0.316033 0.187323 0.100003 -0.324203 -0.210400 0.002225 -0.294751 -0.272558 0.276638 0.071128 0.609199 -0.461767 0.111624 0.494365 0.011926 0.478141 0.621199 0.339726 -0.125314 0.206614 0.080452 1.151294 0.182214 0.028282 0.300062 0.444384 0.720931 -0.120150 0.723494 -0.083973 -0.235485 0.371571 -0.513256 -0.194876 0.065624 -0.841010 0.385102 0.617828 0.423881 -0.674415 0.460495 -0.200095 0.200364 0.289765 -0.114900 0.768791 0.380237 0.112008 0.494901 0.976038 -0.344294 0.007033 0.156359 0.551417 0.009952 0.261044 -0.230156 -0.018444 -1.136091 -0.023292 -0.694840 0.254058 -0.066928 0.984869 -0.642838 0.283366 0.696675 0.105723 0.568139 -0.403633 -0.220003 -0.750638 0.071332 -0.046034 0.817388 0.014563 0.119111 -0.109676 0.326431 -0.016353 0.351985 -0.073734 -0.610092 -0.694540 -1.447578 -0.752689 -0.317839 -0.220707 -0.233168 -0.834599 -0.186310 0.708262 0.588033 -0.992192 0.036850 0.211581 0.096918 -0.105748 -0.036774 -0.513714 -0.066647 -0.250775 0.200524 0.028881 -0.245965 -0.085457 -0.621788 0.037798 0.150939 0.334513 -0.129779 -0.443038 -0.037313 0.060699 -0.029163 -0.242182 0.021732 0.026232 -0.621271 0.350272 -0.472246 0.521167 -0.734796 -0.094834 -0.502298 -0.659560 -0.154626 1.045543 0.225898 0.466272 0.244823 -0.423229 -0.172177 -0.803793 -1.109473 0.280113 -0.294649 0.338749 0.042209 -0.095286 -0.121878 -0.220236 -0.272552 0.190820 -0.562976 -0.223248 -0.267497 0.587957 -0.192711 -0.240982 -0.621858 0.079880 0.848344 0.004281 0.135456 -0.498733 -0.266191 -0.612320 -0.504974 0.528517 -0.216778 0.245435 -0.072651 0.010800 -0.658733 0.335032 -0.507911 0.164168 -0.404825 -0.284218 -0.755512 0.103633 -0.255536 -0.090824 0.027438 -0.528338 0.346693 0.069746 0.177017 -0.054449 0.064855 0.072020 -0.841624 -0.805432 -0.130722 0.088305 0.592544 0.458123 0.220892 -0.300122 -0.253781 -0.531308 0.573382 -0.751388 0.171509 0.315984 -0.508808 0.625148 -0.450818 -0.307460 -0.557970 0.395432 0.099640 -0.673118 0.893323 0.527854 -0.759713 -0.249139 -0.641721 0.348491 0.282984 0.958677 -0.285760 -0.015710 0.374068 -0.043389 -0.122145 -0.434438 0.357317 -0.075289 0.533206 -0.810738 -0.411614 0.431144 0.636053 -0.101201 0.165445 0.085901 0.158271 -0.100163 0.890688 0.214803 0.179336 -0.519919 -1.009251 0.236378 0.176810 0.241936 0.220966 -0.366706 -0.245410 -0.070522 0.076559 0.738147 0.492832 0.144083 0.625823 -0.702292 -0.759484 -0.106133 0.095681 0.219388 -0.511386 0.370859 -0.490309 -0.040565 -0.219594 0.441164 0.074278 -0.257745 -0.654322 0.120907 0.416860 0.272044 -0.361729 0.727116 0.048187 -0.363995 0.068375 -0.045180 0.269840 0.249833 -0.301381 -0.330151 -0.285236 0.234497 -0.460745 0.716819 -0.183624 0.286342 0.323076 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 1.915230 0.463950 -0.564355 2.287853 -0.270152 -2.305452 0.923871 2.014314 -0.844037 -2.696983 -0.751467 0.777593 0.310909 -1.461001 0.089581 0.404521 0.150954 1.347719 -5.540341 1.388927 0.810164 0.427875 -1.824814 -2.371759 -0.148974 -0.235931 -0.462253 2.127771 -0.312691 2.541530 -1.424400 0.020194 1.479068 0.473869 2.190357 2.052661 0.328099 0.029988 0.485583 0.435462 3.334650 2.775818 -2.033137 0.151169 1.438680 2.855961 1.058828 -0.473612 -3.653541 -0.511296 -0.964796 0.551088 -1.457447 -0.771234 -2.166257 0.026613 3.243456 2.725006 -1.719732 2.320695 -1.857901 0.394315 1.649836 1.207610 3.503253 0.612173 1.279814 1.971026 3.423042 -1.518862 0.743647 -0.606586 1.886750 -1.812657 0.660284 -0.099767 -2.020177 -5.197212 0.552683 -6.087208 -0.305021 1.302349 2.599733 -2.279503 1.795864 1.617812 1.403306 2.024159 -3.300988 -1.205930 -2.227230 -0.504380 -1.721935 6.127765 0.134826 0.846841 0.608983 2.530273 1.390568 1.084669 -0.345976 -2.568206 -0.394096 -5.426280 -1.073077 -0.880379 -1.896957 -0.600011 -1.855671 -1.506270 3.531832 2.875536 -3.963617 -0.015258 0.848270 -0.062310 0.090018 -2.572088 -1.251515 2.083757 -2.508497 0.302795 1.699006 -1.956136 0.009704 0.533388 0.183378 1.162959 1.089916 1.347483 -4.112130 0.510095 1.731165 -1.774064 -0.776615 0.793103 -0.709645 -1.642334 0.795297 -3.731531 2.943593 -2.908247 1.484279 -0.940828 -2.462629 -0.042124 -0.681854 1.718844 -1.279757 -0.091027 -0.281090 0.921018 -3.039765 -5.548107 2.178356 1.001714 0.398469 -1.574027 -0.534867 -0.856951 -1.657512 -0.759921 2.289829 -1.988075 -1.186168 -0.999347 5.074010 0.952706 -1.443498 -0.137471 0.424340 2.424217 1.994277 1.459085 -2.343982 -1.623401 -3.309109 -1.207614 2.383748 -0.392973 -1.243071 -0.542601 -0.712822 -2.786352 2.025196 -1.846020 2.412485 -1.270215 0.366034 -2.902908 0.160363 -0.530749 -0.033318 -0.583166 -1.492624 0.455074 0.577292 -1.183959 -1.038153 0.058033 2.363586 -1.486220 -2.057438 1.001607 0.872074 2.418320 1.374843 1.181467 -1.277540 0.194181 -2.038573 2.744583 -0.291682 1.230478 -0.190047 -2.106307 3.272591 -1.290989 -1.718157 -1.174397 1.719175 0.361601 0.770374 5.066328 3.061593 -2.485713 -0.616339 -1.185478 1.036200 1.280733 3.249206 -2.562047 -1.766247 1.111159 -0.673526 -0.563105 -0.504986 0.947112 -0.452818 1.242525 -2.367994 -0.758107 1.691411 1.598377 0.180957 1.421424 -0.851935 -1.445507 -1.643709 3.167416 0.685763 0.898989 -2.362519 -2.174474 1.194701 -2.827508 0.961623 -1.113919 0.069923 -1.809239 -0.414838 1.031803 2.473082 3.380168 -3.506163 2.032026 -3.642635 -2.910959 -2.454919 1.039230 0.674620 -1.842908 1.015723 -1.335107 0.748578 -0.066436 1.702172 0.611319 -1.160151 -1.455074 0.209182 1.106010 0.534803 -3.344822 3.135554 -0.411907 -0.962595 -0.665566 -0.286174 -0.317721 1.147427 -0.631070 -1.232629 -1.220119 2.308425 -1.814198 2.508118 0.553390 1.113739 1.943337 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 1.597252 0.220957 -0.556670 1.999271 -0.432421 -2.383653 1.122034 2.024132 -0.741321 -2.712022 -0.603604 -0.142100 0.515821 -1.589201 0.169136 0.496120 -0.117854 1.512933 -5.142196 1.386575 1.221589 0.666003 -1.741664 -2.114467 -0.289537 -0.750898 -1.134821 2.098156 -0.432488 2.609081 -1.134960 -0.239027 1.778101 0.055612 1.783362 2.599527 0.911178 0.389355 0.999697 1.402335 3.291497 2.820582 -2.313251 -0.341526 1.419466 2.932358 0.889381 -0.323435 -4.641964 -0.888042 -0.816925 0.090011 -1.365886 -0.985072 -1.860805 0.113826 3.805232 3.339825 -1.990589 2.601073 -2.142352 0.131662 1.665676 1.476614 3.213776 0.857760 1.123216 1.876047 3.664996 -1.423443 0.603757 -0.429900 1.266478 -2.284614 1.019704 0.054769 -2.014112 -5.805164 0.780989 -5.703054 -0.697946 1.682506 2.347801 -2.501409 1.805611 2.332825 1.631839 2.085763 -3.176533 -1.474940 -2.125334 -0.587526 -1.548805 6.646519 0.285791 0.776604 0.534680 2.863253 1.668666 1.088170 -0.168640 -2.536733 -1.262618 -5.335664 -1.321453 -1.200369 -1.840161 -0.331909 -2.146997 -2.069278 4.182665 2.331875 -4.226810 0.793232 1.315635 0.408038 0.707830 -2.788685 -1.513059 2.341822 -2.413647 -0.325089 1.637214 -1.968745 -0.152515 0.436718 0.825084 1.188380 0.483233 0.812271 -4.217010 0.752072 1.567688 -1.981620 -0.710630 0.886757 -0.591146 -2.174782 0.908168 -4.035352 2.949615 -3.197790 1.812762 -0.610650 -2.958437 -0.158403 -0.550989 1.425705 -1.576236 -0.660010 -1.142530 0.797997 -3.135358 -5.888768 1.925621 0.993097 0.800868 -1.572419 -0.764597 -1.134505 -1.436556 -0.349049 1.897460 -1.706764 -0.570153 -0.460665 5.531705 0.928206 -1.445554 -0.185391 0.109610 2.503726 2.240920 1.387457 -2.288945 -0.889259 -3.232540 -1.261704 2.367880 -0.134630 -1.094386 -0.791642 -0.969217 -3.450393 2.306813 -1.721158 2.463646 -1.402570 0.503155 -2.871613 0.256447 -0.546426 -0.149547 -0.624143 -1.517765 0.159325 0.200381 -1.746954 -0.727287 -0.470766 2.312826 -1.593416 -2.079572 1.123527 0.688380 2.476661 1.272052 1.284730 -0.570465 0.434526 -2.094888 2.593302 -0.006285 0.931140 -0.132254 -2.314860 3.639547 -1.153692 -2.055052 -1.624185 1.658277 0.249603 2.149053 5.339667 2.989166 -2.171395 -0.565763 -0.474368 0.674897 1.594869 2.918162 -2.326621 -1.839890 1.213400 -1.073302 -0.443584 -0.280201 0.911009 -0.858253 1.854618 -2.223948 -0.501404 1.590916 2.019785 -0.041095 1.818422 -0.972084 -1.522656 -1.941451 2.861601 0.618883 0.667974 -2.128543 -1.589680 1.472322 -3.822657 0.766907 -1.598357 0.220899 -1.501264 -0.084723 1.742883 2.453842 4.278734 -3.471781 2.023626 -3.822894 -3.209872 -2.204945 1.040860 0.785041 -1.877837 0.687510 -1.182320 1.150407 0.041819 1.633286 1.007091 -1.524667 -1.543863 0.142131 1.044521 0.316546 -3.648638 3.277500 -0.835660 -0.752536 -0.702959 -0.327667 0.084686 1.375293 0.202442 -1.281232 -1.402485 2.444869 -1.684111 2.773966 0.048059 0.834784 2.521098 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 1.729634 -1.429656 -0.934378 3.966496 0.538059 0.613071 0.463811 -0.196763 0.786911 -4.775378 -1.753679 3.368601 0.371843 0.478839 -0.153651 0.946627 1.496839 0.762127 -4.900933 -0.113981 0.607470 -0.293201 -0.257018 -0.364463 0.085451 -1.576275 3.625534 1.454883 0.575485 2.958561 -1.091266 1.978561 2.536706 0.201117 1.540992 2.054337 -0.526726 -0.163623 -2.391630 -1.452044 4.099354 1.168920 0.099939 1.875502 -0.226176 3.438922 1.717284 2.701985 3.345370 -1.213911 1.063608 1.504560 -1.249698 -0.926173 -3.637792 0.446721 1.074548 0.520775 -1.401894 1.128567 -0.459337 0.874102 1.110469 0.568596 3.584628 0.422861 2.869450 2.730406 2.680891 -2.638234 0.462870 0.552338 1.183884 0.950329 3.023414 -2.086004 -2.950226 -0.572517 -0.617332 -2.825808 -0.087571 -0.544592 3.109374 -2.214776 -0.800651 -0.317067 0.325826 3.173082 -1.301713 0.285609 -3.348529 0.030874 0.010482 3.792593 0.898288 0.714566 -0.203626 0.806057 -0.383038 1.025542 1.311274 -3.336255 1.123219 -4.862364 -1.634683 -2.530869 1.002094 0.796818 -2.830707 0.808002 -1.191754 2.484690 -4.275156 -0.681197 0.588845 0.696716 2.694640 -1.469761 0.068140 -0.130634 0.613116 1.326809 1.525219 -2.079562 0.791939 -0.345071 0.234928 0.475635 1.373998 0.795458 -2.222698 -1.337503 0.726445 0.963008 0.478021 1.336740 1.703481 -1.017373 1.498505 -1.845942 2.696387 -2.878265 -0.951885 -1.381626 -1.346294 -1.853649 3.344329 1.374546 3.109949 -0.378074 -0.829127 -0.003431 -3.669928 -5.272294 0.527087 0.286824 -0.493270 1.599210 -0.623517 1.393695 -2.792961 0.622031 1.950632 -1.480596 -1.776487 0.055894 -0.566131 0.349146 -0.866057 -0.989947 0.012231 -0.084356 0.856876 3.521253 -0.844890 -6.086232 -4.248889 -1.614574 2.732307 -1.939284 -0.129095 -1.088815 -1.352116 -1.657237 -0.048459 -2.512692 0.240648 -0.234831 -1.771703 -3.703242 1.093630 -0.925614 0.609604 1.390663 -3.045456 0.793664 1.146385 1.138328 0.301507 0.852947 0.135605 -2.676875 -1.657240 0.754786 -1.682305 2.958958 0.714354 -0.358095 -1.784157 -1.668054 -2.162008 1.492754 -2.355081 1.982881 0.428623 -1.689949 1.054698 -2.174723 0.378391 -1.483735 1.132938 0.810314 -4.094541 3.695779 2.755584 -2.325742 -0.346578 -0.435357 1.343457 0.027983 2.179836 -2.728588 -2.075265 0.631627 0.201692 0.071801 -0.674418 0.771549 -0.266734 -0.957155 -3.163068 -1.565695 2.368144 1.260203 -0.323483 -0.262191 1.768825 -1.093676 0.511660 3.227072 1.722213 1.378313 -2.720970 -6.519132 1.128078 0.328963 -0.276729 0.794009 -2.073253 -1.041731 1.106532 -1.247336 2.654517 -0.062818 -1.162559 2.896902 -3.383461 -2.694362 -2.534240 -1.757964 0.710240 -0.240842 1.092522 -1.629943 0.364482 -1.040449 0.689541 -1.677111 -0.938213 1.604407 1.816825 2.388034 0.385519 0.287857 3.038665 1.017697 -1.195297 -0.647493 -0.070346 -2.021633 0.760161 -3.790153 -0.526391 0.645460 1.425865 -2.041331 0.399734 -0.477362 1.165580 -0.128536 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = 3.612615 -2.670693 -1.901378 6.297833 0.872572 1.393737 0.864082 0.166956 1.598218 -8.474848 -3.813761 6.878304 0.693432 0.963488 -0.235330 2.024670 2.756592 1.275055 -7.924889 -0.283609 0.771037 -0.817122 -0.701505 -0.200763 0.001831 -2.803661 5.702950 2.342388 1.108185 5.118383 -1.596030 3.509077 4.479588 0.267869 2.325241 3.722182 -1.085654 -0.912899 -4.021963 -3.250483 7.165096 1.875406 0.494278 3.758177 -0.624799 6.017542 2.157612 6.007593 6.169935 -2.086795 2.945249 1.241386 -2.881477 -1.331893 -6.493015 0.769424 1.090321 0.007898 -2.241132 1.971193 -0.575740 1.526513 1.816504 0.255425 6.187081 1.113843 5.048594 4.740568 4.427658 -4.782279 0.628599 1.614712 1.962609 2.457128 4.670575 -4.011555 -4.191070 -0.325581 -0.743193 -4.584343 -0.446347 -1.882174 6.789026 -3.936536 -1.796293 -0.653010 0.236151 5.501281 -2.055950 0.952635 -5.972379 0.026732 0.839431 5.238042 1.286936 1.244240 -0.743265 0.866773 -1.093995 1.815509 2.004363 -5.701627 0.567024 -7.885715 -2.653971 -4.300393 1.673579 1.563377 -5.102706 1.458330 -2.308949 4.731254 -7.246573 -1.470790 1.251796 0.988102 5.157012 0.148968 -0.559698 -0.679753 1.759240 2.608994 2.536706 -3.220948 1.460473 -1.038906 0.568573 0.528572 2.272233 1.513679 -4.959537 -2.702847 1.786409 1.728800 1.059099 2.332270 3.137794 -1.565543 2.560652 -2.638691 4.436234 -5.381120 -2.449808 -2.561593 -2.358195 -3.343043 7.675592 3.546364 6.528668 0.090841 -1.104422 -0.313545 -6.189488 -8.874654 0.618844 -0.041984 -0.533110 2.677259 -0.830901 2.633037 -4.554216 1.285988 2.527851 -2.577264 -3.057986 0.051667 -1.043046 0.466855 -1.389540 -2.005942 -0.063223 -0.507080 1.001229 5.925945 -1.290458 -11.208649 -7.138683 -2.902372 4.756083 -3.462651 0.053033 -1.669050 -2.302351 -2.579591 -0.882537 -4.211250 0.223165 -0.119303 -3.995427 -6.487896 2.302279 -1.416716 0.413216 2.648471 -5.105531 1.389775 2.540673 2.756437 0.610151 1.857882 -0.516521 -4.735776 -3.092092 0.938652 -3.258209 6.058362 2.358352 -0.817477 -3.502477 -2.991559 -4.102680 3.093109 -5.442605 3.596256 0.624871 -2.562932 1.705981 -4.094342 0.818573 -2.963829 2.364051 1.537543 -9.419808 5.739465 4.929985 -4.077963 -0.655115 -1.308563 2.179449 0.368272 3.852212 -4.227794 -3.451762 1.229444 0.720866 0.103005 -1.293168 1.413873 -0.320783 -1.705361 -5.647304 -2.820447 4.323617 2.065278 -0.560136 -0.584043 3.225915 -1.036344 1.460967 5.606332 3.027106 1.654972 -4.743897 -12.628555 2.136779 2.581505 -1.029833 2.174429 -4.505541 -1.720332 1.866191 -3.704006 4.530591 -1.580662 -1.409092 5.035727 -5.562548 -4.653644 -4.290347 -2.805960 1.207190 0.065318 2.534118 -2.410517 0.523434 -1.630510 0.898015 -2.977271 -1.924001 2.142895 3.301895 4.714128 0.991333 1.120475 5.191305 1.744988 -1.976887 -1.143727 -0.193753 -3.328776 1.257278 -7.603147 -0.888467 1.314757 2.305300 -3.639271 0.531401 -0.257419 1.756234 -0.488986 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = 2.292530 -1.624559 -0.392932 3.846826 0.652368 0.701468 0.853843 0.706537 0.999476 -5.825718 -2.687172 4.054635 0.199382 0.447892 -0.042360 0.865469 1.877672 1.327656 -6.368011 -0.193096 0.903776 0.045916 0.161910 -0.712771 0.183542 -1.668911 3.037677 1.870200 0.831137 3.604386 -1.326888 1.826851 3.116899 0.553163 1.544674 2.751463 -0.462879 -0.724992 -2.157983 -2.176403 5.012600 1.397825 0.032680 2.612933 -0.050387 4.152781 1.601888 3.158638 4.002359 -1.457695 1.511064 -0.279435 -2.154363 -1.075802 -4.209846 0.566499 1.257246 0.895145 -1.633153 1.673024 -0.114761 0.944415 1.213390 -0.505733 3.922550 0.785251 2.919284 3.015337 3.228191 -3.299399 0.333113 0.763907 1.480402 1.472034 2.504030 -2.868106 -2.331368 -2.311317 -0.469262 -4.373239 -0.425266 -1.136661 4.241472 -2.703421 -0.320986 0.246797 -0.169049 3.530469 -1.225103 0.099506 -4.073846 0.057356 0.880410 3.713929 0.731327 0.505028 -0.049534 0.736814 -0.312523 1.423944 1.496708 -3.642540 -0.105770 -6.076602 -1.464350 -2.760930 0.937703 0.810849 -3.190043 0.755375 -0.621775 2.960605 -5.087836 -1.179565 1.054274 0.854945 1.781418 -1.027058 -0.341376 -0.338594 0.575064 1.652085 1.648005 -2.836060 0.721974 -0.454892 -0.077862 0.429409 1.619423 0.886708 -2.985458 -2.110751 1.158378 1.179136 0.454150 1.352406 1.660705 -0.774315 1.671100 -2.339494 3.201162 -3.427458 -0.957548 -1.466724 -1.134570 -2.219384 5.211113 1.916486 3.330896 0.307136 -0.711978 -0.129910 -3.657830 -5.988906 1.069814 0.177897 0.332875 1.557785 -0.660140 1.459874 -2.947794 0.329801 1.148583 -1.729093 -1.888812 -0.115219 -0.699774 0.170668 -0.986389 -1.474116 0.472963 0.775629 0.348782 3.358059 -1.356935 -6.231238 -4.417812 -2.248745 3.320926 -2.258358 -0.171557 -1.025790 -1.189074 -1.660574 -0.037847 -2.862680 0.444226 -0.171890 -2.939977 -4.567307 1.485009 -1.183034 0.665195 2.007166 -3.339857 0.894328 1.123020 2.121355 0.195440 0.995675 0.117106 -3.299298 -2.259782 0.102938 -1.828661 3.673044 1.228649 -0.233880 -2.877341 -1.857387 -2.324277 2.491695 -3.027003 2.342860 0.004033 -1.877335 1.563734 -2.354538 0.686243 -2.197119 1.698106 1.365136 -6.083959 4.084872 3.173106 -2.824374 -0.723624 -1.330884 1.228021 0.548219 2.911427 -2.933513 -2.496117 1.071567 0.007237 0.035694 -1.409607 1.082917 0.019978 -0.623787 -3.969491 -2.013056 2.789876 1.536463 -0.362497 0.423912 2.478101 -0.093272 0.449967 4.085004 1.780936 1.096784 -3.152537 -8.038948 1.673141 3.045827 0.202845 1.365312 -3.092129 -1.443500 1.216558 -1.499583 3.115604 0.449708 -0.922024 3.436786 -3.484115 -3.149672 -2.643532 -1.605273 1.157712 -0.277747 1.542967 -1.521006 0.388786 -0.951489 0.616503 -1.259966 -1.239599 0.533706 2.022945 3.232549 0.970393 0.385991 3.693049 0.841752 -1.729347 -0.401011 -0.391591 -1.760095 0.814045 -4.128772 -0.589097 0.699354 1.574230 -2.464980 0.825567 -0.193729 1.023607 -0.245409 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.724609 -0.521091 -0.227020 1.593209 0.196415 0.417094 0.235184 0.098081 0.085056 -2.375449 -1.264384 1.002978 0.121308 0.243292 0.214291 0.461710 0.626367 0.325260 -2.657410 -0.149469 0.511286 -0.171040 0.196172 -0.058692 0.089482 -0.795539 0.947219 0.670617 0.140426 1.332858 -0.477559 1.026456 1.209817 0.290405 0.518581 0.831327 -0.662054 -0.308535 -0.629218 -0.583267 1.846388 0.429980 -0.039899 0.636064 -0.156960 1.508382 0.434380 1.069171 1.116687 -0.518086 0.717297 -0.178100 -0.680004 -0.117300 -1.577326 0.093484 0.570371 0.348671 -0.375731 0.518529 -0.570689 0.433257 0.406633 -0.326171 1.844598 0.291728 1.549522 1.155902 1.050053 -1.133735 0.275841 0.213755 0.266837 0.278606 0.681109 -0.871969 -0.731668 -0.983546 -0.199039 -1.867156 -0.112385 -0.317749 1.805612 -0.833875 -0.495566 -0.052944 0.049074 1.543461 -0.583240 0.277142 -1.523979 0.115142 0.133992 1.300194 0.379358 0.172444 -0.141409 0.287246 -0.119634 0.413601 0.384468 -1.163132 -0.185819 -2.403251 -0.731274 -0.887540 0.587683 0.341662 -1.471112 0.520153 -0.056156 1.031443 -1.903960 -0.388666 0.303776 0.529351 0.692262 -0.183782 -0.519815 -0.359551 0.262020 0.894468 0.776945 -0.914649 0.535471 -0.747638 0.150667 0.152737 0.697146 0.272899 -1.107909 -0.777101 0.382493 0.110968 0.268778 0.687665 0.868961 0.051375 0.689870 -0.807116 1.206296 -1.547281 -0.133321 -0.737252 -0.627268 -0.729930 1.952394 1.351062 1.019404 0.207765 -0.343016 0.061510 -1.642820 -2.111296 0.028829 0.136931 0.183197 0.470691 -0.274074 0.659149 -1.083083 0.380852 0.567310 -0.654832 -0.713285 -0.150085 -0.018157 0.258864 -0.483212 -0.590144 0.046918 0.215914 -0.253020 1.433410 -0.292047 -2.106039 -1.903383 -0.879817 1.196901 -0.863761 -0.033032 -0.647561 -0.232141 -0.874065 0.104119 -0.976107 -0.093413 0.180787 -1.164549 -1.698605 0.412938 -0.298066 -0.077055 0.611403 -1.238703 0.251317 0.890342 0.763204 0.316280 0.393944 -0.110767 -1.000905 -0.903056 0.033252 -0.844093 1.287766 0.646413 -0.304325 -1.173924 -0.715676 -1.013144 1.033707 -0.629692 0.826927 -0.171742 -0.800401 0.374845 -0.977470 0.252254 -0.659825 0.420726 0.218088 -2.807779 1.550754 1.197445 -1.024983 -0.279441 -0.785849 0.685002 -0.006896 1.002593 -0.963203 -0.559913 0.092674 0.127903 0.018249 -0.365156 0.482897 -0.159483 -0.598879 -1.441279 -0.804303 1.206711 0.565589 -0.151103 0.176772 0.916903 0.133725 0.535705 1.327702 0.650609 0.019001 -0.964754 -3.208969 0.398171 1.067426 -0.141459 0.464842 -0.992317 -0.618049 0.257590 -0.707588 1.227209 0.304626 -0.435237 1.251154 -1.030012 -1.069701 -1.182882 -0.477381 0.192363 -0.205726 0.460549 -0.568636 0.068046 -0.174796 0.246367 -0.348760 -0.821624 -0.031092 0.634604 1.330365 0.305650 0.155990 1.295818 0.524245 -0.544157 -0.417774 -0.043383 -0.817346 0.544331 -1.498454 -0.302955 0.308418 0.460176 -0.882921 0.119080 -0.042551 0.438009 -0.002810 -PE-benchmarks/m-coloring-problem.cpp__main = 0.729349 -0.455912 0.130242 1.188359 0.278009 0.044349 0.467706 0.452078 0.275297 -2.024652 -0.941601 0.797642 0.031557 0.019862 0.118125 0.134985 0.595974 0.688287 -2.035716 -0.028163 0.434370 0.217335 0.084471 -0.356752 0.012575 -0.542513 0.339409 0.735958 0.290189 1.352492 -0.510343 0.324611 1.124285 0.174345 0.381103 1.152390 0.415314 -0.126809 -0.431010 -0.475214 1.844469 0.453800 -0.140815 0.856311 0.147350 1.495670 0.354068 1.155759 0.777143 -0.586947 0.540701 -0.764376 -0.723056 -0.391213 -1.362028 0.381550 0.959585 0.839863 -0.713563 0.845818 -0.157745 0.296035 0.456798 -0.362077 1.150231 0.597188 0.631439 0.967951 1.408863 -1.241301 -0.014001 0.311053 0.565589 0.336802 0.563810 -0.900192 -0.522695 -1.708013 -0.085148 -1.632597 -0.183723 -0.283184 1.581950 -1.084998 0.170924 0.719750 -0.107756 1.057678 -0.521666 -0.074512 -1.420726 0.043195 0.276017 1.504335 0.244746 0.056491 0.013478 0.371390 0.145140 0.643141 0.419292 -1.112086 -0.685940 -2.388968 -0.714900 -0.826419 0.117136 0.144307 -1.152776 -0.091945 0.557618 0.907310 -1.870068 -0.297442 0.556912 0.522766 0.200241 -0.319636 -0.410417 -0.008976 0.046135 0.311190 0.597199 -1.076552 0.150372 -0.324635 -0.074911 0.165736 0.484915 0.102191 -0.958575 -0.668254 0.240454 0.235098 0.031867 0.236842 0.315161 -0.471608 0.642186 -1.001807 1.168099 -1.302153 -0.142210 -0.399385 -0.689032 -0.649303 2.022742 0.476222 0.950305 0.174741 -0.596476 -0.211919 -1.127882 -2.146443 0.525441 0.131164 0.534649 0.396759 -0.287782 0.275580 -0.880721 -0.080226 0.227864 -0.622315 -0.478077 0.027482 0.259517 -0.131534 -0.397472 -0.858219 0.354551 0.802048 0.024552 0.830344 -0.663593 -1.416451 -1.312384 -0.910524 1.191623 -0.642054 -0.005885 -0.256997 -0.310480 -0.875563 0.279135 -0.957786 0.275686 -0.102752 -1.118338 -1.660068 0.554838 -0.479993 0.072248 0.764213 -1.118413 0.276497 0.164159 0.675777 0.057901 0.224174 0.219523 -1.358306 -1.091546 -0.252015 -0.439182 1.253246 0.476690 0.157255 -0.854297 -0.585898 -0.785249 1.043274 -1.021711 0.609672 -0.062049 -0.633313 0.844840 -0.753505 -0.001773 -1.075886 0.659517 0.628817 -1.674800 1.582023 1.092305 -0.991196 -0.435257 -0.624651 0.304222 0.428489 1.329673 -1.009124 -0.837492 0.610086 -0.168773 -0.041050 -0.688482 0.459870 -0.016024 0.152943 -1.396317 -0.696839 0.817037 0.802609 -0.170278 0.430953 0.915899 0.229697 -0.039724 1.551535 0.532344 0.186920 -0.994901 -2.434510 0.771948 1.036119 0.229902 0.405248 -1.111467 -0.513167 0.491638 -0.041503 1.136503 0.824479 -0.126645 1.282868 -1.162116 -1.199761 -0.595811 -0.341758 0.560193 -0.461305 0.519557 -0.605522 0.231999 -0.228837 0.209316 -0.090430 -0.457736 -0.421373 0.447360 1.109969 0.315260 -0.071021 1.444337 0.096806 -0.731673 0.033842 -0.189568 -0.180665 0.315444 -0.891937 -0.209152 0.032505 0.585630 -0.841405 0.673998 -0.180219 0.103853 0.272797 -PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 2.938467 -2.015282 -22.705770 44.441360 -5.870703 9.969942 1.943493 -9.486348 -1.676224 -53.416608 -16.591357 22.080975 12.831494 13.494489 -0.829964 15.168331 2.050261 8.696117 -38.079401 -7.116476 16.381648 4.676945 4.398579 3.272112 -2.364593 -9.962976 28.478590 -1.931049 4.580641 29.568866 -0.209969 37.792312 27.333149 -8.463667 -2.571813 12.763133 -10.171400 5.577722 -21.677150 -6.584787 27.534648 -1.867740 7.875761 11.981758 -21.636594 26.624078 8.586254 17.923596 1.226357 -15.433742 13.575890 29.572990 -1.557376 -9.666212 -20.953849 3.420333 15.078703 19.515340 -0.464779 4.956939 -4.228336 1.832720 11.989211 8.181677 33.844759 19.807900 30.978316 40.063724 20.629210 -20.208343 11.872042 -1.572438 -19.417563 -8.727830 39.545935 -21.745385 -22.218889 12.056232 -15.336412 -32.615309 -5.035810 0.258696 44.450718 -19.842124 -14.978374 -13.278511 16.851640 35.132625 -6.425748 16.356254 -24.495019 -7.438583 -6.076061 34.092215 6.618334 4.992278 -17.172094 6.533401 -6.997084 -2.005546 9.785497 -23.113866 14.624056 -20.963314 -21.170864 -17.832840 13.865136 26.994775 -38.191115 3.701253 -31.481241 13.667858 -58.674600 -4.197707 -0.147327 19.880292 51.322355 1.342605 -21.720725 -1.426790 12.704376 5.770881 11.814874 -9.941457 17.922662 -11.758331 -7.462507 1.465791 4.627962 8.416269 -41.062747 -17.167217 -5.917525 -4.909879 13.106283 23.442315 34.047988 -0.579224 12.689318 -19.998079 20.825096 -36.219929 -18.445910 -5.651773 -32.034100 -17.867199 14.756341 16.383901 24.904114 -18.937463 -24.866891 -0.611505 -41.533041 -36.088790 -6.039302 4.695792 -6.633721 28.616029 -9.123073 15.527228 -26.916295 26.440056 31.694106 -4.926177 -14.986190 4.760250 8.882668 7.237171 -7.046382 -8.622265 -7.377649 -25.380741 8.246697 48.852299 3.807939 -38.077725 -66.235171 -6.056252 24.317500 -14.907894 -0.540442 -20.427742 -13.008295 -23.005871 -7.932327 -24.058377 -7.854933 8.573989 -14.509443 -33.268468 17.355634 -1.345586 -17.038767 12.315711 -24.624192 2.655479 26.204864 10.790014 7.822377 -1.524092 -4.905897 -17.586537 -13.584214 14.657928 -27.458555 17.219937 14.615540 -2.586283 -15.886812 -15.466814 -21.666587 8.648852 -3.784274 18.791171 4.497202 1.724451 3.242450 -33.611677 8.725516 -18.649953 -0.455158 2.600834 -49.298010 31.849041 6.567886 -7.981528 6.963331 6.455527 16.256193 -7.131273 -3.130518 -16.951232 -21.592885 3.933653 6.711348 2.811414 -13.175277 -0.545900 -15.076637 -17.553968 -19.008391 -5.404654 27.138048 6.072280 -6.892037 -4.363540 18.276203 -31.018022 6.004304 18.038682 31.113742 -0.493642 -11.169686 -41.207151 7.332833 -35.234515 -12.062486 -14.880153 -16.410420 -1.078912 22.969788 -14.669591 19.305522 -12.461475 -18.561375 23.353329 -45.174686 -22.251966 -21.828840 -9.344390 8.021685 5.523916 -9.665200 -11.593507 10.077678 6.509146 1.458600 -12.907478 -29.039865 23.822647 15.921438 34.485692 -14.947361 10.459287 26.218540 14.002434 -1.161421 -6.923698 6.681085 -23.337039 -4.214934 -46.573002 0.002844 17.570930 13.414522 -20.258556 -0.999574 -18.070782 -2.971226 3.131887 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 1.165896 -0.204917 -4.209558 9.580539 -1.164942 1.587070 0.978000 -0.974987 -0.335784 -12.272265 -4.039734 4.178408 2.608529 2.436257 0.150355 2.940438 0.588971 2.668847 -9.726064 -1.276106 4.134153 1.602525 1.133260 -0.001573 -0.362932 -2.193921 4.562192 -0.001939 1.138243 7.233912 -0.607057 7.542944 6.422411 -1.530122 -0.366957 3.586133 -1.501855 1.261086 -3.820159 -1.323080 6.900000 0.300576 1.163697 2.819778 -4.117633 6.509917 1.411017 4.256041 -0.542096 -3.761024 2.913393 4.511336 -0.874262 -1.919405 -4.756094 1.199652 4.554769 5.476647 -0.613115 2.001790 -1.334020 0.628285 2.858635 1.023227 7.450853 5.053654 6.022288 8.727804 5.619938 -4.857957 2.562006 -0.504882 -3.722465 -2.314067 7.961931 -4.771996 -4.534511 -0.168238 -3.002412 -8.556526 -1.252067 0.172604 10.379452 -5.166336 -2.075919 -1.355169 3.748519 7.821004 -1.921008 3.049849 -5.839290 -1.429501 -1.441083 8.665544 1.394166 1.107537 -3.505096 1.851324 -0.894200 -0.005420 2.018644 -5.124110 1.677603 -6.323130 -4.808002 -3.950065 2.598770 5.580582 -8.695553 0.302473 -4.718762 3.410637 -13.641007 -0.854117 0.488506 4.695936 9.567382 0.254932 -5.103938 -0.031407 1.952772 1.001563 2.715012 -3.152450 3.552098 -2.881567 -2.044153 0.567223 1.257008 1.562998 -9.163288 -3.713820 -1.188942 -1.542219 2.485284 5.022535 6.871521 -0.584150 3.097263 -5.384054 5.084121 -8.292565 -3.476803 -1.217532 -7.496829 -3.916285 4.255170 3.563038 4.773484 -3.712760 -5.693296 -0.540927 -9.183250 -8.737357 -0.566103 1.136413 -0.211041 5.743005 -2.109011 2.823560 -6.073027 5.128089 6.230906 -1.518307 -3.110082 0.910350 3.441136 1.167411 -1.849058 -2.696516 -1.124681 -3.846859 1.324300 9.941527 0.062820 -7.176855 -14.384698 -2.007835 5.940857 -3.230839 -0.085256 -4.524049 -2.389907 -5.479301 -1.060611 -5.494602 -1.118489 1.690895 -3.473724 -8.059462 3.845398 -0.617314 -3.602102 2.910177 -5.620881 0.633807 5.492598 2.499630 1.503508 -0.356823 -0.383052 -4.591655 -3.788760 2.556012 -5.648373 3.895358 3.469800 -0.163775 -3.672333 -3.381847 -4.922027 2.830157 -1.079865 4.044711 0.466523 -0.046675 1.826170 -7.184119 1.242791 -5.064285 0.331187 0.950718 -10.227498 7.789484 1.730562 -2.301443 1.061450 0.408712 3.559657 -0.750993 0.658921 -4.095413 -5.019337 1.400639 0.623523 0.481107 -3.350476 0.354850 -3.389495 -2.866118 -4.641576 -1.271039 6.102544 2.052782 -1.603432 0.083691 4.408728 -5.961554 1.345801 4.700067 6.668531 -0.451838 -2.963261 -9.417103 2.205125 -6.586424 -1.768995 -3.423201 -3.930455 -0.773360 5.035551 -1.931925 4.796839 -0.556537 -3.725611 5.644975 -10.080814 -5.546330 -4.494956 -1.473229 2.205369 0.262786 -2.093275 -2.697317 2.475064 1.677503 0.697582 -1.754515 -6.641226 3.402602 3.191820 7.877130 -2.924839 1.474128 6.620884 2.775986 -0.882297 -1.105849 1.021068 -4.268675 -0.946181 -9.024373 -0.088560 3.337211 3.173219 -4.846090 1.028952 -3.789634 -0.916684 1.372607 -PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 3.581152 -3.387284 -0.825107 4.540271 0.330672 0.958055 0.865259 1.172669 1.114883 -7.350124 -3.587788 3.081744 0.406487 0.490520 0.803139 1.894481 2.430633 0.000839 -8.558212 0.006923 1.081939 -0.783556 -0.599311 0.437404 0.238316 -2.573930 2.201903 1.799410 0.253309 4.011693 -1.550977 2.845011 3.548554 -0.050438 1.963115 2.757347 -1.633842 -0.899071 -1.405381 -1.209532 6.194872 1.866803 -0.633301 2.056705 -0.003645 4.812397 0.210257 6.886746 4.003378 -1.566174 4.284799 -2.273593 -2.534812 0.188827 -5.128089 0.366886 3.097120 1.021257 -1.750936 2.088196 -2.266713 1.612264 1.305176 0.090102 5.964890 1.902193 4.917236 3.545394 3.641541 -3.364101 0.892100 0.923917 1.403363 1.376016 2.050766 -4.234797 -1.979428 -4.592400 0.385147 -4.624814 -0.118166 -1.744853 5.612522 -3.005344 -1.129824 0.425147 -0.005822 4.443408 -2.426953 1.210987 -4.808015 0.380595 1.197230 4.953161 -0.222982 1.039209 -0.229780 1.224264 -0.486441 1.335997 1.524659 -3.929399 -1.935483 -7.438052 -2.879681 -2.600881 1.134818 0.926007 -4.941692 1.609955 0.338536 1.324625 -5.774628 -0.722543 0.752360 1.415743 4.359746 2.460895 -1.800954 -1.533703 0.684083 3.009859 2.301556 -2.435886 1.761407 -4.037977 1.144999 1.565904 2.035992 0.639698 -4.444344 -1.253071 1.485218 0.535904 0.221184 2.191347 2.343298 -0.974796 2.375131 -2.671439 3.776329 -5.662429 -1.780157 -3.017527 -2.204740 -1.791850 8.199487 4.274123 3.872663 1.474879 -1.772477 -0.056329 -5.445465 -6.877563 -0.605285 -0.084536 0.864099 1.060406 -0.643951 1.534277 -2.925487 0.910969 0.584998 -2.296979 -2.008856 -1.101956 -0.324493 0.563978 -1.565580 -1.780864 0.427151 1.583798 -1.009713 4.440391 -0.931753 -8.144644 -6.020632 -2.580892 3.710161 -2.300135 0.476359 -1.327466 -0.504469 -3.664156 0.304348 -3.012667 0.041924 -0.027649 -4.100583 -5.219545 1.744118 -0.935632 0.950154 1.506633 -3.705947 0.738186 1.953212 4.264036 1.107124 1.756375 -0.357037 -4.815175 -4.002117 -0.302564 -2.305639 6.093657 1.524262 -1.269321 -1.624901 -2.088528 -3.798106 3.365142 -3.926197 2.264743 -0.025998 -2.864300 1.473273 -2.889818 0.034199 -3.415786 1.693375 0.752537 -7.241809 5.937770 3.965620 -3.759389 -1.142753 -3.104430 2.499731 0.219586 3.647346 -2.567265 -1.764333 0.545948 0.600339 -0.113854 -1.285882 1.787559 -0.537909 -1.253806 -4.764966 -2.487534 3.919621 1.961745 -0.501894 0.080787 2.449262 0.246552 0.726046 4.664678 1.837263 -0.004859 -3.269914 -11.379861 1.389014 4.568551 -0.927418 1.449296 -4.558074 -2.087892 0.354044 -1.468917 3.836018 2.093111 0.024493 3.905155 -3.934376 -3.657045 -3.656524 -1.297374 0.224643 -0.732037 1.230340 -1.906042 0.265537 -0.428269 1.396248 -0.923688 -2.454552 -1.010967 1.725679 3.855857 0.789003 -0.199248 4.080435 1.514036 -1.441482 -1.393834 0.185987 -2.155862 2.145376 -3.820690 -0.803624 0.242696 1.557949 -2.989408 0.856355 0.634181 1.761943 -0.062101 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 1.072672 -0.991420 0.098438 1.413440 0.270924 0.123113 0.487799 0.578790 0.392136 -2.482649 -1.156071 0.578440 0.060165 0.050147 0.325501 0.354335 0.792495 0.403751 -2.685017 0.023066 0.486224 0.054707 -0.035543 -0.117404 0.046882 -0.795406 0.262539 0.783918 0.200700 1.513708 -0.624551 0.547517 1.291342 0.043077 0.530723 1.231267 0.237225 -0.187106 -0.340871 -0.276862 2.259784 0.581420 -0.315840 0.796117 0.186844 1.740035 0.127149 2.100231 0.979959 -0.650890 1.206132 -1.306473 -0.840985 -0.158879 -1.693676 0.388103 1.456306 0.935007 -0.836715 0.971637 -0.585864 0.467248 0.503820 -0.227429 1.664057 0.836655 1.127958 1.127743 1.599987 -1.349827 0.087228 0.382682 0.636662 0.397062 0.538292 -1.342495 -0.478038 -2.430336 0.120865 -1.707908 -0.113898 -0.471061 1.815808 -1.217706 0.032704 0.840659 -0.145466 1.323447 -0.799998 0.167947 -1.702619 0.125642 0.447436 1.878494 0.012046 0.147992 0.031576 0.515803 0.094625 0.691132 0.552926 -1.278765 -1.113664 -2.846945 -1.089361 -0.861357 0.189728 0.159180 -1.602226 0.131252 0.770442 0.502528 -2.106162 -0.205226 0.514088 0.689355 0.804141 0.316455 -0.658424 -0.314519 0.084434 0.649676 0.755812 -1.100226 0.389559 -1.159623 0.235038 0.479852 0.618513 0.019974 -1.202615 -0.516327 0.320581 0.213502 -0.041836 0.407337 0.478476 -0.607472 0.846853 -1.126752 1.378179 -1.838745 -0.354249 -0.780897 -0.868943 -0.609660 2.889820 0.900721 1.137763 0.486268 -0.924701 -0.191159 -1.557856 -2.498586 0.171612 0.084071 0.668000 0.360231 -0.311303 0.336118 -0.904859 0.006542 0.054703 -0.799129 -0.557491 -0.187737 0.142889 -0.072089 -0.525283 -0.966225 0.409667 1.099181 -0.281013 1.131854 -0.611268 -1.955808 -1.701564 -1.062320 1.349014 -0.704729 0.158882 -0.311849 -0.176166 -1.405287 0.405858 -1.067446 0.199556 -0.113510 -1.478684 -1.904841 0.656039 -0.496386 0.264106 0.735929 -1.297295 0.286061 0.215914 1.259972 0.258772 0.408270 0.127226 -1.874523 -1.588352 -0.391779 -0.552830 1.935213 0.422020 -0.077611 -0.565968 -0.704971 -1.097436 1.289506 -1.340826 0.626078 -0.039076 -0.928915 0.856268 -0.890839 -0.145186 -1.439848 0.716758 0.567510 -1.863731 2.133057 1.338342 -1.280336 -0.570265 -1.057359 0.606036 0.376145 1.598914 -0.983783 -0.737739 0.541054 -0.004980 -0.081351 -0.745099 0.649010 -0.105362 0.033423 -1.692246 -0.894707 1.076516 0.964992 -0.208000 0.370512 1.003434 0.338833 -0.073755 1.827707 0.547842 0.031737 -1.091042 -3.317525 0.758210 1.548119 0.030284 0.477470 -1.578988 -0.674937 0.327361 0.065970 1.380661 1.360377 0.174600 1.482649 -1.343009 -1.390126 -0.845877 -0.345857 0.378527 -0.572003 0.472793 -0.760128 0.205045 -0.182449 0.391430 -0.063989 -0.689178 -0.766627 0.419786 1.270381 0.303636 -0.193630 1.615812 0.271743 -0.735112 -0.167942 -0.058989 -0.299786 0.653685 -0.782550 -0.265854 -0.059726 0.598968 -1.001563 0.701334 -0.032457 0.292213 0.257269 -PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 3.587792 -0.584266 -2.829788 8.250439 0.554386 0.612677 1.048914 0.648802 0.502884 -9.728009 -3.642863 6.234963 1.221179 0.898217 0.766964 2.648447 2.174255 2.795602 -9.395876 -0.405555 1.344043 0.086813 -0.657874 -2.343590 0.133570 -1.219661 4.783506 2.703935 1.322758 6.509391 -2.315978 4.569700 5.245998 0.692981 2.780064 2.768096 -0.243737 0.012374 -4.974137 -2.957227 8.608149 1.696231 0.509881 4.387388 -1.099391 7.332369 2.060161 5.329391 3.985837 -2.037478 3.201474 1.969925 -2.317152 -1.376008 -6.885478 1.555632 3.174576 2.034424 -2.548110 3.233264 -0.053873 2.056674 2.805023 -0.368078 7.795289 3.088375 5.284752 6.521779 6.043017 -5.185500 1.486505 -0.854637 1.755855 -0.275603 4.574123 -5.828330 -4.005757 -3.692262 -0.993012 -7.618747 0.294343 -1.089275 7.906015 -5.702258 -0.598655 0.421917 1.503476 6.526345 -3.435694 1.041529 -6.573086 -0.827339 -0.626084 8.488811 1.443821 1.163830 -0.972982 1.702142 -0.171387 1.564591 2.267907 -5.675342 1.042068 -8.930246 -4.771451 -2.772235 1.367504 1.675990 -5.409776 0.511016 -0.980552 3.851708 -10.192531 -2.552380 1.715313 2.124721 4.213564 -1.216419 -1.770838 0.619855 0.639118 2.809332 2.600852 -4.352994 2.145583 -1.277708 -1.962134 0.885857 3.668056 1.939292 -6.308574 -3.031087 0.765253 0.528724 1.135091 2.318367 2.733227 -1.823381 3.374079 -4.293724 5.779616 -6.800246 -2.647815 -2.458063 -3.748380 -3.503662 6.271770 2.272365 5.612033 0.051031 -2.513618 -0.240684 -7.638699 -10.433226 2.041995 1.334876 -0.319016 3.402460 -1.567572 2.176995 -5.768801 1.246626 5.641823 -3.818411 -4.969189 -0.932634 1.909997 0.515201 -2.733121 -3.046858 0.894802 0.735363 1.506429 6.573005 -1.548395 -9.074751 -8.869354 -3.102568 6.054859 -3.601628 0.131807 -2.309367 -1.619347 -4.882154 -0.510702 -6.326776 1.725267 0.814740 -4.101206 -7.880942 3.307364 -1.374000 0.231660 2.755537 -6.027834 2.117688 2.219571 2.709645 -0.713327 1.733368 1.246410 -5.881205 -5.148998 0.890762 -3.256068 4.689194 2.096820 1.091390 -4.492253 -2.874372 -4.283440 3.614982 -4.757305 4.196218 0.318701 -1.832015 2.454381 -5.656391 -0.214911 -4.111916 2.101002 1.538107 -8.371416 7.147031 4.109663 -4.615795 -0.721048 -2.230276 3.535247 0.089371 5.591042 -5.417767 -4.709147 1.612692 1.013793 -0.179721 -2.643343 1.768493 -0.854563 -2.088457 -6.508747 -2.661546 5.277609 3.262944 -0.622734 1.196844 4.167045 -2.409267 -0.459045 6.978719 3.935327 1.462375 -4.116049 -11.687685 1.653202 1.240776 0.019510 0.565985 -4.800220 -1.931935 2.200130 -1.489570 5.509274 0.510449 -2.158055 6.042965 -7.140081 -5.943823 -4.774323 -1.432221 1.941403 -1.514124 0.754681 -2.647884 1.015051 -0.244918 1.410750 -1.907031 -3.114783 1.247787 2.445371 6.217903 -0.885081 0.159940 7.122761 2.266701 -2.434284 -0.569647 -0.846875 -3.311245 1.673642 -8.056841 -1.061536 1.446301 2.739082 -4.983461 1.356255 -1.377817 0.684951 0.534023 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.243040 -0.147947 0.215924 0.345309 0.211396 -0.126945 0.201212 0.222704 -0.165839 -0.695746 -0.381443 -0.217387 -0.065902 -0.149643 0.222156 -0.023025 0.297619 0.121896 -0.766266 0.076506 0.156703 -0.052161 -0.169998 -0.047356 -0.034852 -0.342602 -0.243059 0.521664 -0.043734 0.449891 -0.234744 0.040906 0.350013 0.129776 0.367809 0.512598 0.230037 -0.062644 0.139025 0.139813 0.871636 0.127441 -0.152366 0.105572 0.366606 0.589018 -0.054705 0.345124 -0.181651 -0.169149 0.343578 -0.521842 -0.166243 -0.065870 -0.624423 0.078130 0.588646 0.406994 -0.482106 0.440687 -0.377366 0.104954 0.145822 -0.040349 0.595993 0.189636 0.232560 0.263171 0.576342 -0.407348 -0.114806 0.230182 0.288378 0.006049 -0.257589 -0.101874 0.040946 -1.231558 0.119023 -0.692528 -0.073361 -0.002368 0.529519 -0.271452 0.030726 0.516444 -0.135949 0.300955 -0.369079 -0.147755 -0.588997 -0.000467 0.074073 0.588377 0.055877 -0.007575 0.211361 0.257044 0.181593 0.432807 -0.109229 -0.401164 -0.631021 -1.180360 -0.472051 -0.184535 -0.036821 -0.213692 -0.429323 -0.198352 0.741805 0.246585 -0.533087 -0.012807 0.228409 0.219023 -0.287436 -0.097999 -0.438748 -0.085601 -0.100920 0.161980 0.355289 -0.183581 0.088840 -0.473266 0.197826 0.095744 0.239490 -0.060256 -0.337593 -0.092712 0.180519 -0.144114 -0.183447 -0.085467 -0.095034 -0.172968 0.272651 -0.418506 0.544896 -0.606379 0.226379 -0.380116 -0.395413 -0.057491 0.681111 0.426930 0.128310 0.278158 -0.338571 0.080610 -0.457606 -0.929950 0.160272 0.060609 0.372795 -0.155363 -0.143561 0.013862 -0.190147 -0.169890 0.090790 -0.298896 -0.127783 -0.172822 0.310120 0.046651 -0.253539 -0.340010 0.248883 0.588456 -0.114961 0.178336 -0.401822 -0.165961 -0.363665 -0.427573 0.377190 -0.137248 -0.035450 0.035503 -0.052563 -0.630090 0.385318 -0.335588 0.142804 -0.266053 -0.374507 -0.542777 0.127395 -0.200318 -0.045147 0.122764 -0.339607 0.071892 0.079329 0.087462 0.093489 0.071814 0.105201 -0.398189 -0.563498 -0.152782 0.065403 0.458275 0.324426 0.101885 -0.151590 -0.152065 -0.345305 0.511979 -0.166061 0.098423 0.111514 -0.527233 0.442291 -0.221445 -0.215610 -0.260642 0.284219 0.221327 -0.437491 0.691986 0.519252 -0.529470 -0.388265 -0.461296 0.092065 0.215397 0.704751 -0.224955 -0.000172 0.222575 0.024073 -0.053631 -0.183742 0.251813 0.094295 0.232745 -0.662727 -0.427860 0.345198 0.466754 -0.018030 0.262819 0.118691 0.317034 -0.084485 0.708322 0.025708 0.022513 -0.232268 -0.765153 0.281598 0.271133 0.066575 0.138405 -0.281608 -0.330954 -0.116661 0.089633 0.505488 0.637558 -0.138823 0.506602 -0.234450 -0.503331 -0.309365 0.032732 0.103076 -0.456969 0.219717 -0.287088 0.074960 -0.135202 0.177693 0.201721 -0.171114 -0.640416 -0.046164 0.221579 0.187277 -0.240120 0.551376 -0.060952 -0.279268 -0.107204 0.051503 0.147000 0.485097 -0.159707 -0.330027 -0.302416 0.229528 -0.229103 0.310085 0.012789 0.200114 0.385767 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.178363 -0.110487 -0.032204 0.455718 0.037100 -0.220131 0.155957 0.161863 -0.104517 -0.688035 -0.240123 -0.177386 0.058879 -0.146292 0.156952 0.132249 0.078659 0.258547 -0.785627 0.167676 0.262740 0.041934 -0.100185 -0.172682 -0.030484 -0.288108 -0.151362 0.347073 -0.026369 0.519489 -0.260886 0.154275 0.411148 0.057673 0.270768 0.461006 0.180727 -0.019441 0.064094 0.231619 0.706700 0.240218 -0.262008 -0.051090 0.148249 0.583952 0.098897 0.134580 -0.361283 -0.215904 0.108603 -0.234662 -0.152744 -0.086437 -0.486523 0.104515 0.520350 0.515037 -0.358224 0.363865 -0.410004 0.094126 0.241691 0.057619 0.650594 0.149311 0.281980 0.386453 0.618058 -0.349523 0.065334 0.040557 0.167324 -0.249736 0.162742 -0.003807 -0.180841 -1.175662 0.036678 -0.759588 -0.094893 0.186624 0.429168 -0.439580 0.113375 0.461444 0.129383 0.493091 -0.439400 -0.072722 -0.542773 -0.030022 -0.021847 0.801227 0.139041 0.007491 0.001493 0.376371 0.160215 0.232352 0.025923 -0.452049 -0.425411 -1.041511 -0.446416 -0.256359 -0.113983 -0.039838 -0.596746 -0.179236 0.734867 0.428153 -0.773842 0.114326 0.221983 0.225867 0.029745 -0.405810 -0.311847 0.168257 -0.185609 0.108113 0.308113 -0.303252 0.077624 -0.262995 0.207655 0.151474 0.180248 -0.001810 -0.410994 -0.042947 0.197255 -0.177327 -0.071492 0.143034 0.075351 -0.287613 0.244156 -0.537501 0.536981 -0.573085 0.251661 -0.236162 -0.442462 -0.106748 0.485389 0.356071 -0.019775 0.029415 -0.405702 0.093832 -0.593872 -1.028392 0.164792 0.085293 0.199042 -0.052956 -0.160896 -0.010842 -0.216089 0.031162 0.240564 -0.355039 -0.166634 -0.032784 0.407518 0.102938 -0.243756 -0.271950 0.036131 0.466575 0.106140 0.318978 -0.317424 -0.132731 -0.584099 -0.369902 0.444822 -0.143526 -0.035071 -0.188441 -0.109688 -0.660835 0.396110 -0.347673 0.197596 -0.155509 -0.183946 -0.595693 0.076153 -0.147263 -0.107085 0.040879 -0.386816 0.095168 0.013046 -0.175346 0.025192 -0.027140 0.189335 -0.369361 -0.472615 0.038229 -0.040293 0.439559 0.234609 0.138536 -0.221105 -0.131634 -0.354269 0.511355 -0.183265 0.182458 0.046387 -0.451801 0.491526 -0.304200 -0.313581 -0.266777 0.287543 0.085780 -0.084114 0.810615 0.535905 -0.436867 -0.145376 -0.252449 0.196885 0.231797 0.599429 -0.330255 -0.123137 0.170121 -0.002966 -0.061374 -0.122532 0.218985 -0.160908 0.184267 -0.487850 -0.233227 0.299815 0.435311 -0.026597 0.235453 0.054259 0.000587 -0.201718 0.522729 0.150581 0.054085 -0.314564 -0.523271 0.254021 -0.199099 0.096830 0.003360 -0.215959 -0.180102 0.007734 0.140148 0.525927 0.636277 -0.317293 0.470896 -0.535509 -0.558208 -0.343023 0.052546 0.074724 -0.336247 0.238102 -0.266230 0.108999 -0.036420 0.221349 0.075440 -0.253584 -0.336963 0.074419 0.287143 0.126265 -0.370200 0.582134 -0.001674 -0.230767 -0.142700 -0.006668 -0.048100 0.265773 -0.075084 -0.247279 -0.128037 0.318295 -0.316164 0.365492 -0.129437 0.088497 0.315421 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.238471 -0.121010 -0.022331 0.362141 0.107552 -0.289054 0.110900 0.160585 -0.069783 -0.591989 -0.228487 -0.104835 0.012376 -0.243889 0.166652 0.124264 0.172770 0.259881 -0.613354 0.251526 0.171389 0.043556 -0.223996 -0.141414 -0.012924 -0.235382 -0.216738 0.269369 -0.017725 0.423424 -0.299532 0.105331 0.337683 0.025407 0.347443 0.434675 0.167717 -0.063283 0.188529 0.207386 0.741756 0.163466 -0.080707 0.045745 0.292781 0.507954 -0.015653 0.321362 -0.162783 -0.162061 0.230003 -0.304014 -0.109983 0.013560 -0.541281 0.158590 0.435822 0.355661 -0.442424 0.336600 -0.292843 0.116324 0.217424 0.008969 0.625061 0.183993 0.151359 0.331574 0.632117 -0.207274 0.047015 0.054094 0.320908 -0.133591 0.128240 -0.067048 -0.063568 -1.007005 0.003512 -0.578952 0.088529 0.081745 0.507826 -0.414217 0.177331 0.460363 0.087362 0.419438 -0.357556 -0.156380 -0.509433 0.008988 -0.018727 0.610329 0.037155 0.053326 -0.019512 0.293840 0.045105 0.223699 -0.068269 -0.440348 -0.466535 -1.033993 -0.502924 -0.207857 -0.178265 -0.168583 -0.591634 -0.153960 0.609147 0.376411 -0.687325 0.076934 0.157013 0.077404 -0.102144 -0.202089 -0.336391 0.029194 -0.208353 0.181758 0.145869 -0.181830 -0.011137 -0.433208 0.130414 0.151518 0.210165 -0.065200 -0.283830 0.007126 0.127584 -0.074604 -0.166470 0.065575 0.004780 -0.344423 0.224400 -0.411293 0.431888 -0.517582 0.081730 -0.348578 -0.409788 -0.071438 0.612683 0.263389 0.140958 0.122310 -0.338942 0.021159 -0.581103 -0.860475 0.178673 -0.142649 0.214877 -0.060478 -0.092127 -0.095399 -0.122804 -0.115947 0.163961 -0.384351 -0.149004 -0.165121 0.330064 0.001745 -0.208199 -0.340937 0.035604 0.568340 0.044589 0.144848 -0.343606 -0.140925 -0.448244 -0.334105 0.368370 -0.116950 0.085266 -0.092282 -0.027670 -0.545783 0.328796 -0.338066 0.122929 -0.276302 -0.132471 -0.506922 0.026530 -0.157958 -0.035275 -0.053050 -0.335136 0.176957 0.028793 -0.000167 -0.010292 0.029905 0.103586 -0.453984 -0.510239 -0.029956 0.063639 0.401750 0.280870 0.164279 -0.198004 -0.119405 -0.357376 0.430678 -0.370759 0.125167 0.198397 -0.455517 0.477152 -0.278353 -0.268385 -0.268941 0.273057 0.038768 -0.320107 0.665529 0.440087 -0.513850 -0.156315 -0.386261 0.232816 0.215375 0.628835 -0.196459 0.016607 0.198882 0.003136 -0.077745 -0.217617 0.231301 -0.093840 0.316721 -0.515943 -0.258161 0.313479 0.428087 -0.034133 0.124891 -0.036726 0.076651 -0.143477 0.551900 0.100071 0.113607 -0.317787 -0.602005 0.171264 0.038857 0.159971 0.121338 -0.210110 -0.164419 -0.091439 0.076487 0.509782 0.481435 -0.083319 0.412650 -0.471715 -0.533261 -0.217261 0.100630 0.082499 -0.353128 0.262941 -0.302374 0.011958 -0.110230 0.318743 0.086171 -0.183710 -0.454430 0.074762 0.226017 0.182903 -0.351489 0.502107 -0.008408 -0.227861 -0.061496 -0.007220 0.090285 0.241679 -0.118567 -0.273411 -0.215103 0.236261 -0.305491 0.454957 -0.133852 0.220331 0.268904 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.478565 -0.050464 -0.034550 0.684005 0.116776 -0.487013 0.230169 0.398760 -0.234134 -0.913382 -0.297243 0.073772 0.023820 -0.337455 0.137667 0.127646 0.216062 0.317786 -1.360822 0.331920 0.202529 0.015739 -0.439488 -0.453344 -0.035516 -0.264367 -0.049238 0.653857 -0.064396 0.715419 -0.448550 0.095987 0.477852 0.162255 0.670303 0.634121 0.211175 -0.061531 0.059472 0.150199 1.149039 0.538467 -0.416182 0.085773 0.458819 0.863776 0.236072 0.104614 -0.638760 -0.179660 -0.008729 -0.077483 -0.313965 -0.168150 -0.836178 0.087802 0.810297 0.658366 -0.622096 0.611078 -0.525700 0.156091 0.396599 0.242994 1.048902 0.132403 0.425111 0.557424 0.968202 -0.503328 0.082742 0.033612 0.560633 -0.291904 0.131854 -0.044861 -0.391634 -1.587004 0.121946 -1.385305 -0.036240 0.238784 0.722768 -0.585776 0.304875 0.563994 0.191070 0.609706 -0.813171 -0.273376 -0.796332 -0.078999 -0.243002 1.427361 0.095438 0.150072 0.180928 0.614554 0.290559 0.433912 -0.066417 -0.760358 -0.317219 -1.657689 -0.529177 -0.302946 -0.355149 -0.246992 -0.642039 -0.319932 1.005982 0.772728 -1.049093 0.006355 0.246911 0.077558 -0.034997 -0.660893 -0.394909 0.326641 -0.488642 0.193138 0.463531 -0.444247 0.057745 -0.165788 0.194921 0.267804 0.385494 0.206950 -0.864509 0.038903 0.422109 -0.326710 -0.244261 0.111853 -0.126999 -0.476239 0.309269 -0.867001 0.841727 -0.832244 0.362620 -0.425598 -0.652385 -0.064545 0.331012 0.509193 -0.068249 0.143254 -0.273620 0.219681 -0.872717 -1.611551 0.471509 0.177081 0.173030 -0.281630 -0.175748 -0.103909 -0.415808 -0.223591 0.556166 -0.594201 -0.354022 -0.278236 0.915331 0.189350 -0.392809 -0.234149 0.178753 0.768522 0.359289 0.428968 -0.639149 -0.501584 -0.851000 -0.477815 0.650190 -0.190978 -0.201521 -0.095016 -0.186703 -0.872544 0.589474 -0.563664 0.512198 -0.408774 -0.129782 -0.848684 0.080147 -0.229151 -0.021513 -0.054403 -0.515435 0.193960 0.076719 -0.240639 -0.151960 0.052567 0.456227 -0.530659 -0.709863 0.143788 0.186615 0.716332 0.379427 0.267017 -0.353687 -0.106814 -0.568873 0.772729 -0.266822 0.310234 0.114201 -0.718689 0.807091 -0.408424 -0.453424 -0.306306 0.498725 0.158202 -0.084170 1.333841 0.893585 -0.798991 -0.303290 -0.457587 0.305755 0.327302 1.025386 -0.612603 -0.276942 0.313097 -0.021916 -0.141669 -0.183759 0.325959 -0.045715 0.335494 -0.841737 -0.425664 0.488147 0.577339 0.025533 0.323942 -0.096976 -0.137744 -0.394323 1.001969 0.172884 0.285258 -0.604507 -0.831463 0.330332 -0.436502 0.211811 -0.055152 -0.170374 -0.468266 -0.151916 0.162996 0.781140 0.854412 -0.699505 0.677460 -0.872307 -0.836421 -0.622386 0.139788 0.143390 -0.574664 0.396925 -0.457962 0.121968 -0.162079 0.440047 0.091137 -0.251459 -0.487065 0.059108 0.306765 0.236423 -0.720686 0.879827 -0.042297 -0.342937 -0.190005 -0.003606 -0.032754 0.482601 -0.295363 -0.436125 -0.359616 0.536025 -0.478259 0.612286 0.049593 0.357491 0.496703 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = 0.336813 -0.088624 0.092389 0.447163 0.281148 -0.215495 0.098493 0.204687 -0.153996 -0.711033 -0.334928 -0.092598 -0.049592 -0.166203 0.229145 0.070938 0.298903 0.179703 -0.676880 0.183332 0.087537 -0.049894 -0.232571 -0.174907 0.007912 -0.181864 -0.143125 0.369409 0.025465 0.450514 -0.385740 0.119184 0.315250 0.143787 0.479170 0.363750 0.219522 -0.126755 0.045632 -0.000926 0.920933 0.121812 -0.088055 0.181934 0.355833 0.555496 -0.058512 0.413276 -0.173348 -0.096380 0.300593 -0.444205 -0.111025 0.053564 -0.705801 0.218698 0.542861 0.342031 -0.488637 0.331552 -0.263744 0.188196 0.199879 -0.066939 0.692910 0.204568 0.219176 0.374819 0.649704 -0.368692 -0.030703 0.136300 0.454696 0.002458 -0.106640 -0.142192 0.057140 -1.106261 0.048052 -0.652138 0.138649 -0.052161 0.628233 -0.359200 0.146962 0.486961 -0.044348 0.380474 -0.432751 -0.067639 -0.625294 0.021316 -0.027194 0.604335 0.006127 0.032819 0.085066 0.258618 0.057896 0.373192 -0.091087 -0.432842 -0.473032 -1.158084 -0.571356 -0.100465 -0.129071 -0.249183 -0.513097 -0.111893 0.660026 0.384914 -0.609799 -0.090427 0.097478 0.121564 -0.210794 -0.088331 -0.419480 -0.075065 -0.206128 0.230462 0.192998 -0.164914 0.065589 -0.519481 0.052706 0.130967 0.379991 0.004955 -0.337059 -0.047680 0.134681 -0.119656 -0.221381 -0.076009 -0.072036 -0.317106 0.263430 -0.339068 0.486836 -0.564068 0.064324 -0.457827 -0.449009 -0.026031 0.702508 0.305328 0.227638 0.372293 -0.282218 0.021132 -0.544657 -0.898624 0.210726 -0.018100 0.234735 -0.062420 -0.091677 0.027185 -0.198711 -0.264393 0.249746 -0.465507 -0.307221 -0.302330 0.370360 -0.048773 -0.231989 -0.399280 0.226362 0.681946 -0.095233 0.198218 -0.405659 -0.178768 -0.465257 -0.416272 0.396490 -0.187179 0.062350 0.035745 0.057748 -0.614969 0.343201 -0.406303 0.195722 -0.280294 -0.307430 -0.573305 0.086337 -0.195590 -0.042507 0.067626 -0.377134 0.252670 0.051384 0.137152 -0.053644 0.129434 0.131309 -0.536133 -0.679491 -0.134050 0.149139 0.468681 0.293826 0.135794 -0.236467 -0.238482 -0.355520 0.535630 -0.385565 0.155506 0.177736 -0.425183 0.404906 -0.337834 -0.276930 -0.294355 0.316901 0.170889 -0.451560 0.714747 0.459146 -0.613615 -0.301107 -0.633026 0.283191 0.156387 0.840909 -0.253226 0.037918 0.239876 0.130775 -0.119439 -0.302960 0.286710 0.062943 0.232858 -0.681775 -0.453836 0.307670 0.453672 0.007111 0.174703 0.094753 0.208011 -0.147817 0.794022 0.117254 0.118501 -0.324150 -0.736016 0.160802 0.217272 0.164449 0.163227 -0.303859 -0.309009 -0.185846 0.067823 0.570213 0.500427 -0.021218 0.516977 -0.407488 -0.507537 -0.228049 0.105771 0.088316 -0.482537 0.271033 -0.395410 -0.046649 -0.154823 0.274543 0.074325 -0.129995 -0.607101 -0.030687 0.260410 0.183876 -0.257208 0.545718 0.108049 -0.320106 -0.026385 0.052096 0.123067 0.351268 -0.269010 -0.318694 -0.235722 0.171673 -0.314289 0.382588 0.005519 0.211491 0.244559 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = 1.988134 -1.355213 -1.696503 5.012320 0.336223 0.651405 0.501755 -0.488007 0.472786 -5.779643 -2.277033 3.837207 0.734823 0.452271 -0.096331 1.432738 1.549993 0.780085 -5.678431 -0.146865 0.850308 -0.677428 -0.741051 -0.219447 -0.112703 -2.048695 4.063523 1.749493 0.405412 3.611710 -1.044151 2.825009 3.123083 0.063341 1.778471 2.447094 -1.251440 -0.013478 -2.589222 -1.390344 4.820358 1.285716 0.200949 1.821656 -0.477805 4.165033 1.636241 3.328342 3.004903 -1.453028 1.805013 2.514288 -1.280355 -0.948346 -4.319898 0.292410 1.475317 0.487387 -1.541467 1.361522 -1.177745 1.084134 1.458447 1.081527 4.787990 0.866119 3.775006 3.556668 3.158202 -3.046065 0.806543 0.581027 0.862064 0.495682 3.502441 -2.262006 -3.592622 0.039708 -0.743758 -3.492838 -0.088524 -0.346426 4.365276 -2.602387 -1.468016 -0.726379 0.945905 4.093331 -1.858694 0.569080 -3.916562 -0.099386 -0.509470 4.777533 1.155338 1.078476 -0.498795 1.024602 -0.552242 1.064551 1.000121 -4.015742 1.236418 -5.700445 -2.407429 -2.979421 1.260869 1.133866 -3.820541 0.817154 -1.339090 2.708802 -5.357538 -0.667482 0.648523 0.989779 3.728919 -0.997448 -0.733127 -0.130773 0.765198 1.691042 2.049386 -1.901876 1.238842 -0.908250 0.409085 0.539366 1.555697 1.047054 -3.498476 -1.381546 0.894835 0.422985 0.726403 1.921094 2.310320 -0.944760 1.805497 -2.217722 3.333760 -4.084520 -1.115592 -1.996783 -2.295596 -2.125482 3.240969 2.443050 3.689314 -0.742022 -1.095265 0.208208 -5.035704 -6.315346 0.200738 0.318656 -0.692582 1.656890 -0.829856 1.678189 -3.425350 1.247556 2.869905 -1.808058 -2.190868 -0.049677 0.511539 0.804293 -1.285107 -1.005978 -0.341839 -0.736078 1.031006 4.659894 -0.787980 -7.162615 -5.735424 -1.788514 3.319470 -2.262281 -0.250769 -1.602174 -1.710511 -2.415360 -0.146496 -3.016227 0.144590 -0.179479 -1.779762 -4.461824 1.342227 -0.827049 0.159415 1.307563 -3.695515 0.843392 2.221759 0.978783 0.563973 1.049107 0.021665 -2.784971 -1.915599 1.328746 -2.124861 3.350577 1.664317 -0.417228 -1.970572 -1.952176 -2.985168 1.650375 -2.342169 2.458308 0.665845 -2.064787 1.265156 -3.015812 0.308944 -1.614295 1.136038 0.604171 -5.415681 4.489984 3.238242 -2.746417 -0.263025 -0.492373 1.830047 -0.193818 2.335289 -3.112638 -2.252537 0.568493 0.389807 0.083179 -0.410585 0.853740 -0.612180 -1.378102 -3.684978 -1.698372 3.249317 1.532958 -0.403012 -0.389630 1.694516 -1.707657 0.995595 3.597202 2.238627 1.228285 -3.018787 -7.966691 1.208376 -0.920395 -0.803718 0.610873 -2.041556 -1.285019 1.234189 -1.758749 3.269575 -0.535140 -1.933610 3.467167 -4.143740 -3.385375 -3.496509 -1.791393 0.700579 -0.347699 0.991772 -1.937587 0.544923 -0.980650 0.949871 -1.869763 -1.651684 1.827722 2.152537 3.141061 0.130064 0.136844 3.702074 1.318214 -1.119663 -1.211461 0.060303 -2.611766 1.150131 -4.961062 -0.803960 0.787299 1.904518 -2.532995 0.373911 -0.554700 1.478863 0.275217 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = 6.608280 -5.236236 -7.789437 17.963875 0.171111 2.212622 2.207985 -0.433241 1.118716 -24.794633 -9.381215 16.064029 3.021978 1.882962 -1.236467 5.199443 4.390283 5.932504 -23.082558 -1.345170 4.049030 -0.232623 -1.049084 -3.005357 -0.318519 -4.887035 13.585841 4.164387 2.345313 13.316313 -3.328154 11.224760 11.374941 0.708489 4.233864 8.118425 -4.893325 -0.071773 -8.092904 -7.288273 17.522000 5.213959 1.522239 7.792636 -3.308116 14.205538 5.333504 12.671442 10.534414 -5.243516 5.296585 7.631147 -5.616146 -3.211415 -15.113886 1.605714 5.665853 3.885474 -3.577093 5.285863 -1.876768 3.574209 5.362979 0.191977 18.052546 4.355380 14.302502 14.279106 11.031016 -10.568938 3.725599 0.044004 1.503981 0.088435 13.778497 -10.528820 -11.794400 -1.523892 -3.873435 -18.259556 0.085996 -0.873584 21.133039 -10.235817 -4.095452 -2.506662 5.963326 15.225015 -5.583732 2.582745 -14.660751 -0.480301 -2.456111 18.744076 4.705520 3.509216 -4.714492 3.189723 -1.395062 2.235001 4.348528 -12.434967 4.470882 -22.631554 -6.639679 -9.721560 4.041137 5.533973 -13.752400 1.773866 -5.248485 12.401258 -22.930837 -3.457260 2.843375 3.692492 13.949502 -2.751941 -5.385009 1.732575 0.956030 4.686586 6.101717 -8.185236 3.439422 -2.055841 -0.635842 0.474073 5.248130 4.703804 -17.666915 -6.311753 1.852352 2.199028 3.303514 7.553798 10.182904 -1.969349 5.993930 -9.280974 10.820501 -15.259855 -3.253721 -4.527595 -10.790705 -8.037603 14.554899 9.607560 12.386345 -3.993444 -4.029243 -0.765568 -18.012637 -24.263211 3.096828 1.672256 -1.068027 6.535197 -2.673335 4.898421 -12.842418 5.938446 12.062095 -5.788430 -7.415294 0.385951 5.866638 1.857651 -4.592899 -4.460903 -1.367185 -1.899459 3.416172 16.063899 -3.178762 -24.173221 -22.132875 -5.680950 12.149802 -7.928267 -0.938688 -6.397966 -5.082245 -8.057295 -1.724925 -10.952860 1.465886 1.183917 -8.685830 -16.187295 4.843926 -2.324414 -2.311025 5.394180 -12.258354 3.072364 9.564715 5.725249 0.456197 2.625573 1.879478 -11.556035 -8.405867 4.265136 -9.559930 11.281913 8.295930 -0.463140 -10.493218 -5.964540 -11.030390 6.277508 -9.197769 9.017828 -0.358336 -5.950598 4.731113 -12.393070 2.896306 -6.628276 3.553255 2.111947 -24.618433 17.659945 9.776940 -8.226493 0.221242 -2.109605 6.207206 -0.702530 7.309586 -11.567485 -9.609673 2.643405 -1.452734 0.420139 -3.262213 2.623336 -2.810399 -4.667783 -13.837230 -5.897424 11.609485 4.306872 -1.752014 0.703894 7.337839 -6.629900 2.355063 14.562999 8.977344 2.521921 -10.979102 -30.455507 4.444746 -1.168063 -2.631789 0.435047 -8.148002 -4.271555 6.047861 -7.428057 10.548303 -2.073544 -8.354834 11.671832 -16.433035 -11.388946 -10.518242 -4.485901 4.501599 -0.969885 2.298465 -5.762072 2.302612 -1.817826 2.885118 -4.796997 -9.005118 5.585285 7.702225 13.834800 0.212487 0.459075 13.340429 3.919554 -4.058932 -2.336765 -1.399869 -7.895333 3.124691 -20.485455 -1.618480 4.019322 6.589543 -9.605771 2.647331 -2.534693 3.152000 1.534880 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 1.466631 -0.991454 -1.148372 3.730723 0.224052 0.256811 0.741255 0.278166 0.155517 -5.506682 -2.186534 3.032518 0.493412 0.209724 -0.144101 0.818721 1.082913 1.597979 -5.181629 -0.245911 1.011461 0.216765 -0.154856 -0.879049 -0.074717 -1.052361 2.250970 1.217777 0.559343 3.094806 -0.862097 1.987035 2.581285 0.292601 0.943748 2.153623 -0.447809 0.006094 -1.410625 -1.480954 4.169554 1.150274 0.221981 1.851318 -0.331727 3.306125 1.064656 2.671150 1.916766 -1.240188 1.119119 0.771942 -1.344733 -0.826282 -3.368544 0.515060 1.734713 1.420014 -1.089492 1.550463 -0.416528 0.739161 1.194579 -0.294840 3.733225 1.199640 2.633593 3.000563 2.812507 -2.522541 0.564474 0.145611 0.596347 0.052881 2.480113 -2.291574 -2.236010 -1.543556 -0.766228 -4.421569 -0.059637 -0.171082 4.795458 -2.381572 -0.450897 0.176931 1.009542 3.099245 -1.268624 0.211719 -3.350209 -0.074313 -0.448378 4.236335 0.983121 0.606325 -0.755901 0.789581 0.008079 0.835847 0.820424 -2.681401 0.246180 -5.544739 -1.543738 -2.062694 0.663395 0.927861 -2.932113 -0.010487 -0.322607 2.718303 -5.121765 -0.799215 0.892351 0.974865 2.112386 -0.774292 -1.390212 0.402524 0.004371 0.834901 1.424618 -2.038265 0.564131 -0.512504 -0.293407 0.083406 1.165030 0.839501 -3.704049 -1.480184 0.337101 0.375683 0.498104 1.292792 1.776013 -0.561049 1.390548 -2.317403 2.566455 -3.411696 -0.435886 -0.942552 -2.484824 -1.692341 3.541659 1.888152 2.494427 -0.651538 -1.071839 -0.293263 -3.686872 -5.449748 1.057312 0.407172 0.333170 1.222321 -0.641642 0.836429 -2.719696 0.848184 2.310795 -1.306374 -1.460337 0.051781 1.606722 0.188048 -1.074793 -1.378389 0.076594 0.343966 0.604035 3.045944 -1.114925 -4.599607 -4.498830 -1.515393 2.775036 -1.654545 -0.236398 -1.179714 -1.012792 -1.921161 -0.016953 -2.462222 0.508709 0.071024 -2.114637 -3.736924 1.130205 -0.701641 -0.496889 1.357742 -2.659428 0.653811 1.821249 1.318028 0.041222 0.496795 0.614781 -2.773537 -2.157328 0.519169 -1.770583 2.456064 1.873165 0.190115 -2.385410 -1.260672 -2.345693 1.692091 -1.944885 1.811454 -0.141057 -1.405998 1.475658 -2.546102 0.543131 -1.767724 0.962303 0.795679 -5.317105 4.008858 2.249492 -1.981074 -0.311306 -0.778454 1.127581 0.191151 2.096648 -2.576897 -2.142068 0.926833 -0.561603 0.040496 -1.060428 0.700945 -0.441897 -0.513314 -3.265732 -1.452485 2.461938 1.263266 -0.410711 0.542174 1.747631 -0.943968 0.331525 3.560101 1.816665 0.489105 -2.421601 -6.518558 1.279346 0.304859 -0.192239 0.174256 -1.861036 -1.109879 1.332145 -1.153588 2.453286 0.360201 -1.660461 2.752192 -3.445749 -2.671441 -2.035288 -0.793315 1.259575 -0.658968 0.586226 -1.365878 0.586967 -0.413941 0.632851 -0.603976 -1.869198 0.431493 1.452394 3.038580 0.223922 -0.087142 3.192880 0.560933 -1.165651 -0.265538 -0.379313 -1.183763 0.790924 -3.995801 -0.450228 0.554323 1.513451 -2.105606 1.041935 -0.581983 0.557982 0.703886 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 1.350265 0.118236 0.144360 1.332914 0.671864 -0.991430 0.336325 1.090978 -0.441579 -2.030723 -1.032523 0.063265 -0.091107 -0.646488 0.568539 0.157334 0.678455 0.699331 -2.515371 0.709499 0.277586 0.102263 -0.792830 -1.066417 0.095788 0.018705 -0.734494 0.929079 0.143676 1.422170 -1.249959 0.176395 0.827362 0.459201 1.392217 0.900561 0.472271 -0.350141 0.301146 -0.330101 2.576992 0.776502 -0.454378 0.741660 1.053165 1.585813 -0.269673 1.211983 -1.118757 -0.163323 0.633491 -1.287101 -0.568919 0.237897 -1.825180 0.735497 2.046270 1.256136 -1.223492 1.053163 -0.638058 0.594463 0.736242 -0.302001 1.998171 0.971594 0.434227 1.190269 2.128851 -1.053964 0.118619 0.037040 1.573824 -0.240679 -0.389216 -0.694988 0.053823 -3.226838 0.174465 -2.684687 0.525108 -0.184507 2.277839 -1.283847 0.983474 1.372040 0.194405 1.070485 -1.537106 -0.212237 -1.650706 0.040438 -0.583149 2.359304 -0.272213 0.289308 0.172667 0.847984 0.289176 0.970842 -0.362695 -1.164113 -1.231704 -3.412827 -1.430813 -0.029221 -0.759389 -0.685550 -1.434041 -0.434434 1.966189 1.167257 -2.038538 -0.538120 0.211031 0.229827 -0.699985 0.050529 -1.372445 0.068471 -1.080678 0.585893 0.459096 -0.728195 0.059098 -1.287465 -0.412094 0.524796 1.177917 0.321171 -1.594743 -0.013484 0.379534 -0.665223 -0.673521 -0.154905 -0.417813 -1.004399 0.670900 -1.272576 1.407579 -1.781569 0.028302 -1.227425 -1.503686 0.074172 1.506686 0.792756 0.345029 1.123006 -0.432110 -0.067715 -1.599380 -2.458804 0.942957 0.031211 0.730730 -0.440172 -0.159546 -0.151296 -0.695459 -1.034358 0.852436 -1.487072 -1.040722 -1.164330 2.251838 -0.238461 -0.698346 -1.091468 0.719208 2.181764 -0.195607 0.462669 -1.310381 -0.391693 -1.591589 -1.117974 1.295723 -0.484229 0.038581 0.066574 0.425670 -1.694354 0.939702 -1.222449 0.914253 -0.700641 -0.722696 -1.782431 0.250336 -0.472182 -0.088547 0.095773 -1.002946 0.789535 0.366582 0.720264 -0.515612 0.480260 0.757302 -1.775703 -2.136438 -0.410675 0.682567 1.446432 0.945517 0.556546 -0.837597 -0.568941 -1.128235 1.760750 -1.096982 0.535795 0.180514 -0.858481 1.442118 -1.036075 -0.866250 -1.215081 0.956273 0.497179 -1.204958 2.365032 1.189974 -1.800138 -0.754530 -2.159898 0.967110 0.519477 2.632957 -0.971697 -0.286377 0.826520 0.148778 -0.483066 -1.150519 0.872430 0.096325 0.794746 -1.864455 -1.119779 0.882630 1.190442 0.060818 0.699771 0.187663 0.313707 -0.512475 2.436630 0.464171 0.203846 -1.153324 -2.107929 0.443031 0.524730 0.744027 0.108327 -0.794078 -1.153479 -0.556574 0.553647 1.681387 1.755262 -0.194313 1.451258 -1.523268 -1.489654 -0.622262 0.750269 0.426903 -1.497668 0.570943 -1.169838 -0.112460 -0.134144 0.923658 0.438716 -0.564823 -2.055653 -0.192670 0.981518 0.410766 -1.099472 1.709222 0.382309 -0.972970 0.101613 0.009871 0.417446 0.639721 -0.626196 -0.731484 -0.673702 0.578800 -1.091153 1.484333 0.327662 0.487863 0.709693 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.314519 -0.781015 0.284462 0.449226 0.403910 -0.031039 0.081648 -0.013078 0.220163 -0.701176 -0.137855 -0.030018 -0.134594 -0.059955 0.192674 0.063709 0.361027 -0.091278 -0.586996 0.180441 -0.014806 -0.039141 0.020668 0.024789 0.098243 -0.395231 0.468603 0.404830 0.027284 0.305520 -0.349939 0.070188 0.297945 0.074082 0.360705 0.363162 0.387114 -0.127274 -0.259574 0.136839 0.903564 -0.004912 -0.037617 0.265820 0.359713 0.486915 0.233513 0.838252 0.930042 -0.118318 0.522104 -0.446351 -0.124094 -0.116066 -0.784104 0.248405 0.398547 0.127113 -0.489561 0.184867 -0.095000 0.131798 0.082938 0.101667 0.580958 0.034493 0.411563 0.196404 0.618860 -0.370506 -0.204517 0.388450 0.621544 0.427576 0.309648 -0.490375 -0.190867 -1.099857 0.009162 0.057328 0.058677 -0.272231 -0.038942 -0.232906 -0.089077 0.417009 -0.316486 0.340296 -0.171540 0.022263 -0.622613 0.168177 0.428886 0.489484 -0.081836 0.004657 0.125104 0.132626 -0.002438 0.448005 0.398434 -0.468846 -0.295051 -1.002771 -0.527577 -0.266921 0.085781 -0.275914 -0.565355 0.200412 0.185149 0.002912 -0.381322 -0.040725 0.156967 0.188115 0.366894 -0.406504 0.112591 -0.297372 0.200847 0.322534 0.093456 -0.270732 0.046470 -0.608875 0.416435 0.228681 0.269722 -0.252661 0.241455 -0.127649 0.023343 0.500916 -0.123976 -0.158971 0.018135 -0.497538 0.258335 -0.160955 0.412371 -0.425706 -0.164415 -0.436401 0.035047 -0.101723 1.328202 -0.117254 0.592637 0.354115 -0.519493 -0.052782 -0.360700 -0.962092 -0.047538 -0.155926 0.080761 0.217132 -0.068138 0.141578 -0.069097 -0.253601 -0.024355 -0.332202 -0.179387 -0.166609 -0.954959 -0.141796 -0.060311 -0.374491 0.209905 0.635695 -0.030244 0.276398 -0.177205 -0.882190 -0.242176 -0.490665 0.270318 -0.214169 0.147039 0.034687 -0.053453 -0.622381 0.334867 -0.322064 0.043664 -0.225586 -0.620620 -0.448135 0.094386 -0.290640 0.448837 0.162959 -0.441025 0.157647 -0.505413 0.427677 0.158264 0.190066 -0.116100 -0.869903 -0.733181 -0.259943 0.056071 0.778180 -0.356693 0.000181 0.015325 -0.321288 -0.256785 0.338583 -0.779255 0.030597 0.317541 -0.522761 0.249557 -0.142686 -0.110351 -0.344511 0.279144 0.178941 -0.084868 0.762916 0.523046 -0.563639 -0.393188 -0.348131 0.154037 0.141470 0.741299 -0.235772 0.012508 0.172099 0.325375 -0.086826 -0.274499 0.308869 0.081427 0.192834 -0.684434 -0.623239 0.076863 0.510322 -0.071140 -0.097657 0.222549 0.255316 -0.393204 0.723111 0.017223 0.356492 -0.321303 -0.977809 0.119981 0.705914 0.027416 0.483357 -0.745005 -0.209044 -0.014065 0.173866 0.559838 0.532411 0.410728 0.465113 -0.320388 -0.414779 -0.114092 -0.345674 -0.042569 -0.248834 0.362211 -0.399151 -0.137516 -0.305968 0.120330 -0.257509 0.121199 -0.127333 0.034197 0.084427 0.250243 -0.010593 0.401399 0.182318 -0.284123 -0.060022 0.131632 -0.036740 0.415869 -0.060084 -0.194912 -0.213497 0.026817 -0.142989 0.231807 -0.125370 0.282466 -0.125331 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.542766 -0.470693 0.009258 0.729591 0.211426 -0.483326 0.263442 0.323754 -0.034179 -1.041294 -0.264391 0.046702 0.027866 -0.374359 0.160435 0.184046 0.250570 0.204770 -1.279625 0.400857 0.195086 0.023014 -0.448530 -0.311634 -0.030437 -0.498217 0.108580 0.703921 -0.100169 0.715631 -0.429233 0.057031 0.564244 0.035681 0.617889 0.794396 0.404944 -0.020722 0.032587 0.377731 1.307668 0.508023 -0.404842 0.124300 0.550260 0.924723 0.253416 0.624750 -0.293103 -0.261243 0.288310 -0.186235 -0.340149 -0.246098 -0.966827 0.192252 0.951212 0.610299 -0.757260 0.635831 -0.545918 0.117096 0.381032 0.405628 1.091760 0.214164 0.538210 0.529065 1.152359 -0.522923 -0.043941 0.269324 0.667079 -0.123775 0.432493 -0.239561 -0.537272 -1.658997 0.155869 -0.975169 -0.081522 0.121965 0.590759 -0.633864 0.160936 0.699357 0.147918 0.677822 -0.749964 -0.260680 -0.862869 0.006973 -0.042340 1.600608 0.037642 0.208913 0.131114 0.621938 0.282654 0.544693 0.130294 -0.849226 -0.489615 -1.756041 -0.696464 -0.457475 -0.285942 -0.270233 -0.882207 -0.277384 0.916278 0.549186 -1.083980 0.146596 0.372114 0.178287 0.487702 -0.650278 -0.323743 0.210740 -0.265254 0.166848 0.385412 -0.438490 0.014020 -0.401873 0.512054 0.338220 0.275079 -0.025444 -0.773543 0.077950 0.339207 -0.080099 -0.213051 0.067827 -0.060527 -0.778202 0.368795 -0.836672 0.848773 -0.991955 0.203246 -0.502800 -0.660106 -0.100777 0.826496 0.338861 0.252545 0.100186 -0.565258 0.098437 -0.963936 -1.864991 0.286401 0.017870 0.189585 -0.180617 -0.190453 -0.115766 -0.336309 -0.201360 0.425362 -0.578165 -0.220981 -0.216368 0.526758 0.098481 -0.338942 -0.314026 0.101558 0.827583 0.424914 0.496396 -0.550876 -0.897605 -0.848401 -0.586983 0.636453 -0.176732 -0.087863 -0.136006 -0.277623 -1.112872 0.630533 -0.549613 0.469499 -0.464866 -0.316200 -0.869829 0.106844 -0.282419 0.166609 -0.058388 -0.628535 0.144832 -0.174035 -0.111560 0.019072 0.058919 0.286760 -0.860763 -0.895795 0.092833 0.151508 1.025042 0.182460 0.236523 -0.083908 -0.152623 -0.690945 0.714843 -0.612565 0.203731 0.283107 -0.854345 0.878285 -0.390466 -0.503186 -0.514089 0.515451 0.123198 0.169832 1.543321 0.977481 -0.846597 -0.396954 -0.324708 0.246398 0.400073 1.087130 -0.593327 -0.272468 0.348383 0.045908 -0.145565 -0.165850 0.401407 -0.118180 0.506478 -0.937698 -0.546101 0.421101 0.776046 -0.069334 0.225482 -0.103669 -0.126749 -0.532525 1.044517 0.159105 0.352491 -0.641814 -1.104274 0.364997 -0.423803 0.053717 0.062971 -0.438338 -0.444541 -0.045123 0.286167 0.891613 0.959918 -0.417557 0.728701 -0.970617 -0.948294 -0.531800 -0.055263 0.099466 -0.542213 0.448368 -0.521630 0.119437 -0.238229 0.420493 -0.022971 -0.254247 -0.381103 0.070491 0.270324 0.245846 -0.691906 0.918142 -0.030501 -0.311198 -0.230275 0.043862 0.006454 0.594982 -0.186947 -0.435597 -0.460722 0.498522 -0.424117 0.698395 -0.067757 0.417351 0.466662 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.845510 0.408342 -0.809940 2.240196 -0.280057 -2.008634 1.019912 1.794035 -0.709603 -3.035940 -0.914125 1.233371 0.492882 -1.387569 -0.116170 0.660977 0.196784 1.503605 -5.150022 1.203420 1.000555 0.416723 -1.862264 -1.970040 -0.287828 -0.872223 -0.296989 2.058465 -0.298667 2.682234 -1.122324 0.114347 1.838783 0.158743 1.846410 2.569787 0.431830 0.109060 0.492914 0.555423 3.469930 2.701808 -1.804041 0.200418 1.275071 3.058919 0.903670 0.000000 -3.491112 -0.885178 -0.807494 0.927995 -1.604861 -0.945664 -2.247628 0.097371 2.963070 2.564411 -1.862008 2.407397 -1.874249 0.236595 1.619066 1.290450 3.360644 0.729587 1.370542 2.044042 3.569731 -1.613442 0.576292 -0.157286 1.379645 -1.657993 1.379560 0.019866 -2.246247 -4.390073 0.549518 -5.709921 -0.567403 1.278483 3.199686 -2.447270 1.320728 1.680073 1.694335 2.302859 -2.982454 -1.301839 -2.336454 -0.461660 -1.591792 6.294666 0.474809 0.967614 0.278702 2.454318 1.288176 1.114135 -0.293333 -2.736915 -0.735811 -5.348287 -1.204510 -1.523571 -1.546802 -0.227382 -2.229860 -1.604474 3.395516 3.166598 -4.286827 0.405789 1.222968 0.129684 0.904025 -2.154354 -1.455875 2.039620 -2.034403 -0.043776 1.578480 -1.802669 -0.102790 0.728855 0.593931 0.858652 0.686992 1.032985 -4.621110 0.383588 1.675498 -1.735915 -0.475601 1.005124 -0.217142 -1.929295 0.944291 -3.690473 2.865042 -3.189668 1.388361 -0.782226 -2.821377 -0.461997 -0.370421 1.959580 -0.684093 -0.614940 -0.527464 0.594941 -3.367432 -5.795256 1.856271 0.744378 0.465292 -1.268818 -0.647592 -0.796768 -1.768068 -0.260000 2.117651 -1.749371 -0.786955 -0.493517 5.403727 0.873868 -1.352343 -0.300822 -0.045423 1.847295 2.214523 1.630948 -2.185251 -2.098728 -3.522305 -1.308283 2.449844 -0.462762 -1.062827 -0.840268 -1.181652 -2.677430 1.738246 -1.816194 2.169901 -1.297076 0.284614 -3.017860 0.391568 -0.536283 -0.527850 -0.456441 -1.765516 0.316698 0.815736 -1.571091 -0.667489 -0.263195 1.925477 -1.547083 -1.812166 1.251081 0.352099 2.453576 1.868560 1.053727 -1.187001 0.149852 -2.351548 2.479269 -0.607142 1.232310 -0.022911 -2.247181 3.313012 -1.487609 -1.582817 -1.381333 1.690702 0.212738 0.380093 5.113331 3.160707 -2.335889 -0.538239 -0.523178 0.761805 1.409223 2.842451 -2.528764 -1.887927 1.154294 -0.957155 -0.396643 -0.098775 0.911250 -0.699522 1.458664 -2.455491 -0.660444 1.882091 1.860042 -0.083920 1.397929 -0.734170 -1.535296 -1.174555 2.947309 0.878254 0.800132 -2.420939 -2.684243 1.422654 -3.581971 0.482109 -1.116997 0.129853 -1.598008 0.040201 0.649187 2.533877 2.663364 -3.512790 2.122218 -3.848663 -3.192663 -2.342279 0.638778 0.820665 -1.571302 1.103123 -1.241017 0.924243 -0.248367 1.555596 0.436805 -1.482246 -0.947671 0.534132 1.351226 0.616699 -3.125532 3.275101 -0.572287 -0.789650 -0.729729 -0.394950 -0.185259 1.184738 -1.006019 -1.193667 -1.138635 2.346294 -1.783516 2.509775 0.273963 1.064490 2.189940 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.346325 -0.931351 -0.876103 1.600217 0.003160 -1.053298 0.389789 0.447160 0.197726 -1.743040 -0.313972 1.186507 0.340210 -0.832024 0.020662 0.723677 0.396325 0.298313 -1.918220 0.888535 0.018760 -0.202163 -1.716131 -0.402386 -0.261834 -0.878294 0.595543 1.049383 -0.293689 1.287772 -0.577803 0.310320 1.032614 -0.396300 1.133536 1.420551 0.479226 0.129403 -0.103696 0.682644 2.247335 1.181688 -0.608649 0.358289 0.873013 1.692120 0.382621 1.988646 -0.551768 -0.438388 0.770922 0.637360 -0.686940 -0.396985 -1.828260 0.251035 1.560114 0.527901 -1.369680 1.200391 -1.057940 0.272592 0.892313 1.400333 2.280091 0.613760 1.243656 1.230880 2.166078 -0.754855 0.228513 0.397858 1.304345 -0.282681 1.582411 -0.439467 -1.581527 -1.438377 0.313209 -1.277992 0.059484 0.188815 1.598534 -1.389763 0.038132 0.764165 0.812227 1.456078 -1.644997 -0.358070 -1.438047 -0.102884 -0.433063 3.407616 0.050086 0.878450 -0.187203 1.207011 0.235098 0.655564 0.085846 -1.888006 -0.377469 -2.888426 -1.438916 -1.019281 -0.837314 -0.348894 -1.865799 -0.527844 1.033485 1.173430 -2.219306 0.404667 0.539884 -0.157335 2.322712 -0.358484 -0.628568 0.634471 -0.418417 0.318637 0.605020 -0.499682 0.073308 -0.609972 1.036983 0.756686 0.358570 0.259253 -2.284025 0.550671 0.785025 -0.139502 -0.311972 0.483322 0.075838 -1.777040 0.657734 -1.482289 1.438251 -2.161625 -0.284225 -1.024050 -1.642196 -0.216980 1.236139 0.824521 1.209338 -0.230565 -0.853190 0.091419 -2.407340 -3.764666 0.421116 -0.238944 -0.171732 -0.393880 -0.245220 -0.386779 -0.803854 -0.082930 1.275339 -1.166603 -0.455145 -0.380786 1.632628 0.310224 -0.681064 -0.303187 -0.263287 0.868384 1.420783 1.271246 -0.798588 -2.928524 -2.010437 -0.652246 1.205123 -0.263570 -0.072550 -0.285307 -0.876074 -2.043018 0.679913 -0.983488 0.896341 -0.937756 -0.118000 -1.600351 0.206498 -0.295321 0.256673 -0.513504 -1.281671 0.337566 0.102249 -0.283009 -0.033338 0.286102 0.498185 -1.580570 -1.489116 0.715783 0.117727 2.285385 0.751637 0.427113 0.210918 -0.137871 -1.802125 1.006400 -1.866317 0.532990 0.867022 -1.527860 1.625003 -1.020368 -1.138990 -1.013374 0.967281 -0.116791 0.214449 2.982438 1.944925 -1.613704 -0.373178 -0.167313 0.714060 0.638812 1.801825 -1.247532 -0.675351 0.629757 0.100961 -0.260097 0.021662 0.646552 -0.403464 0.840951 -1.562577 -0.618785 1.072515 1.262404 -0.151220 -0.097316 -0.680973 -1.064358 -0.825938 1.723995 0.474756 0.766600 -1.426866 -2.524321 0.563432 -1.980673 -0.412605 0.060177 -0.733268 -0.641197 0.021319 -0.102121 1.571378 0.620685 -0.990165 1.245569 -2.435393 -1.942232 -1.211766 -0.183677 0.110071 -0.687411 1.023424 -0.969032 0.288663 -0.479789 1.081622 -0.501502 -0.596208 -0.042549 0.423984 0.463817 0.182088 -1.463209 1.702176 -0.067802 -0.268014 -0.609413 -0.021890 -0.299089 0.935879 -1.101956 -0.723159 -0.834678 1.190559 -0.998120 1.393026 -0.065855 1.085474 0.887222 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.449422 -1.124377 -0.403070 1.584554 0.649218 -0.211602 0.170762 0.244811 0.272389 -2.103653 -0.885358 1.996122 -0.073874 -0.370960 0.110898 0.512356 1.128672 0.127487 -2.351552 0.469338 -0.248421 -0.497243 -1.153927 -0.157278 0.025531 -0.760812 1.485322 1.043962 0.047107 1.156945 -0.786654 0.700014 0.873428 0.219798 1.410996 1.003697 -0.162973 -0.497533 -0.656215 -0.577812 2.604575 0.750356 0.022997 1.105206 0.804015 1.648188 0.376197 2.299669 1.861332 -0.180620 1.112679 0.184908 -0.746676 -0.079754 -2.470418 0.228324 0.582583 -0.302986 -1.170813 0.709037 -0.329809 0.518651 0.535770 0.302636 2.412762 0.167958 1.433999 1.062043 1.635370 -0.959642 0.037341 0.574317 1.622287 0.780951 0.986541 -1.040181 -1.000358 -1.330645 -0.007575 -1.480134 0.378280 -0.707143 1.704726 -0.928516 -0.190752 0.107605 -0.039741 1.338092 -0.996917 -0.104834 -1.903633 0.130920 0.259638 2.018564 0.062056 0.630811 0.009086 0.356354 -0.348822 0.797827 0.262979 -1.798509 -0.024822 -3.165682 -1.138014 -0.919714 -0.143557 -0.514570 -1.553422 0.423855 0.002893 1.370326 -1.771485 -0.521863 0.172952 -0.366711 1.136806 0.028359 -0.307171 -0.286634 0.128023 1.125117 0.503028 -0.495593 0.178731 -1.046278 0.513977 0.379481 0.946019 0.321108 -1.371726 -0.238718 0.738747 0.764803 -0.222508 0.187973 0.241287 -0.904083 0.668985 -0.795246 1.257810 -1.640100 -0.628295 -1.327181 -0.598071 -0.527980 2.404570 1.100720 2.071229 0.697524 -0.179804 0.029737 -1.981045 -3.180569 0.363045 -0.569221 -0.202270 0.141121 -0.056840 0.304189 -0.955198 -0.405295 0.859497 -1.138194 -0.944313 -0.719695 -0.197780 0.072566 -0.439500 -0.615300 0.128963 0.898942 0.426644 1.131072 -0.731925 -3.676506 -1.644742 -0.881531 1.130395 -0.800889 0.116181 -0.048841 -0.419931 -1.064229 0.103324 -1.125214 0.284100 -0.707720 -1.000448 -1.536830 0.317272 -0.487635 0.577063 0.118482 -1.321704 0.670857 0.386858 1.070014 -0.012917 0.765169 -0.016066 -1.673802 -1.465952 0.109916 -0.119432 2.143475 0.559503 -0.017314 -0.796703 -0.669741 -1.497368 1.057839 -2.435801 0.781473 0.772668 -1.457845 0.778064 -1.119301 -0.281247 -0.509778 0.902345 0.174858 -2.253287 2.030311 1.726468 -1.826505 -0.601441 -1.075589 0.820432 0.211207 1.854636 -1.043396 -0.349731 0.431138 0.553846 -0.184612 -0.410465 0.664681 0.252862 0.110376 -2.102194 -1.324580 1.247021 0.895215 -0.080354 -0.438593 0.150143 -0.009427 -0.163027 2.153041 0.417069 0.885198 -1.408221 -3.885167 0.239251 0.910221 -0.156722 1.067854 -1.337651 -0.779370 -0.249948 -1.049010 1.544912 -0.194236 -0.324654 1.341968 -1.526264 -1.424169 -1.192021 -0.551251 0.115567 -0.451960 1.283241 -1.009980 -0.256810 -0.862581 0.806419 -0.804180 -0.227951 -0.041976 0.658224 0.689836 0.633907 -0.423033 1.376320 0.429907 -0.607647 -0.384883 0.012939 -0.525445 1.000440 -2.052723 -0.630623 -0.399000 0.582821 -0.938551 0.639622 0.227293 1.325979 -0.030950 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 1.130743 -0.523026 0.072454 1.273991 0.792995 -0.320405 0.029814 0.424010 -0.134151 -1.694598 -0.903504 0.296231 -0.162594 -0.133179 0.624611 0.200504 0.793331 -0.025471 -1.427143 0.402251 -0.160116 -0.353587 -0.620095 -0.293310 0.127273 -0.080057 0.103922 0.653616 0.185144 0.908419 -1.002495 0.445394 0.530213 0.319698 1.126459 0.329893 0.327905 -0.367876 -0.365271 -0.495967 2.101213 0.163838 -0.061693 0.836231 0.709836 1.110639 -0.337088 1.999545 0.381768 -0.006243 1.292353 -1.147321 -0.251674 0.378732 -1.737161 0.682833 1.332598 0.296808 -0.906442 0.450667 -0.387910 0.620938 0.374375 -0.204643 1.677398 0.735672 0.763951 0.903043 1.349177 -0.931514 -0.084400 0.397357 1.443142 0.485483 -0.337906 -0.897155 0.151764 -1.876267 0.101600 -0.940877 0.539196 -0.694278 1.558925 -0.756522 0.137949 0.720260 -0.303211 0.797001 -1.035565 0.419037 -1.392797 0.142743 -0.008808 1.167221 -0.303039 0.189503 0.089913 0.287043 -0.104548 0.890449 -0.088183 -0.868299 -0.853221 -2.364188 -1.434219 0.130257 -0.185568 -0.568541 -1.217446 0.180967 0.831794 0.460952 -1.098075 -0.643909 -0.063921 0.224685 0.156390 0.773690 -0.946527 -0.519756 -0.187104 0.808415 0.359419 -0.219978 0.334131 -1.672034 -0.092422 0.407686 1.126001 0.169366 -0.759349 -0.129877 0.157369 0.026864 -0.473981 -0.349372 -0.145697 -0.728513 0.615713 -0.273842 0.926827 -1.404205 -0.591548 -1.312959 -0.869683 0.105391 2.173276 0.642655 1.243001 1.315136 -0.501744 -0.160516 -1.224405 -1.781149 0.237340 -0.079124 0.310524 0.016882 -0.033276 0.374131 -0.463507 -0.794205 0.632553 -1.204077 -1.048187 -1.036910 0.386519 -0.323943 -0.417103 -0.994455 0.662788 1.423975 -0.575842 0.662354 -0.637049 -1.241576 -1.140910 -0.893823 0.841039 -0.541778 0.307298 0.283569 0.432414 -1.436881 0.416654 -0.945303 0.362606 -0.394723 -1.122386 -1.263749 0.264922 -0.359959 0.193940 0.250027 -0.906336 0.702826 0.168628 1.242908 -0.127894 0.783447 0.143656 -1.678653 -1.929291 -0.552051 0.340806 1.504089 0.438068 0.084477 -0.374951 -0.810209 -0.947372 1.208739 -1.551096 0.375592 0.387471 -0.572198 0.563825 -0.904551 -0.608168 -0.899761 0.667344 0.495739 -1.466719 1.544105 0.869594 -1.437948 -0.709222 -1.880196 0.910631 0.128679 2.139717 -0.615639 0.096717 0.463274 0.752192 -0.372842 -0.900629 0.779922 0.264346 0.124596 -1.548588 -1.225780 0.568845 0.851260 0.118885 0.055789 0.405939 0.502669 -0.268609 1.962748 0.364288 0.168364 -0.732017 -2.334968 0.150928 1.214972 0.130796 0.655414 -1.286648 -0.851728 -0.541784 -0.015899 1.280541 0.662621 0.607024 1.178054 -0.899122 -0.901544 -0.439047 0.187604 0.011749 -1.012728 0.612969 -1.011923 -0.340456 -0.229524 0.506800 -0.164043 -0.156035 -1.384387 -0.214897 0.650291 0.232608 -0.152551 1.070648 0.729939 -0.811376 -0.010181 0.243859 0.051688 0.635860 -1.004589 -0.533582 -0.393861 0.096619 -0.736112 0.605251 0.332189 0.429066 0.046276 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.844528 -0.182401 -0.134520 1.216038 0.388708 -0.263930 0.132195 0.370332 -0.357910 -1.055636 -0.436562 0.472345 -0.159890 -0.161158 0.495891 0.128145 0.423887 -0.040092 -1.284591 0.215379 -0.281932 -0.413767 -0.458887 -0.506604 0.134877 0.330960 0.304962 0.816380 0.057781 0.745408 -0.673317 0.360022 0.279292 0.553593 0.866148 -0.086148 0.227043 -0.102961 -0.630780 -0.375270 1.320639 0.249242 -0.363677 0.592992 0.410870 0.913803 0.136931 1.097195 0.209683 0.324971 0.819001 -0.549455 -0.196388 0.132948 -1.159337 0.063439 0.971768 0.298328 -0.357233 0.440433 -0.476561 0.498419 0.288816 -0.078817 1.393463 0.515851 0.808751 0.693832 0.938286 -0.812914 0.072436 -0.066856 1.190301 0.135778 -0.546232 -0.702840 -0.209387 -1.773445 0.016931 -1.180347 0.135602 -0.371739 0.962293 -0.513380 0.034819 0.281545 -0.253268 0.505584 -1.109362 0.446130 -0.999756 -0.098219 -0.083650 1.142470 -0.061234 0.210218 0.156454 0.233011 0.182550 0.550355 0.066074 -0.700690 -0.170301 -1.590378 -0.932332 0.431816 -0.371421 -0.520473 -0.587723 0.137601 0.699883 0.385156 -0.896161 -0.824038 -0.075537 0.097567 0.222615 0.365450 -0.552630 0.064485 -0.086343 0.758604 0.690125 -0.458097 0.365791 -0.913619 -0.294219 0.338985 0.911688 0.490181 -0.691417 -0.133575 0.396283 -0.097360 -0.192904 -0.318250 -0.489433 -0.266831 0.361334 -0.436183 0.941204 -1.059490 -0.438666 -0.655902 -0.559060 0.121953 1.277332 0.645798 0.781614 1.022618 -0.191963 0.167901 -0.739790 -1.599603 0.429931 0.181952 0.007627 -0.164906 -0.027140 0.287428 -0.629716 -0.558526 0.923882 -0.840330 -1.044284 -0.800491 0.158402 0.005867 -0.423680 -0.552839 0.565248 0.951694 0.042201 0.710492 -0.489910 -1.502723 -0.830422 -0.525259 0.745461 -0.435289 -0.167333 0.217758 0.351084 -1.254523 0.292118 -0.754058 0.532138 0.051242 -0.794898 -0.935900 0.358850 -0.198766 0.367146 0.199107 -0.506918 0.375764 0.057597 0.861575 -0.281694 0.791919 0.382587 -0.911943 -1.438102 -0.313794 0.283796 1.162380 -0.025960 0.278500 -0.609978 -0.397455 -0.780207 1.116634 -0.950381 0.414565 -0.012835 -0.275130 0.499846 -0.551088 -0.566322 -0.365155 0.560493 0.409383 -1.001239 1.102864 0.910525 -1.039842 -0.560750 -1.271322 0.680984 0.104101 1.673069 -0.823510 -0.275960 0.249406 0.842518 -0.232771 -0.569855 0.517020 0.214782 -0.300919 -1.071151 -0.824453 0.512370 0.532931 0.177916 0.024169 0.223636 0.152486 -0.551431 1.448064 0.160109 0.174956 -0.367427 -1.593244 -0.114811 1.010891 0.099001 0.585869 -1.041010 -0.634003 -0.438316 -0.297514 0.909229 0.401903 -0.293996 0.867539 -0.570154 -0.538390 -0.770521 0.217781 -0.014471 -0.848147 0.637472 -0.562319 -0.240130 0.106956 0.307358 -0.073226 -0.054061 -0.637515 -0.328945 0.402040 -0.077732 -0.281814 0.875190 0.477337 -0.583117 -0.164275 0.138326 -0.328088 0.698534 -1.055422 -0.278774 -0.211200 0.323491 -0.585862 0.265814 0.400314 0.266228 0.004763 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = 0.156305 -0.205679 0.005053 0.980987 0.039653 0.366311 0.299214 0.000349 0.089427 -1.124166 -0.594569 1.089688 0.003899 0.288518 -0.087728 -0.207913 0.193854 0.143777 -1.032353 -0.260483 0.247644 -0.122284 0.050688 0.093275 0.173222 -0.335398 0.720504 0.738328 0.191262 0.544807 -0.219381 0.238088 0.689471 0.257604 0.228726 0.511608 -0.176742 -0.083610 -0.732460 -0.738118 0.694370 0.325471 -0.127409 0.533273 -0.306464 0.936481 0.533644 0.347504 1.112997 -0.414322 -0.018668 0.087530 -0.350438 -0.470013 -0.528818 -0.013688 -0.046991 0.258813 -0.188200 0.211087 -0.263026 0.040366 0.114048 -0.138070 0.500836 0.220185 0.651725 0.559484 0.531471 -0.931939 -0.014053 0.409129 0.097176 0.502988 0.265438 -0.222190 -0.634926 -0.349143 -0.019352 -0.898137 -0.643505 0.008220 0.865668 -0.505716 -0.233651 -0.185457 -0.107741 0.624379 -0.210079 0.252225 -0.935020 -0.115682 0.206216 0.323667 0.400727 -0.169395 0.210788 0.235495 0.018177 0.423140 0.242247 -0.747142 0.139880 -1.096509 -0.176878 -0.504259 0.201405 0.266218 -0.482601 0.160148 0.095114 1.010002 -0.882494 -0.368454 0.223919 0.299547 0.002673 -0.113424 0.201750 -0.106442 0.601169 0.006689 0.787843 -0.545217 0.373330 0.349072 -0.066126 -0.038528 0.177920 0.426338 -0.500162 -0.802427 0.302166 0.346297 0.209334 0.226044 0.132096 0.128863 0.425271 -0.434410 0.850252 -0.649901 -0.020246 -0.057887 -0.183037 -0.522479 0.924290 0.734473 0.703759 -0.081994 0.019067 0.042193 -0.438940 -1.002212 0.099539 0.207466 0.176548 0.290383 -0.226621 0.528760 -0.815590 0.290365 0.088767 -0.112697 -0.400322 0.348240 -0.411829 0.028275 -0.096983 -0.401383 0.187430 -0.202511 -0.084678 0.806600 -0.255595 -1.479251 -0.779282 -0.507635 0.678224 -0.354385 -0.279895 -0.260850 -0.338448 -0.017644 0.001360 -0.578582 -0.028483 0.101201 -0.615520 -0.929328 0.483353 -0.281646 -0.134964 0.596354 -0.538571 -0.007409 0.318715 0.307635 0.189205 0.250822 0.043689 -0.363954 -0.152169 0.078012 -0.556351 0.637025 0.451752 -0.080185 -0.959605 -0.440263 -0.533880 0.630661 -0.492557 0.529464 -0.294300 -0.403213 0.347686 -0.501636 0.376275 -0.289637 0.348139 0.556338 -1.778314 0.528838 0.831385 -0.379865 -0.182563 0.057078 -0.029175 0.291791 0.475562 -0.906787 -0.607840 0.051560 0.014938 0.242449 -0.072514 0.101702 -0.048943 -0.407945 -0.623059 -0.464325 0.636330 0.098119 -0.026604 -0.065247 0.589228 0.126208 0.353195 0.719549 0.411508 0.185229 -0.588556 -1.535385 0.526843 0.866163 -0.080867 0.575367 -0.745571 -0.228555 0.201102 -0.743637 0.512496 -0.448647 -0.640719 0.762562 -0.507387 -0.300362 -0.712302 -0.601015 0.145292 0.046947 0.684758 -0.017996 -0.008781 -0.083547 -0.300510 -0.401743 -0.074272 0.299958 0.401719 0.360601 0.181660 0.293204 0.792427 0.015724 -0.333273 -0.191412 0.016017 -0.510525 -0.060185 -1.089974 -0.012690 0.351282 0.406075 -0.340919 -0.162755 0.002751 0.013763 -0.099073 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.370031 -0.450233 0.174786 0.461889 0.381437 -0.139883 0.088932 0.132432 -0.027894 -0.862076 -0.425139 -0.245219 -0.084303 -0.181253 0.336761 0.117665 0.388995 0.036923 -0.838323 0.242091 0.151993 -0.102178 -0.123803 0.028901 0.054483 -0.448525 -0.075166 0.438646 -0.015837 0.452491 -0.405756 0.210504 0.404248 0.109931 0.502356 0.490129 0.135118 -0.205153 0.122567 0.183853 1.084230 0.038053 -0.020639 0.140300 0.421456 0.630909 -0.108158 0.790554 0.351249 -0.169344 0.660016 -0.647995 -0.123968 0.086490 -0.867656 0.240264 0.546427 0.227864 -0.592433 0.290703 -0.351633 0.183809 0.155844 -0.072844 0.833564 0.196367 0.374680 0.330898 0.722759 -0.345248 -0.103692 0.315527 0.482653 0.166401 -0.033928 -0.323384 0.073336 -1.331612 0.070380 -0.423268 0.100225 -0.190686 0.478097 -0.342264 -0.023519 0.531732 -0.153918 0.515482 -0.336090 -0.024891 -0.741330 0.109494 0.240655 0.490020 -0.060738 0.016952 0.098135 0.201578 -0.043825 0.460249 0.010083 -0.515431 -0.728920 -1.319902 -0.724643 -0.229568 0.041474 -0.277423 -0.783117 0.063709 0.572793 0.167921 -0.612472 -0.017141 0.161005 0.216083 -0.086069 0.001081 -0.412952 -0.359845 0.010236 0.409364 0.180778 -0.130153 0.082164 -0.937918 0.318988 0.197148 0.349386 -0.227085 -0.075614 -0.089740 0.120671 0.106805 -0.193820 -0.063739 0.064300 -0.375110 0.326286 -0.262906 0.523490 -0.677383 -0.030498 -0.649342 -0.289747 -0.090065 1.228295 0.384014 0.421860 0.470395 -0.481853 0.019347 -0.637970 -0.976763 -0.046799 -0.240574 0.307564 0.018672 -0.104900 0.102762 -0.079089 -0.199270 -0.005657 -0.469276 -0.247298 -0.323241 -0.196911 -0.050183 -0.187367 -0.478529 0.159239 0.736450 -0.279338 0.259025 -0.315467 -0.403393 -0.455765 -0.567841 0.392675 -0.230253 0.182199 -0.056186 0.078517 -0.747290 0.383069 -0.418020 -0.023293 -0.324073 -0.510742 -0.588877 0.085306 -0.251946 0.119734 0.066022 -0.473761 0.227910 -0.029267 0.392022 0.156154 0.174264 -0.130898 -0.746563 -0.803136 -0.241590 0.062710 0.679817 0.186370 0.020092 -0.140002 -0.327898 -0.404338 0.547450 -0.593857 0.107025 0.307367 -0.638943 0.395923 -0.324919 -0.245859 -0.353366 0.308319 0.111662 -0.622044 0.775810 0.518228 -0.706448 -0.379397 -0.713256 0.282321 0.177653 0.860903 -0.111052 0.186786 0.170163 0.267635 -0.108242 -0.305569 0.363551 0.016500 0.276641 -0.800088 -0.611661 0.351737 0.594363 -0.048893 0.076278 0.121292 0.417175 -0.090470 0.802621 0.057985 0.113592 -0.308575 -1.130831 0.143958 0.674325 0.078749 0.370482 -0.557734 -0.309289 -0.219216 0.071649 0.704804 0.619313 0.282133 0.567089 -0.322339 -0.573851 -0.274829 -0.016172 -0.020409 -0.419082 0.301499 -0.431483 -0.105438 -0.226654 0.272914 0.033019 -0.175689 -0.676261 0.030450 0.265378 0.282877 -0.167841 0.540611 0.179865 -0.318874 -0.133486 0.121469 0.078375 0.486861 -0.169108 -0.368207 -0.271133 0.083577 -0.273324 0.340415 -0.069453 0.341116 0.132231 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.237186 -0.424993 0.157636 0.393597 0.339208 -0.004417 0.053544 -0.021987 0.014233 -0.646362 -0.249400 -0.074585 -0.085612 -0.055023 0.209407 0.088536 0.355434 -0.021958 -0.442788 0.109866 0.020331 -0.129921 -0.094711 0.085909 0.028575 -0.372481 0.186686 0.350902 0.007868 0.308207 -0.291586 0.162646 0.284206 0.086321 0.385551 0.335336 0.221584 -0.141175 -0.113784 0.081463 0.828792 -0.049325 0.018506 0.167914 0.302823 0.467153 0.028956 0.612576 0.469602 -0.107884 0.464308 -0.379551 -0.056236 0.004507 -0.715735 0.181125 0.294938 0.089911 -0.458254 0.188292 -0.195351 0.147516 0.082361 0.017026 0.584943 0.054599 0.331791 0.244612 0.486134 -0.323409 -0.135764 0.310389 0.406174 0.263516 0.065215 -0.221666 -0.003755 -0.854330 0.020866 -0.100196 0.084853 -0.175526 0.262718 -0.203200 -0.129297 0.358083 -0.210026 0.339996 -0.203870 0.013611 -0.588490 0.091396 0.259093 0.303872 0.014679 -0.003598 0.083399 0.122506 -0.040749 0.375570 0.103564 -0.415636 -0.392458 -0.928741 -0.548444 -0.212676 0.081699 -0.228369 -0.507486 0.090931 0.323445 0.172648 -0.372097 -0.023405 0.100796 0.150655 0.079493 -0.122670 -0.167089 -0.273281 0.113367 0.291038 0.141091 -0.084623 0.090076 -0.603545 0.296488 0.111676 0.288167 -0.160171 0.030645 -0.101602 0.078173 0.202264 -0.138639 -0.104727 0.046789 -0.305178 0.254490 -0.120545 0.383833 -0.434123 -0.055088 -0.462884 -0.165167 -0.088806 1.001862 0.192255 0.474187 0.345685 -0.385067 0.003471 -0.429531 -0.795990 -0.034801 -0.127438 0.130312 0.113348 -0.082946 0.143934 -0.105222 -0.158594 0.072335 -0.332509 -0.202398 -0.183307 -0.429894 -0.062725 -0.126223 -0.357464 0.160880 0.494066 -0.131698 0.245853 -0.216955 -0.512535 -0.294779 -0.416648 0.264313 -0.205576 0.143157 0.033029 -0.025913 -0.535292 0.262315 -0.310225 -0.003762 -0.241953 -0.446450 -0.427270 0.088921 -0.217594 0.122707 0.120987 -0.384197 0.183507 -0.143127 0.230268 0.133332 0.144893 -0.117235 -0.559980 -0.579493 -0.168609 0.017002 0.529934 0.038140 -0.008329 -0.079595 -0.292703 -0.284839 0.345271 -0.530473 0.082431 0.293809 -0.479733 0.199224 -0.234212 -0.143832 -0.201094 0.245412 0.136602 -0.413473 0.554614 0.442127 -0.527873 -0.324600 -0.424822 0.191675 0.087112 0.647415 -0.142982 0.133893 0.136495 0.262452 -0.062719 -0.190942 0.259088 0.086859 0.135984 -0.636317 -0.514611 0.214754 0.433579 -0.037119 -0.024341 0.159966 0.281396 -0.129008 0.634590 0.052231 0.201231 -0.234811 -0.842048 0.109045 0.454242 -0.001902 0.371122 -0.474206 -0.190702 -0.116247 -0.040251 0.496687 0.290044 0.218111 0.445977 -0.227592 -0.393765 -0.176866 -0.183980 -0.025169 -0.293836 0.317394 -0.344931 -0.104726 -0.262358 0.157014 -0.123609 -0.001378 -0.295857 0.036785 0.137228 0.217007 -0.013348 0.379220 0.143543 -0.249048 -0.088380 0.117579 0.021314 0.410671 -0.256316 -0.268656 -0.187933 0.051782 -0.176627 0.165297 -0.079609 0.263485 0.043226 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = 0.298393 -0.190414 -0.030254 0.556091 0.318100 -0.122123 -0.005403 0.051324 -0.044246 -0.611021 -0.327657 0.095373 -0.000255 -0.009737 0.246527 0.127694 0.293558 0.075312 -0.475131 0.156637 -0.096330 -0.139263 -0.337626 -0.066101 -0.030234 -0.221319 0.086635 0.403766 -0.012942 0.272993 -0.330526 0.231516 0.280835 0.068874 0.446741 0.185250 0.256492 -0.178571 -0.244132 -0.071963 0.916772 0.008986 0.090697 0.262004 0.240058 0.518204 -0.032726 0.606766 0.186397 -0.105712 0.408236 -0.341186 -0.089474 0.017733 -0.815065 0.338292 0.246439 0.025723 -0.490645 0.281423 -0.170319 0.168467 0.205743 -0.091683 0.794378 0.104858 0.412520 0.365960 0.547721 -0.313282 -0.095866 0.235229 0.501597 0.161523 0.029861 -0.239856 0.041665 -0.824313 0.121011 -0.325836 0.230659 -0.180745 0.547070 -0.329958 -0.078439 0.381507 -0.091574 0.425133 -0.425973 0.068964 -0.625993 0.018775 0.079117 0.449093 0.059252 -0.043404 0.098407 0.185569 -0.030373 0.390427 -0.075109 -0.345828 -0.323123 -1.046808 -0.662870 -0.020198 -0.018791 -0.295202 -0.482960 -0.016045 0.382682 0.352150 -0.463468 -0.170418 0.127871 0.035430 -0.001450 -0.021241 -0.237335 -0.237443 0.043181 0.331594 0.188993 -0.090567 0.214078 -0.486869 0.159757 0.100882 0.434407 -0.008025 -0.219339 -0.093667 0.063076 0.076508 -0.124511 -0.162799 -0.005816 -0.327894 0.329161 -0.135116 0.420304 -0.537799 -0.070836 -0.528000 -0.303929 -0.025665 0.913335 0.274433 0.533980 0.429231 -0.303505 0.004585 -0.618815 -0.934073 0.093360 0.044155 0.094599 0.031780 -0.089707 0.088780 -0.108050 -0.207035 0.374928 -0.521083 -0.427791 -0.233102 -0.021056 -0.004461 -0.229888 -0.486167 0.288526 0.525221 -0.151071 0.240041 -0.206562 -0.539874 -0.336054 -0.361446 0.290838 -0.137860 0.183672 0.063163 -0.074810 -0.558519 0.231571 -0.475794 0.120206 -0.203918 -0.430510 -0.505463 0.067901 -0.159031 -0.013052 0.042295 -0.451110 0.341954 0.023995 0.228373 -0.042591 0.182855 0.050192 -0.557856 -0.639623 -0.180792 0.051618 0.541724 0.283852 0.146868 -0.152756 -0.253714 -0.347890 0.397422 -0.609105 0.112871 0.283294 -0.482142 0.185779 -0.471602 -0.247534 -0.237769 0.262654 0.095530 -0.600135 0.597337 0.499033 -0.623348 -0.338289 -0.582889 0.289665 0.070439 0.909156 -0.236715 0.156797 0.150077 0.336470 -0.152349 -0.265879 0.267528 0.138548 -0.005993 -0.686302 -0.518787 0.251256 0.437376 0.021229 0.016560 0.120123 0.254744 -0.132821 0.711304 0.099200 0.111033 -0.287148 -0.914398 0.138754 0.344301 -0.057850 0.313965 -0.439677 -0.212327 -0.174595 -0.133555 0.517097 0.206020 0.172514 0.475680 -0.370775 -0.451992 -0.221831 -0.018430 -0.062024 -0.349137 0.373267 -0.425399 -0.108219 -0.270630 0.167739 -0.232709 -0.025999 -0.509968 0.006548 0.159327 0.162485 -0.061689 0.507394 0.179320 -0.228629 -0.092803 0.015431 -0.014702 0.380022 -0.440403 -0.329411 -0.223371 0.035189 -0.244723 0.176985 -0.014650 0.215346 0.177847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 1.938822 -0.381147 -1.010002 3.095727 0.472292 -1.362048 0.139912 1.194660 0.024474 -2.556034 -1.182442 1.264927 0.560421 -0.023650 0.742356 0.725907 0.292902 0.635704 -3.596722 1.067537 -0.348734 -0.121654 -2.122948 -1.445129 -0.155407 -0.090813 0.407195 1.838989 -0.122483 1.453280 -1.475704 0.878406 1.427100 0.018381 1.805728 0.571578 0.911969 -0.473996 -1.457747 -0.622150 3.588077 1.524156 -0.550386 1.142393 0.342543 2.520268 0.464527 2.307744 -1.226267 -0.674793 0.828458 -0.836137 -1.051700 -0.391548 -2.988367 1.554252 1.981810 1.011535 -1.711705 1.694969 -0.903774 0.655228 1.591452 0.191217 3.931042 0.905466 2.322053 2.123466 2.958906 -1.527816 0.300346 0.271682 2.136938 -0.389007 0.958657 -1.547914 -0.934989 -3.650904 1.060431 -3.237337 0.638959 -0.187804 2.766224 -2.308005 0.617718 1.437981 0.777823 2.350029 -3.026320 0.501443 -2.470746 -0.342870 -0.756446 4.326376 0.065260 0.096065 0.529958 1.683193 0.435294 1.365993 -0.120566 -1.576487 -0.378815 -4.445809 -2.338287 0.276334 -0.961507 -0.720599 -2.039773 -0.597861 1.711679 1.786620 -3.024399 -0.913880 0.701156 0.038133 1.330267 -0.455595 -0.642902 0.193817 -0.530973 1.000978 1.218027 -1.434375 1.271198 -0.639524 0.290543 1.047642 1.775002 1.025595 -2.954586 -0.058336 0.607617 -0.424002 -0.252278 0.006993 -0.140115 -1.893937 1.447926 -1.814821 2.265420 -3.037725 -0.243010 -1.638082 -2.015203 0.033862 2.413221 1.052471 1.396656 1.162538 -1.002629 0.189492 -3.262273 -4.964132 0.945750 1.265530 0.101781 -0.303998 -0.439019 -0.026674 -1.029980 -0.653401 2.514035 -2.571574 -2.384453 -0.841665 2.350507 0.453214 -1.240207 -1.602085 1.343959 2.016084 0.337227 1.728517 -0.829787 -3.024950 -2.526878 -1.183800 1.769405 -0.204148 0.116282 -0.167169 -0.693689 -2.814492 1.064797 -2.452355 1.658843 -0.419484 -1.270903 -2.730987 0.428814 -0.372873 0.047157 -0.163535 -2.061129 1.408618 0.347803 0.765223 -0.969914 0.773103 1.543500 -2.596120 -2.851239 -0.076780 0.280519 3.035741 1.201792 1.101421 -0.554767 -0.583816 -1.829552 2.147720 -2.379255 0.887070 0.365381 -1.653851 1.507649 -2.524519 -1.499841 -1.847727 1.282028 0.311427 -1.007775 3.854185 2.484639 -2.583569 -0.966461 -2.041594 1.478012 0.605962 4.181236 -2.058798 -0.741139 0.735796 1.061335 -0.822749 -1.186482 0.986416 0.055558 -0.400472 -2.527040 -1.607507 1.157142 1.569445 0.225518 0.487691 0.138905 -0.354739 -1.304057 3.122279 0.797379 0.294984 -1.888843 -3.765429 0.968906 -0.231996 -0.267035 0.036122 -1.781282 -1.140614 -0.363807 0.163020 2.254627 1.999763 -0.542607 2.061270 -3.238259 -2.308232 -1.615842 0.597373 -0.175790 -1.251482 1.182723 -1.708831 0.115460 -0.473656 0.810296 -1.177865 -0.670687 -1.983451 0.038488 0.991325 0.004034 -1.385257 2.958508 0.704368 -0.595829 -0.574744 -0.346562 -0.746263 0.997950 -1.603859 -1.087631 -0.737808 0.843115 -1.543223 1.198905 0.377646 0.454205 1.116497 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.306742 -0.310038 0.202804 0.441508 0.403146 0.000000 0.088610 0.105201 -0.128506 -0.849988 -0.457939 -0.266951 -0.083174 -0.071772 0.314147 0.082288 0.461492 0.005581 -0.769606 0.088623 0.127189 -0.195793 -0.142270 0.097255 0.007692 -0.476458 -0.056818 0.489542 -0.003284 0.446474 -0.352461 0.228113 0.392453 0.142569 0.549766 0.476897 0.137177 -0.204429 0.037580 0.077828 1.079429 0.007311 -0.050929 0.117588 0.378734 0.643676 -0.116694 0.599849 0.151115 -0.160742 0.554919 -0.597116 -0.088393 0.069840 -0.874877 0.174317 0.498835 0.236914 -0.605950 0.301351 -0.358847 0.189953 0.124109 -0.060439 0.775357 0.106247 0.390374 0.342213 0.578488 -0.436331 -0.132845 0.330609 0.346918 0.176738 -0.208839 -0.194539 0.160117 -1.221531 0.127901 -0.472428 0.060697 -0.155382 0.513132 -0.259268 -0.096775 0.496886 -0.213503 0.450373 -0.337503 -0.025174 -0.768796 0.046027 0.216495 0.405223 0.025103 -0.035807 0.200912 0.214514 -0.018299 0.488545 -0.049261 -0.509102 -0.681732 -1.252426 -0.681518 -0.235617 0.116122 -0.239864 -0.593367 0.003607 0.629488 0.221443 -0.508512 -0.017111 0.125443 0.237536 -0.206703 0.009811 -0.453792 -0.344206 0.000527 0.339034 0.274197 -0.071339 0.154778 -0.793088 0.303644 0.121097 0.379991 -0.137434 -0.165830 -0.107027 0.181255 -0.022988 -0.212559 -0.093300 0.051539 -0.250786 0.342256 -0.236265 0.548768 -0.625952 0.098180 -0.618104 -0.337702 -0.108444 1.008622 0.486680 0.344655 0.493149 -0.410622 0.098549 -0.584731 -0.938108 -0.024132 -0.061433 0.301235 0.003127 -0.149424 0.190060 -0.167538 -0.162792 0.057549 -0.425423 -0.283803 -0.277216 -0.052210 0.009169 -0.223013 -0.401655 0.242304 0.638385 -0.309009 0.309601 -0.363247 -0.277669 -0.441605 -0.534852 0.386116 -0.256543 0.125551 0.029277 0.024472 -0.702475 0.364457 -0.421991 0.008819 -0.347807 -0.485170 -0.584964 0.144292 -0.254846 -0.005185 0.169408 -0.464377 0.229007 0.063941 0.245548 0.143956 0.130700 -0.087946 -0.562019 -0.691669 -0.190599 0.025358 0.579567 0.285203 -0.033656 -0.132390 -0.346097 -0.347927 0.531064 -0.368553 0.153844 0.271578 -0.635666 0.284977 -0.337966 -0.219647 -0.245534 0.310660 0.199743 -0.623896 0.696524 0.519417 -0.668968 -0.408316 -0.675779 0.246219 0.104859 0.797332 -0.122492 0.183583 0.165598 0.246090 -0.072959 -0.227093 0.310773 0.133038 0.166672 -0.837458 -0.620098 0.394381 0.530396 -0.015713 0.154969 0.199782 0.437310 -0.020129 0.839583 0.062601 0.109469 -0.252458 -1.016673 0.187116 0.517001 0.037207 0.287103 -0.425680 -0.320406 -0.252337 -0.008097 0.630878 0.539994 0.121180 0.599017 -0.231818 -0.530332 -0.340980 -0.053659 0.005505 -0.440437 0.262180 -0.409910 -0.058377 -0.283212 0.219027 0.054544 -0.148922 -0.657941 0.021159 0.243916 0.253911 -0.098659 0.532584 0.142180 -0.318295 -0.143063 0.143960 0.082578 0.581663 -0.296122 -0.409630 -0.243016 0.105210 -0.259537 0.175364 -0.006427 0.314068 0.211465 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 7.075961 -2.511849 -3.403094 10.349401 0.153531 -4.195171 1.612558 4.400992 0.174263 -10.284036 -3.664691 4.592492 1.853660 -0.858734 1.507902 2.671721 0.838733 1.829053 -14.487868 3.395423 0.769926 -0.427815 -6.153471 -4.219636 -0.059617 -1.307378 2.367885 5.809484 -0.204627 6.908921 -4.763199 2.924091 5.814237 0.092855 5.991067 4.215400 1.098992 -0.799205 -3.529190 -1.240648 11.264135 6.891818 -4.207112 2.673352 0.848129 9.290722 2.706523 7.416223 -4.822609 -2.753453 2.301686 -1.375343 -4.092343 -1.621024 -8.756237 2.710791 8.598792 5.570525 -4.974609 5.517838 -4.754056 2.339573 5.063818 3.132546 12.565525 3.517802 8.020087 7.582357 10.378344 -6.215397 2.318413 0.596224 5.495410 -2.101193 4.578802 -4.460074 -5.561227 -11.746152 2.715892 -12.359804 -0.349999 0.820787 9.114090 -8.023555 2.425347 3.629181 3.600124 8.548113 -9.854607 1.421862 -8.500341 -1.217527 -2.780738 16.422646 0.063784 1.810443 1.131900 6.494707 1.779264 3.789414 0.993040 -7.583970 -0.874867 -14.642434 -6.314672 -1.657995 -3.536414 -0.370673 -8.097103 -1.625819 5.894637 6.354104 -11.949164 -1.457401 1.799232 1.288527 7.193541 -1.854222 -2.379854 2.380976 -2.288932 2.510016 4.918002 -5.696500 3.540337 -1.970343 1.707439 4.256687 4.452634 4.060755 -11.909936 0.100458 3.695262 -2.175874 -0.810201 2.783278 0.542128 -6.168466 4.271827 -8.278602 8.679365 -11.126736 -0.420151 -4.427448 -7.868989 -0.868734 6.548224 4.923071 3.193840 1.640998 -3.410589 1.207353 -11.000708 -17.409475 2.603172 3.342332 0.339145 -0.893322 -1.582974 0.409278 -5.596515 -0.597261 7.016048 -7.209434 -6.442632 -2.269771 8.962500 1.905062 -3.798617 -3.076263 2.439674 5.356873 2.929563 7.982511 -3.600070 -11.395405 -11.578368 -4.295702 7.372487 -1.623844 -1.391349 -1.868809 -2.370343 -10.019257 3.746412 -7.145333 5.553562 -1.594307 -3.032709 -10.125402 2.201888 -1.424340 0.421768 -0.049080 -6.729074 2.826287 1.714102 1.424669 -2.090469 2.426943 4.987713 -8.214323 -8.893439 1.941193 0.007950 11.096548 3.340710 2.087147 -2.076470 -2.151624 -7.198057 8.111315 -6.728833 4.279553 0.233754 -5.220692 6.787826 -7.220950 -4.666980 -6.482132 4.797915 1.512997 -1.974594 14.547181 8.908708 -8.073503 -1.986651 -4.730605 4.911398 2.631212 11.319640 -7.846227 -4.861505 2.502369 1.817556 -1.568063 -2.690350 3.093275 -1.555613 -0.344494 -7.944059 -4.302823 5.268162 4.669615 0.315855 1.639168 0.232045 -3.501741 -3.965354 10.329174 3.440675 1.741518 -7.241029 -12.951017 3.609251 -3.390404 -0.401829 -0.989036 -5.739343 -4.199873 -0.347242 0.689609 8.001010 7.445647 -5.046943 7.463266 -12.272570 -8.292561 -7.158942 1.097443 0.303251 -3.591694 3.399790 -4.637388 1.393808 -0.364640 3.499722 -2.583023 -3.629271 -3.745232 1.111975 4.408230 -0.244569 -5.988460 10.259262 1.865882 -2.015944 -2.616120 -0.333146 -3.385180 2.966564 -5.279640 -2.952464 -1.420830 5.079927 -6.100666 4.683891 1.347244 2.062936 3.221621 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.415548 -0.879282 0.606276 0.608437 0.473359 -0.152862 0.278922 0.347728 0.041961 -1.142145 -0.334523 -0.616897 -0.177314 -0.130429 0.364877 -0.069784 0.461955 -0.041405 -1.701265 0.209156 0.278112 0.007564 0.114155 -0.169581 0.103787 -0.629364 0.206739 0.927814 -0.028893 0.660547 -0.516409 -0.000375 0.560845 0.237427 0.680911 0.777592 0.485380 -0.154751 -0.075148 0.360203 1.449666 0.318747 -0.510838 0.070796 0.576463 0.940453 0.382663 0.542157 0.371677 -0.273390 0.469043 -0.917876 -0.291089 -0.294655 -1.078986 0.166030 1.078628 0.810465 -0.825369 0.549653 -0.476963 0.131291 0.220738 0.155572 0.983335 -0.015032 0.627820 0.333168 0.958991 -0.721367 -0.250378 0.402998 0.640803 0.170857 -0.068671 -0.574041 -0.182360 -2.663319 0.269708 -0.934029 -0.221597 -0.055216 -0.114017 -0.389377 0.161562 0.872471 -0.429128 0.537730 -0.549583 -0.179274 -1.033003 0.064739 0.486489 1.188470 -0.081598 -0.137410 0.590569 0.530409 0.320539 0.782780 0.453022 -0.752660 -0.721318 -1.874073 -0.633148 -0.393123 0.069078 -0.339101 -0.672404 -0.050353 1.002609 -0.035215 -0.745666 0.038684 0.360918 0.475439 -0.077813 -1.011137 -0.077086 -0.184608 -0.115598 0.343190 0.542503 -0.638040 0.146319 -0.699202 0.641162 0.424904 0.385026 -0.217892 0.004905 -0.149771 0.305820 0.210793 -0.281213 -0.161788 -0.121277 -0.519161 0.420039 -0.740100 0.957532 -0.782074 0.414754 -0.563866 -0.084119 -0.128513 1.346798 0.152669 -0.004596 0.516757 -0.777184 0.282125 -0.539984 -1.667695 0.131235 0.222962 0.412334 -0.046207 -0.270571 0.169080 -0.200738 -0.331060 -0.087597 -0.479363 -0.281873 -0.228163 -0.631173 0.093299 -0.266552 -0.336017 0.502947 1.166249 -0.095646 0.472971 -0.564274 -0.581424 -0.505105 -0.812587 0.589834 -0.269586 -0.108448 0.005406 -0.092301 -1.183680 0.858188 -0.576776 0.311649 -0.440040 -0.779619 -0.842596 0.195283 -0.469553 0.575601 0.308452 -0.621757 0.105130 -0.616126 0.350841 0.157760 0.085986 0.208254 -1.032444 -1.043330 -0.310443 0.164809 1.099669 -0.395729 0.051786 -0.017204 -0.335620 -0.272297 0.810725 -0.327242 0.141467 0.154526 -1.010966 0.648586 -0.155372 -0.294856 -0.493105 0.499800 0.433019 0.341553 1.478862 0.920566 -0.842389 -0.653489 -0.592576 0.115643 0.331850 1.136844 -0.430776 -0.170685 0.285916 0.242569 -0.118698 -0.360808 0.423894 0.151614 0.325685 -1.117136 -0.900395 0.265970 0.794313 -0.016135 0.381075 0.317220 0.447211 -0.705764 1.249598 -0.056034 0.380100 -0.448077 -1.145126 0.423229 0.824956 0.247084 0.239409 -0.789122 -0.527906 -0.151905 0.703134 0.886281 1.769506 -0.017819 0.817742 -0.487174 -0.768440 -0.554231 -0.208274 0.031128 -0.568711 0.264605 -0.539636 0.069506 -0.343189 0.188053 0.091742 -0.024558 -0.672127 -0.040369 0.170015 0.355308 -0.415122 0.836080 0.051078 -0.481407 -0.210231 0.188908 -0.031648 0.863063 0.321002 -0.447796 -0.398647 0.298583 -0.268485 0.343530 -0.036242 0.342932 0.209664 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.275774 -1.011791 0.495699 0.452549 0.438577 0.009514 0.118710 0.031844 0.220261 -0.740864 -0.106585 -0.337709 -0.194773 -0.014098 0.265949 -0.026641 0.356903 -0.241602 -0.952731 0.165149 0.049893 -0.047444 0.207132 0.020964 0.145207 -0.488355 0.564853 0.602127 -0.015625 0.309205 -0.371770 0.033820 0.307046 0.158541 0.413946 0.394957 0.392045 -0.141064 -0.296672 0.269353 0.954987 0.046682 -0.234384 0.135408 0.392433 0.533235 0.392502 0.696809 1.034545 -0.128543 0.532224 -0.604884 -0.145849 -0.217649 -0.811788 0.161043 0.551823 0.284375 -0.510678 0.198705 -0.208054 0.100464 0.058090 0.167513 0.646524 -0.108232 0.565750 0.122061 0.591844 -0.453918 -0.267204 0.429142 0.619026 0.423365 0.168370 -0.587186 -0.219923 -1.682133 0.103424 -0.068343 -0.108697 -0.235759 -0.458139 -0.139829 -0.095997 0.476521 -0.479687 0.330261 -0.216059 0.031108 -0.684599 0.165022 0.599900 0.586407 -0.125879 -0.097956 0.359746 0.206913 0.116396 0.563695 0.563447 -0.483255 -0.322621 -1.121827 -0.463574 -0.265241 0.176426 -0.305185 -0.514467 0.249952 0.315118 -0.231133 -0.292862 -0.028026 0.202047 0.321214 0.302286 -0.766277 0.254179 -0.329422 0.213727 0.382491 0.261179 -0.408147 0.118771 -0.651442 0.608285 0.331230 0.275878 -0.292060 0.433200 -0.159442 0.103972 0.556419 -0.135403 -0.199463 -0.028959 -0.428628 0.265448 -0.263668 0.546804 -0.416900 0.044468 -0.445337 0.258127 -0.077741 1.379011 -0.132672 0.337885 0.439709 -0.635510 0.121191 -0.252434 -1.091980 -0.105051 0.011110 0.121695 0.166313 -0.124393 0.222666 -0.028153 -0.260641 -0.148515 -0.296822 -0.187023 -0.160553 -1.359271 -0.028079 -0.066046 -0.264229 0.335581 0.754350 -0.091880 0.360697 -0.188994 -0.874097 -0.192074 -0.586618 0.278348 -0.215130 0.022534 0.031474 -0.053051 -0.789650 0.532216 -0.329717 0.078702 -0.221677 -0.754509 -0.451193 0.098310 -0.349968 0.672825 0.227778 -0.440776 0.063469 -0.732387 0.476029 0.227123 0.181671 -0.063140 -0.897629 -0.792368 -0.324073 0.089200 0.902696 -0.657778 -0.053817 0.094348 -0.326608 -0.139286 0.424987 -0.570303 0.010407 0.233824 -0.685034 0.264230 -0.021350 -0.110014 -0.301497 0.295376 0.264436 0.286952 0.933916 0.623668 -0.567534 -0.504005 -0.345943 0.078463 0.162760 0.769822 -0.250720 -0.017208 0.116571 0.411902 -0.086967 -0.252267 0.326523 0.127984 0.124982 -0.742458 -0.758620 0.010506 0.548250 -0.036261 -0.006182 0.276720 0.363824 -0.597130 0.792611 -0.089270 0.393897 -0.272369 -0.950605 0.165495 0.951415 0.062023 0.464105 -0.856529 -0.295643 -0.060725 0.424743 0.597562 1.028916 0.347943 0.497892 -0.221436 -0.397817 -0.266491 -0.400420 -0.121844 -0.261697 0.294620 -0.392117 -0.101113 -0.310009 0.039984 -0.209517 0.180051 -0.172268 -0.029519 -0.002760 0.279999 -0.056238 0.414865 0.182274 -0.314657 -0.160496 0.208207 -0.141967 0.598669 0.229937 -0.231676 -0.242798 0.039380 -0.069625 0.109431 -0.082865 0.287603 -0.169028 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 1.274956 -0.245173 -0.619571 1.894071 0.809172 -0.669175 -0.178901 0.526407 0.265108 -1.705330 -1.045479 1.059414 0.234703 0.093078 0.703389 0.551716 0.625347 0.593340 -1.533183 0.685133 -0.504650 -0.050579 -1.286282 -0.730270 -0.043729 -0.004011 0.122345 0.805981 0.166841 0.744652 -1.134763 0.658230 0.841337 -0.075356 1.131315 0.115408 0.945000 -0.522331 -1.048805 -0.731611 2.703288 0.319372 0.504367 1.339808 0.429582 1.497056 -0.235088 2.421592 0.502202 -0.375623 1.131952 -1.106803 -0.519023 0.125533 -2.348322 1.631489 0.804325 -0.004178 -1.373759 0.921827 0.098186 0.544367 0.891911 -0.703784 2.409196 0.750641 1.170838 1.298886 1.923340 -0.770491 -0.099066 0.356985 1.850794 0.436218 0.615386 -1.418861 0.047706 -2.010463 0.471150 -1.226997 1.127959 -0.837752 2.256193 -1.573930 0.284717 1.191719 0.092156 1.430476 -1.498191 0.378026 -1.700885 -0.000674 -0.138520 1.845565 0.002684 -0.100880 0.044948 0.578367 -0.186874 0.956959 -0.164463 -0.778326 -0.718923 -2.971084 -2.042939 0.352819 -0.320468 -0.753370 -1.468718 -0.119128 0.688030 1.099623 -1.777337 -0.847486 0.462791 -0.162945 0.362810 0.461092 -0.591875 -0.589822 -0.035433 0.945337 0.217916 -0.629253 0.640268 -1.086962 -0.166272 0.416850 1.436550 0.203184 -1.061079 -0.272462 -0.160305 0.349182 -0.237826 -0.511281 -0.018369 -1.435485 1.114310 -0.381853 1.029191 -1.744004 -0.877876 -1.394074 -1.037070 -0.065853 2.868554 0.286691 1.976812 1.301466 -0.741267 -0.440501 -2.107204 -2.682046 0.591043 0.243695 0.199201 0.259433 -0.148354 0.041406 -0.271458 -0.811101 1.388050 -1.876385 -1.651861 -0.746117 0.754624 -0.288105 -0.665630 -1.852434 0.968388 1.672176 -0.414752 0.540513 -0.410349 -1.909661 -1.041501 -0.846926 0.952088 -0.270078 0.889366 0.151188 -0.134352 -1.480962 0.315076 -1.763745 0.596190 -0.333087 -1.306957 -1.643327 0.231259 -0.338214 0.044730 0.026532 -1.492056 1.388898 0.153883 1.338950 -0.628371 0.637879 0.500490 -2.302288 -2.166848 -0.718333 0.105098 1.851568 0.903117 0.749873 -0.522276 -0.641321 -1.108457 1.140314 -2.546939 0.344065 0.625833 -0.938582 0.560996 -1.804108 -0.830764 -1.400384 0.750083 0.171793 -1.927535 1.880678 1.268613 -1.853050 -0.743544 -1.946781 1.103540 0.257242 3.095791 -0.937373 0.088172 0.563200 0.914786 -0.647298 -1.293172 0.842881 0.292089 -0.140920 -1.887544 -1.275834 0.617224 1.227172 0.085435 0.088867 0.477092 0.480980 -0.498243 2.145109 0.500024 0.129119 -1.123002 -2.992982 0.417828 1.255532 -0.128183 0.743355 -1.546376 -0.533593 -0.324834 -0.194750 1.488835 0.548685 1.091879 1.339131 -1.729255 -1.418388 -0.310570 0.309042 -0.094026 -0.885165 1.006252 -1.383758 -0.340801 -0.633741 0.498113 -0.994796 -0.176596 -1.727888 0.039027 0.703955 0.242757 -0.183693 1.725622 0.716775 -0.660044 0.074313 -0.361867 -0.065517 0.496671 -1.339213 -0.696563 -0.522825 -0.096056 -0.957213 0.803065 -0.021702 0.310060 0.416303 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 3.314023 -1.766105 -1.151194 4.067630 1.271632 -1.317694 -0.310987 1.153899 0.414772 -3.173543 -1.875253 3.719624 -0.111494 -0.142014 1.086947 0.593432 1.430675 -0.042858 -4.981865 1.491791 -1.652743 -1.017352 -2.962506 -1.667841 0.186691 0.665168 2.584998 2.206973 0.031529 1.482300 -2.291533 1.508246 0.816937 0.787166 3.090219 -0.305105 -0.151710 -1.377793 -2.556298 -2.459531 5.086920 1.409368 0.205024 2.908410 1.142385 2.554258 0.641372 4.616307 3.030256 0.272368 2.372653 -0.660013 -1.252512 0.283186 -5.047723 1.538022 1.447918 -0.948061 -1.776402 1.264588 -0.231921 1.410654 1.545801 -0.325852 5.784652 0.627636 3.437832 2.369361 3.086920 -1.833795 0.483035 0.417228 4.632364 1.284583 0.669551 -3.035448 -1.133961 -3.597297 0.601931 -3.366877 1.832487 -1.891492 3.236202 -1.912334 0.359631 0.120227 -0.124648 2.526245 -3.470924 1.162057 -3.351687 0.059170 -0.303706 3.735201 -0.628866 0.676876 0.642490 0.755196 -0.571357 1.811886 0.043233 -2.162856 1.085680 -6.111331 -2.599603 0.893449 -1.089723 -1.891578 -2.380263 1.078902 -0.101442 2.054862 -2.605418 -2.843246 -0.228118 -1.120698 1.171293 0.464869 -0.295064 -1.003682 -0.259357 3.136188 1.225697 -1.299571 1.605946 -2.350834 -0.285122 1.427853 3.369060 1.743696 -2.352388 -0.544575 1.004435 1.328549 -0.726133 -0.485770 -0.291560 -1.308290 1.450596 -1.024166 2.388410 -3.199407 -1.731758 -3.193725 -0.759852 0.226437 4.830475 1.534696 3.780276 3.010839 0.086528 0.301793 -3.684751 -5.909827 1.376828 0.479158 -0.864374 -0.178038 0.218639 0.569960 -1.311742 -2.081019 3.293527 -3.490566 -3.768756 -2.551388 -0.260472 0.302647 -1.221172 -1.853376 2.100155 2.763596 -0.283535 1.991569 -0.829893 -6.777038 -2.709604 -1.330679 1.987180 -0.892569 0.171926 0.627070 -0.061017 -2.508395 0.401891 -2.870375 1.353508 -0.528428 -2.530578 -2.934951 0.038855 -0.408776 1.639790 -0.162748 -2.489845 2.236422 0.763321 3.654799 -1.387920 2.633137 1.317272 -3.842280 -4.216120 -0.858676 0.856901 4.502862 0.742797 0.691587 -1.543094 -1.377593 -2.267483 2.596610 -5.296297 1.478306 0.943341 -1.962040 0.915607 -3.029309 -1.288671 -1.223937 1.593874 0.526655 -4.451184 3.863560 2.983645 -3.946427 -1.453217 -4.213174 2.606543 -0.050319 5.761110 -2.466609 -0.187517 0.696777 2.609745 -1.197517 -2.142905 1.563530 1.123235 -1.432090 -3.794963 -3.006679 1.615959 1.244029 0.635935 -0.828525 0.393499 0.211698 -1.422382 4.915049 0.764392 1.019710 -2.672493 -7.271777 0.203694 3.600649 -0.172326 2.063323 -3.676407 -2.075519 -1.272323 -1.551227 2.741309 0.339176 0.533330 2.374371 -2.992892 -2.146898 -2.287515 0.336053 -0.596627 -1.337857 2.347329 -2.563644 -0.975486 -1.153478 1.334638 -2.393943 0.396174 -2.146699 0.078886 0.948959 0.524258 -0.704896 2.843002 2.004577 -1.411240 -0.636706 -0.223508 -1.728353 1.445905 -3.785770 -1.255113 -0.830036 0.458859 -2.098274 1.011210 1.412225 1.939348 -0.479719 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.812816 -0.823775 -0.336236 1.099686 0.183728 -0.401399 0.185511 0.228966 0.170109 -1.420793 -0.386175 0.282788 0.152953 -0.319902 0.244212 0.495699 0.422526 0.117781 -1.568583 0.469977 0.173090 -0.175109 -0.685935 -0.104943 -0.054661 -0.733473 0.384676 0.669539 -0.096728 0.924207 -0.548464 0.417019 0.791893 -0.146655 0.807158 0.886405 0.231915 -0.087316 -0.144828 0.412862 1.675884 0.584538 -0.403341 0.158705 0.459591 1.203938 0.205071 1.356127 0.068897 -0.355971 0.723883 -0.120484 -0.373595 -0.105897 -1.372331 0.258256 1.057135 0.463926 -0.937637 0.653272 -0.706536 0.292312 0.517316 0.616240 1.606007 0.310796 0.979414 0.842656 1.345157 -0.632692 0.142713 0.284885 0.741986 -0.063063 0.842116 -0.472978 -0.694390 -1.617585 0.211114 -0.841646 0.064654 -0.014477 0.815992 -0.892136 -0.027534 0.638851 0.263979 1.113640 -0.966287 -0.026313 -1.178411 0.005295 0.058090 1.884028 0.014086 0.334170 -0.032074 0.746972 0.027862 0.488994 0.265856 -1.226193 -0.527797 -2.051621 -1.121312 -0.668633 -0.226311 -0.170999 -1.382688 -0.056342 0.789585 0.559491 -1.457533 0.244406 0.283202 0.170701 1.183489 -0.323414 -0.410285 0.061791 -0.167894 0.457995 0.424007 -0.427474 0.214386 -0.855754 0.728250 0.556463 0.419398 0.009926 -0.991191 0.170666 0.463669 0.050171 -0.211249 0.332190 0.253772 -1.022847 0.551664 -0.867669 1.022408 -1.382547 -0.132213 -0.831009 -0.826574 -0.234099 1.376801 0.600424 0.715567 0.185472 -0.798624 0.125725 -1.541525 -2.350471 0.052900 -0.113253 0.032277 -0.007297 -0.229770 0.029346 -0.474483 -0.000525 0.546473 -0.846294 -0.453375 -0.285606 0.382496 0.167150 -0.432062 -0.368583 -0.024038 0.800484 0.416409 0.933423 -0.471821 -1.568324 -1.336065 -0.652128 0.854304 -0.341931 0.117498 -0.249585 -0.347409 -1.470559 0.564537 -0.747221 0.355740 -0.533841 -0.419976 -1.164492 0.193988 -0.301811 0.244354 -0.085168 -0.967915 0.326294 -0.068920 0.122585 0.102591 0.204612 0.167370 -1.225074 -1.168188 0.211112 -0.075457 1.549394 0.267974 0.077632 0.039221 -0.353024 -0.985162 0.823485 -1.170675 0.400568 0.499835 -1.089315 0.840581 -0.711208 -0.681654 -0.707215 0.627946 0.026135 -0.055349 1.928322 1.220580 -1.133714 -0.307528 -0.485172 0.613692 0.311743 1.276811 -0.674761 -0.250380 0.311498 0.270163 -0.159766 -0.173574 0.508834 -0.227502 0.346315 -1.188099 -0.631539 0.720882 0.892939 -0.088993 0.025991 -0.061591 -0.295691 -0.491246 1.251656 0.303654 0.434111 -0.847121 -1.821634 0.339619 -0.458875 -0.145586 0.199732 -0.778516 -0.405482 -0.084599 0.091743 1.154173 0.835481 -0.250438 0.967683 -1.395386 -1.233883 -0.816019 -0.191739 -0.021710 -0.470913 0.585397 -0.706056 0.085623 -0.347486 0.640937 -0.308919 -0.407841 -0.281741 0.293453 0.431096 0.204499 -0.716782 1.125282 0.189440 -0.327372 -0.401936 0.079092 -0.293841 0.713236 -0.503670 -0.507503 -0.363783 0.593750 -0.690719 0.681066 -0.124700 0.635414 0.337725 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.288712 -0.182345 -0.056364 0.638894 0.058474 -0.162534 0.201836 0.225136 -0.067910 -0.984835 -0.521234 -0.025337 0.056315 -0.133741 0.244302 0.092531 0.167483 0.276134 -1.105612 0.166434 0.353014 -0.013412 -0.116209 -0.072434 0.013053 -0.371479 -0.229429 0.474751 0.016026 0.657034 -0.328712 0.265761 0.591009 0.084382 0.330990 0.604610 0.003609 -0.090770 0.099561 0.090946 0.926238 0.265653 -0.191500 0.076688 0.112872 0.803591 -0.006166 0.510277 -0.006569 -0.324828 0.405167 -0.480493 -0.231456 -0.051914 -0.650408 0.133430 0.577630 0.511574 -0.438033 0.407049 -0.513860 0.136214 0.270387 -0.113182 0.842438 0.344127 0.393132 0.514770 0.765044 -0.495790 0.083151 0.137823 0.190108 -0.125190 0.057311 -0.180356 -0.147544 -1.320455 0.056077 -0.955747 -0.177559 0.076803 0.782829 -0.585739 0.075424 0.445762 0.090282 0.684092 -0.476736 0.024673 -0.774407 -0.040542 0.067171 0.722486 0.129917 -0.026754 0.029242 0.348030 0.056186 0.330572 -0.051371 -0.603466 -0.678100 -1.371693 -0.605486 -0.316876 -0.046301 0.006426 -0.856389 -0.107570 0.750769 0.481143 -1.001007 -0.003432 0.259645 0.295962 -0.111915 -0.010605 -0.478577 -0.040768 -0.034116 0.238607 0.464812 -0.341888 0.165093 -0.547442 0.149290 0.174933 0.233918 0.018236 -0.483417 -0.214524 0.239273 -0.104723 -0.051376 0.193518 0.141722 -0.208571 0.364273 -0.557998 0.704219 -0.828336 0.115705 -0.403299 -0.493433 -0.215609 0.943699 0.662070 0.230414 0.145752 -0.432287 0.075987 -0.770549 -1.128726 0.089134 -0.041685 0.369864 -0.027317 -0.186856 0.107918 -0.300696 0.087677 0.091052 -0.423804 -0.272389 -0.064184 0.343340 0.088407 -0.263322 -0.461480 0.062424 0.486351 -0.153498 0.447294 -0.354395 -0.373852 -0.756142 -0.513709 0.610177 -0.227858 0.003970 -0.259546 -0.057425 -0.696156 0.340147 -0.497601 0.035775 -0.155009 -0.378936 -0.818328 0.185194 -0.196834 -0.129683 0.137752 -0.516828 0.127842 0.244204 0.192818 0.117488 0.106110 0.081151 -0.549927 -0.609856 -0.057532 -0.169184 0.631041 0.476428 0.092322 -0.415257 -0.263686 -0.515593 0.690764 -0.403958 0.287292 0.019556 -0.564701 0.585300 -0.462407 -0.241740 -0.420578 0.344736 0.184865 -0.855069 0.849430 0.635910 -0.578511 -0.180278 -0.480702 0.246407 0.306386 0.745566 -0.372529 -0.135886 0.171500 0.043487 -0.024747 -0.232923 0.279527 -0.188468 0.126461 -0.656980 -0.356811 0.529159 0.485377 -0.027422 0.204459 0.166986 0.207616 0.043216 0.697144 0.212527 -0.051068 -0.404151 -1.127857 0.352541 0.390413 0.085333 0.205091 -0.474623 -0.252921 -0.036081 -0.047731 0.689763 0.578866 -0.216304 0.652320 -0.571577 -0.655067 -0.507995 0.060612 0.088209 -0.337702 0.330575 -0.289984 0.082707 -0.014775 0.203764 0.095903 -0.366815 -0.586087 0.165380 0.439225 0.175991 -0.273038 0.753944 0.048346 -0.328308 -0.195279 -0.001785 -0.116449 0.246709 -0.297920 -0.273358 -0.063714 0.350445 -0.424724 0.360812 -0.108472 0.130605 0.284150 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.074600 0.002380 0.068417 0.321455 0.044167 0.148484 0.097663 -0.047049 -0.100485 -0.475147 -0.290641 -0.037584 -0.010825 0.112113 0.115880 -0.048355 0.092605 0.143591 -0.324736 -0.112771 0.184552 -0.057540 0.145796 0.079142 0.014726 -0.182370 -0.036456 0.251301 0.060439 0.283785 -0.113117 0.187474 0.286009 0.147256 0.064794 0.213855 0.007340 -0.061062 -0.129166 -0.112629 0.325616 -0.052470 -0.026013 0.037734 -0.116595 0.363614 0.062824 -0.003846 0.202681 -0.166021 0.101296 -0.264360 -0.026946 -0.062199 -0.244327 0.013774 0.020268 0.225059 -0.094691 0.105401 -0.218259 0.061066 0.042237 -0.222643 0.258996 0.074664 0.166875 0.227262 0.166150 -0.347142 -0.003646 0.101977 -0.079356 0.035469 -0.128568 0.055009 0.040149 -0.558580 -0.052065 -0.376384 -0.185430 0.061685 0.322138 -0.177553 -0.102222 0.127979 -0.105605 0.265791 -0.085100 0.119370 -0.402394 -0.036060 0.153652 -0.060518 0.218325 -0.175917 0.042021 0.058411 0.011276 0.158269 -0.016203 -0.206398 -0.264735 -0.525948 -0.225454 -0.132536 0.128544 0.064087 -0.276108 0.011975 0.339809 0.340527 -0.362036 -0.083952 0.097728 0.232941 -0.331625 -0.070991 -0.147744 -0.078796 0.163249 0.092467 0.333069 -0.152916 0.173021 -0.141916 -0.008901 -0.057058 0.134612 0.041163 -0.008025 -0.307562 0.086126 0.003193 0.047304 0.052108 0.098764 0.167127 0.180369 -0.144611 0.334678 -0.233747 0.150273 -0.094542 -0.119940 -0.163489 0.509396 0.386774 0.128564 0.080799 -0.181007 0.064469 -0.185825 -0.362622 0.018787 0.090241 0.195685 0.111796 -0.122455 0.214532 -0.198445 0.135784 0.015936 -0.107674 -0.160964 0.116182 -0.180307 0.042184 -0.104437 -0.288074 0.106043 0.087725 -0.225349 0.232582 -0.129543 -0.045860 -0.259407 -0.261580 0.265405 -0.162040 -0.029604 -0.106429 -0.035929 -0.157459 0.113678 -0.219552 -0.096817 0.058535 -0.290158 -0.380137 0.142621 -0.111957 -0.200961 0.253661 -0.215334 0.036417 0.138202 0.021737 0.113256 0.045796 -0.016993 -0.054743 -0.136986 -0.085415 -0.211421 0.090369 0.250710 -0.001203 -0.394950 -0.213403 -0.126459 0.318010 -0.041121 0.172069 -0.082021 -0.193630 0.106522 -0.217780 0.037826 -0.035909 0.127387 0.209326 -0.740829 0.118894 0.270017 -0.168050 -0.098819 -0.178328 0.045305 0.093406 0.260250 -0.191826 -0.017820 0.027910 0.066754 0.059770 -0.085841 0.071363 -0.025569 -0.156964 -0.266835 -0.194402 0.232756 0.131861 0.008564 0.083701 0.280766 0.257812 0.156467 0.256445 0.121309 -0.068031 -0.085659 -0.438565 0.201526 0.439564 0.039251 0.237451 -0.250858 -0.037217 0.031380 -0.225324 0.236445 0.050520 -0.153018 0.330965 -0.044406 -0.155841 -0.229770 -0.096511 0.044105 -0.123488 0.227135 -0.057737 0.011369 -0.004934 -0.076363 -0.001497 -0.078848 -0.186529 0.095165 0.210209 0.096346 0.125452 0.303082 0.026009 -0.202059 -0.079420 0.019095 -0.120025 0.071920 -0.286095 -0.092293 0.124608 0.123687 -0.150749 -0.054832 -0.098389 -0.078435 0.070029 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 2.059738 0.054533 -0.805676 2.407899 -0.293432 -2.183412 1.101072 1.914097 -0.462478 -3.228101 -0.856307 1.263099 0.510550 -1.552659 -0.166479 0.737242 0.324120 1.497042 -5.770436 1.400644 1.072085 0.493353 -1.981099 -2.033692 -0.265331 -1.096400 -0.138038 2.232312 -0.361755 2.850382 -1.243325 0.086776 1.994099 0.057240 2.126402 2.883711 0.451768 0.095182 0.558726 0.808356 3.792930 3.001357 -1.990819 0.179018 1.500449 3.349025 1.160141 0.160773 -3.286072 -0.972218 -0.841462 1.007901 -1.761949 -1.076711 -2.487166 0.079093 3.241456 2.714986 -2.157886 2.603965 -1.957331 0.240231 1.739679 1.630509 3.631898 0.646943 1.525129 2.144378 3.908047 -1.643021 0.639475 -0.183495 1.656689 -1.622623 1.746204 -0.174524 -2.616247 -4.801795 0.633789 -5.910449 -0.550810 1.333531 3.004755 -2.670747 1.470684 1.818874 1.724234 2.518334 -3.144842 -1.537772 -2.541182 -0.455766 -1.541779 6.823896 0.356379 1.076291 0.389923 2.759031 1.330174 1.168684 -0.077744 -3.151058 -0.711468 -5.826921 -1.278950 -1.839325 -1.687522 -0.305330 -2.450959 -1.622155 3.410483 3.210185 -4.591359 0.583759 1.297366 0.058435 1.141623 -2.643257 -1.232318 2.093308 -2.193176 0.056267 1.629921 -2.049031 -0.181609 0.693644 0.841156 1.133267 0.688942 0.997722 -4.634378 0.536325 1.834356 -1.568792 -0.591832 1.145977 -0.225448 -2.275232 1.032349 -4.052949 3.143144 -3.378166 1.389014 -0.938602 -2.794135 -0.536386 -0.243792 1.867528 -0.732047 -0.699068 -0.650068 0.714391 -3.660409 -6.324518 1.935660 0.643968 0.435312 -1.324430 -0.701208 -0.935664 -1.849833 -0.315237 2.087145 -1.886994 -0.770990 -0.544787 5.241334 0.961415 -1.427009 -0.178693 -0.085198 2.121453 2.483410 1.780839 -2.374787 -2.535408 -3.738182 -1.424301 2.632206 -0.493136 -1.059779 -0.912665 -1.324898 -2.936367 1.972554 -1.959001 2.281729 -1.576267 0.368641 -3.238157 0.364821 -0.666928 -0.162543 -0.539143 -1.952764 0.349415 0.616951 -1.526117 -0.673610 -0.276760 2.005458 -1.880947 -1.934708 1.356723 0.382498 2.919881 1.660563 1.049220 -1.043972 0.189519 -2.495685 2.614175 -0.769114 1.309238 0.134643 -2.619553 3.597876 -1.450851 -1.670083 -1.550817 1.861608 0.180823 0.790225 5.673395 3.507237 -2.626941 -0.577856 -0.469803 0.854058 1.502032 3.029768 -2.704728 -2.071308 1.226194 -1.055926 -0.413986 -0.167984 0.993357 -0.745793 1.701111 -2.700290 -0.703766 2.041433 2.023701 -0.134496 1.383586 -0.852330 -1.740649 -1.439530 3.186234 0.868620 1.127236 -2.731228 -2.971282 1.524531 -3.651698 0.586709 -1.137050 0.023573 -1.674369 0.010176 0.873748 2.776860 3.143485 -3.607068 2.289980 -4.234068 -3.510046 -2.586720 0.491224 0.832052 -1.581307 1.194673 -1.387646 0.974845 -0.413870 1.815869 0.383833 -1.505165 -0.853560 0.723738 1.313360 0.726986 -3.451243 3.508833 -0.673502 -0.815766 -0.830539 -0.388014 -0.285329 1.322378 -0.833503 -1.294236 -1.306965 2.566281 -1.934111 2.744708 0.211792 1.396889 2.200932 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 2.206554 -0.269356 -0.602733 3.047863 -0.255281 -2.101910 1.321190 2.223464 -0.647318 -4.572019 -1.517353 0.080374 0.586246 -1.299677 0.245708 0.924508 0.440135 1.476376 -7.263615 1.351459 1.857526 0.516207 -1.462116 -1.882309 -0.147936 -1.477343 -1.068782 2.539788 -0.307056 3.673043 -1.638476 0.572152 2.694369 0.102794 2.245878 3.383934 0.399827 0.065877 0.952061 1.101017 4.620445 3.020616 -2.590904 -0.223468 1.313167 4.231504 0.763401 1.040714 -3.974224 -1.384666 0.017347 -0.528796 -1.905136 -0.847675 -2.872005 0.325896 4.532316 4.047378 -2.429387 2.890706 -2.777295 0.501462 1.935966 1.413660 4.484177 1.437337 1.926616 2.759214 4.562787 -2.334996 0.779328 -0.196921 1.347976 -2.026606 1.139262 -0.746379 -2.152929 -7.169892 0.853419 -7.091905 -0.859583 1.427623 3.716474 -3.310821 1.589166 2.467265 1.682424 3.291434 -3.656406 -1.000573 -3.438633 -0.468157 -1.239849 7.607311 0.160299 0.760087 0.452319 3.212106 1.480484 1.471154 -0.032435 -3.441855 -2.251638 -6.959937 -2.074344 -1.995515 -1.455929 0.046023 -3.675315 -1.711360 4.678829 2.754551 -5.706479 0.682116 1.477334 1.069483 1.042733 -1.893716 -2.146035 1.877977 -2.360784 0.227753 2.191931 -2.334471 0.215696 -0.701439 0.916922 1.451756 0.941977 0.865782 -5.397290 0.457159 1.899855 -2.248865 -0.558032 1.435750 0.087613 -2.166744 1.488451 -4.731778 3.916558 -4.526155 1.568041 -1.412017 -3.502748 -0.626648 0.991686 2.806372 -1.110106 -0.296094 -1.576623 0.752164 -4.452264 -7.002871 1.522649 0.888827 1.206731 -1.260496 -1.055576 -0.609847 -2.047804 -0.095270 1.782891 -2.311737 -1.134782 -0.811861 5.788515 1.086512 -1.681341 -0.690361 0.090597 2.896597 1.429316 2.386934 -2.674458 -1.875769 -4.890580 -2.160918 3.304182 -0.772298 -0.917249 -1.357479 -0.930213 -4.250974 2.575126 -2.400348 2.227665 -1.468177 -0.327806 -4.232180 0.869644 -0.860425 -0.447450 -0.063594 -2.436237 0.393468 0.758744 -0.931621 -0.314437 -0.264118 1.993135 -2.696530 -2.872236 1.033876 0.095931 3.600379 1.905920 0.852406 -1.060775 -0.374430 -2.930753 3.625928 -0.544998 1.606563 -0.083975 -2.832603 4.053043 -1.981706 -1.821234 -2.350047 2.138601 0.549332 0.293386 6.720614 3.810570 -3.083822 -0.787503 -1.475769 1.284660 1.656618 3.677967 -2.849517 -2.201100 1.342013 -0.918546 -0.512782 -0.572095 1.319253 -1.084884 1.736502 -3.363544 -1.036038 2.452747 2.539883 -0.205928 1.959800 -0.287110 -1.378691 -1.482429 3.871965 1.175223 0.564928 -2.745472 -4.002089 1.902210 -2.882784 0.761006 -1.327016 -0.743951 -1.939097 -0.046635 1.603221 3.551160 4.796978 -3.552683 3.085078 -4.721218 -4.077117 -3.008940 0.798977 0.819580 -2.047556 0.893426 -1.665639 1.110157 0.047415 1.919234 0.917547 -2.259784 -2.143768 0.703559 2.179705 0.582454 -3.686789 4.260314 -0.469550 -1.146825 -1.108514 -0.087507 -0.308826 1.601595 -0.435505 -1.446897 -1.158743 2.811556 -2.482965 2.934606 0.223956 1.012119 2.484404 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.356084 0.085656 -0.559251 1.416418 -0.359975 -0.713814 0.457259 0.360342 -0.259334 -1.744779 -0.180377 0.193027 0.269368 -0.175504 -0.206050 0.665807 -0.128136 0.650244 -1.889643 0.399471 0.863927 0.391961 -0.290549 -0.512048 0.067505 -0.449320 -0.048081 0.657829 -0.045577 1.382465 -0.472663 0.517871 1.203178 -0.111755 0.273170 1.161172 0.342144 0.454284 0.188693 0.416478 1.163985 0.727289 -0.846715 -0.180646 -0.056895 1.525855 0.582482 0.180203 -1.721717 -0.748125 -0.332274 0.282635 -0.545103 -0.524966 -0.725274 0.251150 1.141346 1.708590 -0.669805 0.893492 -0.832113 0.171702 0.846470 0.633050 1.544446 0.746599 0.733382 1.295645 1.726791 -0.811983 0.483281 -0.110994 0.116552 -0.911918 0.875380 -0.118714 -0.965983 -1.634973 -0.052172 -2.180711 -0.493823 0.786314 1.370161 -1.338243 0.290990 0.398073 0.747106 1.488956 -1.265335 -0.024573 -1.221477 -0.198154 -0.389486 2.729888 0.308523 0.239943 -0.247301 1.226528 0.463654 0.247992 -0.014756 -1.059614 -0.423967 -1.722693 -0.666908 -0.827321 -0.375973 0.488070 -1.772250 -0.669400 1.079270 1.249500 -2.557517 0.277013 0.545005 0.530953 1.087634 -0.596891 -0.550755 0.982203 -0.649971 -0.249849 0.555638 -0.783464 0.262249 0.025758 0.095044 0.354292 0.162037 0.520197 -2.389334 0.109433 0.468207 -1.019213 0.193294 1.039242 0.428166 -0.641029 0.524474 -1.791507 1.265596 -1.723690 0.225065 0.015015 -1.665418 -0.443208 0.153541 0.954168 -0.253030 -0.837484 -0.788644 -0.112652 -1.917189 -2.498801 0.441854 0.396632 0.206707 0.157550 -0.485291 -0.159694 -0.969742 0.320920 1.123078 -0.711297 -0.438440 -0.133896 2.033615 0.506118 -0.383119 -0.323876 -0.373109 0.508247 0.654786 1.112962 -0.686144 -0.729467 -2.289081 -0.589521 1.142136 -0.288346 -0.330771 -0.859715 -0.572568 -1.667271 0.789486 -0.882112 0.601890 -0.208515 0.094940 -1.614408 0.595158 -0.241464 -0.492209 -0.027656 -0.860692 0.061872 0.248417 -0.887980 0.045053 -0.250238 0.590129 -0.591074 -0.769268 0.887376 -0.245227 0.857288 0.646148 0.313248 -0.460685 -0.300539 -1.102938 1.304339 -0.079335 0.717958 0.173849 -0.351907 1.489961 -0.904235 -0.410517 -0.795502 0.698050 0.108545 -0.088866 1.995087 1.226199 -0.894427 0.017585 0.056335 0.568329 0.655746 0.832940 -1.153944 -1.067027 0.525889 -0.276955 -0.120878 -0.067982 0.241174 -0.712740 0.561606 -0.910589 -0.010532 0.826058 0.751206 -0.266293 0.537728 -0.092393 -1.162902 -0.432257 1.002822 0.729368 0.210546 -0.961030 -1.098266 0.507775 -1.917699 0.185719 -0.620357 -0.280201 -0.243549 0.584803 0.133655 1.264804 0.995930 -1.647975 1.095122 -2.200890 -1.498771 -0.805836 0.155477 0.285065 -0.389986 0.360615 -0.405939 0.490363 0.341896 0.646296 -0.040730 -1.140885 -0.021860 0.397713 1.169596 -0.351997 -1.160869 1.561994 -0.301309 -0.150463 -0.465062 0.109059 -0.274794 0.131488 -0.697551 -0.420184 -0.072095 1.148644 -1.133014 1.214109 -0.297411 0.025047 0.893001 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.167711 0.358335 -2.077065 4.723051 -1.059079 -1.771395 1.585757 1.612634 -0.493852 -5.839880 -1.094481 2.586473 1.099274 -0.256815 -1.056161 2.012538 -0.073073 2.060482 -7.264507 0.945976 2.353210 0.873442 -1.363497 -1.876743 0.064132 -1.550607 1.027406 2.330086 0.101782 4.682845 -1.462600 1.549652 3.956579 -0.229814 1.508170 3.928372 0.699948 0.978914 -0.540858 0.064577 4.198396 3.432441 -2.671362 0.144163 -0.418361 5.257291 2.413520 0.994118 -4.710715 -2.413634 -1.518875 1.290930 -2.550875 -1.814355 -2.725003 0.452701 3.254326 4.754581 -2.081122 3.037213 -2.416107 0.575868 2.674599 2.204077 4.872419 1.693119 2.785136 4.102235 5.304594 -3.271043 1.518209 -0.124825 0.485227 -2.273194 3.484315 -0.752666 -4.053949 -3.873901 0.426672 -7.678013 -1.896503 2.165978 5.121284 -4.470199 0.950769 0.962620 2.519678 4.763109 -4.167366 -0.271461 -4.143098 -0.780660 -1.595933 9.262847 1.164761 1.121982 -0.417392 3.801611 1.507246 0.938348 0.302031 -4.172625 -0.338075 -5.869947 -1.340385 -3.168606 -1.189236 1.830913 -4.716188 -2.012415 2.577657 5.261353 -8.053491 0.699856 1.801122 1.256523 4.123517 -1.732546 -1.064804 3.251409 -1.829235 -0.713780 2.465912 -3.221627 0.845487 1.560614 0.430353 1.127095 0.630520 2.220944 -8.368095 -0.005393 2.260532 -2.945550 0.639033 3.302449 1.401458 -2.296419 1.835143 -5.844384 4.298122 -5.284210 0.705422 0.108281 -5.318639 -1.838470 0.478542 3.375039 -0.176989 -2.498930 -1.454208 -0.007485 -5.979019 -8.679933 1.745610 1.658927 0.269844 0.356867 -1.419094 -0.108313 -3.937329 1.159114 3.563134 -2.154095 -1.736350 0.060138 6.759618 1.630333 -1.438446 -0.516259 -0.912491 0.802415 2.842467 4.293452 -2.402156 -4.669295 -7.431446 -1.921636 4.156555 -1.244152 -1.407632 -2.567545 -2.347672 -4.376527 1.792344 -3.110070 2.477504 -0.683256 0.174266 -5.505616 1.947663 -0.848147 -1.375610 0.410909 -3.048385 0.210200 1.542500 -2.544538 -0.240007 -0.550920 2.228766 -1.993139 -1.985591 3.066621 -1.281402 3.651374 2.308218 0.706286 -1.831015 -0.884723 -3.757448 4.037143 -0.741700 2.742651 -0.168614 -1.424143 4.557772 -3.019820 -1.006224 -2.564271 2.516833 0.685853 -0.864434 6.886249 4.649504 -2.908615 0.087193 0.584692 1.571471 2.063671 2.841011 -4.394178 -4.263286 1.612711 -1.293191 -0.192451 0.072467 0.731454 -2.012979 1.051606 -3.200002 -0.186755 3.035205 2.103931 -0.666563 1.545052 0.194745 -3.793630 -0.847889 3.738139 2.390043 1.029262 -3.896675 -5.021273 2.185758 -5.755084 0.180242 -2.000749 -0.830851 -1.160296 1.879615 -0.444357 3.933466 2.671814 -5.797740 3.770349 -7.303529 -4.875538 -3.505450 -0.075997 1.140533 -0.889835 1.284724 -1.341749 1.837865 0.484851 1.780428 -0.555880 -3.342493 0.835784 1.755955 3.605209 -0.654347 -3.340716 5.359274 -0.795940 -0.436689 -1.443960 0.005209 -1.334707 0.450030 -3.181956 -1.208828 0.027036 3.873690 -3.588099 3.177919 -0.342789 0.350718 2.678442 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.667788 0.275765 -2.603501 4.695788 -1.179973 -0.980332 0.822131 -0.292023 -0.421793 -5.227520 -0.264728 2.131049 0.763790 0.696338 -1.336970 2.867520 -0.170990 1.008306 -3.376515 0.560210 2.318570 0.746021 -0.515764 -0.002483 0.630622 -1.132188 1.259964 0.840788 0.158587 3.558141 -0.973381 2.805747 3.627017 -0.820877 -0.167971 2.552478 0.122398 1.748981 -0.075682 0.072105 2.129595 0.631904 -1.311064 -0.091582 -1.482777 4.076630 1.393595 2.339367 -3.295761 -2.354188 -0.201107 1.828211 -1.235118 -1.168434 -1.724765 1.016739 1.380595 3.794266 -1.256053 1.431893 -1.527343 0.812345 2.308686 1.915086 4.219820 2.964988 2.513225 4.278982 4.351652 -2.101057 1.757977 0.017075 -0.380484 -1.561581 2.966288 -1.025251 -2.553880 0.107813 -0.839282 -4.010853 -1.225710 1.487317 4.780358 -3.624578 -0.725420 -1.266543 2.024993 4.833194 -2.898607 1.510396 -3.473559 -0.390955 -0.620880 6.145888 0.736268 0.877880 -1.742058 2.712185 0.068353 -0.003373 -0.345630 -2.524614 -0.322596 -2.170958 -1.867647 -2.514131 -0.026801 2.549070 -6.112548 -0.901589 -0.202544 3.241585 -7.491809 0.208640 0.849054 1.504004 5.262847 1.785068 -1.314570 1.906361 -0.572535 -0.695826 0.620578 -1.039923 1.440387 -0.673834 -0.629258 0.530288 0.357841 1.989672 -7.922946 0.183515 0.713149 -2.954458 1.540174 4.043241 2.532402 -0.937435 1.502797 -3.941356 2.693273 -5.211092 -1.745998 0.294315 -5.169864 -1.831193 0.871739 3.376381 1.200483 -3.071381 -1.898755 -1.515371 -6.248160 -5.435084 -0.110677 0.447429 -0.193604 2.177082 -1.310720 0.366826 -3.273678 1.654095 3.634570 -1.685514 -1.725571 -0.807048 4.756225 1.446232 -0.227915 -1.002305 -2.037314 -0.619489 0.822076 3.966595 -0.787752 -3.705804 -7.731929 -1.125805 2.796754 -1.193862 -0.327876 -2.983612 -1.645246 -4.188180 0.763260 -2.409088 0.259421 0.158723 0.266693 -4.461692 2.717810 -0.411730 -2.037977 0.145538 -2.418238 0.301453 1.646620 -1.776009 0.855746 -0.304279 0.151045 -1.222068 -1.520865 3.374036 -1.667923 1.824563 2.190996 -0.052073 -1.145132 -1.852846 -3.499307 3.267077 -0.883877 2.535669 1.396715 0.952771 3.124200 -3.276809 0.255534 -2.147040 1.555806 0.035518 -3.361997 3.734999 2.539624 -2.243179 0.705614 0.506068 2.270073 1.197645 0.804396 -2.910168 -3.140309 1.211755 0.007104 -0.164137 0.097592 0.146909 -2.235079 0.769416 -2.143691 0.481604 2.627640 1.207993 -1.221804 0.216475 0.085300 -4.366453 0.390005 1.959331 2.842202 0.417103 -2.450519 -4.374049 0.475124 -5.445782 -0.309854 -1.345476 -1.463705 0.206190 2.493982 -1.817534 3.396408 -0.902856 -4.098216 2.958980 -6.672382 -3.738500 -1.678240 -0.207437 0.430607 0.283305 0.893526 -0.732013 0.957343 1.477264 1.678246 -1.446922 -3.974163 1.579717 1.760972 4.408697 -2.298952 -1.737526 3.829670 -0.452633 0.397877 -1.567472 0.996853 -1.344498 -0.709148 -4.484616 -0.720453 0.914387 2.837104 -3.735299 2.838923 -0.910025 -0.166744 1.518526 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 8.739142 0.416136 -6.631625 13.952260 -2.549958 -6.960928 4.639985 6.671879 -0.526541 -16.942247 -4.429411 8.267874 3.895508 -3.254156 -1.415023 5.140519 0.093564 6.693050 -22.981462 4.477231 5.984758 2.309121 -7.151485 -6.909113 -0.571715 -4.654435 1.499827 7.208648 -0.196762 13.876102 -4.913341 3.702609 11.246769 -1.011946 6.826458 11.981233 1.700221 1.595546 -0.956073 0.973157 15.146781 12.631349 -7.883045 1.647652 0.957717 15.753742 5.342020 4.776613 -14.402082 -6.410203 -2.838315 3.503800 -7.608419 -4.495663 -9.735025 1.862769 12.216947 12.168062 -7.483097 10.027248 -7.971009 1.660149 8.259662 6.860970 15.877002 5.414461 8.257493 12.285620 17.142475 -9.023041 4.549762 -0.612955 3.555211 -7.153929 11.262478 -2.025487 -12.668154 -13.545630 2.242141 -22.867485 -4.114251 5.393663 15.940154 -14.063156 4.650186 5.324504 8.902150 13.976853 -13.417403 -2.389112 -12.214108 -2.509276 -6.176060 28.958214 2.517095 4.649755 -1.123887 11.664237 4.226912 3.271741 0.885740 -13.891360 -1.703236 -21.013103 -5.823491 -8.786238 -5.382717 3.384761 -13.722180 -6.149323 9.598756 15.565166 -23.568524 2.441671 5.114868 2.417018 11.985777 -6.044645 -4.390914 9.102554 -6.117329 -1.161929 7.106943 -9.794312 1.741881 3.025419 2.172646 4.659647 2.507191 5.808364 -23.519085 0.752637 7.071701 -7.361178 0.151785 8.521774 2.847930 -9.837819 5.676265 -17.389166 13.445224 -16.225850 2.121186 -2.269951 -15.838222 -4.502312 2.509692 8.860551 0.645944 -5.419262 -4.470334 0.979477 -18.315119 -27.760442 6.104417 3.616424 1.124688 -1.248396 -3.640813 -1.696113 -11.013614 2.531442 10.275244 -7.802997 -5.076241 -0.173909 21.969847 3.928027 -5.542402 -1.793874 -1.948384 4.569985 9.774544 12.179045 -7.700178 -14.223970 -21.043955 -5.873242 12.914013 -3.113103 -3.544116 -6.748734 -6.353667 -13.568976 5.503400 -9.724938 8.910624 -3.691789 0.808992 -16.388979 3.983556 -2.408660 -2.586110 -0.205606 -9.622713 1.634325 4.861733 -6.012166 -2.034743 -0.733501 7.552894 -8.114202 -7.823914 7.896113 -2.389584 13.447532 7.571474 3.148819 -4.613816 -1.565517 -12.161224 11.872198 -5.051796 7.525273 -0.284686 -7.346231 14.376999 -9.367777 -6.276791 -9.294721 7.722357 1.192056 -0.115513 22.602114 14.029134 -9.979474 -0.234539 -0.160973 5.283459 6.305416 11.434482 -12.817394 -11.453990 4.979748 -3.865833 -1.005598 -1.059368 3.272635 -5.890987 4.307673 -10.435715 -1.539710 9.973045 7.507336 -1.525637 4.661660 -0.696088 -10.218256 -3.538712 12.562883 7.011284 3.308958 -12.777629 -15.346012 6.906092 -17.042892 0.646703 -6.006683 -2.599395 -4.937819 3.453181 0.539887 12.275080 10.046456 -15.218374 11.358262 -21.979211 -15.461257 -11.244210 0.898262 3.467684 -4.223677 4.113509 -5.144596 5.331270 0.458531 6.514860 -0.744388 -9.395695 -0.073994 4.777423 8.919463 -0.520617 -11.667054 16.612868 -1.212556 -2.113539 -3.810415 -1.039062 -3.667990 2.125538 -8.212150 -4.237025 -1.654062 11.300928 -10.331761 10.599674 -0.705455 2.829400 8.386436 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.337444 -0.004493 -0.132116 0.648163 -0.146520 -0.613164 0.332664 0.446837 -0.211783 -0.911119 -0.159868 -0.079853 0.153585 -0.386353 0.054876 0.188317 -0.063048 0.508913 -1.405709 0.367341 0.428731 0.227375 -0.326915 -0.556088 -0.082403 -0.317058 -0.245032 0.587436 -0.098304 0.824490 -0.350541 0.014079 0.604336 0.020675 0.397914 0.791959 0.350341 0.107728 0.181472 0.445880 0.968072 0.676494 -0.616466 -0.136970 0.298768 0.897790 0.330740 -0.125937 -1.084622 -0.337950 -0.218369 0.028886 -0.368935 -0.317827 -0.560527 0.069263 0.961362 1.033022 -0.537011 0.723638 -0.661033 0.043781 0.476480 0.360699 0.940484 0.235388 0.355352 0.589978 1.078654 -0.487838 0.164556 -0.076748 0.281193 -0.643334 0.448268 0.063890 -0.586766 -1.835776 0.119039 -1.559618 -0.251630 0.535561 0.675474 -0.768367 0.425382 0.730406 0.451845 0.698651 -0.847417 -0.332641 -0.692652 -0.126819 -0.312650 1.821291 0.191198 0.131381 0.054130 0.791841 0.467271 0.310749 0.046817 -0.737759 -0.414360 -1.563335 -0.464831 -0.432883 -0.440818 -0.039734 -0.775176 -0.522724 1.300861 0.780293 -1.328446 0.267405 0.437445 0.240127 0.236093 -0.941892 -0.388093 0.661423 -0.574354 -0.064790 0.505420 -0.620051 -0.004958 0.114662 0.290392 0.299429 0.144837 0.145863 -1.081415 0.084982 0.399574 -0.484799 -0.129919 0.290752 -0.045179 -0.590876 0.300619 -1.149089 0.882832 -0.907288 0.555306 -0.143727 -0.800621 -0.115517 0.117101 0.428418 -0.381933 -0.255062 -0.500643 0.190298 -0.923977 -1.738420 0.496331 0.277124 0.232494 -0.289663 -0.254218 -0.254741 -0.399859 0.006311 0.525310 -0.502442 -0.149179 -0.001022 1.267884 0.245954 -0.410194 -0.203962 -0.000416 0.695398 0.613106 0.449745 -0.607302 -0.262038 -0.983753 -0.452244 0.722561 -0.090411 -0.271002 -0.316318 -0.331707 -0.983495 0.703679 -0.509152 0.618667 -0.305428 0.016590 -0.909004 0.102337 -0.189996 -0.155824 -0.102659 -0.515988 0.037870 -0.057455 -0.606921 -0.118392 -0.181574 0.594070 -0.505121 -0.612624 0.283942 0.075941 0.657736 0.348083 0.378895 -0.300891 0.031449 -0.589469 0.756736 -0.090148 0.281168 -0.029683 -0.697128 1.029427 -0.382669 -0.533255 -0.451982 0.486788 0.091967 0.460260 1.553216 0.923862 -0.608172 -0.155002 -0.069710 0.197785 0.487443 0.847526 -0.704777 -0.493926 0.343722 -0.264039 -0.109500 -0.058782 0.285001 -0.329033 0.472391 -0.639753 -0.168428 0.427799 0.646726 -0.038081 0.480209 -0.150673 -0.392235 -0.554107 0.774158 0.233402 0.186876 -0.599672 -0.499003 0.476785 -1.024044 0.213366 -0.312052 -0.056201 -0.343768 0.108261 0.450598 0.758413 1.143785 -0.951978 0.637167 -1.115038 -0.953933 -0.590205 0.177510 0.209543 -0.518768 0.309005 -0.355325 0.307787 0.014175 0.409486 0.188033 -0.400026 -0.337783 0.097712 0.374714 0.169334 -0.948001 0.983472 -0.202355 -0.273686 -0.213288 -0.095270 -0.033618 0.344098 0.061729 -0.335751 -0.307684 0.708504 -0.499873 0.785461 -0.126847 0.134331 0.674339 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.448199 -0.125339 -0.007377 0.501680 0.288297 -0.345386 0.147330 0.254810 -0.010629 -0.920365 -0.401945 0.061499 0.003827 -0.310335 0.197390 0.188439 0.356875 0.428958 -0.716203 0.316033 0.187323 0.100003 -0.324203 -0.210400 0.002225 -0.294751 -0.272558 0.276638 0.071128 0.609199 -0.461767 0.111624 0.494365 0.011926 0.478141 0.621199 0.339726 -0.125314 0.206614 0.080452 1.151294 0.182214 0.028282 0.300062 0.444384 0.720931 -0.120150 0.723494 -0.083973 -0.235485 0.371571 -0.513256 -0.194876 0.065624 -0.841010 0.385102 0.617828 0.423881 -0.674415 0.460495 -0.200095 0.200364 0.289765 -0.114900 0.768791 0.380237 0.112008 0.494901 0.976038 -0.344294 0.007033 0.156359 0.551417 0.009952 0.261044 -0.230156 -0.018444 -1.136091 -0.023292 -0.694840 0.254058 -0.066928 0.984869 -0.642838 0.283366 0.696675 0.105723 0.568139 -0.403633 -0.220003 -0.750638 0.071332 -0.046034 0.817388 0.014563 0.119111 -0.109676 0.326431 -0.016353 0.351985 -0.073734 -0.610092 -0.694540 -1.447578 -0.752689 -0.317839 -0.220707 -0.233168 -0.834599 -0.186310 0.708262 0.588033 -0.992192 0.036850 0.211581 0.096918 -0.105748 -0.036774 -0.513714 -0.066647 -0.250775 0.200524 0.028881 -0.245965 -0.085457 -0.621788 0.037798 0.150939 0.334513 -0.129779 -0.443038 -0.037313 0.060699 -0.029163 -0.242182 0.021732 0.026232 -0.621271 0.350272 -0.472246 0.521167 -0.734796 -0.094834 -0.502298 -0.659560 -0.154626 1.045543 0.225898 0.466272 0.244823 -0.423229 -0.172177 -0.803793 -1.109473 0.280113 -0.294649 0.338749 0.042209 -0.095286 -0.121878 -0.220236 -0.272552 0.190820 -0.562976 -0.223248 -0.267497 0.587957 -0.192711 -0.240982 -0.621858 0.079880 0.848344 0.004281 0.135456 -0.498733 -0.266191 -0.612320 -0.504974 0.528517 -0.216778 0.245435 -0.072651 0.010800 -0.658733 0.335032 -0.507911 0.164168 -0.404825 -0.284218 -0.755512 0.103633 -0.255536 -0.090824 0.027438 -0.528338 0.346693 0.069746 0.177017 -0.054449 0.064855 0.072020 -0.841624 -0.805432 -0.130722 0.088305 0.592544 0.458123 0.220892 -0.300122 -0.253781 -0.531308 0.573382 -0.751388 0.171509 0.315984 -0.508808 0.625148 -0.450818 -0.307460 -0.557970 0.395432 0.099640 -0.673118 0.893323 0.527854 -0.759713 -0.249139 -0.641721 0.348491 0.282984 0.958677 -0.285760 -0.015710 0.374068 -0.043389 -0.122145 -0.434438 0.357317 -0.075289 0.533206 -0.810738 -0.411614 0.431144 0.636053 -0.101201 0.165445 0.085901 0.158271 -0.100163 0.890688 0.214803 0.179336 -0.519919 -1.009251 0.236378 0.176810 0.241936 0.220966 -0.366706 -0.245410 -0.070522 0.076559 0.738147 0.492832 0.144083 0.625823 -0.702292 -0.759484 -0.106133 0.095681 0.219388 -0.511386 0.370859 -0.490309 -0.040565 -0.219594 0.441164 0.074278 -0.257745 -0.654322 0.120907 0.416860 0.272044 -0.361729 0.727116 0.048187 -0.363995 0.068375 -0.045180 0.269840 0.249833 -0.301381 -0.330151 -0.285236 0.234497 -0.460745 0.716819 -0.183624 0.286342 0.323076 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 1.915230 0.463950 -0.564355 2.287853 -0.270152 -2.305452 0.923871 2.014314 -0.844037 -2.696983 -0.751467 0.777593 0.310909 -1.461001 0.089581 0.404521 0.150954 1.347719 -5.540341 1.388927 0.810164 0.427875 -1.824814 -2.371759 -0.148974 -0.235931 -0.462253 2.127771 -0.312691 2.541530 -1.424400 0.020194 1.479068 0.473869 2.190357 2.052661 0.328099 0.029988 0.485583 0.435462 3.334650 2.775818 -2.033137 0.151169 1.438680 2.855961 1.058828 -0.473612 -3.653541 -0.511296 -0.964796 0.551088 -1.457447 -0.771234 -2.166257 0.026613 3.243456 2.725006 -1.719732 2.320695 -1.857901 0.394315 1.649836 1.207610 3.503253 0.612173 1.279814 1.971026 3.423042 -1.518862 0.743647 -0.606586 1.886750 -1.812657 0.660284 -0.099767 -2.020177 -5.197212 0.552683 -6.087208 -0.305021 1.302349 2.599733 -2.279503 1.795864 1.617812 1.403306 2.024159 -3.300988 -1.205930 -2.227230 -0.504380 -1.721935 6.127765 0.134826 0.846841 0.608983 2.530273 1.390568 1.084669 -0.345976 -2.568206 -0.394096 -5.426280 -1.073077 -0.880379 -1.896957 -0.600011 -1.855671 -1.506270 3.531832 2.875536 -3.963617 -0.015258 0.848270 -0.062310 0.090018 -2.572088 -1.251515 2.083757 -2.508497 0.302795 1.699006 -1.956136 0.009704 0.533388 0.183378 1.162959 1.089916 1.347483 -4.112130 0.510095 1.731165 -1.774064 -0.776615 0.793103 -0.709645 -1.642334 0.795297 -3.731531 2.943593 -2.908247 1.484279 -0.940828 -2.462629 -0.042124 -0.681854 1.718844 -1.279757 -0.091027 -0.281090 0.921018 -3.039765 -5.548107 2.178356 1.001714 0.398469 -1.574027 -0.534867 -0.856951 -1.657512 -0.759921 2.289829 -1.988075 -1.186168 -0.999347 5.074010 0.952706 -1.443498 -0.137471 0.424340 2.424217 1.994277 1.459085 -2.343982 -1.623401 -3.309109 -1.207614 2.383748 -0.392973 -1.243071 -0.542601 -0.712822 -2.786352 2.025196 -1.846020 2.412485 -1.270215 0.366034 -2.902908 0.160363 -0.530749 -0.033318 -0.583166 -1.492624 0.455074 0.577292 -1.183959 -1.038153 0.058033 2.363586 -1.486220 -2.057438 1.001607 0.872074 2.418320 1.374843 1.181467 -1.277540 0.194181 -2.038573 2.744583 -0.291682 1.230478 -0.190047 -2.106307 3.272591 -1.290989 -1.718157 -1.174397 1.719175 0.361601 0.770374 5.066328 3.061593 -2.485713 -0.616339 -1.185478 1.036200 1.280733 3.249206 -2.562047 -1.766247 1.111159 -0.673526 -0.563105 -0.504986 0.947112 -0.452818 1.242525 -2.367994 -0.758107 1.691411 1.598377 0.180957 1.421424 -0.851935 -1.445507 -1.643709 3.167416 0.685763 0.898989 -2.362519 -2.174474 1.194701 -2.827508 0.961623 -1.113919 0.069923 -1.809239 -0.414838 1.031803 2.473082 3.380168 -3.506163 2.032026 -3.642635 -2.910959 -2.454919 1.039230 0.674620 -1.842908 1.015723 -1.335107 0.748578 -0.066436 1.702172 0.611319 -1.160151 -1.455074 0.209182 1.106010 0.534803 -3.344822 3.135554 -0.411907 -0.962595 -0.665566 -0.286174 -0.317721 1.147427 -0.631070 -1.232629 -1.220119 2.308425 -1.814198 2.508118 0.553390 1.113739 1.943337 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 1.597252 0.220957 -0.556670 1.999271 -0.432421 -2.383653 1.122034 2.024132 -0.741321 -2.712022 -0.603604 -0.142100 0.515821 -1.589201 0.169136 0.496120 -0.117854 1.512933 -5.142196 1.386575 1.221589 0.666003 -1.741664 -2.114467 -0.289537 -0.750898 -1.134821 2.098156 -0.432488 2.609081 -1.134960 -0.239027 1.778101 0.055612 1.783362 2.599527 0.911178 0.389355 0.999697 1.402335 3.291497 2.820582 -2.313251 -0.341526 1.419466 2.932358 0.889381 -0.323435 -4.641964 -0.888042 -0.816925 0.090011 -1.365886 -0.985072 -1.860805 0.113826 3.805232 3.339825 -1.990589 2.601073 -2.142352 0.131662 1.665676 1.476614 3.213776 0.857760 1.123216 1.876047 3.664996 -1.423443 0.603757 -0.429900 1.266478 -2.284614 1.019704 0.054769 -2.014112 -5.805164 0.780989 -5.703054 -0.697946 1.682506 2.347801 -2.501409 1.805611 2.332825 1.631839 2.085763 -3.176533 -1.474940 -2.125334 -0.587526 -1.548805 6.646519 0.285791 0.776604 0.534680 2.863253 1.668666 1.088170 -0.168640 -2.536733 -1.262618 -5.335664 -1.321453 -1.200369 -1.840161 -0.331909 -2.146997 -2.069278 4.182665 2.331875 -4.226810 0.793232 1.315635 0.408038 0.707830 -2.788685 -1.513059 2.341822 -2.413647 -0.325089 1.637214 -1.968745 -0.152515 0.436718 0.825084 1.188380 0.483233 0.812271 -4.217010 0.752072 1.567688 -1.981620 -0.710630 0.886757 -0.591146 -2.174782 0.908168 -4.035352 2.949615 -3.197790 1.812762 -0.610650 -2.958437 -0.158403 -0.550989 1.425705 -1.576236 -0.660010 -1.142530 0.797997 -3.135358 -5.888768 1.925621 0.993097 0.800868 -1.572419 -0.764597 -1.134505 -1.436556 -0.349049 1.897460 -1.706764 -0.570153 -0.460665 5.531705 0.928206 -1.445554 -0.185391 0.109610 2.503726 2.240920 1.387457 -2.288945 -0.889259 -3.232540 -1.261704 2.367880 -0.134630 -1.094386 -0.791642 -0.969217 -3.450393 2.306813 -1.721158 2.463646 -1.402570 0.503155 -2.871613 0.256447 -0.546426 -0.149547 -0.624143 -1.517765 0.159325 0.200381 -1.746954 -0.727287 -0.470766 2.312826 -1.593416 -2.079572 1.123527 0.688380 2.476661 1.272052 1.284730 -0.570465 0.434526 -2.094888 2.593302 -0.006285 0.931140 -0.132254 -2.314860 3.639547 -1.153692 -2.055052 -1.624185 1.658277 0.249603 2.149053 5.339667 2.989166 -2.171395 -0.565763 -0.474368 0.674897 1.594869 2.918162 -2.326621 -1.839890 1.213400 -1.073302 -0.443584 -0.280201 0.911009 -0.858253 1.854618 -2.223948 -0.501404 1.590916 2.019785 -0.041095 1.818422 -0.972084 -1.522656 -1.941451 2.861601 0.618883 0.667974 -2.128543 -1.589680 1.472322 -3.822657 0.766907 -1.598357 0.220899 -1.501264 -0.084723 1.742883 2.453842 4.278734 -3.471781 2.023626 -3.822894 -3.209872 -2.204945 1.040860 0.785041 -1.877837 0.687510 -1.182320 1.150407 0.041819 1.633286 1.007091 -1.524667 -1.543863 0.142131 1.044521 0.316546 -3.648638 3.277500 -0.835660 -0.752536 -0.702959 -0.327667 0.084686 1.375293 0.202442 -1.281232 -1.402485 2.444869 -1.684111 2.773966 0.048059 0.834784 2.521098 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 4.572172 -12.332786 -9.433829 16.846754 1.783698 1.972386 1.529139 0.931704 2.227088 -31.548886 -4.278141 19.219161 -0.212446 1.079780 -1.534150 8.140436 4.476958 2.430666 -17.129814 -0.764452 0.549858 -0.174068 7.210467 -1.616527 0.433031 -2.776792 13.377151 -3.095221 1.862159 6.167346 -2.465687 19.109705 12.647844 1.531659 3.233564 4.824761 -0.987037 -1.846003 -5.617339 -5.922406 13.713924 12.486397 0.001478 5.999271 -7.023568 7.555482 12.045619 19.564057 -13.097131 -2.155989 1.036692 -8.195356 -4.518639 -2.702469 -13.074284 0.479010 3.077085 17.504226 -2.835902 2.753993 -6.431266 1.675146 2.048341 -1.018949 20.771275 -0.144863 19.692887 21.740055 5.525960 -6.433851 0.254438 1.662979 -3.028545 -0.427992 22.135957 -10.465070 -5.588266 -12.704558 -1.325586 -27.995290 -0.302321 -2.608952 36.222854 -4.290097 -0.892640 -0.964513 8.136096 15.515125 -1.830430 9.511695 -12.419506 0.430036 6.292993 35.612101 1.740122 0.953208 -8.511886 0.592815 -1.017248 2.739003 7.955122 -7.253880 2.662428 -18.843698 -1.316326 -5.816377 1.707337 7.973412 -13.837056 2.487095 -0.112860 18.548445 -34.250679 -3.319210 1.626008 0.134573 40.940674 -3.548860 -7.512704 8.872324 1.367825 3.542776 3.269697 -12.969307 0.896172 -3.030442 3.939833 0.396938 3.257829 2.286318 -40.332752 -4.424346 2.455732 1.030754 1.029195 8.991778 18.836006 -1.027912 2.812691 -13.608102 5.727177 -14.331369 7.650681 -2.131535 -16.707927 -4.699794 40.407382 12.230279 16.725944 0.571911 -3.953920 -0.208755 -15.348116 -34.469446 2.700922 0.142583 -0.670104 10.395267 -0.870494 2.999139 -5.948481 15.976488 11.309040 -2.806110 -3.855450 0.130270 -0.884920 0.231888 -1.195804 -2.500232 1.280824 -3.499604 1.696266 22.679456 -2.895066 -36.838340 -23.736400 -3.850484 5.918473 -4.663237 -0.875357 -1.268482 -3.043567 -4.741170 -0.696859 -12.310858 17.404937 -0.523531 -10.048296 -15.433906 2.915277 -2.670908 -2.614600 4.268378 -6.227098 1.987683 6.229706 9.258750 -0.136912 2.050569 9.930470 -10.882436 -7.635083 0.170691 -12.341657 11.472238 5.936034 -0.612072 -6.616444 -3.506435 -13.298682 3.839846 -3.925252 4.690533 0.082985 -8.292835 2.115465 -12.883504 10.301342 -10.103644 3.357096 2.889019 -27.368773 11.967245 6.886142 -5.472742 -1.532308 -1.794022 1.762097 0.592262 5.053689 -6.423359 -5.333531 2.060649 -0.018170 0.191412 -2.234908 1.534852 -5.866577 -2.087264 -12.387313 -8.806906 4.970064 2.072496 -0.605760 -0.651105 4.945951 -0.278801 -13.093328 12.723681 9.996796 3.749421 -13.670009 -38.029645 2.945707 -4.769826 -8.691746 4.049518 -10.098145 -2.692017 2.633087 -10.932622 5.354706 1.273860 -11.967526 6.138512 -27.148804 -5.163888 -5.057747 -4.436089 2.498951 0.186786 -2.607356 -3.282150 0.019600 -3.449831 0.882599 -4.053262 -9.570924 10.531024 4.663450 12.269790 2.966532 -8.410764 6.372296 1.367303 -3.400727 -0.447291 5.802811 -3.964900 5.981759 -34.562491 -0.364939 1.641669 2.940550 -4.194000 0.861817 0.283668 2.930883 -1.578789 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 5.036448 -11.556965 -8.917441 17.319606 1.293217 1.458485 2.485144 2.683842 1.855147 -33.567829 -5.987161 17.595742 0.014322 0.783962 -0.785143 7.892780 4.063795 3.759205 -20.819796 -0.736215 2.325424 0.825264 8.200651 -2.574108 0.488444 -2.965276 10.399771 -2.389638 1.963394 8.007769 -2.830787 19.086252 14.016466 1.862612 2.660596 6.263792 -0.987775 -1.741907 -4.099769 -5.549741 14.908188 13.525258 -1.131310 5.855107 -7.236342 9.063115 11.274555 19.588366 -15.605347 -3.136797 1.444417 -10.952072 -5.576060 -2.748679 -13.043909 0.766160 5.815380 20.244036 -2.907660 4.177052 -7.646181 1.763546 2.677158 -2.581291 21.545538 1.607723 19.585895 22.469389 7.187328 -7.567177 0.623384 1.220072 -3.713347 -1.912478 20.939468 -11.080576 -5.085358 -17.319693 -0.975729 -32.176014 -1.305800 -2.176608 38.348967 -5.761867 0.302668 0.830045 8.647770 16.602297 -2.810644 9.431572 -13.281230 0.349577 5.924742 37.756868 1.792047 0.635585 -8.446469 1.351331 -0.006096 3.160583 7.599526 -7.358251 -0.255561 -21.596383 -1.765743 -5.937797 1.584127 8.637916 -15.333883 1.601374 2.781559 18.712831 -36.802068 -3.364199 2.741238 1.717000 39.015110 -3.044738 -9.550319 9.283950 0.491840 3.413392 4.384893 -14.592018 1.088341 -3.950707 3.252397 0.723929 3.254727 2.174865 -41.919475 -5.079625 2.613945 -0.475631 1.219046 9.623015 19.032243 -0.708674 3.432821 -15.694965 7.103298 -16.284582 8.725562 -1.972001 -18.050751 -5.022725 41.412032 13.690606 15.142930 0.708273 -4.876371 -0.370166 -16.207895 -35.795255 3.252254 0.831287 1.514232 9.754968 -1.376818 2.717651 -6.417211 16.270078 10.533211 -3.190791 -3.782949 0.229277 2.594335 0.357356 -1.872101 -3.647259 1.682880 -2.000239 0.571310 22.819673 -3.667017 -34.559909 -25.159913 -4.978954 7.419980 -4.827498 -1.252410 -2.285113 -2.461491 -6.233221 0.276858 -12.993628 17.686802 0.093300 -11.069813 -17.271754 3.439981 -2.828070 -3.477782 4.952911 -6.871249 1.614409 7.286870 9.983903 0.031600 1.791864 10.758002 -11.763410 -8.924670 -0.652800 -12.763073 12.074669 7.221982 -0.176951 -7.674397 -3.547312 -13.872783 5.834796 -2.956634 5.019216 -1.499417 -8.486380 3.861984 -13.444346 9.731405 -11.962071 3.738914 3.448767 -28.530077 13.756497 7.389264 -5.853722 -1.844688 -3.252757 1.819739 1.649566 6.293257 -7.050588 -6.324324 2.620886 -1.099322 0.080066 -3.224223 2.101756 -6.678597 -1.584174 -12.995868 -8.718987 5.858091 3.055658 -0.791768 1.387176 5.933071 0.745465 -12.675941 13.592017 10.347134 2.004729 -14.050838 -39.313460 4.137712 -3.417245 -7.926010 3.158668 -10.691164 -3.566775 3.136970 -9.312434 6.481113 4.987877 -12.430080 7.276276 -27.815263 -6.420493 -5.642682 -3.072075 3.287165 -0.825249 -3.271406 -3.343721 0.919528 -2.185373 0.917264 -2.098698 -11.465443 7.580498 4.420289 14.109967 2.932639 -9.421230 8.172443 1.103206 -4.181649 -0.444592 5.290979 -3.581236 5.890876 -33.156776 -0.388293 1.682451 3.664340 -5.099014 2.230214 0.278530 1.889738 -0.255887 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.745590 -2.028960 -2.343259 5.411070 -0.374606 1.399646 0.551710 -1.359025 0.002361 -7.646066 -2.629047 3.277128 1.549023 2.105325 -0.337894 2.732754 0.864755 0.677252 -6.301081 -0.985412 1.668271 -0.331290 0.582210 0.651574 -0.145262 -2.243359 4.244534 0.824887 0.611814 4.262764 -0.969728 4.319377 4.214330 -0.735866 0.600656 2.571918 -0.600295 0.348876 -3.279693 -0.935582 4.957961 -0.000852 0.721121 1.171636 -2.395633 4.474555 2.046097 5.172073 1.979340 -2.297420 3.457972 0.807800 -1.417741 -0.904606 -4.110163 0.387153 2.166952 2.270670 -1.125811 1.302520 -0.083129 1.262240 1.627896 1.458219 5.550486 1.653472 4.967212 4.326489 2.913065 -3.672911 1.315814 0.395602 -1.324981 -0.806074 4.879780 -4.292339 -2.666916 0.817896 -0.268055 -4.234639 -0.721416 0.069168 4.814838 -3.141809 -2.515542 -0.740750 0.930491 5.175915 -1.253534 2.151724 -4.367698 -0.345227 0.425343 6.053947 0.769902 0.554650 -1.363724 1.497614 -0.409533 0.598286 1.789147 -3.942037 0.453348 -4.369754 -2.954308 -3.029722 1.718066 3.015523 -5.359170 0.172322 -3.166075 1.769373 -7.428119 -0.178946 0.922140 2.730859 6.962201 0.055961 -1.641488 -0.228878 1.331438 1.609570 2.210738 -1.836915 2.326011 -1.984912 0.927839 0.840224 1.143928 0.838594 -5.973452 -2.001632 0.488456 -0.273854 1.253015 2.862006 4.075092 -0.224437 2.174248 -2.921636 3.133864 -5.582182 -1.744932 -1.485567 -4.310262 -2.505509 3.881113 2.450135 3.788317 -1.477742 -3.130287 0.261881 -5.960631 -7.465268 -0.885168 0.903861 -0.434980 3.316898 -1.381804 2.359801 -3.798120 2.573337 3.511044 -1.447624 -2.702137 -0.108315 -0.042360 1.052017 -1.539744 -0.588404 -0.333405 -1.981010 0.565465 6.714877 -0.118479 -7.098915 -8.277985 -2.075949 3.816141 -2.387502 0.123608 -2.315968 -1.772586 -4.907660 -0.150444 -3.483703 -0.222076 0.867761 -2.680534 -5.229464 2.095881 -0.681638 -0.752584 2.025282 -4.209365 0.455404 2.339686 1.072823 1.307215 0.396080 0.111099 -3.221055 -2.667264 1.727870 -3.619989 3.581647 1.280640 -0.450947 -1.606606 -2.517059 -3.239812 1.491224 -2.010767 2.754198 0.524842 -0.643853 0.956557 -4.250453 1.493259 -1.961176 0.969460 0.979752 -6.186674 5.675084 2.642534 -2.109867 0.161443 0.254659 2.199867 -0.412552 1.370851 -2.890502 -2.890859 0.615174 0.670381 0.240862 -0.919779 0.798844 -1.520892 -1.991573 -3.666956 -1.736707 3.069484 1.622994 -0.633886 0.003816 2.798645 -2.735746 -0.080887 3.644881 2.451471 0.412445 -2.083870 -8.910845 1.542827 -2.142351 -1.713787 0.076684 -2.971743 -0.285040 2.564882 -1.838473 3.464319 -0.301989 -1.688204 3.898937 -5.855321 -3.745616 -3.637035 -2.095354 0.675990 0.638579 -0.798887 -1.640767 1.181494 0.136578 0.405230 -1.775727 -3.164283 2.351833 2.201495 4.832042 -1.312239 1.122370 4.293579 1.252471 -0.080287 -1.340502 0.575734 -2.168982 1.377358 -5.708042 -0.813513 1.822683 2.089444 -3.046820 -0.178439 -1.850686 0.072399 0.318341 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.469345 -0.479957 -0.257309 1.185435 -0.111935 0.232696 0.256522 -0.010788 -0.082154 -2.023215 -0.962530 0.128687 0.253671 0.327576 0.280559 0.538781 0.330591 0.293361 -2.054730 -0.151373 0.635052 0.024542 0.238728 0.171558 0.024956 -0.622572 0.155620 0.345158 0.094219 1.201117 -0.385686 0.973289 1.114442 -0.074198 0.179367 0.792177 -0.198594 0.004332 -0.235278 0.025755 1.471383 0.022361 0.076906 0.218305 -0.334807 1.249833 0.112451 1.331885 0.348377 -0.638338 1.167545 -0.717447 -0.404819 0.003545 -1.067133 0.110956 0.952072 0.872463 -0.396489 0.582950 -0.358687 0.399994 0.401342 -0.101828 1.510535 0.665593 1.089403 0.981680 0.897864 -0.873015 0.357000 0.019339 -0.243684 -0.318384 0.525569 -1.056536 -0.181392 -1.132656 -0.012042 -1.526904 -0.148086 -0.019154 1.366370 -0.867523 -0.360622 0.281652 0.044434 1.281133 -0.425814 0.424127 -1.183649 -0.015639 0.220516 1.331562 0.086604 0.013847 -0.213694 0.417315 -0.000668 0.232428 0.230309 -0.866676 -0.723613 -1.712679 -0.959250 -0.580399 0.378636 0.529941 -1.529344 0.031259 0.019220 0.250496 -1.944680 -0.049305 0.309045 0.818550 0.735168 0.271668 -0.823594 -0.287089 0.140810 0.654511 0.671185 -0.576562 0.611795 -1.176585 0.131980 0.330901 0.408186 0.020971 -1.163430 -0.541982 0.118869 -0.183173 0.119684 0.674696 0.849155 0.112047 0.655916 -0.914426 0.954484 -1.591540 -0.237563 -0.578658 -1.020553 -0.523555 1.534023 0.946567 0.626891 0.013239 -0.961115 0.068276 -1.494074 -1.787003 -0.174213 0.121447 0.456760 0.551298 -0.351968 0.422545 -0.765019 0.472655 0.428369 -0.477047 -0.554705 -0.211240 0.157822 0.227102 -0.527309 -0.523953 0.117466 0.163945 -0.402142 1.285446 -0.196176 -1.005270 -1.873267 -0.705760 1.042114 -0.547311 0.139240 -0.549009 -0.101230 -1.414568 0.246040 -0.884220 -0.200938 0.182334 -0.902308 -1.419061 0.463663 -0.217869 -0.195845 0.464265 -1.001335 0.090589 0.677958 0.635555 0.418866 0.174489 0.055204 -0.930587 -0.996458 -0.000253 -0.815392 0.919470 0.535286 -0.082252 -0.538907 -0.573658 -0.813788 0.760440 -0.416911 0.571057 -0.013194 -0.403633 0.457854 -0.956245 0.179795 -0.690486 0.273032 0.271949 -1.960261 1.430947 0.702388 -0.743847 -0.159874 -0.593102 0.633667 0.066761 0.694585 -0.529514 -0.424323 0.174805 0.069320 0.037748 -0.506229 0.384475 -0.354000 -0.331727 -1.034947 -0.490246 0.963047 0.583985 -0.150882 0.282044 0.778342 -0.054341 0.133392 1.019833 0.440080 -0.244637 -0.438590 -2.371835 0.451817 0.497513 -0.166325 0.155020 -0.920307 -0.241793 0.394945 -0.165680 1.001398 0.731796 -0.114350 1.067419 -1.119653 -1.025078 -0.891421 -0.182986 0.165137 -0.189410 -0.177885 -0.405541 0.280032 0.199460 0.260663 0.066539 -0.958203 -0.431062 0.365927 1.283744 -0.154281 0.081190 1.200408 0.234851 -0.244077 -0.312532 0.089857 -0.317006 0.480947 -0.892751 -0.319809 0.240869 0.481972 -0.844031 0.237286 -0.421266 0.055848 0.268762 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = 3.159155 -0.301285 -1.934367 5.249320 0.517698 -1.240147 0.929191 1.272770 0.408814 -6.980714 -3.501185 2.341057 1.001044 -1.037656 0.669872 1.669594 1.753086 2.411554 -8.065608 1.187985 1.934882 0.278353 -1.850725 -1.427193 -0.085846 -2.053742 0.615738 1.831251 0.428614 4.999550 -2.123686 2.566315 3.950167 -0.129590 2.934896 4.032576 -0.922511 -0.106070 -0.115816 -0.466690 6.883907 2.793226 -0.335027 1.933714 0.853265 5.515151 0.353980 3.863152 -0.636560 -2.046386 1.921372 0.593768 -1.784454 -0.338451 -5.176974 1.330949 4.388973 2.240500 -3.152557 2.819251 -1.553366 1.373071 2.424878 0.412480 6.072662 2.292042 2.630668 4.358644 5.693381 -2.920390 1.401756 -0.086787 1.850826 -1.022292 3.185799 -2.418475 -3.125987 -3.380805 -0.388809 -6.734535 0.713095 0.052849 6.466415 -4.542145 0.821392 1.527294 1.930978 5.098413 -3.157507 -0.801685 -4.816261 -0.186971 -1.939164 7.291159 0.683123 1.541843 -0.722621 2.452336 -0.264378 1.340126 -0.230044 -5.006873 -1.330861 -9.255828 -3.726087 -3.169257 -0.097757 0.696961 -5.492316 -0.637466 1.055629 3.730787 -7.921846 -0.108355 1.143498 0.993870 1.250471 -1.124118 -2.799805 0.355236 -1.286213 1.638391 1.700486 -2.460587 0.538105 -2.508003 -0.349139 1.270340 1.933929 0.827956 -4.633065 -0.666149 0.973939 -0.816196 -0.269480 2.396468 1.977201 -2.625463 2.416849 -4.197834 4.323692 -5.784156 -0.713323 -2.933720 -4.482546 -2.060269 3.181396 2.742734 2.736671 -0.429164 -1.686668 -0.118682 -6.854155 -8.231505 1.441028 -0.454541 0.962001 0.702106 -0.997286 0.349914 -3.583499 0.413072 2.935320 -3.135209 -2.292553 -1.055613 5.515754 0.430702 -2.027191 -2.045059 -0.411357 1.998198 0.838563 3.915852 -2.344976 -4.281863 -6.922686 -2.549716 4.543828 -2.167281 0.355000 -2.051120 -0.932790 -4.284366 0.976813 -4.068130 0.798045 -1.472917 -0.930122 -5.797794 0.974864 -1.119071 -0.205551 0.630569 -4.332362 1.608054 3.470937 1.332477 -0.131308 0.848294 1.015559 -4.205354 -3.574368 1.132792 -1.364335 4.268924 3.423500 0.411562 -2.207018 -1.687469 -3.940526 3.348111 -2.706937 2.607794 0.825791 -2.801002 3.556224 -3.791382 -1.398889 -3.336782 1.861960 0.378672 -5.059062 6.358218 3.638584 -4.259384 -0.307713 -2.519399 2.749591 0.793531 4.397039 -3.228071 -2.356211 1.521727 -0.846720 -0.326445 -2.041376 1.605147 -1.276127 0.900444 -4.824658 -1.456000 4.381919 2.829927 -0.603517 1.058906 1.051493 -1.452503 0.975496 5.157618 2.552240 0.878076 -4.270200 -8.322940 1.719391 -1.490010 0.576179 -0.450204 -1.467520 -1.974467 0.547672 -0.171752 4.781104 2.882004 -1.843660 4.507739 -5.858316 -5.294892 -3.539022 0.079075 1.525589 -1.868410 0.737327 -2.795596 0.958625 -0.741722 2.607984 -0.093809 -3.324720 -1.482823 2.119053 4.162782 0.231578 -2.028454 5.414693 0.911543 -1.725596 -0.768992 -0.387242 -1.242272 1.123577 -3.933972 -1.760110 -0.291741 2.566535 -3.791561 3.060444 -0.985090 2.084873 1.878696 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 5.262477 -2.665563 -2.268664 9.261662 0.520530 0.633100 1.764705 1.478950 1.369884 -12.607139 -5.040661 8.615223 1.081962 0.402842 -0.332105 2.572089 3.490831 2.871730 -14.884372 0.018437 2.148621 -0.254486 -0.967783 -2.120314 0.105661 -3.544787 6.816162 4.159834 1.235001 8.225546 -2.938254 4.625360 6.874483 0.857187 4.006038 5.817511 -1.962296 -1.051877 -4.477876 -3.939589 10.939031 3.940108 -0.724048 4.561934 -0.305126 9.344746 3.563640 5.955711 5.996255 -3.050901 2.578506 2.141188 -4.352838 -2.138696 -9.219858 0.692951 3.471799 2.467414 -3.539636 3.931035 -1.657377 2.301289 3.363203 0.742350 9.989379 1.909511 7.146490 7.426895 7.464171 -6.889689 1.826297 0.548826 2.700148 1.192412 6.282107 -5.279313 -6.247076 -4.583375 -0.779512 -10.727618 -0.662433 -1.133315 9.487505 -6.271763 -0.866447 0.053492 1.581148 8.549148 -4.218999 0.554763 -8.910955 -0.294332 0.085284 10.718025 1.714401 1.929357 -0.396365 2.729613 -0.530682 2.455836 2.808088 -8.567601 1.118402 -13.223522 -3.815034 -6.102217 1.277683 1.944308 -7.511592 1.340671 -0.331443 6.838149 -12.118821 -1.989976 1.787982 1.595613 5.429072 -2.606618 -1.243267 0.408714 -0.056338 3.542800 3.923535 -5.911360 2.005742 -0.764633 -0.040424 1.594994 3.672619 2.708349 -8.614607 -3.332427 3.117540 0.896731 0.927386 4.029581 3.808713 -2.021975 3.602643 -6.212138 7.533637 -8.240791 -1.597009 -3.509584 -3.829364 -4.571883 8.114355 4.995320 5.904088 -0.234403 -1.588274 0.518931 -9.606762 -13.976219 2.263436 0.905358 -0.214194 2.654812 -1.689503 2.661953 -7.102524 1.392323 4.356230 -4.363979 -4.656807 -0.594039 1.688635 1.374518 -2.786234 -2.156534 0.398439 1.220060 2.055818 8.435363 -3.006560 -13.586217 -11.433531 -4.363330 7.649318 -4.723364 -0.967912 -2.902553 -2.986111 -4.609627 0.343971 -6.420038 1.703009 -0.656230 -4.433214 -10.253642 3.139507 -2.181225 0.816521 3.208994 -7.542120 2.075141 3.121597 2.727142 0.001615 1.915040 1.163818 -6.614694 -4.844051 1.813098 -3.684924 7.806936 3.252662 -0.211943 -5.670375 -3.715798 -5.733184 5.307329 -5.687347 5.621397 0.296093 -4.789520 3.882868 -5.810175 0.454892 -4.371101 3.631737 2.047718 -11.063481 10.556838 7.247465 -6.487323 -0.976562 -2.519169 3.645359 0.829883 6.243752 -7.002232 -5.693596 2.079626 0.004057 -0.082363 -2.005615 2.199127 -0.658437 -1.582197 -8.546945 -3.780431 6.870448 3.388242 -0.714834 0.888146 4.133886 -2.407323 0.766405 8.850010 4.279705 2.662559 -7.100715 -16.602267 3.265492 1.800902 0.065961 1.419112 -5.270358 -3.336010 2.373093 -2.736743 7.135918 1.000461 -4.111702 7.491909 -9.138768 -7.563509 -7.071120 -2.878340 2.211485 -0.915627 2.823498 -3.587372 1.165586 -1.781226 2.383276 -2.772606 -3.395268 1.818175 4.534076 6.974235 1.440681 -0.998232 8.553669 2.031316 -3.185153 -1.678133 -0.807465 -4.611418 2.149610 -9.074295 -1.514963 1.436257 4.422740 -5.961131 2.205500 -0.209261 2.772092 0.280219 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.399047 -0.071777 -0.009227 0.702136 0.259030 -0.196894 -0.067834 0.106181 -0.312478 -0.508082 -0.272943 -0.017608 -0.134878 -0.016354 0.406015 0.024346 0.183438 -0.132169 -0.519433 0.171746 -0.241598 -0.303486 -0.218819 -0.296311 0.083174 0.393913 0.048379 0.313088 0.027745 0.309290 -0.505582 0.329426 -0.020011 0.407668 0.510820 -0.360477 0.013918 -0.166824 -0.364484 -0.318937 0.639433 -0.061135 -0.133166 0.257614 0.174770 0.305122 -0.078681 0.544996 0.045664 0.309182 0.558567 -0.492181 0.064486 0.303549 -0.634062 0.139948 0.506020 0.079161 -0.042005 0.046026 -0.319280 0.392398 0.148162 -0.169678 0.878063 0.291080 0.409145 0.400087 0.345135 -0.395693 0.103505 -0.114513 0.756110 0.018847 -0.607699 -0.273039 0.180524 -1.059707 -0.070719 -0.513490 0.303258 -0.249672 0.441927 -0.139115 0.031311 0.077791 -0.217845 0.212572 -0.676557 0.511269 -0.495981 0.018992 -0.090483 0.262041 -0.151991 0.020879 0.028118 0.019286 0.004442 0.274522 -0.133574 -0.163660 -0.064208 -0.833027 -0.604397 0.551991 -0.234284 -0.406506 -0.360377 0.227567 0.452018 0.138786 -0.265370 -0.629828 -0.279367 0.046515 -0.179302 0.318805 -0.397840 -0.109090 -0.144705 0.613253 0.343402 -0.058379 0.346005 -0.848030 -0.301707 0.218250 0.736979 0.331592 -0.157365 -0.057101 0.122125 -0.113441 -0.192304 -0.250819 -0.275919 0.081899 0.133734 -0.013411 0.409920 -0.466916 -0.229507 -0.591314 -0.233671 0.312219 0.759486 0.406643 0.346095 0.849239 -0.074958 0.133144 -0.348783 -0.618405 0.173351 0.168912 -0.046079 -0.131901 0.059380 0.241704 -0.188841 -0.434506 0.627160 -0.633829 -0.767115 -0.668152 -0.077100 -0.012554 -0.259859 -0.373662 0.465590 0.651750 -0.344969 0.331804 -0.190479 -0.422588 -0.450690 -0.276500 0.300145 -0.230967 -0.040379 0.213947 0.440350 -0.699773 0.219901 -0.350106 0.242851 0.129030 -0.510643 -0.443582 0.025574 -0.039929 0.118053 0.044672 -0.202836 0.328977 0.065982 0.588517 -0.207395 0.601023 0.236590 -0.432188 -0.920466 -0.331021 0.328851 0.490165 0.017702 0.131471 -0.368906 -0.364168 -0.318430 0.668864 -0.502908 0.201373 0.013228 -0.020579 0.074360 -0.389223 -0.374545 -0.059199 0.247501 0.228593 -0.696862 0.452708 0.329221 -0.599029 -0.315571 -1.137947 0.588964 -0.095274 1.099234 -0.333175 0.182404 0.073050 0.713114 -0.247790 -0.446102 0.326836 0.179223 -0.371628 -0.494185 -0.545099 0.126905 0.169461 0.218958 -0.083595 0.119468 0.221849 -0.297459 0.782780 0.105545 -0.034530 -0.110287 -0.701602 -0.178078 0.768152 0.126996 0.409766 -0.636290 -0.404063 -0.426871 -0.138089 0.471937 0.212970 0.068287 0.419756 -0.152861 -0.110410 -0.322982 0.297544 -0.170168 -0.576596 0.342109 -0.409504 -0.290385 0.153315 0.184972 -0.082041 0.085161 -0.683781 -0.329047 0.206728 -0.047925 -0.058916 0.317362 0.514546 -0.399456 -0.084149 0.181629 -0.233338 0.258645 -0.532994 -0.183604 -0.069886 0.021177 -0.312931 0.083756 0.317891 0.057720 -0.142808 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = 3.228403 -1.535045 -0.984398 5.605157 0.198671 0.711239 1.288177 1.113024 1.159226 -8.176968 -3.053306 6.773177 0.538968 0.522996 -0.366623 1.615895 2.284339 2.018624 -9.469241 -0.233363 1.492312 0.249974 0.251919 -1.556895 0.213646 -2.111209 4.771405 2.697734 1.112734 5.429740 -1.838803 2.863127 4.483208 0.720429 2.097615 3.866784 -1.066815 -0.968587 -3.371862 -3.191887 6.918881 2.092456 -0.182953 3.240775 -0.508489 6.088856 2.810923 3.509910 5.154157 -2.082409 1.221596 1.414962 -3.383639 -1.749586 -5.767948 0.431387 1.257759 1.907888 -1.991186 2.489390 -0.472960 1.306325 2.013533 0.126128 6.114356 1.187904 4.306116 4.923179 4.641009 -4.794315 1.061388 0.342458 1.581070 1.247807 4.168402 -3.582542 -3.435814 -3.039110 -0.508968 -7.147375 -0.766578 -0.974665 6.824757 -4.158324 -0.235867 0.076627 0.737693 5.544399 -2.226774 0.473249 -5.930045 -0.155386 0.841818 6.124528 0.995581 0.827039 -0.226022 1.272114 -0.518666 1.636148 2.553957 -5.316821 0.615246 -7.862449 -1.980258 -4.046574 0.980278 1.484209 -4.582129 1.102599 -0.108039 4.158537 -7.953897 -1.731270 1.382009 1.156625 2.919940 -1.023776 -0.368894 0.126966 0.333770 2.444351 2.379924 -4.149958 1.222610 0.200139 -0.512130 0.898926 2.416912 1.787946 -5.679818 -2.845210 1.967950 0.799862 0.906893 2.465182 2.477557 -0.854259 2.225169 -4.006451 4.898040 -4.836462 -1.153433 -1.860613 -1.351286 -3.266080 5.834939 3.100755 3.865747 -0.050121 -0.934951 0.250236 -5.638678 -8.142051 1.648930 0.476123 -0.086380 2.215730 -1.091843 1.934863 -4.555937 0.897142 2.252872 -2.709000 -3.049246 -0.153054 -0.674527 0.722276 -1.618089 -1.942314 0.557853 0.731943 1.068109 5.300012 -1.930897 -9.060269 -7.220195 -3.007514 5.066844 -3.227447 -0.499858 -1.808828 -2.053361 -1.962361 -0.131442 -4.103284 1.052418 -0.022708 -3.369678 -6.880127 2.355595 -1.513029 0.020154 2.608650 -4.806232 1.264274 1.266864 1.866368 -0.083818 1.147744 0.522639 -4.391130 -3.036603 0.833704 -2.572692 4.748348 2.029165 0.030142 -4.641650 -2.569582 -3.304038 3.508361 -4.398622 3.871563 0.000506 -2.839947 2.442876 -3.665459 0.727401 -2.809061 2.594234 1.784847 -8.931815 6.629515 4.768366 -4.058575 -0.664016 -1.482392 2.055153 0.785532 3.856791 -4.753891 -4.017901 1.467800 0.013720 0.003796 -1.418871 1.288808 -0.275550 -1.183747 -5.536245 -2.531373 4.318245 2.096785 -0.409538 0.750943 3.369898 -1.159804 0.671014 5.737348 2.804488 1.778512 -4.345505 -10.467304 2.394953 2.811284 0.426149 1.774666 -3.796501 -1.884631 1.977806 -2.156670 4.491256 -0.274237 -2.313531 4.826147 -5.663173 -4.723984 -4.324221 -2.200095 1.596760 -0.161888 2.100269 -2.038998 0.521990 -1.036094 1.176084 -2.070720 -1.791501 1.516085 3.170045 4.977367 1.384512 -0.076287 5.529835 1.240025 -2.107533 -0.786814 -0.773701 -2.947072 0.982223 -5.919622 -0.382694 1.425006 2.873042 -3.883558 1.283696 -0.127392 1.268743 -0.465849 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = 1.695358 -0.513844 -0.065855 2.243657 0.421499 0.354892 0.548023 0.754434 0.300671 -3.630244 -1.958550 2.578639 -0.069834 0.048951 0.134107 0.567864 1.338792 0.737492 -5.107748 0.058170 0.734103 -0.070006 0.259817 -0.552783 0.296141 -1.150290 1.542620 1.472469 0.371399 2.339477 -1.058313 1.345564 1.850697 0.718026 1.237578 1.712890 -1.108708 -0.894588 -0.907498 -1.481053 3.258386 0.961713 0.055008 1.489737 0.205793 2.757312 0.789715 1.494596 2.945490 -0.820377 0.771401 0.099997 -1.679509 -0.349397 -2.750543 0.073215 0.452038 0.398166 -0.908746 1.075787 -0.481994 0.683449 0.742737 -0.700834 2.826641 0.354433 1.900718 1.748451 2.092518 -1.943672 0.362141 0.362582 1.086442 0.938715 0.924695 -1.544747 -1.156070 -2.099956 -0.213143 -3.814735 -0.256254 -0.797694 3.053677 -1.570912 -0.228198 0.011210 -0.010383 2.434340 -0.988386 0.086607 -2.666749 0.204993 0.391762 2.063549 0.331175 0.349914 0.087238 0.340161 -0.299983 0.936040 0.554338 -2.269282 -0.336701 -4.206260 -0.842509 -1.662875 0.585551 0.231112 -2.160583 0.961084 0.130779 2.340079 -3.202806 -1.051671 0.597266 0.367796 -0.236249 -0.061029 -0.490450 -0.653356 0.161485 1.745205 1.197522 -1.751883 0.524329 -0.644101 -0.279191 0.346360 1.318494 0.583929 -1.796994 -1.447868 1.074802 0.445116 0.286998 0.986618 1.062021 0.038568 1.044320 -1.618753 2.190712 -2.144875 -0.392495 -1.284144 -0.188620 -1.376785 2.871885 2.277280 1.563152 0.712089 0.135113 0.150924 -2.383119 -3.215259 0.556192 -0.216084 0.378239 0.612375 -0.333214 0.898624 -1.777150 0.100557 0.452543 -1.276230 -1.325456 -0.535679 -0.263434 0.353257 -0.678798 -1.088391 0.314513 0.665305 -0.294033 1.881483 -0.963389 -3.731538 -2.791049 -1.662895 2.179596 -1.523399 -0.201679 -0.862649 -0.439938 -0.514744 0.104007 -1.772896 -0.137300 -0.076791 -1.784785 -2.878545 0.830771 -0.734815 -0.028018 1.015152 -2.050260 0.568716 1.269992 1.482313 0.195378 0.758334 -0.147835 -1.837978 -1.383716 -0.123056 -1.073921 2.120735 1.314813 -0.266282 -2.544100 -1.162116 -1.477802 1.988765 -1.828223 1.602444 -0.160130 -1.539454 1.070949 -1.457941 0.471874 -0.932320 1.130810 0.600333 -5.191680 2.639878 2.302472 -2.172215 -0.628260 -1.643151 0.971608 0.398888 2.039790 -1.772611 -1.208787 0.412799 0.155270 -0.039225 -0.760547 0.847436 0.047043 -0.563222 -2.608067 -1.391653 2.145121 1.014599 -0.180511 0.258022 1.455682 0.476009 1.047300 2.528016 0.907951 0.502785 -1.962153 -5.437658 0.850538 2.818780 0.294892 1.280649 -1.764588 -1.252578 0.309189 -1.377302 2.232709 0.029861 -0.687710 2.126972 -1.718857 -1.979649 -2.092666 -0.750328 0.496739 -0.248970 1.225765 -0.944882 -0.068846 -0.562581 0.613340 -0.611314 -0.971926 -0.253183 1.319606 2.158862 1.151287 0.018757 2.341317 0.683008 -1.126941 -0.509977 -0.293394 -1.216563 0.586223 -2.459716 -0.413862 0.371351 0.927730 -1.603508 0.565984 0.309815 1.042831 -0.303726 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 15.703804 0.681111 -4.253464 19.112332 4.329059 -2.882733 3.723528 9.922345 -3.225362 -21.525255 -10.301108 11.794445 0.003383 -1.567519 7.068222 5.708054 8.799916 6.826729 -32.223493 2.233599 -0.011948 -2.105048 -5.631924 -10.313069 1.866567 0.500566 7.125964 12.742131 2.905200 17.216750 -9.972474 6.638369 10.472797 4.872005 13.053746 6.410358 2.199529 -1.495460 -9.063846 -7.757481 27.122674 7.469194 -2.998177 12.808951 5.080349 19.791879 4.900673 13.134705 4.329151 -1.413033 9.099647 -3.093668 -7.970669 -1.327760 -21.640210 1.328534 15.324339 8.906283 -10.752472 12.729231 -2.360183 7.130276 7.447839 -3.720551 22.577010 5.881708 14.518235 13.892499 19.246911 -14.473168 3.490374 -2.059013 13.151431 0.690804 1.178686 -16.836724 -5.554126 -28.501938 1.589466 -30.848045 1.718386 -4.774152 22.342911 -13.897231 3.664909 7.497577 -0.529669 15.074366 -16.096151 0.658690 -17.282229 -3.204921 -2.512842 26.220165 1.929165 3.730441 4.333548 6.310771 1.845625 8.574207 3.666845 -15.430464 -1.773517 -30.422943 -14.045111 -1.148645 -1.759065 -3.094878 -10.103387 0.129618 8.511807 7.996994 -23.587062 -9.952033 4.859642 3.200205 0.366953 -1.075591 -8.094791 1.239334 -3.552313 12.100017 10.382138 -14.448499 5.381152 -6.155179 -5.460992 5.587124 13.203375 6.650420 -14.861932 -5.910797 7.110220 -1.496552 -1.729318 0.743293 -0.073575 -6.304486 9.431792 -13.998140 17.801733 -20.089334 -5.630230 -7.283573 -8.546926 -6.942694 16.121666 7.643373 10.848404 9.164352 -4.598816 2.518614 -16.879416 -28.115015 10.522645 4.026951 1.456523 2.771617 -2.598526 3.819767 -13.628575 -6.353266 12.708733 -12.297622 -15.440563 -8.602018 10.870907 2.337928 -7.589179 -10.342238 7.949400 11.775478 4.786370 13.008813 -8.656549 -23.557821 -16.903115 -9.060504 17.337518 -8.431265 -1.913114 -0.230765 -1.131151 -15.822890 2.914678 -17.619079 7.185657 -1.172457 -11.072616 -19.681764 8.663490 -4.098763 3.665521 5.826328 -14.235932 6.791889 4.728260 11.309903 -5.840788 7.127929 7.875292 -17.676997 -20.235967 -1.984795 -1.816069 16.830977 3.165473 4.376981 -12.453566 -4.699944 -9.499303 15.631796 -13.049912 10.476072 -1.206441 -7.163836 11.179125 -11.203214 -5.244608 -10.039389 8.949009 5.672584 -21.205934 21.631197 16.148075 -17.624185 -6.101805 -14.599648 9.959896 2.572842 22.541209 -14.414899 -11.003211 5.749198 5.762527 -1.593995 -10.232032 7.330597 2.511280 -3.544658 -20.199883 -10.432272 14.763760 11.401742 0.659931 6.030459 8.827004 0.347797 -5.231954 25.415770 4.272401 4.083382 -10.153804 -31.419025 2.888253 13.705256 2.689720 4.566934 -12.811068 -9.193931 -0.844778 -1.983857 15.223089 10.904676 -5.793298 16.485667 -14.524727 -16.607846 -15.671276 2.388373 4.902881 -9.663167 5.003547 -9.694679 0.966666 -2.719486 7.000147 -1.583339 -4.756631 -7.099351 0.517766 13.007323 0.341289 -5.564215 20.990698 4.872559 -8.950805 -1.551694 -3.037233 -5.659829 12.086420 -15.669555 -5.335549 -1.250986 8.040903 -14.307735 6.313491 2.488759 6.567733 3.799701 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = 0.979863 0.177745 -0.271754 1.212716 0.072547 -0.219517 0.392583 0.456178 -0.406868 -1.913561 -0.639717 1.385518 0.034971 -0.147667 -0.129824 0.615674 0.591987 0.512816 -2.906152 0.180781 0.416495 -0.004301 -0.295067 -0.522081 0.099089 -0.734466 0.722057 0.913425 0.103500 1.351298 -0.768121 0.682332 1.001317 0.293480 1.016842 0.981431 -0.542823 -0.344535 -0.294506 -0.591694 1.917800 0.822530 -0.376899 0.404260 0.327695 1.654790 0.484546 0.133214 0.316253 -0.439583 -0.081437 0.948732 -0.871745 -0.174701 -1.577145 -0.132922 0.494174 0.780746 -0.750957 0.738289 -0.702668 0.434524 0.558471 0.163262 1.778822 -0.040291 1.150434 1.097637 1.289387 -1.013211 0.320187 0.071113 0.501371 -0.081418 0.713856 -0.354231 -0.727363 -2.177649 -0.021908 -3.146931 -0.049265 0.116443 2.131053 -0.958541 0.162178 0.192402 0.484216 1.459568 -0.982218 -0.162704 -1.541959 -0.001288 -0.236929 2.260746 0.313003 0.275526 0.089817 0.642510 -0.006998 0.496196 0.113869 -1.488677 -0.013783 -2.639476 -0.716386 -1.070126 0.011328 0.011110 -1.198446 0.202902 1.438506 1.885044 -1.983254 -0.201642 0.425349 0.074027 0.058266 -0.510420 -0.458879 0.387806 -0.512317 0.712143 0.870368 -0.819558 0.270257 0.141388 -0.011784 0.225091 0.805823 0.480700 -1.986639 -0.453400 0.920224 -0.441385 -0.023295 0.675036 0.499232 -0.255988 0.614233 -1.402561 1.384088 -1.280831 0.358994 -0.716099 -0.466171 -0.706716 0.617085 1.648367 0.229230 0.099646 0.119600 0.303444 -1.633904 -2.117030 0.522235 0.067849 -0.060577 -0.025153 -0.267809 0.323457 -1.035156 0.038625 0.653347 -0.901627 -0.796308 -0.384271 1.344061 0.394274 -0.520306 -0.446954 0.045001 0.407691 0.394480 1.075223 -0.851247 -1.834105 -1.854219 -0.878101 1.271612 -0.793511 -0.279874 -0.457341 -0.504230 -0.285867 0.426472 -1.073056 0.436171 -0.408715 -0.405052 -1.608208 0.583584 -0.414472 -0.567808 0.200371 -1.157454 0.406286 0.587909 -0.257442 -0.066918 0.032509 0.526981 -0.903439 -0.691117 0.380027 -0.427653 0.922363 1.109825 0.118091 -1.454177 -0.498402 -0.942996 1.092503 -0.686488 0.992880 0.076432 -1.200998 1.066687 -0.914807 0.145567 -0.235033 0.795654 0.135354 -1.964913 2.134135 1.654136 -1.417754 -0.279845 -0.723780 0.673468 0.384792 1.119177 -1.134293 -0.630596 0.230973 -0.117246 -0.049646 0.082483 0.494059 -0.045080 0.002144 -1.533232 -0.668146 1.307440 0.738359 -0.060188 0.178369 0.402228 -0.303234 0.119524 1.481350 0.517452 0.605745 -1.122695 -2.517329 0.455649 -0.224321 0.187755 0.359818 -0.364385 -0.734351 -0.038784 -0.442121 1.336272 0.003818 -1.381780 1.161563 -1.424035 -1.340644 -1.402081 -0.307728 0.209752 -0.370476 0.844123 -0.622755 -0.082144 -0.494486 0.643480 -0.412285 -0.429516 0.058718 0.729479 1.025870 0.915527 -0.833653 1.444748 0.238633 -0.564485 -0.413049 -0.103641 -0.559477 0.584464 -1.238555 -0.406913 0.039705 0.797579 -0.993741 0.593461 0.311371 0.741676 0.325813 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = 0.189053 -0.218197 0.088020 0.345692 0.272683 -0.016122 0.049397 -0.001506 -0.089737 -0.583898 -0.278892 -0.099005 -0.051711 -0.062486 0.197263 0.091031 0.314708 0.029717 -0.389300 0.079211 0.050529 -0.146347 -0.146949 0.079822 -0.007948 -0.333272 0.026710 0.316104 -0.005514 0.305485 -0.247842 0.180434 0.267827 0.086958 0.374859 0.318461 0.140159 -0.128570 -0.025358 0.064855 0.744706 -0.035478 0.014302 0.100429 0.262318 0.441282 -0.051825 0.430416 0.162117 -0.103087 0.373884 -0.315234 -0.033967 0.043538 -0.628883 0.133323 0.259371 0.107783 -0.418977 0.199331 -0.242055 0.138620 0.089755 -0.010220 0.555289 0.062287 0.269836 0.257822 0.414230 -0.286515 -0.088087 0.239748 0.278674 0.137703 -0.045110 -0.074395 0.062125 -0.733079 0.032099 -0.226147 0.076560 -0.092235 0.387593 -0.193120 -0.111491 0.325485 -0.128231 0.323365 -0.228008 -0.011516 -0.535673 0.041478 0.142937 0.257910 0.061724 -0.004166 0.067223 0.137169 -0.030938 0.319106 -0.038536 -0.373330 -0.411222 -0.858941 -0.511051 -0.179938 0.053973 -0.187818 -0.446575 0.007446 0.404344 0.256218 -0.372056 -0.003466 0.082022 0.127017 -0.063238 -0.028651 -0.287673 -0.207773 0.034954 0.239598 0.167361 -0.017668 0.097409 -0.528104 0.221753 0.058409 0.271164 -0.095936 -0.104143 -0.074942 0.110427 0.026192 -0.139437 -0.063357 0.045909 -0.207788 0.235880 -0.135932 0.364504 -0.421645 0.029295 -0.429192 -0.265266 -0.075770 0.743932 0.321620 0.345131 0.298634 -0.299600 0.038690 -0.441880 -0.701139 -0.001572 -0.085409 0.151806 0.038710 -0.091110 0.118350 -0.124717 -0.105324 0.124700 -0.313701 -0.195063 -0.173268 -0.097158 -0.011064 -0.157846 -0.315462 0.127909 0.411353 -0.141241 0.217660 -0.240141 -0.289973 -0.316865 -0.356811 0.258854 -0.181443 0.112221 0.021449 -0.021681 -0.476606 0.233415 -0.290732 0.003454 -0.239724 -0.318898 -0.404006 0.079664 -0.170832 -0.037681 0.087307 -0.333586 0.175779 0.029339 0.093534 0.100907 0.100136 -0.078135 -0.377487 -0.470895 -0.101177 0.006508 0.384679 0.219751 0.003586 -0.122371 -0.244646 -0.283799 0.341410 -0.353765 0.105294 0.248180 -0.437139 0.195784 -0.258883 -0.163322 -0.131164 0.222816 0.110470 -0.486830 0.460456 0.392097 -0.478239 -0.269453 -0.418175 0.190726 0.072567 0.569155 -0.111589 0.154391 0.120512 0.192345 -0.049469 -0.137767 0.219049 0.073375 0.118259 -0.573273 -0.420120 0.267263 0.377003 -0.018331 0.036338 0.109154 0.252952 -0.022014 0.560771 0.067102 0.119175 -0.192663 -0.700740 0.112090 0.257367 -0.001472 0.263802 -0.298957 -0.179193 -0.149552 -0.106033 0.442090 0.209166 0.069581 0.413344 -0.198257 -0.376425 -0.207779 -0.082772 -0.004416 -0.306093 0.270350 -0.296788 -0.065454 -0.216310 0.171128 -0.036194 -0.069272 -0.359462 0.033706 0.156186 0.185907 -0.051715 0.365183 0.099027 -0.217980 -0.097431 0.096026 0.049429 0.382211 -0.306723 -0.288454 -0.172740 0.083389 -0.188554 0.147230 -0.052446 0.232997 0.143330 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.637637 -0.220219 -0.058939 0.750600 0.325665 -0.361660 0.188805 0.394707 -0.200373 -1.214148 -0.546351 0.182280 -0.016892 -0.309446 0.270190 0.177640 0.467922 0.280525 -1.407818 0.309197 0.168003 -0.105648 -0.561699 -0.287807 -0.015714 -0.367208 -0.091113 0.648986 -0.003645 0.778708 -0.544590 0.230081 0.561133 0.170836 0.801967 0.686663 0.154665 -0.193118 0.094100 0.005648 1.525858 0.413192 -0.235946 0.264863 0.542821 0.978793 -0.022088 0.783185 -0.243889 -0.192502 0.437886 -0.428886 -0.304299 0.017926 -1.194690 0.217990 0.866526 0.519550 -0.783785 0.596725 -0.485928 0.269253 0.374174 0.042356 1.305336 0.281160 0.499028 0.639346 1.061280 -0.578649 0.031062 0.173867 0.666294 -0.072867 0.059368 -0.310268 -0.134924 -1.669307 0.136433 -1.307449 0.131922 -0.036531 1.168882 -0.629485 0.231607 0.632875 0.118961 0.714248 -0.768388 -0.182141 -1.067035 -0.018952 -0.090534 1.327627 0.026765 0.156633 0.153657 0.487637 0.090862 0.540835 -0.086067 -0.839715 -0.631109 -1.968422 -0.809702 -0.314020 -0.228256 -0.310099 -0.916539 -0.188012 0.968051 0.728750 -1.174888 -0.093867 0.195637 0.106323 -0.036909 -0.096972 -0.689296 -0.004538 -0.363931 0.383766 0.391452 -0.320707 0.101728 -0.685333 0.175904 0.252921 0.533016 0.104496 -0.959183 -0.026349 0.370785 -0.176838 -0.300795 0.038760 -0.046328 -0.508515 0.420733 -0.710742 0.853640 -1.072159 0.132711 -0.707100 -0.773882 -0.126752 1.012985 0.713736 0.402049 0.447800 -0.355146 0.117238 -1.096153 -1.742392 0.340997 -0.034399 0.298464 -0.176726 -0.162031 0.014673 -0.416397 -0.299815 0.479348 -0.716076 -0.473145 -0.442475 0.869383 0.062989 -0.394896 -0.465989 0.242942 0.969478 0.027781 0.446755 -0.658092 -0.704936 -0.971756 -0.612632 0.708084 -0.310853 0.007521 -0.034609 -0.045913 -0.959740 0.488924 -0.671791 0.350276 -0.485695 -0.388933 -0.963787 0.166370 -0.287889 -0.018710 0.045642 -0.648871 0.350744 0.228800 0.227899 -0.083933 0.184869 0.256586 -0.851953 -1.011426 -0.037171 0.147752 0.890879 0.587300 0.176557 -0.380664 -0.299178 -0.742307 0.848768 -0.726264 0.342791 0.258761 -0.807400 0.721548 -0.635813 -0.428587 -0.447519 0.532817 0.201650 -0.765468 1.340777 0.860179 -0.997995 -0.405208 -0.852525 0.440106 0.268287 1.223157 -0.484977 -0.098301 0.350173 0.119541 -0.159180 -0.349054 0.421079 0.052079 0.344973 -1.158296 -0.656669 0.643596 0.686899 -0.000271 0.266838 0.053131 0.101505 -0.247488 1.294534 0.201128 0.228548 -0.619923 -1.466119 0.292924 0.064053 0.185673 0.166789 -0.424018 -0.521662 -0.268991 -0.024900 0.928512 0.719980 -0.313405 0.827600 -0.873428 -0.909662 -0.588193 0.141085 0.150603 -0.649710 0.432217 -0.587015 0.008513 -0.268386 0.497153 0.089689 -0.311430 -0.793315 0.087292 0.443269 0.297104 -0.557692 0.937298 0.104491 -0.435906 -0.151317 0.035372 0.058316 0.611091 -0.581339 -0.505871 -0.365494 0.407658 -0.556446 0.598496 0.072631 0.462706 0.428415 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 2.108646 -0.453344 -0.871328 2.175214 0.379995 -1.521671 0.471067 1.335528 -0.310590 -2.894346 -1.065020 1.959098 0.066205 -1.085211 0.318517 0.525893 0.852532 0.976136 -3.891999 1.144606 0.090092 -0.019926 -2.128915 -1.496877 -0.006051 -0.014930 0.138605 1.365959 0.044310 2.020004 -1.480927 0.440327 1.170226 0.393058 1.996256 1.330496 0.197645 -0.350601 0.018698 -0.466847 3.629977 1.663149 -0.737779 1.110600 1.306212 2.337385 0.243463 2.415407 -0.583062 -0.181426 0.721042 -0.258938 -1.056506 0.013671 -2.906899 0.516532 2.289049 1.249709 -1.571524 1.563987 -0.920435 0.770274 1.223784 0.318427 3.648178 1.017588 1.183239 1.804013 2.927962 -1.281808 0.519809 -0.179543 2.338401 -0.459508 0.882315 -1.227420 -1.063713 -3.607938 0.125648 -3.993510 0.635655 -0.081949 3.618968 -1.933350 1.219244 1.083088 0.948904 1.755596 -2.367218 -0.442426 -2.516240 -0.108651 -0.851214 4.455830 -0.182736 0.852090 0.034161 1.279474 0.256024 0.959876 -0.071906 -2.194279 -0.570184 -4.998849 -1.660330 -0.495391 -1.348791 -0.823915 -2.389787 -0.477620 1.959918 2.328756 -3.534323 -0.702112 0.280142 -0.355989 0.716754 -0.043314 -1.558053 0.721293 -1.404879 1.028754 0.844690 -1.149676 0.066913 -1.101900 -0.241163 0.864812 1.443142 0.906050 -3.533443 0.158697 1.009664 -0.278966 -0.719756 0.294755 -0.421856 -1.462973 0.824627 -2.155960 2.069906 -2.903594 -0.182298 -1.533660 -2.165338 -0.138748 2.155403 1.619979 1.327039 0.874047 -0.290080 0.139611 -3.098225 -4.882515 1.471619 -0.152643 0.264924 -0.670194 -0.138614 -0.366870 -1.306458 -1.057832 1.974547 -2.022801 -1.475853 -1.396133 3.249374 0.111210 -1.017191 -0.968118 0.495497 2.507453 0.832015 1.101815 -1.700179 -3.004809 -2.966834 -1.124019 1.929415 -0.703338 -0.218560 -0.079324 -0.078750 -2.129541 0.912857 -1.724009 1.418981 -1.009541 -0.596106 -2.493990 0.307184 -0.526283 0.293702 -0.256602 -1.509196 0.993791 0.695137 0.989133 -0.807956 0.799261 1.262815 -2.465734 -2.711966 0.160674 0.652413 2.515450 1.490153 0.799945 -1.281987 -0.474990 -2.340047 2.170698 -2.753081 1.064630 0.453207 -1.573287 2.126177 -1.879156 -1.142669 -1.286651 1.431693 0.354511 -1.994136 3.797740 2.222665 -2.571880 -0.660654 -2.119386 1.404886 0.723736 3.263390 -1.792815 -0.884306 1.024477 0.155924 -0.559049 -1.085088 1.018332 -0.017412 0.808778 -2.745132 -1.274010 1.604607 1.367779 0.092835 0.370381 -0.260540 -0.775527 -1.128641 3.411596 0.692355 0.773084 -2.012054 -4.024104 0.556445 -0.458798 0.678892 0.299851 -1.103734 -1.409461 -0.541057 -0.272359 2.262214 1.280520 -1.278725 1.886808 -3.116337 -2.282922 -1.536409 0.669537 0.524570 -1.530456 1.273685 -1.492151 -0.033610 -0.362330 1.551772 -0.023476 -0.707957 -1.528056 0.291365 1.207312 0.553040 -1.929616 2.434822 0.310865 -1.067064 -0.210953 -0.186795 -0.151093 0.932360 -1.952405 -0.911354 -0.847574 1.321506 -1.706090 2.023210 0.478109 1.217978 0.851665 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.710884 -0.364373 0.040015 0.942520 0.397616 -0.439780 0.046023 0.270313 -0.248183 -0.871425 -0.363940 0.190720 -0.146095 -0.204987 0.391500 0.027945 0.333018 -0.150843 -0.961052 0.366780 -0.267848 -0.303748 -0.562114 -0.395213 0.052777 0.177798 0.201882 0.637700 -0.027580 0.509041 -0.641143 0.225291 0.152749 0.355207 0.796103 0.013180 0.216497 -0.165223 -0.346982 -0.224620 1.197060 0.190074 -0.244444 0.425799 0.520813 0.630282 0.008600 1.001667 0.029942 0.204845 0.718966 -0.489307 -0.120758 0.142254 -1.056718 0.251943 0.921280 0.202415 -0.425346 0.315195 -0.458574 0.395152 0.287622 0.124195 1.252092 0.393917 0.592376 0.549955 0.832273 -0.588024 -0.010285 0.138167 1.156111 0.129204 -0.392923 -0.443197 -0.114999 -1.443297 0.053285 -0.741383 0.288550 -0.287919 0.696094 -0.339145 0.090215 0.313632 -0.187351 0.381479 -0.948985 0.331125 -0.798604 0.044622 -0.134081 0.966534 -0.233893 0.177303 0.157264 0.246853 0.116843 0.587930 -0.116196 -0.517470 -0.198564 -1.534481 -0.823363 0.334611 -0.380997 -0.575201 -0.639025 0.074229 0.658812 0.285022 -0.565032 -0.583290 -0.117571 0.025573 0.164523 0.171089 -0.473379 -0.080920 -0.226174 0.603441 0.446775 -0.153259 0.295512 -0.951437 -0.034812 0.361165 0.798953 0.320806 -0.562583 0.028256 0.238602 -0.065759 -0.331302 -0.311433 -0.374602 -0.332621 0.262516 -0.290413 0.699166 -0.878255 -0.230364 -0.847204 -0.490802 0.313273 1.061444 0.442427 0.592370 0.873173 -0.220778 0.117181 -0.706213 -1.367452 0.292460 0.137807 0.007934 -0.269249 0.019372 0.152553 -0.295666 -0.627235 0.759366 -0.829449 -0.788256 -0.795120 0.167622 -0.019785 -0.352544 -0.439282 0.539878 0.949908 -0.120016 0.484559 -0.426866 -1.030009 -0.720007 -0.482179 0.488880 -0.247246 -0.092488 0.268352 0.252973 -1.074585 0.427658 -0.536124 0.474501 -0.177261 -0.633852 -0.731890 0.053386 -0.161927 0.279335 -0.021004 -0.439826 0.365200 -0.023342 0.633688 -0.192993 0.659158 0.338045 -0.865978 -1.274376 -0.282114 0.485165 0.999235 0.108264 0.216122 -0.239856 -0.400682 -0.635577 0.853703 -0.866662 0.226033 0.219429 -0.393381 0.453154 -0.505670 -0.526648 -0.323096 0.456058 0.310590 -0.570127 1.118010 0.718368 -0.952981 -0.537533 -1.199059 0.598734 0.084411 1.534856 -0.569974 0.045130 0.265505 0.685424 -0.320271 -0.485862 0.482203 0.219070 -0.058624 -0.899908 -0.817697 0.249385 0.466464 0.188656 -0.061578 -0.008923 0.133710 -0.515194 1.267215 0.143635 0.181847 -0.433020 -1.262989 0.016895 0.522855 0.077478 0.431242 -0.810684 -0.661611 -0.448447 -0.004225 0.795077 0.499401 -0.024134 0.677103 -0.566743 -0.485746 -0.480486 0.216424 -0.117602 -0.763110 0.518168 -0.646920 -0.238856 -0.032693 0.342222 -0.148553 0.066747 -0.816196 -0.312877 0.219471 0.073515 -0.330361 0.648981 0.457104 -0.491074 -0.154265 0.220647 -0.148624 0.503647 -0.646905 -0.366381 -0.371279 0.204468 -0.417701 0.403357 0.377966 0.317931 0.058950 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.104922 0.054820 -0.383003 1.386145 0.185338 -0.774232 0.202620 0.537517 -0.457325 -1.352804 -0.544480 1.127439 -0.020093 -0.484272 0.152459 0.249597 0.379214 0.224457 -1.919101 0.562135 -0.155653 -0.290987 -1.038479 -0.787859 -0.026969 0.077199 0.380042 0.956699 -0.075985 1.011732 -0.771723 0.378916 0.467100 0.401278 1.119393 0.442004 -0.072948 -0.212353 -0.342426 -0.425732 1.670375 0.704271 -0.354982 0.577050 0.652319 1.197018 0.221969 0.790074 -0.320603 0.075906 0.362288 0.368671 -0.534192 -0.028632 -1.426994 0.093046 0.933340 0.344788 -0.608345 0.710288 -0.753740 0.445753 0.603859 0.350335 1.873067 0.442635 0.846486 0.984097 1.376141 -0.814239 0.220151 0.023494 1.354173 -0.105590 0.027898 -0.288267 -0.721653 -1.435576 0.012240 -1.987678 0.213515 -0.038327 1.710421 -0.784493 0.198762 0.209486 0.331931 0.882554 -1.460096 0.063604 -1.160103 -0.061957 -0.623778 1.967318 -0.030234 0.488903 0.052904 0.560497 0.213862 0.634417 -0.363588 -1.104910 0.042042 -2.335684 -0.860313 -0.074464 -0.692210 -0.543531 -0.994667 -0.099279 0.972423 1.367155 -1.430117 -0.643008 0.056109 -0.216087 0.286954 0.047600 -0.710830 0.348416 -0.583876 0.710125 0.750094 -0.415900 0.246227 -0.438275 -0.158506 0.372076 0.930676 0.717232 -1.719232 0.007536 0.685479 -0.446539 -0.294002 0.049479 -0.299967 -0.459761 0.373055 -0.923454 1.175620 -1.384445 -0.111931 -0.944002 -0.944333 0.101452 0.613246 1.149668 0.612612 0.589712 0.126626 0.227035 -1.426133 -2.225301 0.702378 0.128071 -0.118652 -0.499717 -0.028758 0.011130 -0.769096 -0.559525 1.312635 -1.119008 -0.979391 -0.873270 1.398886 0.239713 -0.590020 -0.420716 0.339143 0.840432 0.467979 0.823822 -0.808066 -1.844471 -1.492097 -0.594051 0.969782 -0.407044 -0.374420 0.031925 -0.110959 -1.035812 0.463754 -0.868803 0.750811 -0.359523 -0.368253 -1.281039 0.151729 -0.183799 -0.087615 -0.195149 -0.758971 0.433618 0.537802 0.197021 -0.368566 0.642194 0.603246 -0.870151 -1.252775 0.159793 0.401978 1.232772 0.860256 0.396434 -0.841640 -0.324753 -1.173175 1.204418 -1.038992 0.623208 0.214261 -0.739152 1.004527 -0.863860 -0.584693 -0.319322 0.757840 0.221876 -1.331609 1.864155 1.378769 -1.388976 -0.478927 -1.162995 0.761640 0.291947 1.838655 -1.133020 -0.384416 0.408576 0.439354 -0.343199 -0.308648 0.567578 0.078657 0.035806 -1.263948 -0.760697 0.800709 0.628131 0.175561 -0.010776 -0.237097 -0.349249 -0.325573 1.632674 0.391279 0.381746 -0.981514 -2.002897 0.225243 -0.292670 0.093594 0.344485 -0.567849 -0.931144 -0.389000 -0.472329 1.201584 0.090226 -0.988922 0.985592 -1.312398 -1.051931 -1.079207 0.280101 0.063972 -0.854406 0.903428 -0.784326 -0.125294 -0.117936 0.676108 -0.247191 -0.215934 -0.624750 0.016358 0.568414 0.315337 -0.841854 1.217129 0.332189 -0.569329 -0.341397 0.045450 -0.350962 0.524277 -1.355337 -0.511124 -0.450246 0.722555 -0.817492 0.799136 0.538516 0.645645 0.390346 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = 0.155713 -0.171194 -0.064681 0.429426 0.108290 -0.065756 0.074867 0.002421 -0.058886 -0.621293 -0.256981 -0.059772 0.036276 -0.058664 0.167015 0.160235 0.154261 0.138331 -0.457303 0.099785 0.144190 -0.075383 -0.101446 0.009270 -0.028042 -0.301104 -0.014493 0.249444 -0.007299 0.400262 -0.219110 0.240094 0.340238 0.040210 0.233401 0.330157 0.116187 -0.064844 -0.043426 0.126088 0.634304 0.051548 -0.076359 0.024891 0.096684 0.474886 0.003576 0.358770 0.000175 -0.161314 0.287592 -0.207363 -0.072481 0.007082 -0.510858 0.122950 0.291709 0.223435 -0.301481 0.219680 -0.318984 0.126321 0.157956 0.008010 0.582441 0.134890 0.300452 0.340203 0.461443 -0.301373 0.024722 0.128986 0.161469 -0.048251 0.147113 -0.027391 -0.082690 -0.741251 -0.010377 -0.352977 -0.006055 0.024196 0.430301 -0.321807 -0.084675 0.307994 0.039728 0.439946 -0.297682 0.057704 -0.500529 0.015176 0.074209 0.435371 0.130761 0.010779 -0.072587 0.198793 0.006934 0.204147 0.006518 -0.382341 -0.375211 -0.821532 -0.490860 -0.216681 0.004361 -0.048931 -0.573161 -0.021840 0.455653 0.349565 -0.574021 0.051682 0.130525 0.181332 0.122819 -0.096648 -0.290009 -0.029595 0.014159 0.190537 0.216649 -0.125528 0.118358 -0.411588 0.202169 0.083361 0.203891 -0.046874 -0.241360 -0.078391 0.124573 -0.038756 -0.037518 0.090151 0.144970 -0.216357 0.231886 -0.260520 0.394777 -0.487115 0.049581 -0.308907 -0.348326 -0.110321 0.668794 0.363872 0.269143 0.121137 -0.360185 0.025869 -0.536342 -0.801723 0.010484 -0.032734 0.120171 0.060888 -0.111994 0.090581 -0.169121 0.053498 0.201423 -0.320252 -0.186080 -0.053284 0.079444 0.039264 -0.180892 -0.310819 0.012607 0.308714 -0.028179 0.313294 -0.181700 -0.286883 -0.479054 -0.326789 0.337854 -0.175332 0.075975 -0.130863 -0.071433 -0.528355 0.227056 -0.289442 0.030745 -0.107047 -0.262698 -0.483515 0.081023 -0.120498 -0.122834 0.067209 -0.368901 0.132648 0.064948 -0.028640 0.094588 0.059795 -0.006804 -0.344971 -0.430447 -0.014584 -0.100383 0.395809 0.246400 0.043539 -0.181539 -0.212934 -0.337945 0.382224 -0.347919 0.155793 0.142547 -0.367378 0.272206 -0.320118 -0.229396 -0.189467 0.221303 0.056771 -0.385821 0.548690 0.426618 -0.401157 -0.142236 -0.288903 0.222718 0.120563 0.517350 -0.212304 0.028070 0.107308 0.135956 -0.044853 -0.099430 0.203824 -0.099708 0.062960 -0.451369 -0.269335 0.275538 0.366390 -0.031305 0.060910 0.103282 0.089121 -0.040840 0.435029 0.147521 0.036539 -0.229993 -0.639143 0.151901 0.007916 -0.023990 0.177908 -0.300232 -0.111639 -0.015943 -0.090128 0.453470 0.232865 -0.073865 0.415127 -0.366881 -0.429589 -0.254277 -0.047576 0.006353 -0.249676 0.276288 -0.253768 0.008519 -0.086603 0.166595 -0.055581 -0.181444 -0.243718 0.088377 0.254440 0.116166 -0.128396 0.433147 0.097882 -0.197335 -0.134808 0.033581 -0.071796 0.243451 -0.266552 -0.213893 -0.067930 0.178198 -0.257620 0.207184 -0.122808 0.111464 0.167316 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.208587 -0.024618 -0.165537 0.541072 -0.066697 -0.368552 0.222270 0.180406 -0.135718 -0.641563 -0.086766 0.117373 0.121268 -0.223280 -0.009081 0.161104 -0.029671 0.324428 -0.721606 0.205402 0.201490 0.080599 -0.316619 -0.327612 -0.098660 -0.258955 0.025017 0.424035 -0.075244 0.560369 -0.198933 0.046403 0.408164 0.010590 0.268319 0.529437 0.337204 0.108251 -0.052854 0.271240 0.671408 0.429424 -0.396819 -0.032595 0.183878 0.625260 0.292958 -0.040638 -0.729653 -0.213135 -0.182682 0.205049 -0.227441 -0.274745 -0.441933 0.055608 0.568477 0.580186 -0.361877 0.484941 -0.441686 0.030860 0.316061 0.344132 0.651660 0.118779 0.308313 0.437521 0.728693 -0.389453 0.070813 0.032509 0.233209 -0.363898 0.436037 0.153284 -0.530424 -0.949813 0.041301 -0.872772 -0.178919 0.354076 0.491682 -0.506084 0.131653 0.435467 0.309349 0.473414 -0.587406 -0.191558 -0.490232 -0.085954 -0.231200 1.262011 0.234609 0.138318 -0.035593 0.527408 0.327359 0.232560 0.044188 -0.545845 -0.143233 -1.044852 -0.344059 -0.342915 -0.289934 -0.031958 -0.515587 -0.368597 0.777434 0.696073 -0.880382 0.184574 0.303600 0.138038 0.402103 -0.700317 -0.214952 0.512359 -0.276478 -0.096984 0.361655 -0.366301 0.017463 0.182956 0.272072 0.136480 0.100602 0.138466 -0.798583 0.054352 0.278867 -0.281984 -0.048017 0.177102 -0.011214 -0.462227 0.212564 -0.729542 0.596864 -0.627240 0.343022 -0.080779 -0.639478 -0.087400 0.089210 0.288026 -0.045653 -0.238639 -0.341285 0.093191 -0.673850 -1.357954 0.347474 0.226368 0.046932 -0.149607 -0.173138 -0.134778 -0.354204 0.039568 0.549391 -0.340681 -0.108952 0.063575 0.823978 0.161106 -0.289448 -0.137017 -0.035633 0.348120 0.559558 0.396824 -0.386114 -0.433144 -0.703970 -0.289229 0.481078 -0.084063 -0.192854 -0.189418 -0.339881 -0.708306 0.428132 -0.339409 0.463277 -0.192683 -0.008629 -0.627675 0.066958 -0.117062 -0.160286 -0.048620 -0.394664 0.026228 -0.027853 -0.562240 -0.059940 -0.096752 0.384806 -0.283185 -0.386647 0.270988 0.008313 0.489451 0.266255 0.256111 -0.181963 -0.001390 -0.490105 0.480431 -0.166363 0.202227 0.046293 -0.452968 0.659458 -0.307433 -0.406167 -0.249911 0.348691 0.061416 0.332639 1.047231 0.711723 -0.415051 -0.126560 0.086945 0.124709 0.307683 0.604502 -0.576854 -0.351934 0.244919 -0.131682 -0.065381 0.036040 0.189434 -0.208941 0.271643 -0.455438 -0.133867 0.273150 0.450714 -0.038080 0.246904 -0.107012 -0.359170 -0.382451 0.529307 0.211367 0.189696 -0.442926 -0.355436 0.325738 -0.986795 0.011816 -0.161555 -0.047759 -0.205407 0.132073 0.118806 0.513088 0.507861 -0.737055 0.464907 -0.807922 -0.654117 -0.398368 -0.012409 0.135688 -0.352084 0.338053 -0.259609 0.211572 -0.044674 0.248452 -0.016495 -0.237240 -0.011854 0.079514 0.229788 0.076455 -0.570055 0.676826 -0.132380 -0.167499 -0.169833 -0.052764 -0.065621 0.264142 -0.205142 -0.244764 -0.217193 0.502982 -0.330316 0.495978 -0.112568 0.101917 0.485421 -PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 5.276079 -1.158088 -3.322934 10.062798 0.215489 -0.007174 1.842881 1.485885 1.336798 -13.851195 -5.887017 9.372018 1.721013 -0.090031 -0.304428 3.142131 3.140400 4.579264 -15.052416 0.309567 3.268851 0.765745 -1.124386 -2.843135 0.169041 -3.341225 5.374736 2.859524 1.550687 9.345911 -3.207066 5.453640 7.693026 0.621763 3.996057 6.425449 -2.535633 -0.545097 -3.514379 -4.110900 11.600404 4.421032 0.104341 5.121028 -0.625834 9.915176 2.583540 5.938150 3.801520 -3.747576 2.509183 2.612911 -4.154992 -1.614244 -9.185996 1.638039 4.171568 2.911806 -3.641380 4.303621 -1.092783 2.587365 3.894126 0.173918 10.455814 3.294988 6.018640 8.625570 8.668429 -6.528713 2.769785 -0.469425 2.015268 -0.413597 7.802129 -5.140007 -6.737351 -3.142615 -1.729379 -12.051940 0.092763 -0.646149 11.845850 -7.724776 0.371729 0.276911 3.281391 9.654388 -3.989512 -0.342148 -9.064991 -0.300336 -1.486925 11.939062 2.119653 2.754330 -1.977911 3.119142 -0.779074 1.679133 1.959002 -8.881177 1.157542 -14.535169 -4.343394 -6.660928 1.249753 2.826012 -8.883226 0.662205 -0.982950 8.115870 -14.634792 -1.658036 1.783708 1.849665 4.643724 -3.012679 -2.356123 1.073377 -0.858301 2.936043 2.819749 -6.044203 1.523884 -1.122030 -1.793123 1.252222 3.807227 2.672990 -9.816281 -3.422701 2.225729 -0.148961 1.049213 5.368674 4.799044 -2.563490 3.895196 -7.256968 7.538067 -8.920250 -1.997339 -3.594977 -6.089973 -5.120069 7.546306 4.551451 6.148069 -1.598828 -1.770781 -0.473757 -11.295668 -14.956520 3.029615 0.203223 0.335910 3.338547 -1.782566 1.979367 -8.243097 1.909027 5.578152 -4.812729 -4.598177 -0.691786 5.279249 0.821131 -3.270696 -2.808216 -0.612866 1.038261 2.153358 8.540232 -3.183097 -11.729687 -13.470958 -4.407410 8.477409 -4.958415 -0.294715 -4.123540 -2.601997 -4.976570 -0.217204 -7.144771 1.941465 -0.620405 -3.423882 -11.202831 2.828024 -1.982632 0.015689 2.946995 -8.098971 2.540483 5.221736 2.239953 -0.355260 1.660938 1.461701 -6.552722 -4.820997 2.609761 -4.253894 6.547816 5.057017 0.231933 -6.409156 -3.852275 -6.565105 5.375486 -5.401454 6.067001 0.388127 -4.058549 4.696684 -6.866728 -0.094354 -5.355237 3.266655 1.362902 -11.979279 10.398839 6.109480 -6.673189 -0.106248 -2.730148 4.569548 0.837220 6.328141 -7.230660 -6.122089 2.445342 -1.497534 -0.012911 -2.882769 2.289190 -1.859088 -0.577967 -8.626182 -2.668907 7.991151 3.652654 -1.260279 1.620037 4.308425 -3.633871 1.924031 8.773248 5.710485 2.242616 -8.067334 -16.606729 3.254642 -0.342710 0.916744 -0.142663 -4.373915 -3.242886 3.096035 -2.378380 7.745569 1.207320 -4.413414 7.980731 -10.786565 -8.600033 -6.577670 -2.142069 3.116775 -1.319779 1.759773 -3.665883 1.649472 -0.981470 3.352948 -1.865016 -5.255470 1.552259 5.086855 8.669475 0.663568 -1.351290 9.523272 2.284308 -3.185930 -1.028507 -1.302578 -4.050019 0.817880 -10.283063 -1.735940 1.682100 4.645742 -7.078812 3.781842 -1.377749 2.568348 1.153411 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/vertex-cover-problem.cpp__main = 2.647360 -0.582537 -0.568118 4.394099 0.849965 -0.684003 1.161629 1.466148 -0.082103 -6.856430 -3.490223 1.479917 0.593936 -0.560825 0.830628 0.983429 1.868743 1.956916 -7.335055 0.533918 1.874498 0.269358 -1.048360 -1.123860 -0.109793 -2.090480 0.224636 2.357570 0.527998 4.614370 -1.847197 1.769214 3.805416 0.116645 2.426439 4.012311 0.027011 -0.110730 -0.203853 -0.606567 6.758243 1.915962 -0.436286 1.933675 1.025517 5.192457 0.127013 3.738446 -0.435457 -2.022362 2.461929 -1.072869 -1.739876 -0.678292 -4.832661 1.250175 4.517936 2.861400 -3.156363 2.857333 -1.434607 1.090324 1.907461 -0.051846 5.115033 2.386391 2.401865 3.799064 5.075745 -3.447809 0.454307 0.664880 1.401121 -0.423615 1.596128 -2.709503 -1.824179 -4.850328 0.006528 -6.266425 -0.008966 -0.190162 6.120172 -3.796769 0.629102 2.201833 0.801531 4.147477 -2.575458 -0.642777 -4.709447 -0.238588 -0.798966 6.300921 0.502095 0.754966 0.178099 2.039878 0.268300 2.134809 0.023865 -4.188553 -2.484180 -8.530638 -3.504012 -2.662428 0.375559 0.547312 -4.604078 -0.971047 2.133052 2.372724 -6.783261 -0.317357 1.515415 1.759468 0.680977 -0.560263 -3.061554 -0.075088 -0.859329 1.122990 2.001215 -2.313535 0.637507 -2.399264 -0.083383 0.884684 1.764961 0.425569 -4.501290 -1.201160 0.767215 -0.902961 -0.393660 1.283074 1.315954 -1.960540 2.351214 -3.638545 4.214006 -5.533920 -0.163260 -2.602253 -3.882878 -1.813254 4.055285 2.473420 2.335277 0.224320 -2.110785 -0.097014 -5.440270 -7.281168 1.280493 0.228054 1.707217 0.607805 -1.147582 0.723322 -3.019565 0.004996 1.837823 -2.564287 -1.909151 -0.887389 4.339962 0.178394 -1.825730 -2.250405 0.547752 2.333854 0.006000 3.377683 -2.414866 -3.356491 -5.788779 -2.856080 4.117687 -1.959994 0.093064 -1.257723 -0.802587 -4.182694 1.245072 -3.734371 0.973274 -1.320078 -2.134502 -5.485745 1.518263 -1.303822 -0.237151 1.379815 -3.890689 1.145267 2.272470 1.577465 0.192492 0.589662 0.867277 -4.227713 -3.806181 0.244304 -1.054993 3.812525 2.928515 0.462018 -1.976704 -1.793038 -3.255773 3.240374 -2.010247 2.124414 0.487469 -2.650329 3.267903 -3.209893 -0.772413 -3.460698 1.836978 1.336902 -4.996630 5.931486 3.252331 -3.718882 -1.093223 -2.505772 1.765553 0.988886 4.256514 -2.773840 -2.187777 1.733112 -0.672103 -0.257333 -1.967204 1.599624 -0.558690 1.008772 -4.900066 -2.143389 3.653671 2.935904 -0.459007 1.709782 1.725771 -0.225954 0.349978 5.356946 2.079107 0.451241 -3.274814 -7.823847 2.176618 0.145399 0.557609 -0.195204 -2.007849 -2.187752 0.610442 0.561892 4.306348 3.383950 -1.290112 4.392256 -4.606420 -4.713626 -2.930758 -0.030978 1.607505 -2.083427 0.415764 -2.458675 0.995274 -0.641046 1.610496 0.456306 -2.606659 -2.353539 1.337665 3.879117 0.474409 -1.337666 5.079967 0.585853 -1.989066 -0.490645 -0.138206 -0.421325 1.689467 -3.158872 -1.658483 -0.466271 2.195553 -3.095294 2.426752 -0.615603 1.221729 1.969761 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 15.158557 -0.813955 -11.037296 18.179291 -2.052305 -5.772607 4.621692 6.850855 0.464894 -23.129456 -8.524510 17.831282 4.995292 -4.313947 -1.708660 10.029096 3.806704 7.138572 -26.543303 5.754620 4.649960 -0.667144 -10.560375 -5.870202 -1.777514 -8.239148 6.354827 7.422774 0.023857 17.874843 -5.294551 8.283327 14.347286 -1.873187 9.117733 15.255572 -2.450311 -1.323867 -3.417863 -2.596822 21.560120 13.277417 -3.725701 5.299079 0.974099 20.297807 4.202625 15.192611 -5.893713 -7.052277 4.361107 6.276588 -11.364795 -2.816465 -16.975411 1.431779 8.942625 6.872763 -8.762949 11.311498 -10.741120 3.857905 9.830747 7.142874 22.491688 6.799057 12.796047 16.469625 20.537355 -11.846704 5.388140 2.618550 5.805924 -3.077090 16.300645 -6.289338 -15.312194 -7.716157 1.161031 -23.548152 -1.833287 1.344304 29.321505 -16.902891 0.493837 3.314201 10.664941 19.197883 -15.381442 -0.626933 -16.495691 -1.378329 -6.097321 29.947310 2.254685 7.800146 -4.356625 9.259462 0.139168 3.886887 -0.126780 -19.362273 -3.176072 -25.197491 -9.449965 -12.931321 -4.003899 3.571007 -19.690624 -2.612155 6.175069 20.611582 -28.891203 1.096060 5.932182 0.897392 20.050095 4.655722 -7.643631 5.798319 -3.003510 5.331407 8.540118 -9.821658 2.598739 -0.974290 3.263031 4.711887 4.870666 6.016629 -30.340928 -0.880610 9.511866 -6.314087 1.474265 10.789821 7.004815 -11.656049 7.514445 -16.507386 16.008852 -22.053649 -3.898191 -7.898398 -18.117415 -7.421171 13.445517 16.892564 11.567543 -3.326532 -3.141012 0.141935 -25.216488 -31.064808 3.843046 -1.155299 -0.791288 0.392523 -2.458737 0.311689 -13.080561 4.660066 10.891667 -10.743012 -7.492932 -1.106707 21.898714 4.294146 -6.992274 -5.017934 -3.938647 1.643181 10.925759 16.835583 -7.439317 -29.424760 -27.003702 -8.040152 16.631357 -6.709002 -1.789895 -8.042727 -8.564094 -11.545951 1.715137 -12.738356 7.345392 -3.555245 -2.515193 -21.063522 6.307791 -2.662891 -5.053523 -0.010185 -13.431078 3.502016 10.740558 -1.660043 -1.178768 2.772920 3.474489 -13.255159 -10.447689 8.327146 -5.425407 20.269658 14.362206 1.848514 -8.367951 -4.210212 -17.584820 12.982818 -14.049260 10.471853 2.048614 -9.895588 14.637077 -14.321938 -3.821829 -11.846796 9.842256 -0.033907 -18.845361 25.597982 19.557894 -14.830345 -0.561786 -3.598336 8.356855 5.822271 14.452864 -13.272499 -11.545282 5.650626 -1.388269 -1.497763 -0.511485 4.675426 -6.519694 1.891332 -15.229387 -3.577415 15.624513 9.486569 -2.263452 -0.101371 0.285841 -9.999439 1.727420 16.124450 9.661529 3.615656 -17.538317 -32.948154 7.373687 -12.023350 -2.926750 -0.656031 -5.726924 -6.427794 4.112041 -8.363150 16.487479 1.333043 -13.664989 14.745745 -25.474881 -20.193498 -15.542476 -0.423128 3.596229 -3.493246 7.755088 -8.212106 4.147054 -2.371929 8.561737 -4.860608 -10.840326 1.739837 8.799363 14.508792 3.499618 -9.975925 19.861318 2.054479 -2.660849 -5.844174 -0.816199 -6.889685 3.646643 -18.110459 -4.920928 -0.725751 12.684678 -13.405366 11.009389 1.140001 6.539264 7.126207 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 0.637607 -1.148178 0.324351 0.744360 0.284192 -0.033589 0.277460 0.309638 0.289427 -1.270741 -0.520953 -0.146079 -0.114946 -0.069626 0.413258 0.042812 0.595683 -0.164589 -1.631542 0.167552 0.129537 -0.127649 -0.197039 0.161027 0.043994 -0.677667 0.221776 0.832106 -0.021687 0.722361 -0.419613 0.131114 0.641081 -0.024046 0.548469 0.799629 0.372014 -0.064178 -0.136138 0.312261 1.517103 0.284455 -0.318312 0.326357 0.505926 1.013214 0.128034 1.533742 0.941641 -0.352082 1.106978 -1.022826 -0.375848 -0.178444 -1.183395 0.150392 1.136158 0.510869 -0.825617 0.640956 -0.505641 0.233770 0.232094 0.189086 1.110995 0.327074 0.812084 0.405150 0.950467 -0.725567 -0.167814 0.471418 0.699892 0.397657 0.031194 -0.893650 -0.247711 -2.145405 0.283233 -0.563873 -0.158261 -0.330810 0.288120 -0.526430 -0.074676 0.698685 -0.482885 0.604543 -0.569471 0.031484 -1.039290 0.064096 0.584253 1.133175 -0.163473 0.012013 0.430212 0.401601 0.152600 0.703090 0.400336 -0.842539 -0.879020 -1.888605 -0.858579 -0.418479 0.114719 -0.240164 -0.907828 0.062417 0.644355 -0.285061 -0.844386 -0.001079 0.346468 0.400039 0.466747 -0.061394 -0.254172 -0.381790 0.152782 0.534542 0.619911 -0.533445 0.292395 -1.116221 0.641587 0.519210 0.360011 -0.187144 -0.186081 -0.140941 0.272351 0.424197 -0.262408 -0.059251 0.009966 -0.512165 0.543368 -0.599741 0.926448 -1.129220 -0.130947 -0.716933 -0.183013 -0.178737 1.976733 0.384005 0.685138 0.529017 -0.879181 0.110142 -0.828340 -1.747724 -0.042448 0.041632 0.440433 0.017148 -0.207851 0.204606 -0.252099 -0.216342 -0.175140 -0.486953 -0.260611 -0.250958 -0.736413 0.051715 -0.311530 -0.490560 0.444212 0.941080 -0.213688 0.600884 -0.388580 -1.338632 -0.638666 -0.689276 0.655147 -0.291973 0.083573 0.090122 -0.142370 -1.265210 0.541913 -0.605304 0.074148 -0.364774 -0.986517 -0.933205 0.298268 -0.393673 0.655239 0.285256 -0.744976 0.069960 -0.345149 0.903538 0.331902 0.347391 0.062954 -1.279828 -1.191715 -0.377599 -0.103955 1.470265 -0.169173 -0.071796 0.169486 -0.359795 -0.583220 0.740148 -0.929321 0.159413 0.252814 -0.971741 0.586265 -0.281854 -0.304392 -0.743675 0.474242 0.434164 -0.373657 1.443233 0.975901 -0.908061 -0.603492 -0.629648 0.240983 0.315417 1.137659 -0.420970 -0.187399 0.280195 0.278883 -0.064389 -0.391334 0.482244 0.136930 0.150608 -1.119570 -0.802250 0.505899 0.740319 -0.026101 0.131322 0.371636 0.434893 -0.426669 1.233614 -0.030368 0.200871 -0.476947 -1.941075 0.468552 1.210142 -0.079624 0.489153 -1.174615 -0.484328 -0.067485 0.362226 0.858389 1.320198 0.345808 0.872155 -0.576436 -0.842092 -0.627863 -0.304772 -0.013202 -0.446714 0.347154 -0.518072 0.113177 -0.273748 0.250767 -0.033934 -0.112673 -0.714834 0.040057 0.272528 0.223891 -0.216222 0.881972 0.066149 -0.473867 -0.261345 0.142605 -0.147371 0.832513 -0.044912 -0.370552 -0.392680 0.327343 -0.406164 0.325490 -0.012463 0.436788 0.161075 -PE-benchmarks/largest-independent-set-problem.cpp__main = 5.381994 -3.334482 -1.229211 5.588162 0.102631 -2.036380 1.935200 3.413130 0.921938 -8.733450 -3.978139 1.728626 0.772819 -1.807575 1.480106 2.037981 2.393384 1.491696 -12.351374 2.280600 2.201519 -0.090276 -2.589356 -1.097082 -0.138627 -3.528559 -0.326644 3.997493 -0.159131 6.235117 -2.615209 2.129717 5.209022 -0.474187 3.651088 6.038251 -0.339031 -0.738707 0.817546 0.971644 9.236537 4.052417 -1.931665 1.495085 1.882415 7.494069 0.309969 7.959154 0.705992 -2.718142 4.987517 -3.631347 -3.654919 -0.507667 -6.891633 0.744221 6.382573 3.865408 -4.502513 4.609157 -4.285984 1.568205 3.083128 1.178712 8.523581 3.189491 4.548629 4.721644 7.632088 -4.191790 1.167329 1.209783 3.010378 -0.482376 2.331694 -4.578963 -2.918868 -10.429822 1.428456 -8.354342 -0.717145 -0.574340 7.363651 -5.601497 1.078552 3.445417 1.145119 6.272564 -5.238513 -0.327400 -6.651935 -0.193047 0.391748 9.695252 -0.709910 1.495177 0.610518 3.334192 0.266901 2.695186 0.491445 -6.521245 -5.068620 -11.892710 -4.830984 -3.633799 -0.902406 0.005296 -7.621124 -0.600794 4.314496 2.405426 -9.355898 0.244773 2.308027 1.522777 3.583192 1.795104 -3.487393 -0.349507 -1.101088 3.236716 3.667916 -3.910770 1.281136 -5.116937 2.079186 3.116100 2.027672 0.414561 -6.776220 -0.360660 2.913646 -0.678456 -0.761541 2.464453 1.430772 -3.601137 3.199520 -5.899350 6.386830 -8.530071 -0.994560 -4.300339 -4.358900 -2.011889 8.979156 5.289001 3.126584 1.395106 -3.457875 0.690232 -8.095161 -11.152333 0.625214 -0.764224 2.286043 -0.594651 -1.187143 0.161532 -2.906822 0.269755 0.548645 -4.014477 -2.405759 -1.553016 3.652190 1.264311 -2.552386 -2.709026 0.525079 4.299666 0.465727 4.789873 -3.056324 -7.987553 -7.694496 -3.954530 5.799047 -2.097145 0.017824 -1.867598 -1.305397 -6.554705 2.379972 -4.650830 1.314240 -2.064903 -3.167875 -7.495144 2.099967 -1.728587 1.115810 0.493273 -4.917359 1.089943 1.882471 3.618778 0.596226 1.612055 1.008850 -6.963813 -6.219213 0.082008 -1.102570 8.650425 3.061382 0.393443 -1.369872 -1.771277 -5.241530 5.590332 -5.193479 2.718223 0.882353 -5.357544 5.557511 -3.904138 -1.973515 -5.331224 3.461201 1.096454 -5.792976 9.820221 6.506882 -6.117333 -1.683073 -4.131638 2.779934 2.487916 6.641760 -3.250923 -2.676324 2.061075 0.229535 -0.668230 -2.052963 2.499724 -1.308907 1.438207 -6.548012 -2.915362 5.346617 4.368978 -0.499651 1.033023 0.835624 0.030080 -0.560325 7.156438 1.625775 0.495656 -4.980074 -13.087521 3.007946 3.096744 0.086866 0.919428 -4.684251 -2.996758 0.075186 0.430687 6.396612 6.495286 -1.254648 5.726446 -6.939539 -7.132682 -5.457460 0.500470 0.851191 -2.319178 1.844467 -3.278223 1.348481 -0.783257 3.107660 0.283762 -3.480394 -4.188387 1.993260 4.314688 1.451168 -3.650806 7.084950 0.525437 -2.111747 -2.040176 0.044917 -1.593513 3.082113 -2.399750 -2.263966 -1.383690 3.743853 -4.396122 4.010294 0.253574 2.761990 2.253448 -PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 3.672881 -0.744190 -1.907613 6.153568 0.959095 0.448939 0.219539 0.910191 0.570828 -7.806383 -4.941099 3.657417 0.990100 0.964846 1.446412 2.340886 2.207035 1.313859 -8.000912 0.327865 0.928176 -0.313043 -1.253469 -0.667559 0.213861 -1.844404 1.902592 1.658747 0.630905 4.249003 -2.235033 3.893809 3.996660 -0.110291 2.219726 2.058592 -1.420594 -0.970454 -2.492091 -2.473745 7.400028 1.434504 1.156496 3.430556 -0.320087 5.368641 -0.207026 6.364131 2.488226 -2.059002 4.001412 -1.038902 -2.319556 0.307489 -6.072892 2.338386 2.984322 0.602100 -2.288331 2.347281 -1.012834 1.888552 2.119540 -1.534120 7.001530 2.633957 5.010361 4.533546 4.753925 -3.447615 0.974215 0.850959 2.102930 0.920503 2.501895 -4.722858 -1.688885 -2.332108 -0.044814 -5.860913 1.487627 -2.006657 8.433539 -4.190080 -1.172238 0.727082 0.615354 5.464188 -2.999181 1.573891 -5.056063 0.286406 -0.871536 5.308738 0.378108 0.667395 -0.698905 1.242193 -0.833685 1.714465 0.190971 -3.516538 -1.452178 -8.366886 -4.464273 -1.644983 1.623627 0.740290 -5.603338 1.139353 -0.665208 2.926920 -7.055554 -1.800408 1.188891 1.496571 2.545575 2.186202 -2.846490 -2.057840 0.714125 3.458760 1.915636 -2.458610 2.379548 -3.747742 -0.601161 1.001972 3.282575 0.918806 -4.709496 -2.235806 0.008446 0.044581 0.483572 1.711614 2.931068 -1.509659 3.270322 -2.262245 3.926364 -6.684520 -2.393699 -3.781031 -3.557884 -1.947823 6.988500 3.855734 5.231207 1.583260 -1.595164 -0.861716 -7.085990 -6.785544 0.122633 0.478838 0.896505 1.838144 -0.723547 1.729145 -3.206621 0.426791 2.963644 -3.579169 -3.564527 -1.513881 2.913627 0.149358 -2.135701 -3.783515 0.952471 1.343061 -1.627054 4.350426 -0.646203 -6.892218 -6.696783 -2.803926 4.167027 -2.416836 1.444104 -1.681733 -0.471495 -3.715104 -0.090538 -4.750827 0.011655 0.414784 -4.084818 -5.996483 1.552793 -0.784436 -0.634527 1.370001 -4.753318 2.074728 3.933490 4.180023 0.288155 1.930433 0.111487 -5.409400 -4.659810 -0.574386 -2.658456 5.140860 3.587069 -0.248425 -3.052875 -2.508813 -4.031287 3.354893 -4.094389 2.374512 0.129396 -1.927843 1.329451 -5.137717 0.125594 -4.108377 1.313639 0.474660 -10.403827 5.501980 3.709049 -4.408046 -1.141790 -4.285666 3.413635 -0.142582 5.346514 -2.975210 -1.466583 0.755296 0.893156 -0.604531 -2.729326 2.114540 -0.505450 -1.953180 -5.218499 -2.715162 4.298384 2.494135 -0.456540 0.431347 3.037896 0.337193 1.855979 5.259764 2.700336 -0.573021 -3.733002 -11.809743 1.358565 3.293615 -1.118230 1.261159 -3.709207 -2.227839 0.536516 -1.752761 4.608069 1.047321 0.853444 4.593417 -4.745021 -4.406238 -3.222207 -0.411118 0.463284 -1.315669 0.921098 -2.964005 0.022580 -0.559028 1.275582 -1.713993 -3.117376 -2.312674 1.581446 5.104986 0.399677 0.557492 5.266171 2.449211 -1.670487 -0.854018 -0.295732 -1.991125 1.319097 -5.423596 -1.450392 0.365240 0.828881 -3.587374 1.210836 -0.177685 1.298491 0.641015 -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.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 4.142690 -0.660374 -0.670759 4.814911 1.325099 -0.971964 -0.002961 2.296992 0.648648 -4.967586 -3.081904 3.224170 0.150185 0.804010 1.938109 0.901863 1.649899 1.535232 -6.611079 1.057756 -0.896289 0.165657 -1.997666 -2.444826 0.549233 0.907325 1.490323 1.896450 0.857834 2.825566 -3.147589 1.705457 2.258130 0.494550 2.424512 0.088603 1.193421 -1.220661 -3.097042 -3.582473 6.643413 1.274387 0.989679 4.417619 0.348740 3.562941 0.181911 5.538048 2.387080 -1.120647 2.618293 -3.333362 -1.897023 0.556856 -5.536192 3.113798 2.733143 0.770076 -2.392596 2.495134 0.708075 2.051832 2.259452 -2.434134 5.665841 2.118801 3.433848 3.298787 4.622689 -3.022093 0.982136 0.226034 4.161492 1.050720 1.018992 -4.626974 0.015038 -5.083391 1.093551 -4.969655 2.166416 -2.361458 5.380284 -3.594360 1.271046 2.052354 -0.184461 3.787330 -3.929933 1.668327 -3.850412 0.136693 -0.560830 4.832670 -0.458862 0.250050 0.668634 1.112257 -0.345360 2.152865 0.260710 -1.764872 0.000508 -7.305480 -3.718949 1.277123 -0.482774 -1.076700 -3.063288 0.941107 0.537173 2.282376 -4.688434 -3.213656 0.468414 0.257707 -0.134296 1.224431 -0.825650 -1.829910 -0.568077 3.207523 0.993925 -3.280808 2.589968 -2.412794 -1.806609 1.843732 4.231683 1.578605 -2.467101 -1.776920 0.096559 0.778694 -0.787024 0.024893 0.703805 -1.854171 2.753513 -1.884086 2.808426 -4.296087 -2.494631 -2.697177 -1.907056 -0.686024 6.622356 0.439779 3.912105 3.438948 -1.235783 -0.868104 -4.374612 -6.149446 2.017337 1.673197 0.541836 1.362730 -0.157120 0.691705 -2.160915 -2.398233 3.004699 -4.117706 -4.538107 -2.391118 1.481847 -0.507190 -1.684320 -3.995343 3.469115 3.629889 -1.476638 2.192082 -0.709526 -5.059718 -3.470521 -1.990807 3.265016 -1.103331 0.918834 0.333931 0.251545 -3.018823 0.386524 -4.324199 1.315567 0.256292 -3.975065 -4.645591 0.865324 -0.649016 0.747876 0.946901 -3.775375 2.870582 0.976809 4.550241 -1.769060 2.403661 2.112186 -5.483822 -5.769844 -1.933283 -0.019318 4.197283 1.319703 1.053683 -2.123369 -2.006560 -1.729944 3.346036 -5.591481 1.773152 -0.048708 -1.170195 1.221788 -4.024828 -1.397832 -3.616473 1.593512 1.194938 -5.838003 4.783577 2.637067 -4.424291 -1.671873 -5.476664 3.383805 0.361391 7.285759 -3.041340 -0.999128 1.438071 1.990767 -1.209811 -3.856068 2.135760 0.958329 -1.845056 -4.187030 -3.152197 2.267969 2.156580 0.317854 0.725963 2.868853 1.176677 -0.524443 6.069732 1.250946 -0.025689 -3.201688 -8.434198 1.034675 5.383833 0.316004 1.423402 -4.728431 -2.254138 0.000325 -0.129527 3.360073 2.554299 2.709895 3.471082 -4.025049 -3.319725 -1.622713 0.879681 0.171504 -1.862049 1.204263 -3.082676 -0.327635 -0.786124 1.282420 -2.102919 -0.548376 -4.077623 -0.326641 2.669417 -0.058205 -0.040979 4.773070 2.563056 -2.029854 0.427525 -1.126632 -1.064139 0.731183 -2.997046 -1.147200 -0.298148 0.171977 -3.366648 2.021362 0.680182 0.729101 0.073908 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -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) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/permutations-of-a-given-string.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/permutations-of-a-given-string.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/permutations-of-a-given-string.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = 1.011514 -0.728839 -0.354935 1.697471 0.198966 0.165767 0.208552 0.205160 0.159555 -2.527112 -1.293071 1.211502 0.110195 0.036713 0.277162 0.596133 0.794790 0.305639 -2.899393 0.112754 0.432964 -0.170619 -0.218778 -0.054719 0.121801 -0.864504 0.941740 0.685369 0.109221 1.403777 -0.656136 1.003737 1.261062 0.135287 0.815094 0.967232 -0.654890 -0.302749 -0.473244 -0.428231 2.224024 0.589778 0.018107 0.771594 0.185660 1.657776 0.350739 1.569514 1.227892 -0.556083 0.969836 -0.175929 -0.747081 -0.022208 -1.865628 0.176177 0.791938 0.296997 -0.697595 0.681955 -0.611446 0.511282 0.493274 -0.128064 2.187073 0.383464 1.670263 1.235822 1.342483 -1.007555 0.326658 0.234199 0.649866 0.335919 0.884342 -1.050875 -0.851482 -1.127272 -0.162400 -1.916049 0.100788 -0.381152 2.050040 -1.036353 -0.363485 0.063858 0.080450 1.663424 -0.757819 0.103688 -1.653253 0.133363 0.059333 1.669460 0.228066 0.354058 -0.146892 0.459931 -0.162380 0.475614 0.341035 -1.419450 -0.283137 -2.836112 -0.994842 -0.954005 0.413859 0.172295 -1.729324 0.486066 -0.021510 1.084523 -2.123092 -0.292252 0.302131 0.333160 0.927950 -0.062889 -0.622720 -0.403696 0.096042 1.061256 0.701891 -0.882685 0.467662 -1.067970 0.261394 0.335813 0.802326 0.253584 -1.290700 -0.606473 0.423225 0.211114 0.046330 0.721257 0.807964 -0.298105 0.807219 -0.927512 1.300420 -1.836128 -0.353041 -1.016195 -0.794704 -0.687442 2.250348 1.380763 1.280504 0.265884 -0.431795 0.005984 -2.027998 -2.484337 0.110162 -0.101018 0.189962 0.388976 -0.222091 0.498411 -1.081711 0.186474 0.634398 -0.858028 -0.717967 -0.407034 0.132351 0.205640 -0.565320 -0.687492 0.002229 0.491868 -0.132743 1.405136 -0.433907 -2.546824 -2.070961 -0.898233 1.281242 -0.847320 0.129127 -0.555887 -0.233769 -1.113408 0.171226 -1.133046 -0.031020 -0.123057 -1.106636 -1.801176 0.340374 -0.338690 0.123762 0.354316 -1.347976 0.346244 0.896968 0.948510 0.298852 0.491391 -0.062266 -1.367837 -1.194322 0.076856 -0.761066 1.628494 0.730211 -0.284429 -1.065177 -0.657396 -1.301602 1.100219 -1.081098 0.810561 0.076093 -1.053362 0.609319 -1.032612 0.100788 -0.835094 0.526921 0.130111 -2.910277 1.903967 1.397275 -1.346378 -0.313753 -0.935630 0.871871 0.081113 1.265585 -0.987646 -0.501303 0.154376 0.080708 -0.013758 -0.468373 0.642849 -0.174438 -0.334709 -1.668006 -0.877665 1.398154 0.711262 -0.150486 0.077511 0.699214 0.021071 0.433848 1.588882 0.632958 0.196249 -1.180982 -3.644033 0.383290 1.056258 -0.136049 0.543288 -1.089569 -0.720483 0.086586 -0.693817 1.409289 0.372543 -0.307623 1.336075 -1.357468 -1.324816 -1.251916 -0.445321 0.155864 -0.321911 0.588814 -0.710678 0.024518 -0.273893 0.559979 -0.372208 -0.843209 -0.199082 0.654843 1.286644 0.397713 -0.079164 1.442332 0.489075 -0.590984 -0.420330 -0.033408 -0.707856 0.673892 -1.599113 -0.468221 0.035542 0.527496 -1.032432 0.409145 -0.052599 0.784795 0.067688 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 3.126264 -1.861931 -2.055544 6.318423 0.357961 1.573475 0.628087 -0.018452 0.805343 -9.026739 -4.138423 4.914682 1.098060 0.968935 0.552492 2.344972 2.169889 1.159690 -8.354143 -0.438913 1.741785 -0.471107 -0.316644 0.108293 0.087096 -2.773767 4.297440 1.582160 0.869675 5.168692 -1.604838 4.237355 4.724794 0.148657 1.863771 3.068143 -1.950202 -0.628752 -2.993944 -2.477299 7.185300 1.588853 0.414194 2.809832 -0.913219 5.689023 1.090595 5.744374 3.728198 -2.345825 3.425696 0.594733 -2.035926 -0.339821 -5.906741 0.896074 2.024523 0.899448 -1.937564 1.808920 -1.492283 1.824674 1.824141 0.160666 6.743648 2.013904 5.650970 4.831804 4.106156 -4.203803 1.371708 0.712475 0.432973 0.726555 4.145838 -3.320090 -3.169034 -0.959374 -0.684061 -5.160560 -0.296108 -1.178142 7.229868 -3.879464 -1.610000 -0.263908 1.095836 5.933285 -2.245772 1.408493 -5.834723 0.077287 0.123026 5.409860 0.985287 1.017433 -1.294697 1.235394 -1.021976 1.012869 1.761551 -4.854813 -0.197400 -7.384521 -3.453734 -3.675815 2.122955 1.937243 -5.903561 1.582927 -1.234702 3.693644 -7.656157 -0.980961 0.944270 1.873535 5.324748 0.988667 -1.827423 -0.839621 1.113887 2.669162 2.242390 -2.649837 2.153861 -2.796496 0.449682 0.965936 2.188124 1.236907 -5.447834 -2.359759 1.247904 0.228610 0.754322 3.062733 3.767545 -0.969111 2.770476 -2.817789 4.306140 -5.941584 -2.047853 -2.673223 -3.425558 -2.994360 7.140408 4.236935 4.989331 0.018227 -2.170008 -0.289174 -6.776273 -7.899673 -0.356516 0.264556 0.015794 2.502526 -0.947245 2.499913 -4.513461 2.034094 2.764891 -2.492920 -2.888733 -0.239704 0.699390 0.396852 -1.808943 -1.815811 -0.314063 -0.416087 -0.286502 6.116730 -0.660618 -8.586487 -8.192971 -2.524845 4.678247 -3.243941 0.435098 -2.436126 -1.336456 -3.633734 -0.534123 -3.993061 0.037669 0.350277 -3.836977 -6.428227 2.164283 -1.039199 -0.461721 2.130442 -4.883180 1.233385 3.378473 2.337969 1.021998 1.456320 -0.420302 -4.585135 -3.565600 0.903361 -3.509458 5.292411 2.665217 -1.146300 -3.180135 -2.980267 -4.134224 3.025545 -3.890531 3.270299 0.201924 -2.339955 1.261371 -4.389837 0.403976 -3.210137 1.408388 0.813730 -8.811422 5.872862 3.805036 -3.717481 -0.317745 -1.991821 3.058193 -0.111996 3.259081 -3.622986 -2.692089 0.426690 0.366601 0.157649 -1.164165 1.462623 -1.245172 -1.937304 -5.366437 -2.363529 4.810242 2.044074 -0.739624 0.045140 3.368414 -1.250204 2.067722 5.099112 3.207926 0.498243 -3.854109 -11.555529 1.605694 1.401165 -0.988566 0.681952 -3.748060 -1.678160 1.288187 -2.492740 4.332774 -0.349005 -1.228575 4.792876 -5.508190 -4.534284 -4.181478 -1.842304 0.707619 -0.209437 1.068233 -1.999187 0.727083 -0.521339 1.188662 -1.920325 -3.252108 0.977520 2.670976 5.246745 0.158455 0.568132 5.067955 2.243767 -1.668428 -1.061621 -0.083461 -2.981232 1.412488 -6.662402 -1.042308 1.516528 1.948217 -3.823400 0.549897 -0.591219 1.286274 -0.213888 -PE-benchmarks/reservoir-sampling.cpp__main = 1.078324 -0.719190 -0.193832 1.884995 0.346778 0.279270 0.472019 0.316316 0.312460 -2.938789 -1.336691 1.162934 0.206694 0.150198 0.247079 0.461224 0.830806 0.582311 -2.595127 -0.103310 0.532392 0.006711 -0.151631 -0.124380 -0.038824 -0.926460 0.815750 0.864789 0.306044 1.798693 -0.606949 0.846336 1.571953 0.073568 0.577836 1.380082 0.239770 -0.122605 -0.770242 -0.598039 2.620885 0.534120 -0.085341 1.059166 0.065030 2.020005 0.286060 2.106830 0.938295 -0.811206 1.145407 -0.630387 -0.784377 -0.315181 -2.015509 0.498905 1.280311 0.812377 -0.962037 0.984885 -0.477284 0.522149 0.622042 -0.108431 1.915532 0.908695 1.375288 1.453227 1.776264 -1.643200 0.108960 0.492458 0.522757 0.385062 0.981027 -1.159976 -0.808969 -1.510515 -0.054356 -1.757007 -0.172411 -0.429641 2.354947 -1.401923 -0.216201 0.686078 0.070163 1.650056 -0.839029 0.225073 -2.010432 0.056413 0.209285 2.103493 0.297507 0.221518 -0.174158 0.514026 -0.003463 0.742762 0.548501 -1.570946 -0.768967 -2.963780 -1.296627 -1.146093 0.398179 0.329506 -1.830157 0.084811 0.428800 1.075235 -2.511009 -0.290515 0.590459 0.770767 1.223423 0.191184 -0.748362 -0.191561 0.268289 0.558560 0.816312 -1.074852 0.501447 -0.912733 0.176378 0.319755 0.673954 0.179217 -1.637621 -0.735410 0.324618 0.137133 0.069701 0.527092 0.752046 -0.680726 0.973572 -1.139905 1.554320 -2.047275 -0.473077 -0.794609 -1.265437 -0.869183 2.765840 1.010028 1.622852 0.214789 -0.997275 -0.265023 -1.941329 -2.933712 0.216851 0.172698 0.466274 0.627226 -0.385384 0.574203 -1.323765 0.221155 0.623967 -0.869976 -0.766167 -0.024542 0.473282 -0.101987 -0.608303 -0.994202 0.281030 0.628350 -0.055984 1.585929 -0.590739 -2.397858 -2.227877 -1.089552 1.588327 -0.929678 0.125220 -0.475323 -0.455343 -1.485981 0.192514 -1.305664 0.247072 -0.091209 -1.507944 -2.230403 0.807189 -0.530071 -0.075666 0.897732 -1.623750 0.392111 0.590125 0.858844 0.278446 0.406584 0.080436 -1.876585 -1.568114 -0.106323 -0.802099 1.923451 0.794547 -0.057796 -0.829697 -0.930840 -1.320453 1.239747 -1.480988 0.857764 0.094022 -0.888469 0.840903 -1.279761 -0.105391 -1.429757 0.716927 0.627291 -2.324370 2.230871 1.437735 -1.360825 -0.501980 -0.814033 0.702756 0.314166 1.633607 -1.289861 -0.960662 0.573948 -0.001893 -0.031564 -0.655172 0.611908 -0.181702 -0.104074 -1.956894 -0.969160 1.326043 1.053043 -0.267348 0.321281 1.184628 0.011911 0.240319 2.059509 0.864230 0.167254 -1.269159 -3.618266 0.854472 0.734328 -0.134608 0.376666 -1.471506 -0.666962 0.531258 -0.305435 1.549179 0.656038 -0.144448 1.760531 -1.727801 -1.652256 -1.020247 -0.546716 0.494091 -0.513489 0.541871 -0.842306 0.314529 -0.284203 0.341644 -0.349501 -0.853084 -0.316955 0.613756 1.568381 0.170788 -0.004096 1.901402 0.417976 -0.787108 -0.148479 -0.089920 -0.460731 0.628360 -1.635924 -0.365331 0.126924 0.727800 -1.186234 0.634061 -0.214580 0.264954 0.312472 -PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = 3.799522 -0.807447 -1.723775 3.519836 0.876162 -1.305643 0.669836 1.374130 0.460956 -5.159626 -2.256439 5.128773 0.315510 -1.445811 -0.194244 1.659054 2.273422 1.597354 -5.770113 1.491309 0.204613 -0.317045 -3.003418 -1.087705 -0.074298 -1.700241 1.703095 1.827741 0.288458 3.409242 -1.969676 1.390943 2.677560 -0.120505 2.904737 3.211914 -0.427480 -1.016851 -0.367339 -1.360435 6.035119 2.111389 0.381653 2.588989 1.829846 4.304633 0.178191 4.976903 2.281998 -1.065930 1.804426 1.209460 -2.277530 -0.072482 -5.121564 0.972990 1.689380 0.205557 -2.989312 2.273288 -0.892153 1.165153 1.796355 0.556993 5.147168 1.500553 2.270262 3.099519 4.882687 -2.112577 0.591000 0.893744 3.224305 1.059844 3.142555 -2.036312 -2.341863 -1.931716 -0.049424 -4.659218 1.084784 -1.044745 6.714534 -3.382041 0.392740 0.981893 1.564816 3.787449 -2.584538 -0.822462 -4.160234 0.243778 -0.773987 5.667058 0.104796 1.828241 -0.749422 1.356756 -0.791622 1.485578 -0.218964 -4.427159 -0.963133 -7.286000 -2.935602 -2.755797 -0.999520 -0.630467 -4.418966 0.198164 1.061879 4.527145 -5.746346 -0.628353 0.840339 -0.804347 2.257927 1.447430 -1.957927 -0.219298 -0.795041 1.915472 0.656493 -1.406103 -0.132402 -1.575826 0.140199 0.848092 1.815597 0.741331 -5.143739 -0.325447 1.596676 0.287156 -0.501098 1.197833 0.926530 -2.835565 1.720562 -2.606929 2.995068 -4.499017 -1.755695 -2.810263 -2.899545 -1.591152 4.249471 3.019910 4.130242 0.706396 -0.127036 -0.593768 -5.457463 -6.640374 1.270071 -1.766969 0.090367 0.182931 -0.216693 -0.104253 -2.408086 -0.743543 1.982928 -2.909686 -1.832693 -1.528618 3.702852 -0.138848 -1.174607 -1.961412 -0.345957 1.970606 1.412282 2.286603 -2.208501 -7.001350 -4.780808 -2.095622 3.247178 -1.741341 0.488105 -0.742622 -1.146912 -1.824316 0.199736 -2.886808 0.732741 -1.932488 -1.201304 -4.306617 1.055086 -1.049636 -0.291056 -0.082397 -3.369177 1.737427 2.059907 1.517274 -0.376599 1.038634 0.088900 -4.222888 -3.159529 0.679409 -0.416816 4.316707 3.389661 0.465527 -2.330189 -1.310237 -3.941953 2.597782 -5.403311 2.067163 1.649974 -2.965584 2.895681 -3.081543 -0.658684 -2.320318 2.277174 0.065436 -6.207334 5.445280 3.912192 -4.374623 -0.798241 -2.448137 2.074428 1.042163 4.209493 -2.646169 -1.447878 1.535176 -0.027716 -0.477745 -1.023093 1.601528 -0.212665 1.388545 -4.561709 -1.970573 3.474444 2.485038 -0.501908 -0.424312 0.102554 -0.941439 0.675390 4.729044 1.567970 1.673620 -3.856596 -8.747720 1.082918 -0.057821 0.065734 1.540317 -2.026180 -1.796859 -0.059238 -2.187535 3.942899 -1.108752 -0.917149 3.262934 -4.884001 -4.236788 -2.432331 -0.490266 0.994472 -1.195350 2.676535 -2.407958 -0.274867 -1.682133 2.466834 -1.296983 -1.470916 -0.714453 1.976770 2.590352 1.712285 -1.796305 3.991114 0.600589 -1.389739 -0.485558 -0.524598 -0.450310 1.159937 -4.537966 -1.256344 -0.879247 1.888179 -2.868560 2.923709 0.336338 2.762029 0.787693 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = 1.952937 -2.565870 -1.044443 2.112054 0.579054 -0.494262 0.377599 0.449116 0.519291 -3.256625 -0.849296 3.321973 -0.007141 -0.595917 -0.083378 0.747562 1.264598 0.204376 -4.049364 0.777599 -0.102183 -0.385026 -2.062348 -0.391580 0.048105 -1.239850 2.589905 1.522357 -0.013253 1.661965 -1.018189 0.726500 1.340634 0.071938 1.699123 1.666242 -0.097375 -0.523765 -0.847632 -0.403824 3.805493 1.507323 -0.493887 1.242619 1.054398 2.337403 0.880849 3.919684 2.809786 -0.483130 1.602521 0.834759 -1.230166 -0.474749 -3.509084 0.226335 1.200284 0.280202 -1.606183 1.110526 -0.632858 0.537668 0.844808 0.886941 4.218231 0.191922 2.420413 1.426208 2.448024 -1.320547 0.080058 0.788235 2.047912 0.626492 2.606349 -1.892220 -1.849016 -2.939209 0.076169 -2.653656 0.195679 -0.619502 2.791478 -1.430299 0.105966 0.289260 0.777520 1.956466 -1.424526 -0.292552 -2.879133 0.188070 0.740644 4.595346 0.018562 0.875300 0.076684 0.789335 -0.233233 1.073205 1.094471 -2.572774 0.072403 -4.852075 -1.384840 -1.603167 -0.286154 -0.519582 -2.915431 0.484887 0.530146 1.890441 -3.320307 -0.351715 0.496948 -0.341127 3.169665 -0.244988 -0.625777 0.146670 0.027118 1.297902 0.754479 -1.007116 0.154366 -1.303650 1.400757 0.728579 0.972542 0.337875 -3.560100 -0.235688 1.080936 1.384835 -0.204551 0.492309 0.412664 -1.506818 0.890625 -1.748872 1.862891 -2.968166 -0.412154 -1.550742 -1.217828 -0.800224 3.744367 1.828840 2.979252 0.449980 -0.872760 0.095876 -3.382018 -5.787309 0.437377 -0.638414 -0.335495 0.164222 -0.172509 0.235752 -1.240597 -0.379706 1.525291 -1.431740 -1.010356 -0.700482 0.391261 0.227830 -0.563456 -0.637276 0.022922 1.527531 1.035109 1.660651 -0.989753 -6.221962 -3.066297 -1.238905 1.622344 -0.965379 -0.049384 -0.303705 -0.918349 -1.864943 0.424109 -1.487377 0.787928 -0.997015 -1.588973 -2.175506 0.502273 -0.705318 1.267900 0.045199 -1.869124 0.665107 0.202810 1.431026 0.068284 0.739184 0.367516 -2.885743 -2.271057 0.360646 -0.211718 3.444015 0.650869 0.051470 -0.883556 -0.746103 -2.655666 1.344921 -4.190518 1.037405 0.973958 -2.580990 1.393143 -2.009179 -0.302797 -0.901519 1.271217 0.177063 -2.413675 3.827814 2.588290 -2.376974 -0.727956 -0.864282 0.911275 0.514553 2.286437 -1.632297 -0.864969 0.612958 0.493188 -0.231722 -0.289253 0.875435 0.072240 0.366615 -3.087425 -2.003866 1.570286 1.348729 -0.191206 -0.524003 0.075627 -1.009578 -1.203665 3.147183 0.563492 1.370690 -2.049743 -6.117159 0.574929 -0.093094 -0.213056 1.178509 -2.164359 -1.048863 -0.015383 -1.157226 2.145529 0.276480 -0.966517 1.765367 -3.158062 -2.141861 -1.725922 -0.913033 0.160341 -0.438165 1.655666 -1.305494 -0.169088 -1.129699 1.076261 -1.174206 -0.296751 0.346777 1.018722 0.897819 0.977475 -1.194497 2.019451 0.384139 -0.720977 -0.636442 -0.022693 -0.826258 1.656464 -2.660525 -0.713279 -0.561673 1.049994 -1.253155 1.082507 0.222970 1.725579 0.020238 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 5.409431 -2.493143 -2.528540 5.631301 0.934216 -1.708507 0.980066 1.542192 1.306130 -6.987308 -2.744027 7.109269 0.554963 -1.840010 -0.288974 2.357175 2.939006 1.180194 -8.772007 2.170496 -0.037091 -0.967607 -4.229392 -1.135981 -0.204398 -2.938138 3.916950 3.326830 -0.053036 4.683883 -2.423636 2.203940 3.743548 -0.282024 4.251806 4.515642 -0.769444 -1.167207 -1.465020 -1.137977 8.163382 3.508373 -0.280295 3.206296 2.362125 6.202545 1.403318 6.988049 3.978705 -1.428009 2.583808 2.547689 -3.313696 -0.787423 -7.257780 0.760773 2.565200 -0.291581 -4.078246 3.163412 -1.850205 1.463732 2.597709 2.211908 7.572520 1.355954 4.440260 4.269233 6.653895 -3.185411 0.847618 1.513162 4.803446 1.688891 4.954774 -2.917275 -4.844945 -2.397940 0.304763 -5.589107 0.756169 -1.378565 7.051525 -4.437282 -0.402443 0.661585 1.744535 5.541606 -4.174280 -0.785957 -5.734630 0.204348 -0.692717 8.496219 0.185243 2.767749 -0.587695 2.323571 -0.816324 2.195704 0.400540 -6.792270 -0.228884 -10.068540 -3.814526 -4.170017 -1.259409 -0.816678 -6.011122 0.606782 0.423195 5.703537 -7.478189 -0.658555 1.249263 -1.160452 5.005746 0.490012 -1.388833 -0.076172 -0.441765 2.970251 1.784994 -2.301724 0.343450 -1.863218 1.553378 1.830751 2.314404 1.317777 -6.416495 -0.144273 2.880862 1.057946 -0.451661 1.958769 1.417064 -4.150014 2.374642 -3.850590 4.704910 -6.346648 -2.381473 -4.002235 -3.254302 -2.127057 5.672375 4.072421 5.779561 0.626316 -0.404474 -0.037171 -7.707751 -10.574915 1.343113 -1.855909 -0.712659 0.052967 -0.431477 0.184437 -3.549655 -0.477058 3.094933 -3.959125 -2.642421 -1.790949 2.933382 0.662094 -1.725446 -1.635944 -0.590042 1.963004 2.881837 4.432075 -2.598794 -11.922199 -6.777280 -2.794511 4.547779 -2.383472 0.088350 -1.184674 -2.349351 -3.482728 0.561977 -3.931670 1.154877 -2.576064 -1.732344 -5.972641 1.244936 -1.421683 0.806850 -0.279012 -4.953398 1.926155 2.225313 1.903015 -0.124625 1.851326 0.186271 -5.586350 -4.170743 1.523288 -0.801848 7.368661 3.361814 0.279714 -2.253738 -1.689983 -5.528208 3.637965 -7.343400 2.970255 2.389532 -4.705998 4.004293 -3.842548 -1.429128 -2.858291 3.280579 0.025462 -6.450736 8.330806 6.428058 -6.084338 -1.217555 -2.348664 2.803579 1.396211 5.822960 -4.253476 -2.466432 1.740930 0.644954 -0.630791 -0.767883 2.187099 -0.376174 1.190662 -6.165112 -2.797540 4.724882 3.359040 -0.558164 -1.090508 -0.267000 -1.880414 0.235738 6.341159 1.958680 2.838169 -5.620510 -12.335041 1.562922 -0.640441 -0.773988 2.211327 -3.370617 -2.591626 0.015158 -3.076379 5.583589 -0.989721 -1.972946 4.627960 -6.971191 -6.008729 -4.569353 -1.528664 0.726949 -1.140730 4.041317 -3.330185 -0.043214 -2.480439 3.274914 -2.630766 -1.844787 0.393285 2.893032 2.930420 1.973125 -2.603171 5.582914 0.891335 -1.623296 -1.632240 -0.440305 -2.010165 2.160834 -6.193908 -1.873707 -1.334558 3.093713 -3.804242 3.402911 0.566830 4.365611 0.774541 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = 0.702764 -0.385705 -0.277699 0.770648 0.145558 -0.193112 0.192530 0.330562 -0.083619 -1.383261 -0.714814 0.934972 -0.028654 -0.272159 0.109563 0.288954 0.453844 0.302220 -1.955622 0.271890 0.232361 -0.064130 -0.424531 -0.242242 0.079622 -0.464756 0.384376 0.573369 -0.020370 0.810277 -0.461124 0.431892 0.593080 0.238031 0.623271 0.665782 -0.411458 -0.319293 0.020099 -0.239545 1.437542 0.586174 -0.127897 0.431345 0.381923 0.995272 0.090967 0.940914 0.639431 -0.242386 0.443326 0.107031 -0.576903 0.012574 -1.211123 0.028121 0.412330 0.200246 -0.464330 0.509367 -0.421100 0.256406 0.319688 -0.150407 1.635424 0.162292 0.812653 0.571765 0.952321 -0.477440 0.159053 0.145063 0.609664 0.030842 0.539871 -0.436582 -0.455901 -1.355246 -0.069613 -1.761769 0.039044 -0.163299 1.498469 -0.596276 0.079216 0.136820 0.305045 0.882679 -0.567783 -0.159483 -1.070810 0.109952 0.039245 1.479061 0.117059 0.294181 -0.068930 0.274694 -0.025204 0.351534 0.035791 -0.855558 -0.295332 -2.106176 -0.472941 -0.536689 -0.044491 -0.159271 -1.203399 0.211369 0.502218 1.137550 -1.456354 -0.244919 0.235145 -0.041172 0.240679 0.000000 -0.571640 -0.026214 -0.142226 0.669862 0.388070 -0.439698 0.096224 -0.600064 0.192534 0.146005 0.495856 0.166950 -1.326786 -0.298302 0.456206 0.140405 -0.042622 0.355706 0.257248 -0.176863 0.382963 -0.806840 0.792036 -1.195739 0.073339 -0.633637 -0.508178 -0.329127 1.179771 1.196976 0.758426 0.267250 -0.071059 0.037189 -1.344591 -1.927233 0.261730 -0.266201 0.178836 -0.072510 -0.064388 0.066844 -0.549785 -0.086350 0.483509 -0.587513 -0.373296 -0.388153 0.724327 0.152177 -0.334863 -0.434911 -0.025919 0.594097 0.037878 0.484749 -0.460853 -1.662067 -1.275215 -0.597129 0.740012 -0.428986 -0.045174 -0.317993 -0.121014 -0.530282 0.203774 -0.606197 0.133728 -0.223498 -0.589001 -0.954097 0.111938 -0.210908 0.020635 -0.002258 -0.677366 0.216617 0.626090 0.451765 0.065584 0.271188 0.112710 -0.753964 -0.756655 0.040145 -0.203941 0.944367 0.737304 -0.000298 -0.882798 -0.256979 -1.036529 0.814942 -1.133281 0.463451 0.088125 -0.892353 0.622424 -0.669579 -0.080521 -0.247972 0.440650 -0.022929 -1.782133 1.253305 0.976674 -0.965683 -0.283712 -0.726932 0.441992 0.243957 0.934272 -0.585164 -0.195932 0.144851 0.011493 -0.069967 -0.198277 0.423499 -0.070840 0.075111 -1.123691 -0.638918 0.854004 0.508354 -0.080700 0.052644 0.129753 -0.006056 0.087727 1.058157 0.261848 0.168061 -0.772803 -2.332519 0.209290 0.341199 0.065438 0.429156 -0.591222 -0.545812 -0.110886 -0.594321 0.915457 0.157491 -0.536390 0.718009 -0.949988 -0.838554 -0.758221 -0.076819 0.098790 -0.305021 0.620660 -0.397544 -0.072350 -0.203385 0.465413 -0.100495 -0.468163 -0.350480 0.365851 0.651579 0.503049 -0.457935 0.873050 0.160031 -0.363567 -0.263849 -0.091882 -0.245935 0.491449 -1.014478 -0.353365 -0.184542 0.373312 -0.585299 0.510759 0.137603 0.620716 0.160122 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.895960 -1.131453 -0.095853 0.993009 0.252606 -0.142830 0.226667 0.249719 0.328153 -1.460334 -0.605987 0.350284 0.010522 -0.185044 0.373111 0.309422 0.698625 -0.115960 -1.517126 0.295385 0.016987 -0.276626 -0.686365 0.239351 -0.040892 -0.772625 0.321431 0.757553 -0.050678 0.846375 -0.465756 0.328170 0.753240 -0.198047 0.716207 0.893496 0.280409 -0.070515 -0.161610 0.283719 1.774846 0.368047 -0.184759 0.458214 0.563615 1.180461 -0.027086 2.081499 0.868494 -0.375171 1.333921 -0.685801 -0.409793 -0.054298 -1.466419 0.230686 1.128465 0.259432 -0.991553 0.715722 -0.593907 0.338132 0.362416 0.405614 1.462369 0.500339 0.979904 0.662632 1.183918 -0.707270 -0.039302 0.506739 0.850379 0.403106 0.401210 -0.868006 -0.430095 -1.584272 0.271830 -0.461381 0.053180 -0.396463 0.874153 -0.751591 -0.204353 0.617522 -0.207859 0.868617 -0.769277 0.068452 -1.185302 0.051029 0.386860 1.426109 -0.137110 0.267350 0.163468 0.478299 -0.029538 0.647169 0.242258 -1.121374 -0.851068 -2.087231 -1.182815 -0.562989 -0.019644 -0.244909 -1.257302 0.054758 0.532695 0.032498 -1.157606 0.062885 0.295364 0.212741 1.027439 0.405981 -0.489872 -0.366653 0.148926 0.624475 0.537413 -0.349640 0.313899 -1.302069 0.691326 0.557545 0.435850 -0.097892 -0.693045 0.017743 0.347774 0.365473 -0.290116 0.099746 0.152131 -0.800691 0.639039 -0.601322 0.969574 -1.466249 -0.454524 -0.961836 -0.596561 -0.227362 2.110690 0.636126 1.190065 0.472679 -0.868535 0.007685 -1.354811 -2.116024 -0.075381 -0.188185 0.282174 0.027129 -0.178411 0.148262 -0.396575 -0.146600 0.143100 -0.705900 -0.369654 -0.361149 -0.232088 0.042336 -0.401354 -0.564146 0.237301 0.828995 -0.012425 0.800659 -0.402012 -1.905563 -1.021031 -0.651984 0.780811 -0.351078 0.239051 0.049560 -0.258983 -1.414936 0.384266 -0.724497 0.084699 -0.509902 -0.859776 -1.107664 0.315546 -0.344988 0.488349 0.103286 -0.943868 0.232200 -0.034801 0.863846 0.310733 0.447272 -0.012176 -1.438521 -1.325350 -0.161237 -0.171390 1.730855 0.242529 -0.065915 0.209386 -0.411188 -0.980981 0.752535 -1.441070 0.278959 0.523037 -1.070559 0.674674 -0.583571 -0.484105 -0.856107 0.566760 0.265500 -0.756688 1.659439 1.146239 -1.150817 -0.519753 -0.685773 0.496514 0.292488 1.304167 -0.512808 -0.154874 0.333292 0.326650 -0.094062 -0.331655 0.555563 0.043027 0.219613 -1.283978 -0.776838 0.776126 0.838687 -0.065814 -0.068566 0.186573 0.157035 -0.271441 1.365599 0.135909 0.272380 -0.693373 -2.427986 0.423205 0.671857 -0.286442 0.546063 -1.190615 -0.476711 -0.104005 -0.014873 1.035301 0.768831 0.313499 0.996145 -0.988758 -1.102370 -0.739217 -0.317058 -0.024357 -0.463443 0.550061 -0.661292 0.077965 -0.368365 0.506426 -0.235957 -0.269426 -0.616036 0.190757 0.389739 0.196040 -0.325650 1.042392 0.141187 -0.426805 -0.335543 0.116460 -0.188389 0.849991 -0.583271 -0.465256 -0.453332 0.441819 -0.614983 0.506061 -0.021106 0.672439 0.251115 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 2.807561 -2.243773 0.479992 2.477554 1.419299 -0.373625 0.812580 1.510506 0.299445 -4.756741 -2.718769 0.503435 -0.241546 -0.706715 1.279801 0.465318 2.326652 0.065878 -5.829362 0.754039 0.619042 -0.622589 -1.319973 0.167474 0.086297 -2.187343 -0.137412 2.566924 0.017837 2.719763 -1.620395 0.880761 2.326737 0.200630 2.421390 2.930500 0.157203 -0.846045 0.421167 0.028651 5.724855 1.125810 -0.405123 1.492677 1.952045 3.695830 -0.693261 5.266316 1.955603 -1.085368 3.664309 -2.975165 -1.528313 0.121438 -4.493642 0.796086 3.472272 1.161438 -2.977011 2.122411 -1.651547 0.964901 0.986577 -0.152900 4.292651 1.592428 2.312383 1.871713 3.703215 -2.328012 -0.358546 1.566937 2.306962 1.172149 -0.264122 -2.637236 -0.204479 -5.780944 0.913913 -3.356531 0.101712 -1.421260 3.712344 -2.047825 -0.042627 2.143466 -0.611396 2.597708 -2.068797 -0.171811 -3.849870 0.266551 0.926354 3.771662 -0.542730 0.525397 0.924835 1.079820 -0.100270 2.370274 0.029197 -3.020428 -3.497992 -6.954958 -3.138071 -1.520964 0.217599 -0.860807 -3.600665 0.131133 2.297500 0.537966 -3.571340 -0.433953 0.985625 0.900378 0.438869 1.725257 -2.388560 -1.670853 -0.012802 1.940875 1.524844 -1.127395 0.649050 -4.071982 1.229423 1.204241 1.572522 -0.397548 -2.349014 -0.475391 1.094811 0.332702 -0.869740 0.016448 0.316911 -1.653474 1.833165 -1.900602 2.996788 -4.301442 -0.663259 -3.077281 -1.739887 -0.819634 5.828236 2.664735 2.623226 2.200664 -1.768276 0.062936 -3.636676 -5.409583 0.002612 -0.705560 1.725351 -0.273031 -0.565581 0.573102 -1.162795 -0.871126 -0.206218 -2.115268 -1.292399 -1.562230 0.787273 0.006227 -1.109722 -1.961131 1.065842 3.066614 -1.196240 1.815238 -1.738832 -3.877432 -2.930353 -2.552615 2.489289 -1.271383 0.482219 -0.049388 -0.064945 -3.489058 1.252370 -2.307886 0.098675 -1.588318 -2.802043 -3.482776 1.083350 -1.199141 0.827761 0.732287 -2.672251 0.876498 0.841328 3.064638 0.719212 1.160655 -0.231843 -4.090685 -3.942170 -1.029568 -0.139066 4.388952 1.629587 -0.171768 -0.467120 -1.451013 -2.577566 2.824753 -3.272794 0.978746 1.013030 -3.165732 2.165796 -1.838931 -0.921441 -2.524271 1.696518 1.009798 -4.058487 4.579761 2.957862 -3.602987 -1.907358 -3.387258 1.242216 0.943109 4.116611 -1.154177 -0.296446 1.103735 0.704042 -0.391802 -1.428029 1.701916 0.440798 0.984188 -4.328646 -2.807873 2.548918 2.632211 -0.226832 0.632940 0.958895 1.652241 0.094673 4.561779 0.379193 0.292137 -2.003210 -7.566423 1.306396 3.529825 -0.061669 1.413218 -3.048955 -2.071815 -0.746958 0.115172 3.395710 2.948778 0.909996 3.130653 -2.179355 -3.214674 -2.160239 -0.154156 0.343586 -1.752524 1.157943 -2.008978 0.057586 -1.084233 1.328288 0.285746 -1.285721 -3.377938 0.467614 1.786376 1.124638 -0.937837 3.243515 0.562694 -1.564480 -0.740140 0.279369 0.073843 2.536411 -1.583889 -1.529752 -1.287450 0.959724 -1.762634 1.591044 0.463765 1.879378 0.922253 -PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = 4.204570 -2.245420 -6.529007 15.767894 -0.834239 3.777669 1.417303 -2.291081 -0.130957 -20.557043 -6.871384 12.138925 3.928275 5.129726 -1.578960 5.086332 2.722863 3.526967 -18.358506 -2.525602 5.026835 0.617947 0.723874 0.651813 -0.195518 -4.675030 12.289956 2.069400 2.352586 12.446384 -2.381553 12.005259 10.975251 -1.592062 1.751097 6.298089 -2.959775 0.281428 -9.363604 -4.979169 13.000989 1.292760 2.243102 5.684076 -6.484614 12.375187 4.941796 9.646148 7.860864 -6.181970 4.749975 7.433743 -3.439827 -3.194145 -10.381814 1.138429 3.343235 4.940287 -1.985123 2.984139 -0.125085 2.123011 4.813561 2.484623 13.234494 4.770795 11.588500 13.017390 8.756373 -9.333948 4.276904 -0.180256 -3.746789 -0.811634 12.593540 -8.534633 -9.345218 2.931468 -3.505898 -12.739064 -2.964716 -0.730387 13.465456 -8.734324 -4.362327 -4.223877 4.402275 14.290307 -3.378340 4.541360 -12.094997 -1.752630 -0.329554 13.234125 2.997437 2.357386 -3.952267 2.622418 -1.953708 0.664401 4.180795 -11.254889 5.478030 -11.554833 -6.697725 -8.607603 4.263786 8.687293 -13.385372 1.903267 -9.951314 8.539458 -20.305674 -2.398070 0.948497 5.864174 15.036970 0.733409 -3.785882 -0.118131 3.460560 3.128100 5.509495 -6.099268 5.852054 -2.452980 -1.736520 1.034366 3.193615 4.110959 -14.554725 -6.971762 1.253538 -0.579636 4.165258 8.759418 10.794229 -0.627631 5.517817 -7.791409 8.709007 -11.906508 -5.919106 -2.528532 -9.922750 -7.848317 8.839593 6.900984 9.719569 -5.042666 -6.273429 0.076958 -15.574602 -17.695094 -0.495712 1.750151 -2.319970 9.811739 -3.533614 6.225439 -12.167440 6.570899 10.372871 -3.341224 -7.403233 0.663243 0.329712 2.833808 -2.752179 -2.323840 -1.743771 -6.532331 3.284190 17.452980 -0.946976 -18.594868 -22.320655 -4.277376 10.760230 -6.756574 -0.728024 -7.513561 -5.349971 -8.481043 -2.680946 -9.311612 -2.049736 1.774028 -6.351450 -14.574319 6.172882 -1.879293 -3.367811 5.541503 -11.178772 1.893207 7.830171 3.460137 2.358468 0.198897 -1.142350 -7.350812 -5.321040 5.542390 -9.635112 8.043236 4.099500 -1.422406 -7.721304 -6.944483 -8.196184 5.081781 -5.208230 8.969901 1.354787 -1.693000 2.585512 -11.341214 2.658853 -5.188841 2.435130 2.051157 -18.930123 13.520988 5.430866 -5.718414 1.483338 0.917152 6.269367 -1.049209 2.609070 -8.957376 -8.982522 1.969106 1.769697 0.883040 -3.511493 1.117249 -3.732000 -6.084012 -9.535283 -3.866889 10.127492 3.253520 -2.240810 -1.006862 8.056566 -8.638481 2.635664 9.616079 9.576138 1.941631 -6.316408 -20.649485 3.793672 -4.626866 -2.527553 -1.802642 -8.227230 -1.354182 7.784224 -6.868023 9.134426 -4.053680 -6.284594 10.362154 -15.708371 -9.809156 -9.956976 -5.281636 2.953383 2.510441 -0.283562 -4.643140 3.484165 0.682255 1.456021 -5.928912 -8.743046 8.104541 7.372834 12.058272 -3.045410 3.279245 11.727736 4.844135 -1.343222 -2.692537 0.697356 -8.064279 -0.307963 -17.104852 -0.749049 6.043268 5.735822 -9.053307 0.144032 -4.683463 0.544630 0.195528 -PE-benchmarks/subset-sum-problem.cpp__main = 1.554571 -0.649305 -1.016571 4.131281 -0.031519 1.029951 0.768964 0.126421 0.227151 -6.118024 -2.535799 3.179476 0.776846 1.188302 -0.075056 1.160448 1.096792 1.284469 -6.106624 -0.688238 1.623540 0.357831 0.633858 -0.181508 0.090428 -1.505864 2.561886 1.151211 0.754506 3.885621 -0.949612 2.905381 3.309511 0.026470 0.614570 2.309096 -0.651535 -0.238757 -2.228103 -1.623943 4.256086 0.659694 0.254274 1.966832 -1.331282 3.969114 1.111493 2.626798 2.482044 -1.842823 1.510737 0.725295 -1.556283 -0.941694 -3.224868 0.438869 1.452630 1.639682 -0.854569 1.369625 -0.094894 0.763287 1.325962 -0.145276 3.719590 1.569554 2.977250 3.502595 2.903616 -3.124050 0.940742 0.153512 -0.504793 0.157743 2.664317 -2.526757 -2.104889 -1.030073 -0.740318 -4.451196 -1.017275 -0.584383 4.003411 -2.714898 -0.791485 -0.307856 0.671291 3.967342 -1.025404 1.010638 -3.725290 -0.309150 0.356806 3.697746 0.741853 0.461473 -0.743152 0.763032 -0.268539 0.700434 1.268327 -3.217080 0.242530 -4.312858 -1.847020 -2.481031 1.219828 2.060874 -3.808491 0.559792 -1.460347 2.601106 -5.825941 -0.926011 0.710427 1.860828 2.629852 0.050256 -1.210949 -0.229747 0.817051 1.168515 1.702712 -2.320691 1.495958 -0.896310 -0.623654 0.384608 1.189465 0.960351 -3.817228 -2.315841 0.652041 0.058404 0.980384 2.218368 2.654919 -0.085041 1.696481 -2.567185 2.939120 -3.623681 -1.262238 -0.931827 -2.225141 -2.281384 3.330797 2.159394 2.540698 -0.624012 -1.654260 -0.058899 -4.062311 -5.219400 0.285099 0.551638 0.231857 2.368063 -1.014188 1.678043 -3.334750 1.415131 1.988983 -1.230882 -1.987044 0.045649 0.206485 0.570430 -0.980489 -1.154827 0.060062 -0.712913 0.260055 4.335677 -0.689213 -4.511428 -5.791950 -1.849056 3.375888 -2.072204 -0.241943 -1.896068 -1.178285 -2.422878 -0.347782 -2.773014 -0.301878 0.512513 -2.456742 -4.542303 1.848741 -0.789218 -0.732149 1.983426 -3.313169 0.532233 1.880491 1.379994 0.640219 0.331342 -0.151436 -2.491036 -1.994821 0.745423 -2.565506 2.625497 1.389441 -0.292482 -2.639628 -2.025801 -2.244729 2.229415 -1.819304 2.532385 -0.049023 -0.838143 1.202812 -2.973594 0.564777 -1.989988 1.084662 1.034812 -5.714811 3.974682 1.975579 -2.067485 -0.139130 -0.678494 1.586339 0.178751 1.683353 -2.666405 -2.611910 0.820369 0.267319 0.184391 -1.400573 0.718713 -0.754413 -1.287192 -3.162259 -1.382233 2.984454 1.323514 -0.600992 0.470762 2.766053 -1.218745 0.827160 3.207313 2.443755 0.299015 -2.113346 -6.344977 1.491791 0.533435 -0.227130 0.061706 -2.815712 -0.894036 2.013872 -1.434900 2.929227 -0.154823 -1.328913 3.307016 -3.960635 -3.040864 -2.774898 -1.346894 1.047325 0.235038 0.272004 -1.219634 0.929764 0.204316 0.394540 -1.058212 -2.429695 0.997033 1.934182 3.760321 -0.277197 0.739293 3.735088 1.187675 -1.007955 -0.596407 -0.075644 -1.970552 0.135048 -4.235124 -0.324884 1.432784 1.633159 -2.691725 0.467165 -0.956904 0.095651 0.059588 -PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.863025 -3.642959 -1.833886 6.149854 0.192557 1.907629 0.715983 -0.098411 0.306410 -10.276289 -3.991004 5.488582 0.761113 1.378451 0.072692 2.401588 2.136211 1.093979 -10.097992 -0.819074 1.796127 -0.707302 0.704871 0.089122 0.338752 -2.539176 5.344935 1.359188 0.795709 4.930985 -1.477365 4.889709 4.733122 0.715393 1.609814 2.668573 -3.022276 -0.847383 -2.908721 -3.071323 6.972206 1.299523 0.836973 2.484563 -2.024882 5.284494 1.296119 6.309149 6.925498 -2.107801 3.811050 -0.863792 -2.382760 -0.005819 -6.243356 0.169891 0.548113 0.583992 -0.736571 1.440497 -2.050357 1.781939 1.520996 -0.719123 7.433900 1.434620 6.312411 5.002155 3.346849 -4.014151 1.532995 0.418054 -0.404167 0.901237 3.934288 -4.788240 -3.128880 -2.842170 -0.899784 -5.780745 -0.458810 -1.166807 7.120909 -3.209595 -2.141768 -1.395203 1.166618 5.951736 -1.781639 1.821964 -6.322540 0.305495 1.161418 4.517030 1.311523 1.124534 -1.219943 0.314481 -1.081434 0.787007 2.219941 -4.240332 0.644206 -8.124737 -2.217125 -3.484052 2.415454 2.529623 -5.447891 2.302015 -2.354968 3.561569 -7.703266 -1.583869 0.572569 1.697664 5.708038 1.742432 -1.427995 -1.369774 1.356484 3.115405 2.598147 -3.055944 2.129781 -3.224253 0.575942 0.398563 2.429916 1.297806 -5.516803 -2.795492 1.320180 1.040789 1.464090 3.585702 4.343198 0.630029 2.410775 -2.612283 3.833112 -5.128065 -1.786527 -2.351357 -3.081863 -3.136810 10.307365 5.092648 4.566603 0.042364 -1.777469 -0.124393 -6.310680 -8.035696 -0.382701 0.115066 0.003417 2.957200 -0.868699 2.629829 -4.605954 2.569958 2.353355 -2.074724 -2.965569 -0.303106 -2.495515 0.952816 -1.525084 -1.882921 -0.296687 0.117616 -0.806048 6.378973 -0.470095 -10.444732 -8.225540 -2.690771 4.444545 -3.293349 -0.051209 -2.772053 -1.073355 -2.814188 -1.011953 -3.934521 -0.606997 1.102531 -4.827807 -6.408305 2.041581 -0.904511 0.213960 2.288298 -4.424579 0.931042 2.844157 4.092340 1.093488 1.548533 -0.777127 -4.540760 -3.693544 0.900851 -3.829035 4.686230 1.775857 -1.304401 -4.086061 -2.982949 -3.817430 2.810543 -4.150243 3.457998 -0.435518 -3.076432 0.835959 -4.067197 1.559415 -2.472945 1.199850 0.653222 -11.903727 6.023534 3.503023 -3.314968 -0.281217 -2.190556 2.748116 -0.315935 2.616344 -3.372740 -2.527311 0.196846 0.404081 0.263097 -0.730759 1.201983 -1.352588 -2.874771 -5.607800 -3.217763 4.742976 1.405650 -0.678886 -0.306132 3.600814 -0.678149 1.940877 5.493639 3.254895 0.127565 -3.933829 -14.038325 1.317306 5.573602 -0.922240 1.245648 -4.846093 -1.735108 1.716460 -3.991540 4.075113 -0.046556 -1.556798 4.309873 -4.803177 -3.752053 -4.403086 -1.939710 0.700299 0.090104 0.882988 -1.823362 0.458819 -0.382543 0.917370 -1.764676 -3.157167 1.642654 2.923116 5.518198 0.591019 1.279444 4.565273 2.325798 -1.361617 -1.436411 -0.127315 -3.369191 1.856297 -7.317333 -0.507170 1.972804 1.734617 -3.476252 -0.003950 -0.109936 1.218180 -0.402371 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 6.227580 -1.360022 -0.117136 6.012887 2.115402 -1.570204 -0.049560 4.085268 0.750100 -6.678935 -4.388018 4.516107 -0.510326 0.538935 3.069085 0.744082 2.683400 2.141668 -9.976151 1.740310 -1.728682 0.132522 -2.836022 -4.143821 1.121781 2.016054 2.685285 2.876249 1.269261 3.610806 -4.693489 1.699030 2.507079 1.444968 3.981033 -0.222487 1.031543 -2.222462 -3.936805 -5.848026 9.497437 2.097464 1.158830 6.808790 1.323471 4.325107 0.615669 6.454966 4.058839 -0.892625 3.169623 -5.152012 -2.735365 0.886788 -8.098938 3.768881 3.803592 0.685386 -3.333317 3.395960 1.297788 3.004191 2.951985 -4.027932 7.864988 2.165700 4.992149 4.265269 6.163749 -4.131998 1.540605 0.244673 6.724163 2.038977 0.381997 -6.563314 0.558259 -8.378594 1.412094 -7.768937 3.298935 -3.659662 6.901411 -4.177460 2.509406 2.622722 -0.956988 4.709207 -5.574316 1.756585 -5.123947 0.265279 -0.623451 5.782157 -1.033657 0.481421 1.706687 1.413054 -0.582513 3.250142 0.559962 -2.272872 0.808420 -10.783126 -4.294369 2.464427 -1.057505 -2.267427 -3.109128 1.882516 0.799564 3.024368 -5.537933 -5.217378 0.169849 -0.315405 -1.806314 0.627977 -0.871076 -2.846702 -1.529241 5.178820 1.144333 -4.925871 3.465485 -3.251493 -2.709876 2.797885 6.442093 2.763619 -2.401613 -2.772319 0.667465 1.801662 -1.845020 -0.084599 0.461855 -2.053483 3.441097 -2.500293 3.865903 -5.372126 -3.097272 -3.777292 -1.436992 -0.734323 9.329889 0.299665 4.730804 5.729272 -0.821004 -0.741823 -4.917123 -8.060117 3.714666 2.384004 0.607048 1.477056 0.237385 0.907336 -2.901790 -4.382582 3.749113 -5.652646 -6.349608 -4.114902 1.141699 -0.723295 -2.169714 -5.163525 5.544901 6.156020 -2.016104 2.376928 -1.366775 -6.713672 -3.877657 -2.566421 4.378928 -1.536729 0.573605 1.287660 0.895550 -3.485451 0.787307 -5.857068 2.076514 0.014691 -5.839588 -6.011763 0.762889 -0.849330 1.935433 1.192615 -4.682900 4.055090 0.822424 7.146561 -3.133036 3.889890 3.385055 -7.598291 -8.542520 -3.105227 0.968772 5.928327 1.164340 1.252806 -3.715498 -2.522138 -1.527201 5.034512 -7.725438 2.606109 -0.497824 -1.860847 1.666787 -4.758960 -1.897848 -4.587148 2.315886 1.896523 -8.682782 6.411969 3.612994 -6.396985 -2.532767 -8.522608 4.762646 0.397435 10.299179 -4.071430 -1.135860 2.056272 2.914306 -1.650658 -5.879285 3.078762 2.116039 -2.595171 -6.036327 -5.059673 3.208707 2.505149 0.781126 1.255602 3.880459 2.432412 -1.341579 9.421984 1.310435 0.371320 -4.782047 -11.596128 0.980779 9.955283 1.279786 2.396371 -6.656465 -3.894294 -0.818292 -0.298190 4.290271 4.268036 3.805220 4.441122 -4.684405 -4.140502 -2.376366 1.751724 0.376963 -2.832073 1.920231 -4.198429 -0.835374 -1.428849 2.040487 -2.673013 0.010573 -6.119496 -1.013685 3.342060 0.458298 -0.338189 6.226089 3.731261 -3.375269 0.884708 -1.657790 -1.541642 1.565142 -3.931658 -1.775815 -0.645190 0.138362 -4.733090 2.973753 1.804348 1.868222 -0.552809 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/optimized-naive-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/optimized-naive-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/optimized-naive-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = 0.971129 -0.191786 -0.469280 1.922707 -0.455763 0.742214 0.606900 0.251432 -0.222036 -2.787529 -0.913888 3.311309 0.069599 0.640352 -0.563564 0.483691 0.695389 0.491972 -3.406836 -0.447215 0.425765 -0.207607 0.328976 -0.190042 0.013157 -0.881874 2.047500 1.406343 0.475627 2.010294 -0.408902 0.885430 1.609665 0.144620 0.077004 1.313152 -0.400932 -0.241041 -1.768877 -1.550394 1.920658 0.252972 0.052179 1.085476 -0.625461 2.270331 0.936384 1.375576 3.392535 -0.943594 0.701902 1.426643 -1.424961 -0.869958 -1.619647 -0.402072 -0.449454 0.721702 -0.328146 0.803221 -0.802165 0.311114 0.546452 -0.054002 1.577985 0.519521 1.639019 1.505617 1.204085 -2.196785 0.075512 0.635504 0.055298 0.923261 1.096984 -1.301294 -1.434769 -1.421826 -0.230902 -2.800477 -1.162074 -0.189976 3.096034 -1.336302 -0.829124 -0.355806 0.164205 1.743498 -0.864795 0.761821 -2.041413 -0.176792 0.510598 1.824317 0.688252 -0.112429 0.106850 0.028761 -0.006930 0.817242 0.552342 -1.730143 0.050687 -2.135221 -0.633880 -1.563790 0.688912 0.815531 -1.470240 0.666322 0.863252 1.882252 -2.617578 -0.774864 0.892210 0.668603 1.118557 1.175112 -0.308410 0.067183 0.692689 0.858782 1.919055 -1.353498 0.728451 0.949159 -0.227381 -0.022874 0.575930 0.769307 -2.583049 -1.617272 1.036430 0.086885 0.699138 0.596341 0.926404 0.487775 0.938872 -1.072972 1.839018 -1.774343 -0.426807 -0.244269 0.116643 -1.382494 2.208840 2.419553 1.559725 -0.177743 -0.152109 0.059024 -1.557197 -1.960992 0.178634 0.440572 -0.132991 0.794585 -0.401035 1.250978 -1.461943 0.711287 0.233345 -0.517967 -0.995736 0.492111 -0.370874 0.477409 -0.351283 -1.027243 0.182786 -0.907515 0.333360 1.958564 -0.531943 -4.360747 -2.287941 -1.090283 1.854706 -1.166017 -0.648272 -0.545366 -1.260213 0.437315 -0.263664 -1.417310 -0.203937 0.414508 -1.643106 -2.345225 1.623109 -0.509029 -0.990531 1.190059 -1.641862 -0.054256 0.524333 0.597528 0.478799 0.279563 -0.029183 -1.553600 -0.592108 0.112327 -1.503987 1.381647 1.414882 -0.120973 -2.237755 -1.027750 -1.201125 1.005130 -1.639201 1.440429 -0.408074 -1.056338 0.783844 -1.293319 1.154537 -0.576828 0.955441 1.065895 -4.727844 2.383108 2.321266 -1.033032 -0.248595 0.102141 0.076564 0.576755 0.868540 -1.914553 -1.655524 0.318078 0.233171 0.225871 0.455120 0.471591 -0.097568 -1.202912 -1.569083 -0.751761 1.524072 0.647056 0.022503 -0.215503 1.507223 -0.229188 0.823158 1.610682 0.833142 0.305358 -1.120191 -4.692290 1.296965 1.511758 -0.483262 1.403748 -1.630811 -0.686175 1.112398 -1.491432 1.406331 -1.824902 -1.344783 1.631963 -1.587274 -1.445689 -1.919504 -1.170822 0.350676 0.237874 1.380340 -0.452135 0.195387 -0.332820 -0.376539 -1.195476 0.072459 0.963842 1.148389 1.631606 1.161480 0.484451 1.920260 0.262779 -1.018415 -0.572476 -0.234733 -1.421795 0.167786 -2.264001 0.344924 0.867301 1.187620 -1.157475 -0.314613 0.448324 -0.054859 -0.231569 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 45.316592 -2.958788 -54.523365 88.068869 -8.342809 9.265952 10.215748 -2.080560 3.764035 -106.600202 -45.980982 55.311075 30.760917 15.588853 -2.532260 54.104636 11.035570 20.435901 -69.222752 1.986796 25.925422 -7.693492 -16.409489 0.794113 -7.072391 -37.840336 42.400394 4.798453 8.905844 74.272074 -12.346533 60.885852 66.559033 -16.787992 16.348118 48.748271 -14.294184 3.018324 -41.142819 -18.700464 74.892905 27.042329 3.828468 19.700563 -33.824157 77.070798 14.128937 80.945278 -17.567422 -37.471389 41.522702 19.730515 -30.492935 -4.805726 -60.064108 14.113231 28.279007 22.888367 -19.063461 26.411498 -32.908879 20.184783 34.034607 23.179014 80.955297 35.737475 61.715414 76.051094 62.956545 -58.034205 25.087756 16.077548 -12.239806 -10.629572 76.682674 -42.775438 -54.994798 29.813649 -5.682721 -54.002619 -6.999482 0.221208 124.198399 -66.471997 -25.726921 -3.440163 34.491227 83.885801 -42.651470 28.073066 -63.629231 -5.368682 -20.328099 86.700776 14.546728 21.071196 -32.540094 22.830427 -12.217273 5.466122 7.402579 -67.611844 -7.718933 -61.302579 -47.855064 -51.178454 18.266025 44.840935 -88.245554 -1.013668 -23.307029 60.141686 -116.861497 7.163824 18.857886 32.329108 113.890256 44.576161 -34.400052 7.662137 18.974796 21.687838 35.508972 -29.419468 29.944452 -21.106445 9.438495 11.354441 18.146934 18.770505 -110.070710 -20.067195 14.411960 -25.456949 21.774406 52.621973 58.994978 -33.679128 37.961667 -42.944165 55.029926 -93.636088 -34.562514 -29.785643 -87.777884 -39.226373 69.334779 61.999501 71.974725 -23.971963 -33.026213 -7.901609 -104.656548 -97.481279 -13.238062 4.444654 -8.397532 39.173998 -13.637833 29.009960 -60.611641 45.522652 49.040995 -32.309660 -37.699747 9.462513 61.395291 13.378108 -26.308418 -27.332703 -21.087222 -32.052375 22.310879 95.119754 -3.970814 -112.281411 -126.693457 -30.749005 66.915550 -36.374353 7.924544 -43.825210 -31.468422 -54.248249 -12.643920 -56.550047 10.238909 11.895023 -24.966713 -86.499087 35.371012 -6.020289 -33.673640 21.081371 -59.018794 12.199275 59.884899 3.203976 10.694516 13.145376 -3.784044 -51.537978 -36.984046 34.909679 -50.934420 72.493590 52.091236 -8.620845 -26.879336 -36.412794 -64.748164 36.408891 -42.134979 43.983544 3.472444 -5.675452 28.704428 -73.580821 4.919553 -54.371666 23.180728 4.287284 -107.437391 73.765869 57.870090 -38.785435 9.233259 -3.188971 41.279783 3.547130 34.110948 -42.377631 -45.019298 13.747577 4.429795 0.078902 -7.904457 12.377146 -37.666242 -24.917892 -49.134733 -9.564507 61.197727 28.480426 -12.960857 -9.193376 31.452327 -43.297461 25.568770 49.497454 55.196467 -2.341452 -57.820442 -138.204561 26.088697 -49.142773 -29.714593 -5.614785 -28.951027 -8.530691 36.058757 -44.016040 60.455546 -11.278527 -33.039919 64.775537 -96.382242 -71.746064 -56.355975 -14.367406 11.315567 -0.428696 3.912717 -32.628708 20.784798 1.136556 15.122855 -30.854855 -54.294066 29.248444 37.851967 82.328799 -9.390482 2.945882 74.559581 27.367469 -1.928001 -23.476354 9.535566 -39.569200 4.002197 -91.103069 -13.720976 25.228986 38.398390 -54.592808 14.000032 -15.200087 1.896808 17.800138 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 9.323571 -0.465260 -10.736745 17.945497 -1.662815 1.454318 2.430631 0.075859 0.685035 -22.053605 -9.556356 11.022573 6.169739 2.820748 -0.434865 10.710324 2.265177 4.684382 -14.705435 0.544911 5.512377 -1.195251 -3.387755 -0.278243 -1.484094 -7.658818 7.876136 1.387974 1.832167 15.517728 -2.677513 11.966169 13.788446 -3.286665 3.330815 10.463362 -2.332196 0.708247 -7.932822 -3.640252 15.740276 5.760978 0.526960 4.188444 -6.484868 16.077074 2.847178 16.399822 -4.110815 -7.789439 8.327969 3.329338 -6.450830 -1.210090 -12.373728 3.024439 6.498998 5.432335 -4.205078 5.955725 -6.820948 4.057161 7.098478 4.417497 16.540541 7.667630 12.191781 15.551014 13.483048 -12.083345 4.977003 3.256580 -2.164320 -2.370275 15.316331 -8.709335 -11.137565 4.571235 -1.118755 -11.958851 -1.564501 0.208265 25.724251 -13.908855 -4.679610 0.075294 7.012941 17.068591 -8.935368 5.288068 -13.218757 -1.106430 -4.215301 18.374727 3.010629 4.236477 -6.468285 4.905165 -2.066142 1.435130 1.385904 -13.883856 -2.269273 -13.550136 -9.877909 -10.464241 3.328716 8.891462 -18.119895 -0.729295 -3.710100 12.491378 -24.352230 1.410790 4.219562 6.728808 22.389928 8.678278 -7.358668 1.858868 3.476821 4.173783 7.418113 -6.430031 5.857444 -4.245943 1.739807 2.339210 3.688452 3.743251 -22.652747 -4.162957 2.946809 -5.338030 4.250414 10.502010 11.602326 -7.063731 7.831085 -9.361675 11.577945 -19.393095 -6.668050 -5.962201 -18.197328 -7.968832 14.425150 12.539071 14.375114 -4.859287 -6.959508 -1.731016 -21.343526 -20.518165 -2.108521 0.983052 -1.113870 7.651203 -2.876367 5.538110 -12.391670 8.893248 9.894201 -6.721874 -7.527222 1.925822 13.315833 2.576722 -5.519748 -5.976793 -4.011573 -5.687333 4.623338 19.017312 -1.337027 -22.372653 -25.766338 -6.553135 13.933588 -7.333856 1.465180 -8.848762 -6.403169 -11.387408 -2.142182 -11.671508 2.402781 2.234892 -5.270946 -18.035413 7.254591 -1.403060 -6.889212 4.397280 -12.138115 2.455482 12.028619 0.655001 2.051108 2.569970 -0.365894 -10.851004 -7.961931 6.806863 -10.100842 14.881468 10.844948 -1.322008 -5.721735 -7.287887 -13.334554 7.879287 -8.629293 8.900114 0.569227 -1.410844 6.572356 -14.943593 0.759994 -11.497840 4.977862 1.162640 -21.813088 15.597144 12.059952 -8.164652 1.584040 -0.916588 8.215865 1.185176 7.579380 -8.943999 -9.432373 3.221195 0.496285 -0.055110 -1.958414 2.692656 -7.631837 -4.471168 -10.342191 -2.058660 12.518561 6.210789 -2.679077 -1.358071 6.452073 -8.531144 4.926095 10.588383 11.182716 -0.552588 -11.963183 -28.223954 5.724501 -9.776181 -5.641018 -1.186269 -6.010644 -1.992949 7.452244 -8.441089 12.593758 -1.357673 -6.890575 13.483445 -19.833972 -15.001254 -11.363997 -2.652413 2.685645 -0.595279 0.969862 -6.774030 4.415417 0.297222 3.195771 -5.782165 -11.154690 5.154848 7.556440 16.905820 -1.753591 0.130693 15.689302 5.197717 -0.739397 -4.574520 1.719004 -7.599556 0.898856 -18.166398 -2.876019 4.785516 8.106172 -11.273711 3.569489 -3.156804 0.280249 4.150836 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 2.153655 0.052358 -1.808039 3.708408 -0.279410 -0.025940 0.779197 0.610131 0.020487 -5.164235 -2.500670 1.667589 1.173078 0.279346 0.252583 2.076821 0.582934 1.435294 -4.093914 0.290558 1.588997 0.141836 -0.526353 -0.377004 -0.204927 -1.628783 0.511206 0.510544 0.411458 3.687964 -0.873607 2.298774 3.181421 -0.530034 0.739236 2.637043 -0.309267 0.085014 -0.917282 -0.559700 3.912407 1.385448 -0.035067 0.997559 -0.965034 3.762180 0.214586 3.562099 -1.325458 -1.841803 1.976882 -0.490719 -1.604024 -0.119934 -2.770137 0.856385 2.227829 1.910475 -1.160641 1.750161 -1.641056 0.934724 1.610379 0.280387 3.703332 2.139128 2.292549 3.319561 3.474060 -2.669148 1.046909 0.582892 -0.233853 -0.748978 2.650077 -2.043168 -1.883981 -0.877212 -0.189733 -3.673786 -0.309893 0.041426 6.020618 -3.308896 -0.401967 0.836443 1.409948 3.733949 -2.060463 0.814225 -3.063642 -0.127696 -0.914645 4.296075 0.495017 0.800523 -1.270934 1.231070 -0.157074 0.539466 0.101407 -2.901487 -1.582912 -4.017270 -2.369534 -2.117463 0.516571 1.669455 -4.235760 -0.398408 0.289856 2.653864 -5.742413 0.241105 1.168066 1.711467 3.530312 1.878234 -2.190813 0.283480 0.303490 0.981576 1.624026 -1.752140 1.106185 -1.533353 0.080072 0.617697 0.922577 0.550520 -4.811560 -1.021242 0.533267 -1.366521 0.665644 2.156228 2.237318 -1.526649 1.842278 -2.523195 2.764458 -4.554364 -1.136820 -1.408925 -4.106956 -1.646952 3.684327 2.837333 2.611063 -0.689049 -1.748409 -0.531492 -4.648651 -4.615988 -0.118423 0.102264 0.607989 1.340380 -0.668817 0.858347 -2.555752 1.518060 1.683602 -1.635704 -1.465646 0.135892 3.609032 0.347735 -1.357607 -1.842603 -0.569295 -0.173528 0.472748 3.571114 -0.700508 -3.757259 -5.497936 -1.791783 3.257059 -1.531868 0.394386 -1.930774 -0.952542 -2.804471 -0.002497 -2.652075 0.549304 0.378456 -1.461583 -4.228491 1.532292 -0.442524 -1.524972 0.981011 -2.665232 0.535373 2.635158 0.569041 0.432098 0.509580 0.134898 -2.769681 -2.302481 0.910210 -1.964464 3.224991 2.616816 -0.047937 -1.560533 -1.499057 -2.942470 2.277271 -1.779771 1.789991 -0.123997 -0.522250 1.986492 -3.150535 -0.029389 -2.975436 1.190419 0.383935 -5.098018 3.755636 2.628312 -2.083312 0.039904 -1.007507 1.795026 0.618312 2.248129 -1.902459 -1.956895 0.934717 -0.256188 -0.089972 -0.965032 0.874998 -1.660502 -0.415147 -2.539562 -0.588506 2.869405 1.734315 -0.637181 0.310206 1.561270 -1.169778 1.067094 2.684870 2.281034 -0.481077 -2.627574 -6.297424 1.446779 -1.077766 -0.692477 -0.261183 -1.493202 -0.755008 1.470941 -1.156817 3.037944 0.972733 -1.171929 3.133101 -4.179051 -3.518352 -2.269149 -0.086905 0.820868 -0.670752 0.144777 -1.538352 0.990193 0.297584 0.895387 -0.481310 -2.738297 -0.230308 1.383128 3.933344 -0.156298 -0.361498 3.770126 0.939877 -0.516408 -0.766261 0.200369 -1.089918 0.274598 -3.213495 -0.739848 0.703658 1.757866 -2.607031 1.458721 -0.705903 0.003438 1.262776 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp___GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 3.059033 -3.269828 -3.237267 9.520515 0.243177 1.986729 1.421594 -0.748752 0.473602 -13.382271 -5.321049 9.555739 1.332329 1.356430 -1.231436 2.061360 2.598560 3.228493 -13.619474 -1.287011 2.106332 0.064096 0.351565 -1.724770 -0.107125 -2.838731 9.233479 2.903816 1.369887 7.043773 -1.356358 5.638527 6.357591 0.978925 2.127125 4.529080 -3.477489 -0.222145 -5.364070 -4.953407 9.719167 2.350243 1.206304 4.529061 -1.827183 7.755661 4.834968 4.475454 8.604796 -2.637827 2.243175 4.420299 -3.233753 -2.618718 -8.677852 0.144592 1.874795 2.236569 -1.655187 2.468679 -0.450339 1.498052 2.710088 -0.167051 9.123199 1.233629 8.037451 7.269869 5.298111 -6.186099 1.804646 0.255299 0.900201 0.977771 6.955700 -6.260650 -6.771465 -1.178505 -2.650689 -10.993491 -0.557426 -0.445199 10.579355 -4.697851 -2.577696 -2.592359 1.994136 7.937703 -2.071840 0.685919 -8.509461 -0.147680 -0.336874 8.643629 2.871333 1.355813 -1.548498 1.271830 -0.770864 1.386885 3.283457 -7.116425 4.022132 -12.352235 -2.451846 -5.907369 2.757790 2.919186 -6.245861 1.337896 -3.939572 6.151010 -11.513114 -2.622102 1.750529 1.920314 6.417672 -3.714726 -1.520747 0.452539 1.027148 3.001563 4.076152 -5.078549 1.892743 0.626097 -0.308898 -0.141206 2.738291 2.900947 -8.410039 -4.935490 1.204146 2.071838 2.060376 4.025686 5.272217 0.250012 2.997245 -4.752629 6.192908 -7.187923 -1.090529 -2.118279 -4.236931 -4.873039 8.257757 4.980905 6.362474 -2.537431 -1.310296 0.307893 -8.697784 -12.245728 1.953401 1.101414 -0.971478 3.836713 -1.466202 3.346499 -7.222057 2.923001 6.139448 -2.387176 -4.163592 0.710052 0.026556 1.447719 -2.305538 -1.755497 -0.416218 -1.206914 2.119905 8.638579 -1.920431 -14.489803 -11.430733 -3.194396 6.551463 -4.584192 -1.180998 -3.391759 -3.269704 -3.148386 -0.926694 -5.866302 0.399863 0.748988 -5.217614 -9.197159 2.749635 -1.590612 0.013423 3.606833 -6.702405 1.361368 4.422761 3.404201 0.287288 1.484376 0.722046 -5.954535 -3.705894 2.333356 -5.190906 6.062262 3.181931 -0.474169 -7.398003 -3.436519 -4.937764 3.006535 -3.636399 5.427004 -0.625042 -3.413976 2.163445 -6.194948 3.808043 -2.750318 1.828374 1.572633 -16.421071 9.194007 5.727248 -4.148592 -0.026981 -0.336385 2.648924 -0.601654 3.146506 -6.585792 -5.512576 1.286946 -0.756801 0.425339 -1.732823 1.016915 -0.667727 -3.456333 -8.203598 -3.954928 6.376177 1.667040 -0.856425 0.087121 4.485463 -3.249721 1.306770 8.336895 4.789495 1.988163 -6.093576 -17.345073 2.425709 2.919268 -0.739423 1.111658 -4.190113 -2.432737 3.527949 -4.750521 5.595661 -1.135535 -5.387147 6.378251 -7.785492 -5.719241 -6.349131 -3.458460 2.735793 0.189185 1.781260 -3.147415 1.115040 -1.464311 0.775134 -3.394578 -3.849183 4.290307 4.887195 7.662947 0.945654 1.177898 6.956180 1.993566 -2.425858 -1.408481 -0.688883 -5.063465 2.159846 -11.365604 -0.822583 2.740911 3.693436 -5.055992 0.459972 -1.178302 2.053172 -0.116070 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 1.140775 -0.890152 -0.578034 2.622932 0.295379 0.600686 0.390779 0.149799 0.209261 -4.020573 -1.876546 2.360337 0.202962 0.352349 -0.028627 0.644116 1.022962 0.836489 -4.293684 -0.269379 0.723736 -0.088507 0.268412 -0.423021 0.125521 -1.015972 2.068020 1.000443 0.364592 2.136710 -0.727028 1.635323 1.947715 0.510464 0.881367 1.371989 -1.054193 -0.461456 -1.232615 -1.371821 2.927391 0.829625 0.117868 1.309806 -0.278188 2.396034 1.158514 1.516834 2.289283 -0.787714 0.591468 0.127500 -1.173012 -0.447612 -2.565970 0.119489 0.539833 0.538567 -0.577580 0.825799 -0.488432 0.615287 0.713082 -0.505941 2.834829 0.256701 2.340963 1.948334 1.678360 -1.821744 0.475963 0.182674 0.552027 0.551927 1.502081 -1.706540 -1.536714 -1.209751 -0.531319 -3.258154 -0.066077 -0.409912 3.211404 -1.392026 -0.664898 -0.362487 0.304339 2.405800 -0.780171 0.236972 -2.470447 0.115302 0.039192 2.170933 0.722762 0.336475 -0.337345 0.418357 -0.226563 0.565756 0.736947 -2.007019 0.430414 -4.047601 -0.761027 -1.604851 0.807075 0.593754 -2.015001 0.706561 -0.628484 2.172128 -3.192802 -0.792553 0.468879 0.533719 1.129246 -0.731130 -0.574485 -0.287088 0.249735 1.248221 1.135296 -1.706759 0.611470 -0.405260 -0.061599 0.083560 1.086624 0.690497 -2.072232 -1.359209 0.591655 0.573778 0.461791 1.109344 1.430571 0.083061 0.988843 -1.376574 1.887384 -2.186479 -0.233514 -0.902483 -1.092457 -1.337278 3.252725 1.901672 1.704948 -0.022414 -0.176918 0.065768 -2.536691 -3.620753 0.504497 0.225020 0.045264 0.871538 -0.392723 0.970488 -1.966167 0.607103 1.289227 -0.960035 -1.191800 -0.114391 -0.115431 0.366483 -0.701275 -0.790804 0.043968 0.312992 0.067725 2.265426 -0.654522 -3.827249 -3.057066 -1.243729 1.958843 -1.443543 -0.208366 -0.988556 -0.593639 -0.888512 -0.035780 -1.655746 0.054690 0.199087 -1.846326 -2.787348 0.660774 -0.532432 -0.106846 1.058226 -1.959537 0.496094 1.310241 1.345927 0.198867 0.544612 0.010450 -1.781415 -1.354103 0.281375 -1.427394 1.880837 1.079647 -0.327231 -2.241827 -1.059343 -1.533215 1.439321 -1.176604 1.478469 -0.286468 -1.191338 0.641887 -1.665606 0.810408 -0.965538 0.703107 0.436700 -4.963297 2.635196 1.900095 -1.575300 -0.279123 -0.889872 0.969189 -0.044919 1.408909 -1.797274 -1.289490 0.296310 -0.107109 0.067410 -0.652080 0.585634 -0.140085 -0.904647 -2.378203 -1.226222 1.928723 0.682581 -0.242268 0.210189 1.458251 -0.147573 0.559294 2.497580 1.161578 0.412196 -1.815027 -5.389770 0.691530 1.922123 -0.095681 0.669852 -1.524188 -0.933391 0.613987 -1.461203 1.840744 0.216850 -1.080513 1.956308 -1.893374 -1.698746 -1.850453 -0.878440 0.607209 -0.173421 0.785692 -0.928183 0.133556 -0.478673 0.403382 -0.733037 -1.231607 0.528811 1.270438 2.157541 0.558096 0.269308 2.091027 0.680191 -0.884904 -0.453458 -0.222377 -1.336006 0.660314 -2.939164 -0.375281 0.610630 0.880049 -1.462464 0.261306 -0.113798 0.771547 -0.063602 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.770831 -0.607476 -0.270423 2.056113 0.264902 0.241200 0.532289 0.179892 0.029751 -3.244257 -1.366523 1.711477 0.163698 0.131568 -0.126069 0.259978 0.755677 1.033090 -3.292839 -0.224025 0.623724 0.252232 0.130203 -0.600255 -0.007212 -0.666251 1.436320 0.902166 0.374794 1.828609 -0.516233 0.934013 1.575492 0.336517 0.582826 1.387166 -0.218145 -0.061473 -0.891565 -1.020866 2.637929 0.568946 0.168442 1.176644 -0.042417 2.009535 0.955241 1.022494 1.539241 -0.712187 0.492948 0.173152 -0.839540 -0.644085 -2.120143 0.250116 0.940546 1.051916 -0.722875 0.935181 -0.116236 0.358321 0.661193 -0.350945 1.996607 0.522609 1.437648 1.623737 1.647426 -1.614455 0.216484 0.164590 0.473511 0.233228 1.180196 -1.428855 -1.206771 -1.441628 -0.524437 -2.933640 -0.119060 -0.096398 2.662214 -1.277754 -0.157526 0.141985 0.233812 1.692812 -0.563486 -0.142705 -2.140558 0.006718 -0.029001 2.197804 0.609211 0.181487 -0.153330 0.432088 0.079267 0.632259 0.642900 -1.637524 0.201635 -3.466777 -0.748822 -1.310723 0.439419 0.413933 -1.464884 -0.026729 -0.088003 1.501024 -2.839852 -0.597943 0.617710 0.608859 0.649836 -0.999983 -0.600067 0.108097 -0.006549 0.544601 0.956724 -1.390089 0.274814 -0.026272 -0.209390 -0.019095 0.713141 0.475134 -1.822650 -1.181402 0.206973 0.353410 0.231638 0.632106 0.856554 -0.156908 0.808458 -1.381193 1.621667 -1.780404 -0.023031 -0.507843 -1.169233 -1.067210 2.272272 0.965643 1.282989 -0.325307 -0.529096 -0.072510 -1.878110 -3.026354 0.784311 0.276496 0.300977 0.735538 -0.397766 0.556221 -1.601415 0.258089 1.150791 -0.669695 -0.849587 0.077580 0.409836 0.099011 -0.616700 -0.825022 0.238799 0.492097 0.319706 1.591259 -0.843808 -2.637472 -2.408000 -1.020817 1.649416 -1.013776 -0.225648 -0.597589 -0.616318 -0.950370 0.145334 -1.462494 0.280013 -0.036590 -1.394891 -2.332055 0.692211 -0.555053 -0.038778 0.978441 -1.571523 0.364599 0.789260 0.830273 0.000159 0.257954 0.358253 -1.671985 -1.229031 0.161616 -0.917866 1.413900 0.825777 0.134974 -1.764958 -0.788405 -1.120730 1.034237 -0.850764 1.113046 -0.165121 -0.910322 0.899025 -1.335013 0.708822 -0.973531 0.612821 0.638022 -3.637790 2.330338 1.426619 -1.195709 -0.330058 -0.466725 0.499448 0.158895 1.258662 -1.555920 -1.267968 0.616059 -0.389302 0.038902 -0.754382 0.397654 -0.026688 -0.294587 -2.156641 -1.075994 1.432464 0.730851 -0.233419 0.400397 1.187610 -0.296046 0.126331 2.315183 1.001776 0.421315 -1.459818 -3.875119 0.816546 1.074362 0.191125 0.298553 -1.054340 -0.725978 0.777855 -0.623431 1.481615 0.524413 -1.025808 1.694141 -1.750231 -1.536674 -1.201655 -0.607082 0.865866 -0.414114 0.476624 -0.864480 0.305571 -0.370594 0.255268 -0.369087 -0.850594 0.211617 0.910668 1.808318 0.383095 0.061343 1.896080 0.241324 -0.830266 -0.082681 -0.216910 -0.640242 0.604414 -2.181962 -0.312451 0.324114 0.894145 -1.218305 0.574376 -0.323449 0.378242 0.315324 -PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 6.298367 -4.357912 -6.626761 15.700192 -0.153941 4.028585 1.257469 -2.189738 0.669282 -20.852211 -7.493097 13.148565 3.059062 3.293000 -1.063241 6.394217 3.993710 2.225282 -18.511893 -1.539749 3.590275 -1.730019 -0.832900 0.481121 -0.388521 -5.998896 12.740576 3.054823 1.431427 11.521821 -2.609582 11.310824 11.065651 -0.388187 3.038080 6.356918 -4.937293 -0.676636 -8.368773 -5.442501 13.930564 2.994992 1.255580 5.026511 -4.778444 12.111991 4.542133 12.934848 9.833721 -5.309444 6.574953 5.132660 -4.661843 -1.570525 -12.690901 0.542826 2.324325 2.260029 -2.588058 3.348781 -3.566287 2.979619 4.310289 2.282272 15.582679 4.255983 13.689043 12.072045 8.727163 -9.294612 3.521608 1.404802 -1.296403 1.263053 11.861578 -8.330308 -9.442826 1.147318 -1.840890 -11.433525 -1.867081 -1.386085 16.556360 -7.926262 -6.099982 -3.568008 3.903310 13.889621 -5.210533 4.374801 -12.369121 -0.773966 -0.373610 13.273289 3.429447 3.161697 -3.373285 2.187226 -2.344954 1.622574 3.688124 -11.094930 3.384416 -14.845500 -7.075462 -8.682599 4.236753 6.118737 -13.439233 3.355941 -6.224615 8.644033 -18.379029 -2.057569 2.051964 3.593992 16.866944 3.221746 -3.864386 -0.923800 3.171380 5.379406 6.013006 -5.772759 5.532929 -3.692433 1.061637 1.233709 4.391358 3.706854 -14.601338 -5.336993 2.973434 0.113362 3.453209 7.831967 9.771711 -1.292634 5.492750 -5.993770 9.398576 -13.102377 -4.612965 -4.472120 -9.016664 -6.909475 13.985241 10.055698 11.708128 -2.338554 -4.332571 0.089909 -16.027034 -18.632732 -1.585092 1.050558 -2.356364 6.760414 -2.419193 5.816009 -10.699409 6.738040 9.039540 -4.877145 -7.063462 0.727864 0.775577 2.729404 -3.591934 -2.923966 -1.822767 -4.703516 2.152101 16.823804 -0.948332 -23.690431 -20.447551 -4.970193 10.073364 -7.010042 -0.302002 -6.553509 -4.841825 -7.331023 -2.179366 -8.904274 -0.742642 1.520656 -7.629227 -14.602251 5.437253 -1.688986 -1.839071 4.351640 -10.840742 2.282842 8.263367 4.825395 2.203897 2.507261 -1.092955 -8.548226 -6.205059 4.476476 -8.428577 10.691811 5.541344 -2.229474 -7.514244 -6.306889 -9.772183 5.600943 -7.733277 7.976986 0.777749 -4.879332 2.333012 -11.016542 2.668977 -5.294483 3.103988 1.163995 -21.616246 13.865856 9.065297 -7.152017 0.246802 -1.467163 6.277449 -1.048107 5.221100 -9.319543 -7.919070 0.518644 1.503840 0.456708 -1.156798 2.235953 -3.879543 -6.117697 -10.808510 -5.004077 10.705450 3.590030 -1.530192 -1.677571 6.806421 -5.374997 3.805471 10.409397 7.773182 1.760246 -8.189021 -26.827857 3.245797 -0.545721 -4.040848 1.710610 -8.151754 -2.849265 5.339274 -8.584950 9.255080 -3.905921 -5.609306 9.968537 -14.245038 -9.546481 -10.453713 -5.244699 1.655035 1.359934 2.104778 -5.000093 1.700300 -1.636598 2.225964 -6.145692 -7.321946 6.848084 6.953759 12.039263 -1.208778 1.828439 10.784820 4.667402 -2.021338 -3.896147 0.516856 -8.153726 2.631131 -17.911758 -1.442287 4.814126 5.344563 -8.014203 0.030129 -1.490676 2.927697 0.184491 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 1.727370 -0.803421 -0.887483 3.525837 0.238930 0.476455 0.725316 0.229793 0.164091 -5.260790 -2.052156 2.640236 0.544788 0.397419 -0.102038 1.123168 1.121561 1.166670 -4.798271 -0.218334 1.072256 0.122601 -0.187601 -0.431562 -0.079284 -1.344747 1.917301 1.101078 0.473459 3.141111 -0.902153 1.932855 2.827977 0.039805 0.767352 2.165728 -0.164052 -0.091330 -1.431064 -1.202622 3.992638 0.967692 0.054792 1.598537 -0.488226 3.290605 0.880509 3.129604 1.533200 -1.439290 1.410252 -0.015813 -1.421780 -0.572300 -3.177199 0.553436 1.615065 1.502753 -1.141031 1.504174 -0.742929 0.696947 1.160775 0.020527 3.445921 1.537159 2.526802 2.822248 2.938979 -2.575327 0.529341 0.467999 0.267761 0.281142 2.338473 -2.113973 -1.898763 -1.533874 -0.327412 -3.626716 -0.421888 -0.338684 4.527165 -2.355310 -0.592484 0.380253 0.724588 3.083823 -1.408253 0.452918 -3.205769 -0.091020 -0.159215 3.896427 0.722069 0.644953 -0.570368 0.802781 -0.048071 0.880697 0.784871 -2.664947 -0.293622 -4.680545 -1.858450 -2.051016 0.578904 1.075832 -3.209624 0.135596 -0.165978 2.258132 -4.842575 -0.520503 0.939476 1.108841 2.817845 0.427802 -1.323164 -0.014854 0.275415 0.877779 1.408659 -1.900436 0.912184 -0.869742 -0.067857 0.317265 1.083015 0.636246 -3.585703 -1.346304 0.539077 -0.121791 0.480508 1.404167 1.706467 -0.822747 1.483310 -2.060797 2.550880 -3.430607 -0.781233 -0.964301 -2.565256 -1.595593 3.831947 1.949565 2.535852 -0.315656 -1.310751 -0.355282 -3.632192 -4.917229 0.366282 0.313458 0.324406 1.311376 -0.654649 0.913691 -2.536999 0.870011 1.775717 -1.330922 -1.429662 0.088394 1.309163 0.183018 -0.990328 -1.382591 0.068668 0.188169 0.452567 3.276477 -0.920437 -4.667799 -4.545536 -1.618664 2.708239 -1.572673 -0.052646 -1.281154 -0.993760 -2.089730 0.016807 -2.299317 0.298688 0.066021 -2.125811 -3.894807 1.402623 -0.694157 -0.468141 1.297423 -2.672611 0.593520 1.587835 1.273395 0.317633 0.453355 0.200380 -2.716929 -2.143623 0.476752 -1.563072 2.716887 1.514598 -0.036201 -1.922097 -1.413853 -2.379082 1.880051 -1.988838 1.697619 0.021722 -1.257294 1.383501 -2.480997 0.368995 -2.052134 1.073130 0.735854 -4.830903 3.869806 2.353566 -2.046462 -0.427867 -0.854468 1.243386 0.323014 2.144338 -2.452726 -2.129065 0.782384 -0.204443 -0.006180 -0.909081 0.803555 -0.729462 -0.510625 -3.019995 -1.377214 2.460235 1.433210 -0.471734 0.321395 1.854204 -0.729365 0.541398 3.200324 1.759262 0.342013 -2.209535 -6.293779 1.270934 0.358251 -0.355889 0.345130 -2.077372 -1.013111 1.368201 -1.139727 2.530347 0.415397 -1.076286 2.754024 -3.501339 -2.712683 -1.987008 -0.915468 0.944618 -0.433101 0.615343 -1.415803 0.564009 -0.377571 0.639330 -0.779602 -1.769956 0.423640 1.337905 3.031913 -0.015331 -0.020471 3.155440 0.690232 -0.948346 -0.437248 -0.115027 -1.056711 0.692684 -3.522961 -0.433407 0.618716 1.425822 -2.058802 0.983867 -0.413910 0.482071 0.646046 -PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = 3.475071 -0.714283 -4.251739 8.095730 -0.490346 0.971434 0.677404 -1.170299 -0.492022 -9.782027 -3.697188 6.050909 2.280605 1.409102 -0.813713 4.264387 1.580767 1.661942 -8.601403 -0.322565 2.016174 -1.024774 -1.360600 -0.228055 -0.471132 -3.419798 6.109240 1.726446 0.555501 6.374053 -1.595154 5.514578 5.670865 -0.839241 2.109308 3.979758 -2.198364 0.067767 -4.275145 -1.901195 7.347121 1.702274 0.605833 1.810603 -2.219472 6.977395 2.589091 5.471673 1.665660 -2.847544 2.942847 4.838489 -2.465277 -1.092987 -6.383767 0.372922 2.113781 1.796253 -1.944979 2.211035 -2.075655 1.893023 2.907151 2.537612 8.164069 1.958817 6.619919 6.365754 5.275325 -5.037613 2.224625 0.666708 -0.435340 -0.701555 6.743017 -4.027517 -5.451874 1.818813 -0.900371 -6.735362 -0.137548 0.533108 9.287235 -4.982291 -2.863758 -1.391159 2.852687 7.577311 -3.508044 1.744737 -6.198234 -0.377356 -1.873351 8.651661 1.815435 1.831543 -2.007010 2.161721 -0.932741 0.813137 1.076266 -6.567767 1.601016 -7.322135 -4.443586 -4.995864 1.674946 3.211944 -7.356984 0.625741 -2.270361 5.208949 -10.124493 -0.176318 1.259794 2.355196 8.377647 0.688879 -2.530466 0.486107 0.875026 2.648878 3.343690 -2.422182 2.667330 -1.142325 0.813339 0.898811 2.151523 2.018330 -9.038885 -2.073327 1.539000 -1.576898 1.746384 4.337321 4.951587 -1.625899 3.146112 -4.063765 5.201034 -7.924835 -2.088174 -2.843632 -6.136261 -3.632203 3.523947 5.321624 5.232828 -2.280009 -2.250068 0.299767 -9.433968 -9.632644 -0.614476 0.704774 -1.582950 3.276582 -1.556143 2.757221 -5.826653 3.110032 5.688258 -2.995157 -3.914808 -0.092756 4.204101 1.785737 -2.431592 -1.427644 -1.506336 -2.642828 2.414928 8.640227 -0.910313 -11.047922 -11.306698 -2.795976 5.845435 -3.638007 -0.167685 -3.653821 -3.167259 -4.750983 -0.490755 -5.079580 0.229531 0.448969 -2.176592 -7.640086 2.804501 -0.822736 -2.281715 1.681671 -6.106471 1.279845 4.837227 -0.099740 1.021461 0.746578 -0.101760 -4.277543 -3.045890 3.425942 -4.166826 5.283981 4.102450 -0.552198 -3.619654 -3.172133 -5.390638 2.627789 -3.099731 4.380042 0.863543 -1.952693 2.148764 -6.185101 1.279897 -2.638916 1.875083 0.269610 -10.037071 8.214142 5.555670 -4.087410 0.452648 -0.084147 3.710546 -0.475984 2.774172 -4.931648 -3.997442 0.857659 0.570318 0.084592 -0.131317 1.248667 -2.285823 -2.639984 -5.409517 -1.866168 5.576718 2.556030 -0.918500 -0.739907 2.531283 -4.326710 1.712327 5.192642 4.150912 1.212739 -4.529311 -12.767401 1.874939 -4.765905 -2.111274 0.155321 -2.222469 -1.283943 2.737976 -3.839430 5.582539 -2.066019 -4.342365 5.666725 -8.125771 -6.122618 -5.999198 -2.376857 1.039559 0.039093 0.871679 -3.145183 1.125102 -0.810428 1.655684 -3.312271 -4.019930 3.745374 3.731654 6.649457 -0.306209 -0.139672 6.536517 2.142791 -0.514559 -2.384378 0.393684 -3.886967 1.609489 -8.324256 -1.333548 2.076146 3.631811 -4.720868 0.724729 -1.380518 1.544873 1.127494 -PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.785133 -0.618935 -0.968784 3.400766 0.199056 0.321835 0.645726 0.288267 0.092993 -4.795097 -2.214335 2.523511 0.578736 0.286141 -0.017568 1.201407 1.142171 1.073919 -4.862238 -0.115064 0.980263 -0.132327 -0.363011 -0.428829 -0.078236 -1.477026 1.891533 1.289233 0.352616 3.024161 -0.931885 1.839388 2.645259 0.075205 1.074005 2.181279 -0.607801 -0.215395 -1.336182 -1.085179 3.949600 1.074544 0.015074 1.418318 -0.283246 3.363528 0.956196 2.638773 1.198772 -1.264539 1.349677 0.398555 -1.473919 -0.547545 -3.212044 0.386906 1.621039 1.192036 -1.190180 1.477140 -0.904287 0.832363 1.206328 0.116861 3.607180 1.106309 2.657284 2.668482 2.796477 -2.492703 0.630187 0.440889 0.563516 0.193954 2.118691 -1.987927 -1.957868 -1.209289 -0.305185 -3.854910 -0.113694 -0.258316 4.421074 -2.293162 -0.638275 0.193718 0.667996 3.155046 -1.525819 0.282098 -3.118774 0.007064 -0.378722 3.844957 0.702635 0.651736 -0.452566 0.928164 -0.121095 0.863501 0.559070 -2.822086 -0.260755 -4.734271 -1.811852 -2.103043 0.615624 0.877884 -3.124917 0.217701 -0.091580 2.322877 -4.560156 -0.489968 0.833249 1.021819 2.260626 -0.000963 -1.283509 -0.076619 0.182531 1.218648 1.525229 -1.761400 0.875383 -0.874923 0.119206 0.398066 1.159339 0.709650 -3.484316 -1.216838 0.702868 -0.255920 0.458043 1.435449 1.617677 -0.707374 1.487071 -2.100194 2.583094 -3.580166 -0.616555 -1.325919 -2.340205 -1.577408 3.062404 2.263936 2.316502 -0.268043 -0.922339 -0.090429 -3.794990 -4.727685 0.381943 0.264741 0.215262 1.022390 -0.650052 0.967474 -2.486769 0.680655 1.732766 -1.434579 -1.499977 -0.195331 1.667856 0.418057 -1.099951 -1.201461 -0.039312 0.230885 0.462386 3.097491 -0.936208 -4.554914 -4.382349 -1.650649 2.737966 -1.631511 -0.095213 -1.258366 -1.002605 -2.072313 0.138890 -2.278827 0.278482 -0.000460 -1.751735 -3.734434 1.176951 -0.650641 -0.493155 1.115476 -2.719664 0.613282 1.847458 0.956185 0.347680 0.538428 0.159719 -2.444913 -1.936870 0.597761 -1.519444 2.746532 1.752390 -0.113468 -1.982761 -1.353939 -2.375656 1.851753 -1.640256 1.779320 0.043497 -1.347303 1.382040 -2.370723 0.422330 -1.778320 1.082755 0.566359 -5.017005 3.807548 2.605216 -2.190935 -0.397245 -0.971173 1.368546 0.210865 2.115980 -2.302207 -1.785482 0.732853 -0.109256 -0.024017 -0.739068 0.851838 -0.529257 -0.627004 -2.991494 -1.307033 2.525182 1.413937 -0.414252 0.297968 1.531331 -0.727475 0.716702 3.033897 1.582116 0.372984 -2.264423 -6.334246 1.154780 0.156869 -0.336887 0.445428 -1.600500 -1.097643 0.990983 -1.210452 2.655318 0.368349 -1.340023 2.766789 -3.158103 -2.784742 -2.340703 -0.858355 0.818978 -0.526987 0.746674 -1.448917 0.467748 -0.455794 0.750341 -0.815388 -1.716591 0.300184 1.421178 2.915538 0.317991 -0.176155 3.154571 0.707672 -0.890103 -0.673803 -0.130375 -1.249493 0.921915 -3.256897 -0.625917 0.475404 1.485457 -2.095590 0.876280 -0.330930 0.787481 0.612177 -PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = 0.361085 0.094829 -0.327254 1.416959 -0.043972 0.600101 0.361707 0.050722 -0.219038 -1.965912 -0.991414 1.357594 0.195280 0.806620 -0.193635 0.116841 0.346328 0.326957 -2.274253 -0.423914 0.549024 0.030555 0.329495 0.276147 0.000000 -0.538662 0.793641 0.755273 0.305006 1.426300 -0.268016 0.951621 1.178433 0.033804 0.044322 0.810206 0.069597 -0.189238 -1.017534 -0.737319 1.285420 0.052424 0.012112 0.662006 -0.700550 1.495511 0.483952 0.923104 1.212509 -0.763242 0.234394 0.100571 -0.630680 -0.435924 -0.926060 0.001901 0.025421 0.629437 -0.216028 0.395304 -0.181079 -0.002488 0.396407 -0.279022 1.000223 0.421802 0.945115 1.037945 0.856846 -1.348564 0.179422 0.291333 -0.297335 0.384590 0.329564 -0.519070 -0.682916 -0.629508 -0.071664 -1.843614 -0.959447 -0.205239 1.431135 -0.901747 -0.517441 -0.218908 -0.075502 1.251222 -0.542820 0.587757 -1.450009 -0.313247 0.330856 0.676228 0.467037 -0.181929 -0.032039 0.073672 0.015274 0.399663 0.053207 -1.078497 -0.081055 -1.440018 -0.462432 -0.801617 0.348998 0.808610 -1.148930 0.126455 -0.350062 1.475958 -1.837392 -0.493881 0.357047 0.693746 0.400269 0.865580 -0.521763 -0.123221 0.628889 0.220103 1.251163 -0.722211 0.759981 0.047204 -0.181357 -0.001065 0.253477 0.544416 -1.267425 -1.104238 0.529170 -0.158264 0.457099 0.447220 0.822902 0.359999 0.728116 -0.754059 1.042473 -1.083315 -0.296251 0.000343 -0.655886 -0.859768 1.265005 1.440947 0.854325 -0.143439 -0.513518 0.076979 -1.161649 -1.618022 0.095468 0.343984 0.094650 0.736294 -0.432847 0.907386 -1.146402 0.478453 0.559027 -0.196661 -0.797087 0.242061 -0.164089 0.404736 -0.122705 -0.548728 0.100308 -0.630633 -0.021622 1.554162 -0.338926 -1.974266 -1.690810 -0.654006 1.222440 -0.641151 -0.287022 -0.621214 -0.610383 -0.528479 -0.185477 -0.932588 -0.550528 0.210097 -1.048039 -1.555777 0.831607 -0.289664 -0.852667 0.914512 -1.072585 0.032798 0.958993 0.597449 0.453313 -0.066471 -0.149638 -0.505896 -0.365857 0.155070 -1.058511 1.007693 0.678367 -0.207377 -1.244468 -0.773722 -0.759024 1.041435 -0.614271 0.924212 -0.166018 -0.309478 0.442882 -1.056850 0.265500 -0.249630 0.529851 0.678399 -2.820466 1.226865 1.076067 -0.541847 -0.084869 -0.052127 0.220098 0.329763 0.540178 -1.104508 -0.936681 0.209602 0.342290 0.159317 -0.379759 0.249058 -0.190552 -0.805702 -0.936924 -0.537782 1.019702 0.384431 -0.094006 -0.019892 1.117059 -0.011172 0.669248 1.016563 0.631639 -0.066745 -0.435960 -2.308382 0.765698 0.790177 -0.295808 0.496574 -1.133055 -0.212391 0.751913 -1.315973 1.031872 -0.747557 -0.734735 1.226759 -1.027025 -0.913845 -1.194159 -0.628448 0.202310 0.251339 0.663973 -0.415870 0.450756 0.021155 -0.271841 -0.577883 -0.589796 0.304163 0.659968 0.906256 0.024806 0.668338 1.333550 0.217462 -0.421956 -0.339097 0.001211 -0.761406 -0.140139 -1.566560 0.030925 0.641656 0.618978 -0.813810 -0.247507 -0.255846 -0.159597 0.127194 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = 1.338938 -1.247818 -1.292163 3.881606 0.186220 0.763722 0.240749 -0.583309 0.357262 -4.680771 -1.757376 2.597141 0.651936 0.676299 -0.077233 1.438339 1.123700 0.584729 -3.885043 -0.192737 0.714036 -0.402566 -0.183735 -0.042605 -0.038229 -1.565072 3.472591 0.902191 0.437324 2.653320 -0.751257 2.410779 2.553656 -0.124555 1.156252 1.723448 -0.910698 -0.044069 -2.271760 -1.102390 3.610282 0.725036 0.356911 1.306349 -0.691324 3.040507 1.649818 2.536712 2.199987 -1.179393 1.486575 1.366783 -0.938720 -0.735774 -3.263797 0.289016 0.840105 0.621439 -1.031646 0.829399 -0.794634 0.809923 1.049805 0.738772 3.712892 0.457178 3.265000 2.880057 2.135885 -2.341832 0.629716 0.562473 0.377806 0.511135 3.038446 -2.200578 -2.534691 0.298274 -0.747402 -2.359237 0.059680 -0.225349 3.757889 -1.961148 -1.202174 -0.635471 0.406755 3.199471 -1.129550 0.700467 -2.992875 -0.060949 -0.136595 3.151249 0.801301 0.519618 -0.457494 0.736984 -0.536690 0.651098 1.136686 -2.937255 0.973652 -3.756654 -1.752901 -2.231207 1.249192 1.131160 -2.981263 0.679020 -1.507445 1.772637 -4.150879 -0.352967 0.532690 0.979837 3.740633 -0.860734 -0.424307 -0.196225 0.787827 1.431432 1.503938 -1.596616 1.064643 -0.714133 0.507971 0.366805 1.176492 0.739426 -2.738359 -1.331808 0.407157 0.400725 0.617518 1.536588 2.146977 -0.711177 1.433344 -1.432802 2.443220 -3.231613 -0.945896 -1.425878 -1.850763 -1.686068 3.372106 1.685784 3.023983 -0.684581 -1.142635 0.131372 -3.819935 -4.384414 -0.055320 0.332756 -0.647198 1.730066 -0.589293 1.516185 -2.458053 1.137670 2.040910 -1.232844 -1.644647 0.136284 -0.390869 0.550197 -0.935772 -0.889499 -0.282981 -0.641311 0.759497 3.759143 -0.408884 -5.644729 -4.510960 -1.329822 2.458532 -1.788189 0.038677 -1.239017 -1.301631 -1.827768 -0.159175 -2.400524 0.183912 0.108643 -1.633903 -3.450992 1.111501 -0.623009 0.082922 1.144850 -2.655268 0.618764 1.433408 0.886168 0.467459 0.699723 -0.112390 -2.381184 -1.522692 0.994756 -1.972650 2.736063 0.895498 -0.462383 -1.710083 -1.550437 -2.163439 1.108667 -1.464970 1.808198 0.370124 -1.240198 0.661060 -2.481581 0.969573 -1.489093 0.778665 0.517751 -4.970473 3.196611 2.459662 -1.841575 -0.038642 -0.147032 1.444050 -0.316508 1.393661 -2.096884 -1.687638 0.368089 0.330658 0.119889 -0.521993 0.566170 -0.585985 -1.321922 -2.766535 -1.337643 2.337737 0.973108 -0.318552 -0.438892 1.566109 -1.294555 0.443527 2.701341 1.836728 0.914800 -2.261258 -6.291292 0.871323 -0.094867 -0.634556 0.585702 -1.537700 -0.702172 1.092810 -1.462959 2.348495 -0.268711 -1.270165 2.596097 -3.223340 -2.451216 -2.477432 -1.454877 0.507770 -0.041230 0.560405 -1.479045 0.347642 -0.717829 0.502707 -1.629459 -1.159626 1.753662 1.666439 2.704853 0.168666 0.490849 2.673321 1.092392 -0.734217 -0.837028 0.288266 -2.023712 0.910427 -3.850966 -0.605494 0.882707 1.317152 -1.887197 -0.004389 -0.671036 0.880013 -0.030771 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 2.168791 -1.949399 -1.760876 4.890583 0.271331 1.295804 0.534652 -0.271244 0.456273 -6.846389 -2.396313 3.903403 0.905563 1.432367 -0.100110 1.606273 1.380628 0.536048 -5.639494 -0.613503 0.962579 -0.779139 -0.307822 0.740513 -0.159223 -2.068536 3.362099 1.251670 0.609538 3.700520 -1.043952 3.364739 3.653049 -0.253713 0.789387 2.154760 -0.332116 -0.423118 -2.728769 -1.577075 4.760438 0.731542 0.079435 1.648704 -1.595050 4.031729 0.838100 5.736364 3.245811 -1.766471 2.585424 -0.379151 -1.542580 -0.253614 -4.167647 0.603751 0.960872 1.065206 -1.055760 1.126368 -1.289424 1.050230 1.323082 0.533707 4.877738 1.577431 4.261756 4.047559 2.903842 -3.329822 0.844449 0.820620 -0.310736 0.806227 3.382341 -2.411829 -2.280817 -0.792061 0.017640 -2.749627 -0.989550 -0.928449 4.806808 -2.787485 -1.752106 -0.431673 0.853184 4.678464 -1.837306 2.143525 -4.458708 -0.136357 0.897669 4.144413 1.036340 0.645580 -1.035363 0.584548 -0.676964 0.817826 1.330603 -3.470244 -0.156438 -4.595880 -2.504982 -2.609143 1.052503 2.074800 -4.720715 0.987187 -1.172963 2.815747 -5.787871 -0.592006 0.504947 1.475728 5.881807 2.287714 -1.215506 -0.568946 1.426810 1.258433 1.993760 -1.916515 1.811532 -2.086991 0.875607 0.515950 1.278697 1.033103 -4.650680 -1.443130 1.196106 -0.048764 1.068725 2.196420 3.187237 -0.805760 1.968677 -1.771478 2.647505 -4.166042 -1.827784 -1.214310 -3.037686 -2.170497 6.305696 3.335636 4.182358 -0.056523 -2.233768 -0.288684 -5.011278 -6.604667 -0.735727 0.311837 -0.302513 2.371668 -0.936429 2.014060 -3.219899 1.816439 2.040911 -1.662119 -2.313344 0.192993 -0.705431 0.580724 -0.841946 -1.377249 -0.284724 -0.715059 0.157796 5.364031 -0.338812 -7.725118 -6.333159 -1.889733 3.277900 -2.126070 0.189641 -1.897159 -1.404707 -3.196137 -0.677863 -2.579070 -0.485466 0.414481 -2.935893 -4.826584 2.008166 -0.702482 -0.680005 1.809758 -3.677299 0.825211 1.825769 1.685117 0.976918 0.662336 -0.620917 -3.077546 -2.564926 0.911552 -2.819495 4.113315 1.300203 -0.791931 -1.734706 -2.390067 -3.300411 2.372586 -3.576833 2.448706 0.400402 -1.580853 0.832766 -3.439834 -0.122706 -2.043435 1.403430 0.782633 -5.975419 4.636323 2.835071 -2.352178 -0.194220 -0.849953 1.919858 0.190883 2.179124 -2.907375 -2.048868 0.595002 1.031069 0.071668 -0.410298 0.935786 -0.993580 -1.716679 -3.610029 -1.969665 2.863454 1.596052 -0.649544 -0.595600 2.554611 -1.133660 1.276639 3.527708 2.230954 0.229154 -2.178457 -8.649574 1.377776 0.648259 -1.373835 0.838797 -3.696090 -0.653724 1.624448 -2.808320 3.255177 -1.202477 -0.789870 3.442748 -4.594386 -3.103847 -2.918333 -1.776397 0.350302 0.219462 1.311390 -1.675287 0.703090 -0.436219 0.501707 -2.004529 -2.229014 1.349545 2.000867 3.126074 -0.402337 0.895308 3.619999 1.527360 -0.790785 -1.112752 0.116189 -2.180250 0.902942 -5.247739 -0.292609 1.363957 1.521088 -2.685408 0.085129 -0.623523 0.366499 0.094777 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.634993 -0.282759 -0.044603 1.138080 0.137661 0.034032 0.376702 0.396159 0.020115 -2.040681 -0.923864 0.412565 0.129333 0.097255 0.205317 0.235021 0.411607 0.581379 -1.996196 -0.024403 0.569829 0.169641 0.083302 -0.144229 0.015608 -0.500116 -0.074672 0.490125 0.204319 1.268809 -0.487827 0.564865 1.119447 0.067256 0.216666 0.934952 0.231107 -0.108283 -0.138283 -0.241804 1.631817 0.320649 -0.109345 0.516700 -0.071983 1.312608 -0.004818 1.336584 0.291029 -0.607926 0.680590 -0.994932 -0.563322 -0.050928 -1.130438 0.355507 0.928792 0.955506 -0.518172 0.712615 -0.423885 0.301686 0.435465 -0.368064 1.255869 0.776109 0.703291 1.027135 1.253748 -0.989315 0.162758 0.146876 0.122627 -0.007390 0.417559 -0.714870 -0.234145 -1.645147 0.007161 -1.572776 -0.224647 -0.162852 1.672923 -1.026468 0.095052 0.637766 0.134222 1.188838 -0.583487 0.211795 -1.311577 0.027890 0.161705 1.381965 0.195531 0.049377 -0.164947 0.334176 0.100883 0.419879 0.193324 -0.858854 -0.889876 -2.031125 -0.822302 -0.608487 0.085137 0.336332 -1.396474 -0.067458 0.627513 0.785554 -1.915927 -0.162464 0.401211 0.616838 0.434647 0.402392 -0.746922 -0.112015 -0.006691 0.289606 0.554232 -0.834232 0.295390 -0.811698 -0.047541 0.187326 0.410859 0.067754 -1.152592 -0.492384 0.192675 -0.198781 0.072296 0.433507 0.546954 -0.303823 0.635679 -0.911162 0.945438 -1.347267 -0.174334 -0.353492 -1.008983 -0.527724 1.969330 0.829972 0.692681 0.174415 -0.782477 -0.219628 -1.280152 -1.862760 0.186323 0.060010 0.591248 0.392526 -0.294830 0.234505 -0.770315 0.136782 0.226027 -0.571937 -0.458960 -0.069273 0.545469 -0.048447 -0.372824 -0.837804 0.185382 0.658037 -0.241250 0.926522 -0.480843 -1.035521 -1.545009 -0.797360 1.083058 -0.513339 0.094029 -0.470714 -0.104709 -1.064725 0.225197 -0.817855 0.021282 0.011466 -0.958443 -1.545258 0.521568 -0.323925 -0.259452 0.554476 -0.983161 0.226853 0.445646 0.614370 0.180314 0.099876 0.093695 -1.142006 -1.089429 -0.178117 -0.528098 1.041966 0.579807 0.063480 -0.718088 -0.555104 -0.862277 1.047250 -0.801224 0.531335 -0.097231 -0.515102 0.731111 -0.841473 -0.150654 -0.973776 0.494388 0.383591 -1.732496 1.487586 0.807107 -0.841164 -0.286901 -0.748335 0.459672 0.369992 1.082429 -0.774305 -0.559845 0.431068 -0.095604 -0.042709 -0.566041 0.439884 -0.265710 0.050670 -1.168106 -0.573958 0.834739 0.747468 -0.213122 0.364997 0.813281 0.182566 0.240111 1.261104 0.518473 -0.164220 -0.672318 -2.241344 0.601952 0.781512 0.106000 0.176206 -1.005811 -0.390517 0.396449 -0.135830 1.085986 0.753909 -0.046638 1.116029 -1.157451 -1.078694 -0.559477 -0.084235 0.371492 -0.424015 0.290060 -0.527265 0.255446 0.034013 0.265002 0.078373 -0.771997 -0.645373 0.329952 1.076657 0.085976 -0.096443 1.302060 0.190099 -0.510730 -0.058215 -0.106686 -0.087987 0.258175 -0.781157 -0.181017 0.095225 0.468430 -0.838824 0.620950 -0.234405 -0.023076 0.389761 -PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 0.975428 -0.059621 -0.970024 2.649494 -0.542167 0.539497 0.576370 -0.034637 -0.263033 -3.316473 -1.150375 2.961214 0.438497 0.547208 -0.455070 0.891628 0.512029 0.695967 -3.560767 -0.325380 0.739071 -0.123611 0.113590 -0.327071 -0.074047 -1.072615 2.168180 1.261894 0.371539 2.405795 -0.450689 1.365155 1.967623 -0.094631 0.182048 1.523479 -0.597376 0.078685 -1.800616 -1.135738 2.299166 0.438325 0.009407 0.966344 -0.776515 2.612005 1.014244 1.421765 2.303718 -1.124677 0.861485 2.202376 -1.222555 -0.930767 -1.847941 -0.182504 0.393143 0.997219 -0.481647 0.933377 -0.955256 0.412192 0.862403 0.409433 2.188120 0.883269 2.017495 2.076185 1.733595 -2.280693 0.407320 0.438665 -0.107474 0.244127 1.848915 -1.454914 -2.011239 -0.869758 -0.453164 -3.102957 -0.868035 0.152433 3.497688 -1.741167 -0.935936 -0.365197 0.681511 2.310535 -1.162080 0.745209 -2.163571 -0.220733 -0.193971 2.835503 0.789325 0.140382 -0.254037 0.472735 -0.006817 0.685831 0.526315 -2.094757 0.307318 -2.644052 -1.236973 -1.788043 0.775601 1.090346 -2.175518 0.440755 0.541795 1.817233 -3.486275 -0.500569 0.925141 1.023312 1.854502 0.467057 -0.733465 0.300404 0.545429 0.840611 1.893570 -1.306616 0.889387 0.618286 -0.165973 0.160412 0.629824 0.785085 -3.017372 -1.477622 0.711459 -0.247559 0.767944 1.048644 1.352050 0.070708 1.140101 -1.479417 2.168593 -2.570466 -0.433633 -0.546678 -0.802995 -1.450699 1.484633 2.268568 1.656645 -0.744096 -0.598250 0.071940 -2.507667 -2.670275 0.099498 0.541711 -0.274040 0.997818 -0.570219 1.214855 -1.848418 1.054357 1.118093 -0.765838 -1.151353 0.439930 0.825683 0.596907 -0.665349 -0.992377 -0.138630 -1.086861 0.678435 2.612600 -0.456155 -4.222344 -3.341313 -1.143391 2.193724 -1.264322 -0.545146 -1.017283 -1.357117 -0.484897 -0.082648 -1.789809 -0.064617 0.431590 -1.356892 -2.759391 1.528163 -0.433163 -1.093948 1.026810 -2.061368 0.050534 1.046233 0.238920 0.518059 0.239828 0.137094 -1.763982 -0.855321 0.575431 -1.637081 1.542408 1.640010 -0.028067 -2.085707 -1.121282 -1.606656 0.994567 -1.294610 1.574539 -0.239659 -0.980143 1.013426 -1.832236 0.899742 -0.932148 0.808200 0.781331 -4.413419 2.982272 2.367494 -1.175797 -0.056324 0.244035 0.546015 0.334807 0.965788 -2.163626 -1.835016 0.354978 0.112986 0.178471 0.266366 0.540765 -0.557586 -1.162110 -1.714770 -0.639037 1.878568 0.891362 -0.129629 -0.095350 1.400353 -0.979315 0.695983 1.750292 1.305668 0.309853 -1.408743 -4.736917 1.223090 -0.262681 -0.602135 0.839251 -1.279727 -0.726859 1.308035 -1.109095 1.831077 -1.365292 -1.713141 1.977278 -2.359782 -1.960000 -2.186040 -1.105518 0.457517 0.040077 0.930987 -0.789453 0.377225 -0.185352 -0.081850 -1.203587 -0.564659 1.213480 1.245687 2.192728 0.680921 0.175728 2.371232 0.484038 -0.891956 -0.744783 -0.122976 -1.631179 0.235871 -2.500415 0.111082 0.896878 1.445412 -1.501700 -0.000386 -0.044264 0.071329 0.118573 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/the-knights-tour.cpp__solveKT() = 2.951185 -1.503002 -0.292256 4.960335 0.947221 0.548188 1.462776 1.403784 1.059885 -7.854263 -3.636485 5.274197 0.175064 0.243764 -0.476798 0.613766 2.417082 2.598166 -8.858594 -0.290085 1.356519 0.683183 0.323463 -1.753281 0.178639 -1.658874 3.569192 2.514276 1.172775 4.820790 -1.655389 1.870328 4.085588 0.985469 1.844412 3.899504 -0.300687 -0.759404 -2.356281 -3.241723 6.515267 2.289903 0.123742 3.710504 0.144497 5.410900 2.646377 3.428867 4.601559 -1.873729 0.719652 -0.718410 -3.076578 -1.694131 -5.289913 0.763659 1.971368 2.091316 -2.001916 2.633616 -0.037924 1.036516 1.730539 -1.281097 4.644847 1.074548 3.124966 3.790667 4.615674 -4.373597 0.401220 0.730202 2.184724 1.712421 3.044362 -4.039519 -3.319079 -3.605597 -0.879691 -7.258003 -0.292052 -1.063314 6.799748 -3.609499 0.220289 0.566312 0.097934 4.198155 -1.644993 -0.585577 -5.232225 0.166069 0.217208 5.389292 1.151704 0.640464 -0.025202 0.995997 0.032832 1.831833 1.577007 -4.520011 0.219299 -8.955603 -1.172562 -3.583713 0.781409 0.845541 -3.481860 0.369601 -0.730520 4.656251 -6.998842 -1.838526 1.628280 0.909030 1.122560 -1.921698 -0.608816 -0.006521 0.095024 1.697503 2.283382 -4.424922 0.417789 0.407982 -0.866945 0.255044 1.970015 1.339018 -4.165129 -2.878198 1.136306 1.413822 0.549536 1.497401 1.765477 -0.925123 2.082437 -3.627370 4.198021 -4.255054 -0.685147 -1.268880 -2.225666 -2.934610 6.801237 2.329380 3.754113 -0.070664 -0.298637 -0.444644 -4.405871 -7.749200 2.335523 0.396407 0.824404 1.688433 -0.782369 1.320219 -4.113739 0.041166 1.822713 -1.947597 -2.184912 0.071675 0.571980 0.018402 -1.293382 -2.239673 0.852494 1.691510 0.865658 3.703192 -2.389532 -7.819932 -5.458245 -2.833538 4.435554 -2.813692 -0.577097 -1.343498 -1.566347 -1.358639 0.122937 -3.731667 0.854300 -0.215630 -3.802890 -6.121572 1.828839 -1.663832 0.486908 2.770208 -4.034538 1.124488 1.903611 3.123694 -0.232789 1.021151 0.771952 -4.570322 -2.945559 -0.003094 -2.120341 4.373293 1.960670 0.157251 -4.490400 -2.010657 -2.881231 3.260051 -3.160042 2.894739 -0.576019 -2.191041 2.513862 -2.986613 1.665032 -3.086770 2.130585 1.929845 -9.081003 5.650569 4.241893 -3.552076 -1.039623 -1.701097 1.220424 0.857474 3.825403 -4.205331 -3.806475 1.829687 -1.058744 0.021433 -2.255961 1.162143 0.164772 -0.492440 -5.250301 -2.477222 3.607131 1.857907 -0.609589 0.826072 3.282870 -0.093971 0.545950 5.956581 2.271585 1.435981 -4.480933 -10.786781 2.388818 4.565507 0.792240 1.396816 -3.339334 -2.081109 1.886337 -1.934941 3.925088 1.623173 -1.856495 4.449083 -4.453629 -4.077146 -3.065687 -1.693269 2.284419 -0.800975 1.850023 -2.248461 0.672653 -1.397681 0.815170 -1.146703 -1.791166 0.485693 2.596685 4.391126 1.442555 0.144415 5.032393 0.548485 -2.318876 -0.022713 -0.813768 -1.713470 0.847993 -5.241816 -0.560460 0.734516 2.274766 -3.152556 1.789123 -0.242766 1.292646 0.359290 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 4.992825 -2.724790 -3.893031 9.738137 0.704930 1.687961 1.149731 -0.308157 1.808738 -12.101255 -5.215456 8.400058 1.878312 1.437250 -0.412540 4.000090 3.125620 2.147983 -9.660037 -0.205452 1.623177 -0.920671 -1.304183 -0.318327 -0.310932 -4.068459 7.642988 2.252686 1.432354 7.627662 -1.965264 5.574395 6.737176 -0.571745 2.710899 5.344858 -1.322298 -0.433587 -5.720877 -3.714501 9.730927 2.712220 0.823524 4.529490 -1.811233 8.589930 2.963670 8.843962 5.435496 -3.361770 4.246956 2.815733 -3.604115 -1.675878 -8.575007 1.519770 2.578719 1.081423 -2.918152 2.847262 -1.677931 2.226441 3.091729 1.312961 8.759183 2.510178 7.145162 7.491966 6.877432 -6.801243 1.491251 2.197700 1.698057 2.010118 7.978333 -5.681851 -6.604531 1.113532 -1.383326 -6.149170 -0.101451 -1.656471 11.399778 -6.278003 -2.739125 -0.750994 1.602813 8.283479 -3.519295 1.816116 -7.980916 -0.001603 -0.497859 8.726565 1.887314 2.005279 -2.061961 1.721554 -1.542512 1.918631 2.244283 -8.011546 0.883754 -10.154902 -4.668305 -6.139059 2.428841 3.067012 -8.139477 1.401526 -3.460054 6.388352 -11.445320 -1.090600 1.907716 2.278030 9.529243 0.894751 -1.707861 -0.301231 2.428422 3.230389 3.627540 -4.226082 2.412152 -1.634925 0.766802 0.924193 2.858122 1.993392 -8.311431 -3.313260 1.531248 0.952933 1.848040 4.034554 5.235110 -3.225891 3.968218 -4.071550 6.330990 -8.777927 -3.781185 -3.571245 -5.735654 -4.689219 9.706554 4.989300 9.308352 -1.246945 -2.479786 -0.870196 -9.947888 -11.950432 0.110820 0.164130 -1.082801 4.357917 -1.292428 3.545639 -6.702811 2.839446 4.707740 -3.629692 -4.246162 0.607818 1.553770 0.678583 -2.307411 -3.289311 -0.876713 -1.669542 2.183738 9.226583 -1.319638 -15.226593 -11.640818 -3.833347 7.020480 -4.721891 0.502083 -3.245884 -3.517398 -4.398644 -1.170341 -6.276467 0.533482 0.365413 -4.761682 -9.424528 3.501844 -1.659346 -0.738647 3.365433 -7.239512 1.903861 4.647321 2.895205 0.943673 2.236874 -0.456737 -7.032952 -4.461518 2.189084 -4.929197 8.513073 3.969084 -0.999600 -4.289261 -4.262914 -6.300834 3.866902 -6.574236 4.886048 0.854925 -2.492886 2.590646 -6.757685 1.306235 -5.175095 2.872985 1.558246 -12.929128 8.511374 6.950189 -5.303022 -0.280498 -1.073054 3.732424 0.149471 4.920171 -5.855308 -5.105327 1.822730 0.672707 0.077262 -1.740026 1.755384 -1.765746 -2.624827 -7.268742 -3.053379 6.317515 3.119730 -1.171730 -1.201523 4.357241 -3.061539 2.116634 7.344543 5.190207 1.803610 -6.892827 -17.259605 2.886814 -0.109708 -2.088888 1.816281 -5.085428 -1.922272 3.408506 -4.713983 6.629589 -1.639421 -2.454861 7.315667 -9.093595 -7.160572 -5.875215 -3.476547 1.818112 -0.203037 2.431145 -4.018184 1.145480 -1.816143 1.434288 -4.352400 -3.662102 3.742858 4.565870 7.697748 0.533292 1.200557 7.780026 2.818201 -2.024167 -1.788557 0.260876 -4.706474 1.344538 -10.498070 -1.209137 2.197997 3.621563 -5.464691 1.222253 -1.182633 1.866033 0.251737 -PE-benchmarks/the-knights-tour.cpp__main = 0.552408 -0.453273 0.089539 1.177272 0.283528 0.186809 0.363640 0.253428 0.192176 -1.907815 -0.880241 0.831360 -0.009050 0.100499 0.040845 0.088027 0.617002 0.608167 -2.006883 -0.103799 0.373175 0.115596 0.197693 -0.292369 0.027387 -0.494042 0.666151 0.696063 0.272160 1.178880 -0.440768 0.468924 1.007149 0.284096 0.438716 0.969005 0.101699 -0.194732 -0.532111 -0.604341 1.632574 0.362419 0.000903 0.753422 0.041883 1.337490 0.579131 0.794575 1.148809 -0.477374 0.331469 -0.520734 -0.610878 -0.377025 -1.323596 0.197309 0.517797 0.632952 -0.555733 0.644963 -0.138874 0.272143 0.380685 -0.398758 1.137272 0.244968 0.713740 0.884942 1.080617 -1.116971 0.030156 0.230804 0.472883 0.394022 0.494775 -0.863289 -0.562517 -1.409459 -0.202298 -1.604480 -0.116183 -0.214406 1.424054 -0.834339 0.009680 0.350255 -0.163300 0.990588 -0.388616 -0.069375 -1.359122 0.037418 0.266242 1.066717 0.327587 -0.018711 0.070425 0.235613 0.026732 0.523419 0.374314 -1.055859 -0.253212 -2.249653 -0.471637 -0.805729 0.242184 0.129256 -0.905075 0.072184 0.156835 0.987936 -1.622729 -0.393767 0.410234 0.368336 -0.009685 -0.539054 -0.209535 -0.094878 0.097009 0.462664 0.659710 -1.022820 0.180202 -0.172297 -0.100153 0.069486 0.515774 0.192723 -0.669717 -0.737142 0.257793 0.365541 0.080642 0.255037 0.386101 -0.144460 0.548703 -0.828007 1.079392 -1.000360 -0.034015 -0.374126 -0.467175 -0.671252 1.926589 0.589839 0.851217 0.129306 -0.336608 -0.035690 -0.989258 -1.885027 0.488913 0.127733 0.332548 0.431790 -0.245943 0.384081 -0.873796 0.013132 0.317782 -0.502783 -0.537197 0.057609 -0.235655 0.010343 -0.342522 -0.687456 0.319278 0.589832 0.001505 0.851199 -0.599063 -1.543988 -1.186298 -0.784795 1.060107 -0.679395 -0.084196 -0.269323 -0.322916 -0.512344 0.189285 -0.902355 0.110525 -0.059777 -1.042323 -1.489187 0.450717 -0.456723 0.095455 0.746801 -0.983929 0.277902 0.289823 0.717361 0.038103 0.238445 0.145365 -1.086304 -0.813943 -0.159733 -0.499845 1.016219 0.406156 0.055595 -1.043018 -0.565178 -0.605171 0.870012 -0.729621 0.645471 -0.084345 -0.642153 0.584304 -0.698254 0.305999 -0.684047 0.540826 0.562200 -2.120131 1.290063 1.046725 -0.886668 -0.345891 -0.537107 0.284469 0.236932 1.041710 -0.913431 -0.719766 0.441724 -0.114699 0.007453 -0.587849 0.313623 0.073346 -0.137022 -1.310107 -0.698282 0.818571 0.549137 -0.116136 0.237449 0.874450 0.237820 0.064145 1.455209 0.469725 0.288478 -0.929952 -2.461974 0.624712 1.363168 0.234510 0.484763 -0.930204 -0.436862 0.397513 -0.379164 0.981552 0.614112 -0.307493 1.143502 -0.896819 -0.974695 -0.715805 -0.408219 0.490632 -0.312813 0.506953 -0.570226 0.147386 -0.345555 0.155154 -0.207485 -0.343240 -0.131444 0.548184 0.993352 0.377232 0.092586 1.218574 0.124012 -0.650595 -0.033465 -0.134740 -0.372923 0.328221 -1.082778 -0.206409 0.159578 0.524286 -0.730065 0.371250 -0.162041 0.228736 0.123127 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = 7.422275 -8.469088 -7.532925 18.847430 0.241996 3.466922 2.257993 -2.063151 1.150023 -25.950141 -10.165945 16.067085 3.762335 3.478572 -2.167832 6.429122 4.834645 4.690107 -26.690656 -2.111138 4.116463 -1.315364 -0.832062 -1.455257 -0.600805 -6.751726 17.137595 5.484657 2.016530 14.319895 -3.400320 11.898949 13.285577 0.045152 4.162960 9.229363 -5.399862 -0.374686 -10.277726 -7.144935 19.431200 4.417478 1.659169 7.375507 -4.384103 15.762793 8.099610 15.314093 13.641407 -5.941305 7.871075 5.755708 -6.540521 -4.121361 -17.553773 0.847067 6.051036 4.592750 -3.840307 5.179331 -2.106998 3.838239 5.881154 2.217509 20.205164 3.694658 16.968073 13.774765 11.579454 -12.349302 3.973258 1.262760 1.315513 0.517785 14.733118 -13.620588 -13.086239 -3.743474 -3.018795 -19.390221 -0.505875 -0.860737 19.537211 -10.298727 -6.364306 -4.044110 4.339282 16.404490 -5.878339 3.527525 -16.858225 -0.287945 -0.378421 20.202520 4.694663 3.465044 -3.682389 3.399325 -1.798979 2.715646 5.902344 -14.507007 5.182701 -24.521626 -7.383809 -11.519621 4.545662 6.392908 -15.048427 2.424634 -8.008707 9.920915 -23.566978 -3.447926 3.174263 4.575622 17.695912 -3.796345 -4.329248 1.013246 2.750385 6.159011 7.723445 -8.601769 5.058467 -3.163142 2.386585 1.248347 5.121778 4.910240 -18.553526 -7.063254 2.819780 2.332318 4.201834 8.251665 10.815805 -1.465128 6.655530 -9.929716 11.808093 -16.842492 -3.715745 -5.287871 -11.220744 -9.001056 17.702683 10.459339 13.291519 -4.423967 -5.338304 0.277146 -19.190763 -27.261529 1.213481 1.934642 -2.242275 7.453808 -3.359043 6.561340 -13.918796 5.783072 12.262661 -5.826310 -8.616904 0.177527 1.585310 3.164393 -4.793607 -3.302654 -1.574889 -2.504491 4.022659 18.586344 -2.717873 -30.626252 -24.253114 -6.652064 13.205954 -8.924671 -1.339533 -7.359325 -6.672191 -10.891745 -1.662324 -11.234871 0.620684 1.582678 -10.716287 -18.240701 5.640720 -2.686222 -0.141600 6.202745 -14.274057 2.865984 9.148679 7.172057 1.972373 2.691721 1.030786 -12.645857 -8.958968 5.347804 -10.118689 14.414961 6.069363 -1.210527 -10.605566 -7.213755 -11.296006 6.242071 -9.268612 10.039130 0.452761 -6.676991 4.331440 -13.121336 5.173681 -6.373325 4.019558 2.379353 -27.116470 20.849304 12.116681 -9.024803 -0.070834 -1.134880 6.775734 -1.196301 6.933533 -12.795153 -10.566301 2.489497 0.066778 0.462797 -2.561243 2.780510 -2.804063 -6.439264 -15.709261 -7.553005 12.126460 4.798993 -2.005664 -0.688165 7.998612 -7.890207 1.143374 16.049553 8.576069 3.329609 -10.911531 -35.955051 4.814639 2.115401 -3.850193 1.451413 -10.036146 -3.978599 6.870794 -8.464572 12.075669 -0.201417 -9.540863 13.047818 -17.220595 -12.500491 -12.887344 -6.663898 4.005917 0.498883 2.962866 -6.915684 2.319902 -2.740352 2.488062 -6.974960 -8.810389 7.849467 8.985018 14.741734 -0.155828 1.463539 14.521488 4.189089 -3.065503 -4.002977 -0.746188 -9.266287 5.539346 -20.423863 -1.953620 4.954827 7.565990 -10.118297 1.360031 -2.924408 4.050389 0.924067 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 1.572707 -1.459483 -1.209481 3.855944 0.213828 0.529942 0.659865 -0.118757 0.069719 -5.647908 -2.326471 3.007054 0.676410 0.554022 -0.329524 1.162910 1.128515 1.343227 -5.747856 -0.398392 1.035792 -0.037907 -0.121769 -0.545061 -0.116729 -1.397434 2.922322 1.324688 0.486514 3.224182 -0.884988 2.218930 2.901831 0.155653 0.949825 2.237825 -0.704999 -0.090225 -1.813926 -1.468053 4.430968 0.955050 0.292117 1.674181 -0.605768 3.516781 1.533556 2.997995 2.317922 -1.341545 1.516073 0.574706 -1.454013 -0.881692 -3.770912 0.362157 1.657235 1.459039 -1.067166 1.415472 -0.463443 0.812108 1.274756 0.098422 4.153212 0.993389 3.168099 2.902802 2.799158 -2.751824 0.691999 0.306837 0.445303 0.041503 2.692426 -2.735750 -2.420258 -1.713342 -0.626961 -4.617167 -0.093036 -0.117206 4.514790 -2.348589 -0.939793 -0.230728 0.796176 3.358068 -1.300119 0.433557 -3.702465 -0.035137 -0.150322 4.392051 1.014697 0.616584 -0.655704 0.832123 -0.139266 0.813767 1.051731 -3.022279 0.479924 -5.729469 -1.680246 -2.376533 0.789944 1.142421 -3.174654 0.174413 -0.908322 2.348818 -5.188969 -0.744390 0.862867 1.103586 2.830400 -0.943233 -1.230701 0.263581 0.303609 1.138999 1.641400 -1.990079 0.899472 -0.716555 0.268654 0.188101 1.168237 0.909303 -3.909168 -1.582581 0.521537 0.275966 0.686319 1.517129 1.991408 -0.416362 1.496134 -2.359843 2.656635 -3.642985 -0.503888 -1.100969 -2.617262 -1.860616 3.901936 2.145753 2.571549 -0.756628 -1.232147 -0.078966 -3.956092 -5.856878 0.622591 0.437410 0.014178 1.422750 -0.757021 1.179272 -2.923265 0.886633 2.438944 -1.326498 -1.715417 -0.028857 0.943357 0.465452 -1.110215 -1.092133 -0.074641 0.105935 0.694775 3.530932 -0.961063 -5.666977 -4.962833 -1.642482 2.920337 -1.851014 -0.260675 -1.428259 -1.266839 -2.397894 -0.055004 -2.477294 0.304671 0.171400 -2.365203 -4.050283 1.221641 -0.707132 -0.227554 1.426270 -3.007929 0.653490 1.874783 1.429806 0.320608 0.460336 0.405041 -2.815797 -2.151437 0.833727 -1.913968 2.899780 1.528796 -0.017828 -2.454859 -1.498682 -2.380547 1.633847 -1.836826 2.026917 0.016897 -1.472579 1.280059 -2.724644 0.975916 -1.590883 0.993833 0.714900 -5.825485 4.508034 2.612873 -2.088158 -0.265800 -0.595403 1.332337 0.003901 1.900109 -2.739415 -2.211464 0.799084 -0.255389 0.054583 -0.846110 0.717323 -0.499158 -0.919113 -3.537377 -1.696482 2.576925 1.286562 -0.455353 0.249636 1.819314 -1.268561 0.204298 3.704145 1.777870 0.615336 -2.361585 -7.399383 1.231820 0.695655 -0.454092 0.291805 -2.051677 -1.000230 1.414737 -1.460619 2.704428 0.527019 -1.948871 2.940185 -3.576164 -2.820229 -2.479997 -1.174372 1.097249 -0.329533 0.680998 -1.553645 0.536523 -0.565344 0.594793 -1.050334 -1.894602 0.945352 1.714612 3.221591 0.139177 0.121485 3.326522 0.683779 -0.899818 -0.607675 -0.236855 -1.462414 1.208909 -4.039628 -0.536154 0.795839 1.637926 -2.203811 0.719612 -0.660561 0.742978 0.554010 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp___GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/union-find.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/union-find.cpp__createGraph(int, int) = 0.943187 -0.911965 -0.583974 1.959610 -0.327460 -0.281946 0.296869 0.854190 0.121490 -2.145586 -1.271351 0.258043 0.524958 0.344994 1.119506 0.387870 0.300977 0.015114 -3.030925 0.261599 0.581816 -0.055802 -0.735065 0.035243 -0.035385 -0.516512 0.143039 0.846172 0.053093 1.629182 -0.602684 1.076032 1.057072 -0.597657 0.403070 0.960383 -0.044473 -0.021526 -0.465827 0.129706 2.210208 0.435558 -0.416800 0.651867 -0.225282 1.666889 -0.211272 2.136058 -0.153113 -0.986445 1.501202 -0.293898 -0.625602 -0.216922 -1.384224 0.339576 1.990284 1.310591 -0.772645 1.163807 -1.122473 0.282940 0.819197 0.462628 2.243283 1.028137 1.718202 1.526665 1.663595 -1.263020 0.642375 0.137916 0.180816 -0.255454 0.580856 -1.165992 -0.417278 -2.749403 0.428766 -1.792092 -0.423952 -0.068508 1.901166 -1.400792 -0.059349 0.728359 0.355437 1.930818 -1.560087 0.905408 -1.242044 -0.420751 0.000000 1.959355 -0.117493 0.180249 0.167274 0.881154 -0.018276 0.715689 0.148176 -1.141521 -0.769130 -2.775350 -1.717432 -0.296270 0.023309 0.447839 -2.027965 0.018536 0.669939 -0.383717 -2.177624 -0.286515 0.441397 1.141308 0.805834 0.925123 -1.082844 -0.542092 0.164962 0.882643 1.266708 -0.783299 1.303394 -1.646709 0.373620 1.058701 0.684882 0.424786 -1.241087 -0.521539 0.442451 -0.329554 0.026687 0.743991 1.148199 -0.378410 1.077779 -1.446325 1.684305 -2.528451 -0.522289 -0.964677 -1.102264 -0.470914 1.701292 0.991478 0.739113 0.119517 -1.829135 0.331335 -2.122267 -2.426725 -0.062133 0.664854 0.315421 0.451916 -0.434738 0.446945 -0.839247 0.170357 0.812148 -0.963328 -0.883433 -0.434585 0.288932 0.771431 -0.647579 -1.152394 0.615576 0.274977 -0.302986 1.815620 -0.016981 -1.603460 -2.381794 -0.696713 1.632439 -0.165878 0.054727 -0.461596 -0.726765 -2.033181 0.465687 -1.172066 -0.102373 0.029127 -1.201482 -1.941970 0.473901 0.051659 -0.515453 0.340819 -1.570816 0.130559 0.851629 0.882849 0.166576 0.532291 0.409496 -1.656802 -1.915660 0.033761 -0.700399 1.993493 0.650698 -0.216384 -0.030983 -0.511191 -0.890243 1.497908 -1.260300 0.929270 0.126039 -0.898379 0.973679 -1.491773 -1.012557 -1.492077 0.488549 0.364788 -1.843675 2.537725 1.191154 -1.206171 -0.173096 -0.884029 1.002463 0.166214 1.529206 -1.186395 -0.591137 0.297852 0.615063 -0.053635 -1.001844 0.509244 -0.453561 -0.748960 -1.177305 -0.624028 1.398222 0.979373 0.104447 0.399128 0.820039 -0.322137 -0.111884 1.713182 0.876230 -0.595449 -0.691387 -2.557788 1.168388 0.700250 -0.655754 0.004839 -1.830115 -0.678485 0.340055 0.248871 1.025079 1.690890 0.280764 1.567911 -1.662207 -1.706341 -1.607416 0.180217 -0.064113 -0.376306 0.068247 -0.889039 0.669524 0.294345 0.662684 -0.521853 -0.933195 -1.198221 0.100852 1.185620 -0.431515 -0.242388 2.067503 0.592629 -0.450046 -0.725507 -0.038338 -0.926475 0.507580 -0.427624 -0.439444 0.075759 0.922040 -1.498197 0.477123 -0.088006 0.258602 0.677086 -PE-benchmarks/union-find.cpp__find(int*, int) = 1.472106 -0.562759 -1.477651 3.123808 0.180638 0.261935 0.210537 -0.253077 0.391748 -3.687755 -1.594372 2.301630 0.681491 0.272146 0.050697 1.397079 0.922330 0.693880 -2.971865 0.096167 0.560016 -0.396639 -0.778601 -0.079718 -0.139047 -1.380219 2.022655 0.727327 0.320517 2.413770 -0.835654 1.855501 2.058087 -0.333477 1.018972 1.595021 -0.445013 -0.054538 -1.564231 -0.676549 3.146618 0.826485 0.047618 1.157977 -0.322330 2.729236 0.595080 2.538544 1.101821 -1.032777 1.215967 1.664020 -0.866413 -0.360438 -2.703391 0.608811 1.309396 0.359958 -1.172839 0.913886 -0.650828 0.772650 1.064553 0.665558 2.967151 0.906874 2.282922 2.412571 2.358689 -1.922542 0.604935 0.453779 0.635137 0.227928 2.603461 -1.310835 -2.048759 0.140924 -0.394035 -2.045342 0.220614 -0.275712 3.331278 -2.098671 -0.881385 -0.001661 0.853616 2.794900 -1.376243 0.549107 -2.417297 -0.020545 -0.565848 3.284282 0.708823 0.716902 -0.810772 0.921154 -0.451819 0.585755 0.527063 -2.613297 0.153672 -3.523298 -2.110921 -1.889225 0.584316 0.824509 -2.913126 0.382777 -0.364819 2.064416 -3.710914 -0.076141 0.510339 0.720441 2.730502 -0.093112 -1.000035 0.016396 0.380211 0.973308 0.986292 -0.932001 0.775125 -0.752691 0.321545 0.429240 0.992721 0.553287 -2.559033 -0.693381 0.439570 0.090059 0.392838 1.304200 1.688718 -1.287327 1.333702 -1.336972 2.021158 -3.012727 -0.977141 -1.366294 -1.961760 -1.299266 1.917893 1.617848 2.592624 -0.430390 -0.950193 -0.211002 -3.577062 -3.984145 0.005301 0.054411 -0.403151 1.175074 -0.522039 0.977890 -2.009130 0.851981 1.909478 -1.469076 -1.369097 -0.053749 1.538748 0.238733 -0.856622 -1.013811 -0.459880 -0.311141 0.729656 2.856163 -0.464486 -3.992295 -3.845407 -1.200957 2.206074 -1.417146 0.307290 -1.071866 -1.015071 -1.904531 -0.034960 -1.974832 0.075677 -0.148134 -1.071879 -2.914885 0.877426 -0.450737 -0.526968 0.684331 -2.560407 0.761120 1.487127 0.372210 0.342498 0.523815 -0.031258 -2.188984 -1.574261 0.832207 -1.441258 2.459927 1.528963 -0.240014 -1.156053 -1.295593 -2.158566 1.239126 -2.117580 1.506563 0.521474 -1.019697 0.931682 -2.274584 -0.288460 -1.463056 0.885155 0.211196 -3.117818 3.160852 2.193888 -1.844216 -0.015050 -0.453757 1.482963 -0.021844 1.766368 -1.966836 -1.304556 0.489067 0.258241 -0.043401 -0.402111 0.793535 -0.692755 -0.574488 -2.239166 -0.838480 2.026637 1.259625 -0.320859 -0.171706 1.025254 -1.198442 0.553677 2.209880 1.616584 0.596660 -2.008103 -4.743218 0.760695 -1.523551 -0.708729 0.429194 -1.283167 -0.647375 0.777906 -1.099080 2.275147 -0.633433 -0.828951 2.317697 -3.076005 -2.427610 -1.866400 -1.008340 0.426319 -0.315317 0.889280 -1.405846 0.250177 -0.561379 0.770434 -1.336366 -1.306435 0.931169 1.324636 2.240163 0.088531 -0.086534 2.513012 0.939609 -0.743213 -0.665240 -0.023283 -1.394381 0.505305 -2.984992 -0.544891 0.481678 1.171877 -1.820602 0.603445 -0.536900 0.791520 0.260307 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = 1.792736 -1.302046 -1.510840 3.517116 0.324240 0.673057 0.204492 -0.257466 0.603111 -4.406853 -1.963821 2.353615 0.680577 0.589523 0.327138 1.565114 1.235650 0.328653 -3.622909 -0.024458 0.584968 -0.778404 -0.691483 0.388700 -0.123397 -1.851736 2.309984 1.008503 0.383839 2.725208 -0.971122 2.240712 2.413736 -0.387203 1.129917 1.777043 -0.503329 -0.248086 -1.918097 -0.740632 3.739075 0.758033 -0.088157 1.219785 -0.475846 3.175610 0.425851 3.776749 2.049479 -1.230098 2.128221 0.999251 -1.030731 -0.242103 -3.282281 0.664051 1.512445 0.299351 -1.371159 0.925515 -1.039883 0.955877 1.074437 0.637733 3.523488 1.051628 2.979309 2.658629 2.486626 -2.405048 0.523482 0.837088 0.637894 0.648860 2.558444 -1.767127 -1.947481 -0.626416 -0.133643 -1.848341 -0.026787 -0.692121 3.494259 -2.275138 -1.349330 0.104292 0.591641 3.261713 -1.592343 1.121341 -3.005877 0.009464 0.063147 3.362584 0.687462 0.618864 -0.726949 0.882309 -0.641018 0.873276 0.816344 -2.943628 -0.454790 -3.989327 -2.624579 -2.091362 0.969822 0.978387 -3.500792 0.780335 -0.156303 1.789301 -3.923830 -0.100058 0.571954 1.057077 3.444892 0.753967 -1.200898 -0.455936 0.854054 1.359518 1.372427 -1.013762 1.170362 -1.558541 0.798877 0.619918 1.176342 0.460064 -2.687528 -0.849170 0.696423 0.333950 0.485694 1.357983 2.046004 -1.342581 1.643443 -1.217590 2.342068 -3.541892 -1.281728 -1.769038 -1.872170 -1.489188 3.409995 2.254918 3.228272 0.069388 -1.434186 -0.162515 -3.975946 -4.576412 -0.509222 0.097876 -0.307405 1.390856 -0.634614 1.496505 -2.071826 1.104640 1.580850 -1.694886 -1.658153 -0.046404 0.674730 0.311224 -0.884113 -1.268978 -0.342933 -0.265634 0.227182 3.458106 -0.329844 -4.927513 -4.222931 -1.559089 2.493605 -1.698052 0.471151 -1.109478 -1.043858 -2.436417 -0.059704 -2.186075 -0.195595 -0.074366 -1.837223 -3.353175 1.207085 -0.567561 -0.426520 1.021306 -3.017599 0.817807 1.408028 1.041908 0.706309 0.774043 -0.357833 -2.788046 -2.117008 0.596036 -1.845778 3.322910 1.506443 -0.603998 -0.991147 -1.732646 -2.435321 1.597365 -2.847915 1.701024 0.569829 -1.420203 0.806693 -2.565495 -0.446409 -1.785751 1.096304 0.434970 -3.637084 3.659917 2.594948 -2.141735 -0.195573 -0.844244 1.668035 0.010019 2.143752 -2.024481 -1.255207 0.413516 0.771953 -0.038486 -0.349835 1.020052 -0.674356 -0.963920 -2.697507 -1.275039 2.256623 1.526770 -0.285807 -0.271919 1.452419 -0.794287 0.685553 2.613984 1.658914 0.434198 -2.042468 -6.054095 0.947195 -0.524430 -1.107214 0.859016 -2.218268 -0.751248 0.732469 -1.302299 2.631898 -0.526340 -0.351080 2.741408 -3.195703 -2.668689 -2.269440 -1.288435 0.186112 -0.257151 1.126319 -1.564146 0.234836 -0.658282 0.657494 -1.614872 -1.395525 0.688215 1.436062 2.425258 0.169260 0.228936 2.782538 1.275513 -0.949331 -0.950784 0.105661 -1.774488 0.866783 -3.226845 -0.583612 0.645457 1.147801 -1.984412 0.247174 -0.392261 0.788988 0.022431 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = 4.455581 -0.859085 -4.441456 8.709885 -0.478073 -0.539818 1.195040 1.227918 0.587484 -10.057287 -4.669585 6.534037 2.365859 0.257408 0.541147 3.211414 1.690568 2.407503 -10.061243 0.636144 1.984345 -0.448737 -3.251013 -1.031637 -0.706623 -2.911771 3.700952 2.514993 0.527668 7.169628 -1.958507 4.764092 5.680799 -1.340958 2.247810 4.781559 -1.110968 -0.069745 -3.107865 -1.633035 8.705652 3.142459 -0.678408 3.305911 -1.042384 7.678999 0.995609 6.935774 -0.193444 -3.163233 2.917220 3.956451 -3.053501 -1.316949 -6.772884 1.406841 4.887245 2.575901 -2.875288 3.707759 -2.862512 1.552401 3.607182 1.980426 8.721748 3.637331 6.231811 7.192893 7.405793 -5.311583 2.363655 0.587075 1.239060 -0.643687 6.393167 -3.187360 -5.390963 -1.728528 -0.362821 -7.970911 -0.312868 -0.240289 10.759655 -6.304947 -1.290213 0.528246 3.637932 8.167155 -5.172728 1.547792 -6.305861 -0.803652 -2.290246 10.326341 1.548774 2.401178 -2.057890 3.062872 -0.656121 1.575767 0.551999 -6.835033 -0.085196 -10.446653 -5.561301 -4.439139 0.077153 2.411249 -8.283789 -0.007288 0.212105 5.339056 -11.145026 -0.676207 1.662037 2.157448 7.197038 1.495485 -3.937678 0.576306 0.259932 2.085127 3.335682 -3.121340 2.618814 -2.026369 0.389691 1.739111 2.312278 2.360407 -9.212140 -1.676329 1.872512 -1.413097 1.195949 4.001324 4.494533 -3.238118 3.578085 -5.300142 6.071461 -9.311322 -2.462439 -3.155305 -6.635776 -3.296869 4.508982 5.077613 5.710941 -1.595867 -3.111162 -0.235703 -10.216130 -11.564112 0.785959 0.759797 -0.554067 2.121432 -1.559655 1.645484 -5.688754 2.093722 5.695374 -4.009695 -3.644986 -0.393703 6.872474 1.585122 -2.527589 -2.930574 -0.809564 -0.655689 2.492167 7.934490 -1.441757 -10.332605 -11.341580 -2.845310 6.677094 -2.873261 -0.052526 -3.233909 -3.333138 -5.732682 0.086624 -5.157186 0.744479 -0.297981 -2.635959 -8.600185 2.481611 -0.601764 -2.622782 1.414755 -6.854249 1.673480 5.091220 0.941860 0.274374 1.223696 0.843159 -5.637587 -4.854165 2.562324 -3.412411 7.184662 5.077674 -0.062746 -3.034259 -2.673037 -6.157554 4.556021 -5.388429 4.490140 0.944062 -2.930377 3.865439 -6.695760 -1.955316 -4.926062 2.586781 0.431245 -8.822417 9.837459 5.875810 -5.068820 0.094195 -1.510903 4.003744 0.555428 5.168081 -5.990408 -4.273943 1.828184 0.471510 -0.273697 -1.710132 1.850150 -2.248335 -1.428021 -5.846078 -1.846446 6.186605 3.582167 -0.807651 0.338792 2.269683 -3.867027 1.319273 6.412564 4.753359 0.361339 -5.346442 -12.415963 3.010416 -4.533580 -2.053910 -0.137176 -3.797023 -2.267729 2.435548 -2.665970 5.892439 -0.243198 -3.120955 6.390341 -9.194639 -7.296196 -5.800429 -1.157897 1.488013 -1.020267 2.133302 -3.751657 1.713133 -0.496136 2.627543 -2.977443 -4.615661 0.861355 3.165218 6.217290 -0.538002 -1.485912 7.929800 2.104937 -1.649756 -2.110675 -0.626886 -3.720729 1.024860 -7.467537 -1.313480 1.044674 4.178542 -5.698036 2.818141 -0.845566 1.833329 2.198290 -PE-benchmarks/union-find.cpp__main = 2.383993 -2.147379 -0.432373 3.603033 0.313427 -0.114992 0.907072 1.171621 0.832843 -4.870470 -2.282118 1.774720 0.375940 0.006481 0.789772 0.706875 1.461688 0.500992 -6.457076 0.403107 0.900943 -0.189302 -0.736852 -0.286294 -0.014496 -1.785462 1.542849 2.298578 0.196339 3.294454 -1.251198 1.541182 2.657393 -0.147475 1.448444 2.726037 -0.054237 -0.391268 -1.124432 -0.356652 4.821690 1.475286 -0.756848 1.587965 0.342418 3.901907 0.775831 4.098973 2.370291 -1.471305 2.406084 -0.719721 -1.783434 -0.824011 -3.784252 0.456194 2.988019 1.633671 -1.940605 2.082632 -1.484522 0.767060 1.426620 0.468032 4.172625 1.382359 3.000050 2.607818 3.607481 -2.857292 0.464632 0.799722 1.499922 0.658097 1.628496 -2.695671 -1.912211 -4.559086 0.388094 -3.825226 -0.572175 -0.743776 3.226816 -2.588261 -0.250943 1.115307 0.094941 3.375969 -2.304660 0.516846 -3.530544 -0.112249 0.580096 4.464935 0.061964 0.536542 0.401830 1.322579 -0.022991 1.612788 0.959652 -3.316215 -1.306093 -6.164255 -2.499673 -1.987442 0.257445 0.324419 -3.652521 0.394951 0.893390 0.991954 -4.537345 -0.611824 1.072493 1.255427 1.925547 0.141375 -1.125255 -0.660454 0.347941 1.749976 2.139359 -2.228918 1.236655 -2.122739 0.856613 1.432066 1.269834 0.468364 -2.478352 -1.047838 1.190507 0.545502 0.083736 1.101316 1.328488 -1.277175 1.789548 -2.658952 3.379972 -4.196298 -0.830857 -1.928672 -1.431643 -1.430109 4.537655 2.083291 2.381742 0.588328 -1.975197 0.328730 -3.857115 -5.806704 0.269879 0.291729 0.638732 0.645372 -0.769023 0.901913 -2.025282 0.184575 0.864775 -1.850412 -1.616885 -0.484506 0.012721 0.706600 -1.101025 -1.561454 0.725756 1.370098 0.124346 3.202824 -1.060333 -5.171566 -4.072078 -2.052041 3.110447 -1.381232 -0.150945 -0.900365 -1.149887 -3.110682 0.869611 -2.456057 0.132962 -0.478850 -2.545212 -4.063525 1.268959 -0.894744 0.563336 1.151173 -3.159104 0.564186 0.868574 2.238132 0.490010 1.017615 0.331769 -3.663316 -3.129578 -0.125141 -1.144955 4.425406 0.936620 -0.158208 -1.039330 -1.394113 -2.282009 2.696969 -2.933064 1.753260 0.365274 -2.448596 2.051594 -2.240671 -0.696915 -2.523079 1.561597 0.995851 -3.688702 5.029065 3.281363 -2.922906 -0.959718 -1.685815 1.383765 0.712004 3.277964 -2.476086 -1.780790 0.958655 0.642920 -0.182139 -1.332366 1.184329 -0.277896 -0.433886 -3.467552 -1.884597 2.614332 2.063217 -0.225118 0.359034 1.534621 -0.055239 -0.170569 3.877010 1.193072 0.412122 -2.385235 -6.989026 1.750306 2.110245 -0.383276 0.981793 -3.251160 -1.532473 0.674782 -0.156452 3.048305 2.424261 -0.275170 3.249714 -3.265863 -3.352888 -2.932262 -0.783395 0.490562 -0.757734 1.154763 -1.842471 0.660419 -0.609262 1.023191 -0.900635 -1.385014 -1.007393 1.174179 2.331151 0.421313 -0.681344 3.742101 0.739195 -1.340611 -1.047539 -0.097087 -1.625147 1.433053 -1.898972 -0.763011 -0.053577 1.764692 -2.320881 1.201101 -0.054281 1.213637 0.533352 -PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 3.515249 -3.541408 -5.757971 14.306957 -0.444158 4.051728 1.064962 -1.666853 0.406341 -19.118544 -6.906961 11.082353 3.180260 4.612606 -0.992291 4.152368 3.151203 3.024979 -16.944123 -2.496156 4.356371 0.372817 0.744945 0.813464 -0.195475 -4.287212 12.053462 2.145458 2.233193 10.717693 -1.907977 10.715526 9.973162 -1.266187 1.681846 5.507771 -3.164477 -0.387610 -8.818820 -5.087986 12.632621 1.201005 1.834342 6.043243 -5.292143 11.115090 4.472204 8.562044 8.316474 -5.297625 4.557015 5.892829 -3.092763 -3.380199 -10.532397 0.944136 2.733240 3.879403 -1.738727 2.508343 -0.410551 1.678381 4.069649 1.319679 12.690372 3.896738 11.785262 11.790516 7.501263 -8.580066 3.422291 0.343874 -2.586926 1.065731 10.739010 -8.076017 -7.955347 0.478478 -3.747026 -11.602191 -2.029287 -1.663140 13.353762 -7.370374 -4.566476 -4.167139 3.174517 12.436454 -2.979641 4.177033 -11.493186 -1.739832 0.730464 10.008221 2.722284 1.729935 -3.530723 1.809635 -2.231672 0.866219 4.582358 -10.134201 4.579609 -11.574922 -5.834012 -7.638572 4.095772 7.024859 -11.623404 2.497993 -8.864038 7.293212 -17.560765 -2.748025 0.623444 5.057465 14.162394 0.462975 -4.220487 -0.938310 3.835022 3.248326 4.932716 -5.627824 5.396326 -2.961997 -0.828527 0.640981 3.152775 3.970882 -12.630659 -6.700717 1.119076 0.772448 3.748732 7.015846 9.673687 -0.364044 4.944417 -6.415514 8.161382 -11.209402 -5.424822 -2.601481 -8.078956 -7.167484 11.390326 6.966245 9.551974 -3.753404 -5.957494 0.189268 -13.707888 -15.722747 -0.225247 1.645303 -2.107935 8.340717 -3.047073 6.077924 -10.447456 5.756360 9.067526 -2.927258 -6.414191 0.793132 -1.268821 2.505606 -2.198613 -2.730488 -1.229832 -5.043297 2.625673 15.218875 -0.814958 -17.955964 -19.309738 -3.688480 9.487418 -6.392053 -0.723815 -6.002063 -4.887783 -7.046515 -2.524550 -8.414266 -1.853787 1.517365 -7.208283 -13.028188 5.726526 -1.759596 -2.621923 5.450717 -9.872007 1.892197 7.087505 5.046540 2.129427 0.480085 -1.416438 -7.303089 -5.351366 4.323809 -8.831288 8.893047 3.496242 -1.701609 -7.728963 -6.015821 -7.426272 5.148687 -5.044593 7.854896 1.221940 -2.488286 1.658841 -10.354762 2.939450 -5.341252 2.250776 2.181397 -19.589433 11.987102 5.515960 -5.264559 1.060211 0.263069 5.507228 -1.246226 2.254075 -7.864485 -7.879200 1.758933 2.083932 0.900348 -4.047478 0.960045 -2.648112 -5.942244 -9.659489 -4.503705 9.436362 2.562860 -1.931833 -1.264074 7.449968 -6.651714 1.811459 9.450069 8.541692 1.770954 -5.805554 -19.909901 3.426638 -1.003682 -2.579102 -0.711019 -7.985678 -1.577314 6.294742 -7.270877 7.956977 -3.925199 -5.551813 9.363323 -13.113955 -8.418581 -8.960796 -4.988999 2.744109 2.127019 0.890738 -4.384775 2.769080 -0.074615 0.979439 -5.705648 -7.624702 7.264737 6.707223 10.513505 -2.120296 3.608305 10.198816 4.389793 -1.952410 -2.325370 0.755928 -7.776875 0.575350 -16.112824 -0.571380 5.539304 4.857906 -7.673757 -0.459292 -3.830075 0.877494 -0.204043 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 1.155964 -1.230636 -1.472614 3.881445 -0.012077 1.163327 0.422792 -0.360277 0.269131 -5.239795 -2.122203 2.565960 0.847833 1.197474 0.053146 1.185793 0.918425 0.665999 -4.301744 -0.687251 1.100990 -0.236744 0.076303 0.464675 -0.177410 -1.514337 2.671948 0.875068 0.508165 3.035743 -0.522722 2.788812 2.801039 -0.326336 0.363917 1.703803 -0.516146 -0.110262 -2.290487 -1.114606 3.597649 0.353084 0.162882 1.488028 -1.367460 3.212965 0.795868 3.179335 2.053765 -1.478504 1.866280 0.759745 -0.948404 -0.739453 -3.011991 0.391769 1.221986 1.021877 -0.627423 0.890984 -0.677333 0.612266 1.094596 0.256745 3.512103 1.364810 3.248657 3.118948 2.227392 -2.663226 0.736523 0.476658 -0.536658 0.375216 2.538993 -2.039688 -1.919943 -0.593351 -0.646167 -2.703545 -0.692007 -0.616951 3.747035 -2.127081 -1.515537 -0.542723 0.705873 3.420525 -1.133743 1.445461 -3.246943 -0.336261 0.429279 2.897827 0.834617 0.423280 -0.968859 0.539597 -0.503992 0.522009 1.131115 -2.716426 0.200863 -3.539622 -2.061210 -2.039187 1.150544 1.743067 -3.468492 0.649451 -1.380173 1.782121 -4.632082 -0.583035 0.427524 1.621021 3.925388 0.802693 -1.454598 -0.366573 1.284819 0.941841 1.604958 -1.444167 1.591393 -1.353349 0.221005 0.271202 0.882758 0.824598 -3.374118 -1.647718 0.452751 0.155606 1.012481 1.714497 2.525094 -0.334115 1.515187 -1.630146 2.370976 -3.457262 -1.385840 -0.965367 -2.327759 -1.825695 3.885110 2.298930 2.949276 -0.571381 -1.917452 -0.074509 -3.800885 -4.670190 -0.359255 0.517501 -0.225277 1.990844 -0.867949 1.714611 -2.649361 1.636559 2.092226 -1.026739 -1.687077 0.335246 -0.094358 0.590494 -0.743306 -1.101529 -0.222715 -1.009778 0.323512 4.098625 -0.156939 -4.859353 -5.013359 -1.307479 2.659911 -1.735894 -0.032804 -1.531693 -1.255716 -2.444343 -0.482019 -2.181618 -0.468588 0.530107 -2.368216 -3.693211 1.624214 -0.486668 -0.829525 1.605646 -2.876225 0.486153 1.799368 1.410531 0.817669 0.375894 -0.454313 -2.242633 -1.878435 0.796910 -2.406050 2.918871 1.229627 -0.512561 -1.670996 -1.784915 -2.263257 1.704595 -1.905459 1.994816 0.256821 -0.892212 0.569472 -2.857594 0.239357 -1.770005 0.801946 0.699764 -4.945305 3.447932 1.890503 -1.582649 -0.014535 -0.316478 1.477317 -0.131359 1.245288 -2.150511 -1.887941 0.525280 0.765832 0.163296 -0.878869 0.525040 -0.744993 -1.572306 -2.701591 -1.325628 2.485457 1.088593 -0.497909 -0.186660 2.117715 -1.214222 0.609949 2.619099 2.150901 0.075486 -1.560468 -5.856197 1.122393 -0.063311 -1.051512 0.194277 -2.608161 -0.518147 1.603179 -1.837180 2.361165 -0.706777 -1.060337 2.777664 -3.342369 -2.443882 -2.397919 -1.343340 0.583652 0.240867 0.574227 -1.261882 0.742732 -0.026092 0.186188 -1.462273 -2.071599 1.282996 1.602094 2.873630 -0.510480 0.905561 2.927586 1.229453 -0.705891 -0.818274 0.165870 -2.041149 0.478842 -4.046390 -0.221034 1.321965 1.313632 -2.071323 -0.053028 -0.845035 0.087544 0.130261 -PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = 5.049750 -2.684589 -7.155595 15.533679 -0.377177 4.079489 1.463861 -1.687805 0.510660 -21.186379 -7.691145 13.516975 3.774099 4.698166 -1.438855 5.743335 3.222725 3.649642 -17.234972 -2.375255 4.277335 0.074986 0.242523 0.534501 -0.376004 -5.038936 12.614881 1.829289 2.397995 12.013973 -2.161626 11.726379 11.159179 -1.335917 1.910902 6.372887 -3.308099 -0.449693 -9.575861 -6.029996 13.976351 1.888671 2.013617 6.477438 -6.035777 12.504995 4.630609 10.362358 7.254328 -5.730028 4.375747 6.463731 -4.207210 -2.953704 -11.605317 1.386801 2.677646 3.898998 -2.100940 3.030550 -0.887168 2.191595 4.716093 1.700090 13.870127 4.600901 12.373952 13.176661 8.816298 -9.681645 3.913614 0.738923 -2.398246 1.071344 12.749591 -8.349397 -8.887688 2.997027 -3.416827 -12.784316 -2.178285 -1.758177 16.920252 -8.777115 -5.165081 -4.054830 4.319203 13.997113 -3.947508 4.638818 -12.627481 -1.418701 -0.559856 12.153330 3.266127 2.549787 -4.713682 2.254618 -2.303885 0.913043 4.299235 -11.400649 4.411550 -12.721724 -6.634441 -8.802155 4.015306 7.835687 -13.143414 2.333100 -8.741896 10.711872 -19.782963 -2.580718 1.324214 5.171724 16.577899 2.082634 -4.658353 -0.611358 3.816417 3.474949 5.322623 -6.034798 5.561789 -2.016180 -0.931594 0.631619 3.468189 4.368890 -15.647536 -6.901972 1.838623 0.159955 4.185063 8.291977 11.064457 -1.361425 5.560314 -7.020685 8.764585 -12.712332 -6.110749 -2.948242 -10.178844 -7.884878 12.035855 8.464181 11.184724 -4.100488 -5.497517 -0.384590 -15.781706 -17.844530 -0.340752 1.408269 -2.323075 9.027782 -3.087743 6.348026 -11.667667 6.640948 10.188653 -3.768241 -7.255894 0.979273 1.784769 2.425562 -2.783297 -3.223809 -1.906917 -5.319112 3.315205 16.851759 -1.009930 -20.465066 -21.647129 -4.479364 10.706165 -6.963351 -0.335378 -6.782196 -5.405887 -7.608602 -2.995025 -9.448230 -1.397683 1.787290 -7.395831 -14.727256 6.165799 -1.785147 -4.388909 5.638268 -11.200064 2.236774 8.494697 4.320446 2.028201 0.837086 -1.562291 -8.391471 -6.151100 5.087616 -9.710463 10.108623 5.712772 -1.790420 -8.484726 -6.726801 -8.986109 5.732201 -7.172054 8.779923 0.965719 -2.012054 2.450765 -11.912467 2.801451 -6.116309 3.035301 1.871146 -22.058872 13.834446 7.080655 -6.073137 1.194997 0.199396 6.212500 -0.845215 3.503734 -9.018618 -8.568801 2.054388 1.914426 0.724390 -3.507396 1.489024 -3.589953 -6.075853 -10.628282 -4.090337 10.372476 3.296808 -2.197877 -1.389672 7.797271 -7.415549 3.087765 10.527462 9.585629 1.662003 -7.594068 -23.106695 3.713590 -3.180969 -3.413843 -0.353755 -8.208934 -1.752014 7.018261 -9.191442 9.226349 -5.837948 -6.179242 10.484479 -15.338240 -9.828638 -9.672897 -5.368103 2.939472 2.040053 1.456939 -4.986337 2.932975 -0.184779 1.310602 -6.576278 -8.520883 7.903044 7.559632 12.384127 -1.826033 3.369362 11.570932 4.863194 -1.857105 -2.692704 0.551930 -8.035389 0.338759 -18.525152 -0.825246 5.884353 5.485075 -8.793311 0.206214 -3.597920 0.878374 0.064367 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 1.061082 -1.534747 -0.642930 2.402852 0.395683 0.509988 0.149479 -0.212635 0.470917 -3.304359 -1.120681 2.108388 0.223255 0.418675 0.034749 0.862510 0.963322 0.158822 -2.665000 -0.082042 0.154854 -0.471844 -0.353708 0.144296 -0.014541 -1.116689 2.351067 0.722211 0.285973 1.572803 -0.627947 1.466582 1.612640 -0.000651 0.926460 1.095993 -0.189205 -0.237712 -1.524234 -0.744507 2.668119 0.548654 -0.020878 1.018634 -0.225600 1.948019 0.893673 2.401755 2.035910 -0.654105 1.127981 0.164428 -0.724547 -0.411234 -2.482881 0.299455 0.547857 0.082841 -0.905409 0.560426 -0.570894 0.518586 0.559772 0.388126 2.592263 0.134559 2.384060 1.837326 1.404985 -1.556079 0.138660 0.621235 0.635232 0.827953 1.965256 -1.332958 -1.472566 -0.599157 -0.168208 -1.176662 -0.065237 -0.503110 2.152609 -1.193102 -0.943905 -0.124179 -0.019639 2.022352 -0.825882 0.536247 -2.225101 0.026342 0.500023 2.108098 0.534634 0.335426 -0.155842 0.484311 -0.299690 0.693232 0.989266 -1.928518 0.302846 -2.923562 -1.179054 -1.394749 0.626133 0.530028 -1.913342 0.549457 -0.528050 1.337358 -2.492986 -0.267407 0.347962 0.384501 2.943804 -0.391914 -0.139711 -0.237957 0.589120 0.861333 0.921496 -0.958949 0.603918 -0.693975 0.816482 0.272253 0.826146 0.422020 -1.723740 -0.707344 0.547542 0.688607 0.229545 0.766791 1.303809 -0.731666 0.947080 -0.733958 1.484311 -2.003500 -0.623117 -0.963695 -0.970040 -0.969793 3.277370 1.124024 2.310601 0.063550 -0.839289 0.004746 -2.366016 -3.554151 0.039903 0.171853 -0.363058 1.022285 -0.342678 0.982934 -1.412691 0.543603 1.061662 -0.943701 -1.029780 0.012199 -1.002872 0.202949 -0.475239 -0.620528 -0.017998 0.182173 0.386947 2.408218 -0.375773 -4.374240 -2.643641 -0.962715 1.461575 -1.115418 0.108252 -0.462237 -0.808923 -1.440914 -0.026746 -1.492663 0.244623 -0.174344 -1.504572 -2.236103 0.628208 -0.489085 0.406192 0.768435 -1.800440 0.491354 0.338720 0.905008 0.331618 0.536416 -0.127357 -1.852599 -1.365568 0.370890 -1.177200 2.351692 0.261580 -0.394468 -0.859049 -1.024204 -1.571525 0.953378 -1.905532 1.072850 0.353675 -1.298287 0.426603 -1.452603 0.089455 -1.009100 0.763755 0.454889 -2.789675 2.408850 1.814757 -1.377682 -0.281341 -0.310701 0.822737 0.005621 1.365758 -1.457213 -0.907303 0.280257 0.424299 0.023731 -0.242435 0.578986 -0.218832 -0.647511 -2.116836 -1.280776 1.282114 0.791071 -0.120110 -0.256293 0.971128 -0.407327 -0.013605 2.095657 1.039168 0.706494 -1.576752 -4.525576 0.617367 0.587570 -0.662326 0.765028 -1.644239 -0.545302 0.433831 -1.208309 1.531058 -0.287771 -0.446664 1.681290 -2.161012 -1.509560 -1.441481 -1.140990 0.172625 -0.089869 0.977217 -0.962197 0.092669 -0.708783 0.318491 -1.202885 -0.466216 0.984715 0.961230 1.359387 0.312909 0.312950 1.635255 0.653544 -0.684549 -0.509159 0.054597 -1.165599 0.915958 -2.635960 -0.414088 0.305055 0.705144 -1.095739 0.003623 -0.178218 0.714631 -0.152337 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 1.611218 -0.367716 -1.036121 3.466631 0.028733 0.323042 0.814377 0.598337 0.080554 -5.521228 -2.381136 2.382326 0.732914 0.532224 0.040667 1.083068 0.859556 1.567174 -5.134196 -0.236358 1.496404 0.626217 0.114913 -0.490851 -0.000870 -1.153175 1.238533 0.770013 0.610936 3.411470 -0.906371 2.116603 2.971962 -0.164572 0.457713 2.237570 -0.155800 -0.083518 -1.186248 -1.121232 4.077587 0.887076 0.134031 1.778725 -0.732148 3.464610 0.556871 2.772054 0.684450 -1.625861 1.234964 -0.190812 -1.455930 -0.609456 -2.873834 0.753795 2.055230 2.056031 -0.973167 1.563369 -0.461921 0.604276 1.317644 -0.378025 3.332373 1.940128 2.291378 3.089147 3.154559 -2.533427 0.805739 0.152585 -0.047151 -0.074610 2.321230 -2.241428 -1.599148 -1.752309 -0.613469 -4.454258 -0.476313 -0.402800 4.939633 -2.721832 -0.228683 0.446935 0.986760 3.326684 -1.286737 0.542116 -3.242956 -0.164011 -0.311313 3.840911 0.550464 0.568370 -0.975158 0.894019 -0.013979 0.637231 0.745534 -2.642139 -0.615378 -4.575162 -1.908661 -1.974743 0.494677 1.483505 -3.552829 -0.031594 -0.331232 2.565004 -5.469968 -0.590762 0.854131 1.567499 2.455800 0.597714 -1.909135 -0.051102 0.222117 0.696178 1.273032 -2.049064 0.956991 -1.062476 -0.585776 0.338439 0.917559 0.678686 -3.949926 -1.653053 0.292640 -0.355517 0.624544 1.729082 2.081879 -0.749066 1.566324 -2.494520 2.495495 -3.694180 -1.077657 -0.790683 -2.953358 -1.753394 3.619185 1.995526 2.157904 -0.572238 -1.635666 -0.502379 -3.833261 -4.708821 0.528038 0.237979 0.666575 1.605965 -0.779318 0.882872 -2.656916 0.919500 1.794319 -1.211384 -1.412781 -0.043749 2.069410 0.146531 -0.929619 -1.616990 -0.039301 0.295242 0.344547 3.192530 -0.908787 -3.572312 -5.018934 -1.621738 2.972411 -1.532762 0.029341 -1.572400 -0.820545 -2.358345 -0.049492 -2.440118 0.041784 0.237542 -2.134889 -4.056665 1.489705 -0.638384 -1.088343 1.399814 -2.756288 0.536298 1.962026 1.455136 0.360681 0.152551 0.105087 -2.807157 -2.358255 0.457272 -1.886378 2.653559 1.813004 0.040501 -2.248714 -1.438410 -2.371113 2.179655 -1.809647 1.843944 -0.140065 -0.697879 1.619531 -2.731319 0.262232 -2.474500 1.010484 0.705525 -5.298512 4.019946 1.898426 -1.917675 -0.189790 -0.943248 1.414242 0.468741 1.908613 -2.275273 -2.171110 1.024342 -0.242848 0.014027 -1.543601 0.797851 -0.916535 -0.418266 -2.942436 -1.085044 2.605787 1.473234 -0.645522 0.581136 2.032848 -0.961673 0.613251 3.147602 2.126949 -0.072286 -2.090020 -5.801385 1.339219 0.202264 -0.135758 -0.172229 -2.163821 -0.912515 1.616348 -1.056085 2.686281 0.523780 -1.044396 2.880337 -3.750542 -2.901882 -1.899477 -0.580969 1.169230 -0.398944 0.318536 -1.363696 0.838805 0.229943 0.614025 -0.501220 -2.441794 0.021751 1.399586 3.382692 -0.139733 0.068839 3.448311 0.786393 -0.939869 -0.248445 -0.174215 -0.977282 0.156545 -3.321505 -0.327216 0.803410 1.441142 -2.364565 1.286912 -0.822614 0.050646 0.721668 -PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 0.840550 -1.166037 -0.237837 1.035731 0.254550 -0.146928 0.127881 0.090806 0.382740 -1.365010 -0.430871 0.476632 0.051199 -0.154424 0.294684 0.416614 0.637839 -0.124229 -1.270196 0.345562 -0.043502 -0.293371 -0.691707 0.226970 -0.028863 -0.746701 0.602061 0.615584 -0.028235 0.769515 -0.489603 0.398286 0.705751 -0.239550 0.734872 0.776099 0.282887 -0.080431 -0.327778 0.277568 1.662879 0.339377 -0.149230 0.409850 0.480390 1.092702 0.107913 1.980057 0.968865 -0.335846 1.175147 -0.366366 -0.326494 -0.054254 -1.442491 0.269519 0.903638 0.131335 -0.951868 0.562044 -0.501329 0.334737 0.367229 0.538688 1.447813 0.349497 1.012236 0.694043 1.126010 -0.623014 0.007091 0.466903 0.862058 0.405078 0.725137 -0.783201 -0.563541 -1.262304 0.195373 -0.204526 0.132374 -0.349924 0.700380 -0.750485 -0.239078 0.497876 -0.113203 0.915947 -0.727185 0.113724 -1.141990 0.057484 0.371120 1.388478 -0.092097 0.288748 0.042452 0.486315 -0.123423 0.543741 0.355999 -1.154905 -0.557301 -1.862666 -1.166874 -0.607023 -0.031388 -0.209170 -1.265831 0.140660 0.338533 0.158679 -1.123994 0.125875 0.216482 0.124983 1.312280 0.177840 -0.285990 -0.287684 0.168982 0.603203 0.405422 -0.303754 0.281354 -1.143252 0.743143 0.549682 0.432704 -0.080726 -0.603120 0.070276 0.329710 0.464710 -0.248845 0.155133 0.241059 -0.924457 0.594860 -0.503473 0.874194 -1.311028 -0.518625 -0.918590 -0.540107 -0.243893 1.989711 0.474349 1.250327 0.365114 -0.850873 0.003390 -1.373330 -2.090796 -0.110229 -0.235447 0.042837 0.162047 -0.155816 0.177914 -0.383913 -0.085897 0.280145 -0.734125 -0.416843 -0.307317 -0.437954 0.029101 -0.339298 -0.485186 0.105258 0.701173 0.162143 0.868744 -0.320974 -2.030828 -1.050043 -0.585489 0.722820 -0.367707 0.289368 -0.001500 -0.314060 -1.335347 0.334122 -0.706986 0.099322 -0.510426 -0.719191 -1.031029 0.258493 -0.327591 0.503350 0.039218 -0.950788 0.302924 -0.163810 0.676865 0.257617 0.405674 -0.045741 -1.411057 -1.224347 -0.020537 -0.189125 1.685336 0.099116 -0.080543 0.220496 -0.436610 -0.943895 0.632334 -1.547237 0.305365 0.613982 -1.021132 0.576760 -0.608648 -0.493446 -0.749311 0.556624 0.166239 -0.505485 1.617934 1.121299 -1.102055 -0.388461 -0.512710 0.559230 0.226183 1.206268 -0.529518 -0.139981 0.280326 0.403360 -0.099501 -0.256904 0.517751 -0.029320 0.183820 -1.195554 -0.727247 0.679291 0.787397 -0.065663 -0.214698 0.116867 -0.053812 -0.365071 1.255359 0.197501 0.434270 -0.730416 -2.229939 0.322502 0.349628 -0.303777 0.551826 -1.130401 -0.347361 -0.079426 -0.091560 1.004322 0.514719 0.290952 0.927090 -1.114555 -1.058600 -0.687520 -0.415813 -0.084873 -0.350171 0.618803 -0.678242 0.009343 -0.432796 0.524328 -0.454444 -0.177343 -0.259001 0.272828 0.316723 0.191453 -0.302835 0.949370 0.222955 -0.370258 -0.333549 0.130482 -0.293984 0.744779 -0.653186 -0.432177 -0.361072 0.412686 -0.601937 0.449108 -0.106148 0.684046 0.106274 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = 0.611688 -0.388006 -0.271447 0.854896 0.154585 0.039660 0.190289 0.234465 -0.071325 -1.491580 -0.771570 0.915137 0.004346 -0.056739 0.106302 0.303425 0.422300 0.262331 -1.922297 0.090617 0.279486 -0.117376 -0.206093 -0.165837 0.072339 -0.520945 0.538879 0.565171 0.031052 0.862833 -0.407170 0.544255 0.653079 0.276488 0.488960 0.612412 -0.398881 -0.317127 -0.223437 -0.355664 1.369282 0.519543 -0.190919 0.413754 0.148075 1.019578 0.147886 0.882130 0.690274 -0.285097 0.406095 0.118667 -0.573687 -0.032955 -1.170122 0.028758 0.358272 0.225922 -0.331848 0.429553 -0.427884 0.262474 0.283971 -0.213612 1.562670 0.130857 0.931068 0.617843 0.835138 -0.654081 0.137715 0.193110 0.408363 0.072063 0.560781 -0.416661 -0.466222 -1.275312 -0.074213 -1.702086 -0.098633 -0.186078 1.445874 -0.568491 -0.095082 0.074604 0.265445 0.932048 -0.521216 0.039055 -1.108129 0.104317 0.125787 1.401993 0.236608 0.205900 -0.099235 0.226073 -0.014121 0.351275 0.163348 -0.807095 -0.249156 -1.961411 -0.437943 -0.574077 0.146741 0.013146 -1.180995 0.297338 0.455786 1.150162 -1.438973 -0.265098 0.249193 0.140461 0.384660 -0.014992 -0.529206 -0.028170 0.025846 0.615129 0.483727 -0.494904 0.217177 -0.490261 0.217209 0.075702 0.492078 0.194448 -1.315748 -0.426672 0.449032 0.132002 0.097656 0.391406 0.406193 -0.065988 0.411628 -0.744286 0.805774 -1.172104 0.118712 -0.528112 -0.477565 -0.406197 1.219965 1.255066 0.782720 0.250231 -0.126151 0.034253 -1.280819 -1.911662 0.153820 -0.070134 0.142452 0.077427 -0.118843 0.266601 -0.638859 0.085907 0.499690 -0.529785 -0.425018 -0.226682 0.581816 0.173027 -0.314955 -0.433174 -0.009765 0.401743 -0.041740 0.667724 -0.350319 -1.668736 -1.348028 -0.637205 0.773492 -0.511039 -0.078045 -0.386798 -0.161286 -0.536334 0.149947 -0.596980 0.094353 -0.033203 -0.749165 -1.011278 0.205808 -0.203615 -0.094231 0.204577 -0.745598 0.179426 0.626740 0.396080 0.138638 0.247667 0.069630 -0.688157 -0.699310 0.035063 -0.384967 0.935249 0.680947 -0.101712 -0.918767 -0.371591 -0.978551 0.830619 -1.033646 0.523645 -0.050668 -0.782611 0.462310 -0.725018 -0.040857 -0.244491 0.416621 0.058252 -1.760653 1.214065 0.970667 -0.840392 -0.268082 -0.634930 0.415430 0.180516 0.855493 -0.659610 -0.277177 0.095593 0.080619 -0.037953 -0.131044 0.397802 -0.091549 -0.160782 -1.086780 -0.648970 0.804944 0.474072 -0.084194 0.098159 0.363680 0.017002 0.152300 0.998292 0.343084 0.078292 -0.716225 -2.318232 0.255009 0.309698 -0.045169 0.413943 -0.680707 -0.505420 0.017886 -0.644676 0.887191 0.089462 -0.564847 0.775495 -0.898989 -0.772352 -0.784914 -0.208365 0.085826 -0.230257 0.594616 -0.361830 -0.033928 -0.163003 0.285928 -0.195189 -0.496443 -0.176632 0.385450 0.746891 0.436075 -0.255896 0.877063 0.256955 -0.379541 -0.296042 -0.076541 -0.392762 0.464122 -1.082143 -0.274591 0.004415 0.342445 -0.569603 0.292630 0.128964 0.427136 0.086389 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = 0.793010 -0.420714 -0.363100 1.110340 0.143541 -0.155879 0.374343 0.301980 -0.045177 -1.586527 -0.684916 2.062878 -0.077723 -0.256191 -0.279122 0.164860 0.520346 0.425883 -2.220806 0.240752 0.074709 -0.032346 -0.496304 -0.436474 0.051030 -0.477886 1.147714 0.974990 0.046368 1.025095 -0.389098 0.348667 0.734555 0.335666 0.690506 0.916538 -0.301620 -0.307742 -0.477656 -0.705932 1.645678 0.685838 -0.045689 0.822213 0.354752 1.297607 0.610141 0.964224 1.541725 -0.277109 0.206679 0.743759 -0.816288 -0.415708 -1.472659 -0.076936 0.011350 0.059854 -0.553509 0.585888 -0.297545 0.116166 0.405420 -0.007971 1.696955 0.059511 0.893386 0.779704 1.147725 -0.858986 0.048774 0.360304 0.887637 0.367547 0.887243 -0.590117 -1.091322 -1.047796 -0.166392 -2.113915 -0.248393 -0.177303 1.834500 -0.724087 -0.032133 -0.125519 0.270306 0.958724 -0.655661 -0.252578 -1.393707 0.007186 0.101752 1.681217 0.278746 0.294253 0.042227 0.217831 -0.002886 0.545646 0.104120 -1.203323 0.240533 -2.434344 -0.233298 -0.853589 -0.084191 -0.169484 -1.096604 0.169807 0.251715 1.735316 -1.757868 -0.518338 0.442640 -0.208704 0.384787 -0.174131 -0.228423 0.190907 0.071200 0.592532 0.738111 -0.654466 0.053440 0.169808 0.140457 0.057473 0.474602 0.449385 -1.696563 -0.641517 0.675560 0.437790 0.070742 0.234604 0.162993 -0.145153 0.435739 -0.945492 1.060738 -1.214375 0.053661 -0.523965 -0.347097 -0.567813 1.297037 1.295779 1.222752 0.031372 0.187970 0.070248 -1.368462 -2.342945 0.605940 -0.252784 -0.079690 -0.010303 -0.070490 0.211779 -0.858770 -0.101526 0.706181 -0.535075 -0.525262 -0.187995 0.376796 0.238551 -0.292170 -0.417182 0.005215 0.290294 0.514968 0.731793 -0.649513 -2.930752 -1.382760 -0.659979 0.962827 -0.520112 -0.335498 -0.291653 -0.556171 -0.126228 0.069463 -0.836804 0.266487 -0.292594 -0.715521 -1.212424 0.317226 -0.317971 0.027831 0.195716 -0.793741 0.199752 0.564971 0.475778 -0.006379 0.344860 0.195401 -0.885491 -0.571414 0.170612 -0.258901 1.167011 0.848619 0.138557 -1.341146 -0.358290 -1.176201 0.804641 -1.508964 0.699314 0.133483 -1.105079 0.844694 -0.815725 0.270366 -0.111042 0.645581 0.249718 -2.586419 1.482128 1.467286 -1.042355 -0.336092 -0.333943 0.171343 0.403319 1.053712 -1.069902 -0.626383 0.278304 0.009070 -0.017239 -0.101960 0.394892 0.062567 -0.014413 -1.362040 -0.817090 1.014497 0.486778 -0.061141 -0.148347 0.229672 -0.196170 0.052948 1.400170 0.362902 0.544220 -1.120627 -3.009374 0.436488 0.516313 0.024173 0.833287 -0.731579 -0.641133 0.173002 -1.109669 1.094410 -0.592006 -1.070369 0.925050 -1.208076 -1.001831 -1.045947 -0.453035 0.229542 -0.171118 1.091061 -0.472424 -0.029407 -0.464837 0.276265 -0.501527 -0.104210 0.228379 0.619914 0.664810 0.762884 -0.304172 1.121501 0.025618 -0.506660 -0.297154 -0.151976 -0.515375 0.427063 -1.695652 -0.250317 -0.105442 0.652234 -0.671606 0.446487 0.220349 0.748477 0.085592 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = 4.443797 -4.004424 -2.981262 4.706825 0.664145 -1.084814 0.659851 0.819920 0.865318 -7.193570 -2.123395 8.035408 0.478850 -1.342818 -0.684160 2.187524 2.503186 0.967156 -7.605687 1.552988 -0.401968 -1.070160 -4.412104 -0.790965 -0.231874 -2.323450 5.166912 2.520425 0.027827 3.699750 -1.812207 2.069728 2.920340 -0.225343 3.318866 3.393559 -0.988942 -1.048014 -1.788454 -1.650401 7.770699 2.862916 0.026909 2.990847 1.686318 4.937224 1.184426 8.039836 5.897831 -1.025010 3.403308 2.907161 -2.769004 -0.624617 -7.348261 0.432070 1.230064 -0.726881 -2.983822 2.316439 -1.300095 1.258473 2.021004 1.874238 8.262190 0.984364 4.981110 3.581181 5.105265 -2.588670 0.716101 1.363026 3.850491 1.482091 5.245640 -3.298427 -4.226984 -2.762870 -0.104465 -4.883393 0.761023 -1.279146 7.249003 -3.450974 -0.597698 -0.264072 2.142263 4.529990 -3.182193 -0.422189 -5.963489 0.221076 -0.090886 7.886474 0.439541 2.502624 -0.922754 1.435392 -0.991280 1.600477 0.947439 -5.560227 0.634029 -9.477262 -2.976526 -3.585854 -0.908253 -0.568760 -5.508693 0.867809 0.014228 5.054257 -6.722122 -0.833929 0.865105 -1.336508 6.587949 1.295364 -1.483025 0.261822 0.007323 2.544333 1.330090 -1.490969 0.292919 -2.329132 2.396590 1.046526 1.955079 1.359417 -7.351051 -0.351062 2.413529 1.879838 -0.067380 1.694114 1.403472 -3.077847 1.838985 -3.016340 3.563597 -5.717925 -2.092209 -3.184068 -3.033135 -1.938074 7.337757 4.240732 6.262008 0.287786 -0.522494 -0.254878 -7.101725 -10.627810 1.016796 -1.763058 -1.162958 0.321976 -0.190971 0.345994 -3.168711 -0.212578 3.431324 -3.136973 -2.264928 -1.393627 1.665071 0.505576 -1.300406 -1.375811 -0.792241 1.801045 2.689779 3.747924 -1.907057 -12.889482 -6.417552 -2.058284 3.610831 -2.133960 0.041202 -0.953442 -2.249178 -3.314096 -0.210548 -3.128422 1.063279 -1.889307 -2.358952 -4.755117 1.196433 -1.013835 0.694672 -0.262463 -4.065234 1.631196 1.922484 2.394805 -0.095862 1.606854 0.137198 -5.785220 -4.479195 1.566576 -0.960845 6.826691 3.148958 0.154346 -2.423612 -1.479907 -5.492640 2.558968 -8.595700 2.646606 2.124554 -4.812803 2.858180 -4.073945 -0.650449 -1.834908 2.614531 -0.161041 -6.922212 7.938782 5.322055 -4.910334 -0.825813 -1.560326 2.308957 0.909261 4.360763 -3.663086 -2.028228 1.305112 0.658452 -0.424911 -0.136307 1.661125 -0.227998 0.529138 -6.310131 -3.461285 4.021565 2.468211 -0.492131 -1.488724 -0.217741 -2.363518 -0.465034 6.268473 1.837433 2.481708 -4.622322 -12.754488 1.083542 -0.065622 -1.040697 2.249608 -3.863166 -1.988996 0.221877 -3.865618 4.376572 -2.309460 -2.276976 3.613955 -6.409310 -4.704320 -3.741200 -1.646305 0.582749 -0.587225 3.771952 -2.602967 -0.304059 -2.193303 2.572092 -2.805190 -1.289339 1.338688 2.665757 2.528506 1.826621 -2.002469 4.352182 0.863450 -1.188737 -1.352047 -0.436157 -1.863301 2.742174 -6.775082 -1.307695 -0.800896 2.486743 -3.109849 2.468418 0.655888 3.656571 0.369770 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = 8.100060 -4.311544 -3.940309 7.511798 1.427957 -2.885821 1.291719 2.478934 2.188969 -10.439819 -3.713221 11.105383 0.728956 -3.057664 -0.496389 3.562676 4.429073 2.433150 -12.041189 3.523419 -0.118421 -0.700299 -6.696262 -1.892444 -0.100697 -3.588430 5.157436 3.735427 0.350860 6.596861 -3.865224 2.719561 5.324370 -0.895726 5.767362 6.402806 -0.615627 -1.732862 -1.368063 -1.931075 12.345894 4.733437 0.354245 5.267331 3.702232 8.569559 1.165581 12.538040 7.021239 -2.090835 4.883773 2.636317 -4.655548 -0.528225 -10.830634 1.880533 3.864637 0.010195 -6.120779 4.481759 -1.758879 2.304037 3.768397 2.440597 11.353592 2.976201 5.670594 6.141318 10.074483 -4.002403 1.323658 1.919548 7.320618 2.444747 8.113931 -5.530959 -6.018543 -4.503129 0.054784 -7.913613 2.171818 -2.429057 11.941412 -6.937490 0.676595 1.594265 3.072053 7.771465 -5.407673 -1.333112 -8.561721 0.583265 -0.662955 12.789253 -0.368873 4.051636 -1.518466 2.918497 -1.787106 2.817022 0.896776 -9.430341 -1.098198 -14.923807 -6.071227 -5.773109 -2.268242 -1.375357 -9.632679 0.916666 0.970456 7.588853 -11.719258 -0.995189 1.646462 -1.943099 7.834978 2.415478 -2.702190 -0.309473 -1.036399 4.250704 1.273303 -3.144585 -0.149871 -3.952758 1.667964 2.664480 3.320696 1.328369 -10.140483 -0.128817 3.254361 2.273725 -0.971408 2.590533 1.901277 -6.647401 3.424795 -5.386931 6.052326 -9.550445 -4.431319 -5.822269 -5.137493 -3.107524 10.497354 5.084227 9.569073 1.112108 -1.196092 -1.102417 -11.536899 -15.074612 2.059552 -3.924546 -0.603813 0.577278 -0.304783 -0.352317 -4.563444 -1.389859 3.918177 -5.887764 -3.619409 -2.975449 4.818205 -0.152608 -2.184693 -3.427747 -0.918847 4.164622 3.718652 5.212847 -3.840672 -17.375421 -9.874115 -3.922236 6.421449 -3.306454 1.097488 -1.468970 -2.742400 -4.766833 0.397509 -5.711309 1.614322 -3.947534 -2.844548 -8.497954 1.988315 -2.130218 1.406440 -0.597374 -6.986761 3.325762 2.677029 4.296402 -0.531599 2.581406 0.252450 -9.954929 -7.155084 1.515566 -0.827629 10.623571 5.029238 0.831358 -3.372947 -2.517654 -8.416645 4.788243 -13.029890 3.985060 3.898691 -6.682015 5.898415 -6.147120 -1.606644 -5.099982 4.634181 -0.100730 -10.529658 12.163559 8.333396 -8.904739 -1.465008 -4.107954 4.316466 2.138932 8.473439 -5.534508 -3.269163 2.973995 0.538816 -1.018257 -1.992798 3.265862 -0.653435 2.702536 -9.304531 -4.279480 6.684287 5.012263 -1.042917 -1.845783 -0.274683 -2.824566 -0.232748 9.738486 2.892786 4.077189 -8.076654 -19.030721 2.019943 0.249694 -0.380492 3.587459 -5.608587 -3.337707 0.169104 -3.902191 7.989616 -1.541022 -1.251143 6.406941 -10.844969 -8.671490 -5.166484 -1.709490 1.492188 -1.774073 5.633944 -4.984120 -0.546728 -3.543598 5.147637 -3.580668 -2.444673 -0.226159 4.192607 4.548451 3.116685 -3.978430 7.895372 1.315572 -2.507575 -1.354473 -0.926184 -1.786872 2.736974 -8.667927 -2.243979 -1.906612 3.996510 -5.732593 5.939489 0.451011 6.102262 0.799482 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 2.440736 -1.233347 -1.429055 2.418758 0.376141 -1.041439 0.379371 0.685484 0.437932 -3.275285 -1.335000 3.071942 0.294953 -1.098846 0.067633 1.195904 1.306491 0.723679 -3.545014 1.221656 0.028814 -0.398277 -2.322305 -0.386061 -0.129246 -1.251213 1.090797 1.218712 -0.047122 2.094899 -1.176421 1.041385 1.708319 -0.320164 1.872138 2.050564 -0.337193 -0.521324 -0.083210 -0.260675 3.914963 1.357281 0.150846 1.379308 1.205037 2.721407 0.006538 4.059644 1.660400 -0.662738 1.905753 0.626936 -1.277701 0.045693 -3.425747 0.556366 1.303443 -0.063079 -1.994778 1.436321 -0.978736 0.737524 1.214401 0.779529 3.843841 1.103672 1.809952 2.016877 3.178828 -1.131909 0.479904 0.628509 2.161515 0.466602 2.227620 -1.422076 -1.677107 -1.522971 0.054744 -2.419351 0.680065 -0.635236 3.981841 -2.186935 0.027632 0.585215 1.066945 2.566267 -1.877989 -0.329729 -2.713516 0.119682 -0.281129 3.825814 -0.065374 1.274270 -0.589454 0.955375 -0.607915 0.879962 -0.144303 -2.940576 -0.811659 -4.845711 -2.259239 -1.679168 -0.764615 -0.507612 -3.335987 0.141208 0.660009 2.356417 -3.738983 -0.188098 0.517044 -0.563297 2.315342 1.204129 -1.354908 -0.169088 -0.296058 1.434972 0.541890 -0.629627 0.069553 -1.797881 0.677388 0.832211 1.046265 0.347541 -3.283822 0.079816 1.068508 0.421073 -0.364533 0.839586 0.626384 -1.985216 1.128055 -1.628229 1.952527 -3.267277 -1.297780 -2.112304 -1.955820 -0.837653 3.373370 2.081117 3.021765 0.412712 -0.570321 -0.242614 -3.911267 -4.818038 0.477758 -1.382781 -0.053777 -0.041169 -0.120387 -0.148841 -1.298235 -0.277939 1.335855 -1.956912 -1.135413 -1.038383 1.849151 0.094183 -0.818449 -1.178458 -0.421434 1.293445 0.958187 1.664849 -1.179814 -5.101362 -3.207676 -1.245310 2.007007 -0.948500 0.430121 -0.531571 -0.774725 -1.840071 0.204025 -1.790127 0.370850 -1.303869 -0.791943 -2.665412 0.516661 -0.562196 0.158063 -0.421704 -2.158289 1.037535 1.185811 1.213987 -0.024970 0.867053 -0.035989 -2.891276 -2.324324 0.510654 -0.241808 3.276508 2.016669 0.296843 -0.976209 -0.780620 -2.852547 1.610420 -4.005053 1.199766 1.379545 -2.255696 1.953560 -2.066738 -0.791465 -1.487375 1.424576 -0.179005 -3.648631 3.692107 2.629427 -2.864781 -0.458414 -1.507483 1.466219 0.701979 2.768246 -1.513929 -0.628717 0.848636 0.318207 -0.338946 -0.542931 1.089582 -0.342640 0.889572 -2.891792 -1.324281 2.276749 1.682201 -0.288743 -0.590308 -0.355782 -0.734007 0.115886 2.948740 0.887693 0.996716 -2.374258 -5.987423 0.585482 -0.127083 -0.281850 1.164577 -1.664599 -1.028015 -0.168772 -1.429437 2.616423 -0.549643 -0.451678 2.043525 -3.304609 -2.816730 -1.758422 -0.275018 0.308647 -0.728250 1.817049 -1.573381 -0.152493 -0.988361 1.726632 -0.932173 -0.978209 -0.545993 1.213961 1.420549 0.909884 -1.341609 2.496357 0.413429 -0.743965 -0.627326 -0.203447 -0.509737 1.003907 -2.839643 -0.924046 -0.732101 1.289435 -1.829336 1.898934 0.080460 1.980710 0.526344 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 2.513933 -1.970457 0.127457 2.297191 1.192736 -0.401754 0.626346 1.270120 0.132188 -4.345135 -2.555559 0.388825 -0.122871 -0.691354 1.257379 0.625352 1.946395 0.013297 -5.265623 0.795771 0.648182 -0.662584 -1.283801 0.221997 0.086697 -2.028802 -0.252748 2.167232 -0.079864 2.442507 -1.472389 1.057726 2.096767 0.168282 2.190895 2.519369 -0.214433 -0.817746 0.543491 0.173551 5.112590 1.043733 -0.376799 1.135277 1.664066 3.282536 -0.836024 4.821786 1.458052 -0.960936 3.442982 -2.514281 -1.308537 0.333566 -4.038288 0.708983 3.068754 0.895732 -2.558499 1.782396 -1.728516 0.901169 0.911393 -0.138988 4.214823 1.470121 2.281486 1.763268 3.307134 -1.915572 -0.164427 1.338281 1.934547 0.777662 -0.126102 -2.194747 -0.168008 -5.097019 0.788202 -3.114371 0.132860 -1.213945 3.556616 -1.859583 -0.171313 1.789742 -0.263860 2.558182 -1.960481 -0.005421 -3.452475 0.259852 0.710121 3.453906 -0.452860 0.563751 0.581917 0.990619 -0.191878 1.987893 -0.129391 -2.672818 -3.227303 -6.283636 -2.957555 -1.308117 0.219410 -0.710100 -3.603153 0.225538 2.122125 0.636021 -3.365782 -0.305692 0.820420 0.808448 0.624537 1.795873 -2.436207 -1.505413 -0.008491 1.883492 1.322712 -0.799898 0.659665 -4.002290 1.231835 1.078360 1.439874 -0.364232 -2.382632 -0.347667 1.023064 0.129306 -0.707188 0.221595 0.497699 -1.438940 1.647300 -1.676566 2.639067 -4.070862 -0.567595 -2.925317 -1.769115 -0.679782 5.191298 2.814766 2.373352 1.964531 -1.606544 0.083638 -3.608129 -4.968159 -0.205129 -0.778016 1.484984 -0.309529 -0.483233 0.528282 -0.998608 -0.571034 -0.004721 -2.000386 -1.196900 -1.507411 1.064503 0.110668 -1.039803 -1.745548 0.689775 2.627125 -1.177385 1.734432 -1.408679 -3.451618 -2.939022 -2.286686 2.223661 -1.136357 0.512916 -0.281350 0.054672 -3.302401 1.092782 -2.040952 -0.001733 -1.341911 -2.426091 -3.091681 0.839539 -0.939720 0.530711 0.422531 -2.398586 0.801994 1.087958 2.646039 0.726368 1.064892 -0.319342 -3.537600 -3.568771 -0.786097 -0.211251 3.925007 1.723180 -0.233434 -0.488276 -1.308175 -2.548088 2.604141 -3.014067 0.903789 0.921616 -2.889665 1.920736 -1.834166 -1.003201 -2.154905 1.449975 0.618360 -3.856757 4.111670 2.620727 -3.242745 -1.579032 -3.172514 1.313297 0.794109 3.653325 -0.918792 -0.030428 0.808137 0.746491 -0.376440 -1.156147 1.589654 0.159004 0.809293 -3.819095 -2.483200 2.405782 2.372244 -0.209644 0.513295 0.672219 1.394078 0.240784 3.913523 0.422480 0.061831 -1.762074 -6.913622 0.998842 2.805881 -0.200299 1.217489 -2.669545 -1.846820 -0.809326 -0.111136 3.138647 2.464801 0.709801 2.754857 -2.054312 -2.906288 -2.048552 0.020118 0.127547 -1.549109 1.050115 -1.769290 -0.009413 -0.821236 1.290853 0.267438 -1.431936 -3.105170 0.426922 1.699366 0.975614 -0.937789 2.864203 0.672331 -1.300802 -0.835897 0.287236 -0.044347 2.276353 -1.572189 -1.453707 -1.116227 0.806913 -1.625309 1.418436 0.407301 1.741141 0.839810 -PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 1.942531 -1.358142 -1.152061 2.140095 0.502739 -0.503260 0.369257 0.426353 0.388697 -3.045557 -1.075013 3.303130 0.139337 -0.608179 -0.149426 0.864517 1.220417 0.518518 -3.101698 0.705563 -0.095033 -0.384603 -1.969795 -0.369139 -0.075834 -1.116193 1.781949 1.242278 0.056335 1.761013 -0.931444 0.830212 1.405195 -0.032376 1.566627 1.673153 -0.103130 -0.470843 -0.717629 -0.637173 3.494139 1.206010 -0.028929 1.389853 0.905082 2.335065 0.494246 3.424663 2.005940 -0.523750 1.184624 0.921615 -1.181845 -0.288530 -3.165102 0.381897 0.858862 -0.065013 -1.557269 1.140940 -0.571808 0.568592 0.900384 0.664878 3.376355 0.524664 1.770598 1.628393 2.483973 -1.302158 0.189141 0.723870 1.852963 0.705480 2.263500 -1.343310 -1.697185 -1.250129 -0.018396 -2.218003 0.346842 -0.604091 3.451701 -1.625480 -0.138863 0.282566 0.826650 2.009615 -1.425269 -0.263004 -2.580371 0.125209 0.005029 3.621104 0.187582 0.974496 -0.304295 0.718907 -0.352415 0.912269 0.430170 -2.496826 -0.095099 -4.264814 -1.516151 -1.574298 -0.381496 -0.371968 -2.649406 0.255006 0.320254 2.474399 -3.203156 -0.348217 0.482532 -0.409392 2.357029 0.450303 -0.852131 0.026126 -0.009326 1.077652 0.618636 -0.756508 0.112118 -0.856233 0.677749 0.494198 0.950263 0.450430 -3.219651 -0.236430 0.969972 0.802813 -0.163089 0.569371 0.520289 -1.512745 0.934383 -1.409628 1.711957 -2.738048 -0.804279 -1.506774 -1.552815 -0.844808 3.052434 1.810223 2.913480 0.300371 -0.346076 -0.167485 -3.243352 -4.777624 0.552781 -0.755573 -0.259843 0.180162 -0.144997 0.159732 -1.378682 -0.257854 1.517125 -1.475665 -1.009130 -0.643016 1.272932 0.090998 -0.619842 -0.852505 -0.161320 1.047877 1.012286 1.577220 -1.009098 -5.166022 -2.884348 -1.119397 1.680745 -0.957291 0.116727 -0.348341 -0.896018 -1.332939 0.130040 -1.505287 0.528163 -0.950296 -1.018570 -2.260226 0.536798 -0.575927 0.281473 0.032124 -1.873220 0.790277 0.779848 0.996491 -0.019765 0.700058 0.103903 -2.451229 -1.910425 0.466998 -0.329844 2.798612 1.494393 0.135000 -1.056705 -0.764327 -2.521469 1.318928 -3.683268 1.101773 0.980917 -1.906252 1.405754 -1.949045 -0.388745 -1.005508 1.242017 0.104616 -3.096520 3.276510 2.410175 -2.303003 -0.552448 -0.917934 1.005027 0.502432 2.267748 -1.619686 -0.820187 0.711981 0.285441 -0.215669 -0.320960 0.851716 -0.038177 0.439571 -2.747591 -1.382241 1.754880 1.304618 -0.237230 -0.476063 0.073838 -0.843284 -0.267928 2.800628 0.796316 1.107149 -2.082371 -5.352706 0.588270 -0.424691 -0.306197 1.076289 -1.513765 -0.942163 0.069162 -1.550945 2.109476 -0.782258 -0.785497 1.797892 -2.925820 -2.204017 -1.525447 -0.718174 0.328845 -0.506961 1.695978 -1.291964 -0.121954 -1.029245 1.133212 -1.092463 -0.546253 0.202210 1.066926 1.146957 0.854913 -0.864627 2.086169 0.360943 -0.700205 -0.494978 -0.150615 -0.615623 1.000493 -3.074547 -0.695713 -0.479255 1.066594 -1.407549 1.240281 0.161648 1.578332 0.275536 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = 3.703717 -0.910689 -3.061977 4.456706 -0.244811 -1.546222 0.995043 1.079539 0.242999 -5.183916 -1.838908 6.699478 0.886730 -1.427257 -0.825730 2.003512 1.332649 1.371204 -5.983156 1.441885 0.074500 -0.670879 -4.001368 -1.186457 -0.548917 -1.942945 2.831874 2.465050 -0.233562 3.790369 -1.217969 1.654198 2.895886 -0.438691 2.497056 3.402829 -0.589784 -0.308946 -1.237015 -0.898437 5.505503 3.022486 -0.622165 2.089902 1.125427 4.669877 1.062471 4.706289 0.936018 -1.175823 1.251518 3.595504 -2.596635 -0.950059 -4.805823 0.189629 1.740454 0.190316 -2.458486 2.615734 -2.010370 0.803997 2.188294 2.189293 5.925120 1.435391 3.418382 3.619352 4.907190 -2.531480 0.949122 0.880886 2.720228 0.074290 4.403174 -1.251828 -4.422460 -0.838389 0.129599 -5.265203 -0.093434 -0.111738 6.883317 -3.606551 -0.489536 0.093189 2.605425 4.229092 -3.660512 -0.475713 -4.072556 -0.260744 -1.400080 7.792119 0.802623 2.332318 -1.066426 1.999903 -0.128557 1.244628 -0.194672 -4.919825 0.342149 -7.184332 -2.547248 -3.189991 -1.374010 -0.039163 -4.664406 -0.350966 1.150743 5.406178 -6.503993 -0.255503 1.277110 -0.858166 5.105473 0.930118 -1.783189 1.422157 -0.486228 1.328877 1.870928 -1.480127 0.352996 0.031449 1.106210 0.941448 1.234540 1.678687 -7.522845 -0.052968 2.432139 -0.293481 0.121842 1.874083 1.124006 -2.837994 1.678871 -3.486338 3.576125 -5.401435 -1.176844 -2.225036 -3.731475 -1.582500 2.730905 4.107496 4.251692 -0.774245 -0.153332 -0.076669 -6.411007 -8.723689 1.358748 -0.819141 -0.884199 -0.396615 -0.415691 -0.104274 -3.152979 0.424140 3.575827 -2.695422 -1.764434 -0.706098 5.103385 0.925425 -1.533642 -0.957305 -1.057944 0.313573 3.270838 3.665276 -1.883819 -9.524654 -6.059543 -1.605513 3.587354 -1.484632 -0.541690 -1.272962 -2.478097 -2.544038 0.137807 -2.798637 1.542151 -1.485861 -0.696190 -4.580713 1.128946 -0.573114 -0.750086 -0.512463 -3.503516 1.008776 2.472980 -0.119138 -0.202445 0.990029 0.787914 -3.293214 -2.516228 2.064736 -0.921840 5.044599 3.808608 0.623436 -2.075275 -0.841886 -4.994592 2.570182 -5.303765 2.441485 1.369134 -3.282032 3.435005 -3.572897 -1.255285 -1.848093 2.407806 -0.190964 -4.978317 6.583324 5.101252 -3.929587 -0.428495 -0.529300 1.792954 1.281267 3.814108 -3.838777 -2.445025 1.306873 -0.041699 -0.355756 0.365994 1.403642 -0.854188 0.686344 -4.107717 -1.404075 3.769974 2.306862 -0.415323 -0.639842 -0.661697 -2.749628 0.160898 4.240553 1.917499 1.640133 -4.164256 -8.924308 1.451533 -3.774804 -1.206183 0.981288 -1.719285 -1.802394 0.631341 -3.039024 3.943625 -2.159764 -3.555524 3.308199 -6.125260 -4.639996 -3.728215 -0.925281 0.693961 -0.798278 3.236641 -2.073124 0.473914 -1.279272 2.218303 -1.992077 -1.756702 1.103798 2.166417 2.452378 1.152882 -2.471984 4.435573 0.226635 -0.881633 -1.477214 -0.581509 -1.682186 1.353646 -5.755586 -1.161017 -0.803100 3.010478 -2.994505 2.658402 0.525624 2.678243 1.475359 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = 0.785916 -0.629559 -0.418458 1.051168 0.220631 -0.050756 0.185737 0.167052 0.073604 -1.586263 -0.660049 1.422935 0.028845 -0.137878 0.011471 0.385452 0.566558 0.249133 -1.849072 0.193036 0.103624 -0.201743 -0.664259 -0.150827 0.013584 -0.601068 0.910593 0.655695 0.033185 0.915467 -0.458934 0.544093 0.713213 0.165226 0.690459 0.746641 -0.227356 -0.298970 -0.412071 -0.362865 1.629168 0.589498 -0.144312 0.563919 0.283334 1.163492 0.302243 1.276360 0.975976 -0.282591 0.501752 0.360786 -0.592445 -0.129260 -1.473969 0.078208 0.357276 0.099686 -0.574702 0.507174 -0.376077 0.296291 0.373970 0.091920 1.762944 0.103785 1.042243 0.754128 1.037240 -0.722415 0.117022 0.296509 0.693707 0.238377 0.923593 -0.524380 -0.729013 -1.081761 -0.062855 -1.475326 0.019386 -0.239038 1.514703 -0.691380 -0.124992 0.072185 0.288080 1.024284 -0.638121 -0.028793 -1.285881 0.082143 0.152054 1.690632 0.228327 0.333433 -0.103769 0.309918 -0.100026 0.426933 0.250607 -1.114831 -0.059867 -2.161992 -0.610434 -0.746807 0.017103 -0.088341 -1.288334 0.263458 0.303282 1.261580 -1.571362 -0.233562 0.240429 -0.033358 0.868917 -0.086610 -0.393288 0.021251 0.052921 0.637160 0.465997 -0.483582 0.180654 -0.454176 0.366442 0.160965 0.534140 0.242060 -1.462611 -0.314986 0.523225 0.332455 0.021615 0.362883 0.371006 -0.390411 0.463121 -0.773197 0.902215 -1.288719 -0.086377 -0.661120 -0.577850 -0.456181 1.440191 1.122517 1.192699 0.205971 -0.193161 0.027534 -1.516392 -2.345068 0.224884 -0.178614 -0.050475 0.132026 -0.116100 0.236923 -0.727757 0.007034 0.691657 -0.662806 -0.516890 -0.245625 0.429480 0.153244 -0.334261 -0.420737 -0.027466 0.445112 0.271833 0.823868 -0.442140 -2.342809 -1.470698 -0.631832 0.848585 -0.553423 -0.033965 -0.284398 -0.366242 -0.656427 0.127187 -0.714256 0.199531 -0.253614 -0.709925 -1.131278 0.245291 -0.276450 0.082916 0.156643 -0.906822 0.301736 0.481005 0.402205 0.080040 0.318591 0.086721 -0.943363 -0.821832 0.163964 -0.327056 1.256274 0.640794 -0.044453 -0.783583 -0.418381 -1.152801 0.780807 -1.490707 0.591485 0.237997 -0.971191 0.556252 -0.956194 -0.109397 -0.308931 0.556768 0.082261 -1.669223 1.478093 1.196433 -1.049982 -0.293109 -0.522963 0.484960 0.197051 1.033693 -0.807398 -0.362071 0.215090 0.161328 -0.062040 -0.121771 0.416307 -0.028461 -0.053420 -1.302313 -0.754763 0.874222 0.570272 -0.092076 -0.103831 0.247272 -0.207140 -0.034015 1.254402 0.386428 0.391600 -0.924353 -2.640037 0.293375 0.059286 -0.116296 0.541569 -0.801391 -0.487993 0.035373 -0.772865 1.008665 -0.125339 -0.579432 0.897761 -1.229396 -0.967060 -0.863843 -0.381833 0.110130 -0.230662 0.807014 -0.531393 -0.053254 -0.398748 0.428393 -0.459450 -0.350433 0.074692 0.512506 0.663105 0.462415 -0.339034 1.000553 0.237104 -0.393783 -0.315117 -0.064784 -0.446121 0.569851 -1.374902 -0.339752 -0.091956 0.475031 -0.661514 0.398821 0.090388 0.650044 0.079706 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 0.840550 -1.166037 -0.237837 1.035731 0.254550 -0.146928 0.127881 0.090806 0.382740 -1.365010 -0.430871 0.476632 0.051199 -0.154424 0.294684 0.416614 0.637839 -0.124229 -1.270196 0.345562 -0.043502 -0.293371 -0.691707 0.226970 -0.028863 -0.746701 0.602061 0.615584 -0.028235 0.769515 -0.489603 0.398286 0.705751 -0.239550 0.734872 0.776099 0.282887 -0.080431 -0.327778 0.277568 1.662879 0.339377 -0.149230 0.409850 0.480390 1.092702 0.107913 1.980057 0.968865 -0.335846 1.175147 -0.366366 -0.326494 -0.054254 -1.442491 0.269519 0.903638 0.131335 -0.951868 0.562044 -0.501329 0.334737 0.367229 0.538688 1.447813 0.349497 1.012236 0.694043 1.126010 -0.623014 0.007091 0.466903 0.862058 0.405078 0.725137 -0.783201 -0.563541 -1.262304 0.195373 -0.204526 0.132374 -0.349924 0.700380 -0.750485 -0.239078 0.497876 -0.113203 0.915947 -0.727185 0.113724 -1.141990 0.057484 0.371120 1.388478 -0.092097 0.288748 0.042452 0.486315 -0.123423 0.543741 0.355999 -1.154905 -0.557301 -1.862666 -1.166874 -0.607023 -0.031388 -0.209170 -1.265831 0.140660 0.338533 0.158679 -1.123994 0.125875 0.216482 0.124983 1.312280 0.177840 -0.285990 -0.287684 0.168982 0.603203 0.405422 -0.303754 0.281354 -1.143252 0.743143 0.549682 0.432704 -0.080726 -0.603120 0.070276 0.329710 0.464710 -0.248845 0.155133 0.241059 -0.924457 0.594860 -0.503473 0.874194 -1.311028 -0.518625 -0.918590 -0.540107 -0.243893 1.989711 0.474349 1.250327 0.365114 -0.850873 0.003390 -1.373330 -2.090796 -0.110229 -0.235447 0.042837 0.162047 -0.155816 0.177914 -0.383913 -0.085897 0.280145 -0.734125 -0.416843 -0.307317 -0.437954 0.029101 -0.339298 -0.485186 0.105258 0.701173 0.162143 0.868744 -0.320974 -2.030828 -1.050043 -0.585489 0.722820 -0.367707 0.289368 -0.001500 -0.314060 -1.335347 0.334122 -0.706986 0.099322 -0.510426 -0.719191 -1.031029 0.258493 -0.327591 0.503350 0.039218 -0.950788 0.302924 -0.163810 0.676865 0.257617 0.405674 -0.045741 -1.411057 -1.224347 -0.020537 -0.189125 1.685336 0.099116 -0.080543 0.220496 -0.436610 -0.943895 0.632334 -1.547237 0.305365 0.613982 -1.021132 0.576760 -0.608648 -0.493446 -0.749311 0.556624 0.166239 -0.505485 1.617934 1.121299 -1.102055 -0.388461 -0.512710 0.559230 0.226183 1.206268 -0.529518 -0.139981 0.280326 0.403360 -0.099501 -0.256904 0.517751 -0.029320 0.183820 -1.195554 -0.727247 0.679291 0.787397 -0.065663 -0.214698 0.116867 -0.053812 -0.365071 1.255359 0.197501 0.434270 -0.730416 -2.229939 0.322502 0.349628 -0.303777 0.551826 -1.130401 -0.347361 -0.079426 -0.091560 1.004322 0.514719 0.290952 0.927090 -1.114555 -1.058600 -0.687520 -0.415813 -0.084873 -0.350171 0.618803 -0.678242 0.009343 -0.432796 0.524328 -0.454444 -0.177343 -0.259001 0.272828 0.316723 0.191453 -0.302835 0.949370 0.222955 -0.370258 -0.333549 0.130482 -0.293984 0.744779 -0.653186 -0.432177 -0.361072 0.412686 -0.601937 0.449108 -0.106148 0.684046 0.106274 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 2.398417 -2.089664 0.082440 2.419129 1.205564 -0.063517 0.612378 1.090411 0.221959 -4.450786 -2.505681 0.637821 -0.089899 -0.381998 1.165471 0.632355 2.006465 -0.043851 -5.128949 0.520238 0.590235 -0.762532 -1.230539 0.343948 0.045831 -2.089110 0.184732 2.168697 0.010743 2.475157 -1.394348 1.157596 2.143309 0.174090 2.107895 2.452604 -0.092977 -0.789581 0.079068 -0.038250 5.084281 0.986680 -0.458469 1.177053 1.393463 3.317883 -0.615810 4.805586 1.689756 -0.990718 3.294380 -2.351856 -1.278379 0.202773 -4.094199 0.674683 2.921233 0.895207 -2.472730 1.703987 -1.620248 0.921629 0.871381 -0.079457 4.151454 1.300424 2.447271 1.830790 3.100554 -2.162663 -0.193272 1.381907 1.751471 0.915275 0.063973 -2.207303 -0.262931 -4.880576 0.787355 -2.936490 0.023263 -1.230919 3.444174 -1.808400 -0.358793 1.664056 -0.348503 2.551807 -1.889363 0.172844 -3.567229 0.211112 0.871788 3.449060 -0.275266 0.455075 0.618204 0.968877 -0.201843 1.972307 0.158555 -2.713663 -2.935724 -6.110410 -2.874454 -1.421388 0.421646 -0.524705 -3.466618 0.310111 1.952431 0.712809 -3.337558 -0.314387 0.781960 0.919026 0.964942 1.615934 -2.228597 -1.434389 0.180332 1.786444 1.443423 -0.890601 0.811131 -3.682179 1.288934 1.009309 1.457442 -0.250832 -2.431846 -0.469501 1.052662 0.276948 -0.594383 0.242596 0.630397 -1.353680 1.684409 -1.610646 2.666323 -3.988968 -0.523397 -2.756515 -1.716112 -0.808113 5.252772 2.771764 2.540793 1.899290 -1.659090 0.125480 -3.557867 -5.138430 -0.244653 -0.471710 1.316619 -0.068895 -0.556874 0.778509 -1.178993 -0.400853 0.132838 -1.921576 -1.293438 -1.258491 0.763903 0.144515 -1.020751 -1.658013 0.771822 2.410568 -1.113361 1.989933 -1.327496 -3.731196 -3.031682 -2.254594 2.254180 -1.253316 0.465272 -0.238721 -0.113881 -3.255428 1.000075 -2.053898 0.025966 -1.204426 -2.570398 -3.152842 0.977183 -0.972471 0.518551 0.718461 -2.500305 0.805047 0.963474 2.552517 0.748130 1.030736 -0.282586 -3.482895 -3.459728 -0.719881 -0.428343 3.964042 1.568118 -0.359914 -0.467247 -1.440896 -2.483537 2.532405 -3.043519 1.016975 0.838945 -2.809838 1.656927 -1.986631 -0.915886 -2.084986 1.462880 0.785577 -3.699286 4.099593 2.675081 -3.114176 -1.549942 -2.918653 1.278606 0.664734 3.528487 -1.079805 -0.196425 0.790074 0.812763 -0.310980 -1.058864 1.502371 0.251166 0.484652 -3.859417 -2.504495 2.348593 2.264059 -0.192920 0.497851 0.973556 1.263934 0.153480 3.955679 0.509417 0.151165 -1.748361 -6.909494 1.078235 2.608131 -0.323333 1.220189 -2.765250 -1.738406 -0.633940 -0.253319 3.036317 2.269512 0.596191 2.838876 -2.111901 -2.822403 -2.101415 -0.279813 0.145919 -1.419772 1.079040 -1.754468 0.049458 -0.915040 1.104697 0.023914 -1.303739 -2.673677 0.518095 1.708447 0.887166 -0.688138 2.859731 0.725555 -1.321674 -0.839354 0.301397 -0.262461 2.299312 -1.833381 -1.362403 -0.885715 0.829881 -1.623585 1.092818 0.378832 1.582414 0.718989 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = 2.095890 -0.850653 -1.944927 5.095427 0.200903 1.729471 0.765462 -0.748228 0.491733 -6.649006 -2.887160 5.488402 0.980749 1.745130 -0.750973 1.750159 1.433423 0.909185 -5.317325 -0.926822 0.931949 -0.540671 0.101157 0.402797 0.152507 -2.022410 4.360411 1.347623 0.884554 4.118085 -0.582565 3.205216 3.744462 0.095289 0.639366 2.440031 -0.479674 -0.377287 -3.810289 -2.659292 4.523025 1.023250 0.110429 2.119999 -1.872759 4.461712 1.990371 4.327415 4.327287 -1.952050 1.617315 0.911385 -2.210406 -1.109229 -3.994156 0.292514 0.398804 0.731334 -1.051513 0.678960 -0.494666 0.982021 1.463189 0.305328 3.973888 1.302335 3.955511 3.852624 3.055217 -4.025583 0.716930 0.944490 0.003903 1.515923 3.786915 -2.898101 -3.161263 0.383389 -0.555285 -3.511125 -1.331575 -1.061624 5.289274 -2.997829 -1.908408 -0.934700 0.612377 4.250054 -1.662877 1.570490 -4.496473 -0.119082 0.529625 3.602813 1.117647 0.501956 -1.285084 0.460862 -0.658112 0.965106 1.492832 -3.767168 0.678526 -4.955553 -1.692937 -3.206567 1.524260 2.278258 -3.320548 0.826107 -2.438701 3.959025 -5.835550 -1.017539 1.126608 1.511151 5.492031 1.508138 -0.782935 0.020258 2.001503 1.236395 2.589536 -2.074624 1.777605 0.386798 0.210618 0.079362 1.187118 1.456251 -4.629555 -2.472271 1.328914 0.793464 1.293861 1.959486 3.008971 -0.423866 2.110952 -1.860376 3.019072 -4.071887 -1.686007 -0.808663 -2.782038 -2.720168 5.122710 3.685996 4.520598 -0.728642 -1.253376 -0.502654 -4.775387 -6.129498 0.011885 0.564250 -0.679370 2.667180 -0.908389 2.488280 -3.899987 2.010193 2.549879 -1.169993 -2.465876 0.802556 -0.067044 0.605108 -1.008539 -1.460235 -0.347937 -1.689601 0.893622 4.917718 -0.530238 -8.603284 -6.069581 -1.861322 3.750434 -2.520618 -0.145188 -1.915229 -1.789828 -2.139519 -1.469624 -2.926182 -0.169310 0.909383 -3.166886 -5.032203 2.298534 -0.772886 -1.675979 2.548605 -3.832340 0.628923 2.218817 1.509411 0.784691 0.521964 -0.501604 -2.753785 -1.577426 1.256572 -3.147422 4.539160 2.103263 -0.762118 -2.886436 -2.369597 -3.121882 2.276349 -3.156756 2.874911 0.025938 -0.934720 0.901861 -3.705729 1.346596 -1.690487 1.605005 1.250260 -7.559398 4.265330 3.982104 -2.051474 -0.088891 -0.080793 1.519578 0.205078 2.120556 -3.529194 -3.014636 0.543598 0.434627 0.275833 -0.173014 0.756267 -0.810364 -2.253356 -3.465001 -1.601447 3.180509 1.322347 -0.622714 -0.326573 2.720993 -1.432679 1.459754 3.564665 2.561533 0.594182 -2.797739 -9.115069 1.734258 1.045753 -1.474998 1.200172 -3.434937 -0.783779 2.418830 -3.857092 3.309755 -2.298511 -1.939901 3.820104 -4.388349 -2.843445 -3.256957 -2.444456 0.798601 0.727988 1.862578 -1.478708 0.997713 -0.602900 0.023606 -2.641915 -1.904543 2.550169 2.484278 3.667808 0.083308 1.236192 3.997388 1.238905 -0.853458 -1.083793 0.212516 -2.569657 0.546478 -6.466704 -0.027247 1.861402 1.776755 -2.599611 -0.232359 -0.655987 0.221849 -0.070688 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = 1.078987 -0.422749 -1.413734 3.095304 0.043971 0.202041 0.282345 -0.544777 0.426059 -3.650483 -1.483303 2.003287 0.694826 0.204059 0.178682 1.364839 0.757343 0.416342 -2.424146 0.116055 0.695819 -0.408438 -0.725048 0.177239 -0.310648 -1.413727 1.932162 0.755391 0.275950 2.400585 -0.641339 1.949366 1.829535 -0.312748 1.036532 1.630793 -0.608370 0.070486 -1.492324 -0.362188 3.058824 0.897398 -0.080758 0.737051 -0.373867 2.673672 0.601149 2.521829 0.877355 -1.111119 1.314307 1.746965 -0.676848 -0.650930 -2.454563 0.616915 1.376989 0.626550 -1.118602 0.965326 -0.670909 0.790417 1.051779 0.945429 3.110064 1.220461 2.092747 2.561586 2.325024 -1.934738 0.521019 0.370127 0.185473 -0.113869 2.206351 -0.936153 -2.012347 0.276594 -0.251439 -2.128759 -0.227126 -0.344572 3.400662 -1.836216 -0.897496 -0.244646 0.905692 2.725773 -1.424581 0.618718 -2.404581 -0.032794 -0.226351 3.337610 0.530543 0.437284 -0.756966 0.877528 -0.269402 0.682815 0.640647 -2.415362 -0.192320 -3.115688 -2.100649 -1.787721 0.515858 0.763616 -3.012496 0.188933 0.014586 1.196292 -3.695809 -0.095423 0.776414 0.902786 2.788349 0.446666 -1.272493 -0.003375 0.537521 0.846857 1.028744 -0.631104 0.905527 -0.908782 0.720692 0.431167 0.878367 0.497010 -2.999695 -0.338565 0.351733 -0.240886 0.413212 1.188698 1.557376 -1.024316 1.317121 -1.564982 2.043975 -3.230551 -0.950990 -1.233517 -1.633747 -1.239168 1.920391 2.182429 2.414443 -0.632823 -1.146408 -0.090007 -3.780623 -3.873566 -0.111585 0.179538 -0.359133 0.866833 -0.380274 0.784345 -1.960816 1.071026 2.049622 -1.167243 -1.261959 -0.159742 1.399731 0.368424 -0.691671 -1.151148 -0.446939 -0.700165 0.411775 3.003366 -0.444293 -4.047283 -4.029760 -1.264432 2.169026 -1.284499 0.109045 -1.278512 -1.200032 -2.133475 0.047773 -1.892410 0.081613 -0.092428 -1.104820 -2.851915 1.024194 -0.400805 -0.742838 0.386882 -2.510501 0.438947 1.416759 0.426481 0.703973 0.443547 -0.119403 -1.977444 -1.582739 0.923432 -1.364664 2.440041 1.739761 -0.148248 -1.010905 -1.313231 -2.225640 1.014773 -2.042403 1.305294 0.711055 -0.939862 0.893745 -2.339251 -0.708087 -1.098641 0.690170 0.221668 -3.172763 3.181970 2.187131 -1.825581 -0.108941 -0.171574 1.362017 0.100788 1.757349 -1.929399 -1.353636 0.538271 0.389599 -0.148526 -0.001778 0.653305 -0.652103 -0.645518 -2.155050 -0.862645 1.951725 1.389654 -0.344077 -0.091176 0.884430 -1.257618 0.404874 2.046777 1.562078 0.491144 -1.507876 -4.315198 0.829168 -2.082097 -0.827129 0.344343 -1.162086 -0.651099 0.880817 -1.241474 2.253723 -0.826614 -1.089591 2.273828 -3.073587 -2.427012 -2.075032 -0.971117 0.196903 -0.298856 0.670407 -1.158469 0.275810 -0.407833 0.686297 -1.315301 -1.424379 0.789878 1.165314 2.224342 -0.332579 -0.089229 2.494731 0.607457 -0.569340 -0.676198 -0.004961 -1.543467 0.699422 -2.832925 -0.423976 0.398696 1.264075 -1.763991 0.491106 -0.695783 0.655073 0.400120 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 1.373831 -0.864379 -1.242089 3.288796 0.226747 0.625250 0.336755 -0.218177 0.296784 -4.226807 -1.903925 2.012757 0.641702 0.678152 0.298515 1.095095 1.120648 0.310922 -3.297514 -0.167945 0.716356 -0.453836 -0.685272 0.625826 -0.143203 -1.549227 1.756552 0.962216 0.375439 2.628438 -0.675659 2.074986 2.293268 -0.470308 0.856239 1.735761 -0.152938 -0.070922 -1.623798 -0.569020 3.503133 0.560785 -0.010387 1.194857 -0.486249 2.969479 0.276836 3.532829 1.590654 -1.323607 1.988088 0.525720 -0.826331 -0.442545 -2.821422 0.564665 1.572038 0.744320 -1.301660 0.920769 -0.854157 0.662971 1.017075 0.555631 3.088575 1.414573 2.507153 2.579601 2.393390 -2.228344 0.422880 0.699554 0.203595 0.563003 1.840248 -1.569831 -1.582802 -0.744981 -0.197935 -1.909493 -0.430230 -0.712499 3.395472 -2.037664 -1.076855 0.048323 0.426727 2.802609 -1.444672 0.932884 -2.854037 -0.212171 0.159467 2.773857 0.447160 0.413149 -0.572787 0.694482 -0.427379 0.863821 0.546834 -2.587901 -0.615173 -3.585687 -2.382147 -1.752342 0.756204 1.047509 -3.055843 0.325223 -0.457385 1.340024 -3.768836 -0.241357 0.558337 1.174997 3.151626 1.410542 -1.566171 -0.468915 0.952178 0.895520 1.477362 -0.805922 1.247456 -1.563619 0.507776 0.482922 0.868694 0.509378 -2.705349 -0.912890 0.487418 0.059767 0.376368 1.094946 1.746567 -0.963314 1.583934 -1.280739 2.168615 -3.359318 -1.323106 -1.330913 -2.077446 -1.364253 3.282856 2.265710 2.890027 -0.132487 -1.714781 -0.196580 -3.678638 -4.073595 -0.338610 0.154771 -0.027157 1.308189 -0.655731 1.290244 -2.034006 0.982150 1.580727 -1.161110 -1.421752 -0.041741 0.691408 0.342548 -0.713062 -1.333528 -0.146431 -0.404355 0.149170 3.159703 -0.451020 -4.342411 -4.011735 -1.273538 2.338903 -1.384768 0.286319 -1.012832 -1.004478 -2.462498 -0.214404 -2.036156 -0.385652 -0.137239 -1.820838 -3.153488 1.353342 -0.524207 -0.774228 1.022840 -2.637587 0.534461 1.524195 1.300930 0.808729 0.431047 -0.358886 -2.354862 -1.933318 0.556428 -1.666495 3.098856 1.483610 -0.450631 -0.903379 -1.506510 -2.292627 1.561656 -2.230693 1.481356 0.656557 -1.119446 0.864603 -2.432876 -0.379929 -1.654048 0.915238 0.629386 -3.859332 3.228779 2.179983 -1.831085 -0.261352 -0.625434 1.369739 0.152329 1.784167 -1.792223 -1.305420 0.540992 0.660144 0.025380 -0.581038 0.762597 -0.550110 -0.861325 -2.479929 -1.199897 2.235458 1.384027 -0.354319 -0.182797 1.362749 -0.747469 0.652972 2.501587 1.615687 0.214661 -1.459953 -5.245501 1.059720 -0.319477 -0.980491 0.492985 -2.156725 -0.675945 0.916147 -1.429247 2.358056 -0.488661 -0.455657 2.583097 -2.938012 -2.380542 -2.088344 -1.047419 0.309050 -0.201700 0.843353 -1.369530 0.567709 -0.343751 0.507586 -1.248876 -1.509649 0.364660 1.175154 2.092305 -0.251916 0.359688 2.690485 0.890569 -0.765163 -0.749196 0.262425 -1.392001 0.722755 -3.179730 -0.456808 0.533842 1.128984 -1.802662 0.277744 -0.618176 0.518300 0.420570 -PE-benchmarks/dfa-based-division.cpp__main = 1.080649 -0.817891 -0.348859 2.023438 0.291795 0.727800 0.381666 0.142885 0.380583 -2.932573 -1.547560 1.295130 0.201877 0.529125 0.298297 0.561013 0.938231 0.226992 -2.961365 -0.309320 0.506383 -0.399018 0.086232 0.299950 -0.014080 -1.181468 1.107899 1.002835 0.277876 1.839259 -0.539196 1.288336 1.576123 0.119277 0.523495 1.244046 -0.269055 -0.360174 -1.128184 -0.735814 2.394664 0.442593 -0.188332 0.909438 -0.353144 2.126939 0.274824 2.199423 1.836471 -0.815169 1.311417 -0.344868 -0.913595 -0.250754 -2.034824 0.236897 0.899912 0.414720 -0.687759 0.732910 -0.688689 0.560364 0.558598 -0.232272 2.011671 0.685229 1.761354 1.479835 1.470778 -1.824425 0.175403 0.596525 0.305492 0.708852 0.772159 -1.173273 -0.835292 -1.427187 0.016821 -1.724858 -0.435554 -0.696738 2.074592 -1.244066 -0.800153 0.190346 -0.093624 1.881871 -0.891427 0.743861 -2.072093 0.049154 0.534518 1.603785 0.419066 0.120753 -0.141578 0.306262 -0.228040 0.732796 0.544495 -1.662294 -0.729540 -2.805420 -1.284505 -1.230813 0.727379 0.557872 -1.925769 0.610496 0.147814 1.112492 -2.331751 -0.436406 0.479330 0.855707 1.187350 0.719772 -0.738672 -0.557629 0.732105 0.967375 1.204092 -1.009387 0.867566 -1.027439 0.320552 0.310263 0.769741 0.288033 -1.362154 -0.934232 0.612051 0.305857 0.375683 0.694100 1.127262 -0.235291 1.036270 -0.904300 1.622445 -2.057691 -0.573871 -0.916816 -0.741290 -1.023793 2.801117 1.781331 1.776068 0.453138 -0.800853 -0.033469 -2.015586 -2.755125 -0.210096 0.235191 0.274728 0.761043 -0.437488 1.043503 -1.344383 0.595734 0.453102 -0.853502 -0.999620 0.047354 -0.198483 0.245844 -0.515635 -0.963650 0.212620 0.095974 -0.371248 1.974502 -0.329897 -2.899876 -2.298559 -1.189529 1.649422 -1.125140 0.059868 -0.639704 -0.513666 -1.295260 0.003056 -1.271235 -0.319450 0.188821 -1.742433 -2.241003 0.930505 -0.476254 -0.273410 1.081150 -1.808635 0.338621 0.894738 1.181781 0.565209 0.540660 -0.276681 -1.582377 -1.321527 -0.111750 -1.219205 2.139747 0.887882 -0.439427 -1.000621 -1.143831 -1.294164 1.406135 -1.558600 1.089126 -0.021087 -0.952669 0.474849 -1.407861 -0.079192 -1.076668 0.764399 0.615762 -3.001460 2.090134 1.708774 -1.346711 -0.457107 -0.918575 0.786050 0.168378 1.494607 -1.291745 -0.863926 0.310284 0.493392 0.018364 -0.413852 0.626956 -0.128003 -0.824945 -1.825608 -1.010167 1.469297 0.923334 -0.188504 0.080454 1.385899 0.270194 0.666801 1.776179 0.839178 -0.016023 -1.122389 -4.094915 0.811174 1.308084 -0.507435 0.812904 -1.829011 -0.647191 0.534776 -0.963527 1.627188 0.098966 -0.126357 1.830566 -1.411129 -1.499244 -1.506296 -0.822415 0.211459 -0.180102 0.820011 -0.820682 0.228664 -0.319523 0.148255 -0.716312 -0.887569 -0.098202 0.833676 1.562891 0.254415 0.392196 1.819478 0.668931 -0.777364 -0.558229 -0.005208 -1.101107 0.614966 -1.847005 -0.237751 0.473493 0.675324 -1.173384 0.027442 -0.037811 0.309257 -0.021138 -PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 2.005687 -1.760909 -1.009946 4.486288 -0.382107 -0.032446 0.437176 1.381563 0.323523 -4.741953 -2.892856 1.917036 1.039144 1.463031 1.985838 1.101037 0.463048 0.439860 -6.940238 0.134486 1.015826 -0.347073 -0.121393 -0.933496 0.388919 -0.595811 2.488995 1.533147 0.552576 3.270628 -1.732139 2.494095 2.096206 -0.326842 1.019817 1.235076 -1.499950 -0.756033 -2.357158 -2.069099 4.284174 0.897288 -0.442196 1.818814 -1.432477 3.191420 1.216840 2.308516 2.095264 -1.786135 1.798309 0.242429 -1.604498 -0.487158 -3.177485 0.562813 2.299856 2.190296 -0.843668 1.702926 -1.206999 1.089573 1.559489 0.131187 4.704206 0.487075 4.179934 3.354206 2.668087 -3.191547 1.649030 0.033253 0.328443 -0.048360 2.310497 -3.194788 -1.200091 -4.679732 0.547509 -4.936124 -0.592707 -0.154669 3.737497 -2.584752 -0.060730 0.476961 0.757941 4.609912 -2.608198 2.199806 -2.533201 -0.530881 0.000167 3.579727 0.214591 -0.001199 0.550697 1.407255 -0.517260 1.416437 1.212880 -2.130372 0.737970 -5.563282 -2.233432 -0.848394 0.886596 1.032094 -3.297661 1.103325 0.351934 -0.059054 -4.207075 -1.621728 1.052179 2.318466 0.287282 -0.765892 -0.278873 -1.156458 0.357215 2.644151 2.610646 -2.561229 2.869813 -1.311786 0.122392 1.836691 2.317441 1.377563 -2.248481 -2.222520 1.113589 0.368790 0.534642 1.831704 3.153770 0.581653 2.014218 -2.772065 3.505542 -4.352751 -0.435066 -1.967530 -0.589740 -1.707749 3.287625 1.195659 1.392331 0.114528 -2.346920 1.077784 -3.660481 -4.022656 0.493590 2.004380 -0.226531 1.846707 -0.688001 1.729591 -2.205819 0.131772 1.966015 -2.181740 -2.773697 -0.684094 -0.889775 1.876704 -1.265632 -2.124901 1.640029 -0.191031 -0.870973 4.092075 0.451897 -3.894972 -4.996982 -1.846353 3.628803 -0.914935 -0.362939 -1.239658 -1.759242 -2.138075 0.532813 -2.772296 0.245145 1.031485 -2.755749 -4.232119 0.785179 0.183078 -0.855308 1.538142 -3.646073 0.722152 1.620310 1.635858 -0.489388 1.395344 1.264321 -3.321085 -3.149401 0.200978 -1.826806 2.705098 0.945538 -0.639261 -1.607260 -1.574741 -0.529086 2.472213 -2.187849 2.814852 -0.681778 -1.401740 1.298676 -3.377950 -0.120455 -2.235956 0.817909 0.849020 -5.516789 4.477792 2.552335 -2.347520 0.044222 -1.897113 2.175517 -0.446487 2.946421 -3.077798 -1.667679 0.100172 1.153662 -0.069032 -1.827760 0.863737 -0.576261 -2.905404 -2.468888 -1.585352 2.662097 1.379374 0.505827 0.895969 2.860640 -0.657179 -0.028303 3.791023 2.127238 -0.634227 -2.318573 -6.200454 2.395161 2.851550 -0.819180 0.523972 -3.637646 -1.488674 1.042676 0.375253 1.674355 2.608803 -0.002410 3.245188 -3.044163 -3.080401 -3.719640 -0.243026 -0.024032 -0.081389 -0.126191 -1.806702 0.667812 -0.130338 0.973475 -2.132534 -0.900021 -1.153540 0.854059 3.439051 -0.139939 0.308377 4.260080 1.860620 -1.089737 -1.464197 -0.537050 -3.057615 0.789495 -1.585890 -0.814990 1.427303 1.653731 -3.399920 0.039937 0.314727 0.516840 0.145481 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = 3.338172 -1.033108 -1.690522 6.400844 0.328131 0.317279 1.094844 0.832901 0.960044 -8.349317 -3.438166 6.317121 0.873371 0.358758 -0.403795 1.836155 2.164524 2.485336 -9.505234 0.011141 1.447088 0.227569 -0.505596 -1.875593 0.065147 -2.018438 4.693774 2.506765 0.998383 5.516552 -2.015361 3.147764 4.653656 0.519550 2.452745 3.753173 -1.180500 -0.669705 -3.328471 -3.017896 7.182521 2.471260 -0.046748 3.419432 -0.442313 6.244415 2.651989 3.295207 3.868413 -2.094964 1.160570 2.188787 -2.906215 -1.661882 -6.033001 0.823606 2.075497 1.661639 -2.282908 2.611520 -0.405239 1.501213 2.410915 0.150412 6.453476 1.360138 4.486776 5.186728 5.158377 -4.592732 1.298790 0.151777 1.874026 0.742324 4.719740 -3.676640 -4.288608 -2.070197 -0.902162 -7.466509 -0.029802 -0.674041 6.841621 -4.464539 -0.189149 -0.032500 1.201814 5.792914 -2.610400 0.049021 -5.770684 -0.199724 -0.429640 7.098838 1.275216 1.142284 -0.513915 1.783491 -0.433290 1.496864 1.830211 -5.634848 1.239008 -8.620381 -2.571040 -4.041066 0.834666 1.400334 -4.986372 0.754125 -0.754482 5.028373 -8.480602 -1.573745 1.314505 1.037096 3.206599 -2.405390 -0.711381 0.416719 -0.110928 2.311656 2.335336 -4.099718 1.242382 0.211619 -0.684487 0.871866 2.545356 1.904067 -5.673842 -2.578247 1.610829 0.689456 0.772330 2.680854 2.650395 -1.409167 2.430070 -4.132021 4.973331 -5.471168 -1.200348 -2.164919 -2.598286 -3.197064 4.619060 2.734064 4.102741 -0.514584 -0.835150 0.113449 -6.487372 -8.905549 1.896841 0.658082 -0.280274 2.163620 -1.122052 1.696707 -4.818607 0.840860 3.384422 -3.013454 -3.296738 -0.291002 1.725403 0.723483 -1.889721 -1.748093 0.284970 0.631909 1.599628 5.504169 -1.993355 -8.635235 -7.718475 -2.854226 5.186483 -3.198800 -0.506732 -2.058873 -2.092689 -2.642724 0.101307 -4.599736 1.173238 -0.237805 -2.773974 -6.976249 2.079704 -1.451002 0.210242 2.234072 -5.176761 1.643848 2.247727 1.599672 -0.315337 1.150074 0.931729 -4.500037 -3.036876 1.204169 -2.507346 4.739855 2.410157 0.222022 -4.393118 -2.483697 -3.678328 3.340334 -3.703234 3.823866 0.158502 -2.649559 2.558763 -4.204012 0.716229 -3.048486 2.322981 1.346499 -8.083632 6.791567 4.692612 -4.263863 -0.463683 -1.539211 2.503431 0.426274 4.179920 -4.897392 -4.049883 1.547915 -0.197864 -0.115887 -1.785966 1.393598 -0.495415 -1.100296 -5.570773 -2.306189 4.509706 2.202629 -0.539512 0.633570 2.959356 -1.862906 0.518501 5.815475 3.154357 1.888223 -4.925505 -10.710256 2.190692 0.695003 0.396747 0.970436 -3.122600 -2.056598 1.932955 -1.833842 4.775041 0.143357 -2.721408 5.030216 -6.374201 -5.105868 -4.407739 -1.899422 1.779241 -0.531471 1.828372 -2.539449 0.683644 -1.214390 1.506892 -2.111111 -2.234316 1.518252 3.196403 5.087860 0.946657 -0.498614 5.872069 1.378877 -2.166084 -0.803661 -0.748098 -3.043620 0.889664 -6.303219 -0.906401 1.191509 2.910158 -4.118356 1.660636 -0.514610 1.634366 0.134567 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 9.404278 -2.213566 -4.522069 16.270369 1.414495 0.020197 2.568653 3.211995 2.206962 -21.096353 -9.120648 16.037686 2.172731 0.713748 -0.472293 4.509869 5.605266 6.350771 -24.864584 0.601558 3.210106 0.550416 -2.419848 -5.265174 0.258779 -4.463744 10.251141 6.339605 2.511909 13.646625 -5.719308 7.823256 11.516487 1.447225 7.020967 8.841296 -2.758804 -2.100167 -7.806901 -8.258690 19.055249 6.932652 -0.002950 9.088004 -0.589683 15.777089 5.375743 9.965914 8.389499 -5.192983 3.377749 3.339136 -7.545257 -3.162683 -15.885700 3.124821 5.724434 4.145805 -6.235896 6.950207 -1.367263 4.070814 6.363806 -0.560569 17.166471 3.942602 11.154685 13.168049 13.600143 -11.177855 3.252579 0.269595 5.644201 1.612528 10.998448 -9.607144 -9.864281 -7.253341 -1.347315 -19.900359 0.725040 -2.307968 18.832178 -11.752764 0.500942 0.743079 3.576110 14.773863 -7.653951 0.248159 -14.960450 -0.455514 -1.541571 18.845482 2.867686 3.075736 -1.120315 4.662274 -1.107760 4.088387 3.598968 -13.613254 2.285969 -23.266613 -6.958396 -9.085907 1.520999 2.801398 -12.563971 1.655708 -0.702097 13.074821 -21.437825 -4.482676 3.186417 1.945959 7.257978 -4.134615 -2.451149 0.724879 -1.012682 5.869613 5.606489 -10.349833 3.249365 -0.423833 -2.327245 2.313079 7.218295 4.970099 -15.324092 -5.862498 4.079366 0.902819 1.528898 6.238147 6.122990 -4.234974 6.503115 -10.483460 12.282394 -13.958117 -3.293003 -6.078659 -7.491977 -7.520599 13.412044 7.475836 10.480673 0.054885 -1.731190 -0.223269 -16.968070 -23.231152 5.159939 1.731196 -0.159354 4.632245 -2.611641 3.745983 -11.924221 1.232400 8.781824 -8.541476 -9.042358 -1.586425 6.345009 1.495695 -4.937767 -5.327591 1.360745 2.977207 2.998236 13.125782 -5.252017 -21.742297 -19.251445 -7.246463 13.006109 -7.668871 -0.689972 -4.889439 -4.569921 -6.809055 0.169705 -11.997878 3.615086 -0.940078 -7.245702 -17.711033 5.003277 -3.541138 0.468280 5.094114 -13.015785 4.966500 6.442656 5.273089 -1.536875 3.218648 2.986593 -11.994259 -8.650811 2.444980 -5.687088 12.331019 6.992701 0.880214 -10.703648 -6.194136 -9.704633 9.058740 -10.211440 9.404884 0.347984 -7.091349 6.693030 -11.168140 0.764616 -8.379766 6.007820 3.079472 -20.470607 17.478935 11.613996 -11.525207 -1.565002 -5.830226 6.869279 1.373543 12.252637 -12.156819 -9.538681 3.977298 -0.392058 -0.794360 -4.947104 3.871068 -0.966260 -2.517141 -14.622574 -6.193559 11.472957 5.866317 -1.209263 1.900737 7.219327 -4.007880 1.596322 15.471133 7.840998 4.120293 -12.723747 -28.136599 5.396441 3.152329 1.062578 1.891562 -8.301726 -5.714937 3.907115 -4.380547 12.270063 1.555374 -5.964368 12.698946 -16.418426 -13.016097 -10.719826 -3.538269 4.181867 -2.120257 4.638634 -6.849165 1.528157 -3.114635 4.268626 -5.031076 -5.981679 1.454275 7.489866 12.465234 2.392409 -1.791438 15.138536 3.899623 -5.487488 -1.721468 -2.226974 -6.937506 2.282890 -15.958995 -2.595509 2.302123 6.666829 -10.543709 4.822304 -0.415927 4.169426 1.030856 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.399047 -0.071777 -0.009227 0.702136 0.259030 -0.196894 -0.067834 0.106181 -0.312478 -0.508082 -0.272943 -0.017608 -0.134878 -0.016354 0.406015 0.024346 0.183438 -0.132169 -0.519433 0.171746 -0.241598 -0.303486 -0.218819 -0.296311 0.083174 0.393913 0.048379 0.313088 0.027745 0.309290 -0.505582 0.329426 -0.020011 0.407668 0.510820 -0.360477 0.013918 -0.166824 -0.364484 -0.318937 0.639433 -0.061135 -0.133166 0.257614 0.174770 0.305122 -0.078681 0.544996 0.045664 0.309182 0.558567 -0.492181 0.064486 0.303549 -0.634062 0.139948 0.506020 0.079161 -0.042005 0.046026 -0.319280 0.392398 0.148162 -0.169678 0.878063 0.291080 0.409145 0.400087 0.345135 -0.395693 0.103505 -0.114513 0.756110 0.018847 -0.607699 -0.273039 0.180524 -1.059707 -0.070719 -0.513490 0.303258 -0.249672 0.441927 -0.139115 0.031311 0.077791 -0.217845 0.212572 -0.676557 0.511269 -0.495981 0.018992 -0.090483 0.262041 -0.151991 0.020879 0.028118 0.019286 0.004442 0.274522 -0.133574 -0.163660 -0.064208 -0.833027 -0.604397 0.551991 -0.234284 -0.406506 -0.360377 0.227567 0.452018 0.138786 -0.265370 -0.629828 -0.279367 0.046515 -0.179302 0.318805 -0.397840 -0.109090 -0.144705 0.613253 0.343402 -0.058379 0.346005 -0.848030 -0.301707 0.218250 0.736979 0.331592 -0.157365 -0.057101 0.122125 -0.113441 -0.192304 -0.250819 -0.275919 0.081899 0.133734 -0.013411 0.409920 -0.466916 -0.229507 -0.591314 -0.233671 0.312219 0.759486 0.406643 0.346095 0.849239 -0.074958 0.133144 -0.348783 -0.618405 0.173351 0.168912 -0.046079 -0.131901 0.059380 0.241704 -0.188841 -0.434506 0.627160 -0.633829 -0.767115 -0.668152 -0.077100 -0.012554 -0.259859 -0.373662 0.465590 0.651750 -0.344969 0.331804 -0.190479 -0.422588 -0.450690 -0.276500 0.300145 -0.230967 -0.040379 0.213947 0.440350 -0.699773 0.219901 -0.350106 0.242851 0.129030 -0.510643 -0.443582 0.025574 -0.039929 0.118053 0.044672 -0.202836 0.328977 0.065982 0.588517 -0.207395 0.601023 0.236590 -0.432188 -0.920466 -0.331021 0.328851 0.490165 0.017702 0.131471 -0.368906 -0.364168 -0.318430 0.668864 -0.502908 0.201373 0.013228 -0.020579 0.074360 -0.389223 -0.374545 -0.059199 0.247501 0.228593 -0.696862 0.452708 0.329221 -0.599029 -0.315571 -1.137947 0.588964 -0.095274 1.099234 -0.333175 0.182404 0.073050 0.713114 -0.247790 -0.446102 0.326836 0.179223 -0.371628 -0.494185 -0.545099 0.126905 0.169461 0.218958 -0.083595 0.119468 0.221849 -0.297459 0.782780 0.105545 -0.034530 -0.110287 -0.701602 -0.178078 0.768152 0.126996 0.409766 -0.636290 -0.404063 -0.426871 -0.138089 0.471937 0.212970 0.068287 0.419756 -0.152861 -0.110410 -0.322982 0.297544 -0.170168 -0.576596 0.342109 -0.409504 -0.290385 0.153315 0.184972 -0.082041 0.085161 -0.683781 -0.329047 0.206728 -0.047925 -0.058916 0.317362 0.514546 -0.399456 -0.084149 0.181629 -0.233338 0.258645 -0.532994 -0.183604 -0.069886 0.021177 -0.312931 0.083756 0.317891 0.057720 -0.142808 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = 3.159155 -0.301285 -1.934367 5.249320 0.517698 -1.240147 0.929191 1.272770 0.408814 -6.980714 -3.501185 2.341057 1.001044 -1.037656 0.669872 1.669594 1.753086 2.411554 -8.065608 1.187985 1.934882 0.278353 -1.850725 -1.427193 -0.085846 -2.053742 0.615738 1.831251 0.428614 4.999550 -2.123686 2.566315 3.950167 -0.129590 2.934896 4.032576 -0.922511 -0.106070 -0.115816 -0.466690 6.883907 2.793226 -0.335027 1.933714 0.853265 5.515151 0.353980 3.863152 -0.636560 -2.046386 1.921372 0.593768 -1.784454 -0.338451 -5.176974 1.330949 4.388973 2.240500 -3.152557 2.819251 -1.553366 1.373071 2.424878 0.412480 6.072662 2.292042 2.630668 4.358644 5.693381 -2.920390 1.401756 -0.086787 1.850826 -1.022292 3.185799 -2.418475 -3.125987 -3.380805 -0.388809 -6.734535 0.713095 0.052849 6.466415 -4.542145 0.821392 1.527294 1.930978 5.098413 -3.157507 -0.801685 -4.816261 -0.186971 -1.939164 7.291159 0.683123 1.541843 -0.722621 2.452336 -0.264378 1.340126 -0.230044 -5.006873 -1.330861 -9.255828 -3.726087 -3.169257 -0.097757 0.696961 -5.492316 -0.637466 1.055629 3.730787 -7.921846 -0.108355 1.143498 0.993870 1.250471 -1.124118 -2.799805 0.355236 -1.286213 1.638391 1.700486 -2.460587 0.538105 -2.508003 -0.349139 1.270340 1.933929 0.827956 -4.633065 -0.666149 0.973939 -0.816196 -0.269480 2.396468 1.977201 -2.625463 2.416849 -4.197834 4.323692 -5.784156 -0.713323 -2.933720 -4.482546 -2.060269 3.181396 2.742734 2.736671 -0.429164 -1.686668 -0.118682 -6.854155 -8.231505 1.441028 -0.454541 0.962001 0.702106 -0.997286 0.349914 -3.583499 0.413072 2.935320 -3.135209 -2.292553 -1.055613 5.515754 0.430702 -2.027191 -2.045059 -0.411357 1.998198 0.838563 3.915852 -2.344976 -4.281863 -6.922686 -2.549716 4.543828 -2.167281 0.355000 -2.051120 -0.932790 -4.284366 0.976813 -4.068130 0.798045 -1.472917 -0.930122 -5.797794 0.974864 -1.119071 -0.205551 0.630569 -4.332362 1.608054 3.470937 1.332477 -0.131308 0.848294 1.015559 -4.205354 -3.574368 1.132792 -1.364335 4.268924 3.423500 0.411562 -2.207018 -1.687469 -3.940526 3.348111 -2.706937 2.607794 0.825791 -2.801002 3.556224 -3.791382 -1.398889 -3.336782 1.861960 0.378672 -5.059062 6.358218 3.638584 -4.259384 -0.307713 -2.519399 2.749591 0.793531 4.397039 -3.228071 -2.356211 1.521727 -0.846720 -0.326445 -2.041376 1.605147 -1.276127 0.900444 -4.824658 -1.456000 4.381919 2.829927 -0.603517 1.058906 1.051493 -1.452503 0.975496 5.157618 2.552240 0.878076 -4.270200 -8.322940 1.719391 -1.490010 0.576179 -0.450204 -1.467520 -1.974467 0.547672 -0.171752 4.781104 2.882004 -1.843660 4.507739 -5.858316 -5.294892 -3.539022 0.079075 1.525589 -1.868410 0.737327 -2.795596 0.958625 -0.741722 2.607984 -0.093809 -3.324720 -1.482823 2.119053 4.162782 0.231578 -2.028454 5.414693 0.911543 -1.725596 -0.768992 -0.387242 -1.242272 1.123577 -3.933972 -1.760110 -0.291741 2.566535 -3.791561 3.060444 -0.985090 2.084873 1.878696 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = 4.654062 -0.593620 -2.125308 7.146527 1.135472 -1.656171 1.195422 2.261068 0.387327 -9.120184 -4.493521 4.761641 1.118816 -0.754738 0.538537 2.166297 2.188751 3.014760 -11.345336 1.508150 1.412480 0.372730 -2.563912 -2.905633 -0.110509 -2.130927 2.226224 3.451432 0.468146 5.842743 -2.919349 2.939898 4.910972 0.432353 3.920188 4.356474 -0.451754 -0.990735 -1.887798 -2.116198 9.560603 3.871868 -0.456182 3.381229 1.026255 7.265917 1.676914 4.662921 0.062966 -2.269074 1.701582 0.152324 -3.385944 -1.169063 -7.712934 2.105789 4.414593 2.557144 -3.862496 3.933623 -1.630239 1.612426 3.342029 -0.168868 8.740868 2.021990 4.731116 5.607897 7.392660 -4.363806 1.166891 0.525321 3.628944 -0.244379 3.971570 -4.090801 -3.938670 -6.070979 0.167663 -10.104777 1.001776 -0.574046 9.102398 -5.658727 0.942837 1.949359 1.945802 6.547543 -4.802036 -0.716703 -6.843543 -0.175711 -1.934271 9.868328 0.911027 1.398009 -0.152961 3.060067 0.101948 2.458507 0.201970 -5.942763 -0.843652 -12.427416 -4.170976 -3.295534 -0.412353 0.054724 -6.123269 -0.609941 1.665279 5.846455 -9.719511 -1.454553 2.065167 0.667849 2.169207 -1.990234 -2.466703 0.487721 -1.320416 2.627283 2.676067 -4.108100 1.236066 -1.568806 -0.198418 1.416280 3.269100 1.789354 -7.185774 -1.595215 1.705070 -0.631528 0.036284 2.112025 1.847230 -3.337163 3.214413 -5.350706 5.836713 -7.382882 -0.590848 -3.599343 -4.876004 -2.429808 5.783780 3.836064 3.929769 0.552444 -1.414442 -0.012959 -8.401172 -11.497195 2.525867 0.610795 0.680156 0.572469 -1.135557 0.579770 -4.376440 -0.281307 4.471190 -4.564101 -3.943208 -1.422772 5.938150 0.800066 -2.672036 -3.100990 0.760520 3.300934 1.430644 4.919102 -2.995359 -8.021087 -8.140269 -3.537341 5.674767 -2.640366 0.025372 -2.098920 -1.840876 -4.882701 1.403853 -5.708806 2.214864 -1.322416 -2.665573 -7.731830 1.515328 -1.504322 -0.285459 1.045429 -5.603283 2.503644 3.454927 2.180946 -0.991573 1.292399 1.960503 -6.063827 -5.162487 0.802416 -1.319095 6.667900 4.082313 1.171516 -4.019448 -2.029864 -4.913590 4.847869 -4.233449 3.379378 0.541091 -4.044799 4.278204 -5.323044 -0.939507 -4.233389 2.926647 0.729311 -7.931978 9.041619 6.022623 -5.986631 -1.333574 -3.740395 3.199166 1.205565 7.067541 -4.992842 -3.305889 2.036702 -0.178781 -0.929239 -2.723139 2.162461 -0.644608 0.144391 -7.117480 -3.056815 4.998459 3.657417 -0.529930 1.267928 1.730002 -1.206280 0.020875 7.658909 3.000517 1.367208 -5.874388 -12.169689 2.413476 0.390929 0.397584 0.371248 -2.729959 -2.990600 0.625491 -1.106492 6.182127 3.429234 -2.776947 5.785401 -7.540232 -6.561130 -4.688593 -0.089961 1.613081 -2.241643 2.240843 -3.859035 0.682006 -1.586181 2.542876 -1.531069 -3.302548 -1.858406 2.481025 5.168904 1.196201 -2.463774 7.288276 1.301455 -2.160635 -1.055096 -0.809248 -1.968518 2.129939 -5.764096 -2.225683 -0.530319 2.948374 -4.545426 3.494992 -0.158680 2.437460 2.167827 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.933409 -0.662995 -0.203847 1.006427 0.319977 -0.565013 0.248549 0.421881 0.059744 -1.505460 -0.593848 0.213416 0.080818 -0.514435 0.329532 0.393310 0.542890 0.238823 -1.657682 0.568323 0.204912 -0.122688 -0.814443 -0.170499 -0.054709 -0.709529 -0.042508 0.756963 -0.096485 0.973576 -0.618626 0.299999 0.814325 -0.088821 0.920060 1.051215 0.258546 -0.148351 0.206038 0.384502 1.914190 0.565026 -0.260369 0.293515 0.729414 1.277089 -0.061787 1.536978 -0.068016 -0.359847 0.910439 -0.481070 -0.421319 -0.012290 -1.496211 0.347210 1.226343 0.509933 -1.117576 0.795391 -0.708594 0.300209 0.528860 0.391660 1.647107 0.519191 0.751958 0.824786 1.551378 -0.605172 0.055945 0.361038 0.907657 -0.024351 0.512351 -0.527103 -0.448640 -1.840458 0.229854 -1.081753 0.167791 -0.108083 1.242544 -0.942635 0.135604 0.850088 0.228674 1.066401 -0.974983 -0.211125 -1.253854 0.035143 -0.019830 1.833120 -0.083613 0.365372 0.023615 0.693363 0.028306 0.640647 -0.021424 -1.219543 -0.938819 -2.399770 -1.238622 -0.604410 -0.326956 -0.349083 -1.456317 -0.205869 1.002336 0.588655 -1.532132 0.148648 0.347524 0.130390 0.674286 0.028477 -0.749015 -0.090219 -0.280419 0.485584 0.371817 -0.349241 0.087427 -1.138363 0.571931 0.504972 0.469154 -0.080374 -1.075657 0.158130 0.416473 -0.057233 -0.343256 0.180244 0.091868 -1.040954 0.581363 -0.889802 1.051087 -1.522255 -0.157550 -1.003185 -0.995212 -0.191758 1.558262 0.707111 0.776672 0.366771 -0.740151 0.031734 -1.576505 -2.296633 0.172037 -0.324967 0.317370 -0.170674 -0.198675 -0.104721 -0.409226 -0.233765 0.418804 -0.913195 -0.417007 -0.484463 0.785889 0.053249 -0.463514 -0.581497 0.062735 1.093787 0.220327 0.684865 -0.664407 -1.315108 -1.252052 -0.762455 0.888254 -0.315372 0.176165 -0.164386 -0.206944 -1.465148 0.597062 -0.807432 0.331601 -0.701558 -0.462135 -1.224261 0.190745 -0.346812 0.168456 -0.127671 -0.944267 0.385064 0.131620 0.345162 0.073482 0.248955 0.126087 -1.349491 -1.342241 0.037149 0.101891 1.507588 0.585882 0.190604 -0.059366 -0.340269 -1.073999 0.938996 -1.232652 0.339636 0.572891 -1.156398 1.041622 -0.733475 -0.677811 -0.835312 0.669888 0.070019 -0.580217 1.895152 1.173411 -1.303151 -0.452764 -0.836852 0.583582 0.421162 1.501279 -0.559207 -0.131418 0.444395 0.173658 -0.202192 -0.359058 0.584627 -0.143065 0.638152 -1.366383 -0.742942 0.829602 1.027251 -0.107340 0.129318 -0.125579 -0.013016 -0.329375 1.460611 0.255605 0.337094 -0.870954 -2.058273 0.383316 -0.087799 -0.005701 0.263264 -0.745290 -0.553524 -0.217085 0.106448 1.266795 0.940367 -0.088394 1.032354 -1.298019 -1.335863 -0.720180 0.033700 0.097096 -0.679503 0.578881 -0.780307 0.052224 -0.367469 0.738352 -0.043191 -0.488591 -0.825095 0.214687 0.508039 0.313165 -0.789520 1.216799 0.112844 -0.415944 -0.303440 0.055420 0.025510 0.766704 -0.530775 -0.616386 -0.563751 0.561805 -0.716611 0.932531 -0.067051 0.729438 0.522823 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = 1.394048 0.322717 -0.323548 1.555179 0.094238 -0.284554 0.519180 0.734783 -0.522274 -2.505501 -0.961968 1.991173 0.014263 -0.259281 -0.197876 0.738422 0.857996 0.684647 -4.062329 0.250941 0.541059 -0.022828 -0.437983 -0.749205 0.144273 -0.928012 0.933271 1.268984 0.118969 1.787122 -0.985555 0.844198 1.296611 0.440893 1.375682 1.339289 -0.852419 -0.526501 -0.329936 -0.883747 2.537399 1.152575 -0.426919 0.645873 0.514052 2.197752 0.613735 0.151718 0.548083 -0.561032 -0.151437 1.258753 -1.268517 -0.242808 -2.070888 -0.227795 0.578523 0.893697 -0.972134 1.037890 -0.882269 0.551867 0.735077 0.133768 2.332061 -0.034449 1.478626 1.393460 1.723084 -1.315941 0.418769 0.088744 0.744906 0.000845 0.816593 -0.514034 -1.006603 -2.594422 -0.006323 -4.231683 -0.085539 0.083402 2.878845 -1.241625 0.210465 0.172822 0.622714 1.880078 -1.298832 -0.320841 -1.995234 0.005396 -0.394631 2.889323 0.367599 0.432361 0.180220 0.813624 0.021009 0.678851 0.047446 -1.963980 0.002204 -3.493112 -0.793833 -1.404959 -0.015335 -0.020455 -1.496917 0.297058 1.672141 2.560964 -2.601453 -0.371318 0.542361 0.005788 -0.132334 -0.532263 -0.630336 0.386217 -0.713476 1.016067 1.130390 -1.124187 0.310378 0.246163 -0.113144 0.283593 1.060238 0.695753 -2.641060 -0.627312 1.261624 -0.589578 -0.039898 0.891256 0.595666 -0.254376 0.788029 -1.851230 1.837077 -1.710462 0.414188 -0.951735 -0.582149 -0.933022 0.687471 2.264475 0.286945 0.197285 0.369973 0.396767 -2.130758 -2.712689 0.740930 0.054609 -0.012988 -0.111272 -0.316522 0.370811 -1.412131 -0.023308 0.822777 -1.153855 -1.018975 -0.580193 1.869153 0.540860 -0.692454 -0.541005 0.081787 0.526409 0.505268 1.345236 -1.172605 -2.511731 -2.411171 -1.147093 1.690861 -1.037570 -0.439577 -0.591510 -0.642438 -0.253646 0.507167 -1.409763 0.518913 -0.553665 -0.525495 -2.116023 0.738505 -0.536133 -0.700750 0.243694 -1.488659 0.496225 0.971976 -0.198232 -0.113311 0.102856 0.616576 -1.132285 -0.853678 0.482539 -0.531338 1.235784 1.569326 0.107998 -2.004130 -0.587906 -1.278627 1.485896 -0.855458 1.318065 0.027234 -1.575338 1.385115 -1.159475 0.247452 -0.309350 1.046399 0.178862 -2.896662 2.771932 2.195151 -1.900223 -0.409326 -1.023047 0.840769 0.494911 1.486573 -1.519068 -0.898631 0.315317 -0.213582 -0.063598 0.070020 0.654074 -0.001905 -0.010594 -2.040105 -0.867985 1.803361 0.922558 -0.080242 0.273245 0.497312 -0.339667 0.351426 1.979400 0.649014 0.761452 -1.551239 -3.480136 0.612885 -0.060153 0.274142 0.463878 -0.428289 -1.085015 -0.083865 -0.720192 1.756815 -0.058283 -1.829044 1.515254 -1.811610 -1.766059 -1.907009 -0.350795 0.326554 -0.478002 1.100070 -0.787167 -0.085653 -0.638839 0.865874 -0.452395 -0.630628 -0.016179 0.969458 1.379850 1.236370 -1.068552 1.920349 0.261081 -0.742315 -0.539579 -0.182900 -0.713942 0.750931 -1.706147 -0.543510 -0.012306 1.063058 -1.309802 0.791024 0.522509 1.072932 0.417101 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 3.966673 0.761844 -1.664322 5.706584 1.524617 -0.136310 1.046043 2.045871 -0.521415 -5.952033 -2.735743 4.213378 0.178528 -0.169686 1.280327 1.909674 2.598604 2.231641 -7.855143 0.134600 -0.225016 -0.403700 -1.146919 -2.810807 0.321692 0.052343 2.345647 3.396178 0.892882 4.622253 -2.133855 2.181009 3.153208 1.537477 3.302701 1.597801 1.231054 -0.192827 -3.427383 -2.204053 7.193461 1.902859 -0.247031 3.820466 0.961725 5.874562 1.750317 3.924233 1.682084 -0.154411 2.320968 -0.744795 -2.357695 -0.815544 -5.990196 0.599967 3.090105 1.705932 -2.636214 3.473434 -0.062444 1.751212 1.932315 -1.461334 5.942503 1.665183 3.786833 3.871954 5.153814 -3.891530 0.382388 -0.627802 3.643637 0.655268 0.800059 -5.063706 -2.255437 -5.920190 -0.064477 -7.785029 0.656300 -1.706752 6.706681 -4.097740 0.344798 1.686088 -0.381621 3.832778 -3.807012 -0.131095 -5.097282 -0.893507 -0.511315 6.892741 1.102688 0.932248 0.602930 1.236147 0.637648 1.961012 1.302410 -4.337321 -0.377756 -7.575620 -3.609095 -0.664367 -0.060243 -0.654605 -2.444471 -0.253979 0.755295 3.122203 -6.962207 -2.906720 1.682513 0.568162 1.354954 -0.167097 -1.767302 0.751364 -0.021584 3.039927 2.736460 -4.250821 0.960065 -0.930542 -1.893181 0.667691 3.303371 1.635219 -4.253710 -1.792040 1.451474 -0.113269 0.390668 -0.200631 -0.408990 -2.115078 2.598119 -3.485625 4.761224 -5.204830 -2.208180 -1.447707 -2.816437 -2.237732 5.280955 2.079120 4.356482 2.259302 -0.830952 0.136662 -4.765329 -8.056477 2.894530 0.787996 0.295187 1.167125 -0.774802 1.030254 -4.095552 -1.111019 4.042366 -3.102975 -4.300905 -1.638506 2.427423 0.282651 -2.131029 -3.074110 1.679475 2.794321 1.937284 3.611359 -2.389561 -8.006104 -4.361884 -2.406974 4.576897 -2.706382 -0.030853 -0.375461 -0.467258 -4.138536 0.061708 -5.204919 2.139060 0.209748 -3.212485 -5.483129 2.856982 -1.396307 1.317558 2.067663 -3.733491 1.987495 1.499263 3.303307 -1.568464 1.873038 1.575254 -4.648492 -4.811495 -0.580669 -1.179248 4.908140 0.672266 1.618029 -3.941342 -1.156205 -3.305814 4.027177 -3.548910 2.627879 -0.301027 -1.419084 2.563605 -3.207404 -0.718414 -2.879673 2.446971 1.418989 -6.862554 4.961340 4.646833 -4.632273 -1.825288 -3.310433 2.290041 0.617430 6.059991 -4.075429 -3.622522 1.623155 1.489952 -0.441712 -2.881589 1.690919 0.674416 -1.126396 -5.867165 -2.581865 3.962113 3.090257 -0.248386 1.251280 2.667814 -0.038155 -1.231965 6.419762 1.385616 1.332257 -2.806629 -9.216336 0.444604 4.041665 0.527692 1.526278 -3.276613 -1.846566 0.286894 -1.782492 4.366599 1.855083 -1.952479 4.622424 -4.019205 -4.374381 -3.927067 0.055223 1.683709 -2.479399 1.738246 -2.474220 0.242146 -0.768624 1.348172 -0.590150 -1.706930 -0.600983 0.718156 3.943151 -0.083930 -0.760322 5.644492 0.982713 -2.097123 -0.169340 -0.860740 -1.535044 3.230634 -5.897338 -1.145609 -0.204259 1.927258 -3.474061 1.254176 0.141506 1.334500 1.084444 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = 0.723928 -0.656505 -0.518086 1.830326 0.132539 -0.066828 0.193821 -0.048371 0.046967 -2.269943 -0.799128 0.107115 0.381856 0.103167 0.317657 0.806638 0.455766 0.257296 -1.823223 0.254225 0.574287 -0.079545 -0.315008 -0.047695 -0.038599 -0.959935 0.868129 0.528907 0.111981 1.462168 -0.564194 0.952352 1.303798 -0.266456 0.806406 1.160327 0.104757 0.161491 -0.658975 0.251318 2.090915 0.518327 -0.184593 0.258119 -0.002573 1.684046 0.487248 1.368292 -0.191976 -0.757741 0.988749 0.124755 -0.330364 -0.291934 -1.592565 0.382294 1.342733 0.917711 -0.989586 0.707947 -0.749998 0.393470 0.651927 0.692140 1.912780 0.480955 1.356081 1.407655 1.515720 -1.141291 0.242574 0.394298 0.258406 -0.218970 1.280269 -1.001762 -1.051057 -1.117699 -0.100819 -1.149980 -0.012433 0.163874 1.569545 -1.256766 -0.240424 0.509048 0.205282 1.546007 -0.939177 0.154564 -1.508076 -0.098502 -0.188124 2.118991 0.184730 0.196310 -0.072790 0.841120 0.017705 0.556136 0.419049 -1.543988 -0.379645 -2.162256 -1.380923 -0.984096 0.403045 0.430495 -1.766209 -0.160326 0.187293 0.555952 -2.217259 0.320471 0.451096 0.813120 1.696606 -0.571652 -0.598835 0.057200 0.096572 0.533938 0.822757 -0.682031 0.519214 -0.898355 0.597716 0.491666 0.551438 0.077624 -1.309217 -0.300975 0.145083 -0.161489 -0.019085 0.665574 0.805553 -0.979125 0.891424 -1.060268 1.457158 -1.961367 -0.216795 -0.938755 -1.417934 -0.587670 1.543882 0.681333 1.065113 -0.259545 -1.244591 0.115141 -2.079469 -2.503632 -0.080876 0.245644 0.045061 0.653046 -0.402189 0.524348 -0.975255 0.451820 0.922837 -0.819120 -0.694230 -0.046614 0.492867 0.243040 -0.636881 -0.632134 -0.050270 0.273392 0.369453 1.728299 -0.417025 -1.772426 -2.283324 -0.858216 1.313052 -0.678938 0.179319 -0.570157 -0.540129 -1.805293 0.488539 -1.347623 0.353482 -0.279075 -0.650757 -1.733927 0.507780 -0.387393 0.043204 0.344524 -1.303195 0.273610 0.422208 0.125029 0.278616 0.215956 0.192131 -1.497710 -1.255468 0.442456 -0.634588 1.631578 0.395363 -0.072678 -0.230511 -0.695738 -1.124821 0.825273 -0.630459 0.651595 0.344311 -0.768841 0.830129 -1.182062 -0.175258 -1.113180 0.523701 0.302848 -1.035387 2.039699 1.343141 -1.094885 -0.175806 -0.233731 0.792305 0.129744 1.126739 -0.838338 -0.667399 0.344285 0.144443 -0.039122 -0.426947 0.464071 -0.520753 -0.094301 -1.413617 -0.656932 1.081854 0.927046 -0.153726 0.085143 0.528167 -0.611465 -0.285508 1.517322 0.854577 0.371814 -1.111241 -2.432738 0.600227 -0.768105 -0.238387 -0.082573 -0.689242 -0.406456 0.353322 0.119968 1.424549 1.146558 -0.493366 1.470888 -1.856810 -1.596679 -1.161703 -0.358320 0.171025 -0.484176 0.032800 -0.921713 0.365394 -0.227567 0.461201 -0.397218 -0.737588 0.109993 0.479278 1.254166 -0.029509 -0.269487 1.598167 0.433856 -0.386722 -0.454482 0.368092 -0.604796 0.681179 -1.081104 -0.639173 0.012200 0.765073 -0.985904 0.418673 -0.527567 0.361117 0.475635 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = 0.189053 -0.218197 0.088020 0.345692 0.272683 -0.016122 0.049397 -0.001506 -0.089737 -0.583898 -0.278892 -0.099005 -0.051711 -0.062486 0.197263 0.091031 0.314708 0.029717 -0.389300 0.079211 0.050529 -0.146347 -0.146949 0.079822 -0.007948 -0.333272 0.026710 0.316104 -0.005514 0.305485 -0.247842 0.180434 0.267827 0.086958 0.374859 0.318461 0.140159 -0.128570 -0.025358 0.064855 0.744706 -0.035478 0.014302 0.100429 0.262318 0.441282 -0.051825 0.430416 0.162117 -0.103087 0.373884 -0.315234 -0.033967 0.043538 -0.628883 0.133323 0.259371 0.107783 -0.418977 0.199331 -0.242055 0.138620 0.089755 -0.010220 0.555289 0.062287 0.269836 0.257822 0.414230 -0.286515 -0.088087 0.239748 0.278674 0.137703 -0.045110 -0.074395 0.062125 -0.733079 0.032099 -0.226147 0.076560 -0.092235 0.387593 -0.193120 -0.111491 0.325485 -0.128231 0.323365 -0.228008 -0.011516 -0.535673 0.041478 0.142937 0.257910 0.061724 -0.004166 0.067223 0.137169 -0.030938 0.319106 -0.038536 -0.373330 -0.411222 -0.858941 -0.511051 -0.179938 0.053973 -0.187818 -0.446575 0.007446 0.404344 0.256218 -0.372056 -0.003466 0.082022 0.127017 -0.063238 -0.028651 -0.287673 -0.207773 0.034954 0.239598 0.167361 -0.017668 0.097409 -0.528104 0.221753 0.058409 0.271164 -0.095936 -0.104143 -0.074942 0.110427 0.026192 -0.139437 -0.063357 0.045909 -0.207788 0.235880 -0.135932 0.364504 -0.421645 0.029295 -0.429192 -0.265266 -0.075770 0.743932 0.321620 0.345131 0.298634 -0.299600 0.038690 -0.441880 -0.701139 -0.001572 -0.085409 0.151806 0.038710 -0.091110 0.118350 -0.124717 -0.105324 0.124700 -0.313701 -0.195063 -0.173268 -0.097158 -0.011064 -0.157846 -0.315462 0.127909 0.411353 -0.141241 0.217660 -0.240141 -0.289973 -0.316865 -0.356811 0.258854 -0.181443 0.112221 0.021449 -0.021681 -0.476606 0.233415 -0.290732 0.003454 -0.239724 -0.318898 -0.404006 0.079664 -0.170832 -0.037681 0.087307 -0.333586 0.175779 0.029339 0.093534 0.100907 0.100136 -0.078135 -0.377487 -0.470895 -0.101177 0.006508 0.384679 0.219751 0.003586 -0.122371 -0.244646 -0.283799 0.341410 -0.353765 0.105294 0.248180 -0.437139 0.195784 -0.258883 -0.163322 -0.131164 0.222816 0.110470 -0.486830 0.460456 0.392097 -0.478239 -0.269453 -0.418175 0.190726 0.072567 0.569155 -0.111589 0.154391 0.120512 0.192345 -0.049469 -0.137767 0.219049 0.073375 0.118259 -0.573273 -0.420120 0.267263 0.377003 -0.018331 0.036338 0.109154 0.252952 -0.022014 0.560771 0.067102 0.119175 -0.192663 -0.700740 0.112090 0.257367 -0.001472 0.263802 -0.298957 -0.179193 -0.149552 -0.106033 0.442090 0.209166 0.069581 0.413344 -0.198257 -0.376425 -0.207779 -0.082772 -0.004416 -0.306093 0.270350 -0.296788 -0.065454 -0.216310 0.171128 -0.036194 -0.069272 -0.359462 0.033706 0.156186 0.185907 -0.051715 0.365183 0.099027 -0.217980 -0.097431 0.096026 0.049429 0.382211 -0.306723 -0.288454 -0.172740 0.083389 -0.188554 0.147230 -0.052446 0.232997 0.143330 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.637637 -0.220219 -0.058939 0.750600 0.325665 -0.361660 0.188805 0.394707 -0.200373 -1.214148 -0.546351 0.182280 -0.016892 -0.309446 0.270190 0.177640 0.467922 0.280525 -1.407818 0.309197 0.168003 -0.105648 -0.561699 -0.287807 -0.015714 -0.367208 -0.091113 0.648986 -0.003645 0.778708 -0.544590 0.230081 0.561133 0.170836 0.801967 0.686663 0.154665 -0.193118 0.094100 0.005648 1.525858 0.413192 -0.235946 0.264863 0.542821 0.978793 -0.022088 0.783185 -0.243889 -0.192502 0.437886 -0.428886 -0.304299 0.017926 -1.194690 0.217990 0.866526 0.519550 -0.783785 0.596725 -0.485928 0.269253 0.374174 0.042356 1.305336 0.281160 0.499028 0.639346 1.061280 -0.578649 0.031062 0.173867 0.666294 -0.072867 0.059368 -0.310268 -0.134924 -1.669307 0.136433 -1.307449 0.131922 -0.036531 1.168882 -0.629485 0.231607 0.632875 0.118961 0.714248 -0.768388 -0.182141 -1.067035 -0.018952 -0.090534 1.327627 0.026765 0.156633 0.153657 0.487637 0.090862 0.540835 -0.086067 -0.839715 -0.631109 -1.968422 -0.809702 -0.314020 -0.228256 -0.310099 -0.916539 -0.188012 0.968051 0.728750 -1.174888 -0.093867 0.195637 0.106323 -0.036909 -0.096972 -0.689296 -0.004538 -0.363931 0.383766 0.391452 -0.320707 0.101728 -0.685333 0.175904 0.252921 0.533016 0.104496 -0.959183 -0.026349 0.370785 -0.176838 -0.300795 0.038760 -0.046328 -0.508515 0.420733 -0.710742 0.853640 -1.072159 0.132711 -0.707100 -0.773882 -0.126752 1.012985 0.713736 0.402049 0.447800 -0.355146 0.117238 -1.096153 -1.742392 0.340997 -0.034399 0.298464 -0.176726 -0.162031 0.014673 -0.416397 -0.299815 0.479348 -0.716076 -0.473145 -0.442475 0.869383 0.062989 -0.394896 -0.465989 0.242942 0.969478 0.027781 0.446755 -0.658092 -0.704936 -0.971756 -0.612632 0.708084 -0.310853 0.007521 -0.034609 -0.045913 -0.959740 0.488924 -0.671791 0.350276 -0.485695 -0.388933 -0.963787 0.166370 -0.287889 -0.018710 0.045642 -0.648871 0.350744 0.228800 0.227899 -0.083933 0.184869 0.256586 -0.851953 -1.011426 -0.037171 0.147752 0.890879 0.587300 0.176557 -0.380664 -0.299178 -0.742307 0.848768 -0.726264 0.342791 0.258761 -0.807400 0.721548 -0.635813 -0.428587 -0.447519 0.532817 0.201650 -0.765468 1.340777 0.860179 -0.997995 -0.405208 -0.852525 0.440106 0.268287 1.223157 -0.484977 -0.098301 0.350173 0.119541 -0.159180 -0.349054 0.421079 0.052079 0.344973 -1.158296 -0.656669 0.643596 0.686899 -0.000271 0.266838 0.053131 0.101505 -0.247488 1.294534 0.201128 0.228548 -0.619923 -1.466119 0.292924 0.064053 0.185673 0.166789 -0.424018 -0.521662 -0.268991 -0.024900 0.928512 0.719980 -0.313405 0.827600 -0.873428 -0.909662 -0.588193 0.141085 0.150603 -0.649710 0.432217 -0.587015 0.008513 -0.268386 0.497153 0.089689 -0.311430 -0.793315 0.087292 0.443269 0.297104 -0.557692 0.937298 0.104491 -0.435906 -0.151317 0.035372 0.058316 0.611091 -0.581339 -0.505871 -0.365494 0.407658 -0.556446 0.598496 0.072631 0.462706 0.428415 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 2.108646 -0.453344 -0.871328 2.175214 0.379995 -1.521671 0.471067 1.335528 -0.310590 -2.894346 -1.065020 1.959098 0.066205 -1.085211 0.318517 0.525893 0.852532 0.976136 -3.891999 1.144606 0.090092 -0.019926 -2.128915 -1.496877 -0.006051 -0.014930 0.138605 1.365959 0.044310 2.020004 -1.480927 0.440327 1.170226 0.393058 1.996256 1.330496 0.197645 -0.350601 0.018698 -0.466847 3.629977 1.663149 -0.737779 1.110600 1.306212 2.337385 0.243463 2.415407 -0.583062 -0.181426 0.721042 -0.258938 -1.056506 0.013671 -2.906899 0.516532 2.289049 1.249709 -1.571524 1.563987 -0.920435 0.770274 1.223784 0.318427 3.648178 1.017588 1.183239 1.804013 2.927962 -1.281808 0.519809 -0.179543 2.338401 -0.459508 0.882315 -1.227420 -1.063713 -3.607938 0.125648 -3.993510 0.635655 -0.081949 3.618968 -1.933350 1.219244 1.083088 0.948904 1.755596 -2.367218 -0.442426 -2.516240 -0.108651 -0.851214 4.455830 -0.182736 0.852090 0.034161 1.279474 0.256024 0.959876 -0.071906 -2.194279 -0.570184 -4.998849 -1.660330 -0.495391 -1.348791 -0.823915 -2.389787 -0.477620 1.959918 2.328756 -3.534323 -0.702112 0.280142 -0.355989 0.716754 -0.043314 -1.558053 0.721293 -1.404879 1.028754 0.844690 -1.149676 0.066913 -1.101900 -0.241163 0.864812 1.443142 0.906050 -3.533443 0.158697 1.009664 -0.278966 -0.719756 0.294755 -0.421856 -1.462973 0.824627 -2.155960 2.069906 -2.903594 -0.182298 -1.533660 -2.165338 -0.138748 2.155403 1.619979 1.327039 0.874047 -0.290080 0.139611 -3.098225 -4.882515 1.471619 -0.152643 0.264924 -0.670194 -0.138614 -0.366870 -1.306458 -1.057832 1.974547 -2.022801 -1.475853 -1.396133 3.249374 0.111210 -1.017191 -0.968118 0.495497 2.507453 0.832015 1.101815 -1.700179 -3.004809 -2.966834 -1.124019 1.929415 -0.703338 -0.218560 -0.079324 -0.078750 -2.129541 0.912857 -1.724009 1.418981 -1.009541 -0.596106 -2.493990 0.307184 -0.526283 0.293702 -0.256602 -1.509196 0.993791 0.695137 0.989133 -0.807956 0.799261 1.262815 -2.465734 -2.711966 0.160674 0.652413 2.515450 1.490153 0.799945 -1.281987 -0.474990 -2.340047 2.170698 -2.753081 1.064630 0.453207 -1.573287 2.126177 -1.879156 -1.142669 -1.286651 1.431693 0.354511 -1.994136 3.797740 2.222665 -2.571880 -0.660654 -2.119386 1.404886 0.723736 3.263390 -1.792815 -0.884306 1.024477 0.155924 -0.559049 -1.085088 1.018332 -0.017412 0.808778 -2.745132 -1.274010 1.604607 1.367779 0.092835 0.370381 -0.260540 -0.775527 -1.128641 3.411596 0.692355 0.773084 -2.012054 -4.024104 0.556445 -0.458798 0.678892 0.299851 -1.103734 -1.409461 -0.541057 -0.272359 2.262214 1.280520 -1.278725 1.886808 -3.116337 -2.282922 -1.536409 0.669537 0.524570 -1.530456 1.273685 -1.492151 -0.033610 -0.362330 1.551772 -0.023476 -0.707957 -1.528056 0.291365 1.207312 0.553040 -1.929616 2.434822 0.310865 -1.067064 -0.210953 -0.186795 -0.151093 0.932360 -1.952405 -0.911354 -0.847574 1.321506 -1.706090 2.023210 0.478109 1.217978 0.851665 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.710884 -0.364373 0.040015 0.942520 0.397616 -0.439780 0.046023 0.270313 -0.248183 -0.871425 -0.363940 0.190720 -0.146095 -0.204987 0.391500 0.027945 0.333018 -0.150843 -0.961052 0.366780 -0.267848 -0.303748 -0.562114 -0.395213 0.052777 0.177798 0.201882 0.637700 -0.027580 0.509041 -0.641143 0.225291 0.152749 0.355207 0.796103 0.013180 0.216497 -0.165223 -0.346982 -0.224620 1.197060 0.190074 -0.244444 0.425799 0.520813 0.630282 0.008600 1.001667 0.029942 0.204845 0.718966 -0.489307 -0.120758 0.142254 -1.056718 0.251943 0.921280 0.202415 -0.425346 0.315195 -0.458574 0.395152 0.287622 0.124195 1.252092 0.393917 0.592376 0.549955 0.832273 -0.588024 -0.010285 0.138167 1.156111 0.129204 -0.392923 -0.443197 -0.114999 -1.443297 0.053285 -0.741383 0.288550 -0.287919 0.696094 -0.339145 0.090215 0.313632 -0.187351 0.381479 -0.948985 0.331125 -0.798604 0.044622 -0.134081 0.966534 -0.233893 0.177303 0.157264 0.246853 0.116843 0.587930 -0.116196 -0.517470 -0.198564 -1.534481 -0.823363 0.334611 -0.380997 -0.575201 -0.639025 0.074229 0.658812 0.285022 -0.565032 -0.583290 -0.117571 0.025573 0.164523 0.171089 -0.473379 -0.080920 -0.226174 0.603441 0.446775 -0.153259 0.295512 -0.951437 -0.034812 0.361165 0.798953 0.320806 -0.562583 0.028256 0.238602 -0.065759 -0.331302 -0.311433 -0.374602 -0.332621 0.262516 -0.290413 0.699166 -0.878255 -0.230364 -0.847204 -0.490802 0.313273 1.061444 0.442427 0.592370 0.873173 -0.220778 0.117181 -0.706213 -1.367452 0.292460 0.137807 0.007934 -0.269249 0.019372 0.152553 -0.295666 -0.627235 0.759366 -0.829449 -0.788256 -0.795120 0.167622 -0.019785 -0.352544 -0.439282 0.539878 0.949908 -0.120016 0.484559 -0.426866 -1.030009 -0.720007 -0.482179 0.488880 -0.247246 -0.092488 0.268352 0.252973 -1.074585 0.427658 -0.536124 0.474501 -0.177261 -0.633852 -0.731890 0.053386 -0.161927 0.279335 -0.021004 -0.439826 0.365200 -0.023342 0.633688 -0.192993 0.659158 0.338045 -0.865978 -1.274376 -0.282114 0.485165 0.999235 0.108264 0.216122 -0.239856 -0.400682 -0.635577 0.853703 -0.866662 0.226033 0.219429 -0.393381 0.453154 -0.505670 -0.526648 -0.323096 0.456058 0.310590 -0.570127 1.118010 0.718368 -0.952981 -0.537533 -1.199059 0.598734 0.084411 1.534856 -0.569974 0.045130 0.265505 0.685424 -0.320271 -0.485862 0.482203 0.219070 -0.058624 -0.899908 -0.817697 0.249385 0.466464 0.188656 -0.061578 -0.008923 0.133710 -0.515194 1.267215 0.143635 0.181847 -0.433020 -1.262989 0.016895 0.522855 0.077478 0.431242 -0.810684 -0.661611 -0.448447 -0.004225 0.795077 0.499401 -0.024134 0.677103 -0.566743 -0.485746 -0.480486 0.216424 -0.117602 -0.763110 0.518168 -0.646920 -0.238856 -0.032693 0.342222 -0.148553 0.066747 -0.816196 -0.312877 0.219471 0.073515 -0.330361 0.648981 0.457104 -0.491074 -0.154265 0.220647 -0.148624 0.503647 -0.646905 -0.366381 -0.371279 0.204468 -0.417701 0.403357 0.377966 0.317931 0.058950 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.104922 0.054820 -0.383003 1.386145 0.185338 -0.774232 0.202620 0.537517 -0.457325 -1.352804 -0.544480 1.127439 -0.020093 -0.484272 0.152459 0.249597 0.379214 0.224457 -1.919101 0.562135 -0.155653 -0.290987 -1.038479 -0.787859 -0.026969 0.077199 0.380042 0.956699 -0.075985 1.011732 -0.771723 0.378916 0.467100 0.401278 1.119393 0.442004 -0.072948 -0.212353 -0.342426 -0.425732 1.670375 0.704271 -0.354982 0.577050 0.652319 1.197018 0.221969 0.790074 -0.320603 0.075906 0.362288 0.368671 -0.534192 -0.028632 -1.426994 0.093046 0.933340 0.344788 -0.608345 0.710288 -0.753740 0.445753 0.603859 0.350335 1.873067 0.442635 0.846486 0.984097 1.376141 -0.814239 0.220151 0.023494 1.354173 -0.105590 0.027898 -0.288267 -0.721653 -1.435576 0.012240 -1.987678 0.213515 -0.038327 1.710421 -0.784493 0.198762 0.209486 0.331931 0.882554 -1.460096 0.063604 -1.160103 -0.061957 -0.623778 1.967318 -0.030234 0.488903 0.052904 0.560497 0.213862 0.634417 -0.363588 -1.104910 0.042042 -2.335684 -0.860313 -0.074464 -0.692210 -0.543531 -0.994667 -0.099279 0.972423 1.367155 -1.430117 -0.643008 0.056109 -0.216087 0.286954 0.047600 -0.710830 0.348416 -0.583876 0.710125 0.750094 -0.415900 0.246227 -0.438275 -0.158506 0.372076 0.930676 0.717232 -1.719232 0.007536 0.685479 -0.446539 -0.294002 0.049479 -0.299967 -0.459761 0.373055 -0.923454 1.175620 -1.384445 -0.111931 -0.944002 -0.944333 0.101452 0.613246 1.149668 0.612612 0.589712 0.126626 0.227035 -1.426133 -2.225301 0.702378 0.128071 -0.118652 -0.499717 -0.028758 0.011130 -0.769096 -0.559525 1.312635 -1.119008 -0.979391 -0.873270 1.398886 0.239713 -0.590020 -0.420716 0.339143 0.840432 0.467979 0.823822 -0.808066 -1.844471 -1.492097 -0.594051 0.969782 -0.407044 -0.374420 0.031925 -0.110959 -1.035812 0.463754 -0.868803 0.750811 -0.359523 -0.368253 -1.281039 0.151729 -0.183799 -0.087615 -0.195149 -0.758971 0.433618 0.537802 0.197021 -0.368566 0.642194 0.603246 -0.870151 -1.252775 0.159793 0.401978 1.232772 0.860256 0.396434 -0.841640 -0.324753 -1.173175 1.204418 -1.038992 0.623208 0.214261 -0.739152 1.004527 -0.863860 -0.584693 -0.319322 0.757840 0.221876 -1.331609 1.864155 1.378769 -1.388976 -0.478927 -1.162995 0.761640 0.291947 1.838655 -1.133020 -0.384416 0.408576 0.439354 -0.343199 -0.308648 0.567578 0.078657 0.035806 -1.263948 -0.760697 0.800709 0.628131 0.175561 -0.010776 -0.237097 -0.349249 -0.325573 1.632674 0.391279 0.381746 -0.981514 -2.002897 0.225243 -0.292670 0.093594 0.344485 -0.567849 -0.931144 -0.389000 -0.472329 1.201584 0.090226 -0.988922 0.985592 -1.312398 -1.051931 -1.079207 0.280101 0.063972 -0.854406 0.903428 -0.784326 -0.125294 -0.117936 0.676108 -0.247191 -0.215934 -0.624750 0.016358 0.568414 0.315337 -0.841854 1.217129 0.332189 -0.569329 -0.341397 0.045450 -0.350962 0.524277 -1.355337 -0.511124 -0.450246 0.722555 -0.817492 0.799136 0.538516 0.645645 0.390346 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = 0.155713 -0.171194 -0.064681 0.429426 0.108290 -0.065756 0.074867 0.002421 -0.058886 -0.621293 -0.256981 -0.059772 0.036276 -0.058664 0.167015 0.160235 0.154261 0.138331 -0.457303 0.099785 0.144190 -0.075383 -0.101446 0.009270 -0.028042 -0.301104 -0.014493 0.249444 -0.007299 0.400262 -0.219110 0.240094 0.340238 0.040210 0.233401 0.330157 0.116187 -0.064844 -0.043426 0.126088 0.634304 0.051548 -0.076359 0.024891 0.096684 0.474886 0.003576 0.358770 0.000175 -0.161314 0.287592 -0.207363 -0.072481 0.007082 -0.510858 0.122950 0.291709 0.223435 -0.301481 0.219680 -0.318984 0.126321 0.157956 0.008010 0.582441 0.134890 0.300452 0.340203 0.461443 -0.301373 0.024722 0.128986 0.161469 -0.048251 0.147113 -0.027391 -0.082690 -0.741251 -0.010377 -0.352977 -0.006055 0.024196 0.430301 -0.321807 -0.084675 0.307994 0.039728 0.439946 -0.297682 0.057704 -0.500529 0.015176 0.074209 0.435371 0.130761 0.010779 -0.072587 0.198793 0.006934 0.204147 0.006518 -0.382341 -0.375211 -0.821532 -0.490860 -0.216681 0.004361 -0.048931 -0.573161 -0.021840 0.455653 0.349565 -0.574021 0.051682 0.130525 0.181332 0.122819 -0.096648 -0.290009 -0.029595 0.014159 0.190537 0.216649 -0.125528 0.118358 -0.411588 0.202169 0.083361 0.203891 -0.046874 -0.241360 -0.078391 0.124573 -0.038756 -0.037518 0.090151 0.144970 -0.216357 0.231886 -0.260520 0.394777 -0.487115 0.049581 -0.308907 -0.348326 -0.110321 0.668794 0.363872 0.269143 0.121137 -0.360185 0.025869 -0.536342 -0.801723 0.010484 -0.032734 0.120171 0.060888 -0.111994 0.090581 -0.169121 0.053498 0.201423 -0.320252 -0.186080 -0.053284 0.079444 0.039264 -0.180892 -0.310819 0.012607 0.308714 -0.028179 0.313294 -0.181700 -0.286883 -0.479054 -0.326789 0.337854 -0.175332 0.075975 -0.130863 -0.071433 -0.528355 0.227056 -0.289442 0.030745 -0.107047 -0.262698 -0.483515 0.081023 -0.120498 -0.122834 0.067209 -0.368901 0.132648 0.064948 -0.028640 0.094588 0.059795 -0.006804 -0.344971 -0.430447 -0.014584 -0.100383 0.395809 0.246400 0.043539 -0.181539 -0.212934 -0.337945 0.382224 -0.347919 0.155793 0.142547 -0.367378 0.272206 -0.320118 -0.229396 -0.189467 0.221303 0.056771 -0.385821 0.548690 0.426618 -0.401157 -0.142236 -0.288903 0.222718 0.120563 0.517350 -0.212304 0.028070 0.107308 0.135956 -0.044853 -0.099430 0.203824 -0.099708 0.062960 -0.451369 -0.269335 0.275538 0.366390 -0.031305 0.060910 0.103282 0.089121 -0.040840 0.435029 0.147521 0.036539 -0.229993 -0.639143 0.151901 0.007916 -0.023990 0.177908 -0.300232 -0.111639 -0.015943 -0.090128 0.453470 0.232865 -0.073865 0.415127 -0.366881 -0.429589 -0.254277 -0.047576 0.006353 -0.249676 0.276288 -0.253768 0.008519 -0.086603 0.166595 -0.055581 -0.181444 -0.243718 0.088377 0.254440 0.116166 -0.128396 0.433147 0.097882 -0.197335 -0.134808 0.033581 -0.071796 0.243451 -0.266552 -0.213893 -0.067930 0.178198 -0.257620 0.207184 -0.122808 0.111464 0.167316 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.208587 -0.024618 -0.165537 0.541072 -0.066697 -0.368552 0.222270 0.180406 -0.135718 -0.641563 -0.086766 0.117373 0.121268 -0.223280 -0.009081 0.161104 -0.029671 0.324428 -0.721606 0.205402 0.201490 0.080599 -0.316619 -0.327612 -0.098660 -0.258955 0.025017 0.424035 -0.075244 0.560369 -0.198933 0.046403 0.408164 0.010590 0.268319 0.529437 0.337204 0.108251 -0.052854 0.271240 0.671408 0.429424 -0.396819 -0.032595 0.183878 0.625260 0.292958 -0.040638 -0.729653 -0.213135 -0.182682 0.205049 -0.227441 -0.274745 -0.441933 0.055608 0.568477 0.580186 -0.361877 0.484941 -0.441686 0.030860 0.316061 0.344132 0.651660 0.118779 0.308313 0.437521 0.728693 -0.389453 0.070813 0.032509 0.233209 -0.363898 0.436037 0.153284 -0.530424 -0.949813 0.041301 -0.872772 -0.178919 0.354076 0.491682 -0.506084 0.131653 0.435467 0.309349 0.473414 -0.587406 -0.191558 -0.490232 -0.085954 -0.231200 1.262011 0.234609 0.138318 -0.035593 0.527408 0.327359 0.232560 0.044188 -0.545845 -0.143233 -1.044852 -0.344059 -0.342915 -0.289934 -0.031958 -0.515587 -0.368597 0.777434 0.696073 -0.880382 0.184574 0.303600 0.138038 0.402103 -0.700317 -0.214952 0.512359 -0.276478 -0.096984 0.361655 -0.366301 0.017463 0.182956 0.272072 0.136480 0.100602 0.138466 -0.798583 0.054352 0.278867 -0.281984 -0.048017 0.177102 -0.011214 -0.462227 0.212564 -0.729542 0.596864 -0.627240 0.343022 -0.080779 -0.639478 -0.087400 0.089210 0.288026 -0.045653 -0.238639 -0.341285 0.093191 -0.673850 -1.357954 0.347474 0.226368 0.046932 -0.149607 -0.173138 -0.134778 -0.354204 0.039568 0.549391 -0.340681 -0.108952 0.063575 0.823978 0.161106 -0.289448 -0.137017 -0.035633 0.348120 0.559558 0.396824 -0.386114 -0.433144 -0.703970 -0.289229 0.481078 -0.084063 -0.192854 -0.189418 -0.339881 -0.708306 0.428132 -0.339409 0.463277 -0.192683 -0.008629 -0.627675 0.066958 -0.117062 -0.160286 -0.048620 -0.394664 0.026228 -0.027853 -0.562240 -0.059940 -0.096752 0.384806 -0.283185 -0.386647 0.270988 0.008313 0.489451 0.266255 0.256111 -0.181963 -0.001390 -0.490105 0.480431 -0.166363 0.202227 0.046293 -0.452968 0.659458 -0.307433 -0.406167 -0.249911 0.348691 0.061416 0.332639 1.047231 0.711723 -0.415051 -0.126560 0.086945 0.124709 0.307683 0.604502 -0.576854 -0.351934 0.244919 -0.131682 -0.065381 0.036040 0.189434 -0.208941 0.271643 -0.455438 -0.133867 0.273150 0.450714 -0.038080 0.246904 -0.107012 -0.359170 -0.382451 0.529307 0.211367 0.189696 -0.442926 -0.355436 0.325738 -0.986795 0.011816 -0.161555 -0.047759 -0.205407 0.132073 0.118806 0.513088 0.507861 -0.737055 0.464907 -0.807922 -0.654117 -0.398368 -0.012409 0.135688 -0.352084 0.338053 -0.259609 0.211572 -0.044674 0.248452 -0.016495 -0.237240 -0.011854 0.079514 0.229788 0.076455 -0.570055 0.676826 -0.132380 -0.167499 -0.169833 -0.052764 -0.065621 0.264142 -0.205142 -0.244764 -0.217193 0.502982 -0.330316 0.495978 -0.112568 0.101917 0.485421 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = 6.339046 -1.563248 -6.018211 10.275474 -0.358626 3.027879 1.072811 -1.340370 -0.216985 -14.425912 -5.728809 9.571753 3.419547 4.728095 -1.574701 6.844020 2.366438 1.399803 -11.601379 -1.414580 2.660530 -2.047002 -0.847316 1.893363 -0.529510 -5.237215 7.513727 1.755981 1.736395 9.506278 -2.748349 8.105051 8.722607 -1.716856 1.729821 5.646263 -0.451496 -0.927280 -7.417720 -3.899160 9.879573 1.422975 1.015584 2.612767 -5.139465 10.166029 2.843490 13.151286 3.740856 -5.074426 5.439114 0.919897 -5.020362 -0.262133 -8.375067 1.284524 1.346335 2.734114 -2.389741 2.739760 -1.796198 2.984820 3.693760 2.436413 10.035358 3.164322 8.890894 7.952613 6.954696 -8.525548 2.629392 2.422630 -1.700650 0.880425 8.945979 -6.603390 -5.408173 3.087082 1.096584 -7.545190 -2.262767 -0.840259 13.409234 -7.898604 -4.903014 -0.960421 2.693613 11.065677 -4.720331 5.275779 -9.464858 -0.365942 0.146303 10.728225 2.221093 1.834463 -3.399339 1.944466 -1.451717 1.392149 1.737012 -8.892597 -0.969152 -7.505068 -5.963667 -7.005007 2.295378 6.195163 -11.269157 1.037111 -3.848416 9.064582 -13.918833 -0.090670 2.196992 4.254019 14.187684 8.426072 -3.291767 -0.262590 3.127575 3.242008 5.213487 -3.522986 4.735471 -2.153178 1.865471 1.265185 2.539988 2.510670 -14.539200 -3.345837 3.477663 -2.660302 3.142905 5.852378 8.019623 -2.413417 5.117955 -4.687939 5.987816 -10.791770 -4.978485 -2.640285 -9.727371 -5.687202 9.763497 9.041974 9.070964 -1.467163 -3.944905 -0.798730 -12.492745 -13.808659 -2.617213 0.999037 -1.471271 6.132210 -2.262180 5.320623 -8.094779 4.605900 5.765427 -3.998118 -6.292832 0.350546 3.864837 1.774051 -2.461212 -2.712989 -1.748883 -4.714259 1.550573 13.054665 -0.666307 -17.576744 -15.661884 -4.831685 8.575339 -5.395787 0.866420 -5.092081 -4.311527 -7.233436 -2.225030 -6.568746 -0.867212 1.765661 -5.260853 -11.258729 5.358423 -1.363064 -5.015266 4.107851 -9.057798 1.665686 6.608681 1.125470 2.481181 0.765776 -1.588164 -6.572474 -4.833426 3.910467 -7.592225 9.179240 5.566179 -1.897583 -4.153697 -5.806103 -7.833575 4.955442 -7.971556 6.376907 0.564757 -0.653017 2.375833 -9.168230 1.709488 -4.066792 3.876702 1.651490 -14.929357 11.285000 8.213208 -5.346342 0.544939 -0.481364 4.954286 0.669953 4.420793 -6.720045 -6.049099 1.364795 2.045195 0.169855 0.099914 2.173261 -3.558934 -4.511866 -7.021173 -2.640552 6.560051 3.936374 -1.311524 -1.536972 5.651950 -4.253924 3.801175 7.011245 4.950707 0.252875 -5.371617 -20.371903 3.712393 -3.052328 -4.584019 1.662239 -6.440690 -0.380813 4.894293 -8.241425 7.867743 -4.878929 -3.363442 8.484518 -11.700980 -8.432908 -7.661850 -4.191809 0.669874 1.725777 2.162554 -3.896570 2.014392 -0.670198 0.995500 -5.627845 -6.002451 4.608260 5.309412 9.469661 -0.898734 2.202208 9.471693 3.133592 0.017979 -3.123568 0.479768 -4.308346 1.092400 -11.996423 -1.136709 4.139881 4.363983 -6.779434 -0.107337 -1.615347 -0.151304 0.777317 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 2.019264 -1.001361 -2.380569 4.729882 -0.028833 0.796393 0.246935 -0.681568 0.162877 -5.809842 -2.408947 1.951341 1.446204 0.888378 0.435803 2.498927 0.808390 0.466300 -3.914232 -0.028675 1.329041 -0.569779 -0.844939 0.596378 -0.312652 -2.258925 2.502537 0.718337 0.371538 3.623985 -0.950119 3.368243 3.432011 -0.750469 1.028897 2.189573 -0.489611 0.095312 -2.269821 -0.424004 4.469268 0.894106 0.051066 0.833280 -1.149954 3.949109 0.770010 4.586921 -0.128563 -1.918263 2.630605 0.737915 -0.894444 -0.187810 -3.507763 0.850235 2.082255 1.224747 -1.579613 1.171507 -1.684523 1.200869 1.583510 1.492983 4.582109 1.674923 3.946683 3.521669 3.091118 -2.920258 1.094990 0.804365 -0.423433 -0.449297 3.658177 -2.124462 -2.427902 0.202604 -0.104731 -2.387486 -0.324114 0.011917 5.040505 -3.058260 -1.692913 0.236342 1.316562 4.387254 -2.228243 1.622310 -3.619432 -0.167168 -0.467583 4.572733 0.653972 0.631629 -1.363302 1.416641 -0.592705 0.506780 0.954024 -3.527701 -0.620024 -3.843843 -3.398550 -2.524339 1.228808 1.809944 -4.890150 0.298081 -0.686967 2.099852 -5.574273 0.392880 0.862036 1.923230 5.819089 1.456204 -1.829096 -0.059988 0.995901 1.392346 1.861236 -1.021850 1.917541 -2.114112 1.126068 1.019177 0.972363 0.653834 -4.596743 -0.879908 0.687339 -0.866354 0.584034 2.308885 3.074398 -1.694875 2.155971 -1.925146 2.970559 -4.930408 -1.543266 -1.835339 -4.047607 -1.804087 3.836119 3.023226 3.481836 -0.714044 -2.553254 -0.114911 -5.456163 -5.618409 -1.214674 0.433620 -0.435147 1.934016 -0.847321 1.803102 -2.882215 2.112611 2.760527 -1.763684 -2.071711 0.196592 1.953896 0.484259 -1.399503 -1.116955 -0.786469 -1.056754 0.493073 5.123879 -0.088392 -5.527341 -6.448778 -1.552928 3.250826 -1.955967 0.599627 -2.051251 -1.393604 -3.855067 -0.052754 -2.835361 0.094713 0.248661 -1.919246 -4.346859 1.638381 -0.510172 -1.155710 1.037500 -3.458906 0.728098 2.482012 0.427679 1.028971 0.588488 -0.326549 -3.100931 -2.517477 1.356410 -2.597033 4.031179 1.954992 -0.720283 -0.911396 -2.081672 -3.256249 1.830663 -2.268878 1.990458 0.590516 -1.073492 1.041706 -3.704287 -0.285564 -2.380827 0.921012 0.260212 -4.203404 4.441834 2.969438 -2.280696 0.147909 -0.469798 2.390074 -0.079084 1.995232 -2.312798 -1.756295 0.219151 0.676580 0.008982 -0.345774 0.892643 -1.786397 -1.346869 -2.986474 -1.192889 2.979945 1.818790 -0.582882 -0.405167 1.717329 -1.907606 0.787642 2.907207 2.363203 0.138505 -2.300037 -6.918927 1.150698 -2.380889 -1.663407 -0.194031 -1.887052 -0.468073 1.070629 -1.589247 3.149250 0.103361 -1.186327 3.436231 -4.744085 -3.582429 -2.994073 -1.074653 0.066012 -0.136044 0.333506 -1.724902 0.886512 -0.168309 0.794429 -1.736502 -2.665362 1.157597 1.594219 3.664372 -0.712888 0.013683 3.694106 1.573730 -0.401610 -1.161015 0.514113 -1.949968 0.940929 -4.208203 -1.016309 1.070985 1.658684 -2.645336 0.335865 -1.085294 0.415092 0.538347 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = 2.782357 -1.830827 -3.226469 6.573191 0.179638 0.691650 0.275057 -0.961405 0.333364 -7.833343 -3.054145 4.420607 1.601655 0.842567 0.003959 3.059531 1.614568 0.825703 -6.327832 -0.016080 1.153472 -1.132500 -1.663513 0.188681 -0.362686 -2.925847 4.798772 1.474967 0.371372 4.640918 -1.440743 4.340815 4.313832 -0.838057 2.062291 2.946605 -1.351049 0.085516 -3.260157 -0.980165 6.374131 1.466695 0.064361 1.720362 -0.953805 5.298221 1.573247 5.564881 1.648007 -2.019960 3.019959 3.126678 -1.489219 -0.691268 -5.603978 0.854658 2.726157 0.921128 -2.167975 1.624459 -1.744182 1.524577 2.117878 2.092088 6.810981 1.633469 5.717641 5.016689 4.299635 -3.718630 1.378457 0.825990 0.622919 -0.038500 5.393196 -3.074723 -4.225796 0.726330 -0.538257 -3.980263 0.325378 -0.196227 6.598912 -3.817920 -2.598049 -0.566326 1.877054 5.910102 -2.848876 1.598043 -4.993696 -0.177645 -1.070029 7.090957 1.348409 1.528757 -1.481450 1.967362 -0.848279 1.027401 1.262329 -5.180455 0.802353 -6.775790 -4.278237 -3.707680 1.387475 1.936619 -6.042419 0.694470 -1.339903 3.128757 -7.427473 0.066911 0.837113 1.676893 7.374935 -0.066036 -2.142933 0.011882 0.803822 1.972591 2.188574 -1.617594 1.960091 -2.024201 1.413916 0.966397 1.849781 1.220446 -6.154536 -1.122523 0.932225 -0.317932 0.901394 2.843027 3.883378 -2.213770 2.621864 -2.637220 3.975650 -6.519582 -1.787506 -2.834876 -4.562659 -2.469065 4.074105 3.492536 4.966696 -1.177788 -2.360289 0.022757 -7.673703 -8.534069 -0.557603 0.443628 -1.172666 2.305652 -1.189994 2.154312 -4.139216 2.052983 4.360243 -2.731644 -2.882559 -0.290957 2.665745 0.976778 -1.831269 -1.286037 -1.081020 -1.049429 1.562694 6.604359 -0.617531 -8.939158 -8.412242 -2.198808 4.260668 -2.742157 0.398038 -2.338235 -2.171992 -4.748106 -0.072623 -3.863909 0.316286 -0.211363 -2.158543 -5.847825 1.739752 -0.694474 -0.803036 1.136871 -5.086430 1.296026 3.008767 0.658151 0.934263 0.898640 -0.132100 -4.189841 -3.254383 2.226583 -3.214490 5.076013 2.607470 -0.678775 -1.779229 -2.541463 -4.567863 2.095856 -3.410323 3.035274 1.149593 -2.283910 1.540121 -4.916523 -0.149457 -2.662857 1.471218 0.166783 -6.237008 6.851911 4.239805 -3.453012 0.074226 -0.483514 3.071849 -0.460328 2.917301 -3.789962 -2.528445 0.640861 0.755402 -0.044595 -0.328880 1.422600 -1.494767 -1.583908 -4.649828 -1.993162 4.098109 2.354339 -0.616329 -0.429624 1.760020 -2.968918 0.709532 4.497972 3.130341 1.108323 -3.568438 -10.132810 1.280891 -3.670834 -2.156071 0.328193 -2.453267 -1.245860 1.489252 -2.211896 4.452298 -0.954478 -2.242909 4.491954 -6.374639 -4.746646 -4.243416 -2.072234 0.544743 -0.392166 1.106359 -2.743567 0.643663 -0.979148 1.482804 -2.709208 -2.903195 2.318147 2.552188 4.437876 -0.343964 -0.194729 4.868182 1.941069 -0.904797 -1.784450 0.269880 -2.983220 1.804272 -6.261006 -1.263136 1.032943 2.406070 -3.508042 0.657358 -1.095157 1.682951 0.693460 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 1.893763 -0.513886 -1.030001 2.658803 -0.022354 0.429747 0.677097 0.254413 -0.083094 -4.350109 -1.963170 1.833261 0.780463 0.943673 -0.111689 1.506092 0.696042 0.778342 -4.073974 -0.244439 1.085787 -0.121401 -0.062625 0.218108 -0.096122 -1.414751 0.822190 0.863321 0.447906 2.966946 -0.959958 1.770677 2.629985 -0.348479 0.353188 2.060786 0.375103 -0.193734 -1.242344 -0.696514 3.243037 0.520903 0.051391 0.849235 -0.950275 3.112509 0.444852 3.972639 0.643680 -1.574881 1.865737 -1.212950 -1.624591 -0.094949 -2.388984 0.560904 1.487457 1.629313 -0.949095 1.353418 -0.638758 0.818843 1.117222 0.099110 2.812530 1.526818 2.040967 2.080191 2.596189 -2.512381 0.592426 0.636195 -0.163807 0.024083 1.755892 -2.165189 -1.038183 -1.210359 0.448515 -3.027687 -0.716633 -0.254028 3.966311 -2.483555 -0.743914 0.696523 0.538140 2.984269 -1.455527 1.119417 -2.806781 0.000000 0.145952 3.498492 0.400387 0.392313 -0.719316 0.705855 0.021993 0.722957 0.336057 -2.342941 -1.492790 -3.250207 -1.909577 -1.766969 0.325086 1.410932 -3.419584 -0.127051 0.042358 2.120951 -4.302784 -0.104232 0.978668 1.523666 2.776274 2.347221 -1.483324 -0.143709 0.508087 0.837060 1.551405 -1.395433 1.138015 -1.257217 0.321739 0.529266 0.689949 0.361902 -3.917649 -1.003375 0.804534 -0.851549 0.623918 1.353424 1.783808 -0.733704 1.548405 -1.873990 1.949459 -3.448010 -1.098112 -0.773296 -2.910964 -1.445028 3.426479 2.388910 2.092777 -0.094182 -1.530625 -0.404033 -3.388768 -4.226013 -0.361059 0.217067 0.547742 1.306506 -0.712040 1.042945 -2.073886 0.787458 1.081301 -1.211192 -1.497002 -0.118549 1.686692 0.262088 -0.841965 -1.290884 -0.067250 -0.145260 -0.013587 3.061332 -0.605867 -3.925880 -4.131822 -1.726047 2.611945 -1.343120 0.237496 -1.344525 -0.840188 -2.592285 -0.090785 -1.885767 -0.155957 0.393369 -1.907608 -3.460452 1.493691 -0.544416 -1.228424 1.233856 -2.559401 0.364395 1.654836 0.887860 0.725956 0.190081 -0.162720 -2.375671 -2.049398 0.419511 -1.776079 2.715524 1.637499 -0.157701 -1.210562 -1.486883 -2.235841 1.918264 -2.213609 1.532015 -0.058162 -0.400488 1.356282 -2.382860 0.227933 -1.751102 1.207538 0.715878 -4.171864 3.647383 2.312608 -1.754592 -0.277428 -0.826744 1.228001 0.644074 1.920722 -1.893372 -1.716673 0.749247 0.205450 -0.050941 -0.569092 0.881531 -0.942991 -0.583469 -2.251481 -0.917744 1.852849 1.572470 -0.444187 0.209026 1.716226 -0.474889 0.827655 2.415202 1.123588 -0.320550 -1.455219 -5.880859 1.357639 0.234971 -0.793638 0.479947 -2.170644 -0.431229 1.363465 -1.401875 2.486968 0.195148 -0.530003 2.595693 -3.117541 -2.639505 -1.873985 -0.713253 0.493908 -0.106656 0.497526 -1.174287 0.698267 0.073444 0.398223 -0.728386 -1.933126 -0.151593 1.126203 2.814784 -0.165032 0.180312 3.060076 0.540290 -0.331586 -0.637561 -0.057240 -0.549997 0.469451 -2.408448 -0.379494 0.708818 1.293455 -1.983876 0.763539 -0.514781 -0.173621 0.696550 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 4.583028 -1.322013 -5.347718 9.408879 -0.690653 0.993560 0.713591 -0.794063 0.112599 -11.942920 -4.928724 6.074218 2.959339 1.616779 -0.177180 5.527418 1.663962 1.995009 -9.705177 -0.054144 2.674823 -0.918469 -1.761434 0.072892 -0.437076 -4.025415 5.382396 0.931455 0.699082 7.597816 -2.043970 6.704598 6.934958 -1.554410 2.113195 4.523030 -2.290199 0.161432 -4.149532 -1.599888 8.779622 2.428447 0.355937 2.124661 -2.724561 8.023762 1.790796 8.416488 0.123337 -3.603442 4.421374 3.058251 -2.931420 -0.279384 -7.231938 1.312864 3.812637 2.437543 -2.257365 2.724120 -2.812635 2.488431 3.465683 2.415864 9.785706 3.387966 7.877730 7.690771 6.600096 -5.520470 2.969600 0.667986 -0.581491 -1.239721 8.154928 -4.961967 -5.659555 1.626330 -0.700567 -7.130169 0.215778 0.107890 11.748637 -6.540768 -2.918151 -0.659417 3.620220 9.262400 -4.328056 2.665254 -7.074504 -0.207815 -2.151328 10.472065 1.674306 2.404696 -3.235398 2.855308 -1.175434 0.511081 1.415984 -7.202629 0.185463 -8.627114 -5.829138 -5.377290 1.854420 4.083197 -9.671071 0.706990 -2.200791 5.519885 -12.370796 0.451228 1.432740 3.144147 11.228761 2.484133 -3.826421 0.333137 0.955018 2.964617 3.169320 -2.968489 3.233414 -3.151016 1.177022 1.511170 2.486274 1.902112 -10.946885 -1.884316 1.325145 -2.086640 1.860308 5.532458 6.347555 -2.933727 4.026200 -4.740908 5.663815 -10.125289 -3.147180 -3.523162 -8.432923 -3.946544 6.303669 6.156832 6.610266 -2.238351 -3.561255 -0.511406 -11.728910 -11.536214 -1.191149 0.537693 -1.077971 3.884718 -1.674831 2.846684 -6.524228 3.870166 6.051676 -3.839946 -4.199397 -0.248909 6.120866 1.466100 -2.958198 -2.342541 -2.051568 -2.167434 1.985762 9.905951 -0.598200 -12.001901 -13.627628 -3.273683 6.872168 -4.009734 0.869436 -4.535978 -2.818286 -6.828452 -0.636058 -5.773383 0.450085 0.831342 -2.953156 -9.144474 3.020792 -0.680659 -2.676243 1.719163 -7.106328 1.621296 5.846303 0.780358 1.339756 1.051526 -0.184363 -5.877887 -4.645268 3.543672 -5.292515 7.184645 4.791948 -1.000782 -3.240713 -3.694395 -6.942117 3.637537 -4.455172 4.699538 0.693905 -1.793301 2.603032 -7.593173 0.395500 -4.763060 2.094927 -0.141842 -10.943197 9.695921 5.943919 -4.732346 0.750293 -0.996799 5.061639 -0.360966 3.773540 -5.201595 -4.251048 1.001959 0.399709 -0.024053 -0.841420 1.919811 -3.401681 -2.611415 -6.056667 -1.800785 6.556880 3.251165 -1.307847 -0.440271 3.167994 -4.721200 2.086242 5.846159 5.120497 0.318967 -5.441939 -15.151976 2.019706 -5.228544 -2.727574 -0.366803 -3.332581 -1.355328 3.084395 -3.781629 6.623411 -0.923729 -3.429783 6.655604 -10.043742 -7.359691 -6.136906 -2.102801 1.018602 -0.242713 0.592066 -3.632095 1.474204 -0.167170 2.330271 -3.263235 -5.819263 2.969093 3.921899 8.194012 -0.952891 -0.314590 7.721699 2.907205 -0.522602 -2.502382 0.394497 -4.027697 1.537983 -8.995254 -1.547358 2.274411 3.760282 -5.855599 1.614205 -1.823173 1.368670 1.478680 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 1.369677 -0.611206 -0.852266 2.503086 0.137055 0.163287 0.489120 0.161193 0.173912 -3.522025 -1.494751 1.394841 0.578950 0.279767 0.101144 1.097713 0.729621 0.749375 -2.865334 -0.026356 0.719000 -0.082761 -0.440589 -0.131460 -0.143659 -1.176790 1.032741 0.734648 0.271925 2.284518 -0.694776 1.339785 2.013986 -0.267045 0.627721 1.671059 0.171770 0.035432 -1.001360 -0.422556 2.939749 0.702039 -0.096992 0.922132 -0.297238 2.486952 0.426100 2.641253 0.217323 -1.062730 1.344543 -0.137683 -0.963476 -0.303094 -2.280548 0.582263 1.637934 1.119996 -1.025997 1.167925 -0.741354 0.654901 0.950351 0.342608 2.523943 1.183507 1.820640 2.025020 2.275052 -1.906533 0.428538 0.483560 0.319864 -0.008194 1.782845 -1.488351 -1.307073 -0.993374 -0.057657 -2.150929 -0.070034 -0.172434 3.258701 -1.934184 -0.477831 0.606976 0.575039 2.315879 -1.255485 0.476426 -2.258388 -0.000608 -0.245586 3.115934 0.435311 0.498971 -0.562298 0.838009 -0.034154 0.642404 0.479388 -2.040509 -0.692395 -3.212299 -1.771708 -1.486388 0.344472 0.758697 -2.583659 -0.090377 0.235582 1.440483 -3.453937 -0.004077 0.688152 1.024889 2.404226 0.490277 -1.148162 0.042991 0.236515 0.617651 1.001698 -1.138582 0.717358 -0.983637 0.321846 0.428802 0.733584 0.312258 -2.737432 -0.640322 0.340066 -0.325917 0.290898 1.021037 1.268048 -1.073649 1.224716 -1.524529 1.825854 -2.884016 -0.692942 -0.964597 -2.266910 -1.059620 2.598493 1.394007 1.947040 -0.236526 -1.275524 -0.309470 -2.931857 -3.661021 0.049925 0.227326 0.247521 0.903664 -0.530901 0.643557 -1.725918 0.588370 1.281324 -1.139381 -1.028299 -0.026383 1.557578 0.111863 -0.838154 -1.099548 -0.066471 0.278080 0.398468 2.343773 -0.578255 -3.080941 -3.314809 -1.239320 2.027111 -1.082837 0.212088 -0.895294 -0.751709 -2.124925 0.172127 -1.661728 0.329555 0.005004 -1.331180 -2.773652 0.978491 -0.458363 -0.518571 0.815476 -2.068380 0.469693 1.083692 0.547321 0.341998 0.325625 0.127624 -2.135135 -1.784047 0.421739 -1.158711 2.301898 1.219893 -0.028692 -0.841813 -1.073665 -1.882031 1.362146 -1.593916 1.143612 0.192418 -0.779138 1.109235 -1.920428 -0.107086 -1.740342 0.854234 0.436177 -2.750725 2.995483 1.865512 -1.563798 -0.288372 -0.615028 1.103445 0.264372 1.736499 -1.605583 -1.272454 0.689002 0.004729 -0.067905 -0.590623 0.703345 -0.613004 -0.238896 -2.094940 -0.856611 1.675371 1.294461 -0.380993 0.224199 1.144544 -0.682288 0.244023 2.208919 1.246744 0.131399 -1.586725 -4.337556 0.937275 -0.591614 -0.482409 0.166915 -1.388411 -0.602395 0.890500 -0.563213 2.007306 0.541093 -0.584690 2.133077 -2.634912 -2.217338 -1.411333 -0.598815 0.556288 -0.520144 0.446638 -1.168888 0.463953 -0.213369 0.569966 -0.618083 -1.366514 0.081360 0.863941 2.157834 -0.051482 -0.180640 2.432151 0.550663 -0.557942 -0.436631 0.005672 -0.670025 0.653459 -2.102494 -0.466341 0.278501 1.090213 -1.592674 0.846923 -0.460971 0.281433 0.650985 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp___GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 1.132373 -1.933157 -0.371978 3.242250 0.534625 0.986733 0.337032 -0.416472 0.566977 -4.326374 -1.942554 2.405556 0.165337 0.629002 0.035591 0.596368 1.381942 0.394122 -4.440645 -0.424459 0.509251 -0.368989 0.317919 0.024815 0.098001 -1.354661 3.379886 1.335201 0.419699 2.211457 -0.669549 1.796404 2.141402 0.361051 1.009303 1.540595 -0.998157 -0.304622 -1.974726 -1.374434 3.500536 0.446955 0.464714 1.622497 -0.319424 2.667091 1.592284 2.494760 4.112119 -0.878894 1.759186 0.437042 -0.979144 -0.807061 -3.288327 0.105362 0.713138 0.260970 -0.872239 0.725246 -0.307106 0.675906 0.688847 -0.075618 3.272767 0.236239 2.983721 2.120088 1.712642 -2.204759 0.242947 0.611532 0.791404 1.144428 1.900071 -2.596543 -1.995883 -0.830149 -0.703914 -2.455498 -0.028153 -0.729366 2.651976 -1.299886 -1.260911 -0.704717 -0.403751 2.519736 -0.594467 0.473528 -2.942004 0.118522 0.608048 2.147463 0.653283 0.242554 0.099178 0.250605 -0.484746 0.908052 1.255802 -2.463488 0.807525 -4.338974 -1.217471 -1.891547 1.341083 0.613678 -2.252740 0.988468 -1.686400 1.029068 -3.213453 -0.977467 0.486863 0.774386 2.026803 -1.173605 -0.103588 -0.792718 0.963718 1.624857 1.475504 -1.652690 0.878205 -1.020099 0.398603 0.236212 1.164301 0.542233 -1.298010 -1.638459 0.348881 1.185587 0.519857 0.904092 1.482804 0.066877 1.181545 -1.100931 2.190657 -2.529139 -0.744791 -1.338855 -0.596176 -1.547425 4.039314 1.381001 2.778838 -0.050223 -0.794032 0.202861 -2.759200 -4.019548 0.141248 0.185874 -0.220649 1.392655 -0.485773 1.487555 -2.080756 0.540692 1.239229 -0.918115 -1.446229 -0.057427 -1.978472 0.413936 -0.682266 -0.841587 0.244406 -0.101468 0.026398 2.940026 -0.464331 -5.476992 -3.283191 -1.379898 2.067870 -1.702311 -0.145857 -0.826776 -0.908365 -1.373155 -0.121210 -2.003936 -0.300079 0.133873 -2.387548 -2.989092 0.893412 -0.743611 0.885403 1.409628 -2.380020 0.498850 1.117387 2.123524 0.550456 0.910166 -0.278979 -2.302869 -1.516402 0.187622 -1.509308 2.563416 0.399780 -0.484039 -1.909656 -1.451596 -1.573328 1.093111 -1.513010 1.546922 0.178932 -1.529298 0.395765 -1.682150 1.237622 -1.053680 0.641364 0.793920 -5.347819 2.706049 2.116337 -1.742022 -0.473022 -0.643974 0.950651 -0.315102 1.430986 -1.890259 -1.408936 0.315492 0.383157 0.136752 -0.810372 0.565693 0.090237 -1.315720 -2.903022 -1.819342 2.013696 0.771281 -0.226379 -0.297927 1.765130 -0.207459 0.472446 2.823226 1.203769 0.821120 -1.851125 -6.525252 0.796050 2.516601 -0.268674 1.174063 -2.156514 -0.925269 0.825271 -1.328966 2.039314 0.166774 -0.671228 2.310024 -1.961002 -1.827189 -2.198828 -1.535416 0.553734 -0.009973 0.712343 -1.261043 0.111833 -0.850660 0.194798 -1.286236 -0.713845 1.091284 1.460826 2.201255 0.419248 0.861520 2.202881 0.885582 -1.001667 -0.641108 0.078416 -1.816061 1.154714 -3.288038 -0.431591 0.708096 0.914427 -1.442721 -0.222052 -0.389379 1.036869 -0.409766 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.762469 -2.484395 -3.605004 10.185956 0.583784 1.339552 1.237191 0.282576 0.714029 -14.694140 -5.549659 8.758912 1.470984 2.070144 -0.179323 3.736627 2.417907 2.668673 -13.438467 -0.427131 1.732284 0.137176 -0.046048 -1.227680 0.229321 -2.426514 5.009164 1.582581 1.341144 6.819943 -2.390036 6.905944 6.853949 0.313592 1.902755 3.520854 -1.813283 -0.855038 -4.344782 -4.733336 10.147138 2.368458 2.017481 4.766404 -2.899191 7.641340 1.415535 10.412620 5.203599 -3.149574 4.477006 -0.706935 -3.761683 -0.293258 -8.486619 2.246746 2.728878 2.060341 -1.885821 2.986287 -1.633300 2.254387 2.914173 -1.570548 10.105739 3.452697 7.748076 8.717145 6.333370 -5.784482 1.795198 0.779223 0.647922 1.161899 7.735574 -7.418957 -4.549958 -1.860630 -1.127169 -9.315279 0.116750 -1.973135 14.094108 -5.982518 -2.011485 -0.097312 2.592783 9.095051 -3.495882 3.024830 -8.458685 0.302098 -0.593779 9.501027 1.476660 1.361243 -2.579162 1.052601 -0.897850 1.559087 2.290918 -5.417608 0.276056 -11.399905 -4.599674 -3.812673 2.504217 3.223041 -9.503160 1.594701 -2.991911 6.924702 -13.595023 -2.574991 1.735862 2.708958 9.203063 3.599519 -3.079644 -1.048839 1.168437 3.346807 3.113188 -4.885581 2.856499 -3.026067 -1.385676 0.761271 3.567963 1.918419 -11.004428 -3.823867 0.402673 -0.099061 1.743402 3.970216 6.511537 -1.242794 3.935762 -4.224505 5.240731 -9.541908 -3.302484 -2.967975 -6.618931 -3.881026 12.771910 5.721591 8.181445 -0.269199 -2.982169 -1.421183 -10.488689 -12.475251 0.707291 0.635174 0.894883 4.910719 -1.126806 2.612129 -6.041117 3.000612 5.419854 -3.777577 -4.989288 -0.379626 2.010769 0.334201 -2.398444 -4.284962 0.531383 0.102816 -0.773536 9.440163 -0.997457 -14.452930 -12.544992 -3.749105 6.372998 -3.683109 0.783561 -3.251340 -1.714819 -4.368137 -1.214721 -6.995898 0.884174 1.410762 -6.069852 -9.393899 2.991216 -1.265645 -1.907581 2.990153 -6.464435 2.129006 5.811624 5.257896 0.316379 2.070727 0.378729 -7.340560 -5.714435 0.475150 -5.066729 6.578511 4.793676 -0.267287 -5.316908 -3.906300 -6.427313 4.225910 -6.180996 4.292917 -0.513793 -2.666363 2.185622 -7.372078 2.085101 -5.278074 2.163701 1.153916 -17.621568 8.982138 5.174252 -4.998858 -0.790965 -3.864498 3.811965 -0.096047 5.929223 -5.386295 -3.958870 1.389422 0.430040 -0.322782 -2.978156 2.070405 -1.867217 -3.039546 -7.687890 -3.632192 5.905382 2.793843 -1.020776 0.006814 5.040874 -1.619606 2.265462 7.802402 4.878808 -0.126790 -6.231651 -19.563376 2.399607 3.438933 -1.787881 1.608766 -6.223223 -2.294083 3.742107 -4.826534 6.052632 -1.267471 -1.205462 6.362975 -9.579484 -5.984342 -4.638418 -1.631785 1.407746 -0.412415 0.847508 -3.387614 0.811136 -0.484532 1.142625 -2.715862 -4.974333 -0.048683 3.414556 8.436082 0.513779 1.027849 7.454907 2.975877 -1.723594 -0.979071 -0.468994 -3.397754 1.026887 -11.267529 -0.698720 1.998761 2.235723 -5.236622 1.600376 -0.918158 0.705212 0.414976 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 6.607469 -1.128309 -0.471360 6.820108 2.193647 -1.683819 0.054682 4.161465 0.831623 -7.562505 -4.699748 5.170173 -0.368352 0.677273 3.018682 1.011090 2.739739 2.456607 -10.644246 1.818699 -1.741450 0.301418 -2.986206 -4.407182 1.099895 2.038587 2.618131 2.920928 1.378348 3.988597 -4.876023 2.102277 2.931244 1.364608 4.039621 -0.052031 1.273342 -2.223993 -4.224018 -6.180429 10.132424 2.311251 1.394931 7.265159 1.148609 4.796476 0.639552 7.275660 3.714459 -1.100980 3.302814 -5.120641 -3.011149 0.829300 -8.547591 4.184252 4.239745 0.980656 -3.563167 3.705118 1.381199 3.098681 3.230621 -4.198217 8.399356 2.569316 5.279282 5.008267 6.761053 -4.486064 1.593046 0.316907 6.934581 2.091109 1.142254 -7.089458 0.274043 -8.182286 1.366617 -8.475844 3.414047 -3.820928 8.296051 -4.732045 2.535463 2.882300 -0.671756 5.337870 -5.917165 1.997159 -5.551176 0.264599 -0.974491 6.778956 -1.000630 0.528762 1.434843 1.560678 -0.545797 3.404558 0.574157 -2.508327 0.734790 -11.438160 -4.770879 2.398703 -1.039752 -2.128743 -3.920182 1.741054 0.672175 3.696995 -6.716285 -5.415603 0.402507 -0.113147 -1.107309 0.999394 -1.201405 -2.782515 -1.566850 5.225100 1.247342 -5.291798 3.610829 -3.211856 -3.102199 2.870427 6.669702 2.887742 -3.499138 -2.977994 0.483964 1.573692 -1.789158 -0.007696 0.895522 -2.428047 3.746095 -2.822737 4.147427 -6.254894 -3.400464 -3.900615 -2.144405 -0.883166 9.822798 0.425453 5.453772 5.666959 -1.061944 -1.001181 -5.752725 -8.948028 3.932665 2.488025 0.785341 1.867760 0.185764 0.903796 -3.188822 -4.296452 4.362413 -5.993216 -6.754352 -4.130206 2.042956 -0.847018 -2.344386 -5.643933 5.710515 6.153060 -2.009601 2.989166 -1.472247 -7.515311 -4.741548 -2.778087 4.764619 -1.614681 0.740559 1.191803 0.767257 -3.796241 0.746754 -6.469344 2.374748 0.076338 -6.087997 -6.608882 0.952816 -0.921557 1.511125 1.332986 -5.090872 4.294683 1.415918 7.379672 -3.288458 3.994329 3.616226 -8.158252 -8.946698 -3.190367 0.721233 6.306784 1.767904 1.460229 -3.961667 -2.706808 -2.049177 5.317585 -8.131589 2.773093 -0.513479 -1.778834 1.936720 -5.419936 -1.792711 -5.148174 2.508657 1.996662 -9.826351 7.003690 3.947240 -6.733763 -2.634716 -8.857396 4.975416 0.441412 10.961755 -4.474142 -1.422172 2.294787 2.919498 -1.767834 -6.328764 3.252446 2.013113 -2.628126 -6.452345 -5.142559 3.441188 2.782788 0.712748 1.318192 4.168471 2.244121 -1.276662 9.883737 1.635218 0.320449 -5.241611 -12.701138 1.197240 9.528349 1.106658 2.468994 -6.931891 -4.006089 -0.413163 -0.465189 4.685775 4.023853 3.875487 4.851743 -5.639667 -4.586960 -2.423433 1.813309 0.518453 -2.932576 1.913135 -4.511279 -0.764911 -1.449247 2.085538 -2.863250 -0.352860 -6.457764 -0.915397 3.925637 0.442850 -0.388507 6.804016 3.861277 -3.447664 0.976176 -1.726126 -1.547355 1.399260 -4.721697 -1.814125 -0.639998 0.238583 -5.085164 3.294618 1.642704 1.765628 -0.389340 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/boyer-moore-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/boyer-moore-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/boyer-moore-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.575488 -2.089368 -4.361390 8.659590 -0.325536 1.399174 0.790281 -0.340203 0.523141 -10.762302 -4.616808 8.233830 1.919975 1.719868 -0.251913 3.322111 1.993176 1.970976 -10.152127 -0.624559 1.724147 -0.822986 -1.182250 -0.739226 -0.241054 -2.714338 6.862754 2.011543 1.091913 6.428277 -1.658397 5.627659 5.489746 -0.413008 1.753364 3.721898 -2.552463 -0.425725 -5.057791 -3.710240 7.744091 1.727619 0.830062 3.504511 -2.353336 6.883737 2.757337 6.416553 4.649325 -2.830898 3.012194 4.015018 -3.034400 -1.458003 -6.787675 0.631830 2.059280 1.786062 -1.574357 2.354293 -1.621072 1.850357 2.739951 0.953601 8.529530 1.783813 7.127997 6.756558 5.099694 -5.640026 2.123815 0.724577 0.322184 0.410238 7.398843 -5.166656 -5.288290 0.134634 -1.139094 -7.826803 -0.201660 -0.419912 11.346466 -4.988561 -2.897447 -1.491708 2.837683 7.992554 -3.217329 2.480542 -6.317651 -0.348986 -0.813028 8.472266 2.019422 1.522620 -2.059852 1.869643 -1.283191 1.220796 1.788761 -6.128120 2.060556 -9.461874 -3.770210 -4.686693 1.992656 2.952682 -7.295608 1.467257 -2.502090 5.425902 -10.659582 -1.600747 1.414052 2.306985 7.519215 0.552490 -2.403164 -0.244159 1.419736 3.135041 3.489834 -3.571607 2.807097 -0.775094 0.100166 0.812212 2.692439 2.480965 -8.786350 -3.289171 1.536642 0.315741 1.944989 3.927048 5.518409 -0.837894 3.205934 -4.125979 5.377808 -8.115320 -2.393344 -2.619318 -5.122511 -4.015030 6.608053 5.468762 6.663360 -1.676532 -1.892038 0.027606 -9.013741 -10.685280 0.331146 1.078685 -1.327937 3.629058 -1.264521 3.105237 -5.930795 2.889086 5.711472 -3.057462 -4.087263 0.123042 2.469723 1.604036 -2.170000 -2.463255 -0.503873 -2.280108 1.483360 8.423420 -0.642222 -12.878815 -11.395443 -2.826329 6.129387 -3.684061 -0.230544 -3.119060 -3.355293 -3.249371 -1.014963 -5.082840 0.193415 1.037447 -4.162071 -8.129190 2.666466 -0.724450 -2.008556 2.629300 -6.389251 1.456166 4.981208 2.076640 0.451317 1.624529 0.094737 -5.314435 -3.723567 2.353076 -4.811280 5.648535 4.405153 -0.800675 -4.707986 -3.306123 -5.175120 3.196440 -4.959120 4.818293 0.155908 -2.167579 1.804569 -6.764159 1.610447 -3.313552 1.916956 0.945001 -13.339443 8.383348 5.528431 -4.088802 0.343466 -0.861540 3.427114 -0.563034 3.442834 -5.724687 -4.313291 0.966177 0.576756 0.194875 -1.094548 1.238814 -1.546530 -3.551113 -5.705115 -2.348285 5.629014 2.151437 -0.588786 -0.475230 3.817522 -3.813668 1.646263 6.269920 4.437951 0.762139 -5.056069 -15.308738 2.570259 -0.852298 -2.298694 1.013120 -4.321968 -1.711600 2.984956 -4.501962 4.911339 -1.904337 -3.399106 5.857252 -8.153602 -5.749528 -5.815385 -2.620631 1.359006 0.237712 1.672385 -3.072439 0.967049 -1.027152 1.318676 -3.992507 -3.652687 3.162257 3.809066 6.960060 0.204494 0.932575 6.725189 2.468886 -1.473893 -1.948924 -0.419477 -4.602000 1.140520 -9.576514 -0.760462 2.549564 3.395119 -5.077785 0.456852 -0.738103 1.456640 0.302758 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 1.153603 -0.469404 -0.618172 2.091513 0.016793 0.025161 0.500660 0.520748 0.096717 -3.194558 -1.619250 1.305779 0.370438 0.108771 0.297088 0.674827 0.609168 0.874081 -3.361545 0.031078 0.822167 0.144266 -0.162326 -0.412705 0.006919 -0.779328 0.494798 0.749396 0.278988 2.046387 -0.689643 1.131654 1.686600 -0.005169 0.447042 1.433074 -0.277963 -0.131291 -0.522493 -0.611398 2.561218 0.638548 -0.022613 0.975337 -0.179388 2.139336 0.235305 1.988156 0.612376 -0.930384 1.125222 -0.368953 -1.014449 -0.232972 -1.881066 0.427803 1.496007 1.193490 -0.725794 1.121669 -0.680483 0.543782 0.809305 -0.321876 2.303135 1.080499 1.492320 1.723775 1.983639 -1.596998 0.466847 0.196673 0.333463 -0.091793 1.252586 -1.494065 -0.879197 -1.814725 -0.155107 -2.842325 -0.091368 -0.178571 3.334454 -1.671914 -0.176676 0.560805 0.586279 2.102838 -1.040424 0.368337 -1.888984 0.025762 -0.162366 2.597094 0.331981 0.313842 -0.428754 0.669217 -0.017709 0.589533 0.286638 -1.546529 -0.780866 -3.447360 -1.325666 -1.105601 0.293417 0.540671 -2.293306 0.072672 0.518753 1.277833 -3.230478 -0.371325 0.674878 0.914377 0.962956 0.384931 -1.246940 -0.156981 0.023960 0.814152 0.953820 -1.265061 0.585944 -0.941268 -0.128964 0.370608 0.759258 0.318200 -2.250705 -0.881402 0.307210 -0.161361 0.256730 0.887811 1.122892 -0.423359 1.024523 -1.549431 1.681664 -2.563203 -0.414006 -0.829807 -1.627249 -0.946935 2.482733 1.525894 1.382958 -0.039333 -0.884552 -0.217546 -2.413227 -3.044884 0.314557 0.154046 0.547472 0.616649 -0.393033 0.467880 -1.399430 0.391883 0.925686 -0.994339 -0.865462 -0.179283 1.410456 0.158709 -0.734497 -1.219662 0.140786 0.492373 -0.100875 1.708510 -0.559568 -2.338107 -2.864941 -1.148793 1.856222 -0.895922 0.069415 -0.821650 -0.458567 -1.400072 0.204983 -1.444917 0.127188 0.153323 -1.436570 -2.477833 0.732932 -0.348640 -0.524060 0.735898 -1.727832 0.362548 1.235378 0.973173 0.179449 0.398880 0.201030 -1.903100 -1.640224 0.031090 -1.020840 1.715068 1.370299 0.026001 -1.312024 -0.821935 -1.496412 1.443334 -1.340412 1.064306 -0.159341 -0.770277 1.094366 -1.672775 0.071578 -1.523205 0.673516 0.410467 -3.512640 2.599558 1.523326 -1.395240 -0.264557 -1.003844 0.900278 0.297093 1.599043 -1.425344 -1.063513 0.548933 -0.157044 -0.048448 -0.797296 0.647769 -0.465369 -0.290602 -1.798105 -0.752374 1.598139 1.047594 -0.248458 0.450379 1.145884 -0.275269 0.395078 2.018531 1.025070 -0.197914 -1.376995 -4.173336 0.918177 0.680932 -0.167332 0.260967 -1.410953 -0.745055 0.680461 -0.441144 1.664426 0.843990 -0.451063 1.803058 -2.064674 -1.847746 -1.288714 -0.213902 0.572279 -0.513551 0.391607 -0.903078 0.344902 -0.018081 0.521762 -0.264437 -1.302606 -0.558871 0.708738 2.069816 0.206183 -0.171822 2.172416 0.459638 -0.717331 -0.311183 -0.224559 -0.612210 0.410150 -1.700930 -0.321269 0.282071 0.909025 -1.477745 0.856580 -0.226175 0.258274 0.502816 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp___GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = 0.450492 -0.564434 -0.342766 1.616586 0.187274 0.565340 0.083125 -0.273965 0.173180 -2.067678 -0.775920 1.317927 0.138230 0.272538 0.078841 0.211719 0.483314 0.154128 -1.476189 -0.195069 0.201456 -0.123196 -0.099836 0.195083 -0.062530 -0.569589 1.396171 0.660287 0.277411 0.992576 -0.304481 0.824743 1.030995 0.209196 0.161559 0.553980 -0.035817 -0.087811 -1.072844 -0.743811 1.534912 0.160707 0.139021 0.717109 -0.044802 1.191031 0.578990 1.167235 1.709518 -0.503533 0.424263 0.293175 -0.266610 -0.340693 -1.270196 0.118806 -0.089679 -0.018477 -0.571727 0.266288 -0.180188 0.302575 0.290742 0.222304 1.288646 0.233475 1.390221 1.073211 0.646480 -1.040973 0.046244 0.335373 0.092416 0.533123 0.915917 -0.411914 -0.745821 -0.325275 -0.173693 -0.730519 -0.529730 -0.189466 1.091992 -0.656719 -0.501738 -0.165478 -0.048006 1.289363 -0.466671 0.442587 -1.402478 -0.021730 0.469831 0.793902 0.379854 -0.168910 -0.152410 0.139722 -0.181856 0.306357 0.669476 -1.093608 0.124719 -1.503618 -0.690417 -0.857634 0.461631 0.319326 -1.246500 0.381990 -0.173364 1.027775 -1.491337 -0.392469 0.349573 0.236931 1.184735 0.008423 -0.028023 -0.076764 0.508251 0.521676 0.779486 -0.381997 0.514412 -0.269824 0.277781 0.163128 0.268843 0.514676 -0.757222 -0.686442 0.486817 0.391773 0.024384 0.444357 0.798043 -0.076287 0.591639 -0.340928 0.974733 -0.978644 -0.337490 -0.264169 -0.273493 -0.681443 1.642745 1.177730 1.316826 0.058141 -0.630761 -0.110478 -1.138725 -1.841253 -0.222409 0.173887 -0.201517 0.625038 -0.143991 0.766693 -0.902099 0.545632 0.700661 -0.349401 -0.643946 0.274650 -0.832563 -0.056998 -0.252450 -0.277664 0.033235 -0.307738 0.003384 1.542746 -0.171530 -2.391657 -1.747018 -0.350436 0.907512 -0.757921 -0.038324 -0.468020 -0.551608 -0.606426 -0.096297 -0.771145 -0.209385 -0.005641 -1.148228 -1.351903 0.657709 -0.356908 -0.027127 0.603617 -1.037038 0.220012 0.423590 0.335537 0.323303 0.267005 -0.153957 -0.940347 -0.579406 0.022835 -0.944914 1.298954 0.333682 -0.289032 -1.051555 -0.669845 -0.860478 0.734894 -1.140062 0.630074 0.094332 -0.775625 0.095159 -0.818975 0.073310 -0.173417 0.302519 0.425584 -1.898822 1.108324 1.136271 -0.746804 -0.134503 -0.103651 0.405574 0.092750 0.652682 -1.187450 -0.605350 -0.107538 0.208765 0.106236 -0.015038 0.205946 -0.174679 -0.606944 -1.202798 -0.769083 0.831273 0.383577 -0.198188 -0.412520 0.929477 -0.246260 0.427625 1.148825 0.475142 0.372119 -0.651234 -2.406944 0.486258 0.637110 -0.304155 0.483332 -0.874297 -0.185332 0.066225 -1.007094 0.841203 -0.629657 -0.450430 1.011014 -1.237300 -0.799943 -0.939834 -0.669009 -0.009293 0.150565 0.822696 -0.288679 0.150615 -0.372915 -0.048460 -0.821907 -0.403299 0.570143 0.573938 0.877227 0.025996 0.266376 0.959838 0.334721 -0.549231 -0.077533 -0.101853 -0.708181 0.308181 -1.936896 -0.212193 0.392271 0.412658 -0.776755 -0.222959 -0.157787 0.225865 -0.309543 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.563527 -0.400129 -0.766292 2.122883 -0.271520 0.849019 0.290977 -0.092646 0.041522 -2.830134 -1.291700 1.489584 0.517393 0.654800 0.426322 0.746729 0.337024 0.143333 -2.334799 -0.462464 0.807155 -0.300390 0.262028 0.385326 -0.195455 -1.077224 0.973790 0.785374 0.271980 1.845393 -0.180874 1.599499 1.596336 -0.022465 -0.120102 1.056983 -0.378535 -0.088240 -1.270350 -0.596219 1.888723 0.031896 -0.181969 0.406975 -0.886285 1.953763 -0.010683 1.831515 1.014016 -0.975260 1.259901 0.413033 -0.760848 -0.296171 -1.440471 0.113143 0.430364 0.581283 -0.367025 0.542899 -1.008337 0.366200 0.559913 0.275502 2.006405 0.899460 1.914304 1.828133 0.996787 -1.809102 0.356434 0.356853 -0.729642 -0.030517 0.984819 -0.653078 -0.551383 -1.087028 0.064046 -1.344447 -1.025888 -0.116312 2.376446 -1.269219 -0.986975 0.062771 0.353546 2.179706 -0.860035 1.321613 -1.910718 -0.202066 0.630215 1.302593 0.558584 -0.150674 -0.480864 0.240239 -0.328572 0.401187 0.653487 -1.391392 -0.849644 -1.790003 -1.397243 -1.152885 0.889619 1.107605 -2.230313 0.417256 0.574696 0.792541 -2.549493 -0.276538 0.601223 1.146983 1.697891 1.422866 -0.942762 -0.142251 0.901597 0.741238 1.350316 -0.456089 1.107945 -0.816824 0.287902 0.290558 0.418872 0.529640 -1.951559 -1.016752 0.747565 -0.355130 0.630658 1.025271 1.539380 0.148950 0.931166 -0.828288 1.586009 -1.991585 -0.361898 -0.575918 -0.893531 -1.010521 1.868171 2.122729 1.351750 -0.021970 -1.249270 0.073621 -2.009107 -2.265465 -0.692696 0.460992 0.076223 0.902552 -0.516060 1.240708 -1.286807 1.453131 0.738701 -0.710965 -0.978670 0.396553 -0.356855 0.369265 -0.586154 -0.754453 -0.084424 -0.799354 -0.411887 2.502602 0.113310 -2.357988 -2.939445 -0.836919 1.631921 -1.044503 0.115127 -0.997044 -0.720040 -1.325120 -0.224762 -1.086716 -0.264507 0.577532 -1.576844 -2.243484 1.064674 -0.202566 -1.040132 1.006379 -1.657894 0.110910 1.005290 0.029877 0.686086 0.359882 -0.334560 -1.031755 -1.033230 0.223066 -1.608871 1.581011 1.220918 -0.387996 -1.190648 -1.138166 -1.266581 1.320141 -1.463598 1.183586 -0.123488 -0.766672 0.328011 -1.631660 -0.318546 -0.873112 0.559892 0.574218 -3.026863 1.837758 1.410358 -0.834673 -0.055244 -0.314551 0.733025 0.198126 0.902192 -1.413569 -0.833801 -0.046121 0.541774 0.113759 0.108201 0.335830 -0.651619 -1.087510 -1.383722 -0.677641 1.452065 0.749186 -0.150259 0.153752 1.442142 -0.291532 0.904778 1.193544 1.032218 -0.457098 -0.658538 -3.100519 0.924588 0.512532 -0.840191 0.554366 -1.521012 -0.261008 0.558011 -1.043238 1.361677 -0.591280 -0.494730 1.636629 -1.603010 -1.432595 -1.594323 -0.618686 -0.038554 0.172774 0.665295 -0.316932 0.484526 0.251030 -0.116628 -0.761643 -1.194539 0.242382 0.801200 2.001678 -0.093529 0.431888 1.695845 0.701132 -0.514054 -0.611491 -0.053091 -1.204584 0.334852 -2.162770 -0.074358 0.912474 0.834713 -1.258254 -0.341259 -0.139067 -0.345927 -0.050308 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = 0.916843 -1.167105 -0.350721 2.112967 0.227409 0.815522 0.280792 0.032531 0.258196 -3.149616 -1.232122 2.267748 0.096175 0.566424 0.011389 0.493963 0.958645 0.273126 -3.143034 -0.369618 0.337133 -0.430705 0.174731 0.123570 0.003554 -1.015905 2.018079 1.033571 0.374674 1.647011 -0.519767 1.210606 1.629232 0.313066 0.614905 1.081717 -0.451254 -0.484846 -1.442656 -1.181912 2.409360 0.353071 -0.007395 0.942909 -0.371012 1.969533 0.913276 1.905252 2.521126 -0.681498 0.961483 -0.347669 -0.963051 -0.397722 -2.241930 -0.007903 -0.054021 0.367034 -0.575524 0.549406 -0.702018 0.480444 0.457043 -0.164517 2.354873 0.089390 2.215449 1.620107 1.049017 -1.753578 0.140714 0.509950 0.313000 0.894637 1.145128 -1.183280 -0.937525 -1.290788 -0.105594 -1.779528 -0.494870 -0.514469 2.381727 -1.039682 -0.773086 -0.194359 -0.145583 1.992860 -0.681580 0.606338 -2.308293 -0.016323 0.897225 1.396277 0.606165 0.010651 0.001091 0.149025 -0.331495 0.652464 0.913737 -1.696104 -0.037538 -2.692560 -0.799252 -1.345613 0.743178 0.520435 -1.692349 0.735922 -0.024677 1.352334 -2.289177 -0.599726 0.405468 0.460221 1.810194 0.259107 -0.174695 -0.364857 0.655311 1.016005 1.220304 -1.248673 0.708766 -0.447456 0.441169 0.106152 0.803838 0.556766 -1.744682 -1.106572 0.867736 0.479827 0.409520 0.661704 1.057880 0.082577 0.848333 -0.746973 1.534577 -1.660943 -0.375302 -0.692129 -0.427145 -1.129836 3.549294 1.763187 1.843907 0.337957 -0.551961 0.149426 -1.878843 -2.915624 0.010982 0.260834 -0.102068 0.817273 -0.357704 1.155131 -1.371845 0.581494 0.513566 -0.768390 -1.079428 0.162393 -1.432638 0.324359 -0.410567 -0.700799 0.189431 0.045840 -0.103742 2.140379 -0.407639 -3.989922 -2.311206 -1.020400 1.526463 -1.209337 -0.114654 -0.515531 -0.734581 -0.729999 -0.162002 -1.223346 -0.003819 0.131357 -1.771358 -2.308597 0.893666 -0.505582 -0.007757 1.092978 -1.639622 0.372876 0.462689 0.971366 0.353165 0.490860 -0.238048 -1.461105 -1.064096 0.081938 -1.237808 1.947371 0.557308 -0.425945 -1.522083 -1.081518 -1.258752 1.194533 -1.549547 1.250943 -0.048513 -1.308432 0.289997 -1.225388 0.559690 -0.737284 0.811486 0.686005 -3.881057 2.025909 1.781506 -1.243893 -0.310936 -0.564226 0.591710 0.126875 1.168947 -1.428410 -0.931700 0.182738 0.439065 0.097717 -0.112418 0.434126 0.046792 -0.993271 -2.039147 -1.258912 1.377366 0.602728 -0.057384 -0.106448 1.351807 0.119223 0.473754 1.941521 0.765871 0.369207 -1.182624 -4.605606 0.791557 2.073351 -0.349960 1.039504 -1.768930 -0.536021 0.441569 -1.410285 1.372771 -0.422419 -0.570452 1.619847 -1.511474 -1.282356 -1.596574 -1.008010 0.204249 0.087123 1.108258 -0.635485 0.095167 -0.550900 0.047493 -1.005238 -0.426105 0.538370 1.053879 1.416728 0.599878 0.515889 1.577434 0.567277 -0.797326 -0.489753 -0.105090 -1.243503 0.761938 -2.476021 -0.174237 0.645477 0.718700 -1.086042 -0.293454 0.131257 0.382549 -0.320196 -PE-benchmarks/ugly-numbers.cpp__main = 0.361987 -0.506288 0.019956 0.877181 0.087759 0.408895 0.210947 0.139135 0.090100 -1.536023 -0.836475 0.090793 0.060800 0.292304 0.353564 0.212097 0.395775 0.153906 -1.560922 -0.209256 0.417436 -0.145748 0.309590 0.192540 0.013866 -0.585012 0.105677 0.470001 0.130970 0.906883 -0.289748 0.613273 0.835314 0.126762 0.122208 0.579198 -0.113241 -0.186802 -0.313183 -0.194704 1.159692 0.082735 -0.174487 0.233997 -0.229396 0.995111 -0.007325 1.027155 0.693991 -0.435842 0.824810 -0.908085 -0.375761 0.013698 -0.915860 0.112256 0.567043 0.507945 -0.271029 0.384913 -0.559302 0.301426 0.215692 -0.383515 1.037282 0.395225 0.883243 0.688788 0.599802 -0.880744 0.099191 0.212267 -0.059900 0.156446 0.042190 -0.564686 -0.010346 -1.490072 0.056436 -0.944472 -0.274474 -0.248347 0.994217 -0.581428 -0.313451 0.351581 -0.161736 0.936232 -0.392451 0.449768 -1.052739 0.037422 0.476135 0.587072 0.214103 -0.139029 -0.021210 0.149978 -0.048542 0.335168 0.297247 -0.604947 -0.816095 -1.460809 -0.697996 -0.449574 0.434116 0.281587 -1.035519 0.282532 0.562675 0.245878 -1.141637 -0.149888 0.263117 0.627280 0.289897 0.396683 -0.525714 -0.347503 0.299173 0.524626 0.655904 -0.573858 0.489753 -0.865854 0.199950 0.170430 0.386014 0.009954 -0.505317 -0.512339 0.258121 0.032334 0.152475 0.328336 0.542403 0.099938 0.523813 -0.455037 0.802083 -1.023229 -0.052448 -0.436654 -0.346184 -0.436641 1.850601 0.963909 0.576304 0.383257 -0.650119 0.029419 -0.877027 -1.253729 -0.189037 0.195017 0.418481 0.318634 -0.256064 0.520442 -0.493224 0.345585 -0.061073 -0.412203 -0.426046 0.048258 -0.318691 0.114276 -0.305381 -0.604001 0.209257 0.346530 -0.563498 0.860433 -0.140750 -0.850520 -1.032997 -0.654931 0.785159 -0.514355 0.092606 -0.327980 -0.045814 -0.807441 0.166970 -0.560080 -0.186055 0.208809 -1.037743 -1.131400 0.433745 -0.226893 -0.145553 0.594245 -0.795983 0.116787 0.305676 0.653790 0.346774 0.230262 -0.116310 -0.768987 -0.795966 -0.284955 -0.629274 0.923589 0.365280 -0.222665 -0.516282 -0.565080 -0.526838 0.815495 -0.534910 0.454511 -0.183170 -0.540225 0.206967 -0.607802 -0.049376 -0.607716 0.326454 0.349622 -1.548097 0.953450 0.710798 -0.581752 -0.255314 -0.683878 0.376589 0.120011 0.749128 -0.457648 -0.226205 0.092544 0.224976 0.020509 -0.274881 0.340632 -0.104472 -0.425940 -0.877022 -0.534626 0.671895 0.479077 -0.060493 0.250019 0.818155 0.468907 0.288533 0.830947 0.305808 -0.283480 -0.349176 -1.940776 0.429572 1.231867 -0.131957 0.401938 -1.005010 -0.275658 0.173824 -0.210609 0.749932 0.596147 0.108881 0.877008 -0.467130 -0.660068 -0.656254 -0.222620 0.059935 -0.209422 0.281709 -0.307559 0.123142 0.011492 0.017420 -0.060726 -0.500220 -0.514340 0.271493 0.823587 0.142903 0.194987 0.850248 0.312939 -0.456649 -0.255804 -0.011262 -0.433843 0.402677 -0.542338 -0.132270 0.263174 0.257434 -0.552690 -0.016960 -0.051897 -0.050026 0.035713 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = 5.218202 -0.690205 -5.689715 10.415480 -0.811834 2.084631 1.169256 -0.911932 -0.242099 -13.556657 -5.887963 8.676411 3.092743 3.138221 -0.971463 5.569548 2.054863 2.129630 -12.346813 -1.012707 3.018552 -1.487254 -0.996198 0.555106 -0.556652 -4.701476 6.611051 2.444856 1.367345 9.281066 -2.398054 7.376546 8.122244 -1.366011 1.747785 5.627874 -1.961840 -0.239305 -6.078606 -3.215619 9.507871 2.044513 0.409253 2.720433 -3.978164 9.886042 2.429657 9.763174 3.298021 -4.597746 4.670266 4.134962 -4.271652 -1.088485 -7.857342 0.937999 3.069967 2.874741 -2.407311 3.038307 -2.399121 2.571489 3.763477 2.050497 9.864528 3.569105 8.321655 8.128879 7.104333 -7.809995 2.674955 1.413627 -1.120592 -0.152979 8.125205 -5.765160 -6.270702 1.508258 -0.125073 -9.337411 -1.683814 -0.168195 12.888368 -7.542286 -4.056641 -1.074853 3.267873 10.470927 -4.769583 3.829152 -8.529598 -0.569106 -1.399266 11.324869 2.531736 1.822365 -2.824545 2.428490 -1.096500 1.509057 1.234227 -8.568152 -0.298096 -9.449509 -6.119986 -6.684520 2.412208 5.352384 -10.555510 0.896272 -2.089704 7.585560 -13.849280 -0.443692 2.319496 4.022230 10.712626 4.643404 -4.087265 0.280047 1.994278 3.162682 5.291278 -3.561072 4.003239 -1.617259 0.785746 1.182495 2.540728 2.578063 -12.663225 -3.406851 2.638477 -2.279848 2.826959 5.555894 7.134245 -1.861467 4.746978 -5.183546 6.728155 -10.931243 -3.489061 -3.062400 -8.040699 -5.288874 6.234855 8.350619 7.533841 -2.198977 -3.305344 -0.302820 -12.251573 -12.873096 -1.379171 1.228345 -1.080447 4.769083 -2.305463 4.579033 -7.665944 4.406386 6.005379 -3.991374 -5.518491 0.333539 6.030343 2.010755 -2.802970 -2.771929 -1.760842 -4.039065 1.711616 11.768585 -1.040032 -14.785700 -14.941642 -4.395609 8.408629 -5.079365 0.125657 -4.965809 -4.022262 -6.468756 -1.257376 -6.698002 -0.743898 1.353655 -4.270540 -10.810957 4.611630 -1.183646 -4.276402 3.429965 -8.856097 1.478705 6.813515 1.040523 2.080598 0.905525 -0.572487 -6.243826 -4.397904 3.568366 -6.775178 7.757899 6.214624 -1.214374 -4.842391 -4.907812 -7.392766 4.545842 -5.946707 6.110097 0.212359 -1.692763 3.025545 -8.552162 1.103829 -4.148910 3.126174 1.393319 -14.099732 11.198450 7.684517 -5.135786 0.622378 -0.577487 4.545098 0.370284 4.251317 -6.972039 -5.956151 1.271698 1.051549 0.198447 -0.186905 2.196584 -3.299463 -3.961167 -6.721524 -2.156441 7.042814 3.798891 -1.056379 -0.473192 4.776187 -4.369164 3.535009 6.656511 5.193101 0.232140 -5.472414 -18.362434 3.566068 -4.338005 -3.508277 1.066739 -4.886492 -1.444627 4.291710 -5.761481 7.669980 -3.572415 -4.368523 8.092695 -10.814947 -8.256065 -7.868052 -3.365940 1.258125 0.650303 1.815433 -3.844206 1.905812 -0.473371 1.255551 -4.452229 -5.732326 3.698443 4.994172 9.214901 -0.494210 0.917114 9.254724 2.852244 -1.175214 -3.073272 -0.021725 -4.953569 1.076313 -10.665771 -1.066343 3.511983 4.645302 -6.554863 0.495031 -1.547405 0.563644 1.211416 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 1.679274 -0.817042 -1.108201 3.210489 0.348957 1.170187 0.500349 0.047039 0.692669 -4.045407 -2.092308 4.319523 0.265644 0.981750 -0.340422 0.860796 1.338401 0.440211 -3.855760 -0.433259 0.215390 -0.590394 -0.225662 0.147757 0.034198 -1.489822 3.003993 1.450768 0.658156 2.632360 -0.712212 1.669813 2.168461 0.166196 0.968721 1.689869 -0.377652 -0.475883 -2.637533 -2.131799 3.259895 0.972841 -0.053652 2.055495 -0.604542 3.096132 1.112867 2.824701 3.587815 -1.121797 0.824819 1.185601 -1.620008 -0.743286 -2.930659 0.366247 0.103847 -0.265875 -0.997804 0.803814 -0.390290 0.548054 0.756747 -0.092196 2.547411 0.385257 2.555094 2.283551 1.920912 -2.816475 0.139838 1.136663 0.975390 1.652602 2.100293 -1.427564 -2.390983 0.096299 -0.140987 -2.556151 -0.872809 -1.015355 3.553847 -1.995125 -1.330815 -0.481513 -0.074777 2.631385 -1.243922 0.900849 -3.008110 -0.122841 0.439502 2.317469 1.044496 0.300852 -0.307000 0.419866 -0.383597 1.073206 0.791456 -2.716541 0.397002 -3.810455 -1.067154 -2.161699 1.059914 0.974471 -2.176041 0.858247 -0.663090 3.320091 -3.376960 -0.820655 0.843486 0.525007 2.163705 0.684965 -0.211276 -0.168150 1.258039 0.983378 1.893453 -1.512053 0.978138 0.476796 0.291096 0.098686 1.092067 1.097522 -2.583091 -1.745032 1.187738 0.932292 0.646601 0.875757 1.600821 -0.560397 1.542748 -1.054596 2.226189 -2.506340 -0.926943 -0.934751 -0.832728 -1.752056 3.381540 2.528105 3.417000 0.074275 -0.126960 -0.250925 -2.820757 -4.156895 0.391630 0.413407 -0.416908 1.284989 -0.441740 1.809013 -2.417875 0.860401 1.217969 -1.131567 -1.574658 0.429489 -0.262384 0.293024 -0.537987 -1.126315 -0.029505 -0.840809 0.416294 3.012243 -0.591611 -6.135728 -3.255940 -1.448690 2.422837 -1.686181 -0.079423 -0.745822 -1.365271 -0.668464 -0.564730 -2.086177 -0.077227 0.115484 -2.184994 -3.171010 1.298328 -0.637559 -0.571726 1.613465 -2.543528 0.545469 1.426103 1.224488 0.512809 0.854146 -0.175430 -2.102389 -1.091469 0.374445 -2.049530 3.081459 1.546880 -0.712125 -2.134850 -1.647523 -2.095439 1.700430 -2.932393 1.878448 -0.125858 -1.258696 0.723999 -2.133902 0.301171 -1.111379 1.319154 1.093920 -5.165309 2.809447 3.017276 -1.706249 -0.312158 -0.277396 0.748916 0.388877 1.995646 -2.593005 -1.821571 0.382233 0.408004 0.199475 -0.199838 0.917012 -0.095363 -1.347853 -2.503956 -1.299353 2.144580 0.879321 -0.103991 -0.259545 2.004380 -0.247432 1.192921 2.593990 1.475161 0.659266 -2.347523 -6.291512 1.287625 1.232901 -1.002172 1.631835 -2.281447 -0.917797 1.006963 -2.579644 2.240752 -2.021725 -1.060161 2.599243 -2.513160 -2.106916 -2.265165 -1.876180 0.332159 0.186852 2.046982 -1.072971 0.292495 -0.887260 -0.118419 -1.926894 -0.553965 1.332012 1.585323 2.017196 0.812096 1.069137 2.576688 0.838931 -1.277881 -0.665344 -0.197776 -1.954051 0.295560 -4.095009 -0.185939 0.851621 1.106029 -1.737413 -0.329330 0.176299 0.655824 -0.374888 -PE-benchmarks/min-cost-path.cpp__main = 1.190827 -0.017016 -0.789073 2.267805 -0.109805 0.265858 0.566584 0.273540 -0.121079 -3.422256 -1.673385 1.369788 0.574225 0.506428 0.018006 0.955995 0.492933 0.911646 -3.340269 -0.201004 1.012769 0.033272 0.047276 -0.171936 -0.095173 -1.028605 0.560257 0.800275 0.365847 2.431963 -0.677963 1.349764 2.050777 -0.124070 0.269820 1.665473 -0.036537 -0.027724 -0.878138 -0.612196 2.520799 0.566094 -0.088291 0.746626 -0.652083 2.509034 0.338078 2.134130 0.302369 -1.207093 1.110513 -0.155263 -1.147494 -0.306900 -1.802618 0.391338 1.383082 1.382679 -0.702063 1.124074 -0.678058 0.571025 0.911838 -0.124293 2.169683 1.235263 1.508680 1.838460 2.067148 -2.007454 0.480748 0.313280 -0.137605 -0.191324 1.288846 -1.391318 -1.058777 -1.206340 -0.017619 -2.924467 -0.513374 -0.010568 3.307959 -1.965821 -0.435444 0.506654 0.581544 2.319003 -1.156759 0.617700 -2.121247 -0.076390 -0.254816 2.810490 0.556580 0.237459 -0.504715 0.651074 0.088074 0.597899 0.186294 -1.829125 -0.971448 -2.973232 -1.484537 -1.425690 0.411584 1.066579 -2.526926 -0.127130 0.467850 1.703802 -3.530215 -0.183088 0.840593 1.234886 1.408386 0.924951 -1.340580 0.096775 0.213378 0.595807 1.336986 -1.223979 0.771769 -0.626222 -0.078686 0.266175 0.603995 0.391703 -2.795744 -0.976027 0.478530 -0.663748 0.512939 1.076488 1.338355 -0.410327 1.188872 -1.607654 1.795591 -2.725233 -0.460654 -0.622948 -2.009228 -1.178326 1.994811 1.875695 1.375833 -0.297910 -1.025375 -0.233324 -2.643653 -3.133981 0.053856 0.354514 0.492998 0.875085 -0.598254 0.805377 -1.695442 0.724998 0.991195 -0.962047 -1.076522 0.075713 1.882350 0.257093 -0.760981 -1.137769 -0.070277 -0.103515 0.046472 2.258835 -0.590502 -2.468085 -3.253369 -1.320312 2.138524 -1.110420 -0.002429 -1.102817 -0.678310 -1.719369 0.083469 -1.618247 -0.035202 0.320032 -1.339696 -2.784846 1.110101 -0.413987 -1.032656 1.000990 -2.026426 0.274379 1.463032 0.497435 0.449667 0.152021 0.111247 -1.725892 -1.424674 0.310755 -1.385035 1.768666 1.577928 -0.009082 -1.363140 -1.073841 -1.668361 1.505607 -1.202758 1.269153 -0.244218 -0.472218 1.174433 -1.860983 0.128389 -1.425583 0.831520 0.599492 -3.412721 2.771370 1.789462 -1.306255 -0.154308 -0.615811 0.879037 0.440889 1.471609 -1.649490 -1.442281 0.587567 -0.100942 0.000146 -0.494007 0.664704 -0.727968 -0.482426 -1.753728 -0.600949 1.636218 1.181978 -0.295741 0.442186 1.359802 -0.411250 0.728182 1.858134 1.124004 -0.269200 -1.285606 -4.217282 1.132046 -0.161118 -0.379945 0.224037 -1.309131 -0.555658 1.048231 -0.739306 1.940294 0.291297 -0.820476 2.076456 -2.336469 -2.084021 -1.566309 -0.431216 0.593916 -0.322824 0.379968 -0.917185 0.568178 0.089399 0.280855 -0.389180 -1.488716 -0.162444 0.909425 2.347460 0.020262 -0.006180 2.461502 0.426762 -0.607252 -0.465561 -0.152321 -0.683700 0.272986 -1.878217 -0.274343 0.583538 1.125361 -1.583736 0.641479 -0.405328 -0.125023 0.652587 -PE-benchmarks/magic-square.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/magic-square.cpp__generateSquare(int) = 4.596535 -9.022676 -4.333629 12.375720 -0.664512 3.337061 1.282694 0.576842 -0.128396 -20.938934 -6.540536 10.429455 1.996717 3.559452 -0.274023 3.642880 3.449499 2.373328 -21.613002 -1.818039 4.261871 0.138870 0.105501 1.168766 0.144579 -4.172480 10.772879 2.971051 1.722394 9.828039 -2.445486 9.013936 9.809449 -0.945618 1.597929 5.146280 -3.306818 -1.170448 -6.320190 -4.438240 15.680702 1.771557 0.204190 5.513969 -3.817137 10.787576 2.733965 12.580167 13.525819 -5.081499 7.653616 -0.809595 -3.831377 -2.091520 -12.823642 0.223869 2.334069 4.110375 -2.106963 3.040406 -2.249410 1.835445 3.807544 0.615846 14.772740 4.428401 13.653822 10.675734 7.376407 -7.588853 3.387188 0.138732 -1.970034 1.761355 7.076521 -9.385326 -5.634797 -8.951539 -1.997740 -11.559442 -3.039775 -2.272966 9.968248 -7.001149 -3.388213 -3.153544 2.723137 11.912074 -3.916047 4.536127 -14.400606 -1.405262 4.660720 9.287562 1.713866 1.506201 -2.605531 1.578685 -1.760379 1.121572 6.354619 -9.169902 1.498824 -14.223909 -5.484233 -6.601672 2.927678 6.051106 -11.654606 2.807334 -4.687660 4.631445 -15.663800 -2.924031 0.418615 4.113928 14.868575 4.843206 -5.005716 -1.856211 2.727054 3.534485 4.982547 -5.413910 5.247032 -6.914768 2.763134 1.274742 3.121976 3.956357 -13.294860 -5.661178 2.908556 0.898587 3.135225 7.013579 8.685519 0.021648 4.837130 -6.070569 7.730705 -10.971114 -4.746546 -2.546240 -6.822458 -6.245320 18.785565 9.483309 7.436235 -1.215798 -8.630964 -0.054410 -12.944330 -17.378622 -0.909933 1.022619 -0.772174 6.021292 -2.809036 5.117893 -9.043924 4.434741 5.960803 -3.050111 -5.735152 -0.783115 -6.831425 2.753904 -2.068569 -2.790437 -0.819570 -0.593137 0.747216 13.318568 -1.189964 -19.807128 -17.128900 -4.072748 9.038087 -5.684516 -0.817726 -5.729872 -3.658310 -10.288228 -1.513576 -7.121375 -1.826190 0.935780 -9.830265 -12.559936 5.636461 -1.652439 0.318917 4.151627 -9.036911 1.533582 3.084911 8.042082 2.329266 0.651675 -1.756759 -10.136452 -8.730055 3.100539 -8.223455 12.936994 0.749362 -1.965469 -7.625422 -5.205821 -7.717776 7.079541 -8.608871 7.343397 0.684147 -5.607960 2.543825 -8.628682 1.464486 -5.409376 3.014626 1.660888 -19.458461 14.832901 6.137402 -5.987394 0.291252 -1.996524 5.496029 0.048501 3.018411 -7.293187 -6.563799 1.525050 2.255372 0.646336 -3.308372 1.641586 -2.131712 -4.961794 -12.607344 -7.561444 9.576816 2.642976 -1.871375 -0.864071 6.598549 -4.113600 -0.004492 11.968566 6.917959 0.588140 -4.781238 -22.949668 3.299734 8.480644 -1.940097 0.361879 -11.409572 -2.430145 4.607370 -7.094893 8.034955 -0.144955 -4.030229 8.563238 -11.344019 -8.074802 -8.993497 -3.667003 1.617759 1.641363 2.358972 -3.097326 1.934477 0.539836 1.498108 -4.263670 -7.487914 3.520806 5.655138 8.998419 -1.006227 1.658415 9.457656 3.879592 -2.336754 -2.654188 0.353563 -6.645656 4.413068 -13.248926 -0.567762 4.332704 4.275361 -7.497982 0.268907 -1.905115 1.217451 -0.072933 -PE-benchmarks/magic-square.cpp__main = 1.063706 -2.173011 -0.710287 2.862666 0.088831 0.805103 0.377088 0.097276 0.030509 -4.798682 -1.565890 2.055695 0.350683 0.789764 0.091383 0.724188 0.999874 0.490817 -4.719950 -0.435373 0.884666 -0.100486 0.013710 0.360200 -0.011535 -1.159739 2.331277 0.973856 0.390231 2.313670 -0.639805 1.937271 2.278011 -0.121997 0.522333 1.382715 -0.377607 -0.291985 -1.496933 -0.906290 3.807537 0.300864 -0.003836 1.277591 -0.660197 2.629911 0.630899 3.058758 3.149645 -1.165561 1.940042 -0.579815 -0.846846 -0.527668 -3.144444 0.140791 0.757608 1.008417 -0.764335 0.838209 -0.625206 0.481991 0.839181 0.100996 3.363932 0.981515 3.017023 2.383937 1.824571 -1.981041 0.542591 0.304201 -0.191415 0.601164 1.390063 -2.101837 -1.144402 -2.551538 -0.352157 -2.431714 -0.680248 -0.594496 2.233072 -1.594386 -0.841343 -0.325248 0.286681 2.645186 -0.956056 0.992754 -3.430329 -0.267617 1.239690 2.106342 0.441988 0.216982 -0.384244 0.395071 -0.338623 0.563202 1.406077 -2.202242 -0.062008 -3.616542 -1.517822 -1.546018 0.715431 1.130289 -2.674301 0.570976 -0.640825 1.004291 -3.482998 -0.643662 0.223849 1.053599 3.054034 0.921602 -1.129651 -0.547196 0.737805 0.874015 1.299780 -1.256162 1.210749 -1.756624 0.771643 0.320140 0.821464 0.723176 -2.682235 -1.311092 0.678502 0.354634 0.575579 1.306457 1.785627 -0.125264 1.211152 -1.359086 1.951153 -2.585869 -0.959101 -0.783522 -1.504740 -1.398279 4.680694 2.090340 1.928501 -0.001891 -2.112266 0.021104 -2.886709 -4.216028 -0.183502 0.277178 0.008274 1.339881 -0.691458 1.234231 -1.989744 0.852370 1.218242 -0.818181 -1.335350 -0.140476 -1.782403 0.541753 -0.543880 -0.865253 0.068749 0.197547 0.024337 2.978124 -0.425559 -4.451785 -3.680891 -1.156445 2.105853 -1.344067 -0.122548 -1.082858 -0.856696 -2.514048 -0.125384 -1.702098 -0.372876 0.077615 -2.458005 -2.975011 1.328737 -0.533289 0.139326 1.131948 -2.181076 0.407524 0.500959 1.840783 0.605748 0.254831 -0.391983 -2.460641 -2.186246 0.446601 -1.747226 3.075290 0.194438 -0.401516 -1.584863 -1.324577 -1.745695 1.723614 -2.105958 1.597807 0.284181 -1.488169 0.646831 -1.945864 0.218725 -1.299835 0.832988 0.617163 -4.299700 3.417780 1.644872 -1.564739 -0.227615 -0.653386 1.172090 0.092857 1.114716 -1.673845 -1.355206 0.473635 0.643131 0.117529 -0.814109 0.485607 -0.298599 -1.025207 -3.062703 -1.917354 2.117442 0.855063 -0.390137 -0.134497 1.628252 -0.552505 -0.089451 2.962760 1.445488 0.218952 -1.123957 -5.374992 0.902910 2.173338 -0.438185 0.385865 -2.773105 -0.613531 0.967014 -1.476455 1.972767 0.251787 -0.698733 2.172778 -2.435768 -1.949800 -2.018214 -0.960517 0.381216 0.109808 0.726004 -0.881147 0.414621 -0.099448 0.309637 -0.957878 -1.475435 0.491235 1.196664 1.970384 -0.094609 0.425883 2.285711 0.831000 -0.721789 -0.609958 0.136749 -1.395199 1.234463 -2.921461 -0.273407 0.810200 0.991778 -1.672296 0.082404 -0.449374 0.322265 0.070053 -PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/box-stacking.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/box-stacking.cpp__max(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = 0.790008 0.194851 -1.216062 1.856059 -0.271631 -0.422182 0.332431 0.217546 -0.399550 -2.083555 -0.491296 1.280006 0.659813 0.082957 -0.202342 0.685440 0.006166 0.484061 -1.957571 0.231058 0.548183 0.031589 -1.094946 0.012253 -0.316761 -0.665036 0.496507 0.630115 -0.083528 1.620191 -0.344202 1.052378 1.300616 -0.553697 0.304517 1.060682 0.498364 0.110275 -0.596484 0.323560 1.678502 0.654734 -0.458742 0.334834 -0.281656 1.699126 0.178322 1.361787 -1.255764 -0.782039 0.129972 1.244943 -0.525085 -0.448527 -1.135916 0.208436 0.995619 0.973340 -0.569398 0.853816 -0.883689 -0.011307 0.904995 1.001172 1.829869 0.973692 1.258357 1.572358 1.877852 -0.977845 0.506173 0.121144 -0.092961 -0.518169 1.432325 0.181703 -1.339778 -0.510530 -0.007196 -1.734758 -0.634092 0.251605 1.995391 -1.411864 -0.347751 0.164443 1.227903 1.752899 -1.472419 0.369941 -1.393982 -0.429033 -0.608656 2.702111 0.411230 0.670295 -0.687217 0.842819 0.212024 0.229337 -0.151071 -1.586107 -0.023066 -1.677674 -1.333974 -0.932053 -0.627606 0.679893 -2.068810 -0.436120 0.298042 1.847363 -2.636964 0.168151 0.270542 0.482384 2.572514 0.829412 -1.255344 0.642376 0.037885 -0.229421 0.818950 -0.403574 0.648046 -0.267251 0.325638 0.310685 0.080916 0.609702 -2.871678 -0.028030 0.636707 -1.027091 0.352325 0.902116 0.836649 -1.055883 0.703137 -1.427118 1.199519 -1.975521 -0.556997 -0.191217 -2.224019 -0.543608 0.417240 1.437521 0.857554 -0.717281 -1.126729 -0.034974 -2.420105 -3.025616 0.079264 0.174220 -0.304964 0.325872 -0.516432 0.120897 -1.281243 0.545969 1.792990 -0.694334 -0.658985 0.017602 2.211823 0.524604 -0.359142 -0.388365 -0.514362 -0.420144 1.323330 1.948341 -0.452585 -2.185912 -2.774986 -0.432858 1.362236 -0.364314 -0.285982 -0.919888 -1.010316 -1.823137 0.152869 -0.884399 0.107221 -0.281343 -0.189287 -1.772986 0.700873 -0.087880 -1.256579 -0.040263 -1.368526 0.168743 1.062068 -0.599175 0.255297 -0.376634 0.134983 -0.715133 -0.950803 1.046205 -0.618491 1.628772 1.063680 0.210404 -0.399575 -0.393964 -1.725265 1.225580 -1.058887 0.875001 0.530321 -0.588561 1.178025 -1.500540 -1.045349 -0.780696 0.723873 -0.090983 -0.662735 2.591520 1.309757 -0.998262 0.052102 0.270271 0.791450 0.496206 0.898520 -1.398534 -1.042123 0.519086 0.387896 -0.098704 -0.104245 0.328989 -0.795038 0.013238 -1.049349 -0.274104 1.189666 0.983524 -0.326825 -0.149093 -0.034860 -1.443147 -0.040986 1.091104 1.071964 0.139179 -0.699118 -1.564454 0.628037 -2.905685 -0.679382 -0.531615 -0.738245 -0.249163 0.728400 -0.966454 1.402976 -0.625589 -1.400222 1.268992 -2.528962 -1.688046 -1.264496 -0.203376 0.199966 -0.122844 0.788146 -0.797025 0.656300 0.172228 0.577558 -0.698842 -1.340918 0.574376 0.573428 0.772480 -0.478392 -0.691741 1.783247 0.227164 0.002180 -0.596742 0.031569 -0.573363 0.039333 -1.634409 -0.247137 0.059814 1.138237 -1.104190 0.873895 -0.435422 0.158436 0.985059 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 10.035360 -2.908098 -17.442739 31.885363 -3.721992 1.760432 3.208410 -2.524072 0.413801 -38.856699 -14.637687 20.547109 9.741463 3.220973 -1.495315 13.788905 2.826643 9.713517 -32.463711 -1.213554 9.556272 -0.417068 -5.127653 -4.186204 -2.427975 -10.588010 19.265972 4.961687 2.180482 24.667653 -4.370568 19.587804 21.768927 -4.103274 4.886153 14.686082 -7.370168 3.415138 -14.020897 -5.113118 27.541501 9.698363 -1.843193 7.900595 -8.623728 25.278905 8.035605 16.983774 -2.595154 -10.929549 9.070630 19.966743 -7.419233 -6.278332 -22.174650 3.579621 15.905736 10.270932 -6.245060 9.392288 -8.087628 5.604867 11.731748 8.355630 30.514321 11.289741 25.185858 26.558467 21.292686 -18.181804 9.212251 -0.661019 -2.715009 -7.566427 27.568099 -13.121503 -22.889889 2.330271 -5.673926 -28.013685 -0.601106 3.415119 35.181548 -20.549689 -7.409824 -3.057663 14.458994 28.160415 -13.528761 5.214748 -22.207015 -2.596427 -10.526623 38.030301 8.271654 7.222922 -10.002258 11.028110 -1.386076 1.700904 5.666638 -22.725430 6.374592 -31.884375 -16.950417 -17.624259 5.622362 13.486878 -27.508646 -0.377917 -4.584152 17.474554 -41.032381 0.353217 5.492930 10.415884 33.676718 -6.085950 -12.543927 6.766660 0.791861 4.817801 10.768855 -10.999199 8.622595 -2.930374 1.461169 3.234319 6.408502 8.169638 -34.570389 -7.224588 2.446268 -5.710788 6.737517 17.130094 18.643251 -8.407620 11.370845 -17.929252 20.025221 -31.313958 -5.094446 -8.142402 -25.163968 -12.734100 10.738801 15.294738 17.158186 -12.470758 -12.073824 -0.467068 -35.845715 -40.055882 1.314990 5.616942 -4.358046 10.933576 -6.539518 8.028319 -22.286912 13.707410 24.009358 -10.940262 -11.901196 2.298877 24.512720 5.425908 -9.735096 -5.595018 -6.626818 -8.046053 10.938085 31.304734 -3.014834 -33.267356 -43.671331 -8.521183 22.182483 -12.170240 -1.151189 -14.645927 -11.188245 -22.008056 -0.478022 -18.799295 4.588409 2.606517 -8.401604 -29.386543 8.983012 -1.818442 -8.319846 6.204130 -22.958515 4.290740 17.348310 -0.820941 2.340957 1.627240 3.900493 -17.853638 -13.662850 12.800322 -15.795199 20.293269 15.387595 -0.363220 -12.380230 -9.805369 -20.659725 10.150041 -9.034284 15.550917 0.701026 -7.341592 9.910569 -23.497996 -0.502676 -15.165478 5.328585 0.628808 -27.748063 33.583395 17.291129 -12.362027 3.471241 1.858912 13.464314 -1.580996 10.149066 -20.484428 -17.416399 4.207332 -1.817942 0.345136 -2.854167 4.705699 -10.570967 -7.462385 -19.648988 -4.218266 20.509255 9.479248 -3.808906 2.268457 9.362808 -19.213345 2.879340 19.737246 18.859645 2.319835 -17.739724 -40.828109 7.777023 -25.786480 -6.892695 -5.392668 -8.123176 -5.624513 11.843054 -6.708273 19.718710 -1.248780 -17.807305 20.860161 -33.137185 -23.089480 -19.743238 -6.673939 6.362937 -1.914982 1.307844 -10.868784 6.457805 0.205289 5.993264 -9.300290 -18.164865 12.960740 12.505355 25.643206 -4.386059 -3.468866 25.105952 7.679399 -4.243031 -6.995436 -0.725408 -15.196678 3.979061 -28.767322 -3.605000 7.619316 14.277613 -18.185984 5.861141 -7.094218 3.129899 6.413904 -PE-benchmarks/box-stacking.cpp__main = 2.320683 -0.668699 -3.263863 6.818943 -0.631365 0.298628 0.961923 -0.097266 0.122620 -8.794904 -3.520248 3.916607 1.961141 0.605160 -0.058419 2.758165 0.765252 2.380988 -7.546533 -0.254453 2.312093 0.146634 -0.850174 -1.036491 -0.475928 -2.373612 3.344496 1.341583 0.556698 5.671567 -1.150519 3.969668 4.942245 -0.733594 0.993300 3.563132 -1.107048 0.668663 -2.678862 -1.037658 6.410303 2.146334 -0.575369 1.870874 -1.630108 5.795492 1.486306 3.989612 -0.680382 -2.545507 2.183494 3.047778 -1.836265 -1.331935 -4.940786 1.002339 4.063211 2.828207 -1.582227 2.424450 -1.877155 1.269390 2.572755 1.246091 6.560747 2.834308 5.162526 5.717509 5.068869 -4.260507 1.822224 -0.009403 -0.388968 -1.569957 5.441003 -3.011119 -4.518102 -1.052709 -1.092005 -6.613011 -0.267763 0.598542 7.928979 -4.718907 -1.249439 0.126487 2.852882 6.102231 -3.028852 1.040366 -5.087022 -0.462477 -2.013829 8.410957 1.731282 1.380672 -2.016519 2.447552 -0.051450 0.688443 1.220023 -4.880567 0.353416 -7.681430 -3.879476 -3.770326 1.136905 2.763284 -6.180852 -0.265057 -0.076359 3.757990 -9.195388 0.007260 1.475908 2.587008 6.460570 -1.128825 -3.058388 1.328139 0.074610 1.023200 2.472615 -2.764004 1.809492 -1.051117 0.197645 0.759517 1.473529 1.525600 -7.353572 -1.746256 0.495480 -1.271732 1.325816 3.491827 3.817729 -1.909112 2.641618 -4.193522 4.589116 -7.045883 -0.937599 -1.784991 -5.563334 -2.767452 3.245475 3.370528 3.606951 -2.297068 -2.929964 -0.296679 -7.658065 -8.942134 0.484555 1.245079 -0.242028 2.252178 -1.488710 1.627553 -4.762438 2.675451 4.700051 -2.495628 -2.488379 0.467336 5.514829 0.937173 -2.193500 -1.767411 -1.068520 -0.908909 1.916047 6.458694 -0.960143 -6.613491 -9.300008 -2.251081 5.046156 -2.656264 -0.172569 -3.098598 -2.186347 -5.063626 0.224545 -4.170182 1.032427 0.560206 -2.331348 -6.722340 2.079679 -0.582991 -1.824699 1.638106 -5.087224 0.927409 3.575374 0.216691 0.560312 0.362031 0.949798 -4.311084 -3.477117 2.203347 -3.328632 4.614524 3.424460 0.067298 -2.823258 -2.212589 -4.499855 2.724688 -2.136734 3.271703 -0.064033 -1.712641 2.537150 -5.042519 -0.282023 -3.791202 1.361873 0.456896 -6.203928 7.552641 3.896581 -2.914860 0.396189 -0.187376 2.826111 0.016140 2.822938 -4.489149 -3.799149 1.192535 -0.552053 0.017849 -1.032295 1.251659 -2.220187 -1.270411 -4.546340 -1.133667 4.456774 2.437861 -0.877774 0.932014 2.401195 -3.462809 0.586356 4.671998 3.977520 0.215311 -3.888298 -9.143750 2.005693 -4.534447 -1.194279 -0.998803 -2.193812 -1.418587 2.601109 -1.007236 4.535635 0.708548 -3.436321 4.825942 -7.063402 -5.229452 -4.070860 -1.249276 1.582961 -0.829631 0.377383 -2.452986 1.470302 0.141515 1.283488 -1.554565 -4.055033 1.806915 2.512282 5.763675 -0.772196 -0.848411 5.802920 1.536427 -1.264314 -1.323394 -0.266042 -2.881548 0.948506 -5.716097 -0.812290 1.461175 3.097092 -4.047046 1.698983 -1.533997 0.455816 1.632695 -PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.921188 -0.986281 -0.344834 1.822195 0.337524 0.465232 0.135733 -0.021304 0.308904 -2.615922 -1.283808 1.377772 0.095030 0.321960 0.249110 0.555248 0.880641 0.151032 -2.621298 -0.055731 0.324029 -0.314284 -0.055209 0.155772 0.110270 -0.936243 1.422060 0.693921 0.241486 1.373807 -0.615170 1.220034 1.294099 0.116797 0.761038 0.915026 -0.507006 -0.311628 -0.921302 -0.634082 2.220880 0.399045 0.103063 0.881458 -0.006699 1.657815 0.490771 1.840387 1.863545 -0.591811 1.109451 -0.166040 -0.672054 -0.130098 -1.961384 0.238002 0.574691 0.131478 -0.698919 0.493646 -0.449422 0.496411 0.408724 -0.119071 2.064014 0.257895 1.781926 1.258017 1.167691 -1.214417 0.165282 0.449718 0.603366 0.682939 1.001018 -1.191805 -0.903778 -0.813999 -0.185022 -1.401087 -0.013301 -0.547830 1.838970 -0.977445 -0.738485 -0.065300 -0.156988 1.646271 -0.596585 0.460765 -1.764434 0.109736 0.351680 1.365775 0.324385 0.210078 -0.085455 0.292782 -0.279725 0.587765 0.559481 -1.468092 -0.153182 -2.615068 -1.009233 -1.038134 0.677875 0.308615 -1.654773 0.612943 -0.368568 0.962497 -1.942225 -0.357032 0.297831 0.434558 1.261889 -0.016661 -0.404480 -0.528209 0.453863 1.014679 0.794845 -0.859083 0.544923 -0.981412 0.379424 0.242620 0.796052 0.238333 -1.031307 -0.770242 0.378372 0.518379 0.152985 0.580751 1.056170 -0.288917 0.848718 -0.623042 1.264204 -1.704009 -0.510194 -0.975419 -0.588777 -0.803790 2.636032 1.238851 1.682727 0.298012 -0.547582 -0.018134 -1.890014 -2.461221 -0.035983 -0.004656 0.041181 0.685231 -0.252270 0.835090 -1.097960 0.283261 0.570727 -0.789777 -0.829418 -0.209783 -0.632514 0.148784 -0.437581 -0.719819 0.054953 0.240935 -0.207995 1.630169 -0.312463 -2.958423 -1.990663 -0.932060 1.259981 -0.970463 0.176150 -0.468924 -0.354962 -1.049192 0.006617 -1.178581 -0.152684 -0.053366 -1.356757 -1.810314 0.472903 -0.404123 0.223652 0.641285 -1.460484 0.369880 0.702889 1.110451 0.395398 0.543667 -0.223413 -1.481281 -1.155754 0.029534 -1.068257 1.749753 0.495192 -0.422322 -0.984070 -0.870513 -1.200618 0.973506 -1.297750 0.859205 0.123294 -0.983871 0.365494 -1.194176 0.228466 -0.813667 0.540172 0.351120 -2.971038 1.751642 1.392677 -1.228290 -0.305098 -0.740440 0.765021 0.009959 1.186021 -1.018067 -0.569320 0.137419 0.291775 0.031995 -0.427494 0.594183 -0.083958 -0.577185 -1.705189 -1.017784 1.247189 0.661479 -0.105548 -0.075802 0.952992 0.095494 0.433577 1.635573 0.686848 0.291734 -1.130812 -3.830524 0.465696 1.331971 -0.421982 0.745269 -1.355836 -0.605911 0.211404 -0.855816 1.352941 0.071480 -0.096097 1.414560 -1.293114 -1.222705 -1.231122 -0.742857 0.123936 -0.154139 0.660582 -0.747236 0.014795 -0.418580 0.299618 -0.677947 -0.608730 0.134224 0.735282 1.236443 0.368120 0.344961 1.370429 0.610490 -0.667440 -0.411942 0.039703 -0.886595 0.655137 -1.835099 -0.388615 0.236528 0.437594 -0.951774 0.038512 -0.103807 0.638661 -0.162745 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = 7.038073 -3.463253 -5.738976 17.507081 0.355289 4.249394 1.790239 -0.801060 1.458940 -22.639009 -9.452590 12.245337 3.809156 5.271691 -0.065249 6.204903 4.493550 3.666253 -20.294725 -2.135274 4.727110 0.187108 0.696936 0.073289 0.095317 -5.684183 11.977633 3.170203 2.621035 13.632791 -3.543460 12.192456 12.612653 -1.081939 2.950721 7.286614 -2.939609 -0.828767 -10.399448 -6.702548 16.548474 2.152703 2.871982 7.813257 -5.966316 14.775784 4.360539 14.543653 9.859440 -6.843321 8.229205 2.275821 -5.282051 -2.512806 -13.616844 2.852827 4.218059 4.088876 -3.211735 4.575115 -1.207751 3.715890 5.565751 0.520761 15.809659 6.183656 13.001782 13.758850 11.073770 -11.472812 3.978670 1.349980 -0.970221 1.701725 11.609617 -12.208635 -8.580638 -0.238038 -2.610626 -12.833074 -0.912271 -3.067936 17.990182 -10.532825 -4.565016 -2.390723 2.808742 15.354340 -5.078293 5.189249 -13.980520 -0.800164 0.215927 13.125952 2.186384 2.269405 -3.353818 2.056929 -2.592761 2.148650 4.242562 -12.011404 2.409851 -15.339418 -8.568689 -8.620018 5.221560 7.328942 -14.945914 3.175508 -8.987942 8.039384 -21.159607 -3.688797 1.915206 6.495831 14.667741 3.790225 -4.040584 -2.681103 4.572684 5.993285 6.123370 -7.970833 7.007271 -5.352127 -1.747339 2.010167 5.463210 3.626491 -14.460785 -7.657247 1.086508 0.163839 4.155567 8.131554 10.708073 -1.788458 7.199097 -7.754446 10.650999 -15.029475 -7.535601 -5.301751 -10.263909 -8.396608 16.712021 8.000257 13.175902 -1.952093 -6.626241 -0.874910 -17.409960 -18.755653 -0.894089 1.809941 -0.859517 9.774414 -3.339499 6.794906 -12.413167 5.434095 9.067249 -5.528212 -8.996568 -0.124520 -0.054108 2.129609 -3.995380 -5.636524 0.180876 -3.507311 0.806266 17.490678 -0.879832 -21.954782 -22.216533 -6.337346 12.414555 -7.880639 0.654853 -7.174056 -4.770851 -9.029420 -2.547862 -11.501191 -1.155874 2.608302 -9.752538 -17.055607 7.158353 -2.571641 -2.083245 6.804224 -12.781809 3.185458 8.615774 7.616611 2.221485 2.571657 -1.206592 -11.143346 -8.344691 3.175048 -9.694721 11.789302 5.184458 -1.507946 -8.230980 -8.149201 -9.289198 6.993098 -8.139301 9.016689 1.005927 -2.462143 2.763627 -12.998720 3.484228 -8.827985 3.325868 2.775573 -24.756798 14.185515 8.117933 -8.437149 -0.343933 -3.252157 7.730683 -0.941886 6.932448 -9.347416 -8.959239 2.598277 2.595186 0.206959 -5.619865 2.357698 -3.203184 -7.035044 -12.079111 -5.521488 11.634784 4.716908 -2.489708 -1.112700 10.147135 -5.224835 3.583993 12.307617 9.585632 1.168882 -8.773052 -28.141317 4.585456 3.382409 -2.657153 0.933883 -10.761802 -2.793114 7.305308 -6.998601 11.228785 -1.011101 -2.859183 12.612886 -15.249984 -11.614855 -10.551648 -5.124142 2.896534 0.911959 0.335019 -6.372898 2.849036 -0.346332 1.811750 -6.379136 -8.769880 4.920985 7.449499 14.471019 -1.977737 3.911728 14.056488 6.062068 -2.366197 -2.799511 0.688107 -8.367017 0.936038 -17.317562 -1.378803 5.691812 5.307639 -10.079605 0.903661 -3.615097 0.986825 0.179522 -PE-benchmarks/longest-palindrome-substring.cpp__main = 4.793940 -0.705218 -1.702766 6.663673 1.192318 -0.419934 0.200328 2.227222 0.508064 -6.927923 -3.665849 4.704682 0.524712 1.095641 1.958527 1.816719 2.042432 2.000154 -8.512467 0.742518 -0.579942 0.065690 -1.766132 -2.729164 0.596281 0.785677 3.190355 2.271792 1.092997 4.268710 -3.188535 3.084147 3.369954 0.626658 2.686308 0.449292 0.725397 -1.137031 -4.438845 -4.047441 7.941190 1.435053 1.100537 5.220298 -0.316664 5.051176 1.107455 6.330413 3.390615 -1.229002 3.405024 -2.353716 -2.331728 0.063576 -6.741508 2.657566 2.927448 1.044817 -2.329436 2.917758 0.715190 2.346365 2.749623 -2.296498 7.256529 2.586347 5.025825 4.764592 5.569451 -4.038198 1.559178 -0.177201 4.006510 1.087421 2.054343 -6.176000 -1.178317 -5.072882 0.389815 -6.567310 1.908921 -2.701209 6.992430 -4.488851 0.657030 1.296329 0.039402 5.197584 -4.461895 2.041594 -5.058630 -0.297376 -0.488303 5.985165 -0.109479 0.687131 0.201615 1.139960 -0.571821 1.971689 1.079842 -3.205459 0.836314 -8.057543 -4.418561 0.643294 -0.109040 -0.325990 -4.128132 1.330238 -0.982270 2.748089 -6.958407 -3.878742 0.594355 0.768737 1.930253 1.369741 -1.305842 -1.573984 0.067651 4.111678 1.724493 -4.312984 3.146020 -2.657895 -2.271710 1.942740 4.634726 2.223627 -3.897040 -2.613338 0.459462 0.829524 -0.056459 0.852821 1.486028 -1.891234 3.212236 -2.731380 4.032096 -5.776862 -3.639397 -2.710917 -2.718952 -1.722593 7.855534 1.215710 5.266133 3.139107 -1.751746 -0.591162 -5.837697 -7.884806 2.155972 1.649341 -0.042441 2.431773 -0.441824 1.405922 -3.659820 -1.668088 4.385199 -4.347949 -5.580557 -2.450089 1.039753 -0.020947 -2.042668 -4.179552 3.147024 2.959329 -0.362417 4.207964 -0.776637 -7.867168 -5.596207 -2.272865 4.591179 -2.099052 0.639862 -0.454367 -0.188544 -4.076614 -0.161353 -5.547453 1.296520 0.842733 -4.790690 -6.138045 1.951388 -0.803053 0.906988 1.644346 -4.728295 3.027075 1.720569 5.419303 -1.793411 2.726363 1.881485 -6.244990 -6.526314 -1.348874 -1.037307 5.496460 1.140702 1.092487 -3.479708 -2.427474 -2.650159 4.115490 -6.014309 2.875369 -0.088736 -0.992106 1.456588 -5.037900 -0.973773 -4.171953 1.928671 1.288096 -8.536722 5.785803 3.517848 -5.103043 -1.506310 -5.361911 4.142823 0.084523 7.428456 -4.018187 -2.406179 1.601182 2.691269 -1.046681 -4.503414 2.150034 0.605634 -2.836315 -5.335698 -3.470489 3.693025 2.504900 0.015459 0.487271 3.697177 0.218103 -0.803960 7.159056 2.178001 0.335913 -3.674473 -10.813037 0.856186 5.971944 0.140800 1.606711 -5.686107 -2.283293 0.738489 -1.414675 4.372697 2.035763 1.591165 4.588072 -5.315437 -4.354803 -3.162863 0.503120 0.651308 -1.649044 1.288688 -3.433737 -0.055069 -0.550795 1.462036 -2.625738 -1.550338 -2.518747 0.395701 4.238727 -0.594575 0.267709 6.055081 3.087914 -2.129275 0.052820 -1.028630 -2.357460 1.250863 -5.320332 -1.094283 0.520814 0.953461 -4.416842 1.794542 0.232689 0.948598 -0.135422 -PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/longest-palindrome-substring.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/longest-palindrome-substring.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/longest-palindrome-substring.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = 5.580771 -2.922890 -2.793438 5.814749 0.722591 -2.010520 1.028791 1.579168 1.256111 -7.169245 -2.493261 6.791932 0.734060 -2.013250 -0.181795 2.636738 2.749641 1.023751 -8.754610 2.399403 0.014599 -1.025896 -4.606416 -1.074390 -0.301269 -3.129097 3.745364 3.399916 -0.215577 4.812982 -2.444568 2.194392 3.907413 -0.647678 4.185828 4.668852 -0.492384 -0.936912 -1.332727 -0.501820 8.384004 3.566296 -0.563689 2.885354 2.427447 6.352927 1.218724 7.794884 3.406218 -1.542901 3.191801 2.505834 -3.267064 -0.785854 -7.350473 0.821447 3.222349 0.108008 -4.279970 3.355669 -2.390160 1.498744 2.772843 2.831214 7.979937 1.789610 4.760177 4.475532 7.034381 -3.208416 0.910654 1.591171 4.748208 1.299940 5.304449 -3.105480 -4.976835 -3.098186 0.520364 -5.351699 0.690829 -1.183909 7.193827 -4.697476 -0.469320 1.025993 2.107653 5.788764 -4.598020 -0.579648 -5.817460 0.159759 -0.717827 9.440815 0.017040 2.917521 -0.712931 2.647936 -0.701991 2.249948 0.516629 -6.937195 -0.670563 -10.159043 -4.427650 -4.190650 -1.466803 -0.791327 -6.595159 0.425489 1.126887 5.121939 -7.835672 -0.267390 1.373369 -0.910289 6.236893 0.916210 -1.751437 0.103646 -0.517936 2.883836 1.855333 -2.185421 0.466800 -2.369961 2.033572 2.153103 2.174583 1.158047 -7.105841 0.247706 2.900476 0.765684 -0.491258 2.054288 1.442033 -4.678006 2.489693 -4.087172 4.876573 -6.993782 -2.514622 -4.181381 -3.739958 -1.986306 6.008182 4.144284 5.820314 0.507691 -1.106349 -0.043942 -8.202031 -11.124267 1.009307 -1.848045 -0.726200 -0.076248 -0.526066 0.032215 -3.412885 -0.323312 3.193187 -4.136736 -2.591295 -1.827545 3.380448 0.726397 -1.849500 -1.688136 -0.725786 2.116756 3.131587 4.729210 -2.516934 -12.200388 -7.207663 -2.836241 4.654197 -2.235123 0.147801 -1.268829 -2.484932 -4.317713 0.827296 -3.967634 1.375828 -2.669666 -1.728380 -6.130446 1.406230 -1.364489 0.786819 -0.564382 -5.115464 1.849705 1.855309 1.740389 0.019747 1.783681 0.267891 -6.107656 -4.706481 1.658348 -0.730031 7.852428 3.340949 0.403530 -1.630406 -1.658572 -5.899587 3.656516 -7.691229 2.878172 2.622712 -4.969938 4.323089 -4.023993 -1.848666 -3.290571 3.355385 -0.113289 -5.526999 9.169462 6.624097 -6.202252 -1.227878 -2.231374 2.945850 1.537674 5.999490 -4.282163 -2.475964 1.804546 0.821401 -0.714990 -0.547740 2.319430 -0.684025 1.420692 -6.224625 -2.806880 4.733266 3.738120 -0.603105 -1.112021 -0.568163 -2.285546 -0.269292 6.439172 1.987258 2.752025 -5.537516 -12.483067 1.633404 -1.571476 -1.080915 1.999055 -3.623798 -2.585054 0.064014 -2.532114 5.802360 -0.556515 -1.953602 4.715924 -7.534444 -6.355331 -4.676051 -1.413132 0.567623 -1.307593 3.955441 -3.451461 0.060062 -2.323362 3.439091 -2.644093 -1.998906 0.254717 2.736136 2.924500 1.799592 -3.085565 5.810576 0.908866 -1.509347 -1.847432 -0.328769 -1.983271 2.452041 -5.802939 -1.906892 -1.521059 3.304534 -3.903608 3.681764 0.511860 4.305699 1.043445 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 4.767620 -1.852845 -2.448739 4.500597 0.590542 -2.030301 0.813806 1.670424 0.912788 -6.073351 -2.434115 5.690985 0.565226 -2.062082 -0.003487 2.219607 2.418391 1.545037 -7.392632 2.299584 0.279029 -0.469407 -3.964124 -1.118381 -0.141531 -2.246604 1.922182 2.335100 0.019503 4.132328 -2.330497 1.803251 3.332554 -0.568060 3.506492 3.988869 -0.693116 -1.007692 -0.145340 -0.634116 7.197403 2.836853 0.074903 2.604224 2.218410 5.273829 0.273196 6.852912 2.800686 -1.352723 2.960163 1.319511 -2.698395 -0.085176 -6.137806 0.999932 2.644406 0.321108 -3.721787 2.848781 -1.734185 1.385032 2.396212 1.433859 6.769224 2.041715 3.204165 3.825510 6.148584 -2.267292 1.009134 0.946492 4.015908 0.825545 4.165707 -2.794972 -3.300219 -3.059730 0.184446 -5.209732 1.164738 -1.085815 7.305984 -4.304054 0.420256 1.210277 2.051024 4.924783 -3.610681 -0.773956 -4.931185 0.209415 -0.762429 7.479393 -0.228667 2.372685 -0.920082 1.990961 -0.984570 1.632881 -0.121714 -5.632668 -1.397235 -8.924210 -3.968348 -3.309828 -1.497523 -0.786122 -5.999409 0.273440 1.374421 4.495897 -7.155969 -0.368100 1.056286 -0.973012 3.853346 1.803330 -2.252067 -0.185333 -0.924934 2.643273 1.047309 -1.711936 0.044378 -2.702225 0.854948 1.717275 1.952750 0.761999 -6.076273 0.106086 2.119680 0.500934 -0.652004 1.761383 1.178743 -3.787920 2.110240 -3.431037 3.844604 -5.950526 -2.357318 -3.722033 -3.396327 -1.720545 5.559309 3.658776 4.924633 0.688115 -0.795050 -0.392992 -7.099517 -8.609488 1.095319 -2.362748 -0.031590 -0.069398 -0.286989 -0.340984 -2.572433 -0.586292 2.224266 -3.677312 -2.170245 -1.913928 3.850906 0.211383 -1.528114 -2.086834 -0.688648 2.427592 1.943808 3.165463 -2.386569 -9.088885 -6.028126 -2.414162 3.984933 -1.855097 0.611368 -1.121267 -1.475238 -3.102412 0.526899 -3.472015 0.830301 -2.418644 -1.262133 -5.216162 1.122398 -1.154801 0.303940 -0.656437 -4.141528 1.920409 2.108901 2.129197 -0.227356 1.457908 0.149609 -5.452132 -4.149270 0.979456 -0.462232 6.030543 3.620530 0.588715 -2.006840 -1.397833 -5.012073 3.170313 -6.882802 2.402660 2.265671 -4.033574 3.860627 -3.664860 -1.330731 -3.046609 2.768558 -0.232215 -6.394356 7.199072 5.015793 -5.402267 -0.794623 -2.799364 2.727767 1.415525 5.150683 -3.082566 -1.675871 1.681773 0.317030 -0.647539 -1.105238 2.021417 -0.682102 1.719779 -5.274994 -2.197402 4.283713 3.159101 -0.557575 -0.822819 -0.490628 -1.476103 0.270733 5.481300 1.693426 1.979800 -4.649321 -10.828566 1.258704 -0.207312 -0.207503 1.864240 -2.890044 -2.063604 -0.173074 -2.133586 4.964455 -0.506405 -0.987603 3.889612 -6.324801 -5.417226 -3.434416 -0.448377 0.768458 -1.303289 3.188600 -2.942515 -0.180235 -1.807047 3.273984 -1.634594 -1.910092 -0.962971 2.393189 2.854519 1.802618 -2.744895 4.896878 0.722519 -1.470569 -1.084377 -0.513231 -1.029668 1.571348 -4.773126 -1.577387 -1.248408 2.574865 -3.559074 3.711223 0.264061 3.618300 0.921756 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = 1.936047 -1.143651 -1.424424 2.219185 0.075813 -1.040994 0.671492 0.781401 0.254100 -2.945665 -0.905290 3.796401 0.251321 -0.938248 -0.406132 0.750572 0.785861 0.887478 -3.620996 0.938431 0.073096 0.003966 -2.387373 -0.897088 -0.149907 -0.919911 1.572079 1.480618 -0.061596 2.005968 -0.814748 0.463520 1.508751 -0.101374 1.417300 1.978802 0.119935 -0.163907 -0.470918 -0.397375 3.358554 1.929346 -0.638649 1.306990 0.963809 2.499256 0.786461 3.114286 0.724417 -0.627796 0.764878 1.396682 -1.414470 -0.665083 -2.827113 0.265672 1.464025 0.724879 -1.549158 1.517471 -0.800055 0.326625 1.135488 0.937645 3.677036 0.742876 1.675848 1.749638 2.875946 -1.341408 0.313278 0.519090 1.893974 -0.106411 2.692182 -1.164331 -2.290968 -2.133102 0.022673 -3.602915 -0.028873 -0.098417 3.902028 -1.957137 0.517643 0.465380 1.334415 2.011244 -1.815264 -0.614410 -2.466091 -0.065997 -0.310867 5.231970 0.244518 1.067852 -0.291822 1.101949 0.099354 0.877890 0.274234 -2.577780 0.020433 -4.804845 -1.228812 -1.630179 -0.869905 -0.328091 -2.831031 -0.322435 1.094196 2.832843 -3.958162 -0.226139 0.830217 -0.455876 2.707105 -0.153471 -0.981421 1.027319 -0.396807 0.653325 0.919336 -1.091542 -0.057821 -0.193042 0.716237 0.603859 0.670762 0.696404 -4.517240 -0.170250 1.127462 0.435266 -0.163076 0.662383 0.222725 -1.669072 0.902120 -2.327882 1.971027 -3.179005 -0.168417 -1.134738 -2.004472 -0.785878 2.324918 1.902185 2.611121 -0.284066 -0.424831 -0.113194 -3.556839 -5.695355 1.084624 -0.555647 -0.191902 -0.237822 -0.190071 -0.248889 -1.512984 -0.236943 1.888186 -1.404966 -0.816728 -0.455191 2.815499 0.271125 -0.748568 -0.710385 -0.274779 1.061788 1.698569 1.517961 -1.272978 -5.541110 -3.284198 -1.019904 1.892591 -0.686981 -0.274624 -0.506083 -1.174507 -1.544316 0.375101 -1.571750 1.254318 -0.994503 -0.762164 -2.427730 0.508482 -0.504337 0.274467 -0.200156 -1.737646 0.546349 0.868131 0.498339 -0.208225 0.509881 0.893673 -2.350440 -1.773009 0.730541 -0.162908 2.941214 1.668128 0.543382 -1.200760 -0.400174 -2.926765 1.458744 -3.604834 1.112184 0.741755 -2.100424 2.120588 -2.130012 -0.536862 -1.139741 1.357705 0.125271 -2.480520 3.783128 2.728890 -2.186632 -0.449064 -0.422581 0.742579 0.906827 2.334237 -2.039042 -1.327736 0.884821 -0.179905 -0.222275 -0.236422 0.839135 -0.300239 0.795516 -2.551811 -1.182513 1.820014 1.362034 -0.235469 -0.198035 -0.265006 -1.436649 -0.853490 2.783859 0.828534 1.103579 -2.318705 -5.344400 0.863646 -1.763057 -0.175367 0.730858 -1.301248 -1.050681 0.331560 -1.126396 2.192237 -0.180896 -1.907771 1.796004 -3.630497 -2.484046 -1.696280 -0.482127 0.507886 -0.626716 1.765758 -1.193025 0.209356 -0.780015 1.168755 -0.850038 -0.626896 0.233045 1.013205 1.140971 0.830192 -1.695230 2.416565 -0.069097 -0.684387 -0.519815 -0.323667 -0.573021 0.931734 -2.790568 -0.636370 -0.669137 1.540671 -1.521841 1.735648 0.145134 1.480367 0.750118 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = 1.943737 -1.937183 -0.362953 2.042117 0.570240 -0.281997 0.373767 0.461811 0.659765 -2.747475 -1.104427 1.714640 -0.009231 -0.430750 0.343386 0.667884 1.382549 -0.205257 -3.379507 0.651258 -0.097243 -0.590175 -1.324405 0.156843 0.000000 -1.433407 1.477890 1.556406 -0.087808 1.599258 -0.918133 0.765664 1.373503 -0.143480 1.610571 1.663262 -0.002137 -0.395318 -0.631125 0.003880 3.336021 0.957050 -0.221825 1.102588 1.065620 2.308897 0.395904 3.483985 2.341639 -0.571002 1.964242 -0.193212 -1.058020 -0.260501 -2.953484 0.261683 1.459873 -0.035565 -1.741628 1.184208 -0.902851 0.606087 0.740052 0.871467 2.915558 0.521038 2.031945 1.316361 2.278480 -1.343537 -0.005784 0.953483 1.878782 1.043491 1.222332 -1.620108 -1.389896 -2.092748 0.372687 -1.310043 0.118782 -0.846723 1.764021 -1.344700 -0.485837 0.547155 -0.164727 1.842530 -1.452115 -0.004224 -2.302822 0.152877 0.526227 2.797255 -0.192799 0.741251 0.276991 0.786553 -0.229324 1.189006 0.491408 -2.413085 -0.722077 -3.943746 -1.785030 -1.356893 -0.053484 -0.490114 -2.263120 0.445909 0.306061 0.864761 -2.250800 -0.190823 0.484038 -0.014057 1.989548 0.383036 -0.470730 -0.644527 0.284494 1.395629 0.952906 -0.790228 0.455019 -1.749815 1.162770 0.948835 0.925657 0.105251 -1.543441 -0.103983 0.955134 0.855376 -0.355115 0.363577 0.409614 -1.440325 1.062718 -1.166966 1.871133 -2.539352 -0.938314 -1.824282 -0.766110 -0.632662 3.381356 1.396840 2.367418 0.788947 -0.872619 0.127070 -2.626323 -4.040752 0.010537 -0.534921 0.049665 0.079833 -0.236952 0.366363 -1.012615 -0.293281 0.558367 -1.377185 -0.912891 -0.767759 -0.531798 0.233555 -0.645432 -0.742078 0.241459 1.138256 0.403158 1.719039 -0.797137 -4.583649 -2.125951 -1.241645 1.543284 -0.858826 0.187181 -0.099468 -0.699978 -1.985778 0.489652 -1.433111 0.176595 -0.985466 -1.407806 -2.118614 0.552867 -0.671112 0.959657 0.127486 -1.867289 0.535898 0.214091 1.501524 0.404978 0.922256 -0.133456 -2.525843 -2.094619 0.023413 -0.318173 3.264726 0.546180 -0.177819 -0.163210 -0.803420 -1.899254 1.388368 -2.846059 0.819214 1.001872 -2.087762 1.240759 -1.162858 -0.581744 -1.228914 1.159540 0.327651 -2.020550 3.178880 2.422446 -2.327476 -0.893154 -1.156033 0.949841 0.468799 2.359977 -1.265082 -0.558868 0.540269 0.677351 -0.198970 -0.422161 0.974171 0.142133 0.253827 -2.524825 -1.528471 1.602089 1.417826 -0.139250 -0.418609 0.213504 -0.015539 -0.255323 2.601189 0.370286 0.935457 -1.702784 -5.010147 0.647319 1.137355 -0.503818 1.186029 -2.037709 -1.054599 -0.189436 -0.649993 2.075376 0.585891 0.081617 1.839144 -2.038290 -2.092712 -1.731286 -0.823612 -0.032193 -0.556628 1.338232 -1.280481 -0.028460 -0.961779 1.002046 -0.880770 -0.429794 -0.391650 0.733482 0.796074 0.665062 -0.623124 1.958674 0.406896 -0.732498 -0.748381 0.144307 -0.742701 1.432081 -1.735273 -0.819195 -0.705344 0.904503 -1.189606 0.862962 0.210499 1.644303 0.132008 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = 2.071355 -1.157605 -0.814715 1.774168 0.241197 -0.700032 0.450064 1.064063 0.021488 -3.239988 -1.782950 2.216335 0.037949 -0.859145 0.393259 0.824101 1.016409 0.497494 -4.890447 0.892339 0.552668 -0.150224 -1.426673 -0.510924 0.203403 -1.114555 0.518763 1.248255 -0.164631 1.887955 -1.076441 0.979169 1.420044 0.270882 1.468825 1.621540 -1.173878 -0.695066 0.452580 -0.275037 3.455149 1.592827 -0.353142 1.013352 1.050244 2.331624 -0.191052 3.066836 1.592476 -0.595592 1.630269 -0.057997 -1.480283 0.234254 -2.822492 0.160216 1.541313 0.375681 -1.189724 1.295249 -1.152443 0.639520 0.847920 -0.142340 3.956797 0.836433 2.027752 1.351460 2.500442 -0.919618 0.488910 0.341119 1.560291 -0.002236 1.260731 -1.448249 -1.094927 -3.092107 0.088316 -3.958500 0.197184 -0.589901 3.609115 -1.559670 0.239416 0.395619 0.905426 2.198352 -1.541856 -0.306341 -2.374030 0.299639 -0.053665 3.818522 -0.130430 0.969869 -0.240972 0.752304 -0.129438 0.784751 0.002485 -2.031895 -1.088170 -4.952632 -1.350338 -1.171908 -0.246728 -0.366990 -3.120960 0.505909 1.078859 2.024611 -3.465141 -0.449915 0.552828 -0.113158 1.108867 0.833922 -1.630194 -0.271389 -0.419595 1.664798 0.747885 -0.930030 0.229420 -2.036647 0.573515 0.671019 1.052769 0.279663 -3.346586 -0.358291 1.038141 0.216773 -0.173528 0.965513 0.631747 -0.769785 0.944528 -1.925245 1.811206 -3.221195 -0.270360 -1.755253 -1.390140 -0.644276 3.229296 2.822249 1.830130 0.724589 -0.286047 -0.029792 -3.415997 -4.446362 0.339407 -0.884100 0.548933 -0.395872 -0.089933 -0.048261 -1.144011 -0.221858 0.877115 -1.474698 -0.793437 -1.189679 2.159287 0.325125 -0.805614 -0.959895 -0.192266 1.502790 -0.010193 1.173663 -0.942556 -4.337882 -3.111162 -1.354067 1.753961 -0.868291 0.049804 -0.818155 -0.115715 -1.637649 0.437227 -1.394313 0.268182 -0.611756 -1.335332 -2.232133 0.252412 -0.390957 0.279532 -0.305939 -1.623564 0.476898 1.594141 1.587537 0.227094 0.778941 0.160998 -2.195876 -2.122109 0.064118 -0.383049 2.701908 1.760321 -0.062405 -1.536146 -0.502765 -2.637833 1.935718 -2.899966 0.976979 0.285456 -2.112517 1.650987 -1.710486 -0.454993 -1.082422 0.988593 -0.277122 -3.884126 3.284169 2.191175 -2.375694 -0.638591 -1.948833 1.207799 0.626823 2.277261 -1.202037 -0.454317 0.333679 0.030320 -0.247115 -0.538751 1.119369 -0.341427 0.416707 -2.592937 -1.407784 2.129557 1.313908 -0.249155 0.107755 0.033582 -0.086071 0.255966 2.474983 0.567454 0.166490 -1.860346 -6.128304 0.405286 0.879304 -0.029645 0.806031 -1.567945 -1.424958 -0.382479 -1.032287 2.265388 0.749164 -0.802279 1.635642 -2.400512 -2.139025 -1.810905 0.087435 0.130030 -0.706126 1.181974 -0.972100 -0.125199 -0.298651 1.308775 -0.066565 -1.438269 -1.242534 0.764338 1.582616 0.992918 -1.335531 2.097739 0.457288 -0.702415 -0.708830 -0.204434 -0.502492 1.178819 -2.021368 -0.818683 -0.629540 0.848467 -1.449401 1.479042 0.463327 1.628082 0.420357 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 4.576376 -3.407769 -0.465748 4.194293 1.530633 -0.945484 1.039876 1.955434 0.773056 -6.776881 -3.550067 2.719652 -0.073847 -1.371170 1.296751 1.260250 3.202187 0.090577 -8.876253 1.572255 0.546624 -1.099900 -2.811117 0.030531 0.052914 -3.174201 1.155977 3.647974 -0.173231 4.022795 -2.303647 1.713982 3.390406 0.038328 3.794418 4.215588 -0.573299 -1.253320 0.140344 -0.077530 8.146462 2.271271 -0.511909 2.294616 2.706448 5.526166 -0.342107 7.819847 3.711051 -1.454854 4.925056 -2.115972 -2.550390 0.009413 -6.758399 0.790640 4.216611 0.770945 -4.155968 3.010607 -2.476962 1.432294 1.772568 0.721434 6.989991 1.965345 4.003344 3.085942 5.599043 -3.061492 0.033506 1.988045 3.812079 1.646023 1.215712 -3.731215 -1.770494 -6.593490 1.093746 -4.982395 0.314754 -1.921113 5.617912 -3.271300 -0.333495 2.032421 -0.062155 4.383495 -3.437155 -0.291335 -5.549277 0.335002 0.866184 6.352343 -0.687919 1.473661 0.805811 1.744122 -0.494021 2.943264 0.116462 -5.146782 -3.551302 -10.046789 -4.338569 -2.732993 -0.148872 -1.174254 -5.662546 0.573598 2.203936 1.870858 -5.762842 -0.635960 1.266889 0.400311 2.270560 2.230047 -2.816659 -1.894183 -0.046047 3.242958 2.182948 -1.681850 0.891486 -5.143946 1.970482 1.987721 2.254431 -0.003483 -4.294535 -0.386692 2.134540 0.810350 -1.007870 0.767344 0.816251 -2.743726 2.520695 -3.035006 4.443599 -6.421981 -1.530889 -4.569286 -2.465032 -1.386202 7.801953 4.268850 4.465445 2.490843 -1.888836 0.267145 -6.202604 -8.695081 0.107419 -1.492903 1.404393 -0.438777 -0.633255 0.630844 -2.083880 -0.893689 0.608056 -3.329689 -2.111870 -2.298898 1.242069 0.452079 -1.649633 -2.248625 0.763927 3.538842 -0.436817 3.285529 -2.334801 -8.124428 -5.077058 -3.312996 3.803149 -1.942313 0.494081 -0.479029 -0.731341 -4.661331 1.382760 -3.440895 0.235995 -2.380739 -3.322024 -5.160431 1.360131 -1.539782 1.397503 0.358017 -4.127111 1.367232 1.643372 4.028146 0.841066 1.930674 -0.314385 -5.781315 -5.236928 -0.525755 -0.410690 6.905860 2.586629 -0.232845 -0.976974 -1.886172 -4.405410 3.892283 -5.708468 1.874923 1.844326 -4.864423 3.335261 -3.001397 -1.381998 -3.238278 2.620345 0.802078 -6.228897 7.148603 4.984517 -5.534361 -2.231442 -4.206928 2.209176 1.309278 5.766410 -2.258670 -0.850990 1.400851 1.137061 -0.582986 -1.522205 2.386619 0.272523 1.165402 -6.152083 -3.681192 4.148513 3.561819 -0.343880 0.039160 0.594955 1.065096 0.196980 6.345932 0.808654 1.090725 -3.642154 -11.882699 1.619683 3.705004 -0.477408 2.246305 -4.263106 -2.901508 -0.958708 -0.964348 5.108313 2.648627 0.357843 4.410593 -4.236574 -5.009911 -3.895543 -0.569247 0.279876 -1.922662 2.375786 -2.950244 -0.011363 -1.777599 2.443665 -0.555975 -1.900274 -3.316367 1.392496 2.544802 1.725244 -1.843848 4.805437 0.904930 -1.921299 -1.530020 0.226480 -0.832124 3.363217 -3.432865 -2.144322 -1.750900 1.902498 -2.895931 2.484431 0.764856 3.515733 0.989409 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 3.217975 -3.339634 -4.677176 11.523113 -0.082621 2.027562 1.215910 -1.351948 0.404484 -15.514822 -6.138794 9.340972 2.220681 1.577478 -1.092238 3.577766 2.527555 3.708161 -14.509785 -1.330484 2.913037 -0.134984 0.298417 -1.769468 -0.338989 -3.395352 10.209188 2.410096 1.347088 8.299784 -1.555707 7.432129 7.679573 0.413665 2.284071 5.154557 -4.071179 0.180901 -5.890624 -4.608269 10.859024 2.594169 1.365842 4.460678 -2.879356 8.846606 5.131595 5.683154 6.574319 -3.326464 3.305268 5.415409 -3.124258 -2.769284 -9.741393 0.460662 3.033726 2.977931 -1.717332 2.810235 -1.400600 2.067921 3.399351 0.592574 11.130987 2.020071 9.485068 8.972863 6.325667 -6.894748 2.542729 0.103239 0.022822 -0.482053 9.020741 -7.149497 -8.007797 -0.239330 -3.209623 -11.947982 0.306376 0.143824 12.935880 -5.806731 -3.215715 -2.865992 3.206877 9.439148 -2.846299 1.299469 -9.321120 -0.310624 -1.509420 11.057124 3.242689 1.789065 -2.607517 1.894497 -1.144371 1.116949 3.314855 -8.007085 4.296695 -13.761669 -3.714786 -6.616017 3.348098 4.041236 -8.010644 1.272953 -5.261857 6.378958 -14.222582 -2.192959 1.755326 2.747076 9.312398 -4.645706 -2.773079 1.106573 1.233223 3.404689 4.286687 -5.367587 2.554392 -0.454760 -0.123516 0.047337 3.123030 3.103186 -10.463315 -4.754488 0.665894 1.341517 2.572601 5.260220 6.752259 -0.237875 3.627679 -5.838057 7.111659 -9.375043 -1.341175 -2.925423 -6.707165 -5.390104 8.847537 5.663676 7.330764 -3.545751 -2.587082 0.203546 -11.044484 -14.234306 1.505974 1.433124 -1.456127 4.672393 -1.845885 3.737497 -8.346930 4.308237 7.938800 -3.051062 -4.652543 0.689358 1.981932 1.788817 -3.009735 -2.215142 -1.122369 -2.050887 2.634726 10.696013 -1.608216 -15.687093 -14.606712 -3.440731 7.628064 -5.330719 -1.000398 -4.557678 -3.726865 -4.974701 -0.997237 -7.044358 0.815487 1.250654 -5.370283 -10.570408 2.993493 -1.420475 -0.678049 3.706035 -7.731186 1.676017 6.025877 3.272301 0.599887 1.545198 1.099798 -6.772596 -4.470671 3.311420 -6.139813 6.844084 4.098749 -0.472711 -7.417806 -3.926723 -6.179478 3.118028 -3.212529 5.873671 -0.307816 -3.204027 2.300158 -7.829508 3.873890 -3.946296 1.607312 1.268304 -17.314785 10.849026 6.248700 -4.632015 0.462885 -0.202806 3.857774 -1.279208 3.172814 -7.206211 -6.230385 1.366729 -0.931943 0.459085 -1.965552 1.090757 -1.949099 -3.995798 -8.833748 -3.891597 7.479770 2.098713 -1.193526 -0.006549 4.831991 -5.021781 1.432645 8.910558 6.119263 1.883649 -6.941872 -19.223249 2.613364 -0.133782 -1.485904 -0.084374 -3.966088 -2.455510 4.129417 -4.718476 6.544683 -0.347273 -6.540140 7.390899 -9.970795 -6.947436 -7.246320 -3.460016 3.019641 -0.135734 0.731644 -3.894008 1.409764 -1.367411 1.326144 -3.624967 -5.327977 5.451679 5.342860 9.500329 0.036288 1.091495 8.194345 2.598468 -2.203193 -1.894432 -0.222958 -5.846043 2.356799 -12.941995 -1.126498 3.280136 4.395360 -5.861492 0.753576 -2.078302 2.142976 0.721106 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.963168 -0.673322 -1.120954 3.755872 0.091607 0.139895 0.596010 0.520593 0.009637 -5.613425 -2.896750 3.045170 0.445447 -0.118825 0.131664 1.205060 1.286362 1.361220 -6.764406 0.143897 1.328455 0.096083 -0.158675 -0.894135 0.219877 -1.422639 2.085235 1.359425 0.257043 3.248695 -1.172832 2.363458 2.780868 0.500507 1.451240 2.176721 -2.107875 -0.494644 -0.844830 -1.376253 4.356429 1.516087 0.243735 1.716890 0.026210 3.585865 1.114056 2.086613 2.218530 -1.199447 1.157352 0.886538 -1.756068 -0.395524 -3.568024 0.144543 1.543999 0.899512 -1.004242 1.518782 -0.998962 0.946375 1.282637 -0.481659 4.475204 0.941811 3.188680 2.859329 2.981184 -2.144724 1.050615 -0.066840 0.924066 0.054829 2.118689 -2.492435 -2.359043 -1.731647 -0.823296 -5.570498 0.243737 -0.307402 5.143000 -2.315623 -0.576291 -0.436986 0.984679 3.655484 -1.502547 -0.073700 -3.268709 0.187951 -0.829859 3.908956 0.688946 0.898987 -0.628996 0.939261 -0.258662 0.668193 0.413410 -3.004950 0.279331 -6.247506 -1.514930 -2.218082 0.813222 0.724193 -3.456165 0.780960 -0.619277 2.956707 -5.157956 -0.956975 0.737281 0.694864 1.108055 -0.775391 -1.557823 -0.357879 -0.224768 2.078473 1.505247 -2.168230 0.774817 -1.189545 -0.354004 0.427060 1.557382 0.924521 -3.428253 -1.614015 0.731963 0.178271 0.462740 1.963516 1.988210 -0.078753 1.482927 -2.493094 2.887155 -3.854018 -0.423751 -1.755740 -2.034264 -1.726532 3.336333 3.045419 1.995163 -0.272013 -0.183594 0.091122 -4.341868 -5.028969 0.738184 -0.113030 0.306907 0.792111 -0.506889 0.850995 -2.770144 0.732907 2.049656 -1.608235 -1.574825 -0.741189 1.730814 0.654774 -1.295902 -1.183991 -0.259196 0.557590 0.188349 3.032122 -1.053240 -4.847090 -4.911970 -1.754045 2.982190 -1.885294 -0.237938 -1.727685 -0.632307 -1.636835 0.173538 -2.557815 0.007296 0.060176 -1.988760 -4.003766 0.734489 -0.597713 -0.291365 0.770148 -2.812304 0.655835 2.686695 1.827757 0.287902 0.818554 0.164522 -2.605862 -2.104222 0.610800 -1.764567 2.585178 2.248409 -0.245383 -3.218648 -1.192237 -2.607434 2.159599 -1.418211 2.041418 -0.273602 -1.766630 1.541441 -2.516316 0.873739 -1.581991 0.870470 0.111969 -7.268928 4.161773 2.723468 -2.597053 -0.303327 -1.647099 1.758352 0.021117 2.134603 -2.450999 -1.733010 0.405688 -0.476982 0.002301 -1.077050 1.036558 -0.608806 -0.804382 -3.322841 -1.417595 3.274272 1.207573 -0.436810 0.413793 1.440439 -0.600746 1.093878 3.408604 1.716646 0.356969 -2.754743 -7.670590 0.817965 1.709540 0.022303 0.556957 -1.571264 -1.646168 0.634162 -1.627548 2.980584 0.678242 -1.767417 2.772419 -3.059076 -2.886320 -2.906663 -0.620692 0.871239 -0.547073 0.736201 -1.425499 0.226687 -0.331893 1.172962 -0.525773 -2.359784 0.083844 1.720663 3.437941 0.738026 -0.405711 3.279755 0.909345 -1.109576 -0.804901 -0.322333 -1.683257 0.901930 -3.809214 -0.788230 0.449468 1.463395 -2.367951 1.120250 -0.207469 1.553409 0.373929 -PE-benchmarks/floyd-warshall.cpp__main = 0.802620 -0.621438 -0.558404 2.456633 0.199743 0.249366 0.491152 0.059252 0.015928 -3.670767 -1.530072 1.668524 0.341369 0.175777 -0.098230 0.563260 0.741476 1.129024 -3.470901 -0.232720 0.785065 0.212416 0.119573 -0.609195 -0.053585 -0.777575 1.631462 0.803422 0.370234 2.079811 -0.556103 1.292734 1.839888 0.223465 0.614215 1.512261 -0.336883 0.019136 -0.996875 -0.951838 2.865901 0.617731 0.200350 1.162968 -0.252852 2.227724 1.014566 1.264034 1.133146 -0.849915 0.705366 0.372174 -0.817641 -0.674198 -2.332852 0.313330 1.172332 1.200189 -0.735304 1.003492 -0.306288 0.472295 0.799045 -0.199020 2.398164 0.679898 1.727171 1.964336 1.852937 -1.756185 0.364101 0.134178 0.298035 -0.058737 1.593204 -1.606625 -1.454037 -1.253793 -0.636224 -3.124538 0.053700 0.021407 3.133518 -1.499529 -0.285130 0.087258 0.476360 1.993101 -0.718377 -0.019995 -2.302890 -0.025871 -0.263510 2.680503 0.683482 0.268137 -0.365134 0.556622 0.004566 0.578271 0.649179 -1.815656 0.256548 -3.748664 -1.001410 -1.452453 0.557480 0.638343 -1.817841 -0.039718 -0.352460 1.546613 -3.381746 -0.512114 0.618670 0.774211 1.228781 -1.186178 -0.850533 0.238904 0.034666 0.625226 0.998831 -1.447897 0.407144 -0.242443 -0.172314 0.018614 0.790089 0.515582 -2.233306 -1.145201 0.099322 0.207346 0.334084 0.879013 1.152563 -0.254486 0.934545 -1.598279 1.805417 -2.217828 -0.073160 -0.669272 -1.663280 -1.170623 2.390228 1.102198 1.476647 -0.526971 -0.784453 -0.093380 -2.347450 -3.424069 0.694825 0.342838 0.204047 0.902674 -0.473702 0.634421 -1.826390 0.535136 1.510661 -0.802472 -0.947378 0.073441 0.800911 0.167230 -0.757539 -0.916951 0.097568 0.323303 0.422670 2.002746 -0.781365 -2.876930 -3.043196 -1.070084 1.864737 -1.163082 -0.189528 -0.830773 -0.707750 -1.315633 0.131226 -1.698105 0.363138 0.063743 -1.425425 -2.606704 0.740983 -0.521026 -0.177072 0.998281 -1.777279 0.427529 1.109883 0.803893 0.062679 0.270119 0.433803 -1.835597 -1.381987 0.357229 -1.107647 1.570265 1.009141 0.135266 -1.768918 -0.886446 -1.369072 1.056535 -0.765990 1.202380 -0.101676 -0.868332 0.926368 -1.661925 0.721992 -1.212727 0.568609 0.577156 -3.816533 2.661342 1.530910 -1.292393 -0.232085 -0.440009 0.741218 0.023385 1.263923 -1.680004 -1.411530 0.632015 -0.424330 0.045651 -0.800928 0.412423 -0.282962 -0.402480 -2.282671 -1.063328 1.653183 0.817186 -0.300840 0.381663 1.256915 -0.650458 0.151506 2.429916 1.267730 0.400412 -1.629477 -4.250755 0.854077 0.463752 0.041829 0.059346 -1.009535 -0.730533 0.898149 -0.617022 1.671420 0.682066 -1.256407 1.896670 -2.187291 -1.782313 -1.381093 -0.607393 0.922636 -0.479098 0.266701 -1.013799 0.364516 -0.351214 0.365470 -0.415165 -1.146353 0.443892 1.001801 2.175795 0.201222 0.044062 2.143713 0.362304 -0.785733 -0.179871 -0.123725 -0.796758 0.643805 -2.497240 -0.373234 0.431959 1.034530 -1.379405 0.633097 -0.503449 0.396202 0.482759 -PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 1.175160 0.759612 -0.488328 2.396310 -1.182306 -1.036513 1.412348 1.973254 -0.270915 -3.495690 -0.863267 2.471395 0.714314 -0.209880 -0.203821 0.695020 -0.252264 1.789513 -5.706024 0.314429 1.881632 1.477972 0.088794 -2.136507 -0.075275 -0.756801 0.142891 1.667974 0.377565 3.499768 -0.728145 0.244567 2.293106 -0.166475 0.400234 2.859307 0.990334 0.574111 -0.768411 -0.091875 2.982125 2.152769 -1.904797 0.583985 -0.189786 3.463188 1.187733 -0.413577 -2.608805 -1.760926 -1.278605 1.482189 -2.407654 -1.730363 -1.254732 0.275490 2.700729 3.863639 -1.162529 2.473428 -1.242994 -0.182209 1.546943 1.061159 2.353451 1.216359 1.215369 2.580790 3.277687 -2.678759 0.671431 -0.421077 0.043507 -1.723119 2.170849 -0.800521 -2.204340 -4.853124 0.394396 -6.013531 -1.838183 1.484869 3.830469 -3.156444 1.488145 1.879472 1.362905 2.569303 -2.221911 -0.422809 -2.396986 -0.724828 -0.756774 5.923970 0.664484 0.211039 0.114120 2.221920 1.423433 0.961811 1.050120 -2.431324 -0.780256 -4.254034 -0.691256 -1.958526 -0.562895 1.355897 -2.138363 -1.562948 3.274082 2.579079 -5.278975 0.299692 1.877962 1.443780 0.867524 -1.698193 -0.831203 2.433941 -1.285810 -0.562696 2.019564 -2.689033 0.270776 2.223296 -0.347249 0.861624 0.376998 1.211325 -4.772377 -1.036623 1.358687 -1.675010 0.377231 1.436074 0.585369 -1.313619 1.249780 -4.218323 3.170239 -2.938616 1.360421 0.452023 -2.168127 -1.227577 -0.640072 1.147036 -1.077756 -1.565278 -1.295318 0.261466 -2.749223 -4.749184 1.928553 1.658388 0.731169 0.130419 -0.996593 -0.045705 -2.350852 0.750295 1.515254 -1.224120 -0.663639 0.518954 3.596335 0.678757 -1.259776 -0.926148 0.227239 0.740664 1.953659 2.293519 -1.650074 -1.860291 -4.187474 -1.431685 3.115243 -0.720669 -0.818382 -1.253522 -1.610434 -2.004508 1.196067 -2.085151 2.241071 -0.064720 -0.614941 -3.788764 1.096057 -0.536676 -1.347704 0.871539 -2.015452 -0.263423 0.193443 -2.061582 -0.385312 -0.586303 2.115889 -1.800011 -1.543457 1.090309 -0.953763 1.921394 1.467651 0.956147 -2.079042 -0.257192 -1.718457 2.586974 -0.831846 1.697981 -1.032037 -1.242442 3.240158 -1.627066 -0.935384 -2.372582 1.693147 1.230672 -0.734834 5.167279 2.922393 -1.350646 -0.129739 0.738214 0.279086 1.745225 2.129495 -3.387593 -3.207886 1.207125 -1.510079 -0.005915 -0.394431 0.690557 -1.189638 0.758627 -1.932624 -0.093935 1.857526 1.590928 -0.081611 2.320411 1.175594 -1.890146 -0.936985 2.536523 1.549925 0.231432 -2.312131 -1.901172 2.378572 -2.172696 0.476683 -0.891168 -0.708174 -1.180289 1.568810 1.286860 2.276420 2.513087 -3.122110 2.458508 -4.051401 -3.232903 -2.105934 -0.118747 1.178085 -0.784479 0.676220 -0.559345 1.604192 0.786744 0.569299 0.235069 -1.543419 0.067126 0.823813 2.783219 0.509124 -1.911472 3.780911 -0.600775 -0.967532 -0.272809 -0.663686 -0.542180 0.023904 -0.724052 -0.106842 0.114517 2.607925 -2.154141 1.973697 -0.187287 -0.623641 1.632074 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 8.507816 -5.666897 -8.852213 21.267715 -0.042050 0.905003 2.805708 0.415420 0.862126 -29.913267 -10.791335 16.610926 4.426487 2.392088 -1.094980 6.888387 3.711818 7.304520 -27.166606 -0.513035 5.229505 1.100984 -2.019114 -4.652475 -0.558148 -5.502773 14.794803 5.298658 2.444124 16.076704 -4.525055 12.076046 14.126126 -0.291888 4.726615 9.836667 -3.231169 0.076582 -9.796513 -7.270548 22.245297 7.921609 -0.756983 8.435998 -3.952441 17.479561 6.617695 14.417665 4.067753 -6.926519 6.515615 7.317731 -7.167136 -4.384535 -18.064164 3.303795 10.311863 8.328729 -5.324301 7.125206 -2.032051 3.641915 7.577477 1.481498 22.070826 6.340582 17.163506 17.469275 15.005494 -12.903925 4.586410 0.284953 1.948059 -2.691275 16.621699 -13.939134 -13.291963 -7.290887 -3.139262 -24.955410 -0.560436 -0.216087 24.625061 -13.555337 -1.916337 -0.858506 6.975009 18.317788 -8.361470 2.948151 -18.175919 -1.198141 -3.992820 26.488839 4.347444 3.392715 -4.808342 6.282792 -0.480848 3.173473 4.537153 -14.721251 3.940498 -27.921076 -9.285550 -10.623239 3.423236 6.672692 -17.198384 -0.103629 -3.386369 14.279628 -27.842883 -3.297654 4.299998 5.775202 18.186594 -5.229668 -6.751858 3.616361 -0.018537 4.577971 7.304558 -9.783991 4.939613 -1.931251 0.054576 1.838689 5.991697 5.799820 -23.646729 -7.052474 2.090759 -0.483480 3.609385 8.971925 11.255824 -4.487121 7.669998 -13.422171 13.431897 -19.736961 -2.150774 -5.094661 -14.444223 -8.658587 16.417277 9.746858 12.109219 -4.865189 -7.556668 -0.735058 -22.284624 -31.488102 3.556179 3.367023 -0.997270 7.493226 -3.727103 5.128336 -14.449048 5.895892 14.892095 -7.761078 -9.482031 -0.140619 10.944426 2.581670 -5.993003 -5.297888 -0.863769 -1.466775 4.939643 19.290304 -4.043324 -26.639021 -27.228777 -7.328661 14.901169 -8.274148 -0.907902 -7.945577 -6.379554 -13.536161 0.074096 -14.038961 4.745440 1.077556 -10.515965 -20.138160 6.160341 -2.706168 -3.802561 5.634277 -14.872078 3.912398 10.330054 4.556448 -0.118317 2.196352 4.148947 -15.923560 -12.301320 5.314552 -9.649568 15.775708 9.684298 0.729182 -11.423932 -6.872190 -12.858712 9.004219 -10.078224 10.413469 -0.351246 -6.380426 7.246838 -15.367997 2.264216 -9.748305 5.105006 2.508340 -24.057786 24.191864 12.473539 -10.139062 -0.029132 -2.455687 7.774433 0.001901 10.217312 -14.012324 -11.944615 3.989228 -0.995454 -0.392173 -5.412556 3.562090 -3.859933 -4.409519 -17.097444 -6.677646 12.915087 6.198247 -2.166258 1.883977 8.112132 -9.097925 -1.121365 18.692719 10.741222 2.474306 -12.698930 -33.882662 5.983274 -4.769047 -2.581901 -0.980051 -10.413061 -4.978266 7.668684 -4.808466 13.664765 1.812243 -10.984811 14.393192 -21.352680 -14.902943 -12.343935 -4.208372 4.870760 -1.566054 2.217483 -7.486021 3.222902 -1.287131 3.292106 -5.991185 -10.820164 4.895202 8.177866 17.102629 -0.596647 -2.519779 17.232095 4.463955 -4.138448 -2.933559 -1.203324 -8.280628 4.187776 -21.014650 -2.733930 4.160449 8.204575 -11.942960 4.445147 -3.558035 2.409175 3.019134 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 1.215852 -0.738346 -0.422149 1.461847 0.381365 -0.639230 0.321198 0.480036 0.149897 -2.083111 -0.769725 0.721747 0.107301 -0.528146 0.241033 0.595552 0.711762 0.335982 -2.045440 0.654682 0.288905 -0.095995 -1.012984 -0.152992 -0.005136 -0.836979 0.131843 0.873166 -0.041827 1.316960 -0.763222 0.515833 1.140099 -0.174956 0.984126 1.329469 0.295157 -0.108600 0.167116 0.235052 2.351192 0.638607 -0.236467 0.584565 0.764338 1.700482 -0.082122 2.214949 0.098936 -0.539438 1.100727 -0.359344 -0.613887 -0.065263 -1.874777 0.542344 1.404624 0.624216 -1.334781 0.956581 -0.749999 0.399144 0.724248 0.445769 2.060282 0.898385 0.979575 1.209191 2.096104 -0.830139 0.127552 0.489894 1.142649 0.134225 0.821793 -0.767005 -0.684593 -1.758975 0.149084 -1.362381 0.188379 -0.260270 1.931827 -1.309059 0.052771 0.790028 0.385521 1.503932 -1.216213 -0.103641 -1.653111 0.069789 -0.055433 2.374703 -0.079324 0.549807 -0.172918 0.812995 -0.071382 0.747394 -0.062034 -1.541495 -1.049826 -2.869330 -1.543906 -0.865994 -0.359304 -0.251105 -2.067269 -0.167829 0.886367 0.929960 -2.197276 0.037451 0.416065 0.161809 1.162458 0.503058 -0.970728 -0.128218 -0.237793 0.515459 0.344417 -0.426338 0.146813 -1.375954 0.471296 0.547192 0.563212 0.035378 -1.725016 0.135375 0.449677 -0.111537 -0.248634 0.404888 0.290998 -1.292166 0.762975 -1.124260 1.273882 -2.062712 -0.564210 -1.133124 -1.417991 -0.385702 2.015748 1.004400 1.284745 0.291030 -0.845919 -0.237624 -2.183412 -2.848544 0.178149 -0.490015 0.331476 0.018889 -0.256380 -0.074746 -0.704185 -0.245591 0.670468 -1.136490 -0.588518 -0.643873 1.190387 0.021422 -0.449413 -0.841381 -0.073569 1.149856 0.257798 0.979762 -0.771134 -2.021011 -1.873372 -0.925884 1.173557 -0.478135 0.248416 -0.340211 -0.322981 -1.747620 0.550891 -1.054638 0.264679 -0.779373 -0.625094 -1.678309 0.445778 -0.424854 0.040975 -0.083281 -1.280687 0.514054 0.357943 0.561100 0.148898 0.332205 0.018474 -1.753805 -1.656266 0.170770 -0.016936 1.901899 0.886245 0.174721 -0.195825 -0.561534 -1.514655 1.249831 -1.756331 0.554654 0.791897 -1.171638 1.321461 -1.078486 -0.701559 -1.183980 0.854639 0.082338 -1.245489 2.328143 1.438776 -1.661763 -0.490838 -1.000312 0.812334 0.538240 1.783219 -0.855047 -0.380231 0.625938 0.226347 -0.246158 -0.478658 0.694660 -0.240063 0.777517 -1.733707 -0.853470 1.133017 1.238319 -0.245063 0.045532 -0.065597 -0.243170 -0.168864 1.824816 0.519165 0.409961 -1.184161 -2.884041 0.431822 -0.223595 -0.078452 0.349764 -1.084632 -0.645940 -0.041745 -0.172032 1.661273 0.645597 -0.130723 1.362903 -1.882808 -1.722756 -0.808549 -0.045418 0.190662 -0.699666 0.822123 -0.971902 0.047231 -0.375674 0.928514 -0.254814 -0.805323 -0.794187 0.402117 0.883507 0.231123 -0.860226 1.603771 0.164990 -0.486268 -0.361253 0.074549 -0.032402 0.710951 -1.085796 -0.644836 -0.559455 0.729241 -1.059702 1.275852 -0.078296 0.860616 0.587640 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 2.930229 -0.573290 -1.546456 3.233373 -0.085714 -2.357134 1.036424 1.915679 0.000804 -4.309466 -1.419840 2.078402 0.675302 -1.779323 0.038196 1.388304 0.866323 1.559804 -6.164268 1.804958 1.014608 0.213364 -2.821424 -1.641188 -0.272912 -1.545151 -0.052220 2.201232 -0.302898 3.405902 -1.603781 0.714319 2.636593 -0.370334 2.516169 3.419816 0.288901 -0.007140 0.714997 0.761123 4.968546 3.040250 -1.578532 0.717193 1.697293 4.102977 0.603394 2.660597 -2.464755 -1.268134 0.575707 0.653188 -1.958579 -0.672929 -3.634487 0.605534 3.676797 2.331177 -2.881498 2.846186 -2.132238 0.649933 2.138981 1.723505 4.822696 1.506005 2.098714 2.914867 4.950443 -1.824356 0.886442 0.144007 2.278529 -1.248216 2.476854 -0.952749 -2.727948 -4.442549 0.657596 -5.616867 -0.003275 0.721440 4.488739 -3.478180 1.196025 1.904372 2.017198 3.541133 -3.610587 -1.205150 -3.381177 -0.320056 -1.430389 7.500828 0.153764 1.552034 -0.158114 2.870510 0.644958 1.292315 -0.265632 -3.954902 -1.450962 -6.947240 -2.509569 -2.273755 -1.736346 -0.308483 -4.016178 -1.364462 3.071261 3.350449 -5.773444 0.569627 1.281124 -0.079223 2.391213 -0.936067 -1.962183 1.503590 -1.966835 0.619856 1.367082 -1.832963 -0.014810 -0.841484 0.982109 1.470636 0.996398 0.906085 -5.475549 0.742513 1.857551 -1.309080 -0.651688 1.559835 0.318746 -3.090169 1.499578 -4.065629 3.435564 -4.660661 0.140716 -1.861470 -3.669921 -0.851587 1.615639 2.472818 0.950906 -0.411469 -1.121095 0.226904 -5.202244 -7.433859 1.566290 -0.236226 0.495769 -0.980177 -0.695136 -0.884852 -2.089474 -0.266852 2.269941 -2.618591 -1.206180 -1.038586 5.644081 0.764987 -1.528180 -0.849103 -0.429323 2.436470 2.221351 2.355034 -2.386171 -4.095594 -4.819861 -1.729082 3.151166 -0.821009 -0.382297 -1.119240 -1.322802 -3.776953 1.692648 -2.506744 1.886627 -1.942445 0.009298 -4.051947 0.656726 -0.771516 -0.115928 -0.709016 -2.755824 0.891337 1.183272 -0.501385 -0.473256 0.199871 1.496901 -3.107684 -2.936892 1.414323 0.141659 4.107195 2.436310 0.932853 -0.865170 -0.333563 -3.495912 3.012139 -2.624756 1.630779 0.942222 -2.989059 3.958482 -2.323487 -2.023966 -2.425303 2.190234 -0.028358 -0.852885 6.395083 3.926208 -3.567251 -0.569909 -1.285216 1.643485 1.589157 3.841213 -2.771936 -1.949840 1.487232 -0.677309 -0.546412 -0.523801 1.358274 -0.964628 2.006482 -3.534348 -1.034166 2.831401 2.574456 -0.338469 0.927654 -0.920697 -1.841112 -0.977347 3.972169 1.232438 1.162212 -3.355505 -5.292365 1.458335 -3.269081 0.246782 -0.599206 -0.902014 -1.722195 -0.032094 0.234270 3.639496 2.556722 -2.749748 2.948099 -5.303685 -4.402764 -2.776890 0.487140 0.810928 -1.653271 1.639172 -1.949009 0.801515 -0.653218 2.479017 -0.053782 -2.105976 -1.310902 1.147442 1.967541 0.631139 -3.527942 4.164891 -0.312176 -0.933755 -0.993166 -0.367148 -0.370863 1.456074 -1.922651 -1.546737 -1.398684 2.698547 -2.656796 3.393315 0.073594 2.004476 2.172286 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 1.101961 0.128509 -0.365787 1.540247 0.112897 -1.247295 0.322808 0.880223 -0.656848 -1.588918 -0.576432 0.139505 0.048666 -0.678770 0.383106 0.273624 0.180876 0.366042 -2.350410 0.789808 0.182550 -0.113311 -1.176405 -1.027686 -0.014998 0.154548 -0.489647 1.097545 -0.172523 1.265043 -0.953615 0.302607 0.659290 0.366571 1.238590 0.655607 0.200007 0.025048 0.239331 0.086532 1.899993 0.979167 -0.912867 0.194363 0.797041 1.427173 0.048071 0.718887 -1.974650 -0.047573 0.350159 -0.350135 -0.463277 0.016329 -1.403402 0.289652 1.957709 1.243319 -0.884246 1.018996 -1.161703 0.488012 0.857212 0.460878 2.246465 0.845452 0.810031 1.225823 1.857130 -0.862569 0.370589 -0.189437 1.350895 -0.821727 -0.339875 -0.224594 -0.525108 -2.744820 0.231688 -2.679959 0.159523 0.338144 1.751392 -1.108343 0.659180 0.750824 0.517184 1.086461 -2.003029 0.003258 -1.336138 -0.179330 -0.854671 2.851597 -0.140269 0.445197 0.158784 1.128638 0.522188 0.721222 -0.552495 -1.096994 -0.599762 -2.887103 -1.175304 0.119377 -0.999411 -0.550076 -1.393912 -0.617202 1.901931 1.101805 -1.953244 -0.417918 0.144451 0.065359 0.150444 -0.153662 -1.205313 0.698339 -1.150726 0.445716 0.835756 -0.520591 0.309022 -0.876661 -0.115918 0.635965 0.954342 0.774298 -2.239655 0.375013 0.699331 -1.083187 -0.483386 0.179570 -0.476832 -0.720622 0.476408 -1.504005 1.466991 -1.909611 0.254491 -0.983367 -1.654949 0.312384 0.404980 1.205431 -0.085684 0.568249 -0.332735 0.276277 -1.821981 -2.818278 0.859323 0.418549 0.266164 -0.809874 -0.199779 -0.246843 -0.765045 -0.652525 1.507380 -1.381996 -1.044112 -1.099058 2.594124 0.358498 -0.763937 -0.461321 0.409387 1.543521 0.344072 0.839764 -1.086949 -0.846956 -1.910360 -0.704911 1.153736 -0.247694 -0.425535 -0.082620 0.091221 -2.032483 1.019226 -1.010334 1.113467 -0.527352 -0.188825 -1.566486 0.156860 -0.194445 -0.102157 -0.352226 -0.775697 0.460042 0.468833 -0.012678 -0.465014 0.512923 1.036362 -0.997279 -1.736801 0.241105 0.704908 1.392771 0.902438 0.588044 -0.507044 -0.270937 -1.317012 1.704506 -0.600840 0.597322 0.170952 -0.790701 1.544058 -0.986699 -1.125888 -0.712961 0.885403 0.260327 -0.324635 2.427304 1.406067 -1.553733 -0.523558 -1.498749 0.955898 0.511367 2.234331 -1.183107 -0.447046 0.590564 0.308747 -0.476466 -0.518185 0.664084 -0.125601 0.474477 -1.393901 -0.724167 0.835946 0.888827 0.179842 0.525296 -0.466827 -0.490877 -0.779723 1.934509 0.421707 0.160631 -1.007358 -1.570455 0.308941 -0.959915 0.347069 -0.251963 -0.484282 -1.055158 -0.528861 0.304327 1.477831 1.464724 -1.290198 1.197824 -1.775764 -1.388312 -1.101812 0.835878 0.106165 -1.294838 0.627915 -0.901338 0.094580 0.199688 0.943590 0.264435 -0.666165 -1.466368 -0.264843 0.720250 -0.045488 -1.512882 1.568793 0.174504 -0.609316 -0.404024 0.136002 -0.099577 0.694559 -0.805887 -0.756698 -0.694805 0.964132 -1.060603 1.320807 0.483355 0.501028 0.919017 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = 9.979779 -5.286992 -5.487651 18.434484 2.218430 -0.015795 1.775932 2.359193 0.988627 -22.662956 -10.060759 11.473429 2.579586 1.771058 2.077935 5.701859 4.779379 4.772285 -22.378520 1.301893 2.413822 -0.890006 -2.924203 -4.194882 0.240671 -3.610952 10.334718 5.964950 2.264032 13.408160 -5.959731 9.367560 11.685745 0.838396 6.333414 7.129687 -1.520851 -1.479415 -8.866115 -7.490692 20.783295 4.551940 1.342622 8.754959 -1.963959 15.228531 4.257777 16.391749 8.287786 -5.110917 9.697922 -2.282237 -5.901220 -1.598506 -17.873772 4.601468 7.671926 4.567301 -6.071095 6.344091 -3.386003 4.909103 6.837613 -1.078546 19.541615 6.289518 13.568454 14.023057 14.372807 -12.025989 3.347747 2.043482 5.740331 1.253602 9.188339 -13.495205 -7.855279 -9.423724 -0.891816 -16.121495 1.660120 -3.156690 20.017027 -11.729109 -1.508843 1.352911 2.586823 15.446612 -9.699855 4.020415 -16.048111 -0.354730 -0.832771 17.234547 1.780548 2.404225 -1.340278 3.738708 -1.865512 4.971129 3.396377 -11.959749 0.113978 -22.739167 -10.474598 -5.664586 2.292565 2.617766 -14.762666 1.877171 -1.807394 7.894560 -21.025512 -5.357731 3.021722 4.243953 11.322656 1.958342 -4.954846 -1.831397 1.339823 7.716234 6.695588 -9.089070 5.899397 -6.753807 -0.390638 3.218018 8.212183 4.364652 -14.564550 -5.985230 2.161506 0.856426 1.726614 5.186209 6.789713 -4.700196 7.620712 -8.215803 12.178329 -17.000004 -5.942545 -7.845685 -10.593001 -6.317610 20.757934 7.988434 13.562934 2.036620 -6.171845 -0.796402 -17.979088 -22.860404 2.341064 2.148532 -0.105197 5.938037 -2.303685 5.184249 -10.728354 1.234742 9.925279 -9.263318 -11.039214 -2.667384 3.018700 1.404364 -5.111244 -8.120139 2.509161 3.953697 0.571682 14.823356 -3.107866 -23.470847 -19.842905 -7.543872 12.938533 -7.162704 0.433135 -4.784013 -3.315498 -11.660228 0.185070 -13.067435 2.642712 0.896477 -10.650934 -17.838354 5.662574 -2.762061 0.776108 4.991134 -12.853141 5.313051 6.220522 9.438666 -0.877835 5.232177 1.981381 -15.312323 -13.595119 0.972622 -5.127284 15.325086 5.429838 0.809034 -8.598581 -7.650684 -9.908236 9.411848 -12.098117 8.443005 0.748241 -5.906881 5.822001 -13.230449 0.569857 -10.263089 5.177719 3.258808 -24.044310 17.550862 11.241949 -11.556672 -2.193961 -8.418880 8.439486 0.615669 14.154495 -10.386278 -7.495841 3.834960 3.514948 -1.519910 -6.511370 4.269703 -1.791587 -4.989608 -15.302309 -8.862490 10.881806 6.717810 -0.984744 0.286825 7.705183 -2.548774 0.344152 17.548898 7.941909 1.514683 -11.315427 -31.856033 4.376998 7.899637 -1.086642 2.869877 -11.530233 -5.409533 3.741831 -4.808122 12.979693 4.537553 -2.296500 13.365399 -15.757801 -13.017572 -10.428345 -1.446219 2.678600 -3.339072 3.053502 -8.594880 1.263865 -2.057050 3.315903 -5.922613 -6.285543 -1.473678 4.898764 13.568810 0.025869 0.070740 15.524687 6.331668 -4.807096 -2.562729 -0.292912 -7.236713 4.507276 -15.986564 -3.231560 2.577146 5.522017 -10.745114 4.060719 -0.759217 2.775194 1.408123 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.002383 -0.033490 -0.460290 1.256332 -0.250236 -0.522346 0.350416 0.026064 -0.102733 -1.328681 0.116978 0.285759 0.042568 0.006614 -0.410159 0.555240 -0.065344 0.410352 -1.063578 0.226569 0.633636 0.310802 -0.160066 -0.262570 0.204700 -0.270467 0.201917 0.568398 -0.005965 0.963248 -0.360175 0.394571 0.926549 -0.049919 0.020800 0.830200 0.426004 0.642908 0.156687 0.225484 0.587356 0.370509 -0.791141 -0.140140 -0.084934 1.167728 0.664148 0.131389 -1.257947 -0.597492 -0.575873 0.412444 -0.347478 -0.562912 -0.468883 0.317863 0.725407 1.449828 -0.533193 0.591689 -0.513392 0.175583 0.664303 0.535551 1.096443 0.651475 0.558246 1.038496 1.378116 -0.617032 0.346751 -0.038409 0.275693 -0.542502 0.655729 -0.000800 -0.841103 -0.934720 -0.194648 -1.483619 -0.392685 0.677736 0.889999 -1.000307 0.040097 -0.031815 0.447105 1.173794 -0.994947 0.108668 -1.003285 -0.080450 -0.183295 2.218781 0.394420 0.150681 -0.254271 1.081140 0.361070 0.178646 -0.040222 -0.648017 -0.126060 -1.199017 -0.394397 -0.702674 -0.219916 0.418301 -1.494071 -0.507827 0.659312 1.030101 -2.042355 0.120329 0.396837 0.332884 0.940714 -0.529634 -0.155055 0.918469 -0.506217 -0.462372 0.239969 -0.495881 0.197795 0.192314 -0.067568 0.141791 0.084717 0.591743 -1.996925 0.229021 0.258776 -0.768252 0.295097 0.932844 0.321638 -0.386134 0.377883 -1.404704 0.877629 -1.343816 0.035577 0.298395 -1.341652 -0.386824 -0.013200 0.714420 -0.101906 -0.928858 -0.494682 -0.418318 -1.580653 -2.019765 0.382494 0.390080 0.071415 0.306986 -0.423600 -0.121136 -0.869452 0.173914 1.113521 -0.529894 -0.343092 -0.176855 1.549019 0.401033 -0.070569 -0.276911 -0.447032 0.402011 0.391722 0.765747 -0.524999 -0.737900 -1.850908 -0.357700 0.721228 -0.231894 -0.268602 -0.675516 -0.511989 -1.354631 0.665388 -0.601190 0.355874 -0.135715 0.138965 -1.228618 0.618175 -0.214659 -0.335979 0.018479 -0.635918 0.052468 0.020878 -0.833407 0.128253 -0.183495 0.426834 -0.288391 -0.465478 0.892654 -0.187899 0.451893 0.405211 0.149737 -0.267336 -0.355234 -0.904093 1.092272 -0.056441 0.600784 0.323467 0.042455 1.167943 -0.644554 -0.169203 -0.501333 0.564087 0.125972 0.001463 1.329906 0.971001 -0.690250 0.032307 0.220547 0.437531 0.527716 0.507756 -1.101269 -0.965208 0.454006 -0.233475 -0.087259 0.101803 0.094387 -0.481901 0.546861 -0.679699 0.103493 0.491276 0.455407 -0.293720 0.380157 -0.140275 -1.184835 -0.317852 0.707174 0.593686 0.306250 -0.776859 -0.789534 0.215086 -1.780099 0.149244 -0.425960 -0.300796 -0.032267 0.613826 -0.088730 0.953316 0.407222 -1.517882 0.836319 -1.863924 -1.048573 -0.323949 -0.059810 0.205717 -0.223137 0.533005 -0.219009 0.282138 0.302121 0.523190 -0.274717 -0.924617 0.284762 0.340176 0.969174 -0.576602 -0.881069 1.117364 -0.468889 -0.084151 -0.391338 0.167317 -0.221448 -0.014297 -0.848127 -0.271869 -0.029979 0.924691 -0.986726 1.076262 -0.212546 0.005128 0.653661 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = 2.190618 -0.810699 -1.443732 3.408684 0.822458 -0.977854 -0.098143 0.707090 0.335063 -3.161017 -1.644938 1.988992 0.544115 0.123803 0.825367 1.160711 0.795029 0.355074 -3.089488 1.017475 -0.506044 -0.501446 -2.243764 -0.762987 -0.151294 -0.521277 0.710720 1.552257 -0.007194 1.576670 -1.497107 1.402887 1.586160 -0.265704 1.721987 0.608080 0.775621 -0.523517 -1.572006 -0.786199 4.069825 0.951735 0.040308 1.592901 0.453339 2.683886 -0.220718 4.171739 0.186697 -0.709442 1.987032 -0.726035 -1.027747 0.009394 -3.589650 1.957346 1.762959 0.126524 -1.940344 1.434548 -0.773576 0.848181 1.497183 -0.000583 4.262762 1.365793 2.586987 2.354124 3.099498 -1.540224 0.099395 0.731179 2.474187 0.367702 1.279215 -1.961763 -0.846295 -2.535375 0.837395 -2.165668 1.030587 -1.002287 3.604278 -2.443879 -0.229734 1.161167 0.610282 2.707571 -2.820664 0.966118 -2.787690 -0.080707 -0.394472 3.951855 0.038809 0.322061 -0.095879 1.251685 -0.165789 1.453146 -0.250060 -1.734779 -0.958874 -4.628025 -3.088846 -0.041484 -0.413644 -0.650076 -2.951463 -0.111732 1.044558 1.699062 -3.189431 -0.980521 0.711358 0.011734 2.251160 1.198126 -1.214289 -0.502504 0.047122 1.338549 0.880467 -0.777970 1.247808 -1.792522 0.400536 0.854749 1.912216 0.680913 -3.065219 -0.079319 0.347674 -0.011920 -0.084950 -0.063143 0.405772 -2.122132 1.687582 -1.065098 2.002917 -3.526488 -1.294668 -2.247856 -2.137559 -0.177586 3.798622 1.549588 2.985700 1.438344 -1.178772 -0.424305 -3.978270 -5.004224 0.390553 0.541479 -0.009076 0.136421 -0.373604 0.320367 -0.917608 -0.567957 2.473206 -2.792420 -2.442479 -1.135694 1.933727 0.134685 -1.084132 -2.110731 0.883861 1.746291 -0.228832 1.893145 -0.527372 -4.156228 -2.833630 -1.331545 1.765731 -0.569741 0.841124 -0.224007 -0.597354 -2.987497 0.535157 -2.532624 0.967988 -0.457876 -1.835544 -2.861470 0.590671 -0.367353 -0.095706 -0.087476 -2.514005 1.661293 0.728050 1.596693 -0.475857 1.086402 0.656358 -3.267987 -3.224292 -0.288229 -0.152378 3.516560 1.668241 0.693918 -0.397161 -1.097545 -2.420275 2.031710 -3.691098 0.895339 0.953377 -1.611990 1.193437 -2.921498 -1.501563 -2.111975 1.278058 0.151552 -2.527128 3.756817 2.491062 -2.853183 -0.991654 -2.455650 1.802830 0.426702 4.347182 -1.859946 -0.346688 0.708108 1.469492 -0.907101 -1.174052 1.292057 0.024846 -0.377706 -2.903672 -1.808345 1.351437 1.861940 0.073811 0.011983 0.355617 -0.140581 -0.595412 3.210370 1.040626 0.123564 -1.932463 -5.292728 0.725716 0.225477 -0.858246 0.752471 -2.426786 -1.088834 -0.338472 -0.599703 2.583112 0.566551 0.509203 2.281585 -3.301385 -2.507754 -1.357219 0.220266 -0.348776 -1.134362 1.570709 -2.002688 -0.218379 -0.672315 0.873818 -1.650674 -0.871918 -1.936129 0.273571 1.364340 0.040792 -0.687623 2.856335 1.118727 -0.781949 -0.627345 -0.230013 -0.761138 1.006321 -2.566296 -1.093731 -0.707627 0.465777 -1.695224 1.143456 0.311845 0.698374 0.786487 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.414455 -0.237104 -0.334424 0.749581 -0.012595 -0.409664 0.153431 0.168932 -0.047404 -0.903394 -0.155422 0.308261 0.157243 -0.227768 0.046932 0.340193 0.110404 0.265434 -0.911256 0.329197 0.169085 0.002741 -0.530684 -0.255498 -0.071935 -0.391353 0.221550 0.407972 -0.042977 0.675343 -0.354149 0.174941 0.524484 -0.109451 0.494423 0.609895 0.324818 0.079051 -0.143440 0.300549 1.004878 0.520747 -0.383167 0.056573 0.290818 0.800688 0.270557 0.404028 -0.559012 -0.285217 0.025223 0.268139 -0.261247 -0.202922 -0.731765 0.168781 0.690054 0.517924 -0.590540 0.514582 -0.476392 0.115864 0.382833 0.504057 0.964148 0.138586 0.549141 0.598106 0.918953 -0.420509 0.107880 0.103243 0.425752 -0.268799 0.718311 0.001839 -0.661056 -0.965773 0.074183 -0.824626 -0.067276 0.269674 0.670030 -0.696146 0.103115 0.475448 0.340943 0.694077 -0.721580 -0.162836 -0.690855 -0.081505 -0.222962 1.536914 0.197301 0.231224 -0.082056 0.656356 0.232376 0.294077 0.123348 -0.799554 -0.171315 -1.322327 -0.605503 -0.468799 -0.276095 -0.028520 -0.792634 -0.302584 0.733582 0.790229 -1.094284 0.274281 0.288409 0.094609 0.812408 -0.613440 -0.268953 0.451709 -0.289523 0.024352 0.342820 -0.352305 0.049181 -0.044019 0.428139 0.251814 0.215486 0.141841 -0.957764 0.123730 0.326952 -0.184711 -0.133937 0.251072 0.107410 -0.755540 0.352156 -0.749756 0.696242 -0.869091 0.152938 -0.299857 -0.777127 -0.135059 0.411059 0.363788 0.253549 -0.184997 -0.477631 0.056583 -1.034593 -1.712964 0.297773 0.133235 -0.034969 -0.057363 -0.176216 -0.070951 -0.421442 0.024803 0.649054 -0.528464 -0.217198 -0.048787 0.810866 0.131196 -0.328785 -0.213179 -0.104913 0.428653 0.608318 0.585426 -0.424713 -0.877103 -0.973460 -0.358990 0.600298 -0.168590 -0.038387 -0.189437 -0.377693 -0.948280 0.434594 -0.513177 0.477931 -0.356851 -0.056378 -0.788029 0.078307 -0.160082 -0.071602 -0.118531 -0.593955 0.141875 -0.026323 -0.449783 -0.031862 -0.034538 0.356177 -0.606372 -0.616805 0.348896 -0.067316 0.827401 0.291781 0.170579 -0.106652 -0.092862 -0.711001 0.551599 -0.554901 0.272995 0.212148 -0.622652 0.726731 -0.457371 -0.533325 -0.400563 0.446900 0.031617 0.278032 1.363598 0.891443 -0.633167 -0.107409 0.011515 0.314981 0.317026 0.791205 -0.646892 -0.346166 0.251139 -0.062139 -0.080428 0.003713 0.316282 -0.261147 0.323002 -0.667810 -0.241479 0.409802 0.572515 -0.032843 0.160667 -0.132279 -0.473950 -0.426771 0.750223 0.295951 0.327898 -0.624434 -0.770832 0.330653 -1.078006 -0.073428 -0.102087 -0.209076 -0.246700 0.049882 0.067118 0.700033 0.469995 -0.624999 0.613494 -1.133678 -0.862052 -0.506571 -0.095964 0.072007 -0.373159 0.446232 -0.404135 0.178003 -0.151534 0.405334 -0.178359 -0.276445 0.019499 0.159657 0.271137 0.118368 -0.612991 0.817811 -0.026726 -0.226364 -0.212926 -0.011381 -0.122594 0.353875 -0.402557 -0.352854 -0.276822 0.528438 -0.470820 0.553178 -0.144315 0.283129 0.445860 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = 1.007348 -0.756580 -0.219749 1.651939 0.235856 0.142164 0.247605 0.308096 0.132804 -2.613710 -1.451587 0.967173 0.063529 0.000883 0.403533 0.503181 0.791837 0.323765 -3.111625 0.142705 0.545607 -0.126757 -0.074677 -0.048163 0.154811 -0.874336 0.663847 0.751424 0.115648 1.452187 -0.685626 0.990981 1.307985 0.197223 0.775734 1.039031 -0.705187 -0.344931 -0.278638 -0.381719 2.287289 0.545526 0.036188 0.753654 0.219611 1.696154 0.217748 1.669806 1.314474 -0.597832 1.176411 -0.566130 -0.771725 0.024783 -1.864398 0.198824 0.921651 0.399632 -0.707213 0.708582 -0.682388 0.502016 0.477734 -0.348974 2.209043 0.503251 1.603137 1.196024 1.396486 -1.025488 0.283219 0.266143 0.634440 0.328037 0.618707 -1.166066 -0.674198 -1.530202 -0.148167 -2.067101 0.034978 -0.437815 2.096129 -1.049427 -0.304092 0.180528 -0.010935 1.677727 -0.731025 0.118469 -1.697088 0.155815 0.157009 1.537320 0.164050 0.270421 -0.080984 0.390962 -0.152661 0.557636 0.263468 -1.356747 -0.624762 -3.006627 -1.039167 -0.888312 0.464145 0.151789 -1.836232 0.483642 0.118764 0.916126 -2.155531 -0.357829 0.369342 0.447409 0.590481 0.113426 -0.787783 -0.548627 0.122138 1.139165 0.770375 -0.917999 0.461271 -1.345929 0.220687 0.342883 0.800231 0.149118 -1.151766 -0.695921 0.388700 0.206185 0.042936 0.662787 0.786368 -0.182559 0.827440 -0.930286 1.343580 -1.910481 -0.322503 -1.087111 -0.734283 -0.678216 2.521965 1.483485 1.217270 0.398891 -0.508462 0.003599 -1.978521 -2.393218 0.067473 -0.174487 0.412770 0.335841 -0.228818 0.516716 -0.978918 0.151998 0.407010 -0.855803 -0.702258 -0.459249 0.050732 0.187976 -0.557795 -0.821579 0.063358 0.640376 -0.404212 1.321599 -0.455978 -2.315573 -2.008355 -1.010401 1.314198 -0.847367 0.142488 -0.589502 -0.098175 -1.165237 0.224088 -1.154424 -0.146041 -0.091668 -1.258549 -1.844004 0.350508 -0.363858 0.148585 0.401181 -1.336167 0.312583 0.950863 1.209218 0.367790 0.530839 -0.127477 -1.451094 -1.308495 -0.110455 -0.745316 1.632385 0.774857 -0.273177 -1.132033 -0.688887 -1.271665 1.214298 -1.039891 0.771889 0.006056 -1.085355 0.689964 -1.011288 0.124894 -0.921195 0.515914 0.191282 -3.201729 1.857127 1.343380 -1.364030 -0.378302 -1.157793 0.825902 0.157779 1.342959 -0.878937 -0.433321 0.160001 0.096376 -0.026487 -0.590184 0.687736 -0.187945 -0.289435 -1.702651 -0.949380 1.412610 0.775799 -0.142693 0.165712 0.758078 0.301875 0.523587 1.626047 0.577213 0.026353 -1.113942 -3.810375 0.433030 1.594115 -0.054463 0.615434 -1.212031 -0.783772 0.043387 -0.590773 1.473782 0.650079 -0.133657 1.372854 -1.202680 -1.333061 -1.250035 -0.309343 0.165323 -0.382705 0.522298 -0.706078 0.028451 -0.191987 0.513827 -0.187231 -0.914898 -0.569242 0.600682 1.362690 0.441928 -0.044437 1.473455 0.496994 -0.668279 -0.419134 -0.027972 -0.642727 0.680905 -1.433862 -0.481700 0.019326 0.477196 -1.017571 0.442630 -0.046307 0.727206 0.085612 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 17.272431 -3.476434 -4.677917 21.589248 3.944297 -6.819996 1.390011 10.447363 0.104007 -23.620670 -11.572964 12.550294 0.615775 -0.757931 7.123101 4.092955 5.524973 7.351823 -31.391379 6.108406 -1.168872 -0.008398 -8.747282 -12.441639 2.016537 3.699438 7.699970 9.450090 2.961897 15.082967 -12.667061 7.299731 10.449613 3.549929 11.823652 3.890197 1.872353 -3.511366 -9.414126 -12.256205 27.989674 8.600291 -0.669471 15.080290 2.798283 16.437703 3.312645 18.574435 3.248597 -3.567209 9.529652 -8.719273 -7.557125 0.734938 -23.172436 8.593625 15.355160 7.332878 -9.913107 10.546636 -1.547428 8.085279 10.367774 -5.636550 26.301324 8.769037 15.255163 16.373665 21.300206 -13.699679 5.860001 -0.535847 16.463492 -0.127821 4.856544 -16.920656 -4.334826 -24.748330 2.335124 -26.888290 5.842598 -5.782789 23.059429 -15.175050 6.669982 6.797877 2.308073 17.484641 -18.813711 5.012040 -17.562648 -0.878026 -4.424748 25.784489 -1.236875 3.388769 2.135490 6.947507 -0.538753 8.598625 1.106186 -11.581859 1.119152 -33.348389 -14.255923 2.620643 -4.224385 -3.426903 -14.968807 1.953736 5.533918 10.694206 -23.634353 -11.889865 1.688276 1.497033 2.909657 0.331483 -6.428315 -1.976042 -5.689571 12.151922 6.315118 -13.992600 8.525140 -9.326334 -5.909500 8.078432 15.898047 8.749172 -15.746287 -5.662297 4.014862 0.098630 -3.368481 3.010968 2.702565 -7.764610 9.485975 -12.119994 14.798916 -20.289214 -7.159153 -10.483016 -10.891514 -3.355934 22.681766 5.077671 12.205451 10.682015 -5.339295 -0.627338 -19.830894 -30.467164 9.954863 5.826620 0.876349 3.279034 -1.050564 2.744698 -11.245988 -8.094059 14.695090 -16.542351 -18.108419 -10.362232 11.344537 0.411506 -7.121550 -12.321729 10.610902 14.560347 -0.706610 12.704693 -5.943475 -21.806031 -19.767862 -8.445022 15.940015 -5.887916 -0.701880 -0.585951 0.477020 -16.063158 3.627078 -17.583193 7.971416 -0.673567 -13.081784 -20.911179 4.113688 -2.677949 3.323623 2.822385 -14.977168 10.056233 4.853119 14.695605 -7.720085 9.712723 10.070571 -21.280436 -24.266536 -3.292981 1.526591 18.845449 5.716542 4.572886 -10.555112 -7.710920 -9.148070 16.339471 -19.459493 9.846784 -0.423666 -6.320746 9.928261 -15.696160 -7.164026 -13.627745 8.195242 5.039602 -21.205263 23.974547 12.972838 -18.426278 -5.032285 -20.284502 13.901744 2.586766 27.843845 -14.187566 -7.311652 6.764114 7.350933 -4.500336 -13.868560 8.130135 1.603531 -4.804409 -18.479316 -12.589134 11.464957 9.099496 1.525752 3.847970 7.834114 0.069910 -5.131885 27.342143 6.529202 1.786897 -14.682557 -34.021654 3.867444 14.457286 3.109499 3.175310 -17.037056 -10.715191 -0.352485 -0.189197 15.836694 13.006084 1.415586 15.387599 -19.924762 -15.978374 -11.147151 5.608589 2.400646 -8.876473 5.079541 -12.426750 0.018102 -1.937617 7.338988 -6.007426 -4.413010 -13.627104 -0.528970 12.670222 -0.690706 -5.603927 20.786724 9.567323 -9.175902 -0.338285 -3.142998 -6.416836 5.037305 -14.328156 -5.567631 -0.898979 5.595119 -15.505688 10.519949 3.294301 4.755965 1.606891 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 2.559109 -0.320495 -1.417300 3.068808 0.672282 -1.243270 0.214628 1.170033 0.223634 -2.811105 -1.528078 2.830699 0.351992 -0.598262 0.604317 1.122703 1.015301 0.824866 -3.921766 1.220239 -0.566305 -0.223660 -2.363429 -1.325009 -0.026569 -0.353266 0.705819 1.761374 -0.107221 1.777194 -1.450230 1.025000 1.464002 0.046670 2.086219 0.867168 0.460316 -0.578870 -1.145949 -0.754364 4.161838 1.461502 0.079382 1.920442 1.051708 2.822969 0.178112 3.376452 0.594523 -0.377513 1.401945 -0.146049 -1.384815 -0.055230 -3.586068 1.311413 1.520384 -0.088455 -1.986146 1.820417 -0.565329 0.767538 1.477858 -0.097758 4.144605 1.075321 2.268623 2.128884 3.341111 -1.242690 0.329084 0.255573 2.935721 0.292905 1.339721 -1.967153 -1.369991 -2.673248 0.635331 -3.338242 1.048973 -0.936943 3.797236 -2.457350 0.238953 1.102722 0.680428 2.501973 -2.788559 0.006602 -2.656399 -0.140073 -0.697434 4.180229 0.029027 0.761264 -0.045981 1.261570 -0.010875 1.183879 -0.255053 -2.147581 -0.444805 -5.078510 -2.516444 -0.239605 -0.889127 -1.057732 -2.416323 -0.128569 0.921564 2.425397 -3.515258 -1.098591 0.801333 -0.612851 1.329972 0.563690 -0.993043 -0.120459 -0.369245 1.662608 0.854944 -1.270297 0.725871 -1.148168 0.006936 0.939880 1.849923 0.807765 -2.949558 -0.156715 0.776867 0.149845 -0.292442 0.013881 -0.075303 -2.109719 1.536235 -1.655393 2.173042 -3.264586 -1.188238 -1.995066 -1.828895 -0.391071 3.140269 1.540408 2.701631 1.328576 -0.410843 -0.203609 -3.749968 -5.078014 1.181550 -0.067839 -0.041028 -0.261220 -0.181215 -0.227128 -1.256975 -0.877174 2.417416 -2.564174 -2.173666 -1.337089 2.246980 0.197431 -1.216423 -1.797135 0.702513 1.967408 0.719600 1.440064 -1.002783 -4.730521 -2.475920 -1.189939 1.964703 -0.586782 0.541065 -0.222814 -0.545423 -2.349217 0.468661 -2.563974 1.161375 -0.718320 -1.329432 -2.736931 0.455145 -0.424920 0.288027 -0.380635 -2.184267 1.532159 0.946399 1.585582 -0.809439 1.104598 0.864767 -2.994639 -2.885032 -0.182736 0.047139 3.411821 1.610947 0.961622 -1.192174 -0.524548 -2.482316 2.088388 -3.590322 0.983955 0.796440 -1.911509 1.684541 -2.434963 -1.331206 -1.733054 1.396606 -0.114615 -3.152263 3.705835 2.857940 -3.085122 -0.997035 -2.322949 1.667221 0.613240 4.266401 -2.030957 -0.666706 0.744900 0.959193 -0.736717 -1.290021 1.336030 0.129674 0.047252 -3.000336 -1.582009 1.945169 1.836289 -0.036665 0.056896 0.065948 -0.213209 -0.590063 3.299901 0.716829 0.614919 -2.236045 -5.377474 0.416365 0.783556 -0.339999 1.006184 -1.899049 -1.262558 -0.470785 -1.004216 2.665977 0.396132 -0.230993 2.144661 -3.104450 -2.672131 -1.726514 0.269873 -0.014831 -1.237383 1.843380 -1.795128 -0.224618 -0.801094 1.317980 -1.176982 -0.826788 -1.545063 0.418137 1.249406 0.482310 -1.204815 2.954192 0.673885 -0.797222 -0.472955 -0.552948 -0.635923 1.206101 -2.709275 -1.073682 -1.010095 0.784423 -1.817837 1.597817 0.357232 1.480928 0.812344 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 4.175597 -0.674849 -1.908395 4.926468 0.751240 -3.367850 0.489167 2.772226 0.275303 -5.093071 -2.298040 2.351245 0.673069 -1.422929 1.415802 1.551164 0.984913 2.175045 -6.757178 2.706838 -0.050922 0.375513 -3.942338 -2.922506 -0.032488 -0.031505 -0.454627 2.569107 0.040443 3.456009 -3.042342 1.140709 2.840135 -0.255645 3.133680 2.142011 1.557715 -0.572386 -0.481567 -0.697273 7.039897 2.691674 -0.610994 2.552914 1.755102 4.572556 0.003568 5.289801 -1.906153 -1.296602 2.151099 -2.007930 -2.007501 -0.047838 -5.574430 2.875691 4.493011 2.250589 -3.758193 3.415591 -1.316417 1.460177 3.105513 -0.155346 6.926717 2.749486 2.925502 3.992549 6.582573 -2.289940 1.068330 0.130264 4.575921 -0.900258 2.051795 -3.068517 -1.350590 -6.937404 1.216739 -6.212641 1.785498 -0.587969 6.180521 -4.767768 2.108169 3.144683 1.706061 4.566901 -5.316804 0.053733 -4.358700 -0.268845 -1.526107 8.182852 -0.407162 1.040725 0.077209 2.956447 0.204767 2.171834 -0.678354 -3.337958 -1.898781 -9.015170 -4.637858 -0.073814 -2.351423 -1.457934 -5.030511 -1.143026 3.466912 3.111842 -6.690604 -1.326070 1.279413 -0.282637 1.590392 0.304173 -2.371737 0.310310 -2.125605 1.984050 1.049673 -2.538113 1.191833 -2.587690 -0.244041 2.185410 3.001972 1.343785 -5.316634 0.265943 1.009225 -0.730990 -1.078948 0.597067 -0.023045 -3.995482 2.472812 -3.706142 3.768557 -5.953548 -1.414621 -3.105703 -4.110833 -0.333478 5.007682 1.578227 2.793888 1.827981 -1.947933 -0.513786 -6.418334 -8.738288 2.342554 0.424432 0.746454 -0.486391 -0.514152 -0.910238 -1.684707 -1.941957 3.637617 -4.749604 -3.561477 -2.406997 5.699396 0.143294 -1.964656 -3.335492 1.545717 4.735386 0.704661 2.148411 -2.127973 -4.578484 -4.861016 -2.155718 3.646779 -0.611883 0.638470 -0.451724 -0.571820 -5.108259 1.859325 -4.242490 2.380715 -1.570334 -1.750123 -5.160658 0.667787 -0.756393 0.303281 -0.785686 -3.797426 2.687335 0.828266 2.108610 -1.753624 1.454081 2.433182 -5.619459 -5.902362 -0.259070 0.997774 5.319516 2.682345 2.044244 -1.235845 -1.083054 -3.561112 4.116059 -5.518276 1.695478 1.258974 -2.786580 3.979650 -4.171104 -3.025121 -4.055538 2.535514 0.290856 -2.864680 7.141961 4.031402 -5.164177 -1.285618 -4.465545 3.161992 1.637287 7.500461 -3.234927 -1.295590 2.075118 1.099990 -1.511878 -2.834433 2.180605 -0.330197 1.195208 -4.673759 -2.434069 2.691814 3.379923 0.055301 1.026050 -0.155364 -0.658196 -1.885391 6.119804 1.429157 0.598802 -3.922678 -7.489645 1.379695 0.109649 0.525246 0.325651 -3.197622 -2.175466 -0.507526 0.653073 4.556810 3.700519 0.012362 3.751449 -6.363597 -5.060686 -2.205013 1.864481 0.441859 -2.634035 2.130497 -3.361673 0.123214 -0.770405 2.724458 -1.171162 -1.728308 -4.421344 0.209345 2.486366 0.178606 -3.295429 5.502409 1.042789 -1.700858 -0.422119 -0.902615 -0.365786 1.335683 -2.424809 -1.976624 -1.675245 1.867220 -3.663607 4.273035 0.281204 1.634861 2.024052 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = 0.207557 -0.180024 0.089617 0.376494 0.225856 -0.115189 0.100724 0.085374 -0.118235 -0.625854 -0.258772 -0.131233 -0.032359 -0.118498 0.177597 0.082350 0.266049 0.102983 -0.565488 0.121359 0.109645 -0.081470 -0.171443 -0.032838 -0.016961 -0.328794 -0.028109 0.380429 -0.020994 0.380442 -0.267542 0.128063 0.311437 0.091775 0.398867 0.401262 0.192512 -0.092304 0.019156 0.127408 0.791201 0.085723 -0.099638 0.062569 0.295368 0.512275 0.018713 0.300413 -0.068651 -0.134729 0.254075 -0.287326 -0.085870 -0.025439 -0.620760 0.120706 0.391370 0.273219 -0.455144 0.292692 -0.299682 0.117271 0.145065 0.046431 0.602609 0.069635 0.268314 0.294111 0.517713 -0.321506 -0.065282 0.194245 0.291802 0.017741 -0.005348 -0.046113 -0.028198 -0.953040 0.057497 -0.460468 0.020724 0.011842 0.402147 -0.268753 -0.005884 0.409744 -0.060608 0.357813 -0.324454 -0.092210 -0.561717 0.011878 0.071016 0.508751 0.078261 0.008375 0.101108 0.250951 0.067839 0.337716 -0.026600 -0.427350 -0.415429 -0.991293 -0.485964 -0.214045 -0.027490 -0.183083 -0.461514 -0.096416 0.565217 0.332356 -0.500120 0.038130 0.141465 0.144476 -0.070993 -0.224356 -0.294918 -0.067319 -0.080542 0.177995 0.225320 -0.120667 0.071562 -0.410510 0.235049 0.094694 0.253952 -0.058117 -0.239912 -0.047041 0.159932 -0.059258 -0.155773 -0.029846 0.002597 -0.268137 0.243348 -0.307915 0.453453 -0.482357 0.146597 -0.380301 -0.342676 -0.073820 0.617259 0.317382 0.194276 0.224075 -0.323434 0.075074 -0.491183 -0.870749 0.099581 -0.009047 0.179962 -0.031023 -0.120298 0.052922 -0.167180 -0.115316 0.181553 -0.336725 -0.182129 -0.153592 0.123121 0.029576 -0.199376 -0.286355 0.132814 0.488348 -0.022908 0.234586 -0.322713 -0.245239 -0.394301 -0.377114 0.325714 -0.161462 0.038280 -0.011722 -0.067337 -0.561687 0.330447 -0.326135 0.120366 -0.271516 -0.263234 -0.475827 0.077555 -0.183945 -0.037187 0.064762 -0.350733 0.151197 -0.000731 -0.025043 0.056822 0.047947 0.046241 -0.387946 -0.492319 -0.048854 0.041748 0.420691 0.221893 0.067164 -0.142418 -0.191626 -0.313324 0.413737 -0.271417 0.124425 0.199944 -0.488884 0.335057 -0.256871 -0.222124 -0.174191 0.268458 0.124043 -0.290566 0.634530 0.476311 -0.502487 -0.271594 -0.368838 0.173774 0.141830 0.622811 -0.203792 0.050712 0.163688 0.107535 -0.059558 -0.135252 0.227804 0.033851 0.193235 -0.597548 -0.395317 0.282759 0.421966 -0.017644 0.131165 0.067666 0.169671 -0.126791 0.616014 0.077856 0.143208 -0.255407 -0.633989 0.176494 0.064828 0.053180 0.157006 -0.242025 -0.220343 -0.124438 0.012146 0.487675 0.413849 -0.104857 0.449894 -0.323405 -0.462889 -0.265495 -0.036925 0.038371 -0.358253 0.265549 -0.307429 -0.001211 -0.192047 0.206456 0.022816 -0.109556 -0.379722 0.028555 0.172337 0.188105 -0.203712 0.462229 0.034307 -0.232565 -0.107028 0.070370 0.058925 0.398271 -0.223832 -0.309899 -0.215403 0.180463 -0.226034 0.249098 -0.056289 0.224587 0.242968 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.287689 -0.385095 0.204428 0.441934 0.423510 0.033708 0.061965 0.033070 -0.087870 -0.816672 -0.419674 -0.225975 -0.097927 -0.049598 0.310084 0.093050 0.465457 -0.039237 -0.652739 0.087986 0.081954 -0.213035 -0.118180 0.140412 0.020958 -0.478549 0.045911 0.457235 -0.000323 0.397183 -0.347602 0.242971 0.361438 0.137635 0.523464 0.424211 0.148251 -0.210361 -0.027362 0.073509 1.041298 -0.054988 0.000795 0.140092 0.365379 0.596297 -0.093718 0.665098 0.341486 -0.139329 0.595946 -0.563922 -0.060877 0.075704 -0.875677 0.185057 0.411713 0.144426 -0.576542 0.243684 -0.318268 0.192780 0.095207 -0.052243 0.749529 0.079677 0.406479 0.313145 0.540045 -0.410219 -0.151386 0.361557 0.379187 0.251855 -0.149773 -0.214950 0.144711 -1.114258 0.091948 -0.297369 0.084121 -0.200715 0.433738 -0.220025 -0.159295 0.448073 -0.251242 0.430352 -0.282423 0.017694 -0.744933 0.075228 0.272073 0.306413 0.019994 -0.035174 0.166965 0.160251 -0.055898 0.476521 -0.003273 -0.486563 -0.621446 -1.173130 -0.684949 -0.227331 0.145918 -0.254799 -0.595791 0.074779 0.517283 0.191429 -0.440257 -0.031430 0.103836 0.222100 -0.122840 0.012559 -0.379086 -0.390335 0.080478 0.370176 0.232751 -0.041475 0.156424 -0.822002 0.328887 0.113285 0.379896 -0.168692 -0.053763 -0.121565 0.145435 0.076911 -0.193298 -0.113797 0.069625 -0.256064 0.329251 -0.152118 0.498914 -0.575505 0.027655 -0.623354 -0.265018 -0.104259 1.102107 0.428317 0.444948 0.501865 -0.421393 0.070810 -0.548598 -0.891658 -0.072067 -0.107450 0.248484 0.060307 -0.127720 0.213938 -0.137941 -0.163256 0.049741 -0.411189 -0.278179 -0.271129 -0.275481 -0.019250 -0.190494 -0.413834 0.226418 0.599765 -0.311565 0.306077 -0.303588 -0.382524 -0.392208 -0.524429 0.341205 -0.261113 0.158569 0.038789 0.026133 -0.667439 0.329078 -0.394753 -0.035625 -0.319687 -0.521599 -0.536682 0.129220 -0.251970 0.037749 0.166331 -0.456417 0.230502 0.004107 0.282840 0.170396 0.159781 -0.148076 -0.579835 -0.686117 -0.209948 0.012881 0.581945 0.210006 -0.053526 -0.116379 -0.366881 -0.334406 0.479069 -0.456930 0.130375 0.309820 -0.611645 0.222241 -0.319771 -0.190554 -0.215955 0.289425 0.181113 -0.642976 0.633078 0.500277 -0.652108 -0.407558 -0.648073 0.247912 0.079532 0.774521 -0.102326 0.222948 0.141047 0.305243 -0.070681 -0.219945 0.310947 0.136619 0.133923 -0.809957 -0.636376 0.348423 0.515564 -0.021840 0.072489 0.208046 0.443130 -0.026915 0.796003 0.055244 0.138202 -0.233619 -1.030750 0.145021 0.587425 0.003994 0.368767 -0.484279 -0.285063 -0.237994 -0.058298 0.609876 0.427448 0.210141 0.568308 -0.192176 -0.482157 -0.295293 -0.118055 -0.030336 -0.400647 0.298611 -0.406485 -0.101881 -0.299334 0.195798 -0.022379 -0.094368 -0.566300 0.024233 0.210956 0.258873 -0.025482 0.474838 0.177683 -0.306852 -0.140359 0.159444 0.056449 0.563526 -0.321416 -0.385326 -0.226240 0.057467 -0.227763 0.137440 -0.028561 0.320720 0.131708 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.197102 -0.808215 0.411312 0.378475 0.369607 0.017481 0.093795 -0.003877 0.160110 -0.614982 -0.086971 -0.285001 -0.165711 -0.005355 0.222064 -0.020588 0.305183 -0.175672 -0.725058 0.125933 0.037632 -0.043815 0.172973 0.027070 0.114219 -0.404862 0.460465 0.490628 -0.006720 0.257889 -0.313423 0.039032 0.254112 0.141470 0.345050 0.322656 0.346536 -0.118791 -0.256044 0.216280 0.793569 0.003358 -0.168598 0.112112 0.322268 0.441467 0.325177 0.537096 0.855504 -0.105220 0.423107 -0.497001 -0.097752 -0.173654 -0.680277 0.137679 0.413983 0.232290 -0.426676 0.161641 -0.168201 0.089351 0.042868 0.117927 0.530370 -0.102954 0.448634 0.108220 0.478635 -0.377701 -0.223591 0.353913 0.506566 0.351697 0.131563 -0.440842 -0.158040 -1.383478 0.060756 -0.039498 -0.074390 -0.180973 -0.358088 -0.113554 -0.089328 0.403425 -0.407859 0.268958 -0.165731 0.022498 -0.577266 0.135830 0.499427 0.432934 -0.074042 -0.096430 0.282551 0.162948 0.090166 0.463040 0.448963 -0.397600 -0.267134 -0.932491 -0.400430 -0.219011 0.147371 -0.262379 -0.421616 0.200033 0.281113 -0.140292 -0.243043 -0.023247 0.161529 0.262602 0.199984 -0.656216 0.203864 -0.269473 0.181297 0.316823 0.215155 -0.322276 0.098815 -0.533405 0.489304 0.249001 0.242750 -0.243243 0.385591 -0.147340 0.077641 0.459906 -0.117460 -0.174039 -0.023833 -0.338641 0.223096 -0.203190 0.449630 -0.323457 0.049837 -0.367444 0.201196 -0.067489 1.154930 -0.104023 0.294923 0.362988 -0.531506 0.096501 -0.206400 -0.898548 -0.071254 0.005664 0.100197 0.154925 -0.104580 0.188429 -0.027005 -0.216245 -0.099440 -0.251367 -0.158752 -0.123129 -1.144175 -0.031259 -0.060985 -0.247013 0.280384 0.627465 -0.080075 0.284376 -0.167218 -0.685500 -0.148749 -0.486894 0.227666 -0.185051 0.031191 0.035702 -0.046786 -0.638213 0.441202 -0.276632 0.055987 -0.185489 -0.621055 -0.375761 0.076833 -0.293495 0.519075 0.196090 -0.364176 0.065974 -0.601733 0.352692 0.185895 0.144189 -0.056349 -0.715298 -0.644615 -0.270233 0.067660 0.704253 -0.518158 -0.034490 0.043492 -0.279682 -0.111130 0.350084 -0.471141 0.010752 0.208579 -0.564831 0.206884 -0.026983 -0.086696 -0.219310 0.246927 0.224185 0.181792 0.735643 0.517687 -0.473882 -0.417576 -0.288959 0.070267 0.129815 0.644347 -0.205528 0.013477 0.100582 0.342938 -0.067389 -0.211804 0.268294 0.113110 0.098864 -0.619095 -0.628980 0.011013 0.454364 -0.028271 -0.011817 0.239294 0.315257 -0.481393 0.654447 -0.067194 0.333280 -0.217670 -0.758360 0.136309 0.781359 0.061031 0.409543 -0.694070 -0.225074 -0.050632 0.310907 0.491097 0.801078 0.280433 0.418407 -0.168223 -0.324954 -0.203923 -0.339743 -0.095465 -0.232159 0.272359 -0.328085 -0.093648 -0.267688 0.035373 -0.180043 0.165525 -0.139298 -0.021395 -0.002254 0.243028 -0.026328 0.341396 0.145625 -0.272186 -0.122165 0.171920 -0.104454 0.492844 0.152908 -0.202612 -0.196657 0.031204 -0.061299 0.087989 -0.091862 0.231707 -0.130282 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.762765 -0.558138 -0.112416 0.776153 0.479837 -0.327955 0.137388 0.159381 0.230014 -1.190572 -0.432203 0.579175 0.002316 -0.332133 0.160918 0.331003 0.539672 0.268225 -0.662821 0.404461 -0.018719 -0.022479 -0.569213 -0.111227 0.007511 -0.466129 0.243917 0.358643 0.076527 0.668089 -0.529676 0.175727 0.580971 -0.088075 0.591270 0.716109 0.485487 -0.150195 -0.091079 0.005846 1.511562 0.191391 0.144631 0.620713 0.584200 0.876069 -0.070155 1.586918 0.553502 -0.239784 0.753814 -0.358852 -0.298274 0.021289 -1.236303 0.544401 0.685317 0.115909 -0.851954 0.477061 -0.131798 0.267747 0.324289 0.117662 1.008596 0.501209 0.387951 0.611090 1.269464 -0.478651 -0.101240 0.456825 0.944926 0.403724 0.710935 -0.545924 -0.321477 -0.784912 -0.024525 -0.258690 0.362671 -0.376163 1.178521 -0.745720 0.037820 0.657273 0.084553 0.721689 -0.464791 -0.108383 -0.946971 0.183589 0.059450 1.120965 -0.061251 0.331007 -0.233233 0.283229 -0.134355 0.516178 0.111260 -0.859571 -0.603140 -1.671547 -1.013574 -0.486763 -0.196651 -0.324848 -1.128960 -0.011334 0.360908 0.615680 -1.100949 -0.018616 0.243033 0.039114 0.709161 0.214149 -0.429064 -0.232964 0.021798 0.310037 -0.070757 -0.210469 -0.081263 -0.847175 0.258860 0.227183 0.402955 -0.197601 -0.598911 -0.011600 0.035517 0.306001 -0.219387 -0.037940 0.103527 -1.028203 0.448450 -0.364042 0.566618 -1.012684 -0.534962 -0.732584 -0.750740 -0.210463 1.666615 0.135779 1.215425 0.327614 -0.535944 -0.363924 -1.079017 -1.559310 0.152721 -0.500024 0.166874 0.199975 -0.050422 -0.054555 -0.314028 -0.357853 0.323334 -0.700146 -0.296458 -0.356252 0.261037 -0.334395 -0.207785 -0.741039 0.035028 0.843800 0.174690 0.364564 -0.428044 -1.303959 -0.793761 -0.618893 0.593156 -0.314130 0.375711 -0.031446 -0.120120 -0.859069 0.224405 -0.599261 0.179211 -0.483342 -0.552996 -0.896976 0.178789 -0.314702 0.110896 0.031257 -0.773278 0.434490 -0.050001 0.462677 0.035717 0.258396 -0.113265 -1.331120 -1.120693 -0.133624 0.069935 1.115083 0.377254 0.170461 -0.130845 -0.412294 -0.839064 0.554916 -1.493413 0.182940 0.591095 -0.619201 0.650223 -0.599153 -0.354837 -0.793540 0.496539 0.079898 -0.809592 1.224023 0.752371 -1.000309 -0.384935 -0.646593 0.446865 0.284531 1.236372 -0.447324 -0.075996 0.457297 0.167095 -0.170382 -0.448641 0.491624 -0.050606 0.595550 -1.081684 -0.655466 0.467092 0.828496 -0.180911 -0.111715 0.099362 0.047348 -0.171587 1.162584 0.305003 0.387006 -0.743700 -1.726819 0.211047 0.163079 -0.013876 0.497487 -0.772426 -0.325594 0.008232 -0.109607 0.955908 0.133979 0.439453 0.782999 -0.985766 -0.936227 -0.094511 -0.198473 0.176071 -0.488298 0.613441 -0.685478 -0.145252 -0.405627 0.495211 -0.292369 -0.205588 -0.383863 0.189490 0.450005 0.299919 -0.261727 0.847296 0.209988 -0.378243 0.031379 0.004385 0.204240 0.364420 -0.683634 -0.335366 -0.382182 0.209424 -0.515646 0.815299 -0.166866 0.496228 0.180732 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = 1.131292 -0.886000 -0.148307 1.474552 0.614443 0.143925 0.275159 0.298024 0.680996 -2.123665 -1.107616 1.175819 -0.022365 -0.043307 0.208126 0.340854 1.018775 0.395947 -2.194672 0.143683 0.129254 -0.167216 -0.399906 -0.054320 0.053975 -0.777237 0.879457 0.757601 0.251982 1.298663 -0.694315 0.681333 1.089248 0.181692 0.959178 1.099805 0.055143 -0.462574 -0.595244 -0.561477 2.233738 0.605189 0.003385 1.078245 0.357603 1.626347 0.398664 1.847317 1.566341 -0.449862 0.738883 -0.609250 -0.731753 -0.132499 -1.955352 0.444578 0.738188 0.061125 -0.987057 0.687410 -0.131207 0.469787 0.486707 -0.211650 1.667595 0.286947 1.055000 1.063741 1.488181 -1.091283 0.080847 0.405916 1.130205 0.798597 0.862359 -0.943802 -0.715967 -1.106207 -0.017143 -1.169761 0.211122 -0.693691 1.403691 -1.085514 -0.094562 0.371440 -0.199757 1.339421 -0.654903 -0.081529 -1.696476 0.163439 0.371633 1.333459 0.140583 0.315926 -0.074044 0.363910 -0.283355 0.605519 0.437966 -1.544187 -0.412179 -2.807184 -0.945479 -1.008262 0.107910 -0.102535 -1.378633 0.357653 -0.176891 1.240898 -1.777170 -0.362286 0.299031 0.068198 0.531091 -0.183446 -0.172746 -0.411349 0.213261 0.818530 0.435734 -0.868157 0.218077 -0.895096 0.230401 0.335703 0.756751 0.166339 -0.585536 -0.464066 0.472759 0.750686 -0.095179 0.378561 0.511625 -0.787795 0.742384 -0.770764 1.170217 -1.345816 -0.558063 -0.948905 -0.546950 -0.712489 2.495973 0.711578 1.673975 0.551443 -0.362976 -0.155929 -1.579198 -2.602990 0.334261 -0.292403 0.171845 0.458680 -0.180138 0.397081 -0.968924 -0.151483 0.440175 -0.917144 -0.767276 -0.310514 -0.335315 -0.098452 -0.397632 -0.754822 0.208251 0.855207 0.000811 1.070148 -0.644645 -2.403375 -1.421616 -0.929391 1.187439 -0.834230 0.265651 -0.235926 -0.299558 -0.966887 0.110425 -1.071545 0.030785 -0.412314 -1.094101 -1.681036 0.350690 -0.516338 0.422323 0.592295 -1.355819 0.585077 0.455870 1.095072 0.066069 0.572087 -0.092214 -1.506564 -1.188785 -0.152614 -0.486349 1.897866 0.437225 -0.165552 -0.717554 -0.729612 -1.071102 1.150931 -1.756741 0.770861 0.383161 -0.953679 0.623524 -0.920626 -0.218242 -0.922555 0.774561 0.355703 -2.015444 1.593257 1.369184 -1.449478 -0.432722 -1.006471 0.712934 0.222681 1.620169 -0.994694 -0.541736 0.447752 0.198305 -0.076786 -0.746209 0.567446 0.106835 0.000352 -1.737948 -0.951455 1.087584 0.822191 -0.177025 -0.056506 0.743922 0.262742 0.209729 1.764290 0.512377 0.556649 -1.320288 -3.210809 0.472370 1.352818 0.046555 0.793309 -1.357993 -0.538278 0.056312 -0.720542 1.373421 0.402154 0.222314 1.414214 -1.288417 -1.310730 -0.867539 -0.590620 0.332342 -0.368684 0.930263 -0.814680 0.000548 -0.666484 0.559343 -0.548296 -0.488293 -0.226574 0.719524 0.920032 0.355435 0.018347 1.378697 0.356269 -0.692804 -0.140770 -0.113967 -0.493552 0.517910 -1.495008 -0.438962 -0.057431 0.450082 -0.976927 0.586759 -0.134709 0.809907 -0.050177 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.149570 -0.196643 0.087332 0.259879 0.198446 0.021944 0.036280 -0.026760 -0.060493 -0.453239 -0.218406 -0.060201 -0.057352 -0.031787 0.168218 0.089438 0.278429 -0.000603 -0.265786 0.039719 0.012784 -0.116657 -0.123539 0.104308 0.006582 -0.269233 0.030493 0.222598 -0.012832 0.221770 -0.196691 0.144896 0.190353 0.058119 0.277150 0.212929 0.115610 -0.090886 -0.037444 0.059144 0.582567 -0.058233 0.037237 0.111419 0.223219 0.327675 -0.056677 0.375735 0.195784 -0.073465 0.322966 -0.256840 -0.024391 0.062058 -0.494192 0.096972 0.189428 0.048533 -0.311306 0.168004 -0.180259 0.134031 0.046705 -0.015560 0.429244 0.054475 0.238814 0.176643 0.297426 -0.203040 -0.060666 0.185062 0.240587 0.144585 -0.036883 -0.061267 0.065841 -0.550457 0.006360 -0.122642 0.096267 -0.099350 0.306135 -0.129531 -0.124805 0.246297 -0.140951 0.225249 -0.156698 0.001101 -0.397250 0.058826 0.125678 0.166135 0.044056 0.011273 0.029204 0.098443 -0.017956 0.228236 -0.012519 -0.264407 -0.306685 -0.665133 -0.414726 -0.123077 0.057845 -0.168654 -0.339486 0.049854 0.295769 0.195541 -0.261656 -0.001043 0.045801 0.092310 -0.037531 0.002132 -0.211279 -0.194659 0.047525 0.228062 0.110561 -0.005112 0.101984 -0.460019 0.170057 0.052637 0.236189 -0.084873 -0.043152 -0.065844 0.061032 0.054500 -0.125867 -0.041148 0.037683 -0.144386 0.199129 -0.091873 0.265161 -0.334058 -0.012663 -0.343115 -0.194673 -0.045330 0.641532 0.253086 0.314866 0.252166 -0.242671 -0.000175 -0.345916 -0.533244 -0.011660 -0.069906 0.122975 0.048237 -0.056339 0.079401 -0.107253 -0.097930 0.102285 -0.237135 -0.124204 -0.157150 -0.137602 -0.029572 -0.140367 -0.274826 0.116313 0.332079 -0.129491 0.139885 -0.162363 -0.266075 -0.228916 -0.263000 0.181358 -0.139003 0.121428 0.044901 -0.001135 -0.372415 0.175853 -0.208728 -0.017069 -0.164962 -0.288073 -0.295641 0.049708 -0.125091 -0.023004 0.055585 -0.251238 0.124733 0.018599 0.093496 0.106318 0.102029 -0.067820 -0.296443 -0.385960 -0.106273 -0.020724 0.298287 0.160612 -0.021544 -0.092934 -0.180572 -0.239549 0.255621 -0.311230 0.057851 0.197652 -0.330429 0.111857 -0.181235 -0.117652 -0.097711 0.154824 0.067124 -0.433229 0.340131 0.312897 -0.387173 -0.233805 -0.341854 0.179111 0.034476 0.448327 -0.086072 0.158151 0.076924 0.144175 -0.026725 -0.114950 0.193242 0.075117 0.064436 -0.442349 -0.322224 0.224840 0.283529 -0.025062 0.006081 0.113855 0.210667 -0.002992 0.419017 0.039151 0.087489 -0.138795 -0.567980 0.059772 0.248319 -0.026494 0.249104 -0.265154 -0.138841 -0.118003 -0.112106 0.324054 0.119745 0.103944 0.309891 -0.118446 -0.270532 -0.133076 -0.106963 -0.023742 -0.250067 0.231871 -0.216107 -0.072075 -0.157314 0.152304 -0.038191 -0.047733 -0.270155 0.003588 0.116570 0.146842 -0.012248 0.266639 0.077182 -0.167079 -0.066253 0.076272 0.051958 0.317338 -0.252643 -0.223187 -0.157832 0.040285 -0.150626 0.118288 -0.045780 0.206752 0.097396 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 1.581181 -0.413029 -0.422068 1.591522 0.688143 -0.613087 0.143229 0.608975 0.310483 -1.971228 -0.956700 1.491557 0.041419 -0.379450 0.331113 0.547063 0.859017 0.603195 -1.632906 0.645753 -0.239021 -0.026248 -1.098233 -0.645312 0.067401 -0.129286 0.323174 0.559732 0.231491 1.176019 -1.060779 0.442075 0.846197 0.023886 1.084249 0.680960 0.547302 -0.393622 -0.483663 -0.716573 2.530974 0.499541 0.268840 1.432539 0.762462 1.493647 -0.180043 2.569060 0.751802 -0.225731 1.095584 -0.631739 -0.672516 0.208541 -2.094036 1.018579 1.159459 0.153400 -1.162712 0.864489 -0.013598 0.642502 0.687775 -0.242633 1.922828 1.014300 0.755939 1.233614 2.095397 -0.910314 0.106400 0.338522 1.840297 0.607517 0.851487 -1.218349 -0.408471 -1.281478 0.013157 -1.263901 0.887684 -0.817823 2.523777 -1.432414 0.350944 0.869790 0.238388 1.275311 -1.153651 0.092533 -1.555729 0.207579 -0.280417 1.991711 -0.201029 0.547537 -0.362959 0.441051 -0.238667 0.751431 0.010582 -1.252727 -0.617359 -2.872992 -1.610983 -0.301344 -0.529824 -0.574551 -1.656750 0.098959 0.491058 1.264398 -1.974248 -0.641763 0.225496 -0.120608 0.715910 0.771226 -0.767821 -0.347063 -0.233377 0.810918 -0.005995 -0.616138 0.117177 -1.203428 -0.303866 0.443820 1.109105 0.190266 -1.384046 -0.151299 0.098002 0.304791 -0.342815 -0.060747 0.059974 -1.404069 0.803889 -0.687722 1.010967 -1.771393 -1.124917 -1.232124 -1.233051 -0.255186 2.518851 0.392479 1.986023 0.916295 -0.417625 -0.604796 -1.874787 -2.446222 0.614490 -0.468937 0.188255 0.247426 0.010325 -0.070512 -0.743916 -0.846717 0.961093 -1.457817 -1.057065 -0.908234 1.116019 -0.514877 -0.492780 -1.380809 0.425847 1.479117 0.079083 0.619355 -0.716027 -2.249806 -1.481029 -0.897370 1.163305 -0.557233 0.555133 0.040871 0.025661 -1.207334 0.171129 -1.257516 0.505891 -0.490368 -1.019108 -1.687330 0.346989 -0.382013 0.088095 0.120842 -1.323488 0.986450 0.328289 1.254359 -0.390720 0.728319 0.208025 -2.261774 -2.027569 -0.401900 0.153888 1.865107 0.857909 0.398621 -0.655501 -0.692086 -1.390132 1.193787 -2.559057 0.549417 0.611900 -0.656769 0.943297 -1.303201 -0.590457 -1.414760 0.845882 0.202044 -2.074162 2.019724 1.215724 -1.818493 -0.587294 -1.697856 1.089383 0.308553 2.478238 -1.054664 -0.333056 0.757386 0.404611 -0.417247 -1.117925 0.857713 0.083767 0.461142 -1.803796 -1.029136 0.915817 1.129793 -0.147128 -0.080249 0.391371 0.049171 -0.195167 2.160389 0.637477 0.427419 -1.361964 -3.144654 0.281591 0.811812 0.112734 0.766031 -1.407604 -0.736815 -0.110602 -0.334855 1.547102 0.115635 0.681120 1.345207 -1.755191 -1.466261 -0.327718 0.044113 0.317578 -0.885785 0.991696 -1.205495 -0.326552 -0.471385 0.859846 -0.574710 -0.363825 -1.011028 0.224140 0.998229 0.352724 -0.419614 1.592800 0.599322 -0.745649 0.160610 -0.203502 0.098025 0.341274 -1.477088 -0.432684 -0.460229 0.314188 -1.153496 1.309371 0.105778 0.692012 0.185712 -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) = 4.374857 -0.653104 -1.538850 4.900982 1.320414 -1.039926 -0.058013 1.830467 0.053109 -4.737504 -3.106780 3.915980 0.102270 -0.098680 1.497650 1.321405 2.074055 0.295725 -6.206473 1.248328 -1.197895 -1.244912 -3.028298 -1.667246 0.224077 0.475374 1.186017 2.228000 0.207243 2.715769 -2.725881 2.239564 1.576868 0.762370 3.372981 0.054004 -0.549230 -1.535396 -2.256271 -2.875054 6.137630 1.426008 0.188024 3.404154 1.190288 3.780697 -0.605352 6.057236 1.933903 0.109489 3.382460 -1.416530 -1.790652 1.055010 -5.511158 1.771686 2.719390 -0.383022 -2.009135 1.930412 -0.935318 2.074926 1.767475 -0.896212 6.353964 2.158529 3.635700 3.339017 4.083918 -2.610193 0.857825 0.167969 4.601341 1.287267 -0.016021 -3.502717 -0.620868 -3.863153 0.717975 -4.849134 2.129058 -2.430880 6.132609 -2.969519 0.117840 0.709860 0.263147 3.480762 -4.206944 1.695358 -3.958829 0.086576 -0.941673 4.558887 -0.765132 1.101220 0.002890 0.974813 -0.626057 1.887849 -0.584740 -2.703933 -0.617281 -7.163103 -3.930676 0.732082 -1.029413 -1.587082 -3.536866 1.184175 1.031994 2.560605 -4.131421 -3.068928 -0.148222 -0.427561 0.998290 3.229488 -2.131750 -1.439248 -0.527837 3.646776 1.493176 -1.459334 1.908406 -3.617609 -1.196078 1.527590 3.963434 1.854783 -4.050538 -0.583482 1.147010 0.010165 -0.659942 -0.083787 0.085416 -1.487367 2.127254 -1.521669 3.130095 -4.882216 -2.676503 -3.899064 -2.176262 -0.073709 5.443785 3.118295 4.312620 3.807969 -0.033439 -0.197109 -4.947148 -5.904949 1.163001 0.282789 -0.087625 -0.183853 0.064104 0.727519 -2.147954 -1.983749 3.364576 -4.176808 -4.304478 -3.264054 2.565414 0.038964 -1.782231 -2.835353 2.081160 3.009272 -1.079342 2.590977 -1.247152 -6.521283 -4.178246 -1.967608 3.038150 -1.495249 0.657311 0.292024 0.527864 -3.226589 0.249047 -3.530247 1.235979 -0.295599 -3.131169 -4.267184 0.916403 -0.408654 0.286647 0.292113 -3.264093 2.572518 2.133179 4.329065 -1.257782 2.943700 1.003006 -4.693011 -5.192565 -1.240883 0.229652 5.072990 2.429174 0.490548 -2.073704 -1.859367 -3.405344 3.737289 -5.447511 2.037711 0.643241 -1.668262 1.296128 -3.846735 -1.619112 -2.511389 1.946406 0.565274 -6.820568 4.930952 3.405903 -4.875301 -1.686842 -5.875616 3.550826 -0.113719 6.789341 -2.922477 -0.520634 0.938951 2.548465 -1.274270 -2.647027 2.189587 0.860550 -1.465454 -4.528804 -2.952216 2.874892 1.959292 0.376443 -0.248959 1.185511 0.524585 -0.113905 5.567778 1.398685 0.184655 -2.893841 -9.005588 0.288681 3.820820 -0.359952 1.988769 -4.053242 -2.626034 -1.424322 -1.726332 3.697752 0.225493 0.854247 3.375684 -3.550388 -3.014805 -2.777529 0.786158 -0.255988 -2.134397 2.271973 -2.901352 -1.021905 -0.622433 1.877586 -1.752748 -0.925272 -3.508803 0.115545 2.494912 0.426265 -0.775545 3.951835 2.438490 -1.818016 -0.659768 -0.316165 -1.489292 1.495830 -4.579765 -1.242673 -0.744566 0.681841 -3.132988 1.517659 1.838771 1.863219 -0.006437 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.128582 -0.137514 -0.011363 0.305668 0.025951 -0.031490 0.032312 -0.083293 -0.169705 -0.492770 -0.020913 0.233851 -0.009489 -0.024402 0.027878 0.215341 0.129024 0.045395 -0.320711 0.095411 0.073097 -0.058095 -0.009207 0.005122 0.016532 -0.256235 0.264523 0.185264 -0.003212 0.270745 -0.215986 0.187309 0.249371 0.006609 0.131722 0.189445 0.065653 -0.082085 -0.175115 0.029309 0.485756 -0.131150 0.074949 0.029504 0.074875 0.341765 0.061147 0.306629 0.495645 -0.122343 0.274950 0.189539 -0.083771 0.006918 -0.411066 0.048707 -0.054549 0.156199 -0.188233 0.110445 -0.266214 0.104711 0.095632 0.093090 0.455935 0.102061 0.294245 0.260489 0.346834 -0.242356 -0.007190 0.162706 0.122334 0.070169 0.272145 -0.117057 -0.069580 -0.607416 -0.078775 -0.218921 0.002354 0.036382 0.480433 -0.202259 -0.152376 0.163971 0.070019 0.353678 -0.178704 0.141071 -0.400501 0.066973 0.124237 0.322574 0.059717 -0.011271 -0.079216 0.069266 -0.033310 0.178781 0.085891 -0.278867 -0.158081 -0.424463 -0.426804 -0.191033 0.044742 -0.063695 -0.495517 0.160948 0.456249 0.283874 -0.437501 -0.000929 0.101087 0.142637 0.268982 0.078394 -0.149649 -0.096172 0.062933 0.246105 0.135494 -0.052314 0.107967 -0.224318 0.135081 0.052782 0.209083 -0.085603 -0.296414 -0.149636 0.068982 -0.019837 -0.003642 0.032891 0.136689 -0.116272 0.175577 -0.112158 0.284955 -0.338813 -0.055212 -0.254875 -0.076982 -0.104653 0.591187 0.338715 0.255823 0.083046 -0.278707 -0.012222 -0.383132 -0.365068 -0.089765 -0.103916 -0.030273 0.161971 -0.064168 0.109687 -0.070298 0.027765 0.099108 -0.253381 -0.146611 -0.070182 -0.211635 0.003774 -0.089596 -0.319107 0.006316 0.136236 0.025992 0.229667 -0.077297 -0.524286 -0.403025 -0.292242 0.231957 -0.151494 0.053205 -0.098117 -0.103351 -0.147255 0.157366 -0.207559 -0.027786 -0.035068 -0.266649 -0.344032 0.177607 -0.116745 -0.226962 -0.001006 -0.287013 0.084180 -0.145177 -0.088755 0.122203 0.002671 -0.100845 -0.409611 -0.350023 -0.011690 -0.069448 0.172536 0.178841 0.057852 -0.311868 -0.228271 -0.240884 0.163214 -0.421955 0.116676 0.174350 -0.341462 0.164167 -0.250922 0.066392 -0.070078 0.170543 0.031045 -0.589015 0.529260 0.382465 -0.321979 -0.139463 -0.146757 0.177406 0.091394 0.330580 -0.172288 0.055047 0.060071 0.199257 -0.033580 0.088838 0.189708 -0.087001 0.005845 -0.351684 -0.270087 0.188635 0.306327 -0.028273 -0.114680 0.103811 -0.007332 -0.051706 0.311158 0.123607 0.133724 -0.120477 -0.634857 0.079681 0.063112 -0.039812 0.332739 -0.289638 -0.092837 0.056596 -0.119206 0.362725 -0.245431 -0.032842 0.261425 -0.295557 -0.311376 -0.157556 -0.163916 -0.064185 -0.123430 0.304139 -0.208633 -0.132326 -0.095835 0.094658 -0.217665 0.062638 0.026904 0.083205 0.195005 0.300148 -0.064907 0.294611 0.147029 -0.162153 -0.112383 0.060599 -0.062038 0.166982 -0.216597 -0.072947 -0.012430 0.126130 -0.164181 0.127883 -0.043165 0.078752 -0.027017 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.517948 -0.334497 -0.046143 0.725066 0.410623 -0.204950 0.144009 0.154877 0.175378 -1.254940 -0.487472 0.279192 0.013066 -0.121638 0.121792 0.338553 0.459746 0.426161 -0.693187 0.260393 0.217983 0.132783 -0.166038 -0.131417 0.110074 -0.363038 -0.019184 0.194274 0.192918 0.769229 -0.559990 0.283277 0.659248 -0.018082 0.388152 0.669330 0.463801 -0.110460 0.025921 -0.110515 1.266061 0.076013 0.099248 0.492090 0.317110 0.870314 -0.073416 1.217148 0.319739 -0.335221 0.516732 -0.633151 -0.283723 0.067042 -1.020594 0.649807 0.625655 0.451338 -0.685140 0.403217 -0.050755 0.290040 0.319526 -0.241635 0.831919 0.568553 0.226197 0.643672 1.197377 -0.525638 -0.010115 0.299457 0.681065 0.246888 0.523493 -0.504399 -0.070440 -0.958487 -0.130204 -0.558247 0.325767 -0.268350 1.205481 -0.816588 0.144229 0.668484 0.048655 0.779747 -0.376708 -0.008704 -0.953312 0.176369 0.110411 0.910399 0.043859 0.157134 -0.280240 0.318383 -0.131145 0.388135 0.115996 -0.647699 -0.742843 -1.499546 -0.902070 -0.451344 -0.068439 -0.112746 -1.161430 0.002462 0.465902 0.644350 -1.265557 -0.025041 0.242203 0.228419 0.278883 0.192926 -0.433605 -0.158769 -0.081750 0.195563 -0.140187 -0.343688 -0.034149 -0.745194 -0.059092 0.124934 0.403915 -0.162833 -0.546312 -0.121422 -0.089492 0.144768 -0.114194 0.101702 0.229385 -0.767962 0.454046 -0.439327 0.520761 -0.913315 -0.456504 -0.495195 -0.779779 -0.306799 1.571792 0.130909 0.908187 0.221745 -0.532986 -0.463673 -1.003135 -1.247146 0.206153 -0.351258 0.332698 0.393773 -0.113917 0.015813 -0.360167 -0.276408 0.229374 -0.672748 -0.326134 -0.257128 0.409091 -0.360504 -0.117930 -0.871362 0.010860 0.892848 -0.123956 0.262737 -0.432044 -0.628178 -0.856185 -0.614942 0.608653 -0.359477 0.412485 -0.153315 0.025921 -0.754159 0.232607 -0.607381 0.040615 -0.290350 -0.575857 -0.967426 0.290542 -0.315412 -0.096158 0.236635 -0.725517 0.451149 -0.004800 0.445507 0.039877 0.109318 -0.069718 -1.155636 -1.022998 -0.164141 -0.068505 0.751155 0.367152 0.102910 -0.309553 -0.514288 -0.650881 0.662049 -1.146594 0.256103 0.390200 -0.323171 0.576993 -0.644666 -0.189164 -0.830284 0.443442 0.160858 -0.954390 0.980466 0.533907 -0.854057 -0.254858 -0.719060 0.471556 0.280634 1.082348 -0.408630 -0.155172 0.440678 0.042832 -0.139653 -0.546931 0.428463 -0.138285 0.533578 -0.953708 -0.508614 0.413489 0.743851 -0.196795 0.134548 0.332560 0.118396 -0.041782 1.023582 0.393040 0.209487 -0.676047 -1.427259 0.197576 0.359424 0.195758 0.362543 -0.744202 -0.185852 0.147252 -0.005149 0.888800 0.306385 0.399723 0.796045 -0.942924 -0.837433 0.093546 -0.086149 0.266558 -0.445825 0.465155 -0.611511 -0.087819 -0.215787 0.433420 -0.165974 -0.360315 -0.481546 0.224630 0.694291 0.173588 -0.132097 0.863107 0.167663 -0.410144 0.124515 -0.018591 0.224849 0.110305 -0.544874 -0.234924 -0.140266 0.182900 -0.612378 0.817070 -0.240724 0.203016 0.160053 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.037594 -0.532602 -0.178493 0.833822 0.204562 -0.053861 0.091204 -0.252990 0.158681 -1.089231 -0.100402 0.302378 0.004432 0.333893 -0.327948 0.532082 0.285438 0.045261 -0.372963 0.089271 0.266779 0.107007 0.147246 0.119413 0.370400 -0.309837 0.497120 0.139636 0.165950 0.688451 -0.439225 0.584235 0.595372 -0.004025 0.116403 0.451955 0.365264 0.211725 -0.034977 -0.132026 0.457981 -0.149197 -0.087933 0.126481 -0.067365 0.749237 0.387109 0.859513 0.306290 -0.356694 0.111395 -0.184668 -0.275683 -0.122832 -0.710334 0.680244 0.177801 0.596463 -0.336615 0.124153 -0.013061 0.259923 0.287213 -0.072003 0.740725 0.444350 0.419162 0.581578 1.001658 -0.459754 0.072657 0.311674 0.582674 0.209244 0.516135 -0.440315 -0.276578 -0.265073 -0.326365 -0.444799 0.172535 -0.056438 0.670556 -0.644303 -0.283614 -0.011242 -0.099169 0.842194 -0.422520 0.291621 -0.868736 0.173255 0.313670 0.867677 0.223350 0.173425 -0.264862 0.532501 -0.105041 0.196486 0.214326 -0.326736 -0.236557 -0.744401 -0.544179 -0.487146 0.143229 0.140260 -1.242579 0.207110 -0.084090 0.526342 -1.266471 0.010524 0.180479 0.258655 0.778105 0.097455 0.156764 0.171618 -0.018615 -0.035987 -0.305122 -0.288414 0.173842 -0.311617 -0.205172 -0.003575 0.288134 0.113530 -0.848537 0.054887 -0.182251 0.067630 0.197429 0.424243 0.382795 -0.370162 0.338803 -0.508240 0.376596 -0.839526 -0.663509 -0.060243 -0.763668 -0.371242 1.057605 0.108695 0.785454 -0.360417 -0.344692 -0.612506 -1.106998 -1.096915 0.131222 -0.054004 0.052346 0.732793 -0.183302 0.146389 -0.530333 -0.147566 0.574176 -0.573939 -0.358305 -0.183759 0.068444 -0.125826 0.257586 -0.662365 -0.317051 0.527028 -0.154160 0.334240 -0.235378 -0.869988 -1.093231 -0.321553 0.318893 -0.325170 0.272819 -0.261518 -0.106580 -0.735529 0.172674 -0.463654 -0.206344 -0.033526 -0.477192 -0.818830 0.537823 -0.227414 -0.082675 0.308451 -0.544296 0.296526 -0.181522 0.218941 0.261061 -0.028520 -0.086546 -0.548776 -0.690230 0.319674 -0.216849 0.302585 -0.072099 -0.217530 -0.055593 -0.653051 -0.574882 0.598983 -0.730545 0.366688 0.480387 0.188738 0.366754 -0.659610 0.231076 -0.520786 0.332714 0.134010 -0.638056 0.618493 0.394850 -0.633976 -0.072361 -0.231516 0.458026 0.205883 0.564986 -0.491647 -0.408988 0.248315 0.160369 -0.088318 -0.156796 0.221922 -0.242552 0.367042 -0.652800 -0.292281 0.160146 0.483519 -0.224493 0.148163 0.195409 -0.416915 -0.109199 0.603730 0.476566 0.312408 -0.631900 -1.040181 -0.129830 -0.179289 0.085844 0.210421 -0.825201 0.118602 0.457748 -0.242452 0.671035 -0.149840 -0.197397 0.643576 -1.105722 -0.547441 0.309837 -0.293523 0.113361 -0.065050 0.468801 -0.458189 0.007918 0.038519 0.397720 -0.539480 -0.463171 0.307103 0.321985 0.801501 -0.350854 0.084620 0.706566 -0.073113 -0.085847 -0.104360 0.209711 -0.076383 -0.140040 -0.826021 -0.100037 0.092472 0.289780 -0.679983 0.714449 -0.147093 0.073464 0.013700 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::char_traits::length(char const*) = 0.741291 -0.865989 -0.125968 1.591049 0.426912 0.213304 0.349488 0.134953 0.606768 -2.207200 -0.848475 1.040684 0.025074 0.088534 0.074572 0.265565 0.654559 0.362248 -1.950306 -0.031358 0.309707 -0.081463 -0.271931 -0.066293 -0.043273 -0.669210 1.171477 0.735691 0.244372 1.303840 -0.505984 0.728614 1.202839 0.214016 0.750317 0.985702 0.070711 -0.421769 -0.796816 -0.395222 1.977751 0.484276 -0.099665 0.859885 -0.026076 1.504224 0.823661 1.430441 1.266678 -0.510488 0.437712 -0.442463 -0.599965 -0.323183 -1.625158 0.339254 0.603088 0.487689 -0.711253 0.561690 -0.381643 0.241623 0.505026 -0.039728 1.671084 0.302345 1.233885 1.280474 1.269098 -1.097331 0.101082 0.196679 0.651326 0.383209 1.071480 -0.864797 -0.757052 -1.181105 -0.042327 -1.116654 -0.110210 -0.271753 1.233869 -1.011524 -0.087056 0.083550 -0.023475 1.350833 -0.608104 -0.124473 -1.660367 0.067983 0.451446 1.409095 0.128226 0.124008 -0.076354 0.371424 -0.097108 0.446259 0.657898 -1.351731 -0.125345 -2.337385 -0.748867 -0.927612 0.097261 0.143645 -1.214673 0.234092 -0.193062 0.940468 -1.845918 -0.341492 0.467645 0.290718 1.118779 -0.565037 0.025577 -0.076220 0.292537 0.516496 0.562571 -0.827709 0.318686 -0.631910 0.351815 0.211915 0.640158 0.254030 -0.835957 -0.582351 0.380741 0.566093 0.005499 0.469101 0.572558 -0.540448 0.678623 -0.793372 1.165320 -1.236381 -0.173818 -0.713359 -0.458568 -0.692953 2.385932 0.657172 1.362124 0.138740 -0.611180 -0.048859 -1.448996 -2.515656 0.262958 0.025575 -0.062504 0.577616 -0.299832 0.481382 -0.937763 0.165845 0.730590 -0.710258 -0.744676 -0.150051 -0.587398 0.045927 -0.420798 -0.526394 0.158821 0.503598 0.167435 1.293941 -0.540964 -2.356389 -1.636510 -0.861534 1.096965 -0.730022 0.016517 -0.447601 -0.477418 -0.907602 0.091999 -0.983879 0.250802 -0.165954 -1.076530 -1.691916 0.446188 -0.412871 0.183523 0.604880 -1.217608 0.305618 0.269106 0.668101 0.077597 0.347525 -0.011865 -1.217129 -0.959465 0.089600 -0.518748 1.589696 0.157577 -0.099716 -0.817820 -0.647965 -1.014253 0.968747 -1.129851 0.826743 0.291486 -0.841142 0.573620 -0.928627 0.115743 -0.867366 0.615391 0.381689 -1.769200 1.540696 1.146832 -0.956325 -0.258234 -0.468628 0.570299 0.214745 1.195112 -1.065388 -0.713907 0.331185 0.148766 0.007234 -0.408812 0.384903 -0.147796 -0.241441 -1.569560 -0.932355 0.904752 0.746147 -0.148410 -0.054264 0.769750 -0.108435 -0.050637 1.490228 0.665753 0.553479 -1.001180 -2.853770 0.525015 0.868778 0.051768 0.498608 -1.258104 -0.432816 0.178095 -0.633413 1.189355 0.418954 -0.169680 1.307379 -1.391309 -1.208712 -0.855462 -0.639039 0.357203 -0.293235 0.693625 -0.519861 0.207883 -0.470578 0.277940 -0.574993 -0.427020 0.226205 0.655090 0.829270 0.068985 0.098708 1.224713 0.289316 -0.595454 -0.176268 -0.032333 -0.613829 0.477321 -1.484709 -0.355111 0.140453 0.532666 -0.855877 0.416990 -0.363591 0.454876 -0.001156 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.275366 -0.177479 -0.571635 1.253660 -0.071549 0.106069 0.041040 -0.477770 -0.116179 -1.344694 -0.445940 0.600360 0.314563 0.096588 0.051830 0.625236 0.195511 0.177687 -0.619770 0.008120 0.267984 -0.161297 -0.184153 0.109202 -0.099986 -0.561856 0.833915 0.202651 0.017803 0.831147 -0.205411 0.840980 0.771396 -0.247270 0.127450 0.501569 -0.237812 0.167132 -0.601309 0.015953 1.044366 -0.168178 0.318235 0.250481 -0.242317 0.909809 0.147893 1.013086 0.618100 -0.395870 0.906402 1.068625 -0.046826 -0.135665 -0.909685 0.171646 0.445990 0.184786 -0.317379 0.245605 -0.391774 0.286820 0.379172 0.427752 1.140447 0.596873 0.875993 0.954696 0.830299 -0.654602 0.235405 0.200775 -0.037472 -0.106722 1.040785 -0.631520 -0.703800 0.252728 -0.380441 -0.401495 0.176156 0.074807 1.373206 -0.653116 -0.622745 -0.106567 0.397990 1.039308 -0.383026 0.396488 -0.776546 0.029896 -0.283173 1.070587 0.229218 0.203898 -0.427954 0.197327 -0.231788 0.177846 0.106231 -0.827350 0.079067 -0.982953 -1.143223 -0.610296 0.382114 0.329187 -1.326381 0.199616 -0.147026 0.234133 -1.409573 -0.006151 0.191165 0.532113 1.221502 0.139558 -0.593326 -0.147842 0.338450 0.474074 0.377721 -0.037478 0.419724 -0.609146 0.093356 0.134810 0.326626 -0.004896 -0.874340 -0.343001 -0.178722 -0.082421 0.230124 0.449497 0.725330 -0.271607 0.488995 -0.317130 0.732002 -1.301758 -0.469941 -0.650053 -0.768893 -0.421971 0.601211 0.557672 1.055345 -0.372908 -0.685614 -0.078349 -1.406363 -1.043868 -0.316777 -0.092707 -0.209017 0.607274 -0.230043 0.398113 -0.602756 0.476727 0.824010 -0.471814 -0.459153 -0.028485 0.370339 0.112108 -0.359914 -0.522072 -0.234096 -0.398602 0.201378 1.143298 0.065169 -1.363845 -1.566877 -0.435519 0.734424 -0.475103 0.154302 -0.493900 -0.386196 -0.761999 0.011023 -0.716684 -0.194463 0.118008 -0.414632 -0.995368 0.417195 -0.109797 -0.403974 0.141026 -0.935568 0.184055 0.524085 0.042356 0.338983 0.173883 -0.196542 -0.866582 -0.642902 0.310808 -0.528479 0.534365 0.644124 0.036537 -0.419125 -0.564478 -0.782838 0.119346 -0.599333 0.440651 0.385863 -0.304776 0.251210 -0.954929 0.179522 -0.470475 0.097561 -0.008398 -1.569590 1.089226 0.635790 -0.563999 -0.011584 -0.031483 0.591167 -0.164524 0.428079 -0.556909 -0.273339 0.126252 0.269944 -0.006622 -0.038905 0.261741 -0.399891 -0.321160 -0.700933 -0.308818 0.748943 0.532116 -0.165261 -0.272422 0.335755 -0.584203 0.197800 0.618446 0.660633 0.122266 -0.436362 -1.727293 0.174975 -0.876397 -0.383392 0.276527 -0.405505 -0.147597 0.447886 -0.273343 0.847925 -0.557205 -0.217567 0.795070 -1.015505 -0.868007 -0.629498 -0.400111 0.082991 -0.143418 0.099325 -0.571811 0.002654 -0.071133 0.209342 -0.535058 -0.417169 0.465991 0.398782 0.965044 -0.031681 0.070199 0.859727 0.449957 -0.183173 -0.339760 0.150593 -0.518068 0.232487 -1.047046 -0.156943 0.235250 0.427923 -0.598503 0.168305 -0.420032 0.190079 0.109878 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.347070 -0.316043 -1.383030 3.795953 0.348857 -1.046170 0.973269 1.109040 0.145984 -5.400899 -1.840172 3.102720 0.242738 -0.462381 -0.398948 1.463856 1.458838 1.449829 -4.941255 0.785824 1.236774 0.407326 -1.681493 -0.490780 0.267356 -1.283064 0.393019 1.621106 0.359055 3.516040 -1.525750 1.509953 3.086843 -0.347995 1.203420 3.038815 0.451551 0.327491 0.290921 -0.790835 4.573335 1.278278 -0.452300 1.891012 0.729086 4.187146 0.021298 4.423630 -0.289328 -1.715699 1.154088 0.026987 -1.797181 -0.530837 -3.552390 1.356209 2.529940 2.270575 -2.362521 2.200024 -1.044517 0.916735 1.862014 0.324642 4.170733 2.853926 1.873939 3.353591 4.891366 -2.283350 0.709318 0.666347 1.822435 0.281456 1.938223 -1.710483 -1.767394 -2.177620 -0.288721 -4.529557 -0.032515 -0.380491 6.062715 -3.436806 0.141770 0.651700 1.315758 3.792592 -2.607771 0.104207 -3.902508 0.044090 -0.577460 5.681937 0.321560 1.244248 -0.941621 1.793739 -0.102108 1.215180 -0.461374 -3.096776 -1.708660 -5.755595 -2.621681 -2.298949 -0.562141 0.579864 -4.969032 -0.535919 1.104399 3.331830 -6.314387 -0.552297 0.968209 0.549496 2.474810 2.331054 -2.335608 0.312619 -0.694047 0.280219 0.609740 -1.350726 0.461655 -1.781010 -0.628919 0.553611 1.084825 1.044296 -5.840336 -0.204506 0.777966 -1.142876 0.243934 1.863689 1.211953 -1.944704 1.756148 -3.122033 2.749849 -4.916081 -1.807365 -1.229824 -4.034058 -1.560393 3.526457 2.947985 2.813752 -0.516409 -1.167786 -1.508416 -5.336134 -5.924511 0.882937 -0.640249 0.857970 0.846134 -0.768672 -0.034696 -2.695229 -0.239689 2.174708 -2.178575 -1.470205 -1.284860 4.673172 0.094601 -0.609188 -2.149654 -0.584747 1.642018 0.377367 2.381211 -1.812600 -4.584291 -5.463776 -1.789091 2.973791 -1.357806 0.221741 -1.383729 -0.962329 -3.090941 0.577906 -2.505694 0.242257 -1.052918 -1.215801 -4.421972 1.922084 -0.878258 -1.079612 0.442030 -2.934654 1.029952 1.910879 1.040574 0.321610 0.402405 0.124119 -3.276064 -2.954176 1.057497 -0.807474 3.212381 2.917595 0.264830 -1.559464 -1.552122 -3.669375 3.220953 -3.329614 1.928052 1.300164 -1.093295 3.120031 -2.853572 -0.557850 -2.866244 1.877267 0.474741 -5.013062 4.666675 2.880923 -3.379121 -0.597122 -1.779488 1.851342 1.320710 3.101900 -2.755917 -2.179256 1.712971 -0.294257 -0.354275 -1.100249 1.115974 -0.740529 1.491452 -3.698106 -1.101625 2.944039 2.151086 -0.911338 0.413329 0.557684 -1.555920 0.793465 3.871961 1.962031 0.571965 -2.880727 -6.780818 1.051489 -1.237255 0.075167 0.176968 -2.236227 -1.204869 1.085424 -1.414135 3.621997 -0.161113 -1.469443 3.247433 -5.082000 -3.844901 -1.444261 -0.117210 1.088415 -1.036752 1.788880 -1.724189 0.400082 -0.121612 1.907467 -0.715695 -2.781687 -0.995045 1.396341 3.265015 -0.272823 -1.525220 3.989733 -0.065639 -0.999868 -0.526181 -0.029490 -0.144079 0.332051 -3.915115 -0.840859 -0.399233 2.005251 -3.117561 3.222093 -0.123432 1.150527 1.502825 -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.399748 -0.084499 -0.091516 0.503323 0.224496 -0.328547 0.148134 0.168186 0.008593 -0.782344 -0.253138 0.305712 0.033418 -0.273179 0.060355 0.196020 0.284352 0.407862 -0.448786 0.264555 0.082604 0.091275 -0.400984 -0.230415 -0.038131 -0.242020 -0.047188 0.245830 0.060690 0.537890 -0.365490 0.054414 0.423161 -0.026412 0.395427 0.551379 0.430018 -0.040893 0.026581 0.034737 0.983435 0.203522 0.011923 0.333177 0.384326 0.635978 0.013042 0.607506 -0.140607 -0.196617 0.179011 -0.171282 -0.191901 -0.044311 -0.734266 0.339835 0.487434 0.334620 -0.583397 0.436496 -0.128022 0.154232 0.275480 0.048842 0.633964 0.310361 0.109353 0.466232 0.891571 -0.338800 -0.009775 0.165079 0.538400 0.030468 0.443710 -0.121399 -0.212448 -0.712620 -0.053623 -0.524674 0.212583 -0.014030 0.913927 -0.589743 0.204261 0.566711 0.162825 0.471344 -0.384422 -0.223071 -0.631822 0.049156 -0.124797 0.890606 0.087752 0.177946 -0.160578 0.322363 0.038684 0.300987 -0.021639 -0.582344 -0.397085 -1.209278 -0.619792 -0.338874 -0.261729 -0.196418 -0.673958 -0.227930 0.549087 0.692391 -0.896569 0.053441 0.211179 0.024223 0.187048 -0.160185 -0.351641 0.103071 -0.201859 0.059432 0.014155 -0.226167 -0.105272 -0.281980 0.055111 0.092425 0.261026 -0.043868 -0.554616 -0.004443 0.060751 -0.011597 -0.184245 0.016719 -0.001716 -0.658229 0.294065 -0.445237 0.449786 -0.636620 -0.108068 -0.345974 -0.675258 -0.143729 0.780326 0.106743 0.527281 0.067967 -0.336222 -0.201330 -0.730659 -1.127270 0.332663 -0.200705 0.170115 0.059741 -0.078484 -0.144297 -0.283828 -0.235572 0.359051 -0.479664 -0.171849 -0.157190 0.629408 -0.183834 -0.215962 -0.505870 0.029157 0.635599 0.261639 0.167213 -0.444193 -0.490990 -0.579692 -0.387702 0.464295 -0.178923 0.169396 -0.037951 -0.134069 -0.556272 0.255581 -0.434498 0.265384 -0.356127 -0.188858 -0.669920 0.100028 -0.212045 -0.118804 0.010879 -0.483290 0.290013 0.013005 -0.045044 -0.087825 0.035379 0.129135 -0.711772 -0.651300 0.003131 0.074368 0.540909 0.402349 0.244437 -0.244749 -0.187004 -0.540218 0.440340 -0.744511 0.160558 0.312299 -0.403429 0.576100 -0.411544 -0.289047 -0.475984 0.375201 0.084353 -0.426602 0.854589 0.545721 -0.645353 -0.206628 -0.347552 0.272765 0.260572 0.836319 -0.395452 -0.130035 0.376158 -0.081996 -0.101860 -0.298019 0.292611 -0.071183 0.484784 -0.694009 -0.316119 0.341535 0.554003 -0.105620 0.092551 0.033775 -0.064641 -0.168006 0.779437 0.243884 0.263280 -0.528434 -0.817881 0.231581 -0.264387 0.133978 0.167371 -0.269100 -0.191323 0.042364 -0.020333 0.620535 0.205651 -0.034389 0.546909 -0.757351 -0.692004 -0.065919 -0.024401 0.230033 -0.433935 0.423053 -0.436243 -0.008129 -0.230709 0.380652 -0.064243 -0.170419 -0.301436 0.125952 0.332823 0.208850 -0.339829 0.664802 -0.004703 -0.288267 0.074797 -0.064694 0.223855 0.192582 -0.424923 -0.263576 -0.270152 0.276044 -0.406983 0.671053 -0.175666 0.247676 0.328014 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 3.296672 -1.354164 -1.791699 4.535880 0.554595 -1.455907 1.244729 1.517452 0.523801 -7.021990 -2.271928 4.847792 0.213379 -0.937055 -0.645176 1.816050 1.933217 2.060556 -6.378605 1.115271 1.061852 0.470693 -2.521115 -1.115728 0.230929 -1.495977 1.124263 2.017354 0.516884 4.161645 -1.913872 1.269797 3.718472 -0.289177 1.737595 3.846849 0.586638 0.286214 0.201027 -1.371549 6.337632 1.997989 -0.456525 2.763525 1.328074 5.053960 0.350864 6.258481 0.603714 -1.882529 1.504200 -0.399110 -2.543514 -0.768416 -5.097168 1.666563 3.092528 2.403095 -3.086850 2.884444 -1.022983 1.207741 2.223911 0.409359 5.779531 3.088932 2.603986 4.000940 5.991778 -2.858793 0.657683 0.957121 2.946538 0.699572 3.293489 -2.764922 -2.563685 -2.944393 -0.269213 -5.610822 0.292192 -0.552888 8.244309 -4.278858 0.423260 1.048813 1.671598 4.440010 -3.061911 -0.387390 -5.148850 0.229092 -0.538316 7.671614 0.472501 1.675420 -1.133987 2.183211 -0.022350 1.636504 0.176304 -3.981447 -1.922886 -8.126206 -2.859750 -2.993449 -0.883102 0.324893 -6.001486 -0.803703 1.582479 4.399472 -7.960085 -0.684008 1.449247 0.162486 3.938482 2.278468 -2.637963 0.674986 -1.024490 0.418829 0.631237 -2.026618 0.055886 -1.810743 -0.241272 0.603787 1.435167 1.283463 -7.732045 -0.266604 1.081923 -0.442290 0.081198 1.958671 1.112479 -2.834778 2.074247 -3.737909 3.324178 -6.308089 -2.002249 -1.562477 -4.906608 -1.882718 5.770576 3.416520 4.237897 -0.534269 -1.184318 -1.938447 -6.595477 -8.464917 1.622109 -0.862029 0.913743 0.749104 -0.698559 -0.266974 -3.276822 -0.616599 2.726086 -2.777047 -1.648888 -1.464467 5.517280 -0.207095 -0.950539 -2.577954 -0.589381 2.791163 1.010899 2.642846 -2.440957 -7.237169 -6.515898 -2.258656 3.651989 -1.713759 0.304816 -1.309574 -1.336641 -3.629109 0.634489 -3.089503 1.092911 -1.430621 -1.818196 -5.467606 2.033107 -1.139705 -0.543248 0.495375 -3.595765 1.358926 1.776536 1.591350 -0.007913 0.752324 0.468126 -4.891130 -4.068163 1.153301 -0.927536 4.557228 3.575435 0.559668 -2.148002 -1.645813 -4.909099 3.672541 -5.344340 2.264156 1.410576 -1.891454 3.954560 -3.386766 -0.424055 -3.677697 2.490367 0.647332 -6.589130 6.370689 4.000742 -4.236001 -0.838989 -2.137547 2.024331 1.703450 4.203134 -3.664250 -2.823142 2.251301 -0.843909 -0.461337 -1.236195 1.511939 -0.655371 2.098109 -5.186960 -1.733279 3.431368 2.628275 -1.014165 0.524035 0.611064 -1.949867 0.220336 5.524281 2.216737 1.096098 -4.095682 -9.753149 1.453435 -0.876608 0.148101 0.613192 -2.818818 -1.661726 1.225802 -1.894203 4.343630 -0.131024 -1.792011 3.911940 -6.582081 -4.758493 -1.630797 -0.247549 1.546306 -1.427320 2.567245 -2.108833 0.295659 -0.625566 2.345664 -0.994650 -2.959618 -1.089393 1.760735 3.926153 0.270227 -2.027512 4.846824 -0.244634 -1.432971 -0.371894 -0.375602 0.028581 0.945679 -5.198670 -1.076322 -0.770647 2.468613 -3.696998 4.109508 0.055899 1.682679 1.730038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = -0.010673 -0.115027 -0.098960 0.789071 -0.083893 0.278286 0.112885 -0.340060 -0.173393 -1.022211 -0.289363 -0.025296 0.149359 0.451324 0.094006 0.156815 0.083923 0.106244 -0.883526 -0.236783 0.449065 0.002086 0.382185 0.246993 0.045798 -0.317109 0.271784 0.115974 0.146406 0.726407 -0.238803 0.649951 0.628383 -0.004620 0.024618 0.324270 0.042672 0.211511 -0.406789 -0.014710 0.588723 -0.215220 0.192361 -0.013223 -0.472091 0.646655 0.118010 0.684123 0.502683 -0.487328 0.544378 -0.203070 0.037930 0.053078 -0.368154 0.082374 0.229905 0.546863 -0.097331 0.165643 -0.197496 0.241949 0.163203 0.035257 0.574101 0.349948 0.325803 0.476917 0.340262 -0.552097 0.209967 -0.075576 -0.447661 -0.282733 0.305648 -0.386221 -0.237119 -0.300363 -0.089558 -0.390229 -0.271757 0.184716 0.348468 -0.468237 -0.247452 0.045708 0.043103 0.671409 -0.126466 0.426009 -0.627515 -0.041777 0.094856 0.538368 0.243199 -0.058710 -0.088751 0.036039 0.027594 0.093022 0.094830 -0.398529 -0.063966 -0.588696 -0.508535 -0.337184 0.416798 0.501922 -0.772574 0.053647 -0.164037 0.176855 -0.967711 -0.015079 0.067805 0.642680 0.238619 0.186749 -0.145791 -0.118947 0.239940 0.162322 0.506845 -0.311985 0.431182 -0.513422 -0.127948 0.090056 0.228374 -0.045979 -0.262133 -0.352739 -0.069265 -0.217356 0.169576 0.363874 0.538430 0.263889 0.396874 -0.387190 0.435919 -0.483542 -0.143181 -0.132631 -0.571353 -0.365570 0.681556 0.304145 0.282626 -0.226294 -0.675716 0.000863 -0.710351 -0.807574 -0.197280 0.203355 0.169575 0.608814 -0.277610 0.416714 -0.596858 0.361075 0.330760 -0.153468 -0.406911 0.078560 -0.360922 0.124430 -0.222122 -0.318364 0.060503 -0.299239 -0.336046 0.858629 0.018636 -0.487257 -1.044765 -0.379523 0.581156 -0.332453 0.052339 -0.422647 -0.088437 -0.628114 -0.027091 -0.477105 -0.277075 0.237225 -0.356702 -0.752366 0.305341 -0.160008 -0.149879 0.404276 -0.593197 -0.012725 0.365973 0.082455 0.347905 0.028077 -0.021117 -0.242813 -0.283954 0.124048 -0.583313 -0.062922 0.080726 -0.075513 -0.166036 -0.515285 -0.272514 0.185929 -0.070020 0.340678 0.014729 -0.053840 0.120902 -0.478624 0.102585 -0.116746 0.015924 0.277049 -0.740793 0.471328 0.129373 -0.209461 0.008302 -0.045877 0.319764 0.007414 0.228131 -0.350348 -0.276633 0.021682 0.064050 0.099638 -0.083176 0.108048 -0.306299 -0.405347 -0.332148 -0.152413 0.411579 0.265131 -0.065311 0.028482 0.642215 -0.159566 0.394235 0.340270 0.298348 -0.098944 -0.061989 -1.017650 0.306137 0.037560 -0.053546 -0.053282 -0.510401 0.036659 0.463932 -0.044953 0.472530 0.221447 -0.070896 0.603593 -0.525204 -0.466749 -0.461462 -0.280968 0.031897 -0.054353 -0.311783 -0.211144 0.280399 0.193514 0.012559 -0.032194 -0.361218 0.061459 0.216750 0.562371 -0.304946 0.341718 0.640114 0.241988 -0.114413 -0.151304 0.090407 -0.249795 -0.026512 -0.471364 -0.069767 0.330146 0.241068 -0.422764 -0.097945 -0.435272 -0.247135 0.143777 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.720654 -0.435379 -1.447760 4.084693 0.719016 -1.914721 1.284461 2.060883 0.430220 -6.220340 -2.558190 4.398631 0.245548 -1.515884 -0.420721 1.617130 2.112496 2.246529 -6.787142 1.488996 1.011317 0.475233 -2.838545 -1.561590 0.140839 -1.540506 0.457313 2.247345 0.333625 4.211781 -2.100898 1.068974 3.388697 -0.089663 2.551387 4.086224 0.411170 -0.138766 0.587626 -1.151718 6.417008 2.754959 -0.624488 2.703849 1.981189 5.132657 0.285647 4.840727 -0.449194 -1.660311 1.040342 -0.026487 -2.709436 -0.588294 -5.022102 1.505027 3.423269 2.170050 -3.417136 3.199695 -0.991835 1.176851 2.301355 0.373687 5.338337 2.645621 1.986282 3.659376 6.185036 -2.604520 0.736111 0.727697 3.389531 0.319652 2.614280 -2.154221 -2.548762 -3.438997 -0.004702 -6.598674 0.628404 -0.505420 7.400943 -4.257099 1.125618 1.507934 1.592728 4.191816 -3.316176 -1.172347 -4.725846 0.167725 -1.241571 7.709476 0.275682 1.901603 -0.747459 2.422510 0.063957 1.720760 -0.567686 -4.348074 -1.840385 -8.616181 -2.791007 -2.949137 -1.347937 -0.238271 -5.087788 -0.976542 1.920590 4.786303 -7.314389 -0.582639 1.401332 -0.275010 1.836794 1.001347 -2.421652 0.779086 -1.638287 0.796931 0.684768 -2.058919 -0.199408 -1.462705 -0.443969 0.858361 1.639857 1.231164 -6.780875 -0.050715 1.436737 -0.796613 -0.421561 1.786242 0.712713 -3.083898 2.014455 -4.202605 3.567235 -5.629899 -1.372355 -2.061033 -4.495649 -1.698247 3.926393 3.050839 3.293121 -0.114221 -0.538557 -1.371951 -6.216135 -8.125966 2.112529 -1.054846 1.073496 0.040019 -0.600553 -0.672001 -3.185240 -1.016212 2.489676 -3.033648 -1.650375 -1.744713 6.387386 -0.097227 -1.258961 -2.297933 -0.372211 3.043898 1.306818 2.176960 -2.921976 -5.905186 -5.818173 -2.316634 3.760673 -1.619687 0.205321 -1.126156 -1.167426 -3.345964 0.917901 -3.204467 1.364928 -1.986039 -1.136195 -5.258880 1.512313 -1.191764 -0.509548 0.150564 -3.526271 1.538195 2.248654 1.219210 -0.394831 0.762471 0.928335 -4.373851 -3.727821 1.055819 -0.294453 4.533831 3.695199 0.735971 -2.236999 -1.268406 -4.463423 3.814282 -4.592649 2.224315 1.373242 -2.386434 4.235282 -3.176926 -0.973234 -3.367504 2.610246 0.450964 -5.446388 6.305835 4.182531 -4.649208 -0.994256 -2.515856 2.097279 1.733002 4.707361 -3.496255 -2.560258 2.253796 -1.068111 -0.554528 -1.511320 1.653042 -0.471697 2.453599 -5.049189 -1.608312 3.717139 2.794132 -0.866628 0.798080 0.179347 -1.427365 0.435935 5.464339 1.944054 1.315180 -4.413966 -8.642674 1.473637 -1.024941 0.552876 0.427768 -1.995375 -2.055668 0.568805 -1.310639 4.476371 0.883564 -2.074720 3.909633 -6.028808 -4.983066 -2.051860 0.018247 1.637758 -1.783889 2.489807 -2.352060 0.352651 -0.955376 2.806742 -0.491222 -2.773226 -1.615081 1.750982 3.578516 0.721841 -2.730024 4.996965 -0.305587 -1.490101 -0.354460 -0.547907 0.211280 1.074245 -4.444846 -1.466859 -1.259828 2.565174 -3.646573 4.391506 0.227047 2.352546 1.993240 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.806852 -1.145856 -0.524445 1.904682 0.726590 -0.649077 0.397123 0.560860 0.315935 -2.801831 -1.209006 1.592850 0.061405 -0.667342 0.232034 0.756769 1.155962 0.328905 -2.591379 0.760844 0.107402 -0.308992 -1.461926 -0.154376 -0.008848 -1.139209 0.643136 1.196167 -0.019594 1.626806 -0.950246 0.656130 1.389531 -0.101608 1.405346 1.703244 0.248149 -0.279105 -0.028376 -0.110898 3.256611 0.885195 -0.105542 1.141270 1.119592 2.190935 -0.105389 3.305993 0.778895 -0.581021 1.611684 -0.369375 -0.943592 -0.066633 -2.743624 0.707982 1.612602 0.288522 -1.732721 1.191036 -0.739961 0.574224 0.831455 0.480702 2.752253 1.046540 1.406498 1.472642 2.644623 -1.162105 0.004689 0.885003 1.773881 0.588679 1.155618 -1.192791 -1.009712 -1.719534 0.183330 -1.658350 0.370675 -0.677146 2.746907 -1.557832 -0.132238 0.804043 0.347465 1.847227 -1.425174 -0.172033 -2.231221 0.209635 -0.010047 3.030551 -0.075569 0.867103 -0.233874 0.811916 -0.203994 1.100985 -0.040588 -2.054464 -1.150595 -3.940355 -1.871129 -1.202208 -0.328232 -0.457348 -2.534474 -0.041999 0.710781 1.388824 -2.649991 -0.175903 0.540178 0.005739 1.651257 0.812678 -1.138509 -0.326486 -0.068229 0.811932 0.380978 -0.464303 0.115509 -1.744036 0.668099 0.553901 0.837612 0.075475 -2.325457 0.049914 0.610269 0.216902 -0.298760 0.370938 0.359064 -1.661088 0.980040 -1.244328 1.564884 -2.674865 -0.882971 -1.622788 -1.718960 -0.555058 2.924220 1.351968 2.286677 0.557472 -0.759732 -0.424748 -2.801654 -3.878530 0.259881 -0.770982 0.329736 0.034997 -0.212909 0.011571 -1.033956 -0.447640 0.903946 -1.460199 -0.795770 -0.908656 1.338190 -0.101396 -0.568336 -1.093033 -0.051759 1.387454 0.328801 1.252190 -0.970398 -3.441678 -2.322936 -1.245402 1.474075 -0.741671 0.353497 -0.289031 -0.457337 -2.018136 0.435467 -1.362228 0.384290 -1.006474 -1.074167 -2.127496 0.539184 -0.560708 0.214866 -0.009174 -1.713480 0.716385 0.617947 1.036241 0.191527 0.668893 -0.096205 -2.380012 -2.158765 0.145804 -0.052903 2.653977 1.237935 0.124536 -0.372079 -0.793629 -2.120890 1.505039 -2.743766 0.733981 1.058666 -1.565433 1.538510 -1.426610 -0.720026 -1.453467 1.115255 0.130110 -2.211048 2.903008 1.958671 -2.248557 -0.783348 -1.376901 0.986327 0.597818 2.424504 -1.174130 -0.478225 0.804725 0.312899 -0.310752 -0.577062 0.949900 -0.088486 0.916873 -2.480555 -1.349701 1.511602 1.555114 -0.325137 -0.100214 0.005476 -0.143026 -0.045952 2.565344 0.658425 0.628199 -1.710523 -4.453635 0.511484 0.092547 -0.280792 0.757014 -1.532779 -0.985731 -0.098975 -0.622574 2.143215 0.354460 -0.074358 1.786430 -2.289158 -2.155052 -1.034912 -0.292321 0.282098 -0.861169 1.239875 -1.286717 -0.073766 -0.714982 1.130506 -0.517208 -0.921465 -0.840923 0.582125 1.179961 0.454958 -0.872591 2.008449 0.300399 -0.649866 -0.427355 0.054010 -0.037005 1.073792 -1.951446 -0.849889 -0.780341 0.806323 -1.297339 1.521285 0.095536 1.330245 0.609036 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.118344 -1.120458 -1.965398 4.199162 0.565369 -1.663612 0.862638 1.220342 0.595475 -5.533916 -1.966965 3.417965 0.259488 -1.328855 -0.076290 1.817387 1.611460 1.387599 -5.411042 1.484270 0.865893 -0.050085 -2.850193 -0.747764 0.056288 -1.628273 0.875946 1.965241 0.019842 3.380902 -1.691061 1.414411 3.063785 -0.352080 2.151949 3.328265 0.050920 0.196561 0.382824 -0.336202 5.541601 2.320723 -0.963339 1.898990 1.466113 4.456806 0.155604 5.058386 -0.755513 -1.479621 1.463275 0.343070 -1.845242 -0.454071 -4.428299 1.183017 3.169474 1.566199 -3.105454 2.429706 -1.367576 1.120116 2.136531 1.220882 5.388089 2.395067 2.614733 3.576226 5.286105 -2.021613 0.875221 0.681487 2.710003 0.024163 2.713876 -1.677319 -2.591971 -2.481048 0.109742 -4.562970 0.332137 -0.350210 5.661063 -3.647257 0.331499 0.674313 1.671513 4.181947 -3.173137 -0.362634 -4.229705 0.107877 -0.849024 7.079715 0.212534 1.711884 -1.040757 2.270297 -0.221830 1.326512 -0.447223 -3.967183 -1.471781 -7.283696 -2.868078 -2.610930 -0.979520 0.080678 -5.293688 -0.778816 1.157819 3.710846 -6.415286 -0.289578 0.956893 -0.173829 3.315120 1.139866 -2.285453 0.582341 -0.995405 0.735194 0.679060 -1.122325 0.190610 -2.344460 0.598865 1.014075 1.259701 1.191603 -6.160385 0.435679 1.442769 -0.704267 -0.095970 2.119530 1.120273 -2.894158 1.793470 -3.479803 3.085327 -5.437648 -1.356284 -2.059462 -4.269685 -1.358239 3.573371 3.245190 3.179006 -0.240855 -1.086630 -1.125611 -6.176510 -7.894733 0.915915 -1.037714 0.445760 0.094675 -0.638482 -0.342298 -2.714524 -0.218460 2.699251 -2.673671 -1.624953 -1.756660 5.076334 0.383813 -1.135917 -1.517636 -0.863230 2.115413 1.035906 2.776517 -1.995554 -5.877905 -5.780839 -1.949136 3.182229 -1.406124 0.274038 -1.467985 -1.146765 -4.160932 0.921314 -2.705602 1.070223 -1.728352 -0.760393 -4.498284 1.196182 -0.863058 -0.087050 -0.341158 -3.232016 1.291421 1.977247 0.738769 0.017476 0.979158 0.403597 -3.720932 -3.266105 1.471743 -0.458565 4.642309 3.053985 0.390008 -1.221383 -1.242817 -4.357594 3.481167 -4.243360 2.002564 1.720121 -2.135312 3.627309 -2.852024 -1.537359 -2.731367 2.219179 -0.058540 -3.928774 5.545523 3.821173 -4.068218 -0.632833 -1.959307 2.229848 1.316288 3.817152 -3.005273 -1.920415 1.675040 -0.271660 -0.520522 -0.946443 1.347323 -0.742224 1.867250 -4.317816 -1.383706 3.337756 2.309467 -0.868570 0.098749 -0.333993 -1.895400 0.211409 4.471673 1.781358 1.081722 -3.641855 -7.767597 0.943829 -2.112465 -0.186408 0.243126 -2.018469 -1.547946 0.304124 -1.521266 4.165603 0.635713 -1.936696 3.421223 -5.710926 -4.448124 -2.260758 -0.112508 0.800549 -1.306066 2.276254 -1.860857 0.160012 -0.681203 2.518583 -0.848780 -2.920995 -1.070075 1.546032 3.005093 -0.042358 -2.655422 4.096591 0.018480 -0.974054 -0.950403 -0.072128 -0.420258 1.279133 -4.315703 -1.536863 -1.028973 2.213395 -3.272124 3.499957 -0.044133 2.245326 1.637883 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.261476 -1.463332 -1.262660 3.901802 1.015126 -0.739856 0.867289 1.072136 0.773519 -5.653787 -2.440723 4.300121 0.154789 -0.745040 -0.139904 1.453679 2.142538 1.221094 -5.512519 0.901483 0.462750 -0.273100 -2.251190 -0.554885 0.071649 -1.783612 1.774549 2.040915 0.328427 3.425163 -1.667044 1.476937 2.928881 -0.002173 2.160431 3.192698 0.104392 -0.443121 -0.585276 -1.309416 5.727349 1.886663 -0.227749 2.579161 1.295077 4.369206 0.382710 5.421066 1.795589 -1.317529 1.918480 -0.104205 -2.167721 -0.438915 -4.862443 1.169127 2.338545 0.808413 -2.744128 2.215123 -0.799782 1.138130 1.690594 0.371637 4.890342 1.893948 2.623986 3.116965 4.763634 -2.573815 0.382468 1.190811 2.869706 1.178366 2.551831 -2.275689 -2.299900 -2.220801 0.000533 -4.253062 0.417167 -1.169370 5.749572 -3.221471 -0.109323 0.721447 0.806413 3.758185 -2.467429 -0.189013 -4.345413 0.302434 -0.156326 5.762483 0.319655 1.516535 -0.699147 1.418072 -0.436733 1.639947 0.092985 -3.909151 -1.266300 -7.189416 -2.648288 -2.665436 -0.408849 -0.109117 -4.552073 0.019303 0.526306 3.687253 -5.681161 -0.786932 1.000375 -0.064879 2.788223 1.315521 -1.693984 -0.150780 -0.188065 1.294676 0.854741 -1.516802 0.277563 -1.969188 0.371546 0.691770 1.555267 0.860546 -5.031493 -0.457371 1.297650 0.330636 -0.041444 1.356985 1.147609 -2.408166 1.822838 -2.734968 2.969622 -4.786082 -1.666334 -2.197135 -3.169710 -1.638811 4.907243 2.836301 4.182536 0.451725 -0.713965 -1.036331 -5.279687 -7.223868 0.951655 -1.033061 0.456178 0.574713 -0.477163 0.274909 -2.723918 -0.477025 1.976323 -2.500087 -1.737397 -1.327485 2.988249 -0.054790 -0.969396 -1.932066 -0.235705 1.909211 0.713958 2.659888 -1.872804 -6.861677 -4.935383 -2.178766 3.135761 -1.760343 0.363628 -0.934387 -1.119911 -2.933342 0.319780 -2.701945 0.646837 -1.350975 -1.942805 -4.456935 1.360636 -1.056303 0.030077 0.569408 -3.371186 1.350077 1.755975 1.819070 0.137006 1.155395 0.045867 -3.995197 -3.279778 0.626036 -0.805118 4.589560 2.615241 0.113821 -1.761891 -1.610510 -3.894738 3.030112 -4.832010 1.989918 1.379586 -2.234899 2.753064 -2.908521 -0.650253 -2.600030 2.147903 0.477056 -5.475113 5.098110 3.740576 -3.961651 -1.019711 -2.177614 1.851149 1.056648 3.991996 -2.899833 -1.845945 1.582056 0.033237 -0.398757 -1.138171 1.456409 -0.176257 1.117345 -4.542433 -2.036117 3.126479 2.315987 -0.709473 -0.068064 0.698755 -0.732328 0.552474 4.694716 1.633410 1.172742 -3.571387 -8.735515 1.142918 0.328058 -0.269770 1.271628 -2.732211 -1.651217 0.494191 -1.947001 3.874683 -0.116449 -0.988813 3.493716 -4.684827 -3.973099 -2.108250 -0.818107 0.967527 -1.088203 2.441244 -2.087334 0.019767 -1.181220 1.913946 -1.237226 -2.039370 -0.691749 1.688086 2.931641 0.673792 -1.317664 3.973473 0.401246 -1.288256 -0.621005 -0.243740 -0.548034 1.286395 -4.558341 -1.170803 -0.671243 1.781700 -2.870230 2.685253 0.179937 2.116440 0.914821 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.039156 -0.986819 -0.669121 2.258583 0.385723 -0.221090 0.403232 0.045084 0.300421 -3.053016 -0.812730 1.907146 -0.107088 0.037654 -0.385195 0.954873 0.976589 0.369268 -2.361538 0.293690 0.464428 -0.076939 -0.601578 0.075637 0.340960 -0.858231 1.273544 1.016782 0.199371 1.662848 -0.821681 1.047931 1.603406 0.020023 0.644896 1.466428 0.095756 0.227292 -0.242417 -0.667471 2.370014 0.462819 -0.324155 1.001694 0.272957 2.224170 0.463879 2.720536 1.006082 -0.834756 0.797893 0.096568 -0.898290 -0.394915 -2.249706 0.709361 0.839216 0.917069 -1.236844 0.838786 -0.394793 0.631571 0.878635 0.252161 2.577686 1.178041 1.501724 1.749706 2.382513 -1.305304 0.267141 0.644709 1.251272 0.550879 1.194749 -1.193711 -1.087629 -1.136916 -0.315063 -2.026154 -0.000395 -0.352232 2.598229 -1.563742 -0.390276 -0.269553 0.220220 2.120393 -1.225063 0.379725 -2.415242 0.211215 0.346695 2.973336 0.314019 0.552145 -0.473117 0.863590 -0.280193 0.720736 0.087060 -1.619173 -0.498228 -3.121523 -1.239722 -1.390378 0.125275 0.273633 -2.841605 0.145906 0.051832 1.621639 -3.199314 -0.494326 0.442034 0.190894 1.785702 0.826234 -0.568743 0.100013 0.032140 0.376377 0.241658 -0.543318 0.376651 -1.116561 0.018112 0.179983 0.715756 0.655191 -2.987222 -0.174221 0.443225 0.016024 0.342995 1.097751 0.815705 -0.736131 0.906631 -1.490470 1.413202 -2.586973 -1.020283 -0.693794 -1.679381 -0.952331 2.505966 1.649154 2.065141 -0.274003 -0.565179 -0.915766 -2.949095 -3.593863 0.212703 -0.373106 0.138366 0.818342 -0.396851 0.328683 -1.502155 -0.070884 1.248701 -1.176198 -0.962837 -0.779205 1.083142 0.155955 -0.114855 -1.058433 -0.425580 0.817846 -0.083291 1.423200 -0.759521 -3.512389 -2.987660 -1.019838 1.379476 -0.928670 0.154492 -0.737172 -0.597852 -1.744833 0.265488 -1.302271 0.003901 -0.429380 -1.024463 -2.269309 1.120175 -0.550402 -0.075767 0.383270 -1.601001 0.583751 0.567330 0.738784 0.399806 0.498792 -0.135511 -1.735774 -1.538760 0.694286 -0.552415 1.862200 1.042076 -0.164312 -0.857449 -1.157041 -1.992123 1.699070 -2.237690 1.139437 0.960095 -0.603428 1.341360 -1.450387 0.126712 -1.104866 1.030084 0.298219 -2.937262 2.198613 1.757481 -1.890528 -0.396998 -0.841450 1.025253 0.535439 1.533769 -1.545811 -1.074391 0.749997 0.204298 -0.163504 -0.316918 0.533614 -0.205643 0.528357 -2.224824 -0.921308 1.426153 0.956531 -0.511956 -0.117216 0.369786 -0.820864 0.226805 2.156952 0.988458 0.614824 -1.631134 -4.357294 0.270191 -0.083932 -0.118157 0.651189 -1.667547 -0.487078 0.613762 -1.180467 1.970668 -0.422035 -0.963103 1.761287 -2.651200 -1.837728 -0.729620 -0.586544 0.328793 -0.282366 1.331044 -0.840112 -0.091503 -0.262085 0.909461 -0.942949 -1.260634 0.097462 0.912930 1.823618 -0.208327 -0.566910 1.885444 -0.013486 -0.486990 -0.511307 0.219151 -0.430809 0.466376 -2.665667 -0.499674 -0.058377 0.959428 -1.664062 1.390128 0.008147 0.805295 0.325901 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 3.179208 -0.664251 -2.044639 6.190646 0.388097 -0.135108 1.497440 0.864726 0.862802 -8.894092 -2.531476 5.870648 0.343080 0.753255 -1.267779 2.559167 2.006231 2.504383 -7.032901 -0.039922 1.949642 0.794949 -0.888145 -0.640808 0.455417 -1.747584 2.570163 1.989049 1.192958 5.360219 -2.092845 2.388289 5.243718 -0.366503 0.606229 4.189437 1.260538 0.791088 -1.686186 -2.578741 6.382419 1.533301 -0.826720 3.237702 -0.577645 6.321076 1.611216 6.491084 0.809797 -2.945956 0.722509 -0.353440 -2.953407 -1.364012 -4.879250 1.908489 2.763654 3.945174 -2.838735 2.849704 -0.332010 1.596849 2.669857 0.307933 5.427645 3.815365 3.445327 5.352352 6.472218 -4.477836 1.173683 0.841221 1.684346 1.020991 4.130660 -3.302018 -3.051235 -1.682201 -0.402977 -6.279876 -0.788924 -0.483036 8.667726 -5.291534 -0.332451 0.184742 1.535281 5.983528 -3.058187 1.312582 -6.112434 0.188924 -0.108691 8.512063 1.130397 1.107885 -1.873027 2.321025 -0.062740 1.432593 0.719927 -4.466025 -1.248038 -7.365554 -2.790781 -4.029857 0.084035 2.282145 -6.875496 -0.643728 0.168263 5.480209 -9.611381 -1.160884 1.583482 1.464170 5.189376 2.699847 -2.117451 0.825639 -0.304038 -0.116494 1.173048 -2.929394 1.019423 -0.973584 -0.907052 0.452110 1.488002 2.104778 -9.099024 -1.234399 1.150643 -1.385202 1.293632 3.381106 2.898223 -2.259418 2.725554 -4.503488 3.812968 -6.726439 -2.536870 -0.324879 -5.762554 -3.115431 5.985165 3.956469 4.339762 -1.341319 -1.806176 -2.728104 -7.309985 -9.048729 1.061091 0.181778 0.735712 2.690559 -1.390375 0.948335 -4.899375 0.490430 3.360840 -2.611148 -2.603779 -1.039287 5.220031 0.064755 -0.853501 -2.803027 -0.717276 1.214375 0.499053 4.736744 -2.152756 -8.159975 -8.617667 -2.883964 4.783733 -2.671586 0.204565 -2.559626 -1.929467 -4.429090 0.350807 -3.720381 0.699486 -0.291842 -2.526320 -7.187060 3.448818 -1.456441 -1.646293 2.002146 -4.815262 1.376683 2.134878 1.035917 0.481524 0.524858 0.191497 -4.989190 -3.625879 1.794935 -2.618313 4.890939 3.451321 0.108557 -3.123159 -2.870611 -4.933033 4.706910 -4.739889 3.428599 0.961497 -0.334849 3.853492 -4.161417 0.389797 -4.151272 2.888125 1.378870 -7.959001 6.786181 4.635492 -4.171875 -0.476016 -1.367058 2.567395 1.650823 3.740396 -5.211071 -4.569672 2.590806 -0.809239 -0.244528 -1.428055 1.280255 -1.062275 0.897408 -5.322373 -1.352996 3.854624 2.412677 -1.559164 0.532392 2.609738 -2.811308 1.275295 5.666562 3.145422 0.967713 -4.246674 -10.808832 1.973861 -1.308364 -0.181906 0.472776 -3.812947 -1.080890 2.998485 -2.833688 5.127176 -0.859487 -2.463221 5.095313 -7.903684 -5.351328 -2.065281 -1.582715 1.842584 -0.587938 2.626317 -1.920380 0.509619 -0.176258 1.728987 -2.015799 -4.004749 0.551114 2.583516 5.768875 -0.868462 -1.172613 5.855711 -0.011837 -1.438673 -0.506287 -0.284357 -0.788714 0.132105 -6.604041 -0.550006 0.838381 2.914663 -4.844342 3.676380 -0.644834 0.462157 1.356785 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 1.582909 0.659377 -0.651551 1.534564 -0.121089 -1.025706 0.882178 1.336809 -0.047454 -2.785694 -1.229132 1.595060 0.491113 -0.721013 -0.098946 0.675364 0.321721 1.753508 -2.403303 0.487919 0.800023 0.747409 -1.046743 -1.176385 -0.240627 -0.441615 -1.052325 0.591959 0.267879 2.251266 -0.756097 0.018235 1.707978 -0.333572 0.269595 1.964112 1.056812 0.221563 0.344119 -0.292595 2.628676 1.277709 -0.425355 1.187365 0.502831 2.218824 -0.383664 1.987823 -1.869267 -0.993329 0.336224 -0.423624 -1.325444 -0.278352 -1.469749 0.959214 2.331404 1.904622 -1.155367 1.858852 -0.638213 0.385568 1.110957 -0.166982 1.575019 2.059029 0.230583 1.714010 3.036226 -1.484088 0.317465 0.154131 0.801466 -0.599120 1.389081 -0.693336 -0.900264 -1.998017 0.055666 -3.221822 0.030831 0.134941 4.374731 -2.398569 0.940484 1.782963 1.345261 1.659060 -1.515101 -0.434569 -1.628396 0.007674 -1.104420 4.040121 0.284578 0.761042 -0.828494 1.130147 0.586017 0.653615 -0.215168 -1.493173 -1.660206 -3.452059 -1.493249 -1.084564 -0.908517 0.271265 -2.213551 -1.095837 2.260834 2.165023 -3.692808 0.100182 1.092840 0.584630 1.043972 0.893883 -1.873595 0.937068 -0.906994 -0.406835 0.366794 -1.280262 -0.213555 -0.066970 -0.557915 0.258241 0.394326 0.251692 -3.666526 -0.183568 0.201039 -1.094042 -0.089742 0.604529 0.240883 -1.756040 0.974132 -2.123266 1.520478 -2.738776 -0.344716 -0.329012 -2.824711 -0.648024 1.532820 0.967216 1.050956 -0.405012 -0.805662 -1.014781 -2.438826 -3.220985 1.169077 -0.026644 1.029234 -0.070177 -0.351536 -0.641165 -1.341096 -0.207044 0.951237 -1.218280 -0.278872 -0.098908 4.802945 -0.509249 -0.809591 -1.597934 -0.047538 1.366563 0.888454 0.702944 -1.249245 -1.237416 -2.576338 -1.085337 1.932954 -0.462523 0.128763 -0.611989 -0.493275 -1.529646 0.453384 -1.275797 1.101023 -0.334690 -0.643568 -2.575708 0.841129 -0.364654 -1.252347 0.288749 -1.567682 0.443396 0.906248 -0.092937 -0.305175 -0.128007 0.859109 -2.239914 -1.913069 0.119313 -0.249796 1.640355 2.133196 0.864995 -1.027239 -0.333977 -2.001991 1.615408 -1.793607 0.702999 -0.119611 -0.536575 2.235845 -1.531350 -0.802696 -2.418262 1.076560 0.358385 -1.668976 3.224357 1.564857 -1.485100 -0.357570 -0.801629 0.675194 1.110766 2.239509 -1.735387 -1.505098 1.356089 -1.111174 -0.261990 -0.760064 0.860234 -0.722572 1.348159 -1.694568 -0.208651 1.367616 1.607669 -0.468463 1.023662 0.511440 -0.676373 0.046903 2.099852 1.142097 -0.208942 -1.712240 -2.846212 1.220963 -1.671827 0.201176 -0.384223 -0.680726 -0.861026 0.915065 0.358636 1.812247 0.822294 -0.717333 1.739496 -2.868982 -2.376237 -0.305460 0.404081 1.177881 -1.202439 0.702887 -0.978910 0.566525 0.167704 0.904928 0.366454 -1.438054 -1.188717 0.367532 1.952585 0.274385 -1.365947 2.581210 -0.191370 -0.808873 0.308348 -0.654551 0.692109 -0.042480 -1.048987 -0.212362 -0.453594 1.268567 -1.580547 2.453239 -0.160911 -0.088887 1.516572 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.588381 -0.414378 -1.277161 3.628644 0.340908 -0.848978 1.178810 1.233044 0.374998 -5.693227 -2.084232 3.020591 0.438883 -0.234243 -0.331344 1.566948 1.272555 1.722242 -4.427484 0.472350 1.210529 0.590188 -1.514029 -0.606915 0.060873 -1.280471 0.124782 1.395413 0.517392 3.700638 -1.412640 1.129832 3.292292 -0.525710 0.721758 3.181263 1.325647 0.522590 -0.120929 -0.847667 4.779025 1.406550 -0.580728 2.102696 0.485633 4.181290 0.032274 5.141675 -1.009859 -1.883152 1.420106 -1.100868 -2.029460 -0.568445 -3.391673 1.604654 3.227223 2.729529 -2.311521 2.505233 -0.761203 0.953264 1.810774 0.244868 3.699983 3.242590 1.805953 3.277469 4.958151 -2.738581 0.531365 0.830699 1.562922 0.187113 2.231944 -2.097003 -1.652777 -2.142080 0.113419 -4.272617 -0.209534 -0.418361 6.445114 -3.740154 0.179350 1.408743 1.291109 3.583820 -2.478369 0.280858 -3.789172 0.097050 -0.585592 6.274144 0.384465 1.161120 -1.198212 1.800381 0.316404 1.304047 -0.034347 -2.896330 -2.243351 -5.707690 -2.632184 -2.265446 -0.553140 0.883358 -4.671586 -1.068483 1.434424 3.064655 -6.291378 -0.291082 1.373694 1.044069 3.253541 2.562540 -2.541235 0.587135 -0.553467 -0.185694 0.675549 -1.654713 0.408091 -1.541298 -0.340165 0.526652 0.905265 0.833671 -6.301972 -0.300560 0.538783 -1.244678 0.269896 1.636268 1.238473 -2.394200 1.918356 -3.162498 2.620239 -5.120737 -1.654499 -0.840484 -4.662171 -1.525240 4.204842 2.451146 3.004444 -0.524176 -1.659740 -1.869821 -5.026694 -6.325205 0.915178 -0.179756 1.199350 0.913671 -0.802604 -0.057021 -2.795402 -0.138358 2.037056 -2.029229 -1.250011 -0.877397 5.240243 -0.329283 -0.892140 -2.345057 -0.312488 1.699376 0.477864 2.459767 -1.727586 -4.513956 -5.318680 -1.980928 3.155306 -1.316075 0.404946 -1.270174 -1.001416 -3.678953 0.512356 -2.439059 0.851966 -0.658800 -1.735460 -4.639752 1.999013 -0.840821 -1.221100 0.846839 -3.074559 0.863224 1.586494 0.986203 0.282592 0.344711 0.418430 -3.828946 -3.331690 0.741429 -1.066567 3.666148 2.837909 0.447931 -1.239194 -1.478958 -3.720981 3.157752 -3.544046 1.697674 0.759058 -0.698414 3.175040 -2.862750 -0.722183 -3.528116 1.922085 0.764786 -4.339963 5.111590 2.970752 -3.028138 -0.712779 -1.471751 1.624808 1.452243 3.357543 -3.011938 -2.580891 1.974329 -0.774584 -0.342852 -1.226798 1.273413 -0.848936 1.538622 -3.644075 -1.045858 2.592378 2.353550 -0.978329 0.844528 1.139633 -1.379852 0.499653 4.043070 1.924315 0.158692 -2.789707 -6.847832 1.511074 -1.465470 -0.284049 -0.009420 -2.441085 -1.140536 1.571413 -0.947107 3.518378 0.526930 -1.058651 3.396318 -5.154042 -3.936100 -1.059080 -0.289798 1.349870 -1.241358 1.461947 -1.636474 0.617922 0.018144 1.516543 -0.482415 -2.859373 -1.134215 1.087392 3.565875 -0.482033 -1.366027 4.197107 -0.139080 -0.992363 -0.187702 -0.282129 0.366819 0.474198 -3.536452 -0.678443 -0.384598 1.943660 -3.046223 3.279803 -0.313983 0.462830 1.793317 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = 5.677955 -2.557692 -3.451745 8.477843 0.340298 0.461239 1.765712 1.414905 0.561132 -13.151614 -4.506108 7.488541 1.513836 1.423839 -0.474198 3.747581 2.650906 2.323361 -12.416514 -0.102309 2.358045 -0.158981 -2.109839 -0.171159 -0.344238 -3.788764 4.581073 3.235014 1.208763 8.007562 -2.819066 4.245154 7.412995 -1.045933 2.178541 5.848693 1.122426 -0.173446 -3.948136 -2.364845 10.961974 3.060534 -1.237314 3.548817 -1.025515 9.054716 2.092977 10.678550 2.003662 -4.091579 3.550355 -1.102171 -4.257663 -1.338354 -8.120583 1.452593 4.616287 4.663858 -4.035098 4.128054 -1.945315 1.875342 3.442703 1.906112 9.392924 4.009082 7.211637 7.198622 8.077908 -6.752408 1.557474 1.553436 1.035712 0.791604 6.227365 -5.116677 -4.533285 -4.473320 1.207896 -8.866949 -2.124360 -0.825474 11.145263 -7.125666 -1.491246 1.367683 2.538045 8.601679 -4.928076 2.260450 -9.024351 -0.557128 0.332170 12.241255 1.300419 1.574308 -1.852186 3.015141 0.197919 2.434219 2.176350 -7.572859 -2.122495 -11.168973 -4.938429 -5.535033 0.298348 3.345666 -8.953395 -0.734024 0.942555 6.429678 -12.299736 -0.505259 2.265755 2.745051 9.977026 4.462009 -4.177989 0.476925 0.464816 1.281961 3.876647 -4.069326 2.480191 -2.708292 1.863853 1.599574 2.206303 2.305237 -12.665742 -1.951884 2.914376 -1.710272 1.197386 3.962723 4.572081 -3.739161 4.305538 -5.830376 6.074498 -9.757124 -2.476625 -1.898422 -7.800533 -3.978678 10.091779 6.890996 6.039786 -0.460942 -4.299826 -1.252531 -10.389227 -14.590160 0.193829 0.962570 0.441943 2.815761 -2.049618 2.424043 -6.460866 1.885034 4.472910 -3.650121 -4.054754 -0.713047 4.955096 0.978204 -2.429263 -2.897508 -0.306778 0.537784 1.630453 8.863977 -2.567490 -13.674104 -12.184355 -4.427058 7.377286 -3.760818 0.097188 -3.317192 -3.240546 -7.848682 0.343549 -5.519474 1.347000 -0.610109 -4.690481 -10.020187 4.200182 -1.751100 -2.102304 2.611270 -7.400926 1.460807 3.156395 2.177153 1.054801 0.617606 0.333911 -7.750669 -6.063291 2.232358 -4.502566 9.539894 4.263351 -0.252819 -3.445855 -3.557455 -7.162037 6.094901 -7.254773 4.679712 0.643080 -3.192318 4.607305 -6.383286 -1.070412 -5.160838 4.052813 1.838611 -9.739945 12.196996 7.559428 -5.691384 -0.836366 -1.586653 3.560226 1.923425 5.666092 -6.756747 -5.697330 2.591707 0.068298 -0.195421 -1.403003 2.397752 -1.785031 -0.701574 -8.015658 -3.306145 5.849039 4.088353 -1.310001 0.452290 3.819042 -2.984601 0.784251 8.614708 3.774021 0.913516 -4.900668 -16.254092 3.784299 -1.552679 -2.217427 0.513755 -6.002261 -2.040540 3.240761 -3.977411 7.239832 0.349128 -3.121362 7.355971 -10.491063 -7.900075 -5.760194 -2.514495 1.521166 -0.764699 2.794058 -3.190389 1.439610 -0.852388 1.825496 -2.772707 -5.133954 0.614301 3.330303 6.602533 -0.385849 -1.275516 8.503129 1.321423 -1.709276 -1.712161 -0.353291 -2.122235 2.361463 -8.305874 -1.324528 1.064464 4.061499 -5.844191 2.681757 -0.883542 0.929170 2.052867 -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.369941 -0.524162 -0.035307 0.565710 0.186114 -0.233610 0.126630 0.052474 0.093058 -0.708760 -0.117065 0.183878 0.001833 -0.196630 0.100991 0.175940 0.259563 0.059824 -0.644355 0.255989 0.008691 -0.065203 -0.344466 -0.073791 -0.022221 -0.384650 0.334044 0.437152 -0.050210 0.435629 -0.298240 0.109432 0.368069 -0.022701 0.428867 0.483340 0.327346 -0.026955 -0.160006 0.229435 0.915407 0.217704 -0.152666 0.166392 0.353952 0.608382 0.227232 0.684466 0.265589 -0.153504 0.347346 -0.066073 -0.171083 -0.153739 -0.769905 0.153504 0.479632 0.218297 -0.536584 0.358908 -0.296414 0.123242 0.229062 0.337853 0.770174 0.098768 0.445005 0.368364 0.736235 -0.353709 -0.047803 0.252539 0.548397 0.106994 0.454192 -0.233341 -0.405662 -0.911919 0.045386 -0.280015 0.034195 -0.025063 0.308505 -0.402114 -0.035591 0.390425 0.002263 0.467174 -0.437654 -0.086608 -0.628382 0.041384 0.116223 0.920009 0.031601 0.150178 0.029719 0.341477 0.071996 0.354023 0.189433 -0.633363 -0.214005 -1.125700 -0.569314 -0.348560 -0.142876 -0.220017 -0.643683 -0.051019 0.395952 0.333932 -0.665098 0.082370 0.191028 0.063802 0.566459 -0.392432 -0.077943 0.034570 -0.013100 0.213804 0.212877 -0.237120 0.048868 -0.376942 0.419178 0.242637 0.225288 -0.053302 -0.336532 0.036663 0.191719 0.183360 -0.140103 0.020825 0.011436 -0.575832 0.268872 -0.413745 0.531346 -0.629651 -0.055837 -0.409766 -0.347557 -0.095970 0.868490 0.140824 0.491529 0.103673 -0.451131 0.028421 -0.678308 -1.295243 0.109954 -0.085185 0.004403 0.023577 -0.102553 -0.010729 -0.217803 -0.130328 0.308322 -0.413331 -0.188850 -0.132019 -0.130193 0.019390 -0.199008 -0.260683 0.061624 0.506191 0.303641 0.395101 -0.291415 -0.954255 -0.536562 -0.377860 0.392733 -0.163879 0.040948 -0.032207 -0.233387 -0.736240 0.345807 -0.374338 0.223436 -0.316924 -0.301544 -0.568033 0.079813 -0.212434 0.217168 -0.019200 -0.479619 0.152369 -0.232358 0.030434 0.061368 0.124683 0.082028 -0.679877 -0.639082 0.041580 0.046877 0.789800 0.012320 0.113878 -0.002271 -0.182448 -0.487416 0.391933 -0.704301 0.138229 0.341243 -0.600806 0.466866 -0.287578 -0.301532 -0.312406 0.352105 0.080726 -0.004847 0.976433 0.694661 -0.617535 -0.272154 -0.183979 0.223208 0.205429 0.748581 -0.393125 -0.110989 0.219991 0.170319 -0.086806 -0.115575 0.276734 -0.035662 0.257478 -0.669069 -0.428857 0.270543 0.514607 -0.053826 -0.048990 -0.030045 -0.094505 -0.381108 0.716478 0.109671 0.353194 -0.443142 -0.915614 0.194609 -0.134238 -0.046729 0.254596 -0.467795 -0.212762 -0.006867 0.030827 0.597640 0.383785 -0.095652 0.504345 -0.655174 -0.614672 -0.324531 -0.212688 0.009471 -0.300563 0.429901 -0.397063 0.001748 -0.261852 0.290966 -0.222196 -0.040626 -0.065609 0.106527 0.125790 0.175806 -0.320380 0.566621 0.042811 -0.213938 -0.159804 0.060823 -0.076578 0.419384 -0.286205 -0.277344 -0.279477 0.293215 -0.286937 0.396273 -0.109567 0.353193 0.168972 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = 2.537916 -1.358358 -1.287458 3.845332 0.334603 -0.159104 0.862240 0.996197 0.340061 -5.738163 -2.225814 3.337107 0.225659 0.069416 -0.011147 1.227534 1.330355 1.068431 -5.787754 0.322348 0.887210 -0.055866 -1.206365 -0.387735 -0.051903 -1.632496 1.615787 1.771909 0.451854 3.304170 -1.334398 1.335088 3.154837 -0.267233 1.218783 2.706556 0.471868 0.111317 -1.265955 -0.886052 5.125586 1.729426 -0.808830 1.875946 0.338347 3.979622 0.662328 4.760434 1.287286 -1.637714 1.598426 -0.544657 -1.847738 -0.645114 -3.752213 0.755940 2.591021 1.830637 -2.200518 1.996291 -0.923186 0.819772 1.454627 0.579378 4.289334 1.733312 3.172877 3.256117 3.670656 -2.797725 0.434422 0.815066 1.342744 0.536771 2.481855 -2.308013 -2.230550 -2.713791 0.446482 -4.094961 -0.859372 -0.465510 4.583140 -3.105535 -0.302989 0.962035 0.800312 3.604490 -2.260992 0.569842 -3.931523 -0.112154 0.075281 5.664634 0.526389 0.549700 -0.558157 1.545282 0.254230 1.403968 0.759572 -3.349325 -1.231945 -6.062279 -2.150263 -2.304548 0.060618 0.863695 -3.875615 -0.444959 1.022096 2.961143 -5.317119 -0.393236 1.195791 0.884601 3.532284 1.092988 -1.778570 0.247984 -0.038315 0.605896 1.787027 -1.738256 0.726914 -1.306395 1.005170 0.797690 1.070295 1.068423 -5.077117 -0.847836 1.317344 -0.278937 0.119814 1.355455 1.603517 -1.905563 1.941170 -2.596412 2.859877 -4.476472 -0.688245 -1.118139 -3.120374 -1.506211 4.215165 2.852982 2.825440 0.065014 -1.665026 -0.707009 -4.523262 -6.960664 0.599406 0.291584 0.515589 0.648485 -0.747929 0.813095 -2.576054 0.471684 1.731641 -1.605008 -1.497249 -0.511393 2.313155 0.258624 -1.155303 -1.385187 0.012000 0.916153 0.625839 3.398466 -1.416676 -5.936296 -4.971368 -2.008848 3.153396 -1.491134 0.062860 -1.109820 -1.207226 -3.468092 0.551845 -2.527322 0.778585 -0.689743 -2.106110 -4.253771 1.462797 -0.840892 -0.284501 0.914737 -3.081926 0.652933 1.263293 1.160918 0.351185 0.625387 0.450904 -3.702171 -2.739283 0.580820 -1.727080 4.466971 1.926460 -0.033717 -1.641088 -1.327097 -3.352476 2.929466 -3.446274 1.792266 0.237778 -1.725263 2.425366 -2.460506 -0.756546 -2.379908 1.830008 0.891258 -4.051465 5.308352 3.542674 -2.696523 -0.618208 -1.038483 1.338895 1.071433 3.080108 -3.110967 -2.159844 1.159927 -0.252236 -0.107330 -0.801870 1.334470 -0.541580 0.225436 -3.714744 -1.501958 2.616473 1.866818 -0.448463 0.464831 1.396457 -0.831068 0.095700 4.076449 1.457810 0.501220 -2.675206 -7.495339 1.693553 -0.169796 -0.723155 0.509065 -2.552908 -1.367607 0.944834 -1.281910 3.277300 0.596826 -1.218561 3.235110 -4.429421 -3.501854 -2.422902 -0.939809 0.665723 -0.821082 1.635663 -1.269154 0.564345 -0.530527 0.909341 -0.858747 -1.998279 -0.486867 1.203061 2.571375 0.217404 -1.001036 3.684324 0.379801 -1.282337 -0.639706 -0.222782 -0.802865 1.330917 -3.582983 -0.860500 -0.129960 1.691748 -2.474066 1.492800 -0.176250 0.880217 1.002592 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 1.582909 0.659377 -0.651551 1.534564 -0.121089 -1.025706 0.882178 1.336809 -0.047454 -2.785694 -1.229132 1.595060 0.491113 -0.721013 -0.098946 0.675364 0.321721 1.753508 -2.403303 0.487919 0.800023 0.747409 -1.046743 -1.176385 -0.240627 -0.441615 -1.052325 0.591959 0.267879 2.251266 -0.756097 0.018235 1.707978 -0.333572 0.269595 1.964112 1.056812 0.221563 0.344119 -0.292595 2.628676 1.277709 -0.425355 1.187365 0.502831 2.218824 -0.383664 1.987823 -1.869267 -0.993329 0.336224 -0.423624 -1.325444 -0.278352 -1.469749 0.959214 2.331404 1.904622 -1.155367 1.858852 -0.638213 0.385568 1.110957 -0.166982 1.575019 2.059029 0.230583 1.714010 3.036226 -1.484088 0.317465 0.154131 0.801466 -0.599120 1.389081 -0.693336 -0.900264 -1.998017 0.055666 -3.221822 0.030831 0.134941 4.374731 -2.398569 0.940484 1.782963 1.345261 1.659060 -1.515101 -0.434569 -1.628396 0.007674 -1.104420 4.040121 0.284578 0.761042 -0.828494 1.130147 0.586017 0.653615 -0.215168 -1.493173 -1.660206 -3.452059 -1.493249 -1.084564 -0.908517 0.271265 -2.213551 -1.095837 2.260834 2.165023 -3.692808 0.100182 1.092840 0.584630 1.043972 0.893883 -1.873595 0.937068 -0.906994 -0.406835 0.366794 -1.280262 -0.213555 -0.066970 -0.557915 0.258241 0.394326 0.251692 -3.666526 -0.183568 0.201039 -1.094042 -0.089742 0.604529 0.240883 -1.756040 0.974132 -2.123266 1.520478 -2.738776 -0.344716 -0.329012 -2.824711 -0.648024 1.532820 0.967216 1.050956 -0.405012 -0.805662 -1.014781 -2.438826 -3.220985 1.169077 -0.026644 1.029234 -0.070177 -0.351536 -0.641165 -1.341096 -0.207044 0.951237 -1.218280 -0.278872 -0.098908 4.802945 -0.509249 -0.809591 -1.597934 -0.047538 1.366563 0.888454 0.702944 -1.249245 -1.237416 -2.576338 -1.085337 1.932954 -0.462523 0.128763 -0.611989 -0.493275 -1.529646 0.453384 -1.275797 1.101023 -0.334690 -0.643568 -2.575708 0.841129 -0.364654 -1.252347 0.288749 -1.567682 0.443396 0.906248 -0.092937 -0.305175 -0.128007 0.859109 -2.239914 -1.913069 0.119313 -0.249796 1.640355 2.133196 0.864995 -1.027239 -0.333977 -2.001991 1.615408 -1.793607 0.702999 -0.119611 -0.536575 2.235845 -1.531350 -0.802696 -2.418262 1.076560 0.358385 -1.668976 3.224357 1.564857 -1.485100 -0.357570 -0.801629 0.675194 1.110766 2.239509 -1.735387 -1.505098 1.356089 -1.111174 -0.261990 -0.760064 0.860234 -0.722572 1.348159 -1.694568 -0.208651 1.367616 1.607669 -0.468463 1.023662 0.511440 -0.676373 0.046903 2.099852 1.142097 -0.208942 -1.712240 -2.846212 1.220963 -1.671827 0.201176 -0.384223 -0.680726 -0.861026 0.915065 0.358636 1.812247 0.822294 -0.717333 1.739496 -2.868982 -2.376237 -0.305460 0.404081 1.177881 -1.202439 0.702887 -0.978910 0.566525 0.167704 0.904928 0.366454 -1.438054 -1.188717 0.367532 1.952585 0.274385 -1.365947 2.581210 -0.191370 -0.808873 0.308348 -0.654551 0.692109 -0.042480 -1.048987 -0.212362 -0.453594 1.268567 -1.580547 2.453239 -0.160911 -0.088887 1.516572 -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) = 6.635570 -1.192502 -2.525433 6.567302 2.272162 -1.631568 1.486511 2.743671 1.117095 -9.509411 -5.994744 6.888327 0.607721 -2.169352 0.700815 2.207499 4.032813 2.339783 -10.403065 1.978218 0.679676 -1.131813 -4.838025 -1.203823 -0.352067 -3.503269 1.201781 3.917215 0.270692 6.303952 -2.898075 2.824573 4.927076 0.370289 5.024701 6.018578 -0.953744 -1.750552 -0.131820 -2.185745 10.712430 4.107564 0.035820 4.644469 3.055807 7.883689 -0.603743 8.924580 1.531271 -1.952460 3.798450 -0.491669 -4.050276 -0.047724 -8.925861 1.876805 4.668761 -0.165344 -5.111332 4.264303 -2.122197 1.969716 2.942219 -0.021047 8.732335 3.037201 4.183767 5.283029 8.449171 -4.337338 0.614262 2.203287 5.349190 1.952944 3.193920 -2.911366 -3.775762 -2.728651 0.527243 -8.081560 1.091846 -2.576368 11.181190 -5.626347 -0.304861 1.962113 1.775088 6.608474 -4.779105 -1.158470 -7.230075 0.359729 -1.533692 8.929190 0.567340 3.218965 -1.044753 2.305699 -0.908030 3.201045 -1.334319 -7.419098 -3.357275 -13.891159 -5.050692 -4.469502 -1.026292 -0.872585 -7.475933 -0.225067 1.172187 7.573325 -9.335724 -1.345332 1.805057 -0.559250 2.573966 2.991741 -4.475029 -0.989567 -0.509365 3.061091 2.015291 -2.345645 0.275658 -4.072661 0.653634 1.184853 3.021173 1.306224 -7.979095 -0.714631 2.920430 0.033284 -0.594510 1.940442 1.759487 -4.461804 3.253697 -4.413292 5.556973 -8.524293 -2.558657 -5.254520 -6.022035 -2.582713 7.601975 6.102942 7.336498 1.947144 -0.137869 -0.962763 -9.351743 -12.503402 1.955011 -2.316040 1.363705 -0.434690 -0.595794 0.343548 -4.645677 -0.895508 3.390862 -4.840323 -3.120510 -2.572802 7.455074 0.027283 -2.386432 -3.320308 -0.323187 3.276499 1.097052 4.544295 -3.711861 -10.662511 -8.027210 -4.058459 5.829525 -3.130649 0.686306 -1.467300 -1.545978 -4.922894 0.338076 -4.954393 0.974819 -2.939341 -2.952464 -7.821318 1.423894 -1.608847 -0.511022 0.653913 -6.050992 2.632146 5.492868 3.419781 -0.041636 2.492291 -0.175693 -6.195159 -5.619369 0.655737 -1.148280 8.420032 6.499738 0.186647 -3.219720 -2.390193 -7.108749 5.703819 -7.879644 3.458408 2.101485 -4.668422 4.996251 -5.250833 -2.446946 -4.499461 3.802253 0.432123 -10.740638 8.577786 6.719699 -7.479712 -2.032474 -5.227468 3.320097 1.794881 8.075845 -4.515763 -2.361351 2.540489 0.024590 -0.824791 -2.378084 2.960289 -0.195995 2.005992 -8.043398 -3.620938 6.306395 4.493982 -0.907381 0.349443 0.671969 0.103281 2.544922 8.245518 2.707456 1.336246 -6.630669 -15.386352 2.213308 0.799249 -0.731909 2.082976 -3.761376 -3.758299 -0.457924 -4.127846 7.094362 -0.075121 -1.319156 6.351441 -7.139423 -7.330574 -4.733504 -0.438721 1.772707 -2.627782 4.195848 -4.050700 0.295402 -2.435286 3.720589 -1.144995 -4.175800 -3.079468 2.876381 4.933307 1.798345 -2.279326 7.253274 1.128134 -2.462568 -1.312684 -0.786549 -0.878372 2.536770 -8.297760 -2.827607 -1.828937 2.970197 -4.830868 4.604345 0.796388 4.584143 2.335200 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.777776 -2.999311 -0.991508 2.920030 1.007219 -0.497005 0.651493 1.046947 0.608280 -5.295969 -2.408742 3.681753 0.088267 -0.785759 0.061096 0.841527 1.893551 1.069499 -6.091618 0.750642 0.207116 -0.405178 -1.841519 -0.674420 -0.023821 -1.479157 2.564783 1.847090 0.231060 2.731137 -1.338290 1.225105 2.092640 0.412590 2.247809 2.547730 -0.495939 -0.901169 -0.570954 -1.340550 5.769504 2.398681 -0.525057 2.223266 1.259632 3.467003 0.415708 4.937040 3.026458 -0.799773 2.295392 -0.748946 -1.899457 -0.300058 -5.150836 0.612561 1.989051 0.426050 -2.086652 1.746168 -0.595704 0.841519 1.209164 -0.099178 5.396973 0.769598 3.083534 2.201403 3.490796 -2.007946 0.241465 0.899308 2.527282 0.610044 2.171937 -2.530863 -1.974719 -4.715400 -0.016337 -5.000537 0.401668 -1.129944 3.859613 -2.308085 0.500979 0.508709 0.603926 2.820311 -1.849975 -0.612821 -4.428380 0.211557 0.782241 5.391014 0.389648 1.259967 -0.270023 0.866899 -0.412910 1.381015 0.982032 -3.371893 -0.687989 -7.856502 -1.736665 -2.154631 -0.316909 -0.426683 -3.433519 0.254969 0.699737 2.688182 -4.493092 -0.850963 0.752304 -0.431427 2.450250 -0.141171 -1.295052 0.233577 -0.121751 1.564523 0.990853 -1.412798 0.083252 -2.263738 1.330029 0.448258 1.446613 0.719412 -4.220839 -0.680050 1.398231 1.716942 -0.169112 0.850586 0.763957 -1.637559 1.342070 -2.591574 2.505963 -3.727274 -0.379084 -2.069125 -1.990854 -1.333460 5.663553 2.594016 3.690304 0.784234 -0.905108 -0.271624 -4.265018 -7.728505 1.102540 -0.928621 0.301480 0.079034 -0.224694 0.319325 -2.178130 -0.478141 1.589783 -2.007482 -1.463842 -0.978923 0.941141 0.080732 -0.936337 -1.342825 -0.010665 2.485370 0.698075 1.995832 -1.676330 -6.983480 -3.835875 -1.795152 2.560328 -1.547934 0.094303 -0.606910 -0.858164 -2.679182 0.118074 -2.214827 0.990524 -1.188151 -2.581155 -3.408654 0.623568 -0.855163 1.253614 0.499672 -2.649082 1.139298 1.011440 2.653179 -0.098299 1.108742 0.598390 -3.772281 -3.285458 0.280928 -0.612637 4.708122 1.332310 0.039774 -1.975814 -1.091462 -3.322724 2.419679 -5.151797 1.672969 0.816849 -3.295669 2.005979 -2.213260 -0.568507 -1.540260 1.721415 0.341929 -4.559707 4.799068 3.176833 -3.280235 -0.894348 -2.022935 1.330377 0.731476 3.388233 -2.243559 -1.257396 1.042627 0.031636 -0.279463 -1.023755 1.201640 0.121122 0.556095 -4.735613 -2.856675 2.684492 1.740552 -0.351846 -0.059302 0.552947 -0.093721 -0.788859 4.801769 1.127472 1.051961 -3.063294 -8.515022 0.972716 2.141327 -0.071829 1.304960 -2.913823 -1.600813 -0.047977 -1.594748 3.020669 1.321956 -1.457403 2.746040 -3.504676 -3.034402 -2.207997 -0.637407 0.802670 -0.891829 2.139718 -1.719788 -0.004362 -1.303852 1.497438 -0.875205 -1.366477 -0.624312 1.514265 2.059101 1.115842 -1.393990 3.092978 0.470127 -1.204945 -0.527074 -0.399087 -0.730239 2.172550 -3.923864 -1.097695 -0.587345 1.331403 -2.067910 1.757512 0.341038 2.118824 0.576646 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = 0.503384 -0.442033 -0.016704 0.583531 0.354192 -0.140758 0.110645 0.078847 0.027678 -0.910427 -0.423549 0.219075 -0.030347 -0.198112 0.225851 0.202886 0.454174 0.041077 -0.606977 0.218178 -0.003193 -0.180059 -0.428679 0.078644 -0.024570 -0.470429 0.109342 0.437643 -0.025578 0.487636 -0.343061 0.217807 0.426150 0.003676 0.503507 0.535610 0.225714 -0.135907 -0.030401 0.085285 1.161174 0.076184 0.057782 0.330583 0.447944 0.689962 -0.122942 1.117954 0.363612 -0.165746 0.721289 -0.360282 -0.180159 0.044331 -0.975349 0.257951 0.518657 0.049177 -0.637354 0.375024 -0.317706 0.209991 0.194528 0.101528 0.876415 0.305028 0.438238 0.421660 0.808798 -0.402822 -0.107755 0.403214 0.591147 0.279273 0.194128 -0.310303 -0.123048 -0.783170 0.059881 -0.250227 0.160719 -0.260190 0.807088 -0.411816 -0.162455 0.443272 -0.059155 0.527511 -0.403868 -0.017647 -0.758003 0.100678 0.124839 0.687235 -0.009623 0.186383 -0.029478 0.200092 -0.065937 0.461039 -0.036148 -0.627736 -0.583848 -1.324758 -0.802012 -0.316184 -0.035044 -0.278540 -0.811868 0.010817 0.407038 0.350542 -0.689006 -0.024837 0.170502 0.099670 0.360198 0.263210 -0.450819 -0.284412 0.091932 0.345457 0.160904 -0.048003 0.086076 -0.823928 0.327948 0.160376 0.340253 -0.134747 -0.424757 -0.031479 0.135862 0.123519 -0.179212 -0.050701 0.069184 -0.528928 0.360041 -0.244607 0.516361 -0.826507 -0.241876 -0.665280 -0.520527 -0.115280 1.245428 0.420459 0.817367 0.365934 -0.425074 -0.100534 -0.813649 -1.196296 -0.002391 -0.272752 0.187715 0.030951 -0.079222 0.061576 -0.223835 -0.192968 0.222457 -0.495428 -0.242035 -0.303517 0.077512 -0.091236 -0.223934 -0.494796 0.100511 0.571287 -0.043544 0.353063 -0.309159 -0.920811 -0.580598 -0.493261 0.425712 -0.239906 0.203526 0.012498 -0.087446 -0.754943 0.230935 -0.432019 0.051187 -0.357580 -0.493047 -0.650428 0.140677 -0.219924 0.035917 0.034905 -0.556623 0.248325 0.092925 0.332144 0.147735 0.240995 -0.131810 -0.798494 -0.818013 -0.120136 0.018052 0.824180 0.378445 0.043717 -0.068516 -0.319219 -0.630828 0.476649 -0.894609 0.140106 0.428463 -0.607230 0.415986 -0.435211 -0.286592 -0.423493 0.351257 0.091973 -0.770248 0.861728 0.633304 -0.770066 -0.389073 -0.573656 0.313181 0.169136 0.915096 -0.257697 0.089871 0.249134 0.240069 -0.102018 -0.224990 0.370804 0.041427 0.287505 -0.860133 -0.577399 0.440878 0.609462 -0.084537 -0.051934 0.068811 0.207146 -0.031826 0.868243 0.145129 0.180928 -0.423598 -1.375560 0.168834 0.259693 -0.119254 0.411520 -0.576834 -0.312768 -0.124354 -0.186746 0.711360 0.156687 0.210279 0.615091 -0.516108 -0.664118 -0.273634 -0.139400 0.027838 -0.411467 0.445984 -0.473000 -0.083799 -0.292615 0.326505 -0.134474 -0.179807 -0.454436 0.079552 0.288840 0.225184 -0.152817 0.613143 0.148133 -0.276209 -0.133044 0.086071 0.082677 0.495569 -0.559690 -0.358220 -0.328834 0.167200 -0.337504 0.416418 -0.038278 0.423588 0.212695 -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.775807 -0.229223 -0.042998 0.610374 0.297585 -0.304662 0.289447 0.382615 0.022039 -1.138406 -0.699726 0.505293 -0.008377 -0.376015 0.221702 0.175483 0.547974 0.277405 -0.803600 0.241901 0.028786 -0.051875 -0.716278 -0.032662 -0.083496 -0.425684 -0.352286 0.500494 -0.019355 0.707782 -0.338039 0.069909 0.560510 -0.068473 0.450653 0.797825 0.345781 -0.055643 0.240581 -0.003146 1.431707 0.237270 0.115551 0.640642 0.635044 0.891046 -0.404358 1.560100 0.025025 -0.258613 0.904880 -0.620016 -0.404957 0.064628 -1.062651 0.348725 0.913764 0.202886 -0.758964 0.731484 -0.337558 0.251142 0.290996 -0.052947 0.918423 0.770293 0.280656 0.515806 1.162274 -0.502992 -0.101213 0.429335 0.740669 0.263958 0.077801 -0.444490 -0.096216 -0.803770 0.096160 -0.670437 0.215659 -0.357998 1.615383 -0.659479 0.001035 0.671353 0.052309 0.533754 -0.537675 -0.179448 -0.814525 0.113346 -0.107989 1.078875 -0.063965 0.364604 -0.118192 0.239809 0.047391 0.540272 -0.280911 -0.677789 -0.968374 -1.757735 -0.922655 -0.334840 -0.225400 -0.321496 -0.952226 -0.236237 0.631969 0.496336 -1.041087 -0.099279 0.325052 0.086330 0.246986 0.839995 -0.873863 -0.243116 -0.037390 0.263917 0.170473 -0.125270 0.007974 -0.932889 0.082517 0.148602 0.334443 -0.100762 -0.979677 -0.031938 0.093153 -0.066869 -0.252523 -0.055236 -0.053084 -0.644369 0.460498 -0.483208 0.613486 -1.230142 -0.400956 -0.701171 -0.965804 -0.127654 1.421747 0.583861 1.042267 0.361535 -0.383794 -0.346688 -1.031852 -1.408322 0.222012 -0.359855 0.508610 -0.143535 -0.059395 -0.171831 -0.372329 -0.348266 0.232073 -0.552180 -0.137090 -0.406741 1.034820 -0.229729 -0.349620 -0.753642 0.164427 0.768246 -0.037141 0.201149 -0.493319 -0.995529 -0.728297 -0.536217 0.603844 -0.207222 0.233906 0.070829 -0.075865 -0.840924 0.171903 -0.511567 0.152863 -0.407590 -0.584536 -0.888841 0.239009 -0.213857 -0.138564 0.029078 -0.631642 0.234021 0.436855 0.550556 0.114861 0.307659 -0.018958 -1.023000 -1.050543 -0.226814 0.046452 0.969072 0.866891 0.189891 -0.139545 -0.235592 -0.943756 0.642275 -1.115967 0.128953 0.379730 -0.562505 0.734724 -0.546357 -0.347067 -0.815940 0.424993 0.149757 -1.325502 1.070035 0.711547 -0.938622 -0.509040 -0.784464 0.320102 0.338487 1.183122 -0.389989 -0.075472 0.480217 -0.061609 -0.120114 -0.403823 0.473702 0.053411 0.553652 -1.024332 -0.520391 0.681776 0.753549 -0.163092 0.115607 0.092302 0.257865 0.167071 1.102715 0.206717 -0.015962 -0.583779 -1.834570 0.335299 0.275579 -0.117864 0.363530 -0.617425 -0.494055 -0.030948 -0.199259 0.824773 0.185366 0.243841 0.759487 -0.689921 -0.902867 -0.199197 0.035289 0.263894 -0.626312 0.462611 -0.516765 0.025129 -0.193026 0.463181 0.121408 -0.427160 -0.892199 0.026674 0.539265 0.206302 -0.306578 0.895289 -0.014498 -0.350927 -0.007653 -0.057314 0.381625 0.475097 -0.727171 -0.365558 -0.529071 0.294427 -0.510687 0.843928 0.041123 0.448517 0.543739 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 4.368333 -0.981543 -1.598930 3.871161 0.876276 -1.878985 1.157191 2.260414 0.679223 -6.225357 -3.068766 5.022615 0.403670 -1.921865 -0.056802 1.465176 2.417659 2.377115 -7.382520 1.690130 0.536765 0.144530 -3.371931 -1.667229 -0.173231 -1.677734 0.784984 2.197628 0.295428 4.188221 -2.131159 1.087465 3.155040 -0.058443 3.167995 4.082848 -0.044372 -0.850952 0.298778 -1.312001 7.244672 3.232587 -0.166262 3.131805 2.321705 5.062577 0.044729 5.525035 0.953505 -1.357831 1.832057 -0.164341 -2.846789 -0.253361 -5.804921 1.251067 3.260097 1.074334 -3.480198 3.260034 -0.950881 1.209786 2.189886 0.197842 5.869232 2.128971 2.221331 3.437194 5.961256 -2.465603 0.723846 0.723198 3.776448 0.568508 2.990664 -2.417214 -2.688236 -3.835188 0.109170 -6.615004 1.068082 -1.005475 7.480864 -4.184896 1.305630 1.766860 1.625838 4.039404 -3.169642 -1.553741 -4.861558 0.168408 -1.180465 7.359492 0.178490 2.165540 -0.738561 1.954810 -0.272799 1.711108 -0.365552 -4.883507 -1.692764 -9.609533 -2.975809 -2.972327 -1.561842 -0.720469 -4.727052 -0.642100 1.737615 4.906283 -6.917057 -0.644802 1.280456 -0.813174 1.741197 0.817321 -2.480322 0.427653 -1.424181 1.628276 0.892694 -2.128707 -0.369018 -1.897265 0.018545 1.002282 1.869742 0.981744 -6.018106 -0.262250 1.738624 0.165385 -0.763121 1.382497 0.627202 -3.353092 2.002142 -3.876546 3.592648 -5.374978 -1.350277 -2.804292 -3.926276 -1.662724 4.996530 3.031686 4.084927 0.588004 -0.429132 -0.836065 -6.117849 -8.648547 2.241816 -1.603227 0.890898 -0.350509 -0.308340 -0.684469 -2.988546 -1.098940 2.195448 -3.204901 -1.711865 -1.645290 5.459739 -0.240341 -1.609618 -2.276118 -0.160938 3.235872 1.680541 2.152966 -2.945481 -6.938625 -5.296272 -2.337089 3.908548 -1.732977 0.388007 -0.806445 -1.150367 -2.964669 0.513199 -3.286402 1.444328 -2.223998 -1.442794 -5.132209 0.934388 -1.160117 -0.011616 0.000733 -3.690000 1.775728 2.498342 2.061470 -0.655174 1.125926 0.931099 -4.875136 -4.006521 0.604059 -0.312084 5.359091 3.766849 0.813093 -2.520646 -1.029374 -4.586066 3.476125 -5.782813 2.186300 1.329843 -3.429748 3.951308 -3.285025 -1.291660 -3.205006 2.633455 0.260151 -6.080186 6.586690 4.402362 -4.906115 -1.034022 -2.917712 2.154636 1.549359 5.177266 -3.264253 -2.089394 2.099309 -0.920069 -0.549748 -1.754425 1.859764 -0.266764 2.120695 -5.443953 -2.071200 4.036001 2.879641 -0.635392 0.384750 0.137335 -0.760149 0.375204 5.860545 1.739451 1.446307 -4.644921 -9.673630 1.610307 0.338569 0.420127 1.034612 -2.180311 -2.283659 0.043640 -1.642568 4.438466 0.914670 -1.497395 3.865382 -5.606064 -5.035126 -2.589696 -0.028785 1.625475 -1.837574 2.741133 -2.623052 0.238612 -1.528007 2.933293 -0.537920 -2.287198 -1.777172 1.956980 3.119082 1.522297 -2.637290 4.939642 0.121050 -1.689030 -0.269461 -0.904445 -0.005172 1.531929 -4.567217 -1.568442 -1.409360 2.397957 -3.414374 4.058708 0.286966 2.955246 1.726016 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.991242 -1.112758 -0.333262 1.847642 0.680933 -0.777154 0.555595 0.973787 0.431424 -3.156679 -1.345515 2.237413 0.013854 -0.823867 0.049166 0.536436 1.333421 0.969726 -3.733804 0.780755 0.188974 0.071760 -1.465220 -0.739187 0.004843 -0.920828 0.807417 1.255536 0.175369 1.923963 -1.136355 0.412103 1.475634 0.106131 1.659635 1.969543 0.268701 -0.473137 -0.086504 -0.572022 3.792644 1.481970 -0.181212 1.537566 1.268749 2.436085 0.320249 2.819254 1.173385 -0.621950 1.032190 -0.513328 -1.286481 -0.257584 -3.118196 0.637327 1.632476 0.661557 -1.827171 1.507175 -0.324752 0.566286 0.947398 0.099719 2.987196 0.740899 1.190089 1.506743 2.831832 -1.303121 0.128211 0.528902 2.047130 0.517077 1.436264 -1.476549 -1.237749 -2.919529 0.051031 -3.067398 0.484322 -0.578818 2.952262 -1.837710 0.704482 1.001205 0.326532 1.803554 -1.376813 -0.779553 -2.625599 0.153820 -0.090365 3.580553 0.036960 0.836049 -0.053469 0.909506 -0.084001 1.050200 0.216875 -2.378982 -0.752479 -4.982435 -1.420449 -1.436681 -0.599879 -0.541231 -2.199418 -0.168059 0.893050 1.977702 -3.150075 -0.360716 0.621561 -0.297273 0.791571 -0.337695 -0.788958 0.098445 -0.536388 0.880012 0.470561 -1.158538 -0.167255 -1.127002 0.289658 0.546296 1.001384 0.301932 -2.373224 -0.254800 0.780649 0.559415 -0.470908 0.399217 0.168091 -1.639871 0.984332 -1.860511 1.804123 -2.426736 -0.443246 -1.401892 -1.452998 -0.786970 3.135399 1.076239 2.057474 0.499874 -0.546282 -0.302099 -2.724371 -4.543860 1.072891 -0.698775 0.429344 -0.011410 -0.179611 -0.190700 -1.328379 -0.734867 0.860234 -1.519369 -0.847060 -0.783874 1.433082 -0.177387 -0.701491 -1.127727 0.195636 2.003798 0.708818 0.994420 -1.464237 -3.587815 -2.315805 -1.290175 1.800270 -0.878214 0.189745 -0.214048 -0.538430 -1.631275 0.468579 -1.607396 0.772257 -1.159177 -1.057999 -2.416676 0.435303 -0.744200 0.478836 0.184170 -1.787862 0.864327 0.562158 1.291104 -0.251037 0.569036 0.500207 -2.684637 -2.200767 0.064018 -0.029586 2.823140 1.156810 0.353639 -1.144908 -0.619902 -2.023835 1.664868 -3.028770 0.955656 0.736762 -1.980638 1.797905 -1.455910 -0.497750 -1.451627 1.315401 0.338100 -2.492774 3.328584 2.202040 -2.428754 -0.732227 -1.422422 0.928245 0.734279 2.639858 -1.546127 -0.915782 1.027056 -0.249457 -0.265864 -0.967087 0.933417 0.087659 1.018767 -2.935304 -1.394579 1.725146 1.461142 -0.276305 0.142045 0.256331 -0.085036 -0.329123 3.170372 0.682147 0.979971 -2.193052 -4.823227 0.793854 0.938731 0.346053 0.766607 -1.393336 -1.115558 -0.020229 -0.465183 2.167515 1.076144 -0.547656 1.922808 -2.548207 -2.334046 -1.171530 -0.287823 0.717124 -0.927375 1.394367 -1.361871 0.016077 -0.948693 1.291962 -0.371964 -0.730284 -0.794452 0.870646 1.274740 0.878862 -1.190936 2.311773 0.086331 -0.946351 -0.088492 -0.306517 -0.003459 1.087451 -1.937041 -0.808148 -0.746248 1.041992 -1.494100 1.801078 0.058698 1.477370 0.613250 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 2.089074 -1.200286 -0.496991 1.968602 0.611392 -0.641742 0.614628 0.956360 0.474723 -3.163177 -1.586861 1.843797 0.128607 -0.744445 0.260317 0.608068 1.316429 0.708094 -3.389386 0.644438 0.154374 -0.164514 -1.598129 -0.379796 -0.123659 -1.107445 0.463389 1.323582 0.049715 1.979216 -0.942471 0.525907 1.556033 -0.079497 1.479978 2.008394 0.316396 -0.310012 -0.018332 -0.312332 3.716112 1.405479 -0.293581 1.482086 1.185643 2.496499 -0.091641 3.479277 0.632205 -0.678006 1.595593 -0.785242 -1.253771 -0.160495 -3.005040 0.638586 2.108210 0.558366 -1.812033 1.635263 -0.682605 0.624890 0.940192 0.248603 2.972215 1.152129 1.455415 1.562208 2.834649 -1.415518 0.104129 0.711978 1.860816 0.462489 1.182269 -1.396797 -1.152103 -2.430867 0.264207 -2.593592 0.361068 -0.726528 3.153182 -1.841726 0.267611 1.081811 0.340898 1.842518 -1.560488 -0.477916 -2.464641 0.128280 -0.080782 3.655674 0.007863 0.956084 -0.151334 0.928534 -0.026239 1.102857 0.082810 -2.305907 -1.257005 -4.832164 -1.771770 -1.341898 -0.500537 -0.437824 -2.420869 -0.265189 0.961144 1.616373 -3.076103 -0.237146 0.675005 -0.042409 1.424622 0.560160 -1.266335 -0.063322 -0.268715 0.833659 0.646155 -0.926216 0.091491 -1.597377 0.565610 0.619911 0.892270 0.244256 -2.677435 -0.090530 0.762636 0.357587 -0.410896 0.433042 0.256921 -1.687058 1.102057 -1.755998 1.837970 -2.931273 -0.669256 -1.559617 -1.905850 -0.683494 3.224125 1.406116 2.374461 0.584091 -0.753123 -0.377192 -2.957883 -4.640024 0.718353 -0.578275 0.603564 -0.153308 -0.232405 -0.133394 -1.354218 -0.513769 0.896716 -1.490951 -0.770598 -0.774390 1.920436 -0.126165 -0.828227 -1.171445 0.183817 1.721475 0.505985 1.243975 -1.259180 -3.699457 -2.467210 -1.263761 1.814724 -0.813960 0.263901 -0.192968 -0.545098 -2.127742 0.405577 -1.532719 0.677168 -1.031088 -1.299359 -2.477394 0.534901 -0.609254 0.379031 0.199561 -1.873990 0.719913 0.836296 1.355800 0.016439 0.726703 0.355215 -2.593557 -2.337591 0.009939 -0.191441 3.072433 1.397229 0.224606 -0.596439 -0.634320 -2.325529 1.733889 -2.971946 0.864574 0.746113 -1.806350 1.754395 -1.572804 -0.842665 -1.748321 1.246601 0.313483 -2.409324 3.308899 2.206604 -2.398369 -0.841132 -1.502888 0.975496 0.701224 2.718854 -1.481360 -0.830224 0.996016 -0.113638 -0.260721 -0.873574 1.003702 0.023841 0.890016 -2.794675 -1.377282 1.838028 1.582239 -0.315194 0.194209 0.265217 -0.021860 -0.153620 2.995940 0.688024 0.549375 -2.015465 -4.996793 0.847750 0.437747 -0.149840 0.652935 -1.652733 -1.164653 -0.009013 -0.506884 2.180706 1.021340 -0.316926 2.023156 -2.494308 -2.398311 -1.265228 -0.241101 0.608855 -1.033242 1.258656 -1.325499 0.182094 -0.747262 1.236839 -0.252729 -1.066508 -1.117147 0.680594 1.359256 0.518040 -1.083592 2.384211 0.121258 -0.836077 -0.278513 -0.228939 -0.014754 1.214206 -2.019034 -0.851929 -0.843578 1.044468 -1.508502 1.728846 0.126452 1.383702 0.877641 -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.310481 -0.103199 0.053779 0.432740 0.220050 -0.298273 0.168814 0.201348 -0.010849 -0.730045 -0.207162 0.097125 -0.003488 -0.230606 0.076036 0.112271 0.248203 0.388965 -0.566240 0.223912 0.138051 0.143272 -0.233513 -0.271552 -0.008416 -0.224061 -0.066878 0.292688 0.064058 0.513189 -0.362178 -0.008924 0.397180 0.032941 0.368609 0.531874 0.458941 -0.035189 0.028930 0.071917 0.913984 0.211245 -0.084471 0.252295 0.365582 0.602810 0.103543 0.361110 -0.170110 -0.196771 0.062591 -0.271924 -0.183597 -0.101316 -0.647766 0.294651 0.523297 0.470086 -0.544985 0.427811 -0.124469 0.120804 0.245104 0.013369 0.547437 0.217226 0.085782 0.392158 0.816849 -0.356821 -0.036172 0.129404 0.477027 -0.008992 0.327844 -0.121508 -0.171921 -1.000257 -0.030029 -0.622619 0.126277 0.046264 0.664304 -0.523892 0.270188 0.609080 0.073805 0.400760 -0.350657 -0.249471 -0.601900 0.038479 -0.059420 0.857827 0.083581 0.082377 -0.038340 0.346160 0.121678 0.319051 0.058583 -0.516493 -0.386278 -1.174338 -0.506281 -0.305148 -0.222357 -0.188583 -0.549999 -0.235831 0.634796 0.586856 -0.813462 0.058109 0.227638 0.095699 0.002149 -0.415863 -0.249897 0.130508 -0.239881 0.030210 0.070971 -0.320409 -0.097711 -0.192529 0.066706 0.107405 0.243374 -0.056213 -0.396594 -0.042590 0.066353 -0.011493 -0.188217 -0.014071 -0.049997 -0.568503 0.269494 -0.495660 0.471785 -0.528971 0.053115 -0.259318 -0.531861 -0.129420 0.687998 0.026011 0.284633 0.077622 -0.357402 -0.124140 -0.571700 -1.058901 0.356677 -0.077762 0.214414 0.044760 -0.105105 -0.124149 -0.250125 -0.248956 0.266290 -0.416848 -0.146904 -0.115174 0.467320 -0.147814 -0.202771 -0.446451 0.109310 0.696149 0.219713 0.129248 -0.460122 -0.282872 -0.480029 -0.403062 0.440463 -0.160851 0.095833 -0.030301 -0.109408 -0.545427 0.351406 -0.409918 0.292198 -0.324534 -0.211185 -0.629131 0.093222 -0.236837 -0.041712 0.069955 -0.426301 0.233505 -0.119907 -0.074522 -0.090533 -0.017214 0.195658 -0.651787 -0.606418 -0.044271 0.097195 0.473128 0.231038 0.238078 -0.248139 -0.161347 -0.395804 0.456703 -0.523083 0.136086 0.209721 -0.408259 0.560264 -0.305604 -0.248414 -0.428813 0.357940 0.146149 -0.191919 0.842606 0.521576 -0.575022 -0.231135 -0.313729 0.197633 0.268830 0.784091 -0.385622 -0.160702 0.352861 -0.105440 -0.090308 -0.307392 0.267199 -0.041640 0.453820 -0.652504 -0.324821 0.261201 0.523514 -0.083655 0.186943 0.092600 0.000242 -0.268593 0.754414 0.183648 0.264044 -0.467833 -0.619416 0.258464 -0.135053 0.219962 0.110556 -0.247583 -0.200144 0.043092 0.152560 0.570952 0.482906 -0.083088 0.518875 -0.652004 -0.624551 -0.073534 -0.022251 0.227185 -0.434644 0.344465 -0.392254 0.021156 -0.204912 0.310170 0.009334 -0.118656 -0.324511 0.080421 0.282573 0.218062 -0.347727 0.632068 -0.039638 -0.306267 0.081779 -0.050817 0.212576 0.216152 -0.203696 -0.247844 -0.251700 0.266195 -0.349664 0.603485 -0.173267 0.179226 0.309277 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 1.582909 0.659377 -0.651551 1.534564 -0.121089 -1.025706 0.882178 1.336809 -0.047454 -2.785694 -1.229132 1.595060 0.491113 -0.721013 -0.098946 0.675364 0.321721 1.753508 -2.403303 0.487919 0.800023 0.747409 -1.046743 -1.176385 -0.240627 -0.441615 -1.052325 0.591959 0.267879 2.251266 -0.756097 0.018235 1.707978 -0.333572 0.269595 1.964112 1.056812 0.221563 0.344119 -0.292595 2.628676 1.277709 -0.425355 1.187365 0.502831 2.218824 -0.383664 1.987823 -1.869267 -0.993329 0.336224 -0.423624 -1.325444 -0.278352 -1.469749 0.959214 2.331404 1.904622 -1.155367 1.858852 -0.638213 0.385568 1.110957 -0.166982 1.575019 2.059029 0.230583 1.714010 3.036226 -1.484088 0.317465 0.154131 0.801466 -0.599120 1.389081 -0.693336 -0.900264 -1.998017 0.055666 -3.221822 0.030831 0.134941 4.374731 -2.398569 0.940484 1.782963 1.345261 1.659060 -1.515101 -0.434569 -1.628396 0.007674 -1.104420 4.040121 0.284578 0.761042 -0.828494 1.130147 0.586017 0.653615 -0.215168 -1.493173 -1.660206 -3.452059 -1.493249 -1.084564 -0.908517 0.271265 -2.213551 -1.095837 2.260834 2.165023 -3.692808 0.100182 1.092840 0.584630 1.043972 0.893883 -1.873595 0.937068 -0.906994 -0.406835 0.366794 -1.280262 -0.213555 -0.066970 -0.557915 0.258241 0.394326 0.251692 -3.666526 -0.183568 0.201039 -1.094042 -0.089742 0.604529 0.240883 -1.756040 0.974132 -2.123266 1.520478 -2.738776 -0.344716 -0.329012 -2.824711 -0.648024 1.532820 0.967216 1.050956 -0.405012 -0.805662 -1.014781 -2.438826 -3.220985 1.169077 -0.026644 1.029234 -0.070177 -0.351536 -0.641165 -1.341096 -0.207044 0.951237 -1.218280 -0.278872 -0.098908 4.802945 -0.509249 -0.809591 -1.597934 -0.047538 1.366563 0.888454 0.702944 -1.249245 -1.237416 -2.576338 -1.085337 1.932954 -0.462523 0.128763 -0.611989 -0.493275 -1.529646 0.453384 -1.275797 1.101023 -0.334690 -0.643568 -2.575708 0.841129 -0.364654 -1.252347 0.288749 -1.567682 0.443396 0.906248 -0.092937 -0.305175 -0.128007 0.859109 -2.239914 -1.913069 0.119313 -0.249796 1.640355 2.133196 0.864995 -1.027239 -0.333977 -2.001991 1.615408 -1.793607 0.702999 -0.119611 -0.536575 2.235845 -1.531350 -0.802696 -2.418262 1.076560 0.358385 -1.668976 3.224357 1.564857 -1.485100 -0.357570 -0.801629 0.675194 1.110766 2.239509 -1.735387 -1.505098 1.356089 -1.111174 -0.261990 -0.760064 0.860234 -0.722572 1.348159 -1.694568 -0.208651 1.367616 1.607669 -0.468463 1.023662 0.511440 -0.676373 0.046903 2.099852 1.142097 -0.208942 -1.712240 -2.846212 1.220963 -1.671827 0.201176 -0.384223 -0.680726 -0.861026 0.915065 0.358636 1.812247 0.822294 -0.717333 1.739496 -2.868982 -2.376237 -0.305460 0.404081 1.177881 -1.202439 0.702887 -0.978910 0.566525 0.167704 0.904928 0.366454 -1.438054 -1.188717 0.367532 1.952585 0.274385 -1.365947 2.581210 -0.191370 -0.808873 0.308348 -0.654551 0.692109 -0.042480 -1.048987 -0.212362 -0.453594 1.268567 -1.580547 2.453239 -0.160911 -0.088887 1.516572 -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.369941 -0.524162 -0.035307 0.565710 0.186114 -0.233610 0.126630 0.052474 0.093058 -0.708760 -0.117065 0.183878 0.001833 -0.196630 0.100991 0.175940 0.259563 0.059824 -0.644355 0.255989 0.008691 -0.065203 -0.344466 -0.073791 -0.022221 -0.384650 0.334044 0.437152 -0.050210 0.435629 -0.298240 0.109432 0.368069 -0.022701 0.428867 0.483340 0.327346 -0.026955 -0.160006 0.229435 0.915407 0.217704 -0.152666 0.166392 0.353952 0.608382 0.227232 0.684466 0.265589 -0.153504 0.347346 -0.066073 -0.171083 -0.153739 -0.769905 0.153504 0.479632 0.218297 -0.536584 0.358908 -0.296414 0.123242 0.229062 0.337853 0.770174 0.098768 0.445005 0.368364 0.736235 -0.353709 -0.047803 0.252539 0.548397 0.106994 0.454192 -0.233341 -0.405662 -0.911919 0.045386 -0.280015 0.034195 -0.025063 0.308505 -0.402114 -0.035591 0.390425 0.002263 0.467174 -0.437654 -0.086608 -0.628382 0.041384 0.116223 0.920009 0.031601 0.150178 0.029719 0.341477 0.071996 0.354023 0.189433 -0.633363 -0.214005 -1.125700 -0.569314 -0.348560 -0.142876 -0.220017 -0.643683 -0.051019 0.395952 0.333932 -0.665098 0.082370 0.191028 0.063802 0.566459 -0.392432 -0.077943 0.034570 -0.013100 0.213804 0.212877 -0.237120 0.048868 -0.376942 0.419178 0.242637 0.225288 -0.053302 -0.336532 0.036663 0.191719 0.183360 -0.140103 0.020825 0.011436 -0.575832 0.268872 -0.413745 0.531346 -0.629651 -0.055837 -0.409766 -0.347557 -0.095970 0.868490 0.140824 0.491529 0.103673 -0.451131 0.028421 -0.678308 -1.295243 0.109954 -0.085185 0.004403 0.023577 -0.102553 -0.010729 -0.217803 -0.130328 0.308322 -0.413331 -0.188850 -0.132019 -0.130193 0.019390 -0.199008 -0.260683 0.061624 0.506191 0.303641 0.395101 -0.291415 -0.954255 -0.536562 -0.377860 0.392733 -0.163879 0.040948 -0.032207 -0.233387 -0.736240 0.345807 -0.374338 0.223436 -0.316924 -0.301544 -0.568033 0.079813 -0.212434 0.217168 -0.019200 -0.479619 0.152369 -0.232358 0.030434 0.061368 0.124683 0.082028 -0.679877 -0.639082 0.041580 0.046877 0.789800 0.012320 0.113878 -0.002271 -0.182448 -0.487416 0.391933 -0.704301 0.138229 0.341243 -0.600806 0.466866 -0.287578 -0.301532 -0.312406 0.352105 0.080726 -0.004847 0.976433 0.694661 -0.617535 -0.272154 -0.183979 0.223208 0.205429 0.748581 -0.393125 -0.110989 0.219991 0.170319 -0.086806 -0.115575 0.276734 -0.035662 0.257478 -0.669069 -0.428857 0.270543 0.514607 -0.053826 -0.048990 -0.030045 -0.094505 -0.381108 0.716478 0.109671 0.353194 -0.443142 -0.915614 0.194609 -0.134238 -0.046729 0.254596 -0.467795 -0.212762 -0.006867 0.030827 0.597640 0.383785 -0.095652 0.504345 -0.655174 -0.614672 -0.324531 -0.212688 0.009471 -0.300563 0.429901 -0.397063 0.001748 -0.261852 0.290966 -0.222196 -0.040626 -0.065609 0.106527 0.125790 0.175806 -0.320380 0.566621 0.042811 -0.213938 -0.159804 0.060823 -0.076578 0.419384 -0.286205 -0.277344 -0.279477 0.293215 -0.286937 0.396273 -0.109567 0.353193 0.168972 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.501260 -0.666371 0.077081 0.618368 0.438012 -0.097554 0.083165 0.034742 0.106437 -0.945958 -0.363623 0.118163 -0.066841 -0.153198 0.255173 0.197138 0.477446 -0.059077 -0.713202 0.240614 -0.006255 -0.190242 -0.300246 0.092563 0.026949 -0.528071 0.315335 0.481996 -0.015094 0.462934 -0.397215 0.232394 0.428100 0.032419 0.551666 0.516438 0.254579 -0.176835 -0.138836 0.124402 1.211914 0.057466 0.012175 0.303150 0.454280 0.695076 0.001746 1.158903 0.649988 -0.160121 0.758773 -0.410736 -0.164670 0.006699 -1.046758 0.279253 0.522094 0.049381 -0.666891 0.302436 -0.294160 0.209160 0.174370 0.149066 0.916238 0.195385 0.540029 0.396358 0.812226 -0.433612 -0.152170 0.456690 0.658842 0.371971 0.271255 -0.428506 -0.165882 -0.995816 0.072137 -0.133757 0.138340 -0.306053 0.517241 -0.374076 -0.186036 0.452511 -0.158888 0.557404 -0.376060 0.029100 -0.817347 0.134831 0.277035 0.684045 -0.052227 0.135428 0.044054 0.204468 -0.084346 0.516014 0.142491 -0.665128 -0.527050 -1.341493 -0.809424 -0.343725 0.040443 -0.300184 -0.838954 0.127328 0.341118 0.223400 -0.630389 -0.022129 0.161357 0.149634 0.460925 0.036538 -0.278573 -0.358718 0.157291 0.410247 0.157250 -0.112476 0.103155 -0.884793 0.454614 0.225763 0.365533 -0.198209 -0.204717 -0.053750 0.135979 0.284888 -0.173632 -0.083159 0.094183 -0.586814 0.364742 -0.213368 0.543334 -0.772441 -0.239671 -0.701296 -0.339251 -0.126599 1.416548 0.295426 0.816918 0.434614 -0.515596 -0.052446 -0.762398 -1.251407 -0.080055 -0.264195 0.130604 0.113560 -0.090670 0.144033 -0.178136 -0.211049 0.149449 -0.509229 -0.283687 -0.304843 -0.374254 -0.091106 -0.177332 -0.464030 0.136287 0.639816 -0.067416 0.423041 -0.273059 -1.042503 -0.548422 -0.561898 0.412245 -0.273991 0.209713 0.001772 -0.077896 -0.820853 0.302144 -0.449557 0.036030 -0.364331 -0.593400 -0.641655 0.136634 -0.273314 0.222530 0.079449 -0.594245 0.258974 -0.127458 0.418669 0.180443 0.254491 -0.174338 -0.924014 -0.883866 -0.164169 0.030736 0.938784 0.111259 -0.007139 -0.012985 -0.384922 -0.553009 0.479570 -0.949008 0.132035 0.456161 -0.681241 0.368824 -0.390561 -0.266253 -0.418367 0.364978 0.117561 -0.550432 0.944206 0.667355 -0.791364 -0.424911 -0.571643 0.312905 0.151716 0.943745 -0.254009 0.097558 0.214499 0.360263 -0.113983 -0.243976 0.391131 0.055346 0.254607 -0.908545 -0.693469 0.356112 0.643136 -0.079362 -0.094225 0.120336 0.245913 -0.176940 0.917926 0.113486 0.284907 -0.429873 -1.408129 0.145046 0.455543 -0.097640 0.480122 -0.716629 -0.313331 -0.137705 -0.070530 0.757047 0.330792 0.318428 0.633150 -0.506934 -0.646041 -0.293120 -0.240397 -0.037664 -0.371517 0.450638 -0.513991 -0.129228 -0.353294 0.286519 -0.227979 -0.090630 -0.364106 0.086791 0.231035 0.262304 -0.112643 0.588020 0.225245 -0.298368 -0.160576 0.142377 -0.002871 0.552508 -0.433217 -0.355449 -0.303800 0.117402 -0.295994 0.337517 -0.061087 0.445743 0.068338 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 0.788300 0.132325 -0.543517 2.111349 -0.098203 -1.176547 0.493026 0.683421 -0.571596 -2.174863 -0.322029 0.421782 0.013418 -0.317834 -0.111351 0.572234 0.086948 0.475631 -2.657502 0.622138 0.608435 0.149905 -0.806330 -0.985153 0.220535 0.030469 -0.030170 1.251496 -0.070890 1.634043 -0.967055 0.533453 1.142164 0.319879 0.866788 0.973984 0.388101 0.523727 0.138581 -0.011653 1.696493 0.989119 -1.349765 0.092852 0.403180 1.900001 0.634444 0.489559 -2.329057 -0.457020 -0.335083 0.123122 -0.651103 -0.463699 -1.287245 0.425375 1.938147 2.058089 -0.916137 1.107121 -1.138541 0.505912 1.095358 0.688913 2.371894 1.086306 1.064924 1.674770 2.280985 -1.197762 0.526827 -0.194814 1.168865 -0.915981 0.099443 -0.260590 -1.026481 -2.596101 0.018901 -3.220076 -0.263150 0.710051 1.883668 -1.488412 0.486551 0.319447 0.623310 1.630571 -2.205702 0.211116 -1.719442 -0.194978 -0.755759 3.742367 0.177387 0.387967 0.013049 1.611154 0.689528 0.671791 -0.372272 -1.190367 -0.339496 -2.833090 -0.958540 -0.387759 -0.789286 0.013396 -2.002196 -0.743606 1.731892 1.545730 -2.893194 -0.375846 0.350696 0.345905 0.778257 -0.473036 -0.875923 1.216308 -1.223222 -0.063828 0.832176 -0.821359 0.444634 -0.307815 -0.299448 0.535489 0.805488 1.167567 -3.236880 0.376070 0.714032 -1.425068 -0.050810 0.852884 -0.104199 -0.628376 0.607107 -2.147852 1.723249 -2.344204 0.197875 -0.367549 -2.102220 -0.079338 0.086603 1.445316 -0.249412 -0.264208 -0.446759 -0.133780 -2.400147 -3.416316 0.924304 0.796367 0.200450 -0.295841 -0.473153 -0.140161 -1.318448 -0.371730 1.964389 -1.350615 -1.115549 -0.976694 3.040467 0.595288 -0.541078 -0.458340 0.037797 1.323124 0.436124 1.253972 -1.163485 -1.226121 -2.837124 -0.763382 1.372492 -0.407950 -0.622255 -0.558016 -0.282405 -2.392680 1.200429 -1.184876 1.094776 -0.360923 -0.102367 -2.070495 0.686690 -0.302990 -0.308666 -0.103554 -1.009007 0.340697 0.362651 -0.552099 -0.259899 0.267199 1.120416 -0.872781 -1.541369 0.859985 0.341467 1.292802 0.854184 0.444825 -0.640539 -0.532917 -1.553885 2.115646 -0.296075 0.960904 0.223242 -0.342132 1.900569 -1.172295 -0.789633 -0.862524 1.054602 0.395306 -0.272730 2.710880 1.711904 -1.580858 -0.360868 -0.933354 1.008059 0.709842 1.921252 -1.796225 -1.216741 0.743509 0.069972 -0.408702 -0.287633 0.510416 -0.375754 0.588073 -1.496466 -0.447876 0.920852 0.848340 -0.068325 0.718632 -0.303009 -1.302096 -0.770290 1.952255 0.787388 0.337999 -1.303972 -1.728996 0.359764 -1.927594 0.388207 -0.567793 -0.614083 -0.851153 0.123190 0.153576 1.737622 1.328918 -2.196055 1.498479 -2.660680 -1.673379 -1.061326 0.521259 0.233408 -1.037953 0.791051 -0.762997 0.270826 0.446467 0.967498 -0.064282 -1.171350 -0.741776 0.042564 1.329351 -0.551803 -1.657866 1.944743 -0.189879 -0.519170 -0.583196 0.267278 -0.338691 0.419794 -1.297473 -0.666256 -0.408123 1.371550 -1.524370 1.629659 0.342174 0.265078 1.042525 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = 0.357119 -0.473875 0.040887 0.505631 0.344094 -0.071902 0.060538 -0.013494 0.034904 -0.755546 -0.293890 0.087950 -0.050863 -0.119876 0.207064 0.166462 0.387374 -0.018339 -0.490203 0.178826 -0.007883 -0.173594 -0.262872 0.092324 0.003659 -0.429313 0.229175 0.384159 -0.015517 0.376396 -0.316464 0.212319 0.343359 0.037737 0.452172 0.410232 0.211901 -0.140593 -0.114272 0.101587 0.969118 0.008005 0.034537 0.222940 0.357122 0.561180 -0.006983 0.855882 0.466215 -0.125732 0.581544 -0.296389 -0.098994 0.016874 -0.846243 0.212405 0.359798 0.031619 -0.537339 0.244410 -0.258708 0.174454 0.137924 0.108856 0.746105 0.136390 0.417864 0.334670 0.628268 -0.346223 -0.115494 0.358167 0.502296 0.273858 0.194192 -0.254331 -0.106546 -0.769703 0.031871 -0.105611 0.122741 -0.207862 0.459710 -0.294500 -0.174695 0.362171 -0.123162 0.448268 -0.303375 0.019018 -0.666796 0.095904 0.206300 0.489621 0.008258 0.094947 0.014566 0.162723 -0.071889 0.403686 0.064827 -0.535208 -0.422076 -1.080835 -0.673370 -0.274213 0.027756 -0.249652 -0.668685 0.079649 0.317332 0.262095 -0.510195 -0.009993 0.120440 0.109907 0.307009 0.014462 -0.254927 -0.268868 0.123812 0.328446 0.143242 -0.052869 0.092626 -0.697203 0.354093 0.144913 0.309537 -0.146092 -0.166295 -0.052026 0.116021 0.195090 -0.145270 -0.066322 0.077794 -0.435140 0.295792 -0.159479 0.439473 -0.604277 -0.157627 -0.566047 -0.310568 -0.100876 1.110267 0.286272 0.659365 0.336644 -0.411738 -0.029712 -0.627671 -1.009052 -0.045547 -0.207568 0.098616 0.092204 -0.078343 0.118866 -0.153860 -0.152540 0.173240 -0.417440 -0.234634 -0.231988 -0.273012 -0.060801 -0.161674 -0.393371 0.101611 0.494730 -0.049864 0.333443 -0.234967 -0.780938 -0.443993 -0.443297 0.329330 -0.224592 0.172501 0.008765 -0.076105 -0.646887 0.243442 -0.363963 0.020442 -0.298058 -0.448685 -0.517445 0.100392 -0.214114 0.104430 0.058203 -0.472748 0.219648 -0.063224 0.249015 0.143350 0.193638 -0.139357 -0.669823 -0.679052 -0.111405 0.013414 0.688620 0.158243 0.007632 -0.055273 -0.311562 -0.451913 0.385617 -0.734809 0.115644 0.385714 -0.553087 0.285205 -0.334603 -0.221655 -0.276055 0.295667 0.091335 -0.520737 0.709274 0.546576 -0.639438 -0.334961 -0.454669 0.261079 0.113632 0.757972 -0.201363 0.120392 0.169771 0.291079 -0.083804 -0.176490 0.306756 0.048133 0.189372 -0.729513 -0.546430 0.305166 0.511820 -0.056191 -0.081632 0.087737 0.201329 -0.111806 0.723828 0.101381 0.227198 -0.329889 -1.084522 0.116108 0.300825 -0.080635 0.402695 -0.529210 -0.227947 -0.121417 -0.131865 0.601018 0.180578 0.202015 0.514647 -0.390477 -0.517975 -0.239552 -0.190930 -0.029754 -0.320527 0.399874 -0.410928 -0.107603 -0.291851 0.239351 -0.184575 -0.065461 -0.290655 0.074359 0.183609 0.218666 -0.079389 0.471706 0.166969 -0.245206 -0.133500 0.115213 0.005871 0.449994 -0.417113 -0.310856 -0.241902 0.107135 -0.245341 0.260436 -0.071330 0.355704 0.089858 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.044479 -0.388433 0.244958 0.220874 0.247099 0.039620 0.038910 -0.079088 0.058169 -0.364000 -0.051429 -0.150332 -0.110960 0.015169 0.127768 -0.006639 0.213975 -0.019673 -0.219733 0.045140 0.005335 -0.019550 0.112756 0.035741 0.057650 -0.220102 0.246877 0.233075 0.030950 0.151582 -0.205053 0.042470 0.146554 0.101832 0.193978 0.170936 0.276720 -0.079074 -0.178776 0.078366 0.471430 -0.103624 -0.000672 0.102427 0.180931 0.247136 0.175436 0.249739 0.538041 -0.058543 0.206154 -0.300551 0.000869 -0.072657 -0.417120 0.120994 0.119471 0.115095 -0.258885 0.078414 -0.042572 0.073458 0.007979 -0.016307 0.266868 -0.072896 0.178788 0.080858 0.259621 -0.219994 -0.139908 0.204100 0.296414 0.236886 0.078119 -0.164633 -0.013706 -0.736433 -0.043889 0.052645 0.025766 -0.096356 -0.121505 -0.072898 -0.060165 0.265845 -0.267725 0.137539 -0.035207 0.003880 -0.358494 0.089474 0.299318 0.090807 0.025439 -0.092579 0.102027 0.052966 0.017629 0.253510 0.223962 -0.215149 -0.159517 -0.538124 -0.279446 -0.124987 0.088604 -0.177058 -0.236311 0.107923 0.183442 0.054099 -0.147029 -0.025062 0.074743 0.137514 -0.018958 -0.403748 0.105599 -0.165397 0.122006 0.178859 0.082163 -0.149599 0.040722 -0.299265 0.213243 0.071288 0.180861 -0.157487 0.312632 -0.134673 -0.006049 0.290981 -0.082814 -0.133341 -0.010031 -0.175429 0.139252 -0.057564 0.229045 -0.118992 0.020292 -0.205005 0.083989 -0.055633 0.745940 -0.087075 0.252259 0.215086 -0.317111 0.007421 -0.101964 -0.472102 0.006233 -0.033932 0.063115 0.162730 -0.054998 0.114621 -0.022452 -0.146127 -0.014016 -0.162241 -0.100085 -0.049097 -0.717800 -0.077555 -0.038323 -0.246515 0.169928 0.385460 -0.068739 0.103053 -0.122357 -0.296165 -0.045270 -0.286398 0.121936 -0.130648 0.078781 0.052160 -0.019158 -0.300647 0.234439 -0.171288 -0.000865 -0.109980 -0.362726 -0.223927 0.037584 -0.184806 0.204000 0.145568 -0.212268 0.090637 -0.343894 0.134915 0.092937 0.070876 -0.056691 -0.379646 -0.355737 -0.183154 0.023261 0.291272 -0.234119 0.009467 -0.073334 -0.197307 -0.049180 0.187111 -0.316963 0.006642 0.165984 -0.291788 0.080821 -0.043315 -0.022380 -0.078750 0.147046 0.146566 -0.077945 0.307764 0.277906 -0.285479 -0.238480 -0.189534 0.059591 0.060968 0.397500 -0.108323 0.077132 0.083402 0.193439 -0.029042 -0.161321 0.153461 0.086939 0.062987 -0.371232 -0.365548 0.003219 0.265341 -0.021362 -0.032881 0.186931 0.228779 -0.232832 0.380639 -0.012024 0.215392 -0.115234 -0.379379 0.071668 0.481240 0.075230 0.319403 -0.379304 -0.069950 -0.016262 0.075143 0.273060 0.304818 0.202519 0.257270 -0.061768 -0.172152 -0.028786 -0.222359 -0.024062 -0.171614 0.232060 -0.206407 -0.093891 -0.189207 0.027414 -0.129094 0.144567 -0.073296 0.000709 0.013114 0.173712 0.060563 0.188103 0.079682 -0.195913 -0.009934 0.088394 -0.002408 0.247219 -0.014288 -0.128738 -0.094411 -0.005900 -0.049876 0.064022 -0.124138 0.109100 -0.070445 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.913854 -0.634869 -0.209489 1.166588 0.386834 -0.123407 0.171869 0.190245 0.085259 -1.662746 -0.659261 1.018045 -0.002987 -0.154431 0.130046 0.416511 0.685982 0.109754 -1.753734 0.310269 0.086224 -0.260639 -0.513187 -0.071750 0.033788 -0.757928 0.819256 0.792572 0.063277 0.985388 -0.601611 0.495415 0.815365 0.065999 0.862004 0.895761 0.028340 -0.281229 -0.447690 -0.202232 1.839253 0.417802 -0.049737 0.588054 0.489768 1.314750 0.244398 1.391841 1.035206 -0.365165 0.718480 0.143442 -0.566881 -0.150759 -1.577155 0.231087 0.539430 0.117075 -0.891397 0.559754 -0.471648 0.314614 0.391564 0.265348 1.529779 0.200171 1.010467 0.822318 1.266920 -0.837084 -0.047255 0.534729 0.883599 0.499992 0.717256 -0.603428 -0.703744 -1.114451 0.045019 -1.029241 0.006475 -0.319701 1.324123 -0.802380 -0.259369 0.341862 0.041228 1.103905 -0.739975 0.003671 -1.333918 0.085041 0.141764 1.452164 0.121457 0.304314 0.026587 0.400946 -0.085044 0.693800 0.187704 -1.274239 -0.373206 -2.135842 -0.951593 -0.795695 0.058471 -0.165837 -1.262705 0.208268 0.417606 1.030794 -1.385113 -0.133428 0.329650 0.101203 0.796858 0.022472 -0.377874 -0.222123 0.099846 0.637303 0.512703 -0.440890 0.177202 -0.624696 0.459919 0.264678 0.577947 0.087732 -1.002371 -0.257906 0.496808 0.241148 -0.098748 0.190229 0.328508 -0.722131 0.595038 -0.618354 1.026402 -1.283002 -0.311674 -0.875233 -0.535505 -0.433224 1.625956 0.914194 1.162421 0.352440 -0.380824 -0.005995 -1.415097 -2.088150 0.113479 -0.218081 0.014576 0.180090 -0.159840 0.322778 -0.636055 -0.117556 0.470057 -0.787090 -0.563194 -0.337960 0.035510 0.064400 -0.325257 -0.579359 0.049767 0.518444 0.220444 0.932955 -0.524740 -2.167357 -1.288616 -0.805175 0.911209 -0.574520 0.073181 -0.177785 -0.390097 -0.865926 0.274991 -0.864770 0.133312 -0.464062 -0.741704 -1.250080 0.344719 -0.383057 0.064729 0.170126 -1.058312 0.344409 0.225718 0.403238 0.172564 0.334612 -0.085464 -1.245687 -1.035153 0.076357 -0.256886 1.420180 0.552770 -0.050110 -0.533700 -0.537629 -1.016863 0.833299 -1.373595 0.534645 0.433131 -1.019560 0.697717 -0.749969 -0.219212 -0.547692 0.663371 0.212309 -1.444845 1.684847 1.327868 -1.218912 -0.431640 -0.601874 0.484058 0.296220 1.283651 -0.791775 -0.325063 0.297644 0.309176 -0.101347 -0.163189 0.551954 -0.015807 0.134951 -1.390481 -0.846453 0.829090 0.827644 -0.073694 -0.108489 0.244636 -0.002814 0.021382 1.402943 0.372524 0.495429 -0.942177 -2.528161 0.394766 0.324189 -0.180943 0.617469 -0.898373 -0.570621 -0.038531 -0.504980 1.199067 -0.009594 -0.200176 1.058467 -1.154574 -1.148175 -0.864583 -0.431773 0.059241 -0.366610 0.828263 -0.701548 -0.067781 -0.508718 0.439064 -0.508585 -0.256063 -0.112217 0.428428 0.611959 0.521856 -0.239665 1.130969 0.290828 -0.503355 -0.330071 0.057249 -0.334193 0.624706 -1.151838 -0.450201 -0.245133 0.459709 -0.665417 0.444296 0.065699 0.690164 0.117398 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.171684 -0.239222 0.080186 0.343698 0.275626 0.001965 0.036008 -0.042941 -0.074061 -0.559401 -0.257731 -0.069424 -0.056354 -0.050613 0.190337 0.096027 0.315945 0.016980 -0.307331 0.073637 0.024667 -0.156104 -0.143145 0.103922 -0.007194 -0.328499 0.070557 0.293951 -0.002589 0.280162 -0.239913 0.188456 0.250712 0.081824 0.357151 0.290661 0.148452 -0.127694 -0.057856 0.057604 0.716568 -0.072002 0.047390 0.112210 0.249950 0.414617 -0.043294 0.452372 0.245718 -0.091821 0.386510 -0.289871 -0.015262 0.047214 -0.623236 0.135625 0.202811 0.059034 -0.401462 0.172198 -0.219064 0.140193 0.075781 -0.008617 0.534764 0.050087 0.266936 0.245758 0.387220 -0.271424 -0.093721 0.249253 0.286764 0.170588 -0.017856 -0.070232 0.058457 -0.655875 0.009192 -0.135067 0.091747 -0.108338 0.361193 -0.174356 -0.142837 0.297272 -0.143525 0.308441 -0.198059 0.007555 -0.519728 0.051307 0.164348 0.195773 0.067600 -0.004812 0.044421 0.107334 -0.052102 0.305623 -0.026480 -0.360285 -0.376634 -0.809751 -0.511549 -0.175028 0.063842 -0.193002 -0.439964 0.034445 0.348498 0.253473 -0.338187 -0.010250 0.068702 0.112714 -0.030765 -0.019274 -0.254636 -0.223000 0.073073 0.249317 0.147570 0.003561 0.097731 -0.530495 0.223969 0.046889 0.269359 -0.105256 -0.053438 -0.082209 0.091958 0.070164 -0.130061 -0.072533 0.053466 -0.202657 0.227794 -0.090977 0.335564 -0.390286 -0.005834 -0.425437 -0.237363 -0.074883 0.778641 0.295556 0.398764 0.294642 -0.299612 0.023729 -0.423099 -0.670461 -0.017912 -0.107786 0.123775 0.067409 -0.079994 0.127064 -0.113112 -0.101750 0.128754 -0.304227 -0.191311 -0.163703 -0.193534 -0.024856 -0.143893 -0.323369 0.117993 0.382550 -0.137543 0.211159 -0.212626 -0.332730 -0.289402 -0.342639 0.235324 -0.182355 0.129409 0.030434 -0.025704 -0.447828 0.208038 -0.275511 -0.020023 -0.225393 -0.326397 -0.378419 0.072718 -0.166547 -0.030223 0.085868 -0.326096 0.178389 0.009804 0.099447 0.109909 0.112376 -0.105032 -0.371191 -0.456127 -0.105678 -0.002944 0.370878 0.197999 -0.001615 -0.120024 -0.251945 -0.276939 0.309566 -0.394731 0.095884 0.269179 -0.418587 0.161573 -0.252858 -0.147145 -0.108811 0.211384 0.102253 -0.512641 0.412790 0.379047 -0.465188 -0.262767 -0.397244 0.190855 0.058247 0.550891 -0.101401 0.175211 0.110901 0.215431 -0.045665 -0.131687 0.213219 0.076875 0.099127 -0.553358 -0.417595 0.247922 0.362651 -0.020080 -0.007183 0.111500 0.251078 -0.016977 0.532474 0.065867 0.131802 -0.180516 -0.696243 0.093108 0.277877 -0.018072 0.304548 -0.316481 -0.153084 -0.139139 -0.146520 0.423241 0.129218 0.104819 0.395759 -0.177121 -0.350090 -0.181880 -0.112853 -0.017048 -0.285994 0.292541 -0.291839 -0.084586 -0.224546 0.160825 -0.074345 -0.039465 -0.309816 0.038665 0.139478 0.185403 -0.012194 0.334514 0.109384 -0.211349 -0.092396 0.099567 0.039221 0.366522 -0.333896 -0.275413 -0.161114 0.064321 -0.175221 0.127780 -0.067286 0.232640 0.110777 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 5.552783 -2.919324 -3.560192 7.124482 0.192360 -3.006962 1.393446 2.431857 0.775409 -9.590116 -3.568517 3.078921 1.335288 -2.078734 0.879574 3.662101 2.178593 1.615731 -10.860247 3.005694 2.180793 -0.530422 -4.510842 -0.839385 -0.106053 -3.733139 0.010205 3.407733 -0.340576 6.562704 -3.176326 3.241096 5.724067 -1.297231 4.066219 5.988807 -0.290402 -0.071875 1.144725 1.416082 9.613450 4.044327 -2.296408 1.220381 1.952007 8.033720 -0.286999 9.498411 -1.980558 -2.861404 4.584634 -0.964773 -3.112083 -0.037125 -7.563863 1.958962 6.911884 3.678619 -5.357449 4.278587 -4.439735 1.968399 3.871696 2.662295 10.115167 4.301990 5.287727 6.250677 9.172483 -3.730349 1.918465 1.023062 3.636364 -1.356551 4.411743 -3.458460 -3.829108 -7.627788 1.192865 -7.874060 0.254051 -0.068512 8.976100 -6.785520 0.385786 2.796983 3.133396 8.043628 -6.497289 0.274593 -7.315110 -0.182210 -0.973389 12.374986 -0.195120 2.578630 -1.235714 4.694512 -0.357651 2.267816 -0.318660 -7.199649 -4.627476 -12.369874 -6.622520 -4.226862 -1.616744 0.353350 -10.182686 -0.960624 4.387035 4.092392 -11.318903 0.928960 1.881274 1.021072 6.676609 2.718429 -4.662776 0.613891 -1.873389 2.259941 2.221769 -2.309083 1.258653 -5.708223 2.248034 3.090105 2.175779 1.057705 -9.907774 1.247779 2.798091 -1.898412 -0.551254 3.647109 2.371761 -5.380040 3.516967 -6.155325 6.141518 -10.238045 -2.073632 -4.726294 -7.169497 -1.999819 7.245969 5.984507 4.240181 0.204603 -3.700405 -0.467795 -11.186153 -13.295754 0.342161 -1.402337 1.181797 -0.211407 -1.450291 -0.198649 -3.640487 0.566468 3.348938 -5.340003 -3.056466 -2.505430 7.944662 1.230452 -2.391764 -2.699448 -1.346484 4.062993 1.249321 5.716659 -3.046765 -8.726484 -10.338672 -3.723584 5.941556 -2.171061 0.816363 -2.761536 -1.588973 -8.610839 2.424448 -4.922327 1.437056 -2.842182 -1.691785 -8.136360 2.162979 -1.368604 -0.270763 -0.716795 -5.957865 2.089078 2.689721 1.769598 0.590828 1.282747 0.765634 -7.202975 -6.798653 2.049881 -1.047097 8.848469 4.608177 0.363737 -0.619538 -2.354258 -7.179964 6.004942 -6.789842 3.313220 2.613368 -4.970623 6.224004 -5.516854 -3.565044 -5.536768 3.814182 -0.153540 -4.566573 11.251265 6.717429 -6.971378 -0.873626 -3.955980 4.322706 2.346562 7.108330 -4.175807 -2.592894 2.236602 0.522816 -1.028738 -1.321108 2.868144 -2.306442 2.678974 -6.974290 -2.464283 5.772497 4.989791 -0.939734 0.778142 -0.656469 -2.616448 -0.482637 7.320894 2.773253 1.008760 -5.654925 -13.052990 2.034686 -3.172993 -0.688808 0.117524 -4.253170 -2.564099 0.010419 -0.479175 7.534070 3.805693 -2.325405 6.168385 -9.903201 -8.209281 -4.978681 0.523403 0.537914 -2.440775 2.860715 -3.868459 0.919233 -0.707116 4.481802 -0.931412 -4.986876 -3.247953 2.430472 4.926171 0.177458 -4.869834 7.622912 0.743521 -1.653486 -2.501505 0.164820 -1.481303 2.691744 -4.567110 -2.728186 -1.558900 4.161461 -5.597848 5.450807 -0.167388 3.415658 2.830804 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 2.338017 -0.568253 -1.403785 4.318661 0.122200 0.356248 0.835053 0.846450 0.115548 -6.501328 -2.860513 2.146204 0.634498 0.775911 0.075284 2.057489 1.376790 1.223058 -6.738951 0.156280 2.033401 -0.085782 0.243599 -0.146312 0.356899 -1.921083 0.630082 1.376174 0.677588 4.349999 -1.795882 2.840997 3.724302 0.043788 1.302342 2.870163 -0.784450 -0.522624 -0.809142 -1.323835 4.730879 1.208146 -0.816964 0.966775 -0.884388 4.834587 0.317042 4.156040 0.772535 -2.000881 1.853237 -1.304298 -2.052017 0.088224 -3.653485 1.016717 2.176793 2.668780 -1.651828 1.583112 -1.808946 1.324832 1.705107 -0.380352 4.695257 2.190382 2.871428 3.823001 3.991415 -3.386983 1.180552 0.421176 0.410553 -0.018092 1.787101 -2.395449 -1.353326 -3.759548 0.028562 -5.563547 -0.616580 -0.317831 5.936286 -3.771128 -0.363313 0.680759 0.953549 4.799749 -2.535965 1.464990 -4.645507 0.002662 0.242388 4.643609 0.477321 0.282618 -0.929368 1.644357 -0.472268 0.947365 0.329343 -3.458459 -2.388789 -5.719735 -2.705434 -2.651418 0.678525 1.646594 -5.398456 0.472902 1.584011 3.346741 -6.695087 -0.392932 0.964514 1.838815 2.093952 2.414571 -2.167836 -0.208230 -0.123199 1.478254 1.915080 -2.069606 1.383418 -2.276903 -0.222540 0.850369 1.607479 0.960010 -5.224752 -1.216542 1.340875 -1.260657 0.719465 2.437022 2.482113 -0.826971 2.208017 -3.049710 3.456756 -4.917398 -1.077751 -1.757252 -3.249924 -2.079520 4.881314 4.344336 2.168645 0.295212 -1.548785 -0.515631 -5.315279 -5.414392 -0.177630 0.032602 0.911260 1.520534 -1.021189 1.507491 -2.886639 1.152348 1.186911 -2.408765 -2.398208 -0.666648 2.742833 0.587818 -1.035633 -2.130825 -0.397074 0.997954 -1.037824 3.861130 -1.395010 -4.206883 -6.324573 -2.648195 3.826256 -2.177861 0.418617 -2.202837 -0.518952 -3.088690 0.587335 -3.014922 -0.136447 0.055475 -2.260878 -5.262464 2.211790 -0.936611 -1.570793 1.642406 -3.435630 1.089813 2.228530 1.558006 0.684503 0.556512 -0.162245 -3.483106 -2.841246 0.557751 -2.205708 3.761631 2.689510 -0.624792 -2.504051 -2.501614 -3.164466 3.762659 -2.595660 2.687648 0.013593 -1.260378 2.191871 -3.504434 0.102534 -2.723540 1.967533 0.896513 -6.465499 4.904715 3.395906 -3.126529 -0.194541 -2.521071 2.335996 0.806711 3.082641 -2.650568 -2.093913 0.895311 0.299018 -0.203464 -1.083867 1.329195 -1.277504 -0.438992 -3.707002 -1.306517 3.307023 1.972858 -0.584152 0.659844 2.217094 -0.558751 1.321605 3.728973 2.243718 -0.159070 -2.838137 -8.035756 1.465357 1.295470 -0.029220 0.679291 -2.927479 -1.047038 0.999155 -1.450480 4.037069 0.937525 -1.340991 3.931641 -4.603414 -3.787295 -2.793312 -0.464950 0.568690 -0.627745 1.303507 -1.735172 0.394918 0.110256 1.199584 -0.802613 -2.859355 -1.096358 1.974004 4.331684 0.345339 -0.509023 4.275661 1.026140 -1.318069 -1.093169 0.209737 -1.538775 0.348586 -3.460352 -0.660594 1.101909 1.904310 -3.418041 1.419736 -0.090699 0.317633 0.491454 -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.297898 -0.414955 -0.593168 1.385215 0.043169 -0.321736 0.154737 -0.144496 0.067442 -1.647834 -0.311549 0.349150 -0.005665 0.008529 -0.089953 0.761486 0.331440 0.171546 -0.963876 0.326783 0.520287 -0.014569 -0.304045 0.238337 0.263146 -0.500473 0.119589 0.417633 0.027793 0.945900 -0.520148 0.819947 1.018216 -0.133240 0.217969 0.792822 0.030606 0.349723 0.306792 0.118392 1.014954 -0.016308 -0.263475 0.079341 0.006689 1.246597 0.073395 1.457979 -0.166457 -0.585685 0.537609 -0.145744 -0.242111 -0.055654 -0.987991 0.526280 0.581244 0.819442 -0.734856 0.386305 -0.538572 0.411706 0.604413 0.227132 1.520346 0.941310 0.760551 1.151552 1.446930 -0.519136 0.354205 0.210833 0.481219 -0.074613 0.503869 -0.427353 -0.373698 -0.647174 -0.223567 -0.838343 0.012232 0.086571 1.371280 -1.022812 -0.313788 -0.125485 0.270313 1.466368 -0.863775 0.450950 -1.288135 0.090640 0.148942 1.505940 0.159874 0.218569 -0.464175 0.727375 -0.225571 0.234162 -0.239004 -0.766306 -0.703397 -1.440030 -1.024800 -0.672897 0.042083 0.287748 -2.110903 -0.025481 0.258957 0.701708 -2.035096 -0.038495 0.195016 0.286158 0.986507 0.781145 -0.583403 0.056614 -0.114821 0.144882 0.022226 -0.070011 0.337802 -1.126280 -0.026029 0.209110 0.329709 0.310015 -1.657471 0.180744 0.138279 -0.428653 0.235428 0.912918 0.622524 -0.391953 0.542625 -0.859606 0.771305 -1.657937 -0.680972 -0.413408 -1.303169 -0.448062 1.268596 1.117569 0.825367 -0.338982 -0.637495 -0.590066 -1.973290 -1.788890 -0.143333 -0.295016 0.182942 0.524423 -0.320693 0.110065 -0.680582 0.160635 0.783983 -0.788312 -0.562540 -0.563638 0.879289 0.219911 -0.024088 -0.686910 -0.516205 0.499144 -0.354470 0.835017 -0.324618 -1.147563 -1.935657 -0.535962 0.721189 -0.421159 0.251632 -0.664001 -0.176304 -1.450901 0.373133 -0.717907 -0.253871 -0.225910 -0.254350 -1.302350 0.655096 -0.236597 -0.278934 -0.014140 -0.854007 0.345393 0.389569 0.132466 0.380524 0.197519 -0.221112 -0.771754 -0.894641 0.563872 -0.316393 0.787746 0.727749 -0.107766 -0.217504 -0.727763 -1.140560 1.124035 -0.912741 0.620837 0.743512 -0.110258 0.897311 -0.946044 -0.141009 -0.669873 0.532939 -0.010764 -1.454357 1.060990 0.833114 -1.057948 -0.036131 -0.574477 0.817621 0.352955 0.759612 -0.660527 -0.382272 0.354606 0.240496 -0.131693 -0.146605 0.282085 -0.430899 0.458925 -0.993438 -0.223587 0.796098 0.593685 -0.332846 -0.021716 -0.047069 -0.646391 0.237951 0.883292 0.603987 0.133967 -0.737817 -1.969824 -0.022985 -0.502027 -0.033591 0.186169 -0.862167 -0.026320 0.306410 -0.571376 1.218279 -0.114254 -0.489570 0.981834 -1.659298 -1.111890 -0.302078 -0.043953 0.003062 -0.194393 0.644229 -0.427348 -0.043800 0.158049 0.698051 -0.412822 -1.054602 -0.248816 0.456639 1.156785 -0.470632 -0.472562 1.048835 -0.060834 -0.154642 -0.458671 0.290724 -0.228819 0.090771 -1.286138 -0.385865 0.002299 0.591337 -1.104408 0.984475 -0.213757 0.327213 0.320228 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.650773 -0.316951 -0.159255 1.045988 0.137959 -0.154805 0.330844 0.333096 0.055438 -1.434092 -0.759469 1.065127 -0.019166 -0.143609 0.035159 0.130560 0.413405 0.322935 -1.849854 0.257438 0.228050 0.009589 -0.247070 -0.230425 0.050095 -0.514678 0.437421 0.823804 0.078538 1.015514 -0.413593 0.315601 0.791367 0.150915 0.585807 0.907199 -0.028738 -0.160458 -0.278408 -0.298216 1.456549 0.505147 -0.114200 0.588496 0.293270 1.230414 0.339290 0.873851 0.906804 -0.404638 0.392002 -0.033523 -0.609666 -0.287268 -1.138329 0.128837 0.456496 0.274358 -0.668338 0.573487 -0.408386 0.106764 0.377226 -0.056094 1.179869 0.265111 0.668807 0.747517 1.115318 -0.825468 0.011456 0.365844 0.700847 0.284872 0.414309 -0.507663 -0.778685 -1.161163 -0.003970 -1.503308 -0.314787 -0.150132 1.279685 -0.824638 -0.039398 0.269468 -0.026155 0.921294 -0.667610 -0.102489 -1.163293 -0.050357 0.085790 1.137076 0.182479 0.103686 0.100117 0.356126 0.070126 0.577772 0.000384 -1.042721 -0.356150 -2.091319 -0.503905 -0.663058 0.011154 -0.041537 -0.982344 -0.019541 0.418331 1.129333 -1.436543 -0.246004 0.483108 0.119270 0.057222 -0.074001 -0.319285 0.010434 0.083086 0.428853 0.760950 -0.609186 0.137942 -0.185119 0.169594 0.204828 0.382262 0.232761 -0.863411 -0.508924 0.478778 0.215229 -0.040634 0.157056 0.186486 -0.323996 0.546189 -0.753240 1.018441 -1.093115 -0.022245 -0.547069 -0.386056 -0.437612 1.323736 0.929258 0.821774 0.111655 -0.191648 0.036243 -1.093993 -1.780218 0.414621 -0.109864 0.203158 0.021684 -0.149359 0.261776 -0.627129 -0.027313 0.302622 -0.535730 -0.437855 -0.121690 0.161806 0.152512 -0.300207 -0.533992 0.068879 0.371507 0.161612 0.717692 -0.558501 -1.781366 -1.041636 -0.681715 0.924399 -0.407012 -0.111790 -0.253276 -0.351056 -0.536887 0.239003 -0.836394 0.117448 -0.294986 -0.655003 -1.181983 0.277983 -0.307218 -0.012349 0.247366 -0.778747 0.155857 0.391626 0.492405 0.122796 0.290406 0.120580 -0.910262 -0.676811 -0.013732 -0.299524 1.143508 0.631748 0.065380 -0.831526 -0.384682 -0.834761 0.861457 -0.957507 0.514001 0.076495 -0.854978 0.855332 -0.637212 -0.061577 -0.448961 0.578659 0.357801 -1.813460 1.301645 1.235540 -0.880434 -0.298738 -0.411338 0.188856 0.459037 1.097736 -0.823844 -0.483597 0.266573 0.022954 -0.019446 -0.284419 0.463453 -0.076192 0.086648 -1.062603 -0.599026 0.839227 0.585933 -0.017255 0.083735 0.313661 0.138502 0.137246 1.173073 0.313724 0.260386 -0.902129 -2.231550 0.525522 0.774369 -0.002851 0.612020 -0.731449 -0.531681 0.110859 -0.527725 1.053552 0.090055 -0.491966 0.959881 -0.917987 -0.997034 -0.864228 -0.274103 0.147017 -0.289953 0.778990 -0.474672 0.120561 -0.271578 0.205937 -0.238901 -0.220500 -0.276298 0.392798 0.598148 0.496621 -0.145193 1.098827 0.046545 -0.557946 -0.255971 -0.059924 -0.369359 0.289929 -0.994974 -0.309799 -0.142051 0.536830 -0.633258 0.410185 0.021873 0.473957 0.198450 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 1.023592 -0.817239 -0.337692 1.002190 0.426641 -0.554254 0.154551 0.223273 0.338834 -1.404223 -0.494221 0.760551 0.069001 -0.531136 0.216946 0.490249 0.547652 0.254951 -0.980654 0.650517 -0.014817 -0.060974 -0.854219 -0.120822 -0.006466 -0.583862 0.267906 0.437714 -0.003297 0.815009 -0.615998 0.282910 0.717288 -0.204227 0.720124 0.885360 0.392408 -0.155280 0.017797 0.197836 1.786320 0.356531 0.123576 0.644538 0.705756 1.072904 -0.115342 2.144083 0.684856 -0.291631 1.096226 -0.314489 -0.398321 0.059450 -1.482731 0.584535 0.900927 0.062067 -1.008646 0.593378 -0.332081 0.318501 0.465748 0.313175 1.427981 0.682404 0.600662 0.772186 1.607654 -0.454532 -0.004581 0.490568 1.175545 0.350434 0.995691 -0.727165 -0.555263 -0.933442 0.006504 -0.321409 0.420603 -0.420437 1.396571 -0.968450 0.024257 0.693416 0.260999 1.002107 -0.700006 -0.091744 -1.102343 0.205440 0.029656 1.546643 -0.160289 0.515861 -0.350948 0.397555 -0.205742 0.542183 0.092231 -1.121652 -0.737803 -2.058237 -1.285941 -0.595262 -0.341768 -0.384292 -1.579329 0.017099 0.379262 0.627450 -1.440274 0.034192 0.294686 -0.032177 1.164290 0.417047 -0.562513 -0.249117 0.012426 0.493863 -0.045455 -0.223082 -0.076285 -1.204382 0.436504 0.415003 0.423701 -0.224680 -0.859658 0.116939 0.126874 0.368749 -0.240784 0.094882 0.173022 -1.297584 0.523379 -0.514100 0.717259 -1.393699 -0.749841 -0.984188 -0.925431 -0.215344 2.025705 0.308189 1.491567 0.322514 -0.683574 -0.373673 -1.511304 -2.023873 0.083137 -0.737743 0.135337 0.122758 -0.035997 -0.148063 -0.319645 -0.333403 0.407885 -0.897911 -0.353703 -0.489413 0.362530 -0.285386 -0.276571 -0.802159 -0.108533 0.949342 0.300142 0.538869 -0.436968 -1.848557 -1.101834 -0.693221 0.742167 -0.326345 0.439359 -0.148645 -0.167737 -1.174921 0.263972 -0.712806 0.179992 -0.591210 -0.564790 -1.083037 0.156809 -0.312772 0.240227 -0.171397 -0.946861 0.482587 0.018808 0.642614 0.081034 0.384658 -0.155077 -1.647827 -1.391326 -0.061073 0.082071 1.532538 0.484365 0.213392 -0.049718 -0.422016 -1.159236 0.679803 -1.947721 0.232608 0.770971 -0.850535 0.900057 -0.759900 -0.543021 -0.984307 0.595173 -0.057399 -0.934703 1.619182 0.979500 -1.252425 -0.376915 -0.761333 0.619099 0.383529 1.474335 -0.518212 -0.085545 0.487836 0.262276 -0.228969 -0.468876 0.610069 -0.204263 0.726492 -1.238865 -0.712414 0.648270 1.008585 -0.211476 -0.248751 -0.109617 -0.090633 -0.228703 1.311475 0.347535 0.424854 -0.936852 -2.278478 0.209889 0.094556 -0.111008 0.591908 -0.987658 -0.394682 -0.030985 -0.155012 1.212989 0.182838 0.482762 0.900780 -1.339177 -1.216522 -0.282901 -0.150331 0.109624 -0.515035 0.751414 -0.815392 -0.153211 -0.409892 0.709264 -0.374131 -0.356278 -0.464632 0.275709 0.526298 0.316726 -0.492295 1.038575 0.266533 -0.372206 -0.110596 0.002801 0.102165 0.437440 -0.788519 -0.414070 -0.499688 0.337637 -0.667311 1.062276 -0.184252 0.718668 0.213958 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.349482 -0.573827 -0.041840 0.529228 0.246200 -0.107886 0.060433 -0.059676 0.130034 -0.657361 -0.144381 0.231080 -0.021789 -0.126404 0.126066 0.189778 0.323052 -0.034413 -0.417175 0.203601 -0.068638 -0.150549 -0.318715 0.072007 -0.011653 -0.391891 0.405603 0.354661 -0.031067 0.340766 -0.273180 0.178816 0.313370 -0.030620 0.399707 0.378450 0.258957 -0.073599 -0.217222 0.149167 0.858948 0.062910 -0.004762 0.216728 0.312611 0.519279 0.134575 0.859219 0.562087 -0.113073 0.505271 -0.098501 -0.105164 -0.064025 -0.783872 0.170488 0.310503 0.002405 -0.491942 0.240001 -0.224131 0.151600 0.159400 0.267642 0.713857 0.091909 0.449297 0.324397 0.606503 -0.308800 -0.076270 0.312401 0.533795 0.261623 0.406752 -0.269875 -0.292145 -0.623322 0.012791 0.022432 0.107598 -0.160043 0.296696 -0.307211 -0.173574 0.281181 -0.081685 0.425936 -0.316259 0.017754 -0.596663 0.079492 0.206687 0.601409 0.010400 0.137269 -0.016684 0.195703 -0.056670 0.330306 0.171935 -0.567076 -0.209165 -0.958657 -0.605425 -0.306259 -0.039639 -0.226555 -0.629137 0.082377 0.187926 0.239090 -0.503928 0.029196 0.114670 0.039554 0.583473 -0.134556 -0.071864 -0.146198 0.136178 0.294227 0.138051 -0.102455 0.082328 -0.531156 0.403385 0.196418 0.247982 -0.101278 -0.168194 0.002434 0.129068 0.292689 -0.119096 -0.020943 0.068425 -0.501502 0.260315 -0.192660 0.417835 -0.556397 -0.210466 -0.475882 -0.252774 -0.098765 1.033967 0.149892 0.691981 0.199128 -0.420584 -0.019580 -0.621005 -1.082240 -0.020900 -0.186335 -0.033204 0.112664 -0.064633 0.072754 -0.164582 -0.116799 0.238663 -0.386108 -0.206458 -0.158802 -0.408032 -0.032794 -0.146597 -0.299136 0.052946 0.405837 0.153683 0.375841 -0.185223 -1.019806 -0.441337 -0.351866 0.308230 -0.190083 0.137289 0.009805 -0.176147 -0.629285 0.219403 -0.330041 0.073156 -0.277509 -0.372571 -0.477774 0.082751 -0.194976 0.214947 0.007531 -0.459903 0.185212 -0.189961 0.183206 0.118439 0.193458 -0.079224 -0.668621 -0.613699 -0.023600 0.001105 0.747358 0.014456 0.032382 0.024196 -0.251171 -0.454699 0.299445 -0.816524 0.114660 0.406391 -0.535831 0.289531 -0.293527 -0.228136 -0.258620 0.294523 0.061397 -0.262301 0.755630 0.588844 -0.589317 -0.269200 -0.248224 0.247325 0.116649 0.682096 -0.275720 0.022669 0.165125 0.280437 -0.074341 -0.117868 0.266616 0.013977 0.162131 -0.640005 -0.461118 0.253603 0.458519 -0.055235 -0.173357 0.020737 0.010003 -0.244540 0.647159 0.097493 0.322590 -0.364856 -1.008599 0.111503 0.107944 -0.120061 0.393103 -0.542015 -0.160473 -0.039506 -0.125580 0.541561 0.114505 0.128296 0.458908 -0.498600 -0.506691 -0.251988 -0.271708 -0.045896 -0.233893 0.438675 -0.385049 -0.081177 -0.293851 0.248041 -0.300199 0.009121 -0.039047 0.114448 0.106383 0.172745 -0.126234 0.443905 0.126895 -0.194630 -0.148893 0.093715 -0.089289 0.399472 -0.399058 -0.250962 -0.225929 0.169756 -0.240727 0.267596 -0.104292 0.366829 0.042202 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 1.055160 -0.811979 -0.352867 0.997512 0.404402 -0.588516 0.152852 0.282537 0.313603 -1.439040 -0.563134 0.647082 0.078720 -0.568166 0.278518 0.500126 0.548641 0.250731 -1.147085 0.689085 0.043404 -0.073450 -0.863769 -0.109453 -0.001895 -0.604151 0.123945 0.453378 -0.023953 0.845964 -0.636481 0.324119 0.746323 -0.205575 0.758920 0.916056 0.283066 -0.183307 0.144435 0.250990 1.827316 0.387205 0.102315 0.582552 0.718582 1.107613 -0.198080 2.181487 0.615065 -0.307924 1.189814 -0.425835 -0.405814 0.119685 -1.500500 0.566847 0.977546 0.098429 -1.033457 0.612191 -0.416772 0.332954 0.487778 0.277256 1.520076 0.723126 0.622649 0.791414 1.630528 -0.429079 0.038057 0.455067 1.142948 0.276995 0.897307 -0.755175 -0.486435 -1.097577 0.045273 -0.447216 0.420456 -0.413060 1.437754 -0.994591 0.059106 0.717555 0.285034 1.062636 -0.748558 -0.088539 -1.131278 0.192948 0.026065 1.552901 -0.201678 0.510197 -0.327135 0.421248 -0.228838 0.537448 0.027903 -1.139238 -0.872538 -2.147609 -1.335153 -0.578514 -0.345013 -0.381868 -1.661624 0.017714 0.462680 0.560848 -1.494136 0.045153 0.289593 -0.016432 1.060689 0.524123 -0.671968 -0.299179 -0.037215 0.562626 -0.011452 -0.212437 -0.053574 -1.361430 0.441513 0.460689 0.436297 -0.235545 -0.883162 0.139483 0.162539 0.303837 -0.262056 0.137698 0.192588 -1.258271 0.539226 -0.551970 0.756528 -1.469101 -0.728711 -1.061126 -0.941580 -0.208299 2.052185 0.430241 1.411808 0.376518 -0.702006 -0.324238 -1.581929 -2.018857 0.044032 -0.774509 0.203075 0.062158 -0.045246 -0.154776 -0.288530 -0.311623 0.344319 -0.933606 -0.375120 -0.546286 0.450270 -0.239888 -0.302431 -0.803729 -0.116827 1.001721 0.199039 0.547097 -0.451702 -1.741598 -1.151504 -0.716241 0.774579 -0.324984 0.449496 -0.186697 -0.109742 -1.237355 0.294394 -0.736654 0.136113 -0.614447 -0.551896 -1.112628 0.149268 -0.305946 0.239621 -0.208956 -0.953907 0.489973 0.105678 0.722553 0.095468 0.397499 -0.165854 -1.657171 -1.432445 -0.078198 0.084763 1.560931 0.553791 0.198941 -0.050247 -0.420524 -1.176286 0.740881 -1.905763 0.248567 0.760646 -0.911016 0.939369 -0.784986 -0.579009 -1.005797 0.596359 -0.081987 -1.023711 1.648790 0.973639 -1.293111 -0.366307 -0.881153 0.662155 0.393840 1.494841 -0.457804 -0.038069 0.465467 0.271569 -0.237500 -0.492348 0.627278 -0.231458 0.735034 -1.260660 -0.714915 0.719710 1.025530 -0.199521 -0.211506 -0.143137 -0.030530 -0.179178 1.325145 0.329179 0.355007 -0.925475 -2.358903 0.208221 0.211810 -0.085823 0.567807 -0.990067 -0.424109 -0.102393 -0.118937 1.257131 0.318852 0.498526 0.917829 -1.331786 -1.255751 -0.358365 -0.052036 0.087526 -0.533794 0.702183 -0.819638 -0.144044 -0.376218 0.755779 -0.287052 -0.436782 -0.639173 0.278971 0.560392 0.321608 -0.551849 1.064918 0.278489 -0.376757 -0.152866 0.008682 0.093360 0.466643 -0.726551 -0.451116 -0.509003 0.347914 -0.699227 1.077578 -0.164035 0.751122 0.239659 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 1.245914 -0.961760 -0.508990 1.484804 0.387778 -0.623847 0.200510 0.398085 0.211599 -2.159179 -0.935574 0.444864 0.098788 -0.572048 0.484399 0.707062 0.737450 0.225463 -2.174453 0.798618 0.372812 -0.196280 -0.918663 0.067870 0.063556 -0.921331 -0.080760 0.752565 -0.074184 1.290646 -0.853461 0.789074 1.179005 -0.198063 1.002843 1.253100 -0.072587 -0.257307 0.405835 0.388337 2.392963 0.458480 -0.058338 0.455804 0.714656 1.679275 -0.358599 2.657710 0.602267 -0.546455 1.651964 -0.720361 -0.515106 0.232874 -1.969827 0.571493 1.322745 0.416825 -1.316850 0.789282 -0.903411 0.492221 0.709904 0.243851 2.329725 1.006201 1.090998 1.227756 2.068952 -0.648699 0.242256 0.461270 1.117243 0.140008 0.703275 -0.940890 -0.422518 -1.966898 0.106844 -1.157966 0.315629 -0.419494 1.905932 -1.319303 -0.052098 0.723840 0.354145 1.721777 -1.165261 0.115585 -1.717624 0.147265 0.155862 1.939600 -0.223441 0.505784 -0.298335 0.663485 -0.358988 0.660409 -0.154058 -1.527501 -1.408133 -2.938053 -1.817824 -0.782322 -0.240520 -0.269775 -2.488653 0.123858 0.791348 0.637095 -2.229700 0.012442 0.310409 0.190075 1.033168 0.999031 -1.166265 -0.527686 -0.097917 0.916851 0.285750 -0.264502 0.239560 -2.161702 0.529209 0.661442 0.635655 -0.149296 -1.356727 0.120530 0.410468 0.028230 -0.235145 0.513937 0.496947 -1.160308 0.797211 -0.916443 1.224873 -2.172680 -0.799298 -1.462773 -1.249720 -0.378071 2.609028 1.276364 1.439560 0.542585 -0.997837 -0.208559 -2.362173 -2.629848 -0.165420 -0.865014 0.416044 0.078166 -0.211154 0.013693 -0.475229 -0.135100 0.396362 -1.255630 -0.679044 -0.826011 0.673626 0.043504 -0.423484 -0.996931 -0.193589 1.215892 -0.206518 0.999107 -0.593472 -1.940120 -1.918813 -1.006886 1.160151 -0.526921 0.479419 -0.490854 -0.062222 -1.843566 0.504367 -1.070642 -0.129872 -0.731541 -0.743129 -1.661428 0.371571 -0.393813 0.120817 -0.207692 -1.317049 0.597602 0.506835 1.029390 0.308965 0.495789 -0.299577 -1.894487 -1.819760 0.001055 -0.101354 1.986992 0.940877 0.054210 -0.221910 -0.691738 -1.545046 1.313931 -2.012169 0.550140 0.912048 -1.275205 1.226292 -1.170130 -0.726616 -1.184701 0.784552 -0.085327 -1.857439 2.149825 1.320156 -1.768909 -0.416190 -1.418549 1.031347 0.482170 1.805745 -0.536263 -0.013918 0.461643 0.499158 -0.271762 -0.594482 0.773628 -0.368614 0.681353 -1.724971 -0.919120 1.254429 1.267704 -0.237261 -0.141018 -0.106198 0.049955 0.066990 1.712043 0.469608 0.216372 -1.075907 -3.298911 0.265036 0.571463 -0.084000 0.624806 -1.354447 -0.579854 -0.235091 -0.288208 1.788119 0.659513 0.347606 1.348180 -1.724525 -1.712300 -0.878009 0.098712 -0.011181 -0.629005 0.807738 -0.995222 -0.110417 -0.298423 1.025320 -0.227107 -0.939157 -1.153563 0.460028 0.966030 0.278595 -0.757856 1.508587 0.385526 -0.495584 -0.483050 0.140143 -0.156075 0.690322 -1.006970 -0.685782 -0.475462 0.567552 -1.105320 1.216416 -0.146833 0.966798 0.364849 -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.920425 -0.904170 -0.750180 2.539627 0.272275 0.164244 0.333032 -0.095919 0.320115 -3.060657 -0.668010 1.670691 0.050583 0.445319 -0.257148 0.969406 0.861620 0.061040 -2.456554 0.071836 0.572508 -0.149792 -0.370991 0.392336 0.282562 -1.046235 1.555796 1.014670 0.191307 1.760479 -0.731851 1.384763 1.718455 -0.193191 0.428919 1.269130 0.188445 0.195445 -0.838822 -0.439761 2.180519 0.230022 -0.440234 0.861674 -0.169027 2.279533 0.553427 2.508083 1.117753 -0.956592 0.722655 0.621306 -0.747111 -0.531024 -1.994394 0.587172 0.795199 0.926322 -1.013207 0.670441 -0.637724 0.520230 0.874275 0.584714 2.331590 1.146751 1.859525 1.926532 2.232490 -1.507730 0.335745 0.647777 0.741026 0.700708 1.340534 -0.968563 -1.262225 -0.863101 -0.283164 -1.423007 -0.394677 -0.421257 2.099903 -1.502419 -0.854794 -0.381785 0.292540 2.313094 -1.308082 0.875786 -2.298277 0.061315 0.414492 2.596141 0.323775 0.441370 -0.493050 0.846459 -0.278166 0.643421 0.361814 -1.725594 -0.231831 -2.364013 -1.467270 -1.419696 0.336604 0.639210 -2.862972 0.463968 -0.221133 1.461202 -3.061358 -0.387468 0.285896 0.613744 2.469705 1.009039 -0.555731 -0.150448 0.437414 0.355800 0.532742 -0.640621 0.823127 -1.075403 0.155829 0.358956 0.617923 0.657288 -2.583125 -0.310609 0.496492 -0.170935 0.560282 1.233388 1.187251 -0.780725 1.003435 -1.313739 1.530516 -2.483971 -1.261943 -0.568243 -1.518075 -1.029188 2.293924 1.712501 1.874245 -0.287673 -0.995948 -0.680359 -2.854185 -3.230828 -0.264806 -0.028240 -0.150390 1.138407 -0.562802 0.707119 -1.575584 0.351143 1.320325 -1.027722 -1.067010 -0.488720 0.438359 0.358180 -0.048120 -0.924525 -0.399663 0.171385 0.066440 2.097294 -0.422523 -3.473937 -3.186900 -0.982480 1.470499 -0.981768 0.051464 -0.938707 -0.791077 -1.892073 0.272604 -1.280196 -0.344890 -0.204459 -1.116838 -2.335303 1.332663 -0.520541 -0.384141 0.569686 -1.797990 0.454366 0.529150 0.564976 0.645754 0.312655 -0.409657 -1.624709 -1.422313 0.754492 -0.897671 2.072793 0.719004 -0.394825 -0.623756 -1.295029 -1.803566 1.733275 -1.840898 1.223903 0.900454 -0.506423 1.017463 -1.563792 -0.144460 -1.173176 0.960306 0.310956 -2.340051 2.403267 1.747079 -1.695185 -0.321242 -0.515044 1.123899 0.388235 1.264559 -1.639899 -1.188485 0.579308 0.700770 -0.104298 -0.263799 0.486622 -0.364865 -0.056984 -1.923512 -0.820293 1.415225 0.979354 -0.534752 -0.310311 0.685868 -1.052930 0.319336 1.814155 1.176865 0.556090 -1.301809 -3.714853 0.337169 -0.578057 -0.465442 0.461996 -1.902941 -0.385649 0.821462 -1.199273 1.965209 -0.688384 -0.753634 1.830025 -2.653668 -1.793043 -1.059409 -0.885827 0.099695 -0.023553 1.243974 -0.877627 0.064949 -0.132639 0.651669 -1.286252 -1.317551 0.610401 0.923961 1.630099 -0.421144 -0.203711 1.909384 0.358491 -0.429628 -0.715728 0.379592 -0.962167 0.282943 -2.439150 -0.288876 0.280523 0.945677 -1.601649 0.888953 -0.148922 0.536602 0.123904 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.963714 -0.418537 0.014049 1.401387 0.654263 0.207085 0.155822 0.272165 -0.043140 -2.293309 -1.199977 0.536469 -0.029439 0.179617 0.357823 0.408680 0.981087 0.143919 -1.936236 0.033408 0.305837 -0.320868 -0.134046 0.025217 0.095341 -0.611236 0.125055 0.574524 0.286292 1.300871 -0.895146 0.791147 0.919906 0.225682 0.985977 0.744204 -0.001323 -0.485244 -0.424654 -0.622648 2.196868 0.134557 -0.110374 0.696807 0.360168 1.564767 -0.330723 1.891200 0.772816 -0.317385 1.135040 -0.874946 -0.466090 0.317765 -1.716880 0.554766 1.084279 0.581765 -0.841576 0.471069 -0.528480 0.603915 0.284326 -0.273232 1.612278 0.728290 0.828828 1.132049 1.292359 -1.235109 -0.023126 0.385351 0.815720 0.598435 0.012381 -0.832091 0.016389 -1.808465 -0.020882 -1.412801 0.279575 -0.587517 2.092538 -1.025003 -0.113901 0.645127 -0.143539 1.176697 -0.717217 0.436478 -1.724600 0.152532 0.170507 1.133460 -0.049427 0.067114 -0.132787 0.333045 -0.183739 0.754922 0.111753 -1.181767 -1.161468 -2.479757 -1.389282 -0.614309 0.215844 -0.066944 -1.553184 0.314544 0.961473 0.900495 -1.608745 -0.374704 0.099363 0.588888 0.158558 0.905849 -1.019301 -0.550356 -0.009437 0.724901 0.547947 -0.351839 0.309521 -1.472776 -0.076039 0.196945 0.985001 0.062898 -1.141728 -0.394198 0.254535 -0.098477 -0.183226 0.036921 0.380942 -0.469102 0.796163 -0.533607 1.170039 -1.544396 -0.440635 -1.232978 -0.894345 -0.357216 2.294680 1.254182 1.214919 0.976588 -0.547716 -0.201043 -1.497564 -1.697190 -0.005646 -0.134806 0.448574 0.333566 -0.226876 0.606771 -0.785451 -0.261459 0.324339 -1.060846 -0.895480 -0.644234 0.482061 -0.249446 -0.444462 -1.061996 0.352838 1.034747 -0.765677 0.960371 -0.733921 -1.279265 -1.667811 -1.152799 1.152858 -0.840646 0.416981 -0.134730 0.211187 -1.118628 0.321679 -1.011560 0.081851 -0.301417 -1.232591 -1.673755 0.599648 -0.459084 -0.350520 0.708480 -1.204994 0.625789 0.494277 1.042608 0.175260 0.473135 -0.176213 -1.700259 -1.518953 -0.437718 -0.368693 1.468800 0.834853 -0.243242 -0.748653 -1.025085 -1.141898 1.294151 -1.308055 0.691873 0.234868 -0.695681 0.479013 -1.094413 -0.156545 -0.967126 0.730549 0.547042 -2.281578 1.730104 1.071784 -1.408305 -0.560046 -1.640490 0.877357 0.045454 1.730549 -0.788899 -0.185811 0.394058 0.372840 -0.185734 -0.705149 0.751124 0.058302 0.010829 -1.742896 -1.031432 0.950327 0.885779 -0.072247 0.173948 0.906933 0.444656 0.254989 1.812098 0.698828 0.110737 -0.829600 -2.825659 0.460683 1.159458 0.073904 0.649559 -1.258724 -0.714335 -0.243631 -0.247304 1.410050 0.339188 0.276348 1.451897 -1.026032 -1.084945 -0.672261 -0.261246 0.180156 -0.783305 0.638137 -0.918663 -0.257339 -0.265899 0.442116 -0.169906 -0.462318 -1.006620 0.342099 1.149493 0.493110 0.060846 1.284634 0.640058 -0.860863 -0.120988 0.204492 -0.113520 0.507380 -1.219577 -0.370196 -0.023952 0.276177 -0.950089 0.363607 0.213837 0.312245 0.040202 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = 1.432614 -0.654876 -0.750891 2.236861 0.688509 -0.787436 -0.089600 0.541462 0.254410 -1.927016 -0.969203 1.157442 0.327772 0.055229 0.651679 0.630753 0.556209 0.293687 -2.141547 0.773857 -0.514111 -0.248073 -1.601587 -0.712351 -0.136173 -0.337566 0.591018 1.258535 -0.045334 0.892622 -1.087853 0.726093 0.974988 -0.141075 1.351683 0.354013 0.892874 -0.431844 -1.259844 -0.428007 2.953848 0.699032 0.057539 1.124210 0.502459 1.780988 0.093079 2.488287 0.223715 -0.455024 1.143471 -0.620084 -0.670734 -0.164760 -2.592172 1.425150 1.148034 0.092164 -1.524875 1.109319 -0.377613 0.490508 1.035066 -0.011006 2.915698 0.584287 1.763631 1.444536 2.108677 -0.989178 -0.097325 0.529222 1.920635 0.287112 0.890714 -1.365626 -0.551936 -2.331344 0.713898 -1.465599 0.800877 -0.632583 1.988062 -1.602061 0.034837 1.111570 0.223864 1.671355 -1.950691 0.401009 -1.896958 -0.091397 -0.177490 2.736635 0.044874 0.045816 0.262337 0.946927 0.042951 1.153434 -0.029493 -1.145446 -0.492594 -3.367423 -2.094080 0.111027 -0.367099 -0.739751 -1.649353 -0.202109 0.877354 1.131087 -1.933667 -0.663348 0.589848 -0.109038 1.212710 -0.008136 -0.479241 -0.337731 -0.031260 0.944278 0.643968 -0.714152 0.840731 -0.938102 0.446561 0.646464 1.397007 0.374383 -1.622005 -0.090682 0.207567 0.240040 -0.218874 -0.355194 0.012696 -1.625892 1.184407 -0.754146 1.419019 -2.154297 -0.597317 -1.536515 -1.167630 -0.026551 2.631123 0.608717 1.875519 1.120679 -0.903094 -0.113694 -2.502343 -3.622695 0.500399 0.579505 -0.025063 0.009883 -0.269628 0.099929 -0.446827 -0.625832 1.725816 -1.963048 -1.699472 -0.695559 0.839542 0.096047 -0.817567 -1.479299 0.933995 1.521653 0.020148 1.084963 -0.443188 -2.752663 -1.485422 -0.916843 1.107022 -0.250506 0.567281 0.065018 -0.529966 -2.029691 0.589112 -1.840330 0.884577 -0.465715 -1.297390 -1.837773 0.236944 -0.340667 0.219139 -0.110258 -1.695247 1.215859 0.061583 0.980275 -0.503623 0.657313 0.693764 -2.308590 -2.251279 -0.362145 0.099115 2.422192 0.814590 0.689037 -0.209242 -0.589036 -1.400464 1.283418 -2.488546 0.449662 0.687984 -1.409086 0.798248 -1.880834 -1.096180 -1.350313 0.898925 0.158282 -1.148311 2.667533 1.822540 -2.013122 -0.860357 -1.611947 1.088772 0.334262 3.234571 -1.273937 -0.132788 0.512368 1.042615 -0.670426 -0.915838 0.893119 0.229175 -0.236329 -2.077892 -1.422952 0.729835 1.366687 0.131460 0.081953 0.222646 0.085807 -0.845229 2.338919 0.507988 0.308054 -1.321611 -3.290132 0.591479 0.356591 -0.467243 0.554565 -1.612004 -0.753662 -0.334453 -0.115363 1.696533 0.868117 0.442743 1.508415 -2.147979 -1.703576 -0.890312 0.110158 -0.276360 -0.878959 1.126315 -1.464750 -0.150409 -0.711944 0.540501 -1.199343 -0.236057 -1.419285 0.071211 0.572248 0.200608 -0.544989 1.973580 0.674266 -0.569612 -0.341800 -0.237528 -0.434756 0.897622 -1.406417 -0.874781 -0.699227 0.240021 -0.984377 0.739652 0.128630 0.538487 0.609034 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.864723 -0.774640 -0.298657 1.090422 0.161306 -0.574478 0.238115 0.416155 0.134156 -1.564759 -0.554200 0.178193 0.134305 -0.426458 0.344339 0.424138 0.399794 0.253433 -1.822443 0.594552 0.305399 -0.051228 -0.692109 -0.184992 -0.030584 -0.693843 0.023961 0.704616 -0.053572 1.049965 -0.629858 0.336294 0.883760 -0.160492 0.814406 1.046847 0.271442 -0.065167 0.110602 0.479564 1.821698 0.652686 -0.390560 0.202761 0.576074 1.306272 0.062553 1.497183 -0.028632 -0.459867 0.865962 -0.457783 -0.443086 -0.085253 -1.374899 0.340804 1.286212 0.671872 -1.049784 0.774915 -0.755562 0.267045 0.557366 0.432988 1.658293 0.498584 0.846627 0.859603 1.529251 -0.629942 0.114339 0.287006 0.811347 -0.133886 0.691604 -0.579335 -0.611781 -2.020458 0.210935 -1.140392 0.009379 -0.001547 1.069854 -1.066538 0.180451 0.841309 0.250017 1.151629 -1.010657 -0.126757 -1.235862 -0.016196 0.032886 1.970181 -0.034404 0.293595 0.006770 0.774026 0.093497 0.586898 0.135643 -1.241867 -0.904983 -2.355924 -1.194190 -0.637279 -0.286777 -0.173264 -1.539123 -0.215653 1.014387 0.545905 -1.657213 0.236550 0.416237 0.227062 0.892563 -0.163287 -0.648753 0.064992 -0.266319 0.444680 0.498178 -0.505250 0.120727 -1.028709 0.642555 0.565328 0.401639 -0.050367 -1.045226 0.116109 0.426948 -0.000605 -0.277154 0.282281 0.188886 -1.057743 0.612312 -0.972756 1.097945 -1.545516 -0.118843 -0.870454 -0.927499 -0.227859 1.609293 0.677369 0.683242 0.204854 -0.892737 0.058453 -1.612245 -2.403376 0.164899 -0.201465 0.285836 -0.093281 -0.229595 -0.035140 -0.403430 -0.091326 0.391985 -0.891326 -0.408445 -0.341066 0.624534 0.107703 -0.449216 -0.567421 -0.010295 1.003032 0.277849 0.809571 -0.601080 -1.381354 -1.356498 -0.744951 0.956132 -0.317527 0.153515 -0.262370 -0.259766 -1.562060 0.624616 -0.850191 0.338251 -0.600411 -0.479460 -1.278946 0.189806 -0.332047 0.238436 -0.107045 -0.983307 0.301958 0.020181 0.322715 0.113286 0.207490 0.216503 -1.401535 -1.324923 0.088255 -0.055263 1.592277 0.419394 0.160037 -0.057770 -0.320234 -1.066752 0.966508 -1.227062 0.368213 0.439094 -1.124705 1.099394 -0.717584 -0.721897 -0.897148 0.671236 0.111727 -0.344172 2.005202 1.227284 -1.186957 -0.317447 -0.635237 0.565093 0.494797 1.416728 -0.645491 -0.282460 0.390146 0.136596 -0.171112 -0.332123 0.589524 -0.301672 0.541978 -1.243106 -0.635772 0.768832 0.995860 -0.065876 0.161400 -0.079452 -0.131491 -0.439696 1.359799 0.295031 0.299056 -0.883773 -2.009665 0.474528 -0.125167 -0.024440 0.199897 -0.836926 -0.482479 -0.109333 0.223406 1.250202 1.122903 -0.159367 1.037289 -1.450194 -1.358406 -0.795488 0.007927 0.057137 -0.582954 0.557459 -0.724630 0.149919 -0.250503 0.666635 -0.089503 -0.499492 -0.689670 0.249245 0.525800 0.262339 -0.786190 1.255666 0.111949 -0.453926 -0.340867 0.036564 -0.139791 0.651741 -0.391904 -0.553704 -0.455246 0.623472 -0.746239 0.869690 -0.157286 0.583546 0.473661 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = 0.377770 -0.476014 0.014065 0.525453 0.341696 -0.085329 0.061142 -0.013073 0.035898 -0.772316 -0.301856 0.121396 -0.042616 -0.132618 0.205101 0.182215 0.391204 -0.015943 -0.492578 0.191144 -0.013706 -0.182864 -0.298195 0.093993 -0.002780 -0.438051 0.233690 0.387733 -0.020632 0.388128 -0.318773 0.222742 0.353139 0.027557 0.463272 0.422604 0.207297 -0.139392 -0.112585 0.104760 0.990699 0.018552 0.038921 0.231537 0.365215 0.576746 -0.016260 0.896872 0.456751 -0.128370 0.600576 -0.274669 -0.105718 0.020586 -0.867090 0.216524 0.368010 0.018398 -0.549787 0.254515 -0.271623 0.179144 0.148606 0.126641 0.774938 0.152180 0.431819 0.352115 0.651870 -0.347948 -0.109554 0.364687 0.516431 0.271919 0.217708 -0.254351 -0.125452 -0.742821 0.033138 -0.106918 0.130429 -0.211140 0.501651 -0.311233 -0.184141 0.359720 -0.102776 0.467823 -0.322457 0.019811 -0.678328 0.095156 0.191689 0.522039 0.009215 0.114685 -0.001243 0.169890 -0.078363 0.405612 0.052341 -0.556142 -0.425646 -1.104309 -0.695617 -0.284734 0.015832 -0.252185 -0.697194 0.075087 0.315936 0.283109 -0.535676 -0.006665 0.122979 0.099727 0.348994 0.044997 -0.274602 -0.264955 0.124381 0.333566 0.143469 -0.043121 0.093065 -0.711136 0.362379 0.148802 0.312311 -0.140849 -0.208478 -0.041165 0.123779 0.188830 -0.145829 -0.057218 0.084058 -0.456863 0.302324 -0.165833 0.447764 -0.635274 -0.176309 -0.583830 -0.341792 -0.102534 1.121417 0.307835 0.692952 0.331545 -0.413167 -0.035748 -0.665953 -1.045511 -0.046740 -0.222663 0.091181 0.086296 -0.077028 0.112696 -0.163631 -0.148807 0.195893 -0.432536 -0.240035 -0.240195 -0.232880 -0.058946 -0.169064 -0.398506 0.087552 0.489317 -0.032534 0.349056 -0.237750 -0.827560 -0.472776 -0.444679 0.340481 -0.226961 0.177504 0.003761 -0.086496 -0.664536 0.237016 -0.372554 0.024831 -0.307957 -0.443450 -0.532502 0.101678 -0.210989 0.094928 0.043864 -0.487343 0.226191 -0.041879 0.246675 0.144125 0.201822 -0.142953 -0.683338 -0.692788 -0.096986 0.011888 0.713063 0.187656 0.011385 -0.051839 -0.312998 -0.484427 0.391216 -0.769943 0.122493 0.402769 -0.564255 0.300562 -0.354704 -0.236994 -0.286807 0.303900 0.080556 -0.544420 0.733528 0.564339 -0.658049 -0.333826 -0.457778 0.274403 0.117736 0.774900 -0.211505 0.118827 0.175195 0.294508 -0.087205 -0.170763 0.313895 0.039650 0.198351 -0.743264 -0.547774 0.323621 0.523763 -0.059323 -0.092924 0.070894 0.182947 -0.104419 0.736048 0.111653 0.229833 -0.346438 -1.125107 0.116604 0.261740 -0.097069 0.406068 -0.533307 -0.233133 -0.122614 -0.154418 0.617829 0.151194 0.193811 0.525289 -0.420927 -0.540186 -0.251586 -0.189734 -0.030361 -0.324743 0.415311 -0.421311 -0.107273 -0.295811 0.255584 -0.195269 -0.079182 -0.288298 0.081965 0.192331 0.217334 -0.092484 0.487519 0.169895 -0.242392 -0.142414 0.113726 0.003202 0.454984 -0.451828 -0.318763 -0.251249 0.118708 -0.258542 0.277850 -0.069463 0.372345 0.101440 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.147734 -0.399127 0.110848 0.319984 0.235105 -0.027513 0.041932 -0.076986 0.063138 -0.447850 -0.091259 0.016895 -0.069724 -0.048542 0.117953 0.072128 0.233124 -0.007695 -0.231609 0.106729 -0.023776 -0.065898 -0.063857 0.044086 0.025455 -0.263790 0.269451 0.250944 0.005374 0.210243 -0.216597 0.094582 0.195458 0.050933 0.249476 0.232795 0.253695 -0.073072 -0.170341 0.094229 0.579333 -0.050892 0.021246 0.145412 0.221399 0.324968 0.129051 0.454689 0.490722 -0.071733 0.301311 -0.191950 -0.032755 -0.054093 -0.521353 0.141592 0.160529 0.048991 -0.321127 0.128939 -0.107144 0.096907 0.061387 0.072618 0.411037 0.006051 0.248562 0.168084 0.377632 -0.228619 -0.110207 0.236702 0.367091 0.227190 0.195700 -0.164734 -0.108234 -0.602022 -0.037556 0.046108 0.064206 -0.112744 0.088201 -0.156563 -0.107394 0.253591 -0.165792 0.235312 -0.130620 0.007845 -0.416154 0.085738 0.226263 0.252898 0.030225 0.006111 0.022981 0.088801 -0.014742 0.263139 0.161534 -0.319818 -0.177367 -0.655491 -0.390683 -0.177590 0.028981 -0.189723 -0.378860 0.085111 0.176460 0.159172 -0.274437 -0.008420 0.087434 0.086616 0.190965 -0.251074 0.007225 -0.145830 0.124851 0.204459 0.083298 -0.100858 0.042917 -0.368928 0.254673 0.090730 0.194732 -0.131269 0.101718 -0.080368 0.032738 0.259684 -0.085609 -0.087821 0.021290 -0.284041 0.171911 -0.089336 0.270497 -0.273974 -0.073117 -0.293920 -0.072130 -0.063923 0.801694 0.020741 0.420193 0.189593 -0.324259 -0.022760 -0.293371 -0.654394 0.000268 -0.109411 0.025937 0.133191 -0.048423 0.083772 -0.071311 -0.127459 0.099249 -0.237724 -0.127092 -0.090130 -0.517137 -0.068279 -0.075270 -0.272192 0.099632 0.358394 0.017911 0.181115 -0.136275 -0.529277 -0.189185 -0.293311 0.177690 -0.142497 0.103800 0.027141 -0.071117 -0.388893 0.202309 -0.214243 0.021080 -0.159473 -0.336554 -0.299209 0.044018 -0.169180 0.156488 0.073876 -0.285241 0.123349 -0.237167 0.123216 0.096809 0.111794 -0.074670 -0.447220 -0.424419 -0.111061 0.015628 0.413489 -0.087052 0.028233 -0.056161 -0.204486 -0.211751 0.215110 -0.492637 0.040885 0.251260 -0.347629 0.157607 -0.143819 -0.099075 -0.132510 0.188208 0.092672 -0.196358 0.429036 0.366723 -0.378533 -0.232802 -0.205076 0.126212 0.081490 0.482141 -0.159031 0.069310 0.110520 0.210588 -0.046049 -0.132688 0.189158 0.044523 0.107880 -0.439984 -0.372269 0.095494 0.325055 -0.037021 -0.089340 0.102718 0.136867 -0.195899 0.441739 0.039337 0.228567 -0.197979 -0.582303 0.074147 0.285813 -0.006939 0.336267 -0.399786 -0.095878 -0.022250 -0.037620 0.357119 0.157901 0.161499 0.310477 -0.214016 -0.283205 -0.088959 -0.216379 -0.027100 -0.192691 0.309243 -0.258321 -0.092240 -0.209004 0.108576 -0.182565 0.075961 -0.061512 0.038737 0.056725 0.167052 -0.004911 0.267165 0.094308 -0.181843 -0.054502 0.080961 -0.015753 0.272172 -0.187863 -0.168275 -0.141144 0.051968 -0.115880 0.151089 -0.114803 0.192302 -0.012534 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.539781 -0.637265 0.118950 0.664782 0.510898 -0.065149 0.090941 0.075720 0.016641 -1.094480 -0.505918 -0.014254 -0.078767 -0.148418 0.342278 0.201255 0.572331 -0.073810 -0.890181 0.222375 0.045595 -0.263188 -0.320098 0.140464 0.019725 -0.622952 0.201891 0.578374 -0.023568 0.540727 -0.446897 0.302889 0.495402 0.078693 0.672343 0.594116 0.197816 -0.235324 -0.070540 0.122770 1.397701 0.049455 -0.004139 0.276644 0.509408 0.808782 -0.095746 1.198034 0.545725 -0.187205 0.869865 -0.565265 -0.165925 0.064012 -1.188678 0.280943 0.618408 0.097671 -0.770599 0.351116 -0.403722 0.248179 0.185476 0.093820 1.062483 0.210996 0.608014 0.456309 0.859542 -0.510609 -0.167088 0.502588 0.638722 0.362132 0.090192 -0.416993 -0.042641 -1.229363 0.130032 -0.299825 0.136047 -0.323195 0.656886 -0.387836 -0.215948 0.531747 -0.197889 0.636236 -0.445189 0.032343 -0.955968 0.120961 0.292500 0.686507 -0.042593 0.106037 0.116456 0.239025 -0.094883 0.605004 0.053709 -0.729684 -0.720115 -1.557451 -0.930004 -0.358466 0.095277 -0.326474 -0.916688 0.113416 0.512617 0.245853 -0.689994 -0.027494 0.165222 0.211736 0.288525 0.136043 -0.455417 -0.456114 0.131692 0.480247 0.240683 -0.076610 0.161788 -1.071084 0.488838 0.226812 0.446364 -0.206201 -0.270842 -0.072681 0.195463 0.181406 -0.221110 -0.092362 0.112771 -0.544834 0.429864 -0.242273 0.646567 -0.892752 -0.163458 -0.839730 -0.423379 -0.139632 1.508828 0.498015 0.793688 0.567159 -0.552730 0.008735 -0.865967 -1.344932 -0.110296 -0.244978 0.228939 0.069815 -0.130476 0.205355 -0.206925 -0.214582 0.136209 -0.578461 -0.349491 -0.377634 -0.257975 -0.051473 -0.234423 -0.514234 0.193561 0.732717 -0.216645 0.477562 -0.349007 -0.937011 -0.632300 -0.656743 0.478920 -0.322611 0.221405 0.007440 -0.037735 -0.939276 0.364998 -0.523458 0.009978 -0.431948 -0.660032 -0.737424 0.169713 -0.304774 0.150587 0.118325 -0.658084 0.298871 -0.008519 0.454760 0.214074 0.267232 -0.199653 -0.939205 -0.976452 -0.198441 0.026964 0.984046 0.254605 -0.043895 -0.047329 -0.449637 -0.596429 0.595941 -0.887604 0.173305 0.473712 -0.800637 0.389821 -0.463794 -0.307986 -0.424811 0.405078 0.156992 -0.744367 1.014715 0.725093 -0.900872 -0.498822 -0.759147 0.361098 0.146271 1.057083 -0.222924 0.176468 0.218276 0.401105 -0.120453 -0.266637 0.436571 0.098419 0.251240 -1.060519 -0.801656 0.469748 0.716417 -0.065543 -0.013968 0.161075 0.384215 -0.096062 1.058439 0.115493 0.236487 -0.429233 -1.568175 0.177009 0.566473 -0.093029 0.484247 -0.727809 -0.392563 -0.241542 -0.089555 0.856607 0.448083 0.305595 0.740800 -0.477363 -0.723649 -0.397524 -0.189608 -0.044301 -0.465806 0.442595 -0.568556 -0.127575 -0.387959 0.319958 -0.145843 -0.165113 -0.590140 0.076179 0.290931 0.300860 -0.123287 0.671914 0.253311 -0.350004 -0.207959 0.180156 0.024220 0.688550 -0.492142 -0.458774 -0.338396 0.125203 -0.339616 0.312861 -0.021670 0.496434 0.145166 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 0.993110 -0.739785 -0.465342 1.489925 -0.043244 -0.724238 0.418327 0.607023 0.094162 -1.932733 -0.484797 0.474638 0.269318 -0.424172 0.160941 0.523945 0.300538 0.433757 -2.627929 0.615905 0.458351 0.050719 -0.829888 -0.521991 -0.086838 -0.823850 0.365069 1.028550 -0.079257 1.460050 -0.691698 0.320900 1.158955 -0.173457 0.987446 1.366100 0.438890 0.080698 -0.178994 0.538278 2.117887 1.197029 -0.918409 0.139016 0.535554 1.750117 0.570721 1.057603 -0.677779 -0.629509 0.306364 0.066875 -0.705197 -0.460024 -1.522452 0.238450 1.667547 1.192546 -1.199391 1.108677 -0.994601 0.225698 0.799819 0.871390 1.994857 0.366743 1.197912 1.177358 1.882019 -0.997295 0.241861 0.182852 0.831454 -0.461140 1.159923 -0.472032 -1.277765 -2.552674 0.330300 -2.030574 -0.304636 0.380893 1.150492 -1.412068 0.331641 0.962870 0.508079 1.454140 -1.484726 -0.285314 -1.513473 -0.182585 -0.208326 3.136003 0.182425 0.368685 0.128342 1.299765 0.447321 0.665667 0.375807 -1.669771 -0.555653 -2.889138 -1.101534 -0.969687 -0.451034 -0.002400 -1.601188 -0.489405 1.438198 1.102918 -2.262461 0.412054 0.627402 0.310389 1.373507 -1.060047 -0.489476 0.688831 -0.563170 0.226615 0.894022 -0.974046 0.195581 -0.298866 0.841032 0.719955 0.410286 0.281732 -1.795739 0.146723 0.767201 -0.248689 -0.256036 0.536480 0.207000 -1.327753 0.743865 -1.663335 1.577755 -1.862204 0.305844 -0.670260 -1.236103 -0.358302 1.110599 0.807640 0.336877 -0.171966 -0.968656 0.267005 -1.992934 -3.403657 0.520050 0.310059 0.134900 -0.194694 -0.398066 -0.055950 -0.831401 0.055671 0.862269 -1.013090 -0.508347 -0.135343 1.308955 0.374697 -0.648571 -0.337824 -0.018234 1.007670 0.929643 1.266752 -0.870598 -1.859211 -1.933997 -0.821351 1.337121 -0.375341 -0.183869 -0.417780 -0.664921 -1.930998 0.920731 -1.099276 0.846252 -0.680815 -0.349043 -1.713762 0.288797 -0.396716 0.205924 -0.054976 -1.236376 0.227061 -0.078469 -0.275234 -0.016639 0.032938 0.724608 -1.444938 -1.336815 0.485071 -0.156001 1.965975 0.395019 0.251842 -0.168400 -0.238442 -1.290339 1.253946 -1.031823 0.622351 0.247912 -1.398726 1.505337 -0.858196 -0.934938 -0.998602 0.921529 0.225881 0.410535 2.889383 1.818433 -1.314905 -0.289959 -0.214958 0.572641 0.669563 1.615058 -1.265377 -0.861646 0.499839 -0.099484 -0.158298 -0.160200 0.629986 -0.432108 0.537122 -1.450208 -0.589546 0.947183 1.124344 -0.048207 0.440748 -0.075192 -0.687209 -0.847607 1.675005 0.469311 0.555492 -1.276684 -2.018909 0.773457 -1.199689 -0.029538 -0.169529 -0.713576 -0.638332 0.089756 0.415448 1.486622 1.577440 -1.088396 1.328349 -2.160315 -1.767458 -1.264939 -0.135520 0.164094 -0.661122 0.696237 -0.805848 0.439119 -0.278151 0.746015 -0.194324 -0.607084 -0.282954 0.376528 0.628575 0.252683 -1.239152 1.739447 -0.047411 -0.520907 -0.495084 -0.032933 -0.414704 0.787494 -0.470075 -0.628998 -0.477282 1.099760 -0.987170 1.019288 -0.143107 0.603410 0.759094 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = 0.711470 -0.914062 -0.178805 0.915413 0.349878 -0.186319 0.087051 0.081614 0.261462 -1.301474 -0.491000 0.345516 0.029036 -0.167948 0.315982 0.367033 0.496824 -0.022988 -1.048015 0.378276 0.053611 -0.199865 -0.468556 0.128427 0.021584 -0.642256 0.400775 0.487385 0.023014 0.705946 -0.504526 0.377563 0.650858 -0.132268 0.611945 0.690670 0.258052 -0.134630 -0.205972 0.206090 1.504131 0.218923 -0.039728 0.383628 0.433186 0.953097 -0.011783 1.738001 0.819489 -0.317094 1.056051 -0.435156 -0.275555 0.011158 -1.263575 0.383411 0.763616 0.121659 -0.819712 0.408957 -0.419202 0.270718 0.305389 0.264667 1.256021 0.382624 0.784871 0.622860 1.096134 -0.540799 -0.063666 0.489506 0.777529 0.361369 0.623187 -0.655991 -0.405855 -1.143928 0.088838 -0.214209 0.113159 -0.348424 0.794485 -0.705685 -0.190221 0.522303 -0.049886 0.869596 -0.573429 0.129780 -1.027957 0.110276 0.298644 1.106583 -0.058237 0.221138 -0.074273 0.339892 -0.132415 0.547763 0.236621 -0.940276 -0.679809 -1.693215 -1.079757 -0.500521 0.018674 -0.179874 -1.269414 0.131922 0.355613 0.281763 -1.051953 0.062646 0.252245 0.196080 0.991099 0.227549 -0.397793 -0.316859 0.193073 0.501881 0.265694 -0.228222 0.154561 -1.110891 0.588943 0.372410 0.392532 -0.180937 -0.476444 -0.035348 0.190562 0.376468 -0.163417 0.070312 0.262920 -0.855288 0.521551 -0.350547 0.715915 -1.155828 -0.460637 -0.837317 -0.536428 -0.217422 1.889116 0.439899 1.146545 0.368738 -0.760100 -0.118681 -1.193010 -1.735986 -0.120230 -0.336591 0.123853 0.197473 -0.117706 0.194385 -0.263737 -0.106042 0.210636 -0.685445 -0.370972 -0.300389 -0.304995 -0.087755 -0.235216 -0.606147 0.018152 0.666301 0.004963 0.691667 -0.277516 -1.572234 -0.929230 -0.645476 0.639471 -0.352667 0.318274 -0.105947 -0.161934 -1.145549 0.289395 -0.643534 0.031863 -0.403583 -0.707344 -0.926361 0.196886 -0.293654 0.293474 0.048306 -0.847098 0.301481 -0.080773 0.613844 0.246644 0.335436 -0.161237 -1.310421 -1.149712 -0.102541 -0.145270 1.377938 0.186460 -0.035346 0.026524 -0.462701 -0.849694 0.623839 -1.410984 0.235445 0.516998 -0.813454 0.569480 -0.591535 -0.430912 -0.710100 0.479617 0.124691 -0.693335 1.348296 0.898413 -0.956131 -0.345553 -0.580410 0.469600 0.264004 1.141456 -0.409852 -0.046310 0.255003 0.383922 -0.124050 -0.297153 0.516082 -0.126139 0.273688 -1.056043 -0.708441 0.518360 0.791022 -0.081279 -0.149638 0.127616 0.099269 -0.209060 1.091888 0.241364 0.284394 -0.636207 -1.975940 0.264877 0.422930 -0.213851 0.535865 -1.006554 -0.328822 -0.068993 -0.094752 0.979994 0.395304 0.389604 0.830697 -0.943303 -0.933195 -0.462161 -0.273363 -0.057762 -0.358660 0.564787 -0.628329 -0.060079 -0.328521 0.396695 -0.355045 -0.230088 -0.369487 0.205048 0.388519 0.240452 -0.184239 0.838649 0.295933 -0.385035 -0.238155 0.119227 -0.151451 0.536857 -0.588088 -0.384689 -0.292704 0.247841 -0.498006 0.468014 -0.140959 0.494926 0.078391 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = 0.684696 -0.873394 -0.201670 0.903233 0.306145 -0.178719 0.098955 0.078276 0.259203 -1.262748 -0.474927 0.374327 0.040103 -0.160662 0.291562 0.347739 0.492375 0.004552 -0.997696 0.349053 0.041093 -0.201845 -0.498621 0.137042 -0.006185 -0.617668 0.377057 0.485359 0.026146 0.706029 -0.469886 0.363494 0.647022 -0.148555 0.588465 0.697004 0.273246 -0.108934 -0.209651 0.191890 1.461510 0.217807 -0.036778 0.380826 0.405602 0.947467 -0.004323 1.700001 0.782742 -0.318872 1.027617 -0.415533 -0.267391 -0.008192 -1.231732 0.352768 0.739455 0.133889 -0.809681 0.430464 -0.412574 0.264673 0.311134 0.272178 1.218891 0.385544 0.747910 0.626231 1.059149 -0.546074 -0.049945 0.461028 0.739319 0.340958 0.600816 -0.625244 -0.404112 -1.088035 0.088602 -0.216475 0.103352 -0.318520 0.809252 -0.706985 -0.179423 0.506484 -0.049207 0.839585 -0.572702 0.116218 -1.011005 0.080098 0.287742 1.082315 -0.034863 0.211264 -0.064858 0.338351 -0.128238 0.522725 0.210128 -0.940451 -0.657906 -1.656524 -1.055284 -0.501168 -0.004086 -0.163773 -1.216761 0.087236 0.356462 0.284842 -1.047836 0.063824 0.249150 0.174398 0.963202 0.246806 -0.395329 -0.275762 0.182667 0.472517 0.296442 -0.227009 0.159574 -1.044969 0.556904 0.360006 0.372318 -0.146090 -0.500057 -0.031205 0.202110 0.359484 -0.165345 0.074025 0.243589 -0.815400 0.513524 -0.360152 0.715434 -1.134629 -0.450337 -0.798711 -0.549003 -0.224280 1.833318 0.441358 1.138122 0.329687 -0.744524 -0.103424 -1.175837 -1.720246 -0.085338 -0.308748 0.122552 0.184468 -0.123299 0.181417 -0.278843 -0.088195 0.221630 -0.663025 -0.364691 -0.262204 -0.263499 -0.069481 -0.245974 -0.588854 0.028380 0.628968 0.033426 0.683929 -0.290836 -1.554004 -0.910449 -0.602693 0.641139 -0.341517 0.299310 -0.079995 -0.194747 -1.109723 0.265685 -0.636754 0.036176 -0.403529 -0.668850 -0.924282 0.210732 -0.286558 0.273518 0.060847 -0.831546 0.293958 -0.058922 0.584844 0.229170 0.327570 -0.128553 -1.254641 -1.097897 -0.083476 -0.157055 1.343320 0.220855 -0.016896 0.029492 -0.440436 -0.836642 0.600100 -1.379979 0.247432 0.510692 -0.798165 0.565558 -0.588619 -0.420446 -0.689899 0.479929 0.149129 -0.710188 1.304047 0.893558 -0.929812 -0.323783 -0.533699 0.449666 0.262867 1.104644 -0.418184 -0.071709 0.270201 0.351170 -0.110213 -0.285413 0.482666 -0.108429 0.253563 -1.030136 -0.662258 0.532152 0.754932 -0.070552 -0.148917 0.124441 0.075579 -0.198925 1.074057 0.237398 0.279846 -0.624004 -1.936372 0.291970 0.387226 -0.212578 0.522079 -0.971440 -0.300175 -0.047736 -0.124992 0.937186 0.355423 0.338845 0.823674 -0.938987 -0.925564 -0.473035 -0.267754 -0.031914 -0.348702 0.563862 -0.609506 -0.029424 -0.328406 0.393267 -0.345436 -0.211294 -0.354098 0.219815 0.376656 0.217754 -0.183809 0.837628 0.249247 -0.380596 -0.230520 0.100678 -0.155672 0.522133 -0.615167 -0.373373 -0.279681 0.285001 -0.506015 0.455476 -0.145363 0.477610 0.110263 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = 0.657721 -0.639970 -0.272864 0.850264 0.279067 -0.200732 0.074413 0.103261 0.179224 -1.237610 -0.529418 0.362723 0.074487 -0.172224 0.289164 0.386264 0.440152 0.103132 -0.912416 0.347902 0.098332 -0.165719 -0.490121 0.094379 -0.006162 -0.554987 0.190870 0.363180 0.046314 0.710007 -0.472170 0.394004 0.639238 -0.144843 0.549222 0.654637 0.195766 -0.123085 -0.105309 0.140274 1.387368 0.211493 0.007432 0.358561 0.358228 0.903437 -0.126971 1.563564 0.508106 -0.321168 0.932671 -0.388368 -0.251853 0.080589 -1.136650 0.390107 0.695530 0.143602 -0.750732 0.401634 -0.396390 0.269751 0.315195 0.158721 1.164498 0.439744 0.647029 0.648385 1.038303 -0.483870 0.004362 0.386858 0.638850 0.233537 0.566300 -0.510735 -0.308541 -0.929020 0.055323 -0.325129 0.151598 -0.279672 1.008324 -0.738406 -0.126030 0.504100 0.068929 0.855471 -0.551960 0.108932 -0.949192 0.076573 0.152748 1.014968 -0.004851 0.222013 -0.169413 0.325806 -0.151343 0.446238 0.091544 -0.863140 -0.707573 -1.575833 -1.040111 -0.461135 -0.020543 -0.110295 -1.226138 0.051176 0.406964 0.418073 -1.093475 0.074270 0.228069 0.168606 0.816409 0.374095 -0.533039 -0.244493 0.103398 0.423108 0.216277 -0.171513 0.127103 -1.013667 0.423590 0.290608 0.371365 -0.128522 -0.601586 -0.029189 0.165170 0.205874 -0.148844 0.125976 0.288051 -0.778460 0.499351 -0.343146 0.644283 -1.114079 -0.431184 -0.764486 -0.666879 -0.222263 1.650695 0.513794 1.050341 0.299151 -0.659526 -0.159280 -1.194427 -1.555782 -0.063221 -0.337708 0.159489 0.175088 -0.110196 0.148331 -0.282739 -0.056884 0.252297 -0.669477 -0.354843 -0.275581 0.102683 -0.100625 -0.248204 -0.624885 -0.042338 0.586255 -0.019424 0.612492 -0.289993 -1.266378 -0.948371 -0.575259 0.635843 -0.334158 0.337325 -0.138140 -0.124111 -1.019515 0.214405 -0.620928 0.022305 -0.368856 -0.567686 -0.907373 0.187733 -0.239243 0.079505 0.027359 -0.793538 0.323110 0.113134 0.491388 0.187472 0.275770 -0.132522 -1.153495 -1.033931 -0.054869 -0.174425 1.174002 0.401498 -0.005707 -0.068458 -0.423949 -0.840760 0.605640 -1.281910 0.257158 0.454480 -0.685809 0.558156 -0.636061 -0.430714 -0.687317 0.444236 0.084791 -0.845835 1.195193 0.785257 -0.881623 -0.247358 -0.587985 0.486952 0.251092 1.050588 -0.372147 -0.034960 0.258497 0.269979 -0.111842 -0.293147 0.474525 -0.171263 0.281411 -0.956315 -0.567084 0.556689 0.724352 -0.080824 -0.087211 0.112244 0.065148 -0.057700 0.985167 0.293122 0.178112 -0.605872 -1.799925 0.256938 0.239044 -0.176635 0.429018 -0.821608 -0.279966 -0.061265 -0.168411 0.912355 0.246725 0.311318 0.784873 -0.934313 -0.905192 -0.401854 -0.151003 0.001172 -0.362149 0.512750 -0.576581 -0.036235 -0.258756 0.414345 -0.265650 -0.317647 -0.431682 0.217340 0.457933 0.205943 -0.192702 0.818357 0.265001 -0.363065 -0.183509 0.063507 -0.082943 0.409466 -0.644908 -0.363892 -0.237420 0.251535 -0.530767 0.498413 -0.150510 0.414391 0.158442 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 1.076277 -0.580483 -0.353969 1.269001 0.480317 -0.273666 0.175427 0.357429 0.307290 -2.057668 -0.935937 0.739662 0.131768 -0.221115 0.328195 0.578590 0.735284 0.545022 -1.570692 0.439959 0.288332 -0.008055 -0.565165 -0.127942 0.031532 -0.696516 0.127458 0.395882 0.257045 1.267870 -0.822559 0.532987 1.091390 -0.160118 0.789141 1.087267 0.393779 -0.245513 -0.151174 -0.152077 2.206262 0.423453 0.054601 0.780107 0.471385 1.483728 -0.193799 2.128975 0.565607 -0.567801 1.032392 -0.688060 -0.524464 0.126981 -1.705737 0.769375 1.097520 0.476527 -1.143112 0.696042 -0.308341 0.453323 0.543732 -0.102761 1.573321 0.779834 0.715764 1.108961 1.744266 -0.875406 0.070976 0.440148 0.939885 0.349558 0.954588 -0.827182 -0.372388 -1.406437 0.005162 -0.989821 0.343641 -0.442810 1.984310 -1.346979 0.144127 0.928865 0.213057 1.352355 -0.761110 0.032013 -1.519738 0.135758 0.060960 1.656383 0.049705 0.310080 -0.353595 0.520482 -0.229407 0.621146 0.176161 -1.318469 -1.080369 -2.512953 -1.464411 -0.795573 -0.069486 -0.045071 -1.794978 0.005474 0.699338 1.021733 -1.974400 0.026932 0.375554 0.286930 0.822423 0.481968 -0.850345 -0.273191 -0.070193 0.488710 0.160313 -0.526167 0.063862 -1.192371 0.210119 0.343759 0.633100 -0.121946 -1.078819 -0.191887 0.163745 0.203593 -0.215889 0.258231 0.481451 -1.243647 0.798263 -0.688661 0.980693 -1.619686 -0.645155 -0.972270 -1.158420 -0.501343 2.374137 0.619735 1.481711 0.421416 -0.828174 -0.437188 -1.775510 -2.230442 0.191288 -0.462729 0.384063 0.416520 -0.182718 0.174260 -0.620568 -0.183633 0.356264 -1.061033 -0.587844 -0.365389 0.762644 -0.347693 -0.371697 -1.121067 -0.001358 1.054926 -0.045254 0.798896 -0.621094 -1.528131 -1.537447 -0.938872 1.132421 -0.612539 0.562160 -0.264029 -0.114317 -1.273085 0.265308 -1.055793 0.131701 -0.525020 -0.843591 -1.588651 0.388290 -0.432926 -0.092174 0.262148 -1.284354 0.638468 0.285831 0.742081 0.078463 0.288497 -0.065045 -1.875829 -1.548926 -0.145007 -0.309345 1.612078 0.778850 0.064675 -0.449087 -0.702761 -1.195947 1.030178 -1.896696 0.511875 0.498593 -0.823003 0.911551 -1.059037 -0.522422 -1.278036 0.736732 0.230462 -1.540083 1.839024 1.097605 -1.357497 -0.307922 -1.024868 0.780473 0.411535 1.665893 -0.717023 -0.302200 0.565371 0.099279 -0.171086 -0.691837 0.714870 -0.251516 0.545233 -1.531846 -0.771336 0.906273 1.099425 -0.190010 0.105378 0.463394 0.101311 0.048277 1.649746 0.610063 0.275494 -1.110064 -2.668490 0.484699 0.421496 0.027990 0.507956 -1.124913 -0.438582 0.064854 -0.153640 1.426722 0.441347 0.486364 1.301899 -1.586709 -1.455801 -0.412611 -0.159164 0.292977 -0.604504 0.716061 -0.921530 -0.036595 -0.400587 0.659339 -0.300865 -0.589882 -0.723515 0.436469 0.986730 0.376467 -0.290055 1.415128 0.389740 -0.677448 -0.000945 -0.071141 0.045575 0.352118 -0.997472 -0.443892 -0.212917 0.391572 -0.971945 0.969005 -0.264228 0.470664 0.260667 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = 1.861687 -0.904175 -0.945543 2.187566 0.552359 -0.394092 0.251733 0.360690 0.524669 -2.891868 -1.065753 2.403687 0.267543 -0.358844 0.002695 1.042886 1.150282 0.566871 -2.531383 0.641236 0.034135 -0.292602 -1.386861 -0.282212 -0.047673 -1.126452 1.425007 0.855689 0.220795 1.821962 -1.053582 0.886781 1.508912 -0.245969 1.450260 1.573944 0.270851 -0.350380 -0.856221 -0.502078 3.196890 1.026547 -0.026680 1.315705 0.717735 2.294337 0.346103 2.879088 1.187005 -0.674409 0.983102 0.596870 -1.023043 -0.158903 -2.731922 0.741583 1.098149 0.108462 -1.618811 1.056191 -0.452485 0.637980 0.898401 0.648610 2.597384 0.657363 1.582011 1.739198 2.510069 -1.353466 0.208183 0.687743 1.658308 0.723473 2.123739 -1.033552 -1.531888 -0.806851 0.021223 -1.536050 0.435446 -0.582879 2.851752 -1.854429 -0.177366 0.627468 0.578312 2.089808 -1.386390 -0.066491 -2.234325 0.126896 -0.197208 3.076584 0.232563 0.874777 -0.496160 0.903408 -0.326413 0.844595 0.388589 -2.398752 -0.328167 -3.578216 -1.779937 -1.537984 -0.249404 -0.099055 -2.366474 0.172693 0.329391 2.209742 -2.872300 -0.038962 0.463341 -0.098428 2.225475 0.217148 -0.654375 -0.030429 -0.051949 0.793371 0.400960 -0.797194 0.152591 -0.791221 0.553479 0.532832 0.950027 0.318340 -2.286456 -0.135355 0.707750 0.409476 -0.188991 0.623017 0.735109 -1.925829 1.073055 -1.186210 1.588044 -2.360924 -1.020568 -1.380088 -1.598773 -0.841263 2.592788 1.131204 2.474800 0.247779 -0.605984 -0.397086 -2.895523 -3.909312 0.431519 -0.528963 -0.203097 0.502191 -0.219742 0.266058 -1.364397 -0.152234 1.242043 -1.553203 -0.995312 -0.496467 1.173554 -0.150352 -0.598374 -1.019678 -0.203669 0.856217 0.900591 1.670401 -0.899440 -3.965026 -2.605244 -1.138353 1.701611 -0.980861 0.429444 -0.381228 -0.775014 -1.560822 0.183447 -1.552166 0.486120 -0.878695 -0.885347 -2.326774 0.561549 -0.575023 -0.005826 0.174680 -2.004203 0.883952 0.569495 0.540673 -0.008119 0.528298 0.033292 -2.414923 -1.826073 0.450463 -0.506269 2.676729 1.160782 0.021334 -0.716895 -0.884882 -2.051941 1.322829 -2.970376 1.029484 0.900663 -1.430488 1.288330 -1.604298 -0.676944 -1.411494 1.211040 0.149723 -2.065159 3.080410 2.188629 -2.145181 -0.403355 -0.843226 1.166801 0.463423 2.285020 -1.594112 -0.851303 0.741792 0.211779 -0.217068 -0.458727 0.930094 -0.241474 0.498407 -2.330736 -1.080618 1.537804 1.403505 -0.264718 -0.261647 0.332628 -0.678202 0.000000 2.443445 0.980740 0.997870 -2.035623 -4.258065 0.628225 -0.610486 -0.343985 0.748203 -1.399834 -0.763582 0.174693 -0.943826 2.078865 -0.409183 -0.248709 1.873428 -2.774388 -2.233171 -1.179695 -0.731435 0.338766 -0.568686 1.464808 -1.351875 -0.044731 -0.911557 1.093771 -1.101738 -0.684319 0.190577 0.959589 1.244196 0.608628 -0.619944 2.117409 0.519168 -0.751293 -0.314181 -0.124705 -0.481660 0.668404 -2.333994 -0.661638 -0.350665 0.919775 -1.470080 1.242878 -0.091266 1.215258 0.279314 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = 0.016757 -0.203777 -0.043922 0.325284 0.101712 0.094921 -0.004301 -0.151126 -0.012636 -0.418116 -0.127438 0.071512 -0.002731 0.108711 0.097415 0.104148 0.166878 0.015436 -0.065549 -0.018016 0.005801 -0.116079 -0.053030 0.136688 -0.017345 -0.224690 0.234429 0.135965 0.056158 0.222286 -0.142945 0.181009 0.201642 -0.002413 0.156498 0.152286 0.192747 -0.009894 -0.265393 0.015712 0.410482 -0.078989 0.014836 0.080456 0.026838 0.286240 0.082360 0.279417 0.268051 -0.121071 0.193531 -0.056675 0.019511 -0.034506 -0.367735 0.094834 0.036906 0.055416 -0.219089 0.075870 -0.121175 0.087049 0.037168 0.043600 0.312987 -0.026892 0.254843 0.206696 0.170144 -0.246171 -0.059255 0.170261 0.116049 0.137839 0.161759 0.004484 -0.084284 -0.295059 -0.053197 0.047458 -0.022980 -0.018295 0.184422 -0.170247 -0.181657 0.141274 -0.129076 0.224172 -0.109062 0.099262 -0.348607 -0.006576 0.157541 0.115126 0.170448 -0.059205 -0.023507 0.084677 -0.010743 0.170515 0.093780 -0.260609 -0.122180 -0.428307 -0.332157 -0.163581 0.116728 0.001564 -0.281079 0.022461 0.160459 0.263376 -0.252083 0.045149 0.069662 0.121898 0.215933 -0.129344 -0.064714 -0.033264 0.147230 0.100497 0.186126 -0.040084 0.115616 -0.180433 0.193673 -0.010076 0.160077 -0.017371 -0.015613 -0.122373 0.047134 0.125759 -0.030873 -0.015707 0.121738 -0.135995 0.190655 -0.021566 0.223204 -0.225371 -0.016904 -0.165912 -0.149592 -0.097569 0.577688 0.167284 0.373394 0.059967 -0.292588 -0.006831 -0.294329 -0.529406 -0.004309 0.054114 -0.012583 0.184468 -0.074045 0.193383 -0.132475 0.046739 0.174533 -0.171289 -0.133898 0.046810 -0.319396 -0.012026 -0.086455 -0.239485 0.037262 0.085003 -0.005670 0.256555 -0.083097 -0.386637 -0.247549 -0.185923 0.179949 -0.154842 0.099212 0.019964 -0.123681 -0.306679 0.086183 -0.211593 -0.014157 -0.069201 -0.255176 -0.281055 0.073181 -0.101521 -0.058561 0.129704 -0.264356 0.082178 -0.062806 -0.050483 0.112663 0.051777 -0.033422 -0.223072 -0.239704 -0.004579 -0.170580 0.255319 0.061046 -0.043157 -0.098565 -0.193798 -0.197626 0.162955 -0.321777 0.095838 0.135687 -0.211174 0.049433 -0.188262 -0.098543 -0.047722 0.143715 0.134641 -0.282375 0.258660 0.310143 -0.212347 -0.090193 -0.037322 0.109530 0.042212 0.291360 -0.169132 0.029309 0.044903 0.139486 0.017094 -0.022865 0.130275 -0.004025 -0.072909 -0.296499 -0.212160 0.114920 0.192001 0.017071 -0.044785 0.167972 0.056610 -0.044895 0.285332 0.110399 0.111028 -0.119956 -0.416287 0.128984 0.033631 -0.102847 0.227198 -0.265663 -0.003281 0.022657 -0.189015 0.223811 -0.076889 0.002998 0.284451 -0.205149 -0.214278 -0.128964 -0.213134 -0.030685 -0.117394 0.267237 -0.160245 -0.004775 -0.129250 0.019494 -0.192769 0.042902 0.044585 0.063843 0.086532 0.080924 0.122652 0.226865 0.073799 -0.175517 -0.062654 0.061781 -0.089008 0.170797 -0.338811 -0.140702 -0.006962 0.073364 -0.130198 -0.038748 -0.132507 0.037173 0.036279 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = 0.759895 -0.865838 -0.154336 0.916326 0.472570 -0.131944 0.106700 0.040187 0.185430 -1.310056 -0.505596 0.651801 -0.021825 -0.211099 0.202610 0.339837 0.615506 -0.022703 -1.056089 0.314971 -0.062187 -0.286807 -0.573421 0.083918 -0.001406 -0.664357 0.657687 0.602413 -0.017686 0.661603 -0.470203 0.388657 0.587161 0.009216 0.727130 0.687885 0.168983 -0.233265 -0.287739 -0.000621 1.600232 0.228084 0.032118 0.501396 0.515212 0.962692 0.065434 1.620292 0.943964 -0.208592 0.933015 -0.143081 -0.319775 -0.023208 -1.442106 0.303647 0.547788 -0.085093 -0.806926 0.409675 -0.352560 0.281221 0.285484 0.268700 1.348341 0.248354 0.832944 0.609751 1.076794 -0.577266 -0.103695 0.549870 0.877921 0.479761 0.603781 -0.547295 -0.454507 -0.891385 0.054129 -0.339804 0.185370 -0.408694 0.943901 -0.562056 -0.280491 0.366812 -0.023980 0.823943 -0.549836 0.037202 -1.116523 0.147530 0.242256 1.094403 -0.001972 0.308617 -0.054860 0.259959 -0.168607 0.584970 0.159337 -0.986857 -0.433153 -1.809606 -0.967071 -0.555604 0.001888 -0.311695 -1.143647 0.195397 0.228255 0.583732 -0.982485 -0.081957 0.196787 0.044802 0.898897 0.157140 -0.352401 -0.340029 0.215259 0.554350 0.227484 -0.162737 0.132727 -0.975814 0.572714 0.264504 0.469920 -0.096976 -0.630160 -0.072626 0.274887 0.388408 -0.148499 0.030833 0.207500 -0.759636 0.464892 -0.344923 0.719881 -1.087163 -0.402294 -0.884130 -0.534206 -0.243102 1.763213 0.559093 1.259433 0.427605 -0.515782 -0.084064 -1.179717 -1.844687 -0.039727 -0.376768 0.019451 0.146715 -0.090009 0.183039 -0.383762 -0.185662 0.395950 -0.681560 -0.418279 -0.366027 -0.238127 -0.057660 -0.246101 -0.523167 0.053567 0.611722 0.107763 0.673625 -0.340048 -1.852929 -0.918624 -0.651916 0.607365 -0.403138 0.221507 -0.062236 -0.227151 -0.967781 0.227879 -0.613080 0.081819 -0.446184 -0.718129 -0.900668 0.189568 -0.308381 0.234671 0.061838 -0.834431 0.353160 0.070766 0.512745 0.185636 0.376313 -0.192047 -1.175432 -1.066920 -0.042439 -0.058781 1.332083 0.333805 -0.021322 -0.140883 -0.475720 -0.888786 0.604161 -1.451222 0.292720 0.587937 -0.905561 0.494683 -0.631534 -0.317197 -0.502935 0.502759 0.086386 -0.991790 1.306808 0.968941 -1.053579 -0.451311 -0.625463 0.454896 0.180882 1.172693 -0.474158 -0.017949 0.273434 0.415223 -0.133156 -0.229257 0.476712 0.034664 0.242350 -1.221289 -0.852007 0.593790 0.754933 -0.110395 -0.223972 0.099034 0.082362 -0.123981 1.214557 0.241613 0.416666 -0.707626 -2.132402 0.189582 0.334590 -0.219620 0.624941 -0.920692 -0.410276 -0.109996 -0.392195 0.991611 0.042522 0.179435 0.832828 -0.863416 -0.899795 -0.512166 -0.365581 -0.016434 -0.368185 0.694076 -0.655259 -0.145223 -0.480642 0.423014 -0.439165 -0.180874 -0.213451 0.259848 0.376674 0.333573 -0.183735 0.817028 0.294037 -0.343746 -0.254204 0.113312 -0.149773 0.668015 -0.928627 -0.424085 -0.330717 0.252637 -0.471898 0.447590 -0.023439 0.665128 0.073421 -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&) = 1.021874 -1.329362 -0.360532 1.356590 0.539430 0.151022 0.152298 0.016931 0.388425 -2.000130 -0.754492 1.782845 -0.051011 -0.030148 -0.022418 0.408682 0.919986 0.095597 -2.089437 0.172053 -0.113941 -0.374416 -0.591620 -0.008116 0.043526 -0.804593 1.756114 0.832420 0.118786 0.987454 -0.571132 0.672471 0.815924 0.206748 0.957704 0.862125 -0.133272 -0.442940 -0.873639 -0.634381 2.169007 0.565425 0.002881 0.935773 0.382787 1.382841 0.554678 1.883182 2.112397 -0.277239 0.840580 0.450387 -0.672950 -0.229517 -2.114161 0.186586 0.218028 -0.267146 -0.812288 0.461766 -0.154757 0.379377 0.371454 0.176738 1.988232 -0.057872 1.428040 0.862107 1.191118 -0.968742 -0.023347 0.587633 1.114350 0.823613 1.135703 -0.814741 -0.979762 -0.906726 -0.087389 -1.107153 0.122093 -0.603469 1.359072 -0.717828 -0.351561 -0.045969 -0.006676 1.166814 -0.592736 0.034964 -1.745019 0.163920 0.410869 1.550705 0.225731 0.387269 -0.026137 0.214574 -0.302496 0.639984 0.478832 -1.472808 0.186414 -2.609577 -0.738296 -0.992989 0.174993 -0.195809 -1.289593 0.535280 -0.241777 1.422496 -1.476815 -0.403972 0.206495 -0.136366 1.241122 -0.217827 -0.054944 -0.259750 0.372186 0.859592 0.471170 -0.566702 0.219171 -0.674473 0.653367 0.207709 0.712073 0.234265 -1.090551 -0.445297 0.579046 0.842278 0.013725 0.257191 0.458461 -0.612493 0.572734 -0.615108 1.027687 -1.224199 -0.414347 -0.905726 -0.365426 -0.622525 2.359881 0.975123 1.813886 0.411542 -0.306362 -0.008196 -1.545429 -2.787276 0.190640 -0.310775 -0.246705 0.402664 -0.103491 0.476064 -0.884348 -0.108387 0.728952 -0.793749 -0.725538 -0.281893 -0.652798 0.066289 -0.276171 -0.485690 0.075801 0.439564 0.319881 1.097378 -0.461932 -3.375170 -1.422457 -0.794633 0.946017 -0.773106 0.065602 -0.171594 -0.506800 -0.791923 0.018007 -0.889591 0.117888 -0.388367 -1.156815 -1.316027 0.318944 -0.446243 0.409404 0.371194 -1.193383 0.476180 0.356312 0.762601 0.127494 0.543063 -0.108692 -1.445542 -1.111082 0.101320 -0.393027 1.863557 0.435393 -0.177771 -0.783137 -0.683017 -1.145541 0.803156 -2.128443 0.712285 0.499739 -1.281282 0.437619 -0.927779 -0.011728 -0.360584 0.708190 0.229511 -2.001458 1.733104 1.466023 -1.335094 -0.453330 -0.592613 0.559393 0.124137 1.315363 -0.976196 -0.425635 0.285057 0.424299 -0.071821 -0.242426 0.489789 0.181836 -0.153867 -1.806476 -1.225680 0.939263 0.659451 -0.113127 -0.385039 0.449115 -0.110704 -0.022038 1.764249 0.436252 0.763867 -1.199139 -3.412469 0.309578 0.772374 -0.212571 0.961725 -1.350769 -0.543109 0.056304 -1.078644 1.214876 -0.440231 -0.287336 1.142346 -1.247044 -1.085998 -0.967988 -0.808253 0.099435 -0.143084 1.107552 -0.764503 -0.178704 -0.771970 0.429372 -0.893856 -0.133954 0.406574 0.711331 0.647520 0.580231 -0.054117 1.104750 0.407238 -0.517332 -0.332246 -0.003189 -0.648091 0.828363 -1.849855 -0.391072 -0.077202 0.437283 -0.718865 0.275593 0.085728 0.931596 -0.218103 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = 0.275895 -0.458165 0.211140 0.401476 0.395297 -0.027731 0.066154 0.016286 -0.001351 -0.706610 -0.304875 -0.123735 -0.105585 -0.081255 0.247152 0.076801 0.354742 -0.048854 -0.538280 0.141693 0.048131 -0.123596 -0.058723 0.066560 0.052516 -0.402476 0.155465 0.397376 -0.003526 0.323421 -0.316784 0.155777 0.298211 0.121201 0.398415 0.362273 0.210322 -0.166295 -0.071438 0.099292 0.892349 -0.041531 0.008661 0.180363 0.351604 0.490146 -0.004725 0.677133 0.482650 -0.112298 0.530175 -0.457223 -0.086357 0.011081 -0.750356 0.209760 0.366075 0.098438 -0.472169 0.192173 -0.228016 0.141147 0.076523 -0.018557 0.624330 0.090442 0.354807 0.232274 0.552069 -0.339965 -0.175940 0.367791 0.450236 0.284811 0.022642 -0.268264 0.006544 -0.969326 0.034661 -0.149068 0.059734 -0.217048 0.289262 -0.199760 -0.140020 0.398348 -0.219605 0.362769 -0.214813 0.019396 -0.613182 0.123189 0.269566 0.344320 -0.017096 0.005565 0.095754 0.111040 -0.019803 0.439920 0.096848 -0.405375 -0.484827 -1.015048 -0.571381 -0.202420 0.103904 -0.255492 -0.570994 0.109690 0.360557 0.149383 -0.382642 -0.047407 0.136170 0.196419 0.059838 -0.091288 -0.219475 -0.326987 0.134492 0.312658 0.140560 -0.090169 0.078153 -0.697302 0.326693 0.114370 0.297088 -0.207052 0.025574 -0.121547 0.069202 0.196731 -0.131075 -0.134992 0.042521 -0.327633 0.263228 -0.124981 0.403709 -0.492584 -0.049399 -0.510263 -0.168145 -0.075136 1.083704 0.225987 0.479638 0.401943 -0.401138 -0.015992 -0.436243 -0.824452 -0.066140 -0.157132 0.181357 0.089294 -0.080404 0.152229 -0.083086 -0.190505 0.035484 -0.346609 -0.196473 -0.229908 -0.423546 -0.079857 -0.118087 -0.393871 0.167287 0.548770 -0.188541 0.242076 -0.218102 -0.520043 -0.305152 -0.486195 0.272820 -0.210238 0.138497 0.005436 0.014283 -0.589156 0.296227 -0.317236 -0.007427 -0.237792 -0.519849 -0.443669 0.085343 -0.227406 0.134924 0.119070 -0.397262 0.169067 -0.137402 0.295243 0.165499 0.162852 -0.155519 -0.624384 -0.654971 -0.217088 0.045769 0.576609 0.037910 -0.011842 -0.089477 -0.312057 -0.313076 0.396799 -0.545351 0.059578 0.282174 -0.502940 0.242229 -0.233827 -0.154187 -0.244613 0.248832 0.132312 -0.451011 0.610127 0.452893 -0.558396 -0.380026 -0.500594 0.178671 0.116343 0.711850 -0.133394 0.151032 0.136314 0.290216 -0.082163 -0.210742 0.301243 0.073868 0.179066 -0.678930 -0.582729 0.204346 0.493528 -0.049630 0.002453 0.162202 0.353678 -0.119756 0.673614 0.046241 0.166230 -0.239670 -0.931002 0.106440 0.546226 -0.006491 0.387524 -0.524483 -0.255089 -0.136104 0.002953 0.557132 0.372776 0.266966 0.466153 -0.204635 -0.412543 -0.173710 -0.161827 -0.037677 -0.327434 0.310150 -0.363011 -0.121828 -0.245519 0.140501 -0.089323 -0.041883 -0.384846 0.000000 0.165558 0.244344 -0.018146 0.400419 0.177653 -0.264067 -0.102584 0.135843 0.050029 0.441384 -0.219628 -0.285333 -0.224292 0.018731 -0.157720 0.196533 -0.053409 0.269284 0.045480 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = 1.144882 -0.396381 0.151016 0.882197 0.360150 -0.888724 0.551168 0.951743 0.215122 -1.748149 -0.718385 0.361151 0.010421 -0.740772 0.225629 0.179341 0.533792 0.848483 -1.969354 0.649112 0.391469 0.506776 -0.666895 -0.730651 0.021716 -0.423044 -0.604773 0.716311 0.093353 1.264700 -0.764517 -0.232951 0.971506 -0.071734 0.680529 1.397848 0.876688 -0.015908 0.494353 0.210408 2.167333 0.814399 -0.277435 0.801819 0.985389 1.444492 -0.072444 1.611640 -0.381317 -0.520918 0.605289 -1.079104 -0.761078 -0.193847 -1.390398 0.694549 1.824993 1.175469 -1.230519 1.233492 -0.318553 0.260163 0.638657 -0.059698 1.267430 1.036668 0.164554 0.817596 2.169664 -0.768850 -0.036391 0.284780 1.246291 -0.021782 0.606586 -0.863958 -0.444140 -2.478211 0.128745 -1.787775 0.227132 -0.153981 1.868129 -1.367454 0.852011 1.478662 0.267189 0.909398 -0.916503 -0.627164 -1.250332 0.144574 -0.233024 2.452017 -0.188919 0.411668 -0.047274 0.783231 0.360467 0.762037 0.073699 -1.130345 -1.310849 -2.921607 -1.103908 -0.626205 -0.647271 -0.405456 -1.440762 -0.586479 1.387135 0.809979 -2.054028 0.032740 0.668527 0.239663 0.160764 -0.149379 -0.848455 0.169023 -0.629543 0.117141 0.141314 -0.912409 -0.291470 -0.799405 0.023915 0.480715 0.403827 -0.179669 -1.305750 -0.003972 0.114507 -0.058682 -0.437866 0.031560 -0.213344 -1.403738 0.637669 -1.364055 1.103087 -1.654858 -0.202304 -0.652186 -1.295626 -0.250774 1.811437 0.115357 0.700773 0.248197 -0.772259 -0.468077 -1.404482 -2.403265 0.782240 -0.348260 0.833669 -0.174137 -0.170372 -0.527510 -0.523921 -0.695688 0.216163 -0.907426 -0.171130 -0.460096 1.685937 -0.408296 -0.472749 -1.052344 0.282352 1.764972 0.355622 0.171326 -1.024193 -0.908016 -1.160300 -0.925735 1.109986 -0.250554 0.200799 -0.113687 -0.095248 -1.377429 0.720147 -0.911171 0.666400 -0.693751 -0.645261 -1.524311 0.289035 -0.486755 0.180675 0.062422 -0.965166 0.379208 -0.057149 0.593837 -0.161159 0.125113 0.485001 -1.922363 -1.676451 -0.309910 0.289163 1.506700 0.624878 0.564488 -0.337739 -0.209268 -1.115177 1.160417 -1.421266 0.219584 0.296692 -0.876091 1.589580 -0.634630 -0.590738 -1.550015 0.787799 0.306175 -0.609043 2.225367 1.124060 -1.370284 -0.600704 -0.969444 0.411050 0.791626 1.886943 -0.859062 -0.623553 0.906212 -0.462679 -0.254080 -0.903053 0.708330 -0.165040 1.262466 -1.484392 -0.655921 0.741447 1.261368 -0.266198 0.558993 0.152889 0.079632 -0.503022 1.804285 0.334761 0.282801 -1.166881 -2.060490 0.677393 0.232503 0.471289 0.120390 -0.831179 -0.719083 0.155450 0.709441 1.373866 1.616876 0.137247 1.167114 -1.582045 -1.562743 -0.182485 0.219566 0.618526 -0.988968 0.515849 -0.847257 0.175081 -0.217831 0.785521 0.350667 -0.595619 -1.266474 0.095138 0.832824 0.395839 -1.018174 1.587654 -0.163467 -0.661907 0.212398 -0.232769 0.616721 0.431166 -0.121716 -0.429475 -0.747626 0.638807 -0.870170 1.735392 -0.169511 0.464255 0.789743 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.305467 -0.477007 0.178763 0.439653 0.397753 -0.040175 0.067357 0.010957 0.006054 -0.743305 -0.314434 -0.078834 -0.096510 -0.094236 0.246981 0.100444 0.373859 -0.043901 -0.547083 0.156306 0.037368 -0.139569 -0.108575 0.074265 0.043207 -0.423007 0.176292 0.408694 -0.007065 0.347143 -0.327741 0.174363 0.319137 0.106512 0.424667 0.386415 0.216728 -0.166458 -0.082049 0.103695 0.941764 -0.030899 0.015002 0.196610 0.366046 0.523804 -0.007190 0.743652 0.493559 -0.119256 0.561927 -0.435953 -0.093108 0.013352 -0.798714 0.218105 0.378664 0.085711 -0.503431 0.211047 -0.244338 0.153451 0.093490 0.009864 0.675263 0.105804 0.382037 0.263985 0.590431 -0.352894 -0.168528 0.379430 0.478483 0.291727 0.062410 -0.274424 -0.019637 -0.956336 0.035512 -0.145607 0.075864 -0.223102 0.341382 -0.228713 -0.153512 0.403900 -0.203559 0.395872 -0.243503 0.020126 -0.646651 0.121688 0.262977 0.391341 -0.012404 0.027575 0.079547 0.126512 -0.032175 0.447722 0.091175 -0.449041 -0.489152 -1.066735 -0.615274 -0.225630 0.089753 -0.263347 -0.615267 0.106426 0.363652 0.181107 -0.426004 -0.040839 0.138071 0.183628 0.119664 -0.067074 -0.237816 -0.325480 0.136953 0.327261 0.145827 -0.083765 0.083741 -0.723312 0.344720 0.125069 0.310035 -0.200713 -0.020384 -0.109523 0.082424 0.201708 -0.138395 -0.123937 0.052246 -0.364400 0.279822 -0.137317 0.425977 -0.537542 -0.076428 -0.541986 -0.208479 -0.083120 1.127370 0.249889 0.538288 0.401261 -0.416915 -0.020476 -0.496727 -0.896146 -0.064465 -0.175476 0.169367 0.091670 -0.082409 0.149396 -0.101965 -0.188516 0.068748 -0.375348 -0.211735 -0.239629 -0.399531 -0.078337 -0.132219 -0.407927 0.156916 0.555172 -0.163624 0.271541 -0.229301 -0.598881 -0.348848 -0.494098 0.295446 -0.220591 0.150915 0.005282 -0.005397 -0.623870 0.294259 -0.338874 -0.001223 -0.259751 -0.521897 -0.476225 0.091455 -0.231703 0.131422 0.107998 -0.428520 0.186127 -0.122877 0.295371 0.166741 0.176074 -0.158189 -0.656988 -0.684367 -0.200304 0.040518 0.623120 0.069123 -0.007591 -0.084932 -0.322647 -0.357782 0.408909 -0.608448 0.074147 0.315699 -0.531967 0.261970 -0.265796 -0.175888 -0.261206 0.268140 0.126371 -0.484726 0.655145 0.490279 -0.596940 -0.383453 -0.508717 0.203773 0.120500 0.748188 -0.153463 0.149625 0.148634 0.300748 -0.085910 -0.209771 0.313815 0.069487 0.188892 -0.714428 -0.595163 0.235012 0.516026 -0.053223 -0.016540 0.149347 0.331321 -0.120681 0.708554 0.060865 0.184491 -0.269012 -1.000857 0.112021 0.507536 -0.024823 0.404150 -0.543731 -0.259201 -0.137943 -0.028423 0.587843 0.340885 0.261234 0.493519 -0.254714 -0.451823 -0.195076 -0.172803 -0.037470 -0.337810 0.341521 -0.386771 -0.122978 -0.263761 0.168201 -0.113489 -0.050739 -0.378365 0.016446 0.176432 0.247087 -0.033618 0.431186 0.182023 -0.268535 -0.113969 0.135948 0.042331 0.458817 -0.273389 -0.301530 -0.237160 0.039351 -0.183142 0.219348 -0.058400 0.298872 0.058188 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = 1.118108 -0.355712 0.128151 0.870017 0.316418 -0.881124 0.563072 0.948405 0.212863 -1.709423 -0.702312 0.389961 0.021488 -0.733486 0.201209 0.160047 0.529344 0.876023 -1.919036 0.619890 0.378950 0.504795 -0.696960 -0.722036 -0.006053 -0.398456 -0.628492 0.714285 0.096485 1.264783 -0.729877 -0.247020 0.967669 -0.088022 0.657049 1.404183 0.891882 0.009788 0.490674 0.196209 2.124713 0.813284 -0.274485 0.799017 0.957805 1.438863 -0.064983 1.573640 -0.418063 -0.522695 0.576856 -1.059481 -0.752913 -0.213198 -1.358555 0.663906 1.800832 1.187699 -1.220488 1.255000 -0.311926 0.254118 0.644401 -0.052186 1.230300 1.039588 0.127592 0.820967 2.132680 -0.774125 -0.022670 0.256302 1.208081 -0.042193 0.584215 -0.833212 -0.442398 -2.422317 0.128509 -1.790041 0.217325 -0.124077 1.882896 -1.368754 0.862809 1.462843 0.267869 0.879387 -0.915776 -0.640725 -1.233379 0.114396 -0.243926 2.427749 -0.165545 0.401794 -0.037859 0.781689 0.364644 0.737000 0.047206 -1.130520 -1.288947 -2.884916 -1.079435 -0.626851 -0.670032 -0.389355 -1.388109 -0.631165 1.387984 0.813057 -2.049911 0.033918 0.665432 0.217981 0.132867 -0.130122 -0.845991 0.210121 -0.639949 0.087777 0.172062 -0.911195 -0.286458 -0.733484 -0.008125 0.468311 0.383614 -0.144822 -1.329362 0.000170 0.126055 -0.075665 -0.439793 0.035273 -0.232675 -1.363850 0.629642 -1.373660 1.102605 -1.633658 -0.192004 -0.613579 -1.308200 -0.257632 1.755640 0.116816 0.692350 0.209146 -0.756683 -0.452821 -1.387308 -2.387525 0.817132 -0.320417 0.832369 -0.187142 -0.175964 -0.540478 -0.539026 -0.677841 0.227157 -0.885006 -0.164849 -0.421911 1.727432 -0.390023 -0.483507 -1.035052 0.292580 1.727640 0.384085 0.163589 -1.037514 -0.889787 -1.141520 -0.882952 1.111654 -0.239405 0.181836 -0.087734 -0.128061 -1.341603 0.696437 -0.904392 0.670713 -0.693696 -0.606766 -1.522232 0.302880 -0.479660 0.160718 0.074963 -0.949614 0.371686 -0.035298 0.564837 -0.178632 0.117247 0.517685 -1.866583 -1.624636 -0.290846 0.277378 1.472083 0.659273 0.582938 -0.334771 -0.187004 -1.102125 1.136678 -1.390262 0.231571 0.290385 -0.860802 1.585657 -0.631713 -0.580273 -1.529814 0.788111 0.330613 -0.625897 2.181117 1.119205 -1.343965 -0.578934 -0.922733 0.391116 0.790488 1.850130 -0.867393 -0.648952 0.921410 -0.495430 -0.240243 -0.891312 0.674915 -0.147330 1.242341 -1.458485 -0.609738 0.755239 1.225279 -0.255470 0.559714 0.149715 0.055941 -0.492887 1.786455 0.330794 0.278252 -1.154678 -2.020922 0.704485 0.196799 0.472562 0.106604 -0.796065 -0.690436 0.176707 0.679201 1.331058 1.576996 0.086488 1.160092 -1.577730 -1.555112 -0.193359 0.225176 0.644374 -0.979011 0.514923 -0.828433 0.205736 -0.217716 0.782092 0.360276 -0.576825 -1.251086 0.109905 0.820960 0.373141 -1.017744 1.586633 -0.210152 -0.657468 0.220034 -0.251317 0.612500 0.416442 -0.148794 -0.418160 -0.734603 0.675967 -0.878179 1.722854 -0.173914 0.446939 0.821614 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = 1.163168 -0.217177 -0.002233 0.897715 0.240669 -0.998702 0.562253 1.017584 0.129191 -1.739747 -0.746420 0.375124 0.078985 -0.820319 0.215056 0.231868 0.473652 0.942619 -2.046688 0.697929 0.446890 0.508338 -0.814297 -0.780844 -0.026020 -0.399011 -0.796389 0.697519 0.057774 1.326669 -0.750381 -0.197931 1.004872 -0.112627 0.712278 1.446005 0.777450 0.011498 0.637116 0.265322 2.152894 0.918485 -0.323979 0.715111 0.973720 1.488605 -0.144113 1.500780 -0.768435 -0.541900 0.538488 -0.976965 -0.773819 -0.156702 -1.349897 0.648871 1.876943 1.243711 -1.241757 1.306680 -0.431765 0.262118 0.709546 -0.015367 1.359895 1.090338 0.143775 0.894976 2.208998 -0.721007 0.069661 0.174400 1.164602 -0.229543 0.596669 -0.736172 -0.463010 -2.449931 0.152205 -2.022098 0.231888 -0.026544 2.063585 -1.454234 0.923669 1.479095 0.437435 0.982099 -1.037296 -0.682563 -1.238363 0.079887 -0.398416 2.596915 -0.156651 0.462867 -0.094862 0.878175 0.374783 0.689075 -0.077600 -1.177794 -1.351669 -2.979448 -1.127217 -0.633904 -0.755099 -0.367287 -1.496779 -0.706680 1.531767 0.937659 -2.200542 0.094161 0.669845 0.187451 0.120642 -0.072557 -1.007060 0.297086 -0.776489 0.089828 0.185209 -0.882787 -0.292133 -0.759961 -0.019931 0.492451 0.386236 -0.095559 -1.562531 0.078014 0.190218 -0.262237 -0.456263 0.140947 -0.203977 -1.393378 0.639478 -1.485469 1.146663 -1.750237 -0.132482 -0.657589 -1.478390 -0.241907 1.566331 0.287148 0.570368 0.157239 -0.726257 -0.417430 -1.557878 -2.470862 0.844068 -0.342231 0.848698 -0.290498 -0.184912 -0.611355 -0.563000 -0.628216 0.318837 -0.952502 -0.177822 -0.472767 2.158635 -0.324662 -0.542273 -1.008646 0.202804 1.730593 0.428976 0.188639 -1.082089 -0.774427 -1.297950 -0.871207 1.168802 -0.220186 0.169628 -0.169633 -0.118743 -1.415459 0.728096 -0.935190 0.713728 -0.735398 -0.464315 -1.572988 0.268810 -0.438021 0.040273 -0.042572 -0.960904 0.386655 0.136190 0.441758 -0.213154 0.084511 0.571041 -1.807037 -1.625416 -0.188011 0.286579 1.460553 0.850275 0.612547 -0.372001 -0.136370 -1.201384 1.206203 -1.323315 0.271841 0.281373 -0.903916 1.694581 -0.706780 -0.683604 -1.537323 0.804919 0.238942 -0.642844 2.280337 1.151367 -1.389637 -0.516539 -0.969191 0.465668 0.819665 1.870441 -0.873248 -0.640775 0.911335 -0.554706 -0.255863 -0.855645 0.692218 -0.239970 1.301367 -1.454743 -0.537513 0.858670 1.250269 -0.251844 0.617254 0.025271 -0.037366 -0.442117 1.772880 0.369920 0.221212 -1.198658 -2.005543 0.698469 -0.081714 0.479214 -0.016504 -0.664587 -0.719892 0.117976 0.667909 1.389221 1.608787 -0.074559 1.170215 -1.704679 -1.649309 -0.283147 0.362874 0.641625 -1.019630 0.497053 -0.831593 0.238644 -0.161594 0.886198 0.440636 -0.720813 -1.352427 0.126391 0.878390 0.363107 -1.182851 1.654163 -0.223465 -0.629497 0.169667 -0.273186 0.618487 0.408582 -0.170490 -0.475353 -0.765478 0.747383 -0.949502 1.821110 -0.158911 0.488624 0.936526 -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.781223 -0.386549 -0.176642 1.382817 0.174333 -1.612869 0.805054 1.630233 0.149724 -2.596255 -1.132514 0.258448 0.206850 -1.307842 0.425159 0.426237 0.630744 1.338512 -3.586426 1.170276 0.812272 0.678737 -1.308161 -1.146393 -0.058406 -0.664289 -1.382536 1.103020 -0.011550 2.047780 -1.142648 -0.141459 1.568984 -0.228569 1.223192 2.215499 0.806011 -0.014893 1.194149 0.643747 3.224897 1.570089 -0.692111 0.731745 1.404050 2.314679 -0.253174 2.149496 -1.443378 -0.845000 0.904120 -1.481089 -1.145661 -0.149143 -2.022189 0.808441 2.971483 1.986510 -1.909961 1.977754 -0.950892 0.407499 1.169564 0.136892 2.358057 1.570991 0.404069 1.427700 3.281425 -0.981867 0.310673 0.063302 1.576303 -0.679962 0.795718 -1.102464 -0.695169 -4.092744 0.381281 -3.365649 0.284179 0.136323 2.910817 -2.242299 1.473863 2.165602 0.802059 1.683308 -1.783710 -1.006249 -1.909732 0.003240 -0.620713 4.067796 -0.313262 0.680261 -0.024157 1.507836 0.509932 0.931567 -0.193240 -1.909149 -2.131197 -4.582533 -1.751936 -0.960605 -1.185223 -0.478921 -2.407901 -1.069904 2.487373 1.202682 -3.437116 0.277384 0.944495 0.263905 0.159903 -0.116274 -1.623820 0.480257 -1.363196 0.302660 0.456671 -1.326346 -0.324127 -1.362217 0.123437 0.950634 0.569505 -0.065859 -2.452330 0.286654 0.508319 -0.584897 -0.728287 0.439554 -0.222010 -2.000322 0.967524 -2.413218 1.873483 -2.768895 -0.040102 -1.135030 -2.193516 -0.345411 2.127724 0.742432 0.466450 0.240155 -1.149163 -0.315911 -2.577997 -3.822143 1.147796 -0.488200 1.264728 -0.625245 -0.336554 -0.920385 -0.784638 -0.757114 0.419462 -1.521026 -0.368770 -0.780739 3.383379 -0.199990 -0.899191 -1.283020 0.217993 2.604227 0.582610 0.466646 -1.636139 -0.997821 -2.162019 -1.267275 1.841244 -0.305505 0.187560 -0.392841 -0.149722 -2.344034 1.218721 -1.462228 1.029136 -1.195537 -0.476208 -2.407283 0.357876 -0.615689 0.153227 -0.235501 -1.458024 0.578132 0.337321 0.665934 -0.321869 0.110070 0.933147 -2.610771 -2.414361 -0.130133 0.414088 2.317741 1.312454 0.858599 -0.449532 -0.142929 -1.805449 1.916771 -1.754652 0.515970 0.405170 -1.602812 2.626889 -1.111815 -1.185260 -2.233634 1.225565 0.249857 -0.747366 3.605323 1.793473 -2.143929 -0.631646 -1.549094 0.835265 1.219336 2.729663 -1.204856 -0.912234 1.239787 -0.773093 -0.392088 -1.199131 1.011206 -0.477125 1.871546 -2.161782 -0.725978 1.471297 1.839210 -0.298463 0.980634 -0.171852 -0.142173 -0.700318 2.617816 0.496225 0.266390 -1.782808 -3.032961 1.038013 -0.182307 0.750885 -0.212788 -0.907352 -1.087936 -0.023153 1.133654 2.153157 2.836611 -0.331471 1.760435 -2.676421 -2.587552 -0.809984 0.763526 0.830331 -1.474623 0.601230 -1.233215 0.443607 -0.178739 1.484328 0.788428 -1.244348 -2.231251 0.271394 1.292097 0.499238 -2.060635 2.528665 -0.330075 -0.881741 0.029077 -0.375055 0.702801 0.723089 -0.036855 -0.818970 -1.118919 1.265644 -1.517482 2.661292 -0.193094 0.861155 1.448256 -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*) = 1.410953 -0.323674 -0.084795 1.017932 0.297010 -1.209764 0.511296 1.249912 0.046673 -2.180522 -1.226458 -0.214989 0.095844 -1.073811 0.650758 0.379600 0.637529 1.017904 -2.882470 1.014941 0.759543 0.431067 -0.883568 -0.668932 0.035370 -0.602397 -1.559288 0.745608 0.006250 1.594895 -1.041796 0.147458 1.271854 -0.109598 1.047011 1.694688 0.278520 -0.245154 1.320890 0.540526 2.696290 0.934464 -0.238431 0.512995 1.148058 1.808998 -0.670457 2.076674 -0.743627 -0.666325 1.301831 -1.792262 -0.769599 0.288735 -1.748616 0.744401 2.248248 1.370991 -1.556794 1.396215 -0.851678 0.438490 0.856367 -0.352625 2.065255 1.393331 0.267505 1.122496 2.557037 -0.613799 0.280179 0.076952 1.205229 -0.468049 0.202737 -0.984919 0.014692 -3.510952 0.246201 -2.553371 0.432850 -0.122663 2.520857 -1.739017 1.100372 1.764905 0.511830 1.484907 -1.271595 -0.633810 -1.626368 0.102955 -0.294339 2.510466 -0.382117 0.427115 -0.106081 0.955487 0.083848 0.735187 -0.418563 -1.411931 -2.287440 -3.786857 -1.713684 -0.610141 -0.757895 -0.466763 -2.271617 -0.592876 2.007293 0.730293 -2.690855 0.122627 0.630893 0.274345 -0.492306 0.597331 -1.691746 -0.175845 -0.969616 0.641228 0.246749 -0.792685 -0.201133 -1.999922 0.005089 0.742800 0.604040 -0.299363 -1.502118 0.129274 0.296168 -0.422310 -0.628812 0.332740 -0.015440 -1.353596 0.823835 -1.601836 1.398643 -2.261525 -0.216773 -1.306415 -1.634194 -0.262231 2.341622 0.937598 0.516159 0.616067 -0.994289 -0.276437 -2.138943 -2.594739 0.604132 -0.815805 1.262916 -0.443669 -0.217236 -0.613710 -0.365244 -0.602622 -0.031640 -1.337313 -0.392950 -0.885090 2.335288 -0.234783 -0.685490 -1.327448 0.144503 2.258759 -0.255891 0.222894 -1.213502 -0.312029 -1.647955 -1.163873 1.424952 -0.320615 0.450899 -0.389126 0.278803 -1.851865 0.909027 -1.197321 0.352069 -0.951715 -0.559889 -1.888108 0.223352 -0.488551 0.031910 -0.229053 -1.158906 0.611012 0.565404 1.062492 -0.104515 0.234772 0.348774 -2.170348 -2.110226 -0.413104 0.296024 1.730894 1.298439 0.560232 -0.512042 -0.305951 -1.406815 1.630296 -1.540893 0.378420 0.439455 -1.339028 1.945585 -0.994529 -0.901948 -1.760155 0.890132 0.094524 -1.603480 2.487873 1.182673 -1.845943 -0.512645 -1.898193 0.863624 0.894983 2.260542 -0.510352 -0.205255 0.857101 -0.372060 -0.339981 -1.174012 0.906241 -0.405872 1.462038 -1.798512 -0.732481 1.318245 1.522522 -0.228337 0.697749 -0.081249 0.455243 -0.129186 2.050424 0.337210 -0.072881 -1.241610 -2.809575 0.654024 0.931445 0.688604 0.146172 -0.911285 -0.848516 -0.312340 0.737894 1.844017 2.233841 0.352031 1.416101 -1.758396 -2.002579 -0.589409 0.850105 0.525113 -1.223280 0.424166 -1.028710 0.140400 -0.097339 1.257083 0.809855 -1.141144 -2.443950 0.212642 1.170465 0.520246 -1.419113 1.897816 -0.031167 -0.781647 0.001342 -0.222963 0.644001 0.574373 -0.007359 -0.754390 -0.835470 0.731462 -1.229305 2.054159 -0.195026 0.763389 0.991924 -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.231087 0.006707 0.114637 0.287512 0.130172 -0.261670 0.202185 0.231419 -0.032006 -0.566023 -0.197622 0.078729 -0.023704 -0.209468 0.051103 0.020169 0.185963 0.387469 -0.445017 0.143143 0.126795 0.190977 -0.177339 -0.259973 -0.016985 -0.125667 -0.212152 0.252194 0.052703 0.431474 -0.255796 -0.103627 0.312123 0.038896 0.208396 0.460092 0.445107 0.021688 0.094216 0.046487 0.701294 0.175594 -0.064151 0.261725 0.321669 0.478043 0.049766 0.241196 -0.231573 -0.171494 0.015848 -0.319529 -0.189337 -0.112283 -0.442807 0.223559 0.485129 0.464413 -0.404555 0.435746 -0.081672 0.081616 0.187340 -0.076344 0.338629 0.262617 -0.038348 0.270439 0.671412 -0.299707 -0.047478 0.084890 0.379040 -0.026209 0.154984 -0.086728 -0.100545 -0.866388 -0.039679 -0.610068 0.072221 0.052101 0.635310 -0.427876 0.277827 0.553102 0.030882 0.230605 -0.261207 -0.262265 -0.430190 0.033250 -0.085308 0.699745 0.074931 0.062009 -0.022405 0.263006 0.185696 0.261451 -0.003811 -0.342334 -0.385457 -0.977699 -0.348944 -0.206220 -0.221813 -0.166314 -0.369553 -0.274513 0.593876 0.479522 -0.666011 0.015151 0.235809 0.094087 -0.163419 -0.291829 -0.252200 0.150854 -0.222592 -0.034110 0.081370 -0.308434 -0.105591 -0.093223 -0.046549 0.052610 0.165201 -0.041269 -0.356870 -0.072680 0.014144 -0.050665 -0.162055 -0.045618 -0.121073 -0.395020 0.212062 -0.461295 0.376962 -0.435370 0.075349 -0.126218 -0.468247 -0.086872 0.534870 0.004805 0.186687 0.032068 -0.266679 -0.156092 -0.383821 -0.810962 0.383075 -0.027174 0.284816 -0.017765 -0.078007 -0.176836 -0.216180 -0.251168 0.180459 -0.280572 -0.037686 -0.072209 0.535964 -0.154551 -0.186805 -0.419320 0.144444 0.605901 0.170588 -0.011783 -0.410325 -0.118034 -0.316288 -0.308710 0.357502 -0.090624 0.044756 0.015576 -0.079076 -0.395485 0.286626 -0.301946 0.262945 -0.221869 -0.199539 -0.510150 0.086134 -0.184094 -0.075842 0.080633 -0.293495 0.129658 -0.062842 -0.047407 -0.078597 -0.020746 0.222202 -0.492044 -0.481760 -0.100819 0.090484 0.310329 0.250367 0.249448 -0.245071 -0.067007 -0.319833 0.384738 -0.358001 0.068165 0.092803 -0.266725 0.510924 -0.194887 -0.169598 -0.392852 0.275454 0.163362 -0.245224 0.637529 0.402222 -0.430348 -0.227516 -0.249288 0.093276 0.267828 0.640749 -0.337228 -0.177785 0.335509 -0.202862 -0.059839 -0.291716 0.213727 -0.009258 0.409897 -0.492864 -0.209496 0.211637 0.414109 -0.080058 0.224391 0.110520 0.051281 -0.188921 0.596140 0.124974 0.137584 -0.356792 -0.458241 0.262424 -0.040962 0.212179 0.074734 -0.178135 -0.186310 0.091841 0.156959 0.412446 0.440624 -0.087249 0.405205 -0.463184 -0.488481 0.007506 0.021565 0.255658 -0.404797 0.262157 -0.270479 0.060781 -0.100728 0.229270 0.118295 -0.111016 -0.363438 0.010570 0.255073 0.166883 -0.290527 0.533239 -0.126084 -0.267560 0.125559 -0.088034 0.269843 0.144396 -0.119112 -0.169814 -0.248346 0.236471 -0.277641 0.569813 -0.131969 0.086354 0.340398 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.171053 -0.211986 -0.026079 0.337212 0.121415 -0.164700 0.054502 0.022705 -0.064883 -0.492852 -0.195791 -0.101125 -0.008355 -0.163171 0.180089 0.123003 0.186461 0.100191 -0.427411 0.189356 0.089182 -0.073733 -0.196848 0.009897 -0.015373 -0.267986 -0.068543 0.258588 -0.044105 0.307732 -0.235775 0.170866 0.261072 0.032010 0.318099 0.317031 0.085173 -0.080298 0.088146 0.199552 0.627476 0.040716 -0.019146 0.010079 0.235357 0.409308 -0.020996 0.366801 0.076400 -0.109235 0.332438 -0.232373 -0.037699 0.040894 -0.518912 0.093722 0.261685 0.155275 -0.365249 0.219706 -0.299567 0.115721 0.143610 0.045183 0.590799 0.095399 0.230142 0.262095 0.448668 -0.168672 0.014768 0.113342 0.270303 -0.030406 0.071166 -0.042955 -0.034063 -0.775783 -0.003152 -0.291747 0.074382 0.018918 0.335662 -0.263573 -0.014185 0.304587 -0.002458 0.361210 -0.279398 -0.046187 -0.452908 0.020833 0.080666 0.352111 0.043186 0.031708 -0.008506 0.187876 -0.020768 0.206652 -0.059520 -0.377640 -0.376623 -0.832867 -0.483868 -0.165991 -0.072475 -0.172491 -0.525665 -0.033435 0.428507 0.256902 -0.472293 0.050915 0.092861 0.063250 -0.011348 -0.098082 -0.263871 -0.082689 -0.048770 0.251455 0.161120 -0.056298 0.058845 -0.503534 0.210906 0.122281 0.205134 -0.080218 -0.125540 -0.006928 0.125272 0.012594 -0.127438 0.034547 0.041995 -0.225178 0.194653 -0.230619 0.355898 -0.429793 0.028152 -0.381697 -0.268238 -0.048989 0.650020 0.307357 0.240798 0.168489 -0.316434 0.062641 -0.500446 -0.722022 0.034454 -0.153017 0.124432 -0.023300 -0.072452 0.001257 -0.073114 -0.055846 0.143087 -0.323158 -0.153862 -0.155225 -0.023574 0.039687 -0.170008 -0.278374 0.025865 0.403294 -0.028376 0.185285 -0.219848 -0.266709 -0.352648 -0.286896 0.266245 -0.119800 0.094066 -0.057690 -0.031540 -0.485327 0.253032 -0.266680 0.012371 -0.221413 -0.176230 -0.384106 0.012923 -0.126763 -0.003892 -0.050722 -0.291131 0.145107 0.024468 0.039081 0.068915 0.086191 -0.015852 -0.343115 -0.429043 -0.035149 0.019257 0.368836 0.212723 0.075946 -0.129772 -0.148294 -0.311064 0.331382 -0.369657 0.099426 0.239736 -0.439095 0.301552 -0.241867 -0.217374 -0.125548 0.211392 0.016293 -0.385152 0.487099 0.395059 -0.449621 -0.161919 -0.342041 0.215830 0.127263 0.516682 -0.112192 0.128444 0.103234 0.141206 -0.056449 -0.125494 0.199874 -0.047594 0.163711 -0.450524 -0.284088 0.271634 0.350931 -0.013632 0.000955 -0.036642 0.124263 -0.082466 0.437752 0.056769 0.102704 -0.210852 -0.607339 0.097113 0.141679 0.039261 0.223185 -0.252868 -0.120399 -0.126280 -0.067484 0.428149 0.262592 -0.013644 0.344192 -0.299779 -0.405530 -0.236401 0.009812 -0.020641 -0.267100 0.276162 -0.257069 -0.036452 -0.130125 0.244553 -0.009467 -0.107602 -0.335701 0.064548 0.139189 0.161897 -0.198457 0.362705 0.047138 -0.176638 -0.125983 0.050952 -0.000130 0.283491 -0.195970 -0.260922 -0.174308 0.157867 -0.220154 0.258894 -0.107512 0.238893 0.162154 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.349482 -0.573827 -0.041840 0.529228 0.246200 -0.107886 0.060433 -0.059676 0.130034 -0.657361 -0.144381 0.231080 -0.021789 -0.126404 0.126066 0.189778 0.323052 -0.034413 -0.417175 0.203601 -0.068638 -0.150549 -0.318715 0.072007 -0.011653 -0.391891 0.405603 0.354661 -0.031067 0.340766 -0.273180 0.178816 0.313370 -0.030620 0.399707 0.378450 0.258957 -0.073599 -0.217222 0.149167 0.858948 0.062910 -0.004762 0.216728 0.312611 0.519279 0.134575 0.859219 0.562087 -0.113073 0.505271 -0.098501 -0.105164 -0.064025 -0.783872 0.170488 0.310503 0.002405 -0.491942 0.240001 -0.224131 0.151600 0.159400 0.267642 0.713857 0.091909 0.449297 0.324397 0.606503 -0.308800 -0.076270 0.312401 0.533795 0.261623 0.406752 -0.269875 -0.292145 -0.623322 0.012791 0.022432 0.107598 -0.160043 0.296696 -0.307211 -0.173574 0.281181 -0.081685 0.425936 -0.316259 0.017754 -0.596663 0.079492 0.206687 0.601409 0.010400 0.137269 -0.016684 0.195703 -0.056670 0.330306 0.171935 -0.567076 -0.209165 -0.958657 -0.605425 -0.306259 -0.039639 -0.226555 -0.629137 0.082377 0.187926 0.239090 -0.503928 0.029196 0.114670 0.039554 0.583473 -0.134556 -0.071864 -0.146198 0.136178 0.294227 0.138051 -0.102455 0.082328 -0.531156 0.403385 0.196418 0.247982 -0.101278 -0.168194 0.002434 0.129068 0.292689 -0.119096 -0.020943 0.068425 -0.501502 0.260315 -0.192660 0.417835 -0.556397 -0.210466 -0.475882 -0.252774 -0.098765 1.033967 0.149892 0.691981 0.199128 -0.420584 -0.019580 -0.621005 -1.082240 -0.020900 -0.186335 -0.033204 0.112664 -0.064633 0.072754 -0.164582 -0.116799 0.238663 -0.386108 -0.206458 -0.158802 -0.408032 -0.032794 -0.146597 -0.299136 0.052946 0.405837 0.153683 0.375841 -0.185223 -1.019806 -0.441337 -0.351866 0.308230 -0.190083 0.137289 0.009805 -0.176147 -0.629285 0.219403 -0.330041 0.073156 -0.277509 -0.372571 -0.477774 0.082751 -0.194976 0.214947 0.007531 -0.459903 0.185212 -0.189961 0.183206 0.118439 0.193458 -0.079224 -0.668621 -0.613699 -0.023600 0.001105 0.747358 0.014456 0.032382 0.024196 -0.251171 -0.454699 0.299445 -0.816524 0.114660 0.406391 -0.535831 0.289531 -0.293527 -0.228136 -0.258620 0.294523 0.061397 -0.262301 0.755630 0.588844 -0.589317 -0.269200 -0.248224 0.247325 0.116649 0.682096 -0.275720 0.022669 0.165125 0.280437 -0.074341 -0.117868 0.266616 0.013977 0.162131 -0.640005 -0.461118 0.253603 0.458519 -0.055235 -0.173357 0.020737 0.010003 -0.244540 0.647159 0.097493 0.322590 -0.364856 -1.008599 0.111503 0.107944 -0.120061 0.393103 -0.542015 -0.160473 -0.039506 -0.125580 0.541561 0.114505 0.128296 0.458908 -0.498600 -0.506691 -0.251988 -0.271708 -0.045896 -0.233893 0.438675 -0.385049 -0.081177 -0.293851 0.248041 -0.300199 0.009121 -0.039047 0.114448 0.106383 0.172745 -0.126234 0.443905 0.126895 -0.194630 -0.148893 0.093715 -0.089289 0.399472 -0.399058 -0.250962 -0.225929 0.169756 -0.240727 0.267596 -0.104292 0.366829 0.042202 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/program-wish-womens-day.cpp__main = 7.634685 -1.278535 -4.477942 10.556731 0.422555 4.538810 2.019984 2.773507 0.193751 -17.808767 -8.052787 14.476348 1.234904 3.060798 -1.077715 4.852628 5.585128 3.212276 -19.084964 -1.511424 3.269041 -1.761931 -0.028997 1.078402 1.211501 -4.801692 8.069058 3.491431 0.913857 10.216986 -1.715691 8.199415 9.346467 0.136464 3.296949 7.060882 -3.418840 -2.279752 -6.618236 -7.615873 12.796671 2.794060 1.405713 6.199119 -4.146034 11.267607 3.289475 10.001169 10.700711 -3.279659 1.611220 1.675039 -6.707747 -0.659827 -11.757973 -1.143223 -2.008453 0.154586 -2.437047 4.223356 -1.565993 2.688217 3.207901 -0.291899 11.980220 1.531752 9.658899 9.877539 8.165701 -8.399990 3.375843 1.747380 -0.319491 3.226499 7.030093 -5.871972 -6.231079 -0.672534 -0.411772 -12.994455 -2.862201 -4.258139 17.326907 -7.202189 -3.863077 -3.208975 1.511148 12.598532 -3.823510 4.530103 -11.569295 -0.804996 1.152693 7.988687 3.578565 3.804668 -2.276946 -0.702042 -2.899582 1.070166 2.067648 -10.385377 1.762228 -12.899881 -2.223828 -8.045160 1.788609 5.543248 -10.355540 2.109478 -5.394856 13.321763 -14.752771 -3.487624 0.597274 2.062614 8.049985 6.631141 -4.170418 -2.056970 4.053592 5.318033 6.466938 -6.214728 3.454433 -1.426256 0.255036 1.089064 3.726590 3.717358 -13.407784 -6.823167 5.858350 -0.205705 3.382129 6.819726 7.832778 0.535398 4.205756 -4.932656 7.460789 -9.090034 -4.624851 -1.900654 -6.875607 -7.058298 14.157072 10.997529 8.644223 0.353104 0.256306 0.375201 -12.288400 -15.162904 0.763517 0.260228 -1.883779 4.744655 -2.275311 6.023723 -9.972399 4.132865 4.751368 -2.892824 -6.265716 0.618650 -0.133383 3.055521 -2.101842 -2.617926 -2.063575 -3.268434 1.263787 12.521525 -2.037525 -20.046061 -14.928329 -5.490929 10.269457 -6.546231 -0.849891 -5.166067 -3.634762 -2.348919 -3.290497 -7.207335 -1.798913 1.759168 -7.724536 -12.530721 3.334371 -1.988126 -3.950403 5.280453 -9.676845 2.727949 8.319618 4.506672 0.716596 0.811027 -3.174063 -5.915579 -3.905199 2.252601 -7.767257 9.734860 6.404088 -1.979469 -9.491624 -4.853831 -6.389785 7.703609 -7.961663 8.753735 -1.282605 -3.783212 3.375723 -7.994815 2.334771 -3.680870 4.817306 1.761800 -25.025342 10.088361 9.713622 -6.143526 -1.344249 -2.225952 3.846730 0.399811 5.360931 -7.953916 -6.417960 2.497990 2.417920 0.390277 -1.298996 2.049995 -1.602880 -4.784964 -11.026316 -3.873473 10.762560 2.761067 -1.923780 -1.679074 8.090302 -1.511830 6.019441 10.570913 5.994554 0.409612 -7.286055 -24.459690 3.646568 7.349849 -2.694519 3.237983 -7.598434 -1.906593 4.284127 -12.678490 9.271073 -5.363423 -4.010732 8.609118 -8.695726 -9.177438 -9.772091 -4.303686 2.182491 2.768669 5.110398 -4.044081 0.810394 -3.243925 1.193272 -5.039362 -6.907231 4.471415 6.979734 9.565307 2.728213 1.990456 9.310253 3.988795 -2.136284 -1.906746 -1.813633 -5.236646 1.151535 -15.458820 -1.464958 3.975464 5.423713 -7.561745 0.981532 0.860712 2.541190 -0.352504 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.160901 -0.163544 -0.072647 0.158100 0.019407 0.247271 -0.129733 0.095641 -0.037824 -0.510212 -0.310785 -0.039424 0.012524 0.065490 0.301673 0.388468 0.407380 0.009187 -0.332094 0.030356 0.106523 -0.160395 -0.094435 0.362005 0.220267 -0.300761 -0.125059 0.022036 -0.018603 0.352650 0.063218 0.314970 0.261802 -0.030541 0.331890 0.250075 0.027358 0.089175 -0.064042 0.214540 0.558290 -0.121261 0.083908 -0.235753 -0.090891 0.418875 -0.204585 0.247420 0.337137 0.021113 0.307418 -0.011081 0.044677 0.092207 -0.617764 -0.087678 0.005714 -0.020478 -0.322243 0.240889 -0.179975 0.299876 0.015843 0.067233 0.479871 0.027996 0.327943 0.277154 0.334724 -0.113994 0.114404 0.210901 -0.069027 -0.150384 0.055200 -0.084018 0.019264 -0.482746 -0.019510 -0.130139 0.045849 -0.202179 0.580289 -0.148441 -0.156153 0.371901 -0.265240 0.455863 -0.118515 0.298648 -0.416026 -0.044490 0.043288 0.326618 0.268044 0.238138 0.108815 -0.080111 -0.097803 0.024276 0.106902 -0.347975 -0.366470 -0.546490 -0.262566 -0.222079 0.020661 0.080909 -0.359567 -0.092466 0.294820 0.163240 -0.294113 0.179025 -0.058234 0.270632 0.087880 0.101541 -0.324087 -0.069467 0.200209 0.289997 0.287636 -0.067028 0.135772 -0.358313 0.364923 0.184289 0.105094 -0.203618 -0.000810 -0.257043 0.211562 0.086590 -0.124638 0.085661 0.167932 -0.074391 0.149007 0.110095 0.233919 -0.388554 -0.035515 -0.010195 -0.318784 -0.099835 0.600340 0.077557 0.271976 0.208174 -0.199023 0.191382 -0.497598 -0.716043 0.023189 0.102358 0.063467 0.145818 -0.149198 0.333264 -0.232238 0.208191 0.068614 -0.136152 -0.087904 0.172074 -0.190645 0.090339 -0.164434 -0.151746 -0.185740 -0.028868 -0.106677 0.333745 -0.079881 -0.391847 -0.345909 -0.239481 0.333009 -0.195545 0.148191 0.175444 0.000747 -0.238922 0.083713 -0.228002 -0.162678 0.002538 -0.377156 -0.387352 -0.272899 -0.220332 -0.014828 0.093963 -0.449160 0.221389 0.018351 -0.246800 -0.001571 -0.048331 -0.281250 -0.073713 -0.263633 -0.223626 -0.213452 0.159792 0.079566 -0.089889 0.040861 -0.029095 0.010555 0.234405 -0.133216 0.211090 -0.083127 -0.407093 0.107747 -0.182563 -0.087242 -0.309880 0.184816 0.067147 -0.424961 0.101436 0.535525 -0.166260 -0.251131 -0.017206 0.052036 -0.032565 0.490166 -0.078896 0.120000 0.126337 0.305373 0.036997 0.222200 0.138795 -0.117326 -0.010813 -0.603227 -0.113151 0.398167 0.274592 -0.028308 -0.094642 0.340656 0.212113 0.224595 0.411130 0.138681 -0.068323 -0.148888 -0.523302 0.110969 0.253514 -0.023243 0.126972 -0.125815 0.130326 -0.022264 -0.347408 0.365033 0.281873 0.254405 0.294676 0.044798 -0.423648 -0.278611 -0.017537 0.016863 0.059174 0.155557 -0.241643 -0.039188 -0.321397 0.070698 -0.180519 -0.253167 -0.125818 0.053168 0.229445 0.340885 -0.199946 0.284074 0.167236 -0.125542 0.162780 -0.118773 0.116459 0.343470 -0.141717 -0.290842 -0.060526 0.275779 -0.237934 0.124598 -0.109845 0.128509 0.070425 -PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = 6.841663 -3.367439 -7.833137 15.227272 -0.253533 1.743418 1.212359 -1.593635 0.942203 -18.778642 -7.437594 12.916856 4.075470 2.947288 -0.977318 7.134372 3.232829 3.487599 -16.471204 -0.709748 2.925179 -1.278581 -2.532537 -0.636070 -0.669983 -5.195047 11.075079 2.475037 1.687513 11.446865 -3.304778 10.027186 10.113234 -1.915066 3.095190 6.895833 -2.758282 -0.011630 -8.184818 -4.680499 14.220127 2.793388 1.654105 5.499869 -4.071764 12.225913 4.334888 13.620636 5.473453 -5.228794 6.172124 6.472773 -4.808043 -1.921646 -12.251564 2.151431 5.404395 3.447854 -3.674856 4.198429 -1.633294 3.527875 5.240461 3.324503 15.423089 4.423951 12.180326 11.942538 10.230212 -9.347326 3.936140 1.170178 0.683558 -0.274369 14.500220 -9.178120 -9.428942 2.592901 -1.481876 -12.207898 0.576914 -0.482886 18.301546 -9.631458 -4.877725 -1.761592 5.029885 14.133191 -5.803980 4.119615 -11.357709 -0.353735 -2.412002 17.203019 3.043280 3.457821 -4.518327 3.983391 -2.126118 1.725096 3.129014 -11.338140 2.723709 -15.730271 -8.350464 -8.528816 2.581838 5.662032 -14.459723 1.421124 -5.528725 8.712845 -19.855483 -1.384105 2.327780 4.130365 16.232935 1.263083 -4.482954 0.021489 1.990945 4.522540 4.848581 -5.079106 4.632917 -3.015030 0.926967 1.934000 4.142238 3.499810 -16.019459 -4.168899 1.831221 -0.524268 3.049881 7.217419 9.789799 -3.685999 5.913400 -7.348096 8.648352 -15.375386 -5.324168 -4.808458 -11.202009 -6.683390 9.515796 7.504430 12.221566 -3.634053 -4.760170 -0.827460 -17.416970 -19.640450 -0.216304 1.038209 -2.288310 6.895374 -2.537114 4.699644 -10.505558 4.733068 10.500789 -5.778809 -7.175023 -0.441085 6.950774 2.007274 -3.942152 -3.838825 -1.852175 -3.410448 3.412219 15.419089 -1.217587 -21.978506 -20.981125 -5.009270 10.680247 -6.305559 0.693381 -5.923373 -5.507175 -8.902727 -1.588568 -9.078006 0.097372 1.105694 -5.731204 -14.242987 4.576703 -1.380133 -3.340922 3.821540 -11.888634 2.976018 8.273968 2.868023 1.273888 2.033341 0.201662 -9.978787 -7.212001 4.900271 -7.987198 10.615395 6.850149 -0.926265 -6.136939 -5.974569 -10.242848 4.846875 -9.453515 7.855115 1.608783 -2.999599 3.701641 -12.292885 1.748815 -6.242175 3.388844 0.931032 -18.941502 15.869265 9.212053 -7.470825 0.777127 -1.136548 6.886100 -0.931810 6.306705 -9.824477 -7.554404 2.219280 0.851409 0.017426 -2.114223 2.635266 -3.735681 -4.490308 -10.278768 -3.898891 9.397845 4.801081 -1.679302 -1.026394 5.776959 -7.916583 2.351626 10.677634 7.597501 1.905640 -8.527911 -25.606325 3.856996 -6.521441 -4.173511 0.779053 -6.584158 -2.222825 5.590170 -6.525165 9.616678 -3.300440 -5.159975 10.477638 -16.231628 -10.948465 -9.206915 -4.571683 2.449967 0.218868 1.956666 -6.111053 1.844690 -1.645467 3.102917 -6.644452 -7.379372 5.708241 6.540112 12.174444 -1.160771 0.779410 12.123397 4.134902 -1.544830 -3.157912 -0.338251 -6.434456 2.195195 -15.727251 -1.702040 3.838943 5.927438 -9.071650 2.182090 -2.799124 2.607895 1.344880 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 1.806838 -0.725018 -1.312521 3.405049 0.031193 0.094010 0.585076 0.270061 0.180530 -4.797825 -2.183408 2.242384 0.801537 0.354255 0.152008 1.437280 0.857098 1.177405 -4.625361 0.014041 1.062374 0.053147 -0.432383 -0.392074 -0.078867 -1.275469 1.337263 0.842095 0.398108 3.050105 -1.018919 2.011559 2.611298 -0.305580 0.715407 2.067861 -0.319127 -0.048472 -1.147898 -0.805450 3.856425 0.851702 0.142196 1.374409 -0.523074 3.207771 0.550815 3.428973 0.777201 -1.409963 1.757208 0.122598 -1.369178 -0.325700 -2.973844 0.731723 2.165030 1.525849 -1.145894 1.490496 -0.682928 0.879286 1.309408 0.152305 3.681847 1.608527 2.502786 2.760971 3.009743 -2.338458 0.829312 0.285794 0.405737 -0.228715 2.672862 -2.296358 -1.707328 -1.323072 -0.223663 -3.718544 0.064347 -0.191165 4.725470 -2.600493 -0.572732 0.506828 1.024720 3.330965 -1.557754 0.696152 -2.896995 0.024812 -0.482160 4.343244 0.536753 0.700882 -0.920449 1.091966 -0.186295 0.690393 0.554688 -2.588533 -0.648236 -4.701039 -2.241717 -1.874026 0.411253 1.082541 -3.726129 0.063445 -0.086574 1.935222 -5.069658 -0.327997 0.857623 1.279054 2.705700 0.527050 -1.662898 -0.103852 0.138202 1.091651 1.225570 -1.566561 0.951108 -1.389255 0.036396 0.594965 1.049218 0.521969 -3.697326 -1.057348 0.366125 -0.329363 0.477708 1.545885 1.977170 -0.992980 1.566017 -2.193855 2.335773 -4.015216 -1.000171 -1.267635 -2.843149 -1.480607 3.064282 1.933028 2.494599 -0.430837 -1.458179 -0.388559 -4.093873 -4.835918 0.205067 0.145951 0.355398 1.269912 -0.647551 0.786761 -2.314382 0.760679 1.883549 -1.538608 -1.483014 -0.292109 2.306667 0.239356 -1.088927 -1.494776 -0.128875 0.266305 0.284897 3.107644 -0.674641 -4.158045 -4.782077 -1.585381 2.766394 -1.420222 0.254200 -1.382513 -0.888943 -2.530743 0.090262 -2.243950 0.107979 0.166972 -1.750397 -3.700592 1.114979 -0.479776 -0.790534 0.974346 -2.827709 0.666518 1.893930 1.131450 0.343963 0.480642 0.222415 -2.835971 -2.337911 0.540529 -1.656023 2.708440 1.859298 0.000883 -1.597815 -1.355625 -2.509957 1.773422 -2.239291 1.671670 0.131234 -0.936681 1.473781 -2.778520 0.099251 -2.108930 0.967894 0.407673 -4.633052 4.096742 2.260050 -2.071645 -0.177825 -1.058845 1.592075 0.223338 2.171817 -2.245302 -1.711735 0.799554 -0.102114 -0.083938 -1.001231 0.927060 -0.903199 -0.478441 -2.712835 -1.062495 2.351905 1.577523 -0.466562 0.340146 1.537771 -1.095852 0.536151 2.900074 1.656980 0.030786 -2.071363 -6.232853 1.175525 -0.452896 -0.542295 0.214154 -1.863391 -0.847300 1.201504 -0.845785 2.605494 0.564770 -0.803236 2.727135 -3.680279 -2.887534 -1.967020 -0.604113 0.790471 -0.517320 0.448464 -1.510801 0.520431 -0.141744 0.878610 -0.794826 -2.047944 -0.049674 1.254947 3.112693 -0.066870 -0.202455 3.252058 0.792841 -0.731518 -0.552981 -0.208314 -0.978702 0.621085 -2.931077 -0.509585 0.539947 1.415489 -2.276518 1.201628 -0.638379 0.488525 0.711241 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp___GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/bfs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = 0.568496 -0.554674 -0.283844 1.153060 0.189215 -0.270352 0.116153 0.069488 0.030852 -1.498312 -0.525847 0.133818 0.160412 -0.133164 0.274303 0.431532 0.413959 0.187029 -1.411178 0.329262 0.297046 -0.065601 -0.470680 -0.085239 -0.010376 -0.644158 0.429292 0.521541 0.040999 0.945348 -0.540481 0.462164 0.809761 -0.177275 0.734020 0.833900 0.188716 0.067483 -0.239333 0.303290 1.626451 0.400347 -0.191359 0.240702 0.375049 1.159685 0.210500 1.052783 0.013627 -0.456955 0.684947 0.091283 -0.217096 -0.168670 -1.233121 0.327903 1.114699 0.592827 -0.924831 0.568984 -0.468868 0.261649 0.445324 0.476039 1.399250 0.333235 0.864188 0.857127 1.194295 -0.652546 0.085410 0.254686 0.541469 -0.088053 0.764226 -0.589252 -0.657762 -1.221436 0.007560 -0.903254 0.096341 0.075020 0.936936 -0.882480 -0.019172 0.548591 0.121999 1.006567 -0.729711 -0.087309 -1.079522 -0.048716 -0.124928 1.662875 0.094691 0.180465 0.038409 0.683159 0.061198 0.520600 0.208171 -1.120234 -0.415270 -1.931170 -1.114930 -0.634668 0.061839 0.020059 -1.242086 -0.167076 0.502414 0.410326 -1.457109 0.218615 0.315582 0.369725 0.845405 -0.538616 -0.520143 0.033997 -0.146651 0.354882 0.471646 -0.371881 0.205907 -0.736502 0.473975 0.392396 0.426148 -0.000630 -0.790585 -0.058153 0.156489 0.008793 -0.213096 0.265426 0.332728 -0.840146 0.616899 -0.746972 0.991262 -1.359346 -0.086154 -0.760611 -0.861341 -0.291675 1.006527 0.407911 0.684111 -0.022611 -0.837411 0.065567 -1.469542 -1.970116 0.113698 0.036735 0.104782 0.218835 -0.264570 0.200758 -0.536968 0.008862 0.624246 -0.705249 -0.436290 -0.237008 0.492045 0.087308 -0.427045 -0.474821 0.007241 0.570319 0.260982 0.930942 -0.468582 -1.164534 -1.375172 -0.621435 0.854012 -0.396899 0.164369 -0.225716 -0.308263 -1.367588 0.495800 -0.900745 0.246311 -0.480258 -0.409617 -1.138977 0.214247 -0.310008 0.154968 0.061050 -0.961954 0.272470 0.124889 0.137724 0.154073 0.129811 0.201769 -1.183299 -1.043848 0.203755 -0.222769 1.172736 0.310809 0.041794 -0.107233 -0.392226 -0.854178 0.633155 -0.734258 0.373879 0.397431 -0.814763 0.743891 -0.715266 -0.396252 -0.706130 0.449312 0.186536 -0.427485 1.666752 0.990700 -0.938888 -0.221734 -0.326365 0.536398 0.200868 1.033816 -0.636538 -0.323034 0.287479 0.078357 -0.074676 -0.313965 0.469832 -0.236601 0.250075 -1.111675 -0.567933 0.702024 0.788957 -0.053703 0.142269 0.146350 -0.311266 -0.340228 1.209624 0.420694 0.379665 -0.747118 -1.643722 0.401244 -0.530705 -0.068762 0.062681 -0.529702 -0.392376 0.010604 0.231282 1.054336 0.818765 -0.239431 0.988727 -1.286315 -1.150912 -0.726600 -0.205838 0.101542 -0.488059 0.263679 -0.695935 0.151188 -0.274317 0.477209 -0.209445 -0.394569 -0.228816 0.249517 0.599802 0.113595 -0.417953 1.101208 0.190543 -0.414498 -0.261802 0.140831 -0.215701 0.588727 -0.584184 -0.521682 -0.261636 0.507236 -0.660950 0.499017 -0.314781 0.469673 0.382403 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = 5.726023 -0.133730 -3.190229 9.019527 1.439156 -1.730062 1.383072 2.777781 0.628556 -11.187463 -5.886064 4.828844 1.349222 -1.229143 1.603491 2.798366 3.169932 4.129696 -13.612303 1.629449 2.069142 0.265621 -3.178621 -3.179350 -0.050461 -1.997759 1.249518 3.642265 0.915735 7.822889 -3.732013 4.258865 6.227459 0.544690 5.050189 5.053017 -0.764780 -0.916814 -1.645755 -1.960878 11.845004 4.147838 -0.133312 4.408114 1.198437 9.173479 0.966222 7.141511 0.429827 -2.534661 3.637479 -0.878937 -3.347145 -0.408232 -9.218270 2.564417 6.476470 3.329214 -4.951168 4.928335 -1.737861 2.399991 4.073455 -1.105332 10.651399 3.825438 5.101301 7.298446 9.260107 -4.947208 2.014711 -0.757650 4.184923 -1.048176 4.053171 -5.873241 -3.900058 -7.904697 -0.120628 -12.058469 1.771212 -1.000352 11.319160 -7.574533 1.550217 2.578643 2.338848 8.179242 -5.776579 -0.951465 -8.348070 -0.538474 -2.255323 11.601505 0.935401 1.896760 -0.668909 3.496325 -0.318150 2.329232 0.025850 -7.472657 -2.093862 -15.289866 -6.399015 -3.427979 -0.515861 0.252700 -7.844627 -0.701171 1.595221 5.523481 -12.841733 -2.026994 2.184101 1.101458 1.523823 -0.913433 -4.266981 0.236628 -1.696326 3.708074 2.916090 -4.745913 1.400332 -4.042690 -1.600656 1.897563 4.282792 1.872923 -7.479138 -1.732938 1.564352 -0.878005 -0.254238 2.672887 2.214945 -3.980893 4.250249 -6.359040 7.140526 -9.402473 -1.912755 -4.635035 -6.331006 -3.261253 7.596534 4.416259 5.380089 1.160341 -2.329706 -0.252618 -10.699367 -13.639985 3.067107 -0.158842 1.359157 1.257935 -1.514659 0.690996 -5.642007 -0.227866 5.562279 -5.730644 -5.255815 -2.455660 7.714511 0.559725 -3.525941 -4.320062 0.685134 4.329042 1.029651 5.917815 -3.753349 -8.605443 -10.193540 -4.158299 7.366747 -3.575158 0.822475 -2.712248 -1.042133 -6.820336 1.079634 -7.424860 1.836402 -1.500269 -3.191385 -9.611029 2.245038 -1.801749 0.228344 1.450778 -7.025183 3.333372 5.159982 4.242068 -1.276795 1.960604 1.955005 -7.540438 -6.868833 0.586228 -1.946369 7.555896 4.858320 1.447139 -4.848004 -2.534786 -6.234172 6.066652 -5.312328 4.351254 0.889074 -4.161075 5.113767 -6.631146 -1.923557 -5.673390 3.265473 0.828078 -10.330761 9.907154 6.162389 -7.319542 -1.164372 -5.553375 4.760279 1.133562 8.678636 -5.607847 -3.977636 2.467501 -0.076188 -0.871671 -4.219826 2.789586 -1.155666 0.194949 -8.696283 -3.191993 7.001892 4.801318 -0.727356 1.844784 2.529302 -1.302997 0.505831 9.230388 3.717731 1.246463 -6.298831 -15.045619 2.191917 1.878358 1.109565 0.315458 -3.890175 -3.233094 0.302355 -1.165421 7.752075 4.680803 -2.203544 7.430058 -8.981466 -8.288208 -5.679179 0.641807 2.452224 -3.375474 1.856592 -4.522319 1.021277 -1.284591 3.748343 -0.629962 -4.859271 -3.209967 2.842948 6.735447 0.170633 -2.696308 9.019714 1.768666 -3.061434 -0.824517 -1.217460 -2.127417 2.580271 -7.332586 -2.674326 -0.406600 3.499372 -6.236019 4.420623 -1.110718 3.013510 2.599268 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.354750 0.142115 -0.223500 0.627287 -0.339052 -0.732632 0.357477 0.459289 -0.345744 -0.834131 0.086008 0.270899 0.189317 -0.443598 -0.137011 0.272865 -0.146980 0.561440 -1.416506 0.412965 0.401411 0.286838 -0.436382 -0.689839 -0.108220 -0.264245 -0.059289 0.589023 -0.125208 0.828975 -0.339457 -0.068747 0.591320 -0.057782 0.363274 0.790911 0.370117 0.175869 0.101050 0.431778 0.889000 0.718578 -0.628139 -0.175133 0.299915 0.895217 0.467478 -0.325747 -1.103051 -0.344665 -0.426535 0.559941 -0.437225 -0.409573 -0.475294 -0.033456 0.804233 1.142759 -0.503542 0.784730 -0.704670 0.008803 0.531373 0.597372 0.927797 0.225276 0.357522 0.629680 1.111127 -0.473465 0.219155 -0.143477 0.246960 -0.745473 0.690489 0.109616 -0.763105 -1.771911 0.093581 -1.731634 -0.283960 0.725343 0.851191 -0.807792 0.483137 0.665271 0.648888 0.692064 -0.926719 -0.382944 -0.636454 -0.164531 -0.451055 2.119933 0.201217 0.186324 0.037174 0.869088 0.540859 0.258972 0.070493 -0.780987 -0.151549 -1.376472 -0.399984 -0.490334 -0.574456 -0.021974 -0.723006 -0.564601 1.477343 0.934358 -1.431482 0.312220 0.467108 0.153465 0.478799 -0.990602 -0.306967 0.876053 -0.712297 -0.133911 0.522141 -0.644858 -0.037463 0.512059 0.242284 0.310887 0.116883 0.240748 -1.464496 0.120840 0.457426 -0.632590 -0.127950 0.340037 -0.095650 -0.618112 0.266825 -1.268228 0.907661 -0.895354 0.587253 -0.026249 -0.794623 -0.118635 -0.235557 0.450752 -0.519255 -0.467447 -0.425087 0.210854 -0.959133 -1.674662 0.584055 0.325232 0.073156 -0.314698 -0.252694 -0.354982 -0.435303 0.018262 0.642685 -0.495403 -0.113173 0.036498 1.511893 0.300994 -0.422447 -0.132562 -0.051213 0.558367 0.932931 0.449539 -0.640985 -0.501403 -1.094868 -0.375642 0.739597 -0.038981 -0.386542 -0.318236 -0.495399 -0.772802 0.715587 -0.496187 0.757708 -0.319514 0.194731 -0.904423 0.182817 -0.174353 -0.311529 -0.232024 -0.487342 -0.011833 -0.178981 -0.923776 -0.188117 -0.299585 0.716719 -0.503398 -0.515222 0.463295 0.120308 0.522936 0.412552 0.490238 -0.412744 0.117196 -0.620386 0.634573 -0.085838 0.314740 -0.018974 -0.738300 1.126628 -0.380395 -0.409204 -0.383052 0.520303 0.058617 0.534350 1.767681 1.033214 -0.583138 -0.099015 0.194226 0.174289 0.536180 0.736731 -0.836385 -0.635255 0.376256 -0.355735 -0.102965 0.156180 0.256467 -0.378986 0.508709 -0.576243 -0.062124 0.438996 0.623528 -0.029931 0.418136 -0.269823 -0.716323 -0.671813 0.729658 0.266883 0.326729 -0.629000 -0.401526 0.507644 -1.511345 0.214771 -0.362621 0.106462 -0.343907 0.213905 0.459676 0.719769 0.830160 -1.263850 0.561448 -1.321785 -1.007922 -0.627242 0.135099 0.223842 -0.468147 0.368947 -0.333153 0.305558 0.017425 0.450771 0.081659 -0.265826 -0.044629 0.133670 0.341631 0.281462 -1.133421 1.017075 -0.282843 -0.229451 -0.222657 -0.130033 -0.038182 0.289053 0.054221 -0.259869 -0.316969 0.862445 -0.519193 0.867257 -0.070593 0.131992 0.704827 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.481649 -0.348893 -0.081087 0.570880 0.149570 -0.413617 0.146606 0.290622 -0.001344 -0.929342 -0.386590 -0.147138 0.036306 -0.365936 0.290863 0.223427 0.314338 0.284859 -1.123949 0.407617 0.246350 0.009061 -0.390416 -0.139525 -0.009294 -0.398447 -0.294294 0.412513 -0.039626 0.642399 -0.456886 0.211963 0.535369 -0.026646 0.575239 0.669032 0.123504 -0.124735 0.313007 0.330905 1.178889 0.302725 -0.140860 0.069765 0.439858 0.799320 -0.078785 0.773606 -0.072588 -0.253686 0.554287 -0.540612 -0.199917 0.071583 -0.887863 0.223061 0.753543 0.474559 -0.709627 0.500834 -0.472525 0.207260 0.348806 0.071716 1.049521 0.321875 0.344431 0.519712 0.963806 -0.301872 0.113912 0.082526 0.504230 -0.157668 0.200194 -0.289753 -0.099396 -1.543803 0.089108 -0.832940 0.155223 0.027189 0.725104 -0.645432 0.252240 0.645027 0.122362 0.702165 -0.581539 -0.177058 -0.805718 0.010330 0.035917 0.971855 -0.054214 0.116731 0.014908 0.451194 -0.015347 0.329405 -0.062346 -0.733773 -0.755164 -1.590137 -0.816556 -0.331532 -0.239887 -0.232162 -0.977134 -0.146935 0.813595 0.351056 -1.047772 0.119578 0.198644 0.102633 0.006155 -0.092883 -0.520189 -0.073395 -0.293617 0.383182 0.230584 -0.270507 0.036457 -0.852651 0.261043 0.343988 0.322164 -0.103050 -0.444639 0.068026 0.235465 -0.053721 -0.266177 0.153478 0.058576 -0.549383 0.365307 -0.610146 0.675711 -0.882864 -0.003153 -0.637837 -0.561456 -0.122423 1.061695 0.449307 0.279991 0.264196 -0.539777 0.072148 -0.969709 -1.318405 0.154343 -0.270122 0.318750 -0.103065 -0.136123 -0.111448 -0.165209 -0.147313 0.139548 -0.611659 -0.271398 -0.314812 0.403587 0.040366 -0.311581 -0.457287 0.052518 0.861007 -0.013080 0.308262 -0.472685 -0.394765 -0.737462 -0.498674 0.581600 -0.191705 0.167122 -0.145673 -0.013304 -0.901104 0.461872 -0.535463 0.121489 -0.449900 -0.235762 -0.787194 0.069442 -0.238458 0.093045 -0.099094 -0.554138 0.285499 0.067468 0.244694 0.016502 0.114597 0.107552 -0.816988 -0.844994 -0.058680 0.071686 0.799967 0.376893 0.169133 -0.166590 -0.206331 -0.568791 0.654125 -0.671568 0.216489 0.333300 -0.758425 0.694875 -0.444391 -0.422262 -0.493189 0.414470 0.039649 -0.491400 1.088437 0.667982 -0.830432 -0.220799 -0.670941 0.418008 0.293374 0.947465 -0.244058 0.023476 0.269100 0.070749 -0.124226 -0.347911 0.362572 -0.136559 0.435666 -0.822337 -0.416154 0.546906 0.639416 -0.045010 0.141147 -0.067069 0.122247 -0.201435 0.878110 0.124665 0.158918 -0.499462 -1.155109 0.240227 0.254178 0.194633 0.191540 -0.438309 -0.274436 -0.193663 0.159490 0.804653 0.828812 0.008073 0.641766 -0.752828 -0.841394 -0.430534 0.161850 0.073593 -0.470474 0.331269 -0.480242 0.018941 -0.180850 0.527695 0.113186 -0.320434 -0.749886 0.153563 0.346661 0.245995 -0.547586 0.764758 0.042141 -0.321900 -0.151258 0.009146 0.051005 0.415675 -0.136967 -0.410290 -0.314256 0.352792 -0.496460 0.645371 -0.148030 0.420813 0.329321 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.852342 -0.316990 -0.203725 0.915963 0.232320 -0.629081 0.233575 0.520807 -0.121423 -1.340345 -0.590392 0.078182 0.081079 -0.510462 0.344636 0.310457 0.437531 0.327128 -1.636233 0.534554 0.226062 -0.085576 -0.790920 -0.320464 -0.060887 -0.460132 -0.314360 0.693398 -0.079947 0.940349 -0.619755 0.261271 0.710862 0.001493 0.897378 0.891480 0.180906 -0.135328 0.301759 0.277575 1.722376 0.582672 -0.314488 0.219578 0.662927 1.164853 -0.131066 1.125088 -0.542892 -0.281860 0.696391 -0.520721 -0.369050 0.057312 -1.298221 0.296226 1.235578 0.633723 -0.980054 0.779625 -0.710507 0.309260 0.536927 0.251627 1.547482 0.531235 0.590528 0.808907 1.411291 -0.559619 0.139313 0.158993 0.805223 -0.239018 0.197532 -0.371839 -0.274935 -1.889166 0.224764 -1.374275 0.187166 0.011287 1.298267 -0.894155 0.310002 0.819800 0.275738 0.946635 -1.036514 -0.209858 -1.128288 -0.035212 -0.206200 1.726595 -0.078062 0.304261 0.062785 0.695439 0.091507 0.555591 -0.194589 -1.052886 -0.890258 -2.261235 -1.108224 -0.388469 -0.425528 -0.339516 -1.247517 -0.309444 1.168496 0.633018 -1.462868 0.053784 0.263664 0.099916 0.255088 0.049656 -0.859108 0.039909 -0.490258 0.432705 0.411606 -0.340848 0.104286 -0.992355 0.309692 0.460840 0.516161 0.071047 -1.142934 0.168576 0.425581 -0.312237 -0.378445 0.166748 -0.022542 -0.824999 0.509637 -0.914598 1.006854 -1.399227 -0.004806 -0.902250 -1.036423 -0.094021 1.131599 0.759213 0.433379 0.401175 -0.568943 0.101831 -1.435980 -2.038275 0.317847 -0.168586 0.361068 -0.300985 -0.183783 -0.144427 -0.407754 -0.280687 0.496092 -0.905177 -0.481278 -0.538731 1.199951 0.095189 -0.499323 -0.528738 0.144101 1.108070 0.144482 0.565923 -0.718555 -0.811454 -1.196887 -0.661087 0.861301 -0.265289 0.079673 -0.119879 -0.080237 -1.350131 0.604091 -0.775643 0.411917 -0.628377 -0.308338 -1.160357 0.152814 -0.281604 0.024046 -0.148392 -0.795042 0.391345 0.272727 0.244253 -0.072128 0.228120 0.301812 -1.096709 -1.243608 0.035004 0.196991 1.230977 0.696585 0.260192 -0.187967 -0.268237 -0.950295 0.982359 -0.895484 0.357344 0.401319 -0.983398 1.020140 -0.711344 -0.694768 -0.729456 0.628641 0.102288 -0.579439 1.720059 1.026533 -1.203320 -0.386110 -0.951087 0.598058 0.391665 1.459164 -0.535938 -0.124642 0.432926 0.106825 -0.218892 -0.399325 0.525438 -0.114417 0.560980 -1.220628 -0.622254 0.799303 0.882896 -0.028864 0.263509 -0.152546 -0.009191 -0.295992 1.389880 0.244522 0.208079 -0.776985 -1.682006 0.354534 -0.150308 0.134921 0.095437 -0.523081 -0.573759 -0.298447 0.159038 1.146125 1.012158 -0.267122 0.950102 -1.191177 -1.212704 -0.708997 0.276115 0.134069 -0.751854 0.462246 -0.711609 0.075809 -0.227661 0.726018 0.133404 -0.500676 -1.018680 0.112202 0.513624 0.246254 -0.853782 1.160037 0.089409 -0.429174 -0.243269 0.023456 0.067971 0.658009 -0.462417 -0.597961 -0.515154 0.569258 -0.720967 0.912710 0.022861 0.595339 0.594038 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = 0.189053 -0.218197 0.088020 0.345692 0.272683 -0.016122 0.049397 -0.001506 -0.089737 -0.583898 -0.278892 -0.099005 -0.051711 -0.062486 0.197263 0.091031 0.314708 0.029717 -0.389300 0.079211 0.050529 -0.146347 -0.146949 0.079822 -0.007948 -0.333272 0.026710 0.316104 -0.005514 0.305485 -0.247842 0.180434 0.267827 0.086958 0.374859 0.318461 0.140159 -0.128570 -0.025358 0.064855 0.744706 -0.035478 0.014302 0.100429 0.262318 0.441282 -0.051825 0.430416 0.162117 -0.103087 0.373884 -0.315234 -0.033967 0.043538 -0.628883 0.133323 0.259371 0.107783 -0.418977 0.199331 -0.242055 0.138620 0.089755 -0.010220 0.555289 0.062287 0.269836 0.257822 0.414230 -0.286515 -0.088087 0.239748 0.278674 0.137703 -0.045110 -0.074395 0.062125 -0.733079 0.032099 -0.226147 0.076560 -0.092235 0.387593 -0.193120 -0.111491 0.325485 -0.128231 0.323365 -0.228008 -0.011516 -0.535673 0.041478 0.142937 0.257910 0.061724 -0.004166 0.067223 0.137169 -0.030938 0.319106 -0.038536 -0.373330 -0.411222 -0.858941 -0.511051 -0.179938 0.053973 -0.187818 -0.446575 0.007446 0.404344 0.256218 -0.372056 -0.003466 0.082022 0.127017 -0.063238 -0.028651 -0.287673 -0.207773 0.034954 0.239598 0.167361 -0.017668 0.097409 -0.528104 0.221753 0.058409 0.271164 -0.095936 -0.104143 -0.074942 0.110427 0.026192 -0.139437 -0.063357 0.045909 -0.207788 0.235880 -0.135932 0.364504 -0.421645 0.029295 -0.429192 -0.265266 -0.075770 0.743932 0.321620 0.345131 0.298634 -0.299600 0.038690 -0.441880 -0.701139 -0.001572 -0.085409 0.151806 0.038710 -0.091110 0.118350 -0.124717 -0.105324 0.124700 -0.313701 -0.195063 -0.173268 -0.097158 -0.011064 -0.157846 -0.315462 0.127909 0.411353 -0.141241 0.217660 -0.240141 -0.289973 -0.316865 -0.356811 0.258854 -0.181443 0.112221 0.021449 -0.021681 -0.476606 0.233415 -0.290732 0.003454 -0.239724 -0.318898 -0.404006 0.079664 -0.170832 -0.037681 0.087307 -0.333586 0.175779 0.029339 0.093534 0.100907 0.100136 -0.078135 -0.377487 -0.470895 -0.101177 0.006508 0.384679 0.219751 0.003586 -0.122371 -0.244646 -0.283799 0.341410 -0.353765 0.105294 0.248180 -0.437139 0.195784 -0.258883 -0.163322 -0.131164 0.222816 0.110470 -0.486830 0.460456 0.392097 -0.478239 -0.269453 -0.418175 0.190726 0.072567 0.569155 -0.111589 0.154391 0.120512 0.192345 -0.049469 -0.137767 0.219049 0.073375 0.118259 -0.573273 -0.420120 0.267263 0.377003 -0.018331 0.036338 0.109154 0.252952 -0.022014 0.560771 0.067102 0.119175 -0.192663 -0.700740 0.112090 0.257367 -0.001472 0.263802 -0.298957 -0.179193 -0.149552 -0.106033 0.442090 0.209166 0.069581 0.413344 -0.198257 -0.376425 -0.207779 -0.082772 -0.004416 -0.306093 0.270350 -0.296788 -0.065454 -0.216310 0.171128 -0.036194 -0.069272 -0.359462 0.033706 0.156186 0.185907 -0.051715 0.365183 0.099027 -0.217980 -0.097431 0.096026 0.049429 0.382211 -0.306723 -0.288454 -0.172740 0.083389 -0.188554 0.147230 -0.052446 0.232997 0.143330 -PE-benchmarks/bfs.cpp__main = 2.445242 -0.337696 0.044912 3.175400 1.107097 -0.936884 1.023597 1.883923 -0.193152 -5.368716 -3.284184 0.129494 0.186234 -0.816110 1.300064 0.472521 1.712700 1.629286 -6.379504 0.743325 1.467763 0.308847 -0.969408 -1.056100 0.015109 -1.418555 -1.305830 2.243819 0.364540 3.603768 -1.763818 1.042879 2.907673 0.324790 2.165747 3.191529 0.334976 -0.363191 0.679883 -0.210068 5.889451 1.493131 -0.298146 1.709006 1.466399 4.219639 -0.577053 3.667149 -0.568008 -1.476892 2.632767 -2.733487 -1.510634 -0.144292 -4.071267 1.303343 4.360950 2.571728 -2.887286 2.647305 -1.304815 0.896102 1.514562 -1.002684 4.232362 2.363778 1.551776 2.689335 4.480450 -2.558802 0.086686 0.577574 1.786785 -0.249289 -0.099794 -2.674145 -0.443720 -5.935157 0.367216 -5.629006 0.252757 -0.563855 5.240862 -3.119695 1.010589 2.601245 0.173920 3.052230 -2.341955 -0.740491 -3.871038 -0.092100 -0.509589 4.794208 -0.023508 0.366364 0.537569 1.529963 0.373312 2.095840 -0.500061 -2.976747 -3.469943 -7.718464 -3.231903 -1.390999 -0.008572 -0.249264 -3.694745 -0.982016 2.598006 1.321047 -5.271170 -0.619365 1.461333 1.400193 -1.032192 0.499392 -3.174247 -0.625926 -0.874262 1.289208 1.654511 -1.865761 0.397511 -3.128598 -0.293344 0.834782 1.647490 -0.024206 -3.003587 -0.914032 0.463886 -0.793678 -0.667936 0.347632 0.399893 -1.645261 2.051122 -2.873882 3.422866 -4.719155 -0.153301 -2.468863 -3.043391 -1.112781 4.304920 2.216070 1.745067 1.221315 -1.812530 -0.216195 -4.136501 -5.572192 1.156580 -0.136879 2.224457 -0.065229 -0.824406 0.252836 -1.826500 -0.732965 0.880402 -2.300198 -1.597145 -1.320856 3.843223 -0.106722 -1.530840 -2.556402 0.970167 3.151474 -0.871711 1.827030 -2.247646 -1.804388 -3.833294 -2.587878 3.233116 -1.352868 0.366248 -0.706609 0.041314 -3.707856 1.328312 -3.127746 0.611383 -1.212723 -2.206192 -4.317674 1.153256 -1.133151 -0.035027 0.978719 -2.917232 1.055361 1.946769 2.458606 0.058582 0.701502 0.682833 -3.937735 -3.868719 -0.772090 -0.325976 3.371905 2.501041 0.641530 -1.623549 -1.250890 -2.595030 3.165023 -1.798007 1.303214 0.293761 -2.280684 2.967001 -2.441948 -0.896332 -3.183047 1.553481 1.148146 -4.711450 4.657261 2.579470 -3.363328 -1.397662 -3.325199 1.390608 1.113444 4.315807 -1.781352 -1.241106 1.519496 -0.370350 -0.411080 -2.263385 1.595500 -0.193865 1.209539 -4.254235 -2.089775 2.894466 2.784755 -0.306364 1.696904 1.321315 1.069741 0.295107 4.717852 1.146966 -0.163293 -2.318147 -6.718581 1.674444 2.273426 0.785301 0.213004 -1.978859 -2.056994 -0.164110 0.816637 3.672867 3.996004 -0.083712 3.574108 -3.019767 -3.805853 -2.063217 0.777189 1.287739 -2.315572 0.364122 -2.126869 0.628688 -0.433594 1.380895 1.093681 -2.201819 -3.826552 0.507324 2.980616 0.536046 -1.270117 4.165114 0.350958 -1.848631 -0.198644 -0.191464 0.370380 1.735674 -1.756609 -1.544832 -0.950892 1.386821 -2.382214 2.379537 -0.291499 1.055805 1.896544 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/bfs.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.637637 -0.220219 -0.058939 0.750600 0.325665 -0.361660 0.188805 0.394707 -0.200373 -1.214148 -0.546351 0.182280 -0.016892 -0.309446 0.270190 0.177640 0.467922 0.280525 -1.407818 0.309197 0.168003 -0.105648 -0.561699 -0.287807 -0.015714 -0.367208 -0.091113 0.648986 -0.003645 0.778708 -0.544590 0.230081 0.561133 0.170836 0.801967 0.686663 0.154665 -0.193118 0.094100 0.005648 1.525858 0.413192 -0.235946 0.264863 0.542821 0.978793 -0.022088 0.783185 -0.243889 -0.192502 0.437886 -0.428886 -0.304299 0.017926 -1.194690 0.217990 0.866526 0.519550 -0.783785 0.596725 -0.485928 0.269253 0.374174 0.042356 1.305336 0.281160 0.499028 0.639346 1.061280 -0.578649 0.031062 0.173867 0.666294 -0.072867 0.059368 -0.310268 -0.134924 -1.669307 0.136433 -1.307449 0.131922 -0.036531 1.168882 -0.629485 0.231607 0.632875 0.118961 0.714248 -0.768388 -0.182141 -1.067035 -0.018952 -0.090534 1.327627 0.026765 0.156633 0.153657 0.487637 0.090862 0.540835 -0.086067 -0.839715 -0.631109 -1.968422 -0.809702 -0.314020 -0.228256 -0.310099 -0.916539 -0.188012 0.968051 0.728750 -1.174888 -0.093867 0.195637 0.106323 -0.036909 -0.096972 -0.689296 -0.004538 -0.363931 0.383766 0.391452 -0.320707 0.101728 -0.685333 0.175904 0.252921 0.533016 0.104496 -0.959183 -0.026349 0.370785 -0.176838 -0.300795 0.038760 -0.046328 -0.508515 0.420733 -0.710742 0.853640 -1.072159 0.132711 -0.707100 -0.773882 -0.126752 1.012985 0.713736 0.402049 0.447800 -0.355146 0.117238 -1.096153 -1.742392 0.340997 -0.034399 0.298464 -0.176726 -0.162031 0.014673 -0.416397 -0.299815 0.479348 -0.716076 -0.473145 -0.442475 0.869383 0.062989 -0.394896 -0.465989 0.242942 0.969478 0.027781 0.446755 -0.658092 -0.704936 -0.971756 -0.612632 0.708084 -0.310853 0.007521 -0.034609 -0.045913 -0.959740 0.488924 -0.671791 0.350276 -0.485695 -0.388933 -0.963787 0.166370 -0.287889 -0.018710 0.045642 -0.648871 0.350744 0.228800 0.227899 -0.083933 0.184869 0.256586 -0.851953 -1.011426 -0.037171 0.147752 0.890879 0.587300 0.176557 -0.380664 -0.299178 -0.742307 0.848768 -0.726264 0.342791 0.258761 -0.807400 0.721548 -0.635813 -0.428587 -0.447519 0.532817 0.201650 -0.765468 1.340777 0.860179 -0.997995 -0.405208 -0.852525 0.440106 0.268287 1.223157 -0.484977 -0.098301 0.350173 0.119541 -0.159180 -0.349054 0.421079 0.052079 0.344973 -1.158296 -0.656669 0.643596 0.686899 -0.000271 0.266838 0.053131 0.101505 -0.247488 1.294534 0.201128 0.228548 -0.619923 -1.466119 0.292924 0.064053 0.185673 0.166789 -0.424018 -0.521662 -0.268991 -0.024900 0.928512 0.719980 -0.313405 0.827600 -0.873428 -0.909662 -0.588193 0.141085 0.150603 -0.649710 0.432217 -0.587015 0.008513 -0.268386 0.497153 0.089689 -0.311430 -0.793315 0.087292 0.443269 0.297104 -0.557692 0.937298 0.104491 -0.435906 -0.151317 0.035372 0.058316 0.611091 -0.581339 -0.505871 -0.365494 0.407658 -0.556446 0.598496 0.072631 0.462706 0.428415 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 2.108646 -0.453344 -0.871328 2.175214 0.379995 -1.521671 0.471067 1.335528 -0.310590 -2.894346 -1.065020 1.959098 0.066205 -1.085211 0.318517 0.525893 0.852532 0.976136 -3.891999 1.144606 0.090092 -0.019926 -2.128915 -1.496877 -0.006051 -0.014930 0.138605 1.365959 0.044310 2.020004 -1.480927 0.440327 1.170226 0.393058 1.996256 1.330496 0.197645 -0.350601 0.018698 -0.466847 3.629977 1.663149 -0.737779 1.110600 1.306212 2.337385 0.243463 2.415407 -0.583062 -0.181426 0.721042 -0.258938 -1.056506 0.013671 -2.906899 0.516532 2.289049 1.249709 -1.571524 1.563987 -0.920435 0.770274 1.223784 0.318427 3.648178 1.017588 1.183239 1.804013 2.927962 -1.281808 0.519809 -0.179543 2.338401 -0.459508 0.882315 -1.227420 -1.063713 -3.607938 0.125648 -3.993510 0.635655 -0.081949 3.618968 -1.933350 1.219244 1.083088 0.948904 1.755596 -2.367218 -0.442426 -2.516240 -0.108651 -0.851214 4.455830 -0.182736 0.852090 0.034161 1.279474 0.256024 0.959876 -0.071906 -2.194279 -0.570184 -4.998849 -1.660330 -0.495391 -1.348791 -0.823915 -2.389787 -0.477620 1.959918 2.328756 -3.534323 -0.702112 0.280142 -0.355989 0.716754 -0.043314 -1.558053 0.721293 -1.404879 1.028754 0.844690 -1.149676 0.066913 -1.101900 -0.241163 0.864812 1.443142 0.906050 -3.533443 0.158697 1.009664 -0.278966 -0.719756 0.294755 -0.421856 -1.462973 0.824627 -2.155960 2.069906 -2.903594 -0.182298 -1.533660 -2.165338 -0.138748 2.155403 1.619979 1.327039 0.874047 -0.290080 0.139611 -3.098225 -4.882515 1.471619 -0.152643 0.264924 -0.670194 -0.138614 -0.366870 -1.306458 -1.057832 1.974547 -2.022801 -1.475853 -1.396133 3.249374 0.111210 -1.017191 -0.968118 0.495497 2.507453 0.832015 1.101815 -1.700179 -3.004809 -2.966834 -1.124019 1.929415 -0.703338 -0.218560 -0.079324 -0.078750 -2.129541 0.912857 -1.724009 1.418981 -1.009541 -0.596106 -2.493990 0.307184 -0.526283 0.293702 -0.256602 -1.509196 0.993791 0.695137 0.989133 -0.807956 0.799261 1.262815 -2.465734 -2.711966 0.160674 0.652413 2.515450 1.490153 0.799945 -1.281987 -0.474990 -2.340047 2.170698 -2.753081 1.064630 0.453207 -1.573287 2.126177 -1.879156 -1.142669 -1.286651 1.431693 0.354511 -1.994136 3.797740 2.222665 -2.571880 -0.660654 -2.119386 1.404886 0.723736 3.263390 -1.792815 -0.884306 1.024477 0.155924 -0.559049 -1.085088 1.018332 -0.017412 0.808778 -2.745132 -1.274010 1.604607 1.367779 0.092835 0.370381 -0.260540 -0.775527 -1.128641 3.411596 0.692355 0.773084 -2.012054 -4.024104 0.556445 -0.458798 0.678892 0.299851 -1.103734 -1.409461 -0.541057 -0.272359 2.262214 1.280520 -1.278725 1.886808 -3.116337 -2.282922 -1.536409 0.669537 0.524570 -1.530456 1.273685 -1.492151 -0.033610 -0.362330 1.551772 -0.023476 -0.707957 -1.528056 0.291365 1.207312 0.553040 -1.929616 2.434822 0.310865 -1.067064 -0.210953 -0.186795 -0.151093 0.932360 -1.952405 -0.911354 -0.847574 1.321506 -1.706090 2.023210 0.478109 1.217978 0.851665 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/bfs.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.710884 -0.364373 0.040015 0.942520 0.397616 -0.439780 0.046023 0.270313 -0.248183 -0.871425 -0.363940 0.190720 -0.146095 -0.204987 0.391500 0.027945 0.333018 -0.150843 -0.961052 0.366780 -0.267848 -0.303748 -0.562114 -0.395213 0.052777 0.177798 0.201882 0.637700 -0.027580 0.509041 -0.641143 0.225291 0.152749 0.355207 0.796103 0.013180 0.216497 -0.165223 -0.346982 -0.224620 1.197060 0.190074 -0.244444 0.425799 0.520813 0.630282 0.008600 1.001667 0.029942 0.204845 0.718966 -0.489307 -0.120758 0.142254 -1.056718 0.251943 0.921280 0.202415 -0.425346 0.315195 -0.458574 0.395152 0.287622 0.124195 1.252092 0.393917 0.592376 0.549955 0.832273 -0.588024 -0.010285 0.138167 1.156111 0.129204 -0.392923 -0.443197 -0.114999 -1.443297 0.053285 -0.741383 0.288550 -0.287919 0.696094 -0.339145 0.090215 0.313632 -0.187351 0.381479 -0.948985 0.331125 -0.798604 0.044622 -0.134081 0.966534 -0.233893 0.177303 0.157264 0.246853 0.116843 0.587930 -0.116196 -0.517470 -0.198564 -1.534481 -0.823363 0.334611 -0.380997 -0.575201 -0.639025 0.074229 0.658812 0.285022 -0.565032 -0.583290 -0.117571 0.025573 0.164523 0.171089 -0.473379 -0.080920 -0.226174 0.603441 0.446775 -0.153259 0.295512 -0.951437 -0.034812 0.361165 0.798953 0.320806 -0.562583 0.028256 0.238602 -0.065759 -0.331302 -0.311433 -0.374602 -0.332621 0.262516 -0.290413 0.699166 -0.878255 -0.230364 -0.847204 -0.490802 0.313273 1.061444 0.442427 0.592370 0.873173 -0.220778 0.117181 -0.706213 -1.367452 0.292460 0.137807 0.007934 -0.269249 0.019372 0.152553 -0.295666 -0.627235 0.759366 -0.829449 -0.788256 -0.795120 0.167622 -0.019785 -0.352544 -0.439282 0.539878 0.949908 -0.120016 0.484559 -0.426866 -1.030009 -0.720007 -0.482179 0.488880 -0.247246 -0.092488 0.268352 0.252973 -1.074585 0.427658 -0.536124 0.474501 -0.177261 -0.633852 -0.731890 0.053386 -0.161927 0.279335 -0.021004 -0.439826 0.365200 -0.023342 0.633688 -0.192993 0.659158 0.338045 -0.865978 -1.274376 -0.282114 0.485165 0.999235 0.108264 0.216122 -0.239856 -0.400682 -0.635577 0.853703 -0.866662 0.226033 0.219429 -0.393381 0.453154 -0.505670 -0.526648 -0.323096 0.456058 0.310590 -0.570127 1.118010 0.718368 -0.952981 -0.537533 -1.199059 0.598734 0.084411 1.534856 -0.569974 0.045130 0.265505 0.685424 -0.320271 -0.485862 0.482203 0.219070 -0.058624 -0.899908 -0.817697 0.249385 0.466464 0.188656 -0.061578 -0.008923 0.133710 -0.515194 1.267215 0.143635 0.181847 -0.433020 -1.262989 0.016895 0.522855 0.077478 0.431242 -0.810684 -0.661611 -0.448447 -0.004225 0.795077 0.499401 -0.024134 0.677103 -0.566743 -0.485746 -0.480486 0.216424 -0.117602 -0.763110 0.518168 -0.646920 -0.238856 -0.032693 0.342222 -0.148553 0.066747 -0.816196 -0.312877 0.219471 0.073515 -0.330361 0.648981 0.457104 -0.491074 -0.154265 0.220647 -0.148624 0.503647 -0.646905 -0.366381 -0.371279 0.204468 -0.417701 0.403357 0.377966 0.317931 0.058950 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.319964 -0.908975 -0.300732 1.273760 0.454403 -0.538620 0.265586 0.540310 0.144727 -2.004849 -0.949040 0.322585 0.111161 -0.549314 0.501730 0.576380 0.800669 0.153605 -2.090157 0.658281 0.237785 -0.262890 -1.019363 -0.014031 -0.043880 -0.956376 -0.087241 0.850448 -0.093218 1.217619 -0.754620 0.519837 1.057124 -0.164998 1.146700 1.281941 0.128091 -0.258881 0.268883 0.353840 2.471389 0.636380 -0.179248 0.471199 0.850802 1.609463 -0.315396 2.419753 0.146942 -0.474280 1.528449 -0.853352 -0.563934 0.159164 -1.957940 0.474902 1.526551 0.438876 -1.379572 0.933527 -0.897262 0.450666 0.619439 0.377538 2.119810 0.793079 1.050123 1.058632 1.886449 -0.775010 0.076311 0.561316 1.079564 0.144548 0.535170 -0.888723 -0.403136 -2.021415 0.337432 -1.165685 0.268373 -0.382868 1.818302 -1.166852 0.017066 0.965069 0.217065 1.394691 -1.162584 -0.089936 -1.604803 0.089025 0.055327 2.062886 -0.220975 0.496492 -0.016660 0.724271 -0.128766 0.800744 -0.077297 -1.501160 -1.369560 -2.912708 -1.644883 -0.730450 -0.234095 -0.361793 -1.942241 -0.093299 1.004373 0.547301 -1.876140 0.127333 0.378672 0.212776 0.997857 0.703081 -1.097854 -0.414506 -0.172686 0.769322 0.432160 -0.330822 0.212106 -1.805604 0.697927 0.646012 0.634782 -0.147520 -1.398637 0.155161 0.480702 -0.049417 -0.401089 0.268004 0.260131 -1.248722 0.794186 -0.931539 1.259578 -2.050750 -0.475246 -1.430709 -1.283280 -0.278029 2.336893 1.084185 1.268786 0.642647 -0.918938 -0.045954 -2.060607 -2.675107 -0.018970 -0.530011 0.464976 -0.129357 -0.209054 -0.003923 -0.509658 -0.228336 0.349907 -1.143848 -0.568105 -0.699928 0.902710 0.019339 -0.563449 -0.813555 0.075327 1.261339 -0.020631 0.937821 -0.702823 -1.824441 -1.637999 -0.980649 1.116770 -0.458290 0.366030 -0.210167 -0.145288 -1.819611 0.561923 -1.033505 0.240343 -0.813145 -0.756263 -1.550846 0.320743 -0.406946 0.196882 -0.102264 -1.211525 0.505962 0.398276 0.825730 0.199498 0.451042 -0.053600 -1.817758 -1.776042 -0.052094 0.002590 2.037261 0.854978 0.067511 0.000142 -0.539519 -1.419558 1.175398 -1.702385 0.435198 0.726089 -1.370781 1.152063 -1.009797 -0.762500 -1.194551 0.788634 0.074110 -1.252492 2.231231 1.377975 -1.664965 -0.582327 -1.271838 0.825649 0.444524 1.857736 -0.536943 -0.068402 0.501724 0.317034 -0.243581 -0.507575 0.764168 -0.166424 0.670502 -1.760232 -0.984346 1.162723 1.256897 -0.158389 0.072307 -0.031551 0.148462 -0.131943 1.842430 0.354569 0.254884 -1.072586 -3.027887 0.428184 0.337072 -0.150942 0.416119 -1.105858 -0.725953 -0.318267 -0.026871 1.606090 1.037870 0.223196 1.327643 -1.527938 -1.652352 -0.914464 0.054449 0.064447 -0.784509 0.618256 -0.982964 0.026353 -0.432274 0.905511 -0.058572 -0.735814 -1.187675 0.282821 0.777882 0.358655 -0.774616 1.491724 0.292248 -0.487509 -0.404026 0.132684 0.010631 0.972523 -0.828000 -0.763069 -0.644669 0.573358 -0.925966 1.048308 0.003045 0.938851 0.551508 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.185360 -0.973302 -0.740534 1.980791 0.703120 -1.181067 0.332384 0.952509 0.149183 -3.054686 -1.558663 0.825311 0.206089 -1.136826 0.763909 0.935309 1.222091 0.616960 -3.136129 1.263439 0.339957 -0.315448 -1.858431 -0.287298 -0.077653 -1.153428 -0.541733 1.103443 -0.070093 1.940623 -1.349695 0.838067 1.608697 -0.247280 1.867689 1.930547 0.050270 -0.506211 0.738682 0.345549 3.876839 0.972270 -0.012048 0.893755 1.423802 2.468390 -0.781969 3.832893 0.112017 -0.644547 2.344372 -1.218488 -0.836541 0.492935 -3.081871 0.919199 2.286930 0.575523 -2.186608 1.428724 -1.229601 0.785641 1.095959 0.293954 3.389676 1.503133 1.267989 1.796015 3.158692 -0.994626 0.301099 0.606515 1.913048 0.075391 0.842052 -1.297285 -0.446055 -2.890676 0.357366 -2.098865 0.804607 -0.616986 3.435200 -2.043574 0.365422 1.517244 0.660850 2.278955 -1.876754 -0.234166 -2.485636 0.144140 -0.245552 3.135299 -0.390484 0.889434 -0.317463 1.051157 -0.432416 1.098448 -0.496006 -2.355805 -2.203153 -4.724584 -2.746210 -1.005680 -0.711628 -0.693398 -3.233825 -0.204689 1.653813 1.209839 -3.202159 0.014289 0.461767 0.028487 1.043132 1.490714 -2.048557 -0.616309 -0.589204 1.271776 0.382579 -0.374013 0.123001 -2.934667 0.586072 0.953029 1.105781 -0.150249 -2.316898 0.318779 0.672608 -0.186984 -0.710378 0.428824 0.342254 -2.009468 1.174032 -1.396439 1.831072 -3.193107 -0.983217 -2.356260 -2.193817 -0.399213 3.476365 1.714036 2.079089 1.070185 -1.166004 -0.234911 -3.404064 -3.955859 0.219384 -1.228419 0.748061 -0.289201 -0.221182 -0.225658 -0.732656 -0.559243 0.694278 -2.036835 -1.044398 -1.342787 2.158222 -0.138704 -0.871219 -1.492905 -0.014061 2.162821 -0.077603 1.183748 -1.242625 -2.501150 -2.615848 -1.464648 1.798882 -0.717234 0.723660 -0.354667 -0.008534 -2.590885 0.731771 -1.680009 0.298050 -1.380616 -0.886486 -2.476596 0.396262 -0.583097 0.069998 -0.374821 -1.905604 1.082686 0.950019 1.414381 0.042580 0.754914 -0.068373 -2.912426 -2.841124 -0.107780 0.199084 2.918631 1.821907 0.344430 -0.350739 -0.839644 -2.319757 1.879311 -3.012252 0.763894 1.265528 -2.013362 1.960224 -1.780239 -1.287493 -1.891942 1.268380 -0.032716 -2.622542 3.349821 1.953111 -2.760065 -0.718682 -2.392924 1.510697 0.725325 3.092535 -0.804141 0.016619 0.900853 0.427944 -0.477844 -1.027555 1.228189 -0.325771 1.294112 -2.730659 -1.409120 1.923166 1.962639 -0.226509 0.053808 -0.273613 0.196205 0.019862 2.922347 0.643934 0.363721 -1.773743 -4.752653 0.538233 0.540472 0.046498 0.734859 -1.565126 -1.101971 -0.632990 -0.218040 2.600241 1.161724 0.485558 2.031656 -2.559031 -2.653074 -1.247747 0.465046 0.242466 -1.328100 1.104430 -1.643368 -0.128703 -0.647031 1.683221 -0.014795 -1.224657 -2.203629 0.528079 1.344545 0.627691 -1.384445 2.359366 0.508541 -0.861388 -0.439677 0.018531 0.199836 1.166932 -1.503406 -1.165336 -0.990615 0.886793 -1.632504 2.023600 -0.017823 1.540487 0.865271 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.104922 0.054820 -0.383003 1.386145 0.185338 -0.774232 0.202620 0.537517 -0.457325 -1.352804 -0.544480 1.127439 -0.020093 -0.484272 0.152459 0.249597 0.379214 0.224457 -1.919101 0.562135 -0.155653 -0.290987 -1.038479 -0.787859 -0.026969 0.077199 0.380042 0.956699 -0.075985 1.011732 -0.771723 0.378916 0.467100 0.401278 1.119393 0.442004 -0.072948 -0.212353 -0.342426 -0.425732 1.670375 0.704271 -0.354982 0.577050 0.652319 1.197018 0.221969 0.790074 -0.320603 0.075906 0.362288 0.368671 -0.534192 -0.028632 -1.426994 0.093046 0.933340 0.344788 -0.608345 0.710288 -0.753740 0.445753 0.603859 0.350335 1.873067 0.442635 0.846486 0.984097 1.376141 -0.814239 0.220151 0.023494 1.354173 -0.105590 0.027898 -0.288267 -0.721653 -1.435576 0.012240 -1.987678 0.213515 -0.038327 1.710421 -0.784493 0.198762 0.209486 0.331931 0.882554 -1.460096 0.063604 -1.160103 -0.061957 -0.623778 1.967318 -0.030234 0.488903 0.052904 0.560497 0.213862 0.634417 -0.363588 -1.104910 0.042042 -2.335684 -0.860313 -0.074464 -0.692210 -0.543531 -0.994667 -0.099279 0.972423 1.367155 -1.430117 -0.643008 0.056109 -0.216087 0.286954 0.047600 -0.710830 0.348416 -0.583876 0.710125 0.750094 -0.415900 0.246227 -0.438275 -0.158506 0.372076 0.930676 0.717232 -1.719232 0.007536 0.685479 -0.446539 -0.294002 0.049479 -0.299967 -0.459761 0.373055 -0.923454 1.175620 -1.384445 -0.111931 -0.944002 -0.944333 0.101452 0.613246 1.149668 0.612612 0.589712 0.126626 0.227035 -1.426133 -2.225301 0.702378 0.128071 -0.118652 -0.499717 -0.028758 0.011130 -0.769096 -0.559525 1.312635 -1.119008 -0.979391 -0.873270 1.398886 0.239713 -0.590020 -0.420716 0.339143 0.840432 0.467979 0.823822 -0.808066 -1.844471 -1.492097 -0.594051 0.969782 -0.407044 -0.374420 0.031925 -0.110959 -1.035812 0.463754 -0.868803 0.750811 -0.359523 -0.368253 -1.281039 0.151729 -0.183799 -0.087615 -0.195149 -0.758971 0.433618 0.537802 0.197021 -0.368566 0.642194 0.603246 -0.870151 -1.252775 0.159793 0.401978 1.232772 0.860256 0.396434 -0.841640 -0.324753 -1.173175 1.204418 -1.038992 0.623208 0.214261 -0.739152 1.004527 -0.863860 -0.584693 -0.319322 0.757840 0.221876 -1.331609 1.864155 1.378769 -1.388976 -0.478927 -1.162995 0.761640 0.291947 1.838655 -1.133020 -0.384416 0.408576 0.439354 -0.343199 -0.308648 0.567578 0.078657 0.035806 -1.263948 -0.760697 0.800709 0.628131 0.175561 -0.010776 -0.237097 -0.349249 -0.325573 1.632674 0.391279 0.381746 -0.981514 -2.002897 0.225243 -0.292670 0.093594 0.344485 -0.567849 -0.931144 -0.389000 -0.472329 1.201584 0.090226 -0.988922 0.985592 -1.312398 -1.051931 -1.079207 0.280101 0.063972 -0.854406 0.903428 -0.784326 -0.125294 -0.117936 0.676108 -0.247191 -0.215934 -0.624750 0.016358 0.568414 0.315337 -0.841854 1.217129 0.332189 -0.569329 -0.341397 0.045450 -0.350962 0.524277 -1.355337 -0.511124 -0.450246 0.722555 -0.817492 0.799136 0.538516 0.645645 0.390346 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 1.846151 -0.544775 -0.283234 1.876566 0.642707 -1.080739 0.277799 0.996223 -0.393732 -2.467838 -1.285204 0.295099 0.003467 -0.735357 0.825093 0.462871 0.892602 0.216094 -2.991511 0.927153 0.071749 -0.413176 -1.480703 -0.658597 0.005567 -0.314248 -0.503812 1.243147 -0.080312 1.606958 -1.349172 0.620551 1.002058 0.274318 1.783248 1.006758 0.154297 -0.392397 0.232611 -0.044440 3.164304 0.851100 -0.482404 0.724558 1.207266 1.947849 -0.500023 2.630389 -0.730354 -0.157632 1.745662 -1.346197 -0.612233 0.456094 -2.482489 0.642155 2.430368 0.871546 -1.507197 1.183425 -1.203303 0.814055 0.894040 0.211008 2.999643 1.234505 1.211673 1.482003 2.410399 -1.157483 0.249178 0.251303 1.912013 -0.162825 -0.354940 -1.048783 -0.158048 -3.309515 0.409880 -2.458340 0.602209 -0.429716 2.572035 -1.419705 0.479503 1.200636 0.215257 1.527684 -2.082119 0.170199 -2.047090 0.020076 -0.469676 2.826509 -0.464694 0.582718 0.145247 0.961918 0.085799 1.127853 -0.521545 -1.640258 -1.493933 -4.028638 -2.135965 -0.057660 -0.808840 -0.827693 -2.167572 -0.235671 1.866393 0.874178 -2.295756 -0.550116 0.115129 0.167050 0.331955 0.992765 -1.776748 -0.254002 -0.841938 1.158613 0.801818 -0.424418 0.448394 -2.386639 0.122841 0.896553 1.391939 0.391231 -2.107769 0.247153 0.680700 -0.620358 -0.762823 -0.013490 -0.268151 -1.176448 0.888148 -1.265165 1.731527 -2.621385 -0.440266 -1.971955 -1.839875 0.174771 2.336167 1.531088 1.096839 1.454331 -0.754710 0.128158 -2.457374 -3.368705 0.509044 -0.186720 0.585599 -0.622599 -0.167065 -0.004830 -0.767884 -0.920349 1.141741 -1.865485 -1.363745 -1.567870 2.055284 0.033862 -0.919165 -1.076294 0.657444 2.153301 -0.286506 1.094089 -1.198514 -1.726332 -2.200352 -1.220113 1.500794 -0.568826 0.144829 0.071017 0.358391 -2.561343 0.932678 -1.419601 0.770535 -0.861704 -0.982076 -2.074872 0.287254 -0.419863 0.143246 -0.186530 -1.354834 0.860311 0.688954 1.242757 -0.246396 0.936791 0.556682 -2.169580 -2.723928 -0.303194 0.617029 2.377029 1.195847 0.393162 -0.432399 -0.742942 -1.778394 1.993284 -1.880998 0.666268 0.604871 -1.352860 1.541805 -1.420821 -1.257432 -1.314828 1.104655 0.360100 -1.713711 2.981012 1.671987 -2.325047 -0.903025 -2.570530 1.400613 0.464586 3.110592 -1.011517 -0.047880 0.728366 0.719376 -0.567727 -1.036962 1.105394 0.054634 0.575038 -2.274506 -1.440681 1.321199 1.421771 0.123068 0.311648 -0.108778 0.232888 -0.487876 2.815662 0.444532 0.159462 -1.263848 -3.452624 0.372656 0.594478 0.206442 0.433645 -1.384393 -1.348506 -0.858691 0.131192 2.100814 1.589666 -0.075666 1.749578 -1.880678 -1.865671 -1.259995 0.713920 0.062596 -1.565963 0.811378 -1.426780 -0.154754 -0.181569 1.230476 0.181742 -0.776748 -2.312614 -0.162602 1.006882 0.279088 -1.237069 1.964906 0.628915 -0.914869 -0.387996 0.212433 0.055040 1.158027 -1.191316 -1.014924 -0.891302 0.749128 -1.325218 1.448922 0.495691 0.986131 0.739521 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = 0.291582 -0.513220 -0.112030 0.661887 0.154577 0.181066 0.060336 -0.216788 -0.008495 -0.985226 -0.245725 0.227223 0.103816 0.356231 0.019800 0.342274 0.248083 -0.042912 -0.740188 -0.066532 0.118926 -0.161868 0.011812 0.231320 0.005485 -0.464655 0.586973 0.304045 0.095478 0.567891 -0.330683 0.415713 0.545047 -0.079576 0.237562 0.389327 0.370361 -0.044268 -0.568654 0.029282 0.852702 -0.066572 -0.035988 0.088234 -0.127504 0.682623 0.329470 0.954115 0.532218 -0.329705 0.458808 -0.268267 -0.196495 -0.082045 -0.719851 0.156176 0.267549 0.329006 -0.381768 0.195765 -0.088670 0.192566 0.177291 0.254400 0.719501 0.043680 0.651008 0.388714 0.500650 -0.595550 -0.000459 0.275394 0.110360 0.169415 0.502973 -0.451544 -0.260288 -0.549831 0.139704 -0.244236 -0.168440 -0.032240 0.281778 -0.444304 -0.339139 0.224379 -0.142939 0.640584 -0.297079 0.314452 -0.758879 0.010776 0.313225 0.742459 0.153023 -0.028689 -0.026293 0.229724 0.029960 0.298859 0.307797 -0.616070 -0.196134 -0.779274 -0.588249 -0.422262 0.146402 0.203826 -0.749877 0.041637 0.005720 0.390391 -0.749062 0.083573 0.172892 0.377907 0.846249 0.027801 -0.061820 -0.079574 0.230511 0.214257 0.387207 -0.233015 0.323421 -0.362448 0.431739 0.169075 0.229054 -0.013255 -0.485485 -0.189648 0.195554 0.074383 0.048817 0.136198 0.373214 -0.290843 0.394506 -0.286678 0.444932 -0.640330 -0.164847 -0.236045 -0.478617 -0.274563 0.988026 0.309434 0.553695 0.061508 -0.615500 0.020104 -0.719221 -1.257503 -0.165011 0.140538 -0.047425 0.438461 -0.213868 0.383745 -0.393553 0.089924 0.344342 -0.319573 -0.405212 -0.029680 -0.454784 0.067615 -0.153233 -0.237782 0.068168 0.076255 0.052907 0.800502 -0.130560 -1.105496 -0.807765 -0.454722 0.493482 -0.322604 0.112061 -0.163867 -0.269849 -0.871903 0.151472 -0.434856 -0.048229 -0.046189 -0.544470 -0.701673 0.269930 -0.213792 -0.055209 0.302084 -0.662190 0.117553 -0.085791 0.056229 0.260627 0.008029 -0.067236 -0.612277 -0.568632 0.100126 -0.373518 0.717989 -0.055592 -0.097896 -0.073276 -0.430949 -0.426757 0.369254 -0.653166 0.287965 0.200436 -0.283566 0.180675 -0.457215 -0.041601 -0.168107 0.326827 0.238615 -0.381710 0.967307 0.652037 -0.450265 -0.160205 -0.041422 0.276019 0.100699 0.524076 -0.458448 -0.232645 0.113698 0.294722 -0.005558 -0.053842 0.260489 -0.110739 -0.169345 -0.616956 -0.434898 0.215492 0.442503 -0.041836 -0.061182 0.395564 -0.091522 -0.162726 0.651264 0.134678 0.206115 -0.224956 -1.183053 0.275826 -0.005853 -0.247919 0.293298 -0.673408 -0.007720 0.226000 -0.270909 0.587993 0.090775 -0.030129 0.621818 -0.683195 -0.549805 -0.418831 -0.456102 -0.057162 -0.031851 0.278611 -0.353245 0.076820 -0.174423 0.050190 -0.405586 -0.148639 0.193538 0.201351 0.338524 -0.013663 0.145300 0.614985 0.150260 -0.112107 -0.201283 0.108730 -0.159384 0.344313 -0.480636 -0.195093 0.090707 0.228617 -0.346764 -0.023809 -0.253319 0.038079 0.038041 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 12.993725 -4.052067 -19.357698 31.737062 -3.693070 0.073458 2.659303 -1.005904 0.506757 -37.077975 -15.568508 23.582766 9.906382 1.774813 -0.435977 14.940212 3.831776 9.052028 -32.724698 0.571581 7.759008 -2.493127 -9.133260 -4.342676 -2.628031 -10.432143 18.534101 5.479051 1.581928 24.277188 -5.353481 20.058986 20.236553 -4.413218 6.759311 14.516549 -9.590127 1.730609 -12.866760 -6.299851 27.738472 10.312062 -0.818400 8.515314 -7.235935 25.343562 5.943740 20.917611 -0.477370 -10.284416 10.544224 21.069347 -8.834581 -4.221690 -22.960334 3.437927 14.756534 7.347071 -7.061672 10.168508 -9.575582 6.624013 12.346728 8.718447 31.886713 10.882900 24.843321 26.270578 22.190726 -17.432877 10.225491 -0.321753 0.011129 -6.632947 27.530511 -14.149906 -22.137386 1.316444 -3.995105 -28.453819 1.324270 2.675909 39.038437 -20.992117 -8.102747 -3.167195 15.933624 29.455200 -15.930009 6.040700 -21.060816 -2.162899 -11.169187 38.066598 7.734131 8.840418 -10.277276 11.129320 -3.088793 2.071953 2.837039 -23.286740 5.792861 -35.275860 -18.260471 -17.077671 3.840652 11.441879 -28.466555 0.813081 -3.354834 18.210985 -40.340519 -0.594700 5.152705 7.945336 30.487575 -0.988223 -13.213399 4.660266 0.213247 7.735641 10.696864 -9.333414 8.971031 -4.233603 1.769388 4.267992 7.908605 8.916146 -34.996555 -5.783675 4.498972 -5.640180 6.124591 17.363827 19.125528 -8.832379 11.623904 -17.569199 20.032047 -32.511618 -6.662488 -10.710756 -24.864653 -12.296487 12.425674 18.329986 18.732314 -10.391938 -8.963497 -0.229943 -37.613655 -40.886762 1.075430 3.793944 -5.214341 9.148338 -5.484596 7.102321 -21.634722 12.274657 24.309136 -13.142523 -13.043157 0.017201 26.236464 6.300393 -10.211442 -6.814804 -6.579940 -7.412029 10.272140 30.425091 -2.826780 -37.499151 -43.598492 -8.506027 22.589368 -11.670274 -0.320125 -14.010662 -11.629777 -19.480387 -1.138914 -18.495712 3.428580 1.757286 -8.425743 -29.124169 7.858208 -0.877749 -9.238799 4.130729 -23.720683 5.537795 19.835047 0.159108 1.208533 3.690807 3.161358 -18.262805 -14.489936 12.901031 -14.967875 20.730022 19.401925 -0.773672 -12.443235 -9.437521 -21.628841 11.024070 -14.413534 16.372545 1.810493 -8.534128 10.373746 -24.877597 -2.258122 -14.264673 6.179836 -1.044354 -32.212710 34.460190 19.286505 -14.851310 3.448881 -1.253470 15.122277 -1.767425 12.702683 -20.817431 -15.409993 3.822987 -0.706993 -0.254843 -2.029288 5.330076 -10.167518 -7.960139 -19.219486 -4.691374 21.939077 9.963009 -3.075317 0.853660 7.433355 -18.762350 4.142692 20.402021 18.197953 1.740064 -19.069196 -45.690844 7.687898 -22.454917 -8.482264 -3.185137 -9.416495 -6.507244 9.590204 -9.780747 19.803895 -3.209037 -16.544410 20.852311 -33.147087 -24.093475 -21.155905 -5.320167 5.188139 -2.235574 3.670763 -11.843898 5.168070 -1.150835 8.461111 -10.977870 -17.713895 10.442861 12.751985 25.436202 -2.858841 -4.692755 25.679866 8.341042 -3.848104 -8.246855 -1.753939 -15.440633 4.522954 -29.833958 -4.380676 6.548544 14.565469 -19.499009 6.892865 -4.513496 5.977754 6.594646 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.457826 -0.121295 -2.358918 4.173841 -0.463438 -0.154927 0.345502 -0.365091 -0.112890 -4.525773 -1.783674 2.043043 1.274419 0.147104 0.056052 1.979324 0.382781 0.989570 -3.966719 0.234082 1.197116 -0.343607 -1.161065 -0.428779 -0.358459 -1.707055 2.076757 0.938847 0.076685 3.230486 -0.791887 2.461044 2.702171 -0.665222 1.052019 2.075961 -0.858743 0.502204 -1.599590 0.024309 3.547170 1.379611 -0.493282 0.586621 -0.684714 3.464793 0.844398 2.075454 -0.994940 -1.444017 1.186513 3.180171 -0.876048 -0.705672 -2.796877 0.453764 2.473940 1.289781 -1.254350 1.365762 -1.549996 0.801715 1.618345 1.615955 4.024350 1.369788 3.090643 3.303755 3.048421 -2.272440 1.141251 0.092885 -0.004872 -1.161356 3.467734 -1.223015 -3.104250 0.043075 -0.486899 -3.458771 -0.041345 0.695259 4.194562 -2.786172 -1.055543 -0.037063 1.893157 3.734643 -2.254970 0.590962 -2.653250 -0.332628 -1.639996 5.399464 1.050795 1.004831 -1.091805 1.793130 -0.061622 0.474018 0.378399 -3.234726 0.392150 -4.259621 -2.768258 -2.316119 0.567394 1.440907 -3.885175 -0.179534 0.195794 2.257654 -5.216993 0.432203 0.823769 1.336302 3.975648 -0.913882 -1.805285 0.894742 -0.052947 0.817078 1.649905 -1.079273 1.146581 -0.580752 0.578146 0.686699 0.910636 0.898459 -4.227723 -0.512048 0.534257 -1.014638 0.628856 2.128523 2.225647 -1.548719 1.624321 -2.399143 2.851860 -4.387584 -0.473331 -1.501416 -3.281640 -1.429184 0.411755 2.282758 2.051975 -1.492021 -1.555330 0.152450 -5.023468 -5.310889 -0.033075 0.675263 -0.597420 1.061948 -0.893447 0.971053 -2.653850 1.646806 3.186202 -1.746758 -1.567262 0.096311 3.893036 0.872527 -1.426987 -0.768670 -0.963609 -0.901628 1.531635 4.050317 -0.519305 -4.061054 -5.659586 -1.269164 2.917805 -1.499403 -0.073832 -1.847926 -1.528199 -3.187558 0.399570 -2.525041 0.520536 -0.033551 -0.548639 -3.702054 1.011414 -0.268118 -1.121514 0.379020 -3.135051 0.559380 2.261692 -0.757236 0.452262 0.253283 0.536513 -2.165998 -1.750217 1.779569 -1.810600 2.672471 2.228483 -0.033285 -1.173764 -1.213176 -2.900730 1.459185 -1.224265 1.897634 0.391857 -1.212419 1.625174 -3.020393 -0.695562 -1.773649 0.858813 -0.061015 -2.570676 4.594593 2.760905 -1.949335 0.322904 0.144105 1.892363 -0.044291 1.739068 -2.644609 -1.939644 0.466217 -0.019300 -0.045172 -0.051989 0.854060 -1.498869 -0.729836 -2.349127 -0.493346 2.671334 1.616945 -0.380124 0.227590 0.707455 -2.527689 0.315991 2.316053 2.235135 0.418579 -2.319616 -4.859602 1.029416 -4.608669 -1.055902 -0.606227 -0.648327 -0.846982 1.134150 -0.597489 2.859374 0.009990 -2.406433 2.820261 -4.412286 -3.317654 -2.867141 -0.775479 0.507102 -0.563863 0.400461 -1.631937 0.791980 -0.118064 1.051928 -1.236901 -2.239930 1.333729 1.467692 3.027846 -0.422187 -0.932584 3.397293 0.972995 -0.585484 -1.243915 0.068774 -1.952740 0.739899 -3.238571 -0.824430 0.564697 1.997208 -2.358040 0.902432 -0.891733 0.733988 1.103777 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 3.397690 -0.938930 -4.617849 8.886401 -0.569579 0.558896 0.750604 -0.833652 0.399443 -9.786537 -4.109490 4.708143 2.531841 0.846212 0.120566 4.088061 1.338192 1.646179 -8.491223 0.061954 2.273994 -1.031231 -1.911155 -0.400645 -0.679742 -3.828765 5.187177 2.028921 0.349809 6.765796 -1.500608 5.479453 5.788658 -1.199257 2.202667 4.354360 -2.009015 0.665827 -4.048876 -0.756778 7.591663 2.731187 -0.734654 1.742263 -1.855448 7.391592 1.970681 5.358368 -0.249580 -3.012218 3.083598 5.726913 -2.101499 -1.442507 -6.298565 0.907611 4.593467 2.032441 -2.457045 2.628091 -2.939277 1.830676 3.215942 2.992626 8.331664 2.670375 6.799170 6.909833 6.063261 -5.270132 2.226777 0.676487 0.009568 -1.351345 7.111687 -3.352950 -6.364849 0.730201 -0.911184 -6.466091 -0.183760 0.575155 8.644086 -5.582417 -2.702243 -0.523818 3.222142 7.848957 -4.346244 1.737683 -5.924105 -0.538698 -2.567773 10.231418 2.019189 1.985301 -2.081099 3.157207 -0.601559 1.099754 1.239686 -6.903255 0.915054 -8.593279 -5.459470 -5.040507 1.813306 3.175300 -7.953144 0.330894 -0.909024 4.445313 -10.547427 0.432330 1.572272 2.870718 8.653410 -1.044996 -3.153051 1.022594 0.793887 2.221489 3.586989 -2.548442 2.734971 -1.576469 1.259516 1.452608 2.080596 1.871048 -8.244559 -1.539720 1.231216 -1.354400 1.572919 4.443429 4.980692 -2.908673 3.476820 -4.541548 5.985108 -8.969716 -1.644184 -3.328957 -6.271259 -3.357010 2.519585 4.870268 5.314475 -2.504630 -3.058115 0.295107 -10.166134 -10.837627 -0.520706 1.322966 -1.299157 2.770463 -1.794359 2.648277 -5.759871 3.612780 6.005412 -3.490969 -3.579155 0.365061 6.129671 1.774043 -2.800709 -1.637940 -1.660580 -2.182914 2.615197 8.911667 -0.773588 -9.777015 -11.659829 -2.845079 6.165567 -3.518428 -0.035810 -3.771637 -3.177812 -6.204445 0.292451 -5.330779 0.691982 0.268266 -2.011646 -7.908048 2.472773 -0.745112 -1.818289 1.553488 -6.668394 1.258849 4.789500 -0.342287 1.127308 1.041689 0.542198 -4.789452 -3.634734 3.324081 -4.169441 6.302465 4.194739 -0.588222 -2.445784 -3.055535 -5.825470 3.112593 -3.073896 4.175607 0.746351 -2.388648 2.725131 -6.373306 -0.825251 -3.897920 1.858750 0.234200 -6.669520 8.976923 5.826469 -4.153455 0.439820 -0.057214 3.954435 -0.356702 3.635356 -5.352931 -4.155981 0.941829 0.449913 -0.028022 -0.380389 1.641849 -2.727721 -2.263068 -5.225766 -1.451220 5.721828 3.117258 -0.870155 0.022553 2.308287 -4.614366 1.145916 5.107571 4.695813 0.899539 -5.054091 -11.553763 2.170547 -7.324779 -2.423038 -0.617470 -2.244979 -1.742805 2.557049 -1.986663 5.967630 -0.199178 -4.202790 6.152566 -8.741262 -6.729604 -6.157659 -2.161702 1.017612 -0.720693 0.854263 -3.471804 1.567106 -0.569004 1.838489 -3.035307 -4.519120 3.092516 3.394449 6.576853 -0.839555 -0.972780 7.014555 2.427522 -1.209273 -2.644499 0.330176 -4.581914 1.605005 -7.388109 -1.544710 1.638045 3.908825 -4.908284 1.203842 -1.614221 1.573471 1.584607 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = 0.839335 -1.162503 -0.540174 1.686894 -0.186846 -0.121301 0.090954 0.491570 0.311554 -1.765625 -1.098999 0.204237 0.445332 0.404990 1.105182 0.568629 0.298653 -0.145763 -2.263875 0.257245 0.340533 -0.246094 -0.499375 0.057458 0.054700 -0.499440 0.482637 0.556775 0.105125 1.243018 -0.634380 1.003582 0.799050 -0.478637 0.446441 0.648344 -0.192037 -0.076955 -0.634427 -0.007153 1.884207 0.236244 -0.227609 0.501477 -0.261927 1.287216 -0.078672 2.067081 0.374649 -0.780392 1.546421 -0.366591 -0.489529 -0.007579 -1.316991 0.406218 1.543015 0.825523 -0.685620 0.803611 -0.849131 0.436929 0.616364 0.408268 2.010612 0.603335 1.647368 1.237262 1.211033 -1.079759 0.558417 0.195159 0.312955 -0.099640 0.785562 -1.279347 -0.287978 -2.132460 0.434725 -1.020075 -0.090567 -0.093185 1.452272 -1.159820 -0.212186 0.625134 0.145494 1.735793 -1.207458 0.977472 -1.005462 -0.207229 0.152228 1.488915 -0.092080 0.082544 0.106870 0.736684 -0.205250 0.624571 0.360796 -0.901641 -0.573095 -2.355462 -1.544270 -0.236681 0.285483 0.327058 -1.740361 0.258351 0.447524 -0.571215 -1.619835 -0.187597 0.382874 0.987184 0.755284 0.508106 -0.561739 -0.638246 0.235364 1.057812 0.946475 -0.604699 1.140614 -1.528741 0.550429 0.982667 0.780309 0.239816 -0.636359 -0.446577 0.312163 0.069366 -0.003073 0.625216 1.165088 -0.353863 0.956394 -0.955612 1.342464 -2.106773 -0.462510 -1.055496 -0.665872 -0.398023 1.755651 0.598078 0.868545 0.246736 -1.550505 0.282783 -1.778353 -1.999708 -0.220544 0.564502 0.110436 0.580415 -0.284146 0.555933 -0.586421 0.165403 0.607255 -0.987035 -0.877771 -0.421993 -0.432426 0.587671 -0.607222 -1.029304 0.552829 0.255589 -0.511758 1.576978 0.211008 -1.554328 -1.914585 -0.687189 1.329281 -0.213138 0.302143 -0.323499 -0.546721 -1.721575 0.374220 -1.027665 -0.027245 0.148733 -1.141587 -1.572964 0.226626 0.078224 -0.191903 0.319024 -1.424233 0.228922 0.479283 0.757428 0.105765 0.702518 0.299829 -1.631799 -1.732624 -0.048332 -0.679656 1.697078 0.371051 -0.336412 0.090909 -0.577631 -0.596952 1.077784 -1.388125 0.791880 0.109319 -0.747929 0.571820 -1.294242 -0.739963 -1.212965 0.368879 0.267536 -1.593094 2.048018 1.062468 -1.034832 -0.088046 -0.847266 0.981205 -0.055252 1.419149 -0.947501 -0.274958 0.086276 0.620461 -0.055020 -0.765530 0.518385 -0.384752 -0.823273 -0.982864 -0.600621 1.027695 0.808291 0.190234 0.292112 0.823683 -0.166335 -0.155979 1.461859 0.677312 -0.451588 -0.708649 -2.496446 0.913286 1.011563 -0.664417 0.310072 -1.673712 -0.498208 0.174767 0.297063 0.807587 1.500201 0.643689 1.325085 -1.298782 -1.376404 -1.299385 -0.004386 -0.235961 -0.281948 0.018497 -0.776222 0.359650 0.095590 0.567877 -0.691765 -0.536767 -0.930529 0.086646 1.124200 -0.257620 -0.005896 1.636256 0.702364 -0.398919 -0.653985 -0.032633 -0.901217 0.565863 -0.315125 -0.450042 0.158717 0.611585 -1.292714 0.179533 -0.063860 0.281087 0.255014 -PE-benchmarks/boruvkas-algorithm.cpp__main = 4.283359 -4.749778 -2.820135 8.602545 -0.003426 0.046432 1.437950 0.650724 1.543078 -10.591270 -3.905447 4.538878 1.764330 0.416202 0.715521 2.796428 2.233576 1.227360 -11.249706 0.402802 1.716589 -0.763934 -2.054896 -0.711864 -0.506846 -3.793284 5.523275 3.724544 0.351864 6.797193 -1.986875 4.121723 5.788128 -1.029697 2.661566 5.202955 -0.426417 0.293402 -3.798109 -0.593422 9.436348 3.034584 -1.451571 2.616996 -0.522506 7.852654 2.592888 8.279105 3.339004 -3.009361 4.749387 1.787895 -2.888613 -2.116217 -7.783423 0.950154 6.115240 3.183450 -3.600992 3.757375 -2.942249 1.766314 3.263659 2.894182 9.111335 2.681983 7.301561 6.417861 6.996084 -5.961425 1.538269 1.209420 1.919505 -0.035340 6.261321 -5.893141 -5.773332 -5.856585 0.191000 -6.825981 -0.536781 -0.274678 7.282391 -5.586499 -1.657645 1.131437 1.721122 7.498232 -4.772313 1.444746 -7.084242 -0.450441 -0.163514 11.169089 1.021920 1.614047 -0.381228 3.405879 -0.187918 2.417848 2.550780 -7.229607 -0.269260 -11.841637 -5.537099 -4.819128 1.011918 1.809681 -7.687512 0.336284 0.478212 2.043919 -10.222367 -0.270836 2.043501 2.785741 8.154083 -1.547245 -2.104035 0.183975 0.678047 2.749434 4.096546 -3.962539 2.689862 -2.896627 2.360106 2.624850 2.306333 1.474718 -7.059367 -1.569090 1.814948 0.666252 0.753939 3.224250 3.802821 -3.320484 3.631333 -5.403952 6.775663 -9.198766 -1.660591 -3.632131 -4.738797 -3.179905 7.682743 3.559929 5.489944 -0.973939 -4.426321 0.652019 -9.256672 -13.302823 0.204516 1.415805 -0.366895 2.177067 -1.814733 2.154749 -5.113121 1.934941 4.308860 -3.766155 -3.561222 -0.131787 1.716564 1.668867 -2.691577 -2.150970 0.263421 0.873369 2.144551 8.278473 -1.506357 -12.056008 -10.289317 -3.471472 6.422006 -3.102364 -0.303599 -2.477881 -3.336800 -7.268304 1.311887 -5.345774 1.211420 -0.538566 -4.435011 -8.470143 2.649181 -1.409042 0.795512 2.119291 -6.948024 1.259043 1.951441 2.585080 0.852101 1.675262 1.135577 -7.451882 -5.970999 1.688764 -3.149661 8.658711 2.181056 -0.229275 -1.509157 -2.946716 -5.274135 3.955354 -5.479669 3.947151 1.029573 -4.408640 3.593758 -5.614259 -1.073744 -4.992248 2.668580 1.414082 -5.839223 11.240303 6.668584 -5.191222 -0.875233 -1.157614 3.324236 0.423530 5.453627 -5.781566 -4.416233 1.734988 0.872061 -0.237299 -1.495614 1.967678 -1.451769 -1.529422 -6.832762 -3.196838 5.331697 3.860889 -0.616442 0.392673 2.752821 -3.083968 -1.301407 7.685692 3.518797 1.473532 -5.267087 -14.170308 3.177182 -1.093095 -1.840708 0.614302 -5.524795 -2.412725 2.288959 -0.328749 6.079459 3.703785 -2.510184 6.634299 -8.514515 -7.102801 -6.221071 -2.361414 1.152441 -1.198591 1.523196 -3.907050 1.598998 -1.312236 2.054671 -2.907392 -3.203037 1.153183 2.930359 5.560157 -0.222701 -1.524581 7.648541 1.783603 -1.978486 -2.429895 -0.013715 -4.156763 3.147817 -5.560019 -1.510004 0.644517 4.176732 -4.962584 1.925888 -0.962767 2.186628 1.359879 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = 0.583757 -0.123299 -0.863527 1.957830 0.076131 -0.081384 0.100180 -0.314878 0.026747 -2.127381 -0.694859 0.629366 0.282477 -0.064496 0.266272 0.817248 0.381434 0.436088 -1.166964 0.164108 0.498679 -0.131554 -0.589157 0.053849 -0.140518 -0.744748 0.741170 0.421292 0.076161 1.190945 -0.445738 0.919482 1.253767 -0.350034 0.415703 0.908851 -0.060451 0.371924 -0.605847 0.101759 1.888148 0.215895 -0.074343 0.489694 -0.056750 1.520119 0.104805 1.446959 -0.287909 -0.693311 0.814638 0.977207 -0.033775 -0.248464 -1.331813 0.333485 1.202194 0.605467 -0.955795 0.561312 -0.520855 0.448749 0.696252 0.750095 1.755155 0.893414 1.211730 1.594497 1.444580 -0.916435 0.379665 0.167148 0.117445 -0.212558 1.362346 -0.593486 -1.026230 -0.086064 -0.263609 -0.776597 0.072751 0.158324 1.859315 -1.205623 -0.432145 0.047268 0.611564 1.612442 -0.798956 0.347378 -1.320427 -0.048297 -0.534461 2.122512 0.300971 0.242050 -0.577043 0.645511 -0.171648 0.356487 0.009569 -1.398027 -0.151954 -1.963726 -1.527181 -0.944092 0.332531 0.540044 -1.970919 -0.219794 0.041634 0.766982 -2.246383 0.055430 0.252824 0.624832 1.600395 -0.073406 -1.048547 -0.020050 0.124314 0.288935 0.554966 -0.106992 0.450785 -0.997949 0.319786 0.303513 0.442707 0.261852 -1.573682 -0.220215 0.047195 -0.397787 0.170506 0.856696 0.940174 -0.812400 0.808496 -0.806528 1.161496 -2.023482 -0.366440 -0.799925 -1.540086 -0.572080 0.750921 0.975764 1.170420 -0.405826 -1.050028 -0.239073 -2.234799 -2.273142 -0.260532 0.002139 -0.111121 0.618424 -0.417961 0.426654 -1.024685 0.583714 1.292391 -0.725537 -0.684773 -0.300311 1.365615 0.217833 -0.632948 -0.551692 -0.317773 -0.153166 0.249490 1.707594 -0.223831 -1.570072 -2.435488 -0.725361 1.221694 -0.672197 0.215032 -0.779995 -0.526565 -1.756380 0.327011 -1.137443 0.140549 -0.228080 -0.252449 -1.618589 0.477341 -0.249466 -0.382854 0.085457 -1.400518 0.354895 0.830670 -0.241875 0.289046 0.295621 -0.062366 -1.308145 -0.953549 0.599717 -0.658462 1.269126 1.076721 0.083925 -0.448963 -0.682560 -1.328372 0.769381 -0.790457 0.705382 0.568852 -0.453483 0.808000 -1.200083 -0.404790 -0.880046 0.414177 0.037931 -1.450141 1.766159 1.154271 -1.017010 -0.019098 -0.199005 0.931942 -0.007403 0.851130 -1.045924 -0.556001 0.390464 0.110890 -0.043066 -0.286968 0.385816 -0.496332 -0.052179 -1.241028 -0.329201 1.202494 0.718462 -0.313954 -0.172690 0.370539 -0.957634 0.222269 1.230883 0.939278 0.239664 -0.844054 -2.306120 0.398806 -1.695291 -0.391632 -0.037229 -0.410261 -0.327960 0.380545 -0.308803 1.440535 -0.029963 -0.510194 1.330305 -1.892395 -1.515537 -1.020106 -0.385830 0.162273 -0.414355 0.282575 -0.658997 0.049047 -0.130236 0.477902 -0.502489 -0.996925 0.164892 0.499152 1.310204 -0.270361 -0.426872 1.351961 0.450050 -0.395195 -0.431534 0.209257 -0.533928 0.463584 -1.554751 -0.520059 0.091602 0.666998 -1.077961 0.511188 -0.634778 0.376002 0.470268 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = 0.709900 -0.182175 -0.137180 0.921360 0.492711 -0.263757 0.178726 0.240988 0.122193 -1.514098 -0.593496 0.632457 -0.010615 -0.208622 0.088445 0.374756 0.640537 0.524309 -0.880930 0.297904 0.209361 0.114980 -0.427922 -0.139266 0.076700 -0.408700 0.022971 0.309740 0.215728 0.904993 -0.630970 0.323650 0.794642 -0.050133 0.539899 0.834710 0.473352 -0.133331 0.025441 -0.255976 1.614703 0.122577 0.172269 0.725534 0.458687 1.098277 -0.156521 1.452241 0.295479 -0.397150 0.538722 -0.455133 -0.344750 0.043504 -1.266312 0.676235 0.674970 0.452894 -0.905456 0.537223 -0.045427 0.329131 0.419360 -0.176371 1.033167 0.722170 0.272692 0.860769 1.449710 -0.621814 0.002844 0.355129 0.802965 0.369899 0.569932 -0.512930 -0.131665 -0.847464 -0.142852 -0.766911 0.365837 -0.347193 1.699483 -0.959084 0.165987 0.639420 0.145532 0.933946 -0.495411 -0.077553 -1.174350 0.147152 -0.010114 1.132683 0.034208 0.253653 -0.316060 0.345137 -0.192148 0.485962 -0.046265 -0.883340 -0.758136 -1.802518 -1.057778 -0.582104 -0.145405 -0.132418 -1.338181 -0.071720 0.449865 0.950268 -1.541373 -0.130811 0.227535 0.143046 0.317255 0.486733 -0.667939 -0.225391 -0.125903 0.198609 -0.117792 -0.290607 -0.039983 -0.825840 -0.150126 0.108805 0.484801 -0.049902 -0.937915 -0.139278 -0.004135 0.022041 -0.153330 0.153515 0.249567 -0.886079 0.547244 -0.540275 0.651922 -1.142820 -0.594276 -0.615767 -1.027407 -0.393734 1.626375 0.371619 1.132522 0.260422 -0.494840 -0.542340 -1.288599 -1.487143 0.276550 -0.463978 0.338300 0.394817 -0.140038 0.000000 -0.535856 -0.351415 0.397335 -0.765585 -0.425572 -0.413233 0.810524 -0.359589 -0.167020 -0.961447 0.013748 0.907271 -0.057175 0.381432 -0.592770 -0.931563 -1.128539 -0.687465 0.767422 -0.440423 0.412842 -0.163745 -0.065406 -0.801141 0.202623 -0.758067 0.052895 -0.476126 -0.544774 -1.181374 0.406468 -0.375743 -0.242568 0.214529 -0.879865 0.555004 0.235668 0.468115 0.006098 0.145159 -0.115695 -1.306958 -1.114575 -0.081396 -0.054531 0.913659 0.704197 0.150486 -0.462575 -0.577088 -0.880655 0.815210 -1.347530 0.379979 0.562099 -0.417131 0.740906 -0.798587 -0.224918 -0.921900 0.566227 0.185545 -1.454695 1.173501 0.692628 -1.098243 -0.318286 -0.847407 0.572803 0.322461 1.232956 -0.551637 -0.231897 0.583184 0.031394 -0.154022 -0.625696 0.460153 -0.069012 0.642186 -1.224218 -0.591224 0.671297 0.822566 -0.256778 0.058506 0.320948 0.023470 0.119858 1.306763 0.509404 0.308295 -0.817199 -1.817874 0.258248 0.211975 0.192455 0.385290 -0.745900 -0.300549 0.129164 -0.249920 1.087884 0.026924 0.309117 0.970953 -1.193341 -1.062253 -0.029353 -0.093272 0.356891 -0.519101 0.615042 -0.712763 -0.116951 -0.320725 0.564899 -0.216735 -0.478146 -0.555375 0.314083 0.805282 0.213676 -0.226827 1.052904 0.165065 -0.475262 0.130499 -0.015215 0.286468 0.156943 -0.949333 -0.320869 -0.216280 0.278512 -0.776189 0.973309 -0.212038 0.370411 0.280228 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = 13.580295 -3.271085 -12.949290 28.765046 -0.957130 6.422750 3.850148 -1.880483 1.777023 -38.216307 -13.992906 22.528106 7.257593 8.820957 -2.632902 13.600002 5.943375 7.038652 -31.274226 -3.237892 8.847445 -0.531152 -0.836359 1.649075 -1.153374 -10.961418 18.675572 5.226837 4.823074 24.272447 -6.082418 18.543250 23.104955 -4.021889 2.736929 15.142127 -0.831332 0.124223 -17.455890 -9.716799 27.126323 4.533736 1.448044 10.357681 -11.243516 26.379703 8.144615 27.988212 9.175392 -13.322450 11.027864 4.917579 -10.139131 -4.394842 -20.449321 3.723800 7.908014 10.380549 -7.372156 8.195361 -3.001480 6.437590 10.502637 5.512510 24.759839 11.308549 21.204062 23.140867 20.068111 -21.245317 7.243868 3.399356 -3.763540 1.578777 23.098403 -17.269076 -15.808330 2.997659 -1.212118 -21.112816 -5.509738 -1.757093 32.637950 -20.630298 -7.924996 -2.511304 7.208163 27.425867 -10.701935 10.271063 -24.483635 -1.554738 -0.885171 28.185046 4.676253 3.358764 -8.339697 5.585693 -3.307553 3.115090 6.177167 -22.722360 0.360990 -22.737290 -14.698590 -17.834514 5.994901 15.374312 -28.243543 1.329738 -10.501991 19.133415 -38.269466 -2.651558 5.227986 11.408135 31.462425 12.312712 -8.634359 -0.219886 6.619950 6.128463 12.139084 -11.230220 10.783789 -5.936889 0.991344 3.969187 5.700387 7.206305 -32.546575 -10.322984 5.699357 -4.778484 7.481076 15.643128 19.173111 -6.385160 12.697479 -14.530514 17.436076 -27.522826 -11.593917 -5.318298 -22.616121 -14.965039 23.376156 18.063266 20.849141 -5.934601 -12.487279 -2.993617 -30.801852 -34.334194 -3.696936 2.738811 -2.402439 15.827888 -6.307716 11.619371 -21.472909 11.249192 15.209920 -8.568930 -14.490615 1.048339 9.603155 3.735424 -6.575473 -7.310713 -3.134663 -8.780328 4.488755 32.046950 -2.602577 -39.067795 -40.374575 -11.396814 22.674485 -13.467578 0.841398 -13.940045 -10.614394 -18.684220 -3.402247 -17.912621 -0.900245 3.537898 -12.725700 -29.851690 13.744430 -4.476262 -9.001423 10.779815 -22.656076 4.282319 15.044208 4.927444 4.764139 2.264575 -2.270696 -19.319193 -12.513208 8.689347 -17.611992 23.374571 12.211708 -2.465358 -12.874688 -13.813038 -18.406683 13.505573 -16.278904 16.018069 1.664192 -2.381284 8.261930 -21.840173 3.887970 -13.975115 8.504481 5.048691 -36.701773 28.088683 18.639666 -13.392985 1.356506 -0.973908 12.398629 1.420054 10.234877 -18.715040 -17.753047 5.449719 2.588972 0.652208 -4.922474 4.075733 -8.337428 -9.319791 -19.230650 -6.216490 18.618681 8.810599 -4.828096 -2.964147 15.526029 -12.614557 7.422021 19.847254 15.017070 2.038145 -14.584223 -47.351836 9.813404 -6.480449 -7.062108 1.489144 -15.395159 -2.297257 13.535611 -15.071379 20.356143 -6.117949 -8.777229 22.175591 -30.681099 -22.122728 -18.518415 -9.677173 4.466228 2.861715 3.997392 -9.320913 5.299505 -0.769767 2.737104 -12.069929 -16.062896 10.743343 13.314513 24.970809 -3.730660 3.005203 24.571990 7.510499 -2.860029 -5.512898 0.911229 -11.819358 1.241444 -28.914959 -2.149113 10.330742 11.739056 -18.274906 2.759219 -6.770626 -0.142330 2.003015 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = 4.221537 -2.530410 -4.446062 9.402461 0.406456 1.183733 0.429647 -1.083329 0.626708 -11.419237 -4.612156 7.260969 2.078677 1.215340 -0.154865 4.194467 2.663988 1.340106 -9.816217 -0.097654 1.559936 -1.609621 -2.236218 0.057114 -0.399867 -4.122450 7.319249 2.284000 0.715465 6.734864 -2.167452 6.185544 6.190752 -0.872954 3.194625 4.287162 -2.291650 -0.220763 -4.859566 -2.183452 9.349683 2.345198 0.198983 2.958459 -1.243308 7.752201 2.468367 7.649837 3.437696 -2.840381 3.911220 4.581025 -2.503950 -1.067470 -8.312568 1.113520 3.321192 1.007370 -3.086798 2.332855 -2.263561 2.206572 2.974846 2.518777 9.756472 2.000694 8.224047 7.189133 6.098195 -5.491350 1.912002 1.212023 1.226198 0.525208 7.616081 -4.471491 -6.154691 1.024941 -0.880370 -6.334808 0.439183 -0.602817 9.785916 -5.448220 -3.590338 -1.087597 2.493477 8.475093 -3.959001 2.098288 -7.411961 -0.209573 -1.359344 9.812139 2.022035 2.180082 -1.932262 2.613836 -1.343049 1.572217 1.908725 -7.596755 1.475378 -10.086773 -5.625236 -5.515242 2.088403 2.682106 -8.315195 1.326630 -2.139165 5.189099 -10.621042 -0.329738 1.182551 2.032718 9.874807 -0.208545 -2.736534 -0.119659 1.131956 3.063286 3.197318 -2.699041 2.656069 -2.381274 1.700775 1.207239 2.875218 2.010810 -8.735729 -1.976050 1.625219 -0.083973 1.311566 4.057558 5.538097 -2.902220 3.734065 -3.772629 5.801969 -9.011240 -2.569607 -4.020032 -5.949168 -3.792889 6.183538 5.298316 7.278211 -1.423410 -2.694143 0.031749 -10.782182 -12.135746 -0.417064 0.563454 -1.702476 3.306664 -1.595240 3.231003 -6.143614 2.753712 5.994731 -3.931400 -4.250020 -0.428127 3.376556 1.364781 -2.523480 -1.898666 -1.407924 -1.430468 2.167123 9.309364 -1.120298 -13.450893 -11.881243 -3.237887 6.230235 -4.177037 0.425653 -3.243353 -3.137512 -5.941166 -0.330338 -5.650444 0.421861 -0.353959 -3.309130 -8.533503 2.557144 -1.131383 -1.018182 1.879995 -7.319286 1.973702 4.460158 1.337487 1.148540 1.436866 -0.216588 -6.011840 -4.438629 3.054169 -4.720892 7.345432 3.858127 -1.107913 -3.291796 -3.698604 -6.459405 3.204611 -5.122004 4.607048 1.425797 -3.470036 2.144736 -6.965448 0.161799 -3.692566 2.283402 0.422567 -10.102663 9.657419 6.307058 -5.140186 0.044884 -0.932000 4.300162 -0.607630 4.275981 -5.643568 -3.840058 0.936554 0.940858 -0.013085 -0.548930 2.035112 -1.816979 -2.427727 -6.967306 -3.037380 6.088594 3.167864 -0.825989 -0.636379 2.797068 -3.929329 1.397630 6.734149 4.516594 1.818959 -5.494267 -15.201394 1.917929 -3.981656 -2.842996 0.828366 -3.631121 -2.017459 2.049688 -3.709378 6.382582 -1.805962 -3.335724 6.502736 -8.969613 -6.735535 -6.240914 -3.127821 0.941910 -0.423603 1.991498 -3.883896 0.782993 -1.680382 2.088956 -4.024129 -3.943734 3.447643 3.950521 6.427355 0.004350 -0.071631 7.002813 2.795726 -1.585592 -2.427253 0.201238 -4.471026 2.465504 -9.486191 -1.721818 1.599907 3.421265 -5.094406 0.823893 -1.206439 2.642484 0.663765 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 3.342012 -0.855454 -2.416217 6.356718 -0.142054 1.108721 1.232564 0.146390 0.315707 -9.108188 -3.615989 4.424532 1.548072 1.762246 -0.323329 2.857289 1.411429 1.906112 -8.008543 -0.609102 2.323170 0.181769 -0.060434 0.169251 -0.220894 -2.559591 3.054560 1.557493 1.065242 5.920180 -1.626772 3.858317 5.506455 -0.809485 0.554610 3.959959 0.299135 0.016566 -3.249978 -1.860042 6.692387 1.143056 0.137883 2.398218 -2.171085 6.355243 1.505077 6.940024 1.730587 -3.224486 2.983487 -0.413413 -2.648345 -0.921491 -4.803835 1.048759 2.799793 3.158600 -1.945578 2.444538 -0.879815 1.509396 2.478997 0.714329 5.757427 3.155664 4.503600 5.117842 5.218872 -5.056335 1.515322 0.831540 -0.576385 0.163753 4.586377 -4.298326 -3.118215 -1.228243 -0.013226 -5.741212 -1.366028 -0.437395 7.812055 -5.029893 -1.348310 0.386346 1.441050 6.256308 -2.651848 2.118474 -5.810536 -0.237778 -0.060343 6.989856 0.891419 0.697173 -1.707388 1.434100 -0.349174 1.067545 1.224088 -5.108894 -1.226762 -6.296651 -3.656561 -3.932870 1.064990 3.246761 -6.814461 -0.068526 -1.288357 4.134717 -9.172910 -0.616409 1.584867 2.954489 6.231222 3.124549 -2.551842 -0.135169 1.206562 1.414351 2.936524 -2.936880 2.347679 -2.013959 0.146913 1.070066 1.322029 1.301029 -7.519124 -2.398805 1.248873 -1.275185 1.491552 3.311574 4.014506 -1.528052 3.064310 -3.842505 4.239111 -6.794221 -2.421198 -1.308899 -5.488714 -3.300596 6.149011 4.193169 4.448413 -0.987670 -3.239100 -0.843011 -7.050589 -8.331121 -0.577003 0.565022 0.361509 3.245642 -1.521147 2.302695 -4.749512 2.116117 2.970199 -2.125355 -3.136559 0.021010 2.834356 0.654363 -1.664817 -2.210428 -0.344406 -0.958473 0.574049 6.859790 -0.993121 -8.224091 -9.074360 -3.039073 5.431775 -2.957478 0.232492 -3.114118 -2.100762 -4.882442 -0.326228 -4.154542 -0.162564 0.747817 -3.400577 -7.179045 3.170892 -1.167056 -2.025655 2.568249 -5.279056 0.887721 3.341941 1.648254 1.182548 0.489841 -0.299226 -4.925015 -3.585355 1.375287 -3.780032 5.554591 2.966605 -0.271256 -2.954760 -3.088270 -4.350462 3.628290 -3.875079 3.460248 0.161725 -0.746142 2.533502 -4.917248 0.663629 -3.732767 2.133094 1.395318 -8.526347 7.008120 4.397900 -3.363921 -0.115115 -0.925253 2.716870 0.794094 3.083538 -4.292371 -4.057463 1.566232 0.314205 0.045530 -1.573570 1.262025 -1.898690 -1.545054 -4.693377 -1.632931 4.264575 2.547314 -1.147501 -0.076409 3.691042 -2.147015 1.551824 4.982404 3.136861 0.036504 -3.297740 -11.276846 2.577841 -0.450653 -1.289256 0.445328 -3.961538 -0.814518 3.091728 -2.767866 4.984648 -0.052656 -1.612760 5.333908 -6.913565 -5.377469 -4.045298 -1.810326 1.253179 0.120532 0.864494 -2.259155 1.355290 0.053531 0.746543 -2.016803 -3.945215 1.075424 2.727224 5.915014 -0.731417 0.340911 6.080135 1.415671 -0.907187 -1.115427 0.029052 -2.052200 0.499259 -5.792155 -0.581975 1.946990 2.768470 -4.282970 1.336850 -1.545837 -0.171826 0.941690 -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.634805 -0.250014 -1.406159 3.305272 0.429626 -0.473343 0.502787 0.312172 0.333513 -4.454826 -1.276092 3.076419 0.165391 0.027522 -0.569740 1.453700 1.294604 1.226406 -3.191658 0.503005 0.926284 0.320589 -1.024491 -0.119604 0.387098 -0.909872 1.048807 0.787110 0.572715 2.730902 -1.340376 1.666523 2.533619 -0.332992 0.773077 2.109617 0.300688 0.207138 -0.239701 -1.155275 3.413093 0.470707 0.131264 1.747327 0.129706 3.246625 0.166583 3.777944 0.876609 -1.410418 0.768750 0.474413 -1.203943 -0.303201 -2.900109 1.383713 1.079664 1.449281 -1.735780 1.224450 -0.286122 0.860217 1.452120 0.036287 3.215226 2.230103 1.469748 2.930664 3.770317 -1.764703 0.687822 0.514539 1.407065 0.684641 2.146398 -1.427035 -1.366597 -0.514349 -0.697699 -2.839200 0.268284 -0.531053 4.948197 -2.812857 -0.160901 -0.056525 1.037378 3.303846 -1.687678 0.501893 -3.278938 0.146345 -0.200716 3.773769 0.415152 0.904997 -1.236157 1.126650 -0.643775 0.684456 -0.181184 -2.447724 -0.820729 -3.943369 -2.158985 -2.005045 -0.155608 0.751440 -4.300815 0.065423 -0.115535 3.054394 -5.205190 -0.636570 0.467916 0.332163 2.341433 2.188263 -1.491139 0.008077 -0.207445 0.265384 -0.010731 -0.896810 0.405152 -1.407802 -0.896239 0.201145 0.982769 0.899888 -4.359377 -0.366187 0.336153 -0.525639 0.477403 1.725387 1.463268 -1.487031 1.403388 -1.995451 1.848480 -3.586767 -2.139675 -0.838142 -3.080020 -1.556542 3.257578 2.161501 2.949026 -0.572957 -0.863162 -1.617373 -4.395640 -4.240741 0.489410 -0.857756 0.259309 1.527788 -0.572327 0.307629 -2.275313 -0.050490 1.924500 -1.789355 -1.460672 -0.986969 2.811629 -0.145891 -0.128151 -1.970086 -0.787154 0.906728 0.099538 2.051406 -1.181609 -4.035261 -4.596536 -1.344573 2.280054 -1.356314 0.542090 -1.291917 -0.747117 -1.982055 0.021212 -2.061704 -0.313812 -0.666993 -0.977541 -3.548480 1.725142 -0.744784 -1.054146 0.558332 -2.481774 1.154496 1.487788 0.958723 0.290347 0.326955 -0.380080 -2.669676 -2.138231 1.001714 -0.978061 2.230850 2.212260 0.000000 -1.585511 -1.694275 -2.843283 2.393712 -3.219664 1.770242 1.380356 -0.360115 2.023126 -2.545658 -0.023475 -2.136249 1.445857 0.310370 -4.931739 3.105828 1.999941 -2.653080 -0.134364 -1.343356 1.769805 0.809912 2.139774 -2.186990 -1.694835 1.314357 0.059099 -0.241152 -0.979199 0.751727 -0.664974 0.937587 -2.890851 -0.817222 2.274518 1.485024 -0.848856 -0.181719 0.745949 -1.505744 0.992648 2.903479 1.903028 0.725413 -2.341540 -5.562011 0.516180 -0.756398 0.112011 0.522231 -2.041167 -0.490169 1.144582 -1.845633 2.883844 -1.445382 -0.766075 2.588990 -4.275772 -2.881464 -0.750452 -0.457456 0.837462 -0.399672 1.695827 -1.423025 -0.003281 -0.210678 1.494617 -1.259333 -2.141169 -0.003649 1.504790 2.847888 -0.337141 -0.594937 2.971297 0.243991 -0.782535 -0.259933 0.051461 -0.347821 -0.305847 -3.882832 -0.442547 0.232030 1.356646 -2.671082 2.387374 -0.393810 0.803444 0.596411 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.122306 -0.006545 0.071344 0.091632 0.078293 0.043145 -0.000806 -0.142996 -0.098856 -0.110673 -0.004833 -0.103419 -0.046089 0.026582 0.053047 0.001780 0.086072 0.063910 0.135655 -0.028572 -0.003635 -0.046307 0.028231 0.055038 -0.015138 -0.088662 0.047725 0.079189 0.009040 0.056305 -0.071711 0.066863 0.044068 0.078683 0.082748 0.040569 0.143300 -0.024871 -0.089544 0.035756 0.147199 -0.149604 0.058191 -0.017981 0.042616 0.085189 0.070974 -0.133824 0.098721 -0.011957 -0.014640 -0.046150 0.092208 -0.010683 -0.154370 0.014181 -0.118547 0.036973 -0.090451 0.022486 -0.054717 0.038567 -0.013572 -0.045356 0.096947 -0.101338 0.015787 0.052538 0.018393 -0.078108 -0.045598 0.052352 0.041962 0.036500 -0.035829 0.161009 0.068927 -0.238599 -0.090606 0.041424 0.031295 0.063131 0.005638 0.003445 -0.078482 0.102426 -0.117030 0.032555 0.005714 -0.010539 -0.152035 0.007034 0.096696 -0.145779 0.137501 -0.091125 0.000000 0.009140 0.005325 0.068644 -0.012938 -0.066120 -0.041832 -0.190844 -0.142552 -0.035656 0.031804 -0.090867 -0.049816 -0.007378 0.174752 0.210359 -0.040144 0.007242 0.005210 0.036016 -0.194887 -0.248317 0.000233 -0.013855 0.046010 0.060784 0.072005 0.020275 0.037168 -0.059318 0.051481 -0.066664 0.105871 -0.036096 0.172895 -0.087392 0.003347 0.049750 -0.044447 -0.062191 -0.006876 0.038068 0.052828 0.014055 0.087171 0.032740 0.111590 -0.062524 -0.023188 -0.017833 0.219432 0.050920 0.079815 0.050563 -0.121877 0.037443 -0.034636 -0.164403 0.054040 0.012583 0.008291 0.078789 -0.035283 0.056816 -0.024666 -0.019985 0.109588 -0.067763 -0.047790 0.027383 -0.279979 -0.004038 -0.053281 -0.144217 0.059655 0.108160 -0.020584 0.007770 -0.081427 0.056749 0.007721 -0.089043 0.029308 -0.058976 0.035542 0.044614 -0.036822 -0.067160 0.101881 -0.063467 -0.023449 -0.043867 -0.078661 -0.075001 -0.012784 -0.063346 -0.088348 0.056485 -0.056485 0.056340 -0.075648 -0.169547 0.031481 -0.007396 -0.015260 0.043037 -0.046974 -0.034272 -0.017182 -0.073419 0.035522 0.037518 -0.144820 -0.080504 -0.004147 0.063637 -0.030345 0.016930 0.099704 -0.116656 -0.011129 -0.044448 -0.011103 0.133252 0.056110 0.060296 -0.189435 -0.026116 0.121583 -0.100372 -0.078093 -0.046479 0.031766 0.000988 0.138342 -0.031582 0.133933 0.021823 0.078652 0.011735 -0.019509 0.033750 0.050036 -0.021967 -0.126783 -0.114578 0.021850 0.080074 0.012757 -0.024564 0.067100 0.110330 -0.035526 0.099267 0.010089 0.087467 0.008090 0.016128 0.025835 0.061139 0.040875 0.172312 -0.034085 0.043216 -0.024447 -0.136343 0.070341 -0.069692 -0.046710 0.102635 0.044603 -0.040579 -0.003653 -0.093064 -0.008594 -0.115471 0.179093 -0.065577 -0.048615 -0.092243 0.015660 -0.054150 0.099329 -0.007475 0.005248 -0.014588 0.090522 0.066245 0.053869 -0.008328 -0.093633 -0.004414 0.037723 0.018579 0.103522 -0.142067 -0.102101 -0.022058 0.019252 -0.022767 -0.016695 -0.113570 0.018936 0.042351 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__introsort_loop(int*, int*, long, __gnu_cxx::__ops::_Iter_less_iter) = 2.381693 -1.319696 -1.829732 3.921967 0.662587 -0.705520 0.628631 0.467941 0.767292 -5.805206 -1.539896 4.805354 0.113182 -0.298719 -0.854436 1.812347 1.724530 1.724270 -4.141203 0.754835 0.650589 0.323751 -1.681949 -0.607824 0.384842 -1.043303 2.017943 0.966195 0.775829 3.139702 -1.670714 1.496365 3.002712 -0.269377 1.200600 2.641730 0.364672 0.124535 -0.503812 -1.818511 4.848248 0.953215 0.284765 2.555512 0.554303 3.844651 0.549479 5.454962 2.153027 -1.482663 1.046471 0.199960 -1.771748 -0.475959 -4.278261 1.682767 1.214769 1.311406 -2.280817 1.611443 -0.077810 1.135895 1.691635 0.075947 4.586732 2.260757 2.136175 3.454456 4.532404 -2.191252 0.626457 0.780927 2.413431 1.230245 3.563940 -2.405256 -2.066584 -0.804374 -0.783786 -3.394704 0.665447 -0.753873 6.757891 -3.453064 -0.012809 0.108339 1.301904 3.825221 -1.889374 0.150162 -4.355748 0.360611 -0.027646 5.209704 0.589085 1.241052 -1.499554 1.323318 -0.729623 0.962496 0.548233 -3.160378 -0.765117 -5.789367 -2.277040 -2.618813 -0.340123 0.540949 -5.156757 -0.001044 -0.133018 4.011698 -6.507172 -0.788626 0.797315 -0.115628 3.824122 2.093848 -1.536377 0.261889 -0.367837 0.429241 -0.145565 -1.423072 0.006438 -1.365848 -0.533013 0.164212 1.307001 1.095198 -5.810501 -0.466484 0.533588 0.369241 0.388004 1.783923 1.449131 -2.238728 1.620710 -2.270629 2.173934 -4.607559 -2.432067 -1.087199 -3.652106 -1.872579 5.443887 2.433623 4.427911 -0.593532 -0.804724 -2.049605 -5.399517 -6.323386 1.074490 -1.141637 0.116366 1.623131 -0.448121 0.198585 -2.728366 -0.353607 2.409004 -2.278904 -1.648714 -1.087506 3.037336 -0.489270 -0.330719 -2.320921 -0.856653 1.819905 0.650046 2.257845 -1.606888 -6.598016 -5.408931 -1.690204 2.751391 -1.715913 0.709962 -1.195779 -1.069806 -2.230427 -0.077323 -2.515172 0.362798 -0.934989 -1.523745 -4.333835 1.775801 -0.965422 -0.484522 0.634361 -3.020113 1.511685 1.222935 1.492921 -0.025059 0.671479 -0.203033 -4.105072 -3.021174 1.093022 -1.153146 3.327911 2.642832 0.196763 -2.154180 -1.838191 -3.853002 2.604254 -5.211367 2.063397 1.531725 -0.979440 2.524413 -2.991292 0.255021 -2.711245 1.933594 0.425749 -6.465086 4.374232 2.887533 -3.308576 -0.250377 -1.570250 1.925133 1.033457 2.960391 -2.924329 -2.179734 1.713880 -0.342671 -0.316099 -1.051372 1.045395 -0.557098 1.354716 -4.154372 -1.389615 2.571444 1.771925 -0.927148 -0.269148 0.837433 -1.886422 0.468027 4.273208 2.130831 1.302300 -3.392246 -8.217907 0.752019 -0.253890 0.161432 1.075831 -2.590990 -0.745694 1.283697 -2.468300 3.401660 -1.793144 -0.891186 3.064503 -5.534746 -3.514816 -0.777300 -0.706324 1.188037 -0.592308 2.456245 -1.723494 -0.230151 -0.749938 1.809316 -1.721847 -2.127719 0.211172 1.902322 3.368624 0.186132 -0.822978 3.524278 0.172630 -1.142171 -0.067133 -0.250233 -0.273825 0.158791 -5.168347 -0.575423 0.040953 1.631599 -3.110904 2.996114 -0.282086 1.259349 0.543745 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = -0.010673 -0.115027 -0.098960 0.789071 -0.083893 0.278286 0.112885 -0.340060 -0.173393 -1.022211 -0.289363 -0.025296 0.149359 0.451324 0.094006 0.156815 0.083923 0.106244 -0.883526 -0.236783 0.449065 0.002086 0.382185 0.246993 0.045798 -0.317109 0.271784 0.115974 0.146406 0.726407 -0.238803 0.649951 0.628383 -0.004620 0.024618 0.324270 0.042672 0.211511 -0.406789 -0.014710 0.588723 -0.215220 0.192361 -0.013223 -0.472091 0.646655 0.118010 0.684123 0.502683 -0.487328 0.544378 -0.203070 0.037930 0.053078 -0.368154 0.082374 0.229905 0.546863 -0.097331 0.165643 -0.197496 0.241949 0.163203 0.035257 0.574101 0.349948 0.325803 0.476917 0.340262 -0.552097 0.209967 -0.075576 -0.447661 -0.282733 0.305648 -0.386221 -0.237119 -0.300363 -0.089558 -0.390229 -0.271757 0.184716 0.348468 -0.468237 -0.247452 0.045708 0.043103 0.671409 -0.126466 0.426009 -0.627515 -0.041777 0.094856 0.538368 0.243199 -0.058710 -0.088751 0.036039 0.027594 0.093022 0.094830 -0.398529 -0.063966 -0.588696 -0.508535 -0.337184 0.416798 0.501922 -0.772574 0.053647 -0.164037 0.176855 -0.967711 -0.015079 0.067805 0.642680 0.238619 0.186749 -0.145791 -0.118947 0.239940 0.162322 0.506845 -0.311985 0.431182 -0.513422 -0.127948 0.090056 0.228374 -0.045979 -0.262133 -0.352739 -0.069265 -0.217356 0.169576 0.363874 0.538430 0.263889 0.396874 -0.387190 0.435919 -0.483542 -0.143181 -0.132631 -0.571353 -0.365570 0.681556 0.304145 0.282626 -0.226294 -0.675716 0.000863 -0.710351 -0.807574 -0.197280 0.203355 0.169575 0.608814 -0.277610 0.416714 -0.596858 0.361075 0.330760 -0.153468 -0.406911 0.078560 -0.360922 0.124430 -0.222122 -0.318364 0.060503 -0.299239 -0.336046 0.858629 0.018636 -0.487257 -1.044765 -0.379523 0.581156 -0.332453 0.052339 -0.422647 -0.088437 -0.628114 -0.027091 -0.477105 -0.277075 0.237225 -0.356702 -0.752366 0.305341 -0.160008 -0.149879 0.404276 -0.593197 -0.012725 0.365973 0.082455 0.347905 0.028077 -0.021117 -0.242813 -0.283954 0.124048 -0.583313 -0.062922 0.080726 -0.075513 -0.166036 -0.515285 -0.272514 0.185929 -0.070020 0.340678 0.014729 -0.053840 0.120902 -0.478624 0.102585 -0.116746 0.015924 0.277049 -0.740793 0.471328 0.129373 -0.209461 0.008302 -0.045877 0.319764 0.007414 0.228131 -0.350348 -0.276633 0.021682 0.064050 0.099638 -0.083176 0.108048 -0.306299 -0.405347 -0.332148 -0.152413 0.411579 0.265131 -0.065311 0.028482 0.642215 -0.159566 0.394235 0.340270 0.298348 -0.098944 -0.061989 -1.017650 0.306137 0.037560 -0.053546 -0.053282 -0.510401 0.036659 0.463932 -0.044953 0.472530 0.221447 -0.070896 0.603593 -0.525204 -0.466749 -0.461462 -0.280968 0.031897 -0.054353 -0.311783 -0.211144 0.280399 0.193514 0.012559 -0.032194 -0.361218 0.061459 0.216750 0.562371 -0.304946 0.341718 0.640114 0.241988 -0.114413 -0.151304 0.090407 -0.249795 -0.026512 -0.471364 -0.069767 0.330146 0.241068 -0.422764 -0.097945 -0.435272 -0.247135 0.143777 -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) = 2.857908 -0.467065 -1.463231 3.570154 0.926201 -1.068317 0.682342 0.999124 0.757956 -5.169125 -1.871858 4.490603 0.155613 -0.782810 -0.665254 1.648079 1.976940 1.991401 -4.507943 1.058994 0.603891 0.367773 -1.921362 -1.084578 0.306906 -1.111617 1.556921 1.160430 0.688818 3.287657 -1.912920 1.310822 2.762388 -0.072016 1.995327 2.926363 0.352457 -0.312664 -0.301277 -1.754411 5.048770 1.681877 0.135042 2.650572 1.155598 4.014008 0.533972 4.167432 1.225737 -1.311779 0.541683 0.611163 -1.980263 -0.332276 -4.291325 1.655496 1.567593 1.119702 -2.653774 1.935302 0.083280 1.141327 1.783889 -0.023433 4.103906 1.865040 1.591251 3.204856 4.830878 -2.095544 0.666737 0.613970 2.897236 0.976562 3.070559 -1.807757 -2.083540 -1.130461 -0.550529 -4.321753 1.032404 -0.790434 6.068883 -3.535235 0.678211 0.650614 1.205494 3.638548 -2.110045 -0.588502 -4.030675 0.331604 -0.699448 5.323387 0.441848 1.456222 -1.176181 1.562235 -0.659508 1.093031 -0.056139 -3.584831 -0.664572 -6.313280 -2.264183 -2.664518 -0.744574 0.041119 -4.299919 -0.146718 0.308780 4.600365 -5.981875 -0.710812 0.776836 -0.473639 1.933919 0.791268 -1.278739 0.347716 -0.929191 0.738554 -0.150199 -1.558123 -0.254974 -0.916163 -0.726517 0.383844 1.559552 1.035008 -4.897234 -0.334117 0.825662 0.089603 -0.081893 1.596343 1.120120 -2.624860 1.624427 -2.718905 2.438769 -3.968836 -1.901860 -1.543219 -3.315930 -1.779401 3.762990 1.939792 3.675811 -0.163569 -0.200940 -1.608971 -5.058330 -6.068914 1.603035 -1.286487 0.271467 1.088780 -0.372839 -0.131334 -2.744902 -0.771213 2.207307 -2.576696 -1.702983 -1.302607 3.921001 -0.502267 -0.620924 -2.158641 -0.600470 2.036923 0.964347 1.863285 -2.109973 -5.446105 -4.808000 -1.827051 2.941258 -1.710172 0.674726 -1.014347 -0.928744 -1.941151 0.171305 -2.702314 0.663501 -1.459238 -1.040725 -4.258581 1.344180 -1.074886 -0.490232 0.455640 -3.074837 1.765759 1.619914 1.074042 -0.434482 0.663758 0.238536 -3.760789 -2.757147 0.956852 -0.590297 3.372753 2.726861 0.360743 -2.295454 -1.576990 -3.437462 2.779561 -4.620139 2.071881 1.481015 -1.387573 2.779656 -2.865683 -0.267095 -2.557300 2.104981 0.316341 -5.357881 4.392661 3.097156 -3.752815 -0.426624 -1.948761 2.025194 1.058141 3.563584 -2.876166 -2.032795 1.799736 -0.585902 -0.411916 -1.411326 1.218554 -0.361504 1.712700 -4.107564 -1.388651 2.837224 2.002042 -0.822001 0.036430 0.608000 -1.376760 0.682858 4.334286 1.964701 1.579334 -3.807890 -7.214741 0.827761 -0.500961 0.576801 0.915954 -1.945493 -1.131344 0.748585 -1.882847 3.599417 -0.912301 -1.051673 3.178264 -5.122246 -3.798049 -1.099140 -0.561306 1.366585 -0.963675 2.421054 -2.043001 -0.181663 -1.139781 2.229558 -1.322400 -1.934047 -0.208479 1.936872 3.136895 0.642734 -1.404836 3.772033 0.177130 -1.272322 0.046715 -0.447748 -0.070856 0.220829 -4.514930 -0.917019 -0.371683 1.708768 -3.121398 3.306042 -0.159933 1.846134 0.758507 -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) = 1.564734 -0.798304 -0.636654 1.675142 0.704185 -0.550449 0.252957 0.348157 0.375238 -2.436174 -1.016990 1.794432 0.080718 -0.562844 0.073358 0.776584 1.063419 0.539298 -1.729334 0.675935 0.014630 -0.182108 -1.314310 -0.171067 0.006737 -0.842827 0.654342 0.706974 0.138727 1.399939 -0.896201 0.627933 1.207682 -0.149489 1.163902 1.399704 0.314658 -0.277087 -0.120730 -0.377536 2.794805 0.621889 0.219302 1.231881 0.894931 1.833873 -0.145076 2.999085 0.900410 -0.497205 1.268535 -0.160616 -0.756521 0.049272 -2.408591 0.838928 1.062825 0.073325 -1.498716 0.910117 -0.295154 0.559226 0.734653 0.232999 2.245097 0.983629 0.979033 1.384483 2.346671 -0.929322 0.057785 0.716312 1.627825 0.653574 1.353604 -1.000508 -0.827129 -0.826029 -0.063050 -1.174521 0.614295 -0.685421 2.757367 -1.495970 -0.031598 0.637378 0.414682 1.639231 -1.051037 -0.151382 -1.938268 0.239834 -0.090470 2.389206 0.007093 0.800857 -0.526106 0.571279 -0.406146 0.804802 -0.056683 -1.780387 -0.838557 -3.253927 -1.681188 -1.099778 -0.337075 -0.356133 -2.272264 0.014445 0.318954 1.571886 -2.433579 -0.207918 0.376896 -0.158585 1.457951 0.875697 -0.945067 -0.282501 -0.047305 0.639426 -0.014058 -0.326113 -0.046677 -1.395569 0.278659 0.328366 0.776671 0.067796 -1.988938 -0.006334 0.342945 0.331594 -0.231109 0.348046 0.421098 -1.595850 0.843060 -0.890886 1.145389 -2.163662 -1.083477 -1.345934 -1.616537 -0.587552 2.675164 0.943719 2.379139 0.399013 -0.545334 -0.660111 -2.485884 -3.156615 0.334227 -0.927611 0.173192 0.313802 -0.108270 -0.024110 -0.945895 -0.444989 0.897639 -1.339005 -0.742401 -0.766158 1.251292 -0.342960 -0.399619 -1.169437 -0.184506 1.159366 0.337070 0.950419 -0.835312 -3.000650 -2.030485 -1.016008 1.263446 -0.719320 0.546245 -0.255070 -0.364569 -1.435909 0.131908 -1.217376 0.257651 -0.874851 -0.833509 -1.860959 0.472704 -0.490883 0.006660 0.020721 -1.529025 0.840900 0.598972 0.896375 0.034794 0.564850 -0.187716 -2.169255 -1.815138 0.150832 -0.099801 2.111374 1.227112 0.163527 -0.532926 -0.790888 -1.868117 1.180517 -2.779174 0.687764 1.062668 -1.102445 1.241046 -1.381511 -0.514828 -1.318415 0.970213 0.053722 -2.369642 2.249730 1.532273 -1.959522 -0.513216 -1.204285 0.977115 0.466413 2.084549 -1.022149 -0.395848 0.792754 0.199031 -0.272808 -0.645938 0.798090 -0.114029 0.891760 -2.128645 -1.072444 1.292645 1.299437 -0.346865 -0.252056 0.078878 -0.233859 0.125307 2.198200 0.743933 0.656556 -1.604199 -3.861567 0.350171 0.017596 -0.143108 0.792252 -1.290505 -0.662476 0.030820 -0.818310 1.836833 -0.314828 0.172791 1.533526 -2.146555 -1.854515 -0.563427 -0.302332 0.375869 -0.683314 1.219328 -1.178596 -0.200922 -0.706705 1.058197 -0.643722 -0.752652 -0.514533 0.657717 1.151836 0.419864 -0.586383 1.698779 0.328419 -0.594085 -0.135857 -0.046925 0.089154 0.604059 -2.039492 -0.642824 -0.536710 0.603569 -1.230449 1.464795 -0.075759 1.112322 0.395784 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition_pivot(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = 2.652675 -0.823255 -2.054439 3.827250 0.580299 -1.364080 0.570245 0.750054 0.714016 -4.883532 -1.600284 3.557818 0.242618 -1.056847 -0.264881 1.824900 1.476454 1.466803 -4.068031 1.306705 0.676123 0.018907 -2.474670 -0.619514 0.116128 -1.251674 1.133518 1.262885 0.227189 2.901087 -1.578004 1.449165 2.708227 -0.381281 1.795903 2.733367 0.047415 0.151553 0.107663 -0.685732 4.733294 1.803254 -0.486481 1.914590 1.060094 3.814865 0.181553 4.564080 -0.210772 -1.297060 1.044191 0.669580 -1.471099 -0.277009 -3.912855 1.296104 2.184245 1.087561 -2.680618 1.835216 -0.725590 1.086019 1.901513 0.911098 4.618909 2.104912 2.121804 3.341484 4.620119 -1.641516 0.906578 0.490533 2.434728 0.230890 2.942316 -1.420281 -2.290431 -1.154096 -0.239718 -3.538286 0.636540 -0.414831 5.234872 -3.357030 0.297543 0.275146 1.611939 3.827660 -2.523663 -0.194909 -3.760175 0.171336 -0.763884 5.840845 0.312139 1.525622 -1.378158 1.824906 -0.585620 0.892229 -0.349405 -3.499701 -0.889107 -6.050017 -2.537998 -2.416022 -0.827993 0.225655 -4.826855 -0.503543 0.395413 3.742593 -5.816607 -0.348277 0.637658 -0.382568 3.101705 1.128675 -1.807209 0.498195 -0.793026 0.593542 0.132103 -0.843730 0.041639 -1.927239 0.189110 0.702013 1.172819 1.128411 -5.320465 0.326598 1.062050 -0.376265 0.045938 2.045889 1.263129 -2.663699 1.550443 -2.771140 2.410718 -4.522844 -1.636820 -1.689343 -3.817635 -1.382122 3.276165 2.619156 3.296473 -0.384078 -0.802549 -1.351221 -5.560713 -6.677579 0.824318 -1.240486 0.097607 0.575366 -0.481772 -0.238000 -2.482890 -0.146181 2.592058 -2.426776 -1.578212 -1.529891 4.287094 0.101081 -0.818193 -1.509211 -1.040188 1.659022 0.930803 2.409805 -1.648549 -5.311857 -5.213363 -1.600311 2.750073 -1.387866 0.546944 -1.404652 -0.988689 -3.277415 0.472500 -2.421017 0.757322 -1.475680 -0.483938 -3.953119 1.069108 -0.758743 -0.237498 -0.268949 -2.911656 1.435350 1.795314 0.601016 -0.117249 0.867348 0.139825 -3.323294 -2.683699 1.449322 -0.559948 3.837572 2.768958 0.318468 -1.358342 -1.295277 -3.836476 2.910309 -4.222269 1.904223 1.749857 -1.489957 2.972004 -2.694367 -1.168428 -2.345953 1.939109 -0.177800 -4.018248 4.432415 3.146377 -3.560943 -0.245741 -1.658496 2.188383 1.017597 3.180780 -2.666503 -1.670612 1.512892 -0.226917 -0.446911 -0.957094 1.088233 -0.730764 1.634693 -3.731845 -1.058620 2.906315 1.852772 -0.861325 -0.244356 -0.199197 -1.941387 0.420102 3.812845 1.823329 1.161766 -3.349127 -6.830950 0.613272 -1.974447 -0.059976 0.402693 -1.754844 -1.021156 0.428853 -1.833188 3.640393 -0.370727 -1.470090 2.969916 -5.283833 -3.839890 -1.622630 -0.250746 0.778946 -0.923100 2.220888 -1.659268 -0.094021 -0.708069 2.300414 -1.152499 -2.540925 -0.438096 1.644623 2.822469 -0.093651 -2.072177 3.461965 0.158216 -0.848844 -0.617372 -0.120036 -0.397527 0.666532 -4.363732 -1.220552 -0.595174 1.803528 -3.046360 3.133641 -0.282015 1.938120 1.121651 -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) = 2.821295 -1.618130 -1.502129 3.703842 1.017181 -0.347358 0.469948 0.361237 0.871586 -4.960611 -1.987884 4.412509 0.148485 -0.432771 -0.246465 1.569699 2.047115 0.811095 -4.278721 0.768033 0.118228 -0.597170 -2.082320 -0.108614 0.091841 -1.682088 2.508009 1.579596 0.341146 2.820637 -1.482040 1.759541 2.517157 -0.056946 2.024228 2.516520 -0.203935 -0.530994 -1.047976 -1.410197 4.952877 1.348340 0.146925 2.339321 0.900769 3.743700 0.514588 5.162943 2.696685 -1.050086 1.856695 0.563744 -1.699804 -0.265086 -4.560399 1.033250 1.225818 -0.045177 -2.356917 1.490905 -0.511237 1.115586 1.426697 0.528467 4.532146 1.332562 2.662068 2.873962 3.910660 -2.158931 0.409865 1.161171 2.606898 1.452434 2.788438 -1.991445 -2.211886 -0.805870 -0.210201 -2.849894 0.603672 -1.252381 4.854434 -2.697945 -0.614150 -0.001754 0.670577 3.530381 -1.989813 0.186014 -3.956445 0.325773 0.119987 4.507789 0.395726 1.392541 -0.887132 1.002114 -0.895220 1.272104 0.225383 -3.623673 -0.486321 -5.917594 -2.452427 -2.510823 -0.120848 -0.036559 -4.198855 0.520601 -0.433786 3.459377 -4.826240 -0.777441 0.579726 -0.333878 3.164152 1.323221 -1.101375 -0.391185 0.263253 1.443646 0.557411 -0.989724 0.370787 -1.864919 0.496678 0.526538 1.498700 0.831822 -4.148226 -0.420452 1.173556 0.764896 0.124309 1.338031 1.386749 -2.098111 1.580742 -1.885091 2.409147 -3.997467 -1.946342 -2.133846 -2.518187 -1.590553 4.664413 2.572631 4.445471 0.404357 -0.511904 -0.924352 -4.868837 -6.312819 0.487295 -1.222301 -0.193504 0.950267 -0.342781 0.582393 -2.437805 -0.204340 1.999168 -2.288755 -1.807251 -1.182144 1.509354 -0.009992 -0.685534 -1.607107 -0.493861 1.166587 0.655702 2.690949 -1.341551 -7.009356 -4.481762 -1.805606 2.622482 -1.756999 0.541125 -0.875934 -1.113751 -2.339408 -0.087644 -2.387546 0.222697 -1.170202 -1.685372 -3.802706 1.180929 -0.906371 0.109044 0.466955 -3.104985 1.417623 1.553544 1.658256 0.210089 1.205260 -0.394339 -3.454652 -2.681483 0.796833 -0.948851 4.110988 2.174803 -0.160513 -1.594821 -1.704071 -3.489973 2.401616 -4.865626 1.929012 1.633032 -1.950880 1.934260 -2.768061 -0.402362 -1.885360 1.862801 0.233354 -5.367888 4.115064 3.311689 -3.549254 -0.688401 -1.777235 1.882020 0.623657 3.293138 -2.491413 -1.384488 1.178004 0.513295 -0.320269 -0.803394 1.200103 -0.132613 0.585746 -4.021185 -1.891989 2.774679 1.841652 -0.619463 -0.701590 0.582379 -0.865685 0.681160 3.988851 1.563294 1.365852 -3.191295 -8.107054 0.688745 0.320375 -0.512893 1.577874 -2.607675 -1.161749 0.395744 -2.516707 3.405131 -1.296085 -0.690536 3.030293 -4.194039 -3.352145 -1.927805 -1.144002 0.590239 -0.568642 2.494529 -1.900669 -0.276726 -1.325465 1.706270 -1.807664 -1.582083 0.197806 1.816016 2.498289 0.594817 -0.732605 3.226299 0.669773 -1.021324 -0.697492 -0.083456 -0.924489 1.059110 -4.798625 -1.014255 -0.295239 1.410907 -2.549300 1.938725 0.064659 2.112178 0.277660 -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.918502 -1.226617 -0.730010 2.286880 0.402172 -0.040269 0.274488 -0.214734 0.350060 -2.915530 -0.678773 1.864295 -0.109498 0.183793 -0.371518 1.009673 0.958457 0.100882 -2.156980 0.244027 0.363484 -0.268184 -0.512869 0.286330 0.352777 -0.939070 1.658943 0.987224 0.163527 1.495408 -0.765433 1.212967 1.509916 0.018353 0.652130 1.269832 -0.056162 0.182194 -0.478820 -0.625520 2.193643 0.314405 -0.302085 0.851170 0.126533 2.090871 0.576812 2.719592 1.421128 -0.761110 0.890682 0.309533 -0.759015 -0.375929 -2.242795 0.612523 0.544095 0.637037 -1.131526 0.594039 -0.425373 0.630153 0.796804 0.408763 2.605453 0.933449 1.714962 1.691129 2.105887 -1.246083 0.260647 0.698859 1.161006 0.659867 1.272938 -1.163061 -1.135518 -0.873479 -0.321280 -1.560264 -0.033875 -0.391539 2.139139 -1.363310 -0.672665 -0.532927 0.124765 2.127279 -1.142393 0.586440 -2.373145 0.214069 0.540423 2.656198 0.333002 0.495901 -0.454347 0.767806 -0.415328 0.665345 0.218549 -1.600553 -0.247187 -2.791438 -1.222880 -1.379294 0.297826 0.307798 -2.800778 0.384066 -0.247810 1.439828 -2.913751 -0.475250 0.318024 0.176452 2.083012 0.751231 -0.333756 -0.024556 0.259328 0.506551 0.267893 -0.397503 0.500500 -1.185216 0.238973 0.196449 0.715025 0.640174 -2.681069 -0.163633 0.484096 0.197333 0.422681 1.113211 0.941917 -0.625737 0.858072 -1.238717 1.330161 -2.415594 -1.068018 -0.748693 -1.395109 -0.942784 2.536812 1.661304 2.150027 -0.239128 -0.591339 -0.774818 -2.875658 -3.473661 -0.050464 -0.365484 -0.112167 0.935008 -0.389728 0.526612 -1.418359 0.086322 1.252032 -1.127126 -1.035626 -0.729789 0.357948 0.266773 -0.039067 -0.885154 -0.491221 0.554097 -0.122445 1.602008 -0.546622 -3.761690 -2.918608 -0.958980 1.244651 -0.959817 0.162842 -0.751699 -0.635946 -1.713731 0.200118 -1.224654 -0.145953 -0.360071 -1.040216 -2.099421 1.082691 -0.518777 0.049784 0.373130 -1.579298 0.569635 0.438926 0.724310 0.502785 0.552942 -0.306285 -1.598862 -1.405386 0.764223 -0.637226 1.876421 0.787548 -0.323343 -0.726502 -1.234996 -1.882775 1.548031 -2.245000 1.146847 1.047722 -0.638267 1.058732 -1.415982 0.166535 -0.850325 0.959333 0.234610 -2.776979 2.024580 1.730904 -1.795477 -0.338001 -0.706633 1.047210 0.381456 1.341554 -1.441232 -0.925848 0.563448 0.488507 -0.140209 -0.142264 0.474743 -0.193710 0.255096 -2.121733 -0.971847 1.328257 0.842526 -0.465587 -0.341057 0.346165 -0.850035 0.198781 1.976097 0.944422 0.694406 -1.503368 -4.300503 0.135729 -0.037769 -0.283870 0.778774 -1.749147 -0.372047 0.554108 -1.339663 1.885250 -0.667600 -0.905996 1.667566 -2.501194 -1.668583 -0.831590 -0.766035 0.117315 -0.091263 1.358949 -0.801775 -0.174181 -0.328246 0.810543 -1.188677 -1.115911 0.427378 0.958327 1.659891 -0.238712 -0.377580 1.674341 0.130258 -0.398920 -0.660291 0.333431 -0.695709 0.527241 -2.720941 -0.484917 0.070015 0.862693 -1.548481 1.037615 0.002109 0.844835 0.077262 -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.453790 -1.707379 -2.287101 6.079249 0.487643 0.722947 0.827110 -0.442796 1.096200 -7.964114 -1.788182 5.705545 0.265918 1.414658 -1.258776 2.710861 1.884756 1.289823 -5.612152 -0.290820 1.376928 -0.035266 -0.393744 0.365839 0.530280 -1.922962 4.302000 1.637421 1.063764 4.327994 -1.757661 3.074440 4.600969 -0.354984 0.500619 3.075060 0.550770 0.564293 -2.690999 -2.481825 5.273671 0.652826 -0.503672 2.580336 -1.270268 5.394853 2.048685 6.421872 3.000990 -2.488614 1.116105 0.608159 -2.171645 -1.193060 -4.654141 1.470465 1.076928 2.428001 -2.205595 1.539112 -0.220760 1.546556 2.172449 0.846445 5.296933 2.636289 4.169128 4.911832 4.944068 -3.968666 1.101578 1.040276 1.242225 1.602647 4.455374 -3.121929 -3.055490 -0.063155 -0.558126 -3.807334 -0.802248 -0.723953 6.455419 -4.176574 -1.620699 -1.156367 1.043828 5.777154 -2.388209 2.254603 -5.706535 0.244176 0.850571 6.582762 1.174325 0.794945 -1.879851 1.671052 -0.803034 1.051924 1.266282 -4.122973 0.015922 -5.480250 -2.545368 -3.817454 0.865362 2.368235 -6.492632 0.501230 -1.485242 4.565403 -8.044886 -1.158633 0.905403 1.249436 6.346573 2.487854 -0.949654 0.183474 0.797580 0.449720 1.062468 -2.084783 1.464147 -1.271723 -0.060405 0.392517 1.420270 1.962334 -7.421251 -1.209437 1.165861 -0.382745 1.658659 3.320576 3.419014 -1.591161 2.360528 -3.081026 3.129513 -5.620027 -2.870867 -0.474603 -4.267288 -3.010541 6.100574 3.796531 4.811184 -1.173987 -1.788076 -2.175448 -6.688270 -8.027321 -0.145732 0.027857 -0.444528 3.278042 -1.256108 1.792047 -4.330924 1.146823 3.260542 -2.244487 -2.842891 -0.813557 1.608706 0.444860 -0.374364 -2.023678 -1.037411 -0.073711 0.214669 5.263196 -1.080880 -9.097015 -7.998798 -2.453462 3.926544 -2.736058 0.325821 -2.526044 -1.984589 -3.916522 -0.118157 -3.198289 -0.115791 0.071331 -2.521467 -6.103971 3.187955 -1.265758 -1.062662 1.912237 -4.486616 1.328342 1.500445 1.052857 0.903523 0.772783 -0.719449 -4.213683 -2.833738 2.016118 -2.947567 4.617989 2.216739 -0.585679 -2.560224 -3.173405 -4.269835 3.768325 -4.805501 3.340040 1.409432 -0.305188 2.362064 -3.881392 0.757472 -2.805862 2.427650 1.037480 -7.412207 5.515814 4.191679 -3.554196 -0.132432 -0.723162 2.573370 0.868872 2.625527 -4.498540 -3.709076 1.698465 0.483908 -0.120938 -0.671486 0.904282 -0.933411 -0.334912 -4.652563 -1.519021 3.231721 1.710220 -1.341793 -0.636197 2.451905 -2.865773 1.225109 4.616898 2.858574 1.319781 -3.488457 -10.297810 1.212210 -0.877619 -0.875468 1.149467 -4.094155 -0.401057 2.705564 -3.705533 4.494610 -2.364792 -1.987863 4.422339 -6.975432 -4.294914 -2.233225 -2.362252 0.881976 0.385235 2.712881 -1.639606 0.011824 -0.478282 1.206757 -3.128988 -3.192878 2.105900 2.758766 4.881970 -0.993320 -0.111548 4.584603 0.619229 -0.973742 -1.037389 0.218936 -1.862966 0.248436 -6.868318 -0.380714 1.473243 2.284697 -4.161886 1.995413 -0.712405 0.587560 0.074001 -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.644075 -0.470409 -0.537954 0.985011 0.073884 -0.051809 0.071615 -0.132789 0.000000 -1.230003 -0.325896 0.963924 0.191763 -0.059766 0.040706 0.620372 0.306922 0.010555 -0.642191 0.206455 0.006138 -0.328790 -0.544786 0.144500 -0.099346 -0.633747 0.678251 0.355940 -0.037484 0.709500 -0.312291 0.577368 0.652339 -0.197161 0.332207 0.524781 0.053006 -0.089466 -0.490000 -0.008900 1.178757 0.085164 0.053206 0.297605 0.068699 0.887750 -0.026861 1.513041 0.644951 -0.286579 0.858858 0.502346 -0.305599 0.016839 -1.069636 0.217272 0.270302 -0.043223 -0.469094 0.319139 -0.577407 0.274570 0.337557 0.460081 1.205225 0.468437 0.903997 0.781423 0.935480 -0.609211 0.079127 0.446570 0.378138 0.202853 0.937730 -0.346998 -0.567128 -0.271294 -0.007527 -0.203665 0.040700 -0.178963 1.347018 -0.654019 -0.552320 0.159792 0.394296 0.978638 -0.623838 0.412275 -0.896888 0.086275 0.034978 1.182522 0.144758 0.343652 -0.412056 0.240792 -0.184792 0.330759 0.121456 -0.857892 -0.286300 -1.088521 -1.042207 -0.565848 0.031550 0.040351 -1.291197 0.240711 0.393842 0.673788 -1.141951 0.048250 0.208408 0.188928 1.555493 0.699186 -0.502852 -0.119236 0.303738 0.411689 0.277311 -0.027780 0.295010 -0.624156 0.463087 0.189131 0.344191 0.004861 -1.198110 -0.070168 0.253290 -0.011125 0.102544 0.278852 0.482282 -0.645980 0.451725 -0.267339 0.623990 -1.179228 -0.521321 -0.666801 -0.720368 -0.282901 1.309167 0.843102 1.202118 0.068688 -0.539922 -0.164636 -1.308752 -1.454669 -0.276644 -0.244824 -0.200826 0.275128 -0.123891 0.247721 -0.432140 0.249793 0.559477 -0.630432 -0.395641 -0.125906 0.277318 0.032030 -0.254960 -0.515268 -0.213765 -0.003352 0.288809 0.909821 -0.054707 -1.878983 -1.248523 -0.502612 0.633494 -0.371756 0.186517 -0.284800 -0.385474 -0.761656 0.034600 -0.502943 0.035695 -0.103374 -0.531364 -0.913247 0.374090 -0.126968 -0.376189 -0.015720 -0.851680 0.241973 0.187425 0.032485 0.264300 0.226050 -0.244381 -0.971836 -0.840167 0.221667 -0.325386 1.029201 0.633589 -0.010618 -0.214881 -0.491111 -0.978117 0.417282 -1.351233 0.371936 0.461981 -0.620752 0.391055 -0.816222 -0.267205 -0.495260 0.413470 -0.055256 -1.069360 1.319805 0.921482 -0.770978 -0.190321 -0.239280 0.524705 0.140330 0.828138 -0.560434 -0.126224 0.178131 0.429907 -0.096172 0.182583 0.413165 -0.278365 -0.028174 -0.831030 -0.476261 0.605701 0.671179 -0.126758 -0.323654 0.099161 -0.339712 0.066669 0.757414 0.454557 0.182178 -0.547237 -1.899694 0.191691 -0.573106 -0.525036 0.490739 -0.753092 -0.234293 0.181065 -0.558833 0.875843 -0.718673 -0.075522 0.720225 -1.066196 -0.879312 -0.524072 -0.384764 -0.097420 -0.175064 0.667002 -0.521512 -0.097262 -0.218922 0.308731 -0.632611 -0.278101 0.218929 0.309872 0.554964 0.237036 -0.149551 0.797850 0.389980 -0.198451 -0.364796 0.070764 -0.334021 0.366527 -1.033606 -0.191457 -0.042804 0.369481 -0.522388 0.334245 -0.026310 0.320672 0.082534 -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.780262 -1.749320 -1.621136 3.676121 0.427857 0.215787 0.419699 -0.313095 0.665784 -4.778661 -1.246861 2.827450 0.401651 0.615884 -0.307163 1.811725 1.121807 0.242005 -2.999151 0.142754 0.587527 -0.453169 -0.926605 0.596717 0.126216 -1.614729 2.316016 1.101151 0.346630 2.620219 -1.025858 2.036274 2.654832 -0.520902 0.632312 1.949886 0.487350 0.272968 -1.455363 -0.690276 3.591049 0.465729 -0.359789 1.271225 -0.411444 3.250939 0.652691 5.101523 1.501264 -1.408464 1.902407 0.107877 -1.165500 -0.443990 -3.228173 1.056913 1.370071 1.040588 -1.593255 1.014865 -0.781739 0.912030 1.282455 1.016055 3.712345 1.834455 2.884923 2.873295 3.233097 -2.305268 0.472908 1.100727 0.991485 0.825761 2.715039 -1.902077 -1.821582 -0.413233 -0.004656 -1.478350 -0.352302 -0.657688 3.809411 -2.504116 -1.435292 -0.162832 0.745427 3.498210 -1.837552 1.480842 -3.442081 0.127949 0.568312 4.268891 0.501524 0.796975 -1.174385 1.146307 -0.502075 0.905248 0.714366 -2.632920 -0.735840 -3.624545 -2.414296 -2.121830 0.423905 1.075033 -4.334706 0.293990 -0.420612 2.021712 -4.586177 -0.237544 0.623959 0.903795 4.893191 2.188554 -1.156020 -0.102365 0.785013 0.493358 0.712631 -0.758591 1.046193 -1.862776 0.812170 0.522235 0.844776 0.723717 -4.484067 -0.277962 0.667797 -0.112269 0.755077 1.657820 1.945017 -1.657051 1.557171 -1.611437 1.980109 -3.977987 -1.975163 -1.037767 -2.966691 -1.454981 4.376303 2.395801 3.550041 -0.361804 -1.750732 -1.133655 -4.448650 -5.436352 -0.561027 -0.201503 -0.241483 1.625416 -0.715611 1.039644 -2.240736 0.761205 2.017518 -1.650742 -1.607310 -0.542387 0.994799 0.226729 -0.385849 -1.372938 -0.694576 0.126597 0.219754 3.337987 -0.458237 -5.838316 -4.802899 -1.543789 2.269005 -1.453483 0.477351 -1.310364 -1.174476 -3.292142 0.031120 -1.897904 -0.047683 -0.196927 -1.807068 -3.522163 1.757843 -0.632232 -0.533433 0.806973 -2.826898 0.780743 0.824650 0.922304 0.831906 0.635727 -0.604687 -2.962269 -2.462013 1.088255 -1.552951 3.552053 1.353163 -0.421279 -0.537878 -1.894535 -3.020154 2.159696 -3.609636 1.683650 1.245676 -0.767043 1.456735 -2.619781 -0.381117 -1.991999 1.443653 0.398519 -3.518991 3.878765 2.634434 -2.348056 -0.322571 -0.645319 1.673557 0.540106 2.114847 -2.320916 -1.684740 0.908728 0.813205 -0.194905 -0.253786 0.860050 -0.749561 -0.026506 -2.941518 -1.286606 1.923464 1.593706 -0.717127 -0.488851 1.015150 -1.535017 0.368482 2.891236 1.647275 0.585460 -1.965018 -6.390530 0.692497 -1.155579 -1.203071 0.738568 -2.867456 -0.381795 1.277385 -1.947703 2.880665 -1.104975 -0.665391 2.733876 -4.215350 -2.811217 -1.458409 -1.296574 0.181640 -0.089903 1.596129 -1.346866 0.105523 -0.339865 0.882091 -1.876708 -1.970153 0.805521 1.336477 2.584019 -0.667222 -0.163600 2.840410 0.650420 -0.460444 -0.936769 0.336682 -1.073207 0.712161 -3.890406 -0.506036 0.409039 1.308301 -2.307558 1.234210 -0.383031 0.597993 0.310810 -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.280636 -3.496814 -3.609707 7.790113 0.408851 1.604833 0.958906 -0.276614 0.807497 -11.524414 -3.385323 7.457516 1.298473 2.264366 -0.702898 3.527746 2.291378 1.219057 -9.706022 -0.665469 1.541364 -0.835381 -1.113632 0.937637 -0.275899 -3.390797 6.372238 2.328953 1.219421 6.302701 -2.108756 4.794160 6.220367 -0.922131 1.410102 4.128226 0.501123 -0.367823 -4.976647 -2.650634 8.869110 1.661771 -0.500213 2.941344 -2.084302 7.251766 2.465378 10.331422 4.972158 -3.345262 3.721778 -0.156099 -3.097253 -1.116222 -7.240272 0.951792 2.019206 2.657186 -2.759700 2.291959 -1.133345 1.646633 2.585585 1.876926 8.509861 2.655499 7.349435 6.351771 5.671785 -5.806417 1.342202 1.601034 0.223840 1.514551 6.618524 -4.802406 -4.006878 -1.764307 0.681610 -5.609992 -1.998857 -1.140746 8.629967 -5.424541 -2.929817 -0.394176 1.934883 7.734665 -3.397418 3.385826 -8.061727 -0.441389 1.621497 9.219013 1.409836 0.983020 -2.173614 1.803173 -0.753842 1.669385 2.756590 -6.407132 -0.436683 -8.177699 -4.036547 -4.900575 1.159045 3.437721 -7.966107 0.499947 -1.461977 5.368933 -10.194338 -0.781635 1.360537 2.308676 10.854431 4.447138 -2.713984 -0.111559 1.873725 1.567098 3.312121 -2.885073 2.676150 -2.648980 2.270565 1.050494 1.855700 2.046076 -10.511792 -2.147123 2.454406 -0.214192 1.747858 3.551772 5.042485 -2.405315 3.513050 -3.777763 4.579837 -7.775762 -2.963534 -1.466276 -5.800109 -3.781701 10.131334 6.172564 6.742120 -0.434805 -3.998542 -0.935561 -8.884463 -12.506991 -0.989372 0.600371 -0.830396 3.633642 -1.709040 3.215685 -5.497282 2.620781 4.145218 -2.731582 -4.015242 -0.185303 0.550666 1.064233 -1.574999 -2.108447 -0.619811 -1.196769 1.105723 8.763575 -1.155370 -14.134247 -10.902711 -3.549951 5.891616 -3.633436 0.279449 -3.057549 -3.093019 -6.306401 -0.640467 -4.468899 0.243913 0.140422 -4.652011 -8.140368 3.812852 -1.414725 -1.626990 2.663758 -6.432698 1.336446 2.340087 2.253158 1.361229 0.788371 -0.850609 -6.426316 -4.659444 2.187652 -4.886683 8.281342 2.762613 -0.841686 -3.053367 -3.734997 -6.039364 4.460392 -7.278254 4.305184 0.980566 -2.534436 2.475051 -5.815058 -0.110052 -3.284196 3.187216 1.514561 -9.553353 9.667971 6.211104 -4.325989 -0.262726 -0.606854 3.139808 0.921410 3.746684 -5.549007 -4.559973 1.609525 1.290481 0.025631 -0.673942 1.613656 -1.456467 -2.118540 -6.734896 -3.268093 4.638522 2.795401 -1.078316 -1.001095 3.759357 -2.922050 0.875794 6.899692 3.309724 1.109535 -3.572565 -15.019610 2.758989 -0.831618 -2.854458 1.329919 -6.108990 -0.857264 3.153430 -5.313270 5.809228 -2.270010 -2.352321 6.028955 -9.002242 -5.961415 -5.110010 -3.283096 0.668396 0.557782 2.725250 -2.512300 0.749572 -1.056065 0.858768 -3.875796 -3.956962 2.520217 3.424906 5.411894 -0.588742 0.479271 6.407163 1.827012 -1.078150 -1.824997 0.044496 -2.947916 2.014679 -8.719462 -0.721540 2.039603 2.989112 -4.694170 0.633339 -1.082309 0.583223 0.400507 -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.124429 -0.107044 0.015453 0.256702 0.177087 -0.109111 0.050761 -0.036927 0.047575 -0.382773 -0.072065 0.180912 -0.027124 -0.096617 0.025846 0.089639 0.182836 0.233104 0.010473 0.112241 -0.010412 0.065617 -0.120555 -0.079939 0.001338 -0.111822 0.092475 0.071206 0.073331 0.232076 -0.213991 0.025985 0.189340 0.008412 0.161713 0.228585 0.343686 -0.031335 -0.097891 -0.018113 0.487121 -0.040512 0.117415 0.237473 0.188376 0.276944 0.067099 0.321989 0.225888 -0.083446 0.088373 -0.114163 -0.034618 -0.026822 -0.398212 0.228689 0.091706 0.106121 -0.286030 0.161147 0.045616 0.092794 0.094897 -0.043382 0.243428 0.110141 -0.000971 0.207859 0.421505 -0.169195 -0.052058 0.122087 0.339155 0.143045 0.300581 -0.054856 -0.073925 -0.311145 -0.129948 -0.032404 0.172927 -0.052102 0.384283 -0.270599 0.064718 0.300673 -0.020616 0.190941 -0.077187 -0.089761 -0.329142 0.073202 0.042047 0.247011 0.083312 0.040345 -0.136626 0.081123 -0.023785 0.150588 0.064943 -0.263315 -0.142661 -0.560800 -0.341160 -0.169398 -0.097492 -0.145257 -0.326915 -0.045878 0.190224 0.397678 -0.393747 -0.003031 0.087948 0.006256 0.058221 -0.190044 -0.057564 0.000398 -0.005140 0.052370 -0.065942 -0.110416 -0.076318 -0.147750 0.004049 -0.003479 0.163455 -0.086203 -0.033432 -0.076303 -0.059674 0.165355 -0.090109 -0.060505 0.000716 -0.342067 0.146222 -0.114626 0.167938 -0.199293 -0.122250 -0.153306 -0.249090 -0.087615 0.611646 -0.098451 0.421119 0.053118 -0.220725 -0.173383 -0.281119 -0.509689 0.178013 -0.162709 0.051227 0.166569 -0.018096 -0.045097 -0.113516 -0.165058 0.175516 -0.235968 -0.081352 -0.042311 -0.054403 -0.187330 -0.069465 -0.364670 0.037583 0.354262 0.118330 0.020714 -0.197591 -0.284372 -0.183191 -0.211699 0.188478 -0.116605 0.160710 0.024652 -0.060681 -0.202020 0.108075 -0.208499 0.078114 -0.152123 -0.175070 -0.307260 0.036243 -0.140789 -0.034968 0.058170 -0.243833 0.184314 -0.133923 -0.010010 -0.031699 0.033380 0.002987 -0.403086 -0.336942 -0.073108 0.024248 0.208541 0.098507 0.138122 -0.185490 -0.149430 -0.218891 0.167548 -0.513561 0.047669 0.221562 -0.160086 0.212652 -0.184372 -0.079072 -0.199358 0.182237 0.069111 -0.314475 0.306970 0.251991 -0.321252 -0.122709 -0.157463 0.134326 0.112291 0.443080 -0.191049 -0.000171 0.203225 0.009856 -0.043055 -0.206604 0.152502 -0.004281 0.232780 -0.348816 -0.201297 0.092289 0.282950 -0.067204 -0.044780 0.097996 0.028857 -0.114808 0.381388 0.125249 0.208564 -0.250280 -0.376380 0.087385 0.042600 0.100041 0.249204 -0.222040 -0.016551 0.069745 -0.079518 0.291725 -0.043544 0.133866 0.269264 -0.316428 -0.290614 0.103464 -0.122830 0.117920 -0.215129 0.311736 -0.239561 -0.078273 -0.169352 0.159352 -0.132529 0.040411 -0.047442 0.071252 0.138749 0.149761 -0.035966 0.282550 0.022103 -0.186895 0.108686 -0.027097 0.137507 0.051329 -0.260032 -0.105157 -0.107374 0.071549 -0.178510 0.325939 -0.183371 0.098255 0.069041 -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.669074 -2.168551 -1.230705 3.505650 0.412823 0.638724 0.437260 -0.020020 0.514585 -4.851218 -1.579098 3.162009 0.046930 0.657234 -0.086226 0.989191 1.123455 0.225642 -4.437669 -0.092549 0.415045 -0.529403 -0.447775 0.351418 -0.003228 -1.510227 2.822766 1.458138 0.414532 2.297303 -0.860730 1.684668 2.465186 -0.117427 0.734127 1.720426 0.119707 -0.004118 -1.992867 -0.985203 3.902485 0.916605 -0.540944 1.450512 -0.318700 2.957475 1.005199 4.652859 3.260745 -1.203083 1.837483 -0.105022 -1.187683 -0.635642 -3.266014 0.359108 1.181197 0.687343 -1.415040 0.911120 -0.563172 0.649061 0.900997 0.608539 3.858495 0.855957 3.449569 2.710671 2.183449 -2.382383 0.202627 0.967563 0.833975 1.131190 2.648607 -2.234157 -1.962791 -1.442397 0.215641 -2.092685 -0.994267 -0.693846 2.859384 -1.974042 -1.334414 -0.091322 0.278266 3.090971 -1.367805 1.362106 -3.418004 -0.043832 1.052946 4.001640 0.580105 0.110150 -0.581610 0.836211 -0.222058 1.087574 1.234235 -2.656614 -0.281061 -4.379676 -1.571765 -1.931256 0.709386 0.912761 -3.312498 0.358720 -0.380691 2.133838 -4.036804 -0.602202 0.722328 0.778361 4.190817 0.946310 -0.832528 -0.148923 0.966185 0.833581 1.667171 -1.121797 0.953609 -1.338222 1.436269 0.522389 0.840105 0.874765 -3.763815 -1.043260 1.110695 0.706456 0.499551 1.036215 1.886022 -0.987617 1.478997 -1.424604 2.090348 -3.393993 -0.865389 -0.873961 -1.753259 -1.384857 4.417887 2.501774 3.257384 0.167295 -1.596724 -0.386034 -3.572181 -5.939525 -0.218888 0.229087 -0.204734 1.108313 -0.596096 1.419030 -1.981808 0.981299 1.444275 -0.988247 -1.479929 -0.138995 -0.677444 0.414348 -0.641008 -0.845176 -0.049089 -0.157845 0.225743 3.500774 -0.526923 -6.447171 -4.241701 -1.576881 2.273310 -1.432223 0.041856 -0.941381 -1.163879 -2.687757 0.064250 -1.885350 0.020205 -0.170108 -2.308920 -3.149207 1.287141 -0.682363 0.145470 1.072531 -2.527996 0.457871 0.654061 1.269262 0.660254 0.780601 -0.278717 -2.924541 -1.950684 0.461599 -2.006351 3.874344 0.838896 -0.450431 -1.309838 -1.477119 -2.678856 2.011357 -3.382285 1.551842 0.367461 -1.448404 1.123196 -2.068279 -0.154457 -1.233356 1.319313 0.819084 -3.777480 3.922881 2.844233 -1.857818 -0.413861 -0.424560 0.972057 0.486394 1.958104 -2.417414 -1.522800 0.529629 0.617670 0.034725 -0.313258 0.871137 -0.278247 -0.763095 -2.999631 -1.623804 1.837463 1.128356 -0.283945 -0.374190 1.459257 -0.678310 0.047559 3.099432 1.092303 0.591532 -1.806108 -6.953033 1.154363 0.402786 -1.212756 1.143791 -2.815112 -0.738425 0.912773 -2.001504 2.444929 -0.736783 -0.809420 2.496496 -3.482964 -2.309060 -2.188135 -1.508475 0.084559 -0.014558 1.572044 -0.850271 0.200432 -0.652003 0.180810 -1.523340 -1.262399 0.644534 1.204901 1.803874 0.090552 0.120956 2.444768 0.693813 -0.931381 -0.830153 0.088584 -1.436341 1.296983 -3.749767 -0.499981 0.453094 1.062797 -1.697999 0.092009 -0.232591 0.641197 -0.029194 -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.644075 -0.470409 -0.537954 0.985011 0.073884 -0.051809 0.071615 -0.132789 0.000000 -1.230003 -0.325896 0.963924 0.191763 -0.059766 0.040706 0.620372 0.306922 0.010555 -0.642191 0.206455 0.006138 -0.328790 -0.544786 0.144500 -0.099346 -0.633747 0.678251 0.355940 -0.037484 0.709500 -0.312291 0.577368 0.652339 -0.197161 0.332207 0.524781 0.053006 -0.089466 -0.490000 -0.008900 1.178757 0.085164 0.053206 0.297605 0.068699 0.887750 -0.026861 1.513041 0.644951 -0.286579 0.858858 0.502346 -0.305599 0.016839 -1.069636 0.217272 0.270302 -0.043223 -0.469094 0.319139 -0.577407 0.274570 0.337557 0.460081 1.205225 0.468437 0.903997 0.781423 0.935480 -0.609211 0.079127 0.446570 0.378138 0.202853 0.937730 -0.346998 -0.567128 -0.271294 -0.007527 -0.203665 0.040700 -0.178963 1.347018 -0.654019 -0.552320 0.159792 0.394296 0.978638 -0.623838 0.412275 -0.896888 0.086275 0.034978 1.182522 0.144758 0.343652 -0.412056 0.240792 -0.184792 0.330759 0.121456 -0.857892 -0.286300 -1.088521 -1.042207 -0.565848 0.031550 0.040351 -1.291197 0.240711 0.393842 0.673788 -1.141951 0.048250 0.208408 0.188928 1.555493 0.699186 -0.502852 -0.119236 0.303738 0.411689 0.277311 -0.027780 0.295010 -0.624156 0.463087 0.189131 0.344191 0.004861 -1.198110 -0.070168 0.253290 -0.011125 0.102544 0.278852 0.482282 -0.645980 0.451725 -0.267339 0.623990 -1.179228 -0.521321 -0.666801 -0.720368 -0.282901 1.309167 0.843102 1.202118 0.068688 -0.539922 -0.164636 -1.308752 -1.454669 -0.276644 -0.244824 -0.200826 0.275128 -0.123891 0.247721 -0.432140 0.249793 0.559477 -0.630432 -0.395641 -0.125906 0.277318 0.032030 -0.254960 -0.515268 -0.213765 -0.003352 0.288809 0.909821 -0.054707 -1.878983 -1.248523 -0.502612 0.633494 -0.371756 0.186517 -0.284800 -0.385474 -0.761656 0.034600 -0.502943 0.035695 -0.103374 -0.531364 -0.913247 0.374090 -0.126968 -0.376189 -0.015720 -0.851680 0.241973 0.187425 0.032485 0.264300 0.226050 -0.244381 -0.971836 -0.840167 0.221667 -0.325386 1.029201 0.633589 -0.010618 -0.214881 -0.491111 -0.978117 0.417282 -1.351233 0.371936 0.461981 -0.620752 0.391055 -0.816222 -0.267205 -0.495260 0.413470 -0.055256 -1.069360 1.319805 0.921482 -0.770978 -0.190321 -0.239280 0.524705 0.140330 0.828138 -0.560434 -0.126224 0.178131 0.429907 -0.096172 0.182583 0.413165 -0.278365 -0.028174 -0.831030 -0.476261 0.605701 0.671179 -0.126758 -0.323654 0.099161 -0.339712 0.066669 0.757414 0.454557 0.182178 -0.547237 -1.899694 0.191691 -0.573106 -0.525036 0.490739 -0.753092 -0.234293 0.181065 -0.558833 0.875843 -0.718673 -0.075522 0.720225 -1.066196 -0.879312 -0.524072 -0.384764 -0.097420 -0.175064 0.667002 -0.521512 -0.097262 -0.218922 0.308731 -0.632611 -0.278101 0.218929 0.309872 0.554964 0.237036 -0.149551 0.797850 0.389980 -0.198451 -0.364796 0.070764 -0.334021 0.366527 -1.033606 -0.191457 -0.042804 0.369481 -0.522388 0.334245 -0.026310 0.320672 0.082534 -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) = 5.659651 -1.661760 -2.627425 5.866337 2.370069 -0.822110 0.681990 1.347762 1.165562 -7.814228 -5.060531 6.684728 0.397404 -1.608062 0.627432 2.200847 3.934773 1.163234 -8.006131 1.705379 -0.106045 -1.898093 -4.457249 -0.151087 -0.255862 -3.333405 2.541221 3.220370 0.149330 4.801180 -2.462227 3.229121 3.854590 0.399306 4.872729 4.554403 -1.728743 -1.981141 -0.817029 -2.209686 9.064522 2.894824 0.801989 4.028824 2.547189 6.427166 -0.419665 8.241247 3.552028 -1.269492 3.872836 0.576839 -3.027965 0.338041 -8.262987 1.382019 2.414016 -2.030438 -4.349472 2.774579 -1.643945 1.864492 2.233563 0.290435 7.945136 1.715040 4.250783 4.441577 6.457146 -3.319870 0.497704 2.251269 4.894373 2.630289 3.013779 -2.354895 -3.329601 -0.244441 0.224940 -5.154489 1.404352 -2.811526 8.883107 -4.152815 -1.404306 0.449059 1.138592 5.818939 -3.715878 -0.521135 -6.301759 0.434359 -0.796860 5.985616 0.535768 2.884384 -1.034350 1.352838 -1.745500 2.615107 -1.208886 -6.642626 -1.913844 -11.288151 -4.510492 -3.930739 -0.362526 -1.007548 -6.449083 0.844758 -0.731983 6.629898 -7.051330 -1.408016 0.907114 -1.150914 2.784322 3.017373 -3.249204 -1.763456 0.435984 3.540876 1.520187 -1.099530 0.492440 -4.162549 1.058028 0.883258 2.912510 1.136088 -5.771854 -0.611170 2.713070 0.956633 -0.413014 1.657262 1.968136 -3.511333 2.677998 -2.556152 4.383565 -6.775311 -2.931853 -5.282252 -4.317241 -2.285719 7.044861 5.653887 7.591980 2.135314 0.368547 -0.519410 -8.182462 -10.346892 0.908031 -2.714530 0.194385 0.042096 -0.280750 0.943269 -3.825293 -0.551972 3.147583 -4.255177 -3.136079 -2.500848 3.935270 0.233316 -1.795861 -2.505367 -0.631635 1.909157 0.692235 4.351986 -2.643364 -10.765117 -6.660043 -3.292991 4.544071 -2.995752 0.931160 -1.130298 -1.388271 -3.681396 -0.342807 -4.170261 0.005754 -2.687057 -2.503276 -6.173797 0.946938 -1.313846 -0.072930 0.334325 -5.249944 2.604088 5.005661 3.312972 0.230965 2.684531 -1.145565 -4.885040 -4.368757 0.805821 -1.211017 7.335325 5.427397 -0.442330 -2.715388 -2.451789 -6.099873 4.373308 -7.581433 3.134582 2.642311 -4.281914 3.245412 -4.641394 -1.836566 -2.765435 3.119614 -0.033473 -10.514523 6.342480 5.773745 -6.642241 -1.611431 -4.591631 3.203961 0.882162 6.587049 -3.394510 -1.122384 1.590560 1.112729 -0.654135 -1.649763 2.437254 0.147653 0.929649 -6.980105 -3.507864 5.527273 3.462914 -0.649253 -0.929911 0.286508 0.221973 2.785470 6.774161 2.231097 1.688010 -5.593299 -14.017498 1.196403 1.436609 -1.205316 2.810837 -3.467285 -2.930561 -0.967309 -5.170836 6.007090 -2.160229 -0.624650 5.238239 -5.561587 -5.837712 -4.439904 -1.032509 0.845120 -1.643953 4.178980 -3.566098 -0.370130 -2.749198 3.241038 -2.057386 -3.081150 -1.638040 2.903819 3.743125 1.730406 -1.074476 5.489481 1.570585 -1.876149 -1.566598 -0.316429 -1.521626 2.400483 -8.484603 -2.641064 -1.325832 2.073010 -3.921102 2.900360 0.756039 4.774638 1.044671 -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) = 2.377294 -3.006870 -1.091102 2.598350 1.019909 -0.218068 0.331332 0.508680 0.627954 -4.579852 -2.026608 3.716915 0.028422 -0.588504 -0.026358 0.852049 1.831632 0.753353 -4.959438 0.643858 -0.104947 -0.627166 -1.722258 -0.326457 0.002368 -1.312485 2.993885 1.442672 0.232698 2.140663 -1.166121 1.344765 1.659051 0.394908 2.128498 1.955285 -0.743536 -0.971467 -0.804426 -1.434027 5.056344 1.908077 -0.140151 2.051767 1.035870 2.850180 0.442233 4.606830 3.700180 -0.533072 2.202897 -0.282669 -1.489860 -0.121050 -4.814024 0.482052 1.034341 -0.297419 -1.761294 1.163912 -0.290554 0.801003 0.943359 -0.060653 4.968255 0.313942 2.944959 1.889677 2.723638 -1.562071 0.228055 0.851831 2.336767 0.846993 2.173847 -2.250966 -1.765430 -3.515128 -0.202470 -3.854550 0.609208 -1.202531 3.139369 -1.792586 0.168481 -0.066481 0.435092 2.474739 -1.377785 -0.415025 -4.003379 0.240326 0.967183 4.190137 0.406541 1.148719 -0.376599 0.468435 -0.766078 1.074890 0.974607 -3.022798 -0.091655 -6.749989 -1.496269 -1.933659 -0.126757 -0.454500 -2.994281 0.610156 -0.072071 2.460214 -3.652006 -0.878970 0.389442 -0.721537 2.452256 -0.070828 -0.844246 0.001044 0.184012 1.664054 0.682188 -0.916089 0.090388 -2.172248 1.323621 0.264215 1.387186 0.672275 -3.409172 -0.641376 1.244484 2.042764 -0.099456 0.748904 0.838485 -1.300895 1.097256 -1.848387 1.961076 -2.976017 -0.581978 -1.995657 -1.417905 -1.233243 5.349764 2.325773 3.820948 0.781631 -0.636902 -0.205226 -3.786613 -6.759485 0.792496 -1.137192 -0.149683 0.305607 -0.074840 0.480350 -1.874133 -0.371626 1.532966 -1.774160 -1.442470 -0.923154 -0.192466 0.071715 -0.690307 -1.089865 -0.172831 1.939134 0.589282 1.810039 -1.283306 -6.877534 -3.278276 -1.439126 2.049965 -1.481939 0.243272 -0.469434 -0.781471 -2.053444 -0.225761 -1.898098 0.629151 -1.081518 -2.309575 -2.753721 0.430081 -0.721531 1.309378 0.367712 -2.305469 1.175356 0.879725 2.547120 -0.070224 1.141506 0.246882 -3.236768 -2.736747 0.353979 -0.634226 4.145089 1.019901 -0.144552 -1.858088 -1.090045 -2.923264 1.851369 -5.071829 1.545413 1.022062 -3.012697 1.331266 -1.998309 -0.303931 -0.898189 1.443028 0.141521 -4.571125 3.814740 2.715931 -2.911605 -0.656715 -1.748558 1.293291 0.382129 2.771598 -1.809704 -0.799966 0.724844 0.343362 -0.209881 -0.790880 0.971708 0.231156 0.207374 -4.255817 -2.707622 2.368150 1.302331 -0.271388 -0.552509 0.406077 -0.105691 -0.632426 4.178067 0.994523 1.181934 -2.683155 -7.852298 0.569327 2.270445 -0.192245 1.555986 -2.696244 -1.214898 -0.190472 -2.046176 2.544615 0.339510 -1.165229 2.275142 -2.934892 -2.438365 -1.950863 -0.821724 0.526466 -0.510174 2.138157 -1.518528 -0.271050 -1.409586 1.337431 -1.216523 -0.946426 -0.038528 1.548449 1.639602 1.080324 -0.915199 2.392797 0.609225 -0.976924 -0.514305 -0.280638 -0.883119 1.969319 -4.053753 -0.977904 -0.360926 0.973047 -1.744474 1.189102 0.277185 2.135277 0.099573 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = 0.498430 -0.590825 -0.103487 0.703081 0.356144 -0.058525 0.068961 -0.036154 0.089473 -0.965884 -0.375873 0.281779 0.004960 -0.114582 0.214549 0.280281 0.448451 -0.044508 -0.594621 0.198475 -0.030412 -0.263314 -0.408854 0.148541 -0.030317 -0.546699 0.367913 0.441211 -0.025549 0.499545 -0.341952 0.331723 0.459180 -0.021331 0.516635 0.502564 0.204227 -0.144119 -0.221104 0.092859 1.168319 0.065839 0.019507 0.289702 0.346981 0.720240 -0.019834 1.198663 0.534796 -0.172867 0.755321 -0.213056 -0.156412 0.016619 -1.041892 0.248835 0.449489 -0.025008 -0.620850 0.300671 -0.351960 0.226517 0.204114 0.224334 0.965689 0.223142 0.610363 0.482950 0.777881 -0.459245 -0.089418 0.438165 0.566117 0.318642 0.375851 -0.326771 -0.245484 -0.693445 0.060432 -0.089697 0.128478 -0.269511 0.671712 -0.414177 -0.299105 0.354127 -0.049219 0.626551 -0.430837 0.105335 -0.817141 0.096117 0.201771 0.723823 0.033205 0.185341 -0.062126 0.215173 -0.118999 0.447266 0.090158 -0.708060 -0.449440 -1.266182 -0.849756 -0.384849 0.037053 -0.216545 -0.885284 0.112615 0.295007 0.350511 -0.698539 0.007238 0.143328 0.127327 0.678974 0.177183 -0.338945 -0.283586 0.199293 0.386342 0.199154 -0.049194 0.161899 -0.816044 0.462336 0.193034 0.352531 -0.116282 -0.403214 -0.029894 0.178245 0.208524 -0.117796 0.006047 0.180457 -0.573866 0.378176 -0.201331 0.544629 -0.837940 -0.284365 -0.687376 -0.473364 -0.155394 1.323917 0.432218 0.923792 0.340682 -0.495875 -0.054194 -0.888003 -1.325015 -0.109180 -0.231693 0.042994 0.130605 -0.101130 0.173642 -0.259108 -0.080683 0.297233 -0.522712 -0.314157 -0.242404 -0.184035 -0.040024 -0.211094 -0.436020 0.050443 0.451368 0.017500 0.543846 -0.225356 -1.178017 -0.682671 -0.501016 0.444023 -0.292384 0.207916 -0.036860 -0.162099 -0.829661 0.212803 -0.450608 0.032580 -0.319282 -0.531261 -0.680000 0.161892 -0.221383 0.079362 0.065061 -0.637779 0.264343 0.017580 0.290302 0.189226 0.259742 -0.179002 -0.826434 -0.815213 -0.044668 -0.068292 0.943783 0.266429 -0.024665 -0.014658 -0.392500 -0.649725 0.455766 -0.990345 0.194319 0.469155 -0.646218 0.332664 -0.492148 -0.313717 -0.386645 0.365958 0.076422 -0.639808 0.935965 0.707184 -0.767821 -0.350914 -0.477288 0.362599 0.117252 0.892763 -0.310128 0.070477 0.196185 0.369392 -0.097373 -0.144883 0.365893 0.004927 0.156892 -0.871500 -0.611624 0.427328 0.608383 -0.078631 -0.144505 0.097538 0.110349 -0.087504 0.855677 0.188758 0.249405 -0.445207 -1.448509 0.150301 0.140844 -0.222788 0.451911 -0.672051 -0.263761 -0.091008 -0.254473 0.742400 0.061909 0.189185 0.649990 -0.602201 -0.675514 -0.362318 -0.268120 -0.047735 -0.328018 0.499969 -0.500015 -0.094924 -0.336115 0.296906 -0.311246 -0.150695 -0.226612 0.143642 0.276175 0.197754 -0.095487 0.612005 0.237773 -0.256486 -0.214735 0.124978 -0.090747 0.523583 -0.644879 -0.347074 -0.242903 0.179316 -0.347069 0.292783 -0.065472 0.429186 0.110727 -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.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -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) = 3.719769 -1.381388 -1.875129 3.746754 1.040848 -1.065086 0.615703 1.187216 1.011782 -5.624499 -2.466367 5.417439 0.434100 -1.195842 -0.325649 1.682906 2.312482 2.058094 -5.485037 1.292049 0.118851 -0.130146 -2.752159 -1.164361 -0.097340 -1.489702 2.319013 1.340653 0.573670 3.516962 -1.954951 1.505607 2.740305 -0.116058 2.757995 3.130785 -0.090883 -0.975468 -0.812417 -1.839874 6.300167 2.371440 0.394213 3.087621 1.488101 4.272217 0.398946 5.303866 2.544204 -1.098252 1.559477 0.852032 -2.249508 -0.112693 -5.472217 1.372601 1.632175 0.034781 -2.859747 2.166233 -0.169465 1.220824 1.820369 0.165716 5.187061 1.413223 2.389540 3.255562 4.882925 -2.207788 0.700088 0.737258 3.353395 1.166237 3.796540 -2.036394 -2.620375 -1.548584 -0.334479 -4.489844 1.347091 -1.244596 6.450114 -3.659267 0.618690 0.899437 1.427023 3.804732 -2.312658 -0.871298 -4.516567 0.278516 -0.726925 5.646574 0.455625 1.890771 -1.222397 1.315230 -0.931764 1.195469 0.197978 -4.467300 -0.464877 -7.763362 -2.684081 -2.913240 -0.987420 -0.371853 -4.279553 0.140039 0.234167 5.019666 -5.957064 -0.684439 0.751541 -0.955672 2.736699 0.619083 -1.453331 0.145605 -0.655219 1.588333 0.295697 -1.676928 -0.277476 -1.433763 0.174060 0.624427 1.833773 0.919592 -4.743295 -0.465736 1.345349 0.940939 -0.365005 1.348662 1.166711 -3.135523 1.745370 -2.614422 2.753292 -4.186460 -1.902159 -2.430147 -3.091512 -1.812516 5.090521 2.248459 4.750410 0.438215 -0.322783 -1.001323 -5.464563 -7.459705 1.685844 -1.698703 -0.054163 0.654757 -0.165970 -0.067113 -2.798523 -0.681867 2.273157 -2.914858 -1.887480 -1.169273 3.261069 -0.483654 -1.111745 -2.078419 -0.478796 2.055429 1.636417 2.299615 -2.167983 -7.366972 -4.806636 -1.943560 3.321069 -1.911361 0.764696 -0.799840 -1.175206 -2.074275 -0.174179 -2.935668 0.902011 -1.746703 -1.531909 -4.439683 0.863996 -1.045264 -0.062674 0.284661 -3.521312 1.999872 1.986759 1.691435 -0.625781 1.081910 0.295446 -4.490466 -3.304054 0.749324 -0.728116 4.748404 2.972603 0.412571 -2.488067 -1.406423 -3.958270 2.611789 -6.161145 2.192359 1.523202 -2.759649 2.670173 -3.224962 -0.820484 -2.509706 2.283530 0.107241 -5.882416 5.329339 3.731915 -4.215632 -0.516551 -2.232507 2.203097 0.920239 4.264461 -2.953282 -1.747787 1.682709 -0.338278 -0.427632 -1.469403 1.513904 -0.252646 1.311279 -4.833841 -2.063502 3.366168 2.270779 -0.608149 -0.402294 0.503640 -1.002618 0.550428 5.053520 1.908491 1.784835 -4.259552 -8.841445 1.081970 0.205865 0.156412 1.468809 -2.403602 -1.477124 0.287714 -2.382209 3.816864 -1.018029 -0.823437 3.384759 -5.171833 -4.171117 -1.993899 -0.752165 1.310222 -1.063367 2.855806 -2.446116 -0.187950 -1.770545 2.442204 -1.572785 -1.613126 -0.159244 2.234226 2.790592 1.386589 -1.473235 4.021028 0.655081 -1.462960 -0.099480 -0.774123 -0.516314 0.987682 -5.007087 -1.127550 -0.572924 1.785754 -3.052133 3.018186 -0.050754 2.575147 0.651728 -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) = 1.574515 -0.809445 -0.263415 1.532074 0.847331 -0.309987 0.304498 0.521519 0.588779 -2.620410 -1.097732 2.396027 -0.045759 -0.424721 -0.119760 0.503772 1.330363 1.033792 -2.344517 0.470697 0.000227 0.134078 -0.963220 -0.579656 0.085454 -0.615630 1.207472 0.623276 0.455382 1.521609 -1.056067 0.435003 1.191407 0.130364 1.298874 1.429343 0.411407 -0.547107 -0.521532 -1.079722 3.077550 0.888566 0.295887 1.712955 0.863189 1.891074 0.349928 2.396118 1.838261 -0.480843 0.609286 -0.246096 -0.967192 -0.120190 -2.646314 0.838512 0.720877 0.213059 -1.453863 0.945939 0.400968 0.565397 0.676837 -0.320066 2.089101 0.492319 0.788877 1.297381 2.219038 -1.128819 0.048862 0.474902 1.802862 0.918851 1.614897 -1.236692 -0.875135 -1.429449 -0.274538 -1.990594 0.759027 -0.783370 2.628886 -1.553723 0.582870 0.702397 0.121015 1.442736 -0.678197 -0.557783 -2.199476 0.259442 0.092720 2.309928 0.159880 0.601753 -0.333980 0.427338 -0.416875 0.751581 0.425438 -1.921398 -0.257476 -3.755616 -1.130869 -1.289693 -0.309825 -0.375661 -1.711492 0.149592 0.116442 2.138877 -2.537435 -0.488869 0.345931 -0.365560 0.619735 -0.290325 -0.317938 -0.119968 -0.230034 0.705524 -0.054656 -0.963161 -0.274740 -0.637961 -0.090727 0.189492 0.980292 0.204732 -1.500173 -0.489110 0.351704 0.946697 -0.316018 0.235738 0.331742 -1.437045 0.817896 -1.100872 1.182684 -1.567068 -0.773679 -1.032901 -1.014158 -0.875863 2.922000 0.404143 2.325621 0.477633 -0.233434 -0.614246 -2.059260 -3.288693 0.976624 -0.796171 0.166199 0.587137 -0.057166 0.035286 -1.191007 -0.718490 0.700476 -1.268797 -0.833785 -0.531561 0.619121 -0.559995 -0.377291 -1.234359 0.157964 1.490730 0.488460 0.680251 -1.146594 -3.142352 -1.759064 -1.063737 1.425316 -0.946848 0.487110 -0.093930 -0.374822 -0.703761 0.019472 -1.377243 0.447354 -0.870544 -1.059277 -1.982788 0.420394 -0.712188 0.318054 0.476734 -1.566691 1.028613 0.325189 1.171760 -0.343805 0.472990 0.179406 -2.362466 -1.656506 -0.085327 -0.185817 2.029342 0.830118 0.224421 -1.303173 -0.797264 -1.496439 1.160022 -2.982989 0.870741 0.716484 -1.221933 1.082590 -1.327991 -0.067538 -1.200206 1.070896 0.367910 -2.705927 2.202837 1.560440 -1.960009 -0.477839 -1.203665 0.856419 0.421753 2.123469 -1.285544 -0.736031 0.930678 -0.192361 -0.185871 -1.059254 0.722670 0.199793 0.748925 -2.422051 -1.238814 1.282283 1.077372 -0.299836 -0.117672 0.649108 0.015282 -0.070516 2.608320 0.764889 1.057942 -1.928273 -3.990731 0.537853 1.098058 0.453452 0.980971 -1.334680 -0.661109 0.174917 -0.760872 1.697640 -0.018196 0.084554 1.602322 -2.085897 -1.741836 -0.471122 -0.555868 0.761795 -0.601659 1.339597 -1.217638 -0.240418 -1.034488 0.974478 -0.701077 -0.335903 -0.194992 0.941210 1.186725 0.846481 -0.419938 1.759606 0.280488 -0.911119 0.312214 -0.339295 0.070610 0.458988 -2.047501 -0.474511 -0.286987 0.574757 -1.274648 1.383818 -0.154142 1.098363 0.072665 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -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.609561 -1.607648 -1.105688 2.115912 0.455534 -0.171242 0.216523 0.102926 0.566951 -2.920980 -1.101790 2.210937 0.326025 -0.271311 0.037960 0.948276 1.010346 0.375449 -2.282218 0.434540 -0.095583 -0.556085 -1.415902 0.015684 -0.185724 -1.105983 1.758652 0.836118 0.072652 1.590874 -0.702487 1.058342 1.328614 -0.191200 1.225931 1.354147 0.006874 -0.315190 -0.858346 -0.436282 3.111053 1.020310 -0.145192 1.115019 0.424261 2.036402 0.252189 3.326660 1.371821 -0.512630 1.510632 0.422975 -0.833803 -0.121994 -2.908635 0.498925 0.968427 -0.202479 -1.277425 0.880762 -0.572301 0.598948 0.800247 0.642868 3.027794 0.562676 2.019811 1.601496 2.045836 -1.228020 0.264141 0.646815 1.345751 0.507389 1.953314 -1.004983 -1.476395 -0.936047 0.027942 -1.300726 0.341816 -0.611570 2.412503 -1.514866 -0.449472 0.232439 0.538233 1.935075 -1.289463 0.135249 -2.394874 0.072363 0.044861 2.886598 0.356771 0.885610 -0.582492 0.677669 -0.432974 0.634787 0.365342 -2.183265 -0.199037 -3.697055 -1.610210 -1.388556 -0.166693 -0.047616 -2.305487 0.219601 0.030106 1.797295 -2.589570 -0.099763 0.319752 -0.162521 2.792896 0.331787 -0.640977 0.052810 0.265541 0.819894 0.511869 -0.510008 0.322545 -1.323077 1.064155 0.420844 0.787092 0.397901 -2.300175 -0.064799 0.767795 0.607075 -0.000278 0.685273 0.792511 -1.496245 0.907145 -1.059416 1.408606 -2.332972 -0.860927 -1.327086 -1.535945 -0.762339 3.170067 1.332036 2.694719 0.213231 -0.873339 -0.233064 -2.865496 -4.427256 0.197352 -0.491325 -0.313248 0.365424 -0.197919 0.335476 -1.322375 0.151095 1.332545 -1.343188 -0.961563 -0.345393 0.602343 0.068116 -0.597065 -0.738185 -0.302450 0.577415 0.790404 1.756802 -0.612639 -4.419440 -2.527828 -0.893784 1.486044 -0.910756 0.328724 -0.409134 -0.798038 -1.952799 -0.039582 -1.280510 0.400139 -0.642674 -1.096503 -2.049215 0.439726 -0.389103 0.161430 0.174505 -1.819764 0.766396 0.725383 0.800642 0.099939 0.677534 0.000817 -2.168448 -1.865178 0.518091 -0.608732 2.949601 1.045823 -0.081895 -0.492371 -0.811395 -2.122930 1.177830 -3.249853 1.004215 0.879116 -1.679359 0.947804 -1.688176 -0.767563 -1.045647 1.023924 0.014138 -1.956170 2.860249 1.992886 -1.883280 -0.321208 -0.731306 1.090803 0.257272 1.963395 -1.402694 -0.646723 0.548863 0.410749 -0.170517 -0.282514 0.719895 -0.195389 0.115157 -2.430363 -1.204260 1.512758 1.132891 -0.241945 -0.424063 0.208441 -0.595830 -0.060545 2.415760 0.885744 0.729125 -1.766415 -4.568897 0.479417 -0.364917 -0.636016 0.759815 -1.724339 -0.584935 0.142575 -1.239104 1.804221 -0.415286 -0.492492 1.689192 -2.463345 -1.924248 -1.300561 -0.715237 0.207780 -0.395251 1.417875 -1.146175 0.017998 -0.813296 0.947195 -1.102234 -0.786849 0.312527 0.958345 1.106849 0.294380 -0.533322 1.816866 0.505528 -0.516719 -0.519224 -0.099185 -0.742437 1.110748 -2.544454 -0.630096 -0.216747 0.868017 -1.312066 0.878805 -0.063211 1.178489 0.282784 -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.062218 0.094594 0.062757 0.092971 0.104678 -0.040216 0.027881 -0.070983 -0.035906 -0.172259 -0.008937 0.037142 -0.035924 -0.027199 -0.001699 0.015081 0.099735 0.262918 0.200043 0.013796 0.014215 0.098586 0.013796 -0.078635 -0.002860 -0.002413 -0.029674 -0.023605 0.087952 0.125777 -0.135776 -0.013930 0.089193 0.047737 0.050600 0.101542 0.300001 -0.010235 -0.061710 -0.055282 0.217102 -0.116234 0.124929 0.134284 0.078751 0.118139 0.061253 -0.074742 0.053547 -0.046963 -0.117181 -0.095564 0.044676 -0.014399 -0.162603 0.154684 -0.068361 0.133164 -0.139571 0.082658 0.104115 0.051900 0.030713 -0.146832 0.014299 0.016972 -0.152245 0.106473 0.182880 -0.089626 -0.034604 0.013610 0.141252 0.052548 0.126025 0.108066 0.061919 -0.196639 -0.159640 -0.031477 0.137251 0.044029 0.238149 -0.148762 0.102789 0.231218 -0.047201 0.040676 0.038686 -0.100935 -0.168253 0.035718 0.013791 -0.033373 0.134557 -0.057618 -0.108642 0.023375 0.002434 0.048526 0.008921 -0.084131 -0.065968 -0.269794 -0.161477 -0.072128 -0.066270 -0.089497 -0.091119 -0.080717 0.192862 0.370735 -0.212896 -0.003521 0.040490 0.006405 -0.239666 -0.265003 -0.011873 0.056602 -0.045983 -0.032267 -0.072157 -0.074220 -0.080290 0.041887 -0.118261 -0.091897 0.112089 -0.051725 0.107613 -0.106967 -0.093764 0.076036 -0.068130 -0.070450 -0.029028 -0.126706 0.070350 -0.047045 0.055549 0.031555 0.016807 0.006849 -0.146560 -0.060425 0.292638 -0.137269 0.166964 -0.003650 -0.115961 -0.128191 -0.056048 -0.173548 0.207881 -0.063973 0.060993 0.154137 -0.014813 -0.043151 -0.065764 -0.120655 0.124052 -0.113246 -0.028198 0.036962 -0.036155 -0.159847 -0.039997 -0.287844 0.052742 0.242678 0.055757 -0.104990 -0.163208 0.125196 -0.012780 -0.106109 0.086409 -0.068920 0.114071 0.045898 -0.017554 0.002970 0.073926 -0.111634 0.044877 -0.069573 -0.059209 -0.157514 0.004625 -0.095685 -0.133630 0.085321 -0.092968 0.134453 -0.106527 -0.150542 -0.066299 -0.046674 0.041681 -0.124170 -0.113879 -0.070760 0.011659 -0.096021 0.086261 0.133382 -0.238406 -0.083850 -0.033803 0.077813 -0.194578 0.018570 0.103146 -0.016679 0.089891 -0.084435 0.003262 -0.039597 0.095607 0.079870 -0.251807 0.018758 0.085013 -0.135645 -0.048194 -0.070394 0.053793 0.061779 0.228859 -0.101970 0.036052 0.145317 -0.064686 -0.005660 -0.164332 0.056950 0.019684 0.145410 -0.157839 -0.069091 0.009330 0.130602 -0.034485 0.015837 0.122293 0.061545 -0.053088 0.179602 0.084944 0.131426 -0.105873 0.024297 0.061989 0.027976 0.165033 0.158794 -0.028948 0.065960 0.071641 -0.072498 0.106306 -0.083881 0.050271 0.138740 -0.110994 -0.113774 0.176204 -0.064162 0.128692 -0.165981 0.208070 -0.117232 -0.057285 -0.101073 0.072313 -0.041585 0.086399 -0.026315 0.035493 0.081287 0.114826 0.032349 0.136371 -0.036528 -0.149825 0.156014 -0.045000 0.161345 -0.045472 -0.150346 -0.052302 -0.024464 0.026257 -0.098952 0.198513 -0.187423 -0.030029 0.067528 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -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.644075 -0.470409 -0.537954 0.985011 0.073884 -0.051809 0.071615 -0.132789 0.000000 -1.230003 -0.325896 0.963924 0.191763 -0.059766 0.040706 0.620372 0.306922 0.010555 -0.642191 0.206455 0.006138 -0.328790 -0.544786 0.144500 -0.099346 -0.633747 0.678251 0.355940 -0.037484 0.709500 -0.312291 0.577368 0.652339 -0.197161 0.332207 0.524781 0.053006 -0.089466 -0.490000 -0.008900 1.178757 0.085164 0.053206 0.297605 0.068699 0.887750 -0.026861 1.513041 0.644951 -0.286579 0.858858 0.502346 -0.305599 0.016839 -1.069636 0.217272 0.270302 -0.043223 -0.469094 0.319139 -0.577407 0.274570 0.337557 0.460081 1.205225 0.468437 0.903997 0.781423 0.935480 -0.609211 0.079127 0.446570 0.378138 0.202853 0.937730 -0.346998 -0.567128 -0.271294 -0.007527 -0.203665 0.040700 -0.178963 1.347018 -0.654019 -0.552320 0.159792 0.394296 0.978638 -0.623838 0.412275 -0.896888 0.086275 0.034978 1.182522 0.144758 0.343652 -0.412056 0.240792 -0.184792 0.330759 0.121456 -0.857892 -0.286300 -1.088521 -1.042207 -0.565848 0.031550 0.040351 -1.291197 0.240711 0.393842 0.673788 -1.141951 0.048250 0.208408 0.188928 1.555493 0.699186 -0.502852 -0.119236 0.303738 0.411689 0.277311 -0.027780 0.295010 -0.624156 0.463087 0.189131 0.344191 0.004861 -1.198110 -0.070168 0.253290 -0.011125 0.102544 0.278852 0.482282 -0.645980 0.451725 -0.267339 0.623990 -1.179228 -0.521321 -0.666801 -0.720368 -0.282901 1.309167 0.843102 1.202118 0.068688 -0.539922 -0.164636 -1.308752 -1.454669 -0.276644 -0.244824 -0.200826 0.275128 -0.123891 0.247721 -0.432140 0.249793 0.559477 -0.630432 -0.395641 -0.125906 0.277318 0.032030 -0.254960 -0.515268 -0.213765 -0.003352 0.288809 0.909821 -0.054707 -1.878983 -1.248523 -0.502612 0.633494 -0.371756 0.186517 -0.284800 -0.385474 -0.761656 0.034600 -0.502943 0.035695 -0.103374 -0.531364 -0.913247 0.374090 -0.126968 -0.376189 -0.015720 -0.851680 0.241973 0.187425 0.032485 0.264300 0.226050 -0.244381 -0.971836 -0.840167 0.221667 -0.325386 1.029201 0.633589 -0.010618 -0.214881 -0.491111 -0.978117 0.417282 -1.351233 0.371936 0.461981 -0.620752 0.391055 -0.816222 -0.267205 -0.495260 0.413470 -0.055256 -1.069360 1.319805 0.921482 -0.770978 -0.190321 -0.239280 0.524705 0.140330 0.828138 -0.560434 -0.126224 0.178131 0.429907 -0.096172 0.182583 0.413165 -0.278365 -0.028174 -0.831030 -0.476261 0.605701 0.671179 -0.126758 -0.323654 0.099161 -0.339712 0.066669 0.757414 0.454557 0.182178 -0.547237 -1.899694 0.191691 -0.573106 -0.525036 0.490739 -0.753092 -0.234293 0.181065 -0.558833 0.875843 -0.718673 -0.075522 0.720225 -1.066196 -0.879312 -0.524072 -0.384764 -0.097420 -0.175064 0.667002 -0.521512 -0.097262 -0.218922 0.308731 -0.632611 -0.278101 0.218929 0.309872 0.554964 0.237036 -0.149551 0.797850 0.389980 -0.198451 -0.364796 0.070764 -0.334021 0.366527 -1.033606 -0.191457 -0.042804 0.369481 -0.522388 0.334245 -0.026310 0.320672 0.082534 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = 3.092271 -1.683421 -2.110250 6.635747 0.371501 1.782010 0.841345 0.322479 0.972805 -9.547331 -3.867143 7.071689 0.880555 1.417347 -0.184674 2.024034 2.522473 1.675116 -9.222328 -0.789096 1.643608 -0.267202 -0.021629 -0.227801 0.214591 -2.462064 5.266850 1.655758 1.223854 5.578144 -1.598632 4.695184 4.893467 0.471723 2.159545 3.241331 -1.943902 -0.913677 -3.829695 -3.668408 7.218282 1.822811 0.574581 3.747448 -1.571460 6.026000 1.551817 4.828910 5.257089 -2.380609 2.074342 1.573970 -2.530134 -0.897324 -6.177911 0.629487 0.492689 0.415274 -1.486097 1.819710 -0.722865 1.541056 1.851033 -0.203545 6.466651 1.507597 5.127025 5.659036 4.106480 -4.531454 1.456815 0.469007 0.283651 1.498650 4.621821 -2.989046 -3.828574 -0.321854 -1.209257 -5.599805 -0.796626 -1.638061 7.222337 -3.983774 -1.497607 -1.246133 1.204946 6.107403 -1.845158 1.311252 -6.293336 -0.301214 0.659926 4.799124 1.459752 1.426989 -1.331156 0.749858 -1.135172 1.009955 2.166406 -5.371676 1.414591 -7.301206 -2.265648 -4.133492 1.938047 2.574720 -5.303009 1.812073 -2.798478 5.609727 -8.226723 -1.683019 0.483022 1.355400 5.226507 0.578839 -1.040830 -0.596009 1.361363 2.269738 2.192643 -3.476671 1.981547 -1.143051 -0.677543 0.336896 2.527636 1.970746 -5.941381 -3.071937 1.733315 0.673720 1.296116 3.549525 4.119918 -0.516443 2.529034 -3.163277 4.362328 -4.926233 -2.377355 -2.076183 -3.073498 -3.622516 7.472626 4.052911 5.396727 -0.292206 -1.419578 -0.241464 -6.588401 -8.586983 0.771053 0.323035 -0.413105 3.340565 -1.076560 2.659200 -5.462067 2.169353 3.181613 -2.376774 -3.224178 -0.030418 -0.714645 0.755515 -1.446395 -1.728580 -0.197752 -1.085216 0.572380 6.594016 -1.081624 -9.874798 -8.555669 -2.584260 5.002005 -3.544661 -0.166425 -2.449863 -1.871975 -2.476866 -1.304433 -4.347500 0.162972 0.302496 -3.717108 -6.909063 2.450812 -1.197612 -0.406594 2.749723 -4.987413 1.375082 3.412492 2.530042 0.531279 1.339524 -0.416780 -3.688830 -2.757242 1.487963 -3.910689 4.822061 2.467049 -1.044538 -4.206851 -3.144031 -4.012148 3.388594 -4.344975 4.123664 0.266116 -2.263441 1.318695 -4.500615 0.514924 -2.889235 1.921739 1.224859 -10.045211 5.346249 3.577189 -3.784006 -0.168576 -1.502098 2.813553 0.056075 3.068947 -4.169888 -3.579248 0.968765 0.458304 0.319973 -1.542834 1.130559 -0.842173 -2.197422 -5.624445 -2.421439 5.133423 1.562557 -0.775416 -0.079293 3.858156 -1.609035 2.236614 5.337048 4.017319 1.203886 -4.540543 -11.364524 1.886538 1.982097 -0.586036 0.786368 -4.438864 -1.717837 2.189412 -4.054162 4.342842 -2.096784 -1.983455 4.960218 -6.007899 -4.507364 -4.466191 -2.447563 1.304616 0.300596 1.599329 -1.919741 0.946557 -0.643857 1.170671 -2.338742 -3.129085 2.400491 3.464238 5.231141 0.304012 1.301937 5.323792 2.238162 -1.828260 -0.964001 -0.266554 -3.609800 0.387382 -8.511118 -0.673052 1.996872 2.263955 -4.112971 0.449459 -0.488478 1.255461 -0.417696 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 1.183229 -0.571596 -0.325520 1.726354 0.094314 0.251560 0.386282 0.550701 0.119419 -3.005939 -1.668598 0.948358 0.171372 0.081359 0.537526 0.615467 0.864733 0.452257 -3.355221 0.002855 0.755314 -0.059874 -0.129647 0.078923 0.118212 -0.944834 0.100876 0.661923 0.152241 1.802421 -0.678640 1.271456 1.534911 0.105986 0.685171 1.190527 -0.666785 -0.331781 -0.139744 -0.442718 2.546648 0.573104 -0.002873 0.883010 0.012281 1.964924 -0.341732 2.101717 0.908868 -0.795296 1.490613 -0.904219 -0.852580 0.210144 -1.922489 0.276084 1.164536 0.545997 -0.702779 0.945690 -0.819773 0.627057 0.575273 -0.471429 2.287347 1.039743 1.507853 1.501603 1.599842 -1.210897 0.470068 0.164977 0.253837 0.142748 0.454019 -1.084557 -0.401912 -1.798925 -0.062076 -2.232512 -0.094122 -0.579140 2.570929 -1.326645 -0.264759 0.381686 0.218927 1.878584 -0.865100 0.358073 -1.907241 0.074088 0.197629 1.628645 0.105439 0.398136 -0.313039 0.417108 -0.176075 0.470044 0.191518 -1.411010 -1.088873 -3.054501 -1.293390 -0.908832 0.457490 0.421038 -2.136789 0.447438 0.372310 1.063239 -2.607224 -0.342122 0.308617 0.689339 0.659898 1.037864 -1.251224 -0.611783 0.133750 1.077315 0.758169 -0.927595 0.696189 -1.748070 -0.064356 0.412023 0.865987 0.193378 -1.702960 -0.724870 0.461775 -0.155886 0.070722 0.989840 1.035343 -0.154480 0.975986 -1.189139 1.480467 -2.192320 -0.574781 -1.135812 -1.200381 -0.788504 2.871692 1.827936 1.275169 0.512878 -0.808280 -0.134200 -2.250465 -2.571931 -0.003020 -0.142200 0.713292 0.457068 -0.322768 0.488289 -1.253299 0.404636 0.381419 -0.946050 -0.755318 -0.487007 0.630167 0.166546 -0.697223 -1.008735 0.124856 0.601442 -0.645434 1.501860 -0.447804 -1.950936 -2.463708 -1.068850 1.574275 -0.895563 0.231263 -0.711661 -0.012000 -1.461119 0.086528 -1.268838 -0.167913 0.004494 -1.421938 -2.156557 0.624503 -0.334068 -0.214518 0.545867 -1.472837 0.339000 1.291484 1.324303 0.427300 0.543313 -0.145190 -1.484474 -1.550651 -0.134947 -0.985221 1.721611 1.197234 -0.305061 -1.052567 -0.828603 -1.456151 1.518180 -1.287264 0.932783 -0.015443 -0.991548 0.768164 -1.308693 -0.254634 -1.299926 0.578703 0.232033 -3.340750 1.944280 1.168433 -1.497862 -0.396325 -1.473512 1.062661 0.232702 1.494429 -0.867178 -0.514862 0.284987 0.078827 -0.004275 -0.753627 0.730037 -0.323374 -0.288967 -1.833370 -0.830644 1.797190 0.890242 -0.258010 0.365074 1.048209 0.305739 0.823667 1.733596 0.860769 -0.304234 -1.144707 -3.852876 0.565616 1.502375 -0.116845 0.348370 -1.552822 -0.821076 0.200244 -0.641547 1.600618 0.619475 0.008901 1.601127 -1.445702 -1.575741 -1.306203 -0.152682 0.250896 -0.468946 0.349374 -0.639909 0.235915 0.110094 0.655940 0.069970 -1.401346 -0.952604 0.613789 1.719243 0.200212 -0.049524 1.787320 0.595416 -0.678325 -0.387425 -0.062307 -0.585764 0.535901 -1.656433 -0.459799 0.108692 0.573545 -1.326585 0.634315 -0.036835 0.520187 0.283431 -PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/find-parity.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = 0.396000 -1.014620 0.022985 1.189002 0.135651 0.332804 0.127561 -0.038377 0.047243 -2.065137 -0.478282 1.357362 -0.092378 0.223804 -0.170602 0.105441 0.593125 0.128485 -1.648703 -0.125155 0.006845 -0.196882 0.035067 0.029666 0.037778 -0.462411 1.322127 0.580445 0.192861 0.797950 -0.322737 0.668799 0.793031 0.226397 0.474649 0.519684 -0.015963 -0.252763 -0.753208 -0.572637 1.378999 0.151550 0.061447 0.566332 0.051215 0.887959 1.042847 1.165185 2.240257 -0.248366 0.466476 0.018770 -0.410541 -0.276789 -1.342994 0.000572 -0.147068 0.336000 -0.406066 0.272996 0.106802 0.208579 0.155038 -0.089731 1.452632 -0.077994 1.359986 1.137715 0.488759 -0.782552 -0.069823 0.324612 0.201451 0.531193 0.771680 -0.826683 -0.514743 -0.596990 -0.118599 -1.101193 -0.387386 -0.278999 0.925936 -0.527484 -0.297700 -0.057337 -0.184187 1.262461 -0.102939 0.059730 -1.273085 0.023908 0.926377 1.038646 0.310702 -0.019693 0.162105 0.062753 -0.101454 0.424906 0.898472 -0.851170 0.172723 -1.331008 -0.270871 -0.639173 0.292824 0.285606 -0.949343 0.324457 -0.011260 0.344461 -1.393547 -0.322655 0.302263 0.050630 1.286099 0.012858 0.186848 -0.182227 0.291735 0.487740 0.547119 -0.524463 0.210624 -0.233123 0.423892 0.004291 0.451067 0.225702 -1.487711 -0.671695 0.249590 0.415638 0.061129 0.238162 0.419028 -0.030508 0.377947 -0.299652 0.707245 -0.822420 0.005130 -0.334605 0.119923 -0.496120 1.762207 0.699822 1.219871 0.213142 -0.339036 0.089390 -1.108149 -2.026792 0.222328 0.087136 -0.088727 0.512914 -0.129497 0.495639 -0.609696 0.135522 0.246179 -0.351400 -0.472762 0.042338 -1.574033 0.094693 -0.155639 -0.351455 0.208348 0.139690 -0.059943 1.196371 -0.338362 -2.455402 -1.426420 -0.501479 0.629642 -0.557450 -0.072843 -0.036432 -0.384376 -0.405737 0.009865 -0.595114 -0.076030 -0.113393 -0.998778 -0.989201 0.439469 -0.337875 0.285499 0.513184 -0.717926 0.084405 -0.315993 0.659504 0.106448 0.257814 -0.058405 -0.870667 -0.639519 -0.021060 -0.814709 1.072327 -0.128808 -0.153064 -0.860211 -0.467725 -0.760840 0.502115 -0.949495 0.644998 0.092648 -0.755223 0.153629 -0.406454 0.205474 -0.070599 0.439255 0.410283 -1.990082 1.035678 0.801843 -0.543359 -0.264391 -0.218603 0.182719 0.083999 0.657933 -0.679373 -0.390424 0.155164 0.191602 0.051209 -0.135092 0.223708 0.215883 -0.354544 -1.220268 -0.881675 0.536531 0.276520 0.009686 0.000196 0.719321 0.164326 -0.126453 1.212513 0.380296 0.452572 -0.371619 -2.402718 0.366517 0.749825 -0.033368 0.663436 -1.250873 -0.270064 0.279520 -0.706499 0.612453 -0.654690 -0.250083 0.746632 -1.118146 -0.548498 -0.661451 -0.618911 0.129436 0.097872 0.551137 -0.112536 0.094453 -0.339798 0.044222 -0.539416 -0.033326 0.340879 0.476948 0.548953 0.300370 0.287168 0.679414 0.162141 -0.461213 -0.153421 -0.023868 -0.498187 0.610160 -1.563404 -0.167123 0.140889 0.304258 -0.546664 -0.111551 0.023078 0.348209 -0.310159 -PE-benchmarks/find-parity.cpp__main = 0.679004 -0.224011 -0.040991 0.829563 -0.342782 -0.053319 0.318633 0.703729 -0.162151 -1.861120 -1.099278 0.140290 0.157807 -0.091973 0.733762 0.550504 0.259158 0.186221 -2.688247 0.173673 0.940231 0.206000 0.322899 -0.041824 0.166994 -0.648955 -0.838008 0.388164 -0.011953 1.289570 -0.442024 0.863421 0.957038 -0.028614 0.128410 0.859939 -0.670644 -0.235413 0.485640 0.241011 1.503977 0.153479 -0.173015 0.072323 -0.039400 1.275832 -0.688181 1.373726 0.169665 -0.658500 1.373841 -0.780964 -0.818324 0.331194 -0.861835 0.143668 1.095253 0.971528 -0.319788 0.711867 -0.927570 0.309221 0.394379 -0.346101 1.689684 1.051205 0.978100 1.029790 1.094073 -0.666842 0.449398 -0.093952 -0.229199 -0.506619 -0.048507 -0.915040 0.399777 -2.494303 0.183012 -1.944500 -0.330713 -0.139774 1.985400 -1.014703 0.047664 0.686187 0.269694 1.499168 -0.594910 0.499422 -1.097936 0.074400 0.362775 1.108246 -0.243073 0.072055 -0.225158 0.314740 -0.111336 0.272528 0.138200 -0.614847 -1.691357 -1.853257 -1.107397 -0.366988 0.324753 0.429630 -1.894461 0.290721 1.259419 -0.187322 -2.000743 -0.085115 0.431850 0.853994 -0.121207 1.528291 -1.284697 -0.527136 -0.049691 0.982199 0.537693 -0.426196 0.538693 -1.733642 -0.084044 0.548290 0.502447 -0.119279 -1.377498 -0.537448 0.300419 -0.616688 0.135932 0.794373 0.757228 0.126993 0.643207 -1.035180 1.062192 -1.728245 -0.113451 -0.862293 -0.563274 -0.362759 1.443932 1.489189 0.065570 0.458909 -0.880135 0.034442 -1.540229 -1.097005 -0.342316 -0.223010 0.874797 0.133351 -0.263294 0.204119 -0.419492 0.476223 -0.269106 -0.720038 -0.354488 -0.559643 0.317019 0.204495 -0.564395 -0.940850 0.073114 0.581488 -0.981020 0.867450 -0.109541 -0.303909 -1.850759 -0.858502 1.098927 -0.435407 0.381099 -0.696068 0.286508 -1.145572 0.283022 -0.700702 -0.226466 0.254981 -1.001115 -1.426128 0.368724 -0.076128 -0.575252 0.148314 -0.839652 -0.013443 0.723912 0.648317 0.454349 0.307731 -0.159643 -1.034184 -1.323344 -0.307194 -0.684530 0.888899 0.993265 -0.111555 -0.836013 -0.463012 -0.887124 1.272240 -0.835790 0.554350 -0.202374 -0.670392 0.763237 -0.832330 -0.378212 -1.080346 0.355996 0.047576 -2.542830 1.514903 0.630450 -0.888465 -0.246413 -1.293792 0.749562 0.371084 0.983718 -0.343969 -0.061075 0.032465 0.084072 -0.055504 -0.490189 0.579749 -0.538972 -0.035624 -0.965255 -0.418780 1.223274 0.764722 -0.102990 0.706808 0.683471 0.439775 0.593035 0.829248 0.436126 -0.800607 -0.337438 -2.126337 0.420661 1.562827 -0.015155 0.358303 -1.160486 -0.569775 0.020247 0.217866 1.142910 0.959731 0.370485 0.941863 -0.782936 -1.118593 -0.859718 0.348928 -0.045383 -0.322778 -0.035090 -0.138716 0.189454 0.686619 0.479473 0.494546 -1.257687 -1.430363 0.188097 1.577856 0.265949 -0.306124 1.210408 0.397421 -0.334457 -0.377730 -0.044783 -0.177144 0.346391 -0.214237 -0.183423 0.086120 0.385525 -0.937805 0.597667 0.039799 0.039249 0.185384 -PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.463732 0.083741 -0.193205 -0.677317 -0.299244 0.542272 -0.320671 0.206297 -0.304142 -0.620527 -0.602738 -0.300468 0.190122 -0.185196 0.392823 0.483878 0.610631 0.443871 -1.266131 -0.040141 0.238662 -0.457513 -0.195197 0.767580 0.321037 -0.370912 -1.134484 -0.138378 -0.414976 0.702198 0.775304 0.060534 0.612789 -0.997641 0.325038 0.904210 0.357873 0.297343 0.536799 0.237156 0.774191 -0.172197 0.255361 -0.719071 -0.370572 0.733478 -0.413961 0.831082 -0.050766 0.586233 0.498880 -0.855736 -0.284690 0.828707 -1.338655 -0.582741 0.065555 -0.297807 -0.587443 0.567464 0.039801 0.294433 0.086700 0.080064 0.882239 -0.393693 0.045682 0.352936 0.763308 0.067837 0.443459 0.354288 -0.682600 -0.738999 -0.217448 -0.196841 1.232817 -0.845755 0.378257 -0.878590 0.300825 -0.565010 1.025036 -0.313289 -0.350561 0.629115 -0.732503 0.971962 -0.335599 0.498466 -0.043428 -0.229453 0.160147 0.009899 0.309335 0.754464 0.344013 -0.596292 -0.295224 -0.304396 -0.834166 -0.530075 -0.874119 -0.711571 -0.414980 -0.341845 -0.240503 0.180459 -0.504012 -0.649555 0.984794 0.141790 -0.283174 0.732117 -0.078828 1.017693 -0.619732 0.814136 -1.367235 -0.203801 0.379400 0.834089 0.680002 0.167883 -0.159790 -0.452932 0.530772 0.534411 -0.106443 -0.751285 -0.019094 -0.763171 0.649139 -0.076938 -0.373768 0.408617 0.128448 0.008638 0.075198 -0.204035 0.480711 -0.623854 -0.623129 -0.116557 -0.180351 -0.092102 1.130364 0.288273 -0.464458 -0.041747 -0.251703 0.652526 -0.415861 -0.652976 0.210211 0.243814 0.124369 -0.073543 -0.334524 0.693953 -0.343208 0.575762 -0.320262 -0.445382 -0.346464 0.677619 0.167050 0.454205 -0.471614 -0.272982 -0.728445 -0.098960 -0.454960 -0.022508 -0.112718 0.401545 0.086768 -0.160138 0.774895 -0.173246 0.283002 0.197831 0.087123 -0.876873 -0.067425 -0.286636 -0.360442 0.274070 -0.691661 -0.271384 -0.686214 0.119476 -0.075789 0.100394 -0.837173 0.181853 0.030228 0.031844 -0.265567 -0.467839 -0.823269 -0.299982 -0.478796 -0.202285 -0.163821 0.626185 0.166482 -0.026260 -0.176414 0.309941 0.620958 0.145056 -0.177790 0.519141 -0.208814 -0.801508 0.318515 -0.368884 -0.454049 0.309767 0.347997 -0.200306 -1.072828 0.645480 0.851672 0.014165 -0.748857 0.122808 -0.525412 -0.119514 0.457662 -0.131765 0.070161 0.192620 0.095955 0.082535 0.324399 0.515627 -0.399458 0.179795 -1.169243 0.301007 1.071368 0.328412 -0.170910 0.325204 0.759159 0.596637 0.541475 0.920751 -0.016337 -1.032743 0.020411 -1.160423 -0.029390 0.827515 -0.571472 0.235354 0.581286 0.171039 -0.400609 -0.161832 0.775523 0.773995 0.707091 0.201153 0.650769 -0.724818 -0.645904 0.587363 0.152091 0.451865 -0.161658 -0.586258 -0.442960 -1.025946 0.172157 0.413199 -0.484115 -0.482648 -0.018773 0.462093 0.571911 -0.143169 0.446012 0.387523 0.187309 0.010767 -0.208423 0.589249 0.772698 0.147218 -0.455299 -0.044571 1.018715 -0.294903 0.617470 0.133855 0.680876 0.265740 -PE-benchmarks/birthday-paradox.cpp__main = 0.052016 0.096564 0.067602 -0.049789 -0.065423 0.096471 0.017946 0.129891 -0.215573 -0.431703 -0.413886 -0.443190 0.016375 -0.072316 0.296546 0.074602 0.160085 0.237849 -0.603927 -0.008129 0.271006 -0.068312 0.095339 0.181761 0.066542 -0.186118 -0.695613 0.099500 -0.095245 0.368563 0.061242 0.133116 0.302055 -0.094716 0.068209 0.350299 0.025536 0.007495 0.351365 0.162174 0.397916 -0.098608 0.033221 -0.224235 -0.058657 0.361723 -0.270931 0.174237 -0.153041 0.005487 0.333088 -0.670203 -0.075173 0.267607 -0.387701 -0.101612 0.217193 0.201828 -0.179062 0.263654 -0.254700 0.123394 0.056113 -0.290311 0.406312 0.095856 0.020296 0.169931 0.304606 -0.105315 0.121700 0.055291 -0.225240 -0.302612 -0.382933 -0.001415 0.503329 -0.924254 0.054851 -0.603148 -0.002794 -0.064693 0.500656 -0.187817 -0.044996 0.379491 -0.204622 0.365885 -0.159857 0.133636 -0.216304 -0.037404 0.103454 -0.059009 0.126052 0.031804 0.069348 -0.090915 -0.011357 0.022321 -0.332671 -0.124455 -0.709650 -0.620504 -0.313595 -0.045818 0.003141 0.019557 -0.391982 -0.176148 0.670903 0.094937 -0.337539 0.123976 0.081288 0.415666 -0.648142 0.293875 -0.645420 -0.151911 0.045603 0.325579 0.331712 -0.037436 0.060518 -0.514238 0.061723 0.104020 0.079030 -0.237436 0.024875 -0.297047 0.149977 -0.172858 -0.098910 0.120526 0.073947 0.187472 0.131728 -0.193082 0.299097 -0.369065 0.042823 -0.169766 -0.176843 -0.042688 0.630026 0.432682 -0.200606 0.150453 -0.252867 0.167065 -0.241489 -0.279637 0.040503 0.032562 0.356756 -0.074042 -0.134965 0.166026 -0.063892 0.160136 -0.170610 -0.196533 -0.103403 0.086845 0.163113 0.130069 -0.222570 -0.336783 -0.068797 0.238167 -0.433290 -0.017244 -0.129385 0.489280 -0.117965 -0.237592 0.325217 -0.094106 0.092961 -0.059280 0.155113 -0.406702 0.150951 -0.167780 -0.196741 0.102762 -0.344269 -0.288624 -0.111520 -0.014782 -0.204101 0.092226 -0.256947 0.036727 0.205087 0.110603 0.053763 -0.070046 -0.182173 -0.092143 -0.304451 -0.228219 -0.109154 0.112346 0.312166 0.030396 -0.274323 -0.017590 0.042469 0.327275 0.056506 0.137702 -0.127497 -0.303191 0.217630 -0.185633 -0.165416 -0.016304 0.115482 0.022585 -0.782511 0.197086 0.261900 -0.141405 -0.247795 -0.345421 -0.028856 0.075222 0.328011 0.015554 0.154897 0.059030 0.020039 0.012663 -0.081511 0.211966 -0.141611 0.038879 -0.389273 -0.029230 0.401458 0.229363 -0.033140 0.250862 0.285979 0.467104 0.271174 0.308399 0.001843 -0.459899 0.043899 -0.490136 0.101027 0.641142 -0.014128 0.147255 -0.012062 -0.040950 -0.139291 -0.020656 0.346699 0.512506 0.173072 0.227608 0.222002 -0.292375 -0.236316 0.291440 0.052678 -0.116856 -0.002818 -0.154211 -0.058173 -0.086609 0.075505 0.344134 -0.301686 -0.645845 -0.043100 0.310849 0.189490 -0.057261 0.289867 0.078236 -0.116100 -0.049419 -0.048278 0.176411 0.250098 0.088747 -0.205219 -0.027203 0.247150 -0.176461 0.230235 -0.038698 0.073051 0.223105 -PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = 1.270824 -0.972825 -0.749960 3.370262 0.418748 0.553537 0.379972 -0.395085 0.546830 -4.026222 -1.651190 2.678625 0.385500 0.353602 -0.194083 0.894283 1.240079 0.834579 -3.911999 -0.184008 0.563196 -0.127756 -0.079177 -0.392482 0.008627 -1.270889 3.136011 1.161464 0.429425 2.440908 -0.794597 1.742633 2.166487 0.128950 1.090439 1.738537 -0.666657 -0.118922 -1.970449 -1.220337 3.406296 0.682996 0.401093 1.636352 -0.252135 2.848115 1.619937 1.915057 2.867869 -0.946810 0.983142 1.679631 -0.975714 -0.923405 -3.079549 0.324328 0.971349 0.454616 -1.086985 0.935625 -0.119901 0.710978 0.982382 0.357002 3.015561 0.456780 2.439802 2.365785 2.263120 -2.195242 0.452826 0.397784 0.916776 0.753765 2.569025 -2.108155 -2.401966 -0.033322 -0.822083 -2.622375 0.264406 -0.378863 2.942237 -1.748873 -0.790921 -0.450354 0.198608 2.649249 -0.869751 0.103729 -2.705483 0.075739 -0.214346 2.937471 0.709026 0.497158 -0.243103 0.599936 -0.433865 0.762246 1.011843 -2.763982 1.092108 -4.078011 -1.503113 -2.116837 0.918297 0.641592 -2.424686 0.653536 -1.415724 1.755603 -3.720284 -0.714997 0.534900 0.688734 1.966663 -1.571973 -0.171563 -0.260880 0.528942 1.331705 1.195362 -1.615154 0.687082 -0.324338 -0.010794 0.335348 1.138254 0.624084 -1.726512 -1.358893 0.260578 0.845720 0.463114 1.117548 1.498545 -0.602609 1.214527 -1.485142 2.298710 -2.661352 -0.800989 -1.261355 -1.124902 -1.594757 2.336712 0.992959 2.628835 -0.513942 -0.651770 0.045765 -3.118572 -3.966617 0.437835 0.133891 -0.435925 1.461133 -0.533925 1.135805 -2.291502 0.512465 1.818101 -1.165447 -1.482840 -0.027004 -0.268575 0.307395 -0.807122 -0.880367 0.015833 -0.147893 0.757818 2.920114 -0.668638 -4.810688 -3.629308 -1.327232 2.279643 -1.669260 -0.096260 -0.979867 -1.131925 -1.318701 -0.003616 -2.181873 -0.002164 -0.067996 -1.513247 -3.116384 0.920600 -0.752347 0.371852 1.182244 -2.572620 0.702144 1.195974 1.088369 0.255470 0.680136 0.021353 -2.305338 -1.365308 0.579823 -1.351352 2.288430 0.774913 -0.140967 -1.885102 -1.376054 -1.703183 1.042879 -1.548764 1.645480 0.406631 -1.205535 0.784472 -1.966869 0.886656 -1.218857 0.770794 0.604324 -4.435116 2.993520 2.250378 -1.912430 -0.282723 -0.372511 1.178139 -0.248672 1.600236 -2.217847 -1.705768 0.583766 0.119779 0.052020 -0.844615 0.573449 -0.178727 -0.881024 -2.688823 -1.317166 2.088646 1.001232 -0.350624 -0.263804 1.508924 -0.942722 0.373974 2.706583 1.495292 1.142067 -2.194784 -5.534981 0.818074 0.311355 -0.125844 0.839596 -1.418152 -0.835286 1.045323 -1.066815 2.255065 -0.194547 -1.010210 2.429124 -2.661927 -2.248287 -2.082678 -1.456176 0.787701 -0.179125 0.738607 -1.493185 0.167454 -0.905379 0.548458 -1.410506 -0.842960 1.445611 1.587980 2.385627 0.333675 0.308222 2.539336 0.812844 -0.935839 -0.511069 -0.029051 -1.668145 0.708578 -3.213891 -0.444265 0.639026 1.225419 -1.723656 0.382966 -0.642561 1.075036 -0.125857 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 4.564224 -2.111490 -3.981648 9.702071 -0.052100 0.787302 1.390436 0.257353 0.523203 -13.324320 -5.832988 6.652082 2.007731 0.972472 0.110301 3.457993 2.454827 2.906787 -13.681120 -0.319737 3.131065 -0.044275 -0.802820 -0.882917 0.020235 -3.463447 4.762748 2.138403 0.933335 8.089455 -2.535604 6.375136 7.422239 -0.217768 2.485681 5.092516 -2.604199 0.004349 -2.989562 -2.444218 10.076784 2.887211 0.406814 3.393197 -1.581668 8.460416 2.190851 8.451196 2.208049 -3.565496 4.270075 0.708244 -3.277261 -0.517271 -8.054040 1.282671 5.000085 3.627309 -2.520730 3.487654 -2.441832 2.544762 3.310600 0.384485 10.402965 3.689622 7.565276 7.569777 7.193625 -5.671072 2.750815 -0.179049 0.577166 -1.075058 6.905921 -5.726738 -5.446058 -1.366650 -0.998562 -10.247775 0.193116 -0.424463 12.300737 -6.431285 -1.945457 -0.158177 3.338892 9.277785 -3.821789 1.821544 -7.985822 0.072503 -1.511351 11.473737 1.729683 2.331133 -2.648732 2.459735 -0.675123 1.116040 1.670220 -7.078604 0.077187 -12.562099 -5.001244 -5.326971 1.776358 3.171354 -9.390150 0.871870 -1.792883 5.615219 -13.307292 -1.012543 1.474628 2.866312 7.841886 0.612563 -3.998461 -0.019749 0.125523 3.145213 3.294375 -4.853008 2.542608 -3.800160 -0.146742 1.433558 2.958335 1.795842 -10.394779 -2.635080 1.182454 -1.123856 1.410857 4.935884 5.791496 -1.599782 3.934862 -5.953053 6.119533 -9.767132 -2.318996 -3.408362 -7.915545 -4.177781 8.580994 5.880646 6.093353 -1.481723 -3.049171 -0.581870 -11.286493 -13.252873 0.530839 0.382103 0.509295 3.178269 -1.744352 2.275987 -7.048177 2.883247 5.681003 -3.772678 -4.103539 -0.850961 5.402126 1.077384 -2.997271 -2.742538 -0.849389 -0.297067 0.647352 8.983587 -1.692268 -12.174529 -13.243652 -3.797131 7.250304 -4.198931 0.271499 -4.262736 -1.911096 -6.445819 -0.251128 -5.895766 0.639068 0.476854 -4.015191 -10.102124 2.572112 -1.269632 -1.133425 2.444684 -7.344441 1.688138 6.198870 3.176062 1.052442 1.443302 0.676643 -6.326186 -5.176494 2.130083 -5.217337 6.578557 4.574791 -0.569526 -4.423452 -3.596284 -6.803585 4.338231 -3.993741 4.783320 0.073874 -3.098555 3.294266 -7.144523 0.883344 -5.120799 2.011632 0.615365 -13.231885 10.211911 5.349554 -5.376989 -0.084535 -2.630034 4.564110 0.012619 4.872464 -5.875162 -4.657003 1.413731 -0.734655 0.033542 -2.159878 2.153795 -2.319999 -1.941890 -7.341844 -2.825969 6.986488 3.335142 -1.307194 0.781740 4.013171 -3.220201 2.451334 7.339665 4.476457 0.394148 -5.721000 -17.345390 2.399946 -1.217574 -1.460627 -0.327288 -4.378704 -2.453394 2.882044 -2.850909 6.856801 1.361307 -3.189955 6.979537 -9.503484 -7.225040 -6.065438 -1.885404 1.980534 -1.050751 0.477705 -3.578070 1.543963 -0.246056 2.601067 -1.679817 -6.284849 0.893435 3.901179 8.002877 -0.600146 -0.455750 8.174715 2.381245 -1.764199 -1.709467 -0.591195 -3.511892 1.786613 -9.345518 -1.374524 1.746520 3.644075 -5.981250 2.522452 -1.610203 1.947699 1.541498 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 1.233518 -0.157490 -0.278583 2.091563 0.229839 -0.232162 0.702694 0.724029 0.026695 -3.472392 -1.616788 1.151106 0.289597 -0.114751 0.124489 0.463661 0.733352 1.321480 -3.654439 0.050120 0.989626 0.528991 -0.107489 -0.759001 0.037696 -0.701057 0.138416 0.804317 0.358194 2.282087 -0.866847 0.849438 1.937784 0.122336 0.633031 1.770296 0.226338 0.034772 -0.178870 -0.566768 2.977017 0.887410 -0.067281 1.158691 0.188802 2.348391 0.370406 1.817598 -0.179121 -1.011791 0.741299 -0.881484 -1.052662 -0.298211 -2.025033 0.652159 1.995307 1.762267 -1.036222 1.441121 -0.441709 0.560724 0.891818 -0.447515 2.212560 1.308871 1.094581 1.763243 2.448657 -1.638017 0.385651 0.033012 0.571129 -0.287519 1.165940 -1.433642 -0.938067 -1.980311 -0.197324 -3.394589 0.042958 -0.053032 3.494725 -1.912391 0.364528 1.023018 0.603700 1.982392 -1.010125 -0.169365 -2.126698 0.075923 -0.459916 3.260295 0.349364 0.424987 -0.389664 0.812670 0.302149 0.686737 0.276299 -1.668810 -0.891720 -3.978592 -1.269892 -1.239050 0.043961 0.430375 -2.182941 -0.392485 0.732454 1.619527 -3.606953 -0.301098 0.757009 0.877673 0.616748 -0.219279 -1.306499 0.186569 -0.462501 0.390720 0.751762 -1.631233 0.226916 -0.790316 -0.426559 0.298524 0.760987 0.235598 -2.540685 -0.771344 0.126434 -0.445418 0.022401 0.781162 0.812211 -0.744180 1.066499 -1.979814 1.740069 -2.505489 -0.193148 -0.663661 -2.215793 -0.960400 2.392578 1.017965 1.105651 -0.158773 -0.905953 -0.453088 -2.460323 -3.452973 0.842206 0.147980 0.913617 0.515684 -0.473976 0.112038 -1.674718 0.028629 1.029965 -1.020463 -0.751902 -0.271286 2.270033 -0.151973 -0.825934 -1.267746 0.252444 1.080416 0.098822 1.458913 -1.069777 -1.894094 -2.871041 -1.282730 1.986850 -0.918474 0.048230 -0.788569 -0.294777 -1.693418 0.418122 -1.588707 0.555281 -0.155301 -1.208413 -2.768714 0.713570 -0.567636 -0.356082 0.808747 -1.765314 0.448025 1.170074 0.822620 0.021669 0.163443 0.578973 -2.033282 -1.754339 -0.001557 -0.810563 1.562476 1.285231 0.324960 -1.349782 -0.754890 -1.605147 1.526655 -0.951232 0.970857 -0.165928 -0.804663 1.514606 -1.553709 0.078569 -1.835266 0.760608 0.555603 -3.049776 2.856636 1.412638 -1.565787 -0.437250 -1.078932 0.839991 0.506489 1.898396 -1.600599 -1.348256 0.896431 -0.733507 -0.082349 -1.102436 0.724568 -0.397791 0.381183 -2.142820 -0.835869 1.613060 1.258840 -0.398490 0.848617 1.185340 -0.252432 0.289672 2.390436 1.010533 0.046831 -1.587313 -3.946758 1.000800 0.242087 0.298107 -0.144477 -1.069974 -0.887988 0.776078 0.073861 1.890621 1.481683 -0.617238 1.964491 -2.336513 -2.072108 -0.983292 -0.112176 0.992788 -0.905413 0.186002 -1.027663 0.489467 -0.048361 0.712516 0.251205 -1.501585 -0.834282 0.654224 2.102985 0.133829 -0.505566 2.441935 0.169695 -0.842754 0.067673 -0.339590 -0.009876 0.437071 -1.612412 -0.415387 -0.018648 0.994375 -1.544988 1.461481 -0.433541 0.266026 0.909091 -PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/dfs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = 0.568496 -0.554674 -0.283844 1.153060 0.189215 -0.270352 0.116153 0.069488 0.030852 -1.498312 -0.525847 0.133818 0.160412 -0.133164 0.274303 0.431532 0.413959 0.187029 -1.411178 0.329262 0.297046 -0.065601 -0.470680 -0.085239 -0.010376 -0.644158 0.429292 0.521541 0.040999 0.945348 -0.540481 0.462164 0.809761 -0.177275 0.734020 0.833900 0.188716 0.067483 -0.239333 0.303290 1.626451 0.400347 -0.191359 0.240702 0.375049 1.159685 0.210500 1.052783 0.013627 -0.456955 0.684947 0.091283 -0.217096 -0.168670 -1.233121 0.327903 1.114699 0.592827 -0.924831 0.568984 -0.468868 0.261649 0.445324 0.476039 1.399250 0.333235 0.864188 0.857127 1.194295 -0.652546 0.085410 0.254686 0.541469 -0.088053 0.764226 -0.589252 -0.657762 -1.221436 0.007560 -0.903254 0.096341 0.075020 0.936936 -0.882480 -0.019172 0.548591 0.121999 1.006567 -0.729711 -0.087309 -1.079522 -0.048716 -0.124928 1.662875 0.094691 0.180465 0.038409 0.683159 0.061198 0.520600 0.208171 -1.120234 -0.415270 -1.931170 -1.114930 -0.634668 0.061839 0.020059 -1.242086 -0.167076 0.502414 0.410326 -1.457109 0.218615 0.315582 0.369725 0.845405 -0.538616 -0.520143 0.033997 -0.146651 0.354882 0.471646 -0.371881 0.205907 -0.736502 0.473975 0.392396 0.426148 -0.000630 -0.790585 -0.058153 0.156489 0.008793 -0.213096 0.265426 0.332728 -0.840146 0.616899 -0.746972 0.991262 -1.359346 -0.086154 -0.760611 -0.861341 -0.291675 1.006527 0.407911 0.684111 -0.022611 -0.837411 0.065567 -1.469542 -1.970116 0.113698 0.036735 0.104782 0.218835 -0.264570 0.200758 -0.536968 0.008862 0.624246 -0.705249 -0.436290 -0.237008 0.492045 0.087308 -0.427045 -0.474821 0.007241 0.570319 0.260982 0.930942 -0.468582 -1.164534 -1.375172 -0.621435 0.854012 -0.396899 0.164369 -0.225716 -0.308263 -1.367588 0.495800 -0.900745 0.246311 -0.480258 -0.409617 -1.138977 0.214247 -0.310008 0.154968 0.061050 -0.961954 0.272470 0.124889 0.137724 0.154073 0.129811 0.201769 -1.183299 -1.043848 0.203755 -0.222769 1.172736 0.310809 0.041794 -0.107233 -0.392226 -0.854178 0.633155 -0.734258 0.373879 0.397431 -0.814763 0.743891 -0.715266 -0.396252 -0.706130 0.449312 0.186536 -0.427485 1.666752 0.990700 -0.938888 -0.221734 -0.326365 0.536398 0.200868 1.033816 -0.636538 -0.323034 0.287479 0.078357 -0.074676 -0.313965 0.469832 -0.236601 0.250075 -1.111675 -0.567933 0.702024 0.788957 -0.053703 0.142269 0.146350 -0.311266 -0.340228 1.209624 0.420694 0.379665 -0.747118 -1.643722 0.401244 -0.530705 -0.068762 0.062681 -0.529702 -0.392376 0.010604 0.231282 1.054336 0.818765 -0.239431 0.988727 -1.286315 -1.150912 -0.726600 -0.205838 0.101542 -0.488059 0.263679 -0.695935 0.151188 -0.274317 0.477209 -0.209445 -0.394569 -0.228816 0.249517 0.599802 0.113595 -0.417953 1.101208 0.190543 -0.414498 -0.261802 0.140831 -0.215701 0.588727 -0.584184 -0.521682 -0.261636 0.507236 -0.660950 0.499017 -0.314781 0.469673 0.382403 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = 3.442285 -0.228788 -2.081368 5.372824 0.414255 -1.367600 0.976956 1.533600 0.327769 -7.378706 -3.933278 2.202194 1.073824 -1.173263 0.914346 1.853107 1.759833 2.462099 -8.712822 1.327683 2.174430 0.291748 -1.960102 -1.406551 -0.042927 -2.181465 0.039231 1.820561 0.356728 5.263251 -2.240545 2.765721 4.155799 -0.179658 2.964552 4.179868 -1.266229 -0.159847 0.303666 -0.317265 7.193672 2.964627 -0.385057 1.922205 0.925098 5.751981 -0.089554 4.341570 -1.005804 -2.178879 2.370488 0.222654 -1.960100 -0.060592 -5.300836 1.396121 4.847175 2.361355 -3.195173 3.007394 -1.901621 1.492083 2.527835 0.215067 6.500337 2.708891 2.834822 4.517753 6.002482 -2.903045 1.576965 -0.138764 1.825820 -1.254088 3.029755 -2.561296 -2.993591 -3.811331 -0.308612 -7.296401 0.741726 -0.028254 7.123717 -4.800256 0.838957 1.684081 2.144200 5.436702 -3.402288 -0.713288 -4.938805 -0.129330 -2.105640 7.629570 0.569719 1.688090 -0.896400 2.562899 -0.265593 1.333168 -0.462257 -5.055113 -1.935749 -9.769524 -4.040419 -3.141729 -0.097833 0.756607 -6.041348 -0.594597 1.400524 3.745996 -8.371456 -0.073422 1.219311 1.142998 1.202913 -0.449951 -3.406966 0.191374 -1.402625 1.882346 1.756004 -2.466778 0.644519 -3.179939 -0.377817 1.404813 2.025087 0.772235 -5.081227 -0.640807 1.012997 -1.119527 -0.285537 2.644339 2.157834 -2.638857 2.579817 -4.418118 4.477886 -6.368113 -0.810121 -3.225696 -4.850951 -2.046932 3.500849 3.332453 2.732802 -0.270528 -1.796720 -0.209638 -7.345374 -8.432373 1.297653 -0.613146 1.285235 0.533223 -1.001166 0.276197 -3.621553 0.500357 2.859566 -3.327596 -2.296937 -1.309822 6.308600 0.459840 -2.188777 -2.274174 -0.522087 2.179833 0.501587 3.981556 -2.341801 -4.160240 -7.355045 -2.711413 4.761389 -2.197320 0.484510 -2.280484 -0.704816 -4.654535 1.029600 -4.180217 0.686863 -1.417030 -1.074785 -6.057889 0.972363 -1.043229 -0.413450 0.473809 -4.476595 1.596721 3.977049 1.640096 0.006751 0.950784 0.956600 -4.424597 -3.930306 1.043798 -1.489597 4.516678 3.901751 0.341246 -2.303287 -1.698657 -4.307791 3.689931 -2.824933 2.644952 0.713160 -2.902449 3.792159 -4.007074 -1.614189 -3.669529 1.868777 0.203086 -5.675850 6.682975 3.718779 -4.486853 -0.330462 -3.019323 3.014793 0.887326 4.647443 -3.181152 -2.256160 1.476518 -0.911344 -0.366875 -2.155651 1.826279 -1.503785 0.972522 -4.958070 -1.446117 4.739061 3.022479 -0.657626 1.234853 1.035806 -1.299412 1.300656 5.239113 2.629435 0.473586 -4.352612 -8.938002 1.718101 -1.295798 0.499712 -0.520775 -1.612973 -2.187814 0.421090 -0.142134 5.064337 3.182221 -1.717878 4.658592 -6.012082 -5.557970 -3.711416 0.381644 1.474662 -2.029697 0.654493 -2.825159 0.987731 -0.480883 2.816933 0.200468 -3.851912 -2.123918 2.072000 4.523147 0.228949 -2.228649 5.666932 1.026861 -1.763383 -0.889357 -0.421723 -1.192012 1.177043 -3.912575 -1.863413 -0.386533 2.582323 -4.013226 3.333783 -0.907352 2.166782 2.058062 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = 1.830715 -1.012828 -1.117367 3.443143 0.298148 -0.075249 0.505213 0.337023 0.312216 -4.534303 -2.168615 2.152117 0.533323 -0.126878 0.290224 1.088040 1.244338 0.936803 -4.820651 0.293360 0.856453 -0.252424 -0.918706 -0.368397 -0.091901 -1.521259 1.583886 1.347436 0.233229 2.878875 -1.053672 1.782179 2.475458 -0.044644 1.553803 2.221686 -0.709000 -0.157596 -0.923627 -0.608002 4.142089 1.321425 -0.104917 1.329518 0.216187 3.320704 0.681792 2.926994 1.118561 -1.170047 1.696816 0.378116 -1.185493 -0.417933 -3.397886 0.494777 2.073823 0.939546 -1.628802 1.495376 -1.057813 0.834611 1.256091 0.382251 3.888761 1.060617 2.552672 2.654961 2.940578 -2.110869 0.646406 0.365506 1.029120 0.054312 2.097985 -1.895649 -2.063741 -1.765165 -0.258294 -3.547368 0.162294 -0.273874 3.924560 -2.341704 -0.407811 0.345436 0.683475 3.132178 -1.726239 0.000786 -3.080389 -0.062060 -0.387718 4.021958 0.574329 0.788960 -0.321353 1.194756 -0.242421 0.932333 0.348461 -3.032043 -0.383025 -5.404768 -2.148493 -2.021383 0.428945 0.528504 -3.244233 0.122121 0.058453 1.900212 -4.444746 -0.295349 0.698090 0.696747 1.996989 -0.462593 -1.361459 -0.111588 -0.039594 1.305602 1.405636 -1.494647 0.718850 -1.418795 0.325434 0.640729 1.217250 0.615603 -2.923277 -0.787674 0.718348 -0.012894 0.104569 1.344412 1.412991 -1.127460 1.501964 -2.089662 2.640454 -3.624202 -0.615946 -1.769399 -2.243984 -1.363101 3.150526 2.058703 2.393120 -0.145926 -1.039601 0.053231 -4.068217 -5.232526 0.467511 -0.011353 0.210196 0.697682 -0.605153 0.760552 -2.245774 0.510906 1.770089 -1.681079 -1.460345 -0.430851 1.625633 0.437851 -1.150945 -1.122839 -0.131911 0.628154 0.468759 2.914716 -1.049943 -4.424904 -4.239030 -1.541027 2.636899 -1.498397 0.084888 -1.087883 -0.881542 -2.449078 0.340445 -2.349672 0.290926 -0.527205 -1.475281 -3.551572 0.817522 -0.659757 0.137009 0.698500 -2.730234 0.772408 1.821942 1.222036 0.282898 0.712094 0.254403 -2.548568 -2.100222 0.631330 -1.227981 2.980987 1.716579 -0.100816 -1.476234 -1.217579 -2.491342 1.846267 -1.884242 1.651903 0.443418 -1.807158 1.579721 -2.285495 -0.246710 -1.787174 1.094326 0.407042 -4.113716 3.850927 2.566259 -2.438284 -0.363506 -1.173447 1.522087 0.238000 2.393787 -2.104994 -1.436126 0.692743 -0.048159 -0.081429 -0.850602 0.953995 -0.505537 -0.243041 -3.058242 -1.292876 2.607903 1.511775 -0.304601 0.248330 0.999210 -0.761197 0.424122 3.118429 1.483580 0.576435 -2.390850 -6.198805 1.038186 0.068812 -0.248344 0.346311 -1.617432 -1.177933 0.495183 -0.837063 2.737451 0.968775 -1.147577 2.737612 -3.276038 -2.917533 -2.415476 -0.649009 0.669248 -0.747781 0.814939 -1.591923 0.442535 -0.615994 1.126249 -0.691689 -1.650947 -0.120064 1.362075 2.471137 0.271125 -0.550704 3.074734 0.699949 -1.020946 -0.744963 -0.091937 -1.266213 1.068002 -3.067539 -0.921246 0.073540 1.475176 -2.098777 1.074429 -0.397080 1.269357 0.696284 -PE-benchmarks/dfs.cpp__main = 1.578475 -0.551804 0.427746 2.100779 0.909137 -0.514247 0.824726 1.251220 -0.211040 -3.955973 -2.395897 -0.237041 0.032144 -0.500072 0.923193 0.109467 1.333163 0.966459 -4.336643 0.392829 1.116017 0.149821 -0.523757 -0.464886 -0.037618 -1.312644 -0.922028 1.791695 0.265425 2.559252 -1.169082 0.533919 2.122378 0.197623 1.452185 2.584892 0.486490 -0.178371 0.562497 -0.034232 4.264245 0.868937 -0.277241 1.120376 1.185037 3.008581 -0.451527 2.731423 -0.285101 -1.174685 2.096852 -2.244593 -1.019252 -0.268522 -2.908708 0.872675 3.289009 2.012252 -2.210207 1.889039 -1.057939 0.551373 0.931254 -0.576860 2.764932 1.665835 1.038797 1.768903 3.112074 -2.062405 -0.244616 0.853382 1.141388 0.077497 -0.336552 -1.809829 -0.197971 -4.402527 0.309298 -3.667621 -0.098771 -0.395495 3.597735 -2.014975 0.530502 2.057321 -0.200928 1.975732 -1.474524 -0.523562 -2.817447 -0.035246 -0.082312 3.210252 -0.000351 0.111837 0.626483 1.036879 0.368579 1.820334 -0.332562 -2.128714 -2.857306 -5.546151 -2.309153 -1.171724 0.204198 -0.163894 -2.615216 -0.829704 2.120881 0.663209 -3.478159 -0.276046 1.140199 1.275238 -0.731599 0.391831 -2.377883 -0.605501 -0.443094 0.699814 1.367497 -1.200302 0.259601 -2.313955 0.137101 0.517697 1.004615 -0.216407 -2.033859 -0.740088 0.304234 -0.510769 -0.553184 0.020334 0.232156 -1.103342 1.467347 -1.926013 2.489920 -3.401815 0.100493 -1.789881 -2.159941 -0.773590 3.324613 1.577885 1.267842 0.862972 -1.533725 -0.131628 -2.708222 -3.920172 0.666849 -0.015392 1.815652 -0.069226 -0.656505 0.347715 -1.196171 -0.551126 0.235047 -1.438470 -0.874140 -0.774493 2.366138 -0.128079 -1.006619 -1.832067 0.816064 2.248407 -0.804778 1.312475 -1.686943 -1.176049 -2.576101 -2.002681 2.244282 -0.960543 0.173482 -0.311996 -0.078426 -2.732113 1.115304 -2.096976 0.351915 -1.021018 -1.826842 -3.064315 0.906315 -0.926269 -0.029616 0.919233 -2.068335 0.560702 1.130219 1.693905 0.333576 0.423623 0.352514 -2.866377 -2.781345 -0.672334 -0.202202 2.427529 1.744633 0.337340 -0.904156 -1.023061 -1.773099 2.192265 -1.144334 0.794969 0.265160 -1.768750 2.152730 -1.564508 -0.505688 -2.295024 1.138107 1.139597 -3.270053 3.370131 1.884015 -2.307423 -1.208641 -2.203369 0.666817 0.884870 2.973189 -1.159952 -0.812455 1.186135 -0.311117 -0.231124 -1.500172 1.144641 0.003301 1.036860 -3.101602 -1.713202 1.912023 2.062946 -0.203660 1.279911 1.046799 1.050948 0.181673 3.483829 0.727928 -0.136790 -1.538240 -4.808014 1.468216 1.685907 0.458760 0.251551 -1.499830 -1.549316 -0.034477 0.776742 2.585701 3.003735 0.032631 2.626686 -1.904998 -2.671542 -1.389937 0.346493 0.948836 -1.706246 0.232768 -1.549452 0.520658 -0.416758 0.764904 0.885491 -1.378989 -2.862576 0.269088 2.027016 0.528167 -0.728865 2.921912 0.121508 -1.424577 -0.167040 0.047149 0.460690 1.415980 -1.054994 -1.152068 -0.778985 1.009563 -1.504219 1.569398 -0.183929 0.663211 1.454144 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/dfs.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/dfs.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 1.513441 -1.916940 -0.318306 2.776331 0.736931 0.609798 0.412439 0.242941 0.945946 -4.332019 -1.267159 3.668668 -0.048118 0.396526 -0.302459 0.575996 1.498005 0.752786 -3.434363 -0.168257 0.016271 -0.113706 0.005370 -0.293757 0.099568 -0.948087 2.827986 0.922323 0.671805 1.906630 -0.907616 1.094411 1.804199 0.286037 1.030952 1.493743 0.321152 -0.570120 -1.843398 -1.711917 3.453478 0.738771 0.197447 1.963752 -0.007087 2.341881 1.415014 3.269275 3.922461 -0.718620 0.759856 -0.583819 -1.300512 -0.655001 -3.200791 0.527873 0.051916 0.286389 -1.129688 0.861662 0.168191 0.601000 0.618347 -0.301989 2.808075 0.103750 2.448989 2.263781 1.879867 -2.033501 -0.035673 0.720644 1.362307 1.706636 2.558593 -2.024190 -1.518319 -0.890580 -0.295710 -1.782411 0.046680 -0.995279 3.083922 -1.540022 -0.398852 0.158605 -0.230522 2.370336 -0.616565 0.193154 -2.964509 0.185238 0.997325 2.468778 0.561232 0.299620 -0.190489 0.266918 -0.371489 0.915816 1.591489 -2.263686 0.396954 -3.757108 -0.796302 -1.769731 0.414445 0.321759 -2.055734 0.695177 -0.770166 2.277383 -3.255101 -0.794490 0.496005 0.058697 3.022623 -0.419239 0.285196 -0.312257 0.530940 0.901143 0.766469 -1.875865 0.246877 -0.116636 0.320621 0.155575 1.054394 0.534171 -2.080568 -1.183352 0.670549 1.627743 0.178884 0.546416 1.075021 -0.902631 1.009649 -0.967732 1.629219 -2.040907 -0.932773 -0.707432 -0.673465 -1.385621 4.951137 0.863217 3.244893 0.379404 -0.496690 -0.376233 -2.413748 -4.433095 0.781267 -0.043951 -0.160404 1.306245 -0.255816 0.908762 -1.734886 0.095177 0.787826 -1.063084 -1.163581 0.099660 -1.907921 -0.251189 -0.329122 -1.095098 0.399390 0.933945 0.497173 2.416520 -0.888681 -5.653437 -2.720483 -1.252742 1.795727 -1.415443 0.118070 -0.210731 -0.895891 -0.713134 -0.206689 -1.707845 0.340413 -0.293303 -2.113373 -2.715673 0.903905 -0.871300 0.633595 1.358064 -2.041879 0.799996 -0.113621 1.798495 -0.029309 0.633166 -0.030919 -2.743300 -1.738524 -0.080834 -1.149800 2.762484 0.207107 -0.212652 -1.661381 -1.219903 -1.844534 1.279245 -2.983231 1.325109 0.249632 -1.455857 0.643667 -1.406297 0.664493 -1.352639 1.199361 0.941458 -4.000502 2.786194 2.152289 -1.788431 -0.519704 -0.643938 0.672555 0.300936 1.935997 -1.952827 -1.463506 0.779343 0.110932 0.011922 -0.791507 0.637564 0.228160 -0.388451 -2.913846 -1.665291 1.351739 0.868542 -0.217814 -0.240495 1.607844 0.016442 -0.175467 3.069772 1.066130 1.184892 -2.191316 -5.920744 0.949124 2.283152 -0.079240 1.393565 -2.315892 -0.658478 0.756481 -1.654297 1.711556 -0.781963 -0.095108 2.006088 -2.709069 -1.690841 -1.146979 -1.474608 0.716047 -0.088111 1.477437 -1.143800 -0.043050 -1.160803 0.344396 -1.414923 -0.206270 1.026943 1.335201 1.569041 0.866577 0.513334 2.001626 0.492598 -1.146468 0.027805 -0.201708 -0.960104 0.707288 -3.505310 -0.153085 0.395234 0.777598 -1.346361 0.442410 -0.053594 0.781436 -0.470207 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.482909 -0.658365 0.021920 1.013864 0.190104 0.367645 0.237082 0.176733 0.228794 -1.772281 -0.840110 0.383554 0.032786 0.258205 0.286972 0.230857 0.504516 0.248260 -1.609570 -0.169038 0.347729 -0.085182 0.268344 0.110267 0.031222 -0.572752 0.278623 0.448705 0.189595 0.958063 -0.365796 0.590133 0.869601 0.119459 0.206212 0.661508 0.045463 -0.201933 -0.400939 -0.302040 1.369538 0.159812 -0.131849 0.442024 -0.155544 1.069992 0.096653 1.305165 0.977454 -0.442134 0.783525 -0.942912 -0.443376 -0.040747 -1.110834 0.219465 0.584233 0.485457 -0.382797 0.447740 -0.384196 0.325439 0.248301 -0.403305 1.129050 0.396992 0.933040 0.819063 0.767320 -0.937964 0.062444 0.258125 0.154302 0.322905 0.334028 -0.730405 -0.134655 -1.394517 0.017088 -0.936188 -0.165265 -0.345200 1.137449 -0.681379 -0.244355 0.418585 -0.177027 1.011404 -0.380741 0.367440 -1.184188 0.077860 0.494288 0.806410 0.207683 -0.077079 -0.062625 0.173587 -0.056532 0.388598 0.433825 -0.721749 -0.720638 -1.671998 -0.698610 -0.537146 0.366651 0.240594 -1.107861 0.273973 0.407660 0.437328 -1.334294 -0.188548 0.281350 0.543369 0.547698 0.260286 -0.430296 -0.333711 0.278064 0.499610 0.564532 -0.696621 0.397151 -0.793704 0.179220 0.178810 0.435858 0.007523 -0.578577 -0.526118 0.219329 0.264708 0.107243 0.304404 0.545554 -0.102321 0.556074 -0.497464 0.820530 -1.100424 -0.168092 -0.439523 -0.399155 -0.487885 2.130271 0.782334 0.867314 0.387663 -0.638045 -0.077806 -0.987159 -1.564899 -0.034103 0.133812 0.400136 0.417808 -0.234942 0.470943 -0.569108 0.248385 0.002330 -0.471527 -0.442792 0.037192 -0.414245 -0.001392 -0.289213 -0.681771 0.249093 0.518569 -0.433723 0.919168 -0.236041 -1.200553 -1.116879 -0.699552 0.838340 -0.555765 0.138684 -0.265069 -0.084261 -0.804315 0.155223 -0.656680 -0.114184 0.122797 -1.105305 -1.212701 0.436067 -0.299528 -0.018012 0.645780 -0.878261 0.202373 0.189321 0.813392 0.270304 0.260082 -0.075285 -1.025545 -0.930080 -0.312807 -0.611959 1.090024 0.296124 -0.179197 -0.541927 -0.592685 -0.649115 0.829159 -0.829771 0.469629 -0.118768 -0.569828 0.277324 -0.645734 -0.029454 -0.729205 0.405280 0.399733 -1.570049 1.107945 0.789465 -0.691817 -0.297779 -0.692468 0.392587 0.154263 0.903582 -0.567365 -0.334491 0.213074 0.160968 0.003412 -0.406406 0.381252 -0.067465 -0.305188 -1.053107 -0.616403 0.666340 0.532799 -0.093279 0.217690 0.866630 0.441010 0.156797 1.057473 0.367855 -0.115164 -0.553793 -2.206753 0.460734 1.258707 -0.083860 0.475212 -1.114696 -0.299451 0.239488 -0.267066 0.817664 0.509740 0.200004 0.954672 -0.711649 -0.743027 -0.566211 -0.322146 0.161970 -0.243606 0.361623 -0.410557 0.095015 -0.113790 0.077148 -0.150498 -0.453226 -0.404882 0.328867 0.851833 0.195511 0.195401 0.935485 0.297666 -0.524841 -0.153223 -0.030300 -0.378582 0.392910 -0.759063 -0.128171 0.211319 0.271107 -0.604584 0.130574 -0.088936 0.032467 0.006279 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = 4.632580 -3.339009 -6.245043 18.353633 -0.430247 4.491307 1.949431 -2.242417 1.171463 -23.503047 -7.179459 13.756177 3.085477 4.703900 -1.244090 4.715201 3.602297 4.201508 -20.284857 -2.867908 5.409525 0.992691 0.969523 0.560826 -0.303822 -4.961188 14.388664 3.412077 2.727799 13.094393 -2.381212 12.095138 12.650560 -1.100731 1.302814 7.212258 -2.771705 0.749008 -10.734311 -6.275846 15.367261 1.569367 1.643434 7.607383 -6.497533 14.047860 6.014731 10.937235 10.506616 -6.884512 4.619953 7.261921 -3.380540 -4.574773 -11.815766 0.831400 3.725860 5.551925 -3.154492 3.580585 -0.353228 2.528959 5.439428 2.800425 14.635707 5.683591 13.240911 15.020734 9.833046 -10.865124 4.311475 -0.024570 -3.449347 0.789424 13.757272 -9.421932 -10.648577 1.496151 -4.010525 -12.920180 -4.000619 -1.226774 14.670248 -9.438206 -4.737696 -4.930260 4.120531 15.667206 -3.581364 5.341651 -14.230925 -1.617735 0.762392 14.435671 3.119992 1.590632 -4.105295 2.316529 -2.239852 1.189736 5.381950 -12.656337 6.051237 -13.785967 -6.831435 -9.879293 5.014175 9.187053 -14.766814 2.081110 -10.399720 9.142482 -22.385566 -3.940106 1.202132 6.058480 16.599202 -0.016933 -3.524384 -0.791436 4.352394 3.249047 6.538715 -7.025481 6.194252 -3.123749 -1.477239 1.409105 3.301133 5.052096 -15.224102 -8.087685 1.861670 0.337088 4.600078 9.790952 11.466816 -0.523833 6.094382 -8.524076 10.257272 -13.174605 -6.082590 -2.288077 -9.567087 -8.909996 12.143421 8.096862 11.005590 -4.853334 -7.216872 -0.494245 -16.490005 -20.019835 -0.712689 1.884944 -2.339958 10.531558 -3.888966 6.930280 -13.432541 7.381062 10.616213 -3.123154 -7.992096 0.666544 -1.829499 2.961614 -3.138557 -2.441761 -1.216131 -6.219508 2.837432 19.480149 -1.113800 -22.079831 -24.248528 -5.023401 12.084790 -7.808206 -1.301084 -8.331474 -6.150864 -9.286384 -2.233357 -10.287201 -1.581939 1.772312 -7.615108 -16.634047 7.189463 -2.725489 -2.121185 6.438190 -12.387758 2.034091 7.439938 4.351019 2.494459 1.339420 -1.517486 -9.368327 -5.763640 5.263818 -10.272605 10.489661 4.217265 -1.244883 -9.308110 -7.764346 -9.055246 6.580054 -6.422721 9.865189 1.594598 -2.630141 3.363859 -11.376036 2.822729 -6.275230 3.039971 2.950140 -21.820671 14.491908 7.146637 -6.717743 0.979364 0.721849 6.559194 -0.809691 3.118279 -10.923046 -10.372985 2.631099 1.756168 1.012070 -4.154734 0.814771 -3.390201 -6.587884 -11.530019 -4.672973 11.517722 2.977563 -2.906481 -1.935989 9.488914 -8.980722 3.074924 11.637521 10.398081 2.694124 -7.422980 -24.515499 4.607363 -2.472170 -2.507597 -1.009555 -9.630048 -1.879018 8.269591 -8.029984 10.355642 -3.972695 -6.762171 11.793880 -17.257191 -10.901326 -11.192417 -6.391184 3.264014 2.597696 1.085635 -4.250222 3.047443 0.162711 1.092142 -6.769378 -9.161268 8.652668 8.126923 13.314652 -3.092947 2.773968 12.593326 5.036975 -2.635142 -2.672978 0.658644 -9.298376 0.302466 -19.546413 -0.733382 6.569789 6.328809 -10.082705 0.240666 -5.000579 0.841839 -0.492734 -PE-benchmarks/partition-problem.cpp__main = 1.519371 -0.638177 -0.871507 4.423817 -0.027343 1.171087 0.839135 0.210355 0.365001 -6.541427 -2.631155 3.168076 0.581612 1.098895 0.071853 1.049028 1.201467 1.454693 -6.538442 -0.771783 1.816491 0.515339 0.844974 -0.221271 0.126739 -1.459025 2.609684 1.277512 0.819346 3.924649 -0.953791 2.906090 3.550614 0.175312 0.464864 2.358322 -0.801530 -0.176802 -2.238816 -1.835723 4.527286 0.676706 0.137949 2.203918 -1.357524 4.149812 1.169048 2.513711 2.731108 -1.957127 1.371611 0.513200 -1.488125 -1.065183 -3.276776 0.329830 1.500078 1.844253 -0.962857 1.432752 -0.146805 0.842848 1.391453 -0.296439 3.867397 1.729323 3.161745 3.780908 2.940680 -3.248057 1.027566 0.008234 -0.623721 0.300074 2.603372 -2.594390 -2.090533 -1.476123 -0.849379 -4.682340 -1.186795 -0.607290 4.171456 -2.764455 -0.729798 -0.438950 0.614919 4.147541 -0.976280 1.127638 -3.983829 -0.275873 0.507435 3.670638 0.718198 0.227499 -0.757458 0.682531 -0.308439 0.678921 1.389611 -3.275021 0.237992 -4.602604 -1.755247 -2.574824 1.393621 2.177704 -3.968600 0.610447 -1.417977 2.632383 -6.123224 -1.214070 0.695069 1.919993 2.431999 -0.070729 -1.259413 -0.411481 0.837235 1.226141 1.837608 -2.470131 1.556851 -1.106437 -0.731912 0.440333 1.211276 1.119951 -3.786541 -2.541227 0.721350 0.073505 1.027523 2.475028 2.777332 0.162839 1.761650 -2.702608 3.138093 -3.732116 -1.145125 -0.830518 -2.066072 -2.425143 3.722164 2.463156 2.395672 -0.532410 -1.746472 -0.136755 -4.095164 -5.266559 0.233136 0.584659 0.366718 2.431653 -1.063076 1.756050 -3.478188 1.574118 1.877705 -1.121506 -2.032051 -0.025436 -0.046496 0.610631 -1.059963 -1.157917 0.170509 -0.591557 -0.066583 4.519808 -0.701706 -4.553424 -6.045244 -1.940137 3.550390 -2.219470 -0.332520 -2.093895 -1.130445 -2.445894 -0.221802 -2.884069 -0.292273 0.574190 -2.595359 -4.806331 1.962370 -0.900387 -0.578789 2.093004 -3.382210 0.523996 1.921865 1.544646 0.649616 0.488780 -0.203489 -2.678626 -1.967835 0.616795 -2.675858 2.805072 1.459202 -0.290532 -3.046507 -2.099497 -2.254168 2.533809 -1.696227 2.650527 -0.155628 -0.921884 1.286460 -2.871612 0.638847 -2.113353 1.092607 1.134795 -6.339967 3.926065 2.101874 -2.157153 -0.175025 -0.866505 1.662471 0.188112 1.627136 -2.867632 -2.741494 0.851391 0.155068 0.227449 -1.575095 0.637702 -0.713190 -1.400103 -3.388234 -1.415046 3.255100 1.156397 -0.713593 0.422693 3.048127 -1.145651 1.041604 3.410441 2.535669 0.271883 -2.183885 -6.770136 1.564971 1.158634 -0.076200 0.094940 -2.897958 -0.986045 1.992336 -1.541521 3.052120 0.056701 -1.389882 3.448713 -4.030270 -3.110346 -2.945789 -1.365297 1.082002 0.236573 0.359282 -1.016100 0.823371 0.248584 0.337292 -0.977460 -2.603188 0.843418 2.000807 4.016073 -0.279791 0.609364 3.772400 1.206674 -1.238085 -0.544848 -0.099047 -2.117510 0.175299 -4.442294 -0.316457 1.561404 1.646045 -2.856240 0.462014 -1.003916 0.090023 -0.071098 -PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 5.019019 -0.965291 -5.103786 10.962749 -0.936819 2.553813 1.313185 -0.904297 0.911506 -13.666727 -4.180970 9.684511 2.541870 2.911988 -0.627173 5.582237 2.145553 1.981135 -10.352229 -0.877765 3.211983 -0.983392 0.061677 0.320816 -0.105188 -4.666894 7.996308 1.563857 1.728974 9.203278 -2.148275 7.824546 8.312306 -0.692767 2.196501 5.393555 -2.065762 0.051869 -7.155185 -4.148118 9.393102 2.153262 0.598436 3.435180 -4.574466 9.812318 2.377362 8.568049 4.106519 -4.812261 4.307126 4.059845 -3.578078 -1.127241 -7.554618 0.865959 0.528083 1.909291 -2.150196 2.615413 -2.498948 2.980981 3.575510 2.906980 9.611733 3.498054 7.521074 9.435055 6.558896 -7.856462 2.955642 1.266097 -2.020608 0.142708 9.383235 -4.539630 -6.719264 3.216205 -0.946094 -5.572462 -2.487319 -0.643883 11.455225 -7.498723 -3.366298 -1.750801 3.417414 10.601739 -3.752708 4.354678 -8.743732 -0.630989 0.022333 9.521920 2.080922 2.140262 -3.304547 1.646374 -1.729991 1.032028 2.669871 -8.693172 1.310928 -6.322759 -4.757984 -7.038288 3.479630 5.939159 -10.254694 1.785696 -3.292215 8.307342 -13.804698 -0.647307 1.418045 3.966148 12.202130 3.836630 -1.432521 0.263590 3.050016 2.938954 4.199077 -4.409467 4.053495 -1.501284 0.109654 1.230664 3.153133 2.676393 -12.117262 -3.834305 2.969140 -1.637648 3.075362 6.958150 7.597406 -1.937532 4.343813 -5.188103 6.951571 -8.987309 -4.296038 -3.042511 -6.949851 -5.796340 8.417271 6.980293 8.312065 -2.141238 -3.727561 -0.576102 -11.477361 -12.246330 -1.513443 0.961475 -1.595527 6.294649 -2.108852 4.759251 -8.528955 5.630591 5.235383 -3.796702 -5.523620 0.827307 1.299101 1.873881 -2.874596 -2.305954 -1.565813 -4.840102 1.652476 12.458440 -0.210431 -14.652252 -15.561782 -4.480536 8.467322 -5.436884 0.069685 -5.367228 -3.996582 -5.134172 -2.065498 -6.877242 1.002863 1.722332 -3.472338 -10.960227 5.128880 -1.508968 -2.782485 3.795213 -8.031320 1.453495 4.854856 -0.596157 1.542113 1.991945 -0.999850 -5.409569 -3.420515 4.201904 -6.990157 6.795455 4.697681 -1.316309 -4.456081 -5.709934 -6.691570 4.506057 -6.438721 6.637986 0.829606 -1.472474 2.655036 -7.995029 0.703053 -4.781540 3.212565 1.641628 -12.028979 8.254254 6.300977 -5.082709 0.738653 -0.133222 4.907171 0.464349 3.860821 -6.265010 -6.162141 1.433892 1.461222 0.445105 -0.131364 1.390961 -3.444198 -3.941954 -6.517538 -1.776807 7.561856 2.906390 -1.486193 -1.241894 5.761594 -5.233410 3.790528 6.109896 6.712817 1.270099 -6.559227 -16.566629 3.462062 -3.863643 -2.587588 0.279078 -5.592065 -1.221807 5.050622 -5.519322 7.366483 -4.187878 -3.863365 8.083533 -11.385089 -8.260161 -7.648105 -3.913929 0.950872 1.085330 0.999276 -2.547865 2.010254 0.140319 1.375338 -4.497009 -5.265139 5.291112 5.415305 9.465568 -0.741248 1.460466 8.863984 3.991228 -1.269560 -2.733996 0.779219 -6.060280 -0.116365 -12.394978 -1.085828 4.164391 4.483185 -6.952489 0.248094 -1.585220 -0.120497 -0.155035 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 1.480192 -0.197355 -0.761913 2.555972 -0.166739 0.272804 0.675638 0.347798 0.033995 -3.909689 -1.547112 1.659874 0.557615 0.530851 0.069902 1.178086 0.571231 0.913141 -3.645851 -0.111491 1.205261 0.163344 0.196247 -0.152897 0.025505 -1.161246 0.732438 0.710759 0.430841 2.730032 -0.820084 1.613994 2.383006 -0.093795 0.423228 1.865921 -0.023107 -0.008394 -1.009619 -0.708606 2.897695 0.607189 0.016128 0.899153 -0.796614 2.825944 0.312939 2.633281 0.531008 -1.442159 1.427844 -0.569590 -1.242422 -0.204516 -1.996755 0.427252 1.167685 1.452078 -0.809889 1.236754 -0.699905 0.767656 1.022940 0.102707 2.525800 1.475430 1.554475 2.213574 2.330779 -2.162051 0.667100 0.284706 -0.297814 -0.224543 1.657337 -1.593003 -1.135330 -1.134342 0.001286 -2.638193 -0.707500 -0.120391 3.386117 -2.256502 -0.305428 0.500684 0.671517 2.707386 -1.138433 0.819580 -2.456992 -0.054998 0.049333 2.975720 0.337148 0.397382 -0.660851 0.600986 -0.016436 0.558000 0.417970 -2.106867 -0.972854 -2.766003 -1.490768 -1.629978 0.517879 1.300759 -2.994288 -0.009103 0.166304 1.932438 -4.053362 -0.205436 0.754965 1.378817 1.972377 1.297478 -1.064248 -0.018618 0.360689 0.736125 1.233073 -1.488123 0.911791 -1.024753 -0.148317 0.464051 0.776694 0.374909 -3.220837 -1.066151 0.646853 -0.721423 0.558239 1.528003 1.597007 -0.496650 1.286302 -1.900647 1.984976 -2.822723 -0.829495 -0.764283 -2.220204 -1.376113 2.795408 1.873951 1.626751 -0.242162 -1.337519 -0.321729 -2.955158 -3.518074 -0.085351 0.176900 0.540594 1.258296 -0.634790 0.834563 -2.024869 0.917741 0.896662 -1.079392 -1.255353 -0.068577 1.202898 0.276543 -0.877802 -1.129710 -0.039176 -0.154885 -0.047579 2.685913 -0.516670 -2.861366 -3.870618 -1.553446 2.430339 -1.257326 0.063975 -1.362738 -0.661600 -1.949224 -0.040915 -1.836890 0.198301 0.370348 -1.353142 -3.170165 1.329517 -0.531760 -0.806648 1.062846 -2.141732 0.294918 1.294369 0.423730 0.470833 0.356927 -0.019062 -1.902358 -1.581400 0.466161 -1.541377 1.902104 1.422357 -0.011117 -1.316797 -1.348418 -1.821611 1.725754 -1.612366 1.493553 -0.052512 -0.467700 1.350691 -1.990093 0.095770 -1.709425 0.979432 0.643845 -3.482438 2.754553 1.728845 -1.574767 -0.182339 -0.749769 1.155576 0.574530 1.630503 -1.635618 -1.608847 0.697847 0.005605 0.012583 -0.610310 0.661531 -0.898116 -0.410020 -1.964797 -0.639052 1.946568 1.241323 -0.449785 0.304437 1.626631 -0.621800 0.841575 2.037578 1.383021 -0.137324 -1.561897 -4.660850 1.205326 0.098786 -0.251032 0.121043 -1.745434 -0.553111 1.291753 -0.785302 2.223749 0.352767 -0.652560 2.320301 -2.832666 -2.425215 -1.741949 -0.524323 0.533369 -0.225347 0.158545 -0.799502 0.653056 0.286338 0.472396 -0.361160 -1.720954 -0.084978 1.072298 2.688342 -0.104399 0.002664 2.743422 0.646289 -0.535070 -0.489606 -0.000119 -0.778580 0.140479 -2.282748 -0.364785 0.688117 1.223926 -1.908587 0.814239 -0.504743 -0.187017 0.500424 -PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = 4.465326 -3.489311 -4.926283 11.321328 -0.253354 1.835802 0.932062 -0.390517 0.796700 -13.671559 -5.661534 9.521137 2.332068 1.928067 -0.145496 3.907223 2.780711 1.966569 -13.641034 -0.711662 2.017390 -1.366761 -1.528828 -0.710764 -0.377876 -3.882150 9.660973 3.144326 1.025480 8.063009 -1.951021 7.162840 7.085358 -0.368411 2.900198 4.763614 -3.644357 -0.628925 -6.393817 -4.166560 10.380744 2.827105 0.333100 4.195324 -2.572266 8.931345 4.054487 7.498613 5.962594 -3.379808 3.737919 5.090392 -3.617926 -2.137469 -9.300328 0.383682 2.658912 1.882442 -2.211392 2.958001 -2.820247 2.162283 3.508485 1.955088 11.515022 1.736339 10.067491 8.675439 6.410260 -7.014233 2.682307 0.885949 0.755554 0.727948 8.693262 -6.072895 -7.351813 -0.839591 -1.450172 -9.584688 -0.458417 -0.622676 12.251053 -5.908663 -3.930909 -2.344081 2.954688 10.006865 -4.474634 2.845090 -8.560713 -0.638969 -0.759685 10.438386 2.583211 2.102358 -1.874915 2.549961 -1.563646 1.636411 2.713380 -8.299300 3.355354 -12.472619 -4.718477 -6.119778 2.618193 3.495906 -8.720289 2.124639 -3.516727 5.971087 -12.682088 -1.937499 1.446827 2.482559 10.079245 -0.936057 -2.243430 -0.311871 1.788897 4.115193 4.766909 -4.698687 3.745045 -1.357738 1.026316 1.264723 3.458344 3.391806 -10.096268 -3.837707 2.375985 0.592261 2.325876 5.132238 6.619362 -1.170721 4.001175 -5.257578 7.298303 -9.903882 -2.595636 -3.686203 -5.678047 -4.970005 8.689765 6.646542 7.869222 -1.987233 -2.611429 0.737656 -11.522532 -14.079413 0.346968 1.599469 -2.153035 4.101033 -1.754076 4.040307 -7.674702 3.659490 7.014041 -3.879917 -5.181184 0.118017 1.245264 2.584792 -2.795766 -2.342264 -0.712231 -2.403502 2.421808 11.130663 -0.946649 -17.022888 -14.051666 -3.429786 7.682790 -4.755443 -0.724689 -3.989672 -4.370865 -4.910445 -0.896271 -6.456452 0.411775 0.812169 -5.174158 -10.373843 3.180552 -1.023161 -1.325327 3.090753 -8.128643 1.790457 5.512268 2.782533 0.722210 2.085805 0.153416 -6.426021 -4.708548 3.332860 -5.701575 8.168456 4.243731 -1.335546 -5.608541 -4.041588 -6.503636 4.185772 -5.387945 6.172871 0.425732 -3.969446 2.200859 -7.948336 1.526324 -4.042014 2.453795 1.013374 -15.313305 10.932416 7.307993 -5.450940 0.240404 -0.876691 4.462273 -0.900189 4.299801 -7.266866 -5.391023 0.985773 1.102483 0.248765 -1.222665 1.505708 -1.715243 -4.660898 -7.879805 -3.579874 7.516208 2.626940 -0.714838 -0.688356 4.350111 -4.497660 1.495710 8.236687 5.643714 1.580752 -6.529448 -18.888777 2.996498 -0.438658 -2.869579 1.033296 -5.429200 -2.557498 3.215058 -5.273752 6.426769 -1.258144 -4.899476 7.479679 -9.905032 -7.317232 -8.189299 -3.481912 1.463619 0.274749 2.291330 -4.011924 1.354115 -1.557674 1.859039 -5.062154 -4.433126 4.486470 4.939598 7.981136 0.167098 0.722087 8.407022 3.250084 -1.929520 -2.971661 -0.223249 -6.609705 2.326095 -11.688540 -1.287209 2.925256 4.463993 -6.239783 0.248526 -0.752918 2.607046 0.378087 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 1.331570 -0.749393 -0.731150 2.623861 0.031229 0.112486 0.529016 0.510685 0.151429 -3.776409 -1.828196 1.563240 0.452857 0.150411 0.318372 0.791850 0.766675 0.873199 -4.059327 0.013658 0.880816 0.035511 -0.231642 -0.407013 -0.020446 -1.012890 1.054442 0.975953 0.265702 2.373334 -0.748168 1.438690 2.005723 0.003751 0.676409 1.641417 -0.496342 -0.171931 -0.789698 -0.702662 3.088549 0.858445 -0.122005 1.113500 -0.223174 2.548857 0.494735 2.204568 0.875029 -1.040166 1.270367 -0.153878 -1.131155 -0.368865 -2.383596 0.378173 1.615933 1.212766 -0.853201 1.242411 -0.920318 0.606167 0.963012 -0.121578 2.900234 1.071004 2.080219 2.107551 2.245753 -1.871839 0.578546 0.228948 0.420137 -0.028251 1.511470 -1.675313 -1.291902 -2.009570 -0.217323 -3.193902 -0.142720 -0.219123 3.515371 -1.855934 -0.383369 0.390330 0.609680 2.505700 -1.291885 0.441247 -2.337596 -0.032234 -0.151697 2.990318 0.444739 0.429790 -0.391767 0.805281 -0.073800 0.672656 0.471561 -1.980765 -0.521907 -4.049509 -1.515319 -1.392218 0.418524 0.649316 -2.578242 0.204148 0.315825 1.386870 -3.634979 -0.438676 0.681433 0.949492 1.474962 0.087222 -1.214993 -0.170524 0.097793 1.010182 1.209235 -1.490477 0.773534 -1.057797 0.056266 0.461110 0.912439 0.500368 -2.512688 -0.991110 0.475078 -0.106057 0.332907 1.128849 1.343083 -0.489924 1.183572 -1.775751 2.065763 -2.920915 -0.454464 -1.043184 -1.738356 -1.137930 2.899075 1.761450 1.624131 -0.101473 -1.028430 -0.075536 -2.914985 -3.723711 0.317721 0.258203 0.382453 0.711044 -0.490944 0.654894 -1.748211 0.545964 1.186200 -1.158830 -1.084246 -0.180288 1.165565 0.354860 -0.859650 -1.195464 0.099114 0.467694 0.086815 2.249959 -0.620453 -3.166922 -3.396186 -1.269484 2.166903 -1.110199 -0.029414 -0.995772 -0.661681 -1.732286 0.228722 -1.719639 0.170860 0.108267 -1.638988 -2.926763 0.835749 -0.408382 -0.387415 0.828188 -2.075710 0.429406 1.341590 1.114352 0.233627 0.491135 0.212766 -2.125417 -1.837220 0.227047 -1.198899 2.219052 1.338015 -0.080973 -1.492135 -0.969028 -1.762115 1.641201 -1.426177 1.335221 -0.105376 -1.130651 1.173624 -1.909610 0.054753 -1.668898 0.780884 0.424142 -3.907412 3.109372 1.879238 -1.667668 -0.285170 -1.006874 1.107310 0.229662 1.770437 -1.733780 -1.279059 0.552852 -0.051899 -0.037670 -0.822920 0.701148 -0.499111 -0.512559 -2.233043 -0.998691 1.975577 1.142695 -0.273669 0.407754 1.252402 -0.412068 0.364968 2.411884 1.266223 -0.034191 -1.671670 -4.889343 1.003425 0.763660 -0.281509 0.265002 -1.632399 -0.914235 0.726481 -0.595502 1.967512 0.973229 -0.751136 2.127543 -2.414960 -2.161287 -1.763497 -0.386159 0.593202 -0.506144 0.515397 -1.090975 0.422316 -0.124185 0.629834 -0.478367 -1.458694 -0.294028 0.934844 2.274031 0.198704 -0.213920 2.508783 0.615878 -0.808456 -0.515730 -0.185313 -1.013751 0.647265 -2.123335 -0.426618 0.357209 1.122800 -1.710145 0.814915 -0.229138 0.488355 0.517882 -PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 8.103737 -4.791030 -9.269005 24.126625 -0.810569 4.164546 2.989253 -1.746117 1.257596 -31.483991 -11.266367 19.474146 5.191245 4.535275 -2.739134 8.228261 5.646552 7.960755 -28.967145 -2.599016 7.022553 1.563190 0.630469 -2.893976 -0.359696 -7.087408 19.132128 4.394434 3.807761 19.231723 -4.293598 15.408996 17.149011 -1.609828 3.539667 11.730810 -5.013668 0.462636 -13.435832 -8.964963 22.473024 4.179333 3.189992 10.593798 -6.841668 20.155722 9.244834 14.378593 14.589514 -8.764155 7.692927 12.137383 -7.088508 -6.322158 -18.618488 2.146320 6.820539 7.836308 -4.559934 6.642694 -1.209552 4.186342 8.041140 2.597597 20.238343 7.440472 16.747257 19.671539 15.980495 -15.484269 5.729827 0.349477 -0.842632 0.920341 20.122495 -16.529567 -15.929059 -0.827380 -6.569682 -22.406754 -0.417870 -0.837467 26.850252 -14.551160 -5.553573 -4.337171 6.763529 20.483631 -6.310791 4.092495 -18.944055 -1.269581 -1.990022 22.509910 4.751766 3.763055 -5.640372 4.272775 -2.794028 2.354363 7.225481 -18.166735 7.379795 -24.207926 -10.464113 -14.533028 5.858638 10.081107 -19.260740 2.918731 -10.693269 12.025482 -31.446752 -4.225397 3.464940 7.631956 19.926511 -2.799392 -6.155851 0.348521 3.164748 6.407598 8.276277 -11.480351 6.408157 -0.972401 -2.623961 1.695520 5.946086 5.890371 -21.736038 -10.391491 0.980209 0.978688 5.548032 11.635643 14.623670 -2.966199 8.635484 -12.690223 15.380688 -20.569265 -7.639122 -5.326213 -14.050568 -12.354402 17.329583 9.844630 15.812511 -7.451812 -7.758384 -0.854513 -23.759443 -26.628987 1.927201 2.154593 -2.829813 12.669695 -4.595783 7.916952 -17.782997 8.063017 14.961154 -6.559867 -10.379560 1.189313 4.165949 2.822804 -5.347090 -6.406766 -1.844162 -5.362877 6.374204 23.367714 -3.457525 -31.752596 -31.557370 -7.656047 17.464235 -11.228700 -1.246324 -9.933291 -8.534402 -10.205130 -2.335093 -15.783473 -0.459721 2.138830 -11.032492 -23.411574 9.446896 -3.773683 -2.568554 8.591858 -17.635023 3.801760 11.278567 7.667000 1.878823 1.718560 0.286942 -15.911908 -9.681331 6.571123 -13.054068 14.599637 8.006677 -0.548216 -14.404777 -9.421460 -12.867335 7.456315 -8.930505 12.918164 1.088119 -4.966724 5.903076 -17.208855 7.022493 -11.023562 4.415126 3.639326 -34.166030 22.812292 12.529676 -10.664408 1.135308 -0.141087 9.039605 -1.440914 6.706492 -15.452384 -15.017366 4.470382 -0.313133 0.882938 -6.205993 2.518528 -4.966591 -7.452523 -17.159093 -6.808636 16.059194 6.074063 -3.451759 -1.068913 11.826794 -11.362689 2.254214 17.534046 13.951584 4.563337 -13.622411 -37.591002 6.586436 -1.793244 -2.471537 0.429056 -10.793008 -4.143095 11.052874 -8.715285 14.984200 -2.797576 -9.840676 16.666603 -23.092969 -16.403908 -14.594081 -7.790417 6.728756 0.737334 1.344724 -9.017216 3.670973 -1.882567 3.161733 -8.773134 -11.166866 11.776044 11.645047 20.445457 -0.831055 2.348028 19.192985 5.993858 -4.503466 -3.063776 -0.110414 -11.582523 1.867891 -24.456976 -0.909678 7.810356 9.812556 -13.824419 3.138012 -5.779620 2.829705 0.976218 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 8.715758 -4.394470 -8.614422 24.728845 -1.170680 3.649255 3.962311 0.071074 1.041775 -33.759376 -13.023248 17.821943 5.357605 4.263197 -1.907408 7.971295 5.372021 9.205523 -33.013013 -2.496149 8.807601 2.589719 1.672383 -3.840707 -0.230477 -7.392566 16.351875 5.224880 3.962940 21.174139 -4.806313 15.354922 18.624960 -1.299520 3.102731 13.299556 -4.866917 0.541813 -12.022844 -8.549084 23.993625 5.278115 1.998159 10.569699 -6.915662 21.829762 8.577663 14.785271 12.515199 -9.824114 8.313660 9.126000 -8.222750 -6.430328 -18.834688 2.540659 9.796841 10.682920 -4.838717 8.125359 -2.394560 4.305818 8.686641 1.077705 21.172373 9.195987 16.802913 20.433404 17.841318 -16.747892 6.007255 0.041442 -1.286726 -0.363982 19.039287 -17.470494 -15.510377 -5.932795 -6.168343 -26.576873 -1.441013 -0.537568 28.849747 -16.134448 -4.305667 -2.378826 7.090351 21.661519 -7.331614 4.010164 -20.012146 -1.307891 -2.153877 24.878149 4.706998 3.413766 -5.438311 5.103606 -1.763664 2.960054 7.104672 -18.440285 4.343080 -27.299138 -11.049761 -14.745339 5.804798 10.698166 -20.913169 2.105714 -7.789794 12.034194 -34.105710 -4.266298 4.652471 9.301669 18.175877 -2.451116 -8.089161 0.642005 2.339053 6.373935 9.442102 -13.272578 6.603527 -2.096449 -3.149168 2.160491 6.017229 5.686136 -23.182815 -11.095108 1.133691 -0.277681 5.663227 12.193653 14.816711 -2.864758 9.369093 -14.839649 16.900516 -22.666711 -6.653434 -5.291211 -15.286250 -12.721077 18.856596 11.167484 14.401945 -7.183271 -8.899222 -1.036858 -24.702477 -28.262505 2.463841 2.833630 -0.589293 12.128876 -5.125678 7.718896 -18.248581 8.234023 14.052674 -7.034069 -10.358306 1.230264 7.201413 2.878267 -6.010097 -7.660739 -1.332114 -3.608053 5.200104 23.604859 -4.293967 -29.826520 -33.034406 -8.949481 19.067086 -11.462793 -1.558239 -10.901105 -7.952520 -11.931403 -1.241909 -16.610694 -0.155490 2.650792 -12.310888 -25.398226 10.021330 -4.055009 -3.127212 9.364813 -18.434858 3.457090 12.067703 8.696934 2.107139 1.523605 1.113970 -17.220344 -11.260895 5.620634 -13.479505 15.566635 9.023778 -0.163125 -15.378266 -9.563048 -13.486480 9.559261 -8.246975 13.242901 -0.436385 -5.336602 7.747666 -17.757463 6.436226 -13.094306 4.894437 4.329755 -35.213849 24.923780 13.195155 -11.209689 0.705824 -1.688445 9.117371 -0.307431 8.172890 -16.155634 -16.084639 5.085111 -1.322644 0.754163 -7.337021 3.205731 -5.742615 -6.874417 -17.998878 -6.938764 16.935184 7.211291 -3.636161 0.973122 12.937219 -10.241029 2.470151 18.688673 14.280898 2.958165 -14.126266 -39.255695 7.865631 -0.020181 -1.670215 -0.335437 -11.713400 -5.109798 11.549332 -6.883598 16.279833 1.292466 -10.066228 17.961556 -23.900505 -17.796909 -15.220279 -6.555685 7.500408 -0.319042 0.726377 -9.206379 4.558739 -0.715683 3.206948 -6.891667 -12.983350 8.758662 11.403487 22.285413 -0.785347 1.354408 21.127960 5.785594 -5.416260 -3.050206 -0.571406 -11.218970 1.904589 -22.940908 -0.976383 7.778964 10.524472 -14.770110 4.546945 -5.813977 1.866890 2.200429 -PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = 3.990182 -2.102943 -7.427578 15.107180 -1.037292 3.488090 1.055937 -2.059382 -0.253633 -19.829661 -6.789172 11.273249 4.239528 4.753436 -1.340975 5.743254 2.391003 3.546108 -16.033448 -2.270045 4.780631 0.438339 0.007472 0.812800 -0.543165 -4.500129 11.712022 1.230724 2.078628 11.579969 -2.018779 11.893679 10.798048 -2.189944 1.326558 5.843411 -2.688231 0.125493 -8.785259 -4.346531 12.931764 1.275578 1.919309 5.383035 -6.431604 11.683491 4.152143 9.363371 4.534908 -5.851677 4.800434 7.401771 -3.131542 -2.973364 -10.506869 1.397199 3.321750 4.780467 -1.717844 2.824740 -0.917705 1.928645 4.810896 2.565338 13.547165 5.059060 11.859125 12.954974 8.606459 -8.719271 4.269258 0.026564 -3.710271 -0.519952 12.624084 -7.750856 -8.488714 2.958152 -3.560514 -11.830351 -1.815970 -0.779885 15.339387 -8.564490 -4.791015 -3.934794 4.972112 13.503906 -3.906486 4.671200 -11.691684 -1.867783 -0.895304 12.188119 2.890529 2.444524 -4.965537 2.553675 -2.178701 0.252566 4.096628 -10.618017 4.463642 -10.625292 -7.072550 -8.002418 3.485504 8.290209 -13.215904 1.674475 -9.272021 8.639961 -19.599918 -1.843060 0.741966 5.572747 17.220265 1.976859 -5.454256 -0.138798 3.451050 2.718179 4.753339 -5.205921 5.794575 -2.961759 -0.912932 0.855551 2.886511 4.094560 -15.519462 -5.987704 0.959916 -1.219927 4.155336 8.383094 10.957923 -1.439421 5.321211 -7.173067 8.185956 -12.627994 -6.058910 -2.549651 -11.191308 -7.283448 9.715039 7.458829 9.643788 -4.941090 -6.945536 -0.255294 -15.665418 -16.535607 -0.819034 1.624397 -2.586393 9.033127 -3.339312 5.767519 -11.151867 6.851350 10.790075 -3.408634 -6.777952 0.743172 2.554071 2.653266 -2.636430 -2.809980 -2.262207 -6.012361 3.736372 16.718888 -0.595320 -18.118189 -21.759059 -3.688346 10.175831 -6.359659 -0.364984 -7.114642 -5.279355 -8.841596 -2.652750 -8.994227 -1.729010 1.803812 -6.087876 -13.885239 6.028001 -1.371494 -4.568394 4.894417 -10.568855 2.050596 8.577874 3.392522 2.219606 -0.116917 -1.351932 -7.344493 -5.657091 5.613716 -9.303991 9.173845 4.846308 -1.375722 -7.249525 -6.166619 -8.600130 5.112876 -5.035557 8.177052 1.550271 -1.420372 2.279449 -11.769771 2.241491 -6.011660 2.308138 1.387725 -19.114895 13.313091 5.698291 -5.381836 1.731826 0.904407 6.484254 -1.245922 2.257012 -8.317973 -8.333532 1.985147 1.943095 0.731206 -3.727377 1.056135 -4.296261 -5.723701 -9.527128 -3.563409 9.865968 3.200630 -2.345202 -1.340023 7.013752 -8.553633 2.307683 9.088392 9.602559 1.400607 -6.070468 -19.493775 3.407995 -6.353741 -3.395724 -1.933015 -7.123025 -1.084004 7.068471 -7.852662 8.686120 -5.120697 -6.339333 9.814754 -15.452147 -9.529511 -9.152873 -4.578942 2.809346 2.084869 0.195024 -4.835924 3.224944 0.569707 1.585023 -5.932361 -9.097514 8.196731 6.887918 11.667965 -3.187529 2.894592 11.174532 4.606687 -1.026604 -2.653262 1.086034 -7.471495 0.026142 -16.894013 -0.699126 5.816046 5.497285 -8.487988 0.450071 -4.578392 0.396612 0.884089 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 1.265914 -0.439284 -1.229621 3.398060 -0.173605 0.503906 0.567145 0.244617 -0.072559 -5.132197 -2.194709 1.776216 0.855561 0.761213 0.167063 1.198326 0.698203 1.205885 -4.762797 -0.338960 1.540700 0.406399 0.159816 -0.066923 -0.032661 -1.172538 1.279685 0.565295 0.481694 3.163369 -0.785669 2.469207 2.820038 -0.360187 0.324797 1.868518 -0.417578 -0.042024 -1.185704 -0.729161 3.645510 0.569853 0.150562 1.318363 -1.060078 3.162214 0.395643 2.630710 0.494879 -1.589003 1.582088 0.116218 -1.071652 -0.446867 -2.618965 0.583349 1.875836 1.886484 -0.720191 1.251622 -0.626234 0.608509 1.234831 -0.122848 3.377333 1.831642 2.506300 3.005301 2.693605 -2.248070 0.966672 0.001309 -0.581749 -0.354620 2.191055 -2.060468 -1.410220 -1.457721 -0.608757 -3.832896 -0.430910 -0.268804 4.251456 -2.443713 -0.550981 0.119788 1.025336 3.295231 -1.212861 0.879985 -3.001463 -0.269822 -0.175076 3.355627 0.493829 0.474227 -1.033989 0.832104 -0.196942 0.362308 0.733844 -2.419144 -0.483486 -3.771898 -2.046240 -1.752521 0.660046 1.684743 -3.584919 0.161092 -0.716036 1.869394 -5.127721 -0.409497 0.542509 1.675502 2.802220 0.832329 -2.006048 -0.202656 0.404682 0.804565 1.251570 -1.640572 1.266351 -1.556927 -0.372358 0.418267 0.834374 0.632836 -3.647280 -1.458309 0.195891 -0.562760 0.711753 1.876618 2.302043 -0.458872 1.505199 -2.221242 2.290384 -3.586464 -1.130118 -0.852491 -2.889772 -1.623237 3.197351 2.092565 1.892739 -0.625660 -1.948777 -0.275813 -3.825492 -4.194359 0.020468 0.302115 0.416547 1.698131 -0.832604 1.034072 -2.470831 1.256962 1.861189 -1.090797 -1.419128 -0.081269 1.578324 0.388926 -0.877152 -1.348569 -0.197989 -0.211930 0.167193 3.404073 -0.526995 -3.212783 -5.048360 -1.365695 2.735879 -1.462483 0.080820 -1.692400 -0.751623 -2.604618 -0.104626 -2.254106 -0.321492 0.383401 -1.904901 -3.712797 1.434355 -0.461620 -1.108242 1.227931 -2.604410 0.472175 2.084995 1.342364 0.583008 0.058617 -0.091643 -2.334290 -2.097282 0.622569 -2.017490 2.448260 1.547473 -0.153169 -1.864112 -1.423563 -2.206216 1.934421 -1.285595 1.766456 0.012390 -0.613877 1.178822 -2.724335 0.169375 -2.154141 0.734303 0.489147 -4.825350 3.630419 1.542605 -1.671091 0.021797 -0.806768 1.593422 0.150337 1.382526 -1.919680 -1.849976 0.716630 0.090133 0.067596 -1.374240 0.654493 -1.064900 -0.797399 -2.576000 -0.972990 2.545555 1.271078 -0.608710 0.378532 1.892572 -1.131429 0.638638 2.578757 2.079373 -0.228052 -1.560477 -5.123277 1.098720 -0.253063 -0.384407 -0.371313 -2.028980 -0.652983 1.482084 -1.058955 2.461694 0.375059 -0.982529 2.645936 -3.507193 -2.635359 -2.010075 -0.535873 0.851592 -0.169331 0.016475 -1.236182 0.822083 0.398753 0.592343 -0.545444 -2.547032 0.255450 1.315860 3.142450 -0.494853 0.221258 3.122462 0.933691 -0.653609 -0.475034 0.063607 -1.208852 0.192780 -3.090645 -0.308256 0.984709 1.317602 -2.228964 0.851020 -0.981773 0.000637 0.636018 -PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 5.907572 -0.278576 -2.518459 7.788703 1.380556 -2.174293 0.946701 3.494427 0.133073 -8.901491 -3.629780 5.434166 0.763106 -0.910111 1.606790 2.558212 2.604272 3.547325 -10.702790 1.760540 0.036216 0.449107 -3.034768 -4.569625 0.378633 0.701505 2.339789 3.063542 1.148218 6.006990 -3.836476 2.536488 4.453750 0.840639 4.599875 2.353012 1.485252 -0.593800 -3.135677 -2.919182 10.369739 3.421583 -0.443174 5.034134 1.575748 7.123974 1.739926 6.619511 -0.044749 -0.885909 3.029917 -2.254306 -3.025627 -0.381090 -8.242583 2.500526 5.595510 3.336067 -4.065626 4.530148 -0.208541 2.488102 3.453322 -1.165948 9.337407 3.242872 5.108934 6.231329 8.004748 -4.459010 1.586797 -1.167233 5.541275 -0.269582 3.141963 -6.667709 -2.719362 -7.896443 0.241316 -10.157956 2.243115 -1.646962 9.946106 -6.495476 2.536403 3.050976 1.111948 6.106312 -5.796589 -0.079458 -6.850363 -0.832398 -1.744498 10.800008 0.117922 1.611053 0.052428 2.969169 0.372762 2.286087 1.409835 -5.574498 -0.517360 -11.425566 -5.260819 -0.660369 -1.704977 -0.885975 -5.198035 -0.734310 1.819920 4.143784 -10.306151 -3.055138 1.485381 0.324617 3.579287 -0.656848 -2.607172 0.973394 -2.104828 3.438030 1.991566 -5.490853 1.226967 -2.406961 -2.284439 2.112630 4.661090 2.432178 -7.340617 -1.337304 1.328635 -0.479687 -0.698137 0.737493 0.130257 -4.259604 3.413075 -5.183994 5.817630 -7.786732 -2.947239 -2.978228 -5.189384 -1.987192 8.285359 1.405730 5.102282 2.564372 -2.085371 -0.404053 -7.902766 -11.617050 4.162822 0.903761 0.458109 1.163401 -0.753401 0.159491 -4.692844 -2.263752 5.459715 -5.408840 -5.596062 -2.968262 5.416283 -0.203359 -2.927046 -4.081156 2.259388 5.425600 2.102980 4.540252 -3.287239 -9.185736 -7.508178 -2.993805 6.098452 -2.663710 0.537624 -0.606374 -0.257678 -6.415818 0.960695 -6.718096 3.848175 -0.765025 -3.608801 -7.970677 2.430470 -1.472098 1.589411 1.344268 -5.249955 3.470363 1.402075 4.273439 -2.871752 2.328088 3.140277 -8.050361 -7.874274 -0.434291 -0.402655 7.323492 1.568600 2.320779 -4.114464 -1.738217 -4.838191 5.432515 -6.218110 3.438412 0.192540 -2.266917 4.209900 -5.295718 -1.788163 -5.623322 3.328447 1.411963 -7.350539 8.924869 5.264950 -6.562745 -1.565168 -5.416350 4.324250 0.999207 8.978644 -5.348644 -4.153517 2.754107 1.115071 -1.236314 -4.787059 2.655627 0.097777 -0.015181 -7.695968 -3.363456 4.804677 3.938908 -0.169270 1.831912 2.466797 -1.312669 -2.561814 9.457576 2.662905 1.699705 -5.145645 -12.120770 1.190656 3.250692 1.520018 0.637482 -4.633151 -2.854387 0.142510 -0.145791 5.989174 4.139993 -1.247435 5.881147 -8.115760 -6.460161 -4.015665 1.264852 2.079901 -3.417690 1.835080 -4.077320 0.261072 -0.774881 3.081352 -1.016330 -2.388470 -2.758071 0.914116 5.196808 -0.094018 -2.577503 7.765306 1.839672 -2.882387 0.292791 -1.312216 -1.359577 2.850139 -6.245718 -1.781824 -0.684388 2.712604 -5.472785 3.926954 0.123779 1.875487 1.465027 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = 4.468750 -0.656287 -1.536366 4.432667 0.794801 -3.873926 1.180546 3.418490 0.578096 -5.437667 -1.916504 2.289424 0.809637 -2.342452 0.866239 1.531281 1.162615 2.971341 -7.612404 2.885231 0.568048 1.241655 -3.806569 -3.570375 -0.167497 -0.534912 -1.175882 2.642175 0.088235 4.133573 -2.966963 0.143239 3.232098 -0.478009 3.310632 3.492823 2.605711 -0.212016 0.309343 0.426686 7.588823 3.725967 -1.371383 2.414314 2.656485 5.262028 0.359932 5.076283 -2.944813 -1.410116 1.375856 -1.957334 -2.565082 -0.631346 -5.380002 2.715916 5.849686 3.545273 -4.332987 4.259653 -1.260416 1.080926 3.127381 0.527526 6.289027 2.969377 2.005410 3.821606 7.605248 -2.323414 0.707135 -0.142243 4.764230 -1.280349 3.061705 -3.201545 -2.340859 -8.367412 1.155757 -7.255037 1.494331 -0.102115 6.396512 -5.503060 3.183863 4.496454 2.140408 4.213924 -5.024604 -1.545309 -4.552129 -0.271728 -1.807846 10.276021 -0.433388 1.469462 -0.068646 3.611677 1.035780 2.150222 0.138722 -4.271370 -2.697291 -9.911390 -4.401473 -1.265197 -2.994861 -1.471459 -4.927848 -2.183878 4.569304 3.475889 -7.771780 -0.289258 1.997138 -0.161704 2.153381 -1.198368 -2.431111 1.530381 -2.859723 0.969965 0.863767 -3.383325 -0.188472 -1.690729 0.022526 2.239177 2.191068 0.674741 -5.966466 0.759609 1.050489 -0.840535 -1.272732 0.411516 -0.738614 -5.518060 2.409221 -5.012920 4.215203 -6.077042 -0.869992 -2.518435 -4.809411 -0.607361 4.625505 0.672827 2.168210 1.012526 -2.274854 -0.712860 -6.362573 -9.751276 3.089424 -0.122498 1.342093 -0.922741 -0.698831 -1.848061 -1.972294 -2.074992 3.094533 -4.423296 -2.475301 -1.876663 7.224198 -0.371803 -2.131508 -3.097251 1.020738 5.747253 2.332035 1.709217 -3.216102 -4.502662 -4.913278 -2.508936 4.097778 -0.667547 0.640779 -0.643471 -0.814961 -5.509373 2.395575 -4.197812 3.341296 -2.283470 -1.197207 -5.524202 0.848740 -1.260838 0.774680 -0.681883 -3.801381 2.337399 0.036287 1.436188 -1.866625 0.586625 2.810880 -6.488362 -5.898889 -0.082209 1.138556 5.933147 2.161470 2.579788 -1.083491 -0.407052 -4.109069 4.170362 -5.290262 1.407404 1.136364 -3.333950 5.249236 -3.491871 -3.176026 -4.978733 2.972512 0.329315 -0.598653 8.615025 4.548886 -5.225102 -1.413804 -3.456957 2.491519 2.309103 7.454053 -3.693021 -2.445511 2.710340 -0.437169 -1.391248 -2.909597 2.291056 -0.733932 3.063953 -5.175686 -2.034301 2.746831 4.158161 -0.394191 1.713311 -0.385863 -1.289777 -2.852371 6.418915 1.426984 1.335301 -4.407340 -6.876650 1.874989 -1.365548 1.218025 -0.377611 -2.503817 -2.221954 -0.104036 2.069138 4.960423 5.341472 -0.792356 4.030658 -7.180399 -5.824409 -1.938085 1.560791 1.409167 -3.155165 2.021396 -3.394575 0.572708 -0.898950 3.132272 -0.083631 -2.073896 -3.861090 0.544488 2.541684 0.690656 -4.484136 6.017133 0.039371 -1.801964 0.096981 -1.161495 0.661121 1.611403 -1.337546 -1.790337 -2.314272 2.514693 -3.546436 5.431702 -0.243900 1.755874 2.778925 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 1.101961 0.128509 -0.365787 1.540247 0.112897 -1.247295 0.322808 0.880223 -0.656848 -1.588918 -0.576432 0.139505 0.048666 -0.678770 0.383106 0.273624 0.180876 0.366042 -2.350410 0.789808 0.182550 -0.113311 -1.176405 -1.027686 -0.014998 0.154548 -0.489647 1.097545 -0.172523 1.265043 -0.953615 0.302607 0.659290 0.366571 1.238590 0.655607 0.200007 0.025048 0.239331 0.086532 1.899993 0.979167 -0.912867 0.194363 0.797041 1.427173 0.048071 0.718887 -1.974650 -0.047573 0.350159 -0.350135 -0.463277 0.016329 -1.403402 0.289652 1.957709 1.243319 -0.884246 1.018996 -1.161703 0.488012 0.857212 0.460878 2.246465 0.845452 0.810031 1.225823 1.857130 -0.862569 0.370589 -0.189437 1.350895 -0.821727 -0.339875 -0.224594 -0.525108 -2.744820 0.231688 -2.679959 0.159523 0.338144 1.751392 -1.108343 0.659180 0.750824 0.517184 1.086461 -2.003029 0.003258 -1.336138 -0.179330 -0.854671 2.851597 -0.140269 0.445197 0.158784 1.128638 0.522188 0.721222 -0.552495 -1.096994 -0.599762 -2.887103 -1.175304 0.119377 -0.999411 -0.550076 -1.393912 -0.617202 1.901931 1.101805 -1.953244 -0.417918 0.144451 0.065359 0.150444 -0.153662 -1.205313 0.698339 -1.150726 0.445716 0.835756 -0.520591 0.309022 -0.876661 -0.115918 0.635965 0.954342 0.774298 -2.239655 0.375013 0.699331 -1.083187 -0.483386 0.179570 -0.476832 -0.720622 0.476408 -1.504005 1.466991 -1.909611 0.254491 -0.983367 -1.654949 0.312384 0.404980 1.205431 -0.085684 0.568249 -0.332735 0.276277 -1.821981 -2.818278 0.859323 0.418549 0.266164 -0.809874 -0.199779 -0.246843 -0.765045 -0.652525 1.507380 -1.381996 -1.044112 -1.099058 2.594124 0.358498 -0.763937 -0.461321 0.409387 1.543521 0.344072 0.839764 -1.086949 -0.846956 -1.910360 -0.704911 1.153736 -0.247694 -0.425535 -0.082620 0.091221 -2.032483 1.019226 -1.010334 1.113467 -0.527352 -0.188825 -1.566486 0.156860 -0.194445 -0.102157 -0.352226 -0.775697 0.460042 0.468833 -0.012678 -0.465014 0.512923 1.036362 -0.997279 -1.736801 0.241105 0.704908 1.392771 0.902438 0.588044 -0.507044 -0.270937 -1.317012 1.704506 -0.600840 0.597322 0.170952 -0.790701 1.544058 -0.986699 -1.125888 -0.712961 0.885403 0.260327 -0.324635 2.427304 1.406067 -1.553733 -0.523558 -1.498749 0.955898 0.511367 2.234331 -1.183107 -0.447046 0.590564 0.308747 -0.476466 -0.518185 0.664084 -0.125601 0.474477 -1.393901 -0.724167 0.835946 0.888827 0.179842 0.525296 -0.466827 -0.490877 -0.779723 1.934509 0.421707 0.160631 -1.007358 -1.570455 0.308941 -0.959915 0.347069 -0.251963 -0.484282 -1.055158 -0.528861 0.304327 1.477831 1.464724 -1.290198 1.197824 -1.775764 -1.388312 -1.101812 0.835878 0.106165 -1.294838 0.627915 -0.901338 0.094580 0.199688 0.943590 0.264435 -0.666165 -1.466368 -0.264843 0.720250 -0.045488 -1.512882 1.568793 0.174504 -0.609316 -0.404024 0.136002 -0.099577 0.694559 -0.805887 -0.756698 -0.694805 0.964132 -1.060603 1.320807 0.483355 0.501028 0.919017 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.243154 -0.195020 -0.023961 0.379930 0.091330 -0.287250 0.107645 0.155441 -0.062684 -0.596593 -0.223696 -0.154226 0.011993 -0.244725 0.191157 0.128364 0.172529 0.207763 -0.695506 0.264282 0.175623 0.013010 -0.226625 -0.111922 -0.011817 -0.268326 -0.192859 0.307887 -0.042259 0.422571 -0.298208 0.130414 0.342627 0.022667 0.370660 0.438591 0.124489 -0.067648 0.191831 0.259732 0.752160 0.176231 -0.114533 -0.000699 0.293104 0.522170 0.000995 0.346798 -0.115745 -0.162284 0.284895 -0.315023 -0.107214 0.011684 -0.561930 0.122413 0.456907 0.351620 -0.449972 0.335488 -0.349724 0.118545 0.221227 0.052658 0.685862 0.159633 0.216617 0.329303 0.619993 -0.205012 0.057733 0.054952 0.317190 -0.146206 0.110986 -0.089699 -0.080512 -1.097524 0.028820 -0.578352 0.063018 0.088234 0.424837 -0.399247 0.149682 0.442877 0.069806 0.443643 -0.387403 -0.135738 -0.526301 0.001490 0.020452 0.625711 0.020674 0.047600 0.016568 0.311114 0.042618 0.229787 -0.051618 -0.465490 -0.474066 -1.060055 -0.518654 -0.210645 -0.165507 -0.173858 -0.618412 -0.128322 0.616127 0.308707 -0.677741 0.089252 0.152074 0.085133 -0.065370 -0.219652 -0.322636 0.009384 -0.195663 0.230577 0.192782 -0.183192 0.022658 -0.495452 0.194986 0.192969 0.211698 -0.067122 -0.258009 0.022617 0.163695 -0.059541 -0.169217 0.082933 0.013445 -0.325000 0.228739 -0.424635 0.464599 -0.543682 0.097104 -0.385167 -0.367448 -0.064036 0.643128 0.306885 0.117383 0.140327 -0.370699 0.076648 -0.605684 -0.905727 0.136305 -0.135077 0.204363 -0.082266 -0.100889 -0.077577 -0.107301 -0.090809 0.146204 -0.390945 -0.161930 -0.175891 0.228750 0.051166 -0.218264 -0.304491 0.037919 0.567832 0.030785 0.190037 -0.328712 -0.194799 -0.464212 -0.339536 0.372487 -0.116204 0.069132 -0.101662 -0.033478 -0.601570 0.356765 -0.341357 0.105745 -0.282700 -0.143779 -0.507540 0.021153 -0.158492 0.019586 -0.070935 -0.343000 0.161107 0.011228 0.027738 0.016478 0.048327 0.097680 -0.454672 -0.523944 -0.023677 0.058033 0.456700 0.240604 0.142421 -0.160844 -0.119164 -0.359566 0.443947 -0.361300 0.130783 0.207686 -0.514970 0.476149 -0.271089 -0.286173 -0.247475 0.275344 0.031574 -0.278763 0.703641 0.473728 -0.529753 -0.162418 -0.392810 0.243643 0.210907 0.627988 -0.184440 0.033413 0.170048 0.047524 -0.077439 -0.195428 0.234761 -0.096942 0.282943 -0.525113 -0.277361 0.329673 0.430284 -0.021475 0.109366 -0.059278 0.082665 -0.170131 0.552852 0.074951 0.115877 -0.306694 -0.646957 0.167984 0.085214 0.139411 0.132740 -0.245223 -0.172820 -0.120050 0.090332 0.524302 0.549667 -0.096082 0.417432 -0.465341 -0.541508 -0.288000 0.095484 0.040806 -0.340292 0.259067 -0.302167 0.017446 -0.110438 0.325884 0.080778 -0.183752 -0.463429 0.078027 0.202080 0.180451 -0.372101 0.501755 -0.000243 -0.220018 -0.114187 0.014147 0.034978 0.291117 -0.085660 -0.291166 -0.220845 0.250869 -0.302800 0.419817 -0.123590 0.252649 0.254577 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 1.519233 0.007722 -0.186547 1.451650 0.073754 -1.647707 0.834321 1.638340 -0.158136 -2.547224 -0.893815 0.099170 0.278953 -1.211315 0.239517 0.405047 0.439137 1.488178 -3.865453 1.074751 0.976131 0.716518 -1.171582 -1.456437 -0.106831 -0.662657 -1.145983 1.279925 -0.016673 2.153003 -1.144788 -0.162281 1.597751 -0.067138 1.376755 2.253635 0.862979 0.031834 0.973275 0.646145 3.102676 1.827203 -1.116052 0.372648 1.259321 2.410996 0.227900 0.866010 -2.359705 -0.866142 -0.020625 -0.866456 -1.130447 -0.437528 -1.878389 0.619882 2.885087 2.423977 -1.882060 2.005626 -1.082698 0.297567 1.251269 0.404709 2.346339 1.085350 0.470673 1.534737 3.170794 -1.150426 0.367091 -0.129205 1.281945 -1.098034 0.886967 -0.586530 -0.966705 -4.418495 0.431582 -4.047510 0.003224 0.671696 2.582114 -2.228093 1.622013 2.162870 0.990211 1.732966 -1.987372 -1.185679 -1.962131 -0.191946 -0.858103 4.506587 -0.002023 0.539595 0.191741 1.859928 0.797967 0.926082 -0.100009 -2.029306 -1.647786 -4.537199 -1.427996 -1.105882 -1.235999 -0.329380 -2.062113 -1.330645 2.921158 1.738417 -3.533856 0.442559 0.989509 0.322134 -0.008852 -1.276900 -1.382461 1.056690 -1.711635 -0.009470 0.725613 -1.546403 -0.311299 -0.425048 0.205440 0.866480 0.562107 0.224840 -2.750632 0.300779 0.791621 -0.996555 -0.690210 0.558464 -0.252773 -1.925837 0.908681 -2.787855 2.099158 -2.525019 0.691204 -0.803410 -2.244367 -0.396349 1.030065 0.784096 -0.350759 -0.080886 -1.014363 0.049122 -2.504210 -4.116142 1.441488 0.084713 1.042954 -0.713872 -0.497588 -0.851566 -1.008695 -0.598283 0.819708 -1.493616 -0.465026 -0.530264 3.853334 0.103212 -0.977816 -0.898823 0.218747 2.462773 1.041499 0.690766 -1.862320 -0.573314 -2.353278 -1.247120 1.940992 -0.327356 -0.198255 -0.499527 -0.421630 -2.321235 1.505492 -1.530167 1.428880 -1.248850 -0.089889 -2.477674 0.351883 -0.645850 -0.078541 -0.166114 -1.440255 0.527629 0.210961 -0.307366 -0.526760 -0.237108 1.341974 -2.108881 -2.033355 0.283864 0.430842 2.023673 1.224096 0.928091 -0.658222 -0.045827 -1.604398 2.005344 -0.948441 0.704396 0.176610 -1.705305 2.714365 -1.084327 -1.247849 -1.863780 1.329404 0.334224 0.182645 3.872715 2.015224 -2.007094 -0.521354 -1.096550 0.714490 1.230645 2.572154 -1.511775 -1.203230 1.210092 -0.934934 -0.360659 -0.899694 0.869233 -0.508998 1.771008 -2.121702 -0.626891 1.396009 1.763282 -0.204774 1.292019 -0.220371 -0.531816 -1.010381 2.614041 0.579126 0.507110 -1.848230 -2.195574 1.178460 -1.312468 0.907060 -0.688345 -0.352375 -1.090385 0.007152 1.295479 2.111839 3.125079 -1.334497 1.797294 -2.901241 -2.630387 -1.113393 0.738861 0.886912 -1.495846 0.577305 -1.184430 0.624816 -0.237824 1.410158 0.779051 -1.180785 -1.790283 0.330665 1.201777 0.526271 -2.352715 2.640212 -0.470348 -0.871331 -0.069723 -0.372205 0.520381 0.789268 0.043740 -0.908237 -1.006643 1.538876 -1.512226 2.485320 -0.182877 0.722839 1.653742 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.961633 -0.344021 -0.456248 1.916332 0.118980 -1.844144 0.898957 1.731291 -0.059789 -3.099663 -1.076449 0.441299 0.388378 -1.350874 0.268995 0.651375 0.567092 1.463000 -4.546086 1.300589 1.002689 0.595806 -1.554408 -1.468573 -0.145341 -0.949078 -0.908318 1.544429 -0.083925 2.509440 -1.318442 0.045723 1.916378 -0.178372 1.683718 2.614040 0.843827 -0.007457 0.913431 0.776171 3.732222 2.108436 -1.227667 0.465514 1.406763 2.885503 0.290280 1.658892 -2.263201 -1.002192 0.372936 -0.793225 -1.350638 -0.470784 -2.422359 0.696764 3.276644 2.462879 -2.219792 2.240052 -1.339628 0.396887 1.483164 0.742370 3.036761 1.266445 0.915850 1.866872 3.732549 -1.372813 0.447396 0.018417 1.590675 -1.099137 1.309944 -0.877974 -1.357820 -4.689983 0.569056 -4.348900 -0.000916 0.606467 2.988509 -2.594115 1.530613 2.265389 1.184846 2.229809 -2.402172 -1.147303 -2.398122 -0.192813 -0.890320 5.344370 -0.052736 0.778792 0.130983 2.108802 0.760764 1.104075 -0.059541 -2.560055 -1.796604 -5.276198 -1.843325 -1.395436 -1.362809 -0.348089 -2.687191 -1.342678 2.979219 1.953189 -4.132156 0.503214 1.105085 0.326480 0.721737 -1.112353 -1.571733 1.059681 -1.717325 0.189892 0.892018 -1.648761 -0.226063 -0.781241 0.524112 1.105987 0.669673 0.266223 -3.351977 0.415271 1.022461 -0.993628 -0.712998 0.733714 -0.105532 -2.350436 1.105464 -3.102542 2.459697 -3.162582 0.487535 -1.161946 -2.639725 -0.497618 1.508449 1.105862 0.065858 -0.054182 -1.241238 0.083964 -3.208657 -5.086960 1.385520 -0.051664 0.983265 -0.748756 -0.563695 -0.840250 -1.217265 -0.567256 1.079284 -1.818178 -0.673812 -0.693559 4.117115 0.209475 -1.119722 -0.950738 0.115547 2.602486 1.267359 1.161077 -1.987573 -1.520373 -2.974594 -1.474661 2.284886 -0.453282 -0.174885 -0.654540 -0.600610 -2.909933 1.605950 -1.809447 1.526615 -1.448301 -0.218671 -2.929938 0.435468 -0.720966 0.029103 -0.266047 -1.848268 0.634887 0.336258 -0.161287 -0.461704 -0.108407 1.334220 -2.601962 -2.470208 0.453653 0.387001 2.741157 1.399714 0.942013 -0.581256 -0.176389 -2.099324 2.290393 -1.538423 0.889714 0.411037 -2.090138 3.072340 -1.418083 -1.497156 -2.141890 1.573045 0.282309 0.034950 4.675017 2.504593 -2.454292 -0.603399 -1.240679 0.958974 1.358334 3.028689 -1.790325 -1.364175 1.316835 -0.788763 -0.437823 -0.906590 1.060574 -0.644413 1.895876 -2.563589 -0.854335 1.708393 2.097920 -0.250784 1.204113 -0.346032 -0.749241 -1.112826 3.075577 0.697485 0.653250 -2.206365 -3.151269 1.290049 -1.586532 0.727178 -0.611371 -0.684665 -1.264690 -0.001431 1.182208 2.592564 3.246075 -1.449034 2.155729 -3.534038 -3.144982 -1.513905 0.668172 0.851226 -1.571704 0.793120 -1.460740 0.672929 -0.358405 1.667939 0.591329 -1.420505 -1.817234 0.494880 1.394292 0.546729 -2.632391 3.085460 -0.376018 -0.901636 -0.295009 -0.346611 0.361243 1.035597 -0.292483 -1.087307 -1.143806 1.792417 -1.788892 2.751334 -0.176826 1.030259 1.769638 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.226908 -0.232804 -0.016333 0.462546 0.098784 -0.146065 0.115440 0.133562 -0.043179 -0.737342 -0.308928 -0.212765 0.037784 -0.115793 0.225603 0.152316 0.170604 0.183756 -0.809563 0.165457 0.242051 -0.019135 -0.080445 -0.062028 -0.007586 -0.333679 -0.139559 0.323087 -0.010787 0.502361 -0.291949 0.227405 0.422520 0.043775 0.309016 0.441604 0.103990 -0.081302 0.072702 0.207029 0.778784 0.162346 -0.179711 -0.017706 0.153138 0.589935 0.010379 0.382714 -0.080977 -0.213416 0.327108 -0.391175 -0.128964 0.003226 -0.580590 0.133556 0.502295 0.410839 -0.395868 0.311811 -0.394459 0.140704 0.218247 -0.004995 0.709400 0.175930 0.332564 0.387840 0.596247 -0.340087 0.062301 0.081563 0.195201 -0.136345 0.109111 -0.131535 -0.071684 -1.186139 0.049021 -0.618790 -0.026662 0.059325 0.425713 -0.422512 0.056721 0.442169 0.047137 0.531195 -0.394245 0.002139 -0.598908 0.001139 0.091322 0.635512 0.073800 -0.008671 0.007686 0.306907 0.044603 0.244321 0.036971 -0.468432 -0.525377 -1.064833 -0.544694 -0.247479 -0.035490 -0.057390 -0.677704 -0.060881 0.637977 0.285593 -0.734309 0.081919 0.171089 0.232309 0.018716 -0.192615 -0.343331 -0.023065 -0.105218 0.237307 0.275601 -0.249112 0.119779 -0.520380 0.225304 0.187569 0.228608 -0.061523 -0.273122 -0.059742 0.174815 -0.075483 -0.089403 0.132635 0.131105 -0.268146 0.275743 -0.427173 0.518584 -0.600908 0.121847 -0.363909 -0.365346 -0.124297 0.753037 0.393299 0.123343 0.167063 -0.446815 0.084813 -0.625186 -0.952776 0.048244 -0.018106 0.223529 0.005892 -0.147533 0.056779 -0.169250 0.025263 0.123243 -0.388200 -0.214858 -0.099588 0.162355 0.074030 -0.224481 -0.326675 0.057320 0.501716 -0.069146 0.336873 -0.271221 -0.196963 -0.567196 -0.402851 0.437056 -0.184384 0.062046 -0.169921 -0.034935 -0.674718 0.350617 -0.368000 0.069202 -0.169733 -0.283204 -0.598227 0.093640 -0.165097 -0.035128 0.066368 -0.423910 0.147331 0.030047 0.060256 0.077176 0.045881 0.069872 -0.477936 -0.552201 -0.049367 -0.069998 0.519045 0.217532 0.064871 -0.183072 -0.211166 -0.348382 0.509006 -0.319788 0.185455 0.110838 -0.487793 0.405924 -0.332697 -0.285240 -0.300530 0.276268 0.085797 -0.299596 0.753410 0.495976 -0.494508 -0.163031 -0.406648 0.261559 0.182836 0.626509 -0.231723 -0.019886 0.141030 0.098513 -0.063804 -0.184446 0.245440 -0.125944 0.138410 -0.547442 -0.307884 0.342097 0.443030 -0.026603 0.165948 0.109044 0.128578 -0.124449 0.562620 0.130012 0.034049 -0.291288 -0.737274 0.211216 0.148453 0.079990 0.120889 -0.352474 -0.174201 -0.055269 0.100033 0.558190 0.617379 -0.083694 0.495367 -0.465062 -0.546654 -0.346110 0.036074 0.028585 -0.311480 0.227515 -0.300690 0.048846 -0.074254 0.237388 0.049472 -0.249982 -0.437045 0.097112 0.303616 0.143471 -0.272223 0.551895 0.080200 -0.249694 -0.152167 0.025710 -0.070188 0.299892 -0.095639 -0.256994 -0.103883 0.241815 -0.327523 0.304590 -0.125253 0.144795 0.212910 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.384447 -0.118993 -0.005141 0.624455 0.188710 -0.370797 0.157992 0.252492 -0.228198 -0.825691 -0.302646 -0.071582 -0.011796 -0.246520 0.207966 0.121352 0.233000 0.177805 -0.944628 0.269681 0.131904 -0.069009 -0.381648 -0.261553 -0.019896 -0.230639 -0.113317 0.539075 -0.055826 0.574752 -0.410278 0.148545 0.390490 0.146211 0.568891 0.471254 0.222919 -0.054537 0.059486 0.141070 1.021350 0.289795 -0.287197 0.082216 0.403938 0.711556 0.059147 0.349487 -0.487660 -0.123970 0.235999 -0.274543 -0.170682 -0.042841 -0.776890 0.152241 0.724165 0.504323 -0.548713 0.460633 -0.483154 0.185094 0.302044 0.153872 0.943211 0.220286 0.376981 0.490194 0.814896 -0.437183 0.026625 0.107584 0.517565 -0.176375 -0.037776 -0.068029 -0.166981 -1.358708 0.087776 -0.942798 0.036333 0.108543 0.664406 -0.457560 0.148700 0.497486 0.071376 0.511294 -0.682541 -0.093941 -0.722459 -0.031593 -0.128045 1.042528 0.046075 0.100477 0.112067 0.455171 0.185187 0.416503 -0.119082 -0.578985 -0.435122 -1.401591 -0.619252 -0.160184 -0.248529 -0.260045 -0.654573 -0.225480 0.866155 0.518850 -0.825185 -0.040388 0.158690 0.127628 -0.008675 -0.285647 -0.460799 0.131737 -0.316516 0.215056 0.359968 -0.229368 0.109566 -0.462120 0.174285 0.210897 0.388579 0.116772 -0.663236 0.043263 0.277132 -0.269615 -0.223267 0.019100 -0.105714 -0.382532 0.290154 -0.589809 0.677570 -0.776447 0.193580 -0.482667 -0.621364 0.004013 0.553575 0.479094 0.115465 0.262409 -0.338461 0.120767 -0.769950 -1.317700 0.282573 0.092212 0.191622 -0.196007 -0.141817 -0.027096 -0.297935 -0.225641 0.474468 -0.552352 -0.348715 -0.329905 0.642836 0.102837 -0.321852 -0.317986 0.184852 0.716415 0.100712 0.360626 -0.493933 -0.378988 -0.714613 -0.445405 0.506047 -0.172970 -0.072431 -0.033405 -0.057580 -0.876966 0.493966 -0.470569 0.351822 -0.328824 -0.233698 -0.710930 0.088706 -0.190455 -0.045344 -0.028048 -0.441408 0.206398 0.067785 -0.066917 -0.058720 0.128573 0.277014 -0.513992 -0.745244 0.026780 0.182731 0.624930 0.346571 0.194327 -0.223425 -0.192997 -0.524784 0.684169 -0.334531 0.221747 0.190941 -0.562975 0.613826 -0.400727 -0.418186 -0.286169 0.405529 0.152592 -0.238394 1.038307 0.692735 -0.719180 -0.321273 -0.564663 0.325292 0.235674 0.961261 -0.432354 -0.076256 0.261843 0.130156 -0.145103 -0.208174 0.317132 -0.011333 0.269041 -0.759664 -0.453600 0.389667 0.528431 0.020759 0.220447 -0.053735 0.004366 -0.297822 0.889649 0.150992 0.166516 -0.425787 -0.798036 0.218175 -0.203618 0.123473 0.061145 -0.281853 -0.388730 -0.189450 0.091268 0.696723 0.657459 -0.389967 0.607280 -0.653828 -0.670237 -0.441527 0.135498 0.061155 -0.557008 0.353940 -0.430504 0.031051 -0.111505 0.363474 0.069531 -0.218254 -0.575826 -0.028553 0.279040 0.143971 -0.502665 0.707160 0.043478 -0.311862 -0.168073 0.076248 0.024814 0.457744 -0.327418 -0.402492 -0.323052 0.365618 -0.401577 0.494289 0.039446 0.278653 0.399204 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = 1.011514 -0.728839 -0.354935 1.697471 0.198966 0.165767 0.208552 0.205160 0.159555 -2.527112 -1.293071 1.211502 0.110195 0.036713 0.277162 0.596133 0.794790 0.305639 -2.899393 0.112754 0.432964 -0.170619 -0.218778 -0.054719 0.121801 -0.864504 0.941740 0.685369 0.109221 1.403777 -0.656136 1.003737 1.261062 0.135287 0.815094 0.967232 -0.654890 -0.302749 -0.473244 -0.428231 2.224024 0.589778 0.018107 0.771594 0.185660 1.657776 0.350739 1.569514 1.227892 -0.556083 0.969836 -0.175929 -0.747081 -0.022208 -1.865628 0.176177 0.791938 0.296997 -0.697595 0.681955 -0.611446 0.511282 0.493274 -0.128064 2.187073 0.383464 1.670263 1.235822 1.342483 -1.007555 0.326658 0.234199 0.649866 0.335919 0.884342 -1.050875 -0.851482 -1.127272 -0.162400 -1.916049 0.100788 -0.381152 2.050040 -1.036353 -0.363485 0.063858 0.080450 1.663424 -0.757819 0.103688 -1.653253 0.133363 0.059333 1.669460 0.228066 0.354058 -0.146892 0.459931 -0.162380 0.475614 0.341035 -1.419450 -0.283137 -2.836112 -0.994842 -0.954005 0.413859 0.172295 -1.729324 0.486066 -0.021510 1.084523 -2.123092 -0.292252 0.302131 0.333160 0.927950 -0.062889 -0.622720 -0.403696 0.096042 1.061256 0.701891 -0.882685 0.467662 -1.067970 0.261394 0.335813 0.802326 0.253584 -1.290700 -0.606473 0.423225 0.211114 0.046330 0.721257 0.807964 -0.298105 0.807219 -0.927512 1.300420 -1.836128 -0.353041 -1.016195 -0.794704 -0.687442 2.250348 1.380763 1.280504 0.265884 -0.431795 0.005984 -2.027998 -2.484337 0.110162 -0.101018 0.189962 0.388976 -0.222091 0.498411 -1.081711 0.186474 0.634398 -0.858028 -0.717967 -0.407034 0.132351 0.205640 -0.565320 -0.687492 0.002229 0.491868 -0.132743 1.405136 -0.433907 -2.546824 -2.070961 -0.898233 1.281242 -0.847320 0.129127 -0.555887 -0.233769 -1.113408 0.171226 -1.133046 -0.031020 -0.123057 -1.106636 -1.801176 0.340374 -0.338690 0.123762 0.354316 -1.347976 0.346244 0.896968 0.948510 0.298852 0.491391 -0.062266 -1.367837 -1.194322 0.076856 -0.761066 1.628494 0.730211 -0.284429 -1.065177 -0.657396 -1.301602 1.100219 -1.081098 0.810561 0.076093 -1.053362 0.609319 -1.032612 0.100788 -0.835094 0.526921 0.130111 -2.910277 1.903967 1.397275 -1.346378 -0.313753 -0.935630 0.871871 0.081113 1.265585 -0.987646 -0.501303 0.154376 0.080708 -0.013758 -0.468373 0.642849 -0.174438 -0.334709 -1.668006 -0.877665 1.398154 0.711262 -0.150486 0.077511 0.699214 0.021071 0.433848 1.588882 0.632958 0.196249 -1.180982 -3.644033 0.383290 1.056258 -0.136049 0.543288 -1.089569 -0.720483 0.086586 -0.693817 1.409289 0.372543 -0.307623 1.336075 -1.357468 -1.324816 -1.251916 -0.445321 0.155864 -0.321911 0.588814 -0.710678 0.024518 -0.273893 0.559979 -0.372208 -0.843209 -0.199082 0.654843 1.286644 0.397713 -0.079164 1.442332 0.489075 -0.590984 -0.420330 -0.033408 -0.707856 0.673892 -1.599113 -0.468221 0.035542 0.527496 -1.032432 0.409145 -0.052599 0.784795 0.067688 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 2.045037 -0.414404 -0.485713 2.717041 0.487915 -0.579971 0.688649 1.339382 0.134257 -3.856346 -1.833098 1.384866 0.275433 -0.313156 0.649284 0.751008 0.986769 1.299794 -4.331924 0.451789 0.576774 0.245355 -0.737648 -1.212946 0.047298 -0.506362 0.167334 1.368450 0.357378 2.602237 -1.277915 0.843812 2.044508 0.232763 1.268552 1.667870 0.638710 -0.183658 -0.629098 -0.673338 3.985158 1.278856 -0.452817 1.610798 0.561596 2.947940 0.271798 2.788876 -0.136198 -0.801698 1.415770 -1.486098 -1.338691 -0.247018 -2.938431 0.931908 2.645047 1.698940 -1.557343 1.884726 -0.658115 0.811593 1.208100 -0.536716 3.215277 1.579584 1.753982 2.212841 3.201135 -2.046153 0.362474 0.097283 1.579573 -0.064055 0.945844 -2.117530 -0.920061 -3.674742 0.178455 -3.859359 0.240592 -0.541744 3.868428 -2.460719 0.645623 1.586633 0.368480 2.380190 -1.990027 0.003930 -2.723628 -0.100819 -0.340913 4.081059 0.170818 0.493897 -0.065233 1.144460 0.346309 1.123915 0.436041 -2.110857 -1.358343 -4.852440 -2.059423 -0.803202 -0.324077 -0.051658 -2.503203 -0.372704 1.481677 1.538544 -4.030819 -0.713824 0.919810 0.755571 1.080445 0.117897 -1.497719 0.163066 -0.513404 0.965572 1.048082 -2.001028 0.476140 -1.324176 -0.346879 0.712229 1.358778 0.482188 -2.816447 -0.668989 0.507890 -0.310170 -0.151229 0.444196 0.347649 -1.478081 1.401655 -2.161229 2.361684 -3.296604 -0.643668 -1.159173 -2.180597 -0.859515 3.567054 1.155627 1.750617 0.778703 -1.206108 -0.332993 -2.987755 -4.552892 1.133696 0.314435 0.860606 0.310628 -0.464385 0.160822 -1.704608 -0.462922 1.313766 -1.794783 -1.492129 -0.716077 2.322946 -0.120845 -1.091381 -1.748126 0.707834 2.050336 0.272944 1.724129 -1.276767 -2.864074 -2.991286 -1.558504 2.428012 -1.035268 0.157727 -0.502215 -0.200697 -2.639990 0.647731 -2.225417 1.058986 -0.252994 -1.787705 -3.261313 0.992569 -0.655166 0.120949 0.793849 -2.160197 0.888688 0.724264 1.497892 -0.391564 0.666109 0.861609 -3.035766 -2.947974 -0.359654 -0.448730 2.890202 1.092785 0.601649 -1.376812 -0.841320 -2.009924 2.312895 -2.145715 1.160828 -0.092907 -1.159004 1.875215 -1.901057 -0.742497 -2.429833 1.283522 0.712667 -2.850858 3.683071 2.161276 -2.347198 -0.808077 -1.968191 1.284459 0.705750 3.280910 -1.965218 -1.488981 1.113268 0.041230 -0.358510 -1.554598 1.131681 -0.202158 0.297460 -2.891608 -1.318474 1.860099 1.790894 -0.235918 0.974657 1.193484 0.018932 -0.451531 3.387280 1.028597 0.135005 -1.912693 -4.858322 0.975917 1.186966 0.333711 0.275873 -1.950279 -1.228456 0.353053 0.178376 2.459701 2.073363 -0.342796 2.463377 -2.827853 -2.617505 -1.433701 0.239116 0.856824 -1.370949 0.739542 -1.452919 0.351785 -0.159547 0.941218 0.001006 -1.324841 -1.538761 0.396757 2.197335 0.171541 -0.905730 3.082345 0.497386 -1.217508 -0.058345 -0.413233 -0.288841 1.048260 -1.805301 -0.657745 -0.308865 1.124442 -1.948034 1.667785 -0.051050 0.464518 0.893846 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = 0.207557 -0.180024 0.089617 0.376494 0.225856 -0.115189 0.100724 0.085374 -0.118235 -0.625854 -0.258772 -0.131233 -0.032359 -0.118498 0.177597 0.082350 0.266049 0.102983 -0.565488 0.121359 0.109645 -0.081470 -0.171443 -0.032838 -0.016961 -0.328794 -0.028109 0.380429 -0.020994 0.380442 -0.267542 0.128063 0.311437 0.091775 0.398867 0.401262 0.192512 -0.092304 0.019156 0.127408 0.791201 0.085723 -0.099638 0.062569 0.295368 0.512275 0.018713 0.300413 -0.068651 -0.134729 0.254075 -0.287326 -0.085870 -0.025439 -0.620760 0.120706 0.391370 0.273219 -0.455144 0.292692 -0.299682 0.117271 0.145065 0.046431 0.602609 0.069635 0.268314 0.294111 0.517713 -0.321506 -0.065282 0.194245 0.291802 0.017741 -0.005348 -0.046113 -0.028198 -0.953040 0.057497 -0.460468 0.020724 0.011842 0.402147 -0.268753 -0.005884 0.409744 -0.060608 0.357813 -0.324454 -0.092210 -0.561717 0.011878 0.071016 0.508751 0.078261 0.008375 0.101108 0.250951 0.067839 0.337716 -0.026600 -0.427350 -0.415429 -0.991293 -0.485964 -0.214045 -0.027490 -0.183083 -0.461514 -0.096416 0.565217 0.332356 -0.500120 0.038130 0.141465 0.144476 -0.070993 -0.224356 -0.294918 -0.067319 -0.080542 0.177995 0.225320 -0.120667 0.071562 -0.410510 0.235049 0.094694 0.253952 -0.058117 -0.239912 -0.047041 0.159932 -0.059258 -0.155773 -0.029846 0.002597 -0.268137 0.243348 -0.307915 0.453453 -0.482357 0.146597 -0.380301 -0.342676 -0.073820 0.617259 0.317382 0.194276 0.224075 -0.323434 0.075074 -0.491183 -0.870749 0.099581 -0.009047 0.179962 -0.031023 -0.120298 0.052922 -0.167180 -0.115316 0.181553 -0.336725 -0.182129 -0.153592 0.123121 0.029576 -0.199376 -0.286355 0.132814 0.488348 -0.022908 0.234586 -0.322713 -0.245239 -0.394301 -0.377114 0.325714 -0.161462 0.038280 -0.011722 -0.067337 -0.561687 0.330447 -0.326135 0.120366 -0.271516 -0.263234 -0.475827 0.077555 -0.183945 -0.037187 0.064762 -0.350733 0.151197 -0.000731 -0.025043 0.056822 0.047947 0.046241 -0.387946 -0.492319 -0.048854 0.041748 0.420691 0.221893 0.067164 -0.142418 -0.191626 -0.313324 0.413737 -0.271417 0.124425 0.199944 -0.488884 0.335057 -0.256871 -0.222124 -0.174191 0.268458 0.124043 -0.290566 0.634530 0.476311 -0.502487 -0.271594 -0.368838 0.173774 0.141830 0.622811 -0.203792 0.050712 0.163688 0.107535 -0.059558 -0.135252 0.227804 0.033851 0.193235 -0.597548 -0.395317 0.282759 0.421966 -0.017644 0.131165 0.067666 0.169671 -0.126791 0.616014 0.077856 0.143208 -0.255407 -0.633989 0.176494 0.064828 0.053180 0.157006 -0.242025 -0.220343 -0.124438 0.012146 0.487675 0.413849 -0.104857 0.449894 -0.323405 -0.462889 -0.265495 -0.036925 0.038371 -0.358253 0.265549 -0.307429 -0.001211 -0.192047 0.206456 0.022816 -0.109556 -0.379722 0.028555 0.172337 0.188105 -0.203712 0.462229 0.034307 -0.232565 -0.107028 0.070370 0.058925 0.398271 -0.223832 -0.309899 -0.215403 0.180463 -0.226034 0.249098 -0.056289 0.224587 0.242968 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.285115 -0.376768 0.203467 0.431719 0.417482 0.034738 0.061082 0.037427 -0.087255 -0.803825 -0.416955 -0.227589 -0.096435 -0.047885 0.306861 0.089996 0.458690 -0.040601 -0.650583 0.085191 0.083084 -0.209864 -0.113936 0.138262 0.021395 -0.470626 0.039116 0.450275 0.000000 0.390679 -0.341605 0.238700 0.355670 0.136061 0.515710 0.417506 0.140772 -0.208522 -0.022333 0.070592 1.024609 -0.052033 -0.001232 0.136684 0.359290 0.586537 -0.096791 0.654581 0.330643 -0.137391 0.588310 -0.561332 -0.061393 0.076628 -0.860078 0.181530 0.410052 0.144029 -0.567066 0.239645 -0.313739 0.189602 0.093183 -0.054567 0.736486 0.080004 0.399797 0.306988 0.529764 -0.403912 -0.148864 0.355123 0.369592 0.246775 -0.155322 -0.214874 0.147388 -1.100134 0.094385 -0.298989 0.081443 -0.199394 0.427667 -0.215290 -0.154633 0.441198 -0.247625 0.423039 -0.278017 0.017669 -0.732416 0.073447 0.267075 0.301029 0.016544 -0.035448 0.168089 0.157575 -0.055062 0.469693 -0.004997 -0.476751 -0.616705 -1.153856 -0.672060 -0.222014 0.145894 -0.248934 -0.584366 0.073680 0.510399 0.181936 -0.431417 -0.031739 0.101729 0.220665 -0.126960 0.019493 -0.377267 -0.387532 0.077004 0.364360 0.229622 -0.040838 0.154779 -0.812044 0.321935 0.112415 0.373607 -0.165869 -0.055037 -0.119296 0.143937 0.071348 -0.190641 -0.111707 0.068711 -0.248972 0.324103 -0.149977 0.490932 -0.567580 0.028754 -0.614447 -0.259989 -0.102458 1.080570 0.424728 0.431589 0.497571 -0.412327 0.071119 -0.538209 -0.871637 -0.073034 -0.104004 0.248543 0.056658 -0.126178 0.211743 -0.135044 -0.160681 0.043299 -0.403569 -0.274141 -0.269053 -0.263552 -0.017989 -0.187184 -0.404992 0.224638 0.590976 -0.313245 0.300738 -0.298956 -0.368412 -0.385700 -0.516643 0.335950 -0.256846 0.155282 0.037854 0.029331 -0.656554 0.323637 -0.388340 -0.036017 -0.314631 -0.513818 -0.527692 0.128467 -0.247632 0.037336 0.165158 -0.448123 0.226254 0.008228 0.284001 0.167753 0.156875 -0.145918 -0.570400 -0.675316 -0.208483 0.013065 0.572700 0.208095 -0.055216 -0.112703 -0.361038 -0.326837 0.472934 -0.442957 0.128534 0.301095 -0.601242 0.217775 -0.313996 -0.186817 -0.214895 0.283715 0.179131 -0.632892 0.622594 0.488734 -0.640669 -0.401454 -0.642731 0.243420 0.077472 0.760419 -0.097500 0.219039 0.137857 0.299116 -0.069655 -0.217474 0.305775 0.135576 0.131306 -0.797247 -0.626505 0.344230 0.506267 -0.021041 0.075896 0.206334 0.440025 -0.023025 0.783961 0.053228 0.131617 -0.228166 -1.015368 0.142972 0.584395 0.004959 0.358258 -0.475192 -0.283491 -0.236940 -0.052563 0.599646 0.428622 0.208665 0.558982 -0.185742 -0.473460 -0.292238 -0.111986 -0.029561 -0.394062 0.287301 -0.398969 -0.099097 -0.292913 0.191690 -0.016575 -0.096501 -0.565156 0.022593 0.209241 0.253855 -0.025399 0.466837 0.175671 -0.301624 -0.138289 0.157219 0.056659 0.555513 -0.311346 -0.379128 -0.222042 0.054885 -0.223670 0.133011 -0.024180 0.314832 0.129954 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.197102 -0.808215 0.411312 0.378475 0.369607 0.017481 0.093795 -0.003877 0.160110 -0.614982 -0.086971 -0.285001 -0.165711 -0.005355 0.222064 -0.020588 0.305183 -0.175672 -0.725058 0.125933 0.037632 -0.043815 0.172973 0.027070 0.114219 -0.404862 0.460465 0.490628 -0.006720 0.257889 -0.313423 0.039032 0.254112 0.141470 0.345050 0.322656 0.346536 -0.118791 -0.256044 0.216280 0.793569 0.003358 -0.168598 0.112112 0.322268 0.441467 0.325177 0.537096 0.855504 -0.105220 0.423107 -0.497001 -0.097752 -0.173654 -0.680277 0.137679 0.413983 0.232290 -0.426676 0.161641 -0.168201 0.089351 0.042868 0.117927 0.530370 -0.102954 0.448634 0.108220 0.478635 -0.377701 -0.223591 0.353913 0.506566 0.351697 0.131563 -0.440842 -0.158040 -1.383478 0.060756 -0.039498 -0.074390 -0.180973 -0.358088 -0.113554 -0.089328 0.403425 -0.407859 0.268958 -0.165731 0.022498 -0.577266 0.135830 0.499427 0.432934 -0.074042 -0.096430 0.282551 0.162948 0.090166 0.463040 0.448963 -0.397600 -0.267134 -0.932491 -0.400430 -0.219011 0.147371 -0.262379 -0.421616 0.200033 0.281113 -0.140292 -0.243043 -0.023247 0.161529 0.262602 0.199984 -0.656216 0.203864 -0.269473 0.181297 0.316823 0.215155 -0.322276 0.098815 -0.533405 0.489304 0.249001 0.242750 -0.243243 0.385591 -0.147340 0.077641 0.459906 -0.117460 -0.174039 -0.023833 -0.338641 0.223096 -0.203190 0.449630 -0.323457 0.049837 -0.367444 0.201196 -0.067489 1.154930 -0.104023 0.294923 0.362988 -0.531506 0.096501 -0.206400 -0.898548 -0.071254 0.005664 0.100197 0.154925 -0.104580 0.188429 -0.027005 -0.216245 -0.099440 -0.251367 -0.158752 -0.123129 -1.144175 -0.031259 -0.060985 -0.247013 0.280384 0.627465 -0.080075 0.284376 -0.167218 -0.685500 -0.148749 -0.486894 0.227666 -0.185051 0.031191 0.035702 -0.046786 -0.638213 0.441202 -0.276632 0.055987 -0.185489 -0.621055 -0.375761 0.076833 -0.293495 0.519075 0.196090 -0.364176 0.065974 -0.601733 0.352692 0.185895 0.144189 -0.056349 -0.715298 -0.644615 -0.270233 0.067660 0.704253 -0.518158 -0.034490 0.043492 -0.279682 -0.111130 0.350084 -0.471141 0.010752 0.208579 -0.564831 0.206884 -0.026983 -0.086696 -0.219310 0.246927 0.224185 0.181792 0.735643 0.517687 -0.473882 -0.417576 -0.288959 0.070267 0.129815 0.644347 -0.205528 0.013477 0.100582 0.342938 -0.067389 -0.211804 0.268294 0.113110 0.098864 -0.619095 -0.628980 0.011013 0.454364 -0.028271 -0.011817 0.239294 0.315257 -0.481393 0.654447 -0.067194 0.333280 -0.217670 -0.758360 0.136309 0.781359 0.061031 0.409543 -0.694070 -0.225074 -0.050632 0.310907 0.491097 0.801078 0.280433 0.418407 -0.168223 -0.324954 -0.203923 -0.339743 -0.095465 -0.232159 0.272359 -0.328085 -0.093648 -0.267688 0.035373 -0.180043 0.165525 -0.139298 -0.021395 -0.002254 0.243028 -0.026328 0.341396 0.145625 -0.272186 -0.122165 0.171920 -0.104454 0.492844 0.152908 -0.202612 -0.196657 0.031204 -0.061299 0.087989 -0.091862 0.231707 -0.130282 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.501260 -0.666371 0.077081 0.618368 0.438012 -0.097554 0.083165 0.034742 0.106437 -0.945958 -0.363623 0.118163 -0.066841 -0.153198 0.255173 0.197138 0.477446 -0.059077 -0.713202 0.240614 -0.006255 -0.190242 -0.300246 0.092563 0.026949 -0.528071 0.315335 0.481996 -0.015094 0.462934 -0.397215 0.232394 0.428100 0.032419 0.551666 0.516438 0.254579 -0.176835 -0.138836 0.124402 1.211914 0.057466 0.012175 0.303150 0.454280 0.695076 0.001746 1.158903 0.649988 -0.160121 0.758773 -0.410736 -0.164670 0.006699 -1.046758 0.279253 0.522094 0.049381 -0.666891 0.302436 -0.294160 0.209160 0.174370 0.149066 0.916238 0.195385 0.540029 0.396358 0.812226 -0.433612 -0.152170 0.456690 0.658842 0.371971 0.271255 -0.428506 -0.165882 -0.995816 0.072137 -0.133757 0.138340 -0.306053 0.517241 -0.374076 -0.186036 0.452511 -0.158888 0.557404 -0.376060 0.029100 -0.817347 0.134831 0.277035 0.684045 -0.052227 0.135428 0.044054 0.204468 -0.084346 0.516014 0.142491 -0.665128 -0.527050 -1.341493 -0.809424 -0.343725 0.040443 -0.300184 -0.838954 0.127328 0.341118 0.223400 -0.630389 -0.022129 0.161357 0.149634 0.460925 0.036538 -0.278573 -0.358718 0.157291 0.410247 0.157250 -0.112476 0.103155 -0.884793 0.454614 0.225763 0.365533 -0.198209 -0.204717 -0.053750 0.135979 0.284888 -0.173632 -0.083159 0.094183 -0.586814 0.364742 -0.213368 0.543334 -0.772441 -0.239671 -0.701296 -0.339251 -0.126599 1.416548 0.295426 0.816918 0.434614 -0.515596 -0.052446 -0.762398 -1.251407 -0.080055 -0.264195 0.130604 0.113560 -0.090670 0.144033 -0.178136 -0.211049 0.149449 -0.509229 -0.283687 -0.304843 -0.374254 -0.091106 -0.177332 -0.464030 0.136287 0.639816 -0.067416 0.423041 -0.273059 -1.042503 -0.548422 -0.561898 0.412245 -0.273991 0.209713 0.001772 -0.077896 -0.820853 0.302144 -0.449557 0.036030 -0.364331 -0.593400 -0.641655 0.136634 -0.273314 0.222530 0.079449 -0.594245 0.258974 -0.127458 0.418669 0.180443 0.254491 -0.174338 -0.924014 -0.883866 -0.164169 0.030736 0.938784 0.111259 -0.007139 -0.012985 -0.384922 -0.553009 0.479570 -0.949008 0.132035 0.456161 -0.681241 0.368824 -0.390561 -0.266253 -0.418367 0.364978 0.117561 -0.550432 0.944206 0.667355 -0.791364 -0.424911 -0.571643 0.312905 0.151716 0.943745 -0.254009 0.097558 0.214499 0.360263 -0.113983 -0.243976 0.391131 0.055346 0.254607 -0.908545 -0.693469 0.356112 0.643136 -0.079362 -0.094225 0.120336 0.245913 -0.176940 0.917926 0.113486 0.284907 -0.429873 -1.408129 0.145046 0.455543 -0.097640 0.480122 -0.716629 -0.313331 -0.137705 -0.070530 0.757047 0.330792 0.318428 0.633150 -0.506934 -0.646041 -0.293120 -0.240397 -0.037664 -0.371517 0.450638 -0.513991 -0.129228 -0.353294 0.286519 -0.227979 -0.090630 -0.364106 0.086791 0.231035 0.262304 -0.112643 0.588020 0.225245 -0.298368 -0.160576 0.142377 -0.002871 0.552508 -0.433217 -0.355449 -0.303800 0.117402 -0.295994 0.337517 -0.061087 0.445743 0.068338 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 0.788300 0.132325 -0.543517 2.111349 -0.098203 -1.176547 0.493026 0.683421 -0.571596 -2.174863 -0.322029 0.421782 0.013418 -0.317834 -0.111351 0.572234 0.086948 0.475631 -2.657502 0.622138 0.608435 0.149905 -0.806330 -0.985153 0.220535 0.030469 -0.030170 1.251496 -0.070890 1.634043 -0.967055 0.533453 1.142164 0.319879 0.866788 0.973984 0.388101 0.523727 0.138581 -0.011653 1.696493 0.989119 -1.349765 0.092852 0.403180 1.900001 0.634444 0.489559 -2.329057 -0.457020 -0.335083 0.123122 -0.651103 -0.463699 -1.287245 0.425375 1.938147 2.058089 -0.916137 1.107121 -1.138541 0.505912 1.095358 0.688913 2.371894 1.086306 1.064924 1.674770 2.280985 -1.197762 0.526827 -0.194814 1.168865 -0.915981 0.099443 -0.260590 -1.026481 -2.596101 0.018901 -3.220076 -0.263150 0.710051 1.883668 -1.488412 0.486551 0.319447 0.623310 1.630571 -2.205702 0.211116 -1.719442 -0.194978 -0.755759 3.742367 0.177387 0.387967 0.013049 1.611154 0.689528 0.671791 -0.372272 -1.190367 -0.339496 -2.833090 -0.958540 -0.387759 -0.789286 0.013396 -2.002196 -0.743606 1.731892 1.545730 -2.893194 -0.375846 0.350696 0.345905 0.778257 -0.473036 -0.875923 1.216308 -1.223222 -0.063828 0.832176 -0.821359 0.444634 -0.307815 -0.299448 0.535489 0.805488 1.167567 -3.236880 0.376070 0.714032 -1.425068 -0.050810 0.852884 -0.104199 -0.628376 0.607107 -2.147852 1.723249 -2.344204 0.197875 -0.367549 -2.102220 -0.079338 0.086603 1.445316 -0.249412 -0.264208 -0.446759 -0.133780 -2.400147 -3.416316 0.924304 0.796367 0.200450 -0.295841 -0.473153 -0.140161 -1.318448 -0.371730 1.964389 -1.350615 -1.115549 -0.976694 3.040467 0.595288 -0.541078 -0.458340 0.037797 1.323124 0.436124 1.253972 -1.163485 -1.226121 -2.837124 -0.763382 1.372492 -0.407950 -0.622255 -0.558016 -0.282405 -2.392680 1.200429 -1.184876 1.094776 -0.360923 -0.102367 -2.070495 0.686690 -0.302990 -0.308666 -0.103554 -1.009007 0.340697 0.362651 -0.552099 -0.259899 0.267199 1.120416 -0.872781 -1.541369 0.859985 0.341467 1.292802 0.854184 0.444825 -0.640539 -0.532917 -1.553885 2.115646 -0.296075 0.960904 0.223242 -0.342132 1.900569 -1.172295 -0.789633 -0.862524 1.054602 0.395306 -0.272730 2.710880 1.711904 -1.580858 -0.360868 -0.933354 1.008059 0.709842 1.921252 -1.796225 -1.216741 0.743509 0.069972 -0.408702 -0.287633 0.510416 -0.375754 0.588073 -1.496466 -0.447876 0.920852 0.848340 -0.068325 0.718632 -0.303009 -1.302096 -0.770290 1.952255 0.787388 0.337999 -1.303972 -1.728996 0.359764 -1.927594 0.388207 -0.567793 -0.614083 -0.851153 0.123190 0.153576 1.737622 1.328918 -2.196055 1.498479 -2.660680 -1.673379 -1.061326 0.521259 0.233408 -1.037953 0.791051 -0.762997 0.270826 0.446467 0.967498 -0.064282 -1.171350 -0.741776 0.042564 1.329351 -0.551803 -1.657866 1.944743 -0.189879 -0.519170 -0.583196 0.267278 -0.338691 0.419794 -1.297473 -0.666256 -0.408123 1.371550 -1.524370 1.629659 0.342174 0.265078 1.042525 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = 0.357119 -0.473875 0.040887 0.505631 0.344094 -0.071902 0.060538 -0.013494 0.034904 -0.755546 -0.293890 0.087950 -0.050863 -0.119876 0.207064 0.166462 0.387374 -0.018339 -0.490203 0.178826 -0.007883 -0.173594 -0.262872 0.092324 0.003659 -0.429313 0.229175 0.384159 -0.015517 0.376396 -0.316464 0.212319 0.343359 0.037737 0.452172 0.410232 0.211901 -0.140593 -0.114272 0.101587 0.969118 0.008005 0.034537 0.222940 0.357122 0.561180 -0.006983 0.855882 0.466215 -0.125732 0.581544 -0.296389 -0.098994 0.016874 -0.846243 0.212405 0.359798 0.031619 -0.537339 0.244410 -0.258708 0.174454 0.137924 0.108856 0.746105 0.136390 0.417864 0.334670 0.628268 -0.346223 -0.115494 0.358167 0.502296 0.273858 0.194192 -0.254331 -0.106546 -0.769703 0.031871 -0.105611 0.122741 -0.207862 0.459710 -0.294500 -0.174695 0.362171 -0.123162 0.448268 -0.303375 0.019018 -0.666796 0.095904 0.206300 0.489621 0.008258 0.094947 0.014566 0.162723 -0.071889 0.403686 0.064827 -0.535208 -0.422076 -1.080835 -0.673370 -0.274213 0.027756 -0.249652 -0.668685 0.079649 0.317332 0.262095 -0.510195 -0.009993 0.120440 0.109907 0.307009 0.014462 -0.254927 -0.268868 0.123812 0.328446 0.143242 -0.052869 0.092626 -0.697203 0.354093 0.144913 0.309537 -0.146092 -0.166295 -0.052026 0.116021 0.195090 -0.145270 -0.066322 0.077794 -0.435140 0.295792 -0.159479 0.439473 -0.604277 -0.157627 -0.566047 -0.310568 -0.100876 1.110267 0.286272 0.659365 0.336644 -0.411738 -0.029712 -0.627671 -1.009052 -0.045547 -0.207568 0.098616 0.092204 -0.078343 0.118866 -0.153860 -0.152540 0.173240 -0.417440 -0.234634 -0.231988 -0.273012 -0.060801 -0.161674 -0.393371 0.101611 0.494730 -0.049864 0.333443 -0.234967 -0.780938 -0.443993 -0.443297 0.329330 -0.224592 0.172501 0.008765 -0.076105 -0.646887 0.243442 -0.363963 0.020442 -0.298058 -0.448685 -0.517445 0.100392 -0.214114 0.104430 0.058203 -0.472748 0.219648 -0.063224 0.249015 0.143350 0.193638 -0.139357 -0.669823 -0.679052 -0.111405 0.013414 0.688620 0.158243 0.007632 -0.055273 -0.311562 -0.451913 0.385617 -0.734809 0.115644 0.385714 -0.553087 0.285205 -0.334603 -0.221655 -0.276055 0.295667 0.091335 -0.520737 0.709274 0.546576 -0.639438 -0.334961 -0.454669 0.261079 0.113632 0.757972 -0.201363 0.120392 0.169771 0.291079 -0.083804 -0.176490 0.306756 0.048133 0.189372 -0.729513 -0.546430 0.305166 0.511820 -0.056191 -0.081632 0.087737 0.201329 -0.111806 0.723828 0.101381 0.227198 -0.329889 -1.084522 0.116108 0.300825 -0.080635 0.402695 -0.529210 -0.227947 -0.121417 -0.131865 0.601018 0.180578 0.202015 0.514647 -0.390477 -0.517975 -0.239552 -0.190930 -0.029754 -0.320527 0.399874 -0.410928 -0.107603 -0.291851 0.239351 -0.184575 -0.065461 -0.290655 0.074359 0.183609 0.218666 -0.079389 0.471706 0.166969 -0.245206 -0.133500 0.115213 0.005871 0.449994 -0.417113 -0.310856 -0.241902 0.107135 -0.245341 0.260436 -0.071330 0.355704 0.089858 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.044479 -0.388433 0.244958 0.220874 0.247099 0.039620 0.038910 -0.079088 0.058169 -0.364000 -0.051429 -0.150332 -0.110960 0.015169 0.127768 -0.006639 0.213975 -0.019673 -0.219733 0.045140 0.005335 -0.019550 0.112756 0.035741 0.057650 -0.220102 0.246877 0.233075 0.030950 0.151582 -0.205053 0.042470 0.146554 0.101832 0.193978 0.170936 0.276720 -0.079074 -0.178776 0.078366 0.471430 -0.103624 -0.000672 0.102427 0.180931 0.247136 0.175436 0.249739 0.538041 -0.058543 0.206154 -0.300551 0.000869 -0.072657 -0.417120 0.120994 0.119471 0.115095 -0.258885 0.078414 -0.042572 0.073458 0.007979 -0.016307 0.266868 -0.072896 0.178788 0.080858 0.259621 -0.219994 -0.139908 0.204100 0.296414 0.236886 0.078119 -0.164633 -0.013706 -0.736433 -0.043889 0.052645 0.025766 -0.096356 -0.121505 -0.072898 -0.060165 0.265845 -0.267725 0.137539 -0.035207 0.003880 -0.358494 0.089474 0.299318 0.090807 0.025439 -0.092579 0.102027 0.052966 0.017629 0.253510 0.223962 -0.215149 -0.159517 -0.538124 -0.279446 -0.124987 0.088604 -0.177058 -0.236311 0.107923 0.183442 0.054099 -0.147029 -0.025062 0.074743 0.137514 -0.018958 -0.403748 0.105599 -0.165397 0.122006 0.178859 0.082163 -0.149599 0.040722 -0.299265 0.213243 0.071288 0.180861 -0.157487 0.312632 -0.134673 -0.006049 0.290981 -0.082814 -0.133341 -0.010031 -0.175429 0.139252 -0.057564 0.229045 -0.118992 0.020292 -0.205005 0.083989 -0.055633 0.745940 -0.087075 0.252259 0.215086 -0.317111 0.007421 -0.101964 -0.472102 0.006233 -0.033932 0.063115 0.162730 -0.054998 0.114621 -0.022452 -0.146127 -0.014016 -0.162241 -0.100085 -0.049097 -0.717800 -0.077555 -0.038323 -0.246515 0.169928 0.385460 -0.068739 0.103053 -0.122357 -0.296165 -0.045270 -0.286398 0.121936 -0.130648 0.078781 0.052160 -0.019158 -0.300647 0.234439 -0.171288 -0.000865 -0.109980 -0.362726 -0.223927 0.037584 -0.184806 0.204000 0.145568 -0.212268 0.090637 -0.343894 0.134915 0.092937 0.070876 -0.056691 -0.379646 -0.355737 -0.183154 0.023261 0.291272 -0.234119 0.009467 -0.073334 -0.197307 -0.049180 0.187111 -0.316963 0.006642 0.165984 -0.291788 0.080821 -0.043315 -0.022380 -0.078750 0.147046 0.146566 -0.077945 0.307764 0.277906 -0.285479 -0.238480 -0.189534 0.059591 0.060968 0.397500 -0.108323 0.077132 0.083402 0.193439 -0.029042 -0.161321 0.153461 0.086939 0.062987 -0.371232 -0.365548 0.003219 0.265341 -0.021362 -0.032881 0.186931 0.228779 -0.232832 0.380639 -0.012024 0.215392 -0.115234 -0.379379 0.071668 0.481240 0.075230 0.319403 -0.379304 -0.069950 -0.016262 0.075143 0.273060 0.304818 0.202519 0.257270 -0.061768 -0.172152 -0.028786 -0.222359 -0.024062 -0.171614 0.232060 -0.206407 -0.093891 -0.189207 0.027414 -0.129094 0.144567 -0.073296 0.000709 0.013114 0.173712 0.060563 0.188103 0.079682 -0.195913 -0.009934 0.088394 -0.002408 0.247219 -0.014288 -0.128738 -0.094411 -0.005900 -0.049876 0.064022 -0.124138 0.109100 -0.070445 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.913854 -0.634869 -0.209489 1.166588 0.386834 -0.123407 0.171869 0.190245 0.085259 -1.662746 -0.659261 1.018045 -0.002987 -0.154431 0.130046 0.416511 0.685982 0.109754 -1.753734 0.310269 0.086224 -0.260639 -0.513187 -0.071750 0.033788 -0.757928 0.819256 0.792572 0.063277 0.985388 -0.601611 0.495415 0.815365 0.065999 0.862004 0.895761 0.028340 -0.281229 -0.447690 -0.202232 1.839253 0.417802 -0.049737 0.588054 0.489768 1.314750 0.244398 1.391841 1.035206 -0.365165 0.718480 0.143442 -0.566881 -0.150759 -1.577155 0.231087 0.539430 0.117075 -0.891397 0.559754 -0.471648 0.314614 0.391564 0.265348 1.529779 0.200171 1.010467 0.822318 1.266920 -0.837084 -0.047255 0.534729 0.883599 0.499992 0.717256 -0.603428 -0.703744 -1.114451 0.045019 -1.029241 0.006475 -0.319701 1.324123 -0.802380 -0.259369 0.341862 0.041228 1.103905 -0.739975 0.003671 -1.333918 0.085041 0.141764 1.452164 0.121457 0.304314 0.026587 0.400946 -0.085044 0.693800 0.187704 -1.274239 -0.373206 -2.135842 -0.951593 -0.795695 0.058471 -0.165837 -1.262705 0.208268 0.417606 1.030794 -1.385113 -0.133428 0.329650 0.101203 0.796858 0.022472 -0.377874 -0.222123 0.099846 0.637303 0.512703 -0.440890 0.177202 -0.624696 0.459919 0.264678 0.577947 0.087732 -1.002371 -0.257906 0.496808 0.241148 -0.098748 0.190229 0.328508 -0.722131 0.595038 -0.618354 1.026402 -1.283002 -0.311674 -0.875233 -0.535505 -0.433224 1.625956 0.914194 1.162421 0.352440 -0.380824 -0.005995 -1.415097 -2.088150 0.113479 -0.218081 0.014576 0.180090 -0.159840 0.322778 -0.636055 -0.117556 0.470057 -0.787090 -0.563194 -0.337960 0.035510 0.064400 -0.325257 -0.579359 0.049767 0.518444 0.220444 0.932955 -0.524740 -2.167357 -1.288616 -0.805175 0.911209 -0.574520 0.073181 -0.177785 -0.390097 -0.865926 0.274991 -0.864770 0.133312 -0.464062 -0.741704 -1.250080 0.344719 -0.383057 0.064729 0.170126 -1.058312 0.344409 0.225718 0.403238 0.172564 0.334612 -0.085464 -1.245687 -1.035153 0.076357 -0.256886 1.420180 0.552770 -0.050110 -0.533700 -0.537629 -1.016863 0.833299 -1.373595 0.534645 0.433131 -1.019560 0.697717 -0.749969 -0.219212 -0.547692 0.663371 0.212309 -1.444845 1.684847 1.327868 -1.218912 -0.431640 -0.601874 0.484058 0.296220 1.283651 -0.791775 -0.325063 0.297644 0.309176 -0.101347 -0.163189 0.551954 -0.015807 0.134951 -1.390481 -0.846453 0.829090 0.827644 -0.073694 -0.108489 0.244636 -0.002814 0.021382 1.402943 0.372524 0.495429 -0.942177 -2.528161 0.394766 0.324189 -0.180943 0.617469 -0.898373 -0.570621 -0.038531 -0.504980 1.199067 -0.009594 -0.200176 1.058467 -1.154574 -1.148175 -0.864583 -0.431773 0.059241 -0.366610 0.828263 -0.701548 -0.067781 -0.508718 0.439064 -0.508585 -0.256063 -0.112217 0.428428 0.611959 0.521856 -0.239665 1.130969 0.290828 -0.503355 -0.330071 0.057249 -0.334193 0.624706 -1.151838 -0.450201 -0.245133 0.459709 -0.665417 0.444296 0.065699 0.690164 0.117398 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.169110 -0.230895 0.079225 0.333484 0.269598 0.002995 0.035125 -0.038584 -0.073446 -0.546554 -0.255012 -0.071038 -0.054863 -0.048900 0.187113 0.092974 0.309178 0.015617 -0.305174 0.070842 0.025798 -0.152933 -0.138900 0.101772 -0.006757 -0.320576 0.063762 0.286991 -0.002365 0.273657 -0.233916 0.184185 0.244943 0.080250 0.349397 0.283956 0.140973 -0.125855 -0.052827 0.054687 0.699880 -0.069047 0.045363 0.108802 0.243860 0.404857 -0.046367 0.441856 0.234876 -0.089884 0.378874 -0.287281 -0.015779 0.048138 -0.607637 0.132098 0.201151 0.058637 -0.391986 0.168159 -0.214536 0.137014 0.073756 -0.010941 0.521721 0.050414 0.260253 0.239601 0.376939 -0.265117 -0.091199 0.242820 0.277169 0.165508 -0.023405 -0.070155 0.061134 -0.641751 0.011628 -0.136686 0.089068 -0.107018 0.355122 -0.169620 -0.138174 0.290397 -0.139908 0.301128 -0.193653 0.007530 -0.507211 0.049527 0.159350 0.190389 0.064150 -0.005086 0.045544 0.104658 -0.051267 0.298795 -0.028203 -0.350473 -0.371893 -0.790477 -0.498660 -0.169711 0.063819 -0.187137 -0.428539 0.033346 0.341613 0.243980 -0.329347 -0.010559 0.066595 0.111279 -0.034885 -0.012339 -0.252817 -0.220198 0.069598 0.243500 0.144442 0.004198 0.096085 -0.520537 0.217018 0.046019 0.263069 -0.102433 -0.054712 -0.079940 0.090461 0.064601 -0.127404 -0.070443 0.052552 -0.195566 0.222646 -0.088836 0.327582 -0.382362 -0.004735 -0.416530 -0.232334 -0.073082 0.757104 0.291966 0.385405 0.290348 -0.290546 0.024039 -0.412711 -0.650439 -0.018879 -0.104340 0.123834 0.063760 -0.078451 0.124869 -0.110215 -0.099174 0.122312 -0.296608 -0.187274 -0.161628 -0.181605 -0.023595 -0.140583 -0.314527 0.116213 0.373760 -0.139222 0.205820 -0.207994 -0.318617 -0.282894 -0.334853 0.230069 -0.178089 0.126122 0.029499 -0.022506 -0.436942 0.202597 -0.269098 -0.020414 -0.220336 -0.318616 -0.369429 0.071964 -0.162209 -0.030635 0.084695 -0.317802 0.174141 0.013926 0.100608 0.107266 0.109470 -0.102874 -0.361756 -0.445325 -0.104213 -0.002760 0.361632 0.196088 -0.003306 -0.116348 -0.246101 -0.269370 0.303431 -0.380758 0.094043 0.260454 -0.408185 0.157107 -0.247082 -0.143408 -0.107750 0.205675 0.100272 -0.502557 0.402306 0.367504 -0.453749 -0.256662 -0.391902 0.186363 0.056187 0.536788 -0.096575 0.171303 0.107712 0.209303 -0.044639 -0.129216 0.208047 0.075832 0.096511 -0.540648 -0.407723 0.243730 0.353354 -0.019281 -0.003776 0.109788 0.247972 -0.013087 0.520432 0.063851 0.125217 -0.175063 -0.680861 0.091059 0.274846 -0.017107 0.294039 -0.307393 -0.151512 -0.138085 -0.140786 0.413010 0.130392 0.103344 0.386433 -0.170688 -0.341393 -0.178825 -0.106783 -0.016273 -0.279409 0.281230 -0.284322 -0.081801 -0.218126 0.156717 -0.068542 -0.041599 -0.308672 0.037024 0.137763 0.180385 -0.012111 0.326512 0.107372 -0.206121 -0.090326 0.097342 0.039431 0.358509 -0.323826 -0.269215 -0.156916 0.061739 -0.171128 0.123351 -0.062905 0.226751 0.109022 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = 0.427119 -0.456340 -0.008927 0.569148 0.330196 -0.145325 0.088970 0.046229 0.013675 -0.840273 -0.330265 0.125506 -0.024729 -0.175498 0.207979 0.197007 0.389165 0.019348 -0.623602 0.224831 0.018818 -0.171182 -0.354755 0.045881 -0.013951 -0.460112 0.188350 0.437215 -0.033789 0.452774 -0.340394 0.218405 0.398662 0.023253 0.508055 0.492655 0.214045 -0.131601 -0.071963 0.134373 1.073046 0.095077 -0.015364 0.224015 0.401648 0.649599 -0.015216 0.902120 0.314944 -0.152649 0.588472 -0.269581 -0.144952 0.003198 -0.911321 0.219538 0.469084 0.093038 -0.600757 0.321153 -0.329046 0.181040 0.191250 0.162867 0.854937 0.184837 0.457767 0.400343 0.743354 -0.380164 -0.093612 0.358064 0.538180 0.211796 0.234163 -0.251545 -0.169727 -0.856880 0.061478 -0.256528 0.113187 -0.174271 0.588090 -0.373721 -0.142391 0.412932 -0.049729 0.522137 -0.403823 -0.018456 -0.727139 0.078811 0.139763 0.691172 0.012072 0.142425 0.009935 0.239447 -0.041110 0.432886 0.030009 -0.617624 -0.470311 -1.234029 -0.728433 -0.316113 -0.028689 -0.254721 -0.753177 0.017746 0.417209 0.339599 -0.640979 0.014821 0.156312 0.107614 0.369084 0.016401 -0.334878 -0.212720 0.061544 0.320407 0.181151 -0.079039 0.088454 -0.706023 0.380381 0.174929 0.319432 -0.118604 -0.342470 -0.016159 0.165430 0.121547 -0.162617 -0.030829 0.074105 -0.510240 0.325263 -0.263550 0.516872 -0.726931 -0.135371 -0.605610 -0.431544 -0.106724 1.089958 0.362305 0.655268 0.315073 -0.429895 -0.019244 -0.753386 -1.182363 -0.005576 -0.202756 0.117270 0.036723 -0.095406 0.082416 -0.200475 -0.152974 0.239678 -0.473502 -0.251072 -0.256764 -0.045203 -0.034028 -0.205577 -0.398327 0.083603 0.539663 0.015828 0.383862 -0.293880 -0.843679 -0.560645 -0.473372 0.399362 -0.228164 0.151123 -0.018586 -0.109555 -0.746650 0.284381 -0.413348 0.083194 -0.347171 -0.423535 -0.603102 0.110395 -0.219140 0.076603 0.023635 -0.524927 0.229534 -0.008369 0.207150 0.127674 0.189261 -0.091434 -0.717901 -0.740197 -0.063567 0.028134 0.774445 0.247151 0.038675 -0.058752 -0.300011 -0.545254 0.453997 -0.764525 0.146745 0.398903 -0.619547 0.392486 -0.390122 -0.290015 -0.333880 0.342331 0.081213 -0.508046 0.864302 0.631301 -0.710934 -0.345789 -0.475447 0.290516 0.156357 0.840995 -0.261740 0.074119 0.205298 0.260464 -0.098639 -0.171814 0.335653 0.017132 0.249617 -0.798458 -0.555583 0.373175 0.572984 -0.061959 -0.042653 0.039677 0.145047 -0.130676 0.804862 0.129919 0.232961 -0.399583 -1.177000 0.154331 0.149223 -0.087491 0.353179 -0.515553 -0.277324 -0.129240 -0.117183 0.678479 0.245879 0.106594 0.574107 -0.516323 -0.623486 -0.309411 -0.152826 -0.008536 -0.369525 0.421754 -0.448897 -0.074469 -0.292680 0.298306 -0.161002 -0.133392 -0.341325 0.086486 0.225259 0.221807 -0.185801 0.569426 0.148880 -0.254521 -0.162614 0.104213 0.012371 0.488690 -0.455661 -0.352852 -0.288955 0.178515 -0.301179 0.348092 -0.057725 0.396457 0.174556 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = 2.947684 -1.935736 -0.789643 3.108875 0.662751 -1.618212 0.808815 1.666811 0.739405 -4.858023 -1.845797 0.682115 0.431025 -1.257001 0.828845 1.337694 1.407547 1.143975 -5.701259 1.626321 1.091620 0.198681 -1.827213 -0.820136 0.034128 -1.804415 -0.384348 1.735510 0.071616 3.281833 -1.960922 0.931436 2.810818 -0.520834 2.236640 3.218892 0.762284 -0.288555 0.675704 0.824757 5.493817 2.037300 -1.069940 1.016049 1.570851 3.975902 -0.138617 4.894259 -0.337650 -1.424294 2.445388 -1.928737 -1.560198 -0.049104 -4.075180 1.410841 4.176205 2.300895 -3.132850 2.375453 -1.686210 0.969259 1.811764 0.768199 4.623855 2.089931 2.082419 2.765595 4.931345 -1.982232 0.545950 0.619512 2.385109 -0.303049 2.067179 -2.300682 -1.392845 -5.718519 0.679217 -3.834363 0.447860 -0.368521 3.914551 -3.468807 1.049284 2.626840 0.982510 3.569249 -2.873339 -0.391814 -3.763444 0.100895 -0.072729 6.083385 -0.414914 0.996047 -0.194448 2.274558 -0.000255 1.542008 0.440204 -3.577837 -2.936535 -6.938021 -3.488621 -1.973850 -0.915214 -0.323919 -4.707572 -0.563143 2.791715 1.466699 -5.400259 0.477652 1.102517 0.715955 2.319611 0.312970 -2.102622 -0.042391 -1.134393 1.148727 0.820275 -1.747367 0.223903 -3.149777 1.109603 1.742690 1.237954 -0.119452 -3.541159 0.402504 1.005533 -0.211642 -0.763807 1.086434 0.694125 -3.312998 1.834929 -3.077814 3.097367 -4.710658 -0.848615 -2.459343 -3.063817 -0.922482 4.765674 1.658896 1.997248 0.762776 -2.360527 -0.328753 -4.842286 -6.603942 0.573853 -0.801684 1.166374 -0.026260 -0.683206 -0.303374 -1.422383 -0.478407 0.834527 -2.740554 -1.336093 -1.228036 3.010288 -0.055549 -1.201243 -1.861682 0.050464 3.387472 0.433509 2.170181 -1.889569 -3.471475 -4.251675 -2.255909 2.999048 -1.063651 0.697972 -0.918569 -0.415891 -4.358920 1.636444 -2.574835 0.968540 -1.727059 -1.418705 -4.080724 0.910345 -1.066399 0.614638 -0.001175 -3.029689 1.246257 0.288624 1.603490 0.048973 0.554392 0.606152 -4.644040 -4.110935 0.075949 -0.070233 4.682057 1.444525 0.473852 -0.219770 -1.165839 -3.041560 3.015104 -3.754151 1.262363 1.203558 -2.814002 3.245689 -2.344786 -1.877139 -3.398260 2.009377 0.335462 -1.368755 5.940081 3.161340 -3.652779 -0.868940 -2.498487 1.938613 1.362110 4.248033 -1.897182 -1.183861 1.487331 0.060791 -0.600090 -1.522118 1.679748 -0.819327 1.932841 -3.859440 -1.745664 2.456591 2.936982 -0.464975 0.771368 0.180485 -0.397018 -0.981826 4.309600 1.089249 0.760741 -2.873840 -6.217831 1.295815 0.050346 0.369908 0.275380 -2.538527 -1.450987 -0.099691 1.052442 3.825883 3.616982 0.092357 3.204994 -4.584481 -4.138411 -1.869069 0.282430 0.611864 -1.704080 1.239258 -2.263093 0.369247 -0.700382 2.189588 -0.041325 -1.940278 -2.449484 0.917628 2.180668 0.570813 -2.421373 3.908846 0.410146 -1.321710 -0.589383 -0.085270 -0.066683 1.520802 -0.996540 -1.351242 -1.095077 1.740916 -2.566894 3.094582 -0.359226 1.609922 1.280669 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = 0.443749 -0.563869 -0.070151 0.584615 0.235885 -0.225379 0.084531 0.063117 0.098964 -0.813999 -0.270760 0.095521 -0.003172 -0.231166 0.221248 0.226922 0.351692 0.050505 -0.728402 0.308979 0.042310 -0.124535 -0.373855 0.029314 -0.005669 -0.437200 0.161041 0.398101 -0.045199 0.469121 -0.364046 0.230913 0.418505 -0.036143 0.500645 0.506632 0.178518 -0.115319 -0.010559 0.238268 1.049959 0.142789 -0.035425 0.173469 0.386362 0.657771 0.024580 0.969531 0.425338 -0.170022 0.639109 -0.302178 -0.145233 0.014005 -0.896366 0.203150 0.497875 0.135774 -0.608581 0.336969 -0.351972 0.191626 0.236965 0.203289 0.922612 0.202576 0.465752 0.417768 0.781450 -0.310846 -0.007262 0.262414 0.566646 0.139594 0.339119 -0.327521 -0.219513 -1.003129 0.048815 -0.262290 0.143645 -0.135350 0.485219 -0.447447 -0.053867 0.419293 -0.015457 0.578612 -0.436148 -0.026925 -0.721697 0.069587 0.177155 0.745422 -0.037987 0.147449 -0.013484 0.283193 -0.076907 0.354887 0.081112 -0.669142 -0.467240 -1.268080 -0.756380 -0.327720 -0.100375 -0.250706 -0.846624 0.037570 0.407355 0.252243 -0.732595 0.056489 0.143844 0.065429 0.422936 -0.039150 -0.273163 -0.184265 0.011388 0.392522 0.176847 -0.143195 0.082882 -0.782346 0.394891 0.278350 0.298747 -0.128206 -0.265137 0.031286 0.177555 0.198465 -0.179924 0.047412 0.088650 -0.545795 0.321481 -0.331115 0.536550 -0.743460 -0.186749 -0.616857 -0.371554 -0.110068 1.180753 0.311783 0.623896 0.272870 -0.500905 0.013940 -0.817774 -1.226731 -0.004912 -0.274290 0.102516 0.036409 -0.087972 0.021626 -0.153478 -0.128684 0.188496 -0.507634 -0.253656 -0.257498 -0.177072 -0.004674 -0.213679 -0.387589 0.044130 0.600091 0.052071 0.386016 -0.281402 -0.887430 -0.588609 -0.440199 0.426505 -0.207940 0.179312 -0.057807 -0.102547 -0.789196 0.310966 -0.428480 0.054864 -0.360017 -0.368539 -0.620512 0.079481 -0.218721 0.199128 -0.048093 -0.532485 0.239961 -0.079328 0.286858 0.112253 0.204888 -0.058621 -0.792423 -0.766643 -0.055665 0.022791 0.847267 0.163051 0.065347 -0.030587 -0.266049 -0.544734 0.455843 -0.857644 0.157162 0.425306 -0.670488 0.448940 -0.381060 -0.319784 -0.370264 0.351270 0.038087 -0.437529 0.920725 0.649204 -0.735865 -0.272384 -0.470893 0.347313 0.182533 0.833755 -0.247714 0.062478 0.196834 0.258269 -0.102694 -0.215844 0.332509 -0.047829 0.265781 -0.759053 -0.493549 0.397024 0.563718 -0.055505 -0.093404 -0.021913 0.084944 -0.212018 0.773187 0.106674 0.260288 -0.430141 -1.208258 0.147221 0.251514 -0.031147 0.374948 -0.576339 -0.221120 -0.125719 -0.047813 0.693030 0.375888 0.149024 0.557255 -0.607689 -0.666013 -0.349923 -0.116895 -0.030262 -0.328803 0.424723 -0.451662 -0.066584 -0.267502 0.377067 -0.167285 -0.131510 -0.346542 0.138402 0.209522 0.214358 -0.277821 0.582744 0.131888 -0.250169 -0.180397 0.080357 -0.055586 0.443555 -0.335109 -0.334040 -0.275784 0.228710 -0.351791 0.415931 -0.117706 0.435267 0.129427 -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.411195 0.205908 0.185453 1.150435 0.590215 -0.784474 0.707116 1.239718 0.314003 -2.594549 -1.130143 1.093644 0.023174 -0.616654 0.019833 0.249639 0.837141 1.744960 -2.285899 0.456756 0.643246 0.954453 -0.439795 -1.150627 0.065063 -0.231792 -0.777189 0.467821 0.558284 1.825440 -1.074325 -0.278276 1.457144 -0.008739 0.599300 1.763130 1.316857 -0.096299 0.332770 -0.644189 2.816410 0.868260 -0.006744 1.548702 0.869124 1.919894 -0.094193 1.798922 -0.438726 -0.814615 0.162458 -1.504439 -1.059098 -0.202597 -1.709824 1.191711 1.920360 1.727722 -1.457000 1.503857 0.311219 0.435833 0.830116 -0.772563 1.142322 1.480387 -0.224293 1.310001 2.758085 -1.259047 0.029516 0.167533 1.320206 0.198633 0.993700 -1.152637 -0.280565 -2.454909 -0.101007 -2.644378 0.473292 -0.309427 3.307773 -2.037607 1.400885 1.877842 0.426241 1.225528 -0.774232 -0.769262 -1.764483 0.213508 -0.459669 2.807655 0.009653 0.355133 -0.395884 0.771651 0.287150 0.793554 0.128590 -1.355092 -1.501619 -3.552960 -1.177800 -0.965211 -0.692264 -0.125035 -1.664779 -0.800528 1.490323 1.796802 -3.027493 -0.225481 0.801421 0.359327 -0.342306 0.023819 -1.122298 0.261585 -0.901589 -0.179154 -0.136733 -1.419717 -0.526712 -0.396830 -0.802752 0.218105 0.624791 -0.044959 -1.900809 -0.433810 -0.098114 -0.189075 -0.400908 0.142527 0.000567 -1.669745 0.880632 -1.666220 1.201455 -1.808206 -0.420843 -0.378638 -1.906341 -0.699559 2.358755 -0.066677 1.055576 0.213242 -0.694598 -1.074296 -1.633867 -2.602809 1.348155 -0.382983 1.166051 0.333833 -0.235359 -0.530664 -1.049143 -0.916465 0.302184 -1.101642 -0.376701 -0.398310 2.758183 -0.919230 -0.507250 -1.699077 0.416941 2.168393 0.278706 0.104338 -1.458032 -0.671119 -1.624044 -1.224667 1.622060 -0.593667 0.442360 -0.223606 -0.046474 -1.092414 0.532032 -1.312107 0.829150 -0.677631 -0.883894 -2.257229 0.629706 -0.715509 -0.318752 0.614791 -1.371252 0.773572 0.223820 0.740797 -0.489282 -0.035635 0.627561 -2.549139 -1.916751 -0.471792 0.045031 1.442006 1.186040 0.767645 -1.172871 -0.517712 -1.246340 1.505627 -1.852202 0.541614 0.109370 -0.500776 1.841672 -1.021314 -0.295895 -2.196115 1.045604 0.637720 -1.855165 2.467662 1.132978 -1.608710 -0.545101 -1.308078 0.575927 0.931820 2.273599 -1.331567 -1.158515 1.417410 -1.027854 -0.254549 -1.512190 0.787756 -0.135967 1.552131 -1.979110 -0.673002 0.997716 1.414523 -0.465034 0.890703 0.901255 0.111199 -0.133093 2.461351 0.784251 0.336942 -1.648847 -2.658956 0.995636 0.579913 0.966106 0.102136 -0.911172 -0.727972 0.597939 0.589280 1.685778 1.451043 0.320978 1.643403 -2.181053 -1.951027 0.230233 0.200745 1.273264 -1.174000 0.639178 -1.057584 0.159872 -0.324823 0.859491 0.395442 -0.850027 -1.435989 0.384800 1.607239 0.536280 -0.873918 2.143196 -0.163402 -1.044986 0.811487 -0.560442 1.049634 -0.018063 -0.668041 -0.275797 -0.459867 0.699623 -1.365723 2.271893 -0.387354 0.148287 0.891010 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = 0.504224 -0.379405 -0.029524 0.659046 0.248454 -0.353921 0.193789 0.235851 -0.051295 -0.971165 -0.328493 0.081275 0.022185 -0.302396 0.181358 0.198777 0.314138 0.164539 -1.018906 0.321740 0.140016 -0.062183 -0.448056 -0.171222 -0.038642 -0.475456 0.060783 0.583186 -0.070165 0.629854 -0.391565 0.135511 0.509600 0.026175 0.588851 0.686908 0.299323 -0.069409 0.035430 0.257815 1.225135 0.353403 -0.240560 0.159704 0.487656 0.828940 0.091636 0.712362 -0.173014 -0.224391 0.396654 -0.222632 -0.262039 -0.117657 -0.943367 0.203627 0.768156 0.415832 -0.705979 0.527833 -0.472911 0.150912 0.316859 0.284070 1.005916 0.228516 0.481432 0.503004 0.990063 -0.464867 -0.043463 0.283187 0.579622 -0.028271 0.310260 -0.206315 -0.349487 -1.300882 0.127915 -0.757619 0.012192 0.018714 0.696360 -0.549658 0.057770 0.592533 0.104751 0.628124 -0.629858 -0.177765 -0.815017 0.018067 -0.020045 1.236567 0.039735 0.188978 0.071941 0.479677 0.144310 0.488076 0.025581 -0.760136 -0.521287 -1.562276 -0.723619 -0.398652 -0.195406 -0.250156 -0.831568 -0.195388 0.759791 0.510295 -0.938378 0.098701 0.278810 0.141690 0.377543 -0.305754 -0.406022 0.050197 -0.174536 0.214845 0.305771 -0.269454 0.045072 -0.524519 0.418328 0.255482 0.300735 -0.039631 -0.680117 0.050699 0.281339 -0.073910 -0.203908 0.045826 -0.000817 -0.654140 0.359405 -0.619241 0.719404 -0.909655 0.081520 -0.554052 -0.637412 -0.107990 0.868490 0.410418 0.391303 0.186763 -0.482374 0.051836 -0.914773 -1.573630 0.187317 -0.068307 0.185592 -0.117449 -0.157567 -0.046006 -0.301014 -0.172130 0.368742 -0.549003 -0.242708 -0.243819 0.472892 0.051850 -0.304384 -0.354487 0.087011 0.705502 0.241689 0.444057 -0.473869 -0.792697 -0.764669 -0.532518 0.558533 -0.199394 0.013830 -0.090689 -0.201098 -0.956384 0.477294 -0.507247 0.316925 -0.434073 -0.320125 -0.781433 0.115949 -0.246961 0.059019 -0.030413 -0.588231 0.196004 -0.019963 -0.010241 0.045096 0.098416 0.146649 -0.768153 -0.819742 0.048336 0.097241 0.889845 0.309858 0.161333 -0.095736 -0.207494 -0.650369 0.625267 -0.635585 0.199693 0.322682 -0.752457 0.693320 -0.422523 -0.431240 -0.445494 0.449225 0.102230 -0.177276 1.256186 0.824585 -0.800191 -0.360963 -0.419110 0.281202 0.298872 0.987575 -0.450279 -0.126109 0.300165 0.099205 -0.125206 -0.169093 0.370543 -0.064672 0.413347 -0.890064 -0.526188 0.445973 0.689651 -0.063564 0.149858 -0.053773 -0.017774 -0.314099 0.956540 0.164316 0.272139 -0.546843 -1.128765 0.288665 -0.252103 0.004065 0.140098 -0.412402 -0.383241 -0.098193 0.097321 0.807507 0.647588 -0.242280 0.677751 -0.799440 -0.836483 -0.453809 -0.047148 0.077468 -0.492547 0.420995 -0.492443 0.054699 -0.253156 0.394019 -0.038221 -0.248027 -0.424743 0.083280 0.282412 0.229578 -0.507112 0.796902 0.030785 -0.288527 -0.197210 0.056214 0.035784 0.546485 -0.335157 -0.419109 -0.390656 0.383933 -0.400035 0.571137 -0.051750 0.407955 0.397129 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = 0.869717 -0.753799 -0.197222 0.990770 0.467341 -0.308918 0.149510 0.166662 0.056655 -1.409373 -0.594093 0.381482 0.034704 -0.351159 0.317209 0.401590 0.626089 -0.019866 -1.185640 0.425901 0.014548 -0.340941 -0.795386 0.081078 -0.060588 -0.776756 0.290432 0.727724 -0.101043 0.782679 -0.521305 0.399401 0.689432 -0.056811 0.881061 0.859538 0.203688 -0.199332 -0.051253 0.233042 1.802818 0.312230 -0.075887 0.372712 0.666760 1.122158 -0.114998 1.724876 0.349644 -0.261799 1.078791 -0.311956 -0.317277 0.033564 -1.530850 0.330087 0.901214 0.086162 -1.015906 0.580507 -0.628161 0.305779 0.381929 0.413140 1.538121 0.411271 0.857945 0.729591 1.296118 -0.606249 -0.081195 0.576479 0.885438 0.283420 0.460436 -0.484261 -0.395247 -1.199224 0.197433 -0.508098 0.184011 -0.311444 1.150180 -0.687098 -0.251803 0.597960 0.077997 0.952459 -0.800116 -0.016058 -1.191106 0.092400 0.106186 1.392194 -0.045555 0.369727 -0.012406 0.456034 -0.099223 0.684855 -0.024706 -1.108361 -0.778891 -2.059394 -1.235454 -0.557569 -0.110634 -0.368476 -1.335664 -0.001223 0.625650 0.517806 -1.153425 0.054078 0.253696 0.113141 0.901683 0.320438 -0.673351 -0.321923 0.056630 0.535584 0.318289 -0.083589 0.168007 -1.210517 0.668225 0.363161 0.489361 -0.119078 -0.903604 0.093810 0.358520 0.092935 -0.259246 0.051192 0.162058 -0.925344 0.548591 -0.497776 0.881143 -1.389396 -0.327301 -1.071797 -0.856036 -0.174978 1.669719 0.749634 1.139068 0.478571 -0.648292 -0.016847 -1.436500 -2.062288 -0.060045 -0.366486 0.153524 -0.046155 -0.151185 0.095573 -0.379699 -0.190157 0.449241 -0.819628 -0.435310 -0.480667 0.312301 0.013333 -0.370704 -0.552781 0.051266 0.786033 0.105271 0.748842 -0.465790 -1.625758 -1.097559 -0.727922 0.710472 -0.358217 0.228803 -0.073560 -0.224060 -1.314432 0.398506 -0.699044 0.172346 -0.615749 -0.606834 -1.037154 0.206035 -0.307966 0.124473 -0.060655 -0.910227 0.373598 0.169148 0.403458 0.202087 0.351968 -0.139108 -1.224719 -1.242755 0.012531 0.035399 1.449804 0.555451 0.037319 0.025360 -0.452800 -1.050506 0.756218 -1.339630 0.290699 0.677752 -1.056770 0.716519 -0.725074 -0.564734 -0.645340 0.579083 0.057727 -0.823442 1.577769 1.082778 -1.215144 -0.518960 -0.780520 0.536929 0.260322 1.375918 -0.455990 0.045749 0.334460 0.410904 -0.177752 -0.213605 0.557770 -0.024143 0.425934 -1.328572 -0.857928 0.735217 0.943163 -0.105715 -0.088611 -0.062363 0.086286 -0.152658 1.343723 0.246323 0.338616 -0.729663 -2.149666 0.255386 -0.006877 -0.261145 0.466798 -0.823981 -0.516890 -0.241427 -0.228780 1.158229 0.350427 0.095748 0.955945 -1.018182 -1.124276 -0.646294 -0.180892 -0.028350 -0.566379 0.646832 -0.748976 -0.069001 -0.456619 0.572311 -0.266036 -0.357098 -0.575509 0.183282 0.411324 0.295746 -0.430880 0.996657 0.253744 -0.346862 -0.349849 0.156558 -0.037851 0.825385 -0.843247 -0.591364 -0.507138 0.369586 -0.559116 0.618660 0.001856 0.744092 0.347588 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = 0.377770 -0.476014 0.014065 0.525453 0.341696 -0.085329 0.061142 -0.013073 0.035898 -0.772316 -0.301856 0.121396 -0.042616 -0.132618 0.205101 0.182215 0.391204 -0.015943 -0.492578 0.191144 -0.013706 -0.182864 -0.298195 0.093993 -0.002780 -0.438051 0.233690 0.387733 -0.020632 0.388128 -0.318773 0.222742 0.353139 0.027557 0.463272 0.422604 0.207297 -0.139392 -0.112585 0.104760 0.990699 0.018552 0.038921 0.231537 0.365215 0.576746 -0.016260 0.896872 0.456751 -0.128370 0.600576 -0.274669 -0.105718 0.020586 -0.867090 0.216524 0.368010 0.018398 -0.549787 0.254515 -0.271623 0.179144 0.148606 0.126641 0.774938 0.152180 0.431819 0.352115 0.651870 -0.347948 -0.109554 0.364687 0.516431 0.271919 0.217708 -0.254351 -0.125452 -0.742821 0.033138 -0.106918 0.130429 -0.211140 0.501651 -0.311233 -0.184141 0.359720 -0.102776 0.467823 -0.322457 0.019811 -0.678328 0.095156 0.191689 0.522039 0.009215 0.114685 -0.001243 0.169890 -0.078363 0.405612 0.052341 -0.556142 -0.425646 -1.104309 -0.695617 -0.284734 0.015832 -0.252185 -0.697194 0.075087 0.315936 0.283109 -0.535676 -0.006665 0.122979 0.099727 0.348994 0.044997 -0.274602 -0.264955 0.124381 0.333566 0.143469 -0.043121 0.093065 -0.711136 0.362379 0.148802 0.312311 -0.140849 -0.208478 -0.041165 0.123779 0.188830 -0.145829 -0.057218 0.084058 -0.456863 0.302324 -0.165833 0.447764 -0.635274 -0.176309 -0.583830 -0.341792 -0.102534 1.121417 0.307835 0.692952 0.331545 -0.413167 -0.035748 -0.665953 -1.045511 -0.046740 -0.222663 0.091181 0.086296 -0.077028 0.112696 -0.163631 -0.148807 0.195893 -0.432536 -0.240035 -0.240195 -0.232880 -0.058946 -0.169064 -0.398506 0.087552 0.489317 -0.032534 0.349056 -0.237750 -0.827560 -0.472776 -0.444679 0.340481 -0.226961 0.177504 0.003761 -0.086496 -0.664536 0.237016 -0.372554 0.024831 -0.307957 -0.443450 -0.532502 0.101678 -0.210989 0.094928 0.043864 -0.487343 0.226191 -0.041879 0.246675 0.144125 0.201822 -0.142953 -0.683338 -0.692788 -0.096986 0.011888 0.713063 0.187656 0.011385 -0.051839 -0.312998 -0.484427 0.391216 -0.769943 0.122493 0.402769 -0.564255 0.300562 -0.354704 -0.236994 -0.286807 0.303900 0.080556 -0.544420 0.733528 0.564339 -0.658049 -0.333826 -0.457778 0.274403 0.117736 0.774900 -0.211505 0.118827 0.175195 0.294508 -0.087205 -0.170763 0.313895 0.039650 0.198351 -0.743264 -0.547774 0.323621 0.523763 -0.059323 -0.092924 0.070894 0.182947 -0.104419 0.736048 0.111653 0.229833 -0.346438 -1.125107 0.116604 0.261740 -0.097069 0.406068 -0.533307 -0.233133 -0.122614 -0.154418 0.617829 0.151194 0.193811 0.525289 -0.420927 -0.540186 -0.251586 -0.189734 -0.030361 -0.324743 0.415311 -0.421311 -0.107273 -0.295811 0.255584 -0.195269 -0.079182 -0.288298 0.081965 0.192331 0.217334 -0.092484 0.487519 0.169895 -0.242392 -0.142414 0.113726 0.003202 0.454984 -0.451828 -0.318763 -0.251249 0.118708 -0.258542 0.277850 -0.069463 0.372345 0.101440 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = 1.256803 -1.406551 -0.342715 1.477755 0.270808 -0.804070 0.376894 0.422823 0.342995 -1.775913 -0.307117 0.693702 0.140286 -0.646505 0.179200 0.522909 0.505700 0.020639 -2.177420 0.795373 0.052311 -0.167670 -1.156561 -0.311117 -0.089086 -0.964511 0.821617 1.180357 -0.239563 1.157730 -0.659522 0.227835 0.969927 -0.220466 1.105547 1.325165 0.564785 0.010542 -0.244286 0.691304 2.287602 0.990659 -0.654597 0.363619 0.910504 1.606352 0.533039 2.032543 0.257154 -0.413397 0.957060 0.079542 -0.659317 -0.448096 -1.870010 0.288134 1.613776 0.581164 -1.343986 1.031235 -0.924392 0.256046 0.716965 1.195495 2.125749 0.425947 1.329358 0.984892 2.028972 -0.849875 0.005627 0.575095 1.389504 0.061756 1.316433 -0.809524 -1.375552 -2.159652 0.352248 -1.032419 -0.052373 -0.046437 0.867784 -1.139183 -0.006702 0.858736 0.326814 1.310495 -1.394014 -0.241732 -1.490226 0.032588 0.051439 3.039399 -0.111520 0.631102 0.117110 1.050749 0.259743 0.857146 0.463763 -1.726936 -0.489387 -2.869109 -1.338394 -0.934423 -0.518657 -0.434347 -1.736973 -0.219267 0.923466 0.620872 -1.850635 0.283080 0.545244 0.092340 2.044431 -0.700503 -0.294117 0.254911 -0.186111 0.480801 0.613035 -0.669790 0.125323 -0.886377 1.188602 0.832238 0.413457 0.008808 -1.492391 0.343213 0.666747 0.257272 -0.308492 0.253047 0.038935 -1.646329 0.655155 -1.307939 1.427893 -1.931580 -0.223553 -1.053075 -1.039801 -0.207260 1.785204 0.511325 1.098259 0.110922 -1.031285 0.145126 -1.969295 -3.522456 0.215846 -0.170892 -0.048621 -0.221053 -0.257264 -0.158633 -0.611986 -0.231618 0.805979 -1.051849 -0.451229 -0.410123 0.399796 0.223459 -0.535763 -0.340121 0.010610 1.128119 1.013186 1.208622 -0.694877 -2.836420 -1.649391 -0.859974 1.086441 -0.320486 -0.061174 -0.213754 -0.680884 -2.062292 0.841984 -0.939679 0.740368 -0.839428 -0.579405 -1.482558 0.228643 -0.437043 0.704876 -0.253879 -1.244099 0.268003 -0.401194 0.191016 0.122085 0.344717 0.339316 -1.826866 -1.648924 0.329860 0.158752 2.382442 0.086261 0.264634 0.292666 -0.293322 -1.448446 1.026499 -1.775757 0.400446 0.767371 -1.579976 1.411178 -0.759125 -0.930076 -1.025897 0.907619 0.069755 0.457626 2.909093 1.846559 -1.562622 -0.598893 -0.343587 0.574939 0.593235 1.827104 -1.098416 -0.579322 0.540900 0.331159 -0.261056 -0.144983 0.697941 -0.236299 0.724551 -1.634847 -0.944460 0.803811 1.294815 -0.142578 -0.064145 -0.352080 -0.595543 -1.025149 1.802610 0.286657 0.810595 -1.262944 -2.564731 0.528150 -0.855668 -0.287928 0.288364 -1.131990 -0.710317 -0.018582 0.283832 1.566277 1.225885 -0.490383 1.236984 -2.001627 -1.718415 -1.104528 -0.375315 -0.002899 -0.647101 0.892298 -0.970367 0.170873 -0.534007 0.831885 -0.496693 -0.367567 -0.149149 0.293698 0.349394 0.290831 -1.172432 1.544169 0.078898 -0.377263 -0.575106 0.114718 -0.337892 1.081734 -0.598742 -0.661999 -0.788194 0.916306 -0.785953 1.124796 -0.053204 1.009243 0.531853 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.147734 -0.399127 0.110848 0.319984 0.235105 -0.027513 0.041932 -0.076986 0.063138 -0.447850 -0.091259 0.016895 -0.069724 -0.048542 0.117953 0.072128 0.233124 -0.007695 -0.231609 0.106729 -0.023776 -0.065898 -0.063857 0.044086 0.025455 -0.263790 0.269451 0.250944 0.005374 0.210243 -0.216597 0.094582 0.195458 0.050933 0.249476 0.232795 0.253695 -0.073072 -0.170341 0.094229 0.579333 -0.050892 0.021246 0.145412 0.221399 0.324968 0.129051 0.454689 0.490722 -0.071733 0.301311 -0.191950 -0.032755 -0.054093 -0.521353 0.141592 0.160529 0.048991 -0.321127 0.128939 -0.107144 0.096907 0.061387 0.072618 0.411037 0.006051 0.248562 0.168084 0.377632 -0.228619 -0.110207 0.236702 0.367091 0.227190 0.195700 -0.164734 -0.108234 -0.602022 -0.037556 0.046108 0.064206 -0.112744 0.088201 -0.156563 -0.107394 0.253591 -0.165792 0.235312 -0.130620 0.007845 -0.416154 0.085738 0.226263 0.252898 0.030225 0.006111 0.022981 0.088801 -0.014742 0.263139 0.161534 -0.319818 -0.177367 -0.655491 -0.390683 -0.177590 0.028981 -0.189723 -0.378860 0.085111 0.176460 0.159172 -0.274437 -0.008420 0.087434 0.086616 0.190965 -0.251074 0.007225 -0.145830 0.124851 0.204459 0.083298 -0.100858 0.042917 -0.368928 0.254673 0.090730 0.194732 -0.131269 0.101718 -0.080368 0.032738 0.259684 -0.085609 -0.087821 0.021290 -0.284041 0.171911 -0.089336 0.270497 -0.273974 -0.073117 -0.293920 -0.072130 -0.063923 0.801694 0.020741 0.420193 0.189593 -0.324259 -0.022760 -0.293371 -0.654394 0.000268 -0.109411 0.025937 0.133191 -0.048423 0.083772 -0.071311 -0.127459 0.099249 -0.237724 -0.127092 -0.090130 -0.517137 -0.068279 -0.075270 -0.272192 0.099632 0.358394 0.017911 0.181115 -0.136275 -0.529277 -0.189185 -0.293311 0.177690 -0.142497 0.103800 0.027141 -0.071117 -0.388893 0.202309 -0.214243 0.021080 -0.159473 -0.336554 -0.299209 0.044018 -0.169180 0.156488 0.073876 -0.285241 0.123349 -0.237167 0.123216 0.096809 0.111794 -0.074670 -0.447220 -0.424419 -0.111061 0.015628 0.413489 -0.087052 0.028233 -0.056161 -0.204486 -0.211751 0.215110 -0.492637 0.040885 0.251260 -0.347629 0.157607 -0.143819 -0.099075 -0.132510 0.188208 0.092672 -0.196358 0.429036 0.366723 -0.378533 -0.232802 -0.205076 0.126212 0.081490 0.482141 -0.159031 0.069310 0.110520 0.210588 -0.046049 -0.132688 0.189158 0.044523 0.107880 -0.439984 -0.372269 0.095494 0.325055 -0.037021 -0.089340 0.102718 0.136867 -0.195899 0.441739 0.039337 0.228567 -0.197979 -0.582303 0.074147 0.285813 -0.006939 0.336267 -0.399786 -0.095878 -0.022250 -0.037620 0.357119 0.157901 0.161499 0.310477 -0.214016 -0.283205 -0.088959 -0.216379 -0.027100 -0.192691 0.309243 -0.258321 -0.092240 -0.209004 0.108576 -0.182565 0.075961 -0.061512 0.038737 0.056725 0.167052 -0.004911 0.267165 0.094308 -0.181843 -0.054502 0.080961 -0.015753 0.272172 -0.187863 -0.168275 -0.141144 0.051968 -0.115880 0.151089 -0.114803 0.192302 -0.012534 -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.297898 -0.414955 -0.593168 1.385215 0.043169 -0.321736 0.154737 -0.144496 0.067442 -1.647834 -0.311549 0.349150 -0.005665 0.008529 -0.089953 0.761486 0.331440 0.171546 -0.963876 0.326783 0.520287 -0.014569 -0.304045 0.238337 0.263146 -0.500473 0.119589 0.417633 0.027793 0.945900 -0.520148 0.819947 1.018216 -0.133240 0.217969 0.792822 0.030606 0.349723 0.306792 0.118392 1.014954 -0.016308 -0.263475 0.079341 0.006689 1.246597 0.073395 1.457979 -0.166457 -0.585685 0.537609 -0.145744 -0.242111 -0.055654 -0.987991 0.526280 0.581244 0.819442 -0.734856 0.386305 -0.538572 0.411706 0.604413 0.227132 1.520346 0.941310 0.760551 1.151552 1.446930 -0.519136 0.354205 0.210833 0.481219 -0.074613 0.503869 -0.427353 -0.373698 -0.647174 -0.223567 -0.838343 0.012232 0.086571 1.371280 -1.022812 -0.313788 -0.125485 0.270313 1.466368 -0.863775 0.450950 -1.288135 0.090640 0.148942 1.505940 0.159874 0.218569 -0.464175 0.727375 -0.225571 0.234162 -0.239004 -0.766306 -0.703397 -1.440030 -1.024800 -0.672897 0.042083 0.287748 -2.110903 -0.025481 0.258957 0.701708 -2.035096 -0.038495 0.195016 0.286158 0.986507 0.781145 -0.583403 0.056614 -0.114821 0.144882 0.022226 -0.070011 0.337802 -1.126280 -0.026029 0.209110 0.329709 0.310015 -1.657471 0.180744 0.138279 -0.428653 0.235428 0.912918 0.622524 -0.391953 0.542625 -0.859606 0.771305 -1.657937 -0.680972 -0.413408 -1.303169 -0.448062 1.268596 1.117569 0.825367 -0.338982 -0.637495 -0.590066 -1.973290 -1.788890 -0.143333 -0.295016 0.182942 0.524423 -0.320693 0.110065 -0.680582 0.160635 0.783983 -0.788312 -0.562540 -0.563638 0.879289 0.219911 -0.024088 -0.686910 -0.516205 0.499144 -0.354470 0.835017 -0.324618 -1.147563 -1.935657 -0.535962 0.721189 -0.421159 0.251632 -0.664001 -0.176304 -1.450901 0.373133 -0.717907 -0.253871 -0.225910 -0.254350 -1.302350 0.655096 -0.236597 -0.278934 -0.014140 -0.854007 0.345393 0.389569 0.132466 0.380524 0.197519 -0.221112 -0.771754 -0.894641 0.563872 -0.316393 0.787746 0.727749 -0.107766 -0.217504 -0.727763 -1.140560 1.124035 -0.912741 0.620837 0.743512 -0.110258 0.897311 -0.946044 -0.141009 -0.669873 0.532939 -0.010764 -1.454357 1.060990 0.833114 -1.057948 -0.036131 -0.574477 0.817621 0.352955 0.759612 -0.660527 -0.382272 0.354606 0.240496 -0.131693 -0.146605 0.282085 -0.430899 0.458925 -0.993438 -0.223587 0.796098 0.593685 -0.332846 -0.021716 -0.047069 -0.646391 0.237951 0.883292 0.603987 0.133967 -0.737817 -1.969824 -0.022985 -0.502027 -0.033591 0.186169 -0.862167 -0.026320 0.306410 -0.571376 1.218279 -0.114254 -0.489570 0.981834 -1.659298 -1.111890 -0.302078 -0.043953 0.003062 -0.194393 0.644229 -0.427348 -0.043800 0.158049 0.698051 -0.412822 -1.054602 -0.248816 0.456639 1.156785 -0.470632 -0.472562 1.048835 -0.060834 -0.154642 -0.458671 0.290724 -0.228819 0.090771 -1.286138 -0.385865 0.002299 0.591337 -1.104408 0.984475 -0.213757 0.327213 0.320228 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = 4.278830 -0.255166 -2.282709 4.256797 0.370099 -2.806934 1.082824 2.494734 0.451949 -5.691254 -2.159041 3.534091 0.862877 -1.860161 0.203655 2.105327 1.331789 2.568628 -6.356192 2.168902 0.832378 0.633200 -3.461284 -2.268670 -0.097967 -0.861386 -0.562467 1.680335 0.264786 4.317361 -2.427775 1.001453 3.332756 -0.659168 2.569468 3.527232 1.223979 -0.027257 0.485700 -0.231725 6.435553 3.017558 -0.869919 2.327564 1.787298 4.943168 -0.118920 5.708559 -2.241508 -1.467276 1.668882 -0.653489 -2.442915 -0.082540 -4.701755 2.000372 4.661840 2.646752 -3.452868 3.409750 -1.220027 1.307355 2.721242 0.742381 5.584195 3.317150 1.950065 3.932716 6.749238 -2.326190 1.198300 0.004638 3.515931 -0.850035 3.306018 -2.563732 -2.422557 -4.281838 0.498314 -6.156157 1.124586 -0.278445 7.386636 -5.063399 1.858123 2.707694 2.454232 4.452886 -4.178087 -0.761334 -4.207943 -0.097785 -1.863857 8.840659 -0.157758 2.064644 -1.206233 2.854523 0.212952 1.371838 -0.315023 -4.320524 -2.302877 -8.137644 -3.917306 -2.041416 -2.319423 -0.323695 -5.475800 -1.435976 2.827672 3.998622 -7.725224 -0.155640 1.393842 -0.068026 3.240354 1.395216 -2.960083 1.252864 -2.153435 0.850226 0.516035 -2.317837 -0.108483 -1.969285 -0.350645 1.645824 1.703268 0.973570 -6.878409 0.647988 1.214709 -1.268736 -0.678641 1.554244 0.486111 -4.418093 2.133341 -4.281755 3.495909 -6.067665 -1.869282 -2.193302 -5.323016 -1.174320 3.914453 2.036232 3.032114 0.190514 -1.520296 -1.228712 -6.548515 -8.365087 2.095752 -0.962777 0.895622 -0.171718 -0.559392 -1.172557 -2.681758 -1.070837 2.933153 -3.679636 -2.087233 -1.828969 7.608102 -0.335197 -1.641185 -2.524744 -0.283081 3.589414 1.986281 2.388158 -2.644046 -5.175212 -5.907351 -2.142385 4.012917 -1.197770 0.648844 -1.180529 -0.778460 -4.601809 1.130498 -3.438946 2.065300 -1.792518 -0.787425 -5.320688 1.273446 -0.900657 -0.404587 -0.426405 -3.679953 1.905659 1.631571 1.166167 -1.025070 0.710360 1.528714 -5.302877 -4.781927 0.836064 0.108608 5.117503 3.175908 1.465137 -1.354654 -0.942112 -4.543760 3.768645 -5.219184 1.955623 1.252590 -2.098655 4.566835 -3.545802 -2.347293 -4.299490 2.649669 0.060941 -3.028961 7.255741 3.934668 -4.609517 -0.624394 -2.814323 2.721468 1.829718 5.580149 -3.418081 -2.509754 2.360410 -0.600276 -0.906043 -2.002434 1.967099 -1.177078 2.593473 -4.479335 -1.260572 3.319583 3.365503 -0.692027 0.958776 -0.210648 -1.949844 -0.813514 5.358273 1.920207 0.955772 -4.141113 -7.563762 1.366124 -2.321475 0.494249 -0.164269 -2.217072 -1.773631 0.418951 -0.000763 4.615061 2.087534 -1.172990 3.819922 -6.893497 -5.377378 -1.948490 0.957323 1.449187 -2.209452 1.969330 -2.761238 0.501397 -0.479244 3.122031 -0.330292 -2.827576 -2.299806 1.181972 3.346127 0.210155 -3.475569 5.347489 0.213135 -1.362729 -0.178863 -0.845298 0.335698 0.875307 -3.110847 -1.341505 -1.345854 2.595684 -3.830176 4.890300 -0.157418 1.802953 2.203756 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = 0.826800 -0.384442 -0.395194 1.053906 0.192558 -0.566155 0.228769 0.355489 0.125531 -1.459467 -0.374982 0.628264 0.182858 -0.373382 0.078944 0.488130 0.394689 0.513396 -1.270419 0.492776 0.191031 0.087787 -0.792979 -0.383230 -0.063873 -0.519222 0.220808 0.468559 0.067668 1.024438 -0.621746 0.196688 0.821019 -0.200660 0.755193 0.968688 0.584852 0.014398 -0.134431 0.190092 1.713362 0.677117 -0.308615 0.425641 0.539169 1.216370 0.194018 1.148536 -0.416303 -0.427261 0.281500 0.010428 -0.439881 -0.168724 -1.264581 0.487424 1.087421 0.678222 -1.016019 0.777271 -0.397148 0.258235 0.565991 0.474868 1.326362 0.447333 0.600405 0.915661 1.542757 -0.649795 0.110881 0.220714 0.840190 -0.099009 1.075971 -0.337425 -0.744300 -1.290496 0.081947 -1.068610 0.177655 0.078073 1.351211 -1.140779 0.308481 0.846170 0.422909 1.013463 -0.911116 -0.277751 -1.120637 -0.016277 -0.261797 2.117283 0.128209 0.384345 -0.196948 0.818438 0.145199 0.476705 0.192306 -1.200390 -0.469995 -2.077662 -1.036010 -0.710146 -0.413369 -0.117419 -1.255108 -0.367382 0.897505 1.072768 -1.694409 0.269622 0.383420 0.090104 1.042362 -0.443031 -0.485091 0.377297 -0.408624 0.089837 0.219699 -0.532287 -0.041072 -0.339198 0.378295 0.373209 0.398497 0.085628 -1.310280 0.133049 0.302196 -0.079729 -0.273141 0.265543 0.150041 -1.291836 0.573392 -0.974972 0.928783 -1.314810 -0.148247 -0.569163 -1.183531 -0.280062 1.110124 0.301657 0.762390 -0.050112 -0.677132 -0.180950 -1.521092 -2.332018 0.467263 -0.087018 0.102128 0.071612 -0.200059 -0.148429 -0.609614 -0.187560 0.729872 -0.859117 -0.361226 -0.205694 1.208127 -0.101611 -0.418447 -0.577754 -0.056307 0.895342 0.679398 0.683648 -0.687466 -1.308088 -1.350399 -0.608079 0.920955 -0.320751 0.185221 -0.179723 -0.394555 -1.257272 0.490750 -0.826588 0.601447 -0.612077 -0.250206 -1.251458 0.208233 -0.323053 -0.029034 -0.045881 -0.960760 0.407366 -0.025243 -0.155726 -0.115878 0.036203 0.383726 -1.310801 -1.131783 0.269357 -0.036139 1.318272 0.499201 0.267717 -0.175437 -0.274308 -1.050583 0.802197 -1.244583 0.390430 0.432651 -0.817847 1.043810 -0.750839 -0.665977 -0.913105 0.689658 0.111428 -0.074764 1.934729 1.149683 -1.085353 -0.221909 -0.327036 0.547401 0.449121 1.345249 -0.863591 -0.488875 0.538029 -0.133338 -0.156055 -0.317604 0.520459 -0.268427 0.668144 -1.170236 -0.463118 0.654727 0.920975 -0.130789 0.196714 -0.008129 -0.488527 -0.486534 1.342742 0.474119 0.508137 -1.026946 -1.523162 0.466582 -0.975870 0.036857 0.017520 -0.513129 -0.378286 0.092425 0.134113 1.110978 0.628796 -0.350221 0.989085 -1.680876 -1.322657 -0.464568 -0.123791 0.268789 -0.596207 0.633537 -0.732006 0.144082 -0.341729 0.678447 -0.246713 -0.403920 -0.225746 0.287587 0.550654 0.232346 -0.766000 1.251808 0.037357 -0.426132 -0.073423 -0.078285 0.056457 0.414661 -0.652800 -0.454396 -0.409115 0.635560 -0.781379 1.014023 -0.227120 0.467105 0.539097 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.349482 -0.573827 -0.041840 0.529228 0.246200 -0.107886 0.060433 -0.059676 0.130034 -0.657361 -0.144381 0.231080 -0.021789 -0.126404 0.126066 0.189778 0.323052 -0.034413 -0.417175 0.203601 -0.068638 -0.150549 -0.318715 0.072007 -0.011653 -0.391891 0.405603 0.354661 -0.031067 0.340766 -0.273180 0.178816 0.313370 -0.030620 0.399707 0.378450 0.258957 -0.073599 -0.217222 0.149167 0.858948 0.062910 -0.004762 0.216728 0.312611 0.519279 0.134575 0.859219 0.562087 -0.113073 0.505271 -0.098501 -0.105164 -0.064025 -0.783872 0.170488 0.310503 0.002405 -0.491942 0.240001 -0.224131 0.151600 0.159400 0.267642 0.713857 0.091909 0.449297 0.324397 0.606503 -0.308800 -0.076270 0.312401 0.533795 0.261623 0.406752 -0.269875 -0.292145 -0.623322 0.012791 0.022432 0.107598 -0.160043 0.296696 -0.307211 -0.173574 0.281181 -0.081685 0.425936 -0.316259 0.017754 -0.596663 0.079492 0.206687 0.601409 0.010400 0.137269 -0.016684 0.195703 -0.056670 0.330306 0.171935 -0.567076 -0.209165 -0.958657 -0.605425 -0.306259 -0.039639 -0.226555 -0.629137 0.082377 0.187926 0.239090 -0.503928 0.029196 0.114670 0.039554 0.583473 -0.134556 -0.071864 -0.146198 0.136178 0.294227 0.138051 -0.102455 0.082328 -0.531156 0.403385 0.196418 0.247982 -0.101278 -0.168194 0.002434 0.129068 0.292689 -0.119096 -0.020943 0.068425 -0.501502 0.260315 -0.192660 0.417835 -0.556397 -0.210466 -0.475882 -0.252774 -0.098765 1.033967 0.149892 0.691981 0.199128 -0.420584 -0.019580 -0.621005 -1.082240 -0.020900 -0.186335 -0.033204 0.112664 -0.064633 0.072754 -0.164582 -0.116799 0.238663 -0.386108 -0.206458 -0.158802 -0.408032 -0.032794 -0.146597 -0.299136 0.052946 0.405837 0.153683 0.375841 -0.185223 -1.019806 -0.441337 -0.351866 0.308230 -0.190083 0.137289 0.009805 -0.176147 -0.629285 0.219403 -0.330041 0.073156 -0.277509 -0.372571 -0.477774 0.082751 -0.194976 0.214947 0.007531 -0.459903 0.185212 -0.189961 0.183206 0.118439 0.193458 -0.079224 -0.668621 -0.613699 -0.023600 0.001105 0.747358 0.014456 0.032382 0.024196 -0.251171 -0.454699 0.299445 -0.816524 0.114660 0.406391 -0.535831 0.289531 -0.293527 -0.228136 -0.258620 0.294523 0.061397 -0.262301 0.755630 0.588844 -0.589317 -0.269200 -0.248224 0.247325 0.116649 0.682096 -0.275720 0.022669 0.165125 0.280437 -0.074341 -0.117868 0.266616 0.013977 0.162131 -0.640005 -0.461118 0.253603 0.458519 -0.055235 -0.173357 0.020737 0.010003 -0.244540 0.647159 0.097493 0.322590 -0.364856 -1.008599 0.111503 0.107944 -0.120061 0.393103 -0.542015 -0.160473 -0.039506 -0.125580 0.541561 0.114505 0.128296 0.458908 -0.498600 -0.506691 -0.251988 -0.271708 -0.045896 -0.233893 0.438675 -0.385049 -0.081177 -0.293851 0.248041 -0.300199 0.009121 -0.039047 0.114448 0.106383 0.172745 -0.126234 0.443905 0.126895 -0.194630 -0.148893 0.093715 -0.089289 0.399472 -0.399058 -0.250962 -0.225929 0.169756 -0.240727 0.267596 -0.104292 0.366829 0.042202 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = 19.019906 -2.683691 -12.655270 21.516234 -0.187219 -12.138615 4.416154 10.074127 0.740978 -26.314372 -9.889466 15.140984 4.573126 -7.667485 1.596478 10.806991 5.288236 8.854065 -32.773309 9.892813 4.155705 0.080726 -16.487271 -8.400890 -0.782750 -5.622055 -0.646057 9.699799 -0.375627 20.007503 -10.419757 7.697454 15.597382 -2.836678 12.884219 15.529564 1.474640 -0.206671 1.448821 0.861483 28.700468 14.320709 -5.944587 7.138394 6.523070 23.580061 0.437883 25.171302 -10.379639 -6.611558 9.203640 -0.191943 -10.810780 -0.305530 -21.995774 6.216188 20.362239 11.138880 -14.977008 14.946722 -9.806895 6.146366 12.813842 6.250700 29.635665 13.301345 13.462668 18.845896 29.002867 -10.767575 6.887216 -0.453358 14.072222 -5.817523 13.987057 -10.644803 -12.687349 -20.746014 3.345823 -29.479629 2.965966 0.247298 31.134915 -22.185923 5.245767 9.181882 11.627947 22.608638 -21.576274 -1.235402 -20.116357 -1.558288 -7.793765 40.916781 -0.109573 9.285384 -4.452486 14.067330 0.736086 5.816676 -2.089031 -21.109788 -9.378669 -37.131457 -18.326183 -9.545526 -9.561295 -0.571972 -26.558422 -5.307965 12.988481 17.432000 -35.317679 -0.248660 5.761865 -0.059196 17.508175 6.654714 -13.682167 5.868728 -8.956322 6.345724 6.069602 -9.548144 2.303003 -10.644241 1.486094 8.692713 8.031835 6.043330 -33.043169 3.659575 8.561420 -7.281906 -2.182116 9.258781 3.753500 -17.321242 9.907586 -20.198742 17.901254 -29.431858 -7.022810 -11.563761 -23.440244 -5.201749 16.124582 14.959844 12.183855 0.702062 -7.260888 -1.956052 -32.493820 -40.703259 7.024638 -2.954209 2.226243 -2.085269 -3.263218 -3.478642 -12.629499 -1.760296 14.988058 -17.177607 -11.147886 -8.599869 32.244198 2.626712 -8.378659 -8.695544 -2.379095 13.256253 8.821901 14.983235 -10.864511 -27.071400 -29.806490 -9.464891 18.800875 -5.772326 1.257141 -6.860036 -4.660289 -23.510675 5.803940 -15.954872 8.382670 -7.612914 -2.944254 -24.552358 5.791861 -3.311641 -1.727337 -3.154775 -17.220857 7.676633 9.294424 4.049897 -3.162874 4.059233 6.602654 -21.197492 -20.710617 6.166905 -1.008900 24.894582 14.811985 5.100587 -5.597518 -4.429064 -21.732960 18.162265 -21.591130 10.395009 5.776261 -11.994288 20.200882 -17.048735 -11.644810 -16.427647 12.120000 -0.676771 -14.063244 34.279433 20.319353 -21.366361 -2.209713 -12.243179 13.468245 7.536515 24.283564 -15.690080 -10.696386 8.360480 0.066082 -3.896694 -6.084094 8.668310 -6.167816 8.106023 -20.250403 -5.811102 16.940329 14.551391 -2.191277 3.307775 -2.671205 -10.146033 -3.357263 23.289705 8.348604 3.777742 -18.034001 -36.577623 5.744462 -12.254746 -0.152735 -0.803370 -10.343569 -8.225741 0.406573 -2.496989 21.675392 9.181458 -9.647662 17.705392 -31.567326 -24.819286 -14.330884 4.223805 3.848673 -8.803379 9.343732 -11.984326 2.835528 -1.548753 14.367392 -2.555398 -13.903015 -9.271928 6.114970 14.739623 0.173282 -16.646495 24.426837 1.608867 -5.132303 -4.876080 -2.550899 -2.887478 6.295464 -15.752951 -7.300543 -5.383334 13.351731 -17.818774 18.987076 0.365202 9.566929 9.912197 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = -0.038913 -0.197489 0.158151 0.156253 0.162696 0.041382 0.019052 -0.111042 -0.020344 -0.237336 -0.028131 -0.126875 -0.078524 0.020875 0.090407 -0.002430 0.150024 0.022119 -0.042039 0.008284 0.000850 -0.032928 0.070494 0.045390 0.021256 -0.154382 0.147301 0.156132 0.019995 0.103943 -0.138382 0.054666 0.095311 0.090257 0.138363 0.105752 0.210010 -0.051973 -0.134160 0.057061 0.309315 -0.126614 0.028760 0.042223 0.111774 0.166163 0.123205 0.057958 0.318381 -0.035250 0.095757 -0.173350 0.046539 -0.041670 -0.285745 0.067588 0.000462 0.076034 -0.174668 0.050450 -0.048645 0.056013 -0.002797 -0.030832 0.181907 -0.087117 0.097287 0.066698 0.139007 -0.149051 -0.092753 0.128226 0.169188 0.136693 0.021145 -0.001812 0.027610 -0.487516 -0.067248 0.047034 0.028531 -0.016613 -0.057933 -0.034726 -0.069323 0.184136 -0.192378 0.085047 -0.014747 -0.003330 -0.255264 0.048254 0.198007 -0.027486 0.081470 -0.091852 0.050965 0.031053 0.011477 0.161077 0.105512 -0.140635 -0.100674 -0.364484 -0.210999 -0.080321 0.060204 -0.133963 -0.143063 0.050273 0.179097 0.132229 -0.093586 -0.008910 0.039977 0.086765 -0.106923 -0.326033 0.052916 -0.089626 0.084008 0.119821 0.077084 -0.064662 0.038945 -0.179292 0.132362 0.002312 0.143366 -0.096792 0.242764 -0.111032 -0.001351 0.170365 -0.063630 -0.097766 -0.008454 -0.068681 0.096040 -0.021754 0.158108 -0.043126 0.065941 -0.133765 0.030401 -0.036733 0.482686 -0.018077 0.166037 0.132824 -0.219494 0.022432 -0.068300 -0.318252 0.030136 -0.010675 0.035703 0.120759 -0.045140 0.085718 -0.023559 -0.083056 0.047786 -0.115002 -0.073938 -0.010857 -0.498889 -0.040797 -0.045802 -0.195366 0.114792 0.246810 -0.044662 0.055411 -0.101892 -0.119708 -0.018775 -0.187720 0.075622 -0.094812 0.057161 0.048387 -0.027990 -0.183903 0.168160 -0.117378 -0.012157 -0.076923 -0.220693 -0.149464 0.012400 -0.124076 0.057826 0.101027 -0.134377 0.073488 -0.209771 -0.017316 0.062209 0.031740 -0.035975 -0.168304 -0.201355 -0.108713 0.003039 0.108926 -0.099298 0.023492 -0.109077 -0.138905 -0.026664 0.125374 -0.173654 0.011786 0.132844 -0.204222 0.034846 -0.043881 -0.016741 0.027251 0.101578 0.103431 -0.133690 0.140824 0.199745 -0.192925 -0.158287 -0.118006 0.045678 0.030978 0.267921 -0.069952 0.105532 0.052612 0.136045 -0.008654 -0.090415 0.093606 0.068488 0.020510 -0.249008 -0.240063 0.012535 0.172708 -0.004302 -0.028723 0.127015 0.169554 -0.134179 0.239953 -0.000968 0.151429 -0.053572 -0.181625 0.048751 0.271189 0.058053 0.245857 -0.206694 -0.013367 -0.020355 -0.030600 0.171700 0.117563 0.077904 0.179953 -0.008582 -0.106366 -0.016220 -0.157711 -0.016328 -0.143543 0.205577 -0.135992 -0.071253 -0.140725 0.021537 -0.091622 0.121948 -0.040386 0.002978 -0.000737 0.132117 0.063404 0.120986 0.035677 -0.144773 -0.007174 0.063058 0.008085 0.175370 -0.078177 -0.115420 -0.058234 0.006676 -0.036321 0.023663 -0.118854 0.064018 -0.014047 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.501130 -0.308635 -0.044081 0.770707 0.402234 -0.194755 0.153276 0.143618 0.187595 -1.287078 -0.462141 0.285920 -0.018157 -0.124228 0.128710 0.332620 0.457084 0.446934 -0.685046 0.247057 0.242456 0.151315 -0.145100 -0.122317 0.108280 -0.350643 -0.012754 0.210780 0.200548 0.758653 -0.553394 0.266182 0.691413 -0.021423 0.339478 0.673983 0.478907 -0.068803 0.007821 -0.120217 1.277342 0.053216 0.075964 0.515251 0.296350 0.890190 -0.065390 1.221630 0.316740 -0.360893 0.491307 -0.619798 -0.258259 0.035885 -0.994025 0.629101 0.632470 0.498272 -0.705271 0.406426 -0.039988 0.297057 0.335179 -0.218785 0.824283 0.609200 0.227834 0.689030 1.202486 -0.541930 0.001083 0.283155 0.645169 0.257345 0.528101 -0.505358 -0.077850 -0.965417 -0.138805 -0.533090 0.280994 -0.253295 1.205720 -0.828588 0.150564 0.630139 0.051654 0.801481 -0.364832 0.021784 -0.971926 0.175557 0.119224 0.934078 0.042176 0.119688 -0.298731 0.309456 -0.130912 0.386317 0.109204 -0.653728 -0.734079 -1.489187 -0.892899 -0.465588 -0.051409 -0.071345 -1.194386 -0.023631 0.453800 0.646413 -1.303944 -0.057843 0.237657 0.247953 0.280933 0.203998 -0.448807 -0.169555 -0.066725 0.166726 -0.119152 -0.335271 -0.025979 -0.764067 -0.066156 0.126672 0.389951 -0.134908 -0.570423 -0.141146 -0.084028 0.116382 -0.087391 0.144055 0.249013 -0.744308 0.461841 -0.453968 0.532215 -0.932600 -0.446613 -0.458178 -0.781711 -0.323923 1.568318 0.169383 0.886361 0.206350 -0.564351 -0.492314 -1.009849 -1.254414 0.176233 -0.344142 0.335862 0.416783 -0.132190 0.027363 -0.378618 -0.245735 0.232174 -0.643094 -0.333288 -0.274855 0.405346 -0.342125 -0.125550 -0.861811 0.013657 0.863356 -0.153100 0.302331 -0.422743 -0.625435 -0.900732 -0.632194 0.629921 -0.371214 0.396739 -0.193503 0.012754 -0.786818 0.252936 -0.612362 0.042480 -0.279531 -0.556301 -0.993337 0.318129 -0.328054 -0.099872 0.240371 -0.737183 0.439986 -0.007868 0.411135 0.047864 0.125657 -0.086627 -1.171483 -0.997108 -0.152898 -0.085552 0.761091 0.390871 0.120101 -0.343595 -0.526224 -0.655303 0.699257 -1.126538 0.272648 0.396949 -0.289910 0.605679 -0.624776 -0.186337 -0.833605 0.452736 0.176337 -0.995095 0.968142 0.553865 -0.850058 -0.251284 -0.702133 0.475928 0.288537 1.049413 -0.446579 -0.184431 0.463545 0.036379 -0.133992 -0.555699 0.406912 -0.134209 0.525691 -0.958343 -0.482045 0.433669 0.713363 -0.221746 0.104061 0.360106 0.084078 -0.017327 1.028703 0.403221 0.207686 -0.658907 -1.450233 0.212918 0.348306 0.203406 0.361369 -0.743911 -0.178673 0.174349 -0.022945 0.912955 0.297104 0.385040 0.812747 -0.970681 -0.852354 0.075155 -0.102368 0.266409 -0.436014 0.476154 -0.570201 -0.108857 -0.199369 0.413167 -0.168956 -0.388149 -0.481693 0.228861 0.722704 0.145263 -0.157082 0.859730 0.159582 -0.424944 0.120258 -0.007308 0.214909 0.103825 -0.571841 -0.230445 -0.119189 0.190964 -0.636389 0.815254 -0.268656 0.179651 0.156933 -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.297898 -0.414955 -0.593168 1.385215 0.043169 -0.321736 0.154737 -0.144496 0.067442 -1.647834 -0.311549 0.349150 -0.005665 0.008529 -0.089953 0.761486 0.331440 0.171546 -0.963876 0.326783 0.520287 -0.014569 -0.304045 0.238337 0.263146 -0.500473 0.119589 0.417633 0.027793 0.945900 -0.520148 0.819947 1.018216 -0.133240 0.217969 0.792822 0.030606 0.349723 0.306792 0.118392 1.014954 -0.016308 -0.263475 0.079341 0.006689 1.246597 0.073395 1.457979 -0.166457 -0.585685 0.537609 -0.145744 -0.242111 -0.055654 -0.987991 0.526280 0.581244 0.819442 -0.734856 0.386305 -0.538572 0.411706 0.604413 0.227132 1.520346 0.941310 0.760551 1.151552 1.446930 -0.519136 0.354205 0.210833 0.481219 -0.074613 0.503869 -0.427353 -0.373698 -0.647174 -0.223567 -0.838343 0.012232 0.086571 1.371280 -1.022812 -0.313788 -0.125485 0.270313 1.466368 -0.863775 0.450950 -1.288135 0.090640 0.148942 1.505940 0.159874 0.218569 -0.464175 0.727375 -0.225571 0.234162 -0.239004 -0.766306 -0.703397 -1.440030 -1.024800 -0.672897 0.042083 0.287748 -2.110903 -0.025481 0.258957 0.701708 -2.035096 -0.038495 0.195016 0.286158 0.986507 0.781145 -0.583403 0.056614 -0.114821 0.144882 0.022226 -0.070011 0.337802 -1.126280 -0.026029 0.209110 0.329709 0.310015 -1.657471 0.180744 0.138279 -0.428653 0.235428 0.912918 0.622524 -0.391953 0.542625 -0.859606 0.771305 -1.657937 -0.680972 -0.413408 -1.303169 -0.448062 1.268596 1.117569 0.825367 -0.338982 -0.637495 -0.590066 -1.973290 -1.788890 -0.143333 -0.295016 0.182942 0.524423 -0.320693 0.110065 -0.680582 0.160635 0.783983 -0.788312 -0.562540 -0.563638 0.879289 0.219911 -0.024088 -0.686910 -0.516205 0.499144 -0.354470 0.835017 -0.324618 -1.147563 -1.935657 -0.535962 0.721189 -0.421159 0.251632 -0.664001 -0.176304 -1.450901 0.373133 -0.717907 -0.253871 -0.225910 -0.254350 -1.302350 0.655096 -0.236597 -0.278934 -0.014140 -0.854007 0.345393 0.389569 0.132466 0.380524 0.197519 -0.221112 -0.771754 -0.894641 0.563872 -0.316393 0.787746 0.727749 -0.107766 -0.217504 -0.727763 -1.140560 1.124035 -0.912741 0.620837 0.743512 -0.110258 0.897311 -0.946044 -0.141009 -0.669873 0.532939 -0.010764 -1.454357 1.060990 0.833114 -1.057948 -0.036131 -0.574477 0.817621 0.352955 0.759612 -0.660527 -0.382272 0.354606 0.240496 -0.131693 -0.146605 0.282085 -0.430899 0.458925 -0.993438 -0.223587 0.796098 0.593685 -0.332846 -0.021716 -0.047069 -0.646391 0.237951 0.883292 0.603987 0.133967 -0.737817 -1.969824 -0.022985 -0.502027 -0.033591 0.186169 -0.862167 -0.026320 0.306410 -0.571376 1.218279 -0.114254 -0.489570 0.981834 -1.659298 -1.111890 -0.302078 -0.043953 0.003062 -0.194393 0.644229 -0.427348 -0.043800 0.158049 0.698051 -0.412822 -1.054602 -0.248816 0.456639 1.156785 -0.470632 -0.472562 1.048835 -0.060834 -0.154642 -0.458671 0.290724 -0.228819 0.090771 -1.286138 -0.385865 0.002299 0.591337 -1.104408 0.984475 -0.213757 0.327213 0.320228 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = 1.704111 -1.081175 -0.547606 1.614792 0.333542 -1.207301 0.439905 0.868642 0.305334 -2.368271 -0.887040 0.632484 0.222424 -1.041968 0.436597 0.709313 0.713786 0.565234 -2.788735 1.141615 0.360336 0.021041 -1.471084 -0.485942 -0.077166 -0.972519 -0.215663 1.041166 -0.147779 1.620405 -1.004629 0.372804 1.344624 -0.316437 1.353962 1.760131 0.402616 -0.157387 0.529600 0.684382 3.000754 1.142783 -0.414657 0.576656 1.187731 2.040088 -0.133035 2.785285 -0.164869 -0.617682 1.477175 -0.700035 -0.820883 -0.020110 -2.277506 0.653763 2.149932 0.876966 -1.764946 1.365915 -1.048482 0.458514 0.981238 0.680478 2.640999 1.108072 1.069785 1.373970 2.759078 -0.815800 0.237397 0.425625 1.605144 -0.176490 1.203447 -1.061789 -0.949849 -2.794751 0.336471 -1.843602 0.357509 -0.174980 2.204367 -1.775083 0.499622 1.389829 0.656556 1.796643 -1.637112 -0.428926 -1.883820 0.076398 -0.213887 3.339939 -0.286725 0.774448 -0.171222 1.173259 0.022830 0.874271 -0.012379 -2.004235 -1.497025 -3.867280 -1.960453 -0.997435 -0.791449 -0.508944 -2.545312 -0.405736 1.483590 0.920967 -2.760464 0.273202 0.617319 0.072889 1.404262 0.225494 -1.204719 0.022530 -0.604085 0.722786 0.412692 -0.699681 -0.029162 -1.786012 0.777113 0.947414 0.621268 -0.123797 -1.974855 0.387426 0.602883 -0.046891 -0.528071 0.435259 0.141584 -1.948747 0.893306 -1.601371 1.622431 -2.584974 -0.522561 -1.531581 -1.724078 -0.310677 2.498392 0.936927 1.320067 0.383643 -1.164707 -0.127551 -2.689301 -3.736581 0.381884 -0.750429 0.510129 -0.326087 -0.245164 -0.432522 -0.624355 -0.409806 0.638844 -1.514778 -0.586522 -0.803755 1.693095 -0.008718 -0.714764 -0.960294 -0.078117 1.815712 0.584707 1.008814 -1.049893 -2.307184 -2.132132 -1.132507 1.497112 -0.419203 0.336418 -0.387298 -0.321579 -2.333199 0.872843 -1.296752 0.606837 -1.121601 -0.574156 -2.015444 0.267877 -0.502903 0.390204 -0.397045 -1.521987 0.626642 0.226165 0.734544 0.004728 0.414831 0.291011 -2.436010 -2.233511 0.113084 0.215225 2.582216 0.960479 0.448010 -0.047276 -0.411089 -1.873416 1.485023 -2.310980 0.530907 0.911691 -1.744566 1.934729 -1.203825 -1.156884 -1.652605 1.087247 -0.031033 -0.822515 3.228842 1.837180 -2.098147 -0.556867 -1.280652 0.994015 0.812906 2.420488 -0.965262 -0.425063 0.809429 0.089372 -0.371331 -0.693512 0.954199 -0.439349 1.268071 -2.063316 -0.972333 1.346534 1.668481 -0.234190 0.156611 -0.386316 -0.293728 -0.597866 2.276457 0.467461 0.522716 -1.579356 -3.425982 0.616124 -0.288618 0.064705 0.321265 -1.232628 -0.859349 -0.212870 0.329589 2.073016 1.571003 -0.043707 1.584656 -2.440700 -2.281140 -1.052808 0.215566 0.250818 -1.016273 0.894770 -1.255182 0.127219 -0.460434 1.341443 -0.045007 -0.921197 -1.311696 0.420346 0.910057 0.442541 -1.518281 2.034592 0.130372 -0.613538 -0.401489 -0.054425 0.078755 0.949644 -0.703518 -0.854314 -0.931831 0.992480 -1.265548 1.879053 -0.154084 1.184917 0.839158 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 1.427560 -0.550790 -0.296194 1.190180 0.223729 -1.164530 0.479531 1.046019 0.135241 -2.077143 -0.964672 0.188886 0.163617 -1.002743 0.472193 0.477958 0.585947 0.805932 -2.672009 0.987823 0.550070 0.265507 -1.109754 -0.601790 -0.037690 -0.683226 -0.920357 0.832159 -0.067583 1.517431 -0.925257 0.183256 1.216652 -0.204471 1.081511 1.630232 0.345404 -0.143303 0.906713 0.575297 2.598181 1.028109 -0.356701 0.490221 1.076698 1.790782 -0.356474 2.116547 -0.626640 -0.609835 1.173190 -1.139027 -0.764732 0.087789 -1.792589 0.620540 2.094937 1.148289 -1.524127 1.346373 -0.886549 0.397166 0.874752 0.153067 2.132921 1.181352 0.558222 1.157754 2.472605 -0.665867 0.266949 0.168517 1.260893 -0.390755 0.626171 -0.900940 -0.451851 -2.969678 0.280730 -2.191050 0.334914 -0.060711 2.231871 -1.660449 0.827104 1.496088 0.584944 1.488448 -1.379516 -0.556002 -1.590002 0.050331 -0.309802 2.808957 -0.290471 0.558037 -0.112461 1.037810 0.118511 0.719495 -0.228283 -1.568964 -1.746542 -3.554081 -1.639730 -0.740739 -0.778960 -0.429322 -2.168917 -0.557651 1.707874 0.807496 -2.574673 0.202397 0.605581 0.156063 0.346642 0.318269 -1.360279 0.038061 -0.818624 0.559031 0.336228 -0.745893 -0.126468 -1.622322 0.304034 0.780192 0.536564 -0.148678 -1.710074 0.253982 0.432023 -0.303781 -0.546306 0.378725 0.013502 -1.511977 0.785680 -1.582726 1.419791 -2.245640 -0.266431 -1.233161 -1.612536 -0.260872 2.080595 0.860204 0.725328 0.390596 -0.972277 -0.178120 -2.220204 -2.946374 0.548421 -0.656649 0.858439 -0.412857 -0.226189 -0.547520 -0.490595 -0.470703 0.304326 -1.297695 -0.419399 -0.748975 2.092083 -0.093278 -0.676507 -1.034154 0.043277 1.899267 0.218021 0.532307 -1.098309 -1.099765 -1.757961 -1.028685 1.376817 -0.311799 0.313218 -0.356929 -0.043894 -1.923168 0.848850 -1.151214 0.512011 -0.958802 -0.456609 -1.824120 0.231440 -0.448970 0.155761 -0.295066 -1.213180 0.543646 0.392030 0.746523 -0.090073 0.256247 0.396665 -2.074651 -1.967682 -0.108624 0.247925 1.946531 1.090093 0.513823 -0.279217 -0.268398 -1.512183 1.458063 -1.675073 0.426557 0.561974 -1.403020 1.861138 -0.998057 -0.965129 -1.597239 0.922026 0.047061 -1.039564 2.675184 1.403175 -1.795792 -0.475441 -1.419250 0.829848 0.824977 2.146126 -0.727446 -0.368186 0.803797 -0.237896 -0.321486 -0.863677 0.839491 -0.400461 1.296829 -1.752931 -0.714432 1.246767 1.457619 -0.210887 0.473144 -0.231163 0.020636 -0.359210 1.992020 0.373705 0.186871 -1.317509 -2.775627 0.634964 0.167497 0.391304 0.121020 -0.905151 -0.796788 -0.210749 0.552370 1.781168 1.845245 0.019296 1.380991 -1.981749 -2.001086 -0.766016 0.544916 0.413493 -1.061014 0.578433 -1.027521 0.183178 -0.218156 1.214970 0.428135 -0.981167 -1.763183 0.283177 0.974400 0.423989 -1.439427 1.856716 -0.031850 -0.644109 -0.161645 -0.167844 0.368236 0.677961 -0.278293 -0.733785 -0.832053 0.860659 -1.175093 1.878109 -0.156885 0.864705 0.933701 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = 1.109641 -0.554160 -0.405173 1.432747 0.524837 0.002834 0.189200 0.229308 0.323764 -2.138541 -0.969376 1.215518 0.120683 -0.031257 0.176533 0.586965 0.895081 0.452156 -1.594029 0.207543 0.135024 -0.189066 -0.625025 -0.045404 -0.011893 -0.788663 0.652784 0.547199 0.280220 1.307320 -0.736496 0.634564 1.098233 -0.079775 0.860227 1.072005 0.341039 -0.269943 -0.577820 -0.459964 2.245721 0.453030 0.049633 0.948245 0.380435 1.587354 0.033431 2.006559 0.817596 -0.535032 0.839271 -0.250975 -0.608641 -0.025751 -1.856064 0.625506 0.845726 0.243112 -1.096771 0.697401 -0.243805 0.485662 0.509603 0.020470 1.583520 0.553310 0.947451 1.164006 1.595363 -1.093046 0.029661 0.538843 0.938634 0.599478 1.037384 -0.736043 -0.612744 -0.880844 -0.002647 -0.991989 0.262637 -0.517376 2.024099 -1.241933 -0.149314 0.645473 0.123674 1.350112 -0.767237 0.075512 -1.615260 0.104075 0.063407 1.662831 0.233213 0.363344 -0.290435 0.481501 -0.227362 0.663884 0.254837 -1.463181 -0.656438 -2.492631 -1.317621 -0.964349 0.070389 0.011535 -1.568824 0.108666 0.401043 1.345053 -1.889456 -0.085044 0.339140 0.214172 1.023198 0.356823 -0.648032 -0.231073 0.093993 0.502909 0.325109 -0.560589 0.182228 -0.799061 0.240044 0.231406 0.701109 0.095421 -1.247394 -0.302665 0.329777 0.274690 -0.122150 0.293656 0.548119 -1.115383 0.820565 -0.666350 1.065023 -1.572025 -0.638495 -0.912703 -1.102543 -0.626748 2.194795 0.780371 1.712775 0.386479 -0.593628 -0.366094 -1.782455 -2.445562 0.237215 -0.244890 0.164157 0.497533 -0.206093 0.366289 -0.909849 -0.104800 0.607712 -1.001409 -0.691984 -0.261732 0.632560 -0.244551 -0.401283 -0.970181 0.051488 0.724658 0.139062 1.053232 -0.626633 -2.116538 -1.624720 -0.900930 1.178823 -0.752033 0.417689 -0.187862 -0.355370 -1.114240 0.122656 -1.091814 0.171976 -0.482662 -0.917711 -1.657362 0.487275 -0.447830 -0.140599 0.447508 -1.387938 0.625941 0.420731 0.588294 0.088273 0.350072 -0.060937 -1.672521 -1.345376 0.003402 -0.481745 1.686492 0.836958 -0.063856 -0.550979 -0.762653 -1.248238 1.003057 -1.877768 0.670745 0.477374 -0.829877 0.719797 -1.105939 -0.403920 -1.078256 0.785051 0.321573 -1.743918 1.832850 1.315993 -1.387585 -0.363489 -0.828537 0.742603 0.285761 1.608782 -0.963569 -0.472634 0.535642 0.146147 -0.108058 -0.521046 0.653585 -0.069336 0.238194 -1.648277 -0.828901 1.008095 0.989610 -0.180057 0.019027 0.619387 -0.018904 0.175750 1.730975 0.672330 0.437411 -1.211895 -2.883966 0.524997 0.207754 -0.164975 0.578745 -1.111373 -0.481423 0.141695 -0.560838 1.382144 -0.037175 0.167801 1.394056 -1.582268 -1.422030 -0.630496 -0.475301 0.313945 -0.506945 0.885003 -0.905275 -0.012545 -0.570133 0.566885 -0.565668 -0.506382 -0.256300 0.561222 0.993599 0.376537 -0.096235 1.449437 0.392671 -0.666708 -0.078798 -0.068985 -0.182557 0.465821 -1.510869 -0.438578 -0.121361 0.463985 -0.988934 0.696667 -0.140727 0.561057 0.212738 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = 0.795320 -0.922072 -0.129207 0.853294 0.406113 -0.352515 0.119599 0.134493 0.259262 -1.202202 -0.427176 0.349075 -0.003411 -0.370261 0.293008 0.352048 0.504848 0.003114 -1.036553 0.502569 0.004175 -0.165706 -0.579499 0.028840 0.021584 -0.619491 0.326246 0.537820 -0.058603 0.646757 -0.516616 0.298192 0.591971 -0.094846 0.673031 0.724988 0.245761 -0.176705 -0.031306 0.280991 1.539327 0.238892 0.010143 0.400168 0.598741 0.920192 -0.030179 1.768308 0.811272 -0.231606 1.076092 -0.418245 -0.291492 0.029899 -1.316360 0.380291 0.779519 0.050011 -0.858789 0.452765 -0.424636 0.266972 0.335109 0.305229 1.307601 0.424399 0.693312 0.579224 1.231453 -0.432741 -0.060897 0.485219 0.948038 0.345511 0.623761 -0.663938 -0.407827 -1.182270 0.081029 -0.224486 0.233666 -0.369641 0.806028 -0.663541 -0.119834 0.557232 0.021931 0.841997 -0.598440 0.007801 -0.998007 0.171095 0.240187 1.170411 -0.160835 0.326298 -0.098166 0.327861 -0.152753 0.550358 0.158192 -0.948061 -0.679745 -1.788366 -1.095015 -0.475615 -0.139632 -0.365222 -1.309151 0.130761 0.368349 0.275514 -1.045030 0.021831 0.234430 0.076209 0.903083 0.210819 -0.398355 -0.356296 0.117883 0.563042 0.133790 -0.186158 0.062741 -1.211688 0.574583 0.416701 0.392420 -0.239261 -0.469890 0.059477 0.188343 0.385560 -0.209646 0.036209 0.148086 -0.933606 0.453908 -0.397695 0.696950 -1.160158 -0.496817 -0.929041 -0.545544 -0.154559 1.854109 0.370501 1.139308 0.419854 -0.681025 -0.126940 -1.198186 -1.745406 -0.085069 -0.527767 0.128461 0.075142 -0.072235 0.016003 -0.201346 -0.239068 0.221647 -0.727769 -0.336766 -0.432216 -0.229217 -0.109488 -0.239850 -0.589833 0.009677 0.825793 0.085509 0.558471 -0.322474 -1.588090 -0.859716 -0.656695 0.593416 -0.295786 0.304235 -0.106281 -0.121306 -1.124647 0.342714 -0.592089 0.066988 -0.488355 -0.624554 -0.875203 0.131066 -0.298479 0.367583 -0.093959 -0.794504 0.339153 -0.104191 0.637577 0.189776 0.370896 -0.189518 -1.343250 -1.203607 -0.123518 0.056883 1.378264 0.206500 0.074343 0.039561 -0.404673 -0.879606 0.618282 -1.488653 0.182427 0.640029 -0.887973 0.665894 -0.561608 -0.443802 -0.697142 0.488880 0.007573 -0.685085 1.382165 0.893920 -1.069681 -0.419810 -0.701408 0.489247 0.281259 1.237044 -0.362294 0.035782 0.304630 0.403446 -0.180349 -0.338306 0.523752 -0.099376 0.455932 -1.098929 -0.751725 0.528971 0.854705 -0.129655 -0.213249 -0.048339 0.101713 -0.264983 1.126732 0.179738 0.354560 -0.677003 -1.986326 0.170733 0.426723 -0.136553 0.583266 -0.963197 -0.379061 -0.131862 -0.066108 1.039117 0.417871 0.420962 0.780392 -0.927495 -0.964823 -0.412539 -0.195741 -0.044523 -0.421975 0.602886 -0.674973 -0.138730 -0.372233 0.519949 -0.309114 -0.232846 -0.457358 0.186407 0.344081 0.293877 -0.354230 0.825028 0.269138 -0.327159 -0.235022 0.109758 -0.050877 0.579014 -0.523880 -0.412836 -0.425814 0.251785 -0.480355 0.673353 -0.110884 0.651545 0.102723 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 2.338017 -0.568253 -1.403785 4.318661 0.122200 0.356248 0.835053 0.846450 0.115548 -6.501328 -2.860513 2.146204 0.634498 0.775911 0.075284 2.057489 1.376790 1.223058 -6.738951 0.156280 2.033401 -0.085782 0.243599 -0.146312 0.356899 -1.921083 0.630082 1.376174 0.677588 4.349999 -1.795882 2.840997 3.724302 0.043788 1.302342 2.870163 -0.784450 -0.522624 -0.809142 -1.323835 4.730879 1.208146 -0.816964 0.966775 -0.884388 4.834587 0.317042 4.156040 0.772535 -2.000881 1.853237 -1.304298 -2.052017 0.088224 -3.653485 1.016717 2.176793 2.668780 -1.651828 1.583112 -1.808946 1.324832 1.705107 -0.380352 4.695257 2.190382 2.871428 3.823001 3.991415 -3.386983 1.180552 0.421176 0.410553 -0.018092 1.787101 -2.395449 -1.353326 -3.759548 0.028562 -5.563547 -0.616580 -0.317831 5.936286 -3.771128 -0.363313 0.680759 0.953549 4.799749 -2.535965 1.464990 -4.645507 0.002662 0.242388 4.643609 0.477321 0.282618 -0.929368 1.644357 -0.472268 0.947365 0.329343 -3.458459 -2.388789 -5.719735 -2.705434 -2.651418 0.678525 1.646594 -5.398456 0.472902 1.584011 3.346741 -6.695087 -0.392932 0.964514 1.838815 2.093952 2.414571 -2.167836 -0.208230 -0.123199 1.478254 1.915080 -2.069606 1.383418 -2.276903 -0.222540 0.850369 1.607479 0.960010 -5.224752 -1.216542 1.340875 -1.260657 0.719465 2.437022 2.482113 -0.826971 2.208017 -3.049710 3.456756 -4.917398 -1.077751 -1.757252 -3.249924 -2.079520 4.881314 4.344336 2.168645 0.295212 -1.548785 -0.515631 -5.315279 -5.414392 -0.177630 0.032602 0.911260 1.520534 -1.021189 1.507491 -2.886639 1.152348 1.186911 -2.408765 -2.398208 -0.666648 2.742833 0.587818 -1.035633 -2.130825 -0.397074 0.997954 -1.037824 3.861130 -1.395010 -4.206883 -6.324573 -2.648195 3.826256 -2.177861 0.418617 -2.202837 -0.518952 -3.088690 0.587335 -3.014922 -0.136447 0.055475 -2.260878 -5.262464 2.211790 -0.936611 -1.570793 1.642406 -3.435630 1.089813 2.228530 1.558006 0.684503 0.556512 -0.162245 -3.483106 -2.841246 0.557751 -2.205708 3.761631 2.689510 -0.624792 -2.504051 -2.501614 -3.164466 3.762659 -2.595660 2.687648 0.013593 -1.260378 2.191871 -3.504434 0.102534 -2.723540 1.967533 0.896513 -6.465499 4.904715 3.395906 -3.126529 -0.194541 -2.521071 2.335996 0.806711 3.082641 -2.650568 -2.093913 0.895311 0.299018 -0.203464 -1.083867 1.329195 -1.277504 -0.438992 -3.707002 -1.306517 3.307023 1.972858 -0.584152 0.659844 2.217094 -0.558751 1.321605 3.728973 2.243718 -0.159070 -2.838137 -8.035756 1.465357 1.295470 -0.029220 0.679291 -2.927479 -1.047038 0.999155 -1.450480 4.037069 0.937525 -1.340991 3.931641 -4.603414 -3.787295 -2.793312 -0.464950 0.568690 -0.627745 1.303507 -1.735172 0.394918 0.110256 1.199584 -0.802613 -2.859355 -1.096358 1.974004 4.331684 0.345339 -0.509023 4.275661 1.026140 -1.318069 -1.093169 0.209737 -1.538775 0.348586 -3.460352 -0.660594 1.101909 1.904310 -3.418041 1.419736 -0.090699 0.317633 0.491454 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.650773 -0.316951 -0.159255 1.045988 0.137959 -0.154805 0.330844 0.333096 0.055438 -1.434092 -0.759469 1.065127 -0.019166 -0.143609 0.035159 0.130560 0.413405 0.322935 -1.849854 0.257438 0.228050 0.009589 -0.247070 -0.230425 0.050095 -0.514678 0.437421 0.823804 0.078538 1.015514 -0.413593 0.315601 0.791367 0.150915 0.585807 0.907199 -0.028738 -0.160458 -0.278408 -0.298216 1.456549 0.505147 -0.114200 0.588496 0.293270 1.230414 0.339290 0.873851 0.906804 -0.404638 0.392002 -0.033523 -0.609666 -0.287268 -1.138329 0.128837 0.456496 0.274358 -0.668338 0.573487 -0.408386 0.106764 0.377226 -0.056094 1.179869 0.265111 0.668807 0.747517 1.115318 -0.825468 0.011456 0.365844 0.700847 0.284872 0.414309 -0.507663 -0.778685 -1.161163 -0.003970 -1.503308 -0.314787 -0.150132 1.279685 -0.824638 -0.039398 0.269468 -0.026155 0.921294 -0.667610 -0.102489 -1.163293 -0.050357 0.085790 1.137076 0.182479 0.103686 0.100117 0.356126 0.070126 0.577772 0.000384 -1.042721 -0.356150 -2.091319 -0.503905 -0.663058 0.011154 -0.041537 -0.982344 -0.019541 0.418331 1.129333 -1.436543 -0.246004 0.483108 0.119270 0.057222 -0.074001 -0.319285 0.010434 0.083086 0.428853 0.760950 -0.609186 0.137942 -0.185119 0.169594 0.204828 0.382262 0.232761 -0.863411 -0.508924 0.478778 0.215229 -0.040634 0.157056 0.186486 -0.323996 0.546189 -0.753240 1.018441 -1.093115 -0.022245 -0.547069 -0.386056 -0.437612 1.323736 0.929258 0.821774 0.111655 -0.191648 0.036243 -1.093993 -1.780218 0.414621 -0.109864 0.203158 0.021684 -0.149359 0.261776 -0.627129 -0.027313 0.302622 -0.535730 -0.437855 -0.121690 0.161806 0.152512 -0.300207 -0.533992 0.068879 0.371507 0.161612 0.717692 -0.558501 -1.781366 -1.041636 -0.681715 0.924399 -0.407012 -0.111790 -0.253276 -0.351056 -0.536887 0.239003 -0.836394 0.117448 -0.294986 -0.655003 -1.181983 0.277983 -0.307218 -0.012349 0.247366 -0.778747 0.155857 0.391626 0.492405 0.122796 0.290406 0.120580 -0.910262 -0.676811 -0.013732 -0.299524 1.143508 0.631748 0.065380 -0.831526 -0.384682 -0.834761 0.861457 -0.957507 0.514001 0.076495 -0.854978 0.855332 -0.637212 -0.061577 -0.448961 0.578659 0.357801 -1.813460 1.301645 1.235540 -0.880434 -0.298738 -0.411338 0.188856 0.459037 1.097736 -0.823844 -0.483597 0.266573 0.022954 -0.019446 -0.284419 0.463453 -0.076192 0.086648 -1.062603 -0.599026 0.839227 0.585933 -0.017255 0.083735 0.313661 0.138502 0.137246 1.173073 0.313724 0.260386 -0.902129 -2.231550 0.525522 0.774369 -0.002851 0.612020 -0.731449 -0.531681 0.110859 -0.527725 1.053552 0.090055 -0.491966 0.959881 -0.917987 -0.997034 -0.864228 -0.274103 0.147017 -0.289953 0.778990 -0.474672 0.120561 -0.271578 0.205937 -0.238901 -0.220500 -0.276298 0.392798 0.598148 0.496621 -0.145193 1.098827 0.046545 -0.557946 -0.255971 -0.059924 -0.369359 0.289929 -0.994974 -0.309799 -0.142051 0.536830 -0.633258 0.410185 0.021873 0.473957 0.198450 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = 1.704111 -1.081175 -0.547606 1.614792 0.333542 -1.207301 0.439905 0.868642 0.305334 -2.368271 -0.887040 0.632484 0.222424 -1.041968 0.436597 0.709313 0.713786 0.565234 -2.788735 1.141615 0.360336 0.021041 -1.471084 -0.485942 -0.077166 -0.972519 -0.215663 1.041166 -0.147779 1.620405 -1.004629 0.372804 1.344624 -0.316437 1.353962 1.760131 0.402616 -0.157387 0.529600 0.684382 3.000754 1.142783 -0.414657 0.576656 1.187731 2.040088 -0.133035 2.785285 -0.164869 -0.617682 1.477175 -0.700035 -0.820883 -0.020110 -2.277506 0.653763 2.149932 0.876966 -1.764946 1.365915 -1.048482 0.458514 0.981238 0.680478 2.640999 1.108072 1.069785 1.373970 2.759078 -0.815800 0.237397 0.425625 1.605144 -0.176490 1.203447 -1.061789 -0.949849 -2.794751 0.336471 -1.843602 0.357509 -0.174980 2.204367 -1.775083 0.499622 1.389829 0.656556 1.796643 -1.637112 -0.428926 -1.883820 0.076398 -0.213887 3.339939 -0.286725 0.774448 -0.171222 1.173259 0.022830 0.874271 -0.012379 -2.004235 -1.497025 -3.867280 -1.960453 -0.997435 -0.791449 -0.508944 -2.545312 -0.405736 1.483590 0.920967 -2.760464 0.273202 0.617319 0.072889 1.404262 0.225494 -1.204719 0.022530 -0.604085 0.722786 0.412692 -0.699681 -0.029162 -1.786012 0.777113 0.947414 0.621268 -0.123797 -1.974855 0.387426 0.602883 -0.046891 -0.528071 0.435259 0.141584 -1.948747 0.893306 -1.601371 1.622431 -2.584974 -0.522561 -1.531581 -1.724078 -0.310677 2.498392 0.936927 1.320067 0.383643 -1.164707 -0.127551 -2.689301 -3.736581 0.381884 -0.750429 0.510129 -0.326087 -0.245164 -0.432522 -0.624355 -0.409806 0.638844 -1.514778 -0.586522 -0.803755 1.693095 -0.008718 -0.714764 -0.960294 -0.078117 1.815712 0.584707 1.008814 -1.049893 -2.307184 -2.132132 -1.132507 1.497112 -0.419203 0.336418 -0.387298 -0.321579 -2.333199 0.872843 -1.296752 0.606837 -1.121601 -0.574156 -2.015444 0.267877 -0.502903 0.390204 -0.397045 -1.521987 0.626642 0.226165 0.734544 0.004728 0.414831 0.291011 -2.436010 -2.233511 0.113084 0.215225 2.582216 0.960479 0.448010 -0.047276 -0.411089 -1.873416 1.485023 -2.310980 0.530907 0.911691 -1.744566 1.934729 -1.203825 -1.156884 -1.652605 1.087247 -0.031033 -0.822515 3.228842 1.837180 -2.098147 -0.556867 -1.280652 0.994015 0.812906 2.420488 -0.965262 -0.425063 0.809429 0.089372 -0.371331 -0.693512 0.954199 -0.439349 1.268071 -2.063316 -0.972333 1.346534 1.668481 -0.234190 0.156611 -0.386316 -0.293728 -0.597866 2.276457 0.467461 0.522716 -1.579356 -3.425982 0.616124 -0.288618 0.064705 0.321265 -1.232628 -0.859349 -0.212870 0.329589 2.073016 1.571003 -0.043707 1.584656 -2.440700 -2.281140 -1.052808 0.215566 0.250818 -1.016273 0.894770 -1.255182 0.127219 -0.460434 1.341443 -0.045007 -0.921197 -1.311696 0.420346 0.910057 0.442541 -1.518281 2.034592 0.130372 -0.613538 -0.401489 -0.054425 0.078755 0.949644 -0.703518 -0.854314 -0.931831 0.992480 -1.265548 1.879053 -0.154084 1.184917 0.839158 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = -0.046494 -0.403294 -0.168184 1.062027 0.162617 -0.002887 0.137541 -0.309284 0.219771 -1.249925 0.026250 0.336016 -0.151683 0.320943 -0.293360 0.502416 0.272127 0.149129 -0.332259 0.022587 0.389141 0.199665 0.251936 0.164910 0.361428 -0.247862 0.529269 0.222167 0.204101 0.635572 -0.406245 0.498758 0.756197 -0.020728 -0.126968 0.475218 0.440799 0.420014 -0.125477 -0.180533 0.514387 -0.263181 -0.204350 0.242288 -0.171162 0.848615 0.427242 0.881922 0.291296 -0.485052 -0.015731 -0.117900 -0.148362 -0.278614 -0.577489 0.576714 0.211879 0.831130 -0.437273 0.140198 0.040773 0.295008 0.365475 0.042244 0.702546 0.647583 0.427347 0.808367 1.027202 -0.541217 0.128645 0.230163 0.403190 0.261530 0.539173 -0.445109 -0.313629 -0.299721 -0.369368 -0.319015 -0.051330 0.018835 0.671754 -0.704307 -0.251940 -0.202969 -0.084174 0.950864 -0.363140 0.444062 -0.961808 0.169196 0.357735 0.986073 0.214933 -0.013803 -0.357318 0.487868 -0.103878 0.187397 0.180367 -0.356884 -0.192738 -0.692604 -0.498322 -0.558365 0.228377 0.347262 -1.407358 0.076646 -0.144599 0.536661 -1.458407 -0.153487 0.157751 0.356326 0.788355 0.152815 0.080752 0.117689 0.056507 -0.180173 -0.199947 -0.246326 0.214693 -0.405983 -0.240488 0.005117 0.218316 0.253156 -0.969092 -0.043731 -0.154928 -0.074300 0.331446 0.636006 0.480934 -0.251893 0.377777 -0.581442 0.433871 -0.935951 -0.614053 0.124839 -0.773331 -0.456864 1.040235 0.301063 0.676323 -0.437392 -0.501517 -0.755714 -1.140570 -1.133254 -0.018378 -0.018423 0.068163 0.847843 -0.274666 0.204136 -0.622587 0.005799 0.588175 -0.425673 -0.394074 -0.272398 0.049716 -0.033933 0.219489 -0.614613 -0.303066 0.379570 -0.299878 0.532208 -0.188870 -0.856275 -1.315961 -0.407810 0.425236 -0.383855 0.194089 -0.462456 -0.172415 -0.898824 0.274324 -0.488555 -0.197019 0.020568 -0.379411 -0.948386 0.675761 -0.290623 -0.101245 0.327128 -0.602626 0.240713 -0.196862 0.047082 0.300993 0.053176 -0.171090 -0.628009 -0.560776 0.375890 -0.302085 0.352267 0.046497 -0.131579 -0.225799 -0.712736 -0.596991 0.785024 -0.630263 0.449415 0.514131 0.355045 0.510183 -0.560164 0.245214 -0.537391 0.379186 0.211407 -0.841584 0.556871 0.494638 -0.613982 -0.054491 -0.146880 0.479885 0.245396 0.400313 -0.681393 -0.555282 0.362652 0.128106 -0.060013 -0.200637 0.114170 -0.222174 0.327606 -0.675976 -0.159440 0.261046 0.331075 -0.349247 -0.004272 0.333139 -0.588502 0.013075 0.629335 0.527471 0.303406 -0.546200 -1.155051 -0.053119 -0.234879 0.124084 0.204549 -0.823745 0.154501 0.593235 -0.331430 0.791813 -0.196243 -0.270809 0.727086 -1.244507 -0.622049 0.217880 -0.374618 0.112617 -0.015995 0.523796 -0.251639 -0.097271 0.120609 0.296453 -0.554389 -0.602341 0.306369 0.343139 0.943563 -0.492479 -0.040309 0.689684 -0.113519 -0.159846 -0.125644 0.266129 -0.126085 -0.172441 -0.960857 -0.077644 0.197860 0.330102 -0.800039 0.705369 -0.286757 -0.043362 -0.001897 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = 1.144882 -0.396381 0.151016 0.882197 0.360150 -0.888724 0.551168 0.951743 0.215122 -1.748149 -0.718385 0.361151 0.010421 -0.740772 0.225629 0.179341 0.533792 0.848483 -1.969354 0.649112 0.391469 0.506776 -0.666895 -0.730651 0.021716 -0.423044 -0.604773 0.716311 0.093353 1.264700 -0.764517 -0.232951 0.971506 -0.071734 0.680529 1.397848 0.876688 -0.015908 0.494353 0.210408 2.167333 0.814399 -0.277435 0.801819 0.985389 1.444492 -0.072444 1.611640 -0.381317 -0.520918 0.605289 -1.079104 -0.761078 -0.193847 -1.390398 0.694549 1.824993 1.175469 -1.230519 1.233492 -0.318553 0.260163 0.638657 -0.059698 1.267430 1.036668 0.164554 0.817596 2.169664 -0.768850 -0.036391 0.284780 1.246291 -0.021782 0.606586 -0.863958 -0.444140 -2.478211 0.128745 -1.787775 0.227132 -0.153981 1.868129 -1.367454 0.852011 1.478662 0.267189 0.909398 -0.916503 -0.627164 -1.250332 0.144574 -0.233024 2.452017 -0.188919 0.411668 -0.047274 0.783231 0.360467 0.762037 0.073699 -1.130345 -1.310849 -2.921607 -1.103908 -0.626205 -0.647271 -0.405456 -1.440762 -0.586479 1.387135 0.809979 -2.054028 0.032740 0.668527 0.239663 0.160764 -0.149379 -0.848455 0.169023 -0.629543 0.117141 0.141314 -0.912409 -0.291470 -0.799405 0.023915 0.480715 0.403827 -0.179669 -1.305750 -0.003972 0.114507 -0.058682 -0.437866 0.031560 -0.213344 -1.403738 0.637669 -1.364055 1.103087 -1.654858 -0.202304 -0.652186 -1.295626 -0.250774 1.811437 0.115357 0.700773 0.248197 -0.772259 -0.468077 -1.404482 -2.403265 0.782240 -0.348260 0.833669 -0.174137 -0.170372 -0.527510 -0.523921 -0.695688 0.216163 -0.907426 -0.171130 -0.460096 1.685937 -0.408296 -0.472749 -1.052344 0.282352 1.764972 0.355622 0.171326 -1.024193 -0.908016 -1.160300 -0.925735 1.109986 -0.250554 0.200799 -0.113687 -0.095248 -1.377429 0.720147 -0.911171 0.666400 -0.693751 -0.645261 -1.524311 0.289035 -0.486755 0.180675 0.062422 -0.965166 0.379208 -0.057149 0.593837 -0.161159 0.125113 0.485001 -1.922363 -1.676451 -0.309910 0.289163 1.506700 0.624878 0.564488 -0.337739 -0.209268 -1.115177 1.160417 -1.421266 0.219584 0.296692 -0.876091 1.589580 -0.634630 -0.590738 -1.550015 0.787799 0.306175 -0.609043 2.225367 1.124060 -1.370284 -0.600704 -0.969444 0.411050 0.791626 1.886943 -0.859062 -0.623553 0.906212 -0.462679 -0.254080 -0.903053 0.708330 -0.165040 1.262466 -1.484392 -0.655921 0.741447 1.261368 -0.266198 0.558993 0.152889 0.079632 -0.503022 1.804285 0.334761 0.282801 -1.166881 -2.060490 0.677393 0.232503 0.471289 0.120390 -0.831179 -0.719083 0.155450 0.709441 1.373866 1.616876 0.137247 1.167114 -1.582045 -1.562743 -0.182485 0.219566 0.618526 -0.988968 0.515849 -0.847257 0.175081 -0.217831 0.785521 0.350667 -0.595619 -1.266474 0.095138 0.832824 0.395839 -1.018174 1.587654 -0.163467 -0.661907 0.212398 -0.232769 0.616721 0.431166 -0.121716 -0.429475 -0.747626 0.638807 -0.870170 1.735392 -0.169511 0.464255 0.789743 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = 0.399748 -0.084499 -0.091516 0.503323 0.224496 -0.328547 0.148134 0.168186 0.008593 -0.782344 -0.253138 0.305712 0.033418 -0.273179 0.060355 0.196020 0.284352 0.407862 -0.448786 0.264555 0.082604 0.091275 -0.400984 -0.230415 -0.038131 -0.242020 -0.047188 0.245830 0.060690 0.537890 -0.365490 0.054414 0.423161 -0.026412 0.395427 0.551379 0.430018 -0.040893 0.026581 0.034737 0.983435 0.203522 0.011923 0.333177 0.384326 0.635978 0.013042 0.607506 -0.140607 -0.196617 0.179011 -0.171282 -0.191901 -0.044311 -0.734266 0.339835 0.487434 0.334620 -0.583397 0.436496 -0.128022 0.154232 0.275480 0.048842 0.633964 0.310361 0.109353 0.466232 0.891571 -0.338800 -0.009775 0.165079 0.538400 0.030468 0.443710 -0.121399 -0.212448 -0.712620 -0.053623 -0.524674 0.212583 -0.014030 0.913927 -0.589743 0.204261 0.566711 0.162825 0.471344 -0.384422 -0.223071 -0.631822 0.049156 -0.124797 0.890606 0.087752 0.177946 -0.160578 0.322363 0.038684 0.300987 -0.021639 -0.582344 -0.397085 -1.209278 -0.619792 -0.338874 -0.261729 -0.196418 -0.673958 -0.227930 0.549087 0.692391 -0.896569 0.053441 0.211179 0.024223 0.187048 -0.160185 -0.351641 0.103071 -0.201859 0.059432 0.014155 -0.226167 -0.105272 -0.281980 0.055111 0.092425 0.261026 -0.043868 -0.554616 -0.004443 0.060751 -0.011597 -0.184245 0.016719 -0.001716 -0.658229 0.294065 -0.445237 0.449786 -0.636620 -0.108068 -0.345974 -0.675258 -0.143729 0.780326 0.106743 0.527281 0.067967 -0.336222 -0.201330 -0.730659 -1.127270 0.332663 -0.200705 0.170115 0.059741 -0.078484 -0.144297 -0.283828 -0.235572 0.359051 -0.479664 -0.171849 -0.157190 0.629408 -0.183834 -0.215962 -0.505870 0.029157 0.635599 0.261639 0.167213 -0.444193 -0.490990 -0.579692 -0.387702 0.464295 -0.178923 0.169396 -0.037951 -0.134069 -0.556272 0.255581 -0.434498 0.265384 -0.356127 -0.188858 -0.669920 0.100028 -0.212045 -0.118804 0.010879 -0.483290 0.290013 0.013005 -0.045044 -0.087825 0.035379 0.129135 -0.711772 -0.651300 0.003131 0.074368 0.540909 0.402349 0.244437 -0.244749 -0.187004 -0.540218 0.440340 -0.744511 0.160558 0.312299 -0.403429 0.576100 -0.411544 -0.289047 -0.475984 0.375201 0.084353 -0.426602 0.854589 0.545721 -0.645353 -0.206628 -0.347552 0.272765 0.260572 0.836319 -0.395452 -0.130035 0.376158 -0.081996 -0.101860 -0.298019 0.292611 -0.071183 0.484784 -0.694009 -0.316119 0.341535 0.554003 -0.105620 0.092551 0.033775 -0.064641 -0.168006 0.779437 0.243884 0.263280 -0.528434 -0.817881 0.231581 -0.264387 0.133978 0.167371 -0.269100 -0.191323 0.042364 -0.020333 0.620535 0.205651 -0.034389 0.546909 -0.757351 -0.692004 -0.065919 -0.024401 0.230033 -0.433935 0.423053 -0.436243 -0.008129 -0.230709 0.380652 -0.064243 -0.170419 -0.301436 0.125952 0.332823 0.208850 -0.339829 0.664802 -0.004703 -0.288267 0.074797 -0.064694 0.223855 0.192582 -0.424923 -0.263576 -0.270152 0.276044 -0.406983 0.671053 -0.175666 0.247676 0.328014 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = 1.118108 -0.355712 0.128151 0.870017 0.316418 -0.881124 0.563072 0.948405 0.212863 -1.709423 -0.702312 0.389961 0.021488 -0.733486 0.201209 0.160047 0.529344 0.876023 -1.919036 0.619890 0.378950 0.504795 -0.696960 -0.722036 -0.006053 -0.398456 -0.628492 0.714285 0.096485 1.264783 -0.729877 -0.247020 0.967669 -0.088022 0.657049 1.404183 0.891882 0.009788 0.490674 0.196209 2.124713 0.813284 -0.274485 0.799017 0.957805 1.438863 -0.064983 1.573640 -0.418063 -0.522695 0.576856 -1.059481 -0.752913 -0.213198 -1.358555 0.663906 1.800832 1.187699 -1.220488 1.255000 -0.311926 0.254118 0.644401 -0.052186 1.230300 1.039588 0.127592 0.820967 2.132680 -0.774125 -0.022670 0.256302 1.208081 -0.042193 0.584215 -0.833212 -0.442398 -2.422317 0.128509 -1.790041 0.217325 -0.124077 1.882896 -1.368754 0.862809 1.462843 0.267869 0.879387 -0.915776 -0.640725 -1.233379 0.114396 -0.243926 2.427749 -0.165545 0.401794 -0.037859 0.781689 0.364644 0.737000 0.047206 -1.130520 -1.288947 -2.884916 -1.079435 -0.626851 -0.670032 -0.389355 -1.388109 -0.631165 1.387984 0.813057 -2.049911 0.033918 0.665432 0.217981 0.132867 -0.130122 -0.845991 0.210121 -0.639949 0.087777 0.172062 -0.911195 -0.286458 -0.733484 -0.008125 0.468311 0.383614 -0.144822 -1.329362 0.000170 0.126055 -0.075665 -0.439793 0.035273 -0.232675 -1.363850 0.629642 -1.373660 1.102605 -1.633658 -0.192004 -0.613579 -1.308200 -0.257632 1.755640 0.116816 0.692350 0.209146 -0.756683 -0.452821 -1.387308 -2.387525 0.817132 -0.320417 0.832369 -0.187142 -0.175964 -0.540478 -0.539026 -0.677841 0.227157 -0.885006 -0.164849 -0.421911 1.727432 -0.390023 -0.483507 -1.035052 0.292580 1.727640 0.384085 0.163589 -1.037514 -0.889787 -1.141520 -0.882952 1.111654 -0.239405 0.181836 -0.087734 -0.128061 -1.341603 0.696437 -0.904392 0.670713 -0.693696 -0.606766 -1.522232 0.302880 -0.479660 0.160718 0.074963 -0.949614 0.371686 -0.035298 0.564837 -0.178632 0.117247 0.517685 -1.866583 -1.624636 -0.290846 0.277378 1.472083 0.659273 0.582938 -0.334771 -0.187004 -1.102125 1.136678 -1.390262 0.231571 0.290385 -0.860802 1.585657 -0.631713 -0.580273 -1.529814 0.788111 0.330613 -0.625897 2.181117 1.119205 -1.343965 -0.578934 -0.922733 0.391116 0.790488 1.850130 -0.867393 -0.648952 0.921410 -0.495430 -0.240243 -0.891312 0.674915 -0.147330 1.242341 -1.458485 -0.609738 0.755239 1.225279 -0.255470 0.559714 0.149715 0.055941 -0.492887 1.786455 0.330794 0.278252 -1.154678 -2.020922 0.704485 0.196799 0.472562 0.106604 -0.796065 -0.690436 0.176707 0.679201 1.331058 1.576996 0.086488 1.160092 -1.577730 -1.555112 -0.193359 0.225176 0.644374 -0.979011 0.514923 -0.828433 0.205736 -0.217716 0.782092 0.360276 -0.576825 -1.251086 0.109905 0.820960 0.373141 -1.017744 1.586633 -0.210152 -0.657468 0.220034 -0.251317 0.612500 0.416442 -0.148794 -0.418160 -0.734603 0.675967 -0.878179 1.722854 -0.173914 0.446939 0.821614 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = 1.076356 -0.150715 0.036909 0.801503 0.254191 -0.922451 0.526087 0.961793 0.109057 -1.630877 -0.739741 0.326372 0.056067 -0.767358 0.218739 0.197782 0.457374 0.917659 -1.862181 0.641717 0.430226 0.501603 -0.720539 -0.731074 -0.012176 -0.349011 -0.829719 0.617356 0.075620 1.235058 -0.712015 -0.197526 0.933786 -0.087163 0.638433 1.343400 0.737514 -0.005146 0.639242 0.210641 2.011929 0.810908 -0.246708 0.706197 0.919189 1.372213 -0.196039 1.414020 -0.699555 -0.506897 0.522956 -1.005737 -0.717376 -0.110642 -1.246993 0.642369 1.740061 1.160752 -1.150820 1.213777 -0.363104 0.251256 0.644378 -0.117194 1.220852 1.061094 0.064096 0.819083 2.065334 -0.663399 0.049060 0.168140 1.088256 -0.188882 0.496961 -0.693735 -0.348012 -2.284851 0.116240 -1.887982 0.247047 -0.059288 2.002434 -1.357180 0.885354 1.413765 0.386637 0.892709 -0.919126 -0.642771 -1.146938 0.096048 -0.370507 2.329480 -0.152664 0.415748 -0.112074 0.773981 0.336012 0.646867 -0.107775 -1.051273 -1.335781 -2.783822 -1.059739 -0.563907 -0.692405 -0.353782 -1.397689 -0.656854 1.439626 0.883972 -2.047267 0.058544 0.627173 0.188172 -0.017327 0.012024 -0.989548 0.229633 -0.719912 0.084029 0.130743 -0.812071 -0.295498 -0.756954 -0.088536 0.424665 0.371203 -0.121776 -1.411695 0.036993 0.128344 -0.245106 -0.430745 0.102585 -0.196480 -1.276027 0.598541 -1.350384 1.036508 -1.615740 -0.146272 -0.614740 -1.386782 -0.226408 1.523489 0.257530 0.553400 0.183798 -0.665583 -0.442242 -1.416643 -2.212776 0.797940 -0.360809 0.851923 -0.253766 -0.160099 -0.578275 -0.506298 -0.620194 0.250295 -0.883833 -0.151652 -0.458441 2.040519 -0.357329 -0.494908 -1.012894 0.204391 1.653829 0.321482 0.104124 -1.016060 -0.611413 -1.167757 -0.830657 1.080919 -0.208930 0.195691 -0.150112 -0.056884 -1.272698 0.659798 -0.867794 0.631143 -0.671365 -0.466024 -1.462490 0.251371 -0.412352 -0.003593 -0.017624 -0.881217 0.374974 0.158898 0.466452 -0.198676 0.081417 0.503236 -1.700546 -1.532684 -0.237831 0.272487 1.303240 0.837945 0.580618 -0.396040 -0.141212 -1.105621 1.131800 -1.243677 0.233890 0.250364 -0.797410 1.572843 -0.658125 -0.608416 -1.459920 0.736949 0.232350 -0.742076 2.053488 1.018789 -1.292958 -0.494793 -0.974705 0.430265 0.769437 1.759874 -0.778174 -0.563166 0.865503 -0.539261 -0.240056 -0.852286 0.656401 -0.214751 1.242456 -1.356699 -0.506111 0.795614 1.172609 -0.245879 0.594299 0.063744 0.044990 -0.351575 1.652666 0.347340 0.163262 -1.100480 -1.875541 0.645715 0.052350 0.482887 0.013915 -0.624967 -0.672089 0.110253 0.617407 1.292060 1.481579 0.017426 1.088381 -1.532527 -1.518352 -0.190392 0.368432 0.625357 -0.975632 0.454001 -0.773630 0.200726 -0.135939 0.817620 0.454898 -0.684027 -1.348051 0.100492 0.854002 0.355993 -1.059054 1.532606 -0.202666 -0.609602 0.207167 -0.266953 0.644090 0.344584 -0.154583 -0.433712 -0.712196 0.653094 -0.882684 1.727041 -0.158183 0.427296 0.872868 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = 1.242527 -0.213239 -0.021573 0.847229 0.241967 -1.090923 0.489295 1.181098 0.044314 -1.902534 -1.073807 -0.200063 0.080991 -0.953268 0.543113 0.288862 0.535132 0.960697 -2.589653 0.876611 0.700482 0.461953 -0.737441 -0.670946 0.037340 -0.475092 -1.449120 0.649995 0.026308 1.420930 -0.909673 0.044606 1.119045 -0.089828 0.877241 1.514445 0.304563 -0.187497 1.197070 0.447896 2.345109 0.876026 -0.251298 0.480583 1.016345 1.586797 -0.573747 1.732138 -0.781424 -0.600492 1.038728 -1.622290 -0.718923 0.214636 -1.468609 0.667423 2.053745 1.315639 -1.354427 1.276593 -0.698912 0.364789 0.760324 -0.352398 1.724588 1.259245 0.153574 0.966393 2.275382 -0.556878 0.240762 0.031686 1.049665 -0.445967 0.155621 -0.882728 0.013604 -3.156345 0.225646 -2.373572 0.356305 -0.081704 2.240306 -1.555311 1.072493 1.609924 0.460621 1.255648 -1.110030 -0.617814 -1.393949 0.084410 -0.305395 2.290990 -0.344805 0.367845 -0.068547 0.865458 0.141149 0.646289 -0.353031 -1.203854 -2.019956 -3.331770 -1.429080 -0.527323 -0.701475 -0.392015 -1.924906 -0.588624 1.820795 0.647165 -2.393099 0.102791 0.589691 0.259962 -0.521714 0.460978 -1.479527 -0.086846 -0.923147 0.482087 0.206166 -0.777068 -0.218235 -1.637076 -0.071565 0.646701 0.503201 -0.248606 -1.366724 0.102778 0.238399 -0.413608 -0.559088 0.281784 -0.062539 -1.199001 0.714565 -1.482765 1.229097 -1.968553 -0.143023 -1.059448 -1.455816 -0.231957 1.960548 0.745144 0.349140 0.503591 -0.846965 -0.274510 -1.814398 -2.251211 0.616289 -0.660318 1.168145 -0.413101 -0.195449 -0.589979 -0.340800 -0.570952 -0.057551 -1.143003 -0.305569 -0.754182 2.218143 -0.236316 -0.601833 -1.167707 0.163171 2.035546 -0.195714 0.131467 -1.110344 -0.154761 -1.420111 -1.016492 1.266909 -0.259872 0.361981 -0.333363 0.251927 -1.592189 0.818701 -1.046936 0.374148 -0.824444 -0.478008 -1.670331 0.210380 -0.436473 0.024582 -0.169862 -0.992248 0.513376 0.475041 0.920152 -0.135080 0.164376 0.385615 -1.916607 -1.842857 -0.383180 0.284458 1.483108 1.126866 0.530382 -0.468864 -0.227416 -1.201614 1.446730 -1.273002 0.319840 0.307966 -1.121930 1.762047 -0.834941 -0.774171 -1.610666 0.783961 0.120702 -1.312758 2.212376 1.012530 -1.586134 -0.454001 -1.642935 0.711744 0.822950 1.980460 -0.486234 -0.270005 0.797656 -0.433075 -0.297573 -1.071989 0.786662 -0.352023 1.340090 -1.558093 -0.602067 1.132177 1.331345 -0.209994 0.702044 -0.037816 0.388753 -0.145301 1.813105 0.296192 -0.080724 -1.106683 -2.374892 0.617645 0.796018 0.670116 0.046992 -0.756085 -0.767183 -0.227629 0.759676 1.593759 2.088604 0.275017 1.236647 -1.560173 -1.759507 -0.466879 0.782816 0.529401 -1.097441 0.319955 -0.883519 0.163699 -0.051785 1.088890 0.785190 -1.015969 -2.183195 0.162743 1.051216 0.448054 -1.289067 1.694440 -0.081156 -0.700330 0.061875 -0.233781 0.629392 0.459871 0.088417 -0.628914 -0.743056 0.660742 -1.082246 1.868508 -0.162397 0.613284 0.916079 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = 0.174731 -0.238951 0.092404 0.302019 0.151124 -0.190974 0.066871 0.124645 -0.078114 -0.580102 -0.289264 -0.390420 -0.041126 -0.191353 0.293960 0.084640 0.220433 0.145890 -0.710445 0.229575 0.211516 -0.016925 -0.066606 -0.014662 0.030512 -0.284612 -0.293982 0.284251 -0.027414 0.368018 -0.321736 0.181569 0.316199 0.077140 0.368539 0.375631 0.031335 -0.140437 0.260225 0.260417 0.731143 0.042750 -0.048680 -0.052317 0.274213 0.468754 -0.088629 0.344641 0.087562 -0.149011 0.420537 -0.565652 -0.040586 0.108504 -0.556817 0.119222 0.395670 0.317058 -0.427304 0.248995 -0.347067 0.140674 0.156603 -0.112988 0.661041 0.127264 0.195808 0.263505 0.504719 -0.168792 0.038096 0.059738 0.256791 -0.091060 -0.105220 -0.136525 0.140191 -1.271748 0.023756 -0.504899 0.085112 0.018794 0.301086 -0.308963 0.123580 0.447184 -0.067591 0.417808 -0.285445 -0.073013 -0.534015 0.029970 0.159653 0.300025 -0.022323 -0.056713 0.072585 0.216018 -0.031139 0.235648 -0.066930 -0.378666 -0.620224 -1.024565 -0.543677 -0.137457 -0.049222 -0.193967 -0.614815 -0.019272 0.611961 0.136967 -0.552390 0.048498 0.101974 0.143310 -0.349941 -0.123425 -0.352220 -0.186223 -0.137444 0.348536 0.185510 -0.135115 0.063907 -0.731499 0.176247 0.187714 0.253108 -0.152525 0.029538 -0.042840 0.122535 -0.004369 -0.183902 0.041770 0.041302 -0.170761 0.229708 -0.300990 0.424905 -0.462908 0.104910 -0.458847 -0.204953 -0.056301 0.821872 0.348291 0.066783 0.298359 -0.401903 0.112777 -0.502758 -0.679066 0.027621 -0.188148 0.290331 -0.043651 -0.096707 0.002739 -0.005548 -0.095556 -0.038884 -0.372834 -0.182166 -0.223409 -0.089141 0.041194 -0.188665 -0.357238 0.094905 0.627455 -0.242333 0.125847 -0.284879 0.039771 -0.344322 -0.381166 0.321017 -0.137882 0.132541 -0.090351 0.101678 -0.559207 0.363587 -0.323602 -0.051591 -0.253229 -0.239115 -0.448552 0.008999 -0.174119 0.054671 -0.021352 -0.303230 0.176240 0.009137 0.207421 0.075816 0.077936 -0.011941 -0.437363 -0.537145 -0.162510 0.043231 0.375657 0.188510 0.072464 -0.188408 -0.180304 -0.239941 0.451660 -0.288911 0.102350 0.194778 -0.521918 0.358724 -0.230871 -0.219995 -0.192177 0.225571 0.051179 -0.477216 0.522905 0.364949 -0.515584 -0.186361 -0.568648 0.255651 0.161127 0.596380 -0.022757 0.193914 0.104088 0.135022 -0.069197 -0.262544 0.239472 -0.053524 0.211752 -0.519224 -0.340466 0.316639 0.403887 -0.002344 0.109318 0.024831 0.316819 -0.081731 0.516794 0.011775 0.037426 -0.192234 -0.660754 0.118971 0.555024 0.194984 0.230103 -0.314223 -0.155570 -0.209184 0.108375 0.504068 0.645284 0.110918 0.395827 -0.240427 -0.446370 -0.262527 0.129759 -0.014184 -0.332874 0.196198 -0.283677 -0.043725 -0.101531 0.284626 0.148850 -0.163385 -0.646420 0.052060 0.196074 0.216878 -0.247016 0.412268 0.061746 -0.251220 -0.112079 0.056415 0.041098 0.313406 0.024717 -0.301709 -0.175107 0.134395 -0.258441 0.303080 -0.130325 0.236394 0.156853 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = 0.168384 -0.401265 0.084026 0.339806 0.232706 -0.040940 0.042536 -0.076565 0.064132 -0.464620 -0.099225 0.050340 -0.061477 -0.061284 0.115990 0.087882 0.236954 -0.005299 -0.233984 0.119047 -0.029599 -0.075168 -0.099180 0.045755 0.019016 -0.272528 0.273966 0.254517 0.000259 0.221975 -0.218905 0.105004 0.205239 0.040753 0.260575 0.245167 0.249090 -0.071871 -0.168654 0.097402 0.600914 -0.040345 0.025629 0.154010 0.229492 0.340534 0.119774 0.495679 0.481259 -0.074371 0.320342 -0.170229 -0.039480 -0.050380 -0.542200 0.145712 0.168741 0.035770 -0.333575 0.139044 -0.120059 0.101597 0.072068 0.090403 0.439871 0.021841 0.262516 0.185529 0.401234 -0.230344 -0.104267 0.243223 0.381226 0.225250 0.219217 -0.164754 -0.127139 -0.575140 -0.036289 0.044800 0.071894 -0.116022 0.130142 -0.173296 -0.116840 0.251140 -0.145405 0.254867 -0.149702 0.008638 -0.427686 0.084990 0.211652 0.285316 0.031182 0.025849 0.007172 0.095968 -0.021216 0.265065 0.149048 -0.340751 -0.180937 -0.678964 -0.412930 -0.188111 0.017057 -0.192255 -0.407370 0.080549 0.175063 0.180187 -0.299919 -0.005092 0.089972 0.076436 0.232949 -0.220539 -0.012450 -0.141916 0.125420 0.209579 0.083525 -0.091109 0.043356 -0.382861 0.262958 0.094618 0.197506 -0.126026 0.059535 -0.069507 0.040496 0.253425 -0.086168 -0.078717 0.027554 -0.305764 0.178443 -0.095690 0.278787 -0.304970 -0.091798 -0.311703 -0.103354 -0.065581 0.812845 0.042304 0.453780 0.184494 -0.325688 -0.028796 -0.331653 -0.690852 -0.000925 -0.124506 0.018501 0.127283 -0.047108 0.077603 -0.081083 -0.123725 0.121902 -0.252821 -0.132493 -0.098336 -0.477004 -0.066424 -0.082659 -0.277328 0.085573 0.352981 0.035241 0.196728 -0.139059 -0.575899 -0.217968 -0.294693 0.188841 -0.144866 0.108804 0.022137 -0.081509 -0.406543 0.195883 -0.222835 0.025469 -0.169372 -0.331320 -0.314266 0.045305 -0.166055 0.146986 0.059537 -0.299836 0.129892 -0.215822 0.120876 0.097583 0.119978 -0.078265 -0.460735 -0.438155 -0.096643 0.014102 0.437932 -0.057639 0.031986 -0.052726 -0.205921 -0.244265 0.220709 -0.527771 0.047733 0.268316 -0.358797 0.172964 -0.163919 -0.114414 -0.143262 0.196441 0.081893 -0.220041 0.453290 0.384486 -0.397144 -0.231667 -0.208184 0.139536 0.085594 0.499070 -0.169172 0.067746 0.115944 0.214017 -0.049450 -0.126961 0.196297 0.036040 0.116859 -0.453735 -0.373614 0.113949 0.336998 -0.040153 -0.100632 0.085876 0.118484 -0.188513 0.453960 0.049609 0.231202 -0.214528 -0.622887 0.074643 0.246728 -0.023373 0.339639 -0.403883 -0.101064 -0.023448 -0.060172 0.373931 0.128517 0.153295 0.321119 -0.244466 -0.305416 -0.100993 -0.215183 -0.027708 -0.196906 0.324680 -0.268703 -0.091910 -0.212963 0.124808 -0.193260 0.062239 -0.059155 0.046342 0.065447 0.165720 -0.018006 0.282978 0.097233 -0.179029 -0.063415 0.079474 -0.018422 0.277162 -0.222578 -0.176182 -0.150491 0.063542 -0.129081 0.168503 -0.112936 0.208943 -0.000952 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = 0.084992 -0.210321 -0.002781 0.275184 0.148303 -0.039177 0.022678 -0.108519 -0.014381 -0.337957 -0.075927 0.073797 -0.029041 -0.055578 0.078629 0.092092 0.173003 0.036492 -0.056290 0.082191 -0.034084 -0.088546 -0.141442 0.055404 -0.017378 -0.206807 0.174390 0.177574 -0.010696 0.174337 -0.152234 0.117201 0.153996 0.029178 0.204961 0.179984 0.182381 -0.044770 -0.124038 0.076097 0.438798 -0.063335 0.055061 0.093806 0.160335 0.259560 0.067543 0.303897 0.261599 -0.051078 0.209945 -0.043029 0.006190 -0.019393 -0.410824 0.092305 0.049732 -0.003291 -0.249358 0.111080 -0.126131 0.084151 0.061293 0.075879 0.354911 0.007620 0.181016 0.171369 0.280620 -0.159401 -0.057112 0.167349 0.254000 0.125057 0.162243 -0.001933 -0.085823 -0.326223 -0.059648 0.039190 0.074659 -0.036278 0.193714 -0.135125 -0.125999 0.169431 -0.070058 0.202375 -0.129242 0.001428 -0.324456 0.043771 0.110341 0.167023 0.087213 0.026576 -0.043889 0.074055 -0.027368 0.172633 0.030598 -0.266237 -0.122095 -0.505324 -0.344483 -0.143446 -0.011343 -0.149160 -0.314122 0.022899 0.170718 0.258317 -0.246477 0.011060 0.055206 0.025687 0.144985 -0.142823 -0.065133 -0.066145 0.087422 0.150541 0.078446 -0.006172 0.041579 -0.262888 0.182077 0.025642 0.160011 -0.065330 -0.010333 -0.045867 0.045194 0.132809 -0.066984 -0.043142 0.029131 -0.199015 0.135231 -0.059881 0.207851 -0.229104 -0.046149 -0.240463 -0.156942 -0.046681 0.549591 0.111302 0.367557 0.102233 -0.228071 -0.013785 -0.297989 -0.537003 0.022978 -0.101249 -0.008911 0.085313 -0.037250 0.048700 -0.082190 -0.060655 0.183705 -0.205582 -0.106346 -0.060096 -0.258093 -0.029666 -0.090138 -0.226178 0.030437 0.214331 0.059319 0.149086 -0.118594 -0.399442 -0.191473 -0.196016 0.142527 -0.109030 0.087184 0.018364 -0.090341 -0.289799 0.129604 -0.168924 0.014177 -0.136316 -0.189287 -0.239803 0.020121 -0.105325 0.000812 0.014996 -0.221944 0.112743 -0.081699 -0.031354 0.066856 0.080842 -0.057550 -0.249394 -0.283774 -0.022202 -0.006120 0.255586 0.077182 0.046011 -0.088470 -0.147520 -0.221748 0.158973 -0.384462 0.052877 0.235176 -0.271231 0.126989 -0.164486 -0.108776 -0.037262 0.150973 0.038758 -0.275786 0.286350 0.306324 -0.304591 -0.151473 -0.136656 0.125624 0.055604 0.369491 -0.130801 0.096146 0.085154 0.156624 -0.029062 -0.056055 0.136442 0.017588 0.074382 -0.331510 -0.248129 0.123265 0.244365 -0.023094 -0.096474 0.025961 0.059260 -0.089860 0.313274 0.060666 0.167239 -0.152866 -0.425134 0.051727 0.036677 -0.040550 0.266094 -0.231273 -0.044481 -0.027540 -0.165915 0.272571 -0.058738 0.028681 0.243801 -0.191280 -0.239629 -0.088427 -0.150536 -0.019974 -0.168835 0.298197 -0.198288 -0.069272 -0.164481 0.118931 -0.155788 0.039620 -0.026245 0.048612 0.051596 0.124124 -0.015164 0.215861 0.053228 -0.127888 -0.060656 0.054139 -0.007928 0.205314 -0.286468 -0.162863 -0.114315 0.076117 -0.115526 0.128144 -0.107652 0.163861 0.055446 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 1.094090 -0.775058 -0.308741 0.994267 0.353739 -0.725310 0.145721 0.516107 0.100025 -1.695123 -0.940073 -0.152450 0.075450 -0.731827 0.670910 0.517675 0.617431 0.297592 -1.978837 0.860693 0.390440 -0.136181 -0.802092 -0.024137 0.032329 -0.758069 -0.677133 0.585218 -0.109380 1.047864 -0.816074 0.572981 0.929420 -0.127132 1.014455 1.101711 -0.188620 -0.365154 0.792127 0.562210 2.137630 0.419891 0.024205 0.215766 0.812085 1.340058 -0.587444 2.194618 0.323922 -0.409157 1.650978 -1.167009 -0.365352 0.442788 -1.676280 0.488225 1.309312 0.385369 -1.224377 0.720075 -0.886436 0.436279 0.580711 -0.024587 2.037719 0.849284 0.703273 0.904780 1.740712 -0.346376 0.228440 0.274932 0.972166 -0.100927 0.270387 -0.799851 0.008547 -2.299362 0.181649 -1.137538 0.438931 -0.317662 1.595492 -1.119154 0.245725 0.964841 0.280964 1.384911 -0.966194 -0.093161 -1.393564 0.135027 0.114239 1.406257 -0.332751 0.357234 -0.162633 0.547409 -0.339161 0.561148 -0.308081 -1.242237 -1.670090 -2.765226 -1.675931 -0.490532 -0.318960 -0.435548 -2.104233 0.019493 1.084293 0.313037 -1.791798 0.102421 0.264315 0.127050 0.200080 0.849119 -1.242874 -0.599144 -0.296161 0.978878 0.219379 -0.178054 0.088079 -2.257521 0.468736 0.656620 0.587775 -0.344881 -0.773055 0.165513 0.334097 -0.001162 -0.421431 0.305181 0.278794 -0.973365 0.658625 -0.749635 1.026446 -1.793466 -0.484466 -1.495516 -0.984313 -0.184717 2.369779 1.080186 0.947517 0.733988 -0.903830 -0.020270 -1.914756 -2.032365 -0.111877 -0.945496 0.623956 -0.192261 -0.127209 -0.144007 -0.110684 -0.230003 0.009098 -1.159382 -0.519359 -0.826883 0.645016 -0.012009 -0.470643 -0.936534 -0.077784 1.425488 -0.429942 0.544867 -0.605667 -0.960271 -1.355854 -0.921319 0.962952 -0.360936 0.534245 -0.354237 0.221969 -1.594867 0.565083 -0.909405 -0.134366 -0.760583 -0.558212 -1.315775 0.096082 -0.332970 0.190251 -0.333909 -1.008695 0.571356 0.473835 1.057445 0.188417 0.439094 -0.222794 -1.671913 -1.683391 -0.249600 0.095255 1.603201 0.901417 0.149463 -0.189896 -0.475413 -1.195439 1.129444 -1.626269 0.334887 0.738064 -1.308871 1.129659 -0.915671 -0.750452 -1.021506 0.633473 -0.140777 -1.626076 1.745147 0.988326 -1.564463 -0.370375 -1.599130 0.901174 0.452182 1.695233 -0.123238 0.328975 0.359535 0.360599 -0.270944 -0.680014 0.739025 -0.327377 0.767384 -1.458993 -0.815921 1.093169 1.165200 -0.120149 0.016574 -0.225627 0.444641 0.048614 1.466856 0.215376 0.028631 -0.828597 -2.703284 0.224035 1.036552 0.152107 0.560396 -1.026368 -0.542545 -0.512121 0.050645 1.529382 1.121801 0.591337 1.076965 -1.196958 -1.465633 -0.734740 0.431965 -0.024787 -0.730065 0.528995 -0.878750 -0.133692 -0.250761 0.998420 0.194551 -0.780554 -1.650058 0.285692 0.733806 0.430449 -0.808308 1.230346 0.330010 -0.494973 -0.351291 0.065778 0.084676 0.684669 -0.393426 -0.716483 -0.556681 0.391606 -0.875451 1.136859 -0.155170 0.901974 0.390497 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.790800 -0.697631 -0.407861 1.194629 0.269517 -0.251970 0.156384 0.024776 0.124450 -1.576458 -0.479381 0.694061 0.092932 -0.130958 0.092664 0.570617 0.491846 0.082610 -1.292443 0.364742 0.165787 -0.176056 -0.580396 0.127169 0.032689 -0.673479 0.501916 0.565122 -0.013618 0.919292 -0.539552 0.606293 0.859361 -0.154635 0.568531 0.822539 0.200885 -0.074544 -0.191917 0.121237 1.575547 0.201479 -0.037185 0.395532 0.300920 1.203473 0.086701 1.840189 0.583272 -0.416721 0.910521 -0.101182 -0.391928 -0.040341 -1.361509 0.369606 0.679614 0.283413 -0.821925 0.500580 -0.453108 0.324859 0.481287 0.400929 1.525693 0.581904 0.909598 0.883253 1.385982 -0.639588 0.116701 0.425857 0.715448 0.248097 0.796415 -0.628510 -0.562849 -0.835104 0.035672 -0.617013 0.069057 -0.243504 1.221892 -0.879816 -0.308261 0.287931 0.204998 1.205232 -0.773485 0.224727 -1.237262 0.097741 0.149383 1.507657 0.008305 0.365513 -0.269884 0.451512 -0.163593 0.469354 0.063270 -1.105929 -0.542536 -1.770421 -1.152551 -0.678460 -0.104434 -0.034935 -1.659414 0.093191 0.201212 0.711537 -1.563008 -0.021348 0.233766 0.190525 1.259104 0.548339 -0.530475 -0.206754 0.123471 0.465253 0.258081 -0.208135 0.264723 -1.068509 0.431650 0.356942 0.401645 0.026500 -1.185921 0.001547 0.302792 0.040924 -0.004373 0.384193 0.437762 -0.796928 0.564298 -0.634914 0.821143 -1.454695 -0.623862 -0.766980 -0.967795 -0.354935 1.652582 0.794403 1.185921 0.144423 -0.700410 -0.216510 -1.633045 -2.054751 -0.126021 -0.387339 0.032936 0.303801 -0.200906 0.150664 -0.561662 -0.031782 0.605040 -0.771585 -0.533813 -0.437002 0.249294 0.060952 -0.236340 -0.586714 -0.157011 0.498274 0.141673 0.958237 -0.344041 -1.902728 -1.486825 -0.673420 0.808090 -0.427390 0.227695 -0.357604 -0.305314 -1.299895 0.260623 -0.725533 -0.043058 -0.381481 -0.582921 -1.198652 0.388312 -0.288293 -0.029212 0.006291 -1.005993 0.350104 0.235318 0.405531 0.277998 0.268445 -0.211922 -1.207586 -1.128962 0.207036 -0.216399 1.367583 0.495954 0.005571 -0.165133 -0.565753 -1.116416 0.827305 -1.446226 0.458871 0.668263 -0.688695 0.742566 -0.856324 -0.349356 -0.662104 0.578853 0.023538 -1.161752 1.584014 1.056038 -1.143370 -0.299146 -0.568903 0.655451 0.293467 1.131389 -0.655399 -0.249929 0.343831 0.411974 -0.147990 -0.237198 0.476230 -0.233673 0.292464 -1.184135 -0.644819 0.750878 0.836384 -0.210927 -0.225042 0.064259 -0.274815 -0.033466 1.174220 0.397834 0.326629 -0.740688 -2.281347 0.213994 -0.127068 -0.255674 0.461917 -1.003448 -0.295063 0.120675 -0.483626 1.209393 -0.029321 -0.025119 0.982370 -1.369259 -1.156003 -0.607782 -0.292852 -0.006836 -0.279296 0.690055 -0.675003 -0.041125 -0.253194 0.562961 -0.498439 -0.569023 -0.168879 0.378461 0.677224 0.060062 -0.334999 1.080320 0.234244 -0.238189 -0.365014 0.136860 -0.201020 0.455718 -1.041298 -0.395382 -0.209109 0.462730 -0.763099 0.698528 -0.165443 0.559938 0.212799 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 1.046611 -0.598327 -1.072639 2.741632 0.049491 0.207701 0.399419 -0.273558 -0.051441 -3.492481 -0.721607 1.923666 0.321466 0.865830 -0.588402 1.344197 0.684145 0.211098 -3.016317 -0.108807 0.821860 -0.122225 -0.298605 0.474403 0.234137 -1.102865 1.644141 0.983330 0.236411 2.149843 -0.856353 1.710819 2.093151 -0.334663 0.303559 1.438007 0.343693 0.249165 -1.065353 -0.468441 2.263830 0.130591 -0.378407 0.620937 -0.658690 2.599105 0.839061 2.792272 0.641848 -1.241751 0.614254 0.594716 -0.974448 -0.507829 -1.973788 0.509724 0.744742 1.424868 -0.959515 0.784428 -0.457694 0.596478 1.072256 0.816333 2.583953 1.218303 2.045168 2.080094 2.388524 -1.769842 0.605938 0.473050 0.249916 0.301432 1.656510 -1.192137 -1.328339 -0.487616 -0.037847 -2.122845 -0.652936 -0.061532 2.435287 -1.834493 -0.983051 -0.473051 0.541887 2.759969 -1.479733 1.114548 -2.547943 -0.040941 0.262442 3.252399 0.444192 0.453922 -0.664642 1.003997 -0.145105 0.508951 0.246546 -1.967668 -0.164064 -2.266734 -1.531194 -1.643875 0.183837 1.139398 -3.273089 0.174832 -0.505213 2.005990 -3.734807 -0.280602 0.369890 0.876823 2.961764 1.478576 -0.715603 0.098966 0.313245 0.257157 0.791429 -0.706135 1.076669 -0.850036 0.152035 0.394785 0.547372 0.849597 -3.632427 -0.358903 0.716760 -0.791365 0.749742 1.588677 1.543429 -0.609046 1.146905 -1.714023 1.570718 -2.812539 -1.276265 -0.294723 -2.299869 -1.236260 1.850450 2.070419 1.622786 -0.639511 -1.156641 -0.615926 -3.330231 -3.786131 -0.363802 0.170203 -0.229157 1.410964 -0.760721 0.823668 -1.979336 0.527303 1.791236 -1.048238 -1.395518 -0.543502 1.104607 0.588546 -0.154577 -0.724324 -0.527550 -0.266186 0.256322 2.704292 -0.497025 -3.796659 -3.970409 -1.100252 1.810841 -1.079539 -0.036325 -1.298501 -1.009306 -2.384170 0.195649 -1.434350 -0.431104 -0.044703 -1.011954 -2.732241 1.541043 -0.506714 -0.937125 0.668004 -2.109020 0.418863 0.934922 0.133744 0.741094 -0.007536 -0.343800 -1.483683 -1.379877 1.181981 -1.225966 2.008804 0.952994 -0.335740 -0.801250 -1.423611 -2.020738 1.857167 -1.742514 1.519938 0.840562 -0.183736 1.173642 -1.935595 0.083929 -0.936804 1.094407 0.336252 -2.681454 2.984436 1.957558 -1.714478 -0.141520 -0.245869 1.290419 0.450438 1.139138 -1.975962 -1.573115 0.626058 0.643651 -0.080272 -0.133451 0.475790 -0.639747 -0.237124 -1.951406 -0.697364 1.516194 1.065521 -0.592081 -0.257582 0.831457 -1.514094 0.433510 1.890553 1.178541 0.484214 -1.191038 -4.119127 0.506161 -1.356531 -0.618610 0.247997 -1.866351 -0.160756 1.196257 -1.623437 2.200636 -0.953992 -1.283442 2.055594 -3.254245 -2.094613 -1.396775 -0.979535 0.137976 0.225913 1.075220 -0.909763 0.286441 0.032612 0.675389 -1.389375 -1.737541 0.905882 1.119171 2.012229 -0.731175 -0.213385 2.312487 0.230372 -0.089510 -0.852234 0.339612 -0.852161 0.224906 -2.719108 -0.314341 0.553825 1.237756 -1.892955 0.884143 -0.397303 0.301682 0.375440 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 1.778748 -0.456626 -0.414397 1.553344 0.213255 -1.550321 0.663243 1.441965 0.128148 -2.797206 -1.322274 0.168109 0.201928 -1.267389 0.559899 0.653510 0.721055 1.211074 -3.532728 1.251446 0.900662 0.493475 -1.320334 -0.821333 0.021982 -0.774352 -1.527114 0.984638 -0.024966 2.064123 -1.224607 0.269958 1.682009 -0.264174 1.253573 2.163115 0.403020 -0.089301 1.427052 0.656671 3.264993 1.302407 -0.483364 0.628207 1.298099 2.381751 -0.574825 2.667289 -1.157272 -0.891513 1.397457 -1.652369 -1.024227 0.155507 -2.181125 0.897049 2.783375 1.767062 -1.946152 1.784050 -1.103076 0.547110 1.196995 -0.018625 2.709139 1.775302 0.561792 1.601656 3.306743 -0.856271 0.448071 0.095538 1.514372 -0.640919 0.657425 -1.178266 -0.426148 -3.858264 0.298672 -3.163090 0.429453 -0.009349 3.196451 -2.292016 1.211005 1.912881 0.831380 2.023940 -1.798634 -0.698473 -2.086375 0.061732 -0.483575 3.680515 -0.365158 0.682255 -0.235860 1.404505 0.150844 0.850167 -0.454148 -1.917289 -2.456492 -4.588223 -2.083388 -0.949661 -1.009883 -0.408246 -2.969501 -0.820298 2.288386 1.113401 -3.614033 0.215273 0.802504 0.271769 0.164494 0.681260 -1.936147 0.107481 -1.215519 0.599673 0.343531 -0.997487 -0.176169 -2.129615 0.085061 0.951870 0.673616 -0.111370 -2.478105 0.321781 0.478993 -0.640130 -0.645664 0.662070 0.079425 -1.824791 1.039561 -2.192662 1.822026 -3.021813 -0.388311 -1.456262 -2.299922 -0.403151 2.580054 1.238722 0.773868 0.388528 -1.212063 -0.412279 -2.984770 -3.659009 0.776188 -0.851048 1.296583 -0.473783 -0.331156 -0.768057 -0.709888 -0.599383 0.375349 -1.686135 -0.548949 -1.036331 3.233816 -0.139880 -0.831561 -1.460800 -0.015458 2.524598 0.063122 0.589208 -1.483318 -1.012086 -2.456076 -1.327046 1.838840 -0.412064 0.435966 -0.584929 0.049460 -2.484650 1.096082 -1.525619 0.586202 -1.179182 -0.515434 -2.478564 0.418137 -0.572868 0.009938 -0.339223 -1.548271 0.722638 0.699666 0.991539 -0.126857 0.268848 0.538588 -2.628408 -2.522147 -0.106669 0.274708 2.311287 1.626077 0.674667 -0.495270 -0.388559 -1.978169 2.042980 -1.995916 0.620496 0.658739 -1.568316 2.528110 -1.360413 -1.157361 -2.198188 1.188799 0.080591 -1.671197 3.344983 1.688248 -2.312585 -0.528593 -1.960410 1.133246 1.130531 2.704739 -0.951698 -0.584064 1.110844 -0.482590 -0.414385 -1.219683 1.050372 -0.596379 1.790611 -2.234893 -0.763933 1.692778 1.841085 -0.335090 0.775274 -0.240725 -0.015769 -0.270223 2.547932 0.573130 0.081781 -1.718543 -3.571813 0.813569 0.237451 0.661032 0.012957 -1.111684 -0.989293 -0.177206 0.732098 2.339914 2.439692 -0.046512 1.826014 -2.680805 -2.630309 -0.858387 0.885094 0.644966 -1.383917 0.657729 -1.264395 0.270971 -0.101996 1.629435 0.713280 -1.526605 -2.498774 0.393596 1.528496 0.404578 -1.917132 2.482215 -0.142942 -0.841657 -0.142795 -0.243016 0.591324 0.677391 -0.388476 -0.911997 -0.994083 1.151923 -1.683785 2.625687 -0.222073 0.984194 1.306617 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = 0.607201 -0.524030 -0.250858 1.586221 0.102856 -0.638772 0.453846 0.426731 0.178340 -2.255519 -0.450394 0.119455 -0.040701 -0.171055 -0.045239 0.656599 0.447102 0.589653 -2.143904 0.472881 0.846373 0.417612 -0.210840 -0.265191 0.333963 -0.551815 -0.178554 0.747237 0.135911 1.466559 -0.831225 0.504887 1.400482 -0.097625 0.409131 1.356012 0.528039 0.419497 0.481203 0.215096 1.727207 0.478393 -0.693781 0.268542 0.313599 1.797442 0.316622 1.467272 -0.613746 -0.851147 0.310126 -0.755473 -0.593147 -0.323872 -1.284185 0.733834 1.523558 1.784906 -1.172176 0.937548 -0.554341 0.439156 0.854611 0.166053 1.753381 1.184155 0.718464 1.378414 2.204930 -0.914652 0.345402 0.132067 0.804300 -0.247321 0.623860 -0.827937 -0.541342 -2.288410 -0.082177 -1.966803 -0.096750 0.227032 1.620065 -1.554497 0.367457 0.613255 0.261342 1.682161 -1.195523 0.068768 -1.715735 0.075264 0.101687 2.680630 0.071801 0.176334 -0.199114 1.211983 0.159802 0.524759 0.055085 -1.120202 -1.113884 -2.519471 -1.127750 -0.907722 -0.196233 0.252062 -2.337426 -0.387533 1.037700 0.841610 -2.817146 0.032384 0.515269 0.536864 0.705876 0.029109 -0.643042 0.349996 -0.610359 -0.016999 0.184826 -0.795171 0.199881 -0.993667 -0.092094 0.478193 0.420741 0.305596 -2.012047 0.128504 0.205413 -0.521975 0.034371 0.936009 0.425732 -0.858791 0.762518 -1.675042 1.287688 -2.084690 -0.378684 -0.335186 -1.586167 -0.568954 1.584610 0.848773 0.430591 -0.336286 -0.976008 -0.640791 -2.200153 -2.651807 0.356979 -0.035781 0.616447 0.446939 -0.476269 -0.109311 -0.914181 -0.151350 0.685208 -1.004535 -0.575856 -0.595090 1.524184 0.116064 -0.198293 -0.920557 -0.207622 1.369293 -0.175819 0.836259 -0.844215 -0.978525 -2.267567 -0.891831 1.192377 -0.480069 0.144272 -0.697132 -0.208187 -1.965180 0.880481 -1.076394 0.209633 -0.457059 -0.459887 -1.901716 0.809746 -0.503332 -0.023000 0.190842 -1.143166 0.388649 0.030620 0.238325 0.201202 0.047567 0.289596 -1.478623 -1.433312 0.406573 -0.173886 1.270197 0.565876 0.133628 -0.346650 -0.709841 -1.241255 1.638431 -0.929679 0.709257 0.543058 -0.396529 1.570101 -0.964138 -0.296515 -1.324241 0.848316 0.304374 -0.907084 2.063708 1.231098 -1.416178 -0.250164 -0.778961 0.820553 0.716529 1.360681 -1.102644 -0.918272 0.742957 -0.178998 -0.196641 -0.577169 0.476849 -0.448686 0.946836 -1.482191 -0.388971 0.927362 0.991059 -0.400437 0.523718 0.205116 -0.646838 -0.271936 1.605039 0.659360 0.298898 -1.163641 -2.237112 0.390000 -0.351347 0.433874 -0.084705 -1.065564 -0.321845 0.460233 0.263400 1.631916 1.315379 -0.644915 1.413920 -2.265037 -1.652134 -0.377135 0.065040 0.353150 -0.574847 0.593664 -0.659776 0.176274 0.141706 0.885497 -0.081339 -1.210958 -0.738085 0.436738 1.430934 -0.347168 -1.006094 1.695437 -0.271964 -0.474785 -0.270508 0.160222 0.013661 0.225180 -0.761072 -0.467582 -0.212700 0.909526 -1.409107 1.608465 -0.288938 0.294348 0.639297 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.697773 -0.693559 -0.231999 0.775563 0.311543 -0.352212 0.091800 0.095385 0.161686 -1.053554 -0.402072 0.371193 0.034366 -0.364949 0.252413 0.362133 0.426020 0.048469 -0.827016 0.463804 0.001698 -0.181934 -0.624811 0.038746 -0.016966 -0.543488 0.207706 0.442148 -0.073080 0.587188 -0.441937 0.316956 0.528877 -0.105243 0.609383 0.641925 0.158576 -0.149253 0.025385 0.257910 1.347338 0.210433 0.046195 0.325613 0.519190 0.820382 -0.097333 1.538081 0.545883 -0.202045 0.945204 -0.264151 -0.236447 0.073470 -1.160101 0.321193 0.636799 -0.001873 -0.756026 0.412433 -0.433883 0.246676 0.320203 0.285195 1.210683 0.405893 0.600677 0.560681 1.089932 -0.342743 -0.005384 0.397496 0.798558 0.225372 0.558136 -0.468099 -0.356617 -0.885097 0.051890 -0.230933 0.239574 -0.277438 0.881801 -0.615501 -0.133981 0.459050 0.115945 0.783885 -0.573046 0.002180 -0.873208 0.127115 0.116274 1.028612 -0.096641 0.329675 -0.164347 0.300855 -0.161487 0.441077 0.016753 -0.854874 -0.611668 -1.580489 -1.015574 -0.419621 -0.169442 -0.315377 -1.205755 0.069870 0.362706 0.372407 -0.979256 0.041727 0.191746 0.018193 0.800102 0.303149 -0.464825 -0.271856 0.072987 0.496586 0.119754 -0.080290 0.059267 -1.078202 0.481492 0.333581 0.350605 -0.172103 -0.551322 0.087993 0.191328 0.239036 -0.185185 0.079750 0.154891 -0.810142 0.401900 -0.350532 0.608399 -1.070625 -0.442331 -0.849642 -0.609385 -0.129219 1.538991 0.456383 1.033636 0.326790 -0.562898 -0.111990 -1.160399 -1.557030 -0.063913 -0.505656 0.094521 0.025930 -0.058515 -0.016883 -0.198953 -0.164692 0.296151 -0.674325 -0.305652 -0.393962 0.034047 -0.068108 -0.246510 -0.530219 -0.061801 0.661814 0.108490 0.500854 -0.293563 -1.372076 -0.831292 -0.544044 0.535106 -0.253778 0.281952 -0.117485 -0.124143 -0.987674 0.265792 -0.526396 0.051795 -0.447048 -0.456637 -0.782644 0.096125 -0.224340 0.189855 -0.152771 -0.701027 0.319597 0.058000 0.454539 0.155735 0.323942 -0.171795 -1.093019 -1.023584 -0.035232 0.034553 1.158987 0.366427 0.087263 -0.005860 -0.337237 -0.854723 0.547046 -1.317268 0.185860 0.600180 -0.782338 0.609405 -0.563045 -0.439370 -0.569692 0.431966 -0.052455 -0.750553 1.184552 0.797432 -0.960569 -0.325011 -0.623676 0.476840 0.244056 1.084274 -0.312248 0.077632 0.262344 0.339892 -0.158322 -0.252609 0.457287 -0.126868 0.407867 -0.952624 -0.606415 0.537168 0.747936 -0.111013 -0.208231 -0.122439 0.033605 -0.144201 0.955332 0.194551 0.275744 -0.602976 -1.749026 0.135314 0.173085 -0.158343 0.494781 -0.756214 -0.315494 -0.142291 -0.190727 0.923119 0.193773 0.277883 0.685501 -0.862091 -0.884497 -0.394113 -0.116334 -0.041317 -0.389375 0.570013 -0.591661 -0.118096 -0.311659 0.513460 -0.264677 -0.265818 -0.420067 0.185553 0.329733 0.247557 -0.350786 0.741387 0.225803 -0.264344 -0.233481 0.082725 -0.036705 0.492885 -0.596972 -0.399017 -0.383849 0.258215 -0.461410 0.626039 -0.103179 0.599522 0.165253 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.171053 -0.211986 -0.026079 0.337212 0.121415 -0.164700 0.054502 0.022705 -0.064883 -0.492852 -0.195791 -0.101125 -0.008355 -0.163171 0.180089 0.123003 0.186461 0.100191 -0.427411 0.189356 0.089182 -0.073733 -0.196848 0.009897 -0.015373 -0.267986 -0.068543 0.258588 -0.044105 0.307732 -0.235775 0.170866 0.261072 0.032010 0.318099 0.317031 0.085173 -0.080298 0.088146 0.199552 0.627476 0.040716 -0.019146 0.010079 0.235357 0.409308 -0.020996 0.366801 0.076400 -0.109235 0.332438 -0.232373 -0.037699 0.040894 -0.518912 0.093722 0.261685 0.155275 -0.365249 0.219706 -0.299567 0.115721 0.143610 0.045183 0.590799 0.095399 0.230142 0.262095 0.448668 -0.168672 0.014768 0.113342 0.270303 -0.030406 0.071166 -0.042955 -0.034063 -0.775783 -0.003152 -0.291747 0.074382 0.018918 0.335662 -0.263573 -0.014185 0.304587 -0.002458 0.361210 -0.279398 -0.046187 -0.452908 0.020833 0.080666 0.352111 0.043186 0.031708 -0.008506 0.187876 -0.020768 0.206652 -0.059520 -0.377640 -0.376623 -0.832867 -0.483868 -0.165991 -0.072475 -0.172491 -0.525665 -0.033435 0.428507 0.256902 -0.472293 0.050915 0.092861 0.063250 -0.011348 -0.098082 -0.263871 -0.082689 -0.048770 0.251455 0.161120 -0.056298 0.058845 -0.503534 0.210906 0.122281 0.205134 -0.080218 -0.125540 -0.006928 0.125272 0.012594 -0.127438 0.034547 0.041995 -0.225178 0.194653 -0.230619 0.355898 -0.429793 0.028152 -0.381697 -0.268238 -0.048989 0.650020 0.307357 0.240798 0.168489 -0.316434 0.062641 -0.500446 -0.722022 0.034454 -0.153017 0.124432 -0.023300 -0.072452 0.001257 -0.073114 -0.055846 0.143087 -0.323158 -0.153862 -0.155225 -0.023574 0.039687 -0.170008 -0.278374 0.025865 0.403294 -0.028376 0.185285 -0.219848 -0.266709 -0.352648 -0.286896 0.266245 -0.119800 0.094066 -0.057690 -0.031540 -0.485327 0.253032 -0.266680 0.012371 -0.221413 -0.176230 -0.384106 0.012923 -0.126763 -0.003892 -0.050722 -0.291131 0.145107 0.024468 0.039081 0.068915 0.086191 -0.015852 -0.343115 -0.429043 -0.035149 0.019257 0.368836 0.212723 0.075946 -0.129772 -0.148294 -0.311064 0.331382 -0.369657 0.099426 0.239736 -0.439095 0.301552 -0.241867 -0.217374 -0.125548 0.211392 0.016293 -0.385152 0.487099 0.395059 -0.449621 -0.161919 -0.342041 0.215830 0.127263 0.516682 -0.112192 0.128444 0.103234 0.141206 -0.056449 -0.125494 0.199874 -0.047594 0.163711 -0.450524 -0.284088 0.271634 0.350931 -0.013632 0.000955 -0.036642 0.124263 -0.082466 0.437752 0.056769 0.102704 -0.210852 -0.607339 0.097113 0.141679 0.039261 0.223185 -0.252868 -0.120399 -0.126280 -0.067484 0.428149 0.262592 -0.013644 0.344192 -0.299779 -0.405530 -0.236401 0.009812 -0.020641 -0.267100 0.276162 -0.257069 -0.036452 -0.130125 0.244553 -0.009467 -0.107602 -0.335701 0.064548 0.139189 0.161897 -0.198457 0.362705 0.047138 -0.176638 -0.125983 0.050952 -0.000130 0.283491 -0.195970 -0.260922 -0.174308 0.157867 -0.220154 0.258894 -0.107512 0.238893 0.162154 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.748884 -0.720611 -0.360730 1.141303 0.297193 -0.260308 0.139135 0.053913 0.183058 -1.464761 -0.464002 0.648157 0.045242 -0.213919 0.151442 0.496501 0.514550 0.060957 -1.144952 0.393499 0.115020 -0.184245 -0.603326 0.112685 0.035095 -0.649009 0.464332 0.556002 -0.024829 0.831891 -0.501317 0.543522 0.774173 -0.128655 0.582480 0.775727 0.156494 -0.079868 -0.137687 0.122712 1.526462 0.216767 -0.043665 0.431638 0.385022 1.123364 0.019128 1.744995 0.634521 -0.355031 0.910122 -0.070424 -0.337327 -0.038783 -1.339355 0.374414 0.665903 0.175891 -0.815820 0.472190 -0.490329 0.306120 0.439536 0.351701 1.458228 0.564750 0.856169 0.849709 1.330652 -0.572976 0.072094 0.445628 0.788225 0.307913 0.721825 -0.551231 -0.541362 -0.860417 -0.018063 -0.478168 0.121262 -0.299501 1.167529 -0.805767 -0.284442 0.289843 0.170198 1.105358 -0.735063 0.175532 -1.166683 0.109948 0.159531 1.352746 -0.004573 0.363148 -0.245778 0.415622 -0.191436 0.477762 0.062633 -1.042611 -0.544321 -1.755149 -1.126077 -0.624691 -0.079561 -0.126353 -1.558741 0.139488 0.257159 0.618205 -1.417630 -0.039491 0.210014 0.127759 1.143099 0.469975 -0.509037 -0.241482 0.140706 0.473174 0.205328 -0.178045 0.213659 -1.089587 0.416233 0.335981 0.408256 0.000178 -0.990034 0.015933 0.259678 0.140887 -0.038428 0.320251 0.366841 -0.809914 0.526961 -0.547696 0.798915 -1.373809 -0.611868 -0.807436 -0.822154 -0.309740 1.688626 0.736619 1.218968 0.198338 -0.648748 -0.226394 -1.531103 -1.912921 -0.101441 -0.422377 0.043207 0.240896 -0.159351 0.121574 -0.481133 -0.054400 0.523218 -0.758034 -0.462882 -0.418398 0.159827 0.022231 -0.216545 -0.616525 -0.142460 0.558058 0.108512 0.827309 -0.325047 -1.802893 -1.324824 -0.630130 0.730759 -0.400668 0.240929 -0.286400 -0.263434 -1.178127 0.262758 -0.683920 -0.028074 -0.406821 -0.575492 -1.104372 0.341600 -0.278912 0.052149 -0.022280 -0.928209 0.353775 0.180988 0.461331 0.252784 0.324656 -0.220951 -1.193522 -1.106573 0.136426 -0.154785 1.343912 0.476120 -0.003441 -0.136783 -0.528356 -1.068479 0.790179 -1.437241 0.400693 0.673613 -0.735720 0.702135 -0.782076 -0.393906 -0.688178 0.542940 0.009852 -1.104620 1.434392 0.998311 -1.121001 -0.319052 -0.608433 0.619364 0.275029 1.130558 -0.580512 -0.167323 0.328324 0.411919 -0.148717 -0.249086 0.466426 -0.182387 0.319997 -1.154111 -0.644307 0.732548 0.800624 -0.196049 -0.234757 0.023158 -0.194427 -0.036570 1.130804 0.399710 0.328212 -0.750510 -2.160941 0.175612 -0.013384 -0.228476 0.490008 -0.976244 -0.328725 0.044898 -0.419942 1.142036 -0.013651 0.055920 0.921792 -1.238506 -1.082532 -0.537796 -0.261181 -0.012945 -0.323575 0.718509 -0.654493 -0.080896 -0.276548 0.557042 -0.470320 -0.489549 -0.221393 0.339873 0.598027 0.113749 -0.332496 0.986276 0.251066 -0.295984 -0.337161 0.139789 -0.220923 0.452956 -0.998085 -0.387625 -0.256534 0.406830 -0.702127 0.691418 -0.114710 0.597905 0.173771 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.837033 -0.713226 -0.836987 2.475006 0.187872 0.166007 0.313174 -0.127873 0.241603 -2.933994 -0.644712 1.694148 0.083019 0.451025 -0.294508 0.973616 0.797668 0.102832 -2.278860 0.034980 0.568023 -0.163170 -0.413254 0.401984 0.246168 -0.980514 1.456220 0.937727 0.180352 1.712840 -0.665180 1.396960 1.667212 -0.204766 0.373305 1.203946 0.121735 0.222546 -0.794206 -0.461066 2.018403 0.207032 -0.410803 0.801470 -0.238184 2.198560 0.501196 2.316301 0.898093 -0.933299 0.612258 0.748506 -0.701441 -0.500038 -1.863019 0.533765 0.676190 0.887261 -0.928990 0.642477 -0.643797 0.502784 0.863500 0.570190 2.246629 1.132530 1.778025 1.912373 2.111876 -1.436787 0.382900 0.571903 0.613799 0.600515 1.283560 -0.805742 -1.220908 -0.614184 -0.306523 -1.428617 -0.391913 -0.341513 2.163474 -1.464248 -0.863953 -0.463494 0.367887 2.260602 -1.287622 0.868577 -2.195047 0.020095 0.313181 2.477848 0.379806 0.442096 -0.544111 0.824546 -0.284318 0.550988 0.243364 -1.651080 -0.172989 -2.190373 -1.398823 -1.375030 0.308204 0.682305 -2.769724 0.406317 -0.225478 1.539332 -3.007916 -0.371316 0.251129 0.562995 2.381740 1.086754 -0.608415 -0.074677 0.399416 0.296763 0.527663 -0.555684 0.821351 -0.955430 0.074948 0.289980 0.580428 0.717984 -2.652994 -0.286969 0.501190 -0.291551 0.579465 1.268963 1.188828 -0.673977 0.960223 -1.277930 1.459580 -2.408105 -1.216294 -0.497003 -1.571663 -1.010288 2.030670 1.781499 1.788023 -0.369934 -0.898331 -0.665348 -2.820521 -3.076979 -0.240903 -0.004983 -0.177803 1.096437 -0.552944 0.678216 -1.576691 0.414214 1.382127 -0.980483 -1.040863 -0.450480 0.657270 0.394938 -0.055600 -0.873376 -0.454799 0.032734 0.090517 2.049652 -0.402058 -3.297480 -3.160405 -0.883803 1.424185 -0.945931 0.029844 -0.942480 -0.799909 -1.775330 0.206325 -1.226286 -0.356182 -0.171403 -0.974805 -2.260840 1.307479 -0.459811 -0.530315 0.525145 -1.720098 0.437218 0.663273 0.412746 0.615027 0.273519 -0.388942 -1.413368 -1.267932 0.828933 -0.917893 1.890447 0.853824 -0.380799 -0.659499 -1.236628 -1.781050 1.671538 -1.697589 1.229047 0.867314 -0.418857 0.971488 -1.564358 -0.138821 -1.067175 0.914838 0.267822 -2.395796 2.236327 1.668918 -1.602632 -0.241049 -0.443516 1.109986 0.358245 1.134980 -1.601529 -1.160084 0.548519 0.643377 -0.083909 -0.192893 0.426767 -0.383317 -0.099461 -1.801287 -0.694808 1.424540 0.886720 -0.517693 -0.306153 0.625952 -1.112154 0.417989 1.673469 1.187922 0.492127 -1.240147 -3.517100 0.314252 -0.788108 -0.482619 0.388451 -1.730331 -0.329066 0.817370 -1.305015 1.863850 -0.875639 -0.878249 1.752708 -2.600483 -1.727257 -1.046842 -0.821179 0.107429 0.004518 1.217490 -0.807212 0.087587 -0.084157 0.645792 -1.248780 -1.340170 0.643312 0.926231 1.616248 -0.462739 -0.200870 1.842267 0.314486 -0.378488 -0.712968 0.354256 -0.951674 0.211095 -2.503040 -0.275558 0.316700 0.958253 -1.588094 0.848594 -0.143638 0.491520 0.180302 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = 1.893496 -0.647996 -0.857842 2.577438 0.422633 0.325730 0.374380 0.485794 0.536173 -3.422593 -1.668633 2.956686 0.163707 0.126849 -0.082851 0.909168 1.458538 0.639923 -4.328192 0.099959 0.280538 -0.465729 -0.761645 -0.320766 0.075995 -1.298689 2.054783 1.340696 0.364371 2.298425 -1.038940 1.386813 1.771447 0.291893 1.590496 1.676837 -0.652795 -0.666861 -1.396881 -1.305991 3.284232 1.373555 -0.254183 1.483037 0.261412 2.830738 0.925560 1.833875 2.056316 -0.788571 0.393662 0.930688 -1.506447 -0.421889 -2.946594 0.152590 0.604721 0.035862 -1.268635 1.121069 -0.528646 0.774996 0.880271 0.136867 2.875831 0.013725 2.196846 1.882540 2.112753 -1.909576 0.429602 0.450798 1.354429 0.984592 1.724400 -1.022077 -1.874255 -1.000698 -0.061042 -3.066860 -0.046311 -0.656901 2.825218 -1.793148 -0.477830 -0.070383 0.261041 2.457869 -1.424982 -0.002869 -2.630934 0.028068 -0.037486 2.833963 0.665496 0.697068 -0.129622 0.830580 -0.301011 0.805581 0.546022 -2.759476 0.238011 -4.184605 -1.114182 -1.970185 0.292583 0.278195 -2.052106 0.671499 -0.086324 3.060265 -3.146864 -0.512458 0.459027 -0.044875 1.191667 -0.408120 -0.288796 -0.068835 0.056271 1.350118 1.216258 -1.511610 0.535068 -0.113345 0.252607 0.397372 1.217702 0.915594 -2.237456 -0.818627 1.362320 0.493602 0.158701 1.139344 1.135877 -0.868119 1.174102 -1.618066 2.135816 -2.267989 -0.574182 -1.208647 -0.922057 -1.367694 2.290626 2.167908 2.119890 0.366345 0.123306 0.108286 -2.904762 -4.242063 0.631857 0.046900 -0.241021 0.587508 -0.342212 0.872368 -2.074903 0.225660 1.267663 -1.427709 -1.396636 -0.304569 0.669681 0.402579 -0.751895 -0.736099 -0.023029 0.319413 0.644627 2.274635 -1.052822 -4.546707 -2.991905 -1.288824 2.170590 -1.517366 -0.094281 -0.635828 -0.985195 -1.014498 0.039580 -1.853229 0.201278 -0.509293 -1.223771 -2.815213 0.749281 -0.660703 -0.011132 0.806791 -2.286278 0.762247 1.350598 0.723588 0.051991 0.702336 0.138772 -1.754258 -1.223016 0.516118 -1.252476 2.743307 1.382549 -0.434135 -1.750140 -1.016356 -1.923826 1.846313 -2.276279 1.689301 0.206075 -1.572282 1.004307 -1.643276 -0.197471 -0.883079 1.321221 0.422911 -3.550070 3.019099 2.769639 -2.285732 -0.366545 -0.987155 1.156741 0.290642 2.096515 -2.141372 -1.382842 0.438386 0.141142 -0.005753 -0.402804 0.818234 0.023599 -0.577325 -2.586851 -1.107179 2.130032 1.016077 -0.154210 -0.051670 1.042835 -0.390893 0.736536 2.555334 1.036299 0.971704 -2.331120 -5.155795 0.854156 0.589608 -0.266039 0.911202 -1.483072 -1.010987 0.222211 -1.746298 2.152833 -0.448439 -1.167971 2.218573 -2.498207 -2.190727 -2.248951 -1.078218 0.421328 -0.259942 1.658934 -1.118165 0.114440 -0.984618 0.882216 -1.206098 -0.919892 0.583887 1.471315 1.708634 0.820705 -0.232972 2.403561 0.548744 -0.979750 -0.622067 -0.274055 -1.415984 0.740693 -3.035441 -0.625691 0.208073 1.148359 -1.742475 0.501710 0.238248 1.348915 0.009509 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = 0.768546 -0.881404 -0.152072 0.841114 0.362381 -0.344916 0.131503 0.131154 0.257002 -1.163476 -0.411104 0.377886 0.007656 -0.362975 0.268588 0.332754 0.500399 0.030654 -0.986235 0.473346 -0.008344 -0.167687 -0.609564 0.037455 -0.006185 -0.594903 0.302528 0.535794 -0.055471 0.646840 -0.481975 0.284123 0.588135 -0.111133 0.649551 0.731322 0.260955 -0.151009 -0.034985 0.266792 1.496706 0.237776 0.013093 0.397366 0.571157 0.914563 -0.022719 1.730309 0.774525 -0.233383 1.047658 -0.398623 -0.283328 0.010549 -1.284517 0.349648 0.755358 0.062240 -0.848759 0.474272 -0.418008 0.260927 0.340853 0.312740 1.270470 0.427318 0.656351 0.582595 1.194469 -0.438015 -0.047176 0.456742 0.909828 0.325100 0.601390 -0.633192 -0.406085 -1.126377 0.080793 -0.226752 0.223859 -0.339737 0.820795 -0.664841 -0.109036 0.541413 0.022610 0.811987 -0.597713 -0.005760 -0.981054 0.140916 0.229285 1.146143 -0.137461 0.316423 -0.088752 0.326320 -0.148577 0.525321 0.131699 -0.948236 -0.657843 -1.751675 -1.070542 -0.476262 -0.162392 -0.349121 -1.256498 0.086075 0.369198 0.278593 -1.040913 0.023009 0.231335 0.054527 0.875186 0.230076 -0.395891 -0.315198 0.107477 0.533678 0.164537 -0.184944 0.067754 -1.145766 0.542544 0.404297 0.372207 -0.204414 -0.493502 0.063620 0.199891 0.368577 -0.211574 0.039923 0.128755 -0.893717 0.445881 -0.407300 0.696468 -1.138958 -0.486517 -0.890435 -0.558118 -0.161417 1.798312 0.371960 1.130885 0.380804 -0.665449 -0.111684 -1.181012 -1.729666 -0.050177 -0.499924 0.127161 0.062136 -0.077827 0.003035 -0.216451 -0.221221 0.232641 -0.705350 -0.330485 -0.394031 -0.187722 -0.091214 -0.250608 -0.572540 0.019905 0.788461 0.113972 0.550734 -0.335795 -1.569861 -0.840936 -0.613913 0.595084 -0.284636 0.285272 -0.080328 -0.154120 -1.088822 0.319004 -0.585310 0.071302 -0.488301 -0.586059 -0.873124 0.144912 -0.291383 0.347627 -0.081418 -0.778952 0.331630 -0.082340 0.608577 0.172303 0.363030 -0.156835 -1.287471 -1.151792 -0.104453 0.045098 1.343647 0.240895 0.092793 0.042529 -0.382408 -0.866554 0.594543 -1.457648 0.194414 0.633723 -0.872684 0.661971 -0.558691 -0.433336 -0.676941 0.489192 0.032011 -0.701938 1.337915 0.889065 -1.043362 -0.398040 -0.654697 0.469314 0.280121 1.200232 -0.370626 0.010383 0.319829 0.370695 -0.166512 -0.326565 0.490337 -0.081665 0.435807 -1.073021 -0.705542 0.542763 0.818615 -0.118927 -0.212528 -0.051513 0.078022 -0.254848 1.108901 0.175772 0.350011 -0.664801 -1.946758 0.197826 0.391019 -0.135280 0.569480 -0.928083 -0.350414 -0.110604 -0.096348 0.996309 0.377991 0.370203 0.773370 -0.923179 -0.957192 -0.423413 -0.190132 -0.018675 -0.412017 0.601961 -0.656150 -0.108076 -0.372118 0.516521 -0.299505 -0.214052 -0.441969 0.201174 0.332218 0.271179 -0.353800 0.824007 0.222452 -0.322721 -0.227386 0.091209 -0.055098 0.564290 -0.550958 -0.401521 -0.412791 0.288946 -0.488365 0.660815 -0.115288 0.634229 0.134594 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = 0.726830 -0.676568 -0.243261 0.772622 0.300235 -0.386168 0.094492 0.144496 0.153258 -1.084978 -0.448561 0.314289 0.042201 -0.396807 0.286162 0.370491 0.428502 0.072190 -0.929385 0.495165 0.042893 -0.170932 -0.633102 0.028503 -0.012281 -0.545514 0.101411 0.438885 -0.076329 0.617088 -0.464135 0.333655 0.554250 -0.110268 0.630961 0.670519 0.106574 -0.165986 0.113521 0.281207 1.383989 0.235331 0.040919 0.304591 0.532559 0.847915 -0.153788 1.570895 0.493333 -0.217575 0.993925 -0.344970 -0.247779 0.113131 -1.173045 0.328136 0.694569 0.035194 -0.779116 0.432998 -0.469166 0.258089 0.340795 0.247719 1.261060 0.448815 0.592930 0.580691 1.127113 -0.327310 0.024508 0.368664 0.790066 0.178553 0.514127 -0.493831 -0.311666 -0.988926 0.068531 -0.324525 0.253603 -0.275066 0.940258 -0.653223 -0.086579 0.492314 0.141278 0.825321 -0.601018 -0.007736 -0.894661 0.122611 0.102826 1.047772 -0.124626 0.330366 -0.162944 0.318549 -0.177270 0.435238 -0.023218 -0.869000 -0.704710 -1.650596 -1.050906 -0.413320 -0.184682 -0.313578 -1.266126 0.060501 0.420733 0.349389 -1.038198 0.047599 0.193054 0.024742 0.725064 0.372308 -0.539410 -0.295837 0.027627 0.530021 0.123201 -0.085793 0.058747 -1.169406 0.462198 0.360674 0.359831 -0.181430 -0.575696 0.100412 0.202157 0.199266 -0.202524 0.107192 0.164982 -0.805903 0.414801 -0.383925 0.630362 -1.121051 -0.440882 -0.891685 -0.636601 -0.130201 1.566405 0.512659 0.992083 0.355564 -0.574397 -0.101117 -1.210337 -1.554905 -0.069471 -0.540374 0.146706 -0.004424 -0.061952 -0.034687 -0.183690 -0.163594 0.255702 -0.704187 -0.317317 -0.430601 0.125051 -0.058551 -0.261979 -0.550417 -0.068252 0.714669 0.051267 0.491305 -0.314290 -1.291643 -0.867139 -0.561665 0.564328 -0.254197 0.299180 -0.142682 -0.082910 -1.019946 0.282346 -0.548717 0.031653 -0.465967 -0.445447 -0.813373 0.093418 -0.224101 0.183413 -0.173966 -0.710589 0.334936 0.111796 0.510365 0.152320 0.327266 -0.171387 -1.121542 -1.059917 -0.051515 0.040193 1.174902 0.419476 0.090410 -0.018691 -0.336688 -0.870044 0.589655 -1.311194 0.196718 0.593756 -0.809328 0.649083 -0.585101 -0.461447 -0.607065 0.438023 -0.066237 -0.818207 1.210275 0.788649 -0.992396 -0.313952 -0.706745 0.508481 0.259035 1.110013 -0.281361 0.096232 0.263897 0.326976 -0.166330 -0.287566 0.471853 -0.149045 0.435879 -0.971295 -0.602017 0.583125 0.765970 -0.109342 -0.178015 -0.137427 0.067169 -0.113526 0.975157 0.192295 0.235040 -0.610587 -1.801554 0.139023 0.246833 -0.124998 0.476911 -0.757135 -0.332079 -0.177085 -0.158164 0.957343 0.282556 0.301324 0.701681 -0.877910 -0.920409 -0.420441 -0.046951 -0.037744 -0.408616 0.541056 -0.601379 -0.113141 -0.290388 0.552023 -0.204949 -0.321212 -0.538939 0.191760 0.365246 0.254052 -0.395008 0.769949 0.230014 -0.274870 -0.240270 0.075616 -0.023540 0.492487 -0.556764 -0.417074 -0.390380 0.266000 -0.492845 0.664935 -0.099548 0.614629 0.185743 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.939384 -0.667740 -0.307796 0.868062 0.295660 -0.605945 0.120693 0.397761 0.100623 -1.415027 -0.759409 0.000591 0.076084 -0.610723 0.522233 0.457303 0.515672 0.227328 -1.575627 0.718238 0.277059 -0.139562 -0.737361 -0.011366 0.010691 -0.643543 -0.462864 0.493989 -0.099591 0.868756 -0.661623 0.480276 0.770762 -0.128207 0.845251 0.917442 -0.129767 -0.285759 0.591432 0.452668 1.787479 0.360696 0.029809 0.218639 0.680326 1.121037 -0.463509 1.898720 0.292735 -0.332441 1.375932 -0.854057 -0.315579 0.342224 -1.421399 0.409327 1.067330 0.258559 -1.021624 0.602326 -0.731323 0.361161 0.489542 0.053486 1.709755 0.710444 0.622646 0.770112 1.468517 -0.301724 0.179018 0.265951 0.846689 -0.047980 0.317201 -0.657060 -0.077774 -1.755431 0.145800 -0.871032 0.367622 -0.279142 1.365857 -0.935742 0.148365 0.763925 0.261816 1.157737 -0.821735 -0.066415 -1.158282 0.115035 0.071057 1.235292 -0.260619 0.345052 -0.169567 0.455529 -0.282752 0.473631 -0.245462 -1.063890 -1.315508 -2.282307 -1.404243 -0.434935 -0.279405 -0.364491 -1.758964 0.016142 0.837956 0.310564 -1.493492 0.086528 0.224661 0.076844 0.336186 0.726969 -1.011096 -0.470061 -0.208182 0.793988 0.175538 -0.125439 0.072337 -1.828381 0.422938 0.537049 0.481074 -0.266544 -0.722812 0.155533 0.285060 0.019198 -0.334437 0.253116 0.237181 -0.865086 0.548478 -0.610258 0.848870 -1.519272 -0.452765 -1.243890 -0.860261 -0.155675 1.963592 0.891996 0.893413 0.573345 -0.739412 -0.041991 -1.631131 -1.764200 -0.094825 -0.790584 0.458099 -0.150681 -0.097984 -0.120797 -0.124754 -0.184302 0.083058 -0.968094 -0.431196 -0.676631 0.558072 -0.014751 -0.390614 -0.764706 -0.092156 1.124720 -0.270113 0.495784 -0.487262 -0.976360 -1.160335 -0.750703 0.799139 -0.302036 0.438612 -0.286563 0.129209 -1.335355 0.436872 -0.752990 -0.083198 -0.635743 -0.460752 -1.097490 0.086404 -0.267719 0.152073 -0.293155 -0.860523 0.473015 0.395906 0.840639 0.160015 0.381427 -0.192941 -1.402817 -1.399142 -0.161868 0.072617 1.381453 0.762587 0.127043 -0.129484 -0.395198 -1.051792 0.912254 -1.435236 0.282850 0.650753 -1.084187 0.940480 -0.783348 -0.637852 -0.851625 0.536967 -0.131454 -1.332349 1.487329 0.862086 -1.309883 -0.311938 -1.264048 0.749503 0.372722 1.418655 -0.149869 0.245110 0.308756 0.314746 -0.227041 -0.523494 0.616818 -0.274371 0.635981 -1.221926 -0.680860 0.908111 0.976501 -0.109345 -0.035176 -0.214181 0.295484 0.030117 1.226320 0.202437 0.060383 -0.720375 -2.296639 0.183098 0.714918 0.060050 0.479475 -0.863452 -0.452243 -0.396998 -0.023690 1.276851 0.801710 0.459676 0.900113 -1.051938 -1.235164 -0.614600 0.306701 -0.024631 -0.593115 0.487533 -0.742441 -0.112161 -0.230656 0.831578 0.089917 -0.637129 -1.265409 0.248376 0.599941 0.344738 -0.666926 1.031112 0.278713 -0.391748 -0.305436 0.055772 0.051917 0.575655 -0.426530 -0.591352 -0.477055 0.342588 -0.728580 0.951822 -0.121047 0.773073 0.328317 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 1.117349 -0.798177 -0.316474 1.020119 0.364124 -0.737051 0.148781 0.519287 0.105414 -1.730241 -0.953475 -0.140077 0.076596 -0.743992 0.679324 0.529746 0.631632 0.299207 -2.006405 0.876153 0.390497 -0.142246 -0.822919 -0.022845 0.031763 -0.776186 -0.670209 0.599956 -0.111816 1.067437 -0.830805 0.583546 0.947049 -0.130640 1.034768 1.123108 -0.183334 -0.370129 0.792973 0.570807 2.182542 0.426906 0.025745 0.226620 0.829391 1.367404 -0.590688 2.245888 0.342118 -0.415892 1.682485 -1.175814 -0.373234 0.445237 -1.714950 0.498931 1.330539 0.385306 -1.249578 0.733823 -0.900899 0.444501 0.591384 -0.015081 2.078075 0.862813 0.723296 0.923469 1.777043 -0.357801 0.228261 0.288182 0.998784 -0.093415 0.288991 -0.815454 -0.003340 -2.328865 0.183379 -1.145236 0.446917 -0.326910 1.624886 -1.139671 0.241259 0.980142 0.284829 1.411041 -0.985296 -0.093088 -1.422671 0.139264 0.118115 1.440544 -0.335972 0.368223 -0.168111 0.557438 -0.344544 0.575851 -0.307523 -1.270733 -1.690479 -2.817909 -1.709784 -0.504519 -0.324608 -0.446060 -2.144425 0.021822 1.096383 0.325451 -1.824440 0.103812 0.270706 0.127657 0.226750 0.859224 -1.258369 -0.608206 -0.293728 0.995431 0.223371 -0.180731 0.090054 -2.293462 0.484786 0.667740 0.599462 -0.350618 -0.791432 0.168446 0.340474 0.006806 -0.427604 0.307839 0.283957 -1.000370 0.672021 -0.761320 1.046726 -1.829153 -0.499211 -1.523838 -1.004626 -0.189024 2.421078 1.095399 0.981971 0.744881 -0.922593 -0.024003 -1.953436 -2.084266 -0.114008 -0.962352 0.627107 -0.191396 -0.129160 -0.144570 -0.117316 -0.235493 0.018969 -1.181859 -0.529548 -0.840015 0.646151 -0.014280 -0.478860 -0.954208 -0.079844 1.447549 -0.426325 0.561562 -0.615453 -1.006006 -1.383564 -0.939453 0.980789 -0.369395 0.543644 -0.358153 0.217831 -1.627790 0.573943 -0.926951 -0.132640 -0.775485 -0.573433 -1.341864 0.099287 -0.340448 0.196580 -0.339001 -1.032063 0.582009 0.475769 1.072596 0.193608 0.449892 -0.228521 -1.708347 -1.717511 -0.250774 0.096407 1.641834 0.913631 0.152372 -0.190091 -0.486654 -1.223929 1.147679 -1.670178 0.341082 0.758070 -1.334949 1.149973 -0.934439 -0.765097 -1.040495 0.647872 -0.142526 -1.651094 1.784632 1.014907 -1.596482 -0.381209 -1.619919 0.917068 0.460318 1.731375 -0.133646 0.331563 0.368280 0.371929 -0.276221 -0.688434 0.754268 -0.331606 0.780979 -1.490747 -0.836134 1.111074 1.190131 -0.123850 0.009633 -0.229708 0.445761 0.043808 1.498701 0.221861 0.037823 -0.848696 -2.761585 0.228545 1.042321 0.146829 0.576889 -1.051575 -0.553061 -0.516864 0.044287 1.560153 1.128260 0.600600 1.099815 -1.225695 -1.495116 -0.747878 0.428087 -0.026164 -0.743044 0.547996 -0.898472 -0.137628 -0.261150 1.015535 0.185728 -0.789415 -1.664060 0.291877 0.744797 0.438701 -0.820001 1.255059 0.337537 -0.503785 -0.359073 0.068536 0.083452 0.701099 -0.413325 -0.729784 -0.569476 0.400213 -0.890831 1.157727 -0.158609 0.921958 0.396005 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = 0.344046 -0.240547 -0.075774 0.564097 0.169167 -0.150089 0.053294 0.136484 -0.080754 -0.822160 -0.443801 -0.199441 0.013217 -0.125923 0.360742 0.188524 0.251135 0.137435 -0.827777 0.211753 0.174394 -0.128507 -0.152210 -0.025418 0.013925 -0.249409 -0.223476 0.300324 0.007294 0.526499 -0.389293 0.363850 0.411377 0.093834 0.398282 0.330970 -0.014541 -0.163904 0.084227 0.102680 0.898643 0.063930 -0.067471 0.066316 0.169759 0.608835 -0.170229 0.708758 0.088488 -0.142962 0.639193 -0.595865 -0.084937 0.188580 -0.729589 0.189058 0.527484 0.277388 -0.399501 0.261742 -0.433719 0.253437 0.231573 -0.147620 0.898157 0.311222 0.389222 0.464368 0.625619 -0.346922 0.107776 0.067688 0.325146 -0.076548 -0.079898 -0.250577 0.104102 -1.224014 0.026595 -0.586072 0.120783 -0.100132 0.634018 -0.439709 0.019063 0.406127 0.000306 0.599025 -0.471616 0.166265 -0.684687 0.025083 0.105633 0.465973 -0.006621 0.007864 -0.046616 0.205337 -0.092326 0.259551 -0.080706 -0.467827 -0.653496 -1.171467 -0.744994 -0.095042 -0.040205 -0.137181 -0.825627 0.063578 0.613007 0.221507 -0.754328 -0.080727 0.063067 0.204838 -0.072889 0.227116 -0.534376 -0.210836 -0.072302 0.458830 0.270670 -0.151083 0.202167 -0.918097 0.108917 0.223150 0.389872 -0.041253 -0.236710 -0.074900 0.159553 -0.065515 -0.127305 0.092833 0.136796 -0.205370 0.307842 -0.289354 0.520796 -0.712215 -0.082043 -0.579699 -0.398427 -0.073235 1.066721 0.551941 0.337122 0.428208 -0.438898 0.065998 -0.730138 -0.898555 -0.019192 -0.139567 0.247687 0.008631 -0.101098 0.128181 -0.143016 -0.044789 0.148512 -0.531176 -0.391034 -0.296704 0.103864 0.034310 -0.250639 -0.468070 0.113345 0.596573 -0.304198 0.365038 -0.244322 -0.256876 -0.626646 -0.440392 0.468224 -0.243881 0.159162 -0.128629 0.140415 -0.750936 0.283039 -0.431640 -0.034277 -0.138642 -0.404128 -0.651501 0.099974 -0.148664 -0.036279 0.048421 -0.460802 0.263752 0.176002 0.374899 0.066481 0.227917 -0.015351 -0.592354 -0.757031 -0.175055 -0.032692 0.597805 0.331753 0.049483 -0.253377 -0.324408 -0.421523 0.606424 -0.542882 0.220410 0.169101 -0.460341 0.346517 -0.455683 -0.336103 -0.332368 0.285719 0.082770 -0.774144 0.683368 0.456248 -0.629015 -0.191623 -0.777350 0.436972 0.124809 0.818075 -0.159736 0.139026 0.125672 0.300886 -0.113820 -0.317219 0.314715 -0.090224 0.040643 -0.632566 -0.414255 0.424346 0.455627 0.013535 0.074904 0.129869 0.281662 -0.010883 0.677353 0.141526 -0.058791 -0.268746 -1.039968 0.111675 0.561717 0.079195 0.291036 -0.528502 -0.223162 -0.196179 -0.041586 0.647120 0.500620 0.147193 0.553652 -0.411922 -0.541512 -0.375177 0.157176 -0.031530 -0.387517 0.271305 -0.382182 -0.062698 -0.040384 0.299431 0.043611 -0.276777 -0.700426 0.053885 0.382472 0.130576 -0.192861 0.558156 0.246193 -0.316830 -0.160351 0.059895 -0.099689 0.313620 -0.270316 -0.289060 -0.084388 0.164427 -0.400682 0.296267 -0.058699 0.189895 0.122543 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.002383 -0.033490 -0.460290 1.256332 -0.250236 -0.522346 0.350416 0.026064 -0.102733 -1.328681 0.116978 0.285759 0.042568 0.006614 -0.410159 0.555240 -0.065344 0.410352 -1.063578 0.226569 0.633636 0.310802 -0.160066 -0.262570 0.204700 -0.270467 0.201917 0.568398 -0.005965 0.963248 -0.360175 0.394571 0.926549 -0.049919 0.020800 0.830200 0.426004 0.642908 0.156687 0.225484 0.587356 0.370509 -0.791141 -0.140140 -0.084934 1.167728 0.664148 0.131389 -1.257947 -0.597492 -0.575873 0.412444 -0.347478 -0.562912 -0.468883 0.317863 0.725407 1.449828 -0.533193 0.591689 -0.513392 0.175583 0.664303 0.535551 1.096443 0.651475 0.558246 1.038496 1.378116 -0.617032 0.346751 -0.038409 0.275693 -0.542502 0.655729 -0.000800 -0.841103 -0.934720 -0.194648 -1.483619 -0.392685 0.677736 0.889999 -1.000307 0.040097 -0.031815 0.447105 1.173794 -0.994947 0.108668 -1.003285 -0.080450 -0.183295 2.218781 0.394420 0.150681 -0.254271 1.081140 0.361070 0.178646 -0.040222 -0.648017 -0.126060 -1.199017 -0.394397 -0.702674 -0.219916 0.418301 -1.494071 -0.507827 0.659312 1.030101 -2.042355 0.120329 0.396837 0.332884 0.940714 -0.529634 -0.155055 0.918469 -0.506217 -0.462372 0.239969 -0.495881 0.197795 0.192314 -0.067568 0.141791 0.084717 0.591743 -1.996925 0.229021 0.258776 -0.768252 0.295097 0.932844 0.321638 -0.386134 0.377883 -1.404704 0.877629 -1.343816 0.035577 0.298395 -1.341652 -0.386824 -0.013200 0.714420 -0.101906 -0.928858 -0.494682 -0.418318 -1.580653 -2.019765 0.382494 0.390080 0.071415 0.306986 -0.423600 -0.121136 -0.869452 0.173914 1.113521 -0.529894 -0.343092 -0.176855 1.549019 0.401033 -0.070569 -0.276911 -0.447032 0.402011 0.391722 0.765747 -0.524999 -0.737900 -1.850908 -0.357700 0.721228 -0.231894 -0.268602 -0.675516 -0.511989 -1.354631 0.665388 -0.601190 0.355874 -0.135715 0.138965 -1.228618 0.618175 -0.214659 -0.335979 0.018479 -0.635918 0.052468 0.020878 -0.833407 0.128253 -0.183495 0.426834 -0.288391 -0.465478 0.892654 -0.187899 0.451893 0.405211 0.149737 -0.267336 -0.355234 -0.904093 1.092272 -0.056441 0.600784 0.323467 0.042455 1.167943 -0.644554 -0.169203 -0.501333 0.564087 0.125972 0.001463 1.329906 0.971001 -0.690250 0.032307 0.220547 0.437531 0.527716 0.507756 -1.101269 -0.965208 0.454006 -0.233475 -0.087259 0.101803 0.094387 -0.481901 0.546861 -0.679699 0.103493 0.491276 0.455407 -0.293720 0.380157 -0.140275 -1.184835 -0.317852 0.707174 0.593686 0.306250 -0.776859 -0.789534 0.215086 -1.780099 0.149244 -0.425960 -0.300796 -0.032267 0.613826 -0.088730 0.953316 0.407222 -1.517882 0.836319 -1.863924 -1.048573 -0.323949 -0.059810 0.205717 -0.223137 0.533005 -0.219009 0.282138 0.302121 0.523190 -0.274717 -0.924617 0.284762 0.340176 0.969174 -0.576602 -0.881069 1.117364 -0.468889 -0.084151 -0.391338 0.167317 -0.221448 -0.014297 -0.848127 -0.271869 -0.029979 0.924691 -0.986726 1.076262 -0.212546 0.005128 0.653661 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.975724 -0.596141 -0.182343 1.338049 0.422805 -0.210952 0.040006 0.258853 -0.023332 -1.403791 -0.646474 0.446826 -0.071743 -0.072121 0.514541 0.268818 0.563431 -0.062971 -1.463504 0.309872 -0.193950 -0.417624 -0.484858 -0.269432 0.075873 0.018171 0.384436 0.629774 0.089682 0.864720 -0.784644 0.616279 0.474508 0.320459 0.866417 0.133171 0.063908 -0.286407 -0.577749 -0.401869 1.604558 0.193863 -0.187958 0.609254 0.313342 1.013352 -0.028045 1.703691 0.700148 0.090019 1.171104 -0.720918 -0.240261 0.275304 -1.469546 0.329688 0.994682 0.171656 -0.511588 0.363854 -0.503860 0.605717 0.405168 -0.054238 1.666990 0.585795 0.935026 0.887546 1.060904 -0.863724 0.164147 0.097517 1.187658 0.284138 -0.150753 -0.846082 -0.142406 -1.662841 0.020779 -0.876736 0.375216 -0.539605 1.084475 -0.666778 -0.039589 0.313833 -0.191803 0.846188 -1.066607 0.618381 -1.211383 0.061264 0.086536 1.069935 -0.196110 0.197299 -0.014120 0.225569 -0.145752 0.543754 0.085123 -0.859922 -0.384621 -1.919224 -1.198408 0.132454 -0.221795 -0.411600 -1.126454 0.370230 0.538298 0.344812 -1.083772 -0.681856 -0.144295 0.143182 0.464871 0.587473 -0.594569 -0.302017 -0.047647 0.967204 0.546244 -0.366813 0.487175 -1.400434 -0.085246 0.498052 0.993305 0.338635 -0.617201 -0.121400 0.323719 0.128781 -0.228262 -0.080588 -0.040191 -0.394644 0.473029 -0.344608 0.929683 -1.231969 -0.612560 -1.061574 -0.542269 0.042677 1.902181 0.726354 1.094213 1.074139 -0.421765 0.075121 -1.142917 -1.726611 0.143190 0.003477 0.014688 0.035896 -0.035731 0.390261 -0.512224 -0.434473 0.722655 -1.067452 -1.092565 -0.806041 -0.124482 -0.030022 -0.424898 -0.689760 0.513132 1.000699 -0.311745 0.883327 -0.383335 -1.589799 -1.155798 -0.658885 0.828683 -0.535276 0.109010 0.104037 0.292947 -1.292609 0.289897 -0.803292 0.254519 -0.063275 -0.967880 -1.167442 0.273924 -0.242211 0.326755 0.212768 -0.824454 0.566748 0.133661 1.134025 -0.126092 0.839697 0.176283 -1.300214 -1.586591 -0.374652 0.145942 1.458754 0.185431 0.083620 -0.431454 -0.691755 -0.837344 1.098052 -1.422314 0.496565 0.247517 -0.494817 0.399595 -0.835705 -0.555449 -0.604297 0.589405 0.354014 -1.312128 1.363290 0.926875 -1.230461 -0.481827 -1.535729 0.931492 0.024964 1.786704 -0.702165 -0.058500 0.282207 0.894509 -0.312161 -0.681741 0.593914 0.144440 -0.321104 -1.211823 -0.929620 0.593275 0.598596 0.142866 -0.155543 0.342788 0.218987 -0.330829 1.543603 0.309886 0.152169 -0.618622 -2.179490 0.035626 1.172442 0.029939 0.712894 -1.318937 -0.618423 -0.369695 -0.250003 1.100544 0.441973 0.260848 1.017001 -0.844270 -0.753365 -0.733522 0.096833 -0.099165 -0.707151 0.657950 -0.812086 -0.279396 -0.081745 0.454555 -0.338705 -0.128930 -0.829202 -0.051523 0.596187 0.069095 -0.177611 0.945306 0.707672 -0.643901 -0.220444 0.168718 -0.461846 0.534647 -0.995441 -0.324988 -0.110436 0.269344 -0.744722 0.363249 0.298190 0.375612 -0.156676 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.136795 -0.199525 -0.037889 0.385454 0.145955 0.009545 0.036496 -0.040393 -0.038091 -0.591576 -0.287554 -0.099896 0.014426 -0.016810 0.202598 0.153617 0.192234 0.088134 -0.375578 0.070446 0.124670 -0.109803 -0.045746 0.089751 -0.009973 -0.299176 -0.023396 0.197564 0.009299 0.345826 -0.215187 0.276977 0.310326 0.045711 0.215684 0.269124 0.058495 -0.103793 -0.039426 0.086208 0.600027 -0.041204 0.003606 0.037692 0.071891 0.419801 -0.066019 0.440277 0.175327 -0.142425 0.388954 -0.298048 -0.032392 0.074437 -0.506966 0.134194 0.213616 0.128877 -0.274927 0.147230 -0.276776 0.144179 0.113693 -0.072980 0.542531 0.133362 0.286547 0.303238 0.378845 -0.268179 0.012672 0.146981 0.137792 0.029435 0.071887 -0.069658 0.028074 -0.661546 -0.022365 -0.214107 0.035675 -0.055942 0.398357 -0.264708 -0.133207 0.265080 -0.026570 0.414316 -0.216241 0.115219 -0.482979 0.038840 0.144539 0.219563 0.100607 -0.020261 -0.078562 0.111974 -0.070246 0.189162 -0.002783 -0.327807 -0.415877 -0.735074 -0.506458 -0.177718 0.074817 -0.051047 -0.564053 0.062256 0.360200 0.252420 -0.477534 0.017721 0.083766 0.184470 0.050879 0.052098 -0.296422 -0.158480 0.083346 0.251920 0.173182 -0.062721 0.137838 -0.537815 0.177305 0.067278 0.220525 -0.089480 -0.097972 -0.107114 0.082559 0.021168 -0.033498 0.065677 0.176655 -0.148694 0.227248 -0.137534 0.330485 -0.434001 -0.022828 -0.351302 -0.264516 -0.111409 0.781142 0.367520 0.333929 0.202638 -0.350314 0.008677 -0.481886 -0.636159 -0.070812 -0.093609 0.132942 0.108971 -0.092839 0.141044 -0.117936 0.054701 0.109853 -0.302539 -0.197147 -0.079199 -0.102422 0.008451 -0.147603 -0.340099 0.023680 0.286908 -0.168108 0.280715 -0.125372 -0.240305 -0.405912 -0.322732 0.289966 -0.190223 0.137455 -0.111576 -0.004148 -0.464032 0.169715 -0.265873 -0.074293 -0.082212 -0.313166 -0.429576 0.081157 -0.116502 -0.108932 0.092320 -0.347962 0.152883 0.084622 0.100569 0.127891 0.094974 -0.100518 -0.346001 -0.423741 -0.082538 -0.122455 0.357502 0.231779 -0.009220 -0.174175 -0.255188 -0.287909 0.343365 -0.377575 0.138417 0.159946 -0.332142 0.168377 -0.310358 -0.177795 -0.167382 0.181877 0.053385 -0.542818 0.407093 0.341128 -0.381776 -0.140309 -0.367550 0.237332 0.070832 0.475739 -0.116320 0.118148 0.069990 0.194751 -0.038132 -0.127966 0.199125 -0.069504 0.010357 -0.432338 -0.291074 0.265089 0.331496 -0.028427 0.013835 0.149622 0.193146 0.042780 0.395001 0.126297 -0.001681 -0.169689 -0.681667 0.104104 0.246330 -0.031624 0.252263 -0.348816 -0.084669 -0.050829 -0.136667 0.421023 0.157551 0.088255 0.386575 -0.246356 -0.358519 -0.209524 -0.054113 -0.024941 -0.215112 0.250413 -0.242216 -0.040555 -0.093202 0.140286 -0.062739 -0.160795 -0.289617 0.086969 0.250179 0.121050 -0.017261 0.357338 0.149230 -0.196602 -0.121010 0.052960 -0.070406 0.228747 -0.270628 -0.197928 -0.029390 0.093122 -0.229869 0.129587 -0.120353 0.109297 0.084278 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.125459 -0.206977 -0.023517 0.370878 0.149126 -0.000152 0.039996 -0.051931 -0.035143 -0.555213 -0.254018 -0.073238 0.003743 -0.025290 0.183247 0.136394 0.190919 0.082673 -0.323382 0.071654 0.098159 -0.104970 -0.059839 0.083272 -0.013021 -0.286572 0.008896 0.205787 0.005580 0.321878 -0.204459 0.245747 0.287680 0.046981 0.212466 0.262651 0.091493 -0.091939 -0.055329 0.087113 0.580572 -0.048255 0.012175 0.050647 0.091045 0.399294 -0.038681 0.420425 0.199478 -0.129061 0.363860 -0.265661 -0.027282 0.051044 -0.496586 0.126737 0.189913 0.113215 -0.274711 0.148071 -0.254790 0.132602 0.105147 -0.050768 0.512400 0.114769 0.266495 0.280981 0.368958 -0.258169 -0.005671 0.156978 0.163008 0.049680 0.081187 -0.059339 0.007546 -0.625195 -0.030544 -0.173795 0.036197 -0.052120 0.364570 -0.243891 -0.133298 0.257057 -0.042042 0.376725 -0.202508 0.093649 -0.463006 0.039820 0.145887 0.211734 0.101798 -0.016101 -0.068022 0.104081 -0.057352 0.195173 0.002749 -0.320250 -0.374789 -0.711141 -0.482230 -0.173596 0.059194 -0.072767 -0.523758 0.050277 0.337307 0.254534 -0.441981 0.012889 0.085945 0.162055 0.058617 0.012057 -0.257839 -0.142236 0.089340 0.234347 0.166240 -0.058136 0.121091 -0.492954 0.180650 0.058360 0.210210 -0.088302 -0.078276 -0.102960 0.076335 0.045137 -0.039416 0.039788 0.145518 -0.155397 0.213389 -0.128371 0.317243 -0.402979 -0.022538 -0.332572 -0.246057 -0.101068 0.759636 0.323932 0.345734 0.186828 -0.337152 0.005075 -0.448092 -0.632231 -0.049744 -0.093588 0.115640 0.103762 -0.085324 0.125493 -0.112184 0.031408 0.121302 -0.285855 -0.180519 -0.072475 -0.142110 0.001443 -0.139614 -0.328853 0.031431 0.282076 -0.129185 0.257586 -0.129584 -0.273363 -0.365838 -0.307597 0.268509 -0.177046 0.125061 -0.086395 -0.022843 -0.440025 0.168371 -0.251869 -0.058404 -0.091731 -0.302486 -0.403613 0.073312 -0.118758 -0.088036 0.084983 -0.329110 0.143344 0.050269 0.080359 0.120520 0.094737 -0.092052 -0.333635 -0.405955 -0.078986 -0.100856 0.343971 0.205162 0.006062 -0.163668 -0.238539 -0.278415 0.317178 -0.382696 0.122577 0.173985 -0.327632 0.168951 -0.284655 -0.165184 -0.146647 0.180563 0.059375 -0.506754 0.390196 0.343279 -0.372321 -0.150535 -0.328710 0.211884 0.074570 0.467499 -0.123529 0.112531 0.078219 0.189620 -0.036646 -0.119012 0.189999 -0.051373 0.024068 -0.422070 -0.290718 0.240151 0.323176 -0.027499 -0.003665 0.132200 0.179295 0.015755 0.389348 0.113058 0.027624 -0.167139 -0.647101 0.102899 0.225224 -0.031666 0.263866 -0.337627 -0.080031 -0.042595 -0.142026 0.400119 0.127761 0.076811 0.368711 -0.234063 -0.342332 -0.189863 -0.073515 -0.020603 -0.213488 0.265845 -0.237274 -0.043328 -0.107037 0.133003 -0.076741 -0.122069 -0.250980 0.078548 0.216646 0.124712 -0.015271 0.339786 0.127860 -0.190853 -0.110910 0.053238 -0.057438 0.230041 -0.274860 -0.193791 -0.048032 0.094519 -0.209757 0.133144 -0.120924 0.116522 0.084842 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = 0.399748 -0.084499 -0.091516 0.503323 0.224496 -0.328547 0.148134 0.168186 0.008593 -0.782344 -0.253138 0.305712 0.033418 -0.273179 0.060355 0.196020 0.284352 0.407862 -0.448786 0.264555 0.082604 0.091275 -0.400984 -0.230415 -0.038131 -0.242020 -0.047188 0.245830 0.060690 0.537890 -0.365490 0.054414 0.423161 -0.026412 0.395427 0.551379 0.430018 -0.040893 0.026581 0.034737 0.983435 0.203522 0.011923 0.333177 0.384326 0.635978 0.013042 0.607506 -0.140607 -0.196617 0.179011 -0.171282 -0.191901 -0.044311 -0.734266 0.339835 0.487434 0.334620 -0.583397 0.436496 -0.128022 0.154232 0.275480 0.048842 0.633964 0.310361 0.109353 0.466232 0.891571 -0.338800 -0.009775 0.165079 0.538400 0.030468 0.443710 -0.121399 -0.212448 -0.712620 -0.053623 -0.524674 0.212583 -0.014030 0.913927 -0.589743 0.204261 0.566711 0.162825 0.471344 -0.384422 -0.223071 -0.631822 0.049156 -0.124797 0.890606 0.087752 0.177946 -0.160578 0.322363 0.038684 0.300987 -0.021639 -0.582344 -0.397085 -1.209278 -0.619792 -0.338874 -0.261729 -0.196418 -0.673958 -0.227930 0.549087 0.692391 -0.896569 0.053441 0.211179 0.024223 0.187048 -0.160185 -0.351641 0.103071 -0.201859 0.059432 0.014155 -0.226167 -0.105272 -0.281980 0.055111 0.092425 0.261026 -0.043868 -0.554616 -0.004443 0.060751 -0.011597 -0.184245 0.016719 -0.001716 -0.658229 0.294065 -0.445237 0.449786 -0.636620 -0.108068 -0.345974 -0.675258 -0.143729 0.780326 0.106743 0.527281 0.067967 -0.336222 -0.201330 -0.730659 -1.127270 0.332663 -0.200705 0.170115 0.059741 -0.078484 -0.144297 -0.283828 -0.235572 0.359051 -0.479664 -0.171849 -0.157190 0.629408 -0.183834 -0.215962 -0.505870 0.029157 0.635599 0.261639 0.167213 -0.444193 -0.490990 -0.579692 -0.387702 0.464295 -0.178923 0.169396 -0.037951 -0.134069 -0.556272 0.255581 -0.434498 0.265384 -0.356127 -0.188858 -0.669920 0.100028 -0.212045 -0.118804 0.010879 -0.483290 0.290013 0.013005 -0.045044 -0.087825 0.035379 0.129135 -0.711772 -0.651300 0.003131 0.074368 0.540909 0.402349 0.244437 -0.244749 -0.187004 -0.540218 0.440340 -0.744511 0.160558 0.312299 -0.403429 0.576100 -0.411544 -0.289047 -0.475984 0.375201 0.084353 -0.426602 0.854589 0.545721 -0.645353 -0.206628 -0.347552 0.272765 0.260572 0.836319 -0.395452 -0.130035 0.376158 -0.081996 -0.101860 -0.298019 0.292611 -0.071183 0.484784 -0.694009 -0.316119 0.341535 0.554003 -0.105620 0.092551 0.033775 -0.064641 -0.168006 0.779437 0.243884 0.263280 -0.528434 -0.817881 0.231581 -0.264387 0.133978 0.167371 -0.269100 -0.191323 0.042364 -0.020333 0.620535 0.205651 -0.034389 0.546909 -0.757351 -0.692004 -0.065919 -0.024401 0.230033 -0.433935 0.423053 -0.436243 -0.008129 -0.230709 0.380652 -0.064243 -0.170419 -0.301436 0.125952 0.332823 0.208850 -0.339829 0.664802 -0.004703 -0.288267 0.074797 -0.064694 0.223855 0.192582 -0.424923 -0.263576 -0.270152 0.276044 -0.406983 0.671053 -0.175666 0.247676 0.328014 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.349482 -0.573827 -0.041840 0.529228 0.246200 -0.107886 0.060433 -0.059676 0.130034 -0.657361 -0.144381 0.231080 -0.021789 -0.126404 0.126066 0.189778 0.323052 -0.034413 -0.417175 0.203601 -0.068638 -0.150549 -0.318715 0.072007 -0.011653 -0.391891 0.405603 0.354661 -0.031067 0.340766 -0.273180 0.178816 0.313370 -0.030620 0.399707 0.378450 0.258957 -0.073599 -0.217222 0.149167 0.858948 0.062910 -0.004762 0.216728 0.312611 0.519279 0.134575 0.859219 0.562087 -0.113073 0.505271 -0.098501 -0.105164 -0.064025 -0.783872 0.170488 0.310503 0.002405 -0.491942 0.240001 -0.224131 0.151600 0.159400 0.267642 0.713857 0.091909 0.449297 0.324397 0.606503 -0.308800 -0.076270 0.312401 0.533795 0.261623 0.406752 -0.269875 -0.292145 -0.623322 0.012791 0.022432 0.107598 -0.160043 0.296696 -0.307211 -0.173574 0.281181 -0.081685 0.425936 -0.316259 0.017754 -0.596663 0.079492 0.206687 0.601409 0.010400 0.137269 -0.016684 0.195703 -0.056670 0.330306 0.171935 -0.567076 -0.209165 -0.958657 -0.605425 -0.306259 -0.039639 -0.226555 -0.629137 0.082377 0.187926 0.239090 -0.503928 0.029196 0.114670 0.039554 0.583473 -0.134556 -0.071864 -0.146198 0.136178 0.294227 0.138051 -0.102455 0.082328 -0.531156 0.403385 0.196418 0.247982 -0.101278 -0.168194 0.002434 0.129068 0.292689 -0.119096 -0.020943 0.068425 -0.501502 0.260315 -0.192660 0.417835 -0.556397 -0.210466 -0.475882 -0.252774 -0.098765 1.033967 0.149892 0.691981 0.199128 -0.420584 -0.019580 -0.621005 -1.082240 -0.020900 -0.186335 -0.033204 0.112664 -0.064633 0.072754 -0.164582 -0.116799 0.238663 -0.386108 -0.206458 -0.158802 -0.408032 -0.032794 -0.146597 -0.299136 0.052946 0.405837 0.153683 0.375841 -0.185223 -1.019806 -0.441337 -0.351866 0.308230 -0.190083 0.137289 0.009805 -0.176147 -0.629285 0.219403 -0.330041 0.073156 -0.277509 -0.372571 -0.477774 0.082751 -0.194976 0.214947 0.007531 -0.459903 0.185212 -0.189961 0.183206 0.118439 0.193458 -0.079224 -0.668621 -0.613699 -0.023600 0.001105 0.747358 0.014456 0.032382 0.024196 -0.251171 -0.454699 0.299445 -0.816524 0.114660 0.406391 -0.535831 0.289531 -0.293527 -0.228136 -0.258620 0.294523 0.061397 -0.262301 0.755630 0.588844 -0.589317 -0.269200 -0.248224 0.247325 0.116649 0.682096 -0.275720 0.022669 0.165125 0.280437 -0.074341 -0.117868 0.266616 0.013977 0.162131 -0.640005 -0.461118 0.253603 0.458519 -0.055235 -0.173357 0.020737 0.010003 -0.244540 0.647159 0.097493 0.322590 -0.364856 -1.008599 0.111503 0.107944 -0.120061 0.393103 -0.542015 -0.160473 -0.039506 -0.125580 0.541561 0.114505 0.128296 0.458908 -0.498600 -0.506691 -0.251988 -0.271708 -0.045896 -0.233893 0.438675 -0.385049 -0.081177 -0.293851 0.248041 -0.300199 0.009121 -0.039047 0.114448 0.106383 0.172745 -0.126234 0.443905 0.126895 -0.194630 -0.148893 0.093715 -0.089289 0.399472 -0.399058 -0.250962 -0.225929 0.169756 -0.240727 0.267596 -0.104292 0.366829 0.042202 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.160912 -0.069062 -0.005235 0.305306 0.126309 -0.223495 0.104730 0.053924 0.018718 -0.440452 -0.057745 0.175212 0.000000 -0.165582 0.003725 0.093724 0.135341 0.311419 -0.175035 0.166409 0.046316 0.125473 -0.175505 -0.195903 -0.013415 -0.114438 0.039135 0.141189 0.052943 0.319933 -0.236435 -0.019883 0.242918 0.004947 0.195971 0.325146 0.394383 0.007443 -0.050117 0.049690 0.553536 0.094528 0.002380 0.205200 0.229548 0.363866 0.132845 0.220728 -0.022381 -0.118605 -0.020568 -0.066992 -0.094286 -0.095579 -0.407122 0.218979 0.236048 0.267433 -0.334078 0.266819 -0.025175 0.074463 0.161413 0.030451 0.316748 0.130952 0.009073 0.260198 0.548969 -0.207081 -0.023352 0.080122 0.364611 0.016468 0.361597 -0.025412 -0.183766 -0.517870 -0.102436 -0.277577 0.121172 0.053580 0.434395 -0.363327 0.166855 0.386401 0.066814 0.243121 -0.193554 -0.173156 -0.365882 0.041746 -0.045048 0.535319 0.101336 0.069857 -0.114504 0.205618 0.073713 0.171579 0.066972 -0.337031 -0.150018 -0.718227 -0.333568 -0.213693 -0.192287 -0.142436 -0.366235 -0.157870 0.356636 0.494500 -0.548382 0.043072 0.151983 0.015960 0.085131 -0.368459 -0.081506 0.149966 -0.124974 -0.007533 -0.005379 -0.209583 -0.102877 -0.036866 0.024804 0.037558 0.147839 -0.042438 -0.210011 -0.038189 -0.001641 0.071129 -0.107591 -0.018011 -0.039181 -0.423032 0.159444 -0.299070 0.267503 -0.288365 -0.015629 -0.117197 -0.355745 -0.086965 0.488988 -0.084896 0.291968 -0.028796 -0.246743 -0.140514 -0.364378 -0.716748 0.282386 -0.095745 0.074360 0.089008 -0.047404 -0.118393 -0.165892 -0.172356 0.253615 -0.272532 -0.072379 -0.028653 0.208499 -0.143450 -0.118883 -0.338629 0.030976 0.429954 0.256035 0.051356 -0.285923 -0.276626 -0.287840 -0.233999 0.267416 -0.097765 0.087858 -0.014071 -0.116899 -0.305354 0.203796 -0.252537 0.203555 -0.193488 -0.112724 -0.394620 0.035118 -0.151845 -0.042373 0.022737 -0.273856 0.164159 -0.147457 -0.135477 -0.076975 -0.014164 0.129549 -0.425242 -0.370706 -0.006590 0.059684 0.266424 0.125250 0.207477 -0.203511 -0.095398 -0.276741 0.247555 -0.457060 0.073304 0.185530 -0.223293 0.370526 -0.199027 -0.153106 -0.253139 0.236641 0.074268 -0.129769 0.508508 0.354517 -0.362019 -0.123993 -0.108661 0.127771 0.187860 0.513079 -0.295544 -0.109474 0.252720 -0.075630 -0.056399 -0.199213 0.167570 -0.052521 0.318361 -0.385561 -0.176581 0.123810 0.339740 -0.069099 0.044588 0.040744 -0.073213 -0.217796 0.449117 0.145010 0.235794 -0.329429 -0.340667 0.154886 -0.190533 0.143276 0.140769 -0.166149 -0.063738 0.094909 0.024792 0.353219 0.145182 -0.054677 0.316206 -0.472166 -0.399190 0.033315 -0.074076 0.161982 -0.272975 0.319599 -0.259297 -0.011078 -0.147378 0.209678 -0.079972 -0.012986 -0.066582 0.072224 0.162841 0.150941 -0.205208 0.396817 -0.042876 -0.199742 0.091261 -0.055062 0.145175 0.072217 -0.202616 -0.134084 -0.159604 0.182312 -0.228551 0.446563 -0.185819 0.103363 0.182483 -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 >&) = 3.712612 -1.790199 -1.340097 5.225642 0.836743 -0.064533 1.261742 1.426269 1.047767 -8.642028 -3.259240 4.473096 0.434973 0.222915 -0.060887 1.948643 2.240474 2.453417 -8.192485 0.326250 1.759966 0.519020 -0.675360 -0.731326 0.157950 -1.994817 1.693841 1.907707 1.151975 5.118838 -2.316190 2.168338 4.832307 -0.208528 1.380461 4.087913 0.771905 -0.429122 -1.428845 -2.088265 7.443642 1.727667 -0.299454 3.076879 -0.067768 5.909607 0.838969 7.081232 2.590338 -2.557829 2.423019 -2.358321 -2.775765 -0.586957 -5.598800 1.686558 3.149648 3.120437 -2.983614 2.706443 -0.567907 1.533193 2.300761 -0.474651 5.716110 3.109824 3.452449 4.611248 5.907757 -4.172965 0.919310 0.809042 1.745288 1.130978 3.494763 -4.025531 -2.057898 -4.563192 0.099263 -5.999256 -0.342592 -1.130381 7.722718 -4.916316 0.330018 1.507944 1.101688 5.511595 -2.585514 0.932818 -6.158127 0.221058 0.431274 6.991106 0.516227 0.764244 -1.261116 1.583265 -0.450685 1.657798 1.044447 -4.685370 -2.369603 -8.473148 -3.327604 -3.525244 0.077670 1.489509 -6.229739 -0.121225 0.971351 4.009467 -8.422705 -1.006171 1.458331 1.475015 3.551282 2.352291 -2.473119 -0.365914 -0.116231 1.191204 1.523580 -3.109869 0.827025 -2.644384 -0.196212 0.964913 1.755389 0.970940 -6.409822 -1.598720 1.269676 -0.298047 0.556766 2.316099 2.594251 -2.437932 2.686911 -3.720996 3.816462 -5.952375 -2.007950 -1.586646 -4.257075 -2.779493 8.094666 3.462094 4.157665 0.380435 -2.460843 -1.585605 -6.265216 -8.527753 0.729596 -0.514992 1.209288 2.038469 -1.107611 1.082078 -3.705750 0.267123 1.631467 -2.772375 -2.580671 -0.926813 2.848398 -0.245216 -1.243323 -2.962265 0.073528 2.346405 -0.102136 4.279148 -2.102628 -7.106817 -7.023608 -3.288693 4.790573 -2.633487 0.634959 -2.069420 -1.160736 -4.238331 0.416479 -3.715750 0.471939 -0.597392 -3.391663 -6.711003 2.575444 -1.563021 -0.606943 1.981978 -4.768207 1.628248 1.818184 2.808151 0.288402 0.784943 -0.002344 -6.063418 -4.467684 0.294404 -2.293082 5.764386 2.915718 0.206040 -3.076876 -2.650329 -4.123553 4.280653 -5.467489 2.940047 0.599091 -2.021978 3.334152 -3.815360 -0.135695 -4.184260 2.723626 1.362780 -7.809681 7.039947 4.288421 -4.230991 -0.723194 -2.628641 2.440396 1.456758 4.431328 -3.979064 -3.282574 2.222665 -0.298005 -0.321337 -2.157319 1.668535 -0.820828 0.594821 -5.660194 -2.375962 3.777347 2.801166 -1.077831 0.482735 2.834140 -0.737262 0.969809 6.101892 2.405444 0.663155 -3.814271 -11.235873 2.234564 2.462808 0.163325 1.205664 -4.373219 -1.406620 1.858950 -1.765129 5.023083 1.254295 -0.446230 4.892438 -6.313988 -5.132409 -2.548834 -1.091790 1.611241 -0.921020 2.140570 -2.328404 0.318065 -0.753653 1.580461 -1.264065 -3.111892 -1.107910 2.364936 4.851638 0.440960 -0.930871 5.497327 0.819153 -1.924327 -0.288273 -0.560667 -0.742234 0.967665 -4.716553 -0.700470 0.655194 2.221734 -4.088622 2.916631 -0.703575 0.781297 0.800620 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -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 >) = 6.762113 -4.333704 -3.778331 9.501779 0.760878 -0.536038 1.973340 2.138640 1.446649 -15.590190 -5.268544 7.600528 1.668476 0.612617 -0.025889 4.145178 3.218718 3.735532 -14.652993 0.966845 2.964863 0.531868 -2.427729 -0.785679 -0.241812 -3.983293 3.667833 3.166421 1.706464 9.396420 -3.948483 4.511486 8.671843 -1.382874 2.831374 7.254971 1.785681 -0.510535 -3.177513 -2.232518 13.722500 3.588144 -0.872747 4.311220 -0.508498 10.499956 1.787181 13.789409 3.472713 -4.763845 5.283864 -3.642964 -4.653733 -1.038840 -10.282336 2.678341 6.059595 5.827914 -5.443780 4.855954 -1.804905 2.324752 4.283949 1.149836 11.387456 5.281905 7.435206 8.405596 10.419997 -7.208382 1.920780 1.430447 2.288935 0.812000 7.448722 -7.130096 -4.459678 -8.454793 0.956668 -10.139841 -1.260591 -1.228351 12.979973 -9.118364 0.034685 2.963004 2.909552 10.118294 -5.468718 1.932080 -11.176377 -0.394056 0.653988 13.790655 0.923338 1.660893 -2.424695 3.463073 -0.482054 2.730451 2.384869 -8.990791 -3.933087 -14.738094 -6.640854 -6.273636 -0.395320 3.154715 -11.309611 -0.944523 1.893662 6.339843 -15.074703 -0.481466 2.643409 2.825521 9.746768 4.723643 -4.959348 0.257872 -0.094894 1.882828 3.478112 -5.027025 1.977961 -5.106300 1.454116 2.288941 2.674123 1.764565 -12.819817 -2.038331 2.700871 -0.973639 0.784713 4.236508 4.890541 -5.388190 4.974922 -6.826196 6.933080 -11.108298 -3.429281 -2.883319 -8.719962 -4.587124 14.641067 6.485001 7.379535 -0.025757 -6.105895 -1.889339 -12.084231 -17.071691 0.736347 -0.453282 1.279535 3.383486 -2.144850 2.036658 -6.491855 1.379535 3.994504 -4.984477 -4.682684 -1.101114 4.782463 0.223025 -2.611994 -4.544536 -0.374754 3.250770 1.334405 8.972492 -3.461552 -14.043378 -13.361908 -5.407594 8.673394 -4.263142 1.110003 -3.752551 -2.891920 -9.523531 0.716723 -6.744570 1.323053 -1.396344 -5.781800 -11.785179 4.456169 -2.387600 -1.277022 2.764910 -8.642992 2.553756 2.918729 4.444402 0.698438 0.862628 0.428809 -11.039099 -8.515919 1.595326 -4.409439 11.673605 4.725465 0.386634 -4.038581 -4.256900 -7.962410 7.180948 -10.424130 5.147910 1.393372 -4.552719 6.079796 -7.439698 -1.585624 -7.078507 4.899302 2.069296 -11.318613 14.366203 8.130362 -7.193371 -0.721439 -3.194473 4.484383 2.677781 7.573521 -7.032199 -5.965544 3.562507 -0.050805 -0.521724 -3.099521 3.015850 -2.329072 0.661267 -10.005823 -4.397043 6.625677 5.331261 -1.556025 0.498352 4.113929 -2.586320 0.368158 10.932462 4.294595 1.266740 -6.194499 -19.369042 4.323195 1.573640 -1.093472 1.248360 -7.995668 -2.011391 3.381196 -3.209073 8.845326 2.624708 -1.675498 8.625643 -12.405601 -9.607708 -5.613244 -1.961630 2.207588 -1.383116 3.359879 -4.348125 1.311565 -1.228378 2.903263 -2.675222 -5.643114 -1.020653 4.085667 7.726860 0.092062 -2.089204 10.019610 1.572331 -2.633231 -1.200903 -0.733638 -1.749179 2.531400 -8.242608 -1.555766 1.007711 4.498185 -7.102761 4.571756 -1.761600 1.282837 2.080777 -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.684346 -0.673754 -0.036984 0.881159 0.217190 -0.417434 0.224236 0.393021 0.019366 -1.443305 -0.591651 -0.263251 0.058268 -0.356663 0.438819 0.327910 0.345900 0.204562 -1.843132 0.485009 0.426606 -0.031684 -0.268542 -0.153971 0.036337 -0.668869 -0.193899 0.673473 -0.072195 0.934876 -0.598767 0.379438 0.804418 0.015350 0.661387 0.894847 0.082116 -0.189908 0.249177 0.456728 1.608927 0.427872 -0.344156 0.036785 0.449988 1.147775 -0.041503 1.174523 0.105185 -0.395173 0.890079 -0.744527 -0.367781 0.030196 -1.201980 0.278186 1.130844 0.695750 -0.830768 0.615288 -0.782934 0.262397 0.448941 0.118511 1.494167 0.459369 0.741498 0.710864 1.314855 -0.582650 0.100910 0.239784 0.575302 -0.168275 0.305979 -0.560700 -0.245657 -2.325475 0.184611 -1.177162 -0.025055 -0.033323 0.846979 -0.835838 0.140940 0.822698 0.146564 1.072805 -0.823113 -0.003367 -1.144846 0.061611 0.182698 1.472676 -0.085053 0.121131 0.053432 0.586319 0.047057 0.540862 0.111686 -0.962906 -1.066685 -2.125206 -1.089598 -0.481101 -0.119273 -0.183368 -1.457269 -0.021343 1.112207 0.302842 -1.430174 0.127521 0.353154 0.387596 0.334719 -0.099985 -0.673150 -0.177086 -0.201423 0.565750 0.453577 -0.473422 0.179803 -1.217769 0.526861 0.507815 0.415956 -0.186809 -0.657514 -0.020871 0.350613 -0.063325 -0.196675 0.245367 0.223043 -0.687682 0.526024 -0.834213 1.000411 -1.328825 0.027987 -0.854404 -0.630768 -0.200268 1.600564 0.745407 0.348822 0.402223 -0.843751 0.125410 -1.299002 -1.861697 -0.018712 -0.219963 0.422787 -0.075840 -0.231282 0.041636 -0.241427 -0.049886 0.100145 -0.790012 -0.395997 -0.365296 0.295631 0.121862 -0.386840 -0.586255 0.074113 1.035461 -0.121365 0.659088 -0.481002 -0.777477 -1.139459 -0.816141 0.838713 -0.319025 0.131656 -0.347693 -0.024974 -1.359366 0.665728 -0.711805 0.131357 -0.402021 -0.595149 -1.134546 0.188224 -0.320270 0.152355 -0.013168 -0.839595 0.263945 0.009204 0.433699 0.180873 0.178458 0.056017 -1.218029 -1.238624 -0.126962 -0.025487 1.267001 0.338422 0.108239 -0.204028 -0.385514 -0.779537 0.968802 -0.868129 0.310986 0.289021 -1.038210 0.893975 -0.617815 -0.543636 -0.748267 0.541703 0.084882 -0.548485 1.684926 0.982464 -1.056586 -0.367308 -0.877874 0.524053 0.401746 1.273609 -0.406693 -0.069063 0.272187 0.251010 -0.175234 -0.361883 0.545625 -0.270736 0.401183 -1.118551 -0.679459 0.678314 0.930113 -0.076924 0.230439 0.070028 0.213951 -0.291905 1.164733 0.199153 0.095817 -0.633099 -1.787695 0.355873 0.461701 0.103793 0.265733 -0.830706 -0.469635 -0.163699 0.327249 1.176231 1.278412 0.024219 0.923027 -0.994474 -1.126291 -0.707873 0.107199 -0.005428 -0.555439 0.389544 -0.628829 0.043215 -0.145473 0.526594 0.077681 -0.513668 -0.916145 0.171258 0.568408 0.322874 -0.645934 1.073541 0.216978 -0.435702 -0.343617 0.075405 -0.128467 0.623794 -0.068479 -0.476922 -0.316098 0.438024 -0.616297 0.704952 -0.118706 0.439139 0.322082 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = 0.323955 -0.333856 -0.064639 0.516300 0.121555 -0.323413 0.152892 0.106818 0.010392 -0.647061 -0.102449 0.172723 0.025574 -0.250183 0.063895 0.159066 0.157283 0.160913 -0.614500 0.276655 0.060568 0.007467 -0.350370 -0.179496 -0.036248 -0.312710 0.185344 0.408779 -0.060977 0.444617 -0.273029 0.054958 0.351519 -0.006897 0.373489 0.487777 0.332063 0.010486 -0.066358 0.245699 0.820067 0.271921 -0.186907 0.123851 0.344211 0.576643 0.214158 0.457115 -0.053136 -0.155239 0.178585 0.010994 -0.185716 -0.173043 -0.643407 0.142771 0.490270 0.305511 -0.479464 0.390809 -0.313297 0.083693 0.247827 0.309210 0.701847 0.126623 0.338422 0.359988 0.750571 -0.313017 -0.023094 0.185375 0.488679 -0.035661 0.435314 -0.105948 -0.422443 -0.881061 0.023801 -0.450777 -0.000864 0.082233 0.398130 -0.425685 0.049648 0.412792 0.111000 0.437446 -0.458766 -0.154981 -0.547293 0.019091 -0.020981 0.991605 0.071057 0.163824 -0.011819 0.373627 0.147883 0.314751 0.103163 -0.571919 -0.209932 -1.087712 -0.486734 -0.318785 -0.220231 -0.196745 -0.600049 -0.161685 0.502301 0.457890 -0.711116 0.100427 0.228196 0.055124 0.454708 -0.455228 -0.139034 0.172872 -0.111973 0.110253 0.205559 -0.250450 -0.008006 -0.216825 0.337612 0.192244 0.177370 -0.017522 -0.462353 0.050166 0.187591 0.039935 -0.123368 0.042686 -0.027183 -0.554584 0.231015 -0.489996 0.511078 -0.607099 0.046718 -0.310616 -0.441559 -0.070914 0.612131 0.155667 0.329823 0.000272 -0.383442 0.012798 -0.651295 -1.250803 0.203049 -0.050961 0.035024 -0.051470 -0.100465 -0.093667 -0.224922 -0.123386 0.368713 -0.386334 -0.136153 -0.103847 0.209329 0.028755 -0.211053 -0.245788 0.016123 0.482713 0.379972 0.320460 -0.326858 -0.746896 -0.542398 -0.344824 0.391321 -0.116667 -0.016885 -0.075324 -0.235511 -0.683807 0.361620 -0.345274 0.293908 -0.291698 -0.185692 -0.549212 0.048203 -0.175664 0.094167 -0.068684 -0.418261 0.115752 -0.157508 -0.139418 0.010130 0.057624 0.160476 -0.559107 -0.560628 0.094068 0.078868 0.651470 0.113499 0.185708 -0.075030 -0.103599 -0.490022 0.403122 -0.555310 0.126398 0.264471 -0.529885 0.550141 -0.273632 -0.323839 -0.293832 0.338179 0.049091 0.054641 0.953384 0.660592 -0.553120 -0.229692 -0.123012 0.179723 0.253149 0.706782 -0.418730 -0.157117 0.236629 0.056765 -0.089743 -0.089272 0.254991 -0.094375 0.323937 -0.582227 -0.329559 0.250811 0.498348 -0.056470 0.032938 -0.095998 -0.159186 -0.364942 0.638297 0.130221 0.296203 -0.439022 -0.713801 0.211629 -0.375880 -0.002638 0.136261 -0.308488 -0.216180 0.022088 0.058237 0.564166 0.388435 -0.256606 0.457567 -0.677739 -0.611410 -0.289430 -0.112892 0.057987 -0.329459 0.402152 -0.349707 0.043800 -0.184853 0.290390 -0.130924 -0.099440 -0.088009 0.078710 0.148519 0.162751 -0.408869 0.574762 -0.021024 -0.193467 -0.133919 0.017599 -0.013762 0.338900 -0.246607 -0.265666 -0.292337 0.331363 -0.281967 0.479404 -0.110362 0.285720 0.272261 -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 >&) = 3.254950 -2.924729 -1.598332 4.770610 0.658268 -0.646485 0.953290 1.238343 0.924423 -7.455865 -2.675996 3.498536 0.356693 -0.316100 0.292507 1.603957 1.721122 1.675641 -7.283060 0.960822 1.182968 0.130063 -1.472097 -0.598785 -0.013247 -2.010422 1.567275 1.922295 0.683106 4.214976 -2.032761 1.711975 4.007800 -0.474803 1.748412 3.587420 0.858228 -0.110052 -1.142710 -0.706078 7.015650 2.074175 -0.713963 2.271762 0.603011 5.015233 0.666386 6.924871 2.447279 -2.058606 2.845359 -1.856639 -2.083859 -0.550226 -5.358512 1.451173 3.474597 2.387301 -3.119009 2.391435 -1.044045 1.126690 1.987326 0.441341 5.857149 2.353149 3.786987 4.107748 5.135049 -3.245410 0.619921 0.928640 2.166153 0.653555 3.474016 -3.563691 -2.477403 -5.179727 0.350845 -4.653116 -0.452215 -0.744142 5.489414 -4.293376 0.263210 1.812102 0.994945 4.738279 -2.749173 0.569932 -5.460517 -0.011063 0.414852 6.845392 0.384311 0.652937 -0.893077 1.897738 -0.174258 1.697121 1.069141 -4.436080 -2.167827 -8.395330 -3.356541 -2.901049 -0.225100 0.766760 -5.510502 -0.416999 1.498553 2.923699 -7.035003 -0.322443 1.431308 1.011476 4.046583 1.067952 -2.132749 0.093184 -0.141640 1.094817 1.728523 -2.291095 0.602712 -2.892834 1.161000 1.293159 1.416211 0.765172 -5.248548 -0.881865 1.340252 0.292313 -0.051030 1.578325 1.951636 -3.025084 2.424819 -3.189623 3.548534 -5.483691 -1.276517 -1.877648 -3.681075 -1.910140 7.251283 2.782022 3.903123 0.349011 -2.957439 -0.961042 -5.794313 -9.011823 0.719211 -0.464767 0.791747 1.072853 -0.864570 0.791352 -2.699682 0.328633 1.668128 -2.505205 -2.010654 -0.709106 1.741076 -0.049652 -1.304048 -2.278927 -0.082516 2.422667 0.582571 3.889395 -1.856662 -6.840724 -5.937417 -2.702478 4.005700 -1.896237 0.630243 -1.438864 -1.179473 -4.845278 0.836842 -3.337548 0.785211 -1.160956 -2.954387 -5.435434 1.647129 -1.247117 0.498788 1.030114 -4.035077 1.302828 1.020486 2.457997 0.283116 0.862921 0.421520 -5.789921 -4.360168 0.337929 -1.789400 6.154708 2.056331 0.222927 -1.857123 -1.886235 -4.006947 3.645880 -5.587540 2.160092 0.821160 -2.794970 3.253198 -3.221650 -1.200856 -3.460146 2.416606 1.011449 -4.785170 6.953109 4.188946 -3.723888 -0.620882 -1.889228 1.979723 1.471476 4.350494 -3.430011 -2.323454 1.657374 -0.025056 -0.311503 -1.637015 1.770018 -0.899997 0.844574 -5.107070 -2.383224 3.122196 2.727272 -0.587320 0.339097 1.571336 -0.717212 -0.293195 5.611323 1.823678 0.852113 -3.529788 -9.735656 2.014141 1.482313 -0.329145 1.067803 -4.015105 -1.383418 1.026508 -0.981155 4.414120 1.902662 -0.481764 4.151532 -5.752556 -4.643984 -2.616635 -0.875577 0.900092 -1.144023 2.153982 -2.067093 0.479537 -0.870878 1.530526 -1.109603 -2.291683 -1.142952 1.718721 3.209328 0.480966 -1.448394 4.686239 0.682903 -1.816674 -0.577109 -0.328338 -0.884290 1.704888 -3.796267 -1.092260 -0.149061 2.018197 -3.246001 2.437365 -0.701833 1.215593 0.939844 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = 0.644075 -0.470409 -0.537954 0.985011 0.073884 -0.051809 0.071615 -0.132789 0.000000 -1.230003 -0.325896 0.963924 0.191763 -0.059766 0.040706 0.620372 0.306922 0.010555 -0.642191 0.206455 0.006138 -0.328790 -0.544786 0.144500 -0.099346 -0.633747 0.678251 0.355940 -0.037484 0.709500 -0.312291 0.577368 0.652339 -0.197161 0.332207 0.524781 0.053006 -0.089466 -0.490000 -0.008900 1.178757 0.085164 0.053206 0.297605 0.068699 0.887750 -0.026861 1.513041 0.644951 -0.286579 0.858858 0.502346 -0.305599 0.016839 -1.069636 0.217272 0.270302 -0.043223 -0.469094 0.319139 -0.577407 0.274570 0.337557 0.460081 1.205225 0.468437 0.903997 0.781423 0.935480 -0.609211 0.079127 0.446570 0.378138 0.202853 0.937730 -0.346998 -0.567128 -0.271294 -0.007527 -0.203665 0.040700 -0.178963 1.347018 -0.654019 -0.552320 0.159792 0.394296 0.978638 -0.623838 0.412275 -0.896888 0.086275 0.034978 1.182522 0.144758 0.343652 -0.412056 0.240792 -0.184792 0.330759 0.121456 -0.857892 -0.286300 -1.088521 -1.042207 -0.565848 0.031550 0.040351 -1.291197 0.240711 0.393842 0.673788 -1.141951 0.048250 0.208408 0.188928 1.555493 0.699186 -0.502852 -0.119236 0.303738 0.411689 0.277311 -0.027780 0.295010 -0.624156 0.463087 0.189131 0.344191 0.004861 -1.198110 -0.070168 0.253290 -0.011125 0.102544 0.278852 0.482282 -0.645980 0.451725 -0.267339 0.623990 -1.179228 -0.521321 -0.666801 -0.720368 -0.282901 1.309167 0.843102 1.202118 0.068688 -0.539922 -0.164636 -1.308752 -1.454669 -0.276644 -0.244824 -0.200826 0.275128 -0.123891 0.247721 -0.432140 0.249793 0.559477 -0.630432 -0.395641 -0.125906 0.277318 0.032030 -0.254960 -0.515268 -0.213765 -0.003352 0.288809 0.909821 -0.054707 -1.878983 -1.248523 -0.502612 0.633494 -0.371756 0.186517 -0.284800 -0.385474 -0.761656 0.034600 -0.502943 0.035695 -0.103374 -0.531364 -0.913247 0.374090 -0.126968 -0.376189 -0.015720 -0.851680 0.241973 0.187425 0.032485 0.264300 0.226050 -0.244381 -0.971836 -0.840167 0.221667 -0.325386 1.029201 0.633589 -0.010618 -0.214881 -0.491111 -0.978117 0.417282 -1.351233 0.371936 0.461981 -0.620752 0.391055 -0.816222 -0.267205 -0.495260 0.413470 -0.055256 -1.069360 1.319805 0.921482 -0.770978 -0.190321 -0.239280 0.524705 0.140330 0.828138 -0.560434 -0.126224 0.178131 0.429907 -0.096172 0.182583 0.413165 -0.278365 -0.028174 -0.831030 -0.476261 0.605701 0.671179 -0.126758 -0.323654 0.099161 -0.339712 0.066669 0.757414 0.454557 0.182178 -0.547237 -1.899694 0.191691 -0.573106 -0.525036 0.490739 -0.753092 -0.234293 0.181065 -0.558833 0.875843 -0.718673 -0.075522 0.720225 -1.066196 -0.879312 -0.524072 -0.384764 -0.097420 -0.175064 0.667002 -0.521512 -0.097262 -0.218922 0.308731 -0.632611 -0.278101 0.218929 0.309872 0.554964 0.237036 -0.149551 0.797850 0.389980 -0.198451 -0.364796 0.070764 -0.334021 0.366527 -1.033606 -0.191457 -0.042804 0.369481 -0.522388 0.334245 -0.026310 0.320672 0.082534 -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.685236 -0.646425 -0.164297 0.905444 0.216285 -0.357790 0.191190 0.257037 0.059994 -1.347480 -0.507258 0.083447 0.084829 -0.311133 0.320548 0.376542 0.339691 0.160238 -1.448286 0.431923 0.272914 -0.095893 -0.397424 -0.097338 -0.004734 -0.638739 0.052915 0.594994 -0.066301 0.850293 -0.513790 0.380593 0.735980 -0.040576 0.592795 0.806371 0.143085 -0.143485 0.053612 0.344504 1.496495 0.371059 -0.241461 0.152196 0.401826 1.059616 -0.009903 1.280557 0.202876 -0.345452 0.842419 -0.422536 -0.348270 -0.005027 -1.172830 0.287191 0.935945 0.462289 -0.760563 0.550973 -0.674670 0.251073 0.417431 0.234753 1.385549 0.447641 0.746417 0.704227 1.240641 -0.568080 0.067556 0.312162 0.605045 -0.040733 0.503210 -0.488752 -0.383132 -1.692057 0.129744 -0.851878 0.014607 -0.090442 0.926542 -0.782984 -0.020679 0.658914 0.194665 1.001248 -0.763511 0.047497 -1.053940 0.073150 0.120562 1.424660 -0.025627 0.214591 -0.070978 0.503129 0.006126 0.498557 0.116618 -0.941276 -0.818650 -1.880431 -1.048368 -0.502229 -0.122458 -0.164449 -1.370057 0.002005 0.845271 0.423557 -1.320269 0.107040 0.321003 0.289312 0.683870 0.024297 -0.582709 -0.127624 -0.068724 0.479581 0.370578 -0.357453 0.164604 -1.024638 0.523766 0.417046 0.377631 -0.134399 -0.765223 -0.001272 0.309759 0.003188 -0.135193 0.219687 0.242122 -0.748987 0.490860 -0.686895 0.879400 -1.267839 -0.131811 -0.788695 -0.685027 -0.202627 1.506325 0.670307 0.627994 0.295335 -0.743585 0.021422 -1.280823 -1.827774 -0.032398 -0.239744 0.246818 -0.004203 -0.187378 0.053267 -0.299156 -0.023859 0.265269 -0.738556 -0.370539 -0.303967 0.301702 0.068491 -0.344958 -0.550124 -0.002145 0.792206 0.056501 0.691559 -0.389030 -1.109503 -1.116275 -0.713050 0.761226 -0.313374 0.146225 -0.297073 -0.136979 -1.228842 0.496679 -0.646301 0.151937 -0.359739 -0.555263 -1.050531 0.197030 -0.271458 0.081540 -0.027412 -0.828186 0.261162 0.035623 0.323340 0.177148 0.206894 -0.000696 -1.151127 -1.132126 -0.028161 -0.062662 1.240495 0.375619 0.099208 -0.152272 -0.381138 -0.848005 0.811897 -1.031544 0.299462 0.363662 -0.908869 0.786107 -0.640929 -0.510058 -0.692959 0.513281 0.045130 -0.569713 1.571783 0.966719 -0.986513 -0.335778 -0.674688 0.497849 0.344246 1.185620 -0.467807 -0.102855 0.274918 0.273241 -0.160832 -0.250257 0.506276 -0.251128 0.347908 -1.044528 -0.626326 0.623756 0.865020 -0.098755 0.076635 0.037374 0.046481 -0.242601 1.073802 0.256376 0.161027 -0.645386 -1.770732 0.308026 0.122808 -0.061830 0.312254 -0.796900 -0.408404 -0.071935 0.094917 1.084758 0.772702 0.003107 0.860622 -1.026765 -1.057943 -0.617098 -0.035147 -0.006666 -0.472397 0.483614 -0.608284 0.015855 -0.190494 0.480603 -0.115337 -0.438969 -0.588433 0.193778 0.521573 0.270445 -0.526216 0.991959 0.229765 -0.362960 -0.322188 0.066518 -0.147657 0.556607 -0.345279 -0.415612 -0.295476 0.415671 -0.574670 0.652556 -0.108477 0.438613 0.283207 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.442071 -0.374419 -0.039787 0.543497 0.174825 -0.354320 0.131606 0.244310 0.013195 -0.889013 -0.361226 -0.151876 0.015809 -0.320377 0.284075 0.202753 0.324978 0.248524 -1.032474 0.368121 0.217502 -0.002194 -0.335532 -0.106394 0.000373 -0.391527 -0.228395 0.396151 -0.027201 0.595918 -0.441341 0.205096 0.502110 -0.012814 0.547793 0.621157 0.143225 -0.129278 0.254028 0.299892 1.130819 0.246277 -0.114001 0.082972 0.418180 0.752145 -0.057003 0.753731 0.037787 -0.235575 0.546086 -0.541302 -0.174563 0.065190 -0.865471 0.220871 0.685798 0.429325 -0.677952 0.454829 -0.424080 0.202819 0.311597 0.053956 0.982110 0.280987 0.335999 0.480063 0.895510 -0.301284 0.083824 0.104843 0.494226 -0.095102 0.185462 -0.293047 -0.076088 -1.478130 0.073796 -0.722081 0.154318 -0.002315 0.639702 -0.588551 0.212295 0.612988 0.063667 0.652035 -0.520035 -0.150899 -0.779625 0.023495 0.084432 0.861572 -0.049091 0.089417 0.026394 0.404226 -0.026553 0.329457 -0.025490 -0.690982 -0.707662 -1.500840 -0.783154 -0.314976 -0.194729 -0.233438 -0.914493 -0.105852 0.743641 0.312554 -0.956688 0.100653 0.180541 0.109369 -0.001120 -0.113375 -0.456059 -0.108419 -0.239047 0.380584 0.213132 -0.255664 0.043304 -0.829845 0.260894 0.319794 0.320934 -0.118086 -0.342158 0.040306 0.207278 0.002210 -0.253629 0.118465 0.057928 -0.514416 0.351389 -0.541408 0.634524 -0.808759 -0.015751 -0.613124 -0.487347 -0.121439 1.082648 0.394098 0.305363 0.280712 -0.530867 0.063443 -0.888164 -1.237462 0.129756 -0.257248 0.296066 -0.060285 -0.128578 -0.076247 -0.149339 -0.152706 0.113582 -0.575291 -0.264129 -0.294548 0.240930 0.020652 -0.283619 -0.451846 0.073802 0.827820 -0.039435 0.292028 -0.437892 -0.399019 -0.666051 -0.487871 0.538277 -0.195889 0.174004 -0.118306 -0.008010 -0.847094 0.438418 -0.507464 0.094763 -0.421936 -0.269602 -0.738532 0.071041 -0.241745 0.114607 -0.063401 -0.531310 0.277814 0.017515 0.260274 0.030746 0.119368 0.076784 -0.794711 -0.812866 -0.085916 0.062194 0.762372 0.308886 0.145147 -0.157251 -0.222203 -0.515698 0.610220 -0.662124 0.197611 0.330838 -0.722319 0.621764 -0.410272 -0.377577 -0.455839 0.391565 0.057616 -0.481047 1.008005 0.632024 -0.790838 -0.230899 -0.644007 0.392113 0.263880 0.906660 -0.223736 0.043133 0.251665 0.098825 -0.114564 -0.342024 0.347599 -0.104048 0.393121 -0.796369 -0.429649 0.497988 0.608816 -0.043118 0.113989 -0.025480 0.153513 -0.201478 0.845900 0.110036 0.172107 -0.462041 -1.109270 0.221460 0.327882 0.184079 0.228862 -0.457026 -0.251841 -0.182028 0.143722 0.760677 0.774498 0.060140 0.615143 -0.677467 -0.777281 -0.388371 0.111175 0.060567 -0.443343 0.329495 -0.463759 -0.002447 -0.195426 0.480364 0.079126 -0.265192 -0.691299 0.142780 0.315372 0.245905 -0.469373 0.709017 0.056402 -0.318731 -0.134873 0.022594 0.044713 0.409112 -0.134411 -0.386953 -0.290143 0.308199 -0.455988 0.580083 -0.151230 0.398186 0.275698 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.213471 -0.128090 -0.183379 0.419053 0.053088 -0.247722 0.087856 -0.001431 -0.064039 -0.462932 -0.092409 0.239586 0.053497 -0.203436 0.032418 0.176935 0.117910 0.155611 -0.255549 0.202103 0.006071 -0.063883 -0.396336 -0.077731 -0.076603 -0.237966 0.106923 0.263756 -0.064181 0.330507 -0.175608 0.115364 0.257039 -0.028796 0.289591 0.345935 0.206209 0.015821 -0.045655 0.170923 0.590149 0.151329 -0.058602 0.082323 0.235258 0.425741 0.090148 0.337255 -0.146293 -0.102274 0.143519 0.154593 -0.090462 -0.078651 -0.494576 0.088046 0.241211 0.121257 -0.350966 0.285928 -0.279940 0.080682 0.194595 0.252871 0.569606 0.108961 0.243683 0.320098 0.527739 -0.197979 0.019502 0.129705 0.325707 -0.065641 0.341810 0.073553 -0.306637 -0.388411 -0.024806 -0.272709 0.049586 0.097518 0.480816 -0.324612 -0.048778 0.243869 0.158371 0.352254 -0.364040 -0.099747 -0.402898 -0.008863 -0.095026 0.658226 0.127795 0.162034 -0.107757 0.259005 0.059682 0.186107 -0.057742 -0.444431 -0.134946 -0.776227 -0.429877 -0.240256 -0.195327 -0.147983 -0.483049 -0.152620 0.369044 0.502201 -0.552807 0.088746 0.138957 -0.025359 0.367165 -0.192731 -0.205840 0.157071 -0.067448 0.087692 0.153461 -0.060013 0.010415 -0.166262 0.229831 0.079415 0.145519 0.029723 -0.456973 0.061374 0.157069 -0.044277 -0.086852 0.063608 0.011359 -0.382405 0.173915 -0.311769 0.355738 -0.476327 0.003609 -0.267504 -0.458174 -0.049630 0.390067 0.252485 0.354650 -0.044576 -0.244053 0.000395 -0.584557 -0.939124 0.152173 -0.088110 -0.023983 -0.050474 -0.064652 -0.079972 -0.196261 -0.035899 0.408645 -0.315066 -0.115951 -0.075016 0.321107 0.042842 -0.190159 -0.207289 -0.061284 0.247847 0.322502 0.253710 -0.237132 -0.580599 -0.458794 -0.206899 0.285050 -0.088917 0.016679 -0.055577 -0.214129 -0.478160 0.200261 -0.253547 0.188960 -0.229169 -0.051719 -0.405541 0.019116 -0.088832 -0.090964 -0.111325 -0.313452 0.116348 0.040435 -0.235168 0.007211 0.053413 0.086380 -0.293720 -0.357271 0.150240 0.025335 0.405814 0.289766 0.154143 -0.102221 -0.073682 -0.450649 0.271363 -0.455682 0.120142 0.267818 -0.384434 0.388504 -0.283298 -0.275920 -0.132270 0.248684 -0.019094 -0.178543 0.617463 0.503515 -0.425983 -0.128141 -0.074516 0.180777 0.162634 0.509833 -0.301875 -0.040394 0.166257 0.053995 -0.057721 -0.001240 0.176458 -0.089076 0.215202 -0.416492 -0.194086 0.256861 0.352266 -0.037009 -0.041118 -0.143624 -0.173433 -0.156956 0.424593 0.139185 0.198829 -0.318957 -0.536313 0.132407 -0.498247 -0.073229 0.130848 -0.141026 -0.115341 -0.003308 -0.174712 0.408556 -0.016577 -0.276039 0.336659 -0.523878 -0.469527 -0.232568 -0.068586 0.033482 -0.254903 0.378773 -0.257776 0.021133 -0.145395 0.261087 -0.135096 -0.100628 -0.030296 0.088391 0.121756 0.108944 -0.289816 0.420506 -0.023281 -0.117475 -0.126168 0.005949 -0.009247 0.238924 -0.404181 -0.235073 -0.217131 0.274350 -0.240328 0.355099 -0.100083 0.242577 0.267561 -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.881602 0.272598 0.213976 1.559852 0.597012 -1.164830 0.958304 1.797509 0.255524 -3.416483 -1.604012 1.045517 0.022805 -0.919519 0.150084 0.379947 1.082210 2.083385 -3.785400 0.753602 1.056954 1.134946 -0.571137 -1.468185 0.174462 -0.475753 -1.292221 0.905017 0.566831 2.542270 -1.457542 -0.141723 1.965051 0.066306 0.978890 2.446266 1.188092 -0.178765 0.851780 -0.576518 3.652921 1.298360 -0.257498 1.653094 1.210884 2.721941 -0.213093 2.128744 -0.701487 -1.108413 0.391683 -1.883917 -1.499949 -0.209818 -2.267258 1.356968 2.690319 2.398558 -1.936483 2.052968 -0.106486 0.597303 1.172862 -0.971310 1.887521 1.939467 -0.086325 1.742107 3.700300 -1.605967 0.180006 0.152816 1.696635 -0.010669 0.877418 -1.489585 -0.349190 -3.905527 -0.036840 -4.118495 0.475406 -0.273987 4.230703 -2.673254 1.777935 2.360845 0.594067 1.849012 -1.348207 -1.011770 -2.389085 0.222003 -0.572713 3.831260 -0.074103 0.478637 -0.273972 1.225114 0.384120 1.083751 -0.035798 -1.874878 -2.270570 -4.932226 -1.627058 -1.277435 -0.860259 -0.208361 -2.471164 -0.913361 2.348833 2.180095 -4.137464 -0.258562 1.081998 0.517487 -0.836211 0.149618 -1.652657 0.283629 -1.355760 0.099876 0.098176 -1.870768 -0.518756 -0.832422 -0.976549 0.476484 0.879363 0.002707 -2.623647 -0.462453 0.134837 -0.481671 -0.535111 0.415851 0.006692 -1.900861 1.183296 -2.467140 1.884956 -2.677522 -0.390062 -0.763754 -2.329889 -0.898582 2.794999 0.538839 0.954643 0.355408 -0.819411 -1.093752 -2.436173 -3.434821 1.634788 -0.495482 1.660078 0.158631 -0.369724 -0.673453 -1.314801 -1.083059 0.262383 -1.587837 -0.576518 -0.707375 3.797508 -0.838650 -0.715192 -2.134975 0.470463 2.891951 0.111800 0.221455 -1.973403 -0.738061 -2.369720 -1.669592 2.218303 -0.780635 0.416984 -0.442164 0.010456 -1.565502 0.925765 -1.811160 0.889183 -0.949901 -1.066805 -3.040379 0.875888 -0.916535 -0.405072 0.637403 -1.799348 0.923779 0.524816 1.071075 -0.495223 0.008497 0.832946 -3.136815 -2.528195 -0.538702 0.098202 1.916361 1.716676 0.870227 -1.541038 -0.665341 -1.696992 2.248118 -2.080989 0.828973 0.115919 -0.950128 2.594518 -1.395604 -0.452013 -2.765983 1.401090 0.747145 -2.590472 3.397670 1.672971 -2.312398 -0.732248 -2.008544 0.858902 1.287726 3.011540 -1.636359 -1.436748 1.678527 -1.209431 -0.352833 -1.828752 1.082703 -0.269605 1.967197 -2.617373 -0.862955 1.581574 1.918314 -0.528045 1.303942 0.938380 0.233997 -0.063965 3.163514 0.944053 0.303527 -2.179348 -3.687622 1.257325 0.934966 1.300721 0.084671 -1.187402 -1.130649 0.535321 0.870259 2.384993 2.288088 0.084614 2.213537 -2.832030 -2.690346 -0.162281 0.520632 1.487539 -1.562046 0.783096 -1.382951 0.275668 -0.288050 1.304828 0.706709 -1.342946 -2.264525 0.547125 2.194825 0.750153 -1.430867 2.938727 -0.248403 -1.360973 0.702375 -0.624853 1.094506 0.116571 -0.670937 -0.509154 -0.666663 1.094721 -1.901795 2.978556 -0.277410 0.419360 1.235659 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.510425 -0.197784 -0.133132 0.748765 0.033607 -0.621184 0.302058 0.429708 -0.161833 -1.018346 -0.205986 0.012959 0.118642 -0.436329 0.093327 0.231152 0.156216 0.379258 -1.447513 0.422051 0.293290 0.085151 -0.585027 -0.466704 -0.090266 -0.449838 -0.062242 0.705017 -0.125800 0.822447 -0.427477 0.039836 0.612687 0.001294 0.682395 0.868664 0.388228 0.051833 0.131526 0.450254 1.278131 0.715816 -0.586355 -0.027704 0.521020 1.003690 0.319323 0.192171 -0.971184 -0.302622 -0.052199 0.026413 -0.362496 -0.291389 -0.877660 0.112987 1.056035 0.865675 -0.787035 0.771809 -0.658019 0.103109 0.488444 0.530821 1.155649 0.170291 0.506288 0.636858 1.191552 -0.516324 0.100760 0.064087 0.531543 -0.459609 0.479330 -0.008118 -0.629170 -1.783913 0.199562 -1.417467 -0.116970 0.403978 0.702288 -0.760283 0.348211 0.757949 0.360752 0.739958 -0.933446 -0.405865 -0.856119 -0.112358 -0.283618 1.941599 0.134383 0.230774 0.143151 0.857460 0.401205 0.445658 0.041968 -0.934994 -0.402595 -1.831607 -0.636230 -0.505947 -0.449857 -0.194934 -0.823625 -0.502547 1.209920 0.796778 -1.296818 0.280346 0.386320 0.132908 0.407455 -0.926372 -0.396285 0.531079 -0.563720 0.031665 0.477152 -0.521629 0.007457 -0.090217 0.459210 0.364717 0.255503 0.142795 -1.119305 0.188093 0.469127 -0.381846 -0.260526 0.222689 -0.087951 -0.796444 0.370860 -1.118866 0.957952 -1.033135 0.455616 -0.386869 -0.886056 -0.103835 0.299829 0.438992 -0.116120 -0.097392 -0.514930 0.219561 -1.103429 -2.042967 0.483129 0.200451 0.173343 -0.316457 -0.249408 -0.235860 -0.454445 -0.125860 0.626630 -0.619355 -0.227733 -0.158449 1.186626 0.233733 -0.450273 -0.181762 0.053353 0.830409 0.655669 0.534639 -0.698396 -0.619608 -1.033018 -0.503131 0.737342 -0.135968 -0.200045 -0.188388 -0.373420 -1.170864 0.735563 -0.599888 0.665532 -0.538715 -0.020432 -0.956351 0.088672 -0.251364 0.003590 -0.143505 -0.620357 0.144068 -0.062691 -0.510191 -0.115621 -0.087550 0.549570 -0.663713 -0.773725 0.312943 0.158371 0.924575 0.349995 0.322088 -0.140263 -0.023774 -0.722278 0.785638 -0.318968 0.295471 0.197422 -0.899449 1.032672 -0.436489 -0.627835 -0.469746 0.569268 0.092971 0.481589 1.717651 1.066127 -0.841224 -0.280436 -0.193988 0.286854 0.442308 1.047587 -0.715432 -0.408135 0.381213 -0.159667 -0.134120 -0.087662 0.352980 -0.192878 0.557666 -0.900437 -0.364985 0.527706 0.744359 -0.039253 0.398710 -0.222702 -0.382569 -0.612342 1.040354 0.211801 0.374762 -0.717291 -0.789144 0.443318 -1.055081 0.141983 -0.234974 -0.129193 -0.436348 -0.051010 0.368670 0.880056 1.129161 -0.874369 0.748243 -1.205084 -1.068898 -0.675586 0.080991 0.172861 -0.602387 0.405288 -0.495817 0.254263 -0.191589 0.541899 0.091652 -0.359224 -0.367511 0.110251 0.291670 0.201351 -0.979659 1.042669 -0.170217 -0.285892 -0.253359 -0.021132 0.000000 0.581972 -0.150821 -0.494014 -0.472485 0.703777 -0.534930 0.803392 -0.077594 0.405089 0.693113 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = 0.198645 -0.318679 -0.012492 0.420009 0.118331 -0.170751 0.083804 0.015956 0.004901 -0.521258 -0.045986 0.027481 0.003844 -0.125221 0.078761 0.143590 0.184736 0.091809 -0.494245 0.174669 0.045563 -0.034216 -0.218925 -0.082925 -0.014644 -0.289391 0.233496 0.318184 -0.033595 0.340209 -0.253258 0.098609 0.277262 0.009708 0.360690 0.346707 0.261571 -0.020069 -0.129555 0.202068 0.675271 0.164735 -0.163055 0.042834 0.248211 0.463041 0.228819 0.259463 0.044890 -0.120030 0.108955 -0.010617 -0.086607 -0.117175 -0.558383 0.093422 0.327063 0.255590 -0.410104 0.271068 -0.243683 0.099031 0.176943 0.259064 0.585165 -0.021794 0.329407 0.292764 0.512058 -0.262543 -0.002281 0.120759 0.353523 -0.009145 0.330658 -0.057542 -0.277542 -0.818710 0.019575 -0.309299 0.029333 0.087092 0.159797 -0.301524 0.017543 0.327463 0.005331 0.357959 -0.344166 -0.100222 -0.486673 0.005731 0.066358 0.687582 0.082800 0.061866 0.043519 0.325101 0.086254 0.235208 0.154179 -0.480816 -0.111249 -0.852790 -0.413093 -0.266667 -0.111982 -0.157909 -0.435766 -0.067042 0.416862 0.347415 -0.516962 0.112143 0.122969 0.058621 0.299755 -0.523760 -0.027277 0.099438 -0.094258 0.144256 0.181551 -0.204768 0.051370 -0.193375 0.311715 0.174536 0.200422 -0.011514 -0.214760 0.028234 0.169446 0.075377 -0.132311 0.046965 0.011014 -0.400297 0.205754 -0.365917 0.427537 -0.406579 0.093893 -0.269822 -0.264738 -0.073163 0.515888 0.107071 0.205821 0.050225 -0.351625 0.084206 -0.502810 -0.989000 0.135133 0.017760 -0.012140 0.026425 -0.103819 -0.006154 -0.184429 -0.079142 0.288313 -0.323980 -0.157375 -0.073012 -0.072833 0.052063 -0.179506 -0.170660 0.058175 0.415015 0.254858 0.293617 -0.263570 -0.526393 -0.417465 -0.277760 0.303143 -0.128817 0.014511 -0.030516 -0.181645 -0.558404 0.332622 -0.296751 0.206905 -0.255090 -0.155918 -0.431757 0.036278 -0.169248 0.111730 -0.012874 -0.348347 0.129972 -0.208864 -0.151541 0.012736 0.028065 0.132188 -0.415127 -0.428825 0.075641 0.028845 0.496879 -0.008038 0.091915 -0.058375 -0.125164 -0.310319 0.316150 -0.383312 0.126358 0.232633 -0.476835 0.338716 -0.207815 -0.244546 -0.151822 0.273724 0.062337 0.119699 0.737606 0.540623 -0.457796 -0.178729 -0.111935 0.191314 0.138937 0.544662 -0.310692 -0.064466 0.148442 0.097406 -0.053604 -0.071097 0.194634 -0.029874 0.173431 -0.495338 -0.297711 0.204527 0.370661 -0.022461 0.019196 -0.011864 -0.100390 -0.337342 0.527835 0.087174 0.304586 -0.323898 -0.493116 0.147674 -0.227812 0.030052 0.134429 -0.252626 -0.129930 -0.029955 0.055487 0.435515 0.367171 -0.194792 0.383365 -0.502102 -0.459394 -0.266396 -0.154916 0.005142 -0.255398 0.323962 -0.291197 0.010564 -0.205028 0.240997 -0.147378 -0.013476 -0.024729 0.083758 0.075694 0.148308 -0.284413 0.431702 0.009665 -0.173869 -0.117758 0.049024 -0.064772 0.330228 -0.171167 -0.243240 -0.191858 0.247012 -0.231272 0.275562 -0.121732 0.249626 0.156483 -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 >&) = 2.905287 -1.861945 -0.958567 3.732520 0.672960 -0.642800 0.961858 1.295300 0.593896 -6.194880 -2.495120 1.799929 0.487211 -0.324558 0.579558 1.483007 1.531302 1.341902 -6.040946 0.776876 1.310068 0.140033 -1.161299 -0.383849 -0.010901 -1.934817 0.316032 1.745587 0.431467 3.853432 -1.798531 1.553315 3.445813 -0.391311 1.514489 3.296156 0.836406 -0.263830 -0.332634 -0.224536 5.893834 1.540659 -0.671061 1.615072 0.611655 4.445322 0.024684 5.791557 0.686898 -1.841139 2.766884 -2.304673 -1.865286 -0.210675 -4.376693 1.395171 3.593604 2.477683 -2.680539 2.324975 -1.385157 1.059859 1.752687 0.196641 4.766709 2.538601 2.698233 3.241814 4.820975 -2.884803 0.508784 0.912884 1.604439 0.238096 2.159078 -2.765669 -1.366515 -4.921309 0.513394 -4.183516 -0.206466 -0.698686 5.226360 -3.675698 0.203092 2.082290 0.880272 4.026400 -2.570526 0.477792 -4.476990 0.082152 0.281421 5.804615 0.090025 0.764133 -0.655075 1.703176 -0.042500 1.600551 0.598357 -3.564089 -2.905834 -6.925318 -3.372166 -2.303979 -0.232548 0.558163 -5.029266 -0.403959 2.012728 2.064312 -6.039245 -0.073632 1.273433 1.350005 2.971128 1.764800 -2.516032 -0.273334 -0.254396 1.021520 1.315081 -1.938521 0.710296 -3.105892 0.772130 1.188140 1.276691 0.200290 -4.592338 -0.527533 0.962746 -0.404183 -0.067856 1.357464 1.489230 -2.548365 2.128347 -2.932946 3.155321 -5.078910 -1.215336 -1.941930 -3.578795 -1.511995 6.149690 2.616232 2.899744 0.619779 -2.621836 -0.795191 -5.034594 -6.987463 0.283428 -0.424694 1.243715 0.801245 -0.866200 0.494305 -2.207237 0.093068 1.141621 -2.426574 -1.669913 -0.860340 2.606796 -0.081959 -1.184937 -2.310380 0.097007 2.444840 -0.037730 3.050311 -1.639789 -4.646624 -5.078154 -2.565992 3.460403 -1.573559 0.623552 -1.303655 -0.701595 -4.399141 0.958579 -2.761654 0.557340 -0.907081 -2.523571 -4.802646 1.623573 -1.080791 -0.257789 0.931697 -3.501940 1.094244 1.037458 2.059483 0.451318 0.599965 0.168971 -4.763961 -4.137075 0.055820 -1.149169 4.869416 2.050099 0.221992 -1.130123 -1.745471 -3.371667 3.324925 -4.120853 1.723477 0.768895 -2.256024 2.896911 -2.904467 -1.203141 -3.439142 2.046933 0.803362 -3.975057 5.946323 3.347634 -3.432184 -0.880827 -2.310081 1.884838 1.296726 3.993035 -2.482304 -1.806741 1.566401 0.118504 -0.405643 -1.527423 1.612248 -0.845505 0.994069 -4.270105 -2.024222 2.746993 2.791710 -0.650910 0.669289 1.379845 -0.256653 -0.024601 4.634384 1.542110 0.253013 -2.673017 -7.812078 1.677029 0.962834 -0.202975 0.628907 -3.346889 -1.318175 0.797807 -0.312690 3.973621 2.346998 -0.067462 3.699339 -4.664010 -4.149991 -2.048939 -0.322523 0.834737 -1.328793 1.387964 -2.076090 0.467364 -0.468799 1.508558 -0.451507 -2.424408 -1.889291 1.203220 3.111294 0.266726 -1.317087 4.268461 0.627017 -1.378324 -0.577176 -0.149621 -0.310649 1.402464 -2.494588 -1.008228 -0.300982 1.727197 -2.839580 2.506527 -0.483927 0.867609 1.192935 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.398420 -0.478153 -0.012757 0.545274 0.339297 -0.098755 0.061747 -0.012653 0.036891 -0.789086 -0.309822 0.154841 -0.034369 -0.145360 0.203138 0.197969 0.395033 -0.013548 -0.494953 0.203461 -0.019528 -0.192133 -0.333517 0.095662 -0.009219 -0.446788 0.238204 0.391306 -0.025747 0.399861 -0.321082 0.233164 0.362920 0.017377 0.474371 0.434976 0.202692 -0.138192 -0.110898 0.107933 1.012279 0.029098 0.043304 0.240134 0.373309 0.592312 -0.025537 0.937862 0.447288 -0.131008 0.619607 -0.252949 -0.112443 0.024299 -0.887936 0.220644 0.376221 0.005177 -0.562235 0.264620 -0.284537 0.183833 0.159288 0.144426 0.803772 0.167970 0.445774 0.369560 0.675472 -0.349673 -0.103614 0.371208 0.530566 0.269980 0.241224 -0.254371 -0.144357 -0.715938 0.034404 -0.108225 0.138117 -0.214417 0.543592 -0.327966 -0.193587 0.357269 -0.082389 0.487378 -0.341540 0.020604 -0.689860 0.094409 0.177078 0.554458 0.010172 0.134423 -0.017052 0.177057 -0.084838 0.407538 0.039855 -0.577075 -0.429216 -1.127782 -0.717864 -0.295255 0.003908 -0.254718 -0.725704 0.070525 0.314539 0.304124 -0.561158 -0.003337 0.125517 0.089547 0.390978 0.075532 -0.294277 -0.261041 0.124949 0.338686 0.143696 -0.033373 0.093504 -0.725068 0.370665 0.152690 0.315085 -0.135605 -0.250661 -0.030304 0.131536 0.182571 -0.146388 -0.048114 0.090323 -0.478585 0.308856 -0.172187 0.456054 -0.666270 -0.194990 -0.601613 -0.373016 -0.104192 1.132568 0.329398 0.726539 0.326447 -0.414597 -0.041784 -0.704234 -1.081969 -0.047933 -0.237759 0.083745 0.080388 -0.075713 0.106527 -0.173403 -0.145073 0.218546 -0.447633 -0.245436 -0.248401 -0.192747 -0.057091 -0.176453 -0.403641 0.073493 0.483904 -0.015204 0.364668 -0.240534 -0.874182 -0.501559 -0.446062 0.351632 -0.229331 0.182508 -0.001243 -0.096888 -0.682186 0.230590 -0.381145 0.029220 -0.317856 -0.438216 -0.547558 0.102965 -0.207864 0.085425 0.029526 -0.501937 0.232733 -0.020534 0.244336 0.144899 0.210005 -0.146548 -0.696852 -0.706524 -0.082567 0.010361 0.737507 0.217069 0.015138 -0.048404 -0.314433 -0.516941 0.396816 -0.805078 0.129341 0.419825 -0.575423 0.315919 -0.374804 -0.252333 -0.297559 0.312132 0.069777 -0.568102 0.757782 0.582103 -0.676660 -0.332690 -0.460886 0.287727 0.121841 0.791829 -0.221646 0.117263 0.180619 0.297938 -0.090606 -0.165036 0.321034 0.031166 0.207329 -0.757014 -0.549119 0.342076 0.535706 -0.062455 -0.104215 0.054052 0.164564 -0.097033 0.748268 0.121925 0.232468 -0.362987 -1.165692 0.117100 0.222654 -0.113503 0.409440 -0.537403 -0.238318 -0.123812 -0.176970 0.634641 0.121811 0.185607 0.535930 -0.451377 -0.562396 -0.263621 -0.188538 -0.030969 -0.328958 0.430747 -0.431694 -0.106943 -0.299770 0.271816 -0.205963 -0.092904 -0.285942 0.089571 0.201054 0.216002 -0.105579 0.503331 0.172820 -0.239578 -0.151327 0.112240 0.000533 0.459975 -0.486543 -0.326671 -0.260596 0.130282 -0.271743 0.295263 -0.067596 0.388985 0.113022 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.250988 -0.409820 -0.023262 0.419093 0.223111 -0.094646 0.044954 -0.074883 0.068107 -0.531701 -0.131089 0.184121 -0.028488 -0.112253 0.108138 0.150896 0.252273 0.004283 -0.243484 0.168318 -0.052888 -0.112246 -0.240470 0.052431 -0.006740 -0.307478 0.292024 0.268812 -0.020201 0.268904 -0.228140 0.146694 0.244363 0.000000 0.304974 0.294655 0.230671 -0.067070 -0.161906 0.110093 0.687236 0.001841 0.043163 0.188398 0.261866 0.402799 0.082666 0.659639 0.443404 -0.084922 0.396468 -0.083348 -0.066379 -0.035529 -0.625586 0.162190 0.201587 -0.017113 -0.383368 0.179464 -0.171716 0.120355 0.114794 0.161544 0.555206 0.084999 0.318335 0.255310 0.495643 -0.237245 -0.080506 0.269305 0.437768 0.217493 0.313282 -0.164834 -0.202761 -0.467611 -0.031223 0.039571 0.102647 -0.129132 0.297907 -0.240228 -0.154624 0.241336 -0.063859 0.333086 -0.226033 0.011810 -0.473814 0.082002 0.153208 0.414989 0.035010 0.104801 -0.056064 0.124636 -0.047112 0.272769 0.099106 -0.424487 -0.195217 -0.772857 -0.501919 -0.230194 -0.030641 -0.202387 -0.521409 0.062300 0.169478 0.264246 -0.401846 0.008221 0.100125 0.035718 0.400888 -0.098399 -0.091149 -0.126263 0.127695 0.230059 0.084433 -0.052116 0.045112 -0.438591 0.296102 0.110171 0.208603 -0.105051 -0.109196 -0.026063 0.071526 0.228387 -0.088403 -0.042301 0.052610 -0.392653 0.204571 -0.121108 0.311949 -0.428956 -0.166525 -0.382835 -0.228249 -0.072213 0.857448 0.128557 0.588127 0.164100 -0.331406 -0.052941 -0.484779 -0.836685 -0.005697 -0.184889 -0.011241 0.103652 -0.041848 0.052924 -0.120170 -0.108791 0.212515 -0.313207 -0.154098 -0.131162 -0.316473 -0.059004 -0.112217 -0.297870 0.029336 0.331329 0.104561 0.259178 -0.150193 -0.762388 -0.333100 -0.300223 0.233444 -0.154345 0.128819 0.002122 -0.123075 -0.477140 0.170180 -0.257199 0.043026 -0.208967 -0.310382 -0.374492 0.050452 -0.153554 0.108976 0.002183 -0.358214 0.156061 -0.130440 0.111518 0.100681 0.152713 -0.092648 -0.514794 -0.493101 -0.038968 0.007996 0.535705 0.060015 0.046998 -0.038988 -0.211665 -0.374322 0.243108 -0.668310 0.075127 0.336537 -0.403470 0.234393 -0.244322 -0.175770 -0.186271 0.229370 0.038778 -0.314772 0.550307 0.455539 -0.471587 -0.227125 -0.220617 0.192833 0.102012 0.566783 -0.209738 0.061488 0.137638 0.227736 -0.063055 -0.104055 0.224854 0.002106 0.152774 -0.508736 -0.378991 0.187769 0.384769 -0.052681 -0.145799 0.018506 0.044954 -0.158967 0.502840 0.090698 0.241741 -0.280724 -0.785226 0.076627 0.090386 -0.089107 0.353131 -0.420269 -0.121807 -0.028238 -0.150383 0.441178 0.010984 0.120480 0.363684 -0.366265 -0.394258 -0.149132 -0.210400 -0.030139 -0.213768 0.386427 -0.310234 -0.090589 -0.228801 0.189738 -0.236037 0.007354 -0.049728 0.076765 0.100335 0.160391 -0.070384 0.346228 0.108934 -0.167772 -0.099070 0.073528 -0.029098 0.297125 -0.361438 -0.207811 -0.187878 0.109836 -0.181884 0.238157 -0.105467 0.275505 0.045377 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 2.944208 -0.596243 -1.548130 3.254542 -0.075866 -2.361450 1.038842 1.913292 0.006006 -4.335760 -1.425615 2.087645 0.674430 -1.784379 0.043238 1.395895 0.879245 1.558428 -6.180955 1.813102 1.011862 0.207342 -2.834172 -1.638308 -0.273379 -1.560827 -0.035996 2.215418 -0.304141 3.419532 -1.614708 0.721472 2.649128 -0.371558 2.532157 3.434954 0.299259 -0.010084 0.706308 0.767090 5.002904 3.042767 -1.578723 0.725862 1.709798 4.123748 0.608777 2.694965 -2.442272 -1.272657 0.595918 0.649248 -1.962785 -0.675490 -3.665842 0.612353 3.689218 2.331273 -2.901176 2.855786 -2.141203 0.655997 2.145357 1.734211 4.851251 1.509681 2.116686 2.927843 4.974703 -1.836708 0.883391 0.156503 2.299881 -1.237751 2.493124 -0.963544 -2.739633 -4.467482 0.658108 -5.615970 0.001029 0.715039 4.500607 -3.490468 1.189082 1.915619 2.013930 3.558171 -3.623237 -1.204439 -3.405043 -0.316876 -1.422122 7.524884 0.154180 1.557525 -0.158781 2.878338 0.642691 1.305528 -0.258755 -3.977585 -1.459329 -6.985587 -2.533786 -2.286005 -1.737932 -0.317545 -4.041344 -1.361167 3.078778 3.360013 -5.793601 0.570795 1.285710 -0.077641 2.414552 -0.941450 -1.965057 1.497742 -1.961387 0.631625 1.372604 -1.837061 -0.011516 -0.862730 0.998244 1.478493 1.006317 0.902034 -5.482276 0.742610 1.862714 -1.297372 -0.656452 1.558997 0.321483 -3.110229 1.509991 -4.073336 3.452277 -4.682917 0.132298 -1.880505 -3.680032 -0.855538 1.656998 2.478814 0.978585 -0.403504 -1.137919 0.226120 -5.227084 -7.477148 1.565454 -0.243679 0.494441 -0.975671 -0.697721 -0.881942 -2.096057 -0.271524 2.279487 -2.634036 -1.214438 -1.044938 5.627760 0.763675 -1.534044 -0.861068 -0.427205 2.452704 2.227499 2.370067 -2.393580 -4.136387 -4.837514 -1.743157 3.163496 -0.828613 -0.376805 -1.118848 -1.329848 -3.802125 1.701424 -2.519946 1.889553 -1.953546 -0.005605 -4.071058 0.660036 -0.779315 -0.107330 -0.708715 -2.774220 0.898745 1.175674 -0.494057 -0.468518 0.207609 1.493732 -3.134429 -2.961440 1.413379 0.141703 4.137089 2.436888 0.934148 -0.864202 -0.343610 -3.514100 3.024116 -2.657417 1.635365 0.958478 -3.010492 3.970063 -2.335228 -2.033091 -2.435648 2.202015 -0.025902 -0.863377 6.425308 3.949762 -3.590824 -0.580677 -1.295145 1.653378 1.593823 3.868497 -2.782965 -1.948933 1.493837 -0.666092 -0.549385 -0.528516 1.368939 -0.964069 2.012967 -3.559948 -1.052611 2.841546 2.592797 -0.340679 0.920720 -0.919868 -1.840712 -0.987129 3.998056 1.236337 1.175115 -3.370099 -5.332709 1.462795 -3.264763 0.241979 -0.583482 -0.923694 -1.728614 -0.033675 0.229247 3.661158 2.561302 -2.744616 2.966455 -5.323629 -4.423032 -2.786969 0.476272 0.809092 -1.662626 1.656719 -1.964411 0.798268 -0.664972 2.488938 -0.065790 -2.105611 -1.312464 1.152020 1.971796 0.638049 -3.532991 4.182647 -0.307100 -0.941540 -0.999122 -0.363400 -0.374435 1.472053 -1.938613 -1.556776 -1.407721 2.705337 -2.666426 3.404018 0.069422 2.019149 2.173974 -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) = 2.133209 -0.947039 -0.435849 2.510470 0.607630 -0.834454 0.829242 1.221804 0.381270 -4.552006 -1.828786 1.113572 0.297456 -0.364778 0.273537 0.971700 1.108075 1.604658 -4.471070 0.712822 1.161574 0.614194 -0.665096 -0.731727 0.094163 -1.103263 -0.456148 1.081904 0.537927 2.978638 -1.620567 0.733902 2.628535 -0.275167 1.068163 2.653010 1.220085 -0.128181 0.161115 -0.224564 4.413639 1.120695 -0.365068 1.348937 0.638910 3.314570 0.012861 4.075420 0.092209 -1.471230 1.597028 -2.310208 -1.455379 -0.124601 -3.063330 1.422172 2.945555 2.450341 -2.215091 1.913880 -0.438034 0.800199 1.392630 -0.312874 3.114524 2.066871 1.208900 2.336571 3.943791 -2.086921 0.365724 0.448683 1.424956 -0.005380 1.616655 -2.227882 -0.705697 -4.083799 0.308161 -3.634469 0.104003 -0.336844 4.038650 -3.077897 0.944677 2.165475 0.605887 2.860802 -1.746016 -0.076608 -3.280150 0.135162 0.015450 4.522966 0.000000 0.415728 -0.509827 1.403995 0.116149 1.187657 0.321309 -2.555437 -2.492574 -5.411330 -2.460131 -1.668867 -0.543225 0.323032 -3.717373 -0.734708 1.803647 1.892981 -4.872151 -0.040571 1.095019 1.002932 1.211990 0.898818 -1.831984 0.030463 -0.727799 0.435103 0.630386 -1.698034 0.129269 -1.984296 0.032642 0.849847 0.929229 0.021759 -3.277472 -0.429435 0.443737 -0.385872 -0.276689 0.822065 0.840865 -2.146718 1.593443 -2.462976 2.212189 -3.597266 -0.814597 -1.160237 -2.959853 -1.145708 4.245630 1.195382 1.805376 0.363453 -1.920929 -0.920488 -3.550522 -5.060195 0.780218 -0.453911 1.323194 0.689948 -0.641548 -0.000217 -1.576086 -0.438915 0.688247 -1.862197 -1.176361 -0.723574 2.668579 -0.469187 -0.823756 -2.026515 0.213526 2.483433 -0.026090 1.688278 -1.638006 -2.417280 -3.573861 -2.008832 2.654720 -1.079869 0.643612 -0.887077 -0.288224 -3.147122 0.896800 -2.170066 0.533780 -0.860274 -1.671542 -3.670394 1.144143 -0.960965 -0.226737 0.785900 -2.553781 1.005544 0.573864 1.441058 0.033991 0.164158 0.440578 -3.802646 -3.163229 -0.185271 -0.582731 3.168201 1.501402 0.527838 -1.093865 -1.243060 -2.306187 2.541449 -3.055849 1.183110 0.509582 -1.291457 2.539468 -2.078828 -0.728920 -2.805771 1.620921 0.775232 -2.773654 4.418580 2.240820 -2.586892 -0.614993 -1.894651 1.324976 1.219154 3.228964 -1.900583 -1.476952 1.513809 -0.423393 -0.356617 -1.645292 1.260470 -0.649164 1.412487 -3.146829 -1.327474 1.813586 2.234158 -0.538524 0.881446 1.134107 -0.074939 -0.223024 3.632893 1.067593 0.285651 -2.153319 -5.367569 1.377696 0.853407 0.526784 0.361990 -2.250929 -0.872581 0.728955 0.309326 3.010655 2.256840 0.205905 2.791567 -3.679031 -3.206849 -0.926620 0.035556 1.025679 -1.220937 0.916483 -1.638177 0.388880 -0.331352 1.271127 0.039814 -1.757320 -1.888839 0.844490 2.457313 0.278909 -1.185575 3.367575 0.152575 -1.179973 0.094031 -0.325350 0.477871 0.658648 -1.352172 -0.725736 -0.324581 1.281553 -2.244770 2.502806 -0.651561 0.438679 1.084930 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 5.661565 -3.017348 -3.675599 7.492334 0.203849 -3.125256 1.471354 2.446620 0.771958 -10.035075 -3.645397 3.197318 1.351061 -2.115764 0.858520 3.819260 2.254932 1.720005 -11.218968 3.099016 2.304495 -0.514373 -4.618330 -0.877926 -0.078401 -3.885243 0.089620 3.588619 -0.339877 6.858942 -3.322912 3.387965 5.994176 -1.305636 4.182717 6.250344 -0.196404 -0.003296 1.143752 1.468961 9.968899 4.140328 -2.422459 1.256159 2.003103 8.402161 -0.176767 9.736450 -2.086597 -3.010010 4.625341 -0.940131 -3.216275 -0.122385 -7.862274 2.061717 7.123001 3.940165 -5.576327 4.455753 -4.607033 2.049322 4.041078 2.770644 10.521196 4.461027 5.497625 6.544517 9.585247 -3.929677 1.982400 1.077587 3.796545 -1.409815 4.613092 -3.518288 -4.026479 -7.972664 1.158836 -8.218531 0.218240 0.008149 9.306518 -7.074005 0.363690 2.877649 3.219925 8.398493 -6.764909 0.299401 -7.667155 -0.181347 -0.977838 12.908790 -0.110513 2.639226 -1.304660 4.930291 -0.324362 2.376267 -0.317419 -7.475822 -4.753148 -12.879437 -6.867432 -4.436489 -1.662192 0.386596 -10.640657 -1.028498 4.587689 4.390211 -11.860727 0.950079 1.984605 1.097183 6.921593 2.644862 -4.774035 0.726612 -1.943986 2.279375 2.316001 -2.431634 1.318338 -5.835638 2.306483 3.156897 2.271518 1.141626 -10.333551 1.265227 2.890046 -1.992450 -0.527586 3.828422 2.473728 -5.556133 3.664815 -6.464431 6.421135 -10.644364 -2.113390 -4.818541 -7.498985 -2.110974 7.521303 6.219152 4.394473 0.109778 -3.880524 -0.541959 -11.660091 -13.924990 0.411689 -1.395907 1.215275 -0.135563 -1.543418 -0.192740 -3.849117 0.587182 3.598256 -5.553957 -3.187726 -2.580505 8.203502 1.294991 -2.460492 -2.854586 -1.419972 4.238047 1.323088 5.955802 -3.200963 -9.071025 -10.816056 -3.894728 6.183813 -2.279662 0.814901 -2.903007 -1.705485 -8.996016 2.584338 -5.136279 1.500460 -2.930433 -1.765348 -8.513058 2.293791 -1.452751 -0.328897 -0.704231 -6.208546 2.162185 2.724669 1.685326 0.637675 1.300746 0.816350 -7.424304 -7.043161 2.191814 -1.106278 9.112807 4.764552 0.397766 -0.721567 -2.490710 -7.473665 6.305852 -7.008161 3.473227 2.748952 -5.109556 6.515732 -5.742023 -3.660948 -5.704686 3.995124 -0.119961 -4.760872 11.682076 7.042417 -7.260095 -0.921868 -4.034723 4.485815 2.473511 7.392002 -4.437239 -2.750214 2.357408 0.537871 -1.062527 -1.351646 2.964567 -2.405357 2.805231 -7.272704 -2.557853 5.970138 5.195456 -1.002148 0.822993 -0.656814 -2.791091 -0.538277 7.621519 2.922626 1.106591 -5.899265 -13.503182 2.115702 -3.418754 -0.680684 0.142506 -4.433667 -2.622597 0.096482 -0.556451 7.864087 3.900229 -2.562230 6.455957 -10.365003 -8.548880 -5.127992 0.479061 0.576345 -2.550934 3.065846 -4.012085 0.952429 -0.718964 4.649630 -1.027914 -5.188724 -3.267415 2.538819 5.170774 0.141440 -5.057059 7.963169 0.710419 -1.737506 -2.607586 0.199324 -1.546150 2.774947 -4.845478 -2.847606 -1.602862 4.373146 -5.860499 5.715883 -0.229989 3.505980 2.970821 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 1.023592 -0.817239 -0.337692 1.002190 0.426641 -0.554254 0.154551 0.223273 0.338834 -1.404223 -0.494221 0.760551 0.069001 -0.531136 0.216946 0.490249 0.547652 0.254951 -0.980654 0.650517 -0.014817 -0.060974 -0.854219 -0.120822 -0.006466 -0.583862 0.267906 0.437714 -0.003297 0.815009 -0.615998 0.282910 0.717288 -0.204227 0.720124 0.885360 0.392408 -0.155280 0.017797 0.197836 1.786320 0.356531 0.123576 0.644538 0.705756 1.072904 -0.115342 2.144083 0.684856 -0.291631 1.096226 -0.314489 -0.398321 0.059450 -1.482731 0.584535 0.900927 0.062067 -1.008646 0.593378 -0.332081 0.318501 0.465748 0.313175 1.427981 0.682404 0.600662 0.772186 1.607654 -0.454532 -0.004581 0.490568 1.175545 0.350434 0.995691 -0.727165 -0.555263 -0.933442 0.006504 -0.321409 0.420603 -0.420437 1.396571 -0.968450 0.024257 0.693416 0.260999 1.002107 -0.700006 -0.091744 -1.102343 0.205440 0.029656 1.546643 -0.160289 0.515861 -0.350948 0.397555 -0.205742 0.542183 0.092231 -1.121652 -0.737803 -2.058237 -1.285941 -0.595262 -0.341768 -0.384292 -1.579329 0.017099 0.379262 0.627450 -1.440274 0.034192 0.294686 -0.032177 1.164290 0.417047 -0.562513 -0.249117 0.012426 0.493863 -0.045455 -0.223082 -0.076285 -1.204382 0.436504 0.415003 0.423701 -0.224680 -0.859658 0.116939 0.126874 0.368749 -0.240784 0.094882 0.173022 -1.297584 0.523379 -0.514100 0.717259 -1.393699 -0.749841 -0.984188 -0.925431 -0.215344 2.025705 0.308189 1.491567 0.322514 -0.683574 -0.373673 -1.511304 -2.023873 0.083137 -0.737743 0.135337 0.122758 -0.035997 -0.148063 -0.319645 -0.333403 0.407885 -0.897911 -0.353703 -0.489413 0.362530 -0.285386 -0.276571 -0.802159 -0.108533 0.949342 0.300142 0.538869 -0.436968 -1.848557 -1.101834 -0.693221 0.742167 -0.326345 0.439359 -0.148645 -0.167737 -1.174921 0.263972 -0.712806 0.179992 -0.591210 -0.564790 -1.083037 0.156809 -0.312772 0.240227 -0.171397 -0.946861 0.482587 0.018808 0.642614 0.081034 0.384658 -0.155077 -1.647827 -1.391326 -0.061073 0.082071 1.532538 0.484365 0.213392 -0.049718 -0.422016 -1.159236 0.679803 -1.947721 0.232608 0.770971 -0.850535 0.900057 -0.759900 -0.543021 -0.984307 0.595173 -0.057399 -0.934703 1.619182 0.979500 -1.252425 -0.376915 -0.761333 0.619099 0.383529 1.474335 -0.518212 -0.085545 0.487836 0.262276 -0.228969 -0.468876 0.610069 -0.204263 0.726492 -1.238865 -0.712414 0.648270 1.008585 -0.211476 -0.248751 -0.109617 -0.090633 -0.228703 1.311475 0.347535 0.424854 -0.936852 -2.278478 0.209889 0.094556 -0.111008 0.591908 -0.987658 -0.394682 -0.030985 -0.155012 1.212989 0.182838 0.482762 0.900780 -1.339177 -1.216522 -0.282901 -0.150331 0.109624 -0.515035 0.751414 -0.815392 -0.153211 -0.409892 0.709264 -0.374131 -0.356278 -0.464632 0.275709 0.526298 0.316726 -0.492295 1.038575 0.266533 -0.372206 -0.110596 0.002801 0.102165 0.437440 -0.788519 -0.414070 -0.499688 0.337637 -0.667311 1.062276 -0.184252 0.718668 0.213958 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 1.055160 -0.811979 -0.352867 0.997512 0.404402 -0.588516 0.152852 0.282537 0.313603 -1.439040 -0.563134 0.647082 0.078720 -0.568166 0.278518 0.500126 0.548641 0.250731 -1.147085 0.689085 0.043404 -0.073450 -0.863769 -0.109453 -0.001895 -0.604151 0.123945 0.453378 -0.023953 0.845964 -0.636481 0.324119 0.746323 -0.205575 0.758920 0.916056 0.283066 -0.183307 0.144435 0.250990 1.827316 0.387205 0.102315 0.582552 0.718582 1.107613 -0.198080 2.181487 0.615065 -0.307924 1.189814 -0.425835 -0.405814 0.119685 -1.500500 0.566847 0.977546 0.098429 -1.033457 0.612191 -0.416772 0.332954 0.487778 0.277256 1.520076 0.723126 0.622649 0.791414 1.630528 -0.429079 0.038057 0.455067 1.142948 0.276995 0.897307 -0.755175 -0.486435 -1.097577 0.045273 -0.447216 0.420456 -0.413060 1.437754 -0.994591 0.059106 0.717555 0.285034 1.062636 -0.748558 -0.088539 -1.131278 0.192948 0.026065 1.552901 -0.201678 0.510197 -0.327135 0.421248 -0.228838 0.537448 0.027903 -1.139238 -0.872538 -2.147609 -1.335153 -0.578514 -0.345013 -0.381868 -1.661624 0.017714 0.462680 0.560848 -1.494136 0.045153 0.289593 -0.016432 1.060689 0.524123 -0.671968 -0.299179 -0.037215 0.562626 -0.011452 -0.212437 -0.053574 -1.361430 0.441513 0.460689 0.436297 -0.235545 -0.883162 0.139483 0.162539 0.303837 -0.262056 0.137698 0.192588 -1.258271 0.539226 -0.551970 0.756528 -1.469101 -0.728711 -1.061126 -0.941580 -0.208299 2.052185 0.430241 1.411808 0.376518 -0.702006 -0.324238 -1.581929 -2.018857 0.044032 -0.774509 0.203075 0.062158 -0.045246 -0.154776 -0.288530 -0.311623 0.344319 -0.933606 -0.375120 -0.546286 0.450270 -0.239888 -0.302431 -0.803729 -0.116827 1.001721 0.199039 0.547097 -0.451702 -1.741598 -1.151504 -0.716241 0.774579 -0.324984 0.449496 -0.186697 -0.109742 -1.237355 0.294394 -0.736654 0.136113 -0.614447 -0.551896 -1.112628 0.149268 -0.305946 0.239621 -0.208956 -0.953907 0.489973 0.105678 0.722553 0.095468 0.397499 -0.165854 -1.657171 -1.432445 -0.078198 0.084763 1.560931 0.553791 0.198941 -0.050247 -0.420524 -1.176286 0.740881 -1.905763 0.248567 0.760646 -0.911016 0.939369 -0.784986 -0.579009 -1.005797 0.596359 -0.081987 -1.023711 1.648790 0.973639 -1.293111 -0.366307 -0.881153 0.662155 0.393840 1.494841 -0.457804 -0.038069 0.465467 0.271569 -0.237500 -0.492348 0.627278 -0.231458 0.735034 -1.260660 -0.714915 0.719710 1.025530 -0.199521 -0.211506 -0.143137 -0.030530 -0.179178 1.325145 0.329179 0.355007 -0.925475 -2.358903 0.208221 0.211810 -0.085823 0.567807 -0.990067 -0.424109 -0.102393 -0.118937 1.257131 0.318852 0.498526 0.917829 -1.331786 -1.255751 -0.358365 -0.052036 0.087526 -0.533794 0.702183 -0.819638 -0.144044 -0.376218 0.755779 -0.287052 -0.436782 -0.639173 0.278971 0.560392 0.321608 -0.551849 1.064918 0.278489 -0.376757 -0.152866 0.008682 0.093360 0.466643 -0.726551 -0.451116 -0.509003 0.347914 -0.699227 1.077578 -0.164035 0.751122 0.239659 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 1.245914 -0.961760 -0.508990 1.484804 0.387778 -0.623847 0.200510 0.398085 0.211599 -2.159179 -0.935574 0.444864 0.098788 -0.572048 0.484399 0.707062 0.737450 0.225463 -2.174453 0.798618 0.372812 -0.196280 -0.918663 0.067870 0.063556 -0.921331 -0.080760 0.752565 -0.074184 1.290646 -0.853461 0.789074 1.179005 -0.198063 1.002843 1.253100 -0.072587 -0.257307 0.405835 0.388337 2.392963 0.458480 -0.058338 0.455804 0.714656 1.679275 -0.358599 2.657710 0.602267 -0.546455 1.651964 -0.720361 -0.515106 0.232874 -1.969827 0.571493 1.322745 0.416825 -1.316850 0.789282 -0.903411 0.492221 0.709904 0.243851 2.329725 1.006201 1.090998 1.227756 2.068952 -0.648699 0.242256 0.461270 1.117243 0.140008 0.703275 -0.940890 -0.422518 -1.966898 0.106844 -1.157966 0.315629 -0.419494 1.905932 -1.319303 -0.052098 0.723840 0.354145 1.721777 -1.165261 0.115585 -1.717624 0.147265 0.155862 1.939600 -0.223441 0.505784 -0.298335 0.663485 -0.358988 0.660409 -0.154058 -1.527501 -1.408133 -2.938053 -1.817824 -0.782322 -0.240520 -0.269775 -2.488653 0.123858 0.791348 0.637095 -2.229700 0.012442 0.310409 0.190075 1.033168 0.999031 -1.166265 -0.527686 -0.097917 0.916851 0.285750 -0.264502 0.239560 -2.161702 0.529209 0.661442 0.635655 -0.149296 -1.356727 0.120530 0.410468 0.028230 -0.235145 0.513937 0.496947 -1.160308 0.797211 -0.916443 1.224873 -2.172680 -0.799298 -1.462773 -1.249720 -0.378071 2.609028 1.276364 1.439560 0.542585 -0.997837 -0.208559 -2.362173 -2.629848 -0.165420 -0.865014 0.416044 0.078166 -0.211154 0.013693 -0.475229 -0.135100 0.396362 -1.255630 -0.679044 -0.826011 0.673626 0.043504 -0.423484 -0.996931 -0.193589 1.215892 -0.206518 0.999107 -0.593472 -1.940120 -1.918813 -1.006886 1.160151 -0.526921 0.479419 -0.490854 -0.062222 -1.843566 0.504367 -1.070642 -0.129872 -0.731541 -0.743129 -1.661428 0.371571 -0.393813 0.120817 -0.207692 -1.317049 0.597602 0.506835 1.029390 0.308965 0.495789 -0.299577 -1.894487 -1.819760 0.001055 -0.101354 1.986992 0.940877 0.054210 -0.221910 -0.691738 -1.545046 1.313931 -2.012169 0.550140 0.912048 -1.275205 1.226292 -1.170130 -0.726616 -1.184701 0.784552 -0.085327 -1.857439 2.149825 1.320156 -1.768909 -0.416190 -1.418549 1.031347 0.482170 1.805745 -0.536263 -0.013918 0.461643 0.499158 -0.271762 -0.594482 0.773628 -0.368614 0.681353 -1.724971 -0.919120 1.254429 1.267704 -0.237261 -0.141018 -0.106198 0.049955 0.066990 1.712043 0.469608 0.216372 -1.075907 -3.298911 0.265036 0.571463 -0.084000 0.624806 -1.354447 -0.579854 -0.235091 -0.288208 1.788119 0.659513 0.347606 1.348180 -1.724525 -1.712300 -0.878009 0.098712 -0.011181 -0.629005 0.807738 -0.995222 -0.110417 -0.298423 1.025320 -0.227107 -0.939157 -1.153563 0.460028 0.966030 0.278595 -0.757856 1.508587 0.385526 -0.495584 -0.483050 0.140143 -0.156075 0.690322 -1.006970 -0.685782 -0.475462 0.567552 -1.105320 1.216416 -0.146833 0.966798 0.364849 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = 0.920425 -0.904170 -0.750180 2.539627 0.272275 0.164244 0.333032 -0.095919 0.320115 -3.060657 -0.668010 1.670691 0.050583 0.445319 -0.257148 0.969406 0.861620 0.061040 -2.456554 0.071836 0.572508 -0.149792 -0.370991 0.392336 0.282562 -1.046235 1.555796 1.014670 0.191307 1.760479 -0.731851 1.384763 1.718455 -0.193191 0.428919 1.269130 0.188445 0.195445 -0.838822 -0.439761 2.180519 0.230022 -0.440234 0.861674 -0.169027 2.279533 0.553427 2.508083 1.117753 -0.956592 0.722655 0.621306 -0.747111 -0.531024 -1.994394 0.587172 0.795199 0.926322 -1.013207 0.670441 -0.637724 0.520230 0.874275 0.584714 2.331590 1.146751 1.859525 1.926532 2.232490 -1.507730 0.335745 0.647777 0.741026 0.700708 1.340534 -0.968563 -1.262225 -0.863101 -0.283164 -1.423007 -0.394677 -0.421257 2.099903 -1.502419 -0.854794 -0.381785 0.292540 2.313094 -1.308082 0.875786 -2.298277 0.061315 0.414492 2.596141 0.323775 0.441370 -0.493050 0.846459 -0.278166 0.643421 0.361814 -1.725594 -0.231831 -2.364013 -1.467270 -1.419696 0.336604 0.639210 -2.862972 0.463968 -0.221133 1.461202 -3.061358 -0.387468 0.285896 0.613744 2.469705 1.009039 -0.555731 -0.150448 0.437414 0.355800 0.532742 -0.640621 0.823127 -1.075403 0.155829 0.358956 0.617923 0.657288 -2.583125 -0.310609 0.496492 -0.170935 0.560282 1.233388 1.187251 -0.780725 1.003435 -1.313739 1.530516 -2.483971 -1.261943 -0.568243 -1.518075 -1.029188 2.293924 1.712501 1.874245 -0.287673 -0.995948 -0.680359 -2.854185 -3.230828 -0.264806 -0.028240 -0.150390 1.138407 -0.562802 0.707119 -1.575584 0.351143 1.320325 -1.027722 -1.067010 -0.488720 0.438359 0.358180 -0.048120 -0.924525 -0.399663 0.171385 0.066440 2.097294 -0.422523 -3.473937 -3.186900 -0.982480 1.470499 -0.981768 0.051464 -0.938707 -0.791077 -1.892073 0.272604 -1.280196 -0.344890 -0.204459 -1.116838 -2.335303 1.332663 -0.520541 -0.384141 0.569686 -1.797990 0.454366 0.529150 0.564976 0.645754 0.312655 -0.409657 -1.624709 -1.422313 0.754492 -0.897671 2.072793 0.719004 -0.394825 -0.623756 -1.295029 -1.803566 1.733275 -1.840898 1.223903 0.900454 -0.506423 1.017463 -1.563792 -0.144460 -1.173176 0.960306 0.310956 -2.340051 2.403267 1.747079 -1.695185 -0.321242 -0.515044 1.123899 0.388235 1.264559 -1.639899 -1.188485 0.579308 0.700770 -0.104298 -0.263799 0.486622 -0.364865 -0.056984 -1.923512 -0.820293 1.415225 0.979354 -0.534752 -0.310311 0.685868 -1.052930 0.319336 1.814155 1.176865 0.556090 -1.301809 -3.714853 0.337169 -0.578057 -0.465442 0.461996 -1.902941 -0.385649 0.821462 -1.199273 1.965209 -0.688384 -0.753634 1.830025 -2.653668 -1.793043 -1.059409 -0.885827 0.099695 -0.023553 1.243974 -0.877627 0.064949 -0.132639 0.651669 -1.286252 -1.317551 0.610401 0.923961 1.630099 -0.421144 -0.203711 1.909384 0.358491 -0.429628 -0.715728 0.379592 -0.962167 0.282943 -2.439150 -0.288876 0.280523 0.945677 -1.601649 0.888953 -0.148922 0.536602 0.123904 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.160912 -0.069062 -0.005235 0.305306 0.126309 -0.223495 0.104730 0.053924 0.018718 -0.440452 -0.057745 0.175212 0.000000 -0.165582 0.003725 0.093724 0.135341 0.311419 -0.175035 0.166409 0.046316 0.125473 -0.175505 -0.195903 -0.013415 -0.114438 0.039135 0.141189 0.052943 0.319933 -0.236435 -0.019883 0.242918 0.004947 0.195971 0.325146 0.394383 0.007443 -0.050117 0.049690 0.553536 0.094528 0.002380 0.205200 0.229548 0.363866 0.132845 0.220728 -0.022381 -0.118605 -0.020568 -0.066992 -0.094286 -0.095579 -0.407122 0.218979 0.236048 0.267433 -0.334078 0.266819 -0.025175 0.074463 0.161413 0.030451 0.316748 0.130952 0.009073 0.260198 0.548969 -0.207081 -0.023352 0.080122 0.364611 0.016468 0.361597 -0.025412 -0.183766 -0.517870 -0.102436 -0.277577 0.121172 0.053580 0.434395 -0.363327 0.166855 0.386401 0.066814 0.243121 -0.193554 -0.173156 -0.365882 0.041746 -0.045048 0.535319 0.101336 0.069857 -0.114504 0.205618 0.073713 0.171579 0.066972 -0.337031 -0.150018 -0.718227 -0.333568 -0.213693 -0.192287 -0.142436 -0.366235 -0.157870 0.356636 0.494500 -0.548382 0.043072 0.151983 0.015960 0.085131 -0.368459 -0.081506 0.149966 -0.124974 -0.007533 -0.005379 -0.209583 -0.102877 -0.036866 0.024804 0.037558 0.147839 -0.042438 -0.210011 -0.038189 -0.001641 0.071129 -0.107591 -0.018011 -0.039181 -0.423032 0.159444 -0.299070 0.267503 -0.288365 -0.015629 -0.117197 -0.355745 -0.086965 0.488988 -0.084896 0.291968 -0.028796 -0.246743 -0.140514 -0.364378 -0.716748 0.282386 -0.095745 0.074360 0.089008 -0.047404 -0.118393 -0.165892 -0.172356 0.253615 -0.272532 -0.072379 -0.028653 0.208499 -0.143450 -0.118883 -0.338629 0.030976 0.429954 0.256035 0.051356 -0.285923 -0.276626 -0.287840 -0.233999 0.267416 -0.097765 0.087858 -0.014071 -0.116899 -0.305354 0.203796 -0.252537 0.203555 -0.193488 -0.112724 -0.394620 0.035118 -0.151845 -0.042373 0.022737 -0.273856 0.164159 -0.147457 -0.135477 -0.076975 -0.014164 0.129549 -0.425242 -0.370706 -0.006590 0.059684 0.266424 0.125250 0.207477 -0.203511 -0.095398 -0.276741 0.247555 -0.457060 0.073304 0.185530 -0.223293 0.370526 -0.199027 -0.153106 -0.253139 0.236641 0.074268 -0.129769 0.508508 0.354517 -0.362019 -0.123993 -0.108661 0.127771 0.187860 0.513079 -0.295544 -0.109474 0.252720 -0.075630 -0.056399 -0.199213 0.167570 -0.052521 0.318361 -0.385561 -0.176581 0.123810 0.339740 -0.069099 0.044588 0.040744 -0.073213 -0.217796 0.449117 0.145010 0.235794 -0.329429 -0.340667 0.154886 -0.190533 0.143276 0.140769 -0.166149 -0.063738 0.094909 0.024792 0.353219 0.145182 -0.054677 0.316206 -0.472166 -0.399190 0.033315 -0.074076 0.161982 -0.272975 0.319599 -0.259297 -0.011078 -0.147378 0.209678 -0.079972 -0.012986 -0.066582 0.072224 0.162841 0.150941 -0.205208 0.396817 -0.042876 -0.199742 0.091261 -0.055062 0.145175 0.072217 -0.202616 -0.134084 -0.159604 0.182312 -0.228551 0.446563 -0.185819 0.103363 0.182483 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = 0.873000 -0.342475 -0.409192 1.065339 0.146965 -0.531764 0.268343 0.273949 -0.013878 -1.605762 -0.384789 0.679943 0.250637 -0.172385 -0.063838 0.580747 0.344588 0.536114 -1.518499 0.406639 0.277595 0.125307 -0.679027 -0.321722 -0.057026 -0.524337 0.265041 0.481322 0.098648 1.146245 -0.683824 0.278021 0.951810 -0.239467 0.678615 1.038205 0.711209 0.019249 -0.218018 0.176487 1.737049 0.554528 -0.217094 0.349435 0.361388 1.313283 0.342955 1.357836 -0.383645 -0.539118 0.315497 -0.174948 -0.542299 -0.168210 -1.249530 0.456112 1.043288 0.890806 -0.995489 0.809064 -0.230427 0.276550 0.610853 0.518147 1.361633 0.467426 0.617490 0.883839 1.586808 -0.752672 0.166679 0.185936 0.675382 -0.177274 1.122192 -0.557759 -0.698553 -1.207170 0.198783 -1.295979 0.059652 0.175242 1.366420 -1.225646 0.267945 0.827293 0.402388 1.126714 -0.899809 -0.186424 -1.215898 -0.031976 -0.219371 2.275072 0.116363 0.347261 -0.197891 0.810366 0.204176 0.462412 0.168612 -1.259465 -0.484942 -2.010037 -1.028469 -0.770659 -0.467212 0.051404 -1.384666 -0.471020 0.685513 1.170704 -1.889645 0.265308 0.429212 0.216314 1.140407 -0.206738 -0.485559 0.391025 -0.413580 0.078963 0.319711 -0.572026 0.047653 -0.307159 0.367863 0.395502 0.353485 0.100800 -1.596651 0.071102 0.355140 -0.248007 -0.208410 0.326421 0.245922 -1.167951 0.617909 -1.096120 0.905268 -1.389253 -0.194912 -0.446256 -1.408594 -0.357841 1.054090 0.348439 0.670732 -0.139345 -0.763941 -0.160429 -1.602269 -2.480856 0.409668 -0.050531 0.118228 0.212570 -0.271797 -0.094479 -0.718978 -0.202985 0.810562 -0.821917 -0.488088 -0.259843 1.216429 -0.041743 -0.420247 -0.511276 -0.040201 0.765758 0.683589 0.872417 -0.719692 -1.460904 -1.552672 -0.683850 1.024056 -0.348269 0.155026 -0.282924 -0.448849 -1.436582 0.456693 -0.870255 0.500727 -0.544268 -0.288958 -1.373531 0.301082 -0.349673 -0.161062 0.035104 -1.060159 0.371757 0.056610 -0.184746 -0.046836 -0.086590 0.367636 -1.301991 -1.140349 0.352061 -0.133543 1.275926 0.476992 0.302359 -0.230082 -0.340069 -1.067844 0.820328 -1.230622 0.467661 0.422165 -0.660235 1.092448 -0.838827 -0.468651 -0.793398 0.733833 0.176094 -0.283267 2.124873 1.192638 -1.083987 -0.200128 -0.243959 0.556500 0.489927 1.289202 -0.951011 -0.632218 0.569863 -0.127953 -0.146586 -0.323547 0.514399 -0.329690 0.612855 -1.184776 -0.471312 0.626192 0.961017 -0.153758 0.193199 0.090496 -0.568006 -0.466570 1.394076 0.389588 0.490680 -0.919364 -1.746362 0.540242 -0.983314 0.014586 0.017745 -0.584540 -0.273890 0.261098 -0.009842 1.190632 0.580995 -0.434370 1.061377 -1.823055 -1.397429 -0.551412 -0.187201 0.287316 -0.468953 0.530350 -0.746144 0.217559 -0.286914 0.644185 -0.269490 -0.507386 -0.154173 0.342709 0.670672 0.117981 -0.693958 1.383341 -0.041967 -0.278559 -0.096261 -0.081446 0.169293 0.400062 -0.675852 -0.445622 -0.310402 0.708934 -0.850890 0.995325 -0.344711 0.360653 0.593376 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.773174 -0.588261 -0.113217 0.883401 0.204399 -0.459951 0.215032 0.467170 0.069493 -1.502652 -0.639676 -0.199930 0.084562 -0.404176 0.439734 0.371467 0.476501 0.361734 -1.876519 0.511825 0.428917 0.003000 -0.414716 -0.163116 0.013645 -0.628937 -0.354993 0.580616 -0.008589 1.012602 -0.673118 0.390549 0.868995 -0.066097 0.769422 0.975157 0.098403 -0.212700 0.356342 0.386542 1.755094 0.456076 -0.259183 0.117700 0.496997 1.230469 -0.139410 1.308486 0.061766 -0.431843 0.922411 -0.872505 -0.362232 0.123422 -1.310033 0.345320 1.179131 0.757940 -0.984678 0.699913 -0.696211 0.335174 0.516366 0.055427 1.546433 0.543364 0.630853 0.816985 1.400189 -0.565166 0.193797 0.131982 0.617135 -0.184246 0.327366 -0.621252 -0.122483 -2.343900 0.188337 -1.277727 0.160515 -0.046162 1.100006 -0.989742 0.326051 0.922013 0.179662 1.128186 -0.847896 -0.098082 -1.240455 0.025072 0.136558 1.482592 -0.118720 0.132997 0.030944 0.643091 -0.063206 0.480322 0.043751 -1.079935 -1.161035 -2.269922 -1.212749 -0.526745 -0.213723 -0.193267 -1.504926 -0.089798 1.166054 0.361464 -1.603803 0.154109 0.294292 0.289680 0.172206 0.054446 -0.772740 -0.199086 -0.362050 0.597644 0.375270 -0.485946 0.147240 -1.301812 0.374293 0.554915 0.482523 -0.153035 -0.721416 0.031339 0.345940 -0.079816 -0.313884 0.295746 0.221953 -0.771211 0.584870 -0.889333 1.023082 -1.373629 -0.077252 -0.927309 -0.757399 -0.257281 1.691273 0.717824 0.415164 0.440219 -0.846123 0.091756 -1.441071 -1.865204 0.092003 -0.316767 0.486591 -0.044954 -0.233328 -0.031296 -0.283213 -0.113535 0.072739 -0.892743 -0.458271 -0.422009 0.535271 0.060619 -0.434347 -0.675408 0.102980 1.195200 -0.154572 0.596701 -0.609418 -0.655394 -1.201776 -0.784609 0.924386 -0.349654 0.259536 -0.283680 0.008971 -1.331507 0.630063 -0.814661 0.119679 -0.547009 -0.496106 -1.243174 0.222856 -0.359738 0.134081 -0.011667 -0.900270 0.413427 0.092731 0.538956 0.076123 0.170679 0.112378 -1.342513 -1.297586 -0.133653 -0.020849 1.284174 0.494705 0.143929 -0.231447 -0.403670 -0.803729 0.989549 -1.005586 0.379717 0.378644 -1.073751 0.936121 -0.709221 -0.556973 -0.863086 0.600692 0.110027 -0.760742 1.699984 0.959253 -1.182480 -0.302991 -1.029064 0.650142 0.393137 1.348644 -0.378274 -0.063596 0.367232 0.144820 -0.173788 -0.512575 0.545058 -0.229762 0.499606 -1.225044 -0.631231 0.828965 0.933216 -0.077354 0.248625 0.090733 0.203618 -0.240787 1.310255 0.232593 0.150156 -0.725926 -1.891894 0.386456 0.558801 0.239773 0.256054 -0.796107 -0.422994 -0.211446 0.325156 1.209760 1.299808 0.127616 0.998164 -1.137974 -1.241548 -0.682827 0.190693 0.097389 -0.605975 0.383368 -0.705590 0.044509 -0.223100 0.696326 0.129338 -0.533554 -1.085107 0.264492 0.633782 0.338162 -0.715440 1.163950 0.172762 -0.491302 -0.240719 0.015870 -0.034100 0.584420 -0.131880 -0.512210 -0.317646 0.491767 -0.766377 0.836279 -0.169247 0.518641 0.368243 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = 0.737794 -0.254962 -0.551650 0.827464 -0.021577 -0.489791 0.094655 0.171285 -0.151927 -1.175023 -0.413296 0.596225 0.176975 -0.449526 0.186411 0.592155 0.321086 0.253848 -1.060367 0.528430 0.173248 -0.184811 -0.785465 -0.030755 -0.088473 -0.539659 -0.066014 0.359288 -0.106974 0.778234 -0.472152 0.493685 0.676587 -0.215330 0.586667 0.709797 -0.138302 -0.149460 0.215042 0.259023 1.354469 0.237400 0.081604 0.133372 0.383574 0.962101 -0.285999 1.382878 0.170805 -0.303126 0.935292 0.137105 -0.296703 0.217628 -1.105685 0.204287 0.512789 0.204779 -0.717309 0.516793 -0.739612 0.298026 0.465863 0.326620 1.453989 0.602915 0.631004 0.804082 1.167692 -0.324102 0.246760 0.187502 0.494626 -0.160073 0.624264 -0.312892 -0.290613 -0.966533 0.034159 -0.793780 0.242642 -0.001023 1.597655 -0.830347 -0.069819 0.426926 0.534105 1.052191 -0.788321 0.066575 -0.935867 0.029686 -0.144834 1.262340 -0.034374 0.364651 -0.330267 0.409190 -0.215793 0.279989 -0.252681 -0.945218 -0.731021 -1.553846 -1.187909 -0.473003 -0.290891 -0.164169 -1.479601 0.007993 0.859443 0.662098 -1.408861 0.125129 0.196394 0.006435 0.782220 0.786382 -0.864480 -0.122554 -0.177663 0.570528 0.229961 -0.002870 0.138190 -1.016672 0.299863 0.339088 0.392427 -0.040954 -1.237570 0.111972 0.323968 -0.252693 -0.165280 0.343890 0.301418 -0.658927 0.452970 -0.533310 0.722173 -1.310630 -0.388622 -0.896880 -0.869542 -0.188306 1.215205 1.014129 0.796236 0.165124 -0.522077 -0.042746 -1.524738 -1.420818 -0.073645 -0.548797 0.093620 -0.055509 -0.101322 -0.086105 -0.254747 0.057389 0.400683 -0.808920 -0.377288 -0.418404 0.869226 0.088483 -0.371568 -0.600076 -0.230362 0.486930 0.151822 0.585268 -0.346907 -1.224091 -1.257427 -0.512017 0.713196 -0.260251 0.255420 -0.296810 -0.170006 -0.843384 0.240713 -0.608809 0.022939 -0.423837 -0.201574 -0.963430 0.224469 -0.144338 -0.352177 -0.338333 -0.757437 0.350261 0.397962 0.141560 0.118265 0.191286 -0.109218 -1.007219 -0.966212 0.178091 -0.068381 0.923631 0.953730 0.178387 -0.323876 -0.318296 -1.021375 0.593459 -1.237656 0.355218 0.564218 -0.874006 0.763366 -0.813175 -0.401988 -0.538488 0.471804 -0.175212 -1.339072 1.388429 0.881372 -1.015614 -0.137622 -0.665830 0.657837 0.290997 0.995599 -0.332632 0.078019 0.248366 0.235235 -0.151077 -0.040934 0.463661 -0.335842 0.371015 -0.916341 -0.398654 0.844017 0.757302 -0.085781 -0.177317 -0.245819 -0.203353 0.090393 0.877885 0.331888 0.124837 -0.599828 -1.878205 0.184136 -0.288414 -0.148176 0.390475 -0.511612 -0.304041 -0.134254 -0.346000 1.008320 -0.190091 -0.094628 0.708766 -1.137763 -1.085591 -0.604833 0.115096 -0.035888 -0.392149 0.578868 -0.576751 -0.095383 -0.171377 0.682359 -0.192061 -0.437012 -0.527952 0.305988 0.560602 0.365706 -0.612079 0.908029 0.216308 -0.250382 -0.333985 0.010650 -0.072370 0.387594 -0.728968 -0.393459 -0.280612 0.481316 -0.669568 0.745557 -0.053619 0.560175 0.331143 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.464940 0.019396 -0.120413 0.599785 0.098850 -0.594668 0.278285 0.387924 -0.066542 -0.900904 -0.209432 0.260824 0.093013 -0.428947 0.006470 0.191066 0.161718 0.598657 -0.890616 0.383132 0.226394 0.245582 -0.503180 -0.514506 -0.069696 -0.236861 -0.186452 0.409466 0.015328 0.738710 -0.414838 -0.066923 0.542042 -0.025650 0.465691 0.771983 0.554936 0.053873 0.143673 0.196108 1.116990 0.521790 -0.271558 0.243287 0.473696 0.829237 0.179861 0.311871 -0.747843 -0.278753 -0.110376 -0.070931 -0.328845 -0.214155 -0.729688 0.309625 0.826031 0.739038 -0.684641 0.683293 -0.288644 0.104164 0.427009 0.211223 0.781106 0.345301 0.116551 0.576513 1.174135 -0.426182 0.056828 0.052783 0.580834 -0.281328 0.567278 -0.041722 -0.460328 -1.230888 0.011169 -1.121912 0.079052 0.250809 0.998986 -0.798105 0.462102 0.774318 0.360198 0.577370 -0.649056 -0.427663 -0.705441 -0.028857 -0.328144 1.557278 0.133500 0.231041 -0.093872 0.618200 0.282499 0.345919 -0.010389 -0.738538 -0.408785 -1.562532 -0.576622 -0.434711 -0.482944 -0.185035 -0.738054 -0.499578 0.956264 0.912213 -1.246851 0.163512 0.363319 0.055236 0.208181 -0.621099 -0.393701 0.467895 -0.496624 -0.094481 0.161468 -0.473416 -0.170582 0.007709 0.093917 0.185510 0.218458 0.060797 -0.948326 0.079264 0.195129 -0.241289 -0.225445 0.113371 -0.105002 -0.829807 0.317982 -0.887460 0.681359 -0.820557 0.172214 -0.237375 -0.908094 -0.139646 0.457699 0.122428 0.175769 -0.130957 -0.393648 -0.114614 -0.895444 -1.590108 0.589626 -0.021705 0.232380 -0.125851 -0.150786 -0.318602 -0.402298 -0.253935 0.530832 -0.552119 -0.143516 -0.114151 1.242867 -0.076785 -0.329807 -0.434946 0.023886 0.818829 0.582159 0.224703 -0.656069 -0.418862 -0.806132 -0.436051 0.643977 -0.128961 -0.014204 -0.127812 -0.261688 -0.785859 0.492126 -0.531115 0.566705 -0.445970 -0.034943 -0.865050 0.094840 -0.239104 -0.134765 -0.063951 -0.538798 0.233733 -0.034072 -0.356246 -0.200516 -0.090363 0.442393 -0.742715 -0.713086 0.155166 0.161326 0.649924 0.445834 0.410733 -0.293733 -0.050983 -0.649078 0.627217 -0.566042 0.216781 0.206414 -0.542731 0.944363 -0.428033 -0.454695 -0.591799 0.497861 0.105213 0.044141 1.315045 0.775081 -0.722514 -0.207001 -0.222056 0.243312 0.439581 0.984647 -0.638844 -0.393869 0.490242 -0.296629 -0.130175 -0.282079 0.319652 -0.181632 0.682945 -0.764600 -0.248499 0.401176 0.676657 -0.106416 0.321650 -0.092628 -0.298887 -0.421652 0.926210 0.282772 0.324123 -0.702711 -0.682289 0.394706 -0.805791 0.254423 -0.103978 -0.120509 -0.298764 0.104716 0.250757 0.749576 0.685362 -0.492539 0.647518 -1.105565 -0.932449 -0.224927 0.096514 0.338501 -0.569684 0.426148 -0.471052 0.156595 -0.170964 0.487583 0.076060 -0.288621 -0.348822 0.121132 0.382568 0.211011 -0.740073 0.925212 -0.168172 -0.319862 0.040970 -0.132716 0.245630 0.235308 -0.254569 -0.325929 -0.386882 0.535800 -0.515761 0.946721 -0.183176 0.242000 0.596401 -PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = 0.839335 -1.162503 -0.540174 1.686894 -0.186846 -0.121301 0.090954 0.491570 0.311554 -1.765625 -1.098999 0.204237 0.445332 0.404990 1.105182 0.568629 0.298653 -0.145763 -2.263875 0.257245 0.340533 -0.246094 -0.499375 0.057458 0.054700 -0.499440 0.482637 0.556775 0.105125 1.243018 -0.634380 1.003582 0.799050 -0.478637 0.446441 0.648344 -0.192037 -0.076955 -0.634427 -0.007153 1.884207 0.236244 -0.227609 0.501477 -0.261927 1.287216 -0.078672 2.067081 0.374649 -0.780392 1.546421 -0.366591 -0.489529 -0.007579 -1.316991 0.406218 1.543015 0.825523 -0.685620 0.803611 -0.849131 0.436929 0.616364 0.408268 2.010612 0.603335 1.647368 1.237262 1.211033 -1.079759 0.558417 0.195159 0.312955 -0.099640 0.785562 -1.279347 -0.287978 -2.132460 0.434725 -1.020075 -0.090567 -0.093185 1.452272 -1.159820 -0.212186 0.625134 0.145494 1.735793 -1.207458 0.977472 -1.005462 -0.207229 0.152228 1.488915 -0.092080 0.082544 0.106870 0.736684 -0.205250 0.624571 0.360796 -0.901641 -0.573095 -2.355462 -1.544270 -0.236681 0.285483 0.327058 -1.740361 0.258351 0.447524 -0.571215 -1.619835 -0.187597 0.382874 0.987184 0.755284 0.508106 -0.561739 -0.638246 0.235364 1.057812 0.946475 -0.604699 1.140614 -1.528741 0.550429 0.982667 0.780309 0.239816 -0.636359 -0.446577 0.312163 0.069366 -0.003073 0.625216 1.165088 -0.353863 0.956394 -0.955612 1.342464 -2.106773 -0.462510 -1.055496 -0.665872 -0.398023 1.755651 0.598078 0.868545 0.246736 -1.550505 0.282783 -1.778353 -1.999708 -0.220544 0.564502 0.110436 0.580415 -0.284146 0.555933 -0.586421 0.165403 0.607255 -0.987035 -0.877771 -0.421993 -0.432426 0.587671 -0.607222 -1.029304 0.552829 0.255589 -0.511758 1.576978 0.211008 -1.554328 -1.914585 -0.687189 1.329281 -0.213138 0.302143 -0.323499 -0.546721 -1.721575 0.374220 -1.027665 -0.027245 0.148733 -1.141587 -1.572964 0.226626 0.078224 -0.191903 0.319024 -1.424233 0.228922 0.479283 0.757428 0.105765 0.702518 0.299829 -1.631799 -1.732624 -0.048332 -0.679656 1.697078 0.371051 -0.336412 0.090909 -0.577631 -0.596952 1.077784 -1.388125 0.791880 0.109319 -0.747929 0.571820 -1.294242 -0.739963 -1.212965 0.368879 0.267536 -1.593094 2.048018 1.062468 -1.034832 -0.088046 -0.847266 0.981205 -0.055252 1.419149 -0.947501 -0.274958 0.086276 0.620461 -0.055020 -0.765530 0.518385 -0.384752 -0.823273 -0.982864 -0.600621 1.027695 0.808291 0.190234 0.292112 0.823683 -0.166335 -0.155979 1.461859 0.677312 -0.451588 -0.708649 -2.496446 0.913286 1.011563 -0.664417 0.310072 -1.673712 -0.498208 0.174767 0.297063 0.807587 1.500201 0.643689 1.325085 -1.298782 -1.376404 -1.299385 -0.004386 -0.235961 -0.281948 0.018497 -0.776222 0.359650 0.095590 0.567877 -0.691765 -0.536767 -0.930529 0.086646 1.124200 -0.257620 -0.005896 1.636256 0.702364 -0.398919 -0.653985 -0.032633 -0.901217 0.565863 -0.315125 -0.450042 0.158717 0.611585 -1.292714 0.179533 -0.063860 0.281087 0.255014 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = 0.915875 -0.815779 -0.552047 2.001927 0.241267 0.504268 0.190814 -0.054589 0.218736 -2.768015 -1.320545 1.514301 0.232230 0.365086 0.160388 0.680623 0.748607 0.256580 -2.662780 -0.148907 0.400821 -0.362350 -0.083247 0.078843 0.021238 -0.995137 1.491201 0.722312 0.198600 1.527971 -0.531703 1.239794 1.411547 0.136100 0.663686 0.957397 -0.550524 -0.276200 -1.052326 -0.679279 2.204995 0.506298 -0.046673 0.797292 -0.224944 1.774009 0.544823 1.674895 1.394607 -0.622380 0.934506 0.129288 -0.731259 -0.192490 -1.960202 0.198409 0.596053 0.208928 -0.565530 0.542608 -0.624467 0.503468 0.502687 -0.020630 2.186469 0.315784 1.939986 1.445626 1.238272 -1.377188 0.268979 0.406124 0.390164 0.460352 1.186488 -0.989725 -1.090525 -0.644866 -0.179969 -1.633624 -0.125081 -0.407569 2.080620 -1.064202 -0.754501 -0.125232 0.131378 1.833740 -0.763447 0.449257 -1.832035 0.069960 0.180801 1.689537 0.508137 0.291463 -0.264902 0.388933 -0.217965 0.512250 0.555005 -1.526485 -0.038392 -2.622796 -1.017015 -1.142543 0.656440 0.469760 -1.762526 0.555171 -0.236607 1.262889 -2.182577 -0.317044 0.337632 0.531061 1.602110 -0.054250 -0.516898 -0.298551 0.454835 0.893053 0.887336 -0.901185 0.641024 -0.752033 0.416492 0.182266 0.768647 0.376367 -1.501438 -0.760278 0.482322 0.257868 0.320898 0.768149 1.079406 -0.286532 0.853321 -0.784075 1.360218 -1.855564 -0.387052 -0.874210 -0.893253 -0.867391 2.367948 1.473621 1.620862 0.119985 -0.537713 0.002773 -2.078280 -2.741637 -0.045302 0.177353 -0.060242 0.672805 -0.322212 0.862656 -1.306879 0.526946 0.879823 -0.824432 -0.889074 -0.064106 -0.099184 0.264936 -0.520572 -0.641061 -0.065967 0.031117 -0.004948 1.888640 -0.273084 -3.027611 -2.318311 -0.938873 1.384277 -1.017240 0.050356 -0.662133 -0.497655 -1.170361 -0.010864 -1.173582 -0.023729 0.103123 -1.307989 -1.974213 0.541625 -0.333938 -0.079706 0.685317 -1.566011 0.354586 0.888624 0.742107 0.376235 0.472566 -0.158373 -1.316216 -1.093588 0.241491 -1.057368 1.768810 0.707949 -0.395703 -1.072321 -0.896920 -1.339104 1.062085 -1.181930 0.992932 0.017696 -0.947985 0.391972 -1.260869 0.116123 -0.812481 0.570594 0.274474 -2.873973 1.950703 1.509566 -1.187407 -0.242105 -0.603492 0.822126 -0.014653 1.177552 -1.226182 -0.723854 0.142582 0.276777 0.023937 -0.252055 0.559858 -0.219217 -0.705369 -1.704735 -0.942102 1.334553 0.691419 -0.151894 0.003036 0.973380 -0.151015 0.478445 1.598366 0.858604 0.199517 -1.198230 -3.796048 0.502777 0.636935 -0.442667 0.559204 -1.256382 -0.603086 0.362976 -0.996278 1.420674 -0.081204 -0.498762 1.500138 -1.504036 -1.324811 -1.371252 -0.756956 0.160646 -0.149369 0.701317 -0.741156 0.105039 -0.341573 0.277673 -0.748090 -0.823730 0.359343 0.802515 1.416593 0.261862 0.249235 1.514568 0.653671 -0.593720 -0.523331 -0.006593 -1.038568 0.652644 -2.050393 -0.357280 0.363915 0.587758 -1.042441 0.047886 -0.086791 0.520369 -0.024065 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = 8.649412 -2.624398 -9.027760 18.233785 -0.797423 0.244082 2.449491 0.230973 1.625027 -22.876494 -8.335254 15.177997 4.743711 0.932566 -1.623373 8.229469 3.665665 6.200486 -20.350004 0.323426 4.379453 -0.148898 -4.098572 -3.426835 -1.048488 -6.510066 12.037363 3.953692 1.747061 14.887243 -3.974771 10.028269 12.979387 -1.769890 4.854108 10.060499 -2.621816 0.604064 -8.437405 -4.579629 17.781652 6.930534 -0.794878 6.534713 -2.992180 16.022368 5.770623 12.059547 1.661929 -6.237087 4.144345 9.312096 -6.451701 -3.635677 -14.592752 2.599352 8.346425 5.466699 -5.493697 6.729091 -3.758377 3.890455 7.125447 4.554575 17.676225 5.639695 13.468489 15.234495 14.358235 -11.390876 4.699156 0.690108 1.973714 -1.639226 17.209683 -8.776912 -13.597317 -0.194191 -2.372604 -17.047858 0.421272 0.541637 21.829947 -12.959249 -2.980579 -0.289552 7.347154 16.548223 -8.432026 1.661826 -13.902752 -0.738882 -4.680970 23.512307 4.119485 4.877749 -5.060645 6.657882 -0.958919 2.151644 4.113551 -15.010384 3.186319 -20.713041 -9.259273 -11.430821 1.777894 6.152033 -15.920556 0.127804 -2.361560 13.000251 -24.625926 -0.383289 3.627842 4.113157 18.686112 -3.347601 -5.253433 3.365755 -0.137624 3.786029 5.712499 -8.140049 3.801746 -0.429301 0.823402 2.445807 4.749405 4.767407 -20.548546 -3.989906 2.973565 -1.457908 2.889370 9.331530 9.635347 -7.010852 6.903531 -11.254794 12.213099 -17.894754 -4.085132 -5.312523 -14.003519 -7.925443 10.172287 8.519803 11.956506 -5.323955 -4.877685 -0.935662 -20.876799 -25.294660 2.366091 1.905685 -2.319352 6.203681 -3.235335 3.846422 -13.309247 5.680473 12.624190 -7.588661 -7.372488 0.499606 12.735663 2.138316 -5.557029 -4.077403 -2.803929 -1.556423 7.286629 17.271884 -3.601728 -23.765545 -24.692200 -6.135750 13.636511 -7.656544 -0.291978 -7.290855 -6.854948 -10.859413 0.093382 -11.577156 3.541543 -0.069589 -5.278801 -18.242138 5.487810 -2.275130 -3.027625 3.907344 -13.943106 3.555646 8.283784 0.659021 0.295622 1.716800 2.469248 -12.242332 -8.588030 6.613068 -8.137937 13.669311 8.512849 0.122846 -7.964598 -5.944507 -12.674449 7.192703 -9.393904 9.411024 1.133847 -5.276252 7.069664 -13.224854 0.062183 -9.664292 5.129209 1.088168 -17.442174 20.716626 12.505146 -9.689444 0.735096 -0.484155 7.885721 0.385637 8.803013 -12.888060 -10.818075 3.760116 -1.365999 -0.195810 -2.320411 3.457670 -4.902784 -2.592354 -12.944501 -3.803544 12.091193 6.441095 -2.336649 0.696535 5.631742 -10.113775 0.748357 13.596484 10.229562 3.551412 -12.862234 -27.309055 5.139124 -11.217739 -2.896436 -1.023699 -5.927025 -3.954189 6.442851 -5.179078 12.591410 -0.725949 -9.121740 13.019857 -20.694645 -14.659397 -11.226108 -4.709794 4.263731 -1.514694 3.277048 -7.241183 2.976578 -1.972837 4.693656 -6.299227 -9.108291 7.184041 8.073372 14.641931 -0.285979 -2.742263 15.677117 3.872011 -3.189945 -3.286787 -1.003036 -7.738853 2.596383 -17.591816 -2.441191 3.216656 8.656094 -11.214940 5.265212 -2.951523 3.536379 3.078811 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 3.979746 -6.244737 -0.006907 6.554022 0.869953 0.062289 1.834208 1.297991 2.444563 -8.716401 -2.489426 2.599087 0.514880 0.226705 0.671600 1.124453 2.724127 0.312796 -10.718968 0.454574 1.051677 -0.273393 -0.942863 -0.561976 -0.145112 -3.608336 5.073236 4.612302 0.362668 5.504002 -1.984307 1.826634 4.887698 -0.484472 2.734275 5.208893 1.741291 0.120506 -3.395638 0.138053 8.757440 2.821377 -2.125626 2.513062 0.805056 6.938676 3.409322 7.837466 5.377275 -2.492494 4.308289 -1.633430 -2.874581 -2.734758 -7.182361 0.747563 6.118794 3.597528 -4.108751 3.745532 -2.057422 1.264300 2.451694 2.615291 7.046641 1.646692 5.807404 4.384988 6.313183 -5.678097 0.077908 1.918094 3.163453 1.558073 4.363919 -6.145576 -4.710033 -8.910609 0.957988 -4.917910 -1.198059 -0.987451 2.914685 -4.319759 -0.492775 2.411743 -0.813184 5.216301 -3.773354 0.469361 -6.645106 -0.165362 2.137356 9.686445 -0.022543 0.668712 1.623497 2.964302 0.600205 3.279909 3.815071 -6.497373 -1.185875 -10.632281 -4.126305 -4.207136 0.643799 0.453986 -5.582564 0.218221 1.075714 0.032099 -7.612485 -0.294102 2.183451 2.442005 6.517799 -3.077955 0.107229 -0.260236 0.829768 2.305554 3.913553 -4.736219 1.878855 -2.642023 3.049015 3.016937 1.802189 0.470140 -3.850532 -1.338313 1.874207 2.424879 -0.119000 1.336361 1.591357 -3.534436 3.062401 -4.940908 6.268152 -7.030464 -1.099704 -2.917832 -2.061123 -2.511654 9.146771 1.167587 4.512733 0.442013 -4.595035 0.892419 -6.150577 -12.110457 0.552997 1.405974 0.490767 1.602795 -1.642290 1.704425 -3.626003 0.262720 1.496332 -2.890428 -2.643574 0.004369 -2.906599 1.003843 -1.915966 -1.663151 1.785536 3.111424 1.735998 6.327849 -2.087238 -11.117409 -6.717436 -3.639209 5.221272 -2.504717 -0.596145 -0.870935 -2.800867 -6.768406 2.305484 -4.479480 1.556253 -1.293998 -4.885594 -7.123514 2.583862 -2.262427 3.540282 2.620005 -5.658597 0.757485 -1.631063 3.773916 0.896678 1.587666 1.319317 -7.711663 -5.866772 -0.015586 -1.654428 9.027870 -1.202863 -0.011554 -0.055788 -2.517031 -3.605351 3.755210 -5.249547 2.666060 1.071024 -4.862505 3.559377 -3.159103 -0.709198 -4.828289 3.006660 2.611497 -1.904583 10.178567 6.396828 -4.884630 -2.142637 -1.113386 1.704355 1.242587 5.675964 -4.810699 -4.178874 2.127547 1.072005 -0.289633 -1.952018 1.862167 -0.022977 -0.328847 -6.653177 -3.931470 3.464983 3.803734 -0.452544 0.470470 2.833094 -1.047408 -3.181744 7.685262 1.638735 2.466168 -4.513496 -12.141511 3.329412 2.751167 -0.617688 1.503816 -6.256416 -2.354950 1.844632 1.593665 5.326872 6.351981 -0.779548 5.875235 -6.565922 -5.933925 -4.953227 -2.844590 1.034218 -1.289234 1.670723 -3.490244 1.426403 -1.940510 1.292663 -2.159074 -1.080438 0.280311 2.062439 3.286246 0.461059 -1.446511 6.468495 0.742188 -2.306170 -1.692725 0.296757 -3.009998 3.706692 -2.492911 -1.275917 -0.382383 3.491882 -3.488844 1.765938 -0.630946 2.066549 0.580805 -PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = 0.832600 -0.753938 -0.376001 1.824830 0.249426 0.436420 0.207145 0.003584 0.204244 -2.559933 -1.230219 1.339883 0.156487 0.305421 0.159870 0.544545 0.727000 0.269317 -2.618215 -0.120040 0.399589 -0.266924 0.003631 0.011582 0.054635 -0.898176 1.350600 0.734231 0.195294 1.420917 -0.526983 1.078571 1.305617 0.183743 0.649801 0.928537 -0.497622 -0.269305 -0.922991 -0.630758 2.070834 0.479207 -0.036919 0.766839 -0.131866 1.659598 0.579606 1.431415 1.393153 -0.578439 0.812534 0.026210 -0.700296 -0.223802 -1.816227 0.163976 0.577680 0.273419 -0.558038 0.539542 -0.534927 0.451272 0.455721 -0.089420 1.999053 0.248535 1.734498 1.295510 1.168445 -1.275618 0.219555 0.358793 0.431128 0.457802 1.015051 -0.975550 -0.990977 -0.798795 -0.188065 -1.651825 -0.122619 -0.371045 1.863100 -0.967730 -0.598359 -0.073168 0.020984 1.656295 -0.669115 0.317215 -1.702974 0.074158 0.198701 1.539101 0.438100 0.221436 -0.138198 0.356742 -0.161975 0.520823 0.523022 -1.417059 -0.043821 -2.535565 -0.876944 -1.052910 0.604279 0.375522 -1.578396 0.504634 -0.204440 1.144041 -2.021175 -0.342482 0.338257 0.487549 1.228232 -0.236000 -0.413130 -0.302070 0.373152 0.866572 0.850339 -0.929167 0.552296 -0.669355 0.327010 0.183993 0.729786 0.327508 -1.249117 -0.761839 0.436683 0.290287 0.253792 0.662065 0.923717 -0.210245 0.783446 -0.783274 1.302919 -1.673313 -0.292056 -0.803537 -0.710326 -0.806843 2.210826 1.291198 1.413229 0.142002 -0.467428 0.036599 -1.847061 -2.510776 0.043330 0.159552 0.014228 0.603292 -0.297044 0.773836 -1.189446 0.393496 0.730006 -0.744104 -0.808336 -0.088579 -0.222572 0.240768 -0.479520 -0.610966 0.018833 0.139716 -0.039724 1.672842 -0.325594 -2.737597 -2.068473 -0.906052 1.290454 -0.942099 0.010246 -0.580987 -0.431777 -1.022549 0.056695 -1.114795 -0.021064 0.059623 -1.231679 -1.837208 0.483956 -0.358244 0.028191 0.660301 -1.424257 0.313570 0.769415 0.762816 0.330771 0.439834 -0.106219 -1.237861 -1.008184 0.148838 -0.926017 1.596632 0.582848 -0.334534 -1.070480 -0.808580 -1.172971 1.010558 -1.004180 0.903578 -0.010276 -0.911838 0.414942 -1.089363 0.192346 -0.742061 0.536020 0.313312 -2.731347 1.790158 1.409886 -1.129423 -0.273696 -0.604946 0.712111 0.018958 1.119980 -1.133628 -0.690047 0.154837 0.209659 0.025529 -0.318834 0.521355 -0.147589 -0.609001 -1.608278 -0.905309 1.228172 0.640930 -0.130251 0.043310 0.928865 -0.046568 0.408860 1.531649 0.739100 0.232342 -1.123776 -3.523928 0.493820 0.844799 -0.284097 0.557389 -1.158829 -0.600125 0.319139 -0.832445 1.324364 0.099485 -0.451823 1.395941 -1.330645 -1.221633 -1.274397 -0.689693 0.186632 -0.168706 0.632419 -0.691142 0.093726 -0.337252 0.256692 -0.622490 -0.704720 0.250889 0.734330 1.295372 0.306648 0.215604 1.415679 0.554220 -0.602318 -0.448252 -0.011165 -0.927066 0.609917 -1.801045 -0.344616 0.298393 0.547182 -0.950845 0.076855 -0.088254 0.515018 -0.033893 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = 0.854412 -0.666337 -0.737230 1.256430 -0.019836 -0.043440 0.093370 -0.152312 0.194535 -1.629966 -0.411459 1.445090 0.299870 -0.047276 0.065749 0.868887 0.409297 0.036905 -0.790504 0.236681 0.020612 -0.350865 -0.716571 0.175794 -0.113365 -0.795892 0.936756 0.379070 -0.002854 0.982489 -0.382324 0.822587 0.911419 -0.314683 0.489726 0.723364 0.014428 -0.100681 -0.702038 -0.054170 1.568093 0.127053 0.074710 0.507677 0.041677 1.205182 -0.051784 1.864744 0.821981 -0.408238 1.194733 0.705953 -0.402996 -0.058876 -1.398023 0.275710 0.336041 -0.198802 -0.678739 0.443005 -0.426819 0.394769 0.464691 0.725028 1.606789 0.648711 1.162469 1.154306 1.157852 -0.781799 0.201736 0.443290 0.406324 0.230392 1.332720 -0.506780 -0.713441 0.052845 -0.008127 -0.093533 0.024998 -0.311714 1.442422 -0.939208 -0.617716 0.142263 0.450376 1.329017 -0.668767 0.486422 -1.159877 0.000129 0.194420 1.449490 0.075455 0.494792 -0.542888 0.365538 -0.309934 0.348322 0.338253 -1.253093 -0.282461 -1.157221 -1.323698 -0.804147 0.059815 0.182204 -1.686639 0.266655 0.217459 0.763652 -1.579153 0.082915 0.214558 0.233597 2.130795 0.712120 -0.513180 -0.085398 0.377139 0.537189 0.191962 -0.063177 0.418961 -0.778574 0.523774 0.340047 0.466116 0.086961 -1.659068 -0.133525 0.403804 0.142992 0.085097 0.547257 0.694542 -0.828243 0.557253 -0.427066 0.861633 -1.544504 -0.809409 -0.908791 -0.820099 -0.442024 1.468883 0.792153 1.605534 0.041169 -0.771326 -0.128120 -1.750363 -2.003456 -0.256904 -0.302733 -0.286102 0.484491 -0.196760 0.324530 -0.666794 0.390537 0.729034 -0.857217 -0.568722 -0.222964 0.150286 0.068058 -0.403633 -0.432699 -0.251941 -0.066066 0.436991 1.307379 -0.049982 -2.215905 -1.752517 -0.599158 0.890173 -0.519143 0.264482 -0.327056 -0.525234 -1.167693 -0.060083 -0.755637 0.197333 -0.191484 -0.575625 -1.258868 0.520000 -0.161936 -0.257957 0.027057 -1.163863 0.348311 0.059700 -0.047105 0.270933 0.345268 -0.274841 -1.195525 -1.064151 0.394861 -0.491758 1.342963 0.707389 0.006027 -0.177249 -0.652015 -1.221741 0.528088 -1.869594 0.623270 0.711606 -0.742099 0.499748 -1.093119 -0.444997 -0.727090 0.576616 -0.009604 -1.076080 1.589647 1.009094 -1.028425 -0.156282 -0.227894 0.752002 0.154641 1.005925 -0.699968 -0.300779 0.274458 0.553219 -0.088216 0.079664 0.511283 -0.323585 0.048322 -1.104668 -0.537506 0.895301 0.800270 -0.158110 -0.279313 0.187172 -0.593380 -0.075401 0.995095 0.689699 0.351827 -0.774861 -2.198156 0.283574 -0.887011 -0.581652 0.530326 -1.060402 -0.254034 0.293305 -0.606281 1.113797 -1.029624 -0.056644 0.977244 -1.562075 -1.231891 -0.757108 -0.549580 -0.079696 -0.074823 0.698891 -0.515649 -0.030469 -0.184673 0.480711 -0.767750 -0.422538 0.376852 0.507347 0.841609 0.141600 -0.172669 1.093008 0.486711 -0.249713 -0.427804 0.066659 -0.513087 0.410540 -1.512886 -0.317075 0.007789 0.550288 -0.831495 0.421191 -0.132624 0.419718 -0.028825 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 9.934431 -1.434877 -12.168942 19.886242 -1.085566 3.858739 1.295001 -2.052139 -0.237562 -24.162325 -9.973496 16.164363 6.056639 4.689956 -1.301134 12.152259 3.791895 2.637951 -16.472235 -0.628891 4.259332 -3.935852 -4.000920 1.333076 -1.359754 -9.260513 14.462818 2.249149 1.893638 15.502396 -2.966803 14.717403 13.998124 -2.596286 5.002197 9.418259 -5.058025 -0.534488 -11.839658 -6.133796 17.110425 5.204893 1.358394 4.781423 -7.120546 16.857114 4.394163 16.712794 1.025579 -7.462722 8.345854 8.552728 -6.933897 -1.199214 -15.059306 1.678121 2.446590 2.060187 -3.837314 4.597552 -7.223161 4.713857 6.563523 5.847032 19.291504 4.782158 16.697336 16.308980 11.774602 -13.057138 4.854403 4.424502 -2.149818 0.101409 17.001688 -8.086006 -12.925900 9.033353 -1.386705 -11.697394 -1.867163 -0.627128 26.690242 -12.699873 -8.770332 -3.656976 6.818795 18.693105 -9.040859 6.955679 -15.002074 -1.009449 -3.633160 17.922052 4.533499 4.866946 -6.456619 4.248309 -3.138006 1.876020 2.107813 -15.536875 1.611398 -13.539110 -9.759678 -11.995375 5.384360 9.427587 -18.183718 2.034089 -6.561325 15.780334 -23.621914 0.541195 3.295325 5.778363 26.353786 8.900239 -6.249555 0.873512 5.197223 6.070515 8.524635 -5.474675 7.233003 -3.133406 3.496565 1.301711 5.151018 5.261235 -24.688688 -5.125340 4.844757 -4.723763 5.184675 11.293059 13.741970 -5.653355 8.187486 -7.805092 11.951283 -19.417269 -7.225096 -7.017796 -17.027087 -9.004674 14.646120 16.233630 16.944506 -4.412805 -5.231085 -0.723048 -23.044680 -22.435740 -3.436822 1.634620 -4.138681 8.858619 -2.885604 8.285044 -14.188274 10.002505 12.296929 -7.120965 -9.208355 1.550586 9.758532 3.891007 -5.443021 -4.725192 -4.761547 -9.219785 5.246104 22.231423 -0.615397 -29.972863 -27.977966 -6.762887 14.088567 -9.113128 0.884810 -8.951886 -7.998690 -10.289215 -3.632487 -12.145694 1.549038 2.417542 -6.412321 -18.490809 7.712059 -1.343930 -7.812157 4.728689 -13.639308 2.730938 13.508890 -0.551825 2.943773 3.164365 -1.939416 -9.817684 -7.004707 8.731170 -12.298855 15.723711 11.613106 -3.411198 -7.602045 -8.517456 -14.617198 7.515216 -9.963017 10.592579 1.197840 -2.752222 4.202837 -16.115232 2.152215 -8.506120 5.295269 0.780667 -26.377901 16.606929 14.186702 -9.082009 1.538076 0.003309 9.045252 -0.314742 6.789327 -10.359761 -9.267205 1.659039 2.481361 0.370645 0.845895 2.879647 -6.772126 -7.807450 -12.119836 -3.659075 13.655356 5.496739 -2.247210 -3.294934 6.973125 -9.639596 6.818151 11.288214 11.821889 1.039446 -12.414757 -32.783787 5.029738 -10.738771 -8.259895 0.447590 -6.629619 -2.533379 6.817770 -13.548771 12.934351 -8.030119 -9.228068 13.948242 -20.153756 -14.689835 -14.107700 -5.587830 1.302564 0.973136 3.125806 -6.855183 3.356836 -1.341080 2.810476 -9.289766 -10.502777 9.737171 9.015611 16.884903 -0.596957 2.164843 15.361951 6.746039 -0.569737 -6.269454 2.278786 -10.315979 2.639781 -23.852276 -3.366012 5.847234 7.939939 -11.310706 0.159024 -1.766681 1.992421 2.402220 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = 4.469236 -1.622790 -4.509107 8.878593 -0.116064 1.526746 0.756488 -0.395220 0.219849 -11.253229 -4.796519 7.568349 2.078169 1.514725 -0.165849 4.308259 2.513946 1.118598 -9.083310 -0.315536 1.611164 -1.679621 -2.266647 0.655521 -0.549746 -4.058816 6.117135 1.992361 0.724055 6.826883 -1.580870 5.985341 6.168044 -0.996408 2.491910 4.366739 -2.164409 -0.367412 -4.632776 -2.562034 8.625364 2.235834 0.402281 3.018695 -1.951296 7.709165 1.459338 8.210170 2.633350 -3.090622 4.322377 3.507531 -3.020449 -0.825460 -7.503604 0.685876 2.277682 0.839930 -2.396873 2.550809 -3.109384 2.000489 2.809327 2.049031 9.039638 2.583158 7.706829 7.195064 5.689135 -5.691909 1.787867 1.798340 0.172861 0.872454 6.593075 -3.934963 -5.437662 1.481307 -0.659306 -6.015769 -0.593200 -0.995135 11.388529 -5.367839 -3.529742 -1.233226 2.396336 8.075703 -4.055607 2.395883 -7.105849 -0.419707 -1.027289 8.351841 1.818283 2.146199 -2.081523 1.876044 -1.272968 1.477130 1.052696 -7.080551 0.291787 -8.381386 -5.003279 -5.159519 2.052146 3.267883 -8.105975 1.211462 -1.948593 5.948518 -10.465791 -0.490646 1.349538 2.183138 10.326031 3.445487 -3.336563 -0.331045 1.970955 2.965970 3.842860 -2.478564 3.044200 -2.429952 1.342308 0.846117 2.500501 2.201028 -9.955990 -2.339836 2.089510 -1.060679 1.700730 4.309697 5.331558 -2.259664 3.721063 -3.580336 5.652648 -8.980978 -3.199076 -3.570229 -6.389878 -3.817277 7.359416 6.972338 7.706975 -1.129844 -2.508938 -0.246962 -10.236861 -10.808945 -0.892441 0.465786 -1.194217 3.300785 -1.387401 3.333087 -6.049135 3.414304 5.028793 -3.335974 -3.894246 0.008615 3.607335 1.530049 -2.347900 -2.433750 -1.356549 -2.485490 1.783613 9.297724 -0.862530 -13.699625 -11.804389 -3.065246 6.211534 -3.962066 0.236815 -3.201318 -3.281209 -4.902470 -1.097504 -5.454417 0.158144 0.252749 -3.661563 -8.412432 3.300108 -0.892506 -2.373949 2.084049 -6.523070 1.361651 5.414168 1.539482 1.465268 1.586979 -0.728745 -5.226873 -3.995747 2.842136 -4.838475 7.447287 4.902276 -1.330846 -3.448584 -3.587305 -6.689214 3.670725 -5.263162 4.537654 0.946211 -2.690819 2.155576 -6.615847 0.305998 -3.995287 2.415728 0.682107 -12.172012 8.353245 6.316042 -4.754372 -0.055927 -0.980241 3.857282 -0.030927 3.822624 -5.006742 -3.869144 0.989676 1.157120 0.133272 -0.283841 1.723443 -2.114170 -2.934243 -6.326503 -2.508655 6.381536 2.832807 -0.890505 -1.085047 3.050116 -3.305724 2.639902 6.017236 4.785053 0.710816 -5.283516 -15.497527 2.336632 -2.821034 -3.130189 0.943549 -3.981045 -1.890491 2.407530 -5.333501 5.928552 -3.106981 -3.308861 6.326941 -8.536042 -6.509423 -6.290813 -2.628726 0.813219 -0.116164 2.133568 -3.296626 1.217377 -0.985089 1.577366 -3.734224 -4.251594 3.049228 3.770693 6.747735 0.076937 0.569932 6.927754 2.652315 -1.224124 -2.562937 0.493666 -4.356795 1.867614 -10.222715 -1.420175 1.798385 3.457456 -4.978495 0.546263 -0.534711 1.814746 1.035785 -PE-benchmarks/subset-sum.cpp__main = 1.447864 -0.598830 -0.810874 2.549908 0.215109 0.329746 0.524236 0.289791 0.130875 -3.669549 -1.741602 1.692750 0.480341 0.303937 0.207200 0.981455 0.840130 0.568197 -2.982630 -0.107049 0.647820 -0.287677 -0.496422 0.033346 -0.165348 -1.297932 1.009517 0.949345 0.249865 2.301985 -0.602217 1.392025 2.005334 -0.146607 0.608127 1.682818 0.014124 -0.093559 -1.053185 -0.617797 3.011509 0.709917 -0.141570 1.091218 -0.264349 2.560297 0.149946 2.839516 0.499386 -1.044329 1.539408 -0.124194 -1.082045 -0.308315 -2.372085 0.498187 1.506716 0.816063 -0.957678 1.165778 -1.021216 0.607159 0.855196 0.154336 2.569885 1.249184 1.986696 2.054515 2.211181 -2.051654 0.252663 0.760813 0.332775 0.313125 1.450739 -1.292409 -1.262820 -1.040185 -0.025396 -2.153113 -0.329527 -0.453640 3.581174 -1.810233 -0.776313 0.495035 0.485826 2.310406 -1.319175 0.623441 -2.338187 -0.005211 -0.104835 2.859696 0.509419 0.514688 -0.505437 0.644767 -0.041906 0.845602 0.323490 -2.004554 -0.938053 -3.317715 -1.754935 -1.458917 0.497209 0.739517 -2.588160 0.081799 0.410256 1.622587 -3.307068 -0.201372 0.742536 1.025678 2.405855 1.087160 -1.382814 -0.152544 0.535515 0.682841 1.220805 -1.030871 0.802324 -1.095069 0.378582 0.279370 0.761246 0.364197 -2.871129 -0.797254 0.512155 -0.322553 0.389767 0.927181 1.271799 -0.897685 1.251341 -1.344742 1.900015 -2.984385 -0.742276 -1.063050 -2.100088 -1.067500 2.959432 1.957872 2.249806 0.022880 -1.127535 -0.335564 -2.882659 -3.649748 -0.058215 0.230932 0.333637 0.776389 -0.501678 0.830098 -1.721123 0.681660 1.126108 -1.103650 -0.997122 0.002056 1.483350 0.155984 -0.781055 -1.236369 -0.032653 0.104438 0.184056 2.407924 -0.528515 -3.453634 -3.265128 -1.317185 2.024243 -1.138557 0.108688 -0.832916 -0.780189 -1.941898 0.041977 -1.630352 0.201499 0.070528 -1.646593 -2.797159 1.088120 -0.429743 -0.714951 0.911300 -2.078110 0.373109 1.324069 0.756985 0.501290 0.481162 -0.078756 -2.044765 -1.793799 0.272479 -1.244865 2.478303 1.529229 -0.179689 -0.970697 -1.135041 -2.052388 1.553893 -1.787510 1.167188 0.107932 -0.917201 1.060098 -1.910629 -0.234938 -1.744956 0.903129 0.520734 -3.346784 2.877806 1.993990 -1.596689 -0.457004 -0.779384 0.969640 0.348458 1.835263 -1.616241 -1.198176 0.628837 0.195363 -0.049912 -0.438514 0.768084 -0.525095 -0.409131 -2.181574 -1.003360 1.785062 1.313378 -0.343432 0.186891 1.214955 -0.344909 0.605607 2.216506 1.305746 -0.083721 -1.570387 -4.748474 1.014888 -0.196845 -0.745478 0.384924 -1.633847 -0.810932 0.796063 -0.974180 2.021194 0.069921 -0.567758 2.177553 -2.402177 -2.150756 -1.548684 -0.632922 0.471085 -0.528083 0.734345 -1.095319 0.445459 -0.199185 0.392077 -0.655421 -1.383868 -0.068285 0.816079 2.138687 0.100875 0.024123 2.410413 0.645674 -0.699485 -0.563267 0.019850 -0.811733 0.716927 -2.478087 -0.441768 0.248433 1.019853 -1.505829 0.652238 -0.151042 0.280823 0.633295 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 5.162527 -6.117168 -2.737263 9.065455 1.198103 2.134219 1.098745 -0.169762 2.160882 -12.142730 -4.352056 9.071566 1.043832 1.443201 -0.485441 3.202645 3.860329 0.570107 -11.800875 -0.473033 0.508622 -2.015067 -1.632222 0.229258 -0.247254 -4.542241 9.755020 3.810035 0.904089 6.588263 -2.028066 4.982460 6.071449 0.094452 3.444743 4.810370 -1.374684 -1.211350 -6.221045 -3.613566 10.421957 2.823609 -0.344136 4.237451 -0.953770 8.200305 3.658696 9.742635 9.636625 -2.517421 4.692779 2.212779 -3.837791 -1.969543 -9.930143 0.521765 1.884783 -0.028502 -3.147121 2.647568 -2.156971 2.105836 2.564504 1.939599 9.945433 0.865540 9.120083 6.593989 5.921787 -6.760149 0.839523 2.539633 2.712352 3.452545 7.148636 -6.048434 -6.448671 -2.379145 -0.250316 -5.551791 -0.697459 -2.293393 8.269419 -4.779129 -3.550950 -1.066879 0.508123 7.780254 -3.775748 1.999416 -8.948071 0.117321 1.664407 8.736238 1.766970 1.848692 -0.557464 1.715378 -1.320189 2.610996 3.936935 -8.092214 1.544104 -11.406769 -4.068650 -6.011908 2.165918 1.889283 -7.126752 2.527666 -2.368351 5.393955 -9.517143 -1.529148 1.480280 1.311944 10.599662 -0.099999 -0.250844 -0.916752 2.520576 3.773303 4.045196 -4.192810 2.633419 -2.058976 3.001285 1.387352 3.074667 2.137954 -7.423992 -2.780162 3.000787 2.426492 1.449627 3.238546 4.368854 -2.631216 3.550357 -3.592112 6.334048 -7.880649 -2.921763 -3.737104 -3.155035 -4.231502 11.869814 5.344141 8.797858 0.303845 -2.486340 0.264915 -8.998422 -13.863207 -0.072861 0.610011 -1.670786 3.330687 -1.330253 3.744034 -6.102238 2.176402 3.902238 -3.638984 -4.311856 0.183826 -2.936719 1.315972 -1.951777 -1.927232 -0.006582 -0.399137 2.113140 9.229725 -1.423258 -18.296379 -10.170643 -3.840531 6.237253 -4.563098 -0.304545 -2.177539 -3.731040 -4.934657 -0.513368 -5.441704 0.622631 -0.302896 -6.153335 -8.769717 3.226916 -1.916776 1.227285 3.254657 -7.222039 1.781981 2.273001 3.972635 1.144200 2.429176 -0.590086 -7.319518 -5.096939 1.708695 -4.171514 10.070616 1.975713 -1.494093 -3.543775 -4.058981 -5.965336 4.009153 -8.074704 4.784519 1.152539 -5.208353 1.885850 -5.574118 0.686111 -3.737876 3.336854 1.727106 -10.747519 10.073737 7.812312 -5.747790 -1.268833 -1.286498 3.184278 0.095048 5.336459 -6.174811 -4.495774 1.321562 1.852754 0.006998 -0.531882 1.962019 -0.395857 -3.010782 -8.504060 -4.904886 5.683828 3.033291 -0.708782 -1.376401 3.880174 -2.012052 0.638181 8.400181 3.797477 2.769380 -6.376727 -18.536771 2.617833 2.772264 -2.402031 3.068955 -6.967818 -2.463845 2.222226 -4.987799 6.269897 -1.521962 -2.487105 6.805755 -8.065138 -6.317669 -6.602138 -4.554898 0.875469 0.122641 3.927444 -3.744307 0.533831 -2.861548 1.296296 -5.025490 -2.141735 4.065502 4.345765 5.551324 1.360924 0.779554 6.913059 2.573756 -2.263680 -2.467140 0.069558 -5.314713 3.609115 -9.880121 -1.168466 1.539867 3.427803 -4.610921 0.148133 0.176837 3.027456 -0.733641 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = 6.182075 -2.829952 -2.862420 7.877209 0.413736 0.063095 1.774961 2.744702 1.723297 -13.703766 -6.627231 7.851734 1.182257 -0.368275 0.463807 3.314284 3.482088 3.908814 -14.011863 0.554399 2.552421 0.769197 -1.420113 -1.788979 0.329231 -2.966181 2.763577 1.941442 1.310291 7.908873 -3.138512 4.458825 6.913186 -0.094125 2.461934 5.538944 -1.843284 -1.184507 -1.426453 -3.466462 11.272482 3.811451 0.237296 5.276107 0.115955 8.452497 0.452661 10.185478 4.655464 -3.231429 4.549025 -2.091786 -4.831821 0.046349 -8.806743 2.148945 5.129322 2.831423 -3.122674 4.379459 -1.806328 2.629704 3.186025 -1.960295 9.748995 4.537210 6.281390 6.988355 8.332823 -5.391981 2.199576 0.369866 2.875641 1.064543 5.894375 -6.719986 -3.875920 -5.448368 -0.809556 -10.897850 1.078457 -2.239190 14.195892 -7.086758 -0.037118 1.706541 2.624527 8.330089 -3.800263 0.636247 -8.330319 0.756099 -0.744319 10.257407 0.829284 2.437689 -2.771008 2.265946 -0.821920 1.523960 2.053749 -6.683673 -2.632961 -14.512237 -4.741295 -4.937937 0.551423 1.855632 -8.992970 1.272287 0.753695 6.707970 -12.937007 -1.568525 1.991793 1.589821 5.742639 2.913543 -4.520306 -0.806883 -0.600759 3.579027 1.989157 -5.379152 1.288684 -4.153949 -0.866226 1.507431 3.308579 1.438706 -9.677764 -2.793283 1.370659 0.496018 0.576369 4.219904 4.479467 -2.952445 3.971405 -5.671239 5.830266 -9.647565 -3.202933 -3.573459 -6.448903 -3.951979 12.814539 5.999123 6.841071 0.571452 -2.266909 -2.059657 -10.151510 -12.489498 1.783475 -1.033617 1.977368 2.313210 -0.930648 1.027393 -5.911162 1.177466 2.980114 -4.407512 -3.141125 -1.413037 5.706878 -0.515709 -2.661028 -4.646986 -0.228685 3.465581 0.006801 5.992079 -2.612392 -11.855971 -10.986606 -4.191639 7.168675 -4.009035 1.177962 -3.101952 -0.941428 -4.991145 -0.159808 -5.706632 0.781648 -0.075684 -5.898357 -9.993169 2.607509 -1.552181 -0.997572 2.310160 -6.876235 2.265189 4.923991 6.031619 0.279706 1.906131 0.484070 -9.072851 -7.149929 0.000507 -4.113092 8.547049 5.422592 -0.301066 -5.644278 -3.048915 -6.925260 5.718736 -7.928196 4.224122 -0.438268 -3.589359 4.166362 -6.253094 0.207591 -7.023718 2.979845 0.750860 -15.117869 10.748425 5.984063 -6.387912 -0.842707 -4.940926 4.393675 1.222262 6.692108 -5.594448 -4.312923 2.317813 -1.539520 -0.302762 -3.499396 3.053399 -1.700196 -0.089317 -8.344214 -3.121614 7.016285 3.797711 -1.443149 1.276181 4.184324 -0.753098 2.218083 8.819873 4.235119 0.054953 -6.944443 -18.857179 2.604612 4.833690 -0.230935 1.555374 -6.201349 -3.216473 2.094064 -3.031973 6.933564 1.632769 -0.614743 6.779601 -8.803095 -7.321765 -4.252557 -1.074895 2.592879 -1.754446 2.549276 -3.554456 0.611384 -0.617050 3.150701 -1.102179 -5.685591 -1.665249 3.603059 8.185297 1.505465 -1.174621 8.172817 1.949979 -3.019470 -0.406541 -1.560875 -1.998129 1.376653 -8.015146 -0.933514 0.719497 3.041231 -6.153538 4.567718 -0.318425 2.386689 1.036315 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 1.395440 -0.519501 -0.195453 1.727452 0.299014 -0.143527 0.602962 0.878582 0.279690 -3.308556 -1.627760 1.370676 0.133684 -0.213373 0.212979 0.510563 0.932382 1.169154 -3.371316 0.144257 0.712942 0.393252 -0.224133 -0.613097 0.080060 -0.691741 0.142340 0.709691 0.362875 2.001629 -0.872664 0.698073 1.686611 0.121907 0.649788 1.589139 0.108696 -0.253945 -0.104041 -0.723477 2.948592 0.861188 -0.025359 1.326054 0.346211 2.148902 0.078780 2.164499 0.749375 -0.830908 0.954118 -1.129265 -1.159154 -0.111071 -2.145922 0.650987 1.591451 1.170887 -1.016372 1.317337 -0.387434 0.584652 0.756380 -0.709594 2.121766 1.183325 1.086436 1.567435 2.254368 -1.455632 0.295470 0.187503 0.868599 0.250582 0.967931 -1.520722 -0.627662 -2.295601 -0.156210 -2.914512 0.208116 -0.455196 3.385521 -1.755535 0.350590 1.001765 0.359890 1.771289 -0.909170 -0.152639 -2.104730 0.187473 -0.110490 2.520559 0.200801 0.397862 -0.397832 0.630912 0.069056 0.659674 0.396958 -1.550974 -1.129384 -3.898777 -1.206712 -1.116837 -0.001855 0.201222 -2.014306 -0.039851 0.850651 1.612416 -3.124631 -0.387227 0.665963 0.542760 0.514829 0.325671 -1.199979 -0.143787 -0.332130 0.660094 0.539325 -1.450210 0.154003 -0.982281 -0.320856 0.310632 0.827199 0.182686 -2.076196 -0.752960 0.240276 0.038246 -0.065163 0.670950 0.698004 -0.797400 1.003290 -1.564915 1.549138 -2.272333 -0.445512 -0.798879 -1.611627 -0.882998 3.183628 1.169287 1.378708 0.296470 -0.720419 -0.546020 -2.168855 -3.075108 0.750325 -0.150510 0.890746 0.430837 -0.290655 0.092400 -1.339236 -0.091018 0.518924 -1.073762 -0.645094 -0.347038 1.545900 -0.293675 -0.687798 -1.403320 0.276305 1.426596 -0.102915 1.061959 -0.982200 -2.110706 -2.319175 -1.220266 1.772859 -0.898745 0.246144 -0.539628 -0.150662 -1.318922 0.298712 -1.430560 0.356370 -0.201524 -1.531039 -2.491257 0.663786 -0.547367 -0.240977 0.719106 -1.606289 0.545363 0.889506 1.355757 -0.001357 0.342305 0.310658 -2.295648 -1.917838 -0.304954 -0.702303 1.910858 1.273910 0.169595 -1.414213 -0.710885 -1.518229 1.576677 -1.709123 0.872470 -0.127766 -0.945398 1.299609 -1.346642 -0.011268 -1.828211 0.843115 0.473668 -3.377150 2.641221 1.477982 -1.643573 -0.493203 -1.387633 0.848398 0.523679 1.967782 -1.357651 -1.028037 0.822232 -0.545846 -0.106718 -1.107696 0.804951 -0.233181 0.378816 -2.184764 -0.909331 1.560486 1.156985 -0.350764 0.638209 1.127382 0.203278 0.308593 2.411778 0.890901 0.034673 -1.629991 -4.177541 0.852327 1.457246 0.292823 0.387296 -1.456587 -0.882725 0.491078 -0.279721 1.749196 1.078074 -0.071327 1.774411 -1.953751 -1.857179 -0.782340 -0.130369 0.837284 -0.802840 0.630227 -0.945889 0.204840 -0.201142 0.730381 0.089393 -1.217875 -0.979494 0.653841 1.912788 0.495057 -0.409161 2.139407 0.232607 -0.948988 0.117707 -0.391309 -0.027175 0.447776 -1.511871 -0.334637 -0.080169 0.763705 -1.437814 1.395925 -0.151474 0.444945 0.545801 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = 2.141066 -2.547846 -1.897193 5.102803 0.167979 1.449799 0.649037 -0.461949 0.552827 -7.485753 -2.914222 5.022420 0.800328 1.444034 -0.374992 1.812731 1.643628 0.796578 -6.744495 -0.784668 0.948810 -0.549671 0.148502 0.204184 -0.015779 -2.091816 4.529660 1.547439 0.722635 3.928181 -1.044792 3.504040 3.791389 -0.016989 1.196893 2.509444 -0.979615 -0.329734 -3.213634 -2.153412 5.249885 0.807871 0.397678 2.244423 -1.342887 4.430677 2.060246 5.109606 4.485879 -1.766538 2.633294 0.406008 -1.915882 -0.985065 -4.645274 0.310810 1.116309 1.039444 -1.314598 1.335788 -0.464187 1.089532 1.347394 0.402322 5.225940 0.997720 4.766019 3.994775 2.850228 -3.688767 0.799750 0.782322 0.264312 0.892847 3.932296 -3.907386 -2.945448 -0.692844 -0.376191 -4.430688 -0.654889 -0.805763 5.529279 -2.809985 -2.177529 -0.816866 0.565786 4.602370 -1.423404 1.524966 -4.630100 -0.167629 0.898429 4.819140 1.070648 0.589331 -0.909014 0.983283 -0.559361 1.063320 1.698171 -3.950942 0.695994 -6.062320 -2.117619 -3.062642 1.538987 1.931437 -4.245177 0.884868 -2.112542 2.967463 -6.311221 -0.957167 0.923682 1.440156 5.194822 0.221284 -1.145379 -0.428621 1.267990 1.790749 2.293314 -2.365594 1.695628 -1.015088 0.672763 0.484481 1.518938 1.237549 -5.133723 -2.248162 1.108983 1.007708 0.960584 2.102533 3.239010 -0.265618 2.058744 -2.305552 3.226822 -4.667716 -1.421738 -1.579332 -2.771856 -2.506697 6.146545 3.177241 4.335062 -0.480087 -1.534913 0.069101 -5.128206 -7.504070 0.103302 0.585189 -0.413277 2.392407 -0.951271 2.260668 -3.631759 1.864145 2.731045 -1.595682 -2.452575 0.001276 -0.928221 0.743675 -1.203480 -1.035175 -0.032361 -0.841843 0.476985 5.464232 -0.674414 -8.663330 -6.537446 -2.051305 3.602253 -2.467450 -0.106198 -1.582416 -1.709563 -2.875840 -0.532315 -3.258983 0.009768 0.356026 -3.549841 -5.104441 1.835226 -0.862961 -0.197182 2.096311 -3.921325 0.738554 1.959998 2.417381 0.849809 0.913582 -0.211521 -3.604544 -2.621050 0.974464 -3.220284 4.105626 1.711253 -0.666616 -2.635093 -2.308091 -3.211481 1.981302 -3.215461 2.761084 0.190266 -1.799629 0.973893 -3.663474 1.337977 -1.907374 1.381331 1.180457 -7.881848 5.335594 3.396729 -2.520416 -0.272731 -0.483007 1.694010 -0.067970 2.182046 -3.291477 -2.666935 0.615153 0.473542 0.233595 -0.773979 1.028714 -0.586064 -1.861373 -4.151039 -2.199292 3.260963 1.367004 -0.396128 -0.095939 2.741670 -1.333185 0.337390 4.392160 2.230539 0.826850 -2.880754 -10.269252 1.558929 1.543781 -1.393442 1.149293 -3.671512 -1.038974 1.752800 -2.906883 3.309869 -0.854797 -1.727681 3.738735 -4.717617 -3.320035 -3.497928 -2.275882 0.748465 0.330366 1.018095 -1.621689 0.627788 -0.738998 0.361764 -2.061391 -2.143513 1.938739 2.321045 3.901640 0.135267 1.092866 3.928359 1.171624 -1.099335 -1.067202 0.045466 -2.471915 1.338781 -6.200315 -0.569756 1.378856 1.822867 -2.772131 -0.143445 -0.628360 0.908515 -0.183826 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.676009 -0.822562 -0.585507 1.736327 0.087050 0.524333 0.186785 -0.126213 0.130987 -2.542101 -1.013702 0.990317 0.302333 0.590651 0.139300 0.756846 0.534472 0.205716 -1.863233 -0.164862 0.455464 -0.239044 0.121491 0.252438 -0.008056 -0.881703 1.194501 0.401097 0.299584 1.421319 -0.415328 1.222328 1.363256 -0.073182 0.475099 0.935487 -0.072838 -0.104539 -1.073966 -0.488655 1.835066 0.260057 0.044084 0.509708 -0.530405 1.582096 0.535759 1.744169 0.933549 -0.755496 1.050954 -0.478925 -0.556256 -0.189413 -1.538005 0.233565 0.397964 0.558479 -0.547299 0.455834 -0.533030 0.404324 0.443646 0.117558 1.747990 0.312273 1.537849 1.387679 0.969293 -1.344074 0.202624 0.489881 -0.070558 0.261682 1.155966 -1.105426 -0.771414 -0.659190 -0.077564 -1.075476 -0.347298 -0.202828 1.904106 -1.089639 -0.668796 0.071303 -0.001453 1.572041 -0.593722 0.646772 -1.647554 -0.090330 0.438653 1.277761 0.376846 0.022081 -0.260063 0.374113 -0.170366 0.435545 0.547000 -1.327888 -0.316184 -1.786811 -0.889774 -0.982634 0.666014 0.739714 -1.570828 0.195967 -0.321329 1.018708 -2.073070 -0.037874 0.391415 0.739407 1.855479 0.337837 -0.439345 -0.163559 0.580516 0.612945 0.947826 -0.803075 0.678599 -0.656623 0.462818 0.178731 0.554396 0.269225 -1.526462 -0.751474 0.375250 0.140435 0.278853 0.709567 1.126839 -0.314148 0.839594 -0.694357 1.193173 -1.608329 -0.432630 -0.621342 -1.135960 -0.814310 2.654620 1.224959 1.504086 -0.035386 -0.915091 0.010386 -1.738932 -2.364188 -0.173636 0.274799 0.014424 0.929867 -0.333047 0.913069 -1.089937 0.760794 0.651285 -0.598368 -0.806218 0.182355 -0.536651 0.230245 -0.444480 -0.654803 -0.004429 -0.192039 -0.028791 1.874330 -0.204045 -2.514808 -2.177256 -0.827023 1.267745 -0.845843 0.155722 -0.546429 -0.536645 -1.181622 -0.063093 -1.194456 0.067085 0.146991 -1.235770 -1.771495 0.691255 -0.333935 -0.216049 0.775498 -1.232158 0.220654 0.574662 0.602902 0.381533 0.321192 -0.127538 -1.240721 -0.993865 0.270790 -1.164041 1.569316 0.518822 -0.339342 -0.711093 -0.889767 -1.061358 0.869816 -1.012390 0.847786 0.028169 -0.548833 0.367312 -1.247402 0.272943 -0.862167 0.555467 0.506489 -2.460388 1.539210 1.260352 -0.837349 -0.097138 -0.236540 0.620294 0.116753 0.860322 -0.842797 -0.717853 0.201335 0.284445 0.084605 -0.288429 0.369542 -0.376824 -0.661635 -1.347663 -0.721409 1.054594 0.568679 -0.101687 -0.057350 1.032051 -0.213061 0.163303 1.405205 0.845943 0.113803 -0.985000 -3.219780 0.659859 0.666043 -0.498111 0.364240 -1.257345 -0.229744 0.541589 -0.916501 1.163250 0.161242 -0.375813 1.393056 -1.550696 -1.219402 -1.141324 -0.632255 0.120793 -0.030741 0.322492 -0.594645 0.312938 -0.175628 0.061663 -0.635164 -0.699166 0.383996 0.676545 1.360944 0.082065 0.476094 1.384371 0.498906 -0.405286 -0.409191 0.247307 -0.809503 0.457742 -1.874043 -0.354404 0.474887 0.578411 -0.938000 -0.131921 -0.302772 0.049471 0.061951 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.435615 -0.669264 -0.118512 1.029122 0.136922 0.351719 0.228131 0.029025 0.188333 -1.578712 -0.754923 0.181269 0.128977 0.300903 0.295452 0.303406 0.382973 0.103535 -1.248649 -0.153004 0.319148 -0.192141 0.130297 0.240624 -0.047908 -0.662864 0.323161 0.486535 0.125368 0.950671 -0.263248 0.631950 0.874554 -0.002621 0.155222 0.683039 0.154484 -0.077350 -0.509553 -0.104582 1.247146 0.102128 -0.166012 0.298459 -0.235833 1.070930 0.078113 1.369664 0.660090 -0.475335 0.954021 -0.745124 -0.350463 -0.100263 -1.012357 0.208070 0.682229 0.458033 -0.391916 0.422505 -0.517420 0.287453 0.272656 -0.105560 1.048368 0.460738 0.895585 0.765106 0.762842 -0.981368 0.029942 0.387917 0.046465 0.211785 0.346088 -0.656523 -0.259407 -1.190732 0.068776 -0.599887 -0.281425 -0.262832 0.972461 -0.681765 -0.433895 0.391288 -0.132001 0.945718 -0.465136 0.500264 -1.088687 0.016541 0.450633 0.834355 0.218384 -0.052501 -0.091948 0.214196 -0.033403 0.419056 0.343953 -0.756143 -0.743949 -1.433827 -0.834871 -0.539599 0.392963 0.306590 -1.125731 0.158923 0.365525 0.273908 -1.215307 -0.057639 0.326298 0.658814 0.822001 0.381032 -0.473541 -0.257080 0.445407 0.408509 0.671205 -0.518020 0.490412 -0.825461 0.367326 0.202760 0.335440 -0.017246 -0.630226 -0.437460 0.212219 0.135916 0.166454 0.286011 0.567027 -0.211293 0.571718 -0.453771 0.843465 -1.157575 -0.217193 -0.475147 -0.578147 -0.441747 1.939573 0.788648 0.919704 0.251285 -0.817837 -0.036573 -1.000799 -1.567181 -0.215985 0.191290 0.296633 0.422562 -0.272360 0.534176 -0.548783 0.383539 0.133868 -0.443877 -0.443597 0.125124 -0.320343 0.080034 -0.309755 -0.613917 0.163976 0.235681 -0.302008 1.030436 -0.120328 -1.225642 -1.138721 -0.672281 0.822379 -0.504417 0.122096 -0.297392 -0.219767 -1.035119 0.148031 -0.637666 -0.084897 0.148405 -1.043378 -1.170698 0.482686 -0.250321 -0.090947 0.598739 -0.888032 0.122801 0.206396 0.588063 0.369881 0.268049 -0.117265 -0.940583 -0.896212 -0.170195 -0.630987 1.159924 0.310967 -0.170704 -0.262330 -0.616361 -0.653506 0.742107 -0.800383 0.434443 -0.008600 -0.492062 0.294005 -0.721643 -0.148477 -0.724424 0.389231 0.392664 -1.213757 1.100318 0.827088 -0.611455 -0.278294 -0.462221 0.363422 0.156029 0.846024 -0.536426 -0.333379 0.198789 0.304811 0.000697 -0.260450 0.347927 -0.160804 -0.347011 -0.912334 -0.555977 0.613529 0.584331 -0.090420 0.116812 0.755554 0.254289 0.097226 0.925381 0.395425 -0.151333 -0.462771 -2.012581 0.492131 0.742914 -0.313284 0.394672 -1.100657 -0.226574 0.314567 -0.243988 0.828657 0.504630 0.109857 0.975883 -0.718861 -0.796863 -0.640503 -0.356721 0.070413 -0.216319 0.316620 -0.425363 0.184995 -0.065007 0.005084 -0.242569 -0.461054 -0.270942 0.280868 0.804784 0.032104 0.216577 0.946969 0.317963 -0.404893 -0.287680 0.075207 -0.447523 0.424714 -0.712005 -0.173713 0.203511 0.336496 -0.563634 0.040297 -0.155245 -0.048738 0.105431 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 5.938502 -4.040995 -9.533237 21.848239 -1.797786 5.345828 1.897967 -3.454793 0.526949 -27.978050 -9.697440 16.683098 5.594084 5.899166 -1.591663 8.293474 3.607680 5.022369 -24.056651 -3.202256 6.901597 0.155935 1.257153 -0.173021 -0.329752 -7.116489 18.121603 2.473858 2.924367 16.980330 -2.812037 16.590571 15.295069 -1.526020 2.921262 8.768845 -6.570597 0.591968 -12.994428 -7.359338 18.599164 2.497568 2.985060 7.496549 -8.821518 17.135979 6.612671 11.664935 11.157614 -8.075150 8.250066 11.576668 -4.739991 -4.135629 -15.537631 1.294540 3.913306 4.997019 -2.399800 4.098037 -1.714042 3.889115 6.657886 3.811583 19.595681 6.484018 16.950408 18.380787 11.568192 -13.144551 6.324036 -0.252943 -4.844373 -1.394751 17.941967 -11.945811 -13.475855 4.740911 -5.454895 -16.220868 -2.564866 -0.649375 19.787488 -12.067429 -6.895309 -6.119507 6.659766 19.620552 -4.827381 6.229693 -16.847299 -1.944946 -0.442961 17.498551 4.401839 3.718181 -6.067472 3.606103 -3.299964 0.602987 6.901248 -15.552669 7.601287 -16.011864 -9.217120 -12.361722 7.154293 11.319231 -18.144694 3.498250 -12.107933 10.501067 -27.306617 -2.882513 1.602830 8.056669 21.292112 -0.830715 -4.834037 -0.047123 4.695195 5.580305 7.096499 -8.380826 7.903525 -3.391149 -1.658521 1.446143 5.319620 5.554730 -20.005500 -9.339065 1.716314 -0.341013 5.905398 12.718292 15.129258 -0.709895 7.400511 -10.282609 12.892604 -17.208895 -7.377908 -5.122953 -12.854860 -10.920306 13.078743 9.818510 13.874066 -7.047842 -8.431139 0.391059 -21.848957 -23.324041 -0.889593 2.529580 -3.554612 12.717120 -4.508186 8.663910 -16.690641 10.234036 14.054937 -5.473619 -10.013656 1.326155 0.968220 4.017708 -5.013256 -3.225185 -2.873481 -8.864569 4.303735 23.616954 -0.468808 -25.854640 -30.551127 -6.199260 15.038820 -9.912359 -0.864730 -10.444112 -7.174435 -11.269128 -3.741519 -13.220783 -0.811622 3.334296 -8.560246 -20.180603 8.264000 -2.250662 -3.253511 7.370964 -15.284972 2.748933 10.557419 3.556538 2.794792 1.789907 -1.258397 -10.100921 -7.230317 7.970860 -13.259511 11.241977 6.279079 -2.006563 -10.961073 -9.587402 -11.231472 6.243869 -6.911547 12.435661 1.385994 -3.271293 3.173618 -15.975022 4.314516 -7.996668 3.021900 2.230792 -27.005802 17.321086 8.234607 -8.009775 2.223769 0.893097 9.221289 -2.246070 3.891342 -11.946137 -11.943198 2.196410 1.865675 1.212749 -3.787169 1.651838 -5.559655 -8.716264 -13.934566 -5.397405 14.867541 4.224318 -2.974816 -1.074453 10.864981 -11.739933 3.699055 12.767761 13.718170 2.613093 -10.382737 -29.558350 4.841856 -5.908422 -3.558625 -1.903104 -10.016681 -2.541329 10.158140 -8.628262 12.651065 -5.510157 -9.171326 14.349741 -20.594573 -13.873324 -14.208726 -7.153261 3.907345 2.605937 -0.864430 -6.053745 4.231809 0.736724 2.354477 -7.871279 -11.580514 11.697581 10.459448 18.243639 -3.264480 3.963853 16.044737 7.355363 -2.290989 -4.249870 1.008261 -12.318621 0.715891 -23.884117 -1.473165 8.567674 8.156723 -12.575583 0.013623 -5.634562 1.108053 -0.189461 -PE-benchmarks/palindrome-partitioning.cpp__main = 1.351747 -0.698339 -1.596759 4.571231 -0.275271 0.953578 0.650301 -0.277239 0.036640 -6.330591 -2.425708 2.947866 1.084352 1.091198 -0.085603 1.583429 0.840826 1.461290 -5.686829 -0.626609 1.790341 0.333258 0.503862 -0.290350 -0.019521 -1.539868 2.929354 0.729879 0.689895 3.957789 -0.818954 3.269639 3.482554 -0.168277 0.577026 2.235361 -1.022491 0.093539 -2.293351 -1.449202 4.373788 0.646403 0.438448 1.675500 -1.629006 3.951084 1.163032 2.503133 1.884366 -1.894339 1.807886 1.385134 -1.206705 -0.839939 -3.385243 0.495384 1.508603 1.761154 -0.721878 1.273806 -0.523034 0.875821 1.487351 0.246765 4.175014 1.755029 3.302908 3.918868 2.937720 -3.036544 1.254005 -0.047970 -0.884856 -0.436704 3.329770 -2.616547 -2.470224 -0.520389 -1.086892 -4.259499 -0.606471 -0.119995 4.660774 -2.875378 -1.015393 -0.523645 1.281653 4.210162 -1.165008 1.127738 -3.809516 -0.334150 -0.068921 4.023096 0.922114 0.623633 -1.190055 0.917900 -0.417001 0.375927 1.362286 -3.249826 0.662675 -4.259185 -2.155144 -2.574171 1.399233 2.270783 -4.085657 0.478407 -1.568410 2.326228 -6.223640 -0.629763 0.629974 2.027889 3.576863 -0.209633 -1.469182 -0.014762 0.723389 1.135377 1.622694 -2.155724 1.575849 -1.041187 -0.545185 0.343571 1.219869 0.982481 -4.228171 -2.134234 0.293513 -0.272182 1.107221 2.562892 3.012573 -0.227690 1.740276 -2.590818 3.005358 -3.960476 -1.262163 -1.091642 -2.966256 -2.313950 3.351638 2.172660 2.635881 -1.225650 -2.051790 -0.087276 -4.628181 -5.200293 0.098592 0.594951 -0.063638 2.528188 -1.035859 1.658564 -3.507331 1.906120 2.630537 -1.310782 -2.023064 0.227410 0.835282 0.650022 -1.202293 -1.213678 -0.326392 -1.057069 0.534804 4.664964 -0.452916 -4.651332 -6.434784 -1.684325 3.457421 -2.110675 -0.129451 -2.221418 -1.267985 -2.692632 -0.410191 -2.943904 -0.067336 0.691406 -2.166314 -4.650565 1.817611 -0.627598 -0.836212 1.762991 -3.340142 0.592010 2.207494 0.972383 0.583769 0.316176 -0.055985 -2.519808 -2.005194 1.225817 -2.707206 2.467602 1.561314 -0.231042 -2.585185 -2.049765 -2.428376 1.840820 -1.417510 2.557973 0.025641 -0.801901 1.128328 -3.379797 0.750540 -2.172813 0.805257 0.707233 -5.946125 4.013498 1.883959 -1.917311 0.203041 -0.373192 1.914503 -0.145298 1.393169 -2.614743 -2.574075 0.725131 0.101621 0.199845 -1.213858 0.577348 -1.195997 -1.461721 -3.217498 -1.263552 3.221789 1.261725 -0.681620 0.299827 2.590106 -1.919140 0.766349 3.080747 2.856236 0.253744 -2.286057 -6.430843 1.316414 -0.532758 -0.384146 -0.383162 -2.317027 -0.755633 2.161149 -1.319081 2.959140 -0.124318 -1.731698 3.328664 -4.333183 -3.206481 -2.834671 -1.211787 1.075103 0.083951 -0.163398 -1.384934 0.980719 0.298591 0.553936 -1.127704 -2.673453 1.484327 2.028016 4.158138 -0.518744 0.608833 3.795564 1.406092 -0.819882 -0.704240 0.077923 -2.184132 0.208653 -4.534045 -0.381390 1.625244 1.779544 -2.815066 0.509093 -1.238053 0.031890 0.302366 -PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 1.081746 -0.967601 -0.393737 2.381514 -0.268484 -0.234483 0.255939 0.933783 -0.068367 -2.467925 -1.483444 0.370615 0.570254 0.903028 1.360311 0.607122 0.049758 0.156137 -4.001171 0.197955 0.631818 -0.236947 0.010980 -0.585049 0.310420 -0.272135 1.047124 0.941785 0.249328 1.780932 -1.210590 1.265667 1.035927 -0.196256 0.655772 0.511994 -0.766763 -0.505387 -1.213982 -1.020767 2.323413 0.516335 -0.557113 0.736486 -0.806226 1.702378 0.656890 0.732177 0.922243 -1.031725 0.861931 -0.059123 -0.771126 -0.171714 -1.628437 0.284048 1.416178 1.578881 -0.518885 0.973306 -0.811007 0.656110 0.871953 0.129819 2.606037 0.066558 2.337508 1.779502 1.456151 -1.769867 0.973481 -0.023872 0.061808 -0.262690 1.051518 -1.630150 -0.382893 -3.789422 0.507960 -3.058967 -0.531294 0.077218 1.446580 -1.412190 0.221757 0.568382 0.456701 2.588216 -1.671686 1.366978 -1.283302 -0.366132 0.059908 2.113499 0.022886 -0.196304 0.565858 0.986804 -0.140806 0.914341 0.698691 -1.027677 0.303900 -3.016586 -1.321924 -0.225462 0.387237 0.444582 -1.739692 0.588014 0.973340 -0.283516 -2.120900 -0.839235 0.677561 1.510518 -0.425152 -0.836450 -0.075692 -0.571000 0.015980 1.510331 1.651035 -1.440156 1.823940 -0.701905 0.175779 1.212279 1.430321 0.726659 -1.170394 -1.209217 0.770816 0.142445 0.147156 0.964587 1.728523 0.451726 1.163052 -1.711516 2.071899 -2.376778 0.108201 -1.180048 -0.021956 -0.845130 1.646036 0.532501 0.186484 0.177521 -1.574445 0.855791 -1.843923 -1.995561 0.318013 1.402934 -0.069023 0.954830 -0.432822 0.968100 -1.000036 -0.127346 1.004490 -1.326719 -1.640286 -0.434134 -0.452957 1.252508 -0.717395 -1.223482 1.137891 0.050421 -0.616952 2.159876 0.311336 -1.339032 -2.660753 -1.141217 2.037005 -0.332030 -0.338285 -0.639393 -0.996866 -1.292909 0.634167 -1.571095 0.252568 0.569368 -1.495279 -2.243323 0.409189 0.156524 -0.593864 0.782364 -2.035454 0.385924 0.573092 0.681726 -0.355214 0.632124 1.007320 -1.858176 -1.885781 0.054030 -0.890105 1.222284 0.368277 -0.311149 -0.678459 -0.843359 0.079355 1.452420 -1.040918 1.574996 -0.484781 -0.877650 0.893242 -1.875640 -0.257616 -1.123542 0.476315 0.495813 -2.142433 2.592482 1.443758 -1.341900 0.003914 -1.196368 1.258538 -0.172570 1.773469 -1.641445 -0.775084 -0.062274 0.807258 -0.080707 -0.952897 0.565236 -0.337393 -1.667191 -1.229688 -0.911580 1.346593 0.895683 0.420608 0.673187 1.605670 -0.281957 -0.384059 2.112666 1.105202 -0.396863 -1.166937 -2.773033 1.458177 1.371918 -0.367052 0.125524 -2.130623 -0.869848 0.442267 0.805060 0.827861 1.926671 -0.078922 1.782538 -1.599845 -1.734544 -2.199463 0.045334 -0.219185 -0.128908 -0.208860 -1.017104 0.343493 -0.049590 0.572710 -1.143173 -0.274662 -1.055804 0.252260 1.748865 -0.016958 -0.060807 2.461001 1.060459 -0.643481 -0.937672 -0.264759 -1.766314 0.532186 -0.207085 -0.617980 0.778307 0.922448 -1.943395 -0.007924 0.283151 0.180119 0.166444 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = 0.173736 -0.221351 0.079624 0.341184 0.257891 -0.021772 0.047957 -0.016864 -0.080571 -0.557043 -0.249982 -0.079095 -0.050025 -0.062903 0.182196 0.090803 0.297013 0.033933 -0.349221 0.081379 0.040577 -0.136714 -0.145023 0.073607 -0.009010 -0.319457 0.050058 0.303072 -0.006235 0.292397 -0.238841 0.171092 0.255846 0.081454 0.355399 0.304657 0.154061 -0.116789 -0.041698 0.070326 0.711503 -0.038747 0.016877 0.099337 0.252123 0.422605 -0.028733 0.409355 0.177184 -0.097794 0.348921 -0.280304 -0.028755 0.030894 -0.605606 0.128944 0.234150 0.099996 -0.401027 0.191500 -0.228943 0.131677 0.087584 0.003222 0.533551 0.052251 0.259873 0.248673 0.402810 -0.273864 -0.085498 0.231444 0.280452 0.135518 -0.013464 -0.063085 0.038553 -0.696741 0.017978 -0.195267 0.075109 -0.080999 0.358761 -0.188529 -0.111773 0.311462 -0.123002 0.309741 -0.217764 -0.012644 -0.513722 0.042127 0.141370 0.253099 0.068284 -0.001951 0.054016 0.133104 -0.026572 0.303448 -0.025219 -0.363978 -0.372944 -0.823565 -0.492388 -0.178238 0.043453 -0.185954 -0.432274 0.007381 0.381831 0.263015 -0.361363 -0.000160 0.081456 0.115644 -0.036824 -0.061266 -0.254628 -0.185085 0.040724 0.228099 0.158931 -0.021552 0.089623 -0.491139 0.220342 0.055090 0.258766 -0.092978 -0.088654 -0.072964 0.102837 0.043239 -0.131488 -0.062065 0.041724 -0.210653 0.224513 -0.131831 0.349819 -0.397540 0.024590 -0.404307 -0.251687 -0.072594 0.725436 0.290906 0.347691 0.271709 -0.296504 0.033134 -0.425037 -0.692841 0.006409 -0.085249 0.130873 0.046327 -0.085748 0.108512 -0.120831 -0.101673 0.136525 -0.302364 -0.184040 -0.156708 -0.126535 -0.013435 -0.150966 -0.307250 0.117439 0.393009 -0.109639 0.210051 -0.228637 -0.307434 -0.302254 -0.339929 0.246784 -0.173094 0.107637 0.021206 -0.033920 -0.458212 0.226855 -0.277949 0.008814 -0.228284 -0.304700 -0.387384 0.071437 -0.165487 -0.030512 0.079058 -0.322089 0.167996 0.006409 0.070964 0.096245 0.096423 -0.071780 -0.364370 -0.450681 -0.091132 0.006050 0.370635 0.196624 0.012589 -0.121360 -0.232846 -0.276751 0.321513 -0.360171 0.098826 0.248395 -0.421121 0.191926 -0.246579 -0.158108 -0.118507 0.217085 0.103665 -0.453491 0.445824 0.388558 -0.459810 -0.257198 -0.379568 0.182125 0.073503 0.550202 -0.119626 0.145383 0.118506 0.188100 -0.047161 -0.128587 0.210235 0.065951 0.115255 -0.546716 -0.401523 0.247604 0.364595 -0.019110 0.019931 0.099416 0.227152 -0.039282 0.534243 0.066539 0.131226 -0.190749 -0.664173 0.107160 0.226712 -0.003444 0.267340 -0.293160 -0.161800 -0.131807 -0.111241 0.424407 0.181563 0.059734 0.395570 -0.201975 -0.363009 -0.193254 -0.095322 -0.005577 -0.292449 0.280030 -0.286983 -0.065741 -0.212060 0.165549 -0.053789 -0.051670 -0.313737 0.035737 0.141801 0.180934 -0.050110 0.350774 0.091192 -0.209767 -0.092725 0.090928 0.041805 0.362524 -0.303103 -0.274576 -0.167581 0.086007 -0.180498 0.148818 -0.063866 0.224649 0.133932 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = 0.943944 -0.524531 -0.694504 1.921263 0.135794 -0.515701 0.215843 0.181718 -0.078136 -2.415878 -0.934606 0.237939 0.414059 -0.282384 0.377297 0.796927 0.509384 0.423921 -2.412057 0.513101 0.612361 -0.079560 -0.854176 -0.265209 -0.084634 -0.988340 0.493606 0.773244 0.001601 1.619383 -0.769148 0.854396 1.363139 -0.329467 1.113345 1.371125 0.028884 0.176572 -0.233011 0.489839 2.507240 0.800713 -0.374168 0.276475 0.458610 1.904512 0.240855 1.461485 -0.672289 -0.753756 0.973758 0.502247 -0.384801 -0.252286 -1.845866 0.460057 1.949884 1.040240 -1.367135 0.973709 -0.872190 0.416577 0.828219 0.838135 2.322811 0.697222 1.399020 1.523588 1.973891 -1.028706 0.322600 0.230549 0.616110 -0.503043 1.277111 -0.851391 -1.162786 -1.607041 0.019790 -1.856997 0.159508 0.288443 1.848194 -1.499875 -0.008670 0.761145 0.553453 1.753864 -1.308966 -0.156419 -1.639845 -0.143809 -0.580979 2.980787 0.184451 0.415972 -0.066266 1.198625 0.117169 0.687138 0.140582 -1.805833 -0.592247 -3.050714 -1.772059 -1.043961 0.041159 0.195442 -2.073851 -0.391720 0.823290 0.738437 -2.584968 0.389018 0.503428 0.630510 1.413876 -0.747614 -1.098073 0.222794 -0.404739 0.490977 0.773974 -0.558685 0.367824 -1.056431 0.611464 0.625031 0.621561 0.133484 -1.753174 -0.010183 0.275608 -0.380283 -0.248824 0.658405 0.645827 -1.280904 0.964566 -1.386912 1.637423 -2.383852 -0.057753 -1.191959 -1.704070 -0.488640 0.956396 0.863035 0.861797 -0.252388 -1.206638 0.150729 -2.580195 -3.131968 0.184802 0.132441 0.153494 0.231428 -0.463146 0.237588 -1.005595 0.201139 1.229137 -1.135447 -0.721435 -0.382494 1.732078 0.272632 -0.782962 -0.617006 -0.139726 0.687276 0.530111 1.629835 -0.733304 -1.624452 -2.533599 -0.915663 1.466589 -0.619146 0.159520 -0.564888 -0.518527 -2.228071 0.749195 -1.460076 0.460686 -0.690473 -0.395020 -1.904525 0.360567 -0.384698 -0.017077 0.005004 -1.560975 0.415829 0.620631 -0.000638 0.183914 0.137736 0.417069 -1.698478 -1.546468 0.549244 -0.392460 1.749884 0.841900 0.113338 -0.220004 -0.553748 -1.474066 1.020422 -0.835632 0.699334 0.527225 -1.191928 1.271959 -1.309485 -0.677684 -1.173120 0.651833 0.148442 -0.718346 2.760819 1.524444 -1.448298 -0.217034 -0.484991 0.948070 0.257858 1.520567 -1.077114 -0.647620 0.447822 -0.024973 -0.129609 -0.424535 0.689475 -0.534358 0.369668 -1.687582 -0.703956 1.304681 1.222627 -0.124774 0.353895 0.123115 -0.776514 -0.377615 1.826985 0.810930 0.443610 -1.235192 -2.536646 0.622710 -1.558036 -0.150226 -0.242982 -0.522700 -0.674733 0.070586 0.394416 1.717181 1.289344 -0.740524 1.584551 -2.236017 -1.943189 -1.319416 -0.130677 0.240104 -0.778962 0.206159 -1.089611 0.351026 -0.289929 0.842373 -0.202548 -0.953312 -0.361142 0.450287 1.184874 0.025720 -0.873211 1.866947 0.307128 -0.536829 -0.499124 0.175029 -0.406908 0.865665 -1.009541 -0.828342 -0.346310 0.948526 -1.165329 0.886949 -0.472173 0.725628 0.805529 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.923750 -0.638739 -0.209659 0.989553 0.308724 -0.564011 0.246091 0.424066 0.054035 -1.482108 -0.589825 0.212693 0.084047 -0.512484 0.323643 0.389666 0.530304 0.241195 -1.639878 0.562880 0.206171 -0.119094 -0.810860 -0.172873 -0.056189 -0.695389 -0.058568 0.742925 -0.096616 0.962398 -0.607631 0.295549 0.803724 -0.090232 0.906290 1.038519 0.246405 -0.144849 0.215573 0.379117 1.883628 0.564905 -0.258809 0.286400 0.718253 1.259401 -0.069972 1.510933 -0.094955 -0.355755 0.893888 -0.470522 -0.418342 -0.008511 -1.468765 0.340899 1.214816 0.506183 -1.100177 0.788029 -0.702890 0.295141 0.525030 0.385225 1.624888 0.519294 0.736664 0.816000 1.531814 -0.592566 0.060922 0.349431 0.888589 -0.036259 0.501366 -0.514750 -0.441246 -1.806469 0.229432 -1.083029 0.165420 -0.101729 1.241688 -0.934130 0.140116 0.837449 0.237720 1.053709 -0.966868 -0.211708 -1.231857 0.031382 -0.032694 1.815968 -0.083253 0.364783 0.019872 0.687102 0.028908 0.627025 -0.032535 -1.201336 -0.930773 -2.365578 -1.219265 -0.594340 -0.328601 -0.340235 -1.437326 -0.210849 0.994431 0.585053 -1.517781 0.148461 0.343233 0.125796 0.660515 0.042178 -0.751525 -0.082673 -0.286090 0.474517 0.366302 -0.341910 0.084225 -1.119421 0.557074 0.497417 0.459563 -0.074439 -1.080062 0.160953 0.413279 -0.071651 -0.338447 0.183681 0.090700 -1.025256 0.572155 -0.883328 1.035748 -1.506957 -0.153326 -0.987876 -0.993359 -0.188037 1.517141 0.707125 0.756495 0.356752 -0.722745 0.031164 -1.560836 -2.260908 0.172806 -0.321034 0.316591 -0.177049 -0.195669 -0.109439 -0.405077 -0.227562 0.415469 -0.901041 -0.409837 -0.479779 0.814265 0.055373 -0.459554 -0.570314 0.056601 1.074880 0.218709 0.673246 -0.657492 -1.284184 -1.241282 -0.747776 0.878245 -0.308012 0.171707 -0.166056 -0.202561 -1.443232 0.586056 -0.795844 0.329655 -0.692596 -0.444571 -1.208170 0.187512 -0.337655 0.156099 -0.131955 -0.928742 0.379113 0.145800 0.335792 0.068642 0.242870 0.128563 -1.324069 -1.319618 0.042384 0.101274 1.482005 0.593892 0.190374 -0.059826 -0.330018 -1.063658 0.927815 -1.207329 0.336798 0.560547 -1.136893 1.033408 -0.726724 -0.672436 -0.826616 0.659712 0.064476 -0.576133 1.869339 1.153513 -1.283306 -0.440944 -0.827008 0.576859 0.417226 1.476950 -0.550325 -0.132440 0.438840 0.162740 -0.199866 -0.352243 0.575158 -0.145905 0.633486 -1.343019 -0.723626 0.824124 1.010982 -0.105744 0.133492 -0.131161 -0.018543 -0.316815 1.436405 0.254359 0.324230 -0.859872 -2.026095 0.378759 -0.103826 -0.005139 0.247670 -0.722969 -0.547848 -0.215841 0.104863 1.248329 0.926702 -0.096756 1.015895 -1.285116 -1.320472 -0.712964 0.045486 0.098855 -0.670923 0.564908 -0.766804 0.055771 -0.356232 0.732400 -0.033475 -0.492576 -0.822633 0.212017 0.505814 0.305526 -0.787691 1.202320 0.108071 -0.406970 -0.299669 0.051059 0.028520 0.751273 -0.524035 -0.608180 -0.556684 0.558005 -0.710125 0.925758 -0.062365 0.718459 0.524548 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = 7.880949 -3.299805 -9.618180 18.931713 -0.276200 0.545290 1.597163 -1.560675 1.050739 -22.128091 -9.339248 12.001939 4.705673 0.618567 0.040572 7.957454 3.928795 4.468387 -19.867139 0.667208 4.394637 -1.524554 -4.515905 -1.368524 -1.074805 -7.205555 10.849426 3.852661 1.167597 14.125875 -3.580641 11.532497 12.067025 -2.179223 5.118080 9.477491 -5.206089 1.066011 -6.956163 -3.035648 17.843077 4.998738 1.095610 5.764442 -2.553495 15.440553 3.125264 14.445900 3.345841 -6.060997 8.841977 10.815062 -4.427646 -2.463522 -15.058369 2.517995 9.815567 3.740442 -5.706899 5.603702 -4.638896 4.151529 6.664605 4.732198 19.481572 6.730377 13.721084 14.855391 13.653880 -10.257064 4.496006 1.370487 1.628209 -2.196441 16.222370 -9.401582 -12.834476 1.024549 -3.111975 -15.275117 1.395153 -0.047902 21.859347 -11.860521 -5.116878 -1.501828 6.999238 16.552588 -7.912461 2.739298 -13.494401 -0.543757 -5.120441 22.286785 3.520747 4.897918 -5.102707 5.820444 -2.369243 2.457754 1.936073 -14.568686 1.809130 -21.579029 -11.699082 -10.584261 3.542599 5.604992 -18.175503 1.023212 -3.683208 8.909360 -24.513757 -0.557609 2.980210 4.844629 17.407355 -1.141039 -7.778051 0.640137 1.531431 5.490762 6.090501 -5.072057 4.516655 -5.740083 1.098270 2.486997 4.829076 3.415405 -17.759948 -3.791631 1.447255 -1.334008 2.866498 8.720616 10.253659 -5.888519 7.145010 -9.570569 11.962100 -19.816988 -5.395229 -7.972762 -13.493350 -7.380161 8.787719 9.987207 14.219654 -4.762819 -6.061701 -0.617685 -22.324821 -24.050443 -0.233194 0.207245 -1.875510 6.106493 -3.099454 4.755994 -12.140819 6.254442 12.490370 -7.460798 -7.544439 -0.585913 12.830300 2.432000 -5.599863 -4.821348 -3.375852 -3.171160 4.485849 17.529699 -2.259806 -22.966634 -25.448157 -6.073908 12.901101 -7.655372 0.666972 -7.508591 -5.836075 -11.913344 -0.542363 -11.667322 0.575318 -0.200715 -5.251522 -16.732635 5.059216 -1.882339 -2.698813 3.031263 -13.930110 3.431351 11.526329 3.018041 1.928694 3.033313 0.277966 -12.085748 -8.841436 6.027095 -8.341649 12.999226 10.199410 -0.571328 -6.455471 -6.606464 -13.435666 5.875525 -9.256472 8.663224 2.673677 -5.647890 6.081478 -14.263078 -0.132403 -8.663946 3.571584 0.363085 -19.542450 18.907117 11.056508 -9.747120 0.651459 -2.029080 8.435247 -0.839603 8.131905 -10.646465 -8.278473 2.653422 0.301625 -0.145319 -2.403019 3.491126 -5.038353 -3.480555 -12.753652 -4.272231 12.815465 6.593844 -2.210963 -0.823210 4.766796 -9.926297 3.356138 12.540790 9.910155 2.344487 -11.215962 -29.219999 4.063076 -11.893401 -4.138245 -0.720111 -5.821166 -4.064798 5.211153 -4.676684 12.857442 -0.985154 -7.530950 12.870812 -19.377737 -14.210126 -11.842861 -3.730399 3.176985 -1.915220 1.689560 -7.772526 2.449706 -1.747003 4.685634 -5.549441 -9.970837 4.833690 7.569943 14.486658 -1.109402 -1.423722 14.693248 5.098482 -2.951426 -4.343809 0.287396 -8.265062 3.467749 -17.872675 -3.163495 2.930151 7.568378 -10.603074 3.973270 -3.534192 4.495247 3.040376 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = 0.039759 -0.401064 0.242538 0.230327 0.231666 0.033415 0.043966 -0.075320 0.039808 -0.363218 -0.047745 -0.179584 -0.107587 0.012132 0.134293 -0.008482 0.201744 -0.043812 -0.269712 0.047500 0.013110 -0.036557 0.104653 0.039283 0.052244 -0.237875 0.251689 0.267631 0.011090 0.155259 -0.196729 0.049455 0.148245 0.107328 0.207259 0.178053 0.255519 -0.074246 -0.174788 0.110134 0.470733 -0.083290 -0.037026 0.065519 0.181939 0.257931 0.190529 0.217671 0.497422 -0.058573 0.204873 -0.281234 -0.001558 -0.085665 -0.417256 0.090952 0.138302 0.128119 -0.258671 0.087514 -0.088497 0.067126 0.012425 0.018754 0.298062 -0.092396 0.214403 0.080539 0.252216 -0.225268 -0.136366 0.203455 0.281647 0.208361 0.057951 -0.148155 -0.034273 -0.786170 -0.024580 0.018190 -0.005776 -0.071399 -0.157985 -0.061002 -0.075992 0.257232 -0.264205 0.146351 -0.065075 0.005280 -0.362598 0.077446 0.298480 0.125987 0.029633 -0.093378 0.128161 0.075018 0.037707 0.261731 0.219996 -0.226290 -0.156161 -0.553820 -0.274143 -0.126551 0.089259 -0.176768 -0.235914 0.100193 0.213102 0.041389 -0.143405 -0.013689 0.080494 0.145377 -0.004621 -0.436094 0.103232 -0.149575 0.116438 0.185489 0.123107 -0.150533 0.058902 -0.297329 0.251343 0.084541 0.176494 -0.145609 0.290373 -0.123135 0.024979 0.266879 -0.081574 -0.123190 -0.013580 -0.158667 0.138392 -0.082233 0.255282 -0.136570 0.060573 -0.211658 0.087332 -0.046985 0.706767 -0.046726 0.208999 0.209546 -0.323498 0.047122 -0.114334 -0.511684 -0.003660 -0.005229 0.057201 0.132148 -0.064954 0.119955 -0.024708 -0.127452 -0.001289 -0.160457 -0.102209 -0.048281 -0.713985 -0.037617 -0.050863 -0.212582 0.169989 0.373695 -0.056466 0.131733 -0.123667 -0.308305 -0.062099 -0.287445 0.126304 -0.124891 0.048504 0.044158 -0.034256 -0.335340 0.259174 -0.170462 0.010558 -0.113112 -0.354147 -0.224896 0.033878 -0.180549 0.211576 0.132715 -0.210976 0.070984 -0.340425 0.106020 0.103437 0.069223 -0.042766 -0.350636 -0.349109 -0.162553 0.024579 0.307369 -0.238918 0.004165 -0.058221 -0.185831 -0.054819 0.200277 -0.272816 0.011441 0.158089 -0.324425 0.092192 -0.038248 -0.040060 -0.054936 0.150028 0.143682 -0.028530 0.339097 0.305726 -0.286577 -0.244716 -0.174991 0.053874 0.063924 0.393396 -0.115144 0.074847 0.068602 0.205010 -0.028232 -0.130878 0.151835 0.083362 0.046628 -0.372370 -0.369702 0.012028 0.266593 -0.012292 -0.023088 0.164442 0.218122 -0.249917 0.378117 -0.023043 0.212046 -0.108271 -0.373870 0.077937 0.441246 0.059045 0.300419 -0.369153 -0.083936 -0.030447 0.083236 0.278166 0.345401 0.145414 0.259437 -0.061796 -0.179228 -0.078788 -0.218388 -0.042707 -0.173081 0.227838 -0.200023 -0.078718 -0.183046 0.026149 -0.121096 0.136474 -0.073357 -0.005146 -0.001243 0.169087 0.033493 0.194456 0.072326 -0.187244 -0.045504 0.099345 -0.029428 0.281195 -0.001149 -0.144484 -0.104375 0.014852 -0.044647 0.045105 -0.109857 0.119914 -0.052792 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.567970 0.097917 -0.257051 0.719267 0.008427 -0.789371 0.346602 0.501137 -0.115611 -1.009655 -0.214035 0.374054 0.162949 -0.561581 -0.036223 0.251871 0.101106 0.716620 -1.105461 0.489112 0.278928 0.288499 -0.705237 -0.657333 -0.118185 -0.257974 -0.259110 0.497911 -0.030990 0.884300 -0.439177 -0.087913 0.635685 -0.067713 0.538003 0.927721 0.591923 0.113562 0.220089 0.291014 1.246973 0.729222 -0.399958 0.219699 0.541944 0.980527 0.222934 0.285969 -1.145031 -0.329062 -0.206858 0.090113 -0.420851 -0.284534 -0.788405 0.301075 1.018989 0.894954 -0.774039 0.850129 -0.426506 0.093311 0.548338 0.365990 0.960045 0.424398 0.162386 0.702279 1.398320 -0.467711 0.123755 0.006400 0.638516 -0.471545 0.717162 0.027675 -0.660564 -1.358007 0.046782 -1.445666 0.039118 0.391873 1.221837 -0.969197 0.560079 0.861361 0.558895 0.702894 -0.862380 -0.534507 -0.773333 -0.080181 -0.511338 2.021230 0.170969 0.338005 -0.129859 0.800422 0.385352 0.362096 -0.073849 -0.892567 -0.419430 -1.814970 -0.630871 -0.520141 -0.652805 -0.181894 -0.870159 -0.671808 1.166517 1.125814 -1.525718 0.237992 0.448549 0.022739 0.371981 -0.731671 -0.503195 0.690110 -0.657442 -0.165769 0.239868 -0.551941 -0.203862 0.126252 0.134088 0.239016 0.200627 0.147445 -1.337327 0.170970 0.298268 -0.408448 -0.246387 0.206951 -0.134720 -0.989792 0.349521 -1.141982 0.825719 -1.029190 0.254469 -0.238584 -1.165188 -0.140931 0.286708 0.228131 0.108240 -0.270744 -0.413630 -0.090039 -1.129929 -1.955831 0.725507 0.017240 0.231317 -0.255064 -0.182358 -0.440681 -0.504402 -0.238332 0.722691 -0.642910 -0.145606 -0.117580 1.765380 -0.006349 -0.421024 -0.409165 -0.044086 0.871632 0.825639 0.309523 -0.776425 -0.536804 -1.036772 -0.450843 0.776231 -0.105862 -0.095515 -0.196157 -0.372413 -0.958809 0.581296 -0.607735 0.742548 -0.527667 0.091401 -1.016388 0.093014 -0.230939 -0.205431 -0.168265 -0.613474 0.227003 0.048229 -0.556404 -0.262477 -0.131157 0.598112 -0.777812 -0.774949 0.305834 0.198126 0.774889 0.608543 0.516452 -0.312054 0.025358 -0.832710 0.738623 -0.587200 0.274811 0.212511 -0.646712 1.193714 -0.516948 -0.602937 -0.678564 0.588309 0.066199 0.190886 1.628720 0.954786 -0.822260 -0.189328 -0.155789 0.278397 0.546131 1.109374 -0.802281 -0.535679 0.567386 -0.406667 -0.155385 -0.238992 0.352500 -0.277226 0.817014 -0.836555 -0.197002 0.507942 0.774027 -0.116473 0.399208 -0.236899 -0.506529 -0.510702 1.029510 0.346202 0.356326 -0.851034 -0.738890 0.479617 -1.284339 0.250169 -0.247093 -0.029068 -0.367134 0.132424 0.287504 0.868280 0.792279 -0.789602 0.730531 -1.403159 -1.137821 -0.355323 0.176341 0.395052 -0.653990 0.484862 -0.519191 0.249280 -0.146889 0.608117 0.114321 -0.409893 -0.359157 0.149237 0.441454 0.199931 -1.004601 1.115499 -0.250782 -0.316943 -0.012058 -0.179029 0.248328 0.265944 -0.312863 -0.388362 -0.480161 0.722125 -0.623925 1.155953 -0.178854 0.297747 0.794645 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.589504 -0.175457 -0.481514 0.790220 -0.121529 -0.506779 0.179620 0.149862 -0.163944 -0.964193 -0.104055 0.774166 0.187037 -0.380331 -0.055515 0.489743 0.135929 0.272936 -0.891900 0.422115 0.105678 -0.065402 -0.726750 -0.238514 -0.121863 -0.434401 0.282498 0.438561 -0.117137 0.711510 -0.340148 0.249291 0.575602 -0.188181 0.442791 0.663643 0.161916 0.028410 -0.085956 0.241642 1.084910 0.388423 -0.154616 0.119248 0.318856 0.863586 0.122322 0.809435 -0.150823 -0.270110 0.348156 0.612339 -0.348888 -0.120297 -0.852166 0.104552 0.476621 0.371415 -0.573145 0.561542 -0.628292 0.160524 0.450293 0.597861 1.148214 0.394002 0.589703 0.705195 1.077737 -0.410905 0.165081 0.167911 0.458591 -0.225758 0.856442 -0.123231 -0.665825 -0.784489 0.027185 -0.830113 0.022343 0.221216 1.242493 -0.739689 -0.033015 0.369526 0.569811 0.828511 -0.791998 -0.053819 -0.748954 -0.027068 -0.267431 1.615006 0.105979 0.370255 -0.243306 0.527069 0.084182 0.278755 -0.034523 -0.874060 -0.221612 -1.268980 -0.812171 -0.515432 -0.376734 -0.102766 -1.071958 -0.170603 0.837450 0.827444 -1.274045 0.177389 0.291706 0.003283 1.071468 0.074259 -0.471712 0.318221 -0.227101 0.210974 0.302874 -0.192279 0.069748 -0.200932 0.349263 0.267385 0.244918 0.109774 -1.381746 0.122769 0.352756 -0.283029 -0.085350 0.290370 0.145929 -0.720097 0.347446 -0.700345 0.712522 -1.082330 -0.124849 -0.480489 -0.821893 -0.160043 0.587659 0.670279 0.530255 -0.175429 -0.422553 -0.013515 -1.244935 -1.560658 0.157954 -0.168163 -0.103804 -0.081342 -0.130864 -0.151318 -0.384575 0.053892 0.642540 -0.619702 -0.247072 -0.165918 0.963633 0.136976 -0.342403 -0.345118 -0.195054 0.298720 0.658742 0.603995 -0.367635 -1.359490 -1.153405 -0.387106 0.645799 -0.171777 -0.023107 -0.245339 -0.433756 -0.737812 0.311493 -0.500378 0.362673 -0.337548 -0.067029 -0.858644 0.225181 -0.131998 -0.315861 -0.280208 -0.651652 0.174158 0.089619 -0.375059 0.015868 0.029882 0.174148 -0.781352 -0.710246 0.373948 -0.019801 0.808732 0.650529 0.276400 -0.267173 -0.150225 -0.906669 0.465459 -0.929719 0.317306 0.395459 -0.734610 0.800227 -0.625423 -0.365719 -0.422261 0.474022 -0.089239 -0.468203 1.501864 0.973933 -0.778292 -0.137558 -0.088492 0.408295 0.337451 0.825278 -0.625966 -0.271239 0.295337 0.058332 -0.119205 0.160762 0.351772 -0.311433 0.354737 -0.736145 -0.268995 0.589792 0.659221 -0.082459 -0.087858 -0.262257 -0.564682 -0.250538 0.764722 0.338112 0.312358 -0.626593 -1.290023 0.279865 -1.065423 -0.179470 0.148561 -0.293535 -0.287463 0.104995 -0.187754 0.817160 -0.173686 -0.587627 0.603010 -1.234243 -0.983144 -0.554135 -0.077968 0.044176 -0.335909 0.590046 -0.467394 0.042191 -0.160350 0.509467 -0.302803 -0.254100 0.037404 0.241936 0.392243 0.288432 -0.698276 0.876445 0.036934 -0.177829 -0.292721 -0.028613 -0.114615 0.339521 -0.631001 -0.279825 -0.288480 0.611667 -0.539443 0.706647 -0.037527 0.395363 0.411206 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.443336 0.012882 -0.082987 0.578307 0.105876 -0.578104 0.278489 0.388937 -0.064005 -0.886188 -0.200672 0.218226 0.081229 -0.413421 0.010697 0.171330 0.160038 0.593680 -0.896200 0.369627 0.233829 0.257718 -0.457351 -0.517039 -0.059965 -0.229181 -0.187270 0.408728 0.022197 0.726449 -0.415175 -0.080433 0.532373 -0.012471 0.454596 0.759771 0.563848 0.051084 0.139440 0.193196 1.098012 0.509816 -0.278407 0.235516 0.466980 0.813822 0.193871 0.270249 -0.725564 -0.276600 -0.128676 -0.103970 -0.322698 -0.220246 -0.710144 0.307080 0.821561 0.757307 -0.673247 0.672105 -0.272339 0.099187 0.414281 0.189867 0.749430 0.326405 0.103159 0.555560 1.150657 -0.427448 0.047199 0.048339 0.569413 -0.274114 0.540852 -0.049513 -0.438868 -1.276170 0.010720 -1.120022 0.069386 0.251045 0.943928 -0.779188 0.474255 0.781279 0.331302 0.555642 -0.626375 -0.428300 -0.696096 -0.025951 -0.305163 1.522757 0.129624 0.206531 -0.071818 0.610365 0.290822 0.347967 0.010779 -0.716157 -0.407183 -1.541760 -0.552321 -0.423809 -0.466795 -0.183962 -0.707178 -0.491153 0.958204 0.882405 -1.217819 0.158609 0.361841 0.070295 0.160342 -0.662693 -0.366776 0.459406 -0.495506 -0.097996 0.161430 -0.489580 -0.171041 0.019227 0.087525 0.183999 0.216818 0.051381 -0.892665 0.064662 0.185284 -0.227738 -0.225672 0.100375 -0.112845 -0.807995 0.311956 -0.881300 0.674484 -0.785764 0.193189 -0.218744 -0.866805 -0.138497 0.456508 0.092378 0.138260 -0.120686 -0.396561 -0.107850 -0.849590 -1.552284 0.589958 -0.004103 0.242916 -0.116511 -0.152889 -0.309564 -0.390128 -0.261592 0.499776 -0.535667 -0.138073 -0.105811 1.182595 -0.080850 -0.320285 -0.431033 0.043966 0.832197 0.559514 0.207630 -0.653600 -0.369521 -0.771713 -0.439073 0.632373 -0.127743 -0.019371 -0.121427 -0.248379 -0.769578 0.503275 -0.523049 0.561804 -0.435282 -0.048251 -0.849954 0.094454 -0.245895 -0.115966 -0.044034 -0.524440 0.226443 -0.066978 -0.346037 -0.200001 -0.098632 0.445857 -0.736101 -0.703463 0.133714 0.164190 0.628367 0.402890 0.405406 -0.296276 -0.052005 -0.609841 0.623237 -0.529354 0.208042 0.186857 -0.533086 0.927527 -0.403081 -0.435945 -0.583554 0.489835 0.120649 0.076183 1.292983 0.756806 -0.703879 -0.212259 -0.221635 0.227458 0.435931 0.969876 -0.628110 -0.393293 0.484994 -0.298127 -0.126936 -0.292583 0.313672 -0.170227 0.673850 -0.753416 -0.252855 0.377845 0.666295 -0.103351 0.335453 -0.068867 -0.273250 -0.435547 0.917809 0.269503 0.323926 -0.685150 -0.641456 0.395191 -0.747243 0.275626 -0.104630 -0.123715 -0.295050 0.106397 0.283797 0.733595 0.730785 -0.476385 0.638034 -1.070360 -0.908066 -0.210607 0.091928 0.338883 -0.565804 0.408278 -0.461557 0.155099 -0.168381 0.467737 0.087522 -0.270521 -0.353324 0.111593 0.372418 0.214660 -0.723971 0.908826 -0.169687 -0.325806 0.051890 -0.129657 0.248436 0.232568 -0.208455 -0.316763 -0.377028 0.520845 -0.500043 0.927065 -0.185745 0.223529 0.579332 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = 0.322542 -0.109474 -0.221375 0.476559 0.036357 -0.382785 0.113837 0.142428 -0.099444 -0.634726 -0.238340 0.086313 0.077231 -0.324059 0.140253 0.219966 0.146866 0.252049 -0.609966 0.322589 0.133608 -0.034006 -0.461461 -0.126077 -0.070246 -0.284950 -0.181457 0.306933 -0.080823 0.473744 -0.275606 0.175159 0.374355 -0.038057 0.401037 0.488571 0.104372 -0.031625 0.197927 0.270820 0.799018 0.244844 -0.092325 0.030910 0.315748 0.578468 -0.043402 0.463938 -0.311414 -0.166266 0.297299 -0.076565 -0.136723 0.015089 -0.614581 0.123557 0.454496 0.269811 -0.478922 0.394207 -0.425171 0.125597 0.283081 0.177203 0.803595 0.239580 0.258667 0.424939 0.722377 -0.194106 0.102311 0.067815 0.356694 -0.209673 0.260563 0.007302 -0.220209 -0.807273 0.018376 -0.599338 0.091665 0.124993 0.700660 -0.483806 0.090155 0.395735 0.239946 0.525055 -0.499836 -0.149694 -0.538115 -0.021531 -0.134428 0.818609 0.069006 0.176001 -0.106474 0.356546 0.033598 0.208226 -0.167514 -0.555990 -0.430732 -1.118652 -0.597825 -0.261144 -0.265783 -0.171407 -0.729139 -0.204158 0.614285 0.511473 -0.811200 0.119784 0.169794 0.001343 0.182545 -0.066982 -0.441038 0.112934 -0.212662 0.198825 0.194610 -0.102382 0.010387 -0.453633 0.214515 0.172973 0.199881 0.001025 -0.573606 0.097700 0.212079 -0.157971 -0.154884 0.145391 0.035989 -0.428765 0.241152 -0.467330 0.485608 -0.689300 0.027113 -0.427014 -0.594859 -0.061422 0.545551 0.441147 0.272211 0.038017 -0.328865 0.038018 -0.808402 -1.090438 0.167598 -0.191124 0.131788 -0.141453 -0.089565 -0.140630 -0.181349 -0.046381 0.347390 -0.451158 -0.168329 -0.189221 0.600881 0.076097 -0.265464 -0.303849 -0.075407 0.462685 0.202874 0.262541 -0.343346 -0.421413 -0.626403 -0.302116 0.417713 -0.106719 0.065078 -0.134767 -0.126468 -0.654513 0.298513 -0.362579 0.165136 -0.321223 -0.040237 -0.563784 0.014733 -0.111692 -0.112127 -0.178620 -0.391988 0.177827 0.176895 -0.112590 -0.001203 0.066366 0.108786 -0.429763 -0.526280 0.115483 0.049467 0.515361 0.465774 0.190175 -0.162224 -0.087227 -0.552599 0.446588 -0.497697 0.168525 0.285920 -0.532000 0.568428 -0.383050 -0.379965 -0.260647 0.309644 -0.049879 -0.382177 0.798542 0.564076 -0.588133 -0.126071 -0.329805 0.295353 0.236157 0.674554 -0.264336 0.005152 0.199971 0.025318 -0.089875 -0.111747 0.249083 -0.162046 0.332555 -0.544790 -0.223552 0.422225 0.466738 -0.036979 0.050748 -0.196298 -0.089888 -0.111790 0.560449 0.149438 0.120443 -0.390626 -0.761231 0.170593 -0.336352 0.027161 0.103682 -0.174075 -0.183775 -0.103364 -0.086455 0.576579 0.277616 -0.251133 0.443297 -0.646088 -0.647952 -0.343990 0.115685 0.051231 -0.358919 0.355429 -0.329654 0.039031 -0.110337 0.408914 0.021400 -0.266737 -0.385405 0.116049 0.240829 0.152658 -0.463931 0.574582 -0.017534 -0.176623 -0.162034 -0.011154 0.029562 0.283373 -0.328941 -0.327003 -0.271600 0.340093 -0.366787 0.523399 -0.111742 0.319383 0.367093 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = 0.331974 -0.240235 -0.196455 0.565516 0.014794 -0.387767 0.169859 0.126492 -0.040118 -0.639328 -0.078024 0.239513 0.084389 -0.288419 0.024700 0.202058 0.124129 0.212305 -0.656494 0.289940 0.068151 -0.016394 -0.501265 -0.204973 -0.092574 -0.314533 0.147474 0.432029 -0.094491 0.497618 -0.245284 0.077779 0.380768 -0.051675 0.413279 0.534921 0.302731 0.056568 -0.042868 0.290712 0.817401 0.368268 -0.255253 0.059430 0.327075 0.631382 0.234843 0.359269 -0.328600 -0.170969 0.092292 0.173542 -0.195301 -0.197224 -0.637720 0.078754 0.519499 0.357841 -0.503835 0.466117 -0.405376 0.083225 0.309398 0.429750 0.784462 0.122793 0.369667 0.433518 0.768397 -0.314126 0.052933 0.111808 0.435360 -0.178317 0.482759 0.006892 -0.510195 -0.832314 0.051842 -0.594702 -0.019335 0.203367 0.492504 -0.487022 0.071148 0.392996 0.226055 0.486339 -0.576582 -0.199034 -0.556828 -0.050178 -0.133820 1.164878 0.125096 0.207703 -0.022252 0.476832 0.179668 0.266675 0.031467 -0.653299 -0.153240 -1.128914 -0.496542 -0.358619 -0.308745 -0.165173 -0.604805 -0.267566 0.597075 0.573567 -0.817030 0.163492 0.230141 0.002331 0.532150 -0.487731 -0.193369 0.320066 -0.209758 0.070295 0.282437 -0.245153 0.013899 -0.102396 0.352331 0.211612 0.161694 0.082475 -0.686675 0.124693 0.277865 -0.091365 -0.138536 0.127484 -0.030183 -0.565336 0.237929 -0.605833 0.575410 -0.677149 0.115759 -0.293405 -0.579021 -0.073199 0.397405 0.265545 0.255984 -0.106579 -0.363090 0.082216 -0.778563 -1.398191 0.269055 0.012460 -0.008380 -0.131697 -0.125544 -0.144606 -0.294407 -0.056900 0.505796 -0.415088 -0.150366 -0.075374 0.512012 0.122010 -0.277496 -0.169362 -0.029589 0.422106 0.523135 0.389470 -0.379005 -0.770697 -0.663005 -0.283802 0.444652 -0.097926 -0.072100 -0.090314 -0.325065 -0.737132 0.376171 -0.370592 0.370466 -0.337206 -0.040919 -0.599205 0.048224 -0.147236 0.015754 -0.133475 -0.434397 0.112298 -0.060325 -0.318918 -0.032832 0.024551 0.262471 -0.456986 -0.502094 0.232141 0.064363 0.658714 0.243622 0.221824 -0.066020 -0.043386 -0.564083 0.420363 -0.489754 0.183540 0.271860 -0.581536 0.622053 -0.326700 -0.402339 -0.257904 0.371504 0.022491 0.132620 1.043921 0.742870 -0.571433 -0.172414 -0.036723 0.210956 0.266489 0.691059 -0.485897 -0.213648 0.248789 -0.004793 -0.081404 -0.012009 0.227908 -0.127484 0.320321 -0.576004 -0.242511 0.340027 0.481759 -0.038008 0.056589 -0.193300 -0.314442 -0.379139 0.637530 0.158454 0.309929 -0.481542 -0.664460 0.250817 -0.727126 -0.030601 0.030567 -0.186358 -0.206206 0.018266 0.006483 0.564635 0.356239 -0.495178 0.477028 -0.813772 -0.690352 -0.408521 -0.069786 0.073589 -0.341984 0.422069 -0.344118 0.114333 -0.177770 0.362742 -0.120391 -0.149338 -0.046046 0.118185 0.147309 0.123971 -0.541410 0.641352 -0.090450 -0.163274 -0.187042 -0.007268 -0.056553 0.360694 -0.329010 -0.304756 -0.308884 0.458913 -0.345732 0.513986 -0.104155 0.319882 0.392786 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = 6.403476 -2.578260 -6.708426 14.529691 -1.674408 -0.242175 1.662405 1.424548 0.879563 -16.381164 -8.149972 10.409698 3.847278 1.111199 1.927820 5.219166 2.153509 3.417920 -18.238886 0.540432 3.787311 -0.678303 -3.127926 -2.329952 -0.380585 -4.013902 7.337604 3.562084 0.954977 11.394394 -3.093281 8.915114 8.780389 -1.273115 3.456030 6.707338 -5.123987 0.045471 -5.319731 -3.856414 13.459446 4.179906 0.183223 5.156808 -2.991340 11.662780 2.148820 9.978445 2.367337 -5.174297 6.468516 6.218793 -4.700544 -1.730896 -10.516380 1.495629 7.088158 3.890433 -3.270078 5.443963 -4.299743 3.195223 5.459546 2.640815 15.264286 5.104926 10.990360 11.775418 10.171634 -8.413727 4.884273 -0.274156 0.679718 -2.306216 10.536736 -7.502507 -8.327603 -2.984590 -1.010687 -13.827368 -0.239705 0.257632 16.909397 -9.397003 -2.364807 -0.714356 5.577097 13.922100 -7.172160 3.384912 -9.370415 -1.143801 -3.060552 15.456902 2.224170 3.524780 -2.771188 4.425261 -1.617256 2.092424 1.484199 -9.847089 1.790077 -17.264641 -7.842774 -6.492097 2.178173 4.504929 -13.123740 1.295307 -1.706209 5.492899 -18.012366 -2.225268 2.473866 4.444709 9.116389 0.185499 -4.758300 -0.255395 0.602101 5.430761 5.598890 -5.629384 5.188229 -3.954279 -0.315100 3.186205 4.766728 3.935696 -13.235330 -4.154929 2.524266 -1.725884 2.376030 7.602283 8.683792 -1.852930 5.539225 -8.790163 10.020310 -14.911440 -3.361537 -5.826430 -8.667116 -5.648423 7.208728 7.371288 8.184024 -2.934120 -4.715102 0.707881 -16.094383 -17.613313 0.998674 1.987909 -0.949718 4.368551 -2.307169 3.420308 -9.526100 4.057286 9.004291 -6.265487 -6.560923 -1.315273 7.013996 3.599501 -4.792222 -4.256663 -0.491947 -2.415015 1.753358 13.519080 -0.791662 -16.411713 -19.288990 -4.650551 10.976203 -4.735863 -0.370586 -5.817561 -4.846396 -8.180977 -0.400228 -8.669322 1.128466 1.288920 -4.973717 -13.792280 3.223391 -0.319962 -2.538685 2.634729 -10.868589 2.206713 8.886522 2.415547 0.188434 3.414989 1.621617 -8.232302 -7.279005 4.061599 -6.307078 8.999588 7.570479 -0.627983 -5.775123 -4.589140 -8.304415 6.259928 -6.871467 7.961823 0.434229 -4.333211 5.073327 -10.917749 -1.072701 -7.044732 2.747318 0.604181 -17.451030 14.277871 7.945626 -7.527710 0.733211 -2.993781 6.866511 -0.569380 7.306898 -9.275166 -6.541094 1.666958 0.537108 -0.056210 -2.974750 2.532063 -3.734463 -4.529177 -8.814117 -2.871305 10.520622 4.539872 -0.744762 1.219810 4.981590 -6.351669 2.658502 9.856312 7.831329 -0.275172 -8.556574 -21.894315 4.780750 -2.916490 -2.873515 -0.411200 -6.629269 -4.006397 4.117783 -3.033820 8.450834 1.675935 -4.761663 9.989983 -13.630740 -11.063843 -10.505992 -1.551217 1.943333 -1.020685 0.663566 -5.066192 2.697845 0.195357 4.140171 -4.307297 -7.306460 1.162770 5.088879 11.794148 -1.234626 -1.078540 12.560410 4.347805 -2.401632 -3.883912 -1.121102 -7.447254 1.740499 -12.060088 -2.263904 2.893412 6.414515 -9.722667 2.993306 -1.195135 2.857752 2.313161 -PE-benchmarks/cut-vertices.cpp__main = 8.483504 -2.005703 -3.854862 14.694229 0.994674 -2.337704 3.105992 4.612159 -0.563608 -20.702300 -11.535760 4.839083 3.044173 -1.124690 3.777473 4.192767 4.329098 4.838063 -23.299018 1.896882 5.909419 0.152016 -4.046104 -3.124192 -0.425716 -6.016878 0.959812 6.587242 1.031952 14.146116 -5.130264 7.132491 11.261597 -0.814690 6.284657 11.215364 -2.441464 -0.092276 -0.825730 -1.598899 19.771367 5.623884 -1.166221 5.414709 1.427642 15.393233 -0.580034 13.000240 -2.773543 -6.514460 9.387916 -0.981841 -5.520353 -1.477310 -13.887442 3.456007 14.684654 8.484492 -8.200158 8.619665 -6.035081 3.445335 6.318125 0.909708 17.297311 8.262209 9.654151 12.454332 15.229949 -10.295370 2.904776 1.614772 2.927300 -2.770024 5.963932 -9.213463 -5.903917 -13.176655 0.512504 -19.461175 -0.134914 -0.152317 20.837368 -11.752641 0.425632 5.350465 4.232590 14.397810 -9.151452 0.449221 -12.957626 -1.022467 -3.711300 19.989165 1.081709 2.941710 -0.349869 6.441332 0.189427 5.878438 -0.560653 -11.932420 -6.903555 -25.402551 -11.648049 -7.107230 1.550808 2.750254 -15.787896 -2.116049 5.409730 4.991293 -21.280035 -1.307185 4.604322 6.442098 4.360590 1.346273 -10.577647 -1.164204 -1.889989 4.814977 6.854967 -6.222778 3.864978 -8.862953 0.206473 3.736925 5.447890 1.938302 -15.282552 -3.685106 2.267291 -4.005559 -0.176521 5.407762 6.255392 -4.913630 7.466546 -11.271763 13.014073 -19.385671 -1.490858 -8.699946 -12.597608 -5.295057 10.651469 9.105413 7.246822 -0.119535 -7.183157 0.194589 -18.339640 -21.341528 2.182210 1.336055 4.306056 1.989947 -3.352069 2.588150 -9.147510 1.381941 6.907594 -8.057711 -6.362032 -3.309754 14.665259 2.135742 -6.006469 -7.083897 1.220257 4.391065 -0.649257 12.185776 -5.088510 -11.624786 -20.037781 -8.088318 13.028480 -5.240349 0.287383 -5.031379 -3.028162 -13.434247 3.148481 -11.216729 2.118968 -2.271672 -6.690728 -16.800671 4.300214 -2.357302 -2.405352 3.239046 -12.355691 2.898153 9.407350 4.987046 0.843095 2.749897 2.407617 -12.795136 -12.143002 1.545699 -4.208763 11.974488 10.198037 0.642828 -5.356166 -5.234305 -10.370866 9.778802 -6.264906 7.049057 0.946474 -7.243464 9.531519 -11.437663 -2.803834 -11.045621 4.570865 2.729527 -17.800408 18.896619 9.721501 -10.838945 -2.310039 -7.728057 6.569105 1.955404 12.286871 -8.718887 -6.351175 4.146145 -0.992338 -0.819869 -5.654377 4.759917 -3.115146 0.624546 -13.491079 -5.756308 11.999167 8.635927 -1.094082 4.814923 5.014789 -2.276984 2.063655 15.208636 7.177327 -0.908517 -9.507002 -25.300692 6.693450 -0.954078 -0.640120 -1.199152 -6.744642 -6.881130 2.153594 1.378816 12.524704 9.950424 -3.638150 13.193716 -14.608170 -14.628056 -10.516190 0.933420 3.735440 -5.535021 -0.015776 -7.453122 3.375146 -0.483280 5.197133 0.363374 -9.365494 -7.445650 3.663442 13.185102 0.120442 -3.894747 15.958807 3.107381 -4.874084 -3.090096 -0.445309 -3.094024 4.854075 -9.571378 -4.818495 -0.560849 6.967716 -10.354492 6.694367 -1.295274 3.616074 6.166662 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = 0.212183 -0.170480 0.090016 0.384195 0.214149 -0.139956 0.113555 0.107094 -0.125360 -0.636344 -0.253742 -0.139290 -0.027521 -0.132501 0.172681 0.080180 0.253884 0.121299 -0.609535 0.131896 0.124425 -0.065250 -0.177566 -0.061003 -0.019214 -0.327674 -0.041813 0.396510 -0.024864 0.399181 -0.272467 0.114970 0.322339 0.092979 0.404869 0.421962 0.205600 -0.083238 0.030285 0.143046 0.802825 0.116023 -0.128124 0.053104 0.303631 0.530023 0.036347 0.267912 -0.126343 -0.142639 0.224123 -0.280349 -0.098845 -0.042683 -0.618729 0.117552 0.424369 0.314578 -0.464186 0.316033 -0.314089 0.111934 0.158893 0.060594 0.614439 0.071471 0.267934 0.303183 0.543584 -0.330254 -0.059580 0.182869 0.295085 -0.012250 0.004592 -0.039043 -0.050778 -1.008031 0.063847 -0.519048 0.006765 0.037861 0.405785 -0.287661 0.020518 0.430809 -0.043702 0.366426 -0.348565 -0.112383 -0.568228 0.004479 0.053035 0.571461 0.082396 0.011510 0.109579 0.279397 0.092533 0.342369 -0.023616 -0.440855 -0.416481 -1.024381 -0.479692 -0.222572 -0.047856 -0.181900 -0.465249 -0.122382 0.605435 0.351390 -0.532136 0.048529 0.156326 0.148841 -0.072931 -0.273283 -0.296729 -0.032205 -0.109416 0.162595 0.239810 -0.146416 0.065100 -0.381111 0.238373 0.103765 0.249650 -0.048662 -0.273854 -0.040066 0.172309 -0.080620 -0.159857 -0.021468 -0.008231 -0.283224 0.245215 -0.350910 0.475691 -0.497535 0.175923 -0.368078 -0.362028 -0.073333 0.585591 0.316322 0.156562 0.205436 -0.329392 0.084170 -0.503509 -0.913151 0.124869 0.010044 0.187001 -0.048456 -0.127595 0.036565 -0.177796 -0.117815 0.195766 -0.342481 -0.178895 -0.148673 0.178191 0.039736 -0.209759 -0.279078 0.134040 0.507597 0.006676 0.238817 -0.343356 -0.234055 -0.413660 -0.382189 0.342429 -0.156466 0.019795 -0.020014 -0.078751 -0.582957 0.354705 -0.334986 0.149594 -0.279464 -0.249318 -0.493782 0.077028 -0.187223 -0.037064 0.059126 -0.355020 0.145052 -0.008248 -0.054687 0.045801 0.034900 0.077335 -0.390560 -0.497675 -0.035774 0.050558 0.429694 0.222428 0.083059 -0.147430 -0.178371 -0.320705 0.431818 -0.250830 0.129208 0.187885 -0.501820 0.369876 -0.256368 -0.236824 -0.184948 0.279869 0.127437 -0.241500 0.678048 0.497365 -0.508548 -0.272129 -0.356504 0.169536 0.159145 0.636226 -0.226843 0.024792 0.174482 0.086333 -0.062080 -0.134624 0.229992 0.023970 0.211979 -0.603616 -0.389117 0.286633 0.433207 -0.017472 0.154872 0.057293 0.148850 -0.152985 0.629825 0.080544 0.149217 -0.271093 -0.617301 0.192595 0.016693 0.066843 0.130307 -0.227792 -0.230631 -0.118159 0.041691 0.499071 0.465020 -0.148466 0.459032 -0.354692 -0.484505 -0.279924 -0.025464 0.049067 -0.371292 0.264348 -0.310089 0.014849 -0.185982 0.215287 0.037568 -0.119627 -0.384787 0.027268 0.176374 0.188655 -0.241711 0.486491 0.018127 -0.236212 -0.109427 0.063955 0.061299 0.402286 -0.203109 -0.315260 -0.226068 0.204731 -0.235403 0.274565 -0.057250 0.222485 0.267878 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.297009 -0.205890 0.136405 0.450108 0.329959 -0.092093 0.112336 0.140372 -0.167141 -0.824366 -0.416913 -0.222713 -0.048247 -0.124980 0.269051 0.098758 0.388359 0.088719 -0.776668 0.124496 0.153753 -0.145493 -0.202297 0.008985 -0.013840 -0.437485 -0.110873 0.480387 -0.018500 0.478406 -0.342532 0.196127 0.400184 0.127163 0.534942 0.503803 0.160401 -0.160407 0.075714 0.114641 1.040660 0.087289 -0.102378 0.085070 0.376792 0.654460 -0.081382 0.458301 -0.089771 -0.170880 0.417073 -0.474927 -0.109350 0.033161 -0.815141 0.160239 0.525779 0.314139 -0.592271 0.352045 -0.387889 0.167880 0.166040 -0.009161 0.776515 0.118182 0.351543 0.370639 0.626215 -0.416296 -0.090839 0.267932 0.330885 0.054067 -0.135833 -0.103046 0.076281 -1.205348 0.115919 -0.606771 0.041371 -0.050940 0.576664 -0.315390 -0.027787 0.514237 -0.104842 0.462497 -0.397704 -0.086443 -0.734054 0.017536 0.103846 0.559725 0.062715 -0.001333 0.161525 0.284656 0.041832 0.450147 -0.084570 -0.523168 -0.630519 -1.264544 -0.643725 -0.249131 0.025227 -0.221730 -0.590141 -0.090597 0.712202 0.345831 -0.597780 0.023145 0.154827 0.208515 -0.182464 -0.095952 -0.469232 -0.194770 -0.092026 0.264575 0.283113 -0.104432 0.118721 -0.645127 0.276864 0.115640 0.347387 -0.087019 -0.310985 -0.068275 0.205368 -0.116678 -0.208803 -0.046751 0.028096 -0.289274 0.325926 -0.339123 0.566790 -0.642506 0.164625 -0.549265 -0.435713 -0.098703 0.817427 0.488896 0.248270 0.380167 -0.384242 0.101305 -0.627343 -1.012345 0.064512 -0.027074 0.284337 -0.050865 -0.154822 0.113084 -0.201092 -0.146451 0.154638 -0.431510 -0.257435 -0.246770 0.210365 0.035131 -0.250330 -0.371626 0.194061 0.624020 -0.172517 0.299323 -0.403393 -0.228497 -0.499895 -0.500451 0.412337 -0.224541 0.077638 -0.005833 -0.022132 -0.708086 0.390453 -0.422117 0.095524 -0.353996 -0.373130 -0.603887 0.122458 -0.232359 -0.070968 0.111874 -0.449688 0.211355 0.093310 0.082009 0.093346 0.081045 0.003676 -0.500706 -0.647393 -0.106402 0.043122 0.537137 0.347085 0.030603 -0.165852 -0.279843 -0.386412 0.543898 -0.309253 0.165971 0.242493 -0.620987 0.376675 -0.347265 -0.266881 -0.242776 0.325661 0.167973 -0.507680 0.760108 0.551716 -0.651827 -0.363392 -0.588585 0.239237 0.147452 0.788085 -0.187743 0.115295 0.189664 0.159399 -0.076228 -0.193506 0.297734 0.076187 0.221338 -0.793880 -0.537659 0.402019 0.530491 -0.017742 0.196164 0.124913 0.314200 -0.059900 0.808865 0.090750 0.115873 -0.292239 -0.893734 0.211392 0.233256 0.058217 0.191861 -0.316445 -0.315167 -0.218435 0.009515 0.627243 0.545992 -0.048245 0.585394 -0.336981 -0.573449 -0.353401 -0.004526 0.040302 -0.459398 0.273699 -0.394040 -0.013698 -0.245401 0.254894 0.081772 -0.186895 -0.614068 0.026604 0.252840 0.238061 -0.212148 0.574284 0.083542 -0.299771 -0.140907 0.106988 0.095992 0.536770 -0.292285 -0.410280 -0.262191 0.180277 -0.286780 0.263306 -0.021095 0.295771 0.298729 -PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = 0.153794 -0.234049 0.070829 0.328976 0.254805 -0.002654 0.033686 -0.053941 -0.064280 -0.519699 -0.226102 -0.051128 -0.053177 -0.049317 0.172046 0.092746 0.291483 0.019833 -0.265095 0.073010 0.015846 -0.143300 -0.136974 0.095557 -0.007819 -0.306761 0.087110 0.273959 -0.003087 0.260569 -0.224915 0.174843 0.232963 0.074747 0.329936 0.270153 0.154874 -0.114073 -0.069167 0.060158 0.666677 -0.072315 0.047937 0.107710 0.233665 0.386180 -0.023275 0.420795 0.249942 -0.084591 0.353911 -0.252350 -0.010566 0.035494 -0.584359 0.127719 0.175929 0.050850 -0.374037 0.160328 -0.201423 0.130071 0.071586 0.002501 0.499983 0.040378 0.250290 0.230452 0.365520 -0.252466 -0.088610 0.234515 0.278947 0.163323 0.008241 -0.058845 0.037561 -0.605413 -0.002493 -0.105806 0.087618 -0.095782 0.326290 -0.165029 -0.138456 0.276374 -0.134679 0.287504 -0.183409 0.006402 -0.485261 0.050176 0.157782 0.185579 0.070709 -0.002871 0.032338 0.100593 -0.046901 0.283137 -0.014886 -0.341122 -0.333615 -0.755101 -0.479997 -0.168011 0.053299 -0.185273 -0.414239 0.033281 0.319101 0.250778 -0.318655 -0.007253 0.066030 0.099906 -0.008471 -0.044954 -0.219773 -0.197510 0.075369 0.232001 0.136012 0.000314 0.088299 -0.483572 0.215606 0.042700 0.250672 -0.099476 -0.039223 -0.077962 0.082871 0.081648 -0.119455 -0.069152 0.048366 -0.198430 0.211278 -0.084735 0.312897 -0.358256 -0.009439 -0.391644 -0.218756 -0.069906 0.738608 0.261253 0.387965 0.263423 -0.287450 0.018482 -0.395867 -0.642141 -0.010898 -0.104180 0.102900 0.071378 -0.073089 0.115032 -0.106329 -0.095523 0.134137 -0.285270 -0.176250 -0.145068 -0.210983 -0.025967 -0.133702 -0.306314 0.105743 0.355416 -0.107621 0.198211 -0.196490 -0.336078 -0.268283 -0.317971 0.217999 -0.169739 0.121538 0.029256 -0.034745 -0.418548 0.196037 -0.256315 -0.015054 -0.208897 -0.304417 -0.352807 0.063737 -0.156864 -0.023467 0.076446 -0.306305 0.166358 -0.009004 0.078037 0.102605 0.105757 -0.096519 -0.348639 -0.425112 -0.094168 -0.003219 0.347589 0.172960 0.005697 -0.115338 -0.234301 -0.262322 0.283534 -0.387164 0.087575 0.260669 -0.392167 0.153249 -0.234779 -0.138194 -0.095094 0.199944 0.093467 -0.469218 0.387674 0.363966 -0.435320 -0.244407 -0.353295 0.177763 0.057122 0.517836 -0.104611 0.162294 0.105706 0.205058 -0.042331 -0.120036 0.199233 0.068407 0.093507 -0.514092 -0.389126 0.224070 0.340946 -0.020060 -0.020183 0.100051 0.222172 -0.030355 0.493904 0.063288 0.137269 -0.173149 -0.644294 0.086129 0.244191 -0.019079 0.297577 -0.301597 -0.134119 -0.120340 -0.145994 0.395327 0.102789 0.093497 0.368659 -0.174406 -0.327978 -0.164299 -0.119333 -0.017434 -0.265765 0.290911 -0.274516 -0.082088 -0.213876 0.151137 -0.086137 -0.023998 -0.262947 0.039055 0.123377 0.175412 -0.010506 0.312103 0.099537 -0.197908 -0.085620 0.092243 0.031807 0.338822 -0.320205 -0.255337 -0.151757 0.064358 -0.163072 0.124939 -0.074325 0.218403 0.099625 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = 0.183844 -0.354912 0.126929 0.364898 0.282775 0.011970 0.049841 -0.037506 -0.018052 -0.579131 -0.222936 -0.088608 -0.070484 -0.036879 0.190249 0.078335 0.332695 -0.011593 -0.389954 0.074811 0.018140 -0.144169 -0.110508 0.100441 0.004315 -0.347741 0.155346 0.336037 0.000738 0.289189 -0.252257 0.165926 0.263199 0.078584 0.367431 0.310921 0.195644 -0.120449 -0.109350 0.081267 0.748719 -0.051754 0.005563 0.119067 0.259218 0.438502 0.034174 0.490405 0.370114 -0.100457 0.400099 -0.325800 -0.030374 0.000440 -0.654343 0.129750 0.246245 0.097401 -0.425631 0.186459 -0.208703 0.138886 0.079673 0.032534 0.547121 0.021523 0.308103 0.237947 0.405938 -0.305455 -0.107883 0.261107 0.327952 0.207704 0.020912 -0.146186 0.011814 -0.789583 0.025123 -0.116243 0.068503 -0.118419 0.238132 -0.178210 -0.129353 0.318533 -0.197178 0.308125 -0.204128 0.006990 -0.549633 0.054590 0.232958 0.254066 0.046744 -0.021975 0.096735 0.130020 -0.033954 0.330668 0.066292 -0.395229 -0.348124 -0.848727 -0.504977 -0.198795 0.071615 -0.202020 -0.434157 0.055293 0.336194 0.180808 -0.338512 -0.006808 0.080497 0.130218 0.028754 -0.133153 -0.164569 -0.224054 0.087352 0.264502 0.174756 -0.063520 0.108040 -0.524621 0.273852 0.094859 0.269364 -0.115640 0.013427 -0.087473 0.101875 0.149299 -0.137776 -0.083433 0.039333 -0.233431 0.236681 -0.123676 0.372652 -0.387824 -0.004530 -0.418872 -0.166288 -0.084597 0.862014 0.222435 0.398873 0.302572 -0.352164 0.047320 -0.403530 -0.743618 -0.016740 -0.077763 0.113096 0.088880 -0.090949 0.139920 -0.113477 -0.117877 0.094980 -0.302471 -0.197102 -0.147499 -0.371609 -0.018391 -0.139128 -0.305808 0.157641 0.429517 -0.112382 0.242056 -0.217056 -0.428970 -0.276817 -0.360238 0.248726 -0.188988 0.114205 0.045928 -0.048760 -0.491661 0.247188 -0.289530 -0.002228 -0.233714 -0.374844 -0.397274 0.086186 -0.196445 0.080087 0.115782 -0.348185 0.168457 -0.104654 0.149818 0.116925 0.121187 -0.082039 -0.443545 -0.492158 -0.126231 0.000598 0.453730 0.072196 -0.007005 -0.079015 -0.260325 -0.252008 0.315840 -0.427454 0.095429 0.271680 -0.461585 0.169777 -0.222773 -0.139309 -0.134984 0.230227 0.138925 -0.388222 0.486872 0.422392 -0.480531 -0.286470 -0.369899 0.178527 0.067586 0.573718 -0.132718 0.132449 0.120166 0.235047 -0.045244 -0.149546 0.217402 0.095807 0.090355 -0.582289 -0.452690 0.225077 0.376050 -0.017853 -0.013794 0.141309 0.247835 -0.110534 0.577261 0.043782 0.186033 -0.199201 -0.731007 0.115301 0.364813 -0.004114 0.326777 -0.393146 -0.157124 -0.119181 -0.072050 0.435989 0.250622 0.127771 0.416429 -0.199604 -0.362349 -0.204697 -0.165797 -0.022781 -0.275093 0.297051 -0.307457 -0.075947 -0.249550 0.151358 -0.104938 0.007923 -0.269714 0.044607 0.111843 0.190117 -0.019755 0.352009 0.104476 -0.227667 -0.098518 0.108838 0.001591 0.400349 -0.265911 -0.265823 -0.164398 0.080286 -0.172719 0.117988 -0.076691 0.243737 0.073198 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.064341 -0.208182 0.024041 0.255363 0.150702 -0.025750 0.022074 -0.108940 -0.015375 -0.321187 -0.067961 0.040351 -0.037288 -0.042836 0.080592 0.076338 0.169173 0.034097 -0.053915 0.069873 -0.028262 -0.079277 -0.106119 0.053735 -0.010939 -0.198070 0.169875 0.174001 -0.005581 0.162604 -0.149926 0.106779 0.144215 0.039358 0.193861 0.167612 0.186985 -0.045970 -0.125725 0.072924 0.417218 -0.073882 0.050677 0.085209 0.152241 0.243994 0.076820 0.262907 0.271062 -0.048440 0.190914 -0.064749 0.012915 -0.023106 -0.389978 0.088186 0.041520 0.009930 -0.236909 0.100975 -0.113216 0.079461 0.050611 0.058094 0.326077 -0.008169 0.167061 0.153924 0.257018 -0.157676 -0.063052 0.160829 0.239865 0.126997 0.138727 -0.001913 -0.066917 -0.353105 -0.060915 0.040497 0.066971 -0.033001 0.151773 -0.118392 -0.116553 0.171881 -0.090445 0.182821 -0.110160 0.000635 -0.312924 0.044518 0.124952 0.134605 0.086256 0.006838 -0.028080 0.066888 -0.020894 0.170707 0.043084 -0.245304 -0.118525 -0.481851 -0.322236 -0.132925 0.000581 -0.146627 -0.285612 0.027461 0.172115 0.237302 -0.220995 0.007732 0.052668 0.035867 0.103000 -0.173358 -0.045458 -0.070059 0.086853 0.145421 0.078219 -0.015921 0.041140 -0.248955 0.173791 0.021754 0.157237 -0.070574 0.031849 -0.056728 0.037436 0.139068 -0.066425 -0.052246 0.022867 -0.177293 0.128699 -0.053526 0.199560 -0.198108 -0.027468 -0.222680 -0.125718 -0.045023 0.538440 0.089739 0.333971 0.107332 -0.226642 -0.007749 -0.259707 -0.500544 0.024171 -0.086153 -0.001475 0.091221 -0.038565 0.054870 -0.072418 -0.064388 0.161052 -0.190485 -0.100944 -0.051890 -0.298226 -0.031521 -0.082749 -0.221043 0.044496 0.219744 0.041989 0.133474 -0.115810 -0.352820 -0.162690 -0.194633 0.131376 -0.106660 0.082181 0.023368 -0.079949 -0.272150 0.136030 -0.160333 0.009788 -0.126417 -0.194521 -0.224746 0.018834 -0.108450 0.010314 0.029334 -0.207350 0.106200 -0.103044 -0.029015 0.066081 0.072658 -0.053954 -0.235879 -0.270037 -0.036620 -0.004593 0.231143 0.047768 0.042258 -0.091904 -0.146084 -0.189234 0.153373 -0.349328 0.046028 0.218120 -0.260063 0.111632 -0.144385 -0.093437 -0.026509 0.142740 0.049537 -0.252103 0.262095 0.288561 -0.285980 -0.152609 -0.133548 0.112299 0.051500 0.352562 -0.120660 0.097711 0.079730 0.153194 -0.025660 -0.061782 0.129302 0.026071 0.065403 -0.317760 -0.246784 0.104810 0.232422 -0.019962 -0.085182 0.042803 0.077642 -0.097247 0.301053 0.050393 0.164604 -0.136317 -0.384549 0.051231 0.075762 -0.024116 0.262721 -0.227177 -0.039295 -0.026343 -0.143363 0.255759 -0.029354 0.036885 0.233160 -0.160831 -0.217418 -0.076392 -0.151732 -0.019366 -0.164619 0.282760 -0.187906 -0.069602 -0.160522 0.102699 -0.145093 0.053341 -0.028602 0.041006 0.042874 0.125457 -0.002070 0.200048 0.050303 -0.130702 -0.051742 0.055625 -0.005259 0.200323 -0.251753 -0.154956 -0.104968 0.064544 -0.102325 0.110731 -0.109519 0.147220 0.043864 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.214595 -0.812498 0.304544 0.434972 0.290551 0.047371 0.102851 -0.026762 0.215768 -0.618347 -0.052128 -0.147046 -0.123825 0.019354 0.171608 0.004284 0.375234 -0.123035 -0.678211 0.078882 -0.016791 -0.083625 0.026208 0.078155 0.049729 -0.402973 0.511054 0.484389 0.013548 0.305705 -0.286636 0.062194 0.295396 0.058544 0.381335 0.371453 0.390833 -0.077848 -0.326637 0.178471 0.827432 0.028924 -0.161195 0.141993 0.280007 0.505605 0.364065 0.610956 0.871920 -0.127769 0.421852 -0.431995 -0.086122 -0.198375 -0.739897 0.098343 0.393100 0.242686 -0.494884 0.231632 -0.149615 0.123539 0.091046 0.208259 0.561771 -0.102441 0.456128 0.191396 0.459108 -0.422621 -0.159422 0.293788 0.484889 0.348902 0.202079 -0.438615 -0.195651 -1.273952 0.077164 -0.011686 -0.028602 -0.146187 -0.289015 -0.184298 -0.071040 0.382677 -0.402940 0.285926 -0.213755 0.003576 -0.634787 0.066587 0.500833 0.477043 -0.033568 -0.088684 0.293906 0.214022 0.043842 0.408361 0.448970 -0.515841 -0.191066 -0.949979 -0.447137 -0.286845 0.092162 -0.230359 -0.385202 0.137524 0.257583 -0.112544 -0.320280 0.009954 0.125004 0.187427 0.289128 -0.614353 0.230560 -0.202778 0.146768 0.307929 0.271940 -0.335093 0.139843 -0.454199 0.465018 0.282550 0.250698 -0.151397 0.295104 -0.104285 0.132452 0.477327 -0.158031 -0.123651 -0.022301 -0.352297 0.255715 -0.248234 0.498337 -0.345945 -0.002922 -0.358820 0.136621 -0.118479 1.155473 -0.104352 0.388512 0.303075 -0.550214 0.136442 -0.298020 -1.007928 -0.005039 0.045934 0.049507 0.178731 -0.127866 0.179311 -0.108154 -0.176161 -0.034733 -0.276488 -0.205202 -0.064049 -1.101356 0.006357 -0.109876 -0.218513 0.303985 0.590252 0.018186 0.352695 -0.218637 -0.817276 -0.205359 -0.405969 0.285007 -0.202903 0.045513 0.106728 -0.150028 -0.637714 0.391790 -0.326408 0.073919 -0.250502 -0.546654 -0.447083 0.131080 -0.306356 0.528085 0.226016 -0.416748 0.116698 -0.581293 0.329890 0.137684 0.149809 0.018446 -0.710407 -0.605268 -0.196933 0.014492 0.761850 -0.456053 -0.021251 0.089709 -0.276201 -0.137663 0.314905 -0.550779 0.085300 0.273172 -0.607155 0.194270 -0.084357 -0.099013 -0.225960 0.294156 0.276827 0.152876 0.758087 0.580693 -0.512037 -0.362921 -0.216570 0.116121 0.103818 0.631971 -0.261194 -0.051517 0.152033 0.303139 -0.040228 -0.209334 0.220150 0.163071 0.049647 -0.658747 -0.564605 0.109843 0.407940 -0.008928 -0.053237 0.249094 0.205957 -0.498138 0.717839 -0.047136 0.408427 -0.266576 -0.818113 0.197094 0.678874 0.050710 0.408724 -0.684926 -0.154320 -0.020551 0.226359 0.459066 0.709811 0.208256 0.472009 -0.286817 -0.389275 -0.278383 -0.384056 -0.046100 -0.211261 0.313463 -0.352608 -0.038893 -0.338891 0.103802 -0.239097 0.212942 -0.062439 0.068769 -0.014799 0.198984 -0.048314 0.399579 0.074995 -0.279498 -0.116229 0.138597 -0.156341 0.507956 0.019718 -0.207387 -0.168175 0.144186 -0.150558 0.075980 -0.121349 0.273889 -0.088270 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.434284 -0.873672 -0.426949 1.484896 0.505950 -0.638566 0.205058 0.589592 0.190558 -2.027791 -0.990771 0.528391 0.160992 -0.495086 0.552493 0.624161 0.787368 0.203057 -2.161749 0.733849 0.082695 -0.257687 -1.208487 -0.163290 -0.061241 -0.834601 -0.017384 0.926126 -0.094665 1.183713 -0.842702 0.575345 1.065754 -0.180701 1.223894 1.134170 0.249088 -0.309690 0.038946 0.210019 2.644179 0.674797 -0.095946 0.642041 0.829410 1.683844 -0.295575 2.600580 0.182572 -0.467187 1.561235 -0.874284 -0.615111 0.142672 -2.147751 0.681882 1.503912 0.347947 -1.450352 1.010889 -0.810238 0.487337 0.732484 0.289514 2.356076 0.833357 1.192615 1.167892 2.018488 -0.796625 0.072200 0.546497 1.310451 0.174534 0.617542 -1.061843 -0.419616 -2.100303 0.419756 -1.256296 0.436678 -0.480031 1.981523 -1.306157 0.051380 1.019408 0.251949 1.495311 -1.356664 -0.008154 -1.694379 0.066612 -0.008916 2.248518 -0.221814 0.461824 0.005315 0.768330 -0.134695 0.863351 -0.103935 -1.474514 -1.269993 -3.086287 -1.802186 -0.564833 -0.307171 -0.471824 -1.972293 -0.107864 0.970381 0.647505 -1.968722 -0.044025 0.417016 0.114488 1.066923 0.714766 -1.043311 -0.443531 -0.164687 0.868000 0.439780 -0.405687 0.324622 -1.764922 0.623229 0.686488 0.805871 -0.059231 -1.505143 0.138034 0.429601 0.006482 -0.386343 0.166239 0.206990 -1.377600 0.888118 -0.922814 1.308343 -2.159138 -0.593314 -1.524671 -1.321259 -0.231825 2.510832 1.024747 1.470416 0.781245 -0.918722 -0.086705 -2.235665 -2.899598 0.080005 -0.408680 0.398403 -0.123383 -0.204100 -0.032807 -0.498365 -0.335601 0.608239 -1.354250 -0.808469 -0.766315 0.972014 0.016681 -0.633598 -0.989013 0.232899 1.379102 -0.022774 0.957035 -0.667859 -2.082131 -1.652732 -0.980988 1.148067 -0.421027 0.448147 -0.165098 -0.189326 -1.898489 0.550441 -1.222260 0.357887 -0.774230 -0.865733 -1.648168 0.313129 -0.395619 0.226112 -0.145760 -1.328189 0.681500 0.387509 0.965605 0.047611 0.535860 0.071398 -2.003764 -1.949527 -0.132780 0.045441 2.191212 0.906343 0.210812 -0.037148 -0.549122 -1.482728 1.228757 -1.970498 0.444575 0.763537 -1.403720 1.132160 -1.221644 -0.847517 -1.300132 0.828606 0.053922 -1.368352 2.357730 1.479726 -1.813012 -0.647425 -1.441051 0.934982 0.435011 2.198654 -0.661761 -0.066627 0.530220 0.467237 -0.345527 -0.642351 0.814378 -0.099269 0.543980 -1.875543 -1.080747 1.148122 1.317139 -0.121014 0.048285 -0.014583 0.145753 -0.246569 1.994282 0.387602 0.255612 -1.164429 -3.236719 0.438431 0.431661 -0.202904 0.472142 -1.247799 -0.751345 -0.346188 -0.063267 1.679915 1.017401 0.335524 1.388338 -1.700429 -1.724347 -0.920662 0.116552 0.008869 -0.828740 0.723880 -1.112087 -0.025145 -0.488361 0.907981 -0.259731 -0.690059 -1.322985 0.255074 0.782828 0.331967 -0.779138 1.630235 0.379008 -0.498614 -0.390350 0.049460 -0.051362 0.971627 -0.973968 -0.800067 -0.690738 0.518154 -0.986408 1.076025 0.037162 0.923895 0.574901 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.945200 -0.749510 -1.451085 3.266749 0.972586 -1.831434 0.065374 1.301733 0.285460 -3.365568 -1.837573 2.080392 0.454427 -0.956928 1.027466 1.210163 1.195515 0.915604 -3.818578 1.740557 -0.473264 -0.332052 -2.991323 -1.202816 -0.171755 -0.497027 -0.113455 1.647073 -0.092034 1.935556 -1.913332 1.167059 1.717244 -0.248262 2.433212 1.248971 0.636257 -0.788806 -0.479338 -0.464957 4.991205 1.300084 0.339015 1.847559 1.416790 3.027158 -0.623311 4.813298 0.201631 -0.584718 2.524363 -1.208828 -1.189890 0.391479 -4.249821 1.954130 2.311626 0.176682 -2.620574 1.937303 -0.915910 1.039247 1.773586 -0.082027 4.877562 1.770088 2.116798 2.506610 4.044323 -1.235156 0.329298 0.516721 3.297019 0.184741 1.260530 -2.195714 -0.670726 -3.496205 0.768406 -2.921501 1.675559 -1.091471 4.540256 -2.865814 0.585086 1.801114 0.912928 2.920669 -3.110997 0.180644 -3.106402 0.012446 -0.703045 4.415520 -0.392925 0.806964 -0.195744 1.365409 -0.415221 1.507501 -0.701636 -2.398569 -1.645033 -5.958998 -3.645638 -0.172565 -1.216971 -1.335568 -3.520148 -0.303386 1.642714 1.966497 -3.903507 -0.969186 0.660293 -0.521787 1.431863 1.536288 -1.881524 -0.667615 -0.667856 1.877092 0.552531 -0.830862 0.726059 -2.740728 0.160434 1.215136 2.115683 0.443128 -3.167532 0.235390 0.545597 -0.001881 -0.679171 -0.066650 0.010698 -2.718381 1.689843 -1.519013 2.268157 -3.951175 -1.582484 -2.957379 -2.538335 -0.145635 4.374904 1.605536 3.161864 1.845343 -1.106977 -0.390652 -4.504476 -5.446224 0.860410 -0.579940 0.373352 -0.359899 -0.195407 -0.379170 -0.813554 -1.193370 2.237374 -3.273404 -2.420259 -1.819262 2.785950 -0.098213 -1.321329 -2.420052 0.832320 2.870679 0.029732 1.416327 -1.203505 -4.107757 -2.936817 -1.544674 2.116471 -0.591289 1.039347 -0.122517 -0.258380 -3.130707 0.744807 -2.766042 1.033609 -1.233735 -1.467360 -3.169045 0.380012 -0.547175 0.194765 -0.640000 -2.601994 2.028611 0.993987 2.116259 -0.804578 1.286806 0.687158 -3.955032 -3.897594 -0.464066 0.497289 3.870975 2.229177 1.148139 -0.700341 -0.923455 -2.821954 2.342929 -4.507739 0.922352 1.471069 -2.284489 2.037407 -2.980565 -1.810564 -2.453158 1.594698 -0.100470 -3.409998 4.290513 2.694828 -3.721262 -1.113147 -3.414075 2.178359 0.731552 5.097190 -1.636963 -0.061669 1.113455 1.249284 -1.048431 -1.739474 1.561789 0.024411 0.653871 -3.495785 -2.001717 1.977630 2.351136 -0.001616 -0.068123 -0.248589 0.094032 -0.615399 3.944892 0.872034 0.435446 -2.402035 -6.099030 0.622158 0.918849 -0.191484 1.056446 -2.341663 -1.389442 -0.830116 -0.490218 3.157089 1.049319 0.833260 2.484004 -3.651117 -3.181642 -1.470300 0.841099 -0.019384 -1.686356 1.786689 -2.411124 -0.401480 -0.938476 1.805737 -1.068049 -1.023939 -2.959332 0.386792 1.458456 0.540734 -1.567534 3.254257 0.992234 -1.005105 -0.427633 -0.402345 -0.182564 1.234183 -2.470421 -1.427108 -1.290413 0.745836 -2.070244 2.301659 0.258490 1.567308 1.051416 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.306892 -0.510818 -0.109653 0.750188 0.155972 0.181053 0.077647 -0.086486 0.090497 -0.994489 -0.247566 0.071220 0.093892 0.224021 0.139664 0.395743 0.268381 -0.022726 -0.491689 0.042848 0.143116 -0.136141 0.020530 0.142954 0.005821 -0.513676 0.598447 0.206499 0.096674 0.574516 -0.238344 0.439403 0.550707 -0.036169 0.343514 0.442856 0.264214 -0.051480 -0.558441 -0.001889 0.875683 0.126343 -0.078514 0.106607 -0.115941 0.698971 0.334872 0.712948 0.225810 -0.319976 0.430583 -0.372272 -0.180334 -0.097314 -0.747198 0.162364 0.167802 0.286162 -0.361807 0.211904 -0.388453 0.187843 0.184201 0.251878 0.755432 -0.015662 0.658187 0.555042 0.498685 -0.613264 -0.008732 0.393195 0.105551 0.190453 0.562105 -0.352169 -0.352552 -0.583477 0.000298 -0.050342 -0.141983 -0.058123 0.545640 -0.454017 -0.256403 0.248053 -0.146766 0.614678 -0.338191 0.255384 -0.758161 0.002340 0.302037 0.510635 0.123365 -0.017825 -0.030300 0.235173 -0.026467 0.278870 0.367336 -0.629588 -0.208498 -0.651533 -0.462533 -0.431980 0.273002 0.182144 -0.670851 0.079098 0.041804 0.442924 -0.744305 0.151775 0.183572 0.362971 1.020449 -0.093314 0.040956 -0.054173 0.322514 0.278905 0.405382 -0.372107 0.302623 -0.361190 0.464995 0.153997 0.283815 -0.001726 -0.417325 -0.225096 0.180766 0.095755 0.044526 0.228796 0.380193 -0.435005 0.392020 -0.288215 0.581852 -0.618373 -0.146715 -0.338581 -0.490009 -0.282890 1.412642 0.363064 0.691348 0.076205 -0.607168 0.027673 -0.687824 -1.083348 -0.153202 0.138205 -0.050394 0.449142 -0.133086 0.385103 -0.386384 0.259515 0.220798 -0.313238 -0.316560 0.135900 -0.627538 0.071374 -0.199853 -0.353926 0.053290 0.102843 0.113293 0.793242 -0.101624 -1.095369 -0.815995 -0.439064 0.503641 -0.342764 0.127806 -0.170989 -0.283015 -0.658944 0.150092 -0.516619 0.190962 -0.017336 -0.523600 -0.718663 0.290382 -0.218273 0.024424 0.307823 -0.470994 0.103927 -0.092775 0.023773 0.169475 0.153553 -0.056981 -0.611838 -0.527986 0.111884 -0.368007 0.871099 -0.064791 -0.154939 -0.092562 -0.417166 -0.414004 0.430612 -0.494484 0.266086 0.135939 -0.318485 0.183915 -0.451297 -0.005683 -0.425030 0.329229 0.229156 -0.496737 0.659916 0.707889 -0.447914 -0.158318 -0.067739 0.286197 0.104690 0.531463 -0.283929 -0.199042 0.120133 0.271233 0.002075 -0.106717 0.175671 -0.170437 -0.205166 -0.623151 -0.405034 0.333472 0.363571 -0.061212 -0.136569 0.407265 -0.061618 -0.163218 0.639657 0.350142 0.210082 -0.493704 -1.127603 0.280690 0.186998 -0.205854 0.204723 -0.567662 -0.056162 0.191193 -0.266587 0.552931 0.363663 -0.070161 0.644710 -0.674895 -0.579811 -0.428942 -0.341987 -0.050278 -0.124161 0.233767 -0.350502 0.113107 -0.178789 0.055375 -0.373742 -0.124650 0.230187 0.209912 0.445244 0.106075 0.146111 0.597380 0.258516 -0.148932 -0.209592 0.268725 -0.327164 0.326194 -0.602470 -0.261628 0.088317 0.238721 -0.344544 -0.022468 -0.172187 0.033546 0.037559 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.232029 -0.187356 -0.033815 0.399513 0.078139 -0.286682 0.133092 0.147096 -0.067585 -0.603679 -0.234649 -0.074472 0.014972 -0.236490 0.168574 0.101627 0.143361 0.209207 -0.634461 0.245550 0.159724 0.011707 -0.240312 -0.110325 -0.031788 -0.262753 -0.171131 0.339923 -0.042133 0.432617 -0.258292 0.104182 0.346994 0.021343 0.314812 0.458111 0.175025 -0.031435 0.151645 0.243487 0.729138 0.172602 -0.111129 0.035847 0.279473 0.526097 0.011638 0.383958 -0.111614 -0.172508 0.294535 -0.280453 -0.127895 -0.040009 -0.537693 0.117390 0.455448 0.341934 -0.424248 0.353884 -0.355625 0.092599 0.215162 0.059674 0.648776 0.195335 0.207113 0.322939 0.627004 -0.242911 0.017986 0.103240 0.317365 -0.122260 0.116125 -0.077755 -0.136831 -1.011845 0.017776 -0.550829 0.000544 0.084947 0.475054 -0.399815 0.104505 0.428805 0.066893 0.416627 -0.385952 -0.122850 -0.509572 -0.005486 0.012374 0.647606 0.053314 0.056230 0.005504 0.283035 0.082349 0.261160 -0.067676 -0.451594 -0.473958 -1.045989 -0.495410 -0.213609 -0.164539 -0.157335 -0.605323 -0.169071 0.597151 0.333706 -0.673290 0.067801 0.199179 0.101411 0.003110 -0.174719 -0.334700 0.048680 -0.136170 0.177889 0.237967 -0.182662 0.015189 -0.429671 0.200068 0.152417 0.175358 -0.056479 -0.317815 -0.006482 0.156041 -0.056205 -0.134087 0.049954 -0.004167 -0.317234 0.224967 -0.415263 0.465691 -0.567442 0.087468 -0.342308 -0.397577 -0.063913 0.656207 0.318225 0.188730 0.092945 -0.370431 0.044706 -0.584721 -0.942520 0.152815 -0.110644 0.208302 -0.091236 -0.099758 -0.069637 -0.123086 -0.079145 0.173703 -0.357171 -0.134357 -0.130208 0.254923 0.045062 -0.211481 -0.322874 0.032533 0.500343 0.072573 0.202138 -0.318050 -0.292955 -0.455545 -0.337164 0.374303 -0.106893 0.033894 -0.093738 -0.080984 -0.596370 0.326380 -0.329621 0.120693 -0.247773 -0.180154 -0.513321 0.039313 -0.148376 -0.010148 -0.048921 -0.342303 0.116588 0.027509 0.011336 0.038617 0.059178 0.098259 -0.440065 -0.510840 -0.021446 0.040473 0.464980 0.271831 0.163561 -0.164032 -0.109290 -0.396626 0.434312 -0.385215 0.118657 0.187809 -0.480861 0.503905 -0.269520 -0.279799 -0.258870 0.276108 0.064453 -0.321056 0.694311 0.495831 -0.492980 -0.178614 -0.318329 0.182108 0.244291 0.625988 -0.227772 -0.015934 0.189243 0.036012 -0.071187 -0.164965 0.230542 -0.102675 0.277377 -0.505832 -0.270217 0.305153 0.435188 -0.022170 0.103203 -0.056146 0.072928 -0.155501 0.539342 0.086735 0.087470 -0.302006 -0.681054 0.209901 0.033926 0.083538 0.148231 -0.264666 -0.181013 -0.062244 0.042468 0.510224 0.465690 -0.135395 0.421064 -0.462589 -0.538460 -0.278977 0.071720 0.059051 -0.336929 0.289194 -0.285284 0.046995 -0.089138 0.270203 0.066174 -0.175645 -0.422536 0.062376 0.206873 0.163659 -0.335096 0.513676 -0.026384 -0.223751 -0.117369 0.005447 0.037083 0.275087 -0.150279 -0.270736 -0.228211 0.269286 -0.281156 0.417187 -0.116494 0.207298 0.289912 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.521836 -1.015298 0.132430 0.687429 0.399963 -0.091511 0.103852 0.001814 0.305775 -0.930234 -0.173036 0.163054 -0.082887 -0.118418 0.203999 0.184622 0.479288 -0.140709 -0.848152 0.263869 -0.063777 -0.146804 -0.249637 0.073298 0.052752 -0.552600 0.655719 0.545809 -0.013443 0.454975 -0.411351 0.167872 0.434742 -0.019711 0.550111 0.529024 0.397025 -0.123118 -0.342619 0.212158 1.218797 0.132693 -0.106766 0.313527 0.446283 0.718240 0.286050 1.244260 1.028580 -0.169366 0.731786 -0.354039 -0.195400 -0.147291 -1.086563 0.247940 0.575844 0.111463 -0.695282 0.317671 -0.236565 0.197409 0.194317 0.352552 0.929049 0.081970 0.667387 0.372573 0.839226 -0.481212 -0.156079 0.452140 0.784192 0.458693 0.528104 -0.615842 -0.397305 -1.211947 0.088335 0.016734 0.090006 -0.301107 0.100740 -0.390528 -0.156300 0.447837 -0.259953 0.549543 -0.390967 0.032465 -0.844615 0.139781 0.445172 0.885099 -0.099432 0.121292 0.136209 0.282001 -0.041584 0.520020 0.450035 -0.769705 -0.301632 -1.345109 -0.756840 -0.423178 0.022013 -0.308426 -0.806449 0.198726 0.216156 0.047867 -0.623949 0.018278 0.174578 0.142931 0.795481 -0.359016 0.072612 -0.287666 0.199531 0.433483 0.198641 -0.301896 0.121120 -0.767843 0.610486 0.375417 0.336196 -0.199919 -0.022548 -0.030122 0.161039 0.550526 -0.176839 -0.074085 0.066871 -0.716204 0.364337 -0.301960 0.608810 -0.721730 -0.277132 -0.631685 -0.123051 -0.149310 1.573341 0.017360 0.842836 0.368139 -0.650805 0.006051 -0.715180 -1.467991 -0.068617 -0.185974 0.003249 0.197970 -0.105163 0.150167 -0.183904 -0.227111 0.118977 -0.492691 -0.284553 -0.223342 -0.919897 -0.065439 -0.152173 -0.363779 0.191899 0.698539 0.125577 0.525543 -0.243860 -1.426488 -0.519707 -0.546234 0.424798 -0.273171 0.165747 0.035081 -0.191208 -0.911854 0.382142 -0.462052 0.109464 -0.371218 -0.657531 -0.655125 0.149235 -0.333778 0.560062 0.113214 -0.641845 0.224040 -0.499214 0.485811 0.179815 0.272483 -0.087828 -1.102796 -0.929814 -0.153009 0.027805 1.170218 -0.301229 -0.011999 0.132038 -0.373666 -0.490368 0.433712 -1.092511 0.130143 0.484359 -0.770986 0.375856 -0.293652 -0.252034 -0.462046 0.407210 0.173725 -0.070490 1.149815 0.795197 -0.799361 -0.432686 -0.374232 0.290431 0.165821 0.948557 -0.374151 -0.054428 0.225163 0.409850 -0.107639 -0.250366 0.379830 0.073516 0.212806 -0.919166 -0.725736 0.261359 0.640703 -0.075521 -0.179969 0.152063 0.106821 -0.493846 0.970365 0.063270 0.491779 -0.500530 -1.427244 0.179106 0.530182 -0.086151 0.533827 -0.909391 -0.270436 -0.041844 0.109848 0.751608 0.565685 0.340232 0.643022 -0.636570 -0.663183 -0.344560 -0.431565 -0.071642 -0.285448 0.493072 -0.539160 -0.106062 -0.421152 0.276084 -0.394154 0.077295 -0.082730 0.130519 0.111996 0.249856 -0.154861 0.602965 0.202964 -0.303930 -0.181409 0.154967 -0.158605 0.596177 -0.258806 -0.294847 -0.295089 0.183288 -0.287948 0.314973 -0.115418 0.484937 -0.072240 -PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.656492 -0.756348 -0.104040 0.795609 0.430172 -0.169325 0.091090 0.019321 0.152375 -1.099910 -0.408354 0.372166 -0.009497 -0.219883 0.240081 0.316588 0.511520 -0.061485 -0.754333 0.320997 -0.053635 -0.258491 -0.524761 0.113435 -0.012545 -0.612580 0.427561 0.522615 -0.045362 0.560281 -0.420422 0.316134 0.514821 -0.043477 0.622759 0.609793 0.251801 -0.165214 -0.189730 0.149218 1.387698 0.132846 0.026565 0.378650 0.496258 0.825607 -0.018798 1.502494 0.679042 -0.188100 0.913876 -0.256784 -0.221971 0.007873 -1.222377 0.316853 0.591603 -0.041060 -0.757092 0.370859 -0.381300 0.247042 0.251768 0.298396 1.136260 0.298693 0.684692 0.529902 0.995483 -0.480249 -0.118852 0.524269 0.779018 0.392750 0.495233 -0.470859 -0.342837 -0.839601 0.079365 -0.102721 0.177191 -0.347227 0.765048 -0.502238 -0.278116 0.436491 -0.036417 0.715542 -0.512919 0.063179 -0.924719 0.139172 0.216632 0.948445 -0.042981 0.271313 -0.067097 0.259247 -0.128269 0.542756 0.119744 -0.836662 -0.527785 -1.522788 -0.978886 -0.441684 -0.023379 -0.309080 -1.063898 0.125828 0.304589 0.353636 -0.823940 0.001388 0.188064 0.100299 0.848703 0.204828 -0.367554 -0.335466 0.199470 0.457160 0.171226 -0.078082 0.122197 -0.984777 0.550210 0.271915 0.388752 -0.169185 -0.476379 0.008662 0.190171 0.295283 -0.162650 -0.016681 0.156822 -0.767945 0.422735 -0.262426 0.620680 -1.003522 -0.392004 -0.824734 -0.532681 -0.152849 1.575616 0.416648 1.098933 0.398301 -0.565986 -0.098764 -1.039491 -1.568395 -0.106092 -0.355390 0.056713 0.109099 -0.087861 0.126267 -0.259507 -0.174589 0.310001 -0.620504 -0.332303 -0.342639 -0.206092 -0.081700 -0.224430 -0.504799 0.044851 0.602734 0.072244 0.577440 -0.275664 -1.470982 -0.769136 -0.589880 0.504617 -0.306916 0.246062 -0.039572 -0.171715 -0.978842 0.264436 -0.519950 0.069767 -0.417813 -0.605819 -0.770764 0.159726 -0.264650 0.199013 0.005331 -0.728133 0.302352 -0.035433 0.425618 0.202283 0.323730 -0.204998 -1.071198 -1.009298 -0.069573 -0.001025 1.172306 0.253455 0.007250 0.027336 -0.418162 -0.786997 0.523921 -1.249764 0.186378 0.579984 -0.772548 0.469345 -0.535613 -0.373752 -0.516508 0.433743 0.056411 -0.670430 1.163095 0.825619 -0.930348 -0.427588 -0.570205 0.410207 0.180589 1.081861 -0.357571 0.060040 0.253841 0.412737 -0.137844 -0.205336 0.450634 -0.007565 0.294402 -1.023747 -0.727765 0.472376 0.742598 -0.106738 -0.192249 0.034961 0.105064 -0.165207 1.024423 0.192862 0.329157 -0.563287 -1.743168 0.157641 0.205433 -0.231898 0.531674 -0.811918 -0.346423 -0.116873 -0.216292 0.893489 0.144105 0.283077 0.729993 -0.748842 -0.813134 -0.387222 -0.284239 -0.051410 -0.387344 0.579416 -0.600795 -0.127850 -0.393148 0.385800 -0.350718 -0.169542 -0.291141 0.150629 0.294632 0.250999 -0.185694 0.714740 0.264973 -0.287729 -0.232550 0.138581 -0.060054 0.598853 -0.675791 -0.398482 -0.355399 0.202231 -0.392391 0.446720 -0.060507 0.558553 0.116232 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = 0.210805 -0.153805 -0.034691 0.362004 0.084585 -0.273918 0.101343 0.124589 -0.078508 -0.551422 -0.200307 -0.117379 0.013114 -0.231876 0.166881 0.123986 0.152059 0.207358 -0.592388 0.244448 0.154898 0.009236 -0.226390 -0.108730 -0.019067 -0.248503 -0.170015 0.286800 -0.042401 0.393143 -0.272634 0.121759 0.315053 0.026373 0.339905 0.406280 0.135383 -0.055428 0.164578 0.239837 0.693600 0.153118 -0.096300 0.002864 0.274122 0.483523 0.008012 0.293123 -0.136978 -0.147320 0.239139 -0.249640 -0.092695 0.002878 -0.520636 0.114735 0.398118 0.316998 -0.413316 0.313864 -0.328573 0.106666 0.205063 0.055905 0.634046 0.143673 0.193138 0.311079 0.578990 -0.191720 0.047864 0.058513 0.297483 -0.140863 0.118916 -0.040495 -0.089660 -0.976301 0.009577 -0.527390 0.058408 0.097696 0.422096 -0.369805 0.122577 0.408660 0.077373 0.408169 -0.361388 -0.131283 -0.485580 0.001197 0.000000 0.580926 0.044792 0.050628 -0.005252 0.287395 0.048750 0.214297 -0.064244 -0.430833 -0.422164 -0.981513 -0.484150 -0.198177 -0.163402 -0.167722 -0.572280 -0.133999 0.581084 0.342064 -0.632996 0.084139 0.146895 0.072115 -0.052757 -0.222570 -0.304582 0.032529 -0.175952 0.198286 0.179012 -0.156160 0.015010 -0.428734 0.179877 0.156399 0.196643 -0.056483 -0.259665 0.017348 0.149823 -0.066630 -0.151835 0.071430 0.008477 -0.305046 0.209554 -0.391120 0.428300 -0.500575 0.099840 -0.347940 -0.368172 -0.056394 0.575780 0.292049 0.126480 0.109775 -0.337893 0.061856 -0.567280 -0.858294 0.142061 -0.124065 0.176980 -0.075978 -0.092344 -0.077927 -0.109427 -0.082406 0.177057 -0.363537 -0.144919 -0.153290 0.240097 0.044691 -0.206917 -0.292593 0.023751 0.509955 0.058363 0.173461 -0.309218 -0.189288 -0.434636 -0.312639 0.342531 -0.106306 0.059267 -0.094096 -0.047952 -0.551823 0.328745 -0.313473 0.109664 -0.259835 -0.122619 -0.470150 0.013597 -0.142549 -0.017346 -0.073045 -0.316635 0.148247 0.019879 -0.028772 0.013393 0.039468 0.092679 -0.395955 -0.474054 -0.005942 0.054508 0.400083 0.250189 0.146574 -0.169217 -0.106986 -0.349590 0.408042 -0.338298 0.119870 0.201714 -0.470973 0.447886 -0.259357 -0.270990 -0.209084 0.257927 0.023740 -0.274489 0.643794 0.451344 -0.489729 -0.152398 -0.341512 0.221070 0.199788 0.587877 -0.186658 0.035413 0.162611 0.040995 -0.071243 -0.165354 0.217519 -0.094559 0.267667 -0.483742 -0.252987 0.301854 0.403994 -0.022058 0.094138 -0.066401 0.060489 -0.153915 0.505169 0.080415 0.113630 -0.287023 -0.577531 0.156040 0.008372 0.118297 0.129579 -0.206775 -0.154821 -0.101654 0.047479 0.485776 0.450867 -0.123066 0.387032 -0.437929 -0.504096 -0.257423 0.080044 0.041654 -0.325949 0.267981 -0.280183 0.014248 -0.104387 0.300744 0.062391 -0.165678 -0.402713 0.069908 0.186112 0.170611 -0.343265 0.467732 -0.007420 -0.202789 -0.105133 0.011148 0.040904 0.266100 -0.120894 -0.275773 -0.211494 0.239641 -0.278662 0.398744 -0.123554 0.230079 0.255035 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.143802 -0.594147 0.302523 0.314770 0.313670 0.018226 0.064429 -0.042946 0.119314 -0.506652 -0.079009 -0.169595 -0.131775 -0.006317 0.169690 0.003061 0.269525 -0.083208 -0.449781 0.096674 0.011773 -0.032448 0.111593 0.031304 0.082199 -0.312333 0.355780 0.348148 0.016930 0.214629 -0.265709 0.047681 0.209269 0.108723 0.273973 0.255609 0.317623 -0.100146 -0.217717 0.134611 0.654429 -0.049754 -0.062074 0.134320 0.259190 0.354471 0.233483 0.450442 0.707618 -0.084504 0.334302 -0.386714 -0.053953 -0.112939 -0.569478 0.148478 0.265523 0.153959 -0.355336 0.125583 -0.095339 0.089261 0.033882 0.051064 0.411856 -0.062386 0.309858 0.112144 0.396433 -0.297936 -0.177581 0.285849 0.423009 0.306615 0.138441 -0.310996 -0.094495 -1.008205 0.000000 0.022493 -0.000853 -0.154420 -0.179615 -0.115907 -0.076279 0.336490 -0.319166 0.218397 -0.104618 0.013282 -0.477359 0.117918 0.385180 0.276698 -0.025441 -0.074367 0.163413 0.104098 0.037385 0.356090 0.325960 -0.321738 -0.218573 -0.750933 -0.364837 -0.181737 0.105735 -0.222397 -0.357671 0.153281 0.216050 -0.015727 -0.222329 -0.026513 0.117799 0.185947 0.125328 -0.483274 0.136240 -0.221433 0.155005 0.249646 0.128413 -0.225722 0.061117 -0.431235 0.340510 0.157406 0.216764 -0.201061 0.318058 -0.135914 0.028039 0.381235 -0.101316 -0.149661 -0.008893 -0.287138 0.188136 -0.124397 0.334509 -0.243432 -0.003758 -0.300681 0.109697 -0.067543 0.981172 -0.094160 0.328808 0.286708 -0.422545 0.026075 -0.186279 -0.701992 -0.028756 -0.043582 0.077178 0.168210 -0.073496 0.142688 -0.033372 -0.186790 -0.040438 -0.222793 -0.133758 -0.094727 -0.892763 -0.072520 -0.050773 -0.268866 0.211066 0.506932 -0.063214 0.194987 -0.146916 -0.531385 -0.117378 -0.387505 0.183768 -0.163097 0.075128 0.042928 -0.035815 -0.469733 0.319027 -0.232964 0.026239 -0.156067 -0.490946 -0.314415 0.060349 -0.238154 0.348248 0.162918 -0.303463 0.094675 -0.453203 0.255911 0.134940 0.116543 -0.067078 -0.575492 -0.517226 -0.222576 0.043274 0.514157 -0.344325 -0.006107 -0.019043 -0.245668 -0.109850 0.267614 -0.451260 0.013146 0.208284 -0.423160 0.153524 -0.057783 -0.061037 -0.171689 0.203728 0.176038 0.003533 0.530292 0.401650 -0.397742 -0.323774 -0.249627 0.081111 0.098018 0.539903 -0.163656 0.044882 0.104815 0.265833 -0.052022 -0.196057 0.218830 0.093330 0.098084 -0.508345 -0.496531 0.021167 0.371169 -0.032483 -0.038538 0.207514 0.258964 -0.341183 0.531024 -0.023828 0.278644 -0.186482 -0.612208 0.101350 0.612211 0.059789 0.377337 -0.545859 -0.145705 -0.027552 0.166426 0.396337 0.503273 0.261825 0.347397 -0.145431 -0.267226 -0.103389 -0.281840 -0.051049 -0.205368 0.269758 -0.280821 -0.101026 -0.235487 0.048259 -0.169262 0.145372 -0.103910 0.000190 0.021330 0.209351 0.017557 0.277385 0.119257 -0.235570 -0.057178 0.123194 -0.042590 0.358034 0.028026 -0.165710 -0.149898 0.013850 -0.071403 0.102877 -0.113273 0.181637 -0.097608 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 1.088900 0.078284 -0.386660 1.366611 0.172665 -0.772368 0.200365 0.535902 -0.461349 -1.321062 -0.532236 1.124310 -0.017032 -0.481402 0.142814 0.243241 0.361765 0.227353 -1.893759 0.555097 -0.155379 -0.285555 -1.028542 -0.792799 -0.028897 0.094383 0.370035 0.942086 -0.076606 0.996435 -0.757489 0.372261 0.453237 0.401815 1.100645 0.425824 -0.082551 -0.207961 -0.337082 -0.430460 1.629703 0.702094 -0.354987 0.566071 0.636221 1.174141 0.221936 0.751552 -0.343897 0.082538 0.337043 0.384787 -0.528798 -0.029378 -1.393194 0.084056 0.914600 0.341218 -0.585122 0.699162 -0.745143 0.438211 0.599188 0.345703 1.843740 0.437181 0.827637 0.972241 1.351546 -0.800561 0.225050 0.009393 1.332095 -0.118992 0.020138 -0.272796 -0.717136 -1.399323 0.009673 -1.982935 0.208913 -0.028400 1.694852 -0.771505 0.203540 0.193573 0.340886 0.866004 -1.448388 0.063489 -1.133652 -0.065847 -0.634059 1.945250 -0.028320 0.485771 0.049432 0.552233 0.215106 0.617538 -0.369982 -1.083380 0.059773 -2.290843 -0.833825 -0.063801 -0.694914 -0.534381 -0.969162 -0.103268 0.960509 1.361357 -1.410252 -0.643795 0.050877 -0.221235 0.273061 0.047642 -0.702616 0.360146 -0.587903 0.696150 0.743602 -0.410864 0.241932 -0.408937 -0.173455 0.363674 0.917704 0.723290 -1.714668 0.009931 0.681676 -0.457467 -0.285870 0.052233 -0.302599 -0.440929 0.359244 -0.916006 1.157607 -1.359114 -0.104120 -0.921740 -0.934587 0.105346 0.564460 1.140731 0.586402 0.575358 0.145354 0.229087 -1.401310 -2.184372 0.703671 0.134273 -0.124331 -0.504444 -0.025824 0.005850 -0.762977 -0.551452 1.309319 -1.102922 -0.971292 -0.863021 1.414116 0.243325 -0.583459 -0.404418 0.332902 0.818014 0.471659 0.811227 -0.798435 -1.810409 -1.475043 -0.576656 0.956244 -0.398216 -0.382883 0.029177 -0.108828 -1.008017 0.453226 -0.852958 0.749721 -0.346750 -0.347502 -1.260250 0.147494 -0.174454 -0.096975 -0.198041 -0.739775 0.426176 0.543510 0.181558 -0.375366 0.633926 0.606698 -0.838492 -1.222990 0.166240 0.403274 1.201369 0.858702 0.398546 -0.841988 -0.313214 -1.155288 1.188754 -1.008113 0.619682 0.200628 -0.716648 0.993058 -0.853080 -0.576265 -0.304770 0.746101 0.216119 -1.314083 1.832810 1.356207 -1.363195 -0.465118 -1.145155 0.751006 0.286700 1.808263 -1.124508 -0.387370 0.402235 0.430035 -0.340753 -0.299527 0.553608 0.075909 0.028432 -1.234255 -0.738817 0.788506 0.608239 0.177126 -0.008911 -0.243215 -0.357895 -0.318873 1.602017 0.388500 0.372139 -0.967732 -1.956826 0.219265 -0.311605 0.096517 0.328792 -0.543329 -0.920876 -0.383743 -0.471794 1.178490 0.076272 -1.000919 0.964780 -1.295927 -1.031211 -1.069827 0.289312 0.065705 -0.841786 0.889238 -0.768502 -0.121991 -0.106949 0.666347 -0.240601 -0.214402 -0.611741 0.014629 0.562016 0.306546 -0.839419 1.197908 0.326283 -0.557933 -0.337399 0.040663 -0.351702 0.505482 -1.342702 -0.498881 -0.439177 0.719104 -0.807199 0.789301 0.541142 0.630913 0.388081 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.453508 -0.447648 -0.124262 0.820693 0.229471 0.017994 0.073245 0.057008 0.005416 -1.219819 -0.560528 0.252155 0.026272 0.038417 0.241176 0.259951 0.426394 -0.009363 -1.047261 0.139331 0.188966 -0.186456 -0.198206 0.163681 0.023993 -0.479609 0.161060 0.371121 0.060561 0.690281 -0.421802 0.484259 0.546318 -0.016224 0.478562 0.480285 0.014768 -0.180970 -0.196163 -0.004238 1.169545 0.086941 -0.073601 0.259326 0.203916 0.857058 -0.124200 1.139371 0.530210 -0.263120 0.746009 -0.298826 -0.210616 0.082555 -0.922658 0.230869 0.549366 0.253823 -0.497391 0.274769 -0.455858 0.234502 0.187709 0.061332 1.010959 0.361015 0.617627 0.601274 0.747058 -0.549432 -0.001248 0.282610 0.400478 0.258980 0.206573 -0.367667 -0.192221 -1.019466 -0.023818 -0.553453 -0.001407 -0.240036 0.907664 -0.567582 -0.201313 0.302625 -0.031267 0.732567 -0.446328 0.236792 -0.907620 0.038770 0.182235 0.678601 0.011274 0.075835 -0.096033 0.228534 -0.083826 0.399883 0.072025 -0.721951 -0.621669 -1.344525 -0.842801 -0.393930 0.101816 -0.009242 -1.034473 0.157879 0.436947 0.422814 -0.917478 -0.053090 0.123204 0.307487 0.463708 0.421049 -0.534561 -0.270059 0.137647 0.413258 0.389747 -0.143526 0.219165 -0.913222 0.246591 0.177040 0.397818 -0.031052 -0.551333 -0.170522 0.182996 0.044372 -0.063987 0.103977 0.288484 -0.346345 0.450081 -0.315178 0.661480 -0.932539 -0.270661 -0.669928 -0.471897 -0.193097 1.369646 0.748175 0.742496 0.345419 -0.531780 -0.045138 -0.967071 -1.160411 -0.120755 -0.155028 0.168578 0.173869 -0.143005 0.301961 -0.337474 0.001615 0.211524 -0.529032 -0.377620 -0.261467 -0.045172 -0.006133 -0.218982 -0.542483 0.034149 0.410057 -0.237418 0.634614 -0.290829 -0.983966 -0.950677 -0.570771 0.599689 -0.376170 0.206798 -0.161564 -0.046532 -0.795959 0.211070 -0.533186 -0.073700 -0.211404 -0.628289 -0.857810 0.261564 -0.216207 -0.117602 0.199849 -0.676666 0.221417 0.218660 0.477950 0.249657 0.222735 -0.166181 -0.879776 -0.813353 -0.111142 -0.274756 0.937674 0.374621 -0.133634 -0.264901 -0.467898 -0.723921 0.662876 -0.824641 0.318194 0.261453 -0.553391 0.363540 -0.569901 -0.231494 -0.469854 0.376249 0.185345 -1.070694 1.020930 0.686765 -0.741893 -0.254279 -0.624777 0.436508 0.126868 0.839219 -0.389772 -0.050829 0.144248 0.298312 -0.068668 -0.261592 0.408738 -0.110787 0.016072 -0.863764 -0.531771 0.537454 0.542280 -0.045348 -0.049927 0.292084 0.131677 0.067387 0.838736 0.341938 0.072974 -0.404561 -1.547497 0.267033 0.420110 -0.131223 0.384263 -0.766096 -0.311177 -0.086289 -0.225213 0.788131 0.143803 0.098143 0.743239 -0.655714 -0.671749 -0.488936 -0.196647 -0.031349 -0.319712 0.441789 -0.467765 -0.053733 -0.117679 0.256376 -0.192220 -0.289025 -0.394320 0.206745 0.468712 0.223471 -0.021172 0.699291 0.296889 -0.389341 -0.221305 0.147510 -0.188419 0.321728 -0.633127 -0.255741 -0.084639 0.216808 -0.471750 0.204631 -0.027576 0.253173 0.079621 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.744561 -0.452828 0.023887 1.648144 0.336641 0.574945 0.210957 0.179839 -0.125210 -2.470773 -1.129706 0.781242 -0.002823 0.562453 0.122770 0.259724 1.015416 -0.193869 -2.615783 -0.272011 0.483217 -0.332246 0.097369 0.372165 0.090307 -0.660203 0.434489 0.669845 0.232803 1.430765 -0.733727 1.115838 0.912191 0.129200 0.851724 0.617077 -0.351053 -0.522422 -0.726706 -0.658768 1.950937 0.069438 -0.347864 0.599005 0.050152 1.726205 -0.197019 1.671889 1.279679 -0.353841 0.962765 -0.216497 -0.492518 0.133279 -1.451364 0.144815 0.910701 0.805020 -0.456642 0.364077 -0.784379 0.458156 0.174428 0.046589 1.600858 0.737317 1.087854 1.249856 0.993767 -1.363123 0.100651 0.185344 0.406054 0.760417 -0.143546 -0.723439 -0.266870 -1.909951 -0.198693 -1.760147 -0.142086 -0.566727 1.875047 -0.908935 -0.360172 0.065179 -0.158450 1.188514 -0.681287 0.708819 -1.798626 -0.012986 0.318968 0.938367 -0.130932 -0.004900 -0.076952 0.281050 -0.120170 0.580790 0.259246 -1.321387 -0.780950 -2.147153 -1.185180 -0.796874 0.294644 0.254557 -1.564928 0.602835 0.673452 0.845531 -1.633668 -0.501501 -0.127764 0.787477 0.429782 1.227514 -0.946313 -0.570271 0.201862 0.738777 1.004396 -0.373968 0.595336 -1.406162 -0.202020 0.219639 0.882568 0.323080 -1.369355 -0.553160 0.411168 -0.236661 0.037558 0.244206 0.543863 0.098768 0.792897 -0.735712 1.391889 -1.505413 -0.522476 -1.097713 -0.583400 -0.422397 2.007059 1.807171 0.961436 0.785265 -0.594379 0.052274 -1.507813 -1.408263 -0.245315 0.059777 0.256524 0.415411 -0.347613 0.834720 -1.038730 0.004455 0.355856 -0.783179 -0.897317 -0.555217 -0.062950 0.091447 -0.362985 -0.805750 0.319931 0.482560 -0.773649 1.381614 -0.704274 -1.721210 -2.100045 -1.044008 1.245180 -0.911882 0.142272 -0.306406 0.025563 -0.900970 0.258697 -0.907218 -0.239114 -0.153959 -1.329278 -1.775150 0.888755 -0.433226 -0.581998 0.924657 -1.194324 0.365162 0.676801 1.220109 0.447235 0.344533 -0.317333 -1.457298 -1.155028 -0.314015 -0.741788 1.595328 0.661518 -0.556229 -0.898996 -1.075583 -1.258478 1.428765 -0.868875 0.930918 0.144494 -0.704221 0.265062 -1.087980 0.118876 -0.743735 0.688544 0.652314 -2.624894 1.910213 1.134965 -1.306181 -0.490306 -1.391514 0.896227 -0.138781 1.222461 -1.028628 -0.481042 0.218623 0.517110 -0.065202 -0.634065 0.608094 0.042549 -0.511492 -1.669352 -0.907612 1.179080 0.595602 -0.102558 -0.089175 1.119839 0.099971 0.362011 1.578957 0.934960 0.117531 -0.574393 -2.754905 0.585787 1.157130 -0.053164 0.557009 -1.486130 -0.725411 -0.102772 -0.494808 1.305450 -0.060870 -0.234878 1.478681 -1.008667 -0.905124 -1.147926 -0.602336 0.073857 -0.473543 0.675059 -0.806341 -0.152493 -0.020391 0.321051 -0.331170 -0.512241 -0.505163 0.584601 1.076450 0.428772 0.239553 1.251533 0.658788 -0.816717 -0.376097 0.402613 -0.620021 0.300696 -1.354425 -0.073313 0.247205 0.476985 -1.006229 -0.086754 0.348987 0.244970 -0.118076 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.057316 -0.203531 0.040283 0.248332 0.137483 -0.040534 0.047918 -0.091354 -0.017003 -0.311164 -0.071950 0.050043 -0.041397 -0.056411 0.072079 0.041901 0.153619 0.046140 -0.052001 0.064746 -0.028663 -0.067338 -0.108584 0.042396 -0.023552 -0.186295 0.141964 0.205749 -0.010849 0.168449 -0.125678 0.074666 0.145377 0.044444 0.163649 0.191906 0.213737 -0.027224 -0.112372 0.076367 0.402747 -0.069589 0.045853 0.096188 0.155680 0.247301 0.081674 0.267636 0.266863 -0.051871 0.198658 -0.086439 -0.001442 -0.054935 -0.370575 0.074545 0.059498 0.029089 -0.228027 0.126898 -0.120720 0.062265 0.052015 0.050244 0.301451 0.018171 0.138529 0.141413 0.266268 -0.173435 -0.081152 0.172469 0.240904 0.125757 0.106405 -0.006455 -0.079244 -0.369530 -0.059536 0.023139 0.032340 -0.027504 0.163026 -0.116505 -0.111463 0.180785 -0.099499 0.157306 -0.111539 -0.011835 -0.302621 0.037265 0.127187 0.143826 0.089792 0.003916 -0.012766 0.053845 0.005932 0.187689 0.025339 -0.235388 -0.141127 -0.492900 -0.300910 -0.127491 -0.015765 -0.151141 -0.268573 -0.008015 0.185704 0.220917 -0.220179 -0.009389 0.080703 0.041652 0.081092 -0.156792 -0.054105 -0.050849 0.099424 0.122069 0.109609 -0.029340 0.031131 -0.223877 0.164477 0.011476 0.132198 -0.068676 0.016838 -0.068493 0.037680 0.137485 -0.057506 -0.074715 -0.008473 -0.157427 0.120076 -0.068797 0.209195 -0.206561 -0.017576 -0.199103 -0.128136 -0.041132 0.543419 0.088327 0.337303 0.089818 -0.226119 -0.010779 -0.232603 -0.510493 0.046329 -0.077899 0.024276 0.064764 -0.039790 0.039781 -0.069522 -0.070885 0.148789 -0.168699 -0.081149 -0.032379 -0.283791 -0.027996 -0.083060 -0.227186 0.058490 0.214933 0.054527 0.118284 -0.125536 -0.365545 -0.137890 -0.193265 0.134352 -0.092637 0.052574 0.032926 -0.096932 -0.266654 0.134710 -0.151541 0.017533 -0.116103 -0.207573 -0.228167 0.028402 -0.108363 0.013703 0.040250 -0.195707 0.079707 -0.101245 -0.017242 0.069721 0.077959 -0.041433 -0.226505 -0.264188 -0.051022 0.005951 0.230260 0.060062 0.068726 -0.092609 -0.129415 -0.192453 0.155203 -0.340251 0.036150 0.203482 -0.254239 0.143181 -0.130117 -0.085109 -0.035810 0.144993 0.074434 -0.272024 0.254762 0.295028 -0.270872 -0.168055 -0.112091 0.070538 0.077715 0.355248 -0.132979 0.070371 0.099472 0.136637 -0.024343 -0.061866 0.120305 0.032734 0.077185 -0.308942 -0.240780 0.096216 0.234646 -0.019049 -0.075971 0.037576 0.091699 -0.099479 0.300902 0.039053 0.145123 -0.128656 -0.395225 0.080727 0.099744 -0.026561 0.268234 -0.234736 -0.047364 -0.001189 -0.140688 0.246330 -0.017659 0.016327 0.232827 -0.143835 -0.217832 -0.076298 -0.142104 0.000908 -0.171139 0.285840 -0.177139 -0.047661 -0.146844 0.080492 -0.122296 0.059633 -0.048161 0.030366 0.040819 0.119187 -0.004430 0.210023 0.017509 -0.135088 -0.050342 0.045522 0.006167 0.197093 -0.246687 -0.144255 -0.117704 0.084586 -0.090998 0.125774 -0.103147 0.127207 0.073050 -PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.504857 -0.781913 -0.109048 0.753003 0.327436 -0.035882 0.074248 -0.087395 0.223149 -0.949403 -0.268281 0.384669 0.010631 -0.074070 0.164942 0.292433 0.400053 -0.098316 -0.580659 0.202185 -0.071182 -0.232838 -0.348321 0.139469 -0.012170 -0.545707 0.605485 0.433429 -0.019594 0.480848 -0.322226 0.309856 0.454226 -0.056717 0.435850 0.471664 0.280815 -0.102687 -0.383594 0.114814 1.106335 0.089231 -0.024884 0.322046 0.288020 0.697417 0.133517 1.294194 0.787790 -0.174775 0.744886 -0.118131 -0.183929 -0.074112 -1.015514 0.252617 0.437102 -0.046980 -0.563117 0.267689 -0.298458 0.208479 0.202872 0.325215 0.927825 0.193828 0.686782 0.462865 0.784560 -0.483657 -0.099129 0.459630 0.619835 0.388554 0.592963 -0.432563 -0.421412 -0.647803 0.038791 0.078263 0.081200 -0.296137 0.464808 -0.418741 -0.339684 0.302427 -0.068861 0.624808 -0.408148 0.164851 -0.786001 0.122132 0.282751 0.820913 0.020687 0.200751 -0.087324 0.211013 -0.100803 0.428914 0.280865 -0.721834 -0.286750 -1.175487 -0.797372 -0.423391 0.048658 -0.182735 -0.890845 0.187434 0.139895 0.272016 -0.684090 0.012757 0.162883 0.141120 0.990148 0.020614 -0.130707 -0.236936 0.293240 0.373641 0.189876 -0.143425 0.166524 -0.719291 0.540848 0.244765 0.306236 -0.126783 -0.321644 -0.038858 0.155464 0.376652 -0.057029 0.019619 0.205069 -0.654040 0.361950 -0.202623 0.531681 -0.805993 -0.362895 -0.608748 -0.357803 -0.171260 1.421895 0.262898 1.011384 0.265020 -0.557381 -0.081697 -0.844297 -1.405817 -0.141185 -0.203888 -0.060392 0.214586 -0.092752 0.192204 -0.263071 -0.053026 0.299206 -0.488468 -0.295658 -0.164952 -0.492627 -0.053911 -0.167818 -0.393850 0.032221 0.394626 0.142284 0.616456 -0.140012 -1.465434 -0.675018 -0.484451 0.432276 -0.291999 0.188375 -0.058277 -0.229619 -0.847228 0.200795 -0.423938 0.057630 -0.246511 -0.595267 -0.666508 0.169732 -0.227587 0.231117 0.088656 -0.661894 0.222141 -0.174684 0.326966 0.210725 0.280147 -0.173448 -0.924372 -0.822970 -0.034347 -0.104246 1.064672 0.033646 -0.034910 0.057963 -0.395226 -0.636595 0.401954 -1.121153 0.180576 0.459974 -0.616218 0.310930 -0.448178 -0.294503 -0.428447 0.363115 0.079640 -0.394655 1.014539 0.749414 -0.718936 -0.334711 -0.316323 0.335948 0.122671 0.861201 -0.393264 -0.035694 0.187094 0.411872 -0.095264 -0.122824 0.359397 -0.029309 0.106395 -0.818765 -0.604467 0.332193 0.597777 -0.094840 -0.226419 0.128748 0.002804 -0.228170 0.813579 0.192500 0.326327 -0.477442 -1.466297 0.149870 0.126589 -0.273958 0.495387 -0.806899 -0.223847 0.021921 -0.199130 0.724264 0.067685 0.230873 0.628169 -0.674170 -0.652696 -0.343269 -0.401546 -0.075445 -0.238882 0.534254 -0.492186 -0.091838 -0.334497 0.243303 -0.451620 -0.077295 0.018123 0.165235 0.237310 0.167362 -0.063914 0.593312 0.261918 -0.237251 -0.223973 0.123157 -0.199496 0.482552 -0.585676 -0.263053 -0.200611 0.185253 -0.321325 0.271244 -0.099613 0.398718 -0.004048 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.180246 -0.202078 -0.034510 0.334006 0.138512 -0.156097 0.046656 0.010382 -0.044611 -0.494767 -0.199841 -0.051779 -0.009726 -0.159827 0.170773 0.131102 0.202060 0.119883 -0.359645 0.187026 0.072603 -0.064914 -0.201611 0.013805 -0.012811 -0.253362 -0.060873 0.221853 -0.025391 0.302173 -0.241683 0.169632 0.258663 0.022419 0.305949 0.307856 0.105392 -0.084947 0.075789 0.163831 0.630335 0.016237 0.025530 0.053629 0.234313 0.398343 -0.039395 0.418175 0.127561 -0.107200 0.342923 -0.236685 -0.034050 0.056037 -0.525636 0.125072 0.233770 0.124956 -0.366142 0.208020 -0.253209 0.124013 0.138920 0.017417 0.564253 0.117373 0.200347 0.265940 0.456376 -0.162970 0.010443 0.120739 0.289816 0.006492 0.101952 -0.057507 -0.019865 -0.693321 -0.024762 -0.238195 0.110815 -0.012306 0.384287 -0.275018 -0.011637 0.304465 -0.002585 0.354863 -0.249954 -0.042322 -0.449620 0.034109 0.079537 0.314720 0.041236 0.039883 -0.043352 0.161274 -0.047376 0.197996 -0.059015 -0.370541 -0.373241 -0.812878 -0.496176 -0.167112 -0.072773 -0.173864 -0.531338 -0.021889 0.385243 0.276716 -0.474500 0.038415 0.084683 0.049392 -0.002728 -0.048069 -0.263590 -0.101647 -0.033618 0.246966 0.117001 -0.044896 0.042246 -0.508969 0.176476 0.106016 0.210480 -0.090660 -0.112114 -0.016265 0.094058 0.040782 -0.126504 0.024468 0.049553 -0.247154 0.196411 -0.196668 0.326132 -0.417100 -0.025562 -0.380915 -0.278564 -0.058173 0.695964 0.272132 0.308241 0.172832 -0.307695 0.017885 -0.496904 -0.687546 0.039223 -0.188838 0.121401 0.010553 -0.060100 -0.001987 -0.073893 -0.072027 0.140453 -0.327134 -0.153474 -0.157161 -0.028000 -0.002017 -0.157165 -0.313830 0.019874 0.403449 -0.034883 0.162550 -0.213550 -0.281072 -0.340497 -0.283150 0.260244 -0.127236 0.128625 -0.048023 -0.021742 -0.449953 0.218796 -0.266949 -0.001783 -0.218895 -0.185313 -0.382492 0.017277 -0.128585 -0.016020 -0.041232 -0.296108 0.167311 0.028040 0.067418 0.061070 0.093324 -0.037560 -0.373075 -0.436003 -0.050628 0.014866 0.358154 0.226242 0.079328 -0.141664 -0.162673 -0.315791 0.312838 -0.431739 0.095608 0.257360 -0.405513 0.285675 -0.253482 -0.201117 -0.147625 0.208559 0.014821 -0.449378 0.453281 0.370258 -0.451573 -0.155366 -0.353128 0.225209 0.120943 0.521805 -0.106922 0.134203 0.117613 0.136050 -0.057317 -0.150289 0.202311 -0.043798 0.177221 -0.451270 -0.281131 0.265956 0.350036 -0.024003 -0.020779 -0.018196 0.128529 -0.058621 0.439674 0.071685 0.108644 -0.220207 -0.627102 0.087225 0.167996 0.043025 0.249924 -0.266184 -0.104627 -0.111140 -0.094411 0.423991 0.190746 0.046195 0.342560 -0.304005 -0.399638 -0.186180 -0.001125 -0.004726 -0.262872 0.289069 -0.265792 -0.055025 -0.140486 0.247466 -0.029416 -0.098756 -0.323773 0.073292 0.153278 0.164999 -0.165297 0.354947 0.058353 -0.182125 -0.093049 0.041114 0.024283 0.250234 -0.231360 -0.245760 -0.165150 0.136310 -0.226184 0.276151 -0.121057 0.233765 0.142887 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.108121 -0.162604 -0.000785 0.313687 0.089768 -0.163011 0.086837 0.000000 -0.050004 -0.390403 -0.050777 0.033512 -0.004852 -0.125594 0.054047 0.081240 0.112179 0.128075 -0.276524 0.134875 0.039812 -0.007449 -0.172059 -0.085422 -0.028644 -0.201209 0.105867 0.257981 -0.030046 0.268032 -0.176859 0.051737 0.208509 0.035200 0.234970 0.283485 0.247821 0.000563 -0.068396 0.154288 0.496916 0.088166 -0.087365 0.046480 0.201648 0.348300 0.155715 0.141393 -0.026861 -0.090630 0.060184 -0.008144 -0.058688 -0.105614 -0.400670 0.076534 0.214730 0.203504 -0.294567 0.227782 -0.198165 0.057464 0.130431 0.146693 0.414061 0.016805 0.179113 0.216731 0.409975 -0.203140 -0.028605 0.110470 0.270411 -0.024896 0.211946 0.033419 -0.198726 -0.601175 -0.027900 -0.253711 0.004865 0.093818 0.211906 -0.229666 0.006010 0.274755 0.014471 0.245437 -0.249800 -0.099439 -0.357012 0.006771 0.020439 0.480574 0.107884 0.042252 -0.001533 0.216283 0.096104 0.195896 0.045518 -0.333763 -0.127354 -0.670764 -0.313124 -0.186080 -0.113173 -0.143242 -0.332796 -0.106929 0.371809 0.353489 -0.406557 0.063055 0.129510 0.047511 0.135292 -0.387456 -0.074189 0.109422 -0.056948 0.073538 0.150895 -0.134921 0.009270 -0.115895 0.198697 0.070997 0.138497 -0.018056 -0.180045 -0.010990 0.107075 0.025997 -0.087404 -0.001254 -0.025009 -0.274451 0.144566 -0.274859 0.319038 -0.304994 0.100478 -0.179348 -0.253704 -0.044244 0.391250 0.106004 0.178989 0.009035 -0.257863 0.031694 -0.359617 -0.749015 0.149419 -0.005796 0.026284 -0.001853 -0.073736 -0.033085 -0.135269 -0.073145 0.254770 -0.234361 -0.090177 -0.035500 0.017256 0.021134 -0.142051 -0.189794 0.036568 0.310575 0.207235 0.170243 -0.221809 -0.343525 -0.288268 -0.221394 0.226103 -0.084053 -0.005242 -0.023100 -0.147410 -0.396150 0.250895 -0.213178 0.160317 -0.176056 -0.119707 -0.329579 0.017485 -0.121716 0.001429 -0.013186 -0.243378 0.082015 -0.119285 -0.179576 0.011750 0.015605 0.097920 -0.262466 -0.310554 0.043202 0.037930 0.300602 0.079859 0.125484 -0.113529 -0.081245 -0.258654 0.249381 -0.281527 0.076791 0.174881 -0.335912 0.301081 -0.161971 -0.182278 -0.091046 0.208025 0.055725 -0.030456 0.503941 0.411593 -0.334900 -0.154149 -0.074985 0.104433 0.142182 0.436562 -0.246055 -0.033453 0.139125 0.050611 -0.041673 -0.052913 0.147385 -0.031818 0.168101 -0.361854 -0.217125 0.142635 0.300569 -0.022235 0.022060 -0.025899 -0.044842 -0.220832 0.382327 0.074107 0.197281 -0.231296 -0.341694 0.132232 -0.203997 0.027766 0.132600 -0.160108 -0.095920 0.003853 -0.018191 0.329552 0.197116 -0.189367 0.289489 -0.347715 -0.347710 -0.160571 -0.093227 0.033509 -0.234034 0.292195 -0.211589 0.011031 -0.134153 0.163091 -0.082026 -0.010735 -0.051570 0.042173 0.071784 0.126872 -0.205160 0.337168 -0.027672 -0.146120 -0.072651 0.022068 0.003942 0.225388 -0.182854 -0.189669 -0.167643 0.197460 -0.162375 0.255479 -0.112455 0.153349 0.179995 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.567399 -0.710741 -0.105088 0.792779 0.381458 -0.037366 0.060532 0.002273 0.129610 -1.148895 -0.467428 0.308595 -0.000618 -0.055131 0.274103 0.301936 0.512626 -0.077357 -0.774170 0.215542 -0.000883 -0.266618 -0.416369 0.191527 -0.000440 -0.607240 0.416541 0.467385 0.028517 0.588546 -0.417858 0.351249 0.540939 -0.066411 0.580862 0.568664 0.254019 -0.131762 -0.281084 0.089515 1.341477 0.110230 -0.008661 0.355785 0.385650 0.827186 -0.030518 1.411786 0.644409 -0.256299 0.874711 -0.327385 -0.198832 0.011314 -1.145184 0.313810 0.585055 0.044889 -0.730314 0.337738 -0.359637 0.245955 0.210428 0.224237 1.055407 0.252686 0.715410 0.531936 0.851073 -0.538680 -0.125666 0.505763 0.627495 0.394831 0.414952 -0.455287 -0.279598 -0.860141 0.090893 -0.133820 0.086321 -0.319653 0.740639 -0.518555 -0.289724 0.427415 -0.126437 0.695124 -0.469653 0.128614 -0.923925 0.083847 0.258686 0.842704 0.026547 0.161042 -0.011890 0.268985 -0.097706 0.539250 0.158720 -0.794318 -0.559173 -1.434878 -0.939524 -0.430456 0.108479 -0.167562 -0.980213 0.107852 0.325920 0.333279 -0.792054 0.036864 0.196102 0.194026 0.791086 0.213977 -0.382063 -0.313845 0.220762 0.402264 0.273395 -0.108486 0.184406 -0.905157 0.528379 0.229256 0.392431 -0.126157 -0.440153 -0.072048 0.180036 0.267547 -0.155797 -0.006941 0.221576 -0.668276 0.474821 -0.220829 0.619762 -0.965244 -0.329232 -0.739747 -0.502500 -0.188958 1.563264 0.464737 1.033543 0.374801 -0.612668 -0.085729 -0.991087 -1.484283 -0.111606 -0.190260 0.093516 0.188973 -0.120773 0.258907 -0.287772 -0.096959 0.257568 -0.568946 -0.341215 -0.253989 -0.245016 -0.071339 -0.219988 -0.520825 0.076434 0.506576 -0.039598 0.624593 -0.260319 -1.335398 -0.775480 -0.569872 0.523275 -0.338465 0.262732 -0.012577 -0.169788 -0.965253 0.233494 -0.557058 0.035356 -0.365262 -0.656411 -0.782660 0.200014 -0.262054 0.140219 0.116771 -0.734145 0.264570 -0.010144 0.418411 0.239944 0.279975 -0.163442 -1.018298 -0.949558 -0.077316 -0.151112 1.116118 0.238357 -0.085498 0.007389 -0.443087 -0.724989 0.525835 -1.117246 0.210853 0.456666 -0.701767 0.386946 -0.523655 -0.346754 -0.514036 0.412558 0.165148 -0.685719 1.089225 0.792369 -0.823222 -0.368411 -0.496810 0.380096 0.168897 0.983450 -0.359809 0.015111 0.207878 0.359818 -0.084869 -0.193187 0.442435 -0.009577 0.162701 -0.973449 -0.680301 0.458608 0.670141 -0.055428 -0.104601 0.181812 0.145083 -0.108110 0.987048 0.217993 0.255718 -0.503802 -1.671418 0.234812 0.271744 -0.254019 0.472165 -0.807529 -0.311797 -0.097344 -0.202240 0.815343 0.182188 0.271205 0.749067 -0.710230 -0.760840 -0.406008 -0.312581 -0.055701 -0.351224 0.512558 -0.543438 -0.061503 -0.345954 0.286505 -0.330327 -0.158462 -0.288981 0.141456 0.314099 0.218283 -0.047270 0.703187 0.262688 -0.344883 -0.209743 0.145528 -0.097534 0.561799 -0.674173 -0.384925 -0.263272 0.179683 -0.394259 0.274757 -0.078573 0.425779 0.109198 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.400569 -0.586598 0.091417 0.488357 0.316822 -0.046578 0.056355 0.040395 0.100595 -0.793532 -0.306097 0.078242 -0.076525 -0.071758 0.241123 0.158895 0.436210 -0.072396 -0.633547 0.175939 -0.006846 -0.135809 -0.248422 0.123503 0.048192 -0.429595 0.250193 0.365329 0.015536 0.382424 -0.355850 0.166388 0.346584 -0.013425 0.468680 0.404504 0.240076 -0.109804 -0.133590 0.118221 1.016807 0.054420 0.000110 0.274468 0.402467 0.571913 0.000831 0.963053 0.582365 -0.165805 0.631131 -0.402905 -0.134837 0.018661 -0.845000 0.224758 0.468491 0.089231 -0.580573 0.278136 -0.214924 0.188555 0.116797 0.115815 0.733180 0.136352 0.471235 0.296400 0.614892 -0.341963 -0.122483 0.352536 0.551972 0.335053 0.193980 -0.386788 -0.112913 -0.906326 0.064174 -0.118573 0.115044 -0.248182 0.389221 -0.324714 -0.119436 0.397830 -0.223870 0.413739 -0.292720 0.002858 -0.661276 0.097240 0.257019 0.551698 -0.047852 0.078296 0.086802 0.206593 -0.031115 0.421976 0.159842 -0.538255 -0.443261 -1.121027 -0.662193 -0.266572 0.067593 -0.228762 -0.637637 0.099745 0.297844 0.144940 -0.496634 0.019687 0.130794 0.128698 0.347323 -0.001039 -0.205348 -0.293234 0.100660 0.349383 0.162325 -0.125887 0.107381 -0.733464 0.373714 0.210059 0.324304 -0.151436 -0.114121 -0.059878 0.095089 0.273219 -0.203317 -0.068856 0.065808 -0.470794 0.345266 -0.186208 0.450321 -0.633272 -0.195265 -0.556562 -0.243650 -0.097364 1.219648 0.223429 0.655249 0.358852 -0.468206 -0.051290 -0.620578 -1.023245 -0.032317 -0.155051 0.141982 0.118179 -0.073336 0.131985 -0.152966 -0.201846 0.082900 -0.402139 -0.202458 -0.256239 -0.380730 -0.090302 -0.164024 -0.407449 0.156010 0.560472 -0.091986 0.314877 -0.240772 -0.851542 -0.426353 -0.434877 0.338455 -0.220684 0.211585 0.068700 -0.053286 -0.694882 0.263190 -0.396135 0.027243 -0.319325 -0.518780 -0.519727 0.105872 -0.233629 0.234008 0.072314 -0.479894 0.186049 -0.142702 0.386579 0.169994 0.206697 -0.086303 -0.791480 -0.744619 -0.161178 -0.032378 0.785072 0.038833 -0.052808 0.008703 -0.288462 -0.447164 0.391615 -0.771992 0.088147 0.340828 -0.562602 0.286714 -0.269503 -0.210677 -0.363788 0.293480 0.143911 -0.438157 0.783638 0.564072 -0.644529 -0.345233 -0.446019 0.265857 0.131177 0.759798 -0.212801 0.073850 0.158535 0.232964 -0.061162 -0.228029 0.349237 0.068695 0.184345 -0.742330 -0.546993 0.305078 0.497310 -0.039116 -0.046624 0.152949 0.216150 -0.167509 0.766409 0.069487 0.240183 -0.344566 -1.151782 0.149442 0.473375 -0.073077 0.392324 -0.613010 -0.256714 -0.131416 -0.013370 0.577339 0.348853 0.299928 0.520288 -0.411771 -0.517980 -0.234511 -0.230265 -0.043342 -0.315484 0.354757 -0.395613 -0.082587 -0.274684 0.244015 -0.164759 -0.038304 -0.325226 0.043217 0.159959 0.219783 -0.060876 0.480529 0.147640 -0.284880 -0.099950 0.119678 0.018502 0.469873 -0.315867 -0.306075 -0.276739 0.086278 -0.257306 0.245890 -0.065664 0.368285 0.056615 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.241461 -0.606393 0.145291 0.421841 0.281329 -0.025064 0.061452 -0.054614 0.142716 -0.583785 -0.100584 0.018089 -0.080706 -0.048772 0.147203 0.091096 0.314656 -0.059295 -0.445095 0.136077 -0.031464 -0.089866 -0.089571 0.059344 0.037004 -0.353491 0.401510 0.350971 0.003276 0.279459 -0.274867 0.111269 0.265027 0.035273 0.344237 0.317388 0.303517 -0.087546 -0.238389 0.134609 0.764056 0.003039 -0.039003 0.177875 0.279028 0.442202 0.204627 0.651109 0.673481 -0.102308 0.413771 -0.263695 -0.074431 -0.094481 -0.686154 0.157764 0.288153 0.093748 -0.434975 0.184060 -0.142605 0.126711 0.095760 0.160860 0.555478 -0.002573 0.382337 0.219635 0.489117 -0.315131 -0.124416 0.290183 0.476690 0.297693 0.274624 -0.308827 -0.184847 -0.849732 0.010544 0.031884 0.059268 -0.158860 0.021403 -0.212627 -0.112812 0.315987 -0.226166 0.317295 -0.202857 0.014567 -0.549940 0.094017 0.321590 0.428807 -0.008981 0.014720 0.093587 0.156527 -0.015053 0.340549 0.277773 -0.455170 -0.201153 -0.854797 -0.483920 -0.251750 0.041108 -0.221194 -0.474756 0.124500 0.197626 0.090048 -0.358768 0.004684 0.107277 0.114848 0.344279 -0.342524 0.062764 -0.188646 0.141770 0.276652 0.137862 -0.183279 0.080032 -0.473568 0.371424 0.188864 0.239781 -0.148356 0.110108 -0.070577 0.079844 0.360446 -0.120235 -0.085925 0.029208 -0.392443 0.230188 -0.161857 0.383459 -0.382428 -0.105596 -0.382725 -0.046325 -0.093021 1.028013 -0.000359 0.504436 0.250482 -0.435150 0.014242 -0.391740 -0.893122 -0.019240 -0.098324 0.019476 0.159365 -0.075152 0.117943 -0.103732 -0.155084 0.083382 -0.303847 -0.179245 -0.117099 -0.709393 -0.053118 -0.098987 -0.279572 0.153345 0.472675 0.040458 0.290477 -0.172876 -0.773098 -0.269241 -0.366977 0.250210 -0.183991 0.111454 0.041734 -0.109599 -0.547879 0.275151 -0.289715 0.048654 -0.224071 -0.439112 -0.402294 0.080818 -0.228927 0.308944 0.107120 -0.388111 0.148764 -0.354492 0.234247 0.121012 0.152112 -0.061901 -0.635550 -0.565585 -0.130861 0.015422 0.639572 -0.200264 0.005747 0.011481 -0.256286 -0.258516 0.279543 -0.633082 0.070965 0.308601 -0.487604 0.205351 -0.168766 -0.134388 -0.217398 0.254394 0.138578 -0.102090 0.645319 0.497471 -0.496143 -0.295486 -0.246119 0.168055 0.098400 0.608239 -0.222052 0.025552 0.138888 0.272948 -0.058146 -0.170390 0.236718 0.071002 0.116658 -0.584087 -0.482899 0.136947 0.406705 -0.039912 -0.104346 0.139539 0.138188 -0.314013 0.605159 0.031151 0.321604 -0.277051 -0.804435 0.113928 0.400685 -0.014049 0.389842 -0.558042 -0.141902 -0.031099 0.039624 0.461654 0.341624 0.209068 0.411487 -0.322576 -0.384774 -0.180390 -0.294638 -0.043985 -0.214495 0.349324 -0.337576 -0.088657 -0.280938 0.148811 -0.242888 0.099621 -0.061558 0.066749 0.055629 0.190987 -0.045728 0.361975 0.119320 -0.224351 -0.094291 0.109013 -0.075260 0.385774 -0.168492 -0.205133 -0.176662 0.094982 -0.162135 0.169318 -0.117136 0.274477 -0.043143 -PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = 4.749353 -2.129164 -2.927979 7.537982 0.627003 1.500787 1.075866 0.003131 1.227545 -10.035074 -3.787201 8.222230 1.364152 1.534696 -1.022550 3.486743 2.904589 1.713147 -9.028717 -0.320195 1.082223 -0.903311 -1.009933 -0.253100 -0.150927 -3.416938 6.721928 2.265474 1.266743 6.387691 -2.093313 4.389238 5.664127 -0.294375 2.388151 4.462361 -0.587307 -0.992246 -5.092179 -3.618445 8.174742 2.093816 0.606615 3.706074 -1.500289 7.331356 2.938460 7.674108 5.733397 -2.760752 2.810614 1.879912 -3.725652 -1.244428 -7.322498 0.961269 1.038741 1.075372 -2.480882 2.474435 -1.029770 1.989781 2.573331 1.137360 7.254311 1.574381 5.960638 5.836831 5.751241 -5.908199 1.243546 1.804942 1.624066 2.256113 6.649004 -4.773928 -5.020305 0.244694 -0.434298 -5.755864 -0.400896 -1.470033 9.291223 -5.213878 -2.187088 -0.492885 1.268241 7.065066 -3.074453 1.710483 -7.057779 0.122470 0.271683 7.570040 1.467365 1.637804 -1.511913 1.353949 -1.213562 1.670891 2.172929 -6.907043 0.775215 -8.027803 -3.540425 -5.355938 1.366157 2.383126 -6.703356 1.488129 -2.255733 6.476674 -9.456082 -1.107881 1.506925 1.477735 7.932807 1.807369 -0.823924 -0.330604 1.689794 2.859637 3.006301 -3.827821 2.045124 -0.590994 0.683261 0.894195 2.514928 1.832245 -7.865146 -2.697072 2.226533 0.652698 1.511054 3.273454 4.185965 -2.482042 3.234868 -3.588565 5.072603 -6.803948 -3.207616 -2.542857 -4.370912 -4.084349 8.214744 4.666595 7.293386 -0.438025 -1.547868 -0.606066 -8.016063 -10.132227 0.139739 0.042417 -1.111563 3.623735 -1.121347 2.902816 -5.645892 1.818090 3.545973 -3.189050 -3.919973 0.179226 0.706291 0.640884 -1.691262 -2.454267 -0.429607 -1.015018 2.004727 7.634959 -1.479729 -13.705989 -9.475647 -3.467726 5.932733 -4.022961 0.205114 -2.531492 -3.123249 -3.123550 -0.973562 -4.938193 0.391098 0.146152 -3.980604 -8.021405 3.294179 -1.620817 -1.066104 2.909882 -6.228119 1.748838 3.084156 2.083710 0.672247 1.455977 -0.507672 -5.867774 -3.663317 1.811043 -3.996876 7.102630 3.066345 -0.784063 -4.015386 -3.679535 -5.163312 3.536190 -6.413011 4.393326 0.786619 -2.325566 2.164733 -5.484887 1.446668 -3.596057 3.030509 1.426890 -10.949362 7.912038 6.391405 -4.853786 -0.467821 -1.071185 3.079555 0.478045 4.355924 -5.300808 -4.441017 1.633791 0.862404 -0.009241 -0.929800 1.591414 -1.080898 -2.148632 -6.303232 -2.787761 5.021336 2.757445 -0.944966 -1.173599 3.768894 -2.347187 1.676036 6.401960 3.658018 1.993659 -5.535589 -14.912278 2.500022 0.635837 -1.616900 2.243577 -4.673839 -1.462849 2.861647 -4.751891 5.649863 -2.469474 -2.146906 6.037043 -7.756076 -5.972636 -5.025668 -3.344170 1.353785 0.267548 2.872545 -3.275472 0.647985 -1.901335 1.319261 -4.103538 -2.590711 3.366781 4.066308 5.991584 1.054318 0.772190 6.595171 2.063928 -1.500472 -1.484323 -0.108131 -3.542513 1.186271 -8.610584 -0.752921 1.924513 3.150348 -4.638590 1.046600 -0.488560 1.635772 -0.169239 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 1.355831 -1.030536 -0.787058 2.299246 0.314921 0.416090 0.297859 -0.051375 0.429959 -3.083609 -1.196215 1.947902 0.359575 0.418715 0.005399 0.985503 0.918722 0.338971 -2.486273 -0.015460 0.296527 -0.406291 -0.403749 0.156686 -0.074214 -1.207073 1.745437 0.808274 0.325162 1.895258 -0.692838 1.291847 1.703302 -0.151293 0.765345 1.379448 0.100475 -0.253469 -1.431044 -0.706133 2.659192 0.512645 0.034617 1.007562 -0.267818 2.230251 0.620805 2.751350 1.715856 -0.853221 1.300689 0.101582 -0.939747 -0.300890 -2.344598 0.435731 0.697088 0.351435 -0.965110 0.770539 -0.556642 0.611908 0.725945 0.369424 2.307381 0.599873 1.876620 1.720694 1.812444 -1.793874 0.214517 0.737838 0.628167 0.715153 1.790483 -1.352638 -1.320164 -0.630391 -0.030975 -1.281215 -0.154468 -0.525569 2.508075 -1.573816 -0.773641 0.208675 0.197415 2.107503 -1.023505 0.642060 -2.219664 0.050387 0.332136 2.249549 0.435251 0.397754 -0.405705 0.484939 -0.324716 0.705365 0.674532 -2.055969 -0.306445 -2.713309 -1.487810 -1.496851 0.454483 0.558401 -2.238255 0.409782 -0.197402 1.577273 -2.705214 -0.184218 0.507703 0.608410 2.460984 0.598362 -0.472849 -0.236543 0.647177 0.858460 0.970810 -0.978316 0.678952 -0.768772 0.560175 0.358628 0.776283 0.323256 -2.016407 -0.697687 0.608825 0.346520 0.325810 0.773898 1.185281 -0.959991 1.078091 -0.941959 1.585934 -2.225043 -0.928576 -0.989080 -1.324217 -1.076771 3.043788 1.399566 2.366509 0.105693 -0.929960 -0.197242 -2.468717 -3.339461 -0.125538 0.003583 -0.160663 1.007808 -0.383498 0.921856 -1.466491 0.516716 0.938611 -1.078951 -1.114576 0.035526 -0.098904 0.120771 -0.534000 -0.946164 -0.057213 0.024078 0.360008 2.252459 -0.411875 -3.920346 -2.695041 -1.162280 1.729221 -1.148482 0.228333 -0.631535 -0.846546 -1.471332 -0.074906 -1.467813 0.061201 -0.069954 -1.443008 -2.390273 0.930080 -0.517377 -0.196737 0.845751 -1.953315 0.528436 0.648058 0.752525 0.384445 0.513371 -0.220175 -1.997386 -1.473876 0.323666 -1.146730 2.404746 0.818662 -0.264913 -0.837573 -1.176638 -1.640200 1.180919 -2.212235 1.151107 0.394318 -0.948174 0.700703 -1.632397 -0.002641 -1.224422 0.949296 0.492470 -2.796318 2.506624 1.967934 -1.537745 -0.300025 -0.496896 0.936427 0.230487 1.612745 -1.473526 -1.036342 0.488198 0.481616 -0.037349 -0.310529 0.643805 -0.324884 -0.513634 -1.991478 -1.023948 1.403397 1.069887 -0.237974 -0.295749 1.090087 -0.413177 0.298109 2.017595 1.013646 0.485375 -1.516705 -4.442417 0.797453 0.308729 -0.626423 0.819539 -1.733604 -0.457348 0.686760 -1.169756 1.793155 -0.372571 -0.268951 1.905846 -2.227586 -1.844260 -1.420601 -0.997963 0.249575 -0.139586 0.993993 -1.065919 0.178952 -0.571944 0.384670 -1.171675 -0.727940 0.582139 1.015377 1.602467 0.283528 0.226167 1.981530 0.669563 -0.606131 -0.514129 0.053130 -0.988006 0.597758 -2.336854 -0.357431 0.380149 0.857103 -1.324449 0.323518 -0.225177 0.472817 0.028141 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.584777 -0.293187 0.067273 0.901719 0.176017 0.029760 0.379813 0.397274 0.125851 -1.640286 -0.831953 0.196766 0.084764 0.044708 0.241724 0.197484 0.383668 0.506078 -1.551046 -0.014835 0.460144 0.148789 0.094607 -0.167913 -0.005176 -0.497425 -0.159611 0.510900 0.185634 1.117088 -0.414973 0.310476 0.929119 0.056802 0.169138 0.901805 0.387080 -0.065059 -0.160891 -0.156261 1.433841 0.309191 -0.199807 0.492267 0.041074 1.185761 0.003346 1.143127 0.181820 -0.530242 0.629505 -0.925254 -0.540368 -0.136447 -0.974776 0.373562 1.021481 0.844307 -0.526237 0.700101 -0.370958 0.270798 0.371594 -0.351150 0.919359 0.696334 0.500679 0.749955 1.172821 -0.982922 0.022677 0.270368 0.279667 0.086359 0.285480 -0.657346 -0.204157 -1.644842 0.036585 -1.266517 -0.178435 -0.189596 1.394284 -0.923732 0.077798 0.779754 0.000566 0.891648 -0.527801 0.125828 -1.089552 0.066885 0.157923 1.254806 0.164001 0.015638 -0.097208 0.338918 0.160822 0.489336 0.221602 -0.746675 -0.982792 -1.847217 -0.786954 -0.544844 0.103329 0.177589 -1.126774 -0.107517 0.800991 0.578534 -1.529954 -0.100227 0.478863 0.625513 0.217423 0.208037 -0.644172 -0.072502 0.045673 0.231332 0.513006 -0.759827 0.220763 -0.618796 0.017446 0.184379 0.347085 -0.043676 -0.842776 -0.440876 0.127991 -0.060270 0.043474 0.220588 0.326135 -0.419586 0.583067 -0.796064 0.901258 -1.228100 -0.104424 -0.354326 -0.795384 -0.435986 1.706473 0.591494 0.648616 0.218222 -0.701191 -0.242714 -0.982665 -1.598850 0.196449 0.122407 0.597448 0.267024 -0.257506 0.206260 -0.598353 0.037312 0.085901 -0.523366 -0.331055 0.014665 0.592504 -0.123854 -0.353281 -0.837640 0.245402 0.705117 -0.199568 0.648239 -0.439551 -0.744089 -1.104750 -0.779300 0.955504 -0.451913 0.103336 -0.295720 -0.118007 -0.956281 0.305168 -0.703885 0.126985 0.024912 -0.939629 -1.323086 0.469093 -0.322778 -0.200077 0.566431 -0.886184 0.174948 0.235323 0.531385 0.169009 0.139257 0.125665 -1.139833 -1.039322 -0.291984 -0.398938 1.036820 0.510673 0.086960 -0.514726 -0.486843 -0.695949 0.930863 -0.772324 0.391741 -0.125375 -0.433957 0.695177 -0.669399 -0.182016 -1.002991 0.486016 0.429629 -1.213579 1.337287 0.831942 -0.750003 -0.358064 -0.658537 0.320534 0.378436 1.115674 -0.686968 -0.523137 0.448708 -0.092141 -0.058648 -0.523568 0.439280 -0.170970 0.119339 -1.014838 -0.494803 0.635602 0.755989 -0.163587 0.419173 0.746651 0.297225 0.070110 1.128068 0.408320 -0.151581 -0.643694 -1.866611 0.609779 0.684595 0.058976 0.243639 -0.915898 -0.385154 0.369850 0.100468 0.950524 0.883790 0.071350 1.035080 -0.881482 -0.980408 -0.406333 -0.114081 0.360288 -0.474551 0.314612 -0.492413 0.214531 -0.013932 0.161769 0.071158 -0.567648 -0.668805 0.214286 0.955527 0.161722 -0.109405 1.178035 0.134460 -0.536934 -0.027133 -0.110335 -0.039813 0.272246 -0.430003 -0.162776 0.013342 0.412990 -0.674739 0.591458 -0.160188 -0.075600 0.355543 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = 4.432635 -2.680967 -3.675149 8.093464 0.172115 1.755073 0.837515 -0.836442 0.658858 -10.315897 -3.951061 6.764705 1.936776 2.096549 -0.654774 4.119454 2.357001 0.718285 -9.460274 -0.578066 1.402975 -1.630160 -1.255024 0.660059 -0.359594 -4.070339 6.851815 2.393341 0.691048 6.441231 -1.844504 5.398554 5.860154 -0.732249 2.327436 4.180244 -1.239838 -0.554896 -5.209324 -2.295000 8.056989 1.917635 0.042000 2.395833 -2.166639 7.393199 2.783163 8.164798 4.131757 -2.914889 3.807438 2.423087 -3.221480 -1.005737 -7.258378 0.557259 2.069544 1.195373 -2.289204 2.288632 -1.924970 2.077190 2.684582 2.388838 8.327575 1.624093 7.408914 5.972828 5.357018 -5.850936 1.695301 1.638565 0.481006 1.018490 6.601247 -4.733873 -5.272560 0.561892 0.129415 -5.547394 -0.796461 -0.821586 8.167588 -4.973018 -3.421798 -0.979121 1.636307 7.696390 -3.680661 2.564996 -7.022358 -0.116446 -0.001262 8.531666 1.570646 1.750496 -1.578765 1.945874 -1.002781 1.447753 2.046012 -6.971370 0.788344 -7.825285 -4.373005 -5.224231 1.783520 3.012918 -7.508172 1.376091 -2.522952 5.262335 -9.510703 -0.403663 1.335338 2.305446 9.694783 1.955233 -1.581656 -0.304831 1.909930 3.007052 3.675973 -2.984645 3.076237 -1.835963 1.964038 1.355672 2.335406 1.867288 -8.583347 -2.119361 2.379167 -0.272467 1.734754 3.911818 4.940826 -2.126278 3.454531 -3.736442 5.251828 -7.880274 -2.791571 -2.961165 -5.366027 -3.778839 6.854873 5.550314 6.610553 -0.872603 -2.576747 0.151875 -9.117370 -11.172142 -1.095652 0.775992 -1.466215 3.482444 -1.545383 3.351435 -5.815580 2.806494 4.598241 -3.191081 -4.191459 -0.027669 1.310419 1.590756 -2.117404 -1.485107 -0.862056 -1.990167 1.859850 9.091136 -0.773098 -13.618358 -10.721083 -3.348886 5.940871 -3.889690 0.086243 -3.145507 -3.242707 -5.386386 -0.635797 -4.856679 0.057910 0.453856 -3.814299 -7.960350 3.104162 -1.194089 -1.273017 2.471423 -6.601893 1.345303 3.760237 1.398530 1.451755 1.303432 -0.585723 -5.211573 -3.859801 2.644707 -4.481159 7.441694 2.949048 -1.250439 -2.792384 -3.727951 -5.590193 3.427383 -5.351470 4.426336 0.900500 -2.486097 1.820170 -5.957806 0.722261 -3.020619 2.616659 0.893815 -9.344884 8.832543 6.440462 -4.596712 -0.275571 -0.617194 3.612640 -0.069344 3.853232 -5.223197 -4.083981 0.941736 1.497499 0.026566 -0.171493 1.667979 -1.676528 -2.977054 -6.072253 -2.755611 5.218426 2.865938 -0.877655 -1.057900 3.343274 -3.144188 1.452815 5.940395 3.569101 1.377900 -4.740442 -14.735665 2.218942 -1.907759 -2.778467 1.381411 -4.530965 -1.351110 2.686445 -4.555161 5.848137 -1.809823 -2.915971 6.129885 -7.997150 -6.119171 -6.097942 -3.401468 0.553678 0.442224 1.998689 -3.245641 1.050207 -1.344094 1.331549 -4.092768 -3.584929 3.577436 3.786163 6.014368 -0.110246 0.566036 6.654086 2.350819 -0.730606 -2.563398 0.375612 -4.154398 2.126799 -8.400192 -1.209210 2.001568 3.343950 -4.646283 0.242777 -0.812744 1.668560 0.312376 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 1.192575 -0.686351 -0.437876 2.005353 0.280149 0.255229 0.464689 0.157536 0.174983 -2.913801 -1.195872 1.343104 0.329513 0.327656 -0.002556 0.743859 0.787797 0.512540 -2.638676 -0.106688 0.473842 -0.155859 -0.265211 -0.068658 -0.092934 -1.049173 1.143306 0.913548 0.254672 1.880651 -0.634373 0.982297 1.637515 -0.054165 0.646729 1.459950 0.305614 -0.117929 -1.036967 -0.525381 2.550358 0.541150 -0.112099 0.863183 -0.147981 2.148941 0.584727 2.175639 0.831820 -0.846309 1.013778 -0.245503 -0.929287 -0.384927 -2.061042 0.381896 1.134406 0.857619 -0.941021 0.990000 -0.487492 0.523401 0.725111 0.248718 2.034899 0.715717 1.519409 1.522880 1.842822 -1.760025 0.184147 0.559460 0.461018 0.342410 1.290707 -1.283116 -1.068332 -1.149905 0.069962 -1.839397 -0.219675 -0.265002 2.361176 -1.476710 -0.452454 0.503834 0.170251 1.823613 -1.005628 0.344742 -2.045548 0.015315 0.111274 2.451632 0.381826 0.314277 -0.195177 0.611510 0.016630 0.737085 0.500402 -1.801385 -0.508470 -2.806660 -1.306768 -1.314936 0.287429 0.488660 -1.934213 0.012177 0.183236 1.356131 -2.660644 -0.164655 0.601672 0.771517 1.701344 0.259253 -0.655729 -0.063990 0.298753 0.585918 0.989859 -1.056561 0.598718 -0.619655 0.362223 0.338992 0.667987 0.286848 -2.061018 -0.652753 0.496424 -0.039267 0.216151 0.653121 0.888489 -0.772163 1.005149 -1.250796 1.588454 -2.176944 -0.492530 -0.764309 -1.524291 -0.937224 2.350214 1.176114 1.639851 0.022141 -0.930504 -0.140264 -2.185788 -3.199921 0.121762 0.243199 0.185951 0.743947 -0.459307 0.650858 -1.452154 0.305211 0.916593 -0.920042 -0.940936 -0.026050 0.631048 0.132206 -0.624534 -0.849503 0.160531 0.324490 0.320490 1.931290 -0.613788 -2.933708 -2.499785 -1.153038 1.684075 -0.966852 0.041625 -0.582769 -0.723756 -1.617241 0.187846 -1.369478 0.231371 -0.083055 -1.308818 -2.310760 0.879141 -0.518399 -0.266996 0.858643 -1.759457 0.387940 0.661617 0.550047 0.298725 0.298886 0.072026 -1.762632 -1.443383 0.232916 -0.886178 2.021547 0.815257 -0.049452 -0.797990 -0.963534 -1.431431 1.219260 -1.483477 1.000942 0.186862 -0.821222 0.891516 -1.440469 0.024966 -1.209722 0.864529 0.572783 -2.326808 2.540426 1.767041 -1.411002 -0.436661 -0.530997 0.752918 0.294027 1.576222 -1.446652 -1.110645 0.611987 0.142922 -0.049317 -0.449377 0.590423 -0.248210 -0.255378 -1.914214 -0.941854 1.304297 1.094023 -0.266310 0.136033 1.069386 -0.320913 0.136438 2.031825 0.847081 0.321224 -1.317808 -3.803766 0.876157 0.090750 -0.354636 0.434531 -1.375299 -0.555602 0.710232 -0.651139 1.692181 0.376715 -0.506750 1.836200 -2.009078 -1.792947 -1.277479 -0.727116 0.446373 -0.373331 0.624036 -0.987862 0.335879 -0.397652 0.368386 -0.646357 -0.858695 0.136036 0.763628 1.600254 0.144481 -0.032772 2.027145 0.376080 -0.545379 -0.381249 -0.001058 -0.576897 0.684514 -1.786181 -0.394244 0.200089 0.915598 -1.243587 0.551787 -0.254611 0.321365 0.409369 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp___GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = 4.642404 -1.694696 -6.814670 15.270338 -1.017918 4.220865 1.382403 -2.469651 0.210352 -19.754159 -6.482284 11.091949 4.091834 5.094560 -1.277927 6.258559 2.525068 3.199680 -15.728610 -2.623454 4.911564 0.180468 0.796553 1.238983 -0.510273 -5.030161 11.437469 1.636393 2.235126 11.893686 -2.194442 11.573902 11.326827 -1.926351 0.842974 6.167487 -2.118018 0.271794 -9.514859 -4.721455 12.558603 0.847683 1.882507 5.139585 -6.849683 12.265000 4.462830 11.111509 5.343870 -6.316623 5.040600 5.877737 -3.351419 -2.715469 -9.795722 1.287162 3.063445 5.060512 -2.061396 2.982963 -1.092962 2.739168 4.891656 3.008988 12.802015 5.488853 11.605022 12.555108 8.650624 -9.753579 4.289014 0.391914 -4.031784 -0.295752 12.685727 -8.057988 -8.186848 3.399393 -2.689960 -10.774412 -2.447669 -0.722974 15.059476 -8.902521 -4.939337 -3.388623 4.434227 13.867547 -4.003987 5.567341 -11.623479 -1.357880 -0.434106 12.927868 2.582400 1.906267 -4.813559 2.527606 -2.266468 0.368308 3.967366 -10.806699 3.491084 -9.460583 -7.387475 -8.516910 4.074883 8.430600 -13.861819 1.994284 -8.439717 8.571497 -19.662841 -1.897957 1.167654 6.278850 16.993987 3.375625 -4.361960 -0.544952 4.057446 3.221850 5.296524 -5.315199 6.325560 -3.149663 -0.826033 1.507817 2.853687 3.760133 -15.438449 -6.044101 1.515875 -1.729675 4.288226 8.628187 10.986678 -1.222845 5.683013 -7.269307 8.511826 -12.816144 -6.317308 -2.508182 -10.768648 -7.683429 9.838764 7.806573 10.143172 -4.314589 -6.972209 -0.522413 -15.425261 -16.336692 -2.089030 1.719510 -2.327383 9.382625 -3.421299 6.282252 -11.391416 7.067678 9.641592 -3.428790 -7.269190 0.906682 2.286399 2.417661 -2.986591 -2.740692 -1.818065 -6.435000 2.642379 17.332170 -0.157693 -18.270503 -21.947290 -4.370555 10.691326 -6.817411 -0.179350 -7.481445 -5.311296 -8.672955 -2.540149 -8.922322 -1.560777 2.458118 -6.329809 -14.408038 6.836402 -1.784277 -4.692401 5.546555 -11.037371 1.942422 7.843331 2.525961 2.688330 0.505375 -1.682016 -7.921242 -5.556017 5.119513 -9.569206 9.080445 4.769714 -1.505019 -6.815271 -7.013886 -8.428459 5.240519 -5.719626 8.319616 1.422374 -0.907551 2.192164 -11.554845 2.729087 -6.052294 2.556112 1.885517 -18.500904 13.176779 6.510941 -5.701895 1.357837 0.574122 6.667450 -1.024533 2.723034 -8.687709 -8.604924 1.868630 2.166826 0.738269 -2.986378 1.067455 -4.399869 -6.206884 -9.040430 -3.360605 9.837378 3.475233 -2.574437 -1.791898 8.096171 -8.202632 3.281750 8.966676 8.948213 1.309270 -6.093967 -20.948863 3.809985 -5.929871 -3.464214 -1.205793 -7.533490 -0.761675 7.373543 -7.148784 9.094007 -4.615373 -5.318430 10.380766 -15.434060 -9.922597 -9.486690 -5.190053 2.327445 2.295922 0.074929 -4.424684 3.056223 0.499525 1.240318 -6.229175 -8.721082 7.943272 6.969883 12.465914 -3.245303 2.866447 11.526374 4.775434 -0.954978 -2.749289 1.025920 -7.468177 -0.014388 -16.194440 -0.587280 6.321442 5.588196 -8.830958 0.117628 -4.482491 -0.193829 0.236050 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 1.217421 -0.193530 -1.023624 3.173376 -0.150430 0.527370 0.569551 0.101029 -0.074450 -4.704346 -1.885856 1.681464 0.757497 0.734108 0.083971 1.186468 0.634913 1.138354 -4.298549 -0.343115 1.468834 0.416980 0.310509 -0.073559 -0.010163 -1.103052 1.223473 0.560228 0.492050 2.963156 -0.776993 2.220320 2.689097 -0.257971 0.241668 1.777868 -0.266431 -0.002277 -1.233689 -0.775941 3.276073 0.402789 0.236043 1.187787 -1.037997 2.999766 0.537716 2.504436 0.565479 -1.547240 1.319408 0.018961 -0.984141 -0.421009 -2.254536 0.508930 1.540718 1.836110 -0.731905 1.155609 -0.495458 0.671126 1.169015 -0.001315 2.955627 1.703372 2.175197 2.720380 2.507575 -2.203195 0.909311 0.009959 -0.607346 -0.334074 2.123956 -1.912898 -1.293837 -1.111581 -0.503974 -3.436898 -0.486526 -0.144821 3.887662 -2.307629 -0.453912 0.143659 0.894205 3.093741 -1.074186 0.870079 -2.744586 -0.177986 -0.158406 3.206703 0.409372 0.334481 -0.939989 0.755559 -0.197139 0.326102 0.617699 -2.286056 -0.430840 -3.199359 -1.871447 -1.727997 0.665805 1.577283 -3.384145 0.146308 -0.656068 1.869888 -4.804535 -0.420645 0.557684 1.621475 2.451124 0.817704 -1.591472 -0.197284 0.419615 0.791189 1.199708 -1.529174 1.199808 -1.314097 -0.433096 0.451418 0.755624 0.553897 -3.368701 -1.397470 0.247080 -0.644850 0.673206 1.781463 2.114188 -0.358472 1.412664 -2.104721 2.151234 -3.238973 -1.066671 -0.718121 -2.621221 -1.589872 2.767049 1.890834 1.764675 -0.580109 -1.750949 -0.289771 -3.464999 -3.779693 -0.114525 0.249556 0.365286 1.686664 -0.777804 1.007176 -2.355701 1.152946 1.633081 -0.977087 -1.414040 -0.067936 1.403145 0.315923 -0.850975 -1.195383 -0.130593 -0.323062 0.076556 3.234086 -0.464641 -2.936829 -4.734127 -1.355267 2.608607 -1.428579 0.065480 -1.657310 -0.734168 -2.261580 -0.082090 -2.102238 -0.243407 0.423101 -1.673355 -3.503016 1.448654 -0.518768 -1.085609 1.210866 -2.445083 0.432761 1.798101 0.943233 0.559542 0.096661 -0.128326 -2.183729 -1.821298 0.572740 -1.858137 2.064786 1.401769 -0.084539 -1.779240 -1.444256 -1.961251 1.749518 -1.197838 1.673892 0.046632 -0.421592 1.110453 -2.472785 0.364430 -1.886327 0.706069 0.528510 -4.435581 3.271563 1.518510 -1.590760 -0.005337 -0.709365 1.485343 0.176370 1.276859 -1.851201 -1.791405 0.664204 0.077920 0.068704 -1.170625 0.549958 -1.014108 -0.762290 -2.279210 -0.848895 2.333169 1.187203 -0.616253 0.223440 1.890090 -1.104076 0.738225 2.360528 1.834134 -0.108706 -1.453731 -4.842406 1.063876 -0.308504 -0.257117 -0.265088 -1.797771 -0.508753 1.455201 -0.898356 2.337993 0.321193 -0.857500 2.512565 -3.299069 -2.502620 -1.893688 -0.594433 0.749228 -0.092511 -0.034209 -1.068483 0.718354 0.338045 0.504296 -0.570712 -2.251576 0.327377 1.265817 3.045363 -0.454641 0.185653 2.937541 0.855420 -0.559524 -0.401215 0.061752 -1.063642 0.091949 -2.819104 -0.282100 1.010843 1.254271 -2.118480 0.768349 -0.971040 -0.091377 0.479818 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 4.439478 -3.766426 -5.661832 14.210083 0.087502 3.527592 0.968943 -2.590914 1.762103 -17.862180 -6.497313 11.121157 2.525082 2.687614 -0.472679 4.652242 2.952288 2.385476 -14.033919 -1.845433 3.156472 -0.586250 -0.347014 0.440983 -0.533388 -4.390566 11.599915 2.984790 1.746275 9.168141 -2.046392 8.954255 9.719158 -0.424102 1.656063 5.237333 -2.937096 0.344836 -8.211421 -4.965272 12.521594 1.734316 0.858886 5.487829 -3.442450 10.562463 5.049511 11.017437 6.905056 -4.549225 5.210633 4.688969 -2.609361 -2.783280 -10.154710 1.007151 3.639164 2.805699 -3.383266 2.563639 -1.068473 3.033931 3.888468 2.864380 12.657859 3.927646 11.969251 10.502008 7.066090 -8.420887 2.912657 0.571748 -0.562826 0.915524 11.201162 -7.369196 -8.185786 3.112885 -2.061506 -8.878405 -1.328762 -0.848864 13.438548 -7.144115 -4.788115 -3.045040 3.047261 11.917348 -3.449423 4.235062 -10.845525 -0.333582 0.055386 12.488796 2.318409 1.100585 -3.799151 2.510255 -1.917858 1.143990 4.424865 -9.754638 3.194233 -12.268980 -6.196812 -7.792443 4.009933 5.301717 -11.804809 1.797799 -6.313283 6.422733 -15.977273 -2.547100 1.711392 3.899518 14.932184 -0.435403 -3.038318 -0.061603 2.651435 3.529987 4.762287 -4.299372 4.346661 -3.121248 1.114920 1.647525 2.701691 3.598576 -12.955168 -4.763824 1.833653 0.449070 2.564923 6.452179 8.596072 -1.140999 4.832234 -5.404409 7.918403 -11.949888 -3.985665 -3.220879 -7.849711 -6.103441 10.691058 7.184861 10.048706 -2.724732 -4.811837 -0.501419 -13.463967 -16.553934 -1.311907 1.377062 -2.117710 6.049712 -2.377209 5.403657 -9.469003 5.520052 8.644791 -3.384466 -6.082139 0.079314 0.804554 1.358688 -3.304946 -1.216174 -1.309733 -4.046292 1.299064 14.638641 -0.526251 -19.337804 -18.028252 -3.877323 8.915528 -6.366931 -0.144433 -5.582239 -4.279418 -8.120496 -1.249909 -7.569951 0.581397 1.252401 -6.399543 -12.646785 4.544896 -1.895420 -0.875620 4.358744 -9.954180 1.977973 6.352541 3.042933 2.070771 2.299812 -0.660146 -8.470676 -5.097794 3.401624 -7.965403 10.012350 4.455292 -1.420279 -6.276691 -5.750753 -8.313346 4.421820 -5.901588 6.757657 1.110354 -2.867420 2.035752 -9.165328 2.510052 -5.013174 2.157962 1.831821 -16.884559 11.814796 7.390252 -5.742101 0.450045 -0.272642 5.460399 -1.204054 3.698409 -8.923359 -7.079852 0.953640 0.717678 0.506412 -1.813678 1.489775 -2.732716 -4.675282 -9.633614 -3.934411 8.383483 2.642081 -1.825369 -1.394378 6.324181 -6.101573 2.021473 9.238623 6.579628 2.129489 -6.396479 -22.054655 3.169993 -2.563148 -3.346570 0.544502 -6.146909 -1.837215 4.006523 -6.015607 7.901744 -3.204519 -4.586839 9.047129 -12.887945 -8.357513 -8.545274 -5.160443 1.607896 1.262955 1.761613 -3.196175 1.314227 -1.008412 1.062660 -5.544985 -6.608548 6.075007 5.812747 10.458952 -1.786696 1.140774 9.164450 3.627078 -2.391975 -2.138997 0.091821 -6.579715 2.289122 -15.501825 -1.357123 4.244354 4.526563 -7.338931 -0.107943 -2.888571 1.717491 -0.905043 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = 2.307601 -1.866003 -2.899825 6.712686 0.090360 1.514126 0.447543 -1.090739 0.768974 -8.488977 -3.315505 4.995179 1.278079 1.190466 0.062646 2.384996 1.431776 1.016427 -6.356451 -0.674333 1.443385 -0.605517 -0.573393 0.466186 -0.346166 -2.377792 4.853891 1.476414 0.739677 4.492908 -1.056588 4.294490 4.633149 -0.357055 0.918445 2.649219 -1.227748 0.089742 -3.641341 -1.999635 6.118700 0.880762 0.261033 2.420232 -1.521303 5.158806 1.766203 5.911428 2.852813 -2.217456 3.019386 1.815067 -1.301112 -1.017310 -5.000546 0.671801 2.012076 1.167554 -1.770865 1.335941 -1.055444 1.485285 1.874770 1.297756 6.217326 2.112938 5.670422 5.019797 3.606097 -4.045574 1.284054 0.605596 -0.126646 0.415568 5.053232 -3.192169 -3.671376 0.993076 -0.751358 -3.891516 -0.651822 -0.545010 6.710917 -3.602530 -2.461096 -1.015399 1.518048 5.791157 -2.007487 2.193359 -5.231195 -0.162846 0.045147 5.954398 1.198082 0.660943 -1.915182 1.263625 -0.930648 0.755386 1.744662 -4.682496 0.617376 -6.118321 -3.490475 -3.613688 1.804365 2.416351 -6.009514 0.788399 -2.185475 3.164301 -7.560974 -0.926620 0.924799 1.931566 7.221414 0.696191 -2.001824 -0.132754 1.412923 1.712958 2.377089 -1.772845 2.127358 -2.069805 0.872361 0.778872 1.360087 1.510663 -6.270975 -2.029488 0.993627 0.052665 1.181517 2.944729 4.057599 -0.933563 2.459700 -2.417499 3.806974 -6.051695 -1.989571 -1.896736 -4.068312 -2.760014 5.619667 3.917012 5.140175 -0.994637 -2.537402 -0.337539 -6.725934 -8.150959 -0.816503 0.508436 -0.793054 2.656443 -1.137626 2.575484 -4.276590 2.658291 3.940658 -1.926700 -2.854706 0.032712 0.924993 0.631559 -1.620217 -1.017498 -0.753861 -1.701494 0.452217 6.867009 -0.248025 -9.057862 -8.497480 -2.033025 4.281952 -2.957297 0.177736 -2.582938 -1.975694 -4.277608 -0.541854 -3.587820 0.158269 0.499499 -3.151824 -6.053703 2.142925 -0.819623 -0.779880 1.923282 -4.856082 0.993551 3.142104 1.428360 1.154789 1.177905 -0.468066 -4.135862 -2.817453 1.522311 -3.761975 5.090478 2.576171 -0.733872 -2.633526 -2.803112 -4.300229 2.378640 -3.409496 3.123313 0.649947 -1.590937 1.159570 -4.541946 0.510071 -2.613421 1.222809 0.792795 -7.872302 5.774272 3.730083 -2.906804 0.114642 -0.462933 2.684647 -0.339548 2.256950 -4.050834 -2.985865 0.494205 0.610031 0.161181 -0.701917 0.981656 -1.440022 -2.060562 -4.593148 -1.921851 4.020034 1.637149 -0.795455 -0.605483 2.795338 -2.539487 1.145028 4.371296 3.134554 0.652988 -3.039889 -10.656852 1.591309 -1.408476 -1.919072 0.474433 -3.205026 -0.929050 1.733088 -2.980098 3.974253 -1.577770 -1.873978 4.438901 -6.098846 -4.187349 -4.036808 -2.253515 0.590044 0.315336 1.170190 -1.700408 0.649924 -0.444754 0.612550 -2.583684 -3.244734 2.263119 2.613984 4.875532 -0.747927 0.495727 4.501321 1.829117 -1.217217 -1.234322 0.076831 -3.031611 1.211887 -7.260433 -0.799021 1.784711 2.135778 -3.509343 0.098583 -1.242808 0.792056 -0.120739 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = 0.930714 -0.756257 -0.398841 1.748047 0.253776 0.218740 0.183126 0.081603 0.193587 -2.462028 -1.169553 1.349771 0.127764 0.103861 0.171802 0.565138 0.774330 0.297060 -2.653571 0.066369 0.353025 -0.225742 -0.212173 -0.053313 0.074722 -0.853997 1.224631 0.710139 0.149250 1.362599 -0.605549 0.999063 1.244607 0.140050 0.814743 0.957304 -0.537545 -0.290362 -0.693147 -0.518108 2.153884 0.541369 0.031168 0.773322 0.098336 1.632079 0.517865 1.485353 1.346609 -0.532349 0.842061 0.037010 -0.688820 -0.146041 -1.876991 0.177221 0.613697 0.228394 -0.699540 0.593029 -0.520462 0.462719 0.490092 -0.018178 2.096935 0.253375 1.645165 1.262356 1.276335 -1.083076 0.259380 0.298845 0.631222 0.417702 1.027187 -0.991119 -0.968336 -0.861682 -0.185085 -1.693997 0.050344 -0.353756 1.904450 -0.997535 -0.429343 -0.020136 0.069822 1.633024 -0.714224 0.131375 -1.676148 0.087146 0.109666 1.606940 0.314999 0.312676 -0.123510 0.418629 -0.200367 0.503797 0.413493 -1.475718 -0.066850 -2.669216 -0.933820 -1.021155 0.429871 0.207864 -1.618323 0.454708 -0.172170 1.147862 -2.039709 -0.304942 0.295751 0.300272 1.106538 -0.238091 -0.446889 -0.319682 0.192381 0.945127 0.722876 -0.860353 0.441617 -0.804733 0.311627 0.264757 0.759031 0.298067 -1.244840 -0.621675 0.443365 0.300269 0.104540 0.649331 0.806822 -0.341215 0.763631 -0.830392 1.279551 -1.688631 -0.347559 -0.933121 -0.738621 -0.733848 2.165301 1.234422 1.385667 0.176557 -0.413016 0.042631 -1.938624 -2.516212 0.128665 -0.044859 0.024425 0.480468 -0.241423 0.589524 -1.103484 0.227990 0.726517 -0.823958 -0.776818 -0.269850 -0.094594 0.216376 -0.499210 -0.606526 -0.011580 0.336713 0.027151 1.505583 -0.426180 -2.717970 -2.021223 -0.867398 1.254107 -0.874406 0.073209 -0.522060 -0.374300 -1.022218 0.111853 -1.133157 0.010315 -0.141047 -1.058245 -1.776738 0.380431 -0.365638 0.139601 0.442469 -1.368038 0.377678 0.767192 0.806603 0.254102 0.457998 -0.075865 -1.313290 -1.071477 0.168628 -0.755858 1.606538 0.626790 -0.259986 -1.033893 -0.711012 -1.227708 0.992902 -1.112763 0.853504 0.143421 -1.027361 0.542993 -1.048608 0.144438 -0.736201 0.557621 0.206855 -2.732987 1.836893 1.409273 -1.270060 -0.273561 -0.718665 0.781215 0.055598 1.195926 -1.046748 -0.581159 0.184044 0.157313 -0.007790 -0.386135 0.556164 -0.133759 -0.385232 -1.654178 -0.901311 1.286134 0.672974 -0.127736 -0.011577 0.700396 -0.084103 0.346651 1.591694 0.669573 0.341902 -1.188176 -3.527550 0.418149 0.851652 -0.170998 0.566923 -1.061560 -0.632319 0.165000 -0.784664 1.362333 0.155694 -0.402533 1.338953 -1.399044 -1.287549 -1.247940 -0.567991 0.179105 -0.236854 0.655052 -0.737918 0.033071 -0.391477 0.458731 -0.550980 -0.682980 0.097082 0.725636 1.202480 0.379828 0.016070 1.401694 0.490708 -0.581901 -0.417514 -0.016180 -0.792009 0.640480 -1.738663 -0.434274 0.122515 0.557768 -0.978171 0.279671 -0.086338 0.728926 0.010216 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 1.626562 -0.596408 -0.522320 2.760742 0.355339 0.009172 0.682834 0.726343 0.058738 -4.389824 -2.218613 1.287475 0.377215 -0.045664 0.485081 0.794994 0.924654 0.940901 -4.422732 0.082859 1.100203 0.060264 -0.343617 -0.385780 -0.047215 -1.309123 0.425245 1.300763 0.256663 2.667864 -0.946845 1.321604 2.368216 0.121519 0.869926 2.055010 -0.129948 -0.170410 -0.463727 -0.529001 3.783438 1.037569 -0.401370 1.182880 0.199541 2.984048 0.148735 2.742634 0.041306 -1.198125 1.531701 -0.897002 -1.220270 -0.299393 -2.704145 0.633835 2.377413 1.538515 -1.370015 1.517202 -1.087761 0.700732 1.030469 -0.187705 3.146109 1.513164 2.115960 2.229169 2.772870 -2.149816 0.347400 0.487207 0.592957 -0.052605 1.184334 -1.546474 -1.111687 -2.544128 0.050953 -3.569085 -0.324032 -0.325073 3.940077 -2.133859 -0.228000 0.996671 0.566411 2.686964 -1.520927 0.286694 -2.786850 0.050720 -0.189513 3.677744 0.374086 0.404508 -0.379727 1.022511 0.176595 1.041270 0.327380 -2.205134 -1.509623 -4.695320 -1.928883 -1.531797 0.386921 0.558411 -3.054005 -0.146084 1.086079 1.685371 -4.028973 -0.336056 0.936366 1.190064 1.527193 0.413859 -1.850756 -0.135453 -0.066725 0.794593 1.276477 -1.421797 0.673655 -1.577440 0.268624 0.497486 0.915818 0.338230 -3.146467 -0.882552 0.585247 -0.517954 0.124237 1.004028 1.192117 -0.889702 1.400428 -1.983523 2.321710 -3.481283 -0.278395 -1.257390 -2.345040 -1.087614 3.211042 2.160851 1.665416 0.238069 -1.288793 -0.282879 -3.246001 -4.393507 0.269777 0.224772 0.888346 0.442309 -0.609980 0.635451 -1.838751 0.423358 1.121187 -1.347443 -1.070778 -0.392831 2.214742 0.106473 -1.019284 -1.303475 0.146841 0.978663 -0.207564 2.342296 -0.961015 -2.862464 -3.689398 -1.672823 2.389651 -1.231543 0.053459 -1.046067 -0.453885 -2.547225 0.551996 -1.891028 0.433502 -0.169476 -1.838990 -3.308662 0.968146 -0.603704 -0.492458 0.894139 -2.321777 0.471024 1.484943 1.040831 0.418034 0.457088 0.214369 -2.501686 -2.285694 0.026701 -1.109233 2.692733 1.723410 -0.011093 -1.395572 -1.124840 -2.227235 2.127790 -1.499914 1.245547 -0.067186 -1.334389 1.612856 -1.976558 -0.358299 -2.061875 1.005810 0.591197 -3.598350 3.603278 2.135413 -2.007811 -0.637793 -1.450030 1.131585 0.546568 2.352259 -1.855453 -1.306191 0.737756 -0.189786 -0.129194 -0.889295 1.007911 -0.548500 0.066596 -2.745169 -1.276225 2.093249 1.601757 -0.392051 0.785810 1.299535 -0.083867 0.459303 2.849708 1.235770 -0.154419 -1.761682 -5.255251 1.163577 0.364926 -0.240084 0.130916 -1.654545 -1.210248 0.502022 -0.340664 2.475449 1.383721 -0.688098 2.498964 -2.691832 -2.550395 -1.738464 -0.270030 0.653470 -0.908348 0.600103 -1.154506 0.463352 -0.094679 0.658280 -0.055368 -1.879322 -1.060412 0.753503 2.484548 0.202986 -0.549276 2.844484 0.547775 -1.041196 -0.441032 -0.138909 -0.525624 0.965943 -2.199397 -0.709788 0.014577 1.125647 -1.790182 1.176477 -0.214238 0.464204 0.840969 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp___GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = 2.871667 -2.325940 -2.350632 8.884545 0.518860 2.223195 1.148901 0.350227 0.876392 -12.998691 -4.521664 8.679439 1.170064 2.305695 -0.849564 1.660163 3.058918 2.783381 -12.210841 -1.353676 2.420062 1.025498 0.665116 -0.352080 0.154839 -2.231560 7.477945 1.810221 1.836593 6.962200 -1.741755 5.956981 6.580920 -0.098299 1.675709 4.121514 -1.100049 -0.960639 -5.163853 -4.386974 8.896002 1.418619 1.228755 5.395707 -2.317645 7.427608 3.535679 5.575964 6.857244 -3.218307 1.544686 1.748247 -2.783651 -2.534586 -7.281275 0.833131 1.189646 2.865614 -1.731697 2.275636 0.295325 0.889743 2.546800 -0.513716 7.823267 2.185237 6.728838 7.679652 5.581495 -5.648834 1.654095 0.293932 -0.050470 2.265649 6.523269 -5.382946 -4.776296 -1.505755 -2.538925 -8.648779 -1.098862 -1.951156 9.734000 -4.817652 -1.382531 -1.889024 1.226148 7.497918 -1.678642 1.331865 -7.831354 -0.909337 1.011971 6.251740 1.493729 1.007188 -1.531845 0.973872 -1.263043 1.156803 2.996507 -6.746488 2.857986 -9.232943 -2.753171 -5.000366 1.807872 3.638645 -6.666662 1.667752 -5.446391 6.326504 -11.547020 -2.757940 0.492246 2.125492 7.451600 -0.347105 -1.953978 -0.781457 1.861373 2.086768 2.864508 -5.118435 2.527172 -1.019502 -1.555884 0.285767 2.369276 2.650779 -7.637303 -4.787671 1.002254 1.589674 1.791553 3.876823 5.329364 -0.475150 3.065512 -4.500520 5.418330 -6.360684 -3.469758 -1.317015 -4.405948 -4.796185 9.982726 3.789298 6.659606 -1.400700 -2.792539 -0.265524 -7.986365 -10.636945 1.546280 0.519018 -0.661515 5.196235 -1.676889 3.229990 -6.704786 2.341190 4.776116 -1.935265 -3.891923 0.260991 -1.938944 0.904730 -1.016297 -2.486056 0.217073 -0.977176 1.775455 8.715683 -1.809881 -12.451894 -11.291819 -2.663897 6.209022 -4.169001 -0.663037 -3.002945 -2.907107 -2.894263 -1.417161 -5.716111 -0.671491 0.135322 -5.366932 -8.964045 3.650130 -1.816735 -0.948284 3.986425 -6.129692 1.616594 3.590371 4.859573 0.613459 0.399925 -0.549912 -5.625453 -3.862585 1.634159 -4.902790 6.117567 1.854482 -0.702735 -6.166190 -3.621293 -4.649386 4.064062 -4.176905 5.004523 0.648844 -2.263393 1.728402 -5.918483 2.395211 -4.160376 2.123501 2.129765 -14.553276 7.764126 3.900545 -4.193596 -0.072906 -0.814663 2.989674 -0.059432 2.563478 -5.447899 -5.465842 1.955842 0.683036 0.491154 -3.824130 0.729058 -0.807962 -2.779307 -7.026855 -3.527397 6.075447 1.711570 -1.279566 -0.585024 5.193064 -2.811827 0.732882 7.547566 5.319501 2.044819 -4.792344 -14.074159 2.613268 3.149569 -0.242794 0.488767 -5.903045 -1.610004 3.780992 -5.010788 5.169177 -1.827275 -2.707118 6.155994 -8.439493 -5.392514 -5.097137 -3.174263 2.604529 0.946809 1.634044 -3.076944 1.511608 -0.865287 0.911773 -3.320287 -4.055198 3.972003 4.464675 6.302185 -0.155426 2.108536 6.779020 2.203486 -2.212703 -0.485788 0.009698 -4.206740 0.055302 -10.728165 -0.164286 2.924478 3.041512 -4.931746 0.775526 -1.925519 1.185694 -0.348660 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.762370 -0.775739 -0.388650 2.176859 0.193645 0.519821 0.370084 0.167173 0.226415 -3.317869 -1.308406 1.543793 0.237896 0.493728 0.082374 0.397453 0.823420 0.654953 -3.132677 -0.280726 0.688543 0.156189 0.208531 0.026639 0.022457 -0.763234 1.341457 0.658905 0.394580 1.849516 -0.531164 1.418690 1.718464 0.023294 0.438063 1.198328 -0.120413 -0.257864 -1.045377 -0.795601 2.437060 0.301519 0.152420 1.171863 -0.440891 2.006584 0.626474 1.732477 1.648047 -0.862931 0.846905 -0.273222 -0.698329 -0.493234 -1.952063 0.276325 0.695119 0.887904 -0.602601 0.727814 -0.258120 0.327760 0.637730 -0.281585 2.085861 0.719594 1.659368 1.835308 1.547930 -1.541524 0.334331 0.208679 0.081223 0.500615 1.233257 -1.357712 -0.898241 -1.328016 -0.462644 -2.127125 -0.310933 -0.505179 2.357332 -1.287370 -0.363695 -0.014696 0.116022 1.913891 -0.575045 0.422957 -2.099663 -0.148907 0.455972 1.577337 0.353072 0.128694 -0.288112 0.309485 -0.241428 0.471359 0.674363 -1.669187 -0.046200 -2.730448 -1.039464 -1.184330 0.483539 0.741840 -1.918106 0.377859 -0.637854 1.294793 -2.879538 -0.582332 0.269364 0.753893 1.474284 0.100528 -0.730686 -0.353692 0.493289 0.681553 0.891178 -1.267857 0.708237 -0.827295 -0.164487 0.195650 0.661707 0.428526 -1.635356 -1.147120 0.284847 0.366310 0.349233 0.847877 1.227960 -0.158576 0.891396 -1.164198 1.520363 -1.839014 -0.714686 -0.568401 -1.103049 -1.111114 3.015670 1.152780 1.631703 -0.033143 -1.013851 -0.050380 -2.039261 -2.832602 0.239910 0.116086 0.183615 1.128566 -0.467866 0.807365 -1.493033 0.539144 0.878500 -0.643195 -0.948889 0.025419 -0.526531 0.198348 -0.382072 -0.894114 0.193759 0.179401 0.057602 2.054675 -0.497400 -2.743537 -2.674269 -0.912225 1.628452 -1.034957 -0.043225 -0.710565 -0.568929 -1.141131 -0.082163 -1.433715 -0.228982 0.035738 -1.589847 -2.344118 0.911320 -0.511008 -0.200115 1.036169 -1.619719 0.394538 0.784318 1.335864 0.309077 0.214622 -0.153561 -1.603670 -1.301852 0.098769 -1.173344 1.733006 0.550924 -0.161458 -1.377285 -0.988241 -1.205396 1.259010 -1.189266 1.145865 0.142462 -0.789582 0.575745 -1.466447 0.331352 -1.191048 0.620383 0.613249 -3.515432 2.069660 1.156864 -1.210978 -0.223445 -0.597031 0.779751 0.120268 1.040134 -1.258014 -1.117179 0.510690 0.271176 0.076143 -0.990109 0.362038 -0.208033 -0.598606 -1.877730 -1.007186 1.524824 0.699155 -0.293217 0.017072 1.361482 -0.236026 0.185437 1.984867 1.156829 0.273476 -1.120513 -3.716758 0.758921 1.268630 -0.065715 0.348293 -1.727213 -0.468714 0.801509 -0.971431 1.472900 0.143028 -0.370208 1.702040 -1.899228 -1.477854 -1.285264 -0.679590 0.558218 -0.042083 0.490899 -0.834802 0.360816 -0.182139 0.254931 -0.605809 -1.036396 0.316610 0.957063 1.609441 0.046033 0.422198 1.822230 0.542959 -0.703241 -0.214357 0.018723 -0.936695 0.269118 -2.251806 -0.166895 0.578551 0.751760 -1.254277 0.298956 -0.474341 0.252295 0.044200 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp___GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 2.279631 -2.606391 -2.301021 5.294885 0.215091 1.132495 0.536000 -0.475148 0.489258 -8.170758 -2.922565 4.621873 0.997533 1.249804 -0.324471 2.257670 1.561740 1.059460 -6.537576 -0.504663 1.200122 -0.423329 -0.233650 0.036343 -0.048163 -2.076526 4.318144 1.034180 0.729794 3.979291 -1.183602 3.787820 3.853063 -0.165368 1.379577 2.557364 -0.969918 -0.307706 -3.006380 -1.919375 5.515198 0.942765 0.530647 2.087357 -1.313896 4.408814 1.698859 5.398809 3.630467 -1.808572 2.461624 0.280010 -1.816653 -0.743173 -4.840992 0.575291 1.377294 1.010273 -1.402444 1.387493 -0.504390 1.225842 1.501388 0.462200 5.696255 1.047999 4.903910 4.343525 3.142011 -3.459419 0.991939 0.684460 0.079181 0.581950 4.538759 -3.902172 -2.894652 -0.525995 -0.514462 -4.184527 -0.213366 -0.607509 6.241685 -3.064261 -2.038983 -0.582204 1.092140 5.055357 -1.503061 1.509178 -4.723581 -0.095502 0.482957 5.080937 1.016377 0.833649 -1.449146 1.112943 -0.643459 0.834908 1.792598 -4.037689 0.521999 -6.048072 -2.306699 -3.092777 1.329082 1.972957 -4.816566 0.674285 -1.954813 3.485537 -6.843009 -0.613128 0.818150 1.534528 6.193882 0.496107 -1.531200 -0.239388 0.997101 1.735385 1.834243 -2.193897 1.548940 -1.502614 0.815526 0.483770 1.597609 1.135600 -5.737702 -1.927679 0.932208 0.981464 0.891278 2.400626 3.529256 -0.851551 2.046792 -2.375078 3.128476 -5.032765 -1.588983 -1.670879 -3.708304 -2.456580 6.527759 3.206838 4.498391 -0.661830 -1.856015 -0.116096 -5.644867 -7.823105 0.093785 0.384801 -0.353779 2.571633 -0.889262 1.976651 -3.678696 2.031097 3.211641 -1.808485 -2.432208 -0.072179 -0.303978 0.591998 -1.313101 -1.161090 -0.289631 -0.454492 0.652073 5.598795 -0.706079 -8.170289 -7.150847 -2.032136 3.630578 -2.474079 0.178421 -1.765024 -1.643322 -3.278861 -0.385583 -3.331138 0.323502 0.273542 -3.301431 -5.163624 1.710833 -0.831508 -0.546027 1.827056 -3.874720 0.936494 2.029845 2.050504 0.629358 0.809887 -0.064453 -3.991493 -3.108128 1.295536 -3.239488 4.218914 1.787511 -0.557037 -2.494998 -2.264187 -3.511285 2.134279 -3.649378 2.716218 0.389769 -1.668122 1.090152 -3.992321 1.048115 -2.196857 1.400199 0.848335 -7.800292 5.576941 3.260910 -2.663136 -0.105516 -0.678406 2.070578 -0.111388 2.241732 -3.080955 -2.567928 0.751757 0.330719 0.137459 -0.921868 0.974475 -0.913983 -1.524095 -4.298371 -2.162479 3.272246 1.483239 -0.542893 -0.176061 2.504052 -1.693579 0.072454 4.700394 2.526681 0.771176 -3.143469 -10.288315 1.401600 0.864173 -1.408371 0.866886 -3.436436 -0.862515 1.759695 -3.041440 3.391340 -0.719506 -1.516852 3.746845 -5.299592 -3.567406 -3.227030 -1.980392 0.840539 0.169064 0.905169 -1.790276 0.628658 -0.691106 0.748265 -2.009945 -2.764166 1.891229 2.349537 4.314583 -0.005743 0.794457 4.019753 1.297015 -0.846976 -0.948825 0.039701 -2.195330 1.374876 -6.554909 -0.782829 1.306812 1.838183 -2.928959 0.318389 -0.882105 0.891419 0.053398 -PE-benchmarks/cutting-a-rod.cpp__main = 0.798910 -0.575523 -0.233731 1.517876 0.108004 0.234003 0.440795 0.380225 0.123789 -2.781884 -1.318209 0.594113 0.233567 0.256654 0.263536 0.491187 0.521741 0.666954 -2.586294 -0.153616 0.748099 0.155250 0.212824 -0.156604 0.020877 -0.707368 0.169964 0.528144 0.271923 1.620538 -0.537076 0.894020 1.430849 0.054356 0.255101 1.148530 0.060540 -0.096883 -0.393676 -0.389414 2.051800 0.416928 -0.145276 0.675547 -0.233178 1.684402 0.100333 1.725809 0.470129 -0.775776 0.960911 -1.081748 -0.753523 -0.135726 -1.468114 0.403946 1.284858 1.070188 -0.579403 0.859355 -0.446931 0.442654 0.538020 -0.455915 1.667805 0.882053 1.173891 1.316364 1.447347 -1.351254 0.248898 0.203931 0.061149 -0.017070 0.728555 -1.216816 -0.409993 -1.831662 -0.029478 -2.037042 -0.206894 -0.224222 2.259424 -1.278435 -0.170861 0.669178 0.191682 1.571342 -0.658318 0.372769 -1.628009 0.045883 0.191832 1.836446 0.267854 0.078822 -0.329994 0.490599 0.096943 0.481665 0.430848 -1.117655 -1.000340 -2.606024 -1.010838 -0.847804 0.346308 0.537067 -1.749989 -0.007641 0.568706 0.908935 -2.466689 -0.175718 0.543000 0.918709 0.863057 0.350110 -1.004732 -0.139818 0.090117 0.480503 0.730741 -1.051592 0.477672 -0.943890 0.027742 0.248399 0.547652 0.110710 -1.636988 -0.724075 0.196695 -0.027546 0.169522 0.643531 0.886178 -0.313106 0.834428 -1.145081 1.256856 -1.910371 -0.219504 -0.527304 -1.320965 -0.734567 2.496488 1.121606 0.988687 0.131302 -0.939927 -0.228173 -1.699825 -2.474988 0.176262 0.237578 0.679591 0.580457 -0.383272 0.450955 -1.067982 0.412814 0.460290 -0.695496 -0.610110 -0.032887 0.702488 -0.009237 -0.558471 -0.940188 0.211811 0.651551 -0.323690 1.353975 -0.475199 -1.420878 -2.106608 -0.997770 1.406143 -0.748474 0.131646 -0.594051 -0.185607 -1.403888 0.260981 -1.103462 0.115250 0.170417 -1.394483 -1.961510 0.654359 -0.369175 -0.342149 0.801702 -1.311122 0.247301 0.641965 0.896995 0.267893 0.206586 0.153471 -1.563833 -1.436525 -0.158259 -0.915598 1.427783 0.793386 -0.035626 -0.889991 -0.733882 -1.094968 1.229335 -0.989648 0.735162 -0.233426 -0.570988 0.762546 -1.191821 -0.000276 -1.288792 0.558746 0.490937 -2.371993 1.996263 1.075845 -0.992326 -0.310480 -0.850953 0.629079 0.299882 1.262118 -0.984133 -0.811870 0.465322 -0.148412 -0.014909 -0.696213 0.548674 -0.338376 -0.155032 -1.489710 -0.700101 1.109398 0.852305 -0.233539 0.544222 1.136886 0.132978 0.136254 1.661160 0.732308 -0.252252 -0.949650 -3.148724 0.743605 0.961977 -0.095083 0.210055 -1.314280 -0.499635 0.569357 -0.221540 1.312473 0.988744 -0.121651 1.454657 -1.478694 -1.356654 -0.821482 -0.240875 0.467726 -0.438032 0.217187 -0.617691 0.330074 0.059698 0.251800 0.010468 -1.130353 -0.599561 0.472470 1.629003 0.081236 0.004930 1.645857 0.306442 -0.610839 -0.137055 -0.125957 -0.304021 0.433176 -1.199830 -0.247110 0.248016 0.597349 -1.064818 0.586229 -0.279114 -0.037511 0.377529 -PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = 0.388301 -0.700763 0.086815 1.200098 0.320292 0.421191 0.192417 -0.134153 0.216073 -1.604562 -0.647126 1.159508 -0.082935 0.236622 -0.072090 0.058602 0.686373 0.211004 -1.725074 -0.210818 0.079124 -0.168170 0.162882 -0.043549 0.032387 -0.529389 1.453177 0.737451 0.187215 0.827780 -0.301140 0.554599 0.798714 0.333073 0.533703 0.658132 -0.190861 -0.240958 -0.889125 -0.686033 1.394855 0.166222 0.151720 0.700371 0.000909 1.075893 0.893084 0.612575 1.837387 -0.272529 0.313734 0.033871 -0.436751 -0.437402 -1.378397 -0.058127 -0.062843 0.083496 -0.415210 0.336166 -0.072664 0.237653 0.221935 -0.113949 1.197545 -0.220441 1.058816 0.751398 0.602290 -0.952741 -0.023549 0.294063 0.498207 0.687288 0.591707 -0.756351 -0.742875 -0.537707 -0.266060 -1.000817 -0.080664 -0.284739 0.858542 -0.397513 -0.373621 -0.219195 -0.391612 0.869114 -0.198527 -0.018906 -1.256335 0.037790 0.440933 0.605565 0.360695 -0.010675 0.233967 0.044815 -0.135293 0.462342 0.515493 -1.033973 0.437289 -1.759150 -0.266184 -0.791157 0.428956 0.039434 -0.616139 0.383881 -0.515745 0.774158 -1.092388 -0.492045 0.193160 0.125388 0.408434 -0.814018 0.266841 -0.262824 0.363359 0.649478 0.672129 -0.806422 0.276154 -0.055864 0.148470 0.016370 0.529501 0.277880 -0.310997 -0.729336 0.327422 0.637798 0.129965 0.189412 0.373884 0.129757 0.410951 -0.441715 0.918244 -0.688679 -0.094000 -0.432014 0.021067 -0.633383 1.700233 0.512006 1.058001 0.118396 -0.123799 0.191398 -0.839531 -1.656474 0.297247 0.120133 -0.108885 0.492126 -0.184152 0.576058 -0.827736 0.039450 0.422068 -0.350211 -0.590349 0.042403 -1.270556 0.185104 -0.238743 -0.312053 0.279013 0.164415 0.106312 1.025391 -0.378107 -2.252776 -0.987284 -0.584780 0.781993 -0.694660 -0.179275 -0.142530 -0.455280 -0.258264 0.023816 -0.755263 -0.019806 -0.063670 -0.919184 -1.182737 0.337242 -0.408606 0.412112 0.665304 -0.873032 0.233306 0.175396 0.642471 0.117549 0.349407 -0.052231 -0.724244 -0.446192 0.000937 -0.483341 0.937233 0.019443 -0.129268 -0.947635 -0.558643 -0.490958 0.513796 -0.591822 0.642034 0.097655 -0.760028 0.155981 -0.507874 0.577268 -0.176224 0.404191 0.470182 -2.190961 0.921320 1.019907 -0.775140 -0.323716 -0.245793 0.228571 -0.041371 0.689696 -0.828738 -0.542239 0.193313 0.175773 0.066574 -0.298605 0.180623 0.277989 -0.501199 -1.239872 -0.821369 0.722848 0.270165 -0.036723 -0.142337 0.733788 0.133439 0.103557 1.224022 0.337135 0.561395 -0.779380 -2.458263 0.388812 1.357021 0.056337 0.714176 -0.819673 -0.357034 0.269521 -0.747326 0.754122 -0.046765 -0.400873 0.922420 -0.610049 -0.654343 -0.877457 -0.740848 0.256496 -0.031103 0.596651 -0.486083 -0.004516 -0.551141 0.050256 -0.575690 0.026129 0.493977 0.621280 0.643728 0.387382 0.359654 0.841308 0.200236 -0.498720 -0.204049 -0.010448 -0.691270 0.513525 -1.395088 -0.205465 0.220035 0.409140 -0.506738 -0.130405 -0.079893 0.487524 -0.204301 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.618265 -0.071276 -2.023133 4.912790 -0.268015 1.427280 0.504136 -0.884140 -0.382409 -6.205208 -2.909483 2.742756 1.330715 1.816545 -0.241193 2.274466 0.789995 0.878660 -5.783952 -0.843732 1.802684 -0.539341 0.663500 0.257879 -0.121513 -2.191258 3.373503 1.170995 0.632544 4.190830 -0.909134 3.703551 3.691818 -0.195152 0.646146 2.415892 -1.373285 0.003952 -3.020556 -1.438950 3.990762 0.564378 0.351830 0.942100 -2.228343 4.390492 1.655951 2.905536 1.568983 -2.128714 1.873744 2.057530 -1.596092 -0.782364 -3.288186 0.170456 1.278950 1.541084 -0.680210 1.096044 -0.992836 1.081067 1.525641 0.614639 4.270073 1.156644 3.840180 3.592415 2.704622 -3.698211 1.161889 0.557715 -1.136800 -0.273155 3.215376 -2.754197 -2.859006 0.780787 -0.516269 -4.497119 -0.948500 0.215741 5.040033 -2.929353 -2.097923 -0.908249 0.935923 4.608225 -1.659412 1.727746 -3.715838 -0.250791 -0.645751 4.251616 1.324524 0.356454 -0.894072 0.882138 -0.372481 0.696475 0.680285 -3.614935 0.373827 -4.020879 -2.362452 -2.954697 1.918938 2.690577 -4.406275 0.557880 -1.784369 2.941441 -6.031016 -0.411194 1.050018 2.450009 3.748196 0.588836 -1.524941 -0.118875 1.227558 1.681467 2.789749 -1.819334 2.070335 -0.660820 0.154075 0.325652 1.223179 1.070494 -4.522667 -2.186235 0.779975 -0.998820 1.526549 2.579826 3.475167 0.094196 2.087879 -2.303663 3.260591 -4.628001 -0.959340 -1.311847 -3.173016 -2.509243 2.108890 3.534518 2.776222 -1.249062 -1.540827 0.289061 -5.076824 -5.121790 -0.769627 1.034963 -0.408301 2.564567 -1.181505 2.551448 -3.597158 2.305583 2.786522 -1.388863 -2.550060 0.367432 1.617754 1.204668 -1.334170 -1.094781 -0.577394 -2.289055 0.332208 5.607440 -0.262679 -5.702276 -6.762945 -2.124001 3.761213 -2.492450 -0.236896 -2.539360 -1.694711 -2.788202 -0.381881 -3.185359 -0.633565 1.095386 -2.093561 -4.791436 1.987161 -0.603793 -1.729322 1.998937 -3.837702 0.384581 3.361999 0.401844 1.161031 0.407728 -0.321242 -2.173968 -1.502762 1.546151 -3.286989 2.763152 2.295920 -0.709140 -2.645508 -2.367144 -2.678771 1.891227 -0.974713 2.757033 -0.306090 -0.407530 0.950224 -3.701182 1.279739 -1.422903 0.966068 0.836957 -6.911497 4.268571 3.161854 -1.921819 0.228745 -0.087561 1.885306 -0.250397 1.359113 -2.945697 -2.690245 0.294427 0.495994 0.230588 -0.340397 0.726136 -1.479724 -2.474709 -2.860376 -1.063069 3.126554 1.407267 -0.463248 -0.052233 2.681689 -1.695498 1.760976 2.728776 2.444212 -0.003079 -2.226314 -7.760914 1.555286 -1.389771 -1.305441 0.296162 -1.767117 -0.669114 2.122612 -2.337063 3.343862 -0.772007 -2.302860 3.707278 -4.110433 -3.388766 -3.829151 -1.641041 0.612642 0.353187 0.038089 -1.663633 0.972225 -0.040978 0.096227 -1.769407 -2.643260 1.978238 2.218349 4.541088 -0.400846 1.016108 4.034915 1.461404 -0.510432 -1.511631 0.343843 -2.647575 0.542266 -4.651461 -0.596574 1.969765 1.959281 -2.723265 -0.461993 -1.072063 0.006500 0.409938 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.732990 -0.408762 -0.205248 1.584591 0.146449 0.394875 0.309507 0.114386 -0.074335 -2.479700 -1.396775 0.286552 0.227671 0.362466 0.381146 0.538409 0.585973 0.316980 -2.674865 -0.160779 0.745682 -0.173894 0.272808 0.140304 0.029850 -0.932001 0.373020 0.733294 0.162551 1.570222 -0.526632 1.128833 1.385405 0.117535 0.439379 1.085848 -0.418494 -0.206223 -0.452715 -0.278988 1.964041 0.228623 -0.025106 0.390989 -0.295054 1.732663 0.140551 1.478046 0.746842 -0.752627 1.229030 -0.638446 -0.626559 -0.048472 -1.523147 0.166682 1.009716 0.773395 -0.565248 0.659856 -0.693800 0.475236 0.497891 -0.292007 1.809491 0.649157 1.332515 1.188173 1.230980 -1.332606 0.269933 0.304072 -0.045191 0.036890 0.353993 -1.108559 -0.405077 -1.491543 -0.011601 -1.909216 -0.267685 -0.204715 1.856674 -1.053592 -0.482162 0.307470 -0.023103 1.625426 -0.700403 0.476719 -1.626101 0.026291 0.181309 1.358107 0.262245 -0.001435 -0.051324 0.346032 -0.085849 0.544251 0.157139 -1.235405 -0.913859 -2.388566 -1.158269 -0.869364 0.632261 0.523115 -1.791700 0.249897 0.275131 0.650796 -2.136408 -0.228241 0.443772 0.954932 0.435275 0.455183 -0.952317 -0.481162 0.309953 0.891663 1.037497 -0.774856 0.712205 -1.227489 0.160742 0.285327 0.627368 0.088750 -1.168443 -0.778341 0.326517 -0.212690 0.240049 0.672403 0.953905 0.046056 0.862484 -0.921312 1.370529 -1.881430 -0.183632 -0.866271 -0.954965 -0.754184 1.953384 1.502902 0.900070 0.257678 -0.823103 0.109236 -1.773245 -2.036424 -0.232721 0.165612 0.503598 0.560424 -0.419745 0.761257 -0.997794 0.483837 0.370134 -0.697363 -0.812213 -0.160806 0.296763 0.302342 -0.569631 -0.799087 0.147769 0.209933 -0.564233 1.574471 -0.338337 -1.502472 -2.076515 -1.065973 1.387349 -0.854928 0.069315 -0.709874 -0.194061 -1.347383 0.234052 -1.149674 -0.306174 0.170627 -1.231364 -1.855665 0.647462 -0.358474 -0.323919 0.736346 -1.368726 0.209638 1.015969 0.848701 0.501579 0.324624 -0.156254 -1.183275 -1.140108 -0.074024 -0.923129 1.324738 0.857385 -0.242761 -0.916202 -0.871093 -0.985557 1.149769 -0.568083 0.818641 -0.107655 -0.680489 0.562702 -1.174287 0.157706 -0.842108 0.471302 0.417868 -2.766267 1.679604 1.189266 -1.064837 -0.319118 -0.936543 0.710423 0.114480 1.100682 -0.793828 -0.544251 0.200086 0.233091 0.007300 -0.494076 0.518249 -0.308322 -0.546802 -1.436463 -0.766984 1.263103 0.806324 -0.148424 0.286192 1.039991 0.288464 0.587814 1.397964 0.613950 -0.247225 -0.754513 -3.229216 0.624725 1.050138 -0.185724 0.399170 -1.113330 -0.530367 0.345139 -0.431991 1.414507 0.761989 -0.217242 1.483939 -1.080069 -1.313014 -1.288291 -0.287032 0.199860 -0.314822 0.150223 -0.679341 0.245421 -0.027912 0.205111 -0.116256 -1.004233 -0.560325 0.556357 1.549912 0.128599 0.168584 1.552109 0.486544 -0.522366 -0.490645 0.096933 -0.640398 0.579900 -1.147476 -0.398077 0.339289 0.564892 -0.991555 0.140919 -0.229240 0.182823 0.252268 -PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = 2.489049 -3.252895 -3.032655 8.110124 0.314523 1.586758 0.670048 -1.382001 0.794541 -10.177799 -3.752728 6.693505 1.260943 1.179950 -0.479571 2.298074 2.080469 1.460958 -8.743154 -0.746060 1.260281 -0.735006 -0.470780 -0.313267 -0.250629 -2.705569 7.658380 1.998105 0.791871 5.100807 -1.040271 4.925950 4.735443 0.015948 1.732748 3.329538 -2.134078 -0.036281 -4.349325 -2.725011 7.289561 1.640497 0.893446 3.028968 -1.493176 5.764464 3.054802 5.802550 5.447196 -2.078400 3.400201 3.793712 -1.984005 -1.714799 -6.805001 0.370520 2.385234 1.221421 -1.534836 1.667987 -0.994353 1.431834 2.025085 0.949686 8.111693 1.220066 7.071603 6.082142 4.058416 -4.626989 1.207484 0.901049 0.728279 0.514955 6.730037 -5.227789 -5.408951 0.404821 -1.910619 -6.263175 0.080810 -0.635665 7.954187 -3.559830 -2.656834 -1.777300 1.501431 6.360098 -1.938818 1.356022 -6.225017 -0.087614 -0.080434 7.791704 1.797507 1.200013 -1.419422 1.261530 -1.038061 1.173413 2.539090 -5.472244 2.598013 -8.717661 -3.218771 -4.321427 2.566835 2.172204 -6.287768 1.288280 -3.771615 3.414174 -9.426135 -1.342061 1.079996 1.928726 8.027245 -2.474754 -1.503061 0.241194 1.413602 2.571070 2.898481 -2.958351 1.905856 -1.339081 0.763459 0.345793 2.066909 1.680988 -6.986401 -2.836295 0.426722 1.549217 1.542386 2.864121 4.407583 -0.704129 2.504359 -3.310672 4.575221 -7.039452 -1.278936 -2.452661 -3.798820 -3.372885 6.221315 3.524758 6.401828 -1.831220 -2.374522 0.111523 -7.979769 -10.308484 0.250553 0.599895 -1.192816 3.310777 -1.117271 2.784269 -5.025491 2.539022 4.970185 -2.120051 -3.105397 0.366069 -0.061715 1.064937 -1.754416 -1.542661 -0.552204 -1.781325 1.527469 7.701522 -0.738983 -12.376596 -9.956812 -2.382650 4.728137 -3.471335 -0.323919 -2.465553 -2.596639 -3.467100 -0.494114 -4.616528 0.231143 0.543719 -3.980531 -6.547358 2.118492 -1.062984 0.266019 2.431203 -5.201459 1.117762 3.721085 2.420013 0.822889 1.480390 0.326417 -4.807034 -3.024440 1.828973 -3.918005 5.525498 2.101763 -0.654056 -3.786656 -2.872698 -4.812523 1.960798 -3.327286 3.612662 0.474728 -2.654591 1.212962 -5.069678 2.258903 -2.544294 1.301932 1.003526 -10.574656 6.943017 4.475611 -3.329609 -0.105113 -0.219446 2.478147 -1.001549 2.504228 -4.439416 -3.617030 0.833968 0.358047 0.247381 -1.278299 0.913828 -0.869208 -2.702233 -5.914235 -2.968998 4.612972 1.640358 -0.699163 -0.737583 3.075225 -3.407252 0.568840 5.740963 3.546151 1.500793 -4.294415 -13.732400 1.688554 -1.016344 -1.633062 0.659491 -3.442430 -1.523640 2.690628 -2.935762 4.356119 -1.052821 -3.358502 4.903656 -6.998940 -4.496596 -4.751998 -2.845909 1.405561 0.069620 0.926332 -2.710922 0.697294 -1.326261 0.750426 -3.051822 -2.802670 3.524695 3.374589 5.662600 0.127859 0.863902 5.116104 1.924867 -1.442884 -1.526618 0.089114 -3.997282 2.011515 -8.839423 -0.808985 1.858854 2.628138 -3.576071 0.071644 -1.380072 1.706176 -0.003176 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 3.474216 -2.357393 -2.367177 6.690489 0.105412 1.180601 0.815418 -0.028340 0.720944 -9.305958 -3.633522 4.829099 1.151376 0.972626 0.445977 2.718287 2.130710 0.974690 -8.541552 -0.181485 1.763537 -0.644519 -0.448194 0.254717 0.131930 -2.943327 3.990574 1.337483 0.649146 5.281102 -1.661157 4.701012 4.712515 -0.133040 2.092052 3.307247 -1.854793 -0.443034 -2.611528 -1.887730 7.014191 1.809738 0.572919 2.300929 -1.231362 5.744263 0.753478 6.967682 3.162298 -2.421186 4.108775 0.283624 -2.226452 0.092989 -5.864274 0.758074 2.518538 1.420445 -1.777359 2.035841 -1.950337 1.960459 1.945946 0.596337 7.392548 2.252546 5.588949 5.514615 4.356012 -4.057362 1.638259 0.692714 0.228053 0.110007 4.897407 -4.080160 -3.315654 -1.050947 -0.549469 -5.237143 -0.232734 -1.091421 7.491925 -4.062144 -1.625681 -0.212219 1.540344 6.396234 -2.441978 1.879285 -5.766405 0.096447 0.226366 6.810773 0.711980 1.530722 -1.525924 1.347386 -1.025969 0.936225 1.611271 -4.911628 -0.265432 -7.300362 -3.618197 -3.601927 2.012171 2.125269 -6.769769 1.470906 -1.614359 3.447710 -8.788566 -0.586794 0.704489 2.138511 6.547919 1.434418 -1.932161 -0.644519 0.969516 2.785299 2.214914 -2.785087 2.225446 -3.487608 0.393802 1.179416 2.370196 0.968570 -6.806141 -1.893083 1.143694 -0.017395 0.911421 3.431561 4.151772 -1.145938 2.757767 -3.505791 4.203416 -6.571338 -2.147851 -2.987474 -4.217229 -2.888350 7.239621 4.247922 5.309723 -0.180003 -2.612760 -0.264805 -7.684864 -8.812800 -0.578979 -0.060654 0.145801 2.815457 -1.009210 2.142117 -4.522033 2.304264 2.835277 -2.668462 -2.925106 -0.509236 0.843439 0.764971 -1.918813 -1.959269 -0.341917 -0.576767 -0.180040 6.722970 -0.603090 -9.196894 -9.317368 -2.794007 4.745519 -3.012611 0.538502 -2.578320 -1.260268 -3.965697 -0.544109 -4.137380 0.278436 0.389740 -3.337260 -6.422928 2.221118 -0.979057 -0.325293 1.849065 -4.702484 1.144055 3.459644 2.272796 1.029443 1.597532 -0.131584 -4.428286 -3.663844 1.244153 -3.566786 5.127397 2.520271 -1.003732 -2.389330 -3.022190 -4.633004 3.020292 -3.978212 3.294018 0.492990 -2.445298 1.603676 -4.630260 0.448980 -3.365294 1.629309 0.617691 -8.562009 6.187248 3.670762 -3.872900 -0.359342 -2.138008 3.267410 -0.131712 3.430455 -3.122586 -2.519945 0.732717 0.583833 0.077774 -1.248546 1.459555 -1.402888 -1.765538 -5.136861 -2.314716 4.898827 2.169557 -0.827952 -0.204596 3.101912 -1.993526 1.707867 4.910962 3.173460 0.382199 -3.961156 -12.232702 1.560211 0.111825 -1.249344 0.264289 -4.079645 -1.568249 1.897830 -2.103277 4.585498 0.017045 -1.223222 4.786137 -6.437093 -4.793274 -4.266699 -1.681720 0.612731 -0.356209 0.364094 -2.181858 0.855952 -0.277456 1.621515 -1.622592 -3.573246 0.738341 2.686964 5.385653 -0.003398 0.256912 5.219249 2.274156 -1.131657 -1.470760 0.247799 -2.874158 1.398319 -6.828420 -1.071487 1.326832 2.150321 -3.960420 0.927385 -0.741868 1.290869 0.203521 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 1.015516 -0.206671 0.044311 1.489246 0.261341 -0.153503 0.587690 0.666891 0.066243 -2.668720 -1.176894 0.786509 0.118326 -0.114720 0.191625 0.315720 0.668529 0.935061 -2.626526 0.077771 0.716120 0.408942 -0.036564 -0.531475 0.060035 -0.597033 -0.016018 0.644133 0.301356 1.720417 -0.691957 0.514614 1.395840 0.139282 0.554306 1.413242 0.376219 -0.054705 -0.103263 -0.455470 2.364499 0.671915 -0.034059 0.940237 0.258863 1.805161 0.082931 1.520895 0.011729 -0.782929 0.709039 -0.966408 -0.842501 -0.176159 -1.587080 0.547240 1.498997 1.320894 -0.887548 1.150758 -0.343410 0.443863 0.618887 -0.405145 1.610477 1.021456 0.699315 1.352211 1.881135 -1.315275 0.163140 0.207365 0.501306 -0.050506 0.764237 -1.104327 -0.511986 -1.917170 -0.107505 -2.392463 -0.042212 -0.186424 2.532963 -1.438562 0.428484 1.012210 0.243990 1.406082 -0.734163 -0.157817 -1.682815 0.080712 -0.112372 2.327702 0.145823 0.264905 -0.165102 0.590200 0.231980 0.650774 0.264509 -1.235415 -0.960244 -2.926245 -0.993283 -0.894041 0.091124 0.221158 -1.658864 -0.272678 0.768159 1.186025 -2.703208 -0.215948 0.602981 0.732113 0.357954 -0.054908 -0.893239 0.061615 -0.293703 0.318738 0.535870 -1.217649 0.163483 -0.727805 -0.318450 0.247695 0.643360 0.070143 -1.822957 -0.622945 0.118682 -0.224126 -0.077487 0.480298 0.484266 -0.653412 0.831080 -1.490361 1.356845 -1.866330 -0.158919 -0.579483 -1.476130 -0.702514 2.124304 0.691420 0.948925 0.101571 -0.818670 -0.389675 -1.739997 -2.564958 0.620242 0.059428 0.840918 0.443122 -0.326947 0.085264 -1.169489 -0.087168 0.460820 -0.799619 -0.516215 -0.202941 1.358296 -0.214456 -0.610243 -1.111093 0.353938 1.024476 -0.066656 1.006790 -0.851941 -1.298567 -2.085785 -1.082105 1.485893 -0.681210 0.101631 -0.451686 -0.164611 -1.197394 0.359526 -1.237030 0.483155 -0.172724 -1.072827 -2.032875 0.643371 -0.509522 -0.194455 0.689623 -1.236923 0.339208 0.622229 0.641967 0.017070 0.194289 0.417328 -1.653702 -1.451809 -0.178743 -0.480453 1.272244 0.874327 0.238119 -0.942957 -0.640071 -1.171030 1.263067 -0.948126 0.672996 -0.082105 -0.674011 1.176488 -1.050856 -0.008304 -1.484165 0.684143 0.556068 -2.115801 2.051704 1.076879 -1.264970 -0.492212 -0.980526 0.580651 0.477623 1.609994 -1.050084 -0.920844 0.760228 -0.469809 -0.073502 -0.920170 0.585720 -0.214369 0.416453 -1.701823 -0.733619 1.195527 1.025723 -0.302641 0.651350 1.003088 -0.007097 0.140978 1.904696 0.749934 0.044442 -1.235344 -2.924220 0.832853 0.507966 0.340364 -0.026162 -1.010162 -0.710959 0.579235 0.223388 1.436360 1.212831 -0.223892 1.525811 -1.723235 -1.585754 -0.623544 -0.071439 0.719227 -0.766505 0.163279 -0.748420 0.351865 -0.054641 0.516605 0.262651 -0.959264 -0.865301 0.411381 1.579540 0.253179 -0.363034 1.850842 0.148277 -0.716246 0.115414 -0.171791 0.117670 0.359413 -1.108992 -0.354780 -0.102586 0.695625 -1.140822 1.142468 -0.259874 0.134660 0.641496 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = -0.066958 0.019443 0.190931 0.104640 0.177697 0.107448 0.016018 -0.055995 -0.188376 -0.301788 -0.211208 -0.323862 -0.081631 0.049669 0.186491 -0.008322 0.199479 0.039266 -0.134364 -0.064676 0.088773 -0.089316 0.093163 0.104391 0.012785 -0.188364 -0.148179 0.165744 0.010893 0.143135 -0.144214 0.130327 0.117766 0.149757 0.180900 0.109454 0.065486 -0.104534 0.025119 0.023125 0.358011 -0.168541 0.039266 -0.023919 0.109969 0.198375 -0.083707 -0.067193 0.012613 -0.050488 0.141522 -0.345089 0.067504 0.085266 -0.286368 0.040387 0.044461 0.122108 -0.177859 0.075396 -0.157099 0.091668 -0.024800 -0.196186 0.224418 -0.044651 0.082681 0.084003 0.072510 -0.162311 -0.071180 0.103717 0.015022 0.046082 -0.300519 0.112979 0.272099 -0.598845 -0.023226 -0.185030 0.029505 -0.002612 0.162407 -0.002099 -0.090554 0.226182 -0.198225 0.104418 -0.035060 0.007411 -0.288717 0.026198 0.135201 -0.172920 0.111255 -0.139160 0.084245 0.026512 0.009886 0.174092 -0.087471 -0.076941 -0.332097 -0.442135 -0.263327 -0.019334 0.134075 -0.115275 -0.141109 0.018818 0.381595 0.172650 -0.093045 -0.018713 0.017059 0.157219 -0.471722 -0.094307 -0.219334 -0.183195 0.020254 0.159762 0.136811 0.026540 0.106108 -0.338813 0.054140 -0.058445 0.206659 -0.084666 0.154370 -0.143520 0.027499 -0.059961 -0.095973 -0.077690 0.021080 0.111342 0.135086 -0.016316 0.184556 -0.108055 0.189523 -0.212853 -0.082065 -0.026446 0.389150 0.265561 0.015714 0.252185 -0.170764 0.066083 -0.105437 -0.190383 -0.002076 0.034419 0.188855 0.041691 -0.072459 0.127831 -0.039887 -0.049783 0.011139 -0.129112 -0.096282 -0.082035 -0.161797 0.001192 -0.108754 -0.242156 0.154097 0.267344 -0.287214 0.020425 -0.147144 0.268388 -0.058501 -0.225432 0.097721 -0.115123 0.071556 0.040504 0.080210 -0.196374 0.182775 -0.133447 -0.078710 -0.075470 -0.226919 -0.175973 0.025776 -0.100675 -0.155985 0.126749 -0.114938 0.083625 0.054851 -0.034179 0.092249 0.012721 -0.059523 -0.018376 -0.193373 -0.150372 -0.030894 -0.030696 0.164570 -0.029698 -0.199126 -0.159720 -0.027581 0.221335 0.064320 0.034633 0.059678 -0.212251 -0.003389 -0.096969 -0.033148 0.070604 0.076019 0.107710 -0.443907 0.042026 0.141332 -0.212547 -0.188404 -0.332449 0.087407 -0.004243 0.273724 0.029729 0.233229 0.015188 0.104441 0.003733 -0.096564 0.112102 0.097569 -0.024168 -0.290204 -0.248175 0.136627 0.169069 0.013410 0.112038 0.179848 0.346551 0.083391 0.249239 -0.000359 -0.026691 0.029494 -0.180590 0.050084 0.354830 0.071175 0.177134 -0.090907 -0.075836 -0.140027 -0.084323 0.181993 0.165388 0.038362 0.215924 0.140266 -0.099374 -0.071394 -0.019803 -0.014902 -0.234475 0.119949 -0.109914 -0.059886 -0.086771 0.033303 0.094480 -0.019981 -0.348176 -0.044767 0.090847 0.141166 0.083541 0.138659 0.046622 -0.166575 -0.028298 0.077166 0.085926 0.243220 -0.115138 -0.195755 -0.059149 -0.027296 -0.062023 -0.032723 -0.056940 0.045049 0.101381 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -4.212474 3.861014 0.901597 -3.719230 8.431558 -1.565892 1.223597 2.518959 -3.442034 6.946959 -3.034693 0.049223 -1.463476 -8.261469 0.590143 -3.599586 -1.016923 3.201344 0.634980 4.762073 3.027246 -4.769748 0.860837 -0.735831 -2.662048 -7.521889 -0.486110 2.611338 6.072555 -3.882197 2.519485 0.092932 7.374241 -1.305140 6.217390 5.641183 1.758941 5.005120 2.024922 -3.387142 -1.878992 3.106023 -3.831228 -4.809099 0.489200 -0.876709 -5.618790 -3.070109 2.849798 -2.751169 -1.740010 6.274367 -1.889970 -0.509041 -5.229016 4.847578 3.550275 -0.947330 7.480235 0.685569 -0.848371 -1.991397 -6.530573 5.819797 -3.125672 -1.017690 -1.551583 -4.206001 2.495993 0.456664 -2.337474 -2.157134 -1.598891 5.917077 4.198644 -6.287018 0.447232 -3.439213 -8.961498 -5.859674 -4.384980 2.176862 -0.048853 5.867818 1.091906 2.634221 2.274755 3.714593 -1.884021 -8.852841 1.498907 6.786393 -2.814849 -2.491025 -2.873146 7.326918 2.055247 0.160183 -3.532101 -1.842880 1.751461 -1.674836 3.616566 -4.990701 0.809430 -6.711881 -0.608830 -1.366265 1.322531 3.731210 3.293371 1.474858 3.573358 6.432082 -6.376812 0.328627 -6.605098 1.945714 -0.962568 1.878108 -1.747706 3.110416 1.009473 2.436904 6.365278 -9.169474 2.750940 0.110384 -0.185747 -7.453260 0.000000 -2.340653 -1.419655 -2.366150 3.541162 -1.110964 -0.669588 -2.242137 1.524182 2.231551 -3.027851 -1.904542 2.226663 7.687704 -6.260856 2.370487 -1.428118 -2.151068 -1.013855 2.943038 5.177297 5.521686 8.249939 5.958226 -0.047676 5.492650 -6.809517 0.018747 7.081663 2.982694 -5.228288 6.956891 -5.083289 -2.504820 0.669715 5.213053 5.403692 1.363956 -6.547381 -5.197994 4.931390 1.368340 7.043188 -0.112317 -0.099250 -2.642448 6.334258 1.528656 -3.600238 7.834119 2.971394 -5.648291 4.320365 2.947554 -6.125052 -2.670880 4.496024 -5.042158 -0.045190 -2.377668 0.993740 3.678888 -2.768800 -1.956039 -0.961159 -5.431266 6.374638 -1.675557 -0.165532 3.401867 -4.181683 -6.583208 5.627116 0.001791 -1.914654 -5.281523 -5.195283 -4.709626 -5.334027 2.226102 0.643907 -2.706150 -3.090096 -6.092883 -1.330189 4.880119 1.318647 4.067055 -8.505344 -1.529424 3.469171 4.141567 3.078114 -2.100139 -0.707486 0.950309 0.620343 0.966527 -0.716837 5.512136 8.116358 -4.291256 3.566544 -2.451473 -3.182422 3.625834 3.511434 -8.164538 8.214174 1.087919 5.187158 0.240014 1.855482 -2.824876 0.997164 2.005213 -1.778513 0.569097 0.371079 -1.886680 -2.554175 1.002020 -4.531788 -4.471361 -1.096751 2.425618 -0.117551 2.310263 0.140264 -2.754148 -2.073940 -3.398814 1.472949 4.398815 0.170075 -1.258119 4.622569 1.527031 1.926988 0.197695 0.463908 2.748277 3.591562 -7.509886 1.046042 -2.007690 1.801574 -4.078205 -7.981718 2.074409 -4.647335 -3.568282 3.229738 -7.767424 0.393334 -4.833097 0.277952 -7.029703 -0.732739 1.466882 8.154088 1.896641 -2.802330 3.163685 -2.782665 3.670860 -0.740050 0.492679 1.860937 4.614838 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -4.108776 2.432979 2.439726 -3.680800 8.746498 -2.020467 1.310014 2.614740 -0.793095 5.634930 -3.619547 -2.104484 -1.892332 -6.202640 0.863951 -3.417615 -0.927177 3.730058 -0.911148 3.488617 3.357326 -2.160073 0.602181 -1.400690 -1.978761 -3.900692 -2.003536 2.178122 4.070301 -3.060412 0.902044 0.516902 6.917087 -1.107798 6.620049 5.259807 2.124905 5.662017 0.029561 -1.364872 -0.262227 3.506075 -3.539209 -5.515297 1.269123 -1.677901 -5.026390 -3.782475 2.841540 -3.120400 1.018373 5.481542 -1.051424 -0.588573 -3.690905 4.355848 2.538577 1.298752 6.408957 1.641810 -1.928299 1.724790 -7.096422 3.690062 -2.888991 2.691376 -2.254741 -5.536773 -0.243820 0.754860 0.939863 -4.553949 -2.900454 4.435860 2.881537 -4.447909 1.687828 -2.710104 -3.492651 -5.308475 -5.106480 1.932985 -0.898079 4.905165 -0.158155 1.535789 -0.237135 2.595315 -0.993834 -7.279446 0.003928 6.235298 -2.992913 -1.049574 -2.548665 3.378529 1.225219 0.320474 -3.245890 -2.380808 1.905346 -0.837767 3.047447 -1.521371 1.780676 -4.524349 0.342775 1.136190 0.964236 2.482396 2.661663 1.726944 3.262249 5.077501 -4.176839 1.389183 -6.105313 1.978062 -2.650592 1.941144 -1.191312 3.258027 1.392603 1.848126 4.876232 -7.736466 3.167501 0.011801 -1.559075 -5.147144 1.213272 -2.055431 -2.567810 -2.343346 3.579091 0.146697 -1.367705 -1.664454 1.424140 0.772574 -1.537643 -1.257053 0.868649 4.330508 -4.568175 1.357442 -1.614063 -2.695124 -0.826296 2.991365 4.444345 4.468220 7.529695 5.604897 -0.779142 0.195866 -6.737586 0.483670 6.057666 -0.658907 -4.817941 5.663226 -3.484065 -1.056151 1.732968 4.781516 3.758512 2.164857 -3.768204 -3.268980 1.613413 0.574793 6.551362 1.159063 0.701599 -3.488191 3.494323 -1.204980 -3.218811 7.897897 3.406280 -5.790920 1.273048 3.003397 -4.054772 -4.009491 3.346108 -4.064946 -0.376497 -2.313971 1.396163 3.149567 -3.135462 -2.966577 0.607204 -5.253517 5.690602 -1.600271 -1.411587 2.308911 -4.882694 -4.830427 6.858010 0.481057 -2.054629 -3.908766 -4.671546 -1.642055 -5.445650 2.449408 1.199043 -1.231045 -3.603797 -4.875260 0.206613 4.927093 -0.108073 3.024072 -4.459362 -1.820464 2.877286 0.946440 4.075718 -3.270177 -1.165343 -0.551491 -0.316929 1.524300 -0.688439 2.794466 8.643358 -4.150652 2.439117 1.832237 -2.962152 1.358591 4.308286 -6.644576 7.379130 0.560681 4.404682 -0.458480 2.103550 -2.715021 0.214852 1.603641 -0.398960 0.064823 1.817157 -1.790120 -1.724181 -0.085662 -5.055215 -3.314815 0.285989 2.702733 -0.692140 1.872453 0.207173 -3.760000 -1.435467 -2.871961 0.797089 4.652913 -0.274745 -3.007468 3.306573 1.240454 -0.613991 -1.036369 0.659277 1.799279 4.601898 -6.543426 1.345954 -0.818980 1.362770 -4.608352 -5.777329 0.821972 -4.918823 -2.466153 2.606905 -5.337446 -1.271130 -4.343275 1.328158 -5.209854 -1.415044 1.420574 6.970073 3.681909 -2.286956 3.111696 -1.813507 4.313492 0.130766 -1.272315 1.536923 4.389298 +PE-benchmarks/channel-assignment.cpp__main = -1.581319 0.319871 -0.558139 -0.939563 2.970957 -1.571012 0.267727 1.700208 -0.096449 1.628319 -1.169029 -0.415000 -0.763096 -2.290668 0.459351 0.291909 0.534602 2.117772 -0.412261 0.825779 1.464251 -0.294599 0.070795 -0.631679 -0.480576 -0.646813 -0.331433 0.630039 0.695715 -1.298903 -0.665342 0.907046 2.958222 0.013724 2.613210 2.027093 0.990691 2.471378 0.858560 -0.569983 0.060945 1.432160 -0.969136 -2.487639 0.955770 -0.641575 -1.197837 -1.339729 1.088245 -0.910090 2.227575 1.740192 -0.180949 0.104599 -1.567996 0.762552 1.076452 0.469403 2.283684 0.869534 -1.105551 0.807599 -1.645405 1.801210 -1.422725 0.758395 -0.064601 -2.072358 -0.206043 0.477547 1.816766 -2.610458 -1.742485 0.994550 0.274576 -1.389073 0.949160 -0.296477 0.789448 -2.169686 -2.562982 0.410665 -1.115227 1.744544 -0.434180 0.294409 -1.599765 0.448024 0.119439 -2.163440 -0.108422 1.577973 -1.295259 0.829079 -1.058608 0.911167 0.242980 -0.050919 -1.253774 -1.310060 0.669833 -0.517658 1.088528 0.765732 0.803713 -0.503293 0.512446 0.079602 0.256660 1.154260 1.520133 0.818842 1.198136 1.306277 -0.191770 -0.028611 -2.679960 1.065881 -0.549656 0.451354 -0.060286 0.984003 1.018477 -0.191015 1.516238 -2.610914 1.217629 0.198110 -0.267110 -1.488225 0.797344 -0.502790 -1.036220 -1.239388 1.927121 0.076228 -0.610340 -0.465521 0.606776 0.251259 -1.448851 -0.841586 -0.454543 1.418854 -1.674488 0.351054 -0.906566 -1.464578 -0.118549 0.618195 0.931179 1.615410 2.330379 2.048458 -0.760235 -0.259135 -2.641900 0.253364 2.189343 0.407424 -1.862876 1.665557 -0.959185 -0.170824 1.111380 1.754907 1.259879 0.050859 -0.515173 -0.574489 0.538386 0.219138 2.275997 0.042959 0.697345 -1.286428 0.511711 0.467573 -0.925681 3.609838 0.428965 -2.276682 0.459438 1.217095 -0.179280 -1.134572 0.744748 -1.240737 -0.578897 -1.101307 1.039352 1.202730 -1.792463 -0.970123 0.569805 -1.848781 1.661879 -0.503916 -0.977777 0.751212 -2.580424 -0.012930 3.081331 0.378127 -0.467568 -1.091444 -1.937368 0.041013 -2.249493 0.856693 0.252359 0.031107 -0.978036 -1.619680 -0.168451 2.369344 -0.046011 0.571960 -1.596947 -0.387852 1.147379 -0.198094 0.792748 -2.285579 -0.644196 0.320092 0.384582 0.703543 -0.233458 0.504190 2.833866 -1.794121 0.052418 2.325551 0.340278 0.571055 1.587685 -2.242808 2.352585 -0.190355 1.527304 0.023994 0.767226 -1.204764 -0.193016 0.196104 1.439765 -0.589324 0.669299 -0.824357 -0.458058 0.235502 -1.411855 -1.247101 0.190393 1.132029 0.149542 0.565513 -0.686635 -0.835329 -0.366991 -1.108253 0.451836 1.810797 -0.108538 -1.303437 1.107334 0.417825 -0.747012 0.385352 0.390503 0.575589 2.036332 -2.229369 0.568480 -0.081059 0.625148 -1.423255 -2.195976 0.392778 -1.213043 -0.596660 1.237407 -2.230158 -1.044635 -1.240227 1.045723 -2.099007 0.448001 -0.131119 2.220750 1.237586 -0.373855 1.403008 -0.349898 1.323446 0.026290 -0.471971 0.166369 2.080519 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -3.517239 3.661914 0.900320 -2.855968 8.417913 -1.912098 0.683250 4.049526 -4.551695 6.538792 -2.320327 0.756589 -1.303346 -6.964717 0.479158 -2.404710 -0.525377 3.129836 0.862623 4.777625 2.530112 -4.503398 0.642108 -0.464604 -2.316106 -6.320953 -0.241231 2.194792 5.720167 -3.500299 2.518647 0.311633 6.581799 -1.043684 5.721764 4.436527 0.922203 4.549145 2.673346 -4.408605 -1.821836 2.619082 -3.303577 -4.086406 0.420387 -0.831611 -4.716195 -2.895790 2.426752 -1.944167 -2.039689 5.561737 -1.597826 -0.138933 -4.468884 4.276641 3.023755 -0.741135 6.344136 0.046445 -0.820979 -2.081326 -6.119428 5.094598 -2.549446 -1.107511 -1.814829 -3.394602 2.403267 0.292768 -1.497783 -3.098793 -0.495136 5.969048 3.119356 -5.167884 0.756122 -2.583341 -7.198621 -6.148578 -4.447568 1.684838 -0.938581 5.048485 0.690525 2.185983 1.113070 3.533795 -1.646237 -8.416138 1.462516 6.429680 -2.479475 -2.609890 -2.310457 7.020030 1.844037 0.273144 -3.030879 -2.213314 2.127068 -1.560285 2.977894 -4.866940 2.874884 -6.156768 -0.637485 -1.363785 1.455809 4.237274 3.870566 2.192926 4.065902 6.405983 -5.227802 -0.571956 -6.208624 1.584447 -1.307984 1.468680 -1.445870 3.455229 1.144720 2.674373 5.828979 -8.917469 2.317862 0.199822 0.206162 -6.547735 -0.247278 -2.067648 -1.147566 -2.227513 3.176205 -1.006088 -0.538805 -2.078970 1.043016 1.936199 -3.571284 -2.461277 1.699778 8.528233 -7.576592 1.950397 -1.206560 -1.833976 -0.558480 2.352816 4.670887 4.819369 7.526940 5.139479 -0.538710 5.701489 -6.535169 0.015175 6.036363 2.583029 -4.950344 6.820512 -4.759647 -2.338080 0.740657 5.004047 5.191246 1.035613 -6.625742 -5.798017 4.915993 1.509366 6.308597 -0.213492 0.191063 -2.250559 6.360798 2.019464 -4.084626 7.481820 1.245524 -4.614581 3.752975 2.369037 -4.850201 -1.897161 3.656798 -5.147312 -0.302311 -2.015314 0.791116 3.257971 -2.671334 -2.022642 -0.687015 -4.572677 6.210547 -1.344377 -0.790561 2.391186 -3.478258 -3.662924 5.558660 -0.140887 -1.520767 -4.992148 -5.109845 -4.294916 -4.371077 1.715059 0.909286 -1.881801 -2.694945 -5.629542 -1.420685 3.726474 1.319426 3.253122 -8.394257 -0.958666 2.957495 4.157420 2.543966 -3.678204 -0.535389 1.061498 -0.010314 0.797843 -0.751971 5.447845 8.000962 -3.715383 2.877583 -1.402053 -2.375197 3.293387 2.986094 -7.853768 7.248501 0.904364 6.290792 0.374006 1.539200 -2.499193 0.781340 1.384186 -0.869638 0.266188 0.552184 -1.455536 -2.141015 0.885938 -3.924864 -4.518468 -1.216906 2.036540 -0.735901 1.938895 -1.351561 -2.490069 -1.845698 -2.882117 1.366091 3.677348 -0.383680 -1.367899 4.008633 1.093687 2.212908 0.667509 0.423870 2.280376 2.878060 -6.293222 0.696893 -1.684742 2.416056 -3.511949 -6.887966 1.845004 -3.305366 -3.223507 3.213347 -7.073473 -0.425829 -3.937590 0.179388 -7.336096 -0.435990 1.096795 7.850168 1.477965 -3.452660 2.592632 -2.400981 3.395698 -0.517001 0.545356 0.813728 3.822173 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -1.943540 1.614688 1.252662 -1.943882 4.796803 -0.808751 0.519569 2.686475 -0.811101 2.715848 -2.180111 0.687428 -0.335772 -2.431968 0.275545 -1.554522 -0.566312 1.909824 -0.913434 1.095853 1.407720 -0.126132 0.292174 -0.944220 -1.220604 -2.812245 -0.581021 0.904850 1.065952 -0.275215 0.738208 0.235692 3.165232 -0.908781 2.525434 2.150410 1.793645 2.593664 0.013339 0.496839 0.798598 1.163503 -1.286760 -2.536208 0.441283 -1.031264 -2.728864 -1.391824 1.239350 -2.772973 0.624419 2.152592 0.012539 -0.544531 -1.129079 2.538663 1.260744 -0.605317 2.724944 0.785412 -2.199824 -0.167537 -3.010332 3.253811 -1.561048 1.740703 -0.740731 -2.906717 -0.785462 1.318863 0.678218 -1.753388 -1.312661 1.390782 0.966325 -1.985200 0.787135 -1.143249 -0.845663 -1.699590 -1.328861 1.015497 -0.319434 1.822375 -0.087492 0.591139 -0.457087 0.857049 -0.260860 -2.934938 -0.690199 3.506348 -1.541179 -0.017936 -2.871940 0.823399 0.793766 -0.242803 -0.921143 -1.561219 1.046415 0.297378 1.073211 -1.630024 0.090041 -2.263077 0.302372 1.152462 0.198237 1.674449 -0.914560 1.353531 1.103630 2.012746 -1.171458 1.400443 -3.442145 1.181661 -1.159848 0.821384 -0.827185 0.771401 1.136213 1.593468 2.076037 -3.013885 2.324462 -0.074249 -1.100503 -2.150420 0.701197 -0.352941 -1.180787 -0.812179 1.422350 0.255568 -0.570959 -0.530990 0.910585 0.043072 -1.168656 -2.285538 0.102050 1.492164 -2.711641 0.536066 -0.584656 -0.563017 -0.506665 1.509563 1.905164 1.383971 3.509110 2.152594 0.267621 1.132123 -3.115784 0.335209 2.988996 1.161502 -2.300466 2.465863 -2.009126 -0.458226 0.871944 1.629064 0.813636 2.286075 -2.269974 -1.999539 0.283532 -0.226798 3.186454 1.785534 0.148169 -2.597352 1.544696 -1.554083 -0.878335 3.772707 2.422080 -3.122616 0.585593 1.703409 -1.508360 -1.969035 1.313241 -2.053072 -1.119894 -0.565733 0.525886 1.427312 -1.455795 -1.917513 0.466587 -2.265333 2.715854 -0.590194 -0.793790 0.351477 -2.208060 -2.021451 3.003921 0.301860 -0.948022 -1.273110 -1.633700 -1.190194 -2.883566 0.672522 1.493213 -0.781923 -1.767586 -2.208704 -0.047420 1.909450 -0.816735 1.035526 -2.790513 -1.097710 1.535124 0.310434 1.422737 -2.980116 -0.400944 -1.132534 -0.032796 0.867617 -0.893714 1.334761 3.854215 -1.594887 2.053589 0.864003 -2.204573 0.032592 2.401951 -2.587112 3.337827 0.231464 1.719823 0.265283 0.988745 -1.374022 0.059978 -0.088804 -0.390567 -0.318391 1.271038 -1.500717 -0.703976 0.039492 -2.387977 -1.105078 0.822487 1.648152 -0.169213 0.437344 0.119506 -1.556391 -0.964688 -1.883791 -0.045709 1.886798 -0.978798 -2.089649 1.351817 0.814623 -1.571862 -1.013070 0.323973 1.357369 2.096797 -2.677924 1.229050 0.114320 0.106576 -3.626499 -2.553755 0.367822 -2.246259 -2.149219 0.276595 -2.620127 -1.531144 -1.597926 1.209299 -2.876377 -1.880518 1.048649 3.219525 1.108640 -0.712343 1.728399 -0.747390 2.138887 0.327951 -0.017331 0.534685 1.910068 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -11.777350 9.078218 1.891287 -10.580890 24.394401 -2.106576 2.393570 5.451344 -3.918144 20.383201 -9.371915 -5.724994 -6.027998 -24.381637 1.271185 -12.557526 -3.829825 7.708864 -0.193234 11.271571 9.477263 -11.379757 2.438198 -2.223101 -7.044726 -19.016745 -3.811170 6.595831 17.454907 -10.701958 5.301387 -0.483964 21.956276 -1.828388 18.741675 15.298418 6.339200 15.641717 2.033079 -0.931952 -6.446501 10.167038 -11.613677 -15.102174 2.068120 -4.111299 -15.169142 -8.559120 7.999273 -6.261516 2.257844 17.986358 -5.019963 -0.940832 -13.627318 12.032076 6.857375 2.184133 21.487633 2.794727 -2.912436 -2.717635 -22.597269 13.730644 -8.461836 2.820683 -3.068036 -11.323391 4.719461 -0.979764 -5.251687 -8.871208 -6.717147 17.777048 12.177101 -16.753302 2.054902 -10.267678 -26.071691 -13.829964 -15.148725 6.543741 -0.869075 16.497745 2.542066 6.895595 6.959333 11.386876 -5.713841 -26.828938 4.349374 20.910467 -7.987248 -5.684135 -10.033886 17.808288 1.792719 2.651835 -10.849262 -2.137362 5.668070 -2.387435 10.063008 -13.592533 -1.815853 -22.444873 3.269899 -1.141233 1.353288 5.303960 14.864225 1.270754 10.411137 20.619505 -18.367363 3.978004 -18.749117 4.538017 -2.147739 6.314358 -5.042023 10.353058 0.924613 5.579369 17.768285 -28.478340 7.140448 0.379913 -4.158010 -21.568861 -0.067136 -8.579461 -5.789253 -5.845475 10.213203 -1.741723 -2.978830 -7.378061 3.126238 4.798817 -9.614260 -5.355394 7.432879 17.025265 -14.897720 5.228019 -4.379836 -7.518839 -4.548677 10.332100 15.551800 15.411507 24.237843 16.584331 -0.486611 9.086289 -19.333294 -0.166456 19.968837 4.052547 -16.454160 19.618766 -14.387290 -4.725128 1.581106 14.616306 15.285761 6.131060 -16.297861 -11.443379 10.653942 4.321808 20.520984 2.804749 1.130643 -4.661940 16.186566 1.093093 -11.507236 23.746656 10.471671 -15.313627 7.002449 6.807006 -16.938766 -8.404415 13.501944 -12.839798 2.666724 -7.899223 2.806090 9.597748 -7.853641 -5.245292 -1.271971 -16.209512 20.299470 -4.718245 1.824203 9.576113 -15.105233 -18.291524 18.485868 -2.316952 -6.731646 -14.559416 -15.082019 -12.601223 -14.277724 7.692518 3.015046 -6.489581 -9.824458 -17.139067 -0.465183 16.036917 3.676449 12.469726 -17.481481 -6.411053 8.995424 7.379700 12.751378 -6.087314 -2.620142 0.642135 2.186419 5.908219 -0.929269 13.379709 26.355708 -11.902839 11.167902 -5.732805 -7.030964 6.553981 11.099655 -22.823262 23.094487 1.587781 11.987671 -1.854618 6.053326 -6.575442 2.699608 6.543450 -4.246438 3.894028 2.018801 -3.526448 -6.654054 0.411794 -16.382360 -10.645531 -2.818835 6.004498 -2.051892 6.801267 0.203487 -8.931562 -5.733413 -9.506781 4.184888 13.750567 2.065458 -4.268062 11.746424 2.389077 4.600179 1.762569 1.832667 5.769452 12.145106 -20.821791 0.068824 -4.901542 3.176111 -10.972087 -21.174172 2.031130 -12.766632 -8.812779 9.109115 -19.380140 1.884898 -14.222453 0.406731 -18.323613 -3.423300 3.521579 23.507522 10.124506 -7.770174 7.766684 -6.464373 11.844412 -0.759453 -2.153069 8.705682 13.467507 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.432983 0.287368 -0.034919 -0.421385 0.841203 -0.269571 -0.092306 0.504363 0.239447 0.514778 -0.553027 0.038846 -0.068561 -0.521675 0.047253 0.009894 0.023958 0.542102 -0.207807 0.070734 0.320569 0.007504 0.146306 -0.313832 -0.173949 -0.528010 -0.070620 0.146123 -0.029011 -0.009713 -0.110981 0.097625 0.676231 -0.055272 0.478784 0.453031 0.298974 0.654836 0.236380 0.274976 0.281597 0.265613 -0.175736 -0.706885 0.237703 -0.254790 -0.355117 -0.417724 0.284631 -0.655359 0.635195 0.372911 0.031505 -0.217465 -0.398844 0.288318 0.336275 0.095475 0.599201 0.196435 -0.429726 0.092253 -0.401880 0.562952 -0.536850 0.333226 0.059226 -0.633304 -0.231938 0.417126 0.382173 -0.338613 -0.416369 0.059498 0.040378 -0.381671 0.180803 -0.157592 0.240058 -0.246470 -0.329730 0.187529 -0.179881 0.356552 -0.035451 0.106551 -0.406532 0.090624 0.139343 -0.425283 -0.216460 0.456281 -0.228758 0.241222 -0.196332 0.178535 0.252004 -0.240720 -0.059702 -0.241270 0.144783 0.026411 0.227976 0.136961 -0.053029 -0.296311 0.355892 0.336662 -0.042561 0.202931 -0.029332 0.277098 0.147757 0.229245 -0.035010 0.197022 -0.829187 0.213639 -0.073985 0.050655 -0.088814 0.089707 0.240968 0.107041 0.323753 -0.526782 0.627779 0.100340 -0.169435 -0.272432 0.267703 0.058783 -0.216447 -0.144956 0.346889 0.034157 -0.107086 -0.002164 0.146797 -0.110736 -0.371621 -0.356668 -0.146641 0.310171 -0.326043 0.147381 -0.153138 -0.244913 -0.002820 0.144497 0.179192 0.189383 0.644887 0.429957 -0.061524 -0.104517 -0.582234 0.143932 0.658731 0.192265 -0.447804 0.362860 -0.173951 -0.038744 0.270601 0.279602 0.109073 0.372190 -0.216294 -0.275308 -0.176090 -0.176975 0.554770 0.294784 0.182128 -0.554976 0.233572 -0.058990 0.041295 0.913355 0.353638 -0.636986 0.040223 0.527131 -0.332343 -0.341486 0.137621 -0.156762 -0.151250 -0.197389 0.196212 0.279838 -0.456882 -0.533056 -0.019655 -0.482029 0.503335 -0.051502 -0.145261 0.090767 -0.578177 0.043969 0.744234 0.172788 -0.147907 -0.123888 -0.354722 -0.172016 -0.715800 0.108934 0.299414 -0.214361 -0.190553 -0.368476 -0.028783 0.464711 -0.232629 0.042601 -0.401810 -0.160370 0.351151 -0.048659 0.086050 -0.587223 -0.136186 -0.044772 0.027291 0.209132 -0.095698 0.186040 0.643444 -0.362260 0.265868 0.595523 -0.025978 0.116752 0.547659 -0.401855 0.629096 -0.145536 0.173409 0.136062 0.259381 -0.240501 0.036380 -0.081470 0.000384 -0.146010 0.305844 -0.493052 -0.167643 0.200527 -0.360756 -0.220024 0.268244 0.426975 0.230204 0.030723 -0.030260 -0.254049 -0.115226 -0.293444 0.032616 0.375931 -0.053188 -0.558415 0.145523 0.343596 -0.446025 -0.354845 0.138747 0.207568 0.528763 -0.536581 0.433047 0.089420 -0.011423 -0.698396 -0.340567 0.150280 -0.312262 -0.316367 0.106409 -0.680748 -0.439211 -0.258115 0.398440 -0.471348 -0.044210 0.015781 0.549108 0.262504 -0.033804 0.409045 -0.110167 0.299116 0.109522 -0.117857 0.021892 0.533882 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.870958 0.653301 0.157551 -0.899555 1.506441 -0.540226 -0.013125 0.670795 0.303170 0.930179 -1.039520 -0.095544 -0.346768 -1.307595 0.099248 -0.423322 0.088127 1.087646 -0.284337 0.562085 0.723801 -0.378066 0.316778 -0.621396 -0.340652 -0.958601 -0.127832 0.313694 -0.027506 0.040027 0.291852 0.226010 1.344490 0.144110 0.976944 0.920150 0.203112 1.592761 0.448700 0.426634 0.338815 0.600196 -0.315622 -1.621620 0.649297 -0.473415 -0.700839 -1.057700 0.509301 -1.388357 0.859214 0.860981 0.042181 -0.427490 -1.048940 0.292939 0.981356 0.406249 1.177030 0.423314 -0.634298 0.204444 -0.882219 0.323027 -0.970426 0.382534 0.355413 -1.119482 -0.143038 0.726895 0.624318 -0.613696 -0.880834 0.116929 0.273500 -0.733392 0.358391 -0.316476 -0.536236 -0.499662 -0.650137 0.244399 -0.281183 0.867900 -0.149797 0.257189 -0.504195 0.144633 0.250526 -0.887716 -0.367406 0.927828 -0.255418 0.325111 -0.291733 0.857526 0.477525 -0.476164 -0.512370 -0.326302 0.320957 -0.026362 0.510319 0.337586 -0.737800 -0.767260 0.762952 0.521843 -0.192472 0.457416 0.247259 0.570827 0.260814 0.456905 -0.657518 0.708167 -1.623159 0.371870 -0.161459 0.181077 -0.137415 0.226243 0.234035 0.140225 0.571069 -1.134751 1.276108 0.331696 -0.228459 -0.709617 0.580935 0.093143 -0.369735 -0.374674 0.796788 0.016374 -0.174457 0.011881 0.070277 -0.162314 -0.473382 -0.663548 -0.238137 1.040638 -0.560630 0.344930 -0.351200 -0.657799 0.015662 0.108347 0.318876 0.367593 1.295099 0.879289 -0.240326 -0.027391 -1.087053 0.245351 1.496781 0.550631 -0.916844 0.710685 -0.035592 -0.036041 0.447078 0.476568 0.516781 0.524691 -0.612847 -0.744218 -0.262123 -0.359688 1.053837 0.694202 0.366068 -1.296937 0.781635 0.154124 0.115156 1.793642 0.621237 -1.074728 0.064192 1.018605 -1.146299 -0.727673 0.210891 -0.125002 -0.152023 -0.318131 0.445957 0.464062 -0.896726 -1.178445 -0.294804 -1.016701 0.891109 -0.169702 -0.088306 0.080044 -1.120398 -0.327768 1.466050 0.221307 -0.393139 -0.294508 -0.785226 -0.291568 -1.432613 0.303889 0.483800 -0.447115 -0.464101 -0.700977 -0.058200 0.903689 -0.443140 -0.015063 -0.611858 -0.389228 0.677572 0.035254 0.214146 -1.180880 -0.306601 0.134008 0.160826 0.456389 0.174577 0.445449 1.344851 -0.753548 0.382173 0.956461 0.078911 0.522219 1.155267 -0.840784 1.314217 -0.422948 0.922016 0.102266 0.510630 -0.333487 0.054065 0.055469 -0.082822 -0.238635 0.621178 -0.891090 -0.326909 0.521009 -0.641885 -0.479496 0.527973 0.834468 0.433877 0.149797 0.181533 -0.512460 -0.167780 -0.352330 0.097429 0.803180 0.028928 -1.047029 0.192414 0.715951 -0.502666 -0.671641 0.290027 0.443191 1.001415 -1.098746 0.882552 -0.025226 -0.215561 -1.058174 -0.785921 0.605635 -0.808109 -0.641215 0.467259 -1.366950 -0.517649 -0.558749 0.869069 -0.839187 0.089189 -0.118828 1.038229 0.564202 -0.044717 0.785194 -0.235276 0.644061 0.060433 -0.197212 0.098341 1.293868 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -1.698075 1.813856 0.212382 -1.158174 2.794160 -0.352238 0.343310 0.820543 -1.171055 3.027812 -1.353882 -0.423239 -0.680574 -3.033635 -0.018781 -1.456680 -0.499628 1.048490 0.281886 1.510498 1.231975 -1.947213 0.148625 -0.292004 -1.047115 -2.883862 -0.248730 0.768484 2.710166 -1.985979 0.811081 -0.023297 2.888314 -0.146474 2.778878 2.228106 0.552823 2.137749 0.935830 -0.278009 -1.255270 1.439580 -1.627143 -2.074866 0.212966 -0.633991 -1.524979 -1.078996 0.954429 -0.582027 0.614347 2.312425 -0.781640 0.146048 -1.925216 1.573559 1.124194 0.278759 3.273628 0.208701 -0.394995 -0.687561 -2.840305 2.456747 -1.204429 -0.156184 -0.145771 -1.382342 1.254830 -0.431289 -0.642275 -1.077670 -0.676575 2.960760 1.306266 -2.596751 0.065649 -1.417150 -4.766407 -1.988428 -1.973371 0.786323 0.422276 2.200166 0.401000 0.913095 0.453829 1.789229 -0.883324 -4.038990 0.734571 3.050370 -1.219917 -0.428471 -1.104185 2.834538 0.171862 0.599088 -1.510093 -0.160037 0.777498 -0.298766 1.281977 -2.502985 -0.179587 -3.249477 0.633668 -0.612822 -0.096947 0.704935 2.392496 0.436552 1.850997 3.234359 -2.452678 0.124833 -2.533688 0.598014 0.374565 0.632316 -0.367851 1.299967 -0.383439 0.489556 2.808722 -4.006227 0.740503 -0.006030 -0.315717 -3.690503 -0.243104 -1.471258 -0.746670 -0.998495 1.346548 -0.108294 -0.275909 -1.327223 -0.002858 0.694304 -1.572592 -1.541534 1.350825 3.244260 -2.144495 0.643219 -0.599889 -0.895505 -0.941961 1.550336 2.207054 2.181001 3.263189 2.266075 0.154125 1.753569 -2.491328 -0.373173 2.617406 1.404806 -2.537384 2.986753 -2.120850 -0.891434 0.362823 2.041065 2.228920 0.460559 -2.815868 -2.183148 2.153455 0.598982 2.883856 -0.086308 0.248498 0.064994 3.135448 1.091874 -2.185656 3.257835 1.063008 -2.116714 1.273697 0.664695 -1.911859 -0.735334 2.236519 -2.118966 0.347060 -0.930636 0.069758 1.171078 -1.095296 -0.436975 -0.156824 -2.367637 3.298010 -0.525341 0.545495 1.469205 -2.325995 -2.737593 2.242137 -0.312798 -0.889007 -2.000249 -1.800413 -2.340932 -1.857132 0.884328 0.416882 -1.062428 -1.444129 -2.623549 0.027840 1.863373 0.598082 1.902246 -2.419972 -1.182106 1.262001 1.197047 1.485888 -0.763803 -0.426325 0.251977 0.723744 1.020186 -0.073890 2.748204 3.877157 -1.420613 1.660591 -0.644786 -0.830850 1.155717 1.420946 -3.548846 3.025404 -0.125136 1.086480 -0.111053 0.775514 -1.125195 0.155433 0.972035 -0.043673 0.489581 0.022705 -0.298311 -0.803147 -0.300336 -2.456161 -1.087102 -0.552550 0.492456 -0.095626 0.899662 0.067565 -0.997814 -0.892946 -1.689070 0.369029 1.834834 0.445783 -0.510183 1.805792 -0.187540 1.022229 1.263968 0.166493 0.767269 1.382896 -2.811685 -0.432893 -0.761873 0.270416 -1.417422 -3.144200 0.125794 -1.789096 -1.512989 1.294187 -2.882936 0.522539 -1.865869 -0.279508 -3.151318 -0.064705 0.313436 3.630531 1.354603 -1.181144 1.057511 -1.010963 1.837581 0.089557 -0.015208 0.965951 2.011098 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -6.354824 5.572268 2.099657 -5.747683 13.964628 -1.508490 1.830253 4.304247 -2.907757 10.819079 -5.291519 -2.321121 -2.210675 -11.373890 0.659299 -6.969029 -2.798696 4.628682 -0.424202 5.909527 4.592512 -4.922152 0.707538 -1.115211 -4.291882 -9.369869 -2.564644 3.747640 9.026397 -6.299565 2.506197 -0.217461 11.693456 -2.185716 11.229847 8.536265 3.867957 7.487500 1.012510 -0.853064 -2.389420 4.889207 -6.454535 -7.104642 0.060337 -2.091568 -8.805783 -4.321021 4.096637 -3.460681 0.992760 9.308683 -2.528374 -0.261898 -5.880667 7.818510 2.505308 0.448109 11.340885 1.498260 -3.162604 0.001509 -12.342767 9.610418 -4.196007 2.873245 -3.360825 -7.239359 1.987677 -0.115900 -1.476879 -5.929899 -3.142504 9.988389 5.849199 -8.913073 1.249007 -5.742686 -11.700270 -8.018785 -7.637139 4.154970 -0.276229 8.138625 1.415333 3.574914 2.089965 6.270110 -3.602255 -14.396677 1.889139 11.997973 -5.437265 -3.184297 -6.120729 7.683583 1.575550 1.750431 -5.063836 -2.462549 3.486622 -1.182756 4.975063 -7.526253 1.864894 -11.106915 0.251895 0.328000 0.980980 3.469551 5.727111 1.919940 6.937372 11.102054 -8.508441 1.411488 -9.853449 2.837665 -2.345420 3.062258 -2.604706 5.470444 0.988077 4.124805 9.806379 -14.645931 3.660013 -0.530773 -2.787242 -11.376441 -0.103102 -4.724644 -3.477841 -3.371461 4.801366 -0.109345 -1.558197 -4.195483 1.851402 2.327854 -4.409407 -4.005707 4.331000 8.134508 -8.337015 2.529712 -1.894877 -2.938994 -2.744720 6.736770 9.042873 8.277659 13.141700 8.798635 0.602017 4.187317 -10.806392 -0.538335 9.771783 1.448057 -8.700939 11.259350 -8.598003 -3.197260 1.057101 8.534690 7.015213 3.906277 -9.227932 -7.052325 5.577011 2.238276 11.278618 1.609737 -0.192048 -2.103502 8.355939 -0.716905 -7.287618 12.809140 5.710195 -8.550447 3.274277 3.597013 -7.169799 -5.550673 7.961047 -8.447259 0.172384 -3.387122 0.738454 5.035602 -3.723811 -2.501674 0.869954 -8.697118 11.213412 -2.565744 -0.861389 4.374091 -7.906782 -9.859540 10.053122 -0.483534 -3.465444 -7.289454 -7.416183 -5.386342 -7.609404 3.532611 2.519590 -2.890585 -5.820907 -9.119479 0.285049 7.905912 1.222746 7.401382 -9.029857 -4.221944 4.913514 3.259927 6.835256 -4.544362 -1.151467 -1.246273 0.596295 2.685715 -1.628439 7.475611 14.494180 -5.753602 6.273479 -1.568788 -6.069041 2.478246 5.803470 -12.428528 12.600925 1.539526 5.281411 -0.351207 2.943779 -4.183321 0.768981 3.054810 -1.451109 1.544412 1.350032 -1.708209 -3.268600 -1.278595 -9.215581 -5.171749 -1.349950 3.335951 -2.262606 3.434021 0.016210 -5.609711 -3.574276 -6.273334 1.690259 7.017026 0.089215 -2.622132 7.194095 0.860924 1.392822 1.308150 0.510520 3.380497 6.322166 -11.132353 0.050376 -1.958695 2.359021 -7.635784 -11.198628 0.305074 -7.647114 -4.976161 3.249408 -9.423164 -0.484953 -7.565702 -0.187581 -10.227864 -3.280638 3.544616 13.284862 5.605014 -5.007567 4.012639 -4.014148 7.034100 0.449985 -0.947718 3.764353 6.487553 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -13.502862 3.701041 -7.512265 -16.185182 32.032559 -6.121730 -2.335830 14.264512 1.143434 17.615309 -13.029428 -2.648689 -5.138687 -25.246514 2.341848 -1.854098 1.976322 13.488242 -7.736115 9.970936 10.797532 -6.136752 8.867115 -5.671712 -7.964871 -12.127119 -2.188817 9.062494 6.860374 -6.498370 0.488220 1.034380 23.219908 -2.758227 16.038516 11.494912 10.160419 21.544636 6.385451 -5.604521 4.966090 7.889301 -7.503319 -22.672570 7.733732 -7.520695 -20.520907 -12.532646 11.622449 -18.653126 6.871843 18.268036 0.134388 -6.849855 -16.209463 10.046567 13.498312 -1.277378 21.674495 5.346552 -11.610629 -4.944822 -16.295876 10.765826 -13.594874 6.263280 -1.428983 -17.544127 -6.609156 12.862586 3.394401 -13.716110 -15.774857 6.066900 11.324227 -14.295748 7.076040 -6.321513 2.654440 -15.713949 -11.923793 6.990213 -8.618681 15.624922 0.032868 8.420399 0.896993 4.602137 -1.012908 -20.877595 0.598316 15.533933 -8.453456 1.091698 -9.138719 13.779613 0.017283 -7.050463 -15.079317 -8.948039 4.581889 -1.680642 10.178728 -2.918914 1.423417 -14.705927 6.902125 6.184315 4.879654 9.408664 9.378896 2.940793 4.801862 13.012116 -11.366028 6.314738 -26.122292 4.763306 -5.761194 6.172769 -8.704614 7.255390 12.818715 6.084208 12.863465 -25.004845 20.034029 4.195475 -5.510834 -14.475359 7.155830 1.297148 -5.373404 -3.025107 14.255002 -6.968422 -2.840965 -1.330704 7.979191 1.655858 -14.652342 -2.542975 -1.957378 13.756072 -15.640217 8.018804 -4.027685 -10.958120 1.785381 5.966041 11.391045 9.133991 27.143840 14.871182 -6.817317 9.328378 -20.775180 8.049181 26.628952 6.025364 -16.471562 16.949756 -11.027821 -0.862066 3.814611 12.834740 12.117714 6.629223 -8.797159 -6.589636 5.219808 3.127247 21.389658 1.677080 6.931261 -21.568454 6.649695 0.488230 6.500172 30.862622 10.111706 -21.443314 6.361560 16.517990 -13.045503 -7.680584 6.318742 -9.680626 -4.858843 -8.170667 10.100752 12.542442 -14.296304 -15.979563 -2.851323 -15.752081 15.230081 -5.436703 -10.234550 5.999699 -19.137279 -0.126868 23.759363 2.565997 -5.492163 -7.707384 -17.738724 -4.216073 -23.374901 5.976588 7.569630 -6.090949 -4.567756 -13.243650 -6.130870 18.234233 -0.333741 4.505378 -24.766861 1.464450 12.955980 4.280262 7.441693 -13.450243 -2.133502 4.121146 -1.102125 4.097305 -4.711033 5.038397 18.346189 -16.850289 9.476430 3.427322 -2.324434 9.002513 14.634824 -16.256757 27.400574 1.635955 21.962592 -0.095015 9.454941 -5.491053 6.632645 -1.186004 -3.808950 -2.695276 7.953930 -14.962195 -9.726379 9.882865 -5.920992 -17.978834 2.927562 15.596084 2.149076 5.611035 -4.199846 -4.889352 -5.368959 -5.859651 7.589963 12.931714 -5.058509 -13.479973 6.996291 14.360357 -4.902682 -3.629070 5.154077 10.086357 19.510859 -21.923731 11.442428 -1.476015 5.764987 -17.533252 -16.434536 8.643897 -9.015180 -2.487063 9.570919 -24.345082 -10.694723 -11.634164 12.838987 -12.177377 4.344546 1.604028 21.530981 9.405174 -5.465801 13.554748 -3.714219 6.928327 -1.746512 -1.763479 7.399208 15.479171 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.390702 7.725015 2.772950 -9.267120 14.039860 -4.157557 0.593880 8.888759 -0.919369 9.365045 -8.365063 1.882842 -2.435488 -12.124310 0.489461 -5.022594 0.121631 9.884126 -2.035003 8.846055 6.714195 -3.981224 2.524557 -4.542057 -4.809534 -7.404571 -0.505693 3.552234 1.621323 -1.802389 5.107903 1.009866 13.075975 1.270178 11.779206 9.090747 2.851850 13.771713 4.891736 1.364210 0.477995 5.004368 -4.037563 -13.221803 4.773922 -3.781932 -7.525959 -8.477257 4.311620 -12.062829 4.913050 9.039474 0.169123 -2.339628 -9.001798 3.966803 7.342607 1.214881 11.372880 3.367384 -6.750469 0.662023 -9.291395 2.864572 -6.617230 2.936551 1.811865 -8.314549 1.027319 4.836459 4.629607 -7.335835 -6.209276 4.065357 3.691931 -8.253072 3.988248 -4.402834 -7.284649 -7.360011 -5.192377 3.497255 -0.863590 8.461240 0.079382 4.069029 -3.811266 3.386535 -0.542156 -11.217709 -0.400686 8.839786 -4.223184 0.010742 -5.081349 10.452333 2.304387 -2.318469 -6.817329 -4.057936 4.630908 -0.374314 5.179892 -0.759693 -4.629389 -8.695771 4.250250 4.028780 -1.357340 5.735264 2.681598 6.597671 5.955128 7.700264 -7.087544 7.488482 -14.811790 3.634833 -3.777505 2.406247 -2.176103 3.240862 2.763051 3.755877 6.923417 -12.013013 10.623662 3.798574 -2.857919 -9.003615 4.963014 -1.254099 -2.957904 -4.478631 7.419633 -0.375218 -1.046156 -2.170054 1.142606 -0.709502 -3.905961 -7.999666 -0.282519 9.930831 -7.638554 3.320734 -2.944600 -5.053925 -0.622943 3.085613 5.493414 4.595848 13.166864 7.524970 -1.990627 1.710728 -10.342360 0.166073 13.543295 6.622147 -8.664303 9.153555 -1.705649 -2.027424 2.552039 5.950378 6.320861 3.481559 -9.854525 -10.413873 2.023230 -1.445524 11.160716 4.307048 1.376915 -10.437624 9.522858 0.277124 -1.673799 16.654767 5.391308 -9.578422 0.412821 7.530081 -8.725095 -7.349475 4.169733 -4.374359 -2.370957 -1.472109 3.066281 3.910454 -7.124592 -9.785480 -1.766332 -9.992840 9.091432 -1.841009 -1.639293 0.102575 -9.860367 -4.045673 13.627836 1.893744 -5.356857 -4.115919 -7.789970 -1.934806 -12.644167 3.106442 4.528361 -2.443000 -4.376976 -7.241558 -0.807360 6.580415 -2.545906 0.678910 -8.177623 -5.571345 6.889104 -0.792076 3.184600 -11.868621 -2.106589 0.459104 1.983449 4.332637 0.876487 6.609576 14.077957 -6.670112 4.362067 6.241961 -1.118524 5.039176 10.341083 -10.800494 14.306765 -3.012393 10.707344 1.064834 4.076182 -4.433624 0.736058 1.063372 -0.706657 -0.851342 4.731376 -6.429374 -3.589127 1.666290 -5.542508 -4.903540 2.658733 6.488041 -0.608879 2.388848 2.298354 -4.796128 -3.381170 -5.898550 1.323484 7.935226 -1.368414 -8.536465 4.270707 6.129225 -1.474146 -2.951170 1.913135 5.595926 9.215997 -11.608053 6.443888 -1.374967 -0.894223 -10.186603 -9.366311 6.666459 -8.408214 -5.026750 3.245588 -12.214907 -3.848538 -6.195019 6.260876 -8.777197 0.791230 1.931402 10.748756 5.613748 -3.597197 6.148888 -3.951236 7.422117 1.174287 0.099926 0.145640 11.926452 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.169519 1.046351 -1.109246 -3.800963 6.758298 -2.854412 -0.557752 4.241805 0.066703 3.000550 -2.015466 1.215329 0.125346 -5.837753 0.821694 -0.907144 0.978308 3.348205 -0.827201 3.142688 1.730183 -1.015897 1.272028 -0.726656 -1.962922 -3.614326 0.485071 2.332890 1.019577 -2.431215 1.058847 0.925207 5.175534 -0.727628 4.193136 2.988262 2.399291 3.274962 2.739167 -2.437941 1.311727 0.429804 -0.812996 -3.844117 0.314998 0.204164 -4.850422 -1.974833 1.844708 -3.514318 -0.351755 3.655263 0.082221 -0.804619 -3.569536 2.764614 2.139888 -0.935313 3.543466 1.201301 -2.491507 -1.393136 -2.847065 2.796909 -2.690218 -0.524821 -0.907400 -2.605220 -0.163514 3.395092 -0.361212 -2.327197 -2.041633 0.935442 2.722901 -3.248314 1.535933 -1.146608 0.638829 -3.355498 -1.188283 2.377676 -1.418292 2.988458 0.737544 2.511177 0.376962 1.108783 -0.890678 -4.093287 0.929902 2.498389 -2.413754 -1.443538 -1.809220 4.400908 1.210908 -1.841648 -2.193834 -3.582620 1.489124 -1.869335 1.983216 -0.821580 1.097298 -2.499230 -0.007087 0.922403 1.174309 3.602478 0.401541 1.708967 1.590315 2.484652 -2.221995 1.028659 -6.270386 1.419235 -2.576504 0.798808 -1.889168 0.934589 3.511309 3.376415 2.254588 -4.861855 4.172115 1.675494 0.081221 -2.510999 1.465471 0.603812 -0.491294 -1.211182 2.822526 -1.511268 0.278316 0.061904 2.062604 0.831396 -1.786195 -0.671715 -0.565786 2.963958 -3.849606 2.060451 -0.273459 -1.354221 0.428062 0.814237 2.656996 1.737024 5.575977 2.283859 -1.469434 3.080037 -4.594408 0.764674 4.938979 0.759275 -2.308615 4.423463 -2.210501 -1.389103 -0.078887 3.801801 2.126396 0.061268 -3.175367 -2.733360 2.130859 0.754555 3.805136 -1.244441 -0.269241 -4.450940 2.003689 0.457368 0.857726 6.385989 1.722327 -4.071491 1.293084 3.769817 -2.696319 -2.194342 1.476645 -2.864526 -0.866326 -1.126189 2.154081 2.229601 -2.446135 -2.802896 -0.471020 -2.535434 1.642537 -1.106343 -3.269022 0.238721 -2.534669 -0.220902 5.568897 0.426519 -0.801349 -1.356630 -4.331141 -0.253468 -4.620874 0.411832 0.995592 -0.866813 0.601193 -2.158141 -1.956899 3.471112 -0.320824 0.697602 -6.832294 0.363888 3.028983 1.817141 0.071872 -2.224540 -0.046711 1.244313 -0.326385 -0.560998 -1.456594 1.637944 3.503632 -2.625311 2.070085 -0.513714 -2.085423 2.691267 2.827170 -4.268413 6.178421 0.826615 5.071474 1.407605 1.170942 -1.986845 0.809529 -0.695344 -2.026373 -1.242473 1.105078 -3.171227 -1.935345 1.856776 0.354462 -4.624571 0.161345 3.736090 -0.636696 1.082830 -0.628729 -0.737812 -1.298587 -2.038813 2.338434 1.824927 -1.214516 -2.011794 2.371147 4.655792 -0.159406 -0.931335 0.567059 2.567769 3.808938 -4.456195 2.906043 -0.017433 2.736238 -3.404848 -4.445095 3.198305 -2.350973 0.112096 -0.359755 -5.509772 -3.380730 -1.905133 2.758568 -2.831451 1.459288 1.993300 4.564902 1.037493 -1.987802 1.984057 -1.708636 0.448532 -0.458844 0.797975 0.541841 2.993337 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.602326 3.856325 1.374906 -4.473033 7.927627 -1.555576 0.750142 3.303821 -0.363137 4.937874 -5.547715 -0.026826 -1.841053 -6.126087 0.222088 -2.423218 -0.225614 4.974472 -1.555566 3.242979 3.842123 -2.151503 1.597822 -3.214968 -1.909295 -4.036342 -0.931646 1.330220 0.754522 0.430200 1.513569 0.308229 6.387487 0.380322 4.806244 4.553914 1.174727 8.065328 1.291841 1.725948 0.955906 3.532164 -2.190037 -8.073131 3.357086 -3.169155 -3.708658 -5.169496 2.563122 -7.131356 4.151791 4.443842 0.052045 -2.283698 -4.675344 2.114953 5.503300 1.348312 6.404170 1.930569 -3.333065 0.714678 -4.979678 1.758801 -4.147879 2.999627 1.811622 -5.882212 -0.772702 2.673786 3.515137 -3.813318 -4.920815 1.498673 1.350768 -3.942862 1.770839 -2.256081 -3.881070 -3.168236 -3.413280 0.877244 -1.503541 4.575108 -0.860615 1.139766 -2.444087 1.098444 0.968269 -5.192240 -1.998631 5.462031 -1.259432 1.887913 -2.955944 3.815319 1.526243 -1.581283 -3.611809 -1.143136 1.743866 0.937190 2.641246 -0.048830 -3.631229 -4.684300 3.658741 2.823407 -0.931231 2.023682 1.371173 2.869680 1.835777 3.112575 -3.820776 4.019188 -7.609672 1.418799 -0.701796 1.383050 -0.860515 1.589360 0.672650 0.452783 3.570117 -5.976607 6.192779 1.189307 -2.096932 -4.456815 2.831641 -0.315081 -2.186362 -1.786962 3.696923 0.198263 -1.166302 -0.652233 0.295950 -0.969671 -3.012715 -4.042299 -0.548721 5.189979 -3.385803 1.435113 -1.992592 -3.205880 -0.104681 1.397100 2.100406 2.179241 6.500847 4.768926 -0.521391 0.389403 -5.403262 1.248092 7.579225 3.901194 -5.229819 3.506856 -0.698777 0.076288 2.656918 1.974986 2.796108 3.334477 -3.795990 -4.222560 -0.556211 -1.727272 5.666305 4.500850 2.050825 -6.431250 4.456294 -0.137710 -0.260648 8.712608 3.728771 -5.426476 0.375193 4.303630 -5.057674 -3.442596 1.291042 -1.014892 -1.140073 -1.311664 1.531327 2.224653 -4.146604 -6.276649 -1.412070 -5.470849 5.555467 -0.838209 -0.100214 0.340608 -5.850164 -2.439487 6.772644 0.972510 -2.747382 -1.861315 -3.358226 -2.131987 -6.977681 1.907363 2.635827 -2.326834 -3.756202 -4.246202 0.135503 4.136043 -1.976771 0.098836 -3.028092 -2.795224 3.256196 -0.051069 2.242979 -6.775052 -1.614644 -0.453452 0.996547 3.045787 0.874812 2.759873 7.724839 -3.884146 2.267980 4.667265 0.183229 1.986525 6.144755 -4.296806 6.518949 -1.970478 5.281616 -0.172376 2.783581 -1.660164 0.438962 0.590202 0.312107 -0.365167 3.448429 -3.953078 -1.659607 1.792016 -4.253185 -1.989231 2.626241 3.455440 1.726797 0.853529 1.048873 -2.805224 -1.388378 -2.098244 -0.390787 4.485897 -0.516728 -5.388377 0.885614 2.207336 -2.287694 -2.496010 1.449738 2.270373 4.882917 -5.700950 3.865602 -0.591012 -1.880750 -5.904521 -4.079762 2.265861 -4.281434 -4.008940 3.356260 -6.304120 -1.902742 -3.171497 3.638273 -4.569178 -0.731230 -0.564944 5.422829 2.936323 -0.129241 4.103113 -1.181117 4.502445 0.299975 -0.893496 0.581660 6.412875 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.681195 5.020287 5.596633 -3.109871 3.278898 1.073307 0.493417 1.815284 -3.163449 3.613338 -3.716295 1.032635 -0.879497 -3.027317 0.050887 -3.778461 -2.006218 0.725178 0.309864 4.122116 2.140757 -3.083819 0.212931 -1.928572 -2.111600 -3.060872 -0.266305 0.684280 3.163106 0.051663 3.068145 -0.749621 3.347398 -0.141875 3.758808 2.819251 0.891065 4.483581 0.602420 -1.301122 -1.519985 2.519841 -2.588016 -3.357216 1.286513 -2.245311 -1.150921 -2.040671 0.979508 -2.257226 0.371298 3.253119 -0.642720 -1.716455 -3.079976 2.790917 1.994850 -0.091041 4.716557 0.548971 -0.821790 -1.457917 -4.897536 1.623972 -2.128792 2.167610 -0.839382 -1.300677 1.870486 -0.318702 0.303802 -0.492887 -1.587873 3.235058 0.907159 -3.596122 1.030208 -2.862239 -6.404539 -2.193140 -1.708985 1.679930 1.156387 3.241476 -0.131796 1.393409 -0.403035 2.878429 -0.871975 -4.993344 -0.360062 3.517863 -1.663047 -1.473841 -1.876418 4.369628 -0.095834 0.456536 -2.384352 0.667513 2.548612 0.874868 1.717456 -5.247466 0.658635 -5.630594 2.328782 1.869088 -0.585013 1.468788 1.457116 3.409035 3.434065 4.001838 -3.331291 1.645869 -4.009735 -0.980953 0.666755 0.773157 -0.960123 2.275277 -2.301728 1.034115 3.527442 -4.912929 2.948173 0.653811 -1.719124 -3.372802 0.778754 -1.819861 -1.360720 -1.823918 1.574867 1.049033 -0.891582 -1.266896 -0.468851 -0.131645 -1.362281 -4.182947 1.831475 5.027479 -3.197329 0.600958 -1.051159 -1.088059 -0.716100 2.550780 2.869109 2.024042 3.580792 2.854586 0.875537 0.200053 -2.655588 -0.309139 3.647647 1.393184 -4.217569 3.835283 -2.513717 -1.525852 0.813542 1.581300 2.746171 2.756659 -5.668359 -6.505744 1.777278 -0.950186 4.285636 2.136468 0.383069 -2.267839 6.088926 -1.575852 -2.916726 3.961487 1.626317 -1.740258 -1.793095 1.512390 -4.173020 -2.558612 2.471952 -2.062492 0.555421 -0.015070 -1.198397 1.418135 -1.300552 -3.407588 -1.376049 -4.272187 5.368031 -0.426118 1.857880 -0.665003 -2.144859 -5.477328 2.787519 -0.164363 -2.972813 -2.899950 -1.374835 -2.391412 -3.549814 1.507497 1.998945 -0.991454 -3.886245 -3.745138 0.478570 -0.039471 -0.988078 0.522649 -3.400141 -4.028178 2.001484 0.169297 2.218726 -1.538301 -0.881619 -0.844686 0.283130 2.576494 0.308051 5.323756 6.484745 -1.761119 3.844713 0.908238 -2.083379 0.831641 4.055950 -3.744826 4.813705 -1.632747 2.155610 -0.605157 1.684923 -2.004770 -0.135951 1.678371 -1.841190 1.263393 0.796896 -0.569618 -0.911645 -2.459391 -3.942231 -0.229083 0.811936 0.512422 -0.468666 0.916462 2.430656 -1.177707 -2.288961 -2.502059 -0.599457 3.164212 -0.765649 -1.652198 1.771910 -0.060474 0.764071 -0.034673 0.463956 1.372536 2.430672 -4.242135 1.150531 -1.363646 -1.574495 -4.068507 -3.026324 0.528448 -3.204667 -2.832763 2.479506 -3.683727 1.035809 -2.727754 0.481727 -2.499504 -1.385606 1.114002 4.219247 1.497932 -2.692611 1.875336 -2.062157 4.327980 1.511221 -0.561795 -0.018911 2.926860 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.453930 15.569496 12.004989 -12.763323 16.873652 -2.699600 2.605532 5.723509 -2.350595 13.818627 -15.179832 -0.892371 -5.948026 -16.197222 -0.086556 -13.154894 -3.148625 12.522767 -1.540507 13.874665 10.822315 -9.146025 3.050306 -9.171302 -6.010967 -12.541912 -3.417238 3.033950 3.413145 0.667951 11.639137 -0.377310 17.296547 3.097033 15.204452 14.093522 -0.786897 23.200643 3.289772 5.975866 -1.513497 10.872583 -7.881124 -20.852809 9.021567 -8.315731 -7.174523 -15.415209 5.441312 -17.898507 6.119081 12.995184 -0.719435 -5.076987 -13.799162 4.674052 14.595668 6.051622 17.724556 4.747443 -5.515742 5.145396 -16.003389 -1.445772 -10.130441 6.678547 4.313222 -12.589583 3.029478 3.200745 8.264959 -8.318760 -10.221927 7.082974 3.750717 -11.827038 4.261911 -8.110836 -22.846091 -9.235605 -8.623930 2.841374 1.010300 13.003877 -1.916971 3.628096 -4.983711 5.889361 1.415797 -15.768877 -4.292452 14.725919 -2.517425 0.309565 -4.210750 15.447509 4.834707 -1.860293 -9.742318 -0.139578 6.389690 2.074716 7.479947 -0.766076 -11.837524 -15.390364 8.948233 6.363944 -5.073061 4.938475 4.329369 10.726619 8.222919 10.749712 -15.097547 13.003277 -19.608938 2.970891 -2.913250 4.065640 -0.674547 5.534034 -3.274470 1.974318 10.273256 -16.737252 14.953155 3.910050 -5.175123 -14.074145 7.278076 -3.571708 -5.608040 -6.774608 9.117537 2.555271 -2.883777 -3.480043 -2.176753 -2.698907 -2.198555 -13.401900 1.425782 18.292171 -8.521863 3.673856 -5.416472 -8.273317 -1.637584 4.105299 6.380972 6.351643 18.106139 13.067226 -1.043121 -1.011427 -12.690242 -0.623129 19.671073 10.271253 -13.951591 10.958426 0.837545 -2.295077 6.073894 5.550461 9.852097 8.441280 -15.838387 -18.180343 -1.088678 -5.993724 15.964047 12.473512 3.674311 -15.113834 19.096258 0.797528 -5.568622 22.433115 8.933389 -11.430031 -1.382739 9.520082 -18.245133 -12.116681 5.540672 -2.253192 -0.822536 -1.088525 1.432954 3.788849 -9.125045 -16.850892 -5.139572 -16.561165 16.281339 -2.219598 3.883591 0.569611 -14.061446 -14.918926 16.533218 2.391413 -9.703036 -7.507746 -8.045971 -4.693311 -17.849345 6.679473 6.580949 -5.676556 -11.727278 -11.944910 2.992604 7.275332 -5.663399 0.397384 -5.385715 -12.763252 7.876326 -1.117092 7.301272 -17.330430 -4.405211 -1.011094 3.747291 9.228925 6.166230 12.316201 25.163628 -9.393209 5.707218 11.117923 -0.996351 6.403351 17.922455 -14.252607 18.086954 -7.801931 14.734381 -1.444862 6.749771 -4.795489 -0.110154 5.399544 -1.827389 1.442814 7.430999 -7.296236 -4.018824 1.279180 -13.281685 -1.968902 6.099631 6.524618 1.754807 3.079524 7.755054 -9.580791 -3.202404 -4.937415 -2.471849 13.547387 1.557205 -14.080283 3.520039 4.487373 -1.617947 -7.186132 2.656560 5.783547 11.241185 -16.367931 9.200954 -3.947163 -7.228171 -13.998243 -11.229082 8.135293 -14.651211 -12.063947 9.434385 -15.194501 0.003144 -10.078520 7.406769 -11.346060 -2.921085 -0.349446 14.303621 9.477345 -3.743767 9.153999 -5.484630 15.333098 2.557126 -2.819190 0.053292 19.162132 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = -0.623975 0.243316 -0.135941 -0.561536 1.400903 -0.284704 -0.146853 0.764851 0.239921 0.792303 -0.743461 0.037787 -0.183706 -0.761578 0.074035 0.073134 0.084815 0.664853 -0.401100 -0.013825 0.448471 0.038763 0.312223 -0.376922 -0.245488 -0.765517 -0.123485 0.241799 0.074178 0.026871 -0.286352 0.099859 0.953104 -0.166864 0.556995 0.527024 0.563129 0.892781 0.214621 0.247621 0.432793 0.368942 -0.269539 -0.987587 0.368703 -0.438322 -0.666041 -0.508306 0.496348 -0.983712 0.703665 0.574373 0.030782 -0.340992 -0.500720 0.515782 0.490985 0.012366 0.897861 0.256461 -0.685685 -0.128637 -0.607403 0.874114 -0.735321 0.547818 -0.035145 -1.009603 -0.515622 0.643956 0.365694 -0.457477 -0.617488 0.102844 0.171720 -0.540008 0.255565 -0.182214 0.502563 -0.385855 -0.533195 0.241805 -0.345825 0.530191 -0.027225 0.170190 -0.352112 0.085541 0.187434 -0.678352 -0.257035 0.711627 -0.364231 0.387570 -0.419681 0.102652 0.213112 -0.353866 -0.190423 -0.383905 0.145561 0.074549 0.341450 -0.035796 0.001881 -0.495697 0.503064 0.454650 0.118258 0.250212 -0.014384 0.200110 0.094154 0.372670 -0.117357 0.257401 -1.129538 0.300316 -0.104072 0.107008 -0.274141 0.171136 0.458746 0.158267 0.533443 -0.851378 0.912668 0.093734 -0.330233 -0.413886 0.354452 0.101818 -0.307841 -0.100827 0.545153 -0.105723 -0.172559 -0.013271 0.334091 -0.136169 -0.698472 -0.320821 -0.251919 0.367739 -0.578016 0.235984 -0.224272 -0.391444 0.033246 0.257974 0.313100 0.341220 0.945944 0.642753 -0.139712 0.068360 -0.906079 0.357298 1.019346 0.281162 -0.685966 0.515063 -0.404628 0.052985 0.387353 0.372872 0.197797 0.602474 -0.184283 -0.205530 -0.171373 -0.100681 0.845857 0.468273 0.360289 -0.890071 0.137301 -0.249132 0.229393 1.238628 0.598944 -1.037786 0.237078 0.787086 -0.466258 -0.381147 0.168524 -0.317390 -0.259827 -0.405506 0.320410 0.544880 -0.716306 -0.732821 0.015237 -0.673450 0.760068 -0.083692 -0.243929 0.255886 -0.851900 0.083186 1.016983 0.230219 -0.153469 -0.225044 -0.587818 -0.409048 -1.050767 0.159620 0.422471 -0.365561 -0.280068 -0.587703 -0.158122 0.755792 -0.194867 0.153907 -0.805756 -0.009722 0.520908 0.016063 0.235159 -0.734137 -0.183103 -0.072414 -0.122946 0.293542 -0.291300 0.142785 0.751100 -0.609281 0.531215 0.585601 -0.145767 0.133238 0.671624 -0.508299 0.923426 -0.064710 0.399855 0.150181 0.443318 -0.320780 0.197838 -0.173492 -0.075416 -0.218671 0.503070 -0.791426 -0.314652 0.400352 -0.522071 -0.487880 0.325481 0.634475 0.386276 0.051941 -0.150986 -0.346781 -0.190032 -0.379600 0.134020 0.529500 -0.220444 -0.778584 0.187299 0.484276 -0.698186 -0.560673 0.264211 0.309764 0.793014 -0.803682 0.563657 0.141026 0.042793 -1.052294 -0.501024 0.118349 -0.385724 -0.431126 0.280379 -1.047280 -0.624872 -0.381918 0.573938 -0.647752 -0.096349 -0.007319 0.838079 0.313653 -0.004533 0.674900 -0.063029 0.335752 0.054591 -0.140265 0.134156 0.643909 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = -3.341451 2.971349 1.339711 -3.929942 5.359614 -1.466410 0.400406 1.521954 0.824287 3.274815 -4.308475 -0.548920 -1.415273 -5.119625 0.179697 -2.707336 -0.217613 3.875470 -1.085584 3.043197 2.916985 -2.136213 1.318529 -2.731599 -1.326855 -3.218252 -0.657243 1.076437 -0.089334 0.553178 2.258812 0.272967 4.539774 0.812707 3.362430 3.328942 0.077288 6.574902 0.922849 1.942757 1.019137 2.498494 -1.179988 -6.466199 2.743304 -2.039611 -2.706225 -4.510690 1.733272 -5.811774 2.637362 3.373772 0.237922 -2.101013 -4.152164 0.904860 4.643375 1.815351 4.356415 1.615854 -1.948484 1.182037 -3.771946 -0.483207 -3.356666 1.740705 2.073330 -3.894745 -0.272794 2.475269 2.368367 -2.242932 -3.687882 0.335057 1.353528 -2.663731 1.312748 -1.727248 -4.046245 -1.792321 -1.832008 0.611658 -0.699669 3.386222 -0.789470 0.991430 -1.277849 0.578831 0.940039 -3.244431 -1.764300 3.676468 -0.356226 0.889593 -1.237938 3.905949 1.627666 -1.789268 -2.820122 -0.569067 1.288385 0.466563 1.923806 1.125784 -4.218777 -3.538689 3.083125 2.372907 -1.312772 1.400547 0.915653 2.289669 0.761482 1.695524 -3.607806 3.799575 -5.907458 0.789972 -0.592174 1.147628 -0.400413 0.828239 0.242444 0.499735 1.879595 -4.010151 5.232312 1.360861 -1.194826 -2.974971 2.410653 0.290106 -1.403375 -1.279798 2.658140 0.256702 -0.633963 0.091704 -0.205590 -0.831618 -1.153476 -2.756625 -0.488994 4.329330 -1.692410 1.275591 -1.318197 -2.500331 0.050944 0.263124 1.150542 0.816345 4.969432 3.215951 -0.635369 0.092792 -3.459280 0.875886 5.963831 2.567397 -3.539908 2.361736 0.561534 0.134078 1.565970 1.227799 2.145802 2.221506 -2.995652 -3.366834 -1.019055 -1.972533 3.795627 3.256752 1.339871 -5.518605 3.862089 0.626688 0.536060 6.557980 2.763971 -3.619126 -0.109224 3.640959 -5.071973 -2.998156 0.607615 0.331793 -0.361376 -0.599506 1.565031 1.087189 -2.926072 -5.318437 -1.941933 -4.001259 3.437651 -0.705934 0.168765 -0.186595 -3.958750 -2.266550 5.112913 0.520599 -2.236113 -1.001336 -2.442561 -0.966136 -5.369053 1.401009 1.937328 -1.914809 -2.389634 -2.526296 0.294957 2.994395 -2.172107 -0.568527 -1.477621 -2.246562 2.330833 0.172799 1.303590 -4.670973 -1.211013 0.209815 1.035228 2.058960 1.455341 1.811154 5.702392 -2.736995 1.229272 3.238414 0.339710 2.088075 5.056218 -2.902559 4.988109 -1.857316 4.418814 -0.266719 1.981612 -0.835317 0.189690 0.685588 -0.607525 -0.293929 2.548815 -3.150276 -1.149466 1.824575 -2.513298 -1.357273 2.531162 2.981790 1.450723 0.656165 1.520596 -1.999242 -0.639119 -0.849809 -0.227442 3.171099 0.271634 -4.206908 0.072038 2.637790 -1.313475 -2.485874 1.076486 1.736141 3.707487 -4.009276 3.661731 -0.540444 -1.812821 -3.805529 -2.778584 2.675496 -3.517811 -2.685392 2.250224 -4.639408 -1.260117 -2.246678 3.396374 -2.748082 0.006595 -0.636805 3.542263 2.537443 0.006234 2.892161 -0.991874 3.125691 0.140848 -0.830330 0.548130 5.180722 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = -3.170697 3.409119 1.709947 -3.310035 4.416749 -1.684397 0.758075 1.828841 0.402976 2.913832 -4.171226 0.063935 -1.289817 -4.354931 0.078861 -2.390201 -0.158262 4.079656 -0.739729 2.647565 2.802989 -1.597826 0.820958 -2.749774 -1.204341 -3.090258 -0.489002 0.626290 -0.618760 0.747530 2.251588 0.558269 4.510282 1.093885 3.435952 3.470960 -0.078314 6.341420 1.371501 2.557215 0.736022 2.505571 -1.146015 -6.153975 2.670151 -1.957248 -1.701869 -4.340920 1.340739 -5.435093 3.509681 2.782870 0.331112 -1.613119 -3.719028 0.469009 4.341249 1.598647 3.970841 1.602412 -1.951052 1.629244 -3.073921 -0.156029 -3.180180 1.616938 2.411010 -3.527016 0.109429 1.970460 3.347692 -2.475680 -3.475989 0.262220 0.422072 -2.456157 1.133998 -1.433081 -4.153609 -1.584652 -1.964561 0.428594 -0.453416 3.020355 -0.858016 0.520020 -2.460021 0.500763 1.162120 -2.775328 -1.929725 3.530306 -0.217727 1.278181 -1.410735 3.374665 1.669604 -1.406706 -2.116101 -0.549786 1.355230 0.570410 1.662491 1.453047 -4.385819 -2.929526 2.937076 2.133187 -1.863115 1.421090 0.575747 2.710215 1.078589 1.417398 -2.778319 3.639548 -5.829739 1.159559 -0.178836 0.745627 0.185024 0.515078 -0.328105 0.042559 1.642391 -3.500056 4.621236 1.267357 -1.121162 -2.847707 2.297827 0.116826 -1.429711 -1.586480 2.508217 0.809430 -0.661405 -0.076331 -0.585031 -1.039187 -0.907250 -3.977221 -0.562798 4.329513 -1.710269 0.890028 -1.437374 -2.252101 -0.212219 0.236262 0.664884 0.739654 4.252709 3.026296 -0.373144 -0.484195 -3.210789 0.249140 5.152573 3.319002 -3.272276 1.977639 0.921483 -0.103800 1.831506 1.028488 1.652810 1.947601 -3.083804 -3.620752 -1.140709 -2.284665 3.517592 3.479472 1.251298 -4.793680 3.954748 0.853864 -0.225761 6.233184 2.396125 -3.089682 -0.501341 3.097292 -4.020198 -3.043413 0.595600 0.271151 -0.723756 -0.229021 1.075505 0.704164 -2.768780 -4.818873 -1.514788 -3.806850 3.306132 -0.456624 0.452499 -0.393372 -3.959251 -2.167146 4.769426 0.629325 -2.086402 -0.821589 -1.969361 -0.700488 -4.918969 1.376328 1.984135 -1.509568 -2.504882 -2.378138 0.687455 2.513097 -2.274437 -0.715859 -0.591058 -2.876888 2.123745 -0.410306 0.946388 -5.633152 -1.275033 0.024993 1.550329 2.264584 1.783371 2.146875 5.795954 -2.337924 0.779465 4.413046 0.904994 1.661821 4.906219 -2.763423 4.122267 -2.371263 3.600185 -0.032118 1.694326 -0.974076 -0.330759 0.688564 0.378409 -0.386981 2.295756 -2.701050 -0.741730 1.164987 -2.780977 -0.474785 2.479325 2.457785 1.265998 0.376631 1.553764 -1.879862 -0.482155 -1.194181 -0.678697 3.163639 0.446881 -4.199769 0.134172 1.885197 -1.621152 -1.989226 0.885340 1.558115 3.156810 -3.503501 3.276207 -0.525229 -2.079338 -3.765730 -2.753177 2.597468 -3.429952 -3.172111 1.872084 -4.105522 -1.174542 -1.984365 3.062086 -3.321902 -0.199331 -0.729784 3.044290 2.157712 0.288792 2.568032 -0.911390 3.325313 0.461540 -0.737511 0.084670 5.298579 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -2.005499 0.823368 -0.686636 -1.357174 5.820329 -0.465707 -0.190930 2.361765 -2.260844 3.845364 -1.137463 -0.725106 -1.295554 -3.924085 0.452602 0.224096 0.199963 1.417764 -0.378913 1.600880 1.591237 -2.028433 1.022280 -0.203065 -0.832557 -2.257083 -0.516103 1.243407 4.030108 -1.689968 -0.957780 -0.131989 3.621677 -0.777562 2.255066 1.736785 1.066193 2.383026 0.854615 -3.738125 -0.660384 1.852245 -1.872517 -2.499386 1.085310 -1.371245 -2.579557 -1.426125 1.965316 -1.075511 -0.788926 2.820965 -0.796652 -0.503578 -2.211551 2.722011 1.856825 0.144020 3.764591 0.364409 -0.217412 -2.110060 -3.350172 1.754845 -1.433590 0.280831 -1.600913 -2.580109 -0.242652 0.361165 -0.955301 -2.457982 -0.646529 3.122497 1.747834 -2.307986 0.932244 -1.017471 -1.106491 -4.169138 -3.420463 0.433847 -2.103093 2.838296 -0.107608 0.980197 0.407673 1.276261 -0.433934 -4.678038 0.634124 2.902939 -1.265474 -0.374890 -0.812828 2.312227 0.241105 -0.022663 -2.310391 -1.008986 0.399352 -0.429927 1.695358 -2.988749 2.881234 -2.671074 0.087658 -0.623356 1.843220 2.002888 3.139914 -0.100185 1.222666 3.550094 -2.825690 -0.963516 -3.026710 0.444755 -0.901239 1.176130 -1.246977 2.237445 1.537582 0.683658 2.995371 -5.789514 1.479284 0.043953 -0.200823 -3.470317 0.590800 -0.875675 -0.899842 -0.605139 2.067314 -1.262764 -0.747293 -1.013273 1.366120 0.797619 -3.151505 0.663462 0.326114 3.987768 -4.471363 0.994591 -0.894255 -1.842177 0.382678 1.084249 2.777628 2.641032 3.726671 2.979662 -1.082145 2.723047 -3.946652 1.302236 3.609955 0.103713 -2.563676 3.302015 -2.249525 -0.207643 1.027496 2.363619 2.755719 1.016946 -1.631210 -1.389362 2.234470 1.337969 3.294089 -0.054311 1.318399 -1.758083 1.682443 -0.288211 -0.939310 3.971219 0.709257 -3.056127 2.297337 1.440726 -2.370957 -0.151477 1.182330 -2.643938 0.128635 -2.051984 0.925251 2.556751 -2.052558 -1.449577 -0.374282 -2.382090 3.726968 -0.839140 -0.950898 2.115612 -2.320524 -0.191602 3.316053 0.440500 -0.712796 -2.448293 -3.312983 -2.931248 -2.671162 1.189801 -0.187789 -1.281268 -1.340911 -2.836337 -1.280821 3.325163 1.233099 1.340950 -5.999811 0.929859 1.519156 1.613128 2.032610 -0.624211 -0.465536 0.704718 -0.929121 0.623349 -1.045671 1.894338 3.596286 -2.790605 1.553839 -0.962121 0.058327 1.645706 1.251670 -3.771285 3.593975 0.865626 4.294494 -0.452608 1.350093 -0.991285 1.165363 0.460431 -0.652057 0.137999 0.882438 -1.295072 -1.434898 1.391638 -2.181156 -3.504599 -0.543841 1.303667 0.460999 1.138513 -1.548206 -1.345205 -0.728898 -0.821300 0.921989 2.155738 -0.609631 -1.160193 1.383758 0.604565 0.471639 -0.333444 0.680478 0.889049 2.153798 -3.379446 0.326724 -0.672873 1.556696 -1.532718 -3.103735 0.234972 -0.827768 -0.982021 3.135662 -4.224215 -0.366240 -2.104712 0.520086 -3.479229 0.385766 -0.117877 4.221336 0.986185 -1.061066 1.993441 -0.469701 1.322133 -0.744720 -0.205240 0.837385 1.550597 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.980940 0.490732 0.115194 -0.794455 2.768208 -0.359610 0.012916 1.728545 -0.324802 1.511327 -0.925744 0.090396 -0.108699 -1.137864 0.206741 -0.085363 -0.147784 0.964335 -0.584124 0.247877 0.698004 0.214551 0.158144 -0.290284 -0.558042 -0.976747 -0.434528 0.520618 0.796928 -0.457385 -0.451557 0.155873 1.747530 -0.556707 1.456705 1.079037 1.196799 1.032130 0.071868 -0.095900 0.381261 0.612952 -0.780394 -1.141450 0.257052 -0.630972 -1.410476 -0.526787 0.721192 -1.053715 0.834100 1.080387 -0.082916 -0.097447 -0.351405 1.386599 0.260706 -0.277381 1.511177 0.442385 -1.272750 -0.149902 -1.480962 1.982935 -0.697838 1.093056 -0.715426 -1.728668 -0.673874 0.573472 0.614863 -1.405786 -0.695758 0.990481 0.366818 -0.956418 0.578059 -0.492626 0.805710 -1.276455 -1.101431 0.573822 -0.598916 0.898638 -0.061906 0.289760 -0.656093 0.431970 -0.246536 -1.731547 -0.134454 1.631670 -1.068256 0.324618 -1.458405 -0.085392 0.167960 0.081058 -0.476435 -0.939611 0.451886 0.106254 0.558907 -0.719235 0.990973 -0.835325 0.091342 0.485990 0.494005 0.852200 -0.063199 0.477683 0.775471 1.261437 -0.237797 0.204564 -1.567758 0.680146 -0.747078 0.436755 -0.489442 0.587905 0.950734 0.693345 1.208085 -1.800490 0.915421 -0.110181 -0.600972 -1.121563 0.359561 -0.385939 -0.713446 -0.404410 0.810585 -0.006662 -0.396101 -0.427810 0.659570 0.038861 -1.070393 -0.793921 -0.044580 0.427090 -1.530610 0.227428 -0.310416 -0.403133 -0.189800 0.953120 1.225725 0.983150 1.778019 1.164103 -0.030814 0.221599 -1.819213 0.323836 1.422946 0.170359 -1.199464 1.404750 -1.235999 -0.176640 0.597738 1.049487 0.408027 1.029359 -0.656510 -0.573315 0.185314 0.273733 1.698647 0.629430 0.280450 -0.994767 0.237015 -1.008552 -0.570658 2.079148 0.981257 -1.752822 0.266435 0.757536 -0.189216 -0.710007 0.716761 -1.356484 -0.618263 -0.547299 0.335707 0.964413 -0.878131 -0.737364 0.640886 -1.158425 1.544222 -0.319497 -0.689924 0.427979 -1.351622 -0.351952 1.808598 0.344339 -0.373035 -0.614073 -1.010860 -0.456271 -1.376438 0.343234 0.606562 -0.229694 -0.754625 -1.151663 -0.152439 1.313620 -0.104346 0.678337 -1.797524 -0.233460 0.791291 -0.267365 0.782515 -1.361698 -0.221850 -0.628039 -0.216711 0.403703 -0.789374 0.514311 1.858910 -0.939980 0.952554 0.737764 -0.749385 -0.145483 0.922607 -1.442599 1.696180 0.298171 0.729170 0.145890 0.571419 -0.787852 0.105536 -0.185665 0.137723 -0.231897 0.699141 -0.692163 -0.399821 0.044314 -1.244862 -0.863098 0.167240 0.775906 -0.131541 0.292485 -0.466093 -0.836615 -0.519162 -1.001724 0.161565 0.985633 -0.645412 -0.982839 0.828255 0.249456 -0.902485 -0.300481 0.208107 0.576352 1.236238 -1.447497 0.363870 0.213467 0.461993 -1.765291 -1.214503 -0.208397 -0.841613 -0.753920 0.235116 -1.436727 -0.980929 -0.863788 0.423997 -1.402540 -0.738014 0.570242 1.888194 0.678790 -0.486384 0.906749 -0.290531 0.948568 0.180192 -0.095748 0.285621 0.793959 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -1.008643 0.682634 -0.014684 -0.740790 2.379116 -0.559424 0.169712 0.925200 -0.509864 1.792478 -0.617590 -0.288817 -0.278371 -1.920445 0.229874 -0.506061 -0.094219 0.901150 0.082718 0.855560 0.662177 -0.829518 0.117263 0.001755 -0.649024 -1.596062 -0.301536 0.739687 1.541834 -1.355584 0.111797 0.225856 2.089712 -0.392908 1.967694 1.456855 0.709972 1.034407 0.684162 -0.935365 -0.320885 0.690441 -0.997874 -1.075374 0.002300 -0.170439 -1.466409 -0.651220 0.723485 -0.346136 0.069181 1.503629 -0.473498 0.146791 -1.115016 1.220514 0.442143 -0.117261 1.865234 0.207734 -0.447902 -0.228419 -1.639803 1.892803 -0.777203 -0.129077 -0.772947 -1.302143 0.400057 0.145755 -0.264163 -0.991338 -0.454765 1.645458 0.966614 -1.490979 0.238452 -0.690289 -1.207656 -1.682058 -1.399409 0.704796 -0.286545 1.399792 0.285809 0.618058 0.174107 0.886681 -0.580645 -2.336183 0.494998 1.715978 -1.009311 -0.407973 -0.673579 1.384527 0.434882 0.196449 -0.708210 -0.805927 0.440162 -0.600974 0.843586 -0.838763 1.005628 -1.323032 -0.251916 -0.373404 0.511724 1.029857 1.066161 0.331973 1.172290 1.727169 -1.199848 -0.408644 -1.577716 0.712522 -0.475406 0.349205 -0.460489 0.900001 0.467496 0.665407 1.675841 -2.473656 0.459621 -0.028678 -0.041872 -1.727812 -0.099610 -0.679549 -0.489926 -0.638932 0.949825 -0.243845 -0.197120 -0.655046 0.436418 0.593011 -0.909978 -0.375153 0.460878 1.613618 -1.623753 0.511249 -0.301374 -0.568305 -0.323562 0.918189 1.507128 1.585235 2.055648 1.507330 -0.162151 0.875609 -2.030962 0.021362 1.623254 0.122335 -1.312279 1.944629 -1.523643 -0.657658 0.284068 1.665711 1.236318 0.042494 -1.233143 -0.932358 1.134933 0.650451 1.840805 -0.332399 -0.038696 -0.418419 1.109333 0.325407 -1.116110 2.188799 0.479640 -1.568712 0.928973 0.708955 -1.081626 -0.610656 1.225988 -1.657737 -0.117124 -0.834754 0.335020 1.086695 -0.770393 -0.142794 0.247863 -1.318687 1.619599 -0.444014 -0.494927 0.923291 -1.199371 -1.230858 1.831908 0.067275 -0.221699 -1.239417 -1.490943 -0.770295 -1.291288 0.441395 0.126651 -0.496888 -0.551808 -1.511673 -0.300629 1.477065 0.450064 1.249140 -2.162481 -0.167320 0.896233 0.754883 0.728316 -0.600014 -0.156849 0.213498 -0.008656 0.078796 -0.493121 1.183804 2.037719 -1.073961 0.784812 -0.200663 -0.827230 0.719471 0.598740 -2.190756 2.088464 0.333646 0.997408 0.195295 0.433442 -0.808068 0.153745 0.326231 -0.107987 -0.112810 0.106353 -0.431958 -0.593022 0.146064 -1.165545 -1.324462 -0.456677 0.664633 -0.145271 0.580555 -0.405400 -0.792582 -0.476562 -0.985884 0.564576 1.037406 -0.010201 -0.269693 1.410549 0.319592 0.301250 0.147124 0.058943 0.603048 1.003950 -1.893916 0.019488 -0.259537 0.924454 -1.030051 -2.038189 0.243638 -1.113759 -0.550398 0.569910 -1.995478 -0.320138 -1.189897 -0.047439 -1.803071 0.008162 0.585506 2.294452 0.624439 -0.919454 0.708758 -0.653956 0.782217 -0.107345 0.041862 0.484089 1.013995 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.490127 -0.061737 -0.394074 -0.184924 1.094260 -0.561948 -0.096430 0.841971 0.100008 0.663431 -0.220375 -0.094656 -0.191732 -0.672650 0.165737 0.296406 0.243394 0.689162 -0.175335 0.019047 0.397797 0.107227 0.024279 -0.023234 -0.203163 -0.375774 -0.079624 0.281430 0.275885 -0.548127 -0.466398 0.366316 1.078750 -0.137193 0.936273 0.647848 0.580001 0.578206 0.397050 -0.179127 0.071316 0.357900 -0.338779 -0.628749 0.182374 -0.137223 -0.484988 -0.217709 0.418776 -0.173395 0.797365 0.544833 -0.102056 0.169659 -0.362150 0.383537 0.006996 0.015882 0.780337 0.225910 -0.538994 0.053367 -0.503975 1.156198 -0.512287 0.188407 -0.277848 -0.785882 -0.170576 0.201798 0.454407 -0.787652 -0.427152 0.449647 0.106247 -0.505309 0.294738 -0.022854 0.747915 -0.681066 -0.904262 0.240894 -0.425869 0.498024 -0.056129 0.154989 -0.525531 0.189604 -0.081244 -0.813776 0.138346 0.537047 -0.639367 0.344381 -0.431284 0.074044 0.065580 0.023342 -0.199020 -0.563154 0.183068 -0.286366 0.362530 0.155300 0.631982 -0.062495 0.085102 -0.097664 0.299576 0.428992 0.419247 0.179079 0.461510 0.537114 0.167957 -0.267898 -0.854135 0.496597 -0.219613 0.084760 -0.119052 0.354597 0.518248 0.066024 0.637641 -0.932344 0.262641 -0.036661 -0.038048 -0.456719 0.144143 -0.172671 -0.300790 -0.405565 0.676931 -0.083382 -0.215195 -0.231980 0.353729 0.189026 -0.673817 -0.205410 -0.169020 0.207503 -0.612046 0.144761 -0.261241 -0.425276 -0.045982 0.315984 0.427550 0.702508 0.774267 0.676503 -0.230967 -0.046236 -1.026544 0.086538 0.610768 -0.019656 -0.603376 0.693279 -0.611390 -0.144936 0.352409 0.744044 0.374807 0.042160 0.009609 -0.032007 0.197123 0.342002 0.816120 -0.121521 0.165533 -0.239798 -0.124894 0.049032 -0.319869 1.205352 0.109153 -0.877137 0.250152 0.369073 0.089778 -0.283029 0.335736 -0.657943 -0.231584 -0.502347 0.355091 0.600865 -0.617684 -0.051593 0.459336 -0.551433 0.557545 -0.195414 -0.455480 0.405096 -0.912930 0.142809 1.046797 0.177709 0.016496 -0.400863 -0.753182 -0.050115 -0.702723 0.184538 0.069393 0.044733 -0.153698 -0.580831 -0.189754 0.852419 0.192119 0.403588 -0.835681 0.058208 0.443225 -0.084031 0.166578 -0.612817 -0.138150 0.079826 -0.013465 0.134970 -0.335501 0.118666 0.752117 -0.580989 0.176621 0.645941 -0.087635 0.108610 0.284030 -0.840446 0.816239 0.072865 0.139325 0.157201 0.203453 -0.467974 -0.001300 -0.072899 0.480385 -0.295847 0.143772 -0.277011 -0.208450 0.069603 -0.489660 -0.505781 -0.144701 0.403458 0.048676 0.214663 -0.436276 -0.297664 -0.179811 -0.503632 0.290144 0.514988 -0.098095 -0.293153 0.608169 0.094768 -0.353816 0.092604 0.100801 0.207926 0.651836 -0.779281 0.037057 0.108308 0.449330 -0.540241 -0.743336 -0.072986 -0.294908 -0.124185 0.200225 -0.839929 -0.504591 -0.379523 0.247613 -0.705731 0.143434 0.099243 0.893887 0.336311 -0.230402 0.480684 -0.120344 0.275277 0.044388 -0.108917 0.086364 0.546966 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.836199 1.102608 -0.502312 -1.324573 3.307793 -0.608603 0.847138 0.736477 -1.638349 2.718409 -1.009407 -1.115281 -0.962251 -3.386448 0.465202 -1.394796 -0.074798 1.204124 0.188204 2.227723 1.449010 -2.218781 0.311712 -0.187068 -0.859416 -2.047815 -0.281106 1.149573 3.032594 -1.558255 0.157849 0.219176 3.221031 -0.487331 3.052889 2.522150 0.327824 2.102753 0.926550 -2.844403 -1.085670 1.738852 -1.842259 -2.254706 -0.031376 -0.471517 -2.329962 -1.378747 1.451942 -0.463142 -0.588351 2.760325 -0.995027 0.055308 -2.435292 1.537589 1.113940 0.528701 3.386639 0.322307 -0.085653 -0.719086 -2.621912 2.529086 -1.077814 -0.432463 -1.004326 -1.937435 1.191773 -0.140759 -1.319997 -0.952109 -0.868325 2.656535 1.982859 -2.490455 0.557025 -1.253002 -3.425375 -2.370200 -2.385077 0.763794 -0.886561 2.832075 0.145573 1.042775 0.581539 1.595572 -0.755013 -3.829647 0.900400 2.873286 -1.170874 -1.093576 -0.746962 3.176589 1.004785 0.324215 -1.991071 -0.450800 0.692677 -1.011290 1.692956 -1.917080 1.073937 -2.525281 -0.433859 -0.486443 1.122704 2.313615 2.305365 0.687172 1.947167 2.691619 -2.222176 -0.342866 -2.265401 0.855203 -1.243561 0.764953 -0.599726 2.000220 0.804040 0.571426 2.824057 -3.917369 0.761559 0.285601 0.286077 -2.902552 0.118578 -1.274959 -0.810711 -1.218104 1.811980 -0.504522 -0.478087 -1.139007 0.683895 1.221878 -1.360452 0.518703 0.899234 2.607724 -2.125112 0.906203 -0.725524 -1.218609 -0.129356 1.412265 2.076988 2.740684 3.490848 2.861339 -0.631911 1.534132 -2.949188 0.391484 3.090739 -0.013256 -2.386957 2.866456 -2.244807 -1.107922 0.276504 2.400898 2.778854 0.797071 -2.136920 -1.757778 1.370816 0.979239 3.080965 -0.091153 0.155001 -0.477901 2.468462 0.226817 -1.657098 2.887723 0.665183 -2.187423 1.425482 1.122865 -3.022104 -0.929699 1.822355 -2.244355 0.463542 -1.769487 0.665172 1.987771 -1.500865 -0.513310 -0.209454 -2.372512 2.625937 -0.872470 -0.601389 1.244441 -2.163165 -1.672523 2.842550 0.300571 -0.669351 -2.402169 -2.421346 -1.980048 -2.285901 1.143230 -0.251000 -0.653225 -1.394091 -2.564976 -0.936899 2.049039 0.973606 1.917979 -3.030563 0.020951 1.425742 2.037815 1.420222 -0.152533 -0.466596 0.771177 -0.033840 0.520261 -0.459966 2.172939 3.046353 -2.078537 0.966070 -0.754461 -0.901100 1.696407 1.268614 -3.662504 3.574984 0.568667 1.953148 -0.131670 0.807119 -1.036626 0.343187 0.910161 -0.688312 0.101672 0.218899 -0.568514 -1.073754 0.654299 -1.507462 -2.080131 -0.817391 0.982431 -0.100558 1.243072 -0.323186 -1.513106 -0.851890 -1.298514 0.884155 2.086810 0.102494 -0.326111 2.117536 0.317038 1.064712 0.317477 0.147487 0.872784 1.694717 -3.374282 0.046000 -0.908760 1.258306 -1.092818 -2.922757 0.496004 -1.345639 -0.913942 2.030878 -2.716791 0.405804 -2.233871 -0.043696 -2.493129 -0.428674 0.573145 3.490513 0.996747 -1.340092 1.173092 -1.091548 1.566085 -0.344192 -0.047220 0.844828 1.841341 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -2.191473 0.675905 0.234712 -1.495099 4.359216 -0.851136 0.082690 1.715948 -0.720740 2.836413 -1.510258 -0.869436 -1.221754 -3.341099 0.497545 -0.830617 0.104576 1.815262 -0.544589 1.477417 1.858585 -1.156993 0.387755 -0.530165 -0.868555 -2.091298 -0.683932 1.091057 2.240934 -1.551582 -0.428732 0.508074 3.764593 -0.483515 3.401236 2.661072 1.516299 2.847830 0.353948 -1.593990 -0.451988 2.013349 -1.860960 -2.949275 0.876201 -1.087876 -2.519698 -1.808870 1.723727 -1.157743 0.446103 2.876167 -0.699573 -0.077622 -1.972475 1.863734 1.269718 0.397348 3.561546 0.813260 -0.981438 0.118844 -3.103278 2.402766 -1.745425 0.981515 -1.068372 -2.738360 -0.073626 0.230396 0.454978 -1.891727 -1.430740 2.287234 1.582950 -2.333574 0.936735 -1.042646 -1.015922 -2.941332 -3.140514 0.760995 -1.097244 2.701216 -0.177139 0.821866 0.159913 1.279942 -0.418607 -3.809467 0.414398 2.913434 -1.610910 -0.149623 -1.590406 1.754501 0.395606 0.221459 -1.902700 -1.116076 0.923989 -0.675844 1.703179 -0.771022 1.472854 -1.916063 0.355031 -0.005480 1.037393 1.403250 1.641734 0.444838 1.839555 2.606156 -1.636834 0.324959 -2.947469 1.047074 -1.125492 0.880372 -0.574315 1.858870 1.323636 0.429159 2.755637 -4.024002 1.409198 0.170529 -0.617130 -2.528417 0.660589 -1.190087 -1.272717 -1.337256 2.296372 -0.301413 -0.795720 -1.068921 1.038942 0.593095 -1.831588 -0.296215 0.106008 1.867543 -2.326821 0.748744 -1.039616 -1.751056 -0.151121 1.441236 1.988820 2.683796 3.755726 3.079835 -0.851498 0.467071 -3.481886 0.472759 3.302765 -0.306342 -2.727404 2.768031 -1.918561 -0.507571 0.953309 2.502276 2.305221 0.948430 -1.393286 -1.299876 0.513026 0.781672 3.450822 0.638289 0.633186 -1.370370 1.408754 -0.067092 -1.472082 3.895376 1.188276 -2.900060 1.086766 1.484271 -1.980770 -1.596984 1.470184 -2.132011 -0.204702 -1.736249 1.099160 1.997346 -2.096125 -1.075925 0.517184 -2.731051 2.836047 -0.797459 -0.685541 1.443940 -2.916079 -1.815408 3.399702 0.142794 -0.850286 -2.197194 -2.614208 -1.112983 -2.860101 1.311794 0.175574 -0.552254 -1.652519 -2.696939 -0.410014 2.762862 0.571998 1.616609 -3.115961 -0.346538 1.584658 0.791902 1.830593 -1.565292 -0.726041 0.210986 -0.321697 0.901829 -0.618549 1.382876 3.740692 -2.457790 1.046179 0.421382 -1.377077 0.945132 1.845943 -3.461529 3.742003 0.413961 1.782961 -0.151643 1.190613 -1.363686 0.285098 0.609258 0.163357 -0.141027 0.898592 -0.957087 -1.012821 0.300253 -2.270702 -1.918277 -0.267750 1.246759 0.049693 1.074594 -0.482526 -1.793281 -0.610347 -1.381791 0.716074 2.500467 -0.277640 -1.216654 1.848356 0.469355 -0.217124 -0.071558 0.505614 0.781215 2.513007 -3.511521 0.477700 -0.422228 0.975679 -1.938833 -2.831902 0.069616 -1.932212 -0.965560 2.149115 -3.047859 -0.583687 -2.207445 0.644289 -2.129888 -0.338124 0.397059 3.593254 1.776444 -1.110433 1.797631 -0.758196 1.898585 -0.021375 -0.608272 0.696982 2.283517 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -5.670302 3.350298 0.688786 -3.713258 11.142194 -1.372080 1.778015 4.890770 -6.919886 8.794856 -3.094269 0.725964 -2.241896 -9.084350 0.979771 -2.388982 -0.474349 2.974415 0.346697 5.843592 4.284571 -5.383943 0.547660 -0.454313 -3.306056 -7.443168 -0.045522 3.208018 9.263300 -5.043482 0.032734 0.608932 9.382363 -2.132343 9.644854 7.655939 3.327696 5.651318 2.295310 -8.574944 -3.401809 4.857286 -5.671637 -6.006266 0.102925 -1.886838 -7.342292 -3.858900 4.255457 -1.664859 -2.461965 8.284813 -2.843796 0.534738 -5.773061 6.663055 3.177523 -1.864320 10.342556 1.011498 -1.652830 -2.836674 -7.948009 8.777716 -3.145397 -0.802639 -3.538764 -5.367114 3.326811 -0.628145 -2.812145 -3.268541 -1.047472 8.500083 5.205990 -8.084981 1.391781 -3.885392 -8.141400 -9.209317 -6.862490 2.461697 -1.177795 7.805876 0.778480 3.238091 2.215491 5.145730 -2.839893 -12.205382 2.919997 8.891947 -4.742704 -3.280399 -5.097108 8.340250 1.708565 1.526358 -5.357003 -2.365302 2.717665 -2.330880 4.777218 -8.000850 5.496216 -7.019300 -1.579207 -2.277683 3.556359 5.407838 3.991633 1.575863 6.477698 8.959666 -5.404692 0.343462 -7.325153 2.638204 -2.329994 2.357919 -1.940484 5.201481 3.317899 2.265484 9.102901 -11.941111 2.225969 0.243526 -0.194312 -9.578295 0.134927 -4.365128 -2.461764 -3.839207 5.389501 -1.367223 -1.322552 -4.116482 3.119334 3.050346 -5.393645 -1.505613 2.739351 7.842710 -8.333144 2.552726 -2.243190 -2.860640 -1.038457 4.941447 6.857696 8.278325 10.624319 8.331857 -0.898132 5.559161 -9.158613 0.088182 8.433758 1.374231 -7.362477 9.203700 -7.653511 -3.491381 1.139403 7.389085 7.597985 1.808708 -7.564705 -5.953476 6.061350 3.124831 9.857315 -0.242185 0.564739 -1.103011 6.921651 0.025932 -5.865593 8.220317 3.162110 -7.577777 5.152227 2.826788 -5.614425 -2.985894 5.997318 -8.014806 -0.307180 -3.952060 1.516254 5.483821 -4.318722 -0.905022 0.574971 -7.269482 8.601741 -2.250052 -0.725705 4.092134 -5.975710 -5.688514 6.980763 0.126303 -2.406470 -7.236435 -6.825642 -6.805993 -6.705120 3.153463 -0.209172 -1.894129 -4.706503 -8.484617 -2.304802 5.629681 2.954100 5.839130 -11.392862 -1.033112 4.563688 5.144184 4.662155 -2.027063 -1.351904 0.839979 -0.256431 1.982393 -2.465007 7.373888 10.153573 -5.888071 4.239233 -3.274699 -4.332899 4.027615 3.778692 -11.368254 10.617176 2.459163 5.296269 0.206041 2.526400 -4.207946 0.949197 2.005208 -1.023797 0.541802 0.772349 -1.541053 -3.121933 -0.150807 -5.859903 -5.719882 -2.596679 2.338621 -1.145972 3.421924 -0.837628 -4.282728 -2.959675 -6.671302 2.216985 6.262523 -1.404516 -1.117471 6.922926 0.577366 2.259776 2.287803 0.588569 3.035380 5.111826 -10.054355 -0.230794 -2.392800 3.670462 -4.696662 -9.530579 0.787955 -5.024875 -3.869024 5.624477 -8.821645 0.429294 -6.544954 -0.429386 -8.764539 -1.782163 2.252710 11.137210 2.732558 -3.990371 3.951684 -3.460849 5.047506 -0.388386 0.708909 1.757998 5.114419 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.836101 0.063688 -0.088698 -0.500819 1.514655 -0.372743 -0.145979 0.773213 0.335883 0.910283 -0.694341 -0.567421 -0.542311 -1.044338 0.170756 -0.088412 0.128887 0.815676 -0.465981 0.130097 0.776943 -0.069793 0.179789 -0.345812 -0.195481 -0.495338 -0.341437 0.270558 0.362580 -0.272053 -0.447797 0.250915 1.353586 -0.033345 1.111180 0.844074 0.672744 1.262116 0.000989 0.221278 0.047378 0.825022 -0.575415 -1.295011 0.580738 -0.609843 -0.692559 -0.667955 0.651665 -0.681570 0.951270 0.893645 -0.103345 -0.073841 -0.551967 0.426585 0.408729 0.447330 1.219345 0.436911 -0.613691 0.237192 -1.046687 0.796128 -0.782683 0.822459 -0.126382 -1.222372 -0.478697 0.198187 0.634589 -0.858409 -0.794323 0.506579 0.295949 -0.619555 0.495744 -0.222403 0.409557 -0.733185 -1.249836 0.183610 -0.524583 0.863933 -0.242386 0.119521 -0.374120 0.229266 0.075445 -1.118525 -0.093632 0.904170 -0.601831 0.475799 -0.562572 0.096269 -0.035114 0.048350 -0.592988 -0.375154 0.298913 0.002822 0.536510 0.255714 0.183342 -0.470969 0.613742 0.280138 0.213521 0.217152 0.609251 0.112469 0.425774 0.730801 -0.251661 0.268885 -1.141511 0.418816 -0.298346 0.326441 -0.131276 0.562603 0.510462 -0.104744 0.799395 -1.213951 0.699875 0.081195 -0.419163 -0.632281 0.422911 -0.360498 -0.605589 -0.440364 0.920826 -0.001366 -0.398180 -0.303881 0.355678 -0.024820 -0.774874 -0.181968 -0.269595 0.247038 -0.582750 0.130303 -0.460923 -0.781259 -0.047413 0.447080 0.455793 0.776473 1.225277 1.038303 -0.378737 -0.369185 -1.201242 0.300167 1.219918 -0.107183 -1.029457 0.696045 -0.489137 0.131157 0.570784 0.681228 0.606283 0.575051 -0.006714 -0.078043 -0.288935 0.136732 1.202656 0.523431 0.500707 -0.721462 0.095230 -0.176373 -0.294537 1.619253 0.565925 -1.162190 0.102683 0.585614 -0.491734 -0.562255 0.291889 -0.448601 -0.093307 -0.703466 0.490107 0.708998 -0.950894 -0.629285 0.342621 -1.017975 1.002722 -0.221937 -0.142634 0.478381 -1.394089 -0.230845 1.409603 0.159332 -0.325049 -0.577170 -0.844352 -0.243214 -1.135966 0.486036 0.215129 -0.142695 -0.615024 -0.846788 -0.017650 1.148395 0.023115 0.356984 -0.650143 -0.151507 0.533107 -0.231616 0.674123 -0.846222 -0.377562 -0.082851 -0.132468 0.578740 -0.179542 0.088877 1.310095 -0.901402 0.346210 0.859785 -0.187837 0.049519 0.814494 -0.915569 1.193521 -0.088991 0.347156 -0.128552 0.550911 -0.483651 0.062452 0.084982 0.353183 -0.138453 0.552574 -0.468523 -0.270385 0.170393 -0.956761 -0.441114 0.164362 0.489417 0.257604 0.280274 -0.217597 -0.684926 -0.140644 -0.356463 0.151911 0.972292 -0.045108 -0.756050 0.375544 0.081697 -0.527254 -0.275275 0.303808 0.146797 1.111032 -1.124763 0.245922 0.073077 0.072034 -0.859336 -0.713422 -0.198910 -0.589848 -0.333961 0.752686 -1.001032 -0.393525 -0.672718 0.477277 -0.615919 -0.063397 -0.106181 1.106255 0.805614 -0.190513 0.793695 -0.030852 0.759052 0.123922 -0.438712 0.254415 0.948515 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -14.526127 17.908315 11.370202 -11.051947 28.035805 0.781166 0.031491 9.451051 -13.864488 27.057254 -9.723825 -1.636267 -6.491460 -24.457687 -0.912709 -15.228157 -8.695688 6.595673 2.621416 17.717812 9.890286 -18.500337 1.767924 -0.145913 -11.455200 -23.222371 -3.964367 7.974878 27.256268 -17.448571 3.579926 -3.570252 25.312807 -4.997918 24.020789 19.294302 5.899047 16.537446 6.151848 -13.989316 -13.421921 12.023244 -17.670822 -11.465540 0.975954 -7.523865 -16.591862 -8.854625 9.177316 -2.345346 -5.313782 22.230373 -8.561762 0.512075 -15.023272 18.893938 4.629495 1.516240 29.728104 0.090629 0.112535 -7.548832 -28.927868 16.880553 -7.951359 0.598251 -10.484737 -10.804192 12.070834 -6.744210 -6.597084 -12.143542 -0.599079 28.565000 12.921347 -23.136532 0.473126 -15.592648 -39.650459 -23.981363 -19.061615 7.898885 2.434482 18.817225 4.281045 10.113268 4.583463 19.438596 -11.732980 -36.938026 9.136017 26.196450 -10.032783 -9.618078 -9.719722 26.098943 2.587591 6.872344 -13.835638 -0.721075 8.257788 -2.110774 12.100565 -29.464486 13.044976 -29.807416 1.555943 -6.143220 3.904961 3.403974 14.925032 3.735411 20.391018 30.318522 -24.656998 -0.844056 -22.632903 1.711546 -1.414433 6.712183 -5.318494 15.487986 -5.852513 8.034551 26.582716 -37.943834 4.516522 -2.650778 -5.652961 -31.909865 -2.531861 -14.464835 -5.277823 -8.362087 9.810760 -1.956204 -3.222299 -13.895232 3.139659 5.534658 -12.302560 -9.084434 15.284516 31.330463 -21.416050 6.793141 -4.428627 -6.438022 -5.705824 15.217876 22.668600 21.401499 30.980525 20.909419 3.530705 12.508887 -24.800075 -4.544314 18.849047 7.738966 -21.264113 27.053587 -18.813521 -10.372556 1.024106 22.118418 21.061735 7.085826 -26.283102 -24.495291 18.915584 8.156493 25.796272 -1.370880 0.870680 4.037757 26.875390 0.603331 -21.432888 22.753385 10.849955 -14.236053 8.646488 3.414102 -14.970816 -8.715985 21.189819 -19.943324 5.547303 -5.032072 -3.265906 11.901907 -6.515135 -3.730125 -1.097936 -20.834520 28.910749 -5.808523 4.470473 12.781398 -15.852018 -27.106370 16.121193 -3.903652 -10.060565 -20.130744 -18.284135 -19.665622 -13.954930 8.538716 3.507694 -9.345625 -15.956244 -23.726437 -0.097955 13.259403 8.057001 17.028535 -26.810646 -12.846479 11.228326 10.224069 18.666690 -2.467871 -1.714095 -1.103117 0.517827 8.890061 -2.020688 27.140145 34.080819 -11.737272 15.529480 -11.358638 -9.432024 9.438086 11.147597 -31.414126 28.482117 4.666392 14.667855 -1.800134 5.895863 -8.568396 3.402143 10.781266 -3.054141 8.617665 0.683557 0.575578 -8.758971 -6.691565 -22.380871 -11.222854 -8.077668 3.009376 -7.826534 9.691145 2.538606 -11.607349 -9.904839 -15.877353 2.385329 15.806053 1.310235 0.065119 18.548167 -3.332312 11.814961 11.756892 0.756241 7.210605 9.970567 -26.092468 -4.787017 -8.450570 5.555995 -12.677567 -27.740709 -2.688549 -15.825555 -12.266029 12.912699 -26.105293 4.447727 -18.164607 -5.751461 -24.641568 -3.099973 7.850955 31.091433 12.566732 -14.794953 7.732744 -11.378771 17.612341 0.833553 -1.080118 6.885277 14.390419 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -2.939175 3.084172 2.252460 -2.899316 6.250714 -0.118409 0.955402 2.755715 -1.596099 4.410556 -3.121652 0.702875 -0.262043 -3.448750 0.076237 -2.843558 -1.524485 1.897928 -0.827785 2.078171 1.866271 -1.037644 0.415652 -0.987919 -2.243717 -4.028445 -1.022680 1.512037 2.569659 -1.218011 1.407970 -0.283096 4.325829 -1.437074 4.338400 3.522782 2.121013 3.378711 -0.022327 0.391473 0.191907 1.719564 -2.500689 -3.341511 0.146829 -1.531384 -3.998782 -2.010926 1.675937 -3.366080 0.532424 3.447331 -0.480224 -0.563148 -1.824578 3.824339 1.416565 -0.901540 4.753568 0.805136 -2.899566 -0.222663 -4.651286 4.612899 -1.806862 2.174403 -1.431796 -3.999123 -0.091265 1.082029 -0.030190 -2.246675 -1.564053 3.155658 1.716138 -3.639764 0.674335 -2.490761 -3.470072 -2.738455 -1.617014 1.855527 0.552248 2.852257 0.387052 1.306885 -0.035072 2.136662 -1.288218 -5.274242 -0.236696 5.352594 -2.442642 -0.495348 -3.449808 2.124708 0.773936 0.332328 -1.727713 -1.200756 1.544954 0.512362 1.715850 -3.532100 0.275339 -4.265494 0.256377 1.156550 0.205091 1.601735 -0.494002 1.757423 2.632317 3.939996 -2.625572 2.039069 -4.459319 1.440932 -1.392659 1.248714 -1.323181 1.529083 0.736278 2.253825 3.906878 -4.760357 2.711415 -0.355396 -1.688811 -4.395829 0.429277 -1.409506 -1.655702 -1.150230 1.677516 0.307445 -0.674455 -1.576950 0.917212 0.257446 -1.588151 -3.160041 1.442435 2.563582 -3.338821 0.934326 -0.630127 -0.546167 -1.196777 3.025756 3.658597 2.679892 5.620572 3.371507 0.956908 1.613811 -4.328852 -0.049126 4.204009 1.769627 -3.662921 4.196475 -3.569280 -1.272538 0.970002 2.630760 1.817544 3.090506 -4.193545 -3.482987 1.520686 0.212854 4.977732 2.020508 0.135599 -2.303904 3.291970 -2.016488 -2.071483 4.960751 3.438780 -4.556457 1.101178 1.924112 -2.361457 -2.511163 3.119618 -3.499756 -1.119911 -0.573675 -0.048064 2.027727 -1.642444 -2.225643 0.544223 -3.741681 4.744774 -0.957754 -0.325565 0.973690 -3.178101 -4.136560 3.790042 0.434195 -1.689123 -2.199306 -2.040908 -2.260631 -3.859551 1.038413 2.190189 -1.504262 -2.878427 -3.739035 0.268924 2.232645 -0.571657 2.423689 -3.597386 -2.222155 2.360422 0.593059 2.455014 -2.927654 -0.409586 -1.743128 0.147093 1.476424 -1.256875 3.252698 5.830574 -2.084373 3.528768 0.211173 -3.227266 0.353097 3.099780 -4.373208 5.329699 0.485280 1.977077 0.253979 1.387935 -1.977597 0.225176 0.452796 -0.913417 0.282619 1.394527 -1.577457 -1.263253 -0.580486 -3.891601 -1.288362 0.439586 1.900125 -0.748037 0.993739 0.812620 -2.426852 -1.884454 -3.348778 -0.052639 2.811837 -1.223883 -2.452663 2.718978 0.587474 -1.082679 -0.642865 0.229007 2.073800 2.719671 -4.426496 0.915561 -0.290776 0.014868 -5.112184 -3.851834 0.150980 -3.648548 -2.987497 0.402390 -3.721200 -1.039722 -2.853708 0.621303 -4.056685 -2.727764 1.944450 5.371869 1.938353 -1.673362 2.116134 -1.656222 3.471983 0.662973 0.115318 1.089108 2.768931 +PE-benchmarks/word-wrap.cpp__main = -3.572834 3.601934 2.012546 -2.492958 6.912940 -0.300946 -0.036028 2.893082 -2.810929 6.106670 -2.425722 -0.384563 -1.727573 -5.765685 -0.010764 -2.844924 -1.437846 2.087570 0.183400 3.567515 2.611004 -3.683432 0.484457 -0.284462 -2.446678 -5.107992 -0.851596 1.778655 5.668462 -3.561609 0.310676 -0.365395 6.197741 -0.987983 5.609627 4.491438 1.809698 4.312760 1.467732 -2.751268 -2.633239 3.006185 -3.891804 -3.389035 0.737718 -1.979040 -3.819314 -2.181189 2.352653 -1.157458 -0.283982 5.089108 -1.733533 0.118001 -3.440898 4.067511 1.361573 0.389795 6.866951 0.400920 -0.639129 -1.711479 -6.380543 4.179375 -2.200506 0.558229 -2.062744 -3.154439 2.049545 -1.057626 -0.812881 -3.177316 -0.723082 5.991347 2.696187 -5.107159 0.522838 -3.111691 -7.415337 -5.381625 -4.810450 1.644387 -0.033436 4.455550 0.636712 2.076302 0.450473 3.905694 -2.206589 -8.214892 1.744881 5.914933 -2.545518 -1.359033 -2.598682 5.287303 0.494043 1.363316 -3.214098 -0.619568 1.870612 -0.417334 2.819085 -5.834905 2.631066 -6.224249 0.773971 -1.193337 1.007177 1.099964 3.363966 0.881600 4.278777 6.566381 -5.009149 0.021229 -5.577260 0.829842 -0.422020 1.571506 -1.209038 3.400828 -0.601172 1.471560 5.909890 -8.583767 1.510369 -0.422361 -1.318866 -6.926488 -0.119341 -3.090536 -1.487110 -2.057463 2.831196 -0.486920 -0.952313 -2.986979 0.993205 1.122912 -3.314596 -2.185849 2.663746 6.625627 -5.063868 1.463198 -1.307791 -1.912043 -1.159687 3.283619 4.796322 4.899195 7.047570 4.970688 0.368184 2.619604 -6.004841 -0.623743 4.804497 1.924644 -5.057975 5.906525 -4.212442 -1.947696 0.728295 4.871078 4.670706 1.817254 -5.252329 -4.917028 3.825129 1.788815 6.116365 0.158201 0.670621 0.025721 5.341268 -0.009793 -4.396369 5.907417 2.573107 -3.923132 2.046643 1.181764 -3.203928 -2.010182 4.349141 -4.433978 0.859415 -1.590297 -0.228019 3.039021 -2.204512 -1.232734 0.086700 -4.919337 6.495990 -1.305294 0.781315 2.918514 -4.315253 -5.288517 4.374472 -0.557930 -2.178052 -4.450613 -4.395443 -4.322711 -3.746697 2.025782 0.864052 -1.979522 -3.623011 -5.432653 -0.259193 3.655121 1.668634 3.591554 -6.231970 -2.523908 2.726790 1.890208 4.091425 -1.463709 -0.661356 -0.229840 0.046800 2.245568 -0.627673 5.479826 7.705192 -3.104386 3.439034 -1.526564 -1.827137 1.999946 2.810316 -6.955462 6.554831 0.848580 3.501297 -0.352872 1.630773 -2.191565 0.740333 2.066693 -0.182709 1.454632 0.609146 -0.377551 -1.956589 -1.034135 -5.162475 -2.714967 -1.488177 1.045545 -1.217074 2.096631 0.203521 -2.715082 -2.125954 -3.588005 0.651665 3.913061 0.055278 -0.649264 3.988841 -0.587217 1.802752 2.122266 0.449942 1.655062 2.851491 -6.062625 -0.744304 -1.593810 1.178785 -3.285973 -6.288646 -0.560493 -3.522278 -2.857367 3.172460 -6.229870 0.518335 -4.060615 -0.640555 -5.781419 -0.576901 1.361849 7.075884 2.841718 -2.928589 2.294425 -2.208693 4.001414 0.175194 -0.330430 1.492004 3.679835 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -4.322607 3.159928 2.133486 -4.566897 8.687226 -1.532827 0.274244 3.119253 0.432549 5.902587 -4.723836 0.020820 -1.259486 -5.705333 0.137237 -3.758853 -1.009203 4.030589 -1.594292 2.771505 3.135961 -1.349192 1.491160 -2.059241 -2.415327 -6.229103 -1.506555 2.080405 1.741817 -1.516904 2.431047 0.024073 6.773399 -1.070816 5.198072 4.830949 2.747370 6.294490 0.223867 2.432200 1.147795 2.713322 -2.733166 -5.832726 1.705852 -1.914186 -5.327293 -3.771671 2.789570 -5.867447 2.093648 5.081431 -0.607527 -1.728627 -3.660309 4.349447 3.441165 -0.246616 6.439619 1.329588 -3.651803 0.670878 -6.078320 5.006529 -4.056721 2.906566 -0.513335 -5.785872 -0.989410 2.400340 1.590978 -3.092541 -3.715648 3.013559 2.482669 -4.764181 1.036283 -2.941639 -3.472122 -3.513748 -3.092354 2.072271 0.323864 3.963745 0.296861 1.930638 -0.092454 2.288112 -0.501161 -6.384481 -0.630472 6.213247 -2.699526 0.232459 -3.952521 3.052587 1.326997 -1.167233 -2.466621 -2.024456 1.608945 -0.193707 2.859032 -1.410414 -1.668149 -5.166788 1.705917 2.157470 0.037395 1.594208 -0.106090 2.213868 2.380011 4.236732 -3.929974 3.224830 -7.193152 2.010558 -1.184502 1.438587 -1.439072 1.849505 1.138527 2.582190 4.675376 -6.513932 5.005341 0.017554 -2.471771 -4.933649 1.371218 -0.775663 -1.894650 -1.633667 3.190130 -0.176397 -0.909717 -1.137324 1.325933 -0.071905 -2.007482 -3.519268 0.542774 3.610792 -3.319446 1.876567 -1.331043 -2.153036 -0.676843 2.620264 3.678182 3.203957 7.605016 4.831223 0.239408 1.540802 -6.016611 0.424147 6.451808 2.837387 -4.916815 5.185490 -2.978046 -0.971342 1.710870 3.673550 2.718594 3.335003 -4.343995 -3.993817 0.550964 -0.510888 6.288724 2.926593 0.530007 -5.031074 3.650447 -0.943947 -1.076351 8.443871 4.624983 -6.104166 1.325950 4.045188 -4.399712 -4.249188 2.954378 -2.823373 -1.478245 -1.288837 1.382818 2.674526 -3.046172 -4.314360 -0.017913 -5.267774 5.654797 -1.247629 -0.858555 1.983666 -5.306897 -5.687983 6.050544 0.412399 -2.176248 -2.752085 -3.959751 -1.626448 -6.414731 1.764491 2.640645 -2.210462 -2.965431 -4.639890 0.306773 4.129569 -0.963631 2.466055 -4.723503 -2.786327 3.402899 0.420537 2.616671 -4.741844 -0.940968 -1.034609 0.475485 1.809026 -0.516713 2.794725 7.650156 -3.710151 3.585518 1.596059 -3.470468 1.240233 4.972121 -5.652351 7.457356 -0.197581 3.234503 0.351181 2.238345 -2.410961 0.738731 0.776279 -1.005100 -0.178197 2.177580 -3.419194 -2.114832 0.735841 -4.651478 -2.390576 1.289593 3.330679 0.120675 1.370224 0.999597 -3.047942 -1.822051 -2.717604 0.470534 4.069302 -0.433947 -3.948310 2.754052 2.439120 -2.053693 -2.308986 0.869985 2.580106 4.570703 -6.375935 2.960296 -0.418976 -0.462372 -6.328505 -4.942585 1.622173 -5.123709 -3.826643 1.330695 -6.316366 -2.250260 -3.800799 2.322138 -3.994231 -1.991030 1.359589 6.682531 3.266919 -1.597117 3.748309 -1.959866 3.935985 0.303143 -0.732130 1.465239 5.040548 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.514400 0.223563 0.041510 -0.912427 1.422180 -0.577989 -0.334257 1.073284 0.542040 0.651111 -0.678307 0.278742 0.116053 -1.048344 0.114903 -0.329822 0.085982 0.757452 -0.299196 0.566060 0.400277 -0.088196 0.202028 -0.392172 -0.359101 -0.663497 0.098478 0.397543 -0.225081 -0.014478 0.306625 0.249982 0.875323 0.075391 0.901144 0.648429 0.387496 0.891590 0.358520 0.505534 0.526938 0.022123 0.047895 -0.987565 0.236336 -0.052615 -0.913289 -0.572240 0.244111 -1.213289 0.561199 0.709811 0.079274 -0.290812 -0.670605 0.418782 0.306042 0.069520 0.629162 0.362621 -0.989197 -0.095080 -0.704720 0.393401 -0.576307 0.143232 0.276090 -0.683920 -0.029527 0.935103 0.210820 -0.380277 -0.346975 -0.010148 0.399035 -0.512483 0.387763 -0.260869 0.168990 -0.129329 0.098871 0.450643 -0.004778 0.420910 0.033329 0.490530 -0.223448 0.061819 -0.100011 -0.654271 -0.076933 0.590116 -0.560773 0.031815 -0.685220 0.790068 0.452244 -0.491739 -0.251064 -0.563516 0.360374 -0.157779 0.295387 0.088873 -0.520978 -0.572267 0.575679 0.478680 -0.001234 0.490660 -0.420269 0.540729 0.195928 0.344483 -0.330783 0.862997 -1.227719 0.256512 -0.393342 0.178201 -0.315441 -0.079735 0.628396 0.723268 0.271361 -0.678888 1.116829 0.393619 -0.037388 -0.440449 0.413589 0.131880 -0.124431 -0.238781 0.522517 -0.074067 0.069338 0.151535 0.216000 -0.057025 -0.312374 -0.574042 -0.184808 0.440423 -0.264916 0.391579 -0.021863 -0.165304 -0.025545 0.054963 0.473167 0.062407 1.043389 0.265704 -0.058860 0.015959 -0.735537 0.117463 1.083699 0.120686 -0.537853 0.821406 -0.168729 -0.121424 -0.067959 0.475059 0.280818 0.281627 -0.573840 -0.584354 -0.005941 -0.167898 0.644615 0.247660 -0.035461 -1.074673 0.360880 -0.243942 0.268922 1.361772 0.646728 -0.948682 -0.136199 0.933018 -0.749490 -0.561558 0.214478 -0.143207 -0.082331 -0.024244 0.527315 0.233687 -0.545432 -0.837619 -0.098140 -0.631108 0.367328 -0.155046 -0.146516 -0.317151 -0.564944 -0.037083 1.274573 0.111442 -0.294011 0.096188 -0.647454 -0.078488 -1.045732 -0.099970 0.457994 -0.199669 0.059766 -0.268317 -0.248968 0.636072 -0.502685 -0.015447 -0.753862 -0.209819 0.580466 -0.166803 -0.113762 -0.667319 -0.148322 -0.119949 0.047306 0.136047 -0.148400 0.146955 0.869068 -0.261460 0.656683 0.432851 -0.278926 0.388892 0.791659 -0.701190 1.254936 -0.060562 0.616483 0.333029 0.330481 -0.378923 0.004324 -0.229704 -0.408177 -0.309617 0.502528 -0.756369 -0.245387 0.364593 -0.129216 -0.558524 0.395840 0.819460 0.088461 0.140784 0.185427 -0.288805 -0.363202 -0.689915 0.417407 0.279000 -0.240720 -0.578596 0.253379 1.060849 -0.390201 -0.464341 0.194260 0.488412 0.902782 -0.811959 0.843111 0.246429 0.053677 -0.811894 -0.541279 0.549329 -0.671893 -0.247510 -0.417373 -1.177978 -0.797733 -0.275285 0.771351 -0.475690 0.104088 0.270488 0.997002 0.464744 -0.266114 0.490847 -0.372085 0.123576 0.099305 0.160219 0.055000 0.790984 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -3.853759 2.774135 2.182938 -4.035059 7.445637 -1.557446 0.359862 2.166186 0.944964 4.977815 -4.171444 -1.165148 -1.738125 -5.436516 0.217573 -3.752141 -0.679889 4.007482 -1.392181 2.600487 3.053180 -1.671334 1.541374 -1.982721 -1.789699 -5.139884 -1.494958 1.687473 1.696846 -0.804127 1.993209 -0.016103 6.081071 -0.429015 4.454858 4.062298 1.814252 6.122808 0.202018 1.879136 0.663060 2.820763 -2.359428 -6.014432 2.219652 -1.957447 -4.288956 -3.987777 2.588407 -5.403384 1.889006 4.444812 -0.516361 -1.746121 -3.532108 2.962420 3.570322 1.264129 5.580018 1.299700 -2.355434 0.875676 -5.607268 2.602280 -3.671699 2.566840 -0.193317 -5.167649 -1.021724 2.007861 1.443419 -2.657645 -3.495326 2.373879 2.479696 -3.794856 0.925786 -2.441635 -3.699262 -2.724484 -3.371895 1.345138 -0.407216 3.843491 -0.191001 1.507232 -0.161938 1.751592 -0.013170 -5.358053 -0.745051 5.338182 -1.642831 0.296054 -2.215919 2.913589 1.338370 -1.104816 -2.490756 -1.528662 1.312065 -0.064280 2.629307 -0.327886 -2.229106 -4.643284 2.141137 2.184993 -0.160622 1.306744 0.939361 1.622604 1.592251 3.561829 -4.248745 3.028768 -6.537902 1.584170 -1.260783 1.405871 -0.956986 2.000030 0.508914 1.661335 3.697685 -6.104823 4.731293 0.494009 -1.951547 -4.058776 1.615993 -0.525201 -1.662977 -1.377091 3.025288 -0.247129 -1.039704 -0.890528 0.760841 -0.253003 -1.505043 -2.344022 0.111984 3.685820 -2.683957 1.652861 -1.427337 -2.617080 -0.254222 1.719423 2.847512 2.658760 6.438107 4.566708 -0.460171 0.724365 -5.347912 0.643956 6.043136 1.502830 -4.309212 4.007896 -1.699157 -0.522387 1.703342 3.107664 2.699302 3.067125 -3.239586 -3.209943 -0.372094 -0.617046 5.253276 3.111346 0.954454 -5.034423 3.339472 -0.573834 -0.653965 7.557769 3.773834 -5.048290 0.833750 3.546094 -5.017657 -3.792645 1.929314 -1.758743 -0.503573 -1.661463 1.427089 2.351566 -3.016558 -4.475294 -0.663299 -4.719934 4.806836 -1.075725 -0.706844 1.687875 -4.682976 -4.662687 5.920794 0.399240 -2.140675 -2.500796 -3.972482 -1.527625 -5.720910 1.940725 1.996900 -2.172540 -2.877461 -3.946561 0.285440 4.091021 -0.792436 1.642933 -3.308803 -2.106805 2.922705 0.710862 2.572832 -4.231074 -1.038603 -0.465521 0.101171 1.910865 0.365675 2.113431 6.735438 -3.523532 2.514737 1.850767 -2.510977 1.400873 4.595050 -4.719480 6.340418 -0.593508 3.634205 -0.118810 2.042461 -1.624539 0.796671 1.037909 -1.073240 0.034635 2.328480 -3.082537 -1.866154 1.185753 -4.129285 -2.230651 1.311692 3.068493 0.666131 1.228377 0.970005 -2.978519 -1.104783 -1.527153 0.211623 3.849355 0.104257 -3.892678 1.657078 2.172052 -1.546516 -2.950921 0.926378 1.899095 4.057478 -5.369702 2.859678 -0.553632 -0.732574 -4.964434 -4.065518 1.664101 -4.479625 -3.007589 1.956325 -5.664919 -1.578161 -3.351771 2.422219 -3.409163 -1.131991 0.506947 5.411852 3.095813 -0.855079 3.303946 -1.355314 3.546505 0.109908 -1.192348 1.424775 4.893864 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -1.019581 0.748740 -0.003732 -0.955985 2.227852 -0.739862 0.131642 1.345127 -0.193497 1.200401 -1.214917 0.565379 -0.160003 -1.400024 0.165848 -0.056028 0.189299 1.289185 -0.359231 0.415712 0.733013 -0.099592 0.302475 -0.662353 -0.485802 -1.367964 -0.008724 0.399725 0.105453 -0.072751 -0.018340 0.359682 1.708601 -0.173976 1.160452 1.138855 0.724641 1.518275 0.698317 0.029545 0.606666 0.537309 -0.387088 -1.656031 0.498652 -0.483157 -1.054237 -0.932924 0.646230 -1.577289 0.962320 0.959943 0.066392 -0.426490 -1.046779 0.809317 1.036576 -0.244033 1.407562 0.462284 -1.087249 -0.133141 -0.844871 1.413095 -1.109450 0.432643 0.110385 -1.436974 -0.309118 1.060486 0.743091 -0.909563 -0.972184 0.184966 0.214718 -1.003326 0.372918 -0.293108 0.105025 -0.844656 -0.753337 0.417378 -0.429473 0.947040 -0.018696 0.296727 -0.784510 0.160705 0.278646 -1.111230 -0.429945 1.266157 -0.567210 0.416665 -0.909942 0.682004 0.628240 -0.591827 -0.357881 -0.834203 0.373481 -0.080032 0.561430 -0.147650 -0.183433 -0.786267 0.474097 0.537162 0.006792 0.893627 -0.207533 0.735514 0.383775 0.560156 -0.285129 0.498691 -2.059387 0.643763 -0.216247 0.089216 -0.308477 0.149987 0.648669 0.380646 0.832985 -1.437062 1.455827 0.263594 -0.289421 -0.887393 0.580787 0.181756 -0.440023 -0.403369 0.919056 -0.030744 -0.168638 0.003796 0.403747 -0.114265 -0.902827 -1.065556 -0.322361 1.136602 -1.204101 0.415871 -0.370043 -0.521415 -0.034340 0.326013 0.519505 0.565419 1.537559 1.051793 -0.158100 0.469775 -1.537121 0.315383 1.657133 0.943729 -1.066120 0.992224 -0.562932 -0.201056 0.559195 0.705924 0.366420 0.645245 -0.859079 -0.852784 0.090304 -0.322209 1.372441 0.659291 0.337811 -1.477413 0.701092 -0.128830 0.077765 2.101274 0.801497 -1.584846 0.440834 1.299179 -0.718771 -0.786295 0.380732 -0.699487 -0.622287 -0.411188 0.473887 0.713617 -1.095678 -1.122632 -0.082653 -1.096751 1.111831 -0.144005 -0.498385 0.155461 -1.225754 -0.145211 1.727538 0.340492 -0.262647 -0.362721 -0.974734 -0.526776 -1.736389 0.226936 0.655165 -0.501672 -0.486666 -0.966339 -0.280592 1.128756 -0.473154 0.183878 -1.430297 -0.266341 0.904683 0.218186 0.140551 -1.637988 -0.294138 0.008623 0.154350 0.346438 -0.308876 0.609114 1.461182 -0.920842 0.682192 1.016301 -0.188481 0.467614 1.199949 -1.083458 1.535284 -0.184234 1.065732 0.407507 0.581653 -0.650284 0.083472 -0.213596 0.013698 -0.473341 0.684506 -1.222531 -0.426461 0.552467 -0.701183 -0.819343 0.533324 1.061692 0.418325 0.068827 -0.112709 -0.434446 -0.346139 -0.871268 0.198019 0.866705 -0.390971 -1.210394 0.476337 0.897800 -0.962420 -0.582275 0.314598 0.690716 1.154490 -1.334561 1.017632 0.068764 0.109722 -1.667722 -1.242324 0.669264 -0.856653 -0.919382 0.303113 -1.802132 -1.000551 -0.626195 0.963402 -1.484258 -0.173558 0.123091 1.401306 0.297135 -0.006428 0.986721 -0.304076 0.600211 0.026980 0.062804 0.028495 1.255421 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.956077 0.719807 -0.166667 -0.769421 1.777263 -0.524761 0.108507 0.996997 -0.193587 1.271642 -1.030570 0.301023 -0.263621 -1.367774 0.035474 -0.086765 0.142557 0.998446 -0.222093 0.403551 0.655356 -0.408666 0.293972 -0.487832 -0.482525 -1.333329 -0.007202 0.368422 0.359040 -0.308620 0.045321 0.219120 1.655293 -0.043173 1.190856 1.038742 0.464741 1.450636 0.753327 0.071413 0.226363 0.612599 -0.474181 -1.433408 0.402599 -0.487184 -0.838836 -0.849797 0.584503 -1.205471 0.981066 0.932102 -0.054099 -0.242952 -1.070546 0.610086 0.950224 -0.154583 1.503804 0.289753 -0.812063 -0.189242 -0.814039 1.290945 -0.988234 0.134489 0.204492 -1.152367 0.021194 0.635024 0.505006 -0.770149 -0.799730 0.469145 0.285538 -1.056312 0.237212 -0.358559 -0.558027 -0.915125 -0.814141 0.348192 -0.253088 0.958529 0.009625 0.319910 -0.549622 0.320156 0.087507 -1.281469 -0.177895 1.208734 -0.530958 0.347074 -0.655735 0.963530 0.354215 -0.324019 -0.514549 -0.503430 0.284985 -0.085265 0.539880 -0.333410 -0.262824 -0.902693 0.534459 0.190367 -0.070450 0.596363 0.369877 0.542335 0.540458 0.796883 -0.541151 0.360716 -1.806413 0.539574 0.110098 0.081439 -0.224921 0.275119 0.295480 0.197747 1.003009 -1.522683 1.100114 0.180659 -0.247624 -1.122758 0.299376 -0.067928 -0.416490 -0.391989 0.826708 -0.054339 -0.104430 -0.250709 0.228437 -0.012128 -0.952621 -0.950506 -0.019849 1.308567 -1.044716 0.351330 -0.322184 -0.509354 -0.149681 0.422822 0.568916 0.653023 1.469046 1.007524 -0.094565 0.517176 -1.400289 0.156976 1.528209 1.008815 -1.111303 1.019607 -0.638506 -0.220410 0.517238 0.747257 0.625723 0.319639 -0.884286 -0.793136 0.401546 -0.110403 1.348328 0.392033 0.347369 -0.976967 0.922511 0.277716 -0.130472 1.924502 0.658546 -1.362834 0.509937 0.953033 -0.753329 -0.503535 0.549964 -0.656635 -0.392596 -0.432807 0.335006 0.664742 -0.886487 -0.781591 -0.115678 -1.101897 1.248388 -0.183704 -0.180395 0.353274 -1.261397 -0.302262 1.467187 0.175580 -0.231465 -0.464932 -0.914087 -0.729924 -1.525917 0.239839 0.481137 -0.554408 -0.456466 -1.038511 -0.145087 1.029135 -0.197697 0.368246 -1.257508 -0.356858 0.816133 0.285583 0.204258 -1.256402 -0.271990 0.153158 0.252098 0.468801 -0.205303 0.840039 1.432283 -0.803886 0.673599 0.711405 0.028499 0.546792 0.945879 -1.190568 1.453477 -0.282643 0.817562 0.233895 0.502686 -0.525384 0.078880 -0.053375 0.179756 -0.312278 0.437806 -0.935379 -0.402133 0.381053 -0.835040 -0.656021 0.276369 0.754533 0.364520 0.187240 -0.071290 -0.437422 -0.342133 -0.855830 0.183440 0.823834 -0.102822 -0.908247 0.581263 0.527994 -0.465007 -0.172162 0.194487 0.574057 0.942829 -1.288826 0.566599 -0.052519 0.044209 -1.258697 -1.298226 0.479870 -0.794015 -0.876106 0.508558 -1.706335 -0.591158 -0.675619 0.606452 -1.489926 0.060531 0.036492 1.450429 0.377039 -0.167861 0.807953 -0.312657 0.676179 0.018564 0.064404 0.165210 1.189298 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -4.613346 3.222242 1.783431 -4.740783 9.335975 -1.949821 0.303153 3.507581 0.083990 6.264113 -4.914044 0.380974 -1.436754 -6.361416 0.227837 -3.485600 -0.647250 4.454319 -1.542955 2.973489 3.357784 -1.635003 1.682048 -2.191492 -2.501150 -6.755619 -1.250468 2.226067 1.930461 -1.640107 2.326957 0.248891 7.337321 -1.066920 5.418589 5.133057 2.865711 6.756536 0.775315 1.777239 1.222362 2.861646 -2.751888 -6.380458 1.921441 -1.939721 -5.582934 -4.022458 3.071048 -6.213146 2.063603 5.411587 -0.652528 -1.864975 -4.270672 4.516939 3.988190 -0.430852 6.897970 1.392043 -3.753982 0.223102 -6.089676 5.334495 -4.473347 2.506046 -0.416092 -6.046212 -0.873488 2.778405 1.510896 -3.246068 -3.930187 3.017855 2.630471 -5.144145 1.078454 -2.860229 -3.539871 -3.928619 -3.460803 2.074252 0.034831 4.358481 0.344326 2.099296 -0.153671 2.283285 -0.309839 -6.723699 -0.595255 6.392824 -2.789184 0.308436 -3.981794 3.642713 1.589866 -1.538234 -2.664725 -2.330378 1.615288 -0.479134 3.114126 -1.591853 -1.635957 -5.349310 1.786693 1.966746 0.212336 2.031752 0.141227 2.315835 2.368521 4.343628 -4.101147 3.097558 -7.905689 2.184004 -1.069072 1.364742 -1.576035 1.909796 1.420363 2.560182 4.957332 -7.149632 5.431198 0.184243 -2.265780 -5.257408 1.544143 -0.571947 -1.845750 -1.769388 3.648245 -0.456304 -0.892620 -1.060846 1.548930 0.049592 -2.527194 -3.556201 0.342222 4.386279 -3.892344 2.140825 -1.507110 -2.459421 -0.522596 2.458065 3.703154 3.476613 7.957478 5.204103 -0.015085 2.210925 -6.548477 0.613664 7.017140 3.291322 -5.197401 5.485461 -3.131819 -1.054711 1.841670 3.921685 3.061759 3.181067 -4.570880 -4.206050 0.970723 -0.476256 6.602430 2.796051 0.711108 -5.497801 3.873622 -0.578521 -0.849595 9.035199 4.582083 -6.593531 1.898178 4.562180 -4.745365 -4.261977 2.947172 -3.039625 -1.593216 -1.597967 1.659579 3.024636 -3.534366 -4.534920 -0.260344 -5.511202 5.852461 -1.277871 -1.062157 2.192319 -5.608245 -5.422428 6.520755 0.504183 -2.090255 -2.984421 -4.519392 -2.077498 -6.996439 1.808608 2.584919 -2.444534 -2.914267 -4.975275 -0.101323 4.582743 -0.860515 2.489310 -5.641628 -2.502032 3.735015 0.940361 2.462717 -5.018483 -1.028759 -0.581792 0.495368 1.774967 -0.606787 3.011336 7.790181 -4.133461 3.700622 1.571447 -3.274242 1.778670 5.158925 -6.045820 7.885680 -0.191604 3.974335 0.554476 2.409903 -2.602302 0.905464 0.703731 -1.033152 -0.424399 2.259183 -3.922817 -2.357570 1.213994 -4.590205 -3.001212 1.283874 3.711599 0.462869 1.411019 0.798518 -2.950130 -1.889965 -2.932887 0.750356 4.270342 -0.532400 -4.143291 2.911601 2.889342 -2.139688 -2.412751 1.031570 2.807666 4.856888 -6.828417 3.297648 -0.522479 -0.241316 -6.530463 -5.510589 2.084345 -5.186252 -4.006219 1.711270 -7.193464 -2.462578 -3.924468 2.691494 -4.613784 -1.614864 1.160900 7.075179 3.074138 -1.472130 4.129069 -2.023029 3.788375 0.071358 -0.563285 1.399571 5.435051 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -8.088515 4.260628 2.723242 -9.444348 17.690332 -3.323072 -1.325445 6.875847 -1.608111 12.588298 -6.914803 -1.949804 -3.758648 -16.049726 1.520999 -7.151624 -1.688372 7.027425 -1.248027 8.798156 6.609017 -5.241867 3.184798 -2.276396 -4.873882 -11.137817 -2.919800 5.416085 7.489171 -5.636901 4.763013 -0.039603 14.764102 -1.587873 11.812029 10.216124 4.615417 11.731276 2.423475 -2.238764 -0.869923 6.317509 -6.863551 -11.214573 2.905105 -2.909387 -11.513444 -7.648291 6.114577 -7.936082 -0.845773 12.110498 -2.156204 -2.654120 -10.302309 7.637200 5.019016 0.005998 13.479059 2.556956 -4.346758 -1.505746 -13.634375 7.437688 -7.526407 2.765266 -2.309488 -8.114082 1.273690 2.932198 0.125004 -5.898450 -5.901930 8.407016 7.543496 -10.392914 2.613256 -6.326207 -8.814136 -9.247028 -7.661495 4.780476 -2.043079 10.343822 0.575114 4.966889 2.624593 5.936572 -2.490907 -14.957180 1.418260 11.639622 -4.993937 -4.010841 -6.860187 11.460345 2.607448 -1.373437 -5.939934 -3.176805 3.565528 -2.151669 7.295507 -4.054810 0.514656 -11.586376 1.714323 1.155263 2.418723 5.650493 4.171132 2.696674 5.711442 10.410625 -9.982224 4.047118 -13.953604 3.149223 -4.466847 4.137169 -4.702605 6.274840 3.963399 5.026691 9.769089 -15.759145 8.105859 1.176113 -2.439470 -10.820596 2.591389 -2.199618 -3.715533 -3.080591 7.418106 -1.966311 -2.329939 -2.693404 3.756075 2.853869 -4.812371 -3.071888 2.244983 10.053442 -8.057983 4.408658 -2.839591 -5.470120 -0.123590 4.783252 8.949547 8.812628 16.769684 10.474598 -1.508726 4.135787 -13.263035 1.406738 14.386530 0.976737 -9.549212 12.236484 -6.639049 -3.108731 1.239515 10.018107 9.293372 4.417058 -8.738155 -8.046684 3.944435 1.807454 13.167403 2.446303 1.131783 -8.264637 7.543915 -0.142039 -1.966083 15.683780 6.344068 -10.501319 3.997734 7.365415 -10.321485 -7.300325 6.272670 -6.146628 -0.298421 -4.552374 4.013761 7.294492 -6.217894 -7.237282 -2.070943 -10.139868 10.611713 -3.958986 -2.490611 5.168585 -9.453125 -10.569184 12.349722 0.324397 -4.146853 -7.972669 -10.668902 -3.789589 -12.239681 5.192712 3.137321 -3.687154 -4.386433 -9.769894 -1.602668 9.367468 1.040916 5.745736 -13.500666 -2.797103 7.084001 3.769271 6.243766 -6.182127 -1.234983 0.625990 -0.053717 3.127696 -1.300759 6.324877 15.544659 -8.853602 6.673938 0.182065 -4.358635 4.522600 8.622501 -14.226924 16.860655 1.706039 9.847247 -0.503149 3.812901 -3.364505 2.400619 2.656473 -3.925497 1.545477 2.278187 -5.228674 -5.352641 2.895990 -7.645159 -7.598963 -0.178403 6.726953 -1.146372 4.544409 0.792820 -6.000130 -3.755797 -4.655976 3.729921 9.038361 -0.781001 -5.353099 7.156181 6.150118 -0.273014 -2.031157 1.059472 5.348929 9.337810 -14.478243 4.862023 -2.515910 3.312711 -8.852692 -11.308422 4.341452 -7.638919 -4.380389 5.044171 -13.032324 -3.563944 -8.947496 3.636720 -8.466524 -1.205539 2.226501 13.863020 6.876155 -4.662884 5.600532 -4.382959 6.282533 -0.808180 -1.998910 4.822135 9.412240 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.447780 0.289609 -0.021578 -0.444151 0.877866 -0.268878 -0.092580 0.516891 0.260379 0.531389 -0.578159 0.037110 -0.068012 -0.517258 0.042028 -0.005828 0.012439 0.556190 -0.232762 0.067380 0.330150 0.031725 0.157800 -0.326900 -0.181761 -0.532857 -0.085963 0.150454 -0.041964 -0.005938 -0.114409 0.087417 0.691183 -0.068659 0.489916 0.462290 0.322391 0.673305 0.214044 0.311073 0.304653 0.271621 -0.182828 -0.723038 0.242066 -0.267251 -0.380063 -0.429035 0.297033 -0.690195 0.665931 0.384112 0.033193 -0.234906 -0.390682 0.314722 0.337645 0.092791 0.615334 0.199347 -0.460930 0.113673 -0.426777 0.590643 -0.550523 0.382062 0.053024 -0.664230 -0.265529 0.432429 0.409990 -0.360525 -0.444096 0.060970 0.042981 -0.389923 0.184855 -0.172723 0.274927 -0.245136 -0.331371 0.195065 -0.180320 0.352320 -0.035690 0.111991 -0.420212 0.097346 0.141272 -0.436998 -0.227957 0.481738 -0.239950 0.254723 -0.228465 0.148114 0.247556 -0.250952 -0.062319 -0.249169 0.147824 0.037728 0.234864 0.139603 -0.053555 -0.308546 0.366273 0.375374 -0.043512 0.192796 -0.057917 0.286734 0.153139 0.236356 -0.024598 0.221475 -0.851219 0.216453 -0.086879 0.055281 -0.093527 0.094604 0.247531 0.123555 0.334636 -0.532288 0.654491 0.092475 -0.201556 -0.274984 0.277391 0.062864 -0.223980 -0.142141 0.348940 0.037701 -0.114194 -0.003135 0.156323 -0.125074 -0.374515 -0.373478 -0.147300 0.280287 -0.317820 0.152202 -0.155393 -0.246677 -0.000942 0.161594 0.189925 0.188053 0.669715 0.441677 -0.052588 -0.127839 -0.594929 0.147938 0.666223 0.189593 -0.463323 0.373304 -0.183037 -0.035405 0.279461 0.286465 0.098294 0.404811 -0.218079 -0.279244 -0.199810 -0.187842 0.571932 0.320769 0.183165 -0.577561 0.222585 -0.095069 0.048224 0.937939 0.386353 -0.661284 0.022715 0.542943 -0.324422 -0.370488 0.142826 -0.159684 -0.166783 -0.194925 0.200411 0.282061 -0.461643 -0.559653 -0.008053 -0.498123 0.523702 -0.053783 -0.163686 0.090807 -0.601800 0.029965 0.763483 0.176388 -0.161728 -0.120100 -0.358087 -0.157233 -0.739631 0.114370 0.322290 -0.214341 -0.205805 -0.376894 -0.014337 0.468792 -0.244633 0.049988 -0.393470 -0.180218 0.360861 -0.069119 0.102873 -0.613579 -0.137841 -0.072485 0.025769 0.219105 -0.102737 0.175315 0.669817 -0.371584 0.279572 0.621222 -0.052758 0.095783 0.572515 -0.408725 0.650746 -0.142266 0.163121 0.135364 0.267958 -0.245785 0.042270 -0.085058 0.000993 -0.143129 0.323289 -0.509969 -0.175742 0.189499 -0.379968 -0.216468 0.283101 0.441047 0.220219 0.032368 -0.026944 -0.268020 -0.125890 -0.304359 0.024696 0.387433 -0.063805 -0.583949 0.146749 0.352352 -0.480556 -0.368433 0.142930 0.214669 0.549576 -0.553016 0.452056 0.096201 -0.021882 -0.739494 -0.336146 0.143129 -0.331073 -0.328755 0.095255 -0.681314 -0.465255 -0.268514 0.410805 -0.464552 -0.073567 0.028722 0.565460 0.287427 -0.033743 0.424680 -0.115361 0.317460 0.119102 -0.131481 0.028725 0.543650 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.853767 0.622075 0.137437 -0.877656 1.502775 -0.538104 -0.015096 0.684590 0.279461 0.917701 -1.010012 -0.073413 -0.336224 -1.287662 0.104834 -0.396488 0.096124 1.061895 -0.282691 0.541301 0.708097 -0.361858 0.309631 -0.602135 -0.334614 -0.954207 -0.114766 0.313292 -0.007676 0.031713 0.264083 0.228426 1.324046 0.123257 0.957017 0.901704 0.228710 1.543311 0.441501 0.380585 0.337920 0.584036 -0.309530 -1.578624 0.624777 -0.458021 -0.704559 -1.015645 0.508825 -1.351971 0.816509 0.849078 0.039355 -0.414506 -1.023135 0.312508 0.952406 0.372034 1.155483 0.415337 -0.630524 0.167052 -0.863974 0.360735 -0.952279 0.367399 0.325766 -1.100394 -0.149007 0.722383 0.583458 -0.597295 -0.850412 0.118083 0.277712 -0.725174 0.354881 -0.303567 -0.483073 -0.499976 -0.641027 0.244162 -0.284662 0.853588 -0.141882 0.256704 -0.478998 0.140386 0.242498 -0.877878 -0.351972 0.911736 -0.269477 0.310758 -0.305323 0.832728 0.470880 -0.468732 -0.496215 -0.342490 0.312984 -0.035346 0.502847 0.299220 -0.683642 -0.746349 0.728178 0.498434 -0.164092 0.469860 0.225740 0.551398 0.248906 0.451938 -0.628194 0.674771 -1.594746 0.371045 -0.167299 0.179741 -0.147042 0.221823 0.261901 0.150568 0.567819 -1.123635 1.248860 0.322038 -0.215059 -0.694896 0.566791 0.093286 -0.361766 -0.366508 0.789012 0.004670 -0.171456 0.012301 0.095647 -0.145978 -0.483254 -0.636750 -0.239848 1.009162 -0.576988 0.341701 -0.344026 -0.639195 0.017594 0.110302 0.320582 0.370809 1.273250 0.865412 -0.240085 0.008908 -1.079775 0.249584 1.469286 0.530721 -0.898319 0.706465 -0.066431 -0.038644 0.434796 0.477499 0.506911 0.519380 -0.596852 -0.716159 -0.234102 -0.337841 1.040708 0.662360 0.355708 -1.274593 0.746330 0.132320 0.117211 1.756754 0.613177 -1.076091 0.091009 1.004957 -1.111496 -0.705782 0.208033 -0.146952 -0.155668 -0.327291 0.446185 0.472543 -0.886817 -1.139400 -0.277688 -0.991807 0.870447 -0.168051 -0.102809 0.089150 -1.093161 -0.306873 1.439970 0.219612 -0.375296 -0.299107 -0.782952 -0.305909 -1.408327 0.293977 0.465694 -0.437885 -0.447160 -0.694026 -0.079053 0.899602 -0.423862 -0.003237 -0.653976 -0.355215 0.669302 0.054757 0.209359 -1.141605 -0.299186 0.131421 0.144078 0.436145 0.140416 0.429833 1.306395 -0.747258 0.391475 0.905599 0.052077 0.511988 1.121591 -0.832594 1.295280 -0.389797 0.907535 0.109294 0.502158 -0.342305 0.059253 0.042001 -0.092463 -0.243048 0.604820 -0.881228 -0.325500 0.516771 -0.622632 -0.493490 0.508487 0.824788 0.427522 0.147850 0.161201 -0.496669 -0.170251 -0.361953 0.109338 0.785372 0.010115 -1.018367 0.200509 0.710303 -0.502844 -0.658917 0.286301 0.439488 0.987586 -1.083804 0.861834 -0.018671 -0.186895 -1.044943 -0.787068 0.588285 -0.783110 -0.624469 0.454105 -1.354407 -0.519477 -0.547704 0.853228 -0.839723 0.081061 -0.107735 1.028453 0.537854 -0.044317 0.778210 -0.229392 0.617118 0.052658 -0.180160 0.097506 1.250964 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/strongly-connected-components.cpp__main = -3.274445 0.785726 0.544243 -2.860751 6.840062 -2.072520 -0.195054 3.582879 0.559803 4.212448 -2.991843 -0.662823 -1.762941 -4.794821 0.540567 -1.778357 0.369005 3.407760 -1.526385 1.445285 2.726209 -0.122589 1.079864 -1.298431 -1.382673 -3.605071 -1.069112 1.521613 1.206478 -1.295104 0.140734 0.881056 6.001643 -0.457014 4.472413 3.745447 2.765447 4.934937 0.676260 0.961021 0.762440 2.499495 -2.065657 -4.799303 1.573330 -1.540390 -3.815101 -2.600609 2.512223 -3.707890 2.380441 3.914803 -0.400888 -0.699164 -2.897958 2.673941 1.701640 0.230525 4.848645 1.381058 -3.153584 0.092528 -4.298827 4.047708 -3.281598 2.384560 -0.578831 -4.320833 -1.188276 1.720682 1.767128 -3.140752 -3.117218 2.046978 1.750587 -3.246525 1.349182 -1.294897 -0.043007 -2.667606 -3.730374 1.392954 -1.162683 3.233736 -0.187381 1.201433 -0.847793 1.285951 -0.001093 -4.773120 -0.110621 4.380200 -2.461719 0.673048 -3.510919 1.608286 0.509834 -0.727004 -1.823383 -2.122687 1.181177 -0.636420 2.376093 -0.384721 -0.284828 -2.985681 1.594815 1.246138 0.702434 1.730242 0.800458 1.177685 1.764055 2.992375 -1.720973 1.768647 -5.723547 2.008963 -1.371019 0.896956 -1.193762 1.819413 1.793629 1.246298 3.353754 -5.264414 3.407459 0.344282 -1.644660 -3.154651 1.371055 -0.587729 -1.783557 -1.450959 3.453412 -0.351341 -1.048892 -0.849045 1.629823 0.206986 -2.278968 -1.912859 -0.492545 1.941082 -2.638548 1.201142 -1.431941 -2.371337 -0.167488 1.791919 2.361404 2.988278 5.530800 3.875681 -0.909442 0.209838 -5.227066 0.714637 4.891026 0.799115 -3.805291 3.796642 -2.362840 -0.375974 1.439213 3.276093 2.382290 2.054007 -1.704079 -1.675637 0.065238 0.337611 4.848760 1.864795 1.021327 -3.559224 1.054733 -1.068326 -0.446905 6.475565 2.901806 -4.825137 0.860754 3.168050 -2.311209 -3.063406 1.732431 -2.352421 -0.992087 -2.165606 1.845353 2.818909 -3.272545 -2.589282 0.754012 -3.863079 3.798402 -1.050301 -1.304199 1.734997 -4.897063 -2.630707 5.510099 0.425040 -1.038370 -2.201802 -3.950646 -0.945311 -5.143770 1.645705 1.492605 -0.841018 -1.766183 -3.418184 -0.340618 4.028281 -0.046442 1.998020 -3.799080 -0.971371 2.699900 0.007228 2.062887 -3.702518 -1.010010 -0.271527 -0.124227 1.665920 -0.924289 1.033964 5.284618 -3.365564 2.431561 2.262861 -1.751839 0.629338 3.300385 -4.484593 5.565213 0.085783 2.416041 0.219386 1.804360 -1.919376 0.502600 0.232710 0.133487 -0.620702 1.697894 -2.657229 -1.593071 0.831893 -3.264047 -2.366968 0.526449 2.669880 0.146473 1.141415 -0.233968 -2.270646 -1.198944 -2.232294 1.224393 3.461499 -0.581019 -2.855890 2.228513 1.855135 -2.305380 -1.130096 0.840148 1.590455 4.063450 -4.987040 1.807009 -0.007411 0.662364 -4.203237 -3.897669 0.837864 -2.996689 -2.039345 1.454192 -4.736727 -2.355531 -2.784884 2.140444 -3.263512 -0.792292 0.492496 4.944216 2.606636 -0.850938 2.864973 -0.865720 2.306805 0.046419 -0.938342 1.322224 3.791560 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.415295 0.953946 -0.081263 -1.296971 3.498642 -0.995119 0.330085 2.182871 -0.856809 1.806068 -1.566578 1.214075 -0.125760 -1.941545 0.259959 0.088690 0.278206 1.669195 -0.509281 0.608898 0.947057 -0.091836 0.435856 -0.761555 -0.798134 -2.004453 0.094258 0.666091 0.467104 -0.236185 -0.129145 0.479769 2.408526 -0.519120 1.624355 1.559580 1.264209 1.864071 0.967108 -0.586017 0.860436 0.635764 -0.596722 -2.101713 0.506694 -0.617396 -1.788768 -1.084133 0.976125 -2.141599 0.898052 1.408389 0.053611 -0.536173 -1.352426 1.514655 1.398260 -0.883827 2.028241 0.574147 -1.682087 -0.601806 -1.190294 2.468178 -1.391663 0.482842 -0.165621 -2.049649 -0.443917 1.544348 0.744586 -1.358031 -1.216465 0.422870 0.425927 -1.531861 0.494714 -0.416516 0.370735 -1.486144 -1.003170 0.642791 -0.649410 1.334391 0.067387 0.506956 -0.897715 0.273531 0.221676 -1.750051 -0.459918 1.929945 -0.996010 0.432431 -1.675133 0.911695 0.807901 -0.789754 -0.581791 -1.401127 0.510462 -0.156896 0.804350 -0.851135 0.248796 -1.139316 0.260441 0.570666 0.323555 1.502544 -0.516541 0.974217 0.585169 0.938037 -0.339158 0.566241 -2.869002 0.971864 -0.406592 0.170771 -0.641797 0.241035 1.201457 0.756355 1.358376 -2.200018 1.958139 0.241946 -0.378063 -1.418070 0.701273 0.256020 -0.571488 -0.520868 1.291385 -0.212723 -0.213571 -0.071260 0.825060 0.005165 -1.490475 -1.469960 -0.358065 1.604891 -2.124285 0.641378 -0.469001 -0.576000 -0.050406 0.622949 0.970456 0.954023 2.243135 1.506678 -0.146673 1.237578 -2.339931 0.496858 2.310259 1.454244 -1.507904 1.583761 -1.229914 -0.383928 0.723266 1.110159 0.546664 0.896753 -1.362770 -1.197898 0.632814 -0.197350 2.064560 0.751239 0.408162 -2.068630 0.865040 -0.466440 0.117070 2.823838 1.196346 -2.455593 0.980901 1.792730 -0.724509 -0.978110 0.661156 -1.402499 -1.104448 -0.590470 0.640004 1.178211 -1.489206 -1.370931 0.007807 -1.470936 1.608403 -0.259846 -0.939752 0.311959 -1.579097 -0.161870 2.306210 0.485705 -0.285852 -0.618017 -1.464272 -0.977858 -2.425527 0.257876 0.892206 -0.694992 -0.691375 -1.497660 -0.618850 1.597522 -0.478980 0.456847 -2.665983 -0.148223 1.342631 0.552855 0.245202 -2.251082 -0.314073 -0.067962 0.107333 0.338169 -0.795175 0.938840 1.942112 -1.352557 1.185418 0.953001 -0.542440 0.652325 1.499315 -1.653844 2.253835 0.089611 1.773602 0.641078 0.784929 -1.020889 0.227813 -0.425618 -0.037599 -0.704253 0.899735 -1.740992 -0.688927 0.743607 -0.936696 -1.438618 0.568126 1.526330 0.431343 0.138409 -0.329235 -0.527019 -0.646632 -1.516554 0.385752 1.153669 -0.911448 -1.574236 0.891935 1.259856 -1.361979 -0.627136 0.406480 1.139675 1.566162 -1.956285 1.308616 0.074914 0.432924 -2.490043 -2.005578 0.914619 -1.163065 -1.350153 0.393877 -2.634214 -1.483554 -0.913397 1.258895 -2.367501 -0.429303 0.373677 2.160941 0.174916 -0.054802 1.429763 -0.471453 0.745385 -0.084026 0.350442 0.073191 1.510704 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.980500 2.072379 -0.453200 -2.978889 7.568629 -1.539187 0.623882 4.213290 -2.321076 3.996667 -3.299034 2.769780 -0.205048 -4.339568 0.450544 0.194825 0.279970 3.126978 -1.078824 1.553235 1.960573 -0.747486 1.252670 -1.605264 -1.751424 -4.524901 0.314634 1.485916 1.616299 -0.427879 -0.126396 0.420296 4.655950 -1.404801 2.815283 2.927403 2.680936 3.729434 1.756052 -1.981943 1.665469 1.357321 -1.339549 -4.290117 1.051046 -1.438200 -4.079911 -2.176008 2.225668 -4.654819 0.875345 3.086732 0.012693 -1.601122 -2.948915 3.534328 3.437950 -2.244385 4.385357 0.959510 -3.080440 -2.027862 -2.676133 5.077258 -2.882584 0.880881 -0.360552 -4.102930 -0.987896 3.244625 0.702740 -2.347482 -2.458492 1.024386 1.360490 -3.381052 0.867098 -1.240774 0.259079 -3.289504 -1.712559 1.208608 -1.475353 2.923089 0.230875 1.265393 -0.966937 0.724572 0.396554 -3.820948 -0.950114 4.082554 -1.814812 0.539083 -3.427743 2.340472 1.660120 -1.835021 -1.562528 -2.581379 0.890768 -0.057567 1.797666 -2.640818 0.675609 -2.900713 0.347947 1.115464 0.926634 3.166493 -1.110776 1.701183 0.826729 2.154386 -1.255254 1.099693 -5.830399 1.551600 -0.730361 0.713676 -1.645435 0.606372 2.665659 1.699039 2.983477 -4.781084 4.341592 0.411089 -0.783539 -3.204016 1.447976 0.665848 -0.990701 -0.718746 2.450300 -0.835189 -0.466357 -0.142820 1.957169 0.176986 -3.522567 -2.643013 -0.459875 3.658223 -4.766585 1.550248 -0.923335 -1.138391 0.120838 1.261256 2.197137 1.881031 4.855831 3.226775 -0.154216 3.725730 -4.671300 1.375718 5.135775 3.267610 -3.199587 3.264566 -2.850616 -0.749125 1.368622 2.116580 1.371745 2.244642 -3.151575 -2.581088 1.829136 -0.407770 4.333586 1.488189 0.903505 -4.668094 2.117059 -0.937839 0.662886 5.645249 2.656915 -5.205105 2.709713 3.728042 -2.026668 -1.701683 1.266944 -2.775849 -2.164024 -1.254881 1.332547 2.534874 -2.907717 -3.225988 -0.636459 -3.041801 3.575776 -0.612278 -1.934932 0.889045 -2.930807 -0.400744 4.305097 0.955609 -0.877706 -1.558283 -2.970432 -2.716353 -5.052017 0.631896 1.771991 -1.928128 -1.591791 -3.298278 -1.537591 3.271291 -0.834778 0.875712 -6.513863 -0.071607 2.778749 1.916216 0.770241 -4.205857 -0.509708 -0.129565 0.142347 0.633332 -1.750550 2.089953 3.974160 -3.032795 2.677879 0.809498 -1.309052 1.643616 3.216113 -3.366387 4.837635 0.534619 4.293000 1.071579 1.712986 -1.896998 0.954675 -0.820179 -0.732098 -1.029984 1.813668 -3.758905 -1.714701 1.882497 -1.832197 -3.323830 1.218759 3.215522 1.128198 0.406842 -0.708748 -0.942365 -1.458742 -2.884840 0.652207 2.379015 -2.050212 -3.257844 1.642212 2.758433 -2.456871 -1.486001 0.906525 2.538527 3.173872 -4.160866 2.929329 -0.128955 0.820369 -5.218627 -4.191610 2.002360 -2.180781 -2.839010 1.353492 -5.678116 -2.767914 -2.033427 2.578445 -4.937434 -0.990240 0.669725 4.475489 0.198650 -0.021346 3.161933 -1.039000 1.594512 -0.411044 0.858811 0.391780 2.888424 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.540843 3.835491 1.398661 -4.439916 7.782391 -1.515560 0.762492 3.212520 -0.350939 4.839010 -5.513305 -0.014228 -1.809949 -6.037879 0.198928 -2.409299 -0.250969 4.905802 -1.543480 3.188220 3.793446 -2.121971 1.592226 -3.206487 -1.875367 -3.974096 -0.920989 1.289453 0.678794 0.481294 1.548744 0.281164 6.256245 0.399938 4.687372 4.464140 1.117729 7.993245 1.247956 1.792318 0.965658 3.484982 -2.137073 -8.010302 3.348709 -3.143070 -3.631244 -5.152706 2.512148 -7.104135 4.136017 4.360176 0.070699 -2.307200 -4.609902 2.047555 5.492069 1.323677 6.290942 1.910518 -3.280372 0.742590 -4.893827 1.644343 -4.105079 2.996804 1.871183 -5.788352 -0.785961 2.658880 3.521270 -3.748745 -4.894006 1.415403 1.301017 -3.859737 1.725008 -2.239156 -3.887697 -3.077520 -3.321712 0.842545 -1.458698 4.489120 -0.869576 1.099198 -2.416611 1.059184 0.987027 -5.066746 -2.024300 5.389178 -1.177965 1.885176 -2.909590 3.751042 1.486471 -1.592850 -3.563508 -1.082378 1.714573 0.974872 2.588957 -0.006264 -3.698429 -4.633328 3.658973 2.842678 -0.984179 1.943989 1.332326 2.828890 1.755882 3.020601 -3.784402 4.042572 -7.529809 1.380886 -0.631133 1.368537 -0.819663 1.527267 0.618136 0.410646 3.466527 -5.843606 6.155179 1.181929 -2.099727 -4.387621 2.808728 -0.279205 -2.154295 -1.735521 3.616977 0.217320 -1.149441 -0.610803 0.248940 -1.005194 -2.950147 -4.053762 -0.551405 5.144535 -3.306721 1.409443 -1.963928 -3.158620 -0.096881 1.351117 2.027908 2.078268 6.406883 4.683742 -0.492681 0.362378 -5.275450 1.237124 7.475092 3.915199 -5.149983 3.403063 -0.628101 0.100476 2.629027 1.889588 2.721598 3.311138 -3.754066 -4.165723 -0.582125 -1.780734 5.561030 4.497567 2.060032 -6.399159 4.420861 -0.100485 -0.206024 8.581183 3.704295 -5.323345 0.338707 4.251923 -4.980629 -3.406312 1.241174 -0.922770 -1.144917 -1.236918 1.497300 2.141258 -4.078214 -6.269698 -1.449810 -5.393651 5.474683 -0.814590 -0.057695 0.307878 -5.764614 -2.422370 6.640742 0.950277 -2.740972 -1.788886 -3.260151 -2.083669 -6.877392 1.892945 2.649861 -2.315237 -3.727808 -4.157884 0.176797 4.047740 -2.004369 0.044504 -2.886655 -2.800321 3.203470 -0.070145 2.209585 -6.741148 -1.600210 -0.456973 1.019004 3.032155 0.924071 2.715758 7.623884 -3.818623 2.219170 4.669464 0.243238 1.945161 6.104343 -4.168754 6.397223 -1.981976 5.229337 -0.192552 2.753477 -1.600653 0.426173 0.586601 0.310091 -0.337359 3.424089 -3.918454 -1.621676 1.769006 -4.202468 -1.913143 2.657121 3.413784 1.725452 0.822264 1.066205 -2.743622 -1.351507 -2.030934 -0.430359 4.425942 -0.502627 -5.367701 0.793909 2.190541 -2.281793 -2.477204 1.445045 2.240926 4.807200 -5.577792 3.866064 -0.593234 -1.929579 -5.846465 -3.984748 2.272053 -4.231764 -3.989918 3.308097 -6.187586 -1.865989 -3.119612 3.624436 -4.507218 -0.721615 -0.604677 5.300928 2.893988 -0.069787 4.048802 -1.144271 4.457466 0.303053 -0.903252 0.590100 6.348234 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.665224 5.008764 5.603172 -3.106199 3.248075 1.080114 0.497191 1.800032 -3.161878 3.584341 -3.709666 1.049472 -0.861515 -3.001231 0.042727 -3.772366 -2.014477 0.708150 0.311125 4.099331 2.124253 -3.067841 0.212591 -1.922642 -2.104744 -3.042387 -0.260285 0.676649 3.129923 0.072352 3.071474 -0.752611 3.304924 -0.145337 3.720465 2.795907 0.877649 4.461425 0.590632 -1.273561 -1.503826 2.497884 -2.564594 -3.345759 1.282935 -2.233912 -1.141306 -2.039835 0.965171 -2.261285 0.380982 3.226389 -0.635922 -1.731225 -3.057757 2.782441 1.992736 -0.106989 4.683376 0.544698 -0.820785 -1.455148 -4.871030 1.600750 -2.122363 2.170456 -0.817515 -1.285203 1.862078 -0.309393 0.314642 -0.481605 -1.589363 3.202830 0.884738 -3.572012 1.014500 -2.859808 -6.398476 -2.158673 -1.672291 1.671448 1.164570 3.211356 -0.138709 1.381020 -0.404005 2.863394 -0.872088 -4.955349 -0.372079 3.506566 -1.637773 -1.461368 -1.883309 4.342521 -0.102727 0.442564 -2.367073 0.684163 2.539856 0.887200 1.701907 -5.243079 0.632884 -5.613049 2.335209 1.884899 -0.597908 1.441604 1.430699 3.398940 3.408173 3.969297 -3.315810 1.663554 -3.998454 -0.988603 0.695427 0.765763 -0.948664 2.250797 -2.313991 1.028086 3.495749 -4.868139 2.945021 0.645279 -1.723466 -3.357000 0.771842 -1.800327 -1.351257 -1.806867 1.550064 1.053652 -0.885428 -1.249381 -0.480656 -0.146515 -1.351076 -4.195555 1.828262 5.009278 -3.168591 0.596066 -1.040693 -1.070011 -0.707879 2.537855 2.851420 1.991717 3.560199 2.829564 0.897888 0.194236 -2.626512 -0.307214 3.610639 1.411302 -4.195238 3.807215 -2.495663 -1.518823 0.809411 1.557749 2.715045 2.758651 -5.650079 -6.485520 1.765508 -0.966621 4.250460 2.143889 0.389117 -2.263117 6.066768 -1.570342 -2.892060 3.922359 1.632815 -1.710642 -1.809334 1.501426 -4.132885 -2.546883 2.456852 -2.034826 0.547996 0.018763 -1.211587 1.397085 -1.281144 -3.417101 -1.386780 -4.244316 5.342493 -0.423635 1.867036 -0.681369 -2.127191 -5.467753 2.745585 -0.175970 -2.969302 -2.863346 -1.344235 -2.379759 -3.520111 1.496099 2.015756 -0.993258 -3.880040 -3.718821 0.488202 -0.066902 -1.000263 0.506067 -3.355541 -4.029796 1.996053 0.162775 2.203787 -1.532953 -0.875947 -0.854609 0.289396 2.573532 0.319387 5.309956 6.453726 -1.735501 3.836776 0.920498 -2.059793 0.817837 4.045798 -3.705163 4.783687 -1.628005 2.138987 -0.603667 1.673547 -1.984819 -0.143628 1.668202 -1.833568 1.268774 0.799091 -0.567116 -0.899284 -2.463970 -3.932065 -0.206919 0.827412 0.513018 -0.470060 0.907429 2.434575 -1.157131 -2.288483 -2.490606 -0.613087 3.139930 -0.771964 -1.646191 1.744504 -0.061723 0.755031 -0.023709 0.464100 1.369809 2.408973 -4.201413 1.159509 -1.357796 -1.591868 -4.064031 -2.998964 0.525046 -3.190658 -2.837274 2.448608 -3.653146 1.028360 -2.708374 0.484957 -2.486868 -1.385410 1.104450 4.194125 1.480308 -2.664996 1.861017 -2.050774 4.311580 1.507592 -0.564361 -0.012083 2.908270 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.371601 15.536407 12.067298 -12.703132 16.658549 -2.634691 2.616260 5.583930 -2.308106 13.698033 -15.111136 -0.936154 -5.938940 -16.061354 -0.115679 -13.192988 -3.186342 12.426813 -1.526397 13.831631 10.768338 -9.110802 3.032750 -9.148500 -5.965060 -12.436525 -3.427079 2.979475 3.343116 0.717627 11.699088 -0.421294 17.140150 3.133583 15.086187 13.987252 -0.863354 23.106121 3.201390 6.071708 -1.544101 10.832769 -7.838940 -20.742875 9.003482 -8.285492 -7.062233 -15.373384 5.376921 -17.824892 6.067464 12.899901 -0.709944 -5.070990 -13.697451 4.582138 14.536254 6.072959 17.583810 4.715052 -5.431464 5.211061 -15.929483 -1.615450 -10.048218 6.689052 4.350678 -12.461876 3.027281 3.123198 8.251605 -8.232178 -10.163872 7.026403 3.712700 -11.721487 4.216525 -8.093347 -22.887973 -9.120825 -8.535896 2.794856 1.081789 12.898657 -1.924544 3.585877 -4.929051 5.863491 1.422686 -15.635098 -4.293866 14.628901 -2.435729 0.281974 -4.138342 15.358584 4.770615 -1.829215 -9.696215 -0.051342 6.358730 2.111058 7.422346 -0.705519 -11.912035 -15.330534 8.934762 6.371395 -5.128445 4.832353 4.301831 10.678195 8.159517 10.668374 -15.071550 13.029909 -19.457284 2.918390 -2.875187 4.057462 -0.621307 5.493506 -3.365805 1.930779 10.163894 -16.578179 14.863351 3.895560 -5.183834 -13.982695 7.244692 -3.568563 -5.569751 -6.730988 9.024267 2.584406 -2.872869 -3.461475 -2.239792 -2.729003 -2.077158 -13.379745 1.442078 18.188349 -8.390953 3.632995 -5.387578 -8.225423 -1.638896 4.065256 6.302242 6.254494 17.972209 12.966516 -1.021372 -1.093686 -12.521487 -0.663499 19.523287 10.221947 -13.853269 10.840040 0.932269 -2.267858 6.030395 5.455300 9.787452 8.413243 -15.781159 -18.121033 -1.143594 -6.030126 15.837495 12.473436 3.656744 -15.032785 19.052834 0.806089 -5.552389 22.254978 8.892738 -11.284145 -1.458840 9.418647 -18.187151 -12.093844 5.489781 -2.147003 -0.793624 -1.017683 1.386855 3.685170 -9.024307 -16.802944 -5.150147 -16.476260 16.183703 -2.194385 3.946278 0.537766 -13.958158 -14.949641 16.374037 2.364554 -9.705059 -7.452784 -7.931316 -4.610488 -17.709472 6.675541 6.563218 -5.631197 -11.703580 -11.838893 3.061633 7.152241 -5.667769 0.354314 -5.177566 -12.791526 7.789826 -1.169917 7.291975 -17.254696 -4.387887 -1.030393 3.761387 9.219783 6.238670 12.252460 25.057628 -9.309401 5.637964 11.089841 -0.976611 6.335375 17.860274 -14.121813 17.933367 -7.823063 14.634845 -1.491153 6.705444 -4.726446 -0.125316 5.426710 -1.835458 1.493646 7.386126 -7.205118 -3.972047 1.213523 -13.235471 -1.850657 6.101212 6.434132 1.719763 3.057533 7.798645 -9.542347 -3.153248 -4.843700 -2.521832 13.485407 1.602497 -14.027991 3.432771 4.423022 -1.577841 -7.169705 2.637534 5.724827 11.140483 -16.231368 9.154091 -3.957485 -7.293227 -13.886324 -11.095235 8.112521 -14.606374 -12.017427 9.389103 -15.008059 0.092937 -10.024614 7.351834 -11.214578 -2.934143 -0.378086 14.145820 9.465078 -3.710015 9.074351 -5.449982 15.302459 2.575489 -2.845031 0.056018 19.080231 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.482172 7.756869 2.708711 -9.329712 14.269048 -4.231595 0.570140 9.051831 -0.940960 9.501110 -8.437224 1.919267 -2.446266 -12.262865 0.519661 -4.979759 0.159758 9.994209 -2.054965 8.881626 6.775751 -4.004968 2.541770 -4.564640 -4.858703 -7.520278 -0.499213 3.610226 1.690795 -1.857222 5.034199 1.058509 13.250848 1.230456 11.918692 9.210114 2.943215 13.872108 4.985512 1.286428 0.509343 5.051253 -4.088014 -13.340246 4.794027 -3.815497 -7.641690 -8.521009 4.384219 -12.140839 4.991090 9.142365 0.155939 -2.340832 -9.100551 4.066854 7.386037 1.202773 11.527602 3.402826 -6.848804 0.602649 -9.377799 3.063342 -6.711850 2.938516 1.764516 -8.459944 1.021510 4.914196 4.652278 -7.429608 -6.266457 4.134091 3.726987 -8.366830 4.040373 -4.422954 -7.213714 -7.475861 -5.296181 3.550761 -0.939300 8.569691 0.086118 4.114404 -3.882871 3.420237 -0.552519 -11.366838 -0.394084 8.944419 -4.321138 0.047165 -5.155202 10.530705 2.372218 -2.345695 -6.852452 -4.151558 4.666252 -0.414265 5.244075 -0.809879 -4.538103 -8.753488 4.272026 4.025398 -1.295318 5.842380 2.708477 6.651356 6.030855 7.794800 -7.100479 7.458970 -14.976496 3.698327 -3.823621 2.415524 -2.228254 3.289569 2.864464 3.803978 7.045397 -12.183309 10.715259 3.810809 -2.851050 -9.097721 4.999480 -1.265104 -3.001420 -4.531502 7.523531 -0.402991 -1.064090 -2.196834 1.212801 -0.679571 -4.037732 -8.026184 -0.303058 10.020800 -7.770813 3.363194 -2.978306 -5.107524 -0.621967 3.134810 5.579503 4.706676 13.314434 7.637484 -2.013595 1.771132 -10.527069 0.203869 13.694072 6.656940 -8.772330 9.285350 -1.811071 -2.060128 2.603441 6.060310 6.388258 3.522812 -9.904741 -10.473417 2.066364 -1.402287 11.301914 4.310066 1.396410 -10.515067 9.558020 0.259638 -1.702042 16.854670 5.437015 -9.739686 0.481749 7.633941 -8.782360 -7.380917 4.227253 -4.489618 -2.397899 -1.552671 3.115347 4.026060 -7.236282 -9.834476 -1.738261 -10.089517 9.201937 -1.868816 -1.703728 0.143483 -9.984356 -4.007836 13.806959 1.929328 -5.356895 -4.178080 -7.915441 -2.017664 -12.793625 3.113181 4.549406 -2.484161 -4.402087 -7.356795 -0.876273 6.713386 -2.536160 0.731619 -8.392094 -5.547510 6.983353 -0.754353 3.196297 -11.951135 -2.126768 0.470671 1.963696 4.348594 0.797973 6.674099 14.200293 -6.760087 4.438222 6.292233 -1.145124 5.100814 10.408375 -10.948434 14.474711 -2.992752 10.782761 1.117211 4.123439 -4.513429 0.750525 1.033699 -0.693004 -0.904585 4.779840 -6.521874 -3.639167 1.726615 -5.605757 -5.020010 2.652291 6.582733 -0.573315 2.415586 2.248620 -4.849473 -3.434463 -6.004243 1.375951 8.007223 -1.410818 -8.595915 4.371710 6.190341 -1.526590 -2.978588 1.933663 5.653777 9.328670 -11.758704 6.489456 -1.356268 -0.823150 -10.311768 -9.501139 6.677201 -8.456831 -5.075474 3.283561 -12.411189 -3.949339 -6.255585 6.315806 -8.914491 0.801392 1.964840 10.924163 5.638184 -3.639947 6.236977 -3.989656 7.460517 1.167036 0.117605 0.141697 12.018562 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.226432 1.067803 -1.132036 -3.832880 6.896492 -2.889864 -0.563595 4.321359 0.044056 3.091678 -2.048144 1.206410 0.095088 -5.924617 0.844315 -0.923434 1.003459 3.409810 -0.836361 3.201179 1.775070 -1.051169 1.277795 -0.735247 -1.995219 -3.671412 0.476094 2.371899 1.095583 -2.479730 1.030548 0.949943 5.297538 -0.745657 4.301397 3.071486 2.448835 3.344108 2.780355 -2.513342 1.301604 0.473450 -0.861827 -3.902691 0.322364 0.179741 -4.926116 -1.990659 1.891578 -3.539341 -0.349194 3.735125 0.065414 -0.783514 -3.636457 2.827945 2.159110 -0.915293 3.649706 1.219827 -2.537172 -1.424193 -2.926668 2.896821 -2.726821 -0.528234 -0.962015 -2.690236 -0.146251 3.409903 -0.372004 -2.388175 -2.068879 1.012631 2.774133 -3.327336 1.578394 -1.162217 0.630929 -3.445679 -1.271967 2.408880 -1.461024 3.072830 0.746923 2.550167 0.357957 1.144128 -0.907699 -4.211106 0.952977 2.567434 -2.487092 -1.445217 -1.854851 4.470462 1.248810 -1.832007 -2.247625 -3.640685 1.516225 -1.905212 2.032215 -0.869331 1.156111 -2.551259 -0.011471 0.901097 1.223939 3.681675 0.440717 1.747127 1.664048 2.570027 -2.264900 1.006715 -6.343723 1.451651 -2.643141 0.812772 -1.930565 0.992593 3.560784 3.416271 2.351868 -4.989244 4.208819 1.684000 0.084936 -2.578865 1.486843 0.571865 -0.520748 -1.257997 2.897159 -1.531005 0.264968 0.024580 2.106036 0.867001 -1.843576 -0.658070 -0.560980 3.016328 -3.928014 2.085321 -0.299717 -1.398628 0.420430 0.855642 2.725815 1.831157 5.663121 2.363141 -1.497535 3.117989 -4.714243 0.776928 5.041617 0.752526 -2.383598 4.520552 -2.275828 -1.410548 -0.054948 3.879814 2.199530 0.077999 -3.220796 -2.790079 2.162664 0.804599 3.903088 -1.242629 -0.279412 -4.484834 2.043253 0.424606 0.809107 6.506532 1.744274 -4.166933 1.333157 3.820313 -2.773722 -2.226323 1.523199 -2.952113 -0.862467 -1.196075 2.186625 2.307033 -2.509050 -2.809322 -0.442028 -2.606746 1.716886 -1.128666 -3.310666 0.266920 -2.609869 -0.241579 5.690829 0.444390 -0.806729 -1.425460 -4.423808 -0.301769 -4.716371 0.424847 0.979900 -0.880509 0.573506 -2.241849 -1.998250 3.554474 -0.295915 0.747114 -6.970570 0.371204 3.077835 1.843769 0.104066 -2.255054 -0.059717 1.251700 -0.346014 -0.550773 -1.502815 1.681668 3.596419 -2.687750 2.115444 -0.527008 -2.142002 2.735801 2.865026 -4.387893 6.292968 0.838859 5.135813 1.424738 1.199581 -2.040975 0.822666 -0.690489 -2.027149 -1.269075 1.127622 -3.205159 -1.971644 1.882453 0.312263 -4.701547 0.132894 3.775643 -0.635611 1.111721 -0.642990 -0.791964 -1.333389 -2.100134 2.376765 1.879873 -1.230061 -2.028890 2.455984 4.674206 -0.159137 -0.944646 0.571001 2.597650 3.878669 -4.572308 2.906228 -0.019399 2.782059 -3.456282 -4.539619 3.198129 -2.398753 0.094176 -0.307937 -5.621386 -3.411980 -1.953687 2.772407 -2.890505 1.451119 2.030634 4.678000 1.073744 -2.042757 2.034149 -1.743596 0.489631 -0.467479 0.811812 0.534010 3.052873 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = -0.772078 0.880750 0.388877 -0.727074 0.859528 -0.372482 0.078920 0.426125 0.373109 0.694227 -1.032109 -0.291798 -0.311547 -0.986331 0.015865 -0.539484 -0.082874 0.998385 -0.155036 0.546388 0.705726 -0.371230 0.109458 -0.685861 -0.230983 -0.626476 -0.197143 0.083438 -0.189055 0.195487 0.392916 0.152803 1.094916 0.375723 0.967995 0.906215 -0.103553 1.524583 0.361730 0.905260 0.058628 0.695317 -0.346034 -1.504270 0.644626 -0.528619 -0.219905 -1.083426 0.272926 -1.175601 1.212830 0.644129 0.047482 -0.292620 -0.841429 -0.057150 0.851723 0.700927 0.985326 0.424169 -0.418409 0.605353 -0.762144 -0.057158 -0.774431 0.506572 0.624219 -0.876268 0.060770 0.316362 0.947033 -0.590370 -0.796204 0.153969 -0.014315 -0.552027 0.329081 -0.362318 -0.979739 -0.263617 -0.599981 0.130865 -0.107645 0.744336 -0.237650 0.054475 -0.819247 0.173806 0.272803 -0.695806 -0.448513 0.804200 -0.062160 0.381358 -0.128009 0.749597 0.421694 -0.177230 -0.392567 -0.001409 0.378625 0.180882 0.378131 0.601143 -1.026607 -0.675349 0.885856 0.575905 -0.530226 0.233665 0.351152 0.676849 0.404157 0.407033 -0.574825 0.807901 -1.316652 0.292249 -0.049069 0.157274 0.172115 0.181344 -0.172032 -0.127289 0.396872 -0.787081 0.988044 0.357949 -0.272657 -0.645539 0.543000 -0.163857 -0.436766 -0.447951 0.587884 0.328431 -0.198040 -0.101318 -0.258380 -0.316668 -0.191171 -0.929495 -0.139534 0.942029 -0.242293 0.127036 -0.366003 -0.568044 -0.113825 0.125782 0.129804 0.221185 1.010638 0.737306 -0.113799 -0.597103 -0.717838 -0.001350 1.200890 0.588178 -0.822701 0.451128 0.293482 -0.031496 0.482710 0.266258 0.395146 0.519877 -0.637804 -0.838500 -0.534359 -0.572502 0.855988 0.877938 0.357032 -0.899238 1.005005 0.252752 -0.296099 1.541811 0.514081 -0.633270 -0.367892 0.644168 -0.994465 -0.714851 0.196025 0.129431 -0.008887 -0.112648 0.189690 0.135240 -0.701309 -1.126915 -0.262546 -0.993519 0.883956 -0.063794 0.293754 -0.108719 -1.072865 -0.406875 1.258286 0.210660 -0.541273 -0.194915 -0.396610 -0.135283 -1.093557 0.365417 0.474379 -0.300892 -0.627833 -0.562669 0.272356 0.597419 -0.554926 -0.157794 0.217920 -0.795301 0.465707 -0.329531 0.259163 -1.306992 -0.378341 -0.042271 0.363963 0.667989 0.513086 0.564341 1.501582 -0.494461 0.113858 1.409893 0.390628 0.307869 1.189483 -0.682450 0.948784 -0.710403 0.481033 -0.015032 0.438332 -0.250152 -0.181258 0.216913 0.186207 -0.047108 0.578610 -0.520316 -0.100232 0.192609 -0.798591 0.071334 0.578540 0.465538 0.330720 0.084833 0.363930 -0.599254 -0.065800 -0.260021 -0.205398 0.830188 0.286102 -1.007636 0.024771 0.283592 -0.344906 -0.485237 0.217573 0.223403 0.794800 -0.829669 0.673645 -0.065136 -0.526180 -0.841548 -0.504483 0.430499 -0.776525 -0.714435 0.437323 -0.889690 -0.208631 -0.507747 0.609765 -0.735827 -0.018947 -0.207932 0.751265 0.656639 -0.037652 0.540843 -0.206616 0.906632 0.268251 -0.324454 -0.011434 1.341924 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = -0.988788 0.611861 0.140350 -1.005535 2.021066 -0.437077 -0.040380 0.942677 0.308350 1.183217 -1.236260 0.035184 -0.291638 -1.192063 0.076338 -0.325392 -0.012261 1.085425 -0.544815 0.285143 0.735989 -0.061126 0.443623 -0.669795 -0.417637 -1.192044 -0.237355 0.361320 0.058942 0.086990 -0.031109 0.094188 1.459356 -0.190614 0.941246 0.929597 0.650619 1.523691 0.248110 0.497465 0.605443 0.616048 -0.436915 -1.603010 0.562371 -0.627732 -1.012478 -0.960800 0.699870 -1.621875 0.961902 0.923500 0.041589 -0.585396 -0.857189 0.767929 0.893669 0.133730 1.366881 0.396205 -0.949580 0.073753 -1.058601 1.050876 -1.099221 0.849408 0.049747 -1.477249 -0.605818 0.913654 0.627365 -0.690429 -1.006031 0.184317 0.306472 -0.860425 0.353484 -0.420304 0.122982 -0.540459 -0.693424 0.354808 -0.371299 0.831079 -0.070824 0.281343 -0.526911 0.212888 0.273439 -1.037872 -0.462913 1.212889 -0.431941 0.429921 -0.652611 0.372617 0.445734 -0.554883 -0.376430 -0.478790 0.285299 0.114905 0.556816 -0.002661 -0.337835 -0.887241 0.716657 0.813740 -0.006006 0.431926 -0.134890 0.514273 0.236091 0.565986 -0.404046 0.663872 -1.776365 0.425863 -0.255405 0.196956 -0.313448 0.277178 0.469760 0.325865 0.779361 -1.255542 1.456095 0.168096 -0.528557 -0.715484 0.588487 0.147182 -0.452867 -0.237108 0.774947 -0.035624 -0.256849 -0.020048 0.352625 -0.237843 -0.731542 -0.685459 -0.253711 0.681355 -0.740149 0.379680 -0.350441 -0.579762 0.033256 0.377040 0.480495 0.451087 1.508523 1.017858 -0.126481 0.019513 -1.301057 0.403671 1.549680 0.497440 -1.047377 0.815884 -0.423841 -0.013238 0.551957 0.552946 0.337524 0.977379 -0.562974 -0.635586 -0.360639 -0.342691 1.278677 0.878148 0.412465 -1.429916 0.528634 -0.372047 0.222466 1.889307 0.980843 -1.443005 0.171420 1.178244 -0.952514 -0.835839 0.295818 -0.376973 -0.365310 -0.440285 0.427634 0.667159 -0.972905 -1.274672 -0.110930 -1.097995 1.165128 -0.161535 -0.333716 0.240653 -1.257931 -0.293274 1.536520 0.309762 -0.392889 -0.349614 -0.823906 -0.468531 -1.629168 0.313353 0.686673 -0.538864 -0.578286 -0.877126 -0.073659 0.987448 -0.438318 0.184646 -0.934377 -0.330011 0.783284 0.034402 0.403415 -1.253562 -0.281577 -0.165581 -0.026156 0.481580 -0.190653 0.362209 1.408887 -0.883477 0.708525 0.938813 -0.323961 0.252463 1.229340 -0.870059 1.466997 -0.207712 0.712231 0.169924 0.618746 -0.441463 0.213081 -0.100543 -0.194175 -0.235433 0.757406 -1.128308 -0.452933 0.482506 -0.847161 -0.576966 0.586575 0.961992 0.437805 0.116907 0.038206 -0.613817 -0.296928 -0.548543 0.061112 0.869873 -0.227807 -1.244551 0.275354 0.750773 -0.958170 -0.872853 0.340465 0.518389 1.153196 -1.254545 0.970640 0.092938 -0.127746 -1.598830 -0.785417 0.369287 -0.816741 -0.791124 0.384149 -1.452782 -0.832068 -0.648671 0.890620 -0.942910 -0.314439 0.058192 1.242692 0.591692 -0.021000 0.971070 -0.222217 0.710086 0.118127 -0.249674 0.187900 1.146845 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -1.637801 1.972111 1.029480 -1.823285 2.566091 -0.895423 0.564328 0.813643 -0.273838 1.773445 -2.042985 0.155194 -0.562237 -2.541869 0.165837 -1.587289 -0.177674 1.983249 -0.114081 1.705156 1.324906 -1.187611 0.418639 -1.244099 -0.769091 -2.263232 -0.171360 0.568489 0.303872 0.165537 1.389441 0.278173 2.462613 0.199806 1.873407 1.998486 -0.067195 2.960859 0.906020 0.296491 0.347939 1.180516 -0.743418 -2.970032 0.947854 -0.717227 -1.284675 -2.166214 0.808067 -2.584577 0.686017 1.646667 0.009964 -0.852756 -2.206021 0.722224 2.188307 0.619966 2.214955 0.695143 -0.702132 0.437448 -1.776923 0.422173 -1.660693 0.298222 0.620218 -1.799217 0.406354 1.130783 0.742706 -0.783903 -1.402888 0.444835 0.646158 -1.599992 0.446508 -0.886655 -2.850297 -1.004836 -0.887757 0.453948 -0.192888 1.802408 -0.207942 0.486158 -0.684021 0.521832 0.405606 -1.736767 -0.796222 2.093233 -0.146709 -0.071747 -0.486090 2.323893 1.400892 -0.837761 -0.948447 -0.400127 0.698133 -0.098294 1.010604 0.059524 -1.705614 -1.816326 0.877594 0.880599 -0.601701 1.343244 0.130515 1.479435 0.683943 0.924376 -1.789330 1.490422 -3.048671 0.665787 -0.455621 0.357298 -0.130029 0.445126 -0.011418 0.484709 1.128187 -2.167636 2.291759 0.623854 -0.205662 -1.651662 1.018755 0.135855 -0.603529 -0.835031 1.251653 0.249232 -0.265731 -0.030307 -0.102130 -0.153091 -0.278085 -1.615778 -0.016040 2.612354 -1.264912 0.681803 -0.636271 -0.987092 -0.056536 0.226402 0.684879 0.701872 2.481338 1.777860 -0.174215 0.460338 -1.932081 0.171012 2.779431 1.366466 -1.617533 1.445046 0.032126 -0.482364 0.696588 0.866792 1.071040 1.132848 -2.058871 -2.260117 -0.275597 -0.983279 1.990235 1.488449 0.293533 -2.371125 2.433879 0.339536 -0.231147 3.027391 1.189652 -1.679404 0.208261 1.770271 -2.778217 -1.653871 0.596901 -0.358871 -0.242161 -0.288229 0.495113 0.676815 -1.345650 -2.246243 -0.969815 -1.926768 1.737834 -0.362948 -0.054856 -0.050121 -1.643635 -1.545463 2.417787 0.374251 -0.912975 -0.796490 -1.267403 -0.780738 -2.590874 0.673015 0.858182 -0.970489 -1.198629 -1.427625 0.001178 1.245414 -0.984668 -0.002655 -1.139777 -1.168258 1.235701 0.662251 0.428006 -2.247534 -0.494486 0.253729 0.577574 0.749962 0.649747 1.545519 2.916114 -1.298304 0.645370 1.301215 -0.190114 1.251972 2.376299 -1.863039 2.464446 -0.844331 2.052927 0.190304 0.757502 -0.577419 -0.056589 0.431321 -0.593969 -0.221385 0.939454 -1.457396 -0.570192 0.792996 -1.266316 -0.690639 1.006046 1.462008 0.578636 0.308707 0.837477 -1.059281 -0.337447 -0.733644 -0.135450 1.570211 0.169679 -1.892528 0.515256 1.261463 -0.534634 -1.286981 0.322167 1.003771 1.464696 -2.094034 1.730433 -0.424927 -0.561967 -1.977729 -1.778273 1.580614 -1.831185 -1.661302 0.877174 -2.364852 -0.528720 -1.198574 1.416983 -1.950110 -0.347635 0.021785 1.887172 0.805472 -0.111273 1.250850 -0.745148 1.534231 0.080457 -0.172104 0.092602 2.516282 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = -3.272624 2.846427 1.259639 -3.842396 5.345743 -1.457844 0.392861 1.577952 0.728064 3.225121 -4.190281 -0.459008 -1.372819 -5.040006 0.202207 -2.600223 -0.185748 3.771983 -1.078973 2.960076 2.854032 -2.071327 1.289834 -2.654453 -1.302864 -3.201892 -0.604431 1.074926 -0.009069 0.520232 2.147849 0.282529 4.457819 0.728480 3.282329 3.255083 0.180621 6.376269 0.893777 1.757222 1.015636 2.433625 -1.155630 -6.293615 2.644560 -1.977796 -2.721809 -4.341653 1.731547 -5.666326 2.464346 3.326253 0.226599 -2.049129 -4.048615 0.984460 4.527540 1.677111 4.270089 1.583863 -1.933460 1.030828 -3.699119 -0.331034 -3.283884 1.679746 1.953954 -3.818146 -0.296671 2.457505 2.203085 -2.176393 -3.565192 0.339809 1.370917 -2.631166 1.298599 -1.675681 -3.833692 -1.793613 -1.794916 0.610811 -0.713337 3.329028 -0.757548 0.989649 -1.175814 0.561890 0.907771 -3.205259 -1.702505 3.612544 -0.412849 0.831221 -1.293327 3.806819 1.601508 -1.759597 -2.755128 -0.634384 1.256490 0.430604 1.893921 0.970082 -4.001389 -3.455350 2.942980 2.278866 -1.198609 1.451334 0.827961 2.211850 0.713341 1.675809 -3.490496 3.665926 -5.793851 0.786736 -0.615892 1.142525 -0.439396 0.810305 0.354768 0.542008 1.866765 -3.965889 5.123365 1.322096 -1.140883 -2.916277 2.353946 0.290779 -1.371340 -1.246986 2.626917 0.209645 -0.621894 0.093419 -0.103207 -0.765817 -1.193108 -2.649478 -0.495723 4.203331 -1.759090 1.262789 -1.289393 -2.425242 0.058631 0.271107 1.157686 0.829250 4.882088 3.160419 -0.634102 0.240070 -3.430316 0.892956 5.853875 2.487886 -3.465600 2.345118 0.437072 0.123371 1.516495 1.231500 2.106184 2.201051 -2.932398 -3.254809 -0.905959 -1.885037 3.743295 3.129251 1.297984 -5.429647 3.720897 0.538266 0.544324 6.409754 2.732436 -3.625200 -0.000803 3.586429 -4.932961 -2.910510 0.596240 0.243161 -0.376162 -0.636256 1.565872 1.121479 -2.886284 -5.161906 -1.873492 -3.901431 3.354930 -0.699349 0.110638 -0.150065 -3.848952 -2.183437 5.008033 0.513823 -2.164665 -1.020198 -2.433494 -1.024879 -5.271901 1.361208 1.864707 -1.878172 -2.321947 -2.498739 0.210848 2.977963 -2.094919 -0.520920 -1.648229 -2.109980 2.297830 0.252015 1.284574 -4.513203 -1.181221 0.199064 0.967826 1.977619 1.317739 1.748928 5.548368 -2.711856 1.267525 3.032846 0.230733 2.047149 4.921360 -2.870022 4.912474 -1.723765 4.361240 -0.238325 1.947683 -0.871090 0.210643 0.631406 -0.647335 -0.311577 2.483185 -3.111024 -1.143942 1.807627 -2.436230 -1.413720 2.453127 2.943170 1.425282 0.648328 1.439363 -1.935957 -0.649291 -0.889073 -0.179748 3.099729 0.195612 -4.092028 0.104691 2.615460 -1.314425 -2.435422 1.061527 1.721696 3.651953 -3.949564 3.578894 -0.514207 -1.697757 -3.753131 -2.783861 2.606170 -3.417796 -2.618907 2.197249 -4.589500 -1.267426 -2.202501 3.332946 -2.751200 -0.026971 -0.591880 3.503343 2.431130 0.007973 2.864424 -0.968450 3.017697 0.109542 -0.761313 0.544813 5.008323 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = -3.256340 3.565154 1.812433 -3.419777 4.439044 -1.694611 0.769609 1.763968 0.514569 2.977317 -4.317964 -0.039782 -1.341157 -4.455172 0.051762 -2.525478 -0.198866 4.206001 -0.747838 2.751560 2.880832 -1.678611 0.856143 -2.845551 -1.235318 -3.118306 -0.551589 0.628776 -0.713187 0.790636 2.390987 0.545682 4.611618 1.194082 3.533609 3.562809 -0.201594 6.584519 1.406113 2.780761 0.740890 2.585215 -1.176526 -6.365945 2.789425 -2.033021 -1.686773 -4.547117 1.344027 -5.617494 3.712218 2.842842 0.345141 -1.678305 -3.846398 0.377804 4.485824 1.762835 4.077885 1.641880 -1.970275 1.807991 -3.165897 -0.337876 -3.269954 1.690515 2.555306 -3.621219 0.139261 1.994446 3.542781 -2.553022 -3.623102 0.257122 0.403719 -2.498790 1.151002 -1.497969 -4.419904 -1.583252 -2.006860 0.430308 -0.434790 3.092189 -0.896289 0.523245 -2.579760 0.522242 1.201463 -2.825434 -2.006600 3.612986 -0.149382 1.345152 -1.347929 3.498965 1.704949 -1.444146 -2.195022 -0.471668 1.395070 0.615227 1.699853 1.633672 -4.652821 -3.035605 3.105704 2.248215 -2.001795 1.363905 0.675274 2.806857 1.135582 1.442988 -2.924884 3.806198 -5.972047 1.164006 -0.151447 0.753506 0.230785 0.535915 -0.463133 -0.004635 1.659484 -3.556654 4.757705 1.314973 -1.186447 -2.922268 2.367877 0.116604 -1.468758 -1.626560 2.546520 0.866731 -0.676068 -0.078259 -0.707366 -1.118591 -0.858597 -4.111437 -0.553659 4.486409 -1.634735 0.906749 -1.472700 -2.341760 -0.222101 0.227302 0.657959 0.723773 4.362227 3.095561 -0.372829 -0.655274 -3.247920 0.228645 5.290181 3.419198 -3.363852 2.000050 1.070162 -0.092279 1.891185 1.023722 1.701464 1.978095 -3.167435 -3.762105 -1.275759 -2.393351 3.584160 3.638010 1.300865 -4.907477 4.131398 0.956860 -0.235808 6.414245 2.439948 -3.085978 -0.629666 3.165842 -4.195210 -3.152451 0.610177 0.376743 -0.706549 -0.183768 1.074030 0.663592 -2.817578 -5.012339 -1.600492 -3.930061 3.409086 -0.464991 0.524448 -0.438375 -4.091181 -2.273966 4.897012 0.637810 -2.175236 -0.800933 -1.980879 -0.635682 -5.040349 1.425131 2.073665 -1.557129 -2.589968 -2.414132 0.788237 2.533100 -2.370451 -0.773478 -0.391153 -3.044308 2.165500 -0.501808 0.970989 -5.826190 -1.311459 0.035914 1.632004 2.363978 1.949385 2.226149 5.987218 -2.369492 0.738168 4.656748 1.030958 1.712973 5.073828 -2.805497 4.217522 -2.532284 3.674361 -0.065853 1.736468 -0.932514 -0.355707 0.754342 0.420394 -0.364900 2.376562 -2.751342 -0.749325 1.186171 -2.876976 -0.407178 2.576285 2.506684 1.297676 0.386124 1.655894 -1.958225 -0.471232 -1.149940 -0.737969 3.251990 0.537096 -4.341921 0.095052 1.914759 -1.621447 -2.055088 0.903716 1.578450 3.224885 -3.578482 3.379963 -0.557924 -2.220677 -3.834508 -2.750886 2.684582 -3.554862 -3.258319 1.936050 -4.169560 -1.165381 -2.039602 3.140973 -3.324073 -0.163948 -0.782491 3.094105 2.284854 0.287480 2.603933 -0.941361 3.458910 0.499390 -0.818715 0.088976 5.509182 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.264616 1.676991 -0.982629 -6.268655 13.956862 -1.993492 -1.872196 7.087692 -0.414838 8.353774 -3.937940 -1.877834 -1.736995 -10.681036 0.938186 -2.549496 -0.857690 4.532662 -2.572660 4.421617 4.001693 -1.813574 2.520539 -0.517035 -4.094959 -4.801839 -2.234956 4.284919 4.943302 -5.979861 0.579462 0.026463 10.584902 -2.072689 8.948096 5.748152 5.201951 6.820411 1.995832 -2.511270 0.332399 3.132904 -4.721153 -6.756167 1.197063 -2.404990 -9.102500 -3.265702 4.422866 -4.597261 1.039777 8.198889 -0.979213 -0.987403 -5.281182 5.800886 1.020555 -1.078261 9.360525 1.848503 -5.429101 -1.985586 -9.295250 7.661090 -4.599118 3.697369 -3.196043 -6.491306 -1.550623 2.949521 0.069107 -6.565659 -4.613902 5.886774 5.196490 -6.762946 2.529305 -3.810557 -0.553011 -7.078379 -5.746103 4.453919 -2.258061 6.141726 0.905854 4.014701 1.422050 4.021600 -3.022786 -11.224593 2.190516 7.950196 -5.426770 -1.375976 -5.793823 5.243301 -1.184426 -0.266766 -5.263825 -3.826470 2.776129 -1.000159 4.376757 -4.295857 4.350649 -7.601644 1.208580 1.253036 2.572914 3.247416 4.420418 0.956721 4.500767 8.177957 -4.936290 0.678510 -9.867382 2.244698 -3.945071 2.980663 -4.280550 4.280166 4.487526 4.029110 7.078960 -11.820806 5.496353 0.531650 -2.936793 -7.731906 1.348457 -1.889542 -2.832499 -1.580875 5.287992 -2.203054 -1.390937 -2.328754 3.409024 1.778098 -5.798181 -1.632694 1.336508 4.889475 -6.743523 2.895132 -1.175810 -3.337970 -0.562221 4.867932 7.555631 6.031055 12.455428 6.289858 -1.555818 2.787650 -9.895637 1.616396 9.491519 -0.095283 -7.166029 9.328257 -7.272630 -1.747854 0.457214 7.973252 5.639907 2.649798 -4.809961 -3.680482 4.224318 3.247583 9.900609 -0.976125 1.513685 -4.846270 2.846238 -0.916265 -0.816460 11.998513 4.143188 -8.683634 2.678920 4.949378 -3.233783 -3.853547 5.283027 -6.649975 -1.206042 -3.210010 2.765617 5.629168 -4.704424 -4.013846 0.978703 -6.871970 7.675761 -2.748695 -4.322837 3.519445 -7.831634 -4.176493 9.707376 0.502421 -2.452041 -4.710983 -7.968041 -1.619545 -8.133268 2.836750 3.379924 -1.712936 -2.187053 -6.383856 -1.570276 7.403069 1.346568 4.781442 -10.940880 -0.617226 5.168914 1.093369 5.046765 -3.703185 -0.314657 -0.080578 -1.036960 1.927480 -3.420049 3.322932 9.273694 -6.150882 5.983300 0.158694 -3.542374 1.855351 4.569861 -9.060571 12.316832 2.501592 6.766978 -0.154615 3.137014 -3.001455 2.236349 0.476882 -1.405857 0.362901 1.918939 -3.671571 -3.997233 0.947978 -4.511957 -6.926615 -0.884334 5.032555 -1.968100 3.101595 -2.001278 -3.116823 -3.225254 -3.833624 3.661537 5.667588 -2.271244 -3.442159 5.494836 4.076701 -0.735305 1.324776 1.187144 3.982128 7.587608 -9.943861 1.998894 -0.606522 4.271122 -7.408320 -7.865181 0.998245 -4.361174 -0.502638 1.988439 -9.320757 -4.235833 -5.767805 2.545154 -5.328636 0.415934 2.912070 10.738846 5.157353 -4.684292 4.138275 -2.529003 3.734883 0.112690 -1.064648 3.858391 5.050986 +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.458696 0.225168 -0.309737 -0.377502 1.403947 -0.418264 0.013356 0.946936 -0.141545 0.603712 -0.558687 0.364265 0.079483 -0.697414 0.193631 0.362078 0.198462 0.598671 -0.225547 -0.049929 0.252919 0.137682 0.071602 -0.221782 -0.266980 -0.654738 -0.026033 0.281286 0.113153 -0.202384 -0.379346 0.335961 0.938916 -0.240902 0.629461 0.552819 0.626937 0.535071 0.460022 -0.218921 0.502942 0.122048 -0.179161 -0.677407 0.101560 -0.209776 -0.695558 -0.266935 0.318426 -0.609283 0.591356 0.445323 0.090610 -0.077815 -0.447767 0.515956 0.319796 -0.352010 0.692733 0.295435 -0.770543 -0.212774 -0.312355 1.229657 -0.521876 0.212854 -0.181577 -0.869811 -0.306013 0.720490 0.395244 -0.616582 -0.491888 0.058069 0.070706 -0.492038 0.260123 -0.006184 0.747370 -0.584653 -0.438653 0.373594 -0.368655 0.488844 0.053040 0.114190 -0.496420 -0.018624 0.081609 -0.562459 -0.215947 0.631815 -0.499880 0.295608 -0.620006 0.126899 0.295936 -0.253368 -0.083212 -0.728152 0.196543 -0.090864 0.202171 -0.128744 0.390813 -0.241508 0.086137 0.195483 0.174120 0.599830 -0.120112 0.286520 0.222762 0.258386 0.132914 -0.090093 -1.013153 0.452786 -0.169478 -0.017747 -0.314718 0.017820 0.635624 0.253353 0.460037 -0.765693 0.660073 0.099185 -0.120634 -0.359039 0.204753 0.116961 -0.328270 -0.144954 0.473203 -0.034693 -0.048324 0.043268 0.355155 0.025032 -0.674332 -0.441368 -0.246217 0.457163 -0.845154 0.158934 -0.103994 -0.165662 -0.106311 0.292624 0.396565 0.383735 0.796846 0.473524 -0.119129 0.335763 -0.982209 0.285611 0.888964 0.380204 -0.526345 0.582780 -0.602316 -0.089085 0.283096 0.476796 0.045011 0.210194 -0.276427 -0.177529 0.165694 0.027252 0.782701 0.121804 0.170137 -0.671043 0.074578 -0.150988 0.077743 1.128209 0.342107 -0.988689 0.377919 0.748815 -0.015518 -0.226112 0.291617 -0.679900 -0.501312 -0.329516 0.294024 0.526091 -0.626906 -0.320780 0.181059 -0.460913 0.522290 -0.068398 -0.506524 0.099612 -0.584290 0.224682 1.016747 0.201420 0.104411 -0.115970 -0.544147 -0.235063 -0.874868 -0.019038 0.371376 -0.231180 -0.080476 -0.503361 -0.297868 0.786924 -0.241879 0.210103 -1.053363 0.173729 0.496072 0.114574 -0.018579 -0.806660 -0.106455 0.012403 -0.041934 0.004504 -0.552164 0.223153 0.519609 -0.469098 0.464331 0.505256 -0.146791 0.145639 0.403368 -0.500075 0.802092 0.088841 0.473423 0.347704 0.312894 -0.437163 0.013992 -0.327877 0.100244 -0.458017 0.350725 -0.705751 -0.192458 0.372456 -0.233154 -0.651314 0.215064 0.634023 0.226654 -0.036405 -0.346964 -0.122406 -0.195131 -0.571351 0.287833 0.337133 -0.420779 -0.542770 0.384988 0.521915 -0.653455 -0.155966 0.146528 0.396703 0.668782 -0.666319 0.417196 0.201557 0.408500 -0.992033 -0.751062 0.188222 -0.308293 -0.323143 0.010380 -1.043937 -0.801837 -0.267602 0.474844 -0.857109 -0.054025 0.220016 0.836193 0.011642 -0.088459 0.469971 -0.087361 0.113850 -0.027218 0.144471 0.037395 0.410020 +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*) = -2.508741 1.286627 -0.723781 -3.330547 6.948963 -1.110690 -0.168775 4.655415 -0.966788 3.654758 -2.606449 1.572919 -0.300005 -4.549481 0.464540 -0.187202 0.420290 2.724400 -1.650807 1.463398 1.949740 -0.066971 1.556056 -1.015260 -1.992729 -3.533905 0.028285 1.723887 1.272129 -0.679378 -0.180150 0.133929 4.695280 -1.120775 3.226489 2.437776 3.132774 3.391063 1.654456 -1.034708 1.274099 1.175986 -1.493572 -3.962653 0.804769 -1.463936 -4.244336 -1.793356 2.206550 -4.226773 0.711506 3.078856 0.301714 -1.072981 -2.451457 2.837873 1.921549 -1.764451 4.086777 1.198496 -3.213806 -2.090350 -3.078905 4.030497 -2.731594 1.573165 -0.676078 -3.660161 -1.703787 2.926273 0.356524 -2.287823 -2.567364 0.929431 1.771350 -3.120384 1.322449 -1.265263 1.343272 -2.897085 -1.563375 1.936162 -1.624321 2.982517 0.396540 1.612984 -0.202446 0.949634 -0.321036 -4.171108 -0.103491 3.313457 -2.101478 0.001594 -3.297358 1.996338 0.092870 -1.171366 -1.924925 -2.622713 1.271834 0.132920 1.763946 -2.243400 0.760754 -2.847111 0.666598 1.581918 0.953183 2.319782 -0.102377 0.990706 0.999113 2.766261 -1.320738 1.230852 -5.592351 1.636041 -1.688351 1.057668 -2.196021 1.087827 3.096054 2.091021 2.809352 -4.644122 4.147393 0.989163 -1.429784 -2.819022 1.538440 0.332520 -1.251058 -0.503193 2.560419 -1.205353 -0.371170 -0.551696 2.240579 0.024154 -3.081413 -1.569134 -0.681391 1.974830 -4.284290 1.362155 -0.644678 -1.312695 0.138373 1.801472 2.493046 1.905182 5.228373 2.731373 -0.830054 2.710062 -4.557692 1.315270 5.085106 2.110510 -2.907309 3.450423 -2.893594 -0.537047 1.083704 2.473071 1.432527 1.982499 -2.414396 -1.809485 1.274924 0.557621 4.595239 1.038687 1.100531 -4.301583 1.236065 -1.360713 1.048492 5.419271 2.900373 -4.652378 1.749053 3.167732 -1.586313 -1.642308 1.269370 -2.948990 -1.536409 -1.366960 1.227098 2.738587 -2.717453 -3.175116 -0.154741 -2.826235 3.224361 -0.849779 -2.195174 0.848035 -3.327250 0.003882 4.372928 0.730861 -1.082779 -1.563152 -3.169310 -1.914176 -4.754660 0.890687 1.807610 -1.463467 -0.730619 -2.985556 -1.509790 3.114777 -0.308377 0.668386 -6.064893 0.256860 2.927542 0.883591 1.322371 -3.280449 -0.174474 -0.112910 -0.637962 0.922112 -2.158209 1.450194 3.471284 -2.879152 2.803121 0.400556 -1.482042 1.082338 2.788340 -3.320501 5.388129 0.639077 3.798324 0.797462 1.674475 -1.671588 1.168414 -1.053116 -1.144170 -0.594434 1.924896 -3.441792 -1.877272 1.538714 -1.505435 -3.359860 0.689312 3.226349 0.102029 0.650960 -0.741815 -1.239783 -1.312255 -2.311030 1.162021 2.496440 -2.072289 -3.169472 1.714818 2.948487 -1.832387 -1.436331 0.803111 2.474933 3.691258 -4.099691 2.294089 0.147705 1.379985 -4.965241 -3.893088 1.641926 -1.857646 -1.312901 0.745892 -4.893151 -2.889924 -2.082564 2.521315 -3.550908 -0.138597 1.358745 4.260053 0.577985 -0.813515 2.415321 -0.753071 1.594511 -0.208469 0.438477 0.926597 2.608139 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -5.447454 5.873529 1.781322 -3.640886 14.081636 -3.151844 1.371701 6.906420 -6.762181 9.872865 -2.895795 -0.924158 -1.880363 -12.320225 0.668930 -4.697269 -2.512612 5.134506 1.091888 6.547217 3.705864 -5.811369 0.093981 0.154824 -4.150538 -7.972402 -1.391582 3.294553 11.143746 -9.669159 1.047713 -0.407948 12.139589 -2.763358 10.875668 7.785793 3.082521 4.632527 3.938200 -8.498612 -4.684525 4.219253 -6.624504 -4.573483 -1.260987 -1.248075 -7.435323 -1.478222 3.488467 -0.282674 -2.904933 8.443142 -3.175249 1.366880 -4.975084 8.393781 1.229832 -0.671439 10.410698 0.290180 -1.419525 -3.019222 -11.343134 11.264576 -2.497361 -0.040644 -5.251114 -4.975331 3.921909 -1.965620 -3.972837 -6.768463 -0.074376 11.557103 5.980960 -8.778346 0.504886 -5.106428 -13.156065 -10.088419 -9.008257 3.603502 -1.274788 7.137379 2.016059 3.995521 2.096904 6.807704 -4.368407 -14.610229 3.744150 10.740721 -5.736670 -4.407094 -4.723748 8.652924 1.269615 3.169834 -4.474307 -4.221062 3.067664 -1.976846 4.657598 -11.619741 7.918651 -10.733781 -1.759669 -3.257270 2.434478 5.240892 7.478896 1.853866 7.068159 11.760600 -8.942361 -4.038474 -9.843889 2.070725 -3.651275 2.954043 -2.639447 5.495420 0.428166 4.475737 9.983845 -16.419720 1.264015 -0.842808 -0.333686 -12.179596 -1.191194 -5.805560 -2.162766 -3.535412 4.300418 -1.161318 -1.189535 -5.031635 2.088420 3.767300 -6.536082 -3.054058 4.856191 11.933139 -11.733164 2.628663 -1.646877 -1.864129 -2.515644 5.935486 9.430279 9.014978 11.405027 8.068696 0.330683 6.396119 -11.695275 -1.285056 7.893852 0.343952 -7.552221 11.239214 -9.545911 -4.434221 0.111465 10.519967 7.788518 1.144832 -9.973781 -8.231150 10.750813 3.893087 9.907067 -3.529038 -0.730450 0.000870 9.078258 1.345199 -9.205103 11.992131 3.355849 -7.976882 5.800489 1.750213 -5.250260 -3.410878 8.002108 -10.045467 1.308951 -3.598981 -0.439767 5.013416 -3.040847 -0.323380 1.209575 -7.649858 10.250687 -2.188743 -2.760223 4.875730 -5.452342 -9.148961 9.700469 0.199235 -2.988783 -8.605016 -9.461199 -7.711529 -5.333880 3.124237 0.652264 -2.687318 -5.175656 -8.912326 -1.154186 7.947038 3.320617 7.984373 -14.093690 -3.003002 3.935739 5.470328 6.836157 -2.519005 -0.614945 -0.738446 -0.385921 1.800315 -2.291671 8.873451 13.333175 -5.018816 7.132238 -3.060539 -5.940238 3.169610 3.638533 -12.758755 10.848486 2.998421 8.095185 0.002103 2.325559 -4.817232 1.182313 3.553579 -0.530798 2.120864 -0.306882 0.120413 -3.420026 -2.229434 -8.370938 -7.615197 -3.708297 1.450781 -2.163024 3.510716 -2.357565 -4.626499 -3.522978 -6.343599 1.955601 6.092725 -0.296582 -0.092186 7.970610 -0.652559 3.723561 4.781435 0.150473 2.794962 4.075503 -10.412794 -1.846176 -2.661041 5.597805 -5.361215 -12.963006 -0.524262 -6.522110 -3.856013 3.115854 -11.256094 -0.177776 -6.687366 -2.347901 -12.562778 -0.997087 3.680916 12.672298 3.415863 -5.747251 3.407641 -4.331838 5.898851 0.306341 0.675502 2.374147 4.896753 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -6.332924 0.578695 -4.461920 -8.394519 16.595673 -3.357983 -2.446603 9.442129 1.739028 8.620714 -5.114388 -1.026876 -2.086102 -12.386951 1.134539 -0.296038 1.269600 6.618990 -4.852931 4.186714 5.048938 -1.247700 4.810537 -1.555363 -4.589194 -5.390717 -0.858196 5.191773 2.473476 -3.972048 -0.137493 0.635538 11.938009 -1.918625 8.377275 4.936056 6.906252 9.531817 3.312448 -2.662997 3.212109 2.867955 -3.460934 -10.099597 3.338408 -3.190636 -11.297471 -5.048601 5.948542 -9.556751 2.821046 9.126738 0.367421 -2.946948 -6.816952 5.650680 4.261884 -2.297794 10.325818 2.780240 -7.415144 -3.921224 -8.048161 6.692380 -6.726356 3.694422 -1.794358 -8.568067 -4.802671 7.341424 0.721705 -6.909771 -6.950082 2.683719 6.068453 -6.937391 4.000627 -2.785651 5.553631 -7.620954 -5.321145 4.458283 -4.075874 6.904339 0.383828 4.896653 1.155518 2.238876 -1.724914 -10.629892 1.640014 7.297712 -5.500628 0.370424 -5.792393 5.417809 -1.616913 -3.512934 -7.440053 -5.820068 2.541054 -1.149357 4.858150 -2.268458 2.608932 -6.639224 2.751819 3.457591 3.326984 4.591218 3.774762 0.978383 2.282411 6.879429 -4.481565 2.950708 -13.270936 2.745243 -3.753299 3.219621 -5.124947 3.199061 8.083279 4.439140 6.088718 -12.467749 10.002954 2.200748 -3.326047 -6.784172 3.476895 0.981450 -2.447083 -1.243115 7.372281 -4.257360 -1.224965 -0.699941 5.101244 0.858866 -7.590247 -1.061762 -1.461981 4.694666 -8.167460 4.176741 -1.466509 -5.004906 1.087548 3.516478 6.472317 4.282196 14.164373 6.413978 -3.598026 5.028318 -10.541727 3.975091 12.466693 2.170179 -7.889380 9.205419 -6.974078 -0.545548 1.162415 7.323395 5.405648 3.269502 -3.637096 -2.360311 3.320103 2.791898 11.033118 -0.946864 3.268518 -10.897049 1.263457 -0.952888 4.356241 15.252811 5.436630 -11.157054 3.022923 8.215500 -4.635459 -3.884520 3.394294 -5.929320 -3.139775 -3.750336 5.430895 6.812341 -7.051951 -7.480095 0.061068 -7.444680 6.842940 -2.970897 -6.541599 3.101105 -9.935247 1.015095 12.022891 1.294210 -2.490320 -3.275707 -9.406381 -0.961638 -11.631502 2.599403 4.502758 -2.175250 -0.992570 -5.947599 -3.540271 9.090095 0.547330 2.474499 -14.268888 1.736142 6.923810 1.043815 3.687086 -5.644750 -0.491780 1.678029 -1.368447 1.677632 -4.025751 1.500644 7.548457 -8.256307 5.865369 0.642856 -2.536764 3.619491 5.990450 -7.989535 14.412541 2.238049 10.277222 0.398848 4.408462 -3.111744 3.770081 -1.646330 -2.276812 -1.764834 3.844363 -7.659140 -5.202778 4.215309 -2.164724 -9.642436 0.876458 8.309588 -0.417036 2.957928 -2.761015 -1.937119 -3.189237 -3.472215 4.743807 6.001849 -3.452739 -6.172046 4.086138 8.021493 -2.832597 -1.245212 2.622895 5.547687 10.387285 -10.925897 5.508600 0.094517 4.089296 -9.470462 -8.057652 3.954284 -3.952102 0.281755 2.738600 -12.103803 -6.824551 -5.446092 6.884898 -5.132634 2.815560 2.078248 11.133106 4.819274 -3.730088 6.744464 -1.725725 2.621305 -0.518309 -0.620327 4.183185 6.608203 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.531429 1.592779 -0.177600 -3.755394 6.842912 -1.376624 -0.176379 4.231919 -0.710671 3.654572 -2.762899 1.266685 -0.351645 -5.125755 0.580935 -1.224371 0.338602 2.950762 -1.269077 2.398532 2.054691 -0.570901 1.469886 -1.159141 -2.063382 -3.566254 -0.007124 1.889202 1.184996 -0.730454 0.694677 0.275996 4.816374 -0.820657 3.713008 2.909387 2.559487 3.783262 1.818867 -0.878204 1.176178 1.158662 -1.405969 -4.336735 0.755069 -1.122741 -4.330977 -2.212947 2.071428 -4.278158 0.538298 3.369433 0.207502 -1.188968 -3.189601 2.624128 1.947011 -1.067107 4.123831 1.262081 -3.121564 -1.737148 -3.476545 3.328722 -2.825149 1.223864 -0.407095 -3.406008 -0.885972 2.966193 0.219860 -2.042461 -2.680910 1.052386 2.091914 -3.324910 1.397348 -1.513861 -0.120314 -2.581034 -1.294245 2.142747 -1.439756 3.256094 0.463816 1.904212 -0.143820 1.145471 -0.430858 -4.315908 -0.075819 3.363373 -1.973167 -0.466104 -3.166546 3.109665 0.698898 -1.389209 -2.004862 -2.426566 1.508790 -0.251749 1.990116 -1.928345 -0.091839 -3.342932 0.908494 1.705348 0.722830 2.595405 0.041967 1.486242 1.357779 2.779615 -1.980793 1.679206 -5.723708 1.466345 -2.043647 0.999238 -2.291406 1.241725 2.658887 2.411460 2.776988 -4.713813 4.342057 1.271814 -1.103151 -2.884381 1.685350 0.370810 -1.152321 -0.736109 2.638061 -1.058203 -0.269315 -0.367339 1.866806 0.219075 -2.451701 -1.508815 -0.420523 2.435219 -3.570860 1.574996 -0.643316 -1.428872 0.178235 1.581982 2.623976 2.019020 5.345250 2.787667 -0.762882 2.278975 -4.628346 1.109649 5.320933 1.658641 -2.929852 3.816346 -2.416932 -0.784352 0.745989 2.682699 1.833112 1.799066 -2.931448 -2.591186 1.060806 0.378563 4.416092 1.162140 0.628688 -4.375317 1.873212 -1.147762 0.881075 5.569680 2.749451 -4.307924 1.221939 3.467106 -2.681132 -2.134574 1.399262 -2.619578 -1.005565 -1.294320 1.363247 2.617616 -2.661453 -3.445171 -0.618378 -2.950538 3.057851 -0.985017 -2.039962 0.355770 -3.173752 -0.788517 4.765495 0.561694 -1.228185 -1.577914 -3.396112 -1.562913 -4.939778 0.854858 1.754723 -1.438189 -0.664822 -2.923673 -1.480981 2.945764 -0.549729 0.638498 -5.514114 -0.170620 3.031791 1.043926 1.085276 -3.070989 -0.182409 0.047576 -0.428593 0.840795 -1.632445 1.708447 3.917735 -2.716210 2.808674 0.498569 -1.581775 1.556722 3.162195 -3.779976 5.851037 0.399345 4.019551 0.868332 1.564928 -1.547732 0.975875 -0.711032 -1.625644 -0.491083 1.884876 -3.376542 -1.912105 1.649415 -1.357382 -3.364120 0.726929 3.444751 -0.039246 0.806907 -0.128007 -1.395739 -1.502532 -2.328896 1.395312 2.485145 -1.777658 -2.934742 1.933561 3.435614 -1.382551 -1.559780 0.684163 2.554062 3.769401 -4.434562 2.663439 -0.023095 1.279019 -4.650664 -3.929293 2.154165 -2.297277 -1.259392 0.529582 -5.028786 -2.861154 -2.161116 2.631148 -3.133434 -0.062921 1.499622 4.448596 0.894341 -1.021159 2.188884 -1.186715 1.578380 -0.288413 0.356848 0.895186 3.098175 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +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&) = -2.946535 1.025598 -1.310943 -3.259362 8.485349 -2.098583 0.127596 5.696462 -2.559061 4.293913 -2.622130 2.533300 -0.472742 -5.787818 0.921896 0.754568 1.228878 3.228240 -1.029224 2.149333 2.194671 -0.549747 1.394685 -0.871617 -2.096745 -4.054274 0.208457 2.178792 2.134354 -1.766549 -0.320255 0.988460 6.099442 -1.047501 4.337336 3.415421 3.317347 3.939891 2.934083 -3.294208 1.199659 1.484712 -1.785401 -4.576752 0.920081 -1.252083 -4.807648 -2.127123 2.503404 -3.817996 0.589814 3.849917 0.025593 -0.620365 -3.774831 2.963997 2.487047 -2.640779 4.935370 1.363176 -3.719337 -2.661781 -2.969364 5.162421 -2.932429 0.357209 -0.927150 -3.900497 -0.669801 3.194637 0.805469 -3.640988 -2.801082 1.471423 1.799046 -3.820603 1.621638 -0.949542 1.805958 -4.691381 -2.580642 2.093198 -2.311120 3.855861 0.359174 1.756961 -0.945991 0.930455 -0.315203 -5.026051 0.189324 3.719382 -2.830429 -0.097104 -3.829862 3.419942 0.564881 -1.261726 -2.222622 -3.571425 1.331417 -0.827037 2.207336 -2.268141 1.911629 -2.802196 -0.060243 0.239064 1.644344 3.831393 0.609829 1.454297 1.738287 3.048867 -1.377465 0.506210 -6.543436 2.386865 -1.805184 0.928945 -2.557200 1.462995 3.930216 2.076037 3.550530 -5.960342 4.040157 1.071647 -0.576826 -3.590920 1.473600 0.242369 -1.530903 -0.958534 3.468444 -1.444925 -0.358508 -0.630554 2.595561 0.773897 -4.027285 -1.914551 -0.757396 3.777693 -5.711771 1.614241 -0.874144 -1.699524 0.140121 1.752997 2.955928 3.040794 5.983465 3.515833 -1.348751 4.071423 -6.070580 1.468933 6.053487 2.728694 -3.432279 4.404069 -3.657244 -0.983847 1.337930 3.530169 2.469032 0.670774 -2.938316 -2.086778 3.146590 1.131138 5.404004 0.203653 1.332958 -4.591952 1.445389 -0.502797 0.873610 6.557438 1.920082 -5.762253 3.090095 3.864222 -1.087779 -1.347741 1.648892 -3.951140 -2.231587 -2.015293 1.866284 3.577913 -3.504788 -2.665086 -0.118432 -3.210379 3.472083 -1.158821 -2.888669 1.340489 -3.696501 0.343930 5.591159 0.899185 -0.445493 -2.088360 -4.387839 -1.852967 -5.631069 0.956209 1.442116 -1.382985 -0.425046 -3.741278 -2.279638 4.200739 0.079980 1.304351 -8.147647 0.944313 3.423529 1.610247 0.787528 -4.371661 -0.364727 0.755340 -0.355405 0.590742 -2.784583 2.058584 3.980325 -3.695689 2.795523 0.739173 -0.476961 2.006393 2.652371 -4.609592 6.282230 0.935624 5.829179 1.122699 1.773271 -2.241175 0.981763 -1.216552 -0.375990 -1.318181 1.649507 -3.882448 -2.081121 2.385098 -1.265658 -4.737131 0.232625 3.734044 0.102064 0.933591 -1.542597 -1.024935 -1.587879 -3.148360 2.203418 2.891939 -2.694484 -3.219375 2.683116 3.554094 -1.851065 -0.565914 0.705893 3.008909 4.086156 -5.131007 2.255291 -0.080433 2.629465 -4.876485 -5.578446 2.579442 -1.878479 -1.534871 1.411908 -6.433835 -3.498848 -2.575632 2.640222 -5.275868 0.548474 1.147264 5.351855 0.299398 -0.964085 2.656573 -1.001075 1.154942 -0.893955 1.107590 0.909733 3.042808 +PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -6.372800 5.284312 3.098748 -3.821924 10.276507 -1.692388 2.399428 3.755397 -7.631900 9.707156 -3.458564 -0.712506 -3.014737 -10.221631 0.531438 -4.722041 -1.869148 2.881245 1.527045 7.272637 4.967795 -7.348629 -0.034880 -0.425234 -3.940020 -5.812017 -0.757609 3.077085 11.711420 -7.889964 1.018369 -0.010506 9.880847 -1.998244 11.723719 8.873353 2.025192 6.767219 1.993164 -8.318510 -6.008279 6.023317 -7.105935 -6.635712 -0.063770 -2.128112 -5.773795 -3.270576 4.288155 0.367809 -2.177687 9.450360 -3.645079 1.247072 -6.625125 7.254781 2.197738 0.487974 12.109066 0.735225 -0.968421 -1.896819 -10.517140 7.263791 -2.741952 0.154424 -4.313647 -4.779071 5.249136 -3.034244 -4.538913 -6.092365 -0.487350 11.281537 4.592166 -9.437431 1.066959 -5.345114 -12.738308 -9.410753 -8.671696 2.803629 0.922379 8.386772 1.170052 3.636540 1.845407 7.226764 -4.062107 -15.071653 3.931972 9.628865 -5.988031 -3.820075 -2.077407 10.349046 0.186647 3.339975 -6.224688 -0.976412 3.511725 -1.739648 5.310230 -10.941408 5.986511 -10.112743 -0.587941 -3.634733 2.095623 3.064852 8.457048 2.000745 8.294170 11.813434 -7.479490 -0.525646 -8.795992 1.693262 -1.952661 2.972363 -1.687852 6.666802 0.091974 1.534626 10.840742 -14.357198 1.275681 -0.544100 -0.284464 -13.049277 -0.453247 -6.705454 -2.981169 -4.500675 5.638401 -0.696499 -1.610270 -5.645364 2.012665 3.300644 -5.238671 -2.091415 4.960089 10.587992 -9.097981 2.356966 -2.617161 -3.227882 -2.368146 5.984641 8.442545 9.699365 12.270121 9.406987 -0.261653 5.609227 -9.728845 -1.446645 7.828732 1.199825 -8.856795 10.713562 -9.313549 -4.022761 1.228044 8.268377 9.535455 2.165500 -9.913007 -7.701782 10.634416 3.627788 10.731781 -2.646707 1.499230 1.519154 9.613035 0.841568 -9.057252 9.960289 2.492627 -9.098829 6.228171 1.703079 -4.104780 -2.851857 8.479316 -9.147790 1.864769 -3.708077 -0.437764 5.241566 -4.628809 -0.840847 0.419334 -8.864564 11.156308 -2.301595 1.322703 5.414559 -7.287810 -7.908393 7.968432 0.407725 -3.727273 -9.168259 -7.291388 -8.408278 -6.284661 4.032762 0.436361 -2.302754 -6.586806 -9.973595 -0.841815 5.976734 3.611328 7.429977 -9.437862 -3.277258 4.607722 5.254317 7.114500 -0.264226 -1.683241 0.435492 0.070927 3.709230 -1.711901 9.667773 13.524290 -6.010394 6.196915 -2.531871 -3.856183 4.164662 4.400311 -13.298429 11.773702 2.393731 6.870985 -0.811388 2.853668 -5.694961 0.685554 4.180317 -0.127936 2.548274 -0.175266 0.303048 -3.217213 -2.580256 -8.459626 -4.791518 -3.538010 1.294605 -2.355337 4.039352 0.422073 -4.297362 -4.230179 -7.728505 1.870319 7.506864 -0.551842 -1.082981 7.694601 -1.445985 4.435332 4.747502 0.678678 2.578339 5.207792 -11.271300 -2.494126 -3.365591 2.636631 -4.745316 -11.109918 -0.461369 -6.115172 -3.354478 5.591985 -8.862756 3.156789 -7.466442 -1.953927 -11.423407 -1.015479 1.636391 12.743483 4.423013 -5.237741 3.931970 -4.160769 7.071827 0.446790 0.041795 1.841966 6.050563 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -2.565954 1.174718 0.794845 -1.647461 4.541211 -0.908710 0.241978 1.548760 -1.065264 3.464559 -1.606101 -1.347169 -1.530490 -3.904923 0.413779 -1.534780 -0.267279 1.865238 -0.265122 2.072942 2.167291 -1.839491 0.308956 -0.432762 -1.164355 -2.027261 -0.896564 1.243303 3.219307 -2.451696 -0.193645 0.349021 4.264721 -0.557546 4.325896 3.248812 1.298204 3.274773 0.339849 -1.900094 -1.251001 2.480238 -2.474581 -3.251286 0.796253 -1.182624 -2.516955 -1.872437 1.933284 -0.677043 0.364364 3.505146 -1.067391 0.143734 -2.362690 2.257111 1.039438 0.932406 4.413683 0.727266 -0.821065 0.298176 -4.069146 2.439403 -1.759661 1.126165 -1.494945 -2.833340 0.532956 -0.448370 -0.096007 -2.546367 -1.297009 3.392236 1.757223 -2.983400 0.891616 -1.573228 -2.473075 -3.374541 -3.860275 0.951062 -0.683286 3.142774 -0.050684 1.098316 0.266118 2.053646 -0.913009 -5.026938 0.891229 3.469197 -2.070748 -0.479335 -1.076664 2.544095 0.114157 0.740504 -2.336637 -0.795496 1.190791 -0.721382 2.065059 -1.692994 1.897215 -2.876046 0.458421 -0.414315 0.956282 1.056284 2.870590 0.553474 2.621783 3.695322 -2.361676 0.136606 -3.434297 0.952343 -1.201801 1.118906 -0.589886 2.524193 0.708696 0.391354 3.598751 -5.067223 1.161423 -0.049846 -0.647159 -3.688379 0.469209 -1.936464 -1.448013 -1.671206 2.563833 -0.252882 -0.939541 -1.659371 0.906110 0.833353 -1.952732 -0.321978 0.802067 2.665218 -2.669072 0.841837 -1.203827 -1.976849 -0.449718 1.940391 2.690702 3.443426 4.585184 3.706414 -0.741926 0.527849 -3.985710 0.097571 3.438336 -0.502156 -3.357349 3.554972 -2.600275 -0.833159 0.977986 3.100232 3.135498 1.087868 -2.152805 -1.931343 1.632901 1.157108 4.069768 0.098585 0.790298 -0.659189 2.253082 0.111283 -2.481205 4.518287 1.143800 -3.427380 1.425285 1.251015 -2.012213 -1.733661 2.324151 -2.720038 0.343874 -1.872914 0.726488 2.217047 -2.261045 -0.994245 0.573243 -3.385123 3.765896 -0.967090 -0.285344 1.971410 -3.477630 -2.638364 3.835136 0.184153 -1.237275 -2.979268 -3.036337 -1.683659 -2.979474 1.664616 0.242380 -0.658970 -2.250139 -3.388115 -0.159210 2.991250 0.992480 2.319939 -3.062023 -0.891497 1.779435 1.010262 2.595860 -1.095517 -0.805739 0.175635 -0.305998 1.342627 -0.506677 2.208119 4.881440 -2.719003 1.585018 0.358983 -1.527190 1.142797 2.050938 -4.457397 4.479362 0.523408 2.133219 -0.405171 1.303256 -1.773949 0.301702 1.237418 0.290477 0.379483 0.660752 -0.498686 -1.203741 -0.308439 -3.121364 -1.913905 -0.727374 1.067201 -0.355975 1.446665 -0.234753 -2.087485 -1.013521 -1.851211 0.750027 3.027725 -0.056775 -1.126321 2.431047 -0.042922 0.482816 0.571953 0.496077 0.779287 2.690741 -4.241678 -0.128619 -0.766148 0.959573 -2.019061 -3.477997 -0.260652 -2.385121 -0.958662 2.398719 -3.317536 0.106036 -2.734539 0.176290 -2.875751 -0.266687 0.423370 4.455663 2.359319 -1.660201 1.901115 -1.108435 2.566893 0.167269 -0.810389 0.844497 2.683523 +PE-benchmarks/n-queen-problem.cpp__main = -0.682495 0.173293 -0.073618 -0.362845 1.215438 -0.395198 -0.111209 0.693921 -0.032391 0.921163 -0.383087 -0.315581 -0.352915 -0.950558 0.134021 -0.052209 0.051537 0.643493 -0.128651 0.331371 0.582603 -0.266615 0.070045 -0.104076 -0.275142 -0.511922 -0.176945 0.319511 0.680084 -0.647644 -0.338280 0.199778 1.203243 -0.144328 1.188233 0.863063 0.491644 0.823372 0.255778 -0.347391 -0.228856 0.635601 -0.604635 -0.866595 0.245631 -0.302048 -0.572401 -0.427518 0.544756 -0.176013 0.526022 0.850393 -0.253131 0.094308 -0.556153 0.538617 0.119055 0.259777 1.148257 0.221445 -0.362503 0.087905 -0.936410 0.951254 -0.577734 0.322035 -0.378509 -0.840315 0.005877 -0.031452 0.191318 -0.750036 -0.356736 0.814616 0.302755 -0.748693 0.309997 -0.302356 0.039002 -0.851179 -1.106955 0.265451 -0.322644 0.760416 -0.049379 0.261995 -0.257278 0.478761 -0.183744 -1.247276 0.236516 0.775621 -0.661777 0.101065 -0.252321 0.458258 0.060008 0.157834 -0.425237 -0.315047 0.295074 -0.229775 0.534986 -0.166176 0.694581 -0.503878 0.204900 -0.103962 0.313081 0.311492 0.719142 0.174565 0.684591 0.910601 -0.254338 -0.118008 -0.974478 0.358713 -0.297860 0.243690 -0.119924 0.627946 0.378105 0.050590 0.923478 -1.274324 0.312267 -0.013265 -0.108419 -0.817378 0.173766 -0.458819 -0.387704 -0.487839 0.755408 -0.075548 -0.289544 -0.422918 0.327401 0.204805 -0.703190 -0.104704 0.045208 0.491295 -0.688776 0.207064 -0.346549 -0.554453 -0.071131 0.473384 0.626366 0.920143 1.146001 0.963729 -0.243123 -0.058747 -1.115728 0.050481 0.847345 -0.189449 -0.866134 0.909715 -0.706890 -0.215656 0.354704 0.866168 0.727652 0.283542 -0.314088 -0.342158 0.302775 0.348414 1.071788 -0.044368 0.259092 -0.151085 0.328313 0.048047 -0.608015 1.340313 0.218520 -0.989706 0.319758 0.356435 -0.313555 -0.400109 0.536282 -0.704326 0.037289 -0.578159 0.273682 0.663871 -0.704828 -0.228597 0.315111 -0.865305 0.942999 -0.240755 -0.173877 0.554651 -1.058063 -0.254377 1.141372 0.163197 -0.247196 -0.719544 -0.848423 -0.361872 -0.820657 0.388516 0.058861 -0.087237 -0.457534 -0.855942 -0.110514 0.880917 0.283925 0.560194 -0.876583 -0.143848 0.504075 0.074816 0.523407 -0.405674 -0.223143 0.048856 -0.092988 0.353365 -0.225011 0.447358 1.207254 -0.733800 0.352153 0.443523 -0.237553 0.234706 0.504365 -1.160512 1.140779 0.093421 0.285325 0.001965 0.333974 -0.535741 0.061271 0.183188 0.264661 -0.022072 0.183568 -0.188371 -0.306764 -0.036845 -0.802142 -0.495219 -0.202272 0.333586 0.006622 0.359274 -0.244949 -0.540993 -0.256187 -0.550550 0.238221 0.785549 -0.009561 -0.352302 0.680757 -0.000325 -0.075281 0.082315 0.149561 0.178111 0.782555 -1.096637 -0.012267 -0.060143 0.348361 -0.578494 -0.837171 -0.152999 -0.479793 -0.193077 0.524468 -0.943900 -0.186102 -0.648850 0.118805 -0.779657 0.051487 0.070662 1.169796 0.606507 -0.413834 0.562484 -0.249505 0.595170 0.119508 -0.245225 0.145623 0.732240 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -6.695040 8.103671 4.026196 -4.708430 12.870407 0.573643 -0.497450 4.218436 -6.223370 12.142894 -4.865356 -0.632480 -3.099133 -11.696200 -0.142009 -7.335413 -3.533782 2.867493 1.071429 7.527485 4.615661 -8.248751 0.422762 0.060930 -5.063560 -10.818562 -1.736118 3.693700 13.380287 -8.958924 1.246537 -1.176758 12.154442 -2.929998 11.002870 9.033261 4.364218 7.849104 2.605898 -6.681477 -6.134720 5.730106 -8.175550 -4.742171 0.000567 -3.218066 -7.557584 -2.174085 4.606585 0.612132 -3.014109 10.340265 -4.025247 0.683404 -7.738150 9.454395 1.923998 0.849983 14.306404 0.061670 0.105247 -4.302743 -13.435310 9.215260 -4.292852 0.396882 -5.355161 -4.501076 5.310950 -3.314000 -3.892018 -5.787250 -1.274027 13.219887 6.023320 -10.919394 0.213919 -6.884398 -18.127707 -10.581358 -9.266953 3.719284 1.137622 8.689786 2.104942 4.662399 3.275367 8.947202 -5.361593 -17.148392 4.473956 12.021135 -5.581018 -4.039132 -4.825472 12.318149 0.776601 3.330336 -6.322837 -0.623799 3.690016 -1.458497 5.668672 -14.629978 6.504068 -14.269506 0.923930 -3.618875 1.876126 1.850865 7.084840 1.333518 9.063414 14.016471 -11.248305 -1.885509 -11.332141 0.559306 -0.342264 3.090572 -2.537905 7.121928 -3.021852 3.630000 12.466118 -17.688286 2.180987 -1.624184 -2.451490 -14.797984 -1.425474 -6.798597 -2.673962 -3.934330 4.934426 -0.946132 -1.564907 -6.461907 2.227231 3.318862 -6.628599 -4.102799 6.944634 13.983585 -10.128848 2.983119 -2.160139 -3.076838 -2.887446 6.946669 10.532137 10.260073 14.912165 9.831618 1.377781 7.479563 -11.347692 -2.073897 8.972666 3.339269 -9.995776 12.590709 -10.229536 -4.771871 0.440202 10.472941 9.704400 3.498737 -11.760793 -11.028671 9.206547 4.181312 11.889490 -1.640207 0.219360 2.622323 12.337689 0.322608 -10.142304 11.580298 4.334984 -7.452070 5.117514 1.621393 -6.677938 -3.756875 9.952196 -10.046836 2.849603 -3.239023 -1.083710 5.903998 -3.431754 -0.963398 -0.114529 -9.454969 13.133227 -2.706997 1.693246 6.757748 -7.702587 -13.136986 7.559757 -2.203273 -4.187014 -9.991443 -8.466677 -9.023467 -6.477626 3.960973 1.280821 -4.502832 -7.063977 -11.210214 -0.306203 7.194619 4.020389 8.514275 -13.653267 -6.048945 5.146187 5.760986 8.815818 -0.071786 -0.900842 -0.210614 0.413632 3.897917 -2.105584 11.936557 16.310263 -5.896476 7.660153 -6.971162 -5.513698 4.137632 5.541071 -14.764256 13.179780 3.031670 6.491733 -0.817823 2.689237 -4.946633 1.459021 5.025747 -1.292482 3.806967 -0.603527 0.431872 -4.024018 -3.281294 -10.131043 -5.320954 -4.048738 1.395367 -3.444778 4.507823 0.900034 -4.240850 -4.735440 -7.178083 1.509809 7.367155 0.677827 0.584374 8.935702 -1.709917 5.225572 6.143552 0.343250 3.127013 4.922882 -12.169248 -2.930706 -3.815562 2.979986 -5.790084 -13.889644 -1.969290 -6.726945 -4.676324 5.871405 -12.027976 2.238848 -8.235610 -2.697111 -11.503400 -1.640877 3.620790 14.370911 5.986710 -6.863143 3.834638 -5.098798 7.829847 0.121796 -0.413039 3.392060 6.625015 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/shortest-common-supersequence.cpp__main = -2.490665 2.010164 1.142152 -1.890037 4.399578 -0.023295 -0.550448 1.921708 -0.166488 3.562819 -2.458795 -1.300153 -1.226101 -3.179956 -0.057330 -2.016943 -1.131777 1.685470 -0.935690 1.507852 1.982223 -1.125316 0.249840 -0.759743 -1.365581 -2.004219 -1.424163 0.903984 2.012637 -1.833198 0.343862 -0.165998 3.990893 -0.507930 3.363523 2.834266 1.361673 3.640312 -0.284062 1.463557 -0.786492 2.253287 -2.390287 -2.426614 0.912340 -1.779368 -2.253671 -1.232689 1.482796 -1.462093 1.760464 3.058621 -0.653018 -0.103360 -1.678139 2.475733 0.686625 0.932524 4.331128 0.813234 -1.570523 0.624471 -4.447180 2.765222 -1.839315 2.537169 -0.680726 -2.899146 -0.126370 -0.423557 1.408140 -2.802485 -2.023353 3.058012 0.918660 -2.758552 0.837436 -1.926811 -3.207483 -2.590428 -3.148973 1.130348 0.255674 2.380037 -0.121316 0.807413 -0.312000 2.032755 -1.024661 -4.663381 0.226883 3.590005 -1.934184 0.388229 -2.588338 1.612169 -0.401359 0.940945 -2.069641 -0.250594 1.306485 0.452813 1.585397 -2.134065 0.578741 -3.500929 1.588033 0.630839 0.035002 -0.180232 1.831786 0.865538 2.363690 3.664371 -2.406649 0.766126 -3.601027 0.569327 -0.378382 1.118412 -0.531371 1.767941 -0.351959 0.504858 3.338917 -4.426283 1.602731 -0.467732 -2.040216 -3.735932 0.389958 -1.955089 -1.707254 -1.283266 1.842508 0.366036 -0.852469 -1.630345 0.550308 0.049481 -1.846205 -1.704631 1.012685 2.413728 -2.004094 0.431237 -0.954704 -1.356295 -0.904422 2.345396 2.718466 2.570375 4.692734 2.791486 0.315453 -0.682020 -3.490807 -0.228556 3.345811 1.213722 -3.432907 3.188480 -2.040179 -0.381456 0.941671 2.524709 2.127267 2.044895 -2.198743 -2.480382 0.449533 0.456817 4.022926 1.179496 0.704289 -0.470626 2.510658 -0.741893 -2.464060 4.725051 2.547264 -2.671297 0.041445 0.937875 -1.355432 -1.996479 2.562780 -1.979260 0.051279 -0.720918 0.023886 1.585181 -1.618929 -1.640051 0.746533 -3.425279 4.244620 -0.756934 0.570716 1.663688 -3.899793 -3.800136 2.980249 -0.117627 -1.676690 -2.205723 -2.103804 -1.522463 -2.788291 1.506093 1.340708 -0.834026 -2.546597 -3.097933 0.670102 2.524920 0.116712 1.900307 -2.097860 -2.432461 1.588687 -0.833552 3.076558 -1.735693 -0.729873 -1.049016 0.144357 2.093867 -0.346142 2.145567 5.528463 -1.924893 2.262489 1.381708 -1.030412 -0.118962 2.698535 -3.648763 4.088442 0.066547 0.903230 -0.555026 1.366310 -1.495446 0.104065 1.216259 0.675268 0.763357 0.903184 -0.378083 -0.886169 -1.130545 -3.962464 -0.597060 0.034022 0.557322 -0.600904 1.086584 0.413492 -2.066741 -1.223468 -1.509651 -0.025811 2.837146 0.272013 -1.282463 1.922551 -0.624156 -0.163354 0.979569 0.457207 0.742505 2.607498 -3.680470 -0.090596 -0.397436 -0.158845 -2.965262 -2.877169 -1.207007 -2.411779 -1.961758 1.695958 -2.980140 -0.214246 -2.443666 0.187423 -2.232421 -1.113019 0.712791 4.180152 2.733607 -1.895311 1.743798 -0.973492 3.267235 0.659680 -1.131407 0.903742 2.755853 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.891522 0.673772 -0.171381 -0.710509 1.647103 -0.484543 0.102278 0.924112 -0.192909 1.200138 -0.952069 0.283128 -0.244694 -1.279010 0.025798 -0.075427 0.132413 0.920127 -0.196606 0.379746 0.605486 -0.397817 0.274011 -0.443269 -0.455910 -1.254507 -0.001374 0.346985 0.356060 -0.312899 0.043172 0.198570 1.552070 -0.040410 1.122900 0.971575 0.426784 1.345519 0.718647 0.052696 0.192606 0.572012 -0.449440 -1.322087 0.362093 -0.449190 -0.780220 -0.785906 0.544613 -1.103409 0.916750 0.873008 -0.060166 -0.215015 -1.004867 0.571113 0.880915 -0.155748 1.416380 0.257589 -0.749937 -0.186720 -0.756991 1.225885 -0.918316 0.099576 0.189062 -1.061668 0.044201 0.574434 0.456278 -0.716943 -0.735026 0.461485 0.272307 -0.999643 0.211361 -0.341019 -0.551412 -0.870186 -0.763262 0.327476 -0.226590 0.896580 0.016968 0.306261 -0.504594 0.313884 0.066317 -1.215622 -0.146097 1.131720 -0.502307 0.315792 -0.606975 0.922699 0.321293 -0.290845 -0.485791 -0.462128 0.262099 -0.088092 0.505775 -0.334519 -0.231386 -0.851184 0.490661 0.153790 -0.064155 0.552100 0.371203 0.502260 0.523170 0.763912 -0.513424 0.320321 -1.682296 0.503433 0.119747 0.071867 -0.208395 0.264468 0.263602 0.184629 0.955738 -1.436398 1.007599 0.162233 -0.225297 -1.069801 0.259690 -0.076326 -0.384603 -0.367939 0.768016 -0.055541 -0.090915 -0.250826 0.209801 -0.000496 -0.900707 -0.888715 0.002702 1.238674 -0.979077 0.329697 -0.296222 -0.469609 -0.146581 0.405370 0.542414 0.621587 1.375656 0.941951 -0.081453 0.499952 -1.309649 0.134464 1.419700 0.952950 -1.042572 0.966861 -0.614559 -0.217755 0.478964 0.711605 0.600231 0.274544 -0.838901 -0.745954 0.408627 -0.086912 1.263972 0.339471 0.318630 -0.880398 0.878014 0.283750 -0.138098 1.794138 0.605247 -1.268838 0.489697 0.875423 -0.697246 -0.455388 0.531705 -0.626141 -0.361987 -0.405411 0.305165 0.622401 -0.816109 -0.704512 -0.106738 -1.030599 1.177943 -0.174860 -0.162742 0.343769 -1.179526 -0.288244 1.360515 0.156341 -0.210962 -0.442916 -0.857302 -0.696223 -1.418237 0.221201 0.440429 -0.520915 -0.420191 -0.980193 -0.133813 0.956827 -0.165387 0.362745 -1.187046 -0.337200 0.763594 0.279246 0.188036 -1.155815 -0.249875 0.152806 0.243592 0.437820 -0.195749 0.807524 1.338933 -0.745949 0.633302 0.642587 0.032627 0.520026 0.866573 -1.131205 1.361489 -0.262575 0.751418 0.218074 0.462785 -0.490602 0.074411 -0.044860 0.178016 -0.286862 0.390119 -0.862063 -0.378560 0.344623 -0.784560 -0.613851 0.237483 0.691959 0.331763 0.183077 -0.071154 -0.405603 -0.325702 -0.813361 0.176029 0.765444 -0.085984 -0.828135 0.561929 0.478990 -0.407062 -0.128955 0.172214 0.536829 0.868691 -1.208936 0.505196 -0.056436 0.050032 -1.160130 -1.228859 0.443150 -0.739583 -0.818971 0.478940 -1.599897 -0.538608 -0.636474 0.543838 -1.406087 0.068759 0.038724 1.369729 0.351173 -0.171104 0.745548 -0.300216 0.631995 0.015737 0.068675 0.159624 1.105871 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -4.553212 3.299975 1.878372 -4.550957 9.030425 -1.783162 0.448349 3.224629 -0.102368 6.177681 -4.851927 0.331248 -1.499417 -6.116242 0.186998 -3.474209 -0.724130 4.316149 -1.477717 2.826302 3.306708 -1.625906 1.641536 -2.162261 -2.430851 -6.737988 -1.302330 2.107226 2.021660 -1.577879 2.282924 0.151351 7.185959 -1.121480 5.200479 5.033652 2.788340 6.624050 0.672879 1.697042 1.093264 2.941193 -2.830439 -6.219703 1.889110 -1.997999 -5.344810 -3.945984 3.052798 -6.003178 1.933414 5.252652 -0.668900 -1.845144 -4.131204 4.481495 4.010861 -0.444112 6.830287 1.309166 -3.479746 0.276117 -5.977645 5.318000 -4.408173 2.552095 -0.496359 -5.953331 -0.901164 2.537421 1.483458 -3.131816 -3.885102 3.042693 2.509036 -5.077063 0.964998 -2.845640 -3.717284 -3.915628 -3.533403 1.952545 0.043211 4.307775 0.321811 1.942989 -0.134582 2.303296 -0.228309 -6.598477 -0.661972 6.352684 -2.611788 0.304480 -3.802966 3.433606 1.534821 -1.424603 -2.573273 -2.157780 1.532085 -0.382527 3.069356 -1.665958 -1.542329 -5.275239 1.652512 1.907261 0.162756 1.927005 0.194765 2.227519 2.320459 4.283873 -4.051164 2.907308 -7.696861 2.139303 -0.953315 1.328959 -1.473620 1.950181 1.208246 2.357749 4.942411 -7.034622 5.217097 0.064041 -2.306092 -5.194943 1.473732 -0.603318 -1.855852 -1.722910 3.523112 -0.390167 -0.949860 -1.120015 1.496461 0.030318 -2.446081 -3.508226 0.401904 4.341125 -3.900747 2.035680 -1.543347 -2.436696 -0.525336 2.481726 3.576263 3.479592 7.758894 5.232569 0.032083 2.222203 -6.414332 0.585629 6.803483 3.340119 -5.116772 5.276728 -3.101208 -1.041020 1.936065 3.792067 2.977600 3.258880 -4.507857 -4.150389 0.910884 -0.520675 6.523849 2.859689 0.745112 -5.294243 3.893119 -0.554156 -0.961037 8.750104 4.503935 -6.405743 1.956156 4.353781 -4.646272 -4.197345 2.909273 -3.017809 -1.598026 -1.604532 1.481120 2.991238 -3.427818 -4.414342 -0.271524 -5.423478 5.875889 -1.233979 -1.001729 2.312583 -5.520926 -5.518377 6.210570 0.506939 -2.061751 -3.073512 -4.340727 -2.148958 -6.813076 1.889662 2.515292 -2.459741 -3.042810 -4.988179 0.009845 4.424426 -0.777730 2.495802 -5.465850 -2.535233 3.613408 1.026296 2.554001 -4.946714 -1.011006 -0.590851 0.499873 1.800364 -0.544613 3.062544 7.703747 -4.121763 3.564491 1.517912 -3.254578 1.665443 5.067981 -5.905019 7.594650 -0.222935 3.805269 0.460104 2.353155 -2.527300 0.905270 0.792697 -0.958483 -0.315561 2.159437 -3.774887 -2.307289 1.106545 -4.684613 -2.803277 1.245307 3.518671 0.486647 1.362614 0.803668 -2.941839 -1.790387 -2.770401 0.547865 4.286501 -0.450697 -4.112015 2.845159 2.583817 -2.119109 -2.400952 0.986902 2.700423 4.638259 -6.673385 3.131903 -0.612621 -0.327590 -6.462456 -5.415693 1.953030 -5.074409 -4.080013 1.883119 -6.920905 -2.245404 -3.906486 2.515595 -4.604583 -1.756518 1.084844 6.844355 2.960142 -1.366613 4.060231 -1.935192 3.880265 0.078230 -0.643717 1.382861 5.303724 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -4.638085 1.778493 1.804097 -5.825365 10.944424 -2.061058 -1.229041 4.233237 -0.733336 7.449712 -3.926343 -1.132378 -2.286798 -9.855408 1.133046 -4.325668 -0.867883 3.981643 -0.737514 5.383770 3.960104 -2.709365 1.981242 -1.283244 -2.798240 -6.720286 -1.907187 3.393865 4.421107 -3.493976 2.784676 0.073709 8.824124 -0.776338 7.196069 6.154490 2.951433 6.880456 1.403482 -1.494391 -0.335125 3.714619 -4.113153 -6.709014 1.611114 -1.592349 -7.000062 -4.592708 3.745173 -4.331943 -0.883573 7.288125 -1.375106 -1.593811 -6.439997 4.141353 2.200775 0.185773 7.737301 1.637379 -2.744461 -0.895131 -8.386456 4.411961 -4.644819 1.853169 -1.479550 -4.561146 0.716657 1.854684 0.187581 -3.496060 -3.651931 4.809823 4.545977 -6.003755 1.720583 -3.712910 -4.345234 -5.243347 -4.404630 3.116889 -1.629263 6.183012 0.448108 3.086142 1.496910 3.541549 -1.385445 -8.825353 0.892524 6.679411 -3.073947 -2.787960 -4.252862 7.007791 1.579503 -0.967205 -3.027355 -1.842412 2.182619 -1.526411 4.463385 -1.781877 0.589748 -6.887575 1.006497 0.606034 1.703726 3.406549 2.193992 1.459383 3.308751 5.995822 -5.477434 2.221837 -8.163875 2.081206 -3.318586 2.597325 -3.324083 4.102149 2.775178 3.210784 5.721724 -9.206920 4.771565 0.855884 -1.323969 -5.955218 1.723252 -1.204145 -2.269732 -1.647356 4.534682 -1.235554 -1.480853 -1.436153 2.463140 1.829816 -2.758752 -1.372511 1.189028 5.469350 -4.361266 2.703677 -1.630071 -3.336206 0.103919 2.779785 5.343088 5.551573 10.104106 6.274178 -1.233459 2.044280 -8.122366 1.047491 8.727076 -0.387048 -5.439046 7.392981 -3.890113 -1.864411 0.554525 6.270236 5.713959 2.359650 -4.844455 -4.447228 2.060497 1.238115 7.884264 1.595344 0.801043 -4.777193 3.792160 -0.413083 -0.687759 8.853903 3.368291 -6.320826 2.350395 4.644143 -5.981377 -4.470928 3.487074 -3.464447 0.144575 -3.066722 2.709458 4.601521 -3.820759 -4.266320 -1.320922 -5.870106 6.048294 -2.508733 -1.659177 3.118611 -5.359724 -6.299658 7.546469 0.200913 -2.338088 -4.931115 -6.622930 -1.731780 -7.321228 3.173440 1.654749 -2.031058 -1.938113 -5.687082 -1.159655 5.630168 0.639723 3.468689 -8.022242 -1.283830 4.172721 2.149170 3.611120 -3.576717 -0.624482 0.483890 -0.298429 1.677730 -1.114193 3.220164 9.129315 -5.421532 3.839522 0.193326 -2.190661 2.601712 5.124295 -8.559085 10.290011 1.112915 5.999254 -0.309448 2.275813 -1.822216 1.454544 1.452063 -2.795832 1.062464 1.352561 -3.218057 -3.287212 2.172459 -4.128019 -4.813931 -0.171735 4.337497 -0.850904 2.822505 0.215268 -3.724079 -2.097701 -2.594274 2.874388 5.427205 -0.815621 -3.332823 4.348389 4.339835 -0.496213 -1.653318 0.635240 3.248514 5.783428 -8.755658 2.975752 -1.390882 2.667399 -5.034953 -6.686258 2.840910 -4.247446 -2.138940 2.802798 -7.689504 -2.558131 -5.484417 2.287433 -4.702696 -0.622855 1.375511 8.051245 4.187513 -2.702977 3.033945 -2.622596 3.190868 -0.699509 -1.328281 3.137417 5.426122 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.447780 0.289609 -0.021578 -0.444151 0.877866 -0.268878 -0.092580 0.516891 0.260379 0.531389 -0.578159 0.037110 -0.068012 -0.517258 0.042028 -0.005828 0.012439 0.556190 -0.232762 0.067380 0.330150 0.031725 0.157800 -0.326900 -0.181761 -0.532857 -0.085963 0.150454 -0.041964 -0.005938 -0.114409 0.087417 0.691183 -0.068659 0.489916 0.462290 0.322391 0.673305 0.214044 0.311073 0.304653 0.271621 -0.182828 -0.723038 0.242066 -0.267251 -0.380063 -0.429035 0.297033 -0.690195 0.665931 0.384112 0.033193 -0.234906 -0.390682 0.314722 0.337645 0.092791 0.615334 0.199347 -0.460930 0.113673 -0.426777 0.590643 -0.550523 0.382062 0.053024 -0.664230 -0.265529 0.432429 0.409990 -0.360525 -0.444096 0.060970 0.042981 -0.389923 0.184855 -0.172723 0.274927 -0.245136 -0.331371 0.195065 -0.180320 0.352320 -0.035690 0.111991 -0.420212 0.097346 0.141272 -0.436998 -0.227957 0.481738 -0.239950 0.254723 -0.228465 0.148114 0.247556 -0.250952 -0.062319 -0.249169 0.147824 0.037728 0.234864 0.139603 -0.053555 -0.308546 0.366273 0.375374 -0.043512 0.192796 -0.057917 0.286734 0.153139 0.236356 -0.024598 0.221475 -0.851219 0.216453 -0.086879 0.055281 -0.093527 0.094604 0.247531 0.123555 0.334636 -0.532288 0.654491 0.092475 -0.201556 -0.274984 0.277391 0.062864 -0.223980 -0.142141 0.348940 0.037701 -0.114194 -0.003135 0.156323 -0.125074 -0.374515 -0.373478 -0.147300 0.280287 -0.317820 0.152202 -0.155393 -0.246677 -0.000942 0.161594 0.189925 0.188053 0.669715 0.441677 -0.052588 -0.127839 -0.594929 0.147938 0.666223 0.189593 -0.463323 0.373304 -0.183037 -0.035405 0.279461 0.286465 0.098294 0.404811 -0.218079 -0.279244 -0.199810 -0.187842 0.571932 0.320769 0.183165 -0.577561 0.222585 -0.095069 0.048224 0.937939 0.386353 -0.661284 0.022715 0.542943 -0.324422 -0.370488 0.142826 -0.159684 -0.166783 -0.194925 0.200411 0.282061 -0.461643 -0.559653 -0.008053 -0.498123 0.523702 -0.053783 -0.163686 0.090807 -0.601800 0.029965 0.763483 0.176388 -0.161728 -0.120100 -0.358087 -0.157233 -0.739631 0.114370 0.322290 -0.214341 -0.205805 -0.376894 -0.014337 0.468792 -0.244633 0.049988 -0.393470 -0.180218 0.360861 -0.069119 0.102873 -0.613579 -0.137841 -0.072485 0.025769 0.219105 -0.102737 0.175315 0.669817 -0.371584 0.279572 0.621222 -0.052758 0.095783 0.572515 -0.408725 0.650746 -0.142266 0.163121 0.135364 0.267958 -0.245785 0.042270 -0.085058 0.000993 -0.143129 0.323289 -0.509969 -0.175742 0.189499 -0.379968 -0.216468 0.283101 0.441047 0.220219 0.032368 -0.026944 -0.268020 -0.125890 -0.304359 0.024696 0.387433 -0.063805 -0.583949 0.146749 0.352352 -0.480556 -0.368433 0.142930 0.214669 0.549576 -0.553016 0.452056 0.096201 -0.021882 -0.739494 -0.336146 0.143129 -0.331073 -0.328755 0.095255 -0.681314 -0.465255 -0.268514 0.410805 -0.464552 -0.073567 0.028722 0.565460 0.287427 -0.033743 0.424680 -0.115361 0.317460 0.119102 -0.131481 0.028725 0.543650 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.853767 0.622075 0.137437 -0.877656 1.502775 -0.538104 -0.015096 0.684590 0.279461 0.917701 -1.010012 -0.073413 -0.336224 -1.287662 0.104834 -0.396488 0.096124 1.061895 -0.282691 0.541301 0.708097 -0.361858 0.309631 -0.602135 -0.334614 -0.954207 -0.114766 0.313292 -0.007676 0.031713 0.264083 0.228426 1.324046 0.123257 0.957017 0.901704 0.228710 1.543311 0.441501 0.380585 0.337920 0.584036 -0.309530 -1.578624 0.624777 -0.458021 -0.704559 -1.015645 0.508825 -1.351971 0.816509 0.849078 0.039355 -0.414506 -1.023135 0.312508 0.952406 0.372034 1.155483 0.415337 -0.630524 0.167052 -0.863974 0.360735 -0.952279 0.367399 0.325766 -1.100394 -0.149007 0.722383 0.583458 -0.597295 -0.850412 0.118083 0.277712 -0.725174 0.354881 -0.303567 -0.483073 -0.499976 -0.641027 0.244162 -0.284662 0.853588 -0.141882 0.256704 -0.478998 0.140386 0.242498 -0.877878 -0.351972 0.911736 -0.269477 0.310758 -0.305323 0.832728 0.470880 -0.468732 -0.496215 -0.342490 0.312984 -0.035346 0.502847 0.299220 -0.683642 -0.746349 0.728178 0.498434 -0.164092 0.469860 0.225740 0.551398 0.248906 0.451938 -0.628194 0.674771 -1.594746 0.371045 -0.167299 0.179741 -0.147042 0.221823 0.261901 0.150568 0.567819 -1.123635 1.248860 0.322038 -0.215059 -0.694896 0.566791 0.093286 -0.361766 -0.366508 0.789012 0.004670 -0.171456 0.012301 0.095647 -0.145978 -0.483254 -0.636750 -0.239848 1.009162 -0.576988 0.341701 -0.344026 -0.639195 0.017594 0.110302 0.320582 0.370809 1.273250 0.865412 -0.240085 0.008908 -1.079775 0.249584 1.469286 0.530721 -0.898319 0.706465 -0.066431 -0.038644 0.434796 0.477499 0.506911 0.519380 -0.596852 -0.716159 -0.234102 -0.337841 1.040708 0.662360 0.355708 -1.274593 0.746330 0.132320 0.117211 1.756754 0.613177 -1.076091 0.091009 1.004957 -1.111496 -0.705782 0.208033 -0.146952 -0.155668 -0.327291 0.446185 0.472543 -0.886817 -1.139400 -0.277688 -0.991807 0.870447 -0.168051 -0.102809 0.089150 -1.093161 -0.306873 1.439970 0.219612 -0.375296 -0.299107 -0.782952 -0.305909 -1.408327 0.293977 0.465694 -0.437885 -0.447160 -0.694026 -0.079053 0.899602 -0.423862 -0.003237 -0.653976 -0.355215 0.669302 0.054757 0.209359 -1.141605 -0.299186 0.131421 0.144078 0.436145 0.140416 0.429833 1.306395 -0.747258 0.391475 0.905599 0.052077 0.511988 1.121591 -0.832594 1.295280 -0.389797 0.907535 0.109294 0.502158 -0.342305 0.059253 0.042001 -0.092463 -0.243048 0.604820 -0.881228 -0.325500 0.516771 -0.622632 -0.493490 0.508487 0.824788 0.427522 0.147850 0.161201 -0.496669 -0.170251 -0.361953 0.109338 0.785372 0.010115 -1.018367 0.200509 0.710303 -0.502844 -0.658917 0.286301 0.439488 0.987586 -1.083804 0.861834 -0.018671 -0.186895 -1.044943 -0.787068 0.588285 -0.783110 -0.624469 0.454105 -1.354407 -0.519477 -0.547704 0.853228 -0.839723 0.081061 -0.107735 1.028453 0.537854 -0.044317 0.778210 -0.229392 0.617118 0.052658 -0.180160 0.097506 1.250964 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/topological-sorting.cpp__main = -2.769641 0.264591 0.390763 -2.225757 5.821915 -2.000095 -0.138282 3.294645 0.812135 3.372369 -2.544432 -0.521911 -1.607925 -3.713792 0.477020 -1.302077 0.622636 3.024151 -1.560130 0.743606 2.359807 0.497655 0.879722 -1.177301 -1.012812 -2.873639 -0.911302 1.159871 0.561437 -0.905032 -0.311710 1.011192 5.173535 -0.300884 3.812747 3.137356 2.635526 4.257779 0.485507 1.277547 0.938004 2.128153 -1.597032 -4.166243 1.414268 -1.362511 -3.068374 -2.096074 2.183490 -3.200577 2.645796 3.120432 -0.257347 -0.476501 -2.204530 2.106746 1.196401 0.282421 3.938977 1.280059 -3.087211 0.271692 -3.427840 3.737891 -2.891506 2.387053 -0.426604 -3.885623 -1.428444 1.585221 1.970495 -2.887657 -2.872562 1.397949 1.183680 -2.506278 1.249055 -0.773254 0.981447 -1.954367 -3.342936 1.092510 -1.135273 2.516914 -0.248119 0.854755 -1.217078 0.836294 0.260284 -3.763070 -0.224530 3.632749 -2.255504 1.073693 -3.268437 0.639080 0.280308 -0.676213 -1.322833 -2.020840 0.954562 -0.562188 1.922033 0.094309 -0.337888 -2.112081 1.570512 1.219800 0.581581 1.347180 0.397562 1.011992 1.379718 2.227792 -0.789565 1.531314 -4.890646 1.967256 -1.192242 0.588758 -0.921506 1.461346 1.635388 0.916367 2.717326 -4.196430 2.901403 0.276932 -1.551577 -2.315708 1.275576 -0.425739 -1.597439 -1.286517 3.112498 -0.198703 -0.944999 -0.659969 1.466545 -0.025949 -1.985666 -1.747113 -0.791169 0.995134 -1.992627 0.895489 -1.297089 -2.089307 -0.142045 1.490416 1.700023 2.492186 4.428407 3.242370 -0.916145 -0.273563 -4.484609 0.648042 3.936800 0.608437 -3.196209 2.992972 -1.932224 -0.117868 1.431395 2.687873 1.746874 1.748601 -0.932640 -0.976649 -0.366920 0.238131 4.035617 1.841120 1.020130 -3.037359 0.250938 -1.241637 -0.236795 5.465571 2.490370 -4.279657 0.529062 2.777512 -1.448168 -2.704096 1.240178 -1.954398 -1.008253 -2.003259 1.696412 2.423782 -3.003025 -2.078896 1.066780 -3.216415 3.066032 -0.797609 -1.224804 1.415656 -4.435054 -1.898188 4.872191 0.423146 -0.701297 -1.678919 -3.359109 -0.541469 -4.450353 1.320199 1.269885 -0.489241 -1.385904 -2.770442 -0.236523 3.499567 -0.120385 1.668953 -2.800305 -0.750208 2.259297 -0.404849 1.634130 -3.460045 -0.975562 -0.347262 -0.164710 1.503305 -0.940766 0.392487 4.261600 -2.851539 1.977995 2.495794 -1.450735 0.206974 2.762198 -3.573345 4.489309 -0.062016 1.673579 0.287811 1.592733 -1.760778 0.303885 -0.018596 0.496401 -0.816613 1.624001 -2.400227 -1.235576 0.663313 -2.775562 -1.878732 0.556362 2.312734 0.204415 0.841419 -0.375661 -1.941423 -0.925964 -1.991904 1.104285 2.931306 -0.616818 -2.620395 1.786136 1.524985 -2.584329 -1.090180 0.811436 1.224080 3.575492 -4.080793 1.485079 0.256858 0.520005 -3.678258 -3.181984 0.534779 -2.508871 -1.738654 1.045039 -3.877068 -2.308212 -2.208785 2.005472 -2.693608 -0.754093 0.334885 4.028522 2.216827 -0.450625 2.540676 -0.523782 1.818310 0.090956 -0.859425 1.026061 3.218559 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.540843 3.835491 1.398661 -4.439916 7.782391 -1.515560 0.762492 3.212520 -0.350939 4.839010 -5.513305 -0.014228 -1.809949 -6.037879 0.198928 -2.409299 -0.250969 4.905802 -1.543480 3.188220 3.793446 -2.121971 1.592226 -3.206487 -1.875367 -3.974096 -0.920989 1.289453 0.678794 0.481294 1.548744 0.281164 6.256245 0.399938 4.687372 4.464140 1.117729 7.993245 1.247956 1.792318 0.965658 3.484982 -2.137073 -8.010302 3.348709 -3.143070 -3.631244 -5.152706 2.512148 -7.104135 4.136017 4.360176 0.070699 -2.307200 -4.609902 2.047555 5.492069 1.323677 6.290942 1.910518 -3.280372 0.742590 -4.893827 1.644343 -4.105079 2.996804 1.871183 -5.788352 -0.785961 2.658880 3.521270 -3.748745 -4.894006 1.415403 1.301017 -3.859737 1.725008 -2.239156 -3.887697 -3.077520 -3.321712 0.842545 -1.458698 4.489120 -0.869576 1.099198 -2.416611 1.059184 0.987027 -5.066746 -2.024300 5.389178 -1.177965 1.885176 -2.909590 3.751042 1.486471 -1.592850 -3.563508 -1.082378 1.714573 0.974872 2.588957 -0.006264 -3.698429 -4.633328 3.658973 2.842678 -0.984179 1.943989 1.332326 2.828890 1.755882 3.020601 -3.784402 4.042572 -7.529809 1.380886 -0.631133 1.368537 -0.819663 1.527267 0.618136 0.410646 3.466527 -5.843606 6.155179 1.181929 -2.099727 -4.387621 2.808728 -0.279205 -2.154295 -1.735521 3.616977 0.217320 -1.149441 -0.610803 0.248940 -1.005194 -2.950147 -4.053762 -0.551405 5.144535 -3.306721 1.409443 -1.963928 -3.158620 -0.096881 1.351117 2.027908 2.078268 6.406883 4.683742 -0.492681 0.362378 -5.275450 1.237124 7.475092 3.915199 -5.149983 3.403063 -0.628101 0.100476 2.629027 1.889588 2.721598 3.311138 -3.754066 -4.165723 -0.582125 -1.780734 5.561030 4.497567 2.060032 -6.399159 4.420861 -0.100485 -0.206024 8.581183 3.704295 -5.323345 0.338707 4.251923 -4.980629 -3.406312 1.241174 -0.922770 -1.144917 -1.236918 1.497300 2.141258 -4.078214 -6.269698 -1.449810 -5.393651 5.474683 -0.814590 -0.057695 0.307878 -5.764614 -2.422370 6.640742 0.950277 -2.740972 -1.788886 -3.260151 -2.083669 -6.877392 1.892945 2.649861 -2.315237 -3.727808 -4.157884 0.176797 4.047740 -2.004369 0.044504 -2.886655 -2.800321 3.203470 -0.070145 2.209585 -6.741148 -1.600210 -0.456973 1.019004 3.032155 0.924071 2.715758 7.623884 -3.818623 2.219170 4.669464 0.243238 1.945161 6.104343 -4.168754 6.397223 -1.981976 5.229337 -0.192552 2.753477 -1.600653 0.426173 0.586601 0.310091 -0.337359 3.424089 -3.918454 -1.621676 1.769006 -4.202468 -1.913143 2.657121 3.413784 1.725452 0.822264 1.066205 -2.743622 -1.351507 -2.030934 -0.430359 4.425942 -0.502627 -5.367701 0.793909 2.190541 -2.281793 -2.477204 1.445045 2.240926 4.807200 -5.577792 3.866064 -0.593234 -1.929579 -5.846465 -3.984748 2.272053 -4.231764 -3.989918 3.308097 -6.187586 -1.865989 -3.119612 3.624436 -4.507218 -0.721615 -0.604677 5.300928 2.893988 -0.069787 4.048802 -1.144271 4.457466 0.303053 -0.903252 0.590100 6.348234 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.665224 5.008764 5.603172 -3.106199 3.248075 1.080114 0.497191 1.800032 -3.161878 3.584341 -3.709666 1.049472 -0.861515 -3.001231 0.042727 -3.772366 -2.014477 0.708150 0.311125 4.099331 2.124253 -3.067841 0.212591 -1.922642 -2.104744 -3.042387 -0.260285 0.676649 3.129923 0.072352 3.071474 -0.752611 3.304924 -0.145337 3.720465 2.795907 0.877649 4.461425 0.590632 -1.273561 -1.503826 2.497884 -2.564594 -3.345759 1.282935 -2.233912 -1.141306 -2.039835 0.965171 -2.261285 0.380982 3.226389 -0.635922 -1.731225 -3.057757 2.782441 1.992736 -0.106989 4.683376 0.544698 -0.820785 -1.455148 -4.871030 1.600750 -2.122363 2.170456 -0.817515 -1.285203 1.862078 -0.309393 0.314642 -0.481605 -1.589363 3.202830 0.884738 -3.572012 1.014500 -2.859808 -6.398476 -2.158673 -1.672291 1.671448 1.164570 3.211356 -0.138709 1.381020 -0.404005 2.863394 -0.872088 -4.955349 -0.372079 3.506566 -1.637773 -1.461368 -1.883309 4.342521 -0.102727 0.442564 -2.367073 0.684163 2.539856 0.887200 1.701907 -5.243079 0.632884 -5.613049 2.335209 1.884899 -0.597908 1.441604 1.430699 3.398940 3.408173 3.969297 -3.315810 1.663554 -3.998454 -0.988603 0.695427 0.765763 -0.948664 2.250797 -2.313991 1.028086 3.495749 -4.868139 2.945021 0.645279 -1.723466 -3.357000 0.771842 -1.800327 -1.351257 -1.806867 1.550064 1.053652 -0.885428 -1.249381 -0.480656 -0.146515 -1.351076 -4.195555 1.828262 5.009278 -3.168591 0.596066 -1.040693 -1.070011 -0.707879 2.537855 2.851420 1.991717 3.560199 2.829564 0.897888 0.194236 -2.626512 -0.307214 3.610639 1.411302 -4.195238 3.807215 -2.495663 -1.518823 0.809411 1.557749 2.715045 2.758651 -5.650079 -6.485520 1.765508 -0.966621 4.250460 2.143889 0.389117 -2.263117 6.066768 -1.570342 -2.892060 3.922359 1.632815 -1.710642 -1.809334 1.501426 -4.132885 -2.546883 2.456852 -2.034826 0.547996 0.018763 -1.211587 1.397085 -1.281144 -3.417101 -1.386780 -4.244316 5.342493 -0.423635 1.867036 -0.681369 -2.127191 -5.467753 2.745585 -0.175970 -2.969302 -2.863346 -1.344235 -2.379759 -3.520111 1.496099 2.015756 -0.993258 -3.880040 -3.718821 0.488202 -0.066902 -1.000263 0.506067 -3.355541 -4.029796 1.996053 0.162775 2.203787 -1.532953 -0.875947 -0.854609 0.289396 2.573532 0.319387 5.309956 6.453726 -1.735501 3.836776 0.920498 -2.059793 0.817837 4.045798 -3.705163 4.783687 -1.628005 2.138987 -0.603667 1.673547 -1.984819 -0.143628 1.668202 -1.833568 1.268774 0.799091 -0.567116 -0.899284 -2.463970 -3.932065 -0.206919 0.827412 0.513018 -0.470060 0.907429 2.434575 -1.157131 -2.288483 -2.490606 -0.613087 3.139930 -0.771964 -1.646191 1.744504 -0.061723 0.755031 -0.023709 0.464100 1.369809 2.408973 -4.201413 1.159509 -1.357796 -1.591868 -4.064031 -2.998964 0.525046 -3.190658 -2.837274 2.448608 -3.653146 1.028360 -2.708374 0.484957 -2.486868 -1.385410 1.104450 4.194125 1.480308 -2.664996 1.861017 -2.050774 4.311580 1.507592 -0.564361 -0.012083 2.908270 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.371601 15.536407 12.067298 -12.703132 16.658549 -2.634691 2.616260 5.583930 -2.308106 13.698033 -15.111136 -0.936154 -5.938940 -16.061354 -0.115679 -13.192988 -3.186342 12.426813 -1.526397 13.831631 10.768338 -9.110802 3.032750 -9.148500 -5.965060 -12.436525 -3.427079 2.979475 3.343116 0.717627 11.699088 -0.421294 17.140150 3.133583 15.086187 13.987252 -0.863354 23.106121 3.201390 6.071708 -1.544101 10.832769 -7.838940 -20.742875 9.003482 -8.285492 -7.062233 -15.373384 5.376921 -17.824892 6.067464 12.899901 -0.709944 -5.070990 -13.697451 4.582138 14.536254 6.072959 17.583810 4.715052 -5.431464 5.211061 -15.929483 -1.615450 -10.048218 6.689052 4.350678 -12.461876 3.027281 3.123198 8.251605 -8.232178 -10.163872 7.026403 3.712700 -11.721487 4.216525 -8.093347 -22.887973 -9.120825 -8.535896 2.794856 1.081789 12.898657 -1.924544 3.585877 -4.929051 5.863491 1.422686 -15.635098 -4.293866 14.628901 -2.435729 0.281974 -4.138342 15.358584 4.770615 -1.829215 -9.696215 -0.051342 6.358730 2.111058 7.422346 -0.705519 -11.912035 -15.330534 8.934762 6.371395 -5.128445 4.832353 4.301831 10.678195 8.159517 10.668374 -15.071550 13.029909 -19.457284 2.918390 -2.875187 4.057462 -0.621307 5.493506 -3.365805 1.930779 10.163894 -16.578179 14.863351 3.895560 -5.183834 -13.982695 7.244692 -3.568563 -5.569751 -6.730988 9.024267 2.584406 -2.872869 -3.461475 -2.239792 -2.729003 -2.077158 -13.379745 1.442078 18.188349 -8.390953 3.632995 -5.387578 -8.225423 -1.638896 4.065256 6.302242 6.254494 17.972209 12.966516 -1.021372 -1.093686 -12.521487 -0.663499 19.523287 10.221947 -13.853269 10.840040 0.932269 -2.267858 6.030395 5.455300 9.787452 8.413243 -15.781159 -18.121033 -1.143594 -6.030126 15.837495 12.473436 3.656744 -15.032785 19.052834 0.806089 -5.552389 22.254978 8.892738 -11.284145 -1.458840 9.418647 -18.187151 -12.093844 5.489781 -2.147003 -0.793624 -1.017683 1.386855 3.685170 -9.024307 -16.802944 -5.150147 -16.476260 16.183703 -2.194385 3.946278 0.537766 -13.958158 -14.949641 16.374037 2.364554 -9.705059 -7.452784 -7.931316 -4.610488 -17.709472 6.675541 6.563218 -5.631197 -11.703580 -11.838893 3.061633 7.152241 -5.667769 0.354314 -5.177566 -12.791526 7.789826 -1.169917 7.291975 -17.254696 -4.387887 -1.030393 3.761387 9.219783 6.238670 12.252460 25.057628 -9.309401 5.637964 11.089841 -0.976611 6.335375 17.860274 -14.121813 17.933367 -7.823063 14.634845 -1.491153 6.705444 -4.726446 -0.125316 5.426710 -1.835458 1.493646 7.386126 -7.205118 -3.972047 1.213523 -13.235471 -1.850657 6.101212 6.434132 1.719763 3.057533 7.798645 -9.542347 -3.153248 -4.843700 -2.521832 13.485407 1.602497 -14.027991 3.432771 4.423022 -1.577841 -7.169705 2.637534 5.724827 11.140483 -16.231368 9.154091 -3.957485 -7.293227 -13.886324 -11.095235 8.112521 -14.606374 -12.017427 9.389103 -15.008059 0.092937 -10.024614 7.351834 -11.214578 -2.934143 -0.378086 14.145820 9.465078 -3.710015 9.074351 -5.449982 15.302459 2.575489 -2.845031 0.056018 19.080231 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.482172 7.756869 2.708711 -9.329712 14.269048 -4.231595 0.570140 9.051831 -0.940960 9.501110 -8.437224 1.919267 -2.446266 -12.262865 0.519661 -4.979759 0.159758 9.994209 -2.054965 8.881626 6.775751 -4.004968 2.541770 -4.564640 -4.858703 -7.520278 -0.499213 3.610226 1.690795 -1.857222 5.034199 1.058509 13.250848 1.230456 11.918692 9.210114 2.943215 13.872108 4.985512 1.286428 0.509343 5.051253 -4.088014 -13.340246 4.794027 -3.815497 -7.641690 -8.521009 4.384219 -12.140839 4.991090 9.142365 0.155939 -2.340832 -9.100551 4.066854 7.386037 1.202773 11.527602 3.402826 -6.848804 0.602649 -9.377799 3.063342 -6.711850 2.938516 1.764516 -8.459944 1.021510 4.914196 4.652278 -7.429608 -6.266457 4.134091 3.726987 -8.366830 4.040373 -4.422954 -7.213714 -7.475861 -5.296181 3.550761 -0.939300 8.569691 0.086118 4.114404 -3.882871 3.420237 -0.552519 -11.366838 -0.394084 8.944419 -4.321138 0.047165 -5.155202 10.530705 2.372218 -2.345695 -6.852452 -4.151558 4.666252 -0.414265 5.244075 -0.809879 -4.538103 -8.753488 4.272026 4.025398 -1.295318 5.842380 2.708477 6.651356 6.030855 7.794800 -7.100479 7.458970 -14.976496 3.698327 -3.823621 2.415524 -2.228254 3.289569 2.864464 3.803978 7.045397 -12.183309 10.715259 3.810809 -2.851050 -9.097721 4.999480 -1.265104 -3.001420 -4.531502 7.523531 -0.402991 -1.064090 -2.196834 1.212801 -0.679571 -4.037732 -8.026184 -0.303058 10.020800 -7.770813 3.363194 -2.978306 -5.107524 -0.621967 3.134810 5.579503 4.706676 13.314434 7.637484 -2.013595 1.771132 -10.527069 0.203869 13.694072 6.656940 -8.772330 9.285350 -1.811071 -2.060128 2.603441 6.060310 6.388258 3.522812 -9.904741 -10.473417 2.066364 -1.402287 11.301914 4.310066 1.396410 -10.515067 9.558020 0.259638 -1.702042 16.854670 5.437015 -9.739686 0.481749 7.633941 -8.782360 -7.380917 4.227253 -4.489618 -2.397899 -1.552671 3.115347 4.026060 -7.236282 -9.834476 -1.738261 -10.089517 9.201937 -1.868816 -1.703728 0.143483 -9.984356 -4.007836 13.806959 1.929328 -5.356895 -4.178080 -7.915441 -2.017664 -12.793625 3.113181 4.549406 -2.484161 -4.402087 -7.356795 -0.876273 6.713386 -2.536160 0.731619 -8.392094 -5.547510 6.983353 -0.754353 3.196297 -11.951135 -2.126768 0.470671 1.963696 4.348594 0.797973 6.674099 14.200293 -6.760087 4.438222 6.292233 -1.145124 5.100814 10.408375 -10.948434 14.474711 -2.992752 10.782761 1.117211 4.123439 -4.513429 0.750525 1.033699 -0.693004 -0.904585 4.779840 -6.521874 -3.639167 1.726615 -5.605757 -5.020010 2.652291 6.582733 -0.573315 2.415586 2.248620 -4.849473 -3.434463 -6.004243 1.375951 8.007223 -1.410818 -8.595915 4.371710 6.190341 -1.526590 -2.978588 1.933663 5.653777 9.328670 -11.758704 6.489456 -1.356268 -0.823150 -10.311768 -9.501139 6.677201 -8.456831 -5.075474 3.283561 -12.411189 -3.949339 -6.255585 6.315806 -8.914491 0.801392 1.964840 10.924163 5.638184 -3.639947 6.236977 -3.989656 7.460517 1.167036 0.117605 0.141697 12.018562 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.226432 1.067803 -1.132036 -3.832880 6.896492 -2.889864 -0.563595 4.321359 0.044056 3.091678 -2.048144 1.206410 0.095088 -5.924617 0.844315 -0.923434 1.003459 3.409810 -0.836361 3.201179 1.775070 -1.051169 1.277795 -0.735247 -1.995219 -3.671412 0.476094 2.371899 1.095583 -2.479730 1.030548 0.949943 5.297538 -0.745657 4.301397 3.071486 2.448835 3.344108 2.780355 -2.513342 1.301604 0.473450 -0.861827 -3.902691 0.322364 0.179741 -4.926116 -1.990659 1.891578 -3.539341 -0.349194 3.735125 0.065414 -0.783514 -3.636457 2.827945 2.159110 -0.915293 3.649706 1.219827 -2.537172 -1.424193 -2.926668 2.896821 -2.726821 -0.528234 -0.962015 -2.690236 -0.146251 3.409903 -0.372004 -2.388175 -2.068879 1.012631 2.774133 -3.327336 1.578394 -1.162217 0.630929 -3.445679 -1.271967 2.408880 -1.461024 3.072830 0.746923 2.550167 0.357957 1.144128 -0.907699 -4.211106 0.952977 2.567434 -2.487092 -1.445217 -1.854851 4.470462 1.248810 -1.832007 -2.247625 -3.640685 1.516225 -1.905212 2.032215 -0.869331 1.156111 -2.551259 -0.011471 0.901097 1.223939 3.681675 0.440717 1.747127 1.664048 2.570027 -2.264900 1.006715 -6.343723 1.451651 -2.643141 0.812772 -1.930565 0.992593 3.560784 3.416271 2.351868 -4.989244 4.208819 1.684000 0.084936 -2.578865 1.486843 0.571865 -0.520748 -1.257997 2.897159 -1.531005 0.264968 0.024580 2.106036 0.867001 -1.843576 -0.658070 -0.560980 3.016328 -3.928014 2.085321 -0.299717 -1.398628 0.420430 0.855642 2.725815 1.831157 5.663121 2.363141 -1.497535 3.117989 -4.714243 0.776928 5.041617 0.752526 -2.383598 4.520552 -2.275828 -1.410548 -0.054948 3.879814 2.199530 0.077999 -3.220796 -2.790079 2.162664 0.804599 3.903088 -1.242629 -0.279412 -4.484834 2.043253 0.424606 0.809107 6.506532 1.744274 -4.166933 1.333157 3.820313 -2.773722 -2.226323 1.523199 -2.952113 -0.862467 -1.196075 2.186625 2.307033 -2.509050 -2.809322 -0.442028 -2.606746 1.716886 -1.128666 -3.310666 0.266920 -2.609869 -0.241579 5.690829 0.444390 -0.806729 -1.425460 -4.423808 -0.301769 -4.716371 0.424847 0.979900 -0.880509 0.573506 -2.241849 -1.998250 3.554474 -0.295915 0.747114 -6.970570 0.371204 3.077835 1.843769 0.104066 -2.255054 -0.059717 1.251700 -0.346014 -0.550773 -1.502815 1.681668 3.596419 -2.687750 2.115444 -0.527008 -2.142002 2.735801 2.865026 -4.387893 6.292968 0.838859 5.135813 1.424738 1.199581 -2.040975 0.822666 -0.690489 -2.027149 -1.269075 1.127622 -3.205159 -1.971644 1.882453 0.312263 -4.701547 0.132894 3.775643 -0.635611 1.111721 -0.642990 -0.791964 -1.333389 -2.100134 2.376765 1.879873 -1.230061 -2.028890 2.455984 4.674206 -0.159137 -0.944646 0.571001 2.597650 3.878669 -4.572308 2.906228 -0.019399 2.782059 -3.456282 -4.539619 3.198129 -2.398753 0.094176 -0.307937 -5.621386 -3.411980 -1.953687 2.772407 -2.890505 1.451119 2.030634 4.678000 1.073744 -2.042757 2.034149 -1.743596 0.489631 -0.467479 0.811812 0.534010 3.052873 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = -0.772078 0.880750 0.388877 -0.727074 0.859528 -0.372482 0.078920 0.426125 0.373109 0.694227 -1.032109 -0.291798 -0.311547 -0.986331 0.015865 -0.539484 -0.082874 0.998385 -0.155036 0.546388 0.705726 -0.371230 0.109458 -0.685861 -0.230983 -0.626476 -0.197143 0.083438 -0.189055 0.195487 0.392916 0.152803 1.094916 0.375723 0.967995 0.906215 -0.103553 1.524583 0.361730 0.905260 0.058628 0.695317 -0.346034 -1.504270 0.644626 -0.528619 -0.219905 -1.083426 0.272926 -1.175601 1.212830 0.644129 0.047482 -0.292620 -0.841429 -0.057150 0.851723 0.700927 0.985326 0.424169 -0.418409 0.605353 -0.762144 -0.057158 -0.774431 0.506572 0.624219 -0.876268 0.060770 0.316362 0.947033 -0.590370 -0.796204 0.153969 -0.014315 -0.552027 0.329081 -0.362318 -0.979739 -0.263617 -0.599981 0.130865 -0.107645 0.744336 -0.237650 0.054475 -0.819247 0.173806 0.272803 -0.695806 -0.448513 0.804200 -0.062160 0.381358 -0.128009 0.749597 0.421694 -0.177230 -0.392567 -0.001409 0.378625 0.180882 0.378131 0.601143 -1.026607 -0.675349 0.885856 0.575905 -0.530226 0.233665 0.351152 0.676849 0.404157 0.407033 -0.574825 0.807901 -1.316652 0.292249 -0.049069 0.157274 0.172115 0.181344 -0.172032 -0.127289 0.396872 -0.787081 0.988044 0.357949 -0.272657 -0.645539 0.543000 -0.163857 -0.436766 -0.447951 0.587884 0.328431 -0.198040 -0.101318 -0.258380 -0.316668 -0.191171 -0.929495 -0.139534 0.942029 -0.242293 0.127036 -0.366003 -0.568044 -0.113825 0.125782 0.129804 0.221185 1.010638 0.737306 -0.113799 -0.597103 -0.717838 -0.001350 1.200890 0.588178 -0.822701 0.451128 0.293482 -0.031496 0.482710 0.266258 0.395146 0.519877 -0.637804 -0.838500 -0.534359 -0.572502 0.855988 0.877938 0.357032 -0.899238 1.005005 0.252752 -0.296099 1.541811 0.514081 -0.633270 -0.367892 0.644168 -0.994465 -0.714851 0.196025 0.129431 -0.008887 -0.112648 0.189690 0.135240 -0.701309 -1.126915 -0.262546 -0.993519 0.883956 -0.063794 0.293754 -0.108719 -1.072865 -0.406875 1.258286 0.210660 -0.541273 -0.194915 -0.396610 -0.135283 -1.093557 0.365417 0.474379 -0.300892 -0.627833 -0.562669 0.272356 0.597419 -0.554926 -0.157794 0.217920 -0.795301 0.465707 -0.329531 0.259163 -1.306992 -0.378341 -0.042271 0.363963 0.667989 0.513086 0.564341 1.501582 -0.494461 0.113858 1.409893 0.390628 0.307869 1.189483 -0.682450 0.948784 -0.710403 0.481033 -0.015032 0.438332 -0.250152 -0.181258 0.216913 0.186207 -0.047108 0.578610 -0.520316 -0.100232 0.192609 -0.798591 0.071334 0.578540 0.465538 0.330720 0.084833 0.363930 -0.599254 -0.065800 -0.260021 -0.205398 0.830188 0.286102 -1.007636 0.024771 0.283592 -0.344906 -0.485237 0.217573 0.223403 0.794800 -0.829669 0.673645 -0.065136 -0.526180 -0.841548 -0.504483 0.430499 -0.776525 -0.714435 0.437323 -0.889690 -0.208631 -0.507747 0.609765 -0.735827 -0.018947 -0.207932 0.751265 0.656639 -0.037652 0.540843 -0.206616 0.906632 0.268251 -0.324454 -0.011434 1.341924 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = -0.988788 0.611861 0.140350 -1.005535 2.021066 -0.437077 -0.040380 0.942677 0.308350 1.183217 -1.236260 0.035184 -0.291638 -1.192063 0.076338 -0.325392 -0.012261 1.085425 -0.544815 0.285143 0.735989 -0.061126 0.443623 -0.669795 -0.417637 -1.192044 -0.237355 0.361320 0.058942 0.086990 -0.031109 0.094188 1.459356 -0.190614 0.941246 0.929597 0.650619 1.523691 0.248110 0.497465 0.605443 0.616048 -0.436915 -1.603010 0.562371 -0.627732 -1.012478 -0.960800 0.699870 -1.621875 0.961902 0.923500 0.041589 -0.585396 -0.857189 0.767929 0.893669 0.133730 1.366881 0.396205 -0.949580 0.073753 -1.058601 1.050876 -1.099221 0.849408 0.049747 -1.477249 -0.605818 0.913654 0.627365 -0.690429 -1.006031 0.184317 0.306472 -0.860425 0.353484 -0.420304 0.122982 -0.540459 -0.693424 0.354808 -0.371299 0.831079 -0.070824 0.281343 -0.526911 0.212888 0.273439 -1.037872 -0.462913 1.212889 -0.431941 0.429921 -0.652611 0.372617 0.445734 -0.554883 -0.376430 -0.478790 0.285299 0.114905 0.556816 -0.002661 -0.337835 -0.887241 0.716657 0.813740 -0.006006 0.431926 -0.134890 0.514273 0.236091 0.565986 -0.404046 0.663872 -1.776365 0.425863 -0.255405 0.196956 -0.313448 0.277178 0.469760 0.325865 0.779361 -1.255542 1.456095 0.168096 -0.528557 -0.715484 0.588487 0.147182 -0.452867 -0.237108 0.774947 -0.035624 -0.256849 -0.020048 0.352625 -0.237843 -0.731542 -0.685459 -0.253711 0.681355 -0.740149 0.379680 -0.350441 -0.579762 0.033256 0.377040 0.480495 0.451087 1.508523 1.017858 -0.126481 0.019513 -1.301057 0.403671 1.549680 0.497440 -1.047377 0.815884 -0.423841 -0.013238 0.551957 0.552946 0.337524 0.977379 -0.562974 -0.635586 -0.360639 -0.342691 1.278677 0.878148 0.412465 -1.429916 0.528634 -0.372047 0.222466 1.889307 0.980843 -1.443005 0.171420 1.178244 -0.952514 -0.835839 0.295818 -0.376973 -0.365310 -0.440285 0.427634 0.667159 -0.972905 -1.274672 -0.110930 -1.097995 1.165128 -0.161535 -0.333716 0.240653 -1.257931 -0.293274 1.536520 0.309762 -0.392889 -0.349614 -0.823906 -0.468531 -1.629168 0.313353 0.686673 -0.538864 -0.578286 -0.877126 -0.073659 0.987448 -0.438318 0.184646 -0.934377 -0.330011 0.783284 0.034402 0.403415 -1.253562 -0.281577 -0.165581 -0.026156 0.481580 -0.190653 0.362209 1.408887 -0.883477 0.708525 0.938813 -0.323961 0.252463 1.229340 -0.870059 1.466997 -0.207712 0.712231 0.169924 0.618746 -0.441463 0.213081 -0.100543 -0.194175 -0.235433 0.757406 -1.128308 -0.452933 0.482506 -0.847161 -0.576966 0.586575 0.961992 0.437805 0.116907 0.038206 -0.613817 -0.296928 -0.548543 0.061112 0.869873 -0.227807 -1.244551 0.275354 0.750773 -0.958170 -0.872853 0.340465 0.518389 1.153196 -1.254545 0.970640 0.092938 -0.127746 -1.598830 -0.785417 0.369287 -0.816741 -0.791124 0.384149 -1.452782 -0.832068 -0.648671 0.890620 -0.942910 -0.314439 0.058192 1.242692 0.591692 -0.021000 0.971070 -0.222217 0.710086 0.118127 -0.249674 0.187900 1.146845 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -1.637801 1.972111 1.029480 -1.823285 2.566091 -0.895423 0.564328 0.813643 -0.273838 1.773445 -2.042985 0.155194 -0.562237 -2.541869 0.165837 -1.587289 -0.177674 1.983249 -0.114081 1.705156 1.324906 -1.187611 0.418639 -1.244099 -0.769091 -2.263232 -0.171360 0.568489 0.303872 0.165537 1.389441 0.278173 2.462613 0.199806 1.873407 1.998486 -0.067195 2.960859 0.906020 0.296491 0.347939 1.180516 -0.743418 -2.970032 0.947854 -0.717227 -1.284675 -2.166214 0.808067 -2.584577 0.686017 1.646667 0.009964 -0.852756 -2.206021 0.722224 2.188307 0.619966 2.214955 0.695143 -0.702132 0.437448 -1.776923 0.422173 -1.660693 0.298222 0.620218 -1.799217 0.406354 1.130783 0.742706 -0.783903 -1.402888 0.444835 0.646158 -1.599992 0.446508 -0.886655 -2.850297 -1.004836 -0.887757 0.453948 -0.192888 1.802408 -0.207942 0.486158 -0.684021 0.521832 0.405606 -1.736767 -0.796222 2.093233 -0.146709 -0.071747 -0.486090 2.323893 1.400892 -0.837761 -0.948447 -0.400127 0.698133 -0.098294 1.010604 0.059524 -1.705614 -1.816326 0.877594 0.880599 -0.601701 1.343244 0.130515 1.479435 0.683943 0.924376 -1.789330 1.490422 -3.048671 0.665787 -0.455621 0.357298 -0.130029 0.445126 -0.011418 0.484709 1.128187 -2.167636 2.291759 0.623854 -0.205662 -1.651662 1.018755 0.135855 -0.603529 -0.835031 1.251653 0.249232 -0.265731 -0.030307 -0.102130 -0.153091 -0.278085 -1.615778 -0.016040 2.612354 -1.264912 0.681803 -0.636271 -0.987092 -0.056536 0.226402 0.684879 0.701872 2.481338 1.777860 -0.174215 0.460338 -1.932081 0.171012 2.779431 1.366466 -1.617533 1.445046 0.032126 -0.482364 0.696588 0.866792 1.071040 1.132848 -2.058871 -2.260117 -0.275597 -0.983279 1.990235 1.488449 0.293533 -2.371125 2.433879 0.339536 -0.231147 3.027391 1.189652 -1.679404 0.208261 1.770271 -2.778217 -1.653871 0.596901 -0.358871 -0.242161 -0.288229 0.495113 0.676815 -1.345650 -2.246243 -0.969815 -1.926768 1.737834 -0.362948 -0.054856 -0.050121 -1.643635 -1.545463 2.417787 0.374251 -0.912975 -0.796490 -1.267403 -0.780738 -2.590874 0.673015 0.858182 -0.970489 -1.198629 -1.427625 0.001178 1.245414 -0.984668 -0.002655 -1.139777 -1.168258 1.235701 0.662251 0.428006 -2.247534 -0.494486 0.253729 0.577574 0.749962 0.649747 1.545519 2.916114 -1.298304 0.645370 1.301215 -0.190114 1.251972 2.376299 -1.863039 2.464446 -0.844331 2.052927 0.190304 0.757502 -0.577419 -0.056589 0.431321 -0.593969 -0.221385 0.939454 -1.457396 -0.570192 0.792996 -1.266316 -0.690639 1.006046 1.462008 0.578636 0.308707 0.837477 -1.059281 -0.337447 -0.733644 -0.135450 1.570211 0.169679 -1.892528 0.515256 1.261463 -0.534634 -1.286981 0.322167 1.003771 1.464696 -2.094034 1.730433 -0.424927 -0.561967 -1.977729 -1.778273 1.580614 -1.831185 -1.661302 0.877174 -2.364852 -0.528720 -1.198574 1.416983 -1.950110 -0.347635 0.021785 1.887172 0.805472 -0.111273 1.250850 -0.745148 1.534231 0.080457 -0.172104 0.092602 2.516282 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = -3.272624 2.846427 1.259639 -3.842396 5.345743 -1.457844 0.392861 1.577952 0.728064 3.225121 -4.190281 -0.459008 -1.372819 -5.040006 0.202207 -2.600223 -0.185748 3.771983 -1.078973 2.960076 2.854032 -2.071327 1.289834 -2.654453 -1.302864 -3.201892 -0.604431 1.074926 -0.009069 0.520232 2.147849 0.282529 4.457819 0.728480 3.282329 3.255083 0.180621 6.376269 0.893777 1.757222 1.015636 2.433625 -1.155630 -6.293615 2.644560 -1.977796 -2.721809 -4.341653 1.731547 -5.666326 2.464346 3.326253 0.226599 -2.049129 -4.048615 0.984460 4.527540 1.677111 4.270089 1.583863 -1.933460 1.030828 -3.699119 -0.331034 -3.283884 1.679746 1.953954 -3.818146 -0.296671 2.457505 2.203085 -2.176393 -3.565192 0.339809 1.370917 -2.631166 1.298599 -1.675681 -3.833692 -1.793613 -1.794916 0.610811 -0.713337 3.329028 -0.757548 0.989649 -1.175814 0.561890 0.907771 -3.205259 -1.702505 3.612544 -0.412849 0.831221 -1.293327 3.806819 1.601508 -1.759597 -2.755128 -0.634384 1.256490 0.430604 1.893921 0.970082 -4.001389 -3.455350 2.942980 2.278866 -1.198609 1.451334 0.827961 2.211850 0.713341 1.675809 -3.490496 3.665926 -5.793851 0.786736 -0.615892 1.142525 -0.439396 0.810305 0.354768 0.542008 1.866765 -3.965889 5.123365 1.322096 -1.140883 -2.916277 2.353946 0.290779 -1.371340 -1.246986 2.626917 0.209645 -0.621894 0.093419 -0.103207 -0.765817 -1.193108 -2.649478 -0.495723 4.203331 -1.759090 1.262789 -1.289393 -2.425242 0.058631 0.271107 1.157686 0.829250 4.882088 3.160419 -0.634102 0.240070 -3.430316 0.892956 5.853875 2.487886 -3.465600 2.345118 0.437072 0.123371 1.516495 1.231500 2.106184 2.201051 -2.932398 -3.254809 -0.905959 -1.885037 3.743295 3.129251 1.297984 -5.429647 3.720897 0.538266 0.544324 6.409754 2.732436 -3.625200 -0.000803 3.586429 -4.932961 -2.910510 0.596240 0.243161 -0.376162 -0.636256 1.565872 1.121479 -2.886284 -5.161906 -1.873492 -3.901431 3.354930 -0.699349 0.110638 -0.150065 -3.848952 -2.183437 5.008033 0.513823 -2.164665 -1.020198 -2.433494 -1.024879 -5.271901 1.361208 1.864707 -1.878172 -2.321947 -2.498739 0.210848 2.977963 -2.094919 -0.520920 -1.648229 -2.109980 2.297830 0.252015 1.284574 -4.513203 -1.181221 0.199064 0.967826 1.977619 1.317739 1.748928 5.548368 -2.711856 1.267525 3.032846 0.230733 2.047149 4.921360 -2.870022 4.912474 -1.723765 4.361240 -0.238325 1.947683 -0.871090 0.210643 0.631406 -0.647335 -0.311577 2.483185 -3.111024 -1.143942 1.807627 -2.436230 -1.413720 2.453127 2.943170 1.425282 0.648328 1.439363 -1.935957 -0.649291 -0.889073 -0.179748 3.099729 0.195612 -4.092028 0.104691 2.615460 -1.314425 -2.435422 1.061527 1.721696 3.651953 -3.949564 3.578894 -0.514207 -1.697757 -3.753131 -2.783861 2.606170 -3.417796 -2.618907 2.197249 -4.589500 -1.267426 -2.202501 3.332946 -2.751200 -0.026971 -0.591880 3.503343 2.431130 0.007973 2.864424 -0.968450 3.017697 0.109542 -0.761313 0.544813 5.008323 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = -3.256340 3.565154 1.812433 -3.419777 4.439044 -1.694611 0.769609 1.763968 0.514569 2.977317 -4.317964 -0.039782 -1.341157 -4.455172 0.051762 -2.525478 -0.198866 4.206001 -0.747838 2.751560 2.880832 -1.678611 0.856143 -2.845551 -1.235318 -3.118306 -0.551589 0.628776 -0.713187 0.790636 2.390987 0.545682 4.611618 1.194082 3.533609 3.562809 -0.201594 6.584519 1.406113 2.780761 0.740890 2.585215 -1.176526 -6.365945 2.789425 -2.033021 -1.686773 -4.547117 1.344027 -5.617494 3.712218 2.842842 0.345141 -1.678305 -3.846398 0.377804 4.485824 1.762835 4.077885 1.641880 -1.970275 1.807991 -3.165897 -0.337876 -3.269954 1.690515 2.555306 -3.621219 0.139261 1.994446 3.542781 -2.553022 -3.623102 0.257122 0.403719 -2.498790 1.151002 -1.497969 -4.419904 -1.583252 -2.006860 0.430308 -0.434790 3.092189 -0.896289 0.523245 -2.579760 0.522242 1.201463 -2.825434 -2.006600 3.612986 -0.149382 1.345152 -1.347929 3.498965 1.704949 -1.444146 -2.195022 -0.471668 1.395070 0.615227 1.699853 1.633672 -4.652821 -3.035605 3.105704 2.248215 -2.001795 1.363905 0.675274 2.806857 1.135582 1.442988 -2.924884 3.806198 -5.972047 1.164006 -0.151447 0.753506 0.230785 0.535915 -0.463133 -0.004635 1.659484 -3.556654 4.757705 1.314973 -1.186447 -2.922268 2.367877 0.116604 -1.468758 -1.626560 2.546520 0.866731 -0.676068 -0.078259 -0.707366 -1.118591 -0.858597 -4.111437 -0.553659 4.486409 -1.634735 0.906749 -1.472700 -2.341760 -0.222101 0.227302 0.657959 0.723773 4.362227 3.095561 -0.372829 -0.655274 -3.247920 0.228645 5.290181 3.419198 -3.363852 2.000050 1.070162 -0.092279 1.891185 1.023722 1.701464 1.978095 -3.167435 -3.762105 -1.275759 -2.393351 3.584160 3.638010 1.300865 -4.907477 4.131398 0.956860 -0.235808 6.414245 2.439948 -3.085978 -0.629666 3.165842 -4.195210 -3.152451 0.610177 0.376743 -0.706549 -0.183768 1.074030 0.663592 -2.817578 -5.012339 -1.600492 -3.930061 3.409086 -0.464991 0.524448 -0.438375 -4.091181 -2.273966 4.897012 0.637810 -2.175236 -0.800933 -1.980879 -0.635682 -5.040349 1.425131 2.073665 -1.557129 -2.589968 -2.414132 0.788237 2.533100 -2.370451 -0.773478 -0.391153 -3.044308 2.165500 -0.501808 0.970989 -5.826190 -1.311459 0.035914 1.632004 2.363978 1.949385 2.226149 5.987218 -2.369492 0.738168 4.656748 1.030958 1.712973 5.073828 -2.805497 4.217522 -2.532284 3.674361 -0.065853 1.736468 -0.932514 -0.355707 0.754342 0.420394 -0.364900 2.376562 -2.751342 -0.749325 1.186171 -2.876976 -0.407178 2.576285 2.506684 1.297676 0.386124 1.655894 -1.958225 -0.471232 -1.149940 -0.737969 3.251990 0.537096 -4.341921 0.095052 1.914759 -1.621447 -2.055088 0.903716 1.578450 3.224885 -3.578482 3.379963 -0.557924 -2.220677 -3.834508 -2.750886 2.684582 -3.554862 -3.258319 1.936050 -4.169560 -1.165381 -2.039602 3.140973 -3.324073 -0.163948 -0.782491 3.094105 2.284854 0.287480 2.603933 -0.941361 3.458910 0.499390 -0.818715 0.088976 5.509182 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -4.463594 5.097813 3.024435 -3.002017 8.925949 0.208861 -0.510269 3.765453 -4.678038 8.466734 -2.897463 -0.401954 -2.141211 -7.257328 -0.009871 -4.487513 -2.091729 2.028639 0.589398 5.096325 3.061752 -5.135481 0.444602 0.232374 -3.355843 -6.875134 -1.274166 2.573040 9.070141 -5.519525 0.241530 -0.727631 8.200160 -2.014320 7.582751 5.955209 2.622717 5.018264 1.534658 -5.195526 -3.988789 3.817037 -5.553946 -3.110593 0.131737 -2.317422 -5.202496 -1.918017 3.199033 0.209973 -2.200899 6.831838 -2.704016 0.577775 -4.755088 6.528030 1.057889 0.497994 9.606593 0.033000 -0.145923 -2.856809 -8.922948 5.508215 -2.623652 0.222036 -4.363876 -3.406987 3.288966 -2.119044 -1.975597 -4.249029 -0.240322 9.144821 3.920129 -7.047642 0.511407 -4.331353 -10.648510 -7.469860 -6.355568 2.425360 -0.038506 5.699773 1.152700 3.110064 1.458914 5.970627 -3.579225 -11.697981 3.119507 7.959048 -3.775993 -2.839157 -3.192272 7.674335 0.677385 2.254951 -4.126019 -0.602810 2.434093 -1.158333 3.802187 -9.661839 5.497084 -8.865249 0.247793 -2.259068 2.064044 1.757549 4.464192 1.114690 6.487620 9.573308 -7.215236 -1.127708 -7.071937 0.654593 -1.103669 2.017193 -1.767294 5.174733 -1.231455 2.750136 8.451327 -11.800034 1.254625 -1.006747 -1.470521 -9.681763 -0.700809 -4.494820 -1.772906 -2.725028 3.431415 -0.847751 -1.163927 -4.415246 1.699943 2.070963 -4.166987 -2.137570 4.369731 8.863593 -7.063882 2.024316 -1.448943 -2.143888 -1.469438 4.694362 7.215844 7.034138 9.868341 6.629730 0.530764 4.247695 -7.552812 -1.150076 5.898928 1.339116 -6.481537 8.735662 -6.436386 -3.249682 0.535034 6.839988 6.474812 2.410685 -7.521930 -7.527399 5.246096 3.158919 8.042183 -0.575019 0.273191 1.611704 7.698182 -0.701043 -6.748644 7.353291 2.661690 -4.840872 2.948941 1.054097 -4.399497 -2.486545 6.400693 -6.980864 1.601895 -2.240328 -0.627388 4.280354 -2.391644 -0.742743 0.410689 -6.243097 8.894936 -1.915573 0.697567 4.355110 -5.069534 -7.788423 5.170513 -1.055579 -2.650774 -6.522225 -5.590075 -5.978669 -4.399044 2.611945 0.554273 -2.551930 -4.558241 -7.391097 -0.512433 4.484535 2.975491 5.571839 -9.331923 -3.448272 3.471760 3.331605 5.778569 -0.244223 -0.554171 -0.209940 -0.396214 2.462579 -1.602248 7.985149 10.681333 -4.013802 4.867504 -3.988805 -3.388637 2.751278 3.334684 -10.194266 8.795462 2.072205 4.328858 -0.427320 1.780996 -3.119096 1.080269 3.024978 -0.706692 2.245480 0.010349 0.198840 -2.773434 -2.030471 -6.770395 -3.576409 -2.936336 0.981509 -2.597545 3.111005 0.276725 -3.484772 -3.041361 -4.946848 1.133738 4.895929 -0.002454 0.217805 6.111735 -1.085497 3.251548 3.617619 0.183778 2.072469 3.257172 -8.189972 -1.864613 -2.343517 2.235683 -3.715957 -8.694460 -1.337012 -4.301411 -3.212645 4.109467 -7.551982 1.132571 -5.503445 -1.802729 -7.378380 -1.318477 2.653226 9.965321 3.817955 -4.803633 2.555445 -3.370266 5.083374 0.131255 -0.288710 1.902144 4.249288 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/binomial-coefficient.cpp__main = -1.725389 1.698890 1.335775 -1.425938 4.144938 -0.176328 0.099072 2.559441 -1.011240 2.835193 -1.606942 0.417050 -0.180424 -1.947943 0.124652 -1.442467 -0.861906 1.281698 -0.573748 1.074365 1.131079 -0.221655 0.019737 -0.291234 -1.325691 -2.344591 -0.732148 0.920773 1.916044 -1.125606 0.013830 -0.003063 3.040079 -1.041643 2.933577 2.243387 1.903887 1.752204 0.036835 -0.074406 -0.130193 1.070496 -1.744213 -1.486546 0.012032 -0.980160 -2.455341 -0.733937 1.069533 -1.333907 0.552748 2.139067 -0.445460 0.089593 -0.742865 2.670502 0.092406 -0.487206 3.005599 0.497231 -1.806257 -0.331390 -3.091061 3.382751 -0.998491 1.513575 -1.504355 -2.405827 -0.141775 0.261068 0.504086 -1.971349 -0.703324 2.468099 0.929260 -2.179112 0.598338 -1.409664 -1.243681 -2.068687 -1.654497 1.205279 -0.081779 1.621888 0.219028 0.799146 -0.507994 1.519087 -1.055324 -3.578298 0.252541 3.312667 -1.886137 -0.203699 -2.690018 0.847654 0.360568 0.630716 -0.862530 -1.113312 1.060385 0.133755 1.071054 -2.490757 1.486902 -2.441539 0.033595 0.441174 0.581195 1.076495 -0.384637 0.993109 2.066537 2.816357 -1.259550 0.598068 -2.754741 0.977487 -1.117500 0.765391 -0.761701 1.215412 0.581257 1.552912 2.611768 -3.301707 1.152643 -0.403365 -1.136001 -2.704022 0.162604 -1.250790 -1.081183 -0.925407 1.155770 0.192609 -0.569561 -1.264621 0.859731 0.252245 -1.302500 -1.936526 0.864723 1.329111 -2.426451 0.466871 -0.437865 -0.345591 -0.731424 2.082872 2.532304 2.049061 3.517377 2.131332 0.528976 0.623317 -2.953924 -0.206201 2.212829 0.626774 -2.273882 2.889249 -2.467019 -0.924041 0.589402 2.133136 1.103240 1.865777 -2.278162 -2.181989 0.745870 0.618891 3.149302 1.026341 -0.032371 -0.695609 1.620729 -1.733771 -1.974759 3.166792 1.938343 -2.582163 0.332711 0.811264 -0.707794 -1.546678 2.043570 -2.665431 -0.619629 -0.503215 -0.048465 1.477963 -1.014706 -0.846738 1.051579 -2.249539 2.999493 -0.623342 -0.439456 0.813464 -2.132967 -2.427145 2.521255 0.131063 -0.959222 -1.534475 -1.529852 -1.181857 -2.045652 0.672049 1.107312 -0.552725 -1.746577 -2.366731 0.067030 1.658082 0.070033 1.762576 -2.807793 -1.430163 1.397438 -0.093551 1.789465 -1.842579 -0.249895 -1.316085 -0.140621 0.908685 -1.120618 1.973138 3.877542 -1.273966 2.088872 0.202683 -2.063587 -0.141351 1.667320 -3.076721 3.213080 0.639252 0.801796 0.237601 0.765829 -1.445156 0.054066 0.258255 -0.019666 0.185667 0.772944 -0.535823 -0.728766 -0.818155 -2.629513 -0.879942 -0.191236 0.899299 -0.943756 0.732295 0.034006 -1.609312 -1.212693 -2.265955 0.098561 1.769732 -0.832776 -1.034738 2.049919 -0.077522 -0.705228 0.254208 0.100071 1.081035 1.686738 -2.760569 0.054453 -0.033092 0.544361 -2.955250 -2.645434 -0.579241 -1.994544 -1.655792 0.170511 -2.314069 -0.930582 -1.787803 0.017050 -2.575816 -1.726673 1.523584 3.551984 1.380288 -1.386746 1.213088 -1.030974 2.112594 0.503779 -0.019705 0.589656 1.520044 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -6.996639 7.434895 4.560840 -5.565595 13.623858 0.024626 2.921790 6.327962 -9.348108 12.055358 -4.748020 2.238517 -1.949578 -10.341828 0.385195 -6.224987 -2.449279 3.185640 1.101777 8.552827 4.552918 -7.605677 1.518255 -0.583321 -5.176307 -11.050223 -0.270380 4.026809 11.141182 -3.688056 4.316974 -1.026344 10.481391 -2.427348 10.546998 8.803493 2.273057 7.069602 3.090020 -7.928754 -4.365037 4.956002 -7.082129 -7.150566 0.238580 -2.635526 -9.340410 -4.912328 4.234153 -5.813377 -5.307223 9.949412 -3.405510 -0.494933 -6.681204 8.697667 4.626387 -2.775892 12.737707 0.421364 -2.647227 -5.554540 -10.620355 8.883018 -2.854748 -1.018526 -4.229838 -7.424739 4.742392 -0.136266 -5.650645 -2.904797 -0.267631 11.085880 6.205222 -10.327105 0.759616 -6.107668 -15.768609 -8.871805 -5.424583 3.302235 0.627917 9.129869 1.683641 4.492293 3.531569 6.776667 -4.204496 -15.532018 3.277604 12.348015 -5.183581 -4.929451 -5.232286 11.407641 2.744312 1.706804 -5.839787 -1.202351 3.296130 -1.249356 5.527778 -12.629334 2.479168 -11.956165 -1.492025 -1.661814 3.490058 6.706970 3.386656 3.552350 7.641950 11.995710 -10.376716 2.674371 -9.175739 3.222507 -2.923634 3.166227 -3.348644 5.914143 1.645694 5.111204 11.501628 -14.751252 3.857184 0.063316 -0.676291 -13.157627 -0.264726 -5.147575 -2.081520 -3.753156 5.226532 -2.015951 -1.326735 -5.291658 2.484651 3.029230 -5.218161 -4.418442 4.583757 11.707339 -11.197753 3.555779 -2.106646 -2.215614 -1.520485 6.509281 9.447125 9.416270 13.219330 9.465079 0.760897 9.040404 -10.581187 -0.063048 10.863258 4.991663 -8.903312 11.752868 -9.357124 -4.934066 1.196739 7.359736 9.131507 4.735911 -12.275397 -10.478720 8.763009 3.283802 12.166437 2.736624 0.641609 -3.520383 11.315455 -2.165961 -6.723469 9.852010 5.394289 -9.404257 6.014799 3.288721 -10.162245 -3.277457 7.693195 -9.663171 -0.144189 -2.959168 -0.736739 6.457231 -4.075234 -3.488356 -0.733768 -9.242037 11.821597 -2.578744 1.100365 4.130081 -5.988522 -9.385688 7.874279 1.507940 -3.958206 -8.639289 -7.193358 -10.371217 -8.068470 3.280632 1.736179 -3.915118 -6.558668 -10.709040 -2.631156 4.731933 3.150825 7.002333 -13.918525 -2.701904 5.896149 5.975222 5.595882 -3.396814 -0.991029 -0.574195 -0.585179 2.834233 -2.094326 11.323918 12.986512 -6.096943 7.863261 -5.194563 -5.509787 5.157761 4.978796 -13.530753 13.403114 1.899763 9.286121 0.494783 3.149613 -4.556493 1.988457 2.665591 -4.297975 1.668916 1.567668 -2.456085 -4.287531 0.436499 -8.173628 -6.194055 -2.763392 2.997084 -1.527822 3.925865 1.016405 -5.921455 -4.769797 -7.769984 1.692537 7.113287 -2.172181 -2.708929 8.051876 0.657964 3.248197 -1.198659 0.641694 4.889170 4.729289 -12.295241 0.359612 -3.252344 2.127769 -7.767880 -11.121027 2.262547 -7.085475 -7.093307 4.897493 -11.189992 2.098123 -8.076003 -1.065574 -12.091177 -3.961885 3.253429 13.996842 2.038083 -5.386974 4.786353 -4.871381 6.961973 -0.091942 2.147675 2.111514 6.514696 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -7.411066 7.576113 4.654703 -5.417725 15.798771 -2.016729 2.941216 7.040064 -8.942848 12.694040 -4.678085 -0.553830 -2.459645 -12.577306 0.871775 -7.395911 -2.341925 5.036349 1.215823 9.470801 5.020376 -7.544375 0.976658 -0.899206 -5.251969 -9.797516 -1.325263 4.138506 12.617147 -6.502776 3.675780 -0.410488 13.143076 -2.400603 13.777857 10.065356 2.206123 7.309801 3.603065 -8.952080 -4.777937 5.556675 -7.952058 -7.686960 -0.499630 -2.274562 -9.540969 -4.749670 4.357538 -3.807456 -4.605930 10.522582 -3.474069 0.763486 -7.186364 9.255842 3.934276 -0.528940 13.158712 0.642379 -2.261229 -2.851619 -13.531353 9.167662 -3.215484 -0.700229 -5.465619 -7.566527 4.915402 -0.863736 -4.686774 -6.180458 -1.075634 13.132537 7.190576 -10.799284 1.311045 -6.016979 -16.449464 -10.828949 -7.990603 4.063325 -0.687776 9.590792 1.815428 4.931526 2.499235 7.596757 -4.201293 -17.544799 3.522824 13.649455 -5.939922 -5.339802 -5.346388 11.520220 3.282244 2.647615 -5.977015 -3.161810 3.744907 -2.408724 5.895040 -12.380006 5.382914 -12.182344 -1.977374 -2.304945 3.108372 8.350953 5.354633 4.075873 8.852550 13.628949 -10.959930 0.235960 -10.241446 3.317703 -5.420155 3.319197 -3.120578 6.716432 1.412911 5.333001 11.866422 -17.680109 3.327331 0.270417 -0.020913 -14.540821 -0.238143 -6.110265 -2.592142 -4.565201 5.757338 -1.542675 -1.317113 -5.716278 2.063837 3.617864 -4.834843 -3.961462 5.013694 13.309836 -12.366861 3.671049 -2.201804 -2.777468 -2.148639 6.685816 10.886472 10.436336 13.864479 10.417684 -0.401079 6.939782 -12.173255 -0.785033 11.146475 1.312882 -9.347312 13.682252 -9.692877 -5.581729 1.063429 9.607557 9.740428 3.334738 -13.074222 -11.454026 8.694339 3.649050 12.706728 0.553079 -0.140050 -2.930933 12.069255 -1.417572 -10.037357 12.844808 4.550946 -9.867229 5.663825 3.593822 -10.069816 -4.712479 8.602833 -11.528147 0.737014 -4.237740 -0.159978 6.318459 -4.372417 -2.656227 0.387185 -10.008023 12.713772 -2.683793 -1.151802 4.427998 -6.637449 -10.655851 10.859349 1.353974 -3.863973 -9.647858 -9.241360 -9.300999 -8.399283 3.761908 1.023638 -3.387830 -6.489300 -10.962832 -1.953475 6.734178 3.090673 8.308515 -14.350044 -3.260211 5.427982 6.168019 7.093915 -3.990284 -1.047489 -0.501836 -0.538702 2.375450 -1.874386 11.644845 16.275076 -6.570320 7.172659 -3.136987 -6.923510 5.200314 5.309459 -15.721155 13.881450 2.070198 9.989925 0.397463 3.295054 -5.159412 1.494021 3.640532 -3.325876 1.576432 1.340208 -1.718919 -4.457602 -0.698540 -9.908248 -7.767431 -3.470741 2.990620 -1.995442 4.126791 -0.089592 -6.943973 -4.004547 -8.091979 2.220674 7.836743 -0.924107 -2.365997 9.131302 0.772356 3.661602 0.414769 0.277756 4.157770 5.305138 -13.299129 -0.212360 -3.362534 4.180838 -7.116425 -13.032557 1.939287 -8.535324 -5.866698 4.818690 -12.036387 1.192463 -8.465039 -1.472213 -13.637833 -3.437093 4.228579 15.745925 3.544746 -6.447844 4.576076 -5.483574 7.482842 0.161249 1.384408 2.128994 7.305515 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -2.220279 1.468075 0.489227 -1.363024 4.592368 -0.984472 0.564518 2.533396 -1.894221 3.250504 -1.443682 -0.137233 -0.969862 -3.518965 0.392292 -1.107871 -0.060622 1.889326 -0.120689 1.923121 1.727608 -1.498464 0.312499 -0.478208 -1.187715 -2.373551 -0.285115 1.016877 2.774789 -1.450518 0.188489 0.357158 3.901528 -0.448930 3.651078 2.721611 1.158326 2.586375 1.033889 -1.888719 -0.911956 1.806304 -1.964668 -2.766145 0.519639 -0.966336 -2.418913 -1.380545 1.450204 -1.431387 0.016915 2.811844 -0.709749 0.194307 -1.964383 2.128797 1.322089 -0.038758 3.639839 0.576202 -1.152338 -0.789767 -3.290827 2.746379 -1.324565 0.297901 -1.001743 -2.566487 0.598192 0.139788 -0.299029 -2.168161 -0.937843 2.893792 1.525148 -2.677227 0.766904 -1.146803 -2.564399 -2.901556 -2.773638 0.847822 -0.790651 2.706235 0.087886 1.022095 -0.091736 1.502153 -0.644013 -4.389233 0.606229 3.402541 -1.800304 -0.398084 -1.802659 2.402788 0.607139 0.513336 -1.742839 -1.213637 0.987172 -0.506607 1.623229 -2.353060 1.189249 -2.630793 0.087671 -0.488063 0.877048 2.185605 1.579468 0.960617 1.981124 3.237774 -2.179063 0.160399 -3.228893 1.197272 -1.204213 0.918822 -0.752784 1.672869 0.979059 0.831866 3.005076 -4.639938 1.322099 0.191922 -0.165130 -3.492084 0.403394 -1.433207 -1.012318 -1.370227 2.158474 -0.414065 -0.607473 -1.354096 0.849703 0.770082 -1.989903 -1.179557 0.521470 3.088985 -3.387267 0.833936 -0.934756 -1.282729 -0.435696 1.555114 2.416521 2.771423 3.679261 2.963937 -0.509321 1.572857 -3.596397 0.175621 3.376968 0.715643 -2.763898 3.250193 -2.439795 -0.954199 0.816993 2.429159 2.470607 1.001000 -2.565468 -2.243017 1.877077 0.899559 3.584583 0.472827 0.551411 -1.441034 2.336337 -0.322956 -2.129709 4.111277 1.266689 -3.179534 1.544086 1.273714 -2.108656 -1.191236 1.805827 -2.793096 -0.157186 -1.527893 0.499343 1.983395 -1.912175 -1.037543 0.410082 -2.817784 3.286704 -0.691511 -0.419651 1.289663 -2.618775 -1.837670 3.477254 0.510940 -0.940527 -2.402827 -2.689822 -2.254293 -2.744164 1.118784 0.322808 -0.758625 -1.757789 -2.946533 -0.687859 2.528566 0.681705 1.820138 -3.890307 -0.552102 1.607852 1.092046 1.786859 -1.909689 -0.586325 -0.040420 -0.115436 0.980660 -0.639071 2.343326 4.227377 -2.195903 1.705155 0.260905 -1.202078 1.194050 1.707327 -3.885359 3.694588 0.332500 2.696362 0.076076 1.159182 -1.595995 0.338358 0.616482 -0.061194 -0.017679 0.761482 -0.882617 -1.099012 0.214030 -2.673199 -2.120795 -0.547863 1.086778 0.005211 0.997689 -0.433991 -1.744012 -0.943794 -2.077571 0.656322 2.415272 -0.420601 -1.190854 2.116106 0.245534 0.121100 -0.033142 0.394692 1.054524 2.044117 -3.580508 0.188040 -0.579114 0.956617 -2.186141 -3.484923 0.386906 -2.039807 -1.564484 1.694824 -3.539693 -0.193363 -2.150145 0.303834 -3.723061 -0.544203 0.553744 4.057862 1.053653 -1.215551 1.756814 -0.998843 2.005621 0.007842 0.163629 0.526442 2.352056 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -1.125945 0.208406 -0.740535 -0.690813 2.250547 -0.658777 0.451685 0.602276 -1.105680 1.567597 -0.373289 -0.941388 -0.736955 -2.202317 0.495115 -0.487967 0.311084 0.884060 0.101641 1.428497 0.945601 -1.328928 0.218928 0.017552 -0.373241 -0.918253 -0.200915 0.833913 2.084538 -1.168338 -0.375089 0.344045 2.200982 -0.419681 1.984929 1.588898 0.263630 1.192245 0.726160 -2.787690 -0.611718 1.182993 -1.166765 -1.417295 -0.031032 -0.204128 -1.514180 -0.759878 1.108113 0.081836 -0.669298 1.763461 -0.688950 0.142412 -1.626387 0.915915 0.599768 0.493334 2.105989 0.229292 0.067825 -0.478959 -1.515264 1.677972 -0.700923 -0.415735 -1.078128 -1.326718 0.628674 -0.047176 -0.923210 -0.777680 -0.572636 1.618203 1.304795 -1.443969 0.577507 -0.527774 -1.138181 -1.776699 -1.874633 0.408462 -1.154675 1.870284 -0.059098 0.638097 0.280043 0.881662 -0.380158 -2.331197 0.699793 1.515365 -0.847867 -0.730342 -0.121713 1.885409 0.762369 0.141566 -1.296253 -0.559618 0.335047 -1.011153 1.161186 -0.852312 1.557913 -1.090672 -0.621505 -0.488161 1.224697 1.963845 1.696484 0.436774 1.232385 1.533856 -1.108424 -0.774366 -1.308469 0.631281 -1.304138 0.467166 -0.411712 1.518376 1.030342 0.301388 1.761981 -2.542120 0.326115 0.230480 0.513827 -1.480371 0.209992 -0.714568 -0.535370 -0.857879 1.375899 -0.509922 -0.392926 -0.655535 0.691642 0.989542 -0.966919 1.118605 0.280264 1.371027 -1.480556 0.600374 -0.519991 -0.976267 0.228597 0.743066 1.226715 1.942617 2.132142 1.946914 -0.848451 0.945299 -2.075965 0.518991 1.946111 -0.732465 -1.403406 1.780652 -1.442459 -0.705681 0.269146 1.725157 1.915810 0.364919 -0.824473 -0.765233 0.752096 0.898208 1.911216 -0.404962 0.145022 -0.348556 1.090692 0.105934 -0.891564 1.874134 -0.069657 -1.457892 1.074267 0.791648 -1.851805 -0.479016 0.897541 -1.527975 0.319777 -1.518672 0.695941 1.579517 -1.173301 -0.162958 0.018032 -1.371811 1.375042 -0.658403 -0.980714 0.907573 -1.390275 -0.447077 2.067193 0.400709 -0.183359 -1.645449 -1.856074 -0.965896 -1.501167 0.763525 -0.544117 -0.191824 -0.640196 -1.556017 -0.946154 1.514232 0.872967 1.226930 -2.405577 0.616312 0.898917 1.478468 0.781333 0.142298 -0.316219 0.799155 -0.347074 0.072139 -0.551215 1.024867 1.592459 -1.575803 0.281485 -0.437708 -0.517942 1.227626 0.588783 -2.394815 2.279963 0.577687 1.510680 -0.067591 0.477774 -0.710161 0.263256 0.475762 -0.395390 -0.185750 0.097023 -0.396140 -0.731346 0.721667 -0.586228 -1.753312 -0.709498 0.736417 0.008545 0.890595 -0.618037 -1.009494 -0.427823 -0.530403 0.817707 1.332548 -0.052385 -0.163595 1.429824 0.328210 0.646091 0.067175 0.085545 0.469241 1.152485 -2.207871 0.014442 -0.524960 1.322318 -0.366510 -1.798813 0.326363 -0.500751 -0.129347 1.538541 -1.686925 0.076461 -1.399445 0.043221 -1.337889 -0.047270 0.335525 2.148274 0.554437 -0.915522 0.786542 -0.608690 0.721212 -0.377227 -0.077709 0.408718 0.989183 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.585527 0.385115 -0.471170 -0.218189 0.741880 -0.046335 0.031177 0.403320 -0.512664 0.936406 -0.336061 -0.191835 -0.229328 -0.879056 -0.059246 -0.103336 -0.111934 0.161535 -0.007237 0.277247 0.381735 -0.594720 0.008322 -0.022427 -0.371945 -0.417216 0.026709 0.223122 1.032679 -0.807412 -0.356567 -0.035100 0.981054 -0.201772 1.042871 0.685365 0.258840 0.553653 0.393713 -0.551071 -0.522261 0.554300 -0.606805 -0.482925 -0.195644 -0.306171 -0.363146 0.005418 0.419756 0.217083 0.418808 0.688618 -0.290994 0.186318 -0.580583 0.528908 -0.025602 0.061927 1.226853 -0.021821 -0.241159 -0.431815 -0.745519 1.363306 -0.403501 0.011851 -0.182576 -0.355994 0.432820 -0.280076 -0.466500 -0.463510 -0.195471 0.994481 0.337174 -0.888642 0.025126 -0.432599 -0.988151 -0.543956 -0.759641 0.259136 -0.019608 0.658346 0.108485 0.307795 0.009764 0.669444 -0.373965 -1.361937 0.373548 0.899775 -0.613621 -0.003639 -0.302305 0.846843 -0.156179 0.344130 -0.555404 0.097308 0.227478 -0.034475 0.396579 -1.259986 0.578228 -0.920921 0.219067 -0.357537 0.072937 0.198380 1.029228 0.099943 0.786122 1.120389 -0.272198 -0.418187 -0.817152 0.081423 0.120040 0.136685 -0.127703 0.547920 -0.055640 -0.078659 1.095172 -1.287523 0.089369 -0.092066 -0.077091 -1.248496 -0.179743 -0.608079 -0.311552 -0.310166 0.464937 -0.034560 -0.111802 -0.624647 0.173013 0.337094 -0.953447 -0.260592 0.559888 0.734160 -0.596674 0.127863 -0.184673 -0.197746 -0.301319 0.680091 0.718628 0.798832 1.048277 0.721532 0.070448 0.445474 -0.825213 -0.092037 0.687818 0.217766 -0.953669 0.915596 -1.111013 -0.334855 0.093503 0.736854 0.791951 0.273525 -0.700519 -0.472670 0.876131 0.395387 0.982074 -0.395360 0.181209 0.567724 0.811703 0.246105 -0.733915 0.901933 0.179902 -0.823015 0.582075 0.070314 -0.137470 0.028122 0.873219 -0.834165 0.245919 -0.497130 -0.060941 0.522923 -0.434064 0.159003 0.101716 -0.792748 1.186621 -0.176144 0.066083 0.491439 -0.954846 -0.317109 0.686540 0.011642 -0.226867 -0.711704 -0.561441 -1.081153 -0.602103 0.244031 0.102556 -0.290053 -0.487707 -0.915809 -0.071997 0.590049 0.368510 0.770209 -0.796491 -0.263483 0.442714 0.547255 0.565859 0.204636 -0.142307 0.082040 0.146775 0.515973 -0.372135 0.911446 1.028099 -0.442237 0.733131 -0.138870 -0.153663 0.271920 0.274399 -1.140357 0.985354 0.137805 -0.102095 -0.053279 0.247767 -0.437861 0.057309 0.239349 0.236577 0.187090 -0.148073 -0.001297 -0.272724 -0.328831 -0.768826 -0.255504 -0.345998 0.040177 -0.016676 0.335972 -0.170954 -0.235402 -0.453545 -0.832459 0.146575 0.593413 0.079547 0.019971 0.754184 -0.344446 0.338308 0.873446 0.017839 0.175172 0.467557 -0.931361 -0.453135 -0.187327 0.212232 -0.458259 -0.907090 -0.440446 -0.228685 -0.232924 0.488395 -0.819919 0.205229 -0.564852 -0.230125 -1.053263 -0.023016 0.119136 1.216695 0.417590 -0.476663 0.321698 -0.310041 0.630377 0.165139 -0.009581 0.276728 0.457147 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -6.962065 6.487977 2.559421 -5.293902 12.906044 -0.602074 2.295522 4.357700 -5.557021 11.558777 -5.327788 -0.247366 -2.660508 -11.080722 0.112473 -5.458023 -2.146448 3.687378 0.293523 6.586335 5.021958 -7.185402 1.426958 -1.217575 -4.368559 -10.788163 -0.968701 3.430237 9.925556 -5.083751 3.327579 -0.725181 10.670567 -1.387415 10.490779 8.479838 2.894389 8.215527 2.228669 -3.332508 -3.986014 5.572890 -6.670304 -7.965434 1.225112 -2.936007 -8.216741 -5.367569 4.308323 -5.019882 -0.532106 9.726228 -3.084645 -0.322674 -6.839986 7.388185 5.010343 -1.100624 12.506284 0.914093 -2.443679 -3.098619 -10.817129 8.361575 -3.901387 0.223879 -1.859020 -7.132535 3.428963 -0.704428 -3.023226 -4.085622 -1.982389 10.390741 5.817806 -9.787285 0.843937 -5.837914 -14.375487 -9.140530 -6.925889 3.021579 0.936029 8.998967 1.477756 3.817973 2.578596 6.208615 -3.451492 -15.006145 2.620507 11.630505 -4.840190 -2.747129 -5.092658 10.292406 1.183136 1.845962 -6.165922 -1.275252 2.981346 -0.795226 5.306513 -9.235036 0.585763 -11.472222 0.773501 -1.655386 1.520172 3.553456 6.021845 1.758562 6.634183 11.564778 -9.983028 2.503862 -9.693961 2.865951 -0.414891 3.206120 -2.431680 5.313912 0.546881 3.035408 10.700253 -14.552252 4.016092 0.004830 -1.700460 -12.956516 -0.340699 -5.402115 -2.846136 -3.536434 5.341509 -1.277423 -1.286593 -5.013345 1.758660 2.266495 -5.619620 -4.424362 4.165305 11.521221 -9.328868 3.000180 -2.378410 -3.305764 -2.404831 5.974310 8.504123 8.687266 13.127674 9.372216 0.496641 7.011107 -10.190592 -0.449877 10.699099 5.331216 -9.179892 10.792679 -8.412656 -3.265754 1.798662 7.448535 8.674436 2.888467 -10.545539 -7.897877 8.144915 2.484280 11.677013 1.390902 1.402967 -3.010442 10.262288 0.834957 -6.803831 11.545989 5.682642 -9.356457 5.551211 3.253530 -8.516506 -3.305136 7.616285 -8.044701 0.131636 -3.452296 0.474744 5.399410 -4.316645 -3.201364 -0.567715 -9.412744 11.896758 -2.262192 1.963273 5.297733 -7.617995 -9.318505 8.371901 -0.014713 -3.864911 -7.963414 -7.122861 -8.759275 -7.982525 3.637469 1.709989 -4.116617 -6.216865 -10.225669 -0.842014 6.612705 2.466100 6.698652 -10.900944 -3.589015 5.295407 4.359436 6.016232 -3.983865 -1.588522 -0.158021 0.830135 3.611173 -0.991119 9.608088 13.837205 -6.192294 6.665423 -2.871532 -3.886727 4.406855 5.583180 -12.675083 12.594224 0.936771 7.192833 -0.405848 3.544032 -4.418708 1.506238 3.088635 -1.781599 1.808409 1.557386 -2.286040 -3.702647 0.172830 -9.185300 -5.392422 -1.873657 2.591094 -0.713186 3.631359 0.697753 -5.229899 -3.766203 -7.031278 1.510258 7.431626 -0.143161 -2.869498 6.837424 0.250036 2.792150 0.820852 0.976112 3.749050 5.752070 -11.621797 -0.053599 -2.913524 1.299300 -7.072581 -11.519270 1.501312 -7.572687 -6.541694 5.621932 -11.356090 1.545025 -7.908721 -0.648217 -11.795822 -1.867376 1.768861 13.543161 4.091630 -4.383272 4.917731 -3.923787 7.199206 -0.200854 0.587005 3.211533 7.411121 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -4.863242 4.168000 1.806227 -3.790204 10.735986 -1.663072 1.765281 3.374256 -3.739554 8.277909 -3.337883 -1.565933 -2.314517 -9.254649 0.641114 -4.306383 -1.251277 3.705568 0.378398 5.242037 3.635610 -5.338658 0.914427 -0.586175 -2.876798 -7.413353 -1.083870 2.865821 8.032829 -4.939936 1.540302 -0.068160 8.786312 -1.366517 8.079048 6.375319 1.922031 5.602580 1.723577 -4.860031 -2.689228 4.096033 -4.910406 -5.555838 0.565330 -1.431192 -6.315952 -3.932558 3.437871 -2.463065 -1.376055 7.346094 -2.422820 -0.142865 -5.352784 5.942289 3.180267 0.284702 8.772082 0.788467 -0.738512 -1.349781 -8.937305 5.595166 -2.873084 -0.044079 -2.906362 -5.241752 2.330134 -0.481185 -2.440087 -4.151936 -0.951037 7.807259 4.818761 -6.915460 0.871795 -3.945386 -9.123031 -7.520555 -6.676920 2.333179 -0.761989 6.793797 1.013920 2.857186 2.141247 4.555614 -2.461313 -11.012138 2.150640 8.197203 -3.565779 -3.136716 -2.384280 7.571875 1.551454 1.096841 -4.358338 -1.899325 2.110492 -1.751208 4.133393 -6.335951 2.877020 -7.968773 -0.469326 -1.304273 1.952867 3.418298 5.891316 1.142072 4.768151 8.325987 -7.671803 0.249165 -7.625058 2.041519 -1.694510 2.313782 -1.859731 4.536557 0.900035 2.817563 7.576066 -12.046569 2.550752 0.033149 -0.523858 -8.808963 -0.075660 -3.642732 -2.031513 -2.803573 4.184892 -1.109066 -1.071852 -3.214126 1.718609 2.218602 -3.853073 -1.061477 2.796271 8.691557 -7.800184 2.373830 -1.775895 -2.825320 -1.282249 3.975298 6.526698 6.800342 9.598188 7.164670 -0.550906 4.272751 -8.270413 -0.026592 7.488343 0.823909 -6.155285 8.321100 -6.001392 -2.545332 1.058664 6.603302 6.605179 1.580536 -7.231031 -5.623883 5.920932 2.202457 8.279822 -0.223291 0.617829 -2.075744 7.091419 0.270504 -5.507089 9.104247 3.411934 -6.684315 4.081693 2.697226 -6.869950 -3.012235 5.413612 -6.335561 0.752502 -3.264869 0.857511 4.352591 -3.267058 -1.874534 -0.339881 -6.521221 8.041392 -1.915028 -0.249211 4.177160 -4.928606 -6.286823 7.480830 0.112831 -2.376975 -6.357863 -6.417460 -5.727468 -5.699015 2.855004 0.349213 -2.561870 -4.101420 -7.180868 -0.954942 6.108523 2.100053 5.124694 -8.576442 -1.550630 3.734837 4.010508 4.760666 -2.172329 -1.059682 0.656346 -0.283685 1.594335 -0.897515 6.560344 10.226432 -4.939505 4.418839 -1.850769 -3.137019 3.603967 3.803168 -9.804649 9.364814 1.373877 6.657143 -0.312078 2.363907 -3.286758 1.113999 2.629010 -1.596819 1.042501 0.818992 -1.450222 -2.803660 0.216766 -6.520122 -5.296513 -1.755334 2.272474 -0.762196 2.872371 -0.114900 -4.115144 -2.303842 -4.521303 1.727899 5.377671 0.190641 -1.649140 5.299488 0.846894 2.321672 0.267569 0.642188 2.402035 4.311402 -8.656892 0.042340 -2.189358 2.663807 -4.266937 -9.277066 1.322248 -5.500831 -3.842596 4.232047 -8.294641 0.567825 -5.838109 -0.343535 -9.043635 -0.966216 1.608564 9.887721 3.218729 -3.596285 3.399515 -2.946259 4.592989 -0.484443 -0.150715 2.256351 4.907133 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -5.167096 3.891863 2.649812 -4.374033 11.143607 -1.635994 1.521770 4.149422 -1.028337 7.616602 -4.653645 -2.291637 -2.046897 -7.639601 0.570819 -4.680425 -1.748306 4.542085 -1.397423 3.800667 4.004417 -2.543104 0.705193 -1.488771 -2.871333 -5.849258 -2.347871 2.554251 5.204816 -3.616155 1.045179 0.128742 8.879695 -1.385012 8.332691 6.391222 3.083426 6.684622 0.003985 -0.124213 -0.748747 4.220779 -4.665317 -6.404052 1.219609 -2.429658 -6.383931 -4.299574 3.318417 -4.263372 2.475565 6.684401 -1.423007 -0.430896 -3.833710 5.666940 2.477474 1.053654 8.323016 1.721638 -3.175559 1.306611 -9.263039 6.156222 -3.305989 3.692680 -2.366560 -6.996671 -0.260068 0.431187 1.192790 -5.670334 -3.023836 6.294720 3.545739 -5.869005 1.723153 -3.830535 -5.237273 -6.060284 -6.289683 2.559013 -0.822979 5.831447 0.118444 2.033748 -0.322488 3.690969 -1.895658 -9.729741 0.376094 8.647282 -4.024438 -0.884115 -4.400606 3.919868 0.874716 1.102652 -3.933976 -2.337311 2.461696 -0.277509 3.603751 -3.583972 1.390658 -6.803423 0.951173 1.378201 0.837068 2.347205 3.540913 1.922046 4.558979 7.236368 -5.514226 2.189264 -7.912191 2.526736 -2.457985 2.458511 -1.527202 3.911412 1.134872 2.754467 6.676206 -10.120088 3.738669 -0.293136 -2.524453 -7.301727 0.880426 -3.248975 -3.166539 -2.760710 4.054201 0.292046 -1.654321 -2.851445 1.514432 0.807712 -3.046128 -2.889663 1.837658 5.094482 -5.915131 1.537812 -1.844868 -2.793086 -1.652919 4.595362 6.029671 5.649985 9.615976 6.749319 -0.035830 0.564319 -8.178303 0.107801 7.330440 0.475342 -6.439690 7.344603 -5.178690 -1.489152 2.024227 5.854530 4.566730 3.496181 -5.608218 -4.631184 2.358575 1.034718 8.508170 2.307078 0.844881 -3.401115 5.090268 -2.011919 -4.855829 10.088194 4.997358 -7.213118 1.314602 2.964175 -4.985242 -4.547403 4.892903 -5.439453 -0.500681 -2.560859 1.077549 3.785526 -3.451057 -3.278296 1.222279 -6.807140 7.991512 -1.878308 -0.884145 2.916012 -6.463603 -6.291003 8.430703 0.397645 -2.857722 -4.765528 -5.259983 -3.055204 -6.395743 2.843028 2.049264 -1.753211 -4.858053 -6.451849 0.643498 6.107004 0.169545 4.333053 -5.302843 -3.075596 3.649523 0.622820 5.177427 -4.823859 -1.332661 -1.574439 -0.011554 2.589959 -0.972105 4.595543 11.027299 -4.601062 4.296083 2.053200 -3.734347 1.084639 5.225198 -8.417010 9.163395 0.522833 4.368625 -0.549453 2.616247 -3.296758 0.324024 1.891546 -0.095983 0.566350 2.223912 -1.835836 -2.122950 -0.772201 -7.419645 -3.303277 0.034960 2.790458 -1.099301 2.356352 0.343517 -4.839642 -2.266761 -4.438201 0.615462 5.724985 -0.308021 -3.569100 4.491936 0.506500 -0.743268 -0.570005 0.720419 2.317512 5.434366 -8.085709 0.849476 -0.896703 1.128121 -6.420958 -7.586548 0.086193 -6.235946 -4.150890 2.739726 -6.648805 -1.331191 -5.493322 0.881762 -7.313844 -2.716111 2.075131 9.268767 4.782988 -3.069788 3.743791 -2.375330 5.905092 0.665758 -1.310693 2.322297 5.437010 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -10.401088 13.282342 6.519825 -9.472434 22.097427 -4.355215 3.611057 8.719790 -10.640316 18.286598 -7.047132 -1.658656 -3.797106 -21.363449 0.777868 -12.472592 -4.997677 9.327210 2.493664 14.229732 7.269003 -12.460346 1.521825 -0.564118 -8.106815 -16.296571 -1.907369 6.703904 18.134811 -12.495240 6.789986 -1.323287 20.260598 -4.393979 19.125064 14.681185 3.509026 11.734617 5.569775 -11.462662 -7.458218 7.903669 -11.180058 -10.698416 -0.488321 -2.046558 -14.025857 -7.544783 6.563151 -5.775611 -5.286744 15.998848 -5.138192 -0.248487 -11.901275 14.213646 6.214389 -0.673152 19.671401 0.752854 -1.253053 -3.921259 -19.808556 13.488380 -5.797608 -1.313240 -7.580132 -9.043747 8.145656 -1.612482 -7.895793 -8.575443 -0.686123 18.773167 11.149187 -16.509076 0.799207 -10.466462 -26.370645 -16.344588 -12.658276 6.163609 -0.337229 13.967521 2.874410 7.378045 5.069320 11.943166 -7.532941 -25.003827 5.725051 19.407372 -7.609167 -9.847847 -5.792484 19.492622 4.647848 2.837722 -9.046919 -4.541803 5.485120 -3.672531 9.248592 -18.314233 6.122140 -20.166785 -2.602563 -2.940194 2.899413 10.127539 11.332459 4.865674 12.411147 19.768470 -18.902200 -0.155951 -19.037410 3.614533 -5.062264 4.943032 -3.958484 9.505135 -0.193817 8.541508 16.699157 -27.167027 5.461481 -0.330938 -0.599573 -21.083297 -0.662546 -7.803497 -3.263687 -6.379342 7.744855 -2.031919 -2.027051 -7.800602 2.797508 5.893975 -6.919177 -6.257362 8.850047 21.359983 -18.241009 5.693563 -3.158993 -4.238485 -3.120076 9.293500 15.886718 14.255911 22.223398 14.872565 1.119553 11.455872 -18.643140 -2.346221 15.258179 2.250961 -13.286541 19.752132 -13.915823 -8.397477 0.467685 16.263965 14.083183 4.910500 -19.864141 -17.735159 15.691269 4.718908 17.634468 -2.684628 -1.430914 -4.327644 19.427821 1.763150 -14.203071 20.816331 7.696371 -13.144758 7.983071 4.610777 -14.667391 -7.928750 13.962477 -15.443224 1.482432 -4.456987 -0.506448 8.706353 -5.346110 -4.595296 -1.490800 -14.094440 17.635608 -4.757792 -2.187657 7.226432 -9.733149 -16.923180 15.486048 0.732686 -6.327763 -14.105370 -14.711166 -12.310777 -11.784649 6.148052 2.709257 -5.576368 -10.160836 -15.448673 -1.442351 11.345029 4.654350 11.756389 -21.371068 -6.557521 8.855402 10.843034 10.884005 -5.210965 -1.073083 0.186863 0.574694 3.456247 -1.056217 18.191262 24.471994 -9.250093 11.799268 -5.473931 -10.471646 8.253156 8.933518 -23.202604 21.407921 3.817800 14.720479 -0.098194 3.514801 -7.047014 2.329547 6.618585 -4.608070 3.789938 0.123627 -1.764205 -6.552865 -2.716061 -14.463925 -10.606674 -4.764525 4.798750 -4.249468 6.775883 0.528056 -8.654202 -6.853059 -11.066949 2.279366 11.256779 0.371115 -2.284913 13.403618 1.321415 7.324923 4.015010 -0.013768 6.662522 7.483322 -19.201300 0.148719 -5.748386 5.279784 -10.568157 -21.068259 3.397126 -12.702852 -8.349011 5.967442 -18.133994 1.504019 -12.557078 -1.762535 -21.185025 -2.816736 6.102469 22.214033 6.336451 -9.441621 5.885990 -8.412651 11.552624 0.302988 0.483631 4.599951 11.332501 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -2.653745 2.710420 1.241289 -2.175899 5.542814 -1.103155 0.622582 2.616666 -1.871593 4.256752 -1.915558 -0.596312 -1.043523 -4.815938 0.262309 -2.438120 -0.920177 2.479354 0.079177 2.757498 1.986438 -2.267539 0.372488 -0.350493 -1.765388 -3.489892 -0.642632 1.472819 3.698772 -2.529817 0.963684 -0.059709 4.972909 -0.892541 4.615931 3.486967 1.330640 3.159946 1.072938 -1.758671 -1.397255 2.102111 -2.619232 -3.018340 0.335309 -0.909927 -3.268434 -1.860634 1.702324 -1.781500 -0.066554 3.729934 -1.038478 -0.014422 -2.505322 3.117141 1.383962 0.061309 4.710620 0.509110 -0.996055 -0.657055 -4.620419 3.455458 -1.608026 0.531239 -1.548802 -2.808574 1.127423 -0.151795 -0.889090 -2.483449 -0.725169 4.078877 2.257052 -3.645605 0.581393 -2.197991 -4.601357 -3.663698 -3.353329 1.374483 -0.438907 3.287486 0.377645 1.478964 0.465130 2.455507 -1.473605 -5.740333 1.028093 4.552575 -2.067939 -1.388407 -1.854091 3.607005 0.798846 0.717550 -2.124647 -1.268483 1.343152 -0.565199 2.137837 -3.446623 1.269533 -4.282754 -0.029602 -0.304277 0.707021 2.183011 2.477782 1.116719 2.790501 4.463499 -3.750578 0.265290 -4.575995 1.143881 -1.252594 1.231193 -0.887390 2.191268 0.400832 1.657539 3.857554 -6.147284 1.569108 -0.033894 -0.522185 -4.627488 0.177947 -1.889313 -1.142412 -1.578935 2.173510 -0.342444 -0.716052 -1.819506 0.804058 1.059667 -2.012199 -1.673879 1.482687 4.199159 -4.109495 1.137692 -0.949651 -1.309026 -0.734685 2.268416 3.501180 3.357092 5.234477 3.611128 0.043944 1.923486 -4.565760 -0.275721 3.855149 0.590718 -3.388839 4.380399 -3.188984 -1.530152 0.575896 3.630837 3.065416 1.519524 -3.897262 -3.511204 2.880342 1.049537 4.392011 0.030029 0.122592 -1.437055 3.761433 -0.025681 -3.097242 5.361831 2.036303 -3.535653 1.538584 1.250930 -2.954431 -1.920327 2.973303 -3.468935 0.057664 -1.313647 0.173990 2.223704 -1.756216 -1.385318 0.176509 -3.528851 4.253828 -1.058805 -0.490655 1.689494 -3.020516 -3.393127 4.148455 0.353172 -1.507913 -3.092197 -3.412144 -2.552964 -3.098683 1.513703 0.838613 -1.128247 -2.500727 -3.651840 -0.273377 3.062968 0.889016 2.578993 -4.636560 -1.485301 2.134357 1.644813 2.628817 -1.981898 -0.502279 -0.286533 0.036351 1.192280 -0.422246 3.606616 5.815891 -2.399821 2.688833 -0.177157 -2.172886 1.444183 2.340462 -5.167775 5.031165 0.663020 3.076611 -0.060383 1.120517 -1.824618 0.452753 1.246018 -0.479389 0.608238 0.538888 -0.673236 -1.425429 -0.487147 -3.662844 -2.307963 -0.788634 1.257077 -0.705725 1.482662 -0.120615 -2.239100 -1.526098 -2.570895 0.501961 2.927311 -0.108116 -1.103235 2.908379 0.181314 0.859869 0.583129 0.234747 1.446250 2.297859 -4.544190 0.146930 -0.959479 1.021264 -2.924259 -4.646977 0.404222 -2.934858 -2.008257 1.514838 -4.265069 -0.087756 -2.926978 -0.034836 -4.757928 -0.761356 1.184773 5.227185 1.787160 -1.986753 1.757745 -1.630867 2.902889 0.236536 -0.140268 1.065616 2.921473 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.910135 1.862665 1.911480 -1.898341 5.137101 0.175822 0.409516 3.722472 -0.683695 2.819705 -2.398697 1.117717 0.401066 -1.241549 0.114207 -1.665405 -1.226517 1.437795 -1.483697 0.320208 1.144996 1.326329 -0.032742 -0.719260 -1.550452 -2.293075 -1.217738 0.858415 0.804842 0.143592 0.215452 -0.098483 2.997801 -1.414701 3.055289 2.250037 3.009122 1.677633 -0.871827 2.096979 1.075215 0.824697 -1.687255 -1.889032 -0.037107 -1.414055 -3.309770 -0.659767 0.991294 -3.045908 1.496292 1.926184 0.063636 -0.157743 0.475530 3.223721 -0.169796 -1.485706 2.681369 0.928028 -3.876490 0.202268 -3.238599 4.536617 -0.804864 3.473670 -1.556948 -3.699850 -1.560895 1.166501 1.471252 -2.370015 -1.169021 1.864344 0.539886 -1.865573 1.072066 -1.496452 0.780546 -1.272123 -0.789349 1.646604 0.088806 1.190451 0.093513 0.490349 -1.080667 1.014155 -0.953443 -3.193335 -0.628281 4.098916 -2.388430 0.446705 -4.601744 -1.255396 0.266660 0.668231 -0.363167 -1.767002 1.344103 1.088414 0.717601 -2.151517 0.733802 -2.247631 -0.008650 1.919467 0.406006 1.366400 -2.550711 1.462261 1.926881 2.485519 -0.321576 1.950113 -2.596148 1.589977 -1.918838 0.929075 -1.118748 0.668186 1.660402 2.299374 2.361206 -2.381527 1.922015 -0.507647 -2.114830 -2.140421 0.465317 -1.171134 -1.652865 -0.678647 0.894826 0.678585 -0.701277 -1.164005 1.064503 -0.487905 -1.118074 -3.309953 0.353593 -0.787489 -2.412342 0.110051 -0.288724 0.235733 -1.015532 2.853624 2.678498 1.557006 3.624545 1.803612 1.058819 -0.083624 -3.095562 0.148664 2.548149 0.986056 -2.439239 2.673526 -2.807157 -0.516457 0.987227 1.564689 -0.062603 3.404468 -2.183186 -1.828935 -0.419793 0.092433 3.474283 2.714094 -0.095982 -2.053068 0.693367 -3.583738 -1.578140 3.649606 3.230714 -3.457320 -0.489643 1.160886 0.134455 -2.147477 1.845784 -2.904951 -1.896306 -0.101841 -0.210883 1.379610 -1.078107 -1.589564 1.938012 -2.433433 3.131369 -0.488587 -0.865914 -0.106961 -2.493327 -2.314678 2.977782 0.551401 -1.177022 -0.778496 -0.791204 -0.494951 -2.497414 0.428215 2.319391 -0.350336 -2.166630 -2.259418 0.481415 1.472271 -0.948829 1.664490 -2.382118 -1.833136 1.521295 -1.550731 1.924394 -3.913796 -0.331625 -2.967587 -0.336791 1.207817 -1.817829 1.266165 4.028230 -1.081522 2.871710 1.343155 -3.208093 -1.545356 2.163921 -2.392216 3.361146 0.581800 0.162668 0.496067 1.083692 -1.703845 -0.124039 -0.593649 -0.027317 -0.156417 1.774051 -1.157357 -0.512724 -0.956867 -3.054298 -0.333644 0.730371 1.272671 -1.041065 0.316332 0.076119 -2.221959 -1.509457 -2.673756 -0.356762 1.864230 -1.872116 -2.442223 1.757679 0.049815 -2.577054 -1.155837 0.190353 1.423538 2.160294 -2.653012 0.628845 0.778769 -0.047417 -4.953838 -1.910958 -0.964032 -2.379366 -2.416632 -0.997768 -1.697060 -1.990299 -1.679266 0.444148 -2.409395 -3.493924 2.225148 3.612506 1.354914 -1.258815 1.495577 -0.838168 2.688844 1.057435 0.137122 0.549707 1.373251 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.828407 1.028223 -0.085076 -0.452846 1.160903 0.130372 -0.170432 1.107341 -1.390856 1.493987 -0.570595 0.878152 -0.261933 -1.312260 -0.048442 -0.205144 -0.049460 0.235386 0.151111 0.650209 0.525887 -0.798875 0.029870 -0.081612 -0.634881 -1.161634 0.020734 0.306474 1.482285 -0.381482 0.060084 -0.089177 1.449979 -0.248373 1.314435 1.019852 0.737849 0.801307 0.664365 -0.773570 -0.648884 0.689166 -0.924058 -0.824040 0.048357 -0.476519 -0.806740 0.044510 0.592552 -0.168921 -0.288247 1.062456 -0.324275 0.108102 -0.747727 1.053482 0.256125 -0.790241 1.611639 0.025542 -0.685896 -0.689932 -1.077239 1.017923 -0.374027 0.156342 -0.631702 -0.521068 0.719913 -0.234723 -0.362134 -0.870610 0.323295 1.343665 0.257384 -1.205206 0.400266 -0.547671 -1.297618 -1.030654 -0.864999 0.541052 -0.013166 0.909372 0.128219 0.444379 0.169337 0.902467 -0.454676 -1.852327 0.471909 1.163938 -0.728316 -0.449266 -0.680442 1.154150 0.159598 0.396072 -0.464136 -0.104713 0.549684 -0.016958 0.542253 -1.828124 0.902193 -1.346846 -0.174870 -0.510411 0.331295 0.719009 0.634642 0.280111 1.255676 1.565013 -0.744525 -0.320962 -0.806178 0.221591 -0.143327 0.245144 -0.480642 0.820999 0.639014 0.402989 1.461391 -1.814445 0.319639 -0.114885 -0.044398 -1.510803 -0.113192 -0.793419 -0.398877 -0.511458 0.680275 -0.198153 -0.127479 -0.892501 0.419260 0.128966 -1.128496 -0.811192 0.532259 0.996381 -1.558502 0.160933 -0.285669 -0.252550 -0.125460 0.891595 0.991129 1.128198 1.415777 0.898491 0.080343 1.182527 -1.292874 0.100033 1.294072 0.716534 -1.270887 1.356050 -1.241918 -0.396949 0.332247 0.859033 1.144273 0.706193 -1.411875 -1.297678 1.103854 0.490500 1.193832 -0.149278 0.145610 0.152111 1.243231 0.265890 -0.970366 1.634729 0.091926 -0.982781 0.620358 0.245710 -0.094064 -0.102234 0.769763 -1.202471 -0.114750 -0.403733 -0.348245 0.767326 -0.631343 -0.087666 0.064667 -1.111267 1.434247 -0.199027 -0.013959 0.268915 -1.134539 -0.068558 0.776777 -0.055952 -0.392386 -1.088841 -0.759656 -1.256661 -0.931498 0.295210 0.311803 -0.377011 -0.729799 -1.380563 -0.212957 0.581449 0.440515 0.738682 -2.361316 -0.495677 0.668373 0.405803 0.788010 -1.135632 -0.167122 -0.024183 -0.109882 0.651157 -0.641679 1.502521 1.522928 -0.796567 0.971484 -0.727948 -0.224352 0.384466 0.465681 -1.598986 1.408625 0.185948 0.752168 0.121407 0.402003 -0.637673 0.235950 0.080238 0.194022 0.283659 0.055452 -0.176212 -0.473931 -0.085914 -0.896456 -0.504549 -0.424343 0.147539 -0.130843 0.386395 -0.294860 -0.615712 -0.700261 -0.848087 0.150103 0.877457 -0.246114 -0.628135 0.937176 -0.173642 0.295657 -0.031052 0.073207 0.414983 0.475670 -1.374493 -0.396152 -0.216300 0.192711 -0.970902 -1.077812 -0.301886 0.042642 -0.732537 0.876237 -1.118751 0.236113 -0.652374 -0.244922 -1.502730 -0.279623 0.320811 1.459010 0.032120 -0.952819 0.496998 -0.510884 0.910353 0.198186 0.283087 -0.146327 0.662123 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.828407 1.028223 -0.085076 -0.452846 1.160903 0.130372 -0.170432 1.107341 -1.390856 1.493987 -0.570595 0.878152 -0.261933 -1.312260 -0.048442 -0.205144 -0.049460 0.235386 0.151111 0.650209 0.525887 -0.798875 0.029870 -0.081612 -0.634881 -1.161634 0.020734 0.306474 1.482285 -0.381482 0.060084 -0.089177 1.449979 -0.248373 1.314435 1.019852 0.737849 0.801307 0.664365 -0.773570 -0.648884 0.689166 -0.924058 -0.824040 0.048357 -0.476519 -0.806740 0.044510 0.592552 -0.168921 -0.288247 1.062456 -0.324275 0.108102 -0.747727 1.053482 0.256125 -0.790241 1.611639 0.025542 -0.685896 -0.689932 -1.077239 1.017923 -0.374027 0.156342 -0.631702 -0.521068 0.719913 -0.234723 -0.362134 -0.870610 0.323295 1.343665 0.257384 -1.205206 0.400266 -0.547671 -1.297618 -1.030654 -0.864999 0.541052 -0.013166 0.909372 0.128219 0.444379 0.169337 0.902467 -0.454676 -1.852327 0.471909 1.163938 -0.728316 -0.449266 -0.680442 1.154150 0.159598 0.396072 -0.464136 -0.104713 0.549684 -0.016958 0.542253 -1.828124 0.902193 -1.346846 -0.174870 -0.510411 0.331295 0.719009 0.634642 0.280111 1.255676 1.565013 -0.744525 -0.320962 -0.806178 0.221591 -0.143327 0.245144 -0.480642 0.820999 0.639014 0.402989 1.461391 -1.814445 0.319639 -0.114885 -0.044398 -1.510803 -0.113192 -0.793419 -0.398877 -0.511458 0.680275 -0.198153 -0.127479 -0.892501 0.419260 0.128966 -1.128496 -0.811192 0.532259 0.996381 -1.558502 0.160933 -0.285669 -0.252550 -0.125460 0.891595 0.991129 1.128198 1.415777 0.898491 0.080343 1.182527 -1.292874 0.100033 1.294072 0.716534 -1.270887 1.356050 -1.241918 -0.396949 0.332247 0.859033 1.144273 0.706193 -1.411875 -1.297678 1.103854 0.490500 1.193832 -0.149278 0.145610 0.152111 1.243231 0.265890 -0.970366 1.634729 0.091926 -0.982781 0.620358 0.245710 -0.094064 -0.102234 0.769763 -1.202471 -0.114750 -0.403733 -0.348245 0.767326 -0.631343 -0.087666 0.064667 -1.111267 1.434247 -0.199027 -0.013959 0.268915 -1.134539 -0.068558 0.776777 -0.055952 -0.392386 -1.088841 -0.759656 -1.256661 -0.931498 0.295210 0.311803 -0.377011 -0.729799 -1.380563 -0.212957 0.581449 0.440515 0.738682 -2.361316 -0.495677 0.668373 0.405803 0.788010 -1.135632 -0.167122 -0.024183 -0.109882 0.651157 -0.641679 1.502521 1.522928 -0.796567 0.971484 -0.727948 -0.224352 0.384466 0.465681 -1.598986 1.408625 0.185948 0.752168 0.121407 0.402003 -0.637673 0.235950 0.080238 0.194022 0.283659 0.055452 -0.176212 -0.473931 -0.085914 -0.896456 -0.504549 -0.424343 0.147539 -0.130843 0.386395 -0.294860 -0.615712 -0.700261 -0.848087 0.150103 0.877457 -0.246114 -0.628135 0.937176 -0.173642 0.295657 -0.031052 0.073207 0.414983 0.475670 -1.374493 -0.396152 -0.216300 0.192711 -0.970902 -1.077812 -0.301886 0.042642 -0.732537 0.876237 -1.118751 0.236113 -0.652374 -0.244922 -1.502730 -0.279623 0.320811 1.459010 0.032120 -0.952819 0.496998 -0.510884 0.910353 0.198186 0.283087 -0.146327 0.662123 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -11.300653 9.133566 6.484225 -11.300629 22.619816 -3.556264 1.463431 5.706078 -0.828206 16.435159 -10.807459 -4.636183 -5.073403 -18.573409 0.706712 -12.051905 -3.945218 10.816522 -2.378283 9.884823 8.652483 -7.864774 3.536205 -4.034414 -6.250243 -15.594680 -4.808850 5.921714 9.847670 -6.447140 5.580427 -0.878691 19.257482 -2.588315 15.326085 13.156907 4.830466 16.392774 0.540147 0.259400 -1.040905 8.782876 -9.203323 -15.426183 4.172612 -5.056463 -13.947138 -11.274601 7.666686 -11.513057 2.246291 14.706383 -3.127304 -3.825087 -11.056576 10.982196 9.156486 2.743659 18.168722 2.909218 -4.290839 2.256571 -18.977076 9.880118 -9.598231 5.794998 -3.254796 -13.885854 0.166572 2.578074 1.861881 -8.102374 -8.255273 11.764624 9.460981 -13.115848 2.200140 -8.989539 -16.550039 -11.718624 -12.147377 4.890449 -1.382811 12.784171 0.681373 5.422304 2.466976 7.992260 -2.800920 -19.561235 0.174921 17.640673 -5.479160 -2.799359 -7.049766 11.836630 3.710178 -0.936114 -8.840127 -4.231672 4.458971 -1.355271 8.583226 -5.360563 -1.588515 -15.772627 3.395105 3.590543 1.038353 4.508722 5.749394 3.800828 7.760324 13.956976 -14.959089 6.150743 -18.303331 3.895219 -4.139816 5.042097 -3.553617 7.950447 0.931857 5.624874 13.668620 -21.144026 10.640689 -0.013383 -5.186353 -14.985906 2.716366 -4.208683 -4.955073 -4.942654 8.404487 -0.848756 -3.149034 -4.531161 2.475082 1.699473 -5.210854 -5.426161 3.857784 13.325292 -10.582620 5.078123 -3.974984 -7.128120 -1.734709 7.380194 11.514184 10.864395 20.817624 14.726731 -0.287476 3.527265 -16.834324 0.978226 17.613973 2.464246 -13.448673 14.885322 -7.984875 -3.327089 3.560960 12.040372 10.506140 7.577291 -12.312840 -11.500375 2.474872 0.548376 17.050575 6.324259 1.035721 -10.149006 12.656061 -0.288676 -6.359144 22.076787 10.292404 -13.647998 3.931954 8.375013 -15.177003 -10.878635 8.877576 -8.356013 -0.298068 -4.996638 3.200651 7.656471 -7.220854 -9.902053 -1.436548 -14.443163 16.155971 -4.172544 -1.822266 6.556195 -12.904099 -17.379198 16.800462 -0.044181 -6.586245 -10.339239 -12.154191 -6.177387 -14.992989 6.320176 4.415668 -6.230649 -9.564276 -13.391819 0.986854 12.796434 0.005230 7.893411 -12.589458 -7.060331 8.207829 4.555839 9.946070 -9.980857 -2.265900 -0.935052 0.460845 4.582925 0.517577 9.463379 22.381124 -10.627944 7.790372 1.650402 -9.214193 5.159764 12.446314 -17.175342 20.151557 0.095185 10.216713 -1.186423 5.491080 -4.839240 2.380491 4.981400 -2.863016 1.881306 4.511952 -5.864174 -5.916127 1.058482 -13.628703 -7.690924 1.092941 7.351836 -0.197727 5.176538 2.411146 -9.596119 -3.913830 -5.688304 1.041898 11.801641 0.970024 -7.876855 8.290667 4.080151 -0.212419 -3.847238 1.889040 5.686172 11.006594 -17.695319 5.360041 -3.321538 0.739650 -12.840693 -15.134824 3.236634 -13.714464 -8.468169 7.482430 -16.490004 -2.310292 -11.643086 3.634814 -11.942046 -4.115954 3.361269 18.353491 9.898797 -5.632783 8.754316 -5.706058 11.615887 0.304196 -3.413417 5.220785 13.384960 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/graph-coloring.cpp__main = -10.807747 4.084519 3.350962 -11.916221 22.637998 -6.310836 -1.096079 10.143040 1.929374 15.113508 -10.367497 -3.166955 -5.637672 -19.601941 2.084382 -9.952723 -0.917811 10.682984 -2.840000 9.397544 9.163435 -3.307840 3.717631 -4.329417 -5.656832 -13.196397 -4.177032 6.322056 5.360443 -5.174114 5.900948 1.934766 20.578223 -0.103593 16.359309 13.791981 6.777249 17.808416 3.294513 3.599687 0.942482 8.371223 -7.811731 -16.912906 4.764397 -4.231433 -13.762425 -10.824314 7.587371 -12.055763 6.546966 14.933228 -1.666512 -2.949630 -13.415901 6.995069 5.546661 1.726706 16.605404 4.375114 -9.185390 0.563287 -16.369460 10.431885 -10.371680 5.855524 -0.413443 -11.311010 0.415848 5.078572 4.976422 -10.236709 -10.396452 8.306137 7.680340 -11.983966 4.256259 -6.615964 -7.300769 -8.549447 -10.300787 5.961493 -2.756421 12.281972 -0.224595 5.377980 -1.778831 5.946838 -1.554372 -17.190801 0.163836 15.620079 -7.111909 -1.811011 -11.097780 12.258698 2.976791 -2.442014 -6.377074 -4.491978 4.558452 -2.272582 8.976666 -0.694381 -4.714380 -13.946079 5.474724 3.119167 0.872108 6.813774 4.052976 4.648657 7.032404 11.037233 -9.527371 8.272483 -20.041343 5.902695 -5.262404 4.420519 -5.436195 7.155764 4.518726 5.617871 10.987234 -18.740498 11.676024 1.765620 -4.001125 -12.164568 4.113435 -2.025858 -5.652431 -4.304405 10.829031 -0.855242 -3.509752 -2.638350 3.924199 2.448716 -5.596892 -7.656577 1.533346 10.195236 -7.016968 4.885295 -4.125039 -7.660914 -1.040234 5.721034 9.518473 10.383062 20.948969 13.102530 -2.181657 1.143432 -17.577643 1.583026 18.231756 2.034558 -12.776773 14.575564 -7.385460 -2.946494 2.338727 12.573764 10.661564 6.060436 -9.358632 -8.465019 2.210765 1.028213 16.739682 6.034285 2.503834 -11.927302 6.940064 -1.864539 -0.955528 21.980745 8.707332 -14.991065 1.477156 10.664369 -11.017321 -10.682122 7.354797 -6.333883 -1.448540 -6.206636 6.452249 8.905996 -9.393835 -9.622646 -0.919218 -13.363138 12.605738 -4.974488 -3.242589 4.810755 -14.838551 -11.855617 18.941906 0.686911 -4.506716 -8.054529 -13.861734 -1.597595 -17.201684 6.408410 5.728765 -3.024580 -5.339670 -11.322697 -0.656405 12.907146 -0.641418 7.139293 -11.671123 -5.041194 9.193595 1.007967 6.605253 -12.929780 -2.476000 -0.243036 1.760807 5.561992 -0.889648 5.861115 20.309425 -11.175719 8.392387 6.468606 -2.973352 3.925006 12.517542 -17.131562 21.123674 -0.275601 11.249669 -0.532058 5.317353 -4.372825 1.619766 2.388771 -2.158514 0.362879 3.943021 -7.716795 -5.926463 4.016555 -9.892204 -7.739655 1.365057 9.874636 -1.523153 5.280205 1.295014 -7.445541 -5.016354 -7.387230 5.440797 12.013395 -1.137870 -9.148794 8.585891 8.294344 -4.859135 -2.864372 1.623574 6.794931 13.308201 -18.195650 6.579005 -1.800376 2.761589 -12.428188 -14.004300 5.909712 -10.250045 -6.364329 4.185207 -16.009917 -7.040039 -10.958718 6.694252 -11.448461 -2.452222 1.736874 16.982989 10.393417 -3.935957 7.370209 -4.697696 7.689596 -0.256950 -3.256530 7.085492 13.987786 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -1.029516 0.903553 0.358175 -1.089077 1.866402 -0.627845 0.398393 0.197690 0.184709 1.365447 -1.260481 -0.947960 -0.488643 -1.688805 0.269416 -1.342534 -0.096309 1.173668 -0.063842 1.230256 0.753476 -0.795605 0.288101 -0.626389 -0.523010 -1.121388 -0.464119 0.696853 0.679996 -0.316130 0.470966 0.293002 1.893508 -0.149486 1.709413 1.524935 -0.165898 1.755454 0.556269 -0.266747 0.152842 0.724883 -0.782965 -1.820786 0.142988 -0.318750 -1.303134 -1.317518 0.724035 -0.965018 0.543025 1.372689 -0.176482 -0.298501 -1.500136 0.633168 0.886265 1.097294 1.679397 0.327018 -0.372579 0.845763 -1.495757 0.702019 -0.929498 0.203517 -0.512021 -1.502335 0.313680 0.574308 0.301961 -0.679336 -1.224741 0.865768 0.876524 -1.172884 0.312333 -0.621356 -1.920313 -0.694871 -1.062745 0.623698 -0.434514 1.337608 0.050905 0.545737 -0.268910 0.698932 -0.121728 -1.612975 -0.098792 1.641470 -0.330261 -0.419066 -0.047650 1.450508 1.054599 -0.383013 -0.696769 -0.295154 0.439315 -0.514394 0.886960 0.201634 -0.307973 -1.280371 0.437930 0.622189 0.111395 1.156787 0.723467 0.838433 1.012912 0.936539 -1.139177 0.486379 -1.794389 0.607237 -1.035298 0.107690 -0.279175 0.920415 0.129687 0.540999 1.165653 -1.786050 1.107434 0.275479 -0.046469 -1.065629 0.386629 -0.115209 -0.402076 -0.641544 0.943780 -0.038744 -0.237156 -0.176040 0.037289 0.290581 0.016904 -0.016680 0.240592 1.215514 -0.442588 0.602428 -0.325474 -0.743447 -0.074422 0.569544 0.939286 1.169517 1.961274 1.475724 -0.356269 -0.645235 -1.672444 0.227163 1.822535 -0.401836 -1.128999 1.482220 -0.290414 -0.623073 0.167870 1.242013 1.055078 0.736244 -1.008803 -1.276001 -0.845164 0.055768 1.513146 0.768097 -0.065943 -0.871640 1.273283 -0.127447 -0.445323 2.112355 0.642111 -1.138204 -0.381613 1.184826 -2.165876 -1.248963 0.861661 -0.841260 0.163914 -0.698394 0.394905 0.811482 -0.905668 -0.857205 -0.192883 -1.280546 1.178610 -0.460518 -0.685703 0.076096 -1.236147 -1.115943 1.948773 0.327670 -0.282498 -0.828059 -1.317590 -0.261817 -1.593656 0.500570 0.356589 -0.314984 -0.627162 -1.042479 -0.241128 0.910881 -0.189982 0.776861 -0.396177 -0.438367 0.899088 0.550106 0.471480 -0.819562 -0.183044 0.270129 -0.067689 0.144368 0.294246 0.950148 1.934580 -0.990166 0.373357 0.788824 -0.572475 0.859232 1.376101 -1.729444 2.033065 -0.407770 0.852326 0.183594 0.523914 -0.306094 0.080430 0.453269 -0.649521 -0.220431 0.445564 -0.725098 -0.588579 0.514793 -0.673890 -0.915059 0.004701 1.048548 0.101087 0.497247 0.205821 -1.028988 -0.335616 -0.405640 0.439671 1.018691 0.186604 -0.829901 1.015130 0.771955 -0.053286 -0.664553 0.088410 0.565364 1.022631 -1.794470 0.739368 -0.295763 0.476817 -1.029341 -1.059483 0.645825 -1.225619 -0.531277 0.491032 -1.348288 -0.380538 -1.066353 0.518850 -0.721840 -0.513327 0.494992 1.720721 0.791158 -0.643156 0.597240 -0.674573 0.747370 0.121313 -0.394785 0.314166 1.540064 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.308938 0.084663 -0.139031 -0.197410 0.761662 -0.364791 -0.104895 0.607126 0.110700 0.446781 -0.267743 0.129506 -0.069256 -0.422462 0.093474 0.149621 0.185829 0.460676 -0.119961 -0.048898 0.196122 0.099867 0.096343 -0.096154 -0.149681 -0.520167 0.020481 0.176299 0.019851 -0.109576 -0.218663 0.240162 0.659305 -0.099180 0.449204 0.381846 0.345647 0.382268 0.367286 -0.016387 0.242244 0.113643 -0.117085 -0.463223 0.111926 -0.082527 -0.339368 -0.200025 0.261523 -0.389661 0.391661 0.295783 -0.007246 -0.029460 -0.303447 0.282474 0.090519 -0.051926 0.468439 0.134685 -0.430202 -0.121780 -0.218423 0.729868 -0.430609 0.055148 -0.148319 -0.542221 -0.155373 0.393421 0.167250 -0.253545 -0.209331 0.093007 0.048018 -0.335362 0.130652 0.023956 0.424177 -0.243514 -0.375598 0.200500 -0.206127 0.276926 0.038572 0.121239 -0.311077 0.052285 0.063255 -0.392179 -0.015876 0.349619 -0.312342 0.190788 -0.194477 0.094241 0.235229 -0.202574 0.062250 -0.375841 0.093445 -0.181908 0.197358 0.026711 0.198300 -0.120779 0.146258 0.078761 0.155619 0.313490 -0.021996 0.177931 0.160818 0.198925 0.084636 -0.049924 -0.681665 0.329835 -0.103619 -0.063636 -0.142054 0.083879 0.328004 0.151837 0.330264 -0.527007 0.373486 0.056850 -0.004848 -0.204695 0.139670 0.081814 -0.114805 -0.162060 0.390593 -0.086462 -0.062865 -0.010456 0.223174 0.027605 -0.383620 -0.192170 -0.188556 0.239281 -0.396465 0.160728 -0.118410 -0.197572 0.013334 0.115457 0.188837 0.320712 0.478026 0.358927 -0.127790 0.057925 -0.634856 0.115738 0.459960 0.096547 -0.316333 0.403810 -0.296740 -0.112506 0.185575 0.362105 0.117231 0.157205 -0.075085 -0.137897 -0.016878 0.079072 0.463403 0.079379 0.103889 -0.341870 -0.006973 -0.054574 0.037782 0.711335 0.168643 -0.585115 0.186930 0.456593 -0.177755 -0.212178 0.153548 -0.360447 -0.177621 -0.279790 0.196984 0.396031 -0.447051 -0.171191 0.154900 -0.312634 0.313657 -0.057686 -0.249551 0.171032 -0.461532 0.136835 0.645758 0.168926 0.083878 -0.148069 -0.462719 -0.186382 -0.562771 0.013159 0.163401 -0.111256 0.007428 -0.320585 -0.208397 0.448736 -0.004163 0.183481 -0.601454 0.103674 0.343409 0.054212 -0.058715 -0.384311 -0.069747 0.088869 -0.088418 0.032271 -0.240172 0.129839 0.304473 -0.313532 0.276529 0.351213 -0.109547 0.150326 0.212377 -0.418474 0.514640 -0.006490 0.119025 0.257332 0.163568 -0.266863 0.054139 -0.150931 0.015203 -0.277038 0.174885 -0.424663 -0.173705 0.226620 -0.207725 -0.364430 0.022986 0.391517 0.179886 0.032623 -0.183025 -0.162711 -0.107924 -0.338984 0.220587 0.232613 -0.120946 -0.302442 0.309695 0.313143 -0.393700 -0.267360 0.104250 0.196961 0.384522 -0.471107 0.245355 0.124600 0.243269 -0.518697 -0.394106 0.117533 -0.191151 -0.195193 -0.015589 -0.683812 -0.444768 -0.165829 0.291880 -0.467124 0.051039 0.077692 0.539225 0.048118 -0.065028 0.333211 -0.079699 0.018852 0.022013 0.007844 -0.010381 0.351044 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.963437 0.543775 0.012186 -0.946787 2.221361 -0.677054 -0.052113 1.111587 0.106917 1.169805 -1.067739 0.209439 -0.343595 -1.434244 0.141807 -0.264831 0.183984 1.190049 -0.448032 0.414855 0.731743 -0.140149 0.429255 -0.538208 -0.437646 -1.356124 -0.111586 0.450062 0.087820 -0.081061 0.031414 0.280474 1.649684 -0.121208 1.060147 0.971493 0.617102 1.554398 0.488926 0.184562 0.550146 0.537409 -0.366791 -1.642477 0.574592 -0.470241 -1.158823 -0.929552 0.705221 -1.609952 0.810043 0.993361 0.013877 -0.452838 -0.993354 0.768248 0.970257 0.090025 1.345940 0.407735 -0.980977 -0.152964 -0.985092 1.005740 -1.076994 0.492160 0.028802 -1.410985 -0.414128 0.971426 0.509137 -0.794513 -0.953693 0.200870 0.395296 -0.887236 0.378010 -0.286229 -0.009670 -0.708912 -0.829056 0.360511 -0.486213 0.885039 -0.057271 0.369961 -0.476878 0.170862 0.200889 -1.102020 -0.279160 1.227044 -0.522896 0.375534 -0.681087 0.693681 0.466701 -0.593983 -0.464486 -0.663433 0.295798 -0.128254 0.601638 -0.045452 -0.321079 -0.884237 0.640898 0.546575 0.126979 0.709278 0.003019 0.515855 0.267451 0.575525 -0.529816 0.649310 -2.005665 0.537955 -0.300546 0.164300 -0.365737 0.285373 0.585401 0.430231 0.794797 -1.456238 1.471112 0.225001 -0.314348 -0.774547 0.567623 0.189645 -0.363522 -0.337883 0.947369 -0.172462 -0.210125 -0.001139 0.389562 -0.081677 -0.830813 -0.694753 -0.310999 0.972601 -0.987138 0.460677 -0.359837 -0.651681 0.069603 0.263855 0.516360 0.574805 1.584401 1.018506 -0.254988 0.309748 -1.498435 0.381342 1.668113 0.603756 -1.023958 0.948081 -0.423223 -0.081871 0.469501 0.715171 0.506847 0.702753 -0.635890 -0.717462 -0.111832 -0.144411 1.275552 0.717192 0.367429 -1.529809 0.539955 -0.168540 0.270512 2.039148 0.850907 -1.477237 0.292690 1.221785 -1.007148 -0.782436 0.296893 -0.490128 -0.371553 -0.496822 0.556395 0.765453 -1.051418 -1.191763 -0.076511 -1.055580 1.001501 -0.222295 -0.449941 0.258286 -1.252145 -0.235422 1.698469 0.287016 -0.270545 -0.386002 -1.115205 -0.509352 -1.651678 0.263974 0.560209 -0.463109 -0.414126 -0.867532 -0.272649 1.160618 -0.292357 0.231288 -1.323888 -0.169458 0.849516 0.228135 0.247660 -1.280946 -0.258666 0.059354 -0.028690 0.358205 -0.181195 0.430118 1.380492 -0.927940 0.727950 0.783176 -0.260820 0.462050 1.186381 -1.010519 1.553239 -0.172821 1.129680 0.248395 0.566928 -0.478210 0.214324 -0.121224 -0.181385 -0.378202 0.680120 -1.128756 -0.487839 0.603568 -0.678436 -0.873096 0.424174 1.042469 0.410663 0.181012 -0.108007 -0.526513 -0.310928 -0.600761 0.288794 0.821225 -0.264951 -1.112936 0.421695 0.876828 -0.819974 -0.783675 0.338285 0.591495 1.150455 -1.319613 0.931929 0.071396 0.090784 -1.478687 -1.009560 0.545074 -0.820140 -0.768543 0.365908 -1.707294 -0.870267 -0.619450 0.952787 -1.120719 -0.091204 0.047968 1.330743 0.487957 -0.059012 0.978363 -0.250189 0.505338 -0.007744 -0.109641 0.170928 1.223353 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -2.843163 2.012313 -0.028044 -3.367967 6.942927 -1.192090 0.005672 2.425800 -0.545789 3.377734 -3.474968 0.761016 -0.923209 -4.926983 0.349106 -1.141483 -0.012147 2.916429 -1.295870 2.089586 2.243979 -1.546829 1.514444 -1.867344 -1.333115 -4.114222 -0.317220 1.374978 1.038110 -0.122947 0.712219 0.034217 4.225871 -0.412419 2.458966 2.454713 1.418213 4.776340 0.784799 -0.266022 1.326682 1.764867 -1.122438 -5.004070 1.821888 -1.699969 -3.951881 -2.928658 2.046812 -5.168124 1.146444 3.187012 0.062721 -1.968646 -3.285453 2.530920 4.145341 0.190384 4.012657 1.147948 -2.170189 -1.058156 -3.335626 1.659478 -2.834101 1.417333 0.559674 -3.680061 -1.006138 2.743859 0.630755 -2.096799 -2.926955 0.581130 1.823623 -2.647018 1.136553 -1.449362 -1.667247 -2.552599 -1.820066 0.820857 -1.509624 2.964211 -0.287255 1.244436 -0.192454 0.543065 0.481811 -3.315240 -1.095267 3.732485 -1.050788 0.455796 -1.902777 3.269587 1.196943 -1.775836 -2.389422 -1.393956 0.834441 0.258807 1.787359 -1.083162 -1.448776 -3.572003 1.909001 1.643722 0.265512 2.139652 0.286575 1.210042 0.258734 1.833562 -2.879686 2.509817 -5.849678 0.665324 -0.797262 1.208531 -1.358540 0.874422 1.730769 1.383912 2.208332 -4.413213 4.954431 0.792787 -0.973106 -2.642823 1.795089 0.507505 -1.079023 -0.550771 2.347419 -0.669133 -0.552976 0.089665 1.109981 -0.151652 -2.648740 -1.707815 -0.434189 3.756468 -3.389587 1.421880 -0.934813 -1.835856 0.287982 0.638935 1.700613 1.182124 5.067093 2.891838 -0.576160 2.235455 -3.946543 1.529090 5.788976 2.226606 -3.114836 2.537204 -1.105338 0.108664 1.127422 1.622261 1.894108 2.358814 -2.695291 -2.482742 0.388863 -0.764300 3.689135 2.213085 1.199976 -5.363389 2.633405 -0.267534 1.224421 5.880665 2.914279 -4.243774 1.291669 3.491995 -3.853437 -1.878952 0.672947 -0.810799 -0.728202 -1.186606 1.679694 1.891238 -2.679623 -4.471959 -1.402744 -3.166769 3.118657 -0.756096 -0.949250 0.563784 -3.045173 -1.025949 4.560821 0.551891 -1.480464 -1.260357 -2.970439 -2.239779 -4.796401 0.963761 1.526464 -1.948758 -1.650566 -2.596126 -0.797956 3.461221 -1.178264 0.180884 -4.632982 -0.588112 2.275228 1.567018 1.280081 -3.334879 -0.738450 0.084199 0.053516 1.166246 -0.268820 1.588378 4.575493 -2.831021 2.326055 0.928409 -0.636753 1.763463 4.194641 -2.654274 4.773241 -0.328997 4.979332 0.013435 1.862344 -1.023535 0.932900 -0.079621 -1.363261 -0.409244 2.096517 -3.270116 -1.515215 2.123323 -1.777642 -2.878152 1.697474 2.985727 1.367861 0.671870 -0.020320 -1.374282 -0.982019 -1.253343 0.494297 2.454182 -0.892019 -3.409792 0.545111 2.763283 -1.516706 -2.280838 1.046056 1.874006 3.433280 -3.832040 3.040741 -0.244146 -0.188261 -4.243906 -3.016401 1.880308 -2.371521 -2.360928 1.982289 -5.072877 -1.899611 -2.016071 2.848764 -3.331945 -0.365059 -0.115793 3.681779 1.555955 -0.102924 2.902993 -0.783153 1.900940 -0.341125 -0.168736 0.846364 3.458756 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.996814 0.615370 -0.358576 -0.798471 2.391472 -0.810960 0.133386 1.423019 -0.750498 1.285170 -0.915416 0.783707 -0.183117 -1.728746 0.290749 0.294308 0.398798 1.205259 -0.112272 0.575233 0.701072 -0.454845 0.287938 -0.430642 -0.507180 -1.567427 0.173042 0.539137 0.631639 -0.421590 -0.086353 0.468408 1.813078 -0.270014 1.185808 1.149442 0.782510 1.324973 1.000503 -1.017290 0.366473 0.529303 -0.452891 -1.544639 0.449939 -0.351242 -1.175739 -0.765797 0.731082 -1.189877 0.278835 1.090376 -0.044988 -0.261058 -1.269115 0.873855 1.183754 -0.559711 1.516776 0.402001 -0.826286 -0.666901 -0.737233 1.569505 -1.056751 -0.194028 -0.138254 -1.315491 -0.020064 0.997094 0.241891 -0.867977 -0.745810 0.402218 0.411143 -1.160590 0.380038 -0.188990 0.056415 -1.366438 -0.942431 0.396634 -0.634398 1.192239 0.037482 0.386552 -0.415534 0.183883 0.155751 -1.341713 -0.159207 1.137457 -0.682924 0.190618 -0.721601 1.141679 0.665572 -0.530423 -0.522818 -1.016127 0.324855 -0.360854 0.651072 -0.449721 0.380431 -0.734780 0.066043 -0.091046 0.373191 1.281011 0.168039 0.577702 0.408358 0.723319 -0.507820 -0.018846 -1.999321 0.698712 -0.221922 0.153874 -0.463666 0.278997 0.947986 0.375109 1.029203 -1.791002 1.243985 0.267425 0.109113 -1.074554 0.468349 0.135668 -0.368766 -0.458710 1.077862 -0.315198 -0.138027 -0.069376 0.598259 0.239973 -1.219488 -0.713418 -0.304466 1.609881 -1.767659 0.511308 -0.391722 -0.604059 0.029987 0.244875 0.666780 0.881444 1.580750 1.190516 -0.352775 1.343916 -1.766363 0.419342 1.828401 1.024304 -1.068795 1.171856 -0.892493 -0.320980 0.539203 0.901628 0.707988 0.254325 -0.937158 -0.807236 0.801052 0.055411 1.479680 0.147059 0.349749 -1.454197 0.753950 0.275462 0.043759 2.136543 0.414258 -1.733067 1.115503 1.262530 -0.781711 -0.421240 0.415907 -1.029927 -0.628667 -0.649641 0.580874 0.986464 -1.182655 -0.820957 -0.165425 -1.033197 1.053539 -0.229265 -0.630324 0.444830 -1.063816 -0.003798 1.698851 0.341954 -0.086099 -0.668165 -1.246644 -0.784787 -1.695766 0.222246 0.315849 -0.595423 -0.325499 -1.154256 -0.675148 1.371027 -0.115303 0.312897 -2.416692 0.202304 0.961563 0.749517 0.029758 -1.382642 -0.240184 0.394732 0.060731 0.089804 -0.533742 0.776799 1.272464 -1.133732 0.641191 0.339077 -0.148049 0.863280 0.906407 -1.322094 1.640412 0.071525 1.638220 0.446000 0.550926 -0.753294 0.196160 -0.228353 -0.044164 -0.561074 0.474595 -1.188937 -0.527670 0.854038 -0.489747 -1.327961 0.215643 1.077839 0.516397 0.175952 -0.412496 -0.282343 -0.335815 -0.838654 0.451964 0.854138 -0.499573 -0.955819 0.708733 0.943654 -0.565580 -0.422702 0.297722 0.783299 1.085295 -1.474744 0.837393 -0.065016 0.540113 -1.377080 -1.675853 0.829151 -0.681957 -0.755022 0.640752 -2.175562 -0.836321 -0.682577 0.850783 -1.778086 0.179207 0.075656 1.560859 -0.016363 -0.112769 1.031784 -0.321604 0.376636 -0.242960 0.329173 0.024272 1.130303 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.415295 0.953946 -0.081263 -1.296971 3.498642 -0.995119 0.330085 2.182871 -0.856809 1.806068 -1.566578 1.214075 -0.125760 -1.941545 0.259959 0.088690 0.278206 1.669195 -0.509281 0.608898 0.947057 -0.091836 0.435856 -0.761555 -0.798134 -2.004453 0.094258 0.666091 0.467104 -0.236185 -0.129145 0.479769 2.408526 -0.519120 1.624355 1.559580 1.264209 1.864071 0.967108 -0.586017 0.860436 0.635764 -0.596722 -2.101713 0.506694 -0.617396 -1.788768 -1.084133 0.976125 -2.141599 0.898052 1.408389 0.053611 -0.536173 -1.352426 1.514655 1.398260 -0.883827 2.028241 0.574147 -1.682087 -0.601806 -1.190294 2.468178 -1.391663 0.482842 -0.165621 -2.049649 -0.443917 1.544348 0.744586 -1.358031 -1.216465 0.422870 0.425927 -1.531861 0.494714 -0.416516 0.370735 -1.486144 -1.003170 0.642791 -0.649410 1.334391 0.067387 0.506956 -0.897715 0.273531 0.221676 -1.750051 -0.459918 1.929945 -0.996010 0.432431 -1.675133 0.911695 0.807901 -0.789754 -0.581791 -1.401127 0.510462 -0.156896 0.804350 -0.851135 0.248796 -1.139316 0.260441 0.570666 0.323555 1.502544 -0.516541 0.974217 0.585169 0.938037 -0.339158 0.566241 -2.869002 0.971864 -0.406592 0.170771 -0.641797 0.241035 1.201457 0.756355 1.358376 -2.200018 1.958139 0.241946 -0.378063 -1.418070 0.701273 0.256020 -0.571488 -0.520868 1.291385 -0.212723 -0.213571 -0.071260 0.825060 0.005165 -1.490475 -1.469960 -0.358065 1.604891 -2.124285 0.641378 -0.469001 -0.576000 -0.050406 0.622949 0.970456 0.954023 2.243135 1.506678 -0.146673 1.237578 -2.339931 0.496858 2.310259 1.454244 -1.507904 1.583761 -1.229914 -0.383928 0.723266 1.110159 0.546664 0.896753 -1.362770 -1.197898 0.632814 -0.197350 2.064560 0.751239 0.408162 -2.068630 0.865040 -0.466440 0.117070 2.823838 1.196346 -2.455593 0.980901 1.792730 -0.724509 -0.978110 0.661156 -1.402499 -1.104448 -0.590470 0.640004 1.178211 -1.489206 -1.370931 0.007807 -1.470936 1.608403 -0.259846 -0.939752 0.311959 -1.579097 -0.161870 2.306210 0.485705 -0.285852 -0.618017 -1.464272 -0.977858 -2.425527 0.257876 0.892206 -0.694992 -0.691375 -1.497660 -0.618850 1.597522 -0.478980 0.456847 -2.665983 -0.148223 1.342631 0.552855 0.245202 -2.251082 -0.314073 -0.067962 0.107333 0.338169 -0.795175 0.938840 1.942112 -1.352557 1.185418 0.953001 -0.542440 0.652325 1.499315 -1.653844 2.253835 0.089611 1.773602 0.641078 0.784929 -1.020889 0.227813 -0.425618 -0.037599 -0.704253 0.899735 -1.740992 -0.688927 0.743607 -0.936696 -1.438618 0.568126 1.526330 0.431343 0.138409 -0.329235 -0.527019 -0.646632 -1.516554 0.385752 1.153669 -0.911448 -1.574236 0.891935 1.259856 -1.361979 -0.627136 0.406480 1.139675 1.566162 -1.956285 1.308616 0.074914 0.432924 -2.490043 -2.005578 0.914619 -1.163065 -1.350153 0.393877 -2.634214 -1.483554 -0.913397 1.258895 -2.367501 -0.429303 0.373677 2.160941 0.174916 -0.054802 1.429763 -0.471453 0.745385 -0.084026 0.350442 0.073191 1.510704 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.980500 2.072379 -0.453200 -2.978889 7.568629 -1.539187 0.623882 4.213290 -2.321076 3.996667 -3.299034 2.769780 -0.205048 -4.339568 0.450544 0.194825 0.279970 3.126978 -1.078824 1.553235 1.960573 -0.747486 1.252670 -1.605264 -1.751424 -4.524901 0.314634 1.485916 1.616299 -0.427879 -0.126396 0.420296 4.655950 -1.404801 2.815283 2.927403 2.680936 3.729434 1.756052 -1.981943 1.665469 1.357321 -1.339549 -4.290117 1.051046 -1.438200 -4.079911 -2.176008 2.225668 -4.654819 0.875345 3.086732 0.012693 -1.601122 -2.948915 3.534328 3.437950 -2.244385 4.385357 0.959510 -3.080440 -2.027862 -2.676133 5.077258 -2.882584 0.880881 -0.360552 -4.102930 -0.987896 3.244625 0.702740 -2.347482 -2.458492 1.024386 1.360490 -3.381052 0.867098 -1.240774 0.259079 -3.289504 -1.712559 1.208608 -1.475353 2.923089 0.230875 1.265393 -0.966937 0.724572 0.396554 -3.820948 -0.950114 4.082554 -1.814812 0.539083 -3.427743 2.340472 1.660120 -1.835021 -1.562528 -2.581379 0.890768 -0.057567 1.797666 -2.640818 0.675609 -2.900713 0.347947 1.115464 0.926634 3.166493 -1.110776 1.701183 0.826729 2.154386 -1.255254 1.099693 -5.830399 1.551600 -0.730361 0.713676 -1.645435 0.606372 2.665659 1.699039 2.983477 -4.781084 4.341592 0.411089 -0.783539 -3.204016 1.447976 0.665848 -0.990701 -0.718746 2.450300 -0.835189 -0.466357 -0.142820 1.957169 0.176986 -3.522567 -2.643013 -0.459875 3.658223 -4.766585 1.550248 -0.923335 -1.138391 0.120838 1.261256 2.197137 1.881031 4.855831 3.226775 -0.154216 3.725730 -4.671300 1.375718 5.135775 3.267610 -3.199587 3.264566 -2.850616 -0.749125 1.368622 2.116580 1.371745 2.244642 -3.151575 -2.581088 1.829136 -0.407770 4.333586 1.488189 0.903505 -4.668094 2.117059 -0.937839 0.662886 5.645249 2.656915 -5.205105 2.709713 3.728042 -2.026668 -1.701683 1.266944 -2.775849 -2.164024 -1.254881 1.332547 2.534874 -2.907717 -3.225988 -0.636459 -3.041801 3.575776 -0.612278 -1.934932 0.889045 -2.930807 -0.400744 4.305097 0.955609 -0.877706 -1.558283 -2.970432 -2.716353 -5.052017 0.631896 1.771991 -1.928128 -1.591791 -3.298278 -1.537591 3.271291 -0.834778 0.875712 -6.513863 -0.071607 2.778749 1.916216 0.770241 -4.205857 -0.509708 -0.129565 0.142347 0.633332 -1.750550 2.089953 3.974160 -3.032795 2.677879 0.809498 -1.309052 1.643616 3.216113 -3.366387 4.837635 0.534619 4.293000 1.071579 1.712986 -1.896998 0.954675 -0.820179 -0.732098 -1.029984 1.813668 -3.758905 -1.714701 1.882497 -1.832197 -3.323830 1.218759 3.215522 1.128198 0.406842 -0.708748 -0.942365 -1.458742 -2.884840 0.652207 2.379015 -2.050212 -3.257844 1.642212 2.758433 -2.456871 -1.486001 0.906525 2.538527 3.173872 -4.160866 2.929329 -0.128955 0.820369 -5.218627 -4.191610 2.002360 -2.180781 -2.839010 1.353492 -5.678116 -2.767914 -2.033427 2.578445 -4.937434 -0.990240 0.669725 4.475489 0.198650 -0.021346 3.161933 -1.039000 1.594512 -0.411044 0.858811 0.391780 2.888424 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -3.969499 2.329673 -0.007840 -4.827089 8.205810 -2.280810 0.441504 4.485091 0.387161 5.182520 -3.558794 -0.875842 -1.187005 -6.871685 0.637549 -2.764437 -0.015443 4.200229 -1.830077 3.496602 3.344195 -1.193651 1.410762 -1.385936 -2.823979 -4.000628 -0.701678 2.564965 1.881731 -2.383358 1.262009 0.742927 7.459534 -0.622257 6.766098 4.790119 2.999348 6.044885 1.843294 -0.112436 0.560406 2.498138 -2.741438 -6.079436 1.084544 -1.472004 -5.645187 -3.629249 2.842913 -4.740506 2.348212 5.408209 -0.116752 -0.706810 -4.162985 3.267668 2.097191 -0.043309 6.365022 1.937498 -3.582316 0.008500 -5.623587 4.259452 -3.670382 2.126288 -0.777894 -4.868259 -0.822978 2.629767 0.939788 -3.917925 -3.729689 2.704547 3.057316 -4.718565 2.046339 -2.360523 -1.644017 -4.108474 -3.439745 2.901891 -0.878599 4.695328 0.279834 2.456845 -0.447517 2.330305 -1.264083 -6.923733 0.668122 5.457954 -3.232911 -0.717290 -3.608567 4.190214 0.167593 -0.704399 -3.795508 -2.913982 2.365502 -0.807001 2.941942 -1.485374 -0.037768 -4.479096 1.204859 2.151494 0.396349 2.843661 2.060122 2.041667 3.106759 4.756378 -3.015887 2.493543 -7.814135 2.363885 -2.528553 1.617111 -1.761482 2.303898 2.713104 2.608948 4.235820 -7.161038 4.846711 1.383818 -1.907035 -4.914006 1.738531 -0.884414 -2.086452 -2.125045 4.126702 -0.678989 -0.697709 -1.314600 1.913745 0.412555 -2.214520 -2.309609 0.148527 3.234523 -4.175866 1.854094 -1.161337 -2.503073 -0.549982 2.923985 3.970031 3.302775 8.346279 4.494851 -1.292346 1.179196 -6.275939 0.523900 6.754247 1.509238 -4.815239 5.920262 -3.684011 -1.373536 0.972693 4.677198 3.251481 2.057845 -4.125795 -3.406873 1.282050 0.746379 6.929496 0.600347 0.858910 -4.477990 3.224074 -0.768316 -0.844952 8.560900 3.815794 -5.742511 0.470136 3.873230 -3.551903 -3.865494 3.231889 -4.059964 -1.096379 -1.730217 1.956629 3.166985 -3.553396 -3.732932 0.411837 -5.083023 4.790014 -1.626089 -2.382973 1.153786 -5.907503 -2.423473 7.237852 0.482119 -2.108348 -2.690151 -4.811913 -0.946406 -6.477012 1.982905 2.361335 -0.914828 -1.929998 -4.186249 -0.700797 4.457193 -0.376786 1.950095 -5.289872 -1.465994 3.951824 0.419213 2.616981 -3.808965 -0.679397 0.266405 0.232747 1.690915 -1.236498 2.788295 6.898949 -4.032451 2.943846 1.568216 -2.359702 1.794338 4.442247 -6.219165 8.452939 0.270178 4.090577 0.417670 2.119574 -2.570548 0.610560 0.228164 -0.891283 -0.559393 1.980577 -3.148198 -2.248244 0.539102 -2.977142 -3.649028 0.463217 3.973661 -1.276150 1.737912 0.113623 -2.481879 -1.819275 -3.374419 1.697789 4.343751 -0.833229 -3.437053 3.345081 3.233030 -0.932631 -0.334048 0.839280 2.923526 5.582262 -6.612286 2.366098 -0.386260 1.509155 -5.591537 -5.743792 2.202673 -4.154144 -1.450569 0.993671 -5.947828 -2.660807 -3.817454 2.944995 -4.311575 -0.067940 2.104520 6.850497 3.129020 -2.513454 3.012002 -1.835919 3.481515 0.425402 -0.548042 1.837202 4.981236 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.817640 -0.017332 -0.592475 -0.506775 2.102463 -1.142170 0.021026 0.910197 -0.030148 1.193633 -0.374500 -0.376896 -0.339362 -1.621461 0.392391 0.206747 0.429888 1.215403 -0.051698 0.502416 0.622566 -0.280863 0.098661 -0.027942 -0.346305 -0.809474 -0.224105 0.661582 0.876311 -1.413650 -0.507349 0.630591 1.992344 -0.316257 1.683538 1.254282 0.745504 0.987583 0.827443 -1.200434 0.137559 0.568427 -0.608735 -1.069603 0.170642 0.037013 -1.096285 -0.541492 0.754739 -0.035690 0.623582 1.159503 -0.286276 0.147251 -1.102158 0.827840 0.331033 0.116276 1.385623 0.324903 -0.436151 0.223290 -1.054353 1.678330 -0.929498 -0.084905 -0.729376 -1.213087 -0.003908 0.441045 0.405862 -1.373548 -0.807001 0.911997 0.571185 -1.028724 0.394387 -0.147394 0.596072 -1.557407 -1.625968 0.515727 -0.796527 1.085548 0.065981 0.426544 -0.451616 0.445559 -0.148738 -1.552721 0.313496 0.982583 -0.926961 0.036380 -0.318996 0.777828 0.443989 -0.187186 -0.513521 -1.139661 0.279471 -0.905555 0.755586 0.257652 1.405234 -0.326225 -0.262208 -0.280519 0.597037 1.067416 1.083525 0.328788 0.835585 0.953976 -0.256855 -0.855635 -1.546533 0.734744 -0.582513 0.104868 -0.290430 0.763345 0.803364 0.313304 1.142626 -1.987365 0.474406 0.019477 0.151859 -0.894173 0.182911 -0.155583 -0.413102 -0.672508 1.132187 -0.268305 -0.243813 -0.226901 0.581228 0.544972 -0.864417 0.109028 -0.125669 1.022093 -1.243989 0.453696 -0.378547 -0.802483 0.012540 0.406789 0.929359 1.325363 1.516333 1.311004 -0.576320 0.318517 -1.928480 0.211286 1.211165 -0.390259 -0.957908 1.463426 -1.041807 -0.427696 0.408573 1.589641 0.887603 -0.357927 -0.298996 -0.283247 0.664062 0.564364 1.360330 -0.705502 0.049719 -0.500123 0.166820 0.507605 -0.572680 2.153027 -0.075532 -1.418975 0.739726 0.912424 -0.359894 -0.643936 0.685334 -1.290315 -0.262417 -0.971979 0.727345 1.039519 -0.986765 -0.058326 0.394623 -0.916780 0.881700 -0.401763 -1.192468 0.790513 -1.227407 -0.196044 1.956776 0.179615 0.120214 -0.895688 -1.608889 0.050192 -1.281636 0.362060 -0.088133 -0.085763 -0.120816 -1.032839 -0.424571 1.617500 0.351193 0.826323 -1.818809 0.294400 0.787452 0.550717 0.306647 -0.664559 -0.167527 0.585568 -0.041456 -0.202582 -0.511364 0.348273 1.388980 -1.157730 0.101542 0.586021 -0.360656 0.651070 0.473940 -1.725678 1.634274 0.310094 0.924371 0.290740 0.304525 -0.755859 0.069549 0.103822 0.409813 -0.523575 0.065003 -0.566195 -0.492037 0.345731 -0.528138 -1.428957 -0.327775 0.874165 0.007883 0.440833 -0.779857 -0.416837 -0.220697 -0.604528 0.724359 0.837537 -0.022998 -0.304268 1.147953 0.611331 -0.179230 0.188844 0.117958 0.426689 1.086871 -1.533162 0.263270 -0.067395 1.174401 -0.667192 -1.650943 0.349701 -0.666661 0.033023 0.504983 -1.700945 -0.843449 -0.794546 0.414514 -1.258620 0.506115 0.302649 1.659591 0.558984 -0.558038 0.725954 -0.398963 0.264117 -0.211087 -0.177848 0.212838 0.894473 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -3.005822 2.038907 0.175010 -4.008316 6.252943 -1.301880 0.371580 2.513265 0.543431 3.696117 -3.333777 -0.921883 -0.899784 -5.539891 0.625268 -2.472934 -0.163146 3.125460 -1.466455 2.562373 2.647826 -1.069393 1.144089 -1.594780 -1.919988 -3.448174 -0.884313 1.787377 1.424663 -1.327029 0.980335 0.284767 5.381165 -0.479147 4.464424 3.608391 2.268421 4.868823 0.958810 0.321912 0.716979 2.175581 -2.069774 -5.016661 1.003858 -1.484695 -4.181011 -2.948493 2.175700 -3.799279 1.487490 3.906869 0.122504 -1.039061 -3.499560 2.243005 2.291955 0.481915 4.725566 1.702146 -2.227641 0.222694 -4.465293 2.783663 -3.180856 2.211837 -0.211492 -3.861014 -1.046738 2.170189 0.803973 -2.542015 -3.565311 1.444858 2.332080 -3.445375 1.534350 -1.964942 -1.740680 -2.754439 -2.377073 2.160798 -1.039590 3.934648 0.135000 1.554820 -0.044386 1.531713 -0.357650 -4.763491 -0.395457 3.982214 -1.858192 -0.506379 -2.458254 3.192366 0.458343 -0.736800 -2.760982 -1.956288 1.761194 -0.100829 2.192209 -0.641965 -0.871573 -3.697069 1.256127 2.139393 -0.174752 1.914251 1.463930 1.388044 1.738154 3.151070 -2.643908 1.765451 -5.831180 1.505208 -2.027886 1.384981 -1.520288 1.765789 1.832290 1.721410 2.994529 -5.004315 4.229981 1.258820 -1.727766 -3.236225 1.689407 -0.404056 -1.948487 -1.222452 2.850409 -0.253592 -0.586316 -0.682265 1.382818 0.066735 -1.488873 -1.348284 -0.119031 2.355895 -2.930603 1.226205 -0.944467 -2.048500 -0.381841 2.034254 2.653487 2.255235 6.172666 3.539550 -1.038404 1.026819 -4.636882 0.852782 5.776772 1.150203 -3.569518 3.822133 -2.291306 -0.584652 1.082253 2.990985 2.143024 2.068957 -3.007608 -2.436629 0.093257 -0.111190 5.122023 1.349134 0.791441 -4.002622 2.708472 -0.499557 -0.232850 6.373606 3.139160 -4.255444 0.580077 3.259904 -3.427126 -3.012071 1.957560 -2.430654 -0.514335 -1.589473 1.442891 2.286735 -2.750577 -3.590642 -0.490827 -3.787138 3.675735 -1.093537 -1.656023 0.746396 -4.179705 -2.396438 5.425179 0.249836 -1.783866 -2.120524 -3.246982 -0.884677 -5.132596 1.682317 1.743754 -1.393615 -1.610437 -3.249669 -0.345209 3.596987 -0.955989 0.906545 -3.661932 -1.108734 2.851343 0.770727 2.186594 -2.936422 -0.599921 0.133103 0.090226 1.371298 -0.887554 1.812471 5.328404 -3.172917 2.039327 1.093128 -1.863073 1.273210 3.987110 -4.150140 6.237085 -0.070490 3.277089 0.103366 1.811189 -1.703684 0.463261 0.226832 -1.207766 -0.159779 1.882314 -2.803604 -1.630293 1.070123 -2.246090 -2.615117 1.086971 3.203475 -0.281056 1.011654 0.339927 -2.016849 -0.993144 -1.633158 0.873116 3.456802 -0.537087 -3.215817 1.827959 2.730454 -0.976538 -1.230593 0.689920 2.087923 4.396299 -4.809316 2.324987 -0.319075 0.700278 -4.542207 -4.229258 1.734556 -3.149664 -1.190733 1.280543 -4.410057 -2.012322 -2.893661 2.528700 -2.826331 -0.326371 1.386868 4.548890 2.274350 -1.364532 2.211369 -1.141808 2.925419 0.076463 -0.726804 1.430171 3.827207 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -4.205712 1.938241 0.620860 -5.482432 10.122359 -1.553360 -0.522228 4.360163 1.473347 5.265745 -4.878091 -1.028005 -1.146356 -6.315682 0.705165 -2.659806 -0.409924 4.463525 -3.073768 2.277592 3.366605 0.179285 2.103373 -2.079755 -2.624613 -4.103496 -2.150204 2.613013 1.119300 -1.678087 0.591450 0.060815 7.307056 -1.665003 5.312152 4.296460 4.083971 6.415608 0.124988 1.417263 2.483731 2.644114 -2.768661 -6.483825 1.745781 -2.566686 -6.283841 -3.482744 3.429594 -6.025567 2.437063 5.014270 0.309305 -1.988960 -3.549926 4.156430 2.648565 0.132582 6.393686 2.148689 -4.616675 0.769544 -6.372415 4.929321 -4.597150 5.021411 -1.555203 -6.704077 -3.511317 3.754587 2.315814 -4.482166 -5.480767 1.635707 2.583636 -4.243636 2.248885 -2.531325 1.666262 -3.749959 -3.245641 2.929817 -1.816534 4.291276 -0.038324 1.966939 -0.503504 1.720031 -0.319442 -6.091085 -1.050477 5.400596 -3.096799 0.562841 -3.955507 1.540461 0.142332 -1.490610 -3.161845 -3.189324 1.962217 0.287507 2.842718 -0.392937 0.389768 -4.320336 1.795140 3.791907 0.658352 1.905431 0.462109 1.839939 1.958754 3.890233 -2.566320 2.323917 -7.874435 2.026822 -3.379698 1.852919 -2.594318 2.368422 3.259136 2.779175 4.186324 -6.456644 6.245930 0.709561 -3.357128 -3.567418 2.545314 0.075772 -2.763552 -1.026395 3.669678 -0.623456 -1.171272 -0.688699 2.462993 -0.389285 -2.608408 -1.554494 -0.714361 1.275768 -3.744228 1.681817 -1.175222 -2.711900 -0.020574 3.041032 3.851691 2.936127 8.440681 4.689880 -1.157079 0.511859 -6.821054 1.849157 7.439425 0.795707 -4.870080 4.953139 -3.288394 -0.213032 2.077036 3.973701 2.011057 4.065643 -2.580429 -2.478155 -0.930686 0.059489 6.946221 2.616705 1.356379 -6.312087 1.579961 -2.297080 0.832236 9.251168 4.629200 -6.767954 0.776786 4.846124 -3.068038 -4.319276 2.248107 -3.273702 -1.789883 -2.042875 2.012508 3.587017 -3.912727 -5.462231 0.336494 -4.992454 5.201418 -1.558822 -3.505391 1.510451 -6.088838 -3.120815 7.379840 0.930613 -2.135320 -2.368363 -4.464266 -0.136933 -7.323182 2.017544 3.150977 -1.859236 -2.170900 -4.277296 -0.292643 5.033024 -1.351905 1.519955 -5.504640 -1.200405 3.890420 -0.219761 3.225962 -4.729488 -0.629550 -0.962605 -0.896763 1.707389 -2.150817 1.041742 6.791689 -4.526536 3.493482 2.585308 -3.499656 0.493261 5.317202 -4.865707 8.388769 0.430813 4.117164 0.192834 2.646229 -2.291063 1.187125 -0.322566 -1.378137 -0.539431 3.131639 -4.447185 -2.474057 1.459489 -3.468851 -3.590983 1.818768 4.678550 -0.186336 1.240148 -0.133724 -3.030545 -1.595633 -1.607367 1.031246 4.391850 -1.761032 -5.283166 2.318489 3.751707 -3.250014 -2.830188 1.114045 2.886456 6.163755 -6.490164 3.613330 0.324983 0.903400 -7.509847 -4.562071 1.289991 -4.077839 -1.574502 1.249233 -5.848968 -4.223449 -3.657888 3.744886 -2.550914 -1.339689 2.088433 6.283698 3.537773 -1.844587 3.724015 -1.232547 3.769807 0.295141 -1.462831 1.761858 4.526444 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/trie-suffixes.cpp__main = -15.229107 1.065615 -8.495036 -21.633336 40.966753 -7.059492 -6.268645 21.243710 5.269946 20.192149 -14.797067 -2.316895 -4.484679 -29.667230 3.294744 -2.239550 1.498937 14.716018 -11.577117 10.391829 12.202161 -2.150501 11.265713 -5.659395 -10.084608 -13.179271 -3.862694 12.085991 4.596600 -7.215245 1.506657 0.980996 27.271132 -3.977573 18.465468 12.222572 16.307990 23.891396 5.416734 -2.720962 9.753232 7.365188 -8.081192 -25.100838 8.592426 -8.390370 -27.350990 -13.392971 13.624183 -24.468902 7.689040 21.935764 1.344671 -8.996946 -17.548783 12.669202 10.779842 -5.038941 23.724608 7.454805 -18.928011 -7.979427 -19.981388 14.886276 -16.127910 11.531422 -2.309503 -20.080104 -11.712108 18.678882 4.184249 -16.760723 -18.214943 4.616260 13.697739 -15.601307 10.038380 -7.539311 14.456055 -16.134475 -10.206586 10.720439 -9.393700 16.430369 0.175446 10.608295 1.335045 4.251215 -2.518864 -23.158240 0.683933 17.907125 -12.239681 0.662790 -15.641383 13.038466 -2.131982 -9.369128 -15.892276 -12.416527 5.857123 -1.019621 11.379328 -2.693414 2.650760 -17.137125 7.799653 10.038637 6.652886 10.844367 5.440571 3.058633 3.892955 14.020730 -10.287828 9.867397 -31.175707 5.807608 -9.243617 8.459209 -13.179235 6.935383 19.283322 10.692353 12.798496 -27.200150 25.459000 5.231746 -8.553529 -14.430590 9.158339 3.187974 -7.183797 -1.254303 16.298102 -8.245050 -3.472171 0.184662 11.663349 1.481837 -16.542399 -3.986758 -3.329564 10.500251 -16.699242 9.379050 -3.277285 -11.244926 2.383005 7.783938 14.715119 8.774968 34.056159 14.842135 -7.474195 10.282754 -24.400927 10.616925 31.343887 4.591988 -18.592666 20.457604 -15.190555 -0.123770 2.522536 15.958617 11.993633 9.851504 -8.733926 -5.188327 5.946861 3.703445 25.765812 1.273931 8.260532 -28.293256 2.546629 -4.581601 12.671667 35.603132 13.783603 -27.106726 6.040898 21.311971 -11.332051 -10.035074 7.127461 -10.830573 -7.778887 -8.591487 13.875440 15.413980 -16.552060 -20.257332 -1.950252 -17.749706 16.003408 -7.098560 -14.261970 6.119594 -22.335935 0.649791 29.023014 3.113287 -6.296643 -6.516089 -20.742770 -0.209691 -28.617726 6.536595 12.229699 -5.693858 -2.601595 -13.374324 -7.191311 21.639550 -1.921142 5.113794 -31.089731 3.145351 15.687889 1.234407 8.601837 -15.667001 -1.735445 1.982536 -2.209754 4.604001 -9.391054 2.030041 19.305068 -19.535611 14.521907 4.124753 -3.939271 7.057339 16.613219 -17.463788 34.283619 4.918278 25.348206 -0.045038 11.042934 -6.319241 8.223805 -4.064383 -7.013837 -3.359294 9.938773 -19.311785 -11.724542 12.066969 -4.934206 -21.309199 5.079945 20.643311 -0.449558 6.475135 -4.993046 -4.743734 -7.789169 -7.548583 11.281629 14.586767 -9.134503 -16.883928 7.775957 21.094619 -9.816832 -5.154912 6.101606 13.377244 25.557716 -25.849166 15.458405 0.592820 8.246147 -23.748939 -17.517446 10.380815 -9.099752 -0.606416 6.031234 -27.777147 -17.876647 -13.469792 17.362235 -11.537804 3.797205 3.773807 25.098746 12.983200 -7.232513 15.438512 -3.897339 6.161803 -1.622824 -2.286977 11.349448 15.549368 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -2.614404 1.116107 -0.495581 -3.166685 6.046591 -1.950144 -0.015138 3.375681 0.441274 3.750426 -2.022184 -0.841030 -0.968160 -5.244952 0.607139 -1.501767 0.409254 3.205585 -1.221210 2.161481 2.297664 -0.649957 1.076337 -0.605820 -1.924494 -2.939043 -0.545070 1.944585 1.680494 -2.388822 0.281928 0.668820 5.649220 -0.562971 4.885982 3.338610 2.511503 3.909139 1.720825 -0.642261 0.244112 1.709677 -1.983422 -4.054095 0.686177 -0.823916 -3.974099 -2.172198 2.185490 -2.648546 1.419332 3.738922 -0.166803 -0.213438 -2.945729 2.320841 1.100382 0.061823 4.425503 1.329907 -2.211063 -0.201023 -4.069465 3.377764 -2.845687 1.271342 -1.004950 -3.467374 -0.808769 1.714305 0.556220 -2.965230 -2.763823 2.106928 2.305210 -3.375082 1.386880 -1.439525 -0.439919 -3.255117 -3.063179 2.184644 -1.263008 3.474573 0.390062 1.809216 -0.089778 1.695424 -0.930086 -5.132289 0.813608 3.509227 -2.410080 -0.515124 -2.303453 2.761750 -0.077000 -0.415571 -2.476048 -2.553443 1.590345 -0.969959 2.208633 -0.804878 0.880059 -2.852845 0.607757 1.086206 0.620129 2.003162 2.215916 0.971968 2.153664 3.605916 -2.064691 0.591833 -5.536404 1.897257 -2.020079 1.065488 -1.506064 1.981165 2.119521 1.837954 3.225956 -5.547413 3.096309 0.971834 -1.229915 -3.316043 1.159933 -0.571384 -1.443916 -1.490438 3.133987 -0.855654 -0.512159 -1.042079 1.676008 0.549277 -1.937729 -0.901078 -0.170359 2.175742 -3.369194 1.358309 -0.883146 -2.074011 -0.232464 2.023678 2.953503 2.872205 5.717729 3.356406 -1.317336 1.015043 -4.990746 0.464510 4.690929 0.495106 -3.209687 4.353972 -2.798541 -0.963246 0.859990 3.820742 2.396852 0.792349 -2.313234 -1.886294 1.101673 1.138505 4.877214 -0.156599 0.566212 -2.881678 1.646035 -0.066526 -0.684215 6.216467 2.278693 -4.046146 0.862096 2.646585 -2.201241 -2.557369 2.140225 -3.300510 -0.539287 -1.800357 1.464934 2.653964 -2.638354 -2.200373 0.478271 -3.327491 3.274383 -1.206252 -2.284792 1.358469 -4.193830 -1.552716 5.316927 0.254452 -1.160120 -2.312757 -4.012951 -0.671871 -4.454097 1.451909 1.178797 -0.740188 -0.841627 -3.124220 -0.793127 3.698881 0.308561 1.524777 -4.520780 -0.427763 2.874256 0.624645 1.907138 -2.391792 -0.314198 0.615463 -0.246690 0.862977 -1.216777 1.594697 4.657815 -3.068175 1.829401 0.870919 -1.794289 1.346344 2.674570 -4.680955 5.971774 0.388402 2.924028 0.443893 1.384285 -1.869707 0.632874 0.099641 -0.443222 -0.447922 1.234078 -2.233254 -1.766924 0.564992 -2.052848 -3.235414 -0.157819 2.888661 -0.792971 1.275067 -0.595110 -1.755262 -1.047458 -2.011236 1.530082 3.042699 -0.505651 -2.162521 2.645025 2.338535 -0.466527 -0.324673 0.559327 1.959376 3.946672 -4.712588 1.380653 -0.223995 1.851735 -3.647044 -4.540940 1.423393 -2.715622 -0.442771 0.817311 -4.565896 -2.146640 -2.646746 1.953986 -3.096684 0.700027 1.586725 4.851172 1.941311 -1.811670 2.019805 -1.156178 2.087785 -0.007375 -0.499173 1.302640 3.349264 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -10.620380 11.099301 3.452433 -9.528801 22.302978 -2.602577 3.433391 7.175397 -8.095084 17.145844 -9.731696 1.410414 -3.420522 -18.041015 0.681573 -9.198270 -3.119508 7.625375 -0.349769 10.133740 7.548502 -9.620664 2.586534 -2.768769 -6.793158 -18.728575 -1.265201 5.705788 13.229900 -7.133025 6.101351 -0.545077 17.153828 -3.166198 14.442024 13.020535 5.249399 13.581861 3.736699 -4.130091 -3.065341 7.537330 -9.014706 -13.182718 1.713322 -3.581570 -14.419945 -8.112931 6.927072 -10.128835 -0.927671 14.561710 -3.807456 -2.133467 -11.841970 12.845450 9.239813 -2.515058 18.742176 1.843027 -4.430727 -4.425304 -16.365773 14.818995 -7.569989 1.016376 -2.690277 -11.521924 3.851138 1.915621 -4.128057 -5.616775 -5.239951 13.398202 9.264781 -14.801239 1.116661 -8.611080 -22.106865 -12.920280 -9.538797 5.027794 0.818070 13.274682 2.331880 6.002063 4.071981 8.545121 -4.020923 -21.007802 2.270727 18.444891 -6.738390 -4.297922 -9.062687 16.126876 3.887273 0.106560 -8.465948 -3.896397 4.333821 -1.841895 8.211116 -13.245013 -0.918282 -18.103726 1.077716 -0.477389 2.051843 7.739365 5.598652 3.639710 8.144866 15.429283 -14.989090 4.074152 -18.062338 4.495709 -1.521860 4.557155 -4.245175 6.807020 1.386051 6.138090 15.037688 -21.780431 9.089719 0.069511 -2.841477 -18.081040 0.567186 -5.297294 -3.808500 -5.001178 8.117838 -2.009455 -1.852507 -5.485051 3.565889 3.612941 -7.952161 -7.845116 5.268725 18.060853 -14.735699 5.308443 -3.472387 -4.771548 -2.838329 7.864692 12.294304 11.911049 21.235216 13.973084 0.928994 12.255536 -16.299839 0.166846 17.999787 9.005819 -13.203474 16.115499 -12.094098 -5.073216 2.272450 11.606073 11.519386 6.095591 -16.571810 -13.631667 10.336832 2.126601 17.250028 3.128421 0.780726 -7.931912 15.988627 0.606310 -7.777303 19.475778 9.873018 -14.563081 8.362471 7.287100 -14.620779 -7.278902 10.599988 -11.636652 -0.935629 -4.902913 1.907222 8.232457 -6.745864 -6.854094 -1.916712 -13.559292 16.571118 -3.600723 0.109480 7.137724 -10.934836 -15.136152 13.500257 0.080611 -5.477571 -11.358512 -11.647811 -12.447446 -13.601444 5.150523 3.702703 -6.702720 -8.708515 -14.633213 -1.959188 10.975159 1.871739 9.129964 -18.936090 -5.960371 8.529237 8.236052 7.901322 -7.378147 -1.912019 -0.060377 1.653012 3.961943 -1.758435 13.708756 21.421369 -9.832567 10.166597 -4.404508 -8.156121 6.801578 11.039834 -18.505421 19.489774 1.853066 12.078911 0.333552 5.059541 -6.530822 2.509984 4.032418 -4.319862 1.681482 2.458832 -5.455065 -5.993464 1.658818 -12.334496 -9.300150 -1.134837 6.131161 -0.305462 4.945533 1.253861 -6.975025 -5.524924 -9.599534 2.297837 10.742191 -0.600815 -5.284993 9.991498 3.275883 1.999922 -0.611801 1.545167 6.776529 9.218812 -17.554829 3.044284 -4.111215 2.448096 -13.018437 -17.848095 4.094727 -11.800243 -10.795530 7.038557 -18.322247 -0.251511 -11.343029 1.545863 -17.646738 -4.053600 3.418324 19.643550 5.575309 -5.516930 8.207403 -6.209295 9.930714 -0.816943 0.867996 4.756375 12.006352 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -7.064547 6.781472 1.985337 -6.607763 12.252405 -2.342015 0.814934 5.572634 -3.356105 10.416603 -5.756383 -1.741565 -2.299230 -11.828113 0.738948 -6.227877 -2.296483 5.950079 -0.486222 7.141224 5.449139 -5.336780 0.992886 -1.683801 -4.758077 -8.861336 -1.185168 3.747085 7.887704 -5.324158 4.047560 -0.055492 12.227447 -2.487446 11.304780 9.225980 4.779786 9.063283 2.599436 -1.549083 -2.804563 5.633811 -6.320095 -7.734151 1.211074 -2.288759 -8.960242 -5.283218 4.144521 -5.659287 1.094263 9.820591 -1.688712 -0.616368 -6.916533 8.314330 5.101315 -1.293036 12.175045 1.891843 -2.591471 -0.853733 -10.296516 9.125594 -5.182767 1.887580 -2.443830 -6.394250 2.373707 0.382346 -1.732609 -4.813491 -3.529467 9.166060 5.898821 -9.829736 1.843486 -5.843648 -10.551123 -9.339376 -6.981588 3.847968 0.468852 8.566248 0.547972 3.728076 2.414010 6.056710 -3.525604 -13.748852 2.001520 11.211398 -5.118246 -3.898194 -6.860939 9.293966 2.030578 1.186861 -6.195801 -2.950222 3.667186 -1.213971 5.620890 -7.562603 0.846870 -10.001291 -0.032539 0.466872 0.598050 6.136441 4.645511 3.107386 6.927768 10.646852 -8.524890 2.693259 -11.773870 2.360884 -1.780461 3.060759 -1.657617 4.372168 2.276767 3.868264 8.873222 -13.990738 5.426442 0.394581 -2.253270 -10.965085 0.895878 -3.835049 -3.284591 -4.121348 5.660663 -0.468106 -1.626740 -3.961860 2.699537 2.655377 -3.854634 -5.634388 3.460269 9.198358 -8.701833 2.811397 -2.540571 -3.355045 -1.870726 5.477457 8.167960 7.107628 13.778015 8.587220 0.352976 5.584159 -10.147165 -0.965802 10.043610 3.061681 -8.896330 10.759996 -7.681501 -3.732001 1.257082 8.335442 6.739168 4.701227 -9.929297 -8.733845 5.614677 1.518352 11.233593 0.104582 -0.341466 -5.385238 9.612925 0.967510 -6.289259 14.123637 6.909392 -8.406668 2.503069 3.786424 -8.028433 -5.897961 7.839708 -8.076633 -1.439088 -2.514197 1.318423 4.893523 -4.320219 -4.304354 -0.064084 -9.055868 9.954654 -2.786568 -1.779627 3.407983 -8.500620 -9.182063 8.931707 0.419046 -4.234813 -7.011390 -7.529758 -5.564375 -9.025103 4.366013 3.105916 -2.348065 -6.619631 -8.847849 -0.085120 7.002662 1.228259 5.269560 -11.921169 -4.514491 5.972922 3.934577 6.158777 -5.267698 -1.386602 -0.582699 1.759732 3.244865 -0.676535 8.503378 14.856441 -6.274342 6.324948 -1.096519 -7.258527 3.425129 7.105148 -13.030003 13.280060 1.814909 5.321908 -0.229768 2.695021 -4.663973 0.896675 2.776200 -1.580197 1.264531 1.037684 -2.362575 -3.614650 -1.538875 -8.110094 -4.575567 -0.990699 3.618652 -2.238641 3.616530 1.025209 -4.726574 -4.014358 -6.308741 0.677321 7.798719 0.417690 -2.849353 7.175011 1.380198 1.831672 2.393033 0.313966 4.061647 6.979604 -11.724084 1.779083 -2.450939 1.365439 -8.217158 -10.684179 1.657712 -7.384415 -4.932201 3.937053 -9.730869 -0.917364 -7.275373 1.205237 -9.535513 -2.672780 3.222954 12.745822 5.076196 -5.017741 4.278273 -4.176582 8.131744 0.956897 -0.906819 2.978165 8.020408 +PE-benchmarks/biconnectivity.cpp__main = -15.508414 8.422974 5.609161 -12.861305 29.121094 -7.901136 1.544772 12.903968 2.408596 18.977853 -15.087725 -4.936389 -6.369426 -20.035802 2.020983 -12.297126 -0.674746 14.835372 -6.415296 7.919632 12.040788 -1.661184 3.294089 -6.894252 -7.515594 -17.352155 -5.636589 6.255335 7.202837 -7.166073 3.840020 2.965707 27.218513 -3.456384 22.654102 18.427905 13.465853 21.822197 1.257728 6.705812 2.187704 11.539824 -10.881731 -19.941452 5.281940 -6.881957 -18.269017 -11.514371 9.597872 -16.034985 10.517039 18.119047 -1.385632 -1.783656 -11.490189 14.890122 9.945113 0.388701 22.974786 5.973622 -12.704938 4.236351 -20.178359 19.501389 -13.545827 11.919428 -4.440595 -19.831209 -4.782015 5.798327 6.392096 -14.631434 -13.915707 12.196112 9.001681 -16.443959 5.715892 -7.585634 -5.757053 -14.723813 -16.462542 7.537488 -1.331661 14.714442 0.087608 5.765247 -1.675998 7.892211 -1.374436 -23.539504 -0.701910 22.267119 -12.359719 0.916959 -16.504474 6.909570 2.693535 -0.413285 -9.565366 -10.536777 6.413316 -2.269442 10.140434 -4.414296 -1.874349 -15.584218 5.022077 6.219614 0.401493 8.570310 3.035764 6.998940 10.895421 15.996549 -10.865184 8.118482 -25.130941 8.118968 -6.291998 4.234156 -3.516968 7.433520 5.999209 7.509502 16.036567 -24.559010 14.842112 0.908020 -8.764446 -16.377665 4.488511 -5.273175 -8.754126 -7.757637 13.891845 0.344340 -3.797617 -5.454457 6.127926 0.647568 -6.760995 -12.137491 0.500326 9.489159 -13.181804 4.826132 -5.908532 -9.032634 -3.689492 10.256501 12.433590 12.964577 25.669097 17.743938 -2.538936 3.100337 -21.995710 0.517656 21.047526 4.661099 -18.296962 18.652507 -12.894765 -3.199497 6.655843 14.632411 9.225699 10.355420 -12.561799 -11.202486 1.582183 0.476540 22.756221 7.351443 2.095711 -16.414521 10.071268 -4.303941 -7.693922 31.641524 15.855497 -22.023518 2.254530 13.050088 -12.402988 -15.789322 11.422233 -13.989392 -5.785952 -8.129506 6.032964 9.998309 -12.551413 -10.842008 5.179882 -18.973973 18.649007 -3.930750 -6.022202 6.612689 -21.372253 -17.806486 24.476484 1.422369 -6.131382 -10.714152 -15.836788 -3.768264 -22.597952 7.698084 7.723638 -3.725575 -11.319993 -16.474644 1.806416 17.124320 -1.579017 10.383643 -17.084033 -8.484628 11.367919 0.561407 11.168211 -17.199542 -4.605906 -3.692572 1.373555 7.023780 -3.409157 8.180283 27.975927 -14.071139 11.713484 6.936360 -16.046208 1.997549 16.076547 -21.599447 24.999507 0.670586 9.318094 0.859756 8.275045 -10.846710 1.056720 2.580741 0.056574 -2.388842 7.310019 -10.156129 -6.712130 -0.179930 -16.414586 -9.205573 2.152569 10.255217 -1.676268 4.593011 0.823452 -11.171283 -5.425564 -11.250222 2.803666 16.136348 -0.751310 -11.997709 11.396458 5.951120 -8.139784 -2.860412 2.697111 6.560238 18.000337 -23.108299 6.704259 -0.687817 1.047627 -20.741174 -19.323489 2.650069 -17.851451 -10.402219 5.554815 -19.795309 -8.369274 -13.149572 7.213979 -14.655981 -7.480193 5.500531 23.955454 12.874149 -6.481522 12.178823 -5.529672 14.486911 2.072082 -3.821852 5.136072 17.463907 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -1.002848 0.239916 -0.468384 -0.526330 1.583370 -0.390780 0.129797 0.991137 -0.019876 1.014634 -0.961204 -0.549776 -0.701783 -1.183360 0.051745 0.043055 0.297865 0.977581 -0.579092 0.213108 0.869785 -0.255919 0.301658 -0.504918 -0.243485 -0.287065 -0.251767 0.214301 0.274534 -0.014560 -0.493933 0.219909 1.675810 0.177083 1.194751 0.823526 0.289070 1.725396 0.357660 0.141917 0.052813 1.029499 -0.558784 -1.660749 0.668256 -0.905329 -0.577549 -0.859559 0.691508 -1.096651 1.473380 0.819865 0.003346 -0.087560 -0.812909 0.129599 0.852468 0.498816 1.507364 0.430370 -0.835751 0.095459 -0.859833 0.787769 -0.822201 0.703646 0.292984 -1.354589 -0.359579 0.274867 0.916492 -1.131418 -1.134063 0.369958 0.169422 -0.657746 0.582109 -0.146378 0.010271 -0.790631 -1.300113 0.006466 -0.796218 0.982597 -0.458816 0.033057 -0.859049 0.084681 0.215682 -1.152974 -0.265110 1.085938 -0.486301 0.791998 -0.649892 0.389162 -0.116709 0.021152 -0.977952 -0.269781 0.225365 0.194702 0.491469 0.066381 -0.277310 -0.547665 0.879923 0.361719 0.053984 0.492180 0.953826 0.398619 0.483658 0.720070 -0.338005 0.446466 -1.465652 0.481200 -0.178130 0.245223 -0.067261 0.544571 0.372795 -0.357318 0.884955 -1.379095 0.949709 0.218392 -0.427158 -0.872136 0.509673 -0.314738 -0.722340 -0.436879 1.018699 0.037101 -0.346106 -0.423557 0.168618 -0.135303 -1.073805 -0.427217 -0.256439 0.653049 -0.727425 0.050637 -0.494992 -0.828403 -0.032015 0.484167 0.325658 0.623667 1.273424 1.026624 -0.433382 -0.354729 -1.321517 0.415926 1.592188 0.460498 -1.258495 0.597333 -0.356330 0.225546 0.786403 0.537538 0.748801 0.546136 -0.087376 -0.202612 -0.259593 0.021209 1.362083 0.774099 0.759677 -0.952735 0.444663 -0.099212 -0.075070 1.867365 0.607277 -1.231107 0.038766 0.613266 -0.586297 -0.343595 0.213936 -0.322297 -0.218885 -0.733379 0.448077 0.756862 -1.069249 -0.865986 0.163456 -1.181757 1.261370 -0.245180 -0.177462 0.272021 -1.749219 0.237317 1.638156 0.295953 -0.329504 -0.395996 -0.845540 -0.579806 -1.489991 0.452441 0.287202 -0.246515 -0.720101 -0.934056 -0.032004 1.167785 -0.087661 0.204434 -0.560228 -0.214207 0.637074 -0.241784 0.596805 -1.331371 -0.479056 0.017194 0.045848 0.917053 -0.129241 0.321930 1.386796 -0.916019 0.383896 1.401693 0.503401 0.202854 0.962310 -0.902344 1.230587 -0.465243 0.718937 -0.227846 0.633383 -0.328917 0.006545 -0.026163 0.708378 -0.298294 0.707983 -0.701322 -0.236477 0.315753 -1.022834 -0.396827 0.341859 0.498759 0.469174 0.271467 -0.224375 -0.762268 -0.192171 -0.475480 0.023826 1.057386 -0.052249 -1.094761 0.259597 -0.046590 -0.570509 -0.079948 0.266391 0.246395 1.104680 -1.135570 0.223886 0.045101 -0.154011 -0.937335 -0.848536 -0.070066 -0.501777 -0.668290 1.103018 -1.147406 -0.390275 -0.663041 0.640983 -1.074705 0.011197 -0.285278 1.214384 0.703892 -0.078982 0.849117 0.057448 0.988108 0.100405 -0.287318 0.239023 1.207770 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.995865 1.683662 0.445691 -1.617834 3.808706 -0.832076 0.322710 1.052253 -1.373453 2.960634 -1.364236 -0.456445 -0.923865 -3.803174 0.335981 -1.477998 -0.145357 1.763096 0.311845 2.274183 1.501812 -2.226610 0.476787 -0.368530 -1.092039 -2.676933 -0.434920 1.204964 2.702365 -1.903304 0.937020 0.196291 3.547758 -0.392438 3.154293 2.583223 0.520429 2.614652 1.251044 -2.161399 -0.848813 1.618172 -1.750866 -2.714967 0.588765 -0.613385 -2.191721 -1.635741 1.418970 -1.095147 -0.753590 2.762280 -0.825571 -0.200682 -2.622655 1.672279 1.720559 0.358925 3.488458 0.361006 -0.313142 -0.555606 -3.043424 1.782933 -1.613612 -0.363123 -0.903749 -2.101114 1.058021 0.226894 -0.785783 -1.463081 -1.014172 2.592293 1.705012 -2.638427 0.433921 -1.329062 -3.559503 -2.743034 -2.371568 0.809201 -0.607245 2.718227 0.206671 1.108187 0.597357 1.535112 -0.639661 -3.959326 0.628710 2.828733 -1.176669 -0.771008 -0.321422 3.326311 0.943343 0.006088 -1.757065 -0.736744 0.773079 -0.900058 1.681642 -1.595149 0.844539 -2.836917 -0.050138 -0.689248 0.647366 1.878920 2.182179 0.876517 1.818079 2.824850 -2.896747 -0.249195 -3.071078 0.835072 -0.937446 0.771020 -0.680274 1.733268 0.403948 0.767519 2.798325 -4.339691 1.347155 0.221183 0.162268 -3.203222 0.340495 -0.988193 -0.723819 -1.157442 1.856500 -0.542004 -0.446264 -1.036655 0.444998 0.934746 -1.481009 -0.559618 0.746470 3.605790 -2.710231 1.050786 -0.768840 -1.436303 -0.171410 1.057538 2.210656 2.564703 3.685108 2.885842 -0.548433 2.035011 -3.277786 0.196691 3.287169 0.585148 -2.458812 3.032719 -1.897403 -1.067107 0.630097 2.420178 2.662602 0.518434 -2.630387 -2.433407 1.877968 0.706404 3.088538 -0.102753 0.289609 -1.380866 2.870167 1.045391 -1.508569 3.901254 0.466471 -2.623919 1.881812 1.420476 -2.862567 -1.118122 1.693875 -2.162139 0.172012 -1.368532 0.548412 1.809279 -1.661928 -1.172458 -0.473920 -2.543750 2.862924 -0.804140 -0.522287 1.464265 -2.189580 -2.410538 3.085207 0.292859 -0.810656 -2.361675 -2.597147 -1.568732 -2.596095 1.055526 0.170290 -1.205939 -1.330970 -2.682543 -0.593920 2.315695 0.660881 1.640527 -3.702272 -0.482111 1.598398 1.826868 1.327213 -1.125201 -0.414072 0.764544 0.040783 0.491233 -0.182354 2.468652 3.703329 -2.179140 1.335486 -0.487189 -1.036137 1.901260 1.611775 -3.699902 3.732732 0.211843 2.948805 0.025816 0.893179 -1.177331 0.434459 0.936980 -0.587231 0.102098 0.340633 -0.921466 -1.169940 0.711668 -1.880483 -2.185583 -0.491754 1.263398 0.170152 1.093329 -0.189953 -1.368595 -0.757238 -1.006588 0.693524 2.103716 0.088644 -0.994403 1.939952 0.725425 0.868034 -0.237479 0.273167 1.101232 1.708020 -3.430577 0.523627 -0.881595 0.887312 -1.589311 -3.290257 0.994871 -1.915529 -1.014405 1.803610 -3.546403 0.085060 -2.110937 0.327311 -2.826616 0.243429 0.396500 3.640849 1.134305 -1.295026 1.495547 -1.153117 1.660438 -0.300034 -0.028933 0.606087 2.351276 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -4.877737 5.744557 1.901475 -4.321914 10.305773 -1.418947 0.998119 4.591513 -4.065327 7.844033 -4.330459 0.012310 -1.609832 -8.560559 0.375219 -4.516984 -1.402732 4.001229 -0.224766 4.757163 3.526879 -3.947723 1.009868 -1.123084 -3.249405 -7.489630 -0.768890 2.572949 6.366703 -3.568444 2.809729 -0.172957 8.545701 -1.645241 7.467544 6.023932 2.745430 6.244912 2.342445 -2.283626 -1.670384 3.575696 -4.254983 -6.065601 0.825897 -1.863337 -6.315303 -3.446394 3.053257 -4.522846 -0.384713 6.500121 -1.435948 -0.629617 -5.115779 6.219196 3.766597 -0.616981 8.772686 0.947975 -2.359258 -2.427085 -7.716401 6.484195 -3.446335 1.054163 -1.953943 -5.068087 1.619851 0.704016 -2.204682 -3.511871 -2.040719 6.733707 3.998469 -6.652241 0.900664 -3.845943 -9.529706 -6.119227 -4.794948 2.403798 -0.322652 5.866418 0.705292 2.646717 1.382962 4.082189 -2.115596 -10.084958 1.246574 8.762589 -3.341719 -2.113996 -4.244150 6.917009 1.593608 0.488963 -3.983295 -1.934321 2.240959 -0.668998 3.722245 -7.036840 0.718689 -8.460407 0.455795 -0.099003 0.739167 4.621248 3.504446 2.185967 4.499026 7.753941 -6.945112 1.223497 -8.898190 1.857998 -1.563435 1.988715 -1.731232 3.328310 0.770565 3.087001 6.702277 -10.807594 4.170166 0.223550 -1.235993 -8.576254 0.568020 -2.560683 -1.948746 -2.402813 3.829000 -0.751500 -1.041717 -2.780011 1.484487 1.714315 -3.912445 -4.319549 2.512470 8.416442 -7.421413 2.168399 -1.628423 -2.233389 -1.203483 3.675893 6.032434 5.235984 9.921094 6.168105 0.211676 5.356874 -7.738084 -0.126194 7.803721 2.963992 -6.217992 7.792920 -5.631782 -2.549948 1.053671 5.514248 5.035014 3.637253 -7.839370 -7.055088 4.970549 1.212038 7.711219 1.043271 0.301582 -3.769295 7.602714 -0.050182 -4.285195 9.848867 4.018572 -6.553201 3.112523 2.967392 -6.178646 -3.346458 5.113448 -6.095914 -0.562401 -2.172782 0.533094 3.837790 -3.373769 -3.332088 -0.440699 -6.233427 7.856178 -1.726353 -1.162765 2.595389 -5.536318 -6.276681 6.861074 0.584509 -2.624533 -4.989106 -5.673522 -5.440540 -6.239496 2.489778 2.192687 -2.610945 -4.316894 -6.414240 -0.709551 5.114460 0.978610 4.037514 -9.285213 -2.849721 4.081699 3.587344 4.043824 -3.873850 -0.903362 -0.398806 0.627836 2.181673 -0.878299 6.823809 10.479159 -4.387269 5.336799 -1.355572 -4.452831 2.760842 5.014083 -9.052891 8.996026 1.002268 5.830549 0.114819 2.161304 -3.127354 0.996261 1.745961 -1.837195 0.773450 1.116625 -2.200868 -2.677741 -0.073981 -5.983455 -4.235811 -0.701067 2.754967 -0.760939 2.302441 0.158633 -3.200717 -2.825185 -4.452572 0.749309 5.065137 -0.454326 -2.610012 4.679300 1.068690 0.853927 0.561923 0.531660 3.019893 4.274386 -8.011829 1.155540 -1.701462 1.157712 -6.239033 -7.959925 1.370879 -4.978421 -4.304392 2.732776 -8.049061 -0.648055 -4.931340 0.714752 -8.439245 -1.956883 1.885926 9.452364 2.850180 -2.953410 3.413063 -2.775659 5.007213 0.210788 0.154051 1.949033 5.575145 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -1.304208 1.047893 0.256052 -1.257231 2.912524 -0.682555 0.205449 1.648383 -0.589225 1.606253 -1.554506 0.740854 -0.245302 -1.824450 0.243878 -0.296874 0.116940 1.367392 -0.422363 0.705155 0.937058 -0.332677 0.386693 -0.810906 -0.667724 -1.840326 -0.034575 0.538863 0.528985 -0.086812 0.088607 0.339379 2.128576 -0.333241 1.420465 1.398225 1.060185 1.872611 0.727613 -0.344045 0.607281 0.743590 -0.629706 -1.970511 0.590557 -0.696776 -1.452887 -1.019472 0.851449 -1.858572 0.764970 1.350288 0.008960 -0.601431 -1.346198 1.247819 1.313811 -0.452977 1.893114 0.545159 -1.260677 -0.553041 -1.291961 1.868849 -1.335706 0.609400 -0.097330 -1.734738 -0.325549 1.218436 0.598554 -1.006342 -1.186440 0.454217 0.445835 -1.380244 0.503544 -0.496119 -0.178669 -1.171020 -0.966349 0.589875 -0.494742 1.336772 0.014889 0.444770 -0.667338 0.339788 0.231389 -1.634374 -0.462384 1.704605 -0.803424 0.301708 -1.311091 1.003148 0.679564 -0.631456 -0.628963 -1.005957 0.545114 -0.055479 0.756584 -0.780851 0.008461 -1.322079 0.525246 0.646367 0.159671 1.235761 -0.202554 0.923529 0.556875 0.920496 -0.609081 0.525682 -2.496353 0.654069 -0.264417 0.201887 -0.546873 0.347646 0.742316 0.584668 1.220837 -2.020193 1.809236 0.310808 -0.447464 -1.224457 0.659165 0.084544 -0.593288 -0.492960 1.149961 -0.082624 -0.246898 -0.065374 0.581884 -0.050127 -1.192995 -1.280146 -0.258450 1.570076 -1.748766 0.528956 -0.467023 -0.638283 -0.067584 0.576573 0.850789 0.841045 1.992149 1.396820 -0.163624 0.931517 -1.965787 0.470106 2.178837 1.177950 -1.485167 1.394319 -1.016415 -0.287350 0.642897 0.910584 0.621409 0.962669 -1.312117 -1.252025 0.359049 -0.307685 1.871799 0.824971 0.405044 -1.901089 1.071762 -0.409597 -0.018575 2.542852 1.061005 -1.995133 0.599777 1.601439 -1.100530 -0.952203 0.581603 -1.074621 -0.700092 -0.592596 0.505614 1.027586 -1.335277 -1.408454 -0.169805 -1.470404 1.588838 -0.202944 -0.531386 0.231040 -1.446687 -0.582196 2.094692 0.333799 -0.425924 -0.682588 -1.248940 -0.863881 -2.183142 0.351058 0.803277 -0.690874 -0.784982 -1.388325 -0.441297 1.373117 -0.505579 0.336120 -2.226763 -0.335382 1.150608 0.444087 0.378321 -1.786450 -0.376023 -0.042463 0.077984 0.463559 -0.532866 0.957852 1.929044 -1.238160 1.119977 0.791025 -0.538653 0.586741 1.513243 -1.449969 2.080465 -0.108562 1.532919 0.406526 0.809629 -0.905018 0.176798 -0.177035 -0.258934 -0.473371 0.829792 -1.472111 -0.587971 0.600890 -0.963286 -1.155634 0.598478 1.255702 0.445700 0.144123 -0.078134 -0.510508 -0.564944 -1.091162 0.281903 1.165096 -0.623204 -1.384815 0.664567 1.046788 -1.035739 -0.674523 0.412374 0.895728 1.483798 -1.818415 1.179627 -0.017722 0.153956 -2.168990 -1.724749 0.751569 -1.100665 -1.184323 0.587484 -2.354746 -1.059873 -0.916205 1.086630 -1.852379 -0.367963 0.268367 1.898662 0.324077 -0.187529 1.278653 -0.430946 0.862021 -0.007436 0.124517 0.123012 1.427862 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/weighted-job-scheduling.cpp__main = -1.607264 1.253647 0.398988 -1.303180 3.420744 -0.555031 0.148775 1.843941 -0.399014 2.176840 -1.599821 -0.242735 -0.530626 -2.246114 0.202139 -0.924576 -0.261609 1.496763 -0.618085 0.788484 1.257178 -0.380692 0.268807 -0.601150 -0.830812 -1.764234 -0.516345 0.666587 1.187883 -0.694819 0.142050 0.186089 2.710142 -0.428722 2.314154 1.815276 1.330678 2.174251 0.307751 0.320060 0.042309 1.222156 -1.213014 -2.188899 0.577809 -0.930651 -1.875636 -1.101656 1.018102 -1.738225 1.131491 1.838224 -0.197575 -0.196842 -1.138719 1.658963 0.942263 0.041754 2.551932 0.641143 -1.431070 -0.169354 -2.293725 2.244096 -1.235400 1.301640 -0.433840 -2.191872 -0.402871 0.528959 0.463984 -1.607568 -1.204628 1.518053 0.800071 -1.674456 0.652718 -0.908862 -0.960014 -1.579442 -1.708759 0.718496 -0.425538 1.649475 -0.071067 0.501524 -0.403949 0.826670 -0.318039 -2.688777 -0.083439 2.560260 -1.266306 0.231478 -1.754673 0.903487 0.236979 0.146359 -1.078338 -0.889171 0.733487 0.124789 1.003048 -1.113437 0.131800 -1.956608 0.630245 0.550390 0.172294 1.083527 0.646521 0.678795 1.167907 1.963592 -1.233628 0.669254 -2.717275 0.818684 -0.628906 0.634186 -0.479158 0.873669 0.659991 0.673370 1.814854 -2.819892 1.535338 0.067923 -0.827268 -2.042990 0.501108 -0.733451 -0.992838 -0.741351 1.361139 0.036704 -0.521075 -0.715543 0.583867 0.122227 -1.342624 -1.436820 0.169454 1.453064 -1.916565 0.407288 -0.615659 -0.856130 -0.405716 1.221120 1.554133 1.439357 2.890251 1.865152 -0.079099 0.560308 -2.462221 0.223541 2.458704 0.714967 -2.019481 1.991723 -1.561363 -0.305767 0.737122 1.477937 1.061789 1.437129 -1.512778 -1.369362 0.536262 0.175590 2.485211 0.922142 0.440056 -1.532748 1.344309 -0.605622 -1.014495 3.322729 1.521974 -2.368410 0.441757 1.105319 -1.181735 -1.196633 1.226542 -1.615252 -0.499760 -0.810814 0.427724 1.218947 -1.387395 -1.289554 0.423015 -2.000929 2.337294 -0.446518 -0.449486 0.647327 -2.239627 -1.338061 2.580049 0.321295 -0.784243 -1.150747 -1.556867 -1.034989 -2.163670 0.759552 0.921616 -0.559293 -1.385755 -1.828694 -0.021069 1.889185 -0.108280 1.001769 -2.121412 -0.839678 1.221456 0.098315 1.300134 -1.901871 -0.482639 -0.557285 0.070202 0.941592 -0.489443 1.241583 3.136567 -1.434232 1.487235 0.850602 -1.144325 0.198107 1.747835 -2.272614 2.640159 0.098196 1.238985 0.014251 0.899740 -1.088007 0.130641 0.189870 0.055751 -0.074620 0.856110 -0.923919 -0.627407 0.010791 -2.003049 -1.001623 0.245240 0.999766 -0.027403 0.517390 -0.139702 -1.169243 -0.740438 -1.318066 0.144829 1.711445 -0.363847 -1.365076 1.120498 0.279719 -0.736893 -0.189700 0.348192 0.779375 1.806745 -2.328502 0.528260 -0.053323 0.149733 -2.370138 -2.033592 -0.001266 -1.521796 -1.267563 0.714780 -2.240466 -0.785736 -1.408212 0.626791 -2.199988 -0.787443 0.461693 2.705032 1.190590 -0.653073 1.310757 -0.503482 1.675425 0.270961 -0.258362 0.565362 1.785941 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.998600 2.673340 2.546382 -2.992215 6.097496 -0.551852 0.505106 2.708950 -1.522080 3.754148 -3.481927 0.456267 -1.324952 -4.031626 0.541917 -2.722585 -0.516590 2.196449 -1.013230 2.375286 2.379769 -1.419262 0.848850 -1.704848 -1.598636 -4.009172 -0.674913 1.215700 2.262062 -0.097504 1.235120 0.211700 4.710349 -0.804282 3.282310 2.959568 2.469640 4.588984 0.365567 -0.828223 0.445762 2.323122 -2.084022 -4.165424 1.504966 -1.990189 -3.224070 -1.965505 2.028758 -3.603665 0.507238 3.481211 -0.312692 -1.521296 -2.872284 3.231471 2.559199 -0.271891 4.576520 1.091613 -2.131302 -1.578449 -4.419730 3.440632 -2.827043 2.390084 -1.092189 -3.572906 -0.574945 1.549856 0.411791 -1.666377 -2.705153 1.999002 1.640989 -3.200524 1.312206 -1.720246 -2.407369 -2.368881 -2.625577 1.366807 -0.684608 3.341678 -0.209486 1.145981 -0.236528 1.465553 -0.014625 -4.448425 -0.723336 4.246159 -1.973593 -0.072747 -3.049204 2.396036 0.652895 -0.645746 -2.209094 -1.406837 1.556339 0.131958 1.967276 -3.098581 0.100070 -4.181440 1.508437 1.723362 0.518670 2.436705 0.315877 2.107703 1.652235 2.924202 -2.661503 1.385577 -5.026550 0.715909 -0.730242 0.930125 -1.430842 1.795307 0.424056 1.460334 3.240284 -5.101147 3.774876 0.423814 -1.659022 -2.834330 1.296248 -0.595015 -1.575114 -1.331082 2.610420 0.014220 -1.005279 -0.610514 1.067099 0.105115 -2.021402 -2.568514 0.126262 3.296381 -3.670412 0.990339 -1.234413 -1.770675 -0.232203 1.926245 2.456361 2.336840 4.519600 3.476215 -0.232154 1.749966 -4.267975 0.985575 4.781014 1.572144 -3.902707 3.450217 -2.759591 -0.583180 1.335581 2.092358 2.166140 3.072677 -3.302348 -3.506628 0.673960 -0.365368 4.568863 2.404720 0.743479 -4.224232 2.992418 -1.988946 -0.816797 5.335522 2.665825 -3.878920 0.330533 2.902024 -3.745147 -2.679218 1.573973 -2.436410 -0.630648 -1.530085 0.673079 2.571062 -2.580011 -3.317901 -0.370839 -3.802607 4.239864 -0.733746 -0.458247 0.616260 -3.333904 -3.867357 4.375783 0.260398 -1.658346 -2.489593 -2.824838 -1.953588 -4.668039 1.388201 1.700282 -1.362308 -2.811991 -3.533628 -0.528729 2.608010 -0.735438 1.127934 -4.908637 -1.582471 2.377424 0.861349 2.070316 -2.739718 -0.931542 -0.558649 -0.277669 1.627063 -0.891203 2.574670 5.222787 -2.941156 3.247043 0.617407 -2.646990 0.847926 3.723220 -3.539007 5.082838 -0.352521 3.340116 -0.080377 1.934303 -2.047314 0.465608 0.546909 -1.424589 -0.221201 1.660240 -2.347092 -1.338719 0.213684 -3.145614 -2.119708 1.061907 2.165563 0.437750 0.801949 0.679057 -1.546150 -1.593775 -1.807152 0.342994 3.148133 -1.150544 -2.607224 1.638727 1.317760 -1.514780 -1.613722 0.864649 1.693704 3.356115 -4.483851 1.935496 -0.491185 -0.317249 -4.719112 -3.797716 0.868530 -2.975634 -2.633701 2.122657 -4.663403 -1.091553 -2.592036 1.872310 -3.058914 -1.556236 0.873977 4.395595 1.440440 -1.240243 2.885805 -1.103322 2.963765 0.234267 -0.403861 0.770198 2.985095 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.556827 0.313219 -0.078007 -0.493641 1.154941 -0.200014 -0.097459 0.590079 0.077281 0.697588 -0.656629 0.036337 -0.221465 -0.805630 0.074310 0.001153 0.066479 0.548171 -0.268465 0.087914 0.424510 -0.183791 0.270997 -0.354741 -0.209945 -0.765205 -0.048987 0.194989 0.166650 0.106898 -0.116658 0.072461 0.804462 -0.070869 0.427938 0.448635 0.362345 0.861852 0.235915 0.116031 0.262796 0.379967 -0.240990 -0.945264 0.385599 -0.420605 -0.520555 -0.501771 0.419494 -0.891142 0.410949 0.520731 0.032274 -0.312997 -0.557012 0.365255 0.596744 0.059531 0.807809 0.238200 -0.444134 -0.251820 -0.538922 0.532193 -0.641692 0.316003 0.075385 -0.802443 -0.310389 0.521277 0.149726 -0.256398 -0.464525 0.083606 0.198762 -0.488743 0.217412 -0.164565 0.013874 -0.345062 -0.444647 0.152677 -0.283594 0.572423 -0.056537 0.133012 -0.165384 0.056122 0.188099 -0.603224 -0.250746 0.613056 -0.216465 0.259742 -0.245594 0.341720 0.229018 -0.294702 -0.248254 -0.232079 0.131351 0.104192 0.305236 -0.128107 -0.195554 -0.529394 0.485429 0.283938 0.053864 0.263136 0.105081 0.147537 0.001297 0.337910 -0.327275 0.275383 -0.992932 0.215074 -0.013947 0.145278 -0.238581 0.137538 0.334473 0.060858 0.446002 -0.796740 0.822944 0.142153 -0.189617 -0.440790 0.329668 0.075265 -0.265264 -0.092507 0.492575 -0.103013 -0.143796 -0.009727 0.236854 -0.085512 -0.609045 -0.268133 -0.199801 0.587927 -0.597730 0.202822 -0.220392 -0.380312 0.021467 0.146455 0.236540 0.278930 0.816424 0.576865 -0.144889 0.247924 -0.758651 0.334050 1.022585 0.361886 -0.609773 0.405649 -0.280233 0.068463 0.332254 0.244559 0.279029 0.521203 -0.261394 -0.259254 -0.062177 -0.122382 0.743064 0.446510 0.362775 -0.856106 0.319963 -0.081585 0.211993 1.050566 0.507523 -0.860830 0.314102 0.666701 -0.656190 -0.249642 0.108571 -0.199154 -0.129691 -0.358353 0.263474 0.475407 -0.641332 -0.700111 -0.159434 -0.609550 0.678499 -0.077395 -0.032053 0.221178 -0.685132 0.011700 0.825666 0.183147 -0.171602 -0.258692 -0.499538 -0.559929 -0.919200 0.169493 0.313487 -0.421119 -0.293206 -0.541541 -0.182959 0.671677 -0.181911 0.052618 -0.779816 0.008378 0.440953 0.157690 0.219359 -0.591202 -0.181214 0.032477 -0.086439 0.303432 -0.157087 0.236277 0.681750 -0.548318 0.475110 0.358051 -0.021845 0.256033 0.623677 -0.430763 0.796217 -0.121481 0.539956 0.071084 0.407232 -0.238548 0.177337 -0.094880 -0.165561 -0.145752 0.432107 -0.678775 -0.263488 0.446893 -0.471096 -0.425717 0.313712 0.530828 0.454149 0.049886 -0.042442 -0.299313 -0.126123 -0.265855 0.083023 0.495402 -0.135531 -0.686591 0.094391 0.406856 -0.458097 -0.550501 0.243561 0.276859 0.652330 -0.693011 0.493982 0.050913 -0.046755 -0.827335 -0.496255 0.188838 -0.334061 -0.439380 0.411711 -0.987043 -0.368199 -0.342677 0.521152 -0.670717 -0.009967 -0.115324 0.694941 0.200619 0.036410 0.596687 -0.033992 0.332422 0.002697 -0.077686 0.125010 0.622974 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -3.697943 3.054218 2.332085 -3.683533 8.670351 -1.285301 0.916033 3.491191 -2.275358 4.605978 -4.355134 0.468460 -1.795343 -6.019225 0.785810 -2.713818 -0.380812 3.224211 -1.370085 2.898504 2.991194 -2.048102 1.205520 -2.139955 -1.768147 -5.143441 -0.768861 1.551657 2.911822 -0.408779 1.224080 0.297303 6.273171 -0.839769 3.983694 3.533274 2.734331 5.787653 0.810895 -1.843720 0.769128 2.972223 -2.397265 -5.580900 1.970188 -2.349503 -4.533465 -2.861499 2.571802 -5.036745 0.481814 4.294817 -0.316116 -1.963846 -3.795746 4.162464 4.102352 -0.238536 5.530230 1.445858 -2.462130 -2.033791 -5.504837 4.005277 -3.444977 2.791292 -1.032763 -4.695757 -0.801013 2.105747 0.292971 -2.433009 -3.323140 2.231700 2.384837 -3.757627 1.578011 -1.930853 -3.216178 -3.543037 -3.779847 1.403508 -1.700898 4.360374 -0.398451 1.291599 0.054239 1.419847 0.254795 -5.314741 -1.062897 5.634903 -2.106269 -0.301133 -3.491830 3.472712 0.944567 -0.993302 -2.963653 -2.160106 1.658798 0.083311 2.448732 -3.436149 0.062721 -5.004179 1.706776 2.096278 0.716943 3.607301 1.079573 2.188260 1.446077 3.377144 -3.845917 1.795533 -7.009473 1.021636 -1.081235 1.326669 -1.761645 2.106875 1.011105 1.725913 3.741681 -6.864819 5.169480 0.710542 -1.791441 -3.472696 1.715263 -0.494859 -1.948138 -1.498607 3.315719 -0.198917 -1.199799 -0.541685 1.365923 0.285505 -3.026379 -2.966229 -0.132333 4.941485 -5.551223 1.256807 -1.565644 -2.375245 -0.130070 2.010637 2.860612 2.747586 5.931650 4.336467 -0.663249 2.631428 -5.768156 1.596217 6.684554 1.749118 -4.595983 4.028362 -3.066237 -0.421292 1.695951 2.753153 2.839487 3.397956 -3.890892 -3.908024 1.268277 -0.510096 5.505300 2.948296 1.077638 -6.048564 3.749500 -1.759062 -0.612042 7.312424 3.531456 -5.000320 1.069158 3.731963 -5.070688 -3.213367 1.539309 -2.768150 -0.779624 -2.152462 1.206151 3.158833 -3.310578 -4.481731 -0.826117 -4.553150 4.995322 -0.970386 -1.091127 0.842024 -3.902226 -3.919021 6.018569 0.497828 -1.899641 -3.058288 -4.113021 -3.070535 -5.860274 1.788071 1.888051 -1.863357 -3.290743 -4.218023 -0.825491 4.146108 -0.922393 1.214238 -6.798459 -1.445738 2.837785 1.910554 2.586898 -3.891621 -1.202038 -0.395873 -0.449740 1.793975 -0.934564 3.142106 6.740589 -3.835797 3.839452 0.906595 -2.792032 1.421128 4.947828 -4.261968 6.163992 -0.438484 5.548299 -0.262729 2.436581 -2.247680 0.693546 0.606880 -1.725774 -0.431242 2.126850 -3.138177 -1.662055 0.848047 -3.745562 -3.504874 1.477557 2.847146 1.103755 0.990272 0.151051 -2.059139 -1.571866 -1.943584 0.482907 3.883848 -1.313394 -3.601690 1.681650 1.928208 -1.859853 -2.360712 1.119398 2.075484 4.149201 -5.431290 2.640553 -0.662650 0.093993 -5.801182 -4.979201 1.509404 -3.641162 -3.393779 3.036783 -6.242742 -1.691608 -3.171582 2.564299 -4.786027 -1.551108 0.624386 5.262881 1.594349 -1.124534 3.638092 -1.116081 3.435982 0.009813 -0.435030 1.063865 3.767257 +PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.454043 0.257563 -0.026937 -0.174629 0.634810 -0.104094 -0.249480 0.563323 -0.139676 0.672620 -0.246927 -0.011924 -0.147637 -0.501005 -0.049344 -0.075538 -0.065009 0.284607 -0.058116 0.104690 0.309907 -0.140418 0.015461 -0.005351 -0.268101 -0.277810 -0.117582 0.170210 0.566930 -0.656869 -0.224913 0.007996 0.796891 -0.196581 0.880355 0.554012 0.423522 0.416331 0.254557 -0.107600 -0.277250 0.392889 -0.461727 -0.405385 0.005602 -0.255965 -0.192330 0.057752 0.344877 0.086380 0.359193 0.479364 -0.218594 0.159891 -0.247168 0.449546 -0.193280 0.068818 0.871156 -0.002729 -0.430723 -0.157692 -0.610541 0.984950 -0.404118 0.288401 -0.329992 -0.412830 0.123501 -0.186447 -0.092200 -0.552577 -0.134665 0.751754 0.060551 -0.596412 0.084760 -0.297146 -0.118957 -0.376685 -0.625336 0.223163 -0.010724 0.324130 0.049678 0.225347 -0.160209 0.495044 -0.265289 -0.993097 0.286756 0.577352 -0.617086 0.193996 -0.165006 0.256693 -0.171819 0.255021 -0.177680 -0.042020 0.195378 -0.046078 0.307633 -0.605237 0.654166 -0.506391 0.205567 -0.255932 0.093280 0.051000 0.513671 0.188477 0.659464 0.828350 -0.053507 -0.297908 -0.682680 0.146754 -0.110428 0.099202 -0.069610 0.432190 0.023797 0.050385 0.801929 -0.870492 0.083451 -0.147277 -0.121708 -0.804123 -0.028385 -0.462102 -0.241979 -0.277857 0.392894 -0.014313 -0.162934 -0.491192 0.147193 0.151749 -0.691010 -0.404052 0.256341 0.250678 -0.415735 0.092871 -0.165177 -0.207993 -0.154893 0.471544 0.533741 0.634516 0.789118 0.572482 0.027129 0.164663 -0.676272 -0.137571 0.337250 0.008768 -0.686577 0.695610 -0.757018 -0.264579 0.224860 0.585571 0.493577 0.335359 -0.355474 -0.365333 0.524474 0.320010 0.697212 -0.215544 0.151857 0.295103 0.333804 0.106747 -0.579025 0.907632 -0.014970 -0.764245 0.394764 0.062361 0.194267 -0.105898 0.546796 -0.637037 0.075541 -0.309180 -0.068080 0.414254 -0.416881 0.011659 0.314248 -0.609346 0.863864 -0.132487 -0.050431 0.438112 -0.836052 -0.329087 0.633499 0.131046 -0.181348 -0.510608 -0.453649 -0.392124 -0.465934 0.178567 0.176923 -0.145870 -0.314831 -0.647470 0.037047 0.418295 0.285807 0.582698 -0.666280 -0.314015 0.345402 0.067553 0.386090 -0.121847 -0.114010 -0.110112 -0.015393 0.397241 -0.311318 0.518460 0.863090 -0.358178 0.576709 0.172375 -0.327681 0.046716 0.225269 -0.869944 0.750213 0.085258 -0.109617 0.035036 0.179647 -0.469313 0.034720 0.127968 0.285210 0.111204 -0.048576 -0.007951 -0.212472 -0.330076 -0.673973 -0.104604 -0.263978 0.062776 -0.072727 0.253625 -0.165606 -0.248867 -0.350312 -0.508180 0.080494 0.469902 -0.049209 -0.195123 0.578623 -0.249230 0.001640 0.390035 0.030196 0.115387 0.384485 -0.721263 -0.270881 -0.018683 0.104650 -0.500253 -0.525098 -0.392240 -0.231219 -0.061651 0.124319 -0.590764 -0.038258 -0.388084 -0.151657 -0.574539 0.001537 0.119501 0.912256 0.461636 -0.405862 0.326358 -0.236480 0.494427 0.238945 -0.082680 0.056171 0.397356 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.854914 2.955953 2.624378 -4.091308 8.025360 -1.549568 0.903777 2.665697 -0.873235 4.436985 -4.622715 0.020458 -1.843434 -5.686894 0.764648 -3.470306 -0.298133 3.675301 -1.410000 2.887940 3.104074 -1.710382 1.403094 -2.385000 -1.789272 -5.317717 -1.053385 1.697558 1.935277 -0.118066 1.928164 0.465985 6.103494 -0.832558 3.903740 3.833654 2.443122 6.411174 0.391451 -0.456720 1.329076 2.874448 -2.196582 -6.277602 2.205138 -2.192202 -4.415832 -3.526532 2.727046 -5.484664 0.641287 4.344293 -0.137173 -2.218930 -4.077948 3.527979 4.361484 0.315170 5.489440 1.602165 -2.522460 -0.592128 -5.249993 3.175454 -3.914861 2.663713 -0.836791 -5.042162 -1.216040 2.738121 0.946149 -2.132665 -3.923443 1.537916 2.376943 -3.729440 1.525781 -1.909441 -2.939543 -2.965947 -3.163205 1.433910 -1.141961 4.251226 -0.411060 1.307722 0.021027 1.223893 0.579674 -4.821967 -1.463405 5.184008 -1.825320 -0.040300 -2.837654 3.082259 1.475691 -1.627351 -2.758058 -2.151183 1.550532 -0.139342 2.550154 -1.640631 -1.329327 -4.636564 1.866304 2.368888 0.367690 2.966614 0.339374 2.315811 1.189185 2.745731 -3.754213 2.439271 -6.855264 1.303046 -1.423726 1.238750 -1.633909 1.889358 1.065028 1.730867 3.462227 -6.057858 5.369605 0.705412 -1.717983 -3.146848 2.076877 0.098504 -1.899318 -1.470857 3.403613 -0.150397 -1.157497 -0.181703 1.279574 0.027104 -1.880558 -2.410257 -0.397280 4.089973 -4.065453 1.490672 -1.579962 -2.608922 0.003609 1.626084 2.489205 2.512395 5.934546 4.509228 -0.766539 2.042188 -5.542074 1.548074 6.599894 1.650905 -4.425493 3.796251 -2.247451 -0.359659 1.843018 2.589213 2.537089 3.441381 -3.612571 -3.767336 -0.005529 -0.940852 5.427771 3.305859 0.978696 -6.437000 3.425473 -1.469775 0.090314 7.357862 3.431714 -5.272427 0.930727 4.321194 -5.401521 -3.764818 1.395884 -2.211210 -1.041428 -1.989774 1.576316 2.988887 -3.482039 -4.775207 -0.947983 -4.563144 4.520471 -1.048713 -1.315296 0.902684 -4.142189 -4.481687 5.953898 0.540085 -1.821036 -2.723481 -3.848620 -1.756336 -6.325950 1.779603 1.981765 -2.030533 -3.090197 -3.995648 -0.526560 3.935233 -1.372980 1.071760 -5.255404 -1.556413 2.984897 1.565154 2.216309 -4.191408 -1.146655 -0.141499 -0.279252 1.549376 -0.454429 2.278254 6.273781 -3.973489 3.194981 1.339056 -3.108885 1.585060 5.083538 -4.080813 6.350357 -0.655833 4.982660 -0.068866 2.372503 -2.080156 0.687990 0.600068 -1.903109 -0.666405 2.388723 -3.645216 -1.763517 1.473594 -3.438992 -2.982770 1.894624 3.475660 1.163389 0.917664 0.904330 -2.261345 -1.307036 -1.474389 0.434968 3.884205 -1.057341 -4.146511 1.554039 2.657643 -2.280354 -3.199096 1.139586 2.236425 4.338019 -5.497088 3.374124 -0.559922 -0.384791 -5.690432 -4.635281 2.098625 -4.142034 -3.131225 2.631394 -5.876426 -1.895271 -3.124999 3.186625 -3.649330 -1.525581 0.629305 5.016245 2.010310 -0.764068 3.788595 -1.175008 3.331047 -0.105133 -0.723668 1.060488 4.416430 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.599082 1.110535 0.222915 -1.517028 4.066099 -1.064240 0.395403 2.116585 -1.056127 1.999780 -1.853455 1.035595 -0.369087 -2.623642 0.458042 -0.352312 0.327608 1.727764 -0.459381 0.889129 1.129900 -0.497615 0.488915 -0.887544 -0.800854 -2.666118 -0.009991 0.796604 0.927148 -0.302049 0.106244 0.575593 2.832388 -0.559669 1.745275 1.768139 1.465435 2.245459 0.976472 -1.052295 0.825045 0.863668 -0.767694 -2.501481 0.632635 -0.700979 -2.162906 -1.188273 1.153960 -2.256852 0.287518 1.796868 -0.020514 -0.679724 -1.779943 1.787095 1.857211 -0.735911 2.333394 0.710164 -1.515900 -0.981290 -1.609147 2.472450 -1.642607 0.460104 -0.433597 -2.235142 -0.412902 1.671283 0.314151 -1.143448 -1.384240 0.563961 0.852375 -1.766332 0.617678 -0.480365 -0.294815 -1.715866 -1.349172 0.770799 -0.772063 1.827795 0.101399 0.589000 -0.349139 0.322722 0.289422 -2.094896 -0.490053 2.235981 -1.084027 0.093646 -1.636872 1.410209 0.975327 -0.854872 -0.804349 -1.643715 0.619901 -0.334292 0.994736 -1.114948 0.200786 -1.653814 0.340529 0.534143 0.483878 1.938574 -0.213734 0.975792 0.524867 1.103466 -0.997599 0.465605 -3.277540 0.972279 -0.554957 0.267008 -0.862628 0.444533 1.244764 0.903894 1.564184 -2.770699 2.257536 0.413900 -0.339023 -1.516709 0.770262 0.182911 -0.726527 -0.588227 1.561366 -0.290413 -0.259545 0.006101 0.935379 0.165839 -1.522962 -1.277914 -0.428520 2.185610 -2.650102 0.739951 -0.570800 -0.819037 -0.059637 0.657632 1.137538 1.230839 2.597757 1.837951 -0.401062 1.789869 -2.747139 0.741430 2.949247 1.339830 -1.769511 1.835877 -1.440629 -0.372558 0.730328 1.319707 0.891524 0.999932 -1.661864 -1.425375 0.753972 -0.192475 2.385675 0.849638 0.424239 -2.655003 1.239833 -0.420743 0.107049 3.278974 1.283305 -2.729799 1.221560 2.166670 -1.562997 -1.147379 0.705707 -1.626644 -0.947825 -0.982790 0.794167 1.501662 -1.773479 -1.596675 -0.204991 -1.742985 1.802027 -0.303743 -0.949257 0.456910 -1.602145 -0.851340 2.755000 0.409902 -0.299977 -1.029244 -1.874831 -1.265493 -2.783203 0.416916 0.809600 -0.949806 -0.832180 -1.792123 -0.830469 2.027311 -0.494610 0.609995 -3.449062 -0.020072 1.474363 1.094509 0.433229 -2.128672 -0.450803 0.159359 -0.125046 0.280387 -0.851758 1.141537 2.262771 -1.703827 1.517129 0.457661 -1.040419 0.927861 1.799987 -1.893183 2.693347 0.091985 2.471281 0.589287 1.026857 -1.229711 0.299809 -0.275521 -0.585946 -0.775781 0.988858 -1.975008 -0.800887 1.065543 -1.023118 -1.966111 0.626899 1.709860 0.651419 0.191021 -0.296589 -0.622395 -0.628675 -1.292443 0.609160 1.419519 -0.932711 -1.688818 0.943212 1.542559 -1.257668 -1.001729 0.528666 1.193385 1.854378 -2.369832 1.482913 -0.038191 0.603027 -2.693230 -2.520666 1.131064 -1.436515 -1.417247 0.784329 -3.212054 -1.401089 -1.176758 1.389514 -2.553881 -0.390241 0.400835 2.456048 0.159122 -0.209283 1.652216 -0.493356 0.804374 -0.256693 0.341432 0.220466 1.683217 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.294694 3.307089 2.886407 -3.713073 7.038249 -1.299209 0.741033 3.084251 -1.618487 4.176412 -4.212260 1.526341 -0.885211 -4.873315 0.601863 -2.673113 -0.515514 3.079312 -0.700145 2.950289 2.393600 -1.720087 1.077061 -2.100697 -1.853809 -5.343610 -0.527542 1.488361 1.839681 -0.311823 2.202781 0.264018 5.312131 -0.696491 3.374525 3.519562 2.241672 5.313371 1.265894 -0.935185 1.026149 2.127101 -1.893670 -4.935003 1.748458 -1.680849 -3.901586 -2.914898 1.882167 -4.984992 0.304947 3.792235 -0.183286 -2.062537 -3.626519 3.589246 4.039008 -0.842729 4.773068 1.210498 -2.202249 -1.232136 -4.375537 3.295536 -3.265502 1.766307 -0.681349 -4.043266 -0.316853 2.470047 0.928472 -1.893882 -2.995377 1.651723 1.802126 -3.603558 0.983875 -1.950648 -3.273660 -2.861799 -2.243457 1.528188 -0.552438 3.633495 0.014000 1.365967 -0.036363 1.365999 0.278551 -4.366750 -1.157800 4.676629 -1.813902 -0.565556 -2.828080 3.422926 1.508437 -1.435588 -1.981881 -2.011916 1.540930 -0.120453 2.126721 -2.280224 -0.901954 -4.377891 1.372603 1.901454 0.147657 2.995654 -0.207710 2.626148 1.467937 2.668864 -3.443404 1.953673 -6.276652 1.114723 -0.687831 0.908658 -1.488615 1.383062 0.687333 2.232754 3.237058 -5.453638 4.713963 0.617188 -1.472619 -3.011970 1.455694 0.053990 -1.381851 -1.357533 2.650377 -0.069654 -0.783278 -0.183152 1.086383 0.062456 -1.918765 -3.608292 -0.052280 4.611592 -4.565663 1.384028 -1.190691 -1.722995 -0.153520 1.558114 2.477861 2.135317 5.059488 3.656725 -0.121455 2.749650 -4.780761 1.034307 5.649206 2.568825 -3.810075 3.764901 -2.284311 -0.881959 1.446464 2.342036 2.087548 2.559077 -4.279402 -4.349755 1.246440 -0.993054 4.749029 2.832901 0.494758 -5.631571 3.854641 -1.000186 -0.357769 6.529802 2.929719 -4.447028 0.885759 3.775958 -4.540390 -3.141527 1.454907 -2.348576 -1.186649 -1.075460 0.797634 2.334711 -2.610545 -4.177041 -1.076354 -3.966751 4.159770 -0.749168 -0.997876 0.411699 -2.934337 -4.213544 5.044737 0.539340 -1.715950 -2.410398 -3.195829 -2.006389 -5.394097 1.307009 2.005199 -1.894868 -2.633052 -3.686093 -0.521117 3.027758 -1.342540 0.837007 -5.788548 -1.862856 2.728750 1.554321 1.478204 -4.201518 -0.850727 -0.216472 0.071625 1.127212 -0.487107 3.055186 5.864468 -3.150922 3.240346 0.810505 -2.639902 1.545557 4.482652 -3.874762 5.633194 -0.762983 4.882934 0.376236 1.940667 -2.122591 0.513657 0.413012 -1.784977 -0.541126 1.738653 -3.191023 -1.559764 0.943882 -2.875387 -2.743234 1.574898 2.928198 0.706330 0.684979 0.749012 -1.547715 -1.493075 -1.826237 0.329732 3.154949 -1.204408 -3.468472 1.653125 2.503878 -1.689883 -2.633912 0.845351 2.319403 3.469095 -4.870641 3.132676 -0.632778 -0.246773 -5.338358 -4.483558 2.308711 -3.700320 -3.164931 1.698213 -5.679642 -1.744131 -2.736894 2.460286 -4.007454 -1.219706 0.861330 4.498247 1.208087 -1.073825 3.127220 -1.470995 2.888251 0.106018 0.013960 0.532847 3.719025 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.995608 2.068069 1.311209 -2.941132 7.223501 -1.540465 0.626082 3.012957 -1.862863 3.872268 -3.171287 0.960376 -1.086412 -5.002840 0.849143 -1.730305 0.127612 2.878553 -0.663555 2.385797 2.241253 -1.557487 0.979983 -1.374258 -1.518579 -4.893321 -0.500928 1.652459 2.507739 -1.033828 0.949613 0.633708 5.205769 -1.080809 3.417128 3.297403 2.468542 4.305834 1.184462 -2.335012 0.807112 1.995946 -1.903061 -4.499506 1.309636 -1.312900 -4.097542 -2.253965 2.245614 -3.720464 -0.520781 3.723297 -0.406813 -1.307615 -3.322304 3.458511 3.365301 -0.716318 4.534754 1.121599 -1.996405 -1.541844 -3.935111 3.713156 -2.892591 1.073895 -1.456188 -3.997658 -0.497403 2.226221 0.008644 -1.940889 -2.491105 1.876207 2.132455 -3.370244 1.145996 -1.378658 -1.798421 -3.416904 -2.853359 1.376163 -1.309389 3.633428 0.073043 1.299786 0.366446 1.146343 0.084557 -4.444404 -0.481274 4.226593 -2.022484 -0.507018 -2.393236 2.993770 1.473480 -1.132044 -1.986034 -2.484566 1.198102 -0.753813 2.155408 -2.188609 0.673721 -3.634588 0.452156 0.787451 1.161783 3.380192 0.434226 1.695641 1.309026 2.656393 -2.920689 0.756972 -5.579353 1.429337 -1.427399 0.950508 -1.627980 1.634362 1.770082 1.842138 3.274357 -5.526592 3.777655 0.501703 -0.701536 -2.950036 1.280085 -0.144244 -1.341942 -1.264769 2.883508 -0.637526 -0.772146 -0.352483 1.593446 0.643268 -2.314376 -1.721840 -0.292545 3.996756 -4.704665 1.418805 -1.157489 -1.864766 0.025674 1.417532 2.533234 2.750208 5.028562 3.797114 -0.794087 3.238627 -5.047128 1.284875 5.379168 1.513127 -3.448681 3.693848 -2.733867 -0.803303 1.312407 2.747347 2.376471 1.993566 -3.279977 -3.066249 1.506145 0.048300 4.569000 1.549099 0.591581 -4.803488 2.726299 -0.732365 -0.332575 6.067320 2.125398 -4.716962 2.017568 3.475165 -3.778894 -2.384181 1.430442 -2.932863 -1.100925 -1.939490 1.312258 2.904903 -2.921011 -3.022544 -0.465939 -3.470557 3.578388 -0.886119 -1.622067 1.233952 -2.920445 -3.008950 4.945052 0.609815 -0.987885 -2.645404 -3.655588 -1.998303 -4.870482 1.229855 1.135893 -1.677526 -1.975105 -3.562759 -1.244954 3.604310 -0.384513 1.453227 -6.442028 -0.397623 2.569790 2.160744 1.470291 -3.176563 -0.766972 0.274659 -0.491851 0.561296 -1.148301 2.306647 4.821668 -3.403610 2.706587 0.023766 -2.630568 1.766319 3.423248 -3.968820 5.346166 0.213245 4.862324 0.454582 1.805879 -2.153010 0.718072 0.209125 -1.512720 -0.813286 1.525716 -2.928081 -1.629465 1.573809 -2.313833 -3.573168 0.736341 2.833901 0.791501 0.854228 -0.243939 -1.571615 -1.204413 -1.629743 0.990812 2.941192 -1.340074 -2.822037 1.978401 2.337780 -1.395320 -2.081595 0.841033 2.035226 3.328956 -4.744183 2.350055 -0.488697 1.000945 -4.445411 -4.596438 1.843938 -2.955610 -2.330956 1.996027 -5.530553 -1.721405 -2.624009 2.064637 -3.921893 -0.770951 0.828489 4.622237 0.927561 -0.995817 3.006266 -1.139654 2.036588 -0.445113 0.157297 0.688900 3.116880 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.391379 1.403843 1.048184 -1.441917 3.261061 -0.547653 0.265263 1.542244 -1.402949 1.896391 -1.670366 0.568490 -0.483193 -2.465874 0.477516 -0.878049 -0.144587 1.090834 -0.091777 1.468571 1.052623 -1.088441 0.324098 -0.678813 -0.869778 -2.287672 -0.100357 0.775256 1.675974 -0.699482 0.562642 0.246078 2.586654 -0.534710 1.836440 1.501337 1.316285 2.114191 0.812492 -1.689557 0.032348 1.048190 -1.090475 -1.997330 0.527493 -0.675211 -1.682515 -0.756810 0.985741 -1.143920 0.093333 1.856216 -0.303961 -0.729808 -1.784070 1.849398 1.457221 -0.427709 2.366589 0.441030 -0.781882 -1.224279 -2.119033 2.286817 -1.450657 0.588440 -0.983910 -1.448541 0.159272 0.758025 -0.004034 -0.654234 -1.298264 1.265245 1.004197 -1.839168 0.667062 -0.838248 -1.184166 -1.771070 -1.591190 0.951182 -0.571770 1.909331 0.070644 0.762917 0.061910 0.913004 -0.183099 -2.437964 -0.070644 1.894078 -1.258913 -0.538741 -1.160224 1.874773 0.354750 -0.320970 -1.071488 -1.133836 0.892215 -0.382339 1.067428 -1.749940 1.072639 -2.140572 0.526907 0.498085 0.604594 1.863722 0.893710 1.189670 1.097173 1.610730 -1.341301 -0.175239 -2.805334 0.264545 -0.255133 0.349718 -0.932111 1.094672 0.334654 0.845147 1.839843 -3.053638 1.764584 0.311332 -0.378534 -1.292821 0.428597 -0.326134 -0.691400 -0.805929 1.370769 -0.141042 -0.438868 -0.242189 0.627528 0.485046 -1.433807 -1.101806 0.159520 2.385432 -2.606954 0.600520 -0.566553 -0.857274 -0.075591 1.016792 1.454883 1.496518 2.200948 1.788027 -0.252728 1.370189 -2.444713 0.562174 2.533677 0.495335 -1.967215 2.095836 -1.814595 -0.624230 0.530267 1.523999 1.368312 0.804692 -1.940524 -2.020614 1.181774 0.103769 2.354452 0.404618 0.144346 -2.118827 1.757046 -0.354481 -0.612182 3.057527 0.653905 -1.924160 0.310393 1.543770 -1.922320 -1.115144 0.954356 -1.669418 -0.287551 -1.009436 0.359734 1.533881 -1.268087 -1.398490 -0.305794 -1.855266 2.090249 -0.394494 -0.653196 0.341682 -1.255716 -1.795511 2.436976 0.135632 -0.641403 -1.604343 -1.812834 -1.084969 -2.284752 0.621173 0.582821 -0.601662 -1.154478 -1.935224 -0.645558 1.473437 -0.126967 0.703111 -3.576043 -0.595058 1.271235 1.068658 0.659953 -1.144090 -0.384627 0.208190 -0.249672 0.385114 -0.598983 1.769268 2.634329 -1.594398 1.769557 0.159134 -1.406338 0.772287 1.822977 -2.029776 2.742496 -0.209247 2.073819 0.117047 0.915706 -1.276280 0.250111 0.278356 -0.845432 -0.257490 0.423569 -1.099794 -0.751822 0.087090 -1.270816 -1.772710 0.208352 1.076087 0.286378 0.472001 -0.084820 -0.432701 -0.907975 -0.965112 0.544154 1.490568 -0.714681 -0.992764 1.214205 0.861105 -0.270232 -0.449080 0.361818 0.927475 1.655890 -2.457817 0.910813 -0.374795 0.607661 -2.264467 -2.438099 0.673056 -1.377363 -0.964209 1.194100 -2.875100 -0.608810 -1.360636 0.748436 -1.849997 -0.169928 0.604125 2.402416 0.308495 -1.041410 1.394710 -0.757995 1.197771 0.051936 -0.004036 0.275857 1.381801 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -4.283452 3.536791 3.787923 -3.697396 8.164785 -0.329566 0.310923 3.939396 -3.230303 5.816336 -4.024872 -0.342513 -2.268569 -6.144690 0.780518 -3.562978 -0.954807 2.657023 -0.752656 4.128044 3.425879 -3.228090 1.191572 -1.608313 -2.322146 -4.185821 -1.217270 1.890620 4.892171 -1.472593 1.840149 -0.127102 6.784685 -0.821164 5.324087 4.117476 2.768291 6.359448 0.900503 -3.218464 -1.162361 3.831835 -3.699049 -5.561559 2.396136 -3.020203 -4.172406 -2.547709 2.728263 -3.804407 -0.408220 5.405259 -1.103729 -1.657854 -4.046235 4.263566 3.209440 -0.047190 7.052427 1.193829 -2.067783 -2.685982 -7.223307 3.977731 -3.328592 3.000576 -2.224262 -4.860362 0.137122 0.606124 -0.154752 -3.136879 -3.301712 4.612855 2.643997 -4.683080 1.705431 -2.765865 -4.828436 -4.097000 -4.856385 1.670563 -1.367851 5.226049 -0.407568 1.839915 0.758697 2.787166 -0.870421 -7.642842 0.148658 5.940773 -3.207313 -0.714762 -3.312746 4.109122 -0.228587 0.307697 -4.086918 -1.205167 2.258055 0.134092 3.099476 -5.339278 1.599911 -6.562795 2.006953 1.172408 1.395070 3.262492 3.353806 2.543473 3.268740 5.640368 -5.051251 0.718194 -6.122811 0.683055 -1.124069 1.864892 -2.121822 3.763294 0.178556 1.698216 5.547460 -8.486747 4.004213 0.301055 -2.081416 -4.962196 1.260407 -2.050437 -2.222562 -2.187779 3.959132 -0.477191 -1.796092 -1.824319 1.276618 0.884305 -3.813496 -3.090904 0.779277 5.433793 -6.049206 1.290874 -1.960713 -3.018742 -0.241124 3.173799 4.347910 4.477473 6.291702 5.329313 -0.624072 2.764848 -6.282643 1.442777 6.768327 1.245493 -6.077408 5.522050 -4.583035 -0.985687 1.939594 3.511408 4.559590 3.541799 -4.832306 -5.304139 2.855797 0.840427 6.772817 2.867710 1.442169 -4.856585 4.895084 -1.846297 -2.471816 7.819192 2.423131 -5.279142 1.079115 2.918437 -5.426271 -2.797144 2.512332 -4.048439 0.007774 -2.489857 0.348796 3.996778 -3.520411 -4.079545 -0.398998 -5.749739 6.811433 -1.324089 -0.414448 1.459354 -4.889061 -5.832382 6.278397 0.699676 -2.731558 -4.696651 -4.497617 -3.417680 -5.859869 2.482975 1.747333 -1.717375 -4.474595 -5.662572 -0.830056 3.944175 0.429752 2.198672 -7.680957 -2.025878 3.187401 1.430471 3.911128 -3.227395 -1.294032 -0.365391 -0.879372 2.595371 -1.067702 4.367280 8.000673 -4.524551 4.691501 0.300699 -3.253126 1.488867 4.418789 -5.900678 7.488859 -0.456438 5.754048 -0.884670 2.740495 -2.846091 0.976999 1.502796 -1.451159 0.443417 1.740284 -2.059234 -2.099454 -0.305491 -5.130286 -3.380752 0.274032 2.176712 0.382159 1.819992 0.218868 -2.452719 -2.454880 -1.961046 0.623703 4.854409 -1.508076 -2.963827 2.836730 0.480128 -0.222872 -1.544752 1.181028 2.102370 4.474384 -6.861453 1.424168 -1.288604 -0.067345 -5.349244 -5.439436 0.426069 -3.814435 -2.819809 4.164319 -6.527519 -0.046326 -4.171088 1.425545 -4.462042 -1.143907 0.711398 6.679438 2.429816 -2.798814 3.954780 -1.651798 4.696053 0.500774 -0.711789 1.135591 4.055400 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = -1.891513 1.217056 1.158242 -1.584635 3.489555 -0.045284 0.252396 1.714839 -0.054315 2.030997 -2.202474 -0.350102 -1.126627 -2.255412 0.116511 -1.456495 -0.313315 1.522845 -1.149412 0.604309 1.702831 -0.437045 0.639791 -1.227029 -0.645273 -1.923089 -0.632324 0.361366 0.507325 1.009964 0.521115 -0.035193 2.371913 0.025724 1.533121 1.454504 1.161172 3.145799 -0.550915 1.619728 0.276613 1.670407 -1.079542 -3.216600 1.545412 -1.798635 -1.712937 -1.708795 1.175701 -3.277607 0.963622 1.778719 0.110976 -0.798023 -1.017769 1.088537 1.910136 0.477943 2.453366 0.984595 -1.637219 -0.371796 -2.466625 0.709188 -1.449509 2.076852 0.463567 -2.741300 -1.156741 0.863829 0.761415 -1.023154 -1.614700 0.630341 0.757184 -1.269940 0.887398 -0.820183 -1.426147 -0.725843 -1.438197 0.177684 -0.468347 1.839949 -0.552283 0.145909 -0.141889 0.190734 0.369555 -2.153651 -0.939498 2.635401 -0.675546 0.878331 -1.976288 0.431170 0.077779 -0.117617 -1.423041 -0.361991 0.682261 1.042060 0.928579 -0.692282 -1.968682 -2.108897 1.713577 1.214539 -0.154675 0.517052 -0.065842 0.496728 0.087049 1.419235 -1.785307 2.267771 -2.673680 0.728311 -0.443534 1.010090 -0.544335 0.584746 0.552552 0.176115 1.369512 -2.282988 2.414851 0.329036 -1.312888 -1.742520 1.159060 -0.517807 -1.221887 -0.489036 1.547239 0.105419 -0.757955 -0.470410 0.425133 -0.547109 -1.211835 -1.592398 -0.466306 1.185174 -1.622034 0.257600 -0.907991 -1.262126 -0.267233 0.882383 0.868705 0.865277 2.619826 1.915800 -0.197026 0.324545 -2.108704 0.775047 3.244542 1.420188 -2.209463 1.059282 -0.638491 0.571729 1.184557 0.336348 0.969301 2.453340 -1.064713 -0.981176 -0.689908 -0.527038 2.566372 2.805480 1.200078 -3.042254 1.155196 -1.325741 -0.020616 3.095214 2.441672 -2.555802 0.252875 1.378100 -2.216974 -1.286887 0.317362 -0.471541 -0.421943 -0.794417 0.546630 1.171917 -1.794047 -2.542621 -0.074764 -2.293523 2.428074 -0.316581 0.707466 0.419726 -2.508522 -1.598603 2.427624 0.372551 -1.245520 -0.936405 -1.100063 -1.539427 -2.641290 0.976256 1.175234 -1.041347 -1.981889 -1.792962 0.092801 1.862904 -0.710694 0.217284 -1.294487 -0.921126 1.123214 -0.414082 1.693892 -2.626639 -0.825122 -0.946833 -0.171544 1.720085 0.031485 0.582743 3.053055 -1.627512 1.651943 1.186136 -0.753502 0.026825 2.406475 -1.278346 2.431229 -0.558047 1.852846 -0.459868 1.427863 -0.740493 0.300355 0.136325 -0.316817 0.047953 1.807435 -1.478192 -0.527172 0.666194 -2.453029 -0.452147 1.200405 1.119827 0.886513 0.287958 0.582460 -1.600179 -0.443451 -0.710910 -0.370722 2.076410 -0.497365 -2.432778 -0.016015 0.284686 -1.456784 -1.791422 0.801429 0.724126 2.083800 -2.120552 1.146112 0.031388 -1.188151 -2.768361 -1.434598 0.128797 -1.789962 -1.982871 1.483672 -2.182925 -0.369335 -1.364680 1.394312 -1.865843 -1.188085 -0.323062 2.101778 1.199807 0.188846 1.914767 0.057329 2.130388 0.222503 -0.437094 0.675181 2.252004 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.148284 2.397586 2.353031 -2.640782 6.294077 -0.491089 0.447298 3.550028 -1.885773 3.829555 -3.350253 0.428935 -1.608432 -4.128645 0.467235 -2.275291 -0.400785 2.340107 -1.206391 1.954546 2.592562 -1.272337 0.838092 -1.601566 -1.543013 -3.348768 -0.706988 1.049573 2.265822 0.075304 0.965460 0.213359 4.779425 -0.540521 3.419112 2.807517 2.426200 4.836653 0.255691 -0.412289 0.062870 2.614296 -2.174722 -4.590302 1.918939 -2.503750 -3.032938 -2.012830 2.023234 -3.961922 0.680763 3.418020 -0.227502 -1.169830 -2.392657 2.860090 2.631016 -0.299028 4.682443 1.271031 -2.602264 -1.723020 -4.524802 3.081469 -2.540372 2.685814 -0.716687 -3.972418 -0.832602 1.238918 0.666669 -2.269042 -2.552969 2.127603 1.415300 -2.959497 1.416969 -1.517613 -2.322536 -2.402145 -3.015902 0.969762 -0.942701 3.389885 -0.521670 0.853394 -0.284300 1.161843 -0.024311 -4.644598 -0.733913 4.426800 -2.118203 0.507765 -3.467861 1.816800 -0.009697 -0.111536 -2.536007 -1.332420 1.517050 0.726187 1.868638 -3.233137 -0.346291 -4.059546 1.903467 1.322260 0.503046 2.082323 0.797940 1.684231 1.449538 3.199131 -2.823571 1.824344 -4.927050 1.001430 -0.707832 1.280757 -1.388595 1.731744 0.713787 0.986841 3.300032 -5.236191 3.560348 0.349716 -1.787691 -3.295273 1.391877 -1.012794 -1.842512 -1.322943 2.869622 -0.046995 -1.197881 -0.993364 1.048027 -0.015934 -2.732620 -2.950717 -0.147135 3.163533 -4.125695 0.700210 -1.436801 -1.950095 -0.386518 2.015231 2.407265 2.437655 4.449450 3.508762 -0.319147 1.800719 -4.430562 1.100411 5.057429 2.005255 -4.163255 3.164169 -2.718157 -0.104546 1.701975 1.806470 2.323549 3.177287 -2.922938 -2.987626 1.049234 -0.071306 4.755442 3.034261 1.376374 -4.335191 2.662811 -1.988932 -0.975104 5.630434 2.811051 -4.351019 0.787376 2.446298 -3.179557 -2.148800 1.357193 -2.445443 -0.758970 -1.549131 0.579757 2.630775 -2.908377 -3.341907 0.009894 -3.960750 4.523673 -0.730926 -0.017753 0.750272 -3.888698 -3.366436 4.470270 0.545116 -1.791841 -2.488266 -2.776173 -2.562946 -4.579622 1.524477 1.747841 -1.372284 -3.191080 -3.677478 -0.475577 3.025261 -0.519380 1.093504 -4.683946 -1.483034 2.297062 0.354168 2.593671 -3.642363 -1.123251 -0.901353 -0.434979 2.251693 -0.871934 2.269197 5.407513 -3.013790 3.494865 1.133665 -2.138713 0.542230 3.553416 -3.378921 4.874356 -0.468617 3.782489 -0.385359 2.146665 -2.041654 0.488299 0.395119 -0.616328 -0.141475 2.018966 -2.189115 -1.204674 0.204822 -3.827785 -1.893886 1.061685 1.888430 0.745856 0.807182 0.374467 -1.875293 -1.520650 -1.920755 0.113203 3.415020 -1.442623 -3.059623 1.361395 0.591794 -1.655788 -1.530686 1.040880 1.611221 3.413535 -4.363703 1.487580 -0.349265 -0.665338 -4.678615 -3.742722 0.349532 -2.898930 -2.842528 2.477431 -4.575348 -0.822680 -2.557122 1.826117 -3.718158 -1.452688 0.293398 4.434071 1.535383 -0.902032 3.118135 -0.651375 3.323246 0.349822 -0.281179 0.785343 3.203944 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -6.199065 5.189809 3.757568 -4.572067 12.350828 -2.155905 0.625397 7.391972 -5.449742 8.459032 -5.049786 0.957122 -2.732556 -8.806373 0.664718 -4.365395 -0.596200 5.442066 -0.580940 5.792398 4.613086 -3.946958 1.316290 -1.782417 -3.372896 -6.045066 -1.480253 2.680677 6.246866 -3.247872 1.952587 0.439324 10.678325 -1.018512 8.739787 7.015319 2.675880 8.464123 3.184084 -4.673204 -1.677705 4.939404 -5.076766 -7.940003 2.534770 -3.794201 -6.137260 -4.110982 3.688664 -5.601416 -0.861290 7.316616 -1.613963 -0.728781 -5.431529 5.655578 4.326588 0.084253 9.929282 1.564152 -3.862359 -2.542350 -9.136345 5.926007 -4.072466 2.457369 -2.740662 -7.382883 1.366146 0.954458 0.667069 -6.930821 -3.273499 6.767675 2.860232 -6.729809 1.901000 -3.427546 -7.490896 -6.823989 -6.892167 1.898489 -2.351204 6.757256 -0.342457 2.473957 -1.358917 3.779222 -1.352563 -10.957871 0.727623 9.298215 -4.339219 -0.574808 -4.637942 6.253721 1.345039 0.612260 -4.863297 -2.602432 2.741767 -0.442407 4.202682 -6.852252 2.280756 -7.999588 1.276531 -0.061975 1.698981 5.239816 3.519233 4.030431 5.444911 8.006330 -6.840704 1.344184 -9.844390 2.689499 -3.246066 2.230108 -2.018128 4.570266 1.201223 2.864711 7.880141 -12.118207 4.827724 0.308818 -1.799568 -8.910773 1.814143 -3.084440 -2.803575 -3.359725 5.578601 -0.743656 -1.878561 -3.372627 1.628438 1.096000 -5.300200 -5.483914 1.165441 8.719269 -9.216710 2.041707 -2.514626 -3.548906 -0.520568 3.976446 6.004727 6.551383 9.958433 7.619826 -0.899206 4.844491 -9.867184 0.778626 9.027643 3.750954 -8.013367 8.055193 -5.302244 -2.296796 2.820241 5.908935 6.329392 4.057791 -7.275286 -7.678237 4.662778 1.449257 9.316468 3.642228 1.923868 -5.214499 7.092634 -1.473646 -4.513487 11.630505 3.069021 -8.098486 3.297167 3.814290 -5.473655 -3.690849 4.025421 -6.493942 -0.604670 -2.654823 0.243891 5.138361 -5.259401 -4.835884 0.254437 -7.767680 9.143471 -1.903620 -1.602746 2.402857 -7.624218 -6.372846 9.468138 1.867309 -3.111433 -5.876801 -6.956233 -5.153573 -8.089471 2.974297 2.272883 -2.540563 -5.567557 -7.743483 -1.248364 5.969444 0.923159 3.852313 -10.484712 -2.899908 4.687918 2.330907 5.128216 -7.087062 -1.683469 -0.586075 -0.699987 3.492805 -1.389917 6.616813 11.710922 -5.757122 5.518339 1.389500 -3.106079 2.958389 5.501035 -9.626093 10.221288 -0.046311 9.548530 -0.011328 3.176874 -4.018027 0.888377 1.657930 -0.168352 0.098635 2.621481 -3.020608 -2.887091 0.342614 -6.951671 -4.890871 -0.339354 3.274786 -0.272733 2.545063 -0.600226 -4.478987 -3.138961 -4.074761 0.853958 6.480440 -2.074988 -4.874570 4.729216 0.727930 -0.509076 -0.823621 1.162112 3.356786 5.273497 -9.459902 1.539783 -1.614884 0.909528 -7.085226 -8.669140 1.163031 -5.354509 -4.795533 4.319905 -9.472990 -1.196586 -5.605849 1.565166 -9.110758 -1.502331 1.218091 10.052115 3.509288 -3.323651 4.904034 -2.640904 6.178092 0.458652 0.261600 0.651763 6.528350 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.463962 0.398097 -0.285382 -0.379354 0.955238 -0.384053 0.006409 0.623396 -0.210384 0.544925 -0.526347 0.281337 -0.045951 -0.845709 0.131914 0.274137 0.181771 0.605548 -0.011014 0.237940 0.341952 -0.293038 0.091881 -0.306423 -0.194432 -0.645758 0.106735 0.184497 0.186791 -0.133009 -0.114959 0.238517 0.809106 0.012232 0.547807 0.547722 0.214005 0.708712 0.599672 -0.303599 0.162200 0.282832 -0.172221 -0.818030 0.265309 -0.218267 -0.357040 -0.452013 0.269152 -0.558711 0.469953 0.449096 0.026535 -0.141636 -0.692739 0.205151 0.610510 -0.079233 0.698968 0.238797 -0.319017 -0.201462 -0.253415 0.586407 -0.542474 -0.107366 0.169046 -0.553014 0.067281 0.472316 0.283921 -0.402342 -0.385007 0.083066 0.062711 -0.499629 0.202966 -0.076655 -0.038949 -0.558196 -0.429239 0.178048 -0.306430 0.585875 -0.021053 0.115984 -0.416684 0.043669 0.160876 -0.523701 -0.181531 0.431090 -0.219424 0.178829 -0.146919 0.653902 0.366382 -0.252990 -0.205696 -0.366549 0.177706 -0.084304 0.255182 -0.010623 0.025730 -0.325616 0.240848 0.016363 -0.006291 0.527320 0.245345 0.312006 0.178442 0.262034 -0.177663 -0.015881 -0.972513 0.266931 0.038629 0.038493 -0.125833 0.057918 0.352446 0.001249 0.380498 -0.756632 0.632043 0.224596 0.087871 -0.461808 0.262803 0.056766 -0.218939 -0.216564 0.467451 -0.038245 -0.042824 0.015270 0.150560 0.032417 -0.603972 -0.403212 -0.172045 0.899279 -0.736834 0.184003 -0.183117 -0.294826 -0.023287 0.046353 0.198793 0.297587 0.687839 0.496728 -0.171500 0.394830 -0.731413 0.193173 0.915747 0.529423 -0.501781 0.444223 -0.248853 -0.107316 0.273947 0.338247 0.290681 0.069963 -0.426126 -0.390357 0.259241 -0.123973 0.636999 0.069077 0.242864 -0.616639 0.498434 0.330259 0.003201 1.051874 0.128743 -0.704988 0.395275 0.612428 -0.393664 -0.125868 0.164435 -0.308957 -0.203468 -0.268321 0.252906 0.361078 -0.587445 -0.471762 -0.196522 -0.503472 0.509156 -0.049623 -0.144833 0.101659 -0.521095 0.229667 0.845997 0.178107 -0.067955 -0.216055 -0.485411 -0.400813 -0.788353 0.091790 0.185274 -0.310176 -0.137301 -0.479889 -0.258889 0.649063 -0.199749 -0.011329 -0.876116 0.024586 0.417239 0.266060 -0.055016 -0.694188 -0.162461 0.248795 0.127663 0.131360 -0.133539 0.424638 0.633934 -0.465820 0.211737 0.472054 0.275869 0.440412 0.510180 -0.521041 0.693794 -0.144417 0.655743 0.204552 0.287697 -0.311843 0.010493 -0.105800 0.069439 -0.257459 0.247016 -0.562502 -0.175839 0.431650 -0.211733 -0.502556 0.219522 0.479029 0.368392 0.021715 -0.164431 -0.097008 -0.100665 -0.365832 0.156982 0.404696 -0.110759 -0.506450 0.206491 0.443029 -0.234002 -0.148821 0.155159 0.305126 0.536041 -0.615866 0.439761 -0.010450 0.164123 -0.597528 -0.690471 0.394408 -0.242598 -0.342925 0.341170 -1.031669 -0.382537 -0.277662 0.439447 -0.875117 0.238549 -0.087125 0.647694 0.017691 -0.021074 0.431467 -0.122127 0.212285 -0.043279 0.101606 -0.039561 0.619788 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -2.798655 2.036131 1.390277 -2.020608 5.953445 -1.353877 0.354066 3.545034 -1.674073 3.797549 -2.494263 0.250291 -1.119908 -4.090048 0.428855 -1.562629 0.139447 2.758903 -0.540485 2.158589 2.018030 -1.324470 0.737703 -1.124139 -1.398018 -3.217571 -0.649862 1.145337 2.239526 -1.110996 0.764838 0.401018 5.134028 -0.227078 3.777808 3.058684 1.433659 4.070899 1.563462 -1.540634 -0.093987 2.110153 -2.008913 -3.751476 1.286356 -1.597579 -2.899367 -2.045948 1.543207 -2.985861 0.312142 3.061431 -0.372348 -0.340283 -2.497723 2.380718 2.517811 -0.066766 4.223823 0.845334 -1.762644 -1.048113 -3.814827 2.872223 -2.071393 1.069875 -0.859971 -3.599401 0.021279 1.001750 0.792070 -3.109923 -1.823554 2.534695 1.415986 -2.852897 0.984271 -1.123209 -2.383400 -3.143636 -3.038693 0.914174 -1.277981 2.989880 -0.190844 1.049341 -0.534995 1.220865 -0.090531 -4.529483 -0.131877 4.064818 -2.085189 0.058906 -2.253830 2.404202 0.609071 -0.012113 -1.951955 -1.784586 1.020948 -0.302192 1.723407 -2.096312 0.383839 -3.160008 0.724019 0.168775 0.584768 2.712854 1.167427 1.751191 1.917071 3.174183 -2.924033 0.637629 -4.504391 1.453932 -1.542876 0.891662 -0.947398 1.604309 1.012895 1.451036 3.162406 -5.315771 2.591136 0.359946 -0.723916 -3.496409 0.869509 -0.950908 -1.324076 -1.384098 2.560127 -0.356074 -0.675133 -1.154459 0.845608 0.337122 -2.273783 -2.815510 0.007150 3.787854 -4.393045 0.903165 -1.065737 -1.654597 -0.284108 1.487842 2.448073 2.553462 4.116585 3.236353 -0.737538 2.301244 -4.390954 0.609103 4.484615 1.505914 -3.536170 3.474709 -2.108097 -0.748926 1.495048 2.445493 2.528965 1.519931 -2.955540 -3.039536 1.547977 0.382111 4.140821 1.929887 0.850851 -3.344005 2.916710 -0.489335 -1.480649 5.782205 1.683747 -3.915649 1.290693 2.201747 -2.727138 -1.728957 1.357910 -2.733355 -0.593073 -1.489573 0.601469 2.160542 -2.362853 -2.260001 0.221928 -3.379304 3.803565 -0.726892 -1.060575 0.961465 -3.298881 -2.739076 4.721086 0.830204 -1.060155 -2.393422 -3.177458 -2.009927 -4.028800 1.170767 0.903093 -1.192725 -2.085471 -3.260193 -0.493228 3.147956 -0.017520 1.441925 -5.180132 -1.032548 1.965159 0.794366 1.662120 -3.732528 -0.761808 -0.136912 -0.189129 1.229392 -0.694309 2.559142 5.130219 -2.653443 2.248265 0.811810 -1.551212 1.267140 2.560674 -4.029106 4.318928 -0.383500 4.220578 0.135442 1.563367 -1.712141 0.383238 0.348163 -0.099773 -0.526311 1.368899 -1.921696 -1.285052 0.669621 -2.666729 -2.519091 0.211566 1.763404 0.425105 0.859930 -0.423310 -2.039580 -0.901374 -1.502534 0.514595 2.777198 -0.701002 -2.503889 1.887990 0.933337 -0.818968 -1.068251 0.495764 1.454529 2.587913 -4.112093 1.140474 -0.429029 0.527432 -3.230695 -3.910640 0.897885 -2.664386 -2.243781 1.851414 -4.553930 -1.102891 -2.292353 1.153323 -3.877748 -0.627543 0.490819 4.363054 1.441277 -1.235380 2.335454 -0.986822 2.459790 0.227226 0.200145 0.328709 3.037371 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = -1.891513 1.217056 1.158242 -1.584635 3.489555 -0.045284 0.252396 1.714839 -0.054315 2.030997 -2.202474 -0.350102 -1.126627 -2.255412 0.116511 -1.456495 -0.313315 1.522845 -1.149412 0.604309 1.702831 -0.437045 0.639791 -1.227029 -0.645273 -1.923089 -0.632324 0.361366 0.507325 1.009964 0.521115 -0.035193 2.371913 0.025724 1.533121 1.454504 1.161172 3.145799 -0.550915 1.619728 0.276613 1.670407 -1.079542 -3.216600 1.545412 -1.798635 -1.712937 -1.708795 1.175701 -3.277607 0.963622 1.778719 0.110976 -0.798023 -1.017769 1.088537 1.910136 0.477943 2.453366 0.984595 -1.637219 -0.371796 -2.466625 0.709188 -1.449509 2.076852 0.463567 -2.741300 -1.156741 0.863829 0.761415 -1.023154 -1.614700 0.630341 0.757184 -1.269940 0.887398 -0.820183 -1.426147 -0.725843 -1.438197 0.177684 -0.468347 1.839949 -0.552283 0.145909 -0.141889 0.190734 0.369555 -2.153651 -0.939498 2.635401 -0.675546 0.878331 -1.976288 0.431170 0.077779 -0.117617 -1.423041 -0.361991 0.682261 1.042060 0.928579 -0.692282 -1.968682 -2.108897 1.713577 1.214539 -0.154675 0.517052 -0.065842 0.496728 0.087049 1.419235 -1.785307 2.267771 -2.673680 0.728311 -0.443534 1.010090 -0.544335 0.584746 0.552552 0.176115 1.369512 -2.282988 2.414851 0.329036 -1.312888 -1.742520 1.159060 -0.517807 -1.221887 -0.489036 1.547239 0.105419 -0.757955 -0.470410 0.425133 -0.547109 -1.211835 -1.592398 -0.466306 1.185174 -1.622034 0.257600 -0.907991 -1.262126 -0.267233 0.882383 0.868705 0.865277 2.619826 1.915800 -0.197026 0.324545 -2.108704 0.775047 3.244542 1.420188 -2.209463 1.059282 -0.638491 0.571729 1.184557 0.336348 0.969301 2.453340 -1.064713 -0.981176 -0.689908 -0.527038 2.566372 2.805480 1.200078 -3.042254 1.155196 -1.325741 -0.020616 3.095214 2.441672 -2.555802 0.252875 1.378100 -2.216974 -1.286887 0.317362 -0.471541 -0.421943 -0.794417 0.546630 1.171917 -1.794047 -2.542621 -0.074764 -2.293523 2.428074 -0.316581 0.707466 0.419726 -2.508522 -1.598603 2.427624 0.372551 -1.245520 -0.936405 -1.100063 -1.539427 -2.641290 0.976256 1.175234 -1.041347 -1.981889 -1.792962 0.092801 1.862904 -0.710694 0.217284 -1.294487 -0.921126 1.123214 -0.414082 1.693892 -2.626639 -0.825122 -0.946833 -0.171544 1.720085 0.031485 0.582743 3.053055 -1.627512 1.651943 1.186136 -0.753502 0.026825 2.406475 -1.278346 2.431229 -0.558047 1.852846 -0.459868 1.427863 -0.740493 0.300355 0.136325 -0.316817 0.047953 1.807435 -1.478192 -0.527172 0.666194 -2.453029 -0.452147 1.200405 1.119827 0.886513 0.287958 0.582460 -1.600179 -0.443451 -0.710910 -0.370722 2.076410 -0.497365 -2.432778 -0.016015 0.284686 -1.456784 -1.791422 0.801429 0.724126 2.083800 -2.120552 1.146112 0.031388 -1.188151 -2.768361 -1.434598 0.128797 -1.789962 -1.982871 1.483672 -2.182925 -0.369335 -1.364680 1.394312 -1.865843 -1.188085 -0.323062 2.101778 1.199807 0.188846 1.914767 0.057329 2.130388 0.222503 -0.437094 0.675181 2.252004 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -5.437967 3.386840 3.769013 -5.603883 13.250299 -3.097378 1.043722 5.316922 -1.605017 6.970317 -5.543184 2.159909 -1.812101 -8.239209 1.432677 -4.526935 0.415677 5.631538 -1.591278 3.685589 3.995784 -1.363619 1.948895 -2.511979 -2.630097 -10.072762 -1.359198 3.115989 3.138561 -1.075990 2.969118 1.396152 9.222570 -2.264361 6.131626 6.397571 5.188791 7.338521 1.065276 -1.697786 2.647098 3.096564 -3.083381 -8.090958 2.408027 -1.853446 -8.039001 -4.554597 4.234004 -7.953206 -2.448937 6.665060 -0.602047 -2.268164 -5.243508 6.545892 5.623828 -1.827456 7.589528 2.160733 -4.593114 -1.622181 -6.970996 6.430042 -5.482786 2.203337 -2.917081 -8.161551 -1.884154 4.880573 -0.355734 -3.012788 -3.811971 2.769230 3.927327 -5.873784 1.870224 -2.328373 -2.103746 -5.470724 -4.082624 2.515938 -1.316471 5.879662 0.406344 2.319072 1.322714 1.627497 0.445559 -7.444860 -1.128924 7.823988 -3.649262 -0.762686 -4.771397 3.827377 3.648487 -2.677101 -2.278712 -5.080463 1.826034 -1.807133 3.894327 -2.084473 -0.246035 -5.495570 -0.169692 1.605298 2.044980 5.620985 -2.502526 2.991905 1.734294 4.088318 -5.363302 3.061606 -9.639499 3.749941 -3.711048 1.656142 -2.746823 2.230696 3.990053 4.553231 5.434336 -8.700483 6.945241 0.671146 -1.402369 -4.983541 2.616346 0.286695 -2.214581 -2.144223 5.141783 -1.222363 -1.216776 -0.367572 3.220482 0.665915 -2.309382 -3.324261 -1.213841 5.249083 -7.316237 2.883394 -1.956042 -3.144218 0.109584 2.101168 4.262254 4.711535 9.367157 6.960433 -1.367321 6.132418 -8.963545 1.871105 9.091301 2.751456 -5.424434 6.535217 -4.350843 -1.485090 2.577218 4.626339 3.415632 4.466515 -5.331790 -4.813759 1.360717 -0.310537 7.979103 3.828494 0.539246 -9.595151 3.504695 -2.288095 -0.041471 10.587944 4.864361 -9.365966 4.443112 6.856381 -7.162403 -5.470501 2.217484 -5.158872 -2.886855 -3.102454 2.809392 5.011813 -5.313557 -5.449484 -0.094147 -5.971049 5.573535 -1.621863 -2.916198 2.728734 -5.229001 -6.912661 8.665614 1.234302 -1.397815 -4.242811 -6.324923 -2.063725 -9.070381 1.999448 2.300852 -3.234615 -2.955768 -5.990207 -1.873251 6.197759 -1.049961 2.999789 -10.946324 -0.588522 4.728209 3.159167 2.257602 -6.372466 -1.304795 -0.245727 -1.106599 0.406501 -2.253682 2.786921 8.108646 -6.028695 4.651321 -0.918511 -6.824886 2.904134 5.771399 -7.220492 9.640344 1.067110 8.136467 1.553036 3.055196 -4.096063 1.291841 -0.010051 -3.629207 -1.944971 3.300865 -6.040285 -3.014089 3.579237 -4.204452 -5.925753 1.628644 5.798614 1.112240 1.367142 0.380139 -3.678056 -1.729941 -2.853498 1.764929 5.093929 -2.476900 -5.779928 3.540830 5.236960 -3.971810 -6.163563 1.452890 3.931164 5.881020 -8.479066 5.093765 -0.348545 1.263380 -8.496798 -7.860576 4.143986 -6.441085 -4.561188 1.892876 -9.473196 -3.802026 -4.640556 4.133255 -6.202351 -2.728582 2.004974 8.277120 1.957208 -1.124958 5.617328 -2.077230 3.218252 -1.043271 0.482925 1.151216 5.720713 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.258823 1.436003 0.056764 -2.350872 7.107186 -2.600574 0.375052 2.788385 -1.098072 2.887205 -2.787661 0.833121 -0.813045 -5.048101 0.773094 -0.712859 0.280418 3.517806 -0.382159 1.882200 1.680591 -1.120391 0.784886 -0.947763 -1.014238 -4.752068 -0.651982 1.478825 1.774782 -2.214503 0.076857 0.663698 5.143883 -0.939730 2.725244 2.826721 1.856681 3.681108 1.869669 -2.221788 0.912343 1.424585 -1.409941 -4.030107 0.919814 -0.582526 -3.890361 -2.015326 1.852918 -2.779830 0.334903 2.986999 -0.405437 -0.896336 -2.712249 3.070863 3.617715 0.305163 3.324645 0.883468 -1.276829 -0.355246 -2.957253 3.020630 -2.376923 0.452230 -1.465711 -3.273843 -0.444092 1.903172 1.214319 -2.435267 -2.274616 1.335168 1.894990 -2.564762 0.843214 -0.998326 -1.150321 -3.910424 -3.208789 1.114160 -2.014532 2.799993 0.175139 1.057644 -0.407771 0.819425 0.136873 -3.244396 -0.290689 3.512526 -1.459080 -0.680209 -1.093808 2.801519 1.766236 -1.126066 -1.161549 -3.257404 0.725807 -1.180604 1.782559 0.069307 1.060219 -2.360758 0.289348 0.339413 1.050262 3.115339 0.893586 1.175666 0.896686 1.758352 -2.632813 0.143013 -6.227646 1.434775 -1.740400 0.728841 -1.139282 1.268918 1.752689 1.884821 2.378436 -5.076951 3.226373 0.374537 -0.165821 -2.040738 1.043588 0.075736 -0.948241 -0.989760 2.234538 -0.618296 -0.497753 -0.115831 1.334109 0.616506 -2.089320 -1.028040 -0.398148 4.291638 -4.749885 1.303144 -0.816544 -1.552194 0.167779 0.747882 1.863196 2.246603 4.599133 3.133216 -0.916735 2.555550 -5.049068 0.913707 4.516872 1.044027 -2.261297 2.879680 -1.215885 -0.755444 1.011714 3.449198 1.836171 0.361080 -2.281790 -2.081630 1.291667 0.062769 3.360197 0.484430 0.170068 -4.275442 1.826555 0.933150 -0.124471 6.389291 1.555209 -3.796073 1.482739 2.942502 -2.384617 -2.147349 1.015183 -2.174816 -0.855341 -1.638086 1.374257 2.243320 -2.271129 -2.623442 -0.311623 -2.501451 2.223612 -0.802566 -2.691015 1.365399 -2.080928 -1.706895 5.020013 0.509955 -0.464896 -2.070244 -4.092077 -1.181396 -3.773280 0.944028 0.550154 -1.389232 -1.032527 -2.566432 -0.949307 4.037701 -0.245361 1.336988 -5.915038 -0.514921 1.957474 2.380304 0.871208 -3.827766 -0.524939 0.499534 -0.506579 -0.152662 -0.277388 1.787769 4.497756 -2.760134 1.632853 1.003662 -1.585585 1.701352 3.467931 -3.284671 4.236316 -0.082415 5.379645 0.563962 1.227445 -1.670028 0.550971 0.217001 -0.609505 -0.824135 1.110964 -2.401730 -1.337951 1.827521 -1.399502 -4.081311 0.460279 2.495665 0.537477 0.741523 -1.234811 -1.506730 -0.571627 -0.772458 0.993152 2.178180 -0.720119 -2.779144 1.652436 2.366501 -1.054945 -1.382258 0.536003 1.550014 2.523653 -3.746226 2.069717 -0.334359 2.197920 -3.524931 -4.627256 1.892218 -2.515465 -1.503708 1.225337 -5.269965 -2.585371 -2.095813 1.621179 -4.064738 0.432082 0.785916 3.515444 0.932553 -0.761021 2.226447 -0.981331 1.206174 -0.624242 0.049219 0.520608 3.007012 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.508617 0.226369 -0.197407 -0.380913 1.368046 -0.454620 0.004077 0.959800 -0.216129 0.680693 -0.521480 0.403848 -0.069718 -0.798639 0.177483 0.212642 0.237363 0.618098 -0.190121 0.032583 0.334591 0.012376 0.132850 -0.235085 -0.248734 -0.869829 0.077011 0.262409 0.217419 -0.091149 -0.264568 0.313955 0.970129 -0.209594 0.594288 0.571759 0.604597 0.615056 0.470777 -0.295411 0.365525 0.215566 -0.197829 -0.764341 0.169760 -0.210667 -0.659634 -0.289845 0.399842 -0.696570 0.306400 0.512890 0.030479 -0.116617 -0.517458 0.555492 0.408460 -0.308774 0.748735 0.260328 -0.645866 -0.418855 -0.374994 1.116630 -0.591836 0.084140 -0.162824 -0.811488 -0.226248 0.656985 0.114485 -0.394716 -0.352876 0.113488 0.165930 -0.555756 0.228367 -0.015414 0.424295 -0.512925 -0.483060 0.280957 -0.330494 0.549422 0.045023 0.159873 -0.291850 0.026571 0.122444 -0.637540 -0.141192 0.653470 -0.457126 0.195507 -0.545200 0.283975 0.354681 -0.295948 -0.085103 -0.639511 0.172835 -0.142657 0.286054 -0.305117 0.242291 -0.338653 0.126964 0.095855 0.230166 0.642670 -0.133706 0.255830 0.134811 0.317298 -0.028954 0.003589 -1.080712 0.443696 -0.145453 0.015653 -0.297166 0.065128 0.606522 0.252791 0.504264 -0.871664 0.689420 0.128848 -0.030913 -0.436579 0.244902 0.107839 -0.246016 -0.190736 0.572077 -0.125648 -0.078190 0.011392 0.408038 0.064123 -0.675985 -0.386191 -0.264304 0.570842 -0.899220 0.223826 -0.181367 -0.244053 -0.030481 0.201923 0.335384 0.432511 0.799208 0.562174 -0.165808 0.526651 -0.976835 0.274489 0.921113 0.404702 -0.543330 0.592409 -0.568859 -0.111931 0.275128 0.455173 0.195734 0.317387 -0.334937 -0.263343 0.217244 0.030624 0.789044 0.183580 0.195878 -0.751157 0.162540 -0.159623 0.091584 1.079549 0.393624 -1.009377 0.504356 0.744469 -0.308237 -0.252913 0.222492 -0.618243 -0.364349 -0.406998 0.309334 0.590679 -0.690112 -0.368866 0.086255 -0.508965 0.544982 -0.076374 -0.346443 0.202120 -0.599686 0.114454 0.951528 0.213242 0.050830 -0.267473 -0.645290 -0.503075 -0.920563 0.047384 0.266013 -0.288617 -0.124685 -0.565661 -0.383609 0.762304 -0.123209 0.217049 -1.217726 0.193133 0.520374 0.282767 0.020097 -0.680454 -0.140679 0.081035 -0.095286 0.069140 -0.458802 0.274427 0.551031 -0.539352 0.531862 0.273178 -0.230761 0.269144 0.434016 -0.596879 0.828221 0.081194 0.560417 0.326991 0.330148 -0.455029 0.090566 -0.252315 -0.079247 -0.392656 0.329690 -0.720248 -0.251057 0.423591 -0.305787 -0.665124 0.162064 0.613829 0.319154 0.014410 -0.252326 -0.179063 -0.191148 -0.565963 0.285370 0.407228 -0.348606 -0.534875 0.371234 0.521033 -0.582838 -0.346786 0.189714 0.383396 0.635702 -0.734375 0.437471 0.127836 0.326799 -0.910766 -0.792686 0.263959 -0.324655 -0.420803 0.136735 -1.132877 -0.625082 -0.298453 0.496493 -0.944202 -0.052121 0.111644 0.839080 -0.041139 -0.023279 0.563606 -0.094818 0.115958 -0.057381 0.157502 0.028102 0.491052 +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.718734 0.206231 0.094338 -0.546986 1.834651 -0.504920 0.143716 1.204034 -0.205966 0.801875 -0.768922 0.365738 -0.287816 -0.979491 0.245409 -0.136188 0.193810 0.766682 -0.482229 -0.024213 0.575437 0.171960 0.141862 -0.402422 -0.300347 -1.049673 -0.024558 0.279856 0.208407 0.170644 -0.194393 0.376817 1.225548 -0.294271 0.678847 0.683781 0.937640 1.013224 0.109474 0.029427 0.523732 0.444979 -0.280388 -1.123811 0.343274 -0.449013 -0.915756 -0.365687 0.571675 -1.132608 0.277261 0.662079 0.149446 -0.186045 -0.473486 0.796979 0.586725 -0.295002 0.910484 0.476194 -0.931986 -0.461256 -0.750242 1.262780 -0.745988 0.543084 -0.183785 -1.173802 -0.581052 0.793552 0.146817 -0.497687 -0.571086 0.019401 0.277330 -0.587719 0.399696 -0.025454 0.446119 -0.454997 -0.623646 0.250799 -0.367736 0.717776 -0.137984 0.078387 -0.184215 -0.080329 0.215701 -0.741061 -0.403080 1.030467 -0.599670 0.323032 -1.083552 0.021009 0.282588 -0.282819 -0.271140 -0.786424 0.253943 0.069890 0.352046 -0.486710 -0.119115 -0.461017 0.275376 0.301450 0.202443 0.727821 -0.447085 0.262558 -0.068385 0.347931 -0.121042 0.429829 -1.380273 0.566663 -0.298899 0.219059 -0.383845 0.066412 0.765978 0.308717 0.550534 -1.013353 1.013539 0.087855 -0.267566 -0.499000 0.448711 0.121824 -0.482551 -0.255287 0.796432 -0.023082 -0.238427 0.014020 0.586467 0.014983 -0.672018 -0.594358 -0.404105 0.360566 -1.079070 0.152917 -0.322188 -0.371731 -0.104295 0.309946 0.372680 0.441586 1.029087 0.752806 -0.167405 0.591966 -1.235105 0.407619 1.256268 0.462077 -0.764499 0.587930 -0.686182 0.091180 0.443245 0.402665 0.169129 0.830505 -0.311813 -0.198957 -0.002268 -0.070402 1.096973 0.678614 0.298209 -1.289058 0.038915 -0.677546 0.183953 1.343294 0.917625 -1.401090 0.501820 0.868848 -0.477312 -0.538907 0.164365 -0.665669 -0.480520 -0.510766 0.441047 0.749595 -0.890887 -0.641612 0.208020 -0.713782 0.702726 -0.160532 -0.323458 0.195211 -0.903897 -0.254542 1.170967 0.203547 -0.087595 -0.362388 -0.720528 -0.666775 -1.256065 0.190397 0.409265 -0.336870 -0.471428 -0.713364 -0.326125 1.037775 -0.326870 0.198131 -1.317220 0.094660 0.604392 0.194684 0.353183 -0.993180 -0.251979 -0.197364 -0.160078 0.314980 -0.551028 0.091983 0.900437 -0.737550 0.818823 0.312444 -0.645467 0.057456 0.786467 -0.616238 1.038037 0.093565 0.709042 0.178417 0.478426 -0.583332 0.060919 -0.277342 -0.126098 -0.436613 0.576493 -0.866905 -0.230714 0.390084 -0.679693 -0.588058 0.431352 0.780811 0.402074 0.022834 -0.071864 -0.384482 -0.219860 -0.669581 0.152820 0.678476 -0.501406 -0.879463 0.308318 0.480300 -1.006513 -0.644272 0.272655 0.470219 0.921900 -0.882290 0.548839 0.208935 0.079799 -1.329650 -0.969573 0.156884 -0.608753 -0.710528 0.246326 -1.175215 -0.716435 -0.398775 0.807423 -1.124550 -0.466266 0.111259 0.942968 0.111189 0.145212 0.845799 0.024673 0.445852 -0.029749 0.079411 0.175001 0.663099 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.672338 0.138155 -0.383062 -0.289067 1.254901 -0.269375 -0.320876 0.944418 -0.406555 0.835686 -0.377637 0.003607 -0.304222 -0.906539 0.078037 0.323874 0.171364 0.591135 -0.176427 0.238931 0.528903 -0.237489 0.156809 -0.089927 -0.266388 -0.187101 -0.146934 0.287980 0.697693 -0.716575 -0.475613 0.120021 1.164803 -0.231380 0.998103 0.676469 0.532689 0.760167 0.421849 -0.679856 -0.185702 0.613936 -0.557675 -0.822030 0.294455 -0.457748 -0.417443 -0.105721 0.586046 -0.137291 0.377935 0.707211 -0.212210 0.073749 -0.517132 0.495847 0.190418 0.031207 1.181496 0.134453 -0.579671 -0.303504 -0.696237 1.066430 -0.599105 0.352730 -0.383395 -0.800363 -0.068671 0.026353 0.150186 -0.957130 -0.469759 0.734022 0.089472 -0.697440 0.335817 -0.212901 0.446602 -0.868592 -1.031565 0.169121 -0.515038 0.621396 -0.112186 0.232224 -0.320147 0.384444 -0.129578 -1.193692 0.223980 0.592482 -0.723520 0.394821 -0.220657 0.351566 -0.151969 0.134028 -0.497414 -0.285171 0.205540 -0.102078 0.466107 -0.443758 1.020069 -0.420865 0.213953 -0.294519 0.396977 0.424834 0.799408 0.251914 0.639995 0.878730 -0.095092 -0.454578 -0.986375 0.245841 -0.321815 0.215911 -0.197514 0.588778 0.489693 -0.078388 0.953166 -1.235730 0.362209 -0.055062 -0.069397 -0.874670 0.225598 -0.402775 -0.381422 -0.350893 0.731531 -0.203403 -0.273912 -0.463234 0.354791 0.203799 -1.147659 -0.172717 -0.029144 0.509749 -0.880530 0.171487 -0.318135 -0.517737 0.045465 0.416429 0.579069 0.839414 1.066410 0.849658 -0.287633 0.369434 -1.077120 0.189641 0.851591 0.094790 -0.915997 0.781165 -0.795508 -0.152704 0.467883 0.704320 0.728785 0.353153 -0.195604 -0.294731 0.595572 0.418576 0.992368 -0.193406 0.435274 -0.201176 0.230403 0.182106 -0.369047 1.435592 -0.123395 -1.134131 0.689626 0.333424 0.147506 -0.033235 0.392730 -0.724176 -0.106770 -0.570994 0.186011 0.731600 -0.815227 -0.302798 0.273781 -0.802434 1.009035 -0.211460 -0.362867 0.581693 -1.156926 0.079511 1.048642 0.330151 -0.192550 -0.650785 -0.789917 -0.418227 -0.855766 0.304411 0.114506 -0.189858 -0.362055 -0.849858 -0.253989 0.838786 0.348698 0.487434 -1.349412 0.008965 0.508128 0.120649 0.443967 -0.491430 -0.213608 0.072245 -0.153633 0.425632 -0.462768 0.411092 0.990064 -0.770943 0.501752 0.469567 -0.031081 0.249417 0.393078 -1.008084 1.046033 0.135666 0.595383 0.000915 0.372023 -0.565040 0.155546 0.031263 0.440515 -0.059294 0.161293 -0.294576 -0.339798 0.068972 -0.648900 -0.566470 -0.199492 0.284269 0.168856 0.319793 -0.484439 -0.322422 -0.341673 -0.358455 0.214276 0.710445 -0.260977 -0.504776 0.565029 -0.064925 -0.135813 0.255847 0.169685 0.220147 0.709567 -1.019528 -0.052631 -0.027285 0.313230 -0.649565 -0.719973 -0.253719 -0.130801 -0.041494 0.622813 -1.016268 -0.241143 -0.513581 0.127186 -0.735123 0.215814 -0.055970 1.128311 0.446920 -0.395841 0.638522 -0.157692 0.535816 0.087562 -0.087633 -0.004914 0.605664 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = -1.470577 -0.116871 -1.480264 -0.814477 3.017704 -0.382895 -0.497399 1.306201 -0.843322 1.782472 -0.911214 -0.543974 -0.920350 -2.395605 0.311837 0.896044 0.406854 1.064928 -0.599565 0.621144 1.263815 -0.957934 0.625419 -0.326884 -0.428562 -0.410962 -0.382380 0.707305 1.609707 -1.302089 -1.002862 0.126875 2.242788 -0.456796 1.407074 1.141796 0.944217 1.937754 0.398785 -1.712001 -0.241004 1.472087 -1.136105 -1.920502 0.950639 -1.113736 -1.353655 -0.544465 1.408996 -0.583393 0.487048 1.755550 -0.361689 -0.263021 -1.448362 1.012268 1.248719 0.033267 2.532218 0.451908 -0.727348 -0.729419 -1.605693 1.709690 -1.295106 0.746267 -0.451643 -1.867826 -0.551163 0.296222 0.250191 -1.818369 -1.524071 1.194427 0.648658 -1.413472 0.823374 -0.441594 0.811149 -2.266558 -2.306637 0.180820 -1.375775 1.744597 -0.365348 0.433292 0.043827 0.526689 -0.042671 -2.379608 0.197507 1.095274 -1.141315 0.716500 -0.576588 0.972629 -0.431489 0.001069 -1.768329 -0.539029 0.263997 -0.088495 1.092053 -0.682685 1.662789 -0.996716 0.499748 -0.415200 1.047510 0.783030 2.187729 -0.033192 0.626558 1.605308 -0.751156 -0.817022 -1.853289 0.279991 -0.373790 0.777409 -0.679162 1.235386 1.390627 -0.476265 1.863980 -2.703766 1.127304 -0.036662 -0.325313 -1.679189 0.606220 -0.557207 -0.900167 -0.488350 1.650668 -0.723253 -0.608425 -0.614110 0.998264 0.502523 -2.512625 0.644086 -0.268844 1.382543 -1.956680 0.447786 -0.764216 -1.429154 0.271054 0.680308 1.101261 1.661488 2.357610 1.872526 -0.866907 1.123700 -2.249665 1.017198 2.545267 0.467401 -1.969655 1.364459 -1.474742 0.227259 0.966231 1.240368 1.712782 0.587321 -0.097161 -0.060090 1.152402 0.796503 2.223642 -0.304858 1.196421 -1.169098 0.342284 0.538421 -0.058491 2.970841 0.227302 -2.342206 1.711792 1.008538 -0.406796 0.061914 0.560659 -1.055143 -0.254500 -1.438526 0.856319 1.654986 -1.765630 -1.038672 0.019710 -1.679924 1.999884 -0.524003 -0.720411 1.462475 -2.344269 0.251250 1.991997 0.486346 -0.467936 -1.458551 -1.761529 -1.136500 -2.015205 0.883228 0.029287 -0.615036 -0.845229 -1.826964 -0.783166 2.239596 0.660483 0.694099 -3.093567 0.595462 1.010218 0.568544 1.227142 -0.734100 -0.485800 0.517429 -0.363381 0.759076 -0.862789 0.374284 1.831638 -2.042178 0.748077 0.536718 0.387027 0.745782 1.022407 -1.724597 2.287798 0.438474 2.021197 -0.411999 1.033561 -0.843006 0.643520 0.140477 0.641534 -0.096633 0.539967 -0.920903 -0.839652 0.872604 -1.148111 -1.719151 -0.109167 0.776685 0.772100 0.686668 -1.094656 -0.580721 -0.477617 -0.125539 0.562751 1.618388 -0.441122 -1.035752 0.740058 0.195257 -0.117017 0.307999 0.574524 0.481152 1.837413 -2.206900 0.246988 -0.248641 0.683163 -1.167638 -1.578429 -0.278719 -0.174122 -0.157187 2.301120 -2.326527 -0.337936 -1.218304 0.669089 -1.250178 0.631449 -0.522505 2.141627 0.854126 -0.571160 1.593786 -0.048404 1.030175 -0.317079 -0.372445 0.381781 1.230337 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.832000 2.566929 1.550294 -4.146992 8.996896 -2.122969 0.869518 2.861294 -0.738890 4.533602 -4.465784 0.364440 -1.576707 -6.062815 0.810587 -2.885485 -0.114220 4.175047 -1.457375 2.681256 2.971151 -1.525472 1.552532 -2.201449 -1.715821 -6.026106 -1.065761 1.942855 1.962179 -0.597984 1.418354 0.467934 6.287111 -1.256171 3.680252 3.985016 2.534634 6.016666 0.566631 -0.940299 1.791196 2.601215 -2.066994 -6.282674 1.902255 -1.835433 -5.202924 -3.646393 2.952537 -5.783710 0.006915 4.377593 -0.141057 -2.134934 -4.021486 3.933784 4.782214 0.182448 5.327910 1.567164 -2.462214 -0.363896 -4.967289 3.461507 -3.876605 2.105058 -1.070914 -5.411063 -1.491728 3.217921 0.742937 -2.452806 -3.626272 1.325539 2.680020 -3.733854 1.354309 -1.838976 -2.198045 -3.528449 -2.999037 1.331847 -1.557563 4.164662 -0.240184 1.362348 0.208445 1.014936 0.648346 -4.623651 -1.457566 5.359620 -1.672814 -0.250366 -2.530386 3.119797 2.253721 -1.995554 -2.408875 -2.788464 1.144791 -0.451306 2.602132 -0.935651 -1.020816 -4.130509 1.025808 1.940484 0.733999 3.310272 -0.348918 1.876386 0.716717 2.466878 -3.742607 2.319955 -7.306113 1.721864 -2.152829 1.410890 -1.674997 1.638469 2.121387 2.157118 3.343215 -6.087916 5.475031 0.556616 -1.260983 -3.260582 2.145853 0.480971 -1.721137 -1.193974 3.284847 -0.533035 -1.002917 -0.058871 1.786368 0.202587 -1.899365 -1.726690 -0.550285 4.086849 -4.485072 1.766800 -1.420957 -2.432119 0.200045 1.281782 2.486479 2.497291 6.509828 4.643257 -0.896514 2.971444 -5.978152 1.686957 6.804105 1.681686 -3.924187 3.731074 -2.023460 -0.431189 1.784421 3.009016 2.362368 3.259449 -3.428276 -3.223529 0.083747 -0.832175 5.314504 2.871244 0.830179 -6.675185 2.993669 -1.081286 0.583694 7.629273 3.606109 -5.840011 2.054570 4.569842 -5.065246 -3.655908 1.265163 -2.291877 -1.305466 -2.056059 1.969625 3.051480 -3.501000 -4.731678 -0.984843 -4.199160 4.016705 -1.181797 -2.205186 1.416839 -3.858900 -3.665493 6.108662 0.762662 -1.480813 -2.610765 -4.248756 -1.789370 -6.343795 1.645514 1.693501 -2.385752 -2.572626 -3.849050 -0.824418 4.582843 -1.277745 1.274767 -6.033380 -0.887917 3.006840 2.363241 2.061292 -4.506184 -0.949336 -0.040327 -0.410524 0.920107 -0.661285 1.871499 6.075276 -4.118219 2.724037 0.838661 -3.126665 1.967316 5.030326 -4.231677 6.380180 -0.011614 5.747113 0.242770 2.189097 -1.968771 0.921147 0.312709 -2.008467 -0.833095 2.425090 -4.033410 -1.953382 2.421047 -2.916166 -3.673799 1.826330 3.950029 1.226060 0.944605 0.373122 -2.511241 -1.014518 -1.382637 0.564296 3.646925 -1.110514 -4.473457 1.607973 3.290683 -2.481937 -3.581383 1.050307 2.443909 4.199987 -5.454516 3.674265 -0.449434 0.371500 -5.666494 -4.982523 2.486632 -4.014752 -2.978977 2.266947 -6.185277 -2.600640 -3.095354 3.298810 -4.277882 -1.468647 0.735887 5.003004 1.908105 -0.379706 3.793548 -1.177131 2.819122 -0.543860 -0.415526 1.108763 4.354750 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.811280 0.915022 -0.025304 -1.793610 4.491469 -1.421229 0.263339 1.585931 -0.322048 2.097920 -2.098278 0.153605 -0.752253 -3.093101 0.478752 -0.614052 0.289526 2.266628 -0.627400 1.102736 1.399135 -0.736877 0.721617 -0.984235 -0.734625 -2.786866 -0.411126 0.958185 0.903494 -0.681750 0.092424 0.476002 3.300295 -0.508516 1.846504 1.917816 1.200183 2.950406 0.763426 -0.842428 0.888630 1.227933 -0.913878 -3.128925 0.955653 -0.810116 -2.414970 -1.698634 1.446306 -2.479549 0.710242 2.059598 -0.064541 -0.882717 -2.139656 1.700989 2.431626 0.243141 2.598292 0.783093 -1.132670 -0.150688 -2.051333 1.888156 -1.976799 0.727267 -0.463909 -2.580140 -0.682076 1.628025 0.837860 -1.594182 -1.978361 0.535907 1.129747 -1.772317 0.720132 -0.627361 -0.348189 -2.016512 -1.843511 0.640691 -1.136974 2.060958 -0.121571 0.622704 -0.392654 0.377746 0.405541 -2.159096 -0.602572 2.317766 -0.882418 0.132598 -0.882419 1.650467 1.048503 -1.021603 -1.167793 -1.648862 0.496423 -0.450110 1.244496 -0.070444 -0.051203 -1.706568 0.629820 0.705839 0.458251 1.722778 0.472546 0.813561 0.412878 1.080512 -1.442094 0.563577 -3.866004 0.885477 -0.869227 0.513005 -0.776172 0.807659 1.211787 0.733645 1.606248 -3.160668 2.617967 0.348989 -0.393878 -1.450231 1.015929 0.300341 -0.839171 -0.623535 1.753550 -0.357486 -0.443587 0.034111 0.905443 0.186322 -1.349184 -0.614845 -0.451582 2.266857 -2.371298 0.851636 -0.713829 -1.335902 0.156390 0.483350 1.084114 1.319155 3.109251 2.231322 -0.699858 1.337506 -3.150957 0.917142 3.390023 0.816867 -1.891990 1.777813 -0.915849 -0.176227 0.932843 1.736011 1.196182 0.985685 -1.382646 -1.313698 0.175577 -0.225721 2.513911 0.900380 0.557903 -3.061762 1.281132 0.067035 0.364027 4.096995 1.267324 -2.843566 1.063008 2.304333 -1.944228 -1.472100 0.575033 -1.158999 -0.651148 -1.229990 1.130543 1.582497 -1.903023 -2.132374 -0.416219 -1.947083 1.809197 -0.532454 -1.434980 0.796226 -1.994312 -0.955899 3.301828 0.417458 -0.455460 -1.208983 -2.374601 -0.857753 -3.078463 0.720936 0.647781 -1.067056 -0.935831 -1.831788 -0.585863 2.629385 -0.478183 0.574012 -3.114956 -0.147265 1.485431 1.257377 0.726310 -2.337205 -0.481881 0.394964 -0.172007 0.305934 -0.357885 0.871499 2.802096 -2.092521 1.028885 0.964036 -0.878963 1.128135 2.372847 -2.026273 3.004375 -0.116285 2.917341 0.234358 1.063882 -0.986804 0.425832 0.029205 -0.496424 -0.644555 1.071573 -2.016256 -0.942678 1.391206 -1.112907 -2.121645 0.749325 1.960422 0.770449 0.422011 -0.312659 -0.978656 -0.396377 -0.618405 0.531549 1.695917 -0.473277 -2.116974 0.838072 1.677067 -1.145739 -1.320098 0.550212 1.098224 2.125347 -2.617705 1.688474 -0.154156 0.608600 -2.552771 -2.613430 1.201105 -1.619456 -1.224113 1.265466 -3.353868 -1.570878 -1.392629 1.648117 -2.315304 -0.056368 0.170299 2.410982 0.830690 -0.197053 1.821833 -0.477651 1.053160 -0.353658 -0.212902 0.441939 2.184144 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = -1.832551 1.122529 0.332958 -1.693864 4.593803 -1.358436 0.363224 2.232397 -0.747491 2.162522 -1.991037 0.870822 -0.659723 -2.973504 0.490474 -0.594964 0.287440 2.230997 -0.654470 0.969014 1.427076 -0.409220 0.555309 -0.922797 -0.853576 -3.021685 -0.246684 0.916025 0.818515 -0.456193 0.266599 0.621468 3.272640 -0.572082 1.957128 1.979023 1.609706 2.844080 0.775613 -0.574920 0.889149 1.150210 -0.897459 -3.039218 0.992281 -0.840087 -2.444725 -1.497338 1.378128 -2.744435 0.481390 1.991697 0.028945 -0.666851 -1.802598 1.904689 2.263140 -0.381918 2.515610 0.879542 -1.616498 -0.545914 -2.035904 2.238731 -1.865401 0.747097 -0.443088 -2.668527 -0.690176 1.650650 0.777195 -1.567996 -1.688647 0.573544 0.956943 -1.786841 0.769608 -0.538022 -0.296037 -2.024449 -1.729616 0.645542 -0.971432 1.981952 -0.164740 0.551634 -0.392236 0.275586 0.309633 -2.217221 -0.637503 2.540716 -1.153166 0.294888 -1.716727 1.327304 0.953081 -0.839093 -1.011440 -1.803357 0.609626 -0.284030 1.173151 -0.417390 -0.179161 -1.483835 0.457390 0.478230 0.451768 1.918276 -0.209067 0.934987 0.386945 1.164342 -1.281320 0.878141 -3.825688 1.195187 -0.833918 0.594899 -0.816177 0.580926 1.398690 0.922831 1.627896 -3.005821 2.538460 0.245801 -0.424992 -1.617115 1.020399 0.221110 -0.888434 -0.758406 1.841891 -0.273856 -0.489544 -0.080789 1.029809 0.189038 -1.474240 -1.421198 -0.553261 2.157664 -2.812665 0.750122 -0.758158 -1.162599 -0.016646 0.583851 1.162511 1.356142 3.029712 2.188914 -0.469694 1.757861 -3.175542 0.744802 3.279694 1.390322 -1.905053 1.843909 -1.174347 -0.217147 1.036790 1.537393 1.033503 1.168489 -1.549356 -1.406976 0.514303 -0.162064 2.661447 1.175367 0.502366 -3.265504 1.116830 -0.316853 0.177820 3.980813 1.548739 -3.096759 1.234906 2.145971 -1.642476 -1.494929 0.578450 -1.469135 -1.027737 -1.015647 1.034711 1.635319 -1.918673 -1.988655 -0.068920 -1.941620 1.834419 -0.547228 -1.135286 0.716681 -2.042678 -1.155064 3.097203 0.439354 -0.466965 -1.187639 -2.177044 -0.904327 -3.068349 0.655504 0.804715 -0.979049 -1.086803 -1.911945 -0.635344 2.495793 -0.527496 0.580617 -3.536652 -0.282299 1.541869 0.954359 0.706997 -2.810148 -0.485145 0.014945 -0.090664 0.443629 -0.566207 0.922345 2.918449 -2.006514 1.353430 0.815444 -1.148183 0.887151 2.303935 -2.092591 2.956309 -0.036518 2.936377 0.351802 1.021567 -1.238265 0.296968 -0.162455 -0.262940 -0.746364 1.134891 -1.965885 -0.837618 1.151032 -1.425289 -1.942542 0.762529 1.927286 0.663365 0.373304 -0.245630 -0.983869 -0.531303 -1.092405 0.413869 1.736498 -0.827084 -2.185836 0.976764 1.461817 -1.477572 -1.314960 0.521504 1.288381 2.065022 -2.567387 1.587697 -0.031964 0.459473 -2.892863 -2.765416 1.159187 -1.802199 -1.526358 0.943277 -3.301447 -1.555205 -1.332623 1.680593 -2.708477 -0.386445 0.286223 2.512132 0.590954 -0.064186 1.935865 -0.438365 1.203498 -0.281002 0.115349 0.362835 2.176674 +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.522254 0.251002 -0.147115 -0.423270 0.976599 -0.245803 -0.130246 0.501168 0.233221 0.602314 -0.605251 -0.114156 -0.243154 -0.734888 0.069983 0.066593 0.113463 0.581712 -0.250490 0.054141 0.420337 -0.143581 0.235515 -0.338530 -0.158257 -0.560720 -0.088810 0.162074 0.046677 0.046554 -0.171091 0.123402 0.789833 0.028173 0.465933 0.443169 0.269975 0.880704 0.266268 0.233577 0.230369 0.389963 -0.216513 -0.939481 0.426677 -0.400489 -0.383254 -0.526234 0.373907 -0.769693 0.653755 0.469289 0.032603 -0.248956 -0.545310 0.188023 0.527026 0.209805 0.752275 0.248140 -0.410608 -0.051333 -0.462666 0.396808 -0.624945 0.329801 0.147715 -0.764664 -0.288739 0.443059 0.355804 -0.362524 -0.531128 0.055137 0.105369 -0.410675 0.234216 -0.111112 0.119684 -0.321125 -0.527165 0.125747 -0.309306 0.526982 -0.092734 0.091738 -0.326065 0.033009 0.204746 -0.529118 -0.230606 0.496405 -0.192382 0.361762 -0.129098 0.282750 0.169498 -0.253520 -0.249644 -0.194344 0.127874 0.070279 0.283859 0.156219 -0.217477 -0.401541 0.553287 0.277674 -0.007215 0.164514 0.277346 0.150987 0.059737 0.283379 -0.238814 0.223347 -0.923206 0.218098 0.016558 0.100967 -0.150201 0.153176 0.254886 -0.059377 0.387192 -0.713694 0.732930 0.153002 -0.187238 -0.364506 0.327238 0.046945 -0.276231 -0.132349 0.502132 -0.057896 -0.148597 -0.012363 0.146478 -0.114660 -0.560834 -0.239115 -0.232300 0.520655 -0.431686 0.161972 -0.231620 -0.436750 0.021877 0.107607 0.163085 0.271125 0.731566 0.543171 -0.194341 -0.010970 -0.703362 0.287969 0.926532 0.292640 -0.584109 0.343844 -0.153501 0.095809 0.356649 0.248773 0.270566 0.376359 -0.125149 -0.180607 -0.163626 -0.115259 0.667723 0.392920 0.384869 -0.727755 0.248446 0.058076 0.163817 1.063595 0.370050 -0.746622 0.172372 0.607969 -0.534770 -0.241904 0.084146 -0.112300 -0.099458 -0.351167 0.275839 0.412611 -0.638770 -0.646462 -0.102308 -0.587455 0.610899 -0.066285 -0.033293 0.200614 -0.749262 0.104566 0.857297 0.175290 -0.148011 -0.198908 -0.480176 -0.354792 -0.851935 0.176718 0.282592 -0.325103 -0.249208 -0.471134 -0.108808 0.664739 -0.169215 0.018235 -0.507925 -0.028774 0.397946 0.004203 0.175501 -0.623585 -0.198667 0.085551 -0.034529 0.318549 -0.062285 0.164435 0.650924 -0.515873 0.307451 0.596675 0.158380 0.226823 0.584828 -0.389271 0.712795 -0.208367 0.429544 0.048793 0.379851 -0.204434 0.118047 -0.064441 0.023943 -0.164238 0.410224 -0.596461 -0.216501 0.404107 -0.436787 -0.347163 0.290075 0.476319 0.426021 0.049660 -0.077819 -0.283282 -0.076611 -0.182807 0.088517 0.485373 -0.038691 -0.649252 0.071379 0.339284 -0.421961 -0.438745 0.233903 0.200274 0.645485 -0.634626 0.436075 0.062038 -0.057400 -0.689619 -0.406448 0.152793 -0.296275 -0.334437 0.413742 -0.886355 -0.359009 -0.309074 0.496890 -0.538076 0.120465 -0.174845 0.618151 0.280928 0.025025 0.537590 -0.008175 0.319762 0.028854 -0.159734 0.096110 0.662213 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -2.173879 2.631027 2.192813 -2.009756 3.968393 -0.406713 0.210196 1.804250 -2.245357 2.979097 -1.958308 0.511272 -0.771359 -3.356605 0.486704 -2.332097 -0.435181 1.508132 0.302574 2.843202 1.588353 -2.046673 0.293679 -0.693409 -1.450476 -2.863547 -0.428467 1.200256 2.798345 -1.306277 1.471414 0.280810 3.726771 -0.676564 3.298896 2.799478 1.219254 2.928173 1.251482 -2.595368 -0.688695 1.641318 -1.980514 -2.674829 0.658550 -0.982914 -2.116989 -1.141139 1.363318 -1.240505 -1.085762 2.909998 -0.745530 -0.541022 -2.707893 2.307909 1.365269 -0.080232 3.788407 0.468687 -0.935645 -1.460124 -3.333648 2.494398 -1.857642 0.484977 -1.646504 -2.096713 1.148448 0.468893 -0.664644 -1.366256 -1.305633 2.660363 1.306785 -2.932893 0.765992 -1.524502 -3.481017 -2.330022 -2.141570 1.297464 -0.311853 2.781597 0.176770 1.255773 0.097565 1.866865 -0.709538 -4.201019 0.409329 3.052968 -1.729855 -0.864669 -1.131471 3.278566 0.893667 -0.010207 -1.673952 -0.791060 1.397784 -0.711238 1.713304 -2.976261 1.449318 -3.461598 0.227352 -0.018236 0.710120 2.508000 1.235987 2.076619 2.489160 2.995246 -2.602365 -0.257381 -3.470791 0.517698 -1.087645 0.552387 -1.028666 1.958072 -0.077036 1.301560 3.099678 -4.454217 1.850935 0.289851 -0.297502 -2.981107 0.564637 -1.032280 -0.898402 -1.444759 1.988068 -0.172079 -0.627061 -0.968380 0.470994 0.793378 -1.415045 -1.733294 0.812240 3.607173 -3.112592 0.982808 -0.826332 -1.261196 -0.185264 1.536650 2.516003 2.674836 3.651862 2.919274 -0.263966 2.162913 -3.406471 0.196783 3.247809 0.869482 -2.996332 3.459218 -2.528165 -1.467637 0.666508 2.286623 2.524328 1.632781 -3.394333 -3.766111 1.759485 0.469201 3.498382 0.592036 0.135191 -1.793387 3.324670 -0.403004 -1.780300 3.954414 0.409413 -2.616940 0.956621 1.775531 -2.916639 -1.651371 1.905902 -2.744015 0.019529 -1.123422 -0.004326 2.128559 -1.850820 -1.679767 -0.360446 -2.935521 3.355959 -0.716940 -0.488798 0.702224 -2.212922 -3.571338 3.273445 0.370061 -1.139176 -2.581584 -2.435148 -1.366009 -3.041367 1.023524 0.841823 -0.997505 -1.920252 -3.018450 -0.739125 1.592431 0.228620 1.501807 -4.537405 -1.187314 1.905567 1.472796 1.309927 -1.239389 -0.484961 0.273589 -0.186982 0.795742 -0.660126 3.148562 4.078820 -2.195852 2.288066 -0.441030 -2.066848 1.528407 2.144512 -3.778164 4.226377 0.026097 3.015093 0.232795 1.091296 -1.808547 0.246732 0.918765 -1.210604 0.047776 0.469469 -1.032251 -1.175076 -0.023565 -2.015522 -1.921420 -0.263607 1.359340 -0.232951 0.977395 0.381128 -1.053188 -1.451930 -1.310011 0.639477 2.325172 -0.738896 -1.150679 2.223506 0.747489 0.352996 -0.355677 0.338855 1.385427 1.978766 -3.838560 0.802121 -0.860224 0.486451 -2.742599 -3.331024 0.836931 -2.081897 -1.301870 1.528585 -3.737768 -0.054159 -2.188270 0.513337 -2.371302 -0.577493 1.039121 3.898115 0.938195 -1.901700 1.705611 -1.485654 2.123289 0.143710 0.063559 0.178116 2.253718 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = -0.363620 0.154006 -0.208008 -0.240337 0.963283 -0.390894 0.007396 0.740429 -0.167875 0.452820 -0.361450 0.299131 -0.039501 -0.617273 0.169086 0.234512 0.208680 0.475502 -0.108299 0.007915 0.255874 0.001356 0.029792 -0.177018 -0.163228 -0.604954 0.084667 0.181415 0.165335 -0.095981 -0.241600 0.299805 0.730405 -0.128940 0.468258 0.444459 0.449645 0.449525 0.397602 -0.262871 0.251472 0.176529 -0.133808 -0.564676 0.120827 -0.140317 -0.424038 -0.187217 0.271940 -0.425744 0.276315 0.354793 0.046079 -0.025302 -0.402437 0.355969 0.291499 -0.206167 0.525208 0.235421 -0.446207 -0.294680 -0.235449 0.843605 -0.437137 0.006805 -0.094783 -0.561950 -0.121499 0.467172 0.112378 -0.317703 -0.240287 0.052391 0.079695 -0.387531 0.207045 0.035826 0.371324 -0.404668 -0.390857 0.203840 -0.270990 0.434031 -0.003325 0.077160 -0.277745 -0.015954 0.104271 -0.430882 -0.128968 0.429463 -0.359582 0.155999 -0.376927 0.239394 0.281610 -0.178846 -0.050503 -0.507487 0.146621 -0.117319 0.191612 -0.163906 0.216044 -0.164903 0.078778 0.000958 0.145510 0.531571 -0.051449 0.201696 0.094430 0.200686 0.042561 -0.065265 -0.796804 0.347244 -0.098461 0.018337 -0.187906 0.025023 0.486304 0.131757 0.335323 -0.622994 0.471414 0.115723 0.048345 -0.292519 0.191277 0.064245 -0.220821 -0.184112 0.445966 -0.044672 -0.062647 0.017908 0.302538 0.080308 -0.506515 -0.295260 -0.225629 0.442296 -0.703353 0.122574 -0.145215 -0.184303 -0.051628 0.120977 0.215509 0.316707 0.552930 0.403327 -0.148478 0.384136 -0.729847 0.194009 0.687381 0.282663 -0.387000 0.410319 -0.417066 -0.077494 0.219866 0.341165 0.137190 0.179545 -0.218466 -0.158984 0.184813 0.017859 0.579615 0.069999 0.144916 -0.525549 0.116729 -0.050083 0.019242 0.821218 0.231033 -0.739360 0.384621 0.525329 -0.174916 -0.151815 0.152593 -0.460344 -0.260020 -0.317758 0.251263 0.432600 -0.529411 -0.220731 0.079707 -0.358979 0.357243 -0.058754 -0.249205 0.126039 -0.440013 0.159816 0.731550 0.159105 0.061304 -0.198603 -0.465281 -0.360509 -0.661217 0.032632 0.154117 -0.184257 -0.078547 -0.401479 -0.295492 0.616150 -0.125358 0.117579 -0.910840 0.163582 0.366783 0.206009 -0.017922 -0.512681 -0.121572 0.095346 -0.037045 0.048369 -0.350801 0.199268 0.415911 -0.393422 0.343716 0.259370 -0.104763 0.207004 0.320063 -0.435832 0.578445 0.040895 0.392661 0.241904 0.229983 -0.370867 0.001510 -0.197847 0.012770 -0.328009 0.214128 -0.491909 -0.135612 0.309659 -0.208568 -0.472129 0.132943 0.443250 0.262572 -0.000226 -0.206434 -0.107158 -0.111758 -0.430368 0.209736 0.309976 -0.237691 -0.380423 0.278051 0.358405 -0.418107 -0.198208 0.126361 0.267053 0.480216 -0.510116 0.290300 0.111673 0.270085 -0.622315 -0.626683 0.185086 -0.208918 -0.282356 0.111762 -0.830023 -0.462473 -0.198382 0.382274 -0.754106 0.012469 0.060333 0.586226 -0.051873 -0.011374 0.397486 -0.049617 0.093250 -0.034944 0.128847 -0.004164 0.365878 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = -1.891513 1.217056 1.158242 -1.584635 3.489555 -0.045284 0.252396 1.714839 -0.054315 2.030997 -2.202474 -0.350102 -1.126627 -2.255412 0.116511 -1.456495 -0.313315 1.522845 -1.149412 0.604309 1.702831 -0.437045 0.639791 -1.227029 -0.645273 -1.923089 -0.632324 0.361366 0.507325 1.009964 0.521115 -0.035193 2.371913 0.025724 1.533121 1.454504 1.161172 3.145799 -0.550915 1.619728 0.276613 1.670407 -1.079542 -3.216600 1.545412 -1.798635 -1.712937 -1.708795 1.175701 -3.277607 0.963622 1.778719 0.110976 -0.798023 -1.017769 1.088537 1.910136 0.477943 2.453366 0.984595 -1.637219 -0.371796 -2.466625 0.709188 -1.449509 2.076852 0.463567 -2.741300 -1.156741 0.863829 0.761415 -1.023154 -1.614700 0.630341 0.757184 -1.269940 0.887398 -0.820183 -1.426147 -0.725843 -1.438197 0.177684 -0.468347 1.839949 -0.552283 0.145909 -0.141889 0.190734 0.369555 -2.153651 -0.939498 2.635401 -0.675546 0.878331 -1.976288 0.431170 0.077779 -0.117617 -1.423041 -0.361991 0.682261 1.042060 0.928579 -0.692282 -1.968682 -2.108897 1.713577 1.214539 -0.154675 0.517052 -0.065842 0.496728 0.087049 1.419235 -1.785307 2.267771 -2.673680 0.728311 -0.443534 1.010090 -0.544335 0.584746 0.552552 0.176115 1.369512 -2.282988 2.414851 0.329036 -1.312888 -1.742520 1.159060 -0.517807 -1.221887 -0.489036 1.547239 0.105419 -0.757955 -0.470410 0.425133 -0.547109 -1.211835 -1.592398 -0.466306 1.185174 -1.622034 0.257600 -0.907991 -1.262126 -0.267233 0.882383 0.868705 0.865277 2.619826 1.915800 -0.197026 0.324545 -2.108704 0.775047 3.244542 1.420188 -2.209463 1.059282 -0.638491 0.571729 1.184557 0.336348 0.969301 2.453340 -1.064713 -0.981176 -0.689908 -0.527038 2.566372 2.805480 1.200078 -3.042254 1.155196 -1.325741 -0.020616 3.095214 2.441672 -2.555802 0.252875 1.378100 -2.216974 -1.286887 0.317362 -0.471541 -0.421943 -0.794417 0.546630 1.171917 -1.794047 -2.542621 -0.074764 -2.293523 2.428074 -0.316581 0.707466 0.419726 -2.508522 -1.598603 2.427624 0.372551 -1.245520 -0.936405 -1.100063 -1.539427 -2.641290 0.976256 1.175234 -1.041347 -1.981889 -1.792962 0.092801 1.862904 -0.710694 0.217284 -1.294487 -0.921126 1.123214 -0.414082 1.693892 -2.626639 -0.825122 -0.946833 -0.171544 1.720085 0.031485 0.582743 3.053055 -1.627512 1.651943 1.186136 -0.753502 0.026825 2.406475 -1.278346 2.431229 -0.558047 1.852846 -0.459868 1.427863 -0.740493 0.300355 0.136325 -0.316817 0.047953 1.807435 -1.478192 -0.527172 0.666194 -2.453029 -0.452147 1.200405 1.119827 0.886513 0.287958 0.582460 -1.600179 -0.443451 -0.710910 -0.370722 2.076410 -0.497365 -2.432778 -0.016015 0.284686 -1.456784 -1.791422 0.801429 0.724126 2.083800 -2.120552 1.146112 0.031388 -1.188151 -2.768361 -1.434598 0.128797 -1.789962 -1.982871 1.483672 -2.182925 -0.369335 -1.364680 1.394312 -1.865843 -1.188085 -0.323062 2.101778 1.199807 0.188846 1.914767 0.057329 2.130388 0.222503 -0.437094 0.675181 2.252004 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.463962 0.398097 -0.285382 -0.379354 0.955238 -0.384053 0.006409 0.623396 -0.210384 0.544925 -0.526347 0.281337 -0.045951 -0.845709 0.131914 0.274137 0.181771 0.605548 -0.011014 0.237940 0.341952 -0.293038 0.091881 -0.306423 -0.194432 -0.645758 0.106735 0.184497 0.186791 -0.133009 -0.114959 0.238517 0.809106 0.012232 0.547807 0.547722 0.214005 0.708712 0.599672 -0.303599 0.162200 0.282832 -0.172221 -0.818030 0.265309 -0.218267 -0.357040 -0.452013 0.269152 -0.558711 0.469953 0.449096 0.026535 -0.141636 -0.692739 0.205151 0.610510 -0.079233 0.698968 0.238797 -0.319017 -0.201462 -0.253415 0.586407 -0.542474 -0.107366 0.169046 -0.553014 0.067281 0.472316 0.283921 -0.402342 -0.385007 0.083066 0.062711 -0.499629 0.202966 -0.076655 -0.038949 -0.558196 -0.429239 0.178048 -0.306430 0.585875 -0.021053 0.115984 -0.416684 0.043669 0.160876 -0.523701 -0.181531 0.431090 -0.219424 0.178829 -0.146919 0.653902 0.366382 -0.252990 -0.205696 -0.366549 0.177706 -0.084304 0.255182 -0.010623 0.025730 -0.325616 0.240848 0.016363 -0.006291 0.527320 0.245345 0.312006 0.178442 0.262034 -0.177663 -0.015881 -0.972513 0.266931 0.038629 0.038493 -0.125833 0.057918 0.352446 0.001249 0.380498 -0.756632 0.632043 0.224596 0.087871 -0.461808 0.262803 0.056766 -0.218939 -0.216564 0.467451 -0.038245 -0.042824 0.015270 0.150560 0.032417 -0.603972 -0.403212 -0.172045 0.899279 -0.736834 0.184003 -0.183117 -0.294826 -0.023287 0.046353 0.198793 0.297587 0.687839 0.496728 -0.171500 0.394830 -0.731413 0.193173 0.915747 0.529423 -0.501781 0.444223 -0.248853 -0.107316 0.273947 0.338247 0.290681 0.069963 -0.426126 -0.390357 0.259241 -0.123973 0.636999 0.069077 0.242864 -0.616639 0.498434 0.330259 0.003201 1.051874 0.128743 -0.704988 0.395275 0.612428 -0.393664 -0.125868 0.164435 -0.308957 -0.203468 -0.268321 0.252906 0.361078 -0.587445 -0.471762 -0.196522 -0.503472 0.509156 -0.049623 -0.144833 0.101659 -0.521095 0.229667 0.845997 0.178107 -0.067955 -0.216055 -0.485411 -0.400813 -0.788353 0.091790 0.185274 -0.310176 -0.137301 -0.479889 -0.258889 0.649063 -0.199749 -0.011329 -0.876116 0.024586 0.417239 0.266060 -0.055016 -0.694188 -0.162461 0.248795 0.127663 0.131360 -0.133539 0.424638 0.633934 -0.465820 0.211737 0.472054 0.275869 0.440412 0.510180 -0.521041 0.693794 -0.144417 0.655743 0.204552 0.287697 -0.311843 0.010493 -0.105800 0.069439 -0.257459 0.247016 -0.562502 -0.175839 0.431650 -0.211733 -0.502556 0.219522 0.479029 0.368392 0.021715 -0.164431 -0.097008 -0.100665 -0.365832 0.156982 0.404696 -0.110759 -0.506450 0.206491 0.443029 -0.234002 -0.148821 0.155159 0.305126 0.536041 -0.615866 0.439761 -0.010450 0.164123 -0.597528 -0.690471 0.394408 -0.242598 -0.342925 0.341170 -1.031669 -0.382537 -0.277662 0.439447 -0.875117 0.238549 -0.087125 0.647694 0.017691 -0.021074 0.431467 -0.122127 0.212285 -0.043279 0.101606 -0.039561 0.619788 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.736965 0.452106 0.000000 -0.548087 1.507702 -0.960532 0.076918 0.809043 -0.364118 0.762356 -0.185873 -0.033525 -0.244160 -1.171644 0.351839 -0.011921 0.840283 0.655409 0.026478 0.031553 0.462081 -0.258341 -0.268314 0.063659 -0.422010 -1.438725 -0.042563 0.351941 0.178388 -0.506136 0.260883 0.220207 1.463112 -0.307786 1.093697 0.971651 0.426630 0.260569 0.601853 -0.860849 -0.383268 0.502341 -0.475107 -0.640619 -0.095681 0.034940 -0.648644 -0.452965 0.322924 -0.368546 -0.742311 0.743783 0.024975 0.334197 -0.654563 0.772276 0.547486 -0.139248 1.049811 -0.014823 0.180839 -0.415556 -0.140015 0.723437 -0.898406 -1.103884 -0.495111 -0.568446 0.148722 0.168279 -0.666622 -0.025716 -0.426860 0.318115 0.108616 -1.210452 0.214637 0.363796 -0.101402 -1.058321 -0.471606 0.341271 -0.408457 0.842905 -0.024599 -0.092762 0.231514 0.345583 -0.150683 -0.956800 0.345310 0.531555 -0.336398 -0.252807 -0.040236 0.604299 0.742918 -0.200061 -0.135398 -0.853414 -0.005330 -0.984730 1.088115 -0.160683 0.605782 -0.229634 -0.533917 -0.699291 0.368590 1.219191 0.321860 0.674189 0.221297 0.438282 -1.103345 -0.045905 -1.382745 0.648537 -0.563851 -0.079398 -0.165604 0.283928 0.482944 0.371768 0.744580 -1.353465 0.625775 -0.041031 0.443789 -0.710425 0.201133 0.120070 -0.240241 -0.381522 0.518543 -0.508908 -0.398451 -0.469457 0.582427 0.137457 -0.641660 -0.212270 -0.019545 1.028083 -1.400915 0.446007 -0.761529 -0.131193 0.078949 0.136984 0.102069 0.563786 0.959518 0.985461 -0.333398 1.076712 -1.188615 -0.459011 0.534431 0.201535 -0.650444 1.073170 -0.646587 -0.379877 0.516734 0.710539 0.395436 0.270124 -0.353261 -0.316662 0.690633 0.517046 0.883370 -0.023306 0.316278 -1.378350 0.226496 0.314620 -0.108297 1.161572 0.255833 -1.103448 0.909746 0.335086 -0.964506 0.127194 0.199483 -0.995729 -0.401991 -0.674131 0.197991 0.641212 -0.412737 -0.151882 -0.132706 -0.636876 0.263313 -0.203647 -0.489076 0.974989 -0.967118 -0.381918 0.620703 0.093977 0.097002 -0.285576 -0.922977 -0.482003 -0.853540 0.212277 -0.070307 -0.821054 -0.304851 -1.042088 0.034595 0.544681 0.543252 0.368076 -1.983098 0.654970 0.908390 0.885160 -0.290019 -0.379040 -0.019792 0.246135 0.046110 -0.068138 -0.170234 0.594206 0.693669 -0.517830 0.338213 -0.682044 -0.824976 0.653357 0.257427 -1.129571 0.748620 0.191344 1.098070 0.306249 0.388127 -0.071152 0.214410 -0.107157 -0.770833 -0.427005 0.295649 -0.771930 -0.438268 0.710304 -0.243422 -1.006455 0.006469 0.170007 0.379991 0.299231 -0.368531 -0.654391 0.037090 -0.334521 0.826056 0.676239 0.514940 -0.537687 0.597777 0.205656 0.059460 -0.798291 -0.494276 -0.082074 -0.029274 -0.575730 -0.072013 -0.104428 0.884613 -0.183342 -1.142083 0.602540 -0.674919 -0.536020 0.189269 -1.046931 -0.140804 -0.143454 -0.111182 -0.861660 -0.197855 -0.008600 0.857355 -0.115316 0.097591 0.521944 -0.203242 -0.212580 -0.249479 -0.390823 0.158029 0.642792 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -2.057729 3.015941 2.760028 -1.531606 1.981324 0.158698 -0.279680 1.409965 -1.216448 2.336805 -1.938846 0.010119 -1.036748 -1.956822 -0.320591 -2.494341 -0.658746 1.442573 0.161626 2.243224 1.636926 -1.693312 -0.050476 -0.833837 -1.112166 -1.246698 -0.842757 0.325688 1.478485 -0.620712 1.455943 -0.265254 2.839408 0.234069 3.052228 2.534411 -0.104323 3.155857 0.796369 0.276174 -1.526104 2.003583 -1.865616 -2.684566 1.205513 -1.684584 -0.269923 -1.367793 0.849790 -1.402460 0.255413 1.983674 -0.527401 0.035464 -1.686766 0.879221 0.994903 1.485017 3.344029 0.339210 -0.846778 -0.029907 -2.704972 -0.294575 -1.326571 1.065889 -0.243186 -1.510771 1.444874 -0.802941 0.651443 -2.111157 -0.925272 2.369827 -0.238754 -2.183292 0.632222 -1.446208 -4.434771 -1.299704 -1.662161 0.399008 0.465235 1.753280 -0.396262 0.455536 -1.316597 1.716053 -0.624811 -3.453088 0.227542 2.557802 -0.858916 0.438482 -0.090488 2.491031 0.270361 0.768834 -1.483622 0.794487 1.200233 0.396005 1.326142 -1.892686 -0.321122 -2.894854 1.403544 -0.203287 -0.693638 0.445289 1.324991 2.090947 2.587574 2.794049 -2.559480 1.121542 -3.057251 0.252901 -0.738149 0.494245 0.205877 1.543587 -1.501292 0.101397 2.403948 -3.097070 1.344864 0.107056 -0.737127 -3.463845 0.815480 -1.683987 -1.034330 -1.287912 1.292414 0.515471 -0.714800 -1.721248 -0.689827 -0.442720 -0.767579 -2.784847 1.060767 3.156680 -1.504577 0.337941 -0.987998 -1.069520 -0.418019 1.185852 1.547031 1.627568 3.157350 2.284898 0.172135 0.215745 -2.122337 -0.927383 1.949798 1.710323 -2.704267 2.212196 -0.494409 -0.908860 1.099648 1.209073 2.077647 2.052547 -2.733135 -3.600123 0.676275 -0.109408 2.570900 1.393201 0.975212 -0.510007 3.435300 -0.090827 -2.249514 3.153174 0.428973 -1.686697 0.040974 0.323999 -1.305239 -1.112594 1.593844 -1.206014 0.514796 -0.014583 -0.929547 0.835510 -1.476458 -1.994001 -0.297476 -2.878538 3.358169 -0.403043 1.171182 0.628283 -2.997083 -2.941342 2.199677 0.432936 -1.721126 -1.497279 -1.105454 -1.127222 -2.097073 1.064445 1.177752 -1.078858 -2.394973 -2.394005 0.806336 0.469358 0.041625 0.870380 -1.106261 -2.529190 1.391148 -0.328513 1.741160 -2.011265 -0.737132 -0.636030 0.345621 2.281629 0.680065 3.079801 4.486248 -1.100774 1.457851 1.364862 -0.078573 0.872156 2.209999 -3.012176 2.878707 -0.923119 2.161287 -0.295345 0.920285 -1.053596 -0.207992 1.249792 0.269171 0.864267 0.888814 -0.193913 -0.543776 -0.760749 -2.756927 0.451194 0.135027 0.123076 -0.514581 0.839877 1.248445 -1.676391 -1.135267 -0.976379 -0.500138 2.313844 0.232320 -1.893207 1.087336 -0.862547 0.503372 0.257240 0.099025 0.509629 1.069161 -2.538742 -0.148408 -0.729735 -1.291361 -1.920465 -1.773333 -0.091612 -1.768386 -1.536533 1.237151 -2.062364 0.820520 -1.593275 -0.109242 -2.022035 -0.485260 0.126810 2.853450 1.926382 -1.284084 1.057360 -1.045591 2.886909 0.815672 -0.548017 -0.222844 2.787185 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.298009 0.295358 0.087751 -0.275424 0.595168 -0.342978 -0.008702 0.595994 0.247788 0.550873 -0.140942 0.170188 -0.019731 -0.214797 0.081328 0.231978 0.191227 0.379149 -0.078406 -0.092253 0.041973 0.071824 -0.187153 0.100228 -0.183634 -0.523916 -0.104184 0.153759 0.079339 -0.149752 0.031112 0.076830 0.637185 -0.308169 0.548373 0.424076 0.375472 0.079478 0.343707 -0.089465 -0.094538 0.189058 -0.208282 -0.241125 0.110249 0.029219 -0.254482 -0.101157 0.195200 -0.372380 0.145514 0.130492 0.021191 0.131895 -0.101582 0.447217 -0.045075 -0.217749 0.549882 0.050961 -0.207758 -0.265685 -0.034519 0.767030 -0.190574 -0.226670 -0.204033 -0.333871 0.126927 0.121027 -0.132478 -0.049954 -0.214060 0.245369 -0.236025 -0.535322 0.127792 0.045537 0.322168 -0.309608 -0.179153 0.193326 -0.016449 0.236674 -0.032418 -0.094916 -0.110098 0.124174 -0.257803 -0.382091 0.169136 0.191856 -0.167425 0.186575 -0.055065 -0.020386 0.045607 -0.041937 -0.059335 -0.212957 0.069822 -0.232879 0.433894 -0.059389 0.304462 -0.024617 -0.080350 -0.035729 0.165483 0.214738 0.264799 0.132383 0.297945 0.325457 -0.201533 -0.106326 -0.607961 0.384228 0.102929 -0.081806 -0.055743 0.155616 0.167029 0.106006 0.452852 -0.526478 0.230227 -0.167512 -0.005956 -0.218202 0.035007 0.006615 -0.181594 -0.165777 0.125831 -0.085071 -0.203869 -0.200032 0.212615 -0.052266 -0.389977 -0.401013 0.094769 0.227177 -0.515298 0.139174 -0.327172 0.065776 0.009547 0.245642 0.186357 0.261788 0.281154 0.386348 0.124721 0.167764 -0.647572 -0.234860 0.067920 0.194983 -0.310552 0.494015 -0.313266 -0.060328 0.118921 0.410123 -0.013888 0.398129 -0.066398 -0.292046 0.250367 0.258635 0.386180 0.143902 0.145991 -0.359493 -0.040996 -0.208531 -0.123178 0.414342 0.363686 -0.341687 0.169684 0.031812 0.127777 0.094608 0.334406 -0.416961 -0.343675 -0.266395 -0.003820 0.327444 -0.151494 0.095610 0.043836 -0.267143 0.154526 -0.066564 -0.283725 0.466270 -0.516653 0.022642 0.127084 0.039291 0.000790 0.070553 -0.289530 -0.302421 -0.328090 0.064108 0.257192 -0.221158 -0.273504 -0.469085 0.115044 0.128735 0.258691 0.284690 -0.433076 0.094315 0.490620 0.023720 0.038464 -0.413409 0.002555 -0.088466 -0.006391 0.147322 -0.117372 0.356150 0.361196 -0.027783 0.140319 0.315147 -0.160048 0.117264 0.102359 -0.510233 0.478419 0.009011 -0.135584 0.139959 0.074607 0.112106 0.158909 -0.122126 -0.111424 -0.174582 0.143446 -0.301991 -0.127935 0.143498 -0.375929 -0.135822 0.061770 -0.048998 -0.029914 0.161456 -0.036924 -0.250952 -0.300544 -0.455374 0.236323 0.285546 0.172280 -0.202859 0.356670 -0.129302 -0.202302 -0.274790 -0.223694 -0.067428 0.009263 -0.232605 -0.083300 0.068464 0.261102 -0.404361 -0.270481 -0.103711 -0.158096 -0.383078 -0.118683 -0.296229 -0.317610 0.047832 -0.059753 -0.450584 -0.203468 0.091167 0.328788 0.226281 -0.117626 0.147119 -0.098858 -0.019785 0.089949 -0.265186 0.205160 0.234741 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -4.492895 2.894506 2.853416 -3.543043 7.884221 0.128334 -0.087546 3.505134 -0.869940 5.521791 -4.168834 -0.844319 -2.620296 -4.040308 -0.087769 -3.499091 -0.750427 2.473547 -2.495820 0.927292 3.595198 -1.155443 0.860043 -1.387567 -2.158923 -3.639390 -1.750686 1.119128 1.941664 0.432781 0.750860 -0.750251 5.917890 -1.097675 4.528490 3.716656 2.608808 5.914021 -1.274100 2.889395 -0.822899 3.874933 -3.301560 -5.802102 2.542295 -3.689200 -3.677874 -2.888061 3.035217 -5.769942 1.469626 4.398699 -0.353193 -0.907495 -1.758635 3.872889 2.713433 0.769189 6.779997 1.049744 -3.504464 -1.739495 -5.826016 3.171716 -3.344174 3.918306 -0.517300 -5.681579 -1.604403 0.539212 0.442406 -3.041697 -3.572466 3.202696 1.103354 -4.304852 1.485921 -2.149847 -3.405290 -2.142680 -3.249082 0.950367 -0.088587 3.647268 -0.885908 0.617145 -0.005264 2.006244 -0.901977 -6.476143 -0.357128 6.333754 -2.513712 1.587047 -4.398922 0.918945 -0.985219 0.498690 -3.270179 -0.225063 1.430529 1.566733 3.165418 -4.179853 -2.042885 -5.546224 3.242669 1.538336 0.236220 0.400702 1.211639 1.397836 1.845729 4.831677 -4.814310 4.331711 -6.353752 1.554721 -0.813294 1.851144 -1.313849 2.385141 0.694135 0.643271 4.421850 -6.316265 4.454937 -0.646360 -3.661631 -5.878924 1.587593 -1.886174 -2.690511 -1.236445 2.989837 -0.465550 -2.416492 -2.645556 1.353628 -1.087598 -3.299403 -3.586106 0.727875 2.314174 -3.760342 0.864498 -2.401002 -2.151571 -0.758557 3.275721 2.800980 2.953883 6.887344 4.898226 0.372501 1.163804 -5.532820 0.277523 5.371012 3.132791 -5.839447 3.958985 -3.279646 0.413438 2.622717 2.069051 2.546135 6.021105 -2.294714 -2.439283 0.186746 0.651140 6.258062 4.916778 2.799111 -4.729580 2.366539 -3.184225 -1.180919 6.631367 5.559377 -5.782520 0.784386 1.675676 -3.169743 -2.248527 2.478716 -2.662505 -1.119079 -1.732531 0.158387 3.161667 -3.141072 -4.313953 0.374156 -5.427726 6.349381 -1.122359 1.312255 2.414095 -7.094043 -4.579242 4.094089 0.856115 -2.747630 -2.327318 -2.796475 -4.020195 -5.333674 2.225681 3.117309 -2.324411 -5.002362 -5.246065 0.841639 3.155383 0.405352 2.473698 -3.564272 -2.080494 3.409880 -0.168814 4.006867 -4.485196 -1.315255 -2.578482 -0.565231 4.297916 -0.451590 2.630284 7.177203 -3.269503 4.372036 1.059976 -2.552194 -0.101638 4.284116 -4.412729 5.785559 -0.229060 3.527710 -1.046697 2.828526 -1.210663 1.092423 0.758900 -0.821193 0.852833 3.537067 -2.504372 -1.688271 0.108801 -6.401079 -0.753460 1.367437 1.498519 0.651578 1.496414 1.226607 -4.086736 -1.899004 -2.293871 -0.211157 4.782830 -0.453155 -4.463231 1.510931 -0.886811 -2.317397 -2.263066 0.728405 1.101102 3.755840 -4.952544 0.179983 -0.250259 -2.075568 -5.875709 -3.547310 -1.319279 -4.203385 -3.729849 2.939158 -4.350420 -0.325485 -2.952360 1.197582 -4.121917 -3.242503 -0.017478 5.828173 3.071385 -0.335472 3.853376 -0.452051 4.758679 0.609007 -1.888694 2.381542 4.492816 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -7.299491 7.864438 4.625535 -5.987339 16.568158 -0.090181 -0.472575 5.935610 -5.657553 12.741178 -5.154499 -1.412456 -3.756966 -12.844094 0.218149 -7.007624 -2.809199 4.080026 -0.250904 6.613573 5.176997 -7.706841 1.321738 -0.089184 -5.007428 -12.976737 -2.444364 4.048835 11.520509 -6.214022 0.730891 -1.782649 13.081525 -3.188851 10.044368 8.467280 4.457708 8.152438 1.219367 -6.180366 -5.143578 6.063423 -8.058288 -6.013303 1.425676 -4.138674 -9.196576 -4.357693 5.265575 -3.689835 -3.749738 10.721890 -3.472260 -0.595550 -6.910095 10.434316 3.357138 0.426066 14.440756 0.360925 -0.154230 -5.538587 -13.423226 8.161362 -5.223550 0.171933 -5.251813 -6.776350 2.856328 -1.708799 -3.876448 -4.858176 -2.253987 11.729115 6.266014 -11.440722 0.956438 -6.291834 -15.670650 -11.321084 -9.585594 3.348680 -1.502595 9.305070 1.354143 3.928246 3.861807 7.715577 -4.772557 -16.523456 3.624402 12.724770 -4.457806 -3.742524 -5.425744 10.424311 1.938009 2.016874 -6.609075 -1.387733 3.057965 -1.181353 7.318994 -13.465937 5.129520 -14.148918 0.921018 -2.314494 3.141975 3.148959 6.852296 1.442169 6.965660 13.010008 -13.921755 1.256596 -13.038897 1.430097 -1.370549 3.610580 -3.341239 6.976017 -0.715431 4.199669 11.839355 -18.247089 3.866099 -1.429612 -3.403290 -14.216496 -0.163576 -5.402731 -2.921235 -3.123100 5.051676 -2.180218 -2.809250 -5.982359 3.093697 2.171923 -7.441743 -3.239525 5.374537 13.918080 -12.376785 3.482303 -3.440158 -3.567087 -1.660435 6.640183 9.627347 9.554699 15.293549 10.434822 0.875828 7.833097 -12.794624 -1.438534 9.674205 3.938426 -10.022813 12.032081 -9.027593 -3.447534 1.527482 9.313076 8.748575 6.015288 -10.032728 -9.816112 7.369007 4.121390 12.410283 1.236551 1.505590 -2.828341 10.272686 -1.882802 -7.366899 12.165618 7.215962 -8.155951 4.620758 2.433080 -9.267478 -3.524227 8.077186 -9.459694 1.290386 -3.762327 -0.287741 6.901482 -3.825121 -3.216445 -0.850552 -9.649335 12.671500 -2.954851 1.374474 7.303180 -8.630915 -12.081370 8.407461 -1.278007 -4.403926 -8.677190 -9.415321 -9.664886 -7.588856 4.247419 1.999684 -6.063231 -8.019309 -11.705806 -0.586306 8.144847 4.096082 7.413476 -15.804560 -3.689003 6.708241 5.861641 8.473891 -2.339056 -0.957800 -0.864777 -0.860924 3.936451 -1.707657 11.002292 15.088630 -6.587110 7.621416 -6.733471 -5.551011 4.171709 5.793301 -13.591855 13.429918 2.892786 9.942863 -1.093118 3.660538 -3.211246 2.675652 4.026360 -3.784893 3.236353 1.879601 -1.766494 -4.556902 -0.505839 -10.407427 -7.185773 -2.516036 2.206853 -1.934015 4.538972 -0.090272 -6.749385 -4.131213 -5.583691 1.853378 7.886396 0.596367 -1.535093 7.434458 -0.797961 3.689877 1.034875 0.453209 2.963741 5.132806 -11.887862 -1.576948 -3.326187 2.653354 -6.727056 -13.348045 -0.916843 -7.454523 -6.375578 6.744716 -13.105372 1.299117 -8.015996 -1.608243 -11.895535 -3.233088 2.944669 14.017345 5.316874 -5.378593 5.045879 -4.117429 7.284571 -0.661345 -1.728777 4.542533 6.772674 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -2.418850 1.553697 -0.064336 -1.599699 5.006391 -1.433820 0.068502 2.743285 -1.211557 3.197890 -1.663922 -0.142298 -1.126046 -3.848579 0.409922 -0.461067 0.281513 2.466988 -0.373988 1.457741 1.997501 -1.308240 0.057663 -0.441943 -1.170756 -2.664584 -0.425892 1.047323 2.125024 -1.935295 -0.694384 0.574179 4.529888 -0.478519 3.584562 2.960805 1.680363 3.148244 1.127426 -1.523476 -0.880495 2.067702 -1.946052 -2.850571 1.040149 -1.150570 -2.225313 -1.567163 1.666142 -1.285276 1.438202 2.957858 -0.603927 0.145863 -2.272259 2.192935 1.385931 0.160922 4.093492 0.749282 -0.978108 -0.677603 -3.014986 3.045821 -2.056823 0.309795 -0.638457 -2.577789 0.389643 0.111823 1.024132 -2.901635 -1.835896 2.452035 0.912246 -3.001606 0.927478 -0.969829 -1.533880 -3.540566 -3.555881 0.776430 -1.284142 2.805870 -0.192842 0.673176 -0.962190 1.457012 -0.656926 -4.175096 0.545084 3.168843 -1.741874 0.396238 -2.020870 2.312038 0.511091 0.247838 -2.017790 -1.410437 1.010059 -0.660637 2.144747 -1.682219 1.457409 -2.481861 0.574268 -0.562453 0.689330 1.603221 2.238215 0.985045 1.993618 2.939119 -2.186017 0.129042 -4.501930 1.193812 -0.419368 0.785436 -0.488100 1.703739 0.787933 0.361667 3.015725 -4.934393 1.617536 -0.073356 -0.695575 -3.505560 0.652545 -1.156530 -1.267500 -1.527569 2.369228 -0.350326 -1.042463 -1.396172 1.060556 0.497129 -2.750023 -1.580508 0.375965 3.452409 -3.565055 0.800320 -1.465036 -1.658507 -0.343947 1.461673 2.028978 2.704186 4.158152 3.222247 -0.412981 1.398989 -4.181966 -0.218779 3.095339 1.542714 -3.102109 3.134486 -2.213277 -0.681573 1.206801 2.788572 2.230908 1.010074 -1.877767 -2.004943 1.740675 0.893853 3.712803 0.215380 0.916993 -1.494230 1.906913 0.174534 -1.841826 4.827791 1.433762 -3.091231 1.190612 1.209571 -1.185617 -1.168818 1.787122 -2.566789 -0.497910 -1.450198 0.792803 2.056503 -2.095761 -1.163616 0.321434 -2.922074 3.170703 -0.811188 -0.572451 1.799185 -3.646350 -1.556026 3.693274 0.073321 -1.011372 -2.037486 -3.008594 -1.595847 -2.922930 1.270499 0.553214 -1.010396 -2.069473 -3.187586 -0.282623 3.214295 0.720561 1.485378 -4.132717 -0.761951 2.151502 0.822810 1.671239 -2.521678 -0.673578 0.133819 0.373588 1.263014 -0.506650 2.209387 4.427919 -2.405862 1.157158 0.823472 -0.317980 1.124277 2.100464 -3.841497 3.796610 0.305883 2.843224 -0.019956 1.167793 -1.439532 0.227732 0.621409 0.796758 -0.076653 0.865759 -1.016183 -1.028466 0.191741 -2.631635 -2.122899 -0.184373 1.137286 -0.087991 1.119399 -0.774469 -1.574249 -0.979451 -1.888318 0.742540 2.678086 0.007218 -1.273330 2.023878 0.035667 -0.115983 0.779377 0.295990 0.876130 2.295539 -3.414886 0.053460 -0.543792 0.956018 -2.151584 -4.018612 0.153383 -1.916636 -1.602940 2.018046 -3.993528 -0.699502 -2.042448 0.564216 -3.809098 -0.102978 0.244898 3.837786 1.563709 -0.889899 1.944141 -0.828238 2.024348 -0.105984 -0.631920 0.799211 2.777189 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.751398 6.440848 3.679120 -4.806328 11.727423 -0.344281 1.943650 5.021619 -5.824531 9.421665 -4.746876 0.967791 -1.337628 -8.587090 0.086646 -5.192975 -2.526226 3.407781 0.087616 5.907012 3.726300 -4.957632 1.044828 -1.165833 -4.399247 -7.904229 -1.095618 2.989282 7.836313 -3.820101 3.004730 -0.848292 8.894936 -2.081115 9.155220 7.028681 2.294411 6.247709 1.838931 -3.512561 -2.442242 3.839086 -5.580628 -6.355640 0.236851 -2.623705 -7.170307 -3.904294 3.286654 -4.734903 -1.552671 7.508499 -1.992979 -0.392302 -4.950271 6.912569 3.403435 -1.334946 10.103102 0.706107 -3.280929 -2.324827 -9.339297 7.323184 -2.880682 1.115225 -2.880505 -6.298292 2.537461 0.358709 -2.450729 -4.123307 -1.561153 8.411039 4.416213 -8.051844 0.765268 -4.988065 -11.382627 -7.011826 -4.588913 3.135253 0.606845 6.667647 1.287065 3.350873 1.358978 5.276713 -3.074925 -12.269414 1.483174 10.270840 -4.287361 -2.495157 -4.736268 7.629128 1.558219 1.414521 -4.467627 -1.579588 2.890777 -0.062436 3.995540 -9.244577 1.867121 -9.808888 -0.015701 -0.454692 1.197973 3.948889 2.713723 2.832453 5.968160 9.514721 -7.610076 2.100882 -8.386438 2.228349 -2.330762 2.550635 -2.617104 4.092296 0.596734 3.656242 8.719926 -11.862327 3.875843 -0.236736 -1.533616 -10.762061 0.098023 -3.926268 -2.298872 -2.650169 3.770285 -0.695280 -1.022501 -4.020627 1.345445 1.648075 -4.278287 -4.811185 3.813833 9.094834 -8.306878 2.495148 -1.491918 -1.695610 -2.047894 5.415743 7.758548 6.721702 10.902822 7.304339 1.009793 5.245083 -8.710434 -0.437978 8.603469 3.534712 -7.432630 9.273772 -7.246457 -3.367234 1.244889 5.999129 6.135983 3.896042 -9.651870 -8.104200 6.184536 1.814953 9.732338 1.816806 0.610072 -2.925560 8.759169 -1.380586 -5.504879 9.427465 4.836994 -8.131555 4.067000 2.982443 -6.237842 -3.394946 6.598123 -7.589617 -0.489166 -1.949905 -0.522301 4.354663 -3.306639 -3.303888 -0.097770 -7.636850 9.982781 -1.864463 0.273932 3.024382 -5.602096 -7.869962 7.179326 0.793946 -3.354993 -6.073542 -5.501776 -6.958744 -6.786564 2.470866 2.602719 -3.361436 -5.483321 -8.219185 -0.651089 4.567450 1.103278 5.501932 -9.279717 -3.474723 4.469228 3.469649 5.178140 -4.077311 -0.741200 -1.462423 0.138422 2.757490 -1.569282 8.423119 11.707597 -4.539802 6.688714 -1.662769 -4.669057 2.983249 4.863215 -10.201057 10.501130 1.128050 6.536723 0.213492 2.739011 -3.648773 1.192232 2.086397 -2.078799 1.429281 1.714242 -2.107368 -3.159737 -0.653015 -7.424447 -4.315949 -1.188266 2.686374 -1.155550 2.617584 0.834317 -4.608759 -3.586463 -6.476619 0.751552 5.723632 -1.500827 -3.089228 6.003741 0.547499 1.304961 0.221843 0.506369 3.717291 4.356355 -9.460411 0.484580 -2.032020 1.257087 -7.437786 -8.945934 0.984444 -6.569351 -5.375039 3.001047 -8.887334 0.308714 -6.065630 -0.261816 -9.730361 -3.131883 2.858104 11.365954 2.930306 -3.988983 3.879803 -3.723873 6.253519 0.535222 0.919193 1.944609 5.709514 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -2.181044 1.384084 0.522541 -1.463639 4.304034 -0.583473 0.397163 2.337845 -1.187182 2.882238 -1.813584 -0.041593 -0.981868 -3.032125 0.246073 -0.955380 -0.156994 1.759317 -0.586986 1.243472 1.747739 -1.011911 0.438066 -0.721490 -1.088697 -2.193282 -0.422789 0.820704 1.854915 -0.697469 0.121564 0.249564 3.395691 -0.340019 2.940332 2.296239 1.352419 2.905111 0.473529 -0.382885 -0.407298 1.752495 -1.671855 -3.027454 0.964803 -1.385505 -2.208011 -1.491645 1.413051 -2.152323 0.834292 2.481775 -0.386653 -0.151744 -1.608793 1.766411 1.490895 -0.034317 3.398887 0.766493 -1.643893 -0.685658 -2.875791 2.361411 -1.448667 1.124320 -0.396052 -2.798611 -0.151462 0.479349 0.326966 -1.945091 -1.348393 2.038940 1.089598 -2.262496 0.820034 -1.055109 -1.770739 -2.192834 -2.363283 0.668379 -0.608281 2.402344 -0.132460 0.688743 -0.315764 1.032746 -0.355600 -3.661426 0.034720 3.155165 -1.560302 0.381801 -2.020556 1.561989 0.170543 0.304480 -1.719036 -0.911003 0.919775 0.192271 1.369195 -1.763159 0.065956 -2.504817 0.840811 0.129441 0.454357 1.272711 1.105976 0.721414 1.395033 2.635586 -1.837617 0.962499 -3.200838 1.086439 -0.660067 0.941630 -0.740405 1.257670 0.853890 0.468289 2.569879 -3.799252 1.793730 0.137143 -0.771275 -2.982780 0.654081 -1.125681 -1.193328 -1.034750 2.005917 -0.213114 -0.688958 -1.103194 0.731856 0.237474 -2.039150 -1.559275 0.182520 2.332047 -2.743867 0.597176 -0.943402 -1.305072 -0.478721 1.470988 1.916119 2.158881 3.480719 2.629712 -0.281241 1.152654 -3.208662 0.397023 3.389944 1.344070 -2.751347 2.477675 -2.007831 -0.329504 1.061087 1.706443 1.893167 1.534883 -1.947677 -1.629534 1.149910 0.466139 3.389680 1.280410 0.950047 -1.930491 1.779692 -0.590310 -1.212174 3.893274 1.754441 -3.211877 1.181505 1.336684 -1.689336 -1.126346 1.433708 -2.035110 -0.453742 -1.214388 0.507198 1.767505 -1.992547 -1.584075 0.352899 -2.719744 3.136086 -0.568296 0.041787 1.076728 -2.863332 -1.592342 3.128628 0.436272 -1.044834 -1.807041 -2.082685 -1.974624 -2.811743 1.037448 0.849754 -0.903521 -1.910786 -2.662805 -0.355579 2.404226 0.175087 1.301555 -2.905572 -0.746316 1.559863 0.368182 1.753638 -2.352267 -0.680890 -0.433824 -0.048855 1.388705 -0.547283 1.701839 3.775714 -2.041214 1.874383 0.792234 -0.863688 0.669179 1.984878 -2.901832 3.368875 0.028767 2.274789 -0.098973 1.312407 -1.372586 0.327925 0.342867 0.174297 -0.023044 1.187384 -1.169624 -0.900695 0.322034 -2.616816 -1.453728 0.116119 1.162021 0.313064 0.733118 -0.145654 -1.573267 -0.904999 -1.781536 0.293690 2.339092 -0.607383 -1.739004 1.422189 0.171958 -0.605654 -0.376653 0.593410 1.029073 2.208872 -3.121006 0.458197 -0.286409 0.116369 -2.679017 -2.814155 0.126389 -1.944507 -1.758815 1.607395 -3.178708 -0.388616 -1.889793 0.750635 -3.120521 -0.696573 0.194710 3.487259 1.189371 -0.686001 1.916728 -0.573504 2.126906 0.122754 -0.060834 0.644060 2.383724 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -6.016592 5.677455 4.191165 -4.189046 11.575493 -0.270901 2.311190 5.788839 -7.996630 10.024960 -3.779874 1.600234 -1.873464 -8.229316 0.514867 -4.638443 -1.605638 2.537927 0.874800 7.279931 3.954783 -6.065599 1.224239 -0.574687 -4.294663 -8.462793 -0.290158 3.248330 9.665700 -3.330121 2.997334 -0.694932 8.990758 -1.949219 9.411051 7.462565 1.960685 5.827689 2.448060 -7.740139 -3.932251 4.479864 -6.267299 -5.912374 0.239683 -2.420734 -7.631536 -3.994937 3.571747 -4.226819 -4.780293 8.394373 -2.806140 0.131860 -5.391617 7.351026 3.764709 -2.097132 10.823600 0.388975 -2.123954 -4.149577 -8.930654 6.894379 -2.131633 -0.690675 -4.428175 -6.327422 3.720447 -0.493447 -4.525587 -3.341371 0.022279 9.594284 4.989549 -8.645528 1.107520 -4.690539 -11.481411 -8.402115 -5.294282 2.753096 0.262964 7.664618 1.231981 3.827690 2.631294 5.788932 -3.343685 -13.310475 2.927015 9.778240 -5.006435 -4.257815 -3.659776 9.109289 1.953121 1.958868 -4.906655 -1.423531 2.827190 -1.267116 4.619361 -10.364524 3.667449 -9.405627 -1.440795 -1.815071 3.419733 5.631578 3.095083 3.115921 6.804215 10.311609 -8.346505 1.786725 -7.377042 2.644892 -3.229836 2.736295 -2.829529 5.338658 1.941907 4.235298 9.811844 -12.668232 2.933452 0.103201 -0.302874 -10.879835 -0.118488 -4.753596 -1.933160 -3.407608 4.749903 -1.804817 -1.158670 -4.728408 2.459869 2.493447 -4.328093 -3.000692 3.566716 9.586958 -9.944706 2.863594 -1.904277 -2.076664 -1.225281 5.470830 7.889559 8.231755 10.834991 8.100342 -0.137711 7.052733 -8.984966 -0.044511 9.016262 3.027753 -7.496931 9.982767 -7.995594 -4.100772 1.406493 6.244960 7.896887 3.541359 -9.931949 -8.614233 7.691224 3.201668 10.443807 1.855280 0.991136 -2.968142 9.075761 -2.408155 -6.001542 8.475896 4.144255 -8.417816 5.045240 2.695493 -8.018833 -2.627491 6.336243 -8.462433 -0.008607 -2.948698 -0.599666 5.501662 -3.662379 -2.672371 0.077987 -7.939877 9.888153 -2.036429 0.715045 3.663342 -4.948760 -7.100847 7.025597 1.672817 -3.232906 -7.627450 -6.357657 -8.532000 -6.874462 2.883122 0.890293 -2.771511 -5.412770 -9.196324 -2.238197 4.044866 2.935499 5.940977 -12.162435 -1.878034 4.685813 4.559560 4.907037 -2.690442 -0.936831 -0.560185 -1.137864 2.348849 -2.166101 9.304792 11.105727 -5.384921 6.422896 -4.114042 -4.767452 4.169155 3.989805 -11.526896 11.050329 1.692833 8.498464 0.338680 2.900794 -4.271302 1.688436 2.176289 -3.362511 1.223410 1.439519 -1.885522 -3.683405 0.270199 -6.788131 -5.584191 -2.739950 2.249244 -1.399136 3.263833 0.552117 -5.400448 -3.715023 -6.711408 1.691878 6.198044 -1.988132 -2.455894 6.929173 0.440540 2.648781 -1.266162 0.555424 3.669701 4.193977 -10.541099 -0.162303 -2.601705 2.294615 -6.118148 -9.266041 1.619360 -5.982826 -5.492174 4.590209 -9.230430 1.867394 -6.726088 -1.073812 -9.951181 -3.257468 2.673535 11.783518 1.820183 -4.931647 4.116856 -4.027444 5.837992 0.098138 1.774605 1.191104 5.282962 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -3.300647 3.308320 1.706143 -2.307513 8.447399 -0.753444 0.958366 3.617913 -4.478732 6.110673 -2.198989 0.149675 -1.457698 -6.123699 0.356001 -2.275298 -0.949037 1.867773 0.265117 3.537366 2.369075 -3.507000 0.755197 -0.163707 -2.120269 -5.191175 -0.451607 1.883497 6.450114 -3.446640 0.515220 -0.462500 5.937587 -1.364593 5.220634 3.933023 1.545959 3.489534 1.282951 -4.793478 -2.278642 2.751378 -3.556911 -3.518235 0.239890 -1.359782 -4.517732 -2.030711 2.431137 -1.633208 -2.190045 4.869200 -1.718958 -0.032127 -3.295904 5.074308 2.102755 -0.530450 6.371830 0.273739 -0.723061 -2.773790 -6.193420 4.252188 -1.476993 0.025196 -2.689062 -3.447975 1.544981 -0.532856 -3.025700 -2.981851 0.143841 6.000996 3.165765 -4.725262 0.656518 -2.690575 -7.013539 -5.840418 -4.609888 1.431149 -1.075346 4.402562 0.654793 2.048182 1.595678 3.232822 -1.903698 -8.100557 1.746554 6.052924 -2.792263 -2.275856 -2.133671 5.309136 0.686368 1.110633 -2.923817 -1.341749 1.409765 -0.733241 2.734614 -6.636341 3.395436 -6.092616 -0.322249 -1.219940 2.077334 3.217804 3.725972 0.764109 3.274930 6.409516 -5.545015 -0.498507 -5.628629 1.177536 -1.589427 1.818873 -1.647693 3.248642 0.862491 2.411865 5.476619 -8.940918 1.719883 -0.170103 -0.276726 -6.544467 -0.063992 -2.746494 -1.247259 -1.701835 2.752148 -1.148038 -0.859781 -2.585660 1.646776 1.586501 -3.750928 -1.283554 1.971471 6.997501 -7.124271 1.572926 -1.180349 -1.564660 -0.657846 2.987122 5.008167 4.760009 6.832623 4.766850 -0.267934 4.323716 -6.206328 0.218723 5.519968 0.785788 -4.239812 5.970841 -4.747395 -1.820476 0.760376 4.372463 4.597892 1.921605 -5.266214 -4.562961 5.286997 2.008408 5.756842 0.111931 0.733771 -1.629959 5.181581 -1.023448 -3.958499 6.160580 2.310153 -4.927193 3.344231 1.409064 -4.130418 -1.365410 3.536792 -5.098061 0.468592 -2.206780 0.090743 3.311051 -2.233783 -1.534989 0.005218 -4.371296 6.100912 -1.261314 -0.190139 2.860153 -3.047230 -3.811721 4.899938 0.563825 -1.779245 -4.596057 -4.884882 -5.577343 -3.654438 1.862719 0.211850 -1.754113 -3.028409 -5.136447 -1.167731 4.022886 1.934173 3.567082 -8.365735 -0.952699 2.507296 3.122669 3.552681 -1.008169 -0.610215 -0.119015 -0.880231 1.323324 -1.321447 5.225511 7.461127 -3.347009 4.067488 -2.512269 -2.675321 2.215645 2.699805 -6.900690 6.233268 1.418915 5.635579 -0.237143 1.711154 -2.396862 1.151436 1.473718 -1.797835 0.983442 0.651212 -0.872009 -2.085248 -0.031129 -4.793996 -4.081085 -1.564083 1.233556 -0.526776 1.992610 -0.703609 -2.898078 -1.930263 -3.456096 1.052846 3.600382 -0.778478 -1.109429 3.655426 0.102105 1.624948 0.469292 0.495883 1.716944 2.646615 -5.871123 -0.364687 -1.437338 2.098580 -3.344585 -5.841187 0.320286 -3.153988 -2.927261 3.020977 -6.201331 0.561465 -3.872525 -0.600305 -6.889255 -1.240930 1.163215 7.119026 1.532219 -2.576849 2.486185 -1.941731 3.170792 -0.165528 0.395256 1.218803 3.023354 +PE-benchmarks/binary-insertion-sort.cpp__main = -1.909067 1.146803 0.616396 -1.262155 4.442428 -0.883359 0.337769 2.015265 -1.102188 2.992496 -1.234095 -0.616791 -0.969108 -3.231938 0.398257 -1.164272 -0.140956 1.682241 -0.219188 1.483066 1.516876 -1.190652 0.318230 -0.212837 -0.969996 -2.353486 -0.613165 1.059075 2.519714 -1.652896 0.108480 0.317836 3.581019 -0.515052 3.195332 2.374487 1.260293 2.299612 0.586360 -1.352931 -0.690494 1.592273 -1.789334 -2.390924 0.560916 -0.775110 -2.424423 -1.300130 1.407713 -1.164025 0.013782 2.623577 -0.735644 0.120922 -1.640628 2.117032 0.963965 0.201362 3.245973 0.560378 -0.951425 -0.517109 -3.188280 2.421970 -1.235951 0.582624 -1.242332 -2.545331 0.181862 0.086687 -0.310094 -1.978007 -0.833985 2.709713 1.516089 -2.269407 0.706390 -1.090014 -2.064580 -2.724788 -2.811252 0.822977 -0.816862 2.411408 0.091271 0.866162 0.192613 1.321631 -0.735260 -3.986729 0.642639 3.096668 -1.669156 -0.394448 -1.454935 1.868854 0.413554 0.464284 -1.500735 -1.199353 0.824813 -0.582569 1.508597 -1.621629 1.290428 -2.403458 0.082805 -0.299603 0.983085 1.677234 1.748963 0.527083 1.701635 2.959588 -2.267543 -0.024582 -2.929771 1.159276 -1.133669 0.894700 -0.732771 1.678528 0.839029 0.955783 2.705548 -4.318204 1.084573 0.002637 -0.368559 -2.898565 0.294585 -1.302002 -0.989919 -1.164684 1.927251 -0.410933 -0.658807 -1.175023 0.839109 0.704853 -1.675383 -0.713165 0.397388 2.577898 -3.008170 0.737644 -0.826502 -1.312038 -0.352487 1.485898 2.360719 2.637589 3.539208 2.728397 -0.489824 1.180503 -3.518133 0.244413 3.011677 0.133146 -2.399241 2.990935 -2.209833 -0.694427 0.766694 2.449440 2.186892 0.906228 -1.841115 -1.622671 1.526183 0.995417 3.210721 0.411908 0.435152 -1.351760 1.705723 -0.371119 -1.838853 3.855419 1.206092 -2.843934 1.271854 1.094927 -1.978798 -1.222251 1.629672 -2.516839 -0.100998 -1.483378 0.580876 1.923315 -1.662892 -0.900252 0.560834 -2.465677 2.904347 -0.735624 -0.508933 1.480924 -2.399668 -2.030308 3.293654 0.336104 -0.767369 -2.197289 -2.649648 -1.617917 -2.329540 1.067238 0.260149 -0.659506 -1.503065 -2.591542 -0.471873 2.610720 0.759175 1.813955 -3.530134 -0.422768 1.451634 0.809388 1.763082 -1.452066 -0.510572 -0.063629 -0.352876 0.705100 -0.605819 1.745058 3.858766 -2.051422 1.536457 0.034119 -1.400522 0.885133 1.502777 -3.511862 3.450406 0.455857 2.342618 -0.032997 1.006651 -1.387858 0.355919 0.630341 -0.200765 -0.002405 0.694083 -0.709231 -0.975750 0.210452 -2.492540 -2.043915 -0.540097 1.030058 -0.124477 1.004554 -0.531438 -1.721423 -0.783060 -1.477211 0.686642 2.156879 -0.266297 -0.981217 1.925413 0.214632 0.092167 -0.240332 0.382786 0.859542 1.942292 -3.225492 0.107912 -0.415195 1.048428 -1.956896 -3.064768 0.162987 -1.934447 -1.245793 1.430407 -3.189918 -0.314521 -2.048609 0.205324 -3.019768 -0.438985 0.580077 3.715578 1.258000 -1.224465 1.571354 -0.806842 1.726257 -0.063633 -0.182516 0.731267 2.023589 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -4.368417 3.404271 0.896955 -2.952722 8.137916 -0.718724 0.760189 2.724644 -4.520986 7.030436 -2.511385 -1.251284 -2.141540 -7.861255 0.443812 -3.359241 -0.891576 2.618555 0.481038 4.707910 3.280397 -4.928044 0.676817 -0.283670 -2.519883 -4.969887 -0.964343 2.415392 7.571760 -4.659860 1.020250 -0.089851 7.515229 -1.250639 7.506728 5.608099 1.691621 4.848815 1.884039 -5.306018 -3.178604 3.898998 -4.556857 -4.979480 0.462189 -1.755008 -4.906487 -2.546719 3.144108 -1.060040 -1.949961 6.284920 -2.322162 0.279155 -4.691652 4.542332 2.336790 0.369226 8.272043 0.480882 -0.877349 -2.072825 -7.012115 5.427255 -2.673274 -0.110296 -2.669314 -4.124776 2.684718 -1.014579 -2.714976 -3.148843 -1.477029 7.410443 4.097438 -6.074379 0.760634 -3.398882 -8.822003 -6.093786 -5.599340 1.797710 -0.782269 5.885333 0.657186 2.522843 2.119025 4.379495 -2.353915 -10.109697 2.337630 7.127541 -3.245584 -1.976948 -2.361210 6.767498 0.839169 1.467347 -4.408561 -0.944828 1.942900 -1.410732 3.675526 -6.183092 3.331872 -6.738418 -0.220352 -1.973380 1.840749 3.428440 5.244707 1.205678 5.118803 7.785643 -5.962750 -0.743215 -5.791570 1.471394 -1.957080 1.956996 -1.500245 4.543921 0.700424 1.438998 7.255197 -10.132497 1.691665 0.052211 -0.294434 -8.357239 -0.020552 -3.703805 -1.858188 -2.578785 3.865309 -1.079504 -1.125675 -3.437055 1.204027 2.318000 -4.139135 -1.348793 2.805214 7.007678 -5.976087 1.934970 -1.664767 -2.636885 -0.948844 3.656677 5.710510 6.351666 8.447846 6.391098 -0.668888 4.245184 -6.960557 0.009017 6.598937 0.781461 -6.031916 7.316112 -5.630704 -2.495210 0.889760 5.612879 6.323018 1.723801 -5.967883 -5.037456 4.851495 2.450724 7.210905 -0.375211 0.629909 -0.588635 6.100912 1.220076 -4.859399 7.421543 1.507988 -5.613599 4.135667 1.835969 -5.059639 -1.979698 4.884820 -5.840935 0.848882 -3.183388 0.543767 4.049343 -3.310453 -1.261173 -0.097320 -5.887542 7.531290 -1.732406 -0.377466 3.476293 -5.192119 -5.892800 5.995407 0.218928 -2.173427 -5.788703 -5.377732 -4.956663 -4.851290 2.557672 0.266619 -2.267445 -3.778591 -6.469435 -1.112872 4.702565 2.423212 4.810226 -7.939423 -1.439810 3.295795 3.991247 4.311413 -1.282303 -1.006212 0.742966 -0.122262 1.945832 -1.074879 5.894246 8.579047 -4.459599 3.657370 -2.165304 -3.135551 3.247544 2.908216 -8.897444 8.189450 1.264248 4.806935 -0.397678 2.047069 -2.823239 0.961584 2.366762 -0.843270 1.106629 0.439727 -0.809508 -2.496827 -0.129257 -5.136598 -4.197450 -2.034348 1.543623 -0.643942 2.738654 -0.625282 -3.270828 -2.258372 -3.582131 1.402452 4.877943 -0.136978 -1.066970 4.872949 -0.154648 2.608836 1.632666 0.522085 2.015394 3.595620 -7.700141 -0.575397 -2.083029 2.048899 -3.339558 -7.170098 0.211786 -3.923260 -2.213764 4.249340 -6.974255 1.161636 -5.027571 -0.728977 -6.335960 -0.523933 1.305770 8.916249 2.891430 -3.436915 2.954799 -2.593527 4.322505 -0.184844 -0.025626 1.765170 4.390980 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -2.239364 1.440054 0.755988 -1.309454 4.746649 -1.241367 0.168073 2.369005 -2.817284 3.487345 -0.970515 -0.470784 -1.206794 -4.228042 0.504474 -1.517688 0.038788 2.014152 0.368066 2.552995 1.741624 -2.087685 0.146605 0.028747 -1.158861 -1.809562 -0.662910 1.360646 4.174623 -3.136252 0.168048 0.451073 4.557913 -0.883246 4.514076 3.168620 1.170996 2.343793 1.493705 -4.071708 -1.495470 2.052938 -2.357619 -2.611971 0.207003 -0.674212 -2.302633 -0.816982 1.804194 0.062401 -1.581035 3.174229 -1.244935 0.522230 -2.385446 2.650124 0.736713 0.411374 4.225080 0.318273 -0.755394 -0.949391 -3.684606 3.065580 -1.505333 -0.025852 -2.437963 -2.270156 1.351566 -0.483482 -1.287370 -2.695204 -0.689992 4.065115 1.794017 -2.969869 0.715476 -1.338597 -3.083280 -3.558683 -3.567627 0.932881 -1.030358 2.872920 0.137318 1.252986 0.516638 2.234228 -1.130248 -5.383615 1.386731 3.479534 -2.187955 -0.940045 -0.839642 3.088859 0.630477 0.775152 -1.945479 -1.326716 1.040694 -1.352346 1.979614 -3.029193 3.540575 -2.741157 -0.724641 -1.498474 1.430217 2.705476 2.796186 1.182500 3.042206 4.076875 -2.578808 -1.458244 -3.389498 1.064628 -2.180393 0.859374 -0.715138 2.718045 0.823636 0.951334 3.811217 -5.730245 0.617053 -0.008459 0.388706 -4.205825 0.280646 -1.879938 -1.023025 -1.666455 2.386317 -0.594071 -0.728700 -1.781453 0.831783 1.458887 -2.202470 -0.580234 1.093685 3.507187 -3.770413 0.971697 -0.959457 -1.546127 -0.174643 1.653378 3.063989 3.635879 4.362138 3.484575 -0.893731 2.177829 -4.237943 -0.005996 3.013375 -0.740036 -2.972249 4.132763 -2.998836 -1.559014 0.716337 3.466048 3.355736 0.729887 -2.724211 -2.709740 2.821742 1.589519 3.598279 -0.922636 0.219298 -0.296954 2.557137 0.532906 -2.844124 4.501136 -0.299100 -3.316483 2.516398 1.038597 -1.739326 -1.173003 2.338138 -3.666499 0.330833 -1.959352 0.371906 2.462493 -2.160379 -0.415530 0.506102 -2.918457 3.719763 -1.015042 -1.402670 1.860845 -2.847717 -2.724923 3.931029 0.601005 -0.787873 -3.202654 -3.446230 -1.796738 -2.607048 1.296305 -0.143944 -0.787314 -1.652814 -3.234177 -0.860628 2.780034 1.465989 2.658546 -5.067065 -0.369610 1.757423 2.110559 2.148298 -0.955187 -0.573170 0.548317 -0.522973 0.691287 -0.994956 2.777632 4.635916 -2.558061 1.772502 -0.441878 -2.004301 1.734806 1.275899 -5.160941 4.291284 0.916118 3.274923 0.052293 0.909989 -1.985297 0.307643 1.133003 -0.048933 0.135720 0.076601 -0.360278 -1.265040 -0.214849 -2.474511 -2.705840 -1.338176 0.967275 -0.581007 1.500844 -0.911973 -1.720271 -1.161425 -1.732803 0.994839 2.569825 -0.446140 -0.774966 2.831077 0.032142 1.028505 0.805143 0.185606 1.000905 1.846079 -4.106792 -0.368231 -0.903759 1.805796 -1.611582 -3.968361 0.147877 -1.837201 -0.432160 1.835806 -3.703487 0.029763 -2.457732 -0.296229 -3.455745 0.087121 0.859349 4.851305 1.470141 -2.006270 1.601942 -1.368419 2.005002 -0.088303 0.049364 0.365683 2.172979 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.939470 0.444024 -0.071083 -0.487757 2.092784 -0.595929 0.008243 1.545217 -0.858399 1.355054 -0.492394 0.197270 -0.299302 -1.444654 0.230555 -0.015234 0.131080 0.987214 -0.077962 0.620858 0.743817 -0.344399 0.030819 -0.084512 -0.470448 -0.839938 -0.110369 0.483030 1.175208 -0.884931 -0.303904 0.325778 1.813154 -0.342160 1.724398 1.238961 0.862138 0.937292 0.633618 -1.027484 -0.307898 0.745577 -0.826672 -1.126811 0.214524 -0.369939 -0.975919 -0.337814 0.709570 -0.380769 0.228513 1.153932 -0.338240 0.221198 -0.697039 1.000051 0.263570 -0.176736 1.588288 0.284631 -0.779631 -0.431774 -1.194566 1.763092 -0.660351 0.213378 -0.673752 -1.195541 0.152894 0.098283 0.084986 -1.186831 -0.397844 1.283607 0.427429 -1.109353 0.445425 -0.383270 -0.067288 -1.355169 -1.358671 0.392764 -0.553278 1.060231 -0.014918 0.389694 -0.374082 0.629316 -0.329098 -1.895937 0.361306 1.307099 -1.048356 0.087483 -0.857371 0.720883 0.227082 0.251920 -0.570046 -0.775245 0.448600 -0.337044 0.704193 -0.827077 1.229458 -0.755087 -0.115695 -0.366304 0.588601 1.098169 0.610177 0.500939 1.041446 1.397843 -0.410838 -0.320030 -1.468952 0.672383 -0.678285 0.347712 -0.290191 0.790289 0.764660 0.346755 1.378021 -1.971443 0.444040 0.015794 0.022163 -1.397548 0.234372 -0.645202 -0.491968 -0.688393 1.037781 -0.185515 -0.347344 -0.635682 0.529929 0.409622 -1.187549 -0.602126 0.074537 0.967697 -1.583587 0.314997 -0.433639 -0.563784 -0.106344 0.696671 1.055066 1.333205 1.628677 1.304207 -0.273063 0.686284 -1.729376 0.080145 1.276894 0.177312 -1.195046 1.460354 -1.247204 -0.484429 0.475512 1.233207 0.987562 0.432496 -0.811670 -0.774174 0.881915 0.551981 1.546813 -0.052958 0.232398 -0.437720 0.586673 -0.080304 -0.942281 1.962200 0.190962 -1.554345 0.812539 0.499910 -0.260715 -0.415658 0.762915 -1.406304 -0.256781 -0.737709 0.289509 1.015781 -0.998425 -0.290222 0.485535 -1.153148 1.378769 -0.329981 -0.515659 0.635399 -1.322319 -0.402940 1.673193 0.362793 -0.295204 -1.017949 -1.235554 -0.656807 -1.156462 0.424043 0.122284 -0.177935 -0.620142 -1.259186 -0.422382 1.227074 0.408041 0.838325 -2.041901 -0.107275 0.774043 0.320400 0.614244 -1.003022 -0.273211 -0.046333 -0.108241 0.363585 -0.564532 0.844201 1.726466 -1.013735 0.687957 0.404206 -0.524898 0.409914 0.612278 -1.793735 1.624116 0.285739 0.958207 0.186921 0.438667 -0.907822 0.072147 0.088951 0.318724 -0.161600 0.266722 -0.353974 -0.433092 0.026150 -1.017296 -0.967225 -0.333765 0.502809 -0.070161 0.460975 -0.535464 -0.660581 -0.489402 -0.970456 0.353286 1.037038 -0.393739 -0.548125 1.062586 0.046570 -0.155702 0.164144 0.167373 0.475126 0.951537 -1.548665 0.019662 -0.091648 0.656450 -1.033795 -1.505701 -0.008250 -0.642275 -0.437728 0.546242 -1.566792 -0.391737 -0.875706 0.121082 -1.567721 -0.100754 0.300271 1.847240 0.451423 -0.585467 0.815502 -0.411178 0.783989 0.067081 0.100504 0.082722 0.939572 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -1.029516 0.903553 0.358175 -1.089077 1.866402 -0.627845 0.398393 0.197690 0.184709 1.365447 -1.260481 -0.947960 -0.488643 -1.688805 0.269416 -1.342534 -0.096309 1.173668 -0.063842 1.230256 0.753476 -0.795605 0.288101 -0.626389 -0.523010 -1.121388 -0.464119 0.696853 0.679996 -0.316130 0.470966 0.293002 1.893508 -0.149486 1.709413 1.524935 -0.165898 1.755454 0.556269 -0.266747 0.152842 0.724883 -0.782965 -1.820786 0.142988 -0.318750 -1.303134 -1.317518 0.724035 -0.965018 0.543025 1.372689 -0.176482 -0.298501 -1.500136 0.633168 0.886265 1.097294 1.679397 0.327018 -0.372579 0.845763 -1.495757 0.702019 -0.929498 0.203517 -0.512021 -1.502335 0.313680 0.574308 0.301961 -0.679336 -1.224741 0.865768 0.876524 -1.172884 0.312333 -0.621356 -1.920313 -0.694871 -1.062745 0.623698 -0.434514 1.337608 0.050905 0.545737 -0.268910 0.698932 -0.121728 -1.612975 -0.098792 1.641470 -0.330261 -0.419066 -0.047650 1.450508 1.054599 -0.383013 -0.696769 -0.295154 0.439315 -0.514394 0.886960 0.201634 -0.307973 -1.280371 0.437930 0.622189 0.111395 1.156787 0.723467 0.838433 1.012912 0.936539 -1.139177 0.486379 -1.794389 0.607237 -1.035298 0.107690 -0.279175 0.920415 0.129687 0.540999 1.165653 -1.786050 1.107434 0.275479 -0.046469 -1.065629 0.386629 -0.115209 -0.402076 -0.641544 0.943780 -0.038744 -0.237156 -0.176040 0.037289 0.290581 0.016904 -0.016680 0.240592 1.215514 -0.442588 0.602428 -0.325474 -0.743447 -0.074422 0.569544 0.939286 1.169517 1.961274 1.475724 -0.356269 -0.645235 -1.672444 0.227163 1.822535 -0.401836 -1.128999 1.482220 -0.290414 -0.623073 0.167870 1.242013 1.055078 0.736244 -1.008803 -1.276001 -0.845164 0.055768 1.513146 0.768097 -0.065943 -0.871640 1.273283 -0.127447 -0.445323 2.112355 0.642111 -1.138204 -0.381613 1.184826 -2.165876 -1.248963 0.861661 -0.841260 0.163914 -0.698394 0.394905 0.811482 -0.905668 -0.857205 -0.192883 -1.280546 1.178610 -0.460518 -0.685703 0.076096 -1.236147 -1.115943 1.948773 0.327670 -0.282498 -0.828059 -1.317590 -0.261817 -1.593656 0.500570 0.356589 -0.314984 -0.627162 -1.042479 -0.241128 0.910881 -0.189982 0.776861 -0.396177 -0.438367 0.899088 0.550106 0.471480 -0.819562 -0.183044 0.270129 -0.067689 0.144368 0.294246 0.950148 1.934580 -0.990166 0.373357 0.788824 -0.572475 0.859232 1.376101 -1.729444 2.033065 -0.407770 0.852326 0.183594 0.523914 -0.306094 0.080430 0.453269 -0.649521 -0.220431 0.445564 -0.725098 -0.588579 0.514793 -0.673890 -0.915059 0.004701 1.048548 0.101087 0.497247 0.205821 -1.028988 -0.335616 -0.405640 0.439671 1.018691 0.186604 -0.829901 1.015130 0.771955 -0.053286 -0.664553 0.088410 0.565364 1.022631 -1.794470 0.739368 -0.295763 0.476817 -1.029341 -1.059483 0.645825 -1.225619 -0.531277 0.491032 -1.348288 -0.380538 -1.066353 0.518850 -0.721840 -0.513327 0.494992 1.720721 0.791158 -0.643156 0.597240 -0.674573 0.747370 0.121313 -0.394785 0.314166 1.540064 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.308938 0.084663 -0.139031 -0.197410 0.761662 -0.364791 -0.104895 0.607126 0.110700 0.446781 -0.267743 0.129506 -0.069256 -0.422462 0.093474 0.149621 0.185829 0.460676 -0.119961 -0.048898 0.196122 0.099867 0.096343 -0.096154 -0.149681 -0.520167 0.020481 0.176299 0.019851 -0.109576 -0.218663 0.240162 0.659305 -0.099180 0.449204 0.381846 0.345647 0.382268 0.367286 -0.016387 0.242244 0.113643 -0.117085 -0.463223 0.111926 -0.082527 -0.339368 -0.200025 0.261523 -0.389661 0.391661 0.295783 -0.007246 -0.029460 -0.303447 0.282474 0.090519 -0.051926 0.468439 0.134685 -0.430202 -0.121780 -0.218423 0.729868 -0.430609 0.055148 -0.148319 -0.542221 -0.155373 0.393421 0.167250 -0.253545 -0.209331 0.093007 0.048018 -0.335362 0.130652 0.023956 0.424177 -0.243514 -0.375598 0.200500 -0.206127 0.276926 0.038572 0.121239 -0.311077 0.052285 0.063255 -0.392179 -0.015876 0.349619 -0.312342 0.190788 -0.194477 0.094241 0.235229 -0.202574 0.062250 -0.375841 0.093445 -0.181908 0.197358 0.026711 0.198300 -0.120779 0.146258 0.078761 0.155619 0.313490 -0.021996 0.177931 0.160818 0.198925 0.084636 -0.049924 -0.681665 0.329835 -0.103619 -0.063636 -0.142054 0.083879 0.328004 0.151837 0.330264 -0.527007 0.373486 0.056850 -0.004848 -0.204695 0.139670 0.081814 -0.114805 -0.162060 0.390593 -0.086462 -0.062865 -0.010456 0.223174 0.027605 -0.383620 -0.192170 -0.188556 0.239281 -0.396465 0.160728 -0.118410 -0.197572 0.013334 0.115457 0.188837 0.320712 0.478026 0.358927 -0.127790 0.057925 -0.634856 0.115738 0.459960 0.096547 -0.316333 0.403810 -0.296740 -0.112506 0.185575 0.362105 0.117231 0.157205 -0.075085 -0.137897 -0.016878 0.079072 0.463403 0.079379 0.103889 -0.341870 -0.006973 -0.054574 0.037782 0.711335 0.168643 -0.585115 0.186930 0.456593 -0.177755 -0.212178 0.153548 -0.360447 -0.177621 -0.279790 0.196984 0.396031 -0.447051 -0.171191 0.154900 -0.312634 0.313657 -0.057686 -0.249551 0.171032 -0.461532 0.136835 0.645758 0.168926 0.083878 -0.148069 -0.462719 -0.186382 -0.562771 0.013159 0.163401 -0.111256 0.007428 -0.320585 -0.208397 0.448736 -0.004163 0.183481 -0.601454 0.103674 0.343409 0.054212 -0.058715 -0.384311 -0.069747 0.088869 -0.088418 0.032271 -0.240172 0.129839 0.304473 -0.313532 0.276529 0.351213 -0.109547 0.150326 0.212377 -0.418474 0.514640 -0.006490 0.119025 0.257332 0.163568 -0.266863 0.054139 -0.150931 0.015203 -0.277038 0.174885 -0.424663 -0.173705 0.226620 -0.207725 -0.364430 0.022986 0.391517 0.179886 0.032623 -0.183025 -0.162711 -0.107924 -0.338984 0.220587 0.232613 -0.120946 -0.302442 0.309695 0.313143 -0.393700 -0.267360 0.104250 0.196961 0.384522 -0.471107 0.245355 0.124600 0.243269 -0.518697 -0.394106 0.117533 -0.191151 -0.195193 -0.015589 -0.683812 -0.444768 -0.165829 0.291880 -0.467124 0.051039 0.077692 0.539225 0.048118 -0.065028 0.333211 -0.079699 0.018852 0.022013 0.007844 -0.010381 0.351044 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -1.326378 0.819760 -0.216206 -0.951814 2.706340 -0.479177 0.124016 1.640118 -0.620440 1.871829 -1.278481 0.480505 -0.458410 -1.819511 0.024460 -0.058163 0.211222 1.192526 -0.407746 0.497473 0.901082 -0.533546 0.511834 -0.507091 -0.672199 -1.809969 -0.045517 0.534398 0.781528 -0.325512 -0.055132 0.164870 2.258287 -0.183229 1.570363 1.278636 0.825210 1.831502 0.859286 -0.192146 0.168901 0.880796 -0.771072 -1.868494 0.573476 -0.816773 -1.349366 -0.998763 0.908323 -1.711366 0.920173 1.342500 -0.164309 -0.276978 -1.221552 1.006577 1.242991 -0.454195 2.148084 0.317330 -1.248760 -0.697747 -1.203889 1.879552 -1.176782 0.275851 0.027619 -1.720688 -0.127180 0.748475 0.417146 -1.041256 -0.957467 0.877706 0.532580 -1.450746 0.368744 -0.496196 -0.603883 -1.395216 -1.198292 0.403560 -0.492727 1.330178 0.008530 0.469461 -0.465436 0.451506 -0.009980 -1.987618 -0.057373 1.781806 -0.850243 0.478189 -1.170137 1.096756 0.254167 -0.271695 -0.850350 -0.711195 0.334369 -0.025788 0.768144 -0.904060 -0.084811 -1.329445 0.608052 0.128919 0.262181 0.895524 0.470419 0.566113 0.738233 1.319776 -0.890824 0.513296 -2.287696 0.777701 -0.005328 0.235421 -0.473653 0.519769 0.615905 0.351681 1.560610 -2.243553 1.387495 0.168246 -0.419654 -1.668244 0.353247 -0.267393 -0.574877 -0.452783 1.173845 -0.291418 -0.205549 -0.533152 0.475001 0.028541 -1.569645 -1.140209 -0.033843 1.636228 -1.716779 0.485329 -0.455565 -0.699163 -0.140429 0.742993 0.940368 1.073987 2.054768 1.444125 -0.169457 1.033304 -2.007319 0.350165 2.153485 1.391756 -1.601629 1.448811 -1.132731 -0.237881 0.753707 1.005291 1.003682 0.609180 -1.122622 -0.948507 0.735301 0.149859 1.971775 0.684224 0.599243 -1.422357 1.068107 0.027535 -0.159734 2.525949 0.986677 -2.023526 0.921196 1.153196 -0.986448 -0.479388 0.714964 -1.110133 -0.609320 -0.725210 0.413095 1.126963 -1.245029 -1.013162 0.012519 -1.536534 1.857265 -0.286862 -0.222759 0.661027 -1.761119 -0.409264 1.922509 0.301625 -0.328318 -0.774205 -1.322674 -1.251591 -2.036385 0.361196 0.590655 -0.779188 -0.708039 -1.564049 -0.367718 1.422910 0.041149 0.686922 -2.191709 -0.269580 1.124148 0.387253 0.481943 -1.703190 -0.371944 0.042487 0.073685 0.707633 -0.502881 1.101140 1.858526 -1.195755 1.147016 0.597297 -0.145806 0.660960 1.097869 -1.666629 2.034337 -0.182092 1.362707 0.234893 0.771783 -0.732779 0.291974 -0.141760 0.174621 -0.364265 0.702642 -1.260366 -0.638030 0.577437 -1.271544 -1.079153 0.186503 0.917627 0.474215 0.337580 -0.265334 -0.739481 -0.551995 -1.170321 0.299118 1.168904 -0.403628 -1.231836 0.834318 0.523356 -0.614677 -0.330126 0.313762 0.798752 1.258436 -1.844106 0.572679 -0.069047 0.138211 -1.768011 -1.790847 0.459026 -0.996972 -1.248182 0.887581 -2.370310 -0.690336 -1.005898 0.653357 -2.079438 -0.082634 0.074891 2.146349 0.422318 -0.285698 1.206618 -0.345007 0.937280 -0.052353 0.209217 0.304039 1.456149 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.495079 0.155383 -0.756104 -0.161093 1.171155 -0.451739 -0.046981 1.044048 -0.581901 0.724211 -0.287262 0.438714 -0.069977 -0.873204 0.124274 0.787192 0.421234 0.614790 0.022041 0.174571 0.311382 -0.281789 0.119690 -0.053287 -0.233208 -0.543626 0.175268 0.278355 0.477129 -0.494154 -0.477659 0.305636 1.100151 -0.058934 0.803356 0.568371 0.357469 0.560915 0.920986 -0.901978 -0.007311 0.314438 -0.285511 -0.683047 0.193212 -0.220650 -0.433446 -0.268479 0.375223 -0.280170 0.561481 0.506746 -0.102827 0.126016 -0.659749 0.250809 0.482915 -0.395733 0.917466 0.122482 -0.489551 -0.494271 -0.112433 1.116497 -0.466035 -0.379182 -0.059621 -0.627218 0.170950 0.321265 0.323967 -0.737508 -0.328160 0.402536 0.055277 -0.623029 0.254749 0.028703 0.475773 -1.046526 -0.753589 0.167948 -0.590489 0.631782 -0.013602 0.185511 -0.566422 0.109950 -0.016775 -0.840344 0.157395 0.425779 -0.508731 0.311974 -0.278970 0.655261 0.151702 -0.071055 -0.340219 -0.568988 0.108816 -0.275881 0.311264 -0.201104 0.726830 -0.142638 0.004862 -0.396232 0.361718 0.759789 0.600353 0.276616 0.481595 0.530486 -0.021135 -0.427107 -0.962847 0.450021 0.010817 -0.005219 -0.187165 0.250191 0.619644 -0.025573 0.706613 -1.074104 0.351092 0.139595 0.212585 -0.666661 0.105476 -0.120602 -0.225246 -0.299257 0.628823 -0.251131 -0.040293 -0.251674 0.300195 0.213880 -1.098847 -0.311876 -0.153639 0.949917 -1.104356 0.201750 -0.193337 -0.338661 0.022337 0.206800 0.376747 0.636552 0.753159 0.608307 -0.293284 0.676096 -1.026875 0.205114 0.902060 0.614731 -0.623506 0.672910 -0.617137 -0.216323 0.394163 0.626978 0.540719 -0.289247 -0.299560 -0.243959 0.748629 0.330045 0.818480 -0.292515 0.321949 -0.374927 0.312775 0.492798 -0.131393 1.230385 -0.176240 -0.897245 0.707612 0.462259 0.043601 0.197108 0.263957 -0.699121 -0.381320 -0.471535 0.290228 0.633146 -0.669520 -0.111823 0.097087 -0.528998 0.646729 -0.130181 -0.405766 0.358769 -0.731676 0.630106 0.981349 0.255194 0.114120 -0.344941 -0.744379 -0.456097 -0.804299 0.053470 -0.004151 -0.207339 0.007507 -0.677043 -0.472630 0.810670 0.230568 0.262293 -1.511637 0.285545 0.510871 0.283492 -0.134064 -0.798028 -0.144438 0.378269 0.052101 0.095595 -0.441604 0.524805 0.539544 -0.591758 0.208986 0.445922 0.467097 0.526505 0.170959 -0.825004 0.800477 -0.007423 0.791431 0.261062 0.261422 -0.424529 0.073018 -0.233863 0.482339 -0.399728 0.132235 -0.515040 -0.257707 0.442806 -0.212239 -0.813916 -0.156790 0.388322 0.287640 0.158958 -0.602147 -0.102177 -0.202181 -0.563902 0.361391 0.414228 -0.273435 -0.364441 0.535297 0.248456 -0.097594 0.253954 0.092237 0.351623 0.508161 -0.777068 0.098121 -0.002248 0.550107 -0.469650 -0.970621 0.271859 -0.053797 -0.254898 0.516755 -1.261775 -0.455550 -0.348304 0.213197 -1.148461 0.482425 -0.044225 0.967063 -0.084164 -0.210776 0.462557 -0.130338 0.125064 -0.133030 0.290976 -0.062123 0.533548 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -4.692971 2.850806 1.564491 -4.519101 9.297000 -1.812679 0.235802 3.317418 0.546947 6.222436 -4.940561 -0.270046 -1.742361 -6.013286 0.191039 -3.229568 -0.607826 4.479797 -1.900234 2.424655 3.481370 -1.209996 1.768586 -2.181223 -2.351054 -6.234169 -1.624843 2.115611 1.762029 -1.654770 1.726275 0.207532 7.405312 -1.096819 5.336897 4.996006 3.082918 6.929765 0.356887 2.273902 1.277792 3.145191 -2.916386 -6.477438 2.179176 -2.283607 -5.419444 -4.009213 3.249962 -6.080899 2.855421 5.324818 -0.636563 -1.835757 -3.942477 4.378151 3.826026 -0.098071 7.003321 1.437147 -3.848797 0.680256 -6.159147 5.447958 -4.563655 3.296128 -0.525394 -6.444688 -1.547317 2.541544 2.148457 -3.686006 -4.426272 3.002192 2.406753 -4.942773 1.174451 -2.750856 -2.576207 -3.929360 -4.049346 1.920783 -0.277475 4.283203 0.149497 1.852045 -0.494699 2.206840 -0.150688 -6.668533 -0.711966 6.377045 -2.815476 0.916641 -3.984386 2.685140 1.085243 -1.354544 -2.775584 -2.217143 1.499910 -0.246363 3.125316 -1.062447 -1.426433 -5.080480 2.074094 2.213953 0.253253 1.501778 0.562207 2.010772 2.337061 4.314783 -3.712814 2.921244 -7.736288 2.216603 -0.999164 1.388206 -1.488762 2.145122 1.351366 2.084596 5.026185 -7.081580 5.305777 -0.051082 -2.735122 -5.030452 1.597780 -0.672065 -2.097740 -1.715359 3.765244 -0.402209 -1.150709 -1.183594 1.588982 -0.141911 -2.736036 -3.289943 0.153662 3.685025 -3.598596 1.944662 -1.674143 -2.777321 -0.485695 2.646065 3.562734 3.608289 7.887156 5.387544 -0.155216 1.467500 -6.624912 0.789937 6.879259 3.025839 -5.371103 5.198722 -3.132845 -0.691074 2.211026 3.871785 2.939948 3.394414 -3.814211 -3.565319 0.424296 -0.357076 6.703950 3.062422 1.073626 -5.367246 3.213572 -0.769945 -0.811429 9.142275 4.625844 -6.669688 1.655428 4.402682 -4.219847 -4.281238 2.836075 -2.938876 -1.687724 -1.871418 1.697713 3.162693 -3.701374 -4.530349 0.145481 -5.591492 6.033290 -1.275947 -1.196587 2.501519 -6.162068 -5.214637 6.591133 0.543364 -2.068927 -3.000460 -4.487500 -1.741207 -7.000986 2.023548 2.639817 -2.283587 -3.145303 -5.033842 0.179758 4.793304 -0.696790 2.572750 -5.032315 -2.477619 3.643181 0.423737 2.837314 -5.195185 -1.120003 -0.750295 0.362396 2.047645 -0.638175 2.514995 7.768748 -4.353900 3.483775 2.242058 -3.104509 1.278483 5.138366 -5.792806 7.688940 -0.266986 3.517334 0.273222 2.530797 -2.524280 0.969907 0.726357 -0.425621 -0.387727 2.421511 -3.843380 -2.335536 1.071143 -4.938233 -2.773332 1.301531 3.582256 0.522745 1.408647 0.526598 -3.095087 -1.769546 -2.609358 0.593280 4.486582 -0.468412 -4.341317 2.770595 2.398851 -2.548087 -2.364611 1.129606 2.546866 5.039373 -6.788262 3.044774 -0.416356 -0.374408 -6.632256 -5.179868 1.495462 -5.042469 -3.868866 2.075705 -6.830845 -2.519685 -3.968106 2.664532 -4.221427 -1.687992 0.928800 6.930414 3.437040 -1.334286 4.279724 -1.707583 4.013242 0.158202 -1.052413 1.550043 5.419838 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.333636 0.404851 0.083052 -0.270090 0.587409 -0.161915 -0.023208 0.457568 -0.120479 0.455551 -0.355326 0.145216 -0.065174 -0.567001 0.063119 -0.071387 0.006592 0.369059 0.027507 0.214440 0.256667 -0.258890 0.040677 -0.191445 -0.161644 -0.622596 0.056927 0.110996 0.200392 0.042978 0.104958 0.098239 0.531649 0.026544 0.421859 0.407911 0.113641 0.472015 0.337250 -0.008834 -0.020888 0.232810 -0.187456 -0.552928 0.171364 -0.175884 -0.226505 -0.321487 0.168258 -0.460482 0.129497 0.334443 -0.022584 -0.067963 -0.397713 0.176527 0.332954 0.032293 0.500469 0.149071 -0.182947 -0.200823 -0.315861 0.324206 -0.340895 -0.063287 0.069303 -0.379346 0.123465 0.210074 -0.008305 -0.059428 -0.065891 0.192483 0.096857 -0.372903 0.125516 -0.134868 -0.416937 -0.249361 -0.233034 0.130116 -0.071302 0.420689 -0.007340 0.093504 -0.143326 0.111360 0.034892 -0.457032 -0.078357 0.395931 -0.147569 0.003356 -0.076722 0.495251 0.304294 -0.067288 -0.060924 -0.126365 0.161521 -0.004127 0.188608 -0.146454 -0.136769 -0.363704 0.201585 0.000723 -0.015283 0.345856 0.062438 0.232820 0.153090 0.306402 -0.306228 0.152761 -0.614433 0.200148 -0.033504 0.084688 -0.073490 0.071031 0.148489 0.087454 0.305632 -0.531728 0.384790 0.152846 0.072036 -0.393706 0.160671 -0.083743 -0.143169 -0.181473 0.291689 0.006188 -0.057288 -0.080881 0.057827 0.018109 -0.292832 -0.345879 -0.047049 0.607943 -0.491644 0.117822 -0.132004 -0.163617 -0.056726 0.086210 0.190952 0.242631 0.504162 0.363128 -0.046278 0.232812 -0.465601 0.054120 0.625176 0.309195 -0.350749 0.350142 -0.164143 -0.127596 0.162728 0.204914 0.251873 0.246386 -0.404347 -0.410432 0.094891 -0.076764 0.477769 0.225904 0.125148 -0.400530 0.481683 0.086894 -0.144130 0.649719 0.207277 -0.443270 0.203706 0.315153 -0.536340 -0.135304 0.153906 -0.208445 -0.014415 -0.155259 0.068876 0.256985 -0.356004 -0.346603 -0.117531 -0.405371 0.431329 -0.042715 0.139891 0.080378 -0.329558 -0.098267 0.515952 0.142460 -0.132611 -0.232811 -0.285546 -0.433945 -0.482273 0.091515 0.134548 -0.249770 -0.182889 -0.369397 -0.140851 0.340270 -0.102808 0.045896 -0.559450 -0.103239 0.275375 0.142698 0.042384 -0.403258 -0.118998 0.048445 0.024776 0.175895 -0.015027 0.412692 0.554860 -0.258100 0.278148 0.188530 0.017731 0.274869 0.370609 -0.430744 0.505147 -0.138435 0.325970 0.122249 0.195147 -0.218745 0.001551 -0.002844 -0.144241 -0.072089 0.184264 -0.291859 -0.111331 0.222331 -0.324965 -0.205725 0.112691 0.248068 0.237359 0.049048 0.046425 -0.237451 -0.083562 -0.274835 0.036073 0.322873 -0.012899 -0.346000 0.173688 0.192487 -0.086228 -0.311111 0.092637 0.190070 0.302405 -0.447954 0.240801 -0.013921 0.001349 -0.427236 -0.428359 0.210119 -0.258485 -0.359505 0.177973 -0.664454 -0.093128 -0.239519 0.201072 -0.618843 0.006339 -0.014343 0.496703 0.033135 -0.080767 0.281168 -0.121672 0.260637 0.051783 0.066518 -0.015122 0.462328 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -11.663153 7.181641 6.509727 -13.430398 26.410512 -3.346888 -1.001049 8.026462 -0.414030 18.627765 -11.050339 -4.994441 -5.622133 -22.450768 1.619999 -13.555748 -4.301467 9.937953 -2.185336 11.980979 9.278667 -7.237819 4.606046 -3.749864 -6.788557 -16.964201 -5.819825 7.309400 11.184859 -7.305173 6.778189 -1.314757 21.260449 -2.120587 16.914058 14.385183 5.932459 17.146296 0.423857 0.391248 -1.096181 9.311304 -10.468764 -16.215788 3.840287 -4.944941 -16.441113 -11.947388 8.478528 -11.565266 1.048048 17.080951 -3.619335 -4.314756 -13.919183 10.701587 6.316702 2.291234 19.340189 3.184427 -6.100495 0.017180 -22.026309 10.485538 -10.120563 6.526056 -3.498847 -12.590106 1.024477 3.143925 1.254019 -9.455689 -8.471258 12.900094 11.033261 -14.292321 3.086803 -10.124462 -14.580775 -11.396253 -11.643295 6.734364 -3.082327 14.127426 1.148927 6.875801 3.045352 9.259675 -3.469956 -21.691494 1.091279 18.386549 -6.729087 -5.639906 -9.421364 15.020888 3.690096 -1.257052 -7.711335 -3.138244 4.820288 -1.793735 10.115542 -5.969190 -1.446798 -19.357052 3.944549 3.101907 2.481876 5.349544 5.927495 3.334652 8.334702 15.315850 -15.934551 7.134242 -19.858929 4.135623 -6.484354 6.361435 -6.831054 9.912856 2.889391 7.858612 14.540823 -22.978519 11.256809 0.585122 -4.883617 -15.449930 3.030831 -4.167932 -5.579368 -3.658737 9.313212 -1.725840 -3.750825 -4.316102 4.029552 3.162775 -6.325025 -4.419593 4.871794 13.276755 -9.947081 5.993719 -3.803634 -7.433805 -1.179569 7.933225 13.236440 12.705916 24.140064 15.446743 -0.940175 3.240650 -18.676365 1.885939 20.285893 -0.396387 -13.983817 17.299556 -9.552724 -3.894249 1.914840 14.082928 12.924478 8.560382 -13.278031 -11.805827 4.161987 1.871034 18.802250 7.119951 1.810718 -10.662502 11.699134 -2.840237 -4.095180 22.521991 10.300401 -15.238537 4.140069 10.041800 -16.618556 -11.240432 9.667849 -7.805072 0.836543 -6.639178 4.861518 9.664844 -7.852718 -10.645566 -2.634400 -15.068223 16.712954 -5.446144 -1.984133 7.421250 -12.983781 -17.755987 18.892816 0.121509 -6.596708 -11.539788 -14.389983 -5.386800 -16.705997 7.459227 5.001752 -5.835962 -7.617451 -14.127611 -0.178442 14.022171 0.776348 9.447667 -14.802582 -5.965243 9.019724 4.398564 10.410703 -9.939107 -1.804931 -1.201105 -0.129482 5.074511 -1.075560 9.209442 23.773486 -11.983978 10.557032 1.444496 -6.646636 4.935864 13.136643 -19.701782 23.506166 1.616515 13.164151 -1.776410 5.866415 -3.982373 3.373167 4.751866 -5.722624 3.499057 4.054056 -6.738844 -7.399829 3.555924 -13.436466 -9.467638 0.294400 9.071332 -1.884335 6.434789 2.077434 -10.214844 -5.175631 -6.804067 4.474598 12.954963 -0.580264 -8.303373 9.720372 7.451742 -1.189722 -4.533881 1.561677 6.833074 12.885074 -20.441709 6.058707 -3.489316 3.129451 -13.061374 -16.015448 4.638717 -12.435623 -7.960324 6.873459 -17.533940 -4.421586 -13.434166 3.952454 -12.307122 -4.791054 3.324500 19.909099 11.529218 -6.265932 7.766014 -6.395991 9.997582 -0.610223 -3.932472 8.026113 13.439065 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.447780 0.289609 -0.021578 -0.444151 0.877866 -0.268878 -0.092580 0.516891 0.260379 0.531389 -0.578159 0.037110 -0.068012 -0.517258 0.042028 -0.005828 0.012439 0.556190 -0.232762 0.067380 0.330150 0.031725 0.157800 -0.326900 -0.181761 -0.532857 -0.085963 0.150454 -0.041964 -0.005938 -0.114409 0.087417 0.691183 -0.068659 0.489916 0.462290 0.322391 0.673305 0.214044 0.311073 0.304653 0.271621 -0.182828 -0.723038 0.242066 -0.267251 -0.380063 -0.429035 0.297033 -0.690195 0.665931 0.384112 0.033193 -0.234906 -0.390682 0.314722 0.337645 0.092791 0.615334 0.199347 -0.460930 0.113673 -0.426777 0.590643 -0.550523 0.382062 0.053024 -0.664230 -0.265529 0.432429 0.409990 -0.360525 -0.444096 0.060970 0.042981 -0.389923 0.184855 -0.172723 0.274927 -0.245136 -0.331371 0.195065 -0.180320 0.352320 -0.035690 0.111991 -0.420212 0.097346 0.141272 -0.436998 -0.227957 0.481738 -0.239950 0.254723 -0.228465 0.148114 0.247556 -0.250952 -0.062319 -0.249169 0.147824 0.037728 0.234864 0.139603 -0.053555 -0.308546 0.366273 0.375374 -0.043512 0.192796 -0.057917 0.286734 0.153139 0.236356 -0.024598 0.221475 -0.851219 0.216453 -0.086879 0.055281 -0.093527 0.094604 0.247531 0.123555 0.334636 -0.532288 0.654491 0.092475 -0.201556 -0.274984 0.277391 0.062864 -0.223980 -0.142141 0.348940 0.037701 -0.114194 -0.003135 0.156323 -0.125074 -0.374515 -0.373478 -0.147300 0.280287 -0.317820 0.152202 -0.155393 -0.246677 -0.000942 0.161594 0.189925 0.188053 0.669715 0.441677 -0.052588 -0.127839 -0.594929 0.147938 0.666223 0.189593 -0.463323 0.373304 -0.183037 -0.035405 0.279461 0.286465 0.098294 0.404811 -0.218079 -0.279244 -0.199810 -0.187842 0.571932 0.320769 0.183165 -0.577561 0.222585 -0.095069 0.048224 0.937939 0.386353 -0.661284 0.022715 0.542943 -0.324422 -0.370488 0.142826 -0.159684 -0.166783 -0.194925 0.200411 0.282061 -0.461643 -0.559653 -0.008053 -0.498123 0.523702 -0.053783 -0.163686 0.090807 -0.601800 0.029965 0.763483 0.176388 -0.161728 -0.120100 -0.358087 -0.157233 -0.739631 0.114370 0.322290 -0.214341 -0.205805 -0.376894 -0.014337 0.468792 -0.244633 0.049988 -0.393470 -0.180218 0.360861 -0.069119 0.102873 -0.613579 -0.137841 -0.072485 0.025769 0.219105 -0.102737 0.175315 0.669817 -0.371584 0.279572 0.621222 -0.052758 0.095783 0.572515 -0.408725 0.650746 -0.142266 0.163121 0.135364 0.267958 -0.245785 0.042270 -0.085058 0.000993 -0.143129 0.323289 -0.509969 -0.175742 0.189499 -0.379968 -0.216468 0.283101 0.441047 0.220219 0.032368 -0.026944 -0.268020 -0.125890 -0.304359 0.024696 0.387433 -0.063805 -0.583949 0.146749 0.352352 -0.480556 -0.368433 0.142930 0.214669 0.549576 -0.553016 0.452056 0.096201 -0.021882 -0.739494 -0.336146 0.143129 -0.331073 -0.328755 0.095255 -0.681314 -0.465255 -0.268514 0.410805 -0.464552 -0.073567 0.028722 0.565460 0.287427 -0.033743 0.424680 -0.115361 0.317460 0.119102 -0.131481 0.028725 0.543650 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.853767 0.622075 0.137437 -0.877656 1.502775 -0.538104 -0.015096 0.684590 0.279461 0.917701 -1.010012 -0.073413 -0.336224 -1.287662 0.104834 -0.396488 0.096124 1.061895 -0.282691 0.541301 0.708097 -0.361858 0.309631 -0.602135 -0.334614 -0.954207 -0.114766 0.313292 -0.007676 0.031713 0.264083 0.228426 1.324046 0.123257 0.957017 0.901704 0.228710 1.543311 0.441501 0.380585 0.337920 0.584036 -0.309530 -1.578624 0.624777 -0.458021 -0.704559 -1.015645 0.508825 -1.351971 0.816509 0.849078 0.039355 -0.414506 -1.023135 0.312508 0.952406 0.372034 1.155483 0.415337 -0.630524 0.167052 -0.863974 0.360735 -0.952279 0.367399 0.325766 -1.100394 -0.149007 0.722383 0.583458 -0.597295 -0.850412 0.118083 0.277712 -0.725174 0.354881 -0.303567 -0.483073 -0.499976 -0.641027 0.244162 -0.284662 0.853588 -0.141882 0.256704 -0.478998 0.140386 0.242498 -0.877878 -0.351972 0.911736 -0.269477 0.310758 -0.305323 0.832728 0.470880 -0.468732 -0.496215 -0.342490 0.312984 -0.035346 0.502847 0.299220 -0.683642 -0.746349 0.728178 0.498434 -0.164092 0.469860 0.225740 0.551398 0.248906 0.451938 -0.628194 0.674771 -1.594746 0.371045 -0.167299 0.179741 -0.147042 0.221823 0.261901 0.150568 0.567819 -1.123635 1.248860 0.322038 -0.215059 -0.694896 0.566791 0.093286 -0.361766 -0.366508 0.789012 0.004670 -0.171456 0.012301 0.095647 -0.145978 -0.483254 -0.636750 -0.239848 1.009162 -0.576988 0.341701 -0.344026 -0.639195 0.017594 0.110302 0.320582 0.370809 1.273250 0.865412 -0.240085 0.008908 -1.079775 0.249584 1.469286 0.530721 -0.898319 0.706465 -0.066431 -0.038644 0.434796 0.477499 0.506911 0.519380 -0.596852 -0.716159 -0.234102 -0.337841 1.040708 0.662360 0.355708 -1.274593 0.746330 0.132320 0.117211 1.756754 0.613177 -1.076091 0.091009 1.004957 -1.111496 -0.705782 0.208033 -0.146952 -0.155668 -0.327291 0.446185 0.472543 -0.886817 -1.139400 -0.277688 -0.991807 0.870447 -0.168051 -0.102809 0.089150 -1.093161 -0.306873 1.439970 0.219612 -0.375296 -0.299107 -0.782952 -0.305909 -1.408327 0.293977 0.465694 -0.437885 -0.447160 -0.694026 -0.079053 0.899602 -0.423862 -0.003237 -0.653976 -0.355215 0.669302 0.054757 0.209359 -1.141605 -0.299186 0.131421 0.144078 0.436145 0.140416 0.429833 1.306395 -0.747258 0.391475 0.905599 0.052077 0.511988 1.121591 -0.832594 1.295280 -0.389797 0.907535 0.109294 0.502158 -0.342305 0.059253 0.042001 -0.092463 -0.243048 0.604820 -0.881228 -0.325500 0.516771 -0.622632 -0.493490 0.508487 0.824788 0.427522 0.147850 0.161201 -0.496669 -0.170251 -0.361953 0.109338 0.785372 0.010115 -1.018367 0.200509 0.710303 -0.502844 -0.658917 0.286301 0.439488 0.987586 -1.083804 0.861834 -0.018671 -0.186895 -1.044943 -0.787068 0.588285 -0.783110 -0.624469 0.454105 -1.354407 -0.519477 -0.547704 0.853228 -0.839723 0.081061 -0.107735 1.028453 0.537854 -0.044317 0.778210 -0.229392 0.617118 0.052658 -0.180160 0.097506 1.250964 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.333636 0.404851 0.083052 -0.270090 0.587409 -0.161915 -0.023208 0.457568 -0.120479 0.455551 -0.355326 0.145216 -0.065174 -0.567001 0.063119 -0.071387 0.006592 0.369059 0.027507 0.214440 0.256667 -0.258890 0.040677 -0.191445 -0.161644 -0.622596 0.056927 0.110996 0.200392 0.042978 0.104958 0.098239 0.531649 0.026544 0.421859 0.407911 0.113641 0.472015 0.337250 -0.008834 -0.020888 0.232810 -0.187456 -0.552928 0.171364 -0.175884 -0.226505 -0.321487 0.168258 -0.460482 0.129497 0.334443 -0.022584 -0.067963 -0.397713 0.176527 0.332954 0.032293 0.500469 0.149071 -0.182947 -0.200823 -0.315861 0.324206 -0.340895 -0.063287 0.069303 -0.379346 0.123465 0.210074 -0.008305 -0.059428 -0.065891 0.192483 0.096857 -0.372903 0.125516 -0.134868 -0.416937 -0.249361 -0.233034 0.130116 -0.071302 0.420689 -0.007340 0.093504 -0.143326 0.111360 0.034892 -0.457032 -0.078357 0.395931 -0.147569 0.003356 -0.076722 0.495251 0.304294 -0.067288 -0.060924 -0.126365 0.161521 -0.004127 0.188608 -0.146454 -0.136769 -0.363704 0.201585 0.000723 -0.015283 0.345856 0.062438 0.232820 0.153090 0.306402 -0.306228 0.152761 -0.614433 0.200148 -0.033504 0.084688 -0.073490 0.071031 0.148489 0.087454 0.305632 -0.531728 0.384790 0.152846 0.072036 -0.393706 0.160671 -0.083743 -0.143169 -0.181473 0.291689 0.006188 -0.057288 -0.080881 0.057827 0.018109 -0.292832 -0.345879 -0.047049 0.607943 -0.491644 0.117822 -0.132004 -0.163617 -0.056726 0.086210 0.190952 0.242631 0.504162 0.363128 -0.046278 0.232812 -0.465601 0.054120 0.625176 0.309195 -0.350749 0.350142 -0.164143 -0.127596 0.162728 0.204914 0.251873 0.246386 -0.404347 -0.410432 0.094891 -0.076764 0.477769 0.225904 0.125148 -0.400530 0.481683 0.086894 -0.144130 0.649719 0.207277 -0.443270 0.203706 0.315153 -0.536340 -0.135304 0.153906 -0.208445 -0.014415 -0.155259 0.068876 0.256985 -0.356004 -0.346603 -0.117531 -0.405371 0.431329 -0.042715 0.139891 0.080378 -0.329558 -0.098267 0.515952 0.142460 -0.132611 -0.232811 -0.285546 -0.433945 -0.482273 0.091515 0.134548 -0.249770 -0.182889 -0.369397 -0.140851 0.340270 -0.102808 0.045896 -0.559450 -0.103239 0.275375 0.142698 0.042384 -0.403258 -0.118998 0.048445 0.024776 0.175895 -0.015027 0.412692 0.554860 -0.258100 0.278148 0.188530 0.017731 0.274869 0.370609 -0.430744 0.505147 -0.138435 0.325970 0.122249 0.195147 -0.218745 0.001551 -0.002844 -0.144241 -0.072089 0.184264 -0.291859 -0.111331 0.222331 -0.324965 -0.205725 0.112691 0.248068 0.237359 0.049048 0.046425 -0.237451 -0.083562 -0.274835 0.036073 0.322873 -0.012899 -0.346000 0.173688 0.192487 -0.086228 -0.311111 0.092637 0.190070 0.302405 -0.447954 0.240801 -0.013921 0.001349 -0.427236 -0.428359 0.210119 -0.258485 -0.359505 0.177973 -0.664454 -0.093128 -0.239519 0.201072 -0.618843 0.006339 -0.014343 0.496703 0.033135 -0.080767 0.281168 -0.121672 0.260637 0.051783 0.066518 -0.015122 0.462328 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -6.182359 -0.075478 1.631123 -6.896857 15.280006 -3.503484 -1.864968 8.675776 -0.285552 8.991822 -5.647592 -0.222629 -3.792312 -12.605539 1.897935 -4.577446 0.177170 5.257334 -1.867964 5.072523 5.806657 -0.628797 2.337587 -2.383017 -2.722140 -7.990126 -2.407797 3.598716 3.718233 -2.269493 2.577799 1.250829 12.215755 0.422301 9.079960 7.801946 5.672541 10.117860 1.430516 1.590088 0.459841 5.499451 -4.734456 -10.032336 3.233362 -3.069879 -8.321594 -5.469322 4.820504 -6.958132 2.583713 8.972763 -1.036778 -1.551419 -8.116128 3.436766 1.880901 -0.404955 9.291904 3.080871 -6.879194 -2.736416 -9.900300 6.850419 -5.948388 4.139908 0.388553 -5.734946 -0.159011 2.961114 2.878983 -6.514850 -5.735464 4.398891 4.245598 -6.531944 3.365921 -3.364241 -0.472129 -4.659389 -5.860178 3.347921 -3.187872 7.560960 -0.547958 2.820442 -1.218884 2.708361 -0.354260 -9.948481 -0.075593 8.651337 -5.055692 -1.135125 -9.182325 7.024449 0.892373 -1.047294 -2.689585 -2.677962 2.546242 -0.683406 5.430072 -1.025607 -2.533342 -8.443388 3.439882 0.574359 1.749666 4.561330 1.156734 1.782175 2.886589 6.175401 -4.467544 5.039595 -11.544403 3.906979 -3.770993 3.567572 -4.901948 4.534922 4.729783 3.273002 6.207455 -10.748457 6.713436 1.368812 -2.022869 -6.552092 2.974236 -1.430572 -4.106013 -1.569435 6.994284 -0.852214 -2.634032 -1.445882 3.754585 1.900955 -5.096701 -4.389636 0.011166 4.969553 -4.881568 2.446911 -2.703823 -4.548231 -0.229751 3.140827 5.289224 6.674850 12.246283 7.576329 -1.865036 2.077210 -10.969441 2.020932 11.895464 0.908774 -7.373547 8.049683 -5.170717 -0.786051 1.446727 7.089316 6.914957 3.910177 -4.404920 -3.204695 2.828659 1.158408 10.196983 4.655059 2.941925 -7.848283 1.700749 -3.152648 1.147947 11.758580 4.823105 -10.067176 2.539167 6.440641 -4.778249 -4.989962 3.024691 -3.011806 -0.796134 -5.009348 4.807501 6.467877 -6.358950 -5.750740 -0.690140 -7.511867 7.137874 -3.122282 -1.062371 3.490185 -8.418244 -5.801125 11.395622 0.620761 -2.362393 -5.167289 -8.603148 -1.539059 -10.457296 4.188490 2.886358 -1.618975 -2.081064 -6.870247 -1.546139 8.598916 0.012878 4.118932 -9.095967 -1.298968 5.191909 0.111288 4.008627 -8.423406 -1.774268 -0.881680 0.334975 4.113399 -2.381174 1.830709 11.467133 -7.231380 6.234717 3.752205 0.399532 1.272398 7.070472 -9.863881 12.480721 0.768907 8.490832 -0.868617 3.574449 -2.589387 1.169175 0.380005 -1.586951 0.721191 2.615612 -5.061692 -3.506641 4.087572 -5.718718 -5.141910 0.937450 5.940728 -0.595403 3.171418 -0.164158 -4.321993 -3.137022 -4.809711 4.619554 7.623043 -2.669913 -6.102495 4.488024 5.653867 -4.590660 -2.348862 1.170617 4.135586 8.581870 -10.863798 3.633953 -0.570065 2.484700 -7.202456 -8.660680 3.474951 -4.232997 -3.861239 2.955086 -9.803461 -5.109638 -6.682460 4.215355 -7.910355 -1.805430 -0.196871 9.454745 5.663533 -1.085194 4.223957 -1.825928 3.401608 -1.150077 -1.361982 5.141663 7.310187 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.963437 0.543775 0.012186 -0.946787 2.221361 -0.677054 -0.052113 1.111587 0.106917 1.169805 -1.067739 0.209439 -0.343595 -1.434244 0.141807 -0.264831 0.183984 1.190049 -0.448032 0.414855 0.731743 -0.140149 0.429255 -0.538208 -0.437646 -1.356124 -0.111586 0.450062 0.087820 -0.081061 0.031414 0.280474 1.649684 -0.121208 1.060147 0.971493 0.617102 1.554398 0.488926 0.184562 0.550146 0.537409 -0.366791 -1.642477 0.574592 -0.470241 -1.158823 -0.929552 0.705221 -1.609952 0.810043 0.993361 0.013877 -0.452838 -0.993354 0.768248 0.970257 0.090025 1.345940 0.407735 -0.980977 -0.152964 -0.985092 1.005740 -1.076994 0.492160 0.028802 -1.410985 -0.414128 0.971426 0.509137 -0.794513 -0.953693 0.200870 0.395296 -0.887236 0.378010 -0.286229 -0.009670 -0.708912 -0.829056 0.360511 -0.486213 0.885039 -0.057271 0.369961 -0.476878 0.170862 0.200889 -1.102020 -0.279160 1.227044 -0.522896 0.375534 -0.681087 0.693681 0.466701 -0.593983 -0.464486 -0.663433 0.295798 -0.128254 0.601638 -0.045452 -0.321079 -0.884237 0.640898 0.546575 0.126979 0.709278 0.003019 0.515855 0.267451 0.575525 -0.529816 0.649310 -2.005665 0.537955 -0.300546 0.164300 -0.365737 0.285373 0.585401 0.430231 0.794797 -1.456238 1.471112 0.225001 -0.314348 -0.774547 0.567623 0.189645 -0.363522 -0.337883 0.947369 -0.172462 -0.210125 -0.001139 0.389562 -0.081677 -0.830813 -0.694753 -0.310999 0.972601 -0.987138 0.460677 -0.359837 -0.651681 0.069603 0.263855 0.516360 0.574805 1.584401 1.018506 -0.254988 0.309748 -1.498435 0.381342 1.668113 0.603756 -1.023958 0.948081 -0.423223 -0.081871 0.469501 0.715171 0.506847 0.702753 -0.635890 -0.717462 -0.111832 -0.144411 1.275552 0.717192 0.367429 -1.529809 0.539955 -0.168540 0.270512 2.039148 0.850907 -1.477237 0.292690 1.221785 -1.007148 -0.782436 0.296893 -0.490128 -0.371553 -0.496822 0.556395 0.765453 -1.051418 -1.191763 -0.076511 -1.055580 1.001501 -0.222295 -0.449941 0.258286 -1.252145 -0.235422 1.698469 0.287016 -0.270545 -0.386002 -1.115205 -0.509352 -1.651678 0.263974 0.560209 -0.463109 -0.414126 -0.867532 -0.272649 1.160618 -0.292357 0.231288 -1.323888 -0.169458 0.849516 0.228135 0.247660 -1.280946 -0.258666 0.059354 -0.028690 0.358205 -0.181195 0.430118 1.380492 -0.927940 0.727950 0.783176 -0.260820 0.462050 1.186381 -1.010519 1.553239 -0.172821 1.129680 0.248395 0.566928 -0.478210 0.214324 -0.121224 -0.181385 -0.378202 0.680120 -1.128756 -0.487839 0.603568 -0.678436 -0.873096 0.424174 1.042469 0.410663 0.181012 -0.108007 -0.526513 -0.310928 -0.600761 0.288794 0.821225 -0.264951 -1.112936 0.421695 0.876828 -0.819974 -0.783675 0.338285 0.591495 1.150455 -1.319613 0.931929 0.071396 0.090784 -1.478687 -1.009560 0.545074 -0.820140 -0.768543 0.365908 -1.707294 -0.870267 -0.619450 0.952787 -1.120719 -0.091204 0.047968 1.330743 0.487957 -0.059012 0.978363 -0.250189 0.505338 -0.007744 -0.109641 0.170928 1.223353 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -2.843163 2.012313 -0.028044 -3.367967 6.942927 -1.192090 0.005672 2.425800 -0.545789 3.377734 -3.474968 0.761016 -0.923209 -4.926983 0.349106 -1.141483 -0.012147 2.916429 -1.295870 2.089586 2.243979 -1.546829 1.514444 -1.867344 -1.333115 -4.114222 -0.317220 1.374978 1.038110 -0.122947 0.712219 0.034217 4.225871 -0.412419 2.458966 2.454713 1.418213 4.776340 0.784799 -0.266022 1.326682 1.764867 -1.122438 -5.004070 1.821888 -1.699969 -3.951881 -2.928658 2.046812 -5.168124 1.146444 3.187012 0.062721 -1.968646 -3.285453 2.530920 4.145341 0.190384 4.012657 1.147948 -2.170189 -1.058156 -3.335626 1.659478 -2.834101 1.417333 0.559674 -3.680061 -1.006138 2.743859 0.630755 -2.096799 -2.926955 0.581130 1.823623 -2.647018 1.136553 -1.449362 -1.667247 -2.552599 -1.820066 0.820857 -1.509624 2.964211 -0.287255 1.244436 -0.192454 0.543065 0.481811 -3.315240 -1.095267 3.732485 -1.050788 0.455796 -1.902777 3.269587 1.196943 -1.775836 -2.389422 -1.393956 0.834441 0.258807 1.787359 -1.083162 -1.448776 -3.572003 1.909001 1.643722 0.265512 2.139652 0.286575 1.210042 0.258734 1.833562 -2.879686 2.509817 -5.849678 0.665324 -0.797262 1.208531 -1.358540 0.874422 1.730769 1.383912 2.208332 -4.413213 4.954431 0.792787 -0.973106 -2.642823 1.795089 0.507505 -1.079023 -0.550771 2.347419 -0.669133 -0.552976 0.089665 1.109981 -0.151652 -2.648740 -1.707815 -0.434189 3.756468 -3.389587 1.421880 -0.934813 -1.835856 0.287982 0.638935 1.700613 1.182124 5.067093 2.891838 -0.576160 2.235455 -3.946543 1.529090 5.788976 2.226606 -3.114836 2.537204 -1.105338 0.108664 1.127422 1.622261 1.894108 2.358814 -2.695291 -2.482742 0.388863 -0.764300 3.689135 2.213085 1.199976 -5.363389 2.633405 -0.267534 1.224421 5.880665 2.914279 -4.243774 1.291669 3.491995 -3.853437 -1.878952 0.672947 -0.810799 -0.728202 -1.186606 1.679694 1.891238 -2.679623 -4.471959 -1.402744 -3.166769 3.118657 -0.756096 -0.949250 0.563784 -3.045173 -1.025949 4.560821 0.551891 -1.480464 -1.260357 -2.970439 -2.239779 -4.796401 0.963761 1.526464 -1.948758 -1.650566 -2.596126 -0.797956 3.461221 -1.178264 0.180884 -4.632982 -0.588112 2.275228 1.567018 1.280081 -3.334879 -0.738450 0.084199 0.053516 1.166246 -0.268820 1.588378 4.575493 -2.831021 2.326055 0.928409 -0.636753 1.763463 4.194641 -2.654274 4.773241 -0.328997 4.979332 0.013435 1.862344 -1.023535 0.932900 -0.079621 -1.363261 -0.409244 2.096517 -3.270116 -1.515215 2.123323 -1.777642 -2.878152 1.697474 2.985727 1.367861 0.671870 -0.020320 -1.374282 -0.982019 -1.253343 0.494297 2.454182 -0.892019 -3.409792 0.545111 2.763283 -1.516706 -2.280838 1.046056 1.874006 3.433280 -3.832040 3.040741 -0.244146 -0.188261 -4.243906 -3.016401 1.880308 -2.371521 -2.360928 1.982289 -5.072877 -1.899611 -2.016071 2.848764 -3.331945 -0.365059 -0.115793 3.681779 1.555955 -0.102924 2.902993 -0.783153 1.900940 -0.341125 -0.168736 0.846364 3.458756 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.996814 0.615370 -0.358576 -0.798471 2.391472 -0.810960 0.133386 1.423019 -0.750498 1.285170 -0.915416 0.783707 -0.183117 -1.728746 0.290749 0.294308 0.398798 1.205259 -0.112272 0.575233 0.701072 -0.454845 0.287938 -0.430642 -0.507180 -1.567427 0.173042 0.539137 0.631639 -0.421590 -0.086353 0.468408 1.813078 -0.270014 1.185808 1.149442 0.782510 1.324973 1.000503 -1.017290 0.366473 0.529303 -0.452891 -1.544639 0.449939 -0.351242 -1.175739 -0.765797 0.731082 -1.189877 0.278835 1.090376 -0.044988 -0.261058 -1.269115 0.873855 1.183754 -0.559711 1.516776 0.402001 -0.826286 -0.666901 -0.737233 1.569505 -1.056751 -0.194028 -0.138254 -1.315491 -0.020064 0.997094 0.241891 -0.867977 -0.745810 0.402218 0.411143 -1.160590 0.380038 -0.188990 0.056415 -1.366438 -0.942431 0.396634 -0.634398 1.192239 0.037482 0.386552 -0.415534 0.183883 0.155751 -1.341713 -0.159207 1.137457 -0.682924 0.190618 -0.721601 1.141679 0.665572 -0.530423 -0.522818 -1.016127 0.324855 -0.360854 0.651072 -0.449721 0.380431 -0.734780 0.066043 -0.091046 0.373191 1.281011 0.168039 0.577702 0.408358 0.723319 -0.507820 -0.018846 -1.999321 0.698712 -0.221922 0.153874 -0.463666 0.278997 0.947986 0.375109 1.029203 -1.791002 1.243985 0.267425 0.109113 -1.074554 0.468349 0.135668 -0.368766 -0.458710 1.077862 -0.315198 -0.138027 -0.069376 0.598259 0.239973 -1.219488 -0.713418 -0.304466 1.609881 -1.767659 0.511308 -0.391722 -0.604059 0.029987 0.244875 0.666780 0.881444 1.580750 1.190516 -0.352775 1.343916 -1.766363 0.419342 1.828401 1.024304 -1.068795 1.171856 -0.892493 -0.320980 0.539203 0.901628 0.707988 0.254325 -0.937158 -0.807236 0.801052 0.055411 1.479680 0.147059 0.349749 -1.454197 0.753950 0.275462 0.043759 2.136543 0.414258 -1.733067 1.115503 1.262530 -0.781711 -0.421240 0.415907 -1.029927 -0.628667 -0.649641 0.580874 0.986464 -1.182655 -0.820957 -0.165425 -1.033197 1.053539 -0.229265 -0.630324 0.444830 -1.063816 -0.003798 1.698851 0.341954 -0.086099 -0.668165 -1.246644 -0.784787 -1.695766 0.222246 0.315849 -0.595423 -0.325499 -1.154256 -0.675148 1.371027 -0.115303 0.312897 -2.416692 0.202304 0.961563 0.749517 0.029758 -1.382642 -0.240184 0.394732 0.060731 0.089804 -0.533742 0.776799 1.272464 -1.133732 0.641191 0.339077 -0.148049 0.863280 0.906407 -1.322094 1.640412 0.071525 1.638220 0.446000 0.550926 -0.753294 0.196160 -0.228353 -0.044164 -0.561074 0.474595 -1.188937 -0.527670 0.854038 -0.489747 -1.327961 0.215643 1.077839 0.516397 0.175952 -0.412496 -0.282343 -0.335815 -0.838654 0.451964 0.854138 -0.499573 -0.955819 0.708733 0.943654 -0.565580 -0.422702 0.297722 0.783299 1.085295 -1.474744 0.837393 -0.065016 0.540113 -1.377080 -1.675853 0.829151 -0.681957 -0.755022 0.640752 -2.175562 -0.836321 -0.682577 0.850783 -1.778086 0.179207 0.075656 1.560859 -0.016363 -0.112769 1.031784 -0.321604 0.376636 -0.242960 0.329173 0.024272 1.130303 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -1.418512 0.933787 -0.046781 -1.304632 3.501401 -1.014946 0.338721 2.178307 -0.806459 1.788065 -1.582674 1.193335 -0.142411 -1.924459 0.264726 0.048273 0.279710 1.682374 -0.540574 0.583704 0.956702 -0.046452 0.431312 -0.778407 -0.791365 -1.998400 0.079308 0.660191 0.424277 -0.210049 -0.125535 0.494489 2.415774 -0.522177 1.618191 1.559904 1.286221 1.889076 0.925524 -0.518493 0.897780 0.642260 -0.585101 -2.115982 0.513226 -0.621714 -1.789938 -1.084936 0.981871 -2.166510 0.919367 1.398794 0.072405 -0.542323 -1.336226 1.521872 1.389830 -0.861195 2.011358 0.592608 -1.704922 -0.563126 -1.205227 2.466709 -1.408125 0.534586 -0.167176 -2.067421 -0.488205 1.562226 0.767528 -1.361067 -1.240287 0.383866 0.420045 -1.511989 0.504476 -0.403468 0.410367 -1.445709 -1.003103 0.640005 -0.641668 1.320597 0.050056 0.491878 -0.904203 0.253580 0.242249 -1.717927 -0.492761 1.939203 -0.999792 0.449080 -1.704009 0.854763 0.805093 -0.801696 -0.571399 -1.414913 0.511144 -0.148856 0.799381 -0.821788 0.205714 -1.118423 0.277497 0.609120 0.304981 1.489089 -0.564323 0.978656 0.557183 0.905561 -0.313033 0.602825 -2.883642 0.980221 -0.421653 0.170108 -0.635370 0.228878 1.199868 0.760818 1.334352 -2.173215 1.980379 0.235595 -0.402594 -1.382892 0.719589 0.277132 -0.586564 -0.523747 1.300110 -0.189700 -0.223123 -0.053366 0.833062 -0.009346 -1.450706 -1.478949 -0.379363 1.542368 -2.090022 0.628997 -0.475132 -0.580929 -0.054088 0.618718 0.949470 0.931539 2.235319 1.502411 -0.147355 1.191524 -2.341187 0.499147 2.300608 1.424441 -1.503155 1.562633 -1.212437 -0.361938 0.732144 1.098636 0.515409 0.933180 -1.331216 -1.174725 0.571196 -0.221738 2.060823 0.788914 0.402643 -2.100246 0.824565 -0.517076 0.138522 2.825506 1.236105 -2.465799 0.946072 1.805806 -0.720927 -1.022796 0.644771 -1.383609 -1.111207 -0.590685 0.653971 1.173521 -1.494746 -1.382901 0.028010 -1.468080 1.588982 -0.262581 -0.952689 0.297232 -1.596067 -0.192457 2.315987 0.479864 -0.284140 -0.602796 -1.459138 -0.948617 -2.443843 0.261784 0.905490 -0.681836 -0.702636 -1.480422 -0.595525 1.603957 -0.512167 0.446467 -2.613240 -0.162907 1.339202 0.527037 0.257965 -2.261917 -0.320653 -0.091013 0.103521 0.348475 -0.794783 0.892644 1.947436 -1.351338 1.191786 0.981634 -0.587240 0.616051 1.524182 -1.631803 2.246209 0.082401 1.740012 0.633891 0.784832 -1.024364 0.213502 -0.429540 -0.037292 -0.718317 0.913439 -1.750551 -0.676855 0.726420 -0.951128 -1.407910 0.600334 1.541557 0.430399 0.130011 -0.303034 -0.536892 -0.638130 -1.512501 0.372609 1.159444 -0.909230 -1.598006 0.876747 1.264637 -1.419252 -0.657912 0.407502 1.134343 1.582194 -1.944213 1.323803 0.093236 0.406379 -2.513074 -1.990776 0.902888 -1.185707 -1.357556 0.369574 -2.601455 -1.508174 -0.903202 1.293881 -2.341493 -0.465931 0.378007 2.137572 0.196326 -0.031811 1.439094 -0.456982 0.756706 -0.074434 0.327314 0.079318 1.514267 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -2.996586 1.971583 -0.280789 -3.017193 7.582421 -1.638321 0.667062 4.190467 -2.069325 3.906652 -3.379513 2.666081 -0.288304 -4.254140 0.474377 -0.007259 0.287490 3.192872 -1.235286 1.427265 2.008795 -0.520565 1.229950 -1.689522 -1.717578 -4.494636 0.239887 1.456420 1.402166 -0.297199 -0.108350 0.493897 4.692192 -1.420085 2.784464 2.929022 2.790994 3.854460 1.548132 -1.644324 1.852190 1.389800 -1.281440 -4.361461 1.083704 -1.459794 -4.085760 -2.180026 2.254399 -4.779373 0.981918 3.038756 0.106663 -1.631868 -2.867919 3.570412 3.395802 -2.131223 4.300939 1.051812 -3.194618 -1.834461 -2.750800 5.069912 -2.964898 1.139599 -0.368330 -4.191788 -1.209337 3.334016 0.817450 -2.362658 -2.577602 0.829366 1.331080 -3.281697 0.915907 -1.175534 0.457239 -3.087330 -1.712224 1.194677 -1.436639 2.854120 0.144220 1.190001 -0.999375 0.624816 0.499416 -3.660327 -1.114328 4.128846 -1.833723 0.622326 -3.572123 2.055810 1.646078 -1.894729 -1.510567 -2.650310 0.894178 -0.017370 1.772819 -2.494081 0.460195 -2.796247 0.433231 1.307733 0.833762 3.099217 -1.349685 1.723380 0.686803 1.992008 -1.124630 1.282610 -5.903598 1.593385 -0.805663 0.710360 -1.613303 0.545591 2.657715 1.721352 2.863355 -4.647069 4.452795 0.379336 -0.906194 -3.028125 1.539559 0.771409 -1.066083 -0.733140 2.493927 -0.720077 -0.514116 -0.053348 1.997179 0.104428 -3.323720 -2.687959 -0.566367 3.345607 -4.595270 1.488340 -0.953992 -1.163039 0.102431 1.240099 2.092208 1.768613 4.816750 3.205440 -0.157629 3.495463 -4.677580 1.387163 5.087519 3.118591 -3.175839 3.158926 -2.763234 -0.639179 1.413012 2.058962 1.215471 2.426777 -2.993808 -2.465222 1.521045 -0.529712 4.314904 1.676565 0.875908 -4.826172 1.914684 -1.191024 0.770143 5.653590 2.855712 -5.256137 2.535568 3.793421 -2.008757 -1.925115 1.185015 -2.681400 -2.197820 -1.255958 1.402384 2.511421 -2.935417 -3.285838 -0.535447 -3.027520 3.478669 -0.625953 -1.999617 0.815407 -3.015657 -0.553676 4.353982 0.926403 -0.869147 -1.482178 -2.944761 -2.570147 -5.143594 0.651431 1.838412 -1.862350 -1.648094 -3.212087 -1.420968 3.303464 -1.000715 0.823812 -6.250148 -0.145025 2.761606 1.787126 0.834057 -4.260028 -0.542611 -0.244822 0.123289 0.684862 -1.748587 1.858970 4.000780 -3.026698 2.709721 0.952661 -1.533052 1.462245 3.340451 -3.256180 4.799505 0.498570 4.125053 1.035644 1.712498 -1.914372 0.883120 -0.839788 -0.730562 -1.100303 1.882192 -3.806699 -1.654342 1.796563 -1.904357 -3.170290 1.379797 3.291661 1.123480 0.364851 -0.577741 -0.991727 -1.416232 -2.864578 0.586490 2.407889 -2.039123 -3.376695 1.566270 2.782338 -2.743238 -1.639878 0.911633 2.511871 3.254033 -4.100502 3.005262 -0.037344 0.687642 -5.333784 -4.117598 1.943709 -2.293992 -2.876024 1.231974 -5.514323 -2.891013 -1.982449 2.753372 -4.807398 -1.173380 0.691375 4.358644 0.305702 0.093605 3.208587 -0.966648 1.651117 -0.363087 0.743171 0.422414 2.906238 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.540843 3.835491 1.398661 -4.439916 7.782391 -1.515560 0.762492 3.212520 -0.350939 4.839010 -5.513305 -0.014228 -1.809949 -6.037879 0.198928 -2.409299 -0.250969 4.905802 -1.543480 3.188220 3.793446 -2.121971 1.592226 -3.206487 -1.875367 -3.974096 -0.920989 1.289453 0.678794 0.481294 1.548744 0.281164 6.256245 0.399938 4.687372 4.464140 1.117729 7.993245 1.247956 1.792318 0.965658 3.484982 -2.137073 -8.010302 3.348709 -3.143070 -3.631244 -5.152706 2.512148 -7.104135 4.136017 4.360176 0.070699 -2.307200 -4.609902 2.047555 5.492069 1.323677 6.290942 1.910518 -3.280372 0.742590 -4.893827 1.644343 -4.105079 2.996804 1.871183 -5.788352 -0.785961 2.658880 3.521270 -3.748745 -4.894006 1.415403 1.301017 -3.859737 1.725008 -2.239156 -3.887697 -3.077520 -3.321712 0.842545 -1.458698 4.489120 -0.869576 1.099198 -2.416611 1.059184 0.987027 -5.066746 -2.024300 5.389178 -1.177965 1.885176 -2.909590 3.751042 1.486471 -1.592850 -3.563508 -1.082378 1.714573 0.974872 2.588957 -0.006264 -3.698429 -4.633328 3.658973 2.842678 -0.984179 1.943989 1.332326 2.828890 1.755882 3.020601 -3.784402 4.042572 -7.529809 1.380886 -0.631133 1.368537 -0.819663 1.527267 0.618136 0.410646 3.466527 -5.843606 6.155179 1.181929 -2.099727 -4.387621 2.808728 -0.279205 -2.154295 -1.735521 3.616977 0.217320 -1.149441 -0.610803 0.248940 -1.005194 -2.950147 -4.053762 -0.551405 5.144535 -3.306721 1.409443 -1.963928 -3.158620 -0.096881 1.351117 2.027908 2.078268 6.406883 4.683742 -0.492681 0.362378 -5.275450 1.237124 7.475092 3.915199 -5.149983 3.403063 -0.628101 0.100476 2.629027 1.889588 2.721598 3.311138 -3.754066 -4.165723 -0.582125 -1.780734 5.561030 4.497567 2.060032 -6.399159 4.420861 -0.100485 -0.206024 8.581183 3.704295 -5.323345 0.338707 4.251923 -4.980629 -3.406312 1.241174 -0.922770 -1.144917 -1.236918 1.497300 2.141258 -4.078214 -6.269698 -1.449810 -5.393651 5.474683 -0.814590 -0.057695 0.307878 -5.764614 -2.422370 6.640742 0.950277 -2.740972 -1.788886 -3.260151 -2.083669 -6.877392 1.892945 2.649861 -2.315237 -3.727808 -4.157884 0.176797 4.047740 -2.004369 0.044504 -2.886655 -2.800321 3.203470 -0.070145 2.209585 -6.741148 -1.600210 -0.456973 1.019004 3.032155 0.924071 2.715758 7.623884 -3.818623 2.219170 4.669464 0.243238 1.945161 6.104343 -4.168754 6.397223 -1.981976 5.229337 -0.192552 2.753477 -1.600653 0.426173 0.586601 0.310091 -0.337359 3.424089 -3.918454 -1.621676 1.769006 -4.202468 -1.913143 2.657121 3.413784 1.725452 0.822264 1.066205 -2.743622 -1.351507 -2.030934 -0.430359 4.425942 -0.502627 -5.367701 0.793909 2.190541 -2.281793 -2.477204 1.445045 2.240926 4.807200 -5.577792 3.866064 -0.593234 -1.929579 -5.846465 -3.984748 2.272053 -4.231764 -3.989918 3.308097 -6.187586 -1.865989 -3.119612 3.624436 -4.507218 -0.721615 -0.604677 5.300928 2.893988 -0.069787 4.048802 -1.144271 4.457466 0.303053 -0.903252 0.590100 6.348234 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.665224 5.008764 5.603172 -3.106199 3.248075 1.080114 0.497191 1.800032 -3.161878 3.584341 -3.709666 1.049472 -0.861515 -3.001231 0.042727 -3.772366 -2.014477 0.708150 0.311125 4.099331 2.124253 -3.067841 0.212591 -1.922642 -2.104744 -3.042387 -0.260285 0.676649 3.129923 0.072352 3.071474 -0.752611 3.304924 -0.145337 3.720465 2.795907 0.877649 4.461425 0.590632 -1.273561 -1.503826 2.497884 -2.564594 -3.345759 1.282935 -2.233912 -1.141306 -2.039835 0.965171 -2.261285 0.380982 3.226389 -0.635922 -1.731225 -3.057757 2.782441 1.992736 -0.106989 4.683376 0.544698 -0.820785 -1.455148 -4.871030 1.600750 -2.122363 2.170456 -0.817515 -1.285203 1.862078 -0.309393 0.314642 -0.481605 -1.589363 3.202830 0.884738 -3.572012 1.014500 -2.859808 -6.398476 -2.158673 -1.672291 1.671448 1.164570 3.211356 -0.138709 1.381020 -0.404005 2.863394 -0.872088 -4.955349 -0.372079 3.506566 -1.637773 -1.461368 -1.883309 4.342521 -0.102727 0.442564 -2.367073 0.684163 2.539856 0.887200 1.701907 -5.243079 0.632884 -5.613049 2.335209 1.884899 -0.597908 1.441604 1.430699 3.398940 3.408173 3.969297 -3.315810 1.663554 -3.998454 -0.988603 0.695427 0.765763 -0.948664 2.250797 -2.313991 1.028086 3.495749 -4.868139 2.945021 0.645279 -1.723466 -3.357000 0.771842 -1.800327 -1.351257 -1.806867 1.550064 1.053652 -0.885428 -1.249381 -0.480656 -0.146515 -1.351076 -4.195555 1.828262 5.009278 -3.168591 0.596066 -1.040693 -1.070011 -0.707879 2.537855 2.851420 1.991717 3.560199 2.829564 0.897888 0.194236 -2.626512 -0.307214 3.610639 1.411302 -4.195238 3.807215 -2.495663 -1.518823 0.809411 1.557749 2.715045 2.758651 -5.650079 -6.485520 1.765508 -0.966621 4.250460 2.143889 0.389117 -2.263117 6.066768 -1.570342 -2.892060 3.922359 1.632815 -1.710642 -1.809334 1.501426 -4.132885 -2.546883 2.456852 -2.034826 0.547996 0.018763 -1.211587 1.397085 -1.281144 -3.417101 -1.386780 -4.244316 5.342493 -0.423635 1.867036 -0.681369 -2.127191 -5.467753 2.745585 -0.175970 -2.969302 -2.863346 -1.344235 -2.379759 -3.520111 1.496099 2.015756 -0.993258 -3.880040 -3.718821 0.488202 -0.066902 -1.000263 0.506067 -3.355541 -4.029796 1.996053 0.162775 2.203787 -1.532953 -0.875947 -0.854609 0.289396 2.573532 0.319387 5.309956 6.453726 -1.735501 3.836776 0.920498 -2.059793 0.817837 4.045798 -3.705163 4.783687 -1.628005 2.138987 -0.603667 1.673547 -1.984819 -0.143628 1.668202 -1.833568 1.268774 0.799091 -0.567116 -0.899284 -2.463970 -3.932065 -0.206919 0.827412 0.513018 -0.470060 0.907429 2.434575 -1.157131 -2.288483 -2.490606 -0.613087 3.139930 -0.771964 -1.646191 1.744504 -0.061723 0.755031 -0.023709 0.464100 1.369809 2.408973 -4.201413 1.159509 -1.357796 -1.591868 -4.064031 -2.998964 0.525046 -3.190658 -2.837274 2.448608 -3.653146 1.028360 -2.708374 0.484957 -2.486868 -1.385410 1.104450 4.194125 1.480308 -2.664996 1.861017 -2.050774 4.311580 1.507592 -0.564361 -0.012083 2.908270 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.371601 15.536407 12.067298 -12.703132 16.658549 -2.634691 2.616260 5.583930 -2.308106 13.698033 -15.111136 -0.936154 -5.938940 -16.061354 -0.115679 -13.192988 -3.186342 12.426813 -1.526397 13.831631 10.768338 -9.110802 3.032750 -9.148500 -5.965060 -12.436525 -3.427079 2.979475 3.343116 0.717627 11.699088 -0.421294 17.140150 3.133583 15.086187 13.987252 -0.863354 23.106121 3.201390 6.071708 -1.544101 10.832769 -7.838940 -20.742875 9.003482 -8.285492 -7.062233 -15.373384 5.376921 -17.824892 6.067464 12.899901 -0.709944 -5.070990 -13.697451 4.582138 14.536254 6.072959 17.583810 4.715052 -5.431464 5.211061 -15.929483 -1.615450 -10.048218 6.689052 4.350678 -12.461876 3.027281 3.123198 8.251605 -8.232178 -10.163872 7.026403 3.712700 -11.721487 4.216525 -8.093347 -22.887973 -9.120825 -8.535896 2.794856 1.081789 12.898657 -1.924544 3.585877 -4.929051 5.863491 1.422686 -15.635098 -4.293866 14.628901 -2.435729 0.281974 -4.138342 15.358584 4.770615 -1.829215 -9.696215 -0.051342 6.358730 2.111058 7.422346 -0.705519 -11.912035 -15.330534 8.934762 6.371395 -5.128445 4.832353 4.301831 10.678195 8.159517 10.668374 -15.071550 13.029909 -19.457284 2.918390 -2.875187 4.057462 -0.621307 5.493506 -3.365805 1.930779 10.163894 -16.578179 14.863351 3.895560 -5.183834 -13.982695 7.244692 -3.568563 -5.569751 -6.730988 9.024267 2.584406 -2.872869 -3.461475 -2.239792 -2.729003 -2.077158 -13.379745 1.442078 18.188349 -8.390953 3.632995 -5.387578 -8.225423 -1.638896 4.065256 6.302242 6.254494 17.972209 12.966516 -1.021372 -1.093686 -12.521487 -0.663499 19.523287 10.221947 -13.853269 10.840040 0.932269 -2.267858 6.030395 5.455300 9.787452 8.413243 -15.781159 -18.121033 -1.143594 -6.030126 15.837495 12.473436 3.656744 -15.032785 19.052834 0.806089 -5.552389 22.254978 8.892738 -11.284145 -1.458840 9.418647 -18.187151 -12.093844 5.489781 -2.147003 -0.793624 -1.017683 1.386855 3.685170 -9.024307 -16.802944 -5.150147 -16.476260 16.183703 -2.194385 3.946278 0.537766 -13.958158 -14.949641 16.374037 2.364554 -9.705059 -7.452784 -7.931316 -4.610488 -17.709472 6.675541 6.563218 -5.631197 -11.703580 -11.838893 3.061633 7.152241 -5.667769 0.354314 -5.177566 -12.791526 7.789826 -1.169917 7.291975 -17.254696 -4.387887 -1.030393 3.761387 9.219783 6.238670 12.252460 25.057628 -9.309401 5.637964 11.089841 -0.976611 6.335375 17.860274 -14.121813 17.933367 -7.823063 14.634845 -1.491153 6.705444 -4.726446 -0.125316 5.426710 -1.835458 1.493646 7.386126 -7.205118 -3.972047 1.213523 -13.235471 -1.850657 6.101212 6.434132 1.719763 3.057533 7.798645 -9.542347 -3.153248 -4.843700 -2.521832 13.485407 1.602497 -14.027991 3.432771 4.423022 -1.577841 -7.169705 2.637534 5.724827 11.140483 -16.231368 9.154091 -3.957485 -7.293227 -13.886324 -11.095235 8.112521 -14.606374 -12.017427 9.389103 -15.008059 0.092937 -10.024614 7.351834 -11.214578 -2.934143 -0.378086 14.145820 9.465078 -3.710015 9.074351 -5.449982 15.302459 2.575489 -2.845031 0.056018 19.080231 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.482172 7.756869 2.708711 -9.329712 14.269048 -4.231595 0.570140 9.051831 -0.940960 9.501110 -8.437224 1.919267 -2.446266 -12.262865 0.519661 -4.979759 0.159758 9.994209 -2.054965 8.881626 6.775751 -4.004968 2.541770 -4.564640 -4.858703 -7.520278 -0.499213 3.610226 1.690795 -1.857222 5.034199 1.058509 13.250848 1.230456 11.918692 9.210114 2.943215 13.872108 4.985512 1.286428 0.509343 5.051253 -4.088014 -13.340246 4.794027 -3.815497 -7.641690 -8.521009 4.384219 -12.140839 4.991090 9.142365 0.155939 -2.340832 -9.100551 4.066854 7.386037 1.202773 11.527602 3.402826 -6.848804 0.602649 -9.377799 3.063342 -6.711850 2.938516 1.764516 -8.459944 1.021510 4.914196 4.652278 -7.429608 -6.266457 4.134091 3.726987 -8.366830 4.040373 -4.422954 -7.213714 -7.475861 -5.296181 3.550761 -0.939300 8.569691 0.086118 4.114404 -3.882871 3.420237 -0.552519 -11.366838 -0.394084 8.944419 -4.321138 0.047165 -5.155202 10.530705 2.372218 -2.345695 -6.852452 -4.151558 4.666252 -0.414265 5.244075 -0.809879 -4.538103 -8.753488 4.272026 4.025398 -1.295318 5.842380 2.708477 6.651356 6.030855 7.794800 -7.100479 7.458970 -14.976496 3.698327 -3.823621 2.415524 -2.228254 3.289569 2.864464 3.803978 7.045397 -12.183309 10.715259 3.810809 -2.851050 -9.097721 4.999480 -1.265104 -3.001420 -4.531502 7.523531 -0.402991 -1.064090 -2.196834 1.212801 -0.679571 -4.037732 -8.026184 -0.303058 10.020800 -7.770813 3.363194 -2.978306 -5.107524 -0.621967 3.134810 5.579503 4.706676 13.314434 7.637484 -2.013595 1.771132 -10.527069 0.203869 13.694072 6.656940 -8.772330 9.285350 -1.811071 -2.060128 2.603441 6.060310 6.388258 3.522812 -9.904741 -10.473417 2.066364 -1.402287 11.301914 4.310066 1.396410 -10.515067 9.558020 0.259638 -1.702042 16.854670 5.437015 -9.739686 0.481749 7.633941 -8.782360 -7.380917 4.227253 -4.489618 -2.397899 -1.552671 3.115347 4.026060 -7.236282 -9.834476 -1.738261 -10.089517 9.201937 -1.868816 -1.703728 0.143483 -9.984356 -4.007836 13.806959 1.929328 -5.356895 -4.178080 -7.915441 -2.017664 -12.793625 3.113181 4.549406 -2.484161 -4.402087 -7.356795 -0.876273 6.713386 -2.536160 0.731619 -8.392094 -5.547510 6.983353 -0.754353 3.196297 -11.951135 -2.126768 0.470671 1.963696 4.348594 0.797973 6.674099 14.200293 -6.760087 4.438222 6.292233 -1.145124 5.100814 10.408375 -10.948434 14.474711 -2.992752 10.782761 1.117211 4.123439 -4.513429 0.750525 1.033699 -0.693004 -0.904585 4.779840 -6.521874 -3.639167 1.726615 -5.605757 -5.020010 2.652291 6.582733 -0.573315 2.415586 2.248620 -4.849473 -3.434463 -6.004243 1.375951 8.007223 -1.410818 -8.595915 4.371710 6.190341 -1.526590 -2.978588 1.933663 5.653777 9.328670 -11.758704 6.489456 -1.356268 -0.823150 -10.311768 -9.501139 6.677201 -8.456831 -5.075474 3.283561 -12.411189 -3.949339 -6.255585 6.315806 -8.914491 0.801392 1.964840 10.924163 5.638184 -3.639947 6.236977 -3.989656 7.460517 1.167036 0.117605 0.141697 12.018562 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.226432 1.067803 -1.132036 -3.832880 6.896492 -2.889864 -0.563595 4.321359 0.044056 3.091678 -2.048144 1.206410 0.095088 -5.924617 0.844315 -0.923434 1.003459 3.409810 -0.836361 3.201179 1.775070 -1.051169 1.277795 -0.735247 -1.995219 -3.671412 0.476094 2.371899 1.095583 -2.479730 1.030548 0.949943 5.297538 -0.745657 4.301397 3.071486 2.448835 3.344108 2.780355 -2.513342 1.301604 0.473450 -0.861827 -3.902691 0.322364 0.179741 -4.926116 -1.990659 1.891578 -3.539341 -0.349194 3.735125 0.065414 -0.783514 -3.636457 2.827945 2.159110 -0.915293 3.649706 1.219827 -2.537172 -1.424193 -2.926668 2.896821 -2.726821 -0.528234 -0.962015 -2.690236 -0.146251 3.409903 -0.372004 -2.388175 -2.068879 1.012631 2.774133 -3.327336 1.578394 -1.162217 0.630929 -3.445679 -1.271967 2.408880 -1.461024 3.072830 0.746923 2.550167 0.357957 1.144128 -0.907699 -4.211106 0.952977 2.567434 -2.487092 -1.445217 -1.854851 4.470462 1.248810 -1.832007 -2.247625 -3.640685 1.516225 -1.905212 2.032215 -0.869331 1.156111 -2.551259 -0.011471 0.901097 1.223939 3.681675 0.440717 1.747127 1.664048 2.570027 -2.264900 1.006715 -6.343723 1.451651 -2.643141 0.812772 -1.930565 0.992593 3.560784 3.416271 2.351868 -4.989244 4.208819 1.684000 0.084936 -2.578865 1.486843 0.571865 -0.520748 -1.257997 2.897159 -1.531005 0.264968 0.024580 2.106036 0.867001 -1.843576 -0.658070 -0.560980 3.016328 -3.928014 2.085321 -0.299717 -1.398628 0.420430 0.855642 2.725815 1.831157 5.663121 2.363141 -1.497535 3.117989 -4.714243 0.776928 5.041617 0.752526 -2.383598 4.520552 -2.275828 -1.410548 -0.054948 3.879814 2.199530 0.077999 -3.220796 -2.790079 2.162664 0.804599 3.903088 -1.242629 -0.279412 -4.484834 2.043253 0.424606 0.809107 6.506532 1.744274 -4.166933 1.333157 3.820313 -2.773722 -2.226323 1.523199 -2.952113 -0.862467 -1.196075 2.186625 2.307033 -2.509050 -2.809322 -0.442028 -2.606746 1.716886 -1.128666 -3.310666 0.266920 -2.609869 -0.241579 5.690829 0.444390 -0.806729 -1.425460 -4.423808 -0.301769 -4.716371 0.424847 0.979900 -0.880509 0.573506 -2.241849 -1.998250 3.554474 -0.295915 0.747114 -6.970570 0.371204 3.077835 1.843769 0.104066 -2.255054 -0.059717 1.251700 -0.346014 -0.550773 -1.502815 1.681668 3.596419 -2.687750 2.115444 -0.527008 -2.142002 2.735801 2.865026 -4.387893 6.292968 0.838859 5.135813 1.424738 1.199581 -2.040975 0.822666 -0.690489 -2.027149 -1.269075 1.127622 -3.205159 -1.971644 1.882453 0.312263 -4.701547 0.132894 3.775643 -0.635611 1.111721 -0.642990 -0.791964 -1.333389 -2.100134 2.376765 1.879873 -1.230061 -2.028890 2.455984 4.674206 -0.159137 -0.944646 0.571001 2.597650 3.878669 -4.572308 2.906228 -0.019399 2.782059 -3.456282 -4.539619 3.198129 -2.398753 0.094176 -0.307937 -5.621386 -3.411980 -1.953687 2.772407 -2.890505 1.451119 2.030634 4.678000 1.073744 -2.042757 2.034149 -1.743596 0.489631 -0.467479 0.811812 0.534010 3.052873 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = -0.772078 0.880750 0.388877 -0.727074 0.859528 -0.372482 0.078920 0.426125 0.373109 0.694227 -1.032109 -0.291798 -0.311547 -0.986331 0.015865 -0.539484 -0.082874 0.998385 -0.155036 0.546388 0.705726 -0.371230 0.109458 -0.685861 -0.230983 -0.626476 -0.197143 0.083438 -0.189055 0.195487 0.392916 0.152803 1.094916 0.375723 0.967995 0.906215 -0.103553 1.524583 0.361730 0.905260 0.058628 0.695317 -0.346034 -1.504270 0.644626 -0.528619 -0.219905 -1.083426 0.272926 -1.175601 1.212830 0.644129 0.047482 -0.292620 -0.841429 -0.057150 0.851723 0.700927 0.985326 0.424169 -0.418409 0.605353 -0.762144 -0.057158 -0.774431 0.506572 0.624219 -0.876268 0.060770 0.316362 0.947033 -0.590370 -0.796204 0.153969 -0.014315 -0.552027 0.329081 -0.362318 -0.979739 -0.263617 -0.599981 0.130865 -0.107645 0.744336 -0.237650 0.054475 -0.819247 0.173806 0.272803 -0.695806 -0.448513 0.804200 -0.062160 0.381358 -0.128009 0.749597 0.421694 -0.177230 -0.392567 -0.001409 0.378625 0.180882 0.378131 0.601143 -1.026607 -0.675349 0.885856 0.575905 -0.530226 0.233665 0.351152 0.676849 0.404157 0.407033 -0.574825 0.807901 -1.316652 0.292249 -0.049069 0.157274 0.172115 0.181344 -0.172032 -0.127289 0.396872 -0.787081 0.988044 0.357949 -0.272657 -0.645539 0.543000 -0.163857 -0.436766 -0.447951 0.587884 0.328431 -0.198040 -0.101318 -0.258380 -0.316668 -0.191171 -0.929495 -0.139534 0.942029 -0.242293 0.127036 -0.366003 -0.568044 -0.113825 0.125782 0.129804 0.221185 1.010638 0.737306 -0.113799 -0.597103 -0.717838 -0.001350 1.200890 0.588178 -0.822701 0.451128 0.293482 -0.031496 0.482710 0.266258 0.395146 0.519877 -0.637804 -0.838500 -0.534359 -0.572502 0.855988 0.877938 0.357032 -0.899238 1.005005 0.252752 -0.296099 1.541811 0.514081 -0.633270 -0.367892 0.644168 -0.994465 -0.714851 0.196025 0.129431 -0.008887 -0.112648 0.189690 0.135240 -0.701309 -1.126915 -0.262546 -0.993519 0.883956 -0.063794 0.293754 -0.108719 -1.072865 -0.406875 1.258286 0.210660 -0.541273 -0.194915 -0.396610 -0.135283 -1.093557 0.365417 0.474379 -0.300892 -0.627833 -0.562669 0.272356 0.597419 -0.554926 -0.157794 0.217920 -0.795301 0.465707 -0.329531 0.259163 -1.306992 -0.378341 -0.042271 0.363963 0.667989 0.513086 0.564341 1.501582 -0.494461 0.113858 1.409893 0.390628 0.307869 1.189483 -0.682450 0.948784 -0.710403 0.481033 -0.015032 0.438332 -0.250152 -0.181258 0.216913 0.186207 -0.047108 0.578610 -0.520316 -0.100232 0.192609 -0.798591 0.071334 0.578540 0.465538 0.330720 0.084833 0.363930 -0.599254 -0.065800 -0.260021 -0.205398 0.830188 0.286102 -1.007636 0.024771 0.283592 -0.344906 -0.485237 0.217573 0.223403 0.794800 -0.829669 0.673645 -0.065136 -0.526180 -0.841548 -0.504483 0.430499 -0.776525 -0.714435 0.437323 -0.889690 -0.208631 -0.507747 0.609765 -0.735827 -0.018947 -0.207932 0.751265 0.656639 -0.037652 0.540843 -0.206616 0.906632 0.268251 -0.324454 -0.011434 1.341924 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = -0.988788 0.611861 0.140350 -1.005535 2.021066 -0.437077 -0.040380 0.942677 0.308350 1.183217 -1.236260 0.035184 -0.291638 -1.192063 0.076338 -0.325392 -0.012261 1.085425 -0.544815 0.285143 0.735989 -0.061126 0.443623 -0.669795 -0.417637 -1.192044 -0.237355 0.361320 0.058942 0.086990 -0.031109 0.094188 1.459356 -0.190614 0.941246 0.929597 0.650619 1.523691 0.248110 0.497465 0.605443 0.616048 -0.436915 -1.603010 0.562371 -0.627732 -1.012478 -0.960800 0.699870 -1.621875 0.961902 0.923500 0.041589 -0.585396 -0.857189 0.767929 0.893669 0.133730 1.366881 0.396205 -0.949580 0.073753 -1.058601 1.050876 -1.099221 0.849408 0.049747 -1.477249 -0.605818 0.913654 0.627365 -0.690429 -1.006031 0.184317 0.306472 -0.860425 0.353484 -0.420304 0.122982 -0.540459 -0.693424 0.354808 -0.371299 0.831079 -0.070824 0.281343 -0.526911 0.212888 0.273439 -1.037872 -0.462913 1.212889 -0.431941 0.429921 -0.652611 0.372617 0.445734 -0.554883 -0.376430 -0.478790 0.285299 0.114905 0.556816 -0.002661 -0.337835 -0.887241 0.716657 0.813740 -0.006006 0.431926 -0.134890 0.514273 0.236091 0.565986 -0.404046 0.663872 -1.776365 0.425863 -0.255405 0.196956 -0.313448 0.277178 0.469760 0.325865 0.779361 -1.255542 1.456095 0.168096 -0.528557 -0.715484 0.588487 0.147182 -0.452867 -0.237108 0.774947 -0.035624 -0.256849 -0.020048 0.352625 -0.237843 -0.731542 -0.685459 -0.253711 0.681355 -0.740149 0.379680 -0.350441 -0.579762 0.033256 0.377040 0.480495 0.451087 1.508523 1.017858 -0.126481 0.019513 -1.301057 0.403671 1.549680 0.497440 -1.047377 0.815884 -0.423841 -0.013238 0.551957 0.552946 0.337524 0.977379 -0.562974 -0.635586 -0.360639 -0.342691 1.278677 0.878148 0.412465 -1.429916 0.528634 -0.372047 0.222466 1.889307 0.980843 -1.443005 0.171420 1.178244 -0.952514 -0.835839 0.295818 -0.376973 -0.365310 -0.440285 0.427634 0.667159 -0.972905 -1.274672 -0.110930 -1.097995 1.165128 -0.161535 -0.333716 0.240653 -1.257931 -0.293274 1.536520 0.309762 -0.392889 -0.349614 -0.823906 -0.468531 -1.629168 0.313353 0.686673 -0.538864 -0.578286 -0.877126 -0.073659 0.987448 -0.438318 0.184646 -0.934377 -0.330011 0.783284 0.034402 0.403415 -1.253562 -0.281577 -0.165581 -0.026156 0.481580 -0.190653 0.362209 1.408887 -0.883477 0.708525 0.938813 -0.323961 0.252463 1.229340 -0.870059 1.466997 -0.207712 0.712231 0.169924 0.618746 -0.441463 0.213081 -0.100543 -0.194175 -0.235433 0.757406 -1.128308 -0.452933 0.482506 -0.847161 -0.576966 0.586575 0.961992 0.437805 0.116907 0.038206 -0.613817 -0.296928 -0.548543 0.061112 0.869873 -0.227807 -1.244551 0.275354 0.750773 -0.958170 -0.872853 0.340465 0.518389 1.153196 -1.254545 0.970640 0.092938 -0.127746 -1.598830 -0.785417 0.369287 -0.816741 -0.791124 0.384149 -1.452782 -0.832068 -0.648671 0.890620 -0.942910 -0.314439 0.058192 1.242692 0.591692 -0.021000 0.971070 -0.222217 0.710086 0.118127 -0.249674 0.187900 1.146845 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -1.637801 1.972111 1.029480 -1.823285 2.566091 -0.895423 0.564328 0.813643 -0.273838 1.773445 -2.042985 0.155194 -0.562237 -2.541869 0.165837 -1.587289 -0.177674 1.983249 -0.114081 1.705156 1.324906 -1.187611 0.418639 -1.244099 -0.769091 -2.263232 -0.171360 0.568489 0.303872 0.165537 1.389441 0.278173 2.462613 0.199806 1.873407 1.998486 -0.067195 2.960859 0.906020 0.296491 0.347939 1.180516 -0.743418 -2.970032 0.947854 -0.717227 -1.284675 -2.166214 0.808067 -2.584577 0.686017 1.646667 0.009964 -0.852756 -2.206021 0.722224 2.188307 0.619966 2.214955 0.695143 -0.702132 0.437448 -1.776923 0.422173 -1.660693 0.298222 0.620218 -1.799217 0.406354 1.130783 0.742706 -0.783903 -1.402888 0.444835 0.646158 -1.599992 0.446508 -0.886655 -2.850297 -1.004836 -0.887757 0.453948 -0.192888 1.802408 -0.207942 0.486158 -0.684021 0.521832 0.405606 -1.736767 -0.796222 2.093233 -0.146709 -0.071747 -0.486090 2.323893 1.400892 -0.837761 -0.948447 -0.400127 0.698133 -0.098294 1.010604 0.059524 -1.705614 -1.816326 0.877594 0.880599 -0.601701 1.343244 0.130515 1.479435 0.683943 0.924376 -1.789330 1.490422 -3.048671 0.665787 -0.455621 0.357298 -0.130029 0.445126 -0.011418 0.484709 1.128187 -2.167636 2.291759 0.623854 -0.205662 -1.651662 1.018755 0.135855 -0.603529 -0.835031 1.251653 0.249232 -0.265731 -0.030307 -0.102130 -0.153091 -0.278085 -1.615778 -0.016040 2.612354 -1.264912 0.681803 -0.636271 -0.987092 -0.056536 0.226402 0.684879 0.701872 2.481338 1.777860 -0.174215 0.460338 -1.932081 0.171012 2.779431 1.366466 -1.617533 1.445046 0.032126 -0.482364 0.696588 0.866792 1.071040 1.132848 -2.058871 -2.260117 -0.275597 -0.983279 1.990235 1.488449 0.293533 -2.371125 2.433879 0.339536 -0.231147 3.027391 1.189652 -1.679404 0.208261 1.770271 -2.778217 -1.653871 0.596901 -0.358871 -0.242161 -0.288229 0.495113 0.676815 -1.345650 -2.246243 -0.969815 -1.926768 1.737834 -0.362948 -0.054856 -0.050121 -1.643635 -1.545463 2.417787 0.374251 -0.912975 -0.796490 -1.267403 -0.780738 -2.590874 0.673015 0.858182 -0.970489 -1.198629 -1.427625 0.001178 1.245414 -0.984668 -0.002655 -1.139777 -1.168258 1.235701 0.662251 0.428006 -2.247534 -0.494486 0.253729 0.577574 0.749962 0.649747 1.545519 2.916114 -1.298304 0.645370 1.301215 -0.190114 1.251972 2.376299 -1.863039 2.464446 -0.844331 2.052927 0.190304 0.757502 -0.577419 -0.056589 0.431321 -0.593969 -0.221385 0.939454 -1.457396 -0.570192 0.792996 -1.266316 -0.690639 1.006046 1.462008 0.578636 0.308707 0.837477 -1.059281 -0.337447 -0.733644 -0.135450 1.570211 0.169679 -1.892528 0.515256 1.261463 -0.534634 -1.286981 0.322167 1.003771 1.464696 -2.094034 1.730433 -0.424927 -0.561967 -1.977729 -1.778273 1.580614 -1.831185 -1.661302 0.877174 -2.364852 -0.528720 -1.198574 1.416983 -1.950110 -0.347635 0.021785 1.887172 0.805472 -0.111273 1.250850 -0.745148 1.534231 0.080457 -0.172104 0.092602 2.516282 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = -3.272624 2.846427 1.259639 -3.842396 5.345743 -1.457844 0.392861 1.577952 0.728064 3.225121 -4.190281 -0.459008 -1.372819 -5.040006 0.202207 -2.600223 -0.185748 3.771983 -1.078973 2.960076 2.854032 -2.071327 1.289834 -2.654453 -1.302864 -3.201892 -0.604431 1.074926 -0.009069 0.520232 2.147849 0.282529 4.457819 0.728480 3.282329 3.255083 0.180621 6.376269 0.893777 1.757222 1.015636 2.433625 -1.155630 -6.293615 2.644560 -1.977796 -2.721809 -4.341653 1.731547 -5.666326 2.464346 3.326253 0.226599 -2.049129 -4.048615 0.984460 4.527540 1.677111 4.270089 1.583863 -1.933460 1.030828 -3.699119 -0.331034 -3.283884 1.679746 1.953954 -3.818146 -0.296671 2.457505 2.203085 -2.176393 -3.565192 0.339809 1.370917 -2.631166 1.298599 -1.675681 -3.833692 -1.793613 -1.794916 0.610811 -0.713337 3.329028 -0.757548 0.989649 -1.175814 0.561890 0.907771 -3.205259 -1.702505 3.612544 -0.412849 0.831221 -1.293327 3.806819 1.601508 -1.759597 -2.755128 -0.634384 1.256490 0.430604 1.893921 0.970082 -4.001389 -3.455350 2.942980 2.278866 -1.198609 1.451334 0.827961 2.211850 0.713341 1.675809 -3.490496 3.665926 -5.793851 0.786736 -0.615892 1.142525 -0.439396 0.810305 0.354768 0.542008 1.866765 -3.965889 5.123365 1.322096 -1.140883 -2.916277 2.353946 0.290779 -1.371340 -1.246986 2.626917 0.209645 -0.621894 0.093419 -0.103207 -0.765817 -1.193108 -2.649478 -0.495723 4.203331 -1.759090 1.262789 -1.289393 -2.425242 0.058631 0.271107 1.157686 0.829250 4.882088 3.160419 -0.634102 0.240070 -3.430316 0.892956 5.853875 2.487886 -3.465600 2.345118 0.437072 0.123371 1.516495 1.231500 2.106184 2.201051 -2.932398 -3.254809 -0.905959 -1.885037 3.743295 3.129251 1.297984 -5.429647 3.720897 0.538266 0.544324 6.409754 2.732436 -3.625200 -0.000803 3.586429 -4.932961 -2.910510 0.596240 0.243161 -0.376162 -0.636256 1.565872 1.121479 -2.886284 -5.161906 -1.873492 -3.901431 3.354930 -0.699349 0.110638 -0.150065 -3.848952 -2.183437 5.008033 0.513823 -2.164665 -1.020198 -2.433494 -1.024879 -5.271901 1.361208 1.864707 -1.878172 -2.321947 -2.498739 0.210848 2.977963 -2.094919 -0.520920 -1.648229 -2.109980 2.297830 0.252015 1.284574 -4.513203 -1.181221 0.199064 0.967826 1.977619 1.317739 1.748928 5.548368 -2.711856 1.267525 3.032846 0.230733 2.047149 4.921360 -2.870022 4.912474 -1.723765 4.361240 -0.238325 1.947683 -0.871090 0.210643 0.631406 -0.647335 -0.311577 2.483185 -3.111024 -1.143942 1.807627 -2.436230 -1.413720 2.453127 2.943170 1.425282 0.648328 1.439363 -1.935957 -0.649291 -0.889073 -0.179748 3.099729 0.195612 -4.092028 0.104691 2.615460 -1.314425 -2.435422 1.061527 1.721696 3.651953 -3.949564 3.578894 -0.514207 -1.697757 -3.753131 -2.783861 2.606170 -3.417796 -2.618907 2.197249 -4.589500 -1.267426 -2.202501 3.332946 -2.751200 -0.026971 -0.591880 3.503343 2.431130 0.007973 2.864424 -0.968450 3.017697 0.109542 -0.761313 0.544813 5.008323 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = -3.256340 3.565154 1.812433 -3.419777 4.439044 -1.694611 0.769609 1.763968 0.514569 2.977317 -4.317964 -0.039782 -1.341157 -4.455172 0.051762 -2.525478 -0.198866 4.206001 -0.747838 2.751560 2.880832 -1.678611 0.856143 -2.845551 -1.235318 -3.118306 -0.551589 0.628776 -0.713187 0.790636 2.390987 0.545682 4.611618 1.194082 3.533609 3.562809 -0.201594 6.584519 1.406113 2.780761 0.740890 2.585215 -1.176526 -6.365945 2.789425 -2.033021 -1.686773 -4.547117 1.344027 -5.617494 3.712218 2.842842 0.345141 -1.678305 -3.846398 0.377804 4.485824 1.762835 4.077885 1.641880 -1.970275 1.807991 -3.165897 -0.337876 -3.269954 1.690515 2.555306 -3.621219 0.139261 1.994446 3.542781 -2.553022 -3.623102 0.257122 0.403719 -2.498790 1.151002 -1.497969 -4.419904 -1.583252 -2.006860 0.430308 -0.434790 3.092189 -0.896289 0.523245 -2.579760 0.522242 1.201463 -2.825434 -2.006600 3.612986 -0.149382 1.345152 -1.347929 3.498965 1.704949 -1.444146 -2.195022 -0.471668 1.395070 0.615227 1.699853 1.633672 -4.652821 -3.035605 3.105704 2.248215 -2.001795 1.363905 0.675274 2.806857 1.135582 1.442988 -2.924884 3.806198 -5.972047 1.164006 -0.151447 0.753506 0.230785 0.535915 -0.463133 -0.004635 1.659484 -3.556654 4.757705 1.314973 -1.186447 -2.922268 2.367877 0.116604 -1.468758 -1.626560 2.546520 0.866731 -0.676068 -0.078259 -0.707366 -1.118591 -0.858597 -4.111437 -0.553659 4.486409 -1.634735 0.906749 -1.472700 -2.341760 -0.222101 0.227302 0.657959 0.723773 4.362227 3.095561 -0.372829 -0.655274 -3.247920 0.228645 5.290181 3.419198 -3.363852 2.000050 1.070162 -0.092279 1.891185 1.023722 1.701464 1.978095 -3.167435 -3.762105 -1.275759 -2.393351 3.584160 3.638010 1.300865 -4.907477 4.131398 0.956860 -0.235808 6.414245 2.439948 -3.085978 -0.629666 3.165842 -4.195210 -3.152451 0.610177 0.376743 -0.706549 -0.183768 1.074030 0.663592 -2.817578 -5.012339 -1.600492 -3.930061 3.409086 -0.464991 0.524448 -0.438375 -4.091181 -2.273966 4.897012 0.637810 -2.175236 -0.800933 -1.980879 -0.635682 -5.040349 1.425131 2.073665 -1.557129 -2.589968 -2.414132 0.788237 2.533100 -2.370451 -0.773478 -0.391153 -3.044308 2.165500 -0.501808 0.970989 -5.826190 -1.311459 0.035914 1.632004 2.363978 1.949385 2.226149 5.987218 -2.369492 0.738168 4.656748 1.030958 1.712973 5.073828 -2.805497 4.217522 -2.532284 3.674361 -0.065853 1.736468 -0.932514 -0.355707 0.754342 0.420394 -0.364900 2.376562 -2.751342 -0.749325 1.186171 -2.876976 -0.407178 2.576285 2.506684 1.297676 0.386124 1.655894 -1.958225 -0.471232 -1.149940 -0.737969 3.251990 0.537096 -4.341921 0.095052 1.914759 -1.621447 -2.055088 0.903716 1.578450 3.224885 -3.578482 3.379963 -0.557924 -2.220677 -3.834508 -2.750886 2.684582 -3.554862 -3.258319 1.936050 -4.169560 -1.165381 -2.039602 3.140973 -3.324073 -0.163948 -0.782491 3.094105 2.284854 0.287480 2.603933 -0.941361 3.458910 0.499390 -0.818715 0.088976 5.509182 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -5.180874 5.670279 1.436484 -4.547323 12.277239 -2.572082 2.307350 4.893288 -5.174535 9.203536 -3.911109 -0.428391 -1.559514 -10.877845 0.566217 -4.373896 -1.769300 4.922755 0.802826 6.329917 3.485956 -5.859046 0.962473 -0.985980 -3.641018 -8.421501 -0.707541 3.089046 8.226808 -5.241035 2.222077 -0.239326 10.270381 -1.475135 9.058264 6.990577 1.517856 5.816732 3.845231 -5.631911 -2.517403 3.616748 -4.979019 -5.913581 -0.087909 -1.300176 -7.176661 -4.116784 3.085722 -3.817209 -1.157029 7.468804 -2.211707 -0.376088 -6.007611 6.311542 3.978464 -0.599631 9.145493 0.648942 -1.215083 -2.135696 -8.970410 7.540788 -3.111863 -1.142291 -2.224024 -5.324401 3.388375 0.449498 -2.075815 -4.244174 -1.576888 8.293651 5.572960 -7.721599 0.462681 -4.461500 -12.130466 -7.879041 -5.937294 2.911890 -1.259096 7.141674 1.499001 3.391343 1.210638 4.857137 -2.574711 -11.737653 1.766061 9.977043 -3.205639 -3.585916 -4.263215 9.058432 3.003639 0.696781 -4.273594 -3.181545 2.378275 -1.662022 4.182277 -7.625221 2.518002 -9.043745 -0.827524 -0.994112 1.321995 5.730564 4.725350 2.379945 5.080428 8.883248 -8.328094 -0.260875 -8.938483 2.416317 -2.201549 2.209162 -2.216300 3.937850 0.620086 3.637556 7.869929 -13.309964 3.337601 0.416511 -0.247096 -10.070163 -0.192620 -3.238416 -1.682329 -2.818874 3.842001 -1.028725 -0.678084 -3.159814 1.224922 2.501269 -4.340944 -3.456905 3.447000 11.338307 -9.237168 2.850486 -1.449472 -2.052976 -1.623980 4.215848 7.344383 6.631486 10.004055 7.197482 0.207014 5.126113 -9.539461 -0.236093 8.702073 2.261644 -6.475099 9.385443 -6.327855 -3.573596 0.484767 7.615470 6.448571 0.990061 -8.976311 -7.307849 6.567190 1.625812 8.785261 -0.348224 -0.446010 -3.030356 8.740666 1.153521 -5.717201 10.128939 4.088060 -6.565043 4.118887 3.352814 -7.477772 -3.555550 5.919563 -7.248883 0.283254 -2.808519 0.564223 4.235971 -2.911655 -2.421809 -1.009350 -6.857066 8.752132 -1.932874 -1.554424 3.098658 -4.615978 -6.987444 8.496504 0.184595 -2.575432 -6.237717 -7.380248 -6.765304 -6.379336 2.495205 1.110221 -3.289822 -4.251355 -7.467796 -1.326049 6.387073 1.354727 5.309079 -10.537253 -2.359951 4.114746 5.109678 4.661490 -4.091898 -0.689706 0.380833 0.638232 1.345836 -0.692427 7.613994 11.509957 -4.637169 4.725308 -1.208551 -3.254575 4.249861 4.292766 -10.660876 9.987898 1.007662 7.565678 0.384647 2.257363 -3.014157 1.093006 2.483434 -1.744202 0.878327 0.916203 -2.107773 -3.104999 0.193279 -6.390785 -6.555644 -1.462887 2.873584 -0.595867 2.706518 -0.737699 -4.215819 -2.602896 -5.597353 1.492875 5.266155 0.107730 -1.645530 5.902795 1.560355 2.455301 1.027182 0.299079 3.384844 3.947266 -9.145674 0.995153 -2.463213 3.470285 -5.315044 -10.746113 2.421403 -6.264077 -4.810411 3.379985 -10.374413 -0.649792 -5.970846 -0.140151 -11.343142 -0.851251 2.659839 10.889501 2.311320 -3.716658 3.349778 -3.752292 4.930846 -0.446675 0.882482 2.362169 5.636607 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -2.325364 1.265318 0.257929 -1.649381 4.924608 -1.011597 0.503622 2.448157 -0.663343 2.951394 -2.128217 -0.685302 -1.202626 -3.668493 0.387670 -1.020315 -0.044491 2.270200 -0.821910 1.166890 1.957669 -0.975965 0.472843 -0.983885 -0.928914 -2.265674 -0.657455 0.823036 1.721782 -0.754111 -0.144216 0.422708 3.982734 -0.163867 3.103459 2.449233 1.471710 3.367419 0.522572 -0.090693 -0.146620 1.974313 -1.656495 -3.464283 1.184211 -1.497058 -2.442251 -1.800289 1.500324 -2.478767 1.492438 2.657413 -0.301277 -0.281651 -1.826934 1.697182 1.811982 0.382251 3.457220 1.035214 -1.645999 -0.333418 -3.169031 2.420588 -1.711818 1.442979 -0.134183 -3.155805 -0.493590 0.702542 0.905333 -2.333806 -1.878783 1.882087 1.318476 -2.186066 0.992768 -0.993269 -1.640078 -2.313249 -2.900178 0.675887 -1.080217 2.684921 -0.246049 0.569578 -0.552419 0.816585 -0.078728 -3.666355 -0.258705 3.457845 -1.457804 0.529721 -2.338858 1.460115 0.319421 0.169997 -1.893104 -1.359434 0.930529 0.164190 1.439416 -1.150109 -0.235427 -2.537403 1.134500 0.512294 0.308786 1.478369 1.474794 0.653959 1.153648 2.524578 -2.040770 0.916682 -3.634762 1.222791 -0.737620 0.990979 -0.698943 1.241556 0.925039 0.385399 2.432342 -4.198920 2.111093 0.331189 -0.976897 -2.851607 0.827101 -1.062025 -1.439710 -1.067924 2.212769 -0.087061 -0.751286 -0.898254 0.718749 0.142042 -2.099391 -1.504354 -0.105436 2.559238 -2.897992 0.562561 -1.052765 -1.589187 -0.515904 1.417443 1.857825 2.116393 3.629216 2.795122 -0.523173 0.684536 -3.622564 0.633902 3.875125 1.112790 -2.893519 2.470805 -1.803613 -0.054718 1.155317 1.974683 1.861058 1.376352 -1.678866 -1.311632 0.717267 0.207087 3.527808 1.433843 0.996744 -2.465086 1.671736 -0.464613 -1.175783 4.543995 2.091105 -3.280112 0.927998 1.692268 -2.023150 -1.456646 1.280336 -1.913715 -0.435486 -1.522458 0.868483 1.811578 -2.221280 -1.844723 0.318140 -2.895699 3.187965 -0.567221 -0.279248 1.031154 -3.161092 -1.640092 3.901286 0.321063 -1.044502 -1.769637 -2.489002 -1.810010 -3.143545 1.187544 0.858681 -0.956470 -1.981974 -2.642748 -0.269992 3.143029 -0.116489 1.232530 -2.826100 -0.706761 1.573889 0.291803 2.001261 -2.863001 -0.875491 -0.359175 0.004283 1.431083 -0.410015 1.298901 4.158407 -2.259451 1.672038 1.451188 -0.702775 0.625661 2.307927 -2.914023 3.525863 -0.146608 2.540534 -0.202960 1.516572 -1.349054 0.243012 0.384958 0.363156 -0.211959 1.461607 -1.437952 -0.849063 0.537204 -2.785298 -1.830506 0.455669 1.373212 0.544470 0.684309 -0.379637 -1.747049 -0.689365 -1.574961 0.357105 2.564157 -0.364849 -1.947574 1.201367 0.409626 -0.887854 -0.471589 0.715254 0.945966 2.606129 -3.254260 0.758581 -0.215487 0.280078 -2.778008 -3.195019 0.247896 -2.188192 -1.828769 1.821599 -3.578544 -0.823538 -2.024254 1.078459 -3.432760 -0.510510 0.103749 3.571065 1.452201 -0.546843 2.064722 -0.421980 2.220078 0.021589 -0.317468 0.884106 2.656100 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -4.254204 3.968302 1.611546 -3.422217 9.927217 -1.612946 1.280761 3.328619 -4.321187 7.652714 -2.570789 -1.084010 -1.959023 -8.682652 0.634032 -3.738027 -1.111846 3.415131 0.657631 5.164485 3.011926 -4.967250 0.938565 -0.040231 -2.841207 -6.461504 -0.943361 2.957418 7.736320 -4.901899 1.307992 -0.082752 8.301204 -1.701787 7.530055 5.708845 1.461113 4.815399 2.069295 -6.080810 -2.493077 3.368160 -4.472816 -4.887709 0.170329 -1.039940 -5.907969 -3.499633 3.247300 -1.688384 -2.324298 6.558906 -2.307059 -0.103582 -5.162466 5.537953 2.743127 -0.033557 8.134717 0.405936 -0.474198 -1.540290 -8.013766 5.222812 -2.619200 -0.771708 -3.400183 -4.493441 2.590291 -0.284527 -2.699534 -3.643114 -0.740479 7.406462 4.697880 -6.333217 0.607612 -3.546453 -8.965637 -7.139150 -6.008882 2.212038 -1.443765 6.024200 0.965347 2.883560 2.188489 4.312393 -2.546966 -10.166738 2.297046 7.524305 -3.095674 -3.193764 -2.131646 7.356904 1.754657 0.763659 -3.983121 -1.937683 1.830648 -2.063787 3.865256 -6.367670 3.904055 -7.233244 -1.000177 -1.561135 2.369288 4.077530 5.049013 1.216597 4.645086 7.693540 -7.143104 -0.512713 -6.981328 1.805219 -2.290863 1.970086 -1.956796 4.394439 0.944490 2.937403 7.056662 -11.205268 2.162976 -0.143637 -0.028250 -8.080302 -0.114390 -2.891374 -1.471650 -2.523120 3.721579 -1.385008 -0.979557 -2.936910 1.619199 2.525885 -3.674561 -0.734474 2.772721 8.195131 -7.436590 2.429988 -1.438179 -2.459675 -0.733048 3.548375 6.386087 6.443973 8.796623 6.543520 -0.528530 4.227407 -7.946884 0.076951 6.809440 -0.052981 -5.412237 7.983638 -5.550212 -2.844831 0.653284 6.396105 6.174665 1.470105 -6.549823 -5.771331 5.207050 2.535703 7.389961 -0.456174 0.048469 -1.569145 6.576476 0.300274 -4.890336 8.156543 2.282016 -5.697236 4.028270 2.396347 -6.244581 -2.717889 4.902672 -6.312886 0.607254 -2.929619 0.757987 4.319913 -2.808958 -1.376589 -0.371232 -5.587880 7.167344 -2.047815 -1.199244 3.669828 -4.157303 -5.874030 6.684639 0.206661 -1.877048 -5.875841 -6.315067 -5.071505 -5.075994 2.420578 0.173821 -2.301231 -3.429662 -6.430415 -1.349898 5.402539 2.346645 4.871505 -8.996716 -1.184909 3.523823 4.440845 4.168753 -1.702259 -0.535546 0.960570 -0.523429 0.913500 -1.064076 6.162797 9.068770 -4.515202 3.927550 -2.262284 -3.261032 3.679297 3.069817 -9.309746 8.660313 1.650633 6.157103 -0.084457 1.728191 -2.604097 1.238977 2.322024 -1.775283 0.857266 0.388646 -1.214181 -2.816544 0.133576 -5.487462 -5.419460 -2.086355 2.309080 -0.850502 2.846383 -0.644329 -3.647865 -2.190768 -3.923668 1.722552 4.547966 -0.176787 -0.967807 5.377970 0.925298 2.554188 0.642855 0.305155 2.505801 3.446986 -7.936660 0.094384 -2.142537 3.096543 -3.523820 -8.222453 1.253859 -4.632688 -3.012247 3.742234 -7.691894 0.374611 -5.190882 -0.397929 -7.831434 -0.866657 1.952316 9.187434 2.520186 -3.554996 2.907711 -2.969681 3.808172 -0.567235 0.040624 1.919903 4.355553 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -1.619520 0.988325 0.296907 -1.176038 3.667761 -0.661130 0.260615 1.881807 -0.740925 2.331252 -1.301644 -0.288163 -0.634601 -2.508231 0.290971 -0.713204 -0.161049 1.507423 -0.422632 0.993950 1.269256 -0.684677 0.258598 -0.395007 -0.825173 -1.743822 -0.488123 0.802193 1.659238 -1.017393 -0.165889 0.254750 2.895611 -0.472715 2.526297 1.914775 1.201879 2.015392 0.379967 -0.676347 -0.211872 1.282327 -1.364013 -2.126800 0.502269 -0.826702 -1.951383 -1.160278 1.147582 -1.282552 0.694275 2.021413 -0.416347 -0.055854 -1.257067 1.655448 0.869833 0.006443 2.643577 0.577049 -1.162858 -0.201950 -2.466751 2.236913 -1.123990 0.868221 -0.745856 -2.223538 -0.136976 0.352989 0.337720 -1.764884 -0.963441 1.823372 1.009025 -1.786010 0.656386 -0.889567 -0.944794 -2.022358 -2.112374 0.701619 -0.738607 1.869194 -0.020803 0.602569 -0.265527 0.929323 -0.447715 -2.977140 0.183681 2.504144 -1.351141 0.019965 -1.548339 1.168396 0.304772 0.241780 -1.203308 -1.014458 0.718610 -0.177306 1.130577 -1.197883 0.865129 -1.837797 0.288736 0.138585 0.604690 1.207050 1.000999 0.547422 1.302800 2.148990 -1.374248 0.328175 -2.545017 0.922474 -0.815487 0.704444 -0.583001 1.156374 0.851954 0.682299 2.077991 -3.188227 1.207960 0.021085 -0.544596 -2.188905 0.400958 -0.894766 -0.946738 -0.867476 1.505137 -0.153178 -0.548368 -0.841939 0.707714 0.359374 -1.530276 -0.870024 0.211702 1.651899 -2.265913 0.512490 -0.654155 -0.970293 -0.327362 1.272591 1.760955 1.872112 2.873198 2.123495 -0.257291 0.625402 -2.742982 0.288095 2.498728 0.333138 -2.031462 2.217851 -1.739411 -0.431984 0.724649 1.780558 1.455947 1.043661 -1.438784 -1.246885 0.826665 0.524107 2.657092 0.650515 0.447420 -1.230572 1.270241 -0.533728 -1.252763 3.233962 1.223390 -2.432414 0.828346 1.049493 -1.247410 -1.062519 1.263497 -1.873580 -0.351422 -1.050270 0.515815 1.466765 -1.426172 -0.951752 0.464766 -2.031572 2.383989 -0.548196 -0.465352 0.943645 -2.114206 -1.273375 2.733412 0.296941 -0.689553 -1.485779 -1.850342 -1.165427 -2.092175 0.803807 0.515498 -0.543146 -1.316935 -2.038782 -0.280007 2.121639 0.240940 1.249253 -2.488936 -0.488351 1.228828 0.362827 1.383399 -1.690614 -0.453219 -0.281121 -0.144186 0.745499 -0.605222 1.273867 3.073892 -1.617630 1.311933 0.640209 -0.919320 0.489232 1.440618 -2.564117 2.787405 0.277486 1.576474 0.007637 0.887738 -1.120804 0.204902 0.293426 0.112633 -0.084400 0.762266 -0.793695 -0.718526 0.115164 -2.029026 -1.415213 -0.081712 0.971705 -0.019964 0.683262 -0.384271 -1.317009 -0.693364 -1.390380 0.387657 1.761001 -0.419673 -1.110694 1.394336 0.253702 -0.389823 -0.138839 0.344257 0.783355 1.757735 -2.528224 0.326847 -0.183467 0.614442 -1.974949 -2.370110 0.040678 -1.528789 -1.154479 1.056406 -2.454863 -0.588563 -1.582759 0.431082 -2.421229 -0.586200 0.480048 2.905222 1.082281 -0.807128 1.352552 -0.588615 1.538432 0.080564 -0.174273 0.561718 1.688020 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -2.997051 2.835670 1.141905 -2.733840 7.234441 -0.965722 0.579861 2.643539 -2.745785 5.392855 -1.949316 -0.556783 -0.833376 -5.712447 0.478162 -2.903632 -1.269547 2.459956 0.226799 3.616991 1.945973 -2.857593 0.457090 -0.022228 -2.305475 -4.402059 -1.079494 2.269171 4.708377 -3.684432 1.571119 -0.045581 5.700804 -1.696984 5.157000 4.238225 1.172671 2.975234 1.057286 -3.011346 -1.170698 2.002319 -3.210854 -2.651397 -0.302487 -0.517272 -4.574930 -1.728773 2.126000 -1.407297 -1.744516 4.637277 -1.471594 -0.061831 -3.073052 4.479567 1.179354 -0.531825 5.526927 0.436962 -1.205341 -0.573413 -5.796961 4.960166 -1.888397 0.183217 -2.756184 -3.648606 1.471486 0.205771 -1.535047 -2.653785 -0.844307 5.091788 2.913805 -4.622530 0.526196 -2.733287 -5.447841 -4.707119 -3.588567 2.151565 -0.215341 3.882959 0.835846 2.049964 1.590549 3.179901 -2.129289 -7.073553 1.401451 5.199487 -2.705516 -2.231194 -2.224323 4.385164 1.352254 0.566233 -2.381616 -1.498496 1.519546 -1.352011 2.611836 -4.324020 2.958674 -4.824003 -1.232933 -0.591464 1.679367 2.834273 2.634644 1.479850 3.459553 5.322420 -4.365434 -0.471511 -4.592887 1.471183 -2.071035 1.379921 -1.619618 2.751161 1.064310 2.562927 5.094951 -7.316863 1.496082 -0.451374 -0.438878 -5.541436 -0.141461 -1.981108 -1.232844 -1.780281 2.344354 -0.716574 -0.619517 -1.909269 1.307524 1.782833 -2.180015 -0.674272 1.993539 4.816188 -4.846729 1.671173 -0.786845 -1.166720 -0.732744 2.962586 4.838020 4.539886 6.463765 4.240668 0.151558 2.437554 -5.573284 -0.093812 4.628380 0.457635 -3.761236 5.850015 -4.178369 -2.194467 0.306074 4.542833 3.765420 1.538974 -4.675720 -4.197676 3.315070 1.667951 5.484974 -0.379567 -0.452339 -1.059935 4.190037 -0.289638 -3.407034 5.860102 2.196998 -4.156524 2.569183 1.860170 -3.823123 -2.385936 3.999801 -4.610201 -0.165905 -1.473136 0.227197 3.007323 -1.740568 -1.096642 0.223974 -3.959739 5.013793 -1.480003 -1.132533 2.516690 -3.045882 -4.978857 4.345277 0.466634 -1.354202 -3.959806 -3.973531 -2.910555 -3.623049 1.560348 0.780868 -1.428825 -2.314112 -4.480954 -0.866325 3.425643 1.191330 3.634289 -6.215122 -1.096364 2.599385 2.292746 2.895267 -1.107752 -0.177711 0.015236 -0.367165 0.420699 -1.192152 4.098198 6.278017 -2.919582 3.213730 -1.054232 -2.933879 1.930962 2.194515 -6.430799 6.412264 1.451936 3.599403 0.288087 1.152224 -2.147944 0.714041 1.520071 -1.327563 0.484131 0.206989 -0.872652 -1.942740 -0.220864 -3.868815 -3.385618 -1.266288 1.663165 -0.969733 1.879711 -0.171716 -2.679003 -1.845092 -2.595136 1.185380 3.102473 -0.309398 -0.716959 4.172087 0.800753 1.312998 0.251621 0.093473 2.038483 2.566977 -5.713370 0.333661 -1.184547 2.249949 -3.428711 -5.488515 0.575219 -3.442695 -2.324287 1.619674 -5.041468 -0.207439 -3.623151 -0.271278 -4.689451 -1.358778 2.112921 6.630535 1.725689 -3.140146 2.018630 -2.339915 2.865276 -0.116476 -0.001235 1.135898 2.739743 +PE-benchmarks/naive-algorithm.cpp__main = -1.226215 0.406592 0.161305 -0.895067 2.453971 -0.502627 -0.036612 1.007844 0.279411 1.512667 -1.095582 -0.855142 -0.779265 -1.755150 0.213421 -0.676140 -0.037604 1.188308 -0.612577 0.424610 1.051320 -0.299876 0.307784 -0.460403 -0.448813 -0.957921 -0.605790 0.503665 0.652510 -0.498967 -0.130441 0.256383 2.063398 -0.168474 1.552868 1.260052 0.749568 1.872119 -0.060766 0.420605 0.106289 1.084112 -0.884145 -1.771861 0.689573 -0.784959 -1.228740 -0.914429 0.911790 -1.164189 0.924466 1.403549 -0.153079 -0.190677 -0.907436 0.894221 0.653330 0.571625 1.837388 0.580032 -0.907904 0.277024 -1.838787 1.164883 -1.086711 1.137894 -0.308287 -1.835778 -0.571432 0.381245 0.577594 -1.253627 -1.138860 0.878821 0.589949 -1.062290 0.586086 -0.489638 -0.319505 -1.022485 -1.681596 0.410002 -0.502205 1.290765 -0.214726 0.272249 -0.192231 0.450834 -0.043682 -1.825717 -0.147193 1.583934 -0.848394 0.412220 -0.884980 0.395036 0.027989 0.019613 -0.929830 -0.523562 0.449433 0.005013 0.800809 -0.149856 -0.006214 -1.144282 0.742420 0.453867 0.237555 0.367296 0.944983 0.268573 0.583714 1.221331 -0.902008 0.438840 -1.816711 0.598767 -0.491022 0.491559 -0.369370 0.784669 0.479875 0.143769 1.280863 -2.039614 1.097446 0.015285 -0.673743 -1.221784 0.496455 -0.460938 -0.832931 -0.559707 1.229013 -0.030573 -0.490751 -0.404675 0.436922 0.044068 -0.919007 -0.294917 -0.147043 0.761516 -1.033610 0.277223 -0.575177 -0.990653 -0.171835 0.757549 0.935999 1.160350 1.982341 1.476528 -0.358259 -0.261129 -1.874822 0.391307 1.890300 0.077133 -1.505996 1.242740 -0.823576 0.098752 0.670463 1.041469 0.930280 0.954899 -0.421254 -0.462591 -0.140158 0.190058 1.845874 0.766695 0.562033 -1.151142 0.488208 -0.387153 -0.453424 2.437249 1.090192 -1.721780 0.281552 0.936059 -1.063782 -0.951872 0.684525 -0.809246 -0.134141 -0.855382 0.523284 1.051440 -1.227280 -0.985915 0.334914 -1.514954 1.602299 -0.381286 -0.204998 0.734008 -1.902907 -0.983978 2.000182 0.219981 -0.486737 -0.922812 -1.286959 -0.571553 -1.700436 0.683889 0.494182 -0.384891 -0.960907 -1.307592 -0.012274 1.652846 -0.029034 0.694429 -1.041606 -0.330319 0.835179 -0.142053 1.128603 -1.098124 -0.436931 -0.158253 -0.199674 0.752999 -0.238651 0.360302 2.047268 -1.247738 0.874354 0.986413 -0.490138 0.141160 1.210206 -1.443519 1.921019 -0.051588 0.883820 -0.181241 0.774435 -0.667470 0.157069 0.266435 0.180568 -0.128914 0.733941 -0.721645 -0.470852 0.219588 -1.543066 -0.742298 0.245394 0.773909 0.271948 0.418186 -0.091188 -1.021931 -0.323841 -0.483595 0.235555 1.363895 -0.041871 -1.044984 0.663137 0.211671 -0.620784 -0.481635 0.387521 0.380191 1.502395 -1.739691 0.394245 0.005322 0.084199 -1.444862 -1.285691 -0.148201 -1.100674 -0.728240 0.913743 -1.565448 -0.462839 -1.042238 0.663578 -1.104610 -0.303872 0.036637 1.797587 1.070681 -0.420316 1.121543 -0.163526 1.150116 0.097164 -0.555853 0.476631 1.358388 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -3.601819 1.818670 1.250585 -3.088260 8.573042 -1.030505 0.259666 2.558631 -2.142824 6.006420 -2.183949 -0.593603 -1.834616 -7.083688 0.825807 -2.972681 -0.469980 2.684349 -0.155028 3.441537 2.859988 -3.379415 1.281655 -0.367789 -1.925641 -6.544020 -1.091991 2.478532 5.856099 -3.317304 1.349722 -0.138870 6.502380 -1.786097 5.000668 4.343062 3.197976 4.070610 0.643764 -3.788448 -1.260318 3.020994 -3.568860 -4.406811 1.085523 -1.207927 -5.481788 -2.254795 3.152415 -2.276367 -3.085509 5.652903 -1.785127 -0.629899 -3.823119 4.792912 2.950323 -0.636500 6.429304 0.614089 -0.748025 -2.167655 -6.307009 4.724710 -2.911523 0.302011 -2.976701 -4.508335 0.340543 0.414936 -2.761590 -2.031417 -1.375989 5.231520 4.171046 -4.977095 0.870827 -2.743622 -4.411114 -5.536549 -4.707879 1.607927 -1.165150 4.967826 0.751319 2.255179 3.102836 2.929271 -1.396746 -7.781487 1.470876 5.455034 -3.022641 -1.882199 -1.972530 4.556067 1.201013 0.168879 -3.046326 -2.313652 1.117060 -1.549551 3.386271 -3.606050 2.532378 -5.330791 -0.808692 -1.332130 2.550007 3.070773 2.485051 0.218913 2.375492 5.521877 -5.637148 -0.077320 -5.255629 1.632811 -2.016378 2.254254 -2.133097 3.468723 2.149372 2.478108 5.595741 -8.200338 2.367792 -0.257873 -0.401679 -5.437060 0.414510 -2.038977 -1.386268 -1.681676 3.502761 -1.718951 -1.081323 -1.994885 2.305783 2.009725 -3.042550 -0.082566 1.103262 4.973374 -6.066406 2.115406 -1.476514 -2.629077 -0.202075 2.417635 4.571548 5.229182 7.213743 5.767413 -0.956401 5.485508 -6.371831 0.933213 6.241925 0.559395 -4.515687 5.775828 -5.014830 -1.453246 1.171101 4.671402 4.844621 2.040123 -4.102026 -3.007221 3.959864 2.006751 6.186403 0.084132 0.482353 -3.683579 3.433615 0.135530 -2.397823 7.232528 2.285810 -6.010637 4.548538 2.663210 -5.285303 -2.166068 2.873602 -4.554092 0.020800 -3.240074 1.527815 4.067794 -2.930110 -1.893300 -0.115056 -4.615117 5.255843 -1.620237 -0.882228 3.984065 -3.702270 -5.612815 5.457990 0.193673 -1.524999 -5.193304 -5.210600 -3.232451 -4.789203 2.247448 -0.064855 -2.397212 -2.564553 -5.413226 -1.451389 5.205149 1.905422 3.728620 -9.107968 -0.106203 2.834044 3.529675 3.373267 -1.606287 -0.699951 0.484122 -0.986359 0.527975 -1.471935 3.102548 6.699341 -4.631623 3.114542 -3.412513 -4.510343 2.664968 2.797796 -6.824325 7.257854 1.683392 5.464386 -0.264189 1.968929 -2.743788 1.651158 1.417038 -2.131097 0.509433 0.743932 -1.914204 -2.579992 1.625558 -4.034700 -4.882594 -1.184393 2.394554 0.146439 2.250377 -0.678567 -2.861782 -1.527117 -1.810440 1.576580 4.071032 -0.572595 -1.632679 3.651633 1.436392 0.908558 -1.717477 0.739697 2.031674 3.581595 -6.769875 0.855423 -1.379385 2.102041 -3.577772 -6.639846 1.179439 -3.753886 -1.978148 3.389630 -6.702187 0.089336 -4.348978 0.357304 -5.125953 -0.775477 1.020128 6.976463 2.108836 -2.335369 3.440532 -1.849025 2.884617 -0.958962 0.023653 1.867745 3.308588 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -2.010963 1.569997 0.517231 -1.815297 4.773269 -1.681691 0.615408 1.112358 -1.543748 3.093369 -1.264827 -0.444138 -0.941340 -4.612397 0.744461 -1.805520 0.134119 2.171048 0.393293 2.514501 1.546474 -2.346983 0.453681 -0.367737 -0.995602 -3.839663 -0.359068 1.510222 3.207951 -2.330794 0.955554 0.547101 4.100493 -0.733599 3.257739 2.861766 0.904686 2.469661 1.307038 -3.410671 -0.481750 1.585769 -1.709991 -2.680337 0.339231 -0.112217 -3.036312 -1.699337 1.674792 -0.907591 -1.773262 3.119921 -0.874888 -0.313428 -3.089141 2.443956 2.156806 0.185983 3.436128 0.520277 0.157429 -0.733611 -3.427029 2.274669 -1.853633 -0.852989 -1.483841 -2.219354 0.952230 0.682998 -1.480081 -1.529756 -0.771340 2.544394 2.330512 -2.822259 0.541964 -1.205334 -3.371476 -3.343912 -2.824178 0.993771 -1.130520 3.135627 0.329125 1.243817 0.973838 1.453865 -0.497628 -4.032404 0.612638 3.059054 -1.295815 -1.505521 -0.317920 3.834400 1.636749 -0.417068 -1.701916 -1.739067 0.716113 -1.638142 1.916722 -1.618768 1.646832 -2.797250 -0.858169 -0.777026 1.157362 2.941334 1.963385 0.772920 1.505456 2.664285 -3.306071 -0.769254 -3.615454 1.038182 -1.395792 0.820341 -0.886989 1.827899 1.144656 1.542202 2.772831 -4.834422 1.632785 0.324510 0.583324 -2.925780 0.397726 -0.616192 -0.702205 -1.270539 2.119443 -0.744035 -0.416569 -0.624832 1.039086 1.389532 -1.175702 0.162391 0.515861 4.012511 -3.630441 1.306052 -0.799105 -1.563556 0.002079 0.847005 2.382730 2.818216 4.055194 3.202430 -0.947063 2.804991 -3.808664 0.501761 3.763606 -0.064216 -2.253160 3.413734 -2.224123 -1.209001 0.468770 2.986871 2.753254 0.472884 -2.856801 -2.437407 2.068680 0.748070 3.236635 -0.442220 -0.101204 -2.073330 2.886004 0.735727 -1.646947 4.272067 0.606956 -2.928160 2.391641 2.000471 -3.658763 -1.504669 1.644579 -2.590499 0.136206 -1.892094 1.153131 2.154902 -1.779999 -1.117447 -0.612587 -2.410397 2.483734 -0.950966 -1.363802 1.717615 -1.773179 -2.847396 3.700812 0.197347 -0.501165 -2.733520 -3.243780 -1.662148 -2.899740 1.125241 -0.323346 -1.210526 -1.021353 -2.741129 -1.062817 3.135099 0.644959 1.786492 -5.004929 0.253044 1.711616 2.903810 1.273656 -0.796340 -0.380375 1.268587 -0.159747 -0.293502 -0.532992 2.422788 3.887656 -2.620447 1.242100 -1.379647 -2.058908 2.322000 1.786409 -4.132783 4.098967 0.750028 3.665646 0.219877 0.861281 -1.418218 0.492878 0.922806 -1.384304 -0.276501 0.178633 -1.254567 -1.317617 1.197107 -1.711472 -3.184781 -0.511931 1.778008 0.222972 1.158745 -0.464052 -1.335992 -0.559253 -0.991570 1.163480 2.132097 0.122876 -0.752119 2.209140 1.550801 0.827646 -0.561521 0.266128 1.228960 1.995423 -3.747321 0.950459 -0.936429 1.800796 -1.605090 -4.199617 1.583326 -2.085976 -1.174307 1.899782 -4.020005 -0.339149 -2.281949 0.654584 -3.505293 -0.014103 0.680598 3.818090 0.909534 -1.307800 1.633260 -1.264794 1.201278 -0.746534 0.019599 0.744736 2.147795 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -2.975265 2.869035 1.851401 -2.394709 6.741778 -0.415957 0.789930 3.576061 -3.672121 5.520853 -1.931719 0.593900 -1.292437 -5.496536 0.328730 -2.785120 -0.490254 2.099805 0.262285 3.846714 2.534484 -3.090507 0.512249 -0.610522 -2.271981 -4.978708 -0.481288 1.712298 4.867884 -2.514554 1.684337 -0.147180 6.014872 -1.120006 5.514711 4.497924 2.119867 3.726698 1.775484 -3.216751 -1.976033 2.842471 -3.447432 -3.995611 0.364300 -1.441550 -3.620958 -1.847975 1.762589 -1.909400 -2.138034 4.594904 -1.528356 0.307196 -3.219638 3.711815 1.847100 -0.910371 5.961566 0.416622 -1.344728 -1.916719 -5.163730 4.424934 -2.088101 -0.058012 -2.191755 -3.569692 1.839414 -0.409104 -1.790545 -2.202932 -0.674048 5.307450 2.570826 -4.753409 0.585204 -2.711180 -5.867040 -4.147445 -3.632800 1.511148 -0.616725 3.757512 0.925431 1.847205 1.054833 3.244789 -1.420990 -7.511192 1.458613 5.035708 -3.109462 -1.540899 -2.313628 4.447037 1.229086 1.112426 -2.651362 -1.221630 1.515056 -0.964910 2.670706 -4.681441 1.985173 -5.163366 -0.702371 -1.270288 1.622720 3.165610 2.088076 1.520352 3.730402 5.171411 -4.559378 0.353900 -4.295759 1.515921 -1.917470 1.495658 -1.605393 3.017244 1.161299 2.008127 5.451229 -7.070230 1.333074 0.005012 -0.309734 -5.588621 0.287513 -2.767811 -1.238409 -2.069713 2.927409 -0.703526 -0.332009 -2.660874 1.051364 1.487927 -2.472214 -2.472523 1.757140 5.134904 -5.580490 1.499906 -1.267006 -1.539956 -0.733163 2.776904 4.170723 4.591903 6.075747 4.800941 -0.332208 4.091161 -5.220196 -0.356851 5.212125 1.637895 -4.473457 5.523076 -4.589189 -2.065114 0.798228 3.810062 4.411784 1.814779 -5.299962 -4.663670 3.489637 1.528045 5.741293 0.303001 0.436520 -2.020218 4.353960 -0.153324 -3.641497 5.934357 1.646681 -4.846849 3.004726 1.699500 -3.963956 -1.840119 3.136365 -4.669050 0.082951 -2.167077 0.058714 2.994987 -2.390872 -1.053500 0.327680 -4.610671 5.328041 -0.986390 0.043815 2.277865 -3.428536 -4.702626 4.715378 0.450593 -1.688743 -4.464271 -3.933799 -3.462873 -4.363999 1.755966 0.159052 -1.670187 -2.787128 -5.114269 -0.840955 3.282518 1.393376 3.148350 -6.983961 -1.547069 2.514751 2.308690 2.874324 -2.715683 -0.786798 -0.169534 -0.485491 1.462105 -1.273588 4.258264 6.879719 -2.964903 2.997726 -1.379755 -3.237237 2.095622 2.637078 -6.701722 6.237730 0.455995 4.064429 0.100675 1.571575 -2.795183 0.893997 1.106248 -0.834591 0.664195 0.361545 -1.133050 -1.921379 0.163685 -4.155150 -2.957061 -1.297891 1.257756 -0.678631 1.838632 -0.351500 -3.007744 -1.923697 -3.285993 0.927818 3.734832 -0.787685 -1.455562 3.711763 0.201077 1.125570 -0.301091 0.258947 1.819160 2.331844 -6.028391 -0.068237 -1.285681 1.224549 -3.468551 -5.619548 0.763972 -3.408136 -2.442079 2.286054 -5.167692 0.601139 -3.731648 -0.404116 -5.631914 -1.403037 1.092158 6.791519 1.346539 -2.718797 2.277703 -2.178653 3.465539 0.123905 0.928063 0.586960 3.172456 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -1.605961 0.720524 -0.568336 -1.152461 3.354867 -1.008456 0.273170 0.863469 -0.926348 2.451046 -0.896355 -0.613111 -0.815477 -3.246911 0.433626 -0.478580 0.283110 1.479693 0.176702 1.604232 1.215640 -1.741871 0.435120 -0.163019 -0.752403 -2.143898 -0.283796 1.108980 2.363683 -1.953435 0.104235 0.392217 3.128427 -0.391421 2.599810 2.081298 0.679977 2.019460 1.191043 -2.362943 -0.547783 1.352092 -1.385678 -2.095926 0.418333 -0.341630 -1.993835 -1.266558 1.331103 -0.499732 -0.263342 2.338604 -0.715612 -0.043893 -2.298627 1.382373 1.439702 0.139204 2.898247 0.322397 -0.124797 -0.462558 -2.165430 2.003758 -1.413001 -0.586725 -0.871764 -1.801686 0.668694 0.287395 -0.512731 -1.421133 -1.025545 2.059247 1.539610 -2.163868 0.472056 -0.832412 -1.761257 -2.766986 -2.368195 0.661168 -0.935036 2.373833 0.157590 0.908522 0.419641 1.117517 -0.452609 -3.225661 0.655377 2.070208 -1.145063 -0.552286 -0.250238 2.634245 0.717900 -0.089270 -1.557294 -1.011020 0.461777 -1.110446 1.446402 -0.776847 1.356539 -1.744536 -0.289860 -0.774551 0.913638 1.730879 2.232176 0.421446 1.398250 2.203271 -1.990022 -0.784049 -2.453214 0.834519 -0.662699 0.577516 -0.615204 1.525559 0.853872 0.495519 2.358600 -3.734942 0.955613 0.169208 0.285173 -2.374475 0.183380 -0.691895 -0.644193 -0.973842 1.743413 -0.655702 -0.353338 -0.765139 0.720543 0.992165 -1.531588 0.218445 0.395523 2.803563 -2.381124 0.895404 -0.660615 -1.360779 -0.032722 0.819610 1.766138 2.300753 2.980816 2.466869 -0.777230 1.766032 -2.951704 0.407338 2.775365 0.205949 -1.980913 2.537734 -1.822003 -0.766081 0.596767 2.297784 2.269622 -0.170595 -1.525509 -1.216856 1.722412 0.875731 2.610000 -0.684166 0.286014 -1.093539 1.697117 1.123867 -1.042853 3.348015 0.211227 -2.310907 1.798176 1.304289 -2.095003 -0.712869 1.318707 -1.924565 0.007930 -1.570946 0.887095 1.745191 -1.478799 -0.568127 -0.218751 -1.959827 2.141843 -0.731901 -0.916877 1.518101 -1.891555 -1.279166 2.756344 0.169697 -0.321629 -1.997950 -2.474586 -1.136313 -2.231919 0.859479 -0.241762 -0.839732 -0.741712 -2.230118 -0.753251 2.388062 0.791599 1.448009 -3.522210 0.217594 1.340634 1.677691 0.927200 -0.699670 -0.349202 1.035333 -0.011665 0.092772 -0.480290 1.538638 2.707270 -2.054220 0.622803 -0.440586 -0.595033 1.675893 1.048367 -3.124987 3.093797 0.388607 2.390721 0.048020 0.731190 -1.023427 0.416338 0.593884 -0.170481 -0.239917 0.147174 -0.891277 -1.015783 0.888701 -1.241329 -2.324566 -0.579291 1.162934 0.241546 0.960773 -0.694041 -0.976691 -0.494183 -0.830591 0.930441 1.689808 0.127769 -0.570596 1.748429 0.769575 0.688662 0.054126 0.221600 0.845412 1.612538 -2.893247 0.335430 -0.652190 1.322411 -0.993382 -2.992685 0.835262 -1.313871 -0.536740 1.784282 -3.127740 -0.230883 -1.757372 0.339748 -2.388752 0.617541 0.259103 3.045282 0.859216 -1.056510 1.290879 -0.822788 1.003631 -0.515112 -0.043775 0.629832 1.735016 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -1.605961 0.720524 -0.568337 -1.152461 3.354868 -1.008458 0.273170 0.863470 -0.926348 2.451046 -0.896355 -0.613111 -0.815477 -3.246912 0.433626 -0.478578 0.283110 1.479694 0.176702 1.604233 1.215641 -1.741871 0.435119 -0.163019 -0.752403 -2.143897 -0.283796 1.108980 2.363683 -1.953436 0.104234 0.392217 3.128427 -0.391421 2.599810 2.081298 0.679977 2.019460 1.191044 -2.362945 -0.547783 1.352092 -1.385678 -2.095927 0.418333 -0.341629 -1.993835 -1.266558 1.331103 -0.499732 -0.263341 2.338604 -0.715612 -0.043893 -2.298627 1.382373 1.439701 0.139204 2.898247 0.322397 -0.124797 -0.462558 -2.165430 2.003759 -1.413001 -0.586725 -0.871764 -1.801686 0.668694 0.287395 -0.512730 -1.421135 -1.025545 2.059247 1.539610 -2.163868 0.472056 -0.832412 -1.761255 -2.766987 -2.368196 0.661168 -0.935038 2.373833 0.157590 0.908522 0.419640 1.117517 -0.452609 -3.225661 0.655377 2.070208 -1.145063 -0.552286 -0.250239 2.634245 0.717900 -0.089270 -1.557294 -1.011022 0.461777 -1.110446 1.446402 -0.776846 1.356540 -1.744536 -0.289860 -0.774551 0.913638 1.730879 2.232177 0.421446 1.398250 2.203271 -1.990022 -0.784050 -2.453215 0.834519 -0.662699 0.577517 -0.615204 1.525559 0.853872 0.495519 2.358600 -3.734943 0.955613 0.169208 0.285173 -2.374476 0.183380 -0.691895 -0.644193 -0.973842 1.743413 -0.655702 -0.353338 -0.765139 0.720544 0.992165 -1.531589 0.218445 0.395523 2.803565 -2.381125 0.895404 -0.660615 -1.360779 -0.032722 0.819610 1.766138 2.300753 2.980816 2.466870 -0.777230 1.766032 -2.951705 0.407338 2.775365 0.205948 -1.980913 2.537734 -1.822003 -0.766081 0.596767 2.297785 2.269622 -0.170596 -1.525509 -1.216856 1.722413 0.875731 2.610000 -0.684167 0.286014 -1.093539 1.697117 1.123868 -1.042854 3.348016 0.211227 -2.310907 1.798176 1.304289 -2.095002 -0.712869 1.318707 -1.924565 0.007930 -1.570946 0.887095 1.745191 -1.478800 -0.568127 -0.218751 -1.959827 2.141843 -0.731901 -0.916878 1.518101 -1.891555 -1.279165 2.756345 0.169697 -0.321629 -1.997951 -2.474587 -1.136313 -2.231919 0.859479 -0.241762 -0.839732 -0.741713 -2.230118 -0.753251 2.388064 0.791599 1.448009 -3.522210 0.217594 1.340634 1.677691 0.927201 -0.699671 -0.349202 1.035333 -0.011665 0.092772 -0.480289 1.538638 2.707270 -2.054221 0.622803 -0.440584 -0.595032 1.675893 1.048368 -3.124988 3.093797 0.388608 2.390722 0.048020 0.731190 -1.023427 0.416338 0.593884 -0.170480 -0.239917 0.147174 -0.891276 -1.015783 0.888701 -1.241329 -2.324568 -0.579291 1.162934 0.241546 0.960773 -0.694042 -0.976691 -0.494183 -0.830592 0.930441 1.689809 0.127769 -0.570596 1.748429 0.769575 0.688662 0.054127 0.221600 0.845412 1.612538 -2.893247 0.335431 -0.652190 1.322412 -0.993382 -2.992686 0.835262 -1.313871 -0.536739 1.784282 -3.127741 -0.230884 -1.757372 0.339748 -2.388753 0.617542 0.259103 3.045282 0.859216 -1.056510 1.290880 -0.822788 1.003631 -0.515112 -0.043775 0.629832 1.735016 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -2.210542 1.118830 -0.077234 -1.602517 5.061755 -1.342943 0.595762 1.413610 -1.723059 3.571574 -1.136778 -0.989916 -1.255546 -4.473968 0.576446 -0.907138 0.202871 2.030721 0.344148 2.563400 1.660084 -2.575038 0.633036 -0.097317 -1.110887 -2.679974 -0.511542 1.596918 3.775868 -2.858414 0.018287 0.340952 4.375615 -0.691639 3.823727 2.895753 0.585787 2.642025 1.410537 -4.101560 -0.995314 1.950815 -2.139937 -2.739163 0.439011 -0.472108 -2.808652 -1.952268 1.903010 -0.500579 -0.933171 3.383550 -1.138479 -0.043092 -3.072834 2.323604 1.794595 0.361757 4.106613 0.342043 0.072127 -0.317465 -3.556916 2.124604 -1.588270 -0.701831 -1.887808 -2.475590 1.052549 0.099731 -0.929879 -2.433532 -0.770625 3.247139 2.173010 -3.048972 0.703929 -1.309359 -2.412460 -4.355905 -3.655853 0.935375 -1.367264 3.295083 0.218232 1.339812 0.666562 1.811317 -0.843700 -4.793351 1.110415 2.879582 -1.651707 -1.371880 0.201152 3.726860 0.934515 0.064199 -2.216578 -1.324194 0.696284 -1.586610 2.058525 -1.700865 2.836033 -2.619928 -0.711330 -1.011799 1.603140 2.216365 3.512695 0.606776 2.213336 3.373122 -3.123978 -0.966623 -3.461199 1.007919 -1.313131 0.878022 -0.917142 2.465173 1.138777 0.978327 3.433641 -5.710709 1.085751 0.136468 0.417328 -3.452079 0.227129 -1.182411 -0.883713 -1.370540 2.330325 -0.944865 -0.509202 -1.225501 1.073140 1.330101 -2.005899 0.887230 0.791502 4.131907 -3.794725 1.263313 -0.880255 -1.817200 0.038690 1.323994 2.753306 3.364304 4.267973 3.516659 -1.129883 1.937337 -4.221088 0.486112 3.586964 -0.586911 -2.642529 3.759766 -2.522309 -1.166718 0.796460 3.395689 3.375779 -0.169312 -2.410292 -2.042488 2.782423 1.402849 3.697630 -1.088968 0.493542 -1.247820 2.594887 0.833212 -1.885663 4.488474 0.369202 -3.222961 2.366515 1.633727 -2.986319 -1.083070 2.014220 -2.883264 0.229500 -2.068086 0.953292 2.470424 -1.908467 -0.775836 -0.264695 -2.762816 3.161291 -1.078151 -1.235734 2.205475 -2.287282 -1.549597 3.912940 0.377416 -0.557646 -2.987288 -3.575857 -1.829824 -2.953611 1.288819 -0.471102 -1.003399 -1.220870 -3.192585 -0.981741 3.209751 1.310443 2.161794 -4.771725 0.352374 1.818036 2.298544 1.713094 -0.672404 -0.444647 1.299944 -0.506597 0.121216 -0.709918 2.492168 4.027032 -2.811303 1.116115 -0.553728 -0.753319 2.323166 1.353989 -4.585665 4.401674 0.771300 4.021915 -0.066082 1.002656 -1.447902 0.654723 1.011350 -0.418307 -0.100420 0.235385 -1.002447 -1.470788 0.857357 -2.103258 -3.372278 -1.037585 1.457996 -0.066137 1.464511 -0.781828 -1.737201 -0.773612 -1.455972 1.306334 2.380465 0.003274 -0.782725 2.545591 0.966437 1.238512 -0.048170 0.258462 1.088351 2.111284 -4.121113 0.229387 -1.015582 2.125426 -1.233192 -4.269538 1.082498 -1.955407 -0.820059 2.597367 -4.078375 -0.109648 -2.589192 0.190654 -3.743881 0.634271 0.504112 4.405922 1.268698 -1.752268 1.656768 -1.261273 1.487907 -0.653032 -0.148736 0.726728 2.156193 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -1.380795 0.983260 0.300785 -1.340021 3.630011 -0.984781 0.269858 0.868923 -0.086024 2.246268 -1.047368 -1.090192 -0.566707 -3.082248 0.451378 -1.379432 -0.251911 1.697197 -0.031504 1.376969 1.003570 -1.155426 0.240899 -0.227193 -0.765669 -2.100124 -0.767712 1.081073 1.933502 -1.863081 0.289266 0.294269 3.094283 -0.570972 2.547210 1.985657 0.784674 1.739484 0.545421 -1.253360 -0.058898 1.044186 -1.288596 -1.739843 0.163902 -0.197991 -2.106902 -1.211939 1.074244 -0.610751 -0.097192 2.096327 -0.516499 -0.154419 -1.741999 1.682937 0.859349 0.513626 2.358917 0.447211 -0.246198 0.411860 -2.785184 1.800572 -1.279214 0.230898 -1.210278 -1.904111 0.192612 0.428535 -0.150487 -1.650007 -0.857330 1.890966 1.527275 -1.817007 0.425614 -0.985332 -1.541647 -2.188391 -2.196639 0.941778 -0.803156 1.965785 0.214849 0.776944 0.429480 1.074504 -0.532151 -2.864271 0.271136 2.295004 -1.067623 -0.787049 -0.437583 1.811453 0.864638 -0.061200 -1.039582 -1.168619 0.572489 -0.890090 1.211801 -0.568027 1.247975 -1.863055 -0.319371 -0.026664 0.555341 1.387571 1.690034 0.482259 1.233837 1.995312 -2.057563 -0.507713 -2.479850 0.767832 -1.085615 0.594628 -0.615664 1.309527 0.539727 1.103102 1.930566 -3.550828 0.978503 -0.000738 -0.130160 -1.918219 0.170990 -0.562012 -0.749974 -0.806476 1.269094 -0.197374 -0.370728 -0.510685 0.546132 0.746016 -0.831063 0.024348 0.491296 2.108767 -2.124695 0.725744 -0.436760 -1.010089 -0.262076 0.979361 1.942124 1.906180 2.855104 2.133327 -0.425796 0.668494 -2.804900 0.243662 2.331233 -0.729413 -1.634627 2.477516 -1.580642 -0.695809 0.387471 2.299161 1.565737 0.357680 -1.548990 -1.322259 0.880038 0.522803 2.354539 -0.236162 -0.162189 -1.122287 1.539606 0.228521 -1.340452 3.359166 0.738873 -2.018304 0.961110 1.275014 -2.170708 -1.369464 1.398408 -1.850371 0.060541 -1.182761 0.691743 1.384292 -1.037197 -0.655105 0.029418 -1.753198 1.948577 -0.706323 -1.112530 1.136002 -1.488926 -1.980146 2.968987 0.046431 -0.391501 -1.665879 -2.158237 -0.489795 -1.935840 0.761642 0.154869 -0.720480 -0.821868 -1.812282 -0.188867 2.425321 0.212835 1.437275 -2.525074 -0.229053 1.122256 1.154007 1.236117 -0.866442 -0.214125 0.383146 -0.151951 -0.080593 -0.399598 1.264967 2.985097 -1.616737 0.887567 0.006359 -1.334321 0.995010 1.209017 -2.796801 2.911483 0.415766 1.922384 0.041231 0.589674 -0.903817 0.196805 0.658579 -0.431750 -0.135127 0.261030 -0.702707 -0.798244 0.329834 -1.620343 -1.897001 -0.221625 1.216151 -0.127026 0.785548 -0.326856 -1.220161 -0.395372 -0.713763 0.659775 1.475992 0.215808 -0.626182 1.605750 0.835220 0.253668 -0.366703 0.096860 0.742656 1.537501 -2.543169 0.497387 -0.384488 1.226427 -1.346610 -2.813497 0.552864 -1.749378 -0.594029 0.852396 -2.495516 -0.633025 -1.629526 0.348526 -2.174681 -0.124173 0.788958 2.806577 1.215408 -1.147023 0.995138 -0.853404 1.129089 -0.212471 -0.396856 0.751291 1.443644 +PE-benchmarks/sudoku.cpp__main = -1.791121 0.504225 0.584420 -1.474012 3.821462 -0.811287 -0.150371 0.987811 0.358364 2.395681 -1.374281 -1.355407 -1.081239 -2.962476 0.472517 -1.298644 -0.021096 1.703240 -0.554789 1.164158 1.512153 -0.837119 0.459638 -0.470230 -0.678258 -2.051970 -1.018467 1.050261 1.679614 -1.481417 -0.037233 0.377372 3.324664 -0.491464 2.780608 2.233371 1.381438 2.492442 0.038688 -0.708389 -0.014491 1.614674 -1.548662 -2.525067 0.807154 -0.794538 -2.292661 -1.601483 1.484756 -1.063609 0.239456 2.475729 -0.577607 -0.255180 -1.714695 1.644964 1.013350 0.783011 2.898915 0.694995 -0.724161 0.601341 -2.969526 1.770521 -1.722643 1.153213 -1.213249 -2.554750 -0.452140 0.387783 0.357865 -1.574166 -1.436327 1.843313 1.524853 -1.874694 0.752519 -0.961376 -0.697122 -2.266951 -2.710663 0.807597 -0.890437 2.186147 -0.051856 0.734646 0.423318 1.073425 -0.286086 -3.106565 0.228998 2.419927 -1.322380 -0.197142 -0.856721 1.217711 0.476745 -0.023885 -1.372438 -1.099724 0.680079 -0.744370 1.481379 0.077403 1.080281 -1.721163 0.349480 0.270212 0.805322 0.943617 1.362852 0.292703 1.355044 2.048729 -1.765086 0.190109 -2.547480 0.871660 -1.216601 0.749299 -0.587970 1.643516 0.928999 0.677588 2.213521 -3.378501 1.326079 0.045804 -0.672891 -1.783499 0.575119 -0.801512 -1.079584 -0.988976 1.851266 -0.253957 -0.677043 -0.691866 0.804865 0.458351 -1.035622 0.080157 0.027525 1.319035 -1.668367 0.716972 -0.798402 -1.613421 -0.080025 1.121935 1.737418 2.221179 3.289460 2.650049 -0.801863 0.154349 -3.025344 0.476471 2.790830 -0.857702 -2.178200 2.372360 -1.485670 -0.338289 0.810025 2.249759 1.814580 0.913120 -0.936272 -0.957214 -0.020311 0.579883 2.810378 0.555640 0.360164 -1.533320 0.963140 -0.038684 -1.045147 3.658697 1.032725 -2.492950 0.788672 1.517106 -2.126074 -1.712509 1.169207 -1.640714 -0.036882 -1.573633 1.041062 1.698672 -1.695441 -1.075309 0.429373 -2.270750 2.245024 -0.726606 -0.834134 1.403368 -2.407767 -2.235850 3.180026 0.065475 -0.625437 -1.862047 -2.360948 -0.263227 -2.501746 1.124064 0.222366 -0.611615 -1.202585 -2.138769 -0.107846 2.575345 0.345790 1.469023 -2.438353 -0.319608 1.291060 0.603397 1.600503 -1.175601 -0.545149 0.189944 -0.468116 0.484554 -0.433097 0.771857 3.211224 -2.131312 0.851680 0.276993 -1.754254 0.719638 1.642470 -2.849717 3.290804 0.314601 1.491187 -0.158196 0.996162 -1.092266 0.328373 0.627364 -0.243715 -0.142610 0.762850 -0.949168 -0.929669 0.448744 -1.927909 -1.738963 -0.103368 1.288742 0.047878 0.910744 -0.305619 -1.649683 -0.362552 -0.562505 0.680090 2.052174 0.029231 -1.142575 1.493272 0.728730 -0.332885 -0.737491 0.406695 0.592437 2.195868 -3.023217 0.645615 -0.263580 0.853138 -1.711464 -2.327662 0.149825 -1.905039 -0.538360 1.504997 -2.559769 -0.685124 -1.903309 0.643477 -1.282765 -0.272287 0.462991 2.981147 1.836142 -1.059766 1.517910 -0.654046 1.500389 -0.062582 -0.833404 0.759370 1.911111 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -5.345862 3.216600 1.679910 -5.164272 10.687863 -2.148821 0.365434 3.133887 -0.363874 7.289802 -4.969325 -0.427325 -2.043265 -7.700124 0.542794 -3.858301 -0.549750 4.944255 -1.340145 3.966649 4.000727 -2.605277 1.969224 -2.017365 -2.671552 -7.628369 -1.801701 2.872774 3.571600 -2.977464 2.481130 0.218865 8.673986 -1.523055 6.530296 6.096685 3.283084 7.476419 0.830640 -0.185339 0.662990 3.809950 -3.757045 -7.168787 2.238820 -2.074413 -6.560433 -4.572801 3.947045 -5.780205 0.915974 6.668874 -1.271985 -1.854781 -5.250342 5.214491 4.720561 -0.195719 8.310945 1.386008 -3.161112 0.349301 -7.282524 5.933811 -5.058376 2.353747 -1.607236 -6.966625 -0.722602 2.361796 0.995948 -3.923341 -4.427289 4.359493 3.563006 -6.105396 1.393113 -3.369896 -3.853380 -5.830198 -4.981312 2.215111 -0.709888 5.601343 0.285080 2.506379 0.607952 3.002331 -0.600545 -8.328476 -0.039331 7.015461 -3.327663 -0.232957 -3.326760 4.639650 1.820131 -1.350016 -3.557522 -2.668760 1.656715 -1.295307 4.028494 -1.328167 -0.032295 -5.831986 0.947865 1.234796 1.199731 2.886589 1.527241 2.320539 3.159548 5.455895 -5.314053 2.174865 -8.408742 2.499493 -1.955789 1.922838 -1.825083 3.247884 2.027940 2.757642 6.267099 -8.841553 5.400626 -0.006874 -2.005220 -6.085355 1.632572 -1.108464 -2.190613 -2.290506 4.491797 -0.986026 -1.322419 -1.618242 2.076564 0.790767 -2.962311 -2.442280 0.542311 5.163083 -4.952997 2.587133 -1.936197 -3.441710 -0.196646 2.829112 4.563919 5.005944 9.405351 6.809724 -0.719472 3.352764 -7.905056 0.945038 8.107650 2.636026 -6.041501 6.586357 -4.064544 -1.456786 2.394356 5.160841 4.496535 3.137182 -4.880058 -4.508777 1.756143 0.303344 7.854696 2.230995 0.827114 -6.013333 4.350863 0.119298 -1.496967 10.521705 4.068273 -7.644179 3.112775 4.857118 -5.870738 -4.594752 3.368515 -3.944608 -1.513272 -2.669336 2.170720 4.090678 -4.134621 -4.695751 -0.246814 -6.395534 6.718318 -1.836064 -1.876835 3.527237 -6.430322 -6.483843 7.611431 0.680638 -2.275611 -4.474120 -5.763516 -1.825572 -7.822303 2.573207 1.935217 -2.718058 -3.335754 -6.163066 -0.431742 5.680278 0.059734 3.390237 -7.741977 -2.128359 4.187490 1.918083 3.126366 -4.920588 -1.149373 0.041132 0.163346 1.522645 -0.849207 3.453280 8.989687 -5.553838 3.385590 0.692537 -4.042436 2.617894 5.458136 -7.681043 9.362892 0.320792 5.421987 0.225566 2.661362 -3.099537 1.285746 1.287009 -1.228573 -0.310762 2.113837 -3.977683 -2.969468 1.811745 -5.082391 -4.269910 0.636180 4.083584 0.382881 2.168780 0.267387 -3.659206 -1.933957 -2.414005 1.135041 5.281323 -0.392955 -4.352627 3.850850 2.970863 -1.433930 -2.781216 1.033058 3.024524 5.515140 -8.372011 3.239629 -1.075104 0.616030 -6.522144 -6.760530 2.390154 -5.673333 -3.755550 3.157580 -8.197928 -2.149247 -5.037877 2.469429 -4.859854 -1.367910 1.263715 8.305979 3.739816 -2.211721 4.775702 -2.417488 4.409888 -0.373387 -0.891131 1.720739 6.015974 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -3.763754 2.311664 1.080900 -3.441060 7.915519 -2.174589 0.353324 2.144219 -1.354944 5.612126 -2.711169 -0.853291 -1.748481 -7.054320 0.810659 -2.868701 -0.276576 3.738775 -0.016535 3.885083 2.939878 -3.209556 1.083213 -0.843055 -1.906849 -5.732639 -1.182641 2.445011 4.296839 -3.564152 1.960149 0.466937 6.858246 -1.136768 5.386184 4.837768 1.913556 5.021497 1.298968 -2.632298 -0.626559 2.953886 -3.113276 -4.842736 1.357528 -0.844018 -4.867378 -3.099134 2.917263 -2.685695 -1.193088 5.394606 -1.409287 -0.766223 -4.541587 3.999496 3.382251 0.099628 6.205793 0.938759 -0.887756 -0.210403 -5.879441 3.907507 -3.441838 0.124300 -1.954654 -4.493173 0.761639 0.957469 -0.560062 -2.943268 -2.406024 4.348506 3.350690 -4.823489 1.004685 -2.470490 -4.536340 -5.478368 -4.608462 1.667646 -1.002858 4.864375 0.340203 2.065371 1.442965 2.615984 -0.963871 -6.997588 0.819124 5.049113 -2.514554 -1.456157 -1.548656 5.037831 1.787573 -0.504618 -2.938315 -2.330900 1.296228 -1.946117 3.306432 -1.492939 1.506914 -4.390662 -0.431914 -0.663476 1.544240 3.213278 2.770734 1.431616 2.637547 4.771700 -5.089127 0.043201 -5.965748 1.860975 -1.875139 1.692920 -1.410009 2.987848 1.590457 2.052619 4.971729 -7.703600 2.939904 0.047909 -0.278829 -5.124875 0.846535 -1.309252 -1.443765 -2.154792 3.602539 -1.088301 -0.970989 -1.402786 1.619796 1.656696 -2.117768 -0.673107 0.759940 5.510278 -4.997340 2.092031 -1.513132 -2.810528 -0.106441 1.839834 4.014756 4.654202 7.068426 5.440024 -1.017965 3.500398 -6.331857 0.550637 6.127767 0.946173 -4.272339 5.633317 -3.377780 -1.606428 1.368471 4.695772 4.420391 1.096107 -3.965029 -3.621619 2.805065 1.061768 5.881403 0.001905 0.183922 -3.756546 3.865080 1.306324 -2.216932 7.910908 1.941711 -5.274043 3.358077 3.156487 -5.072232 -3.040987 2.818798 -3.699365 -0.367809 -2.474220 1.710939 3.430716 -2.961107 -2.510391 -0.452739 -4.614241 4.827884 -1.661561 -1.515478 3.254804 -4.129876 -5.350630 5.798651 0.373409 -1.466219 -4.390878 -5.083307 -1.835935 -5.211680 2.163795 0.316552 -1.976982 -2.242441 -4.837816 -0.955867 4.894154 0.927739 2.965839 -7.357241 -0.874642 2.984166 2.706835 2.571437 -2.523693 -0.735412 1.059892 -0.068085 0.424402 -0.522151 3.087591 7.074093 -4.426208 2.034588 -0.696526 -2.970080 2.947876 3.411922 -6.773052 7.170015 0.782615 5.172873 0.051460 1.680047 -2.456675 0.934608 1.601178 -1.146878 -0.080704 0.743976 -2.120363 -2.276864 1.443632 -3.641710 -4.256142 -0.496248 2.747199 0.169012 2.052016 -0.269858 -2.717626 -1.212236 -1.462945 1.381123 4.008997 0.202703 -2.072406 3.552614 2.049975 0.643560 -1.330962 0.570110 2.146830 3.722298 -6.545585 1.747165 -1.356281 1.739715 -3.436159 -6.272158 2.097811 -4.095366 -2.154293 3.020009 -6.551764 -0.696896 -4.036856 1.192728 -4.589942 -0.017694 0.966917 6.568676 2.411295 -2.285718 3.242193 -2.063631 2.971766 -0.773600 -0.457020 1.300665 4.286683 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -5.030410 1.568455 1.710034 -3.929484 10.156798 -3.282008 0.358652 4.026916 1.855335 5.839901 -4.909331 -1.635369 -2.403096 -6.326166 0.886930 -3.423429 0.646098 5.265565 -2.420797 1.834650 3.945748 0.181307 1.370591 -2.478381 -1.895663 -5.842683 -2.221132 2.032869 1.481422 -2.250681 0.534118 1.516798 9.033335 -0.837313 6.905516 5.786349 4.373877 7.328506 0.156810 2.230452 1.776315 3.672996 -3.130686 -7.057532 2.266509 -2.234700 -5.720667 -3.816753 3.475535 -5.305321 3.570862 5.605253 -0.448130 -0.756034 -3.812228 4.274982 3.350964 0.773248 7.022856 2.087647 -4.506054 1.927343 -6.390199 5.988824 -4.936233 4.066505 -1.572240 -7.358373 -2.596374 2.638937 3.134024 -5.245894 -5.219939 2.992023 2.572919 -4.707674 2.042120 -1.657744 0.330641 -4.482099 -5.885235 2.179803 -1.253038 4.561560 -0.089762 1.664444 -1.236639 1.798223 0.525776 -6.877981 -0.761429 6.519687 -4.040861 1.472053 -4.483180 1.142514 1.040527 -0.886135 -2.541243 -4.083653 1.654764 -1.268176 3.227874 0.756659 -0.384907 -3.979043 1.967303 1.999473 0.581014 2.363987 0.607428 2.175661 2.696730 4.138392 -2.892815 2.110539 -8.019254 3.163049 -2.540460 1.156730 -1.314723 2.482053 2.272795 2.224456 4.988029 -7.542001 5.072629 0.256963 -2.674689 -4.299817 1.857881 -1.103298 -2.846087 -2.428718 4.946112 -0.127206 -1.315375 -1.185505 2.118284 -0.105466 -2.235627 -2.911614 -0.978760 2.431229 -3.948225 1.679132 -2.045336 -3.542944 -0.762110 2.659962 3.339912 4.347656 7.765969 6.018068 -1.658910 0.393392 -7.527765 0.862666 7.060577 1.035847 -5.629828 5.538835 -3.541657 -0.441099 2.828330 4.552347 2.865731 2.727291 -2.600896 -2.428645 -0.473578 0.042653 7.163338 2.862730 1.143982 -6.016969 1.720524 -1.495489 -1.469892 10.520788 4.370149 -7.800743 1.336167 5.110008 -3.821548 -5.215742 2.594041 -3.930875 -1.898851 -3.402033 2.693597 3.580666 -4.699315 -3.681112 1.970447 -5.965910 5.545188 -1.157288 -2.360532 2.693826 -7.066036 -5.428374 8.826427 0.617745 -1.334815 -3.338412 -5.558878 -0.115305 -7.747957 2.246650 1.974781 -1.368673 -2.792891 -5.131062 0.297553 6.260388 -0.737354 3.262359 -5.241775 -1.895984 3.476209 -0.257417 3.026523 -5.921496 -1.645178 -0.733730 -0.176521 1.753425 -1.366445 1.138185 8.254902 -5.058493 3.010312 3.157249 -4.622866 0.688427 5.070625 -6.325810 7.752101 -0.186908 3.679351 0.506726 2.977341 -3.582337 0.434484 0.525934 0.310333 -1.591309 2.848340 -4.090550 -2.198701 1.204832 -4.894908 -3.667441 1.070864 3.882724 0.419807 1.248246 -0.288950 -3.723132 -1.067010 -2.682907 1.472393 5.087761 -0.364147 -4.611796 3.216511 2.711381 -3.849648 -2.675231 1.230622 1.895609 6.093476 -7.365134 2.726269 0.204400 0.648415 -6.510222 -6.141473 1.243040 -5.853969 -3.092138 1.959141 -6.926115 -3.391725 -4.037603 3.015210 -4.106920 -1.811716 1.236348 7.303609 4.149807 -1.508098 4.616653 -1.371677 3.788217 0.158235 -1.390412 1.377852 5.682077 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -5.397742 6.080085 3.314454 -3.763777 11.431171 -0.172663 -0.474207 4.037749 -5.384066 10.061159 -3.637102 -1.140484 -2.703359 -9.693822 0.227412 -5.401884 -2.141853 2.836958 0.777384 6.313528 3.759821 -6.270462 0.850487 -0.245898 -3.817190 -8.481462 -1.695664 3.050303 10.752050 -6.530900 0.982818 -0.677907 10.081554 -2.055030 9.063208 7.093499 2.811556 6.453307 2.032280 -6.146720 -4.147970 4.572000 -6.300981 -4.595494 0.585460 -2.801851 -6.385279 -2.812934 4.007958 -0.239884 -2.764729 8.257394 -2.824253 0.388535 -6.159823 7.258647 2.311342 0.864318 11.250211 0.214260 0.084537 -3.281776 -10.752500 5.770127 -3.676743 0.013257 -4.935568 -4.385652 3.405900 -1.752376 -2.679529 -5.398109 -0.767071 10.426779 4.980767 -8.288383 0.634103 -4.752663 -12.570511 -9.174657 -7.717912 2.798480 -0.628180 7.121468 1.275816 3.674588 2.384442 6.610970 -3.490362 -13.732037 3.259023 9.299078 -4.345514 -3.367107 -3.008352 9.291541 0.945438 2.375184 -5.159095 -0.938571 2.686163 -1.502683 4.682623 -10.589414 5.968176 -10.521188 0.416257 -2.612568 2.084192 2.806566 6.127242 1.336069 7.028437 10.988842 -9.336616 -1.571832 -8.860450 0.799812 -1.799232 2.413763 -2.240206 6.065809 -1.146634 3.357070 9.678772 -14.552423 2.172690 -0.911153 -1.377719 -11.352891 -0.439646 -4.859253 -2.089923 -3.074276 4.308490 -1.250298 -1.353806 -4.607004 1.902028 2.597662 -4.985751 -2.427419 4.690323 11.213299 -8.813722 2.660425 -1.791533 -3.072761 -1.641331 4.911242 8.540618 8.167270 11.500125 8.090095 -0.174944 5.665743 -9.208130 -0.797662 7.666103 1.316014 -7.606165 10.389071 -7.193275 -3.603468 0.814645 7.791054 7.835347 2.734008 -8.879649 -8.763015 6.251203 3.381794 9.378869 -0.700609 0.411642 0.544356 9.270632 -0.187679 -7.664334 9.591852 2.621949 -6.150866 4.031065 2.076011 -6.152517 -3.091317 7.066307 -8.097095 1.787798 -3.249617 -0.171289 4.927830 -3.251408 -1.546523 -0.049036 -7.376728 10.392435 -2.118991 0.113399 5.252910 -5.947130 -9.366213 6.885124 -1.067822 -2.960588 -7.729988 -7.264292 -6.563227 -5.796659 3.164029 0.595078 -3.477455 -5.066907 -8.617099 -0.786709 6.069899 3.179172 6.262580 -11.893483 -3.422908 4.003520 4.504312 6.491602 -0.608897 -0.702930 0.324865 -0.477124 2.397335 -1.638577 9.263356 12.861936 -5.300032 5.586511 -5.003158 -4.327047 3.731914 4.181349 -12.099534 10.473101 2.033098 6.660202 -0.539331 2.487337 -3.550401 1.451627 3.623906 -1.641978 2.294010 0.100824 -0.480779 -3.445494 -1.334092 -7.665063 -5.252835 -2.983628 1.627128 -2.308697 3.386565 -0.056391 -4.144212 -3.004726 -4.773457 1.561891 5.844737 0.133492 -0.344276 6.821062 -0.283485 3.809197 3.220301 0.378583 2.391236 4.150741 -9.865171 -1.540641 -2.899492 2.722041 -4.368937 -10.314242 -0.803473 -5.264139 -3.546148 5.223637 -9.714964 1.121063 -6.519049 -1.379715 -8.610890 -1.278390 2.708371 11.833331 4.481769 -5.360424 3.350481 -3.879137 5.678661 -0.049537 -0.486220 2.329061 5.316500 +PE-benchmarks/coin-change.cpp__main = -1.803178 1.366139 0.540566 -1.150705 3.766216 -0.371527 -0.122697 1.922622 -1.068030 2.786089 -1.361781 -0.288985 -0.852959 -2.748458 0.194571 -0.973541 -0.303050 1.338152 -0.278970 1.293584 1.407608 -1.123316 0.266648 -0.366091 -0.981646 -2.144848 -0.526227 0.801751 2.366070 -1.365708 -0.200068 0.118956 3.171663 -0.476444 2.744853 2.125406 1.324769 2.293050 0.482870 -0.926665 -0.722323 1.536831 -1.710104 -2.020995 0.614762 -1.126231 -1.910970 -0.997009 1.299947 -0.857044 0.408088 2.342036 -0.577129 0.068140 -1.529832 1.884986 0.828144 0.215195 3.238641 0.464463 -0.830973 -0.707282 -2.915496 2.148918 -1.305908 0.755155 -1.000471 -2.023127 0.199949 -0.061570 0.146387 -1.969680 -0.829971 2.468016 1.092279 -2.174655 0.607573 -1.094123 -1.893169 -2.446653 -2.478501 0.720944 -0.592170 2.105040 0.042482 0.785993 -0.099631 1.409810 -0.638285 -3.681776 0.497372 2.713273 -1.509734 -0.085878 -1.497329 1.760339 0.138674 0.565633 -1.471240 -0.690732 0.836290 -0.140832 1.320120 -2.095186 1.278496 -2.473497 0.549232 -0.282648 0.598709 0.952178 1.416414 0.493507 1.736639 2.818838 -1.909386 0.012923 -2.832381 0.660189 -0.616655 0.790542 -0.607641 1.528459 0.376263 0.661685 2.596107 -3.885952 1.098482 -0.112370 -0.650767 -2.875926 0.304666 -1.292850 -0.960871 -0.990811 1.643454 -0.230470 -0.611137 -1.199915 0.742356 0.452718 -1.839255 -1.057778 0.617340 2.428192 -2.552315 0.594312 -0.749501 -1.145327 -0.436019 1.421120 2.118772 2.246793 3.304984 2.428138 -0.243983 1.079616 -2.910587 0.096732 2.612906 0.634557 -2.415064 2.654588 -1.999432 -0.609335 0.719158 2.031650 1.930164 1.155239 -1.888602 -1.849790 1.194757 0.769371 2.960207 0.457726 0.547104 -0.702914 1.870160 -0.410588 -1.794867 3.390533 1.116311 -2.400006 0.961999 0.892039 -1.333697 -0.992393 1.634100 -2.149410 0.015028 -1.148167 0.323718 1.596611 -1.498554 -0.908354 0.410348 -2.333182 2.962759 -0.565997 -0.097442 1.341911 -2.396395 -1.875429 2.624170 0.033522 -0.888978 -1.937407 -2.079749 -1.604368 -2.138229 0.968504 0.442051 -0.794309 -1.584271 -2.466295 -0.260890 2.200452 0.570207 1.493689 -3.162854 -0.840064 1.292120 0.532777 1.789352 -1.286966 -0.472007 -0.230015 -0.132851 1.023396 -0.619722 1.948790 3.710177 -1.784154 1.551087 -0.095585 -0.965298 0.664483 1.551537 -3.136274 3.063549 0.343023 1.770036 -0.115325 0.996138 -1.250034 0.304416 0.617046 0.116115 0.258955 0.596637 -0.568173 -0.870715 -0.111367 -2.384520 -1.418744 -0.383626 0.755832 -0.243564 0.833818 -0.283878 -1.351125 -0.822215 -1.476116 0.384473 1.988707 -0.265917 -0.853553 1.668757 -0.036955 0.087551 0.415668 0.359783 0.721165 1.780318 -2.876957 -0.074510 -0.427323 0.553940 -1.884265 -2.780187 -0.308719 -1.532228 -1.202960 1.506474 -2.881801 -0.241759 -1.819389 0.172837 -2.584380 -0.473605 0.494942 3.353372 1.374706 -1.141743 1.419496 -0.764407 1.822108 0.118281 -0.244202 0.614285 1.872064 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -7.952059 9.866726 5.208518 -5.900376 14.919286 0.151095 -0.021221 5.103165 -7.815275 14.991120 -5.579036 -0.587470 -3.377155 -13.274567 -0.301573 -8.538736 -4.725676 3.021372 1.357727 9.189508 5.403308 -9.748535 0.710183 0.037869 -6.339526 -13.163005 -1.858511 4.458077 15.512630 -10.161768 2.450699 -1.735230 13.428131 -3.464593 12.841913 10.601327 4.323099 9.043176 2.564976 -6.341469 -7.281112 6.482102 -9.634600 -5.875369 -0.148419 -3.573227 -9.256884 -3.193130 5.250640 -0.406587 -3.082918 12.303639 -4.673937 0.504122 -8.558474 11.516791 2.262763 0.363129 16.667251 0.061897 -0.249357 -5.106026 -16.043358 10.921553 -4.653890 0.342218 -5.877763 -5.773785 6.368686 -3.603065 -4.740683 -6.192840 -0.868053 15.972410 7.212284 -13.086955 0.103039 -8.479932 -22.200349 -12.215684 -9.826025 4.587243 1.967112 10.222154 2.652180 5.660801 3.495659 10.654113 -6.564046 -20.681088 5.149179 14.611433 -6.568522 -5.232154 -6.299361 14.414830 1.065998 3.806993 -7.392873 -0.612601 4.438221 -1.355338 6.709344 -17.677537 6.642508 -17.069705 0.837842 -3.726918 2.230813 2.217938 7.813813 1.701787 10.590597 17.003368 -13.512462 -1.382756 -12.449400 0.898925 -0.312889 3.869214 -3.238514 8.065137 -3.151946 4.700525 14.724055 -20.102769 2.654320 -1.960242 -3.016605 -17.893122 -1.740375 -7.872128 -2.931548 -4.570640 5.559539 -1.227916 -1.758164 -7.485935 2.577146 3.800678 -6.733574 -5.042711 8.345811 16.466917 -11.736634 3.728730 -2.459618 -3.224566 -3.478519 8.603721 12.866045 11.979633 17.451489 11.390391 2.166798 8.552112 -13.042057 -2.481289 10.769190 4.634965 -11.603398 15.374241 -11.868927 -5.688613 0.285754 11.823492 11.280316 4.202852 -14.495486 -13.332831 10.900647 4.753167 14.296983 -1.480708 0.158733 2.602780 14.780259 0.120159 -11.872617 12.728641 6.189126 -8.805950 5.708854 1.943299 -7.616218 -4.700556 12.041654 -11.806923 2.994645 -3.184268 -1.524046 6.777595 -3.647974 -1.622252 -0.160620 -11.252186 15.995075 -3.210539 2.403217 7.755889 -8.860321 -15.734377 7.979948 -2.164763 -5.278835 -11.632370 -9.507447 -11.733383 -7.634240 4.671971 1.813612 -5.174116 -8.533777 -13.243929 -0.415199 7.510087 4.559895 10.055242 -15.542448 -7.151963 6.163243 6.291076 10.234878 0.040438 -0.830297 -0.717599 0.527049 4.571649 -2.048436 14.359314 19.255780 -6.687651 9.484377 -7.708961 -6.602941 4.739179 6.457649 -17.488363 15.698207 3.453750 6.627762 -0.881662 3.186081 -5.522121 1.956234 5.886488 -2.117177 4.690314 -0.460170 0.399522 -4.891697 -3.896809 -12.474071 -5.943100 -4.614741 1.674602 -4.164659 5.279329 1.224317 -5.653738 -5.745575 -8.879304 1.614377 8.647949 0.735991 0.659267 10.604223 -1.847231 6.295843 7.003134 0.436872 4.030200 5.720378 -14.439425 -2.985395 -4.532096 3.128563 -7.380621 -15.480633 -1.906525 -8.402962 -6.627694 6.577138 -13.802048 2.714068 -9.808430 -3.104930 -13.509082 -2.437576 4.362521 17.460904 6.584559 -8.084003 4.599831 -6.206640 9.398577 0.324495 -0.376041 4.013956 7.863605 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -2.332438 2.117287 1.005096 -1.648169 4.307023 -0.159437 -0.337266 2.029979 -0.994568 3.850175 -1.844364 -0.732347 -0.991056 -3.176486 -0.046862 -1.735615 -1.102257 1.407538 -0.385429 1.793999 1.728864 -1.536637 0.228163 -0.274336 -1.558100 -2.542275 -0.980138 1.092851 2.861713 -2.295127 0.258342 -0.212426 3.844237 -0.723495 3.585016 2.850312 1.369068 2.945370 0.262241 0.136724 -1.278944 1.944489 -2.487896 -2.065213 0.491895 -1.363980 -2.408693 -1.069939 1.468008 -0.892485 1.049166 3.135831 -0.936912 0.136049 -1.737910 2.709564 0.412948 0.410444 4.375055 0.455177 -1.181714 -0.243450 -4.259409 3.197002 -1.507232 1.449406 -1.155224 -2.526401 0.581848 -0.619294 0.466237 -2.482128 -1.188800 3.710126 1.267515 -3.076369 0.547922 -1.999183 -3.699493 -2.980324 -2.984191 1.221158 0.198013 2.480681 0.244605 1.142260 -0.136766 2.373183 -1.443832 -5.141865 0.863054 3.718383 -2.050223 -0.200476 -2.314262 2.307166 -0.160352 1.038220 -1.942166 -0.371971 1.255490 0.039831 1.692803 -3.039882 1.383779 -3.706221 0.881462 -0.124456 0.481235 0.269826 1.951055 0.700259 2.724253 4.148685 -2.609689 0.171750 -3.358285 0.647984 -0.349623 1.074144 -0.716072 1.981888 -0.269390 0.861191 3.685521 -4.791702 1.081576 -0.543626 -1.441865 -4.170417 -0.005864 -2.048084 -1.278736 -1.327716 1.770949 -0.031652 -0.740756 -1.874463 0.682737 0.514087 -1.977153 -1.584152 1.448915 3.008765 -2.546430 0.700836 -0.838145 -1.153288 -0.880028 2.432916 3.133519 3.014995 4.635325 2.939323 0.416762 0.458144 -3.615883 -0.409785 3.060518 1.195382 -3.289071 3.717894 -2.677134 -0.941516 0.647796 2.897992 2.487194 1.533851 -2.742442 -2.783568 1.556352 1.049563 4.023297 0.445399 0.449438 0.081685 2.804179 -0.434368 -2.816543 4.203219 2.051478 -2.670887 0.649039 0.688306 -1.275175 -1.586280 2.872278 -2.682370 0.188930 -0.826069 -0.117367 1.815523 -1.394878 -1.002476 0.709920 -3.230192 4.276605 -0.837919 0.413760 1.880852 -3.368518 -3.542569 2.717700 -0.145179 -1.486652 -2.556830 -2.355716 -2.116522 -2.429992 1.343420 0.970947 -0.889004 -2.340772 -3.316548 0.221034 2.307285 0.773867 2.334196 -3.063449 -2.045552 1.680328 0.004831 2.768447 -1.205546 -0.456224 -0.741815 0.104970 1.654469 -0.535293 2.802631 5.251322 -1.893584 2.309895 0.235099 -1.244157 0.406138 2.085357 -4.187361 4.164889 0.469471 1.050821 -0.304619 1.104607 -1.521694 0.317617 1.214969 0.398240 0.863175 0.495690 -0.148114 -1.106814 -1.075222 -3.707845 -1.099822 -0.683512 0.552473 -0.877971 1.268797 0.080556 -1.910589 -1.416627 -2.054184 0.262190 2.593337 0.100649 -0.645984 2.510265 -0.640357 0.531980 1.400411 0.304569 0.941067 2.170209 -3.806962 -0.466906 -0.643200 0.460332 -2.605611 -3.328313 -0.968750 -2.267506 -1.851306 1.587616 -3.293279 0.007799 -2.514821 -0.299802 -2.868352 -0.849191 0.959082 4.554932 2.250527 -2.054163 1.564873 -1.275066 2.866959 0.463911 -0.638782 0.939012 2.468695 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -10.294690 10.925672 6.039010 -7.373926 18.989952 -0.601298 1.262203 5.078101 -10.132500 16.059336 -8.791179 -2.246502 -5.167825 -18.185228 -0.005355 -10.574570 -4.440378 4.762341 0.275275 10.095209 7.952768 -11.411123 1.426283 -2.086567 -6.349553 -11.539026 -2.416609 4.332717 18.121658 -11.514128 3.871772 -1.941786 15.812555 -3.122747 15.969735 11.990229 4.563938 13.339099 1.662399 -7.429999 -7.509345 9.446068 -10.575308 -12.774387 1.682246 -5.291757 -9.329674 -4.769049 6.848668 -2.553670 -3.146651 13.935761 -4.568571 -0.411868 -11.117636 12.296192 6.447012 3.010192 20.058138 1.027762 -2.248400 -3.945509 -19.737046 10.215195 -6.422729 3.702114 -5.045585 -8.294958 4.921010 -3.456368 -7.608624 -9.415684 -3.636581 17.371076 7.919741 -14.098167 0.855357 -9.152720 -25.894962 -11.991463 -12.851046 3.845643 0.691815 12.266891 1.598241 5.592887 5.815847 10.976075 -5.133292 -23.804518 3.852524 17.228175 -7.645400 -3.837030 -4.950916 15.733149 -0.720081 3.956818 -9.958057 0.205552 4.883390 0.080674 7.885278 -19.889348 4.756824 -21.113401 3.569072 -4.137718 0.727774 3.381721 13.354067 1.983384 10.139827 19.274344 -15.315746 -0.084107 -16.946778 0.603184 -2.297107 5.595051 -3.400569 9.574622 -3.280978 3.214862 16.236494 -24.472385 6.094027 -1.205716 -2.573596 -21.632018 0.149545 -8.909453 -4.531785 -4.950747 7.767747 -1.207841 -2.871906 -7.983039 2.111988 4.044382 -10.251748 -6.818579 8.067426 18.187692 -14.533355 3.718809 -3.985669 -5.560208 -3.715738 8.318273 13.544213 12.683537 20.898242 13.978954 0.488258 10.959685 -15.005243 -1.152030 14.818795 3.308827 -14.882769 15.921469 -13.406891 -4.408892 2.150219 10.899035 14.019505 7.904105 -16.393895 -13.671270 14.966377 3.777144 15.946274 -0.440726 2.809293 -1.114208 18.152629 1.548752 -12.600113 20.075315 5.373543 -14.398329 10.591075 3.380859 -9.528614 -4.769945 11.670040 -12.497209 3.668765 -5.434526 -1.169579 7.270037 -7.098667 -4.592197 -1.473599 -14.082426 19.619065 -3.276414 1.938125 8.379515 -12.375651 -16.678064 12.548008 -0.097099 -7.096579 -13.662307 -11.361401 -14.227959 -10.586628 6.351484 2.820304 -6.610777 -10.996409 -15.044638 0.197351 11.121168 3.800574 10.256690 -16.208219 -8.177380 6.699833 8.434865 12.786300 -2.295158 -2.356302 -0.625619 0.481607 7.009068 -0.498861 15.330077 24.642192 -9.461926 13.284701 -5.223528 -8.330156 5.545199 10.256159 -19.409963 17.811767 1.457350 11.951156 -2.551722 5.254160 -7.271782 2.372862 6.793586 -2.800480 5.377683 0.607791 -0.851805 -5.446575 -3.474972 -15.214813 -6.972866 -3.025622 2.662221 -0.973023 5.566938 0.793097 -5.997327 -5.979536 -8.322810 0.966865 11.605444 0.047535 -4.607133 9.212227 -1.880471 5.064559 5.549672 1.747317 4.019911 8.272305 -16.682216 -2.033657 -5.069064 0.747990 -9.786898 -16.040176 -1.526511 -9.970358 -6.242319 8.922482 -15.660431 4.089295 -10.815194 -1.376693 -16.523489 -2.678008 1.388425 19.422215 8.729335 -6.698044 7.390658 -5.604974 12.066499 1.043627 -1.107601 4.193689 11.187710 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -2.553692 2.199941 1.270590 -1.860785 4.834851 -0.324201 0.146279 1.650815 -1.321710 3.627225 -2.438208 -0.868333 -1.208087 -3.933350 0.088955 -2.191675 -0.911520 1.521105 -0.537051 1.732092 2.027286 -1.773292 0.348039 -0.783418 -1.374842 -2.388900 -0.909005 0.959829 3.341444 -2.228073 0.362050 -0.218297 3.929144 -0.691540 3.814951 2.846019 1.566316 3.466045 0.044896 -0.472245 -1.035842 2.294553 -2.369648 -3.357178 0.693505 -1.555606 -2.321296 -1.318213 1.686514 -1.233169 0.628401 3.153919 -0.779549 -0.189074 -2.230079 2.741629 1.346083 0.919183 4.589783 0.612787 -1.300099 -0.263084 -4.584301 2.745201 -1.776661 1.899475 -1.029401 -2.690650 0.185555 -0.324856 -0.589511 -2.657262 -1.504939 3.474760 1.515253 -2.988283 0.581378 -1.929614 -4.135471 -2.514959 -3.159150 0.985390 -0.133798 2.741407 0.109270 1.037081 0.505313 2.148835 -0.878177 -5.160682 0.380725 4.061836 -1.992999 -0.117570 -1.679858 2.489785 -0.261342 0.799449 -2.148286 -0.336583 1.194787 0.297861 1.736728 -3.465660 0.843172 -4.360586 1.303215 -0.137975 0.063643 0.603355 2.570880 0.575778 2.190385 4.070194 -2.806733 0.401569 -4.115877 0.453376 -0.734545 1.281470 -0.754295 2.053453 -0.307495 0.660094 3.529438 -5.264050 1.846051 -0.244531 -1.135910 -4.409038 0.381082 -1.908028 -1.460127 -1.148873 1.983407 0.008617 -0.847387 -1.661132 0.612463 0.513407 -2.375255 -1.786408 1.290248 3.164216 -2.992641 0.664487 -1.010563 -1.452589 -0.892435 2.072622 2.920398 2.737712 4.877840 3.244063 0.006369 1.389883 -3.676652 -0.005552 3.622839 0.562369 -3.579305 3.429450 -2.922023 -0.610315 0.888826 2.428645 2.692459 2.250537 -3.039767 -2.558324 2.292325 0.604827 3.896089 0.597082 0.883612 -0.863876 3.323113 -0.287637 -2.560238 5.118320 1.744242 -3.702239 1.734029 1.129630 -1.799241 -1.489731 2.458751 -2.680578 0.432066 -1.375074 0.044077 1.754004 -1.980636 -1.488278 0.188578 -3.410977 4.505410 -0.719145 0.179262 1.722723 -3.457111 -3.402494 3.528786 0.133757 -1.623845 -2.727704 -2.529276 -2.588229 -2.871890 1.473798 1.049484 -1.313464 -2.613031 -3.347920 0.291180 2.915688 0.380500 2.164918 -3.080789 -1.923575 1.626135 0.974007 2.990350 -1.363073 -0.729083 -0.606936 0.025090 1.849530 -0.334932 2.778350 5.749770 -2.291352 2.970267 0.106061 -1.906436 0.647545 2.714615 -4.103896 4.188918 0.139596 2.190927 -0.552299 1.443691 -1.779444 0.380244 1.211051 -0.181406 0.872770 0.702590 -0.586993 -1.117817 -0.732269 -3.724146 -1.372173 -0.169776 0.920100 -0.095172 1.113205 0.071166 -1.670229 -1.291499 -1.914018 0.140162 2.866515 -0.152142 -1.690441 1.892980 -0.312775 0.098216 0.773176 0.549958 0.872581 2.489858 -3.847824 -0.120398 -0.684913 -0.009154 -2.931859 -3.365630 -0.646092 -2.444044 -1.509803 1.812987 -3.476909 0.169094 -2.462344 0.181675 -3.474033 -0.914866 0.357116 4.445826 2.408731 -1.368261 1.963411 -1.023017 2.984466 0.472321 -0.617467 1.012110 2.762456 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -4.260587 2.125682 0.566460 -3.989432 10.861968 -1.544353 -0.121531 4.805941 -3.290834 6.674558 -2.892675 -0.015817 -1.679501 -7.424117 0.938552 -2.276707 -0.191935 3.750358 -1.120362 3.863691 3.067442 -2.378051 1.739936 -0.410512 -2.774134 -5.125794 -1.376928 3.151375 5.039312 -3.508117 1.067454 0.246186 7.670843 -2.468788 5.856300 4.785565 3.103214 4.826963 1.368058 -4.567519 0.031378 2.775945 -3.692030 -5.014463 0.995269 -1.638662 -6.661570 -2.255548 3.789809 -3.711121 -2.716024 5.927817 -1.253605 -0.867956 -4.038298 5.636557 2.619515 -1.199808 7.292830 1.047811 -3.025302 -2.136542 -6.756267 6.127065 -3.525220 1.434391 -3.721231 -6.157239 -0.623460 2.088001 -1.493917 -3.733842 -2.869436 4.860631 3.680824 -5.443995 1.585946 -2.540948 -2.501183 -6.050091 -4.650590 2.376993 -2.048238 5.105917 0.437408 2.572337 1.894307 2.814657 -1.598938 -8.472031 1.170712 6.137470 -3.645561 -1.243671 -3.449815 4.022956 1.144023 -0.535444 -3.620671 -3.039163 1.623375 -1.510464 3.570597 -4.346757 4.017660 -5.032062 -0.959794 -0.040527 3.215071 4.487080 2.132608 1.669721 3.084902 5.904038 -4.634744 -0.393337 -6.639524 2.260002 -3.735227 1.956900 -2.916975 3.533994 3.507617 3.020618 6.147239 -9.015596 3.805952 -0.098212 -0.980317 -5.962261 1.274694 -1.180962 -1.777053 -1.790570 4.181945 -2.041609 -1.200923 -1.821221 2.873122 1.817229 -3.923008 -0.161437 0.487789 4.754699 -6.727671 2.404846 -1.426496 -2.629112 0.315580 3.089527 5.467516 5.516247 8.508995 5.764654 -1.246822 4.327229 -7.894558 1.588167 7.268145 0.790612 -5.086033 6.761114 -5.113023 -1.738507 1.449717 5.181111 4.540994 2.929131 -3.943372 -3.861113 3.029384 2.333518 7.346252 0.528150 0.709916 -4.505937 2.965256 -1.190875 -1.383952 8.391561 2.701173 -6.879695 4.184568 3.756320 -4.420819 -2.831997 3.286139 -5.654239 -1.284430 -2.903465 1.477346 5.042281 -3.884443 -3.112368 0.373984 -5.040220 5.978793 -1.990153 -3.165267 3.359994 -5.044033 -4.466759 6.290343 1.345345 -1.469366 -4.717627 -5.892081 -3.077377 -6.267899 2.080072 1.221732 -2.097336 -2.426168 -5.677078 -2.284108 5.073391 1.523949 3.624540 -10.289077 0.359060 3.939641 2.771750 3.447689 -2.599011 -0.396425 0.313317 -1.619622 0.621999 -2.591047 3.123905 6.843210 -5.124509 4.034985 -1.118810 -4.072627 2.507006 3.245967 -7.308944 8.654819 2.045784 6.397055 0.451236 2.201034 -2.801541 1.833721 0.663910 -1.982009 -0.351854 1.596719 -3.108367 -3.075401 1.680949 -3.870257 -5.681171 -0.865947 3.546649 -0.051766 2.207974 -1.282562 -3.219762 -2.129956 -2.074666 1.954130 4.316070 -1.928770 -2.861141 4.368760 2.410698 -0.414187 -1.742169 0.875879 3.055382 4.505181 -7.589503 1.853428 -0.902780 2.912427 -5.594060 -6.244543 1.263625 -3.580320 -2.101994 2.947828 -7.344789 -1.844851 -4.285928 1.623540 -4.728214 -1.062884 2.052470 8.146899 1.843212 -3.007558 3.961482 -2.021910 3.034727 -0.733513 -0.002946 1.291999 3.788971 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -2.271142 0.883451 -1.091041 -3.001370 6.223223 -1.129257 -0.261850 4.212351 -0.710220 3.233030 -2.289724 1.232255 -0.415406 -4.275533 0.445687 0.130187 0.620388 2.532635 -1.585249 1.260623 1.830963 -0.070345 1.502503 -0.904240 -1.753847 -2.938568 0.053123 1.585299 1.098660 -0.773677 -0.406064 0.184190 4.397441 -0.910183 2.936943 2.127661 2.828824 3.237897 1.660349 -1.108359 1.155581 1.168212 -1.313574 -3.709730 0.835813 -1.380579 -3.742505 -1.636956 2.091965 -3.697013 0.882170 2.775829 0.334173 -0.929670 -2.388310 2.334032 1.810236 -1.479447 3.755956 1.128764 -2.844924 -1.877753 -2.678279 3.498402 -2.605145 1.368384 -0.507825 -3.251527 -1.638823 2.653716 0.464739 -2.262390 -2.543992 0.681107 1.587644 -2.777998 1.303512 -1.006921 1.657781 -2.778580 -1.628776 1.706061 -1.730054 2.779506 0.253784 1.452671 -0.257695 0.772406 -0.211031 -3.731148 -0.054456 2.747725 -1.906541 0.139442 -2.786235 1.870901 -0.156127 -1.099402 -1.950802 -2.418419 1.097707 0.060197 1.625295 -1.756535 0.793077 -2.365359 0.729527 1.351510 0.877688 2.034660 0.377996 0.778757 0.837083 2.444097 -1.082414 0.923919 -5.172489 1.463102 -1.478339 0.958188 -1.995585 1.069940 2.923127 1.674248 2.512063 -4.275159 3.802157 0.982046 -1.271240 -2.453895 1.472763 0.385430 -1.196688 -0.455926 2.481663 -1.188745 -0.337663 -0.494592 2.099281 0.043742 -2.975647 -1.134091 -0.761162 1.750354 -3.863809 1.205348 -0.625176 -1.394096 0.224162 1.535738 2.124857 1.709393 4.729620 2.479353 -1.007060 2.403205 -4.197647 1.305208 4.701633 1.826178 -2.656820 3.038568 -2.547125 -0.347221 1.088761 2.300522 1.409500 1.518717 -1.876121 -1.352503 1.191845 0.613832 4.180066 0.677090 1.174914 -3.931122 0.925392 -0.939137 1.189599 5.065518 2.446635 -4.226055 1.638416 2.892192 -1.269182 -1.348993 1.010841 -2.558625 -1.344604 -1.403203 1.277623 2.566957 -2.584396 -2.873193 -0.181273 -2.533896 2.837262 -0.825364 -2.175659 0.855671 -3.225998 0.431261 4.078416 0.636526 -0.905821 -1.407646 -3.027420 -1.619301 -4.432355 0.861813 1.503473 -1.283921 -0.488170 -2.676565 -1.422907 3.011620 -0.194670 0.470623 -5.561221 0.435732 2.683115 0.794733 1.171796 -2.911627 -0.176038 0.177189 -0.594473 0.889140 -2.003589 1.126834 3.009125 -2.745486 2.357760 0.512874 -0.987644 1.071009 2.491730 -2.974695 4.910374 0.508320 3.572243 0.620867 1.533855 -1.464470 1.088754 -1.012926 -0.790770 -0.618728 1.711241 -3.188141 -1.726403 1.513149 -1.216586 -3.171378 0.607852 2.984355 0.171802 0.634466 -0.836514 -1.026685 -1.098877 -1.932244 1.157930 2.308874 -1.811092 -2.922557 1.491472 2.732428 -1.602906 -1.126772 0.734713 2.204707 3.481117 -3.711656 2.026269 0.141581 1.357562 -4.297637 -3.578448 1.514505 -1.495437 -0.912857 0.925798 -4.474132 -2.699147 -1.852082 2.438115 -3.125612 0.309608 1.068359 3.765796 0.579180 -0.707521 2.197400 -0.556227 1.384269 -0.270602 0.308889 0.877894 2.405483 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.686035 2.240820 -0.052483 -6.067962 15.084412 -1.436906 -1.082824 8.198431 -3.967861 9.615345 -4.356483 0.174370 -2.311171 -11.150609 1.167014 -2.553454 -0.414739 3.944719 -1.693175 5.029090 4.662264 -2.754096 2.272144 -0.891968 -3.887457 -6.216329 -1.781307 4.005786 7.286167 -4.767878 1.532300 0.136092 10.566875 -2.256137 8.708917 6.318644 5.129821 7.276295 1.843838 -4.051497 -0.751441 4.250206 -5.384524 -7.067097 1.369654 -2.954928 -8.530159 -3.483190 4.945693 -4.158994 -1.051271 8.674826 -1.410779 -0.834590 -6.159170 6.658611 1.740800 -2.042164 10.692998 1.846142 -5.127867 -3.478889 -10.225541 8.797280 -4.761446 3.448449 -3.409394 -6.616223 -0.630544 2.243799 -0.929164 -6.645969 -4.251970 7.250507 4.798665 -7.562135 2.936810 -3.875855 -1.930715 -8.287404 -6.340573 3.999641 -2.659688 7.670223 0.722184 3.605284 1.854413 4.740552 -2.511371 -12.846005 1.834005 8.429613 -5.793747 -2.050801 -6.479201 6.621981 -0.630772 0.229884 -5.095678 -3.726857 3.165223 -0.642488 4.861291 -6.519886 5.005389 -9.134757 0.874258 0.099243 3.166070 4.377841 4.866466 1.423777 5.088008 9.560627 -4.934778 0.955914 -9.819629 2.604280 -3.906716 3.299019 -4.818481 5.705703 5.121941 3.709237 8.822423 -12.945329 5.139242 0.497061 -2.622435 -8.682622 1.508628 -2.610452 -3.417745 -1.910314 5.955415 -2.260760 -1.562272 -2.788165 3.927026 2.191638 -6.957544 -1.838230 1.190427 6.417187 -9.130951 2.665823 -1.811094 -3.433074 -0.434601 4.919489 7.662103 7.394727 13.089993 7.549738 -1.775875 5.682518 -10.744013 1.993734 10.482240 2.022885 -8.321568 10.046476 -8.144872 -1.703550 1.332087 7.329120 6.957910 3.637911 -6.168451 -4.377515 5.739419 3.336851 10.714685 0.589526 2.201651 -4.748067 3.666122 -1.203746 -1.954411 12.265743 3.999279 -9.832563 4.747121 4.998282 -3.647653 -3.008205 5.493028 -7.507859 -1.257835 -4.182735 2.172252 6.654994 -5.692002 -4.441750 0.214144 -7.319107 9.457581 -2.554407 -2.748141 3.996828 -8.169044 -4.050019 9.577587 0.391418 -2.603848 -6.942728 -8.065231 -4.787546 -8.547881 3.315957 2.856371 -2.370758 -3.582744 -8.362874 -2.499691 7.351849 1.693468 4.810027 -12.836568 -0.302809 5.370225 2.735702 5.994312 -5.314277 -0.703646 0.000411 -1.638418 2.680808 -4.158734 4.367101 10.826566 -7.031986 6.770270 -0.614997 -3.290233 2.168306 4.944353 -10.657779 12.567869 2.701015 8.608829 -0.124220 3.593342 -3.985630 2.249896 0.347184 -1.592114 0.669067 2.331016 -3.979782 -4.073523 2.108914 -5.434001 -7.095122 -0.963637 4.768100 -1.544335 3.019280 -2.340939 -3.678417 -3.628937 -4.217982 3.623208 6.652155 -3.249944 -4.190239 5.529257 3.465607 -0.696149 -0.093564 1.394176 4.121963 7.565457 -10.632760 1.700259 -1.061253 4.006405 -7.901876 -8.908092 0.833629 -3.541888 -1.942640 4.496008 -10.224970 -3.259986 -6.333650 2.204067 -7.543222 -0.711479 2.177972 11.553026 3.692828 -4.350146 4.590230 -2.366903 4.581329 -0.723727 -0.363736 3.045905 5.228072 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.704948 0.674770 0.307677 -0.405165 0.998542 0.069566 -0.315688 0.553225 -0.177989 0.882242 -0.663568 -0.054421 -0.141914 -0.732513 0.016460 -0.549148 -0.334573 0.201397 -0.133881 0.230344 0.505562 -0.259818 -0.208058 -0.224482 -0.427376 -0.471743 -0.362035 0.187470 0.933104 -0.932106 -0.323043 0.068256 1.090563 -0.348737 1.168838 0.961736 0.895353 0.747601 0.033012 0.106194 -0.331273 0.612743 -0.762349 -0.497760 -0.004902 -0.554348 -0.376402 0.261495 0.397464 0.309502 0.488803 0.815967 -0.196854 0.196650 -0.425325 0.837762 -0.283630 0.234924 1.278864 0.220256 -0.554867 -0.241122 -1.156884 1.376571 -0.596809 0.824780 -0.475252 -0.551410 0.140167 -0.230002 0.003940 -1.045094 -0.445162 1.021987 0.022719 -0.911798 0.216338 -0.558152 -0.545452 -0.468603 -0.836120 0.485004 0.250732 0.616921 0.101734 0.227247 -0.334899 0.754249 -0.372163 -1.469688 0.127271 1.068534 -0.922436 0.293699 -0.646132 0.412410 -0.195562 0.483983 -0.393863 -0.065591 0.502903 0.185162 0.368762 -1.265688 0.761389 -1.119731 0.408501 -0.212139 -0.191254 -0.079801 0.482328 0.334694 0.974171 1.215427 -0.164604 -0.437731 -1.067893 0.011966 -0.062579 0.217683 -0.144034 0.531331 -0.232538 0.088993 1.108013 -1.248813 0.268110 -0.220365 -0.516383 -1.299925 -0.002399 -0.787177 -0.616005 -0.380853 0.494305 0.305678 -0.234514 -0.614584 0.199925 0.101595 -0.729494 -0.897268 0.507127 0.536831 -0.607532 -0.003185 -0.223031 -0.224744 -0.525573 0.824173 0.901965 0.831357 1.334252 0.821294 0.198711 0.391298 -0.963033 -0.232389 0.605536 0.384538 -1.175167 1.018570 -1.227021 -0.286221 0.236982 0.777003 0.525511 0.793882 -0.837861 -0.693022 0.648716 0.195917 1.148273 -0.231238 0.208302 0.496051 0.737509 -0.189294 -1.062445 1.248072 0.294642 -1.076808 0.395377 0.219932 0.462488 -0.337095 1.036976 -1.043194 0.188551 -0.322326 -0.204200 0.475729 -0.615702 -0.078861 0.383464 -0.998059 1.388195 -0.114002 0.155191 0.479033 -1.231110 -1.138397 0.932270 -0.112072 -0.411887 -0.737698 -0.444022 -0.520822 -0.702946 0.313392 0.503533 -0.348960 -0.780294 -1.011970 0.236557 0.727634 -0.019793 0.787217 -0.826301 -0.753807 0.465106 0.047414 0.927230 -0.072477 -0.246664 -0.382780 0.149382 0.703642 -0.559243 0.874353 1.590993 -0.491524 0.975412 0.004876 -0.668001 -0.127176 0.630658 -1.162194 1.173328 0.237442 -0.066590 -0.023622 0.393685 -0.860043 -0.143882 0.322027 0.332489 0.268973 0.036755 0.032572 -0.173154 -0.623777 -1.031522 0.027909 -0.091821 0.127598 -0.330995 0.227191 0.052155 -0.169389 -0.580186 -0.747443 0.024169 0.796224 -0.099733 -0.237327 0.720670 -0.370768 -0.099262 0.950019 0.104501 0.163341 0.784405 -1.052048 -0.402240 -0.039836 -0.070149 -1.036023 -1.023920 -0.773182 -0.483676 -0.148406 0.147688 -0.869183 -0.059910 -0.627800 -0.137818 -0.828503 -0.306790 0.353169 1.317220 0.872342 -0.639286 0.422672 -0.337823 0.968213 0.334114 -0.189508 0.199553 0.518800 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -21.754296 -0.306004 -12.837354 -26.851639 52.485441 -10.789920 -10.662598 29.070753 9.682599 31.255791 -12.251181 -11.644882 -8.248930 -40.923456 3.843208 -6.681715 1.304354 18.127515 -14.219840 18.608030 16.809316 -6.626573 13.419506 -0.050318 -16.829378 -13.714393 -6.445151 20.033725 13.088242 -22.412412 4.092356 3.590327 42.569897 -5.725788 36.294168 19.475438 23.657885 30.845296 9.230127 -8.718629 5.025963 9.878801 -15.691763 -28.288663 9.761187 -7.846321 -40.263184 -14.230129 19.188739 -22.399624 8.349326 36.794443 -2.610030 -4.945818 -22.289088 19.944501 4.524952 -5.450483 37.417016 8.217225 -24.795574 -9.816295 -32.212288 21.752201 -19.006115 11.746465 -12.264536 -25.581728 -10.383012 18.224999 0.312510 -29.138970 -19.101126 19.538026 23.204027 -25.138300 14.765705 -11.489130 15.855184 -28.655280 -21.963862 17.679019 -7.141988 22.967370 2.069877 19.368453 7.032363 13.487070 -13.897558 -43.777735 14.616645 27.319912 -25.374908 -3.153672 -18.603811 20.993646 -9.269285 -5.822238 -28.391774 -17.664736 10.908700 -9.002981 17.918239 -7.446521 16.022663 -25.568805 5.918132 6.040487 13.732456 14.442687 19.255279 3.291933 17.167773 30.695128 -17.829916 7.899138 -40.582654 8.938040 -13.033831 12.122893 -15.841076 15.389099 25.941193 17.476009 24.362416 -46.619170 25.365237 4.126401 -10.947890 -28.476565 6.591812 -4.129410 -8.345043 -7.856065 26.615261 -13.882430 -5.009762 -6.305823 15.931294 6.974547 -21.473444 -3.944933 1.761939 15.025608 -24.217911 14.549825 -4.082964 -17.351979 0.858079 16.128620 28.586481 19.837239 53.763042 22.608294 -11.867821 14.591196 -35.622499 8.679001 37.768209 1.158757 -30.412055 39.592540 -30.667286 -5.898362 -1.349687 31.990353 24.861572 8.097633 -14.646858 -9.473665 17.996235 16.307588 40.382860 -12.343466 8.465919 -26.758662 4.409371 -1.879161 6.027362 53.802158 13.377722 -36.387143 5.832466 23.709396 -11.884713 -14.557438 19.883803 -25.533476 -8.711084 -11.795970 18.392648 23.468540 -21.866309 -16.795227 7.128035 -28.390051 24.727110 -12.548812 -20.999566 13.889681 -37.654983 -4.845456 42.443510 2.006137 -8.641821 -14.137898 -34.329265 6.202027 -35.357427 10.255098 15.981348 -0.956055 -4.448973 -20.883185 -9.217644 30.928113 7.546504 17.729496 -47.428919 2.471486 22.843339 -1.569709 16.144713 -13.042236 -1.630300 6.038318 -2.955339 5.016750 -13.164119 8.045516 29.835528 -28.515192 20.268624 -3.127373 -11.765468 11.457590 15.782268 -34.656159 53.772876 11.580181 31.148658 -0.898220 13.765662 -12.821092 11.130110 -0.731379 -5.527899 -4.505745 7.269303 -17.068790 -17.650127 7.538914 -8.322252 -31.749054 -4.465029 24.790978 -11.946639 14.799803 -9.534642 -6.367520 -14.200599 -13.393989 21.100334 21.515471 -8.180304 -12.367649 21.265678 22.875017 -2.123487 7.148368 7.759603 17.616277 36.020168 -41.715867 10.522999 -1.021946 16.954380 -26.415357 -28.120285 9.057288 -14.407072 6.633687 6.442972 -38.314014 -18.373025 -22.493600 16.810390 -13.054463 10.453022 10.139621 44.480989 25.507196 -23.389412 21.119928 -9.380151 9.590369 0.663852 -4.129291 18.160928 21.127792 +PE-benchmarks/karatsuba.cpp__main = -59.236667 0.515450 -37.850138 -75.306037 150.411032 -25.095206 -26.383618 79.465599 19.732280 82.362398 -43.760412 -19.571770 -21.382468 -111.212705 10.279996 -8.615887 5.629746 50.648173 -42.249770 42.924323 45.914869 -16.416760 42.156322 -9.965637 -41.521474 -43.875256 -14.181792 49.744911 29.664033 -42.005161 4.771817 4.994281 107.347907 -16.118516 80.423768 46.045703 63.072541 86.860972 22.180215 -22.030379 24.044783 27.643608 -36.422683 -86.406521 32.014502 -28.988737 -107.395434 -44.282578 53.478826 -79.073930 23.729362 91.941435 -2.022084 -25.360496 -62.361644 52.355947 30.946010 -19.141162 97.662893 23.447646 -68.501835 -35.084830 -79.917334 56.617987 -55.369817 35.904401 -20.844644 -74.649942 -38.145644 60.253214 4.062940 -69.353886 -58.903009 36.467227 59.119421 -63.804605 38.287955 -29.123588 48.796305 -71.490775 -50.773300 41.114671 -29.194294 62.524396 3.062521 46.763540 15.865798 25.413927 -23.318670 -104.692642 22.597073 71.508615 -56.706831 -0.136715 -53.687969 52.336233 -18.640867 -26.393718 -72.487406 -45.955033 23.736320 -12.777482 45.962900 -20.609788 27.947153 -68.413023 24.236819 25.221639 34.650478 38.977332 39.374354 6.441935 28.133496 69.527291 -46.441283 28.989593 -112.354997 21.250387 -30.920494 33.028705 -46.989048 33.970463 72.707242 41.511146 58.892506 -117.286111 83.085671 14.496304 -31.082792 -68.248244 25.506738 0.298204 -23.074368 -11.537041 67.678283 -38.444191 -13.585182 -8.965251 44.637827 12.112548 -66.863323 -10.043883 -4.278059 43.437188 -68.091523 38.641851 -12.420062 -46.246296 7.104428 35.971068 66.502177 43.636907 136.544234 59.528293 -30.692929 45.738255 -93.592355 34.920813 111.960893 14.112441 -78.300664 91.339204 -72.331164 -6.022191 3.690651 71.016033 58.441217 30.455391 -34.939595 -20.278407 39.298772 31.279606 103.540879 -14.421063 30.350966 -91.902240 10.301308 -10.420151 34.645590 139.680208 44.699465 -102.560120 24.033884 72.227203 -39.793926 -33.798777 39.155224 -55.277588 -27.008109 -33.863936 51.620585 62.699433 -62.433655 -61.529158 5.120688 -72.641890 65.968789 -29.766019 -53.198563 33.161745 -94.004120 -0.416597 110.218823 8.928003 -23.567192 -32.059474 -86.208987 1.222029 -101.950117 25.728522 43.916430 -14.481278 -12.818443 -55.128355 -28.850874 83.937610 10.184843 34.158991 -128.841059 13.210992 60.623410 3.010796 39.304684 -45.371627 -5.990784 13.112177 -9.945015 16.086322 -35.978890 14.879612 73.558734 -77.446972 56.417774 -1.945013 -22.067488 31.192016 50.561122 -78.022144 136.633271 26.265971 94.129070 -2.453342 41.529921 -28.496619 34.382556 -9.267317 -20.552632 -12.567319 30.071945 -61.114941 -47.647789 35.811290 -21.109384 -86.626993 2.425268 71.681730 -12.987696 32.542602 -24.969826 -16.418802 -34.490538 -32.008505 49.737888 56.155477 -29.469965 -47.860306 41.618811 68.752601 -19.943910 -0.358884 24.377812 48.790675 96.606963 -105.617379 42.618605 -1.030725 37.239977 -80.029050 -70.393595 30.226523 -34.729081 6.741476 26.168229 -107.867496 -55.482138 -55.696056 55.209593 -41.008815 23.219591 17.353024 109.200260 57.291972 -44.003337 61.667258 -18.423064 23.538985 -3.654652 -8.417700 46.540346 57.048046 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +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&) = -2.946535 1.025598 -1.310943 -3.259362 8.485349 -2.098583 0.127596 5.696462 -2.559061 4.293913 -2.622130 2.533300 -0.472742 -5.787818 0.921896 0.754568 1.228878 3.228240 -1.029224 2.149333 2.194671 -0.549747 1.394685 -0.871617 -2.096745 -4.054274 0.208457 2.178792 2.134354 -1.766549 -0.320255 0.988460 6.099442 -1.047501 4.337336 3.415421 3.317347 3.939891 2.934083 -3.294208 1.199659 1.484712 -1.785401 -4.576752 0.920081 -1.252083 -4.807648 -2.127123 2.503404 -3.817996 0.589814 3.849917 0.025593 -0.620365 -3.774831 2.963997 2.487047 -2.640779 4.935370 1.363176 -3.719337 -2.661781 -2.969364 5.162421 -2.932429 0.357209 -0.927150 -3.900497 -0.669801 3.194637 0.805469 -3.640988 -2.801082 1.471423 1.799046 -3.820603 1.621638 -0.949542 1.805958 -4.691381 -2.580642 2.093198 -2.311120 3.855861 0.359174 1.756961 -0.945991 0.930455 -0.315203 -5.026051 0.189324 3.719382 -2.830429 -0.097104 -3.829862 3.419942 0.564881 -1.261726 -2.222622 -3.571425 1.331417 -0.827037 2.207336 -2.268141 1.911629 -2.802196 -0.060243 0.239064 1.644344 3.831393 0.609829 1.454297 1.738287 3.048867 -1.377465 0.506210 -6.543436 2.386865 -1.805184 0.928945 -2.557200 1.462995 3.930216 2.076037 3.550530 -5.960342 4.040157 1.071647 -0.576826 -3.590920 1.473600 0.242369 -1.530903 -0.958534 3.468444 -1.444925 -0.358508 -0.630554 2.595561 0.773897 -4.027285 -1.914551 -0.757396 3.777693 -5.711771 1.614241 -0.874144 -1.699524 0.140121 1.752997 2.955928 3.040794 5.983465 3.515833 -1.348751 4.071423 -6.070580 1.468933 6.053487 2.728694 -3.432279 4.404069 -3.657244 -0.983847 1.337930 3.530169 2.469032 0.670774 -2.938316 -2.086778 3.146590 1.131138 5.404004 0.203653 1.332958 -4.591952 1.445389 -0.502797 0.873610 6.557438 1.920082 -5.762253 3.090095 3.864222 -1.087779 -1.347741 1.648892 -3.951140 -2.231587 -2.015293 1.866284 3.577913 -3.504788 -2.665086 -0.118432 -3.210379 3.472083 -1.158821 -2.888669 1.340489 -3.696501 0.343930 5.591159 0.899185 -0.445493 -2.088360 -4.387839 -1.852967 -5.631069 0.956209 1.442116 -1.382985 -0.425046 -3.741278 -2.279638 4.200739 0.079980 1.304351 -8.147647 0.944313 3.423529 1.610247 0.787528 -4.371661 -0.364727 0.755340 -0.355405 0.590742 -2.784583 2.058584 3.980325 -3.695689 2.795523 0.739173 -0.476961 2.006393 2.652371 -4.609592 6.282230 0.935624 5.829179 1.122699 1.773271 -2.241175 0.981763 -1.216552 -0.375990 -1.318181 1.649507 -3.882448 -2.081121 2.385098 -1.265658 -4.737131 0.232625 3.734044 0.102064 0.933591 -1.542597 -1.024935 -1.587879 -3.148360 2.203418 2.891939 -2.694484 -3.219375 2.683116 3.554094 -1.851065 -0.565914 0.705893 3.008909 4.086156 -5.131007 2.255291 -0.080433 2.629465 -4.876485 -5.578446 2.579442 -1.878479 -1.534871 1.411908 -6.433835 -3.498848 -2.575632 2.640222 -5.275868 0.548474 1.147264 5.351855 0.299398 -0.964085 2.656573 -1.001075 1.154942 -0.893955 1.107590 0.909733 3.042808 +PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/karatsuba.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.032473 5.278237 0.481682 -4.310465 13.728354 -3.196420 1.188181 6.277975 -5.783051 10.132923 -3.485758 -0.268812 -1.567956 -11.127881 0.583534 -3.321015 -1.848199 5.319485 0.404450 5.672410 3.362734 -5.084844 0.865802 -0.147331 -3.765991 -8.192545 -1.001209 3.472026 8.995347 -7.557623 1.146451 -0.068653 10.807013 -2.367776 8.852408 6.884874 2.257554 5.503600 3.961322 -5.959518 -2.392190 3.414964 -5.119635 -5.135841 -0.275865 -1.054605 -7.466577 -3.377155 3.517140 -2.703247 -0.728813 7.628365 -2.478876 -0.159479 -5.630983 7.747230 2.809493 -0.754535 9.862859 0.605930 -1.825398 -2.760424 -10.019194 10.404601 -3.291044 -0.114647 -3.254067 -5.508255 2.843216 0.207546 -1.553411 -5.366346 -1.488157 9.441143 5.198704 -8.075719 0.443535 -4.452278 -11.350906 -9.021701 -7.212593 3.160463 -1.535351 6.647921 1.507458 3.452341 1.034567 5.467559 -3.298903 -12.815617 2.447140 10.283436 -4.011478 -3.249390 -5.614933 7.873765 2.054568 0.825533 -4.284871 -3.910947 2.421380 -1.980387 4.374868 -9.205651 5.523692 -9.280359 -1.010313 -1.006882 2.329559 5.143086 5.913282 1.819448 5.430442 9.945982 -7.747771 -1.659360 -9.545287 2.398755 -2.106470 2.194824 -2.490528 4.268825 1.366014 3.916239 8.726041 -14.650010 2.945954 -0.491969 -0.780748 -10.730268 -0.404159 -3.256056 -1.746511 -2.923304 4.068746 -1.341856 -0.976606 -3.297104 2.015921 2.953336 -5.826684 -3.063050 3.683008 11.369732 -10.101550 2.847383 -1.496201 -2.081149 -1.649523 5.009586 8.402626 7.376921 11.004110 7.129550 0.458352 5.474546 -10.669974 -0.238371 8.219240 1.669187 -7.104240 10.534799 -7.278183 -3.541050 0.314367 8.999404 6.690016 1.110995 -8.314431 -7.106582 7.360164 2.640050 9.260300 -1.572674 -0.608388 -1.313575 7.885646 1.562655 -6.479058 11.188570 4.180570 -6.608314 4.473459 2.963396 -5.139213 -3.596026 6.730304 -8.267191 -0.160185 -2.636611 0.631322 4.828987 -2.992976 -1.881789 -0.021007 -6.599285 9.537984 -2.282374 -2.900181 4.296521 -5.843578 -7.493152 8.232647 -0.156836 -2.326617 -6.497719 -8.298436 -7.068320 -6.011266 2.587494 1.213216 -2.672424 -4.061970 -7.853157 -1.571198 7.151768 2.195298 6.196811 -12.634075 -2.278783 4.359087 4.540672 5.372408 -3.395300 -0.418653 0.324639 0.426608 1.181212 -1.537108 7.391461 12.093410 -4.830122 5.508356 -1.450336 -3.410447 3.514248 3.986803 -11.678689 10.309771 2.064262 6.448557 0.429409 1.964024 -3.253325 1.305520 2.441049 -0.700052 0.949689 0.322976 -1.560663 -3.253822 -1.031393 -7.118443 -7.159646 -2.126224 2.664549 -1.156125 3.066984 -2.092762 -3.893146 -3.054474 -5.469647 1.851978 5.175854 -0.348156 -1.112766 6.704995 1.055145 2.294217 3.893965 0.323065 3.425066 4.161221 -9.326935 0.179034 -2.230372 4.917534 -5.470644 -11.125498 0.771203 -5.584130 -4.567702 3.210141 -10.614056 -1.782352 -5.948240 -0.363135 -11.219715 -0.494101 2.942895 11.956975 3.180273 -4.332842 3.493854 -3.721037 4.660930 -0.339395 0.326234 2.607880 5.247971 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -2.121455 1.870381 -0.746415 -1.589787 6.024577 -2.284646 0.700515 2.431386 -2.218060 4.387393 -1.277261 -0.624629 -0.884871 -5.571368 0.462063 -0.839516 -0.207390 2.713378 0.497663 2.327826 1.524507 -2.624331 0.307151 -0.042821 -1.291516 -3.648301 -0.241486 1.514345 4.466984 -4.144220 -0.151961 0.352974 5.203768 -0.714765 4.178644 3.067575 0.876703 2.521368 2.384364 -3.447592 -1.227421 1.671940 -2.087261 -2.474757 -0.054269 -0.126859 -3.039306 -1.551672 1.614528 -0.401561 0.597385 3.379020 -1.176739 0.125506 -3.152545 3.012765 1.661950 0.175780 4.314935 0.282243 0.028937 -1.012341 -4.195703 4.359651 -1.665921 -0.854072 -1.194757 -2.027083 1.496197 -0.044997 -0.515112 -2.971248 -0.804140 4.212048 2.450532 -3.492166 0.210553 -1.609229 -4.700495 -4.441575 -4.046239 1.212472 -1.348769 3.246246 0.665550 1.462434 0.046030 2.230424 -1.153872 -5.656620 1.233973 4.309303 -1.716942 -1.366181 -1.571803 4.309843 0.970986 0.248872 -1.998441 -2.230121 0.828325 -1.461101 2.005485 -3.197728 2.719708 -3.779914 -0.417627 -1.066015 0.927048 2.643339 4.040342 0.398143 2.210243 4.332822 -3.430972 -1.813165 -4.664281 1.062185 -0.477953 0.842411 -0.851782 2.036081 0.403412 1.292985 3.687096 -7.037717 1.151675 -0.009969 0.239067 -4.665040 -0.299888 -1.360935 -0.751985 -1.404579 2.081466 -0.694513 -0.369832 -1.302227 0.785932 1.602994 -2.808084 -0.952875 1.458896 5.919622 -4.980258 1.262231 -0.772715 -1.383592 -0.710718 1.733136 3.518009 3.359967 4.714978 3.344546 -0.377670 2.747460 -4.885839 -0.004734 3.757306 0.298112 -3.044517 4.696723 -3.172125 -1.443440 0.255436 4.399010 3.262674 -0.712779 -3.397263 -2.700296 3.973880 1.274132 3.828195 -1.900536 -0.134167 -0.524994 3.533717 1.838152 -3.064155 5.514497 1.019104 -2.973930 2.306101 1.421089 -2.161731 -1.202018 2.765776 -3.716147 0.319807 -1.874908 0.825451 2.155116 -1.517081 -0.435634 -0.234465 -2.750424 3.987891 -0.987135 -1.670060 2.263848 -2.593728 -2.437216 4.412519 -0.313919 -0.637551 -3.032499 -4.200732 -3.003869 -2.623839 1.181285 -0.166963 -1.188294 -1.324115 -3.395970 -0.781109 4.124877 1.186934 2.700243 -5.784958 -0.602944 1.809408 2.774920 2.149220 -1.383053 -0.325188 1.089608 0.486364 0.172399 -0.461060 3.162570 5.572457 -2.440023 1.671834 -0.380121 -0.821980 2.111305 1.663722 -5.449392 4.358993 0.687144 3.341634 0.110290 0.821857 -1.533087 0.476275 1.171338 0.288980 0.143884 -0.234275 -0.690392 -1.377366 -0.105336 -2.820411 -3.802366 -1.109632 1.293113 -0.197616 1.392996 -1.523850 -1.247461 -0.992653 -2.325871 1.204845 2.266312 0.440266 -0.151593 2.886955 0.675263 1.438549 2.337738 0.150537 1.216793 1.975729 -4.051398 -0.137060 -1.096616 2.737301 -1.589649 -5.755164 0.699051 -2.206570 -1.363285 1.877221 -5.135709 -0.825557 -2.593028 -0.097807 -6.022404 0.995187 0.801997 5.239664 1.472441 -1.674315 1.485444 -1.479998 1.591263 -0.527581 0.051568 1.341535 2.397349 +PE-benchmarks/kmp-algorithm.cpp__main = -1.633300 0.895106 0.029261 -1.210392 3.752754 -0.948767 0.085052 1.734731 -0.328042 2.460681 -1.402870 -0.797548 -0.926181 -2.838236 0.234496 -0.759617 -0.153335 1.760214 -0.577047 0.835694 1.334673 -0.745327 0.389526 -0.485423 -0.740916 -1.716018 -0.590133 0.744237 1.509904 -1.273606 -0.215375 0.251769 3.084640 -0.302632 2.291950 1.789382 0.966545 2.377792 0.520041 -0.169029 -0.138010 1.366641 -1.265901 -2.268750 0.694898 -0.892426 -1.807070 -1.244105 1.190018 -1.423379 1.127606 2.001767 -0.354535 -0.210206 -1.419022 1.547753 0.979358 0.527083 2.704574 0.613826 -1.031915 -0.160378 -2.683234 2.253770 -1.367240 1.078321 -0.407864 -2.207707 -0.297086 0.381600 0.573922 -1.796139 -1.267630 1.748692 1.046929 -1.752928 0.569554 -0.833436 -1.500118 -1.885401 -2.406401 0.611782 -0.766207 1.843757 -0.080403 0.552724 -0.303428 0.908366 -0.277604 -2.974130 0.061945 2.600724 -1.109586 0.208581 -1.563102 1.092756 0.168451 0.071473 -1.310480 -1.006053 0.629800 -0.120662 1.153415 -1.126182 0.506790 -2.035553 0.786944 0.370783 0.367594 0.829059 1.600710 0.336492 0.977892 2.146043 -1.578476 0.201270 -2.807191 0.784282 -0.498109 0.654540 -0.543552 1.088202 0.540216 0.414431 2.007081 -3.506243 1.387421 0.007166 -0.742117 -2.259550 0.443916 -0.715928 -0.935664 -0.788312 1.573891 -0.155630 -0.562169 -0.682242 0.578601 0.278168 -1.648341 -0.772672 0.190851 2.072225 -2.084574 0.512465 -0.717048 -1.173538 -0.355191 1.166949 1.648921 1.727757 2.890410 2.054304 -0.296901 0.346269 -2.894160 0.362395 2.608472 0.319443 -2.174597 2.179697 -1.443539 -0.170565 0.672122 1.932783 1.515199 0.869303 -1.148996 -1.044373 0.668861 0.384477 2.600939 0.528073 0.530823 -1.201870 1.227330 -0.016695 -1.067828 3.502943 1.486907 -2.212138 0.662408 1.156704 -1.327000 -1.193890 1.230626 -1.540644 -0.132997 -1.088077 0.604109 1.415773 -1.477762 -1.142945 0.285917 -2.042863 2.507137 -0.541760 -0.558528 1.089974 -2.462447 -1.486837 2.777656 0.095287 -0.681220 -1.430394 -2.151940 -1.403106 -2.178080 0.889318 0.580651 -0.633611 -1.310478 -1.982033 -0.153249 2.398072 0.171759 1.206934 -2.325397 -0.566803 1.187119 0.307532 1.624031 -1.555634 -0.485120 -0.096372 -0.040919 0.905101 -0.307643 1.018955 3.210346 -1.629846 1.333279 0.907192 -0.585451 0.457817 1.568664 -2.493097 2.700521 0.070877 1.453650 -0.152976 0.936795 -0.888547 0.275365 0.450631 0.306070 -0.035803 0.757139 -0.859247 -0.733069 0.057482 -2.192992 -1.497103 0.073407 0.974185 0.234669 0.655640 -0.475397 -1.264759 -0.565718 -1.058497 0.368875 1.778571 -0.049623 -1.124146 1.169718 0.262549 -0.424540 0.246834 0.433439 0.657507 1.821244 -2.462404 0.363319 -0.203843 0.617716 -1.853249 -2.413088 -0.109004 -1.528961 -1.176923 1.231836 -2.679966 -0.777822 -1.507256 0.645207 -2.410663 -0.130937 0.202632 2.862875 1.361597 -0.658855 1.416588 -0.439750 1.509247 0.052580 -0.490359 0.771027 1.860034 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.805187 0.679081 0.068837 -0.657951 1.959232 -0.788448 0.232235 0.290773 -0.364556 0.862639 -0.865423 -0.402581 -0.323790 -1.740436 0.413238 -0.772158 0.161831 0.884522 0.052872 0.989845 0.598702 -0.750938 0.124150 -0.524309 -0.295187 -1.580150 -0.199476 0.407469 0.913155 -0.651315 0.206308 0.296146 1.671389 -0.114671 1.253016 1.144536 0.157718 1.114052 0.557722 -1.191794 0.029545 0.659396 -0.648075 -1.264571 -0.013804 -0.141141 -1.258893 -0.696701 0.487238 -0.440883 -0.425438 1.060940 -0.118408 -0.050679 -1.267796 0.826610 1.241414 0.667808 1.196607 0.312465 0.133063 0.035104 -1.011413 0.671882 -0.736287 -0.175838 -0.571751 -0.849524 0.198013 0.429646 -0.313715 -0.513257 -0.666643 0.613280 0.889500 -0.968204 0.390928 -0.254734 -1.303627 -1.155418 -1.076317 0.499178 -0.593044 1.198499 0.096495 0.452230 0.093940 0.468392 0.192353 -1.208634 -0.093536 1.160661 -0.454593 -0.645795 0.235245 1.565538 0.924199 -0.146027 -0.459235 -0.816310 0.317891 -0.612077 0.601155 -0.106289 0.419098 -1.018796 -0.008163 -0.014790 0.236826 1.474297 0.483713 0.535023 0.510029 0.674625 -1.129352 -0.213978 -1.664738 0.268153 -0.987932 0.221898 -0.299571 0.569905 0.519856 0.618945 0.787691 -1.674554 1.032246 0.411428 0.341304 -0.715149 0.290559 -0.202915 -0.381266 -0.464318 0.768568 -0.094394 -0.046655 -0.061826 0.324080 0.371415 -0.186405 0.146855 0.034948 1.621542 -1.362885 0.429441 -0.249305 -0.534681 -0.072797 0.202259 0.569220 0.828426 1.535318 1.112740 -0.682963 0.697375 -1.316626 0.282529 1.846500 -0.279232 -0.787497 1.065844 -0.476350 -0.425196 0.159675 1.001904 0.834714 0.228157 -1.047522 -0.980929 0.082367 -0.017448 1.170482 0.071826 -0.021535 -1.195171 1.248551 0.249729 -0.397897 1.845295 0.401118 -1.082193 0.400992 1.080268 -1.825024 -0.739404 0.497208 -0.763367 0.254619 -0.934502 0.498087 0.620475 -0.746408 -0.749636 -0.209407 -0.970037 0.707391 -0.166409 -0.717787 0.280005 -0.496803 -0.812583 1.792494 0.220928 -0.129824 -0.932327 -1.253121 -0.681729 -1.279003 0.392241 -0.189826 -0.380816 -0.268857 -0.885394 -0.347713 1.208375 -0.167157 0.516458 -1.753841 0.021782 0.431168 1.258688 0.326686 -0.407400 -0.211608 0.441958 -0.168855 -0.156496 -0.088521 0.906922 1.650156 -0.925287 0.402656 -0.179448 -0.888534 0.814574 1.208084 -1.252430 1.339000 -0.045572 1.639374 0.149966 0.506527 -0.549328 0.077438 0.292387 -0.823062 -0.271335 0.261136 -0.645221 -0.465982 0.747791 -0.166764 -1.329469 0.006689 0.712608 0.302442 0.201957 -0.184920 -0.692250 0.087882 -0.192509 0.489105 0.819646 0.220927 -0.590147 0.653756 0.878153 0.063512 -0.664973 0.092410 0.224669 0.897973 -1.388806 0.548239 -0.228126 0.824796 -0.787670 -1.389033 0.632143 -0.863346 -0.335425 0.707347 -1.491477 -0.336055 -0.728144 0.390650 -1.082711 -0.201779 0.331254 1.166307 0.369363 -0.536793 0.532282 -0.467827 0.412359 -0.128878 -0.056543 0.068170 0.958393 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -3.763200 4.157261 1.911576 -3.924779 8.433771 -2.614924 1.604624 2.521267 -2.887091 4.526512 -4.278942 1.265952 -1.205892 -7.052879 0.981901 -3.634998 -0.024280 4.257053 -0.095759 4.500485 2.817724 -3.144986 0.979073 -2.503282 -1.964646 -7.461560 -0.233985 1.922865 2.967969 -1.068842 2.814204 0.761432 6.588287 -0.734782 4.602992 4.810605 1.034036 5.675967 2.296052 -3.339302 0.531428 2.518487 -2.271959 -6.089960 1.096436 -1.158538 -5.133202 -3.848834 2.336565 -5.093642 -1.851016 4.558643 -0.268075 -1.451956 -5.187187 3.817641 5.833882 0.276591 5.413316 1.308634 -1.093189 -0.947127 -4.522804 2.905778 -3.438856 -0.458835 -0.915732 -4.154724 1.028331 2.646485 -0.648408 -1.838981 -2.629717 2.156899 3.041333 -4.445193 1.080288 -1.930326 -6.636385 -4.316763 -2.862397 1.530891 -1.306251 4.790863 0.165767 1.792738 0.327275 1.672832 0.562701 -5.173832 -1.028527 5.665921 -1.368976 -1.875075 -1.460616 6.369017 3.639122 -1.643414 -2.360874 -2.715922 1.492739 -1.273045 2.708993 -2.241089 -0.864244 -5.031889 0.007005 0.592414 0.302226 5.380653 -0.087786 2.906858 1.725729 2.930336 -5.085800 1.755124 -7.681532 1.712992 -2.533094 1.147754 -1.314045 1.513088 1.591438 2.713929 3.540434 -6.730614 5.304396 1.243168 0.414375 -4.225139 1.770833 0.010987 -1.214567 -1.892767 3.201723 -0.444554 -0.453986 -0.295381 1.168033 0.942304 -1.293279 -2.532679 0.239665 7.112683 -5.790098 2.076152 -1.303084 -2.024410 -0.195865 0.907027 2.652028 2.901928 6.720590 4.726289 -1.087210 4.466898 -5.763241 0.851669 7.504442 2.455389 -3.687393 4.497181 -1.831759 -1.780547 1.121999 3.394198 3.239084 2.144118 -5.847629 -5.584276 1.448109 -0.886759 5.250549 2.030276 0.045626 -6.319605 5.860177 0.325531 -0.833287 7.586693 2.888241 -5.153615 2.430133 4.404738 -6.895939 -3.510936 1.882610 -2.873507 -0.637340 -1.915201 1.545741 2.621879 -3.118540 -4.379036 -1.787266 -4.291911 3.823392 -1.063996 -1.874399 0.739224 -2.728235 -4.346721 6.157867 0.849887 -1.471850 -3.255452 -4.458223 -3.073125 -6.008963 1.555524 0.846034 -2.384480 -2.301846 -4.074415 -1.316020 4.008811 -1.280689 1.382977 -7.287631 -1.186904 2.911185 4.251080 1.254555 -4.288838 -0.820918 0.826153 0.260369 0.312865 0.052373 4.203643 7.117563 -3.790022 2.424741 -0.387075 -3.118259 3.509292 5.413844 -5.380889 6.380563 -0.326542 7.266189 0.761465 1.978964 -2.121174 0.490723 0.908251 -2.855687 -0.792159 1.619885 -3.448775 -1.959175 2.578411 -2.121524 -4.265147 1.072418 3.586980 1.165187 0.865295 0.591179 -2.479460 -0.838263 -1.895039 0.838368 3.574095 -0.405361 -3.587349 2.404484 3.559166 -0.736234 -3.028582 0.606949 2.557539 3.394822 -5.750906 3.474096 -1.238230 1.188677 -4.825516 -6.076838 3.811182 -4.439311 -3.730559 2.392164 -6.727005 -1.488711 -3.205090 2.607806 -5.760695 -1.429205 1.091872 5.293291 0.995511 -1.052903 3.076186 -2.079930 2.683319 -0.654783 0.513792 0.415069 4.835159 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -3.710191 3.977141 2.173288 -4.359267 8.170706 -1.656045 1.910337 2.628625 -2.822134 4.705964 -4.442191 1.353316 -0.935717 -6.188575 0.760228 -4.008272 -0.616194 3.500189 -0.591350 3.996569 2.685917 -2.659093 1.154179 -2.429710 -2.030535 -6.579303 -0.179137 1.842287 2.852696 0.129202 2.479016 0.256124 5.667519 -1.300951 3.918123 4.460574 1.405069 5.209979 1.289484 -2.589334 1.130911 2.298794 -2.121753 -5.691607 0.694759 -1.324658 -5.164237 -3.638665 2.474412 -5.629362 -1.936307 4.410912 -0.302492 -2.126124 -4.605680 4.233845 4.669267 -0.416099 5.321387 1.272845 -1.830197 -1.422129 -4.745473 3.759156 -3.260181 0.616748 -0.810468 -4.395489 0.390587 3.115719 -1.403490 -0.912460 -2.348992 1.814196 3.046579 -4.324700 0.891229 -2.332926 -6.085390 -2.860922 -1.657214 1.591610 -0.765073 4.442005 0.257352 1.694437 0.704071 1.614433 0.404945 -4.931658 -1.301093 6.043487 -1.165429 -1.871366 -2.782802 5.153296 3.630742 -1.975440 -2.181322 -2.025686 1.462104 -0.574559 2.563600 -3.656790 -1.374449 -5.215772 0.036868 1.847672 0.441206 4.806983 -1.351400 2.802672 1.271251 2.770252 -4.245703 2.566277 -6.831102 1.516984 -2.395451 1.147858 -1.562906 1.348312 1.674349 2.797259 3.443014 -5.938121 5.246179 1.066910 -0.381493 -4.163316 1.821536 0.285795 -1.250416 -1.357716 2.699491 -0.270990 -0.511376 -0.104268 1.433552 0.577033 -1.179826 -2.308675 0.426308 5.457820 -4.759372 1.999582 -1.108930 -1.365963 -0.060534 1.444631 2.773480 2.360900 6.487139 4.420566 -0.287979 3.956368 -5.182902 1.174696 6.800091 2.229342 -3.704833 4.269634 -2.384993 -1.580087 0.777933 2.643016 2.580711 3.811574 -5.561306 -5.073346 0.743256 -1.354171 5.208729 2.879173 0.007647 -5.717228 5.232285 -1.629481 -0.325777 6.006706 3.849552 -5.061698 2.216484 4.525010 -6.765441 -3.670834 1.964263 -2.838758 -0.806875 -1.524318 1.221525 2.657488 -2.940734 -4.385812 -1.935521 -4.157215 4.213412 -1.002983 -1.440669 0.367698 -2.664073 -4.179768 5.271189 0.872295 -1.714390 -2.784303 -3.564711 -3.726795 -6.039679 1.413701 1.640602 -2.539102 -2.787635 -3.914782 -1.346834 3.131295 -1.582540 1.389763 -6.137486 -1.113434 3.046657 3.853341 1.735511 -3.352961 -0.793996 0.054416 0.070868 0.746318 -0.595401 3.694087 6.140151 -3.420270 3.221718 -0.686713 -3.465262 2.788881 4.944671 -4.888468 6.427002 0.249343 5.573736 0.762800 1.930271 -1.924652 0.658079 0.572681 -3.584844 -0.504028 1.993085 -3.806724 -1.928644 2.124526 -2.453716 -3.426858 1.625086 3.711409 0.916035 0.835854 1.267150 -2.449347 -1.404793 -2.601277 0.458144 3.392455 -1.097297 -3.604173 2.031342 3.506806 -1.471889 -3.220210 0.715732 2.796559 3.410916 -5.501630 3.793089 -1.017125 0.405516 -5.514032 -5.091804 3.251009 -4.021884 -3.936182 1.793559 -5.880874 -1.552348 -3.189974 2.746907 -5.325224 -2.686337 1.404388 5.281691 0.836520 -0.616907 3.106023 -1.970268 2.835122 -0.430360 0.531540 0.758543 4.077423 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -1.438743 1.280445 0.447337 -1.536822 3.430538 -0.885902 0.472499 1.496248 -0.862837 1.877189 -1.653221 0.722911 -0.254459 -2.285132 0.324949 -0.957952 -0.017999 1.517794 -0.336127 1.161669 0.982703 -0.627755 0.460381 -0.861189 -0.801180 -2.585855 -0.016191 0.737858 0.929473 -0.172502 0.468546 0.262941 2.391539 -0.591751 1.622740 1.708480 0.906109 1.882053 0.735782 -0.934751 0.650792 0.771772 -0.772356 -2.119966 0.250041 -0.479857 -2.038008 -1.215098 1.010553 -2.087053 -0.219467 1.623151 -0.074100 -0.688985 -1.641108 1.743857 1.605358 -0.345125 2.073987 0.493033 -1.026927 -0.591595 -1.641802 2.051927 -1.400214 0.284659 -0.467479 -1.860407 -0.126671 1.383904 -0.213362 -0.653786 -0.972871 0.651339 0.992032 -1.683415 0.406087 -0.702711 -1.194260 -1.272414 -0.844152 0.719088 -0.485584 1.575785 0.153263 0.677394 -0.110594 0.563993 0.187975 -1.897802 -0.435719 2.206999 -0.747587 -0.399192 -1.149603 1.616502 1.310835 -0.805306 -0.587660 -1.132386 0.526956 -0.335508 0.955889 -1.177418 0.009916 -1.695251 0.063078 0.636349 0.327789 1.851340 -0.586935 1.041643 0.540286 1.053645 -1.129451 0.657764 -2.833513 0.742285 -0.882100 0.318104 -0.667540 0.463329 0.961846 1.118523 1.392654 -2.357286 2.043018 0.344027 -0.142226 -1.465810 0.676618 0.188678 -0.485811 -0.530081 1.156319 -0.194476 -0.194534 -0.040389 0.758719 0.211166 -0.836021 -0.961957 -0.035569 1.896488 -2.023370 0.782921 -0.421534 -0.535092 -0.011532 0.584592 1.072538 1.000255 2.485436 1.678908 -0.196312 1.438719 -2.216241 0.484509 2.551260 0.829077 -1.433256 1.727034 -1.130731 -0.611170 0.425903 1.194821 0.828466 1.294275 -1.836383 -1.687166 0.344676 -0.337100 2.064131 0.870519 0.073413 -2.179613 1.555332 -0.591403 -0.039971 2.615329 1.387580 -2.222429 0.924706 1.855748 -2.062910 -1.313879 0.758376 -1.298412 -0.519181 -0.734467 0.583695 1.163729 -1.282978 -1.538035 -0.397894 -1.556323 1.594923 -0.341862 -0.855590 0.290057 -1.187539 -1.078349 2.260073 0.436305 -0.449457 -0.997233 -1.549909 -1.325315 -2.413047 0.417855 0.657630 -0.882621 -0.814471 -1.529994 -0.617834 1.436004 -0.514207 0.614610 -2.738862 -0.242062 1.242668 1.298148 0.468948 -1.487749 -0.272777 0.023411 -0.056608 0.186041 -0.528957 1.265000 2.249326 -1.368889 1.295971 0.062143 -1.294117 0.944090 1.784330 -1.892579 2.452340 0.146100 1.942601 0.507799 0.758451 -0.904038 0.290461 -0.036655 -1.071544 -0.427346 0.766285 -1.615335 -0.793046 0.853465 -0.886278 -1.513605 0.522622 1.529165 0.418363 0.262695 0.099019 -0.856750 -0.544677 -1.194601 0.351546 1.234668 -0.540321 -1.431363 0.944151 1.438764 -0.899201 -1.186504 0.303634 1.069276 1.439870 -2.146543 1.424412 -0.171273 0.463635 -2.311297 -2.021998 1.100830 -1.413898 -1.385963 0.496746 -2.509252 -1.036477 -1.118166 1.117393 -2.162983 -0.838599 0.583863 2.148895 0.278174 -0.268543 1.299420 -0.710524 0.870555 -0.109566 0.231707 0.196235 1.516565 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.654913 0.710455 0.350615 -0.788534 2.067823 -0.573478 0.180185 0.613386 -0.073842 0.795709 -0.977266 -0.015991 -0.017118 -1.215880 0.302861 -0.634796 -0.116587 0.886322 -0.196259 0.467520 0.426470 -0.136672 0.017135 -0.357357 -0.359039 -1.401642 -0.430269 0.469888 0.363921 -0.508787 0.175617 0.284488 1.409662 -0.329154 1.068743 0.992440 0.515391 0.986800 0.296931 -0.162613 0.513298 0.359437 -0.461965 -1.086174 0.022028 -0.181067 -1.331763 -0.639129 0.411495 -0.833038 0.266108 0.819534 0.001383 -0.174974 -0.731510 0.998564 0.794692 0.309887 0.960398 0.420173 -0.569155 0.246543 -1.005450 1.078389 -0.667111 0.475459 -0.551435 -1.163990 -0.211888 0.680882 0.316793 -0.691400 -0.752996 0.337802 0.467755 -0.700602 0.365646 -0.354472 -0.506158 -0.820739 -0.676930 0.597602 -0.379741 0.827776 0.033352 0.210509 -0.316071 0.244368 -0.036884 -0.890305 -0.313113 1.313998 -0.523259 -0.214959 -0.374763 0.751169 0.689868 -0.201966 -0.202790 -0.864908 0.365409 -0.251944 0.398964 0.113028 0.286267 -0.770995 0.042571 0.482809 0.113228 1.084246 -0.109972 0.559505 0.490152 0.468636 -0.640356 0.224464 -1.679946 0.491289 -0.775356 0.162740 -0.313326 0.327997 0.494236 0.757461 0.638577 -1.158303 1.068416 0.136785 -0.171529 -0.457605 0.289245 -0.042132 -0.533942 -0.314674 0.500422 0.177925 -0.132145 0.009723 0.259489 0.113335 -0.155374 -0.479676 -0.025437 0.908830 -1.101715 0.229316 -0.116211 -0.270134 -0.177487 0.483623 0.699503 0.589973 1.592208 0.830963 -0.157835 0.208883 -1.377706 0.238183 1.485920 0.007026 -0.684837 0.919318 -0.473403 -0.272269 0.255303 0.933517 0.260815 0.555459 -0.785126 -0.746052 -0.232430 -0.118468 1.101507 0.461852 -0.105627 -1.167088 0.708426 -0.177165 -0.256160 1.739180 0.695267 -1.070445 0.006118 0.923263 -0.937589 -0.837004 0.543038 -0.762986 -0.266910 -0.416411 0.328686 0.582298 -0.590393 -0.843640 0.094988 -0.780141 0.706659 -0.239585 -0.771856 0.088577 -0.631364 -0.823944 1.589639 0.187374 -0.110576 -0.410052 -0.829719 -0.161946 -1.120852 0.196727 0.394223 -0.313904 -0.350175 -0.669323 -0.061695 1.034104 -0.452738 0.437624 -1.166426 -0.268765 0.564023 0.533670 0.285899 -0.920615 -0.148513 -0.080407 -0.117832 -0.064371 -0.267725 0.674643 1.544162 -0.623871 0.612367 0.454701 -0.862810 0.235646 1.196386 -0.927289 1.336947 -0.033778 0.987296 0.233447 0.346354 -0.504478 -0.104515 0.009584 -0.443127 -0.347836 0.413179 -0.651462 -0.231586 0.350724 -0.467860 -0.813547 0.322901 0.810468 0.011786 0.131907 -0.110503 -0.619445 -0.164979 -0.344305 0.234018 0.625666 -0.177325 -0.826872 0.588596 0.693104 -0.495546 -0.616321 0.050711 0.438779 0.871247 -1.065506 0.603844 0.092608 0.565304 -1.409438 -1.071745 0.332124 -0.865955 -0.492039 -0.006158 -1.135709 -0.850829 -0.633967 0.468607 -1.010620 -0.456856 0.574761 1.128748 0.478351 -0.442223 0.450187 -0.347284 0.531843 0.041397 -0.124923 0.188340 0.781058 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.245584 0.958465 -0.531190 -1.144238 3.107096 -1.009915 0.471957 1.679234 -1.411533 1.645081 -1.189004 1.081908 -0.047995 -2.275953 0.408381 0.217930 0.360665 1.443084 -0.026618 1.076529 0.817899 -0.783049 0.269782 -0.545656 -0.725456 -1.921620 0.251248 0.772826 1.105789 -0.715094 -0.034459 0.524275 2.316387 -0.517431 1.635829 1.593316 0.838166 1.529492 1.336760 -1.945027 0.456218 0.639949 -0.645177 -1.803371 0.215628 -0.305492 -1.677763 -0.950738 0.893155 -1.311550 0.069774 1.445713 -0.098876 -0.340100 -1.764532 1.307194 1.513880 -0.847647 1.972992 0.457855 -0.924315 -0.814794 -0.988089 2.293293 -1.191225 -0.424097 -0.324512 -1.534235 0.275497 1.248452 0.082803 -1.117578 -0.915918 0.639460 0.678049 -1.600758 0.452625 -0.406519 -0.349541 -1.899258 -1.013660 0.615364 -0.828998 1.602699 0.094800 0.566957 -0.500884 0.383274 0.069128 -1.786980 -0.199193 1.631694 -0.851282 -0.147658 -1.028257 1.815634 1.080279 -0.656746 -0.783070 -1.319742 0.455222 -0.549422 0.847308 -0.979280 0.806269 -1.049931 -0.340390 -0.084127 0.514550 2.050766 0.137625 0.954883 0.724201 0.967451 -0.649696 -0.168572 -2.512307 0.824052 -0.527686 0.211431 -0.605784 0.427655 1.252414 0.666436 1.388141 -2.328733 1.513664 0.339644 0.268435 -1.490786 0.512153 0.162035 -0.477657 -0.611089 1.213185 -0.312223 -0.103471 -0.096983 0.771388 0.484488 -1.408836 -0.828724 -0.102175 2.185257 -2.342090 0.676502 -0.388676 -0.543945 0.011315 0.454286 1.030349 1.134610 2.146546 1.535842 -0.335091 1.890212 -2.258787 0.499660 2.335857 1.182033 -1.337258 1.662783 -1.324273 -0.649804 0.510520 1.301760 0.951673 0.325303 -1.568066 -1.304741 1.211667 0.023622 1.936787 -0.029300 0.182988 -1.648303 1.319359 0.259160 -0.118468 2.571161 0.493856 -2.110265 1.436377 1.599329 -1.068676 -0.602418 0.731592 -1.521839 -0.806760 -0.745354 0.678214 1.217093 -1.304596 -0.935784 -0.351159 -1.284208 1.364250 -0.374120 -1.110184 0.377236 -1.132015 -0.088065 2.145546 0.424414 -0.132622 -0.899978 -1.542843 -1.054319 -2.146031 0.270287 0.354420 -0.716681 -0.472469 -1.490458 -0.908809 1.610548 -0.234114 0.498274 -3.198274 0.220654 1.227002 1.327706 0.049356 -1.575729 -0.229292 0.519084 0.195329 -0.037664 -0.792589 1.267861 1.730846 -1.387950 0.782706 0.215716 -0.323118 1.214803 1.195332 -1.890129 2.224680 0.262207 2.164448 0.575326 0.584423 -0.953304 0.160892 -0.235308 -0.212198 -0.677289 0.446205 -1.426474 -0.669559 0.967682 -0.450368 -1.778990 0.242409 1.397560 0.418438 0.291094 -0.481578 -0.340325 -0.538894 -1.253211 0.556434 1.046767 -0.706671 -1.066724 1.090027 1.261916 -0.502563 -0.201992 0.209238 1.120130 1.293042 -1.945123 1.068479 -0.212899 0.906925 -1.739454 -2.301576 1.166296 -0.866614 -0.967301 0.757161 -2.631946 -1.068443 -0.968240 0.962732 -2.423391 -0.025442 0.387722 2.082909 -0.085213 -0.294445 1.133323 -0.614093 0.564236 -0.339583 0.552500 0.044859 1.291143 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -2.726663 1.282792 0.100305 -2.331730 7.219680 -2.713813 0.886177 4.234164 -1.116331 3.265774 -2.835068 1.535678 -0.466148 -3.802509 0.875984 -0.595800 0.919646 3.591871 -1.122844 1.085972 1.870650 0.520658 0.498347 -1.244241 -1.364723 -3.886305 -0.311339 1.494556 0.794986 -1.078555 -0.446032 1.635686 5.478354 -1.171050 3.943553 3.578126 2.914856 3.525974 1.688921 -1.257208 1.965974 1.258075 -1.271405 -3.979146 0.567427 -0.717303 -4.017882 -1.866555 2.011215 -3.504350 1.685497 2.953482 -0.018250 -0.478173 -2.485673 3.230782 2.015651 -1.151425 3.812523 1.350788 -3.559659 -0.399790 -2.581356 5.596036 -2.735926 1.248472 -1.300683 -4.425948 -1.093305 2.986903 1.595111 -3.090630 -2.680031 0.991097 1.104095 -2.872345 1.212204 -0.469722 1.374924 -2.846239 -2.724805 1.583789 -1.514825 2.634694 0.157308 0.950475 -1.865964 0.533208 0.344401 -3.498495 -0.624898 4.144668 -2.510569 0.639660 -3.599967 1.173550 1.829931 -1.346394 -0.901790 -3.625384 1.103970 -1.199896 1.697009 -0.864325 1.111013 -1.780409 -0.056908 1.195115 1.023235 3.670542 -1.126706 2.104832 1.624720 1.701078 -0.320462 0.674282 -5.711081 2.525754 -1.907073 0.064937 -1.160431 0.821307 2.638557 1.974627 2.730753 -4.407624 3.428959 0.434835 -0.707493 -2.278274 1.272509 0.315489 -1.385467 -1.446092 2.926513 -0.207191 -0.493610 -0.112242 1.812701 0.308798 -2.102113 -2.375749 -0.957946 2.178259 -3.891489 1.186159 -0.948899 -1.274036 -0.187117 1.475874 2.051305 2.463368 4.608089 3.209471 -0.765421 1.678571 -5.193489 0.847682 4.302996 1.538967 -2.877056 3.488324 -2.643792 -0.967181 1.320766 2.979057 1.029187 1.595526 -2.177819 -2.001885 0.453061 0.001333 4.154307 1.337105 0.252031 -3.824827 0.962230 -1.424779 -0.289775 5.849408 2.220041 -4.907508 1.418494 3.701609 -1.365097 -2.723053 1.528763 -3.444395 -2.204153 -1.741260 1.613869 2.630707 -3.107002 -1.980810 1.038160 -2.855072 2.668466 -0.659252 -2.857397 0.657551 -3.400285 -1.185872 5.437271 0.912970 -0.054334 -1.389484 -3.487353 -0.820509 -4.808559 0.570742 1.451099 -0.686875 -1.108982 -2.824073 -1.184281 3.585382 -0.773039 1.650993 -4.971699 -0.090428 2.646418 1.054924 0.511157 -4.241139 -0.712136 -0.083423 -0.115796 0.187203 -1.867814 1.334802 3.888950 -2.785570 2.140036 2.038205 -2.345903 0.934699 2.807721 -3.730824 4.660803 0.468230 3.038806 1.493364 1.405896 -2.406707 0.063355 -0.739999 -0.035481 -1.954328 1.659919 -3.223276 -1.240309 1.255333 -1.668375 -3.169208 0.737681 3.144832 0.256187 0.388752 -0.932940 -1.416033 -1.130574 -2.842890 1.311063 2.365653 -1.675411 -2.762227 2.391536 2.563500 -3.046859 -1.246049 0.643535 2.025359 3.331712 -4.128167 2.288981 0.393935 1.685327 -4.830286 -4.251412 1.585598 -2.680113 -2.192797 0.162776 -4.828607 -3.413291 -1.941710 2.357885 -4.150961 -1.294882 1.406161 4.484666 0.730334 -0.521135 2.622198 -0.988141 1.220472 -0.199996 0.406154 0.219931 2.878310 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.891522 0.673772 -0.171381 -0.710509 1.647103 -0.484543 0.102278 0.924112 -0.192909 1.200138 -0.952069 0.283128 -0.244694 -1.279010 0.025798 -0.075427 0.132413 0.920127 -0.196606 0.379746 0.605486 -0.397817 0.274011 -0.443269 -0.455910 -1.254507 -0.001374 0.346985 0.356060 -0.312899 0.043172 0.198570 1.552070 -0.040410 1.122900 0.971575 0.426784 1.345519 0.718647 0.052696 0.192606 0.572012 -0.449440 -1.322087 0.362093 -0.449190 -0.780220 -0.785906 0.544613 -1.103409 0.916750 0.873008 -0.060166 -0.215015 -1.004867 0.571113 0.880915 -0.155748 1.416380 0.257589 -0.749937 -0.186720 -0.756991 1.225885 -0.918316 0.099576 0.189062 -1.061668 0.044201 0.574434 0.456278 -0.716943 -0.735026 0.461485 0.272307 -0.999643 0.211361 -0.341019 -0.551412 -0.870186 -0.763262 0.327476 -0.226590 0.896580 0.016968 0.306261 -0.504594 0.313884 0.066317 -1.215622 -0.146097 1.131720 -0.502307 0.315792 -0.606975 0.922699 0.321293 -0.290845 -0.485791 -0.462128 0.262099 -0.088092 0.505775 -0.334519 -0.231386 -0.851184 0.490661 0.153790 -0.064155 0.552100 0.371203 0.502260 0.523170 0.763912 -0.513424 0.320321 -1.682296 0.503433 0.119747 0.071867 -0.208395 0.264468 0.263602 0.184629 0.955738 -1.436398 1.007599 0.162233 -0.225297 -1.069801 0.259690 -0.076326 -0.384603 -0.367939 0.768016 -0.055541 -0.090915 -0.250826 0.209801 -0.000496 -0.900707 -0.888715 0.002702 1.238674 -0.979077 0.329697 -0.296222 -0.469609 -0.146581 0.405370 0.542414 0.621587 1.375656 0.941951 -0.081453 0.499952 -1.309649 0.134464 1.419700 0.952950 -1.042572 0.966861 -0.614559 -0.217755 0.478964 0.711605 0.600231 0.274544 -0.838901 -0.745954 0.408627 -0.086912 1.263972 0.339471 0.318630 -0.880398 0.878014 0.283750 -0.138098 1.794138 0.605247 -1.268838 0.489697 0.875423 -0.697246 -0.455388 0.531705 -0.626141 -0.361987 -0.405411 0.305165 0.622401 -0.816109 -0.704512 -0.106738 -1.030599 1.177943 -0.174860 -0.162742 0.343769 -1.179526 -0.288244 1.360515 0.156341 -0.210962 -0.442916 -0.857302 -0.696223 -1.418237 0.221201 0.440429 -0.520915 -0.420191 -0.980193 -0.133813 0.956827 -0.165387 0.362745 -1.187046 -0.337200 0.763594 0.279246 0.188036 -1.155815 -0.249875 0.152806 0.243592 0.437820 -0.195749 0.807524 1.338933 -0.745949 0.633302 0.642587 0.032627 0.520026 0.866573 -1.131205 1.361489 -0.262575 0.751418 0.218074 0.462785 -0.490602 0.074411 -0.044860 0.178016 -0.286862 0.390119 -0.862063 -0.378560 0.344623 -0.784560 -0.613851 0.237483 0.691959 0.331763 0.183077 -0.071154 -0.405603 -0.325702 -0.813361 0.176029 0.765444 -0.085984 -0.828135 0.561929 0.478990 -0.407062 -0.128955 0.172214 0.536829 0.868691 -1.208936 0.505196 -0.056436 0.050032 -1.160130 -1.228859 0.443150 -0.739583 -0.818971 0.478940 -1.599897 -0.538608 -0.636474 0.543838 -1.406087 0.068759 0.038724 1.369729 0.351173 -0.171104 0.745548 -0.300216 0.631995 0.015737 0.068675 0.159624 1.105871 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -6.818079 4.811399 2.033090 -6.549909 12.959362 -1.925382 0.170940 3.739437 -1.675604 9.875051 -6.297355 -0.096108 -2.486798 -10.279164 0.371773 -4.896603 -1.491498 5.397205 -1.299285 5.416595 5.050294 -4.414739 2.199971 -2.474639 -3.768142 -10.124401 -1.893374 3.507833 5.273209 -4.299109 3.808994 -0.141203 10.579146 -1.865254 8.106998 7.871850 3.582732 9.388355 1.007122 0.216790 -0.255775 4.947187 -5.104184 -8.318412 2.473833 -2.677197 -8.113737 -5.452073 4.696193 -6.773856 0.670142 8.791826 -1.834121 -2.202702 -6.823998 7.098682 5.911951 -0.983248 10.997132 1.624623 -3.500689 -0.138152 -9.701164 7.952678 -6.257663 2.434818 -1.230681 -7.887493 0.319434 2.127300 0.574322 -4.138286 -4.970213 6.407963 4.613868 -8.464773 1.246034 -4.926559 -8.226588 -7.700831 -6.034621 2.999400 0.476602 7.354971 0.707998 3.358834 2.012131 4.586093 -1.413313 -11.425557 0.327481 9.185556 -4.141776 -0.959958 -5.212219 7.196988 1.831115 -1.095753 -4.943797 -2.339718 2.432916 -1.173898 5.132735 -3.847671 -0.418385 -8.481171 1.472922 0.900890 1.033081 2.793814 2.594593 2.551082 4.302173 7.888299 -7.376034 2.892974 -10.383572 2.588574 -1.005912 2.627383 -2.288859 3.849156 1.881254 3.066415 8.545017 -11.587867 6.369462 -0.225059 -2.828432 -9.136802 1.435873 -2.129279 -2.756459 -2.993611 5.372171 -1.077420 -1.420761 -2.462420 2.466914 1.269009 -4.272145 -3.751602 1.676193 7.955259 -6.491079 3.227899 -2.400455 -3.864949 -0.887600 4.074375 6.319226 6.536912 12.288898 8.368416 -0.026342 4.563003 -9.594225 0.565627 10.458864 4.811795 -8.031186 8.833337 -5.470085 -2.056555 2.357462 6.497427 6.180952 3.736223 -7.448532 -6.613127 3.366480 0.375875 10.317535 2.363734 0.850594 -6.073612 6.997218 1.053803 -2.880001 12.709436 5.958604 -8.993365 4.357663 5.547198 -7.460827 -5.536426 5.359180 -5.071295 -1.538497 -2.632982 2.106287 4.776935 -4.714673 -5.428853 -0.817621 -8.418490 9.409937 -2.252066 -0.664717 4.783441 -8.069227 -9.618535 8.089024 0.236915 -3.381483 -6.161147 -6.843574 -4.245190 -9.446597 3.454407 2.614605 -3.757490 -4.720152 -8.319032 -0.397591 6.764075 0.222380 4.555943 -9.987008 -3.544757 5.261230 2.696567 4.645464 -5.161822 -1.387834 0.055620 0.811939 2.519333 -0.777956 5.678924 12.113349 -6.606316 5.120312 -0.045902 -4.704202 3.383888 6.947458 -10.190599 11.991331 0.519126 5.879111 0.069055 3.374632 -3.894513 1.590308 2.233092 -1.599409 0.469462 2.014177 -4.283411 -3.731597 1.251666 -7.290793 -4.760190 0.530556 4.257817 0.379957 2.853110 0.922830 -4.372519 -2.761488 -3.754445 1.210558 6.819725 0.018189 -4.432880 5.230354 3.018060 -0.511920 -1.702080 1.247942 3.868824 6.735261 -10.767343 3.495910 -1.870219 0.415481 -8.087202 -8.866495 2.422233 -7.271483 -5.602907 4.505921 -10.591915 -1.555593 -6.616305 2.428579 -6.683868 -1.771051 1.510614 10.976080 4.584003 -3.312902 5.795364 -3.387605 6.139016 -0.251864 -0.997523 2.309714 7.630308 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -4.152173 2.755524 1.022964 -3.737319 8.567414 -2.150113 0.625309 2.638301 -1.583067 6.166475 -3.226622 -0.584382 -1.728339 -7.506782 0.699143 -2.988301 -0.556959 3.970258 -0.253133 3.845519 3.203566 -3.282960 1.093193 -1.079723 -2.231293 -6.212902 -1.074113 2.469378 4.573556 -3.521046 1.661830 0.354902 7.360913 -1.228509 5.862627 5.151145 2.359181 5.521693 1.250526 -2.191406 -0.678277 3.186287 -3.357033 -5.355646 1.370030 -1.215579 -5.268414 -3.344071 3.064075 -3.205748 -0.244952 5.705529 -1.366755 -0.867890 -4.674058 4.390622 3.604074 -0.160830 6.834304 1.056720 -1.330338 -0.454985 -6.337236 4.756524 -3.638521 0.517664 -1.617238 -4.836524 0.695340 1.048697 -0.286273 -3.292969 -2.711291 4.640779 3.522606 -5.276508 0.974459 -2.818077 -5.041551 -5.580078 -4.814811 1.803278 -0.981951 5.185929 0.393429 2.162809 1.131714 2.848120 -1.085567 -7.602422 0.659680 5.931191 -2.744865 -1.222507 -2.476496 5.238150 1.623298 -0.393589 -3.281945 -2.417845 1.514125 -1.489359 3.417332 -2.323004 1.058843 -5.108719 0.005947 -0.404767 1.232050 3.073714 2.693098 1.406972 2.848269 5.294743 -5.139372 0.549447 -6.747674 1.920014 -1.465089 1.873778 -1.510954 2.990226 1.484676 2.057565 5.417560 -8.245750 3.383110 -0.000648 -0.717968 -5.842111 0.832801 -1.515022 -1.674903 -2.215035 3.743070 -0.922662 -1.063338 -1.662461 1.698134 1.565136 -2.701112 -1.585649 1.074668 5.821580 -5.437701 2.100493 -1.622029 -2.792687 -0.473816 2.325925 4.375637 4.773522 7.676240 5.768144 -0.642334 3.717939 -6.696854 0.493972 6.663218 1.622378 -4.886370 5.989625 -3.989780 -1.613274 1.450165 4.841053 4.476152 1.547658 -4.576618 -3.905375 3.083511 0.946508 6.508451 0.416422 0.336840 -3.844648 4.340804 1.038775 -2.477179 8.476073 2.702398 -5.840150 3.375230 3.254463 -4.953178 -3.204518 3.272083 -4.056800 -0.506347 -2.485243 1.686031 3.496343 -3.116648 -2.743414 -0.432817 -5.104384 5.589215 -1.678256 -1.249834 3.207183 -4.643847 -5.524369 6.236190 0.198969 -1.814415 -4.502112 -5.099879 -2.585406 -5.639939 2.260720 0.756431 -2.229668 -2.837695 -5.334807 -0.764648 5.320024 0.723835 3.157142 -7.404363 -1.388363 3.252914 2.776456 2.987848 -3.180488 -0.819734 0.662288 0.286266 0.923573 -0.634120 3.573355 7.887069 -4.561790 2.573905 -0.490195 -3.124333 2.799231 3.938378 -7.116026 7.647766 0.735116 4.970748 -0.012177 1.900035 -2.613107 0.932137 1.573637 -0.811296 0.091969 0.968813 -2.283645 -2.350201 1.117888 -4.294581 -4.114295 -0.285724 2.909351 0.156582 2.075028 -0.150489 -2.793676 -1.519677 -2.366569 1.169095 4.361627 0.045675 -2.332657 3.737759 1.867520 0.379914 -0.778684 0.662618 2.391998 4.111533 -6.911874 1.730833 -1.378677 1.432241 -4.217492 -6.913923 1.864066 -4.504425 -2.721538 3.121075 -6.987904 -0.800289 -4.312507 1.322582 -5.610494 -0.431470 1.054802 7.156974 2.680124 -2.160712 3.529959 -2.163088 3.551674 -0.577224 -0.414524 1.637297 4.691610 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -2.783563 0.394621 0.459399 -2.041452 5.732411 -2.169061 0.138914 2.679160 1.023858 3.232870 -2.491067 -0.744226 -1.510454 -3.535174 0.553249 -1.320664 0.698091 3.168950 -1.425091 0.652441 2.288756 0.326248 0.723526 -1.131201 -0.897591 -3.067298 -1.093679 1.209664 0.780855 -1.400915 -0.333210 1.155484 5.203959 -0.544578 3.864231 3.245995 2.757907 4.109143 0.331997 0.941471 1.034962 2.115499 -1.616671 -4.030230 1.407996 -1.162939 -3.089017 -2.020173 2.198411 -2.821380 2.440843 3.129412 -0.364797 -0.361631 -2.095281 2.376153 1.567612 0.356861 3.945697 1.241280 -2.724308 0.791233 -3.369264 3.855308 -2.906037 2.232246 -0.925427 -4.235473 -1.541889 1.508714 1.887960 -3.070535 -2.893440 1.549749 1.231175 -2.516207 1.218178 -0.713812 1.159458 -2.474732 -3.690847 1.044640 -1.061846 2.547749 -0.204421 0.781591 -1.037090 0.817950 0.268311 -3.753366 -0.225254 3.530354 -2.398492 1.167726 -2.620957 0.377447 0.470020 -0.624396 -1.396824 -2.446848 0.855955 -0.921334 1.901030 0.589963 0.198961 -1.751018 1.075418 0.986037 0.669018 1.424908 0.608598 1.060577 1.478303 2.177740 -1.020488 0.957634 -4.698720 2.053670 -1.236197 0.530514 -0.638651 1.504903 1.577736 0.975526 2.834514 -4.234160 2.669619 0.068428 -1.418926 -2.214747 1.127414 -0.523537 -1.617993 -1.501375 3.086891 -0.167721 -0.907639 -0.663568 1.428476 0.058990 -1.699252 -1.445911 -0.854358 1.018346 -2.256231 0.896454 -1.302134 -2.194499 -0.213412 1.443184 1.740749 2.643222 4.343234 3.476116 -1.019931 0.165200 -4.537329 0.599444 3.726303 0.512799 -3.160594 3.021293 -2.096296 -0.165415 1.715895 2.796047 1.672099 1.458988 -0.877487 -0.869053 -0.183990 0.271627 3.976152 1.371041 0.776390 -3.130832 0.318181 -0.755359 -0.702513 5.897089 2.184616 -4.475164 0.911012 2.780630 -1.519818 -2.772468 1.300004 -2.279701 -1.187071 -2.104035 1.724844 2.374952 -2.959726 -1.821641 1.329803 -3.213426 2.972510 -0.768441 -1.544662 1.718618 -4.359994 -2.331443 5.052555 0.402457 -0.539965 -1.843966 -3.358440 -0.041865 -4.339502 1.260533 0.992642 -0.568845 -1.472843 -2.845861 -0.103384 3.767360 -0.091107 1.854718 -3.070642 -0.702252 2.158537 -0.168765 1.560152 -3.322118 -1.027737 -0.175732 -0.182458 1.039737 -0.961625 0.352539 4.289140 -2.990898 1.572453 2.140399 -2.187735 0.382895 2.626385 -3.635559 4.399061 0.034109 1.773047 0.362849 1.558369 -2.125800 0.197470 0.128225 0.684145 -1.114115 1.522111 -2.307331 -1.159218 0.655462 -2.766145 -2.111358 0.484267 2.269013 0.267059 0.828164 -0.518924 -1.923622 -0.739471 -1.623838 0.972769 2.876719 -0.385147 -2.513151 1.894298 1.366466 -2.372160 -1.235751 0.777541 1.094060 3.505243 -4.088937 1.405413 0.237970 0.584086 -3.568452 -3.495095 0.538302 -2.875306 -1.571976 1.126045 -3.936037 -2.146062 -2.238991 1.823865 -2.557689 -0.639642 0.487116 4.111198 2.255250 -0.642807 2.719307 -0.580044 1.915454 -0.003776 -0.842910 0.799374 3.149132 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.816306 2.032011 -0.025889 -2.207120 5.375741 -0.751123 0.186446 1.441016 -2.269251 4.396423 -1.905595 -0.550569 -1.263867 -5.291018 0.369453 -1.487417 -0.316169 1.911670 0.233107 2.944349 2.053094 -3.212310 0.685876 -0.435477 -1.602522 -3.716418 -0.526845 1.693763 4.034971 -2.964572 0.886857 0.111227 4.818586 -0.745186 4.193641 3.521310 0.889584 3.491308 1.468432 -3.082220 -1.310601 2.323180 -2.581444 -3.309065 0.595231 -0.982923 -3.293504 -2.036184 2.055615 -1.170931 -0.969715 4.021956 -1.236378 -0.263087 -3.583911 2.730865 2.284875 -0.102676 5.152994 0.450207 -0.464601 -0.981670 -4.105952 3.272934 -2.255385 -0.426223 -1.151062 -2.755336 1.470412 0.116456 -1.118258 -1.817621 -1.440280 3.826580 2.488136 -3.936371 0.496353 -1.992833 -4.970618 -4.244212 -3.377589 1.235067 -0.569055 3.838558 0.404780 1.614065 1.383959 2.367226 -1.101602 -5.812450 1.054259 3.954335 -1.799422 -1.154347 -1.235940 4.637551 0.847237 0.171052 -2.767537 -0.815836 1.084526 -1.125855 2.360440 -2.820655 1.671015 -3.874292 -0.033061 -1.049308 1.092819 2.139877 3.215628 0.782547 2.629979 4.207637 -3.743302 -0.458749 -4.009497 0.924141 -0.701789 1.092045 -1.064265 2.386956 0.811929 0.831080 4.258447 -6.110743 1.700788 0.126620 -0.169271 -4.747622 0.181073 -1.581436 -1.124623 -1.513454 2.528639 -0.832833 -0.526997 -1.582526 0.936754 1.394497 -2.613431 -0.517509 1.271466 4.913627 -3.734299 1.430758 -1.024270 -1.836992 -0.375623 1.856210 3.275620 3.708138 5.346199 3.923968 -0.567892 2.785398 -4.492642 0.305777 4.690320 1.135367 -3.646790 4.372196 -3.023794 -1.375021 0.673859 3.457595 3.803217 0.558760 -3.476598 -2.994540 2.817083 1.171463 4.568753 -0.432485 0.430824 -1.226346 3.789767 1.562485 -2.139891 5.105143 1.111866 -3.546585 2.825265 1.884448 -3.532797 -1.369043 2.758264 -3.125545 0.115996 -1.860182 0.783954 2.546108 -2.186162 -1.229677 -0.589511 -3.615150 4.321490 -1.111748 -0.451982 2.342478 -3.195964 -3.475509 3.640805 0.082432 -1.134744 -3.399717 -3.507489 -2.818318 -3.591210 1.534024 0.219510 -1.672003 -1.894097 -3.976297 -0.875519 3.220421 1.109549 2.521004 -5.467261 -0.614859 2.244341 2.579494 2.161189 -0.945439 -0.560758 1.080742 0.092399 0.834057 -0.607216 3.374932 5.062873 -3.033141 1.971310 -1.114493 -1.391408 2.449511 2.105314 -5.218855 5.305957 0.622383 3.331930 -0.066467 1.341200 -1.620244 0.719916 1.294960 -0.639426 0.298462 0.277120 -1.187974 -1.698733 0.652115 -2.774867 -3.008186 -0.831531 1.443942 0.189246 1.578202 -0.386745 -1.767824 -1.169480 -1.714604 1.074653 2.948083 0.109571 -0.889902 2.891034 0.807779 1.416693 0.627378 0.392872 1.496345 2.536359 -4.909882 0.458409 -1.279566 1.397364 -2.216034 -4.545622 0.836707 -2.466220 -1.562740 2.956773 -4.963199 0.203353 -3.059241 0.226284 -3.702470 0.246245 0.589102 5.303136 1.608033 -2.036438 2.071826 -1.603424 2.345226 -0.417748 -0.093508 0.999731 2.969491 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -5.124909 3.890924 1.730234 -4.215903 10.116036 -1.448744 0.742330 3.203475 -4.585695 7.920564 -3.513580 -0.326851 -2.234919 -9.400999 0.775168 -3.695199 -0.933942 3.562707 0.417729 5.729648 3.846060 -5.449126 1.000361 -0.869636 -2.969682 -7.315444 -0.911893 3.044856 7.527520 -4.814654 1.972100 0.157335 8.751740 -1.698111 7.840887 6.712741 2.116927 6.096742 1.997808 -5.896130 -2.413961 4.250691 -4.847363 -5.939991 0.857009 -1.630337 -6.376020 -3.856438 3.752915 -2.393973 -2.913479 7.485316 -2.329238 -0.493716 -6.033552 5.790098 3.859017 -0.526130 9.163901 0.926179 -0.889580 -1.621988 -7.953696 5.954379 -3.777638 -0.365893 -2.817563 -4.965206 2.661625 0.051048 -2.396708 -2.895019 -1.837053 7.106995 4.753665 -7.169274 0.972575 -3.862564 -9.155032 -7.795877 -6.043709 2.316795 -0.633095 6.896994 0.748261 2.985665 2.857301 4.516608 -2.130948 -10.571523 1.897407 7.600102 -3.451940 -2.995666 -2.880586 8.133321 1.938683 0.460028 -4.615874 -1.987737 2.255167 -2.073401 4.373645 -5.725162 3.366030 -7.099363 -0.641633 -1.597433 2.248881 4.137703 4.073527 1.658126 4.887498 7.658822 -6.818320 0.242153 -7.490676 1.813912 -2.052636 2.214147 -1.874355 4.395648 1.727937 2.279355 7.658131 -10.923212 3.029524 0.176456 -0.380926 -8.428960 0.497991 -3.079209 -2.027749 -3.005046 4.518666 -1.252156 -1.095662 -2.926867 2.064325 2.462439 -3.924764 -1.235623 2.357139 8.406520 -7.200154 2.605912 -1.909683 -3.011161 -0.692908 3.560220 6.057505 6.781704 9.873353 7.313425 -0.809388 5.015766 -8.203225 0.224889 8.161418 1.348572 -6.379070 8.081858 -5.541445 -2.801363 1.069041 6.443567 6.722864 1.827986 -6.882441 -6.041261 4.963131 1.913964 8.377031 -0.098839 0.344166 -2.467699 6.958303 1.377604 -4.384147 8.902597 2.726717 -6.533681 4.795911 3.305028 -6.606904 -3.341259 5.011403 -5.955938 0.159080 -3.071888 1.291643 4.520204 -3.756730 -2.288764 -0.737120 -6.588490 7.648785 -2.060281 -0.598470 3.985904 -5.220455 -7.294910 6.600474 0.114105 -2.395500 -6.437183 -6.354856 -5.118116 -6.397021 2.944493 0.348741 -2.703546 -3.925313 -7.240776 -1.469389 5.546143 1.856900 4.694747 -10.107678 -1.570973 4.024255 4.677822 4.257625 -1.970975 -1.053992 1.196668 -0.194585 1.466249 -1.162414 6.239617 9.704049 -5.396361 3.855748 -2.650127 -4.105745 4.083205 4.196213 -9.752120 9.748023 1.557887 6.063124 -0.041317 2.339377 -3.314337 1.142658 2.449253 -1.862292 0.764077 0.667273 -1.904291 -3.007501 0.580923 -5.339226 -5.271969 -1.483796 2.585344 -0.319566 2.931203 0.017710 -3.748593 -2.227731 -3.756251 1.714354 5.525754 -0.262137 -1.708937 5.416942 1.515952 2.229712 0.529135 0.640359 2.781373 4.540208 -9.011860 0.999780 -2.335107 2.578591 -4.380738 -8.482485 1.599438 -5.122160 -3.261347 4.858728 -8.555018 0.455967 -5.751645 0.306330 -6.988931 -0.817855 1.638218 9.568655 2.966672 -3.680309 3.747328 -3.171560 4.565739 -0.531583 -0.071932 1.625886 5.261745 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -2.877167 1.345313 0.311178 -2.363318 6.580116 -1.815584 0.368377 2.486449 -1.676606 4.105164 -2.042329 -0.360268 -1.121562 -5.232877 0.837842 -1.246523 0.079185 2.802805 -0.267449 2.562873 2.203395 -1.894560 0.476882 -0.601398 -1.460345 -3.650060 -0.737459 1.862748 3.530799 -2.937375 -0.060136 0.780890 5.511340 -1.182041 4.693885 3.879337 2.106078 3.454362 1.175462 -3.425256 -0.240841 2.227210 -2.421943 -3.614375 0.586985 -0.768231 -3.965728 -2.169293 2.306289 -1.381424 -0.419048 4.043157 -0.980243 -0.243746 -3.248813 3.327700 1.973429 -0.239742 4.823469 0.934787 -1.144464 -0.195583 -4.240252 4.146898 -2.506063 0.398009 -1.998892 -3.516833 0.399237 0.891648 -0.026860 -2.703723 -1.839283 3.260623 2.470160 -3.626084 1.001595 -1.574431 -1.846235 -4.560557 -3.928117 1.456925 -1.431464 3.743537 0.197836 1.457911 0.476300 1.922332 -0.750359 -5.363558 0.615859 4.123443 -2.318848 -1.018304 -2.034581 3.319037 1.330615 -0.194056 -2.269991 -2.390639 1.226524 -1.557523 2.397948 -1.664546 2.815415 -2.823076 -0.579740 -0.373312 1.552086 2.932545 1.794278 1.045126 2.521091 3.586110 -2.556623 -0.436109 -4.637015 1.519422 -1.819956 1.055811 -1.102346 2.350065 1.968971 1.414014 3.882813 -5.958682 2.062619 0.145076 -0.269856 -3.716989 0.684801 -1.115187 -1.417590 -1.775026 2.912620 -0.598924 -0.777923 -1.132415 1.636923 1.322419 -2.252838 -0.489962 0.454969 3.629183 -4.153674 1.391986 -1.136453 -1.960262 -0.192434 1.825143 3.210912 3.737420 5.428179 4.181188 -0.969770 2.089353 -5.204478 0.562769 4.584392 -0.220451 -3.421755 4.433459 -3.148390 -1.325877 0.954067 3.979632 3.087612 0.787926 -2.755188 -2.439211 1.879780 1.037831 4.695474 -0.219131 0.146462 -2.128407 2.450003 0.372675 -1.972651 5.766306 1.328554 -4.204370 2.370871 2.500148 -2.752535 -2.319077 2.353758 -3.614988 -0.563261 -2.201939 1.492383 2.810428 -2.575385 -1.273949 0.277519 -3.459693 3.689816 -1.202520 -1.889265 2.036033 -3.223390 -3.010648 4.846632 0.229047 -0.849011 -3.185829 -3.968291 -1.510099 -4.037105 1.508960 0.210123 -1.070386 -1.775389 -3.735416 -0.950541 3.993954 0.637744 2.445241 -5.827188 -0.258243 2.368382 2.218889 2.046451 -1.985480 -0.640541 0.696461 -0.275082 0.290874 -1.230383 2.323778 5.219561 -3.376063 1.569173 -0.200529 -2.537254 1.907546 2.445137 -5.257516 5.476289 1.046335 3.294575 0.298296 1.325368 -2.103403 0.442162 0.791768 -0.348601 -0.437449 0.700215 -1.609711 -1.591500 0.651259 -2.517236 -3.507011 -0.475240 2.184625 -0.108617 1.449440 -0.803528 -1.999090 -0.994446 -2.051744 1.280508 3.053515 -0.520602 -1.390082 3.049165 1.504986 -0.027927 0.058879 0.433212 1.582331 3.162823 -4.993379 1.078612 -0.751477 2.156363 -2.863951 -4.888313 0.965677 -2.815396 -1.247771 2.282593 -4.861980 -1.242793 -3.006624 0.932855 -3.776610 -0.312546 1.157177 5.248424 1.831668 -1.781591 2.340829 -1.518911 2.119027 -0.380409 -0.282549 0.849905 2.873138 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -1.221162 1.203091 0.890893 -1.379731 3.222727 -0.610743 0.396369 1.262549 -0.040554 1.767944 -1.503932 -0.181028 0.004715 -1.870860 0.338242 -1.195267 -0.455928 1.306639 -0.395132 0.807763 0.775519 -0.185892 0.035322 -0.551148 -0.811920 -1.799402 -0.737373 0.779870 0.843457 -0.769590 0.448701 0.290381 2.313004 -0.593685 2.118148 1.741335 1.084487 1.510939 0.186923 0.190172 0.643062 0.631594 -0.944476 -1.583496 0.052645 -0.435230 -1.978694 -1.047075 0.670282 -1.423505 0.528670 1.509457 -0.063134 -0.236015 -0.984767 1.623136 0.648107 -0.059416 1.825581 0.643681 -1.262151 0.514434 -2.095353 2.094050 -1.016533 1.015972 -0.805370 -2.056701 -0.327933 0.941248 0.530424 -1.323742 -1.044545 1.081015 0.826496 -1.395130 0.503887 -0.853643 -0.745163 -1.341479 -0.968935 1.046233 -0.177401 1.368590 0.154503 0.441955 -0.328922 0.627043 -0.328212 -2.040131 -0.401165 2.321029 -1.066348 -0.255005 -1.431233 0.737252 0.837034 -0.091852 -0.487438 -1.250809 0.713470 -0.158396 0.703768 -0.451869 0.401702 -1.465246 -0.059791 0.790237 0.070331 1.231219 -0.238370 0.909791 1.036104 1.354894 -1.052520 0.457988 -2.140969 0.895421 -1.055102 0.408836 -0.569005 0.550942 0.628667 1.183577 1.377215 -2.149951 1.335664 0.051729 -0.630423 -1.399846 0.329286 -0.352966 -0.914654 -0.560710 0.807121 0.317361 -0.253759 -0.281062 0.405778 0.127061 -0.322643 -1.169301 0.226605 1.133178 -1.564757 0.386173 -0.218216 -0.349762 -0.526260 1.146790 1.597896 1.123809 2.459407 1.469771 0.086511 0.188899 -2.258553 0.165856 2.063018 0.065698 -1.401861 1.910411 -1.324042 -0.508685 0.449474 1.485294 0.490247 0.974611 -1.491033 -1.254879 0.062878 -0.105731 2.114828 0.720956 -0.185738 -1.454711 1.144453 -0.727460 -0.884012 2.702825 1.357819 -1.975230 0.226517 1.320424 -1.232407 -1.467558 1.210609 -1.637272 -0.626578 -0.484550 0.356638 0.916371 -0.860270 -0.985865 0.350640 -1.528090 1.721757 -0.413807 -0.847125 0.253981 -1.275490 -1.812842 2.427377 0.191389 -0.430957 -0.777218 -1.186023 -0.185824 -1.859887 0.382067 0.907476 -0.578926 -0.906526 -1.386722 0.104867 1.552562 -0.658515 0.970675 -1.621636 -0.695935 1.023475 0.200599 0.882417 -1.597666 -0.230986 -0.545430 -0.006411 0.157428 -0.631412 0.968008 2.635400 -0.997640 1.138144 0.679480 -1.565565 0.170598 1.438339 -1.900217 2.403228 0.170878 0.992546 0.330250 0.621367 -0.935974 -0.135271 0.082479 -0.435219 -0.354954 0.735508 -0.957536 -0.430644 0.076575 -1.414172 -1.032706 0.457909 1.204370 -0.226655 0.289226 0.056420 -1.126429 -0.503064 -1.114793 0.229970 1.177626 -0.393563 -1.177292 1.159098 0.831481 -0.810811 -0.644259 0.087440 0.864151 1.462051 -1.931063 0.811590 0.098669 0.547426 -2.267309 -1.913113 0.376509 -1.772059 -1.000397 -0.112127 -1.865056 -1.160008 -1.217685 0.583524 -1.726538 -0.969447 1.083215 2.346161 0.931583 -0.804639 0.848241 -0.678906 1.241153 0.179061 -0.111316 0.471932 1.236935 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -1.823687 0.468298 0.180618 -1.351038 3.727789 -0.901581 -0.025003 1.587323 0.159955 2.183492 -1.569928 -0.900247 -0.984674 -2.607834 0.397967 -0.675497 0.088581 1.804343 -0.812936 0.775100 1.569491 -0.409900 0.398272 -0.687867 -0.626177 -1.496862 -0.782069 0.797863 1.179914 -0.964772 -0.454966 0.450940 3.129742 -0.356525 2.546870 2.027228 1.449565 2.603327 0.066587 -0.158796 0.165469 1.608605 -1.332087 -2.644942 0.949972 -1.052123 -1.988275 -1.437594 1.404515 -1.484558 1.233777 2.158167 -0.315630 -0.262972 -1.421701 1.449705 1.076236 0.545767 2.742478 0.838854 -1.253096 0.413156 -2.533935 1.984770 -1.632221 1.496412 -0.624898 -2.612495 -0.749161 0.575256 0.992196 -1.919536 -1.701140 1.387314 0.994190 -1.644199 0.902225 -0.736852 0.072172 -1.948577 -2.524750 0.616533 -0.977503 1.978145 -0.276071 0.484206 -0.396740 0.719891 -0.049118 -2.737775 -0.115504 2.334813 -1.339409 0.456994 -1.440075 0.709386 0.219753 -0.025790 -1.362167 -1.140345 0.696739 -0.245927 1.260488 -0.017015 0.654569 -1.417881 0.736179 0.534147 0.551634 0.916975 1.037877 0.453386 1.095337 1.793112 -1.043826 0.461950 -2.694054 0.922519 -0.914682 0.716960 -0.474631 1.257760 1.058531 0.305503 1.939975 -2.978808 1.573632 0.106660 -0.842171 -1.715470 0.767928 -0.701683 -1.193285 -0.934752 1.858348 -0.085917 -0.723597 -0.621647 0.821961 0.164612 -1.410864 -0.507139 -0.259758 1.076068 -1.711387 0.491314 -0.863174 -1.478196 -0.144944 1.088803 1.410789 1.821644 2.987098 2.349870 -0.661151 -0.073148 -2.837538 0.557653 2.756718 -0.116631 -2.208789 1.960443 -1.360722 -0.055350 1.008820 1.784991 1.413103 1.120314 -0.693044 -0.696894 -0.076666 0.302120 2.730171 0.870708 0.683478 -1.704471 0.670620 -0.372757 -0.782859 3.634280 1.288657 -2.611917 0.573671 1.449360 -1.289721 -1.467018 0.939160 -1.423985 -0.363570 -1.373254 0.982592 1.542996 -1.840269 -1.327681 0.544149 -2.215117 2.258578 -0.570846 -0.695575 1.051830 -2.663705 -1.312178 3.107549 0.255409 -0.705137 -1.437615 -2.011358 -0.520861 -2.541031 1.017516 0.509883 -0.474455 -1.335784 -1.984295 -0.112128 2.488612 0.026696 1.057595 -2.068973 -0.412125 1.267594 0.068961 1.503406 -1.806757 -0.661502 -0.140741 -0.232568 0.872109 -0.507179 0.544583 3.107806 -1.989320 0.917836 1.220094 -1.039248 0.360001 1.801804 -2.378732 2.924086 0.113398 1.333984 -0.142160 1.096810 -1.130089 0.193413 0.308524 0.351834 -0.272363 1.028845 -1.090317 -0.732495 0.344536 -1.955470 -1.372865 0.262274 1.225128 0.251482 0.674621 -0.383652 -1.434304 -0.447810 -0.885957 0.429511 2.037361 -0.236692 -1.493771 1.121995 0.513217 -0.893375 -0.469118 0.529348 0.605951 2.286663 -2.678638 0.699411 -0.048850 0.457298 -2.047610 -2.093959 -0.020362 -1.618983 -0.827644 1.417698 -2.420490 -0.907860 -1.626986 0.931242 -1.658859 -0.363142 0.205684 2.720739 1.607031 -0.638728 1.652061 -0.384177 1.610362 0.083495 -0.701019 0.607673 1.974514 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -9.035407 8.727465 7.418399 -6.502878 18.035890 -1.424228 2.851824 10.885733 -13.875917 15.292624 -5.714590 4.756795 -2.336536 -13.206010 1.110426 -6.672759 -2.289302 4.215980 1.873286 11.328656 5.730105 -9.096688 0.994505 -0.535790 -6.570764 -12.940736 -0.221903 5.176971 14.961452 -6.848556 4.871568 -0.208812 14.983888 -3.304888 14.253295 12.094021 4.144145 8.940482 5.287890 -13.875032 -5.834924 6.601560 -9.204628 -7.787520 0.204888 -3.022890 -11.521841 -4.511579 4.984030 -5.792018 -8.714127 12.880888 -4.408135 0.167297 -8.489449 12.628449 5.229817 -5.003271 16.316138 0.857587 -3.505479 -7.898646 -13.778381 12.790423 -3.872468 -1.286798 -7.286341 -9.093714 6.786156 -0.622263 -6.603873 -6.048084 0.001238 14.755734 6.892541 -13.312412 1.108206 -7.072246 -18.188944 -12.417946 -8.400354 4.345761 0.674242 11.507555 1.858427 5.614152 4.833252 8.851802 -5.416262 -20.223730 4.625395 15.474961 -8.546042 -7.094375 -7.506883 14.381127 2.962928 2.755416 -7.089302 -3.003971 4.680623 -2.652270 7.048140 -17.673521 7.008967 -14.042405 -3.009870 -3.476032 5.136304 10.109741 4.336416 5.852263 10.893139 15.701073 -12.148692 0.911501 -12.525995 4.309240 -4.322460 3.607077 -4.106147 7.896745 2.688287 7.372266 15.305134 -20.029069 4.155402 -0.292919 -0.740097 -16.613535 -0.536655 -6.935743 -3.040147 -5.853293 7.587073 -2.238924 -1.867795 -6.921815 4.285731 4.608413 -7.388476 -7.329491 5.244998 15.365837 -16.975132 4.019829 -2.989301 -2.718160 -1.867326 8.430264 12.499840 12.808233 16.344113 11.894603 0.425194 12.643750 -14.770092 -0.338446 13.164177 5.504869 -11.560613 15.948636 -12.987758 -6.916509 1.826539 10.642261 11.859901 4.860057 -15.841347 -14.370267 13.547501 4.761650 15.749366 2.355771 0.388711 -3.910653 14.162236 -2.825750 -9.990554 13.559260 5.459532 -12.499754 8.574287 4.122941 -10.492456 -4.443836 9.741280 -14.092769 -0.529055 -3.706151 -1.508484 8.548301 -5.572653 -3.235179 0.238618 -11.789072 14.987202 -3.286416 -0.227333 5.051669 -7.527773 -13.123939 10.858438 2.398782 -4.649517 -12.006652 -10.314761 -13.161248 -10.507661 4.270061 1.685204 -4.049028 -8.271015 -14.137482 -3.639115 6.674028 4.267597 9.162977 -21.492794 -3.370753 7.667745 7.925775 7.384553 -4.434291 -1.527241 -0.358947 -1.371227 3.255528 -4.222712 14.849186 17.578948 -8.117240 10.818950 -6.868933 -8.325476 6.175136 5.994344 -18.568306 17.316479 2.849521 13.222850 1.125654 3.816250 -7.569075 1.774330 3.357092 -4.296132 1.286834 0.820104 -2.587813 -5.184864 -1.147023 -10.289923 -8.466593 -4.111334 3.427303 -2.791731 5.044008 0.361921 -6.824256 -6.403710 -10.095570 2.653640 9.304740 -3.637419 -2.998272 11.308118 0.583304 3.968837 -0.353430 0.598031 6.223659 6.198012 -16.153665 -0.131106 -4.030112 3.938550 -9.716716 -15.253736 2.377105 -8.718654 -8.144944 5.764064 -14.836013 2.038393 -10.114264 -1.525694 -16.106803 -4.367693 4.534836 17.884158 2.299793 -8.233321 6.151050 -6.462399 8.858831 0.394983 3.253153 1.171055 7.449003 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -7.048470 6.295933 3.609250 -6.061615 15.579429 -2.104037 1.795112 6.932209 -7.308306 12.092990 -5.327845 1.078837 -1.974110 -12.313503 0.893139 -5.673810 -2.285051 4.932638 0.157424 7.465548 4.755516 -6.235022 1.002810 -1.047758 -4.915055 -11.142821 -1.289340 4.291772 10.386179 -6.213998 3.122018 -0.018899 12.549944 -2.971962 11.140052 9.341046 3.966334 7.652515 2.611363 -6.360554 -2.647426 4.979599 -6.742547 -6.987156 0.196233 -2.157233 -10.027573 -4.562656 4.504637 -4.884003 -3.300263 10.112187 -2.858933 -0.520427 -6.865430 9.973945 4.428294 -2.681292 12.539450 1.321431 -3.019894 -3.272411 -11.800453 11.021610 -4.501155 0.354710 -4.439224 -7.723528 3.224722 0.711185 -2.797407 -4.763832 -2.050255 10.595262 6.434795 -10.178005 1.034461 -5.772911 -12.921836 -10.119168 -7.216209 3.985596 -0.053024 8.963727 1.538645 4.159058 3.336859 6.469191 -3.743060 -15.360888 2.294445 12.494572 -5.732970 -4.524140 -7.297084 9.965288 2.697013 1.113893 -5.562055 -3.759083 3.464493 -1.986171 5.529842 -10.622147 4.159115 -10.701255 -1.470983 -1.190109 2.853096 6.576015 3.362101 3.109592 7.113555 11.565247 -9.254802 0.968590 -10.822593 3.333144 -2.909777 3.063105 -3.184907 5.381261 2.349649 5.105403 11.093880 -15.581340 4.382196 -0.312634 -1.592813 -12.517335 -0.014952 -4.381046 -2.931803 -3.964877 5.547129 -1.215317 -1.356034 -4.288433 3.135513 3.220473 -5.260886 -4.642288 3.932809 11.360598 -11.549312 3.326450 -2.147920 -2.587144 -1.936120 6.319229 9.742733 9.137941 13.885820 9.366684 0.498041 7.355402 -11.905215 -0.085752 11.127157 3.424993 -8.869913 12.336162 -9.156883 -4.305608 1.170042 8.991701 8.004081 3.393339 -11.021945 -9.349756 7.607483 2.581996 12.267353 1.079114 -0.413228 -3.874729 9.749699 -0.714035 -6.921648 12.443574 5.995761 -9.572175 5.869739 4.327137 -8.136658 -5.095526 7.962604 -9.883823 -0.924689 -3.217209 0.731313 6.151061 -4.243933 -2.980857 0.046797 -9.110950 11.566966 -2.754928 -1.169653 4.625585 -6.769629 -11.231919 9.323777 0.353030 -3.440972 -8.416777 -8.251772 -8.305415 -8.752409 3.459543 1.852512 -3.703524 -5.929824 -10.255178 -1.748000 7.447665 1.859959 7.095568 -14.761846 -3.109634 5.827533 5.526098 6.322178 -4.306046 -1.084351 -0.371109 -0.090849 2.033708 -2.592623 9.424696 14.520415 -6.508078 7.279514 -3.314767 -7.019391 4.169008 5.793822 -13.939949 13.709051 2.346647 7.734791 0.586187 3.095175 -5.018826 1.303567 2.712645 -2.566539 0.849870 1.160560 -2.748325 -3.940885 -0.556141 -8.623336 -6.851288 -1.764657 3.610714 -1.531550 3.672746 0.064600 -5.488326 -3.950713 -7.252388 1.942224 7.258801 -1.313737 -2.450408 8.207409 1.705743 1.893277 0.724239 0.573694 4.660569 5.991833 -12.331002 1.222440 -2.616947 3.413380 -8.230968 -12.588147 1.745698 -7.980007 -6.274498 4.350686 -11.924767 -0.475064 -7.919544 0.088134 -11.912764 -3.159905 3.880883 14.331236 3.377422 -5.524837 5.029380 -4.694714 6.861187 -0.133140 0.884939 2.520821 6.621624 +PE-benchmarks/tug-of-war.cpp__main = -1.942650 1.193973 0.509091 -1.443533 4.104509 -0.809609 0.263024 2.104519 -1.216078 2.925880 -1.493695 -0.011086 -0.790186 -3.102832 0.313420 -0.993598 -0.199701 1.627815 -0.327207 1.396777 1.470599 -1.133027 0.327189 -0.454042 -1.064939 -2.513773 -0.378666 0.984361 2.102172 -1.257572 0.230666 0.293634 3.414012 -0.551219 2.837539 2.341422 1.296988 2.409608 0.633646 -0.991100 -0.391914 1.497113 -1.601564 -2.321777 0.525987 -0.845960 -2.353057 -1.275425 1.328407 -1.557652 0.161569 2.497477 -0.549868 -0.123509 -1.700692 2.154982 1.190417 -0.301272 3.213799 0.602870 -1.158658 -0.652062 -2.845548 2.766278 -1.455966 0.576180 -0.832675 -2.394008 0.211397 0.410947 -0.030448 -1.568854 -0.991263 2.231976 1.332487 -2.344006 0.573061 -1.109571 -1.981520 -2.372717 -2.280830 0.841183 -0.440766 2.299970 0.090891 0.833356 0.226892 1.257630 -0.567674 -3.633952 0.321377 2.988904 -1.553709 -0.347704 -1.903092 1.887851 0.482140 0.173223 -1.435380 -1.103429 0.846588 -0.368861 1.407725 -1.856707 0.757068 -2.281830 0.216938 -0.085455 0.692444 1.506875 1.002987 0.695663 1.520086 2.623795 -1.833150 0.380698 -3.006726 1.042082 -0.682055 0.769714 -0.725141 1.311225 0.883417 0.850444 2.624116 -3.827753 1.410060 0.018958 -0.547308 -2.809025 0.347464 -0.981875 -0.968842 -1.077666 1.814564 -0.276476 -0.539857 -0.973537 0.896592 0.586622 -1.672765 -1.151762 0.404903 2.393387 -2.751111 0.718140 -0.775912 -1.072320 -0.391128 1.429621 2.079144 2.259094 3.425107 2.481991 -0.206806 1.304815 -3.190399 0.243120 3.025243 0.844675 -2.408777 2.779645 -2.090902 -0.669739 0.689862 2.121163 1.896250 1.042566 -2.023033 -1.759375 1.324784 0.591688 3.179137 0.623386 0.355328 -1.421368 1.790243 -0.278277 -1.381060 3.597937 1.556852 -2.758660 1.291164 1.305648 -1.789559 -1.295199 1.627192 -2.212084 -0.350001 -1.139441 0.526821 1.739986 -1.599587 -1.030643 0.288201 -2.418167 2.847237 -0.657869 -0.335208 1.206958 -2.349047 -2.103579 2.827777 0.243130 -0.801487 -1.953992 -2.225612 -1.852859 -2.546658 0.952796 0.535948 -0.807066 -1.512382 -2.535878 -0.460418 2.318434 0.355315 1.527095 -3.405194 -0.596431 1.529726 0.858995 1.566369 -1.611267 -0.491654 -0.090092 -0.091503 0.818181 -0.664325 1.777885 3.578934 -1.902070 1.687364 0.106367 -1.335772 0.840277 1.659250 -3.225873 3.390190 0.336254 1.846849 0.091997 0.997098 -1.346667 0.295546 0.465247 -0.133180 -0.071207 0.653882 -0.975320 -0.930824 0.129991 -2.290094 -1.665532 -0.177282 1.104656 0.015830 0.837165 -0.206056 -1.436150 -0.857501 -1.689130 0.514744 2.053288 -0.360441 -1.079181 1.789783 0.416748 -0.187164 -0.121244 0.372329 1.040681 1.939543 -3.099697 0.446332 -0.386340 0.673348 -2.252540 -2.979141 0.262108 -1.880334 -1.518920 1.320932 -3.112403 -0.456555 -1.891916 0.498976 -2.899748 -0.576194 0.564823 3.476315 1.044600 -1.042593 1.612768 -0.827486 1.751469 0.016772 -0.041063 0.617217 1.982282 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -3.631868 4.046632 1.957145 -2.982151 7.225368 -0.904137 1.185566 3.140235 -3.906976 6.159310 -2.775037 1.042037 -1.068217 -6.019651 0.048270 -2.890008 -1.107586 2.523508 0.539606 3.882054 2.380849 -3.688681 0.734227 -0.603136 -2.694578 -5.682611 -0.201297 1.986138 5.116287 -2.923636 1.977994 -0.184405 5.966584 -1.104028 5.851577 4.648105 1.154992 4.192757 2.176094 -2.966227 -1.739529 2.413085 -3.288178 -4.213296 0.294502 -1.225688 -4.186001 -2.647704 2.233576 -2.778788 -1.076835 4.870758 -1.465935 -0.301130 -3.916867 4.268673 2.482691 -0.898036 6.531565 0.321467 -1.604727 -1.882301 -5.764439 4.548104 -2.274847 -0.458710 -1.518542 -3.561856 2.335103 0.322927 -1.866901 -2.419886 -0.756371 5.309108 2.765148 -5.360618 0.199969 -2.975791 -7.898758 -4.662712 -3.232583 1.828123 0.401434 4.410913 0.951388 2.239131 0.882175 3.357562 -1.818398 -7.843919 1.280865 6.254661 -2.515422 -1.718002 -2.323772 5.885378 1.325061 0.383398 -2.725217 -1.064155 1.692700 -0.731819 2.751471 -5.984254 1.192947 -6.276237 -0.019401 -0.921376 0.758041 2.712374 2.474375 1.770752 3.725921 5.969500 -4.956432 0.848205 -5.935960 1.546444 -0.773191 1.243982 -1.471987 2.578195 0.143010 2.062376 5.606309 -8.031133 2.415027 -0.008628 -0.397218 -7.059411 0.012896 -2.154630 -1.095853 -1.890012 2.736863 -0.714699 -0.504156 -2.389662 0.836650 1.305749 -2.979297 -3.018846 2.319547 6.963764 -5.542424 1.860187 -1.080499 -1.367832 -1.062459 2.904715 4.713363 4.445641 6.881252 4.778980 0.450569 3.943353 -5.816696 -0.426230 5.366189 2.627644 -4.613681 6.092937 -4.387553 -2.380193 0.722804 4.193100 4.322660 1.583066 -6.417052 -5.484324 4.710528 1.179967 5.959224 0.293870 0.358866 -1.621438 6.022881 0.378062 -3.402473 6.141039 2.451388 -5.043899 3.244816 2.136564 -4.140138 -2.014806 4.140328 -4.788235 -0.134775 -1.364817 -0.135705 2.928611 -2.366271 -1.834316 -0.568176 -4.736442 6.192817 -1.212932 0.178664 2.294193 -3.594317 -4.685238 4.565097 0.391078 -1.808318 -4.035344 -4.070297 -4.816779 -4.454073 1.514591 1.309717 -2.321327 -3.042332 -5.264887 -0.772788 3.104550 1.049918 3.460350 -6.443358 -1.930795 3.111203 2.989640 2.781651 -2.283040 -0.507487 0.103787 0.319005 1.526050 -0.717935 5.851490 7.269037 -3.040325 4.044233 -1.162522 -2.256022 2.754016 2.876849 -6.943566 6.759300 0.582235 4.496067 0.431009 1.550207 -2.380530 0.791550 1.448832 -1.191622 0.686434 0.629814 -1.545390 -2.112346 -0.169931 -4.485523 -3.149167 -0.991602 1.878711 -0.444809 1.760733 0.401562 -2.455469 -2.259558 -4.218638 0.825407 3.537119 -0.584462 -1.648516 3.981722 0.734140 1.270456 0.417075 0.364369 2.465612 2.588774 -6.110923 0.446344 -1.537581 1.084897 -4.178497 -6.241396 1.323082 -3.984704 -3.482889 2.092808 -6.411378 0.238556 -3.796378 0.013558 -6.945219 -0.846816 1.382201 7.312737 1.501310 -2.342229 2.523382 -2.456872 3.426786 0.014261 0.724500 1.095066 3.923195 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -3.531027 4.710035 2.070507 -2.360647 10.155752 -2.385304 1.138340 5.694390 -5.678050 7.698856 -2.351795 0.041770 -1.380828 -7.105113 0.216615 -1.945754 -0.979559 3.066531 0.485330 3.574750 2.428926 -3.680763 0.373546 -0.072256 -2.552585 -4.640198 -0.274843 2.079735 7.906636 -5.911728 0.207334 -0.026885 7.287058 -1.528679 7.481566 4.715956 1.505139 3.995033 2.971633 -6.189327 -2.394486 2.836589 -3.736384 -3.739185 -0.265407 -1.085496 -3.961638 -2.464740 2.564731 -0.259871 -0.421498 5.139053 -1.813349 0.351738 -4.114525 6.303201 1.551933 -0.399526 7.211400 0.266530 -1.093008 -1.766331 -8.560525 5.878649 -1.892308 -0.035485 -2.606398 -3.212690 2.412101 -0.775515 -2.098473 -5.730894 0.898941 7.794055 2.757634 -5.443017 0.383766 -2.891713 -8.471499 -7.389432 -6.044797 1.881062 -1.296467 4.502004 0.834947 2.257672 -0.458430 3.924076 -2.305982 -10.137223 2.018720 7.471370 -3.402572 -2.063445 -3.526157 5.872145 0.314342 1.149771 -3.265375 -2.285727 1.736677 -1.126050 2.916445 -9.548088 6.316546 -7.376081 -0.116947 -1.542844 1.466960 3.388654 5.730648 0.910768 4.457755 8.251669 -5.699116 -1.775257 -7.130286 1.103893 -0.835833 1.350852 -1.361313 3.476442 0.206453 2.959180 6.156931 -11.586729 1.497660 -0.521384 -0.535471 -8.726595 -0.392417 -2.836676 -1.448840 -2.186413 3.004765 -0.677724 -0.723751 -2.846511 1.487944 1.819229 -4.987176 -2.944933 2.779857 9.441316 -8.426100 1.596486 -1.193175 -1.594100 -1.159775 3.610072 6.693722 5.231710 7.345218 5.097516 0.096556 2.903833 -7.581004 -0.522721 4.846578 -0.370762 -4.926122 8.151716 -5.335263 -2.307095 0.618476 6.431134 4.986064 1.353235 -7.144278 -6.282734 6.978186 2.175035 6.187607 -1.164204 0.614930 0.593338 7.059750 -0.869321 -6.925846 7.501627 1.926026 -5.149609 3.345237 1.472435 -2.499051 -1.863744 4.837005 -7.025217 0.421592 -1.941636 0.047302 3.203007 -2.356967 -0.394625 0.210294 -4.675737 8.078703 -1.445140 -1.580356 3.023184 -4.006712 -3.819189 5.814140 0.078372 -1.615904 -4.651697 -5.979126 -6.538891 -3.956411 1.855721 0.534991 -1.457037 -3.179455 -5.530716 -0.654939 4.937388 1.910337 4.270246 -8.375250 -1.998130 2.904058 3.099013 4.504093 -2.047822 -0.517441 0.294978 -0.061676 1.575337 -1.438372 7.198631 10.231534 -3.307649 5.263785 -0.713424 -2.141636 2.377769 2.616408 -9.084119 6.797725 1.490562 4.957481 -0.079387 1.411422 -2.701477 0.693843 1.760128 -0.491027 0.970903 -0.062765 -0.516011 -2.079790 -2.210272 -7.171421 -4.806650 -1.880370 1.365395 -1.194487 2.185472 -1.738267 -2.459554 -2.378210 -5.699240 1.245101 3.724155 -0.551769 -0.590026 4.672683 -0.109288 1.895434 3.987851 0.231793 1.881517 2.930234 -6.297151 -0.919740 -1.623922 3.544189 -3.310021 -7.532446 -0.218862 -3.409006 -3.823380 2.862373 -7.100549 -0.847131 -4.011865 -0.638852 -10.336360 -0.828764 1.350464 9.254630 2.365417 -2.863638 2.241877 -2.408871 3.427782 0.138818 0.064600 1.230748 3.456355 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.979920 0.690251 0.087330 -0.853834 2.477407 -0.660766 0.183598 0.987552 -0.484940 1.618488 -0.755298 -0.125228 -0.226792 -1.861980 0.275251 -0.463945 -0.019135 1.033684 0.002861 0.862851 0.639227 -0.688319 0.173920 -0.149945 -0.597724 -1.531815 -0.299083 0.724347 1.268735 -1.101796 0.144688 0.260681 2.034893 -0.417745 1.767168 1.377265 0.665954 1.102271 0.701949 -1.028340 0.011823 0.621100 -0.839277 -1.191599 0.073805 -0.186604 -1.457217 -0.746326 0.721485 -0.620649 -0.036161 1.370060 -0.329292 -0.037961 -1.159912 1.194509 0.647532 -0.117870 1.699630 0.270880 -0.512716 -0.139432 -1.499613 1.665899 -0.855924 -0.049294 -0.757315 -1.354742 0.214828 0.455282 -0.104444 -0.987935 -0.564368 1.257711 0.865120 -1.337173 0.306796 -0.583409 -0.820363 -1.593309 -1.211587 0.660772 -0.442566 1.310034 0.190348 0.548052 0.025866 0.675642 -0.355524 -1.989559 0.222609 1.586378 -0.860723 -0.380410 -0.578663 1.270083 0.633890 -0.071225 -0.604816 -0.932219 0.399797 -0.579620 0.778547 -0.598233 0.957247 -1.118982 -0.274925 -0.134929 0.486270 1.216545 0.694027 0.501950 0.949539 1.374705 -1.074941 -0.307762 -1.685391 0.686291 -0.657231 0.294970 -0.469210 0.756649 0.603902 0.727237 1.417109 -2.258078 0.729556 0.059261 -0.002585 -1.416514 0.108557 -0.370853 -0.475354 -0.557698 0.904149 -0.209262 -0.177988 -0.417190 0.456370 0.476259 -0.764068 -0.352444 0.249706 1.551318 -1.624294 0.514767 -0.274270 -0.544527 -0.172518 0.717118 1.311942 1.316403 1.944269 1.403618 -0.240866 0.826675 -1.979857 0.167239 1.663968 0.038957 -1.157963 1.741911 -1.237686 -0.586372 0.341003 1.499217 1.019753 0.159141 -1.131851 -0.952834 0.838224 0.402395 1.694183 -0.170918 -0.036854 -0.828859 1.014060 0.178252 -0.762177 2.183801 0.460806 -1.557425 0.852290 0.928238 -1.138046 -0.711938 0.953152 -1.461134 -0.247425 -0.753696 0.407922 1.034388 -0.813831 -0.421474 0.098816 -1.201376 1.404242 -0.419343 -0.744137 0.702844 -1.044006 -1.010044 1.876219 0.175444 -0.177400 -1.038312 -1.432263 -0.571503 -1.428955 0.374249 0.186504 -0.517786 -0.464250 -1.325960 -0.345193 1.411929 0.177939 0.966621 -2.180533 -0.073509 0.887570 0.768809 0.565371 -0.794853 -0.152521 0.226325 -0.078437 -0.024212 -0.500737 1.000304 1.888107 -1.068167 0.691946 0.004529 -0.805815 0.740974 0.740274 -1.944822 1.993827 0.272350 1.251806 0.256331 0.431234 -0.741372 0.139125 0.190096 -0.248711 -0.260843 0.237633 -0.670687 -0.564847 0.337846 -0.933858 -1.363709 -0.190267 0.850260 -0.020470 0.468668 -0.356312 -0.754781 -0.390872 -0.815251 0.502735 0.952135 -0.141392 -0.537964 1.188424 0.613946 0.013995 -0.202497 0.071258 0.655913 1.007082 -1.760265 0.363626 -0.186698 0.884640 -1.146570 -1.870633 0.474728 -1.063191 -0.541615 0.495937 -1.942731 -0.580951 -1.055710 0.238163 -1.675486 -0.035432 0.573588 2.059736 0.512991 -0.755307 0.738998 -0.600005 0.680663 -0.137755 0.056729 0.341278 0.990349 +PE-benchmarks/Iterative_QuickSort.cpp__main = -1.732485 1.293810 0.700903 -1.049744 3.807087 -1.075810 0.150934 2.278581 -1.110050 2.580158 -1.304593 -0.309571 -0.954686 -2.715306 0.209959 -0.831898 -0.000366 1.743803 -0.330306 1.028063 1.424105 -0.808256 0.230223 -0.432395 -0.816464 -1.503563 -0.401748 0.702328 1.968982 -1.525122 -0.114846 0.383556 3.200218 -0.322643 2.942646 2.050478 1.040683 2.397016 0.795182 -0.997010 -0.493026 1.505871 -1.398326 -2.393229 0.649303 -0.896152 -1.454878 -1.123736 1.245110 -0.952804 0.750500 2.045606 -0.471365 0.064317 -1.515873 1.784908 0.793647 0.402166 2.886535 0.545211 -1.156698 -0.270051 -2.942737 2.054169 -1.318958 0.886905 -0.686952 -2.040767 0.127772 0.093713 0.185707 -2.335082 -0.730764 2.207060 0.752970 -1.875781 0.602447 -0.800834 -1.729986 -2.134587 -2.630990 0.566939 -0.732732 1.839767 -0.103175 0.609516 -0.624850 1.071607 -0.370706 -3.429120 0.316912 2.701572 -1.464154 0.221299 -1.422164 1.397887 0.049747 0.282197 -1.296346 -0.955409 0.762946 -0.253321 1.217803 -1.956482 1.255069 -2.185200 0.675116 -0.156326 0.397499 1.150862 1.744166 0.616387 1.483545 2.572482 -1.565499 -0.023431 -3.049816 0.805831 -0.648179 0.572534 -0.404311 1.301979 0.398394 0.554543 2.206898 -3.857384 1.165931 -0.015017 -0.499573 -2.751120 0.470815 -0.990448 -0.936354 -1.050138 1.769822 -0.109323 -0.596040 -0.976947 0.584701 0.347495 -1.851548 -1.303592 0.259250 2.453071 -2.550126 0.490986 -0.817060 -1.205474 -0.324068 1.180198 1.899023 1.990629 2.907438 2.248218 -0.376777 0.509815 -3.018653 0.080169 2.319175 0.135640 -2.244919 2.538884 -1.658338 -0.449562 0.813934 2.055914 1.754982 1.064279 -1.727265 -1.717101 1.366987 0.561966 2.616509 0.427034 0.676872 -0.808279 1.725945 -0.376110 -1.847218 3.562058 0.877823 -2.536391 0.977994 0.990388 -0.947559 -1.102796 1.344980 -2.111238 -0.075716 -1.095554 0.402944 1.466966 -1.698343 -0.869206 0.461677 -2.177981 2.845466 -0.531687 -0.502412 1.081654 -2.530719 -1.385470 2.911354 0.314882 -0.716505 -1.650669 -2.257499 -1.635034 -2.188050 0.903211 0.496395 -0.496781 -1.431662 -2.135613 -0.163871 2.236373 0.392789 1.332688 -2.551927 -0.777621 1.278914 0.426241 1.649507 -1.664535 -0.558429 -0.073307 -0.099720 1.079790 -0.446241 1.731546 3.734280 -1.685362 1.696037 0.922462 -0.807281 0.606056 1.516256 -3.024880 2.776705 0.125579 1.773068 -0.058793 0.892169 -1.268748 0.148158 0.505603 0.348542 -0.000709 0.596700 -0.660885 -0.729511 -0.354495 -2.627086 -1.415367 -0.209482 0.867269 0.009860 0.738643 -0.481841 -1.206252 -0.765282 -1.626460 0.389955 1.908842 -0.280147 -1.134159 1.438942 0.031083 -0.294414 0.502725 0.398599 0.656749 1.758602 -2.612376 0.090961 -0.285680 0.622475 -1.822512 -2.514521 -0.132013 -1.496481 -1.253834 1.211039 -2.695114 -0.560580 -1.522797 0.469990 -3.073183 -0.282087 0.155058 3.227232 1.299877 -0.756267 1.430069 -0.579522 1.629140 0.199721 -0.322683 0.385055 1.968897 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -3.147335 2.967884 3.621035 -2.876608 8.258865 -0.453073 0.991119 5.589303 -2.309420 4.531983 -3.279285 1.728356 0.075414 -2.788743 0.309884 -3.522071 -1.336481 2.596286 -1.634100 1.622869 1.792824 1.062915 0.037722 -0.678643 -2.552390 -4.011929 -1.791008 1.823306 2.225092 -1.050521 1.307334 0.229863 5.774283 -2.385089 5.600556 4.030176 3.869006 2.938873 -0.280310 0.466455 1.257135 1.522411 -2.791425 -3.143409 -0.385919 -1.769950 -5.078019 -1.082805 1.882550 -4.075916 -0.089936 3.279251 -0.267853 0.221657 -0.384609 5.023453 0.187180 -1.972630 4.782876 1.084527 -5.464833 -0.332541 -5.094600 7.126212 -1.636955 3.614240 -3.389615 -5.543447 -1.183266 1.633013 0.687173 -3.531579 -1.633881 3.478027 1.435581 -3.456026 1.387953 -2.149037 -0.683829 -2.812977 -1.692609 2.369615 -0.140444 2.315615 0.076345 1.122930 -0.889353 1.842644 -1.698976 -5.645493 -0.350233 6.606794 -3.952907 -0.005212 -5.896297 -0.214737 0.849455 0.898458 -1.038101 -3.030007 1.831141 0.392672 1.523121 -4.040953 1.989057 -3.467565 -0.955174 1.507259 1.144927 3.560766 -3.145965 3.058736 3.540143 4.154320 -1.638966 2.169463 -4.909907 2.809198 -3.923322 1.164914 -1.672698 1.620780 2.070182 3.890686 4.341756 -4.769826 2.650598 -0.731553 -2.114882 -4.096365 0.652452 -1.696295 -2.330988 -1.486488 1.930284 0.674565 -0.939560 -2.101321 1.499542 0.240556 -1.460175 -4.595482 0.897010 0.341588 -4.415252 0.571809 -0.464107 0.071321 -1.306669 4.075324 4.473656 3.172074 6.077170 3.476098 1.004281 1.540899 -5.661674 -0.092541 4.020277 0.993086 -3.828197 4.883252 -4.616862 -1.710753 1.566960 3.264784 1.070202 4.476395 -3.929529 -3.722670 0.641595 0.794893 5.737807 3.261541 -0.504330 -3.248824 1.993760 -4.660093 -2.577618 5.942565 3.724058 -5.821405 0.798385 1.925628 -0.954227 -3.336640 3.136710 -5.326280 -2.661997 -0.640843 -0.214858 2.845988 -1.928606 -1.925098 2.733882 -3.866352 4.887827 -1.265766 -2.205184 0.473341 -3.818421 -5.130855 5.130822 1.181716 -1.258980 -1.957992 -2.307580 -0.845888 -4.428932 0.681342 2.778451 -0.855095 -2.964811 -3.871549 0.191863 2.360484 -0.745169 3.346827 -5.212788 -2.355185 2.716708 -0.583145 2.504444 -5.016446 -0.424137 -3.413404 -0.760007 1.371120 -2.922968 2.794011 6.283835 -2.034692 4.654870 0.948941 -5.885894 -0.981291 2.929140 -4.997395 5.907665 1.020914 1.901383 0.897718 1.296924 -2.911459 -0.286541 -0.484387 -0.581189 -0.751977 2.012975 -1.843075 -1.061145 -1.234922 -4.475869 -1.382523 0.364569 2.219625 -1.662486 1.013299 0.298034 -3.513689 -2.331936 -3.965236 -0.063419 2.935703 -2.875086 -3.457832 3.706871 0.313049 -3.037567 -1.426377 -0.168893 2.587308 2.855881 -4.771762 0.720050 0.675361 0.652491 -6.896538 -4.234689 -0.521694 -4.272288 -3.362654 -1.296152 -3.419134 -2.720572 -2.912030 0.555693 -4.183732 -4.762443 3.674311 6.375442 1.960795 -2.334361 2.305129 -1.728640 3.962861 1.120921 0.737513 0.690303 2.380928 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.949212 0.479427 0.437697 -0.604290 2.235372 -0.559991 0.147514 1.811645 -0.508906 1.211126 -0.759814 0.436346 -0.193119 -1.008779 0.211894 -0.409627 0.030555 1.003641 -0.421575 0.298983 0.699028 0.293187 -0.031075 -0.222406 -0.542967 -1.055042 -0.248554 0.446226 0.581671 -0.371689 -0.100872 0.386234 1.817412 -0.476504 1.637121 1.214087 1.193858 1.000659 0.239834 -0.094471 0.219860 0.622269 -0.710120 -1.118728 0.134959 -0.461861 -1.156088 -0.299546 0.657039 -0.939959 0.420708 0.960216 -0.090406 0.191335 -0.310934 1.157724 0.125814 -0.387355 1.378575 0.428688 -1.388814 -0.214044 -1.204801 2.080549 -0.682108 0.754011 -0.717247 -1.509518 -0.315172 0.428822 0.364617 -1.105250 -0.501913 0.847103 0.272213 -0.948949 0.531422 -0.313697 0.428288 -0.906203 -0.965865 0.495388 -0.347666 0.807141 -0.110883 0.244943 -0.546636 0.377619 -0.250057 -1.523075 -0.021089 1.535552 -1.187986 0.269311 -1.477618 0.010337 0.246805 0.192549 -0.295717 -0.986763 0.487867 -0.097620 0.530613 -0.723273 0.679290 -0.596296 -0.079934 0.125665 0.422159 1.103060 -0.445414 0.731780 0.851723 1.054906 -0.100521 0.311270 -1.562018 0.902459 -0.880658 0.302085 -0.326249 0.475559 0.852129 0.687005 1.163234 -1.469042 0.709441 -0.077890 -0.315882 -1.032603 0.330344 -0.453631 -0.658538 -0.631887 0.936275 0.092567 -0.357132 -0.533576 0.596233 0.167711 -0.778763 -1.088298 -0.103862 0.196683 -1.364681 0.160431 -0.354482 -0.310659 -0.247968 0.861700 0.957164 1.030299 1.561023 1.118132 -0.045408 0.409704 -1.717496 0.051897 1.198922 0.287534 -1.117550 1.261979 -1.221536 -0.373332 0.586502 0.999185 0.465724 0.972577 -0.710192 -0.704488 0.265808 0.300996 1.604605 0.625383 0.090172 -0.900996 0.270926 -0.909511 -0.698217 1.904663 0.785819 -1.740964 0.405624 0.604004 -0.126393 -0.790296 0.662665 -1.379759 -0.640155 -0.515665 0.246149 0.953989 -0.908994 -0.432675 0.820762 -1.104301 1.217872 -0.329419 -0.584671 0.324845 -1.359521 -0.751610 1.667128 0.390259 -0.251729 -0.680180 -0.937799 -0.364598 -1.340367 0.287606 0.479935 -0.098805 -0.706137 -1.112075 -0.189427 1.045169 -0.038502 0.777903 -1.671702 -0.362367 0.796035 -0.138382 0.551899 -1.439538 -0.267934 -0.585054 -0.154605 0.446132 -0.766962 0.563543 1.678513 -0.812922 1.006433 0.616807 -1.138648 -0.094522 0.807441 -1.468444 1.571781 0.207504 0.527653 0.282785 0.420492 -0.970810 -0.105211 -0.174995 0.219294 -0.382443 0.511898 -0.552412 -0.283597 -0.140196 -1.176038 -0.548671 0.031419 0.654378 -0.157028 0.301118 -0.203883 -0.846596 -0.525788 -1.129402 0.150122 0.973927 -0.644340 -0.919845 1.005239 0.094524 -0.901559 -0.301800 0.093136 0.592925 1.001149 -1.382242 0.188003 0.214579 0.331109 -1.630191 -1.331438 -0.107681 -0.943875 -0.805897 -0.025708 -1.229124 -0.781304 -0.756116 0.367582 -1.408402 -0.827463 0.620971 1.695023 0.475883 -0.450029 0.843593 -0.331188 0.944630 0.242699 0.137569 0.090022 0.872479 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.891522 0.673772 -0.171381 -0.710509 1.647103 -0.484543 0.102278 0.924112 -0.192909 1.200138 -0.952069 0.283128 -0.244694 -1.279010 0.025798 -0.075427 0.132413 0.920127 -0.196606 0.379746 0.605486 -0.397817 0.274011 -0.443269 -0.455910 -1.254507 -0.001374 0.346985 0.356060 -0.312899 0.043172 0.198570 1.552070 -0.040410 1.122900 0.971575 0.426784 1.345519 0.718647 0.052696 0.192606 0.572012 -0.449440 -1.322087 0.362093 -0.449190 -0.780220 -0.785906 0.544613 -1.103409 0.916750 0.873008 -0.060166 -0.215015 -1.004867 0.571113 0.880915 -0.155748 1.416380 0.257589 -0.749937 -0.186720 -0.756991 1.225885 -0.918316 0.099576 0.189062 -1.061668 0.044201 0.574434 0.456278 -0.716943 -0.735026 0.461485 0.272307 -0.999643 0.211361 -0.341019 -0.551412 -0.870186 -0.763262 0.327476 -0.226590 0.896580 0.016968 0.306261 -0.504594 0.313884 0.066317 -1.215622 -0.146097 1.131720 -0.502307 0.315792 -0.606975 0.922699 0.321293 -0.290845 -0.485791 -0.462128 0.262099 -0.088092 0.505775 -0.334519 -0.231386 -0.851184 0.490661 0.153790 -0.064155 0.552100 0.371203 0.502260 0.523170 0.763912 -0.513424 0.320321 -1.682296 0.503433 0.119747 0.071867 -0.208395 0.264468 0.263602 0.184629 0.955738 -1.436398 1.007599 0.162233 -0.225297 -1.069801 0.259690 -0.076326 -0.384603 -0.367939 0.768016 -0.055541 -0.090915 -0.250826 0.209801 -0.000496 -0.900707 -0.888715 0.002702 1.238674 -0.979077 0.329697 -0.296222 -0.469609 -0.146581 0.405370 0.542414 0.621587 1.375656 0.941951 -0.081453 0.499952 -1.309649 0.134464 1.419700 0.952950 -1.042572 0.966861 -0.614559 -0.217755 0.478964 0.711605 0.600231 0.274544 -0.838901 -0.745954 0.408627 -0.086912 1.263972 0.339471 0.318630 -0.880398 0.878014 0.283750 -0.138098 1.794138 0.605247 -1.268838 0.489697 0.875423 -0.697246 -0.455388 0.531705 -0.626141 -0.361987 -0.405411 0.305165 0.622401 -0.816109 -0.704512 -0.106738 -1.030599 1.177943 -0.174860 -0.162742 0.343769 -1.179526 -0.288244 1.360515 0.156341 -0.210962 -0.442916 -0.857302 -0.696223 -1.418237 0.221201 0.440429 -0.520915 -0.420191 -0.980193 -0.133813 0.956827 -0.165387 0.362745 -1.187046 -0.337200 0.763594 0.279246 0.188036 -1.155815 -0.249875 0.152806 0.243592 0.437820 -0.195749 0.807524 1.338933 -0.745949 0.633302 0.642587 0.032627 0.520026 0.866573 -1.131205 1.361489 -0.262575 0.751418 0.218074 0.462785 -0.490602 0.074411 -0.044860 0.178016 -0.286862 0.390119 -0.862063 -0.378560 0.344623 -0.784560 -0.613851 0.237483 0.691959 0.331763 0.183077 -0.071154 -0.405603 -0.325702 -0.813361 0.176029 0.765444 -0.085984 -0.828135 0.561929 0.478990 -0.407062 -0.128955 0.172214 0.536829 0.868691 -1.208936 0.505196 -0.056436 0.050032 -1.160130 -1.228859 0.443150 -0.739583 -0.818971 0.478940 -1.599897 -0.538608 -0.636474 0.543838 -1.406087 0.068759 0.038724 1.369729 0.351173 -0.171104 0.745548 -0.300216 0.631995 0.015737 0.068675 0.159624 1.105871 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -11.594592 11.963103 5.030156 -10.749865 25.215025 -3.141159 3.623639 10.094160 -8.052683 18.164935 -11.658999 3.578550 -2.802155 -17.512948 0.561766 -9.685284 -3.401751 8.739577 -1.890284 9.402075 7.911810 -7.213160 2.751700 -3.697837 -7.719954 -20.314980 -1.504102 5.926666 11.644645 -5.923035 5.760539 -0.222836 18.527154 -4.126921 15.477780 14.000973 7.441323 14.516474 3.074255 -1.689030 -0.871906 7.262949 -9.086577 -14.267087 1.642199 -4.353671 -16.289960 -8.638307 7.364402 -13.252940 0.823843 14.879747 -3.145501 -2.731628 -11.043311 14.882225 9.180104 -4.197874 19.581005 2.492041 -7.899659 -4.103198 -17.139159 17.865647 -8.519212 3.526058 -3.183954 -13.822118 1.937379 4.047303 -1.984549 -6.694842 -6.277395 12.761490 8.841521 -15.475778 1.476413 -8.863474 -19.365761 -12.459873 -8.895316 5.946666 0.964393 12.925085 2.459583 6.117903 2.382494 8.405491 -3.786583 -21.419261 1.082933 20.579618 -7.924286 -3.320527 -12.740660 13.998688 4.346797 -0.685625 -7.715766 -5.471167 5.024538 -1.103857 8.179384 -14.173671 -1.145856 -18.501146 1.502376 1.894530 1.918539 8.246186 1.516137 5.017509 8.650746 15.441016 -13.471379 6.247742 -20.215829 5.619613 -2.386551 4.211035 -4.785764 6.042469 2.554361 7.810438 15.579679 -21.691440 11.228602 -0.041676 -4.623601 -18.215806 1.307579 -4.678312 -4.426353 -5.071416 8.471959 -1.396309 -1.961046 -5.339069 4.400845 2.505729 -8.106814 -10.833721 4.666682 16.331520 -15.360580 5.447338 -3.484526 -4.104159 -3.223433 9.108030 12.930017 11.667090 22.663540 14.238864 1.762083 11.447591 -17.521419 0.186641 18.822458 10.131728 -14.078770 16.971700 -12.940423 -5.273425 2.798998 11.631744 9.940372 8.369301 -17.516214 -14.727715 8.446897 1.222742 18.702892 5.696702 0.592528 -9.850175 15.467489 -2.532834 -7.281872 20.822930 12.502334 -16.593393 7.387975 8.847965 -13.495071 -9.265454 11.123941 -12.868583 -3.066348 -4.305865 1.923197 8.563318 -7.508177 -8.187437 -0.577643 -14.458533 17.610021 -3.438558 -0.956875 6.176464 -12.051314 -15.865206 14.793321 0.510632 -5.762641 -10.522185 -11.451944 -12.279549 -15.565293 4.755816 5.794990 -6.742988 -9.464880 -15.226332 -1.619877 10.985997 0.343531 9.422072 -19.316149 -7.104751 9.626088 6.866829 7.982532 -10.376127 -2.031654 -2.173794 1.436633 4.461982 -3.069188 13.799341 22.596256 -9.893665 12.124291 -2.507233 -10.538654 5.341258 12.530088 -18.789336 20.788215 1.961922 11.036853 1.507948 5.627363 -7.426265 2.324119 2.802172 -4.310949 0.769878 4.004339 -7.251141 -6.173289 1.011613 -13.431491 -8.831495 0.152761 7.438128 -0.728878 4.388414 1.597379 -7.804910 -6.304822 -11.807787 1.975044 11.168703 -2.394495 -7.284408 10.532476 4.347497 -1.443861 -1.612205 1.821013 7.840836 10.449335 -18.391519 4.586109 -3.042393 1.836008 -16.963860 -18.090314 3.989185 -13.378699 -12.721740 5.166230 -18.950716 -2.949499 -11.495279 2.886773 -18.331050 -6.700157 4.966883 21.030630 5.838099 -5.324718 9.217569 -6.527776 10.694332 0.053715 1.139683 4.481672 12.669751 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.447780 0.289609 -0.021578 -0.444151 0.877866 -0.268878 -0.092580 0.516891 0.260379 0.531389 -0.578159 0.037110 -0.068012 -0.517258 0.042028 -0.005828 0.012439 0.556190 -0.232762 0.067380 0.330150 0.031725 0.157800 -0.326900 -0.181761 -0.532857 -0.085963 0.150454 -0.041964 -0.005938 -0.114409 0.087417 0.691183 -0.068659 0.489916 0.462290 0.322391 0.673305 0.214044 0.311073 0.304653 0.271621 -0.182828 -0.723038 0.242066 -0.267251 -0.380063 -0.429035 0.297033 -0.690195 0.665931 0.384112 0.033193 -0.234906 -0.390682 0.314722 0.337645 0.092791 0.615334 0.199347 -0.460930 0.113673 -0.426777 0.590643 -0.550523 0.382062 0.053024 -0.664230 -0.265529 0.432429 0.409990 -0.360525 -0.444096 0.060970 0.042981 -0.389923 0.184855 -0.172723 0.274927 -0.245136 -0.331371 0.195065 -0.180320 0.352320 -0.035690 0.111991 -0.420212 0.097346 0.141272 -0.436998 -0.227957 0.481738 -0.239950 0.254723 -0.228465 0.148114 0.247556 -0.250952 -0.062319 -0.249169 0.147824 0.037728 0.234864 0.139603 -0.053555 -0.308546 0.366273 0.375374 -0.043512 0.192796 -0.057917 0.286734 0.153139 0.236356 -0.024598 0.221475 -0.851219 0.216453 -0.086879 0.055281 -0.093527 0.094604 0.247531 0.123555 0.334636 -0.532288 0.654491 0.092475 -0.201556 -0.274984 0.277391 0.062864 -0.223980 -0.142141 0.348940 0.037701 -0.114194 -0.003135 0.156323 -0.125074 -0.374515 -0.373478 -0.147300 0.280287 -0.317820 0.152202 -0.155393 -0.246677 -0.000942 0.161594 0.189925 0.188053 0.669715 0.441677 -0.052588 -0.127839 -0.594929 0.147938 0.666223 0.189593 -0.463323 0.373304 -0.183037 -0.035405 0.279461 0.286465 0.098294 0.404811 -0.218079 -0.279244 -0.199810 -0.187842 0.571932 0.320769 0.183165 -0.577561 0.222585 -0.095069 0.048224 0.937939 0.386353 -0.661284 0.022715 0.542943 -0.324422 -0.370488 0.142826 -0.159684 -0.166783 -0.194925 0.200411 0.282061 -0.461643 -0.559653 -0.008053 -0.498123 0.523702 -0.053783 -0.163686 0.090807 -0.601800 0.029965 0.763483 0.176388 -0.161728 -0.120100 -0.358087 -0.157233 -0.739631 0.114370 0.322290 -0.214341 -0.205805 -0.376894 -0.014337 0.468792 -0.244633 0.049988 -0.393470 -0.180218 0.360861 -0.069119 0.102873 -0.613579 -0.137841 -0.072485 0.025769 0.219105 -0.102737 0.175315 0.669817 -0.371584 0.279572 0.621222 -0.052758 0.095783 0.572515 -0.408725 0.650746 -0.142266 0.163121 0.135364 0.267958 -0.245785 0.042270 -0.085058 0.000993 -0.143129 0.323289 -0.509969 -0.175742 0.189499 -0.379968 -0.216468 0.283101 0.441047 0.220219 0.032368 -0.026944 -0.268020 -0.125890 -0.304359 0.024696 0.387433 -0.063805 -0.583949 0.146749 0.352352 -0.480556 -0.368433 0.142930 0.214669 0.549576 -0.553016 0.452056 0.096201 -0.021882 -0.739494 -0.336146 0.143129 -0.331073 -0.328755 0.095255 -0.681314 -0.465255 -0.268514 0.410805 -0.464552 -0.073567 0.028722 0.565460 0.287427 -0.033743 0.424680 -0.115361 0.317460 0.119102 -0.131481 0.028725 0.543650 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.853767 0.622075 0.137437 -0.877656 1.502775 -0.538104 -0.015096 0.684590 0.279461 0.917701 -1.010012 -0.073413 -0.336224 -1.287662 0.104834 -0.396488 0.096124 1.061895 -0.282691 0.541301 0.708097 -0.361858 0.309631 -0.602135 -0.334614 -0.954207 -0.114766 0.313292 -0.007676 0.031713 0.264083 0.228426 1.324046 0.123257 0.957017 0.901704 0.228710 1.543311 0.441501 0.380585 0.337920 0.584036 -0.309530 -1.578624 0.624777 -0.458021 -0.704559 -1.015645 0.508825 -1.351971 0.816509 0.849078 0.039355 -0.414506 -1.023135 0.312508 0.952406 0.372034 1.155483 0.415337 -0.630524 0.167052 -0.863974 0.360735 -0.952279 0.367399 0.325766 -1.100394 -0.149007 0.722383 0.583458 -0.597295 -0.850412 0.118083 0.277712 -0.725174 0.354881 -0.303567 -0.483073 -0.499976 -0.641027 0.244162 -0.284662 0.853588 -0.141882 0.256704 -0.478998 0.140386 0.242498 -0.877878 -0.351972 0.911736 -0.269477 0.310758 -0.305323 0.832728 0.470880 -0.468732 -0.496215 -0.342490 0.312984 -0.035346 0.502847 0.299220 -0.683642 -0.746349 0.728178 0.498434 -0.164092 0.469860 0.225740 0.551398 0.248906 0.451938 -0.628194 0.674771 -1.594746 0.371045 -0.167299 0.179741 -0.147042 0.221823 0.261901 0.150568 0.567819 -1.123635 1.248860 0.322038 -0.215059 -0.694896 0.566791 0.093286 -0.361766 -0.366508 0.789012 0.004670 -0.171456 0.012301 0.095647 -0.145978 -0.483254 -0.636750 -0.239848 1.009162 -0.576988 0.341701 -0.344026 -0.639195 0.017594 0.110302 0.320582 0.370809 1.273250 0.865412 -0.240085 0.008908 -1.079775 0.249584 1.469286 0.530721 -0.898319 0.706465 -0.066431 -0.038644 0.434796 0.477499 0.506911 0.519380 -0.596852 -0.716159 -0.234102 -0.337841 1.040708 0.662360 0.355708 -1.274593 0.746330 0.132320 0.117211 1.756754 0.613177 -1.076091 0.091009 1.004957 -1.111496 -0.705782 0.208033 -0.146952 -0.155668 -0.327291 0.446185 0.472543 -0.886817 -1.139400 -0.277688 -0.991807 0.870447 -0.168051 -0.102809 0.089150 -1.093161 -0.306873 1.439970 0.219612 -0.375296 -0.299107 -0.782952 -0.305909 -1.408327 0.293977 0.465694 -0.437885 -0.447160 -0.694026 -0.079053 0.899602 -0.423862 -0.003237 -0.653976 -0.355215 0.669302 0.054757 0.209359 -1.141605 -0.299186 0.131421 0.144078 0.436145 0.140416 0.429833 1.306395 -0.747258 0.391475 0.905599 0.052077 0.511988 1.121591 -0.832594 1.295280 -0.389797 0.907535 0.109294 0.502158 -0.342305 0.059253 0.042001 -0.092463 -0.243048 0.604820 -0.881228 -0.325500 0.516771 -0.622632 -0.493490 0.508487 0.824788 0.427522 0.147850 0.161201 -0.496669 -0.170251 -0.361953 0.109338 0.785372 0.010115 -1.018367 0.200509 0.710303 -0.502844 -0.658917 0.286301 0.439488 0.987586 -1.083804 0.861834 -0.018671 -0.186895 -1.044943 -0.787068 0.588285 -0.783110 -0.624469 0.454105 -1.354407 -0.519477 -0.547704 0.853228 -0.839723 0.081061 -0.107735 1.028453 0.537854 -0.044317 0.778210 -0.229392 0.617118 0.052658 -0.180160 0.097506 1.250964 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -6.951085 6.678223 2.080703 -7.460281 13.502173 -2.840496 1.254093 6.967639 -2.634295 10.413445 -6.175951 -0.486421 -1.951756 -12.087748 0.660047 -6.611154 -1.966252 6.602545 -1.407835 6.648081 5.415049 -4.070244 1.711408 -1.955380 -5.135925 -9.858658 -0.911137 3.941778 6.730713 -4.277302 3.778562 -0.185782 12.532206 -2.497237 10.921686 8.717945 5.473851 9.211525 2.677693 -0.450299 -1.473645 4.908041 -5.788473 -8.571289 1.088801 -2.379934 -9.644576 -5.212584 4.446019 -7.503017 1.448526 9.429428 -1.116579 -1.146694 -6.706680 8.285839 4.814451 -1.640060 11.768978 2.119988 -3.961200 -1.783708 -10.507082 9.369286 -5.591969 2.554278 -2.175305 -7.209590 0.849528 2.010024 -1.472931 -4.983566 -4.226121 7.775380 5.984796 -9.592352 1.943337 -5.656056 -9.109241 -7.939512 -6.019492 4.323495 -0.187063 8.348828 0.939782 4.064081 1.680031 5.527570 -3.136644 -13.357660 1.483935 11.349119 -5.166813 -3.337922 -7.330111 8.614367 1.712688 0.250665 -5.739925 -3.983679 3.728404 -0.728411 5.418530 -7.584006 -0.438384 -10.312100 0.518682 1.764440 0.443958 5.888015 3.046089 3.214414 5.837569 10.184746 -8.113890 3.564003 -13.113628 3.086713 -2.650432 3.150727 -2.621124 4.047362 2.684930 4.977715 8.604740 -13.654693 6.904434 0.880293 -2.811293 -10.525651 1.512343 -2.810641 -3.110039 -3.567161 5.741654 -0.897587 -1.437922 -3.545280 3.161860 1.947920 -3.868949 -5.918874 2.672527 8.174870 -9.250324 3.080566 -2.265892 -3.160320 -1.697162 5.549228 8.009921 6.534078 14.046857 8.335305 0.198589 6.052041 -10.529285 -0.408540 10.747865 3.934806 -8.531115 10.652232 -7.817838 -3.444604 1.455555 7.942817 5.968466 5.286969 -9.904859 -8.417352 5.012885 1.292929 11.552706 1.259415 -0.017539 -6.898401 8.754146 -0.754023 -4.548307 14.345500 7.849554 -9.346579 2.585281 4.658156 -7.785747 -6.212247 7.039246 -8.083403 -1.581721 -2.555812 1.425118 5.208221 -4.546086 -5.453352 -0.168534 -8.804363 9.769627 -2.722012 -2.376116 2.992930 -8.496164 -8.327153 9.941637 0.579731 -4.276054 -6.491299 -7.627413 -5.619450 -9.769552 3.891892 3.718418 -2.885691 -5.741573 -8.656993 -0.569194 7.212913 0.540401 4.688429 -11.907616 -4.191447 6.418400 3.591904 5.752216 -6.227428 -1.018162 -0.983574 1.179525 3.170341 -1.431417 7.706218 14.197225 -6.283480 6.904166 -0.792518 -7.314607 3.137579 7.598524 -12.292784 13.706060 1.488938 6.208621 0.313049 2.931707 -4.630393 1.319484 1.795304 -2.311113 0.934052 1.989009 -3.772394 -3.922331 -0.635599 -7.664197 -5.114624 -0.260022 4.899063 -2.081349 3.230632 1.104897 -4.723419 -3.993376 -6.583812 0.949719 7.564418 -0.580847 -4.265780 6.690217 2.810266 0.329972 0.474677 0.618434 4.815821 7.414927 -11.495507 2.706133 -1.872549 1.353234 -9.736018 -11.276694 2.576858 -7.686714 -5.110259 2.539064 -10.237575 -2.132097 -6.996502 2.437661 -10.241807 -2.745870 3.786332 12.468504 4.397429 -4.264664 4.694543 -3.925724 7.625891 0.753119 -0.369837 3.217400 8.122866 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/tarjan-algorithm.cpp__main = -17.918578 6.707265 3.855699 -14.101573 35.058554 -11.842934 2.795936 20.956972 2.332147 21.579563 -16.904477 -1.881992 -8.889632 -22.070474 1.806918 -11.027349 2.275762 19.588338 -9.890313 5.350262 14.683954 2.152290 4.685730 -7.528211 -8.042682 -19.115361 -4.326466 6.716797 4.615994 -5.081980 0.116446 5.308615 32.639233 -3.347478 25.002487 20.099959 17.340216 26.548999 3.077086 9.633764 4.417765 13.034660 -10.443692 -25.263381 7.427940 -8.553016 -20.016449 -12.464552 12.756271 -22.141933 17.305339 19.422568 -1.074402 -2.286766 -11.820671 16.260535 9.654334 -0.636006 25.857605 7.584323 -19.340715 1.218737 -21.323719 25.669719 -16.760373 14.954395 -2.813457 -24.796701 -8.298907 9.004661 10.011184 -17.962766 -17.163734 10.597136 7.959293 -17.420612 6.945520 -6.293758 -0.399511 -12.997999 -20.003023 7.029824 -4.149428 15.679385 -0.898205 5.602779 -6.701471 6.505680 -0.165718 -25.403487 -0.931573 25.897768 -14.638583 5.916130 -22.918175 4.025325 1.279515 -2.561006 -10.440338 -13.623319 6.885861 -2.040472 11.521785 -5.784730 -4.609778 -15.496511 8.344700 8.822179 1.465664 9.691081 1.794190 7.864880 10.333508 16.448133 -7.250138 11.426233 -32.386306 12.297904 -5.998601 3.556891 -4.087823 7.780353 8.206110 7.250283 18.013742 -27.496771 18.569797 1.362973 -11.187316 -17.734694 6.877166 -4.036140 -9.738492 -9.184350 18.500416 -0.443067 -5.134438 -5.923246 8.542605 -0.679355 -11.333014 -15.668034 -2.902803 7.557403 -15.544338 5.260769 -7.928771 -11.259111 -2.854107 11.435625 11.986126 14.520428 28.472061 20.054977 -3.247973 2.274287 -27.200886 1.719345 23.497275 8.859046 -21.096784 19.792826 -14.438979 -2.071609 9.032882 16.211368 9.492825 13.168506 -10.737192 -9.806429 0.373743 0.868307 26.105093 11.328629 4.632293 -19.591053 6.390794 -8.459022 -5.360113 35.786162 19.469061 -26.948820 2.461003 15.470635 -9.584967 -17.768920 10.509008 -15.645482 -8.120064 -10.085184 7.853912 13.596969 -17.250125 -12.989086 7.689795 -21.074444 20.954825 -4.476940 -7.497135 7.286954 -28.269008 -14.226654 29.459137 2.481898 -6.073305 -10.473056 -19.394103 -6.470151 -27.474859 8.058641 9.706822 -3.344506 -12.270277 -18.367682 0.003340 20.497606 -1.118708 10.799795 -18.130036 -8.146704 14.841449 -1.471401 11.612971 -23.148657 -6.021697 -4.303360 0.861979 10.270422 -5.204599 6.518193 29.140798 -16.469394 14.402005 13.185758 -14.405206 0.971947 18.184608 -23.452366 28.207832 -0.223520 9.556880 2.210982 9.605126 -12.741460 1.361822 0.342033 3.616209 -4.841542 10.198931 -14.090298 -7.366488 0.074911 -19.576134 -10.113379 3.366896 13.259706 -0.725518 4.908704 -0.505772 -12.055231 -7.252658 -15.499028 3.722108 18.533833 -3.457889 -15.922182 12.081470 6.565838 -14.383946 -3.915609 4.548819 8.473765 21.401146 -25.352740 8.075123 0.938021 0.477611 -25.962149 -22.381586 2.789659 -18.531858 -13.694553 5.015848 -23.542607 -12.401236 -13.804482 11.400126 -20.480792 -7.658883 4.634439 26.890767 12.752965 -3.667593 16.016378 -4.197965 15.109100 2.055144 -3.689533 5.778283 20.924933 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.540843 3.835491 1.398661 -4.439916 7.782391 -1.515560 0.762492 3.212520 -0.350939 4.839010 -5.513305 -0.014228 -1.809949 -6.037879 0.198928 -2.409299 -0.250969 4.905802 -1.543480 3.188220 3.793446 -2.121971 1.592226 -3.206487 -1.875367 -3.974096 -0.920989 1.289453 0.678794 0.481294 1.548744 0.281164 6.256245 0.399938 4.687372 4.464140 1.117729 7.993245 1.247956 1.792318 0.965658 3.484982 -2.137073 -8.010302 3.348709 -3.143070 -3.631244 -5.152706 2.512148 -7.104135 4.136017 4.360176 0.070699 -2.307200 -4.609902 2.047555 5.492069 1.323677 6.290942 1.910518 -3.280372 0.742590 -4.893827 1.644343 -4.105079 2.996804 1.871183 -5.788352 -0.785961 2.658880 3.521270 -3.748745 -4.894006 1.415403 1.301017 -3.859737 1.725008 -2.239156 -3.887697 -3.077520 -3.321712 0.842545 -1.458698 4.489120 -0.869576 1.099198 -2.416611 1.059184 0.987027 -5.066746 -2.024300 5.389178 -1.177965 1.885176 -2.909590 3.751042 1.486471 -1.592850 -3.563508 -1.082378 1.714573 0.974872 2.588957 -0.006264 -3.698429 -4.633328 3.658973 2.842678 -0.984179 1.943989 1.332326 2.828890 1.755882 3.020601 -3.784402 4.042572 -7.529809 1.380886 -0.631133 1.368537 -0.819663 1.527267 0.618136 0.410646 3.466527 -5.843606 6.155179 1.181929 -2.099727 -4.387621 2.808728 -0.279205 -2.154295 -1.735521 3.616977 0.217320 -1.149441 -0.610803 0.248940 -1.005194 -2.950147 -4.053762 -0.551405 5.144535 -3.306721 1.409443 -1.963928 -3.158620 -0.096881 1.351117 2.027908 2.078268 6.406883 4.683742 -0.492681 0.362378 -5.275450 1.237124 7.475092 3.915199 -5.149983 3.403063 -0.628101 0.100476 2.629027 1.889588 2.721598 3.311138 -3.754066 -4.165723 -0.582125 -1.780734 5.561030 4.497567 2.060032 -6.399159 4.420861 -0.100485 -0.206024 8.581183 3.704295 -5.323345 0.338707 4.251923 -4.980629 -3.406312 1.241174 -0.922770 -1.144917 -1.236918 1.497300 2.141258 -4.078214 -6.269698 -1.449810 -5.393651 5.474683 -0.814590 -0.057695 0.307878 -5.764614 -2.422370 6.640742 0.950277 -2.740972 -1.788886 -3.260151 -2.083669 -6.877392 1.892945 2.649861 -2.315237 -3.727808 -4.157884 0.176797 4.047740 -2.004369 0.044504 -2.886655 -2.800321 3.203470 -0.070145 2.209585 -6.741148 -1.600210 -0.456973 1.019004 3.032155 0.924071 2.715758 7.623884 -3.818623 2.219170 4.669464 0.243238 1.945161 6.104343 -4.168754 6.397223 -1.981976 5.229337 -0.192552 2.753477 -1.600653 0.426173 0.586601 0.310091 -0.337359 3.424089 -3.918454 -1.621676 1.769006 -4.202468 -1.913143 2.657121 3.413784 1.725452 0.822264 1.066205 -2.743622 -1.351507 -2.030934 -0.430359 4.425942 -0.502627 -5.367701 0.793909 2.190541 -2.281793 -2.477204 1.445045 2.240926 4.807200 -5.577792 3.866064 -0.593234 -1.929579 -5.846465 -3.984748 2.272053 -4.231764 -3.989918 3.308097 -6.187586 -1.865989 -3.119612 3.624436 -4.507218 -0.721615 -0.604677 5.300928 2.893988 -0.069787 4.048802 -1.144271 4.457466 0.303053 -0.903252 0.590100 6.348234 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918746 0.879098 -0.117695 -0.932801 1.985181 -0.632394 0.062712 1.276823 -0.383572 1.176763 -1.033995 0.635945 -0.013299 -1.474207 0.129343 0.035012 0.120511 1.185620 -0.117410 0.703664 0.640261 -0.421804 0.258866 -0.531508 -0.538480 -1.237780 0.098609 0.438121 0.237614 -0.219837 0.183377 0.284272 1.545210 -0.045660 1.216883 1.097333 0.413048 1.364195 0.921616 -0.214419 0.342795 0.425792 -0.373642 -1.514668 0.445301 -0.368027 -0.964711 -0.948095 0.492158 -1.388080 0.827855 0.957820 -0.005561 -0.338520 -1.135189 0.600035 1.011883 -0.262521 1.355117 0.370292 -0.905524 -0.221554 -0.750730 1.105086 -0.910423 0.021764 0.245110 -1.161749 0.114903 0.905709 0.630394 -0.851798 -0.755812 0.354202 0.245376 -1.023660 0.329261 -0.378152 -0.358253 -0.966729 -0.572430 0.429288 -0.362327 0.956319 0.031168 0.399208 -0.733900 0.255756 0.073085 -1.188033 -0.226368 1.108897 -0.498319 0.244491 -0.688053 1.158637 0.639731 -0.480957 -0.456812 -0.664467 0.407152 -0.125325 0.536080 -0.175072 -0.157741 -0.850122 0.391327 0.282363 -0.003314 0.935589 0.060549 0.771714 0.549663 0.690546 -0.506019 0.440704 -1.870151 0.542474 -0.155144 0.135811 -0.291807 0.161786 0.562123 0.386067 0.831249 -1.435421 1.276194 0.330876 -0.060615 -1.048961 0.471008 0.063789 -0.311444 -0.424696 0.799063 -0.092877 -0.078014 -0.074950 0.225308 -0.006347 -0.924557 -1.068815 -0.130920 1.485804 -1.207014 0.460210 -0.280460 -0.439838 -0.045335 0.270775 0.624450 0.570521 1.502657 0.932778 -0.102029 0.599617 -1.380236 0.196515 1.630529 1.051931 -0.999649 1.079751 -0.489685 -0.344748 0.405450 0.725921 0.548359 0.323886 -1.073957 -1.055946 0.416377 -0.205470 1.276147 0.402538 0.268233 -1.244602 1.000237 0.246649 -0.063012 2.007318 0.510600 -1.341520 0.451543 1.109201 -0.783686 -0.543876 0.459759 -0.654759 -0.495320 -0.240074 0.388270 0.592545 -0.922409 -1.043360 -0.248344 -1.046675 1.067464 -0.170063 -0.337890 0.071867 -1.020409 -0.038551 1.594701 0.320211 -0.323521 -0.345504 -0.908242 -0.522324 -1.509586 0.164227 0.564140 -0.495651 -0.376171 -0.918296 -0.341821 0.976843 -0.366153 0.132414 -1.479784 -0.300834 0.862510 0.254089 -0.004181 -1.536333 -0.218493 0.137041 0.277188 0.278198 -0.157192 0.867398 1.436949 -0.782850 0.553157 0.871567 0.150399 0.699601 1.061248 -1.164815 1.534208 -0.217970 1.231807 0.397013 0.485152 -0.543835 0.071720 -0.143638 0.021943 -0.356366 0.545287 -1.013198 -0.418824 0.563869 -0.539746 -0.846978 0.367028 0.939128 0.325721 0.147988 -0.116227 -0.357193 -0.383753 -0.857588 0.242278 0.752357 -0.321381 -0.989536 0.537684 0.862470 -0.467757 -0.319216 0.240991 0.725481 0.986774 -1.287625 0.908951 -0.043708 0.175126 -1.347377 -1.239711 0.793251 -0.764593 -0.803107 0.308536 -1.829262 -0.778614 -0.621509 0.770251 -1.489799 0.105274 0.120148 1.429418 0.236485 -0.184426 0.808016 -0.430601 0.549623 0.008216 0.209799 -0.012633 1.257027 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.665769 4.960772 5.577701 -3.176801 3.324028 1.028975 0.434329 1.888365 -3.081958 3.590392 -3.707138 1.061311 -0.830652 -3.080289 0.053508 -3.798870 -1.992632 0.730761 0.290613 4.170680 2.130288 -3.076395 0.226547 -1.922023 -2.124947 -3.021311 -0.233775 0.718909 3.086484 0.055824 3.117236 -0.724926 3.324440 -0.110435 3.785125 2.807751 0.886707 4.485442 0.611356 -1.236429 -1.466484 2.447808 -2.519030 -3.376781 1.285314 -2.193386 -1.225213 -2.055263 0.954807 -2.326117 0.392642 3.278923 -0.632116 -1.735899 -3.094772 2.774507 1.958959 -0.099704 4.672625 0.568807 -0.912461 -1.481691 -4.904956 1.552674 -2.117766 2.136377 -0.775841 -1.276302 1.889099 -0.228065 0.296090 -0.498668 -1.578471 3.185605 0.942797 -3.574662 1.052729 -2.865564 -6.353372 -2.133047 -1.606579 1.713964 1.184711 3.206851 -0.127847 1.448272 -0.377878 2.853358 -0.918008 -4.983220 -0.327181 3.498655 -1.696264 -1.487104 -1.947474 4.433419 -0.095845 0.403999 -2.404631 0.635638 2.569760 0.847641 1.708026 -5.217749 0.576091 -5.640725 2.380796 1.902415 -0.580380 1.470743 1.399101 3.423058 3.413841 3.982008 -3.343859 1.757414 -4.041873 -0.988087 0.646735 0.785577 -0.983951 2.225881 -2.239875 1.116334 3.473600 -4.881294 3.009103 0.699037 -1.698722 -3.368578 0.788975 -1.791830 -1.329202 -1.815256 1.579346 1.024061 -0.853529 -1.220755 -0.472019 -0.137009 -1.350235 -4.200183 1.815143 5.009208 -3.132199 0.637000 -1.012112 -1.061778 -0.705048 2.516136 2.894821 1.965750 3.617174 2.785663 0.880757 0.186304 -2.633980 -0.307138 3.665875 1.371894 -4.202726 3.876744 -2.490608 -1.524672 0.739507 1.593725 2.748723 2.713299 -5.673846 -6.500163 1.793156 -0.947545 4.250694 2.102907 0.364476 -2.325114 6.054387 -1.584425 -2.838689 3.986612 1.653222 -1.748298 -1.851978 1.561737 -4.171948 -2.563474 2.463850 -2.019548 0.568035 0.042350 -1.143179 1.384739 -1.295112 -3.450922 -1.390515 -4.258975 5.301407 -0.439903 1.861897 -0.744772 -2.127294 -5.439982 2.833724 -0.188482 -2.985881 -2.814167 -1.397126 -2.333362 -3.556443 1.459156 2.034449 -0.971443 -3.812027 -3.682243 0.446279 -0.035829 -1.028941 0.496783 -3.394561 -4.015458 2.025666 0.121603 2.163047 -1.522696 -0.876972 -0.851244 0.288764 2.556153 0.309453 5.275955 6.458093 -1.716226 3.882895 0.903969 -2.066159 0.859313 4.061480 -3.740115 4.878576 -1.608178 2.201569 -0.577276 1.684768 -1.998097 -0.144033 1.640166 -1.886857 1.240167 0.824960 -0.600722 -0.911859 -2.432744 -3.865956 -0.272327 0.834429 0.571004 -0.501173 0.930453 2.446254 -1.147459 -2.324293 -2.539232 -0.526361 3.112807 -0.798706 -1.630582 1.753943 0.061324 0.777244 -0.014018 0.477603 1.404429 2.475242 -4.236052 1.214720 -1.326697 -1.562949 -4.048819 -3.009763 0.582636 -3.223304 -2.785278 2.359785 -3.724854 0.968940 -2.705954 0.541675 -2.454619 -1.324707 1.135792 4.258984 1.525058 -2.712398 1.864666 -2.086036 4.255360 1.504420 -0.526291 0.001739 2.936258 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.214203 -0.230292 -0.179997 -0.420904 0.809267 -0.444811 -0.514304 0.878560 0.717488 0.392791 -0.087688 -0.109369 0.048947 -0.565407 0.119281 -0.115758 0.181238 0.427471 -0.217145 0.362940 0.214357 0.075153 0.067587 -0.022589 -0.197492 -0.100987 0.041601 0.320945 -0.102212 -0.263106 0.011327 0.245342 0.583217 0.128046 0.834708 0.375558 0.352730 0.333817 0.215340 0.344770 0.178380 -0.072067 0.025843 -0.350057 0.058524 0.106090 -0.579243 -0.106840 0.132740 -0.416578 0.407974 0.503971 -0.044438 0.120273 -0.250768 0.161201 -0.368176 0.242849 0.309313 0.202274 -0.745840 -0.037306 -0.497810 0.292697 -0.182845 0.019415 -0.050191 -0.348980 0.034302 0.414031 0.018840 -0.294661 0.025897 0.225607 0.374272 -0.253312 0.383140 -0.065285 0.654982 -0.065038 -0.059852 0.368162 -0.012418 0.173196 0.081113 0.455840 -0.100795 0.105949 -0.288470 -0.547046 0.334082 0.140794 -0.683639 -0.020489 -0.392308 0.402880 0.125363 -0.090729 -0.148477 -0.462229 0.261502 -0.315194 0.199354 0.258279 0.032591 -0.183225 0.332041 0.094281 0.253899 0.283126 -0.075557 0.255785 0.340002 0.402200 -0.049910 0.387081 -0.467804 0.203101 -0.533262 0.140289 -0.260788 0.098277 0.593847 0.586265 0.237212 -0.444422 0.400874 0.265932 0.090682 -0.164370 0.178471 -0.137175 -0.021962 -0.259410 0.435759 -0.157394 0.043056 -0.044994 0.218631 0.116687 -0.198470 -0.020042 -0.126471 -0.156059 0.043618 0.254588 0.025974 -0.134460 -0.037655 0.090674 0.434822 0.230937 0.571136 0.060793 -0.193745 -0.324141 -0.460014 -0.031163 0.522268 -0.492483 -0.292436 0.695347 -0.209076 -0.107921 -0.201394 0.507875 0.338402 -0.065070 -0.089061 -0.169702 0.019052 0.295696 0.372439 -0.159587 -0.160448 -0.339103 -0.122744 -0.272203 -0.000839 0.867010 0.192905 -0.593616 -0.244316 0.426343 -0.376928 -0.286610 0.200323 -0.207353 0.138355 -0.182531 0.468654 0.221580 -0.327470 -0.148971 0.314494 -0.366797 0.084088 -0.140175 -0.141755 -0.149746 -0.394199 0.170665 0.974534 0.099019 -0.109926 0.001153 -0.587610 0.199477 -0.501637 -0.129186 0.070787 0.169657 0.290656 -0.082967 -0.255296 0.462694 -0.033400 0.171896 -0.503458 0.016140 0.305179 -0.410792 -0.102906 -0.105392 -0.067107 -0.082091 -0.131894 0.006799 -0.221182 -0.137471 0.410128 -0.101017 0.405941 0.173292 -0.321267 0.177951 0.211760 -0.615812 0.855993 0.064901 0.086345 0.233231 0.155043 -0.325753 0.021875 -0.155494 -0.195922 -0.244967 0.212709 -0.234649 -0.172535 0.113970 0.033308 -0.438751 -0.093002 0.388058 -0.142726 0.218341 -0.031124 -0.276783 -0.269598 -0.501534 0.547676 0.098231 -0.102241 -0.055061 0.399429 0.602027 -0.058298 -0.178656 0.085503 0.193522 0.636615 -0.588356 0.233947 0.278685 0.303814 -0.172380 -0.216024 0.119577 -0.343719 0.249030 -0.433251 -0.671773 -0.491232 -0.149837 0.302344 0.058949 0.246804 0.307726 0.728023 0.498099 -0.494849 0.223823 -0.290298 -0.096141 0.136780 0.105157 0.003002 0.388690 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.323370 15.495215 12.110184 -12.695556 16.556817 -2.611202 2.595822 5.527774 -2.245979 13.633355 -15.060933 -0.975730 -5.928765 -16.008679 -0.128283 -13.258743 -3.205163 12.375380 -1.523123 13.853605 10.741716 -9.102764 3.023727 -9.126814 -5.948449 -12.355388 -3.428655 2.968320 3.296775 0.738430 11.758959 -0.438432 17.053630 3.167046 15.053592 13.938429 -0.910764 23.059275 3.143790 6.144083 -1.562232 10.792802 -7.801611 -20.683078 8.988685 -8.248792 -7.036555 -15.350125 5.334831 -17.797268 6.024859 12.872144 -0.710177 -5.061076 -13.649412 4.533299 14.473745 6.112284 17.500660 4.703306 -5.412998 5.242301 -15.919688 -1.748702 -9.988285 6.682857 4.376259 -12.386013 3.050548 3.091708 8.221714 -8.186357 -10.118949 7.006899 3.725133 -11.664785 4.209332 -8.093575 -22.929018 -9.037859 -8.459344 2.784268 1.135193 12.839674 -1.925199 3.595319 -4.876072 5.855648 1.393279 -15.582952 -4.264829 14.575357 -2.416209 0.247862 -4.127686 15.349614 4.740721 -1.814117 -9.695339 -0.009166 6.356846 2.111311 7.397430 -0.673528 -11.984285 -15.315263 8.944021 6.379652 -5.145584 4.778629 4.275515 10.663096 8.141545 10.641304 -15.087113 13.091381 -19.369266 2.881914 -2.891227 4.065252 -0.606625 5.475156 -3.401050 1.952394 10.102418 -16.493477 14.824095 3.902807 -5.179650 -13.941133 7.230597 -3.577068 -5.537767 -6.718234 8.983397 2.589388 -2.856150 -3.450445 -2.274461 -2.735749 -1.989245 -13.351121 1.458816 18.113193 -8.280127 3.626095 -5.361287 -8.197329 -1.637904 4.039497 6.285641 6.201555 17.916168 12.895007 -1.008990 -1.156670 -12.428843 -0.694434 19.450941 10.158532 -13.801728 10.809138 0.992732 -2.256864 5.972993 5.420367 9.776249 8.387410 -15.758184 -18.103819 -1.174502 -6.029158 15.761304 12.465305 3.622268 -14.994229 19.025002 0.785092 -5.542304 22.166556 8.884624 -11.202416 -1.536410 9.370211 -18.188890 -12.095102 5.469364 -2.081050 -0.747240 -0.967894 1.381721 3.623500 -8.963232 -16.782694 -5.149895 -16.434498 16.111258 -2.193234 3.988375 0.489870 -13.901030 -14.983469 16.314485 2.336971 -9.719630 -7.409338 -7.888925 -4.545394 -17.634981 6.658969 6.549656 -5.591299 -11.673339 -11.767277 3.087349 7.084856 -5.670471 0.334813 -5.059234 -12.812873 7.750373 -1.221089 7.283810 -17.183197 -4.376958 -1.051917 3.762219 9.211397 6.283210 12.203904 25.009743 -9.246005 5.618337 11.047379 -0.989778 6.313016 17.828920 -14.076265 17.890228 -7.822283 14.594574 -1.512665 6.678801 -4.690443 -0.136019 5.443626 -1.865771 1.521574 7.371324 -7.147273 -3.950641 1.176575 -13.192591 -1.800296 6.091589 6.397537 1.671547 3.064137 7.844860 -9.533148 -3.148766 -4.809628 -2.518339 13.438616 1.625288 -13.972725 3.399135 4.418510 -1.526412 -7.155525 2.626659 5.699614 11.105013 -16.173517 9.134686 -3.953790 -7.326126 -13.801083 -11.017782 8.105457 -14.603340 -11.967309 9.326905 -14.915939 0.134268 -9.994942 7.329432 -11.102778 -2.930132 -0.370369 14.088163 9.490138 -3.722147 9.024145 -5.452694 15.273343 2.583827 -2.848966 0.062056 19.045442 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.086687 0.851900 -1.189537 -2.632443 5.483002 -0.961282 -0.384496 3.515408 -0.806169 3.069356 -1.911897 1.030047 -0.464056 -4.074426 0.395486 0.158947 0.623413 2.237255 -1.144504 1.443723 1.682323 -0.640249 1.421665 -0.738490 -1.528348 -2.858955 0.187351 1.470348 1.457812 -0.868757 -0.379079 0.077964 3.897873 -0.809943 2.606561 1.986829 2.334318 2.847722 1.689487 -1.641838 0.664095 1.147805 -1.254634 -3.312618 0.797402 -1.172335 -3.326012 -1.467509 1.963966 -3.074844 0.302475 2.664580 0.062794 -0.871768 -2.427303 2.139265 1.859707 -1.136399 3.572032 0.845610 -2.071618 -2.020706 -2.434817 2.938670 -2.376132 0.713741 -0.518461 -2.807071 -1.073491 2.167652 -0.102083 -1.759769 -2.055927 0.960847 1.643716 -2.703042 1.103343 -1.007518 0.883211 -2.715873 -1.603609 1.402466 -1.643518 2.705767 0.315490 1.471041 0.101318 0.883864 -0.250784 -3.623568 0.224214 2.332139 -1.628227 -0.051630 -1.986690 2.278627 0.119390 -1.010381 -1.886822 -1.965865 0.915071 -0.182831 1.628988 -1.775527 0.930097 -2.309419 0.600884 0.820971 1.031718 1.929948 0.773004 0.631121 0.863796 2.433611 -1.413058 0.486453 -4.493474 1.116261 -1.256507 0.887842 -1.781989 1.175575 2.556591 1.459533 2.496516 -4.127809 3.283821 0.909756 -0.813438 -2.426759 1.268938 0.208013 -0.881214 -0.486851 2.294909 -1.324598 -0.283865 -0.551790 1.898781 0.242016 -2.870061 -0.555921 -0.554636 2.056961 -3.562156 1.262910 -0.636312 -1.412625 0.366036 1.216307 1.969084 1.791529 4.241433 2.419456 -0.985655 2.634480 -3.764575 1.202348 4.307313 1.619282 -2.450112 2.865740 -2.294212 -0.434862 0.941754 2.150833 1.687318 1.216511 -1.820609 -1.421897 1.385033 0.725558 3.681304 0.321899 1.017920 -3.364844 1.175190 -0.410938 0.879539 4.544240 1.898825 -3.707796 1.845406 2.556990 -1.703193 -0.970419 0.907131 -2.263589 -0.835567 -1.466327 1.156356 2.419419 -2.364153 -2.540174 -0.439372 -2.336237 2.639994 -0.745670 -1.760924 1.013167 -2.799549 0.389501 3.593401 0.566713 -0.860868 -1.574431 -2.901343 -1.848750 -3.909058 0.792113 0.984350 -1.361810 -0.428453 -2.594692 -1.520264 2.736586 0.176810 0.503595 -5.511608 0.551155 2.424138 1.192401 1.013495 -2.119702 -0.177334 0.457586 -0.601492 0.692611 -1.660548 1.275133 2.712071 -2.581604 2.003668 -0.124295 -0.829505 1.449227 2.130900 -2.956382 4.499159 0.531159 3.470443 0.568721 1.390930 -1.319598 1.152263 -0.709177 -0.924253 -0.417239 1.413361 -2.785154 -1.698179 1.622266 -1.019763 -3.123623 0.272261 2.576140 0.357118 0.708029 -0.807870 -0.946981 -1.018313 -1.568726 1.117653 2.073142 -1.395756 -2.325846 1.436093 2.422108 -0.870060 -1.078860 0.704058 1.895451 3.019183 -3.526814 1.766245 -0.076431 1.294953 -3.448547 -3.309115 1.419385 -1.230869 -0.737756 1.259704 -4.353931 -2.046729 -1.738319 1.973782 -2.780795 0.585233 0.801731 3.534547 0.458959 -0.767686 2.055755 -0.645436 1.160636 -0.404803 0.339047 0.679383 2.227269 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = -0.933103 0.543026 0.123168 -0.947046 1.919177 -0.404681 -0.061481 0.887975 0.348071 1.122392 -1.164930 -0.007470 -0.282218 -1.098948 0.068498 -0.302669 -0.013143 1.019303 -0.543060 0.233823 0.692356 -0.020083 0.432166 -0.624606 -0.389967 -1.105582 -0.247558 0.344453 0.041252 0.078870 -0.065944 0.081351 1.376670 -0.193342 0.885408 0.865480 0.638217 1.429988 0.203871 0.509895 0.591471 0.579883 -0.416374 -1.503799 0.530602 -0.600392 -0.967585 -0.897819 0.673612 -1.530263 0.941847 0.870737 0.036370 -0.557092 -0.781786 0.735726 0.806211 0.144457 1.292032 0.370147 -0.917908 0.090021 -1.012439 1.015214 -1.043901 0.852017 0.020135 -1.421280 -0.621204 0.865506 0.605036 -0.660157 -0.964327 0.175671 0.290557 -0.802588 0.337004 -0.395919 0.201010 -0.492800 -0.668762 0.341040 -0.359602 0.767040 -0.065193 0.267203 -0.500127 0.203253 0.255771 -0.980418 -0.431074 1.144297 -0.421393 0.427491 -0.616954 0.288417 0.399060 -0.524716 -0.344773 -0.451498 0.261113 0.111170 0.527009 0.020782 -0.291328 -0.828492 0.692107 0.796912 0.011893 0.372507 -0.128692 0.465705 0.221990 0.536259 -0.354090 0.620864 -1.663567 0.402073 -0.253746 0.183520 -0.303617 0.275106 0.452309 0.311582 0.741812 -1.177818 1.372318 0.143819 -0.528067 -0.652890 0.553327 0.139598 -0.431709 -0.211989 0.731469 -0.040644 -0.251460 -0.021362 0.345411 -0.234726 -0.695461 -0.612979 -0.247111 0.574753 -0.664236 0.358121 -0.328968 -0.553861 0.038279 0.372087 0.458600 0.431800 1.427888 0.962286 -0.123116 -0.034778 -1.232095 0.392689 1.446278 0.419633 -0.991656 0.769191 -0.411265 0.001299 0.525873 0.529253 0.306032 0.944736 -0.483568 -0.560899 -0.382260 -0.307475 1.208359 0.836518 0.396309 -1.339177 0.444306 -0.387964 0.225177 1.783387 0.939668 -1.372546 0.139159 1.114667 -0.879487 -0.797803 0.279037 -0.354997 -0.343043 -0.431705 0.409531 0.642350 -0.921795 -1.199755 -0.073496 -1.036067 1.104704 -0.153877 -0.333197 0.243786 -1.209216 -0.265384 1.457791 0.295953 -0.364811 -0.324363 -0.783021 -0.418791 -1.538444 0.296375 0.657090 -0.498858 -0.539960 -0.824146 -0.060147 0.936577 -0.400678 0.192761 -0.855590 -0.300921 0.738923 0.001110 0.396224 -1.162716 -0.263542 -0.174662 -0.050364 0.456892 -0.197183 0.303403 1.314379 -0.837792 0.677126 0.903007 -0.328445 0.205933 1.149969 -0.811373 1.387618 -0.184950 0.623679 0.156878 0.589165 -0.412535 0.214435 -0.101852 -0.180569 -0.221892 0.725037 -1.069376 -0.435107 0.448295 -0.809611 -0.542249 0.547630 0.910978 0.407751 0.113153 0.021200 -0.593177 -0.282341 -0.507198 0.064810 0.819093 -0.216852 -1.177074 0.261568 0.703553 -0.934021 -0.840745 0.326302 0.477028 1.102278 -1.187337 0.909475 0.105267 -0.113806 -1.521964 -0.708027 0.310409 -0.764255 -0.726157 0.350360 -1.353655 -0.806694 -0.613143 0.837456 -0.844361 -0.308006 0.062198 1.177400 0.585588 -0.026445 0.922598 -0.201126 0.663611 0.120319 -0.263123 0.189869 1.067210 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -1.637910 1.962512 1.024386 -1.837406 2.581281 -0.905650 0.551756 0.831310 -0.257854 1.774655 -2.042480 0.157562 -0.556064 -2.557681 0.167994 -1.592589 -0.173305 1.987771 -0.118183 1.719426 1.326113 -1.189321 0.421430 -1.243975 -0.773131 -2.259017 -0.166058 0.576941 0.295185 0.162231 1.398593 0.283710 2.466516 0.206786 1.886339 2.000855 -0.065384 2.965663 0.910165 0.303918 0.355408 1.170501 -0.734305 -2.976236 0.948329 -0.709122 -1.301457 -2.169299 0.805994 -2.597543 0.688348 1.657174 0.010725 -0.853691 -2.213424 0.720637 2.181552 0.621423 2.212805 0.699965 -0.720467 0.432139 -1.783709 0.412557 -1.659773 0.291406 0.628553 -1.797437 0.411758 1.147049 0.738996 -0.787315 -1.400710 0.441390 0.657770 -1.600522 0.454153 -0.887806 -2.841276 -0.999711 -0.874615 0.462451 -0.188860 1.801507 -0.205769 0.499609 -0.678795 0.519825 0.396421 -1.742341 -0.787242 2.091651 -0.158407 -0.076895 -0.498923 2.342073 1.402268 -0.845474 -0.955958 -0.409832 0.704114 -0.106206 1.011827 0.064590 -1.716972 -1.821861 0.886711 0.884102 -0.598195 1.349072 0.124195 1.484259 0.685077 0.926918 -1.794940 1.509194 -3.057355 0.665890 -0.465359 0.361261 -0.137087 0.440143 0.003405 0.502359 1.123758 -2.170267 2.304576 0.634605 -0.200713 -1.653978 1.022182 0.137555 -0.599118 -0.836709 1.257509 0.243314 -0.259351 -0.024582 -0.100403 -0.151190 -0.277917 -1.616704 -0.018664 2.612340 -1.257634 0.689989 -0.630555 -0.985446 -0.055970 0.222058 0.693559 0.696678 2.492733 1.769080 -0.177641 0.458751 -1.933575 0.171028 2.790478 1.358584 -1.619030 1.458952 0.033137 -0.483534 0.682607 0.873987 1.077775 1.123778 -2.063625 -2.263046 -0.270068 -0.979464 1.990282 1.480252 0.288605 -2.383525 2.431403 0.336720 -0.220473 3.040242 1.193733 -1.686935 0.199732 1.782334 -2.786029 -1.657189 0.598301 -0.355815 -0.238153 -0.283511 0.508794 0.674346 -1.348443 -2.253007 -0.970562 -1.929700 1.729617 -0.366202 -0.055884 -0.062802 -1.643656 -1.539908 2.435415 0.371749 -0.916290 -0.786654 -1.277982 -0.771459 -2.598140 0.665626 0.861921 -0.966126 -1.185026 -1.420309 -0.007206 1.251628 -0.990403 -0.004511 -1.147581 -1.165390 1.241623 0.654017 0.419858 -2.245483 -0.494691 0.254402 0.577448 0.746486 0.647760 1.538719 2.916988 -1.294449 0.654594 1.297909 -0.191387 1.260267 2.379435 -1.870030 2.483424 -0.840365 2.065443 0.195582 0.759746 -0.580074 -0.056670 0.425713 -0.604627 -0.227107 0.944628 -1.464118 -0.572707 0.799242 -1.253095 -0.703720 1.007450 1.473605 0.572414 0.313311 0.839813 -1.057347 -0.344609 -0.743369 -0.118105 1.564787 0.164331 -1.889406 0.517144 1.286073 -0.530192 -1.285042 0.324868 1.010695 1.477949 -2.100962 1.741475 -0.418707 -0.556183 -1.974687 -1.780432 1.592132 -1.837714 -1.650903 0.859410 -2.379193 -0.540604 -1.198090 1.428327 -1.943660 -0.335495 0.028054 1.900144 0.814422 -0.120754 1.251579 -0.752200 1.522987 0.079823 -0.164490 0.095366 2.521879 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = -3.272624 2.846427 1.259639 -3.842396 5.345743 -1.457844 0.392861 1.577952 0.728064 3.225121 -4.190281 -0.459008 -1.372819 -5.040006 0.202207 -2.600223 -0.185748 3.771983 -1.078973 2.960076 2.854032 -2.071327 1.289834 -2.654453 -1.302864 -3.201892 -0.604431 1.074926 -0.009069 0.520232 2.147849 0.282529 4.457819 0.728480 3.282329 3.255083 0.180621 6.376269 0.893777 1.757222 1.015636 2.433625 -1.155630 -6.293615 2.644560 -1.977796 -2.721809 -4.341653 1.731547 -5.666326 2.464346 3.326253 0.226599 -2.049129 -4.048615 0.984460 4.527540 1.677111 4.270089 1.583863 -1.933460 1.030828 -3.699119 -0.331034 -3.283884 1.679746 1.953954 -3.818146 -0.296671 2.457505 2.203085 -2.176393 -3.565192 0.339809 1.370917 -2.631166 1.298599 -1.675681 -3.833692 -1.793613 -1.794916 0.610811 -0.713337 3.329028 -0.757548 0.989649 -1.175814 0.561890 0.907771 -3.205259 -1.702505 3.612544 -0.412849 0.831221 -1.293327 3.806819 1.601508 -1.759597 -2.755128 -0.634384 1.256490 0.430604 1.893921 0.970082 -4.001389 -3.455350 2.942980 2.278866 -1.198609 1.451334 0.827961 2.211850 0.713341 1.675809 -3.490496 3.665926 -5.793851 0.786736 -0.615892 1.142525 -0.439396 0.810305 0.354768 0.542008 1.866765 -3.965889 5.123365 1.322096 -1.140883 -2.916277 2.353946 0.290779 -1.371340 -1.246986 2.626917 0.209645 -0.621894 0.093419 -0.103207 -0.765817 -1.193108 -2.649478 -0.495723 4.203331 -1.759090 1.262789 -1.289393 -2.425242 0.058631 0.271107 1.157686 0.829250 4.882088 3.160419 -0.634102 0.240070 -3.430316 0.892956 5.853875 2.487886 -3.465600 2.345118 0.437072 0.123371 1.516495 1.231500 2.106184 2.201051 -2.932398 -3.254809 -0.905959 -1.885037 3.743295 3.129251 1.297984 -5.429647 3.720897 0.538266 0.544324 6.409754 2.732436 -3.625200 -0.000803 3.586429 -4.932961 -2.910510 0.596240 0.243161 -0.376162 -0.636256 1.565872 1.121479 -2.886284 -5.161906 -1.873492 -3.901431 3.354930 -0.699349 0.110638 -0.150065 -3.848952 -2.183437 5.008033 0.513823 -2.164665 -1.020198 -2.433494 -1.024879 -5.271901 1.361208 1.864707 -1.878172 -2.321947 -2.498739 0.210848 2.977963 -2.094919 -0.520920 -1.648229 -2.109980 2.297830 0.252015 1.284574 -4.513203 -1.181221 0.199064 0.967826 1.977619 1.317739 1.748928 5.548368 -2.711856 1.267525 3.032846 0.230733 2.047149 4.921360 -2.870022 4.912474 -1.723765 4.361240 -0.238325 1.947683 -0.871090 0.210643 0.631406 -0.647335 -0.311577 2.483185 -3.111024 -1.143942 1.807627 -2.436230 -1.413720 2.453127 2.943170 1.425282 0.648328 1.439363 -1.935957 -0.649291 -0.889073 -0.179748 3.099729 0.195612 -4.092028 0.104691 2.615460 -1.314425 -2.435422 1.061527 1.721696 3.651953 -3.949564 3.578894 -0.514207 -1.697757 -3.753131 -2.783861 2.606170 -3.417796 -2.618907 2.197249 -4.589500 -1.267426 -2.202501 3.332946 -2.751200 -0.026971 -0.591880 3.503343 2.431130 0.007973 2.864424 -0.968450 3.017697 0.109542 -0.761313 0.544813 5.008323 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = -3.177956 3.614906 1.893288 -3.301420 4.186340 -1.696800 0.862668 1.650455 0.416950 2.863639 -4.230931 0.022546 -1.299053 -4.284513 0.035042 -2.525678 -0.219498 4.161626 -0.648933 2.702661 2.809536 -1.631841 0.774984 -2.801233 -1.199880 -3.089073 -0.528724 0.566256 -0.752437 0.790406 2.424773 0.561707 4.509547 1.186735 3.461197 3.541442 -0.284427 6.442221 1.436183 2.749205 0.686817 2.546372 -1.158254 -6.222302 2.711780 -1.952115 -1.523835 -4.490782 1.270114 -5.451225 3.671840 2.714962 0.339441 -1.620076 -3.760775 0.328387 4.422236 1.723875 3.954005 1.595862 -1.842301 1.892728 -3.026661 -0.336763 -3.208502 1.607440 2.534161 -3.494989 0.226239 1.884589 3.569631 -2.495472 -3.542742 0.239434 0.286588 -2.441310 1.069692 -1.463524 -4.521607 -1.530753 -1.970877 0.392512 -0.376534 3.000749 -0.891847 0.448351 -2.648033 0.528015 1.214139 -2.698461 -2.010697 3.548585 -0.063224 1.310426 -1.263811 3.423434 1.741051 -1.400637 -2.061321 -0.425683 1.371828 0.585875 1.649758 1.656272 -4.607523 -2.913950 2.974091 2.191589 -2.060442 1.361276 0.619152 2.838317 1.157232 1.356750 -2.822954 3.704958 -5.864764 1.181171 -0.098471 0.678498 0.336550 0.499271 -0.588642 -0.058641 1.592116 -3.418258 4.591077 1.267074 -1.132831 -2.860136 2.306145 0.122129 -1.429222 -1.646548 2.455683 0.936537 -0.665560 -0.080651 -0.772824 -1.116045 -0.724520 -4.173827 -0.520637 4.460539 -1.588686 0.856547 -1.461203 -2.267207 -0.230903 0.201317 0.573801 0.695918 4.206800 3.047252 -0.316970 -0.689335 -3.144451 0.131083 5.063674 3.451358 -3.248611 1.911150 1.128231 -0.162231 1.891386 0.985954 1.608612 1.919782 -3.170833 -3.786946 -1.291121 -2.433256 3.467076 3.597288 1.236268 -4.723106 4.145434 1.023606 -0.345406 6.225518 2.333350 -2.909764 -0.664991 3.040377 -4.057066 -3.148452 0.605610 0.376427 -0.728122 -0.103244 0.965142 0.584412 -2.714926 -4.882322 -1.577516 -3.825141 3.317705 -0.437886 0.527379 -0.453990 -3.983237 -2.319215 4.721077 0.629662 -2.125470 -0.781378 -1.869412 -0.568058 -4.880169 1.415924 2.036123 -1.499672 -2.584224 -2.351472 0.847627 2.381291 -2.353032 -0.780079 -0.230054 -3.099014 2.102815 -0.480112 0.902546 -5.806378 -1.283446 0.048582 1.689666 2.313554 2.011773 2.278792 5.908165 -2.279800 0.612869 4.687392 1.054334 1.670516 4.985759 -2.750480 4.028808 -2.552567 3.522530 -0.037725 1.639660 -0.910325 -0.427891 0.786582 0.492825 -0.350784 2.274120 -2.633295 -0.685010 1.078045 -2.851888 -0.272917 2.533470 2.409158 1.238145 0.350842 1.672198 -1.910058 -0.425765 -1.121076 -0.820623 3.194921 0.591493 -4.257593 0.102378 1.793063 -1.589231 -1.975935 0.845077 1.534216 3.052858 -3.442260 3.303070 -0.590278 -2.226536 -3.745541 -2.708851 2.679506 -3.508467 -3.282451 1.859471 -3.989659 -1.095337 -1.984100 3.038173 -3.326977 -0.209614 -0.769650 2.954237 2.179962 0.330150 2.497811 -0.939085 3.442239 0.516904 -0.816009 0.028943 5.436311 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.134757 0.687189 -0.272850 -0.860999 2.691812 -0.824930 0.105994 1.645186 -0.694439 1.534350 -0.986371 0.680452 -0.256906 -1.774380 0.296208 0.166972 0.372765 1.350894 -0.202811 0.686020 0.817275 -0.377418 0.303545 -0.442087 -0.592149 -1.646146 0.048885 0.600735 0.766366 -0.554425 -0.111019 0.446031 2.118036 -0.306530 1.540431 1.347461 0.974749 1.442022 0.964169 -0.950592 0.295018 0.655038 -0.653077 -1.608586 0.456163 -0.440512 -1.340591 -0.783064 0.835543 -1.260003 0.393282 1.290726 -0.124264 -0.166226 -1.243933 1.038611 1.055196 -0.505704 1.763116 0.414089 -1.029380 -0.564821 -1.005000 1.882944 -1.074438 0.018650 -0.346544 -1.554983 -0.079917 0.916163 0.345364 -1.072561 -0.796294 0.714201 0.521562 -1.331048 0.479298 -0.284691 0.174471 -1.552138 -1.182187 0.496498 -0.651173 1.299498 0.096139 0.489599 -0.517518 0.349326 0.071073 -1.682528 -0.037539 1.348911 -0.934404 0.190460 -0.904775 1.078004 0.641528 -0.393710 -0.593270 -1.144571 0.412153 -0.402991 0.768167 -0.469771 0.591368 -0.874467 0.028767 -0.045491 0.488139 1.381067 0.179516 0.693339 0.701664 1.024502 -0.528376 -0.003239 -2.084228 0.817093 -0.487253 0.208193 -0.524256 0.475218 1.029160 0.521555 1.304856 -2.062141 1.250337 0.249227 -0.021056 -1.222311 0.493518 -0.064713 -0.444026 -0.584726 1.218068 -0.324553 -0.213818 -0.256197 0.679313 0.265212 -1.281974 -0.782757 -0.257853 1.495490 -1.874051 0.550707 -0.454671 -0.683274 -0.029614 0.467110 0.878006 1.141222 1.804029 1.384517 -0.403653 1.188210 -1.992267 0.350128 1.968384 0.901643 -1.263832 1.437897 -1.079183 -0.405099 0.592477 1.116256 0.848808 0.369730 -1.051366 -0.959300 0.773322 0.191295 1.761392 0.238227 0.291850 -1.449915 0.791465 0.035510 -0.211222 2.437111 0.494711 -1.968592 1.058572 1.289807 -0.868278 -0.613577 0.582820 -1.285301 -0.672592 -0.798482 0.613852 1.116866 -1.279079 -0.797905 0.082052 -1.267439 1.307706 -0.256969 -0.732859 0.549817 -1.295980 -0.175373 2.013337 0.435662 -0.172768 -0.865638 -1.427275 -0.719158 -1.873051 0.307058 0.326684 -0.507934 -0.436683 -1.352741 -0.647470 1.485935 -0.005096 0.530898 -2.575101 0.073053 1.033628 0.575057 0.195766 -1.575218 -0.271964 0.250214 0.006949 0.159535 -0.624085 0.840840 1.586308 -1.273373 0.744837 0.428969 -0.430261 0.785081 0.991451 -1.642964 1.900460 0.081659 1.588626 0.460833 0.625843 -0.912968 0.242589 -0.175863 -0.011180 -0.556612 0.531618 -1.177418 -0.622075 0.737265 -0.691944 -1.398115 0.088186 1.063854 0.370442 0.263622 -0.454540 -0.517066 -0.420910 -1.002437 0.505189 1.040106 -0.527177 -1.035013 0.951813 0.879625 -0.628301 -0.480984 0.298355 0.814439 1.255182 -1.783944 0.768309 -0.057076 0.623555 -1.566006 -1.795405 0.743954 -0.862821 -0.792622 0.675171 -2.294795 -0.879395 -0.859109 0.765857 -1.807478 0.001233 0.247999 1.842031 0.207065 -0.339313 1.140460 -0.435793 0.565995 -0.143249 0.295717 0.008037 1.269733 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -2.060685 1.916939 0.297140 -3.073115 4.078301 -1.525092 -0.141851 3.303737 0.218784 2.668461 -2.197503 0.641599 -0.586744 -3.937155 0.197892 -1.321879 0.372055 3.111965 -0.898273 2.405384 2.018488 -0.589657 1.007282 -1.171504 -1.632551 -2.331306 0.141862 1.208430 0.137732 -0.623106 1.209402 0.345441 4.160290 0.265145 3.632812 2.618227 1.375553 3.853640 1.977049 0.478621 0.270196 1.288952 -1.121774 -3.925674 1.126467 -0.910263 -2.387295 -2.314360 1.445408 -3.562962 1.481360 2.608835 0.271506 -0.620045 -2.644306 1.122511 1.595311 0.121817 3.268703 1.142656 -2.090508 -0.177672 -2.660988 1.176385 -2.405384 0.905215 0.452265 -2.277824 -0.199140 1.775925 1.140461 -1.980453 -2.055056 0.791691 1.178506 -2.552791 1.252792 -1.209966 -1.099989 -1.931024 -1.404612 1.504443 -0.576170 2.543972 0.189309 1.463073 -0.968467 1.110206 -0.263415 -3.385657 0.189529 2.229614 -1.351459 -0.253469 -1.569126 2.976086 0.274509 -0.856275 -1.818023 -1.597418 1.535284 -0.256805 1.615772 -0.245035 -1.071734 -2.322805 1.247486 1.523146 -0.369806 1.659584 0.822655 1.759118 1.612979 2.365237 -1.594051 1.946869 -4.983838 1.336565 -1.479753 0.688115 -0.895264 1.002975 1.372763 1.440229 1.944504 -3.604965 3.421680 1.500654 -0.960962 -2.426617 1.664900 -0.046291 -0.841494 -1.274368 2.401684 -0.443441 -0.203363 -0.620215 0.841888 -0.269405 -1.216130 -2.030999 -0.473058 2.214968 -2.413282 1.102289 -0.776177 -1.534673 0.049559 0.997598 1.572360 1.312964 4.188149 2.132739 -0.949531 0.532723 -3.231974 0.062198 3.942224 1.750325 -2.324479 2.891045 -0.735027 -0.777432 0.722304 2.106919 1.639886 0.977997 -2.636550 -2.776775 0.365209 -0.141477 3.481963 0.830423 0.507572 -3.134927 2.307470 0.029226 -0.006568 4.968461 1.830329 -2.765834 -0.005220 2.329384 -2.187483 -2.288102 1.098477 -1.564287 -0.562713 -0.541017 0.925157 1.417072 -2.208095 -3.019182 -0.444656 -2.732902 2.398495 -0.644504 -1.107306 0.046970 -3.173104 -0.526301 4.088939 0.545928 -1.549938 -1.234758 -2.629294 -0.516930 -3.909882 1.006138 1.387741 -0.636501 -0.626849 -2.064231 -0.549847 1.947622 -0.562005 -0.071830 -2.902449 -1.251952 2.405967 -0.179616 0.840873 -3.157076 -0.369744 0.409421 0.264253 1.235571 -0.154282 1.728239 3.786332 -2.044027 1.327275 1.711536 -0.480127 1.423672 2.974879 -3.302638 4.581650 -0.716596 2.827648 0.602642 1.115571 -1.366842 0.377069 -0.079195 -0.536417 -0.250546 1.395060 -2.221039 -1.294856 0.519267 -1.261072 -1.758332 0.618249 2.359926 -0.471161 0.719676 0.447120 -1.309890 -0.901838 -1.723935 0.681672 2.398424 -0.503066 -2.647095 1.385409 2.408089 -0.532685 -0.990451 0.550182 1.840175 3.039562 -3.436839 2.054681 -0.233314 0.294239 -3.249650 -2.991075 2.185139 -2.194842 -0.890069 0.384585 -3.625787 -1.687359 -1.745662 2.234945 -2.434630 0.763117 0.968712 3.106355 1.311014 -1.098963 1.612279 -1.078074 1.944652 0.371602 -0.054856 0.179373 3.482256 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.480178 7.735634 2.699367 -9.356153 14.295788 -4.250313 0.545577 9.084628 -0.909581 9.500949 -8.433590 1.923769 -2.433420 -12.290634 0.523420 -4.991126 0.167875 10.000313 -2.063082 8.909355 6.776407 -4.006968 2.546964 -4.562768 -4.866035 -7.508591 -0.488886 3.626436 1.672960 -1.863679 5.052909 1.068517 13.254946 1.243964 11.941936 9.212252 2.946228 13.878032 4.991119 1.301101 0.523653 5.029598 -4.068943 -13.348534 4.793474 -3.798080 -7.674276 -8.524752 4.378844 -12.164030 4.992930 9.161423 0.157299 -2.342011 -9.112113 4.063252 7.370060 1.204701 11.520049 3.411242 -6.884357 0.592342 -9.389864 3.042133 -6.707063 2.925071 1.780181 -8.453778 1.032064 4.944778 4.643590 -7.435292 -6.260620 4.126929 3.750102 -8.365753 4.054622 -4.424843 -7.195071 -7.463892 -5.267827 3.566958 -0.930101 8.565172 0.090781 4.140920 -3.870346 3.415952 -0.571805 -11.375766 -0.375085 8.939508 -4.343740 0.035948 -5.181364 10.564058 2.373019 -2.360045 -6.867073 -4.169964 4.677352 -0.429872 5.245348 -0.800674 -4.560163 -8.763060 4.288203 4.032022 -1.287828 5.852247 2.694422 6.659567 6.032446 7.798720 -7.110728 7.496263 -14.989381 3.697395 -3.843364 2.423240 -2.242115 3.279270 2.892990 3.839553 7.034998 -12.185362 10.737897 3.831143 -2.841628 -9.100594 5.004932 -1.261838 -2.991451 -4.533740 7.533083 -0.415007 -1.050960 -2.185433 1.215916 -0.675665 -4.035105 -8.026390 -0.307407 10.016929 -7.753715 3.378871 -2.965929 -5.102624 -0.620690 3.126090 5.596289 4.695103 13.334115 7.617621 -2.019606 1.767566 -10.526941 0.203137 13.711950 6.639623 -8.773045 9.311376 -1.808565 -2.062111 2.574063 6.073316 6.400398 3.503771 -9.912738 -10.477487 2.077473 -1.393775 11.299158 4.292894 1.385299 -10.537172 9.550599 0.252365 -1.680578 16.875401 5.444437 -9.751806 0.463632 7.655349 -8.795126 -7.386735 4.229447 -4.482876 -2.389780 -1.541878 3.141634 4.019520 -7.239066 -9.845503 -1.738768 -10.092856 9.183062 -1.875114 -1.705981 0.117618 -9.981707 -3.997683 13.838196 1.923368 -5.363038 -4.157399 -7.934541 -1.997159 -12.804529 3.097862 4.556006 -2.473887 -4.374225 -7.340120 -0.892261 6.722920 -2.546477 0.728207 -8.404820 -5.541491 6.993388 -0.771508 3.180200 -11.944331 -2.126276 0.470912 1.963030 4.340587 0.794050 6.658587 14.198810 -6.750422 4.455689 6.282769 -1.149113 5.115483 10.411981 -10.960133 14.509545 -2.983482 10.805990 1.126966 4.126563 -4.517464 0.750481 1.022736 -0.714285 -0.915042 4.788965 -6.532896 -3.643543 1.737180 -5.577794 -5.044686 2.653847 6.603824 -0.587917 2.424684 2.253489 -4.844577 -3.448613 -6.022408 1.410202 7.994331 -1.421850 -8.587068 4.374780 6.237725 -1.516604 -2.973000 1.938331 5.666628 9.352642 -11.769820 6.509492 -1.344001 -0.811778 -10.303122 -9.502999 6.698785 -8.468704 -5.053110 3.246546 -12.435363 -3.971650 -6.253367 6.336394 -8.898061 0.824425 1.978080 10.947348 5.655465 -3.658719 6.236493 -4.003282 7.436721 1.165468 0.133012 0.147427 12.026500 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.178879 1.057427 -1.113286 -3.778215 6.769523 -2.866236 -0.549407 4.251246 0.047611 3.028765 -2.001199 1.190081 0.105165 -5.837857 0.834807 -0.924836 0.992533 3.363303 -0.811627 3.169435 1.738493 -1.030906 1.250769 -0.713342 -1.970501 -3.616821 0.475647 2.341747 1.073453 -2.469479 1.031497 0.941542 5.224255 -0.738312 4.248795 3.030816 2.407627 3.274981 2.760151 -2.498256 1.278625 0.452119 -0.844928 -3.823840 0.292083 0.204663 -4.851117 -1.951446 1.855133 -3.460850 -0.367633 3.673163 0.067570 -0.759207 -3.584622 2.788252 2.111699 -0.901066 3.579555 1.198787 -2.480086 -1.388694 -2.872313 2.851158 -2.682911 -0.544367 -0.965821 -2.623644 -0.127281 3.355085 -0.378347 -2.347916 -2.028378 0.995421 2.738024 -3.280118 1.552236 -1.143509 0.612502 -3.397892 -1.242728 2.387944 -1.434608 3.022395 0.746639 2.520532 0.357088 1.136904 -0.905335 -4.141845 0.954672 2.513679 -2.449224 -1.457283 -1.805650 4.421909 1.237005 -1.804766 -2.205066 -3.602420 1.499594 -1.901473 2.001201 -0.850081 1.159750 -2.499581 -0.040872 0.885418 1.201424 3.644263 0.434354 1.732945 1.654558 2.528733 -2.227183 0.974244 -6.257249 1.432556 -2.625381 0.790638 -1.897135 0.978150 3.506667 3.387706 2.308223 -4.909201 4.134032 1.666650 0.096591 -2.528884 1.460192 0.569753 -0.504163 -1.248238 2.848057 -1.506921 0.271446 0.026063 2.076340 0.863833 -1.782035 -0.638413 -0.546710 2.964616 -3.868671 2.056435 -0.286713 -1.368034 0.415932 0.841239 2.685165 1.801147 5.576626 2.317296 -1.480799 3.071768 -4.642211 0.747139 4.943531 0.722082 -2.326838 4.463237 -2.236844 -1.411415 -0.068514 3.843686 2.160453 0.053272 -3.187435 -2.766003 2.135866 0.797870 3.834312 -1.260528 -0.303414 -4.399916 2.022630 0.433785 0.785611 6.403184 1.704325 -4.079252 1.298741 3.756829 -2.726591 -2.207439 1.508102 -2.922491 -0.844483 -1.168835 2.148359 2.264950 -2.454775 -2.750142 -0.432461 -2.552126 1.665314 -1.115222 -3.292884 0.252882 -2.553996 -0.243261 5.604836 0.433255 -0.787687 -1.405194 -4.365080 -0.270294 -4.634299 0.415210 0.955400 -0.852479 0.586962 -2.195477 -1.968173 3.487483 -0.287834 0.734973 -6.869470 0.361172 3.033308 1.831170 0.088629 -2.202123 -0.046974 1.249139 -0.338984 -0.565349 -1.478292 1.667545 3.536543 -2.636936 2.069343 -0.535073 -2.131882 2.703611 2.816135 -4.334838 6.200280 0.829800 5.053914 1.416041 1.163465 -2.014126 0.802270 -0.677506 -2.009234 -1.253384 1.089395 -3.145259 -1.941840 1.838385 0.334316 -4.636113 0.116056 3.721113 -0.655965 1.097129 -0.629112 -0.772956 -1.309997 -2.066332 2.347281 1.841830 -1.200630 -1.980883 2.437438 4.617781 -0.133979 -0.917118 0.548559 2.561845 3.810224 -4.499535 2.859682 -0.023383 2.767984 -3.391277 -4.481802 3.168499 -2.364334 0.116555 -0.333391 -5.520435 -3.370712 -1.918918 2.725276 -2.836945 1.441302 2.028652 4.597655 1.050203 -2.031160 1.980840 -1.730245 0.473361 -0.458197 0.802829 0.517780 3.001031 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.198311 0.715039 -0.337274 -1.171532 3.383035 -1.189506 0.267236 1.332798 -0.964206 1.648732 -1.190929 0.712697 -0.253551 -2.477857 0.485200 -0.089806 0.397392 1.510938 -0.032596 1.055194 0.789789 -0.787080 0.403055 -0.434021 -0.643125 -2.510183 0.022445 0.889966 1.183827 -0.998766 0.016099 0.524269 2.456276 -0.614067 1.517073 1.560165 0.936600 1.582128 1.195419 -1.957048 0.529372 0.607374 -0.676193 -1.855457 0.242981 -0.148039 -1.977604 -0.942174 1.029439 -1.299991 -0.379933 1.580346 -0.205614 -0.417955 -1.792440 1.553143 1.647705 -0.393576 1.910002 0.407563 -0.642692 -0.687367 -1.228495 1.998899 -1.331920 -0.392025 -0.812595 -1.619539 0.056046 1.281501 -0.141870 -0.897458 -0.945374 0.683107 1.004033 -1.583675 0.402130 -0.386350 -0.407772 -1.954140 -1.284431 0.678114 -0.886561 1.616055 0.220464 0.672997 0.008396 0.440699 0.079013 -1.799119 -0.051366 1.626269 -0.847310 -0.445135 -0.482797 1.836065 1.187433 -0.792784 -0.627099 -1.516378 0.364359 -0.872763 0.961077 -0.638859 0.924473 -1.230094 -0.309793 -0.097883 0.744937 1.991975 0.317922 0.714033 0.576125 0.938067 -1.018460 -0.343875 -2.748021 0.799792 -0.801362 0.201580 -0.729855 0.614378 1.226638 0.897237 1.402524 -2.543049 1.594915 0.294740 0.289849 -1.226956 0.489509 0.246534 -0.378992 -0.544217 1.276158 -0.502953 -0.131006 0.006490 0.884329 0.568273 -1.143767 -0.256530 -0.176584 2.216832 -2.380204 0.820649 -0.388462 -0.728485 0.137874 0.343746 1.057589 1.299604 2.313643 1.652476 -0.567943 1.911939 -2.463151 0.582393 2.402644 0.605618 -1.209460 1.726015 -1.161920 -0.627238 0.428755 1.584342 1.051297 0.206665 -1.453124 -1.270578 0.968106 0.177955 1.861288 -0.140936 0.062101 -1.911347 1.188393 0.370287 0.044354 2.791324 0.446652 -2.142059 1.421779 1.764483 -1.502374 -0.834575 0.678562 -1.489934 -0.557525 -1.019450 0.810531 1.372902 -1.331842 -0.991859 -0.331247 -1.238120 1.168635 -0.410284 -1.353347 0.707058 -0.979432 -0.516030 2.315690 0.373290 -0.005399 -1.129170 -1.937875 -0.908689 -2.139057 0.326840 0.172548 -0.799980 -0.285913 -1.465759 -0.932497 1.841365 -0.033942 0.716798 -3.460150 0.344788 1.203677 1.667902 0.115719 -1.235863 -0.184719 0.688229 -0.187202 -0.334177 -0.658177 1.099539 1.759227 -1.534548 0.795497 -0.160024 -0.852029 1.295639 1.311263 -1.918471 2.328298 0.302159 2.457817 0.579440 0.598040 -0.941983 0.350369 -0.078971 -0.651518 -0.675880 0.399751 -1.480632 -0.813543 1.203290 -0.351338 -2.176106 0.091384 1.502782 0.443289 0.352423 -0.563269 -0.491118 -0.383980 -0.769507 0.779258 1.016215 -0.518034 -1.081027 1.136553 1.521331 -0.441584 -0.705316 0.260900 0.998530 1.316383 -2.071325 1.130996 -0.213949 1.225645 -1.691477 -2.349981 1.216305 -1.020230 -0.783312 0.735516 -2.799576 -1.133250 -1.026067 0.945461 -2.081839 0.169794 0.461692 2.042078 0.064367 -0.430712 1.179559 -0.619230 0.304239 -0.461797 0.326929 0.145143 1.307767 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -6.014925 6.467497 2.484942 -5.176039 13.752887 -1.838860 2.034805 4.645142 -6.027996 11.215593 -3.890258 -0.511207 -2.233403 -12.384802 0.596233 -5.910952 -2.147596 5.011057 1.205720 7.433335 4.074879 -7.284808 1.333144 -0.155573 -4.456747 -10.976199 -0.931658 4.143354 10.360853 -6.367194 3.432416 -0.359415 11.477040 -2.150339 10.358025 8.150906 2.083093 6.781257 3.622941 -6.508894 -3.571950 4.240770 -6.149470 -6.793912 0.205392 -1.281889 -8.715540 -5.290565 4.119389 -3.873927 -3.184216 9.243164 -3.163252 -0.360106 -7.214404 7.496748 4.321533 -0.983809 11.492374 0.468725 -0.919756 -2.989860 -10.945149 8.468758 -3.757544 -1.768292 -3.769260 -6.242676 4.190612 -0.059708 -3.981142 -3.514250 -0.969735 10.460352 6.907582 -9.364373 0.270793 -5.470323 -15.067171 -9.693228 -6.981054 3.357293 -0.532909 8.520697 1.872723 4.281797 3.552078 6.350567 -3.847908 -14.392151 3.105786 10.935642 -3.982176 -4.722012 -4.052897 11.061599 2.930220 0.913360 -5.294999 -2.477314 2.720199 -2.520188 5.355883 -9.140348 2.946631 -10.904166 -1.207904 -1.874488 2.520541 5.497954 5.829687 1.846175 6.502237 11.005014 -10.680044 0.454115 -9.940710 2.845987 -2.178717 2.783853 -2.842605 5.556643 0.608168 4.466947 10.129391 -15.682528 3.406061 -0.133244 -0.264351 -11.993933 -0.529005 -3.951021 -1.684026 -3.457556 4.833727 -1.880473 -1.095033 -4.128462 1.823734 3.451225 -5.082121 -2.769155 4.493977 12.699344 -10.185841 3.662177 -1.856086 -2.946701 -1.559467 5.095283 8.978875 8.789228 12.597697 8.968314 0.257069 7.003370 -11.063938 -0.391955 9.953579 2.448417 -7.665890 11.439685 -7.835480 -4.354290 0.552331 9.057388 8.380435 1.770060 -10.476822 -8.707170 7.976354 3.109355 10.545753 0.145826 -0.495136 -2.720535 10.063142 1.317051 -6.976003 11.329838 4.250124 -7.713241 5.601558 3.392563 -9.880944 -4.015706 7.438452 -8.604568 0.489846 -3.372483 0.753971 5.650942 -3.410225 -2.429976 -0.984675 -7.986890 10.271581 -2.743328 -0.801091 4.876289 -5.541389 -9.612486 8.772525 -0.114356 -2.937489 -8.040333 -8.551321 -7.448149 -7.090398 3.151259 0.903298 -3.872092 -4.955893 -9.207358 -1.744727 6.938899 2.917701 6.827168 -12.800126 -2.558359 5.155803 6.301768 5.401410 -3.267784 -0.534626 0.974584 0.193501 1.305303 -0.872093 9.694064 12.821618 -5.869241 5.729676 -4.151586 -5.026185 5.342626 4.545905 -13.071816 12.283958 1.858507 8.306999 0.269115 2.334695 -3.430501 1.766096 3.259515 -2.843980 1.410808 0.567321 -1.914745 -3.999514 0.315049 -7.800364 -7.322326 -2.686097 3.317070 -1.243898 3.817969 -0.194113 -4.994680 -3.255046 -6.160842 2.089773 6.214999 0.050284 -1.431648 7.688463 1.456044 3.750216 0.549413 0.378775 4.089481 4.485850 -11.130790 0.573014 -3.166343 3.724411 -5.666887 -12.242158 2.453504 -7.285292 -5.320780 4.509978 -11.677599 0.564221 -7.352567 -0.601422 -11.650878 -1.284431 3.039794 13.107176 3.057312 -4.793407 4.078635 -4.520235 5.548886 -0.777105 0.658306 3.061740 6.638544 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -1.885332 1.441232 0.603794 -1.579220 4.323212 -0.643405 0.377547 1.961714 -0.667564 2.914464 -1.623158 -0.356953 -0.596028 -2.967978 0.256424 -1.286941 -0.517142 1.782103 -0.466696 1.264994 1.377792 -0.867241 0.315401 -0.430617 -1.168227 -2.458693 -0.662062 1.042630 1.880298 -1.256362 0.275244 0.154877 3.391197 -0.637799 2.987232 2.289025 1.327098 2.362191 0.448671 -0.277638 -0.143067 1.334678 -1.620704 -2.379568 0.430695 -0.868089 -2.506023 -1.501667 1.252389 -1.761169 0.781501 2.387496 -0.459914 -0.163028 -1.482076 2.042178 0.986848 -0.061617 3.140415 0.612080 -1.369774 -0.104841 -3.086672 2.868302 -1.343822 0.992665 -0.882648 -2.631714 -0.070174 0.500364 0.310069 -1.766348 -1.133465 2.222804 1.359119 -2.226079 0.580644 -1.280749 -1.841521 -2.296539 -2.103688 1.005994 -0.468341 2.156644 0.116160 0.813754 -0.101873 1.269724 -0.710891 -3.559455 0.151695 3.158011 -1.491038 -0.200789 -1.937506 1.526643 0.489558 0.228492 -1.337429 -1.088125 0.875463 -0.147801 1.313594 -1.484765 0.581788 -2.429404 0.296805 0.379724 0.482110 1.249189 0.906430 0.690889 1.597278 2.616309 -1.882554 0.632754 -3.034203 1.084312 -0.858551 0.839997 -0.760769 1.301955 0.682259 1.063022 2.524948 -3.778531 1.503724 -0.094823 -0.778447 -2.703420 0.319703 -0.946607 -1.042185 -0.953699 1.546947 -0.090331 -0.579531 -0.976723 0.682128 0.438880 -1.534051 -1.284753 0.587087 2.110087 -2.451644 0.671519 -0.637659 -0.957246 -0.541531 1.634456 2.253779 2.126052 3.553806 2.443603 0.036337 0.719875 -3.257935 0.183155 2.939518 0.567240 -2.365036 2.778987 -2.083656 -0.649892 0.695600 2.234284 1.593596 1.244886 -2.024796 -1.706578 0.973667 0.532213 3.183915 0.891736 0.231525 -1.445574 1.738696 -0.558814 -1.520437 3.765272 1.757013 -2.732986 0.797745 1.232133 -1.821481 -1.487355 1.763790 -2.190513 -0.431483 -0.978948 0.478790 1.613444 -1.370201 -1.192751 0.439182 -2.392072 2.883978 -0.715813 -0.534665 1.033225 -2.340316 -2.105204 3.065004 0.195668 -0.870328 -1.688801 -2.096842 -1.286629 -2.443440 0.876863 0.837529 -0.791292 -1.601008 -2.402814 -0.122562 2.307043 0.126413 1.573943 -2.746512 -0.896169 1.485194 0.476836 1.636221 -1.976430 -0.367011 -0.470875 -0.001500 0.789222 -0.578584 1.761097 3.749750 -1.727998 1.657451 0.485479 -1.429771 0.545772 1.778408 -3.075203 3.409103 0.275320 1.614177 0.037457 0.920372 -1.156658 0.237411 0.428921 -0.080536 0.008305 0.818160 -0.905295 -0.876338 -0.014902 -2.494242 -1.532156 -0.036533 1.234876 -0.200880 0.817583 -0.164582 -1.608087 -0.877710 -1.751696 0.334753 1.967714 -0.354734 -1.271967 1.796652 0.357220 -0.385575 -0.236534 0.274744 1.084715 1.940420 -2.982734 0.465957 -0.254660 0.631816 -2.530339 -2.894080 0.123375 -2.114482 -1.540935 0.911162 -2.906505 -0.751516 -1.909083 0.467571 -2.826472 -0.856965 0.846436 3.511560 1.351789 -1.044811 1.478992 -0.867630 1.926879 0.152199 -0.214511 0.846911 2.021254 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.903301 0.323981 -0.511850 -0.720333 2.180130 -0.542792 0.011789 1.300538 -0.483019 1.276323 -0.834244 0.474943 -0.149472 -1.260934 0.131619 0.356987 0.288564 0.918933 -0.315784 0.358484 0.563127 -0.221746 0.380870 -0.319971 -0.443010 -1.184952 -0.022473 0.508015 0.671767 -0.525591 -0.397846 0.168090 1.680038 -0.413218 1.137028 0.928185 0.797511 1.038729 0.734597 -0.899585 0.387575 0.549076 -0.520104 -1.157499 0.208408 -0.423513 -1.124288 -0.560735 0.768040 -0.961418 0.488701 0.940271 -0.130362 -0.238406 -0.914378 0.952839 0.807394 -0.504542 1.495192 0.187179 -0.882168 -0.452254 -0.734929 1.803664 -0.907926 0.130041 -0.388892 -1.256120 -0.232131 0.731015 0.266870 -0.907879 -0.706573 0.548024 0.396030 -1.038294 0.358663 -0.291750 0.643317 -1.302968 -0.867082 0.370784 -0.682605 0.894591 0.007835 0.392522 -0.446984 0.306289 0.026423 -1.313359 -0.027089 1.059168 -0.762067 0.210422 -0.659354 0.678667 0.382082 -0.367446 -0.472169 -0.833990 0.160973 -0.282583 0.579360 -0.495453 0.886801 -0.578517 -0.003038 0.081778 0.521167 1.024416 0.168550 0.516277 0.565429 0.794546 -0.216702 -0.143072 -1.634171 0.558590 -0.363764 0.128937 -0.405353 0.455711 0.917682 0.439976 1.116235 -1.578564 0.986947 0.083886 -0.102109 -0.904086 0.301632 -0.003503 -0.391756 -0.304272 0.821353 -0.302144 -0.141210 -0.271923 0.628848 0.171750 -1.211458 -0.388987 -0.119319 0.898421 -1.382199 0.414509 -0.258064 -0.435728 0.099791 0.491733 0.704525 0.796866 1.492878 1.060902 -0.269692 0.871348 -1.563142 0.404106 1.442367 0.504007 -1.009999 1.103248 -1.001484 -0.296478 0.560943 0.940753 0.636637 0.344242 -0.613648 -0.533185 0.594852 0.184474 1.376519 0.031213 0.295720 -1.046254 0.472901 -0.038542 0.032967 1.879736 0.416449 -1.598595 0.846263 0.980062 -0.432446 -0.327889 0.427078 -0.958518 -0.571692 -0.667264 0.469271 0.944286 -0.899114 -0.625969 0.071525 -0.947883 1.139698 -0.268847 -0.825403 0.518741 -1.104898 0.180038 1.516834 0.356843 -0.069630 -0.567134 -1.082566 -0.591181 -1.531497 0.188807 0.251352 -0.457062 -0.245732 -1.060314 -0.461964 1.098451 0.057109 0.512172 -2.138426 0.152184 0.833147 0.505151 0.156148 -1.040897 -0.192182 0.145561 -0.095214 0.160737 -0.727677 0.609897 1.139417 -0.978757 0.645119 0.369928 -0.266531 0.536734 0.696367 -1.276058 1.529118 0.148668 1.038943 0.300658 0.469162 -0.632251 0.241920 -0.270694 0.066600 -0.438727 0.386262 -1.024531 -0.522626 0.542284 -0.543241 -1.114390 0.079024 0.831794 0.287540 0.274400 -0.508767 -0.452729 -0.396135 -0.797037 0.354949 0.733923 -0.462609 -0.876952 0.733603 0.661574 -0.564013 -0.259144 0.143302 0.618250 0.952844 -1.362961 0.547555 0.024897 0.576905 -1.250182 -1.301738 0.401704 -0.482689 -0.572239 0.554923 -1.696771 -0.876182 -0.694636 0.518895 -1.371277 -0.010869 0.248048 1.531425 0.230070 -0.310641 0.860584 -0.323143 0.451462 -0.106681 0.188607 0.095426 0.773566 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -12.515752 1.310024 -3.402803 -15.378857 29.888163 -6.679199 -6.075420 17.530727 2.361194 16.840269 -6.937213 -5.885111 -4.487331 -24.613802 2.623161 -7.189794 0.541778 10.699695 -6.481043 12.559818 9.824219 -3.589654 6.277113 0.161945 -9.693951 -6.204031 -4.705793 11.528544 9.023642 -15.335690 4.365458 2.522886 25.617644 -3.657209 24.262824 13.332911 13.147192 16.996984 5.642678 -7.906097 1.452415 6.367659 -9.988124 -17.304692 3.841200 -3.958807 -21.838177 -7.242180 10.830823 -10.370275 0.765334 20.988433 -2.167526 -1.031800 -13.190033 11.040968 0.539111 -2.228718 21.587938 4.668371 -15.560613 -5.234717 -19.242641 13.198342 -10.418251 6.901527 -9.151837 -13.772572 -3.183662 8.780694 -2.146703 -17.336912 -10.142477 12.860173 12.800798 -14.804126 8.444368 -7.147671 6.094905 -15.293869 -12.395295 10.760517 -3.959748 13.027005 1.180926 11.036515 3.861741 8.596465 -8.659595 -26.155936 8.905005 16.504466 -15.661946 -3.085715 -10.048603 13.483051 -4.804802 -1.617267 -14.909346 -10.076873 6.887049 -5.954504 10.568549 -5.932813 11.269199 -15.133710 1.796540 1.324644 7.585192 10.813931 10.847301 4.391073 12.369576 18.355657 -10.452325 3.626423 -23.911331 5.861471 -12.361102 6.891087 -8.998933 9.928261 13.655717 10.821485 14.614406 -26.625903 13.069555 2.781417 -4.400576 -17.543629 3.975184 -4.234866 -5.631116 -5.282929 15.176476 -6.670618 -3.083417 -4.939476 7.924910 5.189538 -11.181400 -3.835112 1.890751 8.318406 -13.586365 7.872172 -2.278464 -9.158341 -0.014664 9.796787 17.337985 12.975353 31.428261 13.727719 -7.142474 8.523725 -21.239718 3.443173 20.752132 -2.620324 -17.312384 23.513020 -18.182816 -5.398841 -0.672831 19.408684 15.385371 5.466051 -10.277384 -7.778268 11.605472 9.594002 22.976737 -7.507024 3.961176 -13.575705 4.283157 -1.281661 0.730202 30.959370 4.371218 -22.282564 5.141848 12.741596 -5.802432 -8.971699 12.267717 -16.459989 -4.183292 -7.172811 9.491915 13.582761 -13.124680 -8.843679 4.735084 -16.665780 14.419674 -7.574311 -12.849982 7.313086 -21.223058 -6.807152 25.981727 2.537073 -4.994389 -9.324942 -19.781839 4.787325 -20.048584 6.184136 8.725586 -0.332821 -2.483856 -12.245873 -4.879063 16.503834 4.446511 11.953273 -26.657667 0.156142 13.090374 0.568504 9.093171 -7.333766 -1.227960 2.506509 -2.113990 3.319112 -8.271324 6.130015 18.891162 -15.850480 13.307215 -1.034673 -9.579486 6.529448 9.110177 -22.105852 31.594665 6.969343 19.112058 -0.103501 7.256262 -8.878269 4.901425 0.419436 -3.852071 -1.908712 3.233483 -8.444019 -9.650793 2.778686 -5.224997 -17.288603 -3.537780 13.564356 -7.992928 8.970057 -4.688114 -4.652914 -8.707141 -8.006624 12.169302 13.099396 -6.180503 -8.055073 13.732582 12.457132 -0.836434 4.758656 3.300545 10.215706 19.688479 -24.669296 4.926386 -0.950925 10.484210 -15.140309 -16.745809 5.372468 -9.205142 5.177358 1.525231 -20.620708 -9.946145 -13.356832 7.917709 -7.941414 4.326142 6.998206 26.392221 15.097432 -14.127860 10.640915 -6.458035 6.382177 1.076812 -1.629926 9.386798 12.478356 +PE-benchmarks/edit-distance.cpp__main = -7.978847 0.448777 -4.821275 -10.605600 20.437548 -4.006923 -3.937456 12.104655 2.133968 10.942008 -5.943639 -1.960619 -2.577888 -15.501926 1.447475 -1.377458 0.950486 7.679264 -5.744751 6.220496 6.356637 -1.460554 5.523928 -1.371980 -5.949347 -5.456391 -1.880424 6.839827 3.324096 -6.293277 1.222437 0.867676 15.188756 -2.333856 11.684673 6.805234 8.430134 11.727620 3.619242 -2.750116 3.294997 3.726719 -4.970272 -11.871535 3.789201 -3.635824 -14.235250 -5.673572 7.238201 -10.746475 2.933931 12.165473 -0.023730 -2.950233 -8.398847 7.114335 3.555359 -2.836133 13.160575 3.431283 -10.095066 -4.276911 -10.887072 8.529778 -7.872109 5.056822 -2.950533 -10.125243 -4.979736 8.228159 0.882722 -9.598373 -8.315071 4.727123 7.439318 -8.887963 5.370888 -3.988237 6.784479 -9.565321 -6.632942 6.110272 -4.012805 8.312762 0.404492 6.413972 1.648003 3.595545 -3.323150 -14.280511 3.071813 9.242738 -8.025703 -0.176824 -7.769944 7.160821 -2.622819 -3.415153 -9.342536 -6.707445 3.584718 -1.883106 6.300093 -2.828700 4.278328 -8.646118 2.907094 3.541590 4.507449 5.920627 5.017672 1.913326 4.284764 9.506961 -5.623386 3.755061 -16.004530 3.456183 -5.646046 4.370567 -6.433484 4.522105 10.157368 6.021542 8.047373 -15.598544 11.408708 2.326088 -4.063267 -9.247249 3.910504 0.072845 -3.355306 -1.956805 9.293031 -4.995832 -1.721743 -1.429019 6.149583 1.708536 -8.845151 -1.734169 -0.977194 5.281726 -9.350906 5.142830 -1.661446 -5.963580 1.061139 5.053912 9.093553 6.080320 18.724489 7.872220 -4.290741 5.370413 -13.113950 4.218033 15.096034 1.842128 -10.241424 12.612026 -9.377404 -1.350017 0.743272 9.976375 7.655762 4.163685 -4.948401 -3.525483 4.941912 4.199999 14.228158 -2.096159 3.724563 -12.303793 1.543651 -1.441176 4.400011 19.400387 5.965055 -13.969177 3.265819 9.666097 -4.663405 -5.140157 5.374245 -7.820017 -3.897739 -4.221031 6.671119 8.532874 -8.568850 -8.636363 0.989254 -9.783612 8.796933 -4.177926 -7.937619 4.170172 -13.025773 -0.459520 15.102054 1.833827 -3.332914 -4.419016 -11.786319 0.475459 -14.130833 3.565064 5.986547 -1.668143 -1.150567 -7.409827 -4.040017 10.885535 1.169080 4.310464 -17.581134 1.369498 8.586963 -0.011887 4.996894 -6.544782 -0.631386 1.579685 -1.487945 2.320056 -5.170182 2.137357 10.358578 -10.226763 7.927664 1.166958 -3.298814 3.988058 7.182682 -11.130163 18.903802 3.365141 12.459437 0.188950 5.307938 -4.293992 4.286642 -1.457446 -2.688225 -1.747615 3.954822 -8.322907 -6.426349 4.238441 -2.956507 -11.435253 0.290809 9.762553 -2.078675 4.403602 -3.218884 -2.633389 -4.695099 -4.362563 6.614546 7.829940 -4.320306 -7.063167 6.153101 9.584350 -2.896366 -0.090772 2.930157 6.960905 13.115528 -14.410262 6.031485 0.031987 5.474440 -11.403397 -9.658936 4.414088 -4.895461 1.006178 2.544384 -14.310220 -8.114293 -7.391089 7.672550 -5.385645 3.040630 3.070244 14.832334 7.321080 -6.279348 7.952329 -2.767914 3.556423 -0.147933 -1.014511 5.537931 8.147608 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/edit-distance.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -4.795287 4.389271 1.980407 -3.753234 9.469354 -0.922467 1.513436 2.279851 -5.193729 8.041066 -2.685705 -1.247303 -2.242117 -8.963204 0.518215 -4.888738 -1.509200 2.783741 1.070793 6.142563 3.362741 -6.171666 0.954883 -0.064635 -3.219571 -6.542698 -1.062086 3.153486 9.026287 -5.678711 1.997333 -0.456362 8.251956 -2.027619 8.251589 6.423184 1.184955 5.055420 1.966514 -7.190850 -3.476090 3.993082 -5.259922 -5.123526 -0.153318 -1.280460 -5.960050 -3.061053 3.633088 -1.059172 -3.884720 7.374137 -2.812338 -0.026111 -5.750681 5.830280 2.543300 0.364640 9.206713 0.156944 -0.308102 -2.136433 -8.656202 5.524729 -2.708784 -0.763954 -4.037284 -4.455469 3.544593 -0.952356 -4.618548 -3.341919 -0.654371 8.393198 5.018696 -7.321007 0.501215 -4.292898 -10.803991 -7.052400 -5.944005 2.423561 -0.431546 6.666297 1.197907 3.324039 3.169190 5.328858 -3.051470 -11.401109 2.862672 7.937992 -3.640848 -3.753567 -1.012153 8.599607 1.580210 1.240578 -4.666787 -0.900187 2.098027 -2.084597 4.339311 -7.986575 4.174110 -8.484220 -1.261315 -2.211644 2.387609 3.858716 6.052768 1.580669 5.613066 8.691492 -7.684184 -0.838983 -6.858340 1.443437 -2.623932 2.215080 -2.127917 5.254355 0.443938 2.698711 8.260255 -11.785223 1.884288 -0.286110 0.140583 -9.399373 -0.299910 -3.767624 -1.653899 -2.746097 3.979704 -1.473202 -1.052654 -3.669903 1.539519 2.950863 -3.755286 -0.310208 3.757345 8.604365 -7.139515 2.635662 -1.567162 -2.571627 -0.963940 4.156823 6.901810 7.326069 9.766448 7.351983 -0.455357 5.494101 -8.004772 -0.147788 7.032193 0.199971 -6.342016 8.593548 -6.740182 -3.399448 0.594867 6.658573 7.377918 2.114406 -7.773885 -6.545488 6.711226 2.898329 8.147912 -1.221734 0.292094 -0.759669 7.769708 0.718270 -5.402921 7.999066 1.910931 -6.597509 5.128587 2.339737 -6.709441 -2.561934 5.939867 -6.857996 1.338266 -3.256512 0.176879 4.723622 -3.183945 -1.424356 -0.714629 -6.434116 8.142419 -2.200174 -0.626378 4.233920 -4.761350 -7.009318 6.541195 0.438560 -2.352187 -6.965655 -6.307708 -5.940705 -5.439780 2.787895 0.269239 -2.777258 -4.159719 -7.416149 -1.384950 4.888809 2.851062 5.815162 -9.152887 -1.410432 3.845774 5.526263 4.808468 -0.095174 -0.668145 1.067779 -0.586741 1.466352 -1.314058 7.394194 9.446508 -4.950786 4.737588 -3.685577 -4.038858 4.250293 3.145735 -10.213974 9.715795 2.009670 6.682416 -0.323859 1.980959 -3.226018 1.400896 3.023294 -2.327298 1.527155 0.031961 -0.941349 -3.185907 -0.069154 -5.660482 -5.194684 -2.613611 2.149599 -1.136056 3.276180 0.070537 -3.762415 -2.880375 -4.160326 1.806272 5.175493 -0.221780 -0.986284 6.014685 0.495610 3.523928 1.010808 0.309349 2.634364 3.602799 -8.971920 -0.530276 -2.701052 2.779040 -3.797828 -8.602788 0.964000 -4.841248 -2.777736 4.232729 -7.747277 1.658488 -5.853473 -0.999302 -7.785114 -0.982911 2.001310 9.989958 2.941448 -4.246490 3.098624 -3.482601 4.569513 -0.448012 0.126845 1.984973 4.459610 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -2.388638 1.753658 0.345326 -1.785806 6.056852 -1.225904 0.600420 2.273020 -2.420917 4.205143 -1.138164 -0.600084 -1.108728 -5.366610 0.586825 -1.864820 -0.232824 2.300320 0.512154 2.888474 1.705028 -2.802381 0.496423 0.111469 -1.436659 -3.871122 -0.520130 1.786769 4.656461 -3.209157 0.466077 0.200778 5.133515 -1.110269 4.352994 3.326014 1.235509 2.348926 1.489402 -4.255723 -1.408699 1.915095 -2.542449 -2.587414 0.022968 -0.360071 -3.474774 -1.466846 1.988703 -0.558431 -1.835159 3.826131 -1.433305 0.123981 -2.942425 3.175023 1.449104 -0.125734 4.498775 0.234759 -0.185695 -1.280274 -4.376814 3.565227 -1.595595 -0.796364 -2.387535 -2.618357 1.418713 -0.070159 -1.837359 -2.290245 -0.318569 4.242061 2.810847 -3.627787 0.492699 -1.784859 -3.948025 -4.358488 -3.840912 1.281165 -1.216398 3.554879 0.619682 1.668676 1.401547 2.342945 -1.384847 -5.793379 1.533717 3.950609 -2.077590 -1.904051 -0.842387 4.105708 1.210569 0.414760 -2.082171 -1.703592 0.936016 -1.651712 2.283937 -3.313817 3.086418 -3.732629 -1.128738 -1.380743 1.803701 2.917528 3.139462 0.694239 2.576937 4.292319 -3.881458 -1.153839 -3.998485 1.247275 -1.717486 1.107268 -1.206928 2.612730 1.103478 1.800330 4.087058 -6.741506 0.944894 -0.000663 0.421302 -4.358380 -0.076653 -1.692069 -0.830767 -1.498779 2.343059 -1.044584 -0.555976 -1.636924 1.235778 1.746183 -2.475767 0.136435 1.273261 4.489760 -4.784133 1.458290 -0.853046 -1.513776 -0.271430 1.853208 3.574293 3.967744 4.890212 3.864340 -0.714073 3.135521 -4.841486 0.229540 3.868187 -0.313399 -2.995919 4.593789 -3.541403 -1.715495 0.456767 4.042158 3.676788 0.497757 -3.460590 -2.837195 3.537434 1.723133 4.193570 -0.941037 -0.035950 -1.134305 3.299779 0.489094 -2.757507 5.042299 0.770225 -3.608317 2.965149 1.522180 -3.535859 -1.317707 2.622522 -3.879923 0.318635 -2.185588 0.683437 2.790888 -1.858461 -0.512163 -0.041446 -3.089647 3.769907 -1.167265 -1.295346 2.435056 -2.310497 -3.030108 4.349088 0.300994 -0.771008 -3.628878 -4.023755 -2.598147 -2.922125 1.344475 -0.301786 -1.332788 -1.557354 -3.721663 -1.194245 3.641207 1.625210 2.989611 -6.197479 0.017015 2.032184 2.921031 2.145831 -0.891763 -0.370542 0.842951 -0.544840 0.107724 -0.999277 3.219862 4.755317 -2.859364 2.094221 -1.579214 -2.130727 2.331568 1.360303 -5.445008 5.009220 1.219815 4.098395 0.151485 1.023258 -1.851516 0.759669 1.206198 -1.000692 0.189139 0.080471 -0.830544 -1.668848 0.555791 -2.715761 -3.782490 -1.433323 1.407377 -0.319176 1.654106 -0.824498 -1.984714 -1.158338 -1.909046 1.357860 2.590138 -0.168916 -0.463910 3.204303 0.776002 1.486022 0.022947 0.210094 1.382513 2.035883 -4.671547 0.019896 -1.146192 2.366587 -1.809801 -5.312165 0.894783 -2.420810 -1.291575 2.132255 -4.815338 -0.050664 -2.975825 -0.291652 -4.728193 -0.102698 1.148560 5.277031 1.181077 -2.159353 1.779832 -1.649950 1.788818 -0.579802 0.234752 1.004232 2.205539 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.287446 2.690521 1.203402 -2.561817 8.137430 -1.083877 0.314182 4.249817 -4.091931 6.034764 -2.323543 0.747413 -0.935375 -5.419450 0.420905 -1.472232 -0.829967 2.540344 -0.041500 3.334881 2.185093 -2.465793 0.575896 -0.086494 -2.454656 -4.340680 -0.650959 2.182642 4.986401 -3.550276 0.856376 0.151999 5.841776 -1.716667 5.370270 4.275247 1.663999 3.523167 1.525700 -3.530904 -1.156457 2.166495 -3.259428 -3.357776 0.170823 -1.073764 -4.567030 -2.016982 2.366668 -2.051690 -1.176692 4.678899 -1.381989 0.023075 -3.148585 4.947919 1.648579 -1.140047 6.334698 0.565923 -2.068305 -1.323303 -5.612744 5.559519 -1.972995 0.373277 -2.688277 -3.992941 1.234387 0.406186 -0.863066 -3.107354 -0.963094 5.384194 2.379030 -4.881206 0.781295 -2.428892 -5.114709 -5.575046 -3.883288 1.966772 -0.345802 3.902758 0.621695 2.001483 0.758116 3.144546 -1.988724 -7.695757 1.428019 5.583976 -3.061103 -1.573991 -3.312800 4.136863 0.908609 0.569391 -2.556934 -1.892246 1.672441 -1.061196 2.634682 -5.320021 3.758558 -4.828913 -0.654666 -0.629014 2.107322 2.951628 2.219971 1.514017 3.684863 5.846532 -3.724698 0.123819 -5.253884 1.669399 -1.681511 1.315348 -1.715763 2.680265 1.684232 2.221785 5.500744 -7.846762 1.909393 -0.393672 -0.617913 -6.185777 0.189505 -2.027983 -1.337145 -1.924548 2.830369 -0.925836 -0.729845 -2.134870 1.717033 1.488037 -3.287059 -1.604781 1.645766 5.466007 -5.858926 1.648358 -1.034507 -1.319598 -0.685919 3.184957 5.016497 4.719305 6.956701 4.385430 0.005644 2.756260 -6.101994 0.041018 5.121522 1.175870 -4.239752 6.245364 -4.386543 -2.059656 0.740268 4.567952 3.817073 1.507030 -4.589120 -4.285235 3.770397 1.886811 6.012048 -0.065753 0.238583 -1.140011 4.095353 -0.564984 -3.347884 6.184558 2.386699 -4.740665 2.866474 1.959985 -2.735942 -2.072736 3.941610 -5.178459 -0.825078 -1.398077 0.259669 3.319317 -2.373641 -1.422650 0.597633 -4.190122 5.769218 -1.381096 -1.116180 2.642529 -3.647828 -3.982731 4.243406 0.591759 -1.388293 -3.868740 -4.262503 -3.920790 -4.043258 1.534404 0.958292 -1.277776 -2.521484 -4.959658 -1.240445 3.360144 1.387073 3.514516 -7.353973 -1.034268 2.905700 1.830284 2.982858 -1.911572 -0.342106 -0.145962 -0.498541 0.916814 -1.492129 4.312121 6.913656 -3.168939 3.561592 -0.599631 -2.329687 1.846601 2.505844 -6.846178 6.480064 1.346819 3.782447 0.488290 1.430269 -2.422060 0.835633 1.007429 -0.686765 0.250215 0.655192 -1.229067 -2.032233 -0.428504 -4.270346 -3.644806 -1.288880 1.681309 -0.783955 1.803834 -0.647683 -2.670853 -2.043615 -3.586254 1.220859 3.328277 -1.210137 -1.347393 4.203952 0.683444 0.681865 0.938364 0.364544 2.220568 2.856363 -5.893997 0.239621 -1.015545 2.386650 -3.969101 -5.503825 0.383503 -3.199335 -2.745194 2.131413 -5.679697 -0.755183 -3.546014 0.025027 -5.582498 -1.134996 1.792386 7.319646 1.557550 -2.890975 2.482054 -2.149193 2.904960 0.010600 0.301478 0.785646 3.204808 +PE-benchmarks/finite-automata-algorithm.cpp__main = -1.092816 0.655808 -0.155814 -0.780790 2.755436 -0.694358 0.056772 1.691468 -1.060943 1.743748 -0.859512 0.511026 -0.247881 -1.815987 0.258742 0.116038 0.139079 1.086451 -0.124946 0.709409 0.747108 -0.521399 0.205952 -0.214987 -0.661279 -1.478560 -0.009610 0.648463 1.207169 -0.913401 -0.195772 0.359591 2.031108 -0.474484 1.622610 1.366014 0.837082 1.236189 0.829936 -1.152376 0.021974 0.653302 -0.810253 -1.343960 0.212308 -0.372774 -1.399666 -0.640451 0.820347 -0.861894 0.174936 1.380548 -0.269562 -0.048769 -1.143344 1.374586 0.720390 -0.497300 1.920344 0.343206 -0.911585 -0.608995 -1.337081 2.085560 -0.908471 0.049546 -0.606545 -1.434897 0.116574 0.600831 0.044298 -1.100110 -0.550727 1.175384 0.561385 -1.451971 0.381169 -0.446348 -0.477131 -1.687349 -1.312378 0.594699 -0.458871 1.282390 0.141256 0.526634 -0.228747 0.636372 -0.262202 -2.081466 0.209015 1.561179 -1.022772 -0.078603 -1.069694 1.138376 0.454050 -0.130540 -0.642728 -0.966598 0.475671 -0.398558 0.787830 -1.206830 1.108421 -1.143791 -0.038681 -0.152618 0.640330 1.183677 0.529287 0.517046 0.895501 1.426326 -0.659013 -0.134446 -1.985358 0.710443 -0.403024 0.260824 -0.546880 0.614250 0.917319 0.536021 1.532751 -2.347263 0.918158 0.062586 -0.073656 -1.613339 0.257052 -0.335706 -0.479279 -0.596729 1.116827 -0.316049 -0.212671 -0.421293 0.705814 0.389263 -1.367844 -0.606578 0.057558 1.659414 -1.988428 0.518071 -0.396161 -0.536423 -0.134251 0.754832 1.240773 1.353316 2.039632 1.380295 -0.222345 1.026584 -2.067133 0.248676 1.807150 0.623676 -1.327664 1.741831 -1.360414 -0.506767 0.415366 1.348483 0.989486 0.386656 -1.145314 -1.014841 1.067973 0.434299 1.858186 -0.035459 0.266889 -0.794365 0.930125 -0.046093 -0.627230 2.233377 0.640822 -1.807458 1.071261 1.018701 -0.644891 -0.541434 0.952025 -1.562955 -0.487803 -0.680922 0.379234 1.165687 -1.122870 -0.544663 0.190536 -1.267981 1.588390 -0.331648 -0.581498 0.733413 -1.294908 -0.470441 1.721166 0.308229 -0.211103 -1.017535 -1.456619 -1.158384 -1.586597 0.364549 0.331385 -0.447460 -0.562863 -1.481521 -0.624035 1.405268 0.225916 0.852915 -2.575535 0.021899 1.021766 0.622934 0.556020 -1.005630 -0.216995 0.160479 -0.113908 0.227522 -0.687680 1.081015 1.837009 -1.150538 1.017901 0.233902 -0.444250 0.668631 0.842530 -1.911358 1.976517 0.335004 1.305750 0.378394 0.569087 -0.909001 0.225158 -0.017424 -0.015519 -0.319354 0.366436 -0.838847 -0.614057 0.309433 -1.029167 -1.373386 -0.163053 0.838912 0.138015 0.384539 -0.479362 -0.597941 -0.553797 -1.195938 0.536566 1.033262 -0.519364 -0.683827 1.160998 0.573479 -0.296143 0.082757 0.248539 0.743496 1.148307 -1.813267 0.393040 -0.119972 0.841032 -1.451052 -1.837443 0.331115 -0.818346 -0.814718 0.654918 -2.157377 -0.693477 -0.957345 0.428553 -1.978181 -0.085745 0.364239 2.165495 0.264466 -0.586900 0.984580 -0.498781 0.637887 -0.082202 0.203069 0.135926 1.088596 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -5.889354 3.078376 3.131836 -5.977255 13.323889 -2.470060 0.048346 5.126806 -1.839722 9.305380 -4.169092 -2.163992 -3.381367 -11.874518 1.113057 -5.561582 -1.007977 4.820569 -0.556409 6.728050 4.967154 -4.313501 2.106620 -1.100517 -3.605206 -8.080295 -2.071131 3.879467 6.830973 -4.504719 3.027812 0.023925 11.012395 -1.243038 9.279635 7.405857 2.904278 8.193851 1.549566 -3.615536 -1.943699 4.975639 -5.685028 -7.719401 1.764867 -2.045167 -7.868264 -4.970878 4.657338 -4.405105 -1.775212 8.996027 -2.063169 -0.795301 -7.008341 5.584637 2.801012 0.992121 10.071479 1.508008 -2.424436 -1.026058 -10.715230 5.157544 -4.702803 1.613178 -3.190050 -6.177091 1.187101 0.818268 -1.695069 -5.228649 -3.105519 7.367925 5.780131 -7.736105 2.216395 -4.369355 -7.167451 -7.940277 -7.289598 3.393724 -1.312878 7.900701 0.578329 3.830625 2.368086 4.969580 -2.304497 -12.052638 2.015461 8.461107 -4.547105 -3.496897 -3.364843 8.252167 1.273848 0.262632 -4.659885 -2.564965 2.799092 -1.954875 5.411653 -3.910175 2.155079 -8.873885 0.676341 -0.272074 2.461260 3.995397 5.012190 1.904699 4.759568 8.727505 -7.889119 1.991616 -10.140186 2.650746 -4.256485 3.322390 -3.510706 5.727334 2.656892 4.006731 8.095118 -12.958580 4.558578 0.518307 -1.158977 -8.354043 1.378561 -2.887681 -2.679275 -2.894360 5.881039 -1.770772 -1.728182 -2.949410 2.758994 2.433939 -3.819264 -0.749160 1.894446 8.040584 -7.704144 3.103312 -2.203359 -4.128391 -0.393553 3.998075 6.944953 7.654819 12.068012 8.347259 -1.766286 3.423115 -10.676786 0.744632 9.954475 -0.371026 -7.130167 9.411699 -5.935125 -2.503350 1.223637 7.832132 7.733634 3.300872 -6.706949 -5.974364 4.877360 2.605860 10.147009 1.149553 1.197926 -5.028520 5.744917 -0.943588 -3.043420 11.761431 4.209575 -8.413641 3.461983 4.477183 -7.966985 -4.849276 4.982664 -5.760321 0.678378 -4.157222 2.292023 5.867655 -4.653969 -4.326725 -0.493276 -7.698757 8.154410 -2.877326 -1.182245 4.437514 -6.791652 -7.409783 9.948543 0.446376 -3.018777 -7.248983 -8.942251 -3.818635 -8.254785 3.940258 1.355239 -2.341945 -3.579810 -7.876978 -1.359247 7.143067 1.911891 5.108564 -10.061953 -1.641909 4.797730 3.135679 5.357099 -3.659372 -0.850072 0.530937 -1.064559 2.300040 -1.246733 5.073421 11.553571 -6.727518 5.208045 -0.577974 -3.665968 3.398974 5.582383 -10.987015 12.229429 1.384176 8.686103 -0.632308 2.941291 -3.286336 1.851161 2.366030 -3.016716 1.258901 1.631995 -2.854990 -4.002747 1.760554 -6.229201 -6.596951 -1.373767 4.272460 -1.274629 3.619981 0.261043 -5.284531 -2.658913 -3.455203 2.965300 6.943384 -0.505728 -3.597291 5.889238 3.183781 0.875834 -1.929213 0.830475 3.422437 6.442848 -10.880424 1.761912 -2.021066 3.140568 -5.735358 -9.361135 2.416864 -5.878823 -3.073826 4.224889 -9.853733 -0.908280 -6.821245 1.618456 -7.405897 -1.308769 1.772579 10.571914 4.611765 -4.121030 4.223944 -3.220180 4.959145 -0.620579 -1.179366 3.105249 6.631002 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -1.146762 0.922798 0.093959 -1.091621 2.160323 -0.591979 0.156336 0.955829 -0.152594 1.257132 -1.383216 0.182865 -0.414924 -1.756175 0.168183 -0.327947 0.128409 1.299044 -0.323373 0.661140 0.914653 -0.567463 0.397924 -0.810706 -0.452039 -1.415203 -0.091949 0.386265 0.249549 0.069412 0.243573 0.260540 1.735539 0.032375 1.108746 1.160057 0.412878 1.952067 0.616325 0.065927 0.415000 0.808427 -0.475112 -2.046986 0.785689 -0.696149 -0.986863 -1.252011 0.701899 -1.752550 0.806518 1.110647 0.064507 -0.572493 -1.371297 0.564214 1.484691 0.155254 1.594399 0.535572 -0.767921 -0.102543 -1.055427 0.722224 -1.213129 0.415628 0.375044 -1.462866 -0.203638 0.960349 0.632138 -0.787686 -1.120716 0.181408 0.364758 -1.033527 0.425821 -0.391619 -0.724164 -0.882173 -0.877261 0.283096 -0.469780 1.243720 -0.156081 0.263507 -0.537076 0.150807 0.381423 -1.200460 -0.553944 1.305251 -0.317281 0.377428 -0.557602 1.123699 0.622935 -0.587721 -0.707034 -0.522250 0.381953 0.057159 0.648158 -0.017614 -0.717513 -1.069149 0.773156 0.526899 -0.149315 0.789427 0.270313 0.654397 0.250165 0.616948 -0.862570 0.710146 -2.116007 0.486962 -0.115306 0.257662 -0.283882 0.264105 0.431238 0.127099 0.832280 -1.597936 1.642235 0.388481 -0.281250 -1.035874 0.710615 0.124846 -0.530806 -0.402857 1.010471 -0.030331 -0.226949 0.002733 0.229936 -0.142168 -0.862628 -0.897380 -0.298090 1.581547 -1.175258 0.417667 -0.474243 -0.786230 -0.009721 0.204256 0.449025 0.544985 1.674801 1.210779 -0.286932 0.523259 -1.505103 0.442365 2.067280 1.024632 -1.225713 0.887674 -0.299449 -0.033891 0.640811 0.561012 0.655217 0.725442 -0.936332 -0.944158 -0.002660 -0.451281 1.464120 0.880481 0.548738 -1.756176 1.089370 0.165132 0.156152 2.242162 0.832003 -1.532899 0.485865 1.336149 -1.362856 -0.755361 0.285980 -0.385021 -0.364410 -0.493855 0.520033 0.711465 -1.202983 -1.467180 -0.461113 -1.288708 1.263805 -0.183907 -0.162129 0.202662 -1.337912 -0.372292 1.779547 0.294584 -0.449496 -0.500383 -0.990091 -0.724946 -1.875892 0.408211 0.600215 -0.722529 -0.698989 -1.062062 -0.219968 1.256576 -0.539664 0.013738 -1.283830 -0.327814 0.886176 0.360198 0.341051 -1.594441 -0.396041 0.186560 0.187539 0.552001 0.010483 0.708863 1.686537 -1.081263 0.605834 0.947775 0.079044 0.706410 1.449336 -1.055763 1.645289 -0.402018 1.481619 0.139319 0.717579 -0.499077 0.130451 0.000962 -0.129667 -0.318105 0.793932 -1.242156 -0.443605 0.785075 -0.835446 -0.794475 0.689979 1.063313 0.668376 0.127846 0.098019 -0.551029 -0.232376 -0.533611 0.093052 1.071464 -0.168345 -1.378324 0.243651 0.871717 -0.692790 -0.786792 0.394618 0.644730 1.250888 -1.431979 1.101719 -0.097920 -0.180121 -1.521230 -1.252191 0.791378 -0.943498 -0.977737 0.826666 -1.908850 -0.642942 -0.751600 1.077760 -1.448031 -0.003089 -0.176138 1.362391 0.451628 0.052309 1.078071 -0.238099 0.834597 -0.045501 -0.085253 0.138537 1.530060 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.432983 0.287368 -0.034919 -0.421385 0.841203 -0.269571 -0.092306 0.504363 0.239447 0.514778 -0.553027 0.038846 -0.068561 -0.521675 0.047253 0.009894 0.023958 0.542102 -0.207807 0.070734 0.320569 0.007504 0.146306 -0.313832 -0.173949 -0.528010 -0.070620 0.146123 -0.029011 -0.009713 -0.110981 0.097625 0.676231 -0.055272 0.478784 0.453031 0.298974 0.654836 0.236380 0.274976 0.281597 0.265613 -0.175736 -0.706885 0.237703 -0.254790 -0.355117 -0.417724 0.284631 -0.655359 0.635195 0.372911 0.031505 -0.217465 -0.398844 0.288318 0.336275 0.095475 0.599201 0.196435 -0.429726 0.092253 -0.401880 0.562952 -0.536850 0.333226 0.059226 -0.633304 -0.231938 0.417126 0.382173 -0.338613 -0.416369 0.059498 0.040378 -0.381671 0.180803 -0.157592 0.240058 -0.246470 -0.329730 0.187529 -0.179881 0.356552 -0.035451 0.106551 -0.406532 0.090624 0.139343 -0.425283 -0.216460 0.456281 -0.228758 0.241222 -0.196332 0.178535 0.252004 -0.240720 -0.059702 -0.241270 0.144783 0.026411 0.227976 0.136961 -0.053029 -0.296311 0.355892 0.336662 -0.042561 0.202931 -0.029332 0.277098 0.147757 0.229245 -0.035010 0.197022 -0.829187 0.213639 -0.073985 0.050655 -0.088814 0.089707 0.240968 0.107041 0.323753 -0.526782 0.627779 0.100340 -0.169435 -0.272432 0.267703 0.058783 -0.216447 -0.144956 0.346889 0.034157 -0.107086 -0.002164 0.146797 -0.110736 -0.371621 -0.356668 -0.146641 0.310171 -0.326043 0.147381 -0.153138 -0.244913 -0.002820 0.144497 0.179192 0.189383 0.644887 0.429957 -0.061524 -0.104517 -0.582234 0.143932 0.658731 0.192265 -0.447804 0.362860 -0.173951 -0.038744 0.270601 0.279602 0.109073 0.372190 -0.216294 -0.275308 -0.176090 -0.176975 0.554770 0.294784 0.182128 -0.554976 0.233572 -0.058990 0.041295 0.913355 0.353638 -0.636986 0.040223 0.527131 -0.332343 -0.341486 0.137621 -0.156762 -0.151250 -0.197389 0.196212 0.279838 -0.456882 -0.533056 -0.019655 -0.482029 0.503335 -0.051502 -0.145261 0.090767 -0.578177 0.043969 0.744234 0.172788 -0.147907 -0.123888 -0.354722 -0.172016 -0.715800 0.108934 0.299414 -0.214361 -0.190553 -0.368476 -0.028783 0.464711 -0.232629 0.042601 -0.401810 -0.160370 0.351151 -0.048659 0.086050 -0.587223 -0.136186 -0.044772 0.027291 0.209132 -0.095698 0.186040 0.643444 -0.362260 0.265868 0.595523 -0.025978 0.116752 0.547659 -0.401855 0.629096 -0.145536 0.173409 0.136062 0.259381 -0.240501 0.036380 -0.081470 0.000384 -0.146010 0.305844 -0.493052 -0.167643 0.200527 -0.360756 -0.220024 0.268244 0.426975 0.230204 0.030723 -0.030260 -0.254049 -0.115226 -0.293444 0.032616 0.375931 -0.053188 -0.558415 0.145523 0.343596 -0.446025 -0.354845 0.138747 0.207568 0.528763 -0.536581 0.433047 0.089420 -0.011423 -0.698396 -0.340567 0.150280 -0.312262 -0.316367 0.106409 -0.680748 -0.439211 -0.258115 0.398440 -0.471348 -0.044210 0.015781 0.549108 0.262504 -0.033804 0.409045 -0.110167 0.299116 0.109522 -0.117857 0.021892 0.533882 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.870958 0.653301 0.157551 -0.899555 1.506441 -0.540226 -0.013125 0.670795 0.303170 0.930179 -1.039520 -0.095544 -0.346768 -1.307595 0.099248 -0.423322 0.088127 1.087646 -0.284337 0.562085 0.723801 -0.378066 0.316778 -0.621396 -0.340652 -0.958601 -0.127832 0.313694 -0.027506 0.040027 0.291852 0.226010 1.344490 0.144110 0.976944 0.920150 0.203112 1.592761 0.448700 0.426634 0.338815 0.600196 -0.315622 -1.621620 0.649297 -0.473415 -0.700839 -1.057700 0.509301 -1.388357 0.859214 0.860981 0.042181 -0.427490 -1.048940 0.292939 0.981356 0.406249 1.177030 0.423314 -0.634298 0.204444 -0.882219 0.323027 -0.970426 0.382534 0.355413 -1.119482 -0.143038 0.726895 0.624318 -0.613696 -0.880834 0.116929 0.273500 -0.733392 0.358391 -0.316476 -0.536236 -0.499662 -0.650137 0.244399 -0.281183 0.867900 -0.149797 0.257189 -0.504195 0.144633 0.250526 -0.887716 -0.367406 0.927828 -0.255418 0.325111 -0.291733 0.857526 0.477525 -0.476164 -0.512370 -0.326302 0.320957 -0.026362 0.510319 0.337586 -0.737800 -0.767260 0.762952 0.521843 -0.192472 0.457416 0.247259 0.570827 0.260814 0.456905 -0.657518 0.708167 -1.623159 0.371870 -0.161459 0.181077 -0.137415 0.226243 0.234035 0.140225 0.571069 -1.134751 1.276108 0.331696 -0.228459 -0.709617 0.580935 0.093143 -0.369735 -0.374674 0.796788 0.016374 -0.174457 0.011881 0.070277 -0.162314 -0.473382 -0.663548 -0.238137 1.040638 -0.560630 0.344930 -0.351200 -0.657799 0.015662 0.108347 0.318876 0.367593 1.295099 0.879289 -0.240326 -0.027391 -1.087053 0.245351 1.496781 0.550631 -0.916844 0.710685 -0.035592 -0.036041 0.447078 0.476568 0.516781 0.524691 -0.612847 -0.744218 -0.262123 -0.359688 1.053837 0.694202 0.366068 -1.296937 0.781635 0.154124 0.115156 1.793642 0.621237 -1.074728 0.064192 1.018605 -1.146299 -0.727673 0.210891 -0.125002 -0.152023 -0.318131 0.445957 0.464062 -0.896726 -1.178445 -0.294804 -1.016701 0.891109 -0.169702 -0.088306 0.080044 -1.120398 -0.327768 1.466050 0.221307 -0.393139 -0.294508 -0.785226 -0.291568 -1.432613 0.303889 0.483800 -0.447115 -0.464101 -0.700977 -0.058200 0.903689 -0.443140 -0.015063 -0.611858 -0.389228 0.677572 0.035254 0.214146 -1.180880 -0.306601 0.134008 0.160826 0.456389 0.174577 0.445449 1.344851 -0.753548 0.382173 0.956461 0.078911 0.522219 1.155267 -0.840784 1.314217 -0.422948 0.922016 0.102266 0.510630 -0.333487 0.054065 0.055469 -0.082822 -0.238635 0.621178 -0.891090 -0.326909 0.521009 -0.641885 -0.479496 0.527973 0.834468 0.433877 0.149797 0.181533 -0.512460 -0.167780 -0.352330 0.097429 0.803180 0.028928 -1.047029 0.192414 0.715951 -0.502666 -0.671641 0.290027 0.443191 1.001415 -1.098746 0.882552 -0.025226 -0.215561 -1.058174 -0.785921 0.605635 -0.808109 -0.641215 0.467259 -1.366950 -0.517649 -0.558749 0.869069 -0.839187 0.089189 -0.118828 1.038229 0.564202 -0.044717 0.785194 -0.235276 0.644061 0.060433 -0.197212 0.098341 1.293868 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/snake-ladder.cpp__main = -3.262137 1.156754 -0.664267 -2.419017 7.778719 -2.460685 0.162483 4.357787 -2.077737 4.641801 -2.048400 0.393341 -1.197703 -5.944790 0.877332 0.122180 0.582528 3.718656 -0.425507 2.617643 2.600268 -1.478686 0.650364 -0.517767 -1.818157 -3.334568 -0.463020 2.051790 3.201529 -3.239500 -0.665782 1.158551 6.559705 -0.898719 5.497541 4.195605 2.519908 4.187586 2.180493 -3.469563 -0.301710 2.394551 -2.579323 -4.367465 1.177028 -1.076840 -4.107819 -2.439978 2.529175 -1.933436 1.475340 4.335498 -0.847454 0.069741 -3.567692 2.979265 2.014558 -0.785530 5.432666 1.144757 -2.259937 -0.529515 -4.178085 4.944263 -2.749760 0.397322 -1.451594 -4.033712 0.305171 1.166991 1.522822 -4.455351 -2.513356 3.413059 2.019976 -3.970292 1.438427 -1.356872 -0.177004 -5.528186 -4.788568 1.559555 -2.226847 4.062668 0.003906 1.611300 -1.087276 1.861854 -0.837208 -5.999376 0.812796 4.255410 -2.949524 -0.023352 -2.998232 3.407003 0.749230 -0.124381 -2.667138 -2.955966 1.455724 -1.436004 2.645994 -1.257986 3.097018 -2.687650 -0.136183 -0.663010 1.705142 3.219996 2.537226 1.299528 2.956779 4.054349 -1.928308 -0.364034 -5.837766 2.120433 -1.648286 1.200195 -1.409787 2.502112 2.670219 1.185845 4.315913 -6.848397 2.427969 0.202507 -0.305711 -4.269200 0.956514 -1.118267 -1.588961 -2.084809 3.708011 -0.901960 -0.972961 -1.415479 1.869504 1.362556 -3.782073 -1.485564 0.082365 4.241179 -5.176560 1.486134 -1.423332 -2.415238 -0.146456 1.958592 3.447450 4.262631 5.937901 4.536182 -1.178631 2.105319 -6.300204 0.626814 5.216475 0.965320 -4.009098 4.907331 -3.515452 -1.319181 1.429081 4.493886 3.447374 0.330740 -2.674056 -2.393131 2.835232 1.590279 5.462365 -0.230023 0.827019 -2.566749 1.978300 0.660627 -1.800246 7.222249 1.127736 -5.045532 2.472871 2.645628 -1.462315 -2.005742 2.404316 -4.029687 -1.262451 -2.329205 1.832567 3.320882 -3.251486 -1.615557 0.702570 -3.861136 4.109376 -1.382501 -2.278946 2.152943 -4.326122 -1.425594 5.955312 0.520219 -0.894477 -3.185273 -4.799575 -1.371679 -4.681740 1.614573 0.570726 -0.747177 -1.706691 -4.210120 -1.306482 4.816186 0.937162 2.324102 -6.632509 -0.205490 2.863589 1.389311 1.842824 -3.961100 -0.630590 0.755028 0.088887 0.758770 -1.432385 2.387252 5.745041 -3.904251 1.595914 1.614251 -0.900973 1.932132 2.640651 -5.779142 6.049643 0.812620 4.341227 0.417116 1.487625 -2.320872 0.538368 0.327156 1.148259 -0.702765 0.970617 -1.921804 -1.830927 0.909832 -2.762941 -4.072833 -0.665354 2.605165 -0.175918 1.602205 -1.623228 -1.867291 -1.348316 -2.799355 1.642882 3.498345 -1.089466 -1.977354 3.485743 1.531547 -0.515271 0.818127 0.577934 2.057784 3.768361 -5.539782 1.064641 -0.637619 2.524990 -3.398440 -5.661219 1.170592 -2.598786 -1.453692 2.508786 -5.937088 -2.025752 -3.128916 1.410177 -5.011451 0.387906 0.805579 5.879650 1.833295 -1.679085 2.775585 -1.451815 2.239080 -0.418089 -0.071339 0.854987 3.670540 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.390702 7.725015 2.772950 -9.267120 14.039860 -4.157557 0.593880 8.888759 -0.919369 9.365045 -8.365063 1.882842 -2.435488 -12.124310 0.489461 -5.022594 0.121631 9.884126 -2.035003 8.846055 6.714195 -3.981224 2.524557 -4.542057 -4.809534 -7.404571 -0.505693 3.552234 1.621323 -1.802389 5.107903 1.009866 13.075975 1.270178 11.779206 9.090747 2.851850 13.771713 4.891736 1.364210 0.477995 5.004368 -4.037563 -13.221803 4.773922 -3.781932 -7.525959 -8.477257 4.311620 -12.062829 4.913050 9.039474 0.169123 -2.339628 -9.001798 3.966803 7.342607 1.214881 11.372880 3.367384 -6.750469 0.662023 -9.291395 2.864572 -6.617230 2.936551 1.811865 -8.314549 1.027319 4.836459 4.629607 -7.335835 -6.209276 4.065357 3.691931 -8.253072 3.988248 -4.402834 -7.284649 -7.360011 -5.192377 3.497255 -0.863590 8.461240 0.079382 4.069029 -3.811266 3.386535 -0.542156 -11.217709 -0.400686 8.839786 -4.223184 0.010742 -5.081349 10.452333 2.304387 -2.318469 -6.817329 -4.057936 4.630908 -0.374314 5.179892 -0.759693 -4.629389 -8.695771 4.250250 4.028780 -1.357340 5.735264 2.681598 6.597671 5.955128 7.700264 -7.087544 7.488482 -14.811790 3.634833 -3.777505 2.406247 -2.176103 3.240862 2.763051 3.755877 6.923417 -12.013013 10.623662 3.798574 -2.857919 -9.003615 4.963014 -1.254099 -2.957904 -4.478631 7.419633 -0.375218 -1.046156 -2.170054 1.142606 -0.709502 -3.905961 -7.999666 -0.282519 9.930831 -7.638554 3.320734 -2.944600 -5.053925 -0.622943 3.085613 5.493414 4.595848 13.166864 7.524970 -1.990627 1.710728 -10.342360 0.166073 13.543295 6.622147 -8.664303 9.153555 -1.705649 -2.027424 2.552039 5.950378 6.320861 3.481559 -9.854525 -10.413873 2.023230 -1.445524 11.160716 4.307048 1.376915 -10.437624 9.522858 0.277124 -1.673799 16.654767 5.391308 -9.578422 0.412821 7.530081 -8.725095 -7.349475 4.169733 -4.374359 -2.370957 -1.472109 3.066281 3.910454 -7.124592 -9.785480 -1.766332 -9.992840 9.091432 -1.841009 -1.639293 0.102575 -9.860367 -4.045673 13.627836 1.893744 -5.356857 -4.115919 -7.789970 -1.934806 -12.644167 3.106442 4.528361 -2.443000 -4.376976 -7.241558 -0.807360 6.580415 -2.545906 0.678910 -8.177623 -5.571345 6.889104 -0.792076 3.184600 -11.868621 -2.106589 0.459104 1.983449 4.332637 0.876487 6.609576 14.077957 -6.670112 4.362067 6.241961 -1.118524 5.039176 10.341083 -10.800494 14.306765 -3.012393 10.707344 1.064834 4.076182 -4.433624 0.736058 1.063372 -0.706657 -0.851342 4.731376 -6.429374 -3.589127 1.666290 -5.542508 -4.903540 2.658733 6.488041 -0.608879 2.388848 2.298354 -4.796128 -3.381170 -5.898550 1.323484 7.935226 -1.368414 -8.536465 4.270707 6.129225 -1.474146 -2.951170 1.913135 5.595926 9.215997 -11.608053 6.443888 -1.374967 -0.894223 -10.186603 -9.366311 6.666459 -8.408214 -5.026750 3.245588 -12.214907 -3.848538 -6.195019 6.260876 -8.777197 0.791230 1.931402 10.748756 5.613748 -3.597197 6.148888 -3.951236 7.422117 1.174287 0.099926 0.145640 11.926452 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -2.169519 1.046351 -1.109246 -3.800963 6.758298 -2.854412 -0.557752 4.241805 0.066703 3.000550 -2.015466 1.215329 0.125346 -5.837753 0.821694 -0.907144 0.978308 3.348205 -0.827201 3.142688 1.730183 -1.015897 1.272028 -0.726656 -1.962922 -3.614326 0.485071 2.332890 1.019577 -2.431215 1.058847 0.925207 5.175534 -0.727628 4.193136 2.988262 2.399291 3.274962 2.739167 -2.437941 1.311727 0.429804 -0.812996 -3.844117 0.314998 0.204164 -4.850422 -1.974833 1.844708 -3.514318 -0.351755 3.655263 0.082221 -0.804619 -3.569536 2.764614 2.139888 -0.935313 3.543466 1.201301 -2.491507 -1.393136 -2.847065 2.796909 -2.690218 -0.524821 -0.907400 -2.605220 -0.163514 3.395092 -0.361212 -2.327197 -2.041633 0.935442 2.722901 -3.248314 1.535933 -1.146608 0.638829 -3.355498 -1.188283 2.377676 -1.418292 2.988458 0.737544 2.511177 0.376962 1.108783 -0.890678 -4.093287 0.929902 2.498389 -2.413754 -1.443538 -1.809220 4.400908 1.210908 -1.841648 -2.193834 -3.582620 1.489124 -1.869335 1.983216 -0.821580 1.097298 -2.499230 -0.007087 0.922403 1.174309 3.602478 0.401541 1.708967 1.590315 2.484652 -2.221995 1.028659 -6.270386 1.419235 -2.576504 0.798808 -1.889168 0.934589 3.511309 3.376415 2.254588 -4.861855 4.172115 1.675494 0.081221 -2.510999 1.465471 0.603812 -0.491294 -1.211182 2.822526 -1.511268 0.278316 0.061904 2.062604 0.831396 -1.786195 -0.671715 -0.565786 2.963958 -3.849606 2.060451 -0.273459 -1.354221 0.428062 0.814237 2.656996 1.737024 5.575977 2.283859 -1.469434 3.080037 -4.594408 0.764674 4.938979 0.759275 -2.308615 4.423463 -2.210501 -1.389103 -0.078887 3.801801 2.126396 0.061268 -3.175367 -2.733360 2.130859 0.754555 3.805136 -1.244441 -0.269241 -4.450940 2.003689 0.457368 0.857726 6.385989 1.722327 -4.071491 1.293084 3.769817 -2.696319 -2.194342 1.476645 -2.864526 -0.866326 -1.126189 2.154081 2.229601 -2.446135 -2.802896 -0.471020 -2.535434 1.642537 -1.106343 -3.269022 0.238721 -2.534669 -0.220902 5.568897 0.426519 -0.801349 -1.356630 -4.331141 -0.253468 -4.620874 0.411832 0.995592 -0.866813 0.601193 -2.158141 -1.956899 3.471112 -0.320824 0.697602 -6.832294 0.363888 3.028983 1.817141 0.071872 -2.224540 -0.046711 1.244313 -0.326385 -0.560998 -1.456594 1.637944 3.503632 -2.625311 2.070085 -0.513714 -2.085423 2.691267 2.827170 -4.268413 6.178421 0.826615 5.071474 1.407605 1.170942 -1.986845 0.809529 -0.695344 -2.026373 -1.242473 1.105078 -3.171227 -1.935345 1.856776 0.354462 -4.624571 0.161345 3.736090 -0.636696 1.082830 -0.628729 -0.737812 -1.298587 -2.038813 2.338434 1.824927 -1.214516 -2.011794 2.371147 4.655792 -0.159406 -0.931335 0.567059 2.567769 3.808938 -4.456195 2.906043 -0.017433 2.736238 -3.404848 -4.445095 3.198305 -2.350973 0.112096 -0.359755 -5.509772 -3.380730 -1.905133 2.758568 -2.831451 1.459288 1.993300 4.564902 1.037493 -1.987802 1.984057 -1.708636 0.448532 -0.458844 0.797975 0.541841 2.993337 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = -4.195462 3.593433 1.210146 -4.362417 7.115376 -1.256556 0.903107 1.945885 -0.431571 4.298289 -5.258952 -0.207827 -1.961188 -6.204853 0.293766 -2.551469 -0.267315 4.308577 -1.394153 3.094057 3.567487 -2.671193 1.718895 -3.227663 -1.588024 -4.382631 -0.777306 1.212367 0.889514 0.810887 1.958389 0.092244 5.528083 0.375112 3.428524 3.795405 0.679972 7.724086 0.923715 1.054272 1.082135 3.387339 -1.841524 -7.718784 3.320357 -2.995450 -3.421394 -5.064692 2.486962 -6.843923 2.410605 4.045302 0.265311 -2.637838 -4.875560 1.702292 6.136475 1.325762 5.680194 1.850095 -2.086398 0.324633 -4.489797 0.505384 -4.075696 2.288192 1.995778 -5.043069 -0.828885 2.817326 2.307332 -2.645813 -4.528906 0.618173 1.652275 -3.444973 1.460903 -2.015526 -4.639833 -2.818492 -2.749756 0.486140 -1.394131 4.485691 -0.972451 0.869652 -1.133146 0.643699 1.386977 -4.163900 -2.386759 4.839832 -0.349268 1.216297 -1.862381 4.211763 1.712831 -1.971916 -3.554793 -0.717460 1.303464 1.009003 2.392033 0.002790 -4.195671 -4.469468 3.246703 2.464344 -1.104179 1.940443 1.246716 2.180507 0.521811 2.235105 -4.307546 3.806248 -7.076332 0.969413 -0.373004 1.545226 -0.846021 1.202213 0.609594 0.135466 2.745926 -5.353238 6.196161 1.256710 -1.625331 -3.880205 2.806534 0.342489 -1.950295 -1.228589 3.263740 0.057989 -1.030199 -0.084226 0.304887 -0.809733 -2.366321 -3.057114 -0.598355 5.532314 -3.299529 1.387558 -1.814888 -3.087648 0.081972 0.643931 1.450846 1.414072 6.004115 4.370963 -0.750945 1.518729 -4.611271 1.620172 7.548614 3.758566 -4.530864 2.600036 -0.201218 0.400978 2.341959 1.290063 2.615493 3.249799 -3.533562 -3.628575 -0.565034 -2.131972 5.047891 4.146030 2.114917 -6.817148 4.492895 0.417097 0.773688 7.618044 3.543930 -4.899863 1.128440 4.283735 -5.789422 -3.027840 0.696492 -0.215837 -0.840213 -1.282619 1.687336 1.959663 -3.781244 -6.250326 -2.414092 -4.819967 4.726816 -0.824636 0.076634 0.500503 -4.802234 -2.536535 5.679444 0.733439 -2.510994 -1.809061 -2.938240 -2.424051 -6.584072 1.947017 2.225244 -2.783459 -3.416287 -3.691569 -0.006201 3.983352 -2.210088 -0.443283 -3.141660 -2.054616 2.821460 1.083335 2.121625 -5.664027 -1.456883 0.220344 0.941408 2.598204 1.074671 2.359864 6.684937 -3.866752 1.851564 3.121428 0.310697 2.367166 5.918969 -3.332097 5.777533 -1.797622 5.846224 -0.550185 2.618655 -1.080668 0.620050 0.688412 -0.671606 -0.233911 3.085305 -4.013404 -1.550863 2.513729 -3.455964 -2.009581 2.976777 3.481126 2.258172 0.676632 1.313045 -2.295140 -0.760001 -1.019998 -0.528861 4.121985 -0.203846 -5.264964 0.069259 2.591747 -1.932776 -3.025806 1.413104 2.165376 4.359912 -4.931161 4.070767 -0.845267 -1.993736 -5.129822 -3.826392 2.778871 -3.777436 -3.714286 3.799758 -5.838011 -1.300480 -2.880294 3.908223 -4.231896 -0.496524 -1.047014 4.274287 2.382198 0.467475 3.871053 -0.785238 3.962585 -0.165003 -0.856920 0.877169 5.782505 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = -4.618416 3.755707 1.547413 -4.511332 7.941344 -1.654671 0.793389 3.280950 -0.111650 4.847873 -5.628190 -0.130427 -1.924357 -6.040871 0.245952 -2.625406 -0.218094 5.040313 -1.711871 3.117162 3.890367 -1.924892 1.575066 -3.299249 -1.875455 -4.006311 -1.006268 1.300710 0.540566 0.560999 1.531832 0.381842 6.423703 0.365120 4.775359 4.555545 1.284628 8.190409 1.084043 2.063348 1.142468 3.564687 -2.131928 -8.144552 3.389776 -3.190755 -3.714442 -5.173558 2.591817 -7.255938 4.257965 4.395891 0.146020 -2.314438 -4.594522 2.150965 5.461365 1.461472 6.319767 2.022891 -3.447032 0.907807 -5.054335 1.751214 -4.230182 3.258031 1.803948 -5.970933 -0.993888 2.763146 3.629514 -3.828233 -5.039737 1.303656 1.321439 -3.843555 1.819628 -2.190836 -3.683563 -2.966073 -3.412876 0.863261 -1.464767 4.506300 -0.947283 1.064361 -2.476294 0.998666 1.071151 -5.031642 -2.162866 5.508331 -1.278225 1.970974 -3.100180 3.531061 1.512333 -1.640973 -3.559901 -1.211977 1.747295 0.977399 2.616401 0.097679 -3.846882 -4.579977 3.744017 3.015473 -1.024152 1.956564 1.132342 2.891870 1.695748 2.950217 -3.690467 4.202150 -7.682896 1.460553 -0.777015 1.379784 -0.828395 1.528532 0.664644 0.475052 3.449971 -5.842680 6.303999 1.157654 -2.219391 -4.281047 2.923231 -0.209538 -2.261724 -1.801375 3.740567 0.313364 -1.214026 -0.562751 0.335905 -1.042151 -2.813844 -4.087264 -0.655180 4.877785 -3.214694 1.373210 -2.023266 -3.230528 -0.123117 1.375834 1.995443 2.066811 6.461749 4.747602 -0.524824 0.159499 -5.409517 1.259546 7.531149 3.752353 -5.206058 3.401193 -0.611338 0.186210 2.701266 1.917275 2.639971 3.516599 -3.638437 -4.106860 -0.864121 -1.849259 5.647631 4.689249 2.023244 -6.589429 4.254242 -0.390726 -0.153411 8.720878 3.927546 -5.477456 0.201251 4.368998 -5.040140 -3.665912 1.209085 -0.920408 -1.173744 -1.312744 1.601124 2.201214 -4.174322 -6.336530 -1.311295 -5.456579 5.458359 -0.851883 -0.164646 0.266950 -5.934865 -2.592538 6.821438 0.943285 -2.738841 -1.785313 -3.332546 -1.986123 -7.069253 1.926911 2.702158 -2.261208 -3.812543 -4.160055 0.252017 4.168219 -2.142730 0.046848 -2.764593 -2.868594 3.239046 -0.179887 2.306770 -6.829129 -1.647570 -0.568567 0.977507 3.097337 0.876867 2.529105 7.751478 -3.878048 2.299887 4.810123 -0.040699 1.805380 6.269116 -4.186616 6.480811 -2.006587 5.113945 -0.208334 2.783106 -1.677521 0.367394 0.570653 0.313431 -0.435454 3.516917 -4.000865 -1.599226 1.706225 -4.325342 -1.835723 2.787300 3.531554 1.722235 0.811530 1.180013 -2.854572 -1.345820 -2.077952 -0.456523 4.514794 -0.505586 -5.507205 0.809620 2.231256 -2.573843 -2.649993 1.454849 2.243750 4.962992 -5.640577 3.941538 -0.499496 -2.013541 -6.019566 -4.005894 2.207370 -4.394653 -4.046072 3.234908 -6.140470 -2.025604 -3.120525 3.813212 -4.439370 -0.914299 -0.543394 5.305958 3.043195 -0.014249 4.149760 -1.108761 4.559066 0.347862 -1.009005 0.612279 6.430746 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.681195 5.020287 5.596633 -3.109871 3.278898 1.073307 0.493417 1.815284 -3.163449 3.613338 -3.716295 1.032635 -0.879497 -3.027317 0.050887 -3.778461 -2.006218 0.725178 0.309864 4.122116 2.140757 -3.083819 0.212931 -1.928572 -2.111600 -3.060872 -0.266305 0.684280 3.163106 0.051663 3.068145 -0.749621 3.347398 -0.141875 3.758808 2.819251 0.891065 4.483581 0.602420 -1.301122 -1.519985 2.519841 -2.588016 -3.357216 1.286513 -2.245311 -1.150921 -2.040671 0.979508 -2.257226 0.371298 3.253119 -0.642720 -1.716455 -3.079976 2.790917 1.994850 -0.091041 4.716557 0.548971 -0.821790 -1.457917 -4.897536 1.623972 -2.128792 2.167610 -0.839382 -1.300677 1.870486 -0.318702 0.303802 -0.492887 -1.587873 3.235058 0.907159 -3.596122 1.030208 -2.862239 -6.404539 -2.193140 -1.708985 1.679930 1.156387 3.241476 -0.131796 1.393409 -0.403035 2.878429 -0.871975 -4.993344 -0.360062 3.517863 -1.663047 -1.473841 -1.876418 4.369628 -0.095834 0.456536 -2.384352 0.667513 2.548612 0.874868 1.717456 -5.247466 0.658635 -5.630594 2.328782 1.869088 -0.585013 1.468788 1.457116 3.409035 3.434065 4.001838 -3.331291 1.645869 -4.009735 -0.980953 0.666755 0.773157 -0.960123 2.275277 -2.301728 1.034115 3.527442 -4.912929 2.948173 0.653811 -1.719124 -3.372802 0.778754 -1.819861 -1.360720 -1.823918 1.574867 1.049033 -0.891582 -1.266896 -0.468851 -0.131645 -1.362281 -4.182947 1.831475 5.027479 -3.197329 0.600958 -1.051159 -1.088059 -0.716100 2.550780 2.869109 2.024042 3.580792 2.854586 0.875537 0.200053 -2.655588 -0.309139 3.647647 1.393184 -4.217569 3.835283 -2.513717 -1.525852 0.813542 1.581300 2.746171 2.756659 -5.668359 -6.505744 1.777278 -0.950186 4.285636 2.136468 0.383069 -2.267839 6.088926 -1.575852 -2.916726 3.961487 1.626317 -1.740258 -1.793095 1.512390 -4.173020 -2.558612 2.471952 -2.062492 0.555421 -0.015070 -1.198397 1.418135 -1.300552 -3.407588 -1.376049 -4.272187 5.368031 -0.426118 1.857880 -0.665003 -2.144859 -5.477328 2.787519 -0.164363 -2.972813 -2.899950 -1.374835 -2.391412 -3.549814 1.507497 1.998945 -0.991454 -3.886245 -3.745138 0.478570 -0.039471 -0.988078 0.522649 -3.400141 -4.028178 2.001484 0.169297 2.218726 -1.538301 -0.881619 -0.844686 0.283130 2.576494 0.308051 5.323756 6.484745 -1.761119 3.844713 0.908238 -2.083379 0.831641 4.055950 -3.744826 4.813705 -1.632747 2.155610 -0.605157 1.684923 -2.004770 -0.135951 1.678371 -1.841190 1.263393 0.796896 -0.569618 -0.911645 -2.459391 -3.942231 -0.229083 0.811936 0.512422 -0.468666 0.916462 2.430656 -1.177707 -2.288961 -2.502059 -0.599457 3.164212 -0.765649 -1.652198 1.771910 -0.060474 0.764071 -0.034673 0.463956 1.372536 2.430672 -4.242135 1.150531 -1.363646 -1.574495 -4.068507 -3.026324 0.528448 -3.204667 -2.832763 2.479506 -3.683727 1.035809 -2.727754 0.481727 -2.499504 -1.385606 1.114002 4.219247 1.497932 -2.692611 1.875336 -2.062157 4.327980 1.511221 -0.561795 -0.018911 2.926860 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.453930 15.569496 12.004989 -12.763323 16.873652 -2.699600 2.605532 5.723509 -2.350595 13.818627 -15.179832 -0.892371 -5.948026 -16.197222 -0.086556 -13.154894 -3.148625 12.522767 -1.540507 13.874665 10.822315 -9.146025 3.050306 -9.171302 -6.010967 -12.541912 -3.417238 3.033950 3.413145 0.667951 11.639137 -0.377310 17.296547 3.097033 15.204452 14.093522 -0.786897 23.200643 3.289772 5.975866 -1.513497 10.872583 -7.881124 -20.852809 9.021567 -8.315731 -7.174523 -15.415209 5.441312 -17.898507 6.119081 12.995184 -0.719435 -5.076987 -13.799162 4.674052 14.595668 6.051622 17.724556 4.747443 -5.515742 5.145396 -16.003389 -1.445772 -10.130441 6.678547 4.313222 -12.589583 3.029478 3.200745 8.264959 -8.318760 -10.221927 7.082974 3.750717 -11.827038 4.261911 -8.110836 -22.846091 -9.235605 -8.623930 2.841374 1.010300 13.003877 -1.916971 3.628096 -4.983711 5.889361 1.415797 -15.768877 -4.292452 14.725919 -2.517425 0.309565 -4.210750 15.447509 4.834707 -1.860293 -9.742318 -0.139578 6.389690 2.074716 7.479947 -0.766076 -11.837524 -15.390364 8.948233 6.363944 -5.073061 4.938475 4.329369 10.726619 8.222919 10.749712 -15.097547 13.003277 -19.608938 2.970891 -2.913250 4.065640 -0.674547 5.534034 -3.274470 1.974318 10.273256 -16.737252 14.953155 3.910050 -5.175123 -14.074145 7.278076 -3.571708 -5.608040 -6.774608 9.117537 2.555271 -2.883777 -3.480043 -2.176753 -2.698907 -2.198555 -13.401900 1.425782 18.292171 -8.521863 3.673856 -5.416472 -8.273317 -1.637584 4.105299 6.380972 6.351643 18.106139 13.067226 -1.043121 -1.011427 -12.690242 -0.623129 19.671073 10.271253 -13.951591 10.958426 0.837545 -2.295077 6.073894 5.550461 9.852097 8.441280 -15.838387 -18.180343 -1.088678 -5.993724 15.964047 12.473512 3.674311 -15.113834 19.096258 0.797528 -5.568622 22.433115 8.933389 -11.430031 -1.382739 9.520082 -18.245133 -12.116681 5.540672 -2.253192 -0.822536 -1.088525 1.432954 3.788849 -9.125045 -16.850892 -5.139572 -16.561165 16.281339 -2.219598 3.883591 0.569611 -14.061446 -14.918926 16.533218 2.391413 -9.703036 -7.507746 -8.045971 -4.693311 -17.849345 6.679473 6.580949 -5.676556 -11.727278 -11.944910 2.992604 7.275332 -5.663399 0.397384 -5.385715 -12.763252 7.876326 -1.117092 7.301272 -17.330430 -4.405211 -1.011094 3.747291 9.228925 6.166230 12.316201 25.163628 -9.393209 5.707218 11.117923 -0.996351 6.403351 17.922455 -14.252607 18.086954 -7.801931 14.734381 -1.444862 6.749771 -4.795489 -0.110154 5.399544 -1.827389 1.442814 7.430999 -7.296236 -4.018824 1.279180 -13.281685 -1.968902 6.099631 6.524618 1.754807 3.079524 7.755054 -9.580791 -3.202404 -4.937415 -2.471849 13.547387 1.557205 -14.080283 3.520039 4.487373 -1.617947 -7.186132 2.656560 5.783547 11.241185 -16.367931 9.200954 -3.947163 -7.228171 -13.998243 -11.229082 8.135293 -14.651211 -12.063947 9.434385 -15.194501 0.003144 -10.078520 7.406769 -11.346060 -2.921085 -0.349446 14.303621 9.477345 -3.743767 9.153999 -5.484630 15.333098 2.557126 -2.819190 0.053292 19.162132 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = -0.772078 0.880750 0.388877 -0.727074 0.859528 -0.372482 0.078920 0.426125 0.373109 0.694227 -1.032109 -0.291798 -0.311547 -0.986331 0.015865 -0.539484 -0.082874 0.998385 -0.155036 0.546388 0.705726 -0.371230 0.109458 -0.685861 -0.230983 -0.626476 -0.197143 0.083438 -0.189055 0.195487 0.392916 0.152803 1.094916 0.375723 0.967995 0.906215 -0.103553 1.524583 0.361730 0.905260 0.058628 0.695317 -0.346034 -1.504270 0.644626 -0.528619 -0.219905 -1.083426 0.272926 -1.175601 1.212830 0.644129 0.047482 -0.292620 -0.841429 -0.057150 0.851723 0.700927 0.985326 0.424169 -0.418409 0.605353 -0.762144 -0.057158 -0.774431 0.506572 0.624219 -0.876268 0.060770 0.316362 0.947033 -0.590370 -0.796204 0.153969 -0.014315 -0.552027 0.329081 -0.362318 -0.979739 -0.263617 -0.599981 0.130865 -0.107645 0.744336 -0.237650 0.054475 -0.819247 0.173806 0.272803 -0.695806 -0.448513 0.804200 -0.062160 0.381358 -0.128009 0.749597 0.421694 -0.177230 -0.392567 -0.001409 0.378625 0.180882 0.378131 0.601143 -1.026607 -0.675349 0.885856 0.575905 -0.530226 0.233665 0.351152 0.676849 0.404157 0.407033 -0.574825 0.807901 -1.316652 0.292249 -0.049069 0.157274 0.172115 0.181344 -0.172032 -0.127289 0.396872 -0.787081 0.988044 0.357949 -0.272657 -0.645539 0.543000 -0.163857 -0.436766 -0.447951 0.587884 0.328431 -0.198040 -0.101318 -0.258380 -0.316668 -0.191171 -0.929495 -0.139534 0.942029 -0.242293 0.127036 -0.366003 -0.568044 -0.113825 0.125782 0.129804 0.221185 1.010638 0.737306 -0.113799 -0.597103 -0.717838 -0.001350 1.200890 0.588178 -0.822701 0.451128 0.293482 -0.031496 0.482710 0.266258 0.395146 0.519877 -0.637804 -0.838500 -0.534359 -0.572502 0.855988 0.877938 0.357032 -0.899238 1.005005 0.252752 -0.296099 1.541811 0.514081 -0.633270 -0.367892 0.644168 -0.994465 -0.714851 0.196025 0.129431 -0.008887 -0.112648 0.189690 0.135240 -0.701309 -1.126915 -0.262546 -0.993519 0.883956 -0.063794 0.293754 -0.108719 -1.072865 -0.406875 1.258286 0.210660 -0.541273 -0.194915 -0.396610 -0.135283 -1.093557 0.365417 0.474379 -0.300892 -0.627833 -0.562669 0.272356 0.597419 -0.554926 -0.157794 0.217920 -0.795301 0.465707 -0.329531 0.259163 -1.306992 -0.378341 -0.042271 0.363963 0.667989 0.513086 0.564341 1.501582 -0.494461 0.113858 1.409893 0.390628 0.307869 1.189483 -0.682450 0.948784 -0.710403 0.481033 -0.015032 0.438332 -0.250152 -0.181258 0.216913 0.186207 -0.047108 0.578610 -0.520316 -0.100232 0.192609 -0.798591 0.071334 0.578540 0.465538 0.330720 0.084833 0.363930 -0.599254 -0.065800 -0.260021 -0.205398 0.830188 0.286102 -1.007636 0.024771 0.283592 -0.344906 -0.485237 0.217573 0.223403 0.794800 -0.829669 0.673645 -0.065136 -0.526180 -0.841548 -0.504483 0.430499 -0.776525 -0.714435 0.437323 -0.889690 -0.208631 -0.507747 0.609765 -0.735827 -0.018947 -0.207932 0.751265 0.656639 -0.037652 0.540843 -0.206616 0.906632 0.268251 -0.324454 -0.011434 1.341924 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = -0.623975 0.243316 -0.135941 -0.561536 1.400903 -0.284704 -0.146853 0.764851 0.239921 0.792303 -0.743461 0.037787 -0.183706 -0.761578 0.074035 0.073134 0.084815 0.664853 -0.401100 -0.013825 0.448471 0.038763 0.312223 -0.376922 -0.245488 -0.765517 -0.123485 0.241799 0.074178 0.026871 -0.286352 0.099859 0.953104 -0.166864 0.556995 0.527024 0.563129 0.892781 0.214621 0.247621 0.432793 0.368942 -0.269539 -0.987587 0.368703 -0.438322 -0.666041 -0.508306 0.496348 -0.983712 0.703665 0.574373 0.030782 -0.340992 -0.500720 0.515782 0.490985 0.012366 0.897861 0.256461 -0.685685 -0.128637 -0.607403 0.874114 -0.735321 0.547818 -0.035145 -1.009603 -0.515622 0.643956 0.365694 -0.457477 -0.617488 0.102844 0.171720 -0.540008 0.255565 -0.182214 0.502563 -0.385855 -0.533195 0.241805 -0.345825 0.530191 -0.027225 0.170190 -0.352112 0.085541 0.187434 -0.678352 -0.257035 0.711627 -0.364231 0.387570 -0.419681 0.102652 0.213112 -0.353866 -0.190423 -0.383905 0.145561 0.074549 0.341450 -0.035796 0.001881 -0.495697 0.503064 0.454650 0.118258 0.250212 -0.014384 0.200110 0.094154 0.372670 -0.117357 0.257401 -1.129538 0.300316 -0.104072 0.107008 -0.274141 0.171136 0.458746 0.158267 0.533443 -0.851378 0.912668 0.093734 -0.330233 -0.413886 0.354452 0.101818 -0.307841 -0.100827 0.545153 -0.105723 -0.172559 -0.013271 0.334091 -0.136169 -0.698472 -0.320821 -0.251919 0.367739 -0.578016 0.235984 -0.224272 -0.391444 0.033246 0.257974 0.313100 0.341220 0.945944 0.642753 -0.139712 0.068360 -0.906079 0.357298 1.019346 0.281162 -0.685966 0.515063 -0.404628 0.052985 0.387353 0.372872 0.197797 0.602474 -0.184283 -0.205530 -0.171373 -0.100681 0.845857 0.468273 0.360289 -0.890071 0.137301 -0.249132 0.229393 1.238628 0.598944 -1.037786 0.237078 0.787086 -0.466258 -0.381147 0.168524 -0.317390 -0.259827 -0.405506 0.320410 0.544880 -0.716306 -0.732821 0.015237 -0.673450 0.760068 -0.083692 -0.243929 0.255886 -0.851900 0.083186 1.016983 0.230219 -0.153469 -0.225044 -0.587818 -0.409048 -1.050767 0.159620 0.422471 -0.365561 -0.280068 -0.587703 -0.158122 0.755792 -0.194867 0.153907 -0.805756 -0.009722 0.520908 0.016063 0.235159 -0.734137 -0.183103 -0.072414 -0.122946 0.293542 -0.291300 0.142785 0.751100 -0.609281 0.531215 0.585601 -0.145767 0.133238 0.671624 -0.508299 0.923426 -0.064710 0.399855 0.150181 0.443318 -0.320780 0.197838 -0.173492 -0.075416 -0.218671 0.503070 -0.791426 -0.314652 0.400352 -0.522071 -0.487880 0.325481 0.634475 0.386276 0.051941 -0.150986 -0.346781 -0.190032 -0.379600 0.134020 0.529500 -0.220444 -0.778584 0.187299 0.484276 -0.698186 -0.560673 0.264211 0.309764 0.793014 -0.803682 0.563657 0.141026 0.042793 -1.052294 -0.501024 0.118349 -0.385724 -0.431126 0.280379 -1.047280 -0.624872 -0.381918 0.573938 -0.647752 -0.096349 -0.007319 0.838079 0.313653 -0.004533 0.674900 -0.063029 0.335752 0.054591 -0.140265 0.134156 0.643909 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = -3.341451 2.971349 1.339711 -3.929942 5.359614 -1.466410 0.400406 1.521954 0.824287 3.274815 -4.308475 -0.548920 -1.415273 -5.119625 0.179697 -2.707336 -0.217613 3.875470 -1.085584 3.043197 2.916985 -2.136213 1.318529 -2.731599 -1.326855 -3.218252 -0.657243 1.076437 -0.089334 0.553178 2.258812 0.272967 4.539774 0.812707 3.362430 3.328942 0.077288 6.574902 0.922849 1.942757 1.019137 2.498494 -1.179988 -6.466199 2.743304 -2.039611 -2.706225 -4.510690 1.733272 -5.811774 2.637362 3.373772 0.237922 -2.101013 -4.152164 0.904860 4.643375 1.815351 4.356415 1.615854 -1.948484 1.182037 -3.771946 -0.483207 -3.356666 1.740705 2.073330 -3.894745 -0.272794 2.475269 2.368367 -2.242932 -3.687882 0.335057 1.353528 -2.663731 1.312748 -1.727248 -4.046245 -1.792321 -1.832008 0.611658 -0.699669 3.386222 -0.789470 0.991430 -1.277849 0.578831 0.940039 -3.244431 -1.764300 3.676468 -0.356226 0.889593 -1.237938 3.905949 1.627666 -1.789268 -2.820122 -0.569067 1.288385 0.466563 1.923806 1.125784 -4.218777 -3.538689 3.083125 2.372907 -1.312772 1.400547 0.915653 2.289669 0.761482 1.695524 -3.607806 3.799575 -5.907458 0.789972 -0.592174 1.147628 -0.400413 0.828239 0.242444 0.499735 1.879595 -4.010151 5.232312 1.360861 -1.194826 -2.974971 2.410653 0.290106 -1.403375 -1.279798 2.658140 0.256702 -0.633963 0.091704 -0.205590 -0.831618 -1.153476 -2.756625 -0.488994 4.329330 -1.692410 1.275591 -1.318197 -2.500331 0.050944 0.263124 1.150542 0.816345 4.969432 3.215951 -0.635369 0.092792 -3.459280 0.875886 5.963831 2.567397 -3.539908 2.361736 0.561534 0.134078 1.565970 1.227799 2.145802 2.221506 -2.995652 -3.366834 -1.019055 -1.972533 3.795627 3.256752 1.339871 -5.518605 3.862089 0.626688 0.536060 6.557980 2.763971 -3.619126 -0.109224 3.640959 -5.071973 -2.998156 0.607615 0.331793 -0.361376 -0.599506 1.565031 1.087189 -2.926072 -5.318437 -1.941933 -4.001259 3.437651 -0.705934 0.168765 -0.186595 -3.958750 -2.266550 5.112913 0.520599 -2.236113 -1.001336 -2.442561 -0.966136 -5.369053 1.401009 1.937328 -1.914809 -2.389634 -2.526296 0.294957 2.994395 -2.172107 -0.568527 -1.477621 -2.246562 2.330833 0.172799 1.303590 -4.670973 -1.211013 0.209815 1.035228 2.058960 1.455341 1.811154 5.702392 -2.736995 1.229272 3.238414 0.339710 2.088075 5.056218 -2.902559 4.988109 -1.857316 4.418814 -0.266719 1.981612 -0.835317 0.189690 0.685588 -0.607525 -0.293929 2.548815 -3.150276 -1.149466 1.824575 -2.513298 -1.357273 2.531162 2.981790 1.450723 0.656165 1.520596 -1.999242 -0.639119 -0.849809 -0.227442 3.171099 0.271634 -4.206908 0.072038 2.637790 -1.313475 -2.485874 1.076486 1.736141 3.707487 -4.009276 3.661731 -0.540444 -1.812821 -3.805529 -2.778584 2.675496 -3.517811 -2.685392 2.250224 -4.639408 -1.260117 -2.246678 3.396374 -2.748082 0.006595 -0.636805 3.542263 2.537443 0.006234 2.892161 -0.991874 3.125691 0.140848 -0.830330 0.548130 5.180722 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = -3.170697 3.409119 1.709947 -3.310035 4.416749 -1.684397 0.758075 1.828841 0.402976 2.913832 -4.171226 0.063935 -1.289817 -4.354931 0.078861 -2.390201 -0.158262 4.079656 -0.739729 2.647565 2.802989 -1.597826 0.820958 -2.749774 -1.204341 -3.090258 -0.489002 0.626290 -0.618760 0.747530 2.251588 0.558269 4.510282 1.093885 3.435952 3.470960 -0.078314 6.341420 1.371501 2.557215 0.736022 2.505571 -1.146015 -6.153975 2.670151 -1.957248 -1.701869 -4.340920 1.340739 -5.435093 3.509681 2.782870 0.331112 -1.613119 -3.719028 0.469009 4.341249 1.598647 3.970841 1.602412 -1.951052 1.629244 -3.073921 -0.156029 -3.180180 1.616938 2.411010 -3.527016 0.109429 1.970460 3.347692 -2.475680 -3.475989 0.262220 0.422072 -2.456157 1.133998 -1.433081 -4.153609 -1.584652 -1.964561 0.428594 -0.453416 3.020355 -0.858016 0.520020 -2.460021 0.500763 1.162120 -2.775328 -1.929725 3.530306 -0.217727 1.278181 -1.410735 3.374665 1.669604 -1.406706 -2.116101 -0.549786 1.355230 0.570410 1.662491 1.453047 -4.385819 -2.929526 2.937076 2.133187 -1.863115 1.421090 0.575747 2.710215 1.078589 1.417398 -2.778319 3.639548 -5.829739 1.159559 -0.178836 0.745627 0.185024 0.515078 -0.328105 0.042559 1.642391 -3.500056 4.621236 1.267357 -1.121162 -2.847707 2.297827 0.116826 -1.429711 -1.586480 2.508217 0.809430 -0.661405 -0.076331 -0.585031 -1.039187 -0.907250 -3.977221 -0.562798 4.329513 -1.710269 0.890028 -1.437374 -2.252101 -0.212219 0.236262 0.664884 0.739654 4.252709 3.026296 -0.373144 -0.484195 -3.210789 0.249140 5.152573 3.319002 -3.272276 1.977639 0.921483 -0.103800 1.831506 1.028488 1.652810 1.947601 -3.083804 -3.620752 -1.140709 -2.284665 3.517592 3.479472 1.251298 -4.793680 3.954748 0.853864 -0.225761 6.233184 2.396125 -3.089682 -0.501341 3.097292 -4.020198 -3.043413 0.595600 0.271151 -0.723756 -0.229021 1.075505 0.704164 -2.768780 -4.818873 -1.514788 -3.806850 3.306132 -0.456624 0.452499 -0.393372 -3.959251 -2.167146 4.769426 0.629325 -2.086402 -0.821589 -1.969361 -0.700488 -4.918969 1.376328 1.984135 -1.509568 -2.504882 -2.378138 0.687455 2.513097 -2.274437 -0.715859 -0.591058 -2.876888 2.123745 -0.410306 0.946388 -5.633152 -1.275033 0.024993 1.550329 2.264584 1.783371 2.146875 5.795954 -2.337924 0.779465 4.413046 0.904994 1.661821 4.906219 -2.763423 4.122267 -2.371263 3.600185 -0.032118 1.694326 -0.974076 -0.330759 0.688564 0.378409 -0.386981 2.295756 -2.701050 -0.741730 1.164987 -2.780977 -0.474785 2.479325 2.457785 1.265998 0.376631 1.553764 -1.879862 -0.482155 -1.194181 -0.678697 3.163639 0.446881 -4.199769 0.134172 1.885197 -1.621152 -1.989226 0.885340 1.558115 3.156810 -3.503501 3.276207 -0.525229 -2.079338 -3.765730 -2.753177 2.597468 -3.429952 -3.172111 1.872084 -4.105522 -1.174542 -1.984365 3.062086 -3.321902 -0.199331 -0.729784 3.044290 2.157712 0.288792 2.568032 -0.911390 3.325313 0.461540 -0.737511 0.084670 5.298579 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -2.081574 1.302263 -0.421742 -1.633707 4.255258 -1.055580 0.244203 1.181563 -1.456522 3.332599 -1.294814 -0.462011 -0.923878 -4.193485 0.434884 -0.870955 0.036005 1.746194 0.289186 2.227804 1.531675 -2.372486 0.527821 -0.258664 -1.107905 -3.044474 -0.366658 1.392753 2.946308 -2.458815 0.723340 0.325265 3.875344 -0.526122 3.154381 2.737339 0.704419 2.601551 1.408266 -2.390201 -0.813967 1.672278 -1.842794 -2.452506 0.478697 -0.430065 -2.583315 -1.527431 1.574244 -0.877221 -0.563643 3.093538 -0.947443 -0.124890 -2.883816 2.031925 1.856183 -0.166468 3.776433 0.386310 -0.289144 -0.669565 -2.951444 2.707363 -1.769462 -0.701749 -0.893188 -2.210980 1.084415 0.282085 -0.711469 -1.593492 -1.180042 2.796518 1.886071 -2.970467 0.467105 -1.323915 -3.187534 -3.496681 -2.739677 0.978450 -0.602555 2.989401 0.337342 1.226078 0.839744 1.627222 -0.744293 -4.299485 0.844480 2.756411 -1.469398 -0.873643 -0.762996 3.566376 0.874952 -0.038395 -1.947463 -1.065093 0.699297 -1.233981 1.848846 -1.512345 1.329092 -2.613580 -0.323618 -0.962526 0.996894 1.988442 2.607891 0.661352 1.820139 3.008490 -2.827637 -0.683250 -3.139238 1.001346 -0.574123 0.789849 -0.823452 1.756305 0.897065 0.762777 3.141957 -4.724043 1.240869 0.119833 0.152568 -3.384188 0.116960 -1.020390 -0.800977 -1.237610 2.064343 -0.767429 -0.354214 -1.015487 0.848121 1.219472 -1.883573 -0.125410 0.705550 3.878074 -3.072822 1.169451 -0.787333 -1.493519 -0.196405 1.194566 2.409571 2.916230 3.984118 3.016344 -0.622025 2.342818 -3.644408 0.308884 3.604871 0.989868 -2.576642 3.386297 -2.291869 -1.061280 0.603247 2.829362 2.896311 -0.047183 -2.431312 -2.012036 2.402350 0.967724 3.439517 -0.724654 0.236402 -1.274897 2.601403 1.454364 -1.514204 4.240209 0.701441 -2.818409 2.328164 1.618845 -2.723601 -1.013775 1.967077 -2.408686 -0.076155 -1.577579 0.853652 2.074627 -1.701578 -0.837182 -0.389255 -2.616011 2.974755 -0.899277 -0.675453 1.984316 -2.386838 -2.360055 3.072203 0.168228 -0.601374 -2.602363 -2.972092 -1.790499 -2.800360 1.128865 -0.048837 -1.172218 -1.076412 -2.947777 -0.883152 2.781006 0.904968 1.901205 -4.547503 -0.134022 1.731652 1.944830 1.310049 -0.877980 -0.412438 1.108322 0.128580 0.269665 -0.496238 2.295963 3.703971 -2.448385 1.191115 -0.644245 -0.789119 2.048477 1.464539 -4.061321 4.052242 0.489857 2.905101 0.092346 0.954024 -1.365750 0.530484 0.895866 -0.389319 -0.085805 0.106523 -1.059387 -1.308690 0.896361 -1.877868 -2.713646 -0.690962 1.278551 0.210155 1.211666 -0.560817 -1.259035 -0.789762 -1.139754 1.076631 2.182021 0.213870 -0.630592 2.287511 0.911158 1.035200 0.211181 0.266383 1.193611 1.975831 -3.779227 0.485109 -0.922883 1.425458 -1.516818 -3.805961 1.052017 -1.850648 -1.156014 2.132914 -4.057798 -0.088805 -2.319639 0.290274 -3.063264 0.534313 0.411746 4.018000 1.008970 -1.532809 1.627976 -1.195204 1.481985 -0.571064 0.033524 0.749359 2.274827 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -3.537172 1.850471 0.495352 -2.635681 8.268063 -1.690824 0.744140 3.336319 -3.665415 5.598116 -1.969427 0.130700 -1.555860 -6.804751 0.955160 -1.552623 0.174236 2.890126 0.289508 3.822394 2.635717 -3.442820 0.831569 -0.226386 -1.878326 -5.330287 -0.485698 2.435593 5.824389 -3.559551 0.409392 0.531924 6.730563 -1.540671 5.692003 4.655334 2.254937 3.742364 1.929855 -6.131698 -1.370946 2.868797 -3.369815 -4.146127 0.552018 -0.893327 -5.089418 -2.492746 2.989188 -1.518953 -2.592428 5.349568 -1.744237 -0.070597 -4.179219 4.357911 2.760814 -0.975740 6.374311 0.654608 -0.812631 -1.888598 -5.190195 4.996158 -2.484444 -0.831772 -2.983879 -4.012443 1.416404 0.455143 -1.924700 -2.575489 -1.077574 5.018563 3.605293 -4.927221 1.092340 -2.147506 -3.855754 -6.498772 -4.894014 1.581946 -1.670587 5.068514 0.491946 2.133818 1.713943 2.757728 -1.402787 -7.486023 1.664365 5.132089 -2.930970 -2.164907 -1.926962 5.320062 1.660805 0.189467 -3.096028 -2.729091 1.312413 -2.163303 3.189193 -3.667120 4.073424 -4.162499 -1.454482 -1.633048 2.818687 4.232609 2.733000 1.057986 3.310076 5.246781 -4.436018 -0.689669 -5.368248 1.918985 -2.303263 1.565393 -1.667416 3.378796 2.586171 2.044712 5.477804 -8.186100 1.928350 0.212161 0.387752 -5.418682 0.419119 -1.984888 -1.392765 -2.151938 3.621026 -1.490550 -0.843738 -2.006907 2.216879 2.122102 -3.290387 0.072085 0.994646 5.720650 -6.376054 1.983145 -1.378589 -2.313803 -0.052341 2.365266 4.351866 5.281478 6.855545 5.468797 -1.310022 4.570343 -6.600395 0.737740 5.905276 0.279617 -4.238762 5.877866 -4.544996 -2.029467 1.091962 5.073410 4.880009 0.766102 -4.160446 -3.448518 4.165953 2.084096 6.042012 -0.646452 0.353711 -2.542385 3.821930 0.515340 -2.742317 6.692177 1.334507 -5.370377 4.173125 2.603090 -4.358125 -1.893323 3.032283 -4.993675 -0.383504 -3.014493 1.486287 3.997489 -3.048261 -1.218116 0.006053 -4.342454 4.906486 -1.591534 -1.630213 3.187327 -3.440348 -3.701350 5.567639 0.498147 -1.039270 -4.731127 -5.312524 -3.282172 -4.689903 1.923036 -0.426815 -1.676616 -2.168210 -5.185185 -1.945789 4.701645 1.911516 3.531063 -9.097974 0.307961 2.974230 3.707632 2.543040 -1.791284 -0.738211 1.171593 -0.809224 0.274795 -1.723198 3.817766 6.180874 -4.348856 2.385308 -2.208766 -3.043304 3.184697 2.331604 -7.124337 6.984808 1.688699 5.566738 0.288770 1.670976 -2.706086 1.030832 1.120358 -1.266783 -0.207068 0.612772 -1.790862 -2.293688 1.345937 -3.135887 -5.170342 -1.491540 2.252316 -0.133294 2.162876 -1.076556 -2.718388 -1.474542 -2.709780 1.876676 3.798465 -0.893042 -1.302896 4.120445 1.531372 1.198673 -0.296974 0.472503 2.095449 3.329696 -6.548081 0.683968 -1.404075 3.130331 -2.929593 -6.731844 1.552576 -3.212248 -1.875276 3.563958 -6.653942 -0.375200 -4.091663 0.286507 -5.673938 -0.247910 1.316752 6.995030 1.467254 -2.546451 2.896751 -2.039613 2.463511 -0.926798 0.464483 1.064791 3.253014 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -2.535913 0.803586 0.014386 -1.821436 5.612974 -1.511769 0.121028 2.113233 -1.195669 3.625773 -1.573507 -1.016570 -1.358474 -4.704670 0.713782 -0.860740 0.300843 2.489169 -0.247097 2.174373 2.038665 -1.866381 0.601883 -0.364465 -1.065724 -2.849321 -0.818180 1.598884 3.286417 -2.563331 -0.414184 0.608602 4.964411 -0.749597 4.152573 3.224873 1.651650 3.152235 1.036143 -3.116062 -0.586169 2.222016 -2.254100 -3.355798 0.867084 -0.893248 -3.286209 -2.051544 2.135821 -1.083450 -0.164400 3.609294 -1.033415 -0.088773 -2.838475 2.442471 1.800992 0.315577 4.362163 0.747503 -0.746578 -0.191838 -3.709540 2.971635 -2.106956 0.321340 -1.761984 -3.204622 0.262668 0.397650 0.104624 -2.545980 -1.643097 3.099382 2.248220 -3.012906 1.018334 -1.262208 -1.357110 -4.194332 -4.040460 1.024173 -1.741126 3.421866 0.023137 1.228473 0.379489 1.633177 -0.642767 -4.870331 0.828239 3.381838 -1.950562 -0.667353 -1.223093 2.820551 0.849143 0.065823 -2.259806 -1.953516 0.922031 -1.413129 2.185072 -0.918883 2.557122 -2.379854 -0.234659 -0.558755 1.646926 2.378050 2.458000 0.591786 2.252652 3.322789 -2.589644 -0.500428 -3.816715 1.331832 -1.632939 1.016646 -0.906179 2.424439 1.721713 0.871126 3.494846 -5.418653 1.564315 0.206966 -0.184993 -3.211918 0.599999 -1.275334 -1.276964 -1.549639 2.741041 -0.776781 -0.801774 -1.222747 1.325043 1.132337 -2.214353 0.188857 0.237192 3.150277 -3.635617 1.187869 -1.118887 -2.135597 0.020130 1.530617 2.724402 3.520425 4.670192 3.831691 -1.256345 1.548146 -4.576487 0.679493 4.130527 -0.550156 -3.089260 3.756020 -2.563101 -0.929536 1.058994 3.498121 3.126041 0.430760 -1.856671 -1.682734 1.535620 1.269839 4.101171 -0.132197 0.518102 -1.846478 1.920703 0.597439 -1.733966 5.231263 0.794337 -3.587281 2.060356 1.958237 -2.598497 -1.662300 1.807528 -2.965922 -0.218095 -2.324683 1.411783 2.659419 -2.429188 -1.132712 0.329725 -3.126780 3.313904 -1.081616 -1.459262 2.116451 -3.096612 -2.241383 4.507120 0.278608 -0.723523 -2.939057 -3.690400 -1.233264 -3.426903 1.480326 -0.155952 -0.902347 -1.502392 -3.330773 -0.889971 3.764883 1.052313 2.195301 -4.994921 0.071914 1.981236 1.711192 1.933554 -1.740008 -0.691677 0.826804 -0.515361 0.416286 -0.868362 1.812032 4.451048 -3.162416 1.058077 0.018512 -1.699291 1.788186 1.886551 -4.604464 4.730045 0.759459 3.156421 -0.008605 1.297578 -1.676848 0.556492 0.793855 -0.001488 -0.318419 0.745426 -1.283569 -1.449106 0.872665 -2.295259 -3.261359 -0.692237 1.689667 0.088264 1.432116 -1.003676 -2.013522 -0.698521 -1.315419 1.244975 2.815064 -0.257267 -1.249440 2.519836 1.008807 0.304372 -0.078247 0.483935 1.107651 2.796220 -4.436147 0.631833 -0.703263 1.937529 -1.973027 -4.174143 0.681162 -2.240551 -0.807687 2.624580 -4.296266 -0.751644 -2.749065 0.594438 -3.132637 0.220224 0.628641 4.615719 1.797034 -1.637110 2.103259 -1.116147 1.833702 -0.445877 -0.441588 0.837239 2.614592 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.840696 0.580212 0.244292 -0.657502 2.153840 -0.551455 0.114548 0.913189 -0.237198 1.439966 -0.544190 -0.410427 -0.191843 -1.550578 0.279832 -0.556475 -0.111648 0.906102 0.017020 0.726189 0.572767 -0.475403 0.021760 -0.003138 -0.525164 -1.198355 -0.432784 0.650952 1.154021 -1.095856 0.098679 0.287302 1.819077 -0.351722 1.804240 1.315683 0.667264 0.845608 0.472930 -0.636617 -0.137789 0.551583 -0.862469 -0.948702 0.025007 -0.125826 -1.311073 -0.599221 0.579352 -0.338053 0.103645 1.267063 -0.367649 0.166528 -0.802906 1.040624 0.194094 0.078083 1.473259 0.284430 -0.516250 0.101087 -1.503300 1.532801 -0.623497 0.152964 -0.846601 -1.307043 0.174530 0.194355 0.011191 -0.994062 -0.434248 1.373452 0.764281 -1.146847 0.325706 -0.552471 -0.679557 -1.366799 -1.238579 0.680512 -0.330369 1.148971 0.198211 0.469373 -0.034139 0.696331 -0.492760 -1.924929 0.349362 1.486722 -0.914006 -0.329080 -0.604145 0.884849 0.480624 0.205729 -0.469568 -0.843903 0.455061 -0.540553 0.696577 -0.358383 0.983063 -0.987071 -0.272362 -0.121386 0.482515 0.990445 0.711718 0.406055 1.066832 1.404144 -0.937613 -0.307100 -1.291933 0.717508 -0.760686 0.305991 -0.382557 0.787645 0.499841 0.686725 1.323744 -2.009197 0.385509 -0.001277 -0.078000 -1.278328 0.015623 -0.596719 -0.497020 -0.600015 0.814789 -0.106180 -0.229603 -0.501089 0.347132 0.442726 -0.546933 -0.309349 0.258529 1.109482 -1.323310 0.394263 -0.253573 -0.494835 -0.265061 0.812299 1.329283 1.374722 1.759125 1.286502 -0.197732 0.337695 -1.801075 0.028559 1.343950 -0.245320 -1.054382 1.669917 -1.186772 -0.564761 0.272676 1.467232 0.913534 0.166705 -0.916194 -0.786692 0.594011 0.532182 1.563139 -0.104759 -0.096188 -0.465812 0.763181 0.010762 -1.047554 1.952860 0.396259 -1.322868 0.518756 0.644133 -0.904214 -0.721189 0.999676 -1.465621 -0.152684 -0.696592 0.299405 0.931328 -0.696623 -0.197910 0.410170 -1.119921 1.287049 -0.383054 -0.582414 0.661793 -1.017465 -1.119589 1.774212 0.157539 -0.189671 -0.988733 -1.270673 -0.277972 -1.071953 0.381173 0.176202 -0.281509 -0.479625 -1.193227 -0.205837 1.279510 0.274613 1.050079 -1.652481 -0.164242 0.743773 0.367862 0.646188 -0.697933 -0.146770 0.022517 -0.132034 -0.005649 -0.422466 0.838820 1.814629 -0.896456 0.585644 0.152014 -0.878834 0.452286 0.556900 -1.839584 1.795324 0.289190 0.808462 0.219702 0.371130 -0.729593 0.042735 0.255264 -0.116737 -0.172490 0.226568 -0.338831 -0.447865 0.098791 -1.006883 -1.114217 -0.333781 0.628626 -0.224883 0.466544 -0.362877 -0.842224 -0.357521 -0.731390 0.484351 0.907858 -0.075021 -0.337417 1.205618 0.316671 0.068346 -0.122617 0.056384 0.482242 0.927065 -1.606777 0.104160 -0.108259 0.867557 -0.986101 -1.597846 0.169018 -1.041031 -0.383303 0.277642 -1.564009 -0.448718 -1.013756 -0.003234 -1.340844 -0.146870 0.643849 1.947317 0.633577 -0.860458 0.574984 -0.554686 0.690959 -0.011482 -0.066819 0.347110 0.876334 +PE-benchmarks/m-coloring-problem.cpp__main = -1.039642 0.174710 -0.181499 -0.617445 2.082562 -0.573248 -0.084639 1.137465 -0.042717 1.256092 -0.759821 -0.427303 -0.603573 -1.551068 0.250988 -0.034894 0.212122 1.077606 -0.388673 0.389774 0.926410 -0.309012 0.226859 -0.323460 -0.308625 -0.825252 -0.306211 0.429795 0.763949 -0.531525 -0.456460 0.322262 1.824705 -0.118134 1.457388 1.116200 0.825982 1.449163 0.263417 -0.317552 -0.065884 0.967098 -0.758628 -1.547897 0.634702 -0.630671 -0.999260 -0.763861 0.823793 -0.774248 0.786321 1.208264 -0.213212 -0.041063 -0.833805 0.670863 0.645900 0.282537 1.594890 0.467970 -0.673676 -0.029078 -1.277451 1.151211 -0.909489 0.623766 -0.286071 -1.459923 -0.342514 0.254143 0.542020 -1.121780 -0.858849 0.834431 0.495393 -0.926869 0.574109 -0.304487 0.253227 -1.220254 -1.590364 0.256793 -0.743530 1.192944 -0.204990 0.252946 -0.355944 0.354096 -0.010318 -1.596211 0.044325 1.183504 -0.801608 0.379711 -0.700172 0.482199 0.089380 0.055626 -0.788411 -0.666383 0.363886 -0.168187 0.730104 0.016411 0.497022 -0.684913 0.447452 0.052223 0.439787 0.639610 0.820897 0.202633 0.611592 1.066059 -0.537783 0.106868 -1.523832 0.587847 -0.438869 0.425672 -0.254828 0.743975 0.745921 0.018935 1.135244 -1.776396 0.804343 0.114792 -0.292264 -1.007938 0.447369 -0.469451 -0.655502 -0.583196 1.173666 -0.158706 -0.438594 -0.426729 0.508681 0.156481 -1.084923 -0.230612 -0.254857 0.741852 -1.183918 0.269847 -0.552514 -0.927714 -0.027781 0.539225 0.734914 1.131188 1.611692 1.368825 -0.491250 0.131123 -1.655633 0.366363 1.620346 0.061229 -1.272186 1.077038 -0.808257 -0.017803 0.659542 1.004968 0.933372 0.507707 -0.276456 -0.283160 0.154309 0.316593 1.564170 0.394147 0.536201 -0.952092 0.323506 -0.038456 -0.459975 2.133948 0.532554 -1.531330 0.497531 0.739131 -0.662816 -0.566209 0.435864 -0.825376 -0.180968 -0.909038 0.597236 0.990278 -1.168191 -0.692879 0.332574 -1.253577 1.278290 -0.315474 -0.308881 0.693277 -1.579923 -0.326087 1.818298 0.236771 -0.352342 -0.879370 -1.222949 -0.465081 -1.408862 0.576895 0.145891 -0.256750 -0.690344 -1.176077 -0.242426 1.523139 0.193089 0.550588 -1.442951 -0.047925 0.729328 0.043860 0.750868 -1.101242 -0.414443 0.046966 -0.154634 0.537747 -0.307239 0.333559 1.666343 -1.198805 0.450267 0.755054 -0.261118 0.323984 0.902927 -1.378909 1.601157 0.028486 0.889683 -0.067549 0.645842 -0.681266 0.141803 0.109623 0.368206 -0.201652 0.572604 -0.600831 -0.419790 0.347834 -1.082547 -0.884852 0.031171 0.639155 0.291411 0.407564 -0.407051 -0.784103 -0.235907 -0.517070 0.305991 1.185533 -0.150108 -0.835796 0.640747 0.193233 -0.417375 -0.239634 0.340575 0.316458 1.283875 -1.520323 0.288005 -0.023875 0.341318 -1.010287 -1.260864 -0.012352 -0.724349 -0.442528 0.986905 -1.532075 -0.436785 -0.900729 0.495695 -1.152378 0.035579 -0.056853 1.558278 0.768988 -0.327821 0.995805 -0.146838 0.845789 0.004105 -0.301731 0.284362 1.158523 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -16.550174 30.516230 14.775901 -10.935828 33.155334 7.163179 -1.568956 14.447993 -21.541113 40.138915 -15.512706 -0.070453 -7.113560 -26.542829 -2.601201 -22.847464 -13.420873 2.248532 2.453349 17.340655 11.172739 -22.432430 0.260187 0.512931 -14.251495 -35.635360 -2.095844 7.549201 42.656555 -19.360524 3.067175 -6.321983 27.762190 -7.055449 26.058947 21.329771 10.541862 21.378080 2.617418 -9.089913 -20.034205 14.399472 -23.399348 -5.850742 -1.584794 -11.373685 -19.278349 -6.142049 9.889194 2.804830 -3.463335 26.505337 -10.683143 2.181743 -19.276534 30.930790 1.681228 1.378552 43.227459 -0.675483 2.552904 -18.827222 -40.703449 26.795416 -7.614645 1.199414 -13.004576 -8.068686 15.244010 -12.467727 -10.397123 -13.967065 2.655424 42.866910 15.504524 -29.327424 -1.111991 -20.437751 -65.916444 -28.791806 -21.909495 9.579357 8.628356 21.815056 6.991520 11.948037 4.692867 28.419784 -16.547995 -52.153607 12.447411 36.257247 -13.703561 -13.502623 -21.324489 35.389787 -0.419645 12.220457 -16.361008 2.740075 10.175109 1.420913 13.276290 -56.948437 13.725480 -49.571766 8.372486 -9.499694 2.845023 -0.358256 18.703306 -0.262297 26.038296 45.837369 -35.617474 -2.046757 -30.062796 -0.384849 7.610209 9.170134 -6.409621 19.609019 -16.107818 12.192561 36.222699 -51.522253 2.115055 -5.649946 -11.655478 -47.487796 -7.102651 -21.004970 -6.550416 -8.986128 9.642746 -1.109277 -3.420028 -19.105116 6.227921 6.673255 -17.507912 -15.724577 25.298697 46.649616 -29.308220 6.435564 -4.949023 -4.291797 -11.147444 21.600742 31.504295 25.122305 43.618545 23.026001 9.360065 20.221143 -26.499738 -7.983988 21.735906 17.899607 -27.884953 36.963257 -28.518897 -11.450252 -1.089797 24.740437 23.708600 13.081706 -38.610941 -38.313563 25.905513 10.473339 33.169630 -1.006980 0.995755 15.364960 41.132331 -8.741674 -35.019788 24.000400 20.432429 -15.540888 6.239707 -0.364132 -19.328216 -7.545458 32.213768 -28.425154 10.054895 -5.055183 -6.423703 12.984106 -4.385695 0.748547 -0.148477 -24.681525 43.367841 -5.754292 14.080654 17.477775 -19.655693 -37.414548 12.555734 -9.463718 -13.498946 -25.442113 -18.351166 -37.725089 -12.970823 10.227474 4.189253 -11.941572 -21.790672 -31.516134 1.185717 16.284223 10.745013 22.006778 -36.450131 -24.097912 12.205592 11.830203 28.722788 3.629539 -2.054669 -5.044854 3.521703 13.894227 -4.622679 40.855999 52.108599 -11.392618 26.138915 -25.230464 -10.975012 7.404817 16.941179 -43.168316 31.874231 8.069349 8.957556 -3.597985 7.218944 -11.581196 3.964082 13.495322 -5.465282 14.089170 -1.357713 4.203916 -9.425565 -14.363362 -34.774332 -9.096822 -10.900872 -0.716132 -14.408747 11.188249 3.861950 -11.318079 -13.970265 -27.795931 1.430181 18.556880 3.239658 6.313974 22.733779 -9.680179 15.852883 23.868868 0.964926 7.350347 11.368463 -29.438163 -11.972060 -10.220594 3.605259 -15.175764 -38.443553 -11.330649 -17.481388 -21.742836 15.597388 -31.476405 9.430123 -21.933346 -10.615323 -38.750651 -10.926670 10.054180 41.945558 15.726050 -18.641343 8.088948 -13.016113 22.772520 1.511588 -0.333812 11.605202 18.274373 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -4.335362 6.372661 3.053639 -2.914052 8.380340 1.230281 -0.589628 3.949594 -3.674112 9.064468 -4.251807 -0.790068 -2.017457 -6.251678 -0.472910 -4.835360 -2.819899 1.447007 -0.376028 3.485692 3.184691 -4.230829 0.272865 -0.493272 -3.135888 -7.280545 -1.109903 1.695618 8.301050 -3.856648 0.462621 -1.127511 6.994022 -1.343830 6.264281 5.137576 2.704069 6.030504 0.115200 -0.141856 -3.743476 3.854540 -5.324017 -2.661291 0.546258 -3.256148 -4.571540 -1.971814 2.582000 -0.795024 1.067669 6.219469 -2.064589 0.243682 -4.153447 6.637830 0.805506 0.814783 10.002217 0.509702 -0.725903 -3.045235 -9.507162 6.165791 -2.387036 1.954511 -2.329618 -3.318989 2.123031 -2.213587 -0.584804 -4.100544 -0.828959 8.969622 3.045786 -6.432857 0.450829 -4.449488 -12.760834 -6.310729 -5.623062 2.146522 1.443618 5.118318 0.968316 2.349929 0.191228 5.834104 -3.205067 -11.592886 2.040442 8.333964 -3.430904 -1.697764 -5.490124 6.624814 -0.458848 2.601464 -4.032517 0.310067 2.461392 0.803609 3.124802 -10.911060 2.238873 -10.526382 2.803736 -1.044324 0.473893 -0.250125 4.219223 0.300559 5.600451 9.954959 -7.372986 0.434905 -7.299550 0.388849 1.286918 2.285264 -1.397957 4.311025 -2.832337 2.222184 8.045506 -11.346529 1.460584 -1.146488 -3.380412 -10.249690 -0.820517 -4.663452 -2.215039 -2.222220 2.841931 0.025419 -1.171331 -4.142737 1.455713 0.943465 -4.270182 -3.828689 4.666598 9.310496 -6.230323 1.251271 -1.507920 -1.640722 -2.420834 5.011925 6.801849 5.621243 10.176430 5.515735 1.724346 2.870742 -6.512585 -1.290591 5.839664 4.088790 -6.857847 8.001527 -5.921365 -1.843593 0.563868 5.370769 5.111249 3.669804 -7.638036 -7.812844 4.365151 1.948217 8.086992 1.000983 0.902270 2.020459 8.271443 -2.307315 -7.260978 6.877401 5.297773 -4.356577 0.833334 0.533901 -4.091414 -2.328186 6.802963 -5.847510 1.620180 -1.370392 -0.938812 3.167576 -1.878854 -1.031908 0.509846 -6.241711 10.037704 -1.345787 2.954476 3.862705 -5.884476 -8.092650 3.959074 -1.603364 -3.322061 -5.422760 -4.256970 -7.618602 -3.954198 2.640011 1.578931 -2.476851 -5.294710 -7.171265 0.566720 4.399347 1.784586 4.597399 -7.317353 -5.508966 3.003107 1.148815 6.749756 -0.786993 -0.897870 -1.629943 0.686449 3.827693 -0.959113 8.064242 12.201107 -3.118655 5.837372 -3.117071 -2.107912 0.997212 4.634755 -9.331752 7.669068 1.233953 1.934358 -1.005115 2.197478 -2.792950 0.768770 2.787099 -0.385734 2.743180 0.632648 0.295339 -2.059707 -2.936396 -8.458114 -1.791467 -1.597684 0.252332 -2.618548 2.431595 0.771161 -3.201546 -3.026412 -5.764193 0.149555 4.904092 0.607079 0.052338 4.695145 -2.075874 2.203697 4.431979 0.597573 1.641501 3.663511 -7.046955 -1.988334 -1.802630 0.241891 -4.488441 -8.083505 -2.759975 -4.307627 -5.148439 3.804731 -7.149484 1.364387 -5.096582 -1.449155 -8.126187 -2.626301 1.857114 9.584961 4.250593 -3.984194 2.586044 -2.518988 5.826560 0.666129 -0.755486 2.571512 4.908524 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -2.877751 1.645610 0.131143 -2.310712 8.182526 -2.328682 1.214588 4.747358 -2.928585 4.524025 -2.028428 0.938536 -0.314937 -4.818156 0.926918 -0.591731 0.018477 3.561066 -0.483286 2.513467 1.952252 -0.844231 0.148239 -0.266095 -2.063657 -3.006320 -0.682356 2.140231 3.321453 -2.879017 -0.473438 1.095666 5.997957 -1.641981 5.474598 4.062226 2.553257 3.052965 1.638477 -3.386727 0.402500 1.556683 -2.324866 -3.433397 0.166221 -0.720527 -4.753169 -1.971919 2.006087 -2.264824 0.985315 3.764986 -0.598275 0.291668 -2.419272 4.107511 1.486974 -1.363770 4.872849 1.126205 -3.071330 -0.499954 -4.216000 5.948227 -1.678958 0.751231 -2.496422 -4.643746 0.137471 1.534970 1.247796 -4.467413 -1.889614 3.591010 1.920089 -3.649507 1.403622 -1.444523 -0.137515 -5.223349 -3.630321 1.856722 -1.848333 3.501348 0.161783 1.425738 -1.458991 1.735162 -1.350054 -5.814620 0.394683 4.946142 -3.209805 -0.403327 -4.000404 2.318234 1.310440 0.162090 -2.295476 -3.688103 1.507603 -1.118189 2.099215 -2.553206 3.299659 -2.487408 -1.272186 -0.041161 1.822724 3.969274 0.853666 1.936992 3.277733 4.029987 -1.828088 -0.119574 -5.084507 2.397334 -2.604318 1.092307 -1.636676 2.169840 2.690434 2.303532 4.283362 -6.324279 2.149020 -0.204960 -0.426617 -4.274379 0.670007 -1.069095 -1.653110 -1.930683 2.856060 -0.435912 -0.760995 -1.364992 1.774536 1.327398 -2.793187 -1.914734 0.623332 3.453409 -5.387268 1.196570 -0.922677 -1.286819 -0.583702 2.580512 4.085679 3.924703 5.602261 3.925720 -0.234903 2.250588 -6.256204 0.504662 4.557063 0.960575 -3.496463 5.153690 -3.959326 -1.503989 1.282800 4.240753 2.405622 0.839872 -3.252353 -2.826830 2.887043 1.562791 5.165292 0.216129 -0.111153 -2.666884 1.830016 -1.174480 -2.334323 6.516916 1.906847 -5.060051 1.976966 2.326024 -0.985248 -2.167058 2.893662 -4.905461 -1.857701 -1.608913 1.131180 3.101553 -2.424513 -1.263468 1.376458 -3.328513 4.030836 -1.394491 -2.978033 1.172896 -3.381002 -1.837606 5.769914 0.773878 -0.680646 -2.497049 -3.967331 -1.441727 -4.155221 0.894144 0.973537 -0.614873 -2.026459 -3.869878 -1.174468 4.220776 0.319664 2.558067 -6.384580 -0.370629 2.719878 1.105083 1.809114 -4.175684 -0.343120 -0.540273 -0.133554 0.199190 -2.051308 2.590558 5.593757 -2.956941 2.171553 1.320610 -2.300542 1.259915 2.301392 -5.604425 5.730447 1.238092 4.110790 0.801792 1.124715 -2.443917 0.130348 -0.064369 0.939896 -1.062221 1.254309 -1.722743 -1.424094 0.279554 -2.904382 -3.798613 -0.456091 2.607735 -0.951398 1.310923 -1.314821 -2.189508 -1.780960 -3.739806 1.165213 2.761418 -1.881634 -1.823370 3.774858 1.163969 -0.963073 0.551628 0.165865 2.358006 3.154465 -4.969494 0.877243 -0.189445 2.572699 -4.212602 -5.625842 0.803986 -3.168126 -1.986121 0.966345 -5.030673 -2.559195 -2.772855 1.015302 -5.396726 -1.106276 2.111044 6.192139 1.271095 -1.846565 2.356085 -1.642189 2.424167 -0.288886 0.634253 0.622322 2.786217 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -1.183414 0.325578 -0.327213 -0.746909 2.799528 -0.810109 0.125109 1.799251 -0.453960 1.533752 -0.886375 0.010787 -0.401673 -1.685683 0.310223 0.181213 0.219720 1.403370 -0.460978 0.476224 0.959402 -0.108997 0.173070 -0.305002 -0.546997 -0.853132 -0.272338 0.589643 0.809220 -0.706141 -0.582844 0.461844 2.184673 -0.318563 1.834141 1.356442 1.076607 1.521425 0.493286 -0.503791 0.157421 0.869695 -0.811960 -1.671500 0.545214 -0.630042 -1.382208 -0.795688 0.865123 -1.047731 1.185329 1.321331 -0.139548 0.034360 -0.836592 1.040206 0.649568 -0.118280 1.832594 0.561953 -1.237377 -0.113339 -1.395359 1.920557 -0.891281 0.711611 -0.435695 -1.870675 -0.396331 0.545123 0.908848 -1.700013 -1.036383 0.982655 0.428347 -1.137631 0.689951 -0.338870 0.687030 -1.605150 -1.646883 0.447186 -0.887010 1.285324 -0.179387 0.327473 -0.850644 0.389107 -0.155242 -1.905526 -0.018077 1.550738 -1.132022 0.533332 -1.331490 0.418646 0.159734 0.044169 -0.885272 -1.107692 0.493552 -0.145199 0.768870 -0.283794 0.785392 -0.708234 0.245080 0.132713 0.538973 1.026963 0.618878 0.493041 0.893100 1.277580 -0.340654 0.105999 -1.917879 0.857649 -0.626889 0.444670 -0.438997 0.743924 1.044950 0.280540 1.398432 -2.113199 0.986058 0.030082 -0.352582 -1.309311 0.486892 -0.422553 -0.758493 -0.695154 1.298445 -0.146694 -0.450413 -0.479320 0.652520 0.219451 -1.396761 -0.680316 -0.208585 0.897653 -1.664182 0.313324 -0.548618 -0.834584 -0.127912 0.784851 1.071750 1.314110 1.918298 1.486875 -0.332217 0.330338 -2.151119 0.378852 1.824709 0.460224 -1.458681 1.454106 -1.181869 -0.145041 0.767787 1.257722 0.855748 0.528000 -0.555568 -0.507788 0.528348 0.439716 1.896706 0.407148 0.474117 -1.170501 0.281799 -0.315967 -0.568396 2.595346 0.717926 -1.967459 0.565666 0.891950 -0.245797 -0.650388 0.692241 -1.313557 -0.600035 -0.829614 0.607816 1.168982 -1.272922 -0.752835 0.574282 -1.368700 1.512199 -0.402806 -0.737567 0.564988 -1.780075 -0.107175 2.226898 0.369388 -0.334833 -0.824545 -1.400153 -0.497231 -1.675672 0.477208 0.393230 -0.201856 -0.801207 -1.379000 -0.360508 1.753747 0.091763 0.658652 -1.902726 -0.088565 0.957341 -0.073376 0.720153 -1.744174 -0.353956 -0.174112 -0.053881 0.498270 -0.605943 0.512003 1.964446 -1.271056 0.660214 1.145619 -0.277810 0.272393 1.016193 -1.682801 1.924604 0.144539 1.210937 0.120860 0.651334 -0.881785 0.089318 -0.098449 0.696037 -0.404997 0.705021 -0.768323 -0.469992 0.289765 -1.215731 -1.133628 0.053824 0.901866 0.101122 0.411483 -0.601547 -0.802786 -0.493385 -1.069272 0.351104 1.236717 -0.537147 -1.003997 0.968200 0.266644 -0.711778 -0.019916 0.304910 0.624691 1.459934 -1.748024 0.367529 0.075188 0.560921 -1.542216 -1.672220 0.039393 -0.906617 -0.677067 0.741712 -1.850700 -0.904913 -0.956119 0.632743 -1.722646 -0.140305 0.223919 2.010166 0.685319 -0.386104 1.131895 -0.266518 0.973197 0.005599 -0.076168 0.246031 1.276127 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -4.663009 2.150273 0.424092 -4.827171 10.110355 -1.529961 -0.982866 4.896977 -1.404219 7.721970 -3.445541 -1.270230 -2.490230 -9.834076 0.544861 -3.345874 -0.881395 3.772847 -0.741993 4.703640 3.964046 -3.333328 1.533835 -0.846383 -2.990880 -6.363426 -1.273129 2.954848 4.828310 -3.924502 1.568131 0.057219 9.236188 -0.607242 7.388109 5.932190 2.579388 6.705897 1.729487 -1.316179 -1.772281 3.996862 -4.433261 -5.737452 1.348792 -1.911886 -6.064786 -3.938577 3.575653 -3.155628 0.687702 7.188689 -1.632202 -0.579304 -5.765422 4.034537 1.601201 -0.056361 8.389774 1.310406 -2.437176 -1.077440 -8.167906 5.634910 -4.250020 1.332822 -0.892220 -4.142885 1.399362 0.427618 0.471153 -3.824344 -2.889048 5.795730 4.329327 -6.432926 1.493819 -3.677508 -5.541096 -5.798054 -5.803324 2.919563 -1.202682 6.283045 0.560941 3.011549 1.744039 4.182573 -2.124339 -9.725978 1.816203 6.829295 -3.506735 -2.207424 -4.806893 6.959410 0.172882 0.313487 -3.989028 -1.465448 2.510512 -1.142305 4.250090 -3.468692 0.990494 -7.162549 1.599354 -0.124219 1.414932 2.180340 4.473749 0.931252 4.241009 7.163584 -5.031642 1.637565 -8.113568 1.893309 -1.562020 2.328699 -2.629878 4.164814 2.144643 2.318088 6.690530 -9.988641 3.508856 0.516532 -1.784236 -6.998832 0.743325 -2.493886 -2.356681 -2.265729 4.649120 -1.115229 -1.201619 -2.515193 2.144444 1.837463 -4.545197 -1.710655 1.740060 5.903950 -5.197019 2.266342 -1.713757 -3.084029 -0.644678 3.670548 5.486628 5.982226 9.916257 6.162856 -0.827116 1.592374 -7.892480 0.292128 8.111480 0.915624 -6.172637 7.564626 -4.729326 -1.867403 0.455823 6.401531 6.078218 1.932957 -5.253197 -4.552540 2.984054 1.988763 8.298052 0.855598 0.968084 -2.265497 4.675134 0.593419 -2.469986 9.004990 3.785148 -5.721843 2.226672 3.337016 -5.058989 -3.621400 4.516896 -4.208904 0.286007 -2.879778 2.019508 4.371513 -3.642105 -2.842547 -0.464784 -6.241013 6.990285 -2.208841 -0.279025 3.361056 -6.259974 -5.597024 7.112432 -0.584955 -2.496734 -5.294398 -6.365724 -3.622017 -6.521691 3.144524 1.564365 -1.730993 -2.645030 -6.348245 -0.869448 5.798629 1.483140 3.990115 -7.450917 -1.877289 4.070338 1.950131 4.249203 -3.403369 -0.730052 0.658598 0.064602 2.620659 -1.046815 4.404640 9.138731 -4.986211 4.296978 0.326965 -1.480977 2.270834 4.428185 -8.806785 9.863215 0.890823 4.257927 -0.449734 2.313757 -2.172973 1.237853 1.663139 -0.819033 1.250381 0.951591 -2.096616 -3.027860 0.567028 -5.195578 -4.111952 -1.028635 2.941197 -1.066367 2.893150 -0.210513 -3.611961 -2.327535 -3.489038 2.467063 5.549862 -0.128634 -1.993268 4.877947 2.216971 0.853543 1.043973 0.675276 2.763327 5.495107 -8.595205 1.197496 -1.558532 2.437635 -4.567482 -7.404114 1.075109 -3.998653 -2.718507 3.675284 -7.767589 -1.292876 -5.455893 1.212635 -5.475715 -0.445505 1.207911 8.611393 4.018322 -3.376363 2.992737 -2.534640 3.994430 -0.164977 -1.233028 2.869215 5.426774 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = -0.438321 0.105918 0.035199 -0.257460 0.812464 -0.543596 -0.027009 0.678208 0.310197 0.424935 -0.417033 -0.037937 -0.231980 -0.515381 0.132117 -0.058995 0.230161 0.698919 -0.224459 -0.030510 0.384436 0.205954 0.029403 -0.239729 -0.125261 -0.461455 -0.063037 0.136515 -0.173888 -0.020754 -0.146171 0.387988 0.885782 0.031872 0.654519 0.556966 0.385386 0.746164 0.280824 0.374555 0.275000 0.304063 -0.142259 -0.773004 0.291007 -0.179733 -0.288976 -0.364848 0.298169 -0.562391 0.738169 0.360108 0.057875 0.009622 -0.353238 0.185813 0.174877 0.192896 0.537822 0.304288 -0.558513 0.175918 -0.365654 0.627202 -0.560903 0.298486 0.000841 -0.712345 -0.240515 0.386717 0.512862 -0.465467 -0.434297 0.011543 -0.025292 -0.309013 0.261836 0.064768 0.395089 -0.182301 -0.585047 0.158257 -0.221946 0.365728 -0.119512 0.030005 -0.542442 -0.014503 0.171051 -0.392248 -0.165692 0.470047 -0.362257 0.372032 -0.356900 -0.006324 0.220646 -0.167990 -0.026515 -0.434558 0.181380 -0.142833 0.239924 0.339608 -0.152072 -0.062436 0.346239 0.206177 -0.011439 0.317563 -0.015935 0.306182 0.175895 0.157651 0.107121 0.204506 -0.895420 0.450281 -0.166567 -0.020676 -0.020782 0.093930 0.278692 0.048956 0.291159 -0.546426 0.504677 0.101258 -0.104156 -0.195328 0.298404 0.040677 -0.272594 -0.329756 0.580867 0.082961 -0.157361 -0.011012 0.172906 -0.053997 -0.263005 -0.417170 -0.321646 0.153737 -0.309787 0.085578 -0.246261 -0.365104 -0.041025 0.102452 0.097570 0.325374 0.554915 0.476329 -0.196854 -0.261340 -0.750696 0.072294 0.581376 0.113359 -0.443383 0.370999 -0.142182 -0.018937 0.331301 0.370638 0.120283 0.270816 -0.009788 -0.146404 -0.293453 -0.056749 0.580466 0.342293 0.166011 -0.539101 -0.025997 -0.120705 -0.051737 0.988069 0.305536 -0.679757 -0.033177 0.505976 -0.217889 -0.468153 0.105188 -0.270188 -0.201399 -0.310041 0.293735 0.380783 -0.603210 -0.324715 0.266602 -0.471779 0.346588 -0.084950 -0.203359 0.099438 -0.764789 -0.038536 0.911171 0.169603 -0.006486 -0.146986 -0.515075 -0.012666 -0.745915 0.126932 0.219300 -0.017012 -0.167884 -0.343554 -0.059063 0.604072 -0.166573 0.107916 -0.288512 -0.108272 0.373347 -0.190279 0.043633 -0.727941 -0.193548 0.014495 0.008992 0.223251 -0.092682 0.024367 0.608621 -0.398655 0.208151 0.790348 -0.111011 0.050500 0.469334 -0.472853 0.587356 -0.185728 0.097795 0.184778 0.220786 -0.349757 -0.094050 -0.091674 0.228487 -0.343920 0.300746 -0.429722 -0.093015 0.141342 -0.417117 -0.193385 0.186618 0.444712 0.191518 0.037745 -0.056477 -0.298243 -0.061153 -0.348896 0.134601 0.435727 -0.034656 -0.511778 0.265680 0.251342 -0.598580 -0.330440 0.140671 0.169661 0.569637 -0.540810 0.308739 0.164092 0.045554 -0.619034 -0.457684 0.116772 -0.397736 -0.311738 0.028239 -0.649226 -0.489691 -0.211529 0.482881 -0.503852 -0.026642 0.001473 0.544542 0.257679 0.016530 0.439555 -0.029627 0.252031 0.099227 -0.134764 -0.011531 0.632828 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.461667 0.413537 0.085693 -0.387725 0.718485 -0.262720 -0.076513 0.515424 0.232275 0.529998 -0.538884 -0.058136 -0.106585 -0.555410 0.034078 -0.094254 -0.000651 0.602231 -0.120441 0.185995 0.375377 -0.079944 0.079598 -0.304430 -0.174950 -0.481905 -0.100861 0.117470 -0.029088 -0.014612 0.016043 0.124628 0.735337 0.083985 0.650743 0.555529 0.171140 0.737311 0.297348 0.417103 0.095443 0.341268 -0.241651 -0.782934 0.302439 -0.274503 -0.252995 -0.509804 0.226269 -0.628910 0.747453 0.412031 -0.013902 -0.113115 -0.410828 0.139535 0.316048 0.239971 0.643478 0.218858 -0.400385 0.209682 -0.446080 0.394657 -0.488278 0.296009 0.150046 -0.629916 -0.061361 0.252807 0.505701 -0.398102 -0.387159 0.199704 -0.003941 -0.396763 0.208420 -0.191129 -0.088620 -0.264923 -0.422185 0.172653 -0.133241 0.415418 -0.064428 0.090628 -0.517596 0.146624 0.083521 -0.529623 -0.149576 0.490537 -0.225262 0.257855 -0.155589 0.295234 0.247165 -0.095939 -0.100030 -0.160094 0.213243 0.024995 0.246954 0.267831 -0.198965 -0.338190 0.420442 0.270684 -0.116155 0.203117 0.131898 0.357714 0.313020 0.340529 -0.162326 0.280207 -0.804885 0.268862 -0.086633 0.068784 0.007610 0.144173 0.112972 0.042996 0.362500 -0.564735 0.528420 0.147110 -0.141862 -0.384025 0.262323 -0.113590 -0.246788 -0.259274 0.385886 0.099575 -0.126862 -0.107292 0.005103 -0.125301 -0.310898 -0.498933 -0.113240 0.427766 -0.295310 0.117136 -0.193826 -0.297628 -0.054953 0.170012 0.199790 0.274373 0.666735 0.476474 -0.068829 -0.267540 -0.578262 0.029042 0.675108 0.259265 -0.502348 0.408939 -0.077693 -0.088278 0.299540 0.306110 0.215777 0.311725 -0.300779 -0.406879 -0.202019 -0.161442 0.593476 0.378295 0.195480 -0.460927 0.398305 0.058521 -0.194953 0.991874 0.279728 -0.547108 -0.086401 0.414183 -0.405819 -0.359841 0.188133 -0.147761 -0.089932 -0.162086 0.135738 0.234962 -0.467014 -0.533445 0.025673 -0.576493 0.570490 -0.050719 0.029307 0.066648 -0.669012 -0.075354 0.818761 0.186829 -0.223676 -0.164619 -0.344817 -0.111303 -0.661098 0.160959 0.283004 -0.159978 -0.265567 -0.405744 0.041611 0.438502 -0.194112 0.057070 -0.218186 -0.320388 0.341779 -0.201967 0.106200 -0.735244 -0.184041 -0.058308 0.098894 0.306700 0.069300 0.315566 0.817624 -0.335846 0.183857 0.775469 0.103706 0.140962 0.572152 -0.510472 0.646905 -0.273179 0.166487 0.111213 0.260654 -0.254820 -0.044438 0.013849 0.118565 -0.098334 0.318968 -0.358179 -0.123819 0.130806 -0.477787 -0.114209 0.210449 0.324014 0.175222 0.069656 0.021429 -0.360746 -0.104575 -0.289320 -0.001743 0.461078 0.048469 -0.550363 0.184507 0.200008 -0.301818 -0.301469 0.130008 0.169125 0.511628 -0.577431 0.345395 0.048330 -0.085766 -0.611786 -0.359799 0.153026 -0.392209 -0.367683 0.142946 -0.666554 -0.292240 -0.316348 0.300004 -0.508676 -0.004780 -0.014438 0.608731 0.338770 -0.113373 0.367679 -0.145528 0.427916 0.167714 -0.138014 -0.012470 0.691622 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.432983 0.287368 -0.034919 -0.421385 0.841203 -0.269571 -0.092306 0.504363 0.239447 0.514778 -0.553027 0.038846 -0.068561 -0.521675 0.047253 0.009894 0.023958 0.542102 -0.207807 0.070734 0.320569 0.007504 0.146306 -0.313832 -0.173949 -0.528010 -0.070620 0.146123 -0.029011 -0.009713 -0.110981 0.097625 0.676231 -0.055272 0.478784 0.453031 0.298974 0.654836 0.236380 0.274976 0.281597 0.265613 -0.175736 -0.706885 0.237703 -0.254790 -0.355117 -0.417724 0.284631 -0.655359 0.635195 0.372911 0.031505 -0.217465 -0.398844 0.288318 0.336275 0.095475 0.599201 0.196435 -0.429726 0.092253 -0.401880 0.562952 -0.536850 0.333226 0.059226 -0.633304 -0.231938 0.417126 0.382173 -0.338613 -0.416369 0.059498 0.040378 -0.381671 0.180803 -0.157592 0.240058 -0.246470 -0.329730 0.187529 -0.179881 0.356552 -0.035451 0.106551 -0.406532 0.090624 0.139343 -0.425283 -0.216460 0.456281 -0.228758 0.241222 -0.196332 0.178535 0.252004 -0.240720 -0.059702 -0.241270 0.144783 0.026411 0.227976 0.136961 -0.053029 -0.296311 0.355892 0.336662 -0.042561 0.202931 -0.029332 0.277098 0.147757 0.229245 -0.035010 0.197022 -0.829187 0.213639 -0.073985 0.050655 -0.088814 0.089707 0.240968 0.107041 0.323753 -0.526782 0.627779 0.100340 -0.169435 -0.272432 0.267703 0.058783 -0.216447 -0.144956 0.346889 0.034157 -0.107086 -0.002164 0.146797 -0.110736 -0.371621 -0.356668 -0.146641 0.310171 -0.326043 0.147381 -0.153138 -0.244913 -0.002820 0.144497 0.179192 0.189383 0.644887 0.429957 -0.061524 -0.104517 -0.582234 0.143932 0.658731 0.192265 -0.447804 0.362860 -0.173951 -0.038744 0.270601 0.279602 0.109073 0.372190 -0.216294 -0.275308 -0.176090 -0.176975 0.554770 0.294784 0.182128 -0.554976 0.233572 -0.058990 0.041295 0.913355 0.353638 -0.636986 0.040223 0.527131 -0.332343 -0.341486 0.137621 -0.156762 -0.151250 -0.197389 0.196212 0.279838 -0.456882 -0.533056 -0.019655 -0.482029 0.503335 -0.051502 -0.145261 0.090767 -0.578177 0.043969 0.744234 0.172788 -0.147907 -0.123888 -0.354722 -0.172016 -0.715800 0.108934 0.299414 -0.214361 -0.190553 -0.368476 -0.028783 0.464711 -0.232629 0.042601 -0.401810 -0.160370 0.351151 -0.048659 0.086050 -0.587223 -0.136186 -0.044772 0.027291 0.209132 -0.095698 0.186040 0.643444 -0.362260 0.265868 0.595523 -0.025978 0.116752 0.547659 -0.401855 0.629096 -0.145536 0.173409 0.136062 0.259381 -0.240501 0.036380 -0.081470 0.000384 -0.146010 0.305844 -0.493052 -0.167643 0.200527 -0.360756 -0.220024 0.268244 0.426975 0.230204 0.030723 -0.030260 -0.254049 -0.115226 -0.293444 0.032616 0.375931 -0.053188 -0.558415 0.145523 0.343596 -0.446025 -0.354845 0.138747 0.207568 0.528763 -0.536581 0.433047 0.089420 -0.011423 -0.698396 -0.340567 0.150280 -0.312262 -0.316367 0.106409 -0.680748 -0.439211 -0.258115 0.398440 -0.471348 -0.044210 0.015781 0.549108 0.262504 -0.033804 0.409045 -0.110167 0.299116 0.109522 -0.117857 0.021892 0.533882 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.870958 0.653301 0.157551 -0.899555 1.506441 -0.540226 -0.013125 0.670795 0.303170 0.930179 -1.039520 -0.095544 -0.346768 -1.307595 0.099248 -0.423322 0.088127 1.087646 -0.284337 0.562085 0.723801 -0.378066 0.316778 -0.621396 -0.340652 -0.958601 -0.127832 0.313694 -0.027506 0.040027 0.291852 0.226010 1.344490 0.144110 0.976944 0.920150 0.203112 1.592761 0.448700 0.426634 0.338815 0.600196 -0.315622 -1.621620 0.649297 -0.473415 -0.700839 -1.057700 0.509301 -1.388357 0.859214 0.860981 0.042181 -0.427490 -1.048940 0.292939 0.981356 0.406249 1.177030 0.423314 -0.634298 0.204444 -0.882219 0.323027 -0.970426 0.382534 0.355413 -1.119482 -0.143038 0.726895 0.624318 -0.613696 -0.880834 0.116929 0.273500 -0.733392 0.358391 -0.316476 -0.536236 -0.499662 -0.650137 0.244399 -0.281183 0.867900 -0.149797 0.257189 -0.504195 0.144633 0.250526 -0.887716 -0.367406 0.927828 -0.255418 0.325111 -0.291733 0.857526 0.477525 -0.476164 -0.512370 -0.326302 0.320957 -0.026362 0.510319 0.337586 -0.737800 -0.767260 0.762952 0.521843 -0.192472 0.457416 0.247259 0.570827 0.260814 0.456905 -0.657518 0.708167 -1.623159 0.371870 -0.161459 0.181077 -0.137415 0.226243 0.234035 0.140225 0.571069 -1.134751 1.276108 0.331696 -0.228459 -0.709617 0.580935 0.093143 -0.369735 -0.374674 0.796788 0.016374 -0.174457 0.011881 0.070277 -0.162314 -0.473382 -0.663548 -0.238137 1.040638 -0.560630 0.344930 -0.351200 -0.657799 0.015662 0.108347 0.318876 0.367593 1.295099 0.879289 -0.240326 -0.027391 -1.087053 0.245351 1.496781 0.550631 -0.916844 0.710685 -0.035592 -0.036041 0.447078 0.476568 0.516781 0.524691 -0.612847 -0.744218 -0.262123 -0.359688 1.053837 0.694202 0.366068 -1.296937 0.781635 0.154124 0.115156 1.793642 0.621237 -1.074728 0.064192 1.018605 -1.146299 -0.727673 0.210891 -0.125002 -0.152023 -0.318131 0.445957 0.464062 -0.896726 -1.178445 -0.294804 -1.016701 0.891109 -0.169702 -0.088306 0.080044 -1.120398 -0.327768 1.466050 0.221307 -0.393139 -0.294508 -0.785226 -0.291568 -1.432613 0.303889 0.483800 -0.447115 -0.464101 -0.700977 -0.058200 0.903689 -0.443140 -0.015063 -0.611858 -0.389228 0.677572 0.035254 0.214146 -1.180880 -0.306601 0.134008 0.160826 0.456389 0.174577 0.445449 1.344851 -0.753548 0.382173 0.956461 0.078911 0.522219 1.155267 -0.840784 1.314217 -0.422948 0.922016 0.102266 0.510630 -0.333487 0.054065 0.055469 -0.082822 -0.238635 0.621178 -0.891090 -0.326909 0.521009 -0.641885 -0.479496 0.527973 0.834468 0.433877 0.149797 0.181533 -0.512460 -0.167780 -0.352330 0.097429 0.803180 0.028928 -1.047029 0.192414 0.715951 -0.502666 -0.671641 0.290027 0.443191 1.001415 -1.098746 0.882552 -0.025226 -0.215561 -1.058174 -0.785921 0.605635 -0.808109 -0.641215 0.467259 -1.366950 -0.517649 -0.558749 0.869069 -0.839187 0.089189 -0.118828 1.038229 0.564202 -0.044717 0.785194 -0.235276 0.644061 0.060433 -0.197212 0.098341 1.293868 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.467154 0.122950 -0.054722 -0.425826 1.041593 -0.424221 -0.157693 0.711805 0.356337 0.577816 -0.488603 -0.002181 -0.158820 -0.619623 0.077471 -0.039744 0.175562 0.646277 -0.283130 0.056731 0.350862 0.099936 0.201067 -0.237428 -0.201418 -0.547682 -0.060360 0.226407 -0.116681 -0.032744 -0.122947 0.239288 0.852648 -0.018780 0.619405 0.493033 0.384460 0.741014 0.292746 0.329497 0.350691 0.211456 -0.134772 -0.800025 0.291225 -0.206746 -0.513636 -0.426839 0.344406 -0.767857 0.660311 0.468628 0.017923 -0.151950 -0.420254 0.295457 0.233125 0.112105 0.642369 0.232544 -0.653947 0.009526 -0.449416 0.606726 -0.577582 0.300176 -0.001918 -0.777255 -0.291202 0.547611 0.372118 -0.410987 -0.447950 0.065997 0.128577 -0.398401 0.229813 -0.057992 0.394097 -0.215932 -0.438121 0.233842 -0.215927 0.366895 -0.015239 0.191346 -0.377083 0.051162 0.092182 -0.531131 -0.085186 0.521625 -0.367130 0.317119 -0.351116 0.141001 0.208075 -0.298775 -0.113588 -0.399480 0.161549 -0.121173 0.276471 0.181353 -0.124843 -0.292258 0.427836 0.318147 0.084545 0.251191 -0.016384 0.257053 0.173494 0.270537 -0.062935 0.290161 -0.946369 0.352998 -0.163970 0.008063 -0.167733 0.111623 0.350368 0.205951 0.376307 -0.659124 0.677666 0.133607 -0.172080 -0.298978 0.280623 0.087018 -0.185096 -0.199154 0.529445 -0.082308 -0.096142 0.005657 0.203287 -0.085034 -0.413130 -0.316653 -0.254052 0.255794 -0.317834 0.222717 -0.168926 -0.336358 0.021593 0.141253 0.242613 0.301627 0.727279 0.457362 -0.168114 -0.132108 -0.755366 0.167774 0.728208 0.139397 -0.502136 0.503665 -0.217433 -0.029087 0.236210 0.395862 0.190591 0.301945 -0.112739 -0.210499 -0.199115 -0.011511 0.620164 0.313442 0.194110 -0.654227 0.042715 -0.144361 0.138102 1.049952 0.391267 -0.770199 0.027159 0.646946 -0.379357 -0.406729 0.153160 -0.265989 -0.183597 -0.285265 0.317376 0.410464 -0.594267 -0.485643 0.135044 -0.521881 0.457504 -0.088288 -0.222260 0.116249 -0.727909 0.033706 0.942768 0.174398 -0.061221 -0.108425 -0.579141 -0.118267 -0.830248 0.070058 0.315428 -0.148869 -0.092666 -0.378930 -0.145018 0.592448 -0.130948 0.149719 -0.496438 -0.037019 0.449528 -0.123043 0.045545 -0.623856 -0.145438 0.013598 -0.071319 0.184300 -0.152315 0.070189 0.563325 -0.415609 0.370067 0.598646 -0.121810 0.156873 0.472702 -0.498549 0.778035 -0.105398 0.263467 0.215507 0.291672 -0.285597 0.077940 -0.137565 0.003655 -0.289307 0.377272 -0.590710 -0.227793 0.278311 -0.338170 -0.393632 0.177724 0.543974 0.206641 0.071778 -0.089934 -0.288209 -0.155833 -0.363882 0.237292 0.372202 -0.119089 -0.529512 0.252167 0.466031 -0.527097 -0.407136 0.192199 0.253498 0.636894 -0.651741 0.442049 0.158424 0.089197 -0.716578 -0.412618 0.185319 -0.394998 -0.271880 0.013775 -0.853335 -0.557226 -0.259374 0.499437 -0.436041 0.044691 0.048899 0.714268 0.292236 -0.073181 0.490161 -0.102383 0.158893 0.062829 -0.087344 0.054772 0.612513 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -2.537717 2.108609 0.326279 -2.140861 5.065163 -1.294581 0.626432 1.594320 -1.924842 4.189020 -1.704337 -0.129461 -0.972943 -4.949439 0.415522 -1.954165 -0.362287 2.107280 0.415133 2.849464 1.833440 -2.742616 0.445196 -0.395449 -1.554608 -4.301351 -0.291293 1.612443 3.474442 -2.673037 1.499334 0.340972 4.659579 -0.718897 3.973570 3.552645 0.914203 3.080982 1.542891 -2.147932 -1.048132 1.884544 -2.244405 -2.824061 0.253242 -0.339316 -3.225400 -1.802894 1.744390 -1.410889 -0.871339 3.758592 -1.138839 -0.141210 -3.278340 2.874215 1.969731 -0.409078 4.484700 0.455209 -0.541191 -0.858338 -3.866970 3.684434 -2.058218 -0.787673 -1.000109 -2.534067 1.599037 0.307288 -1.189518 -1.489918 -1.053782 3.541773 2.360253 -3.791302 0.327867 -1.868290 -5.132027 -3.666614 -2.855456 1.350958 -0.024405 3.485866 0.601606 1.570246 1.151785 2.216385 -1.077004 -5.320092 0.981488 3.912841 -1.809526 -1.429266 -1.618815 4.393311 1.330544 0.013181 -2.022120 -1.218406 1.047089 -1.367386 2.217492 -2.639570 0.870465 -3.644535 -0.448524 -0.921823 0.846386 2.426432 2.257614 1.076296 2.291759 3.802959 -3.523702 -0.168400 -4.018028 1.327652 -0.653917 0.926606 -0.926608 1.891531 0.686138 1.384474 3.833821 -5.650000 1.541690 0.073113 0.041720 -4.404453 0.021285 -1.313240 -0.858706 -1.623259 2.322941 -0.638435 -0.372453 -1.287993 0.940977 1.430422 -1.775589 -1.010981 1.189570 4.677522 -3.623321 1.435276 -0.902719 -1.395807 -0.537454 1.665678 3.068128 3.433724 4.899258 3.574380 -0.211225 2.835515 -4.317197 -0.079834 4.117930 1.541204 -3.088922 4.328962 -2.903314 -1.595512 0.435487 3.416885 3.284165 0.445370 -3.693632 -3.080093 2.869968 0.886967 4.216193 -0.439206 -0.149460 -1.375229 3.621786 1.174860 -2.261117 4.834680 1.548811 -3.321682 2.504872 1.867418 -3.559816 -1.753920 2.733851 -3.100199 -0.056742 -1.505858 0.713634 2.282142 -1.777785 -0.961360 -0.405173 -3.238604 3.723468 -1.048531 -0.423190 2.113906 -2.715578 -3.804371 3.481321 0.074998 -0.943209 -3.169816 -3.402634 -2.595414 -3.313583 1.323553 0.256299 -1.407788 -1.612910 -3.597825 -0.849080 2.960093 0.846014 2.484767 -5.107769 -0.826821 2.145972 2.375264 1.699731 -1.131817 -0.441662 0.857158 0.389632 0.467876 -0.429108 3.204890 4.899754 -2.609532 1.944974 -1.023843 -1.692733 2.251951 2.003791 -5.135667 4.958615 0.581320 2.948852 0.287443 1.020080 -1.779867 0.470120 1.218705 -0.868462 0.088339 0.061437 -1.132329 -1.512796 0.505888 -2.673199 -2.788135 -0.763876 1.491078 -0.085316 1.416065 -0.076003 -1.655320 -1.175895 -2.036840 1.063644 2.637009 0.299559 -0.647524 2.982349 1.008963 1.119195 0.216105 0.222020 1.601135 2.196521 -4.572883 0.621320 -1.148473 1.379467 -2.258241 -4.769459 1.302514 -2.746881 -2.027585 1.869682 -4.750926 0.005864 -2.839106 0.262195 -4.132741 -0.136106 0.891739 4.982135 1.154028 -1.819334 1.870774 -1.707394 2.057004 -0.437786 0.192045 0.943684 2.851944 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -8.812945 8.202255 3.362213 -7.920879 21.637928 -3.468302 1.691548 6.974546 -5.106201 16.053777 -6.825496 -4.590460 -4.718637 -19.474888 1.085145 -10.446902 -3.064962 8.861541 0.023471 9.693767 6.867039 -9.106212 2.049352 -1.227175 -5.161814 -15.547879 -3.233170 5.464439 14.219087 -10.207669 5.146711 -0.522715 18.113796 -2.392644 13.728393 11.411215 3.499766 11.804733 3.351390 -5.253021 -4.337506 7.570748 -8.800657 -10.666527 1.596550 -2.513706 -11.887876 -7.204721 6.338921 -5.646781 -2.316821 13.456885 -4.161801 -0.938275 -10.067240 11.158576 6.373329 2.111407 16.604232 1.633112 -1.262429 -2.072183 -18.385959 11.855011 -6.483135 1.244904 -4.647553 -9.512663 3.428131 -0.693202 -3.546068 -7.154459 -3.022060 14.897948 9.706134 -12.463658 1.453488 -7.689893 -21.207242 -13.434936 -12.876085 4.386001 -1.744701 12.049473 1.530207 5.257138 5.287113 8.697327 -4.431224 -20.655399 3.342349 16.045356 -5.847423 -5.632586 -6.322703 13.384902 2.795832 1.509752 -7.921999 -4.370656 3.690615 -3.080042 7.808496 -11.222588 2.704834 -16.450507 0.458934 -1.193792 2.778807 6.326588 11.024712 2.005446 7.751458 15.877819 -16.396509 1.025154 -15.748221 3.602433 -3.484404 4.803476 -3.509513 8.258077 0.558870 6.541819 13.729935 -23.750527 5.573935 -0.297966 -2.077946 -16.416892 0.147717 -5.908020 -3.745253 -4.879445 7.452784 -1.870918 -2.277117 -5.306482 2.796933 4.276580 -7.249554 -2.995145 5.377350 16.434470 -14.313245 4.410542 -3.225942 -5.526447 -2.330098 7.084064 12.408056 11.832400 18.805426 12.763430 -0.638870 7.755030 -16.224759 0.011438 14.868572 1.545962 -11.482566 15.906792 -9.693493 -4.172071 1.517794 13.427287 11.832909 4.486185 -13.164562 -11.183797 9.392524 3.406186 15.094308 1.399953 -0.101546 -4.667294 13.621046 1.100713 -9.996972 19.632263 7.436087 -11.005405 6.515933 5.018589 -14.803767 -7.218614 9.601355 -10.587526 1.540695 -5.642859 2.103915 7.696385 -5.317742 -4.754618 -0.916502 -11.835693 15.272976 -4.042316 -1.384338 8.008381 -10.136486 -15.832726 14.681072 -0.776623 -4.777602 -11.565368 -13.156880 -9.362795 -10.629023 5.723865 1.254027 -4.968341 -7.232237 -12.671820 -0.964422 12.798302 3.224355 9.423868 -17.034802 -4.898703 6.583659 6.483384 9.369053 -5.693717 -1.646844 0.696322 0.251296 2.931662 0.099292 11.269193 20.576307 -9.092009 8.824849 -3.798137 -7.278285 5.658361 8.325477 -18.712520 17.406777 1.389563 11.738286 -1.232695 3.999442 -5.036472 2.149762 5.413775 -3.511624 2.340397 1.223530 -2.541814 -5.197354 0.330630 -13.101805 -10.177560 -2.416938 4.363216 -1.283329 5.544660 -0.520838 -7.878996 -3.713124 -5.520459 2.657794 9.989921 1.734810 -3.236488 9.273886 1.866116 4.030069 0.640840 0.937436 4.483563 8.010051 -15.766472 0.911327 -3.967654 5.049111 -7.736214 -17.856453 2.196969 -10.594777 -7.677601 7.161237 -16.082296 -0.117002 -10.703211 0.087075 -15.568451 -2.385828 3.207362 18.330069 7.298838 -6.696736 6.314797 -5.341189 8.932988 -0.914455 -1.461612 5.373497 10.237824 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -2.171086 1.450566 0.523883 -1.741498 4.952780 -1.060506 0.216889 1.842566 -0.487533 3.471566 -1.744564 -1.334396 -1.347828 -4.312722 0.338241 -2.023367 -0.370652 2.303297 -0.383473 1.714517 1.830818 -1.591956 0.484744 -0.522098 -0.993955 -3.175180 -0.813889 1.119259 2.669740 -1.966680 0.626443 0.183079 4.301561 -0.368104 3.169508 2.618357 1.113385 3.152494 0.606939 -0.509395 -0.678642 1.981261 -1.903457 -2.922415 0.779943 -0.870903 -2.513420 -1.738629 1.606801 -1.571564 0.418421 2.997339 -0.755697 -0.213721 -2.219258 2.236368 1.466666 0.850207 3.783071 0.668639 -0.673729 -0.184419 -4.055720 2.655351 -1.802381 0.857730 -0.805162 -2.575922 0.177668 0.059161 -0.136868 -1.929225 -1.166746 2.894782 1.898778 -2.596466 0.637746 -1.424839 -3.522955 -2.774982 -3.303326 0.856433 -0.694639 2.751320 0.040509 0.955287 0.626758 1.616103 -0.618304 -4.391973 0.443561 3.489344 -1.459628 -0.562170 -1.538610 2.368668 0.456626 0.251817 -1.796478 -1.118763 0.843213 -0.551442 1.764995 -1.730605 0.322630 -3.257356 0.670931 0.013721 0.543603 1.253160 2.479844 0.418007 1.507099 3.261931 -3.121152 0.415364 -3.784865 0.988076 -0.765708 1.074124 -0.678227 1.807765 0.392068 1.046848 2.919375 -5.145984 1.564133 0.020462 -0.672080 -3.319758 0.383601 -1.235140 -1.124337 -1.206368 2.074449 -0.295360 -0.710184 -1.082741 0.752123 0.721390 -1.811704 -0.695550 0.653846 3.118145 -2.966359 0.839957 -0.957479 -1.618631 -0.467793 1.477910 2.414629 2.592353 4.167381 2.990622 -0.438345 1.080320 -3.793560 0.227564 3.535146 0.233257 -2.765236 3.254800 -1.979497 -0.539043 0.717306 2.855746 2.499715 1.246809 -2.241273 -1.952776 1.420712 0.627722 3.503773 0.679654 0.376555 -1.466439 2.417063 0.059150 -1.932604 4.795125 1.814046 -2.820546 1.206513 1.359339 -3.047302 -1.753163 1.829804 -2.103540 0.252344 -1.566111 0.790372 1.876242 -1.698013 -1.331516 0.090674 -2.819019 3.376546 -0.868300 -0.320692 1.788163 -2.905393 -3.019894 3.734197 -0.042545 -1.044094 -2.451207 -3.030861 -1.865939 -2.760839 1.387532 0.371470 -0.974811 -1.710033 -2.804687 -0.157557 3.252440 0.521281 1.873564 -3.402164 -0.996454 1.535021 0.933309 2.154822 -1.690580 -0.612854 0.099888 -0.016715 0.990992 -0.027356 1.933509 4.627859 -2.279295 1.858635 0.074837 -1.385300 0.998698 2.133441 -3.935841 3.881096 0.080376 2.365959 -0.339335 1.119420 -1.265599 0.387556 1.035477 -0.323956 0.252521 0.621792 -0.831415 -1.073654 0.211766 -3.091705 -2.103607 -0.221069 1.159239 0.054832 1.149932 -0.216325 -1.864587 -0.703778 -1.167195 0.580882 2.500826 0.383009 -1.179782 1.823431 0.402431 0.207808 -0.161117 0.418417 0.857704 2.262199 -3.555188 0.358903 -0.611140 0.877173 -1.970425 -3.772782 0.269264 -2.334268 -1.665299 1.784494 -3.615156 -0.338691 -2.325623 0.497021 -3.321572 -0.429591 0.377694 3.974424 1.889822 -1.199777 1.747257 -0.877927 2.113028 -0.093070 -0.631213 1.170658 2.584803 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = -1.467850 0.368445 0.186687 -1.621897 3.318001 -1.064337 -0.363828 1.890656 1.235430 1.659750 -1.709090 -0.258721 -0.542750 -1.954341 0.160970 -0.737832 0.354209 1.879845 -1.087957 0.517572 1.168520 0.218437 0.729890 -0.886220 -0.628729 -1.304717 -0.387798 0.700197 -0.510956 0.096113 0.043179 0.520849 2.426608 0.063231 1.869509 1.437150 1.057816 2.543135 0.340312 1.454423 1.130455 0.668811 -0.357480 -2.641273 1.033480 -0.758127 -1.872656 -1.513212 0.991570 -2.770156 1.911250 1.590943 0.091498 -0.676119 -1.229623 0.894956 0.950458 0.519239 1.914958 0.784208 -2.171854 0.280009 -1.702748 1.118802 -1.577471 1.358154 0.256437 -2.448135 -1.024571 1.703323 1.251625 -1.397880 -1.677901 0.145079 0.648659 -1.113749 0.784616 -0.394179 0.707008 -0.504569 -1.074701 0.669841 -0.503031 1.102910 -0.105577 0.672878 -0.833209 0.117399 0.208421 -1.660788 -0.353713 1.773208 -1.041128 0.939227 -1.487426 0.441567 0.410067 -0.923452 -0.840184 -1.105943 0.569062 -0.138961 0.842189 0.566939 -1.097014 -1.230974 1.542012 1.385108 0.104889 0.523601 -0.167413 0.798830 0.474802 0.851883 -0.669239 1.615352 -2.783170 0.860028 -0.686097 0.226435 -0.564939 0.335616 0.932932 0.797137 1.038886 -1.890200 2.351400 0.492196 -0.896059 -0.997733 0.972124 0.185072 -0.615190 -0.513736 1.537204 -0.219190 -0.258075 0.058855 0.472378 -0.449178 -0.969418 -1.007082 -0.696194 0.591999 -0.604959 0.698945 -0.473977 -1.054581 0.045165 0.480205 0.833345 0.686875 2.363512 1.297932 -0.448709 -0.567663 -2.094456 0.555979 2.414293 0.454801 -1.644047 1.503762 -0.415425 0.147148 0.602534 1.013580 0.629918 1.070257 -0.493334 -0.717527 -0.800099 -0.209864 1.842654 1.368048 0.574208 -2.393225 0.237352 -0.760874 0.556002 3.230539 1.586145 -2.308673 -0.274832 2.023561 -1.405325 -1.474205 0.409636 -0.527844 -0.520409 -0.651465 1.036756 0.984113 -1.691953 -1.905094 0.283002 -1.722424 1.415228 -0.291057 -0.551093 0.056454 -2.253400 -0.411585 2.943669 0.354849 -0.514950 -0.147660 -1.641777 -0.089530 -2.601547 0.270354 1.125218 -0.455080 -0.514951 -1.059251 -0.212858 1.729721 -0.634177 0.356167 -1.010081 -0.411996 1.319656 -0.634962 0.447734 -2.034773 -0.512059 -0.264165 -0.171951 0.722691 -0.239881 -0.002229 1.959146 -1.207200 1.200160 1.729402 -0.599160 0.367361 1.734654 -1.391493 2.552296 -0.335061 1.204290 0.403893 1.020725 -0.740662 0.263375 -0.294977 -0.135487 -0.707938 1.445764 -1.816725 -0.687279 0.782692 -1.059292 -1.131022 0.790105 1.667799 0.420631 0.267252 0.048888 -0.990834 -0.561094 -0.956480 0.641567 1.174226 -0.434354 -1.737650 0.476857 1.529292 -1.528061 -1.247404 0.660865 0.790548 2.128958 -2.019688 1.534641 0.432102 -0.135214 -2.231403 -1.098425 0.626078 -1.546347 -0.837566 0.061796 -2.399415 -1.605065 -0.868935 1.636173 -0.888243 -0.092916 0.194529 2.188738 1.267207 -0.231438 1.517076 -0.338342 0.708268 0.154376 -0.333320 0.323456 1.986771 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.324852 0.043262 -0.799782 -0.135656 0.965509 -0.382569 -0.106354 0.699030 -0.231844 0.411539 -0.313203 0.238237 0.054456 -0.715553 0.195799 0.847495 0.380916 0.445374 -0.017717 -0.051110 0.194388 -0.140988 0.062575 -0.134561 -0.092830 -0.322715 0.108064 0.191978 0.251564 -0.376401 -0.633487 0.336317 0.719833 -0.050553 0.461114 0.391358 0.372203 0.360068 0.689976 -0.674184 0.206376 0.142826 -0.120171 -0.542436 0.157608 -0.152731 -0.353103 -0.183119 0.246587 -0.140108 0.613334 0.361284 0.000269 0.009962 -0.561658 0.141437 0.371581 -0.241213 0.589904 0.205232 -0.367196 -0.335740 0.029280 0.863858 -0.410220 -0.171275 0.008636 -0.518443 -0.057938 0.477353 0.331859 -0.583414 -0.389913 0.072634 -0.008430 -0.389750 0.229077 0.113531 0.800761 -0.719354 -0.575728 0.215920 -0.520593 0.505372 0.058013 0.079857 -0.493681 -0.051605 0.130881 -0.458219 -0.027062 0.186299 -0.350560 0.319109 -0.124811 0.384504 0.181864 -0.181048 -0.170112 -0.554079 0.100168 -0.191744 0.173346 0.065516 0.617942 -0.070292 0.112208 -0.150922 0.228170 0.504030 0.508945 0.084459 0.205529 0.204539 0.165559 -0.509921 -0.721623 0.280189 0.082130 -0.066500 -0.204720 0.064346 0.597736 -0.117059 0.374529 -0.712868 0.379357 0.201674 0.125641 -0.306244 0.125521 0.019260 -0.229896 -0.116712 0.454785 -0.163427 0.008426 0.032585 0.268800 0.099256 -0.892867 -0.064894 -0.278036 0.709106 -0.805986 0.139464 -0.116081 -0.267266 -0.013404 0.085193 0.210140 0.395058 0.530036 0.385673 -0.312995 0.427247 -0.745526 0.319598 0.777952 0.376271 -0.428500 0.403229 -0.464079 -0.037292 0.245426 0.409749 0.227595 -0.269390 -0.083603 0.042145 0.450575 0.136727 0.539708 -0.324246 0.322999 -0.324281 0.089743 0.433776 0.054731 0.949914 -0.160908 -0.716608 0.558634 0.590136 0.131250 0.202488 0.166720 -0.499727 -0.296948 -0.441970 0.322136 0.449580 -0.633824 -0.122268 0.009012 -0.331590 0.379628 0.010066 -0.367516 0.211270 -0.468542 0.742794 0.856638 0.176914 0.181887 -0.144723 -0.531182 -0.276478 -0.613143 -0.012356 0.072012 -0.201893 0.118678 -0.420334 -0.425063 0.791045 -0.005439 0.098167 -1.060118 0.427672 0.362987 0.245822 -0.157797 -0.501328 -0.140977 0.377638 0.003128 -0.049179 -0.440985 0.214414 0.214555 -0.469935 0.121373 0.446432 0.463993 0.373209 0.141952 -0.388134 0.545180 0.055783 0.583049 0.281074 0.301838 -0.352064 0.053457 -0.267949 0.301202 -0.400506 0.185802 -0.550184 -0.168111 0.535055 0.055418 -0.770444 0.030888 0.414761 0.367220 -0.028003 -0.589801 0.107378 -0.076514 -0.329323 0.399944 0.252376 -0.251652 -0.278371 0.243968 0.425063 -0.227382 0.179666 0.181976 0.209343 0.550890 -0.523324 0.233803 0.089395 0.539476 -0.435454 -0.659484 0.202005 0.074606 -0.003699 0.355772 -1.048942 -0.533185 -0.191143 0.295078 -0.772520 0.491457 -0.093134 0.632563 -0.107844 -0.080308 0.351199 -0.003922 -0.113908 -0.143932 0.160684 -0.041433 0.313090 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = -0.736150 0.654075 -0.024344 -0.624349 1.288939 -0.579081 0.079735 0.773251 0.021963 0.729577 -0.927766 0.132295 -0.204757 -1.142019 0.147547 -0.027914 0.216532 0.998397 -0.125712 0.365828 0.597242 -0.283008 0.126121 -0.573643 -0.241042 -0.836563 -0.028401 0.193580 -0.030263 -0.015643 0.051404 0.370534 1.248876 0.183379 0.908613 0.888594 0.227180 1.304159 0.659633 0.200738 0.275754 0.511748 -0.257518 -1.390483 0.526734 -0.398013 -0.459830 -0.854858 0.354722 -1.041432 0.964418 0.671215 0.066697 -0.227897 -0.944995 0.165357 0.889589 0.196887 0.998003 0.430944 -0.585151 0.121870 -0.511413 0.521769 -0.824026 0.189728 0.387829 -0.937328 -0.009929 0.638231 0.750446 -0.684367 -0.763093 0.062052 0.034055 -0.640181 0.330029 -0.137766 -0.305247 -0.572123 -0.687408 0.231395 -0.314678 0.807062 -0.100726 0.102353 -0.746631 0.040856 0.311987 -0.716014 -0.370597 0.755414 -0.259113 0.387845 -0.314010 0.749849 0.483849 -0.342087 -0.324057 -0.462073 0.317837 -0.056062 0.372795 0.328262 -0.482107 -0.531490 0.597095 0.311706 -0.227521 0.574796 0.283626 0.566960 0.313306 0.327998 -0.355002 0.368064 -1.465307 0.444091 -0.018806 0.027714 -0.048556 0.088078 0.256690 -0.023152 0.473215 -0.988464 1.003545 0.366922 -0.105990 -0.622187 0.471923 0.017836 -0.401064 -0.383042 0.719191 0.110560 -0.102155 0.022107 0.038218 -0.150084 -0.557799 -0.792643 -0.309434 1.119932 -0.738378 0.212615 -0.322527 -0.523221 -0.082779 0.090601 0.198721 0.365652 1.018882 0.743563 -0.255620 0.061247 -1.010080 0.182115 1.308947 0.736568 -0.787167 0.580779 -0.082111 -0.068797 0.459150 0.422019 0.362245 0.235900 -0.584969 -0.631181 -0.067290 -0.360329 0.915296 0.493517 0.366689 -1.003200 0.739344 0.324469 -0.074097 1.619427 0.365722 -0.943819 0.171796 0.913133 -0.692131 -0.494819 0.210235 -0.275181 -0.278856 -0.316448 0.348986 0.389345 -0.883141 -0.861865 -0.187322 -0.856189 0.765543 -0.043222 -0.078769 0.028032 -0.959887 -0.046398 1.373918 0.226323 -0.208801 -0.220061 -0.653059 -0.288935 -1.215180 0.214934 0.401552 -0.362325 -0.347910 -0.637921 -0.111935 0.880449 -0.440237 -0.034635 -0.631440 -0.278111 0.584186 0.038672 0.038281 -1.268008 -0.333005 0.203192 0.235816 0.365537 0.055396 0.507375 1.131769 -0.634607 0.255700 1.075356 0.314971 0.467243 0.930479 -0.716766 1.007565 -0.419670 0.825127 0.230987 0.469478 -0.428255 -0.089882 -0.042278 0.175548 -0.357786 0.521487 -0.802496 -0.187998 0.490150 -0.492947 -0.471789 0.460911 0.667359 0.442862 0.010353 -0.015134 -0.321357 -0.099116 -0.435071 0.128035 0.700385 -0.031388 -0.900734 0.185626 0.585235 -0.500166 -0.362047 0.258997 0.361810 0.858529 -0.901918 0.707400 0.010146 -0.053052 -0.946719 -0.861438 0.566028 -0.610522 -0.607515 0.410891 -1.315521 -0.536236 -0.440664 0.704025 -1.052662 0.178402 -0.140990 0.898038 0.286340 0.003780 0.630205 -0.155069 0.492087 0.039062 -0.040280 -0.043643 1.120733 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = -2.691495 2.936015 2.216865 -2.779244 3.597590 -1.454339 0.833394 0.973519 0.609557 2.487647 -3.466429 -0.742460 -1.408650 -3.759778 0.171881 -3.101490 -0.216553 3.377775 -0.503596 2.451405 2.405315 -1.480387 0.616485 -2.206694 -0.925119 -2.988177 -0.765095 0.602081 -0.279074 0.614392 2.324173 0.558059 4.017791 0.908699 3.151164 3.207929 -0.257511 5.378324 0.865707 2.177498 0.440033 2.269838 -1.192176 -5.211903 2.078982 -1.476428 -1.601884 -3.786078 1.197823 -4.370562 2.157211 2.562813 0.073592 -1.229203 -3.185602 0.493490 3.428650 2.002185 3.391089 1.352774 -1.294668 1.720007 -3.022374 -0.415999 -2.675065 1.406670 1.450106 -3.119021 0.227711 1.396303 2.250703 -1.654950 -2.766155 0.541672 0.734046 -2.110816 0.919301 -1.276123 -4.564511 -1.084281 -1.930060 0.466702 -0.205003 2.731003 -0.653939 0.454583 -1.527458 0.631767 0.894455 -2.553685 -1.436997 3.302284 -0.131014 0.529089 -0.792492 2.927784 1.729153 -1.034066 -1.654684 -0.399930 1.182821 0.086198 1.555543 1.343496 -3.856103 -2.745858 2.268703 1.860195 -1.429883 1.377902 0.580710 2.317047 1.113908 1.316058 -2.925676 3.102228 -4.770390 1.148041 -0.725122 0.566003 0.221706 0.783549 -0.586635 0.291376 1.514105 -3.104735 3.624686 1.088326 -0.892811 -2.342446 1.840438 -0.135756 -1.260775 -1.498771 2.197303 0.761410 -0.612103 -0.142065 -0.605723 -0.752740 0.058887 -2.819951 -0.370630 3.509379 -1.157238 0.787912 -1.245365 -2.017179 -0.193351 0.325587 0.674897 0.990456 3.769219 2.831068 -0.508400 -0.750416 -2.856159 0.108243 4.301560 1.971846 -2.719290 1.872352 0.852334 -0.275313 1.418908 1.130829 1.633539 1.879276 -2.668036 -3.249068 -1.536985 -1.819318 3.034708 3.186845 0.787072 -3.893630 3.534805 0.435561 -0.577496 5.094755 2.077398 -2.413085 -0.665437 2.620529 -4.339405 -3.058670 0.676985 0.052247 -0.216325 -0.480484 0.831935 0.765878 -2.327003 -3.871824 -1.123125 -3.324047 2.745695 -0.465924 0.419849 -0.176332 -3.299169 -2.946797 4.196989 0.499664 -1.675754 -1.049032 -1.891294 -0.446826 -4.092527 1.340208 1.475940 -1.215877 -2.208959 -2.066675 0.673606 2.047579 -1.726351 -0.138213 -0.120778 -2.465177 1.762120 -0.083839 1.041995 -4.183604 -1.132740 0.092117 0.960392 1.774735 1.693067 1.889817 5.026051 -2.017746 0.684658 3.274619 -0.075925 1.439032 4.099207 -2.654116 3.658254 -1.961419 2.875218 -0.048734 1.400028 -0.848070 -0.352077 0.951404 -0.317019 -0.296352 1.897341 -2.090122 -0.643409 0.962747 -2.513919 -0.419036 1.853328 2.017306 0.859991 0.449386 1.608949 -2.091486 -0.271000 -0.660036 -0.437141 2.821608 0.706728 -3.373008 0.352134 1.537535 -1.160920 -2.232462 0.679902 1.134192 2.578642 -3.189469 2.613381 -0.538415 -1.612602 -2.996471 -2.337353 2.174197 -3.271465 -2.659571 1.509224 -3.223881 -0.649763 -1.921505 2.320991 -2.415106 -0.558637 -0.341092 2.703083 2.021228 -0.041202 2.020247 -0.872096 2.857242 0.373448 -0.880542 0.194365 4.511944 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.392121 1.720889 0.429556 -1.462215 2.547226 -0.809914 0.527533 1.367556 -0.993019 1.520620 -1.783268 1.066347 -0.235506 -2.327882 0.196008 -0.568098 0.022035 1.653052 -0.043884 1.283002 1.090833 -1.026084 0.286421 -1.129748 -0.691748 -2.161538 0.255080 0.421682 0.442255 0.203005 0.870862 0.320911 2.067136 0.068219 1.395955 1.602922 0.310061 2.342580 1.105960 -0.310745 0.349300 0.904115 -0.513512 -2.480282 0.794203 -0.683502 -1.122324 -1.574527 0.656443 -2.290290 0.501375 1.319081 0.130456 -0.707606 -1.885063 0.805074 2.186450 -0.268180 1.871211 0.651440 -0.791795 -0.406706 -1.154038 0.891555 -1.383007 -0.065219 0.740299 -1.399225 0.384634 1.203694 0.558225 -0.756824 -1.042609 0.216146 0.397883 -1.445919 0.412001 -0.609620 -1.950697 -1.191488 -0.616554 0.344197 -0.292422 1.600984 -0.140768 0.353489 -0.669617 0.240892 0.441693 -1.436364 -0.795984 1.714807 -0.263693 0.060751 -0.891422 2.104991 1.166863 -0.754169 -0.791427 -0.682299 0.604647 0.093376 0.745168 -0.586074 -1.162686 -1.468708 0.613766 0.420696 -0.447472 1.485476 -0.154953 1.214206 0.352514 0.743175 -1.248882 1.075201 -2.819954 0.594749 -0.041487 0.335896 -0.245777 0.051807 0.436280 0.357075 0.938730 -1.943101 2.094442 0.606915 -0.012259 -1.564862 0.879001 0.189602 -0.528962 -0.627968 1.086940 0.125496 -0.134706 0.032848 0.180343 -0.077910 -0.902016 -1.811998 -0.165003 2.665049 -1.897805 0.538968 -0.536821 -0.647511 -0.125570 0.123818 0.547385 0.482165 2.015884 1.389302 -0.084134 1.357281 -1.724054 0.274548 2.585051 1.945181 -1.393048 1.167319 -0.314407 -0.363423 0.652078 0.592315 0.787300 0.816065 -1.985139 -1.867179 0.540538 -0.880419 1.757958 1.040755 0.403917 -2.268479 2.108192 0.397918 -0.067793 2.648014 1.029393 -1.761470 0.806532 1.589429 -1.825667 -0.950891 0.419525 -0.549397 -0.556676 -0.214506 0.452584 0.620224 -1.277734 -1.872912 -0.935860 -1.548211 1.510609 -0.191444 -0.012985 -0.078322 -1.217885 -0.697246 1.968206 0.345220 -0.701970 -0.631280 -1.022124 -1.243506 -2.268092 0.424467 0.739575 -1.000153 -0.958148 -1.324489 -0.337806 1.271790 -0.940997 -0.202882 -1.969675 -0.727244 1.109029 0.832303 0.179787 -2.271148 -0.450875 0.227019 0.605203 0.617208 0.163256 1.470164 2.362702 -1.142123 0.784987 0.895133 0.112091 1.163265 1.984287 -1.467166 1.984472 -0.569050 2.213804 0.326151 0.739535 -0.723209 -0.033866 0.032713 -0.340150 -0.338520 0.809235 -1.473294 -0.445656 0.855267 -0.938759 -0.867938 0.973631 1.275357 0.751366 0.093849 0.425159 -0.516022 -0.364684 -1.033621 -0.092456 1.269505 -0.273892 -1.686928 0.344640 1.180481 -0.603734 -0.802716 0.354060 1.034018 1.272969 -1.680208 1.529141 -0.308223 -0.348509 -1.921639 -1.934757 1.471944 -1.312153 -1.624153 0.844727 -2.478169 -0.634362 -0.888188 1.329097 -2.463724 -0.160824 -0.100142 1.632318 0.152605 0.136112 1.211801 -0.527273 1.161900 -0.054802 0.336234 -0.049226 1.990864 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.209123 0.629483 -0.376455 -1.272659 3.479517 -1.142659 0.175097 1.354325 -0.843094 1.656427 -1.228382 0.658249 -0.252555 -2.556780 0.473499 -0.116191 0.377467 1.473293 -0.115707 1.076715 0.809221 -0.812910 0.477475 -0.455131 -0.648288 -2.453912 0.014907 0.920579 1.141207 -0.939137 0.033560 0.477065 2.399082 -0.589486 1.472000 1.494026 0.947690 1.639362 1.103607 -1.842359 0.585264 0.583021 -0.630075 -1.927995 0.303153 -0.184546 -2.084482 -0.981624 1.044556 -1.440447 -0.366393 1.632009 -0.191539 -0.506243 -1.802828 1.543885 1.673723 -0.363571 1.908136 0.429947 -0.722247 -0.751902 -1.299267 1.850627 -1.336581 -0.315091 -0.724254 -1.641502 -0.022823 1.372361 -0.179227 -0.884241 -0.988622 0.626316 1.080264 -1.553556 0.437059 -0.422951 -0.350531 -1.882647 -1.194184 0.683494 -0.888408 1.608333 0.202659 0.723254 0.116245 0.406949 0.052980 -1.808919 -0.052330 1.625261 -0.849769 -0.422895 -0.547848 1.863228 1.118153 -0.850246 -0.721238 -1.478788 0.365085 -0.810855 0.962510 -0.641154 0.788001 -1.313591 -0.168540 -0.010388 0.759879 1.902823 0.313835 0.646276 0.483239 0.939636 -1.101368 -0.180870 -2.763546 0.731849 -0.792711 0.270608 -0.792156 0.591549 1.291391 0.935753 1.359780 -2.530838 1.718784 0.331642 0.235787 -1.232397 0.524061 0.270036 -0.373114 -0.476067 1.278052 -0.558467 -0.120631 0.050316 0.896947 0.531073 -1.195078 -0.198267 -0.196362 2.176292 -2.302110 0.854939 -0.362548 -0.744800 0.166285 0.322339 1.085238 1.221414 2.385309 1.604799 -0.570891 1.905402 -2.424859 0.661312 2.499395 0.577514 -1.240492 1.725006 -1.141005 -0.541885 0.378090 1.541732 1.076917 0.256352 -1.409658 -1.199101 0.947431 0.173341 1.852889 -0.099088 0.123742 -2.045956 1.133212 0.317290 0.204077 2.820639 0.547456 -2.186747 1.382145 1.823941 -1.564373 -0.806277 0.637482 -1.380983 -0.512927 -0.995957 0.879092 1.359943 -1.347399 -1.128179 -0.395496 -1.257732 1.164954 -0.426111 -1.295688 0.667282 -0.999599 -0.472543 2.342988 0.341835 -0.066057 -1.057374 -1.946059 -0.922235 -2.174806 0.313616 0.229713 -0.838546 -0.265854 -1.427069 -0.953386 1.879134 -0.073326 0.671324 -3.450632 0.380334 1.219585 1.615886 0.153748 -1.185478 -0.194045 0.650990 -0.223740 -0.293207 -0.655979 1.001987 1.741344 -1.533943 0.877034 -0.205497 -0.816577 1.299575 1.357428 -1.855154 2.411645 0.331123 2.549588 0.530760 0.653450 -0.893634 0.403830 -0.108713 -0.738855 -0.643012 0.484563 -1.544651 -0.838150 1.276176 -0.323216 -2.223652 0.157935 1.562663 0.470973 0.372660 -0.541751 -0.482740 -0.416758 -0.738031 0.825642 0.998411 -0.559754 -1.114060 1.038923 1.627530 -0.441714 -0.746757 0.313442 1.014668 1.407571 -2.078405 1.210065 -0.182616 1.171307 -1.703298 -2.279985 1.215665 -1.019761 -0.736683 0.727750 -2.845373 -1.163712 -1.028090 1.027943 -1.988143 0.218631 0.422002 2.075398 0.140659 -0.420831 1.218009 -0.598828 0.272391 -0.479557 0.312702 0.224681 1.313031 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.622852 0.572468 -0.818677 -1.260475 4.293503 -0.861353 0.044040 2.429531 -1.163934 2.291121 -1.460819 1.111551 -0.416359 -2.514855 0.330422 0.664036 0.577897 1.617357 -0.627397 0.493861 1.059499 -0.447966 0.817661 -0.543184 -0.848209 -2.352123 0.094529 0.917853 1.145997 -0.528824 -0.604345 0.410416 2.793108 -0.721173 1.579671 1.445562 1.608910 1.982004 1.146441 -1.534635 0.763680 0.817594 -0.812070 -2.327556 0.743268 -0.876780 -2.257475 -1.017193 1.406154 -2.166863 0.431068 1.764035 -0.109234 -0.598255 -1.635831 1.724269 1.733922 -1.155236 2.582285 0.483168 -1.690912 -1.481630 -1.335176 2.856613 -1.609646 0.254346 -0.507333 -2.454885 -0.707170 1.666335 0.217824 -1.424371 -1.339921 0.737810 0.836500 -1.813947 0.578842 -0.355243 0.852221 -2.148483 -1.540296 0.596244 -1.213308 1.749618 0.104255 0.685385 -0.337076 0.286750 0.160113 -2.322045 -0.158631 2.016546 -1.204138 0.574813 -1.562238 1.118051 0.546718 -0.849727 -1.026718 -1.547281 0.324377 -0.278238 1.043629 -1.251596 0.904131 -1.366682 0.254660 0.107160 0.987811 1.657503 0.212070 0.480652 0.466857 1.340772 -0.755881 0.040664 -3.011049 1.011122 -0.342219 0.338420 -1.074058 0.593783 1.719551 0.657746 1.874402 -2.969988 2.072419 0.185091 -0.309408 -1.737416 0.656391 0.233234 -0.599376 -0.363860 1.666602 -0.827890 -0.301736 -0.236644 1.226529 0.270894 -2.436856 -0.764534 -0.474466 1.992855 -2.822401 0.850195 -0.573120 -0.965030 0.161649 0.699720 1.256027 1.459096 2.632087 1.905442 -0.510502 2.210744 -2.893773 1.015037 2.952835 1.536272 -1.862934 1.842343 -1.811372 -0.222376 0.917120 1.352304 1.093221 0.805677 -1.081811 -0.793929 1.222986 0.414142 2.496782 0.484873 0.823929 -2.426441 0.617542 -0.203035 0.521593 3.247497 1.056296 -3.056714 1.909116 2.000243 -0.996828 -0.449742 0.632932 -1.751951 -1.139716 -1.218133 0.918585 1.852564 -1.900276 -1.365839 -0.053723 -1.651242 1.970638 -0.394749 -1.142725 0.990962 -1.896658 0.207035 2.541738 0.556007 -0.112347 -1.037646 -2.031319 -1.550891 -2.769293 0.344162 0.670520 -1.062501 -0.589722 -1.961283 -1.150917 2.229445 0.122381 0.755764 -4.101183 0.635612 1.566998 1.072801 0.414221 -2.015411 -0.313913 0.320347 -0.304377 0.284787 -1.254678 0.892015 1.711712 -1.927145 1.460282 0.228232 -0.463447 1.033026 1.235669 -1.891102 2.680983 0.407045 2.547073 0.543491 1.048573 -1.044568 0.721667 -0.555626 -0.135440 -0.787957 0.980202 -2.096678 -1.050971 1.412466 -0.961585 -2.300650 0.254273 1.716310 0.857654 0.326210 -0.916766 -0.534651 -0.694946 -1.313254 0.771194 1.313858 -1.149890 -1.601423 1.052599 1.357163 -1.205514 -0.781025 0.590498 1.252310 1.824449 -2.410808 1.186840 0.014346 0.868654 -2.512564 -2.403787 0.832324 -0.896822 -1.183731 1.196739 -3.442008 -1.466842 -1.134269 1.279822 -2.588880 0.035935 0.136022 2.654531 0.053598 -0.140799 1.844310 -0.317005 0.538766 -0.450701 0.449244 0.329098 1.457568 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.366699 0.308673 -0.583586 -1.454769 3.652414 -0.748388 -0.397677 2.060445 -0.075399 1.852890 -1.308259 0.398230 -0.341400 -2.440913 0.319696 0.082244 0.398253 1.405353 -0.685672 0.890521 1.050574 -0.536034 0.699669 -0.604731 -0.714474 -1.560489 -0.023290 0.868468 0.714235 -0.419318 -0.143418 0.318668 2.261143 -0.221318 1.668326 1.259404 1.241087 1.967627 0.662500 -0.530831 0.620190 0.656296 -0.551448 -2.180200 0.803636 -0.712769 -2.091396 -1.030957 1.058079 -2.088115 0.567806 1.772120 -0.064575 -0.529908 -1.498258 1.163429 1.257294 -0.323987 2.074003 0.608266 -1.647405 -0.935965 -1.566698 1.512102 -1.246784 0.425708 -0.064778 -1.968527 -0.502411 1.484398 0.200235 -1.223445 -1.123337 0.607105 1.038443 -1.409240 0.803621 -0.460914 0.642685 -1.495576 -1.017577 0.638605 -0.801075 1.508912 0.047300 0.845191 -0.076390 0.237025 -0.056661 -2.051312 -0.014930 1.517776 -1.215981 0.350083 -1.353715 1.352576 0.386385 -0.673378 -1.187423 -1.224343 0.493724 -0.199939 0.904413 -0.507377 0.097600 -1.392952 0.749940 0.341023 0.690286 1.173870 0.273100 0.466842 0.432236 1.255858 -1.002261 0.725403 -2.428530 0.617012 -0.645305 0.573444 -0.982399 0.496398 1.559861 0.825911 1.371225 -2.391382 2.029763 0.479438 -0.293742 -1.394165 0.752664 -0.007394 -0.526942 -0.376859 1.480786 -0.654337 -0.197118 -0.125290 0.892310 0.169033 -1.753517 -0.486141 -0.408364 1.422009 -1.764635 0.785138 -0.406566 -0.913370 0.061574 0.477801 1.197923 1.016482 2.406650 1.367971 -0.549789 1.232864 -2.197881 0.796495 2.815985 0.719562 -1.644271 1.712263 -1.174726 -0.007237 0.444701 1.134941 1.151823 0.620280 -0.929325 -0.722048 0.758480 0.305404 2.039374 0.446990 0.579582 -2.303657 0.578053 -0.302227 0.491644 3.053361 1.053506 -2.572186 1.015162 1.802104 -1.383124 -0.579846 0.498516 -1.020512 -0.508938 -0.934170 1.103469 1.290739 -1.593431 -1.487824 -0.107467 -1.589598 1.506897 -0.379432 -0.622824 0.443788 -1.639608 0.055688 2.602933 0.368375 -0.448976 -0.696307 -1.770318 -0.885792 -2.406863 0.260280 0.582778 -0.737541 -0.367251 -1.403894 -0.868614 1.998744 -0.170516 0.436526 -2.976729 0.301775 1.261469 0.345803 0.439629 -1.516247 -0.364788 0.101188 -0.242215 0.376175 -0.798982 0.425241 1.755915 -1.482567 1.309682 0.250339 -0.446137 0.912196 1.344219 -1.653901 2.654042 0.218743 2.224823 0.298336 1.014712 -0.866754 0.553601 -0.362247 -0.417827 -0.546479 1.037408 -1.667794 -0.854202 1.206206 -0.668041 -1.896876 0.370132 1.510639 0.572604 0.413293 -0.432233 -0.629696 -0.652654 -1.045919 0.878572 1.118311 -0.798943 -1.327401 0.715897 1.521379 -0.728231 -0.795076 0.583024 0.991503 1.969921 -2.177236 1.195308 0.141553 0.515382 -1.840615 -1.737383 0.766335 -1.025558 -0.592703 0.776659 -2.913562 -1.207253 -0.992603 1.274899 -1.533090 0.258073 0.153991 2.336453 0.699465 -0.448626 1.517956 -0.413069 0.502918 -0.235227 0.274423 0.355498 1.493161 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.399278 0.288071 -0.163478 -0.091796 0.770572 -0.170187 -0.094327 0.381304 -0.039261 0.724932 -0.165717 -0.420911 -0.449551 -0.652130 0.204023 -0.152367 0.206480 0.425699 -0.031529 0.569646 0.412595 -0.399428 0.008480 -0.148256 -0.171383 -0.462124 -0.150492 0.190761 0.829582 -0.517231 -0.083224 0.074752 1.061849 0.086542 0.958570 0.583596 0.335421 0.553898 0.294721 -0.689027 -0.403983 0.548908 -0.585552 -0.286444 0.089427 -0.284979 -0.240397 -0.020894 0.358423 0.101468 -0.242102 0.668271 -0.169946 0.369251 -0.555475 0.211913 0.052844 0.398700 0.829542 0.106825 -0.025133 -0.069223 -0.662659 0.580540 -0.160722 -0.071143 -0.546671 -0.386834 0.210196 -0.232739 -0.270996 -0.282052 0.037244 0.805707 0.560530 -0.602742 0.392689 -0.060755 -0.151588 -0.861666 -0.917356 0.212049 -0.204586 0.752998 0.172830 0.309738 0.024267 0.375879 0.002806 -0.949890 0.300439 0.282422 -0.631864 -0.311834 0.172276 0.677681 0.172320 0.349286 -0.431971 -0.416253 0.218908 -0.308286 0.388720 -0.109660 0.643786 -0.438628 -0.160683 -0.395288 0.322358 0.679596 0.660423 0.252367 0.647286 0.813517 -0.387033 -0.442141 -0.282025 0.191260 -0.716823 0.184847 -0.286484 0.612009 0.306594 0.150729 0.792323 -1.119758 0.078803 0.213306 0.108565 -0.395060 0.172809 -0.488352 -0.236568 -0.426275 0.620062 -0.115469 -0.153868 -0.437881 0.295113 0.371754 -0.280118 0.315201 0.080324 0.455018 -0.718453 0.122301 -0.261637 -0.451178 -0.205526 0.323133 0.442225 0.808131 0.514825 0.625564 -0.558781 0.145447 -0.726901 -0.048106 0.925198 -0.452947 -0.558278 0.701695 -0.451350 -0.175741 0.103269 0.588763 0.778147 -0.049801 -0.457002 -0.505603 0.294253 0.410881 0.879389 -0.185528 -0.151220 -0.118052 0.553945 -0.137758 -0.616655 0.978190 -0.162469 -0.740407 0.405989 0.274101 -1.003359 -0.293224 0.377493 -0.691647 0.185612 -0.845821 0.329745 0.526255 -0.485199 0.237839 0.268263 -0.696789 0.638441 -0.062067 -0.228886 0.409164 -0.441695 -0.239383 1.048345 0.290196 -0.087768 -0.915110 -0.765016 -0.291327 -0.742572 0.284939 -0.420292 0.045095 -0.155109 -0.657905 -0.240789 0.685782 0.304619 0.414534 -1.114999 0.040449 0.135775 0.163042 0.373487 -0.133716 -0.141803 0.248073 -0.156641 0.074044 -0.283417 0.344994 0.775482 -0.640429 0.198417 -0.306495 -0.589632 0.345095 0.253801 -0.991569 0.750427 -0.118550 0.415574 -0.037250 0.284376 -0.498768 0.191911 0.254225 -0.190546 -0.134542 -0.054876 -0.062571 -0.309031 0.114483 -0.254142 -0.554108 -0.386885 -0.014901 0.034843 0.225822 -0.097983 -0.514409 -0.011931 -0.286317 0.340756 0.607058 0.157874 -0.150180 0.685156 0.031212 0.226014 -0.274106 -0.003600 0.068176 0.542472 -1.018070 -0.224454 -0.146231 0.434340 -0.111908 -0.683982 0.085047 -0.350235 0.112782 0.772455 -0.764525 0.186230 -0.484490 -0.080769 -0.315908 -0.004905 0.238778 0.628045 0.440597 -0.690392 0.357980 -0.284573 0.410014 0.090731 0.064144 -0.170717 0.464734 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.691700 0.381188 -0.681370 -0.579605 1.846866 -0.550544 0.008210 1.175517 -0.511404 0.913287 -0.748479 0.664503 0.056209 -1.176469 0.206088 0.691755 0.306171 0.837589 -0.164413 0.211406 0.432850 -0.206840 0.227171 -0.362860 -0.352494 -0.945321 0.158308 0.370462 0.400818 -0.361750 -0.482774 0.308244 1.236107 -0.267177 0.774161 0.748173 0.675941 0.827286 0.823091 -0.796586 0.437186 0.294008 -0.274846 -1.042536 0.252859 -0.306873 -0.858506 -0.471750 0.512443 -0.818035 0.645907 0.713659 0.016834 -0.255590 -0.882087 0.658721 0.800615 -0.542283 1.094393 0.290820 -0.737233 -0.521633 -0.364514 1.464369 -0.769190 -0.017365 -0.027327 -0.977884 -0.169620 0.873627 0.389005 -0.792020 -0.656168 0.182344 0.167543 -0.815903 0.291333 -0.120543 0.674108 -1.034039 -0.637327 0.355487 -0.597852 0.793921 0.077208 0.259864 -0.578149 0.083700 0.162951 -0.887129 -0.191628 0.737122 -0.531476 0.310740 -0.591479 0.670378 0.432430 -0.448349 -0.320128 -0.804666 0.212338 -0.152776 0.397077 -0.335505 0.590317 -0.460899 0.119808 0.073560 0.275892 0.870072 0.151733 0.371661 0.282856 0.454980 -0.002967 -0.222903 -1.462220 0.432417 -0.034496 0.050724 -0.383275 0.113556 0.850984 0.189835 0.714846 -1.227402 0.967544 0.204525 -0.000359 -0.699208 0.323508 0.157919 -0.303965 -0.204415 0.683785 -0.224112 -0.057964 0.019913 0.498819 0.102228 -1.193061 -0.502864 -0.259124 1.089619 -1.313707 0.345879 -0.215804 -0.339994 0.014175 0.237236 0.478487 0.539114 1.127270 0.760484 -0.218410 0.870810 -1.249272 0.420190 1.327614 0.787172 -0.783073 0.797579 -0.765125 -0.176366 0.388462 0.634166 0.341388 0.140549 -0.573429 -0.406859 0.619394 -0.003839 1.044377 -0.054929 0.342845 -0.940487 0.416383 0.208135 0.146127 1.576641 0.274752 -1.314711 0.809915 1.010981 -0.176747 -0.128448 0.318803 -0.770930 -0.561200 -0.474062 0.437197 0.689865 -0.884141 -0.598266 -0.117028 -0.693480 0.812567 -0.089842 -0.602260 0.262930 -0.770436 0.540798 1.276258 0.287043 -0.008333 -0.321750 -0.823734 -0.601444 -1.231681 0.070094 0.336865 -0.440676 -0.138053 -0.795834 -0.534894 1.054962 -0.174487 0.168990 -1.780335 0.265018 0.697997 0.481605 -0.046771 -1.030378 -0.163332 0.258551 0.069241 0.044627 -0.586388 0.504063 0.787956 -0.788288 0.476128 0.505426 0.166296 0.536075 0.627781 -0.808244 1.136441 0.108249 1.035596 0.394789 0.453105 -0.551012 0.167465 -0.335823 0.124421 -0.453447 0.382724 -0.983710 -0.381307 0.653961 -0.219258 -1.043415 0.233946 0.818053 0.438562 0.036542 -0.530321 -0.039676 -0.288072 -0.722283 0.365071 0.530317 -0.486541 -0.715206 0.442988 0.763320 -0.557451 -0.077104 0.249553 0.562777 0.877298 -1.004678 0.658653 0.049955 0.522725 -1.135478 -1.122588 0.483036 -0.268891 -0.443841 0.417757 -1.634996 -0.860211 -0.432435 0.634538 -1.350486 0.218481 0.050451 1.130670 -0.055011 -0.056969 0.731906 -0.192276 0.166144 -0.143799 0.254861 0.000879 0.678458 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.382680 0.152531 -0.206047 -0.437992 0.945615 -0.435648 -0.151388 0.837830 0.138222 0.561127 -0.329143 0.173245 -0.068435 -0.717739 0.108665 0.074207 0.227039 0.606598 -0.195139 0.129271 0.305972 0.082204 0.193848 -0.128238 -0.277926 -0.632582 0.076397 0.271251 0.042006 -0.182013 -0.144347 0.214396 0.884614 -0.096887 0.653233 0.487626 0.473392 0.535634 0.528795 -0.063253 0.221662 0.156257 -0.178974 -0.646570 0.114517 -0.101345 -0.507389 -0.283494 0.350631 -0.551240 0.359246 0.443594 0.036559 -0.056659 -0.455775 0.331794 0.121070 -0.093695 0.623128 0.207434 -0.496622 -0.219147 -0.368934 0.750069 -0.577924 0.080823 -0.131407 -0.572102 -0.197867 0.500570 0.121687 -0.313504 -0.328751 0.102843 0.176221 -0.495873 0.215755 -0.065267 0.420317 -0.354406 -0.386731 0.351782 -0.272143 0.443095 0.083978 0.261858 -0.249529 0.149832 -0.000579 -0.607076 0.065674 0.387023 -0.385391 0.060385 -0.268321 0.326698 0.158243 -0.244074 -0.076902 -0.495447 0.210653 -0.197808 0.297001 -0.049425 0.193512 -0.253685 0.174109 0.187497 0.140793 0.406102 0.070509 0.229521 0.231494 0.375080 -0.006355 0.021289 -0.993642 0.387263 -0.262169 0.012950 -0.246734 0.161408 0.487065 0.297156 0.418689 -0.734969 0.590348 0.214956 -0.067363 -0.326781 0.253455 0.098033 -0.148903 -0.208196 0.520910 -0.175905 -0.043812 -0.057428 0.340958 0.024486 -0.442227 -0.208356 -0.228278 0.285531 -0.573556 0.239072 -0.130513 -0.272609 0.048184 0.186993 0.291712 0.368680 0.756710 0.439872 -0.236687 0.168998 -0.791139 0.119583 0.687890 0.160645 -0.398462 0.590890 -0.372307 -0.180998 0.184373 0.516721 0.211192 0.176489 -0.237789 -0.273476 0.044436 0.123976 0.673936 0.012412 0.128576 -0.519360 0.110218 -0.038688 0.099844 0.955862 0.290317 -0.691547 0.189035 0.561707 -0.273397 -0.321794 0.197997 -0.477738 -0.157073 -0.305930 0.241239 0.483218 -0.537471 -0.363243 0.088654 -0.423163 0.397818 -0.113711 -0.389093 0.162342 -0.615827 0.184595 0.839078 0.176194 -0.036635 -0.240856 -0.633165 -0.216316 -0.769981 0.092922 0.216706 -0.142711 0.068665 -0.418840 -0.288108 0.531713 0.002195 0.118735 -0.876007 0.089671 0.509074 0.090853 0.004835 -0.449303 -0.040715 0.158018 -0.116250 0.085179 -0.302359 0.217213 0.465178 -0.430779 0.345936 0.305465 -0.166140 0.246897 0.364594 -0.617720 0.829345 0.000323 0.306505 0.292770 0.208954 -0.335172 0.114197 -0.188960 -0.112135 -0.240221 0.230917 -0.556468 -0.284159 0.253615 -0.182726 -0.524022 0.019656 0.555599 0.075375 0.090559 -0.172418 -0.205370 -0.146554 -0.400240 0.293855 0.368314 -0.164850 -0.437557 0.387570 0.533638 -0.331585 -0.299604 0.120810 0.330554 0.587170 -0.657491 0.362068 0.100669 0.343631 -0.682649 -0.600579 0.290503 -0.258697 -0.113878 -0.038098 -0.858462 -0.556503 -0.262093 0.439463 -0.549857 0.187645 0.204651 0.678993 0.072326 -0.167628 0.361839 -0.140746 0.109136 0.031299 0.015948 0.029842 0.508317 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -2.067545 1.920895 0.287738 -3.077496 4.095229 -1.532213 -0.146344 3.317865 0.218306 2.679427 -2.203857 0.646242 -0.586273 -3.951170 0.201101 -1.311570 0.376345 3.120902 -0.898090 2.404821 2.022628 -0.593485 1.008803 -1.174317 -1.635734 -2.345792 0.145095 1.212569 0.143319 -0.626796 1.201566 0.350395 4.174001 0.262958 3.641502 2.626458 1.382200 3.860860 1.990079 0.470551 0.273737 1.292134 -1.124664 -3.936233 1.128558 -0.912734 -2.393231 -2.318343 1.451089 -3.568868 1.488128 2.615637 0.271428 -0.621099 -2.655168 1.127867 1.600452 0.119959 3.280658 1.145909 -2.095573 -0.185928 -2.664103 1.193591 -2.416025 0.900593 0.450458 -2.287348 -0.199076 1.785166 1.139333 -1.983056 -2.056592 0.793850 1.179758 -2.561793 1.256282 -1.209710 -1.091612 -1.939876 -1.412387 1.509231 -0.582683 2.553578 0.190317 1.465685 -0.974247 1.111312 -0.261552 -3.394892 0.188539 2.234506 -1.357646 -0.251285 -1.567239 2.985918 0.282402 -0.860682 -1.816416 -1.604736 1.537345 -0.260148 1.619906 -0.246921 -1.062815 -2.326260 1.250804 1.520696 -0.366000 1.669237 0.827009 1.761864 1.615102 2.370389 -1.593279 1.940140 -4.999393 1.341784 -1.479112 0.687904 -0.899250 1.004206 1.382805 1.441288 1.952094 -3.618654 3.430454 1.503822 -0.956285 -2.432327 1.667892 -0.044816 -0.844564 -1.277207 2.409728 -0.445967 -0.204061 -0.619993 0.847618 -0.266769 -1.229879 -2.032537 -0.476820 2.228002 -2.427628 1.105813 -0.778412 -1.538640 0.049636 0.998635 1.576591 1.319852 4.199293 2.140755 -0.953162 0.540369 -3.245986 0.066890 3.956751 1.753550 -2.331653 2.899776 -0.743450 -0.780306 0.726380 2.114584 1.644377 0.979843 -2.640121 -2.780045 0.370262 -0.140004 3.492963 0.826943 0.511559 -3.142056 2.312151 0.034409 -0.005631 4.985290 1.830937 -2.779570 0.004716 2.340117 -2.194305 -2.286825 1.101819 -1.572003 -0.564162 -0.548930 0.929785 1.426924 -2.219028 -3.023221 -0.446159 -2.739765 2.406656 -0.645394 -1.110360 0.051718 -3.180573 -0.516208 4.103005 0.550485 -1.547825 -1.239691 -2.639114 -0.527989 -3.922287 1.005894 1.389309 -0.642617 -0.625196 -2.072627 -0.557804 1.960103 -0.562693 -0.070140 -2.924078 -1.245964 2.413546 -0.172889 0.837830 -3.161753 -0.371471 0.415167 0.262501 1.235617 -0.161332 1.735066 3.792690 -2.051754 1.333669 1.715986 -0.476826 1.431573 2.979562 -3.311962 4.593450 -0.716688 2.832846 0.608580 1.120040 -1.373254 0.378571 -0.083404 -0.538294 -0.256283 1.397472 -2.231209 -1.298650 0.528468 -1.263777 -1.769180 0.619267 2.368733 -0.462256 0.720011 0.441101 -1.311530 -0.903492 -1.731412 0.687012 2.403475 -0.505051 -2.653392 1.391468 2.416416 -0.537204 -0.995949 0.552662 1.844702 3.048350 -3.447332 2.060358 -0.231094 0.302089 -3.259421 -3.001964 2.188654 -2.194997 -0.893237 0.388411 -3.645792 -1.695702 -1.749379 2.241186 -2.450153 0.769263 0.968132 3.118654 1.308934 -1.101029 1.619579 -1.079764 1.944299 0.371429 -0.052669 0.178494 3.489164 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.632185 0.331917 -0.343551 -0.494008 1.569866 -0.587404 0.014971 1.068641 -0.348389 0.859630 -0.584407 0.546436 -0.086553 -1.004323 0.163242 0.321325 0.283944 0.833754 -0.150302 0.210362 0.416659 -0.115720 0.216282 -0.260794 -0.347067 -0.977761 0.146759 0.347226 0.260228 -0.231764 -0.229805 0.330579 1.186838 -0.212425 0.752621 0.708773 0.558545 0.820680 0.711855 -0.501788 0.360282 0.268724 -0.242246 -0.964829 0.255302 -0.215258 -0.740902 -0.453886 0.491380 -0.828626 0.460269 0.635420 0.000237 -0.180310 -0.751633 0.592009 0.605076 -0.373224 0.962867 0.240954 -0.683758 -0.428102 -0.413271 1.235190 -0.734874 -0.054068 -0.094377 -0.907039 -0.122534 0.743543 0.259453 -0.575248 -0.495602 0.188014 0.180798 -0.731042 0.223571 -0.073310 0.351941 -0.749791 -0.594594 0.290511 -0.436831 0.663350 0.043590 0.259262 -0.452317 0.104964 0.119496 -0.806879 -0.108896 0.734389 -0.474035 0.250541 -0.528519 0.555298 0.426221 -0.418729 -0.210225 -0.675610 0.187245 -0.225932 0.401964 -0.284097 0.296892 -0.399624 0.128221 0.048363 0.250641 0.762905 0.009735 0.375683 0.249819 0.418043 -0.080458 -0.025698 -1.359381 0.489354 -0.099428 0.017732 -0.313987 0.136337 0.640171 0.247050 0.653545 -1.110925 0.837476 0.132754 0.025748 -0.621769 0.302373 0.184991 -0.201121 -0.272311 0.697976 -0.212409 -0.092648 -0.014068 0.423396 0.113817 -0.872040 -0.499261 -0.235896 0.880939 -1.049121 0.341917 -0.236981 -0.355144 0.040655 0.177518 0.404968 0.539309 0.984779 0.721762 -0.181054 0.667235 -1.167619 0.275219 1.082698 0.623686 -0.670548 0.754569 -0.594881 -0.212055 0.342120 0.599190 0.343988 0.227047 -0.479832 -0.454391 0.391155 0.052525 0.932558 0.109079 0.230320 -0.858194 0.316337 0.066520 0.122852 1.362601 0.320382 -1.137033 0.619800 0.858500 -0.356288 -0.291795 0.274883 -0.671324 -0.442495 -0.410226 0.373092 0.672716 -0.786306 -0.500895 -0.015530 -0.625312 0.672378 -0.137204 -0.488405 0.263831 -0.756052 0.223198 1.104625 0.263325 0.007952 -0.337960 -0.822240 -0.531643 -1.120613 0.081928 0.291191 -0.336576 -0.146391 -0.700214 -0.452911 0.857362 -0.074379 0.210752 -1.461945 0.154439 0.656935 0.387408 -0.046361 -0.903938 -0.119747 0.219838 0.018193 0.071688 -0.403487 0.434676 0.719827 -0.684933 0.472971 0.424052 -0.045552 0.472105 0.549291 -0.808995 1.028592 0.038135 0.804709 0.368113 0.330643 -0.465564 0.148900 -0.237925 0.042448 -0.416837 0.316366 -0.829759 -0.360015 0.503360 -0.317423 -0.813618 0.136420 0.752395 0.347647 0.084803 -0.319142 -0.156331 -0.257549 -0.659690 0.312313 0.490125 -0.353154 -0.622832 0.495461 0.628377 -0.544218 -0.268037 0.196210 0.515981 0.706590 -0.920640 0.562098 0.043880 0.379348 -0.989091 -0.974179 0.449210 -0.369368 -0.492315 0.261709 -1.397896 -0.707331 -0.372654 0.604035 -1.144782 0.105732 0.071367 1.009124 -0.024648 -0.030901 0.679269 -0.194717 0.163698 -0.095658 0.180992 0.001285 0.705405 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -7.390702 7.725015 2.772950 -9.267120 14.039860 -4.157557 0.593880 8.888759 -0.919369 9.365045 -8.365063 1.882842 -2.435488 -12.124310 0.489461 -5.022594 0.121631 9.884126 -2.035003 8.846055 6.714195 -3.981224 2.524557 -4.542057 -4.809534 -7.404571 -0.505693 3.552234 1.621323 -1.802389 5.107903 1.009866 13.075975 1.270178 11.779206 9.090747 2.851850 13.771713 4.891736 1.364210 0.477995 5.004368 -4.037563 -13.221803 4.773922 -3.781932 -7.525959 -8.477257 4.311620 -12.062829 4.913050 9.039474 0.169123 -2.339628 -9.001798 3.966803 7.342607 1.214881 11.372880 3.367384 -6.750469 0.662023 -9.291395 2.864572 -6.617230 2.936551 1.811865 -8.314549 1.027319 4.836459 4.629607 -7.335835 -6.209276 4.065357 3.691931 -8.253072 3.988248 -4.402834 -7.284649 -7.360011 -5.192377 3.497255 -0.863590 8.461240 0.079382 4.069029 -3.811266 3.386535 -0.542156 -11.217709 -0.400686 8.839786 -4.223184 0.010742 -5.081349 10.452333 2.304387 -2.318469 -6.817329 -4.057936 4.630908 -0.374314 5.179892 -0.759693 -4.629389 -8.695771 4.250250 4.028780 -1.357340 5.735264 2.681598 6.597671 5.955128 7.700264 -7.087544 7.488482 -14.811790 3.634833 -3.777505 2.406247 -2.176103 3.240862 2.763051 3.755877 6.923417 -12.013013 10.623662 3.798574 -2.857919 -9.003615 4.963014 -1.254099 -2.957904 -4.478631 7.419633 -0.375218 -1.046156 -2.170054 1.142606 -0.709502 -3.905961 -7.999666 -0.282519 9.930831 -7.638554 3.320734 -2.944600 -5.053925 -0.622943 3.085613 5.493414 4.595848 13.166864 7.524970 -1.990627 1.710728 -10.342360 0.166073 13.543295 6.622147 -8.664303 9.153555 -1.705649 -2.027424 2.552039 5.950378 6.320861 3.481559 -9.854525 -10.413873 2.023230 -1.445524 11.160716 4.307048 1.376915 -10.437624 9.522858 0.277124 -1.673799 16.654767 5.391308 -9.578422 0.412821 7.530081 -8.725095 -7.349475 4.169733 -4.374359 -2.370957 -1.472109 3.066281 3.910454 -7.124592 -9.785480 -1.766332 -9.992840 9.091432 -1.841009 -1.639293 0.102575 -9.860367 -4.045673 13.627836 1.893744 -5.356857 -4.115919 -7.789970 -1.934806 -12.644167 3.106442 4.528361 -2.443000 -4.376976 -7.241558 -0.807360 6.580415 -2.545906 0.678910 -8.177623 -5.571345 6.889104 -0.792076 3.184600 -11.868621 -2.106589 0.459104 1.983449 4.332637 0.876487 6.609576 14.077957 -6.670112 4.362067 6.241961 -1.118524 5.039176 10.341083 -10.800494 14.306765 -3.012393 10.707344 1.064834 4.076182 -4.433624 0.736058 1.063372 -0.706657 -0.851342 4.731376 -6.429374 -3.589127 1.666290 -5.542508 -4.903540 2.658733 6.488041 -0.608879 2.388848 2.298354 -4.796128 -3.381170 -5.898550 1.323484 7.935226 -1.368414 -8.536465 4.270707 6.129225 -1.474146 -2.951170 1.913135 5.595926 9.215997 -11.608053 6.443888 -1.374967 -0.894223 -10.186603 -9.366311 6.666459 -8.408214 -5.026750 3.245588 -12.214907 -3.848538 -6.195019 6.260876 -8.777197 0.791230 1.931402 10.748756 5.613748 -3.597197 6.148888 -3.951236 7.422117 1.174287 0.099926 0.145640 11.926452 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.658638 0.163605 -0.632213 -0.319068 1.220811 -0.915891 -0.073081 0.947346 0.298667 0.591136 -0.627904 -0.061048 -0.221985 -0.965937 0.214011 0.607793 0.581797 1.172545 -0.156067 0.066405 0.540914 0.077140 0.069529 -0.354973 -0.141101 -0.298426 -0.061308 0.229275 -0.252381 -0.455887 -0.544789 0.680488 1.436652 0.236738 1.126061 0.901504 0.348602 1.169081 0.925943 0.053401 0.339595 0.429957 -0.195772 -1.261500 0.534689 -0.248633 -0.330936 -0.701470 0.379379 -0.558659 1.702087 0.592452 0.026056 0.061450 -0.863258 -0.071952 0.496244 0.256323 0.941575 0.432745 -0.773100 0.403287 -0.198979 0.873635 -0.829461 0.155062 0.264987 -1.024801 -0.130933 0.603287 1.312776 -1.226465 -0.985847 0.058127 -0.199730 -0.523849 0.409895 0.165320 0.890033 -0.771006 -1.146471 0.254623 -0.632503 0.671446 -0.109843 0.072008 -1.289517 -0.037165 0.298390 -0.661843 -0.130620 0.458862 -0.495525 0.797898 -0.262010 0.345558 0.259712 -0.296188 -0.279144 -0.740450 0.262950 -0.373133 0.373015 0.953471 0.124388 0.008808 0.553056 0.139572 -0.027817 0.514920 0.739381 0.489668 0.552724 0.243812 0.259282 -0.164139 -1.392824 0.645987 -0.017145 -0.183760 0.024836 0.192377 0.446060 -0.249242 0.503709 -0.985040 0.692850 0.300331 -0.056337 -0.412989 0.399393 0.018006 -0.405212 -0.507711 0.927418 0.022153 -0.123764 -0.000620 0.099706 -0.081133 -0.815414 -0.560904 -0.521370 0.774315 -0.579028 0.185882 -0.358444 -0.697218 -0.018030 0.082129 0.141034 0.603869 0.864554 0.742335 -0.496235 -0.394878 -1.195692 0.168566 1.018389 0.494133 -0.764582 0.619159 -0.150165 -0.059003 0.553069 0.703574 0.340926 -0.309352 -0.010139 -0.172423 -0.071352 -0.011670 0.845503 0.040275 0.437417 -0.588930 0.104388 0.603831 -0.115195 1.800372 -0.111561 -0.949690 0.081557 0.884913 0.076791 -0.376299 0.219663 -0.453175 -0.435481 -0.519896 0.531239 0.513182 -1.045951 -0.439575 0.268742 -0.741705 0.565869 -0.051251 -0.520307 0.171429 -1.261988 0.586594 1.640424 0.272439 0.097317 -0.118931 -0.897745 0.268940 -1.135696 0.154542 0.271012 -0.002057 -0.040655 -0.557540 -0.187654 1.105936 -0.154921 0.106206 -0.491782 -0.002435 0.604519 -0.282294 -0.181447 -1.366032 -0.325294 0.437191 0.234169 0.217691 -0.098326 0.174312 0.819601 -0.708123 -0.107429 1.668381 0.691239 0.377906 0.582083 -0.761452 0.904382 -0.370597 0.550926 0.358638 0.395169 -0.501333 -0.143089 -0.167541 0.869783 -0.638125 0.417818 -0.725983 -0.180164 0.461934 -0.277099 -0.658577 0.172185 0.669667 0.330638 0.036648 -0.527403 -0.161740 -0.064371 -0.436581 0.424900 0.625951 -0.032385 -0.689640 0.404072 0.507248 -0.614088 0.120014 0.259839 0.245960 0.950440 -0.891591 0.475117 0.145022 0.365439 -0.701084 -0.833638 0.385860 -0.365036 -0.187528 0.343050 -1.303017 -0.852923 -0.341941 0.660317 -0.852363 0.624238 -0.185750 0.924057 0.361965 -0.068836 0.590830 -0.070869 0.185834 0.005732 -0.147364 -0.121504 1.076067 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.320643 0.031671 -0.951797 -0.063032 0.859865 -0.571981 -0.091240 0.721618 -0.153960 0.318950 -0.290788 0.177133 0.075323 -0.735855 0.230820 1.020226 0.517491 0.602215 0.061062 -0.032139 0.208186 -0.103780 -0.028559 -0.139673 -0.050876 -0.121715 0.102723 0.175584 0.103544 -0.542149 -0.720185 0.509692 0.845776 0.090550 0.648475 0.509980 0.282733 0.429721 0.905823 -0.667853 0.190282 0.149041 -0.090076 -0.606755 0.196452 -0.085699 -0.219043 -0.252452 0.181374 0.016560 1.011428 0.345455 0.002308 0.136586 -0.656415 -0.071837 0.344657 -0.133634 0.578597 0.259660 -0.396319 -0.080500 0.174007 0.843727 -0.427111 -0.258148 0.121307 -0.509428 0.062104 0.453457 0.703789 -0.853247 -0.525207 0.049110 -0.158392 -0.363659 0.276342 0.210736 0.960776 -0.822646 -0.747589 0.232539 -0.594249 0.518990 0.036211 0.039585 -0.847169 -0.085431 0.165455 -0.422742 0.000390 0.082287 -0.382540 0.460138 -0.050754 0.432336 0.195745 -0.154198 -0.174092 -0.653925 0.142866 -0.323850 0.165401 0.454196 0.662001 0.108762 0.139167 -0.208144 0.145028 0.550660 0.745908 0.197845 0.379783 0.145749 0.321691 -0.645556 -0.777163 0.375399 0.107721 -0.173270 -0.083407 0.061872 0.564463 -0.249663 0.340963 -0.703797 0.295914 0.270040 0.190847 -0.276336 0.133902 -0.017761 -0.267039 -0.240596 0.537904 -0.088240 0.032600 0.041677 0.160831 0.089280 -0.892691 -0.158029 -0.353181 0.798036 -0.742597 0.109778 -0.142451 -0.344283 -0.040008 0.037614 0.146909 0.449473 0.488816 0.390012 -0.411040 0.182575 -0.797677 0.237906 0.738367 0.416795 -0.437756 0.421489 -0.350496 -0.076411 0.293590 0.509430 0.236956 -0.576695 -0.022176 0.051285 0.435820 0.134133 0.511000 -0.467361 0.333003 -0.186024 0.083379 0.717057 -0.079584 1.122894 -0.403863 -0.648291 0.440302 0.610599 0.348872 0.190276 0.190517 -0.515917 -0.352769 -0.447035 0.373495 0.392623 -0.709719 -0.031754 0.098683 -0.345755 0.309185 0.033580 -0.460320 0.153440 -0.589145 0.912786 1.057072 0.188411 0.252982 -0.073136 -0.588642 0.016999 -0.613111 -0.022135 0.041979 -0.065863 0.205267 -0.380985 -0.388344 0.871066 -0.024653 0.072025 -0.857266 0.386593 0.371517 0.093484 -0.302213 -0.713934 -0.186084 0.517172 0.138397 -0.076377 -0.360811 0.217710 0.244698 -0.467692 -0.118213 0.865734 0.754372 0.419908 0.119538 -0.446936 0.516946 -0.062303 0.566978 0.350459 0.278491 -0.400831 -0.078822 -0.262168 0.628772 -0.525297 0.158012 -0.510158 -0.107123 0.522003 0.146463 -0.783293 -0.002423 0.408172 0.320660 -0.043857 -0.704562 0.166956 -0.030774 -0.334569 0.476323 0.268031 -0.170845 -0.250216 0.297941 0.428589 -0.201302 0.423002 0.169971 0.170016 0.596527 -0.526524 0.209454 0.100756 0.631653 -0.318230 -0.719331 0.274817 0.081418 0.097302 0.333865 -1.080848 -0.622869 -0.171433 0.301913 -0.786669 0.718756 -0.133613 0.638330 -0.058803 -0.118762 0.290240 -0.016286 -0.153143 -0.133373 0.135358 -0.134371 0.443884 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -2.097748 0.862094 -1.193760 -2.641444 5.501209 -0.969968 -0.387403 3.528088 -0.803224 3.082265 -1.925013 1.031213 -0.466562 -4.093698 0.398255 0.162775 0.626518 2.251957 -1.144946 1.447772 1.691116 -0.647356 1.423607 -0.746611 -1.532094 -2.875237 0.188737 1.473817 1.460108 -0.869529 -0.381108 0.083297 3.916416 -0.807680 2.619663 1.999827 2.337373 2.866135 1.702899 -1.640940 0.667229 1.155930 -1.258856 -3.333224 0.804928 -1.178372 -3.330902 -1.479653 1.970112 -3.088556 0.316597 2.674354 0.063606 -0.875219 -2.443520 2.141411 1.872037 -1.131468 3.588295 0.851748 -2.077205 -2.022258 -2.442343 2.948565 -2.390872 0.712807 -0.513437 -2.820095 -1.072218 2.177396 -0.095743 -1.765475 -2.063331 0.962208 1.644260 -2.713729 1.108553 -1.009584 0.880206 -2.724463 -1.613955 1.406511 -1.649234 2.719353 0.313900 1.472965 0.090945 0.885216 -0.246195 -3.634672 0.219017 2.340871 -1.632199 -0.047017 -1.984209 2.293658 0.129152 -1.015764 -1.888836 -1.970885 0.919376 -0.183915 1.634861 -1.770896 0.926813 -2.316909 0.611171 0.822881 1.029322 1.938893 0.780083 0.638299 0.867174 2.439434 -1.417910 0.487709 -4.515891 1.121955 -1.255176 0.888891 -1.783260 1.177240 2.562189 1.458151 2.504214 -4.143857 3.298796 0.915601 -0.811059 -2.435551 1.275945 0.208679 -0.886943 -0.492438 2.305714 -1.323702 -0.285718 -0.551544 1.900479 0.241496 -2.881513 -0.564146 -0.559127 2.076172 -3.574863 1.266389 -0.641033 -1.420657 0.365310 1.216472 1.971955 1.797460 4.256981 2.430968 -0.989861 2.636449 -3.780154 1.206156 4.328397 1.627048 -2.461509 2.874672 -2.296630 -0.436645 0.948834 2.157754 1.693971 1.221012 -1.828156 -1.430834 1.384782 0.721156 3.695552 0.325797 1.024192 -3.378314 1.187534 -0.402740 0.878958 4.569093 1.902524 -3.722511 1.850706 2.570572 -1.717487 -0.974511 0.910158 -2.266745 -0.836083 -1.473114 1.161734 2.427427 -2.378167 -2.552679 -0.444309 -2.348857 2.652197 -0.746715 -1.759938 1.015686 -2.812995 0.394276 3.613495 0.571488 -0.863311 -1.579478 -2.911628 -1.858478 -3.927202 0.794820 0.988734 -1.369551 -0.431733 -2.604907 -1.524168 2.751062 0.171043 0.502088 -5.526016 0.549736 2.433187 1.195834 1.012497 -2.133211 -0.181841 0.463114 -0.599425 0.697890 -1.660800 1.284689 2.728218 -2.591377 2.008572 -0.110032 -0.822291 1.458830 2.144235 -2.967792 4.514766 0.524462 3.479463 0.572727 1.397753 -1.325976 1.151676 -0.710432 -0.924423 -0.422167 1.419476 -2.797256 -1.701447 1.631894 -1.027360 -3.131059 0.278513 2.586653 0.367903 0.708588 -0.808856 -0.952118 -1.019181 -1.575154 1.119844 2.083357 -1.394081 -2.338870 1.439625 2.431280 -0.875564 -1.087418 0.707728 1.900433 3.031863 -3.540517 1.776484 -0.075571 1.295933 -3.461354 -3.321413 1.426645 -1.236797 -0.745583 1.267133 -4.376476 -2.054018 -1.744571 1.984278 -2.798444 0.591475 0.798212 3.548340 0.462051 -0.768634 2.065474 -0.647830 1.167174 -0.403307 0.338149 0.678374 2.243550 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -2.169519 1.046351 -1.109246 -3.800963 6.758298 -2.854412 -0.557752 4.241805 0.066703 3.000550 -2.015466 1.215329 0.125346 -5.837753 0.821694 -0.907144 0.978308 3.348205 -0.827201 3.142688 1.730183 -1.015897 1.272028 -0.726656 -1.962922 -3.614326 0.485071 2.332890 1.019577 -2.431215 1.058847 0.925207 5.175534 -0.727628 4.193136 2.988262 2.399291 3.274962 2.739167 -2.437941 1.311727 0.429804 -0.812996 -3.844117 0.314998 0.204164 -4.850422 -1.974833 1.844708 -3.514318 -0.351755 3.655263 0.082221 -0.804619 -3.569536 2.764614 2.139888 -0.935313 3.543466 1.201301 -2.491507 -1.393136 -2.847065 2.796909 -2.690218 -0.524821 -0.907400 -2.605220 -0.163514 3.395092 -0.361212 -2.327197 -2.041633 0.935442 2.722901 -3.248314 1.535933 -1.146608 0.638829 -3.355498 -1.188283 2.377676 -1.418292 2.988458 0.737544 2.511177 0.376962 1.108783 -0.890678 -4.093287 0.929902 2.498389 -2.413754 -1.443538 -1.809220 4.400908 1.210908 -1.841648 -2.193834 -3.582620 1.489124 -1.869335 1.983216 -0.821580 1.097298 -2.499230 -0.007087 0.922403 1.174309 3.602478 0.401541 1.708967 1.590315 2.484652 -2.221995 1.028659 -6.270386 1.419235 -2.576504 0.798808 -1.889168 0.934589 3.511309 3.376415 2.254588 -4.861855 4.172115 1.675494 0.081221 -2.510999 1.465471 0.603812 -0.491294 -1.211182 2.822526 -1.511268 0.278316 0.061904 2.062604 0.831396 -1.786195 -0.671715 -0.565786 2.963958 -3.849606 2.060451 -0.273459 -1.354221 0.428062 0.814237 2.656996 1.737024 5.575977 2.283859 -1.469434 3.080037 -4.594408 0.764674 4.938979 0.759275 -2.308615 4.423463 -2.210501 -1.389103 -0.078887 3.801801 2.126396 0.061268 -3.175367 -2.733360 2.130859 0.754555 3.805136 -1.244441 -0.269241 -4.450940 2.003689 0.457368 0.857726 6.385989 1.722327 -4.071491 1.293084 3.769817 -2.696319 -2.194342 1.476645 -2.864526 -0.866326 -1.126189 2.154081 2.229601 -2.446135 -2.802896 -0.471020 -2.535434 1.642537 -1.106343 -3.269022 0.238721 -2.534669 -0.220902 5.568897 0.426519 -0.801349 -1.356630 -4.331141 -0.253468 -4.620874 0.411832 0.995592 -0.866813 0.601193 -2.158141 -1.956899 3.471112 -0.320824 0.697602 -6.832294 0.363888 3.028983 1.817141 0.071872 -2.224540 -0.046711 1.244313 -0.326385 -0.560998 -1.456594 1.637944 3.503632 -2.625311 2.070085 -0.513714 -2.085423 2.691267 2.827170 -4.268413 6.178421 0.826615 5.071474 1.407605 1.170942 -1.986845 0.809529 -0.695344 -2.026373 -1.242473 1.105078 -3.171227 -1.935345 1.856776 0.354462 -4.624571 0.161345 3.736090 -0.636696 1.082830 -0.628729 -0.737812 -1.298587 -2.038813 2.338434 1.824927 -1.214516 -2.011794 2.371147 4.655792 -0.159406 -0.931335 0.567059 2.567769 3.808938 -4.456195 2.906043 -0.017433 2.736238 -3.404848 -4.445095 3.198305 -2.350973 0.112096 -0.359755 -5.509772 -3.380730 -1.905133 2.758568 -2.831451 1.459288 1.993300 4.564902 1.037493 -1.987802 1.984057 -1.708636 0.448532 -0.458844 0.797975 0.541841 2.993337 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.918201 0.927090 -0.092224 -0.862199 1.909227 -0.581255 0.125573 1.188491 -0.463492 1.170712 -1.036524 0.624106 -0.044162 -1.395149 0.118561 0.061516 0.098666 1.163009 -0.096898 0.632314 0.634227 -0.413250 0.244910 -0.532128 -0.518277 -1.258857 0.072099 0.395861 0.281052 -0.203309 0.137615 0.256587 1.525694 -0.080562 1.152223 1.085488 0.403989 1.340178 0.900891 -0.251551 0.305454 0.475868 -0.419207 -1.483645 0.442922 -0.408553 -0.880803 -0.932667 0.502522 -1.323248 0.816195 0.905286 -0.009367 -0.333846 -1.098173 0.607968 1.045660 -0.269806 1.365867 0.346184 -0.813848 -0.195011 -0.716804 1.153163 -0.915020 0.055844 0.203436 -1.170651 0.087882 0.824382 0.648946 -0.834735 -0.766704 0.371426 0.187318 -1.021010 0.291032 -0.372396 -0.403357 -0.992355 -0.638143 0.386771 -0.382468 0.960824 0.020306 0.331955 -0.760028 0.265792 0.119006 -1.160162 -0.271266 1.116808 -0.439828 0.270227 -0.623888 1.067739 0.632849 -0.442391 -0.419254 -0.615943 0.377248 -0.085767 0.529961 -0.200402 -0.100949 -0.822446 0.345741 0.264847 -0.020842 0.906449 0.092147 0.747596 0.543996 0.677835 -0.477970 0.346844 -1.826732 0.541957 -0.106452 0.115998 -0.256520 0.186703 0.488007 0.297818 0.853397 -1.422265 1.212112 0.277118 -0.085360 -1.037383 0.453874 0.055292 -0.333499 -0.416307 0.769781 -0.063286 -0.109912 -0.103577 0.216672 -0.015853 -0.925397 -1.064187 -0.117801 1.485874 -1.243406 0.419276 -0.309041 -0.448071 -0.048166 0.292494 0.581050 0.596489 1.445682 0.976679 -0.084898 0.607548 -1.372768 0.196439 1.575292 1.091338 -0.992161 1.010222 -0.494740 -0.338899 0.475354 0.689945 0.514681 0.369239 -1.050190 -1.041303 0.388728 -0.224547 1.275914 0.443521 0.292875 -1.182606 1.012618 0.260732 -0.116383 1.943065 0.490194 -1.303865 0.494187 1.048890 -0.744623 -0.527286 0.452761 -0.670037 -0.515359 -0.263661 0.319862 0.604891 -0.908441 -1.009540 -0.244609 -1.032016 1.108550 -0.153795 -0.332751 0.135270 -1.020306 -0.066322 1.506562 0.332722 -0.306942 -0.394684 -0.855350 -0.568721 -1.473254 0.201170 0.545447 -0.517465 -0.444185 -0.954875 -0.299898 0.945770 -0.337475 0.141698 -1.440765 -0.315173 0.832897 0.295261 0.036559 -1.546589 -0.217468 0.133676 0.277820 0.295578 -0.147258 0.901400 1.432582 -0.802125 0.507039 0.888096 0.156765 0.658124 1.045566 -1.129862 1.439320 -0.237797 1.169225 0.370622 0.473931 -0.530558 0.072125 -0.115602 0.075233 -0.327759 0.519418 -0.979592 -0.406249 0.532643 -0.605856 -0.781570 0.360011 0.881142 0.356833 0.124964 -0.127905 -0.366865 -0.347944 -0.808962 0.155552 0.779479 -0.294639 -1.005144 0.528245 0.739423 -0.489971 -0.328908 0.227487 0.690861 0.920505 -1.252985 0.853740 -0.074808 0.146206 -1.362588 -1.228913 0.735660 -0.731946 -0.855103 0.397358 -1.757554 -0.719194 -0.623928 0.713534 -1.522048 0.044570 0.088806 1.364559 0.191734 -0.137023 0.804367 -0.395339 0.605843 0.011388 0.171730 -0.026455 1.229039 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.968030 0.627892 -0.108716 -0.738539 2.201077 -0.542426 0.029964 1.462712 -0.391290 1.327578 -0.893292 0.364576 -0.187948 -1.298123 0.203685 -0.061659 0.161722 1.088742 -0.255486 0.603743 0.721560 -0.233794 0.171938 -0.402922 -0.503553 -1.137905 -0.070428 0.451733 0.636866 -0.363602 -0.221498 0.282697 1.718451 -0.247936 1.445410 1.210411 0.833898 1.186903 0.612204 -0.404132 0.152690 0.610500 -0.625895 -1.272520 0.307721 -0.471970 -1.113034 -0.596503 0.646795 -1.051754 0.638531 1.092304 -0.135606 -0.067784 -0.851277 0.937334 0.617087 -0.157192 1.517747 0.363981 -0.994383 -0.318987 -1.036656 1.618747 -0.776190 0.337275 -0.296921 -1.387336 -0.064874 0.574944 0.412473 -0.976449 -0.648086 0.784990 0.405137 -1.109362 0.491449 -0.372915 0.080617 -1.120668 -0.964481 0.455889 -0.488257 1.055272 0.065580 0.417134 -0.624925 0.405399 -0.057929 -1.529984 -0.014697 1.247829 -0.879731 0.232983 -0.983733 0.733016 0.519220 -0.119708 -0.510716 -0.826872 0.436477 -0.179542 0.633278 -0.500843 0.437988 -0.835758 0.192151 0.164854 0.368965 1.018731 0.069682 0.672496 0.812541 1.030205 -0.385940 0.177138 -1.587232 0.612104 -0.561900 0.218473 -0.403463 0.483361 0.756573 0.503713 1.175181 -1.643707 0.968182 0.179024 -0.196600 -1.064934 0.418555 -0.298440 -0.466513 -0.547512 0.948891 -0.126053 -0.218295 -0.364511 0.517563 0.135094 -1.004196 -0.703142 -0.103382 0.911718 -1.303525 0.373389 -0.379023 -0.504334 -0.107691 0.589804 0.839872 0.989079 1.511657 1.135315 -0.184130 0.511288 -1.612223 0.199298 1.555729 0.584218 -1.142668 1.251986 -0.886114 -0.316029 0.489265 0.928703 0.680438 0.566168 -0.875997 -0.882185 0.365841 0.170342 1.485501 0.427780 0.164837 -0.966914 0.684042 -0.359821 -0.479851 1.988941 0.630968 -1.553301 0.492647 0.923286 -0.707037 -0.597815 0.587112 -1.062335 -0.392126 -0.623375 0.390330 0.876458 -0.993950 -0.686260 0.253005 -1.149314 1.248516 -0.204551 -0.449003 0.304591 -1.214791 -0.210170 1.747396 0.354136 -0.299323 -0.685054 -1.069229 -0.634770 -1.491167 0.252445 0.324775 -0.330354 -0.544216 -1.154607 -0.394708 1.129075 -0.041088 0.500831 -1.763553 -0.206488 0.824022 0.148652 0.362306 -1.273350 -0.273662 -0.136469 -0.020232 0.337970 -0.504750 0.721401 1.572325 -0.907706 0.721316 0.564725 -0.466321 0.433341 0.916839 -1.455392 1.629770 0.032003 0.932893 0.339882 0.542994 -0.793492 0.120921 -0.097505 0.073690 -0.331491 0.560525 -0.810189 -0.461360 0.354195 -0.806458 -0.906360 0.063549 0.742648 0.145623 0.253179 -0.240223 -0.659936 -0.482965 -0.996936 0.301304 0.910235 -0.400296 -0.811090 0.843126 0.482006 -0.520805 -0.327424 0.218437 0.578808 1.104097 -1.527799 0.501388 0.029565 0.361265 -1.369331 -1.315888 0.274180 -0.784823 -0.711870 0.451689 -1.710020 -0.716935 -0.750132 0.473645 -1.352312 -0.270202 0.351894 1.637432 0.416351 -0.423961 0.883339 -0.427647 0.719437 0.045011 0.156626 -0.022644 1.078893 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.194121 0.042172 -0.056817 -0.048376 0.330175 -0.148155 -0.181505 0.369916 0.253375 0.338374 -0.076460 -0.176159 -0.111057 -0.164024 0.054274 0.028791 0.046417 0.261759 -0.079453 0.020635 0.177263 0.063601 -0.002591 -0.026918 -0.075042 -0.221418 -0.072103 0.082112 0.158949 -0.167911 -0.188551 0.073185 0.443330 -0.022342 0.456975 0.280432 0.253435 0.184198 0.126366 0.087948 -0.071502 0.198174 -0.220443 -0.163652 0.043149 -0.098566 -0.091083 -0.028268 0.174277 -0.034651 0.281881 0.228762 -0.080165 0.133751 -0.074119 0.144094 -0.189236 0.195101 0.340613 0.059494 -0.180732 0.064796 -0.288746 0.479767 -0.187104 0.141657 -0.232994 -0.298467 -0.058026 -0.044166 0.062274 -0.146307 0.018376 0.313182 0.075092 -0.223129 0.162777 -0.045050 0.332853 -0.185697 -0.380603 0.129767 -0.093693 0.190981 0.024108 0.101404 -0.206951 0.173086 -0.042866 -0.381853 0.124935 0.151671 -0.329606 0.048039 0.016387 0.003608 0.081212 0.118010 0.050859 -0.150565 0.098583 -0.106768 0.160029 0.107695 0.338447 -0.061313 0.071674 -0.028203 0.147442 0.148347 0.123841 0.116227 0.283512 0.327677 0.085868 -0.124421 -0.219557 0.175665 -0.244013 0.050713 -0.043683 0.224655 0.187295 0.087166 0.316190 -0.364242 0.038176 0.014481 -0.001312 -0.112212 0.073071 -0.195911 -0.112644 -0.200900 0.256855 -0.006063 -0.118599 -0.190224 0.148475 0.072287 -0.185690 0.008506 -0.036979 -0.082161 -0.160560 0.044452 -0.112475 -0.161537 -0.045296 0.179058 0.180420 0.332619 0.273460 0.272656 -0.126987 -0.244100 -0.344800 -0.041792 0.222410 -0.272013 -0.232968 0.307958 -0.223984 -0.103724 0.119447 0.302387 0.190020 0.155239 -0.003757 -0.104044 -0.088425 0.167626 0.358965 -0.000332 -0.006151 0.021464 0.007521 -0.139111 -0.273449 0.467709 0.030701 -0.340316 -0.008460 0.085124 -0.191703 -0.166218 0.158369 -0.251701 0.061746 -0.290658 0.103032 0.254328 -0.233940 0.034464 0.272350 -0.286504 0.288550 -0.044842 -0.067630 0.195117 -0.347088 0.041136 0.458951 0.167102 -0.043316 -0.273017 -0.288213 -0.058694 -0.268328 0.092065 -0.042631 0.061496 -0.048689 -0.246830 -0.046709 0.260674 0.128134 0.203406 -0.302032 -0.047397 0.124013 -0.156159 0.104693 -0.111492 -0.064052 -0.047033 -0.102044 0.100004 -0.132598 0.078758 0.359289 -0.205168 0.125950 0.216083 -0.203673 -0.010221 0.114665 -0.412627 0.329581 -0.042346 -0.218367 0.068618 0.093514 -0.234280 0.029694 0.019502 0.031699 -0.057043 0.033917 -0.029798 -0.102590 -0.043755 -0.263765 -0.088629 -0.138128 0.049585 0.013473 0.104494 -0.096377 -0.289158 -0.054097 -0.207002 0.099200 0.246636 0.067679 -0.119518 0.308723 -0.034197 -0.109024 -0.192205 0.018052 0.002771 0.258133 -0.379720 -0.061085 0.075466 0.162088 -0.187951 -0.149069 -0.133369 -0.117286 -0.004983 0.063128 -0.275894 -0.100364 -0.180156 -0.016198 -0.135825 -0.037172 0.107723 0.345681 0.240217 -0.250560 0.177098 -0.104069 0.179010 0.157058 -0.089196 -0.049353 0.220559 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -4.176154 3.714176 1.003138 -4.316459 7.098916 -1.137642 0.851211 1.973329 -0.733356 4.406289 -5.162383 -0.083507 -1.861223 -6.307112 0.265128 -2.308844 -0.276339 4.229568 -1.206587 3.245038 3.509594 -2.943127 1.746202 -3.126527 -1.628632 -4.418668 -0.687759 1.247780 1.146261 0.653928 1.936474 0.003908 5.484625 0.393355 3.465585 3.793447 0.548091 7.573989 1.173073 0.649391 0.858260 3.348311 -1.911255 -7.633078 3.281129 -2.969530 -3.414454 -5.059817 2.452528 -6.694424 2.283196 4.102842 0.152541 -2.600950 -4.972547 1.659078 6.186796 1.189969 5.781477 1.739308 -1.949638 0.092878 -4.400209 0.514488 -3.976932 1.978107 2.004987 -4.936603 -0.563462 2.710095 2.170079 -2.627916 -4.386200 0.852194 1.687470 -3.564141 1.402356 -2.093819 -4.876842 -3.061087 -2.750242 0.502919 -1.440659 4.568261 -0.868450 0.960138 -1.094498 0.763433 1.263518 -4.356618 -2.189676 4.784271 -0.326716 1.116624 -1.689297 4.552872 1.729523 -1.900288 -3.617083 -0.634850 1.299348 0.960752 2.421847 -0.173021 -3.936887 -4.594656 3.144371 2.233865 -0.992673 2.020985 1.533313 2.153879 0.689847 2.429935 -4.463916 3.586693 -6.988463 0.919308 -0.282742 1.549146 -0.884565 1.275207 0.619201 0.108744 2.890101 -5.513951 6.062697 1.294694 -1.478381 -4.091126 2.696627 0.215836 -1.859861 -1.211294 3.211367 -0.080132 -0.972930 -0.191605 0.256941 -0.722758 -2.604967 -3.003156 -0.470605 5.906946 -3.504859 1.461842 -1.778079 -3.058069 0.104096 0.669451 1.576801 1.548988 6.051034 4.396553 -0.746826 1.794614 -4.603765 1.606428 7.606306 3.937175 -4.559376 2.726832 -0.306144 0.269071 2.288740 1.359316 2.802857 3.031253 -3.722626 -3.767415 -0.195543 -1.985588 5.070300 3.919951 2.148015 -6.627334 4.735357 0.720716 0.645004 7.608121 3.305400 -4.838686 1.337171 4.205294 -5.810463 -2.759862 0.794841 -0.329218 -0.799808 -1.281323 1.603579 1.987790 -3.747983 -6.178468 -2.535022 -4.837090 4.843346 -0.808227 0.153952 0.588892 -4.700593 -2.352873 5.620892 0.768510 -2.521242 -1.900264 -2.969057 -2.599088 -6.474186 1.923560 2.145645 -2.862211 -3.348677 -3.794945 -0.146017 3.944741 -2.010937 -0.380897 -3.457859 -1.966572 2.842041 1.237917 2.045075 -5.599134 -1.417372 0.358481 0.964256 2.536345 1.072205 2.636786 6.652970 -3.874070 1.813276 2.949999 0.579412 2.584541 5.769736 -3.464324 5.823298 -1.754291 6.047430 -0.507035 2.619225 -1.059839 0.705932 0.711871 -0.673195 -0.149567 3.003119 -3.956059 -1.623320 2.616678 -3.369376 -2.193790 2.783506 3.389789 2.263647 0.727030 1.155677 -2.235922 -0.811070 -1.044349 -0.449977 4.087308 -0.217216 -5.122371 0.160450 2.563044 -1.589396 -2.841027 1.406970 2.197323 4.263822 -5.003608 3.979643 -0.955086 -1.834386 -4.991768 -3.915034 2.849060 -3.641573 -3.669728 3.945381 -6.034391 -1.153046 -2.941460 3.698296 -4.387665 -0.276841 -1.072874 4.414531 2.253952 0.329485 3.815078 -0.872066 3.894640 -0.222468 -0.718310 0.840426 5.761060 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.602326 3.856325 1.374906 -4.473033 7.927627 -1.555576 0.750142 3.303821 -0.363137 4.937874 -5.547715 -0.026826 -1.841053 -6.126087 0.222088 -2.423218 -0.225614 4.974472 -1.555566 3.242979 3.842123 -2.151503 1.597822 -3.214968 -1.909295 -4.036342 -0.931646 1.330220 0.754522 0.430200 1.513569 0.308229 6.387487 0.380322 4.806244 4.553914 1.174727 8.065328 1.291841 1.725948 0.955906 3.532164 -2.190037 -8.073131 3.357086 -3.169155 -3.708658 -5.169496 2.563122 -7.131356 4.151791 4.443842 0.052045 -2.283698 -4.675344 2.114953 5.503300 1.348312 6.404170 1.930569 -3.333065 0.714678 -4.979678 1.758801 -4.147879 2.999627 1.811622 -5.882212 -0.772702 2.673786 3.515137 -3.813318 -4.920815 1.498673 1.350768 -3.942862 1.770839 -2.256081 -3.881070 -3.168236 -3.413280 0.877244 -1.503541 4.575108 -0.860615 1.139766 -2.444087 1.098444 0.968269 -5.192240 -1.998631 5.462031 -1.259432 1.887913 -2.955944 3.815319 1.526243 -1.581283 -3.611809 -1.143136 1.743866 0.937190 2.641246 -0.048830 -3.631229 -4.684300 3.658741 2.823407 -0.931231 2.023682 1.371173 2.869680 1.835777 3.112575 -3.820776 4.019188 -7.609672 1.418799 -0.701796 1.383050 -0.860515 1.589360 0.672650 0.452783 3.570117 -5.976607 6.192779 1.189307 -2.096932 -4.456815 2.831641 -0.315081 -2.186362 -1.786962 3.696923 0.198263 -1.166302 -0.652233 0.295950 -0.969671 -3.012715 -4.042299 -0.548721 5.189979 -3.385803 1.435113 -1.992592 -3.205880 -0.104681 1.397100 2.100406 2.179241 6.500847 4.768926 -0.521391 0.389403 -5.403262 1.248092 7.579225 3.901194 -5.229819 3.506856 -0.698777 0.076288 2.656918 1.974986 2.796108 3.334477 -3.795990 -4.222560 -0.556211 -1.727272 5.666305 4.500850 2.050825 -6.431250 4.456294 -0.137710 -0.260648 8.712608 3.728771 -5.426476 0.375193 4.303630 -5.057674 -3.442596 1.291042 -1.014892 -1.140073 -1.311664 1.531327 2.224653 -4.146604 -6.276649 -1.412070 -5.470849 5.555467 -0.838209 -0.100214 0.340608 -5.850164 -2.439487 6.772644 0.972510 -2.747382 -1.861315 -3.358226 -2.131987 -6.977681 1.907363 2.635827 -2.326834 -3.756202 -4.246202 0.135503 4.136043 -1.976771 0.098836 -3.028092 -2.795224 3.256196 -0.051069 2.242979 -6.775052 -1.614644 -0.453452 0.996547 3.045787 0.874812 2.759873 7.724839 -3.884146 2.267980 4.667265 0.183229 1.986525 6.144755 -4.296806 6.518949 -1.970478 5.281616 -0.172376 2.783581 -1.660164 0.438962 0.590202 0.312107 -0.365167 3.448429 -3.953078 -1.659607 1.792016 -4.253185 -1.989231 2.626241 3.455440 1.726797 0.853529 1.048873 -2.805224 -1.388378 -2.098244 -0.390787 4.485897 -0.516728 -5.388377 0.885614 2.207336 -2.287694 -2.496010 1.449738 2.270373 4.882917 -5.700950 3.865602 -0.591012 -1.880750 -5.904521 -4.079762 2.265861 -4.281434 -4.008940 3.356260 -6.304120 -1.902742 -3.171497 3.638273 -4.569178 -0.731230 -0.564944 5.422829 2.936323 -0.129241 4.103113 -1.181117 4.502445 0.299975 -0.893496 0.581660 6.412875 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = -1.157589 1.700697 1.487392 -1.201531 1.250019 -0.098139 0.121572 0.645311 -0.171083 1.235377 -1.585285 -0.117078 -0.457013 -1.352939 0.004471 -1.214214 -0.465337 0.993427 -0.074544 1.243097 1.018511 -0.872971 0.128416 -0.957899 -0.578803 -1.035203 -0.267708 0.176607 0.357407 0.170191 0.969041 -0.017673 1.545393 0.350464 1.548093 1.295179 0.055894 2.198251 0.381282 0.689470 -0.259546 1.090750 -0.784222 -1.930667 0.860895 -0.893235 -0.322109 -1.340720 0.392503 -1.412807 1.221693 1.146726 -0.082096 -0.573102 -1.272562 0.406303 1.084841 0.653708 1.709038 0.468035 -0.505840 0.363473 -1.589064 0.123061 -1.069646 0.919021 0.411962 -0.975081 0.395319 0.146366 1.005597 -0.644921 -1.025720 0.740315 0.101442 -1.110649 0.484342 -0.856157 -2.027070 -0.618357 -0.863872 0.414466 0.163732 1.211569 -0.256719 0.291716 -0.831154 0.697247 0.070654 -1.509894 -0.454395 1.297248 -0.357213 0.106983 -0.421008 1.406636 0.266495 -0.036876 -0.789094 0.173885 0.815652 0.336709 0.641281 -0.329037 -0.811276 -1.610793 1.275186 0.872004 -0.621500 0.361137 0.629494 1.236789 1.024573 1.092875 -1.123792 1.045265 -1.849865 0.042228 0.126968 0.277201 0.012292 0.601837 -0.679321 0.041108 0.978379 -1.548379 1.377605 0.416982 -0.610422 -1.147367 0.617706 -0.510926 -0.640759 -0.748216 0.795061 0.516536 -0.355566 -0.335821 -0.375280 -0.341533 -0.365981 -1.639466 0.218223 1.706891 -0.707509 0.196783 -0.524087 -0.731917 -0.233499 0.577745 0.620910 0.553755 1.497963 1.157824 0.070798 -0.622348 -1.067103 -0.100979 1.649845 0.749883 -1.502915 1.076804 -0.140900 -0.287921 0.601684 0.506464 0.851114 0.927668 -1.567262 -1.944795 -0.181832 -0.688338 1.506678 1.184411 0.394103 -1.183361 1.985998 -0.033545 -0.836247 2.088651 0.704747 -0.806317 -0.769654 0.792312 -1.586256 -1.128179 0.611216 -0.202352 0.109678 -0.056370 -0.081328 0.333466 -0.824839 -1.633845 -0.457711 -1.668013 1.763615 -0.132009 0.654419 -0.224814 -1.363632 -1.454030 1.592550 0.125113 -1.055093 -0.691779 -0.566854 -0.417658 -1.574400 0.618893 0.799540 -0.402664 -1.288007 -1.161494 0.412411 0.464069 -0.668876 -0.066843 -0.297742 -1.537570 0.750419 -0.390121 0.648375 -1.457134 -0.503519 -0.215614 0.389360 1.100056 0.578820 1.456425 2.549361 -0.737921 0.768250 1.500415 -0.018365 0.371182 1.800545 -1.260466 1.688054 -0.989157 0.766698 -0.168237 0.687405 -0.581352 -0.208154 0.541148 -0.103436 0.224973 0.646369 -0.497690 -0.233490 -0.370498 -1.469674 0.107426 0.658349 0.451596 0.161302 0.252188 0.807772 -0.737240 -0.475081 -0.627480 -0.322164 1.320648 0.146951 -1.185502 0.322835 0.176353 -0.141556 -0.407204 0.272209 0.410446 1.138190 -1.486165 0.776644 -0.314610 -0.828423 -1.450137 -0.938533 0.444020 -1.299582 -1.117855 0.842485 -1.390740 0.043536 -0.945092 0.598396 -0.985778 -0.229731 -0.001520 1.394379 0.925637 -0.555427 0.803466 -0.557703 1.636928 0.548707 -0.451497 -0.023881 1.737431 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -3.825719 5.212890 4.921626 -3.781716 4.207815 -0.590502 0.908070 1.306965 -1.105936 4.101358 -4.595846 -0.861844 -2.109187 -4.836685 0.019336 -4.824991 -1.254413 3.412552 -0.025766 4.819003 3.440978 -3.368748 0.600460 -2.751770 -1.843877 -3.223755 -1.146604 0.820971 1.665009 -0.047917 4.047161 -0.100654 5.288991 1.165393 5.255295 4.462605 -0.587270 7.313578 0.965110 1.319529 -1.301828 3.756854 -2.760934 -6.377863 2.772047 -2.588106 -1.417536 -4.577551 1.529035 -4.485602 1.932655 4.105122 -0.519418 -1.438278 -4.420701 1.250627 3.963720 2.471747 5.671064 1.357203 -1.217095 1.643770 -5.415391 -0.786805 -3.047038 2.249780 0.912975 -3.301997 1.715288 0.051099 2.275507 -2.382235 -3.034009 2.857975 0.993914 -3.719652 1.431971 -2.723222 -8.155098 -2.631653 -3.125138 0.971439 0.618786 4.169828 -0.798802 1.123717 -1.567265 2.342185 0.105050 -5.282911 -0.991318 4.388584 -1.025059 -0.268752 -0.699901 5.194799 1.010696 0.016962 -3.205742 0.558470 2.339649 0.510512 2.402038 -0.830863 -3.048259 -5.187488 3.111627 1.883890 -1.655294 1.480704 2.513726 3.793958 3.331579 3.775297 -4.873836 3.603080 -5.743775 0.475294 -0.673440 1.178153 0.021357 2.362098 -2.070590 0.298129 3.451529 -5.426757 4.046138 1.199276 -1.501689 -4.359815 2.021833 -1.772130 -1.881212 -2.559574 2.886038 1.190026 -1.104796 -1.384671 -1.182397 -0.639144 -0.433006 -4.262122 0.895248 5.877136 -2.374919 0.899060 -1.805451 -2.716546 -0.599484 1.589023 2.150638 2.330590 5.266897 4.185677 -0.281897 -1.086955 -3.729956 -0.496770 5.569008 2.242134 -4.674545 3.658861 -0.071127 -1.009374 1.874272 1.872498 3.601744 2.598764 -5.210772 -6.314410 0.010453 -1.703906 4.947034 3.594716 1.094948 -3.923502 6.576782 0.277496 -2.735355 6.776001 2.006334 -2.955688 -1.300046 2.406054 -5.876570 -3.830838 2.018223 -0.819232 0.438928 -0.400538 -0.051276 1.209335 -2.689689 -4.968159 -1.526840 -5.421251 5.424613 -0.747021 1.744997 -0.055016 -4.413374 -5.557738 5.117839 0.605914 -3.283931 -2.818424 -2.414387 -1.256802 -5.175421 2.305479 1.912419 -1.327120 -4.129094 -3.886604 1.221221 1.691533 -1.503129 0.313115 -1.113684 -4.593650 2.334073 -0.521141 2.473153 -4.520722 -1.533669 -0.234160 1.095764 3.243470 2.205256 4.513322 8.289178 -2.795087 2.040843 3.715516 -0.501665 1.870144 5.540207 -4.728301 5.675374 -2.811728 4.053029 -0.820143 2.038868 -1.740199 -0.396882 2.259450 -0.548258 0.788742 1.876737 -1.407547 -1.036390 -0.678004 -4.601217 -0.115954 1.552270 1.436633 0.225738 1.203657 2.791740 -2.914685 -1.283056 -1.486786 -0.837222 4.450994 0.706952 -3.845702 1.357742 0.577938 0.261155 -1.647977 0.710047 1.438939 3.354790 -5.203411 2.209601 -1.491732 -2.476625 -3.884915 -3.382116 2.048431 -4.619714 -3.447979 3.212007 -4.264430 0.885496 -3.318440 1.739088 -3.125457 -0.777080 -0.108504 4.565479 3.184599 -1.817585 2.609766 -1.908100 5.266525 1.210949 -1.255621 -0.072315 5.893693 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.681195 5.020287 5.596633 -3.109871 3.278898 1.073307 0.493417 1.815284 -3.163449 3.613338 -3.716295 1.032635 -0.879497 -3.027317 0.050887 -3.778461 -2.006218 0.725178 0.309864 4.122116 2.140757 -3.083819 0.212931 -1.928572 -2.111600 -3.060872 -0.266305 0.684280 3.163106 0.051663 3.068145 -0.749621 3.347398 -0.141875 3.758808 2.819251 0.891065 4.483581 0.602420 -1.301122 -1.519985 2.519841 -2.588016 -3.357216 1.286513 -2.245311 -1.150921 -2.040671 0.979508 -2.257226 0.371298 3.253119 -0.642720 -1.716455 -3.079976 2.790917 1.994850 -0.091041 4.716557 0.548971 -0.821790 -1.457917 -4.897536 1.623972 -2.128792 2.167610 -0.839382 -1.300677 1.870486 -0.318702 0.303802 -0.492887 -1.587873 3.235058 0.907159 -3.596122 1.030208 -2.862239 -6.404539 -2.193140 -1.708985 1.679930 1.156387 3.241476 -0.131796 1.393409 -0.403035 2.878429 -0.871975 -4.993344 -0.360062 3.517863 -1.663047 -1.473841 -1.876418 4.369628 -0.095834 0.456536 -2.384352 0.667513 2.548612 0.874868 1.717456 -5.247466 0.658635 -5.630594 2.328782 1.869088 -0.585013 1.468788 1.457116 3.409035 3.434065 4.001838 -3.331291 1.645869 -4.009735 -0.980953 0.666755 0.773157 -0.960123 2.275277 -2.301728 1.034115 3.527442 -4.912929 2.948173 0.653811 -1.719124 -3.372802 0.778754 -1.819861 -1.360720 -1.823918 1.574867 1.049033 -0.891582 -1.266896 -0.468851 -0.131645 -1.362281 -4.182947 1.831475 5.027479 -3.197329 0.600958 -1.051159 -1.088059 -0.716100 2.550780 2.869109 2.024042 3.580792 2.854586 0.875537 0.200053 -2.655588 -0.309139 3.647647 1.393184 -4.217569 3.835283 -2.513717 -1.525852 0.813542 1.581300 2.746171 2.756659 -5.668359 -6.505744 1.777278 -0.950186 4.285636 2.136468 0.383069 -2.267839 6.088926 -1.575852 -2.916726 3.961487 1.626317 -1.740258 -1.793095 1.512390 -4.173020 -2.558612 2.471952 -2.062492 0.555421 -0.015070 -1.198397 1.418135 -1.300552 -3.407588 -1.376049 -4.272187 5.368031 -0.426118 1.857880 -0.665003 -2.144859 -5.477328 2.787519 -0.164363 -2.972813 -2.899950 -1.374835 -2.391412 -3.549814 1.507497 1.998945 -0.991454 -3.886245 -3.745138 0.478570 -0.039471 -0.988078 0.522649 -3.400141 -4.028178 2.001484 0.169297 2.218726 -1.538301 -0.881619 -0.844686 0.283130 2.576494 0.308051 5.323756 6.484745 -1.761119 3.844713 0.908238 -2.083379 0.831641 4.055950 -3.744826 4.813705 -1.632747 2.155610 -0.605157 1.684923 -2.004770 -0.135951 1.678371 -1.841190 1.263393 0.796896 -0.569618 -0.911645 -2.459391 -3.942231 -0.229083 0.811936 0.512422 -0.468666 0.916462 2.430656 -1.177707 -2.288961 -2.502059 -0.599457 3.164212 -0.765649 -1.652198 1.771910 -0.060474 0.764071 -0.034673 0.463956 1.372536 2.430672 -4.242135 1.150531 -1.363646 -1.574495 -4.068507 -3.026324 0.528448 -3.204667 -2.832763 2.479506 -3.683727 1.035809 -2.727754 0.481727 -2.499504 -1.385606 1.114002 4.219247 1.497932 -2.692611 1.875336 -2.062157 4.327980 1.511221 -0.561795 -0.018911 2.926860 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -12.453930 15.569496 12.004989 -12.763323 16.873652 -2.699600 2.605532 5.723509 -2.350595 13.818627 -15.179832 -0.892371 -5.948026 -16.197222 -0.086556 -13.154894 -3.148625 12.522767 -1.540507 13.874665 10.822315 -9.146025 3.050306 -9.171302 -6.010967 -12.541912 -3.417238 3.033950 3.413145 0.667951 11.639137 -0.377310 17.296547 3.097033 15.204452 14.093522 -0.786897 23.200643 3.289772 5.975866 -1.513497 10.872583 -7.881124 -20.852809 9.021567 -8.315731 -7.174523 -15.415209 5.441312 -17.898507 6.119081 12.995184 -0.719435 -5.076987 -13.799162 4.674052 14.595668 6.051622 17.724556 4.747443 -5.515742 5.145396 -16.003389 -1.445772 -10.130441 6.678547 4.313222 -12.589583 3.029478 3.200745 8.264959 -8.318760 -10.221927 7.082974 3.750717 -11.827038 4.261911 -8.110836 -22.846091 -9.235605 -8.623930 2.841374 1.010300 13.003877 -1.916971 3.628096 -4.983711 5.889361 1.415797 -15.768877 -4.292452 14.725919 -2.517425 0.309565 -4.210750 15.447509 4.834707 -1.860293 -9.742318 -0.139578 6.389690 2.074716 7.479947 -0.766076 -11.837524 -15.390364 8.948233 6.363944 -5.073061 4.938475 4.329369 10.726619 8.222919 10.749712 -15.097547 13.003277 -19.608938 2.970891 -2.913250 4.065640 -0.674547 5.534034 -3.274470 1.974318 10.273256 -16.737252 14.953155 3.910050 -5.175123 -14.074145 7.278076 -3.571708 -5.608040 -6.774608 9.117537 2.555271 -2.883777 -3.480043 -2.176753 -2.698907 -2.198555 -13.401900 1.425782 18.292171 -8.521863 3.673856 -5.416472 -8.273317 -1.637584 4.105299 6.380972 6.351643 18.106139 13.067226 -1.043121 -1.011427 -12.690242 -0.623129 19.671073 10.271253 -13.951591 10.958426 0.837545 -2.295077 6.073894 5.550461 9.852097 8.441280 -15.838387 -18.180343 -1.088678 -5.993724 15.964047 12.473512 3.674311 -15.113834 19.096258 0.797528 -5.568622 22.433115 8.933389 -11.430031 -1.382739 9.520082 -18.245133 -12.116681 5.540672 -2.253192 -0.822536 -1.088525 1.432954 3.788849 -9.125045 -16.850892 -5.139572 -16.561165 16.281339 -2.219598 3.883591 0.569611 -14.061446 -14.918926 16.533218 2.391413 -9.703036 -7.507746 -8.045971 -4.693311 -17.849345 6.679473 6.580949 -5.676556 -11.727278 -11.944910 2.992604 7.275332 -5.663399 0.397384 -5.385715 -12.763252 7.876326 -1.117092 7.301272 -17.330430 -4.405211 -1.011094 3.747291 9.228925 6.166230 12.316201 25.163628 -9.393209 5.707218 11.117923 -0.996351 6.403351 17.922455 -14.252607 18.086954 -7.801931 14.734381 -1.444862 6.749771 -4.795489 -0.110154 5.399544 -1.827389 1.442814 7.430999 -7.296236 -4.018824 1.279180 -13.281685 -1.968902 6.099631 6.524618 1.754807 3.079524 7.755054 -9.580791 -3.202404 -4.937415 -2.471849 13.547387 1.557205 -14.080283 3.520039 4.487373 -1.617947 -7.186132 2.656560 5.783547 11.241185 -16.367931 9.200954 -3.947163 -7.228171 -13.998243 -11.229082 8.135293 -14.651211 -12.063947 9.434385 -15.194501 0.003144 -10.078520 7.406769 -11.346060 -2.921085 -0.349446 14.303621 9.477345 -3.743767 9.153999 -5.484630 15.333098 2.557126 -2.819190 0.053292 19.162132 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.795619 1.949047 1.450329 -1.697256 3.787539 -0.488967 0.364357 1.778171 -1.999613 2.698766 -1.553190 0.645458 -0.546690 -2.918978 0.588088 -1.597669 -0.190399 1.213204 0.231892 2.336734 1.277264 -1.687723 0.290128 -0.498424 -1.229804 -3.049459 -0.133000 1.157888 2.548145 -0.965885 1.014137 0.377592 3.249609 -0.728661 2.639569 2.330241 1.392790 2.233690 1.166084 -2.667097 -0.382403 1.254604 -1.628101 -2.032840 0.413879 -0.637482 -2.259440 -0.951713 1.231548 -1.129144 -0.998976 2.584188 -0.642375 -0.500117 -2.349977 2.259805 1.267736 -0.614541 3.172368 0.429627 -0.715287 -1.675239 -2.707437 2.829960 -1.561845 0.024565 -1.564836 -1.878073 0.844686 0.690758 -0.701634 -0.834352 -1.019797 2.191494 1.400125 -2.595386 0.734133 -1.175438 -2.322914 -2.363315 -1.819786 1.226705 -0.462631 2.564604 0.260110 1.141149 0.200405 1.475379 -0.604967 -3.558553 0.405063 2.576984 -1.582943 -1.002038 -1.390046 2.826281 1.005261 -0.176530 -1.356477 -1.133727 1.129153 -0.865149 1.501152 -2.621059 1.545825 -2.788848 -0.180700 0.014143 1.046348 2.597851 0.745631 1.629558 1.919913 2.454915 -2.076688 -0.356624 -2.879966 0.646926 -0.800422 0.459525 -1.094832 1.605286 0.477180 1.386247 2.671562 -3.920152 1.599021 0.306169 -0.132878 -2.261077 0.368179 -0.693285 -0.705518 -1.226321 1.774601 -0.349203 -0.480414 -0.655323 0.813201 0.863413 -1.298922 -1.119244 0.530421 3.077867 -3.068466 0.946426 -0.672385 -1.001394 -0.096798 1.348812 2.199198 2.391434 3.047800 2.509054 -0.292305 2.238547 -3.115560 0.398425 2.961162 0.830052 -2.434670 3.093939 -2.493108 -1.285124 0.495510 2.120253 2.090144 1.130221 -2.839272 -2.962350 1.607814 0.550600 3.147062 0.367904 -0.037887 -1.861045 2.569886 -0.626502 -1.312412 3.242666 0.656783 -2.283281 0.878637 1.723816 -2.787623 -1.355392 1.583100 -2.571558 -0.218456 -1.201660 0.293480 2.088536 -1.516768 -1.219276 -0.261494 -2.368146 2.663181 -0.643829 -0.625441 0.690866 -1.593144 -2.713332 2.810325 0.226162 -0.741218 -2.262974 -2.283626 -1.346563 -2.686519 0.791595 0.483567 -0.787446 -1.404051 -2.642462 -1.044891 1.569160 0.292189 1.299786 -4.671453 -0.508207 1.712466 1.473869 0.868355 -0.946515 -0.355743 0.383626 -0.248580 0.290559 -0.888153 2.583273 3.152213 -2.000089 1.886873 -0.821225 -1.862845 1.402865 1.661805 -3.267268 3.695910 0.250541 2.590346 0.370820 0.937115 -1.602455 0.310900 0.536359 -1.312479 -0.245042 0.393379 -1.121366 -1.074723 0.326330 -1.476513 -2.170616 -0.297817 1.338936 -0.143672 0.823797 0.078741 -0.845385 -1.216469 -1.362697 0.836847 1.888341 -0.753721 -0.715013 2.077249 0.966016 0.201310 -0.537435 0.291265 1.313327 1.797453 -3.358100 0.823076 -0.672481 0.917057 -2.365070 -3.224761 0.965800 -1.717792 -1.314113 1.390211 -3.537587 -0.321169 -1.929114 0.527988 -2.284534 -0.551888 1.082583 3.422159 0.378544 -1.621118 1.530281 -1.258780 1.472061 -0.135681 0.270230 0.294345 1.667244 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.367853 0.265148 -0.396559 -0.284683 0.995850 -0.338918 -0.016137 0.707841 -0.372826 0.530749 -0.368791 0.445986 0.047226 -0.740993 0.148725 0.424331 0.201211 0.450631 0.006479 0.136498 0.220619 -0.221977 0.087679 -0.173483 -0.201865 -0.683626 0.176496 0.216722 0.318677 -0.195031 -0.244341 0.219956 0.698781 -0.141866 0.430171 0.436224 0.345006 0.406474 0.595358 -0.598150 0.186710 0.145497 -0.145375 -0.557451 0.101498 -0.123997 -0.438889 -0.228977 0.271366 -0.396533 0.186722 0.392805 0.002895 -0.096660 -0.564193 0.359169 0.449532 -0.324800 0.608335 0.161677 -0.323347 -0.453800 -0.160205 0.845356 -0.442286 -0.223612 -0.038461 -0.474686 0.039926 0.494446 0.015628 -0.288853 -0.204492 0.116436 0.113490 -0.491209 0.151871 -0.032920 0.218140 -0.583751 -0.332179 0.213137 -0.317591 0.502096 0.064520 0.151306 -0.247422 0.046555 0.082364 -0.506012 -0.076774 0.377713 -0.292577 0.072738 -0.213763 0.551551 0.351064 -0.244775 -0.105624 -0.455432 0.124622 -0.141555 0.218338 -0.290086 0.362210 -0.264604 0.021261 -0.102419 0.179237 0.601798 0.103549 0.206629 0.133513 0.264969 -0.057902 -0.212539 -0.829598 0.262691 0.005915 0.016076 -0.228741 0.036965 0.504286 0.116742 0.402316 -0.731905 0.502433 0.154336 0.156170 -0.414721 0.157429 0.089186 -0.144518 -0.137125 0.395531 -0.142555 -0.006706 0.016850 0.291048 0.130520 -0.682623 -0.252606 -0.141790 0.776821 -0.855509 0.202740 -0.113247 -0.163187 -0.005352 0.083564 0.265103 0.330890 0.607336 0.419538 -0.138535 0.651313 -0.720296 0.227897 0.781535 0.446697 -0.400461 0.471972 -0.458956 -0.156953 0.184610 0.365349 0.237069 0.042962 -0.386459 -0.282981 0.448671 0.026733 0.583527 -0.113215 0.167732 -0.497177 0.332849 0.206036 0.051834 0.845159 0.092311 -0.726216 0.575538 0.566036 -0.237100 0.008618 0.187915 -0.474963 -0.247931 -0.298984 0.229623 0.433677 -0.510913 -0.263250 -0.125161 -0.361412 0.426260 -0.048974 -0.259282 0.163194 -0.338201 0.335144 0.686310 0.177069 0.047813 -0.235892 -0.486492 -0.509622 -0.667249 0.008038 0.122596 -0.300605 -0.019739 -0.461262 -0.398847 0.602474 -0.074049 0.088249 -1.181773 0.232340 0.399838 0.416256 -0.103210 -0.462895 -0.083230 0.240220 0.014608 -0.019016 -0.351566 0.390806 0.392965 -0.424286 0.312034 0.130101 0.105327 0.414274 0.297498 -0.493265 0.630132 0.062507 0.604719 0.275108 0.233813 -0.334603 0.080887 -0.197726 -0.041977 -0.281162 0.154668 -0.545890 -0.206303 0.437002 -0.090162 -0.629965 0.088505 0.459306 0.325205 0.014413 -0.287219 -0.007168 -0.142031 -0.437428 0.243599 0.272634 -0.247200 -0.341978 0.291927 0.454306 -0.222200 -0.101433 0.125214 0.328059 0.436754 -0.558389 0.345099 0.020678 0.359528 -0.573272 -0.703502 0.321934 -0.109761 -0.263942 0.237043 -1.014222 -0.422163 -0.224281 0.337969 -0.886394 0.189241 0.019539 0.645267 -0.156525 -0.049269 0.388526 -0.119649 0.032178 -0.098381 0.223498 -0.032198 0.363542 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -2.174725 2.653256 2.155102 -2.018625 3.974906 -0.396318 0.205490 1.797732 -2.286347 2.994683 -1.959776 0.540643 -0.754014 -3.381349 0.482632 -2.294133 -0.436674 1.503157 0.325529 2.868919 1.581302 -2.091340 0.305257 -0.692702 -1.458204 -2.879281 -0.410101 1.207317 2.829014 -1.326087 1.470866 0.264841 3.720446 -0.679150 3.291279 2.797832 1.198326 2.919563 1.291034 -2.662423 -0.701648 1.635112 -1.982828 -2.673383 0.654685 -0.979650 -2.119960 -1.149491 1.363204 -1.234663 -1.103680 2.917601 -0.754167 -0.555294 -2.740244 2.308549 1.396876 -0.103959 3.805032 0.453938 -0.911073 -1.491948 -3.318600 2.494749 -1.858672 0.438894 -1.635239 -2.079260 1.180733 0.474347 -0.683994 -1.360486 -1.298474 2.673172 1.313544 -2.953629 0.754958 -1.538251 -3.511654 -2.365839 -2.129835 1.299323 -0.321173 2.795210 0.190339 1.270602 0.103629 1.879367 -0.713919 -4.216045 0.419768 3.042618 -1.716454 -0.881321 -1.098838 3.340997 0.907557 -0.023393 -1.684976 -0.780649 1.393385 -0.716085 1.718649 -3.001497 1.478551 -3.481538 0.215849 -0.038911 0.716865 2.522046 1.266986 2.077606 2.496977 3.008103 -2.622458 -0.286836 -3.477350 0.500787 -1.066770 0.551935 -1.036833 1.960460 -0.073439 1.298558 3.113077 -4.475999 1.857139 0.297573 -0.275937 -3.005548 0.557867 -1.027292 -0.883142 -1.435362 1.977981 -0.191656 -0.615873 -0.968592 0.468696 0.803420 -1.450267 -1.724763 0.829007 3.674078 -3.143023 0.998841 -0.819938 -1.256972 -0.176008 1.529168 2.525922 2.677673 3.662744 2.922516 -0.261978 2.216349 -3.404561 0.203561 3.266640 0.902289 -2.999024 3.471549 -2.536543 -1.483528 0.659457 2.291460 2.544304 1.605464 -3.427932 -3.790911 1.812256 0.470976 3.499164 0.555394 0.139754 -1.787713 3.367894 -0.351780 -1.773782 3.959202 0.381669 -2.614311 0.994805 1.783672 -2.929076 -1.619284 1.912966 -2.746939 0.021947 -1.119667 -0.008654 2.128774 -1.847120 -1.688270 -0.401420 -2.936007 3.369762 -0.714983 -0.490813 0.709655 -2.192560 -3.536272 3.264397 0.373654 -1.141874 -2.589042 -2.439391 -1.395832 -3.042574 1.018605 0.835518 -1.020775 -1.908490 -3.030406 -0.759796 1.589696 0.238882 1.495941 -4.591591 -1.173563 1.912178 1.514846 1.292869 -1.229432 -0.477292 0.302564 -0.176651 0.782265 -0.660279 3.186870 4.074231 -2.202025 2.281729 -0.466884 -2.024830 1.569861 2.139999 -3.789650 4.236715 0.030420 3.057504 0.239436 1.092062 -1.801294 0.262608 0.918789 -1.221553 0.057145 0.457577 -1.043047 -1.189215 0.001904 -1.991840 -1.952988 -0.272495 1.362551 -0.220424 0.980323 0.364971 -1.033190 -1.457985 -1.311423 0.646249 2.317703 -0.740798 -1.142990 2.226281 0.766669 0.392177 -0.336321 0.338626 1.397628 1.970073 -3.848215 0.813081 -0.878423 0.504340 -2.732791 -3.346388 0.864301 -2.062065 -1.298188 1.553641 -3.774608 -0.046097 -2.193449 0.504476 -2.397760 -0.542139 1.030963 3.909924 0.917265 -1.909279 1.703819 -1.499660 2.111075 0.131022 0.082490 0.172509 2.253251 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = -0.772078 0.880750 0.388877 -0.727074 0.859528 -0.372482 0.078920 0.426125 0.373109 0.694227 -1.032109 -0.291798 -0.311547 -0.986331 0.015865 -0.539484 -0.082874 0.998385 -0.155036 0.546388 0.705726 -0.371230 0.109458 -0.685861 -0.230983 -0.626476 -0.197143 0.083438 -0.189055 0.195487 0.392916 0.152803 1.094916 0.375723 0.967995 0.906215 -0.103553 1.524583 0.361730 0.905260 0.058628 0.695317 -0.346034 -1.504270 0.644626 -0.528619 -0.219905 -1.083426 0.272926 -1.175601 1.212830 0.644129 0.047482 -0.292620 -0.841429 -0.057150 0.851723 0.700927 0.985326 0.424169 -0.418409 0.605353 -0.762144 -0.057158 -0.774431 0.506572 0.624219 -0.876268 0.060770 0.316362 0.947033 -0.590370 -0.796204 0.153969 -0.014315 -0.552027 0.329081 -0.362318 -0.979739 -0.263617 -0.599981 0.130865 -0.107645 0.744336 -0.237650 0.054475 -0.819247 0.173806 0.272803 -0.695806 -0.448513 0.804200 -0.062160 0.381358 -0.128009 0.749597 0.421694 -0.177230 -0.392567 -0.001409 0.378625 0.180882 0.378131 0.601143 -1.026607 -0.675349 0.885856 0.575905 -0.530226 0.233665 0.351152 0.676849 0.404157 0.407033 -0.574825 0.807901 -1.316652 0.292249 -0.049069 0.157274 0.172115 0.181344 -0.172032 -0.127289 0.396872 -0.787081 0.988044 0.357949 -0.272657 -0.645539 0.543000 -0.163857 -0.436766 -0.447951 0.587884 0.328431 -0.198040 -0.101318 -0.258380 -0.316668 -0.191171 -0.929495 -0.139534 0.942029 -0.242293 0.127036 -0.366003 -0.568044 -0.113825 0.125782 0.129804 0.221185 1.010638 0.737306 -0.113799 -0.597103 -0.717838 -0.001350 1.200890 0.588178 -0.822701 0.451128 0.293482 -0.031496 0.482710 0.266258 0.395146 0.519877 -0.637804 -0.838500 -0.534359 -0.572502 0.855988 0.877938 0.357032 -0.899238 1.005005 0.252752 -0.296099 1.541811 0.514081 -0.633270 -0.367892 0.644168 -0.994465 -0.714851 0.196025 0.129431 -0.008887 -0.112648 0.189690 0.135240 -0.701309 -1.126915 -0.262546 -0.993519 0.883956 -0.063794 0.293754 -0.108719 -1.072865 -0.406875 1.258286 0.210660 -0.541273 -0.194915 -0.396610 -0.135283 -1.093557 0.365417 0.474379 -0.300892 -0.627833 -0.562669 0.272356 0.597419 -0.554926 -0.157794 0.217920 -0.795301 0.465707 -0.329531 0.259163 -1.306992 -0.378341 -0.042271 0.363963 0.667989 0.513086 0.564341 1.501582 -0.494461 0.113858 1.409893 0.390628 0.307869 1.189483 -0.682450 0.948784 -0.710403 0.481033 -0.015032 0.438332 -0.250152 -0.181258 0.216913 0.186207 -0.047108 0.578610 -0.520316 -0.100232 0.192609 -0.798591 0.071334 0.578540 0.465538 0.330720 0.084833 0.363930 -0.599254 -0.065800 -0.260021 -0.205398 0.830188 0.286102 -1.007636 0.024771 0.283592 -0.344906 -0.485237 0.217573 0.223403 0.794800 -0.829669 0.673645 -0.065136 -0.526180 -0.841548 -0.504483 0.430499 -0.776525 -0.714435 0.437323 -0.889690 -0.208631 -0.507747 0.609765 -0.735827 -0.018947 -0.207932 0.751265 0.656639 -0.037652 0.540843 -0.206616 0.906632 0.268251 -0.324454 -0.011434 1.341924 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = -0.623975 0.243316 -0.135941 -0.561536 1.400903 -0.284704 -0.146853 0.764851 0.239921 0.792303 -0.743461 0.037787 -0.183706 -0.761578 0.074035 0.073134 0.084815 0.664853 -0.401100 -0.013825 0.448471 0.038763 0.312223 -0.376922 -0.245488 -0.765517 -0.123485 0.241799 0.074178 0.026871 -0.286352 0.099859 0.953104 -0.166864 0.556995 0.527024 0.563129 0.892781 0.214621 0.247621 0.432793 0.368942 -0.269539 -0.987587 0.368703 -0.438322 -0.666041 -0.508306 0.496348 -0.983712 0.703665 0.574373 0.030782 -0.340992 -0.500720 0.515782 0.490985 0.012366 0.897861 0.256461 -0.685685 -0.128637 -0.607403 0.874114 -0.735321 0.547818 -0.035145 -1.009603 -0.515622 0.643956 0.365694 -0.457477 -0.617488 0.102844 0.171720 -0.540008 0.255565 -0.182214 0.502563 -0.385855 -0.533195 0.241805 -0.345825 0.530191 -0.027225 0.170190 -0.352112 0.085541 0.187434 -0.678352 -0.257035 0.711627 -0.364231 0.387570 -0.419681 0.102652 0.213112 -0.353866 -0.190423 -0.383905 0.145561 0.074549 0.341450 -0.035796 0.001881 -0.495697 0.503064 0.454650 0.118258 0.250212 -0.014384 0.200110 0.094154 0.372670 -0.117357 0.257401 -1.129538 0.300316 -0.104072 0.107008 -0.274141 0.171136 0.458746 0.158267 0.533443 -0.851378 0.912668 0.093734 -0.330233 -0.413886 0.354452 0.101818 -0.307841 -0.100827 0.545153 -0.105723 -0.172559 -0.013271 0.334091 -0.136169 -0.698472 -0.320821 -0.251919 0.367739 -0.578016 0.235984 -0.224272 -0.391444 0.033246 0.257974 0.313100 0.341220 0.945944 0.642753 -0.139712 0.068360 -0.906079 0.357298 1.019346 0.281162 -0.685966 0.515063 -0.404628 0.052985 0.387353 0.372872 0.197797 0.602474 -0.184283 -0.205530 -0.171373 -0.100681 0.845857 0.468273 0.360289 -0.890071 0.137301 -0.249132 0.229393 1.238628 0.598944 -1.037786 0.237078 0.787086 -0.466258 -0.381147 0.168524 -0.317390 -0.259827 -0.405506 0.320410 0.544880 -0.716306 -0.732821 0.015237 -0.673450 0.760068 -0.083692 -0.243929 0.255886 -0.851900 0.083186 1.016983 0.230219 -0.153469 -0.225044 -0.587818 -0.409048 -1.050767 0.159620 0.422471 -0.365561 -0.280068 -0.587703 -0.158122 0.755792 -0.194867 0.153907 -0.805756 -0.009722 0.520908 0.016063 0.235159 -0.734137 -0.183103 -0.072414 -0.122946 0.293542 -0.291300 0.142785 0.751100 -0.609281 0.531215 0.585601 -0.145767 0.133238 0.671624 -0.508299 0.923426 -0.064710 0.399855 0.150181 0.443318 -0.320780 0.197838 -0.173492 -0.075416 -0.218671 0.503070 -0.791426 -0.314652 0.400352 -0.522071 -0.487880 0.325481 0.634475 0.386276 0.051941 -0.150986 -0.346781 -0.190032 -0.379600 0.134020 0.529500 -0.220444 -0.778584 0.187299 0.484276 -0.698186 -0.560673 0.264211 0.309764 0.793014 -0.803682 0.563657 0.141026 0.042793 -1.052294 -0.501024 0.118349 -0.385724 -0.431126 0.280379 -1.047280 -0.624872 -0.381918 0.573938 -0.647752 -0.096349 -0.007319 0.838079 0.313653 -0.004533 0.674900 -0.063029 0.335752 0.054591 -0.140265 0.134156 0.643909 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = -3.341451 2.971349 1.339711 -3.929942 5.359614 -1.466410 0.400406 1.521954 0.824287 3.274815 -4.308475 -0.548920 -1.415273 -5.119625 0.179697 -2.707336 -0.217613 3.875470 -1.085584 3.043197 2.916985 -2.136213 1.318529 -2.731599 -1.326855 -3.218252 -0.657243 1.076437 -0.089334 0.553178 2.258812 0.272967 4.539774 0.812707 3.362430 3.328942 0.077288 6.574902 0.922849 1.942757 1.019137 2.498494 -1.179988 -6.466199 2.743304 -2.039611 -2.706225 -4.510690 1.733272 -5.811774 2.637362 3.373772 0.237922 -2.101013 -4.152164 0.904860 4.643375 1.815351 4.356415 1.615854 -1.948484 1.182037 -3.771946 -0.483207 -3.356666 1.740705 2.073330 -3.894745 -0.272794 2.475269 2.368367 -2.242932 -3.687882 0.335057 1.353528 -2.663731 1.312748 -1.727248 -4.046245 -1.792321 -1.832008 0.611658 -0.699669 3.386222 -0.789470 0.991430 -1.277849 0.578831 0.940039 -3.244431 -1.764300 3.676468 -0.356226 0.889593 -1.237938 3.905949 1.627666 -1.789268 -2.820122 -0.569067 1.288385 0.466563 1.923806 1.125784 -4.218777 -3.538689 3.083125 2.372907 -1.312772 1.400547 0.915653 2.289669 0.761482 1.695524 -3.607806 3.799575 -5.907458 0.789972 -0.592174 1.147628 -0.400413 0.828239 0.242444 0.499735 1.879595 -4.010151 5.232312 1.360861 -1.194826 -2.974971 2.410653 0.290106 -1.403375 -1.279798 2.658140 0.256702 -0.633963 0.091704 -0.205590 -0.831618 -1.153476 -2.756625 -0.488994 4.329330 -1.692410 1.275591 -1.318197 -2.500331 0.050944 0.263124 1.150542 0.816345 4.969432 3.215951 -0.635369 0.092792 -3.459280 0.875886 5.963831 2.567397 -3.539908 2.361736 0.561534 0.134078 1.565970 1.227799 2.145802 2.221506 -2.995652 -3.366834 -1.019055 -1.972533 3.795627 3.256752 1.339871 -5.518605 3.862089 0.626688 0.536060 6.557980 2.763971 -3.619126 -0.109224 3.640959 -5.071973 -2.998156 0.607615 0.331793 -0.361376 -0.599506 1.565031 1.087189 -2.926072 -5.318437 -1.941933 -4.001259 3.437651 -0.705934 0.168765 -0.186595 -3.958750 -2.266550 5.112913 0.520599 -2.236113 -1.001336 -2.442561 -0.966136 -5.369053 1.401009 1.937328 -1.914809 -2.389634 -2.526296 0.294957 2.994395 -2.172107 -0.568527 -1.477621 -2.246562 2.330833 0.172799 1.303590 -4.670973 -1.211013 0.209815 1.035228 2.058960 1.455341 1.811154 5.702392 -2.736995 1.229272 3.238414 0.339710 2.088075 5.056218 -2.902559 4.988109 -1.857316 4.418814 -0.266719 1.981612 -0.835317 0.189690 0.685588 -0.607525 -0.293929 2.548815 -3.150276 -1.149466 1.824575 -2.513298 -1.357273 2.531162 2.981790 1.450723 0.656165 1.520596 -1.999242 -0.639119 -0.849809 -0.227442 3.171099 0.271634 -4.206908 0.072038 2.637790 -1.313475 -2.485874 1.076486 1.736141 3.707487 -4.009276 3.661731 -0.540444 -1.812821 -3.805529 -2.778584 2.675496 -3.517811 -2.685392 2.250224 -4.639408 -1.260117 -2.246678 3.396374 -2.748082 0.006595 -0.636805 3.542263 2.537443 0.006234 2.892161 -0.991874 3.125691 0.140848 -0.830330 0.548130 5.180722 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = -3.170697 3.409119 1.709947 -3.310035 4.416749 -1.684397 0.758075 1.828841 0.402976 2.913832 -4.171226 0.063935 -1.289817 -4.354931 0.078861 -2.390201 -0.158262 4.079656 -0.739729 2.647565 2.802989 -1.597826 0.820958 -2.749774 -1.204341 -3.090258 -0.489002 0.626290 -0.618760 0.747530 2.251588 0.558269 4.510282 1.093885 3.435952 3.470960 -0.078314 6.341420 1.371501 2.557215 0.736022 2.505571 -1.146015 -6.153975 2.670151 -1.957248 -1.701869 -4.340920 1.340739 -5.435093 3.509681 2.782870 0.331112 -1.613119 -3.719028 0.469009 4.341249 1.598647 3.970841 1.602412 -1.951052 1.629244 -3.073921 -0.156029 -3.180180 1.616938 2.411010 -3.527016 0.109429 1.970460 3.347692 -2.475680 -3.475989 0.262220 0.422072 -2.456157 1.133998 -1.433081 -4.153609 -1.584652 -1.964561 0.428594 -0.453416 3.020355 -0.858016 0.520020 -2.460021 0.500763 1.162120 -2.775328 -1.929725 3.530306 -0.217727 1.278181 -1.410735 3.374665 1.669604 -1.406706 -2.116101 -0.549786 1.355230 0.570410 1.662491 1.453047 -4.385819 -2.929526 2.937076 2.133187 -1.863115 1.421090 0.575747 2.710215 1.078589 1.417398 -2.778319 3.639548 -5.829739 1.159559 -0.178836 0.745627 0.185024 0.515078 -0.328105 0.042559 1.642391 -3.500056 4.621236 1.267357 -1.121162 -2.847707 2.297827 0.116826 -1.429711 -1.586480 2.508217 0.809430 -0.661405 -0.076331 -0.585031 -1.039187 -0.907250 -3.977221 -0.562798 4.329513 -1.710269 0.890028 -1.437374 -2.252101 -0.212219 0.236262 0.664884 0.739654 4.252709 3.026296 -0.373144 -0.484195 -3.210789 0.249140 5.152573 3.319002 -3.272276 1.977639 0.921483 -0.103800 1.831506 1.028488 1.652810 1.947601 -3.083804 -3.620752 -1.140709 -2.284665 3.517592 3.479472 1.251298 -4.793680 3.954748 0.853864 -0.225761 6.233184 2.396125 -3.089682 -0.501341 3.097292 -4.020198 -3.043413 0.595600 0.271151 -0.723756 -0.229021 1.075505 0.704164 -2.768780 -4.818873 -1.514788 -3.806850 3.306132 -0.456624 0.452499 -0.393372 -3.959251 -2.167146 4.769426 0.629325 -2.086402 -0.821589 -1.969361 -0.700488 -4.918969 1.376328 1.984135 -1.509568 -2.504882 -2.378138 0.687455 2.513097 -2.274437 -0.715859 -0.591058 -2.876888 2.123745 -0.410306 0.946388 -5.633152 -1.275033 0.024993 1.550329 2.264584 1.783371 2.146875 5.795954 -2.337924 0.779465 4.413046 0.904994 1.661821 4.906219 -2.763423 4.122267 -2.371263 3.600185 -0.032118 1.694326 -0.974076 -0.330759 0.688564 0.378409 -0.386981 2.295756 -2.701050 -0.741730 1.164987 -2.780977 -0.474785 2.479325 2.457785 1.265998 0.376631 1.553764 -1.879862 -0.482155 -1.194181 -0.678697 3.163639 0.446881 -4.199769 0.134172 1.885197 -1.621152 -1.989226 0.885340 1.558115 3.156810 -3.503501 3.276207 -0.525229 -2.079338 -3.765730 -2.753177 2.597468 -3.429952 -3.172111 1.872084 -4.105522 -1.174542 -1.984365 3.062086 -3.321902 -0.199331 -0.729784 3.044290 2.157712 0.288792 2.568032 -0.911390 3.325313 0.461540 -0.737511 0.084670 5.298579 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -4.187933 9.580678 10.033737 -3.042595 23.649125 -7.958966 0.893366 15.382747 -19.045810 22.675753 -11.430630 -3.579846 -2.896208 -14.041199 1.904507 -6.393861 1.185883 8.755758 0.453218 5.054995 3.539730 -4.945304 1.227718 -0.062798 -1.447899 -6.509312 -1.403735 3.405641 24.059165 -10.696272 4.070511 1.369125 13.191811 -1.516498 14.345438 5.677621 -4.974419 14.944953 6.883044 -10.841629 -1.569309 4.037917 -3.993174 -15.452719 1.124315 -0.430676 -6.043676 -10.408462 4.176613 0.231750 2.592706 6.885155 -2.312277 -0.142594 -6.505581 19.806708 13.487533 11.544126 14.662122 1.043614 0.914204 6.571462 -22.935999 -7.714496 -3.621185 -1.228311 -11.096690 -5.080562 1.288963 0.514257 3.099315 -15.929272 3.251540 22.417779 5.172373 -5.428123 1.780505 -1.984595 -27.200065 -19.789742 -12.300685 1.604137 -1.446864 6.917197 0.148586 2.518699 -2.421572 10.087487 -1.120242 -25.365632 2.185124 13.865323 -3.066486 -9.565612 -2.289442 6.845775 2.267984 -0.332945 -4.867082 -7.963162 1.087767 -4.122009 4.432119 -16.982033 14.647935 -13.158368 7.787297 6.811814 3.880636 8.332054 18.500783 0.622411 10.652238 22.328640 -14.768177 1.774388 -20.290362 2.058226 -3.871002 1.991127 -1.868625 12.372209 3.314187 10.445447 13.323065 -31.696837 11.124841 0.474740 1.338732 -22.146426 0.873009 -1.805052 -1.795289 -2.817635 5.255807 -2.310463 -1.399101 -1.677442 2.626318 3.477138 -7.963145 1.072192 7.728026 27.889228 -20.542494 2.644233 -2.047686 -4.547189 0.742927 1.822279 14.415194 7.011274 15.264914 7.374003 -3.412019 -9.798746 -12.939346 1.916843 16.569730 -9.551919 -5.177676 23.532159 4.891273 -1.916390 1.398680 11.488220 6.970612 4.087054 -19.059138 -18.487857 5.980623 3.066635 6.860063 11.600332 0.585901 3.688228 12.483369 -9.070853 -19.889290 23.492849 -0.413254 -6.138072 -4.638416 3.734923 -10.714370 -2.380329 10.158093 -14.929980 0.696944 -5.459748 3.300798 5.394381 -4.354862 -10.354951 -0.479330 -5.019646 21.515814 -2.386009 -8.707277 4.624110 -4.942450 -1.369746 12.765493 0.587222 -0.661385 -6.288623 -12.284932 -17.721853 -5.829854 2.946362 -1.877657 -1.637685 -1.893621 -5.822360 -2.697499 11.929087 2.884241 4.222684 -7.456334 -7.862701 3.351501 5.524596 10.524728 -7.931409 -0.975604 3.565087 -1.058180 -0.742630 8.352306 19.700415 33.558490 -6.553860 9.591063 10.188948 -0.386533 4.870632 12.371292 -25.369187 8.634046 -7.636559 12.289069 -0.384954 1.952976 -2.752778 1.437836 2.153453 -5.595160 -0.698054 0.267669 -2.036437 -3.002397 -4.235943 -18.707449 -12.276552 -2.102436 3.452496 -6.729094 3.078492 -7.173263 -2.914974 -0.888724 -14.950959 3.227554 4.860416 0.367811 -10.813895 4.777709 2.505921 2.351655 4.438127 0.733080 1.843713 4.769613 -8.225392 0.972108 -2.073770 9.536182 -1.443587 -12.641605 2.149640 -3.170442 -8.851165 5.811186 -12.398938 -5.023389 -5.091228 0.999147 -26.342715 -2.687372 0.742306 24.540202 2.878906 -3.109842 3.575438 -2.094652 2.166979 -2.093914 -0.870689 1.906859 13.953792 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -5.445270 9.991449 11.308873 -3.832762 25.405130 -8.196799 0.948064 16.856690 -17.477647 23.532959 -12.945107 -4.959410 -3.520752 -14.348910 1.916658 -7.628644 0.764724 10.165616 -0.817474 4.937020 4.885019 -3.688059 1.051350 -0.944693 -1.611357 -6.147840 -2.697061 3.322929 23.301228 -10.329490 3.851429 1.609088 14.960065 -1.184532 16.486307 7.103220 -3.705860 17.003278 5.647636 -7.346007 -1.405891 5.418961 -4.948017 -17.418158 2.166230 -1.720354 -6.743291 -11.468857 4.652451 -1.431324 5.851776 7.903758 -2.281018 0.018219 -5.934308 20.134141 13.289929 12.787385 15.979625 2.033581 -1.114752 8.601746 -24.873342 -6.854235 -4.255128 2.059232 -10.829815 -7.406083 -0.145938 0.279687 5.942467 -18.107434 1.531311 23.188432 4.855899 -5.729165 2.849137 -2.578159 -26.079588 -19.855127 -13.931219 1.887630 -1.615032 7.509784 -0.515529 2.227647 -4.278351 10.342104 -1.092059 -26.735667 1.608719 15.649586 -4.232056 -8.033850 -4.479350 5.075577 1.644208 0.545996 -5.461269 -8.424740 1.925111 -3.245119 4.884851 -15.470280 13.630045 -13.694092 9.281115 8.503793 3.370907 7.929982 18.276802 1.431036 11.792048 23.385941 -14.552018 3.662508 -21.549666 2.987220 -4.869236 2.622944 -1.454890 12.998736 3.485654 10.428739 14.095926 -32.376975 12.008187 0.495161 -0.459625 -22.771557 1.688829 -3.129470 -3.221693 -3.699501 6.270393 -1.303895 -2.245212 -2.452727 2.548105 2.536991 -8.072894 -0.781498 7.207083 26.352415 -20.255711 2.228292 -2.772704 -5.413611 0.168827 3.110858 14.984718 7.727133 16.879741 8.576477 -3.445508 -12.661789 -14.137286 1.728293 17.685212 -9.625554 -6.795284 24.180663 4.733044 -1.430132 2.552737 12.036071 6.997493 5.857359 -18.898073 -18.616156 4.003655 2.634934 8.557400 13.985155 1.234274 2.640455 12.200349 -10.803590 -21.303175 26.051061 1.272652 -7.585580 -6.497707 3.955787 -10.359478 -4.116191 10.599358 -15.240256 0.169272 -5.773765 3.574213 5.604224 -5.435756 -11.742767 1.197477 -6.842951 23.166820 -2.492047 -8.391177 4.536874 -7.659730 -2.673001 15.198432 0.914137 -1.831697 -6.462207 -12.570366 -16.526210 -7.119437 3.824829 -0.779819 -1.052611 -3.560962 -6.690844 -1.444759 13.049688 2.188107 4.681495 -5.751949 -9.714764 3.797616 2.759185 12.068777 -10.826617 -1.860695 1.683830 -0.896788 0.936076 8.603080 19.261280 36.516859 -7.265802 9.982529 13.571738 -1.090950 3.299178 14.169837 -26.321734 10.012774 -8.350729 11.474463 -0.807397 2.861065 -3.673841 0.837835 2.371944 -4.160456 -0.642857 1.774990 -2.117355 -2.806236 -5.238189 -21.076987 -11.331445 -1.310620 3.583326 -7.256601 3.307562 -6.926093 -4.669693 -1.188418 -15.587659 2.652710 6.615833 0.308983 -12.578616 4.916162 1.670805 0.625167 3.959451 1.163545 1.695969 6.608475 -9.499979 1.154581 -1.514603 8.459593 -3.444125 -12.829551 1.079100 -4.795140 -9.830159 5.808856 -12.424939 -5.735388 -6.123696 1.414998 -26.534624 -4.190539 0.982517 25.941667 5.065994 -3.452411 4.532361 -2.045124 4.400200 -1.072022 -2.005430 2.209148 15.708520 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -2.834681 3.509100 1.665659 -1.756626 5.624719 -0.705941 -0.078165 3.191328 -3.924005 4.989393 -2.061511 0.734231 -1.072517 -4.907417 -0.042894 -1.851113 -0.945835 1.861643 0.425628 2.673033 1.997718 -2.752605 0.084320 -0.096091 -2.101721 -3.299883 -0.349229 1.403686 5.154349 -4.064238 0.674976 -0.063545 5.049887 -1.087215 5.342083 3.728824 1.459489 3.487436 1.719945 -3.350532 -2.226955 2.299545 -2.965683 -3.344103 0.197929 -1.271942 -2.501814 -1.564983 1.863565 -0.212362 -0.559321 3.767011 -1.360831 0.462640 -3.058982 3.832519 1.132559 -0.391490 5.951004 0.195897 -1.239223 -1.355465 -5.069583 4.166568 -1.890431 0.260361 -1.854994 -2.078689 2.100977 -0.961042 -1.135787 -2.981816 -0.341787 5.380153 1.823536 -4.197175 0.127848 -2.335353 -6.899950 -4.340413 -3.725412 1.336190 0.155988 3.188340 0.538196 1.686592 0.732701 3.290442 -1.879693 -7.116457 1.560020 5.000194 -2.617242 -1.028292 -2.205536 4.539079 -0.203971 1.241251 -2.440796 -0.740472 1.593077 -0.459022 2.177634 -6.036542 3.247522 -5.191786 0.638544 -1.827182 0.541599 1.406563 3.305613 0.898549 3.873504 5.804897 -3.590639 -0.749022 -5.091288 0.669178 -0.490204 1.102621 -0.866188 2.659663 -0.507402 1.177097 4.994530 -7.230314 1.266587 -0.501151 -0.506357 -6.462342 -0.170092 -2.525682 -1.171787 -1.801446 2.344888 -0.302218 -0.709385 -2.581408 0.699578 1.344538 -3.580878 -2.874658 2.339976 5.913552 -4.690284 1.063730 -1.033082 -1.294968 -1.078347 2.613416 4.282757 4.013301 5.956288 3.888870 0.340821 2.937801 -4.814700 -0.829656 3.812318 0.942555 -4.097337 5.328338 -4.034497 -1.889658 0.593602 4.030506 3.755159 1.207128 -4.865743 -4.796462 4.667684 1.607298 4.654088 -0.675419 0.387313 0.763126 4.908926 0.942217 -4.183449 5.523460 0.822521 -3.923111 2.980572 0.741085 -1.238034 -1.324694 3.779316 -4.556488 0.301603 -1.164354 -0.315300 2.243932 -2.032381 -0.407721 0.324204 -3.827496 5.698477 -1.043750 -0.158812 2.218626 -3.523621 -4.170290 3.469052 -0.109175 -1.577836 -3.675213 -3.452152 -3.989877 -2.929934 1.448142 0.831776 -1.470399 -2.758762 -4.358526 -0.134475 2.882075 1.421130 3.204348 -5.556200 -2.427982 2.225818 2.235454 3.048187 -1.574338 -0.471030 -0.027863 0.235536 1.790703 -0.931772 4.927151 6.989422 -2.433264 3.627688 -0.828895 -2.012437 1.615229 2.369671 -6.276316 5.142854 0.858649 2.594307 -0.076901 1.076321 -2.247111 0.372592 1.503837 0.308245 1.062354 -0.158940 -0.055006 -1.490578 -1.718482 -4.489308 -2.066245 -1.410555 0.723437 -0.880169 1.660948 -0.380650 -1.553000 -1.903875 -3.600137 0.477727 3.035923 -0.537915 -0.679984 3.552626 -0.686589 1.438123 2.806177 0.201173 1.468820 2.062550 -4.780721 -0.867503 -1.258419 1.180549 -2.755371 -4.985386 -0.605052 -2.737919 -1.856411 1.995793 -4.746913 0.257985 -2.914859 -0.622257 -5.407646 -0.294903 0.954366 6.262263 2.090125 -2.252767 1.864864 -1.887438 3.172259 0.531114 0.104150 0.713371 3.263068 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.837365 0.695128 0.293221 -0.556918 1.800532 -0.385970 -0.112230 1.241886 -0.374942 1.290114 -0.715373 0.067549 -0.169566 -1.069734 0.073754 -0.280505 -0.234239 0.788204 -0.241648 0.330282 0.604758 -0.088550 -0.040847 -0.138635 -0.568321 -0.736825 -0.275676 0.406464 0.868081 -0.939277 -0.196184 0.156639 1.536265 -0.398940 1.588072 1.086066 0.813038 1.009311 0.282925 -0.152836 -0.105083 0.610381 -0.756587 -0.989520 0.094851 -0.428395 -0.810472 -0.407505 0.557357 -0.337660 0.746309 0.927534 -0.182726 0.138809 -0.529533 1.075808 0.023017 -0.035555 1.516553 0.268887 -0.863779 0.092984 -1.384580 1.691788 -0.673624 0.679023 -0.565068 -1.042648 -0.021209 0.051610 0.378774 -1.144980 -0.430473 1.142428 0.257834 -0.989040 0.283952 -0.525115 -0.394210 -1.019494 -1.058232 0.499463 -0.142093 0.736291 -0.006426 0.322898 -0.423966 0.692461 -0.407093 -1.681843 0.126805 1.369863 -0.970070 0.156563 -0.940050 0.435296 -0.031812 0.287848 -0.421207 -0.511544 0.481112 -0.008741 0.525372 -0.919843 0.954956 -0.942246 0.268755 -0.024526 0.133176 0.380865 0.417098 0.397977 1.000483 1.327261 -0.286045 -0.063893 -1.489059 0.434149 -0.366702 0.308940 -0.226926 0.612274 0.253292 0.389196 1.223055 -1.654228 0.534252 -0.205751 -0.372754 -1.313716 0.131631 -0.548417 -0.552210 -0.539265 0.707969 0.129585 -0.323485 -0.593513 0.349804 0.203735 -0.934113 -0.925153 0.329295 0.736545 -1.060703 0.163740 -0.296049 -0.349450 -0.330283 0.842696 1.092136 0.990011 1.629684 1.038039 0.113274 0.077883 -1.476147 -0.124747 1.007360 0.014761 -1.128930 1.342732 -1.128172 -0.373068 0.387225 1.120372 0.597596 0.633926 -0.835569 -0.897004 0.591033 0.335117 1.405916 0.094093 0.113479 -0.080749 0.685754 -0.235606 -0.977307 1.811450 0.508966 -1.337370 0.352021 0.350142 0.063635 -0.626614 0.933439 -1.204368 -0.215695 -0.352497 0.092864 0.683460 -0.667886 -0.258003 0.530889 -1.060380 1.444985 -0.315021 -0.372356 0.462955 -1.269557 -0.759721 1.319565 0.125142 -0.379773 -0.736663 -0.860685 -0.539495 -1.001151 0.345304 0.461761 -0.177814 -0.732466 -1.075516 0.097378 0.975335 0.074188 0.774413 -1.186164 -0.677049 0.657024 -0.019024 0.760828 -0.883383 -0.158533 -0.363743 0.039054 0.519038 -0.474173 0.856974 1.926472 -0.678005 0.913644 0.598980 -0.669553 -0.016158 0.815085 -1.524123 1.446229 0.171441 0.151858 0.067721 0.320747 -0.726891 -0.048272 0.132838 0.392144 0.028407 0.191649 -0.175068 -0.303939 -0.518689 -1.306682 -0.370905 -0.110549 0.427597 -0.244779 0.368087 -0.205887 -0.589524 -0.508016 -1.075338 0.062846 0.879699 -0.265367 -0.528339 0.977550 -0.127455 -0.327264 0.462582 0.055852 0.414489 0.873663 -1.267079 -0.059467 0.016249 0.321726 -1.209485 -1.157330 -0.392046 -0.798620 -0.501028 0.166657 -1.116277 -0.512873 -0.734418 0.117698 -1.274026 -0.354782 0.429544 1.661624 0.785803 -0.563314 0.624122 -0.412929 0.976173 0.343664 -0.165627 0.195099 0.897096 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -4.133009 2.996864 1.801860 -4.161340 7.886200 -1.472357 0.273078 2.513614 0.285498 5.637018 -4.362249 -0.144063 -1.456915 -5.503942 0.094660 -3.394482 -0.850156 3.839407 -1.326728 2.639316 3.043283 -1.617803 1.507860 -1.929253 -2.193960 -6.000975 -1.350981 1.907302 1.863158 -1.572292 2.247748 -0.026119 6.427632 -0.944125 4.738177 4.554498 2.349484 6.094851 0.385200 1.937177 0.795427 2.791398 -2.673047 -5.601049 1.776646 -1.838924 -4.718607 -3.656553 2.763684 -5.289225 1.877386 4.812113 -0.684499 -1.685291 -3.730385 3.950722 3.551173 -0.058138 6.242824 1.134067 -2.914252 0.594790 -5.639497 4.522141 -4.010670 2.451244 -0.405422 -5.325778 -0.770657 2.005367 1.380866 -2.792780 -3.551421 2.931765 2.321106 -4.600946 0.840878 -2.751824 -3.702874 -3.500887 -3.274016 1.744789 0.201222 3.898287 0.250521 1.783085 0.016995 2.253623 -0.313501 -6.062955 -0.529310 5.686615 -2.303044 0.238837 -3.151053 3.158340 1.246837 -1.155411 -2.418564 -1.638152 1.379009 -0.293847 2.835864 -1.248096 -1.540095 -4.865518 1.642002 1.741796 0.033009 1.363693 0.500132 1.923472 2.176718 4.021138 -3.875555 2.689306 -6.805744 1.794042 -0.791833 1.319976 -1.239045 1.924960 0.825903 2.034744 4.532183 -6.345405 4.606470 -0.040375 -2.184845 -4.746576 1.282507 -0.694760 -1.699078 -1.586434 3.123594 -0.300900 -0.927477 -1.124674 1.219105 0.027813 -2.042330 -3.012930 0.537344 3.814852 -3.168647 1.823454 -1.416533 -2.308918 -0.494134 2.287767 3.275243 3.185231 7.086434 4.790899 0.087238 1.662551 -5.679313 0.425708 6.076667 2.815288 -4.676488 4.772827 -2.684984 -0.909591 1.759215 3.470778 2.829581 2.975669 -4.010443 -3.752238 0.678126 -0.450888 5.902623 2.567784 0.662350 -4.584426 3.611229 -0.315366 -1.020176 7.946454 4.077432 -5.628536 1.578903 3.742894 -4.361729 -3.872704 2.709075 -2.501159 -1.206232 -1.409472 1.292358 2.615641 -2.959847 -4.035063 -0.282002 -4.993602 5.415596 -1.183179 -0.707648 2.239667 -5.106844 -5.317296 5.508095 0.381377 -2.026449 -2.884812 -3.867625 -1.787119 -6.052489 1.841167 2.237666 -2.218030 -2.852098 -4.526552 0.255406 3.946241 -0.627418 2.299899 -4.534993 -2.539421 3.190192 0.761368 2.494777 -4.248435 -0.903815 -0.564920 0.508498 1.744731 -0.244232 2.765076 7.178932 -3.720439 3.105225 1.406101 -2.923106 1.453441 4.651334 -5.401665 6.908395 -0.299983 3.156006 0.205132 2.093467 -2.178408 0.829343 0.948993 -0.825580 -0.045168 1.859817 -3.172628 -2.091946 0.832923 -4.439136 -2.283844 1.075023 3.039859 0.364228 1.355323 0.886043 -2.794845 -1.587939 -2.278034 0.375658 3.961073 -0.100428 -3.649303 2.572148 2.129899 -1.659793 -2.153908 0.849783 2.324880 4.185636 -6.069296 2.708691 -0.635586 -0.482976 -5.653780 -4.720533 1.601227 -4.666466 -3.601220 1.817877 -6.061171 -1.781427 -3.631693 2.132644 -3.823766 -1.534666 0.916428 6.159465 3.009235 -1.373314 3.622296 -1.796731 3.726033 0.159638 -0.845968 1.359128 4.884862 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -5.973711 3.807473 1.337724 -5.287336 12.139664 -3.226647 0.734626 3.847475 -2.563250 8.635912 -4.311690 -1.958679 -2.820771 -10.843179 1.101455 -4.190011 -0.495340 6.026260 -0.249505 6.436200 4.731114 -4.999118 1.471326 -1.379751 -3.126129 -7.186701 -1.696320 3.642950 6.312648 -5.200356 2.018040 0.898349 10.873805 -1.192068 9.431928 7.809028 2.087790 8.198936 2.512229 -4.588857 -1.368987 4.736083 -4.930152 -8.045292 1.993842 -1.723325 -7.422154 -5.652071 4.317962 -4.176907 -0.142018 8.362282 -2.183233 -0.939163 -7.056568 5.143639 4.614706 1.064495 9.903840 1.621354 -1.798708 0.427456 -9.118515 5.749788 -4.961420 0.558639 -2.398885 -6.968457 1.756387 1.221460 0.441102 -4.985304 -4.010200 6.923447 5.101932 -7.351901 1.695138 -3.858105 -7.874092 -8.227518 -7.484564 2.575680 -2.154252 7.602209 0.271067 3.225070 0.889079 4.274069 -1.710554 -11.101008 1.436456 8.251939 -3.541607 -1.986444 -3.270355 8.056257 2.689696 -0.454085 -5.268980 -3.051148 2.509882 -2.752449 5.079092 -2.497332 2.393638 -6.899110 0.145260 -0.155001 2.159339 4.994109 4.892067 2.545363 5.237360 7.640429 -7.152955 0.788822 -9.257436 2.759674 -3.165674 2.307628 -1.807958 4.900460 2.138611 2.529702 7.743473 -12.101501 4.504025 0.563860 -0.766510 -8.274122 1.496985 -2.431643 -2.350535 -3.704316 5.722720 -1.256597 -1.548614 -2.496227 1.858192 2.224471 -3.710200 -1.472337 1.478449 8.573439 -6.845089 3.117541 -2.403140 -4.400207 -0.232194 3.335773 6.327956 7.244512 11.055363 8.364985 -1.586307 2.812940 -9.849792 0.631507 9.548137 0.694117 -7.096508 8.894333 -4.595386 -2.688981 1.697384 7.581166 7.008473 1.597858 -6.225709 -6.148113 2.954624 1.648379 9.247232 0.791454 0.423631 -4.474118 6.474326 1.707031 -4.284729 11.717438 3.001789 -7.199100 3.378863 4.644487 -7.692195 -5.044590 4.745054 -5.722437 -0.251750 -3.595880 2.528025 5.020685 -4.765881 -3.864556 -0.463932 -7.518544 7.861632 -2.525109 -2.397657 3.782025 -6.981792 -7.139472 9.439725 0.487191 -2.634903 -6.246829 -7.884924 -2.800540 -8.036308 3.377423 0.813210 -2.354433 -4.034869 -7.365491 -1.296945 7.133609 1.341726 4.484761 -9.382171 -1.883244 4.749079 3.575089 4.273141 -4.458517 -1.274880 1.517392 0.124184 1.416628 -0.271487 5.594537 11.251294 -6.433060 2.765824 0.708981 -3.425257 4.420256 5.486863 -10.673572 11.204927 0.753441 7.023987 0.049930 2.625210 -3.166284 1.086217 2.559947 -0.881378 -0.020014 1.643870 -2.862208 -3.362776 1.362798 -5.709540 -6.155749 -0.865575 4.056308 -0.198940 3.261698 -0.525979 -4.654353 -2.033210 -3.252800 2.068429 6.366360 0.238258 -2.975425 5.674721 2.677074 1.171843 -0.457327 0.926475 3.175728 5.950160 -10.172254 2.493029 -2.141217 2.832955 -5.123622 -8.978682 2.637983 -6.252556 -3.300849 4.941751 -9.709672 -1.297275 -6.290878 1.816512 -6.897566 -0.128429 1.664206 10.496105 4.312402 -3.701724 4.574034 -3.376823 4.987789 -0.588197 -1.067774 1.908481 7.175511 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.312442 -0.101731 -0.239755 -0.583775 1.207551 -0.488101 -0.461157 1.127598 0.484391 0.532759 -0.275105 0.223665 0.195457 -0.758625 0.122753 0.024075 0.175156 0.515344 -0.230152 0.345998 0.211870 0.060277 0.137584 -0.076072 -0.292573 -0.358581 0.111481 0.398179 -0.107815 -0.223247 -0.015023 0.272816 0.680696 0.009038 0.835986 0.456395 0.458146 0.395233 0.374822 0.233874 0.375098 -0.149512 0.055113 -0.537403 0.064028 0.085030 -0.834281 -0.227512 0.177282 -0.710706 0.475982 0.577767 -0.016913 -0.038659 -0.366364 0.356897 -0.149542 -0.065316 0.445563 0.235607 -0.958787 -0.249658 -0.484154 0.582904 -0.313185 -0.002914 0.012488 -0.540920 -0.017482 0.720331 0.075588 -0.383999 -0.102463 0.157572 0.354220 -0.385556 0.349109 -0.126059 0.689288 -0.172033 0.035827 0.456905 -0.077873 0.243617 0.120288 0.490030 -0.169851 0.077074 -0.286143 -0.641571 0.236609 0.355264 -0.688320 0.046960 -0.635089 0.499600 0.240147 -0.277768 -0.138273 -0.596311 0.284197 -0.279365 0.218787 0.041058 0.037362 -0.325047 0.347013 0.200724 0.278660 0.417724 -0.247210 0.315171 0.304657 0.404111 -0.079276 0.457627 -0.788975 0.282995 -0.418591 0.113220 -0.354792 -0.009408 0.742757 0.692973 0.300550 -0.575584 0.652039 0.282737 0.056568 -0.332595 0.194014 -0.010008 -0.036981 -0.192467 0.445845 -0.212561 0.089859 0.038864 0.280179 0.069064 -0.439209 -0.260089 -0.161393 0.121518 -0.228635 0.344663 0.056249 -0.072742 -0.015338 0.131952 0.539978 0.221302 0.804771 0.126176 -0.094996 -0.007387 -0.652107 0.088045 0.724605 -0.125601 -0.387480 0.816705 -0.368776 -0.158167 -0.160514 0.550475 0.273378 0.014097 -0.270998 -0.263756 0.179108 0.217727 0.494404 -0.090164 -0.070988 -0.588477 -0.032196 -0.244694 0.151075 1.047449 0.347533 -0.799352 -0.070139 0.657119 -0.302586 -0.253626 0.257106 -0.341463 -0.071276 -0.103641 0.465759 0.303262 -0.431060 -0.362654 0.199871 -0.415667 0.211560 -0.142346 -0.227017 -0.179121 -0.434644 0.254230 1.072259 0.113431 -0.096528 0.094382 -0.635773 0.024277 -0.672106 -0.193522 0.284454 -0.010621 0.276728 -0.188806 -0.371883 0.559274 -0.142604 0.177655 -0.834231 0.075344 0.477986 -0.257995 -0.185070 -0.347492 -0.061314 -0.096502 -0.107439 -0.024351 -0.348238 0.014544 0.458991 -0.153901 0.582156 0.233850 -0.242882 0.271813 0.307601 -0.647142 1.040539 0.149363 0.349230 0.376874 0.227300 -0.366982 0.051814 -0.301619 -0.241522 -0.323441 0.341836 -0.509445 -0.231184 0.284635 0.024915 -0.645278 0.034725 0.610737 -0.056910 0.172586 -0.122858 -0.198801 -0.372331 -0.668022 0.586450 0.092335 -0.315316 -0.205530 0.401362 0.829111 -0.220842 -0.184520 0.147098 0.370901 0.724251 -0.670752 0.465119 0.306375 0.366472 -0.513650 -0.409829 0.266655 -0.385343 0.049798 -0.517733 -0.995848 -0.739240 -0.187933 0.443436 -0.280937 0.233844 0.338689 0.958806 0.339047 -0.405051 0.327822 -0.315373 -0.144668 0.065287 0.225837 0.048985 0.445223 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -3.808842 1.795966 0.125021 -3.101945 7.715118 -1.830163 -0.041467 2.269049 -2.176358 5.450827 -2.466283 -2.180648 -2.046331 -6.801547 0.903193 -2.235474 -0.180536 3.446300 -0.191676 4.227353 3.151438 -3.458528 0.858487 -0.759720 -1.797039 -3.445410 -1.042915 2.324295 5.013522 -3.676344 0.368116 0.566957 6.736500 -0.961586 6.451735 4.857262 1.385561 5.021092 1.432619 -4.143594 -1.332128 3.421383 -3.433558 -4.946473 1.005260 -1.296484 -4.812393 -3.649282 2.941403 -1.617296 -0.321682 5.489484 -1.613456 -0.430834 -4.546456 3.304971 2.550686 1.136952 6.506617 1.063974 -0.627027 0.494367 -5.879673 4.032582 -3.109215 0.698932 -2.099181 -4.228930 1.147156 0.274210 -0.218589 -3.202994 -2.564661 4.832087 3.368348 -4.592094 1.392577 -2.408789 -4.094076 -5.876704 -5.420668 1.554807 -2.257222 5.085836 -0.019118 2.033504 0.634402 2.943132 -1.170158 -7.402018 1.232820 5.202240 -2.361560 -1.834247 -2.077989 5.179054 1.727309 0.079661 -3.705373 -1.672478 1.675855 -1.883606 3.355256 -2.046980 3.185866 -4.271492 -0.050452 -0.187407 1.932918 3.558210 4.094504 1.300486 3.762787 5.170808 -4.052682 -0.272935 -5.308460 1.406027 -2.386604 1.606003 -1.131917 3.781575 1.981613 1.093313 5.079330 -8.084363 2.444685 0.469253 -0.370392 -5.047336 1.038279 -1.986024 -1.679050 -2.417515 3.807074 -0.868099 -1.167759 -1.832682 1.437131 1.687131 -2.835513 0.130696 1.019749 5.079417 -4.312919 1.891728 -1.637405 -2.998243 0.052611 2.307234 4.097307 5.001302 7.036944 5.551269 -1.533202 1.609238 -6.317609 0.702933 6.015623 -1.032331 -4.758144 5.727287 -3.247388 -1.669004 1.021509 5.122964 4.789628 1.052530 -3.424247 -3.497096 1.634856 1.469862 5.944013 0.237606 0.568236 -2.139148 3.875011 1.207359 -3.012075 7.220717 1.419075 -4.381303 2.043328 2.745181 -5.008387 -2.903293 3.190402 -3.993608 0.178544 -2.865238 1.736737 3.458078 -3.339094 -2.119178 -0.185381 -4.851104 5.175313 -1.645464 -1.986255 2.303610 -4.478809 -3.421758 5.898963 0.584438 -1.730467 -4.434226 -5.245579 -2.348619 -4.932653 2.412873 0.010486 -1.070533 -2.846365 -4.765949 -1.110677 4.621153 1.305848 2.906060 -6.111145 -0.502500 2.914981 2.863875 3.304461 -2.289287 -0.956371 1.186421 -0.379732 0.955698 -0.506891 3.185263 7.189231 -4.322311 1.431807 0.296109 -2.462918 2.892837 3.274996 -7.041576 7.184494 0.933086 4.189222 -0.264688 1.817957 -1.999475 0.755417 1.664215 -0.574516 0.165263 1.124640 -1.494271 -2.171541 0.673850 -3.457245 -4.218198 -0.931050 2.350036 -0.168609 2.279825 -1.194731 -3.276744 -1.240442 -2.054871 1.530826 4.253013 -0.037503 -1.591119 3.699326 1.351479 1.168814 0.372172 0.684050 1.611002 4.073341 -6.623660 1.083137 -1.391470 2.452899 -2.657847 -5.285199 0.997058 -3.245302 -1.336217 4.170263 -5.757648 -0.672713 -4.180056 0.863354 -4.184206 -0.054902 0.995723 6.833563 2.905427 -2.603540 2.637693 -2.070405 3.201400 -0.289141 -1.056007 1.095735 4.171256 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -1.577972 0.608005 0.146381 -1.413631 3.694854 -1.048383 0.180276 0.885062 -0.293848 2.142279 -1.153730 -1.155029 -0.567030 -2.759443 0.677151 -1.137990 0.081958 1.559437 -0.165684 1.587255 1.188643 -0.916431 0.208928 -0.287706 -0.705167 -1.720412 -0.843273 1.211381 1.912318 -1.787500 0.007314 0.597654 3.116010 -0.723019 2.961334 2.382471 1.070932 1.802562 0.491878 -1.887368 0.093182 1.212209 -1.459385 -1.993888 0.097108 -0.241018 -2.513809 -1.361285 1.289727 -0.502538 -0.269347 2.405670 -0.643865 -0.058983 -1.871746 1.683810 0.706709 0.511837 2.652490 0.619806 -0.648524 0.598116 -2.483664 2.405282 -1.366490 0.534909 -1.658668 -2.348683 0.060007 0.619267 -0.081266 -1.549340 -1.293089 1.879255 1.515650 -1.922107 0.784759 -0.877044 -0.512000 -2.440444 -2.276284 1.097427 -0.997526 2.180090 0.161932 0.841633 0.139664 1.118265 -0.473219 -2.993932 0.418273 2.252829 -1.414886 -0.817715 -0.695839 1.662172 1.137777 -0.088685 -1.144661 -1.423163 0.744037 -1.256094 1.399324 -0.101642 1.911471 -1.501338 -0.580647 0.198210 1.105172 1.979852 1.204003 0.812571 1.763991 1.899715 -1.394474 -0.544646 -2.204909 1.019930 -1.826280 0.492254 -0.642477 1.627955 1.304815 1.046532 2.151615 -3.195852 1.031422 0.211631 -0.108246 -1.634874 0.411824 -0.723961 -0.937822 -1.048400 1.638959 -0.257002 -0.450615 -0.538923 0.838275 0.793673 -0.660568 0.501075 0.173529 1.409856 -1.747123 0.815907 -0.542087 -1.165673 -0.039646 1.171417 1.911105 2.332709 3.207316 2.454542 -0.866807 0.525506 -3.020103 0.458665 2.579114 -1.108754 -1.870133 2.637790 -1.769769 -0.868863 0.468440 2.478305 1.702445 0.543332 -1.261407 -1.225704 0.283369 0.689018 2.652808 -0.081989 -0.088114 -1.129087 1.168136 -0.032888 -1.238676 3.314977 0.481943 -2.297241 0.843909 1.648768 -2.074176 -1.586057 1.463828 -2.184035 -0.208622 -1.542364 0.953450 1.714818 -1.537096 -0.675619 0.415245 -1.977620 1.865659 -0.716193 -1.591428 0.998331 -1.823448 -1.733830 3.206116 0.381481 -0.316962 -1.782726 -2.335222 -0.005644 -2.279372 0.857458 0.068108 -0.335522 -0.818692 -1.960175 -0.553707 2.213664 0.331119 1.620758 -2.747010 0.136373 1.327877 1.130235 1.072094 -0.794819 -0.386499 0.439296 -0.443660 -0.190458 -0.799706 1.023093 2.744069 -1.945852 0.592039 0.076593 -1.836797 1.038593 1.271943 -3.043865 3.323260 0.699425 1.649149 0.281058 0.775420 -1.215071 0.147688 0.483451 -0.618387 -0.454624 0.542057 -0.928174 -0.899896 0.650104 -1.062230 -2.190685 -0.364309 1.406450 -0.292467 0.861511 -0.644555 -1.483323 -0.479681 -0.706403 1.034400 1.721299 -0.208779 -0.768380 1.881418 1.106703 -0.039539 -0.449880 0.208041 0.746906 1.989355 -2.998006 0.672630 -0.278119 1.623112 -1.539498 -2.379625 0.541691 -1.601090 -0.226492 1.044767 -2.426589 -0.896318 -1.844509 0.418660 -1.298502 -0.399269 1.024405 3.074097 1.293418 -1.405027 1.090499 -0.954463 1.046558 -0.198815 -0.433088 0.481488 1.516859 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -13.771057 1.502195 0.333362 -15.347203 29.021125 -10.836564 -2.938014 14.778973 5.339104 18.349786 -12.107568 -5.740537 -7.630049 -25.635881 3.921963 -10.893191 1.544618 14.225188 -4.063274 12.382567 11.880834 -2.059122 4.947262 -4.932197 -6.965463 -13.659628 -5.202358 9.340860 4.639951 -7.901227 7.027344 5.210379 28.042232 0.558850 23.079857 18.384816 9.755478 23.330266 6.605192 3.370627 2.778422 10.065927 -9.291916 -22.317045 6.028555 -3.929876 -18.846709 -13.645912 10.206557 -14.429536 10.694082 20.259881 -1.614449 -2.677185 -18.794872 7.196780 4.884179 2.361333 20.970341 6.296613 -14.245986 1.196992 -18.916173 14.069221 -13.603070 6.462230 -1.421711 -14.038264 0.466103 8.591633 7.295937 -15.268153 -14.814673 9.454285 9.910849 -14.896394 7.321082 -6.460514 -1.548681 -10.879306 -13.561650 8.681684 -4.998993 15.546780 -0.789278 7.610284 -4.240483 6.694552 -2.103587 -21.408536 1.863610 18.591309 -10.978348 -2.167026 -14.513350 15.852015 3.883721 -4.392682 -8.216801 -7.251047 5.802468 -5.853870 12.168932 3.359666 -4.131287 -15.330041 6.651075 3.563849 2.752195 12.077382 6.289919 6.900460 10.099067 12.717878 -8.904679 9.996779 -26.387061 8.988091 -8.966617 4.738971 -7.416803 9.396510 9.451982 7.709518 12.809867 -23.717001 14.977041 3.330166 -3.503053 -13.625988 5.757454 -1.258467 -7.164159 -6.176190 16.266562 -2.061979 -4.575616 -2.133849 6.209233 4.513820 -6.895625 -8.530865 0.381619 10.800798 -6.930930 6.930082 -5.207416 -10.872135 -0.330170 6.399409 11.787515 13.780068 27.880183 16.345052 -5.492639 -0.415774 -23.464853 2.686300 23.203513 -0.273568 -16.303245 19.956474 -9.994694 -4.475001 1.729585 18.121127 14.484641 5.797668 -9.378338 -8.674134 2.306313 3.126515 21.538048 4.395126 3.265610 -16.182391 4.913466 -2.162474 1.470321 29.911024 8.626982 -20.285881 -0.230176 15.670280 -12.531617 -13.980205 9.451997 -8.781073 -3.109979 -9.358014 11.271998 12.811072 -13.925637 -10.891676 0.651814 -16.724694 13.203813 -7.300018 -8.090643 5.322311 -21.070496 -10.353194 27.036950 1.893361 -3.653560 -9.048845 -20.247161 3.113295 -23.542733 8.085023 7.571077 -0.586046 -3.866600 -12.891293 -2.691418 17.091387 -0.004197 9.895064 -15.781387 -3.711175 12.827750 -0.276920 6.016823 -16.587199 -3.224295 1.806499 2.401201 5.854403 -2.189990 5.132104 23.843368 -15.565881 9.797079 10.357159 -1.916305 5.654470 15.015205 -23.032558 28.779453 0.459167 15.326135 0.245078 6.660504 -5.962307 1.890137 1.687360 -2.379962 -2.091748 4.186074 -10.785154 -8.094075 6.977836 -8.703205 -12.136306 0.474931 14.754006 -3.599280 7.560641 -0.556141 -8.080720 -7.138136 -9.743604 10.863936 15.253529 -2.147555 -11.176308 12.624925 13.691373 -7.751251 -2.016207 2.006856 9.258524 19.027005 -24.684322 9.047912 -1.425560 6.879425 -14.647835 -17.027363 9.330386 -11.098396 -4.478140 3.458191 -20.380449 -12.150147 -13.878559 10.378030 -12.419386 -0.894346 2.365857 22.452356 14.403879 -6.195769 9.113736 -6.004539 6.662220 -0.482234 -4.398715 9.868818 18.146059 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -1.029516 0.903553 0.358175 -1.089077 1.866402 -0.627845 0.398393 0.197690 0.184709 1.365447 -1.260481 -0.947960 -0.488643 -1.688805 0.269416 -1.342534 -0.096309 1.173668 -0.063842 1.230256 0.753476 -0.795605 0.288101 -0.626389 -0.523010 -1.121388 -0.464119 0.696853 0.679996 -0.316130 0.470966 0.293002 1.893508 -0.149486 1.709413 1.524935 -0.165898 1.755454 0.556269 -0.266747 0.152842 0.724883 -0.782965 -1.820786 0.142988 -0.318750 -1.303134 -1.317518 0.724035 -0.965018 0.543025 1.372689 -0.176482 -0.298501 -1.500136 0.633168 0.886265 1.097294 1.679397 0.327018 -0.372579 0.845763 -1.495757 0.702019 -0.929498 0.203517 -0.512021 -1.502335 0.313680 0.574308 0.301961 -0.679336 -1.224741 0.865768 0.876524 -1.172884 0.312333 -0.621356 -1.920313 -0.694871 -1.062745 0.623698 -0.434514 1.337608 0.050905 0.545737 -0.268910 0.698932 -0.121728 -1.612975 -0.098792 1.641470 -0.330261 -0.419066 -0.047650 1.450508 1.054599 -0.383013 -0.696769 -0.295154 0.439315 -0.514394 0.886960 0.201634 -0.307973 -1.280371 0.437930 0.622189 0.111395 1.156787 0.723467 0.838433 1.012912 0.936539 -1.139177 0.486379 -1.794389 0.607237 -1.035298 0.107690 -0.279175 0.920415 0.129687 0.540999 1.165653 -1.786050 1.107434 0.275479 -0.046469 -1.065629 0.386629 -0.115209 -0.402076 -0.641544 0.943780 -0.038744 -0.237156 -0.176040 0.037289 0.290581 0.016904 -0.016680 0.240592 1.215514 -0.442588 0.602428 -0.325474 -0.743447 -0.074422 0.569544 0.939286 1.169517 1.961274 1.475724 -0.356269 -0.645235 -1.672444 0.227163 1.822535 -0.401836 -1.128999 1.482220 -0.290414 -0.623073 0.167870 1.242013 1.055078 0.736244 -1.008803 -1.276001 -0.845164 0.055768 1.513146 0.768097 -0.065943 -0.871640 1.273283 -0.127447 -0.445323 2.112355 0.642111 -1.138204 -0.381613 1.184826 -2.165876 -1.248963 0.861661 -0.841260 0.163914 -0.698394 0.394905 0.811482 -0.905668 -0.857205 -0.192883 -1.280546 1.178610 -0.460518 -0.685703 0.076096 -1.236147 -1.115943 1.948773 0.327670 -0.282498 -0.828059 -1.317590 -0.261817 -1.593656 0.500570 0.356589 -0.314984 -0.627162 -1.042479 -0.241128 0.910881 -0.189982 0.776861 -0.396177 -0.438367 0.899088 0.550106 0.471480 -0.819562 -0.183044 0.270129 -0.067689 0.144368 0.294246 0.950148 1.934580 -0.990166 0.373357 0.788824 -0.572475 0.859232 1.376101 -1.729444 2.033065 -0.407770 0.852326 0.183594 0.523914 -0.306094 0.080430 0.453269 -0.649521 -0.220431 0.445564 -0.725098 -0.588579 0.514793 -0.673890 -0.915059 0.004701 1.048548 0.101087 0.497247 0.205821 -1.028988 -0.335616 -0.405640 0.439671 1.018691 0.186604 -0.829901 1.015130 0.771955 -0.053286 -0.664553 0.088410 0.565364 1.022631 -1.794470 0.739368 -0.295763 0.476817 -1.029341 -1.059483 0.645825 -1.225619 -0.531277 0.491032 -1.348288 -0.380538 -1.066353 0.518850 -0.721840 -0.513327 0.494992 1.720721 0.791158 -0.643156 0.597240 -0.674573 0.747370 0.121313 -0.394785 0.314166 1.540064 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.308938 0.084663 -0.139031 -0.197410 0.761662 -0.364791 -0.104895 0.607126 0.110700 0.446781 -0.267743 0.129506 -0.069256 -0.422462 0.093474 0.149621 0.185829 0.460676 -0.119961 -0.048898 0.196122 0.099867 0.096343 -0.096154 -0.149681 -0.520167 0.020481 0.176299 0.019851 -0.109576 -0.218663 0.240162 0.659305 -0.099180 0.449204 0.381846 0.345647 0.382268 0.367286 -0.016387 0.242244 0.113643 -0.117085 -0.463223 0.111926 -0.082527 -0.339368 -0.200025 0.261523 -0.389661 0.391661 0.295783 -0.007246 -0.029460 -0.303447 0.282474 0.090519 -0.051926 0.468439 0.134685 -0.430202 -0.121780 -0.218423 0.729868 -0.430609 0.055148 -0.148319 -0.542221 -0.155373 0.393421 0.167250 -0.253545 -0.209331 0.093007 0.048018 -0.335362 0.130652 0.023956 0.424177 -0.243514 -0.375598 0.200500 -0.206127 0.276926 0.038572 0.121239 -0.311077 0.052285 0.063255 -0.392179 -0.015876 0.349619 -0.312342 0.190788 -0.194477 0.094241 0.235229 -0.202574 0.062250 -0.375841 0.093445 -0.181908 0.197358 0.026711 0.198300 -0.120779 0.146258 0.078761 0.155619 0.313490 -0.021996 0.177931 0.160818 0.198925 0.084636 -0.049924 -0.681665 0.329835 -0.103619 -0.063636 -0.142054 0.083879 0.328004 0.151837 0.330264 -0.527007 0.373486 0.056850 -0.004848 -0.204695 0.139670 0.081814 -0.114805 -0.162060 0.390593 -0.086462 -0.062865 -0.010456 0.223174 0.027605 -0.383620 -0.192170 -0.188556 0.239281 -0.396465 0.160728 -0.118410 -0.197572 0.013334 0.115457 0.188837 0.320712 0.478026 0.358927 -0.127790 0.057925 -0.634856 0.115738 0.459960 0.096547 -0.316333 0.403810 -0.296740 -0.112506 0.185575 0.362105 0.117231 0.157205 -0.075085 -0.137897 -0.016878 0.079072 0.463403 0.079379 0.103889 -0.341870 -0.006973 -0.054574 0.037782 0.711335 0.168643 -0.585115 0.186930 0.456593 -0.177755 -0.212178 0.153548 -0.360447 -0.177621 -0.279790 0.196984 0.396031 -0.447051 -0.171191 0.154900 -0.312634 0.313657 -0.057686 -0.249551 0.171032 -0.461532 0.136835 0.645758 0.168926 0.083878 -0.148069 -0.462719 -0.186382 -0.562771 0.013159 0.163401 -0.111256 0.007428 -0.320585 -0.208397 0.448736 -0.004163 0.183481 -0.601454 0.103674 0.343409 0.054212 -0.058715 -0.384311 -0.069747 0.088869 -0.088418 0.032271 -0.240172 0.129839 0.304473 -0.313532 0.276529 0.351213 -0.109547 0.150326 0.212377 -0.418474 0.514640 -0.006490 0.119025 0.257332 0.163568 -0.266863 0.054139 -0.150931 0.015203 -0.277038 0.174885 -0.424663 -0.173705 0.226620 -0.207725 -0.364430 0.022986 0.391517 0.179886 0.032623 -0.183025 -0.162711 -0.107924 -0.338984 0.220587 0.232613 -0.120946 -0.302442 0.309695 0.313143 -0.393700 -0.267360 0.104250 0.196961 0.384522 -0.471107 0.245355 0.124600 0.243269 -0.518697 -0.394106 0.117533 -0.191151 -0.195193 -0.015589 -0.683812 -0.444768 -0.165829 0.291880 -0.467124 0.051039 0.077692 0.539225 0.048118 -0.065028 0.333211 -0.079699 0.018852 0.022013 0.007844 -0.010381 0.351044 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.963437 0.543775 0.012186 -0.946787 2.221361 -0.677054 -0.052113 1.111587 0.106917 1.169805 -1.067739 0.209439 -0.343595 -1.434244 0.141807 -0.264831 0.183984 1.190049 -0.448032 0.414855 0.731743 -0.140149 0.429255 -0.538208 -0.437646 -1.356124 -0.111586 0.450062 0.087820 -0.081061 0.031414 0.280474 1.649684 -0.121208 1.060147 0.971493 0.617102 1.554398 0.488926 0.184562 0.550146 0.537409 -0.366791 -1.642477 0.574592 -0.470241 -1.158823 -0.929552 0.705221 -1.609952 0.810043 0.993361 0.013877 -0.452838 -0.993354 0.768248 0.970257 0.090025 1.345940 0.407735 -0.980977 -0.152964 -0.985092 1.005740 -1.076994 0.492160 0.028802 -1.410985 -0.414128 0.971426 0.509137 -0.794513 -0.953693 0.200870 0.395296 -0.887236 0.378010 -0.286229 -0.009670 -0.708912 -0.829056 0.360511 -0.486213 0.885039 -0.057271 0.369961 -0.476878 0.170862 0.200889 -1.102020 -0.279160 1.227044 -0.522896 0.375534 -0.681087 0.693681 0.466701 -0.593983 -0.464486 -0.663433 0.295798 -0.128254 0.601638 -0.045452 -0.321079 -0.884237 0.640898 0.546575 0.126979 0.709278 0.003019 0.515855 0.267451 0.575525 -0.529816 0.649310 -2.005665 0.537955 -0.300546 0.164300 -0.365737 0.285373 0.585401 0.430231 0.794797 -1.456238 1.471112 0.225001 -0.314348 -0.774547 0.567623 0.189645 -0.363522 -0.337883 0.947369 -0.172462 -0.210125 -0.001139 0.389562 -0.081677 -0.830813 -0.694753 -0.310999 0.972601 -0.987138 0.460677 -0.359837 -0.651681 0.069603 0.263855 0.516360 0.574805 1.584401 1.018506 -0.254988 0.309748 -1.498435 0.381342 1.668113 0.603756 -1.023958 0.948081 -0.423223 -0.081871 0.469501 0.715171 0.506847 0.702753 -0.635890 -0.717462 -0.111832 -0.144411 1.275552 0.717192 0.367429 -1.529809 0.539955 -0.168540 0.270512 2.039148 0.850907 -1.477237 0.292690 1.221785 -1.007148 -0.782436 0.296893 -0.490128 -0.371553 -0.496822 0.556395 0.765453 -1.051418 -1.191763 -0.076511 -1.055580 1.001501 -0.222295 -0.449941 0.258286 -1.252145 -0.235422 1.698469 0.287016 -0.270545 -0.386002 -1.115205 -0.509352 -1.651678 0.263974 0.560209 -0.463109 -0.414126 -0.867532 -0.272649 1.160618 -0.292357 0.231288 -1.323888 -0.169458 0.849516 0.228135 0.247660 -1.280946 -0.258666 0.059354 -0.028690 0.358205 -0.181195 0.430118 1.380492 -0.927940 0.727950 0.783176 -0.260820 0.462050 1.186381 -1.010519 1.553239 -0.172821 1.129680 0.248395 0.566928 -0.478210 0.214324 -0.121224 -0.181385 -0.378202 0.680120 -1.128756 -0.487839 0.603568 -0.678436 -0.873096 0.424174 1.042469 0.410663 0.181012 -0.108007 -0.526513 -0.310928 -0.600761 0.288794 0.821225 -0.264951 -1.112936 0.421695 0.876828 -0.819974 -0.783675 0.338285 0.591495 1.150455 -1.319613 0.931929 0.071396 0.090784 -1.478687 -1.009560 0.545074 -0.820140 -0.768543 0.365908 -1.707294 -0.870267 -0.619450 0.952787 -1.120719 -0.091204 0.047968 1.330743 0.487957 -0.059012 0.978363 -0.250189 0.505338 -0.007744 -0.109641 0.170928 1.223353 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -2.843163 2.012313 -0.028044 -3.367967 6.942927 -1.192090 0.005672 2.425800 -0.545789 3.377734 -3.474968 0.761016 -0.923209 -4.926983 0.349106 -1.141483 -0.012147 2.916429 -1.295870 2.089586 2.243979 -1.546829 1.514444 -1.867344 -1.333115 -4.114222 -0.317220 1.374978 1.038110 -0.122947 0.712219 0.034217 4.225871 -0.412419 2.458966 2.454713 1.418213 4.776340 0.784799 -0.266022 1.326682 1.764867 -1.122438 -5.004070 1.821888 -1.699969 -3.951881 -2.928658 2.046812 -5.168124 1.146444 3.187012 0.062721 -1.968646 -3.285453 2.530920 4.145341 0.190384 4.012657 1.147948 -2.170189 -1.058156 -3.335626 1.659478 -2.834101 1.417333 0.559674 -3.680061 -1.006138 2.743859 0.630755 -2.096799 -2.926955 0.581130 1.823623 -2.647018 1.136553 -1.449362 -1.667247 -2.552599 -1.820066 0.820857 -1.509624 2.964211 -0.287255 1.244436 -0.192454 0.543065 0.481811 -3.315240 -1.095267 3.732485 -1.050788 0.455796 -1.902777 3.269587 1.196943 -1.775836 -2.389422 -1.393956 0.834441 0.258807 1.787359 -1.083162 -1.448776 -3.572003 1.909001 1.643722 0.265512 2.139652 0.286575 1.210042 0.258734 1.833562 -2.879686 2.509817 -5.849678 0.665324 -0.797262 1.208531 -1.358540 0.874422 1.730769 1.383912 2.208332 -4.413213 4.954431 0.792787 -0.973106 -2.642823 1.795089 0.507505 -1.079023 -0.550771 2.347419 -0.669133 -0.552976 0.089665 1.109981 -0.151652 -2.648740 -1.707815 -0.434189 3.756468 -3.389587 1.421880 -0.934813 -1.835856 0.287982 0.638935 1.700613 1.182124 5.067093 2.891838 -0.576160 2.235455 -3.946543 1.529090 5.788976 2.226606 -3.114836 2.537204 -1.105338 0.108664 1.127422 1.622261 1.894108 2.358814 -2.695291 -2.482742 0.388863 -0.764300 3.689135 2.213085 1.199976 -5.363389 2.633405 -0.267534 1.224421 5.880665 2.914279 -4.243774 1.291669 3.491995 -3.853437 -1.878952 0.672947 -0.810799 -0.728202 -1.186606 1.679694 1.891238 -2.679623 -4.471959 -1.402744 -3.166769 3.118657 -0.756096 -0.949250 0.563784 -3.045173 -1.025949 4.560821 0.551891 -1.480464 -1.260357 -2.970439 -2.239779 -4.796401 0.963761 1.526464 -1.948758 -1.650566 -2.596126 -0.797956 3.461221 -1.178264 0.180884 -4.632982 -0.588112 2.275228 1.567018 1.280081 -3.334879 -0.738450 0.084199 0.053516 1.166246 -0.268820 1.588378 4.575493 -2.831021 2.326055 0.928409 -0.636753 1.763463 4.194641 -2.654274 4.773241 -0.328997 4.979332 0.013435 1.862344 -1.023535 0.932900 -0.079621 -1.363261 -0.409244 2.096517 -3.270116 -1.515215 2.123323 -1.777642 -2.878152 1.697474 2.985727 1.367861 0.671870 -0.020320 -1.374282 -0.982019 -1.253343 0.494297 2.454182 -0.892019 -3.409792 0.545111 2.763283 -1.516706 -2.280838 1.046056 1.874006 3.433280 -3.832040 3.040741 -0.244146 -0.188261 -4.243906 -3.016401 1.880308 -2.371521 -2.360928 1.982289 -5.072877 -1.899611 -2.016071 2.848764 -3.331945 -0.365059 -0.115793 3.681779 1.555955 -0.102924 2.902993 -0.783153 1.900940 -0.341125 -0.168736 0.846364 3.458756 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.996814 0.615370 -0.358576 -0.798471 2.391472 -0.810960 0.133386 1.423019 -0.750498 1.285170 -0.915416 0.783707 -0.183117 -1.728746 0.290749 0.294308 0.398798 1.205259 -0.112272 0.575233 0.701072 -0.454845 0.287938 -0.430642 -0.507180 -1.567427 0.173042 0.539137 0.631639 -0.421590 -0.086353 0.468408 1.813078 -0.270014 1.185808 1.149442 0.782510 1.324973 1.000503 -1.017290 0.366473 0.529303 -0.452891 -1.544639 0.449939 -0.351242 -1.175739 -0.765797 0.731082 -1.189877 0.278835 1.090376 -0.044988 -0.261058 -1.269115 0.873855 1.183754 -0.559711 1.516776 0.402001 -0.826286 -0.666901 -0.737233 1.569505 -1.056751 -0.194028 -0.138254 -1.315491 -0.020064 0.997094 0.241891 -0.867977 -0.745810 0.402218 0.411143 -1.160590 0.380038 -0.188990 0.056415 -1.366438 -0.942431 0.396634 -0.634398 1.192239 0.037482 0.386552 -0.415534 0.183883 0.155751 -1.341713 -0.159207 1.137457 -0.682924 0.190618 -0.721601 1.141679 0.665572 -0.530423 -0.522818 -1.016127 0.324855 -0.360854 0.651072 -0.449721 0.380431 -0.734780 0.066043 -0.091046 0.373191 1.281011 0.168039 0.577702 0.408358 0.723319 -0.507820 -0.018846 -1.999321 0.698712 -0.221922 0.153874 -0.463666 0.278997 0.947986 0.375109 1.029203 -1.791002 1.243985 0.267425 0.109113 -1.074554 0.468349 0.135668 -0.368766 -0.458710 1.077862 -0.315198 -0.138027 -0.069376 0.598259 0.239973 -1.219488 -0.713418 -0.304466 1.609881 -1.767659 0.511308 -0.391722 -0.604059 0.029987 0.244875 0.666780 0.881444 1.580750 1.190516 -0.352775 1.343916 -1.766363 0.419342 1.828401 1.024304 -1.068795 1.171856 -0.892493 -0.320980 0.539203 0.901628 0.707988 0.254325 -0.937158 -0.807236 0.801052 0.055411 1.479680 0.147059 0.349749 -1.454197 0.753950 0.275462 0.043759 2.136543 0.414258 -1.733067 1.115503 1.262530 -0.781711 -0.421240 0.415907 -1.029927 -0.628667 -0.649641 0.580874 0.986464 -1.182655 -0.820957 -0.165425 -1.033197 1.053539 -0.229265 -0.630324 0.444830 -1.063816 -0.003798 1.698851 0.341954 -0.086099 -0.668165 -1.246644 -0.784787 -1.695766 0.222246 0.315849 -0.595423 -0.325499 -1.154256 -0.675148 1.371027 -0.115303 0.312897 -2.416692 0.202304 0.961563 0.749517 0.029758 -1.382642 -0.240184 0.394732 0.060731 0.089804 -0.533742 0.776799 1.272464 -1.133732 0.641191 0.339077 -0.148049 0.863280 0.906407 -1.322094 1.640412 0.071525 1.638220 0.446000 0.550926 -0.753294 0.196160 -0.228353 -0.044164 -0.561074 0.474595 -1.188937 -0.527670 0.854038 -0.489747 -1.327961 0.215643 1.077839 0.516397 0.175952 -0.412496 -0.282343 -0.335815 -0.838654 0.451964 0.854138 -0.499573 -0.955819 0.708733 0.943654 -0.565580 -0.422702 0.297722 0.783299 1.085295 -1.474744 0.837393 -0.065016 0.540113 -1.377080 -1.675853 0.829151 -0.681957 -0.755022 0.640752 -2.175562 -0.836321 -0.682577 0.850783 -1.778086 0.179207 0.075656 1.560859 -0.016363 -0.112769 1.031784 -0.321604 0.376636 -0.242960 0.329173 0.024272 1.130303 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.415295 0.953946 -0.081263 -1.296971 3.498642 -0.995119 0.330085 2.182871 -0.856809 1.806068 -1.566578 1.214075 -0.125760 -1.941545 0.259959 0.088690 0.278206 1.669195 -0.509281 0.608898 0.947057 -0.091836 0.435856 -0.761555 -0.798134 -2.004453 0.094258 0.666091 0.467104 -0.236185 -0.129145 0.479769 2.408526 -0.519120 1.624355 1.559580 1.264209 1.864071 0.967108 -0.586017 0.860436 0.635764 -0.596722 -2.101713 0.506694 -0.617396 -1.788768 -1.084133 0.976125 -2.141599 0.898052 1.408389 0.053611 -0.536173 -1.352426 1.514655 1.398260 -0.883827 2.028241 0.574147 -1.682087 -0.601806 -1.190294 2.468178 -1.391663 0.482842 -0.165621 -2.049649 -0.443917 1.544348 0.744586 -1.358031 -1.216465 0.422870 0.425927 -1.531861 0.494714 -0.416516 0.370735 -1.486144 -1.003170 0.642791 -0.649410 1.334391 0.067387 0.506956 -0.897715 0.273531 0.221676 -1.750051 -0.459918 1.929945 -0.996010 0.432431 -1.675133 0.911695 0.807901 -0.789754 -0.581791 -1.401127 0.510462 -0.156896 0.804350 -0.851135 0.248796 -1.139316 0.260441 0.570666 0.323555 1.502544 -0.516541 0.974217 0.585169 0.938037 -0.339158 0.566241 -2.869002 0.971864 -0.406592 0.170771 -0.641797 0.241035 1.201457 0.756355 1.358376 -2.200018 1.958139 0.241946 -0.378063 -1.418070 0.701273 0.256020 -0.571488 -0.520868 1.291385 -0.212723 -0.213571 -0.071260 0.825060 0.005165 -1.490475 -1.469960 -0.358065 1.604891 -2.124285 0.641378 -0.469001 -0.576000 -0.050406 0.622949 0.970456 0.954023 2.243135 1.506678 -0.146673 1.237578 -2.339931 0.496858 2.310259 1.454244 -1.507904 1.583761 -1.229914 -0.383928 0.723266 1.110159 0.546664 0.896753 -1.362770 -1.197898 0.632814 -0.197350 2.064560 0.751239 0.408162 -2.068630 0.865040 -0.466440 0.117070 2.823838 1.196346 -2.455593 0.980901 1.792730 -0.724509 -0.978110 0.661156 -1.402499 -1.104448 -0.590470 0.640004 1.178211 -1.489206 -1.370931 0.007807 -1.470936 1.608403 -0.259846 -0.939752 0.311959 -1.579097 -0.161870 2.306210 0.485705 -0.285852 -0.618017 -1.464272 -0.977858 -2.425527 0.257876 0.892206 -0.694992 -0.691375 -1.497660 -0.618850 1.597522 -0.478980 0.456847 -2.665983 -0.148223 1.342631 0.552855 0.245202 -2.251082 -0.314073 -0.067962 0.107333 0.338169 -0.795175 0.938840 1.942112 -1.352557 1.185418 0.953001 -0.542440 0.652325 1.499315 -1.653844 2.253835 0.089611 1.773602 0.641078 0.784929 -1.020889 0.227813 -0.425618 -0.037599 -0.704253 0.899735 -1.740992 -0.688927 0.743607 -0.936696 -1.438618 0.568126 1.526330 0.431343 0.138409 -0.329235 -0.527019 -0.646632 -1.516554 0.385752 1.153669 -0.911448 -1.574236 0.891935 1.259856 -1.361979 -0.627136 0.406480 1.139675 1.566162 -1.956285 1.308616 0.074914 0.432924 -2.490043 -2.005578 0.914619 -1.163065 -1.350153 0.393877 -2.634214 -1.483554 -0.913397 1.258895 -2.367501 -0.429303 0.373677 2.160941 0.174916 -0.054802 1.429763 -0.471453 0.745385 -0.084026 0.350442 0.073191 1.510704 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.980500 2.072379 -0.453200 -2.978889 7.568629 -1.539187 0.623882 4.213290 -2.321076 3.996667 -3.299034 2.769780 -0.205048 -4.339568 0.450544 0.194825 0.279970 3.126978 -1.078824 1.553235 1.960573 -0.747486 1.252670 -1.605264 -1.751424 -4.524901 0.314634 1.485916 1.616299 -0.427879 -0.126396 0.420296 4.655950 -1.404801 2.815283 2.927403 2.680936 3.729434 1.756052 -1.981943 1.665469 1.357321 -1.339549 -4.290117 1.051046 -1.438200 -4.079911 -2.176008 2.225668 -4.654819 0.875345 3.086732 0.012693 -1.601122 -2.948915 3.534328 3.437950 -2.244385 4.385357 0.959510 -3.080440 -2.027862 -2.676133 5.077258 -2.882584 0.880881 -0.360552 -4.102930 -0.987896 3.244625 0.702740 -2.347482 -2.458492 1.024386 1.360490 -3.381052 0.867098 -1.240774 0.259079 -3.289504 -1.712559 1.208608 -1.475353 2.923089 0.230875 1.265393 -0.966937 0.724572 0.396554 -3.820948 -0.950114 4.082554 -1.814812 0.539083 -3.427743 2.340472 1.660120 -1.835021 -1.562528 -2.581379 0.890768 -0.057567 1.797666 -2.640818 0.675609 -2.900713 0.347947 1.115464 0.926634 3.166493 -1.110776 1.701183 0.826729 2.154386 -1.255254 1.099693 -5.830399 1.551600 -0.730361 0.713676 -1.645435 0.606372 2.665659 1.699039 2.983477 -4.781084 4.341592 0.411089 -0.783539 -3.204016 1.447976 0.665848 -0.990701 -0.718746 2.450300 -0.835189 -0.466357 -0.142820 1.957169 0.176986 -3.522567 -2.643013 -0.459875 3.658223 -4.766585 1.550248 -0.923335 -1.138391 0.120838 1.261256 2.197137 1.881031 4.855831 3.226775 -0.154216 3.725730 -4.671300 1.375718 5.135775 3.267610 -3.199587 3.264566 -2.850616 -0.749125 1.368622 2.116580 1.371745 2.244642 -3.151575 -2.581088 1.829136 -0.407770 4.333586 1.488189 0.903505 -4.668094 2.117059 -0.937839 0.662886 5.645249 2.656915 -5.205105 2.709713 3.728042 -2.026668 -1.701683 1.266944 -2.775849 -2.164024 -1.254881 1.332547 2.534874 -2.907717 -3.225988 -0.636459 -3.041801 3.575776 -0.612278 -1.934932 0.889045 -2.930807 -0.400744 4.305097 0.955609 -0.877706 -1.558283 -2.970432 -2.716353 -5.052017 0.631896 1.771991 -1.928128 -1.591791 -3.298278 -1.537591 3.271291 -0.834778 0.875712 -6.513863 -0.071607 2.778749 1.916216 0.770241 -4.205857 -0.509708 -0.129565 0.142347 0.633332 -1.750550 2.089953 3.974160 -3.032795 2.677879 0.809498 -1.309052 1.643616 3.216113 -3.366387 4.837635 0.534619 4.293000 1.071579 1.712986 -1.896998 0.954675 -0.820179 -0.732098 -1.029984 1.813668 -3.758905 -1.714701 1.882497 -1.832197 -3.323830 1.218759 3.215522 1.128198 0.406842 -0.708748 -0.942365 -1.458742 -2.884840 0.652207 2.379015 -2.050212 -3.257844 1.642212 2.758433 -2.456871 -1.486001 0.906525 2.538527 3.173872 -4.160866 2.929329 -0.128955 0.820369 -5.218627 -4.191610 2.002360 -2.180781 -2.839010 1.353492 -5.678116 -2.767914 -2.033427 2.578445 -4.937434 -0.990240 0.669725 4.475489 0.198650 -0.021346 3.161933 -1.039000 1.594512 -0.411044 0.858811 0.391780 2.888424 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.347314 0.275909 -0.036637 -0.268199 0.719972 -0.207796 -0.100760 0.582962 0.041943 0.499971 -0.351084 0.109941 -0.015347 -0.453824 0.055350 0.068802 0.026246 0.421090 -0.077765 0.085615 0.241271 -0.039122 0.066783 -0.154580 -0.174458 -0.521634 -0.012934 0.145271 0.126118 -0.073517 -0.107804 0.109100 0.599455 -0.061516 0.508832 0.425122 0.279135 0.407975 0.308016 0.078205 0.093152 0.196132 -0.207696 -0.498407 0.131554 -0.169102 -0.311434 -0.268416 0.217187 -0.431026 0.408169 0.342515 -0.039816 -0.053433 -0.286104 0.272006 0.153535 -0.007630 0.533575 0.135057 -0.365565 -0.081780 -0.329471 0.621441 -0.370221 0.126432 -0.056398 -0.514931 -0.056251 0.257277 0.185246 -0.245164 -0.166908 0.232351 0.051186 -0.378731 0.150181 -0.133459 0.123212 -0.287054 -0.315307 0.197489 -0.141471 0.335340 0.022502 0.121214 -0.313589 0.142684 0.000824 -0.499155 -0.031716 0.410279 -0.283523 0.129707 -0.186736 0.224632 0.234421 -0.076374 0.002953 -0.234055 0.153502 -0.038813 0.201904 -0.033753 0.138368 -0.270430 0.187428 0.107997 0.076021 0.285548 0.014579 0.232790 0.252132 0.337702 -0.061618 0.059051 -0.630668 0.255673 -0.104586 0.046275 -0.096332 0.117994 0.259434 0.144087 0.372855 -0.533317 0.369840 0.082228 -0.038882 -0.334249 0.144354 -0.084298 -0.161483 -0.175843 0.307049 -0.013802 -0.083637 -0.105088 0.140211 -0.009441 -0.387817 -0.320407 -0.078813 0.334504 -0.426225 0.131270 -0.119707 -0.160399 -0.037458 0.189282 0.256246 0.306680 0.557565 0.384444 -0.042323 0.028538 -0.548717 0.064284 0.533096 0.176055 -0.381704 0.422242 -0.283299 -0.138649 0.197238 0.319644 0.174493 0.260340 -0.258984 -0.291977 0.016620 0.004000 0.520183 0.170704 0.119717 -0.320016 0.243259 -0.036608 -0.146603 0.745879 0.215330 -0.542440 0.121280 0.347091 -0.267538 -0.187947 0.203622 -0.309137 -0.112683 -0.196513 0.105203 0.308312 -0.380943 -0.296489 0.079357 -0.413532 0.466338 -0.048430 -0.058914 0.132206 -0.451867 0.041151 0.625033 0.180779 -0.094137 -0.192310 -0.338864 -0.252270 -0.510291 0.071044 0.193817 -0.156989 -0.133215 -0.378570 -0.117917 0.383531 -0.051610 0.149385 -0.543942 -0.084621 0.311684 -0.020163 0.045560 -0.459609 -0.100335 -0.040366 -0.020306 0.145517 -0.145454 0.292382 0.541052 -0.283464 0.279353 0.381122 -0.048117 0.136749 0.328979 -0.469950 0.557650 -0.063311 0.127672 0.178380 0.197882 -0.268073 0.026519 -0.074598 -0.009051 -0.119056 0.207016 -0.322955 -0.147836 0.150559 -0.337002 -0.245932 0.062458 0.287137 0.146791 0.061217 -0.101478 -0.256451 -0.135201 -0.346214 0.091201 0.313758 -0.079632 -0.355746 0.265142 0.199747 -0.249789 -0.249077 0.095984 0.184596 0.385171 -0.499312 0.227831 0.071213 0.118482 -0.542944 -0.373551 0.083404 -0.235069 -0.276817 0.054400 -0.646011 -0.296154 -0.251034 0.182653 -0.525345 -0.029004 0.077937 0.585687 0.132397 -0.139690 0.308956 -0.135065 0.226549 0.100167 0.000796 -0.007969 0.415278 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.518399 0.668158 0.302544 -0.460802 0.564612 -0.241290 0.031023 0.335835 0.125220 0.506760 -0.655932 -0.103943 -0.224456 -0.780610 0.036139 -0.358596 -0.036832 0.648647 -0.003578 0.412690 0.478125 -0.398632 0.053054 -0.437891 -0.163445 -0.612286 -0.055409 0.062417 -0.008352 0.165965 0.356401 0.126084 0.743901 0.281375 0.634773 0.620323 -0.099539 1.016482 0.349045 0.486645 -0.055972 0.477622 -0.241925 -1.029542 0.455051 -0.347065 -0.114999 -0.721494 0.174193 -0.785221 0.582971 0.451916 0.020253 -0.162242 -0.640045 -0.055759 0.645180 0.432951 0.680950 0.288510 -0.187491 0.205916 -0.501148 -0.101018 -0.528420 0.134960 0.427654 -0.531297 0.176287 0.194158 0.430305 -0.243966 -0.376268 0.140310 0.026596 -0.412933 0.214463 -0.226362 -0.913768 -0.215719 -0.389350 0.076985 -0.044238 0.587521 -0.151167 0.041093 -0.417919 0.112543 0.173035 -0.510865 -0.273010 0.525808 -0.024752 0.167333 0.009631 0.705126 0.355455 -0.094248 -0.239662 0.015754 0.262182 0.101518 0.261762 0.287594 -0.738234 -0.505754 0.576115 0.213989 -0.337410 0.248800 0.272113 0.432230 0.226630 0.315224 -0.543515 0.519732 -0.900308 0.213537 0.015991 0.132855 0.092033 0.102596 -0.103685 -0.087370 0.282908 -0.602402 0.643615 0.280781 -0.046803 -0.502757 0.352545 -0.135057 -0.275488 -0.321061 0.422993 0.186114 -0.119037 -0.082252 -0.174036 -0.149969 -0.162299 -0.637279 -0.094475 0.858288 -0.327744 0.095821 -0.256038 -0.386081 -0.091546 0.028346 0.091331 0.187637 0.674928 0.513726 -0.093957 -0.160038 -0.506531 -0.001146 0.895698 0.484989 -0.541804 0.322388 0.182191 -0.051698 0.318164 0.160772 0.351650 0.325007 -0.521192 -0.634477 -0.215361 -0.353571 0.597039 0.565643 0.251465 -0.650453 0.807677 0.281974 -0.226622 1.028777 0.304447 -0.436982 -0.084089 0.419205 -0.848686 -0.384593 0.121645 0.061861 0.052770 -0.100203 0.108774 0.141517 -0.498342 -0.735702 -0.260414 -0.670270 0.598267 -0.046265 0.342480 -0.029563 -0.644610 -0.313830 0.805682 0.147585 -0.346027 -0.212432 -0.292756 -0.286796 -0.723136 0.239676 0.256438 -0.290019 -0.405170 -0.423398 0.090821 0.429095 -0.336924 -0.124598 -0.083020 -0.472299 0.321671 -0.086804 0.133931 -0.824744 -0.258932 0.054183 0.221757 0.440690 0.354625 0.500351 1.004620 -0.342101 0.137744 0.752934 0.281453 0.335242 0.767790 -0.499930 0.646056 -0.492039 0.452867 0.007478 0.298700 -0.192414 -0.115879 0.154606 0.012663 -0.030627 0.355731 -0.345629 -0.067352 0.224006 -0.551018 0.000157 0.355629 0.301252 0.320253 0.061338 0.276403 -0.402358 -0.022548 -0.174864 -0.118890 0.565708 0.207660 -0.653784 0.031309 0.195037 -0.117410 -0.420096 0.148060 0.172356 0.485158 -0.571076 0.430460 -0.073754 -0.344034 -0.509632 -0.439113 0.359901 -0.513221 -0.533190 0.360975 -0.730181 -0.029226 -0.345785 0.392876 -0.644596 0.063863 -0.188174 0.526500 0.323795 -0.028611 0.373538 -0.137226 0.589064 0.144318 -0.127206 -0.025801 0.921836 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -6.696750 4.854472 3.138700 -6.405431 13.425461 -2.103651 -0.063803 3.647166 -1.745379 10.185853 -5.809484 -2.548614 -3.219311 -11.545431 0.574152 -5.901001 -2.031477 5.866468 -1.079505 6.212969 5.098035 -5.398306 2.122075 -1.877954 -3.734993 -9.099876 -2.721667 3.790857 6.687256 -4.859780 3.053376 -0.378204 11.454031 -1.749752 8.995963 7.890990 2.589569 9.374246 0.661729 -1.462311 -1.219023 5.328999 -5.762086 -8.452731 2.437851 -2.861120 -8.407097 -6.189617 4.765948 -5.806501 -0.197861 9.171429 -2.229172 -1.946644 -6.924618 6.943064 5.294784 0.934128 11.219345 1.615971 -2.115600 0.667734 -11.227938 6.074256 -5.788641 2.520116 -2.477122 -7.942150 0.736560 1.130453 0.557625 -4.542813 -4.482631 7.671334 5.745743 -8.218657 1.343268 -5.207053 -9.966209 -8.219121 -7.721553 3.005460 -0.907133 7.941721 0.500136 3.438881 2.504857 5.081982 -2.039364 -12.330832 0.880708 9.861151 -3.521969 -2.209009 -4.191363 7.814566 1.993497 -0.345806 -5.602217 -2.457283 2.661111 -1.454521 5.365543 -3.855170 0.979666 -9.002137 1.432154 0.955573 1.656375 2.943454 4.293964 1.898487 4.933686 8.828115 -9.034262 2.452944 -10.246802 2.170872 -2.330754 2.988324 -2.376469 5.017637 1.281466 2.944418 8.745494 -12.926238 5.614228 -0.108086 -2.668678 -9.360827 1.366355 -2.809831 -2.879617 -3.127061 5.338540 -1.116404 -1.754568 -2.867721 1.960452 1.633192 -3.683437 -2.027861 2.234497 8.714235 -6.952005 3.213309 -2.417304 -4.397696 -0.723084 4.377958 7.249518 7.287125 12.653654 8.824739 -0.580418 2.563879 -10.222934 0.716264 10.777052 1.429065 -8.052118 9.390991 -4.910148 -2.166346 1.882998 7.516957 7.085172 3.538451 -7.059443 -6.858932 2.172322 1.171442 10.434389 2.516764 0.650308 -5.177882 7.487664 0.954205 -3.932520 12.849165 5.512566 -7.814175 3.443991 4.893807 -8.717489 -5.905090 5.579814 -5.396902 -0.169766 -3.134053 1.975241 5.098334 -4.497917 -5.192189 -0.868575 -8.586314 9.765942 -2.626602 -0.994163 4.775769 -7.645969 -10.529506 9.028993 -0.016584 -3.606729 -6.845214 -7.649560 -4.390343 -8.781064 3.917012 1.980490 -3.645467 -5.223622 -8.353809 -0.245055 7.599565 0.919616 5.018687 -9.397178 -3.356938 4.983786 3.139075 6.027061 -4.554393 -1.274669 0.323991 -0.251373 2.417324 -0.135955 5.866733 12.972908 -6.661061 4.648028 0.166236 -5.159056 3.638626 6.708443 -10.820317 12.285363 0.672345 6.089277 -0.617727 3.293380 -3.003153 1.710126 3.124526 -1.676230 1.098147 2.128054 -3.227755 -3.792162 0.771452 -7.882297 -5.280299 -0.162433 3.913493 0.069816 3.371752 0.798337 -5.628384 -2.275933 -2.971249 1.277181 7.061999 0.564073 -3.787804 5.520005 2.406618 0.898345 -1.291315 1.149782 3.345208 6.502233 -10.999099 2.832708 -2.240443 1.374284 -6.889290 -8.983412 1.676403 -7.531485 -4.685040 5.507334 -10.298530 -0.995441 -7.085296 1.730401 -6.528173 -1.503155 1.861824 11.404622 5.428572 -4.176617 5.232283 -3.488178 6.456491 -0.148181 -1.916867 2.728197 7.615405 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/vertex-cover-problem.cpp__main = -3.863037 1.639132 1.098327 -2.973698 7.251554 -2.215346 0.305672 3.497659 0.467671 4.880884 -3.598337 -0.687002 -2.110543 -4.965461 0.258863 -2.393008 0.212081 4.033874 -1.693529 1.489068 3.098357 -0.521865 1.146970 -1.616618 -1.626981 -4.453112 -1.091028 1.465761 1.272276 -1.246665 0.386214 0.886677 6.697237 -0.439275 4.982693 4.240245 2.628841 5.890338 0.609466 1.760290 0.641315 2.914014 -2.323394 -5.527697 1.902723 -1.905343 -3.900610 -3.154041 2.744351 -4.499432 3.150402 4.221706 -0.550893 -0.791780 -3.014429 3.100149 2.494043 0.482548 5.672005 1.381950 -3.323987 0.553803 -4.833177 4.517157 -3.729269 2.610187 -0.348733 -5.218575 -1.183433 1.631013 2.165283 -3.333056 -3.476418 2.492572 1.777482 -3.758161 1.156291 -1.554032 -1.728434 -2.907211 -4.401760 1.241316 -0.774528 3.505249 -0.187498 1.242899 -1.057090 1.576303 0.058293 -5.478790 -0.258347 5.314777 -2.524458 1.213364 -3.744091 1.684088 0.595059 -0.724903 -2.284786 -2.117674 1.293908 -0.534608 2.561264 -0.768587 -1.117680 -3.527161 2.096293 1.471880 0.326714 1.412558 0.981138 1.487119 2.105871 3.515409 -2.337987 2.301522 -6.490783 2.269191 -0.841240 0.820028 -0.812895 1.895219 1.071411 1.087393 4.057908 -5.990109 3.800294 0.133250 -2.090467 -4.017657 1.366891 -0.873706 -1.850965 -1.913844 3.775163 -0.191004 -1.106536 -1.217879 1.328797 -0.087456 -2.449147 -2.745718 -0.328666 2.652287 -2.942413 1.317299 -1.719466 -2.660779 -0.448019 2.109065 2.527417 3.293020 5.991666 4.501657 -0.632056 0.160078 -5.681442 0.447853 5.277225 1.832888 -4.501969 4.153211 -2.403075 -0.424193 1.915323 3.371078 2.589988 2.408656 -2.321643 -2.378876 -0.125566 0.075626 5.443449 2.603732 1.090774 -3.727957 1.964273 -0.834652 -1.146994 7.370966 3.612396 -5.283278 0.908673 3.290991 -2.968513 -3.604088 2.144543 -2.628007 -1.136589 -2.087376 1.610648 2.819337 -3.541907 -2.921076 0.930068 -4.607609 4.750769 -0.992615 -0.835937 1.984612 -5.724217 -3.702213 5.882289 0.377141 -1.374494 -2.510798 -4.108208 -1.687895 -5.674236 1.757334 1.726884 -1.222922 -2.620171 -4.052281 0.050991 4.296187 -0.134339 2.286633 -3.492337 -1.833068 2.957778 0.003756 2.450124 -4.429890 -1.241602 -0.400513 0.155911 2.115035 -0.455691 1.697604 6.272040 -3.563002 2.653311 2.697494 -2.266921 0.811269 3.863839 -4.959427 5.917085 -0.438889 2.186127 0.249516 2.059999 -2.217060 0.455749 0.583686 0.615829 -0.709030 2.022512 -2.821244 -1.657534 0.401649 -4.356239 -2.104551 0.693173 2.631409 0.459673 1.181861 0.125196 -2.750094 -1.256086 -2.636291 0.720386 3.892707 -0.194892 -3.233866 2.438413 1.328256 -2.368136 -1.234895 1.025015 1.660356 4.193896 -5.449534 1.824387 -0.154427 -0.097676 -4.844253 -4.465841 0.705099 -4.010639 -3.091586 1.895025 -5.374473 -1.978654 -3.080074 2.211812 -3.966929 -1.129908 0.458272 5.664346 2.861430 -0.841346 3.509392 -1.047050 3.163924 0.269171 -1.022516 1.158600 4.669432 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -14.700208 16.168083 12.882497 -15.267406 26.046693 -4.148702 7.677710 8.827384 -10.444733 18.046731 -15.988618 2.118909 -4.905056 -20.137698 1.504221 -15.173252 -3.981358 12.300670 -0.942012 17.268451 11.737465 -11.310108 3.179747 -8.568964 -7.735960 -18.054849 -2.092756 5.695306 11.064035 -0.266965 10.535343 -0.153839 19.610793 -1.798930 18.638053 18.040613 1.670758 21.485537 2.840380 -5.908400 -1.242662 11.391437 -10.284245 -22.378045 5.105607 -6.752443 -15.274170 -16.685506 8.204508 -19.181682 -2.466240 17.471774 -2.552840 -5.822137 -15.647516 12.754734 15.718276 1.839273 21.533637 4.934585 -6.097968 0.878219 -19.820523 6.434458 -9.455615 4.816363 -1.600184 -16.209703 4.067593 5.514166 -0.180204 -7.804331 -7.558309 10.886570 8.408837 -16.115801 4.448901 -10.461111 -25.353468 -13.548983 -8.873726 4.745623 -0.028677 16.901987 -0.526706 5.639764 -1.221681 8.213151 -0.649089 -21.478336 -2.897027 21.329001 -5.027299 -5.941585 -7.616647 19.257069 9.620422 -2.609704 -10.568887 -3.460027 7.140041 -0.261549 9.871585 -10.466117 -5.229831 -19.154617 2.359312 6.326510 0.295021 12.151749 0.648736 11.276742 9.631248 14.104709 -17.081444 13.372187 -22.690901 5.284784 -7.919723 5.674152 -3.126426 7.706369 2.737423 7.037744 14.355383 -22.164791 15.998026 3.668918 -2.983607 -18.613111 6.824789 -4.388407 -6.001043 -7.453863 10.464575 0.790733 -3.024204 -4.110912 2.417294 0.178782 -3.016492 -10.083713 3.241592 20.850461 -15.528319 6.017164 -5.416459 -6.679725 -1.237152 7.171334 11.156915 10.547018 24.571218 17.581665 -0.724290 6.739798 -17.906540 1.183700 23.107940 8.112244 -15.510327 16.355685 -6.608932 -5.652327 4.896841 9.595768 12.342743 12.444270 -21.282270 -20.365206 4.228772 -4.265351 20.621945 11.528420 2.775850 -16.790838 21.475693 -5.443433 -7.367991 22.300447 13.090934 -17.416511 4.124139 12.248443 -21.963593 -13.542032 8.986705 -9.310532 -1.672873 -3.387015 2.060016 7.855648 -10.533588 -16.815849 -5.330578 -18.253771 18.808803 -3.710531 0.723336 2.028614 -12.643832 -15.508444 19.077731 3.716632 -9.852034 -11.221787 -11.453989 -11.673308 -20.366367 7.353161 6.021662 -6.907713 -13.942660 -15.953886 -1.195202 9.098919 -4.207003 4.971628 -14.377539 -9.024587 10.630314 6.861204 9.451743 -14.476960 -4.283304 -1.863979 1.182617 6.958271 1.588237 15.974916 27.769653 -12.144236 9.480742 3.961560 -7.157352 8.981793 18.679555 -20.138174 23.962089 -1.495361 20.164441 0.305667 7.502458 -7.620593 0.961200 4.892348 -8.035699 1.224913 8.263331 -9.477792 -6.045526 3.220756 -13.995199 -8.154426 4.600234 9.849885 0.051312 4.617999 6.919716 -12.176143 -5.725198 -11.160262 -0.339113 15.271919 -2.628646 -14.055148 7.591908 7.482286 -1.746724 -9.039943 2.791873 8.595362 12.836223 -21.091117 10.371085 -4.913372 -1.794399 -17.953291 -16.983794 9.974364 -16.633189 -14.952215 9.235037 -18.504089 -0.885243 -13.631558 7.006243 -19.425004 -8.702932 3.308863 20.754515 7.076265 -4.405109 10.753581 -7.761764 15.372088 0.730028 -0.099653 1.607462 17.949283 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -0.697253 0.108349 -0.691143 -0.338931 1.608333 -0.886214 0.105359 1.368177 -0.345585 0.706797 -0.555779 0.465449 -0.120689 -1.014736 0.265113 0.707663 0.505339 1.073604 -0.220463 0.114784 0.553193 0.118711 -0.008657 -0.282177 -0.270854 -0.488207 0.093641 0.309326 0.146938 -0.513771 -0.589447 0.624861 1.498042 -0.100879 1.130259 0.890498 0.729511 0.985447 0.812085 -0.528504 0.340315 0.455224 -0.274336 -1.083200 0.331631 -0.264913 -0.603310 -0.405065 0.481721 -0.541177 1.195304 0.621162 0.063224 0.127061 -0.715801 0.395547 0.539513 -0.330583 1.001871 0.431836 -0.901267 -0.061422 -0.311561 1.521730 -0.729197 0.089471 0.002051 -1.009475 -0.153105 0.604761 0.953132 -1.255027 -0.797384 0.169788 -0.070272 -0.645441 0.473460 0.111419 1.107288 -1.072653 -1.017463 0.249612 -0.703925 0.725933 -0.179903 0.090622 -1.056553 -0.020936 0.151151 -0.801131 -0.156299 0.663621 -0.749172 0.614641 -0.822046 0.317330 0.223170 -0.178603 -0.382012 -0.974550 0.272208 -0.274107 0.378231 0.191304 0.588289 0.053272 0.097635 -0.089653 0.206084 0.932357 0.296609 0.516593 0.478019 0.382295 0.377375 -0.218418 -1.451395 0.694900 -0.170680 0.035897 -0.129242 0.180616 0.850456 -0.011159 0.654333 -1.116613 0.685141 0.135846 0.030149 -0.572685 0.373965 0.007962 -0.472432 -0.528857 0.925731 -0.007279 -0.179858 -0.115345 0.449814 0.149755 -1.045763 -0.705891 -0.410571 0.665933 -1.141124 0.142473 -0.348709 -0.493430 -0.061530 0.243987 0.342260 0.650175 0.963228 0.793398 -0.338705 0.345391 -1.369806 0.215826 1.080510 0.632798 -0.801592 0.731392 -0.646377 -0.131654 0.581826 0.769629 0.340510 -0.077482 -0.212127 -0.192944 0.434050 0.120697 1.065813 -0.064970 0.315990 -0.759262 0.054514 0.218013 -0.156121 1.758845 0.103892 -1.273153 0.487346 0.739454 0.331148 -0.288165 0.263385 -0.797664 -0.661974 -0.512411 0.544674 0.678262 -0.946053 -0.315121 0.364489 -0.701139 0.633510 -0.184459 -0.740933 0.212312 -1.146300 0.556020 1.492172 0.280820 0.058552 -0.289286 -0.887873 -0.083714 -1.188842 0.150078 0.194189 -0.019151 -0.194546 -0.718159 -0.353889 1.181235 -0.131886 0.175228 -1.344867 0.089661 0.643274 0.002838 -0.053115 -1.410308 -0.257257 0.207124 0.220420 0.188440 -0.501493 0.255475 0.954464 -0.786243 0.162034 1.145021 0.264384 0.296979 0.600601 -0.919507 1.009802 -0.049754 0.746655 0.307552 0.327298 -0.676896 -0.138815 -0.307858 0.830239 -0.636181 0.314706 -0.678899 -0.180605 0.317008 -0.382858 -0.751914 0.153773 0.694485 0.236734 0.111462 -0.581875 -0.142601 -0.218519 -0.788724 0.315294 0.662973 -0.379482 -0.697520 0.592120 0.386921 -0.697772 0.263761 0.151415 0.451502 0.921707 -0.929435 0.360226 0.146031 0.494615 -0.917008 -1.197073 0.295609 -0.350522 -0.377420 0.356392 -1.310298 -0.910655 -0.382815 0.659445 -1.309538 0.250282 0.024482 1.044243 0.155803 -0.049961 0.695259 -0.101944 0.355815 -0.040923 0.137233 -0.071649 0.841917 +PE-benchmarks/largest-independent-set-problem.cpp__main = -5.536876 3.576658 1.091076 -4.978026 11.124162 -3.746117 1.947699 6.252764 -2.020153 6.051066 -5.822345 1.784916 -1.134467 -6.538302 0.880004 -1.549023 0.221445 6.446297 -1.828605 3.749392 4.408379 -0.549749 0.860490 -3.186326 -2.574883 -4.749010 -0.772591 2.119091 1.716312 -1.642188 0.171605 1.541039 8.874156 -1.136005 7.725373 6.802719 3.488587 7.881310 1.990834 -1.002267 1.740163 3.831219 -3.063709 -8.229301 2.111671 -2.400173 -5.634322 -4.981904 3.430580 -6.580963 4.945916 5.694812 -0.251118 -1.426003 -4.756125 4.709263 4.556181 -0.627189 7.657759 2.444105 -5.194770 1.593229 -5.761814 6.984978 -4.547178 3.459070 -0.408236 -7.309902 -0.975544 3.393562 4.625670 -6.605661 -5.216854 2.649344 1.288031 -5.343465 2.483680 -2.388769 0.184624 -5.751171 -4.872854 1.995432 -2.026936 5.101249 -0.673575 1.568260 -4.530151 1.899344 0.449171 -6.895611 -1.539123 7.068720 -3.743301 1.292660 -5.439818 3.251879 2.441407 -1.461537 -3.197736 -4.034270 2.465869 -0.531144 3.357206 -0.806516 0.809112 -3.783351 1.047715 2.788876 0.409143 4.729479 -0.376040 4.464682 3.793273 4.038110 -1.259704 3.003995 -9.693984 3.245678 -2.724636 1.345685 -0.873386 2.213983 3.281332 2.017130 5.035512 -7.595944 6.178022 0.802119 -1.873256 -5.294305 2.946803 -0.714647 -2.876783 -3.160235 4.869750 0.542602 -1.455114 -1.126175 2.136818 -0.190591 -3.509135 -5.092495 -0.645301 4.471262 -5.738927 1.766777 -2.249805 -2.819304 -0.355597 2.788877 3.517739 3.869113 8.601610 6.266392 -0.723134 0.804159 -7.934549 0.738547 7.636153 3.264783 -5.978126 5.796191 -3.390347 -1.506469 3.031583 4.571294 2.783163 3.394084 -4.920445 -4.845830 0.972321 -1.181047 7.748330 2.985414 1.314556 -6.223482 3.828517 -1.870094 -1.990262 10.701927 4.073667 -8.026002 1.077763 5.190254 -2.411717 -5.106187 2.783743 -4.233818 -3.042938 -1.868193 2.248830 3.302416 -4.989120 -5.313757 0.714989 -6.312383 6.203653 -1.316996 -3.070858 0.800357 -6.932806 -1.946030 9.106777 1.704248 -2.483134 -2.784923 -4.923381 -1.210326 -8.389966 2.182867 2.713409 -0.997186 -3.990120 -5.436995 -0.428885 5.327285 -1.895672 1.702194 -5.838616 -2.739953 4.328766 0.144807 2.301779 -8.457824 -1.719812 -1.035557 1.174188 2.285413 -1.244193 3.305869 9.660350 -5.026019 2.432085 5.934250 -1.686760 1.577203 6.680261 -7.061931 8.484882 -0.343380 5.411375 1.020399 2.668000 -3.885655 -0.237357 0.005057 1.351022 -1.511304 3.186873 -4.350076 -1.931961 0.709767 -4.563781 -3.422561 2.032035 4.519876 -0.080225 1.292147 -0.222531 -3.288709 -2.227118 -5.110579 0.439223 5.491738 -1.971624 -5.834703 3.330158 2.975473 -3.961998 -1.142411 1.126634 3.241037 6.188291 -7.513225 4.009138 -0.266188 0.659097 -7.879994 -6.624529 2.621078 -5.189744 -4.442655 2.073745 -7.176795 -4.127902 -4.213599 3.858469 -7.249265 -2.267207 1.352142 7.671853 3.126362 -0.992538 4.720613 -2.195210 4.936757 0.579194 -0.329271 0.189856 6.569596 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -3.501848 1.912312 0.540965 -3.811432 9.049909 -1.457973 0.601554 4.872423 -1.167191 5.833497 -2.722495 -0.018858 -0.789479 -5.966392 0.640625 -2.457975 -0.294904 3.042209 -1.522192 2.510338 2.518044 -0.746484 1.158926 -0.311112 -2.933665 -5.242017 -0.981349 2.715922 3.667515 -3.077104 0.424850 0.345403 7.123328 -1.890465 6.443097 4.455798 3.988443 3.944261 1.325428 -1.478700 0.235437 1.989167 -3.204859 -4.160574 -0.115195 -1.230227 -6.233802 -2.097702 2.881353 -3.384963 0.241322 5.024942 -0.627791 -0.001320 -2.842592 4.817670 0.885762 -1.461675 6.248836 1.267728 -3.622350 -1.258147 -6.077020 6.703855 -2.881552 1.884905 -2.854489 -5.160226 -0.939920 1.886836 -0.657363 -3.422386 -2.482960 4.063262 3.356995 -4.961959 1.432599 -2.423212 -1.326096 -4.765030 -3.477029 3.146798 -0.890323 4.409302 0.949130 2.424138 0.781117 2.737345 -2.038473 -7.660082 1.255408 5.989009 -3.944240 -1.282806 -4.417661 2.941318 0.056805 0.227529 -2.798325 -3.430813 2.003502 -0.910269 2.744031 -3.979488 2.426406 -4.756966 -0.401161 1.023028 1.673062 2.900547 1.309915 1.228721 3.415377 5.640662 -3.036030 0.867482 -6.459955 2.738659 -2.885179 1.511603 -2.550043 2.760490 2.895287 3.469661 5.369481 -7.581310 3.325248 0.339949 -1.913482 -5.198792 0.605305 -1.499342 -2.049488 -1.653147 3.438489 -1.057529 -0.647463 -2.093064 2.601695 1.031110 -2.750675 -1.616209 0.795342 2.564328 -5.386995 1.681809 -0.817554 -1.605996 -0.902314 3.949279 5.080204 4.491830 7.831424 4.598630 -0.619620 2.640676 -6.986416 0.483305 5.916566 0.867071 -4.454946 6.415651 -5.461811 -1.713202 1.062730 5.123458 3.044969 2.042494 -4.187275 -3.064012 2.532136 2.112459 7.033774 0.408773 0.258594 -3.156329 2.576713 -1.981101 -1.831628 7.248357 3.952377 -6.162034 2.025819 2.976268 -2.677582 -3.058713 3.820682 -5.832013 -1.300600 -2.270087 1.084455 3.950173 -2.823971 -1.955118 1.407304 -4.462785 5.295957 -1.637481 -2.598372 2.209224 -4.777474 -3.560984 6.203408 0.376091 -1.328678 -3.480206 -4.798769 -2.288361 -5.494655 1.550900 1.770020 -1.365426 -1.809280 -4.927650 -1.068180 4.352709 0.797271 3.454022 -7.196523 -0.636226 3.758216 1.289298 3.027540 -2.736912 -0.214308 -0.567083 -0.889760 0.979967 -2.853114 3.195171 6.323843 -3.662332 4.017439 -0.721018 -4.304870 1.094682 2.883854 -6.637519 8.008692 1.483306 3.367410 0.769709 1.791669 -2.857673 0.945761 -0.043383 -1.287914 -0.403711 1.571813 -2.666001 -2.360770 0.142378 -3.734210 -4.200371 -0.730268 3.298921 -1.506787 1.728667 -0.661494 -2.949935 -2.068221 -3.955188 1.807419 3.758517 -1.679010 -2.474276 4.408330 2.145433 -0.839348 -0.558743 0.396545 2.861403 4.528160 -6.459038 0.888817 -0.174747 2.662050 -5.820276 -6.403587 0.839144 -4.060271 -1.984355 0.627107 -5.918974 -2.518822 -3.866966 1.279425 -5.018808 -1.245192 3.140566 7.471110 2.067455 -2.862170 2.620077 -1.848364 3.091135 0.031788 0.152046 1.909449 3.297252 +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.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -3.931976 0.935931 -2.317418 -5.119190 9.947599 -2.017435 -1.361185 6.450369 0.066888 5.562249 -3.052889 0.019877 -1.116164 -7.637795 0.645960 -0.409282 0.639505 4.113157 -2.692227 2.921816 3.212555 -0.798762 2.591049 -0.850158 -3.089319 -3.513048 -0.352423 3.123085 1.965365 -2.743440 0.165028 0.349255 7.563462 -1.306847 5.718494 3.549703 4.223884 5.638385 2.358404 -1.673137 1.265135 1.965564 -2.491273 -5.894396 1.601531 -1.895334 -6.625096 -2.656325 3.577066 -5.410095 1.376568 5.599088 0.108743 -1.286580 -4.038914 3.805271 2.145099 -1.671723 6.613360 1.730297 -4.595935 -2.504163 -5.270025 4.877580 -4.088964 2.178414 -1.270971 -5.110319 -2.322652 3.868780 0.260299 -4.299660 -3.984195 2.274616 3.389772 -4.731853 2.429671 -1.984061 2.347611 -4.881357 -3.330314 2.999045 -2.159472 4.445304 0.361303 3.044022 0.583243 1.909853 -1.433002 -7.188729 1.275278 4.555297 -3.751698 -0.114095 -3.989154 3.666161 -1.060952 -1.504617 -4.384760 -3.535871 1.950442 -0.639339 3.068916 -2.433766 2.021189 -4.252337 1.299081 1.781014 1.926948 3.037790 2.352030 1.084172 2.105595 4.950576 -2.626633 1.512753 -8.262268 1.972792 -2.616519 2.004862 -3.077257 2.200087 4.834348 2.857980 4.335596 -7.851523 5.725149 1.354608 -2.010301 -4.809577 2.067336 -0.003490 -1.691577 -1.195216 4.550964 -2.387611 -0.715177 -1.032077 3.222330 0.659023 -4.671417 -1.131169 -0.649755 2.949181 -5.552955 2.395651 -0.984506 -2.788312 0.420602 2.656380 4.320818 3.166967 8.857814 4.082197 -1.951389 3.156675 -6.718991 1.858257 7.524636 1.858634 -4.926288 6.073743 -4.581179 -0.822177 0.879049 4.725723 3.467945 2.140964 -2.965120 -2.273266 2.495572 1.908450 7.173715 -0.596593 1.765538 -5.837476 1.473772 -0.707814 1.549076 9.317827 3.464038 -6.777122 2.057598 4.488476 -2.379448 -2.472976 2.551444 -4.289166 -1.795331 -2.110847 2.652772 4.245566 -4.225115 -4.333296 0.286354 -4.746330 4.707960 -1.833553 -3.688450 1.969697 -6.267675 0.010585 7.091027 0.944955 -1.812201 -2.559450 -5.667964 -1.313463 -7.008212 1.746339 2.628829 -1.274431 -0.802860 -4.150611 -2.189597 5.211192 0.536981 1.660262 -9.063631 0.511645 4.426551 0.572241 2.507270 -3.475722 -0.262141 0.747413 -0.817937 1.368490 -2.678949 1.746543 5.355991 -4.866123 3.889096 0.517792 -1.792661 2.077265 3.747809 -5.674081 9.056392 1.343228 5.822076 0.468908 2.538388 -2.398620 2.030019 -0.861149 -1.218214 -0.773171 2.141408 -4.263372 -3.126234 1.833607 -1.939901 -5.499092 0.168186 4.676064 -0.649113 1.888726 -1.480815 -1.557368 -2.167589 -2.652341 2.642035 3.993519 -2.154807 -3.714484 3.090235 4.337847 -1.306231 -0.405128 1.366695 3.498734 6.200070 -6.898645 2.871638 -0.046204 2.565057 -6.071275 -5.439868 2.150212 -2.571507 -0.274058 1.481220 -7.292164 -3.793230 -3.496390 3.730575 -3.752582 1.384209 1.747826 7.160979 2.566278 -2.687184 3.866777 -1.339971 2.260893 -0.075331 -0.145193 2.098834 4.215930 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +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) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -1.007541 0.733824 0.159662 -0.925011 2.653184 -0.654446 0.212402 1.077599 -0.386754 1.636772 -0.867737 -0.143947 -0.156946 -1.832556 0.302468 -0.515796 -0.093697 1.076068 -0.100502 0.786931 0.635075 -0.536098 0.129624 -0.184228 -0.655164 -1.521470 -0.403261 0.760130 1.179269 -1.088883 0.128006 0.290804 2.102046 -0.490299 1.839815 1.418344 0.782425 1.145826 0.608009 -0.820286 0.185271 0.594363 -0.853727 -1.220428 0.041330 -0.235605 -1.576274 -0.758004 0.710710 -0.723144 0.135968 1.361631 -0.248684 -0.035937 -1.092889 1.279128 0.592598 -0.142929 1.712829 0.351442 -0.706838 0.000210 -1.593822 1.846495 -0.873670 0.167032 -0.819457 -1.520248 0.064860 0.571342 0.063270 -1.116849 -0.678326 1.201489 0.835368 -1.324345 0.365295 -0.600442 -0.624485 -1.587611 -1.172656 0.756861 -0.438299 1.303535 0.162218 0.509395 -0.085375 0.636749 -0.378042 -1.975599 0.088173 1.714006 -0.943249 -0.310275 -0.770913 1.091808 0.630840 -0.053009 -0.586928 -1.038213 0.449818 -0.490866 0.737896 -0.548205 0.954426 -1.107158 -0.270211 0.021077 0.431607 1.225410 0.528248 0.561506 0.967975 1.353888 -0.992528 -0.229098 -1.752689 0.748639 -0.745234 0.318355 -0.518569 0.713170 0.660274 0.811339 1.410941 -2.223501 0.819118 0.016176 -0.124056 -1.377910 0.131681 -0.341209 -0.590973 -0.546861 0.879009 -0.100410 -0.198136 -0.392602 0.469200 0.436353 -0.717200 -0.485640 0.244707 1.401330 -1.630266 0.461153 -0.242056 -0.490574 -0.257844 0.830033 1.394318 1.283677 2.034230 1.393194 -0.170374 0.685542 -2.077448 0.190498 1.728995 0.004105 -1.196557 1.771918 -1.308052 -0.554368 0.381592 1.519538 0.880193 0.286086 -1.122754 -0.932722 0.696721 0.363008 1.793549 -0.047105 -0.069599 -0.926954 0.944516 -0.009460 -0.754324 2.296272 0.612672 -1.663105 0.736488 0.982335 -1.043359 -0.817456 1.015693 -1.539696 -0.370756 -0.706546 0.410250 1.046160 -0.807332 -0.470146 0.208385 -1.228261 1.444730 -0.446577 -0.849593 0.617046 -1.098859 -1.089133 1.986820 0.179556 -0.173734 -0.956653 -1.379157 -0.446562 -1.505696 0.347118 0.334314 -0.507969 -0.521884 -1.326044 -0.261652 1.477426 0.013688 0.975464 -2.101882 -0.144348 0.913144 0.627582 0.611939 -0.956590 -0.139136 0.070814 -0.075115 -0.014688 -0.603003 0.952692 1.985254 -1.047490 0.778619 0.166976 -0.941212 0.589431 0.829630 -1.909417 2.064799 0.275957 1.161056 0.265474 0.442970 -0.768836 0.071338 0.121074 -0.206566 -0.324139 0.316976 -0.714206 -0.523959 0.275467 -1.015719 -1.306765 -0.072988 0.939320 -0.070052 0.434310 -0.329895 -0.809574 -0.414774 -0.885566 0.458458 0.965717 -0.229563 -0.652940 1.222234 0.627917 -0.182085 -0.230154 0.044960 0.713077 1.095921 -1.765991 0.402256 -0.091749 0.875771 -1.377476 -1.884781 0.394796 -1.167422 -0.588997 0.353808 -1.901715 -0.760977 -1.062910 0.312949 -1.675594 -0.204237 0.706204 2.116603 0.590002 -0.780319 0.744840 -0.592147 0.778602 -0.077564 0.028787 0.384828 0.984730 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.175251 2.400819 1.267653 -2.739695 8.613979 -0.915547 0.607082 4.068251 -3.056208 6.180190 -2.094288 0.042287 -1.123363 -5.968293 0.463185 -2.002006 -0.766409 2.769089 -0.235716 3.270516 2.254227 -2.504592 0.708708 -0.024917 -2.580655 -4.968244 -0.979298 2.410610 4.734151 -3.415257 0.904730 0.133406 6.687274 -1.725027 5.767829 4.489328 2.281981 3.639499 1.809694 -3.178453 -0.972023 2.278799 -3.423817 -3.582664 0.177235 -1.131242 -5.101364 -2.356465 2.274493 -2.272800 -1.103655 4.934299 -1.468347 0.043606 -3.117426 4.696002 1.455437 -1.269159 6.241314 0.601503 -1.993122 -1.092324 -5.950754 5.979846 -2.243559 0.398208 -2.889081 -4.576276 0.982250 0.486614 -0.788314 -2.829189 -1.262814 5.325998 3.007677 -4.895216 0.636409 -2.675239 -4.528982 -5.600782 -4.059657 2.126314 -0.792672 4.031462 0.933332 2.027078 1.034185 3.123070 -2.030254 -7.769592 1.475438 5.793693 -3.187946 -1.603206 -3.327213 3.921110 1.129641 0.599383 -2.744287 -2.108064 1.566366 -1.283521 2.778248 -4.252787 3.244113 -4.789348 -0.921367 -0.439778 2.207396 2.906968 2.177338 1.107090 3.797548 5.507440 -4.199914 0.150098 -5.116299 2.000370 -1.849436 1.352640 -2.025742 3.018197 1.686612 2.436311 5.708141 -8.039061 1.742115 -0.426660 -0.959245 -5.615948 0.033901 -2.099560 -1.422215 -1.902194 2.962111 -0.929944 -0.571206 -2.285387 1.587188 1.587808 -3.075922 -1.573527 1.693963 5.279455 -5.835269 1.734597 -1.040243 -1.561836 -0.723929 3.369108 5.104822 5.002429 6.936600 4.812543 -0.060197 2.627482 -6.775526 0.083286 5.427912 0.836129 -4.409204 6.259945 -4.760072 -1.998337 0.699163 5.200711 3.980051 1.233516 -4.499027 -3.953593 3.354558 2.081128 6.282097 0.131876 0.067733 -1.828098 3.480101 -0.466127 -3.286505 6.531425 2.580967 -4.918561 2.597512 2.160210 -3.505542 -2.420024 3.852096 -5.279121 -0.740652 -1.967768 0.527322 3.583894 -2.296160 -1.034104 0.781751 -4.433052 5.528648 -1.461251 -1.250720 2.646723 -3.669290 -4.557808 5.138608 0.267576 -1.240789 -4.064735 -4.854041 -3.128841 -4.487323 1.582858 0.785337 -1.523367 -2.548161 -5.120491 -0.985948 3.912173 1.459241 3.706068 -7.419731 -0.999512 3.034591 1.982656 3.084270 -2.722379 -0.366103 -0.114878 -0.741899 0.773436 -1.711219 3.896468 6.745574 -3.230607 3.178616 -0.759463 -3.183117 1.822399 2.378115 -6.882008 6.961453 1.200964 3.796970 0.388397 1.447555 -2.330513 0.999647 0.916558 -0.672852 0.147353 0.665958 -1.469294 -2.130851 -0.029385 -4.493045 -4.124054 -1.324425 1.989756 -0.949945 1.958322 -0.850808 -3.146699 -1.990043 -3.567005 1.390275 3.468395 -1.011015 -1.221510 4.444833 0.769346 0.613304 0.115609 0.270262 2.287773 2.917575 -6.264933 0.284595 -0.961235 2.498270 -4.146417 -6.087068 0.493027 -3.748016 -2.549922 2.033750 -6.080946 -0.894739 -3.912340 -0.014042 -5.675593 -1.163007 1.975257 7.495692 1.701499 -3.029873 2.415017 -2.193947 3.028185 -0.114288 0.303399 1.239948 3.058790 +PE-benchmarks/reservoir-sampling.cpp__main = -1.302659 0.500435 -0.007964 -0.830507 3.028575 -0.640289 0.079090 1.816522 -0.649273 1.931257 -0.899814 -0.048852 -0.653954 -2.067806 0.264414 -0.199694 0.148009 1.322253 -0.388026 0.678056 1.083793 -0.484283 0.272614 -0.260262 -0.671769 -1.457167 -0.254582 0.665801 1.164039 -0.754946 -0.224364 0.375337 2.472634 -0.333405 1.959035 1.530443 1.086285 1.733171 0.599301 -0.589096 -0.143260 1.057296 -1.042403 -1.812460 0.577974 -0.700515 -1.521214 -0.881557 0.972088 -1.142949 0.558043 1.629893 -0.314850 0.024307 -1.059729 1.227924 0.726761 -0.167285 2.169593 0.503095 -1.060261 -0.420177 -1.785120 1.999234 -1.058946 0.518221 -0.543613 -1.908856 -0.168172 0.388539 0.348873 -1.314446 -0.855829 1.343546 0.713453 -1.458896 0.555495 -0.528209 -0.391042 -1.705509 -1.810059 0.489873 -0.678866 1.498398 -0.032831 0.459064 -0.259383 0.642589 -0.266043 -2.381206 0.212765 1.834381 -1.176551 0.243941 -1.320180 0.851736 0.202453 0.108724 -0.995828 -0.896966 0.532328 -0.251883 0.954622 -0.792565 0.670894 -1.220635 0.278509 -0.052649 0.667664 1.000563 0.814427 0.355936 0.960083 1.604165 -0.917732 0.220060 -2.073940 0.887607 -0.509020 0.499597 -0.550487 0.906871 0.906653 0.351912 1.734975 -2.602812 0.955488 0.022463 -0.380123 -1.667705 0.393811 -0.617481 -0.715988 -0.765484 1.461466 -0.281668 -0.422095 -0.665010 0.682711 0.333542 -1.469268 -0.683668 -0.054364 1.415426 -1.947712 0.451489 -0.630114 -0.936806 -0.163308 0.913865 1.283566 1.619381 2.238785 1.751313 -0.349997 0.643323 -2.399931 0.301777 2.120270 0.544076 -1.686993 1.747796 -1.401752 -0.272852 0.663306 1.487537 1.254369 0.646792 -0.895514 -0.808688 0.712924 0.573742 2.213530 0.458752 0.510031 -1.147450 0.662210 -0.223684 -0.767092 2.663025 0.919310 -2.059634 0.836848 0.930986 -0.910873 -0.750990 0.881596 -1.501137 -0.398176 -0.977436 0.530627 1.375418 -1.360717 -0.693529 0.462637 -1.639043 1.819570 -0.435840 -0.362924 0.891579 -1.878707 -0.778804 2.177955 0.276316 -0.414097 -1.237411 -1.709424 -1.015355 -1.853176 0.634611 0.319581 -0.415071 -0.941395 -1.711464 -0.436792 1.785675 0.349082 0.927060 -2.353787 -0.154514 1.088043 0.241925 0.974941 -1.514611 -0.391758 -0.032192 -0.205146 0.622243 -0.565779 0.831090 2.238142 -1.403053 0.968862 0.593271 -0.577355 0.476809 1.056419 -2.049039 2.250698 0.155495 1.327120 0.084835 0.741112 -0.943988 0.259834 0.093752 0.293549 -0.239431 0.605626 -0.786526 -0.630965 0.298301 -1.584910 -1.295207 -0.137528 0.841621 0.158244 0.550066 -0.474361 -1.022953 -0.542995 -1.125935 0.452654 1.445529 -0.408972 -0.906590 1.168174 0.233115 -0.437580 -0.205990 0.352746 0.670495 1.440892 -2.097118 0.270019 -0.095943 0.567240 -1.579743 -1.957918 0.075822 -1.106770 -0.914146 0.996670 -2.225001 -0.550159 -1.210161 0.506929 -1.988224 -0.189508 0.186710 2.356736 0.668671 -0.575573 1.230879 -0.371728 1.084582 -0.014374 -0.053727 0.362938 1.413509 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -3.139379 2.237979 0.730232 -3.462713 7.621220 -1.515683 0.977680 2.203603 -1.604893 4.075257 -3.463054 0.530655 -1.036454 -5.209070 0.743128 -2.300024 -0.019753 2.982927 -0.930465 2.579043 2.231629 -1.761717 1.378143 -1.624999 -1.549070 -5.195116 -0.539810 1.827052 2.428977 -0.689843 0.917910 0.326926 5.037069 -1.398123 3.154394 3.433425 1.873683 4.321873 0.950731 -2.551377 1.372564 1.919377 -1.818375 -4.774365 0.878017 -1.209129 -4.799937 -2.834194 2.558268 -4.385731 -1.070854 3.857318 -0.387665 -1.822091 -3.761915 3.708890 3.722126 -0.303898 4.710038 1.022209 -1.819885 -1.205245 -3.943110 3.691451 -3.044317 0.997972 -1.318384 -4.329803 -0.708666 2.867466 -0.818445 -1.476045 -2.625247 1.500858 2.644186 -3.525479 0.915753 -1.649215 -2.578133 -3.021126 -2.269677 1.367446 -1.432558 3.692217 0.230051 1.478776 0.620819 1.185895 0.328293 -4.275714 -0.763854 4.727413 -1.387872 -0.872235 -2.006533 3.435713 2.379930 -1.853780 -2.045918 -2.144993 0.911462 -0.813046 2.301703 -2.256783 0.168261 -3.933044 0.154145 1.471893 1.169432 3.566648 -0.240484 1.599340 0.954279 2.331808 -3.139240 1.277004 -5.750679 1.346256 -2.001756 0.917703 -1.678890 1.571568 2.072377 2.160612 3.184768 -5.332757 4.391774 0.604258 -0.634108 -3.079377 1.487932 0.428591 -1.153822 -0.877066 2.637146 -0.812961 -0.601861 -0.049799 1.720144 0.566585 -1.870017 -0.740032 -0.081622 3.896918 -4.036923 1.796538 -0.991794 -1.707596 0.305368 1.295380 2.459556 2.441459 5.696395 3.954727 -0.783414 3.225324 -4.922536 1.592351 5.796738 1.214562 -3.283825 3.624538 -2.450259 -0.882627 0.974832 2.667752 2.268559 2.810184 -3.403910 -3.034619 0.632746 -0.373396 4.519579 1.837354 0.473131 -4.890724 2.995872 -1.089507 0.416576 5.580389 2.854335 -4.814920 2.291054 4.079615 -4.895420 -2.718710 1.506156 -2.590135 -0.918478 -2.011439 1.560056 2.861863 -2.915314 -3.509808 -1.116302 -3.413514 3.513344 -0.958400 -2.091944 1.172050 -2.816456 -2.659103 4.861557 0.765894 -0.978752 -2.398976 -3.618704 -2.532673 -5.269027 1.202231 1.228690 -2.080808 -1.879416 -3.408718 -1.382145 3.455182 -0.663523 1.524759 -5.848136 0.018589 2.699263 3.109480 1.540079 -2.500223 -0.624527 0.428447 -0.510999 0.328352 -1.125267 2.198367 4.530607 -3.459423 2.596964 -0.508488 -2.794521 2.189989 3.712572 -3.968233 5.613755 0.628750 4.823223 0.572353 1.788447 -1.621783 1.026939 0.194876 -2.524410 -0.735443 1.763212 -3.540963 -1.927957 2.293708 -1.838058 -3.738037 1.037042 3.407428 0.939523 0.855589 0.017943 -1.891150 -1.120613 -1.628417 0.967739 2.815660 -1.147089 -3.031213 1.812153 3.111298 -1.578611 -2.707704 0.831146 2.206761 3.356953 -4.860729 3.021880 -0.586470 1.082768 -4.657762 -4.174661 2.232351 -2.888888 -2.486715 1.941607 -5.317054 -1.943094 -2.715092 2.419412 -3.820591 -1.494344 0.972120 4.651618 1.041001 -0.615355 2.966826 -1.302800 1.815941 -0.672387 0.030472 0.925494 3.123393 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -1.534886 1.897279 -0.452747 -1.558746 4.932914 -1.803190 0.598190 1.692562 -2.056972 1.868654 -1.943715 1.275640 -0.283252 -3.711232 0.618011 -0.271284 0.431129 2.303010 0.120433 1.650413 1.088018 -1.418309 0.377586 -0.795872 -0.713596 -3.947692 0.037543 0.983557 1.455930 -1.547644 0.237326 0.658924 3.365840 -0.437332 1.970680 2.078067 0.628132 2.497019 2.034767 -2.686239 0.471809 0.940420 -0.841753 -2.840615 0.390707 -0.295023 -2.848209 -1.510667 1.105369 -2.202769 0.057657 1.993871 -0.219037 -0.581410 -2.597177 2.117418 3.281856 0.087827 2.427008 0.635926 -0.536413 -0.968191 -1.428094 2.103986 -1.570762 -0.552533 -0.418413 -1.841076 0.458145 1.474768 0.248560 -1.695229 -1.686849 0.752874 1.130179 -1.929644 0.560215 -0.574548 -2.361383 -2.823306 -1.996815 0.767833 -1.560385 2.244885 0.151583 0.711560 -0.742182 0.514956 0.229527 -2.161022 -0.271914 2.667164 -0.730954 -0.527159 -0.457401 3.473116 1.573262 -0.921953 -1.125535 -1.988102 0.566572 -0.919939 1.161011 -1.001530 0.840556 -2.330933 0.075227 0.016662 0.530400 3.195334 0.780521 1.068175 0.833859 1.072353 -1.966773 0.062845 -4.682121 0.821026 -0.825603 0.264739 -0.679525 0.730026 1.247193 1.245095 1.584527 -3.478269 2.693129 0.629924 0.405239 -1.681751 0.701167 0.172841 -0.618520 -0.744881 1.525457 -0.369881 -0.107731 0.073703 0.726743 0.607226 -1.760718 -1.100147 -0.134875 4.332990 -3.838796 0.918135 -0.512420 -0.966611 0.088402 0.351457 1.169056 1.449844 3.537650 2.047361 -0.739663 2.495132 -3.235781 0.727616 3.892111 1.683156 -1.619289 1.989609 -0.867785 -0.727963 0.506939 2.194751 1.420900 0.241921 -2.704873 -2.420256 1.296534 -0.136382 2.261901 0.266818 0.220017 -2.892812 2.727754 1.288197 -0.137061 4.123240 0.944937 -2.337599 1.287961 2.208767 -2.174631 -0.958819 0.861957 -1.565367 -0.541388 -1.138833 0.968003 1.419964 -1.686116 -2.119942 -0.809736 -1.668508 1.541810 -0.440967 -1.830293 0.526156 -1.273879 -0.611123 3.400208 0.415304 -0.198855 -1.271879 -2.588370 -1.783678 -2.653061 0.513090 0.251133 -1.003429 -0.558222 -1.767157 -1.032380 2.663575 -0.353317 0.603374 -4.443699 -0.022156 1.419534 2.728947 0.177072 -2.346031 -0.380382 1.034024 0.138235 -0.205485 -0.224299 2.271033 3.309657 -1.857002 1.185780 0.423134 -0.432233 1.805526 2.771977 -2.305243 2.848299 -0.140563 4.321188 0.561184 0.825070 -1.042672 0.212267 0.075272 -0.724079 -0.741378 0.572512 -1.757181 -0.856805 1.538334 -0.336869 -2.937869 0.361490 1.777171 0.617901 0.389366 -0.967445 -0.519194 -0.413182 -0.869086 0.834668 1.393166 -0.448381 -1.618314 1.138220 1.840678 -0.230323 -0.567353 0.343479 1.171108 1.710749 -2.520567 1.502633 -0.447241 1.693491 -2.541923 -3.291505 1.688281 -1.215543 -1.644788 1.255305 -3.782779 -1.565764 -1.342082 1.207500 -3.769834 0.232508 0.334224 2.430009 0.166512 -0.468023 1.306122 -0.776662 0.618088 -0.567059 0.346835 0.153223 2.112509 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -4.303074 3.851020 0.872481 -4.733190 9.693951 -2.519835 1.755005 2.965174 -3.336703 5.379931 -4.563693 1.734059 -0.900863 -7.807256 1.217388 -2.619751 0.223126 4.411093 -0.140755 4.689357 3.084824 -3.450781 1.310180 -2.332419 -2.244596 -7.092430 -0.163804 2.539090 3.699824 -1.602795 2.163433 0.919624 7.063868 -1.465077 4.972367 5.389102 1.980390 5.914148 2.540396 -4.925454 1.254885 2.621827 -2.445929 -6.612532 1.216153 -1.155983 -5.903168 -4.199454 3.041513 -5.178937 -1.953185 5.391372 -0.560803 -2.079421 -6.124260 4.364488 5.769651 -1.101390 6.482366 1.524418 -1.825966 -1.471982 -4.802723 4.612505 -4.103466 -0.385271 -1.190886 -5.156625 0.706914 3.749163 -0.837407 -2.353041 -3.243148 2.258351 3.316732 -5.234563 1.279195 -2.256596 -4.636496 -5.285902 -2.895220 1.892480 -1.703386 5.590811 0.340211 2.042004 0.467285 1.685609 0.380131 -5.981516 -0.984216 5.837376 -1.841219 -1.689604 -2.217480 6.502577 3.967004 -2.407094 -2.967075 -3.206576 1.572656 -1.662252 3.163811 -2.542246 0.372839 -4.912738 -0.687274 0.800799 1.149946 5.810904 0.195190 3.028591 1.943360 3.242786 -4.621497 1.063623 -7.815841 2.027304 -2.462746 1.216514 -1.890263 1.899527 2.801861 2.701533 4.330016 -7.455328 5.575285 1.270759 0.240242 -4.814101 2.025337 0.396368 -1.509723 -1.817888 3.692425 -0.870391 -0.515231 -0.091834 1.941211 1.200208 -2.382592 -1.848750 0.052513 7.098574 -6.276714 2.510192 -1.394835 -2.274847 0.207657 1.274036 3.365389 3.474564 7.591364 5.492900 -1.165742 5.694228 -6.695278 1.613426 8.064415 2.771868 -4.405758 5.298849 -3.213783 -1.899280 1.393543 3.794682 3.550484 2.324950 -5.792133 -5.101827 2.416557 -0.792090 6.201120 1.367513 0.326055 -6.492356 5.426715 0.352837 -0.336554 8.079361 2.523662 -6.378187 3.981216 5.513811 -6.599738 -3.408597 2.235642 -3.822508 -1.550846 -2.318060 2.119326 3.484573 -3.932666 -4.432208 -2.163512 -4.730272 4.577209 -1.288455 -2.652595 1.322763 -3.330093 -3.668876 6.767761 1.024001 -1.387245 -3.484523 -4.819778 -2.886079 -7.141862 1.583805 1.233715 -2.920221 -2.360788 -4.842151 -2.079076 4.711278 -1.175822 1.636972 -8.838594 -0.229201 3.768375 4.666923 1.232925 -4.146258 -0.908051 1.406941 0.283705 0.000447 -1.210930 4.004744 6.562193 -4.748674 2.527938 -0.737185 -2.849011 4.128107 4.934219 -6.125298 7.763764 0.616588 7.680582 1.128507 2.191151 -2.633893 0.817426 0.453537 -2.896955 -1.232245 1.883031 -4.582234 -2.398236 3.364453 -1.964050 -5.312354 1.345263 4.597981 1.216572 1.166521 0.116566 -2.074978 -1.397200 -2.447305 1.340167 3.924194 -1.371149 -3.898045 2.804946 4.556267 -1.048107 -2.792622 0.884242 3.359973 4.327259 -6.739135 4.288554 -1.279771 1.663035 -5.554598 -6.829423 4.371434 -4.157330 -3.305436 2.889095 -7.899721 -2.210043 -3.772068 3.213750 -6.090124 -1.058493 1.252418 6.467302 0.854246 -1.080599 3.782211 -2.260776 2.583586 -1.155297 0.818610 0.642736 4.771899 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.627291 0.666882 0.278283 -0.717357 1.892045 -0.579798 0.151382 0.523339 -0.172028 0.777426 -0.864827 0.002728 -0.086964 -1.245304 0.275644 -0.582945 -0.042025 0.843937 -0.092897 0.543440 0.430622 -0.288893 0.061431 -0.323075 -0.301598 -1.411987 -0.326091 0.434105 0.453388 -0.521700 0.192299 0.254364 1.342509 -0.256600 0.996096 0.951361 0.398919 0.943245 0.390872 -0.370668 0.339850 0.386174 -0.447514 -1.057346 0.054502 -0.132065 -1.212706 -0.627452 0.422270 -0.730543 0.093979 0.827962 -0.079224 -0.176998 -0.798532 0.913946 0.849626 0.334945 0.947199 0.339611 -0.375032 0.106900 -0.911241 0.897792 -0.649365 0.259133 -0.489293 -0.998484 -0.061920 0.564821 0.149079 -0.562485 -0.639038 0.394024 0.497508 -0.713430 0.307146 -0.337440 -0.702036 -0.826437 -0.715861 0.501513 -0.384007 0.834275 0.061482 0.249166 -0.204830 0.283261 -0.014365 -0.904265 -0.178677 1.186371 -0.440733 -0.285094 -0.182513 0.929445 0.692918 -0.220181 -0.220677 -0.758914 0.315388 -0.340697 0.439615 0.063000 0.289087 -0.782820 0.037856 0.326803 0.167891 1.075381 0.055806 0.499948 0.471716 0.489453 -0.722769 0.145799 -1.612648 0.428940 -0.687353 0.139355 -0.263967 0.371476 0.437864 0.673359 0.644745 -1.192880 0.978854 0.179871 -0.050058 -0.496210 0.266121 -0.071776 -0.418323 -0.325510 0.525561 0.069073 -0.111997 -0.014865 0.246659 0.153242 -0.202241 -0.346480 -0.020438 1.058817 -1.095743 0.282930 -0.148426 -0.324087 -0.092161 0.370707 0.617126 0.622699 1.502247 0.841388 -0.228327 0.350016 -1.280115 0.214924 1.420894 0.041878 -0.646243 0.889312 -0.403037 -0.304273 0.214714 0.913196 0.400376 0.428514 -0.794223 -0.766164 -0.090927 -0.079081 1.002141 0.338038 -0.072882 -1.068993 0.777971 0.010547 -0.264012 1.626709 0.543401 -0.964765 0.121919 0.869166 -1.032277 -0.731486 0.480498 -0.684423 -0.143579 -0.463561 0.326358 0.570526 -0.596893 -0.794968 -0.014581 -0.753257 0.666171 -0.212351 -0.666400 0.174375 -0.576512 -0.744855 1.479038 0.183262 -0.114242 -0.491711 -0.882824 -0.286887 -1.044111 0.223858 0.246413 -0.323721 -0.292541 -0.669239 -0.145236 0.968606 -0.288487 0.428781 -1.245076 -0.197927 0.538450 0.674897 0.239331 -0.758877 -0.161898 0.075104 -0.121155 -0.073895 -0.165460 0.722255 1.447015 -0.644549 0.525693 0.292254 -0.727414 0.387189 1.107030 -0.962694 1.265976 -0.037385 1.078046 0.224304 0.334617 -0.477014 -0.036729 0.078606 -0.485272 -0.284540 0.333836 -0.607943 -0.272474 0.413102 -0.385999 -0.870492 0.205622 0.721408 0.061367 0.166265 -0.136920 -0.564652 -0.141077 -0.273990 0.278295 0.612084 -0.089154 -0.711897 0.554786 0.679132 -0.299466 -0.588665 0.077009 0.381615 0.782409 -1.059781 0.565214 -0.002341 0.574173 -1.178532 -1.057597 0.412056 -0.761724 -0.444656 0.135971 -1.176725 -0.670803 -0.626767 0.393821 -1.010512 -0.288050 0.442144 1.071882 0.401340 -0.417210 0.444345 -0.355143 0.433904 -0.018794 -0.096981 0.144791 0.786677 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.850152 0.400872 -0.446597 -0.606849 2.090102 -0.822481 0.204944 1.580558 -0.713364 1.033005 -0.753905 0.853159 -0.085916 -1.271347 0.247957 0.445177 0.354865 1.122684 -0.241392 0.325680 0.608885 -0.049155 0.114730 -0.356920 -0.467244 -1.071885 0.186741 0.427728 0.390333 -0.378443 -0.305291 0.492136 1.641269 -0.309371 1.138558 0.993891 0.857048 1.104526 0.829331 -0.739150 0.424691 0.459012 -0.358283 -1.233398 0.289133 -0.322966 -0.958307 -0.496127 0.611128 -0.982734 0.699742 0.797974 0.062496 -0.076818 -0.863649 0.813990 0.809704 -0.645688 1.237095 0.404820 -1.004113 -0.451633 -0.568331 1.801805 -0.850479 0.023227 -0.108203 -1.163078 -0.130753 0.833425 0.560103 -1.047849 -0.711206 0.266747 0.157998 -0.915764 0.417132 -0.081885 0.615235 -1.170534 -0.820518 0.329930 -0.622417 0.880958 -0.104677 0.236392 -0.756585 0.088202 0.102682 -1.050324 -0.228003 1.032062 -0.771907 0.378078 -1.069973 0.615709 0.436064 -0.341135 -0.422961 -1.025117 0.306872 -0.205831 0.482206 -0.432399 0.498878 -0.331779 -0.017744 -0.031173 0.283023 1.189786 -0.100029 0.621739 0.408155 0.559288 0.058609 0.014733 -1.775481 0.713962 -0.237159 0.143637 -0.327682 0.167857 0.955734 0.305624 0.849919 -1.402754 1.007630 0.112228 0.023506 -0.853592 0.421003 0.122712 -0.425363 -0.484795 0.938213 -0.107373 -0.176763 -0.120842 0.601873 0.208911 -1.137141 -0.911064 -0.285604 0.990967 -1.531725 0.295073 -0.342685 -0.404722 -0.047664 0.328646 0.553881 0.686728 1.275158 0.946437 -0.183538 0.931482 -1.576012 0.282681 1.391509 0.908890 -0.922320 0.960067 -0.880178 -0.260125 0.553446 0.806987 0.416559 0.285354 -0.663916 -0.567674 0.653187 0.058582 1.317091 0.138663 0.247776 -1.150071 0.381497 -0.030742 -0.041125 1.869010 0.453692 -1.562484 0.778832 0.930519 -0.099110 -0.409333 0.361823 -0.978690 -0.750451 -0.466319 0.507230 0.829023 -0.963154 -0.570604 0.154469 -0.834473 0.871234 -0.250784 -0.750965 0.242136 -1.070802 0.242822 1.485174 0.319378 -0.056116 -0.443280 -0.983227 -0.551883 -1.459166 0.154163 0.333304 -0.285669 -0.350076 -0.936462 -0.492707 1.183949 -0.197963 0.236615 -1.964747 0.049121 0.813880 0.369228 0.028323 -1.485025 -0.198157 0.107330 0.174753 0.184958 -0.614977 0.546203 1.179582 -0.894076 0.546660 0.699028 -0.113429 0.454242 0.808983 -1.122194 1.321183 0.066439 1.090730 0.370304 0.377437 -0.726513 0.005334 -0.336718 0.390943 -0.579917 0.379888 -0.916267 -0.333279 0.420509 -0.528175 -0.917383 0.239763 0.900413 0.297272 0.146644 -0.418199 -0.228869 -0.364744 -1.016653 0.261054 0.734888 -0.565224 -0.872230 0.701355 0.594978 -0.768408 -0.046446 0.158761 0.710776 0.949654 -1.154806 0.591303 0.073393 0.454453 -1.317423 -1.461629 0.497597 -0.547614 -0.723859 0.358161 -1.636223 -0.948839 -0.505427 0.784577 -1.685804 -0.043640 0.172321 1.302926 0.018090 -0.035065 0.873297 -0.237229 0.473742 -0.083688 0.313154 -0.011462 0.913534 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -2.588339 0.459671 -0.516174 -1.821182 6.634495 -2.818704 0.562962 4.307307 -0.583150 2.933326 -2.370495 1.181074 -0.785410 -3.315159 0.803016 0.149881 1.294512 3.591143 -1.357824 0.461758 1.915379 0.995790 0.539670 -1.033246 -1.103967 -2.956733 -0.288822 1.305051 0.360053 -1.109514 -1.132018 1.778986 5.293685 -0.932370 3.716065 3.179494 3.022418 3.499506 1.551000 -0.808558 1.837418 1.351330 -1.106951 -3.852635 0.929125 -0.829480 -3.430068 -1.602925 2.063259 -3.132382 2.584701 2.644821 0.013891 -0.234851 -2.069643 2.667477 1.610470 -0.942567 3.559441 1.332851 -3.640149 -0.225314 -2.189843 5.345731 -2.693252 1.486858 -1.053926 -4.334011 -1.499793 2.652441 2.216205 -3.466083 -2.848405 0.772652 0.698676 -2.443024 1.305422 -0.052844 2.796882 -2.683700 -3.185099 1.212183 -1.806886 2.291056 -0.112423 0.737162 -2.272328 0.267136 0.466512 -3.154844 -0.460275 3.526212 -2.572800 1.429904 -3.541872 0.286840 1.102955 -1.185972 -0.980580 -3.484822 0.908208 -1.130206 1.615329 -0.175388 1.205917 -1.036317 0.325119 0.976767 1.109836 3.003018 -0.579755 1.679319 1.424964 1.486958 0.384319 0.466294 -5.316842 2.528352 -1.535129 0.023037 -0.957910 0.866335 2.659929 1.306135 2.534158 -4.076475 3.037394 0.264875 -0.827456 -1.904123 1.306503 0.301598 -1.368315 -1.473367 3.147088 -0.326544 -0.668125 -0.199452 1.853502 0.211207 -2.481601 -2.088829 -1.319842 1.377260 -3.393692 0.986327 -1.121264 -1.611718 -0.033575 1.278022 1.628732 2.432178 4.031264 3.053628 -0.990233 1.025950 -4.986431 0.879174 3.760833 1.386780 -2.807582 3.014556 -2.410634 -0.542155 1.575077 2.801091 0.973233 1.252464 -1.089513 -1.101520 0.273779 0.319604 3.855190 1.167226 0.638148 -3.453331 -0.073095 -1.239218 -0.073861 5.701803 1.864594 -4.753603 1.239651 3.293278 -0.388333 -2.383238 1.141853 -3.066432 -2.204141 -1.898907 1.788831 2.638954 -3.237865 -1.654005 1.487002 -2.647455 2.388322 -0.643734 -2.803341 0.901122 -3.862572 -0.338187 5.231676 0.891793 0.087157 -1.214276 -3.477554 -0.407907 -4.533248 0.621682 1.237013 -0.289893 -0.966562 -2.594229 -1.098232 3.687956 -0.383347 1.482673 -4.365793 0.132048 2.473354 0.338962 0.503904 -4.278899 -0.778564 -0.006960 -0.133642 0.440313 -1.788778 0.562623 3.374771 -2.818550 1.705926 2.695673 -1.653060 0.577796 2.405629 -3.335674 4.134688 0.350295 2.509528 1.259368 1.352735 -2.284854 0.099378 -0.834883 0.941491 -2.010085 1.617560 -2.957415 -1.132987 1.089244 -1.700419 -2.871293 0.557934 2.871610 0.359643 0.418189 -1.304064 -1.224133 -0.995921 -2.590848 1.311274 2.324858 -1.563999 -2.623377 2.170526 2.033162 -3.233644 -0.851084 0.746204 1.695272 3.331461 -3.774919 1.865416 0.552557 1.531062 -4.291560 -3.790524 1.072410 -2.212822 -1.799100 0.413753 -4.423287 -3.374422 -1.667533 2.385201 -3.658845 -0.758120 0.878767 4.051936 0.895821 -0.236167 2.703239 -0.581048 1.057108 -0.178753 0.116120 0.206970 2.799916 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -7.511824 8.645056 4.961647 -5.534079 14.160511 0.388960 -1.638226 4.811415 -7.621068 14.067835 -5.099608 -0.970032 -3.677332 -13.105613 -0.100388 -8.048074 -3.755214 3.664560 1.267615 9.334707 5.221789 -9.321949 0.969319 -0.209763 -5.509861 -11.571420 -2.481672 4.181074 14.491885 -9.921240 2.376898 -1.405879 13.416428 -2.949369 12.132306 9.932069 3.288597 8.939870 2.677810 -7.098255 -6.465426 6.427051 -8.968070 -5.713882 0.687052 -4.067208 -8.196750 -3.017418 5.223837 -0.090642 -4.087290 11.495666 -4.269310 0.381259 -8.436841 10.258123 2.716370 1.148234 15.961505 0.121080 0.102962 -4.352300 -15.193210 8.675886 -5.031446 0.371860 -6.011502 -5.475766 5.635731 -3.195359 -3.459623 -6.558140 -1.284523 14.947954 6.389312 -12.078794 0.550206 -7.410141 -19.818833 -12.465757 -10.100915 3.987398 0.746091 9.563812 1.948751 5.151762 3.545479 10.147560 -5.474012 -19.393874 4.680243 12.971098 -5.843480 -4.395686 -4.927193 13.335012 1.055036 3.355800 -7.189163 -0.508135 3.953573 -1.734987 6.443516 -15.336475 7.966824 -14.909702 0.746461 -3.887150 2.330379 2.446307 8.494362 2.187375 10.140746 15.776246 -12.716064 -1.900360 -11.847626 0.613872 -1.522460 3.428933 -2.893802 8.016205 -2.626807 3.963720 14.070030 -19.362462 2.639714 -1.611180 -2.414020 -16.643964 -0.925709 -7.126578 -2.880165 -4.313178 5.584911 -1.386920 -1.776308 -6.736203 2.160495 3.490902 -6.746453 -4.146512 7.038065 15.915553 -11.083644 3.548738 -2.435798 -3.850888 -2.494940 7.115998 11.642747 11.239842 16.532761 10.847973 0.827056 7.333429 -12.163823 -1.819815 10.100487 3.763308 -10.829986 14.470385 -9.888989 -5.141694 0.802998 10.843514 10.978005 3.687753 -12.469597 -12.781257 8.876394 4.407405 13.528818 -1.992052 0.431956 2.213311 13.746378 1.302356 -10.883041 13.117938 4.305176 -7.974234 5.702535 2.306327 -7.285670 -4.285644 10.586433 -10.503378 2.864441 -3.167862 -1.118856 6.536294 -4.082707 -2.119760 -0.465707 -10.520276 15.018392 -3.032406 1.301286 7.695208 -8.898346 -15.410509 7.796775 -1.921776 -4.685506 -10.893229 -9.259340 -9.803681 -7.619054 4.539766 1.359889 -4.964269 -7.469344 -12.096796 -0.587791 7.525108 4.322861 8.845605 -15.907809 -5.921180 5.638795 5.589578 9.648757 -0.497446 -0.968086 0.188752 -0.074178 4.069235 -1.775593 12.991973 18.141854 -6.843039 8.233512 -6.358848 -5.589166 5.022022 5.901224 -16.835992 14.688377 2.811407 7.840649 -0.950202 3.193973 -5.062011 1.878836 5.656945 -1.470022 3.990967 -0.315173 0.011784 -4.678686 -3.193076 -11.243069 -5.926448 -4.179225 1.410083 -3.367989 4.943464 0.885505 -5.303007 -4.834209 -6.420686 1.708417 8.214809 0.740244 -0.340254 9.477698 -1.217857 6.181273 6.345991 0.463831 3.453062 5.448492 -13.923528 -2.367244 -4.293103 2.914690 -6.204371 -14.218420 -1.807078 -7.318513 -5.244971 7.222874 -12.971950 2.341817 -9.078808 -2.480750 -11.278313 -1.234569 3.699709 16.419663 6.727009 -8.165999 4.458315 -5.643402 8.579018 0.101960 -0.779679 3.127769 7.413227 +PE-benchmarks/subset-sum-problem.cpp__main = -2.441012 1.817331 1.126983 -1.641928 4.779574 -0.291510 -0.510919 1.966018 -1.525310 3.933615 -1.618582 -0.753762 -1.235934 -3.848635 0.273198 -1.784121 -0.642244 1.593402 -0.132031 2.267548 1.868829 -1.966106 0.253222 -0.198734 -1.430680 -2.937298 -0.993031 1.313700 3.632881 -2.652704 0.015291 0.100551 4.383577 -0.798945 4.091274 3.185025 1.571577 2.957027 0.567829 -1.814548 -1.376782 2.157560 -2.642024 -2.417915 0.598331 -1.367183 -2.750056 -1.346460 1.778212 -0.428498 -0.279504 3.494648 -1.121213 0.225554 -2.252958 2.754256 0.749577 0.513358 4.669884 0.508400 -0.706016 -0.531643 -4.367028 2.929931 -1.748532 0.867573 -1.852188 -2.545661 0.813860 -0.551348 -0.032330 -2.335568 -0.984375 3.968174 1.810155 -3.261679 0.700009 -1.806268 -3.558555 -3.766575 -3.557306 1.199103 -0.486445 3.003800 0.215414 1.282010 0.494259 2.493488 -1.312942 -5.474472 1.114468 3.805592 -2.058266 -0.668238 -1.868451 2.874084 0.273328 0.940890 -2.146463 -0.755087 1.274081 -0.633983 1.978394 -2.873820 2.526823 -3.466422 0.351098 -0.680820 1.036869 1.064357 2.256844 0.633853 2.994332 4.243516 -2.897414 -0.266545 -3.476467 0.749496 -1.059888 1.061626 -0.798490 2.456078 0.281816 0.942626 3.973466 -5.421331 1.015668 -0.270569 -0.879354 -4.168842 0.167970 -2.064592 -1.292938 -1.528806 2.194816 -0.309355 -0.806886 -1.862532 0.907374 0.880455 -2.140566 -0.980659 1.237728 3.424990 -3.065188 0.915134 -0.961678 -1.597482 -0.584164 2.167104 3.209026 3.524661 4.913765 3.505252 -0.305440 1.115373 -4.039079 -0.141039 3.380784 0.277369 -3.366694 4.062018 -2.782047 -1.180530 0.698555 3.321792 3.041670 1.210177 -2.692937 -2.874123 1.508808 1.361498 4.258267 0.068806 0.390148 -0.091115 2.906127 0.042321 -2.919008 4.422310 1.285162 -2.873971 1.311072 1.041866 -1.964469 -1.630490 2.707422 -3.116179 0.339151 -1.449660 0.321430 2.245816 -1.841448 -0.803426 0.578317 -3.299919 4.159280 -0.958840 -0.173019 2.115849 -3.245750 -3.780795 3.225372 -0.251326 -1.244222 -3.028182 -2.957728 -1.948869 -2.708793 1.472608 0.402615 -1.001057 -2.184492 -3.527157 -0.230901 2.783493 1.115622 2.506928 -4.352503 -1.312503 1.796292 0.955312 2.724481 -1.039567 -0.550438 -0.067333 -0.300949 1.223270 -0.750727 2.914726 5.215947 -2.435132 1.978970 -0.661224 -1.843582 1.109345 1.914449 -4.800955 4.538067 0.741403 1.954721 -0.210656 1.179182 -1.672212 0.386594 1.273732 0.051687 0.599090 0.478817 -0.323477 -1.286165 -0.587950 -3.280793 -1.919209 -0.980191 0.803909 -0.736515 1.440834 -0.216680 -2.009443 -1.169760 -1.797561 0.688381 2.775194 -0.089216 -0.668147 2.764558 -0.173344 0.866679 1.186610 0.328507 0.937660 2.324704 -4.290534 -0.347804 -0.828457 1.112092 -2.175476 -3.829394 -0.631833 -2.289220 -1.282991 2.239365 -3.749266 -0.029647 -2.754654 -0.236521 -2.779754 -0.469184 1.024064 4.859745 2.304053 -2.230014 1.664635 -1.370599 2.573418 0.151275 -0.563493 0.868964 2.465215 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.868768 2.215561 0.293892 -2.421746 8.793159 -2.240864 0.575398 4.041338 -3.096580 5.852911 -1.538927 -1.316110 -0.840878 -6.720851 0.750916 -1.845595 -1.129283 3.467706 0.195219 3.447751 1.886395 -2.464275 0.143783 0.331883 -2.120801 -3.883017 -1.484667 2.397597 5.702556 -5.443573 -0.105046 0.259307 7.060213 -1.921758 6.050107 4.441531 1.624713 2.426843 1.809452 -4.947745 -1.259813 2.024364 -3.434871 -2.182611 -0.673482 -0.247532 -4.844573 -1.666009 2.165896 -0.410809 -0.793084 4.796344 -1.675155 0.460985 -2.695307 5.299202 0.327843 -0.309236 5.781432 0.536556 -1.231724 -0.384733 -6.418683 6.627598 -1.615067 0.471473 -4.023853 -3.840897 1.281611 -0.135583 -0.472112 -4.235572 -0.409052 6.173413 3.099849 -4.499828 0.765730 -2.588409 -3.477472 -6.446569 -5.327055 2.388284 -1.220851 3.915569 0.892599 2.002684 0.603491 3.648656 -2.418110 -7.954720 1.802144 5.437894 -3.253302 -2.811775 -2.603492 3.744682 1.239178 1.056286 -2.290963 -3.106217 1.594534 -1.830356 2.650631 -4.586736 5.690998 -4.429895 -1.836879 -0.776803 2.217271 3.364039 4.071559 1.322555 4.271569 6.143872 -4.021951 -2.306813 -5.204712 1.743838 -2.831711 1.386656 -1.631335 3.513165 1.497294 2.762211 5.635323 -9.178676 0.779549 -0.567741 -0.410948 -5.904337 -0.363538 -2.460947 -1.494741 -1.980870 2.476691 -0.659245 -0.718007 -2.077866 1.564319 2.078415 -3.064311 -0.163628 2.293869 5.648046 -6.198391 1.531664 -0.759718 -1.196521 -0.838029 3.325854 5.427403 5.108415 6.888903 4.387257 -0.176135 1.791249 -6.962912 -0.107593 4.308850 -0.798653 -3.715204 6.776650 -4.707005 -2.284975 0.234439 6.201669 3.827847 0.210246 -4.537658 -3.999725 4.660166 2.224666 5.592559 -1.985040 -0.702202 -0.463842 3.492980 0.024687 -4.448868 7.019363 1.885665 -4.241826 2.459892 1.674480 -2.256718 -2.517262 4.622575 -5.526156 -0.120263 -1.954653 0.392103 3.265646 -1.774491 -0.321101 1.059936 -3.902339 5.452854 -1.563990 -2.778262 2.764468 -3.119981 -4.079002 5.934582 0.457693 -1.072035 -4.222420 -5.340575 -2.803946 -3.313182 1.639494 0.424161 -0.927370 -2.156454 -4.490063 -0.906103 4.920369 1.561962 4.257680 -7.595853 -0.714704 2.482715 2.091325 3.536829 -1.757939 -0.233320 -0.078336 -0.749119 0.068034 -1.686282 4.030134 6.866226 -3.024190 3.026527 -0.014259 -2.512256 1.564653 1.730930 -7.392877 6.519645 1.960660 4.309993 0.318684 1.113582 -2.498214 0.528591 1.575932 -0.033494 0.295217 0.073877 -0.459747 -1.849229 -0.849463 -4.205412 -4.808388 -1.743233 1.497626 -1.831141 2.022781 -1.744846 -2.929442 -1.787090 -3.254353 1.598009 3.168863 -0.354264 -0.247581 4.625135 0.575630 1.364167 1.630764 0.007469 1.762834 2.751661 -5.879596 -0.202090 -1.008212 4.133859 -3.138941 -6.761397 0.055416 -3.438535 -1.692812 1.401112 -5.781788 -1.433400 -3.803998 -0.727425 -6.051021 -0.454462 2.569432 7.516074 2.011600 -3.645647 1.818885 -2.333445 2.720921 -0.131739 -0.180775 1.232485 2.311801 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -5.821578 0.604031 -4.194599 -7.644573 15.567025 -3.397301 -2.032467 8.820849 1.190298 8.117260 -4.603917 -0.907102 -1.913521 -11.677304 1.134751 -0.172548 1.190838 6.332363 -4.230382 4.056891 4.616148 -1.397735 4.325233 -1.366984 -4.175787 -5.206884 -0.731202 4.834624 2.649257 -3.873440 -0.185585 0.682295 11.205374 -1.835962 7.772853 4.678730 6.155837 8.644177 3.280462 -3.158240 2.871979 2.647772 -3.207390 -9.168884 2.966161 -2.731406 -10.440898 -4.735769 5.473201 -8.655184 2.381376 8.469072 0.219590 -2.663845 -6.397004 5.458594 4.051870 -2.147445 9.564475 2.523328 -6.565584 -3.662175 -7.490310 6.414626 -6.105891 2.997189 -1.905130 -7.906426 -4.130898 6.706959 0.601487 -6.431030 -6.083054 2.734031 5.657967 -6.464322 3.657593 -2.552926 4.960971 -7.453979 -5.168374 4.058769 -3.881013 6.477783 0.367628 4.494071 1.002687 2.155159 -1.608515 -9.940057 1.554946 6.758312 -5.048549 -0.004015 -5.179793 5.255972 -1.105550 -3.250005 -6.778336 -5.595333 2.294542 -1.318102 4.529088 -2.266873 2.814902 -6.053262 2.145830 2.962035 3.261641 4.639607 3.696670 1.024367 2.200790 6.433800 -4.313191 2.375120 -12.297318 2.623623 -3.540502 2.944603 -4.672957 3.063242 7.502806 4.185904 5.750711 -11.904812 9.026637 1.985541 -2.746214 -6.389598 3.128602 0.885755 -2.189629 -1.268822 6.795583 -3.938970 -1.109581 -0.609148 4.728732 0.990060 -7.025743 -0.760704 -1.228167 4.894466 -7.980860 3.901877 -1.370818 -4.567644 1.039893 3.159289 6.049635 4.111699 13.057272 6.007602 -3.314593 4.842314 -9.952962 3.648756 11.470250 1.958412 -7.164097 8.689522 -6.442520 -0.653180 1.048710 6.983613 5.109181 2.737897 -3.575953 -2.396864 3.479785 2.597017 10.146496 -1.153361 2.838286 -10.010991 1.351746 -0.752422 3.719506 14.178187 4.904659 -10.243450 2.996751 7.566445 -4.438398 -3.572957 3.244037 -5.606558 -2.870723 -3.514970 5.007244 6.357069 -6.442699 -6.729671 -0.014952 -6.813613 6.339931 -2.773968 -6.178148 2.952048 -8.913469 1.009824 11.246572 1.269414 -2.191664 -3.184483 -8.893353 -1.141288 -10.647783 2.381047 3.901676 -2.005519 -0.913592 -5.538450 -3.427944 8.599426 0.585402 2.373344 -13.601718 1.752418 6.360200 1.251379 3.349094 -5.243742 -0.459255 1.693682 -1.276365 1.304950 -3.675823 1.611212 7.063722 -7.632117 5.289249 0.598066 -2.161154 3.566337 5.415678 -7.663694 13.266379 2.150747 9.871408 0.446007 3.978779 -2.939427 3.421412 -1.416939 -2.061193 -1.717794 3.413005 -6.987564 -4.771854 3.949919 -2.045079 -9.211930 0.700827 7.620830 -0.407449 2.769936 -2.693676 -1.866958 -2.916785 -3.336464 4.416925 5.497911 -3.092248 -5.509071 3.913365 7.394215 -2.407858 -1.170380 2.355585 5.122632 9.410545 -10.119775 5.072267 -0.005019 4.112301 -8.526349 -7.820602 3.825597 -3.682126 0.078302 2.613137 -11.381061 -6.280863 -5.072884 6.224665 -5.275443 2.657146 1.946012 10.439466 4.216474 -3.495853 6.204914 -1.689263 2.337890 -0.617040 -0.447843 3.747186 6.030731 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -1.261679 0.402693 -0.594198 -0.455235 1.971141 -0.663038 0.903298 0.831822 -1.522681 1.513266 -0.424540 -1.448338 -0.863372 -2.121838 0.527388 -1.088587 0.215848 0.762735 0.068465 1.763955 1.126425 -1.350260 -0.096897 -0.230106 -0.370157 -0.497744 -0.104216 0.543832 2.397613 -0.828319 -0.499871 0.349288 2.413866 -0.207417 2.577234 1.872022 -0.007174 1.148578 0.540103 -2.882158 -1.156254 1.542930 -1.470262 -1.369010 -0.480929 -0.346322 -1.360636 -0.588108 0.927180 0.398634 -0.581522 1.785067 -0.688224 0.616920 -1.437186 0.826089 0.304227 0.945888 2.194969 0.286839 0.151667 -0.308643 -1.707578 1.883673 -0.319718 -0.289222 -1.038625 -1.129652 0.974757 -0.609212 -1.128314 -0.796722 -0.400431 2.040991 1.450382 -1.520571 0.764515 -0.533359 -2.089121 -1.494529 -2.051723 0.412297 -1.121481 1.993265 -0.154630 0.631565 0.033534 1.149584 -0.370482 -2.651205 0.745029 1.921803 -1.026189 -1.039589 -0.624571 1.950124 0.856171 0.801097 -1.427549 -0.440522 0.558878 -0.872601 1.115185 -1.580175 1.424149 -1.343590 -0.610677 -0.430507 1.064647 2.465964 1.606777 0.792799 1.645422 1.880897 -0.993559 -0.617149 -1.061359 0.597216 -1.881222 0.554039 -0.170963 1.640229 0.924527 0.270835 1.856035 -2.642302 0.026826 0.455316 0.623005 -1.796528 0.149663 -1.363254 -0.725969 -1.170362 1.415156 -0.155656 -0.388482 -1.022498 0.594077 1.026136 -0.666648 0.981671 0.543270 1.157765 -1.430120 0.387074 -0.589146 -0.751270 -0.081697 1.072568 1.229822 2.024650 1.991499 1.980898 -0.939399 0.320094 -1.834107 0.243688 1.986885 -1.157600 -1.597228 1.894664 -1.599508 -0.904411 0.102681 1.657896 2.058351 0.739526 -1.225704 -1.122075 0.404322 0.824246 2.117005 -0.070265 0.031363 0.159437 1.642295 -0.686411 -1.747970 1.635903 0.278145 -1.286796 0.477137 0.468588 -2.206868 -0.678375 1.144250 -1.764840 0.741712 -1.739396 0.492015 1.366885 -1.082821 0.128748 0.376853 -1.667087 1.604487 -0.530426 -0.696994 0.460365 -1.468221 -0.609450 2.310756 0.495947 -0.438677 -1.875405 -1.733354 -1.550947 -1.420471 0.929821 -0.781803 0.204246 -1.050149 -1.663510 -0.826041 1.300704 0.800377 1.441414 -1.836898 0.247111 0.637630 1.384382 1.183299 0.247191 -0.489504 0.378190 -0.259258 0.478121 -0.480618 1.347625 2.145388 -1.377200 0.380639 -0.255224 -0.847465 0.948483 0.756281 -2.687440 2.108598 0.457052 1.037890 -0.198461 0.589141 -0.863521 -0.029873 0.683953 -0.430559 -0.031081 0.151121 0.049418 -0.587044 0.208474 -0.826782 -1.400957 -0.870451 0.267074 -0.209237 0.878457 -0.395384 -1.506839 -0.382710 -1.083752 0.672584 1.623514 0.186919 0.034244 1.585770 -0.202586 0.794093 0.454147 -0.030777 0.154300 1.151088 -2.304095 -0.450767 -0.582913 1.254863 -0.168250 -1.836459 -0.080550 -0.676319 -0.412828 1.630354 -1.198130 0.564364 -1.491837 -0.311884 -1.605740 -0.911758 0.570832 2.266158 0.641844 -1.122965 0.586154 -0.733211 1.215767 -0.022627 -0.015386 0.295030 1.067888 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -52.065568 56.230721 48.278495 -40.508098 95.911914 4.724565 24.240856 47.286196 -66.359238 84.196266 -41.266348 21.210527 -15.088423 -60.843688 -2.389933 -45.126787 -23.817693 18.527681 1.124094 55.662441 35.943497 -45.000489 10.155519 -11.693161 -38.518425 -68.597420 -2.328217 21.985550 73.810260 -18.665967 28.112173 -12.842732 64.653623 -17.966592 76.778110 60.436876 17.236256 53.441069 5.625933 -35.634298 -30.907330 38.549992 -51.664222 -55.069779 3.343277 -26.921164 -59.316329 -37.952283 30.358055 -46.994261 -25.439747 67.903858 -20.326093 -4.253379 -37.154347 66.692192 31.341442 -18.371097 90.657687 4.521761 -27.473141 -25.854352 -80.165710 51.987957 -16.531217 11.502333 -26.593837 -51.459855 25.216691 -4.990796 -31.442924 -28.111594 1.437551 76.445252 34.668554 -72.330166 8.019756 -46.342933 -102.036385 -64.253315 -35.323672 21.927351 17.127269 57.883730 9.761248 29.276612 14.727887 49.618255 -27.763482 -110.141925 16.513320 86.810745 -39.107487 -29.300031 -40.217433 67.150851 9.128403 16.810374 -40.220597 -4.201887 26.682573 5.299763 35.808415 -97.255085 16.430230 -86.166170 -0.839317 -3.181648 16.187812 26.508538 13.335023 24.689345 53.338881 86.958437 -64.803157 38.614510 -67.356600 17.257152 -17.478593 25.431400 -20.962492 37.918809 7.835380 30.764523 79.021057 -98.572054 31.726274 -1.907889 -14.510354 -97.969311 2.536113 -41.666597 -18.733643 -24.890933 33.496990 -7.219987 -9.935457 -40.683906 17.061565 9.402803 -33.903783 -39.286455 34.642565 76.473758 -75.125640 21.154530 -15.960286 -12.008678 -16.126037 50.012647 64.654828 58.835958 94.578299 64.927010 10.848477 46.241203 -68.083839 -6.880181 70.043310 35.920482 -64.692749 78.311045 -63.107094 -28.971653 12.705258 43.611004 57.827035 42.853154 -90.274858 -74.319451 62.702948 15.116816 87.213672 23.403153 13.100968 -23.329212 78.820303 -31.686739 -51.141689 65.299529 52.594047 -74.185506 35.014860 19.672217 -53.283522 -27.493698 57.257220 -63.668298 -2.907516 -12.490836 -10.674693 36.894737 -28.545651 -32.223596 -0.826705 -69.613075 91.047888 -14.186701 22.033026 27.847893 -44.931919 -60.956727 48.419174 10.483414 -36.619744 -56.932289 -41.372720 -78.178005 -57.225802 24.735739 19.845739 -25.430684 -56.485668 -76.080072 -6.856766 24.562522 14.351245 45.870987 -76.484710 -32.598868 38.736446 25.866851 50.164424 -28.298694 -9.650312 -20.483617 -4.546790 32.855641 -13.181091 79.330289 103.198283 -38.585013 62.916567 -21.721269 -38.224477 24.095269 44.071390 -89.581605 89.902012 12.335375 60.132731 -0.698009 26.565951 -36.113788 12.426163 18.942192 -24.818946 19.415915 18.691021 -15.434040 -27.669264 -11.782018 -71.376400 -29.479860 -12.472017 15.773645 -14.929885 24.049752 18.503015 -46.252877 -35.671513 -70.601213 2.815432 53.816244 -19.952723 -29.962380 49.533086 -1.563525 12.876126 -4.837866 6.951493 30.877512 36.291561 -83.130740 0.068797 -20.280366 2.321812 -65.000420 -71.422537 7.744296 -57.395815 -57.860245 32.872727 -68.861493 16.604952 -55.411796 -6.567026 -90.484470 -38.224810 20.499912 98.117193 21.230731 -32.364493 36.107762 -32.497604 59.517479 7.161859 11.534646 11.451503 47.824481 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -11.012943 11.407805 9.789485 -8.503114 20.007172 0.646751 4.815880 9.982809 -12.819431 17.276765 -8.938831 3.860267 -3.440603 -12.805783 -0.385947 -9.249659 -4.697222 4.377716 -0.185433 11.156883 7.830555 -8.938949 2.108964 -2.830416 -7.742470 -13.994501 -0.683373 4.409122 14.655700 -3.520730 5.479291 -2.382624 13.756929 -3.424890 15.969156 12.632491 3.845784 11.802774 0.996527 -6.343767 -6.069375 8.377744 -10.608943 -12.125248 1.254980 -5.927558 -12.085806 -8.138276 6.438219 -10.194141 -4.127529 14.062613 -3.990554 -0.997082 -7.761222 13.425931 6.739646 -3.169472 18.818527 1.335563 -5.968725 -4.854953 -16.692017 10.595234 -3.903536 3.102100 -5.012552 -11.108129 4.598822 -0.815741 -5.601245 -6.179589 -0.380896 15.320792 6.936445 -14.723016 2.018773 -9.377795 -20.216872 -13.000223 -7.785914 4.376669 3.162484 12.105132 1.630780 5.773134 2.459248 9.897314 -5.267669 -22.501296 2.934093 17.918643 -8.097365 -5.333502 -8.472487 13.357074 1.822458 3.352168 -8.390328 -1.003381 5.568156 1.306149 7.443244 -19.017430 2.742386 -17.506104 0.563363 -0.213616 3.053220 5.359399 2.858739 5.147763 10.714223 17.653159 -13.078787 8.284175 -14.350655 3.710348 -3.605717 5.347797 -4.120467 7.768407 1.774369 5.937760 16.075817 -20.258196 7.041680 -0.220410 -3.272330 -19.876071 0.988950 -8.526523 -4.240226 -5.291134 7.316151 -1.236134 -2.295002 -8.234344 3.530724 1.649232 -7.127485 -8.306062 6.574711 15.369420 -15.254897 4.196066 -3.577277 -2.954644 -3.294870 10.151194 12.946863 11.984156 19.594472 13.586961 1.943989 8.779201 -14.224476 -1.190503 14.875346 7.347840 -13.612994 15.832073 -12.619443 -5.521735 3.041877 8.870604 11.792675 9.199451 -18.022397 -14.914665 12.035428 2.742253 18.147344 5.403454 3.063559 -5.468628 15.879371 -6.562514 -10.339459 14.213496 11.097339 -15.587286 6.824451 4.349618 -11.048115 -5.990681 11.422240 -12.668207 -0.626984 -2.857161 -1.806787 7.656111 -6.404350 -7.189973 -0.029434 -14.647430 18.821408 -2.902241 4.574187 5.677691 -10.013968 -12.344542 10.663715 2.238961 -7.694549 -11.611204 -8.631003 -15.763409 -12.279825 5.315823 4.226672 -5.188039 -11.850265 -15.650066 -1.209129 5.640899 2.552594 9.100516 -15.278070 -6.874317 8.031906 4.748134 10.491157 -6.551124 -2.313783 -4.316408 -0.852888 7.197384 -2.527892 15.782441 21.668155 -8.253215 12.775001 -3.347084 -7.609562 4.711461 9.660984 -18.275784 18.608821 2.129410 12.225301 -0.306598 5.752158 -7.554901 2.392763 3.843544 -4.666248 3.800538 4.272877 -3.461580 -5.568815 -2.254042 -15.024558 -5.849902 -2.037006 3.464512 -2.658547 4.879430 3.796803 -9.731351 -7.149020 -14.274586 0.431788 11.501374 -3.924720 -6.798222 9.817332 -0.287288 1.971387 -1.395566 1.659261 6.206621 8.067663 -17.211680 0.357252 -3.943635 0.074699 -13.681440 -14.612440 1.478095 -11.944417 -11.988568 7.042523 -14.298488 3.089095 -11.441189 -0.769400 -18.538919 -7.798798 3.831366 20.101687 4.838728 -6.353546 7.820306 -6.400037 12.602417 1.619298 1.943037 2.397484 10.393492 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -2.697342 2.296367 2.020685 -2.086622 5.038296 -0.074591 0.857015 2.631756 -1.859096 3.870711 -2.467738 0.353020 -0.862643 -2.857461 0.012837 -1.926692 -0.962889 1.444180 -0.629192 1.944426 2.002844 -1.278857 0.484575 -0.932188 -1.653425 -2.879995 -0.562358 0.975110 2.648252 -0.629394 0.683554 -0.306465 3.518019 -0.751968 3.814835 2.974471 1.422685 3.158780 -0.088278 -0.254999 -0.747848 2.080888 -2.376375 -3.227350 0.608052 -1.682766 -2.872522 -1.992058 1.604424 -2.761264 0.432226 3.179290 -0.663946 -0.306116 -1.558796 2.967577 1.404609 -0.316750 4.341861 0.674347 -2.044164 -0.444972 -3.975296 2.821209 -1.272823 1.779472 -1.022794 -3.253284 0.121117 0.203270 -0.188035 -2.010043 -0.853802 3.064703 1.318594 -3.113253 0.814061 -1.974629 -2.999853 -2.716710 -2.146123 1.091595 0.360336 2.709055 0.115778 1.073131 -0.166007 1.933083 -0.905052 -4.900038 0.197039 4.199930 -2.083392 -0.416865 -2.384173 2.014570 0.247166 0.678519 -1.834740 -0.578369 1.331740 0.542956 1.648321 -3.291277 0.440285 -3.639126 0.702074 0.646846 0.528733 0.998890 0.471814 1.208653 2.305265 3.745957 -2.359342 2.075226 -3.596653 1.074808 -0.996267 1.232020 -0.898275 1.692210 0.703575 1.204674 3.497302 -4.421212 2.035582 -0.047470 -1.275657 -4.057849 0.548963 -1.831442 -1.401816 -1.216951 1.893088 0.002958 -0.732006 -1.711393 0.896210 0.034377 -1.750402 -2.083905 0.991705 2.600562 -3.136949 0.759938 -0.928885 -0.931476 -0.808261 2.439206 2.800928 2.597835 4.617086 3.165665 0.297515 0.953786 -3.520499 -0.013247 3.634150 1.370171 -3.325350 3.411570 -2.764533 -0.832884 1.067158 2.022959 2.247094 2.509607 -3.365468 -2.807003 1.706135 0.397849 4.336303 1.765918 0.934465 -1.734760 2.868461 -1.909890 -2.108107 3.945957 2.889001 -3.940031 0.980704 1.323382 -2.103141 -1.733878 2.409191 -2.714778 -0.427084 -0.859601 -0.083364 1.831218 -1.841772 -2.007833 0.477411 -3.523977 4.345879 -0.644311 0.706474 1.182358 -2.984775 -2.535789 3.151928 0.600969 -1.743439 -2.317483 -1.983197 -2.895319 -3.210530 1.266666 1.330757 -1.028916 -2.783802 -3.469006 0.009884 1.819635 0.130904 1.933683 -2.894759 -1.662962 1.892550 0.236661 2.531321 -2.214266 -0.720580 -1.345094 -0.241809 1.887193 -0.740738 2.868822 5.154962 -2.049610 2.868327 0.481350 -1.762317 0.480797 2.595580 -3.877060 4.348329 0.274008 2.245756 -0.103274 1.543290 -1.836068 0.384224 0.621043 -0.554560 0.557341 1.435608 -1.108948 -1.142265 -0.488083 -3.686095 -1.147580 0.027947 1.080558 -0.432277 0.975703 0.671907 -2.417033 -1.525395 -3.104373 0.033146 2.845701 -0.946593 -2.128659 2.014001 0.005862 -0.520418 -0.615872 0.532347 1.309923 2.448930 -3.953717 0.357784 -0.459828 -0.143812 -3.710767 -3.080083 -0.045171 -2.838856 -2.659053 1.436996 -3.204520 -0.030946 -2.587543 0.303134 -3.877119 -1.939024 0.845704 4.581721 1.630610 -1.299361 2.049340 -1.182030 3.091650 0.587455 -0.007339 0.652869 2.603612 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -4.442324 3.448737 0.915510 -3.485173 10.290076 -3.008624 1.305917 1.934736 -1.650032 7.931612 -2.634205 -4.424212 -2.818558 -10.961696 0.929048 -5.240040 -1.251997 4.833258 0.831646 5.494106 3.525836 -5.527968 0.840473 -0.394936 -2.405023 -7.566564 -1.768730 2.919116 8.297541 -6.675673 1.639410 0.165905 9.900295 -1.008092 8.599978 6.381271 1.486538 5.769859 2.109199 -4.931794 -2.976426 4.075651 -4.764678 -5.397517 0.355079 -0.759205 -6.119202 -3.763659 3.499313 -0.817706 -1.225615 7.426330 -2.466855 0.159162 -5.974369 4.948115 3.041656 2.488304 8.584503 0.634056 1.192854 0.075445 -9.700905 5.515306 -3.467062 -0.783692 -3.187586 -4.457386 2.382271 -0.966963 -2.586601 -4.100121 -1.523145 8.150134 6.000562 -6.585088 0.481070 -3.682469 -10.876637 -7.983838 -7.865987 2.327482 -1.709419 6.828887 1.112811 3.031667 3.023941 4.878307 -2.257674 -10.821344 2.548161 7.860695 -3.246651 -3.742910 -1.193005 7.992473 1.768039 1.328845 -4.484329 -2.621179 1.733520 -2.798386 4.482341 -4.674126 3.012757 -8.172888 -0.327262 -1.733079 1.500350 3.508641 7.869548 0.494593 4.480513 8.161912 -8.808695 -1.422972 -7.911533 1.792739 -2.527751 2.345618 -1.550230 5.046451 -0.248725 2.998311 7.306717 -13.064708 1.838524 -0.165057 -0.036900 -8.194940 -0.388470 -3.501856 -1.671622 -2.955229 4.194786 -1.221149 -1.207089 -2.780512 1.391484 3.138804 -3.425317 0.186279 3.010574 9.348620 -6.962757 2.620197 -1.777551 -3.524538 -1.290027 3.268162 6.456349 7.049895 9.321474 7.362905 -1.297782 3.139331 -8.824669 -0.130401 7.309775 -1.687590 -5.795225 8.531783 -5.535167 -2.657514 0.439776 7.894038 6.948963 0.481670 -6.319784 -5.141901 5.584660 2.443574 7.635046 -1.627174 -0.577807 -1.290531 7.205520 1.968676 -6.372084 10.239826 2.407757 -5.483779 3.520339 2.576320 -7.934992 -3.828402 5.233548 -5.795477 1.934366 -4.299076 1.662262 3.994550 -2.744268 -1.185577 -0.351016 -6.041032 7.136976 -2.073339 -1.738452 4.770971 -4.807823 -8.115965 8.340637 -0.792483 -2.023793 -6.895640 -8.086343 -4.088163 -5.134990 3.187572 -0.609153 -2.478802 -3.546465 -6.569560 -0.606321 7.476522 2.526396 5.584024 -8.632217 -1.694889 3.061218 4.809078 5.170868 -1.478368 -0.785140 1.552440 0.039101 0.529349 0.338147 5.653119 10.717463 -5.187415 3.141061 -2.776943 -4.346636 3.767959 3.635460 -10.287501 9.008997 0.908569 6.119700 -0.721022 1.996213 -2.680752 1.108009 3.629975 -1.588930 1.172710 -0.238505 -0.709680 -2.877165 0.176756 -6.238789 -6.557272 -2.202113 2.163657 -0.781993 3.057694 -1.103428 -4.168863 -1.306158 -2.610287 2.057796 5.186253 2.018660 -0.304844 5.544896 1.084508 3.533087 1.326229 0.333693 1.636878 4.090734 -8.572421 -0.244642 -2.556774 3.716177 -2.369501 -10.142549 0.923865 -5.658155 -2.435302 4.290191 -8.785742 0.250965 -5.873370 -0.440709 -8.000648 0.156098 1.729270 9.425122 4.128739 -3.854837 2.995419 -3.099140 4.079579 -0.677737 -1.224683 3.062799 5.221681 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.342430 0.943205 0.331950 -1.139158 3.481664 -0.882517 0.209935 0.985460 -0.231234 2.299336 -0.807841 -1.169717 -0.610358 -2.995858 0.416734 -1.355242 -0.229767 1.605907 0.091884 1.419222 0.990831 -1.205715 0.198346 -0.030148 -0.740037 -2.007145 -0.769716 1.056618 2.110660 -1.946466 0.266793 0.276902 3.077615 -0.487920 2.704142 2.003812 0.746866 1.542913 0.594197 -1.323104 -0.418411 1.062904 -1.407080 -1.591160 0.150878 -0.168468 -2.034529 -1.112620 1.033708 -0.381359 -0.190846 2.147197 -0.687583 0.066280 -1.569034 1.594495 0.605247 0.526195 2.383577 0.356648 -0.214331 0.285912 -2.776670 1.773951 -1.079800 0.112373 -1.309981 -1.856359 0.377998 0.103148 -0.243327 -1.648366 -0.629441 2.253595 1.538203 -1.835929 0.410803 -0.996565 -1.711343 -2.248503 -2.362476 0.913526 -0.781409 1.960703 0.280228 0.818009 0.469219 1.207371 -0.718758 -3.107406 0.609224 2.285344 -1.162389 -0.811900 -0.437539 1.800171 0.733029 0.214594 -1.039456 -1.086411 0.596920 -0.970866 1.246766 -0.650320 1.424349 -1.901399 -0.385633 -0.269640 0.732364 1.370506 1.923546 0.411931 1.489644 2.263870 -2.156012 -0.595029 -2.228983 0.848597 -1.135577 0.599714 -0.571354 1.463266 0.494586 1.078903 2.088362 -3.645423 0.623714 -0.009070 -0.073861 -2.082212 0.032450 -0.889263 -0.691350 -0.895892 1.305537 -0.296550 -0.390778 -0.745782 0.488200 0.803208 -0.912613 0.062902 0.553054 2.091161 -2.157879 0.726054 -0.462870 -1.030626 -0.275801 1.088129 2.053071 2.168048 2.812117 2.175729 -0.461072 0.625144 -2.783711 0.115224 2.185240 -0.745998 -1.662518 2.597504 -1.670758 -0.797796 0.354432 2.390800 1.766307 0.229434 -1.546535 -1.338573 1.035965 0.803944 2.364946 -0.278138 -0.141943 -0.784707 1.532536 0.263081 -1.684248 3.259971 0.560555 -1.908130 0.955981 1.011120 -2.100973 -1.216712 1.490726 -2.014918 0.152256 -1.242435 0.577574 1.435979 -1.022940 -0.419155 0.245031 -1.795130 2.028144 -0.687653 -0.909894 1.273222 -1.538277 -2.023004 2.930179 0.080425 -0.406826 -1.804993 -2.211090 -0.525461 -1.696073 0.797934 0.023766 -0.596586 -0.820695 -1.893822 -0.246023 2.341114 0.570583 1.649282 -2.548000 -0.220545 1.090489 1.004960 1.284095 -0.816383 -0.234500 0.349903 -0.230953 -0.035082 -0.354346 1.379946 2.973997 -1.582831 0.860928 -0.077461 -1.281449 0.986079 0.953029 -2.973934 2.880507 0.457507 1.846805 0.050194 0.582313 -0.949048 0.225080 0.740982 -0.325644 -0.037359 0.217042 -0.456040 -0.813438 0.236010 -1.720209 -1.912753 -0.555313 0.966340 -0.268820 0.878671 -0.455956 -1.338373 -0.435998 -0.738458 0.749224 1.508484 0.242563 -0.404706 1.754001 0.552460 0.527338 -0.233051 0.105005 0.644988 1.427226 -2.603526 0.191576 -0.431724 1.323530 -1.127065 -2.799221 0.404893 -1.695174 -0.550432 0.891664 -2.471916 -0.376191 -1.706207 0.005909 -2.166520 -0.070139 0.792232 2.950102 1.205011 -1.324056 0.926754 -0.883378 1.116021 -0.190371 -0.346959 0.725613 1.430572 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -1.286768 0.539048 0.019079 -0.876887 2.729483 -0.922148 0.111512 0.820229 0.199192 1.905668 -0.902137 -1.281241 -0.925158 -2.598455 0.283617 -0.966387 -0.037072 1.480791 -0.210172 0.882203 1.111212 -0.894274 0.290477 -0.312689 -0.489223 -1.620213 -0.536619 0.652158 1.492172 -1.292784 -0.054283 0.279354 2.652927 -0.126872 2.133584 1.590102 0.674861 1.906911 0.407225 -0.470932 -0.371288 1.215980 -1.101406 -1.832267 0.501969 -0.506602 -1.417985 -1.068255 1.037633 -0.636855 0.619346 1.792312 -0.428353 -0.022600 -1.413842 1.021286 0.782173 0.881086 2.207388 0.421184 -0.209151 0.221642 -2.316126 1.423709 -1.194647 0.415158 -0.561381 -1.596481 -0.026018 0.052812 0.034210 -1.303592 -0.863786 1.577528 1.179251 -1.453975 0.400338 -0.653311 -1.484388 -1.709181 -2.250246 0.489013 -0.681874 1.688122 0.008384 0.555774 0.190048 0.885270 -0.229666 -2.460531 0.316931 1.876474 -0.924599 -0.198915 -0.471214 1.320568 0.262558 0.177810 -1.095834 -0.752107 0.435028 -0.507752 1.101010 -0.457372 0.430969 -1.654971 0.494034 -0.076789 0.317534 0.665903 1.856084 0.111889 0.890278 1.751196 -1.648369 -0.100675 -2.216042 0.621922 -0.566617 0.554241 -0.341026 1.176005 0.207899 0.393740 1.678676 -3.040911 0.827882 0.022164 -0.276598 -1.705589 0.236185 -0.714134 -0.667742 -0.775381 1.380189 -0.215376 -0.470865 -0.579870 0.452003 0.496836 -1.072155 -0.040389 0.231955 1.752724 -1.494391 0.525170 -0.626102 -1.190252 -0.247291 0.745138 1.289862 1.654096 2.308716 1.901085 -0.534428 0.177508 -2.338819 0.209340 2.026892 -0.395016 -1.623482 1.835375 -1.176346 -0.275553 0.476188 1.777059 1.522301 0.424043 -0.905537 -0.789258 0.681495 0.481777 2.021231 0.057315 0.263902 -0.769120 1.155522 0.253254 -1.158087 2.909671 0.793835 -1.709284 0.621155 0.896761 -1.701689 -1.050884 1.004875 -1.184421 0.306793 -1.267930 0.668406 1.159818 -1.148970 -0.619350 0.181194 -1.647727 1.781242 -0.484845 -0.437465 1.155641 -1.806959 -1.470340 2.443937 -0.036248 -0.465405 -1.495937 -2.029167 -0.811598 -1.663640 0.841250 0.046548 -0.518086 -0.930364 -1.596233 -0.103298 2.149866 0.414692 1.146920 -1.762253 -0.333373 0.859558 0.623973 1.279954 -0.825654 -0.388058 0.287965 -0.082080 0.461193 -0.000436 0.864718 2.604167 -1.481460 0.757996 0.238089 -0.792383 0.654213 1.147267 -2.260630 2.240152 0.000261 1.255996 -0.201840 0.703767 -0.744069 0.231362 0.660990 0.014349 0.021080 0.323405 -0.500579 -0.655932 0.213611 -1.692310 -1.431608 -0.216480 0.754088 0.139648 0.658369 -0.354437 -1.117129 -0.250962 -0.586828 0.489558 1.488457 0.415114 -0.576879 1.126373 0.288855 0.135219 -0.037825 0.283225 0.331569 1.443123 -2.137345 0.141659 -0.333560 0.656993 -0.936134 -2.211028 0.033493 -1.343130 -0.610939 1.169707 -2.203236 -0.301680 -1.362994 0.364820 -1.781416 0.099700 0.131488 2.247563 1.235608 -0.676621 1.064993 -0.463976 1.095433 -0.057231 -0.566632 0.723716 1.558500 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -7.038206 7.445397 3.032973 -5.876141 16.755168 -2.313170 2.194580 7.416585 -8.780843 14.156019 -4.025809 -0.234240 -2.372529 -14.181034 0.959202 -7.453019 -2.683378 5.808880 1.555851 9.829361 4.793534 -8.062011 0.835928 0.035905 -5.822507 -11.446987 -1.477067 4.906650 13.620111 -9.089445 3.711908 -0.140826 13.685706 -3.314006 12.947043 10.114654 3.216055 6.981884 4.597284 -9.559324 -4.484886 5.086018 -7.646731 -6.588097 -0.560069 -1.714067 -9.969191 -4.178401 4.841805 -2.153172 -5.115799 10.983212 -3.888314 0.291784 -7.695782 10.664878 3.433707 -0.686900 13.706626 0.656425 -1.627244 -3.940804 -14.808333 11.409594 -3.995128 -1.239574 -6.042904 -7.199778 5.223247 -0.628104 -4.273725 -6.342470 -0.717667 14.409316 7.290686 -11.152620 0.817206 -6.997119 -16.356477 -12.098439 -8.810191 4.309703 -0.211719 9.643236 2.637622 4.956292 2.374961 8.947456 -5.026553 -18.829298 4.010838 12.940314 -6.448945 -6.247876 -5.500046 12.177374 3.367132 1.839204 -5.972457 -3.710388 3.600225 -3.277637 6.291771 -13.019316 7.143589 -12.864451 -2.945734 -2.987377 3.572686 7.422298 7.286888 3.328401 9.531859 14.265398 -11.333259 -1.711117 -11.279906 3.334349 -4.121169 3.330527 -3.873235 7.866018 1.316222 5.648244 13.326658 -19.378400 2.925143 -0.612019 -0.089963 -15.324570 -0.582158 -5.384775 -2.372819 -4.557529 5.748869 -1.856648 -1.399077 -5.167263 2.651784 4.510885 -5.704900 -3.864447 6.436227 15.383016 -13.593989 4.001153 -2.158725 -2.904176 -1.901491 6.497082 11.563965 10.920004 15.314304 10.405823 0.327887 8.545622 -13.394559 -0.854520 10.623816 3.002743 -10.196944 14.749340 -10.607382 -5.659959 0.553691 11.205614 10.006335 2.542771 -13.395152 -11.817387 10.797362 4.030362 12.594379 -1.869286 -0.950265 -1.550055 11.446872 0.366729 -10.903904 13.296570 4.384560 -9.452851 6.442033 3.583963 -8.855346 -4.876545 9.748470 -11.622858 0.997190 -3.742421 -0.437395 6.887718 -4.116029 -2.038963 -0.175699 -9.420047 13.067502 -3.307411 -1.512622 5.872843 -7.388282 -12.267270 10.343142 0.571894 -3.501740 -10.553933 -10.176352 -9.112402 -8.551272 3.813028 1.015840 -3.769784 -5.968609 -11.482694 -2.313980 8.127233 3.556806 8.613351 -16.274304 -4.073313 5.995167 6.934040 8.307601 -3.183685 -0.684611 0.522743 -0.737479 1.482688 -2.078662 11.861796 17.155016 -6.845116 7.455731 -4.268413 -6.310305 5.631519 4.912676 -17.474553 15.199510 3.152478 10.045454 0.515356 2.596032 -5.234536 2.143698 4.070684 -2.790704 2.224718 0.118773 -1.465645 -4.502548 -1.058253 -10.094427 -8.591518 -3.629220 3.357524 -3.381327 4.612226 -0.741000 -5.852989 -4.975568 -8.339985 2.591287 7.506846 -0.508922 -1.120055 9.742332 1.132650 4.411895 2.669147 0.232194 4.722162 5.262257 -13.892982 -0.032103 -3.596401 5.380505 -6.934773 -15.050978 1.379660 -8.108958 -5.758627 4.528773 -13.106281 0.388690 -8.652990 -1.281067 -14.738966 -1.972099 4.359311 17.071442 4.138334 -7.279183 4.631619 -5.633157 6.882812 -0.613393 0.932649 2.747065 6.849363 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -2.169099 1.414023 0.490783 -1.574885 4.675272 -0.840495 0.340004 2.247248 -1.211215 3.453236 -1.563710 -0.621089 -1.121013 -3.682883 0.346614 -1.526475 -0.276389 1.985241 -0.328958 1.787370 1.734284 -1.438102 0.387796 -0.459565 -1.225929 -2.545216 -0.623229 1.088833 2.627129 -1.637093 0.286145 0.288575 3.891534 -0.523451 3.306817 2.594703 1.284413 2.799614 0.773222 -1.123406 -0.642975 1.801195 -1.875905 -2.730782 0.693844 -1.084071 -2.460991 -1.451725 1.544661 -1.420902 0.207362 2.840730 -0.679522 -0.084945 -1.940620 2.259813 1.235117 0.392171 3.688749 0.668136 -1.099242 -0.600587 -3.750574 2.696077 -1.562557 0.786678 -0.986598 -2.690311 0.247845 0.236975 0.007361 -2.123883 -1.135586 2.907750 1.531714 -2.539756 0.706333 -1.380576 -2.589324 -2.737218 -2.886460 0.862176 -0.591652 2.627701 0.142970 0.905618 -0.061089 1.658528 -0.664065 -4.442378 0.429874 3.317753 -1.728926 -0.383659 -1.751187 2.126198 0.464751 0.312610 -1.771999 -1.089681 0.930934 -0.403664 1.634011 -2.098646 0.927596 -2.873557 0.351508 -0.142576 0.720579 1.512398 1.923824 0.699057 1.901375 3.201858 -2.391133 0.193979 -3.362587 1.083480 -0.940082 0.953657 -0.877273 1.875898 0.686101 0.796118 3.115212 -4.735436 1.456702 0.009466 -0.563488 -3.417368 0.444892 -1.233575 -1.109990 -1.215512 2.073822 -0.320855 -0.685866 -1.148356 0.801557 0.663131 -1.857480 -1.078610 0.729996 3.113149 -3.122471 0.794938 -0.925290 -1.407691 -0.420203 1.538718 2.413193 2.623763 3.955971 2.889709 -0.354537 1.244577 -3.674547 0.264015 3.324263 0.803329 -2.963495 3.206000 -2.299591 -0.658914 0.787607 2.498597 2.341388 1.191849 -2.342204 -2.115079 1.595025 0.744767 3.499199 0.493564 0.520959 -1.384574 2.065461 -0.250869 -2.065858 4.172060 1.573121 -3.012742 1.256252 1.339541 -2.117763 -1.440884 1.910765 -2.421771 0.013495 -1.397123 0.434970 1.976385 -1.853056 -1.226616 0.282424 -2.763471 3.393037 -0.783473 -0.292519 1.485632 -2.921115 -2.451708 3.386967 0.291310 -0.968891 -2.395465 -2.690882 -2.009734 -2.845616 1.191577 0.538243 -0.897119 -1.797152 -2.910463 -0.430589 2.767504 0.517971 1.768107 -3.470458 -0.905817 1.631240 0.877824 2.267223 -1.733388 -0.582065 -0.050098 -0.257169 1.021512 -0.493689 2.071873 4.436844 -2.189322 1.824432 0.319420 -1.174261 0.987125 1.834149 -3.887024 3.888496 0.336898 2.440865 -0.103392 1.136735 -1.419772 0.468073 0.764280 -0.064068 0.191483 0.766962 -0.907255 -1.044962 0.115069 -2.909063 -1.958599 -0.275485 1.173937 -0.184278 1.020475 -0.290269 -1.711856 -1.027564 -1.806446 0.565037 2.395092 -0.190851 -1.198792 1.908093 0.281696 0.004575 0.038850 0.456369 1.021300 2.157652 -3.586249 0.332348 -0.517794 0.787224 -2.290188 -3.477177 0.076936 -2.106761 -1.555249 1.634688 -3.459773 -0.353283 -2.167892 0.490009 -3.450423 -0.439230 0.488927 4.133298 1.512465 -1.280096 1.785124 -0.866570 2.053337 -0.037136 -0.265432 0.800760 2.324106 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -4.437990 5.217790 2.920488 -3.892094 7.953803 -0.816164 1.750964 2.352968 -4.299538 7.228473 -3.362990 0.028872 -1.543719 -7.492414 0.141468 -5.204765 -1.905340 2.766496 0.813721 5.409483 3.061103 -5.032728 0.697142 -0.790161 -3.221965 -6.708858 -0.577800 2.447416 6.532486 -3.564795 3.063689 -0.403212 7.015505 -1.371448 7.211482 6.006241 0.895747 5.181736 1.914959 -3.508593 -2.576049 3.233247 -4.302835 -5.135160 0.004655 -1.290346 -5.141581 -3.321431 2.722162 -2.855142 -2.129905 6.252317 -2.028638 -0.431442 -4.991856 5.045331 2.619290 0.021254 7.979927 0.405420 -1.204427 -1.716454 -7.323641 5.137654 -2.657218 -0.278396 -2.069753 -4.089415 3.287788 -0.150723 -3.256211 -2.116167 -0.878133 6.722549 3.940831 -6.602192 0.147123 -4.097493 -11.590521 -4.854689 -3.849532 2.326588 0.912692 5.630929 1.184523 2.834326 1.876655 4.583654 -2.415019 -9.613505 1.668851 7.873827 -2.787587 -2.894899 -2.305710 7.674923 1.978843 0.698403 -3.536923 -0.540527 2.242889 -1.019461 3.586267 -7.053870 0.722738 -8.017713 -0.126087 -0.814376 0.710436 3.171421 3.261769 2.211425 4.755618 7.316297 -6.633342 1.233079 -6.772542 1.558478 -1.544222 1.731242 -1.614738 3.598085 -0.449237 2.590533 6.866020 -9.508494 2.679930 0.004542 -0.460440 -8.565144 -0.023537 -2.967289 -1.379089 -2.490419 3.211587 -0.565815 -0.759555 -2.953578 0.741182 1.856875 -2.552594 -2.857548 3.375146 7.951790 -5.600650 2.293160 -1.351678 -1.711948 -1.376696 3.704592 5.751458 5.607850 8.651062 6.100148 0.626910 4.341451 -6.696614 -0.703530 6.436133 2.255278 -5.690847 7.405824 -5.270384 -3.138448 0.387307 5.173471 5.616583 2.714750 -7.863512 -6.782491 4.971006 1.274874 7.223541 0.604628 -0.017385 -1.329463 7.675922 0.237508 -4.617822 6.926350 3.133598 -5.604020 3.424139 2.422955 -6.330379 -3.110990 5.406315 -5.520094 0.748432 -1.771907 -0.288266 3.426325 -2.645140 -2.196256 -0.946886 -5.954325 7.419813 -1.629010 0.501976 2.635766 -4.315342 -7.145714 5.425077 0.302047 -2.584721 -5.368663 -4.803453 -5.708551 -5.174376 2.223880 1.461332 -2.706758 -4.199381 -6.376044 -0.662781 3.428908 1.245910 4.547504 -6.599685 -2.781168 3.612125 4.131072 3.857859 -1.540242 -0.642285 0.085797 0.433612 1.944534 -0.364761 6.980753 8.997433 -3.662698 4.690740 -2.214987 -3.643548 3.373119 3.814209 -8.630123 8.483466 0.840949 4.789940 0.163944 1.778372 -2.754803 0.828749 2.513688 -2.334329 1.387960 0.538196 -1.282197 -2.555850 -0.454914 -5.453817 -3.331774 -1.302188 2.142650 -0.918416 2.403767 1.223017 -3.343643 -2.770966 -4.618700 0.865821 4.570756 -0.118535 -1.554195 4.969115 0.658586 2.169302 0.448135 0.334099 2.770994 3.131769 -7.662876 0.424695 -2.222438 1.037272 -4.708683 -7.242614 1.375596 -5.136726 -3.848663 2.553798 -6.971710 1.137887 -4.958596 -0.271474 -7.364681 -1.786797 1.928201 8.678712 2.412152 -3.125357 2.787203 -3.283390 4.610630 0.169116 0.362116 1.643502 4.852209 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -2.173181 1.554105 0.850624 -1.724760 4.449820 -0.969586 0.535833 1.686805 -0.966780 3.190142 -1.642304 -0.579697 -0.964012 -3.560361 0.367468 -1.779195 -0.338948 1.930209 -0.196219 1.841562 1.675101 -1.457161 0.352061 -0.486888 -1.196485 -2.730725 -0.634485 1.178397 2.416434 -1.616934 0.630197 0.328235 3.813449 -0.566707 3.495128 2.790083 1.166050 2.773671 0.675675 -1.044852 -0.518787 1.686927 -1.863576 -2.824416 0.527791 -0.780337 -2.602337 -1.634271 1.503397 -1.579486 0.091649 2.884943 -0.703432 -0.124824 -2.095982 2.186779 1.246627 0.301562 3.563033 0.635845 -1.072690 -0.220305 -3.422180 2.617863 -1.613348 0.619358 -1.044137 -2.704999 0.401993 0.374731 -0.289555 -1.808043 -1.198055 2.628568 1.669589 -2.645374 0.606793 -1.377990 -2.864146 -2.482358 -2.559518 1.014864 -0.426637 2.654475 0.170054 1.009670 0.221249 1.520294 -0.699944 -4.145398 0.419707 3.473429 -1.605496 -0.505680 -1.498585 2.346337 0.763778 0.183257 -1.617905 -1.094540 0.973356 -0.599090 1.670176 -1.655199 0.639586 -2.785225 0.175712 -0.033750 0.599101 1.673056 1.488388 0.871930 1.841364 2.973137 -2.418275 0.393600 -3.337898 1.177006 -1.094083 0.862819 -0.743273 1.655391 0.602965 1.017116 2.890113 -4.378195 1.522774 0.055326 -0.460618 -3.203185 0.399516 -1.142251 -1.041632 -1.263707 2.000465 -0.240670 -0.621954 -1.096373 0.702906 0.702080 -1.385676 -1.057399 0.630503 2.775460 -2.670330 0.898345 -0.851305 -1.333869 -0.471576 1.556988 2.427415 2.638222 3.940812 2.980109 -0.296362 1.208226 -3.619182 0.138663 3.282641 0.445368 -2.680105 3.207859 -2.249915 -0.898293 0.711033 2.554219 2.267297 1.155856 -2.379257 -2.070802 1.358279 0.644465 3.491178 0.544568 0.275578 -1.516736 2.218770 -0.151751 -1.752538 4.080349 1.496632 -3.058421 1.288414 1.491380 -2.468363 -1.693491 1.938541 -2.487356 -0.102540 -1.365541 0.583254 1.901812 -1.766836 -1.207147 0.224723 -2.771749 3.130735 -0.805425 -0.501319 1.355356 -2.632820 -2.676771 3.438069 0.264491 -0.934317 -2.267863 -2.612165 -1.620667 -2.803845 1.125405 0.594757 -0.929725 -1.739120 -2.793516 -0.331619 2.535406 0.397782 1.883741 -3.160537 -0.808287 1.698784 1.110572 1.798205 -1.596860 -0.518202 -0.005819 -0.039939 0.805633 -0.434535 2.019877 4.186961 -2.147391 1.677858 0.152941 -1.642628 1.125359 1.906518 -3.759412 3.929918 0.316897 2.228029 0.052308 1.040565 -1.444803 0.286446 0.792936 -0.392605 0.024905 0.711242 -0.972845 -1.074281 0.186424 -2.556415 -1.897060 -0.271497 1.369336 -0.117878 1.025954 -0.064712 -1.737041 -0.931410 -1.699076 0.598369 2.340853 -0.148255 -1.222420 2.079693 0.532391 0.013202 -0.341072 0.360453 1.124649 2.123503 -3.565009 0.489368 -0.550248 0.766157 -2.380717 -3.350253 0.488584 -2.373778 -1.465846 1.313584 -3.373245 -0.368730 -2.228708 0.488833 -3.116203 -0.591361 0.725393 3.944854 1.452232 -1.215245 1.689429 -1.066758 2.016480 -0.010909 -0.226755 0.823380 2.410013 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.874481 0.542836 0.517178 -0.224873 1.229144 -0.143705 -0.374178 0.768619 -0.374443 1.125746 -0.335260 -0.482376 -0.479430 -0.894385 0.156255 -0.882918 0.027374 0.422145 0.031306 0.936129 0.638670 -0.503926 0.011022 -0.137604 -0.455377 -0.793667 -0.368675 0.301814 1.338592 -0.801936 -0.053240 0.089082 1.637147 -0.207339 1.632401 1.159545 0.575165 0.744023 0.293888 -0.956129 -0.711885 0.850037 -1.097341 -0.570952 0.023144 -0.516518 -0.616106 0.056359 0.531783 0.367787 -0.569971 1.052540 -0.372435 0.517455 -0.614276 0.722910 -0.051354 0.559210 1.503150 0.039037 -0.140280 -0.255654 -1.266282 0.906957 -0.513216 0.172596 -1.132638 -0.725828 0.350185 -0.466704 -0.314773 -0.983283 -0.192178 1.533011 0.489359 -1.099045 0.475177 -0.371869 -0.657974 -1.120076 -1.271480 0.428002 -0.272435 0.886000 0.039515 0.549683 -0.169062 0.972426 -0.322136 -1.913648 0.539144 0.968824 -1.023931 -0.191174 -0.086171 0.808734 0.251119 0.657050 -0.469661 -0.295811 0.421348 -0.423867 0.624944 -0.950417 1.327791 -0.966653 -0.076648 -0.662412 0.487730 0.806352 0.466075 0.660136 1.310621 1.531856 -0.786974 -0.669807 -0.817708 0.204135 -1.104177 0.312950 -0.212201 1.021252 0.153632 0.478312 1.379834 -1.759841 0.086743 -0.012124 0.082651 -1.305727 0.075019 -0.980271 -0.407849 -0.678405 0.839793 -0.138443 -0.246642 -0.892707 0.340827 0.350708 -0.398979 -0.125595 0.395680 0.775688 -0.994812 0.272861 -0.326974 -0.522079 -0.168861 0.649253 0.962377 1.326901 1.307230 1.214606 -0.489933 0.529821 -1.179169 -0.194369 0.905041 -0.308425 -1.135650 1.384821 -1.067295 -0.649587 0.372231 1.029661 1.135723 0.582187 -0.852655 -1.099832 0.372033 0.673007 1.395461 -0.141025 0.138439 0.039445 0.916539 -0.417038 -1.235843 1.463697 -0.062231 -1.073421 0.393108 0.250288 -0.748057 -0.442956 0.810053 -1.248257 0.432518 -0.857068 -0.035635 0.808964 -0.677999 -0.041968 0.584739 -1.193955 1.271761 -0.220127 -0.176034 0.693698 -1.086977 -1.208252 1.351723 0.235311 -0.339844 -1.262987 -1.048167 -0.391441 -0.914521 0.467399 -0.215319 -0.154757 -0.552821 -1.233960 -0.164521 0.686685 0.549670 0.989593 -1.828061 -0.359730 0.395177 0.224756 0.795614 -0.082641 -0.193199 -0.125304 -0.313138 0.396889 -0.455216 0.998261 1.688598 -0.832014 0.554145 -0.473408 -1.051877 0.373515 0.442474 -1.736684 1.316466 0.207210 0.792815 0.019688 0.440282 -0.837433 0.098291 0.448308 -0.160832 0.121797 0.107430 0.046872 -0.503154 -0.058568 -0.780368 -0.636636 -0.686344 0.092002 -0.318897 0.461081 -0.110730 -0.892623 -0.275459 -0.419775 0.327047 0.983812 0.118268 -0.203475 1.116595 -0.203580 0.290873 0.052328 -0.008558 0.049114 0.666119 -1.524349 -0.453394 -0.212205 0.452253 -0.449756 -1.192538 -0.357397 -0.651569 -0.120279 0.686402 -1.121373 0.225637 -0.808351 -0.335810 -0.518786 -0.387068 0.525739 1.561738 0.754637 -1.080069 0.511474 -0.564076 0.876881 0.180838 -0.049110 -0.089554 0.717561 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -1.815475 1.450976 0.103521 -1.367741 3.858318 -0.828454 0.649270 1.270303 -1.727976 3.328860 -1.077762 -0.207627 -0.683289 -3.488434 0.226191 -0.977126 -0.299685 1.286387 0.387789 1.977856 1.226734 -2.184773 0.350348 -0.084072 -1.216220 -2.791414 -0.118599 1.205602 3.204215 -2.251466 0.434910 0.083778 3.347059 -0.597774 3.244414 2.466938 0.619242 1.986277 1.296585 -2.377189 -1.039729 1.378215 -1.782670 -1.943420 -0.028501 -0.331485 -2.337564 -1.358303 1.308914 -0.633376 -0.388145 2.731551 -0.938047 0.037458 -2.338763 2.237659 1.228240 -0.265695 3.461435 0.152489 -0.213136 -0.777356 -3.048903 2.672571 -1.220367 -0.737530 -1.028036 -1.747986 1.296646 -0.029156 -1.106164 -1.421673 -0.442295 3.033252 1.813156 -2.848147 0.180219 -1.425059 -3.577831 -3.082768 -2.285769 0.983577 -0.205628 2.600653 0.519590 1.217813 0.635780 1.796672 -1.012488 -4.280752 0.969605 3.038008 -1.414308 -1.175527 -0.841567 3.338752 0.732241 0.255406 -1.608125 -0.835109 0.716469 -0.924589 1.580839 -2.640983 1.514197 -2.771216 -0.382194 -0.844908 0.780273 1.632589 2.254095 0.510367 1.954455 3.224489 -2.510206 -0.414695 -2.858660 0.848763 -0.345433 0.678810 -0.752891 1.650412 0.419765 0.912730 3.045183 -4.609673 0.850084 -0.015998 0.104951 -3.552478 -0.218110 -1.182190 -0.617052 -1.086312 1.597579 -0.554770 -0.257921 -1.225293 0.703814 1.090022 -1.665090 -0.414415 1.210648 3.748771 -3.012113 1.018201 -0.583129 -0.958248 -0.484847 1.475686 2.582929 2.663077 3.597520 2.686420 -0.141973 1.958553 -3.297695 -0.058112 2.844505 0.580600 -2.333915 3.407069 -2.553832 -1.226205 0.322476 2.738727 2.577468 -0.003858 -2.866403 -2.197422 2.734441 0.999958 3.170432 -0.801008 0.093042 -0.483264 2.815504 0.728297 -1.942526 3.308590 0.976559 -2.555936 1.907890 1.101192 -2.259941 -0.876654 2.232648 -2.681586 0.160166 -1.270165 0.372583 1.763029 -1.198532 -0.377045 -0.242574 -2.362401 3.083401 -0.778236 -0.346545 1.648696 -1.848179 -1.985703 2.629312 0.023856 -0.641213 -2.392040 -2.583198 -2.419759 -2.243517 0.896431 0.060065 -1.053175 -1.240533 -2.796355 -0.600169 2.195145 0.930575 2.037253 -3.740998 -0.404941 1.560582 1.951719 1.487370 -0.497931 -0.257505 0.643886 0.135880 0.389001 -0.531336 2.770312 3.734185 -1.857661 1.482234 -0.821149 -0.914583 1.704361 1.165745 -3.981035 3.620151 0.552604 2.233980 0.114187 0.732565 -1.235585 0.438726 0.851189 -0.432312 0.202940 -0.009929 -0.659453 -1.152015 0.092173 -2.253883 -2.245943 -0.862115 0.986797 -0.214725 1.116441 -0.309108 -1.240481 -0.967381 -2.098758 0.831715 1.852734 0.101183 -0.317202 2.344624 0.464596 1.116758 0.601654 0.106413 1.100755 1.503683 -3.331839 -0.035355 -0.875972 1.352131 -1.472062 -3.662505 0.679730 -1.864257 -1.265838 1.541910 -3.508367 0.085046 -2.140630 -0.144742 -3.760411 0.155836 0.681020 3.961190 0.876911 -1.420814 1.221700 -1.257756 1.484002 -0.286340 0.201909 0.827085 1.825450 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.434574 2.114508 0.942818 -1.617866 6.054530 -0.870045 -0.149258 3.966377 -3.538053 4.616420 -1.265853 0.828271 -0.723814 -4.146522 0.308641 -1.026122 -0.449983 2.123626 0.206089 2.800674 1.680697 -1.916571 0.363229 0.020829 -1.697229 -3.121425 -0.448070 1.465010 4.204330 -2.639615 0.388085 0.062893 4.647472 -1.192659 4.116858 3.156018 1.591343 2.300372 1.819025 -3.595746 -1.378794 1.712606 -2.563114 -2.151197 0.286509 -0.962120 -3.012493 -0.685433 1.735559 -1.112586 -1.412861 3.389360 -1.186445 0.296194 -1.964649 3.784545 0.873218 -0.861895 4.498658 0.255368 -1.428361 -2.277931 -4.226545 4.144785 -1.400609 0.059378 -2.318096 -2.758496 1.138721 -0.067768 -0.747043 -2.933036 -0.441627 4.653176 1.614992 -3.487334 0.718499 -1.730342 -3.205050 -4.171554 -3.118274 1.250858 -0.741981 2.836111 0.440533 1.517430 0.094408 2.570366 -1.481928 -6.049449 1.374100 4.031307 -2.557485 -0.861284 -2.384432 3.020922 0.666710 0.755814 -1.725421 -1.458357 1.218032 -0.804900 1.973472 -4.469162 3.576308 -3.483606 -0.779695 -1.242406 1.725311 2.879770 1.712022 1.443474 3.159571 4.896621 -2.793449 -1.117630 -3.758872 1.229392 -1.776650 1.075271 -1.200617 2.426128 1.080473 1.788350 4.335723 -6.379421 1.059161 -0.216029 -0.233024 -4.929128 0.205967 -1.902859 -0.858470 -1.517665 2.186072 -0.866981 -0.651790 -1.927511 1.214741 1.201217 -2.845277 -1.915504 1.183858 4.498236 -5.139158 1.210126 -0.859048 -1.053727 -0.289094 2.209381 3.781490 3.696932 4.778571 3.346483 -0.168574 3.058709 -4.610019 -0.058927 3.434579 1.332673 -3.272584 4.869216 -3.489246 -1.746974 0.705614 3.477155 3.075230 1.172875 -3.534325 -3.619355 3.405741 1.631465 4.228905 -0.404793 0.247833 -0.872051 3.006089 -0.298736 -2.953637 4.751257 0.937011 -3.535181 2.477410 1.125001 -1.530272 -1.082763 2.671826 -4.142388 -0.193452 -1.302373 -0.162218 2.628020 -1.933158 -0.967563 0.580256 -3.152701 4.593297 -0.930184 -0.929735 2.003043 -2.752003 -2.854112 3.543449 0.751164 -1.135672 -3.295783 -3.415768 -2.947545 -2.763787 1.139494 0.463233 -1.083143 -1.975184 -3.812598 -1.204299 2.639102 1.419195 2.578842 -6.976402 -0.685476 2.057657 1.386541 2.210953 -1.784241 -0.345162 -0.248615 -0.501081 0.805761 -1.275860 3.650190 5.291425 -2.437985 2.504268 -0.566809 -1.512815 1.513200 1.463003 -5.525993 4.633351 1.099457 3.685828 0.423090 1.096870 -2.097215 0.676909 0.802216 -0.232066 0.318995 0.324980 -0.710169 -1.536814 -0.234571 -3.126356 -2.961898 -1.292040 0.990031 -0.831487 1.391689 -0.960321 -1.906370 -1.603857 -2.374401 0.855927 2.554865 -0.923645 -0.904307 3.075565 0.133350 0.720542 0.562906 0.308590 1.533094 1.868674 -4.515269 -0.045346 -0.807315 1.829377 -2.737631 -4.386446 0.189561 -1.978549 -1.716535 1.575148 -4.678448 -0.400630 -2.588870 -0.332566 -4.578299 -0.449037 1.286946 5.564353 0.911743 -2.406321 1.926883 -1.603965 2.209212 0.082052 0.559338 0.272485 2.202882 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.936619 0.393166 0.154429 -0.615928 2.045430 -0.376404 -0.168331 1.327459 -0.117349 1.311789 -0.780017 -0.242906 -0.388776 -1.163602 0.136678 -0.209550 -0.049441 0.939726 -0.431177 0.343011 0.761645 -0.052378 0.161094 -0.291890 -0.405653 -0.702415 -0.402941 0.367268 0.661665 -0.475686 -0.303831 0.165876 1.616109 -0.238603 1.356301 1.012877 0.824599 1.208377 0.186528 0.057470 0.010796 0.761597 -0.747668 -1.185178 0.443825 -0.636825 -0.921985 -0.475561 0.664126 -0.809145 0.777058 1.025564 -0.160468 -0.021890 -0.472776 0.924698 0.275991 0.173943 1.449853 0.384057 -0.915954 -0.086602 -1.383200 1.333661 -0.742646 0.900869 -0.431441 -1.404504 -0.397100 0.231875 0.587471 -1.214529 -0.727160 0.971761 0.280980 -0.863728 0.499895 -0.408452 0.175111 -0.968170 -1.236916 0.368469 -0.437237 0.871644 -0.121080 0.247208 -0.512270 0.488465 -0.149795 -1.601245 0.006335 1.276637 -0.884040 0.406405 -0.940210 0.152355 0.011762 0.160796 -0.534496 -0.545461 0.408293 0.044999 0.580436 -0.434578 0.607612 -0.812738 0.410672 0.230141 0.314188 0.502285 0.442239 0.389986 0.751502 1.205437 -0.398710 0.091436 -1.389835 0.517414 -0.529948 0.374877 -0.282264 0.661565 0.507329 0.270244 1.142977 -1.673751 0.727657 -0.026545 -0.504073 -1.100963 0.361124 -0.511218 -0.615943 -0.475360 0.888008 -0.027444 -0.391283 -0.473984 0.411090 0.023762 -0.940701 -0.654958 -0.064348 0.598985 -1.124777 0.198485 -0.409913 -0.603709 -0.134107 0.726799 0.894764 0.970413 1.544992 1.112898 -0.182407 -0.023766 -1.512964 0.196628 1.288841 0.194758 -1.202086 1.174650 -0.869903 -0.103556 0.562141 0.916371 0.645686 0.763088 -0.451706 -0.552508 0.139458 0.251737 1.457948 0.460367 0.398369 -0.710488 0.354893 -0.436404 -0.618248 1.923018 0.681870 -1.406475 0.244390 0.585071 -0.304272 -0.607484 0.596984 -0.928602 -0.210036 -0.582541 0.239307 0.833863 -0.931425 -0.685967 0.480492 -1.168872 1.434009 -0.253465 -0.288929 0.529078 -1.456606 -0.541320 1.578535 0.294887 -0.414382 -0.735197 -0.979711 -0.472742 -1.209243 0.447407 0.420371 -0.223856 -0.748672 -1.091688 -0.082671 1.164617 0.066986 0.595569 -1.328989 -0.329306 0.665053 -0.278401 0.816663 -1.075914 -0.312166 -0.353288 -0.169374 0.589998 -0.389932 0.497183 1.757268 -0.896121 0.721541 0.849786 -0.375743 0.005872 0.844596 -1.341301 1.466822 0.057062 0.630804 0.010676 0.568804 -0.684500 0.098037 0.076020 0.309097 -0.082961 0.537963 -0.479824 -0.362264 -0.017187 -1.226428 -0.606835 0.054481 0.506180 0.001174 0.320675 -0.296712 -0.786884 -0.382423 -0.640114 0.146922 1.024752 -0.254679 -0.817441 0.651450 0.041090 -0.544215 -0.185160 0.263053 0.335940 1.090964 -1.377466 0.202912 0.074971 0.221522 -1.262298 -1.026603 -0.240808 -0.722831 -0.546347 0.497308 -1.302836 -0.531378 -0.788076 0.328612 -1.092255 -0.274130 0.200503 1.593224 0.745322 -0.483446 0.849046 -0.216716 0.922586 0.214183 -0.248639 0.198605 0.957344 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.602270 1.153004 -0.213169 -0.861848 2.363354 -0.439788 0.938245 0.797165 -1.454411 2.171987 -0.946017 -1.226276 -0.827180 -2.604066 0.335225 -1.578781 -0.193142 0.858220 0.094757 1.926556 1.296465 -1.735940 0.006441 -0.433533 -0.744787 -1.463002 -0.117813 0.618678 2.531988 -0.899483 0.104762 0.138817 2.712522 -0.144093 2.882744 2.199556 0.089876 1.703833 0.575788 -1.890331 -1.289960 1.644671 -1.695390 -1.785126 -0.322753 -0.567422 -1.661127 -0.970735 0.941598 -0.247457 -0.182551 2.163195 -0.712738 0.420470 -1.741115 1.118605 0.716266 0.750087 2.779820 0.309995 -0.059773 -0.412599 -2.240944 2.143623 -0.622447 -0.192903 -0.601671 -1.374100 1.162257 -0.529359 -1.105163 -0.749441 -0.566074 2.418259 1.627399 -2.081344 0.550727 -1.011520 -3.558972 -1.601418 -1.962863 0.639554 -0.507648 2.302311 0.080853 0.830033 0.242784 1.488910 -0.557302 -3.305951 0.666126 2.603989 -1.090230 -0.996114 -1.015835 2.539120 0.796334 0.808278 -1.610128 -0.224255 0.753997 -0.547069 1.250675 -2.092933 0.483414 -2.303862 -0.112976 -0.329754 0.563708 1.995798 1.684924 0.798168 1.822128 2.462590 -1.715882 -0.032931 -1.673337 0.613773 -1.233896 0.682132 -0.288717 1.553199 0.432244 0.411836 2.307186 -3.183632 0.473981 0.403733 0.226078 -2.632030 0.024276 -1.538489 -0.796170 -1.179282 1.433356 -0.075144 -0.342980 -1.213522 0.409823 0.894314 -0.885587 0.026929 0.943970 1.988907 -1.646213 0.533267 -0.626553 -0.760066 -0.472662 1.381936 1.630551 2.145230 2.630999 2.234141 -0.491747 0.708241 -2.079944 0.016330 2.537269 -0.118396 -2.095075 2.348646 -1.897490 -0.989414 0.124583 1.744064 2.224067 0.932250 -2.106161 -1.730090 0.824131 0.634900 2.640143 0.283073 0.089047 -0.044475 2.483508 -0.379436 -1.996786 2.207364 0.956069 -1.663602 0.626928 0.643381 -2.678312 -0.885531 1.682725 -1.902581 0.696114 -1.510460 0.310502 1.296584 -1.095786 -0.244926 0.116386 -2.178323 2.356340 -0.514118 -0.025009 0.634429 -1.796387 -1.539548 2.414443 0.271935 -0.790851 -2.044278 -1.730905 -2.136486 -1.777223 1.003643 -0.276213 -0.304165 -1.449395 -2.155843 -0.522401 1.464854 0.606982 1.636752 -1.881074 -0.443427 0.905306 1.405379 1.440469 -0.167080 -0.501712 0.178144 0.128707 0.824769 -0.250543 2.041067 2.964597 -1.427909 0.957137 -0.411893 -0.980861 1.055753 1.217735 -3.056977 2.640676 0.224880 1.062662 -0.190453 0.786902 -0.952171 0.046437 0.868108 -0.546912 0.243178 0.258186 -0.135359 -0.733489 0.072601 -1.511158 -1.244225 -0.697255 0.380270 -0.156695 0.892245 0.004883 -1.580674 -0.604997 -1.552446 0.511525 1.886099 0.354008 -0.176116 1.750491 -0.182011 0.895373 0.507137 0.054986 0.426670 1.364781 -2.718137 -0.324019 -0.722954 0.768365 -0.829036 -2.360703 0.033826 -1.324635 -1.071622 1.627446 -1.868372 0.726449 -1.791271 -0.284652 -2.249218 -1.020459 0.596100 2.864117 0.884822 -1.197360 0.814037 -0.953930 1.697494 0.096854 0.015271 0.577781 1.615542 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/the-knights-tour.cpp__solveKT() = -3.405915 0.885934 0.086976 -2.498284 7.248001 -2.186832 0.483798 1.777782 -0.160744 4.469619 -2.218142 -2.919302 -2.397182 -6.483593 1.001296 -2.233858 0.311547 3.641009 -0.598100 2.751519 3.016285 -2.449136 0.863064 -0.761784 -1.091454 -3.338336 -1.572194 1.960203 3.974857 -3.295551 -0.204587 0.804795 6.592181 -0.634478 5.224790 4.123008 1.887821 4.837276 0.518533 -2.704061 -0.742874 3.330888 -2.909997 -4.878352 1.597269 -1.246170 -4.014720 -2.864608 2.889782 -1.510519 0.421961 4.813712 -1.233986 -0.303142 -3.800627 2.766163 2.565111 1.754094 5.521524 1.235164 -0.555836 0.695195 -5.598603 2.729073 -2.905534 1.212589 -1.949686 -4.445008 -0.256736 0.343809 0.253881 -3.907659 -2.708614 3.755814 3.021617 -3.596770 1.508677 -1.638680 -2.012886 -4.846715 -5.898759 1.080923 -2.334225 4.588433 -0.265904 1.359753 0.631880 1.911084 -0.506019 -6.131845 0.703588 4.304167 -2.373902 -0.549668 -0.884384 3.301795 0.804263 0.081911 -3.297386 -2.189973 1.089995 -1.655253 2.938041 -0.275770 1.986244 -3.422024 0.300843 -0.278689 1.625638 2.413416 4.450577 0.520173 2.290536 4.123301 -4.023120 -0.437379 -5.142922 1.610718 -2.123208 1.633731 -1.008158 3.328069 1.601131 0.894254 4.199995 -7.313162 2.230077 0.213950 -0.538286 -3.941359 1.025542 -1.641473 -1.917071 -2.021089 3.792114 -0.809028 -1.306404 -1.366900 1.509465 1.320020 -2.404701 0.872040 0.125810 3.757483 -4.174325 1.391268 -1.712604 -3.370080 -0.050407 1.736754 3.236218 4.396879 6.007616 5.159548 -1.897261 1.299280 -5.859728 1.045860 5.459721 -1.169692 -4.108459 4.480734 -2.943345 -0.562473 1.611425 4.330051 4.127203 0.959197 -1.958664 -1.644386 1.579263 1.336276 5.237440 0.090342 0.981513 -2.989536 2.290270 0.535728 -2.260598 7.401954 1.404569 -4.819257 2.257080 2.586188 -4.134754 -2.561033 2.105651 -3.134962 0.266200 -3.363480 2.092184 3.324655 -3.293108 -1.937469 0.308880 -4.244217 4.203373 -1.463538 -1.684946 2.991885 -4.532622 -3.307593 6.490730 0.299674 -1.189118 -3.935681 -4.900288 -1.108811 -4.566054 2.320413 -0.234279 -1.150266 -2.295468 -4.166288 -0.626493 5.585935 1.103920 2.683538 -5.038754 -0.081124 2.355213 1.829805 3.120569 -2.155684 -1.125617 1.051800 -0.561879 0.827242 -0.513661 1.634208 6.198668 -4.386920 1.228081 0.629996 -1.927278 2.062080 2.902247 -5.661146 6.080750 0.628963 4.654249 -0.636347 1.868749 -2.115617 0.683383 1.522319 0.067586 -0.231266 1.140758 -1.567762 -1.766135 1.247182 -3.546700 -3.970525 -0.471320 2.286989 0.291628 1.891526 -0.947552 -2.763609 -0.661061 -0.888000 1.444173 4.016512 0.393174 -1.906952 2.691593 1.153689 0.262218 -0.805437 0.828224 1.072792 4.023592 -5.704345 0.838747 -0.941100 1.871747 -2.330808 -5.504609 0.824335 -3.259364 -0.997686 3.653181 -5.171593 -0.576407 -3.647020 1.166296 -3.923119 0.258876 0.272040 5.595407 3.025995 -1.789960 2.964822 -1.100552 2.742864 -0.669605 -1.314880 1.542138 3.746656 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -5.348149 3.799429 1.299494 -3.972085 11.389271 -1.352716 1.946471 4.464516 -5.782025 8.687314 -3.436683 0.577834 -2.080703 -9.120864 0.810249 -2.950757 -0.727213 3.266153 0.378006 5.523779 3.863002 -5.420908 1.279773 -0.613886 -3.258696 -7.944862 -0.354794 3.170832 8.593603 -4.138080 1.317410 -0.042582 8.718970 -2.028514 7.990412 6.529586 2.713281 5.673590 2.133388 -6.872992 -2.636814 4.179949 -5.122729 -6.092710 0.650764 -1.848402 -7.153062 -3.729442 4.000699 -3.213781 -2.816576 7.758441 -2.423532 -0.279920 -5.692926 6.441482 4.163613 -1.580601 9.663611 0.771102 -1.551064 -3.231550 -7.859095 7.013101 -2.951989 -0.723116 -3.309139 -5.764697 2.325313 0.298761 -3.468560 -3.396378 -1.213645 7.657806 4.946754 -7.581630 1.218224 -3.830475 -8.061957 -8.523011 -6.024647 2.305930 -0.866027 7.319068 0.991245 3.149912 2.339136 4.433457 -2.412641 -11.417139 2.230451 8.184230 -4.205721 -2.974881 -3.195770 8.027894 1.729412 0.811954 -4.797063 -2.571304 2.104514 -1.675765 4.397418 -7.397865 3.519028 -7.704156 -1.140038 -1.853981 3.117402 4.745485 4.002600 1.462171 4.776634 8.403747 -6.949260 0.654648 -7.679053 2.444982 -2.057504 2.575140 -2.560352 4.564097 2.562638 2.801338 8.311779 -11.767692 3.082015 0.114266 -0.142396 -9.177403 0.233760 -3.452398 -2.023509 -2.793055 4.742046 -1.883264 -1.120602 -3.411728 2.757080 2.540134 -4.816268 -1.136299 2.431268 8.774328 -9.009252 2.720390 -1.926324 -2.743454 -0.895655 4.168949 6.605653 7.288141 10.148224 7.681513 -0.733795 6.829145 -8.847146 0.658583 8.659424 2.461146 -6.655669 8.498158 -7.182816 -2.783355 1.465691 6.340732 6.992688 2.125124 -7.424063 -5.564094 7.061818 2.678325 9.186300 -0.046572 1.097334 -3.314959 6.759796 -0.291069 -4.312067 8.951761 3.514293 -8.141780 5.719294 3.240524 -6.394032 -2.291668 5.252278 -7.097382 -0.309162 -3.621801 1.112076 5.306356 -3.984625 -2.283390 -0.360976 -6.788674 8.264638 -2.025777 -0.306226 4.390256 -5.089362 -5.427592 7.132585 0.725662 -2.315876 -6.734796 -6.620797 -6.751440 -6.613633 2.755023 0.337418 -2.881286 -4.199360 -7.992527 -2.266581 5.854066 2.473381 5.145981 -11.426420 -0.647912 4.325145 4.847174 4.314920 -2.431059 -1.053022 0.623986 -0.603099 1.543868 -2.060693 6.671264 9.555499 -5.715564 4.741740 -3.299109 -3.661432 4.156053 3.790165 -10.001793 10.064589 1.990710 7.731377 0.088083 2.720668 -3.850518 1.636009 1.800871 -2.095443 0.603679 1.197303 -2.402241 -3.292150 1.300863 -5.677662 -6.259974 -1.889204 2.810359 -0.349606 2.940679 -0.455009 -3.966861 -2.821864 -5.312250 2.028712 5.639107 -1.331864 -2.144601 5.693165 1.318288 1.927409 -0.233111 0.835530 3.209734 4.656630 -9.375926 0.442305 -2.203655 2.973718 -5.160990 -9.552261 1.810755 -5.061038 -4.094378 4.938369 -9.323803 0.636181 -6.042933 0.045007 -9.427698 -1.340103 1.666643 10.431299 1.986668 -3.410826 4.232148 -2.994673 4.485763 -0.898692 0.982270 1.943760 4.940120 +PE-benchmarks/the-knights-tour.cpp__main = -0.850487 0.115536 -0.215192 -0.533009 1.756796 -0.650823 -0.062844 0.739725 0.148513 1.122175 -0.505495 -0.630007 -0.526254 -1.466292 0.251525 -0.192025 0.167303 0.998648 -0.195247 0.467086 0.752402 -0.388544 0.180867 -0.169880 -0.260561 -0.774137 -0.312071 0.462891 0.831194 -0.816415 -0.340469 0.290933 1.668735 -0.159714 1.368012 1.037902 0.609567 1.135873 0.291515 -0.508184 -0.127231 0.805731 -0.691718 -1.192008 0.405834 -0.314758 -0.871954 -0.625952 0.736056 -0.342708 0.537542 1.112106 -0.286450 0.004933 -0.843741 0.640427 0.424190 0.424115 1.369825 0.323025 -0.309457 0.167309 -1.242302 1.009188 -0.806909 0.339319 -0.469457 -1.162649 -0.152062 0.126984 0.261296 -1.022294 -0.639057 0.887332 0.555634 -0.871367 0.433410 -0.315447 0.131040 -1.145614 -1.514651 0.291424 -0.652832 1.049548 -0.092423 0.314283 -0.184125 0.450249 -0.102346 -1.468257 0.198988 0.942616 -0.722408 0.086998 -0.213865 0.609798 0.198029 0.026115 -0.617387 -0.593942 0.274914 -0.416549 0.709582 0.117269 0.712386 -0.613073 0.173384 -0.076837 0.446952 0.582918 1.035140 0.167904 0.618342 0.996196 -0.586627 -0.232805 -1.316203 0.490388 -0.482141 0.346655 -0.203578 0.788721 0.556592 0.151170 1.043727 -1.723512 0.525998 0.039494 -0.086645 -0.867974 0.285033 -0.399821 -0.481515 -0.557815 1.001064 -0.186777 -0.362916 -0.364424 0.448072 0.302139 -0.793584 0.134100 -0.090044 0.709748 -0.989826 0.316950 -0.448304 -0.833100 0.008731 0.432657 0.735470 1.110834 1.430488 1.254356 -0.474190 0.095539 -1.490531 0.240138 1.251622 -0.322956 -1.016356 1.094867 -0.775504 -0.161519 0.481392 1.112132 0.925993 0.257808 -0.275260 -0.284766 0.292047 0.384248 1.305323 -0.046017 0.297335 -0.617155 0.335750 0.132936 -0.563894 1.917046 0.270674 -1.268081 0.486117 0.623470 -0.738064 -0.565584 0.492582 -0.787311 0.021754 -0.876273 0.546821 0.885393 -0.911241 -0.417242 0.262239 -1.037123 1.030494 -0.340045 -0.453797 0.758747 -1.269061 -0.388223 1.672491 0.186301 -0.237565 -0.910826 -1.221213 -0.246902 -1.137973 0.519676 -0.036471 -0.185497 -0.466600 -1.011576 -0.203971 1.399854 0.306213 0.632914 -1.271929 0.018227 0.619231 0.238724 0.628349 -0.617707 -0.287118 0.224089 -0.144164 0.250287 -0.226408 0.332576 1.470700 -1.067383 0.280766 0.497726 -0.317571 0.418563 0.674627 -1.401262 1.461056 0.114532 0.789530 -0.044270 0.447073 -0.604074 0.137608 0.240168 0.220083 -0.144222 0.279569 -0.402186 -0.419243 0.274279 -0.887210 -0.906543 -0.151061 0.577544 0.136142 0.448246 -0.387509 -0.676218 -0.185695 -0.357908 0.377050 0.983307 0.080428 -0.508428 0.732866 0.238997 -0.119401 -0.193163 0.215990 0.236812 1.049125 -1.389171 0.181206 -0.095134 0.530796 -0.640844 -1.242493 0.063998 -0.654642 -0.200882 0.775360 -1.314712 -0.322590 -0.831346 0.316806 -0.989131 0.156600 0.040396 1.397745 0.739842 -0.439786 0.775226 -0.247929 0.630364 -0.047867 -0.346123 0.285152 0.944867 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -9.466781 9.029928 2.949522 -7.713257 21.450263 -5.592154 2.575113 7.336951 -7.264219 15.546127 -6.954747 -3.216004 -4.374105 -21.985262 1.445169 -9.208537 -2.802158 10.023947 1.596499 11.297613 7.143767 -10.849924 1.232528 -0.872131 -5.854366 -14.620321 -2.571654 5.943627 16.046479 -13.415563 3.557993 0.233233 20.217496 -3.015169 16.764151 13.183141 4.266929 11.996963 5.925899 -10.100243 -5.758046 7.820331 -9.625405 -11.860636 0.895532 -1.968410 -12.058561 -6.203313 6.624570 -3.356575 -2.340097 14.445295 -4.912977 -0.031819 -12.166303 10.973188 6.902858 2.096832 17.872189 1.394538 -0.887565 -1.621473 -18.228392 13.238752 -6.705897 -0.492739 -5.796627 -9.330573 5.743912 -1.212454 -4.393445 -9.816829 -3.958086 15.867881 10.121244 -13.864334 1.050124 -8.093533 -21.623573 -15.252850 -14.389699 4.787581 -2.966775 13.233958 2.234653 5.975452 3.973499 9.450309 -5.194204 -21.813290 4.480162 16.252176 -6.973834 -6.057259 -4.732926 16.621509 3.569086 2.062309 -8.600833 -5.623122 4.374743 -4.296652 8.455968 -12.141622 5.919889 -17.179671 -0.641049 -3.859691 2.797071 8.017164 12.489883 2.886737 9.670693 16.534892 -16.403261 -2.141707 -18.203565 3.732704 -4.231662 4.655263 -3.475405 9.000241 -0.427366 5.806378 14.940048 -25.201063 5.160073 -0.265340 -0.525303 -17.978302 -0.207071 -6.928559 -3.597202 -5.936348 8.290661 -2.029393 -2.283259 -6.261174 2.596420 5.657729 -8.353712 -3.906166 6.134633 19.422526 -16.714848 4.952413 -3.534412 -5.840335 -2.667052 7.145130 13.226791 13.755598 19.896371 14.376536 -0.853973 10.034678 -18.247803 -0.755069 15.382500 1.442311 -12.365425 16.820472 -12.182958 -5.966884 1.444868 15.571031 13.324748 1.974869 -15.010281 -12.294061 13.542349 4.350277 15.678425 -2.391984 -0.413272 -3.734187 15.725464 4.175681 -12.232663 21.995522 4.730463 -12.741045 9.134070 5.130425 -12.303384 -6.898545 10.874715 -12.932858 2.010933 -6.454518 1.749585 8.310722 -6.361917 -3.642051 -1.069483 -12.701064 15.307515 -4.134400 -3.511809 8.222490 -10.077980 -15.561621 16.895732 -0.304675 -4.797842 -13.294967 -14.893101 -8.829550 -10.871684 5.729475 1.013215 -5.633849 -7.961146 -13.966135 -1.633111 14.074351 4.117744 10.686441 -19.150346 -5.318113 7.317514 9.500989 9.525919 -6.440590 -1.699858 1.693534 0.672351 2.446814 -0.233668 13.248062 22.034263 -9.956207 8.355882 -3.554912 -8.090913 7.479971 8.580334 -20.067144 18.726142 1.953054 14.286136 -0.517929 3.910457 -6.667745 1.885842 6.183645 -1.672811 2.380804 0.203312 -2.021489 -5.594145 -0.251333 -12.426066 -11.788638 -3.763541 4.767930 -1.536994 5.951517 -1.937300 -6.889377 -4.542294 -7.157255 3.173371 10.570219 1.196636 -2.844222 11.102340 1.612430 5.561620 3.581899 0.889842 5.060982 7.958175 -17.206473 0.232843 -4.904219 6.486661 -7.978286 -21.154305 2.797461 -11.151890 -5.941650 7.288875 -18.519415 -0.040637 -11.290458 -0.689219 -18.773251 -0.068288 3.671778 19.261527 6.887765 -7.392878 6.616387 -6.465992 9.249428 -1.039726 -0.365714 4.643206 11.251555 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -2.226299 1.703112 0.613833 -1.714328 4.811549 -1.338118 0.360876 1.785348 -0.853770 3.382827 -1.741222 -1.080395 -1.208943 -4.679626 0.352384 -1.938494 -0.439070 2.413732 -0.040063 2.034087 1.769895 -1.943458 0.358838 -0.386521 -1.174095 -3.059787 -0.728055 1.230582 3.004438 -2.546442 0.460424 0.222944 4.581601 -0.530038 3.681501 2.885647 1.161665 3.052492 1.070289 -1.346832 -0.937668 1.904614 -2.054363 -3.010238 0.547862 -0.717986 -2.566929 -1.526920 1.601801 -1.147569 0.245781 3.131269 -0.918000 -0.072638 -2.554784 2.223890 1.463933 0.844559 3.964027 0.532171 -0.573540 -0.088279 -4.033328 2.840667 -1.773440 0.492408 -1.116260 -2.495730 0.663833 -0.041807 -0.448541 -2.270855 -1.232914 3.115985 2.017479 -2.855694 0.459128 -1.570299 -3.830737 -3.000361 -3.403128 0.988344 -0.803436 2.882706 0.262777 1.139598 0.497360 1.818358 -0.850175 -4.588249 0.703240 3.545731 -1.604114 -0.759739 -1.121282 2.999952 0.642857 0.348450 -1.825224 -1.254954 0.952519 -0.771401 1.849864 -1.997591 0.898424 -3.498199 0.420742 -0.448405 0.532879 1.483196 2.646933 0.581367 1.899590 3.400261 -3.235565 -0.154382 -4.145267 0.965823 -0.930231 1.004412 -0.715403 1.935129 0.056349 1.026940 3.144926 -5.343220 1.437208 -0.015496 -0.395241 -3.607746 0.228562 -1.405777 -1.011448 -1.322536 2.082732 -0.342190 -0.662559 -1.271933 0.630843 0.968591 -1.876334 -0.850015 0.919147 3.674147 -3.312508 0.974815 -0.925993 -1.564614 -0.541494 1.527421 2.634538 2.920854 4.349732 3.216931 -0.372368 1.479340 -4.093888 0.031827 3.526699 0.145530 -2.850381 3.447389 -2.440164 -0.953048 0.609130 3.238224 2.733608 0.799650 -2.672111 -2.263017 2.165658 0.827596 3.539125 -0.017025 0.222573 -1.195817 2.892432 0.593382 -2.342526 5.078718 1.312265 -3.034039 1.643046 1.338638 -2.676368 -1.695276 2.134708 -2.550098 0.388791 -1.617268 0.596512 1.950017 -1.753467 -1.090235 0.022431 -2.922166 3.369292 -0.880725 -0.692650 1.796635 -2.730905 -3.123316 4.010892 0.039234 -1.032385 -2.737673 -3.281378 -1.755076 -2.701579 1.320778 0.391597 -1.157842 -1.806390 -3.002948 -0.242414 3.310051 0.710124 2.174153 -3.695118 -1.123729 1.655174 1.536545 2.158591 -1.687530 -0.538938 0.238593 0.006962 0.831339 -0.063715 2.393935 4.810154 -2.318768 1.845416 -0.040151 -1.667887 1.338160 2.095688 -4.143171 4.104384 0.197957 2.751755 -0.168230 1.045549 -1.480434 0.381201 1.202652 -0.155171 0.325715 0.393752 -0.698979 -1.173474 0.062123 -2.937913 -2.354939 -0.528506 1.212578 -0.059694 1.220290 -0.398542 -1.702343 -0.886003 -1.448747 0.660748 2.494994 0.292052 -1.037675 2.202854 0.361250 0.578502 0.307186 0.361229 0.984759 2.108505 -3.777122 0.212768 -0.797840 1.135023 -2.025969 -4.284958 0.376955 -2.468209 -1.328176 1.648567 -4.002672 -0.281064 -2.415298 0.239901 -3.806845 -0.055752 0.578913 4.136701 1.781178 -1.405233 1.704658 -1.150927 2.122753 -0.090986 -0.404591 1.046504 2.686810 +PE-benchmarks/union-find.cpp__createGraph(int, int) = -1.388251 1.216997 -0.019009 -1.090727 2.047694 -0.650022 -0.107970 2.134829 -0.323442 1.692178 -1.162701 0.182546 -0.265046 -1.500140 0.136381 -0.545342 -0.112299 1.431916 -0.396499 0.889996 1.088148 -0.114569 -0.028825 -0.437880 -0.965141 -1.135352 -0.050865 0.530702 0.725280 -0.595073 0.266681 0.333913 2.572507 -0.482578 2.255288 1.774756 1.620826 1.858786 0.942450 0.452855 -0.208337 1.061587 -1.038082 -1.300471 0.393056 -0.713005 -1.312259 -0.608131 0.670050 -1.291953 1.600339 1.494411 0.114082 0.198041 -0.905935 1.408408 0.706857 -0.559505 2.197219 0.580999 -1.250392 -0.271320 -1.254247 2.370691 -1.091697 0.741503 -0.312130 -1.237041 0.095120 0.301877 0.695742 -1.690303 -0.920106 1.247047 0.265685 -1.700297 0.785628 -0.729415 0.129262 -1.727647 -1.221337 0.724404 -0.054585 1.286331 -0.265486 0.432194 -1.011318 0.824110 -0.549657 -2.177402 0.134097 1.868402 -1.377514 0.087423 -2.039937 0.912986 0.239288 0.341885 -0.970569 -0.886768 0.799396 0.062929 0.840605 -1.258054 0.266262 -1.111706 0.131830 0.258827 -0.150332 1.509974 0.217822 1.175825 1.522994 1.733096 -0.408489 0.556818 -2.585932 0.673137 -0.214735 0.363919 -0.064451 0.450581 0.797076 0.649316 1.370893 -2.249680 1.195924 0.082037 -0.611932 -1.714714 0.436384 -0.566100 -0.878287 -0.953941 1.245330 0.235379 -0.381409 -0.814904 0.695167 0.219259 -0.911621 -2.114706 0.280151 1.018446 -1.653405 0.195168 -0.542043 -0.516891 -0.417522 1.051099 1.213062 0.937658 2.316091 1.301735 0.153047 0.846573 -1.965065 -0.364112 1.429543 1.316363 -1.764898 1.766089 -1.472713 -0.654588 0.640675 1.426976 0.629068 1.221991 -1.486445 -1.492908 0.796842 0.183533 2.149675 -0.004336 0.096794 -1.293222 1.207934 -0.327416 -1.078829 2.994875 1.418616 -1.721220 -0.243446 0.603689 -0.182616 -1.018980 1.367400 -1.643555 -0.927158 -0.219542 0.190853 0.941823 -1.023496 -0.866757 0.599880 -1.640033 1.667675 -0.484773 -0.733175 0.173549 -2.239497 -0.589100 1.839251 0.317091 -0.696870 -0.749075 -1.208062 -0.480832 -1.972450 0.677990 0.994436 0.001370 -1.296798 -1.475458 0.086423 1.200121 -0.076019 0.531270 -2.382886 -1.047726 1.301163 -0.222667 0.850703 -1.992364 -0.358328 -0.531115 0.670403 1.016403 -0.467832 1.457029 2.726637 -1.022840 1.204132 0.871504 -0.976408 0.140805 1.386551 -2.277725 2.298374 0.168279 0.590022 0.159706 0.413794 -1.211115 -0.186034 -0.020770 0.632961 -0.194976 0.350016 -0.576842 -0.435582 -0.630142 -1.452163 -0.303477 0.045755 0.764373 -0.738813 0.494038 0.076983 -0.634388 -1.007829 -1.661569 -0.136317 1.490605 -0.208992 -0.905133 1.360782 -0.008120 -0.489296 0.964807 -0.056053 0.857537 1.511777 -1.960616 0.247586 -0.032182 -0.046583 -2.055911 -1.929374 0.030556 -0.999002 -0.991767 0.240501 -1.640821 -0.936328 -1.018642 0.600155 -1.947322 -0.597629 0.748010 2.242325 0.910843 -0.848677 0.782995 -0.584940 1.796818 0.493298 -0.048385 0.262893 1.559395 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.810859 1.684911 0.348231 -1.529971 3.677086 -0.229737 0.415698 1.447941 -1.456380 2.976186 -1.417968 0.376075 -0.488790 -2.974217 0.127669 -1.214476 -0.377114 1.190685 0.028613 1.654787 1.200469 -1.683050 0.545400 -0.336233 -1.203978 -3.219975 -0.130671 1.048513 2.301689 -0.985702 0.855588 -0.100423 2.881270 -0.587509 2.473779 2.127782 0.921992 2.031254 0.878038 -1.181464 -0.556315 1.191501 -1.552483 -2.162738 0.298719 -0.703163 -2.411513 -1.338284 1.228503 -1.726259 -0.537078 2.416237 -0.670240 -0.309100 -1.891987 1.935529 1.493112 -0.612211 3.186648 0.231578 -0.862465 -1.231355 -2.453061 2.575423 -1.275022 -0.196077 -0.638926 -2.087271 0.672222 0.482917 -0.956393 -0.686533 -0.632243 2.278067 1.581420 -2.539384 0.251926 -1.362660 -3.101450 -2.196810 -1.437152 0.863675 -0.132834 2.298624 0.412000 1.064343 0.700183 1.381435 -0.727756 -3.592255 0.501436 2.915430 -1.190631 -0.638969 -1.302131 2.634759 0.784513 0.007750 -1.348638 -0.610695 0.677321 -0.348939 1.374514 -2.211421 0.215778 -2.774631 -0.010123 -0.298174 0.663344 1.542800 0.852877 0.666879 1.468700 2.636664 -2.406307 0.502265 -2.666610 0.899237 -0.437715 0.727089 -0.871042 1.202199 0.629354 1.083965 2.673902 -3.605093 1.416836 0.096819 -0.219586 -3.000819 0.099752 -0.881652 -0.587089 -0.777517 1.407107 -0.560161 -0.300896 -1.030254 0.656268 0.660602 -1.603521 -1.061647 0.792898 2.825197 -2.579852 0.963585 -0.541317 -0.788998 -0.352911 1.353989 2.102154 2.138221 3.381039 2.387566 0.044085 2.329110 -2.777212 0.205244 3.058552 1.499269 -2.254025 2.734407 -2.196195 -0.960427 0.479706 1.830880 2.026096 1.043667 -2.611420 -2.101357 1.715974 0.603001 3.011242 0.575999 0.235192 -1.421532 2.444399 0.101420 -1.103307 3.082234 1.365997 -2.597956 1.693404 1.263015 -2.574652 -0.838244 1.697212 -2.101474 -0.264559 -0.991284 0.301933 1.660429 -1.270985 -1.088403 -0.287532 -2.281423 2.808482 -0.615158 0.017480 1.230783 -1.816818 -2.096125 2.287091 0.240606 -0.789336 -1.908240 -1.909133 -2.154488 -2.361718 0.730285 0.535572 -1.264736 -1.292714 -2.563151 -0.647839 1.737940 0.516488 1.575720 -3.601075 -0.507458 1.552566 1.464861 1.083533 -1.220287 -0.277138 0.083530 0.055711 0.581156 -0.538013 2.332023 3.049007 -1.713164 1.754947 -0.970810 -1.260065 1.359820 1.412606 -3.101814 3.365096 0.326253 2.072022 0.225934 0.893131 -1.065791 0.560419 0.439897 -0.888212 0.130373 0.527038 -1.107083 -1.108407 0.655613 -1.886431 -1.740635 -0.340115 1.116727 0.146050 0.843087 -0.003570 -1.280495 -0.956746 -1.600393 0.502309 1.741112 -0.328733 -0.949680 1.790553 0.612351 0.360933 -0.487249 0.269913 1.247781 1.483262 -3.029183 0.509952 -0.607055 0.527724 -2.149863 -2.900838 0.738688 -1.769228 -1.676210 1.253852 -3.262392 -0.024378 -1.899931 0.202053 -2.846115 -0.578549 0.631895 3.447243 0.622651 -1.029890 1.439443 -1.036967 1.518280 -0.179575 0.379325 0.719200 1.876792 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -2.007431 1.638498 0.013474 -1.475316 4.525991 -0.515820 0.491863 2.552902 -2.211817 3.368791 -1.323455 0.955298 -0.366472 -3.151234 0.220700 -0.705794 -0.132663 1.515952 0.027415 1.766601 1.283726 -1.476974 0.510857 -0.148743 -1.373514 -3.338839 0.005128 1.235872 2.661507 -1.297270 0.431454 0.107718 3.494291 -0.838660 3.093103 2.482289 1.382706 1.897162 1.354269 -2.044119 -0.604165 1.213225 -1.770679 -2.207750 0.152673 -0.680236 -2.840577 -1.193329 1.422745 -1.740455 -0.442390 2.672440 -0.827197 -0.030337 -1.847524 2.361276 1.308458 -1.213124 3.577393 0.224827 -1.445767 -1.664566 -2.468589 3.752656 -1.238812 -0.340871 -1.074259 -2.500039 0.745760 0.573037 -0.795672 -1.260990 -0.588728 2.756217 1.585367 -2.869248 0.426763 -1.322380 -2.307850 -2.837727 -1.832302 1.022771 -0.547948 2.465632 0.479556 1.222937 0.240232 1.524015 -0.949742 -4.184840 0.845493 3.280528 -1.742313 -0.551612 -1.990627 2.595146 0.865793 0.145203 -1.382552 -1.196994 0.787080 -0.620197 1.543490 -2.673748 1.240134 -2.682580 -0.472844 -0.557613 1.233143 2.329978 0.716503 0.959872 2.006205 3.065700 -2.059118 0.177972 -3.011835 1.353517 -0.853559 0.700852 -1.020420 1.412211 1.282222 1.377303 3.177355 -4.164581 1.313308 0.069604 -0.082070 -3.374787 0.073335 -1.104321 -0.638555 -1.031729 1.734511 -0.765523 -0.354275 -1.319963 1.008162 0.873233 -2.244700 -1.331263 0.715419 2.899929 -3.384605 1.083990 -0.608528 -0.759167 -0.300501 1.688745 2.510411 2.698948 3.747658 2.704753 -0.043355 2.729034 -3.431745 0.215050 3.231850 1.700770 -2.515792 3.295268 -2.841589 -1.303382 0.615597 2.347160 2.244079 0.986775 -2.799584 -2.282429 2.242153 1.054284 3.484607 0.408977 0.220786 -1.402190 2.312300 -0.184570 -1.454679 3.567450 1.234148 -3.133991 2.029764 1.333548 -2.074035 -0.770934 1.928120 -2.933225 -0.706228 -1.212141 0.368834 2.112444 -1.562475 -0.862290 0.216639 -2.479785 3.106791 -0.706120 -0.519488 1.369892 -2.142155 -1.662553 2.819527 0.518708 -0.678266 -2.127696 -2.363834 -2.279823 -2.612212 0.699695 0.501788 -1.066069 -1.277533 -2.941641 -1.073302 2.007050 0.888677 1.976285 -4.724720 -0.277132 1.850011 1.469579 1.000039 -1.809632 -0.290706 -0.007131 -0.057241 0.503376 -1.061252 2.595318 3.266174 -1.967249 1.939549 -0.759043 -1.362677 1.424447 1.258521 -3.745621 3.793151 0.632600 2.394589 0.541130 0.934077 -1.464852 0.591081 0.186213 -0.543679 -0.139643 0.582356 -1.230198 -1.264367 0.656630 -1.969073 -2.286985 -0.717013 1.232521 -0.071034 0.985766 -0.560387 -1.428188 -1.241686 -2.218300 0.784423 1.906950 -0.831863 -0.981389 2.374235 0.597621 0.183331 -0.197038 0.256553 1.502261 1.649381 -3.487083 0.390636 -0.539273 1.143550 -2.512942 -3.444357 0.740494 -1.737385 -1.826782 1.193970 -3.773321 -0.424973 -2.104803 0.071659 -3.546787 -0.699413 0.949530 4.135820 0.419148 -1.286451 1.634975 -1.206333 1.510647 -0.205251 0.737276 0.572416 1.935369 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = -5.543816 5.754518 3.032188 -5.068703 9.942001 -0.878096 1.086110 4.583791 -3.200998 8.057874 -4.841886 0.452227 -1.854407 -8.120505 0.350894 -5.487377 -1.674965 4.255800 -0.434794 5.442407 4.207320 -4.093965 1.141338 -1.812369 -3.520182 -8.378114 -0.785563 2.537090 5.523528 -1.691129 3.583699 -0.228505 8.607151 -1.415712 7.401613 6.645757 3.272627 7.192582 1.732147 -0.797284 -1.677383 4.112267 -4.569338 -6.613691 1.690801 -2.606600 -6.510933 -4.151183 3.243740 -6.031540 -0.520712 7.047197 -1.271231 -1.055548 -5.002860 5.736227 4.526767 -0.772034 8.906246 1.390595 -2.546387 -2.333510 -7.763094 5.790517 -3.890654 1.317047 -1.329371 -5.761742 1.495195 1.084409 -1.250332 -2.952710 -2.478371 6.161341 3.933450 -7.049196 1.415308 -4.228057 -9.134558 -5.713123 -4.117052 2.321996 0.237680 6.438230 0.364771 2.633235 0.887147 3.944519 -1.860538 -9.954250 0.639937 8.835450 -3.250770 -1.757855 -5.155196 6.809347 2.361458 0.317231 -4.161949 -1.639555 2.616897 -0.155173 3.983195 -6.110094 -1.148266 -8.086071 0.633650 0.494424 0.564095 4.591511 1.192341 3.011521 4.336914 7.479280 -6.990354 3.170601 -8.569598 2.219775 -1.612668 2.409821 -1.671662 3.095605 1.130303 3.231364 6.709484 -10.022303 4.893415 0.473896 -1.676177 -8.385209 1.262707 -2.611412 -2.209326 -2.788442 4.230175 -0.496999 -1.309471 -2.867771 1.671499 1.121935 -2.913400 -5.065734 2.071725 7.523280 -6.819454 2.276915 -2.001170 -2.497798 -1.177099 3.718183 5.655280 5.144789 9.827824 6.693650 0.450418 5.319270 -7.588650 -0.164210 8.233726 4.628737 -6.731401 7.470955 -5.096122 -2.525769 1.586239 4.913487 5.016699 4.724706 -7.870475 -7.070824 3.327987 0.489111 8.592623 2.752309 0.509821 -5.355730 7.378697 -1.100797 -3.841339 9.493916 5.385477 -6.792110 2.388714 3.358535 -7.226693 -4.063147 4.749303 -5.403164 -0.887040 -1.838172 0.592920 3.997717 -3.660721 -4.528311 -0.622083 -7.013617 7.918325 -1.771014 0.215315 2.378807 -6.095275 -7.295043 6.709566 0.581312 -3.415633 -5.083490 -5.097205 -5.022930 -7.155848 2.816947 2.461958 -2.913892 -5.183971 -6.926029 -0.656394 4.587147 0.331564 3.418589 -9.007838 -3.367066 4.474261 2.589552 4.227046 -5.038220 -1.211187 -1.048534 0.893640 2.847376 -0.426448 6.519138 10.682622 -4.727878 4.948288 -1.251298 -4.402774 2.892015 5.620295 -8.924660 9.667255 0.496600 5.857090 0.125826 2.547228 -3.359201 0.912412 1.757955 -2.200318 0.828685 2.061756 -2.755218 -2.716166 0.436113 -6.261805 -3.318053 0.047512 3.126227 -0.713574 2.310854 1.420499 -3.994189 -2.954297 -4.488653 0.199196 5.808697 -0.491226 -3.474399 4.469218 1.284409 0.263840 -1.140216 0.760658 3.434052 4.815502 -8.555676 1.998272 -1.718207 -0.206307 -6.958322 -8.006803 1.960853 -5.775093 -5.298226 3.108911 -8.267980 -0.313853 -5.394364 1.403238 -7.779216 -2.794075 2.036751 9.315819 2.916235 -2.806773 4.052969 -2.924434 6.027905 0.245117 0.225287 1.897718 6.304002 +PE-benchmarks/union-find.cpp__main = -2.674886 1.524806 -0.478925 -2.006306 5.235462 -1.826764 0.469012 3.070986 -1.197704 3.198446 -2.107235 0.318363 -0.723972 -3.908022 0.653918 -0.445204 0.393311 2.997333 -0.434542 1.989620 2.164876 -0.925300 0.232593 -0.919348 -1.299005 -2.572287 -0.279119 1.280837 1.898164 -1.789193 -0.095036 1.008126 4.851354 -0.627980 4.156726 3.506557 2.178902 3.515313 1.617453 -1.485832 -0.045437 2.010402 -1.851764 -3.515848 0.963483 -0.962979 -2.894833 -1.828923 1.741010 -2.010413 1.853914 3.193761 -0.401981 -0.033016 -2.613198 2.233617 1.976367 -0.453348 4.109435 1.118926 -1.900435 -0.177233 -2.750930 4.005562 -2.212940 0.722102 -0.647426 -3.204190 0.148066 1.059914 1.369705 -3.239278 -2.262757 2.203056 1.094310 -3.018945 1.296852 -1.087168 -0.184396 -3.618198 -3.135685 1.110178 -1.240063 3.038856 -0.191865 0.948071 -1.506005 1.241554 -0.349729 -4.169062 0.148041 3.344068 -2.237273 0.329835 -2.562800 2.345288 1.026146 -0.117148 -1.969235 -2.135291 1.231538 -0.814814 1.893349 -0.822029 1.236793 -1.985657 0.010524 0.065515 0.666474 2.902999 1.214938 1.715204 2.318902 2.751946 -1.180283 0.150792 -4.521785 1.658996 -1.122163 0.776977 -0.533568 1.471434 1.867020 0.865551 2.947317 -4.604972 2.252970 0.367519 -0.417302 -3.100533 0.997379 -0.884790 -1.427685 -1.797739 2.772454 -0.159682 -0.744791 -0.989121 1.281478 0.691053 -2.262515 -2.025954 -0.085069 2.787194 -3.445352 0.918266 -1.191109 -1.696072 -0.295938 1.457414 2.197790 2.715452 4.427358 3.339185 -0.676211 1.727107 -4.303284 0.269519 3.843937 1.681863 -3.199108 3.387079 -2.512233 -1.021114 1.323942 2.928826 2.083836 1.021729 -2.369472 -2.158846 1.541524 0.439723 4.080867 0.202752 0.528832 -2.492199 1.962157 0.191124 -1.620445 5.647302 1.325475 -3.853019 1.242517 2.121109 -1.292090 -1.833667 1.846325 -2.883483 -1.252384 -1.515868 1.239587 2.171467 -2.582490 -1.676039 0.576512 -3.135220 3.060924 -0.845246 -1.618778 1.088270 -3.673656 -1.151979 4.528870 0.628216 -0.938608 -2.050532 -3.021384 -0.768784 -3.826611 1.246302 0.797717 -0.487191 -1.770528 -3.060443 -0.690856 3.285386 0.058469 1.372806 -4.521424 -0.745053 2.249836 0.694149 1.219878 -3.453188 -0.799354 0.156924 0.643183 0.890305 -0.875444 1.995216 4.637279 -2.805816 1.140482 1.599637 -0.986333 1.277761 2.545474 -4.222774 4.480581 0.323505 2.822014 0.452011 1.207569 -2.159370 -0.003759 0.207492 0.856687 -0.730560 0.967733 -1.637089 -1.099132 0.542792 -2.094169 -2.325820 0.061754 1.970367 -0.198198 0.975959 -0.763032 -1.335319 -1.167223 -2.233824 0.714428 2.840450 -0.610640 -1.873304 2.333488 1.032354 -0.827558 0.451216 0.450354 1.529219 3.055840 -4.090084 1.129105 -0.356734 1.050243 -3.131932 -4.096390 1.004625 -2.126819 -1.540323 1.542494 -4.135859 -1.565555 -2.290780 1.326938 -3.716840 -0.305408 0.714359 4.289143 1.438497 -1.113830 2.167830 -1.102693 2.270946 -0.026576 -0.015180 0.411374 3.107079 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -6.480790 7.225032 3.853570 -4.556750 13.957378 -0.659416 -0.794720 5.329732 -6.102011 12.488565 -3.910520 -1.243646 -3.329920 -11.966696 0.207864 -6.374305 -2.817359 3.681811 1.176590 7.860359 4.471061 -8.057949 0.845839 0.428313 -4.771175 -10.999580 -2.019316 4.047046 13.487223 -8.923158 0.440538 -0.904904 12.924841 -2.794044 10.927329 8.752244 4.039230 7.386654 3.146167 -8.237094 -5.758814 5.535199 -8.050945 -4.670899 0.478370 -3.036110 -7.946631 -2.798904 4.768640 0.457455 -3.309160 10.299598 -4.045843 0.644052 -7.381914 9.203616 1.798875 1.110432 13.585311 0.054990 0.644930 -4.337636 -13.467232 8.427801 -4.183953 -0.428743 -6.185209 -5.107734 4.935915 -2.836450 -2.773511 -6.827248 -0.674129 13.425145 6.264953 -10.418163 0.735770 -6.281811 -15.394020 -11.953627 -10.166794 3.547790 -1.025938 8.811962 1.813172 4.681837 1.921633 8.414786 -5.108989 -17.211929 4.620561 11.558974 -5.290527 -4.242708 -4.394216 11.761103 1.582338 2.850566 -6.231232 -1.934092 3.328996 -2.351274 5.781116 -13.191565 8.203637 -12.956707 -0.126795 -4.041958 3.142322 3.309657 7.296255 1.444169 9.003109 13.965306 -11.489757 -2.781044 -10.853794 1.000637 -1.449932 3.002328 -2.719020 7.495801 -1.731249 4.304280 12.074434 -18.174800 1.593956 -1.359573 -1.924270 -13.978538 -1.070217 -6.181525 -2.405103 -3.957468 5.183941 -1.607943 -1.620171 -6.093191 2.508992 3.347379 -6.077786 -2.810960 6.078192 14.185204 -11.317614 3.277943 -2.141509 -3.611787 -1.947608 6.453778 10.744591 10.455110 14.117411 9.935522 0.386515 6.997204 -12.089992 -1.424965 8.600285 2.163116 -9.320121 13.038487 -9.134649 -4.730642 0.756309 10.930862 9.804667 2.503577 -10.808724 -10.533191 8.232209 4.683303 11.724005 -2.000973 0.205743 1.442805 11.264896 0.053053 -9.963084 11.365911 3.602999 -6.841835 4.618096 1.956539 -6.529212 -3.774202 8.975701 -10.184578 2.588255 -3.677311 -0.437009 6.489831 -3.458685 -0.818657 0.122387 -9.025542 12.731330 -2.947438 0.268344 6.896323 -7.311775 -11.940861 8.495158 -1.853722 -3.626679 -9.817872 -9.478908 -8.052142 -6.580019 3.897791 0.324993 -4.148981 -6.212150 -10.828844 -1.034605 7.852891 4.482455 8.182654 -15.244285 -4.495640 5.128567 5.375887 8.293546 -0.866729 -0.727037 0.438701 -0.428711 2.895640 -1.984843 11.505649 15.730929 -6.293876 6.458673 -6.194469 -4.902101 4.694816 4.631811 -15.074631 13.104026 2.987700 7.744893 -0.645837 2.562629 -4.385420 1.779395 4.701218 -1.251524 3.085585 -0.168755 0.014004 -4.245222 -2.124498 -9.689273 -6.850118 -4.339489 1.845277 -3.509804 4.658641 -0.360468 -5.014083 -4.109148 -6.100324 2.047622 7.110025 0.680200 0.580828 8.916072 -0.915192 5.323267 5.362152 0.294009 3.105840 4.819854 -12.169716 -2.378781 -3.692255 4.241431 -4.970182 -13.975644 -1.098359 -6.379911 -4.568008 6.460668 -12.598885 1.236779 -8.210406 -2.398753 -11.433907 -0.846819 3.781277 14.637471 5.634453 -7.106216 3.807728 -4.961957 6.990038 -0.532005 -0.493737 3.131059 6.191508 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -1.913202 1.861400 0.842419 -1.159842 4.235375 -0.377243 -0.102384 2.524384 -1.985875 3.457933 -1.061536 0.270340 -0.743064 -3.184585 0.171003 -1.219144 -0.539696 1.335682 0.187502 1.909943 1.378863 -1.709047 0.134681 0.085853 -1.332155 -3.059440 -0.330148 1.081756 3.400809 -1.995041 -0.015842 0.018346 3.679124 -0.771957 3.287441 2.551299 1.544013 1.936193 1.024951 -2.019600 -1.456054 1.522736 -2.176874 -1.602692 0.246853 -0.896396 -2.320223 -0.735636 1.342121 -0.451244 -0.523683 2.796361 -1.028575 0.372520 -1.654928 2.536876 0.464346 -0.248656 3.696360 0.219417 -0.616453 -1.490596 -3.400790 3.070673 -1.099088 0.010740 -1.573464 -1.901303 1.093989 -0.514807 -0.519520 -1.935493 -0.133308 3.588625 1.482738 -2.835820 0.466610 -1.519518 -3.145300 -3.203841 -2.743445 0.973449 -0.466691 2.446339 0.388682 1.175764 0.095342 2.047040 -1.343317 -4.727487 1.212811 3.285399 -1.840238 -0.755981 -1.890681 2.691307 0.480481 0.891594 -1.488225 -0.930837 1.029740 -0.525462 1.570630 -3.397204 2.184279 -3.131071 -0.139283 -1.077589 1.103383 1.504082 1.406432 0.636710 2.465578 3.794545 -2.549809 -0.423035 -3.039729 0.830654 -0.680351 0.905519 -0.778833 1.863511 0.324911 1.228903 3.335476 -4.804671 0.563270 -0.247982 -0.387338 -3.771559 -0.096259 -1.804722 -0.779799 -1.278340 1.700116 -0.461984 -0.566957 -1.749942 0.912152 0.892686 -2.088094 -1.322193 1.196800 3.377846 -3.525279 0.835726 -0.721765 -0.937875 -0.546420 1.866886 2.885650 3.006792 3.831530 2.790691 0.065373 2.040700 -3.518781 -0.297924 2.597257 1.012158 -2.641884 3.558023 -2.762717 -1.308386 0.476329 2.857700 2.527409 0.982499 -2.835329 -2.683870 2.267385 1.360678 3.470099 -0.064387 0.200223 -0.134112 2.636853 -0.372255 -2.728709 3.442106 1.123826 -2.441479 1.421052 0.573379 -1.486014 -0.930453 2.285720 -3.071541 0.176225 -1.105665 -0.001366 1.995689 -1.311850 -0.355007 0.515912 -2.584220 3.475856 -0.759642 0.052938 1.738972 -2.271714 -2.616060 2.665064 -0.060994 -0.992904 -2.609787 -2.558713 -2.297242 -1.975388 1.007429 0.222738 -0.915784 -1.735179 -3.064048 -0.594487 2.253890 1.212865 2.179606 -4.573268 -1.024070 1.561603 1.043184 1.990118 -1.161925 -0.327751 -0.234759 -0.156766 0.904636 -0.813431 2.964693 4.262183 -1.824420 1.919201 -1.056387 -1.367456 1.079597 1.283101 -4.150225 3.643367 0.787081 2.079512 0.098025 0.827644 -1.548455 0.403659 0.858273 -0.089084 0.522517 0.272390 -0.200710 -1.098311 -0.398127 -2.762019 -1.895753 -1.128820 0.604032 -0.749070 1.198483 -0.387873 -1.556137 -1.223854 -2.110951 0.578764 2.114396 -0.304990 -0.264797 2.528599 -0.302035 0.865752 0.980451 0.199610 1.019225 1.529977 -3.423216 -0.514326 -0.724725 1.177991 -1.877901 -3.808302 -0.253347 -1.740175 -1.567185 1.507050 -3.599290 0.058252 -2.226007 -0.497363 -3.578515 -0.530961 1.024617 4.194095 1.189532 -1.773918 1.343582 -1.251924 1.975927 -0.001248 0.196407 0.652337 1.867743 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -7.427088 8.584967 5.524530 -5.384786 16.234150 0.201577 -0.161904 6.218397 -8.046718 14.218939 -4.709905 -1.088085 -3.520214 -13.534581 0.293415 -8.169513 -3.407907 4.114328 1.262635 9.150798 5.098880 -8.942138 1.276716 0.023314 -5.499354 -12.514520 -2.217117 4.412382 15.139094 -8.207703 1.901471 -1.303114 13.833950 -3.082816 12.432633 9.765151 3.866091 8.190877 2.723305 -9.143760 -6.099236 6.055069 -8.933214 -6.283170 0.596248 -3.673466 -9.515907 -4.044161 5.417247 -1.244055 -5.574877 11.633117 -4.217166 0.427956 -7.930723 10.600184 2.755366 0.504696 15.415733 0.151858 -0.052227 -5.122360 -15.118652 8.953019 -4.396913 -0.242032 -7.226649 -6.450621 4.960847 -2.434629 -4.759906 -6.382521 -0.299319 14.863808 7.369456 -11.638427 0.809736 -7.013177 -18.206601 -12.827349 -10.149766 3.988718 -0.546983 10.001903 2.077490 5.280044 3.861612 9.399073 -5.370194 -19.320359 4.832093 13.412712 -5.896433 -5.328772 -4.525742 12.906063 1.842607 3.367732 -6.905305 -1.318272 3.801755 -1.969909 6.528747 -15.302617 7.912047 -14.973174 -0.214056 -3.816807 3.513883 4.324417 7.575204 1.922118 9.776609 15.557895 -13.495803 -1.361355 -11.876626 1.495432 -2.905983 3.652251 -3.476639 8.478066 -1.189720 5.282037 13.700115 -20.293503 2.530709 -1.193223 -1.788040 -15.929912 -0.794324 -6.983758 -2.616927 -4.160173 5.726183 -2.053064 -1.868316 -6.603785 2.694108 3.658471 -6.762883 -3.173515 6.772171 15.690525 -12.818486 3.888627 -2.375654 -3.812129 -2.219212 7.154630 12.057625 11.585738 16.086950 11.224764 0.223517 8.185822 -13.098920 -1.093753 10.450880 2.393612 -10.374083 14.555630 -10.306706 -5.298792 0.856913 10.821160 10.954441 4.284119 -12.972604 -12.423376 9.397107 4.940260 13.240044 -0.609327 0.366209 0.148818 12.886976 -1.249944 -10.523510 12.570618 4.427156 -8.560388 5.779221 2.635004 -9.440230 -4.195748 10.024238 -11.378431 2.406122 -4.238126 -0.649982 7.147187 -4.205643 -2.015852 -0.110043 -10.274627 14.416439 -3.014121 0.782366 7.207251 -7.618441 -13.547024 9.505037 -1.127930 -4.353300 -10.935328 -10.204311 -9.839172 -7.695029 4.332011 0.932583 -4.934681 -7.267038 -12.140746 -1.547576 8.024150 4.733711 8.968064 -17.117439 -4.458771 5.701174 6.315085 9.189841 -1.409121 -0.841573 -0.119542 -1.041874 3.188851 -2.229257 13.015587 17.389019 -7.148258 8.113400 -7.537136 -6.635316 5.267646 5.421722 -16.760506 14.774846 3.164040 9.935576 -0.558731 3.413683 -4.889117 2.316691 4.969102 -3.250970 3.435342 0.493295 -0.630890 -4.927086 -1.621387 -10.825945 -7.788702 -4.421859 2.226823 -3.476213 4.844580 0.338613 -6.277235 -4.512080 -7.137712 2.153238 8.068042 -0.202133 -0.416833 9.612592 -0.486979 5.502656 3.261994 0.577839 3.694039 5.392044 -13.824208 -2.017467 -4.082360 3.801260 -6.461989 -14.757589 -0.717781 -7.586267 -5.594098 6.844365 -13.843511 2.047348 -9.294438 -2.380618 -12.785235 -2.446658 4.177177 16.623275 5.515801 -7.578856 4.656800 -5.547658 7.903817 -0.237105 -0.098469 3.358374 7.075480 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.144032 0.786171 -0.245114 -0.787411 3.037345 -0.876256 0.208366 1.626559 -1.504563 2.235573 -0.611772 0.235108 -0.382477 -2.493407 0.277667 -0.018700 0.198128 1.276527 0.242921 1.184601 0.763863 -1.205621 0.287137 -0.017404 -0.689379 -2.028335 -0.011951 0.826395 2.088859 -1.434729 0.010184 0.276926 2.518816 -0.378164 2.105628 1.519854 0.599615 1.218513 1.367983 -2.103384 -0.415801 0.790852 -1.002140 -1.381258 0.178330 -0.224572 -1.544982 -0.924284 0.890747 -0.608768 -0.325485 1.631327 -0.522403 0.063982 -1.515680 1.499642 0.994296 -0.418396 2.236081 0.157942 -0.377157 -0.968469 -1.733107 1.978621 -0.900618 -0.709710 -0.883406 -1.330375 0.661206 0.322689 -0.354082 -1.134822 -0.232479 1.917084 1.047831 -1.679957 0.295526 -0.594702 -1.348329 -2.417087 -1.663635 0.556150 -0.679626 1.661095 0.226283 0.716834 0.054659 0.952064 -0.458907 -2.758431 0.569307 1.819461 -0.944685 -0.625368 -0.649638 1.988629 0.672497 -0.019723 -0.894103 -1.104446 0.379314 -0.778060 0.983485 -1.523914 1.505001 -1.461949 -0.425648 -0.728866 0.807537 1.774053 1.322567 0.493490 1.254584 2.031496 -1.470090 -0.685366 -2.070916 0.792102 -0.539230 0.359643 -0.559574 1.090149 0.775783 0.658362 1.947402 -3.282334 0.669831 0.139493 0.343520 -2.201729 0.058700 -0.533850 -0.364081 -0.701221 1.194089 -0.552224 -0.171262 -0.661316 0.571567 0.734994 -1.484915 -0.459481 0.441509 2.769311 -2.581877 0.690920 -0.397740 -0.719628 -0.061882 0.685126 1.597841 1.714327 2.288756 1.701467 -0.398951 1.692480 -2.451226 0.208134 2.021770 0.521601 -1.382339 2.302884 -1.506242 -0.775662 0.410957 1.858578 1.586320 -0.253799 -1.709593 -1.472167 1.893684 0.731280 1.969836 -0.567892 0.123472 -0.879260 1.526262 0.635690 -1.014797 2.574292 0.200870 -1.781487 1.502301 0.904076 -1.260770 -0.362762 1.147282 -1.882834 -0.227225 -0.979404 0.443135 1.354610 -1.032471 -0.351551 -0.073487 -1.385887 1.934498 -0.494000 -0.794564 1.016123 -1.171531 -0.666183 2.117867 0.262429 -0.173166 -1.420564 -1.968591 -1.455954 -1.591394 0.448460 -0.077675 -0.688986 -0.471534 -1.703714 -0.758186 1.754475 0.635315 1.114761 -3.493738 0.176709 1.072161 1.250858 0.640080 -1.019756 -0.183758 0.588253 -0.086115 0.015473 -0.546783 1.720338 2.251201 -1.348725 0.775110 -0.263994 -0.345214 1.268205 0.612121 -2.675348 2.261328 0.331429 2.104407 0.294207 0.493607 -0.847150 0.320216 0.226804 -0.065964 -0.258414 0.138798 -0.732968 -0.758161 0.491155 -1.110736 -1.976827 -0.529431 0.825969 0.018925 0.646473 -0.741974 -0.753993 -0.492407 -1.255845 0.684755 1.114093 -0.213636 -0.454177 1.441165 0.572938 0.447249 0.099034 0.113234 0.807830 0.968204 -2.102121 0.231234 -0.414230 1.262965 -0.975802 -2.538535 0.725108 -0.960610 -0.831792 1.022498 -2.720741 -0.456947 -1.233158 0.125002 -2.729652 0.478137 0.390926 2.709344 0.229253 -0.835058 0.925560 -0.687482 0.656530 -0.343399 0.368539 0.297689 1.189031 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -2.349166 1.815838 1.223555 -1.687837 4.942947 -0.220264 -0.085713 2.212974 -0.891567 3.568094 -2.011780 -0.815128 -1.167047 -3.451566 0.205207 -1.836550 -0.660645 1.705759 -0.603477 1.587830 1.831730 -1.321937 0.417230 -0.598521 -1.260334 -2.739743 -1.015298 1.015263 2.817738 -1.424518 -0.098720 -0.020969 4.021573 -0.616165 3.417800 2.664990 1.689330 3.097299 0.125460 -0.536146 -0.727387 2.005472 -2.243421 -2.729893 0.856426 -1.623441 -2.634279 -1.481215 1.640525 -1.498285 0.509772 3.036294 -0.676844 -0.111646 -1.779625 2.498391 0.989666 0.567432 4.125868 0.682555 -1.188993 -0.517440 -4.081526 2.582778 -1.636791 1.576356 -1.315580 -2.872865 -0.098483 -0.004843 0.292772 -2.423966 -1.273059 3.056150 1.501768 -2.673292 0.812955 -1.570348 -2.623828 -2.889355 -3.069495 0.990541 -0.589731 2.671671 0.033074 0.940167 -0.007329 1.795193 -0.806123 -4.652013 0.395272 3.732550 -1.807115 -0.099426 -2.017208 1.900217 0.135378 0.715820 -1.921211 -0.759078 1.104242 0.090886 1.639673 -2.522658 1.133990 -3.421565 0.933023 0.113304 0.606550 0.857951 1.600697 0.587880 2.121370 3.562984 -2.690753 0.507954 -3.582201 0.786940 -0.912018 1.098846 -0.840676 1.972237 0.273591 0.946161 3.258996 -4.867146 1.550761 -0.163057 -1.257322 -3.562688 0.442992 -1.669851 -1.381998 -1.113677 1.961815 -0.137318 -0.825166 -1.479421 0.824169 0.326399 -2.007761 -1.293829 0.844869 2.827153 -2.956047 0.692903 -0.914552 -1.448094 -0.645200 1.989744 2.727551 2.716618 4.372133 3.079312 -0.191408 0.821847 -3.721562 0.204949 3.393602 0.646927 -3.143934 3.287238 -2.409688 -0.571551 0.921754 2.472762 2.292354 1.888420 -2.385269 -2.307981 1.048523 0.780168 3.848251 1.057902 0.729218 -1.182581 2.341950 -1.031741 -2.150701 4.277269 1.944831 -3.048632 0.821623 1.223488 -2.024396 -1.559564 2.134250 -2.528742 0.074361 -1.376288 0.333957 1.968590 -1.835693 -1.418241 0.524988 -3.097549 3.898802 -0.719298 0.054544 1.597799 -3.110245 -2.936360 3.469001 -0.016699 -1.289228 -2.353983 -2.543606 -1.908979 -2.798621 1.298915 0.841558 -1.102387 -2.257093 -3.104519 -0.041965 2.786528 0.462270 1.922435 -3.443526 -1.283618 1.614209 0.377490 2.635785 -1.762129 -0.643124 -0.640424 -0.297520 1.461630 -0.686100 2.287383 4.857046 -2.208455 2.142883 0.026754 -1.556674 0.554615 2.187532 -3.768958 3.998993 0.364438 2.194763 -0.304381 1.392218 -1.469550 0.398199 0.864413 -0.111004 0.446656 1.056514 -0.800022 -1.078809 -0.212359 -3.300660 -1.654321 -0.219688 1.015190 -0.398323 1.021516 -0.023237 -1.990302 -1.041970 -1.752623 0.343392 2.608713 -0.301513 -1.318006 1.915330 -0.051814 -0.120033 0.118806 0.511242 0.882178 2.398125 -3.667595 0.033969 -0.466031 0.392684 -2.713728 -3.398435 -0.529197 -2.247930 -1.667938 1.819764 -3.512070 -0.314938 -2.412251 0.276169 -3.054815 -0.985147 0.744809 4.248941 2.044671 -1.463607 1.813791 -0.908967 2.558133 0.224829 -0.546455 0.986117 2.389796 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.788634 0.518035 -0.545017 -0.619918 1.977790 -0.653253 0.147338 1.415204 -0.842854 1.064310 -0.725488 0.914160 0.010592 -1.295084 0.196232 0.548057 0.289943 0.977643 -0.112017 0.419300 0.510097 -0.286560 0.184778 -0.322820 -0.481413 -1.130976 0.243735 0.435660 0.527922 -0.407729 -0.251213 0.341485 1.471189 -0.305497 0.995184 0.894871 0.674222 0.965813 0.948481 -0.968620 0.334070 0.379100 -0.352873 -1.124920 0.237642 -0.299884 -0.923844 -0.509702 0.560949 -0.923695 0.499511 0.778664 0.009771 -0.160918 -0.950032 0.772129 0.898264 -0.706143 1.238613 0.286601 -0.811021 -0.610201 -0.476209 1.647530 -0.787948 -0.198202 -0.066975 -1.007227 0.031913 0.809595 0.355700 -0.870866 -0.587356 0.327269 0.205347 -0.958069 0.314750 -0.166195 0.330801 -1.224966 -0.661341 0.332870 -0.590416 0.882902 -0.006405 0.302272 -0.610604 0.155620 0.059688 -1.065046 -0.157285 0.933066 -0.631135 0.237999 -0.801264 0.887723 0.484606 -0.381052 -0.423193 -0.865122 0.257540 -0.193431 0.465723 -0.573781 0.570119 -0.469437 -0.050684 -0.106281 0.298130 1.145644 0.039320 0.565956 0.410569 0.603419 -0.114046 -0.101254 -1.659061 0.568035 -0.118530 0.126950 -0.369554 0.166248 0.874424 0.301878 0.866110 -1.411917 0.974571 0.145276 0.109907 -0.922689 0.338529 0.131028 -0.313176 -0.368415 0.787904 -0.205714 -0.096464 -0.119025 0.529083 0.226295 -1.208791 -0.787916 -0.159932 1.264157 -1.562064 0.360009 -0.265059 -0.332308 -0.006158 0.288785 0.585500 0.644905 1.251375 0.882187 -0.142340 1.129295 -1.440973 0.305179 1.402166 0.992311 -0.866268 0.960278 -0.860223 -0.320991 0.462545 0.753777 0.483325 0.173685 -0.805688 -0.671384 0.836788 0.064246 1.228689 -0.005450 0.252063 -1.045438 0.603394 0.189613 0.008924 1.726655 0.320959 -1.427478 0.906512 0.911024 -0.240343 -0.211225 0.385125 -0.921351 -0.660675 -0.409229 0.415847 0.777293 -0.858811 -0.587423 -0.078650 -0.781639 0.905933 -0.215547 -0.657715 0.265253 -0.863165 0.345830 1.310948 0.315622 -0.064548 -0.445011 -0.915912 -0.709615 -1.354016 0.105196 0.302925 -0.423728 -0.263086 -0.932991 -0.556035 1.054247 -0.132069 0.211894 -2.086895 0.114969 0.788473 0.559297 -0.046498 -1.282576 -0.137943 0.223415 0.172503 0.107914 -0.575517 0.726199 1.054313 -0.836929 0.536262 0.457735 0.063091 0.626334 0.714083 -1.083927 1.287124 0.078377 1.206769 0.381496 0.366484 -0.615467 0.105872 -0.312310 0.220930 -0.474115 0.312090 -0.920986 -0.390086 0.535604 -0.392365 -1.003939 0.178359 0.846381 0.351481 0.144304 -0.437853 -0.145733 -0.370688 -0.935074 0.275981 0.629058 -0.532026 -0.776599 0.656440 0.655225 -0.507322 -0.021502 0.147483 0.719704 0.818954 -1.121499 0.603647 -0.016066 0.494720 -1.198716 -1.401725 0.586416 -0.422443 -0.674273 0.439451 -1.711179 -0.820190 -0.501991 0.658033 -1.674942 0.105595 0.138961 1.287137 -0.093512 -0.092329 0.789774 -0.292254 0.373753 -0.133987 0.387784 -0.022213 0.826852 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.590713 0.641426 0.286503 -0.571768 1.786105 -0.505656 0.111591 0.598385 -0.271258 0.803783 -0.689459 -0.058965 -0.109277 -1.190672 0.263353 -0.553796 -0.035526 0.775419 -0.006283 0.559179 0.410704 -0.327746 0.016306 -0.174130 -0.295639 -1.338349 -0.330213 0.427741 0.573399 -0.581619 0.180083 0.255472 1.325608 -0.206463 1.094406 0.950236 0.363103 0.807644 0.427828 -0.421498 0.108642 0.387832 -0.522636 -0.947153 0.040563 -0.113116 -1.159854 -0.551515 0.384928 -0.559451 0.028492 0.843393 -0.173493 -0.011286 -0.682437 0.838522 0.670173 0.345092 0.952156 0.290265 -0.350061 0.021476 -0.903643 0.879229 -0.508087 0.161850 -0.563694 -0.967320 0.066314 0.353187 0.082286 -0.559306 -0.479590 0.619816 0.499267 -0.713087 0.304660 -0.331122 -0.818024 -0.871841 -0.815574 0.488874 -0.376539 0.836934 0.088865 0.263102 -0.176937 0.355036 -0.152212 -1.048611 0.028922 1.173981 -0.503466 -0.297523 -0.173121 0.925151 0.600794 -0.021607 -0.226396 -0.703111 0.333350 -0.381262 0.448454 0.012814 0.405473 -0.786571 -0.015527 0.142147 0.278569 1.069596 0.224179 0.444112 0.628233 0.657675 -0.789988 0.073785 -1.433201 0.487198 -0.717484 0.153753 -0.247161 0.464726 0.411355 0.647694 0.738475 -1.246726 0.732689 0.161872 0.004891 -0.596069 0.168997 -0.275720 -0.392937 -0.383911 0.544119 0.014984 -0.128791 -0.167260 0.201715 0.210101 -0.252708 -0.316707 0.027551 1.052180 -1.128624 0.266424 -0.157783 -0.331791 -0.116902 0.443437 0.699471 0.791836 1.464678 0.856441 -0.242645 0.325811 -1.277214 0.136371 1.333323 0.023613 -0.655860 0.959632 -0.467943 -0.363917 0.195701 0.968747 0.523891 0.337498 -0.775471 -0.761739 0.013951 0.125505 1.015253 0.303774 -0.063367 -0.843598 0.763775 0.043570 -0.481990 1.554992 0.417710 -0.885764 0.121476 0.675507 -0.982787 -0.609119 0.545905 -0.798395 -0.085970 -0.494516 0.248108 0.615254 -0.575123 -0.620299 0.131023 -0.763924 0.704036 -0.216161 -0.535504 0.255466 -0.597211 -0.765237 1.439504 0.202375 -0.108395 -0.575726 -0.904077 -0.310631 -0.873829 0.237918 0.161926 -0.244324 -0.290688 -0.715433 -0.184412 0.925212 -0.064442 0.555425 -1.261390 -0.178032 0.512371 0.575445 0.265494 -0.720045 -0.160516 0.058308 -0.171385 -0.050128 -0.145511 0.798596 1.426000 -0.611807 0.509208 0.232578 -0.678829 0.378462 0.925996 -1.061073 1.236789 -0.013909 1.023235 0.219071 0.314239 -0.491393 -0.031425 0.124064 -0.400754 -0.230705 0.294044 -0.426436 -0.268333 0.352423 -0.454285 -0.867621 -0.010799 0.563993 -0.023535 0.227217 -0.218459 -0.638112 -0.161027 -0.284617 0.329277 0.622134 -0.075123 -0.559486 0.663402 0.472583 -0.111397 -0.491921 0.067022 0.327367 0.698313 -1.078836 0.341442 -0.024368 0.644208 -1.027666 -1.052295 0.297177 -0.718894 -0.408756 0.159573 -1.147683 -0.501231 -0.664048 0.175878 -1.008929 -0.244656 0.449822 1.154908 0.383367 -0.536334 0.386523 -0.363590 0.431639 -0.004631 -0.059570 0.138020 0.765943 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.805187 0.679081 0.068837 -0.657951 1.959232 -0.788448 0.232235 0.290773 -0.364556 0.862639 -0.865423 -0.402581 -0.323790 -1.740436 0.413238 -0.772158 0.161831 0.884522 0.052872 0.989845 0.598702 -0.750938 0.124150 -0.524309 -0.295187 -1.580150 -0.199476 0.407469 0.913155 -0.651315 0.206308 0.296146 1.671389 -0.114671 1.253016 1.144536 0.157718 1.114052 0.557722 -1.191794 0.029545 0.659396 -0.648075 -1.264571 -0.013804 -0.141141 -1.258893 -0.696701 0.487238 -0.440883 -0.425438 1.060940 -0.118408 -0.050679 -1.267796 0.826610 1.241414 0.667808 1.196607 0.312465 0.133063 0.035104 -1.011413 0.671882 -0.736287 -0.175838 -0.571751 -0.849524 0.198013 0.429646 -0.313715 -0.513257 -0.666643 0.613280 0.889500 -0.968204 0.390928 -0.254734 -1.303627 -1.155418 -1.076317 0.499178 -0.593044 1.198499 0.096495 0.452230 0.093940 0.468392 0.192353 -1.208634 -0.093536 1.160661 -0.454593 -0.645795 0.235245 1.565538 0.924199 -0.146027 -0.459235 -0.816310 0.317891 -0.612077 0.601155 -0.106289 0.419098 -1.018796 -0.008163 -0.014790 0.236826 1.474297 0.483713 0.535023 0.510029 0.674625 -1.129352 -0.213978 -1.664738 0.268153 -0.987932 0.221898 -0.299571 0.569905 0.519856 0.618945 0.787691 -1.674554 1.032246 0.411428 0.341304 -0.715149 0.290559 -0.202915 -0.381266 -0.464318 0.768568 -0.094394 -0.046655 -0.061826 0.324080 0.371415 -0.186405 0.146855 0.034948 1.621542 -1.362885 0.429441 -0.249305 -0.534681 -0.072797 0.202259 0.569220 0.828426 1.535318 1.112740 -0.682963 0.697375 -1.316626 0.282529 1.846500 -0.279232 -0.787497 1.065844 -0.476350 -0.425196 0.159675 1.001904 0.834714 0.228157 -1.047522 -0.980929 0.082367 -0.017448 1.170482 0.071826 -0.021535 -1.195171 1.248551 0.249729 -0.397897 1.845295 0.401118 -1.082193 0.400992 1.080268 -1.825024 -0.739404 0.497208 -0.763367 0.254619 -0.934502 0.498087 0.620475 -0.746408 -0.749636 -0.209407 -0.970037 0.707391 -0.166409 -0.717787 0.280005 -0.496803 -0.812583 1.792494 0.220928 -0.129824 -0.932327 -1.253121 -0.681729 -1.279003 0.392241 -0.189826 -0.380816 -0.268857 -0.885394 -0.347713 1.208375 -0.167157 0.516458 -1.753841 0.021782 0.431168 1.258688 0.326686 -0.407400 -0.211608 0.441958 -0.168855 -0.156496 -0.088521 0.906922 1.650156 -0.925287 0.402656 -0.179448 -0.888534 0.814574 1.208084 -1.252430 1.339000 -0.045572 1.639374 0.149966 0.506527 -0.549328 0.077438 0.292387 -0.823062 -0.271335 0.261136 -0.645221 -0.465982 0.747791 -0.166764 -1.329469 0.006689 0.712608 0.302442 0.201957 -0.184920 -0.692250 0.087882 -0.192509 0.489105 0.819646 0.220927 -0.590147 0.653756 0.878153 0.063512 -0.664973 0.092410 0.224669 0.897973 -1.388806 0.548239 -0.228126 0.824796 -0.787670 -1.389033 0.632143 -0.863346 -0.335425 0.707347 -1.491477 -0.336055 -0.728144 0.390650 -1.082711 -0.201779 0.331254 1.166307 0.369363 -0.536793 0.532282 -0.467827 0.412359 -0.128878 -0.056543 0.068170 0.958393 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -3.280620 3.617143 0.496012 -3.766772 10.033798 -2.586076 1.671363 3.382866 -4.140906 4.376601 -3.692079 1.977221 -0.751131 -8.136433 1.120245 -2.118739 -0.017410 4.225871 0.207061 4.165313 2.296495 -3.435753 1.000814 -1.619383 -1.810407 -7.592153 0.014596 2.177411 3.902226 -1.924119 1.423058 0.573576 6.776486 -1.473878 3.733009 4.246521 1.323317 4.552949 2.783515 -5.999592 0.671027 2.024214 -2.090294 -5.221178 0.438272 -0.661227 -5.771398 -3.091112 2.471896 -4.407176 -2.444364 4.465020 -0.641748 -1.655966 -5.086204 4.591536 5.595130 -0.558602 5.138262 1.053266 -0.770063 -2.366219 -4.057784 4.600382 -2.983027 -0.974418 -1.538454 -3.756994 1.072520 2.838281 -1.562606 -2.072837 -2.209765 2.123868 3.319198 -4.338367 0.863593 -1.947622 -5.642969 -5.501053 -3.209394 1.591631 -2.250621 4.762058 0.465382 1.794943 0.654668 1.565853 0.063401 -4.982662 -0.520732 5.609446 -1.298987 -2.413204 -1.448641 6.692084 3.622042 -1.841382 -2.402746 -3.820520 1.207044 -1.567663 2.609062 -3.599506 0.949732 -5.125538 -0.847908 0.286070 1.342753 5.984262 0.525734 2.210061 1.403993 2.766835 -4.809464 0.440122 -8.313035 1.435139 -2.357178 1.098711 -1.780439 1.717541 2.306299 2.948659 3.585657 -7.577974 4.890480 1.054352 0.679226 -4.002202 1.376723 0.242231 -1.043803 -1.340398 2.773898 -0.898577 -0.323249 -0.071543 1.719202 1.448503 -2.555112 -1.325638 0.434451 8.236508 -7.648695 2.132148 -0.970629 -1.556218 0.201592 1.070218 2.955763 2.986676 6.867170 4.446971 -0.935650 5.851022 -6.680370 1.433241 7.296919 2.368665 -3.326989 4.425577 -2.611966 -1.797501 0.623017 3.958637 3.197140 1.684280 -5.774362 -5.022881 3.189629 -0.385110 4.941560 0.933311 -0.079182 -5.666971 5.543084 0.670991 -0.361697 7.405508 2.498512 -4.882244 3.349146 4.326073 -6.045057 -2.557473 1.973032 -3.375954 -0.717121 -2.086741 1.556495 3.050548 -2.908335 -3.913275 -2.126286 -3.604948 3.561874 -1.145534 -2.881393 1.129825 -1.941682 -3.075008 6.576938 0.760166 -1.003660 -3.249509 -5.328364 -3.962102 -5.449937 1.276991 0.599582 -2.561934 -1.889719 -3.950189 -2.126077 5.161649 -0.659197 1.627182 -9.550640 -0.018265 2.936709 5.626672 1.161189 -3.815707 -0.584487 1.371079 -0.151545 -0.332998 -0.825841 4.333889 6.004539 -3.759468 2.820380 -1.424557 -2.590150 3.710874 4.730030 -5.101838 6.319444 0.633037 8.732568 0.854354 1.644165 -2.010955 0.815441 0.569650 -3.241865 -0.785048 1.208851 -3.479350 -2.026310 2.906639 -1.325948 -6.207973 0.749116 3.615384 0.966239 1.069498 -0.728089 -1.751766 -1.150414 -1.890049 1.254746 3.008873 -1.103906 -2.909222 2.455716 3.713796 -0.165496 -2.027660 0.580026 2.728582 3.117796 -5.470853 3.227594 -1.280939 2.793949 -4.818129 -7.094569 3.558368 -3.186488 -3.292587 2.464519 -7.846608 -2.494007 -3.153037 2.231170 -7.177391 -0.961983 1.278111 5.229218 0.243831 -1.067292 2.797718 -1.953417 1.852152 -1.164933 0.913590 0.697165 3.662048 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -6.265696 5.059943 -0.170457 -7.036694 16.199029 -3.240763 2.331512 5.052655 -5.503405 8.043869 -7.176983 2.972055 -1.234485 -11.518856 1.615096 -2.651607 0.076631 6.190949 -1.233360 5.875660 4.350712 -4.524728 2.557011 -3.499019 -3.270190 -10.704069 -0.303751 3.680241 5.693943 -2.271601 1.384689 0.562760 10.188866 -2.902161 6.141039 6.884894 3.620142 8.482986 3.175773 -7.690361 2.519764 3.726373 -3.545812 -9.581675 1.582776 -2.366032 -9.826867 -5.552199 4.869834 -8.480349 -2.014371 7.713145 -0.638172 -3.748397 -8.326639 7.675388 9.131071 -1.915911 9.573662 2.022686 -3.159812 -3.381282 -7.076012 7.997627 -5.868021 0.723643 -1.917890 -7.899620 -0.497102 5.952757 -1.199342 -3.927552 -5.495938 2.921308 5.100575 -7.451980 1.850672 -3.415574 -5.311072 -7.958792 -4.423588 2.687409 -3.574464 7.839896 0.527497 3.019183 0.638661 2.294620 0.715811 -8.575791 -1.764156 9.250790 -2.685108 -1.957543 -4.116379 8.706277 4.960074 -3.803092 -4.719922 -4.994230 1.890516 -1.461895 4.483636 -5.398345 1.494011 -8.008831 -0.346560 2.054401 2.221463 8.365092 0.120482 3.463281 1.963335 4.658952 -6.201888 1.544371 -12.453517 2.265015 -3.347302 2.052006 -3.455441 2.759295 4.815050 4.067148 6.383841 -11.296072 9.233255 1.475695 -0.542790 -6.780575 2.949854 0.978971 -2.278559 -1.674975 5.019467 -1.736248 -0.878137 0.032496 3.591986 1.521890 -5.212970 -2.277468 0.098578 10.264328 -10.275351 3.646363 -1.857806 -3.071145 0.541666 2.313603 5.021744 4.625620 11.663417 7.788960 -1.476864 8.746237 -10.071176 3.363050 12.494598 4.319218 -6.630514 7.281782 -5.250022 -2.013899 1.950727 5.466501 4.704316 4.346689 -8.136096 -6.740893 3.619757 -1.014199 9.113891 2.357381 1.067296 -10.195201 7.319450 -0.505319 0.794297 11.968140 4.952081 -9.834914 5.813704 8.254193 -8.722320 -4.347088 3.060286 -5.477127 -2.414532 -3.703688 3.207390 5.397173 -5.713270 -7.357556 -3.234526 -6.690920 7.110491 -1.813621 -4.787807 2.085549 -4.924455 -3.763625 9.914689 1.509191 -2.077448 -4.804429 -7.305373 -5.862096 -10.563728 2.244757 2.203677 -4.543227 -3.637488 -7.068845 -3.307193 7.586321 -1.671108 2.388523 -14.094113 0.221493 5.402937 7.552358 2.547692 -6.099581 -1.160513 1.448991 -0.145061 0.271467 -2.493978 5.539629 9.606908 -7.109916 4.778704 -1.116217 -4.051564 5.271726 7.954027 -7.996515 11.184612 1.368616 11.982563 1.228363 3.583248 -3.444645 1.987676 0.107742 -4.359104 -1.487627 3.148603 -7.242725 -3.835036 5.060064 -2.783755 -8.646643 2.274572 6.860828 2.147633 1.564067 -0.876029 -2.701461 -2.346141 -3.711834 1.872875 5.507543 -2.799516 -6.124683 3.513488 6.623419 -2.364491 -3.737196 1.567230 4.882719 6.673650 -9.646956 6.311129 -1.609350 2.928416 -9.412135 -9.743303 5.303812 -5.174146 -5.149954 4.672454 -11.843410 -4.253394 -5.375549 4.892148 -9.684051 -2.051652 1.701130 9.294356 1.222018 -1.112805 5.885756 -2.820963 3.581416 -1.765415 1.012900 1.508864 6.228779 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -2.036479 1.793177 0.268893 -2.308850 5.225887 -1.121576 0.662387 2.036480 -1.569834 2.669291 -2.430191 1.293471 -0.213627 -3.450650 0.470433 -0.965445 -0.082003 2.065924 -0.474632 1.721422 1.362797 -1.093333 0.749452 -1.235321 -1.145266 -3.741261 -0.009849 1.115726 1.593299 -0.504280 0.513822 0.185182 3.294568 -1.018124 2.067950 2.289521 1.406721 2.608766 1.021835 -1.910440 0.987062 1.088665 -1.102919 -2.980432 0.366204 -0.734889 -3.123737 -1.680500 1.500612 -2.951863 -0.483579 2.361103 -0.115210 -1.183570 -2.436532 2.693641 2.692247 -0.789556 3.004037 0.658449 -1.315318 -1.061135 -2.295685 2.993248 -1.972256 0.385845 -0.664815 -2.577486 -0.267813 2.051559 -0.338416 -1.108512 -1.547068 0.891253 1.495387 -2.442485 0.576525 -1.121210 -1.439319 -2.272881 -1.150522 0.992026 -0.895192 2.316586 0.233692 0.990525 0.006240 0.780941 0.251802 -2.698775 -0.681597 3.071482 -1.025389 -0.624584 -1.587360 2.509203 1.764979 -1.240062 -1.069518 -1.710227 0.678415 -0.379074 1.363141 -1.860130 0.431240 -2.509671 -0.070906 0.840501 0.584814 2.699845 -0.687445 1.335846 0.640336 1.493950 -1.687103 0.708198 -4.130527 0.835418 -1.137101 0.597814 -1.079465 0.678950 1.593308 1.591644 2.012450 -3.463124 3.072206 0.446205 -0.222813 -2.119019 0.964658 0.349229 -0.707146 -0.571261 1.520874 -0.403764 -0.257364 0.003895 1.227721 0.364148 -1.549088 -1.214827 0.012984 2.993220 -3.280682 1.151830 -0.549359 -0.737298 0.068710 0.817596 1.607400 1.342571 3.693563 2.393255 -0.264267 2.634982 -3.179849 0.898033 3.840562 1.400520 -2.063057 2.405001 -1.763846 -0.781654 0.630062 1.709398 1.205995 1.715630 -2.741512 -2.338585 0.960277 -0.499405 2.949680 0.955052 0.185911 -3.318723 2.308609 -0.574623 0.151774 3.846148 1.895861 -3.284931 1.682103 2.689311 -2.713845 -1.612055 1.029445 -1.833334 -0.868702 -1.036837 0.911407 1.645945 -1.765536 -2.380761 -0.838885 -2.160336 2.320140 -0.505793 -1.453091 0.528382 -1.522275 -1.286139 3.160850 0.572101 -0.702917 -1.445561 -2.199660 -1.966554 -3.445714 0.604082 0.893664 -1.436191 -1.150597 -2.239115 -0.963263 2.236791 -0.746804 0.767497 -4.514251 -0.187603 1.758861 2.189502 0.713444 -2.127909 -0.346089 0.113418 -0.041626 0.134463 -0.910386 1.840684 3.228403 -2.092794 1.807178 -0.209135 -1.690683 1.456248 2.652271 -2.594646 3.549671 0.388900 3.329140 0.612028 1.119845 -1.264742 0.551830 -0.110355 -1.537076 -0.517937 1.050918 -2.398166 -1.193113 1.392038 -1.066541 -2.493002 0.835617 2.228674 0.650807 0.393963 -0.104496 -0.984820 -0.809532 -1.564352 0.475890 1.720705 -0.945774 -2.103176 1.210380 2.182687 -1.133818 -1.483916 0.455452 1.609865 2.112397 -3.051308 2.133134 -0.333864 0.818152 -3.372436 -3.053527 1.643305 -1.821981 -1.886218 0.993506 -3.761534 -1.578510 -1.635507 1.607443 -3.242963 -1.024937 0.770778 3.026894 0.341194 -0.356788 1.908684 -0.998781 1.216818 -0.320055 0.408731 0.348169 1.996240 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -2.292162 0.765760 -0.132986 -1.757052 6.157626 -2.385864 0.504142 3.983472 -0.619781 2.735510 -2.298598 1.308438 -0.443933 -2.924471 0.674990 -0.074780 0.930658 3.157269 -1.158080 0.474107 1.588853 0.919100 0.449463 -0.955512 -1.098627 -3.048583 -0.314884 1.188957 0.350735 -0.955272 -0.803293 1.459548 4.710833 -0.938813 3.378339 2.905402 2.740433 2.956430 1.415006 -0.541383 1.723512 1.046299 -1.036945 -3.324343 0.629072 -0.706902 -3.288362 -1.429633 1.729195 -2.983175 2.167675 2.366669 0.004085 -0.256495 -1.742408 2.664684 1.434610 -0.983545 3.175044 1.143259 -3.377977 -0.248005 -2.045651 4.979748 -2.330908 1.380695 -1.076883 -3.909641 -1.282101 2.465396 1.893984 -2.972176 -2.392649 0.815157 0.661529 -2.282545 1.092005 -0.225946 2.151043 -2.377413 -2.569002 1.283882 -1.415559 1.987154 0.075820 0.730419 -2.005722 0.359956 0.298325 -2.910614 -0.436947 3.398652 -2.332772 1.055363 -3.257651 0.356824 1.177294 -1.032791 -0.638388 -3.191939 0.888185 -0.940236 1.379543 -0.398995 1.113842 -1.204246 0.213323 1.038806 0.934751 2.801619 -0.920921 1.654454 1.416320 1.442896 0.187169 0.551687 -4.869020 2.269437 -1.488618 -0.013240 -0.928545 0.681543 2.326279 1.536025 2.316644 -3.646494 2.818329 0.251663 -0.809275 -1.783369 1.070613 0.199761 -1.204422 -1.234241 2.578875 -0.209906 -0.500150 -0.200609 1.596106 0.112752 -2.093643 -2.185704 -1.019877 1.387904 -3.214011 0.914278 -0.858618 -1.165176 -0.148554 1.314680 1.650826 2.125216 3.779586 2.645693 -0.677917 0.984411 -4.456718 0.686254 3.423246 1.343876 -2.467806 2.857792 -2.239390 -0.660754 1.297146 2.549677 0.718581 1.276310 -1.375120 -1.325979 0.238760 0.183406 3.486594 1.192329 0.393457 -3.137068 0.241933 -1.290311 -0.220683 5.119932 1.872487 -4.250260 0.994593 2.995775 -0.480573 -2.216531 1.204951 -2.905881 -2.028087 -1.521595 1.400761 2.266859 -2.732284 -1.589056 1.326351 -2.393866 2.261192 -0.510992 -2.467751 0.680675 -3.213301 -0.589957 4.698767 0.826516 0.029570 -1.028498 -2.998105 -0.475664 -4.005223 0.445867 1.296531 -0.373209 -0.854840 -2.342871 -0.914693 3.141382 -0.488680 1.436006 -4.045281 -0.090986 2.229216 0.346571 0.414635 -3.929587 -0.635412 -0.248721 -0.157961 0.306839 -1.657364 0.829820 3.220920 -2.338895 1.800373 2.289126 -1.795044 0.449540 2.265701 -3.033953 3.781539 0.320851 2.229506 1.289105 1.214446 -2.089169 0.069825 -0.787795 0.508918 -1.741148 1.492411 -2.691287 -1.020400 0.902474 -1.564130 -2.576710 0.532181 2.562188 0.195126 0.305604 -1.079252 -1.203569 -0.967605 -2.474927 1.132723 1.989876 -1.481741 -2.405823 2.021044 1.931943 -2.904102 -0.933064 0.610925 1.595204 2.897385 -3.402349 1.751956 0.540126 1.427681 -4.179592 -3.425171 0.999025 -2.143527 -1.795656 0.017208 -4.039407 -3.133428 -1.535692 1.971993 -3.438698 -0.967192 1.089084 3.781009 0.744915 -0.390924 2.305434 -0.677054 0.979660 -0.050500 0.230103 0.152369 2.445195 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.606750 1.706237 0.085933 -1.637926 4.500489 -1.140750 0.520174 1.441879 -1.626514 2.095991 -1.756805 0.929524 -0.418804 -3.314362 0.514023 -0.797116 0.184132 1.758347 -0.096723 1.568665 1.129276 -1.286965 0.536114 -0.798998 -0.824067 -3.640297 -0.017264 0.966506 1.549310 -0.763985 0.492233 0.383769 3.028717 -0.601691 1.819033 1.937279 0.836605 2.243825 1.195079 -2.074321 0.452705 0.978843 -0.952723 -2.563044 0.392942 -0.468835 -2.693232 -1.419209 1.209708 -2.267136 -0.694104 2.023162 -0.215813 -0.694935 -2.270733 2.111068 2.602197 -0.209516 2.474304 0.552897 -0.658548 -1.137684 -1.795602 1.973499 -1.562045 -0.226965 -0.636271 -1.984625 0.159047 1.432513 -0.589914 -1.029596 -1.211307 0.889675 1.352167 -1.976660 0.505852 -0.721701 -2.070985 -2.264089 -1.541892 0.745587 -1.086175 2.148965 0.167683 0.795637 0.145421 0.621294 0.158369 -2.314789 -0.283804 2.599927 -0.776309 -0.653755 -0.724983 2.799652 1.479493 -0.857997 -1.030440 -1.441901 0.536631 -0.664257 1.187727 -1.447434 0.404724 -2.297122 -0.054648 0.171742 0.621936 2.649298 0.220310 0.940931 0.622061 1.277537 -1.996470 0.411481 -3.781941 0.769569 -0.965452 0.448687 -0.842206 0.754027 1.207875 1.284230 1.688584 -3.260363 2.469179 0.482642 0.189027 -1.770378 0.702894 0.132305 -0.563316 -0.623536 1.463074 -0.459101 -0.197576 -0.052799 0.867820 0.534887 -1.398259 -0.802564 -0.039886 3.252338 -3.236892 0.953565 -0.519281 -0.877094 0.081570 0.495055 1.281275 1.415465 3.242620 2.077689 -0.564428 2.500126 -2.925428 0.739313 3.543227 1.225706 -1.659174 2.012527 -1.242008 -0.670331 0.492769 1.646287 1.387540 1.023707 -2.419823 -2.149543 0.947886 -0.094825 2.381356 0.672688 0.206337 -2.813548 2.306602 0.211331 -0.036237 3.444917 1.260901 -2.499972 1.500281 2.109869 -2.719526 -1.113497 0.837448 -1.550335 -0.438558 -1.126487 0.832155 1.508056 -1.578069 -1.935510 -0.722652 -1.750340 1.728211 -0.468862 -1.170251 0.633530 -1.235881 -1.128554 2.895558 0.431501 -0.375947 -1.414674 -2.273230 -1.858286 -2.685429 0.562069 0.361640 -1.144649 -0.780796 -1.867665 -0.970154 2.229626 -0.283410 0.728894 -4.213731 0.082161 1.400839 2.328069 0.492450 -1.578514 -0.325099 0.601926 -0.129850 -0.024872 -0.499536 1.872591 2.833181 -1.829201 1.571494 -0.460714 -1.121026 1.563032 2.261337 -2.272538 2.890287 0.178092 3.554395 0.452355 0.888429 -0.998993 0.419421 0.094631 -1.344492 -0.518769 0.708149 -1.771277 -0.966328 1.417616 -0.721269 -2.499060 0.369058 1.732081 0.637696 0.424237 -0.423282 -0.826650 -0.479513 -0.933476 0.657822 1.446814 -0.521667 -1.511518 1.112531 1.704833 -0.419991 -1.283851 0.371169 1.187558 1.647019 -2.566937 1.477418 -0.403426 1.016214 -2.471839 -2.752781 1.458943 -1.420731 -1.593300 1.167977 -3.424920 -1.014979 -1.381876 1.173342 -2.941707 -0.447554 0.444279 2.486666 0.208410 -0.435143 1.463709 -0.762959 0.805460 -0.455784 0.323937 0.286304 1.802798 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -3.349051 4.197387 2.234749 -3.597768 6.810675 -1.536615 1.693908 2.035580 -2.994311 4.049799 -3.786678 1.077926 -1.009032 -6.064717 0.742921 -3.820052 -0.521107 3.208719 0.116277 4.282394 2.568194 -3.235579 0.766890 -2.176902 -1.782717 -6.298495 -0.049250 1.470424 2.959795 -0.177869 2.968599 0.261114 5.205863 -0.542948 3.853517 4.162474 0.586133 4.923958 1.543128 -2.627627 0.038069 2.402788 -2.129011 -5.317405 0.883779 -1.187651 -4.198659 -3.440908 1.881331 -4.659321 -2.243164 4.000120 -0.349992 -1.419023 -4.453403 3.201571 4.935986 0.172447 4.777162 1.159664 -0.746693 -1.189041 -4.219667 2.070923 -2.707513 -0.309508 -0.366427 -3.375431 1.254897 2.020748 -1.300214 -0.856463 -1.827757 2.055707 2.783301 -3.943024 0.907904 -2.055167 -7.291285 -3.194527 -1.831306 1.219903 -0.641436 4.360239 0.080801 1.504019 0.783840 1.593666 0.305241 -4.652995 -0.972710 5.170777 -0.896144 -2.002491 -1.622367 5.841373 3.287123 -1.144767 -2.236708 -1.615170 1.454612 -0.617652 2.295235 -2.918277 -1.631130 -4.893862 0.116043 0.690333 0.087711 4.616476 -0.336049 2.629245 1.380503 2.805828 -4.859523 2.218150 -6.108329 1.210203 -2.125050 1.308649 -1.099803 1.339360 1.103239 2.245039 3.050226 -5.622868 4.426907 1.236743 0.305566 -4.114647 1.582262 -0.325753 -1.129711 -1.580404 2.506971 -0.154546 -0.407636 -0.415069 0.817715 0.715262 -0.864901 -2.339811 0.550493 6.224272 -4.849019 1.683749 -1.130835 -1.468030 -0.230971 0.947994 2.358081 2.266151 5.719284 4.049763 -0.579697 4.019547 -4.431962 0.684333 6.514260 2.396444 -3.331669 3.788740 -1.629564 -1.548728 0.808966 2.314998 2.909611 2.692325 -5.628249 -5.215557 1.191554 -1.155225 4.661534 2.424987 0.080981 -5.237791 5.819287 -0.235611 -1.037499 5.772147 2.866107 -4.138738 2.075318 3.556362 -6.771827 -2.964403 1.699224 -2.302486 -0.236348 -1.389532 0.973683 2.045034 -2.509599 -4.009549 -2.000031 -3.930316 3.723035 -0.850335 -0.599783 0.409275 -2.133338 -4.231794 4.799424 0.731888 -1.787422 -2.929131 -3.221238 -3.510294 -5.098636 1.480149 0.879240 -2.321396 -2.580766 -3.647470 -1.068269 2.928766 -1.261740 1.002568 -5.842359 -1.386205 2.405850 3.673880 1.503643 -3.293876 -0.812559 0.411122 0.363155 0.763063 0.219531 4.029963 6.262902 -3.069962 2.550945 -0.849283 -2.644017 3.018361 4.681991 -4.613465 5.504661 -0.334692 6.013201 0.404952 1.713919 -1.741715 0.374748 0.970036 -3.077885 -0.204030 1.567545 -2.805826 -1.589850 2.037993 -2.242343 -3.054996 1.197373 2.818354 0.964907 0.856773 1.252001 -2.381829 -0.847916 -1.907708 0.267494 3.283933 -0.356094 -3.142065 1.784230 2.749708 -0.213778 -2.813972 0.537211 2.244343 2.804907 -4.927298 3.005987 -1.267664 0.253270 -4.175310 -5.014401 3.228395 -3.807939 -3.657675 2.292786 -5.470098 -0.479942 -2.916959 2.098627 -5.140963 -1.842331 0.894960 4.572235 0.741899 -0.820336 2.608849 -1.859699 2.897576 -0.386344 0.622771 0.430324 4.181443 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.718012 0.739198 0.122509 -0.710196 2.055127 -0.627902 0.161643 0.692936 -0.571798 0.978113 -0.783588 0.211891 -0.162531 -1.524008 0.284272 -0.446480 0.046786 0.917307 0.043383 0.742722 0.505354 -0.577647 0.129259 -0.255311 -0.369667 -1.758475 -0.155590 0.502022 0.746206 -0.613651 0.231109 0.261178 1.495220 -0.252461 1.085429 1.032547 0.360274 1.014850 0.657144 -0.863753 0.121718 0.460199 -0.527981 -1.175776 0.123527 -0.132730 -1.277131 -0.670707 0.519613 -0.873392 -0.161899 0.979459 -0.176626 -0.157336 -1.008578 0.960018 1.043023 0.180443 1.156750 0.284272 -0.279119 -0.269453 -0.923988 0.970011 -0.691659 -0.096595 -0.479426 -0.987070 0.173026 0.524394 -0.083797 -0.535239 -0.536373 0.595423 0.608497 -0.909336 0.287102 -0.360837 -1.032390 -1.094203 -0.855459 0.452193 -0.488591 1.027586 0.089236 0.356775 -0.090693 0.372579 -0.069723 -1.171202 -0.006146 1.246783 -0.463906 -0.361496 -0.143685 1.337642 0.744939 -0.231639 -0.371194 -0.754797 0.314398 -0.444190 0.566148 -0.354408 0.401266 -1.045666 -0.042407 0.027254 0.331408 1.294936 0.285324 0.488446 0.534349 0.695757 -0.941003 0.039167 -1.760327 0.469997 -0.616500 0.191779 -0.328043 0.473862 0.527849 0.645055 0.846842 -1.525851 0.982150 0.212622 0.143863 -0.781198 0.259443 -0.115822 -0.331771 -0.404046 0.684277 -0.126469 -0.121687 -0.114578 0.317911 0.304509 -0.496778 -0.334695 0.018610 1.513463 -1.450444 0.403433 -0.223208 -0.428361 -0.020564 0.329449 0.709252 0.833233 1.629689 1.013510 -0.292172 0.832547 -1.451109 0.240173 1.616948 0.307369 -0.759668 1.058640 -0.538351 -0.415158 0.230677 1.022011 0.695451 0.324260 -1.111681 -1.060556 0.317581 0.084163 1.147180 0.212079 0.000219 -1.119439 1.112458 0.246128 -0.304525 1.749920 0.422298 -1.083338 0.473587 0.876276 -1.217007 -0.577118 0.517536 -0.826437 -0.120237 -0.563789 0.353899 0.741217 -0.714007 -0.795522 -0.144023 -0.846542 0.798426 -0.260739 -0.616999 0.338852 -0.626447 -0.654303 1.506038 0.229514 -0.134917 -0.708495 -1.095324 -0.634684 -1.132076 0.272064 0.124364 -0.423723 -0.313651 -0.868723 -0.379107 1.070425 -0.055895 0.483261 -1.796636 -0.069210 0.647449 0.962883 0.211742 -0.784595 -0.157168 0.275439 -0.110362 -0.070552 -0.158500 0.967134 1.512286 -0.808048 0.563585 0.051267 -0.573546 0.687224 1.070687 -1.211780 1.422457 0.009404 1.464101 0.247771 0.357641 -0.519522 0.080995 0.113629 -0.506000 -0.259981 0.275966 -0.643550 -0.394238 0.574129 -0.403126 -1.120118 0.036206 0.747251 0.159023 0.263069 -0.241121 -0.542007 -0.202597 -0.367311 0.366876 0.699243 -0.125536 -0.661987 0.691596 0.688764 -0.070917 -0.536630 0.111342 0.485211 0.767862 -1.248922 0.541351 -0.139443 0.686113 -1.107957 -1.324205 0.570130 -0.715660 -0.658222 0.405316 -1.521592 -0.523911 -0.717000 0.372926 -1.346902 -0.098520 0.337937 1.265908 0.245636 -0.434825 0.563712 -0.416592 0.415213 -0.130984 0.052532 0.127868 0.913189 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.788634 0.518035 -0.545017 -0.619918 1.977790 -0.653253 0.147338 1.415204 -0.842854 1.064310 -0.725488 0.914160 0.010592 -1.295084 0.196232 0.548057 0.289943 0.977643 -0.112017 0.419300 0.510097 -0.286560 0.184778 -0.322820 -0.481413 -1.130976 0.243735 0.435660 0.527922 -0.407729 -0.251213 0.341485 1.471189 -0.305497 0.995184 0.894871 0.674222 0.965813 0.948481 -0.968620 0.334070 0.379100 -0.352873 -1.124920 0.237642 -0.299884 -0.923844 -0.509702 0.560949 -0.923695 0.499511 0.778664 0.009771 -0.160918 -0.950032 0.772129 0.898264 -0.706143 1.238613 0.286601 -0.811021 -0.610201 -0.476209 1.647530 -0.787948 -0.198202 -0.066975 -1.007227 0.031913 0.809595 0.355700 -0.870866 -0.587356 0.327269 0.205347 -0.958069 0.314750 -0.166195 0.330801 -1.224966 -0.661341 0.332870 -0.590416 0.882902 -0.006405 0.302272 -0.610604 0.155620 0.059688 -1.065046 -0.157285 0.933066 -0.631135 0.237999 -0.801264 0.887723 0.484606 -0.381052 -0.423193 -0.865122 0.257540 -0.193431 0.465723 -0.573781 0.570119 -0.469437 -0.050684 -0.106281 0.298130 1.145644 0.039320 0.565956 0.410569 0.603419 -0.114046 -0.101254 -1.659061 0.568035 -0.118530 0.126950 -0.369554 0.166248 0.874424 0.301878 0.866110 -1.411917 0.974571 0.145276 0.109907 -0.922689 0.338529 0.131028 -0.313176 -0.368415 0.787904 -0.205714 -0.096464 -0.119025 0.529083 0.226295 -1.208791 -0.787916 -0.159932 1.264157 -1.562064 0.360009 -0.265059 -0.332308 -0.006158 0.288785 0.585500 0.644905 1.251375 0.882187 -0.142340 1.129295 -1.440973 0.305179 1.402166 0.992311 -0.866268 0.960278 -0.860223 -0.320991 0.462545 0.753777 0.483325 0.173685 -0.805688 -0.671384 0.836788 0.064246 1.228689 -0.005450 0.252063 -1.045438 0.603394 0.189613 0.008924 1.726655 0.320959 -1.427478 0.906512 0.911024 -0.240343 -0.211225 0.385125 -0.921351 -0.660675 -0.409229 0.415847 0.777293 -0.858811 -0.587423 -0.078650 -0.781639 0.905933 -0.215547 -0.657715 0.265253 -0.863165 0.345830 1.310948 0.315622 -0.064548 -0.445011 -0.915912 -0.709615 -1.354016 0.105196 0.302925 -0.423728 -0.263086 -0.932991 -0.556035 1.054247 -0.132069 0.211894 -2.086895 0.114969 0.788473 0.559297 -0.046498 -1.282576 -0.137943 0.223415 0.172503 0.107914 -0.575517 0.726199 1.054313 -0.836929 0.536262 0.457735 0.063091 0.626334 0.714083 -1.083927 1.287124 0.078377 1.206769 0.381496 0.366484 -0.615467 0.105872 -0.312310 0.220930 -0.474115 0.312090 -0.920986 -0.390086 0.535604 -0.392365 -1.003939 0.178359 0.846381 0.351481 0.144304 -0.437853 -0.145733 -0.370688 -0.935074 0.275981 0.629058 -0.532026 -0.776599 0.656440 0.655225 -0.507322 -0.021502 0.147483 0.719704 0.818954 -1.121499 0.603647 -0.016066 0.494720 -1.198716 -1.401725 0.586416 -0.422443 -0.674273 0.439451 -1.711179 -0.820190 -0.501991 0.658033 -1.674942 0.105595 0.138961 1.287137 -0.093512 -0.092329 0.789774 -0.292254 0.373753 -0.133987 0.387784 -0.022213 0.826852 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -2.249143 0.755626 -0.218947 -1.572217 6.036992 -2.382118 0.439514 3.984255 -0.835107 2.785516 -1.995608 1.304337 -0.558622 -2.965052 0.649973 -0.008652 0.982115 3.140140 -1.002652 0.576254 1.581983 0.749580 0.454458 -0.720524 -1.115411 -3.140853 -0.240493 1.222865 0.525411 -1.105986 -0.747260 1.460277 4.737350 -0.870818 3.438677 2.864626 2.579465 2.883036 1.566660 -0.789039 1.393498 1.066684 -1.102113 -3.240101 0.673841 -0.639377 -3.221983 -1.376178 1.739704 -2.859121 1.998257 2.378865 -0.115780 -0.084831 -1.726779 2.571350 1.381436 -0.928379 3.200946 1.034209 -3.200458 -0.439504 -2.013744 4.830704 -2.223520 1.063211 -1.139788 -3.795319 -1.041264 2.192359 1.720138 -2.957337 -2.206918 1.059833 0.696797 -2.303899 1.049557 -0.193183 1.819603 -2.526216 -2.756831 1.189409 -1.501719 2.009640 0.059602 0.786566 -1.919271 0.455221 0.136352 -3.060420 -0.148393 3.351309 -2.332541 1.024936 -3.065323 0.577435 1.070015 -0.879079 -0.724702 -3.053277 0.853072 -1.062048 1.444763 -0.530979 1.231231 -1.259005 0.136954 0.677856 1.095540 2.849480 -0.576140 1.556215 1.534300 1.620294 0.000986 0.450515 -4.803867 2.303736 -1.453406 0.025736 -0.909014 0.840509 2.256030 1.477230 2.436077 -3.806938 2.585506 0.185993 -0.619790 -1.919109 0.976636 0.078876 -1.082256 -1.332610 2.661398 -0.368002 -0.544352 -0.371128 1.551184 0.274519 -2.226289 -2.092337 -0.937468 1.576652 -3.334557 0.951327 -0.906304 -1.268223 -0.084432 1.277325 1.702883 2.342245 3.759189 2.705722 -0.722765 1.131205 -4.510659 0.598831 3.359098 1.396098 -2.454100 2.924981 -2.232986 -0.748717 1.286102 2.651096 0.977530 1.105088 -1.416664 -1.451025 0.460015 0.491860 3.473739 1.077923 0.409151 -2.946286 0.336950 -1.038758 -0.357712 5.074270 1.650069 -4.114082 1.086963 2.730052 -0.543228 -2.036862 1.223352 -2.949295 -1.903380 -1.562731 1.355530 2.369716 -2.694649 -1.439370 1.380829 -2.364765 2.241292 -0.590848 -2.377736 0.855542 -3.241914 -0.551463 4.587127 0.842411 0.049969 -1.190901 -3.145924 -0.600467 -3.822997 0.486943 1.102547 -0.297591 -0.825524 -2.398977 -1.017488 3.123874 -0.122968 1.524421 -4.241979 -0.024984 2.217908 0.430853 0.391456 -3.823699 -0.577126 -0.097380 -0.180775 0.307009 -1.522154 0.981894 3.208345 -2.363089 1.751324 2.114199 -1.617472 0.593564 2.101992 -3.185063 3.744228 0.313130 2.371043 1.229326 1.112923 -2.016523 0.138250 -0.685316 0.616940 -1.658461 1.341899 -2.449960 -1.067775 0.884233 -1.601005 -2.634669 0.217705 2.422017 0.153048 0.445910 -1.201321 -1.233394 -0.975792 -2.411870 1.183388 1.989132 -1.391866 -2.196681 2.184275 1.687272 -2.564827 -0.837505 0.573408 1.571492 2.727334 -3.424064 1.491025 0.433964 1.519212 -3.903044 -3.453486 0.952942 -2.039891 -1.829494 0.176831 -4.068337 -2.867737 -1.551481 1.786521 -3.491969 -0.770189 0.995188 3.812748 0.691193 -0.475135 2.273538 -0.696104 0.944882 -0.097998 0.257494 0.149362 2.488475 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -2.574453 1.933270 0.859885 -1.366771 5.245569 -0.486970 0.737156 2.534853 -3.566861 4.270292 -1.087299 0.048464 -1.260485 -4.499075 0.471505 -1.811717 -0.360964 1.336322 0.515242 3.246681 1.838054 -2.853217 0.372988 -0.014194 -1.734006 -3.562807 -0.311947 1.428567 5.087634 -2.096121 0.586920 -0.153286 4.703386 -0.964057 4.757350 3.306088 1.203795 2.181918 1.463390 -4.001992 -2.241018 2.196983 -3.032795 -2.428758 0.126439 -0.926353 -3.145453 -0.708460 1.835337 -0.316877 -2.701022 3.812231 -1.370718 0.550282 -2.497731 2.964815 1.168392 -0.101948 4.745776 0.101613 -0.546099 -1.519273 -4.200899 2.461156 -1.186320 -0.467039 -2.494278 -2.172208 1.669883 -0.794835 -2.143648 -2.280922 0.288402 4.776565 2.588347 -3.815016 0.829789 -1.706272 -4.417750 -4.507856 -3.571847 1.267008 -0.619398 3.604851 0.521475 1.830342 1.676073 2.828485 -1.427534 -6.301368 1.743456 3.810040 -2.640947 -2.103545 -0.742299 3.737390 0.907274 1.328712 -2.118632 -1.280284 1.496815 -1.100856 2.157306 -3.874903 2.837051 -4.038970 -1.134643 -1.855213 1.744907 2.888777 2.156120 0.746586 3.178884 4.951590 -3.841509 -1.299264 -2.840615 0.925931 -1.845818 1.324279 -1.311723 2.857974 1.762756 1.463815 4.474705 -6.482962 0.661980 -0.043569 0.598854 -5.046192 0.094295 -2.492588 -0.910919 -1.617813 2.422648 -1.052810 -0.580905 -2.373799 1.351694 1.522646 -2.470198 -0.212993 1.687683 4.203534 -5.029828 1.249558 -0.944754 -1.424659 -0.453649 2.237736 3.561243 4.202801 4.707259 3.889067 -0.736656 3.652709 -4.208902 -0.064351 4.200329 -0.272279 -3.410184 4.635041 -3.965722 -1.826846 0.460006 3.238844 4.018770 1.291622 -3.849905 -3.452197 3.901690 2.097885 4.553062 -0.255217 0.275186 -0.752843 3.547955 0.038977 -3.170257 4.715327 0.497530 -3.568168 2.948812 1.018229 -2.926998 -1.018618 2.587675 -4.168733 0.506829 -2.153881 -0.157800 2.663820 -1.912018 -0.269892 0.415008 -3.476680 4.261500 -0.932039 -0.499468 2.248096 -2.449803 -2.881439 3.539682 0.606706 -1.157148 -3.955125 -3.495636 -2.982620 -2.779328 1.420143 -0.124947 -1.049012 -2.025003 -4.173501 -1.109596 2.987449 1.884109 3.223228 -6.885942 -0.441753 1.724992 2.245375 2.560507 -1.273104 -0.399074 0.209929 -0.857043 0.756347 -1.196169 3.645902 5.040560 -2.831660 2.313712 -2.413726 -2.720137 2.044552 1.349238 -5.411214 4.724343 1.172899 3.702061 -0.016278 1.311773 -1.946767 0.843676 1.199402 -0.993767 0.611969 0.259106 -0.320378 -1.782482 0.322987 -2.860783 -3.153466 -1.884310 0.791176 -0.366709 1.567399 -0.781468 -2.516124 -1.259555 -2.377372 1.179753 2.863695 -0.387535 -0.728146 3.315580 0.070453 1.678882 0.189540 0.242490 1.077497 1.883546 -4.864153 -0.775190 -1.083220 1.746296 -1.933428 -4.559433 0.140376 -2.190957 -1.438517 2.548633 -4.284647 1.068256 -2.905685 -0.796211 -4.033204 -0.681972 1.128559 5.259402 1.067650 -2.565206 1.876703 -1.714782 2.341376 -0.051721 0.546151 0.424148 2.273328 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -1.822454 1.900927 0.171875 -1.461528 3.121657 -0.486904 0.163578 1.406775 -1.907523 2.901157 -1.529722 0.574057 -0.511670 -2.793177 0.128206 -1.588200 -0.301039 1.020578 0.147907 1.752672 1.255828 -1.668357 0.250861 -0.512460 -1.214079 -2.908236 0.119412 0.858738 2.307380 -1.107208 0.844969 0.120713 2.809025 -0.417642 2.753584 2.212916 0.868647 2.219102 0.774983 -0.792074 -0.679290 1.295447 -1.586612 -2.235662 0.003439 -0.584562 -2.305797 -1.446734 1.151652 -1.506468 -0.557678 2.415823 -0.555350 -0.142010 -1.968701 2.014329 1.333348 -0.903437 3.133301 0.371578 -1.064593 -0.946900 -2.425141 2.663060 -1.280586 -0.081738 -0.542944 -1.691371 1.042539 0.316500 -0.629686 -0.926238 -0.412087 2.195431 1.220946 -2.542190 0.398643 -1.282325 -3.492779 -2.087651 -1.499216 1.014511 0.061901 2.182067 0.420538 0.962578 0.144382 1.444100 -0.664673 -3.473314 0.447815 2.941655 -1.206473 -0.981778 -1.859199 2.825007 0.852967 0.109089 -1.170951 -0.597757 0.855318 -0.329814 1.314812 -2.818427 0.256391 -2.790403 -0.021573 -0.172522 0.453980 1.300339 0.918664 0.786517 1.719084 2.592229 -2.059504 0.547367 -2.598748 0.838712 -0.167867 0.611779 -0.847761 1.183092 0.377834 1.115854 2.580230 -3.555863 1.396984 0.127582 -0.223007 -3.034476 -0.017997 -0.997424 -0.705221 -1.054512 1.471516 -0.293284 -0.221868 -1.060303 0.630621 0.556051 -1.347380 -1.557155 0.768048 2.693652 -2.543048 0.747295 -0.621487 -0.603220 -0.481288 1.466834 1.798298 2.063334 3.185758 2.153244 0.129371 2.482348 -2.719779 0.139790 3.016063 2.140370 -2.351117 2.741255 -2.112706 -0.852128 0.467281 1.787922 1.980678 1.093119 -2.916238 -2.455960 1.543283 0.359871 2.722313 0.539023 0.254681 -0.885961 2.684246 0.320468 -1.473815 3.172775 1.302386 -2.154746 1.408657 1.236499 -2.379625 -1.088247 1.821454 -2.104621 -0.379977 -0.892962 0.325152 1.437238 -1.249466 -0.971550 -0.265432 -2.320869 2.559155 -0.497871 0.022502 0.792069 -1.970572 -1.692995 2.098963 0.030528 -0.832947 -2.023349 -1.756106 -2.333600 -2.345054 0.734728 0.553339 -0.910796 -1.490522 -2.571093 -0.556565 1.448956 0.293017 1.381751 -3.030570 -0.842549 1.517657 1.660261 1.255200 -1.645555 -0.356516 0.102812 0.167986 0.813356 -0.555804 2.391376 3.244773 -1.596400 1.793954 -0.838879 -1.338200 1.125514 1.568216 -3.177738 3.277338 0.214947 1.842361 0.290535 0.863408 -1.307538 0.251440 0.436689 -0.537297 0.238806 0.419235 -0.950268 -0.970269 0.173616 -1.878131 -1.314596 -0.252374 0.964299 -0.057736 0.734955 -0.022862 -1.167021 -1.062241 -1.952936 0.450148 1.852207 -0.264517 -1.023519 1.814099 0.432752 0.299651 -0.155908 0.239755 1.150013 1.490194 -2.945712 0.360393 -0.629309 0.333008 -2.112236 -2.865026 0.658041 -1.529832 -1.872359 1.359183 -2.914361 0.011149 -1.664753 0.225945 -3.244984 -0.899632 0.540086 3.150598 0.549008 -1.156910 1.241690 -1.097965 1.680062 0.023956 0.364342 0.393990 1.910383 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.932862 1.425909 0.295405 -1.220960 3.963642 -0.553020 0.218298 2.489420 -1.919611 3.098540 -1.277386 0.932402 -0.642838 -2.622465 0.171589 -0.953723 -0.081740 1.289567 -0.150462 1.507522 1.312663 -1.138985 0.328994 -0.273617 -1.291505 -3.033536 -0.014094 0.963424 2.460801 -1.082345 0.143430 0.194812 3.412459 -0.746381 2.876957 2.298358 1.583202 2.021692 1.058307 -1.400400 -0.625380 1.332745 -1.727438 -1.888756 0.233828 -0.862350 -2.352858 -0.715089 1.371838 -1.324805 -0.322585 2.417630 -0.615983 0.127674 -1.602793 2.322913 0.959016 -0.880570 3.331229 0.294042 -1.365541 -1.466026 -2.496086 3.236841 -1.321295 0.066455 -1.131319 -2.052328 0.577152 0.295792 -0.401945 -1.627874 -0.490752 2.486232 1.170039 -2.624443 0.576086 -1.068543 -1.900328 -2.585337 -1.984937 0.905612 -0.348387 2.158517 0.271451 1.045592 -0.132412 1.489974 -0.754288 -3.853566 0.663683 2.989508 -1.818971 -0.380072 -2.055490 2.068782 0.635650 0.312180 -1.210062 -1.109608 0.861849 -0.431596 1.368863 -2.846742 1.214488 -2.458054 -0.212481 -0.606953 0.925749 1.778975 0.375026 0.909724 1.879098 2.888618 -1.652074 0.002535 -2.884495 1.068310 -0.588093 0.634341 -0.881824 1.357791 0.987064 1.178717 2.932545 -3.964985 1.217083 -0.119444 -0.279768 -3.166888 0.165889 -1.094066 -0.745501 -1.091235 1.763890 -0.490310 -0.404951 -1.346384 1.092669 0.639561 -1.928335 -1.505940 0.691971 2.484655 -3.149379 0.796319 -0.681173 -0.778256 -0.386369 1.579254 2.151875 2.419280 3.334639 2.457336 -0.024461 2.480823 -3.194372 0.037184 2.787831 1.672349 -2.478637 2.983635 -2.624950 -1.035453 0.692884 2.117516 2.000810 1.220816 -2.476894 -2.195498 1.920736 0.927684 3.239754 0.393248 0.312374 -1.052362 1.965400 -0.541758 -1.502101 3.349049 1.280370 -2.784386 1.603489 1.120038 -1.392734 -0.930254 1.749296 -2.682075 -0.484343 -1.119557 0.211097 1.929089 -1.489503 -0.663544 0.439074 -2.368204 2.909976 -0.622894 -0.358146 1.285725 -2.306400 -1.678899 2.467978 0.246913 -0.677869 -2.072056 -2.190991 -2.113036 -2.506810 0.713142 0.495528 -0.851131 -1.406263 -2.788814 -0.749813 1.912611 0.704583 1.759695 -4.396212 -0.607033 1.619884 1.060342 1.321120 -1.741892 -0.337671 -0.193825 -0.087478 0.832248 -1.090177 2.306050 3.336277 -1.818528 1.899293 -0.759354 -1.448515 0.989099 1.322629 -3.456674 3.357926 0.532591 1.994984 0.359508 0.885259 -1.527239 0.397063 0.249896 -0.147211 -0.045848 0.501699 -0.963403 -1.085170 0.172536 -2.091095 -1.688627 -0.609012 1.016011 -0.241433 0.855476 -0.334910 -1.313665 -1.171861 -2.199001 0.581274 1.898925 -0.619864 -0.962493 2.174246 0.248182 -0.104665 0.120691 0.227937 1.198152 1.588351 -3.160714 0.026602 -0.402102 0.720798 -2.350521 -3.299484 0.220853 -1.537744 -1.780713 1.207396 -3.323809 -0.365545 -1.790797 0.184475 -3.294185 -0.800382 0.848908 3.627770 0.630300 -1.224440 1.565087 -1.023792 1.657289 -0.037097 0.507122 0.396811 1.768009 +PE-benchmarks/dfa-based-division.cpp__main = -1.234370 0.577262 -0.026151 -0.685085 2.814151 -0.656054 0.144859 1.803002 -1.002271 1.865113 -0.561033 0.170561 -0.353822 -1.794002 0.358721 -0.322858 0.132675 1.154645 -0.066076 0.976299 0.920920 -0.479414 0.073020 0.035165 -0.712421 -1.553235 -0.214385 0.787700 1.557908 -1.055492 -0.150203 0.438181 2.385507 -0.528413 2.278651 1.717976 1.179332 1.115848 0.690367 -1.301185 -0.384103 0.878117 -1.191439 -1.326125 0.172080 -0.349702 -1.696292 -0.545326 0.943384 -0.558633 -0.021477 1.688044 -0.520756 0.338565 -0.915212 1.368282 0.301841 -0.376683 2.095607 0.347692 -0.998450 -0.548524 -1.624244 2.412727 -0.758413 0.123179 -1.096956 -1.748411 0.219709 0.180983 -0.028038 -1.325342 -0.464810 1.770639 0.809535 -1.581291 0.600853 -0.565142 -0.234698 -1.901447 -1.692287 0.671646 -0.650327 1.518530 0.107671 0.633300 -0.272624 0.881245 -0.603565 -2.569464 0.626483 1.820317 -1.438055 -0.150914 -1.234695 1.018214 0.485029 0.350407 -0.762348 -1.091320 0.610285 -0.639842 0.999558 -0.928449 1.440083 -1.095399 -0.470502 -0.444589 1.017545 1.583981 0.536820 0.637447 1.466025 1.857348 -0.791737 -0.283381 -1.686480 1.063007 -1.034782 0.478260 -0.527934 1.106925 1.145452 0.781856 1.920282 -2.531260 0.501107 -0.018636 0.019160 -1.752261 0.180547 -0.872463 -0.601608 -0.940937 1.373031 -0.363096 -0.424136 -0.870110 0.794344 0.631229 -1.233789 -0.520495 0.141704 1.114218 -2.013116 0.527665 -0.518340 -0.712935 -0.149414 1.070186 1.537778 1.978855 2.253215 1.814798 -0.345649 1.104505 -2.354924 0.116157 1.793126 0.339706 -1.550868 2.068154 -1.791533 -0.765477 0.543775 1.721736 1.368500 0.576866 -1.152971 -1.058210 1.006174 0.926528 2.208272 0.105407 0.131582 -0.695252 0.764265 -0.335085 -1.232140 2.457382 0.433214 -1.993476 0.971139 0.711754 -0.789602 -0.680749 1.114605 -2.010819 -0.442350 -1.019767 0.426967 1.478385 -1.185625 -0.263424 0.751272 -1.533921 1.667002 -0.511112 -0.693606 0.922795 -1.626332 -0.868554 2.146925 0.419763 -0.316196 -1.432799 -1.664629 -0.658610 -1.527316 0.549289 0.106872 -0.183563 -0.764947 -1.763367 -0.661531 1.543671 0.678482 1.309263 -2.828278 -0.034709 1.083719 0.431380 0.714170 -1.242799 -0.264913 -0.067114 -0.219818 0.235984 -0.801834 1.134797 2.099343 -1.385508 0.829144 0.010913 -1.023317 0.598374 0.691566 -2.442184 2.333954 0.519551 1.253917 0.329016 0.546078 -1.159660 0.163990 0.121341 0.102328 -0.274322 0.380952 -0.482998 -0.670223 0.271888 -1.218778 -1.428091 -0.617682 0.753048 -0.263395 0.681662 -0.640621 -1.056258 -0.663775 -1.208312 0.634094 1.347150 -0.514498 -0.557520 1.659938 0.180394 -0.107398 -0.081476 0.167717 0.727523 1.252181 -2.214642 0.016515 -0.147338 1.018255 -1.386600 -2.083275 0.129545 -1.011282 -0.718636 0.676782 -2.068355 -0.452978 -1.299651 0.052010 -1.821849 -0.422139 0.674212 2.518527 0.536269 -0.971482 1.033072 -0.659137 0.954553 -0.043789 0.197924 0.230218 1.192624 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -2.500711 2.115574 -1.264294 -2.201185 3.168924 -1.291234 -0.117924 2.488688 0.379293 3.514040 -1.733653 -2.069195 -0.710175 -4.021963 0.408481 -1.440470 -0.283485 2.488657 -0.278432 2.356819 1.904165 -1.284120 0.186870 -0.333919 -1.901418 -1.170299 -0.574095 1.564803 2.530255 -2.758380 1.019101 0.401961 5.189628 -1.039718 5.164360 3.676870 2.400721 3.049799 2.135159 -0.339441 -1.349134 2.038158 -2.467242 -2.457575 0.053751 -0.529776 -3.189813 -1.449660 1.397667 -1.059310 2.741966 3.736400 -0.189441 0.587072 -2.386984 2.816552 1.221727 -0.380397 4.703658 0.697655 -1.103396 0.636511 -2.862497 3.891158 -1.603458 0.686394 -1.607504 -1.979247 0.928755 -0.128287 -0.235289 -3.019127 -1.864131 3.785369 2.002420 -3.832604 1.226590 -1.888590 -1.395606 -3.911784 -3.117944 1.955922 -0.093252 3.156498 0.036863 1.467676 0.105364 2.497966 -1.793143 -5.266551 1.562806 3.489010 -2.379396 -1.352274 -2.166689 2.872688 0.279357 0.940546 -2.634533 -1.450822 1.437508 -0.865096 2.218725 -1.897202 1.633412 -2.734998 -0.178184 0.334024 0.042340 3.058480 3.597464 1.434062 3.883119 4.336992 -2.140671 0.392051 -4.389786 0.896463 -1.102156 0.660277 -0.138977 1.804477 1.634097 1.346812 3.051107 -5.431764 1.481216 0.355241 -0.838741 -3.625926 0.050044 -1.503677 -1.422051 -1.869789 2.418325 -0.228524 -0.595122 -1.771523 1.217580 1.313547 -1.418370 -1.964152 1.330012 2.203818 -2.612402 0.841675 -0.892841 -1.453584 -0.714481 2.318208 3.168943 2.636164 5.148223 2.899447 -0.480084 0.649896 -3.878041 -0.766239 2.681326 0.089614 -3.425302 4.417147 -3.291183 -1.832298 0.345454 4.028635 2.342874 1.199432 -2.956498 -2.521752 2.016284 1.437054 4.046330 -1.934533 -0.593440 -1.494520 2.750985 1.002894 -2.741194 6.614114 2.144497 -2.907126 -0.860159 1.014870 -1.684066 -2.010691 3.602213 -3.804326 -0.941269 -1.070748 0.553539 1.850124 -1.667894 -0.727065 0.970309 -3.193687 3.111987 -1.239338 -2.366609 0.696489 -4.341060 -0.952512 4.027270 0.350531 -1.125147 -2.120390 -3.315696 -0.454808 -3.359104 1.782382 1.462664 0.382076 -2.171107 -2.920863 0.121231 2.476851 1.062703 2.158816 -4.264169 -1.493538 2.639917 0.477765 2.046916 -2.138009 -0.426660 0.129140 1.012974 1.221932 -0.297619 3.122841 5.324404 -2.345100 1.881925 0.539756 -2.442810 1.012455 2.065072 -5.522835 5.157353 0.827955 1.157126 0.122182 0.675710 -1.931227 0.258335 0.729021 0.528265 0.055369 -0.237592 -0.438296 -1.414116 -1.200116 -2.276469 -1.732509 -1.273851 1.324702 -2.042905 1.575406 -0.379917 -1.288014 -2.045655 -2.572834 0.552554 2.905526 0.686374 -0.538601 3.479480 0.230200 0.937701 2.448675 -0.368989 1.327722 2.958163 -4.586326 0.054929 -0.723179 1.299790 -2.693816 -3.450475 0.200308 -1.832462 -0.159737 0.754249 -2.746758 -1.152154 -2.512402 0.205676 -2.738709 -0.010903 1.801465 5.030678 2.388646 -2.854206 0.878666 -1.579549 3.026767 0.978700 -0.803103 1.198573 2.960242 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -4.052081 2.511371 0.770656 -3.758690 7.912858 -1.634352 0.348874 1.906467 -1.286048 5.958534 -2.935780 -1.911983 -2.040872 -7.464525 0.660267 -3.110984 -0.518999 3.609005 -0.288924 4.315760 3.273178 -3.700182 1.214932 -0.936913 -2.146225 -4.986739 -1.213561 2.483906 4.647660 -3.532609 1.303817 0.234796 7.072102 -0.796627 6.290015 5.112767 1.512835 5.574702 1.371018 -2.962768 -1.198866 3.365864 -3.503510 -5.513730 1.340305 -1.355390 -5.105458 -3.902869 3.052450 -2.671752 -0.337094 5.814964 -1.532498 -0.804605 -4.869792 3.587647 3.104317 1.036370 6.895428 1.033560 -0.773416 0.108761 -6.456633 3.474562 -3.455283 0.574798 -1.577569 -4.543413 1.021547 0.613131 -0.375713 -2.858182 -2.744217 4.825682 3.861675 -5.088809 1.071092 -2.886387 -5.821280 -5.398568 -4.953221 1.806203 -1.326547 5.365444 0.307903 2.325633 1.355752 3.129163 -1.260256 -7.764528 1.117683 5.754376 -2.246666 -1.577460 -1.802307 5.683183 1.457210 -0.208190 -3.851802 -1.550638 1.691325 -1.639293 3.526617 -1.914562 1.415841 -5.141910 0.414225 0.020270 1.357633 2.790553 3.840605 1.189730 3.442632 5.483674 -5.210905 0.585626 -6.036760 1.529827 -1.954527 1.768983 -1.355782 3.572693 1.277679 1.600890 5.369255 -8.275722 3.118821 0.472379 -0.767838 -5.718495 0.945403 -1.799918 -1.629146 -2.285159 3.794490 -0.994786 -1.069383 -1.832531 1.305216 1.472452 -2.548784 -0.481949 1.231051 5.611556 -4.309794 2.145184 -1.606714 -3.132461 -0.190162 2.415595 4.368946 4.900552 7.703123 5.769635 -1.148388 2.014122 -6.399528 0.546116 6.631584 0.147080 -4.946414 6.005829 -3.313918 -1.670035 1.050670 5.044202 4.949450 1.283385 -4.213266 -3.923602 1.932978 1.215261 6.368640 0.466611 0.470567 -2.858204 4.537700 1.245965 -2.603766 7.636156 2.237954 -4.817881 2.328682 3.047261 -5.739088 -3.282056 3.300273 -3.734284 0.324562 -2.670365 1.703387 3.412264 -3.158806 -2.715122 -0.610485 -5.197832 5.562121 -1.718619 -1.261461 2.786702 -4.776672 -4.951357 6.147259 0.083942 -2.015641 -4.452097 -5.223087 -2.417652 -5.397837 2.467144 0.500194 -1.870094 -2.798695 -5.121574 -0.752722 4.775169 1.078174 3.073032 -6.141802 -1.220152 3.202710 2.710413 3.287384 -2.176019 -0.832458 1.116400 -0.038791 1.143376 -0.161121 3.648682 7.603813 -4.464177 1.970002 -0.362297 -2.519184 3.030693 3.756262 -7.190494 7.769806 0.570220 4.473519 -0.258511 1.911175 -1.967817 0.990306 1.889636 -1.107226 0.409231 1.115060 -1.895529 -2.428746 0.951845 -3.925141 -4.112064 -0.641945 2.711610 -0.110583 2.304770 -0.200148 -3.176636 -1.326401 -2.007370 1.380692 4.435229 0.394912 -1.926003 3.689667 1.785589 1.192679 -0.409462 0.702743 2.023903 4.202100 -6.972538 1.533139 -1.576453 1.756964 -3.355686 -5.926190 1.567647 -4.173285 -1.889310 3.688478 -6.439198 -0.454356 -4.431585 1.117102 -4.290769 0.052199 1.057604 7.087747 3.211494 -2.565938 3.045908 -2.229592 3.516673 -0.388790 -0.991683 1.684251 4.780782 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -10.443002 6.302959 2.618279 -10.603307 21.459993 -4.792340 0.620457 6.559084 -2.520369 15.385288 -8.119684 -4.581867 -5.235599 -19.283064 1.594522 -8.787196 -1.179897 10.192643 -1.776362 11.098448 8.495997 -8.081862 3.781646 -2.653262 -5.909687 -12.616443 -3.454036 6.653275 10.443723 -8.401399 3.988880 0.483704 18.966315 -2.261970 16.047638 12.963018 4.379832 14.908877 3.296119 -5.689536 -1.929868 8.227811 -8.757149 -14.509697 3.537908 -3.587854 -13.920176 -9.986377 8.059821 -8.690888 -0.437305 14.958554 -3.362220 -2.452212 -12.102549 9.738156 7.783625 2.297778 17.576867 2.931544 -3.563480 0.601399 -17.016923 8.900489 -9.238360 2.815822 -4.273386 -12.472969 1.193534 2.714350 0.109702 -8.215971 -8.100691 11.571948 9.799200 -12.991115 3.113541 -7.382688 -13.328895 -13.300876 -12.408028 5.224546 -3.479838 13.334104 0.867743 6.274729 3.105081 7.814174 -3.220313 -19.867026 2.653539 14.803453 -6.090072 -3.905574 -5.818530 13.482207 3.185926 -1.161254 -9.822747 -5.051311 4.529877 -3.974265 9.088007 -4.696733 2.777552 -13.229781 1.423028 1.629468 3.485165 7.165144 8.601811 3.637139 8.485526 13.921153 -13.250302 2.753011 -16.875959 4.440804 -6.160909 4.494013 -4.087142 8.916116 3.869955 5.242215 13.549570 -21.153786 9.276309 1.434018 -3.020646 -14.281498 3.044533 -3.875702 -4.223572 -5.623736 9.957429 -2.871675 -2.613763 -4.386210 3.823963 3.140944 -5.941200 -1.519833 2.405415 13.151384 -11.218303 5.707315 -3.950745 -7.946614 -0.171122 6.447013 11.337358 12.131986 20.400458 14.392914 -3.112557 4.338315 -16.940201 1.573560 17.359543 0.781945 -12.495673 15.667768 -8.031307 -4.089476 2.777271 13.029628 12.034754 4.090667 -10.578411 -10.239874 3.852569 3.015773 16.679099 2.131305 1.193772 -8.916973 10.762843 1.577946 -5.433854 20.720048 7.073215 -12.803644 5.020385 8.538394 -14.143819 -9.424312 8.188194 -9.652489 0.074430 -6.327367 4.335920 8.925446 -8.261657 -8.193984 -1.145340 -13.335714 14.093562 -4.536699 -4.360523 6.747009 -12.873019 -12.958734 16.437567 0.618167 -5.313046 -10.893921 -13.871777 -5.340348 -14.724015 6.311434 2.227137 -4.532280 -6.675567 -12.835429 -2.021002 12.223068 2.306149 7.537514 -15.799326 -3.366890 8.753410 5.633610 8.573501 -6.863120 -1.894414 2.217632 -0.728574 3.038847 -0.744533 8.496144 19.565971 -11.474001 5.834708 0.359250 -7.167460 7.098567 10.261854 -18.267936 20.673789 1.334002 12.049577 -0.324818 5.092981 -5.134524 2.863181 4.278807 -3.156691 0.741573 3.570567 -5.859070 -6.581320 2.442544 -10.001147 -10.779522 -1.197133 7.715018 -0.859635 5.797168 -0.202546 -8.493153 -3.642813 -4.879105 3.756206 11.418483 0.317946 -6.120596 9.338565 5.674851 1.839673 -2.089130 1.903647 5.772524 11.365884 -18.114659 4.863903 -3.569129 4.441153 -10.042749 -15.095073 4.562759 -11.160419 -4.970807 8.207894 -16.531940 -2.528696 -11.250161 3.848213 -10.410719 -0.339641 3.498825 18.271918 8.169794 -6.761462 8.012624 -5.637092 8.996898 -0.854868 -2.617082 4.239794 12.582548 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.312442 -0.101731 -0.239755 -0.583775 1.207551 -0.488101 -0.461157 1.127598 0.484391 0.532759 -0.275105 0.223665 0.195457 -0.758625 0.122753 0.024075 0.175156 0.515344 -0.230152 0.345998 0.211870 0.060277 0.137584 -0.076072 -0.292573 -0.358581 0.111481 0.398179 -0.107815 -0.223247 -0.015023 0.272816 0.680696 0.009038 0.835986 0.456395 0.458146 0.395233 0.374822 0.233874 0.375098 -0.149512 0.055113 -0.537403 0.064028 0.085030 -0.834281 -0.227512 0.177282 -0.710706 0.475982 0.577767 -0.016913 -0.038659 -0.366364 0.356897 -0.149542 -0.065316 0.445563 0.235607 -0.958787 -0.249658 -0.484154 0.582904 -0.313185 -0.002914 0.012488 -0.540920 -0.017482 0.720331 0.075588 -0.383999 -0.102463 0.157572 0.354220 -0.385556 0.349109 -0.126059 0.689288 -0.172033 0.035827 0.456905 -0.077873 0.243617 0.120288 0.490030 -0.169851 0.077074 -0.286143 -0.641571 0.236609 0.355264 -0.688320 0.046960 -0.635089 0.499600 0.240147 -0.277768 -0.138273 -0.596311 0.284197 -0.279365 0.218787 0.041058 0.037362 -0.325047 0.347013 0.200724 0.278660 0.417724 -0.247210 0.315171 0.304657 0.404111 -0.079276 0.457627 -0.788975 0.282995 -0.418591 0.113220 -0.354792 -0.009408 0.742757 0.692973 0.300550 -0.575584 0.652039 0.282737 0.056568 -0.332595 0.194014 -0.010008 -0.036981 -0.192467 0.445845 -0.212561 0.089859 0.038864 0.280179 0.069064 -0.439209 -0.260089 -0.161393 0.121518 -0.228635 0.344663 0.056249 -0.072742 -0.015338 0.131952 0.539978 0.221302 0.804771 0.126176 -0.094996 -0.007387 -0.652107 0.088045 0.724605 -0.125601 -0.387480 0.816705 -0.368776 -0.158167 -0.160514 0.550475 0.273378 0.014097 -0.270998 -0.263756 0.179108 0.217727 0.494404 -0.090164 -0.070988 -0.588477 -0.032196 -0.244694 0.151075 1.047449 0.347533 -0.799352 -0.070139 0.657119 -0.302586 -0.253626 0.257106 -0.341463 -0.071276 -0.103641 0.465759 0.303262 -0.431060 -0.362654 0.199871 -0.415667 0.211560 -0.142346 -0.227017 -0.179121 -0.434644 0.254230 1.072259 0.113431 -0.096528 0.094382 -0.635773 0.024277 -0.672106 -0.193522 0.284454 -0.010621 0.276728 -0.188806 -0.371883 0.559274 -0.142604 0.177655 -0.834231 0.075344 0.477986 -0.257995 -0.185070 -0.347492 -0.061314 -0.096502 -0.107439 -0.024351 -0.348238 0.014544 0.458991 -0.153901 0.582156 0.233850 -0.242882 0.271813 0.307601 -0.647142 1.040539 0.149363 0.349230 0.376874 0.227300 -0.366982 0.051814 -0.301619 -0.241522 -0.323441 0.341836 -0.509445 -0.231184 0.284635 0.024915 -0.645278 0.034725 0.610737 -0.056910 0.172586 -0.122858 -0.198801 -0.372331 -0.668022 0.586450 0.092335 -0.315316 -0.205530 0.401362 0.829111 -0.220842 -0.184520 0.147098 0.370901 0.724251 -0.670752 0.465119 0.306375 0.366472 -0.513650 -0.409829 0.266655 -0.385343 0.049798 -0.517733 -0.995848 -0.739240 -0.187933 0.443436 -0.280937 0.233844 0.338689 0.958806 0.339047 -0.405051 0.327822 -0.315373 -0.144668 0.065287 0.225837 0.048985 0.445223 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -4.133009 2.996864 1.801860 -4.161340 7.886200 -1.472357 0.273078 2.513614 0.285498 5.637018 -4.362249 -0.144063 -1.456915 -5.503942 0.094660 -3.394482 -0.850156 3.839407 -1.326728 2.639316 3.043283 -1.617803 1.507860 -1.929253 -2.193960 -6.000975 -1.350981 1.907302 1.863158 -1.572292 2.247748 -0.026119 6.427632 -0.944125 4.738177 4.554498 2.349484 6.094851 0.385200 1.937177 0.795427 2.791398 -2.673047 -5.601049 1.776646 -1.838924 -4.718607 -3.656553 2.763684 -5.289225 1.877386 4.812113 -0.684499 -1.685291 -3.730385 3.950722 3.551173 -0.058138 6.242824 1.134067 -2.914252 0.594790 -5.639497 4.522141 -4.010670 2.451244 -0.405422 -5.325778 -0.770657 2.005367 1.380866 -2.792780 -3.551421 2.931765 2.321106 -4.600946 0.840878 -2.751824 -3.702874 -3.500887 -3.274016 1.744789 0.201222 3.898287 0.250521 1.783085 0.016995 2.253623 -0.313501 -6.062955 -0.529310 5.686615 -2.303044 0.238837 -3.151053 3.158340 1.246837 -1.155411 -2.418564 -1.638152 1.379009 -0.293847 2.835864 -1.248096 -1.540095 -4.865518 1.642002 1.741796 0.033009 1.363693 0.500132 1.923472 2.176718 4.021138 -3.875555 2.689306 -6.805744 1.794042 -0.791833 1.319976 -1.239045 1.924960 0.825903 2.034744 4.532183 -6.345405 4.606470 -0.040375 -2.184845 -4.746576 1.282507 -0.694760 -1.699078 -1.586434 3.123594 -0.300900 -0.927477 -1.124674 1.219105 0.027813 -2.042330 -3.012930 0.537344 3.814852 -3.168647 1.823454 -1.416533 -2.308918 -0.494134 2.287767 3.275243 3.185231 7.086434 4.790899 0.087238 1.662551 -5.679313 0.425708 6.076667 2.815288 -4.676488 4.772827 -2.684984 -0.909591 1.759215 3.470778 2.829581 2.975669 -4.010443 -3.752238 0.678126 -0.450888 5.902623 2.567784 0.662350 -4.584426 3.611229 -0.315366 -1.020176 7.946454 4.077432 -5.628536 1.578903 3.742894 -4.361729 -3.872704 2.709075 -2.501159 -1.206232 -1.409472 1.292358 2.615641 -2.959847 -4.035063 -0.282002 -4.993602 5.415596 -1.183179 -0.707648 2.239667 -5.106844 -5.317296 5.508095 0.381377 -2.026449 -2.884812 -3.867625 -1.787119 -6.052489 1.841167 2.237666 -2.218030 -2.852098 -4.526552 0.255406 3.946241 -0.627418 2.299899 -4.534993 -2.539421 3.190192 0.761368 2.494777 -4.248435 -0.903815 -0.564920 0.508498 1.744731 -0.244232 2.765076 7.178932 -3.720439 3.105225 1.406101 -2.923106 1.453441 4.651334 -5.401665 6.908395 -0.299983 3.156006 0.205132 2.093467 -2.178408 0.829343 0.948993 -0.825580 -0.045168 1.859817 -3.172628 -2.091946 0.832923 -4.439136 -2.283844 1.075023 3.039859 0.364228 1.355323 0.886043 -2.794845 -1.587939 -2.278034 0.375658 3.961073 -0.100428 -3.649303 2.572148 2.129899 -1.659793 -2.153908 0.849783 2.324880 4.185636 -6.069296 2.708691 -0.635586 -0.482976 -5.653780 -4.720533 1.601227 -4.666466 -3.601220 1.817877 -6.061171 -1.781427 -3.631693 2.132644 -3.823766 -1.534666 0.916428 6.159465 3.009235 -1.373314 3.622296 -1.796731 3.726033 0.159638 -0.845968 1.359128 4.884862 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -5.178184 3.763342 2.049283 -5.792127 10.369585 -2.923208 0.733046 3.852771 0.453737 6.813333 -5.246290 -1.257194 -2.114920 -8.551151 0.716104 -4.602273 -0.226267 5.809945 -1.410028 4.593439 4.281920 -2.473692 1.934756 -2.397856 -2.880999 -6.759409 -1.511125 2.823604 2.823397 -2.436539 2.454340 0.594090 9.282978 -0.607109 7.598900 6.403420 2.735274 8.170112 1.889423 0.283753 0.469430 3.713468 -3.577718 -8.283610 2.173664 -2.037853 -6.290593 -5.421553 3.652476 -6.202771 2.073030 6.664421 -0.711014 -1.648568 -5.801224 4.093873 4.325636 1.280803 8.042532 2.013301 -3.048011 1.010357 -7.454325 4.098893 -5.132318 2.474573 -0.964429 -6.597853 -0.551670 2.740874 1.609177 -4.311009 -4.843299 3.706288 3.667181 -5.948445 1.787863 -3.231581 -4.701632 -5.025411 -5.093309 2.814366 -1.063372 6.107406 0.401437 2.677793 -0.405129 2.984558 -0.533177 -8.350387 -0.013504 6.949202 -2.858848 -0.839265 -2.783962 5.538811 1.764492 -1.375548 -3.781420 -3.076813 2.423602 -1.196768 3.994671 -0.674985 -1.267106 -6.159943 1.937365 2.435930 0.211571 3.035413 2.462979 2.637255 3.460417 5.523838 -5.424510 2.987790 -9.697080 2.739274 -2.797695 1.727846 -1.792223 3.288722 1.732457 2.812374 5.565461 -9.233009 6.111095 1.366631 -2.100403 -5.957710 2.285700 -1.016524 -2.333546 -2.557512 4.851448 -0.713180 -1.079877 -1.442246 1.631385 0.244723 -2.084368 -2.602703 0.139706 5.518411 -4.817523 2.538122 -1.899285 -3.718026 -0.351213 2.789633 4.380221 4.618872 9.677150 6.557250 -1.470500 1.460485 -8.133541 0.693389 8.578838 1.839761 -5.833499 6.759478 -3.052984 -1.599974 2.004504 5.554982 4.368837 2.780756 -5.278007 -5.012445 0.630402 0.008898 7.925142 2.440855 1.031247 -6.116983 4.990153 -0.050421 -1.546242 10.889964 4.345919 -6.937923 1.313570 5.170988 -6.358270 -5.264288 3.330529 -3.995088 -0.677186 -2.576870 2.039789 3.755749 -4.515973 -5.400812 -0.594344 -6.490193 6.382393 -1.702819 -2.162330 2.189801 -6.627896 -5.344325 8.938982 0.659819 -2.635027 -4.100493 -6.277818 -1.666972 -8.063303 2.733057 2.285462 -2.340156 -3.004822 -5.710875 -0.419271 5.713902 -0.541803 2.510357 -5.923299 -2.406640 4.543489 1.489935 3.251191 -5.436284 -1.164757 0.464340 0.053315 1.923386 -0.173027 3.713089 9.412136 -5.255667 3.059422 2.226755 -3.214931 2.872536 6.126546 -7.765511 9.816620 -0.552728 5.805200 0.475892 2.799062 -2.913458 0.944565 1.240111 -1.523034 -0.281395 2.706969 -4.180800 -2.887152 1.617880 -4.594374 -4.382824 0.873343 4.654414 -0.160943 1.968735 0.706007 -3.868266 -1.661615 -2.766585 1.428875 5.564134 -0.183941 -4.870812 3.559527 3.830025 -1.131651 -2.814961 1.166586 3.074376 6.105299 -8.306284 3.594982 -1.021063 0.925027 -6.564554 -6.951537 3.213289 -5.968882 -2.964579 2.438823 -8.192076 -2.639444 -4.954745 3.209248 -5.251290 -0.474020 1.650498 8.074917 3.774639 -2.269748 4.072330 -2.383241 4.469807 0.037011 -1.161934 1.696085 6.906202 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -1.019581 0.748740 -0.003732 -0.955985 2.227852 -0.739862 0.131642 1.345127 -0.193497 1.200401 -1.214917 0.565379 -0.160003 -1.400024 0.165848 -0.056028 0.189299 1.289185 -0.359231 0.415712 0.733013 -0.099592 0.302475 -0.662353 -0.485802 -1.367964 -0.008724 0.399725 0.105453 -0.072751 -0.018340 0.359682 1.708601 -0.173976 1.160452 1.138855 0.724641 1.518275 0.698317 0.029545 0.606666 0.537309 -0.387088 -1.656031 0.498652 -0.483157 -1.054237 -0.932924 0.646230 -1.577289 0.962320 0.959943 0.066392 -0.426490 -1.046779 0.809317 1.036576 -0.244033 1.407562 0.462284 -1.087249 -0.133141 -0.844871 1.413095 -1.109450 0.432643 0.110385 -1.436974 -0.309118 1.060486 0.743091 -0.909563 -0.972184 0.184966 0.214718 -1.003326 0.372918 -0.293108 0.105025 -0.844656 -0.753337 0.417378 -0.429473 0.947040 -0.018696 0.296727 -0.784510 0.160705 0.278646 -1.111230 -0.429945 1.266157 -0.567210 0.416665 -0.909942 0.682004 0.628240 -0.591827 -0.357881 -0.834203 0.373481 -0.080032 0.561430 -0.147650 -0.183433 -0.786267 0.474097 0.537162 0.006792 0.893627 -0.207533 0.735514 0.383775 0.560156 -0.285129 0.498691 -2.059387 0.643763 -0.216247 0.089216 -0.308477 0.149987 0.648669 0.380646 0.832985 -1.437062 1.455827 0.263594 -0.289421 -0.887393 0.580787 0.181756 -0.440023 -0.403369 0.919056 -0.030744 -0.168638 0.003796 0.403747 -0.114265 -0.902827 -1.065556 -0.322361 1.136602 -1.204101 0.415871 -0.370043 -0.521415 -0.034340 0.326013 0.519505 0.565419 1.537559 1.051793 -0.158100 0.469775 -1.537121 0.315383 1.657133 0.943729 -1.066120 0.992224 -0.562932 -0.201056 0.559195 0.705924 0.366420 0.645245 -0.859079 -0.852784 0.090304 -0.322209 1.372441 0.659291 0.337811 -1.477413 0.701092 -0.128830 0.077765 2.101274 0.801497 -1.584846 0.440834 1.299179 -0.718771 -0.786295 0.380732 -0.699487 -0.622287 -0.411188 0.473887 0.713617 -1.095678 -1.122632 -0.082653 -1.096751 1.111831 -0.144005 -0.498385 0.155461 -1.225754 -0.145211 1.727538 0.340492 -0.262647 -0.362721 -0.974734 -0.526776 -1.736389 0.226936 0.655165 -0.501672 -0.486666 -0.966339 -0.280592 1.128756 -0.473154 0.183878 -1.430297 -0.266341 0.904683 0.218186 0.140551 -1.637988 -0.294138 0.008623 0.154350 0.346438 -0.308876 0.609114 1.461182 -0.920842 0.682192 1.016301 -0.188481 0.467614 1.199949 -1.083458 1.535284 -0.184234 1.065732 0.407507 0.581653 -0.650284 0.083472 -0.213596 0.013698 -0.473341 0.684506 -1.222531 -0.426461 0.552467 -0.701183 -0.819343 0.533324 1.061692 0.418325 0.068827 -0.112709 -0.434446 -0.346139 -0.871268 0.198019 0.866705 -0.390971 -1.210394 0.476337 0.897800 -0.962420 -0.582275 0.314598 0.690716 1.154490 -1.334561 1.017632 0.068764 0.109722 -1.667722 -1.242324 0.669264 -0.856653 -0.919382 0.303113 -1.802132 -1.000551 -0.626195 0.963402 -1.484258 -0.173558 0.123091 1.401306 0.297135 -0.006428 0.986721 -0.304076 0.600211 0.026980 0.062804 0.028495 1.255421 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -1.352404 1.141787 0.656503 -1.468113 2.466186 -0.885103 0.613701 0.104970 0.266804 1.706664 -1.583032 -1.338709 -0.694889 -2.239197 0.404199 -1.997304 -0.115635 1.549699 -0.106036 1.668088 1.014277 -1.006415 0.340419 -0.769711 -0.657298 -1.490300 -0.695429 0.930641 0.865787 -0.479692 0.761707 0.442881 2.519215 -0.212651 2.257822 2.048522 -0.175211 2.306980 0.575644 -0.435061 0.268364 0.978303 -1.019898 -2.361910 0.187423 -0.332401 -1.777491 -1.747847 0.957428 -1.245434 0.422538 1.832770 -0.249715 -0.390375 -1.984596 0.866361 1.118875 1.441189 2.149323 0.487029 -0.454229 1.168079 -2.041741 0.864687 -1.233711 0.336872 -0.756590 -1.993835 0.359301 0.772988 0.281226 -0.866735 -1.585320 1.073827 1.218258 -1.503288 0.440803 -0.795793 -2.512648 -0.913466 -1.410182 0.822405 -0.529760 1.777871 0.035727 0.687941 -0.223456 0.876590 -0.126171 -2.061603 -0.151522 2.177942 -0.443233 -0.632221 -0.088398 1.856478 1.415068 -0.517730 -0.948938 -0.480219 0.589517 -0.785355 1.171967 0.332646 -0.430804 -1.643518 0.385671 0.850225 0.165577 1.564456 0.856123 1.125996 1.287976 1.147611 -1.576233 0.638870 -2.293339 0.822324 -1.490966 0.160020 -0.354350 1.216223 0.165728 0.778497 1.474907 -2.304978 1.431451 0.359973 -0.084307 -1.315712 0.541240 -0.123543 -0.578515 -0.873070 1.267322 0.005067 -0.319866 -0.174949 0.064632 0.397311 0.255262 0.076554 0.281132 1.498769 -0.531095 0.772806 -0.438800 -1.008393 -0.070159 0.721882 1.214198 1.523658 2.586653 1.964030 -0.523318 -0.731302 -2.215788 0.296030 2.355952 -0.655842 -1.454371 1.929102 -0.396478 -0.789080 0.224789 1.643243 1.362778 0.972270 -1.315904 -1.653979 -1.101734 0.020416 1.980897 0.990262 -0.160896 -1.234037 1.631653 -0.234216 -0.581365 2.692776 0.838125 -1.473461 -0.423372 1.604691 -2.925044 -1.800546 1.104230 -1.103951 0.193435 -0.938023 0.581632 1.084964 -1.181478 -1.126335 -0.228715 -1.674997 1.446166 -0.629904 -0.987320 0.125678 -1.592761 -1.760047 2.607847 0.376916 -0.358462 -1.110428 -1.746582 -0.144680 -2.130793 0.693909 0.432951 -0.384631 -0.848271 -1.338604 -0.253884 1.238498 -0.287205 1.032866 -0.518077 -0.541072 1.158150 0.798636 0.664458 -0.965078 -0.261538 0.391882 -0.102941 0.123122 0.341218 1.138104 2.484449 -1.337417 0.443666 0.875261 -1.002065 1.099317 1.768420 -2.268035 2.690919 -0.407921 1.209755 0.206517 0.638775 -0.439568 0.048741 0.644628 -0.929522 -0.335618 0.590310 -0.951001 -0.740421 0.672700 -0.860909 -1.208014 0.066199 1.419681 0.030182 0.651750 0.358120 -1.381218 -0.386288 -0.426969 0.581105 1.367475 0.261470 -1.060471 1.318134 1.077435 -0.117900 -0.962557 0.100931 0.733874 1.380423 -2.362208 1.013724 -0.393582 0.611256 -1.340680 -1.450508 0.913011 -1.703971 -0.665630 0.621125 -1.682559 -0.506203 -1.417924 0.742633 -0.822673 -0.730482 0.707165 2.206676 1.103603 -0.837170 0.783448 -0.878783 1.004774 0.074527 -0.559349 0.436878 1.966197 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -3.492548 -0.023964 0.720885 -4.199301 8.114898 -2.592853 -0.932943 3.920716 0.466318 5.134708 -2.857349 -1.056717 -2.139764 -7.484137 1.295816 -2.842918 0.383179 3.237139 -0.603714 3.745967 3.327714 -0.901093 1.285123 -1.082377 -1.781020 -4.227781 -1.427485 2.558339 2.369117 -2.569554 1.683031 1.100449 7.261760 0.236169 6.228623 5.112711 2.663378 5.861365 1.606860 -0.220972 -0.003507 3.046770 -2.904376 -5.833959 1.479522 -1.046699 -4.887773 -3.565337 2.872688 -2.924699 1.281479 5.585779 -0.780557 -0.548179 -5.430265 1.806818 0.792774 0.659210 5.616027 1.761729 -3.150428 -0.312685 -5.770222 3.393910 -3.625068 1.575283 -0.541911 -3.243963 0.560448 1.595953 1.362989 -3.849673 -3.518236 2.903672 2.770800 -4.186338 1.960901 -2.018033 -0.779089 -3.421565 -3.762859 2.493586 -1.641343 4.794365 -0.000374 2.108233 -0.593008 2.142529 -0.648491 -6.216828 0.674088 4.515292 -3.023354 -1.426375 -3.599764 5.094773 0.802724 -0.696463 -1.861304 -1.697290 1.730021 -1.522504 3.493037 0.516886 -0.412542 -4.473573 1.420125 0.198215 1.113796 2.762281 2.061956 1.282921 2.615593 3.866410 -2.681600 2.064472 -6.679164 2.430325 -2.797362 1.772247 -2.658833 3.264752 2.661703 2.024242 3.898578 -6.548963 3.546640 1.037965 -0.679266 -3.820809 1.625991 -0.819763 -2.193588 -1.492330 4.360197 -0.690691 -1.320556 -0.885581 2.065722 1.485913 -2.021895 -1.304773 0.183872 3.166328 -2.375303 1.777385 -1.487285 -3.030408 -0.020191 1.838030 3.400552 4.517611 7.556782 4.785987 -1.673634 0.485342 -6.655271 0.806994 6.643007 -0.589923 -4.122334 5.424295 -2.874450 -1.158096 0.630645 5.054189 4.521182 1.079814 -2.647394 -2.206460 1.568037 1.220795 6.056207 1.171891 1.254721 -3.706592 1.338763 -0.658610 0.135658 7.044970 1.942602 -5.482885 1.115036 3.893369 -3.210314 -3.369661 2.336893 -2.344720 0.016341 -3.034492 2.854645 3.843129 -3.696258 -2.860181 -0.370766 -4.377365 3.788979 -2.062398 -1.462498 2.151498 -4.960008 -3.299602 6.913080 0.343671 -1.172039 -3.399511 -5.600292 0.067818 -6.055359 2.535234 1.229163 -0.553889 -0.683966 -4.026828 -1.020693 4.751591 0.414662 2.628335 -4.862570 -0.565434 3.321635 0.491995 2.035276 -3.639142 -0.772435 0.596851 0.094316 1.658131 -1.091913 1.450205 6.658325 -4.390877 2.621108 1.983265 0.022024 1.601066 3.920826 -6.593047 7.941600 0.437365 4.773322 -0.188047 1.779215 -1.668624 0.582670 0.640570 -1.159390 0.225508 1.029074 -2.651240 -2.282036 2.222654 -2.573094 -3.566512 -0.187878 3.798849 -0.982654 2.183630 -0.133573 -2.532416 -1.693064 -2.534241 3.234344 4.438129 -0.939503 -2.995023 3.460655 3.779689 -1.493324 -0.996172 0.458821 2.432938 5.123139 -6.799248 2.004595 -0.627834 2.452531 -3.483557 -5.222458 2.564719 -2.766212 -1.035069 1.550962 -5.614336 -2.798601 -4.112288 2.331986 -3.779162 0.049694 0.466032 5.800248 3.535201 -1.519475 2.044621 -1.585093 1.758280 -0.669444 -1.122949 2.731231 4.550606 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -1.214810 0.979856 0.034857 -0.856687 2.085378 -0.502238 0.292897 1.179006 -0.599616 1.775056 -1.120605 0.351511 -0.364151 -1.586802 -0.016431 -0.164513 -0.002870 0.986071 -0.113205 0.698083 0.838166 -0.732390 0.269502 -0.439561 -0.717132 -1.524487 0.035580 0.472007 0.869352 -0.613903 0.081562 0.170425 1.934989 -0.075138 1.749077 1.402515 0.433234 1.686995 0.828234 -0.153787 -0.171040 0.846215 -0.815539 -1.616963 0.367970 -0.582698 -1.020613 -1.064260 0.706442 -1.175505 1.096872 1.325986 -0.236310 -0.108795 -1.257184 0.921041 0.946019 -0.221067 2.055501 0.276877 -0.867115 -0.202676 -1.238888 1.551309 -0.955655 0.086429 0.074684 -1.309668 0.355453 0.367977 0.382198 -1.043024 -0.657161 1.067484 0.384553 -1.505704 0.245214 -0.628029 -1.195802 -1.422321 -1.142195 0.473339 -0.005580 1.281471 0.091475 0.487788 -0.589945 0.713108 -0.203069 -2.014813 0.085191 1.608331 -0.821942 0.167287 -0.751061 1.424306 0.233676 -0.057621 -0.787873 -0.406422 0.464087 -0.083822 0.738716 -0.922437 -0.012756 -1.343363 0.545167 0.017624 0.000567 0.486204 0.795285 0.589712 1.024611 1.427822 -0.807589 0.521562 -2.078072 0.625723 0.230772 0.198203 -0.268589 0.561940 0.211452 0.211460 1.541580 -2.123032 1.029365 0.106720 -0.309324 -1.806840 0.180358 -0.468242 -0.519550 -0.614138 1.024242 -0.065929 -0.148887 -0.604925 0.278508 0.073594 -1.175442 -1.119048 0.311239 1.823269 -1.402063 0.428462 -0.422666 -0.577822 -0.332681 0.789410 0.983732 1.102234 1.974632 1.368066 0.012488 0.556370 -1.760536 -0.033144 1.741804 1.204336 -1.492675 1.527871 -1.060676 -0.418757 0.566784 1.084422 1.052638 0.292746 -1.396108 -1.162384 1.022983 0.120180 1.856826 0.264083 0.475504 -0.676584 1.382903 0.239055 -0.653342 2.169590 0.882659 -1.703219 0.646738 0.869700 -0.781596 -0.551470 1.053768 -1.072921 -0.326536 -0.459015 0.193851 0.831839 -0.984562 -0.724625 -0.025588 -1.501753 1.819932 -0.266486 0.133762 0.603848 -1.554336 -0.480296 1.622744 0.178369 -0.431312 -0.830625 -1.134961 -1.249032 -1.691045 0.396274 0.526908 -0.571620 -0.795581 -1.516701 -0.111953 1.106851 0.037676 0.709938 -1.415805 -0.598144 1.014085 0.315454 0.526761 -1.233673 -0.319982 0.094852 0.296597 0.719312 -0.228678 1.416737 2.048105 -0.954831 0.958871 0.697594 0.096983 0.669707 1.061595 -1.793295 1.916893 -0.217710 0.963464 0.191062 0.600376 -0.750987 0.096626 0.132659 0.296254 -0.127905 0.417368 -0.802544 -0.522314 0.092199 -1.335968 -0.719890 0.028094 0.688048 0.135615 0.374325 0.028540 -0.665508 -0.587498 -1.473009 0.235257 1.127884 -0.123131 -0.875951 0.986934 0.302711 -0.175961 0.170847 0.203742 0.678116 1.103039 -1.745069 0.291727 -0.210271 0.112447 -1.432881 -1.724135 0.387863 -1.087168 -1.159275 0.737769 -2.003904 -0.332880 -1.009175 0.392840 -2.114485 0.011530 0.096557 2.054894 0.546289 -0.433176 0.913160 -0.517102 1.031455 0.103629 0.093159 0.230648 1.442212 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.308938 0.084663 -0.139031 -0.197410 0.761662 -0.364791 -0.104895 0.607126 0.110700 0.446781 -0.267743 0.129506 -0.069256 -0.422462 0.093474 0.149621 0.185829 0.460676 -0.119961 -0.048898 0.196122 0.099867 0.096343 -0.096154 -0.149681 -0.520167 0.020481 0.176299 0.019851 -0.109576 -0.218663 0.240162 0.659305 -0.099180 0.449204 0.381846 0.345647 0.382268 0.367286 -0.016387 0.242244 0.113643 -0.117085 -0.463223 0.111926 -0.082527 -0.339368 -0.200025 0.261523 -0.389661 0.391661 0.295783 -0.007246 -0.029460 -0.303447 0.282474 0.090519 -0.051926 0.468439 0.134685 -0.430202 -0.121780 -0.218423 0.729868 -0.430609 0.055148 -0.148319 -0.542221 -0.155373 0.393421 0.167250 -0.253545 -0.209331 0.093007 0.048018 -0.335362 0.130652 0.023956 0.424177 -0.243514 -0.375598 0.200500 -0.206127 0.276926 0.038572 0.121239 -0.311077 0.052285 0.063255 -0.392179 -0.015876 0.349619 -0.312342 0.190788 -0.194477 0.094241 0.235229 -0.202574 0.062250 -0.375841 0.093445 -0.181908 0.197358 0.026711 0.198300 -0.120779 0.146258 0.078761 0.155619 0.313490 -0.021996 0.177931 0.160818 0.198925 0.084636 -0.049924 -0.681665 0.329835 -0.103619 -0.063636 -0.142054 0.083879 0.328004 0.151837 0.330264 -0.527007 0.373486 0.056850 -0.004848 -0.204695 0.139670 0.081814 -0.114805 -0.162060 0.390593 -0.086462 -0.062865 -0.010456 0.223174 0.027605 -0.383620 -0.192170 -0.188556 0.239281 -0.396465 0.160728 -0.118410 -0.197572 0.013334 0.115457 0.188837 0.320712 0.478026 0.358927 -0.127790 0.057925 -0.634856 0.115738 0.459960 0.096547 -0.316333 0.403810 -0.296740 -0.112506 0.185575 0.362105 0.117231 0.157205 -0.075085 -0.137897 -0.016878 0.079072 0.463403 0.079379 0.103889 -0.341870 -0.006973 -0.054574 0.037782 0.711335 0.168643 -0.585115 0.186930 0.456593 -0.177755 -0.212178 0.153548 -0.360447 -0.177621 -0.279790 0.196984 0.396031 -0.447051 -0.171191 0.154900 -0.312634 0.313657 -0.057686 -0.249551 0.171032 -0.461532 0.136835 0.645758 0.168926 0.083878 -0.148069 -0.462719 -0.186382 -0.562771 0.013159 0.163401 -0.111256 0.007428 -0.320585 -0.208397 0.448736 -0.004163 0.183481 -0.601454 0.103674 0.343409 0.054212 -0.058715 -0.384311 -0.069747 0.088869 -0.088418 0.032271 -0.240172 0.129839 0.304473 -0.313532 0.276529 0.351213 -0.109547 0.150326 0.212377 -0.418474 0.514640 -0.006490 0.119025 0.257332 0.163568 -0.266863 0.054139 -0.150931 0.015203 -0.277038 0.174885 -0.424663 -0.173705 0.226620 -0.207725 -0.364430 0.022986 0.391517 0.179886 0.032623 -0.183025 -0.162711 -0.107924 -0.338984 0.220587 0.232613 -0.120946 -0.302442 0.309695 0.313143 -0.393700 -0.267360 0.104250 0.196961 0.384522 -0.471107 0.245355 0.124600 0.243269 -0.518697 -0.394106 0.117533 -0.191151 -0.195193 -0.015589 -0.683812 -0.444768 -0.165829 0.291880 -0.467124 0.051039 0.077692 0.539225 0.048118 -0.065028 0.333211 -0.079699 0.018852 0.022013 0.007844 -0.010381 0.351044 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.963437 0.543775 0.012186 -0.946787 2.221361 -0.677054 -0.052113 1.111587 0.106917 1.169805 -1.067739 0.209439 -0.343595 -1.434244 0.141807 -0.264831 0.183984 1.190049 -0.448032 0.414855 0.731743 -0.140149 0.429255 -0.538208 -0.437646 -1.356124 -0.111586 0.450062 0.087820 -0.081061 0.031414 0.280474 1.649684 -0.121208 1.060147 0.971493 0.617102 1.554398 0.488926 0.184562 0.550146 0.537409 -0.366791 -1.642477 0.574592 -0.470241 -1.158823 -0.929552 0.705221 -1.609952 0.810043 0.993361 0.013877 -0.452838 -0.993354 0.768248 0.970257 0.090025 1.345940 0.407735 -0.980977 -0.152964 -0.985092 1.005740 -1.076994 0.492160 0.028802 -1.410985 -0.414128 0.971426 0.509137 -0.794513 -0.953693 0.200870 0.395296 -0.887236 0.378010 -0.286229 -0.009670 -0.708912 -0.829056 0.360511 -0.486213 0.885039 -0.057271 0.369961 -0.476878 0.170862 0.200889 -1.102020 -0.279160 1.227044 -0.522896 0.375534 -0.681087 0.693681 0.466701 -0.593983 -0.464486 -0.663433 0.295798 -0.128254 0.601638 -0.045452 -0.321079 -0.884237 0.640898 0.546575 0.126979 0.709278 0.003019 0.515855 0.267451 0.575525 -0.529816 0.649310 -2.005665 0.537955 -0.300546 0.164300 -0.365737 0.285373 0.585401 0.430231 0.794797 -1.456238 1.471112 0.225001 -0.314348 -0.774547 0.567623 0.189645 -0.363522 -0.337883 0.947369 -0.172462 -0.210125 -0.001139 0.389562 -0.081677 -0.830813 -0.694753 -0.310999 0.972601 -0.987138 0.460677 -0.359837 -0.651681 0.069603 0.263855 0.516360 0.574805 1.584401 1.018506 -0.254988 0.309748 -1.498435 0.381342 1.668113 0.603756 -1.023958 0.948081 -0.423223 -0.081871 0.469501 0.715171 0.506847 0.702753 -0.635890 -0.717462 -0.111832 -0.144411 1.275552 0.717192 0.367429 -1.529809 0.539955 -0.168540 0.270512 2.039148 0.850907 -1.477237 0.292690 1.221785 -1.007148 -0.782436 0.296893 -0.490128 -0.371553 -0.496822 0.556395 0.765453 -1.051418 -1.191763 -0.076511 -1.055580 1.001501 -0.222295 -0.449941 0.258286 -1.252145 -0.235422 1.698469 0.287016 -0.270545 -0.386002 -1.115205 -0.509352 -1.651678 0.263974 0.560209 -0.463109 -0.414126 -0.867532 -0.272649 1.160618 -0.292357 0.231288 -1.323888 -0.169458 0.849516 0.228135 0.247660 -1.280946 -0.258666 0.059354 -0.028690 0.358205 -0.181195 0.430118 1.380492 -0.927940 0.727950 0.783176 -0.260820 0.462050 1.186381 -1.010519 1.553239 -0.172821 1.129680 0.248395 0.566928 -0.478210 0.214324 -0.121224 -0.181385 -0.378202 0.680120 -1.128756 -0.487839 0.603568 -0.678436 -0.873096 0.424174 1.042469 0.410663 0.181012 -0.108007 -0.526513 -0.310928 -0.600761 0.288794 0.821225 -0.264951 -1.112936 0.421695 0.876828 -0.819974 -0.783675 0.338285 0.591495 1.150455 -1.319613 0.931929 0.071396 0.090784 -1.478687 -1.009560 0.545074 -0.820140 -0.768543 0.365908 -1.707294 -0.870267 -0.619450 0.952787 -1.120719 -0.091204 0.047968 1.330743 0.487957 -0.059012 0.978363 -0.250189 0.505338 -0.007744 -0.109641 0.170928 1.223353 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -2.843163 2.012313 -0.028044 -3.367967 6.942927 -1.192090 0.005672 2.425800 -0.545789 3.377734 -3.474968 0.761016 -0.923209 -4.926983 0.349106 -1.141483 -0.012147 2.916429 -1.295870 2.089586 2.243979 -1.546829 1.514444 -1.867344 -1.333115 -4.114222 -0.317220 1.374978 1.038110 -0.122947 0.712219 0.034217 4.225871 -0.412419 2.458966 2.454713 1.418213 4.776340 0.784799 -0.266022 1.326682 1.764867 -1.122438 -5.004070 1.821888 -1.699969 -3.951881 -2.928658 2.046812 -5.168124 1.146444 3.187012 0.062721 -1.968646 -3.285453 2.530920 4.145341 0.190384 4.012657 1.147948 -2.170189 -1.058156 -3.335626 1.659478 -2.834101 1.417333 0.559674 -3.680061 -1.006138 2.743859 0.630755 -2.096799 -2.926955 0.581130 1.823623 -2.647018 1.136553 -1.449362 -1.667247 -2.552599 -1.820066 0.820857 -1.509624 2.964211 -0.287255 1.244436 -0.192454 0.543065 0.481811 -3.315240 -1.095267 3.732485 -1.050788 0.455796 -1.902777 3.269587 1.196943 -1.775836 -2.389422 -1.393956 0.834441 0.258807 1.787359 -1.083162 -1.448776 -3.572003 1.909001 1.643722 0.265512 2.139652 0.286575 1.210042 0.258734 1.833562 -2.879686 2.509817 -5.849678 0.665324 -0.797262 1.208531 -1.358540 0.874422 1.730769 1.383912 2.208332 -4.413213 4.954431 0.792787 -0.973106 -2.642823 1.795089 0.507505 -1.079023 -0.550771 2.347419 -0.669133 -0.552976 0.089665 1.109981 -0.151652 -2.648740 -1.707815 -0.434189 3.756468 -3.389587 1.421880 -0.934813 -1.835856 0.287982 0.638935 1.700613 1.182124 5.067093 2.891838 -0.576160 2.235455 -3.946543 1.529090 5.788976 2.226606 -3.114836 2.537204 -1.105338 0.108664 1.127422 1.622261 1.894108 2.358814 -2.695291 -2.482742 0.388863 -0.764300 3.689135 2.213085 1.199976 -5.363389 2.633405 -0.267534 1.224421 5.880665 2.914279 -4.243774 1.291669 3.491995 -3.853437 -1.878952 0.672947 -0.810799 -0.728202 -1.186606 1.679694 1.891238 -2.679623 -4.471959 -1.402744 -3.166769 3.118657 -0.756096 -0.949250 0.563784 -3.045173 -1.025949 4.560821 0.551891 -1.480464 -1.260357 -2.970439 -2.239779 -4.796401 0.963761 1.526464 -1.948758 -1.650566 -2.596126 -0.797956 3.461221 -1.178264 0.180884 -4.632982 -0.588112 2.275228 1.567018 1.280081 -3.334879 -0.738450 0.084199 0.053516 1.166246 -0.268820 1.588378 4.575493 -2.831021 2.326055 0.928409 -0.636753 1.763463 4.194641 -2.654274 4.773241 -0.328997 4.979332 0.013435 1.862344 -1.023535 0.932900 -0.079621 -1.363261 -0.409244 2.096517 -3.270116 -1.515215 2.123323 -1.777642 -2.878152 1.697474 2.985727 1.367861 0.671870 -0.020320 -1.374282 -0.982019 -1.253343 0.494297 2.454182 -0.892019 -3.409792 0.545111 2.763283 -1.516706 -2.280838 1.046056 1.874006 3.433280 -3.832040 3.040741 -0.244146 -0.188261 -4.243906 -3.016401 1.880308 -2.371521 -2.360928 1.982289 -5.072877 -1.899611 -2.016071 2.848764 -3.331945 -0.365059 -0.115793 3.681779 1.555955 -0.102924 2.902993 -0.783153 1.900940 -0.341125 -0.168736 0.846364 3.458756 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.996814 0.615370 -0.358576 -0.798471 2.391472 -0.810960 0.133386 1.423019 -0.750498 1.285170 -0.915416 0.783707 -0.183117 -1.728746 0.290749 0.294308 0.398798 1.205259 -0.112272 0.575233 0.701072 -0.454845 0.287938 -0.430642 -0.507180 -1.567427 0.173042 0.539137 0.631639 -0.421590 -0.086353 0.468408 1.813078 -0.270014 1.185808 1.149442 0.782510 1.324973 1.000503 -1.017290 0.366473 0.529303 -0.452891 -1.544639 0.449939 -0.351242 -1.175739 -0.765797 0.731082 -1.189877 0.278835 1.090376 -0.044988 -0.261058 -1.269115 0.873855 1.183754 -0.559711 1.516776 0.402001 -0.826286 -0.666901 -0.737233 1.569505 -1.056751 -0.194028 -0.138254 -1.315491 -0.020064 0.997094 0.241891 -0.867977 -0.745810 0.402218 0.411143 -1.160590 0.380038 -0.188990 0.056415 -1.366438 -0.942431 0.396634 -0.634398 1.192239 0.037482 0.386552 -0.415534 0.183883 0.155751 -1.341713 -0.159207 1.137457 -0.682924 0.190618 -0.721601 1.141679 0.665572 -0.530423 -0.522818 -1.016127 0.324855 -0.360854 0.651072 -0.449721 0.380431 -0.734780 0.066043 -0.091046 0.373191 1.281011 0.168039 0.577702 0.408358 0.723319 -0.507820 -0.018846 -1.999321 0.698712 -0.221922 0.153874 -0.463666 0.278997 0.947986 0.375109 1.029203 -1.791002 1.243985 0.267425 0.109113 -1.074554 0.468349 0.135668 -0.368766 -0.458710 1.077862 -0.315198 -0.138027 -0.069376 0.598259 0.239973 -1.219488 -0.713418 -0.304466 1.609881 -1.767659 0.511308 -0.391722 -0.604059 0.029987 0.244875 0.666780 0.881444 1.580750 1.190516 -0.352775 1.343916 -1.766363 0.419342 1.828401 1.024304 -1.068795 1.171856 -0.892493 -0.320980 0.539203 0.901628 0.707988 0.254325 -0.937158 -0.807236 0.801052 0.055411 1.479680 0.147059 0.349749 -1.454197 0.753950 0.275462 0.043759 2.136543 0.414258 -1.733067 1.115503 1.262530 -0.781711 -0.421240 0.415907 -1.029927 -0.628667 -0.649641 0.580874 0.986464 -1.182655 -0.820957 -0.165425 -1.033197 1.053539 -0.229265 -0.630324 0.444830 -1.063816 -0.003798 1.698851 0.341954 -0.086099 -0.668165 -1.246644 -0.784787 -1.695766 0.222246 0.315849 -0.595423 -0.325499 -1.154256 -0.675148 1.371027 -0.115303 0.312897 -2.416692 0.202304 0.961563 0.749517 0.029758 -1.382642 -0.240184 0.394732 0.060731 0.089804 -0.533742 0.776799 1.272464 -1.133732 0.641191 0.339077 -0.148049 0.863280 0.906407 -1.322094 1.640412 0.071525 1.638220 0.446000 0.550926 -0.753294 0.196160 -0.228353 -0.044164 -0.561074 0.474595 -1.188937 -0.527670 0.854038 -0.489747 -1.327961 0.215643 1.077839 0.516397 0.175952 -0.412496 -0.282343 -0.335815 -0.838654 0.451964 0.854138 -0.499573 -0.955819 0.708733 0.943654 -0.565580 -0.422702 0.297722 0.783299 1.085295 -1.474744 0.837393 -0.065016 0.540113 -1.377080 -1.675853 0.829151 -0.681957 -0.755022 0.640752 -2.175562 -0.836321 -0.682577 0.850783 -1.778086 0.179207 0.075656 1.560859 -0.016363 -0.112769 1.031784 -0.321604 0.376636 -0.242960 0.329173 0.024272 1.130303 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.415295 0.953946 -0.081263 -1.296971 3.498642 -0.995119 0.330085 2.182871 -0.856809 1.806068 -1.566578 1.214075 -0.125760 -1.941545 0.259959 0.088690 0.278206 1.669195 -0.509281 0.608898 0.947057 -0.091836 0.435856 -0.761555 -0.798134 -2.004453 0.094258 0.666091 0.467104 -0.236185 -0.129145 0.479769 2.408526 -0.519120 1.624355 1.559580 1.264209 1.864071 0.967108 -0.586017 0.860436 0.635764 -0.596722 -2.101713 0.506694 -0.617396 -1.788768 -1.084133 0.976125 -2.141599 0.898052 1.408389 0.053611 -0.536173 -1.352426 1.514655 1.398260 -0.883827 2.028241 0.574147 -1.682087 -0.601806 -1.190294 2.468178 -1.391663 0.482842 -0.165621 -2.049649 -0.443917 1.544348 0.744586 -1.358031 -1.216465 0.422870 0.425927 -1.531861 0.494714 -0.416516 0.370735 -1.486144 -1.003170 0.642791 -0.649410 1.334391 0.067387 0.506956 -0.897715 0.273531 0.221676 -1.750051 -0.459918 1.929945 -0.996010 0.432431 -1.675133 0.911695 0.807901 -0.789754 -0.581791 -1.401127 0.510462 -0.156896 0.804350 -0.851135 0.248796 -1.139316 0.260441 0.570666 0.323555 1.502544 -0.516541 0.974217 0.585169 0.938037 -0.339158 0.566241 -2.869002 0.971864 -0.406592 0.170771 -0.641797 0.241035 1.201457 0.756355 1.358376 -2.200018 1.958139 0.241946 -0.378063 -1.418070 0.701273 0.256020 -0.571488 -0.520868 1.291385 -0.212723 -0.213571 -0.071260 0.825060 0.005165 -1.490475 -1.469960 -0.358065 1.604891 -2.124285 0.641378 -0.469001 -0.576000 -0.050406 0.622949 0.970456 0.954023 2.243135 1.506678 -0.146673 1.237578 -2.339931 0.496858 2.310259 1.454244 -1.507904 1.583761 -1.229914 -0.383928 0.723266 1.110159 0.546664 0.896753 -1.362770 -1.197898 0.632814 -0.197350 2.064560 0.751239 0.408162 -2.068630 0.865040 -0.466440 0.117070 2.823838 1.196346 -2.455593 0.980901 1.792730 -0.724509 -0.978110 0.661156 -1.402499 -1.104448 -0.590470 0.640004 1.178211 -1.489206 -1.370931 0.007807 -1.470936 1.608403 -0.259846 -0.939752 0.311959 -1.579097 -0.161870 2.306210 0.485705 -0.285852 -0.618017 -1.464272 -0.977858 -2.425527 0.257876 0.892206 -0.694992 -0.691375 -1.497660 -0.618850 1.597522 -0.478980 0.456847 -2.665983 -0.148223 1.342631 0.552855 0.245202 -2.251082 -0.314073 -0.067962 0.107333 0.338169 -0.795175 0.938840 1.942112 -1.352557 1.185418 0.953001 -0.542440 0.652325 1.499315 -1.653844 2.253835 0.089611 1.773602 0.641078 0.784929 -1.020889 0.227813 -0.425618 -0.037599 -0.704253 0.899735 -1.740992 -0.688927 0.743607 -0.936696 -1.438618 0.568126 1.526330 0.431343 0.138409 -0.329235 -0.527019 -0.646632 -1.516554 0.385752 1.153669 -0.911448 -1.574236 0.891935 1.259856 -1.361979 -0.627136 0.406480 1.139675 1.566162 -1.956285 1.308616 0.074914 0.432924 -2.490043 -2.005578 0.914619 -1.163065 -1.350153 0.393877 -2.634214 -1.483554 -0.913397 1.258895 -2.367501 -0.429303 0.373677 2.160941 0.174916 -0.054802 1.429763 -0.471453 0.745385 -0.084026 0.350442 0.073191 1.510704 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.980500 2.072379 -0.453200 -2.978889 7.568629 -1.539187 0.623882 4.213290 -2.321076 3.996667 -3.299034 2.769780 -0.205048 -4.339568 0.450544 0.194825 0.279970 3.126978 -1.078824 1.553235 1.960573 -0.747486 1.252670 -1.605264 -1.751424 -4.524901 0.314634 1.485916 1.616299 -0.427879 -0.126396 0.420296 4.655950 -1.404801 2.815283 2.927403 2.680936 3.729434 1.756052 -1.981943 1.665469 1.357321 -1.339549 -4.290117 1.051046 -1.438200 -4.079911 -2.176008 2.225668 -4.654819 0.875345 3.086732 0.012693 -1.601122 -2.948915 3.534328 3.437950 -2.244385 4.385357 0.959510 -3.080440 -2.027862 -2.676133 5.077258 -2.882584 0.880881 -0.360552 -4.102930 -0.987896 3.244625 0.702740 -2.347482 -2.458492 1.024386 1.360490 -3.381052 0.867098 -1.240774 0.259079 -3.289504 -1.712559 1.208608 -1.475353 2.923089 0.230875 1.265393 -0.966937 0.724572 0.396554 -3.820948 -0.950114 4.082554 -1.814812 0.539083 -3.427743 2.340472 1.660120 -1.835021 -1.562528 -2.581379 0.890768 -0.057567 1.797666 -2.640818 0.675609 -2.900713 0.347947 1.115464 0.926634 3.166493 -1.110776 1.701183 0.826729 2.154386 -1.255254 1.099693 -5.830399 1.551600 -0.730361 0.713676 -1.645435 0.606372 2.665659 1.699039 2.983477 -4.781084 4.341592 0.411089 -0.783539 -3.204016 1.447976 0.665848 -0.990701 -0.718746 2.450300 -0.835189 -0.466357 -0.142820 1.957169 0.176986 -3.522567 -2.643013 -0.459875 3.658223 -4.766585 1.550248 -0.923335 -1.138391 0.120838 1.261256 2.197137 1.881031 4.855831 3.226775 -0.154216 3.725730 -4.671300 1.375718 5.135775 3.267610 -3.199587 3.264566 -2.850616 -0.749125 1.368622 2.116580 1.371745 2.244642 -3.151575 -2.581088 1.829136 -0.407770 4.333586 1.488189 0.903505 -4.668094 2.117059 -0.937839 0.662886 5.645249 2.656915 -5.205105 2.709713 3.728042 -2.026668 -1.701683 1.266944 -2.775849 -2.164024 -1.254881 1.332547 2.534874 -2.907717 -3.225988 -0.636459 -3.041801 3.575776 -0.612278 -1.934932 0.889045 -2.930807 -0.400744 4.305097 0.955609 -0.877706 -1.558283 -2.970432 -2.716353 -5.052017 0.631896 1.771991 -1.928128 -1.591791 -3.298278 -1.537591 3.271291 -0.834778 0.875712 -6.513863 -0.071607 2.778749 1.916216 0.770241 -4.205857 -0.509708 -0.129565 0.142347 0.633332 -1.750550 2.089953 3.974160 -3.032795 2.677879 0.809498 -1.309052 1.643616 3.216113 -3.366387 4.837635 0.534619 4.293000 1.071579 1.712986 -1.896998 0.954675 -0.820179 -0.732098 -1.029984 1.813668 -3.758905 -1.714701 1.882497 -1.832197 -3.323830 1.218759 3.215522 1.128198 0.406842 -0.708748 -0.942365 -1.458742 -2.884840 0.652207 2.379015 -2.050212 -3.257844 1.642212 2.758433 -2.456871 -1.486001 0.906525 2.538527 3.173872 -4.160866 2.929329 -0.128955 0.820369 -5.218627 -4.191610 2.002360 -2.180781 -2.839010 1.353492 -5.678116 -2.767914 -2.033427 2.578445 -4.937434 -0.990240 0.669725 4.475489 0.198650 -0.021346 3.161933 -1.039000 1.594512 -0.411044 0.858811 0.391780 2.888424 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.347314 0.275909 -0.036637 -0.268199 0.719972 -0.207796 -0.100760 0.582962 0.041943 0.499971 -0.351084 0.109941 -0.015347 -0.453824 0.055350 0.068802 0.026246 0.421090 -0.077765 0.085615 0.241271 -0.039122 0.066783 -0.154580 -0.174458 -0.521634 -0.012934 0.145271 0.126118 -0.073517 -0.107804 0.109100 0.599455 -0.061516 0.508832 0.425122 0.279135 0.407975 0.308016 0.078205 0.093152 0.196132 -0.207696 -0.498407 0.131554 -0.169102 -0.311434 -0.268416 0.217187 -0.431026 0.408169 0.342515 -0.039816 -0.053433 -0.286104 0.272006 0.153535 -0.007630 0.533575 0.135057 -0.365565 -0.081780 -0.329471 0.621441 -0.370221 0.126432 -0.056398 -0.514931 -0.056251 0.257277 0.185246 -0.245164 -0.166908 0.232351 0.051186 -0.378731 0.150181 -0.133459 0.123212 -0.287054 -0.315307 0.197489 -0.141471 0.335340 0.022502 0.121214 -0.313589 0.142684 0.000824 -0.499155 -0.031716 0.410279 -0.283523 0.129707 -0.186736 0.224632 0.234421 -0.076374 0.002953 -0.234055 0.153502 -0.038813 0.201904 -0.033753 0.138368 -0.270430 0.187428 0.107997 0.076021 0.285548 0.014579 0.232790 0.252132 0.337702 -0.061618 0.059051 -0.630668 0.255673 -0.104586 0.046275 -0.096332 0.117994 0.259434 0.144087 0.372855 -0.533317 0.369840 0.082228 -0.038882 -0.334249 0.144354 -0.084298 -0.161483 -0.175843 0.307049 -0.013802 -0.083637 -0.105088 0.140211 -0.009441 -0.387817 -0.320407 -0.078813 0.334504 -0.426225 0.131270 -0.119707 -0.160399 -0.037458 0.189282 0.256246 0.306680 0.557565 0.384444 -0.042323 0.028538 -0.548717 0.064284 0.533096 0.176055 -0.381704 0.422242 -0.283299 -0.138649 0.197238 0.319644 0.174493 0.260340 -0.258984 -0.291977 0.016620 0.004000 0.520183 0.170704 0.119717 -0.320016 0.243259 -0.036608 -0.146603 0.745879 0.215330 -0.542440 0.121280 0.347091 -0.267538 -0.187947 0.203622 -0.309137 -0.112683 -0.196513 0.105203 0.308312 -0.380943 -0.296489 0.079357 -0.413532 0.466338 -0.048430 -0.058914 0.132206 -0.451867 0.041151 0.625033 0.180779 -0.094137 -0.192310 -0.338864 -0.252270 -0.510291 0.071044 0.193817 -0.156989 -0.133215 -0.378570 -0.117917 0.383531 -0.051610 0.149385 -0.543942 -0.084621 0.311684 -0.020163 0.045560 -0.459609 -0.100335 -0.040366 -0.020306 0.145517 -0.145454 0.292382 0.541052 -0.283464 0.279353 0.381122 -0.048117 0.136749 0.328979 -0.469950 0.557650 -0.063311 0.127672 0.178380 0.197882 -0.268073 0.026519 -0.074598 -0.009051 -0.119056 0.207016 -0.322955 -0.147836 0.150559 -0.337002 -0.245932 0.062458 0.287137 0.146791 0.061217 -0.101478 -0.256451 -0.135201 -0.346214 0.091201 0.313758 -0.079632 -0.355746 0.265142 0.199747 -0.249789 -0.249077 0.095984 0.184596 0.385171 -0.499312 0.227831 0.071213 0.118482 -0.542944 -0.373551 0.083404 -0.235069 -0.276817 0.054400 -0.646011 -0.296154 -0.251034 0.182653 -0.525345 -0.029004 0.077937 0.585687 0.132397 -0.139690 0.308956 -0.135065 0.226549 0.100167 0.000796 -0.007969 0.415278 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.518399 0.668158 0.302544 -0.460802 0.564612 -0.241290 0.031023 0.335835 0.125220 0.506760 -0.655932 -0.103943 -0.224456 -0.780610 0.036139 -0.358596 -0.036832 0.648647 -0.003578 0.412690 0.478125 -0.398632 0.053054 -0.437891 -0.163445 -0.612286 -0.055409 0.062417 -0.008352 0.165965 0.356401 0.126084 0.743901 0.281375 0.634773 0.620323 -0.099539 1.016482 0.349045 0.486645 -0.055972 0.477622 -0.241925 -1.029542 0.455051 -0.347065 -0.114999 -0.721494 0.174193 -0.785221 0.582971 0.451916 0.020253 -0.162242 -0.640045 -0.055759 0.645180 0.432951 0.680950 0.288510 -0.187491 0.205916 -0.501148 -0.101018 -0.528420 0.134960 0.427654 -0.531297 0.176287 0.194158 0.430305 -0.243966 -0.376268 0.140310 0.026596 -0.412933 0.214463 -0.226362 -0.913768 -0.215719 -0.389350 0.076985 -0.044238 0.587521 -0.151167 0.041093 -0.417919 0.112543 0.173035 -0.510865 -0.273010 0.525808 -0.024752 0.167333 0.009631 0.705126 0.355455 -0.094248 -0.239662 0.015754 0.262182 0.101518 0.261762 0.287594 -0.738234 -0.505754 0.576115 0.213989 -0.337410 0.248800 0.272113 0.432230 0.226630 0.315224 -0.543515 0.519732 -0.900308 0.213537 0.015991 0.132855 0.092033 0.102596 -0.103685 -0.087370 0.282908 -0.602402 0.643615 0.280781 -0.046803 -0.502757 0.352545 -0.135057 -0.275488 -0.321061 0.422993 0.186114 -0.119037 -0.082252 -0.174036 -0.149969 -0.162299 -0.637279 -0.094475 0.858288 -0.327744 0.095821 -0.256038 -0.386081 -0.091546 0.028346 0.091331 0.187637 0.674928 0.513726 -0.093957 -0.160038 -0.506531 -0.001146 0.895698 0.484989 -0.541804 0.322388 0.182191 -0.051698 0.318164 0.160772 0.351650 0.325007 -0.521192 -0.634477 -0.215361 -0.353571 0.597039 0.565643 0.251465 -0.650453 0.807677 0.281974 -0.226622 1.028777 0.304447 -0.436982 -0.084089 0.419205 -0.848686 -0.384593 0.121645 0.061861 0.052770 -0.100203 0.108774 0.141517 -0.498342 -0.735702 -0.260414 -0.670270 0.598267 -0.046265 0.342480 -0.029563 -0.644610 -0.313830 0.805682 0.147585 -0.346027 -0.212432 -0.292756 -0.286796 -0.723136 0.239676 0.256438 -0.290019 -0.405170 -0.423398 0.090821 0.429095 -0.336924 -0.124598 -0.083020 -0.472299 0.321671 -0.086804 0.133931 -0.824744 -0.258932 0.054183 0.221757 0.440690 0.354625 0.500351 1.004620 -0.342101 0.137744 0.752934 0.281453 0.335242 0.767790 -0.499930 0.646056 -0.492039 0.452867 0.007478 0.298700 -0.192414 -0.115879 0.154606 0.012663 -0.030627 0.355731 -0.345629 -0.067352 0.224006 -0.551018 0.000157 0.355629 0.301252 0.320253 0.061338 0.276403 -0.402358 -0.022548 -0.174864 -0.118890 0.565708 0.207660 -0.653784 0.031309 0.195037 -0.117410 -0.420096 0.148060 0.172356 0.485158 -0.571076 0.430460 -0.073754 -0.344034 -0.509632 -0.439113 0.359901 -0.513221 -0.533190 0.360975 -0.730181 -0.029226 -0.345785 0.392876 -0.644596 0.063863 -0.188174 0.526500 0.323795 -0.028611 0.373538 -0.137226 0.589064 0.144318 -0.127206 -0.025801 0.921836 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -6.246287 6.734277 5.475287 -4.295634 12.031182 0.200150 1.298126 6.911207 -10.440241 9.617337 -3.707364 2.626955 -2.135189 -8.728245 0.199941 -5.648658 -1.911837 2.974914 1.009655 7.714295 4.300290 -5.963072 0.884673 -0.198463 -4.519112 -6.166020 -1.030942 3.313274 10.816325 -5.062359 2.867142 -0.867716 9.476098 -3.136446 10.774114 7.992359 2.546265 5.733842 2.521388 -9.577668 -4.606672 4.903419 -6.863841 -6.728127 0.092785 -3.076177 -6.538897 -2.354253 4.353989 -2.710790 -6.802037 8.394712 -3.313044 0.526628 -5.075727 7.884046 2.128058 -1.428004 11.632291 0.101223 -3.786645 -4.889583 -9.719809 7.296390 -2.460243 0.901006 -6.092773 -6.177562 4.229957 -1.289796 -5.747111 -4.922589 0.166706 10.777768 4.018861 -8.844137 1.255676 -5.203154 -11.716685 -7.777056 -5.852047 2.697556 -0.147183 6.982091 1.021060 3.819350 2.230877 6.552687 -4.015359 -14.537767 3.562881 10.268158 -5.817204 -3.238075 -3.150453 8.620436 1.194566 2.571543 -5.076914 -0.968614 3.329242 -0.989077 4.876034 -12.854508 6.714785 -10.142701 -1.686718 -2.934015 3.622266 6.070100 3.634750 4.079993 8.357417 11.340378 -7.839412 0.341589 -8.384415 2.153269 -5.347932 2.715760 -2.804804 6.306680 1.405874 3.741061 10.700779 -13.255198 2.480148 -0.420580 -0.106802 -12.497979 0.585013 -5.720243 -2.264178 -3.563039 4.931061 -1.609656 -1.616569 -5.765008 1.916659 2.695402 -5.665890 -3.913030 4.132813 9.249915 -10.187961 2.738455 -2.047435 -2.132584 -0.939407 5.923117 8.777307 9.057482 12.025435 8.749964 -0.036529 7.952885 -9.616003 -0.592463 8.008075 1.972138 -8.408553 10.445167 -8.899981 -4.785290 1.610056 6.746781 8.628027 5.695270 -10.375101 -9.875574 8.777008 3.753634 10.331027 0.767241 1.296168 -1.324238 9.279868 -2.209846 -7.177420 9.322931 1.525108 -9.585821 6.798157 2.087457 -5.001520 -2.437469 6.892213 -9.869446 0.190852 -2.801599 -1.655724 6.095061 -4.928197 -2.794800 0.639440 -8.406879 11.133327 -2.261338 -0.272890 3.952956 -6.488109 -8.181633 7.415709 2.421943 -3.667111 -8.223495 -6.513937 -7.897204 -6.780586 3.008716 1.739032 -3.034987 -6.240382 -9.552601 -2.180992 3.557033 3.552110 7.015541 -12.910403 -2.730055 5.089224 5.042766 5.958174 -2.650564 -1.136724 -1.244932 -1.839486 3.440845 -3.023236 9.944821 11.983536 -5.577135 7.997148 -3.524086 -6.217252 3.994263 4.007086 -12.475082 11.772407 2.618946 9.130270 0.329656 2.813784 -5.307835 1.566893 2.601102 -2.572545 2.017121 1.194560 -1.172668 -3.739654 -1.230961 -7.569196 -4.976468 -3.285004 1.925904 -2.007549 3.702484 0.250282 -5.140777 -4.903238 -6.410245 1.271288 6.681533 -3.574358 -3.323076 7.341556 -0.766200 2.595269 0.743686 0.598499 3.799489 3.854193 -11.000974 -1.027793 -2.698679 2.034515 -7.145562 -8.854304 0.110164 -5.327370 -3.934106 3.969673 -8.770552 2.043384 -6.745219 -1.714802 -9.768571 -3.388602 2.920240 12.895214 2.676687 -5.420172 4.320887 -4.320059 6.731898 0.723034 1.743607 0.356669 5.407039 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -2.363108 2.781626 1.519726 -1.949493 5.287172 -0.087535 0.796049 3.322023 -3.216286 4.567103 -1.854180 1.592255 -0.514765 -3.486536 -0.131034 -1.386968 -0.767429 1.489613 0.102075 2.439708 1.640529 -2.034183 0.498348 -0.354491 -2.157077 -3.842744 -0.009483 1.309121 3.226569 -1.497564 1.087042 -0.280641 4.055962 -0.949208 4.036894 3.185067 1.339235 2.773195 1.586086 -1.636248 -1.171561 1.620964 -2.402032 -2.901374 0.204419 -1.235955 -2.848463 -1.693036 1.297633 -2.366966 -0.334839 3.245253 -0.973993 -0.034764 -2.136884 3.140199 1.268454 -1.451114 4.681365 0.215200 -1.924118 -1.678797 -3.681566 3.841905 -1.362067 0.109069 -1.199406 -2.897435 1.371926 0.202157 -0.818863 -1.804329 -0.308365 3.803503 1.358580 -3.772272 0.181846 -2.190111 -4.423048 -3.136141 -2.034383 1.316573 0.251135 2.602496 0.817952 1.432292 -0.049723 2.421490 -1.410962 -5.659628 0.954339 4.245708 -2.254699 -0.755788 -2.308067 3.289084 0.627432 0.585452 -1.793907 -0.680208 1.272721 -0.067206 1.772209 -4.515688 1.134555 -4.199223 -0.038839 -0.408331 0.879252 1.627860 1.055739 1.284575 2.956179 4.139323 -2.887023 1.131697 -3.812683 1.268354 -0.449510 0.850310 -1.313968 1.776653 0.535121 1.519650 4.228515 -5.240842 1.461376 -0.187170 -0.706867 -4.794328 0.046100 -1.781431 -0.816258 -1.297738 1.876366 -0.462188 -0.200830 -2.024550 0.690115 0.640104 -2.425495 -2.863636 1.606543 4.304945 -4.254156 1.152491 -0.755579 -0.647337 -0.807070 2.510340 3.412416 3.157446 4.798368 3.221960 0.618851 2.646245 -4.049375 -0.423137 3.701210 2.524556 -3.423202 4.272334 -3.532000 -1.619675 0.623957 2.671098 2.798152 1.506203 -4.487153 -3.876753 3.188405 1.035112 4.480958 0.631890 0.579816 -1.140059 3.573311 -0.578247 -2.428073 4.091275 2.013508 -3.808308 1.978752 1.255888 -2.023632 -1.150861 2.910087 -3.649728 -0.559982 -0.731060 -0.482233 2.152506 -1.661749 -1.137647 0.174114 -3.433197 4.565348 -0.678022 0.511407 1.430270 -2.637768 -2.621776 2.977256 0.462891 -1.347374 -2.666564 -2.504719 -3.498847 -3.240737 0.909583 1.138563 -1.421714 -2.301269 -3.914931 -0.543164 1.834391 0.811702 2.287632 -4.597400 -1.534404 2.293451 1.211104 1.936849 -2.460911 -0.372768 -0.583590 -0.083796 1.441858 -1.019271 3.997814 5.026235 -1.799678 3.028723 -0.260416 -1.456235 1.356533 1.969302 -4.758689 4.732833 0.270834 2.673901 0.438526 1.143688 -1.886663 0.685918 0.466888 -0.328991 0.512553 0.602407 -1.139482 -1.438728 -0.355888 -3.513951 -1.800288 -0.751377 1.107426 -0.634301 1.162736 0.056844 -1.991969 -1.969476 -3.703356 0.453587 2.483329 -1.136893 -1.382308 2.888329 0.081624 0.408360 0.231009 0.273749 1.852133 1.669131 -4.286895 0.034464 -0.785807 0.587615 -3.592482 -4.023541 0.484469 -2.599044 -2.747637 1.136880 -4.170737 0.030877 -2.625038 -0.173567 -5.119294 -1.141779 0.990626 5.401946 0.703044 -1.789713 1.746939 -1.679806 2.618629 0.344700 0.914123 0.455158 2.482291 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -3.447265 3.862866 1.291695 -2.939892 7.290201 -0.928333 1.058237 3.198627 -3.492673 6.019010 -2.658982 1.123556 -0.881279 -6.158617 0.102928 -2.775487 -0.938165 2.682434 0.443711 3.557830 2.193444 -3.463975 0.835108 -0.535843 -2.579179 -6.428256 -0.130207 2.015005 4.681321 -2.592230 2.092083 -0.106034 6.014404 -1.054285 5.361264 4.373681 1.431681 3.952040 2.349752 -2.446583 -1.361377 2.091163 -2.988218 -4.033769 0.316589 -1.052506 -4.446216 -2.499959 2.128485 -3.140064 -0.990603 4.646141 -1.347487 -0.393501 -3.800854 4.022488 2.674781 -1.265222 6.142245 0.311566 -1.672032 -2.302418 -5.339089 5.013639 -2.388426 -0.793460 -1.148480 -3.622255 2.059147 0.733047 -1.741876 -1.909121 -0.988020 4.920098 2.999044 -5.147330 0.105332 -2.774013 -7.668547 -4.311653 -2.904230 1.806392 0.077206 4.309356 1.034806 2.197079 1.098646 2.980234 -1.670818 -7.391500 1.158710 6.220090 -2.269394 -1.495598 -2.878921 5.649287 1.581494 0.097824 -2.513564 -1.377510 1.481420 -0.826974 2.642616 -5.435604 0.482565 -6.067363 -0.114358 -0.875849 0.786853 3.132553 1.965390 1.599906 3.227695 5.556314 -4.992933 0.743343 -5.775338 1.771686 -0.634299 1.175683 -1.566510 2.206679 0.392099 2.272415 5.294406 -7.720396 2.533707 0.083519 -0.345989 -6.613775 -0.059972 -1.766421 -0.923148 -1.690057 2.620774 -0.890531 -0.413783 -2.111750 0.860535 1.383275 -3.047828 -3.156608 2.022053 6.693433 -5.469607 1.925270 -0.972694 -1.292066 -0.982719 2.667492 4.499083 4.208158 6.555056 4.534845 0.470820 4.465237 -5.710257 -0.207376 5.540057 3.133371 -4.362869 5.856522 -4.262139 -2.282994 0.624798 4.042546 3.987837 1.446029 -6.109562 -5.121263 4.191617 1.121947 5.724660 0.608804 0.065193 -2.175787 5.670775 0.647606 -2.893666 6.178007 2.532134 -4.775528 3.281828 2.285275 -4.555992 -1.908123 3.768183 -4.597499 -0.429640 -1.460547 0.172590 2.939363 -2.219903 -1.781484 -0.621231 -4.424719 5.744269 -1.186650 -0.100359 2.202228 -3.406036 -4.759574 4.547390 0.255033 -1.542184 -3.743259 -4.027286 -4.506713 -4.398878 1.316329 1.267817 -2.469150 -2.617025 -4.993715 -1.004433 3.335662 0.975142 3.317628 -6.881528 -1.624121 3.067113 3.082044 2.291986 -2.711809 -0.401495 0.210781 0.498157 1.147909 -0.714607 5.423320 6.681991 -2.978745 3.676059 -1.487524 -2.396352 2.777665 2.683191 -6.580154 6.521008 0.512750 4.285017 0.611363 1.467312 -2.111805 0.879611 1.160587 -1.327200 0.386147 0.659035 -1.837697 -2.104324 0.427625 -4.066504 -3.378693 -0.861965 2.052690 -0.113239 1.633399 0.095828 -2.266131 -2.045279 -3.746192 0.907119 3.252289 -0.481297 -1.508555 3.830920 1.032703 1.052196 0.030698 0.347758 2.577623 2.471930 -5.857950 0.775172 -1.401063 1.156980 -4.152929 -6.302991 1.613007 -3.851490 -3.714604 1.872787 -6.649782 -0.114323 -3.619150 0.185811 -6.692570 -0.827497 1.454244 7.050135 1.147646 -2.097712 2.528932 -2.319066 3.019698 -0.240651 0.926264 1.314511 3.837280 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -2.094498 1.632523 1.259435 -1.357823 4.029735 -0.303400 0.176738 2.595303 -2.103425 2.675594 -1.574544 0.418957 -0.760759 -2.604286 0.198472 -1.264471 -0.350237 1.445622 -0.327539 1.598845 1.625600 -0.943558 0.178284 -0.475207 -1.162811 -1.427749 -0.582761 0.838633 2.419948 -1.257373 0.155458 0.103543 3.217963 -0.784904 3.355488 2.484085 1.447653 2.320569 0.434635 -1.524584 -0.780239 1.741269 -1.937815 -2.613224 0.518781 -1.326246 -1.906723 -0.800051 1.420222 -1.272087 -0.340552 2.438126 -0.652477 0.124006 -1.287926 2.145252 0.664660 -0.080605 3.463155 0.532878 -1.852655 -0.841305 -2.958517 2.567910 -1.162887 1.393961 -1.386751 -2.499757 0.277219 -0.012502 -0.365117 -2.237735 -0.825002 2.625552 0.786918 -2.330383 0.818285 -1.269696 -1.649730 -2.091898 -2.234882 0.775378 -0.453577 2.069656 -0.070013 0.781934 -0.250633 1.485481 -0.751298 -3.991987 0.459654 3.086697 -2.005756 0.068492 -1.627894 1.457929 0.073324 0.719305 -1.502493 -0.726426 1.097178 0.073248 1.375385 -2.692397 1.620230 -2.521948 0.228961 -0.262289 0.768333 1.573077 0.910512 1.222253 2.198148 3.008172 -1.512344 0.350221 -2.942813 0.884954 -1.566832 0.888024 -0.692022 1.662828 0.807025 0.734852 2.897792 -3.702323 1.245118 -0.065267 -0.560471 -3.245854 0.611068 -1.612704 -1.190542 -1.155626 1.824945 -0.114616 -0.743430 -1.513441 0.715458 0.416500 -1.998170 -1.616286 0.547092 1.878798 -2.818696 0.525096 -0.840922 -0.979232 -0.392845 1.771986 2.280182 2.474648 3.614417 2.662807 -0.200605 1.402271 -3.103532 0.080244 2.687583 0.588134 -2.778752 2.748200 -2.482060 -0.850361 0.963009 1.885988 2.072186 2.059270 -2.274427 -2.205362 1.681608 0.765375 3.270272 0.791152 0.760705 -1.016789 1.928320 -0.968493 -1.909959 3.615556 0.853532 -3.332078 1.506529 0.929993 -0.791131 -1.042161 1.723324 -2.660407 -0.301283 -1.053708 -0.057694 1.819131 -1.983947 -1.259630 0.696956 -2.714663 3.324199 -0.597693 -0.284876 1.025842 -2.769003 -1.952657 2.975135 0.780455 -1.150757 -2.095694 -1.914805 -1.715352 -2.461638 1.007426 0.859667 -0.694259 -2.033373 -2.738837 -0.355528 1.770180 0.491446 1.749625 -3.258915 -0.959631 1.539612 0.536278 1.927125 -1.805736 -0.641758 -0.754039 -0.419695 1.421864 -1.012557 2.109325 3.891834 -1.893352 2.251074 0.439004 -1.653888 0.529643 1.725275 -3.320035 3.477424 0.488492 2.248096 0.012517 1.137095 -1.810047 0.211164 0.480808 0.054008 0.255884 0.866836 -0.662095 -0.888848 -0.366392 -2.565530 -1.207773 -0.342116 0.826316 -0.292293 0.896465 -0.160730 -1.589085 -1.303282 -1.839123 0.234545 2.320649 -1.123777 -1.659173 1.801444 -0.237061 -0.336101 0.095610 0.417805 0.984780 1.884769 -3.223663 -0.010974 -0.341042 0.291946 -2.718824 -2.499093 -0.357781 -1.669214 -1.171303 1.148231 -2.608924 -0.128668 -1.919643 0.128731 -2.781109 -1.078273 0.621336 3.701191 1.298352 -1.246492 1.674205 -0.884785 2.304069 0.440559 0.089161 0.165595 1.971325 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -5.328860 6.427212 3.923166 -4.724012 10.900144 -0.064391 1.806236 4.635686 -5.709055 9.067979 -4.438725 1.383003 -1.194812 -8.078163 -0.100592 -5.118617 -2.721595 3.102212 0.262677 5.619915 3.423304 -4.947798 1.041923 -0.905963 -4.255476 -7.843960 -0.930702 2.895063 7.454575 -3.513824 3.296384 -1.021534 8.039731 -2.064079 8.324965 6.525811 2.027375 5.849296 1.767961 -3.052357 -2.419216 3.457232 -5.174392 -5.916549 0.299907 -2.388018 -6.699461 -3.775122 3.109745 -4.773720 -1.818489 7.081601 -2.005420 -0.655251 -4.645635 6.714812 3.160683 -1.479498 9.501989 0.541587 -3.025231 -2.566379 -8.951573 6.710151 -2.713978 0.909478 -2.586510 -5.786944 2.674514 0.319409 -2.707507 -3.407258 -1.077938 8.000234 4.115674 -7.655214 0.427105 -5.011220 -11.668944 -6.340405 -3.921132 2.895888 0.996629 6.204730 1.311228 3.174464 1.609823 5.075737 -3.163917 -11.591336 1.497428 9.823382 -3.784661 -2.528724 -4.378465 7.513167 1.498743 1.159880 -4.106156 -1.081179 2.725736 0.100163 3.799668 -9.212522 1.379611 -9.594718 0.018368 -0.409239 1.045424 3.391851 2.454199 2.573219 5.524963 9.072249 -7.519663 2.357558 -8.021225 2.043723 -1.729240 2.421447 -2.487013 3.794606 0.175557 3.535960 8.265626 -11.143397 3.667611 -0.378067 -1.525806 -10.378318 0.025058 -3.592668 -1.964699 -2.389577 3.346744 -0.692803 -0.985878 -3.794847 1.133039 1.533871 -4.025159 -4.855599 3.838995 8.920481 -7.805734 2.435789 -1.363286 -1.466178 -1.883469 5.108939 7.454092 6.265236 10.418312 6.816026 1.429427 5.262827 -8.162889 -0.549212 7.902173 3.791916 -6.922974 8.765584 -6.752167 -3.263040 1.031614 5.613158 5.815263 3.901647 -9.429707 -7.961710 6.159980 1.640929 9.053481 1.814998 0.492179 -2.617200 8.535790 -1.157215 -5.135098 8.545142 4.695575 -7.469486 3.984794 2.623060 -5.979292 -3.156090 6.322366 -7.020853 -0.412888 -1.395567 -0.776545 4.105376 -2.944034 -3.282920 -0.466639 -7.108599 9.552824 -1.841144 0.702493 2.937905 -5.127089 -7.768095 6.228070 0.655435 -3.318837 -5.696801 -5.016500 -6.936402 -6.190222 2.281506 2.715090 -3.444923 -5.315049 -7.748735 -0.585083 3.972267 1.119834 5.144223 -8.670918 -3.517790 4.379831 3.427495 4.898027 -3.667276 -0.604573 -1.413249 0.185235 2.692491 -1.254461 8.297370 11.024532 -4.098532 6.612266 -1.888432 -4.273463 2.937515 4.572934 -9.637192 10.013337 1.083654 6.084795 0.213321 2.408916 -3.292452 1.212133 2.076227 -2.217276 1.641438 1.497741 -1.911918 -2.976165 -0.804714 -7.282511 -3.784354 -1.078771 2.528931 -1.167961 2.559876 1.119955 -4.221409 -3.641957 -6.177617 0.503904 5.272707 -1.479927 -2.860484 5.621685 0.421023 1.466590 0.121991 0.489420 3.731054 3.817518 -8.805809 0.527463 -2.039706 0.870580 -7.166760 -8.356331 1.029252 -6.184632 -5.336790 2.603472 -8.419804 0.502336 -5.756432 -0.317065 -9.442037 -2.865158 2.642263 10.735847 2.642848 -3.663144 3.622631 -3.588624 5.938807 0.497690 0.911574 1.944811 5.380544 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -1.733381 1.305714 0.523139 -1.227371 3.485808 -0.470058 0.318921 1.930009 -1.179842 2.508815 -1.368702 0.219292 -0.668244 -2.489780 0.151659 -0.823016 -0.243028 1.388878 -0.288347 1.147936 1.317608 -0.972924 0.339257 -0.436472 -1.006733 -2.032310 -0.244863 0.762692 1.708124 -0.774659 0.253967 0.144349 2.743126 -0.401215 2.470462 1.937740 1.035363 2.175130 0.590954 -0.563876 -0.432698 1.292982 -1.392518 -2.279237 0.602509 -0.951870 -1.840833 -1.165289 1.139139 -1.643133 0.415076 2.059354 -0.422265 -0.115465 -1.365371 1.631685 1.067810 -0.209353 2.821728 0.491112 -1.266683 -0.714988 -2.385284 2.145295 -1.153030 0.620475 -0.483099 -2.150990 0.170281 0.355098 -0.034966 -1.430060 -0.818854 1.878393 0.935052 -2.010895 0.513634 -0.995405 -1.819034 -1.853433 -1.782354 0.643787 -0.321006 1.933051 0.042749 0.688541 -0.144255 1.033122 -0.492776 -3.145554 0.217163 2.640319 -1.295894 0.058837 -1.530431 1.570147 0.276273 0.220823 -1.268202 -0.691589 0.764202 0.024853 1.158906 -1.784512 0.297993 -2.181709 0.466456 -0.046541 0.435269 1.097539 0.869800 0.649162 1.305566 2.317127 -1.581682 0.661552 -2.654925 0.896277 -0.484981 0.713358 -0.642741 1.062152 0.604442 0.571842 2.246472 -3.223679 1.340587 0.032182 -0.493435 -2.620179 0.392042 -0.916103 -0.824485 -0.862961 1.538393 -0.234240 -0.505029 -0.966902 0.591881 0.322755 -1.659115 -1.340082 0.374642 2.143631 -2.341805 0.591727 -0.694722 -0.917674 -0.395216 1.261832 1.753420 1.871942 2.935128 2.152009 -0.052072 1.170392 -2.677404 0.175278 2.615122 1.135234 -2.189747 2.248924 -1.800171 -0.525793 0.729796 1.570026 1.621411 1.180418 -1.881650 -1.610312 1.274009 0.485702 2.767807 0.795376 0.594920 -1.305270 1.673347 -0.361902 -1.136811 3.065769 1.342231 -2.569819 1.114305 1.023556 -1.405623 -0.898203 1.375650 -1.849483 -0.332624 -0.862996 0.269854 1.479715 -1.490292 -1.143292 0.212959 -2.174152 2.624405 -0.511819 0.027719 0.949815 -2.170267 -1.420862 2.395847 0.353888 -0.829706 -1.563825 -1.741916 -1.776867 -2.193756 0.774340 0.705531 -0.799382 -1.494772 -2.237112 -0.356619 1.797694 0.281201 1.214691 -2.604024 -0.658170 1.357091 0.530893 1.337693 -1.703590 -0.439452 -0.291866 -0.019719 1.006054 -0.474427 1.711271 3.093934 -1.576638 1.655592 0.367477 -0.795425 0.699832 1.495383 -2.600076 2.861075 0.132033 1.784685 0.049819 0.933384 -1.136376 0.302331 0.325685 -0.015336 0.059386 0.771982 -0.875050 -0.800028 0.143235 -2.142803 -1.227267 -0.088398 0.949456 0.114641 0.670377 -0.080209 -1.237894 -0.873378 -1.648057 0.275380 1.806391 -0.502754 -1.234385 1.403545 0.163450 -0.266923 -0.204714 0.396577 0.959152 1.620881 -2.605293 0.318592 -0.311637 0.241702 -2.183812 -2.411771 0.183067 -1.594093 -1.471520 1.110615 -2.692772 -0.270744 -1.578980 0.446325 -2.741512 -0.529938 0.320111 3.004767 0.856941 -0.702227 1.472402 -0.650664 1.666707 0.108021 0.067908 0.503911 1.877860 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.426141 0.506866 -0.662791 -0.911296 3.635512 -1.554766 0.344132 1.276668 -0.956048 2.522725 -0.558744 -0.626744 -0.608090 -3.486540 0.533964 -0.384805 0.200709 1.605310 0.318895 1.401810 1.036795 -1.501613 0.099036 0.143446 -0.776215 -2.181625 -0.273851 1.172427 2.787545 -2.873020 -0.331192 0.572431 3.479747 -0.658227 2.959666 2.217499 1.139334 1.432866 1.308157 -2.692556 -0.687805 1.140611 -1.451522 -1.453724 -0.102434 0.095980 -2.148072 -0.729059 1.236081 0.332161 -0.135227 2.381968 -0.846394 0.347134 -2.034359 1.767154 0.729798 -0.143015 2.755622 0.285060 -0.055309 -0.419613 -2.386769 3.047312 -1.227878 -0.714330 -1.346879 -1.555882 0.805204 0.029709 -0.636418 -1.795028 -0.720773 2.538478 1.690049 -2.269269 0.342009 -0.842610 -1.464476 -3.096289 -2.826709 0.927435 -0.856506 2.265230 0.435108 0.977852 0.455675 1.345964 -0.801604 -3.520732 1.000531 2.115773 -1.576893 -0.890363 -0.691217 2.453509 0.653965 0.221848 -1.264260 -1.719124 0.540003 -1.427493 1.421164 -1.219022 2.370797 -1.707882 -0.769687 -1.114438 1.033210 1.806390 2.317437 0.211296 1.626166 2.528390 -1.708306 -1.484456 -2.606063 0.966351 -0.679099 0.533982 -0.632656 1.542219 0.883689 0.784889 2.511210 -4.164534 0.388140 -0.061609 0.343601 -2.529207 -0.217454 -0.953779 -0.639187 -1.097696 1.668275 -0.566771 -0.302546 -0.873556 0.949651 1.313392 -1.618255 0.172865 0.640210 2.823811 -2.887276 0.847077 -0.562857 -1.092634 -0.338323 1.095096 2.178347 2.608266 2.990336 2.420612 -0.608490 1.798935 -3.309906 0.096597 2.327997 -0.297641 -1.861933 2.973588 -2.484305 -1.008671 0.312634 2.998032 2.164880 -0.636534 -1.600413 -1.022303 2.471393 1.204587 2.615200 -1.535312 -0.150217 -0.357122 1.459092 1.096956 -1.881222 3.540222 0.225266 -2.346136 1.943964 1.070427 -1.301831 -0.813589 1.772091 -2.619068 0.042240 -1.658473 0.862518 1.744315 -1.235440 0.263580 0.274856 -1.798729 2.104163 -0.745251 -1.233500 1.737421 -1.688847 -1.594146 3.025969 -0.073198 -0.125861 -2.216600 -2.816479 -1.004676 -1.841966 0.794074 -0.402125 -0.599822 -0.606937 -2.268159 -0.710835 2.872711 1.010074 1.973187 -3.919346 0.201863 1.269986 1.823407 1.119773 -0.486275 -0.247879 0.926788 0.027716 -0.231812 -0.833150 1.647078 2.959076 -1.910609 0.746084 -0.651895 -1.174164 1.416633 0.715493 -3.532173 3.077155 0.848627 1.962066 0.207272 0.542016 -1.351527 0.263243 0.663332 0.131732 -0.241301 -0.265775 -0.487089 -0.942075 0.288358 -1.385379 -2.648736 -0.972883 1.000402 -0.205561 1.003687 -1.018108 -0.830305 -0.579955 -1.340236 1.155422 1.567220 0.188437 0.085811 2.241962 0.596656 0.834738 0.899611 0.082936 0.770285 1.546864 -2.895857 -0.133162 -0.590174 2.075147 -0.873297 -3.739707 0.496939 -1.431559 -0.303733 1.249149 -3.245187 -0.419118 -1.788478 -0.065698 -3.085812 0.606908 0.690241 3.319301 0.868007 -1.324121 1.076136 -0.960147 0.830052 -0.485274 0.020117 0.770368 1.371508 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.819132 4.078860 1.979545 -4.384076 13.773079 -1.855632 0.367064 6.331716 -5.059161 10.022547 -3.821063 -1.729687 -1.754417 -9.689858 0.914484 -4.058561 -1.189992 4.017842 -1.184677 4.878332 3.654252 -2.785254 1.285077 -0.546623 -3.558325 -6.458743 -1.703603 3.191614 9.156025 -6.236580 0.903775 -0.175166 9.827036 -2.182205 9.123067 6.017617 3.343882 5.386450 1.678313 -4.633184 -1.284346 3.581519 -5.111818 -5.369876 0.095684 -2.024286 -7.768045 -3.344339 3.723036 -3.081657 -1.105568 7.224866 -1.466854 0.224388 -4.047739 7.918790 1.791766 -0.211906 10.290757 1.332047 -3.147188 -2.034813 -10.877616 8.426852 -3.146099 2.724756 -4.994312 -6.509486 -0.307812 0.645922 -1.613148 -6.197380 -1.519183 9.440473 4.697711 -7.270052 1.856796 -3.620531 -7.327718 -8.691690 -6.698935 3.529156 -0.992889 6.333772 0.986394 3.228858 1.765530 5.842796 -2.763507 -13.478001 2.122995 9.419415 -4.891651 -3.277234 -5.164946 4.952693 0.179721 1.568135 -4.500266 -3.546764 2.680983 -1.029141 4.001094 -9.064202 6.461034 -8.565870 -0.314121 0.280582 2.561724 3.993620 5.597504 1.520885 5.690289 10.831829 -6.830094 -0.761815 -8.573128 2.305365 -4.088968 2.717558 -3.083490 5.382369 3.023187 4.289600 8.940807 -14.319046 3.650532 0.170952 -1.677307 -10.387789 0.658913 -3.423854 -2.600051 -2.467747 4.414172 -1.533275 -1.176107 -3.203551 2.889072 2.032131 -4.781713 -1.584870 3.248791 7.934421 -9.471338 2.267150 -1.442202 -2.505785 -1.630628 5.416010 8.126997 6.742852 11.864023 6.548742 -1.186612 2.995585 -9.565175 0.625793 8.306146 -0.128413 -6.968997 10.693645 -6.998858 -2.365338 1.030405 7.051265 5.864395 3.353503 -7.176298 -6.442913 5.992076 3.015609 9.638452 0.050848 0.615337 -2.057898 5.824265 -2.737560 -6.136281 11.175501 4.944021 -7.322990 3.289939 3.075651 -4.997938 -3.470732 6.465523 -8.204567 -0.126480 -3.324704 0.592124 4.901854 -3.627823 -2.855282 1.179632 -6.427948 10.136846 -2.001296 -2.807342 4.164651 -6.477332 -6.459754 8.404242 0.364778 -2.536889 -6.045225 -7.461776 -6.222434 -6.314883 2.841748 1.602856 -1.900177 -3.413739 -7.463139 -1.549295 6.639222 1.852088 5.379535 -11.391183 -1.465484 4.019511 2.020928 6.553641 -2.282547 -0.513133 -0.829469 -0.999554 1.605502 -2.464456 6.422445 12.182859 -5.142359 6.088249 -1.358971 -4.790362 1.729126 4.182551 -11.628639 10.110658 1.848957 6.196798 0.012525 2.763924 -3.590606 1.530192 1.545438 -2.354306 0.776963 1.519620 -2.015995 -3.234130 -1.200067 -7.287538 -6.342853 -1.676363 2.812537 -2.089734 2.596444 -1.458324 -4.549576 -2.418898 -5.407496 2.107977 5.510108 -1.262310 -2.932303 5.642728 1.557334 0.701079 1.744790 0.687451 2.776388 5.435416 -8.955646 -0.192433 -1.248034 4.031364 -6.361008 -8.923333 0.179194 -4.941431 -3.018610 2.964352 -8.626271 -1.852140 -5.539373 0.463536 -8.683237 -2.153988 3.151909 12.061684 3.685464 -4.601949 3.501139 -2.730563 4.736513 0.177549 -0.332240 2.559047 4.607910 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -6.211651 0.976691 -3.857468 -8.037039 16.563009 -3.320255 -2.074133 9.278924 0.797782 8.951187 -5.060344 -0.989818 -2.096229 -12.271106 1.167464 -0.615142 1.178696 6.442390 -4.506361 4.343007 4.969719 -1.461931 4.553491 -1.542685 -4.463292 -5.722029 -0.774989 4.993427 3.339951 -4.032041 0.016179 0.595401 11.758738 -1.888051 8.387445 4.993947 6.499671 9.236099 3.254234 -3.095328 2.867072 2.959203 -3.542780 -9.806337 3.119994 -3.086756 -11.025592 -5.071435 5.784629 -9.189354 2.318879 8.954776 0.261250 -2.711164 -6.667490 5.982511 4.344655 -2.127980 10.466340 2.682426 -6.948676 -3.992191 -8.382096 6.774477 -6.412097 3.447846 -2.099222 -8.440144 -4.448783 6.863260 0.373280 -6.823391 -6.305080 3.387443 5.977539 -7.018367 3.875807 -2.759350 4.190922 -7.903003 -5.442750 4.286943 -3.835421 6.961424 0.386387 4.739306 1.235095 2.593987 -1.677594 -11.044714 1.619116 7.554616 -5.376219 -0.097107 -5.692084 5.497574 -1.317442 -3.147635 -7.220196 -5.683442 2.511832 -1.157859 4.799181 -3.162366 2.968909 -6.880457 2.450381 3.173512 3.330531 4.765523 4.001859 1.064033 2.484534 7.371392 -4.874820 2.684120 -12.971001 2.735929 -3.791954 3.210783 -4.963388 3.437083 7.807985 4.491382 6.411808 -12.932886 9.600834 2.133280 -2.999486 -7.286288 3.333092 0.693173 -2.410691 -1.366198 7.183079 -4.113776 -1.201201 -0.834285 4.993682 0.980803 -7.369223 -1.044953 -1.037183 5.351741 -8.635450 4.048974 -1.507315 -4.829497 0.881373 3.577320 6.589553 4.438586 14.052296 6.439899 -3.516689 5.083182 -10.473415 3.795433 12.269709 2.092460 -7.814855 9.472921 -6.900890 -0.669252 1.207903 7.153532 5.516490 3.366549 -4.103681 -2.885501 3.746167 2.755206 10.955675 -0.746184 3.101794 -10.329803 1.818003 -1.304872 3.382023 15.009415 5.516330 -10.859683 3.162760 7.846680 -4.986642 -3.763651 3.612626 -6.142240 -2.871966 -3.788980 5.047249 6.684310 -6.813365 -7.236508 0.008987 -7.318735 7.276730 -2.861430 -6.183964 3.232085 -9.584939 0.533674 11.740504 1.250831 -2.484635 -3.549044 -9.317593 -1.824985 -11.248123 2.621498 4.137415 -2.200080 -1.165049 -6.133065 -3.556583 8.943197 0.643427 2.597715 -14.360784 1.602262 6.667560 1.237299 3.952456 -5.348664 -0.515218 1.543455 -1.326452 1.612443 -3.831458 2.089674 8.127048 -8.055751 5.901593 0.329123 -2.616775 3.599232 5.906002 -8.510847 13.984581 2.128406 10.248769 0.384776 4.308847 -3.157905 3.621732 -1.423037 -2.525355 -1.621445 3.702154 -7.298814 -5.048835 3.879798 -2.661504 -9.518823 0.714201 7.883812 -0.459168 2.884669 -2.636371 -2.190985 -3.043147 -3.767093 4.518919 5.966160 -3.273857 -6.046016 4.116883 7.590556 -2.540476 -1.147575 2.491582 5.325342 9.947296 -10.734986 5.074198 -0.052983 4.091802 -9.170763 -8.252989 3.850353 -3.982705 -0.186858 2.925785 -11.949958 -6.364611 -5.419959 6.462857 -5.801886 2.317241 2.062508 11.348588 4.551246 -3.687113 6.541365 -1.768686 2.741008 -0.555182 -0.478136 4.012498 6.489952 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.337472 4.932043 1.674315 -3.644087 9.227395 -1.454452 1.276676 3.612146 -4.090617 7.413316 -2.881874 -1.326470 -1.794713 -8.624239 0.613279 -5.021520 -1.451011 3.507085 0.598781 5.311301 3.188948 -4.754227 0.730311 -0.256981 -2.968030 -6.908853 -0.747442 2.746894 7.549953 -4.364502 2.402808 -0.275320 8.211463 -1.777402 7.720695 5.859466 2.137437 4.975298 2.010781 -4.174510 -2.908287 3.563380 -4.572662 -4.663822 -0.028721 -1.040227 -6.127542 -2.897188 2.969529 -2.312525 -1.933545 6.642067 -2.025956 0.023114 -4.921714 5.820545 2.702888 -0.174322 8.278630 0.536747 -0.629527 -2.264732 -7.868256 5.846841 -2.542503 -0.292087 -2.975949 -4.142791 2.669865 -0.525330 -3.716065 -3.227819 -0.848733 7.609092 4.802818 -6.572087 0.784430 -3.858182 -10.055759 -6.289651 -5.426064 2.378576 -0.733283 6.058601 0.899251 2.857868 2.468497 4.488795 -2.771363 -10.277107 2.344538 8.056270 -3.417723 -3.564220 -2.928708 7.630461 1.747209 1.201904 -4.063644 -1.734777 2.043316 -1.606963 3.875416 -7.271947 2.225670 -8.124277 -0.839833 -1.207922 1.698714 4.909133 4.542300 1.528413 4.845254 8.052277 -7.651402 0.232695 -7.455455 1.610325 -2.164159 2.152189 -1.671613 4.004834 0.812676 3.408215 6.737366 -10.804871 2.405072 0.079946 -0.299872 -8.156712 -0.126486 -3.182047 -1.631580 -2.591148 3.611822 -1.091583 -0.997336 -3.096941 1.665191 2.617492 -3.124372 -1.951091 3.013259 7.799920 -7.337475 2.218329 -1.475215 -2.151017 -1.060056 3.862497 6.253677 5.961664 9.269192 6.236688 -0.181962 5.003672 -7.165193 -0.302526 7.023417 0.813431 -5.607998 7.977663 -5.976101 -2.991672 0.400640 6.073551 5.835240 2.989549 -7.373615 -6.469320 5.306193 2.231201 7.382380 -0.144235 -0.249381 -2.301078 7.517109 -0.019811 -5.347754 8.603541 3.388496 -5.600090 3.222728 2.064454 -7.162215 -2.954364 5.307687 -6.333201 0.513642 -2.719456 0.510666 4.022801 -2.651843 -1.866349 -0.196144 -5.750065 7.161190 -1.983875 -1.016199 3.158658 -4.641238 -6.448730 6.433306 0.393200 -2.317955 -5.802804 -5.719514 -5.477050 -5.086102 2.685444 0.683843 -2.048093 -3.943433 -6.309097 -1.072205 5.061163 2.155542 4.842728 -9.058758 -1.987917 3.597299 4.470193 4.342588 -1.801783 -0.655784 0.258151 0.101778 1.406754 -0.864167 6.715247 9.863852 -4.283807 4.794989 -2.834437 -4.864716 3.176070 3.781503 -9.371965 8.734240 1.754665 5.411029 -0.210908 1.691453 -2.912608 1.077964 2.362096 -2.307687 1.156517 0.222159 -0.986353 -2.713096 -0.444548 -5.670820 -4.477488 -1.968522 2.070617 -1.384696 2.808733 0.016178 -3.625575 -2.578813 -4.062755 1.264304 4.818436 0.197762 -0.863659 5.323247 0.560283 2.706317 0.857595 0.151743 2.490023 3.637103 -7.964881 0.023756 -2.135396 2.324831 -4.327117 -8.198890 1.075566 -4.540016 -3.357792 3.183351 -6.941371 0.698242 -5.167646 -0.464115 -8.098062 -2.020730 2.180803 9.197197 2.714433 -3.702257 2.655913 -3.000590 4.510088 -0.112142 0.035039 2.155382 4.641346 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -1.499211 1.091144 0.353556 -1.167614 3.205068 -0.562132 0.204486 1.648068 -0.404072 2.090697 -1.310104 -0.510491 -0.567602 -2.258850 0.249751 -1.025483 -0.271264 1.397934 -0.453375 0.899311 1.189592 -0.541992 0.212896 -0.427929 -0.774537 -1.648079 -0.512055 0.701376 1.424534 -0.854031 0.060666 0.165616 2.643294 -0.455155 2.364784 1.782383 1.209079 1.920329 0.241419 -0.058117 -0.205272 1.219693 -1.276550 -1.908544 0.406886 -0.766029 -1.838083 -0.991815 1.001357 -1.296160 0.821724 1.866613 -0.315576 -0.066296 -1.099906 1.579233 0.729522 0.130285 2.453120 0.558898 -1.085124 -0.136883 -2.324096 2.116625 -1.054633 1.032390 -0.638242 -2.006813 -0.192868 0.283090 0.161708 -1.550757 -0.966230 1.693130 0.960940 -1.658425 0.629471 -0.911310 -1.065225 -1.613527 -1.834982 0.713452 -0.507664 1.687911 -0.032275 0.543754 -0.186841 0.907991 -0.449193 -2.727207 0.136154 2.418996 -1.281507 -0.058567 -1.491584 1.046177 0.267699 0.288948 -1.094408 -0.849263 0.693958 -0.062804 1.033682 -1.160459 0.433197 -1.889382 0.371120 0.328606 0.364204 1.141104 0.854091 0.547285 1.237152 2.023259 -1.374886 0.471093 -2.428728 0.769150 -0.749051 0.666881 -0.467234 1.008974 0.668414 0.737613 1.821872 -2.819347 1.182320 0.039202 -0.640043 -1.959082 0.362207 -0.857724 -0.929405 -0.779018 1.317704 -0.031312 -0.512199 -0.778929 0.620008 0.302862 -1.185009 -0.963129 0.269612 1.329759 -1.899777 0.417274 -0.585017 -0.839656 -0.377031 1.258441 1.598382 1.584493 2.759871 1.878869 -0.157826 0.489668 -2.347643 0.188274 2.302644 0.284855 -1.897482 2.028672 -1.630227 -0.394112 0.606515 1.589798 1.221834 1.307588 -1.419627 -1.252208 0.603391 0.379422 2.419443 0.684641 0.329864 -1.239104 1.327188 -0.599547 -1.227006 3.073664 1.395959 -2.177788 0.463798 0.924732 -1.378449 -1.118214 1.265390 -1.662710 -0.284551 -0.920149 0.423239 1.255950 -1.243010 -0.996406 0.471927 -1.904257 2.198297 -0.498023 -0.420173 0.759981 -2.060611 -1.372471 2.494496 0.283033 -0.722927 -1.313487 -1.566065 -1.042291 -1.932991 0.798685 0.619847 -0.446723 -1.311062 -1.807665 -0.093599 1.878525 0.127106 1.162811 -2.076121 -0.667318 1.124576 0.274885 1.359887 -1.487458 -0.433123 -0.425893 -0.035010 0.786609 -0.486616 1.219870 3.013505 -1.413540 1.378873 0.554829 -1.226702 0.281153 1.501319 -2.336429 2.587802 0.248676 1.155081 -0.050894 0.805770 -1.045057 0.146982 0.313097 -0.038348 0.001993 0.677216 -0.681016 -0.634478 -0.063323 -1.940522 -1.049958 -0.008251 0.862896 -0.152155 0.618648 -0.168194 -1.254214 -0.691163 -1.240102 0.247829 1.662104 -0.233430 -1.015805 1.249288 0.178037 -0.366415 -0.130566 0.272209 0.673401 1.679288 -2.319113 0.301903 -0.140109 0.383157 -1.987755 -2.081385 -0.060329 -1.434115 -1.078243 0.804895 -2.018928 -0.516477 -1.455473 0.391018 -2.131751 -0.800212 0.520669 2.653999 1.163440 -0.802842 1.159327 -0.548468 1.576000 0.206375 -0.282164 0.606632 1.599181 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.386542 0.234290 -0.044560 -0.369455 1.622556 -0.338538 0.086195 1.051702 -0.832813 1.422903 -0.052757 -0.017824 -0.318379 -1.350247 0.174762 -0.014319 0.190063 0.574119 0.148282 0.950944 0.458360 -0.742448 0.110554 0.075371 -0.426312 -1.043144 -0.039928 0.488380 1.165113 -0.835597 -0.046024 0.111889 1.520208 -0.292282 1.057659 0.927148 0.430181 0.775410 1.056754 -1.600110 -0.382694 0.570324 -0.671867 -0.762967 0.006396 -0.142194 -0.666661 -0.364243 0.325793 -0.072630 -0.512945 0.922319 -0.397399 0.160745 -0.849511 0.876922 0.205031 -0.176902 1.203474 0.058036 -0.015650 -0.740140 -0.995031 1.206337 -0.517098 -0.438188 -0.747626 -0.772517 0.489130 -0.059549 -0.344097 -0.414709 -0.027078 1.320255 0.522508 -0.943937 0.127587 -0.449574 -0.813801 -1.115506 -1.085179 0.296831 -0.687307 0.730499 0.259801 0.336345 0.009011 0.783305 -0.284871 -1.621682 0.482736 0.748495 -0.830704 -0.576959 -0.098036 1.010969 0.491547 0.146676 -0.513028 -0.491090 0.195991 -0.580242 0.601266 -0.854964 1.116535 -0.873938 -0.472207 -0.432547 0.759656 1.015543 0.932045 0.202242 0.965375 1.069999 -0.845081 -0.545152 -0.783639 0.404109 -0.502594 0.189799 -0.450301 0.955945 0.546608 0.500262 1.326967 -1.861142 -0.032449 0.015164 0.211111 -0.870673 -0.071695 -0.466561 -0.171812 -0.483750 0.719996 -0.291194 0.051803 -0.517080 0.298191 0.526635 -0.624543 -0.337172 0.267735 1.346487 -1.677445 0.356611 -0.266799 -0.421312 0.064789 0.611390 0.938014 1.123464 1.174999 1.039735 -0.313427 1.012376 -1.399513 0.031090 1.102964 -0.044623 -0.946252 1.430065 -1.154276 -0.483475 0.105361 1.159520 1.073086 -0.128989 -0.811419 -0.954160 0.876300 0.574003 1.162938 -0.417630 0.074438 -0.339208 0.694952 0.267816 -0.742196 1.295049 -0.084728 -0.869353 0.694836 0.381929 -0.800832 -0.217177 0.505055 -1.142017 0.113909 -0.728126 -0.000293 0.878539 -0.543192 0.135625 0.077207 -0.815842 1.077099 -0.253332 -0.414347 0.587349 -0.584495 -0.485718 1.197489 0.131916 -0.071531 -1.163064 -1.203864 -0.781977 -0.962296 0.312239 -0.358989 -0.265343 -0.391392 -1.179386 -0.434214 0.971356 0.531710 0.584538 -2.208991 0.128553 0.576552 0.659921 0.344506 -0.495517 -0.131015 0.385736 -0.376206 0.028615 -0.455161 0.968833 1.304589 -0.623497 0.247817 -0.168423 -0.319175 0.654695 0.296602 -1.751421 1.348464 0.081660 0.914861 0.100191 0.190770 -0.543914 0.275659 0.085868 0.023601 -0.044291 -0.161760 -0.269733 -0.423167 0.215643 -0.586716 -1.044573 -0.472952 0.328340 -0.257680 0.476891 -0.589808 -0.689307 -0.347115 -0.513109 0.440987 0.677902 -0.139899 -0.077014 0.921766 0.143275 0.411718 -0.053638 -0.013621 0.351809 0.339792 -1.421481 -0.093942 -0.231717 0.871052 -0.393129 -1.297654 0.245456 -0.385677 -0.295910 0.568363 -1.211971 -0.099949 -0.762995 -0.102597 -1.343111 0.213183 0.151521 1.552539 0.033474 -0.876555 0.334742 -0.444538 0.423072 0.039412 0.257151 0.018571 0.437534 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.983387 0.783298 0.608618 -0.524119 2.334512 -0.187986 -0.023957 2.141927 -1.605791 2.062589 -0.378885 0.134085 -0.355121 -1.456232 0.126982 -0.511992 -0.199006 0.866040 -0.002990 1.245051 0.889075 -0.591439 -0.084531 0.052209 -0.780763 -1.332135 0.012068 0.530847 1.749758 -0.649157 -0.039505 0.087458 2.139702 -0.519968 2.305505 1.656033 1.029783 1.004275 0.801105 -1.131354 -0.961382 0.998998 -1.289878 -0.924328 -0.080958 -0.505885 -1.241014 -0.538352 0.557713 -0.425193 -0.047000 1.470695 -0.662068 0.453908 -0.519173 1.425440 -0.170161 -0.394888 1.973167 0.190248 -0.733710 -0.674171 -1.631658 2.555235 -0.526788 0.288550 -1.007552 -1.271035 0.681883 -0.465960 -0.302781 -0.642596 0.108398 2.275895 0.622024 -1.527584 0.391059 -0.872405 -1.099453 -1.517049 -1.502272 0.546383 -0.486797 1.073101 0.188420 0.552756 -0.201701 1.325156 -0.803698 -2.742696 0.833207 1.889508 -1.425915 -0.799408 -1.705012 1.025075 0.541071 0.783692 -0.616032 -0.473083 0.729135 -0.356682 0.891142 -1.948376 1.357783 -1.460946 -0.436472 -0.303806 0.919919 1.644110 0.415172 0.673689 1.913722 2.141904 -0.662637 -0.001244 -1.232616 0.808229 -0.909262 0.423419 -0.355437 1.250215 0.916746 0.736108 2.029695 -2.478119 0.024657 -0.010575 -0.114987 -1.707979 0.013302 -1.339721 -0.445435 -0.975294 1.056566 -0.107216 -0.290092 -1.237271 0.510432 0.530196 -1.062738 -1.188529 0.558927 1.042047 -1.940344 0.378277 -0.495362 -0.312887 -0.234796 1.389579 1.611451 1.846987 1.952118 1.535089 -0.010826 0.630975 -1.903611 -0.316789 1.325507 -0.082335 -1.614029 2.130279 -1.737758 -0.952519 0.213771 1.604680 1.300776 0.900188 -1.508711 -1.710130 0.703937 0.816628 2.028382 0.411437 0.060296 -0.083989 1.226718 -0.567549 -1.879203 1.721222 0.725272 -1.391647 0.236671 0.113003 -0.866318 -0.673945 1.318053 -2.015952 -0.172270 -0.695662 -0.247353 1.144434 -0.874088 -0.004103 0.771210 -1.573233 1.991986 -0.347248 -0.141881 0.432156 -1.266314 -1.101763 1.436068 0.524136 -0.660995 -1.608795 -1.336419 -1.552459 -1.157127 0.620785 0.027792 0.045905 -1.222320 -1.767429 -0.391959 0.893811 0.795406 1.151617 -2.544597 -0.493356 0.928242 0.329424 1.002996 -1.289802 -0.317321 -0.460847 -0.270814 0.634546 -0.590035 1.664170 2.461447 -0.779404 1.024470 0.190709 -1.265042 0.334888 0.678481 -2.661250 2.059590 0.322025 0.176501 0.203241 0.431780 -1.007662 0.120985 0.199433 0.041494 0.205513 0.261453 -0.009896 -0.517095 -0.595717 -1.555737 -0.749427 -0.775638 0.124431 -0.620492 0.730656 -0.573278 -1.513691 -0.782335 -1.549982 0.269731 1.326237 -0.514264 -0.255211 1.630916 -0.458440 0.277121 0.356690 0.075646 0.506633 0.779402 -2.086527 -0.420034 -0.194140 0.799524 -1.192969 -1.561797 -0.378376 -0.845736 -1.025712 0.642775 -1.418057 0.019488 -1.292358 -0.454620 -1.916881 -0.981145 0.733489 2.556082 0.286393 -1.227219 0.498045 -0.792002 1.308896 0.503689 0.225937 -0.034599 0.985743 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -1.008975 0.372460 -0.091255 -0.616778 2.784834 -0.973212 0.146950 1.605411 -1.144542 1.903751 -0.255324 -0.414209 -0.494757 -2.122915 0.381209 -0.244131 0.181788 1.292682 0.159549 1.276448 0.807579 -0.862511 0.123523 0.151354 -0.533641 -1.065363 -0.204988 0.811141 1.973802 -1.494995 -0.301430 0.350545 2.462580 -0.484964 2.342223 1.604917 0.630866 0.950350 1.069515 -2.293833 -0.564807 0.893444 -1.116738 -1.115439 -0.011939 -0.075010 -1.455062 -0.643919 0.897401 -0.075161 -0.337264 1.606170 -0.672453 0.280617 -1.154116 1.365055 0.249927 0.090451 1.888500 0.169896 -0.254577 -0.331946 -1.755380 1.922939 -0.705376 -0.309992 -1.258969 -1.339968 0.560127 -0.053796 -0.311145 -1.319229 -0.260918 2.018440 1.033900 -1.443596 0.450842 -0.569370 -0.701869 -2.050038 -1.953279 0.542800 -1.060290 1.454184 0.120813 0.672306 -0.123826 0.984969 -0.570108 -2.593484 0.809503 1.698389 -1.100666 -0.716725 -0.633200 1.435859 0.744302 0.234179 -0.764352 -1.061790 0.434812 -1.015492 1.053987 -0.957358 2.153640 -0.980725 -0.720568 -0.538503 1.144081 1.963983 1.303217 0.556748 1.435717 1.890755 -0.994377 -0.898956 -1.590296 0.825641 -1.237773 0.375656 -0.402288 1.333355 0.963852 0.699251 1.773157 -2.947263 0.194380 0.064454 0.375983 -1.649831 0.107532 -0.768728 -0.376776 -0.909555 1.238095 -0.449023 -0.337257 -0.764657 0.642635 0.837889 -1.066277 0.071160 0.276017 1.698467 -2.117039 0.612134 -0.457404 -0.757661 0.103703 0.817642 1.610973 1.931108 2.006522 1.758453 -0.567031 0.638196 -2.364074 0.117605 1.516036 -0.802251 -1.265082 2.195051 -1.458200 -0.886557 0.292797 2.081186 1.577019 0.000141 -0.981917 -1.066239 1.084467 0.940591 1.831985 -0.586645 -0.060427 -0.382727 0.904262 0.089108 -1.413369 2.250588 0.012845 -1.475692 0.881202 0.616536 -1.116999 -0.672641 0.993921 -1.958155 0.017625 -1.144341 0.433760 1.403329 -0.987920 -0.053576 0.406166 -1.308921 1.580022 -0.566224 -1.147061 0.904202 -1.210146 -0.616856 2.172430 0.426568 -0.209497 -1.566141 -2.037216 -0.853235 -1.301768 0.604916 -0.338812 -0.112900 -0.554313 -1.528844 -0.710276 1.577036 0.882614 1.263244 -2.852005 0.230879 0.926258 0.954903 0.848796 -0.693569 -0.204537 0.404060 -0.358643 -0.040732 -0.541134 1.099417 2.245660 -1.292945 0.431069 0.205197 -0.730989 0.940110 0.478399 -2.711231 2.173736 0.524196 1.421446 0.210633 0.348309 -0.869121 0.223024 0.358387 -0.011421 -0.174767 0.073687 -0.291835 -0.691623 0.101194 -1.065304 -1.797970 -0.810755 0.640190 -0.272074 0.809699 -0.891635 -1.111238 -0.473369 -0.968985 0.719175 1.182166 -0.160675 -0.187302 1.610549 0.273942 0.443031 0.134487 0.044370 0.531541 0.943751 -2.109377 -0.019040 -0.344213 1.544653 -0.644710 -2.057541 0.296330 -0.793742 -0.304711 0.866894 -1.988988 -0.420285 -1.276841 -0.109883 -2.090526 0.110895 0.600983 2.470925 0.479766 -1.073596 0.711946 -0.734738 0.698171 -0.133279 0.033763 0.191748 0.985621 +PE-benchmarks/ugly-numbers.cpp__main = -0.578322 0.149864 -0.093267 -0.259673 1.469397 -0.412508 -0.072727 1.274080 -0.212815 0.937667 -0.241541 -0.027092 -0.099670 -0.685209 0.151079 0.121893 0.039863 0.730042 -0.179639 0.217969 0.445707 0.134647 -0.017557 0.054697 -0.332659 -0.441035 -0.185738 0.349040 0.556179 -0.557026 -0.401385 0.245151 1.233517 -0.268754 1.281342 0.822567 0.720411 0.472155 0.347895 -0.253784 -0.097778 0.408426 -0.575921 -0.596734 0.086520 -0.217040 -0.735813 -0.219180 0.431300 -0.284619 0.658308 0.707898 -0.225032 0.260323 -0.155987 0.669618 -0.194521 -0.106232 0.959252 0.206709 -0.754715 -0.018516 -0.819878 1.475180 -0.356628 0.384515 -0.555565 -1.013994 -0.120295 0.055179 0.431663 -0.923586 -0.273712 0.912249 0.193202 -0.651432 0.366186 -0.242051 0.603647 -0.852408 -0.951032 0.359878 -0.453581 0.559138 -0.008080 0.237296 -0.573984 0.406454 -0.334058 -1.239179 0.297045 0.898894 -0.846759 0.191448 -0.800672 0.015225 0.113541 0.279934 -0.201798 -0.624952 0.317036 -0.217410 0.432136 -0.201621 0.978551 -0.292895 -0.105060 -0.040924 0.502453 0.692437 0.233564 0.340505 0.815864 0.945495 0.033729 -0.164006 -0.829286 0.623023 -0.578483 0.216530 -0.187059 0.532799 0.652390 0.345672 0.907017 -1.173670 0.159384 -0.079005 -0.122596 -0.729352 0.105932 -0.493033 -0.362193 -0.494962 0.653484 -0.073282 -0.283449 -0.486602 0.384862 0.212667 -0.740480 -0.437641 -0.022352 0.165557 -0.904487 0.163802 -0.254611 -0.314649 -0.097537 0.641446 0.796862 0.954223 1.036745 0.822505 -0.109440 -0.101682 -1.212155 0.004188 0.680437 -0.108481 -0.750845 1.018016 -0.874878 -0.337125 0.352231 0.934982 0.476423 0.323446 -0.266363 -0.329775 0.244405 0.498187 1.077694 0.092854 0.089044 -0.198998 0.032631 -0.354947 -0.743175 1.327790 0.256393 -0.996255 0.146764 0.225137 0.056495 -0.370053 0.539777 -1.022782 -0.299206 -0.464950 0.189513 0.709697 -0.584233 -0.086396 0.694905 -0.740167 0.879683 -0.242247 -0.461509 0.393268 -0.970269 -0.085059 1.204211 0.312501 -0.160043 -0.560936 -0.794667 -0.148093 -0.674224 0.240910 0.153776 0.106277 -0.367808 -0.779682 -0.202360 0.797992 0.320280 0.637886 -1.111767 -0.107611 0.511636 -0.254831 0.387289 -0.870511 -0.137076 -0.273077 -0.131377 0.211897 -0.443182 0.368631 1.153276 -0.579409 0.375421 0.685779 -0.378857 -0.015854 0.313933 -1.184203 1.065657 0.192079 0.154044 0.188904 0.239808 -0.589853 0.009339 -0.053893 0.407727 -0.169014 0.253603 -0.148989 -0.254797 -0.130532 -0.788761 -0.544854 -0.298765 0.315433 -0.201664 0.323878 -0.495182 -0.631819 -0.346421 -0.738996 0.243320 0.654084 -0.287822 -0.337434 0.844638 -0.089656 -0.305473 0.043877 0.070179 0.285230 0.667084 -1.006886 -0.070272 0.111327 0.562715 -0.793191 -0.828974 -0.221324 -0.440426 -0.300037 0.094365 -0.870157 -0.491329 -0.586452 -0.008310 -0.926365 -0.228371 0.382488 1.283656 0.401378 -0.504473 0.482568 -0.274663 0.535241 0.179195 -0.030238 0.077763 0.569526 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -6.266752 6.386473 4.192196 -4.650753 11.162685 -0.231128 1.830706 5.104074 -7.252606 9.496007 -4.236978 0.665588 -2.213647 -9.068186 0.207544 -6.743843 -2.085548 3.375083 0.508827 7.128199 4.459125 -5.697221 0.866055 -0.833157 -4.123213 -7.728737 -1.181229 3.097600 9.364191 -4.318134 3.409704 -0.698365 9.713614 -2.270812 10.382073 8.094071 2.533509 6.419886 1.826588 -5.665140 -4.007744 4.995589 -6.439008 -6.846474 0.115586 -2.640274 -6.979162 -3.246836 4.051917 -3.543721 -3.992856 8.403242 -3.025225 0.223457 -5.312401 7.018185 2.779696 -0.611565 11.113193 0.466949 -3.121932 -3.347274 -9.685063 7.844361 -3.019203 0.932725 -4.029461 -6.216805 3.691268 -1.020497 -4.454094 -3.729567 -1.118902 9.927051 4.883193 -8.628379 1.069066 -5.278074 -12.927365 -6.690855 -5.608211 2.770094 0.295865 7.266644 1.054654 3.655574 2.318206 6.166879 -3.471625 -13.629437 2.839943 10.670171 -5.031921 -3.009161 -4.378671 8.492809 1.720581 2.165776 -5.005861 -0.974674 3.098508 -1.055805 4.845554 -10.237698 2.927734 -10.127701 -0.782392 -1.677243 2.315486 5.510209 3.323375 3.567204 7.377221 10.540384 -8.022478 1.476384 -8.217208 2.495762 -4.087176 2.727880 -2.182420 5.579364 0.823689 3.682308 9.919658 -12.432568 2.959160 -0.099709 -0.766776 -11.608987 0.292799 -5.306307 -2.383556 -3.610626 4.753835 -1.012571 -1.506307 -5.125181 1.588483 2.474416 -4.400082 -4.105928 3.976437 8.302393 -8.180901 2.676221 -2.061891 -2.312072 -1.477707 5.714038 7.954447 8.283008 11.683058 8.548555 0.237535 6.516849 -8.949714 -0.709316 8.503104 2.654812 -8.228974 9.931631 -8.041509 -4.255009 1.338557 6.601976 7.918753 5.184172 -9.893230 -8.843260 6.436138 2.657184 10.187164 1.814997 0.495169 -1.942985 9.266222 -1.549100 -6.883785 9.569246 3.355896 -8.552979 5.057433 2.446883 -7.027772 -3.551031 6.751748 -8.414565 0.348011 -3.037654 -0.592935 5.276131 -4.212520 -2.827420 0.424823 -8.419751 10.479282 -2.199012 0.246436 3.693365 -6.800017 -9.377375 7.700423 1.354899 -3.716636 -7.627415 -6.172294 -7.057792 -6.943221 3.194993 1.647017 -2.963666 -6.021477 -9.013632 -1.302700 4.246088 2.603384 6.736060 -10.511075 -3.482432 4.764444 4.495717 5.607662 -3.039769 -1.285078 -1.167553 -0.373571 3.293843 -1.774821 8.957988 12.163546 -5.369722 6.778158 -3.100490 -6.241566 3.598572 4.720389 -11.979991 11.457875 1.692675 6.687432 0.088230 2.779423 -4.601474 1.145650 2.859459 -2.570268 1.780338 1.272626 -1.377205 -3.427739 -0.831322 -7.578182 -4.276271 -2.413849 2.108378 -1.633587 3.521593 0.825370 -5.303704 -4.098765 -5.967067 1.066433 6.731110 -1.578684 -2.822324 6.893420 -0.343691 2.261611 0.355220 0.501788 3.476208 4.389911 -10.691452 -0.324663 -2.592069 1.286896 -6.741065 -9.089980 0.597639 -6.249111 -4.807323 3.773137 -8.558131 1.798127 -6.884268 -1.177380 -9.029761 -3.798842 2.909819 12.202038 3.406957 -4.782204 4.180549 -4.185418 6.876239 0.590601 0.970503 1.568455 6.137647 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.764344 0.914682 0.079494 -0.739420 3.697082 -0.599619 0.300257 1.666724 -1.879922 2.688669 -0.630974 -0.440967 -0.808282 -2.978520 0.526606 -1.081001 0.396660 1.082899 0.242041 2.117597 1.154656 -1.672295 0.484854 -0.078166 -1.030602 -2.678312 -0.210298 1.069306 3.022887 -1.368485 0.497187 0.210339 3.438177 -0.508531 3.111963 2.160215 0.760400 1.426736 1.078102 -3.294364 -1.049420 1.396105 -1.922618 -1.759865 -0.049978 -0.548292 -2.448527 -0.841126 1.227122 -0.482498 -2.074601 2.413912 -0.764663 0.640477 -1.835641 1.606997 1.309826 -0.246436 3.115162 0.064175 -0.327474 -1.186795 -2.201443 2.256466 -0.853551 -0.992592 -1.895613 -1.982628 0.801243 -0.036389 -1.552820 -1.027958 -0.282994 2.832313 2.043385 -2.462058 0.726481 -0.663478 -2.078312 -3.137076 -2.244686 0.847947 -1.034263 2.460414 0.305730 1.286561 1.020707 1.457028 -0.620693 -3.901663 1.072987 2.323047 -1.700894 -1.167492 -0.490703 2.576447 0.920610 0.666355 -1.414861 -1.291054 0.535302 -1.233829 1.426395 -1.845819 1.963185 -2.018998 -0.953037 -1.385408 1.633659 2.766465 1.230163 0.818611 1.900778 2.845045 -2.561827 -0.771754 -1.801638 1.032641 -2.065834 0.772204 -0.993908 1.775676 1.450560 1.308333 2.835738 -4.030038 0.626483 0.319186 0.772083 -2.699901 -0.004689 -1.334859 -0.550612 -1.094935 1.809304 -1.023336 -0.231391 -1.379747 0.971027 1.211077 -1.323903 0.410612 0.538505 2.567125 -3.166955 0.997262 -0.559419 -1.024636 -0.118369 1.161503 2.096895 2.796383 2.866159 2.608963 -1.184580 2.575492 -2.905298 0.334240 3.121456 -0.159472 -2.045739 2.981614 -2.419403 -1.262223 0.599919 2.121825 2.624356 0.300294 -2.104180 -1.891724 1.738313 1.540472 3.088871 -0.091480 0.163952 -1.440225 2.081334 -0.099866 -1.500555 3.180465 0.292723 -2.703903 2.033287 1.110746 -3.097714 -0.532106 1.409070 -2.749529 0.046772 -2.019576 0.580812 2.022788 -1.370541 -0.229624 0.464089 -2.215516 2.280160 -0.636989 -0.847868 1.468843 -1.425253 -1.783501 2.874471 0.654641 -0.282115 -2.560889 -2.588289 -1.681638 -2.269610 0.799753 -0.699341 -0.709634 -0.703692 -2.648107 -1.203601 1.947795 1.290660 2.010310 -4.971559 0.512095 1.116507 1.786830 0.930134 -0.722076 -0.219944 0.496235 -0.714310 -0.046438 -1.002377 2.035069 2.675578 -2.065616 1.167843 -1.772579 -2.024773 1.683736 0.654482 -3.516900 3.063376 0.613711 3.017642 0.231410 0.947395 -1.277882 0.662771 0.440996 -1.108125 -0.302529 0.360999 -0.778882 -1.318882 1.214589 -1.131597 -2.759891 -1.319792 0.805836 0.147353 0.975743 -0.714255 -1.858773 -0.365963 -1.076545 1.146764 1.789218 -0.233695 -0.549595 2.320163 0.588073 0.855852 -0.883663 0.034411 0.770669 1.321056 -3.320438 -0.148794 -0.633607 1.698898 -0.976563 -3.101792 0.727885 -1.617719 -0.848702 1.892332 -3.160495 0.299660 -1.844898 -0.297706 -2.155411 -0.545570 0.902100 3.490973 0.367969 -1.702832 1.299791 -1.076905 1.088052 -0.386797 0.657610 0.239884 1.511877 +PE-benchmarks/min-cost-path.cpp__main = -1.702148 1.194295 0.838414 -1.131729 2.977610 -0.266746 0.245100 1.620328 -0.897901 2.235716 -1.304773 -0.329185 -0.743879 -2.133141 0.139259 -1.366681 -0.345318 1.181269 -0.350763 1.204048 1.371031 -0.793274 0.180272 -0.445427 -0.836716 -1.541557 -0.541779 0.642490 1.739127 -0.799509 0.270338 0.064394 2.636263 -0.392410 2.679980 2.033747 1.050527 2.016286 0.138987 -0.331257 -0.659683 1.498331 -1.557417 -2.118087 0.436133 -0.984022 -1.631922 -0.931665 1.110902 -1.186575 0.262301 2.038080 -0.557359 0.078225 -1.062746 1.512902 0.586549 0.279021 2.745824 0.464788 -1.229256 -0.304145 -2.485268 2.038001 -1.003751 1.092901 -0.758045 -2.058654 0.158156 -0.113220 -0.148479 -1.400924 -0.796676 2.100115 0.908875 -1.854241 0.624595 -1.083761 -1.782042 -1.464719 -1.843759 0.621164 -0.230292 1.782047 -0.046183 0.626096 -0.081518 1.204072 -0.562654 -3.151004 0.355396 2.584718 -1.436295 -0.007494 -1.404909 1.193649 0.164021 0.588071 -1.207164 -0.450556 0.818763 -0.003547 1.156808 -1.569285 0.478291 -2.084549 0.408337 0.046875 0.448316 1.055681 0.821673 0.799261 1.633193 2.381468 -1.419876 0.617290 -2.202622 0.810840 -1.025795 0.748153 -0.407860 1.323957 0.474335 0.580138 2.256661 -2.873082 0.981587 0.015608 -0.581476 -2.451255 0.380899 -1.342426 -0.967310 -0.978499 1.461016 -0.015430 -0.602555 -1.186617 0.488185 0.297320 -1.242793 -1.116026 0.456010 1.282444 -1.753406 0.429401 -0.703724 -0.888434 -0.405464 1.439059 1.699946 1.949463 2.872818 2.174385 -0.145148 0.620301 -2.357741 0.015561 2.261048 0.427798 -2.209336 2.161623 -1.785543 -0.587112 0.713083 1.538635 1.667051 1.560533 -1.679302 -1.544716 0.759386 0.497515 2.655243 0.921988 0.470703 -0.848629 1.572058 -0.714547 -1.575593 2.871076 1.136935 -2.390425 0.733506 0.728718 -1.340249 -1.082269 1.393689 -1.801121 -0.054485 -0.977002 0.153943 1.357534 -1.418976 -0.976474 0.558869 -2.248992 2.599826 -0.497255 0.059874 0.883499 -2.322749 -1.875564 2.429287 0.415036 -0.964393 -1.664511 -1.524307 -1.297419 -1.967262 0.911824 0.571253 -0.510492 -1.615245 -2.143581 -0.093743 1.514203 0.363606 1.444651 -1.990611 -0.915430 1.162387 0.250907 1.557545 -1.350825 -0.563480 -0.581929 -0.141657 1.161460 -0.462323 1.530165 3.197106 -1.486235 1.534720 0.375765 -1.321421 0.365517 1.474004 -2.671369 2.780434 0.169078 1.181318 -0.098533 0.916829 -1.258524 0.127669 0.527121 -0.060848 0.230345 0.724112 -0.486014 -0.681467 -0.212206 -2.192671 -0.802551 -0.222553 0.616173 -0.189359 0.767725 0.048737 -1.517183 -0.861137 -1.370823 0.176785 1.931149 -0.357145 -1.156547 1.413747 -0.205663 -0.191979 -0.166960 0.313825 0.650345 1.604962 -2.602305 0.024695 -0.280771 0.090056 -1.964127 -1.990077 -0.243644 -1.572547 -1.161654 0.984937 -2.007197 0.022324 -1.665770 0.087340 -2.015987 -0.966062 0.481871 2.906656 1.267804 -0.966863 1.295858 -0.697741 1.921092 0.342657 -0.170302 0.438897 1.764193 +PE-benchmarks/magic-square.cpp__generateSquare(int) = -6.256623 5.975816 3.215378 -4.891656 17.347563 -4.178854 -0.564818 9.776308 -5.584880 11.403222 -3.894674 -0.727566 -2.376834 -12.619210 0.800168 -2.975196 -2.580992 7.202568 0.413190 7.820244 4.108077 -5.813976 0.450662 0.033071 -4.581917 -8.250679 -2.812255 4.083728 11.119932 -10.584041 -2.759517 -0.151643 15.666740 -2.822819 11.046185 8.912883 4.303950 6.738832 6.323862 -11.665961 -3.634298 4.889737 -7.483430 -4.127591 0.560621 -3.069679 -8.465664 -2.755635 4.032116 -0.973911 -0.658605 9.495333 -3.257211 0.383083 -5.882577 9.234309 1.197255 0.645694 11.774948 0.791055 -1.022235 -3.054906 -13.222388 11.565933 -3.784605 1.577599 -6.984403 -6.593865 3.557349 -1.283922 2.347980 -11.216087 -1.795877 11.677738 5.017974 -9.068697 1.536159 -5.561461 -8.421714 -13.550730 -11.757029 3.862211 -4.801755 7.991558 1.100554 4.028777 -3.399862 7.249894 -4.484655 -15.224742 3.320517 11.755137 -5.474334 -3.656341 -5.776540 8.788582 2.531529 2.358365 -5.306848 -5.133976 3.608527 -2.239474 5.205862 -11.237977 12.304292 -10.714566 -1.341501 -1.662399 3.401395 5.463750 7.311409 3.632249 9.124207 12.086739 -8.526714 -5.707796 -12.479368 1.940596 -4.013749 2.497317 -2.674164 7.080307 -0.125296 5.185776 10.907711 -19.233073 2.301731 -1.129214 -2.482360 -11.523055 -0.230054 -5.165401 -2.868238 -4.149195 5.038072 -0.732077 -1.914896 -5.141423 2.566979 2.671749 -7.537977 -4.063952 4.632018 13.641368 -13.507119 2.724614 -1.908972 -3.066223 -1.403117 6.453644 10.322924 9.622551 12.686299 9.123054 0.262846 4.522792 -15.335205 -0.706984 7.996025 0.903870 -8.899689 12.317600 -8.194292 -4.753220 1.173602 13.446867 8.144849 1.121279 -9.856417 -10.330927 8.789706 3.904031 11.368047 -3.392329 -0.366063 -0.310187 9.280484 0.532805 -9.026282 13.845790 3.598634 -6.397805 2.445539 2.689284 -2.093277 -4.838612 7.774266 -10.227959 1.194314 -2.942622 -0.627804 6.423307 -3.457428 -1.842353 1.165751 -8.501078 11.361296 -2.924522 -5.280688 4.463938 -7.141945 -9.054506 12.420973 -0.577178 -3.322039 -8.310706 -11.971724 -5.295554 -6.998547 3.440158 1.322075 -2.816047 -6.096437 -9.703918 -1.047985 9.724430 2.925715 7.010340 -17.559954 -3.909873 5.155905 3.500698 7.858189 -5.888592 -0.727819 -0.619056 -0.937487 2.334225 -2.677040 10.327500 14.878050 -5.862836 5.709209 0.017165 -3.307134 3.387873 4.472337 -14.036178 12.821269 2.508166 10.989742 0.054276 2.347857 -4.425860 0.939191 3.597540 2.156353 1.640137 0.839964 -0.639981 -3.666205 -2.350711 -8.139571 -9.304567 -3.196070 2.723465 -4.143928 4.099463 -3.848832 -5.300459 -4.166618 -5.523643 1.797238 6.742471 -0.712435 -0.673679 8.584524 -0.234050 2.832954 6.479581 0.076415 3.489875 5.090160 -11.615477 -0.984852 -2.659741 6.430123 -6.264371 -15.024403 -1.042269 -6.128065 -3.975980 4.420651 -14.273935 -2.419761 -7.668813 -1.384920 -12.738254 1.374801 4.944921 13.445230 5.482008 -7.320343 3.510278 -4.823109 6.963132 0.095684 -0.440159 2.129680 5.095664 +PE-benchmarks/magic-square.cpp__main = -1.555778 1.139792 0.333370 -1.041095 4.122521 -1.235512 -0.206049 2.627484 -1.170762 2.673177 -0.876639 -0.024980 -0.619587 -2.957429 0.274845 -0.276840 -0.261867 1.899623 0.005382 1.549885 1.085031 -1.109141 0.122776 -0.015621 -1.018811 -1.964736 -0.476231 0.961256 2.370752 -2.327148 -0.883141 0.247759 3.787003 -0.617567 2.710887 2.157229 1.227030 1.702739 1.633754 -2.559629 -0.705720 1.196342 -1.656237 -1.261046 0.279746 -0.701705 -1.921065 -0.660870 1.085083 -0.366217 0.281001 2.205058 -0.705746 0.181071 -1.430264 2.040411 0.300591 0.069560 2.819383 0.298528 -0.540013 -0.793714 -2.826484 3.022941 -1.104859 0.291403 -1.508523 -1.767022 0.641180 -0.081960 0.665556 -2.620004 -0.529546 2.535509 1.021074 -2.121317 0.496677 -1.041119 -1.160620 -3.090382 -2.902160 0.860333 -1.271365 1.913707 0.170989 0.894484 -1.024851 1.508525 -0.876301 -3.491980 0.761373 2.601315 -1.469960 -0.482936 -1.391481 1.856581 0.600456 0.427791 -1.129800 -1.382416 0.818195 -0.643011 1.269029 -2.217368 2.812470 -2.125405 -0.186686 -0.482246 0.917886 1.448155 1.656969 0.840562 2.024588 2.690060 -1.545241 -1.303802 -3.073683 0.722416 -0.887101 0.526098 -0.608526 1.583313 0.379058 1.029414 2.542342 -4.409828 0.655914 -0.194743 -0.408468 -2.563274 0.093575 -1.087792 -0.703185 -1.095214 1.493843 -0.263716 -0.514229 -1.145082 0.781175 0.658452 -2.032270 -0.953677 0.720336 2.934262 -3.180249 0.655915 -0.580906 -0.896172 -0.248526 1.382977 2.225379 2.347760 2.940036 2.233375 -0.140146 1.036574 -3.690118 -0.055775 1.999330 0.297347 -2.125420 2.832214 -1.979794 -1.040957 0.469558 3.077545 1.879716 0.268758 -1.945398 -2.093431 1.928964 0.992690 2.744619 -0.730761 0.091724 -0.280319 1.760617 0.159836 -1.913640 3.474858 0.738917 -1.845838 0.755695 0.795549 -0.396416 -1.054335 1.663124 -2.419031 0.094680 -0.931883 0.113106 1.705369 -1.163237 -0.418590 0.473271 -2.012707 2.560410 -0.676681 -1.268697 1.145405 -1.975174 -1.527037 3.091899 0.052682 -0.622450 -1.918737 -2.889248 -1.255410 -1.856701 0.780834 0.260231 -0.552770 -1.268691 -2.296546 -0.463440 2.460631 0.745180 1.572593 -4.202043 -0.639827 1.327413 0.716675 1.569803 -1.581183 -0.249988 -0.000905 -0.224490 0.564749 -0.749052 2.151878 3.319471 -1.553176 1.271479 0.368971 -0.613014 0.829704 1.043825 -3.290889 3.012419 0.529080 2.365956 0.166838 0.608169 -1.198112 0.218169 0.614800 0.697453 0.099125 0.268325 -0.365180 -0.874083 -0.314423 -1.868590 -2.211168 -0.738273 0.807287 -0.676494 0.927095 -1.065649 -1.195802 -0.935590 -1.443584 0.565266 1.657828 -0.248807 -0.338153 2.053880 0.049223 0.312755 1.258713 0.120533 0.838242 1.395185 -2.782435 -0.132052 -0.459335 1.556245 -1.562334 -3.460921 -0.183521 -1.309310 -0.919712 1.056786 -3.471170 -0.776015 -1.712482 -0.060507 -3.079412 0.431344 0.949211 3.190173 1.149835 -1.515061 1.057040 -1.001770 1.474315 0.020394 -0.072172 0.400694 1.380815 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/box-stacking.cpp__max(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -1.268112 2.091897 1.584068 -1.156451 1.814112 0.194867 -0.078952 1.120192 -0.990337 1.650113 -1.431827 0.664201 -0.402281 -1.564861 -0.018339 -1.628254 -0.520208 0.831886 0.132025 1.503089 0.982477 -1.231503 0.081016 -0.744895 -0.754403 -2.108375 -0.183259 0.288660 1.115178 0.240240 1.020279 -0.080789 1.719348 0.010598 1.329998 1.556482 0.393251 1.891160 0.597445 0.057691 -0.543989 1.001331 -1.029656 -1.570769 0.682583 -1.025138 -0.784701 -0.830905 0.514744 -1.422462 -0.444886 1.382321 -0.209503 -0.305841 -1.285088 0.945437 1.115220 0.333518 1.948285 0.381270 -0.396091 -0.912076 -1.700587 0.329110 -0.948388 0.294807 -0.024610 -1.017907 0.773106 0.164885 0.015293 -0.636137 -0.364294 1.178541 0.273309 -1.472498 0.395091 -0.967454 -3.077915 -0.828509 -0.599402 0.390857 0.272623 1.408034 -0.029968 0.423532 -0.509304 0.872843 -0.172283 -2.035400 -0.198824 1.858849 -0.393554 -0.118474 -0.764169 1.987161 0.899008 0.109932 -0.695791 0.125927 0.781829 0.336199 0.704108 -1.718730 -0.686079 -2.143084 0.664774 0.011104 -0.312742 0.885870 -0.287871 1.221746 1.049721 1.557663 -1.795971 0.835816 -2.042869 0.213323 -0.266546 0.444274 -0.204413 0.554750 -0.483545 0.554908 1.338181 -1.988060 1.276282 0.297064 -0.358657 -2.033294 0.554902 -0.716865 -0.536857 -0.654685 0.795318 0.235666 -0.253988 -0.650230 -0.052657 -0.168922 -0.411819 -1.842618 0.472605 2.470872 -1.542390 0.368123 -0.457288 -0.482037 -0.314559 0.577973 1.015978 0.873446 2.058974 1.363925 0.223109 1.242715 -1.397927 -0.201633 1.863510 1.882927 -1.550324 1.399675 -0.503740 -0.610406 0.466847 0.615324 1.075363 1.510122 -2.218329 -2.401173 0.321168 -0.393361 1.780356 1.166259 0.356436 -1.049400 2.415553 -0.447611 -1.045948 1.804890 0.929885 -1.101538 0.294373 0.748411 -1.696492 -0.789813 0.866015 -0.827516 0.217169 -0.027903 -0.359319 0.683241 -0.931076 -1.486894 -0.548977 -1.689463 1.981711 -0.175973 0.932040 0.204570 -1.269358 -2.008576 1.325805 0.100875 -1.006315 -1.022499 -0.707547 -1.336434 -1.546178 0.530320 0.718801 -1.023306 -1.358057 -1.526678 -0.078581 0.573323 -0.389191 0.285974 -1.850954 -1.302832 0.904270 0.301730 0.918519 -1.293600 -0.420278 -0.360384 0.249189 1.065277 0.160877 2.044688 2.653510 -0.794606 1.138775 -0.137627 -0.327837 0.794715 1.591594 -1.748559 1.923029 -0.362149 1.736525 0.099673 0.687174 -0.793179 -0.035460 0.538544 -0.634613 0.368136 0.693945 -0.592221 -0.403536 0.181984 -1.430345 -0.180103 0.350619 0.529046 -0.043062 0.301758 0.883586 -0.845849 -0.647940 -0.753863 -0.274464 1.323105 -0.080435 -1.077723 0.586058 0.164122 0.075781 -0.445519 0.258688 0.696268 0.849252 -1.692448 0.522240 -0.431086 -0.706872 -1.635670 -1.672683 0.446636 -1.156663 -1.515269 0.769551 -2.024511 0.236148 -1.072447 0.346086 -1.793233 -0.625358 0.310372 1.826007 0.589999 -0.624913 0.839916 -0.682157 1.593945 0.169378 0.186493 -0.022350 1.606430 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -17.239637 21.495958 11.986044 -14.928826 31.484785 0.029272 5.074481 10.941761 -11.464250 29.143066 -14.816128 -1.917024 -6.694255 -29.162545 -1.043088 -20.901198 -9.142889 12.368286 1.125693 18.449160 12.538888 -18.761779 3.491014 -4.288444 -12.035051 -29.389505 -3.199547 7.675625 22.032673 -9.229724 13.710391 -3.632288 27.957610 -1.838906 25.548639 20.889196 4.223308 22.787123 5.232957 0.209964 -10.864620 13.310319 -16.385800 -20.790120 3.916553 -8.073548 -19.336362 -15.485737 8.907637 -16.407353 -0.246937 23.206037 -6.752289 -2.337321 -16.550469 16.858717 13.411264 0.517036 30.122312 2.206489 -4.397477 -5.617556 -29.728460 16.904548 -10.190952 1.369422 -1.455657 -16.322590 10.033679 -2.135469 -4.978615 -8.077427 -4.915728 25.779888 15.331231 -23.864471 0.542386 -16.579168 -48.936771 -19.389287 -15.365978 7.385294 4.182195 21.393811 3.595719 9.645590 6.165687 16.383996 -8.779668 -36.564036 4.558333 31.478197 -8.292514 -7.651969 -14.355444 27.104191 4.878328 4.368975 -14.650077 -1.091364 8.370525 0.609293 12.705626 -23.331654 -6.666378 -32.598572 5.379969 -0.989172 -0.671882 7.318676 11.686909 5.768954 15.785335 29.069881 -29.687933 11.121680 -26.627742 5.762483 -0.560101 8.543817 -5.156753 11.798420 -4.535720 8.955607 24.966006 -37.246518 11.679580 0.237933 -6.007518 -33.224611 -0.290915 -12.717354 -5.932133 -8.605267 11.147131 -1.265593 -3.327014 -12.172859 0.812785 4.076175 -11.402173 -16.607048 12.476090 31.617347 -21.859707 7.555872 -5.646727 -7.395286 -6.886737 14.241062 21.082048 18.896067 32.069895 22.057104 4.287034 13.303951 -24.746803 -3.209065 26.899969 14.982961 -22.508987 26.340226 -16.259872 -8.652871 2.843568 18.388586 20.036080 10.472846 -29.640162 -24.965541 14.844501 2.975741 27.938527 9.782704 1.188894 -8.697321 30.278038 1.277013 -18.327860 29.663046 17.524565 -18.562860 8.356459 6.964536 -26.470627 -11.742715 18.969289 -16.715384 2.333837 -5.044347 -0.826312 10.514116 -8.101326 -11.351345 -3.720274 -23.881746 30.220336 -5.475692 7.330563 10.051788 -17.919789 -30.526720 20.885335 -1.596519 -12.445550 -18.658499 -17.190719 -22.079995 -18.885290 9.254947 6.724966 -11.719955 -17.826025 -24.139276 0.882469 14.494171 3.334153 14.798511 -22.110886 -15.221326 12.447400 9.403351 16.679972 -14.290198 -3.147623 -2.918658 4.204630 10.639821 2.953433 25.940410 38.206068 -12.840486 16.973253 -5.348238 -11.075188 10.166509 16.876891 -30.543102 30.358257 -1.001731 16.497017 -1.749358 8.007529 -7.855725 3.302721 9.804402 -5.567715 7.107657 4.678511 -4.350932 -8.740896 -2.050812 -25.773396 -9.773369 -2.532127 6.007951 -2.119463 8.579105 5.905252 -14.588175 -8.750124 -16.345030 0.211258 18.298851 2.634183 -7.438852 15.535152 -0.259921 7.928715 0.225081 2.011327 9.612669 12.334449 -27.452009 1.776498 -8.067655 -1.302957 -18.176042 -28.842801 4.129113 -21.864735 -19.608687 11.913517 -28.644329 4.540209 -19.164201 -1.023796 -29.843960 -7.361855 5.390711 32.223068 11.258027 -10.347006 11.270684 -10.809523 20.705171 1.234964 0.152080 8.754827 21.476233 +PE-benchmarks/box-stacking.cpp__main = -4.021455 4.353143 2.334533 -3.267177 7.420286 -0.226258 0.915267 3.061060 -2.036380 6.428046 -3.469357 -0.647985 -1.622953 -6.375757 -0.101883 -4.123841 -1.749220 3.087570 -0.194417 3.601383 3.040415 -3.527826 0.766326 -1.095359 -2.551035 -6.108479 -0.901068 1.667163 4.478344 -1.876714 2.347765 -0.521509 6.512311 -0.381526 5.900646 4.728569 1.473497 5.370447 1.005575 0.575854 -2.078535 3.183441 -3.660380 -5.036681 1.216284 -2.115325 -4.330535 -3.448825 2.171221 -3.907848 0.941408 5.171372 -1.361297 -0.432189 -3.435160 3.646155 2.823337 0.299347 6.800802 0.799837 -1.624940 -0.996314 -6.604400 4.138691 -2.486695 1.067771 -0.323907 -4.264343 1.505028 -0.256392 -0.305654 -2.383846 -1.571090 5.480221 3.093461 -5.116684 0.530029 -3.420532 -9.114582 -4.272638 -3.894869 1.618820 0.464978 4.772744 0.521907 1.932474 0.684404 3.343673 -1.722950 -8.052374 0.794749 6.966740 -2.204608 -0.949231 -3.566683 5.129319 0.844942 1.023801 -3.245279 -0.578395 1.920233 0.291166 2.829243 -4.450107 -1.288170 -6.769111 1.566904 0.085927 -0.007238 1.621239 2.548672 1.297375 3.465339 6.323782 -5.907724 2.520817 -6.094062 1.573471 -0.352161 1.951350 -1.127044 2.649925 -0.467549 1.740359 5.510924 -8.163182 2.812728 0.079880 -1.603774 -7.055751 0.252274 -2.872084 -1.676102 -2.024120 2.853965 -0.189179 -0.976045 -2.693957 0.407114 0.696107 -2.908798 -3.743817 2.207895 6.250631 -4.833235 1.510154 -1.447198 -1.940386 -1.488018 3.257928 4.540246 4.285123 7.203777 5.048035 0.677440 2.293102 -5.786492 -0.448290 6.183507 3.137118 -5.233328 5.698018 -3.657794 -1.581231 1.051073 4.055762 4.255995 2.631993 -5.852467 -4.957281 2.710988 0.700904 6.452822 2.523495 0.646554 -2.310991 5.931477 -0.122908 -3.922200 7.131174 4.001941 -4.619274 1.613262 1.721682 -5.315079 -2.683120 3.974665 -3.723367 0.227945 -1.431119 0.110017 2.585256 -2.307259 -2.736528 -0.269386 -5.486312 6.770774 -1.202385 1.412989 2.254566 -4.657844 -6.113835 5.228312 -0.112670 -2.731471 -4.002823 -3.908054 -4.506807 -4.518811 2.135082 1.641755 -2.356964 -4.033765 -5.389961 0.191587 3.692797 0.624976 3.187418 -4.784524 -3.218062 2.852757 1.356876 3.788010 -3.797745 -0.917187 -0.907637 0.762338 2.628995 0.379684 5.156446 8.562706 -3.117899 3.723630 -0.152019 -2.293595 1.826853 3.929136 -6.635875 6.821233 -0.300886 3.431918 -0.390616 2.019062 -1.986360 0.647388 1.883181 -0.671317 1.271782 1.449865 -1.190582 -1.863035 -0.354098 -5.924738 -2.141302 -0.342154 1.498917 -0.279724 1.843307 0.954824 -3.425895 -1.905511 -3.626511 0.088339 4.335726 0.344498 -2.134023 3.334686 -0.134953 0.980627 -0.174857 0.639767 2.036279 3.268084 -6.194332 0.472486 -1.423333 -0.295284 -4.445837 -6.201886 0.550619 -4.767235 -4.260192 2.704053 -6.367136 0.519482 -4.248402 0.112911 -6.489715 -1.670379 1.042421 7.228992 2.771475 -2.167830 2.834684 -2.110241 4.733399 0.422931 -0.206578 1.896592 4.950220 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.945493 0.478445 -0.180082 -0.679632 2.575154 -0.667928 0.156183 1.235778 -0.727945 1.656826 -0.571078 -0.005028 -0.212114 -1.814248 0.292644 -0.150164 0.118238 0.942953 0.011118 0.753035 0.584377 -0.627626 0.156395 0.014182 -0.583221 -1.591289 -0.242225 0.754120 1.472933 -1.275632 -0.123967 0.299366 2.109037 -0.505431 1.828171 1.330891 0.829042 0.884358 0.803826 -1.422940 -0.075944 0.602918 -0.881077 -1.003957 -0.030507 -0.162763 -1.504743 -0.526047 0.765786 -0.382263 -0.122474 1.364751 -0.397372 0.134637 -1.048786 1.272575 0.500848 -0.361619 1.736872 0.205830 -0.592177 -0.395652 -1.512704 2.022022 -0.754693 -0.188402 -0.950937 -1.341462 0.228277 0.359811 -0.210160 -1.096688 -0.445897 1.413179 0.874839 -1.359699 0.335151 -0.492465 -0.412280 -1.816024 -1.346508 0.653710 -0.584868 1.297282 0.213315 0.563472 0.040772 0.683205 -0.455768 -2.112428 0.419061 1.544869 -1.047773 -0.356130 -0.704892 1.170833 0.499228 0.061337 -0.623115 -1.082165 0.349059 -0.677003 0.773614 -0.937492 1.438630 -1.107232 -0.474752 -0.389462 0.741926 1.360845 0.794943 0.417466 1.052321 1.489829 -0.920485 -0.588581 -1.580702 0.771214 -0.695229 0.276715 -0.524210 0.830743 0.820594 0.738653 1.556845 -2.368141 0.511642 0.002785 0.077743 -1.465702 -0.007192 -0.485006 -0.479484 -0.567093 0.956042 -0.330177 -0.168479 -0.547952 0.603210 0.596005 -1.026185 -0.230672 0.240696 1.462194 -1.854800 0.495384 -0.259164 -0.506606 -0.160403 0.813051 1.397392 1.482611 1.908838 1.411388 -0.306976 1.058434 -2.090451 0.194356 1.591071 0.013436 -1.169013 1.824635 -1.509966 -0.624852 0.367225 1.623228 1.103369 -0.008773 -1.145363 -0.905455 1.138454 0.672379 1.746410 -0.411158 -0.015697 -0.656184 0.946650 0.160399 -0.836571 2.156705 0.313314 -1.661247 1.074261 0.814446 -0.826792 -0.486975 0.987245 -1.713783 -0.339244 -0.891488 0.423977 1.184605 -0.833470 -0.135884 0.302962 -1.149748 1.418927 -0.440174 -0.881830 0.847037 -1.067613 -0.772658 1.876362 0.203901 -0.042845 -1.112113 -1.533969 -0.651175 -1.361199 0.331760 0.043412 -0.444065 -0.357978 -1.400954 -0.500739 1.488384 0.426776 1.135670 -2.595608 0.152103 0.896828 0.815998 0.537333 -0.730287 -0.142128 0.256540 -0.178177 -0.082794 -0.761910 1.117096 1.737335 -1.106723 0.735875 -0.160976 -0.809873 0.727137 0.483031 -2.050335 1.981555 0.435398 1.269852 0.295279 0.415115 -0.835841 0.173822 0.086304 -0.088434 -0.341390 0.156092 -0.619400 -0.585410 0.330617 -0.892383 -1.546842 -0.412793 0.760051 -0.071668 0.518269 -0.623201 -0.725030 -0.439528 -0.933285 0.633514 0.915859 -0.280876 -0.396299 1.345708 0.491411 0.066532 0.017410 0.039762 0.649371 0.967975 -1.788808 0.128345 -0.152469 1.141696 -1.055075 -2.005296 0.342545 -0.903267 -0.582353 0.549613 -2.007318 -0.611605 -1.063000 0.072732 -1.809136 0.033736 0.624270 2.183756 0.392957 -0.845546 0.732525 -0.569834 0.572086 -0.199034 0.197318 0.333020 0.812559 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -9.005967 6.868941 3.044000 -7.141356 19.192102 -1.492904 -0.005386 8.707245 -8.244500 15.537704 -5.151462 -0.421974 -3.604289 -15.313383 0.846238 -6.164608 -2.826850 5.321563 -0.184969 9.437365 6.587480 -8.065323 1.443089 0.098665 -6.863762 -11.195241 -2.243471 5.814073 15.051202 -10.923053 0.272503 -0.372275 16.259248 -4.313895 15.332285 11.819722 6.316662 9.541000 2.988691 -9.658671 -5.609447 7.033885 -10.134261 -7.913090 0.488257 -3.853771 -11.889246 -4.087998 6.841502 -1.838183 -2.799987 13.794618 -4.236942 0.740847 -8.568840 12.332713 2.249232 -1.377573 17.381869 1.438897 -3.108226 -4.307249 -16.401283 12.890730 -5.697898 1.863844 -7.614502 -8.859233 3.845541 -1.400324 -3.116418 -9.478138 -2.765317 15.233292 7.528939 -13.724813 2.134775 -7.722061 -12.816531 -14.742756 -12.078876 5.717184 -0.895257 11.709712 2.154926 6.110405 2.733995 10.047268 -6.491077 -21.885047 5.376295 14.416771 -8.644364 -4.548590 -7.497286 12.486869 0.232693 3.219770 -8.794193 -3.608978 5.133951 -2.360235 7.682490 -15.206055 10.352956 -14.266096 -0.948508 -3.053869 4.533403 4.543825 8.653446 2.264404 11.166228 17.154363 -10.680020 -1.357661 -13.980931 2.917533 -3.591340 4.372909 -4.612671 9.152226 2.328449 5.019259 15.699356 -21.679275 3.987353 -1.142829 -3.172208 -17.373321 -0.113099 -7.360472 -4.203766 -5.317212 8.036077 -2.375361 -2.277237 -7.338197 4.786141 4.102090 -8.600599 -3.079785 5.961102 13.570565 -14.241955 4.187514 -3.024591 -4.707501 -2.491190 9.288633 13.710650 13.675060 19.123338 12.889255 -0.192016 7.910888 -15.931565 -0.786339 12.552341 3.039123 -12.572354 16.608577 -13.269377 -5.429717 1.625574 13.235906 11.816126 3.973982 -12.677232 -10.880303 11.003386 6.251684 16.775148 -2.348917 1.300844 -0.403533 11.008033 -1.098551 -10.127834 15.637231 6.169806 -12.167207 7.172795 3.972044 -5.826040 -5.346189 11.745582 -13.931947 0.784911 -4.793911 0.322760 9.089904 -6.214101 -2.527936 1.408915 -12.174126 15.885574 -3.977137 -1.158578 8.161323 -11.106702 -12.198608 11.693463 -0.546913 -4.907639 -12.109988 -11.622782 -9.806140 -10.372639 5.267602 2.070228 -4.046287 -7.806930 -14.202315 -2.176223 10.031046 4.940768 9.970439 -18.513416 -3.779946 7.829968 5.554373 10.472613 -2.333241 -1.032667 -0.043295 -1.109326 4.078740 -4.430766 12.319986 18.621206 -9.116035 9.159029 -4.566622 -6.847312 4.930069 6.313925 -18.749163 18.613096 4.536337 9.689477 -0.229025 4.100865 -6.969364 2.403243 4.301209 -0.866674 2.847068 1.032822 -1.668007 -5.783111 -2.421517 -11.532662 -8.791742 -4.647372 3.965270 -4.242187 5.716842 -0.681919 -6.373381 -5.971425 -9.424504 3.390905 10.101587 -1.777979 -1.649146 11.730144 0.330591 4.241998 5.549247 1.024377 5.206198 8.712320 -16.654977 -1.639794 -3.667494 5.525792 -9.501860 -16.709516 -0.958765 -8.533563 -4.921281 7.049338 -14.957407 0.086784 -10.632100 -1.021934 -13.818087 -1.537100 5.106181 19.093554 6.499155 -8.721191 6.056829 -5.880579 9.273189 -0.068806 -0.436386 3.711945 7.968551 +PE-benchmarks/longest-palindrome-substring.cpp__main = -4.603606 1.443177 -1.563484 -5.854326 11.652114 -2.026072 -1.508380 6.839769 -0.776186 7.053756 -3.433410 0.018227 -1.375366 -9.326318 0.878068 -1.331690 0.042707 4.132609 -2.117424 4.333527 3.731517 -1.894059 2.526876 -0.804659 -3.591376 -4.833042 -0.681073 3.695389 3.868453 -3.890777 0.419784 0.230192 8.868842 -1.444768 7.186657 4.871014 4.667163 6.318537 2.584396 -2.927544 0.411998 2.643691 -3.580334 -6.398425 1.528730 -2.049901 -7.725057 -3.283027 3.995720 -4.934158 0.845345 7.120949 -0.530928 -1.275862 -5.361611 4.655132 1.985516 -1.659119 8.034540 1.781346 -4.387998 -3.013550 -6.972744 5.593216 -4.326218 1.973291 -1.839403 -5.068983 -1.094164 3.380380 -0.004316 -5.165446 -3.832567 3.995162 4.257805 -6.017273 2.531745 -2.991532 0.673128 -6.236574 -4.212618 3.600743 -2.198619 5.686568 0.664287 3.670429 0.667273 3.065812 -2.125797 -9.182665 1.830037 5.962100 -4.350778 -1.272870 -4.683772 5.789435 -0.573960 -1.121135 -4.772991 -3.420302 2.437175 -0.973433 3.894591 -3.684013 2.917870 -6.072940 1.095688 1.058410 2.298364 3.462727 2.979351 1.164912 3.302878 6.498024 -3.829835 1.507197 -9.296165 1.977238 -2.846505 2.570275 -3.695505 3.273786 4.754506 3.441407 5.631711 -9.833864 5.712252 1.253394 -1.948229 -6.407989 1.854214 -0.844451 -2.050575 -1.491541 5.033741 -2.388605 -0.994647 -1.600832 3.524000 1.335138 -5.132749 -1.529680 0.461474 4.777173 -6.470702 2.825723 -1.179045 -3.091747 0.101156 3.361233 5.721917 4.592982 10.679967 5.326397 -1.764525 3.903467 -8.072188 1.638695 8.612234 1.614803 -5.941865 7.738609 -5.786716 -1.557712 0.549877 6.215659 4.938042 2.164485 -4.524697 -3.425078 3.950843 2.396179 8.536039 -0.926231 1.778142 -5.388689 2.695788 -0.827483 0.486906 10.125640 3.618412 -7.555906 2.571043 4.817936 -3.008646 -2.908386 3.779378 -5.218885 -1.236621 -2.591974 2.835130 4.965876 -4.484655 -4.322423 -0.115606 -5.764908 6.012176 -2.307318 -3.304747 2.696782 -6.595918 -1.490764 8.152914 0.545645 -2.271068 -3.812729 -6.745019 -1.919432 -7.653364 2.357411 2.656771 -1.609642 -1.404229 -5.411332 -2.283858 6.099649 0.971943 2.789082 -10.522570 0.034227 4.928414 1.338386 3.413130 -3.546468 -0.326670 0.731609 -0.588891 1.658215 -2.898689 3.114137 7.391107 -5.621444 4.576986 -0.243452 -1.710424 2.654313 4.337437 -7.683672 10.813632 1.948624 7.060711 0.236960 2.763113 -2.741119 2.121128 -0.175747 -1.613492 -0.006098 1.882833 -4.055955 -3.621391 1.846677 -2.763124 -6.240839 -0.390094 5.007106 -1.455680 2.580515 -1.321796 -2.012150 -2.833977 -3.772693 3.315995 4.903377 -2.279535 -3.453742 4.270767 4.648261 -0.635071 0.494460 1.269959 3.951046 6.849100 -8.528802 2.635871 -0.656760 3.361877 -6.332705 -7.182947 2.368247 -3.150589 -0.612507 2.113648 -8.613456 -3.718136 -4.757755 3.261994 -5.328661 1.150068 2.061441 8.785881 3.518325 -3.426990 3.893330 -2.130087 2.788359 -0.314326 -0.227405 2.924808 4.755370 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -4.529377 4.358764 0.726268 -4.914160 10.119030 -2.549764 2.015543 3.714389 -3.988886 5.622928 -4.977072 2.368569 -0.765389 -8.035647 1.147297 -2.378356 0.154314 4.688936 -0.205402 4.800632 3.249022 -3.506097 1.275467 -2.622101 -2.414944 -7.169322 0.108250 2.440014 3.623509 -1.237089 2.066434 0.927870 7.297836 -1.363705 5.170451 5.591411 1.974814 6.275083 2.899650 -4.775724 1.265630 2.714171 -2.465486 -7.027782 1.297171 -1.431253 -5.941206 -4.398937 2.999139 -5.810067 -1.229320 5.449509 -0.444489 -2.170072 -6.259363 4.431756 6.097526 -1.433950 6.759866 1.654448 -2.299025 -1.801805 -4.765892 5.051222 -4.130352 -0.297854 -0.612230 -5.317116 0.865606 3.957637 -0.394914 -2.640402 -3.413633 2.226565 3.103264 -5.438576 1.328977 -2.361676 -5.071572 -5.295085 -2.814714 1.900541 -1.755537 5.751644 0.296966 2.011894 -0.181942 1.662351 0.468874 -6.167915 -1.228997 6.305829 -1.839012 -1.405006 -3.004214 6.759687 4.045348 -2.430370 -3.128360 -3.234599 1.754451 -1.266110 3.149397 -3.156864 -0.084306 -5.247572 -0.372378 1.032980 0.873400 6.105986 -0.022165 3.354922 2.042726 3.378485 -4.464349 1.513667 -8.382371 2.126666 -2.193161 1.228091 -1.872475 1.670530 2.833480 2.586867 4.423680 -7.665067 5.972657 1.429517 0.103231 -5.280507 2.171787 0.353021 -1.616436 -1.893098 3.766071 -0.710416 -0.498416 -0.144056 1.869910 1.021125 -2.902301 -2.795436 0.067112 7.655474 -6.730205 2.482579 -1.466972 -2.144033 0.056361 1.426259 3.405365 3.362295 7.799766 5.532040 -0.912493 5.788561 -6.846873 1.595341 8.471561 3.743854 -4.713182 5.384798 -3.277949 -1.936782 1.462512 3.672519 3.491385 2.598869 -6.328759 -5.534369 2.611143 -1.096551 6.484694 1.809842 0.514230 -6.689213 5.929482 0.187096 -0.441505 8.371532 2.918035 -6.583313 3.910173 5.653260 -6.416109 -3.377236 2.350852 -3.937541 -1.817917 -2.092182 1.998495 3.429100 -4.125089 -4.802809 -2.299865 -4.993598 5.007609 -1.199334 -2.436090 0.958644 -3.607802 -3.260564 6.990609 1.131140 -1.619788 -3.331631 -4.737895 -3.535966 -7.449140 1.568548 1.617581 -3.009311 -2.707800 -5.032246 -2.149328 4.753141 -1.494076 1.442143 -8.893928 -0.561422 3.948658 4.556389 1.261246 -5.010358 -1.020732 1.174867 0.630696 0.418113 -1.180443 4.458725 7.012624 -4.715562 2.822847 -0.040800 -2.299246 4.130706 5.336249 -6.210504 7.904107 0.395123 7.891175 1.229579 2.349212 -2.728179 0.719019 0.295739 -2.575832 -1.240798 2.144563 -4.814673 -2.362532 3.269851 -2.228082 -5.203272 1.635792 4.671681 1.329226 1.055035 0.159792 -2.024794 -1.629714 -3.117077 1.147384 4.104775 -1.643419 -4.234545 2.741896 4.511916 -1.315852 -2.434715 0.971643 3.601203 4.483182 -6.849918 4.493643 -1.291598 1.399945 -6.122711 -7.090382 4.479159 -4.210674 -3.922503 2.925555 -8.266550 -2.382106 -3.817927 3.420221 -7.020966 -1.267317 1.175115 6.728674 0.671497 -0.864732 3.938647 -2.300445 2.910827 -1.019066 1.083237 0.559876 5.133534 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -3.938041 3.305338 0.582178 -4.500649 9.371799 -1.893573 1.427566 3.171855 -2.653421 4.992198 -4.620852 1.707369 -0.616590 -6.387623 0.848424 -2.186295 -0.210935 3.829933 -0.956068 3.518245 2.736711 -2.235489 1.475024 -2.379233 -2.099178 -6.222314 -0.290848 2.130656 2.921771 -0.911036 1.162460 0.303647 6.087524 -1.738882 4.063515 4.438827 2.333851 5.262116 1.586705 -3.355019 1.753431 2.278614 -2.174301 -5.868046 0.918622 -1.495722 -5.716361 -3.537581 2.883039 -5.480115 -0.649214 4.628539 -0.305101 -2.332698 -4.774687 4.624117 4.974711 -1.115986 5.821881 1.299547 -2.415047 -1.354798 -4.526350 5.020843 -3.695353 1.043063 -1.031314 -5.020089 -0.477963 3.689026 -0.309325 -2.288151 -3.340414 1.757112 2.847744 -4.557995 1.143733 -2.260363 -2.956546 -4.140045 -2.259116 1.769922 -1.639335 4.505547 0.303368 1.828662 -0.014615 1.520836 0.462055 -5.188960 -1.284300 5.737770 -1.755965 -1.018986 -2.957048 4.635299 3.156518 -2.314172 -2.492506 -2.776105 1.315695 -0.694390 2.695176 -2.983198 0.401513 -4.724313 -0.029688 1.848655 0.986348 4.727480 -0.787876 2.562794 1.420833 2.853660 -3.314668 1.560107 -7.317873 1.528005 -2.191914 1.179605 -1.892136 1.539067 2.721166 2.646856 3.840503 -6.373899 5.630755 0.863773 -0.670836 -4.090699 1.917088 0.547649 -1.448059 -1.162671 2.961276 -0.687697 -0.585364 -0.036072 2.061303 0.599088 -2.615958 -1.984148 0.083638 5.264781 -5.381000 2.164437 -1.135971 -1.681570 0.198866 1.603238 3.042448 2.621209 6.982479 4.699327 -0.581010 4.328096 -5.811473 1.718670 7.163578 2.430888 -4.087674 4.513566 -3.110824 -1.359445 1.254214 3.127840 2.495511 3.248868 -4.960153 -4.288015 1.410644 -1.000996 5.612180 1.981302 0.467170 -6.023875 4.331881 -1.050868 0.206795 7.135564 3.400163 -6.011945 2.894591 5.043550 -5.254233 -3.235570 1.969645 -3.244678 -1.587895 -1.931971 1.786976 3.033889 -3.389666 -4.543680 -1.665408 -4.259360 4.500286 -1.041944 -2.635963 0.954372 -3.244040 -2.690313 5.945552 1.014466 -1.512359 -2.702973 -3.986149 -3.079867 -6.566898 1.354936 1.742474 -2.584206 -2.422055 -4.235474 -1.592073 4.043019 -1.393398 1.441398 -7.453224 -0.507326 3.337512 3.726706 1.584092 -3.934262 -0.752370 0.293752 0.084633 0.437185 -1.432089 3.210514 6.081950 -4.088181 2.962879 -0.032136 -2.885108 2.762694 4.943222 -4.964161 6.862413 0.656062 6.051705 0.892788 2.154376 -2.216179 0.997016 0.047754 -2.629094 -0.857586 2.097375 -4.414404 -2.243295 2.563030 -2.101290 -4.389473 1.636929 4.188383 1.049576 0.882886 0.034668 -1.954639 -1.544631 -2.660005 0.838104 3.450292 -1.636043 -3.968987 2.183857 3.977610 -1.969312 -2.595419 0.900879 2.987493 4.140718 -5.887311 4.049599 -0.795963 1.174318 -6.047340 -5.431732 3.123016 -3.540367 -3.336813 2.198804 -6.665758 -2.641946 -3.278065 3.053639 -5.417086 -1.899946 1.309949 5.734768 1.065199 -0.692034 3.589311 -1.883931 2.556882 -0.646220 0.458593 0.793865 3.980481 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -1.873469 2.155341 0.608961 -1.846446 4.472106 -1.231826 0.666373 1.253611 -1.573519 2.040360 -2.508511 0.698589 -0.608644 -3.567201 0.483047 -1.498538 0.029030 2.068463 -0.150976 1.961570 1.450126 -1.573210 0.505326 -1.396714 -0.828082 -4.008441 -0.093240 0.714535 1.345522 -0.453345 1.062239 0.279794 3.165620 -0.151412 2.035691 2.143389 0.421186 3.181156 1.129950 -1.246770 0.288055 1.400506 -1.073626 -3.391945 0.673842 -0.831212 -2.619586 -1.881879 1.061811 -2.869313 -0.189361 2.081587 -0.013847 -0.776052 -2.566368 1.923234 3.672145 0.657793 2.626975 0.746937 -0.432629 -0.533471 -2.047281 0.987798 -1.704177 0.047561 -0.002451 -1.944609 0.250815 1.293621 0.069622 -1.127022 -1.797179 0.769082 1.341804 -2.013044 0.667219 -0.834865 -3.668475 -2.127655 -1.560344 0.645336 -0.937419 2.378557 -0.053011 0.729818 -0.186414 0.646169 0.518138 -2.307057 -0.755623 2.924055 -0.542756 -0.599222 -0.589390 3.371959 1.573616 -0.724381 -1.293397 -1.267077 0.698325 -0.296326 1.174907 -1.084259 -0.762507 -2.826584 0.771436 0.444216 -0.054528 2.746989 0.181430 1.252566 0.566588 1.276972 -2.542515 1.208869 -4.411993 0.532234 -0.991086 0.641316 -0.596325 0.661459 0.805053 1.130293 1.507133 -3.245861 3.102395 0.771528 0.099679 -1.940123 0.977792 -0.035315 -0.772781 -0.759439 1.504285 -0.100504 -0.206772 -0.057351 0.512286 0.251515 -1.037568 -1.455930 -0.013935 3.984001 -3.245417 0.841999 -0.658635 -1.045059 -0.107868 0.347719 1.011599 1.092557 3.460741 2.163473 -0.674827 2.011026 -2.621133 0.632815 4.235240 1.614028 -1.891574 1.821991 -0.481969 -0.514172 0.652706 1.389176 1.451292 1.238068 -3.004549 -2.783267 0.350547 -0.689010 2.503730 1.465066 0.387996 -3.485613 3.270201 0.418256 -0.222199 4.050191 1.683251 -2.438432 0.810634 2.211437 -3.423292 -1.423943 0.724960 -1.032619 -0.151449 -1.065910 0.817799 1.080517 -1.622679 -2.739039 -1.037060 -2.148469 1.946262 -0.341443 -0.777370 0.282154 -1.398629 -1.635701 3.168368 0.416149 -0.811823 -1.433075 -2.052455 -2.147295 -2.985892 0.794042 0.422544 -1.245550 -1.180800 -1.910535 -0.544192 2.229241 -0.843528 0.335288 -3.475575 -0.779462 1.215161 2.298524 0.739396 -2.400170 -0.527957 0.444995 0.201534 0.425506 0.299744 2.253397 4.038897 -1.846303 1.369704 0.308372 -1.064347 1.580413 3.397748 -2.184899 2.824652 -0.633438 3.990086 0.165157 1.133448 -0.943920 0.233502 0.362414 -1.351582 -0.328352 0.972440 -1.773406 -0.870571 1.396765 -0.976899 -2.073686 0.823222 1.637617 0.884163 0.307581 0.101275 -1.108290 -0.223323 -0.817367 0.285511 1.803964 -0.081040 -2.190810 0.721870 1.677581 -0.400303 -1.496315 0.412397 1.011692 1.857473 -2.626818 1.713293 -0.528798 0.464796 -2.683125 -2.832186 1.628062 -1.853000 -2.117644 1.562279 -3.342497 -0.790715 -1.436734 1.408899 -3.266411 -0.642276 0.181604 2.315297 0.560387 -0.325408 1.538785 -0.782305 1.407280 -0.229975 0.132293 0.195861 2.610151 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -1.530856 0.957537 -0.585989 -1.326657 3.821091 -1.488655 0.599953 2.070372 -1.509095 1.869629 -1.399934 1.229756 -0.155884 -2.759831 0.586138 0.238545 0.611973 1.920873 -0.092373 1.221033 1.062205 -0.717092 0.244733 -0.660631 -0.820879 -2.247226 0.226109 0.949724 1.159531 -0.995274 -0.065962 0.873706 2.986807 -0.594589 2.119423 2.034661 1.197687 1.968558 1.557475 -2.246071 0.664451 0.814720 -0.743034 -2.270227 0.353960 -0.302354 -2.040900 -1.140415 1.114372 -1.503338 0.215704 1.769326 -0.074250 -0.291538 -2.117970 1.544360 1.798651 -0.968699 2.327889 0.678279 -1.230733 -0.729412 -1.195117 2.805073 -1.529690 -0.411353 -0.470459 -1.972284 0.191037 1.555762 0.373714 -1.610650 -1.286309 0.667656 0.761397 -1.868714 0.648791 -0.329534 0.018576 -2.373216 -1.457680 0.740377 -1.058344 1.937773 0.038344 0.618971 -0.724006 0.351678 0.156344 -2.089678 -0.274762 1.919484 -1.175766 -0.035135 -1.348473 1.959044 1.260007 -0.799059 -0.944924 -1.863602 0.579050 -0.826570 1.044186 -0.774689 0.995131 -1.006241 -0.460332 -0.142635 0.627035 2.520242 0.143454 1.187933 0.880362 1.049253 -0.633990 -0.244092 -3.126407 1.164125 -0.750207 0.223125 -0.675547 0.519254 1.612954 0.789672 1.622853 -2.799707 1.815386 0.395395 0.307779 -1.654685 0.692530 0.230974 -0.666315 -0.874841 1.657516 -0.320705 -0.174385 -0.063338 0.999004 0.601376 -1.575763 -1.026770 -0.318809 2.431688 -2.802159 0.776360 -0.549722 -0.802434 -0.001026 0.489313 1.173827 1.447972 2.572016 1.921359 -0.557627 2.172754 -2.885042 0.576766 2.781983 1.318420 -1.618123 2.004506 -1.568986 -0.724186 0.726342 1.677719 1.101209 0.248842 -1.686161 -1.407531 1.363647 0.058642 2.365524 -0.070691 0.202201 -2.124037 1.299059 0.330102 -0.165809 3.319286 0.530806 -2.676440 1.701733 2.004558 -1.083291 -0.914740 0.823934 -1.901346 -1.107576 -0.996194 0.987284 1.507193 -1.707260 -1.044576 -0.190196 -1.554981 1.482847 -0.478933 -1.538855 0.497788 -1.530951 -0.233532 2.813614 0.484891 -0.064265 -1.089520 -1.999431 -0.869856 -2.682424 0.362849 0.373752 -0.709712 -0.531419 -1.773577 -1.048863 2.150733 -0.315184 0.620527 -3.816783 0.289216 1.499569 1.450686 0.027352 -2.104571 -0.334531 0.667175 0.248447 -0.111748 -0.986403 1.276452 2.125755 -1.783909 0.798357 0.456892 -0.548702 1.383627 1.465976 -2.318364 2.697631 0.318716 2.650967 0.722263 0.699731 -1.290950 0.083114 -0.297676 -0.027812 -1.007177 0.555304 -1.733788 -0.754080 1.153671 -0.533582 -2.190129 0.312293 1.772131 0.449054 0.344035 -0.644317 -0.405559 -0.572495 -1.454056 0.754798 1.335622 -0.850803 -1.337413 1.371031 1.568585 -0.810924 -0.247651 0.269405 1.325489 1.698202 -2.377575 1.298749 -0.182515 1.159033 -2.092564 -2.909949 1.441463 -1.180883 -1.072345 0.855547 -3.164459 -1.451032 -1.149111 1.306401 -2.828863 0.017635 0.472451 2.487421 -0.001224 -0.317189 1.439370 -0.681065 0.653128 -0.445259 0.592447 0.026598 1.647739 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -1.543557 1.707205 0.779819 -1.866503 4.831178 -1.268334 0.680337 1.548719 -0.862081 1.841584 -2.269857 0.544285 -0.006591 -2.852003 0.612796 -1.364567 -0.188242 1.984477 -0.392097 1.312424 1.007807 -0.452907 0.144185 -0.919609 -0.841731 -3.333587 -0.734440 1.006293 0.959496 -1.041143 0.537872 0.545635 3.150587 -0.759122 2.293804 2.247700 1.217271 2.232799 0.741588 -0.860008 1.075831 0.802837 -1.003984 -2.497420 0.086679 -0.422441 -3.092900 -1.457857 0.949126 -2.241515 0.249112 1.951610 -0.046089 -0.549199 -1.745954 2.387827 2.146248 0.127122 2.229166 0.871226 -1.350523 0.160202 -2.137118 2.473188 -1.418514 0.901291 -1.016114 -2.498963 -0.335852 1.608224 0.636518 -1.636412 -1.727256 0.788819 1.122174 -1.730543 0.721366 -0.868461 -1.407725 -2.048132 -1.395148 1.224489 -0.820597 1.903686 0.175189 0.563692 -0.588442 0.559491 -0.007461 -2.122495 -0.669307 3.053768 -1.113701 -0.555128 -1.320881 1.890764 1.535242 -0.598275 -0.682332 -2.045569 0.817483 -0.536317 0.953345 -0.456608 0.528990 -2.075225 -0.088887 1.030739 0.289011 2.613537 -0.459599 1.343990 1.070098 1.105321 -1.551414 0.646250 -3.868762 1.061779 -1.601990 0.361442 -0.739801 0.641972 1.167586 1.743142 1.509737 -2.754128 2.517043 0.389091 -0.430808 -1.337687 0.678164 -0.069045 -1.062848 -0.669309 1.151095 0.242715 -0.207693 0.027341 0.669647 0.219886 -0.574110 -1.368942 -0.038986 2.402324 -2.801858 0.643039 -0.303312 -0.542474 -0.332548 1.040517 1.565262 1.286575 3.560957 1.906755 -0.308197 1.174274 -3.051839 0.537685 3.396316 0.672539 -1.619370 2.118056 -1.175716 -0.667796 0.525266 1.994195 0.678848 1.149875 -2.317819 -2.042201 0.035923 -0.397948 2.484487 1.036763 -0.195892 -2.819499 1.963468 -0.410385 -0.516494 3.834713 1.628219 -2.522941 0.392425 2.192406 -1.968682 -1.836447 1.179437 -1.827052 -0.843191 -0.827094 0.727409 1.222189 -1.363629 -1.993728 -0.010274 -1.805052 1.686408 -0.450012 -1.732614 0.154436 -1.327380 -1.878664 3.462918 0.380586 -0.370064 -0.961348 -1.900382 -0.606569 -2.633473 0.462623 0.901832 -0.798374 -0.898650 -1.632103 -0.297412 2.236949 -0.983830 0.952976 -3.356172 -0.609229 1.340802 1.442746 0.643703 -2.365995 -0.378195 -0.173632 -0.106562 -0.131721 -0.632807 1.651520 3.444753 -1.497252 1.427242 0.722887 -1.885454 0.706676 2.689895 -2.165273 3.036472 0.068885 2.811202 0.582190 0.864786 -1.221039 -0.115596 0.002621 -1.000839 -0.734445 0.983198 -1.656612 -0.620351 0.857987 -0.936257 -2.064663 0.752938 1.811614 -0.016665 0.262808 -0.270483 -1.180082 -0.500591 -0.994018 0.529711 1.439329 -0.659387 -1.872810 1.227141 1.709743 -1.079731 -1.135240 0.205753 1.145200 1.930095 -2.483851 1.537126 0.014649 1.185903 -3.235098 -2.699315 1.098939 -1.988612 -1.477548 0.158443 -2.800771 -1.846063 -1.472924 1.088318 -2.622990 -1.088003 1.222312 2.610238 0.811401 -0.809035 1.143408 -0.845223 1.158103 -0.085383 0.028738 0.354417 1.779450 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -3.805523 1.806752 -0.269209 -3.344286 9.695226 -3.738949 1.307099 5.264942 -1.979798 4.451165 -3.794102 2.186937 -0.702681 -5.655812 1.228070 -0.591983 1.280518 4.950811 -1.255667 2.082161 2.709309 -0.004447 0.765576 -1.770106 -1.862186 -5.241640 -0.235671 2.122851 1.537539 -1.850013 -0.384382 2.094877 7.412268 -1.564817 5.294373 4.930443 3.675660 5.033714 2.477322 -2.755433 2.368805 1.953342 -1.788808 -5.619563 0.957335 -0.929152 -5.379413 -2.753803 2.857876 -4.550288 1.842747 4.218101 -0.112446 -0.846524 -3.960473 4.269417 3.422434 -1.623963 5.381921 1.777622 -4.184348 -0.588626 -3.516013 7.145949 -3.834044 1.169843 -1.535773 -5.697562 -1.074235 3.914687 1.996655 -4.305132 -3.793489 1.416485 1.678939 -4.102499 1.647358 -0.804521 1.415757 -4.500310 -3.787834 1.939189 -2.267648 3.910931 0.092468 1.400918 -2.274833 0.830381 0.517465 -4.858917 -0.831976 5.342899 -3.199903 0.626791 -4.385377 2.474195 2.570668 -1.977896 -1.743653 -4.744979 1.447181 -1.761277 2.508141 -1.141016 1.714978 -2.462553 -0.342577 1.210786 1.410727 5.183587 -0.925138 2.874398 2.150701 2.361804 -0.798955 0.609447 -7.813889 3.139324 -2.437880 0.335963 -1.517777 1.305667 3.646091 2.426063 3.784032 -6.243841 4.742638 0.639190 -0.603423 -3.332133 1.855332 0.523808 -1.787678 -2.056442 4.070040 -0.457264 -0.703514 -0.128887 2.504246 0.690770 -3.056584 -2.900766 -1.156197 3.663953 -5.538797 1.762333 -1.409836 -1.992654 -0.037332 1.695189 2.744351 3.380780 6.372241 4.609678 -1.189755 3.051239 -7.009395 1.239830 6.103867 2.314049 -3.989162 4.739677 -3.519732 -1.375163 1.857874 4.096536 1.855113 1.793833 -3.261198 -2.948362 1.290124 -0.063418 5.674311 1.272120 0.407140 -5.374209 1.809602 -1.105871 -0.321870 8.136731 2.558593 -6.657897 2.483820 5.016584 -2.101172 -3.517917 1.955519 -4.448968 -2.878299 -2.396403 2.394640 3.531810 -4.211942 -2.903192 0.787071 -3.941442 3.620677 -1.033780 -4.005522 1.078262 -4.522669 -1.473810 7.272779 1.184449 -0.291973 -2.197410 -4.852423 -1.127089 -6.641660 0.983260 1.615864 -1.100845 -1.587700 -3.990302 -1.740266 5.014202 -0.959232 1.970121 -7.399203 -0.044624 3.605568 2.032651 0.676961 -5.637109 -0.952586 0.380064 0.146450 0.145956 -2.302459 2.000335 5.487069 -4.133524 2.409054 2.376992 -2.732666 1.864309 4.002508 -5.290204 6.489252 0.684376 4.949802 1.777343 1.861605 -3.205843 0.193525 -0.765951 0.014419 -2.460386 2.005745 -4.320801 -1.804181 1.967424 -2.014804 -4.581498 1.007770 4.335460 0.482664 0.718372 -1.304436 -1.671995 -1.486146 -3.575241 1.700314 3.369479 -2.116369 -3.724257 3.181518 3.621009 -3.532080 -1.399441 0.854371 2.860431 4.544188 -5.759800 3.281823 0.138114 2.301825 -6.107472 -6.101044 2.615774 -3.514985 -2.834824 0.951147 -6.768165 -4.291647 -2.772161 3.322740 -5.754797 -1.255144 1.587400 5.993866 0.990525 -0.647502 3.681278 -1.469562 1.788794 -0.532618 0.582953 0.277981 4.093018 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -5.288690 5.018948 1.898243 -4.464431 11.762314 -2.844899 1.764037 2.428798 -2.464166 9.736592 -3.789740 -3.827236 -2.940812 -12.169859 0.592485 -6.383426 -2.209038 5.037544 0.887107 6.126080 4.052267 -6.711982 0.888383 -0.381166 -3.243989 -9.294389 -1.753461 3.377135 9.570593 -7.364666 2.637742 -0.328214 10.942107 -1.371696 9.409858 7.324234 1.624296 7.012929 2.146728 -4.013967 -3.779008 4.634570 -5.643557 -6.384713 0.334556 -0.886397 -6.952969 -4.395392 3.723893 -1.911018 -0.818819 8.517821 -3.024598 -0.170478 -6.932721 6.598267 3.737811 2.197288 10.417080 0.658320 0.761105 -0.205882 -11.438737 6.593931 -3.721216 -0.497325 -3.048972 -5.020963 3.287268 -1.347401 -3.337733 -4.387822 -1.484214 9.773557 6.595475 -7.976515 0.222869 -5.090884 -14.744890 -8.671991 -8.273707 2.802708 -0.537588 7.719264 1.514914 3.509772 3.234639 5.948638 -3.246344 -12.974723 2.766376 9.690993 -3.544136 -4.301171 -2.200407 9.804806 1.809958 1.377190 -4.977690 -2.374596 2.275594 -2.424667 4.934894 -6.974572 1.899814 -10.732887 0.272419 -1.727903 1.231839 2.944639 8.509980 0.565430 5.308657 10.102086 -10.532289 -0.235935 -9.549837 1.936418 -1.337850 2.841643 -1.813141 5.488158 -1.240382 3.563282 8.726542 -15.019330 2.451208 -0.376259 -0.758981 -10.501067 -0.752060 -4.210314 -1.997012 -3.250523 4.409963 -1.035207 -1.267670 -3.642702 1.326804 3.129140 -4.045020 -1.021929 4.277959 11.390021 -8.222320 2.844557 -1.955029 -3.443184 -1.905764 4.401824 7.811597 7.811039 11.478181 8.217898 -0.132480 4.333772 -10.113207 -0.690694 8.662761 -0.025256 -6.917966 10.009635 -6.756901 -3.053821 0.446768 8.881004 7.740612 1.074755 -8.664547 -6.675897 7.417407 2.463425 9.011282 -0.911137 -0.464153 -1.321844 9.335699 1.995395 -7.375136 11.668055 4.061739 -6.509010 4.261811 2.555707 -8.920684 -4.282037 6.841155 -6.807076 2.051232 -3.813156 1.134650 4.435276 -2.790119 -1.721185 -0.748102 -7.336674 9.219973 -2.453884 -0.460004 5.276508 -5.613738 -9.672345 8.996271 -0.976743 -2.911067 -7.751189 -8.525850 -6.131365 -5.815402 3.563223 0.149379 -3.222569 -4.674008 -7.951807 -0.145352 7.963162 2.549166 6.465561 -9.096092 -3.337363 3.900217 5.242454 6.160055 -1.850717 -0.907142 1.092696 0.529174 1.499331 0.750829 7.563816 13.024836 -5.400140 4.802866 -3.019802 -4.365757 4.114232 4.774279 -11.824324 10.665705 0.806602 6.649187 -0.872025 2.169431 -3.170162 1.212433 4.158064 -1.827001 1.933898 -0.076548 -0.683710 -3.195616 -0.621290 -8.274019 -6.518582 -2.262405 2.366264 -1.244818 3.627261 -0.468952 -4.548631 -2.285435 -4.417246 1.756893 6.047861 2.133070 -0.663529 6.331483 0.599543 3.987377 1.684551 0.418405 2.405915 4.568018 -9.776977 -0.299132 -2.944400 3.210863 -3.680040 -11.730105 1.241686 -7.025714 -4.103427 4.380070 -10.159851 0.743427 -6.832316 -0.813914 -10.426009 -0.193795 2.041063 11.278194 4.543747 -4.325007 3.457425 -3.680772 5.463413 -0.573884 -1.072307 3.677401 6.435136 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -2.188458 1.929320 1.024090 -2.268280 5.250645 -1.095619 0.699081 0.971909 -0.004200 3.408408 -2.024287 -1.574596 -0.684987 -4.352721 0.555502 -2.783082 -0.780520 2.249695 -0.165002 2.117032 1.538309 -1.644481 0.245466 -0.575844 -1.303315 -3.450513 -1.304031 1.537183 2.669004 -2.444119 0.937264 0.293069 4.459063 -0.842564 3.912630 3.195697 1.255436 2.771417 0.376047 -0.814548 -0.035736 1.572232 -2.042850 -2.684329 0.086696 -0.435874 -3.366079 -1.950611 1.451306 -1.326978 0.085316 3.248586 -0.728023 -0.298512 -2.468469 2.641614 1.262517 0.682365 3.660965 0.758227 -0.731902 0.843895 -4.315885 2.953702 -1.830910 0.845455 -1.567826 -2.992422 0.305073 0.645768 -0.179856 -2.165909 -1.481149 2.856137 2.312502 -2.877605 0.555128 -1.806234 -3.238461 -2.859402 -2.800648 1.618508 -0.484019 2.953670 0.456952 1.155417 0.705882 1.770690 -0.907688 -4.384026 0.204702 3.932501 -1.648423 -1.225416 -1.264511 2.654459 1.279295 0.068807 -1.567698 -1.539089 1.066988 -0.975159 1.745998 -1.111179 0.905361 -3.312172 -0.261182 0.442940 0.386271 1.760641 1.884559 0.919608 2.060168 3.081290 -3.196228 0.011908 -3.672109 1.179509 -1.524073 0.907122 -0.888246 1.801447 0.444703 1.817675 2.990872 -4.956263 1.649698 0.006581 -0.679716 -3.100572 0.161480 -1.090251 -1.306300 -1.188994 1.696074 0.063307 -0.489073 -0.858477 0.614591 0.868514 -0.778306 -0.633885 1.020327 2.896925 -2.717485 1.001125 -0.579254 -1.229209 -0.774781 1.873464 3.010419 2.735398 4.559591 3.160417 -0.222836 0.862563 -4.006397 0.135888 3.610453 -0.522009 -2.669329 3.758622 -2.505517 -1.086617 0.473522 3.239191 2.135190 1.001977 -2.868450 -2.307930 1.027718 0.435419 3.741111 0.259088 -0.378666 -1.642170 2.735032 -0.052279 -2.191215 4.866920 1.791863 -3.073226 1.036777 1.947457 -3.379064 -2.412834 2.479251 -2.785595 -0.020662 -1.466919 0.781937 1.802621 -1.397980 -1.153072 0.108088 -2.889184 3.195760 -0.959932 -1.166486 1.411119 -2.330921 -3.887845 4.310051 -0.083930 -0.854907 -2.367862 -2.800371 -0.762796 -2.979884 1.150368 0.700363 -1.162546 -1.617877 -2.830071 0.108735 3.263844 -0.084692 2.318984 -3.026682 -1.006619 1.715918 1.454089 2.018207 -1.442412 -0.395292 0.039369 0.026246 0.167817 -0.525461 2.161791 4.775110 -2.189654 1.686504 -0.091412 -2.518977 1.147451 2.159206 -4.137175 4.535511 0.508989 2.311044 0.074483 0.999182 -1.448378 0.114166 1.068300 -0.892551 -0.037889 0.584588 -1.057152 -1.096897 0.199961 -2.667390 -2.313343 -0.065849 1.748554 -0.463944 1.075830 0.050397 -1.988660 -0.773373 -1.388953 0.766817 2.329134 0.298003 -1.075680 2.404946 1.146975 0.197738 -0.512230 0.131881 1.194166 2.410644 -3.895936 0.787158 -0.555819 1.302353 -2.590514 -4.111421 0.716044 -3.110240 -1.324829 0.902921 -3.511500 -0.813476 -2.604597 0.418388 -3.060640 -0.912651 1.480051 4.342391 2.041529 -1.781441 1.416242 -1.413629 2.121716 -0.089677 -0.575971 1.278917 2.312418 +PE-benchmarks/floyd-warshall.cpp__main = -1.456041 0.853090 0.215626 -1.072738 3.023930 -0.889403 0.203136 0.919041 0.036365 2.266664 -1.133244 -1.161846 -0.949609 -2.840088 0.216305 -1.195064 -0.228481 1.521648 -0.199079 1.008597 1.216498 -1.131077 0.300059 -0.309935 -0.657016 -1.965778 -0.533566 0.743762 1.746783 -1.430582 0.145383 0.180530 2.861289 -0.199593 2.295560 1.778694 0.702412 2.155525 0.414731 -0.287367 -0.531805 1.327764 -1.277181 -2.029707 0.497864 -0.532040 -1.584738 -1.194601 1.082549 -0.855517 0.700706 2.010610 -0.539902 -0.088528 -1.605513 1.351317 0.921404 0.822883 2.573904 0.426037 -0.295501 0.165377 -2.663692 1.639434 -1.245478 0.472431 -0.533658 -1.709196 0.154982 -0.023275 -0.116016 -1.361132 -0.856000 1.902212 1.298234 -1.732260 0.348698 -0.934994 -2.258039 -1.846812 -2.331790 0.584058 -0.447508 1.866197 0.088804 0.651395 0.232187 1.099336 -0.427401 -2.891207 0.360574 2.242534 -0.984096 -0.310567 -0.672694 1.683035 0.270942 0.187479 -1.194506 -0.702791 0.543443 -0.433008 1.191520 -0.917461 0.208381 -2.166971 0.613970 -0.075754 0.263832 0.553102 1.984170 0.126057 1.055907 2.139231 -1.993088 0.136733 -2.543703 0.650657 -0.328636 0.653446 -0.393608 1.264347 0.009567 0.506734 1.962641 -3.431836 0.950418 -0.020077 -0.421014 -2.166815 0.163467 -0.855825 -0.732820 -0.834440 1.423225 -0.178188 -0.482981 -0.752308 0.439067 0.494903 -1.196095 -0.282031 0.485432 2.161004 -1.746304 0.570042 -0.661597 -1.173981 -0.370438 0.971870 1.560912 1.806324 2.740057 2.072084 -0.301367 0.416396 -2.596527 0.097282 2.297489 -0.062549 -1.848030 2.130945 -1.420693 -0.354814 0.477586 1.974452 1.680631 0.542659 -1.374489 -1.096057 1.048044 0.485747 2.296479 0.200522 0.286633 -0.775383 1.581558 0.258598 -1.358697 3.195316 1.124631 -1.914330 0.769449 0.892638 -1.898827 -1.141610 1.326396 -1.386741 0.330166 -1.170746 0.562884 1.247964 -1.158140 -0.726472 0.101777 -1.906855 2.197842 -0.560954 -0.181775 1.256748 -1.968142 -1.781616 2.575064 -0.073100 -0.642860 -1.667047 -2.117068 -1.220238 -1.799722 0.916380 0.198254 -0.666839 -1.155873 -1.872682 -0.011105 2.247194 0.419246 1.323228 -1.855028 -0.661868 1.027358 0.710648 1.477791 -0.900124 -0.412458 0.196016 0.015935 0.655190 0.082101 1.246858 3.065642 -1.524005 1.090357 0.189517 -0.796207 0.723468 1.375031 -2.567994 2.571493 -0.020132 1.361893 -0.232040 0.738411 -0.841951 0.252246 0.766608 -0.033265 0.173318 0.355796 -0.495385 -0.719623 0.054002 -2.099356 -1.423870 -0.228538 0.794609 0.047083 0.772282 -0.227542 -1.193082 -0.446818 -0.948220 0.429378 1.660778 0.437996 -0.648617 1.283690 0.191862 0.226077 0.033840 0.300168 0.485377 1.538580 -2.378256 0.130761 -0.411085 0.555930 -1.198241 -2.528539 0.097057 -1.616642 -0.944564 1.187683 -2.478058 -0.203187 -1.554784 0.290178 -2.266488 0.029721 0.193846 2.618177 1.318610 -0.770655 1.157394 -0.580302 1.372200 -0.036460 -0.536157 0.846637 1.801191 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -2.725349 2.294275 1.640095 -1.788386 2.612071 -0.319886 0.067756 0.834285 -0.148159 2.479652 -2.858952 -2.595648 -1.961460 -3.285821 0.039747 -2.545815 -0.382978 2.416685 -0.687565 2.434880 2.619624 -1.891317 0.326305 -1.886284 -0.828518 -1.013110 -0.871117 0.209552 0.996766 0.469646 1.176614 0.119626 3.879121 1.112093 3.917841 2.918014 -0.381065 5.192691 0.249842 1.841021 -1.228305 3.164377 -1.979849 -4.382520 1.928777 -2.377051 -0.991897 -3.412029 0.997174 -2.624294 2.881287 2.500518 -0.206093 -0.236158 -2.502020 -0.307701 2.615951 2.678045 3.826811 1.216241 -0.639715 2.117706 -3.027950 -0.305766 -2.024939 2.096668 1.272834 -2.527345 0.563326 -0.541391 2.103058 -1.850484 -2.568807 1.801714 0.692533 -1.961191 1.322753 -1.299761 -4.235442 -1.874671 -3.019236 0.159676 -0.697964 2.744409 -1.120736 0.299962 -1.269955 1.220839 0.341141 -3.404108 -0.718549 3.126382 -0.535871 0.212173 -1.409961 2.633438 0.533374 0.766612 -2.599278 0.717115 1.356663 0.666823 1.444658 0.350636 -2.736520 -2.757496 2.578822 1.118277 -1.189619 1.173499 2.385460 1.672513 2.171170 2.443850 -2.542740 2.323334 -3.221523 0.547158 -0.687128 0.954160 0.499160 1.635704 -0.416058 -0.947163 2.034890 -3.415561 2.318889 0.978085 -1.103350 -2.603779 1.456906 -1.771923 -1.725771 -1.666786 2.216469 0.911301 -0.856434 -1.383070 -0.784768 -0.572781 -0.688395 -2.075908 0.281409 2.666158 -0.691419 0.183666 -1.399887 -2.113901 -0.556110 1.109525 0.957352 1.567805 3.364984 2.757709 -0.850447 -1.950857 -2.303230 -0.062723 4.014555 0.363968 -3.362672 1.742933 0.465954 -0.027313 1.483495 1.073625 2.233700 1.909276 -1.956870 -2.767879 -1.847325 -0.857251 3.323129 3.078451 1.463514 -2.216283 3.605316 0.570974 -1.907910 4.424139 1.923108 -1.836155 -1.550103 1.105615 -3.829604 -2.106825 1.286766 -0.233495 0.349879 -0.974527 0.322638 0.675589 -2.233550 -2.895981 -0.337515 -3.728266 3.495267 -0.445456 1.086321 -0.295914 -3.697376 -2.485054 3.358702 0.704486 -2.121331 -1.682580 -1.544663 -1.491212 -3.309692 1.860479 0.804738 -0.464910 -3.005969 -2.362617 1.074879 1.883944 -0.761214 0.108664 0.294974 -2.391711 1.188798 -0.591892 2.285104 -3.665659 -1.362999 -0.289579 0.816956 2.732500 1.573361 2.080842 5.409643 -1.843097 0.612364 3.387044 -0.002782 0.860264 3.512220 -2.840416 3.188655 -1.892140 1.264137 -1.051399 1.655916 -0.571642 -0.428730 1.274245 0.659832 0.429635 1.892822 -0.716478 -0.456545 -0.219401 -3.088731 0.292647 0.945864 0.552473 0.656878 0.809650 0.872420 -2.964494 -0.089992 -0.633928 -0.681719 3.278871 0.920709 -2.607716 0.553427 -0.465751 0.039352 -0.242710 0.597667 0.210739 2.576701 -3.153698 0.638603 -0.606708 -1.564102 -1.761837 -1.570946 0.089273 -2.503827 -2.107340 3.254708 -2.074392 0.693313 -2.137525 1.069113 -1.603341 -1.000676 -0.517829 2.894708 2.406306 -0.770726 1.313097 -0.615774 3.781409 0.946953 -1.379290 0.183218 4.137351 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -12.093726 11.856746 5.853350 -10.922251 26.755952 -3.402910 1.754554 10.705211 -5.649624 19.885843 -11.272485 -4.183200 -5.798401 -24.559690 0.798663 -12.890968 -3.364010 12.200743 -0.793029 12.488008 9.453764 -10.973590 3.373107 -3.165326 -7.412501 -17.872228 -3.433617 6.258433 15.700573 -10.005601 5.914130 -0.840555 23.983158 -1.671564 18.713788 14.660759 4.534487 18.256921 5.559572 -4.267443 -5.231276 9.826582 -11.016047 -17.103549 3.651181 -5.605401 -14.379190 -10.725024 7.884817 -9.702366 1.300504 16.873829 -4.081553 -1.734228 -13.115372 12.012364 10.039193 3.763149 21.844762 2.674780 -3.319308 -1.429138 -22.055229 10.914947 -8.971404 2.895551 -3.980212 -12.749259 3.506521 0.441615 -0.780300 -10.512924 -7.066225 16.980765 10.952024 -16.113028 2.325964 -9.549477 -26.263883 -16.743955 -16.250693 5.651350 -2.299165 15.407997 1.685221 6.947651 3.582117 10.785418 -4.610739 -25.800433 3.364588 20.245055 -7.294422 -4.955588 -7.791102 17.141238 2.224711 1.696959 -11.147997 -5.097581 5.665752 -1.886752 9.626858 -12.026057 -0.378413 -20.969154 4.831250 0.345867 1.617986 6.224780 13.051919 3.614394 10.607628 19.785312 -19.442320 4.700669 -23.542669 4.173981 -3.802320 5.688732 -4.362165 9.955101 0.141844 6.860110 17.207887 -30.145245 9.485472 1.077745 -4.073583 -20.846030 1.732171 -7.327004 -5.013636 -6.172182 10.121047 -2.147753 -2.797742 -7.036302 2.531013 3.142667 -10.606159 -6.915951 6.017902 21.787029 -18.325754 5.582808 -4.378773 -7.723771 -3.248619 9.248696 14.618035 13.834153 23.636631 16.193701 -1.384454 6.965116 -20.588592 0.076800 19.748687 4.514426 -16.021632 19.422541 -10.170024 -4.912082 2.973288 15.657648 14.270779 6.435712 -16.957291 -15.415152 9.922635 3.286588 19.949239 5.141871 1.932739 -7.439743 17.680075 0.405903 -11.322501 27.219136 9.888611 -14.695867 4.759666 7.387253 -17.668083 -9.095856 11.744494 -12.639241 1.746814 -6.398476 2.116949 8.937692 -8.220320 -8.648956 -1.459094 -16.216386 20.070247 -4.232715 -0.645798 8.181452 -14.591367 -17.901407 20.718464 -0.699299 -7.340716 -13.305851 -16.535474 -11.943615 -15.213429 7.090190 3.385351 -6.757392 -10.080025 -16.543376 -0.658813 15.907634 2.760494 10.108295 -18.747870 -8.340332 9.129218 6.623989 12.114956 -11.647857 -2.471276 0.385304 0.706259 5.792036 1.159361 14.633257 27.577050 -11.551823 10.719233 -1.261799 -7.960718 7.287537 13.081818 -22.380521 22.496061 -0.858410 16.575299 -1.188177 6.302385 -6.388468 2.833790 5.939685 -3.593356 2.955606 3.733083 -4.831277 -6.855187 0.057084 -16.053103 -11.976804 -1.779441 6.386619 -1.470275 6.134698 0.560655 -9.834655 -4.891610 -8.708171 2.634437 13.308303 0.816920 -7.677166 10.541683 3.056091 3.894459 1.008130 2.044394 6.029263 11.480435 -20.185832 2.026701 -4.733100 3.623050 -11.888799 -22.436374 3.118942 -13.853060 -9.124429 9.246785 -21.544364 -0.040160 -13.170218 1.832239 -20.077403 -2.523550 3.598224 22.768982 9.820090 -7.788579 8.610637 -6.587433 12.441518 0.159428 -1.721242 5.962361 15.837784 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -1.304208 1.047893 0.256052 -1.257231 2.912524 -0.682555 0.205449 1.648383 -0.589225 1.606253 -1.554506 0.740854 -0.245302 -1.824450 0.243878 -0.296874 0.116940 1.367392 -0.422363 0.705155 0.937058 -0.332677 0.386693 -0.810906 -0.667724 -1.840326 -0.034575 0.538863 0.528985 -0.086812 0.088607 0.339379 2.128576 -0.333241 1.420465 1.398225 1.060185 1.872611 0.727613 -0.344045 0.607281 0.743590 -0.629706 -1.970511 0.590557 -0.696776 -1.452887 -1.019472 0.851449 -1.858572 0.764970 1.350288 0.008960 -0.601431 -1.346198 1.247819 1.313811 -0.452977 1.893114 0.545159 -1.260677 -0.553041 -1.291961 1.868849 -1.335706 0.609400 -0.097330 -1.734738 -0.325549 1.218436 0.598554 -1.006342 -1.186440 0.454217 0.445835 -1.380244 0.503544 -0.496119 -0.178669 -1.171020 -0.966349 0.589875 -0.494742 1.336772 0.014889 0.444770 -0.667338 0.339788 0.231389 -1.634374 -0.462384 1.704605 -0.803424 0.301708 -1.311091 1.003148 0.679564 -0.631456 -0.628963 -1.005957 0.545114 -0.055479 0.756584 -0.780851 0.008461 -1.322079 0.525246 0.646367 0.159671 1.235761 -0.202554 0.923529 0.556875 0.920496 -0.609081 0.525682 -2.496353 0.654069 -0.264417 0.201887 -0.546873 0.347646 0.742316 0.584668 1.220837 -2.020193 1.809236 0.310808 -0.447464 -1.224457 0.659165 0.084544 -0.593288 -0.492960 1.149961 -0.082624 -0.246898 -0.065374 0.581884 -0.050127 -1.192995 -1.280146 -0.258450 1.570076 -1.748766 0.528956 -0.467023 -0.638283 -0.067584 0.576573 0.850789 0.841045 1.992149 1.396820 -0.163624 0.931517 -1.965787 0.470106 2.178837 1.177950 -1.485167 1.394319 -1.016415 -0.287350 0.642897 0.910584 0.621409 0.962669 -1.312117 -1.252025 0.359049 -0.307685 1.871799 0.824971 0.405044 -1.901089 1.071762 -0.409597 -0.018575 2.542852 1.061005 -1.995133 0.599777 1.601439 -1.100530 -0.952203 0.581603 -1.074621 -0.700092 -0.592596 0.505614 1.027586 -1.335277 -1.408454 -0.169805 -1.470404 1.588838 -0.202944 -0.531386 0.231040 -1.446687 -0.582196 2.094692 0.333799 -0.425924 -0.682588 -1.248940 -0.863881 -2.183142 0.351058 0.803277 -0.690874 -0.784982 -1.388325 -0.441297 1.373117 -0.505579 0.336120 -2.226763 -0.335382 1.150608 0.444087 0.378321 -1.786450 -0.376023 -0.042463 0.077984 0.463559 -0.532866 0.957852 1.929044 -1.238160 1.119977 0.791025 -0.538653 0.586741 1.513243 -1.449969 2.080465 -0.108562 1.532919 0.406526 0.809629 -0.905018 0.176798 -0.177035 -0.258934 -0.473371 0.829792 -1.472111 -0.587971 0.600890 -0.963286 -1.155634 0.598478 1.255702 0.445700 0.144123 -0.078134 -0.510508 -0.564944 -1.091162 0.281903 1.165096 -0.623204 -1.384815 0.664567 1.046788 -1.035739 -0.674523 0.412374 0.895728 1.483798 -1.818415 1.179627 -0.017722 0.153956 -2.168990 -1.724749 0.751569 -1.100665 -1.184323 0.587484 -2.354746 -1.059873 -0.916205 1.086630 -1.852379 -0.367963 0.268367 1.898662 0.324077 -0.187529 1.278653 -0.430946 0.862021 -0.007436 0.124517 0.123012 1.427862 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -4.683269 4.188233 1.131706 -4.955152 9.009917 -1.287853 1.069801 3.311004 -1.945126 5.391623 -5.692508 1.325327 -1.551834 -6.925419 0.343309 -2.197597 -0.414634 4.553650 -1.417287 3.565558 3.685285 -2.857031 1.993299 -3.261163 -2.198087 -5.736934 -0.428507 1.659494 1.882387 0.440385 1.940349 -0.086593 6.320314 -0.424655 3.941794 4.266447 1.660900 7.707756 1.467643 -0.444479 1.288729 3.327274 -2.249927 -7.911351 3.050255 -3.080612 -4.607924 -4.981448 2.940582 -7.515099 1.768328 4.726433 0.077363 -2.983116 -5.235846 3.144151 6.556009 -0.258467 6.624357 1.720041 -2.810264 -1.006904 -4.983609 2.631151 -4.397855 2.121023 1.330014 -5.610588 -0.810402 3.471084 1.783768 -2.897716 -4.530773 1.320860 2.095525 -4.458854 1.443318 -2.498463 -4.368393 -3.897737 -2.734841 0.973622 -1.576395 4.958198 -0.569963 1.415425 -0.970427 1.131434 1.060853 -5.325061 -2.182775 5.795645 -1.038738 0.823167 -3.028536 4.820488 2.023756 -2.276329 -3.687231 -1.466517 1.508970 0.904208 2.768440 -1.860881 -2.851884 -5.339164 2.578947 2.410991 -0.409563 3.042016 0.525964 2.596772 0.956176 3.080860 -4.413441 3.539474 -8.119385 1.222197 -0.520437 1.695464 -1.507829 1.377064 1.454037 1.032220 3.729218 -6.591945 6.841724 1.151639 -1.670611 -4.809032 2.752962 0.393876 -1.886361 -1.252340 3.497127 -0.398017 -1.028545 -0.284415 1.043680 -0.486324 -3.518945 -3.793676 -0.324218 6.439069 -5.028466 1.880816 -1.805516 -2.829636 0.122468 1.245799 2.396009 2.019745 7.051118 4.968709 -0.459235 3.336874 -5.609550 1.838320 8.343056 4.669280 -5.142308 3.722857 -1.677000 -0.223392 2.360619 1.953112 2.913231 3.709129 -4.792459 -4.545767 0.833045 -1.870526 6.067986 3.945684 2.009244 -7.509218 5.078649 -0.100306 0.709315 8.441935 3.981298 -6.097893 2.178329 4.902303 -5.797922 -3.090481 1.278918 -1.516320 -1.575203 -1.412635 1.691230 2.654230 -4.063660 -6.548174 -2.482657 -5.311369 5.662916 -0.950623 -0.591400 0.811766 -4.870760 -2.654435 6.154943 0.968082 -2.664077 -2.376610 -3.546272 -3.387671 -7.386730 1.911735 2.599434 -3.205094 -3.640926 -4.599118 -0.698789 4.317167 -2.013227 0.096609 -5.842733 -1.900618 3.487231 1.935323 2.164049 -6.243831 -1.311399 0.026997 0.853981 2.379995 0.133282 3.300880 7.325853 -4.433664 2.875394 2.327852 -0.500052 2.726450 6.199387 -4.310519 6.905231 -1.146323 6.828051 -0.081419 2.852903 -1.687132 1.052088 0.353739 -1.215673 -0.315691 3.139368 -4.718477 -2.101596 2.658036 -3.676168 -3.105795 2.807545 4.033353 2.153580 0.826636 0.870051 -2.212258 -1.429405 -2.121685 -0.252258 4.390876 -1.163358 -5.539658 0.853193 3.185464 -2.211391 -2.992770 1.486042 2.969685 4.731181 -5.906643 4.514608 -0.980078 -1.309107 -6.469872 -5.021099 3.201799 -4.030314 -4.374378 3.808959 -7.240644 -1.895679 -3.382156 3.992764 -5.662360 -0.982893 -0.417323 5.540720 1.891784 0.131289 4.467817 -1.290639 4.080172 -0.284801 -0.179315 0.922669 5.807640 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = -1.718950 1.292989 0.746898 -2.135974 3.488938 -1.410247 -0.045530 2.038547 0.470627 1.887983 -2.056586 0.531303 -0.382379 -2.736936 0.238454 -1.227020 0.223124 2.308679 -0.602980 1.589111 1.396706 -0.555751 0.571046 -1.199842 -0.932779 -2.049296 -0.020702 0.840108 -0.237249 -0.060823 1.114255 0.632007 2.844904 0.209716 2.377895 1.994456 0.775211 3.114400 0.965610 0.836063 0.917034 0.809124 -0.407418 -3.135775 1.112589 -0.584838 -1.916077 -1.950412 0.907701 -3.094419 1.471326 1.922834 0.106362 -0.831001 -2.059449 1.023740 1.750631 0.255999 2.235198 0.893493 -1.933965 0.168351 -1.952262 0.959579 -1.847668 0.614478 0.601642 -2.156779 -0.083174 1.848457 1.174197 -1.357657 -1.648168 0.278849 0.775588 -1.620370 0.825514 -0.704503 -0.888010 -1.005197 -0.837501 0.794140 -0.235887 1.573876 -0.140974 0.899807 -0.872977 0.346120 0.157259 -1.981553 -0.495340 1.984404 -1.026369 0.387377 -1.470795 1.951480 0.993313 -1.118698 -1.088663 -1.228151 0.897199 -0.345647 1.035787 0.251408 -1.480430 -1.655816 1.342337 1.143464 -0.257400 1.326574 -0.268586 1.590969 0.769298 1.043073 -1.318146 1.883640 -3.537928 0.845986 -0.617639 0.348991 -0.476977 0.269917 0.749731 1.094713 1.168071 -2.353419 2.810066 0.771047 -0.427449 -1.511263 1.159483 0.252785 -0.554980 -0.939318 1.686659 -0.034365 -0.164167 0.110737 0.289595 -0.224888 -0.793982 -1.904167 -0.444154 1.973370 -1.253334 0.895183 -0.552443 -1.049068 -0.024859 0.280025 0.999170 0.674971 2.731085 1.529904 -0.311027 0.281006 -2.308728 0.259287 2.946553 1.183110 -1.843406 1.965402 -0.343908 -0.342711 0.572567 1.212291 1.011567 0.850216 -1.749073 -1.981069 -0.060340 -0.632303 2.138085 1.219365 0.258654 -2.973119 1.563523 -0.115125 0.199992 3.859564 1.446987 -2.386060 -0.097380 2.266316 -2.175450 -1.813266 0.581745 -0.600884 -0.556504 -0.307665 1.040316 0.836255 -1.677774 -2.364379 -0.369426 -2.054716 1.583193 -0.409582 -0.445955 -0.283882 -2.065142 -1.091017 3.231548 0.319165 -0.872281 -0.419060 -1.788551 -0.224065 -3.031388 0.338863 1.131441 -0.656937 -0.731515 -1.327590 -0.280612 1.700952 -1.048080 0.046440 -1.810381 -1.004348 1.570146 -0.097466 0.149610 -2.572689 -0.538623 0.025211 0.384993 0.675913 0.132316 0.934707 2.858577 -1.321294 1.201468 1.606954 -0.607999 1.086729 2.387364 -2.026954 3.091702 -0.640734 2.131028 0.520672 0.944911 -0.999882 0.013006 -0.062582 -0.407501 -0.700826 1.255728 -1.886946 -0.698140 0.750358 -1.065980 -1.245147 1.019778 1.912972 0.397202 0.374414 0.534997 -0.880271 -0.706305 -1.299397 0.506301 1.411888 -0.347288 -1.919902 0.715495 1.956365 -1.047224 -1.182294 0.536611 1.222261 2.172629 -2.391487 2.028320 0.076532 -0.293576 -2.366159 -1.930894 1.573125 -2.078693 -1.294011 0.157093 -3.041857 -1.445986 -1.068270 1.929513 -1.677863 0.065867 0.307692 2.485609 1.111439 -0.397141 1.613572 -0.823113 1.116456 0.150973 0.024821 0.081716 2.614017 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -12.357098 6.781146 -1.210449 -12.332123 28.700670 -5.982440 0.861535 14.377816 -5.884286 18.609167 -9.774032 0.144556 -4.092230 -22.565678 1.627634 -4.241755 -0.813367 10.984672 -3.125757 11.079599 9.533863 -7.785316 4.805798 -3.358317 -7.881219 -14.453121 -1.180346 7.421451 12.659606 -9.734847 1.086365 0.288368 21.870891 -3.458229 18.261027 13.651198 8.587275 15.617169 5.695273 -9.070392 -1.433678 8.239601 -9.589911 -16.133773 3.260929 -4.947547 -17.215126 -9.045661 9.302961 -11.905793 2.260817 17.424407 -3.032051 -2.885499 -12.825484 13.261370 8.279834 -2.927627 20.799411 3.422744 -8.200382 -5.516638 -17.954389 15.962270 -9.573016 3.418361 -4.093062 -13.844287 0.098388 5.421212 -1.006179 -11.788889 -7.716331 12.809923 10.379114 -15.922694 4.387834 -8.117424 -7.570834 -16.937732 -12.994196 6.871592 -4.077890 14.808668 1.928539 7.982490 1.186246 8.475855 -4.111256 -23.891696 3.525666 17.243156 -9.954786 -3.404559 -10.406960 14.876926 1.415551 -1.362397 -11.254057 -8.278677 5.558200 -2.475768 9.655101 -11.960580 6.002473 -16.537478 2.135353 1.574899 4.799887 8.907006 9.008142 3.926864 8.891579 17.077150 -11.987891 2.628451 -22.026822 5.002628 -4.951066 5.605400 -6.610468 8.254689 7.919346 6.992047 15.884706 -26.322591 12.249931 2.101851 -3.744999 -18.212251 3.147425 -4.629388 -4.821475 -5.226099 11.684255 -4.379652 -2.358437 -5.150417 6.811532 3.188105 -12.831188 -4.877112 2.563544 16.263075 -18.056083 6.632301 -3.973574 -7.102782 -1.145957 8.626965 13.805332 12.770091 24.113638 15.104076 -2.718135 9.849648 -20.514056 2.664111 20.657111 5.347422 -15.431307 18.847836 -14.219810 -4.395246 2.698773 15.095727 12.950316 4.471706 -14.096467 -10.815242 12.285150 4.011142 20.591673 -0.997686 3.532076 -11.671695 11.347361 -0.480404 -4.558500 24.920783 10.079745 -18.939083 8.115315 10.779732 -10.505329 -7.616621 10.280343 -13.478991 -2.056873 -7.016770 4.923220 10.915665 -10.529205 -9.509067 -0.571801 -15.605203 17.500534 -4.299139 -4.777583 7.304273 -14.890722 -6.973593 20.097343 1.656725 -6.188557 -11.490715 -16.664878 -10.336108 -17.891885 5.966226 4.628061 -5.272806 -7.223830 -15.461437 -4.402751 15.169604 2.405821 8.589612 -24.360202 -2.154492 10.931308 5.958681 9.401073 -9.463928 -2.270725 0.852491 -0.642272 4.552396 -4.811449 10.660602 21.353942 -13.155109 11.213367 0.327781 -5.329535 7.293762 11.185248 -20.199073 24.391499 3.358505 17.226193 0.667189 7.250476 -8.116669 4.243626 1.934582 -2.848627 0.337900 4.742922 -8.738720 -8.025255 2.862517 -10.906091 -14.708384 -1.059408 9.472970 -1.087733 5.770789 -2.925656 -7.070115 -6.552164 -11.259235 5.628719 12.698195 -3.510665 -7.750156 10.504065 7.648437 -0.129769 0.640570 3.214942 8.041198 14.603863 -21.069969 5.288373 -2.918365 6.370931 -14.963545 -19.806049 5.072504 -10.941595 -6.535910 7.722564 -22.670874 -5.164587 -12.366154 5.172126 -18.428648 0.665514 3.873732 22.727290 7.153612 -7.255214 10.570174 -5.990892 9.174022 -0.603592 0.178695 5.223904 12.711950 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -0.825661 1.475260 1.393948 -0.942217 0.709031 0.043136 0.059257 0.388164 -0.289338 0.902118 -1.215552 -0.063321 -0.378702 -1.141047 0.071083 -1.036957 -0.410665 0.594500 0.094434 1.114687 0.767175 -0.919736 0.076129 -0.746265 -0.472754 -0.889191 -0.109433 0.133706 0.466198 0.125354 1.065693 -0.036785 1.159898 0.319557 1.122909 0.838954 0.111241 1.736782 0.383931 0.311701 -0.349833 0.872194 -0.611069 -1.414667 0.739209 -0.671198 -0.021241 -0.857548 0.243519 -0.873488 0.892635 0.875659 -0.082682 -0.563765 -1.142645 0.268264 0.876878 0.370958 1.314498 0.310088 -0.200009 -0.093916 -1.296661 0.180287 -0.917621 0.621851 0.278645 -0.459225 0.476589 0.002522 0.601304 -0.162631 -0.859931 0.634784 0.127688 -0.901007 0.417615 -0.690290 -1.774091 -0.445328 -0.689571 0.403098 0.166206 1.040038 -0.217387 0.276600 -0.438407 0.606412 0.014195 -1.187905 -0.324484 0.774546 -0.346921 -0.048974 -0.242774 1.321475 -0.011029 0.001574 -0.690242 0.193786 0.722570 0.229884 0.509774 -0.513010 -0.513709 -1.443928 1.128352 0.643987 -0.485121 0.415081 0.862716 1.081258 0.799805 0.895077 -1.012106 0.522546 -1.348490 -0.193306 0.429909 0.205474 -0.102819 0.567046 -0.809967 -0.009348 0.786542 -1.313950 1.060965 0.367867 -0.413428 -0.697468 0.395797 -0.398418 -0.471699 -0.643343 0.625558 0.413912 -0.318768 -0.197303 -0.382996 -0.113647 -0.392603 -1.365097 0.227521 1.543201 -0.687833 0.119675 -0.426598 -0.626402 -0.175430 0.456573 0.499753 0.445279 0.873421 0.844355 0.075010 -0.300062 -0.737830 -0.024863 1.283898 0.525730 -1.255227 0.886052 -0.331262 -0.256281 0.452648 0.343721 0.791055 0.595449 -1.352328 -1.731395 0.162417 -0.511584 1.158242 0.769478 0.224213 -1.085068 1.752371 0.138848 -0.691284 1.678437 0.275192 -0.428834 -0.765895 0.568304 -1.530613 -0.792907 0.431417 -0.145843 0.192710 -0.115108 -0.116800 0.337478 -0.547346 -1.265933 -0.523247 -1.311586 1.419260 -0.109878 0.625062 -0.263708 -0.899368 -1.464291 1.172292 -0.012312 -0.863189 -0.720650 -0.435023 -0.275601 -1.191631 0.497936 0.575302 -0.277434 -1.025275 -0.954382 0.254439 0.256772 -0.494727 -0.164940 -0.596287 -1.276788 0.561433 -0.234421 0.373145 -0.891224 -0.382323 -0.005226 0.325492 0.833863 0.470211 1.308226 1.953331 -0.603552 0.791730 1.007942 -0.148640 0.328484 1.400231 -0.912754 1.324275 -0.969448 0.565812 -0.245464 0.540263 -0.522372 -0.165857 0.507465 -0.253127 0.203155 0.291815 -0.273368 -0.164432 -0.466177 -1.154321 0.040957 0.493183 0.242626 0.246943 0.220977 0.689992 -0.296800 -0.459180 -0.330313 -0.217588 1.026606 0.128703 -0.714001 0.275132 0.065786 0.130734 -0.292178 0.195052 0.312904 0.869709 -1.174197 0.576067 -0.341624 -0.707815 -1.057615 -0.833851 0.394330 -0.980678 -0.791444 0.847121 -1.204023 0.252541 -0.731200 0.434967 -0.601756 0.032802 -0.026913 1.021208 0.549270 -0.617681 0.654345 -0.467981 1.310210 0.462585 -0.363843 0.001476 1.260025 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -2.175497 1.753737 -0.043597 -2.981075 5.303028 -1.345904 -0.002019 4.260091 -1.060004 3.118609 -2.159640 1.612338 -0.229651 -4.209869 0.337940 -0.823266 0.504748 2.700872 -0.927469 2.101160 1.803268 -0.500294 1.118926 -0.928529 -1.816091 -3.300370 0.408635 1.422815 1.054098 -0.679192 0.668682 0.305154 4.405403 -0.490399 3.534181 2.584806 2.246915 3.103051 2.192821 -0.950898 0.464200 1.071653 -1.281441 -3.546519 0.582260 -0.898835 -3.251076 -1.721867 1.657357 -3.548792 0.500245 2.782871 0.093617 -0.631288 -2.464556 2.160495 1.634034 -1.286799 3.581222 0.997505 -2.527808 -1.730009 -2.624199 3.057929 -2.384344 0.589560 -0.286260 -2.632024 -0.413492 2.157823 0.200845 -1.711020 -1.859032 1.165710 1.537812 -2.978685 1.140701 -1.209302 -0.434913 -2.427959 -1.311013 1.780746 -1.011586 2.724805 0.458503 1.649338 -0.350563 1.176963 -0.475068 -3.940834 0.371909 2.761933 -1.853199 -0.494014 -2.620356 2.801544 0.384754 -0.851381 -1.650019 -2.278603 1.440764 -0.369320 1.643801 -1.988646 0.223384 -2.627501 0.572817 1.163692 0.513883 2.511536 0.148018 1.600545 1.563626 2.724874 -1.544635 1.260932 -5.129182 1.548611 -1.577557 0.693091 -1.489725 1.006953 2.186238 2.062693 2.519390 -4.212572 3.414927 1.324414 -0.821217 -2.759389 1.327268 -0.083393 -0.856760 -1.029981 2.377245 -0.898645 -0.111047 -0.721721 1.543784 0.071507 -2.176587 -1.982411 -0.458390 2.354047 -3.714863 1.284573 -0.608640 -1.115639 0.079815 1.453067 2.121660 1.762177 4.453926 2.348333 -0.790170 2.227040 -3.813990 0.471631 4.227631 2.070626 -2.504908 3.413395 -2.151441 -1.061058 0.769177 2.403689 1.632945 1.210346 -2.938884 -2.655410 1.320259 0.366813 3.902578 0.686583 0.524645 -3.420371 2.118572 -0.618062 0.057832 4.906635 2.149025 -3.492983 1.033850 2.560815 -1.980640 -1.749746 1.257707 -2.651558 -0.973727 -0.938428 0.826887 2.085628 -2.266083 -2.675352 -0.224525 -2.659253 2.753778 -0.676573 -1.558093 0.333536 -2.873823 -0.519624 4.042823 0.603129 -1.181159 -1.529564 -2.906202 -1.575230 -4.066856 0.776069 1.319259 -1.027402 -0.527852 -2.609200 -1.296224 2.239173 -0.182806 0.502050 -5.161559 -0.440795 2.667966 0.753214 0.765569 -2.946519 -0.256461 0.193792 -0.239719 0.873114 -1.308939 2.057322 3.501495 -2.224832 2.250922 0.467942 -1.348970 1.439194 2.529134 -3.576068 4.874729 0.071538 3.251646 0.985054 1.282213 -1.733238 0.667639 -0.609489 -1.081843 -0.503827 1.437182 -2.676739 -1.547887 0.891518 -1.268077 -2.745684 0.305372 2.539831 -0.266147 0.693177 -0.222645 -1.202226 -1.205224 -2.285180 1.040174 2.263785 -1.351357 -2.463754 1.809195 2.581824 -0.801481 -1.030117 0.556699 2.145273 3.014726 -3.738443 1.962555 -0.106305 1.096837 -3.870743 -3.760247 2.013178 -2.003952 -1.251569 0.346789 -4.412267 -2.081855 -1.870684 1.964701 -3.293524 0.236763 1.418063 3.900194 0.394564 -1.152051 1.834856 -1.103736 1.581162 0.033632 0.628404 0.351528 2.816768 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.655956 0.813508 0.223173 -0.618277 0.989838 -0.257755 0.073193 0.555029 -0.129016 0.772486 -0.825791 0.139529 -0.197910 -1.004194 0.016900 -0.291658 -0.011288 0.748702 -0.030948 0.514931 0.504493 -0.512928 0.176492 -0.477191 -0.295594 -0.914810 -0.021168 0.174929 0.139664 0.103746 0.383217 0.084569 1.005697 0.175964 0.748542 0.719023 -0.032160 1.165963 0.550179 0.216205 0.052879 0.495821 -0.306063 -1.186097 0.446837 -0.422977 -0.364423 -0.828885 0.286923 -1.046618 0.521106 0.585365 0.012495 -0.258722 -0.839817 0.150445 0.889122 0.186647 0.953583 0.257344 -0.355437 -0.007162 -0.573825 0.207103 -0.656873 0.037326 0.371037 -0.714392 0.193838 0.393277 0.388892 -0.339031 -0.468156 0.217098 0.125136 -0.629301 0.208178 -0.302611 -0.991408 -0.485603 -0.396500 0.150864 -0.132780 0.723812 -0.104713 0.144347 -0.418058 0.163625 0.155770 -0.736363 -0.289186 0.750111 -0.094431 0.148679 -0.118211 0.940064 0.437419 -0.220896 -0.345513 -0.111200 0.253827 0.078714 0.334703 0.008960 -0.624789 -0.691040 0.523975 0.212424 -0.251035 0.459301 0.237905 0.538535 0.304150 0.451206 -0.689807 0.523252 -1.206393 0.281071 0.013490 0.123641 -0.042704 0.133606 0.013201 0.055682 0.496715 -0.899858 0.865145 0.286766 -0.059334 -0.725634 0.359231 -0.058158 -0.288505 -0.292738 0.486510 0.082806 -0.079490 -0.119065 -0.091727 -0.121566 -0.404877 -0.763211 -0.042097 1.182472 -0.652573 0.203061 -0.240217 -0.381548 -0.068213 0.117382 0.250900 0.269572 0.939903 0.645129 -0.076450 0.197430 -0.769706 0.086008 1.181846 0.741212 -0.694983 0.531117 -0.006307 -0.134499 0.383595 0.284946 0.455386 0.344609 -0.755608 -0.824527 0.014456 -0.327851 0.824607 0.573194 0.282388 -0.885726 1.006370 0.305955 -0.111929 1.293287 0.393231 -0.699998 0.156433 0.617564 -0.972580 -0.370136 0.213715 -0.127897 -0.111603 -0.137663 0.131610 0.297767 -0.583954 -0.866300 -0.359639 -0.797131 0.822697 -0.094768 0.178659 0.031690 -0.729170 -0.298761 0.970996 0.196541 -0.327279 -0.264182 -0.452149 -0.495789 -1.009187 0.208981 0.346273 -0.467976 -0.412790 -0.615437 -0.022406 0.539728 -0.338409 -0.040343 -0.589288 -0.426993 0.488836 0.121269 0.103502 -1.018611 -0.237819 0.106812 0.213334 0.426774 0.197803 0.720449 1.127015 -0.468680 0.330770 0.665544 0.256538 0.504863 0.849559 -0.693154 0.915230 -0.463061 0.780463 0.085784 0.361383 -0.233352 -0.023550 0.067919 -0.057979 -0.111389 0.409898 -0.599024 -0.192184 0.370901 -0.590357 -0.248904 0.376793 0.470686 0.381933 0.091902 0.212636 -0.430682 -0.123103 -0.342456 -0.063822 0.612139 0.061232 -0.813388 0.159467 0.371709 -0.170328 -0.457070 0.141723 0.361426 0.559563 -0.786323 0.558339 -0.102097 -0.246804 -0.771314 -0.704159 0.524047 -0.593771 -0.706584 0.449804 -1.092978 -0.191366 -0.446600 0.474617 -0.958701 0.063403 -0.107802 0.813091 0.252741 -0.077787 0.495950 -0.219472 0.622640 0.076424 0.013756 -0.003320 1.007491 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -1.037216 0.596472 0.096787 -0.911015 2.779089 -0.734133 0.190506 1.245832 -0.244031 1.612639 -0.925687 -0.181862 -0.132159 -1.746808 0.329127 -0.414798 -0.038199 1.124061 -0.223835 0.636378 0.669882 -0.292417 0.088068 -0.229584 -0.604907 -1.418839 -0.470475 0.735006 1.106510 -1.137377 -0.106857 0.354234 2.191436 -0.535314 1.946064 1.477577 1.014896 1.118002 0.520208 -0.691922 0.286589 0.630125 -0.869143 -1.212989 0.012357 -0.261351 -1.622881 -0.683399 0.744251 -0.687939 0.407546 1.376249 -0.245553 0.009604 -0.966473 1.366060 0.457629 -0.160516 1.717950 0.409911 -0.895209 0.123394 -1.605966 2.128548 -0.899471 0.421179 -0.892110 -1.636590 -0.127139 0.593564 0.266773 -1.310238 -0.779688 1.195837 0.770591 -1.296752 0.448357 -0.565998 -0.077938 -1.595856 -1.291808 0.798648 -0.495611 1.256778 0.153726 0.471246 -0.262733 0.614039 -0.343092 -1.983146 0.070879 1.737654 -1.107204 -0.188442 -0.972844 0.787362 0.571611 -0.010695 -0.520184 -1.206825 0.473755 -0.497795 0.729384 -0.435628 1.160385 -0.993872 -0.260501 0.139056 0.475063 1.228379 0.425311 0.584493 1.030717 1.344214 -0.720459 -0.275150 -1.781610 0.821246 -0.840164 0.294481 -0.486930 0.719714 0.809175 0.834776 1.425179 -2.189024 0.812242 0.009336 -0.242962 -1.288940 0.153959 -0.414241 -0.690371 -0.575501 0.925379 -0.036736 -0.227082 -0.406048 0.569020 0.377348 -0.770060 -0.517923 0.142520 1.094214 -1.610166 0.410829 -0.260042 -0.484320 -0.285024 0.925413 1.392372 1.311513 2.060994 1.411356 -0.211866 0.484763 -2.136214 0.200432 1.677040 -0.126000 -1.240812 1.786573 -1.414761 -0.515198 0.441195 1.589338 0.779349 0.336002 -0.988914 -0.776005 0.590360 0.351700 1.838420 -0.050449 -0.054827 -0.902621 0.727875 -0.196171 -0.831175 2.409692 0.674721 -1.795085 0.646996 1.026816 -0.760953 -0.897292 1.023149 -1.630241 -0.463463 -0.789490 0.472520 1.059682 -0.884737 -0.423976 0.431484 -1.266185 1.465856 -0.411479 -0.975099 0.622785 -1.235663 -0.995879 2.161801 0.203872 -0.155593 -0.922646 -1.400127 -0.288639 -1.552345 0.355278 0.361512 -0.396139 -0.517896 -1.329016 -0.217680 1.574854 -0.021344 1.047831 -2.063486 -0.149787 0.916902 0.443317 0.658085 -1.060796 -0.206550 -0.062104 -0.110559 0.010865 -0.752225 0.795212 2.039738 -1.076589 0.790949 0.387662 -1.056782 0.401033 0.851719 -1.928195 2.083325 0.333301 0.973211 0.307301 0.498051 -0.908652 0.015374 0.048077 -0.066721 -0.399033 0.382243 -0.748022 -0.491259 0.186956 -1.055220 -1.310601 -0.045428 0.934645 -0.136168 0.408736 -0.447114 -0.846846 -0.430658 -0.975883 0.495247 1.016333 -0.296107 -0.707978 1.236353 0.620584 -0.403989 -0.173258 0.072507 0.655731 1.237525 -1.799520 0.388726 0.016951 0.946294 -1.499139 -1.882420 0.259755 -1.173806 -0.543079 0.254956 -1.861346 -0.944413 -1.082000 0.312873 -1.654219 -0.306049 0.772011 2.172732 0.692417 -0.801339 0.782299 -0.561659 0.795571 -0.017206 -0.022219 0.370288 0.946581 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -17.565847 6.962411 -3.468918 -21.838296 41.586243 -10.717704 -3.626893 23.814692 2.433913 23.673027 -15.837659 -1.098630 -5.276850 -32.385782 2.401970 -7.032865 1.268976 19.444130 -9.025927 15.235552 13.970973 -5.617220 9.552587 -6.183639 -11.584241 -17.289918 -2.351348 12.042735 6.588376 -10.174603 5.564840 2.569798 32.670900 -2.520084 25.450587 17.465927 13.818700 27.199693 9.225745 -2.628087 5.641355 8.941777 -9.617237 -27.195412 8.463209 -6.875094 -26.668941 -15.641359 13.296651 -25.066586 9.540676 24.581762 -0.850092 -6.888771 -19.179051 14.968596 12.341757 -3.262661 27.431356 7.085751 -18.422404 -5.007281 -23.237897 16.801373 -16.918877 8.024154 -2.160007 -21.151447 -5.633677 15.863659 5.307575 -18.366671 -16.508110 10.486351 14.082090 -19.562012 9.219854 -9.202866 0.879586 -19.383812 -14.471671 11.011121 -6.196586 18.028912 0.971233 12.351387 -0.691762 8.030617 -4.350968 -29.088423 3.510886 21.881589 -14.169616 -0.734975 -16.376772 18.370584 0.505998 -7.741807 -17.016563 -13.882903 8.097571 -4.293914 13.069876 -5.464409 1.451004 -19.937967 7.865061 8.522937 5.312458 13.171808 7.887670 7.984218 9.907302 19.041171 -14.356872 11.220252 -35.864022 7.868054 -8.749638 7.252613 -9.707788 8.143889 15.095264 12.415147 16.916610 -33.269500 24.446064 5.685721 -7.338672 -20.459474 8.315802 -0.577639 -6.178614 -6.639475 18.516208 -7.036231 -2.917611 -2.748344 9.341932 1.829181 -15.726966 -9.807632 -1.252084 17.809404 -20.033003 10.667068 -4.640482 -11.819579 0.791673 9.049124 17.015823 12.125105 36.183862 17.731641 -6.497153 8.947322 -27.237107 5.676762 31.032432 7.751920 -21.289281 25.894804 -14.927708 -4.272027 2.851211 19.911532 15.268782 7.851524 -15.707804 -13.707978 8.854564 3.433879 28.129358 1.093223 5.528214 -25.690649 10.662380 -1.775309 3.333776 41.208921 14.400969 -26.993010 4.250682 20.527283 -15.519143 -14.119660 10.978911 -14.390399 -6.844661 -7.267233 12.054011 14.423192 -16.924284 -19.360588 -0.243477 -21.670650 19.807081 -6.899382 -11.859486 6.156378 -25.010086 -6.224510 32.793226 2.956878 -8.380727 -9.415027 -23.901850 -2.711330 -29.673234 7.073321 11.335350 -4.869660 -5.576709 -16.508305 -6.088496 21.717154 -0.780827 7.710841 -31.625644 -3.171186 17.262504 1.255141 8.897413 -19.032142 -2.968067 2.402416 0.170852 5.631923 -5.336064 8.883997 27.226262 -19.153481 14.771531 6.536321 -6.762479 9.922230 18.673449 -24.902387 37.083702 2.221364 25.364055 1.942703 10.731593 -9.757570 6.202054 -0.758215 -4.959915 -3.713641 9.188455 -17.256841 -11.731202 7.142866 -9.792206 -21.190736 2.806823 18.916188 -2.318276 7.790660 -3.007400 -7.555270 -8.917411 -12.182870 10.392133 16.688595 -5.832352 -15.566535 11.967965 18.862407 -5.855688 -2.484200 5.800202 13.566148 25.029266 -29.343848 14.482290 -1.176031 7.400269 -23.578771 -23.234532 11.978030 -15.207782 -5.257514 5.539640 -31.883885 -14.775134 -15.404697 15.419293 -17.487053 3.671945 5.591069 30.670108 13.937208 -10.437197 16.565159 -7.601171 9.905148 0.231786 -1.268164 8.406299 21.149563 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -2.450987 1.386836 -0.147557 -3.803983 6.853145 -1.351233 -0.364834 4.201896 -0.741625 3.646367 -2.686226 1.285256 -0.368251 -5.331732 0.675099 -1.267597 0.277494 2.766672 -1.096645 2.560908 2.030364 -0.620639 1.445003 -1.112653 -2.016945 -3.566081 -0.064784 1.939989 1.244822 -0.752078 0.916702 0.276467 4.747131 -0.689465 3.650945 2.919382 2.472071 3.760946 1.832090 -0.898074 1.121959 1.162474 -1.415251 -4.296730 0.759723 -1.053395 -4.318508 -2.230715 2.011560 -4.117467 0.355553 3.426541 0.185895 -1.205405 -3.432666 2.394754 1.768333 -1.075749 4.010020 1.275774 -3.096350 -1.889953 -3.520200 3.151084 -2.766011 1.093730 -0.270120 -3.077111 -0.622657 2.922581 0.189925 -2.010650 -2.615766 1.034847 2.114018 -3.273796 1.421550 -1.543122 -0.139733 -2.479501 -1.121843 2.176780 -1.471209 3.302783 0.429944 1.903766 -0.116619 1.122649 -0.442199 -4.226258 -0.094303 3.271024 -1.929703 -0.684302 -3.230211 3.454381 0.765501 -1.393413 -1.837000 -2.224853 1.483308 -0.258513 2.030524 -1.778942 -0.247090 -3.463903 0.916251 1.481378 0.737293 2.658065 0.021167 1.418284 1.268325 2.682587 -2.017029 1.732898 -5.620997 1.412726 -2.068336 1.108698 -2.486039 1.285678 2.702821 2.411821 2.653790 -4.627534 4.259665 1.283493 -0.916490 -2.811732 1.670614 0.417273 -1.177565 -0.600381 2.601965 -1.034133 -0.317321 -0.265801 1.857878 0.396902 -2.407377 -1.490703 -0.314670 2.555433 -3.376926 1.569569 -0.612133 -1.406441 0.197002 1.460049 2.631385 2.054098 5.360761 2.723028 -0.744143 2.312166 -4.622795 1.155807 5.421159 1.480909 -2.842056 3.802407 -2.370850 -0.784871 0.573113 2.719036 1.997973 1.689832 -2.914741 -2.522947 1.242088 0.402819 4.353563 1.150353 0.661052 -4.351387 1.770563 -1.117076 1.105441 5.372696 2.548284 -4.244819 1.266023 3.481918 -2.677011 -2.023807 1.353844 -2.374583 -0.875823 -1.333582 1.490878 2.661197 -2.603289 -3.415483 -0.849044 -2.857686 2.911783 -1.085047 -1.903623 0.360615 -2.975133 -0.850440 4.711094 0.522067 -1.171548 -1.594136 -3.427275 -1.419837 -4.890523 0.907596 1.729898 -1.406643 -0.482674 -2.847696 -1.532249 2.960442 -0.562247 0.647491 -5.518701 -0.081191 2.965867 1.063859 0.995265 -3.041094 -0.141765 0.085587 -0.342307 0.838812 -1.624510 1.631265 3.909631 -2.719081 2.846762 0.473071 -1.157808 1.569186 3.144730 -3.799221 5.884224 0.451556 4.233508 0.749581 1.502437 -1.368559 0.958082 -0.687080 -1.772778 -0.339641 1.729013 -3.303515 -1.908799 1.884660 -1.211542 -3.346968 0.717302 3.490319 -0.083758 0.876332 -0.087875 -1.314025 -1.540484 -2.279153 1.609870 2.474663 -1.834921 -2.874593 1.936478 3.617954 -1.370438 -1.525694 0.605726 2.601069 3.745522 -4.451390 2.673097 -0.071090 1.405162 -4.425072 -3.888558 2.303862 -2.083658 -1.172938 0.509589 -4.991415 -2.903150 -2.210001 2.616855 -3.129264 -0.023758 1.340353 4.325884 0.960216 -0.954895 1.999705 -1.193339 1.376822 -0.413025 0.346121 1.118141 3.024088 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -5.529630 3.667701 -0.554453 -6.906804 12.163206 -2.663396 0.024609 7.256654 -0.855072 6.756994 -6.263822 2.142535 -1.205977 -8.916543 0.508068 -1.358689 0.398478 6.217666 -2.941954 3.949323 4.446308 -1.395538 2.973392 -3.283220 -3.474257 -6.189788 -0.022226 2.813607 1.249993 -0.762618 1.205630 0.307739 9.122706 -0.920857 6.319887 5.097733 4.261638 8.858950 3.069944 -0.398400 2.442285 3.145035 -2.549052 -9.239882 2.990971 -3.184852 -6.915913 -5.159982 4.005658 -9.296885 3.703496 6.163334 0.549982 -3.098191 -5.909682 4.388676 5.773975 -1.748881 8.190262 2.371591 -5.552488 -1.991482 -5.975968 5.417112 -5.887679 3.153815 0.797657 -6.782709 -2.362386 5.484123 2.684237 -4.835717 -5.976307 1.338910 2.876726 -5.812189 2.555019 -2.765542 0.073836 -5.132383 -3.272123 2.720371 -2.454477 5.625915 -0.129094 2.837372 -1.759322 1.679736 0.297012 -7.324308 -1.185950 6.499279 -3.061880 0.915736 -5.268349 5.045953 0.824024 -3.044594 -4.571167 -3.801993 2.414077 0.381334 3.534201 -2.297524 -1.132688 -5.739553 2.952201 3.766846 0.273188 4.113144 0.497020 3.223525 1.927064 4.515942 -3.288035 3.906531 -11.485143 2.258175 -1.779771 1.931642 -2.701532 1.713564 4.057519 2.812753 4.691527 -8.680244 8.955268 2.043158 -2.698996 -5.541832 3.521221 0.860912 -2.233114 -1.637153 5.069629 -1.376221 -0.934239 -0.498682 2.735423 -0.555440 -5.226002 -4.680331 -1.102109 5.584680 -6.704877 2.700369 -1.738153 -3.290828 0.403965 2.366894 3.729980 2.505943 9.840432 5.440917 -1.342160 3.589439 -7.740065 2.139320 9.940760 4.915058 -6.288212 6.042421 -3.597448 -0.792967 2.326621 4.056043 3.175473 3.783922 -5.263680 -4.795547 1.558194 -0.906643 8.289374 2.667705 2.286075 -9.255275 4.191320 -0.941779 1.845596 11.707662 5.147862 -8.261594 1.773493 6.521671 -4.529072 -4.133291 2.028807 -3.447639 -2.741612 -1.796136 2.795545 3.952508 -5.332753 -7.634919 -1.452859 -6.368936 6.448501 -1.498329 -3.180832 0.827857 -7.176513 -0.803898 8.943197 1.288343 -3.008369 -2.412319 -5.648452 -2.522264 -9.771331 2.056134 3.868893 -2.678572 -2.599282 -5.290521 -1.624463 5.707746 -1.855540 0.332988 -9.132356 -1.568593 5.311871 1.008904 2.235755 -7.662003 -1.068245 0.159746 0.499534 2.573751 -1.647882 3.206338 8.269777 -5.631322 4.256259 3.293530 -1.283269 2.757052 7.048658 -6.109545 10.089935 -0.525970 7.611854 0.795712 3.415331 -2.845020 1.649748 -0.927152 -1.221352 -1.084405 3.729133 -6.472228 -3.201297 2.543311 -3.322062 -5.130633 2.648542 5.998427 0.885856 1.329076 -0.204181 -2.110787 -2.396386 -3.852022 1.236754 5.249457 -2.447034 -6.703700 2.206978 5.518158 -3.366114 -2.378181 1.802010 4.404074 7.227858 -7.902977 5.605702 -0.321746 0.428491 -8.926838 -6.756136 4.092658 -4.416109 -3.391128 2.464763 -9.408714 -4.771163 -4.064555 5.673246 -6.490365 0.157066 1.126175 7.776210 2.581744 -1.144329 5.343115 -1.786215 4.102701 0.131081 0.002832 1.471816 6.768286 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.428759 0.247511 -0.097782 -0.325584 0.880023 -0.408820 -0.062273 0.624487 0.089913 0.536124 -0.437600 0.125634 -0.120315 -0.617816 0.095173 0.078320 0.170744 0.606969 -0.120769 0.086419 0.312490 -0.029855 0.120005 -0.222417 -0.185460 -0.611585 0.014453 0.184709 0.014488 -0.075647 -0.112903 0.247209 0.803381 -0.025781 0.556556 0.505874 0.286894 0.649861 0.434108 0.048402 0.233682 0.233122 -0.159445 -0.720186 0.237004 -0.173714 -0.359975 -0.390249 0.296768 -0.581752 0.526066 0.395363 0.011463 -0.102019 -0.484085 0.249759 0.322441 0.031049 0.618730 0.200998 -0.440937 -0.055905 -0.318337 0.636276 -0.545174 0.082956 0.007450 -0.634491 -0.106598 0.442129 0.303336 -0.344488 -0.350578 0.089440 0.053697 -0.422459 0.175196 -0.039530 0.172032 -0.325327 -0.443933 0.191045 -0.229950 0.417645 -0.013807 0.125066 -0.405967 0.063678 0.123586 -0.479867 -0.113220 0.455231 -0.276236 0.234633 -0.196378 0.297096 0.298368 -0.247507 -0.057722 -0.353549 0.145862 -0.133009 0.255146 0.097013 -0.011462 -0.240215 0.275510 0.137011 0.045610 0.363274 0.065924 0.279839 0.186116 0.242066 -0.059552 0.085798 -0.893577 0.338549 -0.069733 -0.017073 -0.114296 0.097269 0.286936 0.098842 0.371576 -0.651977 0.553512 0.124232 -0.025293 -0.327220 0.237259 0.079189 -0.176156 -0.221614 0.473732 -0.041586 -0.085771 -0.009188 0.169139 -0.012389 -0.426178 -0.346516 -0.198989 0.483333 -0.470761 0.182358 -0.179337 -0.294817 0.003206 0.096005 0.188610 0.322281 0.625696 0.470031 -0.145623 0.065621 -0.721561 0.129400 0.684208 0.268592 -0.442716 0.443649 -0.220269 -0.101929 0.262183 0.368053 0.200674 0.203826 -0.216480 -0.290373 -0.031413 -0.041081 0.583620 0.199883 0.173860 -0.529024 0.211310 0.057920 0.024503 0.945363 0.229008 -0.668050 0.181364 0.556369 -0.353855 -0.291944 0.158634 -0.300314 -0.182357 -0.273603 0.232948 0.392127 -0.544976 -0.383509 0.031745 -0.460172 0.441645 -0.071003 -0.189446 0.141805 -0.595973 0.076676 0.804642 0.184248 -0.020277 -0.180764 -0.507655 -0.234084 -0.737870 0.079757 0.222243 -0.189157 -0.107014 -0.407788 -0.172551 0.543861 -0.112948 0.106213 -0.603863 -0.020479 0.406611 0.062414 -0.020953 -0.604922 -0.127849 0.119965 0.008310 0.137176 -0.128108 0.240326 0.544517 -0.403797 0.263765 0.527502 0.013412 0.248378 0.424047 -0.501844 0.649433 -0.128464 0.308661 0.223594 0.231493 -0.283802 0.030505 -0.103329 0.047948 -0.267501 0.254660 -0.510018 -0.187139 0.287351 -0.303103 -0.365084 0.142440 0.465629 0.256873 0.044308 -0.109376 -0.213266 -0.108650 -0.350547 0.165306 0.363212 -0.076746 -0.469098 0.272644 0.369493 -0.399044 -0.310511 0.138150 0.248422 0.495483 -0.584528 0.373614 0.076139 0.130105 -0.619281 -0.502031 0.240030 -0.303037 -0.316298 0.122157 -0.836176 -0.439095 -0.240809 0.410983 -0.612868 0.086239 0.002808 0.619659 0.124843 -0.037267 0.421240 -0.107157 0.172341 0.031335 -0.019874 -0.011721 0.571693 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.579378 0.305266 -0.452794 -0.445176 1.535664 -0.544478 0.000137 1.058148 -0.437344 0.823456 -0.528503 0.598333 -0.024681 -0.991879 0.177130 0.452333 0.293797 0.746874 -0.104676 0.184785 0.359460 -0.156697 0.196750 -0.222453 -0.331760 -0.953752 0.185057 0.345552 0.337736 -0.272796 -0.301375 0.318722 1.107240 -0.239336 0.685748 0.652474 0.559518 0.690911 0.750480 -0.673262 0.339155 0.219744 -0.225933 -0.860639 0.196243 -0.186885 -0.726780 -0.374155 0.462479 -0.712288 0.368052 0.601152 -0.004885 -0.159439 -0.739887 0.590010 0.585307 -0.452791 0.918190 0.217124 -0.624353 -0.531771 -0.332900 1.271527 -0.677929 -0.149597 -0.121440 -0.828122 -0.082997 0.734501 0.162393 -0.531772 -0.421662 0.189308 0.182525 -0.716379 0.209451 -0.054641 0.414973 -0.793852 -0.549229 0.297600 -0.456600 0.656384 0.074283 0.255563 -0.400061 0.092965 0.099831 -0.778926 -0.081479 0.660635 -0.469883 0.203294 -0.479862 0.591822 0.424535 -0.398072 -0.191456 -0.684802 0.168473 -0.231165 0.368829 -0.363144 0.438785 -0.373867 0.054958 -0.031850 0.294382 0.792591 0.045689 0.323555 0.230104 0.406624 -0.051792 -0.154632 -1.271852 0.451886 -0.069059 0.012621 -0.340679 0.114530 0.691232 0.236001 0.637866 -1.087670 0.771529 0.137613 0.086827 -0.604709 0.255317 0.178223 -0.184725 -0.229315 0.645030 -0.240105 -0.061438 -0.004338 0.445384 0.153481 -0.930355 -0.419667 -0.218506 0.918771 -1.114149 0.332418 -0.200313 -0.300947 0.035855 0.169783 0.412940 0.530003 0.932363 0.669869 -0.182674 0.787969 -1.125386 0.301154 1.059897 0.618670 -0.624397 0.734756 -0.652587 -0.219502 0.304035 0.584687 0.334638 0.152600 -0.478322 -0.405080 0.508534 0.090454 0.889743 -0.015255 0.225164 -0.784061 0.313184 0.120992 0.128408 1.277964 0.244167 -1.107623 0.712497 0.830930 -0.292252 -0.168158 0.277354 -0.705676 -0.436477 -0.419308 0.358625 0.670730 -0.752210 -0.420164 -0.044862 -0.561589 0.636157 -0.119886 -0.494804 0.271376 -0.648903 0.334577 1.034847 0.257242 0.051692 -0.334521 -0.788642 -0.587516 -1.044194 0.045078 0.246122 -0.354506 -0.085522 -0.682743 -0.512559 0.850610 -0.046895 0.207771 -1.577684 0.252970 0.627920 0.467939 -0.084883 -0.796956 -0.099174 0.260252 0.000833 0.009893 -0.474019 0.452965 0.614144 -0.658284 0.468941 0.300460 -0.000129 0.500148 0.460894 -0.767199 0.975621 0.096813 0.824197 0.382981 0.319348 -0.463029 0.160388 -0.269602 0.017605 -0.417267 0.270034 -0.809911 -0.351694 0.540472 -0.228837 -0.872778 0.099743 0.719778 0.364898 0.067877 -0.386436 -0.085924 -0.251800 -0.654113 0.344452 0.430302 -0.385424 -0.546086 0.489654 0.631749 -0.471331 -0.196577 0.185778 0.507398 0.662704 -0.872127 0.517549 0.041925 0.462570 -0.926689 -0.980229 0.435105 -0.273247 -0.429481 0.274218 -1.404216 -0.689526 -0.345766 0.546239 -1.166115 0.159151 0.074957 0.981684 -0.110999 -0.047646 0.633615 -0.184282 0.087848 -0.127126 0.241001 -0.006812 0.598083 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.266346 0.017681 -0.797710 -0.049697 0.705851 -0.472465 -0.110753 0.606230 -0.084523 0.282686 -0.232072 0.127587 0.057244 -0.609372 0.191122 0.854743 0.424066 0.497259 0.047639 -0.048622 0.171647 -0.086232 -0.016707 -0.107398 -0.044217 -0.129697 0.089094 0.150671 0.093743 -0.444187 -0.614564 0.417328 0.700352 0.065963 0.532306 0.416017 0.240376 0.348349 0.756741 -0.536824 0.157848 0.125441 -0.078179 -0.497846 0.160813 -0.072491 -0.172710 -0.201836 0.162329 0.016412 0.836428 0.282932 -0.000479 0.111169 -0.541961 -0.053212 0.259536 -0.088060 0.486752 0.209732 -0.317548 -0.082858 0.133274 0.717826 -0.373892 -0.219321 0.081152 -0.426446 0.041912 0.376695 0.545960 -0.667785 -0.406065 0.044953 -0.127736 -0.305068 0.228758 0.174374 0.820879 -0.662255 -0.620614 0.197051 -0.493648 0.429016 0.029139 0.037679 -0.689371 -0.062986 0.133884 -0.352982 0.006308 0.057178 -0.321747 0.377607 0.001579 0.355245 0.172985 -0.131225 -0.115658 -0.524839 0.111944 -0.269756 0.141181 0.376557 0.569052 0.094085 0.131072 -0.178238 0.132879 0.443087 0.620786 0.149886 0.302238 0.128414 0.273934 -0.550586 -0.644318 0.308488 0.091614 -0.140010 -0.075262 0.058595 0.475582 -0.204625 0.288930 -0.587247 0.244748 0.216612 0.172719 -0.217157 0.110550 -0.008731 -0.216416 -0.196494 0.447527 -0.081029 0.019245 0.031359 0.145318 0.081477 -0.749913 -0.099723 -0.293151 0.644261 -0.607130 0.094472 -0.118125 -0.288521 -0.026025 0.028403 0.122132 0.377548 0.406949 0.326869 -0.339918 0.135760 -0.665457 0.203082 0.609037 0.302335 -0.358726 0.351501 -0.298497 -0.065675 0.245208 0.427286 0.199392 -0.450911 0.006283 0.053618 0.341212 0.124319 0.427028 -0.394454 0.278438 -0.143852 0.055271 0.589368 -0.055580 0.928027 -0.331092 -0.543324 0.368920 0.502821 0.257422 0.165778 0.155809 -0.418570 -0.264283 -0.386495 0.309506 0.346201 -0.591585 -0.023218 0.082612 -0.284788 0.261089 0.021905 -0.368172 0.147779 -0.490583 0.778375 0.868705 0.166660 0.214827 -0.072481 -0.494300 -0.017228 -0.508360 -0.020856 0.028876 -0.065361 0.181584 -0.317792 -0.330559 0.723751 -0.007636 0.062488 -0.727567 0.335579 0.310840 0.082972 -0.253171 -0.545550 -0.147995 0.432394 0.092009 -0.060734 -0.306665 0.178670 0.193308 -0.387803 -0.080291 0.704126 0.616605 0.350157 0.092283 -0.373699 0.432753 -0.052285 0.421573 0.292797 0.227297 -0.328323 -0.054123 -0.221059 0.494061 -0.430159 0.122953 -0.422683 -0.095711 0.438695 0.107246 -0.641058 -0.010232 0.343311 0.288629 -0.030442 -0.582051 0.123517 -0.023316 -0.274870 0.395070 0.219623 -0.125394 -0.205824 0.255859 0.352670 -0.169130 0.308110 0.139693 0.135040 0.492397 -0.438414 0.168593 0.094945 0.528887 -0.261781 -0.576155 0.205408 0.083002 0.087723 0.272051 -0.902276 -0.514750 -0.138929 0.250572 -0.644359 0.603834 -0.114354 0.531528 -0.046268 -0.105053 0.246461 -0.012178 -0.132163 -0.098256 0.098534 -0.108242 0.361903 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = -0.229901 0.151960 -0.105782 -0.165660 0.617178 -0.148539 -0.102390 0.524268 0.019961 0.387863 -0.207401 0.116733 0.047914 -0.301187 0.068859 0.152809 0.010892 0.284028 -0.080599 -0.023195 0.127652 0.047090 0.023560 -0.042348 -0.167196 -0.382803 -0.017301 0.153116 0.123396 -0.110558 -0.173295 0.107601 0.450017 -0.134445 0.381278 0.285685 0.295080 0.202886 0.235139 -0.003954 0.135344 0.081043 -0.155952 -0.279000 0.028592 -0.106951 -0.295459 -0.110134 0.164573 -0.258143 0.301236 0.222615 -0.003255 0.009904 -0.149497 0.267418 0.003170 -0.095293 0.381585 0.104581 -0.343928 -0.112811 -0.238746 0.660640 -0.252512 0.092754 -0.162242 -0.428875 -0.098679 0.239206 0.106915 -0.205683 -0.089795 0.174398 0.034850 -0.275194 0.126121 -0.068756 0.316404 -0.252504 -0.215197 0.202884 -0.142625 0.228735 0.023227 0.087251 -0.238181 0.089431 -0.059109 -0.369290 -0.020537 0.312497 -0.287591 0.108741 -0.197039 0.071615 0.157255 -0.030271 0.043065 -0.247405 0.110436 -0.027106 0.122207 -0.082380 0.282036 -0.135190 0.056882 0.044487 0.126049 0.248744 -0.039709 0.139660 0.186778 0.257162 0.050117 -0.056058 -0.439400 0.228164 -0.113817 0.041525 -0.141336 0.077966 0.292563 0.157125 0.298405 -0.396146 0.235756 0.001551 -0.013901 -0.216851 0.068971 -0.032634 -0.141721 -0.109579 0.211069 -0.019357 -0.068024 -0.080243 0.166335 0.047172 -0.343636 -0.203829 -0.048735 0.157225 -0.382368 0.079242 -0.052404 -0.067101 -0.054571 0.197355 0.262261 0.258061 0.419775 0.260437 0.000000 0.055992 -0.477783 0.077939 0.379188 0.065634 -0.264085 0.347051 -0.336485 -0.112407 0.143053 0.280874 0.073752 0.203013 -0.129678 -0.141434 0.047058 0.098394 0.423907 0.063850 0.058959 -0.202210 0.061967 -0.099552 -0.084493 0.544157 0.162108 -0.458960 0.131365 0.239857 -0.086141 -0.089964 0.193219 -0.338940 -0.142509 -0.156659 0.079252 0.298949 -0.261029 -0.127544 0.146415 -0.255971 0.328328 -0.068970 -0.143494 0.111624 -0.309032 0.104704 0.454348 0.146511 0.000127 -0.128563 -0.252125 -0.184561 -0.357832 0.004274 0.163735 -0.104021 -0.058941 -0.282476 -0.129444 0.325532 -0.025649 0.152082 -0.523933 0.023879 0.242926 -0.017557 0.015639 -0.305469 -0.023150 -0.061172 -0.060698 0.048845 -0.244045 0.189506 0.331781 -0.196639 0.265889 0.239768 -0.100216 0.049237 0.169626 -0.336356 0.424170 0.028494 0.022466 0.159793 0.114758 -0.208133 0.020035 -0.127993 0.013094 -0.137625 0.128378 -0.230589 -0.106783 0.101805 -0.241111 -0.217972 0.013861 0.251299 0.092798 0.043862 -0.144849 -0.175451 -0.122483 -0.311228 0.095306 0.184785 -0.138001 -0.230830 0.279546 0.132153 -0.238025 -0.157933 0.038454 0.175208 0.280556 -0.352896 0.113597 0.111198 0.194072 -0.460853 -0.296454 -0.022951 -0.135065 -0.167489 -0.037338 -0.475469 -0.311022 -0.161505 0.128823 -0.406287 -0.051086 0.139996 0.468229 0.057209 -0.139100 0.215829 -0.088807 0.132195 0.077283 0.031544 0.018710 0.212157 +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) = -3.383920 1.877345 -0.127625 -4.681198 9.460060 -2.077079 -0.198797 5.677340 -1.631779 4.832098 -3.273419 1.965402 -0.555787 -6.795223 0.901187 -1.406220 0.594483 3.802931 -1.511580 3.386352 2.675521 -0.957685 1.801661 -1.223790 -2.750442 -4.690276 0.116647 2.721031 2.089052 -1.622745 1.078868 0.761929 6.553069 -1.350228 5.270896 3.718445 3.712901 4.843121 2.295871 -2.327437 1.546993 1.393477 -1.853359 -5.559633 1.084877 -1.197902 -5.826757 -2.531839 2.942101 -4.927989 0.541517 4.718309 -0.057282 -1.450154 -4.250171 3.733999 2.383766 -1.964881 5.546242 1.476253 -4.443575 -2.636730 -4.642414 5.245757 -3.662934 1.181611 -1.192647 -4.367071 -0.899665 3.941631 0.173492 -2.846634 -3.420713 1.835615 2.930437 -4.459401 2.005200 -1.795875 0.630713 -4.125352 -2.193391 2.831053 -1.883201 4.135399 0.512387 2.725509 -0.221279 1.569237 -0.883812 -6.019608 0.357407 4.363368 -3.249351 -0.446333 -4.443141 4.121107 0.726007 -1.867827 -2.944546 -3.702850 2.023363 -1.002097 2.714070 -2.867859 1.311536 -4.291733 0.775117 1.580706 1.668041 4.051947 0.240173 2.198224 2.088718 3.775333 -2.385812 1.610192 -7.439404 1.910869 -2.475903 1.263329 -3.054736 1.822156 3.642701 3.153936 3.922747 -6.712510 5.408973 1.390358 -0.977872 -3.862542 1.955954 0.376499 -1.306376 -1.305065 3.786340 -1.589461 -0.457162 -0.442936 2.444107 0.782051 -3.679560 -1.987927 -0.434240 3.651045 -5.078107 2.303619 -0.863053 -1.989509 0.270632 2.069726 3.843602 3.068212 6.993087 3.861979 -1.119119 3.514143 -6.339780 1.434055 6.758353 1.842172 -4.191512 5.551117 -4.006442 -1.322883 0.829866 3.970441 2.875108 1.853697 -3.901221 -3.499601 2.314383 0.968205 5.968245 0.546400 0.661888 -5.839814 2.199165 -1.298876 0.945067 7.718486 2.715635 -6.079713 1.842965 4.650030 -3.176697 -2.754056 2.111549 -4.013283 -1.776265 -1.912849 2.247271 3.779687 -3.656623 -3.949064 -0.370691 -4.044835 4.033416 -1.448758 -3.007572 0.762760 -4.168153 -1.473088 6.483473 0.623185 -1.374965 -2.321982 -4.934986 -1.334090 -6.489586 0.990550 2.131486 -1.467905 -0.881573 -3.940960 -2.329282 4.057909 -0.339209 1.386299 -8.386005 -0.003126 4.018011 1.439288 1.059147 -3.897624 -0.289763 0.350749 -0.508494 0.683119 -2.404626 2.272473 4.997336 -3.892270 3.843452 0.450313 -2.582540 2.264911 3.780555 -5.247581 7.912589 0.876114 5.564499 1.140127 2.045331 -2.465494 1.277078 -0.836275 -1.896239 -1.076297 2.115232 -4.209710 -2.550987 1.887385 -1.679142 -5.068835 0.549888 4.482633 -0.096507 1.329171 -0.611740 -1.341360 -2.259828 -3.313019 2.358271 3.180040 -2.711453 -3.299479 3.041066 4.477874 -1.703081 -1.247508 0.964918 3.462090 4.981341 -6.110549 3.304585 -0.101640 2.188072 -5.908095 -5.654358 2.878024 -3.175324 -1.499196 0.932029 -7.182901 -3.665490 -2.955322 3.389833 -4.094823 0.149637 2.052995 6.511445 1.149900 -1.745640 3.326971 -1.776144 1.713967 -0.508409 0.682333 1.202613 3.891118 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +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.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +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.701627 0.372425 0.209999 -1.075546 1.667201 -0.774759 -0.107230 0.800730 0.501159 0.819721 -0.776994 -0.157126 -0.115628 -1.493801 0.237165 -0.846822 0.167043 0.971088 -0.216875 0.963738 0.572016 -0.433453 0.219727 -0.425481 -0.391087 -0.880344 -0.030060 0.555908 0.043979 -0.194392 0.530509 0.404988 1.294368 0.089554 1.281303 1.014158 0.222757 1.230827 0.436032 0.074988 0.446709 0.222678 -0.124098 -1.334595 0.248540 0.012194 -1.181952 -0.865319 0.399743 -1.208178 0.207989 1.057075 -0.040835 -0.278439 -1.088445 0.484516 0.516412 0.435050 0.944858 0.444465 -0.806583 0.089565 -1.024388 0.296695 -0.730128 0.005184 0.049364 -0.945353 0.157799 0.958333 -0.031994 -0.394860 -0.516469 0.202479 0.729865 -0.738167 0.451300 -0.323854 -0.582106 -0.328812 -0.260747 0.538139 -0.090615 0.808944 0.047206 0.598621 -0.010503 0.202187 -0.110617 -1.000869 0.016989 0.888700 -0.567991 -0.234906 -0.470180 1.248408 0.736703 -0.543209 -0.527654 -0.666610 0.446114 -0.500970 0.517639 0.167751 -0.576207 -0.818838 0.451034 0.484643 0.102815 0.848691 -0.049782 0.684625 0.420339 0.508620 -0.811966 0.816335 -1.454305 0.393531 -0.734366 0.171493 -0.312566 0.200061 0.584205 0.811235 0.501949 -1.107949 1.196189 0.515344 0.068725 -0.639898 0.472539 0.058764 -0.197497 -0.456894 0.795620 -0.112417 0.048793 0.132566 0.184718 0.093082 -0.063135 -0.246678 -0.156228 0.792451 -0.343041 0.531844 -0.118026 -0.422391 0.007333 0.097333 0.630645 0.399931 1.412088 0.642897 -0.310921 0.061697 -1.078791 0.161316 1.437777 -0.138711 -0.732623 1.133105 -0.196201 -0.268634 -0.074838 0.775675 0.639240 0.280089 -0.785929 -0.848335 -0.126539 -0.105657 0.910389 0.261572 -0.118860 -1.204459 0.717496 -0.131382 0.077063 1.671200 0.616186 -1.053350 -0.073625 1.185127 -1.485839 -0.881284 0.382194 -0.367814 0.068498 -0.288079 0.654286 0.443996 -0.757983 -0.890040 -0.167749 -0.883710 0.482353 -0.261293 -0.324708 -0.229259 -0.756316 -0.541471 1.708071 0.119162 -0.289739 -0.200880 -1.019192 -0.055964 -1.334305 0.058346 0.333138 -0.241658 -0.061634 -0.476983 -0.342896 0.864266 -0.427794 0.208532 -0.853271 -0.152032 0.729824 0.200407 0.012879 -0.523817 -0.224851 0.177102 -0.030312 0.043275 -0.040501 0.331514 1.128716 -0.528893 0.583979 0.266225 -0.584392 0.728319 0.935307 -1.120730 1.670809 -0.047109 0.979960 0.340736 0.401789 -0.467685 -0.010117 0.003226 -0.668948 -0.411491 0.541743 -0.838616 -0.355459 0.542896 -0.156693 -0.878626 0.304439 1.003274 0.061727 0.276460 0.269889 -0.525914 -0.326712 -0.566199 0.591169 0.514099 -0.077115 -0.573185 0.480018 1.234426 -0.176354 -0.631834 0.212653 0.532041 1.081059 -1.213912 0.937071 0.089287 0.227581 -0.774625 -0.862789 0.789399 -0.981842 -0.235314 -0.169373 -1.417145 -0.671312 -0.531672 0.836613 -0.484749 0.096420 0.376651 1.317574 0.606171 -0.454153 0.577671 -0.509850 0.225810 -0.016835 0.064177 0.105400 1.076144 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.998600 2.673340 2.546382 -2.992215 6.097496 -0.551852 0.505106 2.708950 -1.522080 3.754148 -3.481927 0.456267 -1.324952 -4.031626 0.541917 -2.722585 -0.516590 2.196449 -1.013230 2.375286 2.379769 -1.419262 0.848850 -1.704848 -1.598636 -4.009172 -0.674913 1.215700 2.262062 -0.097504 1.235120 0.211700 4.710349 -0.804282 3.282310 2.959568 2.469640 4.588984 0.365567 -0.828223 0.445762 2.323122 -2.084022 -4.165424 1.504966 -1.990189 -3.224070 -1.965505 2.028758 -3.603665 0.507238 3.481211 -0.312692 -1.521296 -2.872284 3.231471 2.559199 -0.271891 4.576520 1.091613 -2.131302 -1.578449 -4.419730 3.440632 -2.827043 2.390084 -1.092189 -3.572906 -0.574945 1.549856 0.411791 -1.666377 -2.705153 1.999002 1.640989 -3.200524 1.312206 -1.720246 -2.407369 -2.368881 -2.625577 1.366807 -0.684608 3.341678 -0.209486 1.145981 -0.236528 1.465553 -0.014625 -4.448425 -0.723336 4.246159 -1.973593 -0.072747 -3.049204 2.396036 0.652895 -0.645746 -2.209094 -1.406837 1.556339 0.131958 1.967276 -3.098581 0.100070 -4.181440 1.508437 1.723362 0.518670 2.436705 0.315877 2.107703 1.652235 2.924202 -2.661503 1.385577 -5.026550 0.715909 -0.730242 0.930125 -1.430842 1.795307 0.424056 1.460334 3.240284 -5.101147 3.774876 0.423814 -1.659022 -2.834330 1.296248 -0.595015 -1.575114 -1.331082 2.610420 0.014220 -1.005279 -0.610514 1.067099 0.105115 -2.021402 -2.568514 0.126262 3.296381 -3.670412 0.990339 -1.234413 -1.770675 -0.232203 1.926245 2.456361 2.336840 4.519600 3.476215 -0.232154 1.749966 -4.267975 0.985575 4.781014 1.572144 -3.902707 3.450217 -2.759591 -0.583180 1.335581 2.092358 2.166140 3.072677 -3.302348 -3.506628 0.673960 -0.365368 4.568863 2.404720 0.743479 -4.224232 2.992418 -1.988946 -0.816797 5.335522 2.665825 -3.878920 0.330533 2.902024 -3.745147 -2.679218 1.573973 -2.436410 -0.630648 -1.530085 0.673079 2.571062 -2.580011 -3.317901 -0.370839 -3.802607 4.239864 -0.733746 -0.458247 0.616260 -3.333904 -3.867357 4.375783 0.260398 -1.658346 -2.489593 -2.824838 -1.953588 -4.668039 1.388201 1.700282 -1.362308 -2.811991 -3.533628 -0.528729 2.608010 -0.735438 1.127934 -4.908637 -1.582471 2.377424 0.861349 2.070316 -2.739718 -0.931542 -0.558649 -0.277669 1.627063 -0.891203 2.574670 5.222787 -2.941156 3.247043 0.617407 -2.646990 0.847926 3.723220 -3.539007 5.082838 -0.352521 3.340116 -0.080377 1.934303 -2.047314 0.465608 0.546909 -1.424589 -0.221201 1.660240 -2.347092 -1.338719 0.213684 -3.145614 -2.119708 1.061907 2.165563 0.437750 0.801949 0.679057 -1.546150 -1.593775 -1.807152 0.342994 3.148133 -1.150544 -2.607224 1.638727 1.317760 -1.514780 -1.613722 0.864649 1.693704 3.356115 -4.483851 1.935496 -0.491185 -0.317249 -4.719112 -3.797716 0.868530 -2.975634 -2.633701 2.122657 -4.663403 -1.091553 -2.592036 1.872310 -3.058914 -1.556236 0.873977 4.395595 1.440440 -1.240243 2.885805 -1.103322 2.963765 0.234267 -0.403861 0.770198 2.985095 +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.556827 0.313219 -0.078007 -0.493641 1.154941 -0.200014 -0.097459 0.590079 0.077281 0.697588 -0.656629 0.036337 -0.221465 -0.805630 0.074310 0.001153 0.066479 0.548171 -0.268465 0.087914 0.424510 -0.183791 0.270997 -0.354741 -0.209945 -0.765205 -0.048987 0.194989 0.166650 0.106898 -0.116658 0.072461 0.804462 -0.070869 0.427938 0.448635 0.362345 0.861852 0.235915 0.116031 0.262796 0.379967 -0.240990 -0.945264 0.385599 -0.420605 -0.520555 -0.501771 0.419494 -0.891142 0.410949 0.520731 0.032274 -0.312997 -0.557012 0.365255 0.596744 0.059531 0.807809 0.238200 -0.444134 -0.251820 -0.538922 0.532193 -0.641692 0.316003 0.075385 -0.802443 -0.310389 0.521277 0.149726 -0.256398 -0.464525 0.083606 0.198762 -0.488743 0.217412 -0.164565 0.013874 -0.345062 -0.444647 0.152677 -0.283594 0.572423 -0.056537 0.133012 -0.165384 0.056122 0.188099 -0.603224 -0.250746 0.613056 -0.216465 0.259742 -0.245594 0.341720 0.229018 -0.294702 -0.248254 -0.232079 0.131351 0.104192 0.305236 -0.128107 -0.195554 -0.529394 0.485429 0.283938 0.053864 0.263136 0.105081 0.147537 0.001297 0.337910 -0.327275 0.275383 -0.992932 0.215074 -0.013947 0.145278 -0.238581 0.137538 0.334473 0.060858 0.446002 -0.796740 0.822944 0.142153 -0.189617 -0.440790 0.329668 0.075265 -0.265264 -0.092507 0.492575 -0.103013 -0.143796 -0.009727 0.236854 -0.085512 -0.609045 -0.268133 -0.199801 0.587927 -0.597730 0.202822 -0.220392 -0.380312 0.021467 0.146455 0.236540 0.278930 0.816424 0.576865 -0.144889 0.247924 -0.758651 0.334050 1.022585 0.361886 -0.609773 0.405649 -0.280233 0.068463 0.332254 0.244559 0.279029 0.521203 -0.261394 -0.259254 -0.062177 -0.122382 0.743064 0.446510 0.362775 -0.856106 0.319963 -0.081585 0.211993 1.050566 0.507523 -0.860830 0.314102 0.666701 -0.656190 -0.249642 0.108571 -0.199154 -0.129691 -0.358353 0.263474 0.475407 -0.641332 -0.700111 -0.159434 -0.609550 0.678499 -0.077395 -0.032053 0.221178 -0.685132 0.011700 0.825666 0.183147 -0.171602 -0.258692 -0.499538 -0.559929 -0.919200 0.169493 0.313487 -0.421119 -0.293206 -0.541541 -0.182959 0.671677 -0.181911 0.052618 -0.779816 0.008378 0.440953 0.157690 0.219359 -0.591202 -0.181214 0.032477 -0.086439 0.303432 -0.157087 0.236277 0.681750 -0.548318 0.475110 0.358051 -0.021845 0.256033 0.623677 -0.430763 0.796217 -0.121481 0.539956 0.071084 0.407232 -0.238548 0.177337 -0.094880 -0.165561 -0.145752 0.432107 -0.678775 -0.263488 0.446893 -0.471096 -0.425717 0.313712 0.530828 0.454149 0.049886 -0.042442 -0.299313 -0.126123 -0.265855 0.083023 0.495402 -0.135531 -0.686591 0.094391 0.406856 -0.458097 -0.550501 0.243561 0.276859 0.652330 -0.693011 0.493982 0.050913 -0.046755 -0.827335 -0.496255 0.188838 -0.334061 -0.439380 0.411711 -0.987043 -0.368199 -0.342677 0.521152 -0.670717 -0.009967 -0.115324 0.694941 0.200619 0.036410 0.596687 -0.033992 0.332422 0.002697 -0.077686 0.125010 0.622974 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -3.697943 3.054218 2.332085 -3.683533 8.670351 -1.285301 0.916033 3.491191 -2.275358 4.605978 -4.355134 0.468460 -1.795343 -6.019225 0.785810 -2.713818 -0.380812 3.224211 -1.370085 2.898504 2.991194 -2.048102 1.205520 -2.139955 -1.768147 -5.143441 -0.768861 1.551657 2.911822 -0.408779 1.224080 0.297303 6.273171 -0.839769 3.983694 3.533274 2.734331 5.787653 0.810895 -1.843720 0.769128 2.972223 -2.397265 -5.580900 1.970188 -2.349503 -4.533465 -2.861499 2.571802 -5.036745 0.481814 4.294817 -0.316116 -1.963846 -3.795746 4.162464 4.102352 -0.238536 5.530230 1.445858 -2.462130 -2.033791 -5.504837 4.005277 -3.444977 2.791292 -1.032763 -4.695757 -0.801013 2.105747 0.292971 -2.433009 -3.323140 2.231700 2.384837 -3.757627 1.578011 -1.930853 -3.216178 -3.543037 -3.779847 1.403508 -1.700898 4.360374 -0.398451 1.291599 0.054239 1.419847 0.254795 -5.314741 -1.062897 5.634903 -2.106269 -0.301133 -3.491830 3.472712 0.944567 -0.993302 -2.963653 -2.160106 1.658798 0.083311 2.448732 -3.436149 0.062721 -5.004179 1.706776 2.096278 0.716943 3.607301 1.079573 2.188260 1.446077 3.377144 -3.845917 1.795533 -7.009473 1.021636 -1.081235 1.326669 -1.761645 2.106875 1.011105 1.725913 3.741681 -6.864819 5.169480 0.710542 -1.791441 -3.472696 1.715263 -0.494859 -1.948138 -1.498607 3.315719 -0.198917 -1.199799 -0.541685 1.365923 0.285505 -3.026379 -2.966229 -0.132333 4.941485 -5.551223 1.256807 -1.565644 -2.375245 -0.130070 2.010637 2.860612 2.747586 5.931650 4.336467 -0.663249 2.631428 -5.768156 1.596217 6.684554 1.749118 -4.595983 4.028362 -3.066237 -0.421292 1.695951 2.753153 2.839487 3.397956 -3.890892 -3.908024 1.268277 -0.510096 5.505300 2.948296 1.077638 -6.048564 3.749500 -1.759062 -0.612042 7.312424 3.531456 -5.000320 1.069158 3.731963 -5.070688 -3.213367 1.539309 -2.768150 -0.779624 -2.152462 1.206151 3.158833 -3.310578 -4.481731 -0.826117 -4.553150 4.995322 -0.970386 -1.091127 0.842024 -3.902226 -3.919021 6.018569 0.497828 -1.899641 -3.058288 -4.113021 -3.070535 -5.860274 1.788071 1.888051 -1.863357 -3.290743 -4.218023 -0.825491 4.146108 -0.922393 1.214238 -6.798459 -1.445738 2.837785 1.910554 2.586898 -3.891621 -1.202038 -0.395873 -0.449740 1.793975 -0.934564 3.142106 6.740589 -3.835797 3.839452 0.906595 -2.792032 1.421128 4.947828 -4.261968 6.163992 -0.438484 5.548299 -0.262729 2.436581 -2.247680 0.693546 0.606880 -1.725774 -0.431242 2.126850 -3.138177 -1.662055 0.848047 -3.745562 -3.504874 1.477557 2.847146 1.103755 0.990272 0.151051 -2.059139 -1.571866 -1.943584 0.482907 3.883848 -1.313394 -3.601690 1.681650 1.928208 -1.859853 -2.360712 1.119398 2.075484 4.149201 -5.431290 2.640553 -0.662650 0.093993 -5.801182 -4.979201 1.509404 -3.641162 -3.393779 3.036783 -6.242742 -1.691608 -3.171582 2.564299 -4.786027 -1.551108 0.624386 5.262881 1.594349 -1.124534 3.638092 -1.116081 3.435982 0.009813 -0.435030 1.063865 3.767257 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.454043 0.257563 -0.026937 -0.174629 0.634810 -0.104094 -0.249480 0.563323 -0.139676 0.672620 -0.246927 -0.011924 -0.147637 -0.501005 -0.049344 -0.075538 -0.065009 0.284607 -0.058116 0.104690 0.309907 -0.140418 0.015461 -0.005351 -0.268101 -0.277810 -0.117582 0.170210 0.566930 -0.656869 -0.224913 0.007996 0.796891 -0.196581 0.880355 0.554012 0.423522 0.416331 0.254557 -0.107600 -0.277250 0.392889 -0.461727 -0.405385 0.005602 -0.255965 -0.192330 0.057752 0.344877 0.086380 0.359193 0.479364 -0.218594 0.159891 -0.247168 0.449546 -0.193280 0.068818 0.871156 -0.002729 -0.430723 -0.157692 -0.610541 0.984950 -0.404118 0.288401 -0.329992 -0.412830 0.123501 -0.186447 -0.092200 -0.552577 -0.134665 0.751754 0.060551 -0.596412 0.084760 -0.297146 -0.118957 -0.376685 -0.625336 0.223163 -0.010724 0.324130 0.049678 0.225347 -0.160209 0.495044 -0.265289 -0.993097 0.286756 0.577352 -0.617086 0.193996 -0.165006 0.256693 -0.171819 0.255021 -0.177680 -0.042020 0.195378 -0.046078 0.307633 -0.605237 0.654166 -0.506391 0.205567 -0.255932 0.093280 0.051000 0.513671 0.188477 0.659464 0.828350 -0.053507 -0.297908 -0.682680 0.146754 -0.110428 0.099202 -0.069610 0.432190 0.023797 0.050385 0.801929 -0.870492 0.083451 -0.147277 -0.121708 -0.804123 -0.028385 -0.462102 -0.241979 -0.277857 0.392894 -0.014313 -0.162934 -0.491192 0.147193 0.151749 -0.691010 -0.404052 0.256341 0.250678 -0.415735 0.092871 -0.165177 -0.207993 -0.154893 0.471544 0.533741 0.634516 0.789118 0.572482 0.027129 0.164663 -0.676272 -0.137571 0.337250 0.008768 -0.686577 0.695610 -0.757018 -0.264579 0.224860 0.585571 0.493577 0.335359 -0.355474 -0.365333 0.524474 0.320010 0.697212 -0.215544 0.151857 0.295103 0.333804 0.106747 -0.579025 0.907632 -0.014970 -0.764245 0.394764 0.062361 0.194267 -0.105898 0.546796 -0.637037 0.075541 -0.309180 -0.068080 0.414254 -0.416881 0.011659 0.314248 -0.609346 0.863864 -0.132487 -0.050431 0.438112 -0.836052 -0.329087 0.633499 0.131046 -0.181348 -0.510608 -0.453649 -0.392124 -0.465934 0.178567 0.176923 -0.145870 -0.314831 -0.647470 0.037047 0.418295 0.285807 0.582698 -0.666280 -0.314015 0.345402 0.067553 0.386090 -0.121847 -0.114010 -0.110112 -0.015393 0.397241 -0.311318 0.518460 0.863090 -0.358178 0.576709 0.172375 -0.327681 0.046716 0.225269 -0.869944 0.750213 0.085258 -0.109617 0.035036 0.179647 -0.469313 0.034720 0.127968 0.285210 0.111204 -0.048576 -0.007951 -0.212472 -0.330076 -0.673973 -0.104604 -0.263978 0.062776 -0.072727 0.253625 -0.165606 -0.248867 -0.350312 -0.508180 0.080494 0.469902 -0.049209 -0.195123 0.578623 -0.249230 0.001640 0.390035 0.030196 0.115387 0.384485 -0.721263 -0.270881 -0.018683 0.104650 -0.500253 -0.525098 -0.392240 -0.231219 -0.061651 0.124319 -0.590764 -0.038258 -0.388084 -0.151657 -0.574539 0.001537 0.119501 0.912256 0.461636 -0.405862 0.326358 -0.236480 0.494427 0.238945 -0.082680 0.056171 0.397356 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.854914 2.955953 2.624378 -4.091308 8.025360 -1.549568 0.903777 2.665697 -0.873235 4.436985 -4.622715 0.020458 -1.843434 -5.686894 0.764648 -3.470306 -0.298133 3.675301 -1.410000 2.887940 3.104074 -1.710382 1.403094 -2.385000 -1.789272 -5.317717 -1.053385 1.697558 1.935277 -0.118066 1.928164 0.465985 6.103494 -0.832558 3.903740 3.833654 2.443122 6.411174 0.391451 -0.456720 1.329076 2.874448 -2.196582 -6.277602 2.205138 -2.192202 -4.415832 -3.526532 2.727046 -5.484664 0.641287 4.344293 -0.137173 -2.218930 -4.077948 3.527979 4.361484 0.315170 5.489440 1.602165 -2.522460 -0.592128 -5.249993 3.175454 -3.914861 2.663713 -0.836791 -5.042162 -1.216040 2.738121 0.946149 -2.132665 -3.923443 1.537916 2.376943 -3.729440 1.525781 -1.909441 -2.939543 -2.965947 -3.163205 1.433910 -1.141961 4.251226 -0.411060 1.307722 0.021027 1.223893 0.579674 -4.821967 -1.463405 5.184008 -1.825320 -0.040300 -2.837654 3.082259 1.475691 -1.627351 -2.758058 -2.151183 1.550532 -0.139342 2.550154 -1.640631 -1.329327 -4.636564 1.866304 2.368888 0.367690 2.966614 0.339374 2.315811 1.189185 2.745731 -3.754213 2.439271 -6.855264 1.303046 -1.423726 1.238750 -1.633909 1.889358 1.065028 1.730867 3.462227 -6.057858 5.369605 0.705412 -1.717983 -3.146848 2.076877 0.098504 -1.899318 -1.470857 3.403613 -0.150397 -1.157497 -0.181703 1.279574 0.027104 -1.880558 -2.410257 -0.397280 4.089973 -4.065453 1.490672 -1.579962 -2.608922 0.003609 1.626084 2.489205 2.512395 5.934546 4.509228 -0.766539 2.042188 -5.542074 1.548074 6.599894 1.650905 -4.425493 3.796251 -2.247451 -0.359659 1.843018 2.589213 2.537089 3.441381 -3.612571 -3.767336 -0.005529 -0.940852 5.427771 3.305859 0.978696 -6.437000 3.425473 -1.469775 0.090314 7.357862 3.431714 -5.272427 0.930727 4.321194 -5.401521 -3.764818 1.395884 -2.211210 -1.041428 -1.989774 1.576316 2.988887 -3.482039 -4.775207 -0.947983 -4.563144 4.520471 -1.048713 -1.315296 0.902684 -4.142189 -4.481687 5.953898 0.540085 -1.821036 -2.723481 -3.848620 -1.756336 -6.325950 1.779603 1.981765 -2.030533 -3.090197 -3.995648 -0.526560 3.935233 -1.372980 1.071760 -5.255404 -1.556413 2.984897 1.565154 2.216309 -4.191408 -1.146655 -0.141499 -0.279252 1.549376 -0.454429 2.278254 6.273781 -3.973489 3.194981 1.339056 -3.108885 1.585060 5.083538 -4.080813 6.350357 -0.655833 4.982660 -0.068866 2.372503 -2.080156 0.687990 0.600068 -1.903109 -0.666405 2.388723 -3.645216 -1.763517 1.473594 -3.438992 -2.982770 1.894624 3.475660 1.163389 0.917664 0.904330 -2.261345 -1.307036 -1.474389 0.434968 3.884205 -1.057341 -4.146511 1.554039 2.657643 -2.280354 -3.199096 1.139586 2.236425 4.338019 -5.497088 3.374124 -0.559922 -0.384791 -5.690432 -4.635281 2.098625 -4.142034 -3.131225 2.631394 -5.876426 -1.895271 -3.124999 3.186625 -3.649330 -1.525581 0.629305 5.016245 2.010310 -0.764068 3.788595 -1.175008 3.331047 -0.105133 -0.723668 1.060488 4.416430 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.599082 1.110535 0.222915 -1.517028 4.066099 -1.064240 0.395403 2.116585 -1.056127 1.999780 -1.853455 1.035595 -0.369087 -2.623642 0.458042 -0.352312 0.327608 1.727764 -0.459381 0.889129 1.129900 -0.497615 0.488915 -0.887544 -0.800854 -2.666118 -0.009991 0.796604 0.927148 -0.302049 0.106244 0.575593 2.832388 -0.559669 1.745275 1.768139 1.465435 2.245459 0.976472 -1.052295 0.825045 0.863668 -0.767694 -2.501481 0.632635 -0.700979 -2.162906 -1.188273 1.153960 -2.256852 0.287518 1.796868 -0.020514 -0.679724 -1.779943 1.787095 1.857211 -0.735911 2.333394 0.710164 -1.515900 -0.981290 -1.609147 2.472450 -1.642607 0.460104 -0.433597 -2.235142 -0.412902 1.671283 0.314151 -1.143448 -1.384240 0.563961 0.852375 -1.766332 0.617678 -0.480365 -0.294815 -1.715866 -1.349172 0.770799 -0.772063 1.827795 0.101399 0.589000 -0.349139 0.322722 0.289422 -2.094896 -0.490053 2.235981 -1.084027 0.093646 -1.636872 1.410209 0.975327 -0.854872 -0.804349 -1.643715 0.619901 -0.334292 0.994736 -1.114948 0.200786 -1.653814 0.340529 0.534143 0.483878 1.938574 -0.213734 0.975792 0.524867 1.103466 -0.997599 0.465605 -3.277540 0.972279 -0.554957 0.267008 -0.862628 0.444533 1.244764 0.903894 1.564184 -2.770699 2.257536 0.413900 -0.339023 -1.516709 0.770262 0.182911 -0.726527 -0.588227 1.561366 -0.290413 -0.259545 0.006101 0.935379 0.165839 -1.522962 -1.277914 -0.428520 2.185610 -2.650102 0.739951 -0.570800 -0.819037 -0.059637 0.657632 1.137538 1.230839 2.597757 1.837951 -0.401062 1.789869 -2.747139 0.741430 2.949247 1.339830 -1.769511 1.835877 -1.440629 -0.372558 0.730328 1.319707 0.891524 0.999932 -1.661864 -1.425375 0.753972 -0.192475 2.385675 0.849638 0.424239 -2.655003 1.239833 -0.420743 0.107049 3.278974 1.283305 -2.729799 1.221560 2.166670 -1.562997 -1.147379 0.705707 -1.626644 -0.947825 -0.982790 0.794167 1.501662 -1.773479 -1.596675 -0.204991 -1.742985 1.802027 -0.303743 -0.949257 0.456910 -1.602145 -0.851340 2.755000 0.409902 -0.299977 -1.029244 -1.874831 -1.265493 -2.783203 0.416916 0.809600 -0.949806 -0.832180 -1.792123 -0.830469 2.027311 -0.494610 0.609995 -3.449062 -0.020072 1.474363 1.094509 0.433229 -2.128672 -0.450803 0.159359 -0.125046 0.280387 -0.851758 1.141537 2.262771 -1.703827 1.517129 0.457661 -1.040419 0.927861 1.799987 -1.893183 2.693347 0.091985 2.471281 0.589287 1.026857 -1.229711 0.299809 -0.275521 -0.585946 -0.775781 0.988858 -1.975008 -0.800887 1.065543 -1.023118 -1.966111 0.626899 1.709860 0.651419 0.191021 -0.296589 -0.622395 -0.628675 -1.292443 0.609160 1.419519 -0.932711 -1.688818 0.943212 1.542559 -1.257668 -1.001729 0.528666 1.193385 1.854378 -2.369832 1.482913 -0.038191 0.603027 -2.693230 -2.520666 1.131064 -1.436515 -1.417247 0.784329 -3.212054 -1.401089 -1.176758 1.389514 -2.553881 -0.390241 0.400835 2.456048 0.159122 -0.209283 1.652216 -0.493356 0.804374 -0.256693 0.341432 0.220466 1.683217 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.294694 3.307089 2.886407 -3.713073 7.038249 -1.299209 0.741033 3.084251 -1.618487 4.176412 -4.212260 1.526341 -0.885211 -4.873315 0.601863 -2.673113 -0.515514 3.079312 -0.700145 2.950289 2.393600 -1.720087 1.077061 -2.100697 -1.853809 -5.343610 -0.527542 1.488361 1.839681 -0.311823 2.202781 0.264018 5.312131 -0.696491 3.374525 3.519562 2.241672 5.313371 1.265894 -0.935185 1.026149 2.127101 -1.893670 -4.935003 1.748458 -1.680849 -3.901586 -2.914898 1.882167 -4.984992 0.304947 3.792235 -0.183286 -2.062537 -3.626519 3.589246 4.039008 -0.842729 4.773068 1.210498 -2.202249 -1.232136 -4.375537 3.295536 -3.265502 1.766307 -0.681349 -4.043266 -0.316853 2.470047 0.928472 -1.893882 -2.995377 1.651723 1.802126 -3.603558 0.983875 -1.950648 -3.273660 -2.861799 -2.243457 1.528188 -0.552438 3.633495 0.014000 1.365967 -0.036363 1.365999 0.278551 -4.366750 -1.157800 4.676629 -1.813902 -0.565556 -2.828080 3.422926 1.508437 -1.435588 -1.981881 -2.011916 1.540930 -0.120453 2.126721 -2.280224 -0.901954 -4.377891 1.372603 1.901454 0.147657 2.995654 -0.207710 2.626148 1.467937 2.668864 -3.443404 1.953673 -6.276652 1.114723 -0.687831 0.908658 -1.488615 1.383062 0.687333 2.232754 3.237058 -5.453638 4.713963 0.617188 -1.472619 -3.011970 1.455694 0.053990 -1.381851 -1.357533 2.650377 -0.069654 -0.783278 -0.183152 1.086383 0.062456 -1.918765 -3.608292 -0.052280 4.611592 -4.565663 1.384028 -1.190691 -1.722995 -0.153520 1.558114 2.477861 2.135317 5.059488 3.656725 -0.121455 2.749650 -4.780761 1.034307 5.649206 2.568825 -3.810075 3.764901 -2.284311 -0.881959 1.446464 2.342036 2.087548 2.559077 -4.279402 -4.349755 1.246440 -0.993054 4.749029 2.832901 0.494758 -5.631571 3.854641 -1.000186 -0.357769 6.529802 2.929719 -4.447028 0.885759 3.775958 -4.540390 -3.141527 1.454907 -2.348576 -1.186649 -1.075460 0.797634 2.334711 -2.610545 -4.177041 -1.076354 -3.966751 4.159770 -0.749168 -0.997876 0.411699 -2.934337 -4.213544 5.044737 0.539340 -1.715950 -2.410398 -3.195829 -2.006389 -5.394097 1.307009 2.005199 -1.894868 -2.633052 -3.686093 -0.521117 3.027758 -1.342540 0.837007 -5.788548 -1.862856 2.728750 1.554321 1.478204 -4.201518 -0.850727 -0.216472 0.071625 1.127212 -0.487107 3.055186 5.864468 -3.150922 3.240346 0.810505 -2.639902 1.545557 4.482652 -3.874762 5.633194 -0.762983 4.882934 0.376236 1.940667 -2.122591 0.513657 0.413012 -1.784977 -0.541126 1.738653 -3.191023 -1.559764 0.943882 -2.875387 -2.743234 1.574898 2.928198 0.706330 0.684979 0.749012 -1.547715 -1.493075 -1.826237 0.329732 3.154949 -1.204408 -3.468472 1.653125 2.503878 -1.689883 -2.633912 0.845351 2.319403 3.469095 -4.870641 3.132676 -0.632778 -0.246773 -5.338358 -4.483558 2.308711 -3.700320 -3.164931 1.698213 -5.679642 -1.744131 -2.736894 2.460286 -4.007454 -1.219706 0.861330 4.498247 1.208087 -1.073825 3.127220 -1.470995 2.888251 0.106018 0.013960 0.532847 3.719025 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.010187 2.078496 1.280493 -2.944505 7.230919 -1.537754 0.659194 3.013465 -1.892974 3.885376 -3.180629 0.910777 -1.096457 -5.015889 0.850011 -1.750149 0.116637 2.880031 -0.672404 2.410223 2.255294 -1.574525 0.971977 -1.379056 -1.524530 -4.849453 -0.499948 1.652253 2.537409 -1.029980 0.915917 0.631366 5.222660 -1.082065 3.452611 3.318067 2.442849 4.315067 1.181193 -2.375151 0.782585 2.018183 -1.923461 -4.511774 1.283120 -1.322910 -4.110811 -2.259916 2.253099 -3.706943 -0.490994 3.739792 -0.415398 -1.300697 -3.331397 3.460778 3.345348 -0.678888 4.563222 1.125579 -1.994061 -1.534450 -3.958534 3.748480 -2.879410 1.090572 -1.457171 -4.009131 -0.481313 2.209550 -0.003057 -1.950850 -2.506767 1.904201 2.148823 -3.384274 1.154600 -1.392768 -1.853429 -3.404434 -2.875479 1.378864 -1.329716 3.654762 0.067731 1.302638 0.342730 1.167097 0.073018 -4.477630 -0.473049 4.266118 -2.024496 -0.520388 -2.415701 3.013836 1.482149 -1.112694 -2.019842 -2.465851 1.211739 -0.748264 2.164423 -2.238683 0.686552 -3.664399 0.454485 0.815891 1.168873 3.409974 0.471469 1.710254 1.343691 2.684013 -2.909800 0.752914 -5.580406 1.425598 -1.456018 0.952784 -1.622907 1.660018 1.767366 1.829971 3.296943 -5.552394 3.772368 0.511862 -0.705811 -2.978384 1.280760 -0.170530 -1.354236 -1.278293 2.891812 -0.626480 -0.779341 -0.370417 1.591196 0.651384 -2.322852 -1.695746 -0.268793 3.992399 -4.693915 1.416195 -1.163849 -1.862823 0.020291 1.450765 2.551471 2.768815 5.051982 3.812290 -0.795324 3.187662 -5.056826 1.288477 5.397360 1.481426 -3.475938 3.712448 -2.755358 -0.815339 1.296915 2.763282 2.396059 2.025786 -3.296759 -3.083007 1.480830 0.052849 4.594318 1.560739 0.592454 -4.758536 2.757215 -0.774277 -0.367135 6.056866 2.143835 -4.708903 1.981819 3.466932 -3.802778 -2.394380 1.460078 -2.952498 -1.076143 -1.959280 1.306353 2.913402 -2.928522 -3.018186 -0.461361 -3.493808 3.609254 -0.888971 -1.630175 1.212363 -2.946440 -2.988117 4.970092 0.619154 -1.005729 -2.657585 -3.660301 -2.041810 -4.876674 1.242441 1.134622 -1.660443 -2.008050 -3.578016 -1.250740 3.603470 -0.378909 1.472028 -6.398841 -0.402676 2.576341 2.174163 1.501783 -3.152553 -0.774573 0.266742 -0.488855 0.583859 -1.148973 2.330801 4.846126 -3.405900 2.710034 0.050959 -2.618852 1.762529 3.437005 -3.995199 5.366488 0.218740 4.833241 0.446007 1.812554 -2.147564 0.711914 0.223176 -1.512330 -0.802134 1.533104 -2.912830 -1.630102 1.552533 -2.325719 -3.569967 0.727898 2.826113 0.777575 0.863964 -0.246757 -1.596461 -1.218816 -1.660859 0.989424 2.961597 -1.333611 -2.808053 1.995237 2.312978 -1.380454 -2.039168 0.842330 2.029559 3.342891 -4.763821 2.332279 -0.497219 1.013418 -4.447718 -4.595132 1.815397 -2.948891 -2.338255 2.016803 -5.512224 -1.703687 -2.641606 2.054101 -3.939162 -0.810128 0.842612 4.649590 0.940357 -1.010799 3.000222 -1.149472 2.063469 -0.431430 0.144861 0.698836 3.125399 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.391379 1.403843 1.048184 -1.441917 3.261061 -0.547653 0.265263 1.542244 -1.402949 1.896391 -1.670366 0.568490 -0.483193 -2.465874 0.477516 -0.878049 -0.144587 1.090834 -0.091777 1.468571 1.052623 -1.088441 0.324098 -0.678813 -0.869778 -2.287672 -0.100357 0.775256 1.675974 -0.699482 0.562642 0.246078 2.586654 -0.534710 1.836440 1.501337 1.316285 2.114191 0.812492 -1.689557 0.032348 1.048190 -1.090475 -1.997330 0.527493 -0.675211 -1.682515 -0.756810 0.985741 -1.143920 0.093333 1.856216 -0.303961 -0.729808 -1.784070 1.849398 1.457221 -0.427709 2.366589 0.441030 -0.781882 -1.224279 -2.119033 2.286817 -1.450657 0.588440 -0.983910 -1.448541 0.159272 0.758025 -0.004034 -0.654234 -1.298264 1.265245 1.004197 -1.839168 0.667062 -0.838248 -1.184166 -1.771070 -1.591190 0.951182 -0.571770 1.909331 0.070644 0.762917 0.061910 0.913004 -0.183099 -2.437964 -0.070644 1.894078 -1.258913 -0.538741 -1.160224 1.874773 0.354750 -0.320970 -1.071488 -1.133836 0.892215 -0.382339 1.067428 -1.749940 1.072639 -2.140572 0.526907 0.498085 0.604594 1.863722 0.893710 1.189670 1.097173 1.610730 -1.341301 -0.175239 -2.805334 0.264545 -0.255133 0.349718 -0.932111 1.094672 0.334654 0.845147 1.839843 -3.053638 1.764584 0.311332 -0.378534 -1.292821 0.428597 -0.326134 -0.691400 -0.805929 1.370769 -0.141042 -0.438868 -0.242189 0.627528 0.485046 -1.433807 -1.101806 0.159520 2.385432 -2.606954 0.600520 -0.566553 -0.857274 -0.075591 1.016792 1.454883 1.496518 2.200948 1.788027 -0.252728 1.370189 -2.444713 0.562174 2.533677 0.495335 -1.967215 2.095836 -1.814595 -0.624230 0.530267 1.523999 1.368312 0.804692 -1.940524 -2.020614 1.181774 0.103769 2.354452 0.404618 0.144346 -2.118827 1.757046 -0.354481 -0.612182 3.057527 0.653905 -1.924160 0.310393 1.543770 -1.922320 -1.115144 0.954356 -1.669418 -0.287551 -1.009436 0.359734 1.533881 -1.268087 -1.398490 -0.305794 -1.855266 2.090249 -0.394494 -0.653196 0.341682 -1.255716 -1.795511 2.436976 0.135632 -0.641403 -1.604343 -1.812834 -1.084969 -2.284752 0.621173 0.582821 -0.601662 -1.154478 -1.935224 -0.645558 1.473437 -0.126967 0.703111 -3.576043 -0.595058 1.271235 1.068658 0.659953 -1.144090 -0.384627 0.208190 -0.249672 0.385114 -0.598983 1.769268 2.634329 -1.594398 1.769557 0.159134 -1.406338 0.772287 1.822977 -2.029776 2.742496 -0.209247 2.073819 0.117047 0.915706 -1.276280 0.250111 0.278356 -0.845432 -0.257490 0.423569 -1.099794 -0.751822 0.087090 -1.270816 -1.772710 0.208352 1.076087 0.286378 0.472001 -0.084820 -0.432701 -0.907975 -0.965112 0.544154 1.490568 -0.714681 -0.992764 1.214205 0.861105 -0.270232 -0.449080 0.361818 0.927475 1.655890 -2.457817 0.910813 -0.374795 0.607661 -2.264467 -2.438099 0.673056 -1.377363 -0.964209 1.194100 -2.875100 -0.608810 -1.360636 0.748436 -1.849997 -0.169928 0.604125 2.402416 0.308495 -1.041410 1.394710 -0.757995 1.197771 0.051936 -0.004036 0.275857 1.381801 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -4.283452 3.536791 3.787923 -3.697396 8.164785 -0.329566 0.310923 3.939396 -3.230303 5.816336 -4.024872 -0.342513 -2.268569 -6.144690 0.780518 -3.562978 -0.954807 2.657023 -0.752656 4.128044 3.425879 -3.228090 1.191572 -1.608313 -2.322146 -4.185821 -1.217270 1.890620 4.892171 -1.472593 1.840149 -0.127102 6.784685 -0.821164 5.324087 4.117476 2.768291 6.359448 0.900503 -3.218464 -1.162361 3.831835 -3.699049 -5.561559 2.396136 -3.020203 -4.172406 -2.547709 2.728263 -3.804407 -0.408220 5.405259 -1.103729 -1.657854 -4.046235 4.263566 3.209440 -0.047190 7.052427 1.193829 -2.067783 -2.685982 -7.223307 3.977731 -3.328592 3.000576 -2.224262 -4.860362 0.137122 0.606124 -0.154752 -3.136879 -3.301712 4.612855 2.643997 -4.683080 1.705431 -2.765865 -4.828436 -4.097000 -4.856385 1.670563 -1.367851 5.226049 -0.407568 1.839915 0.758697 2.787166 -0.870421 -7.642842 0.148658 5.940773 -3.207313 -0.714762 -3.312746 4.109122 -0.228587 0.307697 -4.086918 -1.205167 2.258055 0.134092 3.099476 -5.339278 1.599911 -6.562795 2.006953 1.172408 1.395070 3.262492 3.353806 2.543473 3.268740 5.640368 -5.051251 0.718194 -6.122811 0.683055 -1.124069 1.864892 -2.121822 3.763294 0.178556 1.698216 5.547460 -8.486747 4.004213 0.301055 -2.081416 -4.962196 1.260407 -2.050437 -2.222562 -2.187779 3.959132 -0.477191 -1.796092 -1.824319 1.276618 0.884305 -3.813496 -3.090904 0.779277 5.433793 -6.049206 1.290874 -1.960713 -3.018742 -0.241124 3.173799 4.347910 4.477473 6.291702 5.329313 -0.624072 2.764848 -6.282643 1.442777 6.768327 1.245493 -6.077408 5.522050 -4.583035 -0.985687 1.939594 3.511408 4.559590 3.541799 -4.832306 -5.304139 2.855797 0.840427 6.772817 2.867710 1.442169 -4.856585 4.895084 -1.846297 -2.471816 7.819192 2.423131 -5.279142 1.079115 2.918437 -5.426271 -2.797144 2.512332 -4.048439 0.007774 -2.489857 0.348796 3.996778 -3.520411 -4.079545 -0.398998 -5.749739 6.811433 -1.324089 -0.414448 1.459354 -4.889061 -5.832382 6.278397 0.699676 -2.731558 -4.696651 -4.497617 -3.417680 -5.859869 2.482975 1.747333 -1.717375 -4.474595 -5.662572 -0.830056 3.944175 0.429752 2.198672 -7.680957 -2.025878 3.187401 1.430471 3.911128 -3.227395 -1.294032 -0.365391 -0.879372 2.595371 -1.067702 4.367280 8.000673 -4.524551 4.691501 0.300699 -3.253126 1.488867 4.418789 -5.900678 7.488859 -0.456438 5.754048 -0.884670 2.740495 -2.846091 0.976999 1.502796 -1.451159 0.443417 1.740284 -2.059234 -2.099454 -0.305491 -5.130286 -3.380752 0.274032 2.176712 0.382159 1.819992 0.218868 -2.452719 -2.454880 -1.961046 0.623703 4.854409 -1.508076 -2.963827 2.836730 0.480128 -0.222872 -1.544752 1.181028 2.102370 4.474384 -6.861453 1.424168 -1.288604 -0.067345 -5.349244 -5.439436 0.426069 -3.814435 -2.819809 4.164319 -6.527519 -0.046326 -4.171088 1.425545 -4.462042 -1.143907 0.711398 6.679438 2.429816 -2.798814 3.954780 -1.651798 4.696053 0.500774 -0.711789 1.135591 4.055400 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = -1.964409 1.269191 1.004661 -1.601503 3.526649 -0.031727 0.417958 1.717379 -0.204871 2.096539 -2.249185 -0.598101 -1.176853 -2.320656 0.120855 -1.555715 -0.368190 1.530235 -1.193655 0.726444 1.773036 -0.522235 0.599761 -1.251020 -0.675027 -1.703750 -0.627425 0.360334 0.655676 1.029200 0.352638 -0.046906 2.456368 0.019442 1.710534 1.557824 1.032704 3.191964 -0.567262 1.419034 0.153977 1.781590 -1.181541 -3.277937 1.412829 -1.848685 -1.779278 -1.738553 1.213123 -3.209998 1.112555 1.861194 0.068049 -0.763432 -1.063233 1.099869 1.810371 0.665094 2.595704 1.004494 -1.625501 -0.334826 -2.583740 0.885806 -1.383605 2.160239 0.458650 -2.798669 -1.076289 0.780473 0.702908 -1.072961 -1.693008 0.770308 0.839025 -1.340094 0.930417 -0.890734 -1.701187 -0.663492 -1.548795 0.191187 -0.569983 1.946617 -0.578845 0.160174 -0.260471 0.294505 0.311864 -2.319782 -0.898376 2.833029 -0.685608 0.811480 -2.088616 0.531497 0.121121 -0.020871 -1.592082 -0.268418 0.750449 1.069801 0.973655 -0.942656 -1.904529 -2.257952 1.725222 1.356740 -0.119226 0.665964 0.120372 0.569793 0.260373 1.557335 -1.730861 2.247479 -2.678944 0.709618 -0.586629 1.021468 -0.518973 0.713023 0.538971 0.115276 1.482439 -2.412000 2.388417 0.379832 -1.334267 -1.884262 1.162435 -0.649237 -1.283355 -0.556656 1.588756 0.160649 -0.793931 -0.560082 0.413880 -0.506532 -1.254217 -1.461926 -0.347544 1.163391 -1.568284 0.244553 -0.939792 -1.252408 -0.294149 1.048546 0.959889 0.958314 2.736924 1.991678 -0.203211 0.069720 -2.157194 0.793057 3.335503 1.261680 -2.345751 1.152281 -0.745946 0.511547 1.107101 0.416018 1.067244 2.614438 -1.148625 -1.064963 -0.816479 -0.504295 2.692966 2.863680 1.204443 -2.817496 1.309777 -1.535301 -0.193420 3.042940 2.533855 -2.515505 0.074131 1.336936 -2.336396 -1.337881 0.465540 -0.569716 -0.298033 -0.893367 0.517107 1.214410 -1.831603 -2.520828 -0.051878 -2.409778 2.582406 -0.330840 0.666931 0.311783 -2.638494 -1.494438 2.552826 0.419248 -1.334743 -0.997310 -1.123627 -1.756962 -2.672250 1.039187 1.168881 -0.955933 -2.146616 -1.869247 0.063869 1.858700 -0.682671 0.311291 -1.078551 -0.946391 1.155973 -0.346984 1.851352 -2.506588 -0.863130 -0.986420 -0.156565 1.832900 0.028124 0.703517 3.175342 -1.638960 1.669177 1.322104 -0.694925 0.007877 2.475264 -1.410240 2.532840 -0.530571 1.707431 -0.502744 1.461242 -0.713262 0.269563 0.206579 -0.314864 0.103716 1.844372 -1.401940 -0.530358 0.559816 -2.512462 -0.436141 1.158192 1.080885 0.816881 0.336639 0.568370 -1.724409 -0.515464 -0.866489 -0.377661 2.178435 -0.465052 -2.362858 0.068168 0.160673 -1.382456 -1.579287 0.807913 0.695792 2.153478 -2.218741 1.057232 -0.011223 -1.125790 -2.779893 -1.428067 -0.013909 -1.756365 -2.019367 1.587551 -2.091283 -0.280747 -1.452663 1.341633 -1.952186 -1.383969 -0.252450 2.238545 1.263789 0.113936 1.884546 0.008235 2.264793 0.290917 -0.499275 0.724861 2.294597 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.148284 2.397586 2.353031 -2.640782 6.294077 -0.491089 0.447298 3.550028 -1.885773 3.829555 -3.350253 0.428935 -1.608432 -4.128645 0.467235 -2.275291 -0.400785 2.340107 -1.206391 1.954546 2.592562 -1.272337 0.838092 -1.601566 -1.543013 -3.348768 -0.706988 1.049573 2.265822 0.075304 0.965460 0.213359 4.779425 -0.540521 3.419112 2.807517 2.426200 4.836653 0.255691 -0.412289 0.062870 2.614296 -2.174722 -4.590302 1.918939 -2.503750 -3.032938 -2.012830 2.023234 -3.961922 0.680763 3.418020 -0.227502 -1.169830 -2.392657 2.860090 2.631016 -0.299028 4.682443 1.271031 -2.602264 -1.723020 -4.524802 3.081469 -2.540372 2.685814 -0.716687 -3.972418 -0.832602 1.238918 0.666669 -2.269042 -2.552969 2.127603 1.415300 -2.959497 1.416969 -1.517613 -2.322536 -2.402145 -3.015902 0.969762 -0.942701 3.389885 -0.521670 0.853394 -0.284300 1.161843 -0.024311 -4.644598 -0.733913 4.426800 -2.118203 0.507765 -3.467861 1.816800 -0.009697 -0.111536 -2.536007 -1.332420 1.517050 0.726187 1.868638 -3.233137 -0.346291 -4.059546 1.903467 1.322260 0.503046 2.082323 0.797940 1.684231 1.449538 3.199131 -2.823571 1.824344 -4.927050 1.001430 -0.707832 1.280757 -1.388595 1.731744 0.713787 0.986841 3.300032 -5.236191 3.560348 0.349716 -1.787691 -3.295273 1.391877 -1.012794 -1.842512 -1.322943 2.869622 -0.046995 -1.197881 -0.993364 1.048027 -0.015934 -2.732620 -2.950717 -0.147135 3.163533 -4.125695 0.700210 -1.436801 -1.950095 -0.386518 2.015231 2.407265 2.437655 4.449450 3.508762 -0.319147 1.800719 -4.430562 1.100411 5.057429 2.005255 -4.163255 3.164169 -2.718157 -0.104546 1.701975 1.806470 2.323549 3.177287 -2.922938 -2.987626 1.049234 -0.071306 4.755442 3.034261 1.376374 -4.335191 2.662811 -1.988932 -0.975104 5.630434 2.811051 -4.351019 0.787376 2.446298 -3.179557 -2.148800 1.357193 -2.445443 -0.758970 -1.549131 0.579757 2.630775 -2.908377 -3.341907 0.009894 -3.960750 4.523673 -0.730926 -0.017753 0.750272 -3.888698 -3.366436 4.470270 0.545116 -1.791841 -2.488266 -2.776173 -2.562946 -4.579622 1.524477 1.747841 -1.372284 -3.191080 -3.677478 -0.475577 3.025261 -0.519380 1.093504 -4.683946 -1.483034 2.297062 0.354168 2.593671 -3.642363 -1.123251 -0.901353 -0.434979 2.251693 -0.871934 2.269197 5.407513 -3.013790 3.494865 1.133665 -2.138713 0.542230 3.553416 -3.378921 4.874356 -0.468617 3.782489 -0.385359 2.146665 -2.041654 0.488299 0.395119 -0.616328 -0.141475 2.018966 -2.189115 -1.204674 0.204822 -3.827785 -1.893886 1.061685 1.888430 0.745856 0.807182 0.374467 -1.875293 -1.520650 -1.920755 0.113203 3.415020 -1.442623 -3.059623 1.361395 0.591794 -1.655788 -1.530686 1.040880 1.611221 3.413535 -4.363703 1.487580 -0.349265 -0.665338 -4.678615 -3.742722 0.349532 -2.898930 -2.842528 2.477431 -4.575348 -0.822680 -2.557122 1.826117 -3.718158 -1.452688 0.293398 4.434071 1.535383 -0.902032 3.118135 -0.651375 3.323246 0.349822 -0.281179 0.785343 3.203944 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -6.213644 5.200236 3.726852 -4.575440 12.358247 -2.153193 0.658510 7.392480 -5.479853 8.472140 -5.059129 0.907522 -2.742601 -8.819422 0.665586 -4.385239 -0.607175 5.443544 -0.589788 5.816825 4.627127 -3.963996 1.308284 -1.787215 -3.378847 -6.001198 -1.479273 2.680470 6.276536 -3.244025 1.918891 0.436981 10.695216 -1.019769 8.775270 7.035983 2.650186 8.473356 3.180815 -4.713343 -1.702232 4.961641 -5.097166 -7.952270 2.508254 -3.804211 -6.150528 -4.116933 3.696149 -5.587894 -0.831504 7.333111 -1.622549 -0.721863 -5.440622 5.657844 4.306635 0.121683 9.957750 1.568132 -3.860015 -2.534956 -9.159768 5.961331 -4.059285 2.474047 -2.741645 -7.394357 1.382236 0.937787 0.655368 -6.940782 -3.289160 6.795669 2.876601 -6.743840 1.909604 -3.441656 -7.545904 -6.811518 -6.914287 1.901190 -2.371532 6.778589 -0.347769 2.476810 -1.382633 3.799976 -1.364101 -10.991097 0.735847 9.337741 -4.341232 -0.588178 -4.660408 6.273787 1.353707 0.631609 -4.897105 -2.583718 2.755405 -0.436858 4.211697 -6.902327 2.293586 -8.029399 1.278860 -0.033535 1.706070 5.269599 3.556476 4.045044 5.479576 8.033950 -6.829814 1.340126 -9.845443 2.685760 -3.274685 2.232383 -2.013055 4.595921 1.198507 2.852543 7.902727 -12.144009 4.822437 0.318977 -1.803844 -8.939121 1.814818 -3.110726 -2.815868 -3.373249 5.586904 -0.732610 -1.885756 -3.390561 1.626187 1.104116 -5.308677 -5.457819 1.189193 8.714912 -9.205960 2.039098 -2.520987 -3.546962 -0.525951 4.009678 6.022964 6.569991 9.981853 7.635002 -0.900443 4.793526 -9.876882 0.782228 9.045835 3.719253 -8.040625 8.073793 -5.323735 -2.308832 2.804750 5.924869 6.348981 4.090010 -7.292068 -7.694994 4.637464 1.453806 9.341787 3.653868 1.924741 -5.169548 7.123550 -1.515558 -4.548048 11.620050 3.087458 -8.090427 3.261419 3.806057 -5.497539 -3.701048 4.055057 -6.513577 -0.579887 -2.674613 0.237986 5.146860 -5.266912 -4.831525 0.259014 -7.790931 9.174337 -1.906472 -1.610853 2.381268 -7.650212 -6.352013 9.493179 1.876648 -3.129278 -5.888982 -6.960946 -5.197080 -8.095663 2.986883 2.271613 -2.523480 -5.600503 -7.758740 -1.254150 5.968603 0.928763 3.871114 -10.441525 -2.904961 4.694470 2.344326 5.159708 -7.063052 -1.691071 -0.593992 -0.696991 3.515368 -1.390589 6.640968 11.735379 -5.759411 5.521786 1.416693 -3.094364 2.954599 5.514793 -9.652472 10.241610 -0.040816 9.519447 -0.019903 3.183549 -4.012581 0.882218 1.671980 -0.167961 0.109787 2.628869 -3.005358 -2.887729 0.321339 -6.963558 -4.887670 -0.347797 3.266998 -0.286660 2.554799 -0.603044 -4.503833 -3.153363 -4.105876 0.852570 6.500845 -2.068526 -4.860586 4.746053 0.703127 -0.494210 -0.781194 1.163409 3.351119 5.287433 -9.479540 1.522007 -1.623407 0.922000 -7.087532 -8.667834 1.134490 -5.347789 -4.802832 4.340681 -9.454662 -1.178869 -5.623446 1.554631 -9.128026 -1.541507 1.232213 10.079469 3.522085 -3.338633 4.897990 -2.650723 6.204973 0.472334 0.249163 0.661699 6.536869 +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.463962 0.398097 -0.285382 -0.379354 0.955238 -0.384053 0.006409 0.623396 -0.210384 0.544925 -0.526347 0.281337 -0.045951 -0.845709 0.131914 0.274137 0.181771 0.605548 -0.011014 0.237940 0.341952 -0.293038 0.091881 -0.306423 -0.194432 -0.645758 0.106735 0.184497 0.186791 -0.133009 -0.114959 0.238517 0.809106 0.012232 0.547807 0.547722 0.214005 0.708712 0.599672 -0.303599 0.162200 0.282832 -0.172221 -0.818030 0.265309 -0.218267 -0.357040 -0.452013 0.269152 -0.558711 0.469953 0.449096 0.026535 -0.141636 -0.692739 0.205151 0.610510 -0.079233 0.698968 0.238797 -0.319017 -0.201462 -0.253415 0.586407 -0.542474 -0.107366 0.169046 -0.553014 0.067281 0.472316 0.283921 -0.402342 -0.385007 0.083066 0.062711 -0.499629 0.202966 -0.076655 -0.038949 -0.558196 -0.429239 0.178048 -0.306430 0.585875 -0.021053 0.115984 -0.416684 0.043669 0.160876 -0.523701 -0.181531 0.431090 -0.219424 0.178829 -0.146919 0.653902 0.366382 -0.252990 -0.205696 -0.366549 0.177706 -0.084304 0.255182 -0.010623 0.025730 -0.325616 0.240848 0.016363 -0.006291 0.527320 0.245345 0.312006 0.178442 0.262034 -0.177663 -0.015881 -0.972513 0.266931 0.038629 0.038493 -0.125833 0.057918 0.352446 0.001249 0.380498 -0.756632 0.632043 0.224596 0.087871 -0.461808 0.262803 0.056766 -0.218939 -0.216564 0.467451 -0.038245 -0.042824 0.015270 0.150560 0.032417 -0.603972 -0.403212 -0.172045 0.899279 -0.736834 0.184003 -0.183117 -0.294826 -0.023287 0.046353 0.198793 0.297587 0.687839 0.496728 -0.171500 0.394830 -0.731413 0.193173 0.915747 0.529423 -0.501781 0.444223 -0.248853 -0.107316 0.273947 0.338247 0.290681 0.069963 -0.426126 -0.390357 0.259241 -0.123973 0.636999 0.069077 0.242864 -0.616639 0.498434 0.330259 0.003201 1.051874 0.128743 -0.704988 0.395275 0.612428 -0.393664 -0.125868 0.164435 -0.308957 -0.203468 -0.268321 0.252906 0.361078 -0.587445 -0.471762 -0.196522 -0.503472 0.509156 -0.049623 -0.144833 0.101659 -0.521095 0.229667 0.845997 0.178107 -0.067955 -0.216055 -0.485411 -0.400813 -0.788353 0.091790 0.185274 -0.310176 -0.137301 -0.479889 -0.258889 0.649063 -0.199749 -0.011329 -0.876116 0.024586 0.417239 0.266060 -0.055016 -0.694188 -0.162461 0.248795 0.127663 0.131360 -0.133539 0.424638 0.633934 -0.465820 0.211737 0.472054 0.275869 0.440412 0.510180 -0.521041 0.693794 -0.144417 0.655743 0.204552 0.287697 -0.311843 0.010493 -0.105800 0.069439 -0.257459 0.247016 -0.562502 -0.175839 0.431650 -0.211733 -0.502556 0.219522 0.479029 0.368392 0.021715 -0.164431 -0.097008 -0.100665 -0.365832 0.156982 0.404696 -0.110759 -0.506450 0.206491 0.443029 -0.234002 -0.148821 0.155159 0.305126 0.536041 -0.615866 0.439761 -0.010450 0.164123 -0.597528 -0.690471 0.394408 -0.242598 -0.342925 0.341170 -1.031669 -0.382537 -0.277662 0.439447 -0.875117 0.238549 -0.087125 0.647694 0.017691 -0.021074 0.431467 -0.122127 0.212285 -0.043279 0.101606 -0.039561 0.619788 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -2.813234 2.046558 1.359561 -2.023981 5.960864 -1.351165 0.387179 3.545542 -1.704184 3.810657 -2.503605 0.200692 -1.129954 -4.103097 0.429724 -1.582473 0.128472 2.760381 -0.549334 2.183016 2.032071 -1.341508 0.729697 -1.128937 -1.403969 -3.173703 -0.648882 1.145130 2.269196 -1.107148 0.731142 0.398676 5.150919 -0.228334 3.813290 3.079348 1.407965 4.080132 1.560193 -1.580772 -0.118514 2.132389 -2.029313 -3.763743 1.259840 -1.607589 -2.912635 -2.051900 1.550691 -2.972339 0.341929 3.077926 -0.380933 -0.333365 -2.506816 2.382984 2.497858 -0.029336 4.252291 0.849314 -1.760300 -1.040719 -3.838249 2.907547 -2.058212 1.086552 -0.860955 -3.610875 0.037370 0.985079 0.780368 -3.119884 -1.839216 2.562688 1.432354 -2.866928 0.992874 -1.137319 -2.438408 -3.131165 -3.060813 0.916875 -1.298308 3.011214 -0.196157 1.052193 -0.558711 1.241619 -0.102069 -4.562709 -0.123652 4.104343 -2.087202 0.045536 -2.276295 2.424268 0.617739 0.007237 -1.985763 -1.765872 1.034586 -0.296644 1.732423 -2.146386 0.396669 -3.189819 0.726348 0.197215 0.591857 2.742636 1.204670 1.765804 1.951736 3.201803 -2.913144 0.633571 -4.505443 1.450194 -1.571495 0.893937 -0.942326 1.629965 1.010179 1.438868 3.184991 -5.341573 2.585849 0.370105 -0.728192 -3.524757 0.870184 -0.977194 -1.336369 -1.397622 2.568430 -0.345028 -0.682328 -1.172393 0.843357 0.345238 -2.282259 -2.789416 0.030903 3.783497 -4.382295 0.900556 -1.072097 -1.652653 -0.289491 1.521075 2.466310 2.572069 4.140004 3.251529 -0.738775 2.250279 -4.400652 0.612705 4.502808 1.474212 -3.563428 3.493309 -2.129588 -0.760963 1.479557 2.461427 2.548553 1.552150 -2.972323 -3.056293 1.522663 0.386660 4.166140 1.941527 0.851724 -3.299053 2.947626 -0.531247 -1.515210 5.771750 1.702184 -3.907589 1.254944 2.193515 -2.751023 -1.739155 1.387545 -2.752990 -0.568291 -1.509363 0.595565 2.169041 -2.370364 -2.255642 0.226506 -3.402555 3.834432 -0.729744 -1.068682 0.939876 -3.324875 -2.718243 4.746126 0.839544 -1.078000 -2.405603 -3.182170 -2.053434 -4.034992 1.183353 0.901822 -1.175642 -2.118416 -3.275450 -0.499015 3.147115 -0.011915 1.460727 -5.136945 -1.037601 1.971711 0.807785 1.693612 -3.708518 -0.769409 -0.144830 -0.186133 1.251955 -0.694981 2.583297 5.154676 -2.655733 2.251711 0.839004 -1.539497 1.263350 2.574432 -4.055485 4.339250 -0.378005 4.191495 0.126867 1.570043 -1.706695 0.377080 0.362214 -0.099382 -0.515159 1.376287 -1.906446 -1.285689 0.648346 -2.678615 -2.515890 0.203123 1.755616 0.411178 0.869666 -0.426128 -2.064426 -0.915776 -1.533650 0.513207 2.797603 -0.694539 -2.489905 1.904826 0.908535 -0.804102 -1.025824 0.497061 1.448862 2.601849 -4.131731 1.122698 -0.437551 0.539904 -3.233002 -3.909334 0.869343 -2.657667 -2.251080 1.872190 -4.535602 -1.085174 -2.309950 1.142787 -3.895017 -0.666720 0.504941 4.390408 1.454073 -1.250362 2.329410 -0.996640 2.486671 0.240909 0.187709 0.338645 3.045890 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = -1.964409 1.269191 1.004661 -1.601503 3.526649 -0.031727 0.417958 1.717379 -0.204871 2.096539 -2.249185 -0.598101 -1.176853 -2.320656 0.120855 -1.555715 -0.368190 1.530235 -1.193655 0.726444 1.773036 -0.522235 0.599761 -1.251020 -0.675027 -1.703750 -0.627425 0.360334 0.655676 1.029200 0.352638 -0.046906 2.456368 0.019442 1.710534 1.557824 1.032704 3.191964 -0.567262 1.419034 0.153977 1.781590 -1.181541 -3.277937 1.412829 -1.848685 -1.779278 -1.738553 1.213123 -3.209998 1.112555 1.861194 0.068049 -0.763432 -1.063233 1.099869 1.810371 0.665094 2.595704 1.004494 -1.625501 -0.334826 -2.583740 0.885806 -1.383605 2.160239 0.458650 -2.798669 -1.076289 0.780473 0.702908 -1.072961 -1.693008 0.770308 0.839025 -1.340094 0.930417 -0.890734 -1.701187 -0.663492 -1.548795 0.191187 -0.569983 1.946617 -0.578845 0.160174 -0.260471 0.294505 0.311864 -2.319782 -0.898376 2.833029 -0.685608 0.811480 -2.088616 0.531497 0.121121 -0.020871 -1.592082 -0.268418 0.750449 1.069801 0.973655 -0.942656 -1.904529 -2.257952 1.725222 1.356740 -0.119226 0.665964 0.120372 0.569793 0.260373 1.557335 -1.730861 2.247479 -2.678944 0.709618 -0.586629 1.021468 -0.518973 0.713023 0.538971 0.115276 1.482439 -2.412000 2.388417 0.379832 -1.334267 -1.884262 1.162435 -0.649237 -1.283355 -0.556656 1.588756 0.160649 -0.793931 -0.560082 0.413880 -0.506532 -1.254217 -1.461926 -0.347544 1.163391 -1.568284 0.244553 -0.939792 -1.252408 -0.294149 1.048546 0.959889 0.958314 2.736924 1.991678 -0.203211 0.069720 -2.157194 0.793057 3.335503 1.261680 -2.345751 1.152281 -0.745946 0.511547 1.107101 0.416018 1.067244 2.614438 -1.148625 -1.064963 -0.816479 -0.504295 2.692966 2.863680 1.204443 -2.817496 1.309777 -1.535301 -0.193420 3.042940 2.533855 -2.515505 0.074131 1.336936 -2.336396 -1.337881 0.465540 -0.569716 -0.298033 -0.893367 0.517107 1.214410 -1.831603 -2.520828 -0.051878 -2.409778 2.582406 -0.330840 0.666931 0.311783 -2.638494 -1.494438 2.552826 0.419248 -1.334743 -0.997310 -1.123627 -1.756962 -2.672250 1.039187 1.168881 -0.955933 -2.146616 -1.869247 0.063869 1.858700 -0.682671 0.311291 -1.078551 -0.946391 1.155973 -0.346984 1.851352 -2.506588 -0.863130 -0.986420 -0.156565 1.832900 0.028124 0.703517 3.175342 -1.638960 1.669177 1.322104 -0.694925 0.007877 2.475264 -1.410240 2.532840 -0.530571 1.707431 -0.502744 1.461242 -0.713262 0.269563 0.206579 -0.314864 0.103716 1.844372 -1.401940 -0.530358 0.559816 -2.512462 -0.436141 1.158192 1.080885 0.816881 0.336639 0.568370 -1.724409 -0.515464 -0.866489 -0.377661 2.178435 -0.465052 -2.362858 0.068168 0.160673 -1.382456 -1.579287 0.807913 0.695792 2.153478 -2.218741 1.057232 -0.011223 -1.125790 -2.779893 -1.428067 -0.013909 -1.756365 -2.019367 1.587551 -2.091283 -0.280747 -1.452663 1.341633 -1.952186 -1.383969 -0.252450 2.238545 1.263789 0.113936 1.884546 0.008235 2.264793 0.290917 -0.499275 0.724861 2.294597 +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) = -5.510863 3.438974 3.615431 -5.620750 13.287393 -3.083820 1.209285 5.319462 -1.755573 7.035858 -5.589895 1.911910 -1.862327 -8.304453 1.437020 -4.626155 0.360802 5.638928 -1.635520 3.807724 4.065989 -1.448809 1.908865 -2.535970 -2.659851 -9.853423 -1.354298 3.114956 3.286912 -1.056753 2.800641 1.384440 9.307024 -2.270643 6.309039 6.500890 5.060323 7.384686 1.048930 -1.898480 2.524462 3.207747 -3.185381 -8.152295 2.275445 -1.903496 -8.105342 -4.584355 4.271427 -7.885596 -2.300004 6.747535 -0.644973 -2.233573 -5.288972 6.557224 5.524063 -1.640306 7.731865 2.180632 -4.581396 -1.585211 -7.088111 6.606661 -5.416882 2.286725 -2.921997 -8.218920 -1.803702 4.797217 -0.414241 -3.062595 -3.890279 2.909196 4.009168 -5.943938 1.913243 -2.398923 -2.378785 -5.408373 -4.193222 2.529441 -1.418107 5.986331 0.379782 2.333336 1.204132 1.731268 0.387868 -7.610991 -1.087802 8.021616 -3.659324 -0.829537 -4.883725 3.927705 3.691829 -2.580354 -2.447752 -4.986890 1.894222 -1.779393 3.939403 -2.334847 -0.181883 -5.644624 -0.158047 1.747498 2.080429 5.769898 -2.316312 3.064970 1.907618 4.226418 -5.308857 3.041315 -9.644763 3.731248 -3.854143 1.667519 -2.721461 2.358973 3.976473 4.492392 5.547263 -8.829494 6.918806 0.721941 -1.423748 -5.125283 2.619722 0.155265 -2.276049 -2.211843 5.183300 -1.167133 -1.252752 -0.457244 3.209229 0.706492 -2.351764 -3.193789 -1.095079 5.227299 -7.262486 2.870347 -1.987842 -3.134500 0.082667 2.267331 4.353438 4.804572 9.484255 7.036310 -1.373506 5.877594 -9.012034 1.889115 9.182262 2.592949 -5.560721 6.628216 -4.458298 -1.545272 2.499763 4.706010 3.513574 4.627613 -5.415701 -4.897547 1.234147 -0.287794 8.105697 3.886694 0.543612 -9.370393 3.659276 -2.497654 -0.214275 10.535670 4.956544 -9.325669 4.264368 6.815217 -7.281825 -5.521495 2.365662 -5.257048 -2.762944 -3.201404 2.779868 5.054307 -5.351113 -5.427691 -0.071260 -6.087304 5.727867 -1.636122 -2.956733 2.620790 -5.358974 -6.808496 8.790817 1.281000 -1.487038 -4.303715 -6.348487 -2.281260 -9.101340 2.062379 2.294499 -3.149201 -3.120494 -6.066492 -1.902183 6.193555 -1.021938 3.093796 -10.730389 -0.613787 4.760969 3.226265 2.415062 -6.252415 -1.342803 -0.285314 -1.091620 0.519317 -2.257043 2.907694 8.230932 -6.040144 4.668555 -0.782544 -6.766310 2.885186 5.840188 -7.352386 9.741956 1.094586 7.991052 1.510161 3.088575 -4.068832 1.261048 0.060204 -3.627254 -1.889208 3.337802 -5.964032 -3.017274 3.472859 -4.263885 -5.909746 1.586430 5.759672 1.042608 1.415823 0.366049 -3.802285 -1.801954 -3.009077 1.757990 5.195953 -2.444586 -5.710008 3.625012 5.112947 -3.897482 -5.951428 1.459374 3.902830 5.950698 -8.577255 5.004885 -0.391157 1.325741 -8.508330 -7.854045 4.001280 -6.407488 -4.597684 1.996755 -9.381553 -3.713438 -4.728539 4.080576 -6.288694 -2.924465 2.075586 8.413887 2.021190 -1.199868 5.587106 -2.126324 3.352656 -0.974858 0.420744 1.200896 5.763307 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.287981 1.456857 -0.004669 -2.357619 7.122024 -2.595151 0.441277 2.789401 -1.158295 2.913421 -2.806346 0.733921 -0.833135 -5.074199 0.774832 -0.752547 0.258468 3.520762 -0.399856 1.931054 1.708673 -1.154467 0.768874 -0.957359 -1.026140 -4.664332 -0.650022 1.478412 1.834122 -2.206808 0.009466 0.659013 5.177665 -0.942243 2.796209 2.868049 1.805294 3.699574 1.863130 -2.302066 0.863289 1.469058 -1.450741 -4.054642 0.866781 -0.602546 -3.916898 -2.027230 1.867887 -2.752786 0.394477 3.019989 -0.422608 -0.882500 -2.730435 3.075396 3.577809 0.380023 3.381580 0.891428 -1.272142 -0.340458 -3.004099 3.091278 -2.350561 0.485585 -1.467677 -3.296791 -0.411911 1.869830 1.190916 -2.455190 -2.305940 1.391154 1.927726 -2.592823 0.860422 -1.026546 -1.260337 -3.885484 -3.253028 1.119561 -2.055187 2.842661 0.164515 1.063350 -0.455204 0.860933 0.113796 -3.310849 -0.274240 3.591577 -1.463105 -0.706949 -1.138739 2.841650 1.783573 -1.087367 -1.229165 -3.219975 0.753083 -1.169508 1.800590 -0.030842 1.085880 -2.420380 0.294006 0.396293 1.064442 3.174904 0.968072 1.204892 0.966016 1.813592 -2.611035 0.134896 -6.229752 1.427298 -1.797638 0.733392 -1.129137 1.320229 1.747257 1.860485 2.423607 -5.128556 3.215799 0.394855 -0.174373 -2.097435 1.044939 0.023163 -0.972829 -1.016808 2.251145 -0.596204 -0.512143 -0.151700 1.329608 0.632736 -2.106272 -0.975851 -0.350643 4.282925 -4.728385 1.297925 -0.829264 -1.548307 0.157012 0.814347 1.899669 2.283818 4.645972 3.163567 -0.919209 2.453620 -5.068463 0.920911 4.553257 0.980624 -2.315812 2.916880 -1.258867 -0.779517 0.980731 3.481066 1.875349 0.425520 -2.315355 -2.115145 1.241039 0.071866 3.410835 0.507710 0.171815 -4.185539 1.888388 0.849327 -0.193592 6.368381 1.592082 -3.779954 1.411241 2.926036 -2.432386 -2.167747 1.074454 -2.214086 -0.805776 -1.677666 1.362447 2.260317 -2.286151 -2.614725 -0.302468 -2.547953 2.285345 -0.808270 -2.707229 1.322222 -2.132917 -1.665229 5.070094 0.528634 -0.500586 -2.094606 -4.101503 -1.268410 -3.785664 0.969200 0.547612 -1.355067 -1.098418 -2.596946 -0.960880 4.036019 -0.234152 1.374591 -5.828664 -0.525027 1.970578 2.407144 0.934192 -3.779745 -0.540142 0.483699 -0.500587 -0.107536 -0.278733 1.836079 4.546671 -2.764713 1.639747 1.058049 -1.562155 1.693773 3.495446 -3.337428 4.276961 -0.071424 5.321479 0.546812 1.240796 -1.659136 0.538654 0.245102 -0.608724 -0.801830 1.125739 -2.371228 -1.339225 1.784970 -1.423276 -4.074909 0.443394 2.480088 0.509624 0.760996 -1.240447 -1.556421 -0.600432 -0.834690 0.990377 2.218989 -0.707193 -2.751176 1.686109 2.316896 -1.025214 -1.297404 0.538597 1.538680 2.551525 -3.785501 2.034166 -0.351403 2.222865 -3.529544 -4.624643 1.835135 -2.502026 -1.518306 1.266888 -5.233308 -2.549936 -2.131006 1.600107 -4.099275 0.353728 0.814161 3.570151 0.958145 -0.790985 2.214358 -1.000969 1.259935 -0.596877 0.024347 0.540481 3.024050 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.508617 0.226369 -0.197407 -0.380913 1.368046 -0.454620 0.004077 0.959800 -0.216129 0.680693 -0.521480 0.403848 -0.069718 -0.798639 0.177483 0.212642 0.237363 0.618098 -0.190121 0.032583 0.334591 0.012376 0.132850 -0.235085 -0.248734 -0.869829 0.077011 0.262409 0.217419 -0.091149 -0.264568 0.313955 0.970129 -0.209594 0.594288 0.571759 0.604597 0.615056 0.470777 -0.295411 0.365525 0.215566 -0.197829 -0.764341 0.169760 -0.210667 -0.659634 -0.289845 0.399842 -0.696570 0.306400 0.512890 0.030479 -0.116617 -0.517458 0.555492 0.408460 -0.308774 0.748735 0.260328 -0.645866 -0.418855 -0.374994 1.116630 -0.591836 0.084140 -0.162824 -0.811488 -0.226248 0.656985 0.114485 -0.394716 -0.352876 0.113488 0.165930 -0.555756 0.228367 -0.015414 0.424295 -0.512925 -0.483060 0.280957 -0.330494 0.549422 0.045023 0.159873 -0.291850 0.026571 0.122444 -0.637540 -0.141192 0.653470 -0.457126 0.195507 -0.545200 0.283975 0.354681 -0.295948 -0.085103 -0.639511 0.172835 -0.142657 0.286054 -0.305117 0.242291 -0.338653 0.126964 0.095855 0.230166 0.642670 -0.133706 0.255830 0.134811 0.317298 -0.028954 0.003589 -1.080712 0.443696 -0.145453 0.015653 -0.297166 0.065128 0.606522 0.252791 0.504264 -0.871664 0.689420 0.128848 -0.030913 -0.436579 0.244902 0.107839 -0.246016 -0.190736 0.572077 -0.125648 -0.078190 0.011392 0.408038 0.064123 -0.675985 -0.386191 -0.264304 0.570842 -0.899220 0.223826 -0.181367 -0.244053 -0.030481 0.201923 0.335384 0.432511 0.799208 0.562174 -0.165808 0.526651 -0.976835 0.274489 0.921113 0.404702 -0.543330 0.592409 -0.568859 -0.111931 0.275128 0.455173 0.195734 0.317387 -0.334937 -0.263343 0.217244 0.030624 0.789044 0.183580 0.195878 -0.751157 0.162540 -0.159623 0.091584 1.079549 0.393624 -1.009377 0.504356 0.744469 -0.308237 -0.252913 0.222492 -0.618243 -0.364349 -0.406998 0.309334 0.590679 -0.690112 -0.368866 0.086255 -0.508965 0.544982 -0.076374 -0.346443 0.202120 -0.599686 0.114454 0.951528 0.213242 0.050830 -0.267473 -0.645290 -0.503075 -0.920563 0.047384 0.266013 -0.288617 -0.124685 -0.565661 -0.383609 0.762304 -0.123209 0.217049 -1.217726 0.193133 0.520374 0.282767 0.020097 -0.680454 -0.140679 0.081035 -0.095286 0.069140 -0.458802 0.274427 0.551031 -0.539352 0.531862 0.273178 -0.230761 0.269144 0.434016 -0.596879 0.828221 0.081194 0.560417 0.326991 0.330148 -0.455029 0.090566 -0.252315 -0.079247 -0.392656 0.329690 -0.720248 -0.251057 0.423591 -0.305787 -0.665124 0.162064 0.613829 0.319154 0.014410 -0.252326 -0.179063 -0.191148 -0.565963 0.285370 0.407228 -0.348606 -0.534875 0.371234 0.521033 -0.582838 -0.346786 0.189714 0.383396 0.635702 -0.734375 0.437471 0.127836 0.326799 -0.910766 -0.792686 0.263959 -0.324655 -0.420803 0.136735 -1.132877 -0.625082 -0.298453 0.496493 -0.944202 -0.052121 0.111644 0.839080 -0.041139 -0.023279 0.563606 -0.094818 0.115958 -0.057381 0.157502 0.028102 0.491052 +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.718734 0.206231 0.094338 -0.546986 1.834651 -0.504920 0.143716 1.204034 -0.205966 0.801875 -0.768922 0.365738 -0.287816 -0.979491 0.245409 -0.136188 0.193810 0.766682 -0.482229 -0.024213 0.575437 0.171960 0.141862 -0.402422 -0.300347 -1.049673 -0.024558 0.279856 0.208407 0.170644 -0.194393 0.376817 1.225548 -0.294271 0.678847 0.683781 0.937640 1.013224 0.109474 0.029427 0.523732 0.444979 -0.280388 -1.123811 0.343274 -0.449013 -0.915756 -0.365687 0.571675 -1.132608 0.277261 0.662079 0.149446 -0.186045 -0.473486 0.796979 0.586725 -0.295002 0.910484 0.476194 -0.931986 -0.461256 -0.750242 1.262780 -0.745988 0.543084 -0.183785 -1.173802 -0.581052 0.793552 0.146817 -0.497687 -0.571086 0.019401 0.277330 -0.587719 0.399696 -0.025454 0.446119 -0.454997 -0.623646 0.250799 -0.367736 0.717776 -0.137984 0.078387 -0.184215 -0.080329 0.215701 -0.741061 -0.403080 1.030467 -0.599670 0.323032 -1.083552 0.021009 0.282588 -0.282819 -0.271140 -0.786424 0.253943 0.069890 0.352046 -0.486710 -0.119115 -0.461017 0.275376 0.301450 0.202443 0.727821 -0.447085 0.262558 -0.068385 0.347931 -0.121042 0.429829 -1.380273 0.566663 -0.298899 0.219059 -0.383845 0.066412 0.765978 0.308717 0.550534 -1.013353 1.013539 0.087855 -0.267566 -0.499000 0.448711 0.121824 -0.482551 -0.255287 0.796432 -0.023082 -0.238427 0.014020 0.586467 0.014983 -0.672018 -0.594358 -0.404105 0.360566 -1.079070 0.152917 -0.322188 -0.371731 -0.104295 0.309946 0.372680 0.441586 1.029087 0.752806 -0.167405 0.591966 -1.235105 0.407619 1.256268 0.462077 -0.764499 0.587930 -0.686182 0.091180 0.443245 0.402665 0.169129 0.830505 -0.311813 -0.198957 -0.002268 -0.070402 1.096973 0.678614 0.298209 -1.289058 0.038915 -0.677546 0.183953 1.343294 0.917625 -1.401090 0.501820 0.868848 -0.477312 -0.538907 0.164365 -0.665669 -0.480520 -0.510766 0.441047 0.749595 -0.890887 -0.641612 0.208020 -0.713782 0.702726 -0.160532 -0.323458 0.195211 -0.903897 -0.254542 1.170967 0.203547 -0.087595 -0.362388 -0.720528 -0.666775 -1.256065 0.190397 0.409265 -0.336870 -0.471428 -0.713364 -0.326125 1.037775 -0.326870 0.198131 -1.317220 0.094660 0.604392 0.194684 0.353183 -0.993180 -0.251979 -0.197364 -0.160078 0.314980 -0.551028 0.091983 0.900437 -0.737550 0.818823 0.312444 -0.645467 0.057456 0.786467 -0.616238 1.038037 0.093565 0.709042 0.178417 0.478426 -0.583332 0.060919 -0.277342 -0.126098 -0.436613 0.576493 -0.866905 -0.230714 0.390084 -0.679693 -0.588058 0.431352 0.780811 0.402074 0.022834 -0.071864 -0.384482 -0.219860 -0.669581 0.152820 0.678476 -0.501406 -0.879463 0.308318 0.480300 -1.006513 -0.644272 0.272655 0.470219 0.921900 -0.882290 0.548839 0.208935 0.079799 -1.329650 -0.969573 0.156884 -0.608753 -0.710528 0.246326 -1.175215 -0.716435 -0.398775 0.807423 -1.124550 -0.466266 0.111259 0.942968 0.111189 0.145212 0.845799 0.024673 0.445852 -0.029749 0.079411 0.175001 0.663099 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.672338 0.138155 -0.383062 -0.289067 1.254901 -0.269375 -0.320876 0.944418 -0.406555 0.835686 -0.377637 0.003607 -0.304222 -0.906539 0.078037 0.323874 0.171364 0.591135 -0.176427 0.238931 0.528903 -0.237489 0.156809 -0.089927 -0.266388 -0.187101 -0.146934 0.287980 0.697693 -0.716575 -0.475613 0.120021 1.164803 -0.231380 0.998103 0.676469 0.532689 0.760167 0.421849 -0.679856 -0.185702 0.613936 -0.557675 -0.822030 0.294455 -0.457748 -0.417443 -0.105721 0.586046 -0.137291 0.377935 0.707211 -0.212210 0.073749 -0.517132 0.495847 0.190418 0.031207 1.181496 0.134453 -0.579671 -0.303504 -0.696237 1.066430 -0.599105 0.352730 -0.383395 -0.800363 -0.068671 0.026353 0.150186 -0.957130 -0.469759 0.734022 0.089472 -0.697440 0.335817 -0.212901 0.446602 -0.868592 -1.031565 0.169121 -0.515038 0.621396 -0.112186 0.232224 -0.320147 0.384444 -0.129578 -1.193692 0.223980 0.592482 -0.723520 0.394821 -0.220657 0.351566 -0.151969 0.134028 -0.497414 -0.285171 0.205540 -0.102078 0.466107 -0.443758 1.020069 -0.420865 0.213953 -0.294519 0.396977 0.424834 0.799408 0.251914 0.639995 0.878730 -0.095092 -0.454578 -0.986375 0.245841 -0.321815 0.215911 -0.197514 0.588778 0.489693 -0.078388 0.953166 -1.235730 0.362209 -0.055062 -0.069397 -0.874670 0.225598 -0.402775 -0.381422 -0.350893 0.731531 -0.203403 -0.273912 -0.463234 0.354791 0.203799 -1.147659 -0.172717 -0.029144 0.509749 -0.880530 0.171487 -0.318135 -0.517737 0.045465 0.416429 0.579069 0.839414 1.066410 0.849658 -0.287633 0.369434 -1.077120 0.189641 0.851591 0.094790 -0.915997 0.781165 -0.795508 -0.152704 0.467883 0.704320 0.728785 0.353153 -0.195604 -0.294731 0.595572 0.418576 0.992368 -0.193406 0.435274 -0.201176 0.230403 0.182106 -0.369047 1.435592 -0.123395 -1.134131 0.689626 0.333424 0.147506 -0.033235 0.392730 -0.724176 -0.106770 -0.570994 0.186011 0.731600 -0.815227 -0.302798 0.273781 -0.802434 1.009035 -0.211460 -0.362867 0.581693 -1.156926 0.079511 1.048642 0.330151 -0.192550 -0.650785 -0.789917 -0.418227 -0.855766 0.304411 0.114506 -0.189858 -0.362055 -0.849858 -0.253989 0.838786 0.348698 0.487434 -1.349412 0.008965 0.508128 0.120649 0.443967 -0.491430 -0.213608 0.072245 -0.153633 0.425632 -0.462768 0.411092 0.990064 -0.770943 0.501752 0.469567 -0.031081 0.249417 0.393078 -1.008084 1.046033 0.135666 0.595383 0.000915 0.372023 -0.565040 0.155546 0.031263 0.440515 -0.059294 0.161293 -0.294576 -0.339798 0.068972 -0.648900 -0.566470 -0.199492 0.284269 0.168856 0.319793 -0.484439 -0.322422 -0.341673 -0.358455 0.214276 0.710445 -0.260977 -0.504776 0.565029 -0.064925 -0.135813 0.255847 0.169685 0.220147 0.709567 -1.019528 -0.052631 -0.027285 0.313230 -0.649565 -0.719973 -0.253719 -0.130801 -0.041494 0.622813 -1.016268 -0.241143 -0.513581 0.127186 -0.735123 0.215814 -0.055970 1.128311 0.446920 -0.395841 0.638522 -0.157692 0.535816 0.087562 -0.087633 -0.004914 0.605664 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = -1.470577 -0.116871 -1.480264 -0.814477 3.017704 -0.382895 -0.497399 1.306201 -0.843322 1.782472 -0.911214 -0.543974 -0.920350 -2.395605 0.311837 0.896044 0.406854 1.064928 -0.599565 0.621144 1.263815 -0.957934 0.625419 -0.326884 -0.428562 -0.410962 -0.382380 0.707305 1.609707 -1.302089 -1.002862 0.126875 2.242788 -0.456796 1.407074 1.141796 0.944217 1.937754 0.398785 -1.712001 -0.241004 1.472087 -1.136105 -1.920502 0.950639 -1.113736 -1.353655 -0.544465 1.408996 -0.583393 0.487048 1.755550 -0.361689 -0.263021 -1.448362 1.012268 1.248719 0.033267 2.532218 0.451908 -0.727348 -0.729419 -1.605693 1.709690 -1.295106 0.746267 -0.451643 -1.867826 -0.551163 0.296222 0.250191 -1.818369 -1.524071 1.194427 0.648658 -1.413472 0.823374 -0.441594 0.811149 -2.266558 -2.306637 0.180820 -1.375775 1.744597 -0.365348 0.433292 0.043827 0.526689 -0.042671 -2.379608 0.197507 1.095274 -1.141315 0.716500 -0.576588 0.972629 -0.431489 0.001069 -1.768329 -0.539029 0.263997 -0.088495 1.092053 -0.682685 1.662789 -0.996716 0.499748 -0.415200 1.047510 0.783030 2.187729 -0.033192 0.626558 1.605308 -0.751156 -0.817022 -1.853289 0.279991 -0.373790 0.777409 -0.679162 1.235386 1.390627 -0.476265 1.863980 -2.703766 1.127304 -0.036662 -0.325313 -1.679189 0.606220 -0.557207 -0.900167 -0.488350 1.650668 -0.723253 -0.608425 -0.614110 0.998264 0.502523 -2.512625 0.644086 -0.268844 1.382543 -1.956680 0.447786 -0.764216 -1.429154 0.271054 0.680308 1.101261 1.661488 2.357610 1.872526 -0.866907 1.123700 -2.249665 1.017198 2.545267 0.467401 -1.969655 1.364459 -1.474742 0.227259 0.966231 1.240368 1.712782 0.587321 -0.097161 -0.060090 1.152402 0.796503 2.223642 -0.304858 1.196421 -1.169098 0.342284 0.538421 -0.058491 2.970841 0.227302 -2.342206 1.711792 1.008538 -0.406796 0.061914 0.560659 -1.055143 -0.254500 -1.438526 0.856319 1.654986 -1.765630 -1.038672 0.019710 -1.679924 1.999884 -0.524003 -0.720411 1.462475 -2.344269 0.251250 1.991997 0.486346 -0.467936 -1.458551 -1.761529 -1.136500 -2.015205 0.883228 0.029287 -0.615036 -0.845229 -1.826964 -0.783166 2.239596 0.660483 0.694099 -3.093567 0.595462 1.010218 0.568544 1.227142 -0.734100 -0.485800 0.517429 -0.363381 0.759076 -0.862789 0.374284 1.831638 -2.042178 0.748077 0.536718 0.387027 0.745782 1.022407 -1.724597 2.287798 0.438474 2.021197 -0.411999 1.033561 -0.843006 0.643520 0.140477 0.641534 -0.096633 0.539967 -0.920903 -0.839652 0.872604 -1.148111 -1.719151 -0.109167 0.776685 0.772100 0.686668 -1.094656 -0.580721 -0.477617 -0.125539 0.562751 1.618388 -0.441122 -1.035752 0.740058 0.195257 -0.117017 0.307999 0.574524 0.481152 1.837413 -2.206900 0.246988 -0.248641 0.683163 -1.167638 -1.578429 -0.278719 -0.174122 -0.157187 2.301120 -2.326527 -0.337936 -1.218304 0.669089 -1.250178 0.631449 -0.522505 2.141627 0.854126 -0.571160 1.593786 -0.048404 1.030175 -0.317079 -0.372445 0.381781 1.230337 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.846579 2.577356 1.519578 -4.150365 9.004315 -2.120258 0.902630 2.861802 -0.769001 4.546711 -4.475127 0.314841 -1.586752 -6.075863 0.811456 -2.905329 -0.125195 4.176525 -1.466223 2.705683 2.985192 -1.542510 1.544526 -2.206247 -1.721772 -5.982238 -1.064781 1.942648 1.991850 -0.594136 1.384658 0.465591 6.304002 -1.257427 3.715734 4.005679 2.508940 6.025899 0.563362 -0.980438 1.766669 2.623451 -2.087394 -6.294942 1.875738 -1.845443 -5.216192 -3.652345 2.960021 -5.770188 0.036701 4.394088 -0.149643 -2.128016 -4.030579 3.936050 4.762261 0.219878 5.356378 1.571143 -2.459870 -0.356502 -4.990712 3.496831 -3.863424 2.121736 -1.071898 -5.422537 -1.475637 3.201250 0.731236 -2.462767 -3.641933 1.353532 2.696388 -3.747885 1.362913 -1.853086 -2.253053 -3.515979 -3.021157 1.334548 -1.577890 4.185995 -0.245496 1.365201 0.184729 1.035690 0.636808 -4.656877 -1.449342 5.399146 -1.674827 -0.263736 -2.552851 3.139863 2.262389 -1.976205 -2.442683 -2.769749 1.158429 -0.445758 2.611147 -0.985725 -1.007985 -4.160320 1.028137 1.968924 0.741089 3.340054 -0.311675 1.890999 0.751381 2.494498 -3.731718 2.315897 -7.307166 1.718126 -2.181448 1.413165 -1.669925 1.664124 2.118671 2.144950 3.365800 -6.113718 5.469744 0.566775 -1.265259 -3.288930 2.146528 0.454685 -1.733431 -1.207498 3.293150 -0.521989 -1.010112 -0.076806 1.784117 0.210702 -1.907842 -1.700596 -0.526532 4.082492 -4.474322 1.764191 -1.427317 -2.430176 0.194661 1.315014 2.504715 2.515899 6.533247 4.658433 -0.897751 2.920479 -5.987850 1.690559 6.822297 1.649985 -3.951444 3.749674 -2.044951 -0.443226 1.768930 3.024950 2.381957 3.291669 -3.445059 -3.240286 0.058433 -0.827627 5.339823 2.882884 0.831052 -6.630234 3.024585 -1.123197 0.549133 7.618818 3.624546 -5.831952 2.018822 4.561609 -5.089131 -3.666107 1.294799 -2.311512 -1.280684 -2.075849 1.963720 3.059979 -3.508511 -4.727319 -0.980266 -4.222411 4.047571 -1.184649 -2.213293 1.395250 -3.884894 -3.644660 6.133702 0.772001 -1.498658 -2.622946 -4.253469 -1.832877 -6.349987 1.658101 1.692230 -2.368669 -2.605571 -3.864307 -0.830204 4.582002 -1.272140 1.293569 -5.990193 -0.892970 3.013391 2.376661 2.092784 -4.482174 -0.956938 -0.048244 -0.407528 0.942670 -0.661957 1.895654 6.099734 -4.120508 2.727484 0.865855 -3.114950 1.963526 5.044084 -4.258056 6.400502 -0.006118 5.718030 0.234195 2.195773 -1.963325 0.914988 0.326760 -2.008076 -0.821943 2.432478 -4.018160 -1.954019 2.399772 -2.928053 -3.670598 1.817888 3.942241 1.212134 0.954341 0.370304 -2.536087 -1.028920 -1.413753 0.562908 3.667329 -1.104052 -4.459473 1.624809 3.265881 -2.467071 -3.538956 1.051603 2.438242 4.213923 -5.474154 3.656489 -0.457957 0.383972 -5.668800 -4.981217 2.458091 -4.008032 -2.986276 2.287723 -6.166948 -2.582922 -3.112951 3.288274 -4.295151 -1.507824 0.750010 5.030357 1.920901 -0.394688 3.787504 -1.186950 2.846003 -0.530178 -0.427962 1.118699 4.363269 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.811280 0.915022 -0.025304 -1.793610 4.491469 -1.421229 0.263339 1.585931 -0.322048 2.097920 -2.098278 0.153605 -0.752253 -3.093101 0.478752 -0.614052 0.289526 2.266628 -0.627400 1.102736 1.399135 -0.736877 0.721617 -0.984235 -0.734625 -2.786866 -0.411126 0.958185 0.903494 -0.681750 0.092424 0.476002 3.300295 -0.508516 1.846504 1.917816 1.200183 2.950406 0.763426 -0.842428 0.888630 1.227933 -0.913878 -3.128925 0.955653 -0.810116 -2.414970 -1.698634 1.446306 -2.479549 0.710242 2.059598 -0.064541 -0.882717 -2.139656 1.700989 2.431626 0.243141 2.598292 0.783093 -1.132670 -0.150688 -2.051333 1.888156 -1.976799 0.727267 -0.463909 -2.580140 -0.682076 1.628025 0.837860 -1.594182 -1.978361 0.535907 1.129747 -1.772317 0.720132 -0.627361 -0.348189 -2.016512 -1.843511 0.640691 -1.136974 2.060958 -0.121571 0.622704 -0.392654 0.377746 0.405541 -2.159096 -0.602572 2.317766 -0.882418 0.132598 -0.882419 1.650467 1.048503 -1.021603 -1.167793 -1.648862 0.496423 -0.450110 1.244496 -0.070444 -0.051203 -1.706568 0.629820 0.705839 0.458251 1.722778 0.472546 0.813561 0.412878 1.080512 -1.442094 0.563577 -3.866004 0.885477 -0.869227 0.513005 -0.776172 0.807659 1.211787 0.733645 1.606248 -3.160668 2.617967 0.348989 -0.393878 -1.450231 1.015929 0.300341 -0.839171 -0.623535 1.753550 -0.357486 -0.443587 0.034111 0.905443 0.186322 -1.349184 -0.614845 -0.451582 2.266857 -2.371298 0.851636 -0.713829 -1.335902 0.156390 0.483350 1.084114 1.319155 3.109251 2.231322 -0.699858 1.337506 -3.150957 0.917142 3.390023 0.816867 -1.891990 1.777813 -0.915849 -0.176227 0.932843 1.736011 1.196182 0.985685 -1.382646 -1.313698 0.175577 -0.225721 2.513911 0.900380 0.557903 -3.061762 1.281132 0.067035 0.364027 4.096995 1.267324 -2.843566 1.063008 2.304333 -1.944228 -1.472100 0.575033 -1.158999 -0.651148 -1.229990 1.130543 1.582497 -1.903023 -2.132374 -0.416219 -1.947083 1.809197 -0.532454 -1.434980 0.796226 -1.994312 -0.955899 3.301828 0.417458 -0.455460 -1.208983 -2.374601 -0.857753 -3.078463 0.720936 0.647781 -1.067056 -0.935831 -1.831788 -0.585863 2.629385 -0.478183 0.574012 -3.114956 -0.147265 1.485431 1.257377 0.726310 -2.337205 -0.481881 0.394964 -0.172007 0.305934 -0.357885 0.871499 2.802096 -2.092521 1.028885 0.964036 -0.878963 1.128135 2.372847 -2.026273 3.004375 -0.116285 2.917341 0.234358 1.063882 -0.986804 0.425832 0.029205 -0.496424 -0.644555 1.071573 -2.016256 -0.942678 1.391206 -1.112907 -2.121645 0.749325 1.960422 0.770449 0.422011 -0.312659 -0.978656 -0.396377 -0.618405 0.531549 1.695917 -0.473277 -2.116974 0.838072 1.677067 -1.145739 -1.320098 0.550212 1.098224 2.125347 -2.617705 1.688474 -0.154156 0.608600 -2.552771 -2.613430 1.201105 -1.619456 -1.224113 1.265466 -3.353868 -1.570878 -1.392629 1.648117 -2.315304 -0.056368 0.170299 2.410982 0.830690 -0.197053 1.821833 -0.477651 1.053160 -0.353658 -0.212902 0.441939 2.184144 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = -1.847130 1.132956 0.302242 -1.697237 4.601222 -1.355724 0.396336 2.232905 -0.777602 2.175631 -2.000379 0.821222 -0.669768 -2.986553 0.491343 -0.614808 0.276465 2.232475 -0.663318 0.993441 1.441117 -0.426258 0.547303 -0.927595 -0.859527 -2.977817 -0.245705 0.915818 0.848185 -0.452346 0.232904 0.619125 3.289530 -0.573339 1.992611 1.999687 1.584013 2.853313 0.772344 -0.615059 0.864622 1.172447 -0.917859 -3.051485 0.965764 -0.850097 -2.457993 -1.503289 1.385613 -2.730913 0.511177 2.008192 0.020359 -0.659933 -1.811690 1.906955 2.243187 -0.344488 2.544077 0.883522 -1.614154 -0.538520 -2.059327 2.274055 -1.852220 0.763775 -0.444071 -2.680001 -0.674086 1.633979 0.765494 -1.577958 -1.704309 0.601537 0.973311 -1.800872 0.778212 -0.552132 -0.351045 -2.011979 -1.751736 0.648243 -0.991759 2.003286 -0.170053 0.554487 -0.415952 0.296340 0.298095 -2.250448 -0.629278 2.580242 -1.155179 0.281518 -1.739193 1.347370 0.961749 -0.819744 -1.045248 -1.784643 0.623263 -0.278482 1.182166 -0.467464 -0.166331 -1.513646 0.459719 0.506671 0.458858 1.948058 -0.171825 0.949600 0.421610 1.191962 -1.270431 0.874082 -3.826741 1.191449 -0.862537 0.597174 -0.811105 0.606581 1.395974 0.910664 1.650482 -3.031623 2.533173 0.255960 -0.429268 -1.645464 1.021074 0.194824 -0.900728 -0.771930 1.850195 -0.262810 -0.496739 -0.098724 1.027558 0.197153 -1.482716 -1.395103 -0.529509 2.153307 -2.801915 0.747512 -0.764518 -1.160655 -0.022029 0.617084 1.180748 1.374750 3.053132 2.204090 -0.470932 1.706896 -3.185240 0.748404 3.297886 1.358621 -1.932311 1.862508 -1.195838 -0.229184 1.021298 1.553327 1.053091 1.200709 -1.566138 -1.423733 0.488989 -0.157516 2.686766 1.187007 0.503239 -3.220553 1.147746 -0.358765 0.143259 3.970358 1.567175 -3.088699 1.199157 2.137738 -1.666360 -1.505128 0.608085 -1.488770 -1.002955 -1.035437 1.028807 1.643818 -1.926184 -1.984296 -0.064343 -1.964871 1.865286 -0.550080 -1.143394 0.695092 -2.068673 -1.134230 3.122244 0.448693 -0.484810 -1.199820 -2.181757 -0.947834 -3.074541 0.668090 0.803444 -0.961966 -1.119748 -1.927202 -0.641130 2.494952 -0.521891 0.599419 -3.493465 -0.287352 1.548421 0.967779 0.738489 -2.786138 -0.492746 0.007028 -0.087668 0.466192 -0.566879 0.946499 2.942906 -2.008804 1.356877 0.842638 -1.136468 0.883361 2.317692 -2.118970 2.976632 -0.031023 2.907294 0.343227 1.028243 -1.232819 0.290810 -0.148404 -0.262550 -0.735212 1.142279 -1.950634 -0.838255 1.129756 -1.437176 -1.939341 0.754086 1.919498 0.649439 0.383040 -0.248448 -1.008714 -0.545706 -1.123521 0.412482 1.756903 -0.820621 -2.171852 0.993601 1.437014 -1.462707 -1.272533 0.522801 1.282714 2.078958 -2.587024 1.569922 -0.040486 0.471945 -2.895169 -2.764110 1.130646 -1.795480 -1.533658 0.964053 -3.283118 -1.537488 -1.350220 1.670057 -2.725746 -0.425622 0.300345 2.539486 0.603750 -0.079168 1.929820 -0.448184 1.230379 -0.267319 0.102913 0.372771 2.185192 +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.522254 0.251002 -0.147115 -0.423270 0.976599 -0.245803 -0.130246 0.501168 0.233221 0.602314 -0.605251 -0.114156 -0.243154 -0.734888 0.069983 0.066593 0.113463 0.581712 -0.250490 0.054141 0.420337 -0.143581 0.235515 -0.338530 -0.158257 -0.560720 -0.088810 0.162074 0.046677 0.046554 -0.171091 0.123402 0.789833 0.028173 0.465933 0.443169 0.269975 0.880704 0.266268 0.233577 0.230369 0.389963 -0.216513 -0.939481 0.426677 -0.400489 -0.383254 -0.526234 0.373907 -0.769693 0.653755 0.469289 0.032603 -0.248956 -0.545310 0.188023 0.527026 0.209805 0.752275 0.248140 -0.410608 -0.051333 -0.462666 0.396808 -0.624945 0.329801 0.147715 -0.764664 -0.288739 0.443059 0.355804 -0.362524 -0.531128 0.055137 0.105369 -0.410675 0.234216 -0.111112 0.119684 -0.321125 -0.527165 0.125747 -0.309306 0.526982 -0.092734 0.091738 -0.326065 0.033009 0.204746 -0.529118 -0.230606 0.496405 -0.192382 0.361762 -0.129098 0.282750 0.169498 -0.253520 -0.249644 -0.194344 0.127874 0.070279 0.283859 0.156219 -0.217477 -0.401541 0.553287 0.277674 -0.007215 0.164514 0.277346 0.150987 0.059737 0.283379 -0.238814 0.223347 -0.923206 0.218098 0.016558 0.100967 -0.150201 0.153176 0.254886 -0.059377 0.387192 -0.713694 0.732930 0.153002 -0.187238 -0.364506 0.327238 0.046945 -0.276231 -0.132349 0.502132 -0.057896 -0.148597 -0.012363 0.146478 -0.114660 -0.560834 -0.239115 -0.232300 0.520655 -0.431686 0.161972 -0.231620 -0.436750 0.021877 0.107607 0.163085 0.271125 0.731566 0.543171 -0.194341 -0.010970 -0.703362 0.287969 0.926532 0.292640 -0.584109 0.343844 -0.153501 0.095809 0.356649 0.248773 0.270566 0.376359 -0.125149 -0.180607 -0.163626 -0.115259 0.667723 0.392920 0.384869 -0.727755 0.248446 0.058076 0.163817 1.063595 0.370050 -0.746622 0.172372 0.607969 -0.534770 -0.241904 0.084146 -0.112300 -0.099458 -0.351167 0.275839 0.412611 -0.638770 -0.646462 -0.102308 -0.587455 0.610899 -0.066285 -0.033293 0.200614 -0.749262 0.104566 0.857297 0.175290 -0.148011 -0.198908 -0.480176 -0.354792 -0.851935 0.176718 0.282592 -0.325103 -0.249208 -0.471134 -0.108808 0.664739 -0.169215 0.018235 -0.507925 -0.028774 0.397946 0.004203 0.175501 -0.623585 -0.198667 0.085551 -0.034529 0.318549 -0.062285 0.164435 0.650924 -0.515873 0.307451 0.596675 0.158380 0.226823 0.584828 -0.389271 0.712795 -0.208367 0.429544 0.048793 0.379851 -0.204434 0.118047 -0.064441 0.023943 -0.164238 0.410224 -0.596461 -0.216501 0.404107 -0.436787 -0.347163 0.290075 0.476319 0.426021 0.049660 -0.077819 -0.283282 -0.076611 -0.182807 0.088517 0.485373 -0.038691 -0.649252 0.071379 0.339284 -0.421961 -0.438745 0.233903 0.200274 0.645485 -0.634626 0.436075 0.062038 -0.057400 -0.689619 -0.406448 0.152793 -0.296275 -0.334437 0.413742 -0.886355 -0.359009 -0.309074 0.496890 -0.538076 0.120465 -0.174845 0.618151 0.280928 0.025025 0.537590 -0.008175 0.319762 0.028854 -0.159734 0.096110 0.662213 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -2.173879 2.631027 2.192813 -2.009756 3.968393 -0.406713 0.210196 1.804250 -2.245357 2.979097 -1.958308 0.511272 -0.771359 -3.356605 0.486704 -2.332097 -0.435181 1.508132 0.302574 2.843202 1.588353 -2.046673 0.293679 -0.693409 -1.450476 -2.863547 -0.428467 1.200256 2.798345 -1.306277 1.471414 0.280810 3.726771 -0.676564 3.298896 2.799478 1.219254 2.928173 1.251482 -2.595368 -0.688695 1.641318 -1.980514 -2.674829 0.658550 -0.982914 -2.116989 -1.141139 1.363318 -1.240505 -1.085762 2.909998 -0.745530 -0.541022 -2.707893 2.307909 1.365269 -0.080232 3.788407 0.468687 -0.935645 -1.460124 -3.333648 2.494398 -1.857642 0.484977 -1.646504 -2.096713 1.148448 0.468893 -0.664644 -1.366256 -1.305633 2.660363 1.306785 -2.932893 0.765992 -1.524502 -3.481017 -2.330022 -2.141570 1.297464 -0.311853 2.781597 0.176770 1.255773 0.097565 1.866865 -0.709538 -4.201019 0.409329 3.052968 -1.729855 -0.864669 -1.131471 3.278566 0.893667 -0.010207 -1.673952 -0.791060 1.397784 -0.711238 1.713304 -2.976261 1.449318 -3.461598 0.227352 -0.018236 0.710120 2.508000 1.235987 2.076619 2.489160 2.995246 -2.602365 -0.257381 -3.470791 0.517698 -1.087645 0.552387 -1.028666 1.958072 -0.077036 1.301560 3.099678 -4.454217 1.850935 0.289851 -0.297502 -2.981107 0.564637 -1.032280 -0.898402 -1.444759 1.988068 -0.172079 -0.627061 -0.968380 0.470994 0.793378 -1.415045 -1.733294 0.812240 3.607173 -3.112592 0.982808 -0.826332 -1.261196 -0.185264 1.536650 2.516003 2.674836 3.651862 2.919274 -0.263966 2.162913 -3.406471 0.196783 3.247809 0.869482 -2.996332 3.459218 -2.528165 -1.467637 0.666508 2.286623 2.524328 1.632781 -3.394333 -3.766111 1.759485 0.469201 3.498382 0.592036 0.135191 -1.793387 3.324670 -0.403004 -1.780300 3.954414 0.409413 -2.616940 0.956621 1.775531 -2.916639 -1.651371 1.905902 -2.744015 0.019529 -1.123422 -0.004326 2.128559 -1.850820 -1.679767 -0.360446 -2.935521 3.355959 -0.716940 -0.488798 0.702224 -2.212922 -3.571338 3.273445 0.370061 -1.139176 -2.581584 -2.435148 -1.366009 -3.041367 1.023524 0.841823 -0.997505 -1.920252 -3.018450 -0.739125 1.592431 0.228620 1.501807 -4.537405 -1.187314 1.905567 1.472796 1.309927 -1.239389 -0.484961 0.273589 -0.186982 0.795742 -0.660126 3.148562 4.078820 -2.195852 2.288066 -0.441030 -2.066848 1.528407 2.144512 -3.778164 4.226377 0.026097 3.015093 0.232795 1.091296 -1.808547 0.246732 0.918765 -1.210604 0.047776 0.469469 -1.032251 -1.175076 -0.023565 -2.015522 -1.921420 -0.263607 1.359340 -0.232951 0.977395 0.381128 -1.053188 -1.451930 -1.310011 0.639477 2.325172 -0.738896 -1.150679 2.223506 0.747489 0.352996 -0.355677 0.338855 1.385427 1.978766 -3.838560 0.802121 -0.860224 0.486451 -2.742599 -3.331024 0.836931 -2.081897 -1.301870 1.528585 -3.737768 -0.054159 -2.188270 0.513337 -2.371302 -0.577493 1.039121 3.898115 0.938195 -1.901700 1.705611 -1.485654 2.123289 0.143710 0.063559 0.178116 2.253718 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = -0.363620 0.154006 -0.208008 -0.240337 0.963283 -0.390894 0.007396 0.740429 -0.167875 0.452820 -0.361450 0.299131 -0.039501 -0.617273 0.169086 0.234512 0.208680 0.475502 -0.108299 0.007915 0.255874 0.001356 0.029792 -0.177018 -0.163228 -0.604954 0.084667 0.181415 0.165335 -0.095981 -0.241600 0.299805 0.730405 -0.128940 0.468258 0.444459 0.449645 0.449525 0.397602 -0.262871 0.251472 0.176529 -0.133808 -0.564676 0.120827 -0.140317 -0.424038 -0.187217 0.271940 -0.425744 0.276315 0.354793 0.046079 -0.025302 -0.402437 0.355969 0.291499 -0.206167 0.525208 0.235421 -0.446207 -0.294680 -0.235449 0.843605 -0.437137 0.006805 -0.094783 -0.561950 -0.121499 0.467172 0.112378 -0.317703 -0.240287 0.052391 0.079695 -0.387531 0.207045 0.035826 0.371324 -0.404668 -0.390857 0.203840 -0.270990 0.434031 -0.003325 0.077160 -0.277745 -0.015954 0.104271 -0.430882 -0.128968 0.429463 -0.359582 0.155999 -0.376927 0.239394 0.281610 -0.178846 -0.050503 -0.507487 0.146621 -0.117319 0.191612 -0.163906 0.216044 -0.164903 0.078778 0.000958 0.145510 0.531571 -0.051449 0.201696 0.094430 0.200686 0.042561 -0.065265 -0.796804 0.347244 -0.098461 0.018337 -0.187906 0.025023 0.486304 0.131757 0.335323 -0.622994 0.471414 0.115723 0.048345 -0.292519 0.191277 0.064245 -0.220821 -0.184112 0.445966 -0.044672 -0.062647 0.017908 0.302538 0.080308 -0.506515 -0.295260 -0.225629 0.442296 -0.703353 0.122574 -0.145215 -0.184303 -0.051628 0.120977 0.215509 0.316707 0.552930 0.403327 -0.148478 0.384136 -0.729847 0.194009 0.687381 0.282663 -0.387000 0.410319 -0.417066 -0.077494 0.219866 0.341165 0.137190 0.179545 -0.218466 -0.158984 0.184813 0.017859 0.579615 0.069999 0.144916 -0.525549 0.116729 -0.050083 0.019242 0.821218 0.231033 -0.739360 0.384621 0.525329 -0.174916 -0.151815 0.152593 -0.460344 -0.260020 -0.317758 0.251263 0.432600 -0.529411 -0.220731 0.079707 -0.358979 0.357243 -0.058754 -0.249205 0.126039 -0.440013 0.159816 0.731550 0.159105 0.061304 -0.198603 -0.465281 -0.360509 -0.661217 0.032632 0.154117 -0.184257 -0.078547 -0.401479 -0.295492 0.616150 -0.125358 0.117579 -0.910840 0.163582 0.366783 0.206009 -0.017922 -0.512681 -0.121572 0.095346 -0.037045 0.048369 -0.350801 0.199268 0.415911 -0.393422 0.343716 0.259370 -0.104763 0.207004 0.320063 -0.435832 0.578445 0.040895 0.392661 0.241904 0.229983 -0.370867 0.001510 -0.197847 0.012770 -0.328009 0.214128 -0.491909 -0.135612 0.309659 -0.208568 -0.472129 0.132943 0.443250 0.262572 -0.000226 -0.206434 -0.107158 -0.111758 -0.430368 0.209736 0.309976 -0.237691 -0.380423 0.278051 0.358405 -0.418107 -0.198208 0.126361 0.267053 0.480216 -0.510116 0.290300 0.111673 0.270085 -0.622315 -0.626683 0.185086 -0.208918 -0.282356 0.111762 -0.830023 -0.462473 -0.198382 0.382274 -0.754106 0.012469 0.060333 0.586226 -0.051873 -0.011374 0.397486 -0.049617 0.093250 -0.034944 0.128847 -0.004164 0.365878 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = -1.964409 1.269191 1.004661 -1.601503 3.526649 -0.031727 0.417958 1.717379 -0.204871 2.096539 -2.249185 -0.598101 -1.176853 -2.320656 0.120855 -1.555715 -0.368190 1.530235 -1.193655 0.726444 1.773036 -0.522235 0.599761 -1.251020 -0.675027 -1.703750 -0.627425 0.360334 0.655676 1.029200 0.352638 -0.046906 2.456368 0.019442 1.710534 1.557824 1.032704 3.191964 -0.567262 1.419034 0.153977 1.781590 -1.181541 -3.277937 1.412829 -1.848685 -1.779278 -1.738553 1.213123 -3.209998 1.112555 1.861194 0.068049 -0.763432 -1.063233 1.099869 1.810371 0.665094 2.595704 1.004494 -1.625501 -0.334826 -2.583740 0.885806 -1.383605 2.160239 0.458650 -2.798669 -1.076289 0.780473 0.702908 -1.072961 -1.693008 0.770308 0.839025 -1.340094 0.930417 -0.890734 -1.701187 -0.663492 -1.548795 0.191187 -0.569983 1.946617 -0.578845 0.160174 -0.260471 0.294505 0.311864 -2.319782 -0.898376 2.833029 -0.685608 0.811480 -2.088616 0.531497 0.121121 -0.020871 -1.592082 -0.268418 0.750449 1.069801 0.973655 -0.942656 -1.904529 -2.257952 1.725222 1.356740 -0.119226 0.665964 0.120372 0.569793 0.260373 1.557335 -1.730861 2.247479 -2.678944 0.709618 -0.586629 1.021468 -0.518973 0.713023 0.538971 0.115276 1.482439 -2.412000 2.388417 0.379832 -1.334267 -1.884262 1.162435 -0.649237 -1.283355 -0.556656 1.588756 0.160649 -0.793931 -0.560082 0.413880 -0.506532 -1.254217 -1.461926 -0.347544 1.163391 -1.568284 0.244553 -0.939792 -1.252408 -0.294149 1.048546 0.959889 0.958314 2.736924 1.991678 -0.203211 0.069720 -2.157194 0.793057 3.335503 1.261680 -2.345751 1.152281 -0.745946 0.511547 1.107101 0.416018 1.067244 2.614438 -1.148625 -1.064963 -0.816479 -0.504295 2.692966 2.863680 1.204443 -2.817496 1.309777 -1.535301 -0.193420 3.042940 2.533855 -2.515505 0.074131 1.336936 -2.336396 -1.337881 0.465540 -0.569716 -0.298033 -0.893367 0.517107 1.214410 -1.831603 -2.520828 -0.051878 -2.409778 2.582406 -0.330840 0.666931 0.311783 -2.638494 -1.494438 2.552826 0.419248 -1.334743 -0.997310 -1.123627 -1.756962 -2.672250 1.039187 1.168881 -0.955933 -2.146616 -1.869247 0.063869 1.858700 -0.682671 0.311291 -1.078551 -0.946391 1.155973 -0.346984 1.851352 -2.506588 -0.863130 -0.986420 -0.156565 1.832900 0.028124 0.703517 3.175342 -1.638960 1.669177 1.322104 -0.694925 0.007877 2.475264 -1.410240 2.532840 -0.530571 1.707431 -0.502744 1.461242 -0.713262 0.269563 0.206579 -0.314864 0.103716 1.844372 -1.401940 -0.530358 0.559816 -2.512462 -0.436141 1.158192 1.080885 0.816881 0.336639 0.568370 -1.724409 -0.515464 -0.866489 -0.377661 2.178435 -0.465052 -2.362858 0.068168 0.160673 -1.382456 -1.579287 0.807913 0.695792 2.153478 -2.218741 1.057232 -0.011223 -1.125790 -2.779893 -1.428067 -0.013909 -1.756365 -2.019367 1.587551 -2.091283 -0.280747 -1.452663 1.341633 -1.952186 -1.383969 -0.252450 2.238545 1.263789 0.113936 1.884546 0.008235 2.264793 0.290917 -0.499275 0.724861 2.294597 +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.463962 0.398097 -0.285382 -0.379354 0.955238 -0.384053 0.006409 0.623396 -0.210384 0.544925 -0.526347 0.281337 -0.045951 -0.845709 0.131914 0.274137 0.181771 0.605548 -0.011014 0.237940 0.341952 -0.293038 0.091881 -0.306423 -0.194432 -0.645758 0.106735 0.184497 0.186791 -0.133009 -0.114959 0.238517 0.809106 0.012232 0.547807 0.547722 0.214005 0.708712 0.599672 -0.303599 0.162200 0.282832 -0.172221 -0.818030 0.265309 -0.218267 -0.357040 -0.452013 0.269152 -0.558711 0.469953 0.449096 0.026535 -0.141636 -0.692739 0.205151 0.610510 -0.079233 0.698968 0.238797 -0.319017 -0.201462 -0.253415 0.586407 -0.542474 -0.107366 0.169046 -0.553014 0.067281 0.472316 0.283921 -0.402342 -0.385007 0.083066 0.062711 -0.499629 0.202966 -0.076655 -0.038949 -0.558196 -0.429239 0.178048 -0.306430 0.585875 -0.021053 0.115984 -0.416684 0.043669 0.160876 -0.523701 -0.181531 0.431090 -0.219424 0.178829 -0.146919 0.653902 0.366382 -0.252990 -0.205696 -0.366549 0.177706 -0.084304 0.255182 -0.010623 0.025730 -0.325616 0.240848 0.016363 -0.006291 0.527320 0.245345 0.312006 0.178442 0.262034 -0.177663 -0.015881 -0.972513 0.266931 0.038629 0.038493 -0.125833 0.057918 0.352446 0.001249 0.380498 -0.756632 0.632043 0.224596 0.087871 -0.461808 0.262803 0.056766 -0.218939 -0.216564 0.467451 -0.038245 -0.042824 0.015270 0.150560 0.032417 -0.603972 -0.403212 -0.172045 0.899279 -0.736834 0.184003 -0.183117 -0.294826 -0.023287 0.046353 0.198793 0.297587 0.687839 0.496728 -0.171500 0.394830 -0.731413 0.193173 0.915747 0.529423 -0.501781 0.444223 -0.248853 -0.107316 0.273947 0.338247 0.290681 0.069963 -0.426126 -0.390357 0.259241 -0.123973 0.636999 0.069077 0.242864 -0.616639 0.498434 0.330259 0.003201 1.051874 0.128743 -0.704988 0.395275 0.612428 -0.393664 -0.125868 0.164435 -0.308957 -0.203468 -0.268321 0.252906 0.361078 -0.587445 -0.471762 -0.196522 -0.503472 0.509156 -0.049623 -0.144833 0.101659 -0.521095 0.229667 0.845997 0.178107 -0.067955 -0.216055 -0.485411 -0.400813 -0.788353 0.091790 0.185274 -0.310176 -0.137301 -0.479889 -0.258889 0.649063 -0.199749 -0.011329 -0.876116 0.024586 0.417239 0.266060 -0.055016 -0.694188 -0.162461 0.248795 0.127663 0.131360 -0.133539 0.424638 0.633934 -0.465820 0.211737 0.472054 0.275869 0.440412 0.510180 -0.521041 0.693794 -0.144417 0.655743 0.204552 0.287697 -0.311843 0.010493 -0.105800 0.069439 -0.257459 0.247016 -0.562502 -0.175839 0.431650 -0.211733 -0.502556 0.219522 0.479029 0.368392 0.021715 -0.164431 -0.097008 -0.100665 -0.365832 0.156982 0.404696 -0.110759 -0.506450 0.206491 0.443029 -0.234002 -0.148821 0.155159 0.305126 0.536041 -0.615866 0.439761 -0.010450 0.164123 -0.597528 -0.690471 0.394408 -0.242598 -0.342925 0.341170 -1.031669 -0.382537 -0.277662 0.439447 -0.875117 0.238549 -0.087125 0.647694 0.017691 -0.021074 0.431467 -0.122127 0.212285 -0.043279 0.101606 -0.039561 0.619788 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -1.698666 1.915074 1.810393 -2.105985 2.611603 -0.722715 -0.011790 1.535342 0.255754 1.823061 -2.236872 -0.008855 -0.639614 -2.544959 0.164251 -1.927009 -0.237692 1.809728 -0.394884 1.958759 1.507911 -1.070539 0.427277 -1.328762 -0.934789 -1.698565 -0.190826 0.598902 0.108886 0.218220 1.692558 0.327034 2.616385 0.544674 2.443144 1.839305 0.469398 3.410720 0.684486 1.152793 0.203367 1.203531 -0.717759 -3.104215 1.343072 -0.950932 -1.211307 -1.916734 0.687663 -2.709996 1.719928 1.930543 -0.018416 -0.940338 -2.072605 0.716420 1.623694 0.692684 2.379067 0.826711 -1.488487 0.099185 -2.396962 0.374474 -1.740388 1.084993 0.692017 -1.696076 0.324864 1.040778 1.233598 -0.941119 -1.739580 0.728206 0.663770 -1.615000 0.909775 -1.019312 -2.233518 -0.715957 -1.030902 0.810875 0.098274 1.753560 -0.298389 0.815539 -0.798248 0.700994 0.009348 -2.226330 -0.477427 1.893345 -0.936808 0.230049 -1.281802 2.189443 0.403273 -0.575736 -1.395413 -0.478722 1.200036 0.043148 1.027010 -0.254894 -1.697700 -2.327186 1.992764 1.395200 -0.589710 0.979897 0.608141 1.843826 1.176852 1.431907 -1.797604 1.929046 -3.116775 0.304875 -0.103715 0.413165 -0.373965 0.665311 -0.352985 0.699501 1.306887 -2.438619 2.567539 0.835803 -0.757169 -1.486879 1.029231 -0.315459 -0.737232 -1.112836 1.555176 0.341579 -0.354291 -0.136123 -0.271559 -0.319768 -0.650326 -2.270793 -0.071084 2.249921 -1.018565 0.613494 -0.667965 -1.179929 -0.194128 0.607751 1.053596 0.730919 2.346996 1.520159 -0.130406 -0.444240 -1.891078 0.102314 2.826892 1.000273 -2.203653 1.931330 -0.353626 -0.314055 0.619179 0.949352 1.328947 1.058151 -2.108864 -2.610611 -0.118179 -0.759331 2.197626 1.599897 0.341877 -2.693340 2.341317 -0.191937 -0.474358 3.659054 1.246670 -1.675866 -1.058196 1.773885 -2.717494 -1.833407 0.703937 -0.368255 -0.042609 -0.227318 0.529594 0.706857 -1.435109 -2.528626 -0.552673 -2.386350 2.120005 -0.340809 0.439463 -0.556424 -2.086311 -2.075369 2.986435 0.108832 -1.340551 -0.746400 -1.421711 -0.254269 -2.764026 0.615541 1.218660 -0.507167 -1.346016 -1.500971 0.127420 1.152959 -1.041175 -0.084054 -1.160044 -1.789742 1.377209 -0.555714 0.522769 -2.237650 -0.694757 -0.134166 0.440610 1.247533 0.595793 1.521477 3.362526 -1.182921 1.486088 1.873399 -0.564120 0.808544 2.603390 -1.929481 3.009338 -1.262933 1.682919 0.012473 1.068844 -0.974783 -0.152362 0.441901 -0.486603 -0.205257 1.132238 -1.271653 -0.520975 -0.059785 -1.669444 -0.606344 1.018865 1.271719 0.320011 0.453388 1.045891 -0.890936 -0.861510 -1.030532 0.172372 1.697698 -0.083921 -1.686249 0.582971 1.163350 -0.458297 -0.941100 0.524746 0.924152 2.095769 -2.409917 1.632487 -0.195284 -0.940248 -2.217948 -1.673725 1.160151 -2.189389 -1.391867 0.714840 -2.685799 -0.560459 -1.255952 1.499035 -1.216028 0.009155 0.186425 2.385166 1.320412 -0.836931 1.473842 -0.867474 1.808373 0.531402 -0.349856 0.121970 2.670709 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.395785 0.176556 -0.321013 -0.275196 1.086031 -0.402056 -0.058126 0.794062 -0.164837 0.564257 -0.389170 0.334634 -0.008707 -0.673071 0.150511 0.350856 0.245604 0.516037 -0.093686 0.015343 0.237969 -0.031753 0.109884 -0.160997 -0.194397 -0.687994 0.093380 0.227525 0.196065 -0.174280 -0.314403 0.280802 0.802972 -0.152026 0.511536 0.474201 0.453467 0.445229 0.535064 -0.361540 0.280745 0.141718 -0.153443 -0.592368 0.118907 -0.133502 -0.496872 -0.232276 0.313518 -0.466352 0.342843 0.412295 -0.001031 -0.070004 -0.481820 0.397132 0.308154 -0.253024 0.628282 0.185339 -0.491754 -0.353214 -0.215587 0.961013 -0.495097 -0.048760 -0.130342 -0.630917 -0.117738 0.543980 0.123619 -0.352015 -0.271820 0.117349 0.100661 -0.475051 0.175085 0.009877 0.454731 -0.491345 -0.431691 0.255330 -0.319167 0.455368 0.076390 0.151558 -0.321482 0.038222 0.092758 -0.533224 -0.055918 0.448013 -0.378126 0.174539 -0.308240 0.313815 0.318074 -0.256570 -0.032965 -0.534486 0.129125 -0.185341 0.234015 -0.171536 0.350488 -0.235367 0.095197 0.011882 0.217831 0.538693 0.031466 0.205573 0.172572 0.268042 0.031136 -0.158292 -0.875997 0.361896 -0.072606 -0.040287 -0.237568 0.063837 0.518227 0.167575 0.433042 -0.741222 0.515627 0.130709 0.046850 -0.355604 0.166640 0.085972 -0.172625 -0.155564 0.464981 -0.139596 -0.032944 0.010471 0.318871 0.074965 -0.642506 -0.254043 -0.218362 0.560867 -0.753375 0.206379 -0.129972 -0.205160 -0.007460 0.144040 0.277368 0.391406 0.642423 0.451453 -0.172451 0.423061 -0.809920 0.226175 0.741722 0.323787 -0.431368 0.515461 -0.477023 -0.134556 0.216059 0.425352 0.186937 0.115539 -0.253866 -0.203168 0.250792 0.070339 0.622319 -0.003106 0.174072 -0.506550 0.147127 0.037427 0.060167 0.914856 0.175804 -0.799724 0.455630 0.628051 -0.196040 -0.115304 0.205500 -0.530871 -0.285391 -0.362097 0.258394 0.495699 -0.583405 -0.241486 0.054636 -0.397254 0.439504 -0.044737 -0.319508 0.195409 -0.476673 0.273090 0.811720 0.197013 0.097025 -0.210525 -0.562486 -0.393703 -0.728371 0.005484 0.184261 -0.237280 -0.003137 -0.462660 -0.364901 0.643047 -0.048368 0.187928 -1.056601 0.229240 0.436824 0.259292 -0.077197 -0.515525 -0.103548 0.171718 -0.069574 0.000000 -0.395090 0.271256 0.382479 -0.439919 0.372229 0.276895 -0.035576 0.297545 0.280485 -0.514764 0.673327 0.061907 0.445887 0.324112 0.261880 -0.373306 0.083438 -0.227241 -0.012834 -0.351421 0.226313 -0.598648 -0.222094 0.403663 -0.163727 -0.623665 0.069424 0.500384 0.286886 0.009377 -0.310145 -0.093634 -0.149708 -0.460693 0.302832 0.294819 -0.259601 -0.381573 0.341658 0.464415 -0.403687 -0.204103 0.152954 0.301785 0.509402 -0.610134 0.343030 0.103811 0.377839 -0.676067 -0.653913 0.239628 -0.180120 -0.261867 0.122134 -1.007735 -0.541514 -0.233528 0.363588 -0.788408 0.115467 0.072835 0.714384 -0.068833 -0.067015 0.428718 -0.097169 0.005937 -0.059319 0.146299 -0.014166 0.390985 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.154576 -0.042833 -0.523695 -0.018400 0.424576 -0.242100 -0.167299 0.375343 0.050495 0.219693 -0.107374 0.019667 0.017234 -0.351651 0.110549 0.554882 0.235017 0.256379 0.000000 -0.110413 0.092325 -0.048689 0.027034 -0.031981 -0.028660 -0.140497 0.057287 0.105436 0.101636 -0.245013 -0.443566 0.211052 0.389763 -0.006431 0.265091 0.195988 0.181986 0.164089 0.430910 -0.301217 0.099833 0.075737 -0.058457 -0.263947 0.089011 -0.063188 -0.101945 -0.077841 0.140056 0.018482 0.459480 0.159101 -0.008105 0.047021 -0.295297 0.005177 0.085197 -0.016251 0.308220 0.101249 -0.161425 -0.133048 0.046793 0.484691 -0.262297 -0.121415 -0.021372 -0.270944 -0.038504 0.228524 0.192486 -0.284181 -0.165806 0.038705 -0.049014 -0.184198 0.133287 0.101000 0.598300 -0.347098 -0.366801 0.122665 -0.311100 0.247506 0.018853 0.036816 -0.332374 -0.022072 0.067271 -0.219480 0.023287 0.003184 -0.204668 0.218188 0.101248 0.170206 0.099554 -0.085931 -0.010453 -0.261299 0.035393 -0.143531 0.091854 0.181194 0.421868 0.055415 0.116542 -0.118415 0.140769 0.207934 0.378778 0.011273 0.120417 0.101653 0.179410 -0.379575 -0.356699 0.157658 0.065334 -0.060641 -0.085852 0.059955 0.324501 -0.117359 0.194420 -0.361143 0.144576 0.097156 0.121248 -0.094123 0.057403 0.012487 -0.115597 -0.079429 0.260955 -0.092825 -0.012197 0.009411 0.140632 0.069193 -0.504625 0.066383 -0.174392 0.310688 -0.349843 0.065682 -0.065215 -0.177265 0.010807 0.020532 0.082595 0.236061 0.245158 0.199204 -0.200622 0.074013 -0.400532 0.166048 0.359312 0.057504 -0.204691 0.203191 -0.227002 -0.021947 0.147903 0.253558 0.125142 -0.178738 0.093545 0.101917 0.165475 0.128176 0.263346 -0.254816 0.189180 -0.066025 -0.038152 0.307706 0.026865 0.519827 -0.171473 -0.352827 0.258189 0.286761 0.083670 0.149140 0.079405 -0.228811 -0.085732 -0.286260 0.186346 0.274696 -0.357349 -0.004712 0.049924 -0.155225 0.175338 -0.002349 -0.188782 0.161653 -0.288832 0.538638 0.471928 0.122403 0.143384 -0.077647 -0.306506 -0.119915 -0.295106 -0.019102 0.000508 -0.080184 0.136314 -0.198355 -0.232583 0.441487 0.047333 0.052522 -0.511596 0.275196 0.186642 0.077313 -0.133284 -0.168535 -0.066323 0.256054 -0.031517 -0.030589 -0.232471 0.076129 0.057677 -0.240386 0.020654 0.331028 0.330462 0.199460 0.018811 -0.205666 0.263567 -0.002873 0.136390 0.164019 0.137084 -0.174722 0.025279 -0.151970 0.205969 -0.230439 0.059610 -0.258904 -0.085900 0.290444 0.030609 -0.380762 -0.031848 0.213587 0.240733 -0.002330 -0.360961 0.042664 -0.012659 -0.143235 0.240128 0.116427 -0.056381 -0.112957 0.160441 0.197212 -0.110757 0.069144 0.088858 0.062162 0.290398 -0.261086 0.076635 0.088808 0.335000 -0.156158 -0.275708 0.035229 0.113920 0.084152 0.173318 -0.549502 -0.298595 -0.074153 0.142896 -0.345581 0.371674 -0.082786 0.319486 -0.027281 -0.073469 0.171355 0.012922 -0.104254 -0.039438 0.023396 -0.036339 0.162762 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -1.486742 0.790280 -0.601628 -1.281160 3.583163 -0.483186 0.194086 1.575627 -1.108031 2.006529 -1.467830 0.445707 -0.471645 -2.521843 0.323395 0.147020 0.282093 1.248403 -0.431432 0.830228 1.046497 -0.976864 0.692900 -0.644954 -0.678506 -1.994715 -0.038964 0.776580 1.364569 -0.355472 -0.299221 0.173260 2.343174 -0.496832 1.390165 1.355286 0.991427 1.940779 0.843374 -1.552411 0.392985 0.980972 -0.870048 -2.243916 0.658119 -0.903873 -1.947850 -1.144009 1.206372 -1.833416 0.053481 1.718486 -0.163054 -0.651869 -1.740525 1.344959 1.803665 -0.529694 2.403770 0.475584 -1.005822 -1.197214 -1.436984 1.925740 -1.341911 0.219327 -0.287881 -2.038300 -0.337711 1.238241 -0.154678 -0.994925 -1.189565 0.775434 0.976009 -1.631905 0.555322 -0.550280 -0.372456 -1.846765 -1.335886 0.483677 -1.048058 1.862307 0.020598 0.576757 0.011494 0.366770 0.156537 -2.154223 -0.236660 1.880078 -0.779000 0.152782 -0.995701 1.557951 0.638890 -0.619015 -1.210957 -0.965685 0.347551 -0.111979 0.975767 -1.191664 0.473506 -1.605965 0.327278 0.186695 0.716796 1.521472 0.630957 0.421324 0.421788 1.280814 -1.220291 0.143802 -2.490965 0.630700 -0.398940 0.479340 -0.877970 0.689643 1.281036 0.419650 1.638752 -2.681716 1.851842 0.340304 -0.212119 -1.674679 0.620855 -0.012938 -0.657435 -0.308238 1.367806 -0.598589 -0.277879 -0.228639 0.865492 0.267819 -1.911287 -0.340066 -0.208267 2.122252 -2.363592 0.708758 -0.515708 -0.916424 0.104577 0.629312 1.125088 1.250692 2.475423 1.790788 -0.508182 1.871107 -2.363410 0.980947 2.934513 1.136781 -1.742685 1.564642 -1.423470 -0.159251 0.709702 1.083227 1.238759 0.891564 -1.220536 -0.899498 0.933259 0.161894 2.245229 0.550302 0.769007 -2.105329 1.169491 -0.049350 0.279053 2.755762 0.959599 -2.459107 1.589943 1.725714 -1.628478 -0.385571 0.603756 -1.306916 -0.588747 -1.136082 0.751282 1.532363 -1.623383 -1.433968 -0.473833 -1.622067 1.902283 -0.364840 -0.678317 0.767121 -1.572057 -0.114209 2.250853 0.439958 -0.339999 -1.079599 -1.660420 -1.621737 -2.415251 0.489832 0.486670 -1.098135 -0.774588 -1.777154 -0.933526 1.933645 -0.027001 0.586319 -3.293725 0.454677 1.273601 1.225398 0.644068 -1.408502 -0.380933 0.377199 -0.233452 0.398063 -0.836397 1.031630 1.781529 -1.730432 1.200453 -0.006090 -0.268118 1.113498 1.327337 -1.697381 2.471561 0.253509 2.446601 0.203618 1.026874 -0.781713 0.589580 -0.196136 -0.486541 -0.428542 0.899376 -1.710033 -0.883375 1.347570 -0.890622 -1.951213 0.352452 1.397026 0.841362 0.356112 -0.539188 -0.645221 -0.534176 -0.878175 0.556005 1.333030 -0.755886 -1.408643 0.729075 1.132158 -0.602467 -0.738840 0.519384 0.993047 1.645722 -2.204816 1.061978 -0.198626 0.593086 -1.987949 -2.056520 0.774702 -0.822082 -1.031496 1.480504 -2.906023 -0.828722 -1.197578 1.021723 -2.206213 -0.040028 0.014075 2.306363 0.216392 -0.222790 1.512262 -0.322471 0.763889 -0.407429 0.259704 0.408537 1.377496 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -7.080494 7.198366 2.798478 -7.340459 15.081726 -2.692999 1.957002 8.397800 -5.097320 9.062514 -8.281897 5.025112 -0.771033 -9.509617 0.603630 -2.930000 -0.773805 7.194482 -1.663677 5.789435 4.999531 -2.749476 2.209646 -4.251319 -4.355722 -9.541847 -0.037605 2.926312 3.416873 -0.624686 2.815555 0.426406 10.757957 -1.832269 8.183801 7.589822 4.430530 9.921223 3.555512 -2.040029 2.029070 3.982688 -3.867408 -10.366659 2.885781 -3.631571 -7.896594 -6.087016 4.128284 -10.586531 3.206397 7.370050 -0.316819 -3.494822 -6.907510 7.009678 7.672132 -3.282901 10.391207 2.174884 -6.483992 -2.393983 -7.600468 9.093579 -6.180799 2.989421 -0.044435 -8.625096 -0.357932 5.376707 3.196200 -5.449182 -5.983709 3.821867 2.722394 -7.972273 2.145222 -4.081562 -4.562138 -6.893850 -3.957671 2.984413 -1.773403 6.890693 0.181250 2.993735 -3.112319 2.925900 0.238083 -9.644624 -2.063344 9.821832 -3.912377 0.634562 -7.545182 6.634990 3.349972 -2.805213 -4.188611 -4.267129 3.168346 0.332400 4.250051 -5.459911 -0.587927 -8.170493 2.018239 3.471983 0.400054 6.622168 -1.469902 5.860176 4.069978 6.088437 -4.656777 4.247420 -12.929389 2.954119 -1.664233 1.765109 -2.716954 2.203027 2.933592 3.824026 7.102291 -10.882478 9.472448 1.285955 -2.481215 -8.009143 3.255971 -0.157645 -2.562056 -2.836485 5.258273 -0.414122 -1.299570 -1.230148 2.292771 -0.163855 -5.972134 -8.445292 0.209198 9.196252 -9.391412 3.126333 -2.344045 -2.783085 -0.382524 3.588870 5.384159 4.403523 10.952514 7.539091 0.362558 5.483764 -9.726507 1.495465 11.277153 7.402817 -8.079892 8.053873 -5.281401 -2.454451 3.183205 4.715785 3.919856 5.292245 -9.249781 -8.934726 3.246256 -1.811411 10.096563 4.969002 1.451786 -10.015082 7.783775 -1.982378 -1.231862 13.366413 5.799199 -10.021844 2.797157 7.307069 -6.282259 -5.420677 3.659792 -5.622952 -3.936822 -1.621813 1.716203 4.502641 -5.711030 -8.263185 -1.545118 -8.234284 9.295872 -1.376347 -2.442679 0.692067 -7.105346 -4.654088 10.124704 1.846721 -3.695453 -3.939391 -5.905303 -4.592975 -11.102505 2.143099 4.560262 -3.605548 -5.247410 -7.766678 -1.570787 5.681106 -2.479208 1.816632 -11.482569 -3.777634 6.025545 2.283626 2.373354 -10.650144 -1.532825 -1.232939 1.382309 2.798763 -1.625743 6.709436 11.932470 -6.147678 5.864298 3.902919 -3.166115 3.322096 8.662418 -8.578495 11.390924 -0.829985 8.954874 1.638819 3.820392 -4.328956 1.100681 -0.182425 -1.375237 -1.143231 4.076080 -6.788960 -3.378084 1.874874 -5.853609 -5.320951 2.851203 5.992622 1.227929 1.332224 0.505338 -3.186892 -3.659894 -6.394096 0.333439 6.337098 -3.394417 -7.405526 3.959411 4.739527 -4.003687 -2.914428 1.658824 5.359958 6.958905 -9.917229 6.250693 -1.074711 -0.167392 -11.584224 -9.134013 4.621044 -6.800346 -7.271408 3.089241 -11.724284 -4.411173 -5.348691 4.842452 -10.145924 -2.959271 1.937255 10.459013 1.975332 -1.474609 6.516338 -3.369477 6.045314 0.377587 1.095698 0.510112 8.163418 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -3.177517 2.403897 1.826620 -2.642944 6.513512 -0.556245 0.217055 3.517514 -1.467311 4.550579 -2.792174 -0.148832 -0.775990 -3.453826 0.283193 -2.149064 -0.662619 2.466192 -0.819998 2.764427 2.221009 -1.006807 0.881022 -0.954275 -2.030705 -2.729175 -1.022671 1.568448 2.784291 -1.434147 0.422421 -0.122947 4.984278 -1.147502 5.189146 3.686411 2.086122 3.559384 0.610348 -1.225611 -0.298037 2.129089 -2.803861 -3.746400 0.646731 -1.649352 -3.788832 -2.032487 2.042474 -2.843235 1.266191 3.844373 -0.970518 -0.524654 -2.127831 3.530790 1.086703 -0.030256 5.283378 0.535711 -2.956994 -0.269997 -4.700508 4.471835 -2.002087 2.379504 -2.163815 -4.386048 -0.186627 0.717926 0.685219 -2.944904 -2.172979 3.933738 1.775294 -3.802617 1.297904 -2.202276 -1.385097 -3.298262 -3.057148 1.837527 -0.858109 3.054713 0.319804 1.865959 -0.950122 2.541057 -1.114243 -6.009199 0.639627 4.553029 -2.980435 -0.074840 -2.789810 1.935461 0.583062 0.325314 -2.066400 -1.451732 1.641775 -0.366094 2.276325 -2.770717 2.202520 -3.990960 0.750420 1.314937 1.443175 2.247235 0.902668 2.310788 3.681269 4.447699 -2.237495 0.955496 -4.191427 1.191938 -2.321651 0.959623 -1.465254 2.679500 1.117935 2.091207 4.493807 -5.564527 2.566055 0.031679 -1.412837 -3.901850 0.778692 -1.795723 -1.366089 -1.686622 2.527476 -0.448717 -0.942368 -1.824307 1.089170 0.357736 -2.483048 -1.855862 0.856317 2.199913 -3.217281 1.343994 -1.044959 -1.513224 -0.262424 2.931385 3.663034 3.673479 5.175606 3.942763 -0.145343 0.271344 -4.683077 0.340040 4.177561 0.177073 -4.121836 4.744796 -3.503645 -1.480724 1.311048 3.158947 2.744027 2.627763 -3.351455 -3.740516 1.079422 1.060323 4.983030 1.780942 0.449905 -2.338815 2.714273 -2.212093 -2.371822 5.787028 2.114432 -4.432033 0.242739 2.221680 -2.790455 -2.498306 2.650376 -3.661215 -0.600001 -1.658143 0.289333 2.695245 -2.370545 -2.448258 1.102487 -4.174061 4.929716 -0.876198 -1.150300 1.026124 -3.834407 -2.853726 5.031272 1.028845 -1.735797 -2.758981 -3.189495 -1.518207 -4.202984 1.247268 1.465431 -0.671161 -2.595182 -4.056912 -0.448169 2.248474 0.563792 2.566758 -4.392788 -1.689824 2.483699 -0.000158 2.211542 -2.819670 -0.604495 -1.285305 -0.666552 1.423653 -1.214158 2.940741 5.763218 -2.740246 3.031233 1.434239 -2.931949 0.707044 2.865655 -5.029099 5.677925 0.268291 2.412145 0.387184 1.753617 -2.230710 0.718568 0.552144 -0.572736 0.096414 1.672489 -1.612979 -1.836365 -0.334055 -3.495715 -2.420993 -0.498117 1.755756 -0.613994 1.336457 -0.167184 -2.781131 -2.061865 -2.904377 0.729023 3.128668 -1.284505 -2.156021 3.134527 0.666778 -0.801825 -0.954085 0.536638 1.559695 3.238677 -5.340864 0.977765 -0.362389 0.800586 -4.441206 -3.298501 -0.007508 -3.187063 -2.033316 1.391374 -4.268938 -1.183818 -2.979921 0.402587 -2.727126 -1.880537 1.739390 5.867962 2.186876 -2.434240 2.551704 -1.906974 3.112090 0.730977 -0.319644 0.356461 3.125038 +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.834939 1.199590 1.023067 -1.007369 1.675656 -0.010512 0.004650 1.139367 -0.725688 1.238675 -1.161587 0.662082 -0.014367 -1.050715 0.141763 -0.534842 -0.364298 0.490449 -0.111284 0.812366 0.570607 -0.457719 0.187377 -0.550735 -0.663947 -1.323596 0.009963 0.372434 0.823583 -0.156338 0.495664 -0.062492 1.311019 -0.369232 1.122942 0.823828 0.954581 1.135432 0.418155 -0.463000 0.094390 0.539322 -0.654705 -0.990074 0.279269 -0.524054 -0.744684 -0.369136 0.475531 -0.882288 0.506266 0.982980 -0.135687 -0.618691 -0.876250 1.199588 0.533456 -0.598128 1.444737 0.183018 -0.753579 -0.772096 -1.307282 1.741016 -0.930770 0.705689 -0.469584 -0.763517 0.051682 0.471524 0.170097 -0.249816 -0.709932 0.802177 0.324251 -1.173569 0.373647 -0.714509 -0.393584 -0.776972 -0.555135 0.721667 -0.002413 0.921232 0.097360 0.506870 -0.263718 0.705948 -0.176527 -1.466391 -0.149284 1.051839 -0.864849 -0.189298 -0.955327 0.862926 0.066689 -0.186059 -0.408058 -0.446239 0.664189 0.068327 0.550562 -1.424206 0.745391 -1.453663 0.520305 0.672098 0.151072 0.838520 0.103806 1.003025 0.841618 1.075606 -0.462389 0.054201 -1.513657 -0.017713 0.155606 0.146809 -0.550893 0.550545 -0.029698 0.614177 1.138771 -1.588283 1.138425 0.139304 -0.489784 -0.736574 0.228483 -0.224778 -0.392783 -0.450190 0.591551 0.099698 -0.266662 -0.187029 0.279824 0.081941 -0.933145 -1.251099 0.237909 1.132547 -1.330817 0.311491 -0.269283 -0.274322 -0.122453 0.815461 0.944125 0.686878 1.148168 0.896475 0.215265 0.469257 -1.168825 0.187783 1.237118 0.431231 -1.267620 1.318887 -1.296447 -0.478335 0.342777 0.701964 0.562513 0.826628 -1.430369 -1.573136 0.683332 -0.159800 1.420494 0.401731 0.032888 -1.129598 1.236629 -0.561968 -0.498153 1.691997 0.528942 -1.073312 -0.190017 0.861486 -0.947924 -0.726003 0.671794 -0.959090 -0.279226 -0.296314 -0.043273 0.749605 -0.581335 -0.970755 -0.161151 -1.191054 1.539556 -0.136244 -0.112363 -0.038980 -0.733471 -1.137181 1.237711 0.103359 -0.602546 -0.807347 -0.687993 -0.568114 -1.355860 0.276481 0.697902 -0.323264 -0.801268 -1.169488 -0.183294 0.413017 -0.290119 0.291199 -1.932687 -0.767537 0.791168 0.142576 0.317213 -0.725569 -0.194833 -0.245135 -0.011077 0.427833 -0.466227 1.251103 1.663045 -0.734934 1.359907 0.367680 -0.947482 0.167229 1.121695 -1.137473 1.629886 -0.252941 0.515689 0.142331 0.554976 -0.840328 0.106647 0.075161 -0.553752 -0.009513 0.256775 -0.643143 -0.417232 -0.418359 -0.987865 -0.599712 0.276698 0.536008 0.082449 0.203444 0.186463 -0.156204 -0.773131 -0.911634 0.100373 0.842686 -0.540335 -0.612817 0.718036 0.417960 -0.346943 -0.270177 0.189563 0.604967 0.984873 -1.415084 0.641371 -0.138826 -0.004925 -1.700791 -1.155777 0.246159 -0.840218 -0.780842 0.411671 -1.584603 -0.411023 -0.768431 0.384746 -0.954427 -0.375308 0.511638 1.489499 0.209077 -0.750114 0.829586 -0.590352 0.936388 0.365189 -0.017230 0.051841 0.719121 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -1.385312 0.622914 -0.327519 -0.968234 3.011717 -0.522040 0.064947 1.326631 -0.558430 1.710186 -1.275113 -0.133391 -0.470147 -2.094714 0.350451 -0.244778 0.297018 1.105251 -0.397517 0.908424 0.995869 -0.731250 0.467201 -0.699562 -0.600615 -1.565259 -0.193777 0.586264 1.236799 -0.425573 -0.281628 0.205230 2.265008 -0.307886 1.687227 1.405891 0.883275 1.682466 0.539290 -1.130499 0.156497 1.013987 -0.951525 -1.873327 0.430332 -0.821062 -1.670044 -0.882595 0.933989 -1.249341 0.119989 1.542880 -0.116290 -0.204961 -1.418258 1.128782 1.410317 0.000903 2.147639 0.439229 -0.806065 -0.545768 -1.457020 1.561748 -1.096961 0.321923 -0.481455 -1.799254 -0.276881 0.770715 -0.002665 -1.132681 -1.082496 0.976893 0.958108 -1.492731 0.686079 -0.426375 -0.251083 -1.724634 -1.391498 0.536432 -0.892624 1.648321 0.012698 0.614046 -0.089824 0.509730 0.150036 -2.100228 -0.155226 1.588163 -0.980282 0.080809 -0.819584 1.229083 0.596350 -0.155803 -1.033676 -0.976852 0.407699 -0.216102 0.853469 -0.788801 0.556149 -1.348515 0.333105 0.061688 0.564386 1.346692 0.514532 0.561738 0.710660 1.344791 -1.127447 0.007614 -1.923505 0.487247 -0.854184 0.472254 -0.697645 0.748202 1.088802 0.528093 1.529168 -2.399735 1.450039 0.346413 -0.128702 -1.463637 0.513935 -0.372860 -0.690714 -0.483301 1.267464 -0.391826 -0.212226 -0.407534 0.738595 0.243399 -1.324968 -0.169817 -0.116708 1.531177 -1.862825 0.552538 -0.475070 -0.840013 -0.075218 0.631489 1.032104 1.241263 2.036734 1.629200 -0.647952 1.170832 -2.001763 0.652931 2.541538 0.431560 -1.599247 1.532381 -1.248747 -0.206611 0.686815 1.019910 1.149737 0.699569 -1.067350 -0.902828 0.510053 0.247302 2.037284 0.484551 0.524287 -1.717972 1.082888 -0.293599 -0.255846 2.638414 0.868858 -2.177237 1.028144 1.427467 -1.633267 -0.549758 0.620616 -1.242676 -0.232850 -1.220826 0.663623 1.195739 -1.344704 -1.072905 -0.011294 -1.591575 1.663246 -0.255606 -0.589413 0.590183 -1.426912 -0.437493 2.306379 0.378777 -0.358138 -1.110962 -1.511645 -1.149102 -2.124307 0.468536 0.161608 -0.749108 -0.688387 -1.633554 -0.600066 1.725777 -0.041030 0.673395 -2.717601 0.162582 0.907753 0.772580 0.703029 -1.148528 -0.376072 0.086709 -0.264904 0.366645 -0.716637 0.844972 1.959305 -1.460470 0.937786 0.008397 -0.766114 0.820136 1.222769 -1.711906 2.109230 0.131971 1.936883 0.148924 0.974657 -0.860294 0.384267 -0.039249 -0.381193 -0.370708 0.828549 -1.255627 -0.768793 1.013197 -0.847505 -1.640295 0.124254 1.026201 0.595686 0.308595 -0.380328 -0.937864 -0.316354 -0.806358 0.513143 1.279373 -0.363217 -1.118162 0.838442 0.848378 -0.442232 -0.703736 0.348219 0.580738 1.548480 -2.089354 0.681474 -0.104511 0.550864 -1.505798 -1.816459 0.419205 -1.039346 -0.761792 1.281810 -2.376496 -0.624926 -1.045137 0.681100 -1.523962 -0.297360 0.235394 2.111016 0.518017 -0.521372 1.247586 -0.417682 0.878123 -0.184059 0.138827 0.184002 1.299861 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.843731 0.676667 -0.308986 -0.854333 2.342305 -0.525258 0.164167 1.432093 -0.718097 1.113611 -1.094245 0.970161 0.148563 -1.345920 0.223502 0.358011 0.173010 0.898585 -0.255872 0.322514 0.506466 -0.175585 0.244175 -0.563864 -0.459652 -1.426964 0.144019 0.404746 0.488672 -0.168006 -0.278255 0.257839 1.400585 -0.419507 0.870016 0.938280 0.928961 0.941669 0.718264 -0.714598 0.621204 0.315937 -0.342282 -1.212597 0.180668 -0.387008 -1.203395 -0.554530 0.567640 -1.260977 0.386913 0.881513 0.047988 -0.419031 -0.922007 1.065327 0.995805 -0.790861 1.250662 0.372378 -0.989447 -0.684634 -0.608742 1.793040 -0.861896 0.189514 -0.098947 -1.193471 -0.263591 1.126115 0.237836 -0.718458 -0.672956 0.208186 0.305794 -1.005994 0.309975 -0.286574 0.408132 -1.030109 -0.469603 0.494055 -0.457984 0.912906 0.164511 0.313638 -0.450382 0.128810 0.196135 -1.062357 -0.363094 1.142977 -0.625949 0.137131 -1.025088 0.728811 0.654145 -0.546388 -0.266890 -0.999505 0.318964 -0.052774 0.435025 -0.771835 0.442384 -0.809845 0.067545 0.331726 0.243508 1.119698 -0.393725 0.557536 0.273768 0.548955 -0.168258 0.087378 -1.772614 0.507879 -0.191269 0.097519 -0.495334 0.023874 0.971468 0.524840 0.817230 -1.376532 1.295252 0.268056 -0.152644 -0.868016 0.397118 0.156227 -0.391018 -0.179678 0.673295 -0.149114 -0.030628 0.055680 0.617215 0.021185 -1.141363 -0.849311 -0.240928 1.204997 -1.613689 0.404482 -0.201622 -0.197503 -0.074133 0.393423 0.635559 0.512703 1.420616 0.861417 -0.096230 1.171611 -1.407857 0.452927 1.612161 0.994513 -0.910901 0.979291 -0.963592 -0.249440 0.373838 0.645353 0.255445 0.533206 -1.010524 -0.713377 0.628365 -0.228564 1.271361 0.263117 0.263149 -1.329103 0.694155 -0.208497 0.113268 1.743293 0.713971 -1.620822 0.896713 1.278542 -0.438703 -0.382688 0.426648 -0.977960 -0.715850 -0.434615 0.406409 0.721131 -0.952028 -0.854878 -0.172383 -0.869393 1.033240 -0.052844 -0.595126 0.161682 -0.737113 0.139018 1.455684 0.310820 -0.127947 -0.368367 -0.830721 -0.852385 -1.503946 0.071306 0.551369 -0.616304 -0.312962 -0.953202 -0.549230 1.092288 -0.425414 0.247450 -2.114106 0.116683 0.823106 0.623337 0.070654 -1.260945 -0.218964 0.003688 0.035565 0.075995 -0.745757 0.687877 1.097977 -0.834427 0.855100 0.322005 -0.322623 0.497224 0.911292 -0.945188 1.403950 0.193447 1.228040 0.512854 0.588683 -0.734656 0.165501 -0.394608 -0.257630 -0.470842 0.567263 -1.250056 -0.425228 0.673905 -0.374882 -1.134461 0.445938 0.975771 0.422320 -0.027169 -0.360391 -0.167811 -0.398371 -0.984286 0.320845 0.642231 -0.691607 -0.963908 0.457741 1.001920 -0.819827 -0.364834 0.294395 0.726195 1.028131 -1.200373 0.925247 0.077047 0.454447 -1.650150 -1.358576 0.630071 -0.559907 -0.788660 0.260949 -1.867554 -1.020123 -0.564391 0.744260 -1.676058 -0.228174 0.271585 1.378961 -0.097132 -0.056700 0.863444 -0.293530 0.318988 -0.112732 0.392297 0.020646 0.743753 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.554240 0.270044 -0.172087 -0.562429 1.423301 -0.411227 -0.146332 1.060543 0.029195 0.795287 -0.574546 0.373180 0.064964 -0.725098 0.088712 0.152346 0.065772 0.690243 -0.258703 0.183049 0.363039 0.087941 0.182084 -0.251102 -0.332420 -0.746378 0.012044 0.312949 0.137127 -0.200321 -0.209951 0.158664 0.961184 -0.227679 0.795937 0.639605 0.624337 0.615914 0.401739 -0.000277 0.359905 0.196057 -0.249929 -0.752585 0.146240 -0.201181 -0.753873 -0.366376 0.397340 -0.804308 0.635799 0.596831 -0.033819 -0.183133 -0.429368 0.633086 0.240429 -0.255301 0.818890 0.207479 -0.805171 -0.174761 -0.548645 1.187627 -0.580457 0.294230 -0.134940 -0.851250 -0.237438 0.617184 0.338665 -0.553793 -0.393823 0.282829 0.170749 -0.618267 0.254472 -0.234148 0.617534 -0.512863 -0.368991 0.365509 -0.260331 0.440215 0.069325 0.299966 -0.464665 0.202515 -0.035551 -0.784123 -0.044113 0.694134 -0.566501 0.203869 -0.627191 0.265793 0.317585 -0.277093 -0.085230 -0.559334 0.232942 -0.099457 0.336178 -0.170963 0.350898 -0.410878 0.191534 0.294110 0.219925 0.516671 -0.233698 0.393587 0.354775 0.490362 0.050280 0.173735 -1.099044 0.385759 -0.261832 0.096756 -0.263670 0.143025 0.622711 0.426308 0.584012 -0.844279 0.743081 0.093698 -0.147728 -0.507468 0.257175 0.010282 -0.204855 -0.220884 0.491995 -0.108057 -0.100135 -0.083111 0.378864 0.001617 -0.683168 -0.519153 -0.134217 0.352335 -0.683817 0.291941 -0.138238 -0.189373 -0.003211 0.319551 0.489238 0.415468 0.972659 0.560180 -0.033659 0.193054 -0.916306 0.159660 0.839752 0.282219 -0.607250 0.756303 -0.578442 -0.215133 0.232719 0.573167 0.209288 0.404664 -0.424284 -0.412163 0.148274 0.020261 0.830926 0.174314 0.117328 -0.669020 0.192154 -0.251226 -0.023206 1.233295 0.453615 -1.019189 0.224100 0.687749 -0.200776 -0.384326 0.320849 -0.555335 -0.344096 -0.255266 0.296171 0.484728 -0.578821 -0.521631 0.157954 -0.615339 0.668598 -0.116169 -0.389536 0.144726 -0.699398 0.138078 1.042962 0.253679 -0.154699 -0.211716 -0.612714 -0.261731 -0.916247 0.056271 0.379437 -0.192893 -0.145234 -0.559733 -0.247926 0.642431 -0.130972 0.255111 -1.061018 -0.076550 0.554094 -0.009732 0.054392 -0.781623 -0.107468 -0.138417 -0.019944 0.129937 -0.392305 0.301638 0.809817 -0.483178 0.515447 0.516240 -0.246102 0.175024 0.558394 -0.754833 1.009151 0.081979 0.346657 0.320940 0.306262 -0.455290 0.108381 -0.223949 -0.030126 -0.245766 0.352206 -0.642802 -0.303357 0.227524 -0.381719 -0.557260 0.141967 0.607728 0.103204 0.116467 -0.228473 -0.291959 -0.324318 -0.679709 0.235929 0.426750 -0.327228 -0.573563 0.448947 0.539998 -0.547416 -0.277476 0.159531 0.413476 0.714936 -0.835509 0.504773 0.149659 0.282151 -0.994165 -0.644502 0.208107 -0.399576 -0.377069 -0.065530 -1.061314 -0.720646 -0.381290 0.426282 -0.783674 -0.115121 0.246192 0.989649 0.240694 -0.200412 0.552800 -0.264734 0.256566 0.100188 0.072852 0.031628 0.574799 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.371752 0.266504 -0.395063 -0.283966 0.965292 -0.344616 -0.020917 0.683177 -0.331411 0.518794 -0.376378 0.404072 0.033067 -0.738809 0.145251 0.417438 0.203588 0.466450 0.004438 0.138922 0.231711 -0.223222 0.085601 -0.183647 -0.193148 -0.649407 0.162277 0.208421 0.289896 -0.194478 -0.240512 0.224808 0.703173 -0.113956 0.441864 0.441759 0.319471 0.437859 0.593702 -0.549184 0.179421 0.161113 -0.144968 -0.580749 0.124477 -0.133076 -0.411592 -0.253069 0.265947 -0.396333 0.245817 0.390247 0.005219 -0.094397 -0.571912 0.319551 0.454621 -0.277480 0.608745 0.169418 -0.316441 -0.402578 -0.160797 0.796887 -0.449008 -0.205702 -0.008825 -0.477147 0.040913 0.479622 0.066870 -0.311050 -0.230984 0.108817 0.097121 -0.479080 0.158797 -0.030815 0.209067 -0.574615 -0.351951 0.204221 -0.320071 0.502476 0.050232 0.141770 -0.280859 0.042917 0.092239 -0.496360 -0.084546 0.365619 -0.280292 0.097949 -0.189007 0.548846 0.340329 -0.239268 -0.116820 -0.436788 0.127503 -0.136923 0.218618 -0.224773 0.324817 -0.254130 0.055071 -0.089711 0.153646 0.574653 0.142208 0.212563 0.142047 0.257285 -0.059071 -0.198761 -0.829574 0.260123 0.014248 0.014333 -0.207668 0.042373 0.477347 0.087369 0.391378 -0.720807 0.502639 0.160918 0.146882 -0.406940 0.167300 0.082111 -0.153159 -0.147214 0.402087 -0.127547 -0.012191 0.015914 0.265361 0.115809 -0.668623 -0.257738 -0.148633 0.773981 -0.817093 0.194647 -0.121461 -0.184534 -0.005901 0.074904 0.247844 0.324817 0.602232 0.421516 -0.148081 0.588491 -0.710517 0.220480 0.780438 0.441288 -0.406519 0.457461 -0.420320 -0.144727 0.196763 0.360087 0.240964 0.030086 -0.366840 -0.278121 0.412788 0.013865 0.577080 -0.100221 0.180257 -0.491425 0.335556 0.233947 0.044107 0.863136 0.079599 -0.707299 0.537499 0.560142 -0.237509 -0.001677 0.180227 -0.442690 -0.236560 -0.295705 0.233110 0.418127 -0.516523 -0.277855 -0.125077 -0.371464 0.425660 -0.047797 -0.245522 0.156327 -0.364737 0.337554 0.701814 0.175475 0.038336 -0.225801 -0.481590 -0.472766 -0.667952 0.018155 0.124409 -0.289566 -0.026456 -0.452503 -0.373614 0.604751 -0.083089 0.073258 -1.111227 0.208047 0.393826 0.379180 -0.100678 -0.484391 -0.092920 0.246189 0.029843 -0.000210 -0.316837 0.380348 0.409794 -0.423798 0.280554 0.192602 0.145788 0.410039 0.312238 -0.486135 0.623026 0.030999 0.591723 0.261331 0.236017 -0.324568 0.068670 -0.183917 -0.007495 -0.278053 0.161587 -0.535144 -0.197439 0.430528 -0.099100 -0.604371 0.098492 0.452121 0.327025 0.015623 -0.279061 -0.014894 -0.130673 -0.414823 0.234043 0.283769 -0.219835 -0.353045 0.277024 0.441177 -0.218237 -0.094001 0.127551 0.313336 0.445029 -0.554117 0.344924 0.019411 0.335769 -0.555551 -0.684246 0.319405 -0.115483 -0.255720 0.250250 -0.998096 -0.414134 -0.224540 0.343801 -0.861128 0.210733 -0.001119 0.632222 -0.126310 -0.047055 0.385133 -0.114106 0.048803 -0.089141 0.197315 -0.034315 0.391253 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -1.270697 1.025975 0.051773 -1.339643 3.256067 -0.640334 0.133505 1.959895 -0.678112 1.718281 -1.604045 1.085153 0.129140 -1.648833 0.244231 0.033659 0.013101 1.287192 -0.487704 0.582299 0.788351 -0.066445 0.373167 -0.776344 -0.752408 -1.916500 -0.030046 0.617280 0.645561 -0.310986 -0.235884 0.240290 2.094199 -0.666993 1.474624 1.422892 1.437934 1.459647 0.746646 -0.587134 0.834239 0.544848 -0.663306 -1.650919 0.271963 -0.603575 -1.728999 -0.785956 0.863015 -1.762661 0.848278 1.353054 -0.026191 -0.647376 -1.150502 1.684596 1.055072 -0.897725 1.908463 0.464822 -1.514761 -0.636836 -1.263041 2.684963 -1.289620 0.763469 -0.413289 -1.807847 -0.490461 1.390714 0.599715 -1.140189 -1.124477 0.573407 0.430955 -1.496926 0.480572 -0.622662 0.648388 -1.339671 -0.781602 0.816386 -0.514620 1.193816 0.205623 0.549600 -0.791992 0.462613 0.103019 -1.723855 -0.411248 1.766465 -1.059536 0.211187 -1.584345 0.753973 0.756265 -0.667297 -0.385538 -1.271956 0.557778 -0.074133 0.722287 -1.064523 0.788170 -1.298250 0.213424 0.792607 0.359189 1.372131 -0.612380 0.997906 0.726424 1.013300 -0.186524 0.234728 -2.488627 0.659522 -0.408535 0.160117 -0.675243 0.314525 1.081647 0.918488 1.353300 -2.003336 1.800506 0.212407 -0.532199 -1.192352 0.546399 0.084045 -0.580807 -0.385002 0.960530 -0.106329 -0.189614 -0.073518 0.824041 -0.028582 -1.402512 -1.328589 -0.168525 1.275996 -1.937215 0.581984 -0.321861 -0.342325 -0.086867 0.819121 1.090131 0.866817 2.119868 1.341100 0.001972 1.051697 -2.030025 0.487704 2.040386 1.061934 -1.455213 1.602762 -1.458331 -0.464056 0.566875 1.094855 0.394499 1.043077 -1.432917 -1.248790 0.560222 -0.261023 1.936840 0.555427 0.241935 -1.742021 0.928410 -0.699429 -0.090366 2.559547 1.119930 -2.202021 0.690320 1.690088 -0.630141 -0.929624 0.763991 -1.421106 -0.928321 -0.555098 0.461455 1.055050 -1.226686 -1.290355 0.008685 -1.410212 1.681492 -0.163997 -0.903890 0.233011 -1.291971 -0.329321 2.135659 0.408724 -0.380971 -0.630757 -1.201036 -0.806831 -2.159136 0.216038 0.922021 -0.664448 -0.656584 -1.432577 -0.512516 1.332777 -0.526526 0.521133 -2.666892 -0.265834 1.206562 0.468713 0.311818 -1.742823 -0.282040 -0.276399 0.014956 0.250568 -0.970737 0.999869 1.900346 -1.186086 1.291041 0.705349 -0.841013 0.415503 1.430527 -1.546301 2.193114 0.204242 1.277168 0.623428 0.793245 -1.078189 0.225490 -0.382739 -0.337885 -0.502145 0.785173 -1.570192 -0.654952 0.485601 -0.843728 -1.339321 0.543157 1.318735 0.251886 0.107735 -0.335119 -0.436204 -0.734817 -1.401083 0.355542 1.038166 -0.899181 -1.335596 0.856247 1.206883 -1.224582 -0.530592 0.361044 0.991333 1.533595 -1.881367 1.234498 0.104070 0.496751 -2.501464 -1.761003 0.632256 -1.003115 -1.112135 0.226502 -2.408331 -1.443652 -0.943264 0.940986 -1.943327 -0.596869 0.622757 2.101106 0.262067 -0.363685 1.243689 -0.576009 0.753943 0.066040 0.253333 0.084314 1.119439 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.351248 1.652376 0.952237 -1.202380 2.781289 -0.145153 0.132749 1.641431 -1.728454 2.044667 -1.288538 0.712319 -0.309370 -2.108833 0.401718 -0.744260 -0.169322 0.793395 0.186360 1.662256 0.953113 -1.321069 0.168020 -0.441100 -0.965647 -2.064700 -0.016328 0.762420 1.937444 -0.672551 0.513218 0.248631 2.399137 -0.425345 1.954489 1.630216 1.144750 1.737798 1.078745 -1.940686 -0.409182 0.966590 -1.252199 -1.493075 0.456265 -0.729621 -1.443885 -0.583449 0.812244 -0.769421 -0.103466 1.872515 -0.435120 -0.378520 -1.748176 1.564661 0.948292 -0.640548 2.480985 0.340426 -0.676803 -1.562847 -1.916042 2.271433 -1.147743 0.150572 -0.936962 -1.301099 0.687889 0.438585 -0.097153 -0.850259 -0.909792 1.689045 0.762130 -1.962947 0.641202 -0.884594 -1.503260 -1.887773 -1.440926 0.958963 -0.400289 1.949081 0.165419 0.801551 -0.294723 1.110298 -0.474290 -2.745149 0.264010 1.821128 -1.274322 -0.428367 -1.262785 2.125539 0.431774 0.024027 -1.134331 -0.770820 0.963999 -0.368382 1.029082 -2.236839 1.328558 -2.219044 0.224873 0.026939 0.668787 1.816207 0.866475 1.294267 1.593433 1.970918 -1.366397 -0.426799 -2.186299 0.323063 -0.138861 0.307595 -0.855349 1.164629 0.195653 0.777897 2.063869 -3.015324 1.221550 0.278646 -0.269557 -1.773420 0.237586 -0.673891 -0.630666 -0.906906 1.305712 -0.178321 -0.367481 -0.563401 0.497378 0.524552 -1.461733 -1.271153 0.413920 2.593265 -2.518770 0.584309 -0.513902 -0.736485 -0.181474 1.143200 1.680292 1.751727 2.152562 1.767111 -0.117124 1.601247 -2.285827 0.324363 2.277028 1.092661 -2.034736 2.299271 -2.009121 -0.881782 0.468777 1.476501 1.542025 0.734217 -2.207712 -2.311212 1.460400 0.404217 2.437689 0.246580 0.199791 -1.285139 2.066074 -0.379992 -1.100328 2.544473 0.372002 -1.627348 0.458604 1.206828 -1.658229 -0.704571 1.237223 -1.961059 -0.235400 -0.817414 0.065652 1.543674 -1.182862 -0.977839 -0.204631 -1.871396 2.273655 -0.373965 -0.208634 0.387217 -1.317533 -1.704105 2.111217 0.121363 -0.644679 -1.613207 -1.566565 -1.133915 -1.983133 0.550733 0.535894 -0.585020 -1.158623 -2.077059 -0.778684 1.159839 0.160682 0.804200 -3.614966 -0.536022 1.290549 0.771143 0.638231 -0.959779 -0.327756 0.224263 -0.056469 0.469509 -0.739218 2.172985 2.445272 -1.443619 1.555146 -0.204054 -0.860087 0.934987 1.268355 -2.306750 2.705883 -0.016605 1.909315 0.235676 0.827593 -1.269657 0.186698 0.316794 -0.605751 -0.144187 0.343731 -0.800718 -0.735200 0.068031 -1.212829 -1.546055 -0.166327 0.836902 -0.043255 0.534486 -0.070370 -0.384472 -1.050598 -1.176291 0.580464 1.442849 -0.703079 -0.522326 1.471553 0.496848 0.180155 0.063364 0.286776 0.966787 1.432587 -2.472990 0.487136 -0.480166 0.565905 -1.916201 -2.454752 0.518987 -1.091580 -1.039522 1.234981 -2.854223 -0.244112 -1.411261 0.333214 -1.894034 -0.175207 0.695819 2.623372 0.209546 -1.303646 1.163698 -0.881863 1.230191 0.009322 0.254823 0.162488 1.243490 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -1.618138 0.567894 -0.949768 -1.361584 4.428706 -0.935240 0.055683 2.631514 -1.261244 2.396715 -1.352376 1.078124 -0.269389 -2.641398 0.363856 0.476237 0.525013 1.697595 -0.519951 0.926807 1.061414 -0.647494 0.704595 -0.427487 -0.975942 -1.997368 0.184009 1.062763 1.316440 -0.686352 -0.618742 0.428182 2.781860 -0.763034 1.992867 1.680757 1.439896 1.889276 1.216117 -1.734736 0.608869 0.725146 -0.795251 -2.280107 0.503775 -0.698668 -2.506728 -0.989970 1.330576 -2.100251 0.490990 1.900151 -0.200356 -0.452458 -1.702355 1.895054 1.510150 -0.959266 2.672724 0.469792 -1.863186 -1.467670 -1.561806 2.942601 -1.382105 0.076432 -0.530112 -2.509783 -0.288287 1.563597 0.039999 -1.521364 -1.220382 1.072794 1.043981 -1.971659 0.683466 -0.526892 0.441702 -2.153663 -1.390157 0.711771 -1.258537 1.854511 0.155178 0.919615 -0.357821 0.459692 -0.182660 -2.628962 0.056190 2.140220 -1.408583 0.437042 -1.868396 1.495853 0.744724 -0.720761 -1.250116 -1.551006 0.466850 -0.391555 1.137214 -1.548567 0.911410 -1.485611 0.215680 0.090622 1.135756 1.858152 0.288587 0.680767 0.870777 1.627712 -0.897930 0.203046 -2.876140 0.942814 -0.693761 0.403109 -1.185919 0.732780 1.807377 0.958297 2.083616 -3.060333 1.978578 0.195897 -0.150289 -1.960825 0.636856 0.047796 -0.554590 -0.553536 1.681034 -0.847072 -0.240428 -0.375970 1.220073 0.475106 -2.460340 -0.611042 -0.237407 1.880347 -2.613653 0.922442 -0.530435 -0.874967 0.144667 0.833624 1.580176 1.664622 2.690145 1.896826 -0.310988 2.021699 -3.026987 0.907040 2.973164 1.264211 -1.926226 2.182065 -1.869073 -0.364429 0.747653 1.553069 1.305421 0.757860 -1.274796 -1.087724 1.348910 0.666551 2.463285 0.443172 0.484308 -2.148457 0.771311 -0.395495 0.167607 3.292007 1.146908 -2.994848 1.686465 1.891326 -1.205832 -0.472684 0.829954 -1.893168 -0.883344 -1.149464 0.903661 1.871102 -1.779543 -1.287973 0.030280 -1.671662 1.986766 -0.522792 -1.195822 0.666793 -1.890863 0.275384 2.730039 0.529984 -0.223067 -1.023083 -2.126440 -1.709476 -2.716913 0.198132 0.558407 -0.942198 -0.648708 -2.025103 -1.265600 2.171223 0.199780 0.860248 -4.029457 0.506283 1.646642 1.067936 0.417935 -1.810288 -0.257650 0.132059 -0.294631 0.271467 -1.254042 1.040463 1.959205 -1.720895 1.579768 0.181706 -0.629854 1.178657 1.253875 -2.287345 2.977051 0.521020 2.462965 0.621064 0.938512 -1.070832 0.645018 -0.522630 -0.090283 -0.728880 1.006134 -1.885997 -1.073738 1.252439 -0.991062 -2.355464 0.056410 1.726682 0.638047 0.493563 -0.792303 -0.734950 -1.005013 -1.715671 0.838828 1.214973 -1.197233 -1.271592 1.396640 1.288855 -0.839146 -0.521547 0.471981 1.318542 1.859519 -2.603458 1.090758 0.032438 0.951187 -2.364967 -2.413594 0.674880 -1.038395 -1.123648 0.994871 -3.430458 -1.511925 -1.132829 1.126213 -2.503355 -0.052462 0.415618 2.988646 0.192404 -0.392703 1.729432 -0.593760 0.645116 -0.432927 0.588329 0.224662 1.547354 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -1.510942 1.130356 -0.529011 -2.096667 3.492406 -1.200426 -0.106043 2.896477 -0.418267 2.065961 -1.467090 0.965902 -0.226878 -3.144223 0.259726 -0.221648 0.589974 2.148217 -0.643213 1.386366 1.319291 -0.345162 0.845803 -0.687864 -1.228562 -2.189333 0.356545 0.994777 0.473578 -0.614814 0.282014 0.343231 3.232215 -0.162783 2.476041 1.824241 1.404225 2.369532 1.914446 -0.648509 0.375913 0.799288 -0.814270 -2.695483 0.529524 -0.602868 -2.047312 -1.382996 1.200094 -2.415331 0.736063 1.862789 0.186031 -0.404238 -1.994314 1.112055 1.266772 -0.661020 2.495744 0.783500 -1.577898 -0.969293 -1.586345 1.865916 -1.904991 0.216652 0.065522 -1.763147 -0.324332 1.616030 0.432963 -1.356616 -1.512312 0.506754 0.929478 -2.036594 0.826165 -0.683761 -0.013893 -1.777253 -1.077487 1.222142 -0.928073 1.981437 0.256502 1.101522 -0.531429 0.717950 -0.148917 -2.566935 0.207279 1.625793 -1.115416 -0.201621 -1.350896 2.138112 0.261414 -0.746985 -1.164309 -1.607330 0.964289 -0.348767 1.165106 -0.764696 0.056326 -1.534674 0.521224 0.761121 0.170704 1.669122 0.527023 1.050534 0.981573 1.716438 -0.903335 0.675481 -3.847357 1.158406 -1.020017 0.416297 -0.934608 0.669514 1.593248 1.151873 1.600548 -2.921799 2.492965 1.082872 -0.451465 -1.815094 1.074374 0.159033 -0.611846 -0.741974 1.795485 -0.664376 -0.048557 -0.410827 1.056648 0.009267 -1.561924 -1.211445 -0.519332 1.787281 -2.530640 0.901852 -0.469615 -0.989072 0.149733 0.782563 1.225566 1.141083 3.142738 1.650303 -0.816683 1.396426 -2.705587 0.355767 3.045122 1.514384 -1.658457 2.232932 -1.195767 -0.690485 0.644609 1.731747 1.130241 0.528851 -1.803409 -1.659775 0.778333 0.202235 2.696324 0.209249 0.541084 -2.378915 1.413862 0.140100 0.293998 3.622191 1.263088 -2.357670 0.776802 1.886349 -1.263098 -1.166588 0.738661 -1.648626 -0.636459 -0.721367 0.717874 1.444386 -1.737807 -1.946116 -0.317291 -1.792942 1.747099 -0.486828 -1.276563 0.302651 -2.195337 0.204740 2.944471 0.462679 -0.731649 -0.993928 -2.146358 -0.925938 -2.961057 0.601887 0.851842 -0.728671 -0.110141 -1.719782 -0.923101 1.740374 -0.162267 0.084901 -3.440360 -0.155204 1.917743 0.556509 0.366221 -2.154471 -0.159114 0.547726 -0.051067 0.602710 -0.783739 1.328822 2.312652 -1.664097 1.167437 0.718137 -0.349374 1.203937 1.808227 -2.436816 3.363597 -0.131335 2.337949 0.712028 0.853611 -1.101696 0.449617 -0.474400 -0.502732 -0.447059 0.955902 -1.997840 -1.096207 0.857899 -0.649203 -1.961325 0.269852 1.938764 -0.051720 0.452926 -0.287469 -0.724018 -0.624427 -1.380394 0.773360 1.625624 -0.720395 -1.876767 1.166168 2.000241 -0.536595 -0.654258 0.393679 1.490977 2.193648 -2.541469 1.475407 -0.082489 0.877238 -2.528398 -2.653498 1.634560 -1.206134 -0.623845 0.359367 -3.143613 -1.594958 -1.227116 1.628105 -2.317851 0.711342 0.782817 2.507277 0.272012 -0.668442 1.230127 -0.665077 1.000655 -0.025809 0.308944 0.210123 2.173915 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = -1.045010 0.851596 -0.074161 -0.957481 2.124972 -0.626010 0.135005 1.344833 -0.304225 1.221155 -1.266325 0.554386 -0.116898 -1.404339 0.109915 0.037730 0.136797 1.244654 -0.306546 0.519024 0.756330 -0.241090 0.273645 -0.701870 -0.471480 -1.259196 -0.027715 0.355184 0.219386 -0.141476 -0.019744 0.249278 1.715546 -0.099024 1.257698 1.163309 0.622474 1.536441 0.754425 -0.020253 0.440798 0.648451 -0.463203 -1.652954 0.498021 -0.571921 -0.947212 -0.970824 0.602656 -1.504566 1.096729 0.964640 0.022292 -0.385819 -1.059230 0.720225 1.125917 -0.234075 1.492335 0.427522 -1.021816 -0.069126 -0.830666 1.349587 -1.042226 0.410903 0.221900 -1.352389 -0.159716 0.870097 0.862398 -1.019975 -0.962078 0.321567 0.162004 -1.029583 0.408871 -0.390434 -0.021811 -1.014264 -0.764900 0.374327 -0.449567 0.983647 -0.067181 0.276737 -0.897602 0.226818 0.233605 -1.199163 -0.404503 1.238489 -0.566230 0.415006 -0.844691 0.831847 0.560860 -0.439739 -0.457181 -0.731184 0.384116 0.003232 0.545914 -0.137524 -0.091737 -0.805820 0.482825 0.471369 -0.050325 0.904114 -0.024844 0.816057 0.542140 0.678032 -0.342555 0.477316 -1.998171 0.581308 -0.182058 0.142325 -0.210315 0.206025 0.598828 0.302275 0.895616 -1.449552 1.377423 0.297721 -0.281201 -1.000851 0.550680 -0.006498 -0.504204 -0.428500 0.846615 0.034740 -0.155930 -0.135541 0.311436 -0.140869 -0.991781 -1.159227 -0.223809 1.245951 -1.251319 0.355151 -0.360311 -0.492388 -0.064220 0.390325 0.537946 0.548817 1.565142 1.054216 -0.137449 0.440493 -1.458709 0.257117 1.688778 1.032991 -1.129477 0.989289 -0.544690 -0.225498 0.626909 0.703387 0.463844 0.553523 -0.966759 -0.933247 0.218267 -0.357784 1.403511 0.600539 0.381063 -1.374528 0.925714 0.033412 -0.107329 2.175259 0.701520 -1.527419 0.412841 1.152353 -0.641794 -0.660284 0.402498 -0.650111 -0.598858 -0.368019 0.404539 0.623687 -1.026454 -1.149531 -0.125740 -1.175881 1.251299 -0.136905 -0.398691 0.141415 -1.262740 -0.066930 1.740487 0.353730 -0.368236 -0.374463 -0.876231 -0.521852 -1.694772 0.261944 0.600833 -0.509791 -0.540710 -1.015665 -0.187729 1.079922 -0.468154 0.160137 -1.426283 -0.411228 0.860645 0.135812 0.171595 -1.743699 -0.345780 -0.033365 0.250009 0.458765 -0.263764 0.770939 1.643692 -0.890606 0.596679 1.132977 0.029609 0.486699 1.236691 -1.159435 1.535791 -0.277526 1.093293 0.323069 0.597209 -0.658312 0.022330 -0.173574 0.170134 -0.383628 0.663177 -1.118764 -0.379832 0.473203 -0.767568 -0.735084 0.526716 0.902725 0.381345 0.111695 -0.133842 -0.495301 -0.355197 -0.878354 0.099037 0.924256 -0.331839 -1.248876 0.447214 0.746920 -0.774383 -0.396151 0.264021 0.648262 1.127590 -1.340555 0.917766 0.018623 0.052326 -1.573754 -1.265785 0.638987 -0.819230 -0.942310 0.445246 -1.766232 -0.884817 -0.695435 0.807246 -1.573964 -0.116256 0.092847 1.446937 0.374788 -0.109493 0.924165 -0.342190 0.778148 0.080067 0.091889 -0.006988 1.289642 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.919769 0.529497 -0.788408 -0.739734 2.499985 -0.780003 0.119480 1.615981 -0.986930 1.271706 -0.870959 1.078654 -0.005839 -1.642955 0.277462 0.772680 0.447152 1.120288 -0.142502 0.409284 0.571863 -0.374377 0.325613 -0.385298 -0.533977 -1.435882 0.323412 0.541700 0.642100 -0.450373 -0.433191 0.442565 1.690654 -0.389038 1.008148 0.995160 0.856089 1.103499 1.161698 -1.317270 0.499361 0.357599 -0.359706 -1.374565 0.325010 -0.333895 -1.211894 -0.602216 0.714065 -1.139170 0.450449 0.978919 0.000480 -0.305462 -1.225015 0.948825 1.133593 -0.878415 1.464214 0.339577 -0.941863 -0.941906 -0.494386 1.928568 -0.990690 -0.278792 -0.102099 -1.251796 -0.081619 1.160195 0.255782 -0.927553 -0.746126 0.294224 0.329273 -1.150956 0.323561 -0.127320 0.505681 -1.410122 -0.817920 0.426444 -0.760799 1.094197 0.115198 0.402959 -0.558673 0.125013 0.162096 -1.247859 -0.165253 1.067875 -0.687955 0.288631 -0.879444 1.063219 0.615203 -0.629215 -0.488058 -1.089561 0.265289 -0.294867 0.575969 -0.737837 0.681884 -0.669487 0.005584 -0.088654 0.456700 1.317834 0.119320 0.496568 0.334475 0.647603 -0.184520 -0.233895 -1.994128 0.639487 -0.059266 0.077336 -0.571893 0.161687 1.116230 0.336541 1.008588 -1.753564 1.261002 0.236184 0.118246 -1.054516 0.405479 0.277756 -0.299250 -0.315775 0.983274 -0.408679 -0.071005 0.003417 0.703929 0.256180 -1.558589 -0.703302 -0.300665 1.632788 -1.908315 0.528309 -0.310440 -0.457086 0.053838 0.264975 0.675790 0.799033 1.491480 1.054949 -0.275617 1.522972 -1.743597 0.527271 1.773806 1.203436 -1.019163 1.134115 -1.062648 -0.313882 0.468809 0.863949 0.568772 0.168811 -0.893207 -0.675412 1.024968 0.105389 1.415117 -0.053188 0.391690 -1.329254 0.614305 0.260033 0.236568 2.001301 0.375800 -1.759661 1.261593 1.313324 -0.397124 -0.177564 0.427331 -1.128290 -0.770674 -0.614050 0.568948 1.008991 -1.160177 -0.726128 -0.200765 -0.887820 1.033042 -0.182204 -0.805235 0.392426 -0.955081 0.532099 1.578293 0.363904 0.026556 -0.530762 -1.203150 -0.982169 -1.651868 0.091121 0.383267 -0.611444 -0.203180 -1.112099 -0.839805 1.360099 -0.104168 0.273574 -2.632403 0.415181 0.977571 0.859817 -0.088774 -1.349666 -0.160184 0.427984 0.079527 0.008433 -0.757257 0.769235 0.991859 -1.080576 0.709401 0.349686 0.091908 0.851858 0.764927 -1.175493 1.540737 0.203441 1.616411 0.541767 0.535749 -0.713054 0.278667 -0.418317 0.061156 -0.617962 0.439590 -1.298099 -0.561713 0.902833 -0.289480 -1.472148 0.202259 1.122623 0.566161 0.099469 -0.639903 -0.033917 -0.418948 -1.021558 0.516770 0.688813 -0.705153 -0.871186 0.699619 1.012718 -0.653220 -0.140957 0.306542 0.854370 1.046525 -1.372680 0.845885 -0.020176 0.712293 -1.462089 -1.652239 0.777138 -0.414452 -0.706248 0.587555 -2.253223 -1.034061 -0.570189 0.865726 -1.940604 0.257735 0.081374 1.535572 -0.239863 -0.028509 1.010034 -0.286518 0.171463 -0.289918 0.472048 0.009542 0.920646 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -1.486975 1.462339 0.245849 -1.303954 2.424473 -0.742212 0.261853 1.302874 -0.359633 1.642537 -1.694836 0.253518 -0.447018 -2.115784 0.094137 -0.503985 0.091104 1.759239 -0.203623 1.182127 1.173604 -0.844235 0.376820 -0.991276 -0.658702 -1.578846 -0.127665 0.435481 0.310654 -0.094931 0.566044 0.275711 2.347257 0.264466 1.853761 1.669254 0.191550 2.515791 1.037074 0.202484 0.155771 1.108640 -0.739193 -2.547939 0.949574 -0.867861 -1.018975 -1.701856 0.709719 -2.070013 1.385610 1.390182 -0.009107 -0.457219 -1.718977 0.474588 1.831375 0.287566 2.122753 0.580110 -0.966302 0.231312 -1.306478 0.777237 -1.359469 0.330779 0.630072 -1.715217 0.216024 0.813468 1.230539 -1.319512 -1.369612 0.602862 0.305529 -1.403344 0.550253 -0.619382 -1.440463 -1.355253 -1.159129 0.348710 -0.505779 1.542669 -0.234143 0.386584 -1.118853 0.410806 0.293944 -1.748182 -0.516112 1.678754 -0.458262 0.493477 -0.683811 1.702536 0.755196 -0.420899 -0.975404 -0.530785 0.580533 0.035287 0.821048 0.148400 -0.918833 -1.327714 0.926637 0.482121 -0.356663 1.070112 0.550249 1.189339 0.864293 1.057869 -1.190882 0.965830 -2.604799 0.676130 -0.216215 0.308655 -0.120823 0.446133 0.263552 0.154711 1.206563 -2.064714 1.808535 0.509718 -0.268714 -1.599216 0.800722 -0.181713 -0.661464 -0.749557 1.221380 0.104588 -0.245208 -0.314201 -0.014805 -0.192390 -0.998891 -1.581301 -0.135900 2.210529 -1.420223 0.480434 -0.594908 -0.941927 -0.107691 0.371030 0.661694 0.796690 2.106821 1.546499 -0.271091 0.349005 -1.835996 0.190205 2.471388 1.507618 -1.624529 1.298760 -0.230971 -0.296181 0.883474 0.833152 1.009529 0.604712 -1.493663 -1.626838 0.126676 -0.519538 1.894833 1.086487 0.583967 -1.878957 1.807664 0.495256 -0.354045 3.008320 0.798728 -1.704276 0.301607 1.356397 -1.586641 -0.960711 0.527352 -0.525930 -0.454360 -0.411234 0.455800 0.689773 -1.330107 -1.762915 -0.444281 -1.776254 1.756452 -0.252493 -0.087492 0.128818 -1.809008 -0.581763 2.335618 0.413081 -0.721707 -0.638575 -1.173328 -0.653357 -2.248753 0.536429 0.693064 -0.730286 -0.955702 -1.412359 -0.050504 1.348457 -0.591383 0.074326 -1.349146 -0.895944 1.077605 0.112129 0.348660 -2.437158 -0.505676 0.139257 0.517133 0.839939 0.288922 1.298721 2.552820 -1.206080 0.513126 1.632310 0.390899 0.938912 1.838791 -1.665286 2.077224 -0.779508 1.812314 0.164070 0.794311 -0.639204 -0.025102 0.145979 0.274968 -0.302409 0.905955 -1.239529 -0.494996 0.673433 -1.206608 -0.750688 0.670070 1.067849 0.554899 0.271481 0.183491 -0.888254 -0.340987 -0.839476 -0.023748 1.421987 -0.022126 -1.684931 0.528766 0.772609 -0.511129 -0.598131 0.324734 0.788062 1.408794 -1.870008 1.151467 -0.233227 -0.317723 -1.704251 -1.660028 1.035234 -1.346128 -1.353174 1.012966 -2.295798 -0.620853 -1.028064 1.038978 -1.929652 0.043607 -0.122100 1.877502 0.727941 -0.207481 1.175996 -0.516860 1.365777 0.107955 -0.032216 -0.000599 2.188564 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.699656 0.420629 -0.494294 -0.536077 1.859408 -0.456292 0.051289 1.312236 -0.644988 0.968609 -0.746391 0.711186 0.041422 -1.113509 0.171667 0.546212 0.279264 0.742924 -0.166578 0.214653 0.424279 -0.191072 0.195056 -0.331843 -0.352034 -1.047812 0.132398 0.343134 0.515639 -0.298114 -0.409645 0.257942 1.285581 -0.275668 0.858373 0.768678 0.728995 0.753097 0.768988 -0.763879 0.333658 0.337215 -0.343778 -0.962082 0.174664 -0.348013 -0.883041 -0.398590 0.498213 -0.833365 0.461736 0.724771 -0.032707 -0.161031 -0.753371 0.738881 0.730442 -0.625626 1.127562 0.256983 -0.810061 -0.630504 -0.416401 1.553901 -0.676280 -0.004111 -0.124144 -0.976347 -0.113824 0.743437 0.252250 -0.724812 -0.498529 0.335469 0.205350 -0.837954 0.301968 -0.154879 0.502920 -1.038020 -0.616046 0.353696 -0.520804 0.784974 0.085373 0.252566 -0.482117 0.129500 0.087143 -1.004192 -0.114033 0.854338 -0.616451 0.223202 -0.736515 0.629404 0.396747 -0.292974 -0.289970 -0.816567 0.221884 -0.130528 0.377483 -0.565446 0.617343 -0.527921 0.048911 0.017970 0.331939 0.952314 0.029380 0.416341 0.383033 0.582548 -0.098091 -0.133913 -1.392623 0.494733 -0.128590 0.061880 -0.367304 0.144724 0.843389 0.300308 0.802526 -1.256146 0.857878 0.203411 -0.025853 -0.786278 0.253716 -0.019776 -0.344764 -0.222380 0.652867 -0.196010 -0.042771 -0.120704 0.500671 0.093434 -1.151239 -0.600343 -0.204677 1.021469 -1.405486 0.298590 -0.195733 -0.248773 -0.041305 0.360765 0.542936 0.588009 1.142273 0.756684 -0.186376 0.936133 -1.251474 0.352748 1.301369 0.789205 -0.805700 0.855091 -0.860051 -0.221803 0.400545 0.643904 0.386826 0.215498 -0.672061 -0.470952 0.668811 0.045225 1.099858 0.046347 0.305547 -0.898322 0.495391 0.025205 -0.021228 1.520359 0.358463 -1.337320 0.812477 0.897399 -0.210230 -0.110800 0.361815 -0.885656 -0.568098 -0.484047 0.344023 0.707821 -0.833831 -0.509645 0.002116 -0.740211 0.906756 -0.083003 -0.491622 0.276216 -0.763975 0.346864 1.262497 0.295561 -0.022698 -0.371636 -0.791428 -0.707415 -1.196509 0.066816 0.303986 -0.436362 -0.181312 -0.854019 -0.509599 0.974943 -0.108925 0.299368 -1.880654 0.197533 0.682804 0.435619 0.019941 -1.045237 -0.203208 0.115867 -0.003972 0.115436 -0.662028 0.605511 0.863385 -0.727917 0.623821 0.357455 -0.027232 0.462599 0.565496 -0.905837 1.149692 0.120659 0.989702 0.393714 0.467564 -0.621406 0.131232 -0.338929 0.060816 -0.434705 0.397225 -0.924551 -0.350677 0.553492 -0.352430 -0.989275 0.163996 0.685230 0.356642 0.061791 -0.485003 -0.187905 -0.321703 -0.815917 0.340765 0.557118 -0.525663 -0.711878 0.498135 0.629660 -0.524154 -0.115168 0.207823 0.541258 0.811994 -1.029286 0.517764 0.066844 0.500919 -1.154435 -1.180237 0.407317 -0.334840 -0.564298 0.375969 -1.594351 -0.770090 -0.489201 0.468147 -1.446121 0.039431 0.151521 1.236811 -0.071716 -0.152897 0.694426 -0.208617 0.255552 -0.104567 0.348109 -0.002812 0.622564 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.700823 0.400916 -0.456411 -0.533906 1.798620 -0.468699 0.052878 1.289220 -0.627593 0.959407 -0.714960 0.703103 0.005335 -1.090615 0.160710 0.492351 0.261610 0.753094 -0.172859 0.234047 0.445906 -0.188137 0.194909 -0.327719 -0.351610 -1.037900 0.147997 0.334816 0.508360 -0.278855 -0.368571 0.243025 1.267710 -0.275634 0.845018 0.758680 0.715732 0.773112 0.727796 -0.732631 0.302415 0.364363 -0.343159 -0.960978 0.189307 -0.342058 -0.845950 -0.394151 0.512059 -0.833527 0.434219 0.712901 -0.033103 -0.163660 -0.734630 0.738295 0.721801 -0.594126 1.111278 0.248569 -0.771225 -0.610957 -0.442754 1.511519 -0.683394 -0.000782 -0.115627 -0.943214 -0.108002 0.697741 0.229341 -0.692894 -0.475651 0.333320 0.207323 -0.826357 0.298704 -0.162770 0.463378 -1.002103 -0.610420 0.315771 -0.505475 0.765705 0.050422 0.251660 -0.459642 0.140971 0.085603 -0.984952 -0.113185 0.840239 -0.603889 0.213390 -0.725519 0.620308 0.385826 -0.288507 -0.295002 -0.770885 0.214273 -0.123274 0.390848 -0.565626 0.576859 -0.499783 0.047584 0.004900 0.322803 0.932278 0.002596 0.418237 0.355196 0.577728 -0.092212 -0.092044 -1.385049 0.480104 -0.132365 0.091700 -0.340806 0.158840 0.820486 0.290885 0.789270 -1.232569 0.848537 0.176668 -0.011993 -0.775387 0.271930 -0.008862 -0.326843 -0.246393 0.661616 -0.190450 -0.070228 -0.132967 0.508535 0.107935 -1.113394 -0.598622 -0.193253 0.968402 -1.362214 0.294903 -0.216848 -0.263783 -0.021151 0.335495 0.515672 0.573229 1.117632 0.764427 -0.170945 0.919225 -1.223386 0.327376 1.254896 0.759003 -0.792358 0.830016 -0.828142 -0.220828 0.407164 0.630589 0.399464 0.259103 -0.651168 -0.477590 0.646624 0.040341 1.084249 0.062533 0.290502 -0.899262 0.478152 0.004820 -0.021801 1.489631 0.374049 -1.314274 0.789748 0.845280 -0.230027 -0.143367 0.332814 -0.832817 -0.534542 -0.468064 0.346704 0.698486 -0.808890 -0.518872 -0.001356 -0.732925 0.885065 -0.106839 -0.474156 0.284807 -0.774108 0.314445 1.209423 0.292228 -0.055982 -0.395009 -0.783509 -0.711249 -1.183029 0.091979 0.276586 -0.413035 -0.212619 -0.841957 -0.487212 0.942767 -0.094573 0.275327 -1.844137 0.157442 0.669487 0.430388 0.041078 -1.021558 -0.196264 0.099945 0.010476 0.142895 -0.614649 0.582751 0.890743 -0.728827 0.601078 0.343844 -0.053069 0.450806 0.589644 -0.912868 1.129656 0.110261 0.948691 0.355113 0.437048 -0.606308 0.130508 -0.309432 0.066971 -0.399422 0.369805 -0.877074 -0.346935 0.504512 -0.386925 -0.921220 0.161975 0.670262 0.347115 0.087398 -0.436693 -0.204481 -0.319732 -0.806434 0.293489 0.571293 -0.491396 -0.709230 0.495310 0.583913 -0.516073 -0.135979 0.194405 0.534511 0.788086 -1.011910 0.506650 0.051380 0.447362 -1.116249 -1.153890 0.394275 -0.339940 -0.576690 0.385962 -1.529248 -0.725035 -0.481354 0.481972 -1.421242 0.015282 0.130590 1.190963 -0.048110 -0.126548 0.705814 -0.210526 0.295906 -0.088950 0.320578 -0.001692 0.637896 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.689848 0.432299 -0.316581 -0.568070 1.783967 -0.332489 0.023083 1.217045 -0.541849 0.986702 -0.745952 0.623854 0.002743 -1.013066 0.119279 0.347852 0.161058 0.668348 -0.221872 0.207580 0.423053 -0.169669 0.238337 -0.325828 -0.362876 -1.066790 0.078961 0.327337 0.502086 -0.185436 -0.301064 0.138388 1.183647 -0.300679 0.778830 0.698846 0.707102 0.743269 0.586297 -0.552933 0.311536 0.349691 -0.364828 -0.922262 0.179883 -0.387958 -0.881854 -0.398761 0.506689 -0.917350 0.357360 0.704274 -0.040337 -0.217918 -0.643914 0.779211 0.674960 -0.555151 1.099639 0.217464 -0.782372 -0.603763 -0.524250 1.434552 -0.650640 0.126271 -0.153474 -0.972225 -0.184348 0.677519 0.152672 -0.587341 -0.442056 0.360428 0.248927 -0.805336 0.270114 -0.229530 0.359597 -0.892935 -0.521760 0.325808 -0.431555 0.719740 0.070940 0.260889 -0.345356 0.170316 0.054258 -0.992850 -0.122509 0.891758 -0.567775 0.180853 -0.725786 0.530271 0.351041 -0.270175 -0.271730 -0.675240 0.202623 -0.038394 0.375808 -0.631008 0.487714 -0.601221 0.097867 0.109449 0.315158 0.813012 -0.082820 0.375454 0.327685 0.610732 -0.183225 0.022244 -1.305094 0.432354 -0.155666 0.118337 -0.371047 0.169214 0.750488 0.349137 0.791305 -1.184014 0.861915 0.146736 -0.109671 -0.767239 0.252124 -0.031098 -0.320120 -0.176432 0.582023 -0.190179 -0.076539 -0.151862 0.482081 0.053693 -1.040815 -0.573207 -0.143148 0.862859 -1.268640 0.292791 -0.186602 -0.224344 -0.027811 0.390132 0.549403 0.534927 1.130319 0.736622 -0.110198 0.842642 -1.155782 0.335017 1.232714 0.696287 -0.785462 0.811670 -0.816094 -0.193065 0.382493 0.571154 0.366821 0.402662 -0.654467 -0.485436 0.533034 0.026700 1.072897 0.195319 0.285591 -0.909802 0.481397 -0.139854 0.003651 1.401186 0.489832 -1.281738 0.712705 0.814272 -0.331134 -0.169545 0.341773 -0.786748 -0.492313 -0.431231 0.283840 0.677607 -0.744660 -0.575586 -0.006240 -0.739469 0.933665 -0.100556 -0.390393 0.284564 -0.739661 0.179577 1.129703 0.283793 -0.103230 -0.379553 -0.712476 -0.740480 -1.145823 0.093432 0.336325 -0.454519 -0.254746 -0.830418 -0.425401 0.854750 -0.099952 0.304176 -1.732715 0.105042 0.645778 0.375570 0.121419 -0.946201 -0.179502 -0.011371 -0.055475 0.178869 -0.597699 0.570063 0.887978 -0.681758 0.690471 0.257928 -0.170075 0.372373 0.593714 -0.856050 1.125671 0.114174 0.862999 0.316273 0.452810 -0.549519 0.175622 -0.289943 -0.064372 -0.320320 0.414416 -0.867121 -0.360065 0.471703 -0.456523 -0.846665 0.179996 0.638483 0.326404 0.086945 -0.356934 -0.278265 -0.331826 -0.758638 0.244309 0.554760 -0.488638 -0.729207 0.451088 0.550361 -0.526374 -0.262679 0.197602 0.516353 0.759626 -0.993556 0.502485 0.062516 0.361117 -1.170288 -1.034724 0.320917 -0.374329 -0.607685 0.344621 -1.446900 -0.677160 -0.495644 0.432702 -1.303381 -0.105720 0.168123 1.184958 0.001879 -0.148294 0.691095 -0.207917 0.335222 -0.053765 0.278160 0.046721 0.592379 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -1.148967 0.555283 -0.490670 -0.957642 2.844790 -0.253291 -0.047080 1.566136 -0.649127 1.636359 -1.177453 0.496628 -0.221853 -1.628125 0.131771 0.367182 0.138775 0.951698 -0.501166 0.358735 0.758511 -0.395318 0.571311 -0.477141 -0.560251 -1.468380 -0.094047 0.551618 0.883331 -0.255940 -0.457200 0.006602 1.776438 -0.457024 1.110962 0.962625 1.023662 1.353779 0.571541 -0.715839 0.389941 0.697452 -0.694471 -1.589373 0.495929 -0.810363 -1.489520 -0.763044 0.919821 -1.536212 0.524195 1.227977 -0.122972 -0.483583 -0.988345 1.153725 1.144160 -0.592411 1.862869 0.305665 -1.122851 -0.863634 -1.086939 1.843862 -1.012377 0.511947 -0.255063 -1.698556 -0.524370 0.929664 0.216765 -0.948475 -0.909604 0.677642 0.562809 -1.229234 0.439651 -0.481167 0.421080 -1.400953 -0.972874 0.416218 -0.773075 1.201816 0.042414 0.440148 -0.272323 0.321322 0.044992 -1.697837 -0.154217 1.454526 -0.781478 0.382475 -1.011690 0.718154 0.280032 -0.380624 -0.748104 -0.777393 0.256754 0.094727 0.681645 -0.889795 0.601976 -1.145784 0.365757 0.298183 0.574682 0.927212 0.236249 0.334249 0.439113 1.095731 -0.612018 0.174630 -1.887358 0.524054 -0.255784 0.357641 -0.668067 0.490384 1.062221 0.405380 1.334259 -1.952573 1.403989 0.146473 -0.404169 -1.261121 0.431720 -0.111274 -0.532069 -0.169050 0.945911 -0.436349 -0.240088 -0.310792 0.717297 0.038235 -1.688090 -0.541042 -0.170838 1.225718 -1.775343 0.491764 -0.352507 -0.582618 0.046692 0.671568 0.931413 0.916266 1.898999 1.288693 -0.234850 1.160628 -1.785932 0.689534 2.071792 0.934422 -1.376309 1.216037 -1.220394 -0.098883 0.654857 0.829306 0.758396 0.809812 -0.811965 -0.587038 0.651083 0.164517 1.757588 0.516639 0.642542 -1.529082 0.646081 -0.274409 0.159543 2.205530 0.865822 -2.005308 1.056386 1.210749 -0.761365 -0.249496 0.491421 -1.048628 -0.626506 -0.776152 0.480204 1.139596 -1.187277 -1.115224 -0.077084 -1.272079 1.623347 -0.229209 -0.517988 0.626961 -1.348048 0.126563 1.721348 0.407678 -0.313195 -0.693063 -1.150465 -1.133666 -1.809621 0.306771 0.544067 -0.782734 -0.580383 -1.375595 -0.578923 1.399232 0.006176 0.514648 -2.492549 0.189230 0.984004 0.496722 0.510746 -1.340815 -0.281348 -0.054733 -0.214701 0.425936 -0.795600 0.718683 1.429054 -1.229324 1.055709 0.313841 -0.226877 0.535429 0.978863 -1.261250 1.858354 0.187724 1.485963 0.212119 0.812876 -0.661613 0.479786 -0.306814 -0.138912 -0.292123 0.775767 -1.315521 -0.674782 0.820083 -0.873606 -1.333507 0.261896 0.976398 0.550625 0.248424 -0.542401 -0.571956 -0.508130 -0.854826 0.335395 0.988985 -0.701231 -1.200708 0.578549 0.719515 -0.714807 -0.541383 0.398188 0.740126 1.287496 -1.651350 0.740257 0.013864 0.397079 -1.778462 -1.408740 0.323954 -0.594438 -0.851524 0.902879 -2.169545 -0.849375 -0.896110 0.663960 -1.668727 -0.151685 0.105507 1.865379 0.276442 -0.236343 1.191549 -0.239048 0.666654 -0.133521 0.182363 0.282117 0.981887 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = -1.652282 1.300804 0.007479 -1.566569 3.870690 -0.569712 0.323040 1.621386 -1.313282 2.348384 -1.630727 0.683538 -0.449353 -2.827791 0.306812 -0.477800 0.139247 1.468388 -0.236683 1.312505 1.102764 -1.243943 0.729178 -0.667346 -0.908620 -2.710145 -0.052745 0.947390 1.514264 -0.404634 0.402584 0.157109 2.678151 -0.546252 1.737853 1.710184 0.876759 2.155751 1.050042 -1.616234 0.352293 0.981347 -1.009390 -2.449128 0.616972 -0.791932 -2.231514 -1.438349 1.243366 -2.186851 -0.479524 1.968001 -0.249736 -0.711809 -2.029263 1.601024 2.026548 -0.612585 2.669251 0.436193 -1.022292 -1.187183 -1.751104 1.951232 -1.486682 -0.063224 -0.460795 -2.187260 0.010024 1.347278 -0.396384 -0.838019 -1.066320 1.051820 1.195483 -1.975618 0.472344 -0.783001 -1.389186 -2.019228 -1.216574 0.647373 -0.805559 2.056868 0.140971 0.777374 0.209111 0.601957 0.013995 -2.515495 -0.172714 2.265140 -0.800065 -0.226165 -0.955432 2.133458 1.041730 -0.723666 -1.167037 -1.030989 0.462881 -0.322200 1.137017 -1.375955 0.245693 -1.987536 0.117579 0.150773 0.691233 1.860678 0.354590 0.782058 0.690196 1.537271 -1.802141 0.407593 -2.847779 0.806508 -0.624050 0.480980 -0.932161 0.770709 1.132380 0.860361 1.892641 -3.022975 2.033587 0.374348 -0.093617 -2.021444 0.622896 -0.006593 -0.573097 -0.466329 1.421261 -0.612802 -0.230177 -0.307291 0.780032 0.351887 -1.611487 -0.683562 -0.009745 2.653369 -2.602590 0.913042 -0.508320 -0.890486 0.082098 0.689257 1.396806 1.443265 2.861359 2.025684 -0.402972 2.221405 -2.641659 0.794370 3.174382 1.331244 -1.837034 1.989851 -1.454752 -0.516672 0.680176 1.316920 1.446994 0.989675 -1.867585 -1.612118 1.055779 0.113322 2.500888 0.730125 0.518742 -2.386711 1.771146 0.001575 0.080826 3.040996 1.070253 -2.587927 1.688115 1.896325 -2.319145 -0.738102 0.830472 -1.536674 -0.628970 -1.013131 0.656578 1.610566 -1.593647 -1.620470 -0.622737 -1.841153 2.096303 -0.464776 -0.673669 0.780442 -1.515478 -0.884050 2.426672 0.483631 -0.437152 -1.284972 -1.849114 -1.668427 -2.667486 0.507095 0.577688 -1.283451 -0.857393 -2.003185 -0.936342 1.839440 -0.056373 0.762007 -3.676610 0.170508 1.480992 1.486662 0.570347 -1.620467 -0.321714 0.400408 -0.190523 0.290467 -0.694286 1.538720 2.207812 -1.786080 1.381221 -0.301020 -0.718035 1.429907 1.526428 -2.180250 2.895275 0.193234 2.804103 0.371717 0.979606 -0.862997 0.589542 -0.054792 -0.914449 -0.423834 0.883897 -1.822680 -1.016187 1.395275 -1.053045 -2.065220 0.302745 1.582189 0.714669 0.459548 -0.239963 -0.896658 -0.626036 -1.015782 0.557440 1.437889 -0.711865 -1.533022 1.047529 1.375170 -0.448221 -1.124972 0.432693 1.250045 1.585519 -2.546323 1.281138 -0.339770 0.588683 -2.230274 -2.418761 1.211187 -1.292293 -1.369938 1.319208 -3.249424 -0.782998 -1.402544 1.025231 -2.464505 -0.230022 0.292308 2.684517 0.206253 -0.435773 1.560408 -0.636423 0.926013 -0.410408 0.400393 0.366978 1.689463 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.184708 0.079792 -0.196008 -0.052615 0.380362 -0.135789 -0.117999 0.428533 -0.087488 0.337777 -0.089938 0.108537 -0.045567 -0.307353 0.035696 0.221048 0.111628 0.196864 0.012589 0.009140 0.110946 -0.115950 0.047316 0.000472 -0.093755 -0.364792 0.075066 0.104771 0.220039 -0.113691 -0.161435 0.081419 0.404892 -0.041865 0.297613 0.203590 0.141694 0.170664 0.341522 -0.221147 -0.033441 0.133770 -0.130342 -0.221694 0.040558 -0.089795 -0.119169 -0.070434 0.160904 -0.119636 0.119443 0.173153 -0.053219 0.057391 -0.210697 0.129443 0.077021 -0.063944 0.357467 0.023998 -0.141686 -0.253264 -0.104407 0.456529 -0.220199 -0.164697 -0.098586 -0.228183 0.070732 0.087355 -0.070586 -0.070297 0.047013 0.192107 0.043707 -0.246832 0.089235 -0.009163 0.115399 -0.278582 -0.243331 0.078950 -0.163510 0.228574 -0.005563 0.079109 -0.123963 0.081797 -0.030541 -0.333907 0.080452 0.157637 -0.204773 0.047849 0.029323 0.250909 0.119788 -0.000848 0.005501 -0.135039 0.030705 -0.095259 0.119179 -0.134862 0.278220 -0.076269 0.047025 -0.167436 0.158115 0.259928 0.160910 0.086376 0.150644 0.244358 -0.038885 -0.148174 -0.343029 0.169994 -0.015764 0.012934 -0.072865 0.109284 0.220916 0.041285 0.285300 -0.398291 0.109604 0.039373 0.132736 -0.224334 0.025822 -0.068281 -0.073798 -0.111621 0.216931 -0.088233 -0.033030 -0.130723 0.131340 0.094643 -0.373286 -0.060609 -0.036675 0.293418 -0.385711 0.071409 -0.064283 -0.099388 0.008071 0.086261 0.145298 0.243736 0.282361 0.227568 -0.083349 0.201489 -0.373419 0.059389 0.315734 0.077730 -0.208544 0.263724 -0.247824 -0.110070 0.143410 0.233559 0.212607 0.032282 -0.087359 -0.110234 0.189849 0.143836 0.317385 -0.074138 0.098248 -0.102910 0.135891 0.110333 -0.070568 0.413430 -0.010575 -0.334637 0.252077 0.131214 -0.165042 0.077715 0.100396 -0.234036 -0.022761 -0.210629 0.067355 0.288608 -0.233358 -0.024949 0.045888 -0.203086 0.271663 -0.061823 -0.034137 0.182332 -0.250990 0.201270 0.321131 0.129736 0.042954 -0.179607 -0.268138 -0.317140 -0.284249 0.010163 -0.023676 -0.123250 0.020991 -0.260836 -0.182207 0.258651 0.114669 0.124637 -0.604292 0.106156 0.189008 0.118377 -0.045771 -0.131189 -0.045158 0.107369 -0.070060 0.067857 -0.177260 0.237153 0.206539 -0.182067 0.185549 0.068850 0.067491 0.188699 0.047014 -0.337975 0.307630 -0.024052 0.098583 0.108186 0.082811 -0.159313 0.039390 -0.084898 0.021795 -0.115131 0.024922 -0.168417 -0.099166 0.150298 -0.172082 -0.222930 -0.083589 0.123920 0.167440 0.078037 -0.152352 -0.141756 -0.067626 -0.221830 0.108835 0.151466 -0.032109 -0.135358 0.230993 0.056202 -0.028760 -0.105428 0.014266 0.102659 0.149454 -0.289948 -0.000159 0.039328 0.183313 -0.173146 -0.296513 0.024429 -0.009676 -0.126453 0.139281 -0.464602 -0.117624 -0.129571 0.041636 -0.424842 0.134795 0.003074 0.377084 -0.030017 -0.122032 0.169725 -0.057337 0.065708 0.016544 0.084346 -0.020753 0.176646 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.656247 0.430562 -0.341423 -0.539009 1.896910 -0.583793 0.070482 1.138919 -0.581800 0.920063 -0.675335 0.606776 -0.021790 -1.274814 0.258451 0.303798 0.309943 0.809200 -0.069267 0.296470 0.403134 -0.273343 0.179832 -0.274055 -0.342310 -1.259229 0.128191 0.406444 0.532752 -0.343082 -0.235722 0.369793 1.320326 -0.286635 0.815498 0.810083 0.658944 0.756331 0.815033 -0.917499 0.355518 0.267264 -0.309444 -0.988622 0.157012 -0.190121 -0.970675 -0.426562 0.505280 -0.773555 0.107020 0.772948 -0.045922 -0.167150 -0.874937 0.765090 0.753408 -0.459677 1.047188 0.281237 -0.634119 -0.629506 -0.465961 1.408796 -0.718360 -0.170137 -0.262403 -0.955134 -0.050299 0.821056 0.000489 -0.533296 -0.451118 0.288995 0.337989 -0.838819 0.257756 -0.099955 0.171998 -0.988100 -0.676353 0.399317 -0.485697 0.847633 0.144109 0.290224 -0.254261 0.124513 0.097819 -0.958097 -0.079818 0.856154 -0.547330 0.033905 -0.523377 0.794766 0.574338 -0.395724 -0.224874 -0.897344 0.229449 -0.320924 0.424247 -0.478583 0.514406 -0.584628 -0.018290 -0.037838 0.374133 1.044052 0.035536 0.363161 0.295193 0.500802 -0.294459 -0.168300 -1.479066 0.520694 -0.223388 0.028416 -0.418809 0.161883 0.802334 0.397417 0.744133 -1.334881 0.873181 0.227170 0.107678 -0.704233 0.257392 0.093096 -0.268749 -0.250182 0.710768 -0.248454 -0.034515 0.003307 0.504173 0.196518 -0.955584 -0.393724 -0.232364 1.191598 -1.422353 0.375964 -0.201847 -0.313518 -0.011453 0.242888 0.538519 0.662460 1.162817 0.796551 -0.269280 1.023576 -1.345726 0.366532 1.335365 0.615646 -0.712468 0.894123 -0.778575 -0.271796 0.287886 0.744537 0.426548 0.192121 -0.695777 -0.529834 0.614428 0.083643 1.044218 0.025377 0.202386 -0.964028 0.512535 0.098505 0.034979 1.505792 0.327066 -1.275106 0.847060 1.007095 -0.552018 -0.233444 0.369753 -0.905219 -0.447459 -0.550793 0.399929 0.768989 -0.863237 -0.479805 -0.070743 -0.676474 0.731532 -0.108770 -0.543532 0.310044 -0.625960 0.092349 1.305962 0.262575 0.066935 -0.458806 -0.959250 -0.697194 -1.174927 0.072021 0.236392 -0.455095 -0.109342 -0.811854 -0.600568 1.056969 -0.081278 0.335198 -1.938071 0.310026 0.693539 0.686412 -0.028815 -0.856671 -0.159008 0.293801 -0.086299 -0.064129 -0.566934 0.594550 0.786242 -0.763897 0.617357 0.104523 -0.239811 0.602254 0.571760 -0.920836 1.178568 0.161064 1.154505 0.448385 0.424516 -0.597474 0.155589 -0.253829 -0.221986 -0.477838 0.339845 -0.930553 -0.386706 0.689361 -0.229356 -1.158975 0.110003 0.797795 0.381566 0.063964 -0.423006 -0.168426 -0.253511 -0.668468 0.462697 0.520200 -0.445173 -0.612146 0.554094 0.792614 -0.451403 -0.331165 0.222830 0.547224 0.784222 -1.056935 0.589476 0.025974 0.653221 -1.080539 -1.257797 0.542770 -0.406415 -0.492827 0.322746 -1.680082 -0.730366 -0.475047 0.536349 -1.382231 0.074072 0.177355 1.184082 -0.131599 -0.150097 0.677128 -0.231546 0.090633 -0.192326 0.307901 0.019659 0.649224 +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.793072 0.580796 -0.286931 -0.694915 2.498724 -0.785234 0.124005 0.964433 -0.853358 1.168225 -0.663372 0.353989 -0.171921 -2.029051 0.408412 -0.059978 0.319900 1.106138 0.175990 0.853016 0.517840 -0.808547 0.220838 -0.131669 -0.414151 -1.811342 -0.009751 0.687289 1.146585 -0.963700 0.068294 0.400147 1.875898 -0.405173 1.177782 1.136208 0.548846 0.962727 1.126250 -1.945578 0.109443 0.448589 -0.579958 -1.224072 0.113762 -0.021269 -1.441645 -0.612563 0.703705 -0.548386 -0.606400 1.195443 -0.277662 -0.131634 -1.339589 1.045016 1.160341 -0.154141 1.391671 0.245950 -0.199963 -0.600176 -0.849983 1.460581 -0.827524 -0.559174 -0.736145 -1.061135 0.276413 0.695718 -0.419300 -0.604656 -0.537814 0.736916 0.801406 -1.154034 0.302872 -0.273373 -0.650358 -1.759438 -1.226351 0.507597 -0.721584 1.280520 0.198999 0.505862 0.156809 0.401633 -0.092383 -1.441857 0.200461 1.094512 -0.632432 -0.473280 -0.019375 1.612815 0.850963 -0.376367 -0.502720 -1.184916 0.261866 -0.784557 0.717383 -0.397082 0.986648 -0.899135 -0.356608 -0.381239 0.708228 1.571122 0.551635 0.396954 0.578572 0.824853 -1.024229 -0.444852 -1.958932 0.565783 -0.635070 0.175134 -0.524025 0.602176 0.914541 0.695119 1.100353 -2.083907 0.896953 0.238134 0.419399 -0.946071 0.220810 -0.033637 -0.267774 -0.435518 0.918814 -0.447493 -0.083412 -0.102398 0.591116 0.574437 -1.021881 0.093961 -0.051835 1.968117 -2.001665 0.590792 -0.259882 -0.571247 0.100300 0.265121 0.866639 1.157344 1.724537 1.238204 -0.529009 1.508069 -1.931743 0.418582 1.783536 0.294040 -0.848721 1.327850 -0.903806 -0.535423 0.256799 1.421250 0.977575 0.011831 -1.039911 -0.883681 1.029661 0.376495 1.332316 -0.249404 0.048882 -1.144689 0.957840 0.566496 -0.193246 2.128800 0.110565 -1.417877 1.136566 1.112640 -1.277522 -0.363648 0.570822 -1.191005 -0.237100 -0.865162 0.560931 1.066189 -0.938821 -0.540681 -0.222804 -0.866523 0.819496 -0.321613 -0.915889 0.653121 -0.614557 -0.445550 1.813154 0.270126 0.063054 -0.966502 -1.608890 -0.698022 -1.326666 0.258542 -0.091284 -0.553311 -0.108443 -1.103451 -0.783704 1.531515 0.226849 0.645494 -2.839683 0.412885 0.816971 1.383010 0.065030 -0.774443 -0.123868 0.682922 -0.213540 -0.357293 -0.458324 0.964939 1.265010 -1.128728 0.552238 -0.441163 -0.601804 1.090417 0.794404 -1.502970 1.683857 0.276488 2.056762 0.392513 0.405330 -0.678978 0.254102 0.031290 -0.598902 -0.441985 0.162949 -0.861272 -0.586672 0.962997 -0.159292 -1.884081 -0.192674 0.947605 0.292614 0.339711 -0.577344 -0.373327 -0.230583 -0.397826 0.702269 0.721849 -0.284012 -0.555519 0.937273 0.977194 0.083416 -0.489333 0.159528 0.630633 0.874291 -1.530680 0.580235 -0.224824 1.285919 -0.948802 -1.896051 0.816613 -0.598517 -0.367388 0.688617 -2.195196 -0.592739 -0.808973 0.418052 -1.650122 0.234257 0.318446 1.548057 0.011944 -0.514666 0.727985 -0.468488 0.131925 -0.403234 0.255010 0.117948 0.879591 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = -1.297896 0.506536 -0.230656 -1.082756 2.675469 -0.594488 0.077124 1.324316 0.176149 1.240190 -1.618409 -0.069609 -0.553864 -1.713977 0.239320 0.040875 0.250870 1.382995 -0.822836 0.148443 1.103616 -0.073784 0.433215 -0.962186 -0.357043 -1.025363 -0.314870 0.331455 0.066172 0.166478 -0.420596 0.356832 1.915464 -0.033250 1.125095 1.096686 0.981892 2.202074 0.209361 0.531811 0.719591 1.008791 -0.513559 -2.307058 1.022493 -1.069731 -1.163869 -1.168167 0.874014 -1.951871 1.585619 1.156640 0.209014 -0.586133 -1.107228 0.647906 1.450321 0.171997 1.708967 0.784939 -1.286311 -0.001706 -1.190158 1.108909 -1.324268 1.253521 0.409428 -1.951611 -0.964118 1.115595 1.204141 -1.337328 -1.632597 -0.014754 0.245349 -0.882923 0.706068 -0.251080 0.586276 -0.917776 -1.265931 0.257645 -0.789088 1.271525 -0.344811 0.075093 -0.837418 -0.094846 0.550851 -1.193498 -0.805890 1.428371 -0.600588 0.980484 -1.166414 0.282556 0.183760 -0.499402 -0.906682 -0.792128 0.398194 0.377312 0.612393 0.197127 -0.609701 -0.905050 1.134096 0.856940 -0.088877 0.560306 0.292006 0.427465 0.071434 0.564393 -0.410354 0.795315 -2.239776 0.570575 -0.125988 0.382749 -0.371647 0.260608 0.808413 -0.104328 0.832554 -1.603852 1.869216 0.330167 -0.752772 -0.876392 0.882980 0.058530 -0.898934 -0.330777 1.228063 0.044959 -0.401244 0.016599 0.479071 -0.342160 -1.288785 -0.904993 -0.641530 0.945734 -1.226396 0.231996 -0.595657 -0.976209 -0.082751 0.406282 0.413332 0.537488 1.784781 1.290431 -0.422521 0.156414 -1.723970 0.748489 2.303857 0.964268 -1.496332 0.721251 -0.514946 0.418962 0.924373 0.496798 0.451590 1.019483 -0.378081 -0.290933 -0.308302 -0.439513 1.702609 1.170418 0.914434 -2.069089 0.418995 -0.306018 0.347189 2.610692 1.192586 -1.998747 0.383651 1.470335 -0.760278 -0.763110 0.164723 -0.424507 -0.621526 -0.754696 0.756639 0.865398 -1.533768 -1.622668 -0.060279 -1.437022 1.431972 -0.153111 -0.313814 0.268554 -1.865268 -0.011379 2.157660 0.306676 -0.466030 -0.383422 -1.019790 -0.594695 -2.127599 0.502200 0.789112 -0.626794 -0.890897 -1.130862 -0.133916 1.745130 -0.685916 -0.003644 -1.179398 -0.198930 0.901216 -0.138774 0.684214 -1.993528 -0.575795 -0.136493 0.060268 0.836182 -0.326735 0.140838 1.776342 -1.308454 0.747329 1.516887 0.086654 0.208717 1.620871 -0.806299 1.691344 -0.336187 1.362387 -0.021159 0.996539 -0.655174 0.129105 -0.220078 0.335187 -0.461294 1.155378 -1.440166 -0.383464 0.777384 -1.089474 -0.814337 0.954388 1.149202 0.796369 0.045116 -0.187631 -0.597372 -0.232849 -0.569450 0.089852 1.289195 -0.432808 -1.721004 0.032573 0.744751 -1.343448 -0.717842 0.586076 0.549610 1.743872 -1.474424 1.081601 0.172263 -0.254226 -1.940268 -1.201762 0.323592 -0.903179 -0.930111 1.003795 -1.901728 -1.022500 -0.775118 1.332593 -1.407930 -0.155335 -0.306081 1.422229 0.734367 0.228994 1.364176 0.083286 1.001802 0.006231 -0.298774 0.301885 1.518030 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.351351 0.448562 -0.343134 -1.087125 2.734658 -0.687483 0.082294 1.393559 0.137644 1.267584 -1.606997 -0.045056 -0.611810 -1.789917 0.255929 0.129740 0.306788 1.477322 -0.842828 0.174891 1.177166 -0.083015 0.441107 -0.975347 -0.360616 -0.992393 -0.274590 0.344319 0.088910 0.110281 -0.484314 0.397815 2.005406 -0.031816 1.179674 1.138550 1.024048 2.301961 0.248389 0.436828 0.696393 1.084181 -0.528291 -2.397677 1.086893 -1.088141 -1.157919 -1.187142 0.936566 -1.949681 1.678637 1.196639 0.208956 -0.579290 -1.166443 0.649249 1.514064 0.170083 1.773401 0.809414 -1.288831 -0.005728 -1.207148 1.168712 -1.386562 1.241602 0.444402 -1.978787 -0.972314 1.106316 1.278338 -1.446273 -1.704007 -0.012829 0.236049 -0.914628 0.746820 -0.231150 0.704304 -1.011958 -1.381794 0.213872 -0.877686 1.321400 -0.403783 0.078133 -0.908863 -0.098326 0.575874 -1.230795 -0.804970 1.421502 -0.640764 1.049035 -1.201750 0.310598 0.156768 -0.514093 -0.986843 -0.824479 0.399185 0.355763 0.662456 0.234323 -0.559007 -0.843415 1.141197 0.800904 -0.062813 0.607799 0.371796 0.436521 0.066577 0.579997 -0.349849 0.765152 -2.335547 0.591219 -0.111497 0.421974 -0.353674 0.300030 0.878167 -0.171020 0.867631 -1.680245 1.903862 0.317507 -0.722143 -0.909113 0.936316 0.074486 -0.914140 -0.394045 1.330118 0.022650 -0.447533 0.001080 0.536654 -0.302035 -1.396140 -0.910363 -0.680010 0.967353 -1.288965 0.241747 -0.657957 -1.062257 -0.047558 0.375500 0.393599 0.582215 1.819310 1.367678 -0.465728 0.201297 -1.799529 0.765180 2.349174 1.002414 -1.552703 0.732755 -0.535628 0.432434 0.985453 0.542871 0.515309 1.001514 -0.334408 -0.262910 -0.244589 -0.415979 1.759626 1.123706 0.958777 -2.119656 0.375418 -0.245385 0.356475 2.725638 1.165061 -2.077060 0.441605 1.473371 -0.699275 -0.771385 0.134442 -0.421107 -0.641319 -0.804112 0.830807 0.914491 -1.604054 -1.648224 -0.051694 -1.475789 1.447127 -0.190012 -0.375936 0.316593 -1.979469 0.087278 2.219837 0.321006 -0.489578 -0.437300 -1.099184 -0.602369 -2.201639 0.550444 0.745251 -0.596470 -0.927732 -1.176879 -0.164524 1.840459 -0.653294 -0.033085 -1.279490 -0.186452 0.932414 -0.123357 0.699250 -2.074304 -0.594500 -0.090342 0.104802 0.874318 -0.320223 0.109895 1.849598 -1.402524 0.689021 1.601393 0.162136 0.243688 1.677462 -0.872040 1.734665 -0.337624 1.431398 -0.054153 0.998876 -0.688904 0.132962 -0.215323 0.463537 -0.476423 1.142372 -1.443859 -0.400407 0.781101 -1.117452 -0.844635 0.952161 1.184125 0.825515 0.084199 -0.237457 -0.581059 -0.240628 -0.597946 0.084117 1.359575 -0.431616 -1.756020 0.057754 0.725555 -1.365429 -0.653753 0.599238 0.568167 1.806450 -1.526675 1.089997 0.152632 -0.246929 -1.927620 -1.278152 0.335557 -0.887214 -0.929729 1.110489 -1.954464 -1.040594 -0.792162 1.406592 -1.486324 -0.091024 -0.374151 1.438895 0.762962 0.272145 1.443186 0.092242 1.047475 -0.009066 -0.318503 0.297640 1.595494 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.348115 0.668229 0.101324 -1.219065 2.650122 -0.559642 0.118925 1.259561 0.282850 1.297064 -1.730929 -0.080080 -0.579474 -1.674526 0.181798 -0.315872 0.101378 1.437017 -0.863624 0.254627 1.149985 -0.057137 0.458772 -1.041660 -0.411833 -1.158980 -0.363721 0.323434 -0.026709 0.307248 -0.150916 0.266494 1.916509 -0.034943 1.152108 1.150510 0.927811 2.329021 0.076548 0.853314 0.744704 1.045050 -0.536234 -2.385376 1.041000 -1.094035 -1.184367 -1.283933 0.876284 -2.181830 1.544863 1.174583 0.221810 -0.681253 -1.084042 0.720908 1.482974 0.262072 1.726112 0.780112 -1.308421 0.145768 -1.357777 0.994366 -1.371532 1.394173 0.442974 -1.985824 -0.972377 1.111913 1.209688 -1.236898 -1.633247 -0.010005 0.274045 -0.911318 0.674757 -0.374316 0.245460 -0.762102 -1.137773 0.259165 -0.635766 1.234600 -0.367239 0.099232 -0.801588 -0.028021 0.546356 -1.199397 -0.885718 1.565837 -0.541983 0.910889 -1.211743 0.287421 0.255816 -0.536985 -0.870829 -0.683286 0.429997 0.451150 0.638094 0.178558 -0.899950 -1.029413 1.195914 1.034092 -0.211948 0.498911 0.053522 0.546653 0.069938 0.583727 -0.534762 1.090086 -2.319524 0.554146 -0.187905 0.423632 -0.330249 0.256191 0.656730 0.013962 0.823011 -1.556328 1.986538 0.304593 -0.844332 -0.906177 0.936919 0.082876 -0.882812 -0.352920 1.179941 0.126724 -0.429095 0.006614 0.416222 -0.413924 -1.071223 -1.079710 -0.567078 0.884530 -1.087945 0.250698 -0.603604 -0.947813 -0.087742 0.426639 0.420328 0.457898 1.852920 1.313874 -0.305891 0.020397 -1.675174 0.662153 2.286202 0.962617 -1.506673 0.736399 -0.402482 0.381299 0.921800 0.454446 0.416430 1.253790 -0.520912 -0.496028 -0.502533 -0.582722 1.722396 1.414145 0.834618 -2.183482 0.559670 -0.471649 0.325059 2.610753 1.392949 -1.968343 0.205834 1.464359 -0.980085 -0.988085 0.174871 -0.316159 -0.584956 -0.628550 0.693501 0.789327 -1.455664 -1.798464 -0.109412 -1.504971 1.490204 -0.178890 -0.228907 0.196619 -1.879183 -0.327690 2.118506 0.304497 -0.602026 -0.379830 -0.953723 -0.575426 -2.185098 0.541908 0.889597 -0.652038 -1.018810 -1.125716 0.009609 1.603872 -0.796015 -0.029018 -0.969913 -0.453091 0.913169 -0.207717 0.756360 -2.068615 -0.567037 -0.288496 0.099630 0.921089 -0.179579 0.197914 1.975374 -1.261596 0.812686 1.549918 -0.107978 0.152598 1.799165 -0.844104 1.748959 -0.420817 1.271035 -0.055978 0.972724 -0.617807 0.113014 -0.142090 0.192481 -0.366496 1.195750 -1.431812 -0.387370 0.655602 -1.241283 -0.617685 1.053585 1.170033 0.732714 0.065974 0.054012 -0.730272 -0.259623 -0.586138 -0.056421 1.336473 -0.366875 -1.835813 0.013706 0.743395 -1.403451 -0.917806 0.558910 0.584233 1.719989 -1.496358 1.186941 0.149920 -0.466890 -2.063595 -1.129526 0.367136 -1.085701 -1.093000 0.895054 -1.797518 -0.983211 -0.810597 1.377710 -1.352402 -0.373458 -0.241923 1.413526 0.846999 0.241154 1.380831 0.011544 1.171031 0.095161 -0.366781 0.313424 1.628191 +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*) = -2.091670 1.238000 0.413611 -2.038659 3.971180 -0.961197 0.271406 1.879837 0.507399 2.019258 -2.731895 0.042597 -0.753643 -2.400828 0.173465 -0.742315 0.004111 2.386854 -1.290472 0.627732 1.752212 0.030848 0.702890 -1.654988 -0.733597 -1.767821 -0.580097 0.513120 -0.265597 0.380903 0.061826 0.327250 2.972990 -0.076620 1.943636 1.915947 1.309832 3.616869 0.149895 1.551442 1.205623 1.537423 -0.817866 -3.633678 1.513781 -1.543692 -1.816050 -2.114669 1.290808 -3.476866 2.604993 1.792318 0.312576 -1.124507 -1.648422 1.194243 2.230289 0.377808 2.635096 1.113328 -2.089749 0.646061 -2.135318 1.579432 -2.126475 2.212037 0.723692 -3.006784 -1.371636 1.698677 2.187201 -2.046771 -2.596772 0.043544 0.336435 -1.476102 0.943188 -0.752441 0.223359 -1.137454 -1.569272 0.452832 -0.804558 1.722662 -0.520738 0.251128 -1.513400 0.125301 0.776092 -1.834285 -1.358399 2.488963 -0.806201 1.337739 -1.935263 0.471224 0.521340 -0.924780 -1.239190 -1.017679 0.707506 0.622780 1.020463 0.437000 -1.445918 -1.575913 1.725455 1.806758 -0.485605 0.753216 -0.221783 1.166401 0.351735 0.902746 -0.714706 1.869841 -3.686543 0.862710 -0.384599 0.584510 -0.368690 0.394965 0.814708 0.227103 1.276274 -2.284047 3.102186 0.403116 -1.372327 -1.429500 1.453960 0.193766 -1.238877 -0.638482 1.697762 0.302813 -0.638049 -0.009424 0.523072 -0.707182 -1.378125 -2.009061 -0.712168 1.272122 -1.424112 0.466120 -0.893560 -1.351621 -0.100755 0.687216 0.684845 0.627883 2.908693 2.016519 -0.276852 -0.250633 -2.501025 0.765255 3.265235 1.538847 -2.271926 1.255832 -0.473590 0.359993 1.380447 0.803863 0.545229 1.930182 -1.057062 -1.135571 -0.878881 -1.064465 2.592442 2.209348 1.049223 -3.272767 1.028607 -0.741842 0.356078 4.069882 2.153687 -2.897610 0.004575 2.229003 -1.397450 -1.853576 0.365173 -0.434763 -1.000364 -0.679881 0.977579 1.006713 -2.044720 -2.875531 -0.158006 -2.340973 2.293377 -0.302764 -0.533535 0.154207 -2.887213 -0.725322 3.245815 0.484442 -1.064173 -0.493542 -1.402528 -0.510814 -3.372790 0.826906 1.493895 -0.873461 -1.603234 -1.674607 0.231519 2.178586 -1.322749 -0.040592 -1.167737 -1.117274 1.442276 -0.475191 1.063988 -3.438072 -0.796496 -0.583107 0.374282 1.377251 -0.074353 0.438199 3.290344 -1.829507 1.097547 2.687430 -0.268947 0.193809 2.928843 -1.468334 2.750011 -0.729039 1.774053 -0.003663 1.347881 -0.929836 0.103115 -0.133910 0.380243 -0.487509 1.764720 -2.137306 -0.617793 0.723328 -1.920396 -0.742415 1.637340 1.825568 0.827511 0.147340 0.246165 -1.164815 -0.494458 -1.035561 -0.228238 2.027877 -0.490782 -2.865281 0.146347 1.201552 -2.184956 -1.322231 0.749236 0.986730 2.552703 -2.331169 1.982171 0.167663 -0.820651 -3.270807 -1.673874 0.736493 -1.867317 -1.783741 1.057109 -2.590366 -1.629730 -1.269489 2.097959 -1.987035 -0.740638 -0.176423 2.186360 1.456365 0.304441 2.047920 -0.215474 1.931593 0.274478 -0.610622 0.380379 2.646080 +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*) = -1.624649 0.742153 0.175426 -1.651876 3.586783 -0.778530 0.053329 1.878129 0.603406 1.735501 -2.178331 0.227802 -0.325627 -1.604171 0.142285 -0.326802 -0.028221 1.828357 -1.249089 0.139168 1.234959 0.557816 0.605724 -1.224030 -0.638837 -1.502944 -0.536486 0.502092 -0.225691 0.138734 -0.418431 0.217675 2.386526 -0.460925 1.579608 1.499409 1.591871 2.435696 0.000560 1.236773 1.331958 0.989822 -0.662009 -2.540938 0.883846 -1.132391 -1.791336 -1.371139 1.123571 -2.720415 2.212241 1.409502 0.217107 -0.923768 -0.964599 1.467191 1.292526 -0.074211 2.081827 0.806004 -2.085725 0.453212 -1.715190 2.224959 -1.710724 2.113083 0.080062 -2.621931 -1.525766 1.599459 1.716558 -1.720737 -2.021287 0.103391 0.272639 -1.230551 0.736030 -0.630769 1.409776 -0.895127 -1.153333 0.611490 -0.674222 1.124830 -0.209570 0.303619 -1.290301 0.182140 0.512816 -1.519115 -0.993234 2.071393 -0.988639 1.080789 -1.887526 -0.249749 0.422942 -0.818482 -0.617460 -1.155904 0.527460 0.420332 0.785217 0.134645 -0.337436 -1.150502 1.131795 1.695478 -0.073608 0.615782 -0.720037 0.899886 0.379680 0.767441 -0.001494 1.222159 -2.919023 0.781163 -0.537023 0.358889 -0.474459 0.306183 1.045010 0.577893 1.154633 -1.772024 2.456444 0.154691 -1.290413 -0.958352 1.043339 0.212973 -0.971829 -0.367120 1.233609 0.164955 -0.488954 0.004165 0.759001 -0.581071 -1.264162 -1.498144 -0.588592 0.345740 -1.169505 0.431874 -0.575400 -0.821762 -0.065051 0.829590 0.765957 0.573048 2.420767 1.554088 -0.106464 -0.293926 -2.132127 0.672940 2.353511 0.857877 -1.759529 1.204071 -0.867896 0.178726 1.037735 0.860407 0.121687 1.750993 -0.686549 -0.687036 -0.753788 -0.699831 2.124270 1.586158 0.681589 -2.454815 0.315734 -1.154654 0.336701 3.220601 1.895226 -2.602653 0.013242 1.923369 -0.601712 -1.558923 0.443169 -0.733670 -1.034792 -0.623261 0.788742 0.947561 -1.590135 -2.092017 0.271266 -1.772512 1.868801 -0.206904 -0.885515 0.216677 -2.257054 -0.352632 2.669419 0.473668 -0.691949 -0.317214 -1.163785 -0.280811 -2.700594 0.502046 1.340847 -0.606418 -1.081846 -1.342535 0.107637 1.730159 -0.992417 0.277669 -1.276034 -0.710430 1.226343 -0.475086 0.817911 -2.583891 -0.535373 -0.765993 0.051866 0.874289 -0.606139 0.148485 2.432387 -1.420763 1.160491 2.069334 -0.765009 -0.178282 2.155251 -1.216848 2.295657 -0.203945 0.905516 0.256496 1.071892 -0.925943 0.189411 -0.375204 0.176527 -0.500630 1.418795 -1.871039 -0.593980 0.448203 -1.465109 -0.780414 1.202470 1.571043 0.463556 0.073301 -0.097361 -0.931474 -0.557474 -1.122312 -0.020401 1.461960 -0.695180 -2.234887 0.345541 1.130297 -2.177035 -1.103363 0.581324 0.830393 2.132028 -1.927301 1.603483 0.377314 -0.267732 -3.019186 -1.248032 0.311801 -1.403514 -1.298811 0.343522 -2.062230 -1.816872 -1.002231 1.569039 -1.483197 -0.914766 0.261010 1.959165 1.156325 0.091003 1.654018 -0.242844 1.316526 0.310196 -0.458442 0.315722 1.728416 +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.428212 0.140266 -0.081772 -0.316220 0.747719 -0.206250 -0.099466 0.397924 0.282358 0.425831 -0.493736 -0.201992 -0.261310 -0.580279 0.084285 0.006398 0.087188 0.471343 -0.262911 -0.022957 0.388317 -0.061602 0.142453 -0.299663 -0.093934 -0.376628 -0.107413 0.100151 -0.001084 0.102452 -0.164009 0.136912 0.633397 0.047527 0.366112 0.343080 0.259750 0.776075 0.095053 0.332723 0.188622 0.383355 -0.174126 -0.800972 0.393337 -0.376288 -0.259401 -0.406341 0.306510 -0.613646 0.585132 0.353788 0.072786 -0.166522 -0.386438 0.106866 0.405309 0.269257 0.571052 0.270712 -0.333543 0.020884 -0.422487 0.259058 -0.510949 0.382556 0.145191 -0.639284 -0.313656 0.317493 0.326276 -0.304580 -0.455754 -0.018693 0.062058 -0.260069 0.252241 -0.049631 0.163727 -0.192228 -0.473843 0.063180 -0.262062 0.437971 -0.164468 0.001506 -0.265466 -0.034315 0.197538 -0.365932 -0.262692 0.392273 -0.170887 0.351094 -0.148151 0.111591 0.079668 -0.142384 -0.228132 -0.146295 0.116907 0.126456 0.208790 0.202213 -0.272693 -0.254871 0.512006 0.239794 -0.050124 0.093515 0.221117 0.086963 -0.030010 0.183947 -0.155975 0.243635 -0.720850 0.181592 -0.003956 0.139764 -0.092543 0.114770 0.217374 -0.118917 0.252257 -0.516368 0.591223 0.112529 -0.179069 -0.227884 0.310795 0.016362 -0.303758 -0.133470 0.441818 0.026113 -0.172175 -0.006097 0.128160 -0.101963 -0.404973 -0.186413 -0.240036 0.284365 -0.304266 0.054502 -0.223282 -0.392381 -0.015473 0.079379 0.077987 0.184121 0.553536 0.435539 -0.176192 -0.114058 -0.557112 0.250378 0.760904 0.157132 -0.480324 0.190496 -0.089173 0.169945 0.335247 0.147649 0.187712 0.390625 0.014185 -0.037968 -0.248359 -0.117309 0.550289 0.401246 0.344976 -0.636630 0.110731 -0.033945 0.127625 0.863548 0.365236 -0.615826 0.073946 0.440114 -0.418179 -0.223414 0.014232 -0.025742 -0.050539 -0.310416 0.255397 0.332236 -0.538757 -0.532297 -0.027947 -0.479531 0.461874 -0.070848 0.028220 0.143243 -0.666150 0.053087 0.702313 0.126241 -0.141465 -0.159303 -0.347190 -0.265418 -0.686131 0.181688 0.215495 -0.226081 -0.269895 -0.353646 -0.034137 0.596328 -0.196789 -0.039343 -0.289260 -0.044309 0.281786 -0.086830 0.219123 -0.515610 -0.197464 0.010631 -0.033836 0.334501 -0.037782 0.022745 0.569105 -0.424289 0.240721 0.550945 0.100111 0.088092 0.526132 -0.247263 0.531868 -0.201070 0.272448 -0.041522 0.317832 -0.174571 0.039077 -0.044282 0.076853 -0.135421 0.360558 -0.429002 -0.112032 0.281862 -0.433160 -0.171268 0.303320 0.366097 0.376176 0.035248 -0.013413 -0.268872 -0.021060 -0.107963 0.012051 0.442877 -0.005905 -0.569403 -0.001438 0.184110 -0.411732 -0.389257 0.194049 0.116949 0.567170 -0.463651 0.310720 0.089752 -0.130978 -0.547592 -0.296265 0.026415 -0.253769 -0.269511 0.369800 -0.612209 -0.263180 -0.233226 0.456265 -0.397866 0.044092 -0.186478 0.424352 0.288894 0.070187 0.454337 0.066387 0.343767 0.053998 -0.192828 0.106756 0.545702 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.318924 0.229197 -0.104801 -0.302013 0.704773 -0.282008 -0.087322 0.515399 0.106092 0.427731 -0.384475 0.166165 0.024990 -0.427348 0.067671 0.123000 0.056397 0.436546 -0.103586 0.043355 0.208111 0.017563 0.075333 -0.203513 -0.157759 -0.508951 0.015396 0.144534 0.034478 -0.084064 -0.147050 0.132013 0.565261 -0.099742 0.417309 0.391604 0.290995 0.400963 0.318075 0.038785 0.237983 0.146533 -0.127333 -0.476339 0.095719 -0.120773 -0.300575 -0.255356 0.218102 -0.429813 0.440157 0.285123 0.014556 -0.121141 -0.331428 0.293969 0.197455 -0.037988 0.464849 0.141018 -0.350145 -0.025041 -0.253496 0.654371 -0.427278 0.119960 -0.037724 -0.466961 -0.112815 0.373915 0.215666 -0.239468 -0.226952 0.071848 0.024075 -0.345756 0.132544 -0.095257 0.302288 -0.251850 -0.239588 0.201971 -0.152256 0.281763 0.020558 0.109933 -0.345093 0.087271 0.079337 -0.351547 -0.123483 0.337663 -0.245785 0.128086 -0.148095 0.198615 0.287165 -0.202415 0.051444 -0.286302 0.120543 -0.065227 0.175650 0.026885 0.157934 -0.182601 0.162768 0.174175 0.030989 0.289778 -0.082065 0.251023 0.155917 0.189598 0.064283 0.012805 -0.680677 0.216318 -0.077326 -0.000207 -0.093859 0.047344 0.285610 0.152344 0.282928 -0.447899 0.449093 0.080580 -0.026995 -0.216171 0.173036 0.064511 -0.142401 -0.135871 0.273872 0.007045 -0.054853 0.004448 0.175468 -0.018755 -0.343065 -0.284129 -0.112316 0.291843 -0.372311 0.137555 -0.094500 -0.130046 -0.008711 0.116657 0.178819 0.194439 0.506021 0.329218 -0.042676 0.038482 -0.514835 0.095158 0.490405 0.138809 -0.315421 0.357513 -0.241919 -0.120064 0.181701 0.295204 0.071962 0.230950 -0.216721 -0.246170 -0.019076 -0.089334 0.445398 0.089667 0.081916 -0.369376 0.184144 -0.017442 -0.006186 0.718627 0.210985 -0.538325 0.128647 0.437819 -0.204793 -0.227237 0.152911 -0.245338 -0.148822 -0.174061 0.155045 0.266393 -0.362037 -0.312230 0.014391 -0.338651 0.364812 -0.040230 -0.189811 0.082778 -0.385651 0.129080 0.600019 0.162959 -0.043956 -0.118104 -0.319757 -0.185811 -0.551559 0.032358 0.203702 -0.162855 -0.064131 -0.302938 -0.113078 0.379579 -0.155416 0.074723 -0.525409 -0.047304 0.304815 0.055423 -0.029730 -0.414033 -0.078497 0.011018 0.010812 0.072468 -0.178385 0.211952 0.454445 -0.271249 0.238139 0.397732 -0.056953 0.142546 0.360646 -0.384673 0.511246 -0.050851 0.105800 0.206890 0.168265 -0.252236 0.015254 -0.118114 -0.028859 -0.175159 0.175308 -0.401558 -0.139628 0.173924 -0.216816 -0.256192 0.149529 0.364206 0.175592 0.017286 -0.093587 -0.157122 -0.111682 -0.332525 0.089455 0.249770 -0.082811 -0.375288 0.215885 0.325998 -0.343496 -0.245616 0.081882 0.199521 0.388920 -0.435897 0.329708 0.091973 0.135844 -0.557621 -0.351934 0.148481 -0.201999 -0.231336 -0.004907 -0.617597 -0.414246 -0.185673 0.288093 -0.483725 -0.007305 0.081917 0.483492 0.103615 -0.068206 0.300729 -0.127558 0.149421 0.079115 -0.007920 -0.026962 0.363612 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.792466 1.947549 1.454062 -1.681958 3.779398 -0.479947 0.360406 1.789710 -2.009945 2.703146 -1.535317 0.638293 -0.548119 -2.912078 0.586820 -1.596434 -0.191258 1.206252 0.240020 2.337856 1.275359 -1.689241 0.284277 -0.481908 -1.230240 -3.041595 -0.135627 1.157663 2.561005 -0.972394 1.012871 0.377839 3.249562 -0.724098 2.653572 2.331810 1.391455 2.218733 1.168344 -2.668486 -0.407009 1.254754 -1.637879 -2.020898 0.411689 -0.636399 -2.256215 -0.943368 1.227230 -1.111991 -1.003665 2.586837 -0.652722 -0.480768 -2.334667 2.253538 1.245530 -0.614154 3.174043 0.425125 -0.716814 -1.682879 -2.709181 2.831876 -1.545516 0.018118 -1.574960 -1.878175 0.857005 0.667606 -0.706318 -0.836600 -1.003057 2.218458 1.400164 -2.595907 0.734872 -1.175849 -2.333895 -2.368593 -1.831206 1.227182 -0.461137 2.564940 0.263397 1.142579 0.201629 1.483988 -0.621816 -3.576842 0.427754 2.579188 -1.592427 -1.002504 -1.393911 2.822293 0.994526 -0.152556 -1.356681 -1.129340 1.132575 -0.868397 1.501980 -2.626999 1.559385 -2.790470 -0.186792 -0.003973 1.058742 2.597588 0.761445 1.624708 1.939834 2.475607 -2.083671 -0.362538 -2.860607 0.655349 -0.806285 0.461633 -1.093590 1.615947 0.475064 1.385723 2.683473 -3.926682 1.571884 0.303537 -0.129500 -2.273218 0.357186 -0.717955 -0.704584 -1.233323 1.776584 -0.353723 -0.482812 -0.673536 0.808284 0.868818 -1.304079 -1.119324 0.536084 3.074201 -3.072795 0.943939 -0.673154 -1.001264 -0.101274 1.360288 2.211025 2.411529 3.046043 2.511396 -0.292575 2.232987 -3.117281 0.389110 2.952212 0.827829 -2.437269 3.103823 -2.502565 -1.292145 0.494007 2.127658 2.102603 1.122769 -2.838234 -2.962652 1.617576 0.573767 3.151098 0.367272 -0.037410 -1.836468 2.567729 -0.627331 -1.339260 3.236930 0.645703 -2.276577 0.876147 1.702293 -2.780482 -1.343883 1.592479 -2.587214 -0.214108 -1.204563 0.283980 2.094004 -1.514479 -1.200198 -0.241725 -2.370997 2.669636 -0.644413 -0.611418 0.699100 -1.597296 -2.718648 2.808585 0.228745 -0.741291 -2.271949 -2.285591 -1.347363 -2.668294 0.793153 0.476698 -0.777834 -1.405562 -2.648722 -1.047825 1.564919 0.316042 1.315921 -4.672272 -0.508195 1.710260 1.459014 0.872978 -0.945934 -0.355836 0.377715 -0.254651 0.294073 -0.887582 2.592088 3.152959 -1.996121 1.887291 -0.825177 -1.860930 1.398758 1.642636 -3.279513 3.694720 0.253583 2.582354 0.370809 0.935557 -1.605506 0.310533 0.540770 -1.302347 -0.239389 0.390845 -1.101084 -1.073907 0.317564 -1.487008 -2.169491 -0.321511 1.321665 -0.155349 0.830533 0.069716 -0.856020 -1.219835 -1.366100 0.842168 1.890546 -0.753974 -0.699560 2.090980 0.942004 0.219596 -0.527069 0.290017 1.307957 1.789652 -3.361643 0.797729 -0.673515 0.924909 -2.352591 -3.224761 0.950961 -1.715639 -1.311729 1.390052 -3.534057 -0.304357 -1.934543 0.502961 -2.284900 -0.551140 1.086444 3.434362 0.378353 -1.636120 1.524044 -1.260240 1.474174 -0.132571 0.274247 0.294186 1.665374 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.352086 0.257658 -0.377895 -0.208195 0.955141 -0.293819 -0.035891 0.765537 -0.424489 0.552651 -0.279425 0.410159 0.040085 -0.706496 0.142384 0.430503 0.196915 0.415869 0.047117 0.142107 0.211094 -0.229568 0.058428 -0.090906 -0.204046 -0.644308 0.163359 0.215594 0.382973 -0.227579 -0.250669 0.221193 0.698548 -0.119055 0.500189 0.444072 0.338336 0.331687 0.606656 -0.605096 0.063680 0.146246 -0.194267 -0.497738 0.090550 -0.118578 -0.422764 -0.187253 0.249777 -0.310769 0.163277 0.406053 -0.048838 0.000000 -0.487645 0.327836 0.338498 -0.322864 0.616710 0.139167 -0.330982 -0.491998 -0.168923 0.854936 -0.360641 -0.255846 -0.089084 -0.475195 0.101521 0.378688 -0.007793 -0.300097 -0.120790 0.251256 0.113683 -0.493813 0.155564 -0.034974 0.163235 -0.610140 -0.389279 0.215523 -0.310119 0.503773 0.080957 0.158454 -0.241300 0.089600 -0.001884 -0.597458 0.036676 0.388733 -0.339999 0.070410 -0.233086 0.531608 0.297392 -0.124906 -0.106641 -0.433494 0.141730 -0.157796 0.222477 -0.319788 0.430009 -0.272714 -0.009202 -0.192998 0.241205 0.600484 0.182617 0.182380 0.233115 0.368427 -0.092818 -0.242113 -0.732802 0.304803 -0.023398 0.026612 -0.222529 0.090272 0.493706 0.114119 0.461872 -0.764558 0.366746 0.141176 0.173060 -0.475424 0.102461 -0.034163 -0.139846 -0.172135 0.405448 -0.165153 -0.018697 -0.074214 0.266461 0.157544 -0.708409 -0.253003 -0.113471 0.758494 -0.877151 0.190303 -0.117091 -0.162539 -0.027732 0.140947 0.324238 0.431362 0.598551 0.431243 -0.139883 0.623512 -0.728901 0.181318 0.736784 0.435581 -0.413457 0.521391 -0.506241 -0.192058 0.177093 0.402375 0.299363 0.005701 -0.381272 -0.284493 0.497481 0.142567 0.603708 -0.116374 0.170115 -0.374291 0.322066 0.201889 -0.082408 0.816479 0.036911 -0.692695 0.563086 0.458421 -0.201397 0.066161 0.234810 -0.553242 -0.226192 -0.313497 0.182123 0.461014 -0.499466 -0.167859 -0.026316 -0.375666 0.458535 -0.051893 -0.189168 0.204364 -0.358960 0.308565 0.677610 0.189986 0.047445 -0.280770 -0.496316 -0.513618 -0.576123 0.015825 0.088254 -0.252545 -0.027296 -0.492562 -0.413519 0.581268 0.045214 0.168924 -1.185868 0.232399 0.388807 0.341980 -0.080094 -0.459990 -0.083693 0.210665 -0.015747 -0.001445 -0.348709 0.434885 0.396692 -0.404446 0.314127 0.110339 0.114899 0.393737 0.201650 -0.554488 0.624181 0.077715 0.564756 0.275056 0.226021 -0.349854 0.079051 -0.175670 0.008681 -0.252897 0.141999 -0.444480 -0.202220 0.393173 -0.142634 -0.624339 -0.029963 0.372950 0.266820 0.048090 -0.332341 -0.060344 -0.158863 -0.454439 0.270205 0.283657 -0.248468 -0.264714 0.360585 0.334246 -0.130772 -0.049600 0.118975 0.301210 0.397748 -0.576104 0.218362 0.015510 0.398790 -0.510876 -0.703501 0.247736 -0.098994 -0.252026 0.236248 -0.996573 -0.338101 -0.251426 0.212831 -0.888224 0.192982 0.038845 0.706285 -0.157476 -0.124280 0.357341 -0.126952 0.042745 -0.082832 0.243583 -0.032995 0.354190 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.371752 0.266504 -0.395063 -0.283966 0.965292 -0.344616 -0.020917 0.683177 -0.331411 0.518794 -0.376378 0.404072 0.033067 -0.738809 0.145251 0.417438 0.203588 0.466450 0.004438 0.138922 0.231711 -0.223222 0.085601 -0.183647 -0.193148 -0.649407 0.162277 0.208421 0.289896 -0.194478 -0.240512 0.224808 0.703173 -0.113956 0.441864 0.441759 0.319471 0.437859 0.593702 -0.549184 0.179421 0.161113 -0.144968 -0.580749 0.124477 -0.133076 -0.411592 -0.253069 0.265947 -0.396333 0.245817 0.390247 0.005219 -0.094397 -0.571912 0.319551 0.454621 -0.277480 0.608745 0.169418 -0.316441 -0.402578 -0.160797 0.796887 -0.449008 -0.205702 -0.008825 -0.477147 0.040913 0.479622 0.066870 -0.311050 -0.230984 0.108817 0.097121 -0.479080 0.158797 -0.030815 0.209067 -0.574615 -0.351951 0.204221 -0.320071 0.502476 0.050232 0.141770 -0.280859 0.042917 0.092239 -0.496360 -0.084546 0.365619 -0.280292 0.097949 -0.189007 0.548846 0.340329 -0.239268 -0.116820 -0.436788 0.127503 -0.136923 0.218618 -0.224773 0.324817 -0.254130 0.055071 -0.089711 0.153646 0.574653 0.142208 0.212563 0.142047 0.257285 -0.059071 -0.198761 -0.829574 0.260123 0.014248 0.014333 -0.207668 0.042373 0.477347 0.087369 0.391378 -0.720807 0.502639 0.160918 0.146882 -0.406940 0.167300 0.082111 -0.153159 -0.147214 0.402087 -0.127547 -0.012191 0.015914 0.265361 0.115809 -0.668623 -0.257738 -0.148633 0.773981 -0.817093 0.194647 -0.121461 -0.184534 -0.005901 0.074904 0.247844 0.324817 0.602232 0.421516 -0.148081 0.588491 -0.710517 0.220480 0.780438 0.441288 -0.406519 0.457461 -0.420320 -0.144727 0.196763 0.360087 0.240964 0.030086 -0.366840 -0.278121 0.412788 0.013865 0.577080 -0.100221 0.180257 -0.491425 0.335556 0.233947 0.044107 0.863136 0.079599 -0.707299 0.537499 0.560142 -0.237509 -0.001677 0.180227 -0.442690 -0.236560 -0.295705 0.233110 0.418127 -0.516523 -0.277855 -0.125077 -0.371464 0.425660 -0.047797 -0.245522 0.156327 -0.364737 0.337554 0.701814 0.175475 0.038336 -0.225801 -0.481590 -0.472766 -0.667952 0.018155 0.124409 -0.289566 -0.026456 -0.452503 -0.373614 0.604751 -0.083089 0.073258 -1.111227 0.208047 0.393826 0.379180 -0.100678 -0.484391 -0.092920 0.246189 0.029843 -0.000210 -0.316837 0.380348 0.409794 -0.423798 0.280554 0.192602 0.145788 0.410039 0.312238 -0.486135 0.623026 0.030999 0.591723 0.261331 0.236017 -0.324568 0.068670 -0.183917 -0.007495 -0.278053 0.161587 -0.535144 -0.197439 0.430528 -0.099100 -0.604371 0.098492 0.452121 0.327025 0.015623 -0.279061 -0.014894 -0.130673 -0.414823 0.234043 0.283769 -0.219835 -0.353045 0.277024 0.441177 -0.218237 -0.094001 0.127551 0.313336 0.445029 -0.554117 0.344924 0.019411 0.335769 -0.555551 -0.684246 0.319405 -0.115483 -0.255720 0.250250 -0.998096 -0.414134 -0.224540 0.343801 -0.861128 0.210733 -0.001119 0.632222 -0.126310 -0.047055 0.385133 -0.114106 0.048803 -0.089141 0.197315 -0.034315 0.391253 +PE-benchmarks/program-wish-womens-day.cpp__main = -6.770660 6.321497 6.861715 -5.686976 15.069586 -2.956514 0.456564 4.799056 -5.149180 10.730618 -3.166539 -2.801662 -2.836147 -10.947760 2.556634 -7.575470 -0.908095 4.640685 1.301353 7.965547 4.453489 -5.686761 -0.461090 0.884420 -4.546381 -8.427574 -3.834247 4.878195 11.560578 -7.658392 2.505828 0.365097 13.537339 -4.622761 12.057256 10.513575 3.396220 5.221921 2.504467 -11.807018 -4.449471 5.785373 -8.182528 -4.754285 -0.320847 -1.300894 -9.421735 -3.592225 4.240739 -0.767420 -8.606817 10.622542 -3.434617 0.449460 -6.764963 10.921864 1.407055 1.567256 12.379291 1.054783 0.805360 -2.617539 -11.776065 6.670140 -4.024034 -0.683230 -9.783597 -7.111185 3.713287 -0.936615 -4.823252 -6.345678 -2.423592 11.425776 3.861917 -10.431059 2.107325 -4.864745 -8.890287 -9.691908 -8.685710 4.516881 -2.861982 8.773748 0.951326 3.357487 3.035744 7.416714 -4.866873 -15.190340 4.385386 10.295794 -5.004262 -6.263662 -1.594003 8.667591 4.242522 1.680902 -5.306688 -3.140601 3.241564 -5.007125 7.586075 -8.887575 10.181273 -9.497471 -4.217539 -2.100571 5.328467 7.345517 6.589873 4.668899 9.028546 11.486735 -11.790810 -2.947966 -9.920042 3.062591 -6.871908 2.737056 -2.843683 8.045606 1.111216 6.133221 10.089335 -16.895676 2.204788 -1.596623 -0.969964 -10.201819 0.632179 -4.855793 -3.377164 -4.828041 5.208584 -2.102178 -2.913651 -4.638479 4.024587 2.944216 -3.237406 -0.814621 4.041875 9.634673 -12.044756 3.652875 -3.492490 -2.767172 -0.035971 5.863164 9.128876 10.430642 13.352949 10.912971 -0.916822 6.180330 -13.066196 -1.048513 7.158188 -1.793327 -8.300302 13.302879 -8.875302 -4.863845 1.583868 11.055522 7.743749 5.739561 -8.781562 -9.225441 6.520371 4.807661 10.782278 -0.123537 0.440101 -3.492116 7.473849 -3.614443 -8.821552 11.037540 2.323267 -7.394005 4.156645 3.286108 -8.299918 -4.363316 7.077325 -10.773967 0.596168 -4.343483 -0.865964 7.371625 -3.897309 -1.934110 0.556165 -8.300371 8.698758 -3.244376 -3.926756 6.536029 -7.458733 -11.759597 8.903460 0.865665 -2.803251 -8.127915 -9.354744 -3.767571 -7.201513 4.524427 0.945384 -3.560414 -6.821078 -10.770821 -0.821764 6.446501 4.518417 7.853360 -14.907516 -1.007938 6.466103 6.042989 7.019953 -0.979799 -0.734805 -0.080801 -2.311923 1.027719 -2.380137 9.816726 14.047825 -6.268989 5.528809 -5.314082 -8.180605 4.796858 4.387064 -15.155986 13.382350 4.034765 11.385533 0.335808 3.041951 -3.512726 1.767182 3.794937 -5.008190 0.944637 1.161330 -1.482380 -4.409173 0.265741 -7.384099 -7.840277 -3.461683 2.526119 -4.130097 4.843405 -0.136194 -6.611653 -3.881407 -3.064497 3.632914 7.902749 0.678714 -1.435386 8.749455 0.848760 3.230233 -2.173966 -0.908544 1.722922 4.491168 -12.091711 -0.816374 -2.919099 6.071315 -5.103823 -11.458637 0.223788 -6.648467 -3.116896 3.710208 -8.724126 -0.222948 -6.718520 -1.971558 -7.895427 -4.321175 4.290567 12.599368 5.020336 -7.169368 3.573453 -4.821520 4.948641 -0.893840 -2.329769 2.475187 4.766144 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.298009 0.295358 0.087751 -0.275424 0.595168 -0.342978 -0.008702 0.595994 0.247788 0.550873 -0.140942 0.170188 -0.019731 -0.214797 0.081328 0.231978 0.191227 0.379149 -0.078406 -0.092253 0.041973 0.071824 -0.187153 0.100228 -0.183634 -0.523916 -0.104184 0.153759 0.079339 -0.149752 0.031112 0.076830 0.637185 -0.308169 0.548373 0.424076 0.375472 0.079478 0.343707 -0.089465 -0.094538 0.189058 -0.208282 -0.241125 0.110249 0.029219 -0.254482 -0.101157 0.195200 -0.372380 0.145514 0.130492 0.021191 0.131895 -0.101582 0.447217 -0.045075 -0.217749 0.549882 0.050961 -0.207758 -0.265685 -0.034519 0.767030 -0.190574 -0.226670 -0.204033 -0.333871 0.126927 0.121027 -0.132478 -0.049954 -0.214060 0.245369 -0.236025 -0.535322 0.127792 0.045537 0.322168 -0.309608 -0.179153 0.193326 -0.016449 0.236674 -0.032418 -0.094916 -0.110098 0.124174 -0.257803 -0.382091 0.169136 0.191856 -0.167425 0.186575 -0.055065 -0.020386 0.045607 -0.041937 -0.059335 -0.212957 0.069822 -0.232879 0.433894 -0.059389 0.304462 -0.024617 -0.080350 -0.035729 0.165483 0.214738 0.264799 0.132383 0.297945 0.325457 -0.201533 -0.106326 -0.607961 0.384228 0.102929 -0.081806 -0.055743 0.155616 0.167029 0.106006 0.452852 -0.526478 0.230227 -0.167512 -0.005956 -0.218202 0.035007 0.006615 -0.181594 -0.165777 0.125831 -0.085071 -0.203869 -0.200032 0.212615 -0.052266 -0.389977 -0.401013 0.094769 0.227177 -0.515298 0.139174 -0.327172 0.065776 0.009547 0.245642 0.186357 0.261788 0.281154 0.386348 0.124721 0.167764 -0.647572 -0.234860 0.067920 0.194983 -0.310552 0.494015 -0.313266 -0.060328 0.118921 0.410123 -0.013888 0.398129 -0.066398 -0.292046 0.250367 0.258635 0.386180 0.143902 0.145991 -0.359493 -0.040996 -0.208531 -0.123178 0.414342 0.363686 -0.341687 0.169684 0.031812 0.127777 0.094608 0.334406 -0.416961 -0.343675 -0.266395 -0.003820 0.327444 -0.151494 0.095610 0.043836 -0.267143 0.154526 -0.066564 -0.283725 0.466270 -0.516653 0.022642 0.127084 0.039291 0.000790 0.070553 -0.289530 -0.302421 -0.328090 0.064108 0.257192 -0.221158 -0.273504 -0.469085 0.115044 0.128735 0.258691 0.284690 -0.433076 0.094315 0.490620 0.023720 0.038464 -0.413409 0.002555 -0.088466 -0.006391 0.147322 -0.117372 0.356150 0.361196 -0.027783 0.140319 0.315147 -0.160048 0.117264 0.102359 -0.510233 0.478419 0.009011 -0.135584 0.139959 0.074607 0.112106 0.158909 -0.122126 -0.111424 -0.174582 0.143446 -0.301991 -0.127935 0.143498 -0.375929 -0.135822 0.061770 -0.048998 -0.029914 0.161456 -0.036924 -0.250952 -0.300544 -0.455374 0.236323 0.285546 0.172280 -0.202859 0.356670 -0.129302 -0.202302 -0.274790 -0.223694 -0.067428 0.009263 -0.232605 -0.083300 0.068464 0.261102 -0.404361 -0.270481 -0.103711 -0.158096 -0.383078 -0.118683 -0.296229 -0.317610 0.047832 -0.059753 -0.450584 -0.203468 0.091167 0.328788 0.226281 -0.117626 0.147119 -0.098858 -0.019785 0.089949 -0.265186 0.205160 0.234741 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -8.129431 9.707841 3.381784 -6.955190 17.172835 -1.322175 1.733479 6.343647 -8.804476 13.780704 -6.509957 0.435190 -2.844544 -15.013439 0.460077 -7.691498 -3.046244 5.392871 0.507302 8.844149 5.668675 -8.676038 1.805331 -1.041907 -5.833779 -12.844007 -1.176206 4.673282 13.198977 -7.295566 4.557741 -1.103469 13.644982 -3.298142 12.457646 9.941715 4.261819 9.561887 3.612524 -6.732833 -4.339502 6.019530 -7.917278 -9.496578 0.797958 -3.070995 -10.843671 -4.949380 5.406821 -5.840863 -3.561770 11.510548 -3.328566 -0.891803 -8.935181 10.959956 5.978310 -1.335018 15.343241 0.818435 -2.791453 -5.767068 -13.923261 10.816086 -5.167058 0.481619 -4.318423 -7.921425 4.176695 0.014858 -6.222932 -5.419353 -2.557377 12.885083 7.679094 -11.966298 0.781753 -7.210331 -18.775438 -10.684276 -8.058271 4.035930 -0.052927 10.403732 1.869431 5.083409 4.549918 7.878046 -4.566719 -18.351096 3.235301 14.962121 -5.730421 -4.530320 -5.922454 13.481943 2.229575 1.524154 -7.298371 -2.328393 3.701391 -1.229721 6.563789 -14.699217 2.754221 -15.675534 -0.000717 -2.169690 2.125332 7.063496 7.055979 2.720542 7.842774 14.355315 -13.465339 0.771606 -14.013896 2.445178 -2.486991 3.913547 -3.684508 6.505153 0.567883 5.009176 12.598446 -19.014803 5.932178 -0.220664 -1.360097 -15.989406 0.069305 -5.264210 -2.834544 -3.785306 6.147834 -2.073041 -1.706144 -5.512933 2.526200 3.819897 -7.214957 -6.085972 5.574641 15.384981 -13.312516 4.048486 -2.582752 -3.593127 -2.201160 6.671389 11.253118 10.101155 17.134896 10.980407 0.668441 11.428585 -12.957629 -0.231895 13.270723 4.842811 -10.785703 13.751401 -10.941578 -4.809222 1.215061 9.601579 10.079361 5.529840 -13.995714 -12.196304 10.684069 3.293869 13.381454 0.358373 0.596695 -4.673770 13.669558 0.891217 -7.834035 15.395332 5.800068 -11.310518 7.720678 4.225250 -10.572295 -4.376783 9.382096 -11.060312 0.293258 -3.974234 0.142541 7.000540 -5.289871 -4.650116 -1.445649 -10.640955 14.060332 -3.115705 -0.831258 5.706703 -8.414709 -11.987555 10.368079 0.621643 -4.615238 -9.962948 -9.551329 -10.976886 -9.631227 4.265606 2.985695 -5.400285 -7.541895 -11.843527 -1.798166 8.350621 3.033717 8.040975 -16.983242 -4.249683 6.721956 8.063196 7.709139 -3.983496 -1.133151 -0.131419 0.411449 3.462678 -1.903471 12.575707 17.563454 -7.612444 9.982030 -5.360433 -7.692565 5.680649 7.561713 -15.812415 15.579016 2.620859 10.798194 -0.217368 3.645083 -5.250953 2.412262 3.781715 -3.814818 2.465545 1.072968 -2.811099 -5.020621 -0.169036 -10.259895 -7.696889 -2.465596 4.010629 -1.173501 4.430975 0.156999 -5.280257 -5.126259 -7.480960 1.617051 8.463250 -1.008810 -3.301770 8.600793 1.056708 3.499340 1.647798 0.896831 5.182485 6.384923 -14.008568 0.637698 -3.743536 2.486727 -9.688658 -14.019645 1.783883 -8.261493 -6.561353 5.652822 -13.966409 0.881656 -8.866008 -0.224172 -14.539246 -2.685660 3.129935 16.492050 4.474198 -5.644853 5.758348 -5.125024 8.321297 -0.151604 0.823618 3.635106 8.629003 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -2.257603 2.046303 0.695050 -1.829835 4.794156 -0.535676 0.295847 2.194368 -1.346844 3.364174 -2.035721 -0.158159 -0.777568 -3.536690 0.219111 -1.559479 -0.590311 1.775091 -0.471671 1.605881 1.685537 -1.326355 0.427900 -0.584914 -1.347687 -2.835110 -0.597808 1.086654 2.554338 -1.440243 0.491652 0.000000 3.729998 -0.759303 3.312174 2.598833 1.633956 2.837646 0.561767 -0.569782 -0.491515 1.710923 -1.945473 -2.875095 0.572221 -1.172183 -2.781309 -1.402253 1.488815 -2.001828 0.496079 2.840309 -0.576098 -0.249279 -1.902599 2.607115 1.384606 -0.101854 3.866043 0.615235 -1.517509 -0.837351 -3.535097 3.110474 -1.579545 1.187131 -0.906736 -2.762540 0.108498 0.391128 -0.339666 -1.989064 -1.307959 2.748329 1.536196 -2.737268 0.628936 -1.581740 -2.809161 -2.492452 -2.361423 1.044923 -0.371593 2.556938 0.161761 0.988862 0.229443 1.585842 -0.808264 -4.342005 0.314306 3.800166 -1.744047 -0.251787 -2.090333 2.216474 0.364172 0.353398 -1.741353 -0.967986 1.025573 0.012645 1.571357 -2.645913 0.538907 -3.399634 0.538943 0.136252 0.449527 1.571976 1.356827 0.785710 1.836656 3.283867 -2.537673 0.578875 -3.740416 0.936120 -0.813617 1.019153 -0.869813 1.509038 0.619455 1.057805 2.994088 -4.461334 1.887741 -0.020920 -0.852088 -3.525621 0.401365 -1.274157 -1.169998 -1.017849 1.824906 -0.227604 -0.653960 -1.262127 0.792210 0.543343 -2.003126 -1.790105 0.781888 2.846772 -3.094785 0.783306 -0.806525 -1.128078 -0.605252 1.820220 2.598270 2.412392 4.333012 2.827613 0.012254 1.774650 -3.506130 0.202400 3.552105 1.090731 -2.933023 3.183420 -2.623322 -0.757621 0.769400 2.295404 2.070658 1.815646 -2.744047 -2.397605 1.678966 0.591956 3.619258 0.785163 0.499079 -1.713643 2.557678 -0.417342 -1.724262 4.432022 1.878273 -3.319874 1.363389 1.356891 -2.060465 -1.402698 2.080272 -2.608132 -0.328628 -1.171105 0.349614 1.851497 -1.770616 -1.553160 0.222026 -2.882435 3.578125 -0.724389 -0.383185 1.269590 -2.815305 -2.480236 3.281451 0.328722 -1.182384 -2.145516 -2.332428 -2.142259 -2.842016 1.114717 1.080217 -1.117161 -2.030755 -2.914551 -0.238792 2.536417 0.302741 1.802461 -3.661017 -1.119671 1.749507 0.993485 2.033197 -1.923801 -0.528596 -0.503807 0.026924 1.197793 -0.694477 2.391962 4.553426 -2.079267 2.416281 0.049630 -1.792272 0.782069 2.257361 -3.624519 3.956757 0.421914 2.232514 -0.052186 1.196496 -1.512726 0.413841 0.597021 -0.339774 0.263799 0.847378 -1.045965 -1.095983 -0.008220 -2.858337 -1.693838 -0.107666 1.250898 -0.109916 0.943096 -0.140029 -1.585151 -1.200652 -1.923743 0.318378 2.391067 -0.474744 -1.503427 1.904797 0.277323 -0.207810 0.027475 0.421226 1.211894 2.228852 -3.527850 0.424691 -0.461737 0.415536 -3.060063 -3.245536 0.081334 -2.178410 -1.718955 1.298789 -3.423935 -0.479794 -2.195145 0.439006 -3.419988 -0.933198 0.710495 4.112969 1.515393 -1.191361 1.779814 -0.973355 2.338242 0.198482 -0.124449 0.902576 2.396712 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.891522 0.673772 -0.171381 -0.710509 1.647103 -0.484543 0.102278 0.924112 -0.192909 1.200138 -0.952069 0.283128 -0.244694 -1.279010 0.025798 -0.075427 0.132413 0.920127 -0.196606 0.379746 0.605486 -0.397817 0.274011 -0.443269 -0.455910 -1.254507 -0.001374 0.346985 0.356060 -0.312899 0.043172 0.198570 1.552070 -0.040410 1.122900 0.971575 0.426784 1.345519 0.718647 0.052696 0.192606 0.572012 -0.449440 -1.322087 0.362093 -0.449190 -0.780220 -0.785906 0.544613 -1.103409 0.916750 0.873008 -0.060166 -0.215015 -1.004867 0.571113 0.880915 -0.155748 1.416380 0.257589 -0.749937 -0.186720 -0.756991 1.225885 -0.918316 0.099576 0.189062 -1.061668 0.044201 0.574434 0.456278 -0.716943 -0.735026 0.461485 0.272307 -0.999643 0.211361 -0.341019 -0.551412 -0.870186 -0.763262 0.327476 -0.226590 0.896580 0.016968 0.306261 -0.504594 0.313884 0.066317 -1.215622 -0.146097 1.131720 -0.502307 0.315792 -0.606975 0.922699 0.321293 -0.290845 -0.485791 -0.462128 0.262099 -0.088092 0.505775 -0.334519 -0.231386 -0.851184 0.490661 0.153790 -0.064155 0.552100 0.371203 0.502260 0.523170 0.763912 -0.513424 0.320321 -1.682296 0.503433 0.119747 0.071867 -0.208395 0.264468 0.263602 0.184629 0.955738 -1.436398 1.007599 0.162233 -0.225297 -1.069801 0.259690 -0.076326 -0.384603 -0.367939 0.768016 -0.055541 -0.090915 -0.250826 0.209801 -0.000496 -0.900707 -0.888715 0.002702 1.238674 -0.979077 0.329697 -0.296222 -0.469609 -0.146581 0.405370 0.542414 0.621587 1.375656 0.941951 -0.081453 0.499952 -1.309649 0.134464 1.419700 0.952950 -1.042572 0.966861 -0.614559 -0.217755 0.478964 0.711605 0.600231 0.274544 -0.838901 -0.745954 0.408627 -0.086912 1.263972 0.339471 0.318630 -0.880398 0.878014 0.283750 -0.138098 1.794138 0.605247 -1.268838 0.489697 0.875423 -0.697246 -0.455388 0.531705 -0.626141 -0.361987 -0.405411 0.305165 0.622401 -0.816109 -0.704512 -0.106738 -1.030599 1.177943 -0.174860 -0.162742 0.343769 -1.179526 -0.288244 1.360515 0.156341 -0.210962 -0.442916 -0.857302 -0.696223 -1.418237 0.221201 0.440429 -0.520915 -0.420191 -0.980193 -0.133813 0.956827 -0.165387 0.362745 -1.187046 -0.337200 0.763594 0.279246 0.188036 -1.155815 -0.249875 0.152806 0.243592 0.437820 -0.195749 0.807524 1.338933 -0.745949 0.633302 0.642587 0.032627 0.520026 0.866573 -1.131205 1.361489 -0.262575 0.751418 0.218074 0.462785 -0.490602 0.074411 -0.044860 0.178016 -0.286862 0.390119 -0.862063 -0.378560 0.344623 -0.784560 -0.613851 0.237483 0.691959 0.331763 0.183077 -0.071154 -0.405603 -0.325702 -0.813361 0.176029 0.765444 -0.085984 -0.828135 0.561929 0.478990 -0.407062 -0.128955 0.172214 0.536829 0.868691 -1.208936 0.505196 -0.056436 0.050032 -1.160130 -1.228859 0.443150 -0.739583 -0.818971 0.478940 -1.599897 -0.538608 -0.636474 0.543838 -1.406087 0.068759 0.038724 1.369729 0.351173 -0.171104 0.745548 -0.300216 0.631995 0.015737 0.068675 0.159624 1.105871 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -6.531418 3.595806 2.561630 -7.548479 13.994421 -3.305404 -0.249289 5.838122 1.231294 9.376317 -6.555383 -0.700415 -2.511471 -10.414065 0.559896 -5.551195 -0.993123 6.698004 -2.379604 4.982105 5.235591 -1.824297 2.770272 -2.685968 -3.802735 -9.188351 -2.354406 3.711864 3.070837 -3.080892 3.252271 0.136815 11.644586 -1.437480 8.710641 7.599211 4.660025 9.933970 1.077979 2.407382 1.256097 4.507263 -4.626033 -9.242420 2.729299 -2.632252 -8.442554 -5.993455 4.894905 -8.128156 3.125727 8.493489 -1.066310 -2.498674 -6.684954 6.073115 4.033734 0.119343 10.152635 2.081550 -5.203354 0.663467 -9.977704 7.313816 -6.715031 4.303354 -1.181685 -8.130671 -1.539661 3.513810 2.676480 -5.830620 -6.115272 4.930369 4.536391 -7.606299 2.147864 -4.532969 -3.189999 -5.756885 -5.838688 3.693956 -1.010925 6.865431 0.524126 3.531982 -0.262628 4.010781 -1.007443 -10.533295 -0.048317 9.115827 -4.435869 -0.638266 -5.678688 5.693936 1.476136 -1.877043 -3.890316 -3.660776 2.760355 -0.989809 5.137337 -1.125537 -1.355549 -8.167411 2.537012 3.083418 0.718143 2.903440 1.395263 2.970193 3.943396 7.103723 -5.608804 4.076014 -12.017649 3.251434 -2.941125 2.568400 -3.045189 4.104162 2.733764 4.295934 7.380621 -10.945410 7.547723 0.488077 -3.468401 -7.172958 2.395217 -1.011293 -2.944040 -2.522458 5.748459 -0.992107 -1.668452 -1.803650 2.758528 0.551490 -3.503728 -4.046400 0.581976 5.278548 -5.549275 3.217748 -2.207918 -4.072738 -0.352226 3.951608 5.958130 5.800002 12.580898 8.004158 -0.783624 2.016603 -10.179314 0.947328 10.300303 2.439123 -7.554100 8.696575 -5.030926 -1.766800 2.249257 6.966596 5.197036 4.605017 -6.120299 -5.655979 1.215157 0.255633 10.177132 3.367186 1.161593 -7.570618 4.608845 -1.212296 -0.958154 13.570564 6.251210 -9.431799 1.921430 6.410206 -6.390880 -6.649888 4.330460 -4.589217 -1.591747 -3.057641 2.945085 5.057118 -5.162279 -6.701089 -0.285845 -8.043473 8.367115 -2.435543 -2.515994 3.477851 -8.544306 -7.459814 10.615050 0.402879 -3.317323 -5.110413 -7.601344 -1.736595 -10.185345 3.408257 3.706994 -2.798323 -3.589363 -7.355900 -0.123772 7.147697 -0.492894 3.913481 -8.076688 -3.356551 5.625465 1.106787 4.319294 -7.299094 -1.082849 -0.622619 0.239259 2.724682 -1.159178 3.673328 11.934175 -6.668549 5.106712 2.819581 -4.419965 2.132005 7.597123 -9.738530 12.551848 0.192792 5.864932 0.297803 3.309565 -3.471987 1.629286 1.122007 -1.565694 0.181767 2.987559 -5.256838 -3.913247 1.761278 -6.342520 -4.768531 1.159729 5.846049 -0.697359 2.716692 0.597669 -4.707346 -2.861061 -3.734836 1.947270 6.858111 -0.774914 -5.976803 4.809325 4.732806 -2.778753 -3.176684 1.284298 4.164970 7.762316 -10.623449 4.494973 -0.912394 0.920708 -9.111184 -8.313359 3.044354 -6.866038 -4.266149 2.358370 -10.022041 -4.202179 -6.347533 3.887828 -6.045247 -1.945376 2.003892 10.331369 5.430178 -2.793637 5.377594 -3.057379 5.439990 0.041694 -1.753183 2.980394 7.916411 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = -0.800442 1.044052 0.360470 -0.783030 0.688030 -0.327135 0.268422 0.167567 0.234240 0.657333 -1.115695 -0.516919 -0.398798 -1.119657 0.009239 -0.762919 -0.154833 0.968601 -0.111376 0.752218 0.757171 -0.646453 0.088051 -0.781877 -0.232788 -0.499824 -0.147218 0.045337 -0.110518 0.336933 0.483080 0.113270 1.053139 0.474480 0.949578 0.929189 -0.446212 1.677570 0.369325 0.750594 -0.059607 0.797881 -0.355760 -1.628121 0.598547 -0.571205 -0.146227 -1.215342 0.246892 -1.185456 1.157226 0.654812 0.069307 -0.353665 -1.035972 -0.199130 0.994840 0.968074 1.030538 0.447514 -0.193208 0.641096 -0.810005 -0.320349 -0.743777 0.416327 0.804717 -0.768232 0.257952 0.264803 0.790702 -0.441128 -0.843496 0.109719 0.067702 -0.562319 0.316211 -0.415815 -1.696536 -0.116880 -0.553448 0.067037 -0.116635 0.868684 -0.303630 0.030043 -0.786013 0.195973 0.316433 -0.674644 -0.537065 0.885742 0.145429 0.236782 0.007524 1.089974 0.536716 -0.184093 -0.583140 0.228674 0.409743 0.248782 0.383580 0.431372 -1.334453 -0.851894 0.974690 0.674840 -0.670922 0.319332 0.560498 0.740189 0.384222 0.383824 -0.745871 0.900490 -1.323502 0.165579 -0.045909 0.172432 0.231372 0.207070 -0.361657 -0.266346 0.348663 -0.811866 1.052836 0.465322 -0.206957 -0.732281 0.588258 -0.159270 -0.450597 -0.464703 0.565199 0.412651 -0.186739 -0.076727 -0.392378 -0.299325 -0.068329 -0.809597 -0.017443 1.177885 -0.127481 0.108866 -0.384805 -0.576798 -0.125610 0.097278 0.072202 0.133087 1.019183 0.735346 -0.117942 -0.711442 -0.619706 0.022022 1.340770 0.555321 -0.864113 0.385326 0.437740 -0.031922 0.387412 0.174842 0.491472 0.615022 -0.790964 -1.000702 -0.668046 -0.713843 0.848614 0.973323 0.365848 -0.828324 1.349785 0.271365 -0.308352 1.395324 0.569522 -0.446165 -0.501196 0.630570 -1.374556 -0.739363 0.223699 0.277200 0.200079 -0.110517 0.148171 0.064040 -0.677815 -1.225302 -0.518920 -1.042657 0.922374 -0.069026 0.409910 -0.284241 -1.040979 -0.420029 1.223856 0.193764 -0.640336 -0.206715 -0.328430 -0.396406 -1.116397 0.420642 0.444656 -0.343179 -0.772666 -0.546556 0.284747 0.520341 -0.661518 -0.260830 0.535695 -0.855955 0.442874 -0.121419 0.342084 -1.128396 -0.406696 0.058526 0.452172 0.771664 0.697531 0.723152 1.564812 -0.458156 0.063619 1.415749 0.572408 0.436477 1.327203 -0.659543 0.942206 -0.819208 0.523129 -0.122160 0.442999 -0.103431 -0.226616 0.346645 0.055229 0.037950 0.581227 -0.472348 -0.065809 0.198419 -0.775052 0.169099 0.670343 0.442830 0.396125 0.089469 0.541542 -0.637322 -0.040938 -0.233564 -0.294323 0.878201 0.433310 -0.979334 -0.065549 0.245321 -0.158410 -0.402810 0.210645 0.199845 0.763663 -0.804767 0.693593 -0.180102 -0.644271 -0.722899 -0.463607 0.479814 -0.761490 -0.783770 0.629597 -0.784641 0.012867 -0.523966 0.660745 -0.782119 -0.086375 -0.274500 0.681601 0.651251 0.004168 0.471725 -0.223743 1.023308 0.276703 -0.374760 0.024421 1.430806 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = -0.667334 0.427348 -0.084347 -0.673670 1.410660 -0.453732 -0.053931 0.845381 0.183421 0.804577 -0.827622 0.243258 -0.045220 -0.770890 0.063764 0.047987 0.038959 0.860134 -0.328563 0.172255 0.471122 0.073567 0.234094 -0.453514 -0.316679 -0.780822 -0.081258 0.261205 -0.029085 -0.104037 -0.158209 0.143804 1.065972 -0.170595 0.763606 0.714932 0.526742 0.956633 0.371241 0.251227 0.478713 0.353719 -0.266652 -1.030619 0.307060 -0.338745 -0.655018 -0.606091 0.450084 -1.013016 0.940789 0.589124 0.040949 -0.342129 -0.589124 0.561930 0.531724 -0.054970 0.924090 0.269736 -0.746877 0.128292 -0.598659 1.035916 -0.784369 0.501631 0.037728 -0.980723 -0.357219 0.681865 0.650216 -0.653962 -0.697414 0.119396 0.074276 -0.630093 0.252913 -0.264093 0.474416 -0.493253 -0.472853 0.304326 -0.295502 0.507974 -0.024251 0.208054 -0.660641 0.164328 0.171453 -0.686552 -0.303548 0.759369 -0.402701 0.357797 -0.498730 0.245498 0.369873 -0.406294 -0.139885 -0.474439 0.222329 0.001386 0.366600 0.096134 0.052460 -0.435498 0.387326 0.517075 -0.010802 0.402085 -0.165889 0.482590 0.285740 0.365836 0.021801 0.286630 -1.314589 0.354930 -0.157507 0.070552 -0.167155 0.137860 0.434350 0.255082 0.543112 -0.838640 0.970348 0.101803 -0.286650 -0.469520 0.393739 0.134845 -0.294105 -0.229980 0.525910 0.016303 -0.151982 -0.008269 0.284343 -0.135998 -0.608255 -0.634780 -0.186194 0.456908 -0.580470 0.265581 -0.220861 -0.327093 0.014198 0.262341 0.340519 0.314545 1.023252 0.671574 -0.046579 -0.018499 -0.943669 0.198624 0.961085 0.401857 -0.690454 0.628351 -0.361589 -0.121467 0.398361 0.491600 0.145685 0.523058 -0.416249 -0.476092 -0.125371 -0.241003 0.873573 0.392713 0.214297 -0.866555 0.322421 -0.144847 0.068126 1.412703 0.544210 -1.029608 0.115526 0.820661 -0.327715 -0.566888 0.251360 -0.356057 -0.375445 -0.245650 0.310375 0.427372 -0.659828 -0.789983 0.009525 -0.718054 0.764453 -0.102512 -0.407180 0.124486 -0.870518 0.055993 1.131033 0.258285 -0.225079 -0.182056 -0.575397 -0.186002 -1.119485 0.151479 0.482629 -0.281059 -0.299358 -0.587765 -0.068228 0.689940 -0.333818 0.110412 -0.751232 -0.259853 0.573481 -0.033400 0.113715 -1.015583 -0.165704 -0.103065 0.094925 0.252544 -0.213215 0.296436 0.998470 -0.577019 0.395820 0.880515 -0.115285 0.170179 0.831597 -0.679058 1.004497 -0.128783 0.371160 0.244417 0.359074 -0.396529 0.073723 -0.154480 0.072326 -0.244436 0.440696 -0.773212 -0.292088 0.252589 -0.500014 -0.414378 0.377645 0.694197 0.234338 0.064132 -0.103354 -0.326939 -0.244685 -0.550823 0.061767 0.553734 -0.196758 -0.836140 0.304059 0.563188 -0.721026 -0.401209 0.186872 0.401941 0.798415 -0.854593 0.689830 0.108857 0.052684 -1.141964 -0.614709 0.290052 -0.505626 -0.507842 0.104643 -1.048402 -0.765739 -0.404810 0.614769 -0.780594 -0.136116 0.113445 0.889012 0.366286 -0.049109 0.640574 -0.223577 0.444343 0.130472 -0.109343 0.024684 0.787251 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = -1.147161 0.743806 0.109623 -1.189085 2.446536 -0.676692 0.039798 1.358716 0.043373 1.350111 -1.371522 0.423597 -0.273998 -1.529538 0.109522 -0.302546 0.091665 1.365498 -0.552360 0.512861 0.863320 -0.134323 0.467767 -0.757824 -0.554222 -1.410185 -0.078401 0.455536 0.040345 0.061978 0.119252 0.231238 1.767397 -0.162631 1.183435 1.128061 0.749344 1.809221 0.494586 0.359296 0.681083 0.626385 -0.410470 -1.904450 0.664021 -0.626664 -1.233711 -1.104253 0.759591 -1.967404 1.032347 1.099781 0.083266 -0.611906 -1.089413 0.882334 1.159192 -0.100362 1.551412 0.492837 -1.222235 -0.103848 -1.127811 1.222455 -1.224321 0.692135 0.207242 -1.612021 -0.491903 1.161948 0.751361 -0.910015 -1.121311 0.171585 0.360010 -1.046078 0.426967 -0.426927 0.008228 -0.751936 -0.712817 0.401816 -0.410713 0.984692 -0.085272 0.390851 -0.655472 0.189896 0.267405 -1.228166 -0.483898 1.414527 -0.568548 0.478644 -1.015759 0.695164 0.544317 -0.691659 -0.548592 -0.724539 0.388031 0.054423 0.642451 -0.152282 -0.504277 -0.993965 0.734929 0.767632 -0.016303 0.735357 -0.259560 0.718447 0.289457 0.651242 -0.492365 0.877258 -2.220407 0.570177 -0.259228 0.233631 -0.378261 0.203704 0.649411 0.457535 0.877109 -1.527476 1.748014 0.263530 -0.467037 -0.968436 0.704551 0.225153 -0.451786 -0.368641 0.987934 -0.087045 -0.229790 0.001352 0.423757 -0.199580 -0.928058 -1.071370 -0.316046 1.057647 -1.078051 0.490213 -0.404972 -0.632568 0.021233 0.345222 0.581875 0.499505 1.750045 1.124180 -0.133963 0.366327 -1.569493 0.395599 1.863118 0.917931 -1.211081 1.039141 -0.501061 -0.090363 0.580004 0.671317 0.449645 0.917343 -0.859038 -0.893252 -0.081243 -0.374963 1.490485 0.913174 0.419994 -1.790310 0.708924 -0.309842 0.272887 2.282152 1.089140 -1.730615 0.321069 1.395761 -0.996950 -0.935654 0.340618 -0.525241 -0.557588 -0.388971 0.559424 0.738352 -1.146422 -1.458515 -0.165532 -1.254160 1.252763 -0.210833 -0.425817 0.152834 -1.413310 -0.281125 1.823881 0.332468 -0.453801 -0.358561 -1.035661 -0.576640 -1.937989 0.295726 0.783009 -0.582854 -0.619334 -1.009845 -0.216761 1.179704 -0.537658 0.135101 -1.365734 -0.386899 0.974807 0.107171 0.314988 -1.694245 -0.313154 -0.116757 0.115718 0.511962 -0.214163 0.516107 1.657780 -1.007440 0.829475 1.036364 -0.284293 0.450250 1.433659 -1.102644 1.757939 -0.228141 1.165041 0.280532 0.673616 -0.581198 0.196091 -0.178260 -0.120142 -0.374525 0.846956 -1.336609 -0.514552 0.576611 -0.862363 -0.788489 0.667802 1.182748 0.457228 0.145140 0.039776 -0.569758 -0.409593 -0.838546 0.142500 0.969039 -0.387210 -1.404191 0.384619 0.986283 -1.043441 -0.805926 0.385404 0.747966 1.327079 -1.463605 1.181678 0.074945 -0.112218 -1.826243 -1.155470 0.664479 -1.006226 -0.993370 0.372670 -1.867349 -1.013138 -0.703167 1.143890 -1.359588 -0.244868 0.079118 1.502596 0.534492 0.012872 1.151342 -0.315674 0.758326 0.065052 -0.054777 0.147762 1.423050 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.308938 0.084663 -0.139031 -0.197410 0.761662 -0.364791 -0.104895 0.607126 0.110700 0.446781 -0.267743 0.129506 -0.069256 -0.422462 0.093474 0.149621 0.185829 0.460676 -0.119961 -0.048898 0.196122 0.099867 0.096343 -0.096154 -0.149681 -0.520167 0.020481 0.176299 0.019851 -0.109576 -0.218663 0.240162 0.659305 -0.099180 0.449204 0.381846 0.345647 0.382268 0.367286 -0.016387 0.242244 0.113643 -0.117085 -0.463223 0.111926 -0.082527 -0.339368 -0.200025 0.261523 -0.389661 0.391661 0.295783 -0.007246 -0.029460 -0.303447 0.282474 0.090519 -0.051926 0.468439 0.134685 -0.430202 -0.121780 -0.218423 0.729868 -0.430609 0.055148 -0.148319 -0.542221 -0.155373 0.393421 0.167250 -0.253545 -0.209331 0.093007 0.048018 -0.335362 0.130652 0.023956 0.424177 -0.243514 -0.375598 0.200500 -0.206127 0.276926 0.038572 0.121239 -0.311077 0.052285 0.063255 -0.392179 -0.015876 0.349619 -0.312342 0.190788 -0.194477 0.094241 0.235229 -0.202574 0.062250 -0.375841 0.093445 -0.181908 0.197358 0.026711 0.198300 -0.120779 0.146258 0.078761 0.155619 0.313490 -0.021996 0.177931 0.160818 0.198925 0.084636 -0.049924 -0.681665 0.329835 -0.103619 -0.063636 -0.142054 0.083879 0.328004 0.151837 0.330264 -0.527007 0.373486 0.056850 -0.004848 -0.204695 0.139670 0.081814 -0.114805 -0.162060 0.390593 -0.086462 -0.062865 -0.010456 0.223174 0.027605 -0.383620 -0.192170 -0.188556 0.239281 -0.396465 0.160728 -0.118410 -0.197572 0.013334 0.115457 0.188837 0.320712 0.478026 0.358927 -0.127790 0.057925 -0.634856 0.115738 0.459960 0.096547 -0.316333 0.403810 -0.296740 -0.112506 0.185575 0.362105 0.117231 0.157205 -0.075085 -0.137897 -0.016878 0.079072 0.463403 0.079379 0.103889 -0.341870 -0.006973 -0.054574 0.037782 0.711335 0.168643 -0.585115 0.186930 0.456593 -0.177755 -0.212178 0.153548 -0.360447 -0.177621 -0.279790 0.196984 0.396031 -0.447051 -0.171191 0.154900 -0.312634 0.313657 -0.057686 -0.249551 0.171032 -0.461532 0.136835 0.645758 0.168926 0.083878 -0.148069 -0.462719 -0.186382 -0.562771 0.013159 0.163401 -0.111256 0.007428 -0.320585 -0.208397 0.448736 -0.004163 0.183481 -0.601454 0.103674 0.343409 0.054212 -0.058715 -0.384311 -0.069747 0.088869 -0.088418 0.032271 -0.240172 0.129839 0.304473 -0.313532 0.276529 0.351213 -0.109547 0.150326 0.212377 -0.418474 0.514640 -0.006490 0.119025 0.257332 0.163568 -0.266863 0.054139 -0.150931 0.015203 -0.277038 0.174885 -0.424663 -0.173705 0.226620 -0.207725 -0.364430 0.022986 0.391517 0.179886 0.032623 -0.183025 -0.162711 -0.107924 -0.338984 0.220587 0.232613 -0.120946 -0.302442 0.309695 0.313143 -0.393700 -0.267360 0.104250 0.196961 0.384522 -0.471107 0.245355 0.124600 0.243269 -0.518697 -0.394106 0.117533 -0.191151 -0.195193 -0.015589 -0.683812 -0.444768 -0.165829 0.291880 -0.467124 0.051039 0.077692 0.539225 0.048118 -0.065028 0.333211 -0.079699 0.018852 0.022013 0.007844 -0.010381 0.351044 +PE-benchmarks/bfs.cpp__main = -3.198454 0.653003 0.646924 -2.652760 6.611115 -2.273722 0.104112 3.723820 1.321845 3.755275 -3.225450 -0.455944 -1.604696 -3.793344 0.389168 -1.627421 0.548094 3.629484 -2.014092 0.589638 2.651814 0.861649 0.988108 -1.549376 -1.229122 -3.349570 -1.105293 1.221508 0.184325 -0.783648 -0.259415 1.061300 5.820612 -0.482193 4.208856 3.503733 3.142382 4.937709 0.285738 2.307929 1.418152 2.306076 -1.716577 -4.738460 1.623278 -1.630045 -3.463598 -2.393233 2.413826 -4.080074 3.654414 3.380038 -0.132421 -0.668862 -2.173648 2.594195 1.527405 0.262208 4.435947 1.466966 -3.785887 0.752178 -3.846383 4.497570 -3.337399 3.165576 -0.395387 -4.762576 -2.056253 2.013834 2.674016 -3.508154 -3.505607 1.365323 1.144292 -2.812564 1.410084 -0.958974 1.453671 -2.027672 -3.630957 1.283746 -0.997780 2.646546 -0.259784 0.895914 -1.703653 0.892883 0.360812 -4.095398 -0.550097 4.253826 -2.626701 1.582146 -3.800682 0.156100 0.258144 -0.840816 -1.469243 -2.516797 1.131915 -0.372799 2.030132 0.296762 -0.750868 -2.363368 1.909234 1.917549 0.318616 1.259072 0.034411 1.393937 1.530795 2.422362 -0.697014 2.018784 -5.750604 2.264612 -1.221136 0.599765 -0.870441 1.418655 1.695897 1.210147 3.033439 -4.499788 3.562640 0.195763 -2.137823 -2.511642 1.461300 -0.402547 -1.862756 -1.471505 3.355648 -0.020795 -1.007257 -0.708349 1.557062 -0.362103 -2.075272 -2.442164 -0.960429 0.758439 -2.220189 0.940927 -1.408833 -2.198195 -0.312517 1.833622 1.863333 2.502727 5.013617 3.597754 -0.786618 -0.455810 -4.968003 0.639379 4.306847 1.136832 -3.676545 3.270252 -2.214721 -0.053011 1.820863 2.841062 1.501721 2.349809 -1.187346 -1.191401 -0.706427 -0.057700 4.584203 2.347846 1.073892 -3.711984 0.342405 -1.632466 -0.328340 6.542878 3.249291 -5.028455 0.303295 3.211174 -1.411298 -3.296817 1.446663 -2.240718 -1.473716 -1.982258 1.766597 2.494667 -3.304612 -2.642412 1.403940 -3.713427 3.580096 -0.774235 -1.478574 1.398374 -5.164097 -2.229703 5.646332 0.467327 -0.928389 -1.644642 -3.509023 -0.401543 -5.120452 1.370667 1.814175 -0.606183 -1.797525 -3.108031 0.072856 3.876840 -0.526172 1.771028 -2.696328 -1.271798 2.567980 -0.783345 1.851997 -4.400424 -1.108152 -0.755238 -0.047784 1.756234 -1.039737 0.401097 4.970883 -3.099843 2.306012 3.229157 -2.067115 -0.068492 3.392236 -3.790139 5.008784 -0.243128 1.546895 0.423669 1.850416 -2.175956 0.255771 -0.138987 0.788724 -1.049807 2.062056 -2.869029 -1.311226 0.497764 -3.311885 -1.806767 0.964302 2.676546 0.174811 0.774822 -0.271188 -2.205946 -1.098287 -2.303405 0.875576 3.274953 -0.688043 -3.289913 1.868151 1.631106 -3.280613 -1.426978 0.947629 1.425047 4.107044 -4.480837 1.856299 0.447318 0.133065 -4.733685 -3.525171 0.503973 -3.157348 -2.225345 0.822654 -4.297556 -2.816244 -2.408741 2.400761 -2.968157 -1.223991 0.572172 4.538513 2.575347 -0.472616 3.040210 -0.599609 2.382014 0.310772 -0.988443 1.016322 3.736300 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.963437 0.543775 0.012186 -0.946787 2.221361 -0.677054 -0.052113 1.111587 0.106917 1.169805 -1.067739 0.209439 -0.343595 -1.434244 0.141807 -0.264831 0.183984 1.190049 -0.448032 0.414855 0.731743 -0.140149 0.429255 -0.538208 -0.437646 -1.356124 -0.111586 0.450062 0.087820 -0.081061 0.031414 0.280474 1.649684 -0.121208 1.060147 0.971493 0.617102 1.554398 0.488926 0.184562 0.550146 0.537409 -0.366791 -1.642477 0.574592 -0.470241 -1.158823 -0.929552 0.705221 -1.609952 0.810043 0.993361 0.013877 -0.452838 -0.993354 0.768248 0.970257 0.090025 1.345940 0.407735 -0.980977 -0.152964 -0.985092 1.005740 -1.076994 0.492160 0.028802 -1.410985 -0.414128 0.971426 0.509137 -0.794513 -0.953693 0.200870 0.395296 -0.887236 0.378010 -0.286229 -0.009670 -0.708912 -0.829056 0.360511 -0.486213 0.885039 -0.057271 0.369961 -0.476878 0.170862 0.200889 -1.102020 -0.279160 1.227044 -0.522896 0.375534 -0.681087 0.693681 0.466701 -0.593983 -0.464486 -0.663433 0.295798 -0.128254 0.601638 -0.045452 -0.321079 -0.884237 0.640898 0.546575 0.126979 0.709278 0.003019 0.515855 0.267451 0.575525 -0.529816 0.649310 -2.005665 0.537955 -0.300546 0.164300 -0.365737 0.285373 0.585401 0.430231 0.794797 -1.456238 1.471112 0.225001 -0.314348 -0.774547 0.567623 0.189645 -0.363522 -0.337883 0.947369 -0.172462 -0.210125 -0.001139 0.389562 -0.081677 -0.830813 -0.694753 -0.310999 0.972601 -0.987138 0.460677 -0.359837 -0.651681 0.069603 0.263855 0.516360 0.574805 1.584401 1.018506 -0.254988 0.309748 -1.498435 0.381342 1.668113 0.603756 -1.023958 0.948081 -0.423223 -0.081871 0.469501 0.715171 0.506847 0.702753 -0.635890 -0.717462 -0.111832 -0.144411 1.275552 0.717192 0.367429 -1.529809 0.539955 -0.168540 0.270512 2.039148 0.850907 -1.477237 0.292690 1.221785 -1.007148 -0.782436 0.296893 -0.490128 -0.371553 -0.496822 0.556395 0.765453 -1.051418 -1.191763 -0.076511 -1.055580 1.001501 -0.222295 -0.449941 0.258286 -1.252145 -0.235422 1.698469 0.287016 -0.270545 -0.386002 -1.115205 -0.509352 -1.651678 0.263974 0.560209 -0.463109 -0.414126 -0.867532 -0.272649 1.160618 -0.292357 0.231288 -1.323888 -0.169458 0.849516 0.228135 0.247660 -1.280946 -0.258666 0.059354 -0.028690 0.358205 -0.181195 0.430118 1.380492 -0.927940 0.727950 0.783176 -0.260820 0.462050 1.186381 -1.010519 1.553239 -0.172821 1.129680 0.248395 0.566928 -0.478210 0.214324 -0.121224 -0.181385 -0.378202 0.680120 -1.128756 -0.487839 0.603568 -0.678436 -0.873096 0.424174 1.042469 0.410663 0.181012 -0.108007 -0.526513 -0.310928 -0.600761 0.288794 0.821225 -0.264951 -1.112936 0.421695 0.876828 -0.819974 -0.783675 0.338285 0.591495 1.150455 -1.319613 0.931929 0.071396 0.090784 -1.478687 -1.009560 0.545074 -0.820140 -0.768543 0.365908 -1.707294 -0.870267 -0.619450 0.952787 -1.120719 -0.091204 0.047968 1.330743 0.487957 -0.059012 0.978363 -0.250189 0.505338 -0.007744 -0.109641 0.170928 1.223353 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -2.843163 2.012313 -0.028044 -3.367967 6.942927 -1.192090 0.005672 2.425800 -0.545789 3.377734 -3.474968 0.761016 -0.923209 -4.926983 0.349106 -1.141483 -0.012147 2.916429 -1.295870 2.089586 2.243979 -1.546829 1.514444 -1.867344 -1.333115 -4.114222 -0.317220 1.374978 1.038110 -0.122947 0.712219 0.034217 4.225871 -0.412419 2.458966 2.454713 1.418213 4.776340 0.784799 -0.266022 1.326682 1.764867 -1.122438 -5.004070 1.821888 -1.699969 -3.951881 -2.928658 2.046812 -5.168124 1.146444 3.187012 0.062721 -1.968646 -3.285453 2.530920 4.145341 0.190384 4.012657 1.147948 -2.170189 -1.058156 -3.335626 1.659478 -2.834101 1.417333 0.559674 -3.680061 -1.006138 2.743859 0.630755 -2.096799 -2.926955 0.581130 1.823623 -2.647018 1.136553 -1.449362 -1.667247 -2.552599 -1.820066 0.820857 -1.509624 2.964211 -0.287255 1.244436 -0.192454 0.543065 0.481811 -3.315240 -1.095267 3.732485 -1.050788 0.455796 -1.902777 3.269587 1.196943 -1.775836 -2.389422 -1.393956 0.834441 0.258807 1.787359 -1.083162 -1.448776 -3.572003 1.909001 1.643722 0.265512 2.139652 0.286575 1.210042 0.258734 1.833562 -2.879686 2.509817 -5.849678 0.665324 -0.797262 1.208531 -1.358540 0.874422 1.730769 1.383912 2.208332 -4.413213 4.954431 0.792787 -0.973106 -2.642823 1.795089 0.507505 -1.079023 -0.550771 2.347419 -0.669133 -0.552976 0.089665 1.109981 -0.151652 -2.648740 -1.707815 -0.434189 3.756468 -3.389587 1.421880 -0.934813 -1.835856 0.287982 0.638935 1.700613 1.182124 5.067093 2.891838 -0.576160 2.235455 -3.946543 1.529090 5.788976 2.226606 -3.114836 2.537204 -1.105338 0.108664 1.127422 1.622261 1.894108 2.358814 -2.695291 -2.482742 0.388863 -0.764300 3.689135 2.213085 1.199976 -5.363389 2.633405 -0.267534 1.224421 5.880665 2.914279 -4.243774 1.291669 3.491995 -3.853437 -1.878952 0.672947 -0.810799 -0.728202 -1.186606 1.679694 1.891238 -2.679623 -4.471959 -1.402744 -3.166769 3.118657 -0.756096 -0.949250 0.563784 -3.045173 -1.025949 4.560821 0.551891 -1.480464 -1.260357 -2.970439 -2.239779 -4.796401 0.963761 1.526464 -1.948758 -1.650566 -2.596126 -0.797956 3.461221 -1.178264 0.180884 -4.632982 -0.588112 2.275228 1.567018 1.280081 -3.334879 -0.738450 0.084199 0.053516 1.166246 -0.268820 1.588378 4.575493 -2.831021 2.326055 0.928409 -0.636753 1.763463 4.194641 -2.654274 4.773241 -0.328997 4.979332 0.013435 1.862344 -1.023535 0.932900 -0.079621 -1.363261 -0.409244 2.096517 -3.270116 -1.515215 2.123323 -1.777642 -2.878152 1.697474 2.985727 1.367861 0.671870 -0.020320 -1.374282 -0.982019 -1.253343 0.494297 2.454182 -0.892019 -3.409792 0.545111 2.763283 -1.516706 -2.280838 1.046056 1.874006 3.433280 -3.832040 3.040741 -0.244146 -0.188261 -4.243906 -3.016401 1.880308 -2.371521 -2.360928 1.982289 -5.072877 -1.899611 -2.016071 2.848764 -3.331945 -0.365059 -0.115793 3.681779 1.555955 -0.102924 2.902993 -0.783153 1.900940 -0.341125 -0.168736 0.846364 3.458756 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/bfs.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.996814 0.615370 -0.358576 -0.798471 2.391472 -0.810960 0.133386 1.423019 -0.750498 1.285170 -0.915416 0.783707 -0.183117 -1.728746 0.290749 0.294308 0.398798 1.205259 -0.112272 0.575233 0.701072 -0.454845 0.287938 -0.430642 -0.507180 -1.567427 0.173042 0.539137 0.631639 -0.421590 -0.086353 0.468408 1.813078 -0.270014 1.185808 1.149442 0.782510 1.324973 1.000503 -1.017290 0.366473 0.529303 -0.452891 -1.544639 0.449939 -0.351242 -1.175739 -0.765797 0.731082 -1.189877 0.278835 1.090376 -0.044988 -0.261058 -1.269115 0.873855 1.183754 -0.559711 1.516776 0.402001 -0.826286 -0.666901 -0.737233 1.569505 -1.056751 -0.194028 -0.138254 -1.315491 -0.020064 0.997094 0.241891 -0.867977 -0.745810 0.402218 0.411143 -1.160590 0.380038 -0.188990 0.056415 -1.366438 -0.942431 0.396634 -0.634398 1.192239 0.037482 0.386552 -0.415534 0.183883 0.155751 -1.341713 -0.159207 1.137457 -0.682924 0.190618 -0.721601 1.141679 0.665572 -0.530423 -0.522818 -1.016127 0.324855 -0.360854 0.651072 -0.449721 0.380431 -0.734780 0.066043 -0.091046 0.373191 1.281011 0.168039 0.577702 0.408358 0.723319 -0.507820 -0.018846 -1.999321 0.698712 -0.221922 0.153874 -0.463666 0.278997 0.947986 0.375109 1.029203 -1.791002 1.243985 0.267425 0.109113 -1.074554 0.468349 0.135668 -0.368766 -0.458710 1.077862 -0.315198 -0.138027 -0.069376 0.598259 0.239973 -1.219488 -0.713418 -0.304466 1.609881 -1.767659 0.511308 -0.391722 -0.604059 0.029987 0.244875 0.666780 0.881444 1.580750 1.190516 -0.352775 1.343916 -1.766363 0.419342 1.828401 1.024304 -1.068795 1.171856 -0.892493 -0.320980 0.539203 0.901628 0.707988 0.254325 -0.937158 -0.807236 0.801052 0.055411 1.479680 0.147059 0.349749 -1.454197 0.753950 0.275462 0.043759 2.136543 0.414258 -1.733067 1.115503 1.262530 -0.781711 -0.421240 0.415907 -1.029927 -0.628667 -0.649641 0.580874 0.986464 -1.182655 -0.820957 -0.165425 -1.033197 1.053539 -0.229265 -0.630324 0.444830 -1.063816 -0.003798 1.698851 0.341954 -0.086099 -0.668165 -1.246644 -0.784787 -1.695766 0.222246 0.315849 -0.595423 -0.325499 -1.154256 -0.675148 1.371027 -0.115303 0.312897 -2.416692 0.202304 0.961563 0.749517 0.029758 -1.382642 -0.240184 0.394732 0.060731 0.089804 -0.533742 0.776799 1.272464 -1.133732 0.641191 0.339077 -0.148049 0.863280 0.906407 -1.322094 1.640412 0.071525 1.638220 0.446000 0.550926 -0.753294 0.196160 -0.228353 -0.044164 -0.561074 0.474595 -1.188937 -0.527670 0.854038 -0.489747 -1.327961 0.215643 1.077839 0.516397 0.175952 -0.412496 -0.282343 -0.335815 -0.838654 0.451964 0.854138 -0.499573 -0.955819 0.708733 0.943654 -0.565580 -0.422702 0.297722 0.783299 1.085295 -1.474744 0.837393 -0.065016 0.540113 -1.377080 -1.675853 0.829151 -0.681957 -0.755022 0.640752 -2.175562 -0.836321 -0.682577 0.850783 -1.778086 0.179207 0.075656 1.560859 -0.016363 -0.112769 1.031784 -0.321604 0.376636 -0.242960 0.329173 0.024272 1.130303 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.415295 0.953946 -0.081263 -1.296971 3.498642 -0.995119 0.330085 2.182871 -0.856809 1.806068 -1.566578 1.214075 -0.125760 -1.941545 0.259959 0.088690 0.278206 1.669195 -0.509281 0.608898 0.947057 -0.091836 0.435856 -0.761555 -0.798134 -2.004453 0.094258 0.666091 0.467104 -0.236185 -0.129145 0.479769 2.408526 -0.519120 1.624355 1.559580 1.264209 1.864071 0.967108 -0.586017 0.860436 0.635764 -0.596722 -2.101713 0.506694 -0.617396 -1.788768 -1.084133 0.976125 -2.141599 0.898052 1.408389 0.053611 -0.536173 -1.352426 1.514655 1.398260 -0.883827 2.028241 0.574147 -1.682087 -0.601806 -1.190294 2.468178 -1.391663 0.482842 -0.165621 -2.049649 -0.443917 1.544348 0.744586 -1.358031 -1.216465 0.422870 0.425927 -1.531861 0.494714 -0.416516 0.370735 -1.486144 -1.003170 0.642791 -0.649410 1.334391 0.067387 0.506956 -0.897715 0.273531 0.221676 -1.750051 -0.459918 1.929945 -0.996010 0.432431 -1.675133 0.911695 0.807901 -0.789754 -0.581791 -1.401127 0.510462 -0.156896 0.804350 -0.851135 0.248796 -1.139316 0.260441 0.570666 0.323555 1.502544 -0.516541 0.974217 0.585169 0.938037 -0.339158 0.566241 -2.869002 0.971864 -0.406592 0.170771 -0.641797 0.241035 1.201457 0.756355 1.358376 -2.200018 1.958139 0.241946 -0.378063 -1.418070 0.701273 0.256020 -0.571488 -0.520868 1.291385 -0.212723 -0.213571 -0.071260 0.825060 0.005165 -1.490475 -1.469960 -0.358065 1.604891 -2.124285 0.641378 -0.469001 -0.576000 -0.050406 0.622949 0.970456 0.954023 2.243135 1.506678 -0.146673 1.237578 -2.339931 0.496858 2.310259 1.454244 -1.507904 1.583761 -1.229914 -0.383928 0.723266 1.110159 0.546664 0.896753 -1.362770 -1.197898 0.632814 -0.197350 2.064560 0.751239 0.408162 -2.068630 0.865040 -0.466440 0.117070 2.823838 1.196346 -2.455593 0.980901 1.792730 -0.724509 -0.978110 0.661156 -1.402499 -1.104448 -0.590470 0.640004 1.178211 -1.489206 -1.370931 0.007807 -1.470936 1.608403 -0.259846 -0.939752 0.311959 -1.579097 -0.161870 2.306210 0.485705 -0.285852 -0.618017 -1.464272 -0.977858 -2.425527 0.257876 0.892206 -0.694992 -0.691375 -1.497660 -0.618850 1.597522 -0.478980 0.456847 -2.665983 -0.148223 1.342631 0.552855 0.245202 -2.251082 -0.314073 -0.067962 0.107333 0.338169 -0.795175 0.938840 1.942112 -1.352557 1.185418 0.953001 -0.542440 0.652325 1.499315 -1.653844 2.253835 0.089611 1.773602 0.641078 0.784929 -1.020889 0.227813 -0.425618 -0.037599 -0.704253 0.899735 -1.740992 -0.688927 0.743607 -0.936696 -1.438618 0.568126 1.526330 0.431343 0.138409 -0.329235 -0.527019 -0.646632 -1.516554 0.385752 1.153669 -0.911448 -1.574236 0.891935 1.259856 -1.361979 -0.627136 0.406480 1.139675 1.566162 -1.956285 1.308616 0.074914 0.432924 -2.490043 -2.005578 0.914619 -1.163065 -1.350153 0.393877 -2.634214 -1.483554 -0.913397 1.258895 -2.367501 -0.429303 0.373677 2.160941 0.174916 -0.054802 1.429763 -0.471453 0.745385 -0.084026 0.350442 0.073191 1.510704 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.980500 2.072379 -0.453200 -2.978889 7.568629 -1.539187 0.623882 4.213290 -2.321076 3.996667 -3.299034 2.769780 -0.205048 -4.339568 0.450544 0.194825 0.279970 3.126978 -1.078824 1.553235 1.960573 -0.747486 1.252670 -1.605264 -1.751424 -4.524901 0.314634 1.485916 1.616299 -0.427879 -0.126396 0.420296 4.655950 -1.404801 2.815283 2.927403 2.680936 3.729434 1.756052 -1.981943 1.665469 1.357321 -1.339549 -4.290117 1.051046 -1.438200 -4.079911 -2.176008 2.225668 -4.654819 0.875345 3.086732 0.012693 -1.601122 -2.948915 3.534328 3.437950 -2.244385 4.385357 0.959510 -3.080440 -2.027862 -2.676133 5.077258 -2.882584 0.880881 -0.360552 -4.102930 -0.987896 3.244625 0.702740 -2.347482 -2.458492 1.024386 1.360490 -3.381052 0.867098 -1.240774 0.259079 -3.289504 -1.712559 1.208608 -1.475353 2.923089 0.230875 1.265393 -0.966937 0.724572 0.396554 -3.820948 -0.950114 4.082554 -1.814812 0.539083 -3.427743 2.340472 1.660120 -1.835021 -1.562528 -2.581379 0.890768 -0.057567 1.797666 -2.640818 0.675609 -2.900713 0.347947 1.115464 0.926634 3.166493 -1.110776 1.701183 0.826729 2.154386 -1.255254 1.099693 -5.830399 1.551600 -0.730361 0.713676 -1.645435 0.606372 2.665659 1.699039 2.983477 -4.781084 4.341592 0.411089 -0.783539 -3.204016 1.447976 0.665848 -0.990701 -0.718746 2.450300 -0.835189 -0.466357 -0.142820 1.957169 0.176986 -3.522567 -2.643013 -0.459875 3.658223 -4.766585 1.550248 -0.923335 -1.138391 0.120838 1.261256 2.197137 1.881031 4.855831 3.226775 -0.154216 3.725730 -4.671300 1.375718 5.135775 3.267610 -3.199587 3.264566 -2.850616 -0.749125 1.368622 2.116580 1.371745 2.244642 -3.151575 -2.581088 1.829136 -0.407770 4.333586 1.488189 0.903505 -4.668094 2.117059 -0.937839 0.662886 5.645249 2.656915 -5.205105 2.709713 3.728042 -2.026668 -1.701683 1.266944 -2.775849 -2.164024 -1.254881 1.332547 2.534874 -2.907717 -3.225988 -0.636459 -3.041801 3.575776 -0.612278 -1.934932 0.889045 -2.930807 -0.400744 4.305097 0.955609 -0.877706 -1.558283 -2.970432 -2.716353 -5.052017 0.631896 1.771991 -1.928128 -1.591791 -3.298278 -1.537591 3.271291 -0.834778 0.875712 -6.513863 -0.071607 2.778749 1.916216 0.770241 -4.205857 -0.509708 -0.129565 0.142347 0.633332 -1.750550 2.089953 3.974160 -3.032795 2.677879 0.809498 -1.309052 1.643616 3.216113 -3.366387 4.837635 0.534619 4.293000 1.071579 1.712986 -1.896998 0.954675 -0.820179 -0.732098 -1.029984 1.813668 -3.758905 -1.714701 1.882497 -1.832197 -3.323830 1.218759 3.215522 1.128198 0.406842 -0.708748 -0.942365 -1.458742 -2.884840 0.652207 2.379015 -2.050212 -3.257844 1.642212 2.758433 -2.456871 -1.486001 0.906525 2.538527 3.173872 -4.160866 2.929329 -0.128955 0.820369 -5.218627 -4.191610 2.002360 -2.180781 -2.839010 1.353492 -5.678116 -2.767914 -2.033427 2.578445 -4.937434 -0.990240 0.669725 4.475489 0.198650 -0.021346 3.161933 -1.039000 1.594512 -0.411044 0.858811 0.391780 2.888424 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = -2.510830 1.210158 -0.314200 -2.752963 6.172909 -1.165222 -0.079902 3.313388 -0.480737 3.123742 -2.881510 1.231355 -0.531307 -3.771600 0.300492 -0.303816 0.276309 2.603467 -1.412144 1.233213 1.843473 -0.598332 1.282313 -1.481858 -1.332568 -2.989222 -0.029940 1.236843 0.685952 0.008456 0.015998 0.309112 3.710492 -0.644322 2.345649 2.128411 2.018657 3.758005 0.865232 -0.159703 1.541921 1.207572 -0.856675 -4.086072 1.431726 -1.497885 -3.405035 -2.093748 1.836530 -4.435015 1.395975 2.671718 0.164855 -1.477666 -2.399055 2.339796 2.753996 -0.814915 3.541763 1.042386 -2.923904 -1.278450 -2.634185 2.776207 -2.461943 1.393619 0.266620 -3.602833 -1.281386 2.832491 0.843615 -2.005910 -2.387941 0.475831 1.318697 -2.390232 1.049755 -0.984654 0.398691 -2.035477 -1.352177 0.908071 -1.151725 2.324705 -0.099277 1.125830 -0.553449 0.320362 0.319047 -3.041005 -0.841162 3.154608 -1.511624 0.927064 -2.731047 1.749775 0.823262 -1.561948 -1.817185 -1.800999 0.787684 0.255115 1.434477 -1.333012 -0.681777 -2.523549 1.486631 1.421658 0.521285 1.756309 -0.468068 1.117322 0.341830 1.703737 -1.471526 1.882394 -4.748097 1.000678 -0.649744 0.838737 -1.399543 0.476369 2.084383 1.261474 2.121312 -3.714353 4.054857 0.577491 -1.031649 -2.414979 1.490167 0.501719 -0.948931 -0.488663 2.220955 -0.713372 -0.418506 0.001685 1.353299 -0.204390 -2.755690 -1.820966 -0.652737 2.437938 -2.943851 1.234483 -0.763279 -1.338966 0.126133 0.848223 1.687950 1.151780 4.091151 2.387217 -0.364516 1.995623 -3.589800 1.339999 4.589942 2.120194 -2.822620 2.469932 -1.706547 0.045668 1.071337 1.440960 1.273984 2.002433 -1.907774 -1.625740 0.682794 -0.359032 3.426760 1.696945 1.086880 -4.358541 1.319573 -0.929144 1.116567 5.002633 2.572348 -4.296052 1.455208 3.195579 -2.165963 -1.491710 0.726262 -1.436891 -1.284395 -1.024676 1.457263 1.912441 -2.588152 -3.253352 -0.523188 -2.709005 2.832482 -0.562015 -1.071810 0.452361 -2.919454 -0.307288 3.945283 0.623691 -1.008637 -0.861327 -2.478638 -1.852953 -4.343009 0.520056 1.650667 -1.555295 -1.274469 -2.374914 -0.999995 2.939028 -0.944661 0.389198 -4.281962 -0.178386 2.230629 0.695645 0.917246 -3.284053 -0.608310 -0.267471 -0.085964 1.000492 -1.057453 0.951401 3.304790 -2.402524 2.370033 1.101984 -0.864027 1.190709 2.933287 -2.359521 4.212494 0.087682 3.503687 0.482234 1.687512 -1.289332 0.835860 -0.637968 -0.628235 -0.793153 2.001742 -3.172424 -1.353890 1.674717 -1.625974 -2.496053 1.362030 2.757984 1.121258 0.425745 -0.226814 -1.016938 -1.144026 -1.916474 0.653003 1.986566 -1.446809 -2.929595 0.790008 2.435260 -2.047894 -1.586764 0.996297 1.863072 3.137072 -3.373812 2.558002 0.175511 0.035549 -4.060114 -2.784997 1.364911 -2.004917 -1.920463 1.141810 -4.570521 -2.250321 -1.573877 2.581630 -3.051718 -0.381309 0.199519 3.634217 0.990555 -0.047009 2.753483 -0.609187 1.395957 -0.208651 0.277519 0.582833 2.729924 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.442369 0.386040 -0.158606 -0.186105 0.835425 -0.214364 -0.169345 0.762485 -0.537927 0.614307 -0.273285 0.284282 -0.094327 -0.734217 0.054789 0.220023 0.141586 0.439321 0.089222 0.280084 0.286706 -0.337614 0.050688 -0.044251 -0.255603 -0.366465 0.026762 0.211662 0.541025 -0.483584 -0.162825 0.146824 0.855990 -0.097711 0.781772 0.545513 0.231512 0.482415 0.641822 -0.666816 -0.183447 0.314730 -0.355023 -0.594872 0.137500 -0.247247 -0.228707 -0.120438 0.303349 -0.119059 0.108451 0.457387 -0.143796 0.109510 -0.510880 0.273787 0.203057 -0.082824 0.832951 0.063100 -0.388050 -0.406011 -0.347668 0.715182 -0.395544 -0.116633 -0.219862 -0.454802 0.268879 0.090796 -0.033191 -0.555093 -0.140008 0.539958 0.028081 -0.569365 0.157288 -0.132419 -0.158541 -0.618338 -0.580527 0.181677 -0.282411 0.485051 0.014738 0.195116 -0.281593 0.281875 -0.120226 -0.863400 0.183303 0.463334 -0.448734 0.165060 -0.022520 0.608927 0.092027 0.070827 -0.235984 -0.223994 0.188641 -0.135850 0.284684 -0.477462 0.621006 -0.406463 0.096779 -0.368769 0.187188 0.493207 0.529521 0.314479 0.550760 0.636813 -0.217474 -0.351889 -0.803428 0.232457 -0.162393 0.043433 -0.146225 0.318116 0.230856 0.016237 0.674782 -0.937826 0.246595 0.060846 0.148749 -0.750410 0.100690 -0.265088 -0.194316 -0.266404 0.466370 -0.128156 -0.085600 -0.323728 0.112415 0.173588 -0.798193 -0.383177 0.050876 0.803825 -0.810373 0.156951 -0.162807 -0.258668 -0.034080 0.242140 0.440690 0.590916 0.733674 0.552885 -0.153787 0.527509 -0.786544 0.041289 0.648658 0.302468 -0.602456 0.637514 -0.547701 -0.277429 0.267320 0.499372 0.536967 0.103488 -0.446454 -0.497466 0.631758 0.268646 0.671873 -0.180531 0.242938 -0.102786 0.498704 0.342269 -0.340080 0.997532 -0.245335 -0.747437 0.603483 0.279183 -0.040274 0.075617 0.352604 -0.633172 -0.081723 -0.310218 0.012302 0.490137 -0.565155 -0.160271 0.059854 -0.541996 0.713055 -0.108160 -0.161591 0.292726 -0.640939 0.048035 0.758213 0.253315 -0.059775 -0.426537 -0.546490 -0.450722 -0.584980 0.098701 0.118506 -0.249237 -0.171585 -0.614404 -0.262831 0.505815 0.202457 0.333145 -1.104285 -0.012853 0.407410 0.275380 0.099492 -0.440973 -0.117269 0.174903 -0.040368 0.227262 -0.294610 0.624409 0.666907 -0.434933 0.426633 0.231877 0.071195 0.393788 0.212426 -0.779778 0.736250 0.006319 0.595919 0.164311 0.218630 -0.409437 0.052394 -0.009463 0.207537 -0.106222 0.066141 -0.252182 -0.225018 0.131686 -0.364859 -0.454028 -0.178990 0.231096 0.157345 0.170805 -0.290133 -0.157070 -0.256746 -0.389467 0.191237 0.411920 -0.212102 -0.330801 0.475857 0.047360 0.042698 0.188350 0.075185 0.250120 0.352725 -0.703941 -0.017858 -0.056649 0.267365 -0.463234 -0.663465 0.037756 -0.124514 -0.118100 0.313707 -0.920497 -0.141478 -0.323414 0.042274 -0.809546 0.261297 0.011514 0.866743 0.100169 -0.309563 0.354261 -0.196528 0.289142 0.049213 0.152436 -0.099851 0.482108 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -17.629132 22.769695 11.949294 -17.296066 32.969595 -1.710537 6.469211 12.412024 -12.162802 29.079376 -15.613873 -0.801036 -5.584022 -31.784470 -0.272707 -23.687204 -9.545297 14.455104 0.942095 20.122282 12.621092 -18.121130 3.854863 -4.595956 -12.899423 -31.190008 -2.757215 8.882650 21.731971 -7.905519 15.385459 -3.583858 29.381055 -4.201305 25.634354 21.946159 5.840593 22.507196 5.445751 -1.688428 -8.840861 12.643059 -16.094997 -21.116064 2.649726 -6.577724 -22.335417 -15.478369 9.484746 -19.200378 -3.002587 24.111276 -6.127402 -3.722573 -17.325640 19.536331 14.238321 -1.847498 30.299101 2.550991 -5.602434 -6.713493 -29.540421 19.180226 -10.754341 1.547916 -3.327045 -17.259575 9.367382 0.665219 -8.264039 -6.837065 -5.050226 24.757471 16.805005 -24.970430 0.928665 -17.394328 -46.253972 -18.076476 -14.281804 8.567689 3.269938 21.817810 3.817027 10.319799 8.377654 16.298041 -9.091261 -36.092247 4.056382 32.657045 -8.877544 -10.553141 -15.341609 27.778433 7.543254 2.494106 -14.198630 -3.483344 8.605924 -0.283938 13.464237 -24.896231 -8.357360 -33.336931 2.137674 0.929831 0.035308 12.061350 8.697592 7.830167 15.337612 28.213902 -30.036275 12.292468 -29.351987 6.513643 -3.418275 8.688332 -5.962724 11.151672 -1.747369 12.159640 24.397682 -36.830300 13.817655 0.658031 -5.228062 -32.213305 0.628372 -10.677588 -5.679959 -8.516844 11.190625 -1.639610 -3.300452 -10.907127 2.425022 5.168137 -9.738882 -16.586339 12.262832 30.083643 -23.644656 8.491174 -5.363318 -6.379530 -6.052536 14.311510 21.624543 18.208515 33.943911 22.276096 4.675055 17.400717 -24.674564 -2.633885 27.636546 14.454159 -22.067166 27.177677 -18.022643 -10.094377 2.096835 17.972423 18.960916 14.233818 -31.665816 -27.026897 15.382882 2.137914 28.371387 9.522583 -0.766102 -13.100968 30.942728 -0.966588 -16.419759 31.768660 19.340342 -20.399008 8.938346 8.891450 -29.416684 -13.744215 19.449162 -18.139361 0.275941 -4.693620 -0.358197 11.407428 -8.286109 -12.995921 -4.459192 -23.646619 28.790704 -6.205273 4.687627 8.645851 -17.135556 -30.623842 22.384767 0.151101 -12.506594 -18.610318 -16.889610 -21.330865 -20.779776 9.338762 8.167968 -11.524015 -18.087077 -23.840848 -0.300171 16.032535 2.362731 14.766473 -25.715890 -14.215752 13.957701 12.126949 15.587262 -15.177537 -2.667950 -3.427052 4.087873 9.001024 1.690708 26.215607 37.582219 -13.482939 18.761323 -7.135287 -15.693178 10.787770 18.023733 -31.442290 32.608863 1.104897 18.665470 -0.616793 7.462470 -8.801894 3.664993 8.935189 -9.061686 6.226124 4.605623 -6.270655 -9.486625 -0.971730 -24.095244 -10.961080 -1.700219 8.442668 -3.047366 8.715379 7.087043 -14.551869 -10.086059 -16.533660 0.198828 18.373910 1.118043 -8.294862 16.430077 2.598670 6.597094 -1.911861 1.512688 11.558096 12.995214 -28.658885 4.639675 -7.971947 -0.253367 -21.243376 -29.919045 6.727308 -22.417669 -19.838760 9.267711 -27.478041 3.899769 -19.441961 0.663502 -30.533487 -10.582830 7.570433 32.709842 9.979771 -10.473716 11.506519 -11.759481 20.752559 1.166025 0.945885 8.868738 21.245414 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -2.438080 3.141476 1.447968 -2.208313 3.831601 -0.132126 0.886694 1.381748 -1.493269 3.797702 -2.327575 0.301020 -0.670649 -3.731661 -0.137803 -2.721891 -1.033638 1.648211 0.178660 2.465263 1.717838 -2.412697 0.448246 -0.867179 -1.651634 -4.275983 -0.202031 1.009150 2.382579 -0.761742 2.137005 -0.283697 3.599890 -0.139684 3.450941 3.037945 0.485960 3.282660 0.988413 0.418176 -1.077442 1.738131 -1.999753 -3.142891 0.515681 -1.043607 -2.519496 -2.264654 1.156717 -2.756479 0.254141 3.024377 -0.757830 -0.429739 -2.499075 2.019958 2.091958 -0.178585 4.080492 0.406370 -1.042051 -0.778125 -3.420368 2.475218 -1.622568 0.001128 0.258670 -2.363909 1.468284 0.209917 -0.643061 -0.677522 -0.880856 2.937049 1.758854 -3.297171 0.120051 -2.143412 -6.413264 -2.044934 -1.456008 1.057707 0.764295 2.902372 0.456492 1.231568 0.488910 1.978350 -0.918898 -4.560239 0.304170 4.183215 -1.118296 -0.780615 -1.896534 3.855821 1.050549 0.249430 -1.739225 -0.055488 1.156878 0.060115 1.655707 -2.721901 -1.747706 -4.172167 0.775388 0.079775 -0.358880 1.359708 0.986600 1.305653 2.110375 3.473156 -3.567496 1.866946 -3.665178 1.054763 0.009206 0.916698 -0.580490 1.249538 -0.433672 1.187672 3.232308 -4.304521 1.970867 0.269142 -0.644887 -4.290240 0.135253 -1.441356 -0.840864 -1.232121 1.555811 -0.002143 -0.323152 -1.456910 0.019623 0.411276 -1.287222 -2.744126 1.439749 4.064825 -2.545270 1.033664 -0.743712 -0.864620 -0.929830 1.804184 2.495238 2.300797 4.328995 2.907929 0.625305 2.031212 -3.045092 -0.425951 3.845997 2.738617 -3.045939 3.379878 -2.087921 -1.286472 0.533327 1.984378 2.485487 1.588813 -4.171631 -3.545182 1.691550 -0.020521 3.794704 1.587063 0.159689 -1.573280 4.277028 0.324742 -2.061791 3.928375 2.355210 -2.745167 1.164154 1.327570 -3.796948 -1.633360 2.451346 -2.080351 -0.036545 -0.562053 -0.062447 1.363881 -1.300155 -1.798548 -0.659092 -3.276592 3.930410 -0.656391 1.163766 1.009570 -2.545818 -3.792266 2.767542 0.042701 -1.580404 -2.198745 -1.859052 -2.863679 -2.953137 1.067709 1.153595 -1.653926 -2.245529 -3.198750 0.030551 1.691724 0.018857 1.756015 -2.726440 -2.094433 1.880869 1.269371 1.575083 -2.156661 -0.520675 -0.304595 0.848914 1.459154 0.338268 3.619357 4.865802 -1.670199 2.278527 -0.405890 -1.302859 1.544147 2.489528 -3.983244 4.179855 -0.435507 1.958421 0.102456 1.099520 -1.206346 0.244300 1.030130 -0.940997 0.588037 0.744616 -1.054156 -1.099673 0.093763 -3.117989 -0.992698 0.017958 1.088965 -0.017664 0.989618 1.042771 -1.867411 -1.244118 -2.364218 -0.000615 2.444499 0.244695 -1.400104 2.037956 0.347541 0.656255 -0.382751 0.254191 1.520525 1.747268 -3.708962 0.686704 -0.952314 -0.500017 -2.869210 -3.584741 1.046130 -2.967181 -2.922622 1.284811 -3.764849 0.522390 -2.492347 0.208933 -3.887349 -1.124734 0.703014 4.270600 1.244236 -1.203367 1.591659 -1.514630 2.762367 0.237964 0.282718 0.941988 3.140944 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -4.930266 5.811977 2.652223 -4.187711 8.366702 -0.532800 1.920052 3.201123 -3.954213 7.906228 -4.045522 1.009924 -1.341344 -7.596668 -0.065564 -4.913541 -1.822211 3.235654 0.580860 5.238107 3.452178 -4.873749 0.847581 -1.189052 -3.480074 -8.492764 -0.269273 2.369133 5.667649 -2.426480 3.901985 -0.356730 7.442319 -0.752667 7.392817 6.329393 1.451237 6.078562 2.083829 -0.967063 -2.508469 3.426065 -4.314838 -5.955826 0.809082 -1.754600 -5.613606 -4.215684 2.600492 -4.753399 -0.381721 6.495547 -1.847053 -0.478242 -4.973150 4.696816 3.862903 -1.050841 8.463639 0.701202 -2.087645 -1.969971 -7.016814 5.728430 -2.978231 -0.438810 -0.490339 -4.886192 3.108327 0.222663 -1.774281 -1.912620 -1.450833 6.621499 3.799726 -6.988462 0.322612 -4.248184 -11.945407 -5.236204 -3.505771 2.258963 1.288582 6.049816 1.107382 2.763494 1.280504 4.280626 -2.313407 -9.881652 1.332365 8.390932 -2.897495 -1.943533 -3.966937 7.819714 1.947149 0.731482 -3.737133 -0.683323 2.378530 -0.482756 3.612877 -6.046998 -1.735921 -8.172237 0.552418 -0.603658 0.248790 3.186622 2.298320 2.434232 4.730564 7.524930 -7.018950 2.994123 -7.227503 2.383171 -0.415043 1.969598 -1.481795 3.002877 -0.126896 2.667467 7.095690 -9.333399 3.422530 0.272202 -0.960742 -8.991303 0.064430 -3.148684 -1.575165 -2.733474 3.507622 -0.511489 -0.742293 -3.209156 0.653367 1.385533 -3.013970 -4.863000 2.980960 8.241044 -5.972190 2.314361 -1.584302 -1.853764 -1.737991 3.876836 5.607576 5.520045 9.014603 6.273813 1.010840 4.951648 -6.750555 -0.848413 7.579185 5.175556 -6.209397 7.460076 -5.124358 -2.939890 1.038973 4.686771 5.489158 2.685669 -8.440927 -7.014478 4.640722 0.886187 8.014771 2.260747 0.264922 -2.805914 8.122567 0.531699 -4.544359 7.942809 4.288674 -6.063937 3.159790 2.542977 -6.956047 -3.100704 5.293240 -5.211437 -0.336254 -1.472437 0.027614 3.294030 -2.764719 -2.955383 -0.815691 -6.575551 7.908681 -1.524155 1.714420 2.636496 -5.056045 -7.398520 5.650740 0.188887 -2.976733 -5.033127 -4.368334 -5.741728 -5.825218 2.230921 1.881813 -2.999406 -4.431493 -6.872462 -0.497280 3.692815 0.886933 4.134973 -6.885920 -3.550979 3.978125 2.967874 3.270638 -3.983699 -0.895411 -0.399316 1.370213 2.442485 0.072413 7.358247 9.700448 -3.808370 4.542611 -1.604497 -3.027433 3.332444 4.472319 -8.730069 8.807997 -0.036475 4.651189 0.356460 2.125097 -2.859962 0.727026 2.063083 -1.733332 1.092287 1.215773 -1.887408 -2.495487 0.166687 -6.121566 -2.895572 -0.779160 2.244294 -0.521225 2.293729 1.461315 -3.682399 -2.747934 -5.177491 0.538963 5.002119 -0.029152 -2.318700 4.881784 0.662844 1.661745 -0.281901 0.508914 3.236365 3.589483 -7.945362 0.942170 -2.066475 0.004225 -5.597725 -7.854016 2.073933 -5.887709 -5.506682 2.785891 -7.884568 1.056668 -5.255975 0.088252 -8.147461 -2.114758 1.695160 9.158302 2.273879 -2.792029 3.354549 -3.234321 5.246517 0.170895 0.839882 1.845261 6.003878 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -1.092567 0.917412 -0.548923 -0.868216 1.795059 -0.587194 -0.080887 1.948413 -0.472112 1.484815 -0.829330 0.220858 -0.019556 -1.398947 0.107883 0.045635 -0.031495 1.181691 -0.258835 0.636330 0.763014 -0.118928 0.060337 -0.190569 -0.876961 -0.822034 0.105082 0.546341 0.734590 -0.774981 0.136435 0.211660 2.138806 -0.544494 2.004108 1.381938 1.362710 1.251165 1.070149 -0.000406 -0.173519 0.727143 -0.829035 -0.989294 0.119857 -0.414773 -1.245279 -0.492262 0.545748 -1.044606 1.380205 1.228968 0.073345 0.201817 -0.740909 1.245574 0.596631 -0.901133 1.880040 0.361050 -1.160054 -0.350730 -0.800030 2.416420 -0.819605 0.354480 -0.323925 -0.994763 0.120265 0.336186 0.261528 -1.314505 -0.630211 1.160847 0.362338 -1.520736 0.557346 -0.612920 0.468179 -1.687578 -0.951693 0.708821 -0.131129 1.050042 -0.088360 0.462632 -0.560586 0.709686 -0.611826 -1.908408 0.317306 1.489644 -1.257066 -0.099519 -1.624302 0.821851 0.085536 0.276662 -0.801082 -0.878867 0.584178 -0.040274 0.702901 -1.155100 0.596325 -0.852946 -0.125414 0.110335 0.036780 1.452342 0.531537 0.825841 1.334464 1.551111 -0.259754 0.244966 -2.122822 0.606982 -0.124397 0.256493 -0.161859 0.326218 1.014831 0.595230 1.219376 -1.989866 0.909597 0.081329 -0.335707 -1.476746 0.188536 -0.427813 -0.641114 -0.683817 0.964705 -0.011214 -0.222324 -0.710415 0.662706 0.367703 -1.130702 -1.620315 0.294167 0.848678 -1.596998 0.237074 -0.349235 -0.302229 -0.326055 0.964213 1.148515 0.826659 1.953127 1.001425 0.126281 0.956699 -1.677551 -0.242855 1.208147 0.912350 -1.416572 1.600474 -1.549256 -0.650207 0.443574 1.313178 0.542334 0.747173 -1.252836 -1.092383 1.182411 0.380474 1.772659 -0.421146 0.025162 -1.053834 0.961723 0.111897 -0.807780 2.646526 1.043708 -1.599052 0.110847 0.489259 -0.042265 -0.571647 1.271498 -1.612826 -0.998935 -0.236658 0.191363 0.839376 -0.803316 -0.527614 0.515625 -1.266234 1.369891 -0.421726 -0.936907 0.187224 -1.738611 0.042882 1.518948 0.425373 -0.432480 -0.591204 -1.090126 -0.552594 -1.600496 0.476458 0.844375 0.030551 -0.867750 -1.233432 -0.075807 1.044636 0.155279 0.588703 -2.353983 -0.562044 1.157271 0.080740 0.509004 -1.613118 -0.192239 -0.307122 0.531955 0.645311 -0.577422 1.279476 2.013355 -0.842056 1.158744 0.645727 -0.870246 0.220883 0.880713 -1.970117 1.971016 0.310387 0.428600 0.238164 0.290086 -0.984551 -0.016918 -0.199272 0.522479 -0.234040 0.135723 -0.549678 -0.467779 -0.484192 -1.058280 -0.553412 -0.161702 0.652837 -0.546283 0.438622 -0.280417 -0.421483 -0.909598 -1.567053 0.029135 1.104825 -0.308043 -0.651284 1.303552 0.090111 -0.240299 0.983553 -0.112039 0.805007 1.211212 -1.674097 0.175123 -0.008928 0.307002 -1.711875 -1.584461 0.097733 -0.684717 -0.634253 0.104598 -1.443996 -0.895241 -0.822809 0.364753 -1.789055 -0.302387 0.662039 2.034203 0.540742 -0.791085 0.579575 -0.520163 1.294478 0.420957 0.114418 0.255141 1.154406 +PE-benchmarks/boruvkas-algorithm.cpp__main = -5.443456 4.708456 -0.340685 -4.207947 10.255752 -3.032378 1.624033 5.791322 -3.860677 7.498738 -4.216955 1.037530 -1.665153 -9.442380 0.638776 -2.218869 -0.238466 6.055599 -0.001127 4.959101 4.284449 -3.913105 0.773105 -1.636162 -3.174461 -6.729565 0.092825 2.507341 4.935268 -3.506478 1.446381 1.022779 9.846204 -0.726303 8.278212 6.889254 2.724255 7.410561 3.769037 -2.654516 -1.654584 4.048403 -3.970290 -7.338776 1.832287 -1.863549 -5.614870 -4.373120 3.194873 -4.721881 3.030147 6.701591 -1.258573 -0.338470 -5.873983 4.409099 4.803098 -1.160361 8.858083 1.581106 -2.833273 -1.434856 -6.340642 7.195684 -4.051098 -0.064901 0.007760 -5.551105 2.105519 1.210468 1.276626 -5.276757 -3.443612 5.647812 3.077895 -6.856886 1.439793 -3.176022 -6.554241 -7.112323 -6.152035 1.986383 -1.516636 6.526104 0.170573 2.414193 -1.422367 3.370655 -1.375784 -9.519955 0.841585 7.766852 -3.563511 -0.361482 -4.914211 7.205585 1.843834 0.052782 -4.555607 -3.034992 2.457927 -1.064015 3.992499 -4.071672 -0.030706 -6.350566 0.662606 -0.629591 0.500511 4.957537 3.852125 2.883458 4.597725 6.811861 -5.011310 1.482175 -9.787431 2.888313 -0.650189 1.912696 -1.159564 2.945042 1.837415 1.662347 6.623653 -10.643029 4.354511 0.656370 -0.615795 -8.321527 1.232528 -2.261452 -2.135826 -3.449194 5.067032 -0.630488 -1.212642 -2.589658 1.583516 1.665241 -5.204625 -5.100002 1.364444 8.547950 -7.794069 2.235768 -2.326451 -3.118843 -1.093117 3.071256 4.974756 5.579723 9.226401 6.796561 -0.284779 4.756172 -8.370705 -0.130879 8.277333 5.146728 -6.703575 7.334492 -5.033072 -2.449829 1.970695 5.778721 5.300953 1.794152 -6.962452 -6.006064 5.097975 0.872622 8.317633 0.900583 0.935513 -4.341852 6.601897 1.710434 -3.970975 11.308138 3.342509 -7.125838 3.290312 3.482941 -4.590883 -3.230267 4.502255 -5.490092 -1.588122 -2.329243 1.603934 3.882027 -4.357893 -3.453788 -0.289977 -6.679320 7.302573 -1.737147 -1.082660 2.466955 -6.796174 -3.909725 8.378620 0.739388 -2.622493 -4.761575 -6.044680 -4.292074 -7.167450 2.629088 1.723100 -2.028146 -4.244445 -6.751358 -1.147204 6.477281 0.643695 3.117084 -8.793638 -2.619958 4.504860 2.653422 2.909791 -6.994160 -1.319523 0.554150 2.020070 2.398012 -0.338224 6.053988 10.222096 -5.154022 3.267450 1.953986 -1.279099 3.529379 5.225669 -9.057182 9.120151 0.045282 6.430402 0.462798 2.295925 -3.545660 0.455145 1.343438 1.255886 -0.185397 1.426922 -2.698920 -2.497015 0.656089 -5.476603 -4.412966 -0.292921 3.307044 -0.074475 2.267638 -0.495566 -2.764782 -2.612545 -5.212952 0.934078 5.695964 -0.440882 -3.133729 4.805128 1.357858 0.306467 1.478665 0.827185 3.405553 5.110610 -8.347374 1.813869 -1.731631 1.275332 -5.826628 -9.372825 2.526104 -5.030418 -4.562679 3.653642 -9.104216 -1.135898 -4.966363 1.861572 -9.697317 -0.458320 0.896226 9.134284 2.470043 -2.083867 4.208733 -2.691421 5.109882 -0.088416 0.457439 1.428659 6.967650 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -1.129577 1.061861 0.484666 -0.934506 1.956267 -0.184791 0.148674 1.170895 -0.541359 1.886231 -1.125099 0.468253 -0.192717 -1.462295 0.008747 -0.619530 -0.296489 0.638252 -0.087832 0.733103 0.667015 -0.803163 0.284794 -0.399772 -0.762246 -1.968975 0.033009 0.474542 0.988155 -0.330813 0.454475 -0.042397 1.756501 -0.115195 1.274687 1.262870 0.651042 1.489113 0.709764 -0.062763 -0.199503 0.694532 -0.808988 -1.139886 0.293063 -0.539322 -1.264228 -0.749161 0.472157 -1.416754 0.391244 1.338322 -0.253753 -0.336598 -1.074073 1.234664 0.875497 -0.519171 1.883678 0.209835 -0.627572 -0.865979 -1.431690 1.731987 -0.884006 0.169678 -0.027581 -1.258344 0.343478 0.387395 -0.159933 -0.527838 -0.508653 1.148774 0.630049 -1.485289 -0.022616 -0.795244 -1.912436 -0.762998 -0.735752 0.532923 0.242926 1.248162 0.246528 0.562138 0.239369 0.796514 -0.290514 -1.954335 0.079587 1.879416 -0.815309 -0.246304 -1.118446 1.417406 0.274422 -0.050608 -0.632294 -0.194385 0.451144 0.064350 0.696188 -1.547085 -0.497308 -1.772395 0.536989 0.187482 -0.012623 0.569749 0.363415 0.539499 0.808276 1.499718 -1.191073 0.501715 -1.806992 0.486455 0.386973 0.279912 -0.440948 0.499664 0.005441 0.713782 1.561359 -2.057257 1.057958 0.008955 -0.554067 -1.667319 -0.053296 -0.414151 -0.383565 -0.472945 0.829670 -0.104895 -0.180457 -0.520675 0.393608 0.182589 -1.031471 -1.496562 0.430075 1.641465 -1.520335 0.419973 -0.345663 -0.355638 -0.374419 0.896209 1.115456 1.014663 1.767029 1.172194 0.297463 1.131303 -1.541056 0.090503 1.762790 1.351388 -1.453254 1.563016 -1.316055 -0.464150 0.310717 0.900109 0.924758 0.709785 -1.643268 -1.395900 1.033939 0.086278 1.793618 0.825637 0.201490 -0.834245 1.557469 -0.183009 -0.612110 1.851969 1.242658 -1.461202 0.583123 0.819720 -1.408280 -0.588926 0.994661 -1.095737 -0.121214 -0.346499 -0.069645 0.792533 -0.662374 -0.739305 -0.171253 -1.416869 1.811546 -0.226661 0.289114 0.417768 -1.153825 -1.327036 1.372649 0.119665 -0.548645 -0.972967 -0.965873 -1.685632 -1.520051 0.381515 0.641563 -0.732324 -0.909056 -1.534276 -0.138587 0.989332 0.010834 0.728079 -1.847970 -0.650217 0.951424 0.589212 0.655326 -0.912036 -0.219138 -0.088273 0.213659 0.617644 -0.300543 1.520589 1.971882 -0.831942 1.383941 -0.264189 -0.562414 0.493293 1.022046 -1.683781 1.897739 -0.183609 0.852978 0.173839 0.576902 -0.684601 0.219856 0.187552 -0.359216 0.034123 0.268588 -0.748504 -0.562052 0.026921 -1.305462 -0.619017 0.054812 0.639133 0.109240 0.338280 0.173148 -0.554296 -0.679298 -1.200523 0.154379 1.008807 -0.105596 -0.611155 0.951903 0.274444 -0.095128 -0.347070 0.199904 0.740042 0.967723 -1.705735 0.368432 -0.254140 -0.130405 -1.545991 -1.604665 0.272780 -1.067377 -1.272777 0.460120 -1.957861 -0.117416 -1.016783 0.268686 -1.896530 -0.401871 0.246799 1.833454 0.392401 -0.582521 0.869178 -0.568868 1.026148 0.190191 0.186199 0.374950 1.106325 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.858042 0.340783 -0.036895 -0.746731 2.109208 -0.178269 -0.158681 1.074038 -0.159101 1.217227 -0.926557 0.150722 -0.330855 -1.135217 0.152181 -0.022181 0.093772 0.643791 -0.496042 0.139361 0.593445 -0.161414 0.472020 -0.383953 -0.410810 -1.188835 -0.144406 0.414877 0.567465 -0.027239 -0.339936 0.074504 1.330874 -0.378489 0.710855 0.653513 0.946508 1.122896 0.234320 -0.278764 0.421179 0.517485 -0.504281 -1.192130 0.455977 -0.643938 -1.104503 -0.479821 0.755543 -1.164246 0.386674 0.944996 -0.061406 -0.480311 -0.730317 0.958796 0.655514 -0.248110 1.371041 0.274044 -0.858851 -0.737794 -0.998237 1.380538 -0.923230 0.667830 -0.377159 -1.328141 -0.625813 0.794057 0.063878 -0.500907 -0.778367 0.402925 0.456594 -0.884237 0.356671 -0.302186 0.441058 -0.721615 -0.818055 0.392332 -0.497629 0.882719 0.040444 0.343926 -0.090476 0.243052 0.099446 -1.222589 -0.162354 1.084107 -0.626259 0.317309 -0.774179 0.298727 0.141591 -0.392429 -0.475882 -0.553911 0.237029 0.049392 0.540629 -0.755585 0.363913 -0.988576 0.530644 0.456463 0.452293 0.519520 0.114929 0.200190 0.206755 0.755677 -0.423314 0.136070 -1.446257 0.312929 -0.124793 0.197241 -0.610216 0.424064 0.620632 0.332123 0.969437 -1.481339 1.166052 0.079372 -0.478622 -0.717132 0.363787 0.032661 -0.403243 -0.116317 0.807878 -0.316952 -0.257118 -0.101499 0.590709 -0.014906 -1.125315 -0.284178 -0.216014 0.708895 -1.134486 0.377049 -0.309429 -0.547475 0.058100 0.513253 0.668921 0.704732 1.341597 0.975362 -0.207236 0.621493 -1.369918 0.600583 1.487057 0.423194 -1.080204 0.911026 -0.958250 0.016307 0.450940 0.593483 0.498782 0.861990 -0.435173 -0.404718 0.162298 0.123950 1.319625 0.544472 0.487499 -1.235642 0.274643 -0.553176 0.263628 1.566786 0.793440 -1.464840 0.523850 1.057701 -0.789787 -0.397967 0.347220 -0.756426 -0.323020 -0.698452 0.375027 0.989013 -0.978667 -0.878686 -0.000107 -0.969391 1.200172 -0.158797 -0.327418 0.472148 -1.070252 -0.218085 1.297391 0.222594 -0.200349 -0.574944 -0.947258 -0.823761 -1.435630 0.254217 0.507783 -0.555126 -0.482682 -1.014538 -0.436911 1.035108 -0.022187 0.398945 -1.746724 0.156776 0.766223 0.295818 0.477291 -0.685971 -0.217879 -0.046903 -0.345913 0.353343 -0.624223 0.379598 0.964805 -0.962563 1.017068 0.167449 -0.495261 0.254814 0.774760 -0.822854 1.427383 0.118255 0.866607 0.143253 0.669085 -0.520570 0.414436 -0.183766 -0.357091 -0.242175 0.622296 -1.047490 -0.539762 0.534628 -0.729427 -0.957505 0.243190 0.818736 0.453950 0.150864 -0.258803 -0.382493 -0.410760 -0.535466 0.333297 0.757509 -0.508571 -0.836438 0.413883 0.595388 -0.749013 -0.655436 0.387270 0.491443 1.081795 -1.274754 0.608316 0.074482 0.210632 -1.465504 -0.930427 0.092987 -0.496370 -0.581562 0.629423 -1.626530 -0.669442 -0.638078 0.645334 -0.917519 -0.193190 0.101448 1.342986 0.269455 -0.186450 0.985134 -0.118433 0.430721 -0.056822 -0.072692 0.284952 0.682399 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -16.605905 14.977786 11.369767 -11.666680 31.026507 0.178432 1.906298 15.549179 -19.542138 26.591714 -10.813362 2.487918 -6.511031 -22.670607 0.617528 -12.606820 -5.383795 7.719051 0.848229 18.603305 11.910003 -15.717480 2.990922 -1.919139 -11.519275 -17.423269 -3.349983 8.232845 26.073130 -13.559547 4.820234 -2.470935 25.809909 -5.805221 25.454263 20.309602 8.110528 18.432233 5.794661 -19.073769 -11.402387 13.887541 -17.849427 -16.670163 2.997773 -9.311274 -17.728200 -7.977280 10.216697 -7.986417 -8.828024 22.877839 -7.794731 -0.253090 -14.351444 19.741315 7.502115 -2.309973 30.674689 1.375537 -6.307203 -10.527637 -26.853931 18.531701 -8.221759 4.325187 -12.070590 -16.728122 8.492045 -3.493289 -7.905405 -15.051935 -3.998066 26.856916 10.882772 -22.901941 2.850113 -13.900869 -28.447455 -20.991741 -18.045341 6.841709 -0.621836 19.215333 2.538571 9.664026 4.514219 17.015079 -9.143303 -37.127017 7.727844 26.339469 -14.465142 -6.791365 -10.385452 21.755488 1.281191 6.171636 -15.264981 -1.906206 8.344596 -1.343579 12.883404 -29.024490 12.999580 -26.935963 0.040961 -4.816305 7.240584 10.315697 12.660678 7.680811 19.880065 28.965064 -20.751678 0.970228 -21.927827 4.093701 -7.262674 7.717574 -7.148529 16.305793 1.576629 8.268709 27.556056 -35.703543 7.848208 -1.727279 -4.691303 -30.490839 0.751788 -13.949176 -6.514669 -9.173750 13.542996 -3.614197 -4.581360 -13.770687 5.711218 5.912074 -15.024676 -11.019796 10.437666 24.698488 -24.867411 6.681793 -6.194814 -7.793541 -3.321702 15.360022 21.950928 22.583144 30.441873 22.646956 0.262214 17.018049 -25.136107 -0.573167 22.558037 7.788646 -23.259707 26.529929 -22.183678 -9.559431 4.457434 18.204627 21.633569 11.723775 -24.784892 -23.075424 20.216888 8.671487 27.952532 3.223565 4.435319 -4.376665 22.756137 -4.379476 -17.543321 25.826054 8.406191 -22.562085 13.012496 6.203694 -13.994104 -7.505503 17.487895 -22.345404 1.882167 -7.695895 -2.693936 14.645924 -11.522354 -7.941354 0.857902 -22.720003 29.255366 -5.535956 0.703336 10.875560 -18.283454 -21.750813 20.102868 2.970061 -10.542187 -21.245132 -17.803642 -20.201320 -18.645491 9.141339 4.383695 -7.873221 -17.143184 -25.392231 -3.303670 13.182785 7.958917 15.944566 -31.163405 -8.469659 12.683191 10.227623 17.494370 -7.754158 -3.201355 -2.342448 -2.462341 9.783638 -5.952288 23.732252 33.168539 -15.321780 17.762150 -7.481539 -12.065665 8.784096 12.440904 -31.088908 30.425846 4.443677 21.337493 -1.231793 8.200525 -12.228662 4.562190 7.596263 -3.353718 5.810437 3.038065 -3.235814 -9.769360 -3.293779 -20.651234 -12.441072 -6.819627 5.309693 -5.016133 9.368284 0.168426 -12.224634 -11.530453 -15.447439 3.061824 18.211816 -5.241050 -6.851168 17.679107 -2.095103 6.503521 3.382909 2.368408 8.752173 12.703126 -28.752758 -2.106669 -7.204606 3.753692 -17.505886 -24.221498 -0.981080 -14.365517 -10.891036 13.267612 -24.226982 4.172228 -18.103884 -2.679517 -24.103328 -6.284435 5.496884 31.671842 9.830037 -13.872425 11.800306 -10.263889 18.411415 1.767207 1.429506 3.493644 14.685625 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -4.912633 5.142220 1.816370 -4.254227 10.627854 -1.520256 1.602879 4.121684 -4.779822 8.584055 -3.607944 0.943314 -1.476222 -9.012887 0.320511 -4.248729 -1.197171 3.888159 0.646639 5.358194 3.156878 -5.083192 1.293172 -0.617320 -3.567260 -9.165477 -0.443155 3.093018 6.967043 -4.019400 2.995543 -0.086730 8.809120 -1.626695 7.766666 6.335540 1.962388 5.607566 3.212969 -4.260172 -1.893222 3.080600 -4.372503 -5.736492 0.381707 -1.297073 -6.695836 -3.705497 3.232499 -4.191213 -2.053091 6.863245 -2.078565 -0.572831 -5.627741 5.823392 3.836183 -1.477138 8.797877 0.423792 -2.016152 -2.979986 -7.749300 6.976153 -3.423091 -1.247933 -2.199342 -5.332937 2.860913 1.024598 -2.757080 -2.733400 -1.513073 7.153887 4.713047 -7.336607 0.252417 -3.932216 -10.753050 -6.502050 -4.488451 2.604311 -0.237218 6.348734 1.453697 3.233693 1.955375 4.299454 -2.410748 -10.643414 1.833655 8.830765 -3.227985 -2.547593 -3.687110 8.158692 2.473916 0.047018 -3.757933 -2.189216 2.009851 -1.678668 3.963728 -7.319949 1.221447 -8.405519 -0.618453 -1.265960 1.571689 4.811517 3.119918 2.213886 4.656604 7.897308 -7.439009 0.713882 -8.062522 2.591872 -1.495241 1.721490 -2.311159 3.535676 0.789692 3.444257 7.632361 -11.248417 3.477738 0.126193 -0.325575 -9.186240 -0.073803 -2.466112 -1.313377 -2.473203 3.883468 -1.464444 -0.642367 -2.945992 1.383904 2.218898 -3.979512 -3.522181 2.833732 9.403586 -7.741009 2.888057 -1.402040 -2.087889 -1.157233 3.757633 6.526538 6.297388 9.502558 6.733390 0.282102 6.309356 -8.407918 -0.097942 7.988139 3.572976 -6.135804 8.520658 -6.073163 -3.316995 0.854130 6.144744 5.974738 1.853604 -8.462566 -7.143621 5.770366 1.844287 8.213259 0.601996 -0.076979 -3.252447 7.901689 0.910093 -4.192945 8.868772 3.396730 -6.781335 4.728714 3.407344 -7.054078 -2.955880 5.310376 -6.653583 -0.467515 -2.466025 0.532382 4.451393 -3.180751 -2.427043 -0.863794 -6.285413 7.969802 -1.873778 -0.719980 3.373529 -4.769391 -7.036641 6.777620 0.371398 -2.044857 -5.603068 -6.168092 -5.964456 -6.357444 2.018678 1.420003 -3.410888 -3.579145 -7.129137 -1.580833 4.979423 1.649427 4.966819 -10.087723 -1.898395 4.374435 4.735903 3.351129 -3.422608 -0.546152 0.617319 0.395415 1.241352 -1.067656 7.475872 9.416740 -4.538857 4.895078 -2.507318 -3.802038 4.187816 3.698008 -9.639984 9.548165 0.980384 6.484149 0.785054 2.050280 -2.952116 1.357489 1.817721 -2.225497 0.435763 0.878236 -2.626355 -3.137719 0.908527 -5.550020 -5.348461 -1.444305 3.085241 -0.286860 2.530841 -0.029864 -3.483746 -2.765282 -4.880260 1.575312 4.696310 -0.555196 -1.995818 5.643334 1.727841 1.714920 -0.284175 0.438608 3.615139 3.605249 -8.600675 1.155778 -2.099397 2.160524 -5.559403 -9.102100 2.489042 -5.566812 -4.951849 2.924787 -9.450914 -0.194097 -5.360006 0.238181 -9.100826 -1.111359 2.238858 10.127710 1.795880 -3.217356 3.588414 -3.371483 4.132753 -0.597202 1.128489 1.995782 5.362563 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -4.166422 3.281225 2.438331 -2.832032 7.828800 -0.307744 0.298373 4.322897 -3.923804 6.070470 -2.995744 0.391150 -1.635927 -5.392759 0.281989 -2.656104 -1.044629 2.394449 -0.359825 3.776647 3.147543 -2.894439 0.599534 -0.819343 -2.562844 -3.679199 -1.046569 1.822547 5.471309 -2.956811 0.546077 -0.217101 6.484725 -1.318660 6.291518 4.947533 2.560506 4.860247 1.089290 -3.423805 -2.139382 3.538093 -4.134932 -4.601632 1.099779 -2.573265 -4.144584 -1.924657 2.592764 -2.327212 -0.745749 5.334752 -1.548814 -0.031937 -3.143069 4.516706 1.739471 -0.256999 7.271635 0.787741 -2.356767 -1.968916 -6.385342 4.814972 -2.315190 2.078797 -2.582314 -4.609869 1.129637 -0.453201 -0.796776 -4.263604 -1.657957 5.841382 2.159700 -5.141944 1.137173 -3.009239 -4.995884 -4.734835 -4.673541 1.604209 -0.548508 4.516304 0.233489 1.950869 0.206036 3.577960 -1.776887 -8.509837 1.292647 6.300959 -3.735343 -0.642166 -3.074894 4.084939 0.090649 1.439324 -3.540107 -0.913944 2.100249 0.002347 2.976858 -5.926394 2.877189 -5.880600 0.574496 -0.638747 1.491996 2.422196 2.715698 1.942417 4.502677 6.533110 -4.094797 0.475949 -5.651495 1.273040 -1.949781 1.888387 -1.560767 3.662650 0.841176 1.640381 6.268847 -8.191992 2.318730 -0.326606 -1.477372 -6.844426 0.644423 -3.258491 -2.040640 -2.277768 3.547332 -0.515524 -1.336388 -3.114577 1.474370 1.059835 -3.869928 -3.037640 1.808063 4.968512 -5.754586 1.313764 -1.670398 -2.111423 -0.869304 3.659367 4.914906 5.179781 7.297704 5.442205 -0.140856 3.215304 -6.207553 0.084103 5.597576 1.751436 -5.748982 5.965152 -5.138800 -1.805189 1.532484 4.177558 4.673294 3.264971 -5.156385 -4.845332 3.969584 1.748946 6.794573 1.282416 1.388535 -1.627275 4.623574 -1.402419 -3.983139 6.916181 2.229749 -5.927331 2.749397 1.753240 -2.589647 -2.055768 3.842461 -5.155598 0.036980 -2.032567 -0.265337 3.529304 -3.302779 -2.288941 0.740648 -5.577287 6.948607 -1.252617 -0.089631 2.410363 -5.128072 -4.666493 5.512567 0.890079 -2.525772 -4.700022 -4.172746 -4.176175 -4.834619 2.233951 1.388600 -1.661906 -4.213934 -5.906763 -0.580064 3.695330 1.372807 3.535430 -6.909516 -2.107552 3.058405 1.573250 4.234365 -2.826455 -1.054684 -0.973542 -0.544266 2.690422 -1.598367 4.866811 8.128834 -3.842281 4.204074 -0.352487 -2.823571 1.487609 3.412039 -7.042800 7.208112 0.853438 4.689541 -0.299773 2.214444 -3.194212 0.810224 1.479840 -0.102227 1.014547 1.235537 -1.074724 -2.094789 -0.778956 -5.181938 -2.700694 -1.049040 1.503074 -0.894010 2.029626 -0.177101 -3.005857 -2.628725 -3.646562 0.592653 4.626705 -1.457115 -2.364791 3.868955 -0.502842 0.445550 0.623455 0.771787 1.975317 3.654555 -6.774020 -0.226749 -1.242228 0.635782 -4.790889 -5.572532 -0.576030 -3.476843 -2.562689 3.007819 -5.700210 0.297101 -4.191376 -0.064212 -5.648060 -1.657439 1.136665 7.456516 2.729022 -2.936943 3.170089 -2.073552 4.639973 0.649394 0.026340 0.792990 3.827042 +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) = -2.226395 2.075460 1.764646 -2.346550 4.926023 0.170955 0.053835 1.958645 -1.671013 3.275225 -2.507788 0.443821 -0.872926 -3.145228 0.379901 -1.831223 -0.625591 1.060658 -0.648384 1.977728 1.610728 -1.573344 0.914411 -1.030949 -1.374237 -3.370903 -0.469059 1.129351 2.688387 -0.420180 0.707537 -0.304624 3.394422 -1.048519 2.261359 1.974016 2.120008 2.979906 0.320797 -1.825077 0.087793 1.668774 -1.856989 -2.649197 0.888302 -1.564492 -2.772253 -1.089355 1.720808 -2.297217 -0.436178 2.878092 -0.532690 -1.412693 -2.271918 3.033004 1.770170 -0.638037 3.816849 0.453553 -1.290954 -2.195451 -3.618079 3.182988 -2.096761 1.633814 -1.520556 -2.528581 -0.349232 1.048424 -0.653311 -0.835672 -1.767400 2.120073 1.650710 -2.786310 0.874983 -1.641276 -1.794718 -2.193881 -1.952568 1.262349 -0.617519 2.676687 0.155947 1.231904 0.528242 1.563899 -0.370213 -3.939679 -0.102443 3.191042 -1.661524 -0.543088 -2.033009 2.207977 0.317456 -0.463859 -1.793591 -0.863338 1.121332 0.042690 1.634857 -3.561366 1.363061 -3.803104 0.914391 1.139369 1.014502 1.894668 0.653764 1.350520 1.445933 2.778782 -2.336434 0.283354 -3.541746 0.088068 -0.413859 0.781714 -1.561418 1.782009 0.374963 1.383820 2.986107 -4.412575 2.746842 0.175073 -1.263656 -2.351425 0.658997 -0.591786 -1.005959 -0.733233 1.784854 -0.443904 -0.747833 -0.628598 1.087629 0.365150 -2.140545 -1.299871 0.519107 2.828445 -3.258235 0.980761 -0.786445 -1.227046 -0.011126 1.788546 2.392196 2.117960 3.614020 2.744445 -0.089796 2.116509 -3.299444 1.021557 3.686350 0.894971 -3.134774 3.043958 -2.924297 -0.662532 0.796991 1.819577 2.017726 2.434789 -2.784283 -2.856195 1.271301 0.202230 3.649378 1.253131 0.553745 -2.927599 2.497865 -1.633179 -0.592914 3.804501 1.819587 -2.974872 0.679171 2.181005 -3.129080 -1.572681 1.472267 -2.274305 -0.216406 -1.417784 0.312107 2.353915 -1.788909 -2.388235 -0.537474 -2.913730 3.669735 -0.598549 -0.417693 0.859449 -2.177054 -2.954205 3.016930 0.155954 -1.282903 -2.344384 -2.319282 -2.091210 -3.426256 1.025483 1.188360 -1.317067 -2.064569 -3.038041 -0.799148 1.837061 -0.014101 1.220328 -5.047799 -0.810137 1.886459 1.273568 1.736924 -1.029403 -0.514008 -0.299183 -0.633260 1.021342 -1.178926 2.413169 3.743033 -2.392137 2.993719 -0.716211 -2.338906 0.857133 2.492914 -2.903607 4.190127 0.181217 2.698022 -0.105912 1.554791 -1.563239 0.839822 0.457443 -1.777739 0.152205 1.010185 -1.774452 -1.370771 0.209001 -2.286960 -2.209873 0.360202 1.542554 0.313372 0.787038 0.214187 -0.987082 -1.526761 -1.331976 0.520212 2.274075 -1.114943 -1.525976 1.524764 1.028091 -0.599393 -1.126998 0.669072 1.349106 2.475072 -3.720962 1.266274 -0.559896 0.228535 -3.620759 -2.966246 0.407295 -1.880985 -1.731578 1.982438 -3.957281 -0.604665 -2.182691 0.961280 -2.197406 -1.063767 0.888664 3.736839 0.889145 -1.457369 2.223476 -1.036432 2.058384 0.066657 -0.210134 0.752922 1.697592 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.052335 -0.005740 -0.147207 -0.000978 0.063046 -0.105738 -0.171282 0.144791 0.197086 0.128098 -0.004474 -0.061771 -0.011220 -0.108196 0.033503 0.161706 0.052564 0.108405 0.014802 -0.085731 0.031733 -0.018487 0.010660 0.010839 -0.019818 -0.166790 0.039125 0.046433 0.027042 -0.055583 -0.151833 0.069417 0.138396 -0.009165 0.102513 0.072266 0.044621 0.044374 0.188083 0.013744 0.021259 0.033550 -0.026519 -0.078293 0.018781 -0.002548 0.034522 -0.022139 0.070333 0.013453 0.163375 0.031624 -0.009573 0.022815 -0.101903 0.000146 -0.076853 0.113575 0.114215 0.018646 -0.001042 -0.046814 -0.024641 0.195557 -0.166167 -0.084264 -0.057251 -0.084057 0.001178 0.064299 -0.047544 0.061380 0.068526 0.026262 -0.022522 -0.074396 0.038725 0.029578 0.204078 -0.015068 -0.112573 0.058513 -0.072587 0.070680 -0.003009 0.027112 -0.099582 0.030770 0.011068 -0.067925 0.024837 -0.039477 -0.074070 0.041838 0.215905 0.077737 0.109856 -0.038681 0.129740 -0.013867 0.002964 -0.071417 0.045190 0.106082 0.158544 0.044697 0.097033 -0.058624 0.052095 0.032802 0.112061 0.000744 0.018785 0.051164 0.081915 -0.151773 -0.134861 0.057853 0.021254 -0.019816 -0.015802 0.037572 0.093381 -0.021665 0.071241 -0.114049 0.037919 0.015506 0.115428 0.014884 0.023588 0.024231 -0.013498 -0.048944 0.091840 -0.025970 -0.029447 -0.008605 0.056924 0.046948 -0.138533 0.084006 -0.051736 0.055180 -0.051617 0.031431 -0.025076 -0.065208 0.021039 -0.018987 0.013009 0.087491 0.077536 0.075682 -0.052485 -0.083383 -0.137063 0.031177 0.082784 -0.139594 -0.038583 0.079884 -0.058001 -0.044990 0.052218 0.108154 0.048257 0.031622 0.089770 0.019317 -0.050698 0.061575 0.086875 -0.096649 0.040311 0.031350 -0.019957 0.104900 0.006003 0.167024 -0.054079 -0.104019 0.051362 0.072213 -0.117524 0.035426 0.023963 -0.024253 0.088076 -0.123493 0.048735 0.139168 -0.117015 0.009491 0.018869 -0.048543 0.058263 -0.023890 0.005329 0.099939 -0.100962 0.211650 0.135277 0.080411 0.057344 -0.063388 -0.116044 -0.119907 -0.093108 -0.014940 -0.021373 -0.047526 0.084756 -0.058070 -0.081822 0.122126 0.039497 0.015238 -0.165346 0.089877 0.070979 0.025554 -0.078806 0.087735 -0.001132 0.100065 -0.062793 0.002975 -0.055980 0.046972 0.020597 -0.055886 0.046296 0.107572 0.076148 0.082344 0.002223 -0.102309 0.096780 -0.041590 -0.165677 0.075603 0.010344 -0.046872 0.014668 -0.043493 -0.026113 -0.059048 -0.024055 -0.061611 -0.037050 0.087093 -0.051418 -0.047945 -0.035475 0.083869 0.144334 0.021935 -0.068069 -0.056267 0.010781 -0.048309 0.062496 0.032368 0.078303 -0.032334 0.098779 0.052612 -0.034473 -0.142274 0.008860 -0.001941 0.069614 -0.087080 0.015385 0.066216 0.106180 -0.028712 -0.017543 -0.040865 0.061589 0.033820 0.000000 -0.183618 -0.082187 -0.008678 0.050199 -0.089278 0.146458 -0.030371 0.102761 0.009955 -0.054378 0.058886 -0.012625 -0.034188 0.053625 -0.047269 -0.023369 0.069161 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__introsort_loop(int*, int*, long, __gnu_cxx::__ops::_Iter_less_iter) = -2.694571 2.303818 1.314239 -2.844950 7.157919 -0.378304 0.348024 2.544905 -2.511166 3.984766 -3.089238 0.501662 -1.184956 -4.884532 0.583385 -1.543400 -0.509090 1.768950 -0.867843 2.406426 1.986269 -2.255690 1.272522 -1.264603 -1.484197 -4.338119 -0.481162 1.444573 3.469324 -0.850567 0.551729 -0.348868 4.586422 -1.155630 2.687566 2.282582 2.276982 3.687656 0.803959 -3.185100 0.303879 2.108586 -2.098178 -3.608291 1.150209 -1.770553 -3.949231 -1.724550 2.160331 -3.327327 -0.748432 3.515385 -0.604046 -1.807329 -3.038746 3.910299 3.082888 -0.744503 4.544383 0.619361 -1.376428 -2.839725 -4.442491 3.706890 -2.495972 1.637450 -1.589263 -3.327856 -0.463912 1.467325 -1.082963 -1.367611 -2.093874 2.395287 2.389329 -3.237536 1.007081 -1.823308 -2.440491 -3.341350 -2.901614 1.282429 -1.609079 3.504765 0.089441 1.409469 1.019026 1.552150 -0.210624 -4.661212 -0.248988 4.269074 -1.711503 -0.930288 -2.181925 3.271757 0.543964 -0.762562 -2.408838 -1.487184 1.105260 -0.062660 2.017605 -4.044272 1.724907 -4.506524 0.901630 1.316124 1.357896 2.954280 1.504696 1.239456 1.206628 3.188151 -3.413622 0.343115 -5.105501 0.226819 -0.675597 1.116228 -1.925171 2.078164 0.956230 1.644111 3.416454 -5.983273 3.828546 0.400236 -1.248390 -2.860425 0.882135 -0.489560 -1.202785 -0.741146 2.247924 -0.787579 -0.851180 -0.561732 1.390019 0.635831 -3.178307 -1.355754 0.380160 4.381477 -5.050166 1.251619 -0.979827 -1.654456 0.149580 1.828189 2.784586 2.474326 4.760303 3.387209 -0.477470 3.139385 -4.527409 1.623923 5.263585 0.900048 -3.593621 3.526363 -3.289528 -0.557920 0.988511 2.421402 2.647535 2.532443 -3.261910 -3.102183 2.082320 0.222587 4.314515 1.422978 0.809147 -4.354465 3.140843 -1.268386 -0.348933 5.340170 2.407268 -3.828210 1.537457 2.809429 -4.258443 -1.781294 1.424255 -2.591273 -0.260730 -1.997365 0.735563 2.873194 -2.285957 -3.255435 -1.043061 -3.397465 4.246902 -0.791221 -1.057944 1.143052 -2.384588 -2.730323 4.274017 0.366367 -1.399226 -2.870006 -3.468084 -3.242983 -4.252479 1.305340 1.219882 -1.798736 -2.304229 -3.579068 -1.192307 3.145194 0.007304 1.339546 -7.016203 -0.446076 2.211386 2.467975 2.119408 -1.697821 -0.658458 -0.040182 -0.890907 0.984009 -1.314639 2.969248 4.827674 -3.117566 3.502365 -0.818098 -2.387155 1.459214 3.346539 -3.466917 5.013933 0.256018 4.735821 -0.263566 1.934268 -1.640423 1.161530 0.485009 -2.177527 0.032274 1.268587 -2.399688 -1.700723 0.843433 -2.608421 -3.643052 0.557258 2.046473 0.929564 0.966406 -0.461028 -1.319007 -1.490120 -1.359355 0.728149 2.743289 -1.274392 -2.187005 1.560850 1.574826 -0.661573 -1.701865 0.856903 1.643897 2.998372 -4.449995 1.780352 -0.756559 0.832871 -4.377520 -3.940750 0.948455 -2.228446 -2.231467 2.829620 -5.354875 -1.076168 -2.640080 1.378393 -3.713281 -0.901609 0.663025 4.425326 0.851606 -1.417077 2.767746 -1.049776 2.246502 -0.212002 -0.153025 1.020037 2.104723 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.454043 0.257563 -0.026937 -0.174629 0.634810 -0.104094 -0.249480 0.563323 -0.139676 0.672620 -0.246927 -0.011924 -0.147637 -0.501005 -0.049344 -0.075538 -0.065009 0.284607 -0.058116 0.104690 0.309907 -0.140418 0.015461 -0.005351 -0.268101 -0.277810 -0.117582 0.170210 0.566930 -0.656869 -0.224913 0.007996 0.796891 -0.196581 0.880355 0.554012 0.423522 0.416331 0.254557 -0.107600 -0.277250 0.392889 -0.461727 -0.405385 0.005602 -0.255965 -0.192330 0.057752 0.344877 0.086380 0.359193 0.479364 -0.218594 0.159891 -0.247168 0.449546 -0.193280 0.068818 0.871156 -0.002729 -0.430723 -0.157692 -0.610541 0.984950 -0.404118 0.288401 -0.329992 -0.412830 0.123501 -0.186447 -0.092200 -0.552577 -0.134665 0.751754 0.060551 -0.596412 0.084760 -0.297146 -0.118957 -0.376685 -0.625336 0.223163 -0.010724 0.324130 0.049678 0.225347 -0.160209 0.495044 -0.265289 -0.993097 0.286756 0.577352 -0.617086 0.193996 -0.165006 0.256693 -0.171819 0.255021 -0.177680 -0.042020 0.195378 -0.046078 0.307633 -0.605237 0.654166 -0.506391 0.205567 -0.255932 0.093280 0.051000 0.513671 0.188477 0.659464 0.828350 -0.053507 -0.297908 -0.682680 0.146754 -0.110428 0.099202 -0.069610 0.432190 0.023797 0.050385 0.801929 -0.870492 0.083451 -0.147277 -0.121708 -0.804123 -0.028385 -0.462102 -0.241979 -0.277857 0.392894 -0.014313 -0.162934 -0.491192 0.147193 0.151749 -0.691010 -0.404052 0.256341 0.250678 -0.415735 0.092871 -0.165177 -0.207993 -0.154893 0.471544 0.533741 0.634516 0.789118 0.572482 0.027129 0.164663 -0.676272 -0.137571 0.337250 0.008768 -0.686577 0.695610 -0.757018 -0.264579 0.224860 0.585571 0.493577 0.335359 -0.355474 -0.365333 0.524474 0.320010 0.697212 -0.215544 0.151857 0.295103 0.333804 0.106747 -0.579025 0.907632 -0.014970 -0.764245 0.394764 0.062361 0.194267 -0.105898 0.546796 -0.637037 0.075541 -0.309180 -0.068080 0.414254 -0.416881 0.011659 0.314248 -0.609346 0.863864 -0.132487 -0.050431 0.438112 -0.836052 -0.329087 0.633499 0.131046 -0.181348 -0.510608 -0.453649 -0.392124 -0.465934 0.178567 0.176923 -0.145870 -0.314831 -0.647470 0.037047 0.418295 0.285807 0.582698 -0.666280 -0.314015 0.345402 0.067553 0.386090 -0.121847 -0.114010 -0.110112 -0.015393 0.397241 -0.311318 0.518460 0.863090 -0.358178 0.576709 0.172375 -0.327681 0.046716 0.225269 -0.869944 0.750213 0.085258 -0.109617 0.035036 0.179647 -0.469313 0.034720 0.127968 0.285210 0.111204 -0.048576 -0.007951 -0.212472 -0.330076 -0.673973 -0.104604 -0.263978 0.062776 -0.072727 0.253625 -0.165606 -0.248867 -0.350312 -0.508180 0.080494 0.469902 -0.049209 -0.195123 0.578623 -0.249230 0.001640 0.390035 0.030196 0.115387 0.384485 -0.721263 -0.270881 -0.018683 0.104650 -0.500253 -0.525098 -0.392240 -0.231219 -0.061651 0.124319 -0.590764 -0.038258 -0.388084 -0.151657 -0.574539 0.001537 0.119501 0.912256 0.461636 -0.405862 0.326358 -0.236480 0.494427 0.238945 -0.082680 0.056171 0.397356 +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) = -2.913280 2.153384 1.487080 -3.228811 6.681498 -0.491551 0.276649 1.790940 -1.199481 3.948779 -3.320531 -0.004491 -1.325110 -4.727977 0.561497 -2.199237 -0.383433 2.194091 -0.940936 2.374461 2.146216 -2.000629 1.555090 -1.452061 -1.524589 -4.549094 -0.785854 1.630455 2.633820 -0.579335 1.153766 -0.205616 4.483125 -1.149356 2.635144 2.566289 2.029853 4.354747 0.466034 -1.983765 0.781177 2.071484 -1.975377 -4.376626 1.478382 -1.714493 -3.936023 -2.408269 2.398668 -3.819693 -0.704683 3.662607 -0.475721 -2.054499 -3.347956 3.294914 3.381385 -0.219778 4.652966 0.763602 -1.477458 -1.612534 -4.253857 2.903432 -2.975839 1.672822 -1.430841 -3.804973 -0.931625 2.077683 -0.585897 -1.034982 -2.710412 1.826388 2.455810 -3.269973 0.980190 -1.803729 -2.228230 -2.945894 -2.506216 1.296038 -1.160614 3.499553 0.082289 1.459851 1.145878 1.376209 0.074945 -4.351503 -0.556374 3.897253 -1.474092 -0.591064 -1.549545 2.913737 0.966743 -1.352776 -2.336219 -1.442943 0.981379 -0.263076 2.176770 -2.364985 0.411903 -4.246287 1.118073 1.493453 1.144047 2.303379 0.983705 1.245273 0.967783 2.705412 -3.453452 0.932743 -4.945863 0.531225 -0.989707 1.077513 -1.887436 1.960203 1.076423 1.588590 3.276399 -5.352863 4.030071 0.387918 -1.208326 -2.663778 1.231832 0.030553 -1.172185 -0.692343 2.435271 -0.870921 -0.846301 -0.281349 1.347547 0.402754 -2.325658 -0.705623 0.097337 3.703037 -3.774341 1.521709 -1.035281 -1.996711 0.308561 1.501006 2.499692 2.387702 4.877711 3.662878 -0.648995 2.694980 -4.408918 1.674301 5.332678 0.879125 -3.543733 3.362348 -2.597064 -0.445151 1.183817 2.279583 2.493702 2.586669 -2.928011 -2.889557 0.985649 -0.047780 4.360704 1.799234 0.849116 -4.798948 2.778806 -0.958373 0.385287 5.448563 2.309644 -4.216294 1.552560 3.405958 -4.730183 -2.210533 1.301112 -2.115959 -0.515100 -1.960220 1.130838 2.852120 -2.568585 -3.565860 -1.142289 -3.491226 3.911748 -0.889711 -1.155481 1.346981 -2.754940 -3.223995 4.258695 0.432786 -1.320817 -2.629417 -3.305524 -2.100338 -4.772186 1.337270 1.301881 -2.028329 -2.140133 -3.482239 -0.991885 3.045372 -0.280070 1.280151 -5.768112 -0.413088 2.410239 2.153655 1.839270 -1.974587 -0.619559 0.254701 -0.814308 0.799161 -0.901758 2.133021 4.349358 -3.373437 2.938350 -0.551763 -2.622168 1.674901 3.422947 -3.343310 5.300193 0.091695 4.405160 -0.111343 1.955100 -1.465239 1.268983 0.472414 -2.330088 -0.185707 1.596474 -2.950181 -1.880415 1.586879 -2.382519 -3.334332 0.883864 2.678663 1.066137 0.941803 0.172859 -1.567228 -1.253210 -0.866385 0.755820 2.813175 -1.073226 -2.727360 1.464377 2.250481 -1.032781 -2.555949 0.942711 1.815174 3.254777 -4.633574 2.446017 -0.672072 0.464878 -4.299773 -3.635507 1.470358 -2.689914 -1.969657 2.623675 -5.143212 -1.146104 -2.664269 1.971725 -2.632007 -0.790176 0.591004 4.323890 1.270698 -1.084395 3.014352 -1.063757 2.141319 -0.382145 -0.439573 1.084531 2.775260 +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) = -1.375591 0.877735 0.083267 -1.380170 3.705931 -0.600232 0.177751 1.727423 -0.977148 1.905988 -1.597422 0.860313 -0.332133 -2.302275 0.348756 -0.235126 0.153483 1.223219 -0.482781 0.699061 0.919635 -0.587147 0.636952 -0.702283 -0.725777 -2.493961 -0.023435 0.752832 1.124440 -0.213992 -0.024885 0.208681 2.267177 -0.689005 1.214267 1.295833 1.371449 1.787304 0.664274 -1.166521 0.705801 0.728678 -0.735016 -2.046433 0.516587 -0.721623 -2.066815 -0.919313 1.131093 -2.011288 -0.183307 1.613729 -0.083481 -0.797214 -1.493623 1.790349 1.656872 -0.757314 2.119508 0.474696 -1.187794 -1.272607 -1.527955 2.196513 -1.420293 0.459991 -0.579064 -1.951296 -0.546953 1.472696 -0.229148 -0.681721 -1.078498 0.591425 0.966605 -1.593504 0.465160 -0.551007 -0.209683 -1.511691 -1.055912 0.666456 -0.721025 1.603065 0.172130 0.615284 0.180611 0.363141 0.185299 -1.934901 -0.355712 1.947101 -0.896283 -0.063126 -1.279124 1.222957 0.743216 -0.799185 -0.751343 -1.256787 0.423155 -0.159039 0.898776 -1.418153 0.429486 -1.692380 0.305592 0.479912 0.659153 1.535841 -0.146248 0.561870 0.262894 1.096806 -1.068644 0.302124 -2.707994 0.625293 -0.428403 0.352576 -0.977788 0.487119 1.177064 0.864210 1.482307 -2.519943 2.030796 0.271027 -0.364855 -1.347225 0.600397 0.193263 -0.554048 -0.262323 1.235388 -0.488659 -0.243385 -0.016974 0.976539 0.187616 -1.566380 -0.707976 -0.262510 1.874739 -2.414672 0.730109 -0.436471 -0.677577 0.053174 0.641637 1.115210 1.076058 2.335330 1.611370 -0.305979 1.903095 -2.334719 0.866868 2.660335 1.023022 -1.558290 1.595935 -1.477213 -0.246648 0.571959 1.079804 0.856699 1.106840 -1.402347 -1.118935 0.795105 -0.032444 2.103070 0.700016 0.458780 -2.381033 1.031204 -0.522930 0.350580 2.668804 1.242974 -2.459739 1.322661 1.886220 -1.589443 -0.777515 0.593738 -1.398816 -0.694708 -0.966232 0.653198 1.456173 -1.476517 -1.476746 -0.354360 -1.486368 1.716855 -0.282601 -0.773656 0.609783 -1.238897 -0.679510 2.153115 0.354789 -0.299282 -1.021184 -1.630067 -1.500930 -2.390010 0.365295 0.686882 -1.056126 -0.722888 -1.647017 -0.857373 1.735197 -0.253465 0.606900 -3.428087 0.221648 1.273918 1.224377 0.541970 -1.394816 -0.310879 0.106850 -0.364458 0.216415 -0.914424 0.983335 1.789166 -1.555943 1.582205 -0.186016 -1.068284 0.835059 1.478144 -1.549965 2.404993 0.280433 2.229565 0.407041 0.968681 -0.955469 0.555807 -0.263470 -0.907805 -0.488506 0.864884 -1.804352 -0.856215 1.080166 -0.896240 -1.893647 0.483431 1.483939 0.704184 0.212469 -0.322382 -0.540529 -0.606104 -0.995006 0.546691 1.174243 -0.909051 -1.430221 0.748645 1.371503 -0.990556 -1.092419 0.511797 1.044836 1.584430 -2.102367 1.277994 -0.067554 0.572539 -2.397475 -2.065874 0.831580 -1.075888 -1.169869 0.882217 -2.879449 -1.109392 -1.071452 1.117241 -2.107363 -0.374715 0.327429 2.177697 0.079742 -0.215689 1.517546 -0.396273 0.622456 -0.294680 0.289099 0.343744 1.213175 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition_pivot(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -2.821977 2.889040 2.472003 -3.354373 6.302601 -0.659888 0.395249 2.489917 -1.606990 3.915757 -3.634961 1.377487 -0.684491 -4.277857 0.454416 -2.234484 -0.690934 2.248715 -0.580143 2.644304 1.933609 -1.845064 1.217482 -1.695241 -1.706639 -4.954630 -0.461355 1.420140 2.153745 -0.369313 1.891528 -0.219204 4.364206 -0.889470 2.567373 2.769782 2.033871 4.336751 1.003143 -1.403295 0.795582 1.770581 -1.780178 -3.995701 1.422551 -1.533754 -3.649539 -2.366807 1.745758 -4.286109 -0.416223 3.415415 -0.316799 -2.110036 -3.169281 3.510476 3.574744 -0.995468 4.312022 0.781852 -1.623641 -1.691193 -4.001821 2.978851 -2.810449 1.489253 -0.959368 -3.420864 -0.338494 2.119809 0.101629 -1.218741 -2.399496 1.718333 1.892300 -3.305533 0.698053 -1.972394 -2.959870 -2.634108 -1.760426 1.405347 -0.489629 3.200121 0.207955 1.417668 0.666929 1.433564 0.061039 -4.043625 -0.813191 4.041214 -1.548095 -0.863017 -2.156073 3.196915 1.193124 -1.320271 -1.781475 -1.500487 1.219052 -0.018335 1.923158 -2.685518 -0.235689 -4.256734 1.119741 1.634755 0.475512 2.467623 -0.018759 2.008911 1.184444 2.605831 -3.368564 1.399257 -5.257317 0.602674 -0.466802 0.917514 -1.627186 1.412523 0.615287 2.167575 3.073796 -4.990288 4.138144 0.408933 -1.342553 -2.689833 1.077861 0.062528 -1.029558 -0.873440 2.079645 -0.400297 -0.672849 -0.208377 1.125576 0.178554 -1.999148 -2.671199 0.225926 4.181570 -4.217456 1.370723 -0.914196 -1.406330 0.019982 1.492409 2.433541 1.930820 4.503222 3.197426 0.004947 2.969415 -4.085484 1.146596 4.999119 2.056110 -3.349477 3.418437 -2.374125 -0.810951 1.117301 2.049978 2.002377 2.393739 -3.868178 -3.852698 1.503727 -0.647198 4.172832 2.271626 0.451027 -4.914988 3.493312 -0.941655 -0.081019 5.464757 2.569346 -3.886634 1.094571 3.277494 -4.317034 -2.425992 1.326813 -2.106195 -0.829360 -1.021258 0.550385 2.215594 -2.075373 -3.722980 -1.252388 -3.423305 3.871661 -0.680681 -0.846834 0.625706 -2.209809 -3.723012 4.053384 0.455836 -1.569190 -2.346286 -2.810442 -2.236039 -4.607360 1.127643 1.711406 -1.956545 -2.258753 -3.379933 -0.644196 2.504972 -0.874866 0.870057 -5.817343 -1.375516 2.381826 1.807631 1.435258 -2.970521 -0.581463 -0.156967 -0.252630 0.845172 -0.646196 2.863090 4.922321 -2.824417 3.189207 -0.197375 -2.538532 1.473072 3.755435 -3.359470 5.061644 -0.411644 4.442103 0.222338 1.749082 -1.721144 0.856705 0.387815 -2.164427 -0.174404 1.391991 -2.835130 -1.614077 0.952273 -2.445602 -2.719626 1.191707 2.510623 0.699186 0.696138 0.546675 -1.268347 -1.448065 -1.407777 0.350153 2.627030 -1.170564 -2.849445 1.456400 2.255447 -1.130674 -2.513954 0.757363 2.067630 2.920664 -4.366306 2.711855 -0.680349 -0.060077 -4.681124 -3.804503 1.892718 -2.995094 -2.619668 1.721670 -5.144132 -1.330170 -2.495842 1.896947 -3.320979 -1.014342 0.807299 4.024956 0.937606 -1.162122 2.766605 -1.366650 2.396815 0.012382 0.043651 0.622977 2.856204 +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) = -2.455089 1.906820 0.870496 -2.557359 6.410794 -1.180066 0.477766 2.578803 -2.309193 3.582576 -2.495659 1.296697 -0.637512 -4.493089 0.754489 -1.224832 0.029906 2.165912 -0.218493 2.360912 1.661877 -1.805250 0.940205 -0.916912 -1.456219 -4.708862 -0.178307 1.632308 2.891494 -1.299760 0.815393 0.333990 4.358033 -1.293319 2.816025 2.767054 2.113661 3.119906 1.419115 -3.366775 0.530595 1.452711 -1.720050 -3.399184 0.700282 -0.837890 -3.816032 -1.662543 1.972923 -2.811116 -1.444422 3.318412 -0.570772 -1.214265 -3.070269 3.434579 2.884029 -1.152587 4.007344 0.645576 -1.345174 -2.075274 -3.319545 3.708247 -2.380158 0.203026 -1.766136 -3.124026 -0.000208 1.953081 -0.919517 -1.239851 -1.669150 1.999626 2.170656 -3.228023 0.765054 -1.369763 -1.846475 -3.347029 -2.208374 1.373116 -1.155683 3.214060 0.407477 1.436028 0.878202 1.297236 -0.206476 -4.124827 -0.029020 3.581809 -1.785426 -1.104259 -1.708928 3.260665 1.545050 -1.087242 -1.600248 -2.188323 0.955401 -0.964754 1.942455 -2.781632 1.574082 -3.438369 -0.210611 0.283074 1.465869 3.350611 0.451863 1.411872 1.274968 2.563341 -2.737193 -0.036088 -4.703254 1.048440 -1.259605 0.776765 -1.696755 1.551966 1.718750 1.972546 3.122909 -5.116903 3.077898 0.385400 -0.203712 -2.743268 0.809229 -0.071796 -0.843491 -0.944735 2.273829 -0.919365 -0.506152 -0.337071 1.594468 0.935802 -2.278055 -1.048026 0.100234 4.006882 -4.601248 1.489775 -0.806333 -1.332933 0.158324 1.283979 2.542596 2.601156 4.436062 3.285339 -0.602330 3.781857 -4.415818 1.174495 4.611417 1.203929 -2.850071 3.567674 -2.889327 -1.117602 0.820686 2.648979 2.291922 1.481940 -3.318554 -2.995831 2.139827 0.359803 3.935861 0.627290 0.249104 -3.861612 2.731066 -0.408871 -0.303590 4.961359 1.489165 -4.042854 2.355250 3.028486 -3.504793 -1.699772 1.470383 -2.967906 -0.843744 -1.742638 0.996605 2.715046 -2.296320 -2.318837 -0.717758 -2.827878 3.139920 -0.802712 -1.666979 1.271313 -1.916579 -2.480614 3.978008 0.558771 -0.713037 -2.585153 -3.329546 -2.237798 -4.035137 0.911981 0.758645 -1.668826 -1.419828 -3.242094 -1.531872 2.942227 0.048184 1.522460 -6.774165 0.062901 2.296904 2.741173 1.058399 -2.006061 -0.421085 0.544481 -0.609780 0.005416 -1.331532 2.512462 3.871373 -2.950342 2.553785 -1.061209 -2.506130 1.980271 2.605534 -3.724867 4.792695 0.603851 4.525791 0.604082 1.434491 -1.877737 0.901830 0.160871 -1.924559 -0.597502 0.943406 -2.542387 -1.657462 1.540648 -1.605161 -3.689149 0.217935 2.464575 0.629303 0.840519 -0.464251 -1.129651 -1.216777 -1.527250 1.120438 2.280786 -1.326619 -1.992453 2.066556 2.283043 -0.641080 -1.681790 0.616956 1.936485 2.588237 -4.254606 1.981418 -0.620519 1.484122 -3.704328 -4.239794 1.796133 -2.273485 -1.851857 1.730927 -5.152249 -1.388182 -2.337474 1.431231 -3.624277 -0.502042 0.995354 4.234933 0.338497 -1.186540 2.472366 -1.272140 1.373837 -0.571942 0.491466 0.565706 2.263309 +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&) = -1.226070 1.417603 0.868094 -1.299165 3.025442 -0.537068 0.246731 1.509064 -1.651255 1.814758 -1.436006 0.798441 -0.280397 -2.357286 0.469246 -0.628917 -0.114977 0.949889 0.143638 1.531198 0.861776 -1.187420 0.256530 -0.516089 -0.868297 -2.258783 0.047647 0.785735 1.800021 -0.893536 0.536055 0.238072 2.411734 -0.569022 1.778047 1.434884 1.190817 1.724617 1.069914 -2.136166 -0.087464 0.848192 -1.034453 -1.655753 0.312641 -0.455324 -1.581372 -0.587295 0.863721 -0.793662 -0.130397 1.750960 -0.377481 -0.624523 -1.771462 1.815593 1.310156 -0.639517 2.221929 0.297641 -0.607106 -1.374698 -1.851924 2.379321 -1.284756 0.166667 -1.068777 -1.156852 0.457081 0.677930 -0.195732 -0.540666 -1.027816 1.358125 0.967407 -1.848409 0.549873 -0.813195 -1.208867 -1.871717 -1.433859 0.990063 -0.532718 1.807758 0.210819 0.824625 0.083445 0.980742 -0.298634 -2.388752 0.127399 1.685271 -1.234264 -0.731618 -0.959138 2.080311 0.446032 -0.294718 -0.922393 -1.141221 0.853927 -0.551195 1.011026 -1.878584 1.448261 -2.036889 0.236971 0.242431 0.699552 1.983849 0.939447 1.199653 1.217552 1.608831 -1.248728 -0.511566 -2.596057 0.225484 -0.205273 0.240963 -0.921745 1.058416 0.342521 0.904870 1.827989 -2.982859 1.495733 0.311625 -0.135786 -1.289271 0.258907 -0.334902 -0.522357 -0.783000 1.216101 -0.220912 -0.320953 -0.254045 0.601255 0.612278 -1.453350 -1.013123 0.278394 2.542749 -2.675820 0.642878 -0.456169 -0.680486 -0.055203 0.968639 1.487230 1.521603 2.034191 1.648070 -0.209923 1.596501 -2.315754 0.458736 2.292072 0.508429 -1.783640 2.146537 -1.883682 -0.822331 0.377522 1.584766 1.372980 0.475080 -2.054076 -2.098509 1.513065 0.225006 2.176478 0.006886 -0.003398 -1.764653 1.839731 -0.103218 -0.720580 2.809041 0.324975 -1.718110 0.454596 1.424190 -1.747542 -0.892520 1.023098 -1.788546 -0.273897 -0.928700 0.260590 1.469844 -1.099235 -1.108285 -0.351854 -1.666792 1.943480 -0.359273 -0.720926 0.335684 -0.943617 -1.587926 2.227548 0.138657 -0.515592 -1.590913 -1.765753 -1.086311 -2.027314 0.495841 0.446535 -0.559483 -0.925038 -1.861619 -0.775788 1.290126 0.026438 0.751790 -3.778831 -0.466566 1.222230 1.257130 0.420431 -0.912316 -0.279728 0.363731 -0.213736 0.152372 -0.657924 1.942902 2.378220 -1.451570 1.656258 -0.086075 -1.283291 0.921109 1.536074 -2.065990 2.602155 -0.101851 2.041360 0.257548 0.775353 -1.260237 0.251583 0.252004 -0.870568 -0.257019 0.200851 -0.972891 -0.753608 0.081533 -0.995241 -1.881149 -0.014169 0.968029 0.188158 0.467665 -0.221344 -0.256200 -0.925752 -1.017757 0.645353 1.282493 -0.721650 -0.697208 1.339722 0.881153 0.018224 -0.202191 0.271261 0.933157 1.415108 -2.349274 0.793031 -0.431505 0.861976 -2.013491 -2.454125 0.760761 -1.183358 -0.817722 1.060354 -2.862887 -0.551778 -1.282207 0.518174 -1.886426 0.006048 0.692301 2.357189 0.070250 -1.153952 1.199716 -0.858499 0.953971 0.001248 0.180138 0.166080 1.173579 +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&) = -3.308909 3.388288 2.783309 -2.889178 6.873596 -0.173303 0.126646 3.610261 -4.322758 5.239018 -2.778121 0.685830 -1.259887 -5.403306 0.732389 -2.232198 -0.835761 1.735710 0.310407 4.189582 2.371016 -3.587801 0.885196 -0.761800 -2.198067 -3.904152 -0.504710 1.876246 5.503279 -2.385673 1.539497 -0.269555 5.622870 -1.078438 4.666424 3.499973 2.213562 4.211702 1.930169 -5.439607 -1.670655 2.761026 -3.320074 -3.642615 1.258389 -1.918274 -3.612348 -1.522910 2.111101 -1.927032 -1.674550 4.715669 -1.425809 -1.201604 -3.779402 4.156432 2.390417 -1.072680 6.126111 0.434169 -1.061465 -3.544166 -5.831037 4.366373 -2.420880 1.048497 -2.722227 -3.252272 1.376318 0.180640 -1.310720 -2.396603 -1.845164 4.917885 2.472136 -4.524112 1.087038 -2.574322 -4.669432 -4.410369 -3.970680 1.791614 -1.207793 4.539651 0.277336 2.079366 1.069821 3.026607 -1.388264 -7.150540 1.083614 4.732306 -3.005235 -1.692555 -2.229932 4.862281 0.085640 0.417490 -3.258154 -1.184719 1.951046 -0.609252 2.720329 -6.070020 3.607695 -5.971575 0.566301 -0.033909 1.916874 3.675369 3.526756 2.339268 3.582116 5.469102 -4.482077 -1.056096 -4.881396 0.305883 -0.831449 1.345114 -2.103711 3.525867 0.252400 1.965989 5.302095 -7.926835 2.646243 0.227578 -0.931919 -4.684520 0.382243 -2.000630 -1.347541 -1.888484 3.036677 -0.902427 -1.214343 -1.782476 1.238323 1.495316 -3.884602 -2.348893 1.334357 5.939355 -6.269491 1.431507 -1.352181 -2.065144 -0.089646 2.870085 4.401155 4.413891 5.282378 4.451880 -0.408454 3.895312 -5.427294 1.039048 5.405481 1.031566 -4.990076 5.544603 -4.909536 -1.797717 1.106397 3.672415 4.413093 1.984685 -5.110091 -5.398996 4.412796 1.437602 5.661048 0.831491 0.718593 -3.036464 5.040004 -0.762354 -2.813283 6.293591 0.827220 -4.135594 1.789800 2.236689 -4.447682 -1.573942 2.703042 -4.487121 0.180230 -2.119439 -0.132019 3.619061 -2.557941 -2.604802 -0.639251 -4.602562 5.917786 -1.112766 -0.791187 1.454315 -3.142410 -4.648059 4.980930 0.653049 -2.047786 -4.550016 -4.143361 -3.487148 -4.386597 1.824965 0.998777 -1.493993 -3.249810 -5.115847 -1.457586 2.984253 1.195176 2.371812 -8.638620 -1.240048 2.790875 2.420027 2.781424 -1.726701 -0.733014 0.353176 -0.841270 1.383210 -1.457846 4.971789 6.478176 -3.730745 4.160008 -1.169501 -2.742171 2.051465 2.916690 -5.782604 6.537106 0.204627 5.415523 -0.289180 2.016618 -2.662728 1.056300 1.327807 -1.698693 0.513263 0.585906 -1.374368 -2.070021 -0.349181 -3.658539 -3.875039 -0.793304 1.559213 -0.054002 1.743793 -0.510985 -1.467636 -2.473687 -2.033901 1.093560 3.670848 -1.544237 -1.418549 3.261345 0.539201 1.149936 -0.340461 0.740329 1.995981 3.201968 -6.081311 0.773200 -1.505493 1.210122 -3.987851 -5.269643 0.652271 -2.640277 -1.920593 3.478668 -6.209856 0.231804 -3.647406 0.258509 -4.409009 -0.305107 1.095534 6.185485 1.221040 -3.251940 2.923916 -2.012276 3.334372 0.229570 0.116822 0.654775 2.732289 +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.616657 0.737990 -0.153325 -0.487662 1.558996 -0.168529 0.280318 1.094559 -1.054343 0.979923 -0.604266 0.546901 0.037451 -1.118724 0.157573 -0.014635 -0.013947 0.461318 0.028121 0.519452 0.372093 -0.540991 0.073163 -0.227140 -0.419878 -1.097099 0.227711 0.305235 0.853028 -0.015196 -0.083313 0.117319 0.998036 -0.264063 0.813539 0.755703 0.363865 0.515749 0.628581 -0.964688 -0.066792 0.305898 -0.445304 -0.778330 -0.076109 -0.279434 -0.882573 -0.339930 0.367840 -0.723386 -0.225046 0.742713 -0.120887 -0.095712 -0.678680 0.745794 0.530813 -0.450292 1.051386 0.194529 -0.485251 -0.906320 -0.591151 1.306159 -0.358952 -0.218968 -0.182167 -0.750095 0.284236 0.483388 -0.468719 -0.156200 -0.067756 0.599140 0.437713 -0.874292 0.188595 -0.319944 -0.845816 -0.676649 -0.357070 0.355143 -0.283642 0.873207 0.164640 0.292217 -0.060042 0.311238 -0.129321 -1.144575 0.023842 1.076875 -0.423177 -0.267416 -0.709518 1.000661 0.589213 -0.065594 -0.324902 -0.444539 0.327036 -0.034244 0.363262 -1.266250 0.319987 -0.946808 -0.083508 -0.008740 0.334922 1.104411 -0.008514 0.404533 0.441949 0.789664 -0.501109 0.039509 -1.067841 0.380271 -0.279880 0.151524 -0.388630 0.199728 0.585025 0.392008 0.820904 -1.258494 0.634944 0.264363 0.125114 -1.015176 0.136429 -0.236350 -0.239574 -0.237299 0.486130 -0.153964 -0.031312 -0.229004 0.353110 0.220971 -0.840000 -0.466722 0.113664 1.202019 -1.354491 0.296222 -0.153016 -0.046731 -0.139204 0.476442 0.691938 0.641968 1.101582 0.695781 -0.015542 0.984526 -1.030339 0.242424 1.275751 0.660471 -0.746510 0.913462 -0.893333 -0.398201 0.073588 0.523904 0.521332 0.545451 -1.071631 -0.833577 0.620176 0.086812 1.070908 0.267659 0.137037 -0.557151 0.971190 -0.295302 -0.338861 0.949241 0.524339 -0.983196 0.676196 0.624243 -0.842615 -0.094111 0.553033 -0.953698 -0.196231 -0.397678 0.065035 0.655096 -0.626472 -0.404164 -0.163973 -0.730077 0.957537 -0.076905 -0.071173 0.090181 -0.435443 -0.048462 0.933207 0.285021 -0.186987 -0.534022 -0.608470 -1.279471 -0.879784 0.098545 0.249380 -0.460612 -0.412444 -0.864100 -0.591254 0.632388 -0.020129 0.391315 -1.621149 0.121454 0.602497 0.721806 0.210699 -0.542631 -0.146071 0.008257 -0.064032 0.166016 -0.477838 0.974645 0.870412 -0.515073 0.805575 -0.188656 -0.234919 0.529458 0.497402 -0.960298 1.096388 0.193573 0.856992 0.334546 0.402599 -0.473103 0.129000 -0.120202 -0.472059 -0.153001 0.338089 -0.605985 -0.318092 0.415526 -0.432730 -0.809140 0.013750 0.476818 0.250472 0.102565 -0.174842 -0.359748 -0.379579 -0.896937 0.245406 0.536542 -0.434317 -0.396691 0.556694 0.387337 -0.089188 -0.165420 0.171983 0.514007 0.548897 -0.972400 0.322713 -0.092935 0.420702 -0.992057 -1.070040 0.313102 -0.354460 -0.729305 0.352274 -1.337467 -0.221450 -0.539086 0.197270 -1.499192 -0.366701 0.289822 1.235461 -0.249433 -0.258080 0.493564 -0.315017 0.359620 -0.040757 0.428239 0.063604 0.530129 +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&) = -2.089505 2.382040 1.240771 -1.725972 4.838057 -0.362827 0.276510 3.281936 -3.295153 3.262696 -1.915020 1.693214 -0.437472 -3.390786 0.409460 -0.767310 -0.256545 1.390469 0.128965 2.196334 1.426643 -1.804960 0.449560 -0.612420 -1.458427 -3.099632 0.149550 1.060075 3.031128 -1.044988 0.733226 0.093193 3.581968 -0.769386 2.872518 2.249749 1.711023 2.439348 1.622289 -3.040156 -0.658127 1.421858 -1.807205 -2.471148 0.636102 -1.218387 -2.386772 -0.924848 1.296331 -1.816353 -0.729488 2.711377 -0.652374 -0.570965 -2.185561 2.693347 1.729022 -1.494577 3.729589 0.398616 -1.462728 -2.700859 -2.947893 3.549492 -1.495219 0.290747 -1.244631 -2.149557 0.803319 0.689182 -0.586653 -1.505188 -0.858923 2.636645 1.207465 -2.890492 0.713167 -1.343626 -2.414705 -2.898584 -2.071724 1.134766 -0.744940 2.698119 0.283092 1.173407 -0.041147 1.520185 -0.687239 -4.248804 0.428455 3.116782 -1.923328 -0.639173 -2.235547 2.906210 0.422615 0.075782 -1.627232 -1.317800 1.231599 -0.195502 1.487993 -4.067266 1.942913 -3.444003 0.214386 -0.172421 1.093192 2.685653 1.097496 1.580113 2.004410 3.140909 -2.273613 -0.201088 -3.587525 0.657282 -0.386202 0.680123 -1.329337 1.508708 0.761765 1.305445 3.130567 -4.733273 1.957005 0.308496 -0.386675 -3.158541 0.373140 -1.059737 -0.828869 -1.098092 1.878358 -0.533907 -0.524236 -1.036473 0.932954 0.724586 -2.853673 -2.273042 0.540455 3.983370 -4.493357 0.899955 -0.769479 -0.884986 -0.238965 1.696794 2.547407 2.496477 3.382581 2.592520 -0.068033 3.142335 -3.544123 0.540879 3.561781 1.928530 -2.992236 3.334885 -3.103481 -1.165530 0.764378 2.090674 2.288002 1.291533 -3.433873 -3.305530 2.968402 0.655979 3.578721 0.685755 0.528966 -2.201077 3.036334 -0.591686 -1.558214 4.020381 0.889299 -3.047426 1.620919 1.641059 -2.114949 -0.756059 1.670415 -3.052129 -0.581535 -1.095943 -0.008630 2.215176 -1.841712 -1.641112 -0.261102 -2.745721 3.592263 -0.504580 -0.395720 0.744734 -1.954506 -2.067596 3.090169 0.528261 -1.049817 -2.391623 -2.438726 -2.649531 -2.919776 0.791371 0.882527 -1.104449 -1.822346 -3.149632 -1.222493 1.928077 0.417891 1.339989 -5.863154 -0.676984 1.905667 1.478858 1.250686 -2.101077 -0.494049 -0.030740 -0.303816 0.883854 -1.238442 3.173167 3.823126 -2.127221 2.844051 -0.453047 -1.446023 1.311066 1.845882 -3.443710 3.891730 0.226723 3.509531 0.352256 1.308846 -1.885270 0.538878 0.243690 -0.815724 -0.061786 0.679825 -1.361590 -1.187299 0.144021 -2.195184 -2.493730 -0.247746 1.165166 0.194476 0.767312 -0.467503 -0.798264 -1.582425 -2.105173 0.672262 2.128620 -1.461341 -1.276828 1.977866 0.628588 0.052000 -0.068906 0.519467 1.545025 1.945888 -3.587141 0.720278 -0.660539 0.829126 -3.107666 -3.695177 0.716606 -1.631309 -1.894902 1.715333 -4.349758 -0.442278 -2.031509 0.426264 -3.831378 -0.429396 0.754139 4.020351 0.137551 -1.509953 1.935747 -1.158057 1.835210 0.051240 0.738785 0.179881 1.843530 +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.595808 4.548873 2.284421 -3.155903 10.331961 -1.719931 0.160960 6.666089 -6.562006 7.309018 -3.189269 1.717819 -1.632288 -7.406388 0.579368 -2.578421 -0.552869 3.787884 0.530832 5.308045 3.136747 -4.139113 0.904526 -0.555953 -2.855178 -5.213791 -0.668831 2.409862 7.139991 -4.293185 1.226868 0.009679 8.515902 -1.394417 7.115578 5.545827 2.034845 5.344539 3.799326 -7.384000 -2.466539 3.579266 -4.451955 -5.073466 1.028845 -2.443177 -5.143447 -2.428141 2.858124 -2.791580 -2.753980 6.056526 -1.990788 -0.144769 -4.494083 5.581143 3.045747 -0.837186 8.307581 0.520781 -2.108505 -3.934577 -7.386492 6.039496 -2.590799 0.421890 -3.477624 -4.897263 2.442795 -0.028265 -1.269490 -5.632095 -0.995704 7.022778 2.650422 -5.941870 1.102356 -3.025497 -7.139863 -6.731221 -5.804099 1.742897 -2.305756 5.485607 0.374899 2.543267 -0.547622 3.899308 -1.943831 -9.882411 1.920648 7.444089 -3.889465 -1.813727 -3.094945 6.628795 1.243792 0.991336 -3.710894 -2.299405 2.122389 -1.079649 3.512214 -8.032094 5.095871 -7.182227 -0.428178 -1.547286 2.474463 5.322946 3.961992 3.075429 5.226835 7.600927 -6.064184 -1.062933 -7.779442 1.761592 -2.806700 1.746884 -1.934064 4.269582 1.258260 2.989527 7.120986 -11.020698 2.948924 0.035295 -0.466862 -8.046995 0.628474 -3.081234 -1.659690 -2.672225 4.121121 -1.293310 -1.272812 -3.248013 1.712326 1.838370 -5.348728 -3.871405 1.794390 8.812061 -9.249815 1.949242 -1.711183 -2.284403 -0.236336 3.459853 5.830502 6.128457 8.290281 6.121352 -0.667772 6.113357 -8.233471 0.437039 6.955334 2.720289 -6.262649 7.513416 -5.576288 -2.848755 1.610824 5.808559 5.893912 2.340009 -6.859414 -7.157895 6.373489 2.297489 7.353436 1.104701 1.112108 -2.605433 6.745702 -0.514953 -4.826448 9.055763 1.101476 -6.198982 3.989283 2.424382 -4.073782 -1.832631 3.874367 -6.635273 0.090521 -2.317720 -0.379600 4.490032 -3.750459 -2.955301 0.061225 -5.879134 7.703199 -1.565365 -1.951311 2.496185 -5.092405 -4.566046 7.236416 1.659163 -2.249935 -5.625314 -6.251629 -5.542883 -5.556232 2.202321 1.013585 -2.062528 -3.992022 -6.621223 -1.914063 4.689138 2.067103 3.913418 -11.427244 -1.743134 3.713481 3.542147 4.039802 -4.441452 -0.959550 0.106157 -0.989015 2.038947 -1.906440 6.835407 9.517932 -4.540208 4.859528 -0.949237 -2.575576 3.137087 3.533769 -8.859064 8.300321 1.018417 8.647916 0.311917 2.197485 -3.521316 1.100343 1.498248 -0.595607 0.514583 1.043932 -1.695065 -2.676076 0.076504 -5.116931 -5.250438 -1.720407 2.055135 -0.750785 2.407202 -1.674664 -3.134158 -2.954836 -3.622325 1.276918 4.766789 -1.959830 -2.705649 4.754988 0.318159 1.274134 0.802811 0.651619 2.725911 3.458525 -7.859008 0.295131 -1.778063 2.488645 -4.885237 -7.804199 0.708058 -3.336758 -3.278691 3.572192 -8.285500 -0.588979 -4.666097 -0.123399 -8.578018 -0.535117 1.432703 8.773273 2.067666 -3.666696 3.426046 -2.698632 4.286082 0.157660 0.964820 0.223030 4.328337 +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.243141 0.066189 -0.297953 -0.182647 0.583587 -0.053952 -0.166872 0.322459 0.040082 0.362293 -0.263388 -0.000495 -0.069512 -0.436116 0.065184 0.278226 0.071574 0.188684 -0.112693 -0.062101 0.169215 -0.151772 0.146981 -0.126584 -0.080120 -0.373748 0.019600 0.112456 0.208583 -0.015211 -0.276155 0.024017 0.344742 -0.078059 0.134763 0.144586 0.222956 0.306110 0.195353 -0.147174 0.114306 0.169996 -0.120365 -0.392870 0.162901 -0.221629 -0.236111 -0.155778 0.230794 -0.298438 0.187661 0.238065 0.006330 -0.142871 -0.294347 0.172732 0.257806 -0.001706 0.414415 0.098284 -0.144584 -0.294114 -0.194856 0.371173 -0.325651 0.062552 -0.013949 -0.363335 -0.173395 0.268253 -0.061701 -0.066323 -0.150770 0.047686 0.103591 -0.241704 0.121578 -0.045223 0.258371 -0.243976 -0.248641 0.087160 -0.239481 0.315268 -0.009627 0.065692 -0.033185 0.012895 0.086013 -0.299898 -0.086680 0.183403 -0.131068 0.133428 0.034574 0.199820 0.096699 -0.133764 -0.093578 -0.108217 0.024734 0.053672 0.135140 -0.111794 0.162308 -0.217011 0.236448 0.029643 0.126871 0.126537 0.206797 -0.052484 -0.054414 0.182324 -0.092921 -0.096525 -0.422200 0.055329 0.060057 0.085229 -0.177499 0.079396 0.291878 -0.038437 0.239786 -0.426354 0.359337 0.071968 -0.007040 -0.183561 0.126235 0.035809 -0.134289 0.016071 0.229513 -0.122936 -0.065153 -0.000514 0.190966 0.016751 -0.497218 0.069696 -0.115747 0.324443 -0.392718 0.096256 -0.086387 -0.185192 0.029552 0.060501 0.127503 0.164067 0.380054 0.266322 -0.117488 0.232294 -0.380526 0.261946 0.544458 0.095696 -0.287451 0.180771 -0.247984 0.062169 0.161800 0.128910 0.161702 0.204501 -0.020364 0.018341 0.083221 0.031861 0.363972 0.035828 0.246623 -0.342917 0.090634 0.060959 0.163983 0.495548 0.149956 -0.460970 0.311977 0.325152 -0.280467 0.081872 0.042053 -0.122547 -0.008883 -0.278590 0.155416 0.314603 -0.347676 -0.270171 -0.111838 -0.253378 0.340437 -0.030007 -0.016708 0.198250 -0.288119 0.286950 0.377029 0.114698 -0.017765 -0.158073 -0.259638 -0.419898 -0.410942 0.051369 0.087068 -0.265899 -0.050963 -0.282551 -0.202451 0.415412 -0.018329 0.021172 -0.607418 0.203610 0.205894 0.176389 0.075559 -0.099683 -0.073634 0.105179 -0.117996 0.104473 -0.205121 0.105210 0.198628 -0.297598 0.254300 0.066296 0.111000 0.177023 0.202517 -0.168769 0.370296 0.006985 0.237704 0.040934 0.221642 -0.116688 0.144045 -0.109335 -0.104713 -0.079340 0.171299 -0.350355 -0.148939 0.330754 -0.160547 -0.320984 0.104511 0.255704 0.342644 0.019447 -0.165293 -0.083732 -0.046282 -0.103888 0.105719 0.201958 -0.082841 -0.277155 0.042565 0.207673 -0.163330 -0.247112 0.135388 0.108024 0.332105 -0.323652 0.185793 0.054591 0.111332 -0.343900 -0.231099 0.009092 0.014607 -0.098334 0.295191 -0.574890 -0.187033 -0.146908 0.219715 -0.361581 0.144086 -0.110475 0.346406 0.025339 -0.007528 0.295175 0.027494 0.064462 -0.026641 -0.017059 0.073536 0.192070 +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.828977 1.655354 0.381529 -1.040336 4.723301 -1.288963 0.136016 3.267586 -2.489611 3.038321 -1.319015 0.754935 -0.450752 -3.282004 0.446590 -0.343308 0.322088 1.876930 0.221099 1.888377 1.165764 -1.400267 0.344381 -0.359677 -1.033665 -2.611354 -0.106529 0.955532 2.779986 -1.884690 0.263464 0.348566 3.956706 -0.351949 3.011118 2.310948 1.053261 2.215407 2.113162 -3.312986 -0.667114 1.325115 -1.629327 -2.076350 0.370798 -0.702698 -2.226860 -1.033256 0.995229 -1.097296 -0.628063 2.309913 -0.618903 0.208174 -2.081544 2.258159 1.736502 -0.596100 3.260227 0.287787 -0.730746 -1.845355 -2.658623 3.039698 -1.143556 -0.285747 -1.254913 -2.064286 0.820506 0.328019 -0.190199 -2.546252 -0.451539 2.754501 1.178807 -2.367949 0.577938 -0.762719 -2.173201 -3.203263 -2.581944 0.820033 -1.328026 2.273247 0.213763 1.042244 -0.314471 1.264344 -0.441610 -3.926521 0.663887 2.938205 -1.917423 -0.609811 -1.405768 2.735056 0.565821 0.321024 -1.263056 -1.750380 0.711459 -0.830077 1.309309 -2.662537 2.214539 -2.539590 -0.372410 -0.882175 1.053440 2.992028 1.602133 1.265261 1.951243 2.948672 -2.330816 -0.939722 -3.343153 1.025573 -1.306644 0.537137 -0.785705 1.431316 1.116529 1.442278 2.701079 -4.703584 1.371031 0.263796 0.202216 -3.012111 0.153020 -1.061564 -0.685764 -1.135777 1.807624 -0.623096 -0.307079 -1.112980 0.874914 0.841136 -2.337192 -1.982960 0.301195 3.981908 -4.533454 0.798801 -0.634223 -0.943221 -0.158519 1.157248 2.329470 2.416128 3.125362 2.361814 -0.706831 3.028683 -3.477173 0.317044 3.259930 0.948979 -2.495966 3.215639 -2.278098 -1.140397 0.795729 2.493672 2.311028 0.265108 -2.697075 -2.753848 2.661655 0.948877 2.966264 0.301866 0.355997 -1.641606 2.734601 0.225847 -1.923712 4.372233 0.286204 -2.753858 1.682746 1.326087 -1.708484 -0.590321 1.298709 -2.964484 -0.221412 -1.348803 0.283438 1.764172 -1.552043 -1.013795 0.259902 -2.253954 2.886466 -0.502993 -1.325697 0.983899 -1.873653 -1.525357 3.550990 0.722415 -0.473869 -2.253220 -2.824486 -2.148532 -2.465650 0.714683 0.042597 -0.734890 -1.088037 -2.584810 -0.936680 2.480170 0.712118 1.498511 -5.768497 -0.351544 1.380139 1.473254 0.910331 -2.326677 -0.391957 0.381091 -0.261772 0.333455 -1.002763 2.762964 3.942790 -1.937740 1.696730 -0.359654 -1.085060 1.403831 1.384743 -3.707713 3.128505 0.228538 3.698733 0.402061 0.954059 -1.541909 0.366153 0.250228 -0.094814 -0.397254 0.371002 -1.029071 -1.081765 0.465966 -1.528535 -2.771645 -0.708645 0.977242 0.076386 0.775893 -1.205127 -1.184164 -0.763983 -1.323571 0.861156 1.794202 -0.606760 -1.142787 2.000534 0.623863 0.294528 0.177924 0.182409 1.030478 1.538310 -3.164481 0.289642 -0.517374 1.616409 -1.807113 -3.528875 0.647095 -1.421115 -1.286854 1.398202 -3.862744 -0.759822 -1.721518 0.101374 -3.743991 0.060525 0.600371 3.652827 0.550152 -1.476313 1.404249 -1.023159 1.290165 0.044712 0.665357 -0.024338 1.825181 +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.616657 0.737990 -0.153325 -0.487662 1.558996 -0.168529 0.280318 1.094559 -1.054343 0.979923 -0.604266 0.546901 0.037451 -1.118724 0.157573 -0.014635 -0.013947 0.461318 0.028121 0.519452 0.372093 -0.540991 0.073163 -0.227140 -0.419878 -1.097099 0.227711 0.305235 0.853028 -0.015196 -0.083313 0.117319 0.998036 -0.264063 0.813539 0.755703 0.363865 0.515749 0.628581 -0.964688 -0.066792 0.305898 -0.445304 -0.778330 -0.076109 -0.279434 -0.882573 -0.339930 0.367840 -0.723386 -0.225046 0.742713 -0.120887 -0.095712 -0.678680 0.745794 0.530813 -0.450292 1.051386 0.194529 -0.485251 -0.906320 -0.591151 1.306159 -0.358952 -0.218968 -0.182167 -0.750095 0.284236 0.483388 -0.468719 -0.156200 -0.067756 0.599140 0.437713 -0.874292 0.188595 -0.319944 -0.845816 -0.676649 -0.357070 0.355143 -0.283642 0.873207 0.164640 0.292217 -0.060042 0.311238 -0.129321 -1.144575 0.023842 1.076875 -0.423177 -0.267416 -0.709518 1.000661 0.589213 -0.065594 -0.324902 -0.444539 0.327036 -0.034244 0.363262 -1.266250 0.319987 -0.946808 -0.083508 -0.008740 0.334922 1.104411 -0.008514 0.404533 0.441949 0.789664 -0.501109 0.039509 -1.067841 0.380271 -0.279880 0.151524 -0.388630 0.199728 0.585025 0.392008 0.820904 -1.258494 0.634944 0.264363 0.125114 -1.015176 0.136429 -0.236350 -0.239574 -0.237299 0.486130 -0.153964 -0.031312 -0.229004 0.353110 0.220971 -0.840000 -0.466722 0.113664 1.202019 -1.354491 0.296222 -0.153016 -0.046731 -0.139204 0.476442 0.691938 0.641968 1.101582 0.695781 -0.015542 0.984526 -1.030339 0.242424 1.275751 0.660471 -0.746510 0.913462 -0.893333 -0.398201 0.073588 0.523904 0.521332 0.545451 -1.071631 -0.833577 0.620176 0.086812 1.070908 0.267659 0.137037 -0.557151 0.971190 -0.295302 -0.338861 0.949241 0.524339 -0.983196 0.676196 0.624243 -0.842615 -0.094111 0.553033 -0.953698 -0.196231 -0.397678 0.065035 0.655096 -0.626472 -0.404164 -0.163973 -0.730077 0.957537 -0.076905 -0.071173 0.090181 -0.435443 -0.048462 0.933207 0.285021 -0.186987 -0.534022 -0.608470 -1.279471 -0.879784 0.098545 0.249380 -0.460612 -0.412444 -0.864100 -0.591254 0.632388 -0.020129 0.391315 -1.621149 0.121454 0.602497 0.721806 0.210699 -0.542631 -0.146071 0.008257 -0.064032 0.166016 -0.477838 0.974645 0.870412 -0.515073 0.805575 -0.188656 -0.234919 0.529458 0.497402 -0.960298 1.096388 0.193573 0.856992 0.334546 0.402599 -0.473103 0.129000 -0.120202 -0.472059 -0.153001 0.338089 -0.605985 -0.318092 0.415526 -0.432730 -0.809140 0.013750 0.476818 0.250472 0.102565 -0.174842 -0.359748 -0.379579 -0.896937 0.245406 0.536542 -0.434317 -0.396691 0.556694 0.387337 -0.089188 -0.165420 0.171983 0.514007 0.548897 -0.972400 0.322713 -0.092935 0.420702 -0.992057 -1.070040 0.313102 -0.354460 -0.729305 0.352274 -1.337467 -0.221450 -0.539086 0.197270 -1.499192 -0.366701 0.289822 1.235461 -0.249433 -0.258080 0.493564 -0.315017 0.359620 -0.040757 0.428239 0.063604 0.530129 +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) = -4.200971 2.818746 2.672418 -4.640797 11.335405 -2.740005 0.918532 4.386054 -2.354321 6.034449 -4.045636 2.713771 -0.858702 -7.015953 1.355348 -3.414704 0.430975 4.269375 -0.691182 3.470454 2.727095 -1.552877 1.640166 -1.565150 -2.396088 -9.307167 -0.655576 3.026445 3.614870 -1.717805 2.436489 1.133147 7.539825 -2.661794 4.985210 5.369124 4.422911 4.801461 1.642852 -3.883795 2.289269 1.873360 -2.527179 -5.693526 0.941627 -0.645354 -7.302038 -3.197462 3.575010 -5.732168 -3.996086 5.641687 -0.821979 -1.873261 -4.707151 6.337702 4.341263 -2.569253 6.237182 1.298519 -3.309779 -2.357414 -5.440034 6.633382 -4.405632 0.367966 -3.585705 -6.257586 -0.855373 4.417349 -2.012734 -1.736383 -2.239310 2.717505 3.833865 -5.392844 1.139378 -2.022336 -1.744694 -5.120081 -2.832750 2.549178 -1.069787 4.880794 1.035631 2.464947 1.993092 1.768251 -0.038835 -6.435738 -0.287681 6.351620 -3.214661 -1.930120 -3.425909 4.140879 3.905494 -2.628570 -1.336222 -4.725216 1.349047 -2.472464 3.345931 -2.982564 1.704138 -4.653690 -1.662486 0.642147 2.574713 5.739883 -2.525661 2.543849 1.690113 3.538256 -4.431016 1.202270 -7.824392 3.097975 -3.492199 1.064940 -2.741922 1.939578 3.916908 4.739547 4.881920 -7.606458 5.359646 0.475676 -0.266155 -4.221307 1.653995 0.587393 -1.243502 -1.612200 3.944002 -1.592493 -0.619969 -0.161243 3.219043 1.313742 -1.949553 -1.851888 -0.545953 4.937240 -6.836520 2.909074 -1.212939 -1.985864 0.325455 1.750224 4.082000 4.313728 7.893385 5.746290 -1.082612 6.793529 -7.665261 1.569025 7.233391 1.782467 -4.021029 6.162985 -4.576282 -2.151717 1.486483 4.501637 2.991675 3.180325 -5.146501 -4.462153 2.377715 0.266128 6.495595 1.718281 -0.334847 -7.379272 3.215946 -1.690223 -0.009457 8.178124 3.403026 -7.820864 4.851922 5.993268 -6.234915 -4.231427 2.291944 -5.284144 -2.411996 -2.742492 2.270703 4.540609 -4.046298 -3.658711 -0.381900 -4.452390 4.292983 -1.425069 -3.364795 2.553679 -3.152487 -5.595880 6.814595 1.101654 -0.576494 -3.917003 -5.658672 -2.195777 -7.301519 1.246912 1.451653 -2.899254 -1.639460 -5.082935 -2.441304 4.864207 -0.329689 3.109079 -11.146268 0.452809 4.113985 4.299530 1.205201 -3.888337 -0.607077 0.438563 -1.257574 -0.893652 -2.707681 2.964269 5.907320 -4.964983 4.099008 -2.753291 -6.559875 3.214977 3.992206 -6.612422 8.289412 1.862117 7.061025 1.996039 2.152786 -3.581423 1.401308 -0.185462 -4.214911 -1.801167 1.992554 -5.186889 -2.897103 3.361654 -2.471721 -6.079938 0.596991 5.094217 0.661867 1.234481 -0.133320 -2.626415 -1.663624 -2.740815 2.142066 3.611944 -2.389340 -3.906485 3.792860 5.178877 -2.643376 -5.030782 0.913029 3.640500 4.357895 -7.274379 4.281555 -0.489523 2.464665 -6.820057 -7.105202 4.017205 -4.971098 -3.381276 1.047721 -8.404556 -3.372383 -3.861988 2.962995 -5.481698 -2.189468 2.461252 7.266541 0.695052 -1.447413 4.343716 -2.296986 1.653707 -1.277388 1.121583 0.799540 3.864406 +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.774350 1.184485 -0.323245 -2.002152 6.345501 -2.326547 0.283218 2.331332 -1.329415 2.544278 -2.216095 0.961082 -0.489144 -4.535190 0.709875 -0.357866 0.209063 2.890948 -0.097785 1.760616 1.190038 -1.219361 0.731730 -0.583502 -0.918285 -4.462302 -0.413191 1.433895 2.000925 -2.366681 -0.116613 0.445173 4.386548 -1.128061 2.150268 2.325440 1.558900 2.691645 1.936539 -2.987536 0.765278 0.973841 -1.208743 -3.082272 0.375559 -0.184137 -3.621049 -1.475672 1.629920 -1.982283 -0.381724 2.581095 -0.490156 -0.822214 -2.443907 3.024284 3.131077 0.059291 2.797243 0.518907 -0.727667 -0.704078 -2.438826 2.994612 -1.949716 -0.156342 -1.739403 -2.536050 -0.144996 1.695305 0.435100 -1.813037 -1.638539 1.308881 1.919244 -2.349124 0.542137 -0.928876 -1.067049 -3.687954 -2.662817 1.088124 -1.898956 2.391684 0.402954 1.115877 0.020889 0.881250 -0.052935 -2.840735 0.012509 2.947076 -1.235540 -1.153097 -0.534145 2.857104 1.799649 -1.107606 -0.827003 -2.995906 0.501805 -1.334653 1.567816 -0.378326 1.747971 -2.111336 -0.224781 0.025096 1.273101 3.035136 0.862388 0.899390 0.770173 1.560011 -2.355874 -0.500106 -5.444530 1.091100 -1.637808 0.565279 -1.178450 1.178080 1.694626 1.951280 2.156432 -4.620378 2.645129 0.260677 0.206359 -1.726329 0.675088 0.201262 -0.562873 -0.700509 1.718151 -0.796552 -0.294440 -0.042866 1.352784 0.842840 -1.948662 -0.344538 -0.107015 4.077259 -4.500133 1.309886 -0.522540 -1.104409 0.278084 0.622503 1.790143 2.039890 4.021753 2.649162 -0.774698 2.820302 -4.469777 0.855751 3.803949 0.599357 -1.716176 2.669039 -1.298042 -0.939375 0.580937 3.314156 1.673138 0.016159 -2.155255 -1.885349 1.618534 0.283294 2.770055 -0.243035 -0.128038 -3.462515 1.682490 1.054326 -0.016140 5.353404 1.095038 -3.185533 1.642305 2.567459 -2.135495 -1.639092 1.001000 -2.127592 -0.597448 -1.504131 1.143210 2.067278 -1.737038 -2.001955 -0.480872 -1.906202 1.763206 -0.735543 -2.780442 1.337511 -1.249385 -1.243826 4.182350 0.444591 -0.201062 -1.960806 -3.777943 -1.341128 -3.063729 0.677152 0.231380 -1.322008 -0.575041 -2.209411 -1.144891 3.476179 0.050849 1.363047 -5.960456 -0.098730 1.686283 2.837670 0.567736 -2.724990 -0.240761 0.699395 -0.637465 -0.603473 -0.443899 1.800194 3.612130 -2.347938 1.492125 0.144299 -1.548737 1.773383 2.791676 -2.962346 3.691555 0.247421 4.927762 0.645324 0.899987 -1.396740 0.671345 0.168958 -0.961186 -0.672589 0.631558 -2.065501 -1.316273 1.749511 -0.784837 -4.087674 0.089891 2.197164 0.407964 0.702840 -1.373692 -1.137562 -0.544434 -0.645918 1.078828 1.601172 -0.678410 -2.074124 1.665791 2.299431 -0.534252 -1.063660 0.344491 1.411782 1.917615 -3.248932 1.747885 -0.395292 2.567280 -2.881388 -4.218520 1.756664 -1.918065 -1.051830 0.965341 -4.781641 -2.336671 -1.797211 1.160379 -3.679931 0.570744 0.925717 3.071868 0.478713 -0.856057 1.757254 -1.027618 0.636599 -0.709941 0.242862 0.450821 2.227826 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.501015 0.320104 -0.272691 -0.364701 1.368820 -0.430219 0.002163 1.006630 -0.413949 0.743528 -0.468412 0.528423 -0.001045 -0.861248 0.167710 0.313462 0.234932 0.603226 -0.069501 0.142388 0.302141 -0.126549 0.129153 -0.181384 -0.285721 -0.932413 0.146540 0.288578 0.349200 -0.182171 -0.235585 0.289652 0.972645 -0.208174 0.644283 0.603315 0.537215 0.532879 0.636646 -0.533593 0.252619 0.182026 -0.230025 -0.716108 0.126826 -0.166178 -0.664169 -0.287910 0.375379 -0.624621 0.211535 0.545652 -0.027724 -0.085248 -0.582161 0.556507 0.433795 -0.411831 0.799158 0.203427 -0.584681 -0.542094 -0.324618 1.162709 -0.544626 -0.120802 -0.168106 -0.745920 -0.046499 0.614439 0.034849 -0.382279 -0.256819 0.240774 0.182494 -0.638325 0.191035 -0.056625 0.256643 -0.647239 -0.466149 0.302367 -0.335478 0.593263 0.107378 0.216718 -0.287130 0.098479 0.050555 -0.743494 -0.035184 0.644013 -0.457213 0.114042 -0.480374 0.497843 0.406039 -0.268717 -0.094713 -0.626144 0.183133 -0.197111 0.306252 -0.420904 0.378422 -0.399091 0.032255 -0.039605 0.282947 0.739492 -0.037614 0.286199 0.243433 0.418544 -0.104075 -0.104865 -1.068610 0.443150 -0.115534 0.006025 -0.310897 0.091123 0.614447 0.275294 0.584087 -0.964500 0.620815 0.150573 0.074204 -0.561232 0.186919 0.053101 -0.186951 -0.207325 0.550472 -0.187337 -0.040320 -0.042370 0.386235 0.125653 -0.773966 -0.409884 -0.189348 0.795314 -1.033654 0.272261 -0.160815 -0.209341 -0.024581 0.211541 0.409631 0.510048 0.830332 0.579830 -0.149494 0.704082 -0.992252 0.238224 0.941134 0.521862 -0.549024 0.687472 -0.631297 -0.221148 0.237965 0.513541 0.289852 0.195124 -0.485371 -0.390736 0.435089 0.098511 0.807050 0.056285 0.175694 -0.654991 0.320679 -0.002466 -0.001025 1.082478 0.267581 -0.981968 0.620101 0.711625 -0.324741 -0.144012 0.289683 -0.708709 -0.361673 -0.386799 0.260921 0.603510 -0.666223 -0.317810 0.026761 -0.516003 0.593888 -0.073327 -0.326736 0.230558 -0.530506 0.177879 0.928847 0.235483 0.050950 -0.320849 -0.672911 -0.592655 -0.873298 0.026238 0.224966 -0.320748 -0.085285 -0.623392 -0.465638 0.728959 -0.030093 0.255892 -1.416779 0.218311 0.545170 0.387349 -0.048476 -0.674025 -0.112792 0.156201 -0.063029 0.017135 -0.459895 0.454859 0.555856 -0.534924 0.515929 0.177088 -0.124310 0.400968 0.364154 -0.703760 0.865481 0.106126 0.673562 0.379610 0.310555 -0.464678 0.116606 -0.241180 -0.089277 -0.365283 0.268968 -0.690776 -0.287099 0.461321 -0.255034 -0.762866 0.055491 0.580679 0.300410 0.041702 -0.317762 -0.146103 -0.227836 -0.621253 0.327915 0.385977 -0.361888 -0.455140 0.454683 0.525118 -0.406913 -0.246865 0.171455 0.424317 0.571149 -0.781860 0.403734 0.065456 0.424306 -0.852747 -0.879675 0.340196 -0.280399 -0.425179 0.170030 -1.249758 -0.563116 -0.329537 0.393530 -1.071084 0.042643 0.128906 0.926711 -0.132035 -0.099782 0.529447 -0.166841 0.079710 -0.085004 0.258095 -0.010468 0.493943 +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.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.672338 0.138155 -0.383062 -0.289067 1.254901 -0.269375 -0.320876 0.944418 -0.406555 0.835686 -0.377637 0.003607 -0.304222 -0.906539 0.078037 0.323874 0.171364 0.591135 -0.176427 0.238931 0.528903 -0.237489 0.156809 -0.089927 -0.266388 -0.187101 -0.146934 0.287980 0.697693 -0.716575 -0.475613 0.120021 1.164803 -0.231380 0.998103 0.676469 0.532689 0.760167 0.421849 -0.679856 -0.185702 0.613936 -0.557675 -0.822030 0.294455 -0.457748 -0.417443 -0.105721 0.586046 -0.137291 0.377935 0.707211 -0.212210 0.073749 -0.517132 0.495847 0.190418 0.031207 1.181496 0.134453 -0.579671 -0.303504 -0.696237 1.066430 -0.599105 0.352730 -0.383395 -0.800363 -0.068671 0.026353 0.150186 -0.957130 -0.469759 0.734022 0.089472 -0.697440 0.335817 -0.212901 0.446602 -0.868592 -1.031565 0.169121 -0.515038 0.621396 -0.112186 0.232224 -0.320147 0.384444 -0.129578 -1.193692 0.223980 0.592482 -0.723520 0.394821 -0.220657 0.351566 -0.151969 0.134028 -0.497414 -0.285171 0.205540 -0.102078 0.466107 -0.443758 1.020069 -0.420865 0.213953 -0.294519 0.396977 0.424834 0.799408 0.251914 0.639995 0.878730 -0.095092 -0.454578 -0.986375 0.245841 -0.321815 0.215911 -0.197514 0.588778 0.489693 -0.078388 0.953166 -1.235730 0.362209 -0.055062 -0.069397 -0.874670 0.225598 -0.402775 -0.381422 -0.350893 0.731531 -0.203403 -0.273912 -0.463234 0.354791 0.203799 -1.147659 -0.172717 -0.029144 0.509749 -0.880530 0.171487 -0.318135 -0.517737 0.045465 0.416429 0.579069 0.839414 1.066410 0.849658 -0.287633 0.369434 -1.077120 0.189641 0.851591 0.094790 -0.915997 0.781165 -0.795508 -0.152704 0.467883 0.704320 0.728785 0.353153 -0.195604 -0.294731 0.595572 0.418576 0.992368 -0.193406 0.435274 -0.201176 0.230403 0.182106 -0.369047 1.435592 -0.123395 -1.134131 0.689626 0.333424 0.147506 -0.033235 0.392730 -0.724176 -0.106770 -0.570994 0.186011 0.731600 -0.815227 -0.302798 0.273781 -0.802434 1.009035 -0.211460 -0.362867 0.581693 -1.156926 0.079511 1.048642 0.330151 -0.192550 -0.650785 -0.789917 -0.418227 -0.855766 0.304411 0.114506 -0.189858 -0.362055 -0.849858 -0.253989 0.838786 0.348698 0.487434 -1.349412 0.008965 0.508128 0.120649 0.443967 -0.491430 -0.213608 0.072245 -0.153633 0.425632 -0.462768 0.411092 0.990064 -0.770943 0.501752 0.469567 -0.031081 0.249417 0.393078 -1.008084 1.046033 0.135666 0.595383 0.000915 0.372023 -0.565040 0.155546 0.031263 0.440515 -0.059294 0.161293 -0.294576 -0.339798 0.068972 -0.648900 -0.566470 -0.199492 0.284269 0.168856 0.319793 -0.484439 -0.322422 -0.341673 -0.358455 0.214276 0.710445 -0.260977 -0.504776 0.565029 -0.064925 -0.135813 0.255847 0.169685 0.220147 0.709567 -1.019528 -0.052631 -0.027285 0.313230 -0.649565 -0.719973 -0.253719 -0.130801 -0.041494 0.622813 -1.016268 -0.241143 -0.513581 0.127186 -0.735123 0.215814 -0.055970 1.128311 0.446920 -0.395841 0.638522 -0.157692 0.535816 0.087562 -0.087633 -0.004914 0.605664 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = -1.470577 -0.116871 -1.480264 -0.814477 3.017704 -0.382895 -0.497399 1.306201 -0.843322 1.782472 -0.911214 -0.543974 -0.920350 -2.395605 0.311837 0.896044 0.406854 1.064928 -0.599565 0.621144 1.263815 -0.957934 0.625419 -0.326884 -0.428562 -0.410962 -0.382380 0.707305 1.609707 -1.302089 -1.002862 0.126875 2.242788 -0.456796 1.407074 1.141796 0.944217 1.937754 0.398785 -1.712001 -0.241004 1.472087 -1.136105 -1.920502 0.950639 -1.113736 -1.353655 -0.544465 1.408996 -0.583393 0.487048 1.755550 -0.361689 -0.263021 -1.448362 1.012268 1.248719 0.033267 2.532218 0.451908 -0.727348 -0.729419 -1.605693 1.709690 -1.295106 0.746267 -0.451643 -1.867826 -0.551163 0.296222 0.250191 -1.818369 -1.524071 1.194427 0.648658 -1.413472 0.823374 -0.441594 0.811149 -2.266558 -2.306637 0.180820 -1.375775 1.744597 -0.365348 0.433292 0.043827 0.526689 -0.042671 -2.379608 0.197507 1.095274 -1.141315 0.716500 -0.576588 0.972629 -0.431489 0.001069 -1.768329 -0.539029 0.263997 -0.088495 1.092053 -0.682685 1.662789 -0.996716 0.499748 -0.415200 1.047510 0.783030 2.187729 -0.033192 0.626558 1.605308 -0.751156 -0.817022 -1.853289 0.279991 -0.373790 0.777409 -0.679162 1.235386 1.390627 -0.476265 1.863980 -2.703766 1.127304 -0.036662 -0.325313 -1.679189 0.606220 -0.557207 -0.900167 -0.488350 1.650668 -0.723253 -0.608425 -0.614110 0.998264 0.502523 -2.512625 0.644086 -0.268844 1.382543 -1.956680 0.447786 -0.764216 -1.429154 0.271054 0.680308 1.101261 1.661488 2.357610 1.872526 -0.866907 1.123700 -2.249665 1.017198 2.545267 0.467401 -1.969655 1.364459 -1.474742 0.227259 0.966231 1.240368 1.712782 0.587321 -0.097161 -0.060090 1.152402 0.796503 2.223642 -0.304858 1.196421 -1.169098 0.342284 0.538421 -0.058491 2.970841 0.227302 -2.342206 1.711792 1.008538 -0.406796 0.061914 0.560659 -1.055143 -0.254500 -1.438526 0.856319 1.654986 -1.765630 -1.038672 0.019710 -1.679924 1.999884 -0.524003 -0.720411 1.462475 -2.344269 0.251250 1.991997 0.486346 -0.467936 -1.458551 -1.761529 -1.136500 -2.015205 0.883228 0.029287 -0.615036 -0.845229 -1.826964 -0.783166 2.239596 0.660483 0.694099 -3.093567 0.595462 1.010218 0.568544 1.227142 -0.734100 -0.485800 0.517429 -0.363381 0.759076 -0.862789 0.374284 1.831638 -2.042178 0.748077 0.536718 0.387027 0.745782 1.022407 -1.724597 2.287798 0.438474 2.021197 -0.411999 1.033561 -0.843006 0.643520 0.140477 0.641534 -0.096633 0.539967 -0.920903 -0.839652 0.872604 -1.148111 -1.719151 -0.109167 0.776685 0.772100 0.686668 -1.094656 -0.580721 -0.477617 -0.125539 0.562751 1.618388 -0.441122 -1.035752 0.740058 0.195257 -0.117017 0.307999 0.574524 0.481152 1.837413 -2.206900 0.246988 -0.248641 0.683163 -1.167638 -1.578429 -0.278719 -0.174122 -0.157187 2.301120 -2.326527 -0.337936 -1.218304 0.669089 -1.250178 0.631449 -0.522505 2.141627 0.854126 -0.571160 1.593786 -0.048404 1.030175 -0.317079 -0.372445 0.381781 1.230337 +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) = -3.121006 2.191159 0.644973 -3.466883 8.103281 -1.160210 0.439110 2.361738 -1.496633 4.336374 -3.358257 0.575288 -1.117534 -5.666104 0.637346 -1.891606 -0.225117 3.050972 -0.865182 2.550589 2.201755 -2.105898 1.671210 -1.379158 -1.607517 -5.690463 -0.706196 1.944891 2.850776 -1.008688 0.970254 -0.118978 5.139062 -1.501877 2.790619 3.076851 2.047206 4.301874 1.046915 -2.770186 1.086416 1.960012 -1.994146 -4.755934 1.250133 -1.417899 -4.913997 -2.794102 2.676747 -4.442858 -1.508745 3.955070 -0.521487 -1.955449 -3.601138 3.823194 4.113738 -0.403867 4.824360 0.818110 -1.504423 -1.563249 -4.197950 3.393548 -3.049230 0.920952 -1.560341 -4.348802 -0.886752 2.608242 -0.891161 -1.360171 -2.414891 1.836190 2.865545 -3.572067 0.855971 -1.861440 -2.398509 -3.846065 -2.548621 1.250730 -1.546319 3.738082 0.250435 1.596772 1.311084 1.289635 0.102478 -4.533421 -0.552810 4.491018 -1.373038 -0.924742 -1.450005 3.516209 1.999077 -1.705478 -2.145674 -2.234875 0.741125 -0.615688 2.373768 -1.949525 0.451938 -4.080786 0.268825 0.986326 1.452269 3.070357 0.302865 1.093721 0.714015 2.690540 -3.813706 1.041436 -5.916843 1.127439 -1.797725 1.308622 -1.932229 1.764471 2.111848 2.118745 3.388880 -5.876518 4.347430 0.369842 -0.650179 -3.207133 1.388689 0.295499 -1.049606 -0.629893 2.521245 -1.218286 -0.705728 -0.266922 1.801203 0.637183 -2.544905 -0.459360 0.013229 4.467794 -4.748984 1.890289 -0.979744 -1.891721 0.431828 1.228835 2.668360 2.576586 5.821321 4.059303 -0.762074 3.941694 -5.238555 1.732672 5.965578 1.337565 -3.288666 3.600698 -2.452890 -0.710068 1.171738 2.932864 2.575164 2.514049 -3.272207 -2.865872 1.409674 -0.003015 4.583039 1.582405 0.693462 -5.302193 2.903330 -0.510760 0.623638 6.162580 2.617952 -4.981644 2.796752 3.787542 -4.893290 -2.266874 1.339854 -2.412319 -0.817425 -2.025408 1.500640 3.023895 -2.763643 -3.740923 -1.295800 -3.426920 3.695346 -1.070391 -1.883185 1.808447 -2.644388 -2.718559 4.808040 0.723578 -1.130395 -2.711869 -3.978888 -2.475103 -5.078595 1.290353 1.084942 -2.500374 -1.850552 -3.612179 -1.381526 3.874974 -0.239340 1.537886 -7.042145 0.062726 2.626123 3.146300 1.721387 -2.768081 -0.497967 0.387786 -0.814272 0.297597 -1.003120 2.205091 4.646229 -3.653496 2.616310 -1.057657 -2.652328 2.320599 3.655098 -3.899761 5.683588 0.632077 5.742892 0.279178 1.850884 -1.493105 1.442098 0.274139 -2.520961 -0.370644 1.725551 -3.437105 -2.124938 2.596867 -2.086628 -4.272108 0.840339 3.267157 1.152574 1.032798 -0.217910 -1.993427 -1.055682 -1.044372 0.872941 2.820921 -1.145218 -3.211296 1.704587 2.947562 -1.144230 -3.005651 0.874912 2.213621 3.222157 -4.914039 2.873516 -0.684384 1.266253 -4.532071 -4.490071 2.138101 -2.855738 -2.193680 2.380630 -5.942171 -1.737277 -2.831274 2.167178 -3.917381 -0.837193 0.744348 4.676784 1.123593 -0.764198 3.154170 -1.226244 1.885166 -0.814876 0.017512 1.095642 3.100811 +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) = -1.377055 0.339349 -0.560221 -1.326641 3.829708 -0.730652 -0.114350 1.072156 -0.342727 1.898773 -1.405485 -0.079442 -0.673348 -2.611054 0.374948 -0.060549 0.254183 1.395994 -0.552914 0.694617 0.982377 -0.807250 0.879133 -0.480461 -0.579562 -2.361752 -0.367373 0.926679 1.267809 -0.790069 -0.378587 0.108546 2.421754 -0.685653 1.133576 1.184517 1.097599 1.992528 0.586763 -1.456044 0.617217 0.910612 -0.843646 -2.228472 0.707457 -0.705635 -2.233819 -1.112275 1.381747 -1.741872 -0.111650 1.746852 -0.225470 -0.812789 -1.663488 1.598157 1.875085 0.064061 2.223075 0.389102 -0.672958 -0.761886 -1.689995 1.624170 -1.528183 0.451498 -0.829810 -2.113146 -0.781758 1.266762 -0.121639 -0.912874 -1.402076 0.678876 1.243477 -1.483115 0.493196 -0.536586 0.055989 -1.923456 -1.607023 0.510064 -1.204644 1.701351 0.054707 0.667799 0.431120 0.405404 0.161781 -1.964749 -0.150700 1.733964 -0.734053 -0.023972 -0.314678 1.316138 0.612992 -0.837617 -1.050607 -1.155853 0.170920 -0.412530 1.081151 -0.489104 0.728021 -1.544618 0.385336 0.292089 0.937579 1.229366 0.851172 0.090683 0.164935 1.100250 -1.362393 -0.097611 -2.760392 0.502547 -0.669734 0.515418 -0.977634 0.916871 1.245659 0.598385 1.545974 -2.771954 1.953742 0.125940 -0.272484 -1.179308 0.624483 0.246416 -0.531760 -0.185010 1.357774 -0.785173 -0.377886 -0.053763 1.009670 0.351176 -1.647418 0.406003 -0.273366 1.862638 -2.184692 0.837619 -0.496256 -1.146942 0.330635 0.464152 1.089485 1.304253 2.596233 1.861614 -0.694270 1.610790 -2.557884 1.096130 2.799655 0.307594 -1.521458 1.495757 -1.145824 -0.049915 0.666130 1.444503 1.213641 0.757741 -0.800291 -0.654537 0.546423 0.331978 2.047325 0.324270 0.622310 -2.352724 0.720426 0.105594 0.639650 3.027691 0.868809 -2.410256 1.389802 1.812360 -1.781463 -0.685754 0.459915 -1.068464 -0.337816 -1.340658 0.952958 1.641909 -1.524173 -1.546812 -0.415893 -1.448009 1.557419 -0.490088 -1.207099 1.137353 -1.452210 -0.392366 2.361640 0.353857 -0.214452 -1.213313 -2.073583 -1.124919 -2.338464 0.563031 0.315197 -1.082820 -0.550554 -1.611140 -0.817028 2.178721 0.161652 0.723039 -3.360295 0.536489 1.190715 1.458917 0.725867 -1.053223 -0.242247 0.514174 -0.597568 0.050670 -0.635309 0.600309 1.770551 -1.876111 1.020431 -0.169297 -0.746564 1.049246 1.505826 -1.572982 2.490226 0.303832 2.607126 0.084983 0.926122 -0.632502 0.809466 -0.034098 -0.733907 -0.373876 0.775844 -1.678833 -1.030130 1.478223 -0.743855 -2.289072 0.242249 1.559966 0.800306 0.466118 -0.673403 -0.734579 -0.354712 -0.211382 0.686965 1.228155 -0.506084 -1.443162 0.732214 1.354076 -0.633470 -1.169489 0.516523 0.837638 1.657741 -2.204745 1.143752 -0.163536 0.908833 -1.893021 -1.941624 0.690457 -0.892037 -0.641981 1.397088 -2.862486 -1.067774 -1.179822 1.086745 -1.596599 0.237326 0.066853 2.063817 0.550218 -0.298436 1.543967 -0.292579 0.503821 -0.504506 -0.181686 0.576388 1.327557 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +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.384975 1.420593 0.223691 -1.382169 3.957192 -0.869423 0.243718 2.039894 -1.525482 2.100345 -1.365572 1.258802 -0.217714 -2.882000 0.313994 -0.390483 -0.006443 1.726486 0.020860 1.329064 0.926479 -1.084556 0.508493 -0.463303 -0.884014 -3.114361 0.093288 0.884745 1.477765 -0.634498 0.554353 0.152459 2.676306 -0.624848 1.566657 1.607180 0.979412 1.748578 1.365376 -1.804136 0.179203 0.728451 -0.908046 -2.066711 0.455008 -0.451024 -2.154036 -1.110970 1.033021 -1.970500 -0.695568 1.756111 -0.285472 -0.540879 -1.651459 1.829515 1.948940 -0.742508 2.198389 0.340300 -0.812182 -1.244228 -1.609102 2.148829 -1.244749 -0.327031 -0.618584 -1.752732 0.233901 1.103722 -0.335199 -0.699924 -0.636618 1.108390 1.087320 -1.835990 0.345546 -0.779324 -1.482270 -2.277898 -1.047378 0.636999 -0.641729 1.757626 0.225968 0.776200 0.243764 0.655644 -0.154922 -2.272179 -0.017778 2.119554 -0.829673 -0.509168 -0.922577 2.144222 1.119235 -0.579011 -0.732861 -1.451931 0.480799 -0.412599 1.042178 -1.253628 0.442755 -1.710333 -0.149292 -0.170797 0.694006 1.981512 -0.003792 0.777495 0.625359 1.452958 -1.662731 0.319821 -3.176011 0.803190 -0.652899 0.534440 -0.832418 0.617534 1.104767 1.090791 1.678823 -3.045590 1.788345 0.231074 0.150026 -1.835181 0.498044 -0.042080 -0.352427 -0.537007 1.196000 -0.562590 -0.218081 -0.304452 0.802624 0.481581 -1.657931 -1.034806 0.061941 2.947821 -3.125451 0.876952 -0.436174 -0.630970 0.051008 0.543375 1.350534 1.370617 2.645712 1.806373 -0.181626 2.467202 -2.732814 0.471828 2.730741 1.412635 -1.447929 1.910904 -1.278807 -0.712739 0.517617 1.667721 1.260657 0.721917 -2.079993 -1.830401 1.566450 0.161081 2.172750 0.465846 0.177357 -2.284191 1.757307 0.180092 -0.189385 3.160973 0.900854 -2.307486 1.576912 1.525558 -1.856986 -0.747306 0.773488 -1.534375 -0.598724 -0.709365 0.500206 1.399724 -1.245533 -1.460160 -0.490509 -1.530912 1.708426 -0.456143 -0.810404 0.767200 -1.026786 -0.987422 2.340373 0.431257 -0.443159 -1.320001 -2.035887 -1.465413 -2.158152 0.430111 0.430086 -1.106194 -0.732751 -1.790216 -0.899785 1.780227 0.028113 0.716135 -4.179677 -0.105678 1.298865 1.569370 0.391250 -1.997820 -0.180455 0.231087 -0.136354 0.059781 -0.471042 1.665394 2.368500 -1.520133 1.273040 -0.403673 -0.900005 1.310617 1.589795 -2.128905 2.563283 0.204162 3.076419 0.461747 0.701215 -0.950661 0.493575 -0.008630 -0.845132 -0.282015 0.586334 -1.419297 -0.901749 1.101435 -0.966028 -2.210260 0.119146 1.371821 0.461963 0.458795 -0.285175 -0.769467 -0.608676 -1.030043 0.445586 1.226094 -0.697369 -1.355013 1.131786 1.229099 -0.280292 -0.991662 0.297781 1.221001 1.217246 -2.253180 1.143126 -0.347332 0.770347 -2.125915 -2.733574 1.225544 -1.277658 -1.299391 0.841191 -3.313138 -0.905410 -1.242207 0.780366 -2.900901 -0.147753 0.434975 2.366619 0.014008 -0.447275 1.366070 -0.732297 0.806131 -0.343645 0.547467 0.213694 1.572870 +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.123985 -0.038454 -0.210110 -0.074103 0.223418 0.018336 -0.225826 0.114047 0.249125 0.216244 -0.109009 -0.178346 -0.092507 -0.193942 0.018458 0.182200 0.016902 0.073678 -0.102462 -0.133745 0.097446 -0.074573 0.119627 -0.045414 -0.020371 -0.178383 -0.022096 0.055415 0.095952 0.021461 -0.232101 -0.030429 0.140355 -0.032570 0.020029 0.011077 0.101421 0.169989 0.057700 0.068312 0.047049 0.124001 -0.074619 -0.207207 0.129420 -0.162407 -0.053186 -0.078352 0.159124 -0.137333 0.181859 0.099621 -0.001309 -0.093709 -0.124683 0.038987 0.052447 0.158342 0.229734 0.035603 -0.019004 -0.134538 -0.141627 0.136574 -0.225793 0.093836 -0.026017 -0.209278 -0.173801 0.101537 -0.081059 0.060129 -0.043829 0.019979 0.049762 -0.091054 0.073069 -0.022043 0.253022 -0.037734 -0.166828 0.025981 -0.149243 0.145815 -0.037857 0.027503 0.011727 0.016007 0.050504 -0.136937 -0.037105 0.021619 -0.050475 0.120682 0.203305 0.031756 0.009238 -0.062271 -0.004015 0.060848 -0.023826 0.065829 0.076980 0.041440 0.097895 -0.085945 0.250536 0.032254 0.083807 -0.081992 0.209988 -0.120404 -0.088709 0.104684 -0.030323 -0.080081 -0.168195 -0.017299 0.065302 0.070675 -0.093656 0.086196 0.134202 -0.086584 0.121267 -0.198174 0.177884 0.008276 -0.008522 -0.025945 0.075025 0.023164 -0.071041 0.038111 0.120240 -0.085762 -0.077151 -0.014680 0.104652 -0.002189 -0.292022 0.192162 -0.073431 0.053780 -0.085688 0.039599 -0.055590 -0.151219 0.048647 0.015599 0.034752 0.079355 0.178986 0.141614 -0.079184 -0.042243 -0.167267 0.175832 0.264082 -0.124522 -0.146697 0.042388 -0.095408 0.089037 0.112120 0.045421 0.097691 0.189973 0.158671 0.119414 -0.093792 0.056611 0.175845 0.026174 0.187240 -0.133348 -0.046358 0.036292 0.146549 0.241863 0.080693 -0.221592 0.114946 0.129049 -0.227450 0.085382 -0.017541 0.046090 0.115429 -0.204262 0.088433 0.207484 -0.191367 -0.159717 -0.055399 -0.130354 0.194684 -0.031652 0.064970 0.179489 -0.202344 0.246287 0.160645 0.081184 -0.013248 -0.098127 -0.130194 -0.263340 -0.193906 0.042542 0.026504 -0.160519 -0.007547 -0.130715 -0.085351 0.225534 0.038362 -0.005831 -0.232021 0.143794 0.087381 0.033759 0.072833 0.104976 -0.031576 0.061589 -0.137002 0.106282 -0.084853 -0.018496 0.060291 -0.160298 0.140760 0.062619 0.104625 0.061832 0.087671 -0.037980 0.172078 -0.032313 -0.057922 -0.031913 0.120257 -0.003271 0.121172 -0.047596 -0.083904 0.005032 0.086940 -0.157722 -0.091153 0.187819 -0.144342 -0.097711 0.043588 0.119389 0.264358 0.032987 -0.082899 -0.098981 0.005852 0.034737 0.034718 0.108039 0.045087 -0.152053 -0.010132 0.052121 -0.084847 -0.251924 0.082270 -0.007105 0.182005 -0.148417 0.059250 0.065301 0.021265 -0.128327 0.023594 -0.119637 0.080086 0.014682 0.199445 -0.258393 -0.060646 -0.062656 0.113882 -0.062793 0.136911 -0.126335 0.141692 0.087284 -0.010235 0.171566 0.057111 0.039083 0.031321 -0.119015 0.072145 0.088542 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.950600 0.938229 0.203581 -0.909872 2.209356 -0.416892 0.099783 1.250860 -0.857040 1.294642 -1.044631 0.678371 -0.065807 -1.520991 0.242431 -0.197668 0.034324 0.858431 -0.074647 0.749393 0.626050 -0.545398 0.206875 -0.472202 -0.569211 -1.477820 0.021252 0.494009 0.877971 -0.377063 0.091953 0.227850 1.613596 -0.384226 1.198431 1.136736 0.800017 1.155970 0.744404 -0.979551 0.227515 0.525005 -0.606953 -1.280475 0.244547 -0.428395 -1.131897 -0.565230 0.626733 -0.991565 0.030139 1.119438 -0.124490 -0.352655 -1.134478 1.092314 0.867323 -0.469717 1.537130 0.319811 -0.762658 -0.740054 -1.026989 1.609613 -0.924802 0.159730 -0.395499 -1.142235 0.091977 0.783338 -0.024416 -0.676337 -0.635845 0.665172 0.443697 -1.211877 0.346120 -0.467092 -0.431531 -1.099131 -0.734898 0.567373 -0.358172 1.132922 0.136550 0.446295 -0.261017 0.456107 -0.021039 -1.496274 -0.126113 1.278498 -0.731265 -0.091318 -0.771492 1.144293 0.603845 -0.338244 -0.469338 -0.756952 0.470296 -0.193272 0.613446 -1.048313 0.595982 -1.174510 0.105366 0.159967 0.303255 1.192559 0.058416 0.743766 0.661918 0.942652 -0.618817 -0.050297 -1.786379 0.416668 -0.315648 0.164804 -0.510287 0.412546 0.591459 0.561596 1.127603 -1.752689 1.152540 0.230934 -0.105566 -1.122242 0.352974 -0.108784 -0.414257 -0.405551 0.822716 -0.137204 -0.145131 -0.161158 0.475671 0.190625 -1.013345 -0.826888 0.007730 1.494840 -1.623279 0.448491 -0.290855 -0.386057 -0.076658 0.530594 0.886746 0.865408 1.598038 1.117345 -0.128479 1.148640 -1.556556 0.323883 1.649739 0.751599 -1.153337 1.297375 -1.099230 -0.455792 0.365872 0.866298 0.681542 0.638488 -1.274974 -1.180916 0.742498 -0.025357 1.481289 0.238242 0.199826 -1.146827 1.096878 -0.154952 -0.285636 1.871304 0.482427 -1.516321 0.765488 1.139799 -0.889603 -0.528769 0.641963 -1.142746 -0.397251 -0.519201 0.253125 0.894210 -0.971676 -0.842382 -0.190106 -1.117464 1.304680 -0.178385 -0.441290 0.264067 -0.894801 -0.567796 1.553862 0.279031 -0.286704 -0.758562 -1.014219 -0.837958 -1.528385 0.241611 0.484020 -0.592680 -0.545577 -1.193106 -0.511639 1.007007 -0.195224 0.447309 -2.242175 -0.130357 0.890976 0.699094 0.278195 -0.970985 -0.228876 0.099922 -0.030588 0.200590 -0.593136 1.069768 1.469705 -0.954540 0.981309 0.107205 -0.568386 0.645205 0.968207 -1.346491 1.708080 0.111639 1.325027 0.373260 0.576010 -0.811806 0.154995 -0.062989 -0.412178 -0.286629 0.422998 -0.972394 -0.499625 0.438163 -0.628962 -1.090829 0.201978 0.874310 0.255048 0.183003 -0.161196 -0.315081 -0.523445 -0.860025 0.341328 0.854974 -0.543106 -0.808076 0.739690 0.767025 -0.406740 -0.318902 0.247860 0.713512 1.022950 -1.507511 0.716415 -0.117362 0.402961 -1.531074 -1.496547 0.546589 -0.726162 -0.723534 0.480075 -1.929078 -0.628205 -0.777680 0.556810 -1.518173 -0.197772 0.353590 1.631220 0.113615 -0.427548 0.870214 -0.475045 0.598851 -0.035517 0.249599 0.040343 0.910655 +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*) = -2.171572 2.651758 2.158835 -2.003327 3.966764 -0.387298 0.201539 1.809271 -2.296680 2.999063 -1.941903 0.533477 -0.755442 -3.374450 0.481363 -2.292899 -0.437534 1.496205 0.333657 2.870040 1.579397 -2.092858 0.299406 -0.676186 -1.458640 -2.871417 -0.412729 1.207092 2.841873 -1.332596 1.469601 0.265088 3.720399 -0.674587 3.305282 2.799401 1.196992 2.904605 1.293293 -2.663813 -0.726254 1.635262 -1.992606 -2.661441 0.652495 -0.978566 -2.116735 -1.141146 1.358886 -1.217510 -1.108369 2.920250 -0.764513 -0.535944 -2.724935 2.302282 1.374669 -0.103572 3.806707 0.449436 -0.912600 -1.499588 -3.320343 2.496665 -1.842343 0.432447 -1.645364 -2.079362 1.193052 0.451196 -0.688678 -1.362735 -1.281734 2.700136 1.313583 -2.954150 0.755696 -1.538662 -3.522635 -2.371117 -2.141255 1.299801 -0.319678 2.795546 0.193626 1.272031 0.104854 1.887976 -0.730768 -4.234334 0.442458 3.044822 -1.725938 -0.881786 -1.102702 3.337008 0.896823 0.000581 -1.685179 -0.776262 1.396806 -0.719333 1.719477 -3.007437 1.492111 -3.483160 0.209756 -0.057027 0.729259 2.521783 1.282800 2.072756 2.516897 3.028794 -2.629441 -0.292751 -3.457991 0.509210 -1.072632 0.554042 -1.035591 1.971122 -0.075556 1.298033 3.124988 -4.482530 1.830001 0.294941 -0.272559 -3.017688 0.546874 -1.051962 -0.882207 -1.442364 1.979965 -0.196175 -0.618271 -0.986804 0.463778 0.808825 -1.455424 -1.724842 0.834671 3.670412 -3.147351 0.996354 -0.820707 -1.256843 -0.180484 1.540644 2.537749 2.697767 3.660987 2.924857 -0.262247 2.210788 -3.406282 0.194245 3.257689 0.900066 -3.001624 3.481433 -2.546000 -1.490549 0.657954 2.298865 2.556763 1.598012 -3.426894 -3.791213 1.822018 0.494143 3.503201 0.554762 0.140231 -1.763136 3.365737 -0.352610 -1.800630 3.953466 0.370589 -2.607607 0.992314 1.762149 -2.921935 -1.607776 1.922345 -2.762595 0.026295 -1.122570 -0.018154 2.134242 -1.844831 -1.669192 -0.381651 -2.938858 3.376217 -0.715567 -0.476791 0.717889 -2.196711 -3.541588 3.262657 0.376237 -1.141948 -2.598017 -2.441355 -1.396631 -3.024349 1.020162 0.828650 -1.011163 -1.910002 -3.036666 -0.762730 1.585455 0.262734 1.512076 -4.592410 -1.173551 1.909972 1.499990 1.297493 -1.228851 -0.477385 0.296653 -0.182722 0.785779 -0.659708 3.195685 4.074976 -2.198057 2.282148 -0.470837 -2.022915 1.565753 2.120830 -3.801895 4.235524 0.033461 3.049512 0.239425 1.090503 -1.804344 0.262241 0.923200 -1.211422 0.062798 0.455043 -1.022765 -1.188398 -0.006862 -2.002335 -1.951862 -0.296188 1.345280 -0.232101 0.987058 0.355947 -1.043825 -1.461351 -1.314825 0.651571 2.319908 -0.741051 -1.127537 2.240012 0.742657 0.410463 -0.325955 0.337378 1.392258 1.962272 -3.851758 0.787734 -0.879457 0.512192 -2.720311 -3.346388 0.849461 -2.059912 -1.295804 1.553482 -3.771078 -0.029285 -2.198879 0.479449 -2.398125 -0.541391 1.034824 3.922127 0.917074 -1.924281 1.697582 -1.501121 2.113188 0.134132 0.086507 0.172350 2.251380 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.352086 0.257658 -0.377895 -0.208195 0.955141 -0.293819 -0.035891 0.765537 -0.424489 0.552651 -0.279425 0.410159 0.040085 -0.706496 0.142384 0.430503 0.196915 0.415869 0.047117 0.142107 0.211094 -0.229568 0.058428 -0.090906 -0.204046 -0.644308 0.163359 0.215594 0.382973 -0.227579 -0.250669 0.221193 0.698548 -0.119055 0.500189 0.444072 0.338336 0.331687 0.606656 -0.605096 0.063680 0.146246 -0.194267 -0.497738 0.090550 -0.118578 -0.422764 -0.187253 0.249777 -0.310769 0.163277 0.406053 -0.048838 0.000000 -0.487645 0.327836 0.338498 -0.322864 0.616710 0.139167 -0.330982 -0.491998 -0.168923 0.854936 -0.360641 -0.255846 -0.089084 -0.475195 0.101521 0.378688 -0.007793 -0.300097 -0.120790 0.251256 0.113683 -0.493813 0.155564 -0.034974 0.163235 -0.610140 -0.389279 0.215523 -0.310119 0.503773 0.080957 0.158454 -0.241300 0.089600 -0.001884 -0.597458 0.036676 0.388733 -0.339999 0.070410 -0.233086 0.531608 0.297392 -0.124906 -0.106641 -0.433494 0.141730 -0.157796 0.222477 -0.319788 0.430009 -0.272714 -0.009202 -0.192998 0.241205 0.600484 0.182617 0.182380 0.233115 0.368427 -0.092818 -0.242113 -0.732802 0.304803 -0.023398 0.026612 -0.222529 0.090272 0.493706 0.114119 0.461872 -0.764558 0.366746 0.141176 0.173060 -0.475424 0.102461 -0.034163 -0.139846 -0.172135 0.405448 -0.165153 -0.018697 -0.074214 0.266461 0.157544 -0.708409 -0.253003 -0.113471 0.758494 -0.877151 0.190303 -0.117091 -0.162539 -0.027732 0.140947 0.324238 0.431362 0.598551 0.431243 -0.139883 0.623512 -0.728901 0.181318 0.736784 0.435581 -0.413457 0.521391 -0.506241 -0.192058 0.177093 0.402375 0.299363 0.005701 -0.381272 -0.284493 0.497481 0.142567 0.603708 -0.116374 0.170115 -0.374291 0.322066 0.201889 -0.082408 0.816479 0.036911 -0.692695 0.563086 0.458421 -0.201397 0.066161 0.234810 -0.553242 -0.226192 -0.313497 0.182123 0.461014 -0.499466 -0.167859 -0.026316 -0.375666 0.458535 -0.051893 -0.189168 0.204364 -0.358960 0.308565 0.677610 0.189986 0.047445 -0.280770 -0.496316 -0.513618 -0.576123 0.015825 0.088254 -0.252545 -0.027296 -0.492562 -0.413519 0.581268 0.045214 0.168924 -1.185868 0.232399 0.388807 0.341980 -0.080094 -0.459990 -0.083693 0.210665 -0.015747 -0.001445 -0.348709 0.434885 0.396692 -0.404446 0.314127 0.110339 0.114899 0.393737 0.201650 -0.554488 0.624181 0.077715 0.564756 0.275056 0.226021 -0.349854 0.079051 -0.175670 0.008681 -0.252897 0.141999 -0.444480 -0.202220 0.393173 -0.142634 -0.624339 -0.029963 0.372950 0.266820 0.048090 -0.332341 -0.060344 -0.158863 -0.454439 0.270205 0.283657 -0.248468 -0.264714 0.360585 0.334246 -0.130772 -0.049600 0.118975 0.301210 0.397748 -0.576104 0.218362 0.015510 0.398790 -0.510876 -0.703501 0.247736 -0.098994 -0.252026 0.236248 -0.996573 -0.338101 -0.251426 0.212831 -0.888224 0.192982 0.038845 0.706285 -0.157476 -0.124280 0.357341 -0.126952 0.042745 -0.082832 0.243583 -0.032995 0.354190 +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.616657 0.737990 -0.153325 -0.487662 1.558996 -0.168529 0.280318 1.094559 -1.054343 0.979923 -0.604266 0.546901 0.037451 -1.118724 0.157573 -0.014635 -0.013947 0.461318 0.028121 0.519452 0.372093 -0.540991 0.073163 -0.227140 -0.419878 -1.097099 0.227711 0.305235 0.853028 -0.015196 -0.083313 0.117319 0.998036 -0.264063 0.813539 0.755703 0.363865 0.515749 0.628581 -0.964688 -0.066792 0.305898 -0.445304 -0.778330 -0.076109 -0.279434 -0.882573 -0.339930 0.367840 -0.723386 -0.225046 0.742713 -0.120887 -0.095712 -0.678680 0.745794 0.530813 -0.450292 1.051386 0.194529 -0.485251 -0.906320 -0.591151 1.306159 -0.358952 -0.218968 -0.182167 -0.750095 0.284236 0.483388 -0.468719 -0.156200 -0.067756 0.599140 0.437713 -0.874292 0.188595 -0.319944 -0.845816 -0.676649 -0.357070 0.355143 -0.283642 0.873207 0.164640 0.292217 -0.060042 0.311238 -0.129321 -1.144575 0.023842 1.076875 -0.423177 -0.267416 -0.709518 1.000661 0.589213 -0.065594 -0.324902 -0.444539 0.327036 -0.034244 0.363262 -1.266250 0.319987 -0.946808 -0.083508 -0.008740 0.334922 1.104411 -0.008514 0.404533 0.441949 0.789664 -0.501109 0.039509 -1.067841 0.380271 -0.279880 0.151524 -0.388630 0.199728 0.585025 0.392008 0.820904 -1.258494 0.634944 0.264363 0.125114 -1.015176 0.136429 -0.236350 -0.239574 -0.237299 0.486130 -0.153964 -0.031312 -0.229004 0.353110 0.220971 -0.840000 -0.466722 0.113664 1.202019 -1.354491 0.296222 -0.153016 -0.046731 -0.139204 0.476442 0.691938 0.641968 1.101582 0.695781 -0.015542 0.984526 -1.030339 0.242424 1.275751 0.660471 -0.746510 0.913462 -0.893333 -0.398201 0.073588 0.523904 0.521332 0.545451 -1.071631 -0.833577 0.620176 0.086812 1.070908 0.267659 0.137037 -0.557151 0.971190 -0.295302 -0.338861 0.949241 0.524339 -0.983196 0.676196 0.624243 -0.842615 -0.094111 0.553033 -0.953698 -0.196231 -0.397678 0.065035 0.655096 -0.626472 -0.404164 -0.163973 -0.730077 0.957537 -0.076905 -0.071173 0.090181 -0.435443 -0.048462 0.933207 0.285021 -0.186987 -0.534022 -0.608470 -1.279471 -0.879784 0.098545 0.249380 -0.460612 -0.412444 -0.864100 -0.591254 0.632388 -0.020129 0.391315 -1.621149 0.121454 0.602497 0.721806 0.210699 -0.542631 -0.146071 0.008257 -0.064032 0.166016 -0.477838 0.974645 0.870412 -0.515073 0.805575 -0.188656 -0.234919 0.529458 0.497402 -0.960298 1.096388 0.193573 0.856992 0.334546 0.402599 -0.473103 0.129000 -0.120202 -0.472059 -0.153001 0.338089 -0.605985 -0.318092 0.415526 -0.432730 -0.809140 0.013750 0.476818 0.250472 0.102565 -0.174842 -0.359748 -0.379579 -0.896937 0.245406 0.536542 -0.434317 -0.396691 0.556694 0.387337 -0.089188 -0.165420 0.171983 0.514007 0.548897 -0.972400 0.322713 -0.092935 0.420702 -0.992057 -1.070040 0.313102 -0.354460 -0.729305 0.352274 -1.337467 -0.221450 -0.539086 0.197270 -1.499192 -0.366701 0.289822 1.235461 -0.249433 -0.258080 0.493564 -0.315017 0.359620 -0.040757 0.428239 0.063604 0.530129 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -3.482596 2.445662 2.020025 -2.863799 8.370940 -1.022236 -0.367653 3.177262 -3.026287 6.423979 -1.908799 -0.878116 -1.753223 -6.576248 0.621079 -2.785617 -0.915471 2.519640 0.106742 4.110052 2.460106 -3.476091 0.801873 0.132804 -2.325745 -5.462339 -1.416991 2.603230 5.911369 -4.132682 0.887730 0.045296 6.925242 -1.712077 5.676464 4.668720 1.805197 3.812090 1.189295 -4.623979 -1.607827 2.755815 -3.853147 -3.084756 0.550359 -1.158869 -5.169322 -2.508190 2.818309 -1.239524 -2.908932 5.507700 -1.844602 -0.060908 -3.672290 5.113498 1.690417 -0.222044 6.655955 0.521430 -0.561750 -1.092559 -6.744239 4.425055 -2.539591 0.036520 -3.782289 -4.026408 1.454799 -0.163853 -1.012454 -2.931328 -0.685613 6.032498 3.532219 -5.074264 0.899296 -2.773542 -5.452358 -6.841212 -5.126955 2.016007 -0.974234 4.706951 0.573468 2.308973 1.679852 3.684854 -2.194033 -8.299823 1.875157 5.540110 -2.776291 -2.591373 -2.323136 5.008409 1.391870 0.623210 -3.067899 -1.889340 1.599147 -1.894775 3.196988 -4.451211 4.862592 -4.881750 -1.116109 -1.207125 2.629444 2.901161 2.967067 1.073716 4.078699 6.245273 -5.313240 -0.902883 -5.128031 1.425454 -2.261723 1.623684 -1.766420 3.820989 1.399620 2.513670 5.999291 -8.848900 1.582855 -0.444719 -0.645095 -6.047237 0.131468 -2.288886 -1.429834 -2.142966 3.164252 -1.196633 -0.929699 -2.325625 1.824953 1.881541 -2.607166 -0.023893 1.937210 6.174726 -5.779669 1.952285 -1.178737 -2.175369 -0.267138 2.939364 5.274498 5.476761 7.438137 5.238049 -0.595573 2.717868 -6.886925 0.150104 5.352397 -0.051323 -4.344529 6.671263 -3.980666 -2.168628 0.713831 5.727788 4.823303 1.175322 -4.495210 -4.548622 3.040263 2.327500 6.284897 -0.339950 -0.100064 -1.376050 4.180944 -0.068098 -3.613590 6.467813 2.097886 -4.169748 2.810618 2.070315 -4.424849 -2.695447 3.997970 -4.930401 0.127466 -2.119983 0.730526 3.864876 -2.306062 -1.231308 0.278562 -4.544496 5.744517 -1.823762 -1.188349 3.466676 -3.635497 -6.009186 4.822517 -0.025984 -1.427222 -4.833866 -5.387198 -3.121029 -4.261912 2.078503 0.115354 -1.691828 -2.554011 -5.241133 -1.160445 4.290090 1.972968 3.860029 -8.642407 -0.817011 2.914413 2.507076 3.675593 -0.957575 -0.370780 0.570468 -1.079569 0.581847 -1.268124 4.461790 7.131652 -3.841225 2.854523 -2.211951 -3.202241 2.540764 2.323062 -7.619967 7.275808 1.676440 4.548681 0.005316 1.443251 -2.178898 1.064438 1.846386 -1.409220 0.532285 0.466773 -0.980152 -2.356579 0.062150 -4.368436 -4.503607 -1.737488 1.783293 -1.165386 2.398629 -0.435381 -3.353597 -1.607745 -2.385621 1.530613 3.757757 -0.219062 -0.683705 4.582996 0.884290 1.703416 0.530818 0.252241 1.972992 3.055945 -6.651279 0.261487 -1.469645 2.843866 -3.023151 -6.340547 0.456282 -3.671836 -2.229615 3.296840 -6.459723 -0.348189 -4.265658 -0.216790 -4.590660 -0.606026 2.055862 7.546305 2.422178 -3.657307 2.483701 -2.391032 3.099034 -0.497305 -0.416574 1.226796 3.135130 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -1.252973 0.736806 0.596708 -1.055935 3.285582 -0.583824 -0.005888 1.872097 -0.427909 1.970841 -1.046576 0.042758 -0.249949 -1.710536 0.290488 -0.652474 -0.271171 1.228643 -0.497141 0.671627 0.849938 -0.041412 0.103978 -0.200717 -0.852458 -1.627661 -0.592527 0.819761 1.086451 -0.941171 -0.102259 0.315589 2.460962 -0.735420 2.092658 1.638131 1.327751 1.373977 0.205514 -0.314242 0.306631 0.751501 -1.102004 -1.291417 0.167212 -0.550968 -1.916484 -0.737643 0.900408 -1.077077 0.402463 1.566891 -0.220964 0.017019 -0.718973 1.804396 0.249383 -0.327540 2.041524 0.518946 -1.351795 0.043536 -2.090182 2.501636 -0.978806 0.950682 -1.161376 -2.036399 -0.366194 0.586762 0.598673 -1.489889 -0.747593 1.414733 0.710934 -1.462986 0.579865 -0.713629 0.011632 -1.780062 -1.470209 0.890026 -0.421485 1.283586 0.038121 0.518936 -0.403942 0.806029 -0.539586 -2.339967 0.048606 2.116201 -1.351151 -0.070757 -1.715400 0.446795 0.423818 0.128512 -0.621642 -1.193216 0.665269 -0.249473 0.835826 -0.926440 1.310834 -1.167204 -0.141877 0.323736 0.637026 1.070962 -0.073809 0.683780 1.237176 1.665609 -0.697530 0.166609 -2.051964 0.927682 -0.990192 0.473310 -0.627520 0.849912 0.941051 1.017194 1.738300 -2.402655 0.974289 -0.209417 -0.627189 -1.543894 0.288266 -0.520239 -0.827728 -0.712705 1.095281 0.002874 -0.421217 -0.596959 0.764623 0.295657 -0.926716 -0.869077 0.199644 0.896695 -1.793205 0.407486 -0.368423 -0.512470 -0.318292 1.240202 1.660979 1.524825 2.463408 1.588650 0.007420 0.249988 -2.484023 0.145448 1.801316 0.116596 -1.511614 2.030090 -1.539803 -0.520602 0.545496 1.716110 0.780878 0.984479 -1.110444 -1.112387 0.300235 0.492511 2.274935 0.540143 -0.001143 -0.993678 0.627088 -0.910042 -0.950060 2.583839 1.227421 -1.990999 0.413221 0.962519 -0.621169 -1.220757 1.234202 -1.807552 -0.648858 -0.599890 0.365890 1.285433 -0.979995 -0.637906 0.765074 -1.519996 1.824984 -0.544418 -0.828445 0.681966 -1.612938 -1.467561 2.130986 0.231476 -0.386367 -1.044805 -1.485192 -0.470881 -1.753772 0.479313 0.657589 -0.316701 -0.922215 -1.581766 -0.178879 1.592295 -0.001574 1.135217 -2.331822 -0.458870 1.087635 -0.018690 1.029034 -1.404393 -0.180497 -0.527056 -0.261238 0.334541 -0.863748 0.941157 2.425552 -1.164827 1.201662 0.495514 -1.377008 0.077612 1.099545 -2.137030 2.398737 0.438246 0.825617 0.259995 0.559312 -0.993094 0.061806 0.043087 0.010762 -0.284222 0.596889 -0.695732 -0.566160 -0.133701 -1.605996 -1.107362 -0.035863 0.974661 -0.374346 0.512095 -0.244669 -1.169740 -0.642767 -1.277081 0.339619 1.258241 -0.568707 -0.886749 1.474840 0.378831 -0.738471 -0.160209 0.113033 0.821093 1.417549 -2.053132 0.371940 0.091630 0.763030 -2.039861 -1.903439 -0.116286 -1.399081 -0.968096 0.257855 -1.918516 -1.059979 -1.219783 0.414075 -1.622042 -0.846932 0.974415 2.486375 0.896450 -0.931127 1.012239 -0.611877 1.202054 0.171479 -0.133901 0.374054 1.106737 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.459604 0.024913 -0.387666 -0.250485 1.642084 -0.669677 -0.152267 1.135088 -0.843691 1.170706 -0.094938 -0.273688 -0.281717 -1.292924 0.248422 0.033347 0.276619 0.827839 0.122546 0.497671 0.364122 -0.488992 0.088664 0.053252 -0.159696 -0.394658 -0.058942 0.406651 1.404101 -1.002217 -0.423280 0.285411 1.361193 -0.169668 1.386750 0.702111 0.090719 0.620262 0.827009 -1.449669 -0.153291 0.426262 -0.423904 -0.592664 -0.072142 -0.105192 -0.572452 -0.576407 0.481739 0.223838 0.012398 0.707629 -0.264924 0.111689 -0.762145 0.735162 0.275840 0.412729 1.122695 0.104284 0.047195 -0.261905 -1.054795 1.190931 -0.482814 -0.255777 -0.554244 -0.567737 0.248392 0.098801 0.119038 -0.774212 -0.050748 1.242450 0.471824 -0.629125 0.372541 -0.104249 -0.524253 -1.747118 -1.167456 0.214328 -0.793470 0.758303 -0.002019 0.283636 -0.091092 0.582105 -0.120876 -1.554929 0.313729 0.923953 -0.447431 -0.393944 -0.250161 0.816336 0.404379 -0.046510 -0.461725 -0.739767 0.235839 -0.622193 0.490490 -0.615799 1.798209 -0.366178 -0.301103 -0.403308 0.536481 1.045625 1.156849 0.323181 0.754234 1.210847 -0.302972 -0.586390 -0.987541 0.366684 -0.743440 0.123014 -0.171456 0.719974 0.514410 0.186836 0.986724 -2.052722 0.026421 0.085996 0.370822 -1.134228 0.097358 -0.176410 -0.181703 -0.407947 0.657218 -0.266924 -0.140186 -0.217810 0.342064 0.455834 -0.849552 -0.038742 -0.015106 1.479759 -1.533613 0.296591 -0.221960 -0.485095 0.127118 0.158942 0.842197 0.850595 1.128048 0.821952 -0.452929 0.534891 -1.310887 0.178089 0.784517 -0.585251 -1.019081 1.429018 -0.574424 -0.340107 0.213239 1.148182 1.027231 -0.036708 -0.236240 -0.409973 0.592941 0.429720 0.906175 -0.585762 0.030215 0.120975 0.458583 0.694547 -0.938860 1.593496 -0.237915 -0.723542 0.371110 0.425986 -0.291029 -0.194185 0.451823 -1.026969 0.068883 -0.684247 0.383973 0.718261 -0.556151 -0.004576 0.052065 -0.523339 1.082872 -0.284189 -0.696508 0.534825 -0.817102 0.037633 1.141651 -0.192754 0.069581 -0.965776 -1.218338 -0.682550 -0.688751 0.247941 -0.301032 -0.131416 -0.292246 -0.644017 -0.425325 1.080550 0.387206 0.485037 -1.885826 0.223050 0.426953 0.621380 0.602023 -0.561916 -0.102115 0.507364 -0.177776 -0.145535 -0.275680 0.761593 1.488456 -0.710317 0.040423 -0.018108 -0.338889 0.632590 0.174411 -1.691463 0.967108 0.198806 0.730310 0.111413 0.153156 -0.388314 0.100051 0.131270 0.180347 -0.236570 -0.044928 -0.255443 -0.322482 0.183530 -0.432602 -1.165077 -0.332319 0.415720 0.107977 0.353916 -0.794386 -0.369453 -0.085813 -0.392534 0.439449 0.501123 0.051042 -0.107638 0.685109 0.313308 0.224041 0.656327 0.021854 0.215460 0.484311 -0.931519 0.071768 -0.144707 1.000347 -0.109850 -1.186944 -0.225482 -0.246260 -0.198929 0.934242 -1.245333 -0.439609 -0.517325 0.104146 -1.362030 0.344430 0.124388 1.539515 0.583513 -0.549570 0.377752 -0.264244 0.266208 -0.187369 -0.016843 0.074639 0.461293 +PE-benchmarks/find-parity.cpp__main = -0.877587 0.568054 0.365353 -0.716608 2.274453 -0.192528 -0.100926 1.640273 -0.417063 1.249317 -1.014398 -0.178951 0.092959 -0.746679 0.181759 -0.303732 -0.358851 0.844245 -0.610091 0.233435 0.593570 0.439624 -0.140180 -0.348231 -0.591235 -0.445200 -0.424479 0.390679 0.626138 -0.336808 -0.541990 0.199352 1.588087 -0.605260 1.847523 1.204221 1.171301 0.916989 -0.018367 0.361671 0.341030 0.553983 -0.780143 -0.771714 -0.146357 -0.633988 -1.305497 -0.575427 0.430250 -0.718800 1.394255 0.896192 -0.044531 0.070795 -0.124855 1.187692 -0.199890 -0.139312 1.382255 0.504809 -1.361585 0.545093 -1.291845 2.527317 -0.590540 1.503156 -0.662479 -1.487972 -0.473350 0.389016 0.906902 -1.156638 -0.766136 0.982072 0.170705 -0.863078 0.578824 -0.554865 0.793438 -1.071360 -0.894674 0.752313 -0.382034 0.636629 -0.044586 0.196770 -0.829002 0.603326 -0.371873 -1.571568 -0.179433 1.747175 -1.097657 -0.042816 -2.057302 -0.249037 0.307967 0.331490 -0.312819 -0.770663 0.696739 0.186306 0.391417 -0.825162 1.029475 -0.785487 0.069193 0.827996 0.195123 0.975138 -0.362331 0.715523 1.251572 1.184788 0.422967 0.282515 -1.280080 0.629444 -0.848049 0.217659 -0.285645 0.497193 0.904413 0.552499 1.108439 -1.386296 0.687932 -0.054324 -0.771976 -0.849359 0.269264 -0.601326 -0.807375 -0.468323 0.567688 0.417718 -0.314326 -0.499536 0.442710 -0.054227 -0.723747 -1.130779 0.159875 -0.113248 -0.903204 0.045142 -0.195246 -0.035980 -0.434985 1.234490 1.199035 0.861095 1.660248 0.869833 0.173579 -0.669620 -1.497909 0.043603 1.065270 -0.439041 -1.287276 1.354364 -1.146727 -0.350790 0.346913 1.058231 0.070323 1.209664 -0.679075 -0.761588 -0.508830 0.085843 1.593961 0.775193 0.049286 -0.348194 0.396897 -1.011176 -1.038303 1.701429 1.175402 -1.351857 -0.596842 0.582755 0.123453 -0.951051 1.119941 -1.450586 -0.721262 -0.288665 0.047004 0.630981 -0.726208 -0.459113 0.866277 -1.137294 1.500165 -0.210513 -0.728968 -0.214875 -1.233024 -0.566602 1.432821 0.355061 -0.438308 -0.479453 -0.609603 -0.434494 -1.150348 0.302510 0.806190 0.132917 -0.992284 -0.941910 0.157976 0.880191 -0.350570 0.672398 -0.937700 -0.568215 0.706362 -0.397215 0.922191 -1.549317 -0.244767 -0.897511 -0.032557 0.478270 -0.780687 0.662507 1.955904 -0.507986 0.958988 1.219349 -1.280606 -0.475101 0.946715 -1.372892 1.535392 0.267755 -0.560378 0.222496 0.491443 -0.725986 -0.214692 -0.198908 0.267685 -0.198336 0.715552 -0.431035 -0.186565 -0.639979 -1.145659 -0.297329 0.195895 0.534396 -0.395738 0.194896 -0.427574 -1.033065 -0.528983 -1.270510 0.029811 0.904885 -0.677762 -0.780391 0.947825 0.018104 -0.916833 0.467840 0.098763 0.435787 1.178159 -1.269924 0.151142 0.341337 0.469123 -1.811740 -0.805784 -0.734134 -0.825570 -0.731742 0.034015 -0.793541 -1.037518 -0.797802 0.207785 -1.002446 -1.316394 0.950480 1.818743 0.738610 -0.681241 0.390374 -0.406938 1.141448 0.559305 -0.234442 0.120394 0.681806 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.679067 0.505405 -0.017359 -0.639465 1.244691 -1.099809 0.371452 0.885047 0.408021 0.699408 -0.379908 -0.619058 -0.001972 -0.618155 0.407933 0.220081 0.495976 0.518071 -0.431456 -1.030243 0.269686 0.644845 -0.798089 0.425388 -0.390608 -0.167919 -0.505608 0.233210 -0.216114 -0.293681 0.286291 -0.041211 1.224808 -0.883899 1.254373 1.014781 0.090547 -0.139400 0.161475 0.734678 -0.390045 0.481489 -0.530430 -0.046170 -0.321718 0.324324 -0.331631 -0.318011 0.090227 -0.663698 0.569906 0.585186 0.153126 0.165099 0.144021 1.048783 -0.038255 -0.061774 0.960273 0.099320 -0.319172 -0.422738 0.310252 0.703217 -0.604831 -0.411684 -0.184646 -0.557523 0.292359 0.115339 0.159571 0.107799 -0.739180 0.207355 -0.677788 -1.130715 0.226478 0.244509 0.864236 0.290601 0.097333 0.386555 0.143316 0.234890 -0.217575 -0.543675 -0.531468 0.270699 -0.573081 -0.297096 0.236707 0.709635 -0.093805 0.224375 -0.793610 -0.576608 0.144636 -0.103811 0.119169 -0.483140 0.137649 -0.543290 1.037295 0.089453 0.492257 0.168595 -0.042719 0.060173 0.134813 0.718982 0.347980 0.962064 0.456950 0.328676 -0.714040 0.569890 -1.480917 0.643756 -0.368662 -0.133698 0.154589 0.216637 0.205347 0.288339 0.406121 -0.807887 0.690511 -0.602132 -0.229083 -0.695302 0.419077 0.198913 -0.514350 -0.471854 0.057882 -0.112325 -1.033974 -0.634188 0.601128 -0.518831 -0.167858 -0.839049 0.351351 -0.348954 -0.763279 0.220570 -0.971203 0.153478 0.010228 0.320481 -0.446326 -0.059237 1.054742 0.798542 0.402545 -0.090407 -1.212254 -1.012091 -0.611929 0.061286 -0.642697 0.977090 -0.769236 -0.057533 0.445488 0.829604 -0.553613 1.005752 0.301137 -0.083393 0.045524 0.391207 0.228137 0.281499 0.156833 -0.684597 -0.407173 -1.002139 -0.346513 0.654094 1.052807 -0.430818 -0.289936 -0.182834 0.547055 0.179941 0.479449 -0.446410 -0.846825 -0.060654 -0.379482 0.347487 0.091596 -0.150384 0.098759 -0.325693 0.427678 -0.274150 -0.773722 1.004110 -1.515615 0.170300 -0.259393 0.433848 -0.083340 0.360889 -0.313972 0.240979 -0.489274 0.378370 0.769720 -0.763879 -1.126905 -0.957789 0.888819 -0.056575 0.518785 0.479063 -0.451393 0.027517 1.202431 0.397463 -0.683521 -0.482530 0.100798 -0.778607 0.349341 0.451654 0.243753 0.588228 0.861410 0.100190 0.048604 0.341156 -0.689774 -0.135140 0.319917 -0.914504 0.066648 0.130556 -0.191014 0.285490 0.164142 0.713845 -0.048835 -0.225912 -0.103379 -0.208180 0.732753 -0.372790 -0.125615 0.136003 -0.483488 0.124545 0.265414 -0.230237 -0.348886 0.351945 -0.177099 -0.684795 -0.367675 -0.692832 0.384586 0.800343 0.867162 -0.514736 0.402676 -0.616679 -0.366839 -0.402034 -0.798913 -0.567233 0.025957 -0.108991 -0.202212 0.164118 0.224863 -0.284705 -0.230638 -0.325653 -0.087329 -0.436065 -0.577287 0.415216 -0.447587 0.522068 -0.282264 -0.837012 -1.183650 0.191403 0.397655 -0.020835 0.505621 0.132225 -0.034345 0.062147 0.672906 -1.185402 0.483463 0.583450 +PE-benchmarks/birthday-paradox.cpp__main = -0.294242 0.101551 0.059668 -0.226471 0.569201 -0.360137 -0.049232 0.560838 0.440722 0.331248 -0.244236 -0.232796 0.011669 -0.130716 0.116693 0.033386 0.063195 0.337152 -0.265676 -0.357179 0.185207 0.428254 -0.204777 0.011503 -0.131825 -0.145229 -0.226620 0.088462 -0.139368 -0.090829 -0.146522 0.081075 0.546589 -0.257267 0.594402 0.431691 0.342173 0.109892 -0.016029 0.580993 0.061333 0.207386 -0.224096 -0.173847 -0.046756 -0.026357 -0.193383 -0.102102 0.125300 -0.287825 0.617017 0.227772 0.037037 0.083387 0.132217 0.395697 -0.235537 0.101091 0.378993 0.139688 -0.407206 0.137008 -0.181744 0.650920 -0.305953 0.313873 -0.181697 -0.465467 -0.188329 0.100008 0.320067 -0.196875 -0.254006 0.146043 -0.203938 -0.316743 0.193803 -0.002243 0.736974 0.069824 -0.182797 0.221289 -0.014367 0.081319 -0.083189 -0.109272 -0.430488 0.122291 -0.136420 -0.242726 -0.002166 0.346560 -0.304441 0.222340 -0.382788 -0.430725 0.071943 0.041807 0.178936 -0.269816 0.132926 -0.085370 0.271257 0.208366 0.285259 0.070118 0.122580 0.227481 0.055003 0.166126 -0.108175 0.325267 0.261886 0.208248 0.122744 0.179158 -0.536715 0.317955 -0.261237 0.006360 0.044665 0.113077 0.224416 0.174690 0.225699 -0.265154 0.249131 -0.158817 -0.196966 -0.132584 0.169599 -0.069245 -0.275307 -0.223960 0.150094 0.102013 -0.320596 -0.210732 0.239259 -0.169419 -0.113489 -0.355914 -0.022824 -0.414133 -0.158356 0.016238 -0.256436 -0.014053 -0.064195 0.264787 0.032064 0.126541 0.454678 0.319261 0.098373 -0.438773 -0.501512 -0.227591 -0.042768 -0.202052 -0.298304 0.374183 -0.329713 -0.041620 0.233364 0.362408 -0.190239 0.497831 0.152687 0.003235 -0.280322 0.081283 0.304149 0.220116 0.040137 -0.190687 -0.248565 -0.504498 -0.250326 0.515484 0.426506 -0.384283 -0.264716 0.054389 0.217422 -0.206776 0.205380 -0.247046 -0.239870 -0.117698 -0.016171 0.202591 -0.146128 -0.109201 0.346828 -0.264939 0.286234 -0.084496 -0.245674 0.242906 -0.644670 0.040228 0.327048 0.199170 -0.073610 0.035463 -0.162182 0.164376 -0.300131 0.118828 0.301653 -0.065694 -0.316305 -0.310404 0.265904 0.173626 0.024734 0.223010 -0.073194 -0.143680 0.352091 -0.250969 -0.039913 -0.344913 -0.049541 -0.407997 0.010638 0.216829 -0.095949 0.054919 0.506539 -0.060162 0.152865 0.520860 -0.365885 -0.257556 0.246158 -0.384919 0.248048 0.008543 -0.425118 0.138972 0.108194 -0.062295 -0.087604 -0.117957 0.093830 -0.115536 0.280020 -0.136933 -0.024847 -0.114846 -0.392964 0.106750 0.110026 0.057853 -0.113511 0.096686 -0.084911 -0.381184 -0.141700 -0.357797 0.065746 0.337885 0.147730 -0.310826 0.244447 -0.147354 -0.427313 -0.244492 -0.136822 -0.109651 0.267594 -0.219980 -0.001529 0.213754 0.082468 -0.417362 -0.073095 -0.276220 -0.168642 -0.167326 -0.312375 0.004344 -0.371601 -0.001351 0.010990 -0.245234 -0.444422 0.185805 0.339538 0.243730 -0.009481 0.162333 -0.044613 0.211283 0.334454 -0.380067 0.099501 0.265849 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -1.724076 1.014729 -0.477944 -1.344620 3.485568 -0.875052 0.369768 0.563742 -0.850623 2.810371 -1.026350 -0.697969 -0.760881 -3.557154 0.392457 -0.909701 -0.090981 1.327064 0.235991 1.677874 1.274026 -2.017547 0.385582 -0.178046 -0.957872 -2.709752 -0.257733 1.181971 2.723888 -2.212018 0.310996 0.266190 3.142918 -0.524395 2.737194 2.290480 0.859038 2.062165 0.994289 -1.981912 -0.742259 1.364477 -1.568112 -2.063822 0.242041 -0.279251 -2.276478 -1.257088 1.352966 -0.453895 -0.251693 2.642332 -0.814457 -0.112869 -2.421541 1.763476 1.358186 0.063582 3.165303 0.317428 -0.009305 -0.591083 -2.627728 2.481922 -1.498597 -0.536230 -0.801849 -1.773311 0.828106 0.201463 -0.962932 -1.180245 -0.972175 2.427406 1.857395 -2.547827 0.257255 -1.194798 -2.777217 -2.691364 -2.333364 0.889676 -0.443184 2.586123 0.429153 1.086229 0.882106 1.472696 -0.694027 -3.681342 0.744879 2.522295 -1.249645 -0.810544 -0.549023 2.983856 0.704119 -0.002047 -1.632267 -0.846822 0.602261 -1.005194 1.571089 -1.424252 1.027063 -2.440593 -0.183406 -0.765569 0.695674 1.386268 2.351008 0.192280 1.462249 2.627070 -2.318547 -0.685043 -2.620870 0.741411 -0.283663 0.714439 -0.736814 1.544623 0.578111 0.626712 2.665261 -4.079500 1.004399 0.042748 0.083013 -2.881225 -0.041268 -0.873417 -0.650460 -0.978454 1.702296 -0.606456 -0.347420 -0.853303 0.761258 1.117724 -1.570257 -0.002670 0.810733 3.092360 -2.387522 1.000042 -0.661110 -1.277572 -0.351783 1.103839 2.120632 2.496089 3.366386 2.641162 -0.431692 2.060370 -3.040217 0.242852 2.929009 0.473157 -2.232606 2.893923 -2.315149 -0.881018 0.352037 2.485780 2.380226 0.018472 -2.069449 -1.431831 2.102999 0.875270 2.895036 -0.778751 0.142709 -0.804674 2.112322 1.175454 -1.372347 3.389528 0.719841 -2.474174 1.955975 1.330844 -2.379661 -0.891708 1.844908 -2.161664 0.211165 -1.547499 0.798545 1.724774 -1.378322 -0.476249 -0.332600 -2.180866 2.518285 -0.741974 -0.531544 1.715993 -1.938927 -2.008571 2.662647 -0.099884 -0.523438 -2.283855 -2.498479 -1.675261 -2.233625 0.953940 -0.045188 -1.066291 -1.021932 -2.527721 -0.625509 2.529593 0.784973 1.772992 -3.486366 -0.086559 1.433793 1.979463 1.262562 -0.315263 -0.298898 0.918390 0.205847 0.176131 -0.445850 1.894614 3.118652 -2.069781 1.032486 -0.999740 -1.011299 1.665031 1.217333 -3.412200 3.413683 0.558204 2.035082 0.017824 0.787212 -1.130738 0.482967 0.832440 -0.448926 0.067796 0.009482 -0.787493 -1.118102 0.638654 -1.607780 -2.268259 -0.629691 1.183212 0.133851 1.015299 -0.463434 -0.917157 -0.677973 -1.216724 0.926475 1.819706 0.309153 -0.298162 1.986290 0.718483 0.903504 0.340868 0.261001 0.935845 1.747872 -3.153780 0.244651 -0.790172 1.229771 -1.263111 -3.353557 0.683263 -1.647589 -0.757911 1.688246 -3.364778 0.002890 -1.979202 0.211542 -2.711723 0.394680 0.392985 3.383980 1.026834 -1.144561 1.344760 -1.004867 1.206786 -0.459552 -0.104880 0.964969 1.822999 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -5.575631 5.399783 3.362695 -5.058407 12.473911 -1.688909 0.580245 4.798727 -3.161590 9.222457 -4.812660 -0.898594 -1.852441 -9.534961 0.431790 -5.398887 -2.267255 4.721257 -0.624461 4.945314 3.976021 -3.936752 1.022312 -1.125128 -3.725777 -7.633070 -2.271571 3.220919 6.736239 -5.474572 3.268723 -0.217204 9.759026 -2.123665 8.855998 6.946921 3.103910 7.101887 1.276179 -1.093846 -1.332564 3.986761 -5.130984 -6.440415 1.086036 -2.175957 -7.091490 -3.632762 3.617337 -4.414892 -0.361021 7.536181 -1.831072 -0.697735 -5.083565 7.121672 3.272781 -0.130936 9.636673 1.283442 -3.220891 -0.430050 -10.796767 7.424523 -4.144606 2.445506 -2.688445 -6.794393 1.009150 0.671744 -0.857588 -5.525692 -2.977780 7.902509 4.251352 -7.307519 1.028295 -4.637485 -9.941361 -6.981801 -5.975637 3.119572 -0.072827 6.313918 0.833968 2.897190 1.481517 4.639006 -2.662615 -11.705907 1.024578 9.707389 -4.353573 -1.449996 -5.315975 5.992436 1.132644 0.789344 -4.293823 -2.558143 2.611793 -0.689925 4.189673 -6.686816 2.155590 -9.136433 0.573022 -0.069594 1.009007 3.481389 3.772023 2.244070 4.893618 8.902140 -7.768589 0.932389 -8.982376 2.377207 -2.217629 2.664978 -2.333679 3.967654 0.779595 3.738115 8.001919 -12.014213 4.142395 -0.750308 -2.239981 -9.662907 0.485375 -3.179925 -2.701940 -2.753368 4.200150 -0.510361 -1.450861 -3.117096 1.605285 1.792468 -4.108245 -4.246564 2.688988 8.146318 -7.622011 2.331926 -1.759844 -2.678810 -1.692958 4.725098 7.673587 6.591106 11.058798 7.221996 0.582983 3.372661 -9.387219 -0.107621 8.559962 2.147838 -7.140858 9.151123 -6.300149 -2.408011 1.534617 6.872533 5.591645 3.621462 -7.777385 -6.838639 4.786278 1.570897 9.249577 1.527765 0.190340 -3.540920 7.283046 -0.550463 -5.689844 11.423851 4.649271 -7.799891 3.748915 3.385533 -5.800145 -4.447922 5.905011 -6.857938 -0.691963 -2.217497 0.654098 4.400169 -3.544158 -3.575103 0.380973 -7.291540 9.394944 -2.214109 -1.231441 3.936855 -6.701284 -9.549123 7.878556 0.321035 -3.017309 -5.916207 -6.366456 -4.565278 -6.896963 2.883958 2.524473 -3.013333 -4.819843 -7.471690 -0.075087 6.381106 0.764098 5.243463 -8.915611 -3.629585 4.311722 2.339744 5.769519 -4.387509 -0.862668 -0.990588 0.292301 2.258155 -1.011444 6.385761 12.676761 -5.099561 6.002685 -0.054391 -5.177147 2.227282 5.350107 -10.117894 10.503965 1.086052 5.641496 -0.165298 2.559609 -3.635976 0.989792 2.405222 -1.287266 1.003373 1.352710 -2.082048 -2.929480 -0.957101 -8.513778 -4.556990 -0.561759 3.048903 -0.827842 2.740099 -0.033074 -4.246291 -2.939562 -4.399245 0.914957 5.849614 -0.406432 -3.139698 5.579424 0.940076 0.507662 0.349060 0.653106 3.313755 5.158877 -9.265423 1.164429 -1.596424 1.647009 -7.070111 -8.876163 0.591550 -6.568478 -4.893354 2.785306 -8.953946 -1.110909 -5.907623 0.653471 -8.533446 -2.242535 2.461604 10.979895 4.170619 -3.927624 4.257312 -3.184370 6.001126 0.267174 -0.614398 2.389199 6.094238 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -1.741931 0.919415 0.605463 -1.359980 3.501865 -0.647264 -0.036535 1.438881 0.196250 2.278587 -1.668251 -0.923504 -0.983078 -2.519652 0.204147 -1.175191 -0.237146 1.640568 -0.782829 0.690275 1.457330 -0.515708 0.420828 -0.680983 -0.732873 -1.604123 -0.844206 0.694015 1.058082 -0.856995 0.209080 0.222058 2.875042 -0.253810 2.292668 1.801791 1.135816 2.697449 -0.016987 0.804105 0.073915 1.481000 -1.268171 -2.529665 0.967278 -1.116696 -1.732052 -1.295226 1.210058 -1.765708 1.201165 1.983330 -0.224974 -0.317857 -1.309538 1.422642 1.072015 0.651803 2.659337 0.749328 -1.311014 0.305696 -2.838748 1.657754 -1.537953 1.590352 -0.294740 -2.464935 -0.663899 0.474439 0.713086 -1.828008 -1.565555 1.440965 0.857459 -1.599288 0.686506 -0.870478 -1.218208 -1.477421 -2.159010 0.603604 -0.473702 1.776957 -0.215101 0.441694 -0.214038 0.742655 -0.150347 -2.752188 -0.222567 2.485514 -1.178006 0.568460 -1.503310 0.716490 -0.015933 0.064235 -1.312271 -0.735492 0.667882 0.137430 1.116376 -0.622415 -0.166830 -2.006768 1.103612 0.558241 0.103483 0.496719 1.172458 0.421417 0.870528 1.937275 -1.582640 0.719620 -2.694609 0.779972 -0.520340 0.748571 -0.512182 1.027968 0.422932 0.378806 1.862257 -2.979084 1.626709 -0.044502 -1.033964 -2.046078 0.621823 -0.700702 -1.126750 -0.754325 1.600172 0.010669 -0.657020 -0.646240 0.496474 0.045995 -1.304653 -1.009375 -0.007953 1.427542 -1.588666 0.409373 -0.769777 -1.293071 -0.363878 1.110052 1.503113 1.570594 2.901347 2.072794 -0.271974 -0.074108 -2.637609 0.388545 2.676617 0.415173 -2.181921 1.902962 -1.247932 0.056043 0.916171 1.507409 1.295524 1.371397 -1.041587 -0.990784 0.154084 0.170647 2.598794 1.148161 0.690569 -1.647338 1.106810 -0.439318 -0.909986 3.549999 1.580647 -2.450454 0.517499 1.241131 -1.459186 -1.364269 1.065567 -1.258794 -0.239353 -1.004254 0.608665 1.330009 -1.587998 -1.481607 0.366314 -2.181314 2.478529 -0.528107 -0.224780 1.018041 -2.633988 -1.898031 2.706838 0.190862 -0.819358 -1.314092 -1.765544 -0.902498 -2.355219 0.948611 0.842903 -0.701793 -1.462053 -1.905739 0.145973 2.243939 -0.114481 1.016264 -1.581704 -0.836964 1.177646 -0.132654 1.703453 -1.754075 -0.573923 -0.359418 -0.067781 1.120490 -0.202510 0.817815 3.327017 -1.683734 1.432145 1.186381 -0.938791 0.200424 1.841325 -2.180938 2.739359 -0.124765 1.292238 -0.271918 1.055912 -0.965077 0.212219 0.443465 0.188628 -0.025066 0.963086 -0.963524 -0.668200 0.072340 -2.472059 -0.976572 0.386300 1.051056 0.300326 0.590263 -0.063460 -1.335388 -0.542735 -0.844416 0.181471 1.913323 -0.061278 -1.529532 0.944604 0.239535 -0.781851 -0.462147 0.499448 0.635245 2.020775 -2.450102 0.560398 -0.077054 -0.036389 -2.173142 -1.963221 -0.144934 -1.725831 -1.242053 1.146869 -2.347944 -0.643533 -1.499132 0.848528 -1.873409 -0.480624 0.106374 2.667459 1.559667 -0.577811 1.569279 -0.332417 1.777286 0.173894 -0.678486 0.727291 2.029287 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.891522 0.673772 -0.171381 -0.710509 1.647103 -0.484543 0.102278 0.924112 -0.192909 1.200138 -0.952069 0.283128 -0.244694 -1.279010 0.025798 -0.075427 0.132413 0.920127 -0.196606 0.379746 0.605486 -0.397817 0.274011 -0.443269 -0.455910 -1.254507 -0.001374 0.346985 0.356060 -0.312899 0.043172 0.198570 1.552070 -0.040410 1.122900 0.971575 0.426784 1.345519 0.718647 0.052696 0.192606 0.572012 -0.449440 -1.322087 0.362093 -0.449190 -0.780220 -0.785906 0.544613 -1.103409 0.916750 0.873008 -0.060166 -0.215015 -1.004867 0.571113 0.880915 -0.155748 1.416380 0.257589 -0.749937 -0.186720 -0.756991 1.225885 -0.918316 0.099576 0.189062 -1.061668 0.044201 0.574434 0.456278 -0.716943 -0.735026 0.461485 0.272307 -0.999643 0.211361 -0.341019 -0.551412 -0.870186 -0.763262 0.327476 -0.226590 0.896580 0.016968 0.306261 -0.504594 0.313884 0.066317 -1.215622 -0.146097 1.131720 -0.502307 0.315792 -0.606975 0.922699 0.321293 -0.290845 -0.485791 -0.462128 0.262099 -0.088092 0.505775 -0.334519 -0.231386 -0.851184 0.490661 0.153790 -0.064155 0.552100 0.371203 0.502260 0.523170 0.763912 -0.513424 0.320321 -1.682296 0.503433 0.119747 0.071867 -0.208395 0.264468 0.263602 0.184629 0.955738 -1.436398 1.007599 0.162233 -0.225297 -1.069801 0.259690 -0.076326 -0.384603 -0.367939 0.768016 -0.055541 -0.090915 -0.250826 0.209801 -0.000496 -0.900707 -0.888715 0.002702 1.238674 -0.979077 0.329697 -0.296222 -0.469609 -0.146581 0.405370 0.542414 0.621587 1.375656 0.941951 -0.081453 0.499952 -1.309649 0.134464 1.419700 0.952950 -1.042572 0.966861 -0.614559 -0.217755 0.478964 0.711605 0.600231 0.274544 -0.838901 -0.745954 0.408627 -0.086912 1.263972 0.339471 0.318630 -0.880398 0.878014 0.283750 -0.138098 1.794138 0.605247 -1.268838 0.489697 0.875423 -0.697246 -0.455388 0.531705 -0.626141 -0.361987 -0.405411 0.305165 0.622401 -0.816109 -0.704512 -0.106738 -1.030599 1.177943 -0.174860 -0.162742 0.343769 -1.179526 -0.288244 1.360515 0.156341 -0.210962 -0.442916 -0.857302 -0.696223 -1.418237 0.221201 0.440429 -0.520915 -0.420191 -0.980193 -0.133813 0.956827 -0.165387 0.362745 -1.187046 -0.337200 0.763594 0.279246 0.188036 -1.155815 -0.249875 0.152806 0.243592 0.437820 -0.195749 0.807524 1.338933 -0.745949 0.633302 0.642587 0.032627 0.520026 0.866573 -1.131205 1.361489 -0.262575 0.751418 0.218074 0.462785 -0.490602 0.074411 -0.044860 0.178016 -0.286862 0.390119 -0.862063 -0.378560 0.344623 -0.784560 -0.613851 0.237483 0.691959 0.331763 0.183077 -0.071154 -0.405603 -0.325702 -0.813361 0.176029 0.765444 -0.085984 -0.828135 0.561929 0.478990 -0.407062 -0.128955 0.172214 0.536829 0.868691 -1.208936 0.505196 -0.056436 0.050032 -1.160130 -1.228859 0.443150 -0.739583 -0.818971 0.478940 -1.599897 -0.538608 -0.636474 0.543838 -1.406087 0.068759 0.038724 1.369729 0.351173 -0.171104 0.745548 -0.300216 0.631995 0.015737 0.068675 0.159624 1.105871 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -4.321518 3.255912 2.184428 -4.425694 8.535319 -1.430549 0.399967 2.942588 0.272708 5.890485 -4.728893 -0.002857 -1.321212 -5.547218 0.115674 -3.705845 -1.052893 3.985368 -1.553268 2.628807 3.123892 -1.332085 1.463248 -2.060481 -2.374922 -6.271256 -1.559575 1.995886 1.828694 -1.483847 2.339523 -0.031297 6.734367 -1.140620 5.068751 4.807260 2.729252 6.246455 0.182417 2.357937 1.073112 2.813474 -2.824295 -5.770681 1.701094 -1.995239 -5.159477 -3.740815 2.810297 -5.737783 2.070329 4.976362 -0.615140 -1.719278 -3.586279 4.365314 3.508720 -0.261186 6.461119 1.281371 -3.468451 0.723964 -6.010467 5.102682 -4.065915 2.974725 -0.596683 -5.803675 -1.043450 2.237685 1.628083 -3.058416 -3.737432 3.048008 2.366552 -4.758881 0.959826 -2.930128 -3.562330 -3.565001 -3.223779 1.987239 0.283582 3.972754 0.275136 1.796134 -0.144709 2.308185 -0.409320 -6.328738 -0.720268 6.229069 -2.582544 0.283931 -3.824191 2.870791 1.313233 -1.090102 -2.391505 -1.927407 1.549137 -0.114590 2.846794 -1.461074 -1.554564 -5.111437 1.614743 2.122439 0.002340 1.535929 -0.042895 2.165633 2.368676 4.211310 -3.873875 3.037110 -7.106313 2.009525 -1.087118 1.398960 -1.368497 1.899338 0.990295 2.405694 4.719673 -6.487622 4.877176 -0.089962 -2.521260 -4.910493 1.336951 -0.792656 -1.938761 -1.616889 3.131566 -0.117214 -0.973514 -1.194576 1.308660 -0.090918 -2.009163 -3.510012 0.569011 3.610932 -3.392230 1.794699 -1.388207 -2.169503 -0.682505 2.663702 3.591380 3.255892 7.491066 4.919025 0.273670 1.556664 -6.001676 0.423995 6.341335 2.916201 -4.901839 5.046432 -2.988156 -0.959643 1.850677 3.601598 2.651239 3.425708 -4.296462 -3.964530 0.495668 -0.549042 6.288257 3.008557 0.579290 -4.907080 3.675208 -0.915782 -1.183093 8.315365 4.584170 -6.028854 1.411239 3.924566 -4.321586 -4.216007 2.940380 -2.853928 -1.518323 -1.336013 1.246003 2.699217 -3.018236 -4.246719 -0.010443 -5.238455 5.736969 -1.215093 -0.848278 2.110472 -5.306692 -5.743525 5.874266 0.437422 -2.143091 -2.850443 -3.853968 -1.719242 -6.342067 1.838377 2.603260 -2.254090 -3.101459 -4.713047 0.390619 4.067424 -0.906276 2.484624 -4.645465 -2.815003 3.343672 0.502880 2.698151 -4.762357 -0.938918 -1.041340 0.476749 1.843785 -0.496846 2.862729 7.641422 -3.748703 3.493281 1.629118 -3.457736 1.157281 4.940757 -5.582446 7.267579 -0.237235 3.109338 0.298398 2.215904 -2.384406 0.739542 0.832350 -0.898521 -0.120982 2.125843 -3.351981 -2.089682 0.673389 -4.783697 -2.259760 1.275559 3.214707 0.182901 1.324175 0.976241 -3.067286 -1.750433 -2.620352 0.297083 4.123546 -0.380462 -3.979526 2.735174 2.193026 -2.098121 -2.328368 0.842978 2.510866 4.438163 -6.306655 2.849873 -0.481174 -0.520210 -6.358928 -4.920989 1.506992 -5.058416 -3.930634 1.508340 -6.172949 -2.131420 -3.805638 2.208703 -4.058730 -2.112437 1.296905 6.552813 3.177418 -1.502312 3.741010 -1.889341 4.048425 0.309489 -0.808269 1.437596 4.984573 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -2.248297 1.659102 0.687610 -2.008890 4.690130 -1.288145 0.441553 1.965997 -0.713912 3.311996 -1.978562 0.036617 -0.771482 -3.687405 0.282320 -1.592457 -0.249619 2.318881 -0.319342 1.747145 1.642243 -1.264677 0.546969 -0.714555 -1.274154 -3.409469 -0.493224 1.224428 1.931198 -1.472864 0.793361 0.302728 4.088544 -0.622538 3.244457 2.788032 1.360557 3.012022 0.858599 -0.498401 -0.003047 1.545930 -1.644759 -2.943618 0.623713 -0.718862 -2.763878 -1.798173 1.545054 -2.204552 0.573543 2.819753 -0.554586 -0.440205 -2.296993 2.360537 1.756267 -0.214506 3.597304 0.611902 -1.315418 -0.196981 -3.180462 3.011241 -1.999267 0.494579 -0.709394 -2.786660 0.201573 0.883594 0.259758 -1.848554 -1.503761 2.213386 1.578725 -2.764728 0.521614 -1.388147 -2.353089 -2.568524 -2.336855 1.052085 -0.429084 2.527580 0.216457 1.074552 -0.044784 1.379403 -0.470242 -3.874878 0.134988 3.397209 -1.550018 -0.338227 -1.745761 2.409644 0.973218 -0.318150 -1.417300 -1.465720 0.852133 -0.639543 1.662353 -1.310408 0.201870 -2.654206 0.233698 0.183516 0.432755 1.723247 0.817107 1.082904 1.580590 2.663272 -2.290103 0.654336 -3.929468 1.265050 -0.764548 0.746836 -0.754446 1.314000 0.739033 1.254259 2.799261 -4.218695 2.036623 0.052209 -0.552825 -3.031845 0.491889 -0.663304 -0.929241 -1.169459 1.947359 -0.284782 -0.494255 -0.854425 0.830086 0.563870 -1.418783 -1.513527 0.464749 2.858664 -2.818093 1.041282 -0.798860 -1.248424 -0.370017 1.362910 2.234305 2.308585 4.016557 2.885292 -0.154709 1.576815 -3.637810 0.161381 3.462302 1.154135 -2.602435 3.164443 -2.085410 -0.904619 0.844103 2.482951 1.982615 1.078594 -2.499862 -2.213022 1.270207 0.281345 3.481895 0.656346 0.154858 -2.143913 2.249603 0.071873 -1.230469 4.585232 1.752944 -3.225544 1.401478 1.876083 -2.377199 -1.865214 1.764070 -2.237104 -0.546605 -1.156591 0.768526 1.797548 -1.706259 -1.542516 0.007340 -2.726880 3.034681 -0.786040 -0.726144 1.351406 -2.618152 -2.677855 3.525192 0.237198 -0.874839 -2.018255 -2.588146 -1.422674 -3.194271 0.985797 0.764695 -1.130053 -1.481588 -2.746283 -0.306002 2.668899 0.077383 1.637319 -3.567231 -0.971157 1.843893 1.113938 1.361324 -2.247973 -0.458811 0.046130 0.222309 0.647255 -0.451013 1.965364 4.185071 -2.176457 1.648978 0.398921 -1.666641 1.223905 2.193580 -3.673461 3.996745 0.153452 2.228994 0.269499 1.012284 -1.443640 0.340149 0.548211 -0.285059 -0.201746 0.722110 -1.476807 -1.154359 0.438344 -2.393917 -1.914935 0.065294 1.663415 0.070661 0.916371 0.018412 -1.558627 -0.911453 -1.730591 0.529577 2.221737 -0.141925 -1.538031 1.998599 1.048812 -0.388735 -0.550857 0.327593 1.372023 2.179997 -3.559759 1.044476 -0.473575 0.591537 -2.745356 -3.589443 0.976246 -2.503220 -1.811154 1.117439 -3.728735 -0.863759 -2.137533 0.871050 -3.282842 -0.563234 0.748115 3.879040 1.313596 -1.023630 1.867734 -1.139692 1.905944 -0.086149 -0.088791 0.749868 2.588565 +PE-benchmarks/dfs.cpp__main = -2.296780 0.221120 0.175197 -1.451197 4.547920 -1.868724 0.209962 2.848385 0.818274 2.515558 -2.156960 -0.298065 -1.326189 -2.486006 0.318577 -0.763238 0.760795 2.700023 -1.482329 0.012472 1.921917 0.795576 0.569113 -1.085044 -0.684682 -2.190828 -0.620700 0.705001 0.060084 -0.484558 -0.720340 1.077720 4.229386 -0.252285 3.027544 2.475198 2.335290 3.503396 0.352168 1.489637 0.986851 1.727546 -1.100781 -3.431337 1.231628 -1.194514 -2.191988 -1.528248 1.744089 -2.759546 2.945877 2.226216 -0.087420 -0.231597 -1.369350 1.737078 1.116579 0.224615 3.096846 1.098786 -2.788163 0.423054 -2.387933 3.439597 -2.364655 2.133762 -0.248467 -3.514920 -1.534204 1.366801 1.995337 -2.565538 -2.444516 0.862507 0.579435 -1.841862 1.030723 -0.293322 1.393653 -1.407193 -2.954911 0.657407 -0.898092 1.795368 -0.320126 0.429646 -1.533379 0.387379 0.466361 -2.755291 -0.392141 2.964277 -1.958155 1.570980 -2.787746 -0.295743 0.153306 -0.527490 -1.007377 -1.953882 0.696848 -0.378494 1.361204 0.206833 -0.438841 -1.238838 1.425781 1.126623 0.312576 1.022354 0.118548 0.938670 1.015402 1.545059 -0.129709 1.231020 -4.044507 1.806132 -0.685315 0.232816 -0.380251 0.898434 1.239484 0.497265 2.110861 -3.182739 2.348999 0.128637 -1.390985 -1.715922 1.049392 -0.337457 -1.350275 -1.214009 2.616364 0.016436 -0.760336 -0.542462 1.149450 -0.280639 -1.705023 -1.784754 -0.961757 0.447122 -1.684928 0.541369 -1.151696 -1.685749 -0.243076 1.191837 1.045479 1.834466 3.191835 2.569309 -0.718245 -0.377220 -3.575059 0.465748 2.882092 0.907455 -2.631030 2.119476 -1.557026 0.093801 1.502068 1.916435 1.000918 1.503321 -0.447112 -0.507377 -0.536156 0.023488 3.150488 1.661777 0.899593 -2.521686 -0.068355 -1.154902 -0.370107 4.615320 2.174574 -3.664069 0.332399 2.210962 -0.713261 -2.195071 0.871261 -1.689284 -1.134346 -1.635946 1.325043 1.851016 -2.597299 -1.533314 1.343720 -2.593949 2.447361 -0.447900 -1.015223 1.054735 -3.903090 -1.176928 4.079022 0.425669 -0.422611 -1.107009 -2.545946 -0.479355 -3.624158 0.902183 1.068017 -0.288448 -1.315856 -2.176283 -0.057111 2.926422 -0.249355 1.282016 -1.889000 -0.698832 1.779019 -0.624658 1.201786 -3.205224 -0.968655 -0.443241 -0.049100 1.321878 -0.797705 0.114315 3.298713 -2.210982 1.521826 2.557406 -1.349225 -0.085385 2.200140 -2.591324 3.211350 -0.261951 0.912650 0.386020 1.347531 -1.710256 0.054928 -0.190504 1.021672 -1.070504 1.500901 -2.034181 -0.785848 0.300180 -2.442138 -1.272903 0.622956 1.760537 0.396454 0.457278 -0.404234 -1.511049 -0.674426 -1.818334 0.620985 2.316030 -0.469746 -2.269724 1.291808 0.845408 -2.576237 -0.862795 0.757128 0.827180 2.872412 -3.031130 1.091849 0.442617 0.081629 -3.200813 -2.572107 0.152421 -2.161933 -1.676047 0.728256 -3.061218 -1.951046 -1.537739 1.735517 -2.422935 -0.752621 0.184700 3.167017 1.652140 -0.092144 2.316629 -0.209972 1.584782 0.219381 -0.620125 0.540952 2.662585 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/dfs.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.387277 0.281680 -0.978145 -0.906936 4.355561 -1.121966 0.010345 1.925078 -1.709963 2.744011 -0.557742 -0.552390 -0.844773 -3.295827 0.536057 0.393658 0.495383 1.588597 -0.011963 1.300997 1.099221 -1.422339 0.588436 0.005878 -0.540139 -1.594539 -0.276737 1.073755 2.945056 -1.862372 -0.678830 0.332047 3.097860 -0.558243 2.126957 1.551608 0.714486 1.583024 1.237941 -3.398740 -0.365937 1.215734 -1.227503 -1.875257 0.567092 -0.444932 -1.958138 -1.082602 1.417136 -0.456357 -0.552228 2.062470 -0.641483 -0.124363 -1.879916 1.941812 1.313460 0.027152 2.626079 0.291047 -0.125823 -1.266442 -2.107164 1.820663 -1.190361 -0.421643 -1.339547 -1.854450 0.122350 0.417582 -0.523193 -1.857683 -0.614530 2.358821 1.450414 -1.714827 0.645487 -0.513965 -0.563895 -3.234432 -2.713016 0.427426 -1.778320 2.134517 -0.011285 0.778631 0.267224 0.883020 -0.300778 -3.416261 0.634414 2.078959 -1.052587 -0.520552 -0.459207 1.934532 0.569181 -0.171328 -1.475222 -1.378820 0.262952 -1.009864 1.331432 -1.421568 2.538117 -1.343812 -0.471212 -0.784757 1.469866 2.248849 2.512624 0.132432 1.060864 2.482744 -1.781796 -1.315708 -2.364776 0.720847 -1.035862 0.672660 -0.804371 1.655582 1.429419 0.539389 2.164430 -4.422182 0.878648 0.144052 0.404355 -2.419073 0.374133 -0.465491 -0.547321 -0.713308 1.703115 -0.969602 -0.470205 -0.598438 1.005140 0.976336 -2.170550 0.567270 0.094895 3.104070 -3.429134 0.845270 -0.648984 -1.404151 0.354371 0.580468 2.053683 2.156864 2.673936 2.266329 -1.058155 2.127471 -3.177424 0.854855 2.605078 -0.418463 -1.666932 2.721766 -1.682602 -0.473590 0.671945 2.250157 2.089716 -0.106991 -1.016142 -0.880834 1.876482 1.106462 2.294753 -0.759609 0.524208 -1.281884 0.986852 0.673751 -0.725133 3.324494 -0.066367 -2.264948 1.952195 1.217738 -1.656225 -0.309321 0.866134 -2.265721 -0.069092 -1.730525 0.998559 1.943299 -1.564274 -0.641537 -0.124454 -1.584919 2.364990 -0.713775 -1.507183 1.532017 -1.599048 -0.010062 2.898338 0.418518 -0.168131 -1.869418 -2.821020 -1.663212 -1.992362 0.793224 -0.446013 -0.717743 -0.534497 -1.949528 -1.135206 2.737188 1.002827 1.167124 -4.749274 0.943741 1.174998 1.591733 1.000771 -0.679021 -0.288089 0.988884 -0.546857 -0.087107 -0.767692 1.146217 2.583106 -2.132252 0.615661 -0.326014 -0.096147 1.525888 0.713343 -3.198765 2.701241 0.666435 3.138915 -0.028747 0.753512 -0.858067 0.674986 0.301901 -0.154342 -0.318768 0.324137 -0.957900 -1.039333 1.148227 -1.103080 -2.991009 -0.613072 1.157850 0.341567 0.897829 -1.490520 -0.914119 -0.366294 -0.581408 0.986665 1.486393 -0.297716 -0.645879 1.395074 0.784907 0.440134 -0.153982 0.341318 0.730549 1.512676 -2.566441 0.377449 -0.489707 1.813497 -0.808239 -2.709243 0.647962 -0.719220 -0.275739 1.974266 -3.254846 -0.633961 -1.502147 0.433390 -2.794768 0.813282 0.080504 3.235333 0.544866 -0.852112 1.370766 -0.498122 0.611456 -0.663021 -0.019476 0.498680 1.251456 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.654019 0.135755 -0.270618 -0.317532 1.783670 -0.441773 -0.098189 1.337995 -0.335500 1.106676 -0.301481 -0.049627 -0.170349 -0.926690 0.183402 0.249274 0.103461 0.787565 -0.209492 0.226745 0.504161 0.013824 0.074880 0.025427 -0.334479 -0.554461 -0.195490 0.401862 0.756813 -0.628256 -0.472497 0.242107 1.360202 -0.282588 1.235684 0.811844 0.734080 0.599178 0.386289 -0.485284 -0.061444 0.473350 -0.597745 -0.750199 0.202447 -0.290708 -0.835977 -0.307085 0.534942 -0.361183 0.602534 0.800036 -0.218592 0.179183 -0.306812 0.784570 0.024815 -0.121629 1.107600 0.231216 -0.723291 -0.215787 -0.889064 1.451061 -0.453681 0.351729 -0.569861 -1.113073 -0.201029 0.150196 0.378313 -1.024069 -0.339001 0.979992 0.279335 -0.707797 0.404387 -0.230303 0.615928 -1.091328 -1.100907 0.335692 -0.596769 0.700080 -0.034316 0.258727 -0.488548 0.385148 -0.279562 -1.404564 0.261619 0.975028 -0.834472 0.225217 -0.762449 0.126948 0.082607 0.198194 -0.345538 -0.687429 0.282746 -0.216668 0.487828 -0.303224 1.051894 -0.369154 -0.057030 -0.097019 0.567795 0.755468 0.477285 0.254848 0.737217 1.064239 -0.131574 -0.248356 -0.985723 0.601232 -0.535443 0.277161 -0.269110 0.595666 0.745987 0.313002 0.985186 -1.472247 0.297256 -0.060550 -0.110479 -0.886821 0.159215 -0.431556 -0.395321 -0.455677 0.747277 -0.179033 -0.308732 -0.452484 0.457563 0.243638 -0.962916 -0.337815 -0.057858 0.459606 -1.175237 0.211186 -0.293167 -0.443622 -0.047758 0.590771 0.885020 0.999436 1.170066 0.924503 -0.208477 0.210254 -1.375356 0.153044 0.903997 -0.026027 -0.830765 1.123327 -0.920309 -0.255473 0.426693 0.966835 0.582832 0.300886 -0.279310 -0.296636 0.410602 0.531032 1.170901 0.056710 0.206443 -0.382264 0.057343 -0.232979 -0.604453 1.540690 0.239461 -1.154216 0.369637 0.346195 -0.060799 -0.292862 0.513494 -1.084884 -0.314135 -0.583060 0.302120 0.819343 -0.700450 -0.204112 0.581652 -0.794966 1.036399 -0.271888 -0.528594 0.519035 -1.043047 0.035285 1.346714 0.310495 -0.151164 -0.624810 -0.952220 -0.321290 -0.812913 0.278295 0.129457 -0.019627 -0.363879 -0.865622 -0.292415 1.031229 0.344257 0.616446 -1.502069 0.038803 0.561810 -0.117209 0.416163 -0.864122 -0.153843 -0.150946 -0.168946 0.201745 -0.488168 0.384027 1.219687 -0.748096 0.414889 0.568671 -0.250061 0.108673 0.360743 -1.282413 1.171438 0.220526 0.507038 0.141153 0.321179 -0.587609 0.100267 -0.064700 0.372739 -0.197836 0.302143 -0.283365 -0.324473 0.084275 -0.794692 -0.786965 -0.259051 0.419482 -0.073855 0.341190 -0.612931 -0.590512 -0.324117 -0.661604 0.297382 0.714917 -0.315307 -0.428065 0.800848 0.014419 -0.300359 -0.016041 0.129724 0.326949 0.778642 -1.098439 0.009572 0.079596 0.616822 -0.823381 -0.964924 -0.145895 -0.424551 -0.297110 0.320910 -1.129275 -0.528807 -0.631416 0.101326 -1.075304 -0.085115 0.275855 1.436409 0.407551 -0.458714 0.614717 -0.227202 0.516691 0.070190 -0.035910 0.138805 0.623020 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -8.180887 7.980100 4.826140 -5.988785 16.169542 -0.776154 -1.519244 6.509380 -8.182660 16.072192 -5.167627 -1.291478 -3.973216 -14.556378 0.593176 -7.013154 -3.397425 4.427221 1.487506 10.655115 5.900067 -10.280295 0.986067 -0.251819 -5.857243 -12.158657 -2.403493 4.813975 16.012972 -11.319197 1.751481 -0.943946 15.620468 -2.617569 13.168175 11.295851 4.156915 10.341003 4.301433 -10.061668 -7.089520 7.403170 -9.790865 -5.938926 1.402991 -4.058293 -9.432044 -3.741872 5.068566 -0.355556 -3.709182 13.143539 -4.759583 0.150574 -9.724578 11.285714 3.291708 0.674784 17.472536 0.590199 1.107777 -5.172985 -16.766569 10.395380 -5.608797 0.188486 -6.774019 -6.748443 6.104284 -3.355847 -2.456616 -8.445100 -2.038387 16.558496 6.961105 -13.119877 0.598908 -7.850124 -19.691918 -14.094760 -12.329342 4.231037 -0.239532 11.018259 2.059106 5.557805 3.681031 11.049916 -5.606690 -21.372049 5.219046 13.548957 -7.148938 -5.546674 -5.772514 14.625779 1.187887 3.500821 -8.329656 -1.280345 4.315133 -2.600240 7.384354 -15.781769 9.394646 -15.519362 0.466219 -3.952300 3.322221 3.745439 10.724533 2.491447 11.228585 17.121562 -13.540369 -3.298256 -12.711923 1.046231 -1.012040 3.844521 -3.341864 9.483565 -1.936666 4.720888 15.753410 -22.234279 2.575552 -1.711037 -2.939063 -17.131863 -1.155411 -7.519508 -3.154309 -5.398306 7.054525 -1.733189 -2.163034 -6.927388 3.241927 4.386138 -7.837605 -4.926319 7.040632 17.814640 -13.776870 3.807509 -3.178598 -4.891723 -2.294853 7.739603 12.795556 12.852247 17.444034 12.086981 0.319101 8.129445 -14.168669 -1.206624 11.569138 3.904339 -12.091601 16.415377 -11.385660 -5.436558 1.015307 12.632414 12.342186 2.542859 -13.287039 -13.717243 10.790426 5.137453 15.200527 -2.213157 0.590723 1.373915 14.131096 1.392858 -12.397913 14.993661 4.681816 -8.606313 5.621976 2.912984 -8.275057 -4.825141 10.983477 -11.776892 3.219413 -4.082501 -0.849524 7.503117 -4.506168 -1.944142 -0.380718 -11.641354 16.153671 -3.339017 0.291180 7.989531 -9.498431 -15.700994 10.003719 -1.737139 -5.106310 -12.586531 -11.273516 -10.584399 -8.854035 5.409860 0.709814 -4.553153 -8.205528 -13.633537 -1.092317 9.649681 4.975298 8.964113 -18.937084 -5.580641 6.328797 6.120615 10.602600 -1.221061 -1.253861 1.096678 -0.182063 3.883590 -2.179515 14.121435 20.319667 -8.158542 7.969076 -6.271738 -5.043687 5.477182 6.531736 -19.115871 16.470397 2.566262 9.796048 -1.148377 3.540080 -5.897892 2.148540 6.007188 -0.799999 3.754345 -0.868717 -0.095807 -5.189155 -3.298298 -11.887035 -7.676264 -4.656687 1.923391 -3.974274 5.594628 -0.476838 -5.512620 -5.279441 -7.021816 2.459900 9.365504 0.936444 0.319834 10.607139 -1.058715 6.798640 6.084292 0.693704 3.812768 6.647145 -15.809102 -2.194186 -4.802288 4.095918 -6.228505 -16.087448 -1.458458 -7.587220 -5.286605 8.380520 -14.772910 2.084947 -10.247808 -2.250895 -13.245226 -0.349251 3.378234 17.707393 6.973124 -9.424708 5.106947 -6.120859 9.177754 0.118589 -0.899050 3.215735 7.727149 +PE-benchmarks/partition-problem.cpp__main = -2.472376 1.612921 1.230506 -1.706542 4.983070 -0.432098 -0.545939 2.137738 -1.291431 4.215386 -1.598077 -1.019800 -1.232558 -3.835131 0.363706 -1.699091 -0.685660 1.660189 -0.177722 2.382350 1.900857 -1.925638 0.236688 -0.161533 -1.485564 -2.843380 -1.129053 1.417180 3.709799 -2.903570 -0.104692 0.132189 4.662867 -0.756756 4.227922 3.346771 1.713588 3.113405 0.686757 -1.993224 -1.377757 2.247053 -2.762252 -2.282959 0.666599 -1.336306 -2.938594 -1.442125 1.667703 -0.428728 -0.014537 3.680813 -1.176851 0.185913 -2.285085 2.911058 0.602745 0.549860 4.803307 0.572988 -0.567822 -0.383154 -4.683452 3.201890 -1.788480 1.075650 -2.077865 -2.799894 0.747470 -0.615096 0.329431 -2.708681 -1.161914 4.214294 1.844335 -3.316238 0.679575 -1.903929 -3.305799 -3.870804 -3.868496 1.289639 -0.584012 3.080033 0.233892 1.320789 0.450950 2.663579 -1.385038 -5.694441 1.178022 3.858612 -2.292501 -0.841937 -2.001353 2.784777 0.211977 1.005074 -2.243018 -0.829363 1.321394 -0.741719 2.075972 -2.733748 2.778952 -3.473826 0.328885 -0.491318 1.154378 1.072757 2.561486 0.678384 3.220342 4.410255 -2.912007 -0.479057 -3.451072 0.797936 -1.018945 1.102274 -0.853979 2.722705 0.288512 1.144027 4.196013 -5.729631 0.916657 -0.386490 -1.134365 -4.060984 0.074040 -2.108845 -1.350092 -1.674160 2.326233 -0.277970 -0.887201 -1.877583 1.036843 0.967177 -2.118643 -1.100384 1.281598 3.391453 -3.244047 0.898447 -1.028463 -1.714576 -0.572446 2.352040 3.421343 3.724545 4.981333 3.606499 -0.308772 0.830131 -4.290114 -0.078634 3.419608 0.046131 -3.504303 4.353905 -2.977333 -1.197735 0.707344 3.625121 3.110275 1.047109 -2.668358 -2.946928 1.567628 1.486267 4.459460 0.103453 0.333104 -0.108370 2.775513 -0.116196 -3.195081 4.634650 1.407815 -2.837658 0.974480 1.063416 -2.007614 -1.836114 2.792106 -3.263200 0.414805 -1.511560 0.302518 2.323194 -1.756673 -0.716230 0.735073 -3.419991 4.286953 -1.019727 -0.426204 2.089557 -3.318773 -3.920099 3.553726 -0.241189 -1.307467 -3.202026 -3.193651 -1.791326 -2.810715 1.594779 0.368665 -0.814068 -2.292044 -3.670749 -0.134196 3.038685 1.175163 2.539128 -4.476702 -1.360671 1.847247 0.789047 2.926900 -1.102329 -0.544763 -0.053277 -0.352989 1.164996 -0.802768 2.968643 5.550932 -2.533969 1.881471 -0.484867 -1.848173 0.957655 1.981083 -5.085733 4.763714 0.664127 1.954093 -0.280011 1.168446 -1.731319 0.396561 1.337821 0.219412 0.582591 0.364318 -0.239346 -1.327894 -0.786937 -3.416509 -2.036150 -1.046882 0.857102 -0.997148 1.543509 -0.413604 -2.097443 -1.237998 -1.824027 0.762264 2.890071 0.000369 -0.506065 2.957926 -0.223933 0.886634 1.103269 0.310826 0.937289 2.490660 -4.509741 -0.366699 -0.837269 1.274445 -2.181656 -3.913042 -0.738203 -2.357013 -1.190665 2.218387 -3.775305 -0.155952 -2.911950 -0.251573 -2.809736 -0.423844 1.074538 4.977451 2.495628 -2.522901 1.665347 -1.449625 2.695027 0.259666 -0.727502 0.916637 2.403017 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -6.084656 5.650826 4.133064 -4.550680 11.003210 0.402891 0.702128 5.525931 -8.933673 10.361211 -3.849446 1.267229 -2.156292 -8.585090 0.217494 -3.838065 -2.433738 2.013467 0.794369 7.728290 4.170735 -6.786541 0.895127 -0.416309 -4.396384 -6.778565 -0.643423 3.309688 9.798138 -4.815282 2.646562 -0.925032 8.663559 -2.221821 9.398370 7.886915 0.970706 6.175290 2.030355 -7.980189 -4.617572 4.994798 -6.674170 -5.168620 0.199410 -2.647108 -7.080004 -3.986500 3.762623 -2.827852 -4.883961 8.899754 -3.243601 -0.110150 -5.642387 8.043790 2.792597 -1.912997 11.490990 0.514291 -1.762680 -2.899195 -9.853510 6.937243 -2.618280 0.151350 -4.218615 -5.512423 4.639790 -1.532249 -3.562915 -3.138370 0.060905 10.226293 4.415805 -9.036764 0.890269 -5.438747 -13.020708 -9.138189 -5.959799 2.940977 1.132749 7.587283 1.018042 3.791106 3.447618 6.773200 -4.017665 -13.910165 3.340646 9.388150 -4.737374 -4.735645 -4.415111 9.718499 1.217790 2.183458 -5.587830 0.037636 3.397431 -1.188642 4.926217 -11.350433 5.724212 -9.314845 -0.935902 -1.649295 3.483111 4.051515 4.346497 2.880726 7.809694 10.884726 -7.603144 1.488048 -7.114511 1.568424 -2.359482 2.608437 -2.375857 5.674762 1.644921 2.958831 10.387822 -12.663993 2.326688 -0.315449 -1.221019 -11.560152 -0.096461 -5.292795 -2.263210 -3.784427 4.646082 -1.328038 -1.256958 -4.886590 2.399479 2.546090 -4.966981 -2.333800 4.156049 9.909559 -8.821865 2.728217 -2.027955 -2.088514 -1.034020 5.994245 8.350025 8.599922 11.737074 7.907766 0.408085 4.190071 -8.831338 -0.543077 8.630714 2.322976 -7.914742 10.373257 -7.058473 -4.170089 0.692157 6.928371 8.434224 3.459675 -9.799499 -9.439232 6.880136 3.085429 10.595613 0.990727 0.820249 -0.031821 9.670733 -1.141585 -6.907905 7.748738 4.191187 -6.782556 4.493237 2.218160 -6.624403 -3.232257 7.361004 -7.918283 0.406261 -1.813140 -1.016143 5.210073 -3.601582 -2.382361 -0.223298 -8.271642 10.763209 -2.252421 1.428484 4.006779 -5.725275 -8.287512 5.130005 1.104335 -3.840787 -7.915800 -6.150206 -9.105633 -6.507039 3.479377 1.168328 -2.315124 -5.935745 -9.309997 -1.847004 3.333050 3.102721 5.970210 -11.280137 -2.858880 4.828843 4.005129 6.137530 -0.873149 -1.022029 -0.171032 -1.167080 3.170071 -1.795169 9.915592 11.874665 -5.144666 6.581591 -2.959699 -3.816836 3.855730 4.307326 -12.105044 11.570842 2.095098 6.061322 -0.043263 2.739806 -3.967816 1.442660 3.098548 -2.548514 2.182771 0.701370 -0.796155 -3.574024 -1.792403 -7.663587 -4.473931 -2.881749 1.223742 -1.897718 3.709344 0.920651 -5.378312 -4.022734 -6.504300 1.468226 6.544013 -1.539722 -1.326993 7.293212 -0.286996 3.762459 1.697903 0.575886 3.368374 4.412873 -10.853961 -0.344630 -3.026751 2.433500 -5.683513 -7.901701 0.061921 -5.383206 -5.262286 5.636250 -8.551907 2.189977 -7.030976 -1.479581 -8.155455 -2.751007 2.543282 12.090388 2.820579 -6.031601 3.728461 -4.395790 6.505643 0.747926 0.478613 0.716051 5.261150 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -1.925209 1.325904 1.035085 -1.356035 3.501412 -0.195552 0.002226 2.027803 -1.511372 2.631693 -1.549203 -0.026824 -0.730842 -2.337957 0.164913 -0.957934 -0.497000 1.125453 -0.389571 1.477643 1.484620 -1.008172 0.176323 -0.508349 -1.062265 -1.365045 -0.568373 0.779204 2.018880 -1.152075 0.118934 0.041460 2.821087 -0.569296 2.880699 2.300479 1.004477 2.281815 0.209583 -0.968119 -0.692777 1.657866 -1.792449 -2.127844 0.484533 -1.179702 -1.857730 -1.078527 1.211278 -1.184279 0.092362 2.367702 -0.594038 -0.039131 -1.292247 2.044467 0.665304 -0.025608 3.215656 0.571178 -1.339063 -0.233272 -2.871705 2.250986 -1.140477 1.312275 -0.989151 -2.220133 0.287379 -0.082731 0.099016 -1.749823 -0.827301 2.344490 0.797234 -2.193550 0.682925 -1.276212 -1.812940 -2.125194 -2.095604 0.802587 -0.108744 2.002532 -0.068870 0.722609 0.015400 1.472972 -0.708358 -3.594459 0.358181 2.719154 -1.655746 -0.235463 -1.664658 1.500611 0.042386 0.601207 -1.479672 -0.400561 1.043630 0.056472 1.286494 -2.173303 1.325860 -2.229755 0.429439 0.114033 0.634129 0.937093 1.007297 0.919899 1.982921 2.719564 -1.364069 0.573349 -2.477717 0.653639 -0.928047 0.792576 -0.547502 1.466965 0.697657 0.539557 2.642941 -3.295282 1.140366 -0.070841 -0.824437 -2.813183 0.438441 -1.432037 -1.141029 -1.097839 1.602467 0.004889 -0.631782 -1.242741 0.715118 0.311805 -1.623159 -1.150222 0.561542 1.767629 -2.199164 0.470165 -0.760481 -0.901512 -0.396035 1.709237 2.058634 2.191980 3.348903 2.311108 -0.081531 0.358721 -2.707598 0.066196 2.573231 0.436736 -2.506858 2.545834 -1.919397 -0.660081 0.711824 1.796057 1.867197 1.572189 -1.975391 -1.983819 1.059130 0.547950 3.087056 0.807587 0.607535 -0.620452 1.875314 -0.756643 -1.738816 3.051019 1.338021 -2.536229 0.842106 0.897750 -1.063219 -1.209519 1.737973 -2.055241 -0.172608 -0.767928 0.027110 1.490741 -1.566885 -1.123844 0.496551 -2.527863 3.065714 -0.558524 0.063969 0.955177 -2.466054 -1.957988 2.329344 0.465718 -1.130686 -1.876471 -1.676892 -1.752793 -2.245723 1.043463 0.747871 -0.504491 -1.863819 -2.483463 -0.157862 1.550545 0.325955 1.459873 -2.507638 -1.003761 1.368588 0.234939 1.904717 -1.227192 -0.574676 -0.543547 -0.301079 1.310167 -0.688320 1.938992 3.650656 -1.649046 1.861414 0.580932 -1.160451 0.394502 1.703687 -3.005894 3.222722 0.334106 1.362128 -0.095308 1.047679 -1.404595 0.160600 0.591953 0.014314 0.315557 0.716446 -0.519679 -0.792365 -0.541542 -2.459234 -0.930405 -0.211570 0.624767 -0.295678 0.840753 0.057319 -1.578256 -1.047372 -1.679839 0.225754 2.140154 -0.605517 -1.185897 1.657672 -0.143882 -0.109681 0.251780 0.371917 0.791759 1.880034 -2.979505 0.114840 -0.364727 0.294801 -2.278561 -2.024560 -0.432778 -1.604242 -1.291594 1.341812 -2.279364 -0.091989 -1.854156 0.148948 -2.115682 -0.933952 0.540868 3.287050 1.369440 -1.335040 1.412854 -0.853604 2.156003 0.480329 -0.270613 0.235289 1.796149 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -5.438137 6.051210 2.035537 -4.751932 11.392529 -2.613302 1.761872 4.182037 -4.633653 9.415249 -3.435508 -1.330598 -2.116666 -11.095302 0.814633 -5.855039 -1.689679 5.079073 1.222133 7.220860 3.950192 -6.327792 0.781531 -0.305737 -3.842272 -8.875413 -0.901178 3.641006 9.006522 -6.027467 3.140153 0.080539 10.827205 -1.919084 9.865036 7.843718 2.225316 6.385503 3.440462 -5.625301 -3.464855 4.205306 -5.586283 -5.736238 0.153517 -0.834811 -7.567153 -4.143221 3.562759 -2.825882 -1.965402 8.449786 -2.610447 0.042845 -6.727841 6.651348 3.708006 -0.207345 10.106006 0.720874 -0.334283 -1.968943 -9.601954 7.032614 -3.487731 -1.416961 -3.502954 -5.053214 3.978000 -0.372928 -3.224976 -4.368125 -1.289090 9.268111 5.895958 -8.438785 0.843420 -4.823316 -12.401390 -8.597016 -6.884068 3.110374 -0.811428 7.731178 1.289169 3.702429 2.187909 5.657290 -3.459914 -12.630777 2.914352 9.466915 -3.899715 -4.523825 -3.341582 10.194172 2.983993 1.072563 -4.850372 -2.766194 2.659429 -2.695148 4.964955 -7.478211 2.878535 -9.440432 -1.539370 -1.732313 1.890679 6.158685 5.768348 2.476495 6.202175 9.696255 -9.261138 -0.286702 -9.514621 2.457253 -2.474451 2.421845 -1.912863 4.915527 0.709786 4.103548 8.444118 -13.803337 2.901392 0.149592 0.023593 -10.227566 -0.162619 -3.646148 -1.787943 -3.638888 4.641939 -1.265182 -1.088743 -3.659653 1.793117 3.291296 -3.361241 -2.681560 3.769764 10.854877 -9.103221 3.056854 -1.853926 -2.839341 -1.328852 4.322391 7.821788 7.641846 11.351301 7.979357 -0.145664 6.040438 -9.628528 -0.794901 8.444122 1.626254 -6.839930 10.191050 -6.901465 -4.183786 0.537413 8.329790 7.353551 1.831406 -9.214140 -8.250896 6.792090 2.570224 9.279573 -1.204086 -0.772058 -2.861539 9.148736 1.205731 -6.941907 11.012768 3.631930 -6.613621 3.973991 2.904290 -8.423145 -4.095401 6.719857 -7.855913 0.448782 -3.050966 0.784579 4.918666 -3.165967 -2.169272 -0.625508 -7.197424 8.498324 -2.570471 -1.601946 3.986893 -5.488541 -8.241625 8.432066 0.178413 -2.754871 -7.215736 -7.719836 -5.341216 -6.517871 3.225653 0.739019 -2.648842 -4.607171 -7.923365 -1.299675 6.501306 2.484026 5.776360 -11.339754 -2.586192 4.711667 5.493851 4.923296 -2.930047 -0.707155 0.978976 0.668093 1.228171 -0.553163 8.665672 12.281052 -5.360752 4.642632 -2.710121 -4.804140 4.733894 4.530718 -12.163590 11.157680 1.809184 7.404368 0.165221 1.838443 -3.640848 1.077296 3.155084 -2.063710 1.113040 0.138957 -1.356263 -3.379244 -0.237415 -6.643700 -6.069433 -2.445035 2.959194 -1.853558 3.542990 -0.009692 -4.304789 -3.076649 -5.156551 1.746480 5.933373 0.670444 -0.942406 7.035866 1.258212 3.568795 1.441476 0.065769 3.438967 4.390176 -10.107145 0.463900 -2.856448 3.340204 -4.907337 -11.183338 2.368145 -6.270852 -4.094620 3.693272 -9.644222 0.312819 -6.561205 -0.357403 -10.432619 -1.088374 2.981961 11.432325 3.173035 -4.736304 3.261431 -4.151560 5.439505 -0.463338 0.190950 2.532959 6.187043 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -1.719344 1.314977 0.425800 -1.389184 3.638095 -0.793902 0.301525 1.762046 -0.512679 2.491083 -1.420831 -0.511316 -0.631993 -2.753062 0.290022 -1.192187 -0.318998 1.712331 -0.328705 1.281223 1.341840 -0.856705 0.223140 -0.437680 -0.949386 -2.041391 -0.542803 0.880199 1.715847 -1.186624 0.208135 0.236788 3.166443 -0.483491 2.793652 2.179233 1.226655 2.202370 0.527355 -0.348275 -0.316585 1.348078 -1.479274 -2.123027 0.443333 -0.724946 -2.126005 -1.241021 1.120003 -1.398832 0.815353 2.228157 -0.432474 -0.062350 -1.461131 1.745394 0.930545 0.123681 2.818596 0.595723 -1.026075 -0.077726 -2.670836 2.353779 -1.243679 0.807415 -0.743643 -2.188897 0.068759 0.313571 0.259925 -1.778819 -1.054302 2.024934 1.179569 -2.031765 0.641269 -1.104337 -1.534351 -2.075000 -2.126583 0.859811 -0.523293 2.022427 0.045708 0.712666 -0.242959 1.141690 -0.586903 -3.197941 0.250117 2.701125 -1.377905 -0.250488 -1.574159 1.558919 0.515056 0.263079 -1.251753 -1.055546 0.817181 -0.280441 1.251590 -1.201712 0.563770 -2.152613 0.231212 0.223728 0.402596 1.391014 1.099301 0.736901 1.508537 2.352055 -1.696833 0.367214 -2.840561 0.938535 -0.811109 0.720812 -0.515484 1.191112 0.647836 0.876680 2.163222 -3.419041 1.281584 0.053131 -0.575350 -2.373253 0.354981 -0.950544 -0.960678 -0.988566 1.523727 -0.066032 -0.530480 -0.891471 0.645593 0.437623 -1.232383 -1.109222 0.420913 1.940751 -2.252927 0.584979 -0.660760 -0.977321 -0.430790 1.350420 1.912004 1.920530 3.176293 2.227403 -0.150567 0.697021 -2.840310 0.089799 2.586784 0.447419 -2.143869 2.471349 -1.815299 -0.632534 0.633870 2.041046 1.525496 1.075960 -1.787732 -1.608524 0.900570 0.447227 2.798882 0.472671 0.225328 -1.351197 1.653513 -0.354439 -1.545837 3.555509 1.444646 -2.380494 0.614051 1.092699 -1.630635 -1.346422 1.547824 -1.967252 -0.297523 -0.986451 0.478021 1.435123 -1.345835 -1.056991 0.386054 -2.193728 2.465723 -0.615342 -0.537323 0.925628 -2.230071 -1.731050 2.894248 0.240076 -0.810310 -1.596073 -1.966129 -1.015125 -2.219345 0.906727 0.630882 -0.566872 -1.443810 -2.130519 -0.139094 2.166554 0.192803 1.349538 -2.532320 -0.786972 1.347449 0.479616 1.476028 -1.713111 -0.443397 -0.281728 0.078253 0.750892 -0.424415 1.609955 3.496945 -1.628929 1.348401 0.579692 -1.214587 0.592717 1.651162 -2.894754 3.072490 0.259579 1.553748 0.024331 0.835168 -1.190705 0.146848 0.471695 0.010448 -0.006702 0.660576 -0.754998 -0.767708 -0.021896 -2.135098 -1.368347 -0.103553 1.040611 -0.245927 0.765499 -0.173368 -1.390057 -0.790730 -1.458862 0.344264 1.885092 -0.138893 -1.031555 1.591812 0.317623 -0.193919 -0.013789 0.255014 0.863190 1.829903 -2.747565 0.389932 -0.284320 0.586232 -2.103799 -2.678275 0.198187 -1.780282 -1.225608 0.906879 -2.559498 -0.593562 -1.734185 0.412360 -2.598663 -0.613741 0.680900 3.101024 1.255161 -1.009651 1.280430 -0.778662 1.761883 0.136135 -0.250982 0.682147 1.908320 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -12.648247 11.060020 2.596538 -9.873351 24.423624 -3.054190 2.668346 5.735263 -8.712658 21.507125 -8.481471 -6.149223 -6.730557 -24.033815 0.956630 -11.896223 -4.745613 8.183720 0.590593 13.510348 9.604383 -15.099850 2.438746 -1.403258 -7.703203 -17.803741 -3.413560 7.130095 21.922787 -14.143894 1.570160 -1.400962 22.418437 -3.882505 19.238563 15.835124 4.999350 15.586527 2.757769 -11.816427 -8.620650 11.264380 -13.438776 -13.088464 1.534454 -5.207479 -15.331709 -8.448055 9.198143 -3.300811 -1.477343 19.166261 -6.462039 -0.866624 -14.588629 14.316831 6.955485 2.960736 24.181017 1.536554 0.238648 -4.870285 -23.604515 14.946909 -8.143409 1.021112 -6.610223 -11.466109 6.650927 -2.944500 -5.647895 -10.609797 -4.522430 20.908803 12.825563 -18.192768 1.574142 -11.377457 -27.290446 -18.277873 -17.822864 5.737639 -2.127845 17.530438 2.496922 7.666509 4.327805 13.458535 -7.004784 -29.058414 5.770164 21.165418 -8.163564 -6.732539 -7.298899 20.430110 2.484912 3.405465 -13.473255 -3.021327 5.477139 -2.976848 10.933788 -19.332452 6.441677 -23.102711 1.245803 -3.499799 3.755862 5.797911 16.326713 1.562426 12.867395 22.525994 -19.740631 -1.605473 -19.313586 2.583985 -2.072144 6.439836 -4.764746 12.895334 -0.998640 5.238117 20.584377 -30.727199 5.887462 -1.106341 -3.466175 -24.147143 -0.711239 -9.759137 -5.326241 -6.677667 10.314937 -2.572179 -3.350014 -8.954439 4.018659 6.012718 -10.711742 -2.482339 9.694498 21.926992 -17.172323 5.902344 -4.695079 -7.821914 -3.666246 10.938184 17.008100 17.485452 25.463414 18.637770 -0.069227 11.047293 -20.662558 -0.144406 18.897706 4.020468 -17.571338 21.115179 -16.112645 -6.090413 1.651298 17.450451 17.539098 5.366081 -18.361002 -14.916756 14.121685 5.977573 21.405044 -1.524108 1.653073 -1.444555 19.041416 1.804325 -14.460551 21.973595 9.069634 -14.837961 9.168726 5.756215 -15.032867 -7.376410 15.361373 -15.175942 4.177453 -8.328848 1.737302 11.092555 -7.753966 -4.360328 -1.859773 -17.120384 22.166813 -5.289814 1.012943 11.180674 -14.738362 -18.729695 17.466041 -2.088513 -7.254398 -16.857200 -16.248715 -15.398514 -14.000267 8.096204 1.500537 -7.378998 -12.256298 -18.914936 -1.619846 16.014266 5.856430 13.446530 -20.555605 -6.047017 9.290040 11.000815 14.784557 -2.449932 -2.355588 1.683602 0.944778 5.972064 -1.795171 17.674806 26.556302 -12.783966 11.033916 -6.928785 -7.312872 8.636141 10.296752 -24.958975 24.125554 3.979141 13.473763 -2.574516 5.918302 -7.082055 3.348876 8.319164 -2.184172 4.947526 1.121733 -2.116793 -7.522287 -1.037550 -16.910015 -11.165904 -4.769113 5.120087 -3.023271 7.991765 -0.310823 -8.813611 -6.788969 -10.654082 3.473784 14.155528 1.993740 -1.521369 13.546882 -0.152605 7.768999 7.355014 1.652565 5.716997 11.269591 -22.231080 -1.469096 -6.662956 4.622706 -9.931571 -23.725941 -0.039622 -12.441905 -8.699608 12.796709 -20.736158 3.225387 -15.233162 -1.349472 -20.714561 -1.938961 3.927670 24.967963 10.204965 -9.422177 8.464743 -7.604845 13.241129 -1.223201 -2.102216 7.660335 12.695089 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -14.020226 11.404456 3.495426 -10.680629 26.510494 -3.430031 2.729197 7.438956 -7.288440 22.473408 -10.098739 -7.446658 -7.368545 -24.558684 1.013703 -12.756173 -4.971416 9.741561 -0.720813 13.368353 11.017258 -13.873011 2.306754 -2.327830 -7.876262 -17.416182 -4.688030 7.103901 21.240254 -13.966943 1.075811 -1.051949 24.475641 -3.548330 21.544961 17.364800 6.382402 17.804650 1.766188 -8.636459 -8.382305 12.726720 -14.428161 -15.238657 2.646253 -6.580107 -16.138720 -9.566313 9.770419 -4.979036 2.079573 20.292098 -6.430063 -0.682215 -14.211624 14.649809 6.947902 4.073863 25.718866 2.577596 -1.949362 -2.914449 -25.470448 16.095326 -8.894013 4.259910 -6.308763 -13.960322 5.179170 -3.050993 -2.563785 -13.136138 -6.477249 21.691110 12.481623 -18.603638 2.735773 -11.900995 -25.776369 -18.693706 -19.708356 6.045809 -2.545785 18.276104 1.813796 7.385155 2.238325 13.665497 -6.915845 -30.575277 5.193419 22.989294 -9.459432 -5.015815 -9.584309 18.752935 1.816658 4.236376 -14.231640 -3.702091 6.311108 -2.172253 11.436992 -17.761596 5.687848 -23.591027 2.758573 -1.884610 3.335808 5.567517 16.369675 2.405314 14.109858 23.635088 -19.427798 0.079141 -20.812745 3.607023 -3.023881 7.031365 -4.396600 13.567470 -0.618623 5.124284 21.500254 -31.656433 6.877701 -1.029462 -5.259340 -24.881504 0.137696 -11.083615 -6.854167 -7.593460 11.499411 -1.633871 -4.182313 -9.749006 4.027216 5.094951 -11.187050 -4.352862 9.071266 20.611267 -17.162667 5.510858 -5.462188 -8.804641 -4.225332 12.264617 17.622060 18.324862 27.237064 19.966093 -0.249535 8.340814 -22.122506 -0.210231 20.264638 4.130938 -19.358822 21.871421 -16.420801 -5.577427 2.940284 18.145909 17.669421 6.925586 -18.169626 -14.961238 12.361648 5.614720 23.280645 0.701152 2.449654 -2.602124 18.740541 0.274605 -15.822254 24.889404 10.641413 -16.535701 7.514177 6.153520 -14.476362 -8.998294 15.828700 -15.650125 3.475343 -8.805395 2.147927 11.443661 -9.046364 -5.761304 -0.152712 -19.053054 23.949351 -5.402403 1.109950 11.175216 -17.679905 -19.705881 20.210274 -1.719290 -8.338668 -17.045714 -16.729435 -14.207208 -15.525739 8.975597 2.589247 -6.827062 -13.871237 -19.926359 -0.485827 17.423433 5.188070 13.942664 -19.212791 -7.743623 9.850537 8.288065 16.275096 -5.602914 -3.305556 -0.041546 1.140195 7.654406 -1.718842 17.265289 29.567814 -13.680174 11.398408 -3.323367 -7.763336 7.182105 12.115500 -26.037325 25.667536 3.270661 12.944837 -2.945591 6.929963 -8.109897 2.759625 8.429000 -0.480750 4.831139 2.687542 -2.392411 -7.376381 -1.872051 -19.230223 -10.510036 -3.975597 5.361119 -3.456647 8.225801 -0.332010 -10.502237 -7.113198 -11.385428 3.038101 15.998050 1.825148 -3.397542 13.752227 -0.882277 5.966900 7.088063 2.127467 5.633118 13.297628 -23.673439 -1.253223 -6.086527 3.736769 -12.028013 -24.171372 -1.040014 -14.012841 -9.653703 13.002170 -21.092094 2.305468 -16.330456 -0.841855 -21.163435 -3.218114 4.107292 26.577542 12.380294 -9.782062 9.538119 -7.529219 15.446116 -0.288230 -3.169315 7.950014 14.545001 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -7.193105 9.353050 6.198557 -5.472320 14.338110 0.694076 -0.638731 5.424724 -7.411272 13.789050 -5.068940 -0.227940 -3.290702 -12.162043 -0.300647 -8.121271 -4.064854 3.256388 1.161247 8.616963 4.884104 -8.996299 1.038788 -0.089986 -5.579509 -12.131896 -2.090833 3.987837 14.281005 -8.040372 2.012969 -1.777054 12.687951 -2.931235 11.096429 9.235559 3.678521 8.306575 2.603338 -7.427433 -6.315268 5.885514 -8.685474 -5.518386 0.755456 -4.014730 -8.239116 -3.331382 4.820522 -1.229941 -4.458872 10.887876 -4.108249 0.072215 -7.633189 10.348229 2.381481 0.586841 14.989852 0.026600 -0.054207 -5.378091 -14.691828 8.198334 -4.284675 0.400897 -6.010046 -5.455514 5.395194 -2.901512 -4.166154 -6.096045 -0.278992 14.351824 6.263753 -11.331123 0.464088 -7.473303 -19.463991 -11.702005 -9.164895 3.777970 0.612090 9.195821 2.032864 4.966203 2.481409 9.445963 -5.550259 -18.620243 4.338147 13.148695 -5.181989 -4.428658 -4.882242 12.818478 1.442540 3.142278 -6.628314 -0.528537 3.908741 -0.969558 5.954121 -16.120962 6.688183 -15.393131 0.825817 -3.540179 2.322229 2.428705 6.767235 2.005612 9.599821 15.342580 -13.003664 -1.020438 -11.588184 0.672924 -1.099143 3.464047 -3.047253 7.751308 -2.836833 4.675965 13.197845 -18.971318 2.576890 -1.441455 -2.636231 -16.106477 -0.924815 -6.830429 -2.586142 -3.830104 4.977412 -1.326146 -1.728825 -6.716395 2.006622 2.835358 -6.316678 -4.647046 7.280607 15.965273 -11.618720 3.401772 -2.215916 -3.276710 -2.505908 7.139343 11.548249 10.504607 15.653529 10.342887 1.503773 8.022924 -12.292196 -1.773897 9.504117 4.156960 -10.386046 13.730836 -9.692245 -4.980083 0.763462 10.514326 10.167264 4.506907 -13.254871 -12.778259 9.200987 4.144228 12.658129 -0.475525 0.616052 1.309513 13.362992 -0.839294 -10.349973 11.456763 4.930424 -7.614094 5.019233 1.965873 -7.812374 -3.899895 10.122637 -10.437885 2.752756 -2.832511 -1.576214 6.413074 -3.621583 -2.216141 -0.657809 -10.129821 14.666968 -2.861511 2.042626 6.667250 -7.705004 -13.968485 8.033093 -1.701396 -4.829363 -10.182822 -9.037976 -10.310173 -7.113845 4.103565 1.727603 -5.184722 -7.720851 -11.776912 -0.595385 6.966529 4.012573 8.279067 -15.602081 -5.925995 5.598756 5.498061 9.390908 -0.879589 -0.833918 -0.624502 -0.231488 4.242706 -1.709424 13.425610 17.249824 -6.169736 8.447489 -7.216269 -5.376521 4.756173 5.714542 -15.753525 14.072537 2.730353 8.367262 -0.807612 3.068247 -4.611256 1.993094 5.103177 -2.544877 4.129312 0.428007 -0.158162 -4.481510 -2.678247 -11.220323 -6.046270 -3.858318 1.792752 -3.699327 4.672625 0.736621 -5.335318 -5.000149 -7.224841 1.220933 7.751472 0.165710 -0.335154 8.864143 -1.395816 5.371736 4.887424 0.545450 3.693325 4.916388 -12.864727 -2.202988 -4.022998 2.438549 -6.669212 -13.913016 -1.319289 -7.287486 -6.063040 6.362888 -13.297758 2.161641 -8.748259 -2.525152 -12.274834 -2.037259 3.881093 15.767593 5.784845 -7.230382 4.259078 -5.385721 8.460499 0.058059 -0.222413 3.263696 6.988799 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -2.105406 1.994922 1.346047 -1.560076 4.352967 -0.107032 -0.181707 2.134511 -1.014455 3.440557 -1.767388 -0.317667 -0.838438 -2.901335 0.055850 -1.712758 -0.867009 1.390105 -0.411297 1.536057 1.540454 -1.259007 0.258713 -0.359259 -1.358791 -2.668193 -0.869025 0.985426 2.742113 -1.616065 -0.018838 -0.145008 3.612214 -0.743043 3.169934 2.509864 1.614163 2.589989 0.281185 -0.532278 -0.853238 1.680387 -2.162897 -2.073427 0.544323 -1.392800 -2.360007 -1.077546 1.383001 -1.138995 0.455158 2.744623 -0.734516 -0.014014 -1.525881 2.569796 0.535928 0.260862 3.846737 0.471970 -1.142071 -0.658282 -3.805084 2.760987 -1.381447 1.347113 -1.341436 -2.416202 0.264596 -0.202242 0.204405 -2.250843 -0.897144 3.137738 1.242665 -2.632872 0.597563 -1.685185 -2.819372 -2.713948 -2.609151 1.056837 -0.227560 2.289649 0.189326 0.977045 -0.276629 1.946241 -1.094526 -4.493734 0.548136 3.567882 -1.742075 -0.171238 -2.063521 1.914260 0.154859 0.753182 -1.601043 -0.652673 1.109667 0.106954 1.458171 -2.921461 1.388382 -3.356552 0.687299 -0.055200 0.514902 0.627003 1.202573 0.689356 2.302785 3.577805 -2.397403 0.294442 -3.268768 0.658527 -0.638779 0.961248 -0.767341 1.801195 -0.035324 1.080833 3.193120 -4.476642 1.204711 -0.334358 -1.216039 -3.590178 0.190825 -1.649029 -1.172023 -1.057612 1.594176 -0.040986 -0.701317 -1.575354 0.698650 0.329275 -1.818962 -1.617396 1.157043 2.793733 -2.744210 0.638685 -0.728122 -1.042473 -0.710501 2.051649 2.776123 2.562545 4.130930 2.737559 0.247763 0.941716 -3.462957 -0.142529 2.783718 0.916735 -2.912175 3.271280 -2.464764 -0.817908 0.713008 2.550155 2.051028 1.717838 -2.593370 -2.535254 1.302517 0.824945 3.578702 0.726341 0.472014 -0.504803 2.421257 -0.939029 -2.318792 3.731725 1.801190 -2.653897 0.706853 0.863535 -1.407425 -1.396814 2.313390 -2.592083 0.082192 -0.909870 -0.024161 1.770018 -1.419483 -1.067844 0.547308 -2.836607 3.785602 -0.710663 0.132562 1.458222 -2.776909 -2.974864 2.890413 -0.111234 -1.259618 -2.183285 -2.228445 -1.901018 -2.355072 1.088783 0.922461 -1.015501 -2.136275 -2.945364 0.068006 2.264833 0.503588 1.939941 -3.330323 -1.553211 1.557259 0.302324 2.439991 -1.444835 -0.450156 -0.766233 -0.116429 1.390537 -0.705760 2.555807 4.610779 -1.784593 2.172478 -0.192828 -1.457189 0.462264 1.910413 -3.682967 3.740139 0.465480 1.627840 -0.166511 1.076051 -1.414758 0.311906 0.843847 -0.008403 0.601117 0.766609 -0.476867 -0.991445 -0.625167 -3.183553 -1.307970 -0.407687 0.818961 -0.729283 1.021264 -0.032236 -1.701347 -1.234955 -1.957866 0.210891 2.287082 -0.301370 -0.954308 2.059819 -0.293175 0.070513 0.678521 0.328723 0.949129 1.977906 -3.356919 -0.186239 -0.466819 0.408957 -2.606278 -3.219270 -0.649782 -2.074593 -1.665234 1.328175 -3.242955 -0.305534 -2.218439 -0.055760 -2.948163 -0.953030 0.981068 4.082770 1.877188 -1.583775 1.494263 -1.055821 2.471504 0.310717 -0.366264 0.860625 2.090216 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -4.412530 1.787787 0.818065 -5.648488 10.749333 -2.203235 -0.736186 5.147312 -0.391511 6.822523 -4.246934 -0.267490 -1.909888 -8.928343 0.694337 -2.844158 -0.264154 4.326976 -1.331885 4.475799 3.758448 -1.893935 2.229827 -1.678230 -2.824561 -5.029188 -1.237799 2.921044 2.953677 -2.692538 1.817649 0.087523 8.360463 -0.300574 6.839747 5.293573 2.784814 7.220451 2.045454 -0.406459 0.415867 3.186027 -3.156410 -7.120308 1.986066 -1.971610 -6.201092 -4.723668 3.366204 -5.450785 1.846601 6.229933 -0.585896 -1.750021 -5.953010 3.513492 2.823469 0.020322 7.229297 1.687768 -3.662469 -0.756590 -7.386282 3.699036 -4.424586 2.187473 -0.079739 -4.629331 -0.079882 2.577839 1.654683 -4.568728 -4.384550 3.525653 3.488111 -5.357514 1.806910 -3.115204 -2.743898 -5.023854 -3.675637 2.706182 -1.837679 5.418338 0.238877 2.823313 -0.302028 2.656644 -0.869462 -7.867132 0.267993 6.164768 -2.779877 -1.076625 -4.447805 6.017291 0.679571 -1.416355 -3.424587 -2.017784 2.030785 -0.621816 3.797502 -1.650544 -0.506397 -6.049832 2.182686 1.530964 0.719108 2.629653 2.316548 1.618810 2.847465 5.344056 -4.332835 2.963875 -8.832883 1.899385 -2.300730 2.114971 -3.020655 3.182386 2.430546 2.614154 4.904136 -8.786510 5.583370 1.137354 -1.855520 -5.688378 2.089939 -0.473439 -2.113021 -1.354157 4.336278 -1.144060 -1.121653 -1.187056 2.084208 0.784211 -3.683002 -2.479008 0.623039 5.541591 -4.430327 2.387434 -1.507767 -3.213694 0.073429 2.427327 4.606463 4.150118 9.079944 5.343425 -1.047723 1.424935 -7.768539 1.097187 8.210078 1.024102 -5.235396 6.540792 -3.139234 -1.097765 1.109395 5.490808 4.597736 1.727569 -4.420027 -3.937882 2.418078 0.716974 7.130461 1.670423 1.437955 -5.348761 3.378665 -0.458286 0.039567 9.144809 3.635050 -6.318973 1.520211 4.632053 -4.308073 -3.817899 2.780320 -3.007117 -0.477316 -2.343886 2.519199 3.836301 -3.831097 -4.902365 -1.287531 -5.420258 5.841810 -2.080732 -1.915852 1.977815 -5.704506 -3.317464 7.779008 0.248378 -2.317834 -3.378573 -6.198327 -1.801106 -7.438229 2.481614 2.269464 -1.937421 -1.797856 -5.022776 -0.798194 5.196730 -0.089143 2.159480 -6.731964 -1.541709 4.190345 1.088015 3.079514 -5.063208 -0.629075 0.245228 0.209608 2.182087 -0.945377 2.870428 8.657395 -4.766998 3.535174 2.059629 -0.548110 2.312364 5.256112 -7.351825 9.356172 0.227421 6.477776 -0.146547 2.315432 -1.595492 1.346249 0.563934 -1.269786 0.544420 2.052723 -3.836821 -2.981069 1.819370 -4.082147 -4.604667 0.601027 4.538024 -0.595349 2.200880 0.089031 -2.909857 -2.195604 -3.421630 2.277969 4.799013 -1.211977 -4.095076 3.338985 4.257276 -1.271116 -1.127061 0.812565 3.288173 5.788564 -7.672239 3.179053 -0.904316 1.714565 -5.455150 -6.355650 2.925666 -3.981446 -2.093152 2.300777 -7.681885 -3.384464 -4.469560 3.109176 -5.615226 0.347574 0.920942 7.434251 3.817164 -1.720720 3.110979 -2.081782 3.132693 -0.490186 -0.954670 2.631570 5.640437 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = -4.588162 2.719745 -1.143154 -5.834018 9.679178 -2.065864 -0.328518 5.331722 0.274960 5.289740 -5.236986 0.605206 -1.413884 -7.952061 0.438535 -1.012763 0.580603 5.173916 -2.642119 3.179128 3.939754 -1.583469 2.755306 -2.911338 -2.578644 -4.628021 -0.158995 2.219936 0.750542 -0.384935 0.802348 0.190247 7.345794 -0.179790 4.892184 3.960251 3.087167 7.846869 2.406225 0.215054 1.845476 2.871258 -2.003033 -8.288841 3.056402 -2.948264 -5.535628 -4.744981 3.375108 -7.905378 3.205466 5.223352 0.591203 -2.707116 -5.219007 2.730662 5.264892 -0.429704 6.738615 2.229984 -4.052318 -1.432819 -4.881616 2.710018 -5.018099 2.719339 1.396361 -5.605175 -2.306498 4.566570 2.161340 -3.894789 -5.270713 0.637987 2.583929 -4.499536 2.298472 -2.150285 -0.196314 -4.019634 -2.959608 2.016601 -2.281399 4.980986 -0.245948 2.242297 -1.019783 1.079494 0.568721 -5.864590 -1.035941 4.902190 -1.987189 0.968564 -3.396368 4.473584 0.367637 -2.598121 -4.336175 -2.743405 1.920411 0.547395 2.938933 -0.848243 -1.979693 -4.806067 3.250185 3.254210 -0.070703 2.718718 1.556486 1.971381 1.010527 3.559191 -3.347551 3.514952 -9.446195 1.617351 -1.356524 1.829169 -2.137837 1.396475 3.402891 1.651103 3.440471 -7.099942 7.724446 2.194304 -2.328096 -4.487871 3.247943 0.691095 -1.970556 -1.128857 4.400783 -1.357030 -0.744919 -0.235000 2.080147 -0.759715 -4.296654 -2.940260 -1.340992 4.799215 -5.117267 2.217642 -1.545822 -3.313702 0.465663 1.514315 2.634770 1.771217 8.292476 4.458305 -1.767939 2.633216 -6.051613 2.146485 8.835083 3.962845 -5.203651 4.475605 -2.182971 -0.019490 1.936431 2.985048 2.872649 2.964367 -3.748194 -3.248822 0.709402 -0.883220 6.705884 2.235871 2.559173 -7.994261 3.423338 -0.024518 2.105317 9.844435 4.271890 -6.631518 1.484095 5.558779 -4.388668 -3.113435 1.256060 -2.046332 -1.697690 -1.760070 2.646085 3.116055 -4.807225 -6.865496 -1.707129 -5.356622 5.136359 -1.133414 -2.128473 0.829269 -6.269617 -0.023363 7.578411 0.986892 -2.659330 -1.872850 -4.715665 -2.122358 -8.122379 1.963083 3.064570 -2.482525 -1.985532 -4.134900 -1.333366 5.180269 -1.578053 -0.236404 -6.801067 -0.877238 4.277334 0.743314 2.156502 -5.987333 -1.094355 0.662560 0.276599 2.410220 -0.852655 2.112654 6.561117 -4.893119 3.030017 2.771555 -0.134524 2.604278 5.980200 -4.543443 8.297679 -0.691339 6.834332 0.281878 3.184322 -1.988124 1.571994 -0.627367 -1.140955 -0.727154 3.471708 -5.546925 -2.673252 2.873752 -2.456379 -4.383076 2.455605 5.023996 1.218646 1.050521 -0.171103 -1.781556 -1.488998 -2.232984 1.137935 4.544767 -1.508119 -5.812827 1.008416 4.836101 -2.388628 -2.288696 1.855145 3.314166 6.394799 -6.422056 4.810132 -0.315917 0.071543 -6.829736 -5.185633 3.517539 -3.395802 -2.205099 2.751270 -7.826827 -3.566109 -3.353449 5.057551 -4.809639 1.046169 0.202868 6.027041 2.492443 -0.706234 4.466341 -1.031669 3.295273 -0.070034 -0.412413 1.461853 5.959608 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.434279 0.315502 -0.050987 -0.429076 0.841458 -0.316064 -0.073990 0.532902 0.211497 0.510831 -0.554937 0.093308 -0.031659 -0.526010 0.051970 0.036748 0.030772 0.580767 -0.180741 0.103322 0.316718 0.014380 0.122034 -0.318576 -0.185650 -0.525716 -0.052117 0.152232 -0.043117 -0.054586 -0.103570 0.121801 0.702556 -0.056163 0.525539 0.492522 0.294123 0.648935 0.293243 0.238531 0.288299 0.252589 -0.170831 -0.702109 0.215529 -0.221893 -0.349078 -0.424541 0.270585 -0.633922 0.682819 0.372083 0.031646 -0.202412 -0.420920 0.292042 0.335273 0.067401 0.599094 0.198429 -0.440707 0.131632 -0.378460 0.615745 -0.540973 0.295950 0.067094 -0.618786 -0.186178 0.426634 0.437940 -0.386093 -0.423966 0.064285 0.015082 -0.400121 0.180554 -0.160475 0.259362 -0.283678 -0.325227 0.204472 -0.179070 0.353309 -0.028805 0.113882 -0.478683 0.102542 0.133347 -0.425566 -0.214401 0.452753 -0.244688 0.234535 -0.207811 0.215149 0.287552 -0.248506 -0.043128 -0.276660 0.159795 -0.005359 0.229856 0.164683 -0.010459 -0.267736 0.315748 0.326297 -0.057939 0.251124 -0.046159 0.332845 0.194573 0.224897 0.009319 0.170453 -0.862130 0.232798 -0.082266 0.033254 -0.068437 0.080049 0.249519 0.123176 0.326368 -0.527948 0.622723 0.105453 -0.142428 -0.281615 0.267339 0.064629 -0.211019 -0.174814 0.346708 0.053701 -0.096556 0.000284 0.140869 -0.099655 -0.366292 -0.413067 -0.138170 0.340347 -0.342887 0.153263 -0.149402 -0.228311 -0.008145 0.142124 0.185605 0.193894 0.651822 0.431410 -0.051127 -0.106195 -0.596830 0.111277 0.641393 0.218851 -0.442339 0.390995 -0.176551 -0.081854 0.269031 0.313924 0.099866 0.325507 -0.259324 -0.321936 -0.142859 -0.191319 0.556304 0.248923 0.149919 -0.531944 0.263797 -0.017804 0.002279 0.947247 0.316709 -0.634408 0.032067 0.534504 -0.281558 -0.361677 0.158353 -0.183048 -0.181002 -0.172174 0.197397 0.261671 -0.449625 -0.518813 -0.013233 -0.481168 0.492838 -0.052907 -0.190996 0.066469 -0.573827 0.065017 0.771872 0.179847 -0.144538 -0.114855 -0.360152 -0.124478 -0.721589 0.098933 0.300700 -0.190820 -0.176144 -0.367210 -0.026679 0.459449 -0.250732 0.038957 -0.414699 -0.189655 0.362550 -0.048392 0.043475 -0.639498 -0.130826 -0.033128 0.071809 0.185009 -0.093955 0.220809 0.674124 -0.354698 0.230379 0.652247 -0.005433 0.134296 0.559001 -0.440669 0.639752 -0.150511 0.172603 0.168179 0.238109 -0.263443 0.007054 -0.085839 0.043189 -0.165528 0.282712 -0.487667 -0.161143 0.178330 -0.336730 -0.224158 0.264361 0.438146 0.199279 0.030622 -0.042278 -0.235557 -0.124924 -0.335315 0.034914 0.371954 -0.054119 -0.553140 0.180962 0.363523 -0.442319 -0.299966 0.120960 0.226490 0.525639 -0.544418 0.448526 0.084950 0.018254 -0.703120 -0.377214 0.189116 -0.322309 -0.318482 0.067317 -0.692692 -0.474958 -0.257278 0.399702 -0.510944 -0.031626 0.042402 0.562499 0.255216 -0.047987 0.394914 -0.142427 0.300082 0.117527 -0.098072 -0.007666 0.552935 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = -2.252397 1.667313 0.796470 -2.202248 3.590877 -1.076347 0.265129 1.460702 0.829305 2.163771 -2.866839 -0.384867 -1.035862 -2.677568 0.066258 -1.301922 -0.027045 2.730947 -1.068825 1.106441 1.940684 -0.422099 0.804282 -1.773223 -0.767977 -1.898791 -0.648423 0.509381 -0.467667 0.442702 0.674155 0.324555 3.210928 0.355955 2.243157 2.189844 0.629426 4.225800 0.445127 1.996859 0.915521 1.758022 -0.892743 -4.137073 1.836177 -1.559845 -1.536367 -2.720611 1.270111 -3.746652 2.859702 1.949298 0.209758 -1.200120 -2.116797 0.726366 2.529361 1.071702 2.871174 1.087976 -1.796719 1.130239 -2.302835 0.708233 -2.342691 1.975146 1.112027 -3.010484 -0.913842 1.523070 2.441674 -1.974260 -2.735438 0.175801 0.338185 -1.604548 0.873569 -0.892893 -1.111135 -1.026830 -1.746386 0.365330 -0.663440 1.907299 -0.586168 0.336711 -1.697036 0.303073 0.833878 -1.993182 -1.297833 2.546476 -0.477115 1.322330 -1.301945 1.149805 0.734606 -1.015938 -1.383861 -0.587144 0.769608 0.473945 1.198719 1.035443 -2.285807 -1.842671 2.135241 1.854385 -0.823315 0.602812 0.319385 1.438802 0.603601 1.012604 -1.324423 2.239371 -3.940240 0.873001 -0.293910 0.514756 -0.115803 0.570895 0.197015 0.043129 1.331476 -2.466336 3.221383 0.573343 -1.275651 -1.662708 1.572058 0.149831 -1.134647 -0.868607 1.850019 0.355073 -0.652013 -0.078227 0.047804 -0.808403 -1.033496 -2.164366 -0.613655 1.901390 -1.021988 0.600501 -1.023753 -1.686960 -0.019953 0.487218 0.572103 0.707271 3.061429 2.231327 -0.366720 -0.757236 -2.489887 0.541006 3.430697 1.667981 -2.400515 1.350668 0.148882 0.223111 1.439255 0.853511 0.920655 1.790323 -1.302001 -1.684802 -1.221491 -1.239177 2.605311 2.486786 1.093615 -3.297235 1.666861 -0.145714 0.197539 4.359929 1.970701 -2.582303 -0.358499 2.268624 -2.221019 -2.138968 0.386243 -0.038047 -0.672940 -0.582580 0.919022 0.887310 -2.120238 -3.225647 -0.482975 -2.621225 2.434387 -0.347971 -0.174345 0.127475 -3.160120 -1.136270 3.442219 0.508765 -1.261464 -0.575126 -1.549453 -0.359738 -3.533642 0.989715 1.498987 -0.938244 -1.712409 -1.725100 0.444907 2.034877 -1.303584 -0.141689 -0.486414 -1.564386 1.523964 -0.569131 0.992032 -3.646602 -0.864768 -0.271202 0.591330 1.584296 0.667708 0.794780 3.687382 -1.865791 0.792826 3.167601 0.182480 0.593954 3.200734 -1.742271 2.923901 -1.259844 1.927486 -0.072951 1.329925 -0.722247 0.058252 0.237502 0.387697 -0.357668 1.786841 -2.082631 -0.677771 0.791504 -2.098345 -0.522533 1.629284 1.832301 0.888810 0.275821 0.617175 -1.416055 -0.402737 -0.773752 -0.312885 2.223047 0.034584 -2.995273 0.143892 1.214461 -1.803454 -1.553984 0.752395 0.953540 2.502086 -2.532912 2.143482 -0.067735 -1.178960 -3.006261 -1.601268 1.118303 -2.164450 -1.934605 1.281337 -2.716266 -1.278080 -1.406840 2.155018 -1.863143 -0.406731 -0.418602 2.247062 1.745501 0.234147 2.034988 -0.383565 2.159533 0.341847 -0.853534 0.311873 3.304854 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -2.760724 2.132217 0.806587 -2.719039 4.755267 -1.166155 0.381052 1.980518 0.315274 2.790479 -3.476014 -0.004289 -1.113948 -3.490117 0.116156 -1.362230 -0.040589 3.152524 -1.190295 1.486225 2.300845 -0.765844 1.023167 -2.096044 -1.028418 -2.567447 -0.640090 0.708269 -0.081807 0.397192 0.774066 0.296085 3.894725 0.210711 2.658088 2.646806 0.940467 4.919835 0.673993 1.613839 1.038623 2.068672 -1.159849 -4.926161 2.095717 -1.901437 -2.139934 -3.133663 1.603495 -4.502503 2.841538 2.498817 0.188473 -1.507376 -2.673181 1.206289 3.270008 0.789771 3.636512 1.245739 -2.170576 0.753771 -2.788421 1.200741 -2.765109 2.134940 1.167842 -3.611191 -0.980737 1.942885 2.483368 -2.349432 -3.162333 0.399434 0.590940 -2.159149 1.013826 -1.170706 -1.478672 -1.599338 -2.023914 0.502944 -0.874940 2.470702 -0.565289 0.524105 -1.715917 0.439830 0.910758 -2.677001 -1.472669 3.212695 -0.673968 1.376208 -1.747157 1.715865 0.936959 -1.243668 -1.799562 -0.857386 0.934098 0.574144 1.491442 0.527026 -2.322037 -2.494682 2.281892 1.990995 -0.754234 1.051807 0.343042 1.683602 0.737943 1.430551 -1.793725 2.467377 -4.834619 1.001340 -0.364032 0.700582 -0.368762 0.702630 0.503303 0.211219 1.822492 -3.284725 3.945948 0.701714 -1.427969 -2.309754 1.823388 0.143450 -1.333089 -0.946689 2.213787 0.227151 -0.721011 -0.139554 0.256547 -0.816841 -1.628875 -2.598683 -0.632627 2.721783 -1.834453 0.831548 -1.188776 -1.917528 -0.021229 0.676108 0.929778 0.989802 3.883937 2.774721 -0.416687 -0.027070 -3.155355 0.788816 4.391394 2.313257 -2.989913 1.828396 -0.243942 0.160085 1.668217 1.093180 1.259267 2.161042 -1.940191 -2.184154 -0.823400 -1.368021 3.305099 2.780568 1.339175 -4.092746 2.245135 -0.156461 0.254653 5.281626 2.349476 -3.384225 0.156664 2.836740 -2.676480 -2.322173 0.579077 -0.403608 -0.934215 -0.769313 1.076312 1.228365 -2.604253 -3.872225 -0.752271 -3.189587 3.116901 -0.415207 -0.299310 0.267751 -3.619203 -1.335892 4.108196 0.634859 -1.515278 -0.877310 -1.961827 -0.887244 -4.327578 1.154787 1.781473 -1.358638 -2.077241 -2.304475 0.239603 2.556901 -1.458446 -0.048508 -1.510766 -1.639604 1.931430 -0.199289 1.231105 -4.319751 -1.002086 -0.272401 0.637182 1.783966 0.487576 1.236340 4.429571 -2.381830 1.231143 3.199034 0.078204 0.935344 3.787228 -2.252453 3.710510 -1.225928 2.874515 -0.011895 1.686501 -0.999375 0.228982 0.203049 0.221766 -0.403264 2.123252 -2.657117 -0.946639 1.144633 -2.426668 -1.049794 1.871896 2.264777 1.124530 0.342944 0.564602 -1.564589 -0.619915 -1.099929 -0.264155 2.673894 -0.269734 -3.568679 0.273270 1.605030 -2.018850 -1.753327 0.940720 1.327390 3.017254 -3.219237 2.603010 -0.182616 -1.182228 -3.788444 -2.279968 1.466100 -2.525967 -2.389353 1.710838 -3.656866 -1.517714 -1.789055 2.515473 -2.658664 -0.510058 -0.423012 2.959962 1.818600 0.221358 2.543048 -0.534031 2.522542 0.249289 -0.714918 0.389088 3.825149 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.449413 0.316615 -0.045466 -0.372739 0.875420 -0.293206 -0.091625 0.649573 0.151181 0.574567 -0.486490 0.073072 -0.036473 -0.510866 0.044705 0.058158 0.030961 0.591345 -0.156173 0.121426 0.327551 0.028651 0.101099 -0.238659 -0.207784 -0.491712 -0.076434 0.167659 0.021451 -0.117919 -0.128092 0.131418 0.761586 -0.044665 0.656529 0.540086 0.321388 0.605574 0.322562 0.234974 0.174677 0.265723 -0.242006 -0.677085 0.215219 -0.227352 -0.373392 -0.403438 0.269098 -0.578709 0.728517 0.418140 -0.029212 -0.103149 -0.351086 0.289796 0.224748 0.049697 0.655412 0.181656 -0.505661 0.112439 -0.414404 0.699308 -0.477572 0.296265 0.004853 -0.675430 -0.140113 0.324682 0.478765 -0.470011 -0.382549 0.233775 0.013219 -0.435167 0.197115 -0.177043 0.258604 -0.356346 -0.423109 0.223731 -0.193308 0.369733 -0.009329 0.136711 -0.527410 0.164548 0.036758 -0.571068 -0.089343 0.507085 -0.330505 0.263493 -0.283036 0.182898 0.228688 -0.128871 -0.061814 -0.288440 0.190719 -0.030228 0.255293 0.144299 0.094441 -0.286863 0.284818 0.252201 0.020518 0.269290 0.035568 0.335442 0.342837 0.366268 -0.008414 0.145600 -0.815153 0.305389 -0.131233 0.045669 -0.068456 0.154657 0.264365 0.136912 0.429757 -0.608059 0.507206 0.085456 -0.149952 -0.378563 0.220287 -0.071802 -0.217972 -0.230672 0.386099 0.024916 -0.119298 -0.110729 0.129642 -0.075350 -0.433756 -0.455528 -0.112148 0.322854 -0.392745 0.154691 -0.164691 -0.243897 -0.030309 0.231389 0.279391 0.333667 0.695485 0.480683 -0.052114 -0.148706 -0.660437 0.061552 0.622148 0.233861 -0.495366 0.488198 -0.257638 -0.133245 0.282598 0.394079 0.175753 0.293049 -0.269903 -0.344002 -0.083350 -0.059244 0.624987 0.256134 0.158919 -0.423559 0.247781 -0.033954 -0.154846 0.992485 0.272127 -0.650144 0.015250 0.446811 -0.211288 -0.330721 0.231425 -0.305073 -0.196831 -0.194458 0.160772 0.311881 -0.465058 -0.440523 0.121026 -0.532509 0.567806 -0.064420 -0.160778 0.120094 -0.653191 0.043536 0.824309 0.207147 -0.156031 -0.169911 -0.405328 -0.104123 -0.670850 0.115713 0.289459 -0.131179 -0.200284 -0.433408 -0.042001 0.467887 -0.120411 0.147356 -0.451243 -0.209090 0.381307 -0.152961 0.075676 -0.712308 -0.135417 -0.080003 0.050696 0.212483 -0.106235 0.277581 0.730653 -0.363869 0.238496 0.695785 0.001520 0.108006 0.484635 -0.553209 0.685838 -0.130267 0.147699 0.182126 0.241890 -0.303081 0.009090 -0.070597 0.138354 -0.148235 0.288588 -0.404508 -0.174448 0.125419 -0.417348 -0.244203 0.136607 0.373296 0.119220 0.077171 -0.116296 -0.307089 -0.165360 -0.391332 0.071915 0.411188 -0.077868 -0.501525 0.287630 0.248158 -0.379813 -0.227489 0.120321 0.220590 0.522790 -0.611722 0.332565 0.083146 0.076469 -0.692580 -0.411355 0.115798 -0.337148 -0.323578 0.063594 -0.715894 -0.432267 -0.310805 0.281388 -0.544771 -0.037021 0.080479 0.684129 0.280903 -0.140630 0.390787 -0.167248 0.334458 0.140398 -0.080517 -0.008251 0.580523 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.585231 0.364322 0.044151 -0.570672 1.155175 -0.548706 -0.067206 0.748253 0.241667 0.669483 -0.645202 0.107907 -0.165924 -0.868968 0.102052 -0.155543 0.171164 0.838222 -0.196953 0.290995 0.457667 -0.079070 0.177385 -0.360911 -0.262187 -0.748089 -0.016770 0.257220 -0.091330 -0.055562 0.090307 0.295798 1.043201 0.047383 0.792331 0.694745 0.302891 0.990696 0.460473 0.268164 0.328383 0.306529 -0.171141 -1.045139 0.366847 -0.215485 -0.540001 -0.626510 0.357269 -0.925299 0.677996 0.583016 0.029513 -0.195195 -0.671601 0.292182 0.494811 0.139037 0.786839 0.299879 -0.625700 0.074862 -0.531434 0.555390 -0.702715 0.179264 0.128539 -0.818010 -0.111284 0.613363 0.459498 -0.480614 -0.528920 0.081605 0.142964 -0.535960 0.260504 -0.125391 0.006319 -0.356069 -0.472012 0.253573 -0.200246 0.534903 -0.044925 0.218015 -0.472928 0.086944 0.136421 -0.631123 -0.168657 0.633284 -0.343835 0.259737 -0.328387 0.492707 0.386729 -0.363053 -0.190786 -0.439042 0.240219 -0.161299 0.346642 0.233899 -0.303198 -0.399576 0.443143 0.301911 -0.037003 0.436654 0.009382 0.451914 0.249371 0.311744 -0.235614 0.390509 -1.213467 0.401636 -0.165958 0.033530 -0.121459 0.106688 0.315195 0.223675 0.424124 -0.811763 0.845111 0.221733 -0.090621 -0.452108 0.371007 0.100484 -0.220323 -0.316580 0.618824 -0.018672 -0.091255 0.017724 0.145875 -0.070728 -0.385660 -0.541180 -0.239878 0.622677 -0.468637 0.269246 -0.222630 -0.400224 0.001019 0.091670 0.260046 0.325179 0.890165 0.582240 -0.177817 -0.006722 -0.875463 0.120782 0.948591 0.348074 -0.598555 0.607970 -0.149012 -0.115989 0.288597 0.457801 0.292099 0.279916 -0.384556 -0.491361 -0.121493 -0.151197 0.745036 0.358728 0.178095 -0.843581 0.372700 0.044087 0.055802 1.309685 0.393898 -0.848353 0.073896 0.767037 -0.605118 -0.529430 0.191862 -0.266961 -0.206417 -0.247879 0.349844 0.395665 -0.674054 -0.660959 -0.018052 -0.661638 0.545970 -0.112840 -0.201203 0.061718 -0.792992 -0.104361 1.120568 0.192816 -0.148339 -0.172532 -0.651210 -0.147092 -1.015473 0.119944 0.341805 -0.225420 -0.177084 -0.476215 -0.137477 0.671236 -0.261120 0.077618 -0.611992 -0.186721 0.534902 -0.018953 0.003467 -0.866473 -0.189429 0.097306 0.073732 0.216801 -0.031022 0.280533 0.847804 -0.496808 0.332002 0.713900 -0.053420 0.341219 0.694038 -0.673516 0.944692 -0.222176 0.517213 0.244792 0.315287 -0.349522 0.008861 -0.076317 -0.006205 -0.313862 0.397141 -0.668555 -0.235464 0.338288 -0.388157 -0.426738 0.277498 0.644743 0.249962 0.088721 0.013716 -0.322499 -0.158816 -0.427231 0.197613 0.493788 -0.064179 -0.668577 0.289879 0.584105 -0.479312 -0.442446 0.188769 0.350431 0.710827 -0.789139 0.601530 0.081449 0.031123 -0.800588 -0.629991 0.426252 -0.557035 -0.420289 0.090835 -1.056698 -0.556426 -0.339537 0.618618 -0.673325 0.086394 0.030998 0.819706 0.310090 -0.075698 0.552870 -0.196198 0.298344 0.059517 -0.047778 0.004026 0.860891 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -1.007541 0.733824 0.159662 -0.925011 2.653184 -0.654446 0.212402 1.077599 -0.386754 1.636772 -0.867737 -0.143947 -0.156946 -1.832556 0.302468 -0.515796 -0.093697 1.076068 -0.100502 0.786931 0.635075 -0.536098 0.129624 -0.184228 -0.655164 -1.521470 -0.403261 0.760130 1.179269 -1.088883 0.128006 0.290804 2.102046 -0.490299 1.839815 1.418344 0.782425 1.145826 0.608009 -0.820286 0.185271 0.594363 -0.853727 -1.220428 0.041330 -0.235605 -1.576274 -0.758004 0.710710 -0.723144 0.135968 1.361631 -0.248684 -0.035937 -1.092889 1.279128 0.592598 -0.142929 1.712829 0.351442 -0.706838 0.000210 -1.593822 1.846495 -0.873670 0.167032 -0.819457 -1.520248 0.064860 0.571342 0.063270 -1.116849 -0.678326 1.201489 0.835368 -1.324345 0.365295 -0.600442 -0.624485 -1.587611 -1.172656 0.756861 -0.438299 1.303535 0.162218 0.509395 -0.085375 0.636749 -0.378042 -1.975599 0.088173 1.714006 -0.943249 -0.310275 -0.770913 1.091808 0.630840 -0.053009 -0.586928 -1.038213 0.449818 -0.490866 0.737896 -0.548205 0.954426 -1.107158 -0.270211 0.021077 0.431607 1.225410 0.528248 0.561506 0.967975 1.353888 -0.992528 -0.229098 -1.752689 0.748639 -0.745234 0.318355 -0.518569 0.713170 0.660274 0.811339 1.410941 -2.223501 0.819118 0.016176 -0.124056 -1.377910 0.131681 -0.341209 -0.590973 -0.546861 0.879009 -0.100410 -0.198136 -0.392602 0.469200 0.436353 -0.717200 -0.485640 0.244707 1.401330 -1.630266 0.461153 -0.242056 -0.490574 -0.257844 0.830033 1.394318 1.283677 2.034230 1.393194 -0.170374 0.685542 -2.077448 0.190498 1.728995 0.004105 -1.196557 1.771918 -1.308052 -0.554368 0.381592 1.519538 0.880193 0.286086 -1.122754 -0.932722 0.696721 0.363008 1.793549 -0.047105 -0.069599 -0.926954 0.944516 -0.009460 -0.754324 2.296272 0.612672 -1.663105 0.736488 0.982335 -1.043359 -0.817456 1.015693 -1.539696 -0.370756 -0.706546 0.410250 1.046160 -0.807332 -0.470146 0.208385 -1.228261 1.444730 -0.446577 -0.849593 0.617046 -1.098859 -1.089133 1.986820 0.179556 -0.173734 -0.956653 -1.379157 -0.446562 -1.505696 0.347118 0.334314 -0.507969 -0.521884 -1.326044 -0.261652 1.477426 0.013688 0.975464 -2.101882 -0.144348 0.913144 0.627582 0.611939 -0.956590 -0.139136 0.070814 -0.075115 -0.014688 -0.603003 0.952692 1.985254 -1.047490 0.778619 0.166976 -0.941212 0.589431 0.829630 -1.909417 2.064799 0.275957 1.161056 0.265474 0.442970 -0.768836 0.071338 0.121074 -0.206566 -0.324139 0.316976 -0.714206 -0.523959 0.275467 -1.015719 -1.306765 -0.072988 0.939320 -0.070052 0.434310 -0.329895 -0.809574 -0.414774 -0.885566 0.458458 0.965717 -0.229563 -0.652940 1.222234 0.627917 -0.182085 -0.230154 0.044960 0.713077 1.095921 -1.765991 0.402256 -0.091749 0.875771 -1.377476 -1.884781 0.394796 -1.167422 -0.588997 0.353808 -1.901715 -0.760977 -1.062910 0.312949 -1.675594 -0.204237 0.706204 2.116603 0.590002 -0.780319 0.744840 -0.592147 0.778602 -0.077564 0.028787 0.384828 0.984730 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -2.003256 0.833146 0.345343 -1.854099 4.473149 -0.981989 -0.055263 2.558363 -0.131093 2.656643 -1.882769 -0.190966 -0.857470 -3.163592 0.354390 -0.852410 0.056447 2.071085 -0.799475 1.190131 1.711079 -0.350149 0.597602 -0.810191 -0.974374 -1.965896 -0.605086 0.949702 1.000352 -0.705130 0.151580 0.397099 3.562203 -0.147499 2.940015 2.283930 1.548679 3.025794 0.597329 0.348225 0.231076 1.533022 -1.360793 -3.122493 1.060255 -1.140924 -2.345369 -1.753877 1.390425 -2.398832 1.504781 2.405171 -0.192486 -0.384195 -1.802109 1.453438 1.191178 0.112863 3.011515 0.939082 -1.952167 -0.131109 -2.801145 2.129093 -1.757290 1.422392 -0.135685 -2.676359 -0.528492 0.983002 1.205616 -2.175092 -1.858948 1.432143 1.008819 -1.985575 0.993650 -0.949885 -0.350856 -1.959844 -2.089953 0.893901 -0.901449 2.194198 -0.158186 0.735247 -0.754263 0.781472 -0.159723 -3.150535 -0.130110 2.750936 -1.466849 0.401563 -2.192720 1.362128 0.257193 -0.193059 -1.342845 -1.194702 0.902562 -0.037642 1.390648 -0.391928 -0.148137 -2.025032 1.025553 0.694722 0.355478 1.243218 0.721459 0.804695 1.217628 2.114019 -1.319354 1.184116 -3.474255 1.195295 -0.961166 0.821776 -0.865865 1.152055 1.189061 0.734065 2.066953 -3.409389 2.143305 0.371087 -0.919441 -2.219806 0.941156 -0.588766 -1.196376 -0.875332 2.015693 -0.180201 -0.658397 -0.661698 0.836482 0.085122 -1.717278 -1.452162 -0.211093 1.711646 -2.104919 0.665130 -0.842206 -1.405347 -0.199657 1.192444 1.695979 1.836282 3.489757 2.359580 -0.487952 0.273670 -3.273195 0.497211 3.345676 0.756788 -2.403612 2.401593 -1.444447 -0.220135 0.961566 1.951562 1.561616 1.195298 -1.389394 -1.267608 0.426110 0.244641 3.118861 1.282413 0.813057 -2.332879 1.041106 -0.605444 -0.522164 4.101354 1.669277 -2.976061 0.519711 1.752149 -1.414919 -1.538783 1.052341 -1.534837 -0.579445 -1.160371 0.970558 1.670818 -1.975098 -1.892860 0.280496 -2.452285 2.571719 -0.655407 -0.578522 0.807520 -2.862660 -1.199890 3.529618 0.370087 -0.904126 -1.332935 -2.287606 -0.775037 -3.031563 0.996369 0.984907 -0.626359 -1.227697 -2.185144 -0.265347 2.464270 -0.145041 0.950941 -2.524397 -0.678717 1.642222 -0.161548 1.360745 -2.755934 -0.595513 -0.334117 -0.002628 1.150832 -0.522143 0.960324 3.618136 -2.013355 1.437006 1.589510 -0.513725 0.495076 2.162268 -2.768210 3.506755 -0.078136 2.134274 0.036327 1.187289 -1.122820 0.268938 0.077281 0.154550 -0.195553 1.254864 -1.515368 -0.917697 0.593775 -2.137421 -1.569235 0.400088 1.617068 0.088547 0.705009 -0.222592 -1.478411 -0.786686 -1.487171 0.619957 2.195576 -0.600057 -1.965497 1.265958 1.027130 -1.121435 -0.678219 0.534311 1.105353 2.521242 -3.035891 1.059796 -0.044885 0.398222 -2.652758 -2.535820 0.591519 -1.796860 -1.276174 1.038831 -3.073522 -1.333362 -1.774674 1.238144 -2.501036 -0.337284 0.292694 3.155704 1.500376 -0.586845 1.678599 -0.553800 1.675629 0.056169 -0.368460 0.777252 2.446143 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = -1.718950 1.292989 0.746898 -2.135974 3.488938 -1.410247 -0.045530 2.038547 0.470627 1.887983 -2.056586 0.531303 -0.382379 -2.736936 0.238454 -1.227020 0.223124 2.308679 -0.602980 1.589111 1.396706 -0.555751 0.571046 -1.199842 -0.932779 -2.049296 -0.020702 0.840108 -0.237249 -0.060823 1.114255 0.632007 2.844904 0.209716 2.377895 1.994456 0.775211 3.114400 0.965610 0.836063 0.917034 0.809124 -0.407418 -3.135775 1.112589 -0.584838 -1.916077 -1.950412 0.907701 -3.094419 1.471326 1.922834 0.106362 -0.831001 -2.059449 1.023740 1.750631 0.255999 2.235198 0.893493 -1.933965 0.168351 -1.952262 0.959579 -1.847668 0.614478 0.601642 -2.156779 -0.083174 1.848457 1.174197 -1.357657 -1.648168 0.278849 0.775588 -1.620370 0.825514 -0.704503 -0.888010 -1.005197 -0.837501 0.794140 -0.235887 1.573876 -0.140974 0.899807 -0.872977 0.346120 0.157259 -1.981553 -0.495340 1.984404 -1.026369 0.387377 -1.470795 1.951480 0.993313 -1.118698 -1.088663 -1.228151 0.897199 -0.345647 1.035787 0.251408 -1.480430 -1.655816 1.342337 1.143464 -0.257400 1.326574 -0.268586 1.590969 0.769298 1.043073 -1.318146 1.883640 -3.537928 0.845986 -0.617639 0.348991 -0.476977 0.269917 0.749731 1.094713 1.168071 -2.353419 2.810066 0.771047 -0.427449 -1.511263 1.159483 0.252785 -0.554980 -0.939318 1.686659 -0.034365 -0.164167 0.110737 0.289595 -0.224888 -0.793982 -1.904167 -0.444154 1.973370 -1.253334 0.895183 -0.552443 -1.049068 -0.024859 0.280025 0.999170 0.674971 2.731085 1.529904 -0.311027 0.281006 -2.308728 0.259287 2.946553 1.183110 -1.843406 1.965402 -0.343908 -0.342711 0.572567 1.212291 1.011567 0.850216 -1.749073 -1.981069 -0.060340 -0.632303 2.138085 1.219365 0.258654 -2.973119 1.563523 -0.115125 0.199992 3.859564 1.446987 -2.386060 -0.097380 2.266316 -2.175450 -1.813266 0.581745 -0.600884 -0.556504 -0.307665 1.040316 0.836255 -1.677774 -2.364379 -0.369426 -2.054716 1.583193 -0.409582 -0.445955 -0.283882 -2.065142 -1.091017 3.231548 0.319165 -0.872281 -0.419060 -1.788551 -0.224065 -3.031388 0.338863 1.131441 -0.656937 -0.731515 -1.327590 -0.280612 1.700952 -1.048080 0.046440 -1.810381 -1.004348 1.570146 -0.097466 0.149610 -2.572689 -0.538623 0.025211 0.384993 0.675913 0.132316 0.934707 2.858577 -1.321294 1.201468 1.606954 -0.607999 1.086729 2.387364 -2.026954 3.091702 -0.640734 2.131028 0.520672 0.944911 -0.999882 0.013006 -0.062582 -0.407501 -0.700826 1.255728 -1.886946 -0.698140 0.750358 -1.065980 -1.245147 1.019778 1.912972 0.397202 0.374414 0.534997 -0.880271 -0.706305 -1.299397 0.506301 1.411888 -0.347288 -1.919902 0.715495 1.956365 -1.047224 -1.182294 0.536611 1.222261 2.172629 -2.391487 2.028320 0.076532 -0.293576 -2.366159 -1.930894 1.573125 -2.078693 -1.294011 0.157093 -3.041857 -1.445986 -1.068270 1.929513 -1.677863 0.065867 0.307692 2.485609 1.111439 -0.397141 1.613572 -0.823113 1.116456 0.150973 0.024821 0.081716 2.614017 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -1.698666 1.915074 1.810393 -2.105985 2.611603 -0.722715 -0.011790 1.535342 0.255754 1.823061 -2.236872 -0.008855 -0.639614 -2.544959 0.164251 -1.927009 -0.237692 1.809728 -0.394884 1.958759 1.507911 -1.070539 0.427277 -1.328762 -0.934789 -1.698565 -0.190826 0.598902 0.108886 0.218220 1.692558 0.327034 2.616385 0.544674 2.443144 1.839305 0.469398 3.410720 0.684486 1.152793 0.203367 1.203531 -0.717759 -3.104215 1.343072 -0.950932 -1.211307 -1.916734 0.687663 -2.709996 1.719928 1.930543 -0.018416 -0.940338 -2.072605 0.716420 1.623694 0.692684 2.379067 0.826711 -1.488487 0.099185 -2.396962 0.374474 -1.740388 1.084993 0.692017 -1.696076 0.324864 1.040778 1.233598 -0.941119 -1.739580 0.728206 0.663770 -1.615000 0.909775 -1.019312 -2.233518 -0.715957 -1.030902 0.810875 0.098274 1.753560 -0.298389 0.815539 -0.798248 0.700994 0.009348 -2.226330 -0.477427 1.893345 -0.936808 0.230049 -1.281802 2.189443 0.403273 -0.575736 -1.395413 -0.478722 1.200036 0.043148 1.027010 -0.254894 -1.697700 -2.327186 1.992764 1.395200 -0.589710 0.979897 0.608141 1.843826 1.176852 1.431907 -1.797604 1.929046 -3.116775 0.304875 -0.103715 0.413165 -0.373965 0.665311 -0.352985 0.699501 1.306887 -2.438619 2.567539 0.835803 -0.757169 -1.486879 1.029231 -0.315459 -0.737232 -1.112836 1.555176 0.341579 -0.354291 -0.136123 -0.271559 -0.319768 -0.650326 -2.270793 -0.071084 2.249921 -1.018565 0.613494 -0.667965 -1.179929 -0.194128 0.607751 1.053596 0.730919 2.346996 1.520159 -0.130406 -0.444240 -1.891078 0.102314 2.826892 1.000273 -2.203653 1.931330 -0.353626 -0.314055 0.619179 0.949352 1.328947 1.058151 -2.108864 -2.610611 -0.118179 -0.759331 2.197626 1.599897 0.341877 -2.693340 2.341317 -0.191937 -0.474358 3.659054 1.246670 -1.675866 -1.058196 1.773885 -2.717494 -1.833407 0.703937 -0.368255 -0.042609 -0.227318 0.529594 0.706857 -1.435109 -2.528626 -0.552673 -2.386350 2.120005 -0.340809 0.439463 -0.556424 -2.086311 -2.075369 2.986435 0.108832 -1.340551 -0.746400 -1.421711 -0.254269 -2.764026 0.615541 1.218660 -0.507167 -1.346016 -1.500971 0.127420 1.152959 -1.041175 -0.084054 -1.160044 -1.789742 1.377209 -0.555714 0.522769 -2.237650 -0.694757 -0.134166 0.440610 1.247533 0.595793 1.521477 3.362526 -1.182921 1.486088 1.873399 -0.564120 0.808544 2.603390 -1.929481 3.009338 -1.262933 1.682919 0.012473 1.068844 -0.974783 -0.152362 0.441901 -0.486603 -0.205257 1.132238 -1.271653 -0.520975 -0.059785 -1.669444 -0.606344 1.018865 1.271719 0.320011 0.453388 1.045891 -0.890936 -0.861510 -1.030532 0.172372 1.697698 -0.083921 -1.686249 0.582971 1.163350 -0.458297 -0.941100 0.524746 0.924152 2.095769 -2.409917 1.632487 -0.195284 -0.940248 -2.217948 -1.673725 1.160151 -2.189389 -1.391867 0.714840 -2.685799 -0.560459 -1.255952 1.499035 -1.216028 0.009155 0.186425 2.385166 1.320412 -0.836931 1.473842 -0.867474 1.808373 0.531402 -0.349856 0.121970 2.670709 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.395785 0.176556 -0.321013 -0.275196 1.086031 -0.402056 -0.058126 0.794062 -0.164837 0.564257 -0.389170 0.334634 -0.008707 -0.673071 0.150511 0.350856 0.245604 0.516037 -0.093686 0.015343 0.237969 -0.031753 0.109884 -0.160997 -0.194397 -0.687994 0.093380 0.227525 0.196065 -0.174280 -0.314403 0.280802 0.802972 -0.152026 0.511536 0.474201 0.453467 0.445229 0.535064 -0.361540 0.280745 0.141718 -0.153443 -0.592368 0.118907 -0.133502 -0.496872 -0.232276 0.313518 -0.466352 0.342843 0.412295 -0.001031 -0.070004 -0.481820 0.397132 0.308154 -0.253024 0.628282 0.185339 -0.491754 -0.353214 -0.215587 0.961013 -0.495097 -0.048760 -0.130342 -0.630917 -0.117738 0.543980 0.123619 -0.352015 -0.271820 0.117349 0.100661 -0.475051 0.175085 0.009877 0.454731 -0.491345 -0.431691 0.255330 -0.319167 0.455368 0.076390 0.151558 -0.321482 0.038222 0.092758 -0.533224 -0.055918 0.448013 -0.378126 0.174539 -0.308240 0.313815 0.318074 -0.256570 -0.032965 -0.534486 0.129125 -0.185341 0.234015 -0.171536 0.350488 -0.235367 0.095197 0.011882 0.217831 0.538693 0.031466 0.205573 0.172572 0.268042 0.031136 -0.158292 -0.875997 0.361896 -0.072606 -0.040287 -0.237568 0.063837 0.518227 0.167575 0.433042 -0.741222 0.515627 0.130709 0.046850 -0.355604 0.166640 0.085972 -0.172625 -0.155564 0.464981 -0.139596 -0.032944 0.010471 0.318871 0.074965 -0.642506 -0.254043 -0.218362 0.560867 -0.753375 0.206379 -0.129972 -0.205160 -0.007460 0.144040 0.277368 0.391406 0.642423 0.451453 -0.172451 0.423061 -0.809920 0.226175 0.741722 0.323787 -0.431368 0.515461 -0.477023 -0.134556 0.216059 0.425352 0.186937 0.115539 -0.253866 -0.203168 0.250792 0.070339 0.622319 -0.003106 0.174072 -0.506550 0.147127 0.037427 0.060167 0.914856 0.175804 -0.799724 0.455630 0.628051 -0.196040 -0.115304 0.205500 -0.530871 -0.285391 -0.362097 0.258394 0.495699 -0.583405 -0.241486 0.054636 -0.397254 0.439504 -0.044737 -0.319508 0.195409 -0.476673 0.273090 0.811720 0.197013 0.097025 -0.210525 -0.562486 -0.393703 -0.728371 0.005484 0.184261 -0.237280 -0.003137 -0.462660 -0.364901 0.643047 -0.048368 0.187928 -1.056601 0.229240 0.436824 0.259292 -0.077197 -0.515525 -0.103548 0.171718 -0.069574 0.000000 -0.395090 0.271256 0.382479 -0.439919 0.372229 0.276895 -0.035576 0.297545 0.280485 -0.514764 0.673327 0.061907 0.445887 0.324112 0.261880 -0.373306 0.083438 -0.227241 -0.012834 -0.351421 0.226313 -0.598648 -0.222094 0.403663 -0.163727 -0.623665 0.069424 0.500384 0.286886 0.009377 -0.310145 -0.093634 -0.149708 -0.460693 0.302832 0.294819 -0.259601 -0.381573 0.341658 0.464415 -0.403687 -0.204103 0.152954 0.301785 0.509402 -0.610134 0.343030 0.103811 0.377839 -0.676067 -0.653913 0.239628 -0.180120 -0.261867 0.122134 -1.007735 -0.541514 -0.233528 0.363588 -0.788408 0.115467 0.072835 0.714384 -0.068833 -0.067015 0.428718 -0.097169 0.005937 -0.059319 0.146299 -0.014166 0.390985 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.154576 -0.042833 -0.523695 -0.018400 0.424576 -0.242100 -0.167299 0.375343 0.050495 0.219693 -0.107374 0.019667 0.017234 -0.351651 0.110549 0.554882 0.235017 0.256379 0.000000 -0.110413 0.092325 -0.048689 0.027034 -0.031981 -0.028660 -0.140497 0.057287 0.105436 0.101636 -0.245013 -0.443566 0.211052 0.389763 -0.006431 0.265091 0.195988 0.181986 0.164089 0.430910 -0.301217 0.099833 0.075737 -0.058457 -0.263947 0.089011 -0.063188 -0.101945 -0.077841 0.140056 0.018482 0.459480 0.159101 -0.008105 0.047021 -0.295297 0.005177 0.085197 -0.016251 0.308220 0.101249 -0.161425 -0.133048 0.046793 0.484691 -0.262297 -0.121415 -0.021372 -0.270944 -0.038504 0.228524 0.192486 -0.284181 -0.165806 0.038705 -0.049014 -0.184198 0.133287 0.101000 0.598300 -0.347098 -0.366801 0.122665 -0.311100 0.247506 0.018853 0.036816 -0.332374 -0.022072 0.067271 -0.219480 0.023287 0.003184 -0.204668 0.218188 0.101248 0.170206 0.099554 -0.085931 -0.010453 -0.261299 0.035393 -0.143531 0.091854 0.181194 0.421868 0.055415 0.116542 -0.118415 0.140769 0.207934 0.378778 0.011273 0.120417 0.101653 0.179410 -0.379575 -0.356699 0.157658 0.065334 -0.060641 -0.085852 0.059955 0.324501 -0.117359 0.194420 -0.361143 0.144576 0.097156 0.121248 -0.094123 0.057403 0.012487 -0.115597 -0.079429 0.260955 -0.092825 -0.012197 0.009411 0.140632 0.069193 -0.504625 0.066383 -0.174392 0.310688 -0.349843 0.065682 -0.065215 -0.177265 0.010807 0.020532 0.082595 0.236061 0.245158 0.199204 -0.200622 0.074013 -0.400532 0.166048 0.359312 0.057504 -0.204691 0.203191 -0.227002 -0.021947 0.147903 0.253558 0.125142 -0.178738 0.093545 0.101917 0.165475 0.128176 0.263346 -0.254816 0.189180 -0.066025 -0.038152 0.307706 0.026865 0.519827 -0.171473 -0.352827 0.258189 0.286761 0.083670 0.149140 0.079405 -0.228811 -0.085732 -0.286260 0.186346 0.274696 -0.357349 -0.004712 0.049924 -0.155225 0.175338 -0.002349 -0.188782 0.161653 -0.288832 0.538638 0.471928 0.122403 0.143384 -0.077647 -0.306506 -0.119915 -0.295106 -0.019102 0.000508 -0.080184 0.136314 -0.198355 -0.232583 0.441487 0.047333 0.052522 -0.511596 0.275196 0.186642 0.077313 -0.133284 -0.168535 -0.066323 0.256054 -0.031517 -0.030589 -0.232471 0.076129 0.057677 -0.240386 0.020654 0.331028 0.330462 0.199460 0.018811 -0.205666 0.263567 -0.002873 0.136390 0.164019 0.137084 -0.174722 0.025279 -0.151970 0.205969 -0.230439 0.059610 -0.258904 -0.085900 0.290444 0.030609 -0.380762 -0.031848 0.213587 0.240733 -0.002330 -0.360961 0.042664 -0.012659 -0.143235 0.240128 0.116427 -0.056381 -0.112957 0.160441 0.197212 -0.110757 0.069144 0.088858 0.062162 0.290398 -0.261086 0.076635 0.088808 0.335000 -0.156158 -0.275708 0.035229 0.113920 0.084152 0.173318 -0.549502 -0.298595 -0.074153 0.142896 -0.345581 0.371674 -0.082786 0.319486 -0.027281 -0.073469 0.171355 0.012922 -0.104254 -0.039438 0.023396 -0.036339 0.162762 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -1.486742 0.790280 -0.601628 -1.281160 3.583163 -0.483186 0.194086 1.575627 -1.108031 2.006529 -1.467830 0.445707 -0.471645 -2.521843 0.323395 0.147020 0.282093 1.248403 -0.431432 0.830228 1.046497 -0.976864 0.692900 -0.644954 -0.678506 -1.994715 -0.038964 0.776580 1.364569 -0.355472 -0.299221 0.173260 2.343174 -0.496832 1.390165 1.355286 0.991427 1.940779 0.843374 -1.552411 0.392985 0.980972 -0.870048 -2.243916 0.658119 -0.903873 -1.947850 -1.144009 1.206372 -1.833416 0.053481 1.718486 -0.163054 -0.651869 -1.740525 1.344959 1.803665 -0.529694 2.403770 0.475584 -1.005822 -1.197214 -1.436984 1.925740 -1.341911 0.219327 -0.287881 -2.038300 -0.337711 1.238241 -0.154678 -0.994925 -1.189565 0.775434 0.976009 -1.631905 0.555322 -0.550280 -0.372456 -1.846765 -1.335886 0.483677 -1.048058 1.862307 0.020598 0.576757 0.011494 0.366770 0.156537 -2.154223 -0.236660 1.880078 -0.779000 0.152782 -0.995701 1.557951 0.638890 -0.619015 -1.210957 -0.965685 0.347551 -0.111979 0.975767 -1.191664 0.473506 -1.605965 0.327278 0.186695 0.716796 1.521472 0.630957 0.421324 0.421788 1.280814 -1.220291 0.143802 -2.490965 0.630700 -0.398940 0.479340 -0.877970 0.689643 1.281036 0.419650 1.638752 -2.681716 1.851842 0.340304 -0.212119 -1.674679 0.620855 -0.012938 -0.657435 -0.308238 1.367806 -0.598589 -0.277879 -0.228639 0.865492 0.267819 -1.911287 -0.340066 -0.208267 2.122252 -2.363592 0.708758 -0.515708 -0.916424 0.104577 0.629312 1.125088 1.250692 2.475423 1.790788 -0.508182 1.871107 -2.363410 0.980947 2.934513 1.136781 -1.742685 1.564642 -1.423470 -0.159251 0.709702 1.083227 1.238759 0.891564 -1.220536 -0.899498 0.933259 0.161894 2.245229 0.550302 0.769007 -2.105329 1.169491 -0.049350 0.279053 2.755762 0.959599 -2.459107 1.589943 1.725714 -1.628478 -0.385571 0.603756 -1.306916 -0.588747 -1.136082 0.751282 1.532363 -1.623383 -1.433968 -0.473833 -1.622067 1.902283 -0.364840 -0.678317 0.767121 -1.572057 -0.114209 2.250853 0.439958 -0.339999 -1.079599 -1.660420 -1.621737 -2.415251 0.489832 0.486670 -1.098135 -0.774588 -1.777154 -0.933526 1.933645 -0.027001 0.586319 -3.293725 0.454677 1.273601 1.225398 0.644068 -1.408502 -0.380933 0.377199 -0.233452 0.398063 -0.836397 1.031630 1.781529 -1.730432 1.200453 -0.006090 -0.268118 1.113498 1.327337 -1.697381 2.471561 0.253509 2.446601 0.203618 1.026874 -0.781713 0.589580 -0.196136 -0.486541 -0.428542 0.899376 -1.710033 -0.883375 1.347570 -0.890622 -1.951213 0.352452 1.397026 0.841362 0.356112 -0.539188 -0.645221 -0.534176 -0.878175 0.556005 1.333030 -0.755886 -1.408643 0.729075 1.132158 -0.602467 -0.738840 0.519384 0.993047 1.645722 -2.204816 1.061978 -0.198626 0.593086 -1.987949 -2.056520 0.774702 -0.822082 -1.031496 1.480504 -2.906023 -0.828722 -1.197578 1.021723 -2.206213 -0.040028 0.014075 2.306363 0.216392 -0.222790 1.512262 -0.322471 0.763889 -0.407429 0.259704 0.408537 1.377496 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.413770 0.198806 -0.267690 -0.311517 1.084875 -0.401023 -0.058832 0.785253 -0.182399 0.616186 -0.369054 0.372935 -0.034457 -0.673637 0.125290 0.273734 0.201221 0.539665 -0.097701 0.069598 0.253262 -0.055405 0.144765 -0.145143 -0.236856 -0.748498 0.116963 0.250724 0.211747 -0.160605 -0.228678 0.235711 0.804937 -0.185564 0.501724 0.469471 0.431326 0.477813 0.518807 -0.360799 0.265363 0.151211 -0.164815 -0.601356 0.126659 -0.126466 -0.511474 -0.251814 0.347169 -0.526191 0.270464 0.420106 -0.007073 -0.105530 -0.489663 0.445791 0.323250 -0.262523 0.652979 0.152604 -0.468053 -0.371088 -0.272963 0.956055 -0.521455 -0.071645 -0.146514 -0.624472 -0.102474 0.533175 0.063444 -0.300905 -0.244742 0.140064 0.132281 -0.507457 0.148917 -0.031604 0.350484 -0.479052 -0.394062 0.234749 -0.297789 0.443495 0.059548 0.187216 -0.271848 0.079318 0.066736 -0.555287 -0.046823 0.478257 -0.360409 0.141221 -0.299427 0.353855 0.330672 -0.287568 -0.045175 -0.478142 0.116738 -0.179974 0.266708 -0.237605 0.314531 -0.257942 0.076113 0.005857 0.226596 0.532592 -0.024735 0.222183 0.154086 0.296459 -0.009767 -0.098130 -0.911023 0.347732 -0.077987 -0.005194 -0.246341 0.089036 0.491841 0.205982 0.460633 -0.764114 0.545504 0.083994 0.060408 -0.389028 0.180328 0.131495 -0.127529 -0.167538 0.467523 -0.166567 -0.058023 -0.007708 0.334892 0.102466 -0.625158 -0.268828 -0.170778 0.560191 -0.740709 0.239186 -0.141715 -0.211760 0.027491 0.132133 0.293966 0.390567 0.666166 0.480011 -0.125678 0.466682 -0.816765 0.205188 0.722314 0.329420 -0.431477 0.536864 -0.471420 -0.165739 0.216217 0.432723 0.216708 0.187689 -0.286739 -0.272037 0.259246 0.080915 0.638376 0.024803 0.144418 -0.539642 0.169005 0.010672 0.092878 0.901478 0.216222 -0.801901 0.463523 0.597139 -0.271204 -0.159471 0.201655 -0.501038 -0.267274 -0.326281 0.248812 0.513289 -0.545633 -0.283219 0.019118 -0.401445 0.453728 -0.089172 -0.327786 0.218394 -0.480413 0.214208 0.746143 0.203131 0.055693 -0.247417 -0.576869 -0.438836 -0.748362 0.022767 0.184883 -0.250538 -0.039628 -0.479377 -0.359605 0.594533 -0.020261 0.180410 -1.094383 0.182984 0.455589 0.298811 -0.061842 -0.498344 -0.066194 0.157535 -0.058838 0.013868 -0.352229 0.298388 0.424441 -0.452161 0.389297 0.215879 -0.087506 0.320581 0.315387 -0.557038 0.703859 0.062837 0.443320 0.298045 0.221673 -0.337972 0.119593 -0.200338 -0.053133 -0.304531 0.195253 -0.581285 -0.255971 0.369386 -0.210263 -0.582863 0.057358 0.523592 0.275303 0.051000 -0.248878 -0.119003 -0.175684 -0.474856 0.252685 0.302269 -0.244213 -0.392656 0.376313 0.448608 -0.388742 -0.258301 0.130854 0.342241 0.472504 -0.627653 0.361608 0.072778 0.330146 -0.685759 -0.646664 0.257775 -0.205510 -0.308916 0.124243 -0.989452 -0.510771 -0.239813 0.388347 -0.789772 0.077238 0.078577 0.712693 -0.057556 -0.052225 0.457863 -0.130599 0.050527 -0.050199 0.134696 -0.001767 0.419659 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.171491 0.098903 -0.235050 -0.109522 0.423214 -0.178026 -0.112328 0.353203 -0.011958 0.274147 -0.158853 0.116080 0.011775 -0.350370 0.080230 0.257732 0.107236 0.223412 0.004571 -0.014087 0.103502 -0.095686 0.038014 -0.070331 -0.079568 -0.362154 0.080821 0.103473 0.139673 -0.092256 -0.195887 0.123863 0.342782 -0.054654 0.217247 0.205775 0.166155 0.180496 0.325736 -0.201742 0.088515 0.079546 -0.072265 -0.263955 0.052262 -0.061770 -0.148403 -0.099565 0.142003 -0.147652 0.169178 0.170068 -0.001934 -0.026347 -0.271568 0.133892 0.128505 -0.046473 0.298896 0.081328 -0.126622 -0.206389 -0.077871 0.430156 -0.266026 -0.115547 -0.045184 -0.238114 0.001584 0.231016 -0.028185 -0.065072 -0.038415 0.053969 0.031307 -0.225046 0.087234 0.006399 0.209428 -0.221310 -0.194386 0.119692 -0.162824 0.240133 0.025221 0.065301 -0.144494 0.027658 0.046578 -0.230886 -0.024737 0.122307 -0.154663 0.054584 0.047174 0.245800 0.197316 -0.110174 0.040177 -0.182932 0.051524 -0.083574 0.103350 -0.047151 0.222957 -0.086369 0.082945 -0.061235 0.095159 0.241331 0.108870 0.068665 0.053080 0.128804 0.019317 -0.168218 -0.388866 0.130481 0.016009 -0.005261 -0.099645 0.030773 0.251057 0.026482 0.189760 -0.342229 0.219372 0.079198 0.116910 -0.142733 0.074798 0.036877 -0.076747 -0.070984 0.201112 -0.063144 -0.017450 0.005561 0.143238 0.065888 -0.343730 -0.038459 -0.094052 0.325844 -0.358647 0.088088 -0.055873 -0.099180 0.001943 0.025915 0.105759 0.172203 0.278604 0.200389 -0.090789 0.191154 -0.350322 0.117292 0.363160 0.080624 -0.179337 0.218267 -0.210577 -0.071857 0.101898 0.191643 0.112268 0.046149 -0.089265 -0.081755 0.126315 0.036825 0.275002 -0.086996 0.099695 -0.178219 0.117035 0.129567 0.023437 0.420709 0.015183 -0.343397 0.248393 0.268315 -0.170541 0.031916 0.083558 -0.192890 -0.036236 -0.197821 0.115718 0.246288 -0.273324 -0.100964 -0.037571 -0.171567 0.204016 -0.022244 -0.076349 0.118700 -0.186736 0.252313 0.351662 0.113925 0.052827 -0.123334 -0.245489 -0.276465 -0.310144 -0.006113 0.039192 -0.152906 0.041341 -0.209906 -0.198921 0.312003 -0.017194 0.042241 -0.540743 0.149694 0.189492 0.168184 -0.076081 -0.116924 -0.043191 0.143655 -0.043787 0.001166 -0.176248 0.170678 0.158934 -0.193186 0.159836 0.111249 0.082522 0.197535 0.117070 -0.233098 0.294998 -0.002293 0.129948 0.148450 0.111728 -0.160290 0.037540 -0.105233 -0.046921 -0.143420 0.060304 -0.254245 -0.094836 0.230028 -0.067622 -0.271219 0.025448 0.220184 0.222621 0.008395 -0.150463 -0.041018 -0.041354 -0.186934 0.133497 0.126287 -0.049625 -0.157436 0.151476 0.208164 -0.112956 -0.137462 0.061978 0.113188 0.219714 -0.262316 0.141928 0.055506 0.196247 -0.244285 -0.272237 0.087863 -0.003890 -0.079196 0.095646 -0.500116 -0.208574 -0.092929 0.156032 -0.388066 0.153633 -0.014510 0.307474 -0.051991 -0.051672 0.182496 -0.042242 -0.008810 -0.004337 0.054686 -0.021977 0.172689 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -2.358864 1.615558 -0.438547 -3.139301 5.578714 -1.129666 -0.191177 3.478387 -0.688969 3.110916 -2.601156 1.052888 -0.484074 -4.513252 0.428683 -0.382640 0.486669 2.627502 -1.122060 1.908808 1.968041 -0.879612 1.391090 -1.274458 -1.647168 -3.096594 0.157418 1.416668 1.122169 -0.678866 0.322514 0.200692 4.255814 -0.462442 2.991079 2.324417 2.226812 3.688162 1.850144 -1.081656 0.779880 1.350694 -1.270983 -4.048785 1.178379 -1.327056 -3.221980 -2.029153 1.868498 -3.658036 0.961006 2.921481 0.177786 -1.224780 -2.936158 1.998101 2.406174 -0.938922 3.822253 1.111179 -2.213355 -1.621749 -2.750121 2.595354 -2.772349 1.059561 -0.025693 -2.899607 -0.940863 2.446962 0.543749 -1.882220 -2.622499 0.791592 1.552651 -2.887225 1.228306 -1.202910 0.078793 -2.644486 -1.684223 1.597049 -1.363439 2.986899 0.257532 1.501038 -0.257838 0.939137 -0.029711 -3.729215 -0.139334 2.548402 -1.580718 -0.026322 -2.073151 2.774580 0.185482 -1.227848 -2.100403 -2.021802 1.286340 -0.088435 1.703023 -1.474200 0.169174 -2.817866 1.196801 1.424078 0.434654 2.026659 0.930367 1.223252 1.038283 2.421583 -1.729419 0.983144 -5.186462 1.053503 -0.976107 0.830507 -1.633968 1.083376 2.081370 1.412519 2.423231 -4.353559 3.945574 1.274093 -1.073939 -2.507488 1.532215 0.229109 -1.042230 -0.738676 2.471167 -0.966586 -0.286821 -0.333902 1.512326 -0.046377 -2.667049 -1.462955 -0.644134 2.774893 -3.632662 1.299950 -0.757361 -1.612156 0.219959 1.206693 1.924904 1.599484 4.490395 2.549451 -1.006314 2.233856 -3.800353 1.107253 4.797436 2.028222 -2.825055 3.040358 -2.047852 -0.487672 1.019209 2.103821 1.707001 1.271594 -2.494355 -2.189733 1.199641 0.077309 3.940443 0.717633 1.076742 -4.030829 2.005733 -0.153648 0.724859 5.285757 2.021344 -3.731030 1.247254 3.031401 -2.258756 -1.549391 0.991262 -2.099063 -0.921536 -1.253517 1.168202 2.169575 -2.594132 -3.253516 -0.777565 -2.825105 2.957865 -0.628138 -1.515427 0.568411 -3.039935 -0.280981 4.176173 0.512941 -1.241032 -1.545237 -2.913925 -1.523705 -4.404896 0.946944 1.428880 -1.393629 -0.761079 -2.693123 -1.239587 2.771859 -0.452948 0.172818 -5.140135 -0.152992 2.597763 0.932063 0.971161 -2.815939 -0.398679 0.531127 -0.236352 0.942480 -1.206740 1.679784 3.441985 -2.702504 2.110950 0.706025 -0.786771 1.554279 2.886259 -3.019481 4.877354 -0.063953 3.769520 0.575808 1.646012 -1.528613 0.920547 -0.509557 -1.026488 -0.476258 1.633567 -3.044447 -1.635072 1.425313 -1.221497 -3.013380 0.799372 2.769934 0.441725 0.596643 -0.395635 -0.852321 -1.046583 -1.595242 1.014615 2.416164 -1.276603 -2.769558 1.236169 2.787224 -0.989663 -1.190223 0.867605 2.014902 3.440157 -3.800062 2.355682 -0.190003 0.835882 -3.949759 -3.547804 1.951524 -1.813168 -1.036093 1.312659 -4.756103 -2.070616 -1.917080 2.411571 -2.916165 0.678892 0.746598 3.690198 0.676027 -0.860283 2.256096 -0.810343 1.577545 -0.161754 0.169632 0.586929 2.881669 +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.702534 0.215481 -0.058065 -1.336172 3.529569 -0.284730 -0.228905 1.380455 0.595194 1.892458 -1.838998 -0.928069 -1.146061 -2.072104 0.190996 -0.363882 0.113075 1.431000 -1.333029 0.071674 1.457415 -0.158522 0.918788 -0.934410 -0.449576 -1.112719 -0.775769 0.525855 0.483771 0.195849 -0.657326 0.036269 2.356091 -0.189729 1.236359 1.087507 1.315493 2.806512 -0.371524 0.781404 0.652258 1.472541 -0.935252 -2.817896 1.475876 -1.626537 -1.727563 -1.387197 1.383290 -2.489416 1.518894 1.673937 0.037784 -0.879407 -1.096708 1.022627 1.530643 0.611856 2.395591 0.789286 -1.474971 -0.211449 -2.130253 1.089525 -1.613930 2.131542 0.005603 -2.776650 -1.686711 1.049917 1.000613 -1.538895 -2.053924 0.445642 0.720181 -1.087371 0.833230 -0.507456 0.678543 -0.998638 -1.940563 0.210648 -1.121907 1.603814 -0.455404 0.238171 -0.273536 0.116009 0.467021 -1.926055 -0.675568 1.994552 -0.795118 1.203981 -1.275819 -0.093415 -0.293189 -0.445875 -1.442504 -0.556395 0.334258 0.617159 0.959470 -0.088824 -0.589817 -1.550249 1.668826 1.183906 0.337886 0.130620 0.841053 -0.004056 0.011220 1.165352 -1.039691 1.046831 -2.448765 0.514032 -0.332644 0.738779 -0.722325 0.859296 0.873366 -0.096250 1.399756 -2.357796 2.214668 0.120761 -1.345931 -1.187129 1.004194 -0.131535 -1.091858 -0.215187 1.616721 -0.319776 -0.752282 -0.250845 0.744129 -0.393005 -1.773585 -0.363188 -0.661572 0.646195 -1.305539 0.370742 -0.821553 -1.526956 0.093317 0.767353 0.802953 1.005108 2.411542 1.852104 -0.611227 -0.014912 -2.249597 1.205160 2.894164 0.506530 -2.087197 0.990364 -0.862271 0.766030 1.180346 0.692969 0.935215 1.787873 -0.009244 -0.038164 -0.626177 -0.036406 2.293011 1.804699 1.380768 -2.545337 0.123587 -0.901461 0.597737 3.125108 1.742598 -2.574716 0.460464 1.606910 -1.393022 -0.914082 0.191776 -0.488246 -0.377185 -1.269814 0.881552 1.444273 -1.906790 -2.112612 0.080879 -1.947856 2.137068 -0.348004 -0.294217 0.841319 -2.610694 -0.455557 2.565004 0.388797 -0.736242 -0.844071 -1.521260 -1.006077 -2.590590 0.868970 0.931687 -0.868009 -1.356306 -1.619283 -0.126654 2.244403 -0.255428 0.377049 -1.499564 -0.052385 1.099398 -0.246760 1.526007 -1.843777 -0.664232 -0.346613 -0.492381 1.259335 -0.426809 -0.109072 2.180205 -1.879086 1.255689 1.326118 -0.332654 0.041033 1.835956 -1.052286 2.316879 -0.215758 1.638868 -0.442228 1.378059 -0.571580 0.633559 -0.046943 0.110537 -0.193650 1.543468 -1.645709 -0.755436 0.936133 -1.789037 -1.111385 0.869842 1.308170 0.972720 0.330331 -0.302410 -1.128897 -0.366341 -0.245419 0.143340 1.759189 -0.488361 -2.066426 0.051830 0.548554 -1.522482 -1.363555 0.851557 0.517710 2.233854 -2.080765 1.029301 0.153063 -0.429687 -2.329678 -1.115301 -0.194545 -1.077479 -0.942751 1.671977 -2.219416 -0.908206 -1.190309 1.421131 -1.138827 -0.342265 -0.485134 1.935075 1.336502 0.094116 1.897708 0.231014 1.381230 0.000464 -0.785137 0.757440 1.722002 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = -0.629600 0.421637 -0.232666 -0.513006 1.468936 -0.529035 0.031942 0.963092 -0.256197 0.791873 -0.681057 0.426976 -0.091798 -1.014294 0.163607 0.218303 0.248777 0.804863 -0.139125 0.219760 0.435033 -0.163009 0.176964 -0.348108 -0.296719 -0.945077 0.090343 0.286487 0.203058 -0.136226 -0.162958 0.323150 1.140191 -0.110581 0.742460 0.722250 0.478313 0.883752 0.657253 -0.307486 0.338574 0.311669 -0.237900 -1.027200 0.295911 -0.268119 -0.662861 -0.523203 0.426117 -0.860958 0.519898 0.624301 0.021556 -0.192639 -0.765369 0.481513 0.662323 -0.233151 0.930151 0.292446 -0.639096 -0.320799 -0.421653 1.020289 -0.717943 0.023291 0.022211 -0.885404 -0.101867 0.710905 0.321241 -0.540830 -0.520366 0.142427 0.150291 -0.679175 0.246773 -0.089023 0.157171 -0.662868 -0.570424 0.283814 -0.375224 0.690869 0.026066 0.199401 -0.468305 0.071638 0.173030 -0.754052 -0.189309 0.726554 -0.403502 0.249360 -0.467306 0.583805 0.442484 -0.374802 -0.210498 -0.612634 0.220254 -0.153126 0.361700 -0.169317 0.088121 -0.457691 0.246778 0.128495 0.120883 0.701045 0.050148 0.394894 0.237981 0.378382 -0.170965 0.072992 -1.320654 0.453243 -0.078476 0.017418 -0.254146 0.096302 0.538035 0.186296 0.575625 -1.034262 0.858485 0.212211 -0.017812 -0.595421 0.325362 0.115444 -0.264750 -0.262306 0.655596 -0.113225 -0.075012 0.007561 0.316054 0.028655 -0.761452 -0.548439 -0.253934 0.925382 -0.968208 0.286100 -0.234305 -0.355607 -0.015089 0.164974 0.345522 0.462884 0.962038 0.684344 -0.195363 0.526326 -1.074766 0.264473 1.135788 0.630097 -0.673963 0.677250 -0.468472 -0.155350 0.345185 0.509552 0.316625 0.245537 -0.514677 -0.473987 0.262672 -0.074454 0.896800 0.219697 0.263539 -0.879807 0.437744 0.095047 0.064970 1.359172 0.350189 -1.060830 0.506937 0.866715 -0.458569 -0.309408 0.254599 -0.566746 -0.380990 -0.385467 0.341632 0.574770 -0.790107 -0.575826 -0.070269 -0.662378 0.684218 -0.083646 -0.330134 0.182357 -0.741351 0.132278 1.139328 0.241598 -0.039329 -0.290522 -0.726844 -0.500883 -1.099649 0.099974 0.320161 -0.363735 -0.187800 -0.661834 -0.363444 0.841676 -0.193215 0.148050 -1.230658 0.065211 0.607191 0.306770 -0.013012 -0.935427 -0.184003 0.190221 0.043728 0.138069 -0.311429 0.449112 0.782356 -0.634565 0.450669 0.519413 0.014038 0.445238 0.621011 -0.730114 0.983639 -0.063853 0.791648 0.333926 0.383760 -0.457123 0.080547 -0.196312 0.008480 -0.391747 0.381436 -0.819087 -0.293601 0.511010 -0.342880 -0.719604 0.235687 0.696805 0.381429 0.036805 -0.229653 -0.194459 -0.202297 -0.580893 0.267208 0.519211 -0.280737 -0.676178 0.371707 0.617888 -0.521972 -0.314754 0.218044 0.449561 0.730289 -0.877520 0.585008 0.048608 0.265248 -0.972304 -0.916248 0.455302 -0.415086 -0.512304 0.282377 -1.349186 -0.638025 -0.380248 0.592610 -1.100680 0.092044 0.028366 0.954421 0.028459 -0.028283 0.633608 -0.165699 0.226524 -0.061472 0.141615 -0.005483 0.751078 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = -3.545615 3.382990 0.798040 -3.528596 7.483997 -1.201189 0.651080 4.188991 -2.519989 4.548131 -4.113191 2.207428 -0.481098 -4.938117 0.398482 -0.695885 -0.193856 3.436615 -0.810007 2.765233 2.534924 -1.650608 1.172014 -2.083263 -2.113367 -4.338760 -0.007777 1.481302 1.978854 -0.614574 0.871835 0.251624 5.444481 -0.788029 4.060309 3.585572 2.327611 5.094747 2.036541 -1.518117 0.846811 2.146244 -2.000489 -5.223606 1.712436 -2.040927 -3.708865 -2.901195 2.111615 -4.828533 2.244491 3.742424 -0.194905 -1.784407 -3.709802 3.238754 3.894337 -1.588471 5.429303 1.095337 -3.093528 -1.535454 -3.724418 4.654458 -3.228576 1.523487 0.021855 -4.251294 -0.224456 2.565067 1.861343 -2.945082 -3.352166 1.997584 1.272681 -4.000599 1.255738 -1.931337 -1.556672 -3.808719 -2.476070 1.519330 -1.294722 3.683835 0.006904 1.493421 -1.705569 1.448220 0.131573 -4.968246 -0.931120 4.491171 -2.117029 0.647609 -3.485219 3.430336 1.170739 -1.296031 -2.450127 -2.072565 1.604330 0.196816 2.153651 -2.638320 0.330982 -4.084915 1.435221 1.587082 0.365859 3.155687 0.409767 2.735331 2.136026 3.182342 -2.211181 1.415245 -6.351812 1.198222 -0.321876 0.872402 -1.514418 1.350790 1.451001 1.429437 3.720758 -5.748014 4.687987 0.700123 -1.279148 -3.863718 1.564470 -0.189420 -1.421125 -1.408591 2.812652 -0.343093 -0.733158 -0.628577 1.149238 0.019245 -3.742918 -3.894282 0.005998 4.862235 -4.890319 1.484367 -1.252597 -1.719667 -0.136034 1.844553 2.720493 2.391970 5.302603 3.808520 -0.059137 2.671094 -4.962108 1.067254 5.868796 3.605558 -4.334870 4.027910 -2.922904 -1.003758 1.763108 2.411710 2.228419 2.205197 -4.258751 -4.169862 1.991485 -0.621844 5.154455 2.057724 1.079269 -4.925859 3.770627 -0.483826 -0.543131 7.006638 2.389452 -4.984287 1.389952 3.662530 -2.941291 -2.205301 1.778106 -2.804531 -1.844671 -1.163207 0.966578 2.494205 -3.059182 -4.079984 -0.840904 -4.211780 4.865461 -0.669524 -1.207093 0.484544 -3.775143 -1.755283 5.262437 0.858951 -1.784813 -2.104404 -3.104593 -2.290436 -5.595060 1.114507 2.164528 -1.785611 -2.559610 -4.051051 -0.952186 3.170725 -1.024875 0.786461 -6.160350 -1.595803 3.023324 1.041399 1.160084 -5.091071 -0.840501 -0.240376 0.624806 1.492262 -0.984396 3.343829 5.812910 -3.311270 2.914527 2.213133 -0.950997 1.739450 4.196271 -4.166360 5.750080 -0.576070 4.556941 0.626433 2.097644 -2.196252 0.651018 -0.124201 -0.290148 -0.619446 1.961841 -3.371535 -1.726543 1.020189 -2.865653 -2.974788 1.321551 2.897146 0.924515 0.702750 -0.190125 -1.248744 -1.873357 -2.953569 0.384869 3.239675 -1.709044 -3.518764 1.941733 2.211658 -1.739297 -1.021368 0.951935 2.539055 3.751058 -5.067436 2.924171 -0.551427 0.094654 -5.587653 -4.604140 2.034289 -3.002086 -3.213331 2.211066 -6.223394 -2.152927 -2.692751 2.394510 -4.883016 -0.730033 0.646586 5.293032 1.005340 -0.953115 3.373572 -1.528943 2.963864 0.148663 0.387900 0.306859 3.999517 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.919769 0.529497 -0.788408 -0.739734 2.499985 -0.780003 0.119480 1.615981 -0.986930 1.271706 -0.870959 1.078654 -0.005839 -1.642955 0.277462 0.772680 0.447152 1.120288 -0.142502 0.409284 0.571863 -0.374377 0.325613 -0.385298 -0.533977 -1.435882 0.323412 0.541700 0.642100 -0.450373 -0.433191 0.442565 1.690654 -0.389038 1.008148 0.995160 0.856089 1.103499 1.161698 -1.317270 0.499361 0.357599 -0.359706 -1.374565 0.325010 -0.333895 -1.211894 -0.602216 0.714065 -1.139170 0.450449 0.978919 0.000480 -0.305462 -1.225015 0.948825 1.133593 -0.878415 1.464214 0.339577 -0.941863 -0.941906 -0.494386 1.928568 -0.990690 -0.278792 -0.102099 -1.251796 -0.081619 1.160195 0.255782 -0.927553 -0.746126 0.294224 0.329273 -1.150956 0.323561 -0.127320 0.505681 -1.410122 -0.817920 0.426444 -0.760799 1.094197 0.115198 0.402959 -0.558673 0.125013 0.162096 -1.247859 -0.165253 1.067875 -0.687955 0.288631 -0.879444 1.063219 0.615203 -0.629215 -0.488058 -1.089561 0.265289 -0.294867 0.575969 -0.737837 0.681884 -0.669487 0.005584 -0.088654 0.456700 1.317834 0.119320 0.496568 0.334475 0.647603 -0.184520 -0.233895 -1.994128 0.639487 -0.059266 0.077336 -0.571893 0.161687 1.116230 0.336541 1.008588 -1.753564 1.261002 0.236184 0.118246 -1.054516 0.405479 0.277756 -0.299250 -0.315775 0.983274 -0.408679 -0.071005 0.003417 0.703929 0.256180 -1.558589 -0.703302 -0.300665 1.632788 -1.908315 0.528309 -0.310440 -0.457086 0.053838 0.264975 0.675790 0.799033 1.491480 1.054949 -0.275617 1.522972 -1.743597 0.527271 1.773806 1.203436 -1.019163 1.134115 -1.062648 -0.313882 0.468809 0.863949 0.568772 0.168811 -0.893207 -0.675412 1.024968 0.105389 1.415117 -0.053188 0.391690 -1.329254 0.614305 0.260033 0.236568 2.001301 0.375800 -1.759661 1.261593 1.313324 -0.397124 -0.177564 0.427331 -1.128290 -0.770674 -0.614050 0.568948 1.008991 -1.160177 -0.726128 -0.200765 -0.887820 1.033042 -0.182204 -0.805235 0.392426 -0.955081 0.532099 1.578293 0.363904 0.026556 -0.530762 -1.203150 -0.982169 -1.651868 0.091121 0.383267 -0.611444 -0.203180 -1.112099 -0.839805 1.360099 -0.104168 0.273574 -2.632403 0.415181 0.977571 0.859817 -0.088774 -1.349666 -0.160184 0.427984 0.079527 0.008433 -0.757257 0.769235 0.991859 -1.080576 0.709401 0.349686 0.091908 0.851858 0.764927 -1.175493 1.540737 0.203441 1.616411 0.541767 0.535749 -0.713054 0.278667 -0.418317 0.061156 -0.617962 0.439590 -1.298099 -0.561713 0.902833 -0.289480 -1.472148 0.202259 1.122623 0.566161 0.099469 -0.639903 -0.033917 -0.418948 -1.021558 0.516770 0.688813 -0.705153 -0.871186 0.699619 1.012718 -0.653220 -0.140957 0.306542 0.854370 1.046525 -1.372680 0.845885 -0.020176 0.712293 -1.462089 -1.652239 0.777138 -0.414452 -0.706248 0.587555 -2.253223 -1.034061 -0.570189 0.865726 -1.940604 0.257735 0.081374 1.535572 -0.239863 -0.028509 1.010034 -0.286518 0.171463 -0.289918 0.472048 0.009542 0.920646 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.266346 0.017681 -0.797710 -0.049697 0.705851 -0.472465 -0.110753 0.606230 -0.084523 0.282686 -0.232072 0.127587 0.057244 -0.609372 0.191122 0.854743 0.424066 0.497259 0.047639 -0.048622 0.171647 -0.086232 -0.016707 -0.107398 -0.044217 -0.129697 0.089094 0.150671 0.093743 -0.444187 -0.614564 0.417328 0.700352 0.065963 0.532306 0.416017 0.240376 0.348349 0.756741 -0.536824 0.157848 0.125441 -0.078179 -0.497846 0.160813 -0.072491 -0.172710 -0.201836 0.162329 0.016412 0.836428 0.282932 -0.000479 0.111169 -0.541961 -0.053212 0.259536 -0.088060 0.486752 0.209732 -0.317548 -0.082858 0.133274 0.717826 -0.373892 -0.219321 0.081152 -0.426446 0.041912 0.376695 0.545960 -0.667785 -0.406065 0.044953 -0.127736 -0.305068 0.228758 0.174374 0.820879 -0.662255 -0.620614 0.197051 -0.493648 0.429016 0.029139 0.037679 -0.689371 -0.062986 0.133884 -0.352982 0.006308 0.057178 -0.321747 0.377607 0.001579 0.355245 0.172985 -0.131225 -0.115658 -0.524839 0.111944 -0.269756 0.141181 0.376557 0.569052 0.094085 0.131072 -0.178238 0.132879 0.443087 0.620786 0.149886 0.302238 0.128414 0.273934 -0.550586 -0.644318 0.308488 0.091614 -0.140010 -0.075262 0.058595 0.475582 -0.204625 0.288930 -0.587247 0.244748 0.216612 0.172719 -0.217157 0.110550 -0.008731 -0.216416 -0.196494 0.447527 -0.081029 0.019245 0.031359 0.145318 0.081477 -0.749913 -0.099723 -0.293151 0.644261 -0.607130 0.094472 -0.118125 -0.288521 -0.026025 0.028403 0.122132 0.377548 0.406949 0.326869 -0.339918 0.135760 -0.665457 0.203082 0.609037 0.302335 -0.358726 0.351501 -0.298497 -0.065675 0.245208 0.427286 0.199392 -0.450911 0.006283 0.053618 0.341212 0.124319 0.427028 -0.394454 0.278438 -0.143852 0.055271 0.589368 -0.055580 0.928027 -0.331092 -0.543324 0.368920 0.502821 0.257422 0.165778 0.155809 -0.418570 -0.264283 -0.386495 0.309506 0.346201 -0.591585 -0.023218 0.082612 -0.284788 0.261089 0.021905 -0.368172 0.147779 -0.490583 0.778375 0.868705 0.166660 0.214827 -0.072481 -0.494300 -0.017228 -0.508360 -0.020856 0.028876 -0.065361 0.181584 -0.317792 -0.330559 0.723751 -0.007636 0.062488 -0.727567 0.335579 0.310840 0.082972 -0.253171 -0.545550 -0.147995 0.432394 0.092009 -0.060734 -0.306665 0.178670 0.193308 -0.387803 -0.080291 0.704126 0.616605 0.350157 0.092283 -0.373699 0.432753 -0.052285 0.421573 0.292797 0.227297 -0.328323 -0.054123 -0.221059 0.494061 -0.430159 0.122953 -0.422683 -0.095711 0.438695 0.107246 -0.641058 -0.010232 0.343311 0.288629 -0.030442 -0.582051 0.123517 -0.023316 -0.274870 0.395070 0.219623 -0.125394 -0.205824 0.255859 0.352670 -0.169130 0.308110 0.139693 0.135040 0.492397 -0.438414 0.168593 0.094945 0.528887 -0.261781 -0.576155 0.205408 0.083002 0.087723 0.272051 -0.902276 -0.514750 -0.138929 0.250572 -0.644359 0.603834 -0.114354 0.531528 -0.046268 -0.105053 0.246461 -0.012178 -0.132163 -0.098256 0.098534 -0.108242 0.361903 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -1.385312 0.622914 -0.327519 -0.968234 3.011717 -0.522040 0.064947 1.326631 -0.558430 1.710186 -1.275113 -0.133391 -0.470147 -2.094714 0.350451 -0.244778 0.297018 1.105251 -0.397517 0.908424 0.995869 -0.731250 0.467201 -0.699562 -0.600615 -1.565259 -0.193777 0.586264 1.236799 -0.425573 -0.281628 0.205230 2.265008 -0.307886 1.687227 1.405891 0.883275 1.682466 0.539290 -1.130499 0.156497 1.013987 -0.951525 -1.873327 0.430332 -0.821062 -1.670044 -0.882595 0.933989 -1.249341 0.119989 1.542880 -0.116290 -0.204961 -1.418258 1.128782 1.410317 0.000903 2.147639 0.439229 -0.806065 -0.545768 -1.457020 1.561748 -1.096961 0.321923 -0.481455 -1.799254 -0.276881 0.770715 -0.002665 -1.132681 -1.082496 0.976893 0.958108 -1.492731 0.686079 -0.426375 -0.251083 -1.724634 -1.391498 0.536432 -0.892624 1.648321 0.012698 0.614046 -0.089824 0.509730 0.150036 -2.100228 -0.155226 1.588163 -0.980282 0.080809 -0.819584 1.229083 0.596350 -0.155803 -1.033676 -0.976852 0.407699 -0.216102 0.853469 -0.788801 0.556149 -1.348515 0.333105 0.061688 0.564386 1.346692 0.514532 0.561738 0.710660 1.344791 -1.127447 0.007614 -1.923505 0.487247 -0.854184 0.472254 -0.697645 0.748202 1.088802 0.528093 1.529168 -2.399735 1.450039 0.346413 -0.128702 -1.463637 0.513935 -0.372860 -0.690714 -0.483301 1.267464 -0.391826 -0.212226 -0.407534 0.738595 0.243399 -1.324968 -0.169817 -0.116708 1.531177 -1.862825 0.552538 -0.475070 -0.840013 -0.075218 0.631489 1.032104 1.241263 2.036734 1.629200 -0.647952 1.170832 -2.001763 0.652931 2.541538 0.431560 -1.599247 1.532381 -1.248747 -0.206611 0.686815 1.019910 1.149737 0.699569 -1.067350 -0.902828 0.510053 0.247302 2.037284 0.484551 0.524287 -1.717972 1.082888 -0.293599 -0.255846 2.638414 0.868858 -2.177237 1.028144 1.427467 -1.633267 -0.549758 0.620616 -1.242676 -0.232850 -1.220826 0.663623 1.195739 -1.344704 -1.072905 -0.011294 -1.591575 1.663246 -0.255606 -0.589413 0.590183 -1.426912 -0.437493 2.306379 0.378777 -0.358138 -1.110962 -1.511645 -1.149102 -2.124307 0.468536 0.161608 -0.749108 -0.688387 -1.633554 -0.600066 1.725777 -0.041030 0.673395 -2.717601 0.162582 0.907753 0.772580 0.703029 -1.148528 -0.376072 0.086709 -0.264904 0.366645 -0.716637 0.844972 1.959305 -1.460470 0.937786 0.008397 -0.766114 0.820136 1.222769 -1.711906 2.109230 0.131971 1.936883 0.148924 0.974657 -0.860294 0.384267 -0.039249 -0.381193 -0.370708 0.828549 -1.255627 -0.768793 1.013197 -0.847505 -1.640295 0.124254 1.026201 0.595686 0.308595 -0.380328 -0.937864 -0.316354 -0.806358 0.513143 1.279373 -0.363217 -1.118162 0.838442 0.848378 -0.442232 -0.703736 0.348219 0.580738 1.548480 -2.089354 0.681474 -0.104511 0.550864 -1.505798 -1.816459 0.419205 -1.039346 -0.761792 1.281810 -2.376496 -0.624926 -1.045137 0.681100 -1.523962 -0.297360 0.235394 2.111016 0.518017 -0.521372 1.247586 -0.417682 0.878123 -0.184059 0.138827 0.184002 1.299861 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -1.573574 0.542410 -0.946428 -1.317697 4.304126 -0.909168 0.049820 2.576732 -1.228857 2.330171 -1.312106 1.053988 -0.262345 -2.558986 0.347898 0.489161 0.515753 1.652663 -0.513641 0.890050 1.032810 -0.618693 0.689109 -0.414478 -0.947719 -1.920569 0.183943 1.028647 1.270072 -0.665635 -0.622028 0.414623 2.705320 -0.736352 1.937112 1.626264 1.401305 1.838345 1.189133 -1.678593 0.590467 0.705654 -0.771053 -2.216995 0.494933 -0.686444 -2.428980 -0.959452 1.294254 -2.044781 0.515378 1.842387 -0.194297 -0.437874 -1.646848 1.833034 1.461720 -0.939390 2.599706 0.454256 -1.825489 -1.430737 -1.507070 2.870608 -1.340827 0.081653 -0.501065 -2.439092 -0.286792 1.517627 0.062984 -1.496170 -1.193978 1.040999 1.003048 -1.912334 0.665473 -0.507992 0.459793 -2.093184 -1.357614 0.686564 -1.232196 1.794171 0.147229 0.892601 -0.372338 0.444408 -0.176532 -2.554803 0.058902 2.077544 -1.371932 0.445893 -1.830873 1.440296 0.706159 -0.698593 -1.220234 -1.504783 0.451347 -0.372533 1.103242 -1.505388 0.890490 -1.436857 0.221781 0.090598 1.104292 1.798079 0.289166 0.659268 0.848709 1.583338 -0.850489 0.198480 -2.798873 0.917290 -0.661903 0.389676 -1.149173 0.710799 1.759955 0.918275 2.025634 -2.973565 1.922082 0.189409 -0.153678 -1.908860 0.618884 0.044655 -0.538035 -0.536473 1.636624 -0.826355 -0.235211 -0.370270 1.185664 0.455453 -2.414848 -0.605428 -0.234373 1.820851 -2.538619 0.894467 -0.516973 -0.851543 0.142807 0.813119 1.531460 1.614780 2.611178 1.839331 -0.301929 1.951252 -2.939391 0.882166 2.884442 1.243646 -1.877368 2.116576 -1.817478 -0.349502 0.730039 1.507666 1.267447 0.731593 -1.227396 -1.046159 1.314489 0.651591 2.394405 0.429542 0.483254 -2.079227 0.736732 -0.384063 0.168196 3.202058 1.112266 -2.911373 1.632034 1.832691 -1.140460 -0.448879 0.804018 -1.836899 -0.866364 -1.115098 0.879151 1.817531 -1.733353 -1.251190 0.037373 -1.625780 1.936619 -0.506086 -1.163495 0.647581 -1.853171 0.301240 2.654019 0.518162 -0.217959 -0.985500 -2.066576 -1.662868 -2.640307 0.192230 0.547958 -0.907202 -0.629596 -1.966459 -1.230550 2.110157 0.200271 0.833434 -3.908332 0.491681 1.601050 1.019867 0.405318 -1.776430 -0.251999 0.125641 -0.280369 0.275827 -1.220149 1.006120 1.899625 -1.672255 1.532730 0.205638 -0.582240 1.137388 1.214857 -2.218183 2.887718 0.502306 2.386167 0.601561 0.914072 -1.038009 0.629315 -0.514989 -0.060616 -0.708681 0.980464 -1.833367 -1.043836 1.210755 -0.964442 -2.285598 0.052660 1.673292 0.619286 0.479964 -0.783736 -0.707741 -0.981106 -1.677410 0.815400 1.181130 -1.169132 -1.238359 1.353664 1.243347 -0.823397 -0.484061 0.461755 1.280519 1.809804 -2.526713 1.054352 0.034313 0.922731 -2.299404 -2.339219 0.647225 -0.995856 -1.092402 0.970312 -3.333612 -1.475786 -1.098263 1.095097 -2.440577 -0.042100 0.394716 2.905017 0.188445 -0.376455 1.683592 -0.571787 0.626229 -0.416820 0.571824 0.218607 1.505342 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.713708 0.464143 -0.555387 -0.633023 1.985804 -0.529897 0.073429 1.264958 -0.598865 0.924418 -0.862373 0.762735 0.107559 -1.220378 0.234530 0.601709 0.283662 0.807056 -0.181677 0.208469 0.438594 -0.184395 0.191404 -0.438775 -0.349193 -1.090495 0.153820 0.353551 0.442204 -0.276019 -0.452655 0.319184 1.256540 -0.302818 0.784115 0.801335 0.785374 0.805773 0.773537 -0.785788 0.493685 0.289777 -0.283088 -1.060404 0.201198 -0.327413 -0.954357 -0.452946 0.497151 -0.908901 0.518332 0.751630 0.032654 -0.277716 -0.866471 0.777445 0.844332 -0.635921 1.097910 0.340334 -0.812923 -0.606682 -0.403214 1.569033 -0.760566 0.049408 -0.052819 -1.018043 -0.197938 0.950216 0.304177 -0.742165 -0.625506 0.170492 0.203751 -0.845513 0.310733 -0.143289 0.611326 -1.010240 -0.574520 0.408392 -0.539190 0.835742 0.120196 0.244697 -0.513324 0.064619 0.191430 -0.912013 -0.256503 0.847047 -0.571281 0.232783 -0.752825 0.662590 0.510465 -0.445231 -0.271542 -0.905579 0.256441 -0.117319 0.375820 -0.495297 0.554963 -0.564436 0.089624 0.145004 0.262399 0.975997 -0.042361 0.412657 0.263742 0.457414 -0.039910 -0.151635 -1.511503 0.459961 -0.091296 0.050363 -0.413772 0.050164 0.913471 0.291384 0.711052 -1.237649 1.036773 0.260978 -0.041663 -0.721576 0.331706 0.116940 -0.359704 -0.183627 0.662739 -0.172851 -0.027460 0.047261 0.539002 0.066128 -1.156362 -0.602804 -0.282771 1.114415 -1.436707 0.332043 -0.198338 -0.260976 -0.047600 0.290728 0.509157 0.515769 1.181134 0.756062 -0.201338 0.987300 -1.268904 0.439211 1.417366 0.839534 -0.801372 0.826276 -0.843132 -0.180667 0.364711 0.609539 0.282579 0.246970 -0.712537 -0.462233 0.628628 -0.094671 1.090305 0.036629 0.318430 -1.044507 0.501670 0.050287 0.100792 1.585162 0.411490 -1.402092 0.851213 1.101699 -0.234929 -0.176478 0.347344 -0.861827 -0.607447 -0.482756 0.421398 0.679941 -0.915006 -0.633575 -0.116239 -0.730031 0.854294 -0.040579 -0.561048 0.204977 -0.709750 0.412468 1.340073 0.283487 -0.019811 -0.322609 -0.793848 -0.696936 -1.280632 0.055314 0.388894 -0.493489 -0.174587 -0.825753 -0.552638 1.079233 -0.282101 0.197923 -1.886782 0.255322 0.709530 0.531533 -0.011699 -1.072700 -0.209516 0.167852 0.037073 0.040609 -0.678851 0.548119 0.846182 -0.776157 0.614330 0.407729 -0.013231 0.499305 0.687044 -0.810984 1.178203 0.153505 1.091303 0.450664 0.520136 -0.646255 0.134446 -0.372197 -0.026316 -0.482067 0.454242 -1.066976 -0.358808 0.674338 -0.236768 -1.086101 0.313731 0.834011 0.442106 -0.020377 -0.490329 -0.064566 -0.301630 -0.804738 0.375773 0.552938 -0.569680 -0.770932 0.412167 0.843811 -0.646049 -0.158676 0.275462 0.581234 0.929320 -1.034061 0.721503 0.080192 0.524606 -1.285428 -1.206942 0.514478 -0.345070 -0.537793 0.349653 -1.699532 -0.902825 -0.462737 0.639756 -1.468680 0.058709 0.128037 1.189675 -0.107442 -0.058339 0.744035 -0.197673 0.181135 -0.140777 0.329682 -0.003704 0.647322 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -1.126762 0.396413 -0.781410 -1.307306 3.304137 -1.039103 -0.156285 2.250469 -0.753009 1.583703 -0.993091 1.207540 0.086350 -2.305658 0.356486 0.415611 0.443796 1.370080 -0.300469 1.023487 0.792970 -0.547548 0.436496 -0.444785 -0.757003 -1.568727 0.433570 0.860436 0.705139 -0.576188 -0.084495 0.501682 2.007461 -0.351593 1.572828 1.274472 1.085427 1.430681 1.147386 -1.257940 0.607582 0.296523 -0.307129 -1.756265 0.386537 -0.228430 -1.924509 -0.777338 0.827083 -1.686715 0.321923 1.502043 -0.042703 -0.398730 -1.506790 1.230466 1.126451 -0.885544 1.705661 0.504743 -1.487467 -1.172986 -1.052237 1.907341 -1.065498 -0.321376 -0.004624 -1.434886 0.054595 1.548333 0.024114 -1.094546 -0.737975 0.463336 0.821764 -1.401088 0.612559 -0.365261 0.529939 -1.500238 -0.580051 0.666848 -0.709966 1.295049 0.125963 0.852342 -0.282152 0.226683 -0.165393 -1.747840 0.062924 1.321134 -1.146762 0.060775 -1.457319 1.694106 0.729491 -0.784251 -0.863567 -1.376922 0.500517 -0.451311 0.780647 -0.884578 0.454917 -1.041774 0.178431 0.008422 0.668214 1.648170 -0.136111 0.712809 0.466264 0.998655 -0.557408 0.411565 -2.420699 0.667914 -0.507390 0.393603 -0.845099 0.205223 1.655306 0.962142 1.158518 -2.119314 1.758304 0.458365 0.208557 -1.376279 0.593413 0.208327 -0.269257 -0.470945 1.270312 -0.595023 -0.020242 0.015385 0.910926 0.399817 -1.679934 -0.793672 -0.281602 1.683587 -1.964053 0.811164 -0.265466 -0.500122 0.083681 0.289966 1.120058 0.863221 2.108002 1.108000 -0.302326 1.731729 -2.033635 0.559348 2.332349 1.021128 -1.279590 1.723535 -1.253055 -0.399966 0.206161 1.191424 0.943583 0.245738 -1.248033 -0.967937 1.300394 0.245631 1.713270 -0.102401 0.238648 -1.902519 0.718497 -0.016794 0.361125 2.621876 0.724445 -2.258179 1.187532 1.652875 -0.860101 -0.419805 0.547685 -1.191127 -0.659351 -0.572932 0.970834 1.105476 -1.311481 -1.113895 -0.228353 -1.192944 1.089526 -0.380911 -0.852408 0.163986 -1.128291 0.404141 2.205906 0.340653 -0.270490 -0.529599 -1.616076 -0.953825 -2.063914 0.029987 0.475366 -0.588127 -0.117709 -1.192890 -1.087435 1.667539 -0.218894 0.320301 -3.246980 0.360022 1.252333 0.759633 -0.068588 -1.424899 -0.196224 0.270607 0.055634 0.027345 -0.859123 0.726390 1.469523 -1.178183 1.118088 0.104202 -0.256570 1.115214 1.107743 -1.689018 2.377678 0.404722 2.153064 0.604822 0.661113 -0.913282 0.335428 -0.492536 -0.321858 -0.651892 0.652331 -1.496446 -0.727483 1.041673 -0.235148 -1.889580 0.250727 1.513284 0.383638 0.354397 -0.500498 -0.206010 -0.739845 -1.427973 0.878868 0.779708 -0.922322 -0.936974 0.902965 1.619155 -0.537091 -0.246270 0.385986 1.152467 1.558126 -1.856257 1.202487 0.077133 0.812032 -1.616762 -1.939332 1.060583 -0.790505 -0.629176 0.291231 -2.797115 -1.315352 -0.756107 1.197455 -1.979922 0.327822 0.323725 2.157124 0.132785 -0.337425 1.231318 -0.586396 0.189916 -0.297686 0.668767 0.133979 1.241423 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.767163 0.406169 -0.667865 -0.637392 2.044993 -0.622893 0.078598 1.334201 -0.637371 0.951812 -0.850961 0.787289 0.049612 -1.296318 0.251139 0.690575 0.339580 0.901382 -0.201668 0.234917 0.512143 -0.193626 0.199296 -0.451936 -0.352766 -1.057525 0.194100 0.366415 0.464942 -0.332216 -0.516373 0.360167 1.346482 -0.301384 0.838694 0.843199 0.827530 0.905660 0.812565 -0.880772 0.470487 0.365167 -0.297820 -1.151022 0.265598 -0.345824 -0.948407 -0.471921 0.559702 -0.906712 0.611351 0.791629 0.032596 -0.270873 -0.925686 0.778787 0.908075 -0.637835 1.162344 0.364809 -0.815443 -0.610704 -0.420204 1.628836 -0.822860 0.037489 -0.017844 -1.045220 -0.206134 0.940937 0.378375 -0.851110 -0.696917 0.172418 0.194451 -0.877218 0.351484 -0.123359 0.729355 -1.104422 -0.690383 0.364619 -0.627788 0.885617 0.061224 0.247737 -0.584770 0.061139 0.216452 -0.949310 -0.255583 0.840179 -0.611456 0.301334 -0.788161 0.690633 0.483473 -0.459922 -0.351702 -0.937930 0.257432 -0.138868 0.425883 -0.458101 0.605657 -0.502801 0.096724 0.088969 0.288462 1.023490 0.037428 0.421714 0.258885 0.473018 0.020595 -0.181797 -1.607275 0.480605 -0.076805 0.089588 -0.395800 0.089587 0.983225 0.224692 0.746130 -1.314043 1.071418 0.248317 -0.011033 -0.754297 0.385041 0.132896 -0.374910 -0.246896 0.764794 -0.195160 -0.073750 0.031742 0.596585 0.106253 -1.263716 -0.608174 -0.321251 1.136034 -1.499275 0.341794 -0.260638 -0.347023 -0.012408 0.259946 0.489424 0.560496 1.215664 0.833309 -0.244546 1.032183 -1.344463 0.455902 1.462683 0.877681 -0.857743 0.837779 -0.863815 -0.167195 0.425791 0.655611 0.346298 0.229001 -0.668864 -0.434210 0.692341 -0.071137 1.147321 -0.010083 0.362773 -1.095074 0.458093 0.110921 0.110078 1.700107 0.383965 -1.480405 0.909168 1.104735 -0.173925 -0.184754 0.317063 -0.858427 -0.627239 -0.532172 0.495566 0.729034 -0.985292 -0.659130 -0.107654 -0.768798 0.869449 -0.077480 -0.623171 0.253016 -0.823951 0.511124 1.402250 0.297817 -0.043359 -0.376486 -0.873242 -0.704610 -1.354671 0.103557 0.345033 -0.463165 -0.211422 -0.871770 -0.583245 1.174562 -0.249479 0.168482 -1.986874 0.267801 0.740728 0.546950 0.003337 -1.153476 -0.228222 0.214003 0.081608 0.078746 -0.672339 0.517177 0.919438 -0.870227 0.556022 0.492235 0.062251 0.534277 0.743636 -0.876725 1.221524 0.152068 1.160315 0.417670 0.522473 -0.679985 0.138304 -0.367442 0.102034 -0.497196 0.441235 -1.070668 -0.375751 0.678055 -0.264746 -1.116399 0.311503 0.868935 0.471252 0.018706 -0.540155 -0.048252 -0.309409 -0.833234 0.370038 0.623319 -0.568488 -0.805948 0.437349 0.824616 -0.668029 -0.094587 0.288624 0.599791 0.991898 -1.086312 0.729899 0.060561 0.531902 -1.272780 -1.283332 0.526443 -0.329104 -0.537410 0.456347 -1.752268 -0.920919 -0.479782 0.713755 -1.547074 0.123020 0.059967 1.206341 -0.078847 -0.015188 0.823046 -0.188717 0.226809 -0.156074 0.309953 -0.007949 0.724785 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.666248 0.511018 -0.252315 -0.670566 1.820640 -0.432027 0.074561 1.137968 -0.451307 0.893094 -0.853202 0.713397 0.113717 -1.030160 0.170786 0.292414 0.130503 0.729506 -0.217657 0.213997 0.399712 -0.097778 0.196953 -0.435741 -0.362270 -1.126708 0.100527 0.323397 0.351178 -0.141669 -0.254606 0.204951 1.114086 -0.335912 0.704755 0.742804 0.741593 0.739566 0.569606 -0.481270 0.505086 0.250568 -0.272355 -0.949282 0.141042 -0.300048 -0.924087 -0.436024 0.460002 -0.984550 0.383950 0.683229 0.035139 -0.326447 -0.708529 0.836014 0.718083 -0.565703 0.989378 0.288198 -0.787804 -0.490329 -0.494037 1.448186 -0.713070 0.179012 -0.102487 -0.958912 -0.236969 0.884425 0.207600 -0.553023 -0.518780 0.166578 0.222132 -0.788078 0.248088 -0.225502 0.416436 -0.773748 -0.385203 0.401252 -0.361361 0.695067 0.124193 0.251431 -0.394706 0.116726 0.150943 -0.830453 -0.278288 0.879623 -0.509759 0.130848 -0.751128 0.527294 0.522897 -0.435217 -0.157166 -0.769994 0.246225 -0.052333 0.348181 -0.539184 0.382209 -0.604364 0.086097 0.283462 0.194952 0.841306 -0.310048 0.439928 0.225393 0.434450 -0.079372 0.052124 -1.400703 0.406927 -0.158901 0.068679 -0.378603 0.033584 0.763946 0.415567 0.647506 -1.069761 1.014222 0.194397 -0.120327 -0.647875 0.316270 0.130577 -0.305101 -0.150433 0.533877 -0.110780 -0.039554 0.038090 0.491319 0.011535 -0.892737 -0.643229 -0.195913 0.875801 -1.211406 0.319472 -0.160277 -0.165201 -0.048129 0.312774 0.495244 0.409274 1.119623 0.682275 -0.073027 0.816413 -1.114094 0.346388 1.234257 0.699078 -0.711406 0.776199 -0.751375 -0.203575 0.305674 0.530421 0.187044 0.448511 -0.737655 -0.541012 0.423263 -0.168824 0.999812 0.199705 0.202249 -1.011193 0.499773 -0.174540 0.088697 1.389717 0.559917 -1.275974 0.658029 1.000707 -0.345870 -0.322554 0.337391 -0.749265 -0.535224 -0.354527 0.323319 0.581823 -0.751774 -0.667815 -0.101884 -0.685685 0.814590 -0.049732 -0.475760 0.146567 -0.612283 0.144877 1.159495 0.262552 -0.095124 -0.287556 -0.662010 -0.644622 -1.185346 0.053666 0.438328 -0.469687 -0.226491 -0.740504 -0.414717 0.855759 -0.325005 0.202418 -1.618701 0.081700 0.652090 0.444148 0.045366 -0.959656 -0.165211 -0.006200 0.009989 0.066586 -0.584866 0.517878 0.866545 -0.650238 0.669952 0.314789 -0.260674 0.367578 0.716036 -0.753621 1.109723 0.136920 0.849517 0.412678 0.450829 -0.575506 0.130946 -0.314102 -0.196650 -0.370373 0.437590 -0.975466 -0.338865 0.509105 -0.319652 -0.856943 0.341212 0.775811 0.337997 -0.012004 -0.284915 -0.160996 -0.311125 -0.773883 0.249246 0.503991 -0.509030 -0.763507 0.381250 0.780266 -0.673646 -0.329979 0.225308 0.554919 0.816279 -0.947201 0.724222 0.087817 0.362175 -1.301465 -1.020009 0.454296 -0.430548 -0.598612 0.167166 -1.452086 -0.829830 -0.438153 0.587860 -1.275210 -0.170323 0.219563 1.087055 -0.037319 -0.061383 0.681803 -0.235814 0.251926 -0.052853 0.263992 0.012960 0.591940 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = -0.921812 0.614737 -0.109138 -1.020341 2.467100 -0.570567 0.063773 1.498999 -0.192050 1.209848 -1.241616 0.818930 0.176627 -1.071081 0.136641 0.148498 0.023755 1.057142 -0.518483 0.194681 0.550277 0.251524 0.320780 -0.632016 -0.515868 -1.356816 -0.055664 0.428117 0.182121 -0.167053 -0.333168 0.163658 1.486655 -0.547889 1.013933 1.009621 1.131716 1.022530 0.452162 -0.069789 0.873388 0.321465 -0.381986 -1.232353 0.162534 -0.419480 -1.317544 -0.617149 0.654007 -1.488914 0.891781 0.888081 0.055308 -0.532920 -0.693768 1.272998 0.728961 -0.663479 1.293809 0.358119 -1.301139 -0.214890 -0.833561 2.083930 -0.995123 0.752322 -0.231345 -1.450884 -0.631608 1.194992 0.626739 -0.908614 -0.885020 0.216275 0.236328 -1.003224 0.325283 -0.421772 0.981274 -0.840815 -0.456702 0.585261 -0.390198 0.695484 0.153716 0.361914 -0.721278 0.237813 0.176891 -1.068491 -0.427453 1.286408 -0.757142 0.303706 -1.217395 0.213861 0.604391 -0.623574 -0.105652 -1.015849 0.332083 0.001709 0.477790 -0.497121 0.499397 -0.756573 0.180598 0.783018 0.201933 0.871342 -0.757963 0.689660 0.391728 0.566421 0.141808 0.310670 -1.884177 0.550493 -0.372552 0.084036 -0.448774 0.088656 0.947557 0.718148 0.864359 -1.254796 1.431834 0.117382 -0.478405 -0.731445 0.464103 0.208328 -0.417405 -0.190178 0.634452 -0.049542 -0.123286 0.030394 0.668518 -0.145206 -0.992823 -0.985252 -0.231494 0.581799 -1.234724 0.426413 -0.200067 -0.180409 -0.037441 0.560761 0.691922 0.467784 1.556196 0.906970 0.039720 0.543830 -1.439774 0.371846 1.403742 0.699234 -0.959645 1.052039 -0.959484 -0.265687 0.445250 0.751310 0.046202 0.865499 -0.858780 -0.704113 0.157946 -0.317222 1.326635 0.483919 0.172078 -1.339093 0.412527 -0.622222 0.118750 1.895880 0.983029 -1.722688 0.472724 1.323714 -0.240818 -0.775034 0.477605 -0.923356 -0.805388 -0.351992 0.411647 0.679864 -0.897071 -1.014251 0.093936 -0.954840 1.129824 -0.088381 -0.819608 0.147514 -0.982323 0.012176 1.584729 0.363564 -0.240512 -0.265272 -0.809853 -0.464800 -1.620777 0.098937 0.771834 -0.472763 -0.387822 -0.918048 -0.284604 0.990374 -0.515890 0.343698 -1.699185 -0.185180 0.871586 0.214341 0.176914 -1.423211 -0.191503 -0.338487 0.015108 0.154783 -0.750447 0.476792 1.312222 -0.813100 0.893646 0.763813 -0.649573 0.154695 1.093273 -0.997871 1.520837 0.182111 0.705424 0.530690 0.564616 -0.752320 0.172226 -0.410566 -0.179808 -0.426986 0.661732 -1.286001 -0.469706 0.385651 -0.581313 -0.896361 0.531598 1.062598 0.211956 0.008556 -0.287555 -0.361159 -0.488225 -1.072099 0.203684 0.687953 -0.676517 -1.145951 0.528687 1.006003 -1.209258 -0.526983 0.271905 0.718836 1.156566 -1.273383 1.049079 0.210004 0.338500 -1.970353 -1.106113 0.440576 -0.731274 -0.815925 -0.074722 -1.637945 -1.321247 -0.604779 0.804688 -1.367902 -0.545688 0.466735 1.445248 0.262072 -0.106704 0.929991 -0.375265 0.482398 0.098132 0.133853 0.049533 0.802885 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = -1.106275 0.684502 -0.148710 -1.225774 2.950810 -0.701047 0.038958 1.797250 -0.095328 1.444792 -1.492173 0.915321 0.216323 -1.210300 0.149712 0.195244 0.023172 1.295720 -0.672524 0.180715 0.659559 0.401359 0.394633 -0.755264 -0.612951 -1.547704 -0.114105 0.513402 0.140777 -0.230802 -0.461480 0.192704 1.791968 -0.667120 1.244361 1.210638 1.389055 1.226148 0.502442 0.038310 1.092606 0.381726 -0.458689 -1.465268 0.196587 -0.504309 -1.575195 -0.740508 0.794372 -1.778298 1.231164 1.051509 0.065651 -0.640360 -0.778279 1.526237 0.794294 -0.749518 1.545778 0.425539 -1.616917 -0.136620 -1.010811 2.546957 -1.209946 1.012056 -0.299056 -1.783346 -0.837381 1.431051 0.873486 -1.163094 -1.120506 0.255163 0.247321 -1.180263 0.398998 -0.508806 1.373639 -0.981035 -0.576351 0.714849 -0.479751 0.778708 0.178295 0.433716 -0.955121 0.295659 0.209831 -1.265617 -0.509868 1.529349 -0.937393 0.431522 -1.469055 0.125519 0.686167 -0.751070 -0.098160 -1.223517 0.392851 0.000139 0.573638 -0.478464 0.648655 -0.853719 0.247484 1.013525 0.240536 0.970953 -0.918956 0.833778 0.504402 0.669853 0.271248 0.369877 -2.251647 0.668084 -0.470326 0.084554 -0.518656 0.126034 1.134104 0.862358 1.036299 -1.465355 1.710751 0.109966 -0.635327 -0.825805 0.561138 0.253464 -0.508593 -0.230169 0.757089 -0.043496 -0.165776 0.031106 0.803486 -0.207049 -1.179537 -1.173265 -0.289929 0.549871 -1.378143 0.505674 -0.239014 -0.227494 -0.034053 0.699478 0.827234 0.559126 1.867218 1.085264 0.052869 0.480028 -1.725200 0.433406 1.617384 0.756023 -1.153314 1.260202 -1.139959 -0.308494 0.553637 0.928033 0.012275 1.051245 -0.943713 -0.792859 0.091081 -0.374890 1.582432 0.584644 0.203348 -1.564022 0.393645 -0.788531 0.142677 2.302750 1.183148 -2.066493 0.469657 1.582849 -0.190146 -0.978851 0.576404 -1.089606 -0.982507 -0.419493 0.504427 0.804522 -1.070121 -1.215844 0.188552 -1.147069 1.354332 -0.108701 -1.043686 0.182363 -1.240595 0.050523 1.932969 0.445354 -0.289529 -0.282979 -0.969444 -0.434371 -1.943734 0.120260 0.954086 -0.513872 -0.454317 -1.078162 -0.287422 1.179980 -0.616622 0.430653 -1.917999 -0.257671 1.043567 0.145260 0.219483 -1.730688 -0.225677 -0.450695 0.014914 0.193995 -0.902665 0.499189 1.580276 -0.969250 1.038347 1.049921 -0.787630 0.109756 1.314182 -1.189413 1.821984 0.212368 0.719181 0.637038 0.668961 -0.898769 0.203127 -0.500375 -0.142991 -0.515435 0.803956 -1.533067 -0.564840 0.407640 -0.714038 -1.033233 0.635762 1.277657 0.211092 0.016097 -0.370112 -0.453563 -0.591764 -1.280698 0.239042 0.823330 -0.798036 -1.388439 0.645340 1.190992 -1.517946 -0.618659 0.322918 0.838977 1.414147 -1.525460 1.256234 0.286097 0.406502 -2.385956 -1.255624 0.468378 -0.877888 -0.937353 -0.145895 -1.903060 -1.651436 -0.721363 0.964436 -1.544981 -0.667620 0.580772 1.730598 0.394715 -0.142893 1.114758 -0.451010 0.586556 0.156081 0.094335 0.061588 0.963015 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.236218 0.104994 -0.403213 -0.138200 0.639860 -0.247029 -0.098944 0.487106 -0.112403 0.339995 -0.230889 0.184225 0.027756 -0.496187 0.120393 0.434208 0.191152 0.305603 -0.003419 -0.009631 0.142092 -0.123206 0.050034 -0.103693 -0.095054 -0.390710 0.096425 0.138482 0.192037 -0.175362 -0.321391 0.191407 0.484206 -0.062658 0.305225 0.281965 0.245408 0.255606 0.450398 -0.370823 0.133396 0.105619 -0.094189 -0.375349 0.087050 -0.097871 -0.239574 -0.137331 0.184226 -0.177861 0.288780 0.248748 0.000181 -0.026497 -0.382858 0.162653 0.234397 -0.130414 0.413434 0.126905 -0.215891 -0.272798 -0.059943 0.592730 -0.324449 -0.136665 -0.028418 -0.343680 -0.014207 0.330049 0.071698 -0.228587 -0.153536 0.064487 0.031476 -0.299097 0.134761 0.030331 0.368186 -0.395370 -0.312440 0.157589 -0.276277 0.344754 0.039612 0.076820 -0.246593 0.005899 0.076161 -0.324101 -0.035272 0.171728 -0.223021 0.127673 -0.032435 0.316401 0.210688 -0.143373 -0.033812 -0.315717 0.074208 -0.114851 0.133648 -0.047754 0.341169 -0.108296 0.087931 -0.085674 0.139242 0.353090 0.214918 0.086461 0.100592 0.164528 0.045795 -0.262628 -0.528402 0.184929 0.032592 -0.018681 -0.144434 0.038366 0.375040 -0.002166 0.262735 -0.486702 0.298326 0.124596 0.119535 -0.217859 0.098566 0.034708 -0.130236 -0.087586 0.290613 -0.097321 -0.008150 0.015601 0.193984 0.078574 -0.531206 -0.070002 -0.151577 0.482180 -0.539344 0.113120 -0.078088 -0.150798 -0.005969 0.050703 0.152144 0.248573 0.385866 0.274740 -0.157705 0.309019 -0.498361 0.188463 0.529846 0.203507 -0.273931 0.295267 -0.308693 -0.068013 0.150108 0.266503 0.155824 -0.035089 -0.123562 -0.068930 0.248187 0.058515 0.383216 -0.148332 0.171119 -0.259082 0.137156 0.215623 0.035269 0.612567 -0.017922 -0.490795 0.370530 0.393355 -0.100667 0.076700 0.117653 -0.308441 -0.130622 -0.277793 0.184160 0.321923 -0.400720 -0.128736 -0.036437 -0.238845 0.279996 -0.013299 -0.170329 0.147138 -0.279039 0.391241 0.529599 0.137425 0.086339 -0.141027 -0.347562 -0.307780 -0.434351 -0.006012 0.060057 -0.187045 0.053281 -0.296388 -0.282646 0.477723 -0.025397 0.062556 -0.754323 0.235785 0.259460 0.217414 -0.097326 -0.260364 -0.077679 0.214769 -0.027475 -0.012622 -0.270898 0.207082 0.201434 -0.294445 0.172287 0.201366 0.185523 0.267420 0.146674 -0.300599 0.401357 0.021054 0.309900 0.198386 0.182701 -0.234113 0.046360 -0.160972 0.041750 -0.228851 0.110642 -0.371689 -0.125933 0.339955 -0.038053 -0.449000 0.039083 0.299334 0.276838 -0.004019 -0.284099 0.001604 -0.061157 -0.252629 0.218750 0.178695 -0.129085 -0.214706 0.186680 0.297114 -0.159166 -0.051932 0.104601 0.161855 0.338047 -0.366965 0.191737 0.062401 0.305788 -0.338378 -0.426441 0.144047 0.003947 -0.081666 0.184162 -0.709769 -0.320414 -0.135970 0.214277 -0.550344 0.245154 -0.032305 0.435107 -0.079274 -0.058767 0.252205 -0.037946 -0.031761 -0.053155 0.103343 -0.026887 0.230835 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.636443 0.501821 -0.291962 -0.621041 1.745051 -0.421422 0.069647 1.103552 -0.497620 0.860323 -0.800913 0.705698 0.104261 -1.049233 0.182224 0.333758 0.155649 0.690990 -0.167392 0.217283 0.382337 -0.163211 0.179197 -0.408722 -0.342773 -1.115170 0.132399 0.313457 0.389898 -0.143576 -0.254392 0.220416 1.076950 -0.304885 0.668859 0.713542 0.688983 0.705979 0.612014 -0.565191 0.450376 0.244563 -0.259443 -0.921715 0.141204 -0.284910 -0.870552 -0.413388 0.437936 -0.912592 0.310013 0.661957 0.031751 -0.294555 -0.730796 0.773965 0.727114 -0.554301 0.960548 0.282588 -0.712053 -0.551780 -0.443613 1.373374 -0.684911 0.075608 -0.083987 -0.894444 -0.171088 0.849896 0.135609 -0.498953 -0.461196 0.162234 0.222633 -0.768960 0.241444 -0.192910 0.335430 -0.779175 -0.386661 0.379241 -0.367970 0.712757 0.121275 0.237872 -0.349968 0.098515 0.150047 -0.807967 -0.255765 0.822100 -0.479613 0.105426 -0.672330 0.597787 0.523651 -0.412028 -0.163881 -0.742847 0.235925 -0.066861 0.334139 -0.551541 0.377712 -0.586544 0.075656 0.196382 0.200462 0.854667 -0.229007 0.403812 0.201436 0.421957 -0.115970 -0.001718 -1.348912 0.392422 -0.122469 0.066072 -0.374484 0.026320 0.751582 0.367866 0.625296 -1.064118 0.961451 0.213111 -0.052958 -0.645266 0.297237 0.120291 -0.292091 -0.148756 0.531529 -0.125490 -0.026670 0.039881 0.472288 0.042194 -0.900716 -0.590447 -0.196492 0.949317 -1.234673 0.308199 -0.157677 -0.169428 -0.050004 0.273724 0.470599 0.411731 1.067739 0.659549 -0.097950 0.877707 -1.085346 0.350744 1.233206 0.706811 -0.683461 0.746332 -0.732336 -0.198437 0.289638 0.507144 0.218597 0.382936 -0.725815 -0.520863 0.477592 -0.142180 0.965757 0.147162 0.214301 -0.971006 0.523936 -0.091625 0.085432 1.335924 0.491743 -1.227009 0.707458 0.966848 -0.375926 -0.245481 0.320264 -0.734828 -0.493869 -0.368673 0.316848 0.582962 -0.747226 -0.618309 -0.137795 -0.653663 0.777334 -0.044816 -0.424198 0.154397 -0.563781 0.183437 1.114122 0.253659 -0.067699 -0.300227 -0.654961 -0.695012 -1.135872 0.045854 0.386184 -0.480659 -0.197602 -0.726570 -0.450760 0.855800 -0.295155 0.181980 -1.645353 0.136379 0.629441 0.495330 0.018591 -0.892337 -0.164096 0.058822 0.006392 0.052052 -0.570172 0.537632 0.804693 -0.637328 0.644933 0.246943 -0.191048 0.417365 0.662529 -0.729950 1.063131 0.129666 0.885258 0.403652 0.440340 -0.557917 0.126850 -0.305587 -0.203455 -0.371165 0.405203 -0.942745 -0.324041 0.546314 -0.281041 -0.870516 0.312021 0.744207 0.374570 -0.014982 -0.294815 -0.130476 -0.285035 -0.738285 0.266187 0.482806 -0.485801 -0.711788 0.367334 0.758236 -0.592876 -0.306834 0.222172 0.536530 0.775686 -0.912244 0.681123 0.070980 0.379769 -1.208936 -1.026491 0.463928 -0.381768 -0.569345 0.214594 -1.457670 -0.763046 -0.417554 0.563321 -1.288892 -0.098129 0.177814 1.050055 -0.091318 -0.057195 0.653990 -0.215878 0.213508 -0.078788 0.290449 0.005463 0.569456 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.185098 0.123541 -0.214969 -0.129488 0.459095 -0.178848 -0.100936 0.371830 -0.039107 0.294197 -0.179439 0.143507 0.013528 -0.374459 0.081870 0.237620 0.099925 0.231615 0.004011 0.002710 0.111796 -0.108105 0.041847 -0.082282 -0.090634 -0.403856 0.087344 0.108981 0.154739 -0.080647 -0.175524 0.120589 0.358522 -0.064025 0.223936 0.220104 0.176726 0.195749 0.328984 -0.213343 0.094109 0.084526 -0.078220 -0.282522 0.051935 -0.067550 -0.171341 -0.109480 0.149365 -0.180376 0.140728 0.185009 -0.000553 -0.038600 -0.286161 0.160138 0.153372 -0.065500 0.316431 0.085603 -0.135700 -0.229681 -0.095660 0.448162 -0.276384 -0.118089 -0.046358 -0.250236 0.005633 0.247936 -0.048317 -0.055807 -0.036370 0.058266 0.044722 -0.244196 0.087480 -0.005379 0.171075 -0.229355 -0.185326 0.125513 -0.157020 0.256341 0.028681 0.071968 -0.130197 0.032320 0.048060 -0.248323 -0.034497 0.150397 -0.157722 0.039498 0.024894 0.270166 0.215839 -0.119748 0.036284 -0.192001 0.057993 -0.078794 0.110316 -0.085309 0.209507 -0.113655 0.078176 -0.055778 0.094905 0.265524 0.081560 0.081196 0.049776 0.139283 -0.002952 -0.148727 -0.417484 0.135026 0.010552 0.001732 -0.109409 0.027174 0.259481 0.045681 0.201146 -0.363155 0.244997 0.083771 0.116625 -0.163355 0.081658 0.040580 -0.079186 -0.072343 0.206055 -0.063893 -0.016775 0.006593 0.152130 0.067452 -0.348160 -0.061190 -0.090250 0.354426 -0.390231 0.095994 -0.058018 -0.094769 -0.000853 0.030944 0.117351 0.174288 0.302055 0.212979 -0.083636 0.230321 -0.366626 0.121027 0.391582 0.104958 -0.190877 0.233613 -0.224192 -0.079534 0.102265 0.193801 0.117382 0.070090 -0.125450 -0.110230 0.140100 0.025215 0.294980 -0.069249 0.096685 -0.210395 0.146253 0.114220 0.024838 0.436166 0.040775 -0.366392 0.267116 0.286081 -0.201264 0.019843 0.089932 -0.206162 -0.043718 -0.196410 0.115354 0.254159 -0.280553 -0.121634 -0.051965 -0.185504 0.221459 -0.024069 -0.073274 0.116281 -0.185104 0.227747 0.361274 0.116428 0.043319 -0.133897 -0.252331 -0.307776 -0.333352 -0.003932 0.049117 -0.170716 0.027502 -0.226245 -0.207265 0.318043 -0.029316 0.043914 -0.581197 0.143126 0.201628 0.191534 -0.070088 -0.132229 -0.045084 0.136774 -0.043113 0.004160 -0.182653 0.192504 0.182894 -0.202196 0.185108 0.089639 0.058366 0.208862 0.138380 -0.248920 0.317963 0.001695 0.158866 0.154178 0.119331 -0.170189 0.041054 -0.106733 -0.074291 -0.143156 0.068809 -0.273042 -0.101508 0.238280 -0.079066 -0.282592 0.037269 0.234475 0.228638 0.008113 -0.137653 -0.047861 -0.049437 -0.205166 0.129934 0.136665 -0.061743 -0.174394 0.155849 0.224814 -0.121024 -0.157641 0.064601 0.129804 0.227655 -0.279962 0.161112 0.051105 0.191378 -0.274655 -0.297359 0.106000 -0.022219 -0.106832 0.097453 -0.526827 -0.212210 -0.103232 0.167928 -0.422193 0.132546 -0.006097 0.326745 -0.060656 -0.049221 0.195971 -0.050720 0.003272 -0.006623 0.068010 -0.020402 0.184035 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.874779 0.797387 0.062626 -0.845598 2.171883 -0.435422 0.131556 1.246948 -0.799693 1.235459 -0.963314 0.699334 -0.024343 -1.428517 0.263522 -0.058375 0.083580 0.800440 -0.093374 0.642956 0.565242 -0.464674 0.203849 -0.433347 -0.523530 -1.511855 0.076673 0.484123 0.821797 -0.305022 0.000608 0.250400 1.519428 -0.394128 1.068089 1.043218 0.838910 1.018795 0.719414 -0.980486 0.291364 0.448903 -0.536008 -1.152366 0.196385 -0.359962 -1.159793 -0.525674 0.600402 -0.970461 0.051080 1.052756 -0.102132 -0.341620 -1.056424 1.082565 0.841495 -0.571834 1.410597 0.314948 -0.723501 -0.776712 -0.904757 1.676656 -0.865437 0.076864 -0.381418 -1.101997 0.024767 0.826620 -0.027944 -0.571110 -0.580110 0.568836 0.461013 -1.140229 0.341955 -0.394529 -0.193783 -1.098626 -0.672888 0.552850 -0.386464 1.086801 0.150504 0.420404 -0.241662 0.375309 0.000752 -1.364776 -0.129054 1.185372 -0.704563 -0.115462 -0.829734 1.041350 0.623386 -0.368872 -0.403638 -0.827567 0.417450 -0.223085 0.569946 -0.972225 0.609437 -1.035972 0.026056 0.170577 0.369152 1.207720 -0.045855 0.654157 0.546505 0.832015 -0.509664 -0.064255 -1.666902 0.445896 -0.262378 0.146322 -0.521886 0.341512 0.701583 0.579134 1.039300 -1.641519 1.100916 0.232653 -0.076954 -0.973348 0.315036 -0.041982 -0.378732 -0.363743 0.782040 -0.168713 -0.118039 -0.098504 0.544572 0.202623 -0.983076 -0.705784 -0.051987 1.375598 -1.608367 0.438008 -0.261344 -0.334941 -0.060816 0.494523 0.821401 0.808160 1.475049 1.034653 -0.134545 1.153079 -1.498755 0.362856 1.588643 0.737152 -1.040467 1.221853 -1.090543 -0.416111 0.333083 0.832056 0.590710 0.543440 -1.157242 -1.015204 0.701609 -0.009432 1.410869 0.200744 0.164298 -1.161494 0.937276 -0.209896 -0.193362 1.727997 0.537450 -1.450115 0.742254 1.127828 -0.861312 -0.475990 0.575990 -1.107670 -0.445331 -0.535600 0.313552 0.886162 -0.905606 -0.748583 -0.162121 -1.003892 1.163364 -0.164154 -0.468216 0.260309 -0.774918 -0.403208 1.463047 0.249532 -0.206572 -0.693348 -0.983066 -0.828105 -1.457174 0.196209 0.413630 -0.546014 -0.444689 -1.115517 -0.568658 1.002900 -0.184563 0.408078 -2.258147 0.002714 0.851034 0.690898 0.193292 -0.914402 -0.204566 0.116135 -0.044974 0.102249 -0.638711 0.949049 1.285301 -0.914153 0.902338 0.036337 -0.535989 0.611806 0.872568 -1.242015 1.599919 0.155663 1.231596 0.399537 0.545020 -0.772038 0.164653 -0.139475 -0.430363 -0.347066 0.410158 -0.988058 -0.476727 0.503048 -0.525897 -1.134355 0.196914 0.869587 0.270399 0.151698 -0.218442 -0.277520 -0.475142 -0.870280 0.379448 0.769102 -0.545690 -0.722481 0.709884 0.806894 -0.444913 -0.359125 0.238388 0.696652 0.988425 -1.409488 0.718414 -0.076174 0.485505 -1.457530 -1.472221 0.566889 -0.657308 -0.726719 0.447389 -1.881674 -0.683219 -0.724813 0.561513 -1.495528 -0.199722 0.363914 1.533667 0.005871 -0.369916 0.835506 -0.426869 0.471048 -0.088857 0.287147 0.064710 0.793454 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -1.792466 1.947549 1.454062 -1.681958 3.779398 -0.479947 0.360406 1.789710 -2.009945 2.703146 -1.535317 0.638293 -0.548119 -2.912078 0.586820 -1.596434 -0.191258 1.206252 0.240020 2.337856 1.275359 -1.689241 0.284277 -0.481908 -1.230240 -3.041595 -0.135627 1.157663 2.561005 -0.972394 1.012871 0.377839 3.249562 -0.724098 2.653572 2.331810 1.391455 2.218733 1.168344 -2.668486 -0.407009 1.254754 -1.637879 -2.020898 0.411689 -0.636399 -2.256215 -0.943368 1.227230 -1.111991 -1.003665 2.586837 -0.652722 -0.480768 -2.334667 2.253538 1.245530 -0.614154 3.174043 0.425125 -0.716814 -1.682879 -2.709181 2.831876 -1.545516 0.018118 -1.574960 -1.878175 0.857005 0.667606 -0.706318 -0.836600 -1.003057 2.218458 1.400164 -2.595907 0.734872 -1.175849 -2.333895 -2.368593 -1.831206 1.227182 -0.461137 2.564940 0.263397 1.142579 0.201629 1.483988 -0.621816 -3.576842 0.427754 2.579188 -1.592427 -1.002504 -1.393911 2.822293 0.994526 -0.152556 -1.356681 -1.129340 1.132575 -0.868397 1.501980 -2.626999 1.559385 -2.790470 -0.186792 -0.003973 1.058742 2.597588 0.761445 1.624708 1.939834 2.475607 -2.083671 -0.362538 -2.860607 0.655349 -0.806285 0.461633 -1.093590 1.615947 0.475064 1.385723 2.683473 -3.926682 1.571884 0.303537 -0.129500 -2.273218 0.357186 -0.717955 -0.704584 -1.233323 1.776584 -0.353723 -0.482812 -0.673536 0.808284 0.868818 -1.304079 -1.119324 0.536084 3.074201 -3.072795 0.943939 -0.673154 -1.001264 -0.101274 1.360288 2.211025 2.411529 3.046043 2.511396 -0.292575 2.232987 -3.117281 0.389110 2.952212 0.827829 -2.437269 3.103823 -2.502565 -1.292145 0.494007 2.127658 2.102603 1.122769 -2.838234 -2.962652 1.617576 0.573767 3.151098 0.367272 -0.037410 -1.836468 2.567729 -0.627331 -1.339260 3.236930 0.645703 -2.276577 0.876147 1.702293 -2.780482 -1.343883 1.592479 -2.587214 -0.214108 -1.204563 0.283980 2.094004 -1.514479 -1.200198 -0.241725 -2.370997 2.669636 -0.644413 -0.611418 0.699100 -1.597296 -2.718648 2.808585 0.228745 -0.741291 -2.271949 -2.285591 -1.347363 -2.668294 0.793153 0.476698 -0.777834 -1.405562 -2.648722 -1.047825 1.564919 0.316042 1.315921 -4.672272 -0.508195 1.710260 1.459014 0.872978 -0.945934 -0.355836 0.377715 -0.254651 0.294073 -0.887582 2.592088 3.152959 -1.996121 1.887291 -0.825177 -1.860930 1.398758 1.642636 -3.279513 3.694720 0.253583 2.582354 0.370809 0.935557 -1.605506 0.310533 0.540770 -1.302347 -0.239389 0.390845 -1.101084 -1.073907 0.317564 -1.487008 -2.169491 -0.321511 1.321665 -0.155349 0.830533 0.069716 -0.856020 -1.219835 -1.366100 0.842168 1.890546 -0.753974 -0.699560 2.090980 0.942004 0.219596 -0.527069 0.290017 1.307957 1.789652 -3.361643 0.797729 -0.673515 0.924909 -2.352591 -3.224761 0.950961 -1.715639 -1.311729 1.390052 -3.534057 -0.304357 -1.934543 0.502961 -2.284900 -0.551140 1.086444 3.434362 0.378353 -1.636120 1.524044 -1.260240 1.474174 -0.132571 0.274247 0.294186 1.665374 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.352086 0.257658 -0.377895 -0.208195 0.955141 -0.293819 -0.035891 0.765537 -0.424489 0.552651 -0.279425 0.410159 0.040085 -0.706496 0.142384 0.430503 0.196915 0.415869 0.047117 0.142107 0.211094 -0.229568 0.058428 -0.090906 -0.204046 -0.644308 0.163359 0.215594 0.382973 -0.227579 -0.250669 0.221193 0.698548 -0.119055 0.500189 0.444072 0.338336 0.331687 0.606656 -0.605096 0.063680 0.146246 -0.194267 -0.497738 0.090550 -0.118578 -0.422764 -0.187253 0.249777 -0.310769 0.163277 0.406053 -0.048838 0.000000 -0.487645 0.327836 0.338498 -0.322864 0.616710 0.139167 -0.330982 -0.491998 -0.168923 0.854936 -0.360641 -0.255846 -0.089084 -0.475195 0.101521 0.378688 -0.007793 -0.300097 -0.120790 0.251256 0.113683 -0.493813 0.155564 -0.034974 0.163235 -0.610140 -0.389279 0.215523 -0.310119 0.503773 0.080957 0.158454 -0.241300 0.089600 -0.001884 -0.597458 0.036676 0.388733 -0.339999 0.070410 -0.233086 0.531608 0.297392 -0.124906 -0.106641 -0.433494 0.141730 -0.157796 0.222477 -0.319788 0.430009 -0.272714 -0.009202 -0.192998 0.241205 0.600484 0.182617 0.182380 0.233115 0.368427 -0.092818 -0.242113 -0.732802 0.304803 -0.023398 0.026612 -0.222529 0.090272 0.493706 0.114119 0.461872 -0.764558 0.366746 0.141176 0.173060 -0.475424 0.102461 -0.034163 -0.139846 -0.172135 0.405448 -0.165153 -0.018697 -0.074214 0.266461 0.157544 -0.708409 -0.253003 -0.113471 0.758494 -0.877151 0.190303 -0.117091 -0.162539 -0.027732 0.140947 0.324238 0.431362 0.598551 0.431243 -0.139883 0.623512 -0.728901 0.181318 0.736784 0.435581 -0.413457 0.521391 -0.506241 -0.192058 0.177093 0.402375 0.299363 0.005701 -0.381272 -0.284493 0.497481 0.142567 0.603708 -0.116374 0.170115 -0.374291 0.322066 0.201889 -0.082408 0.816479 0.036911 -0.692695 0.563086 0.458421 -0.201397 0.066161 0.234810 -0.553242 -0.226192 -0.313497 0.182123 0.461014 -0.499466 -0.167859 -0.026316 -0.375666 0.458535 -0.051893 -0.189168 0.204364 -0.358960 0.308565 0.677610 0.189986 0.047445 -0.280770 -0.496316 -0.513618 -0.576123 0.015825 0.088254 -0.252545 -0.027296 -0.492562 -0.413519 0.581268 0.045214 0.168924 -1.185868 0.232399 0.388807 0.341980 -0.080094 -0.459990 -0.083693 0.210665 -0.015747 -0.001445 -0.348709 0.434885 0.396692 -0.404446 0.314127 0.110339 0.114899 0.393737 0.201650 -0.554488 0.624181 0.077715 0.564756 0.275056 0.226021 -0.349854 0.079051 -0.175670 0.008681 -0.252897 0.141999 -0.444480 -0.202220 0.393173 -0.142634 -0.624339 -0.029963 0.372950 0.266820 0.048090 -0.332341 -0.060344 -0.158863 -0.454439 0.270205 0.283657 -0.248468 -0.264714 0.360585 0.334246 -0.130772 -0.049600 0.118975 0.301210 0.397748 -0.576104 0.218362 0.015510 0.398790 -0.510876 -0.703501 0.247736 -0.098994 -0.252026 0.236248 -0.996573 -0.338101 -0.251426 0.212831 -0.888224 0.192982 0.038845 0.706285 -0.157476 -0.124280 0.357341 -0.126952 0.042745 -0.082832 0.243583 -0.032995 0.354190 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.330672 0.196156 -0.190068 -0.278895 0.610202 -0.086551 -0.133810 0.292275 0.111410 0.402769 -0.404253 -0.072933 -0.131539 -0.545638 0.056016 0.143197 0.046905 0.308799 -0.125696 0.034007 0.266145 -0.220094 0.155755 -0.237163 -0.091864 -0.411161 -0.018880 0.098492 0.140014 0.045595 -0.155197 0.031904 0.445404 0.014636 0.226674 0.243907 0.148132 0.539300 0.203311 0.039651 0.105831 0.272977 -0.148106 -0.602194 0.276159 -0.295925 -0.214316 -0.325811 0.240504 -0.461056 0.340884 0.299983 0.024857 -0.192825 -0.405911 0.105873 0.407587 0.139757 0.504145 0.158373 -0.155446 -0.154464 -0.286763 0.218857 -0.411052 0.139396 0.128359 -0.436250 -0.148212 0.278737 0.093858 -0.130979 -0.273003 0.031077 0.088823 -0.276808 0.157435 -0.093588 0.021243 -0.238520 -0.302202 0.071686 -0.222863 0.398211 -0.063766 0.051349 -0.128886 0.018013 0.142800 -0.338822 -0.174338 0.263387 -0.084941 0.184055 0.046954 0.308123 0.135634 -0.154095 -0.169020 -0.060349 0.071482 0.100732 0.171368 0.023980 -0.091908 -0.301066 0.381654 0.120467 -0.002357 0.111777 0.263543 0.039840 -0.028262 0.196296 -0.210111 0.069821 -0.565167 0.065217 0.074438 0.111481 -0.120952 0.088450 0.199302 -0.089309 0.242030 -0.475497 0.488493 0.127747 -0.054905 -0.247767 0.209892 0.018953 -0.189698 -0.041172 0.287009 -0.051643 -0.089205 0.000000 0.106989 -0.048987 -0.449368 -0.069619 -0.130948 0.453150 -0.358557 0.095323 -0.138185 -0.269869 0.012825 0.042343 0.099163 0.144126 0.471787 0.339161 -0.129453 0.114020 -0.413156 0.243540 0.681084 0.190321 -0.375442 0.184947 -0.122880 0.084910 0.224400 0.113386 0.206745 0.259829 -0.103193 -0.099728 -0.027267 -0.090534 0.431628 0.189533 0.294200 -0.475034 0.250262 0.123777 0.132350 0.662714 0.214355 -0.481358 0.215400 0.384510 -0.436130 -0.029966 0.035487 -0.027542 0.010564 -0.255141 0.171028 0.276213 -0.411867 -0.446552 -0.183385 -0.373323 0.424653 -0.033246 0.067469 0.151821 -0.412635 0.176170 0.502608 0.119244 -0.112684 -0.160436 -0.269342 -0.392172 -0.530498 0.112864 0.145758 -0.299756 -0.153747 -0.320448 -0.118005 0.456992 -0.124141 -0.045425 -0.456962 0.049301 0.236520 0.107760 0.118183 -0.283685 -0.131547 0.100622 -0.038457 0.213476 -0.063498 0.162049 0.402572 -0.340206 0.223259 0.270747 0.192526 0.212479 0.382771 -0.212231 0.449590 -0.130620 0.317318 0.000687 0.270676 -0.116006 0.100528 -0.047789 -0.069155 -0.062476 0.248424 -0.390609 -0.137977 0.339644 -0.262454 -0.249882 0.213556 0.291235 0.381828 0.024087 -0.060452 -0.156576 -0.029905 -0.082023 0.040125 0.309523 -0.006603 -0.417279 -0.010085 0.225280 -0.183851 -0.310850 0.160191 0.117483 0.413187 -0.390527 0.280840 0.026251 -0.031804 -0.407143 -0.260431 0.087129 -0.105644 -0.195405 0.370262 -0.627815 -0.165070 -0.199718 0.308361 -0.405888 0.146112 -0.171693 0.377532 0.133082 0.015796 0.345581 0.012821 0.207994 0.008132 -0.081350 0.070830 0.387352 +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 >&) = -4.104311 2.068939 1.311187 -3.303099 9.145348 -1.310229 0.026606 4.740827 -2.141254 5.615573 -3.572775 -0.204322 -1.663006 -5.687782 0.632631 -1.703270 -0.324534 3.511785 -1.330715 2.838505 3.088937 -1.704242 1.387504 -1.281331 -1.974455 -3.515585 -1.338018 1.955772 3.916141 -2.286692 -0.400846 0.042891 6.873869 -1.278835 5.152910 4.136298 3.145256 5.303728 0.968107 -2.767435 -0.164639 3.208487 -3.285511 -5.169674 1.864723 -2.570471 -4.845425 -2.449347 2.944853 -3.871476 0.921583 5.015606 -1.067023 -1.241164 -3.158767 4.323057 2.666144 -0.240912 6.545699 1.104726 -2.888767 -1.541975 -6.087623 5.181840 -3.063472 3.051475 -2.214172 -5.643079 -0.987626 1.288761 1.026762 -4.619765 -3.329904 4.081148 2.293208 -4.254188 1.518088 -2.305761 -1.047976 -4.560090 -4.973643 1.473208 -2.339424 4.340472 -0.124521 1.722366 -0.517532 2.293071 -0.649006 -7.000362 0.313261 5.763461 -3.244872 0.189430 -3.459444 2.461417 0.283246 -0.115689 -3.282672 -2.256657 1.568107 -0.187811 2.921410 -3.531191 2.705170 -4.928934 1.141021 1.173156 1.901253 2.951723 2.220715 1.814219 2.971710 4.991736 -3.296429 0.436087 -6.251339 1.489559 -2.034536 1.639328 -1.844871 3.242685 1.898870 1.833519 5.203836 -7.862891 3.740446 0.007684 -2.003065 -4.730978 1.298740 -1.626646 -1.998724 -1.700761 3.735530 -0.929061 -1.554062 -1.741674 1.978928 0.611375 -4.401753 -2.147936 0.194267 3.708497 -5.664349 1.487226 -1.696249 -2.672288 0.051715 2.930924 4.043901 4.316281 6.610862 5.134703 -0.846063 2.310603 -6.610357 1.526942 6.162336 1.086865 -5.316734 5.129936 -4.240518 -0.852134 1.972311 4.068451 3.655605 3.158477 -3.394522 -3.464346 2.147210 1.106398 6.265404 2.252614 1.532596 -4.098774 2.896978 -1.825087 -1.801618 7.994294 2.524530 -5.975344 1.930288 3.120328 -2.969785 -2.490261 2.307542 -4.127155 -0.801773 -2.575116 0.960279 3.800328 -3.688838 -3.541652 0.523289 -5.052350 5.990474 -1.206840 -2.091484 2.032549 -5.172257 -3.191812 6.706262 1.191368 -2.019244 -3.758927 -4.815845 -2.695149 -5.601369 2.075988 1.607965 -1.510849 -3.400442 -5.071485 -0.989428 4.736735 0.708301 2.598849 -7.293371 -0.970122 3.130043 1.136475 3.511468 -4.136622 -1.104205 -0.616867 -0.936237 1.905571 -1.677402 2.889104 6.995590 -4.430154 3.536932 1.338360 -2.558276 1.184211 3.731169 -5.708440 6.973231 0.529071 5.164743 -0.168764 2.508044 -2.663002 1.208183 0.658640 -0.141279 -0.045762 2.046562 -2.596800 -2.234776 0.607334 -4.205390 -4.035724 0.043802 2.599854 0.150919 1.641513 -1.313295 -2.659124 -2.095688 -2.229553 0.938120 4.287139 -1.705244 -3.277962 2.800863 1.042921 -1.307520 -1.279272 1.188430 2.021948 4.457386 -6.429681 1.560327 -0.654222 0.989874 -5.273108 -5.091810 0.222421 -3.081196 -2.250433 3.077095 -6.351561 -1.775847 -3.808036 1.422151 -4.754746 -1.164756 0.806867 6.549619 2.602073 -2.093190 3.811882 -1.404567 3.616597 0.191005 -0.556210 1.025138 3.715630 +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.834939 1.199590 1.023067 -1.007369 1.675656 -0.010512 0.004650 1.139367 -0.725688 1.238675 -1.161587 0.662082 -0.014367 -1.050715 0.141763 -0.534842 -0.364298 0.490449 -0.111284 0.812366 0.570607 -0.457719 0.187377 -0.550735 -0.663947 -1.323596 0.009963 0.372434 0.823583 -0.156338 0.495664 -0.062492 1.311019 -0.369232 1.122942 0.823828 0.954581 1.135432 0.418155 -0.463000 0.094390 0.539322 -0.654705 -0.990074 0.279269 -0.524054 -0.744684 -0.369136 0.475531 -0.882288 0.506266 0.982980 -0.135687 -0.618691 -0.876250 1.199588 0.533456 -0.598128 1.444737 0.183018 -0.753579 -0.772096 -1.307282 1.741016 -0.930770 0.705689 -0.469584 -0.763517 0.051682 0.471524 0.170097 -0.249816 -0.709932 0.802177 0.324251 -1.173569 0.373647 -0.714509 -0.393584 -0.776972 -0.555135 0.721667 -0.002413 0.921232 0.097360 0.506870 -0.263718 0.705948 -0.176527 -1.466391 -0.149284 1.051839 -0.864849 -0.189298 -0.955327 0.862926 0.066689 -0.186059 -0.408058 -0.446239 0.664189 0.068327 0.550562 -1.424206 0.745391 -1.453663 0.520305 0.672098 0.151072 0.838520 0.103806 1.003025 0.841618 1.075606 -0.462389 0.054201 -1.513657 -0.017713 0.155606 0.146809 -0.550893 0.550545 -0.029698 0.614177 1.138771 -1.588283 1.138425 0.139304 -0.489784 -0.736574 0.228483 -0.224778 -0.392783 -0.450190 0.591551 0.099698 -0.266662 -0.187029 0.279824 0.081941 -0.933145 -1.251099 0.237909 1.132547 -1.330817 0.311491 -0.269283 -0.274322 -0.122453 0.815461 0.944125 0.686878 1.148168 0.896475 0.215265 0.469257 -1.168825 0.187783 1.237118 0.431231 -1.267620 1.318887 -1.296447 -0.478335 0.342777 0.701964 0.562513 0.826628 -1.430369 -1.573136 0.683332 -0.159800 1.420494 0.401731 0.032888 -1.129598 1.236629 -0.561968 -0.498153 1.691997 0.528942 -1.073312 -0.190017 0.861486 -0.947924 -0.726003 0.671794 -0.959090 -0.279226 -0.296314 -0.043273 0.749605 -0.581335 -0.970755 -0.161151 -1.191054 1.539556 -0.136244 -0.112363 -0.038980 -0.733471 -1.137181 1.237711 0.103359 -0.602546 -0.807347 -0.687993 -0.568114 -1.355860 0.276481 0.697902 -0.323264 -0.801268 -1.169488 -0.183294 0.413017 -0.290119 0.291199 -1.932687 -0.767537 0.791168 0.142576 0.317213 -0.725569 -0.194833 -0.245135 -0.011077 0.427833 -0.466227 1.251103 1.663045 -0.734934 1.359907 0.367680 -0.947482 0.167229 1.121695 -1.137473 1.629886 -0.252941 0.515689 0.142331 0.554976 -0.840328 0.106647 0.075161 -0.553752 -0.009513 0.256775 -0.643143 -0.417232 -0.418359 -0.987865 -0.599712 0.276698 0.536008 0.082449 0.203444 0.186463 -0.156204 -0.773131 -0.911634 0.100373 0.842686 -0.540335 -0.612817 0.718036 0.417960 -0.346943 -0.270177 0.189563 0.604967 0.984873 -1.415084 0.641371 -0.138826 -0.004925 -1.700791 -1.155777 0.246159 -0.840218 -0.780842 0.411671 -1.584603 -0.411023 -0.768431 0.384746 -0.954427 -0.375308 0.511638 1.489499 0.209077 -0.750114 0.829586 -0.590352 0.936388 0.365189 -0.017230 0.051841 0.719121 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -1.025633 0.876982 0.054598 -0.939925 1.944533 -0.329110 0.052594 0.980685 -0.250868 1.267927 -1.209070 0.248635 -0.359853 -1.498457 0.048929 -0.201515 0.053842 1.052448 -0.301633 0.542606 0.764538 -0.566527 0.446641 -0.643105 -0.464325 -1.328619 -0.068037 0.348886 0.320416 0.117677 0.210742 0.072403 1.521576 0.012805 0.950212 0.924296 0.327248 1.680627 0.601277 0.092481 0.277725 0.708428 -0.476233 -1.752232 0.696685 -0.727362 -0.878439 -1.085721 0.634365 -1.659632 0.696536 0.959453 0.019103 -0.507652 -1.132842 0.522524 1.306662 0.017322 1.515349 0.364755 -0.748750 -0.305348 -0.937166 0.690051 -1.022184 0.326396 0.325503 -1.315201 -0.158487 0.777430 0.474359 -0.631448 -0.876514 0.300742 0.328493 -0.963364 0.331645 -0.412376 -0.750537 -0.830985 -0.711846 0.229367 -0.411046 1.067765 -0.119445 0.274470 -0.426372 0.193312 0.239365 -1.192610 -0.402698 1.212421 -0.283291 0.373403 -0.500200 1.015114 0.433479 -0.446467 -0.649629 -0.332026 0.288495 0.167320 0.558188 -0.263673 -0.596147 -1.058242 0.743137 0.403725 -0.066638 0.617691 0.282267 0.532858 0.272256 0.710289 -0.878234 0.676229 -1.829431 0.408672 -0.011096 0.250228 -0.310819 0.268496 0.339969 0.132876 0.865642 -1.491567 1.421214 0.292376 -0.291499 -1.060105 0.549287 0.038756 -0.434149 -0.276024 0.824601 -0.116608 -0.188312 -0.140839 0.177083 -0.151180 -0.959848 -0.857444 -0.162328 1.471386 -1.131460 0.377912 -0.379565 -0.639512 -0.002061 0.278135 0.485517 0.501455 1.511669 1.048091 -0.166610 0.558528 -1.328701 0.396622 1.852389 1.054687 -1.134558 0.824588 -0.341122 -0.040665 0.601893 0.463533 0.650320 0.688022 -0.870076 -0.881683 0.118620 -0.285386 1.352128 0.846870 0.557665 -1.510349 1.035787 0.125066 0.162111 1.949944 0.775453 -1.369143 0.492034 1.064585 -1.218695 -0.485530 0.284497 -0.363895 -0.331092 -0.399693 0.341924 0.685086 -1.000238 -1.308518 -0.413544 -1.170140 1.295118 -0.175609 -0.017581 0.254080 -1.205368 -0.250794 1.458227 0.295697 -0.421231 -0.444881 -0.839195 -0.866756 -1.636025 0.323446 0.569861 -0.737235 -0.626730 -1.017790 -0.208115 1.017088 -0.344668 0.071001 -1.294291 -0.303448 0.804251 0.274889 0.326416 -1.430322 -0.312065 0.090454 0.105111 0.587392 -0.034148 0.772866 1.474824 -0.910313 0.692574 0.747618 0.166727 0.626445 1.187773 -0.954705 1.471317 -0.387106 1.304536 0.094449 0.645713 -0.365450 0.214160 -0.043990 -0.113049 -0.203526 0.717122 -1.097609 -0.443705 0.684165 -0.863725 -0.679158 0.525641 0.853506 0.620658 0.152175 0.059562 -0.561488 -0.272453 -0.531444 0.035871 0.916427 -0.197310 -1.242607 0.244805 0.637309 -0.528440 -0.710320 0.325898 0.602896 1.007771 -1.276849 0.860675 -0.088976 -0.208830 -1.384044 -1.066691 0.605646 -0.773871 -0.970008 0.792775 -1.754627 -0.495274 -0.686325 0.820904 -1.371520 0.005643 -0.159478 1.315834 0.357473 -0.017899 0.956515 -0.212889 0.788778 -0.013355 0.000492 0.151341 1.315260 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +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 >) = -7.647017 5.306976 2.446901 -6.089276 16.463935 -2.758334 0.104101 9.622864 -5.307489 10.387550 -6.924457 1.387741 -2.765560 -10.725868 0.572018 -3.211213 -0.735224 7.088918 -1.850525 5.777080 5.626152 -3.778237 2.416346 -2.735914 -3.884581 -7.064249 -1.769796 3.189540 6.972055 -4.204488 -0.151886 -0.214912 12.829200 -1.937177 9.573495 7.805695 4.491869 10.065241 3.079284 -4.802919 -0.765405 5.881561 -5.878092 -9.843356 3.234407 -5.047624 -7.973988 -4.929067 5.074282 -7.617081 1.708042 8.739045 -1.788575 -2.038161 -6.149108 7.468879 5.706406 -0.511959 12.149879 1.764617 -5.357043 -2.905297 -10.543571 9.026903 -5.516387 4.440334 -2.868410 -9.508118 -0.381267 2.158677 2.366969 -9.079245 -5.131092 7.358405 3.343401 -8.073013 2.433267 -4.411570 -4.200042 -8.917795 -8.507273 2.285360 -4.080993 7.674640 -0.289702 3.089718 -2.666855 4.321666 -1.044232 -12.730854 0.316809 10.686308 -5.293432 0.396448 -5.971472 5.995914 1.214622 -0.209405 -5.708388 -3.848278 2.853148 0.171483 5.081156 -7.410153 4.237148 -9.222540 2.235257 1.412958 2.421021 5.394739 3.485002 4.157898 5.705070 9.186450 -6.485082 1.622174 -12.688136 2.678400 -3.376745 2.851552 -2.744961 5.242952 2.799685 3.212052 9.379700 -14.558651 7.067584 0.228756 -3.059879 -9.963609 2.566933 -3.041808 -3.386784 -3.148765 6.380679 -1.345772 -2.365647 -3.610424 2.904414 0.691297 -8.446207 -5.762698 0.896449 8.851898 -11.060732 2.707284 -2.954150 -4.250750 -0.101630 4.884850 6.932423 7.174811 12.276358 9.115292 -0.989048 5.305231 -12.037329 1.879169 11.190162 4.407148 -9.738218 9.154825 -6.722522 -2.055415 3.723516 7.303888 6.761708 5.628208 -7.637138 -7.737794 4.879569 1.230551 11.194364 4.227253 2.953896 -7.011380 7.067698 -2.285668 -3.848268 14.996605 4.463689 -10.698638 4.061031 5.368038 -4.762084 -4.125433 4.341666 -7.114319 -1.402214 -3.543613 1.016213 6.173790 -6.570179 -6.924162 0.139175 -9.303821 11.308325 -2.027958 -3.235127 3.315936 -9.510906 -5.209980 11.926978 2.416082 -3.981345 -6.464359 -8.589067 -6.080390 -10.291496 3.502034 3.173731 -3.361701 -6.373132 -9.235591 -1.566678 8.097636 0.794219 4.230965 -13.312674 -2.999279 5.737726 2.401888 6.117800 -9.227068 -2.032830 -1.236773 -0.921526 4.199706 -2.376026 6.666780 13.632784 -7.393488 6.546918 3.120330 -3.268823 2.927971 7.222294 -10.704508 12.344320 0.344624 10.494633 -0.007860 4.333214 -4.748168 1.858078 1.175448 0.496415 0.239546 3.725159 -4.790811 -3.896680 1.005715 -7.953877 -6.708562 0.344916 4.441220 0.319956 2.825392 -1.903646 -4.958443 -3.909156 -4.980754 0.924630 7.694353 -2.986617 -6.748704 4.873080 1.712301 -1.990694 -1.198690 1.860535 3.999260 7.259742 -11.356276 2.874444 -1.470120 1.129928 -9.606745 -10.043384 1.006571 -5.615786 -5.409498 5.437478 -12.157404 -3.298607 -6.677801 2.487320 -10.763915 -1.877235 1.162190 11.961033 4.519200 -3.364726 6.623924 -2.891178 7.106453 0.566991 -0.140746 1.074814 7.527052 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.371752 0.266504 -0.395063 -0.283966 0.965292 -0.344616 -0.020917 0.683177 -0.331411 0.518794 -0.376378 0.404072 0.033067 -0.738809 0.145251 0.417438 0.203588 0.466450 0.004438 0.138922 0.231711 -0.223222 0.085601 -0.183647 -0.193148 -0.649407 0.162277 0.208421 0.289896 -0.194478 -0.240512 0.224808 0.703173 -0.113956 0.441864 0.441759 0.319471 0.437859 0.593702 -0.549184 0.179421 0.161113 -0.144968 -0.580749 0.124477 -0.133076 -0.411592 -0.253069 0.265947 -0.396333 0.245817 0.390247 0.005219 -0.094397 -0.571912 0.319551 0.454621 -0.277480 0.608745 0.169418 -0.316441 -0.402578 -0.160797 0.796887 -0.449008 -0.205702 -0.008825 -0.477147 0.040913 0.479622 0.066870 -0.311050 -0.230984 0.108817 0.097121 -0.479080 0.158797 -0.030815 0.209067 -0.574615 -0.351951 0.204221 -0.320071 0.502476 0.050232 0.141770 -0.280859 0.042917 0.092239 -0.496360 -0.084546 0.365619 -0.280292 0.097949 -0.189007 0.548846 0.340329 -0.239268 -0.116820 -0.436788 0.127503 -0.136923 0.218618 -0.224773 0.324817 -0.254130 0.055071 -0.089711 0.153646 0.574653 0.142208 0.212563 0.142047 0.257285 -0.059071 -0.198761 -0.829574 0.260123 0.014248 0.014333 -0.207668 0.042373 0.477347 0.087369 0.391378 -0.720807 0.502639 0.160918 0.146882 -0.406940 0.167300 0.082111 -0.153159 -0.147214 0.402087 -0.127547 -0.012191 0.015914 0.265361 0.115809 -0.668623 -0.257738 -0.148633 0.773981 -0.817093 0.194647 -0.121461 -0.184534 -0.005901 0.074904 0.247844 0.324817 0.602232 0.421516 -0.148081 0.588491 -0.710517 0.220480 0.780438 0.441288 -0.406519 0.457461 -0.420320 -0.144727 0.196763 0.360087 0.240964 0.030086 -0.366840 -0.278121 0.412788 0.013865 0.577080 -0.100221 0.180257 -0.491425 0.335556 0.233947 0.044107 0.863136 0.079599 -0.707299 0.537499 0.560142 -0.237509 -0.001677 0.180227 -0.442690 -0.236560 -0.295705 0.233110 0.418127 -0.516523 -0.277855 -0.125077 -0.371464 0.425660 -0.047797 -0.245522 0.156327 -0.364737 0.337554 0.701814 0.175475 0.038336 -0.225801 -0.481590 -0.472766 -0.667952 0.018155 0.124409 -0.289566 -0.026456 -0.452503 -0.373614 0.604751 -0.083089 0.073258 -1.111227 0.208047 0.393826 0.379180 -0.100678 -0.484391 -0.092920 0.246189 0.029843 -0.000210 -0.316837 0.380348 0.409794 -0.423798 0.280554 0.192602 0.145788 0.410039 0.312238 -0.486135 0.623026 0.030999 0.591723 0.261331 0.236017 -0.324568 0.068670 -0.183917 -0.007495 -0.278053 0.161587 -0.535144 -0.197439 0.430528 -0.099100 -0.604371 0.098492 0.452121 0.327025 0.015623 -0.279061 -0.014894 -0.130673 -0.414823 0.234043 0.283769 -0.219835 -0.353045 0.277024 0.441177 -0.218237 -0.094001 0.127551 0.313336 0.445029 -0.554117 0.344924 0.019411 0.335769 -0.555551 -0.684246 0.319405 -0.115483 -0.255720 0.250250 -0.998096 -0.414134 -0.224540 0.343801 -0.861128 0.210733 -0.001119 0.632222 -0.126310 -0.047055 0.385133 -0.114106 0.048803 -0.089141 0.197315 -0.034315 0.391253 +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.882757 0.649775 -0.196649 -0.784237 1.917635 -0.604038 0.036271 1.281103 -0.021299 1.045750 -1.075109 0.324429 0.018073 -1.083889 0.133530 0.183287 0.121493 1.130579 -0.321336 0.299705 0.616618 0.047026 0.172915 -0.559162 -0.398565 -0.894481 -0.119060 0.324343 0.078746 -0.252081 -0.310186 0.305001 1.508709 -0.133599 1.248591 1.084618 0.682799 1.172146 0.645446 0.137492 0.468465 0.471407 -0.426658 -1.342290 0.338463 -0.434558 -0.886237 -0.775713 0.497529 -1.155056 1.356689 0.848555 -0.011148 -0.253802 -0.772525 0.653496 0.629957 -0.129162 1.269495 0.406157 -1.069720 0.149712 -0.714776 1.490240 -0.872394 0.580925 0.059004 -1.321037 -0.282370 0.796308 0.990746 -1.076931 -0.916765 0.350410 0.058088 -0.872077 0.393186 -0.321676 0.525284 -0.822811 -0.776816 0.470055 -0.436294 0.777723 0.031628 0.248923 -1.052338 0.241359 0.143003 -1.082811 -0.273975 1.080044 -0.640741 0.475627 -0.824402 0.416127 0.482676 -0.329323 -0.250312 -0.760416 0.396705 -0.059947 0.462356 0.094143 0.225314 -0.622074 0.424597 0.572711 0.025739 0.724428 -0.012368 0.710452 0.657506 0.623526 0.023634 0.246849 -1.668900 0.588445 -0.275457 0.038830 -0.185558 0.211493 0.618761 0.298366 0.807330 -1.215393 1.096401 0.245437 -0.345262 -0.777691 0.437500 -0.087421 -0.474953 -0.396013 0.735041 0.069012 -0.151086 -0.115413 0.297294 -0.161841 -0.894765 -0.955438 -0.242054 0.778604 -0.946215 0.303614 -0.287546 -0.397715 -0.099265 0.480661 0.560567 0.592400 1.393989 0.907165 -0.127744 -0.040164 -1.324501 0.203389 1.342082 0.661846 -0.994100 0.958897 -0.594515 -0.242192 0.500318 0.751488 0.271947 0.473622 -0.694567 -0.687682 0.000823 -0.225293 1.235095 0.454755 0.300890 -0.939940 0.565610 -0.113157 -0.244281 1.943944 0.571389 -1.345331 0.144103 1.043188 -0.265938 -0.643421 0.481346 -0.731033 -0.564423 -0.374183 0.359042 0.558273 -0.945312 -0.874639 0.161240 -1.026328 1.091156 -0.067461 -0.496682 0.101494 -1.189502 0.118040 1.698578 0.360097 -0.264948 -0.257683 -0.784288 -0.209634 -1.396829 0.190291 0.613282 -0.278210 -0.402181 -0.854521 -0.149613 0.987411 -0.378555 0.276989 -1.012293 -0.327524 0.765124 -0.127144 0.137420 -1.521742 -0.297307 -0.129106 0.168379 0.327691 -0.343594 0.558472 1.386418 -0.740416 0.479756 1.306207 -0.005477 0.240686 0.991178 -1.030305 1.360246 -0.153178 0.597125 0.410933 0.538315 -0.651724 -0.013898 -0.206126 0.273326 -0.390336 0.623289 -0.940346 -0.326692 0.323617 -0.632796 -0.676052 0.374072 0.798111 0.198086 0.064374 -0.305669 -0.448229 -0.348168 -0.852915 0.208178 0.781887 -0.329494 -0.998563 0.502911 0.655033 -0.815476 -0.226350 0.264990 0.500591 1.094993 -1.204032 0.758883 0.135164 0.247492 -1.473155 -0.983607 0.369489 -0.673528 -0.660138 0.151111 -1.483668 -0.973408 -0.611315 0.619973 -1.221444 -0.149121 0.220290 1.361529 0.426835 -0.214075 0.756020 -0.322452 0.584215 0.164627 -0.020502 -0.020177 1.066551 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.465709 0.463480 -0.107123 -0.410562 0.836613 -0.315512 0.012750 0.501246 -0.078343 0.501149 -0.594961 0.149055 -0.089285 -0.811588 0.108620 0.083700 0.112571 0.578648 -0.031667 0.249774 0.369131 -0.309529 0.082916 -0.372659 -0.162805 -0.632346 0.045557 0.132586 0.115166 -0.007317 0.001976 0.194084 0.748493 0.085247 0.515803 0.537926 0.138042 0.782998 0.479305 -0.043576 0.138822 0.331501 -0.173493 -0.868266 0.312259 -0.269585 -0.287737 -0.517058 0.233093 -0.633994 0.481426 0.432348 0.042759 -0.175415 -0.664360 0.133919 0.633426 0.076404 0.663036 0.264186 -0.273926 -0.086665 -0.314914 0.360123 -0.536686 0.006855 0.251500 -0.538000 0.052357 0.418698 0.302290 -0.320836 -0.389822 0.048458 0.055600 -0.445904 0.207458 -0.113512 -0.259479 -0.416640 -0.383321 0.149923 -0.219826 0.575472 -0.054828 0.074804 -0.380808 0.034782 0.195660 -0.471695 -0.249628 0.444058 -0.143002 0.168583 -0.096798 0.630470 0.362647 -0.222330 -0.200270 -0.256261 0.193579 -0.001610 0.233968 0.071164 -0.221062 -0.385545 0.359268 0.117801 -0.120232 0.420341 0.219170 0.321233 0.139680 0.234387 -0.277661 0.148030 -0.928806 0.222886 0.039526 0.061798 -0.070394 0.042080 0.223582 -0.027115 0.312766 -0.668694 0.659137 0.254448 0.022662 -0.428761 0.293323 0.015811 -0.250813 -0.207510 0.425377 0.042268 -0.053555 0.020685 0.061599 -0.046648 -0.453226 -0.439556 -0.166770 0.853920 -0.597356 0.142880 -0.190266 -0.302507 -0.050606 0.034500 0.141831 0.217032 0.663138 0.470774 -0.153021 0.229143 -0.628841 0.166594 0.916787 0.490093 -0.496074 0.365001 -0.112945 -0.053243 0.276779 0.244083 0.266366 0.171332 -0.433958 -0.418966 0.082352 -0.232714 0.598440 0.230068 0.254232 -0.652022 0.573284 0.279871 -0.022395 1.008726 0.213244 -0.623552 0.252269 0.583134 -0.534884 -0.195269 0.130019 -0.171516 -0.121654 -0.225250 0.213925 0.276627 -0.558015 -0.564179 -0.237103 -0.534480 0.518200 -0.027077 0.010327 0.044604 -0.521543 0.071417 0.819203 0.156530 -0.141529 -0.188007 -0.394340 -0.377572 -0.766293 0.125703 0.217135 -0.325999 -0.207642 -0.437537 -0.147129 0.585041 -0.285508 -0.063949 -0.615228 -0.099107 0.369257 0.173557 0.011893 -0.689587 -0.201075 0.178131 0.134298 0.217362 -0.013271 0.408063 0.705160 -0.415701 0.211295 0.523828 0.251950 0.383638 0.592424 -0.450812 0.651805 -0.238205 0.584803 0.140804 0.311182 -0.272343 -0.026621 -0.043881 0.003385 -0.194063 0.298914 -0.527386 -0.130698 0.390744 -0.287642 -0.352286 0.304460 0.427561 0.379274 0.004135 -0.023176 -0.171456 -0.060734 -0.281829 0.073309 0.435338 -0.025078 -0.562787 0.098873 0.398929 -0.232481 -0.260125 0.164703 0.247236 0.531978 -0.571301 0.458564 -0.011884 0.000000 -0.586344 -0.585592 0.372667 -0.309870 -0.386354 0.341534 -0.922463 -0.291035 -0.282802 0.439157 -0.775468 0.164860 -0.121086 0.574441 0.101551 -0.002318 0.406918 -0.101205 0.303633 0.007247 0.028060 -0.025998 0.666780 +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 >&) = -3.725189 2.368295 0.518717 -2.933849 8.597940 -1.867505 0.096478 5.161260 -1.985067 5.107673 -3.622970 0.809121 -1.030221 -5.544347 0.422854 -0.719733 0.139743 3.898831 -1.056112 2.375141 2.627458 -1.473094 1.324926 -1.664202 -1.791227 -4.102642 -0.668208 1.517319 2.881960 -1.871966 -0.439203 0.130148 6.664586 -0.736497 4.532374 3.753923 2.451934 5.028325 1.952330 -2.051302 0.308194 2.649670 -2.547574 -4.973028 1.650044 -2.258811 -4.045679 -2.600814 2.339341 -4.145594 1.774942 4.034396 -0.546568 -1.014853 -3.178404 3.478915 3.468987 -0.601153 5.720102 0.964159 -2.649641 -1.484481 -4.581798 4.959595 -2.953118 1.822476 -0.925257 -4.853018 -0.641239 1.762755 1.762347 -4.468421 -2.808071 3.081382 1.714906 -3.874590 1.294538 -1.726268 -0.758299 -4.713332 -4.094980 1.241934 -2.363345 3.735036 -0.057605 1.501259 -1.456685 1.633264 0.019817 -5.831579 -0.248820 4.979704 -2.727842 0.510543 -3.016223 2.748358 0.759838 -0.485514 -2.445815 -2.696378 1.175426 -0.108833 2.306971 -2.592534 1.742975 -4.005988 1.150055 0.789616 1.066254 3.173546 1.284912 2.004032 2.311753 4.050943 -2.851969 0.631037 -6.436091 1.583646 -1.605889 1.202017 -1.399175 2.010264 2.042385 1.723849 4.225350 -7.082554 3.906090 0.430970 -1.226152 -4.400254 1.270393 -1.014041 -1.639884 -1.388011 3.128503 -0.763559 -0.887371 -1.360738 1.577951 0.218756 -4.356143 -3.186746 -0.103870 4.444680 -5.995995 1.388723 -1.330073 -2.048592 -0.079838 2.037897 3.140374 3.125113 5.650826 4.235551 -0.819937 2.936948 -5.918161 1.191669 5.977964 2.201112 -4.641427 4.389861 -3.084957 -0.842234 2.012332 3.486439 2.968827 2.219828 -3.540638 -3.400027 2.065112 0.321836 5.407005 2.095791 1.425955 -4.369164 3.281211 -0.657276 -1.309321 8.036462 2.313443 -5.550389 1.991846 3.215955 -2.385426 -1.883147 1.706078 -3.380089 -1.126927 -2.038138 1.029958 2.864645 -3.246782 -3.438900 0.074668 -4.390669 5.208049 -0.792070 -2.050964 1.514377 -4.389772 -1.980691 6.401565 1.224371 -1.531132 -2.860223 -4.333685 -2.754464 -5.417839 1.441855 1.399160 -1.757706 -2.499722 -4.316367 -0.880483 4.530030 -0.027448 1.743716 -7.442518 -1.057725 2.717577 1.061585 2.068850 -5.215293 -0.977457 -0.331504 -0.230230 1.560723 -1.313133 2.993247 6.410624 -3.675646 2.885767 1.837807 -1.481908 1.557633 3.558933 -4.975411 5.762231 -0.165931 5.090372 0.330247 2.259054 -2.285485 0.918877 0.047251 0.322800 -0.533247 1.965546 -3.031868 -1.929486 1.198121 -3.205799 -3.957077 0.488321 2.504708 0.801029 1.044705 -1.490755 -2.292464 -1.417907 -2.256694 0.693292 3.538731 -1.287613 -3.574984 2.192232 1.633222 -1.491252 -1.235444 0.895924 1.966900 3.757138 -5.426098 1.953123 -0.421034 0.882883 -4.751723 -5.112143 1.054860 -2.851637 -2.713104 2.543632 -6.586116 -2.379022 -3.013827 1.632365 -5.417577 -0.671902 0.512663 5.774521 1.842523 -1.393214 3.353754 -1.279884 2.965613 0.239978 0.195929 0.467803 3.783941 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.616657 0.737990 -0.153325 -0.487662 1.558996 -0.168529 0.280318 1.094559 -1.054343 0.979923 -0.604266 0.546901 0.037451 -1.118724 0.157573 -0.014635 -0.013947 0.461318 0.028121 0.519452 0.372093 -0.540991 0.073163 -0.227140 -0.419878 -1.097099 0.227711 0.305235 0.853028 -0.015196 -0.083313 0.117319 0.998036 -0.264063 0.813539 0.755703 0.363865 0.515749 0.628581 -0.964688 -0.066792 0.305898 -0.445304 -0.778330 -0.076109 -0.279434 -0.882573 -0.339930 0.367840 -0.723386 -0.225046 0.742713 -0.120887 -0.095712 -0.678680 0.745794 0.530813 -0.450292 1.051386 0.194529 -0.485251 -0.906320 -0.591151 1.306159 -0.358952 -0.218968 -0.182167 -0.750095 0.284236 0.483388 -0.468719 -0.156200 -0.067756 0.599140 0.437713 -0.874292 0.188595 -0.319944 -0.845816 -0.676649 -0.357070 0.355143 -0.283642 0.873207 0.164640 0.292217 -0.060042 0.311238 -0.129321 -1.144575 0.023842 1.076875 -0.423177 -0.267416 -0.709518 1.000661 0.589213 -0.065594 -0.324902 -0.444539 0.327036 -0.034244 0.363262 -1.266250 0.319987 -0.946808 -0.083508 -0.008740 0.334922 1.104411 -0.008514 0.404533 0.441949 0.789664 -0.501109 0.039509 -1.067841 0.380271 -0.279880 0.151524 -0.388630 0.199728 0.585025 0.392008 0.820904 -1.258494 0.634944 0.264363 0.125114 -1.015176 0.136429 -0.236350 -0.239574 -0.237299 0.486130 -0.153964 -0.031312 -0.229004 0.353110 0.220971 -0.840000 -0.466722 0.113664 1.202019 -1.354491 0.296222 -0.153016 -0.046731 -0.139204 0.476442 0.691938 0.641968 1.101582 0.695781 -0.015542 0.984526 -1.030339 0.242424 1.275751 0.660471 -0.746510 0.913462 -0.893333 -0.398201 0.073588 0.523904 0.521332 0.545451 -1.071631 -0.833577 0.620176 0.086812 1.070908 0.267659 0.137037 -0.557151 0.971190 -0.295302 -0.338861 0.949241 0.524339 -0.983196 0.676196 0.624243 -0.842615 -0.094111 0.553033 -0.953698 -0.196231 -0.397678 0.065035 0.655096 -0.626472 -0.404164 -0.163973 -0.730077 0.957537 -0.076905 -0.071173 0.090181 -0.435443 -0.048462 0.933207 0.285021 -0.186987 -0.534022 -0.608470 -1.279471 -0.879784 0.098545 0.249380 -0.460612 -0.412444 -0.864100 -0.591254 0.632388 -0.020129 0.391315 -1.621149 0.121454 0.602497 0.721806 0.210699 -0.542631 -0.146071 0.008257 -0.064032 0.166016 -0.477838 0.974645 0.870412 -0.515073 0.805575 -0.188656 -0.234919 0.529458 0.497402 -0.960298 1.096388 0.193573 0.856992 0.334546 0.402599 -0.473103 0.129000 -0.120202 -0.472059 -0.153001 0.338089 -0.605985 -0.318092 0.415526 -0.432730 -0.809140 0.013750 0.476818 0.250472 0.102565 -0.174842 -0.359748 -0.379579 -0.896937 0.245406 0.536542 -0.434317 -0.396691 0.556694 0.387337 -0.089188 -0.165420 0.171983 0.514007 0.548897 -0.972400 0.322713 -0.092935 0.420702 -0.992057 -1.070040 0.313102 -0.354460 -0.729305 0.352274 -1.337467 -0.221450 -0.539086 0.197270 -1.499192 -0.366701 0.289822 1.235461 -0.249433 -0.258080 0.493564 -0.315017 0.359620 -0.040757 0.428239 0.063604 0.530129 +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.806451 0.669831 -0.171136 -0.709101 1.816440 -0.491633 0.078973 1.208779 -0.288743 1.003352 -0.961996 0.431664 0.013144 -1.127199 0.148610 0.160681 0.111150 0.951502 -0.215010 0.344646 0.555183 -0.137294 0.156953 -0.492695 -0.385825 -1.000121 -0.015932 0.310776 0.267728 -0.172923 -0.209808 0.263546 1.355737 -0.145742 1.072321 0.972094 0.608793 1.029839 0.649221 -0.143899 0.345085 0.429428 -0.404033 -1.221811 0.285397 -0.403821 -0.858767 -0.672704 0.458830 -1.068421 0.885358 0.810413 -0.019642 -0.234449 -0.780768 0.650946 0.693452 -0.240478 1.189413 0.363711 -0.885179 -0.164225 -0.652009 1.347525 -0.763383 0.333120 0.039915 -1.146401 -0.140066 0.739084 0.601820 -0.813250 -0.692484 0.357251 0.148470 -0.855444 0.339985 -0.297159 0.166362 -0.808712 -0.652419 0.416665 -0.389275 0.815703 0.055385 0.243478 -0.742844 0.214749 0.113284 -1.051910 -0.232939 1.028497 -0.555804 0.294275 -0.751908 0.599764 0.504638 -0.289826 -0.270877 -0.688093 0.363013 -0.043068 0.427081 -0.217138 0.186392 -0.689909 0.313129 0.375055 0.080903 0.804443 -0.011352 0.601532 0.524878 0.620648 -0.163369 0.203312 -1.526352 0.520218 -0.219212 0.079446 -0.243653 0.171111 0.613301 0.297290 0.770633 -1.211168 1.009158 0.263210 -0.203246 -0.817010 0.376509 -0.091572 -0.413692 -0.335898 0.675244 0.000175 -0.111099 -0.109844 0.311051 -0.069426 -0.887249 -0.843347 -0.189078 0.958538 -1.093695 0.298305 -0.257523 -0.328948 -0.104271 0.416442 0.550602 0.568572 1.290455 0.841431 -0.118622 0.333351 -1.232262 0.235137 1.357731 0.729985 -0.910605 0.899857 -0.629640 -0.242446 0.413034 0.647037 0.335195 0.452221 -0.783919 -0.701099 0.209057 -0.174209 1.167087 0.398530 0.285936 -0.931435 0.674278 -0.078204 -0.208004 1.703560 0.539894 -1.264322 0.357107 0.959207 -0.434092 -0.466729 0.444971 -0.739338 -0.480197 -0.374038 0.304192 0.572691 -0.876385 -0.784623 0.020508 -0.931662 1.023106 -0.062467 -0.346806 0.117348 -0.961763 0.063372 1.474569 0.322016 -0.232710 -0.324905 -0.732714 -0.488375 -1.274310 0.164817 0.505751 -0.371716 -0.383870 -0.845751 -0.271722 0.925081 -0.312970 0.251495 -1.238317 -0.186493 0.711270 0.121298 0.131915 -1.290387 -0.266635 -0.052693 0.114182 0.276706 -0.364075 0.644898 1.229472 -0.698359 0.555796 0.866976 -0.036007 0.352109 0.872430 -0.963394 1.265141 -0.083308 0.765149 0.378694 0.514836 -0.606902 0.028799 -0.192324 0.068481 -0.340691 0.550668 -0.886555 -0.317331 0.409638 -0.559324 -0.727934 0.319701 0.727100 0.271651 0.056086 -0.258405 -0.382099 -0.324218 -0.807780 0.214313 0.711743 -0.356691 -0.873600 0.459243 0.623078 -0.625857 -0.259059 0.252950 0.507722 0.951592 -1.119090 0.679564 0.070349 0.257861 -1.329298 -1.029624 0.409760 -0.589454 -0.677871 0.245259 -1.490906 -0.768955 -0.573681 0.549684 -1.305589 -0.136340 0.179866 1.280078 0.221949 -0.181192 0.707437 -0.290339 0.504055 0.076115 0.115781 -0.004474 0.933154 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = -0.619329 0.364027 -0.160610 -0.605545 1.341130 -0.442670 -0.075947 0.824172 0.165212 0.760880 -0.748027 0.233736 -0.034602 -0.734079 0.072004 0.132604 0.069219 0.805807 -0.300668 0.131766 0.430823 0.071102 0.219881 -0.400979 -0.293612 -0.724172 -0.061695 0.256137 -0.005280 -0.136850 -0.216771 0.155931 1.012610 -0.170585 0.719749 0.663940 0.513928 0.867593 0.392539 0.165332 0.450949 0.320115 -0.248148 -0.949129 0.279624 -0.307890 -0.615833 -0.542457 0.431425 -0.903716 0.900076 0.551262 0.033162 -0.301111 -0.561340 0.523908 0.476766 -0.071066 0.874429 0.249212 -0.702517 0.082655 -0.531151 1.029110 -0.740732 0.433087 0.011555 -0.923309 -0.336848 0.650001 0.600336 -0.628517 -0.645438 0.117751 0.064642 -0.595734 0.242440 -0.222442 0.544296 -0.497697 -0.474708 0.293634 -0.314611 0.483463 -0.014356 0.198981 -0.633712 0.148326 0.156142 -0.652272 -0.260285 0.684329 -0.400417 0.351354 -0.444962 0.229872 0.341763 -0.381606 -0.123117 -0.471099 0.199637 -0.024379 0.344714 0.093755 0.136305 -0.378068 0.349490 0.444422 0.028055 0.393168 -0.108261 0.429054 0.273060 0.347181 0.058815 0.192494 -1.229806 0.343374 -0.137222 0.054607 -0.172148 0.136043 0.450063 0.224199 0.523737 -0.808809 0.888758 0.093861 -0.241131 -0.434095 0.356837 0.130369 -0.273495 -0.213652 0.509137 -0.010358 -0.139697 -0.008087 0.290472 -0.104969 -0.629372 -0.551144 -0.189252 0.437351 -0.577262 0.253514 -0.204982 -0.314106 0.020130 0.244267 0.326423 0.322593 0.955494 0.632350 -0.066160 0.007771 -0.911882 0.205242 0.904057 0.362062 -0.646828 0.600911 -0.375964 -0.116864 0.376269 0.485894 0.146113 0.448330 -0.353531 -0.405711 -0.078307 -0.183183 0.824333 0.305933 0.214331 -0.783666 0.263502 -0.101142 0.073959 1.336708 0.466551 -0.984349 0.151542 0.776783 -0.266677 -0.485804 0.239948 -0.366017 -0.357531 -0.264030 0.306936 0.433637 -0.639781 -0.700178 0.025630 -0.660302 0.710338 -0.096974 -0.412022 0.144286 -0.820785 0.135630 1.075267 0.251397 -0.175623 -0.177628 -0.567507 -0.187107 -1.046718 0.129411 0.432942 -0.260979 -0.243773 -0.558682 -0.103325 0.681136 -0.279736 0.117207 -0.772573 -0.182105 0.545565 -0.012189 0.082437 -0.926401 -0.149814 -0.059838 0.072535 0.213297 -0.241221 0.270603 0.892855 -0.555440 0.366552 0.820904 -0.073032 0.176876 0.738280 -0.643398 0.943001 -0.099289 0.346971 0.247169 0.336927 -0.381720 0.079943 -0.167659 0.092180 -0.253732 0.398670 -0.733439 -0.282486 0.265273 -0.441533 -0.436681 0.323614 0.658915 0.238329 0.061152 -0.155269 -0.284027 -0.229041 -0.523892 0.094971 0.507365 -0.196955 -0.759997 0.308341 0.535288 -0.670614 -0.348456 0.178305 0.375969 0.755336 -0.807332 0.626979 0.112960 0.108993 -1.054238 -0.592104 0.258546 -0.431460 -0.440149 0.110529 -1.020324 -0.740981 -0.372634 0.570451 -0.748739 -0.075575 0.099729 0.849574 0.319546 -0.056034 0.603610 -0.201203 0.374760 0.108763 -0.090988 0.019906 0.716643 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.349402 0.412341 0.064388 -0.346578 0.628117 -0.207014 -0.003454 0.399871 -0.068816 0.433649 -0.444692 0.181043 -0.058032 -0.601498 0.069460 -0.077558 0.010887 0.403821 -0.013131 0.208831 0.266192 -0.251299 0.069928 -0.274022 -0.159463 -0.661915 0.070065 0.112124 0.136096 0.075526 0.111285 0.097001 0.531883 0.003733 0.351841 0.400063 0.120312 0.546803 0.325953 -0.001888 0.102141 0.232061 -0.138563 -0.612641 0.182313 -0.181303 -0.242630 -0.363212 0.189847 -0.546246 0.152942 0.321195 0.029149 -0.164711 -0.474261 0.207859 0.443988 0.030358 0.492094 0.171581 -0.175311 -0.162626 -0.307143 0.314626 -0.422540 -0.031053 0.119926 -0.378838 0.061869 0.325833 0.015116 -0.048185 -0.149593 0.057663 0.096664 -0.370298 0.121823 -0.132814 -0.362031 -0.222973 -0.175933 0.127730 -0.078774 0.419012 -0.023776 0.086356 -0.149448 0.068316 0.119139 -0.365585 -0.191807 0.384911 -0.100147 0.005684 -0.057400 0.515195 0.357966 -0.187157 -0.059907 -0.148302 0.144414 0.012114 0.184468 -0.116752 -0.204569 -0.355594 0.232048 0.091302 -0.077251 0.347169 -0.016631 0.257070 0.053488 0.202945 -0.271313 0.182335 -0.711228 0.158036 -0.004190 0.074151 -0.079703 0.017724 0.159069 0.090077 0.246076 -0.499074 0.520477 0.166006 0.055145 -0.333003 0.215638 0.039606 -0.147840 -0.146463 0.281772 0.028786 -0.045297 0.010183 0.082413 -0.008915 -0.267045 -0.345481 -0.075368 0.626270 -0.470001 0.130259 -0.128159 -0.164266 -0.034346 0.028828 0.131817 0.142159 0.512947 0.351422 -0.044931 0.260613 -0.456996 0.100698 0.669926 0.320310 -0.337753 0.300723 -0.116858 -0.092490 0.170245 0.167889 0.189579 0.283647 -0.409534 -0.408920 0.046081 -0.192597 0.457588 0.229063 0.122765 -0.523416 0.492465 0.091042 -0.009888 0.678399 0.262677 -0.476791 0.216158 0.422768 -0.572043 -0.192848 0.107011 -0.130166 -0.036155 -0.140745 0.116376 0.229647 -0.367452 -0.441995 -0.216376 -0.391116 0.399053 -0.039795 0.069777 0.039208 -0.308799 -0.071688 0.524652 0.129544 -0.132243 -0.187933 -0.275722 -0.429949 -0.573399 0.083729 0.168890 -0.297830 -0.175332 -0.338097 -0.126179 0.361476 -0.222071 -0.034779 -0.555354 -0.103298 0.286406 0.216975 0.019268 -0.406163 -0.118536 0.078000 0.055131 0.158324 -0.017884 0.368613 0.551132 -0.277940 0.276056 0.208293 0.008159 0.295406 0.466457 -0.369521 0.511098 -0.153642 0.365932 0.122301 0.202939 -0.203494 0.003387 -0.024900 -0.194899 -0.100354 0.196932 -0.393269 -0.115414 0.266161 -0.272493 -0.211351 0.231159 0.334424 0.295745 0.015371 0.091548 -0.184275 -0.066731 -0.257825 0.009466 0.311849 -0.011631 -0.423264 0.105030 0.312547 -0.177657 -0.362943 0.098877 0.216918 0.341411 -0.430239 0.367537 -0.008753 -0.037913 -0.489632 -0.428360 0.284316 -0.269253 -0.371421 0.178768 -0.682103 -0.177190 -0.212374 0.326210 -0.617014 0.002599 -0.033649 0.435685 0.034087 -0.005757 0.312353 -0.114370 0.250071 0.036233 0.046432 -0.014325 0.471679 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.371752 0.266504 -0.395063 -0.283966 0.965292 -0.344616 -0.020917 0.683177 -0.331411 0.518794 -0.376378 0.404072 0.033067 -0.738809 0.145251 0.417438 0.203588 0.466450 0.004438 0.138922 0.231711 -0.223222 0.085601 -0.183647 -0.193148 -0.649407 0.162277 0.208421 0.289896 -0.194478 -0.240512 0.224808 0.703173 -0.113956 0.441864 0.441759 0.319471 0.437859 0.593702 -0.549184 0.179421 0.161113 -0.144968 -0.580749 0.124477 -0.133076 -0.411592 -0.253069 0.265947 -0.396333 0.245817 0.390247 0.005219 -0.094397 -0.571912 0.319551 0.454621 -0.277480 0.608745 0.169418 -0.316441 -0.402578 -0.160797 0.796887 -0.449008 -0.205702 -0.008825 -0.477147 0.040913 0.479622 0.066870 -0.311050 -0.230984 0.108817 0.097121 -0.479080 0.158797 -0.030815 0.209067 -0.574615 -0.351951 0.204221 -0.320071 0.502476 0.050232 0.141770 -0.280859 0.042917 0.092239 -0.496360 -0.084546 0.365619 -0.280292 0.097949 -0.189007 0.548846 0.340329 -0.239268 -0.116820 -0.436788 0.127503 -0.136923 0.218618 -0.224773 0.324817 -0.254130 0.055071 -0.089711 0.153646 0.574653 0.142208 0.212563 0.142047 0.257285 -0.059071 -0.198761 -0.829574 0.260123 0.014248 0.014333 -0.207668 0.042373 0.477347 0.087369 0.391378 -0.720807 0.502639 0.160918 0.146882 -0.406940 0.167300 0.082111 -0.153159 -0.147214 0.402087 -0.127547 -0.012191 0.015914 0.265361 0.115809 -0.668623 -0.257738 -0.148633 0.773981 -0.817093 0.194647 -0.121461 -0.184534 -0.005901 0.074904 0.247844 0.324817 0.602232 0.421516 -0.148081 0.588491 -0.710517 0.220480 0.780438 0.441288 -0.406519 0.457461 -0.420320 -0.144727 0.196763 0.360087 0.240964 0.030086 -0.366840 -0.278121 0.412788 0.013865 0.577080 -0.100221 0.180257 -0.491425 0.335556 0.233947 0.044107 0.863136 0.079599 -0.707299 0.537499 0.560142 -0.237509 -0.001677 0.180227 -0.442690 -0.236560 -0.295705 0.233110 0.418127 -0.516523 -0.277855 -0.125077 -0.371464 0.425660 -0.047797 -0.245522 0.156327 -0.364737 0.337554 0.701814 0.175475 0.038336 -0.225801 -0.481590 -0.472766 -0.667952 0.018155 0.124409 -0.289566 -0.026456 -0.452503 -0.373614 0.604751 -0.083089 0.073258 -1.111227 0.208047 0.393826 0.379180 -0.100678 -0.484391 -0.092920 0.246189 0.029843 -0.000210 -0.316837 0.380348 0.409794 -0.423798 0.280554 0.192602 0.145788 0.410039 0.312238 -0.486135 0.623026 0.030999 0.591723 0.261331 0.236017 -0.324568 0.068670 -0.183917 -0.007495 -0.278053 0.161587 -0.535144 -0.197439 0.430528 -0.099100 -0.604371 0.098492 0.452121 0.327025 0.015623 -0.279061 -0.014894 -0.130673 -0.414823 0.234043 0.283769 -0.219835 -0.353045 0.277024 0.441177 -0.218237 -0.094001 0.127551 0.313336 0.445029 -0.554117 0.344924 0.019411 0.335769 -0.555551 -0.684246 0.319405 -0.115483 -0.255720 0.250250 -0.998096 -0.414134 -0.224540 0.343801 -0.861128 0.210733 -0.001119 0.632222 -0.126310 -0.047055 0.385133 -0.114106 0.048803 -0.089141 0.197315 -0.034315 0.391253 +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) = -2.313012 0.578408 0.225715 -1.991771 4.621165 -0.563047 -0.054535 1.743290 0.887508 2.453753 -2.626431 -1.161818 -1.372102 -2.644907 0.283922 -0.883819 0.062704 2.099354 -1.734226 0.366043 1.985550 -0.028269 1.069415 -1.386562 -0.685206 -1.566677 -1.068078 0.738422 0.401713 0.229436 -0.543399 0.183670 3.278391 -0.301454 2.052788 1.770000 1.771823 3.815492 -0.481817 1.277399 1.036406 1.932598 -1.260252 -3.831651 1.773223 -1.967207 -2.338810 -2.004778 1.808732 -3.302304 2.393608 2.281878 0.051375 -1.171213 -1.559830 1.442125 1.900005 0.834954 3.203131 1.105309 -2.166136 0.261911 -2.868057 1.808854 -2.242301 2.957743 -0.034005 -3.694171 -2.096306 1.482260 1.680605 -2.074461 -2.929770 0.588057 0.898063 -1.572088 1.188188 -0.798184 0.865174 -1.299431 -2.459734 0.504104 -1.291653 2.105081 -0.575324 0.380240 -0.799653 0.298529 0.588967 -2.556249 -0.976304 2.758572 -1.162935 1.501392 -1.925772 -0.075638 -0.120335 -0.673399 -1.790065 -0.900581 0.632953 0.614387 1.329160 0.184864 -0.790721 -2.000481 2.054690 1.906031 0.290028 0.439272 0.752439 0.499956 0.386259 1.471845 -1.105334 1.552404 -3.413837 0.804391 -0.668690 0.846644 -0.822198 1.150458 1.062947 0.086333 1.861094 -2.972838 3.019754 0.222071 -1.806320 -1.476679 1.398767 -0.158254 -1.492937 -0.525217 2.133933 -0.147399 -0.974001 -0.277644 0.875904 -0.550023 -1.909399 -0.793863 -0.791823 0.686692 -1.419723 0.532393 -1.072935 -1.928349 0.061418 1.143659 1.106474 1.342243 3.327206 2.536448 -0.702742 -0.482452 -2.998109 1.344726 3.700278 0.570102 -2.799942 1.527594 -1.137443 0.729907 1.530688 1.091940 1.112594 2.404084 -0.303028 -0.435577 -1.132170 -0.291565 3.123501 2.388223 1.497846 -3.353927 0.343097 -1.334894 0.511303 4.289644 2.326940 -3.350635 0.109620 2.280348 -1.885068 -1.739509 0.459440 -0.754026 -0.675935 -1.544775 1.209434 1.797219 -2.462915 -2.839817 0.237376 -2.696602 2.806014 -0.488474 -0.606680 0.844064 -3.531613 -0.951030 3.617600 0.491129 -1.045717 -1.048669 -1.956600 -0.736406 -3.592347 1.149371 1.370223 -0.898035 -1.845301 -2.118241 0.001432 2.731106 -0.606574 0.555844 -1.582787 -0.499456 1.550716 -0.522042 1.824200 -2.673727 -0.890741 -0.578847 -0.405982 1.585034 -0.481460 -0.019730 3.187658 -2.426122 1.537296 2.210249 -0.763736 -0.015967 2.703697 -1.634377 3.271989 -0.378266 1.785636 -0.418201 1.731992 -0.925185 0.589504 -0.005742 0.131596 -0.364251 2.020162 -2.169623 -0.945899 0.941350 -2.358666 -1.283316 1.248057 1.843668 0.971183 0.450546 -0.149803 -1.564687 -0.589109 -0.597265 0.164939 2.401496 -0.613734 -2.769064 0.313031 0.898404 -2.183026 -1.667168 1.009565 0.778593 3.060295 -2.902279 1.580378 0.206982 -0.537135 -3.334240 -1.552593 -0.034332 -1.765756 -1.378255 1.855622 -2.778582 -1.414584 -1.667344 1.948270 -1.353719 -0.766522 -0.273044 2.709099 1.918559 -0.023069 2.442582 0.036973 1.998311 0.147534 -1.107682 0.903741 2.483474 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = -1.282099 1.365485 0.010040 -1.277116 2.300600 -0.738040 0.310405 1.163998 -0.688477 1.432531 -1.526706 0.735458 -0.294659 -2.100856 0.143577 -0.196069 0.094106 1.567857 -0.107725 1.071768 1.003962 -0.926429 0.384074 -0.933067 -0.630845 -1.683906 0.171540 0.437375 0.348857 -0.000576 0.537225 0.265080 1.917280 0.087932 1.269370 1.366178 0.214507 2.214218 1.077870 -0.302466 0.316806 0.851783 -0.484486 -2.304789 0.855245 -0.683013 -0.970704 -1.485543 0.681875 -1.988246 0.860040 1.196154 0.095438 -0.655055 -1.758904 0.573139 1.950772 -0.105646 1.800693 0.538661 -0.714237 -0.247144 -1.009813 0.771827 -1.325513 -0.015252 0.696702 -1.366265 0.227698 1.062774 0.764074 -0.914816 -1.151846 0.215878 0.309330 -1.290913 0.389938 -0.517117 -1.346333 -1.217712 -0.770282 0.267458 -0.479353 1.435681 -0.181700 0.350250 -0.780029 0.227955 0.383341 -1.337124 -0.640481 1.414949 -0.233594 0.312583 -0.597310 1.823000 0.859760 -0.717495 -0.861425 -0.522839 0.469049 0.069153 0.725864 -0.223822 -0.867956 -1.205926 0.699257 0.352575 -0.324408 1.126951 0.290013 0.968633 0.360138 0.707636 -1.025659 0.789674 -2.539684 0.497708 0.070473 0.306493 -0.244862 0.182153 0.403367 0.119602 0.925197 -1.837453 1.878943 0.468568 -0.054256 -1.395328 0.801162 0.230874 -0.459467 -0.543483 1.062577 -0.016274 -0.182707 -0.007588 0.153109 -0.058866 -1.074596 -1.410131 -0.170356 2.358601 -1.581122 0.523145 -0.519422 -0.773844 -0.008441 0.094609 0.497953 0.520348 1.848206 1.318846 -0.160582 1.007338 -1.632676 0.340045 2.338768 1.684395 -1.334340 1.043082 -0.254546 -0.244625 0.687481 0.612700 0.808018 0.578529 -1.485313 -1.478303 0.461923 -0.618395 1.612154 0.796799 0.522445 -1.957322 1.680724 0.602905 0.093385 2.542562 0.743781 -1.600461 0.709657 1.410208 -1.475252 -0.731356 0.352098 -0.404529 -0.494833 -0.279122 0.495229 0.655216 -1.217931 -1.708283 -0.816097 -1.410159 1.412055 -0.235642 -0.157818 0.083632 -1.325726 -0.264402 1.830791 0.340686 -0.599240 -0.553252 -1.035104 -0.969839 -2.081381 0.413166 0.651854 -0.867850 -0.802978 -1.216497 -0.306810 1.263771 -0.677965 -0.193057 -1.701638 -0.547364 1.031776 0.625928 0.156985 -2.056159 -0.363383 0.349454 0.544246 0.586360 0.181865 1.196329 2.043970 -1.146896 0.535618 1.081649 0.466006 1.083669 1.720005 -1.306251 1.821634 -0.555608 1.973742 0.207932 0.664253 -0.524017 0.083563 0.023228 -0.003083 -0.301214 0.717213 -1.328382 -0.486404 0.843434 -0.830696 -0.855225 0.786363 1.193814 0.738800 0.160964 0.177268 -0.423883 -0.325250 -0.794595 -0.032802 1.153507 -0.188621 -1.521979 0.338581 1.000173 -0.506194 -0.579662 0.343005 0.909012 1.214748 -1.558839 1.322282 -0.281195 -0.249724 -1.627794 -1.628372 1.218731 -1.029068 -1.272808 0.964222 -2.277038 -0.634748 -0.799234 1.234666 -2.044339 0.167527 -0.240047 1.491544 0.281278 0.110210 1.154445 -0.425177 1.011327 -0.074482 0.144617 0.009949 1.856915 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.356487 0.344147 -0.182872 -0.304278 0.626923 -0.290146 -0.062634 0.399159 0.011376 0.442049 -0.398355 0.100037 -0.056368 -0.618365 0.068930 0.157817 0.103830 0.504823 0.003571 0.190956 0.259284 -0.240709 0.094792 -0.222306 -0.165066 -0.483058 0.047592 0.149495 0.063644 -0.102433 -0.032138 0.160275 0.621092 0.055583 0.445396 0.421017 0.054830 0.597450 0.491937 -0.063464 0.113949 0.218330 -0.135204 -0.653358 0.237297 -0.166215 -0.204015 -0.420433 0.198475 -0.450114 0.484448 0.323672 0.015756 -0.119981 -0.553401 0.073686 0.424763 0.084059 0.549133 0.159697 -0.210943 -0.026573 -0.218038 0.340749 -0.457283 -0.082062 0.157508 -0.432344 0.075563 0.336165 0.283469 -0.279097 -0.300647 0.071240 0.018869 -0.375774 0.135782 -0.081796 -0.111731 -0.364143 -0.326915 0.139964 -0.208357 0.421518 -0.029819 0.102122 -0.381192 0.067839 0.109310 -0.389452 -0.130858 0.300210 -0.119790 0.167099 0.049719 0.526227 0.293955 -0.208233 -0.123399 -0.176482 0.128680 -0.069655 0.205118 0.148676 -0.064560 -0.243958 0.273266 0.048513 -0.058816 0.300819 0.263636 0.260878 0.171601 0.206565 -0.166698 0.020226 -0.746467 0.193431 0.051345 0.012576 -0.062742 0.072850 0.160999 -0.023740 0.288320 -0.556941 0.483526 0.157251 0.068773 -0.335243 0.204751 0.064525 -0.141685 -0.178623 0.343866 -0.015956 -0.044706 -0.000263 0.035026 0.001516 -0.402537 -0.298328 -0.101521 0.685413 -0.420383 0.152985 -0.137914 -0.261220 -0.000137 0.015761 0.139214 0.219079 0.528057 0.381017 -0.113672 0.107259 -0.539053 0.108777 0.664786 0.339162 -0.376093 0.339560 -0.086688 -0.099463 0.221596 0.267725 0.235357 0.054667 -0.284265 -0.341090 0.071795 -0.097001 0.467825 0.081879 0.182341 -0.420982 0.407656 0.330154 0.008827 0.827368 0.064619 -0.464693 0.185585 0.443339 -0.390715 -0.131533 0.132432 -0.143315 -0.088987 -0.170811 0.168438 0.259797 -0.422917 -0.398924 -0.168634 -0.397554 0.399589 -0.058232 -0.072440 0.081970 -0.440848 0.168374 0.641083 0.151052 -0.066769 -0.143750 -0.364670 -0.238839 -0.596340 0.072357 0.165459 -0.236418 -0.089963 -0.342573 -0.134039 0.443626 -0.145296 -0.027539 -0.492402 -0.054678 0.322049 0.124264 -0.069797 -0.513663 -0.100714 0.213745 0.111321 0.126375 0.004382 0.345292 0.506715 -0.326495 0.113515 0.485417 0.289387 0.352284 0.403858 -0.404754 0.534568 -0.202841 0.383722 0.144077 0.187001 -0.167541 0.009819 -0.041460 0.068975 -0.167636 0.174776 -0.398806 -0.143367 0.309323 -0.200978 -0.294398 0.158241 0.370442 0.288599 0.039815 -0.072015 -0.124544 -0.062177 -0.223280 0.088833 0.301833 0.018766 -0.400227 0.171840 0.316209 -0.143398 -0.176008 0.098214 0.217630 0.380795 -0.466425 0.341113 -0.008483 0.071213 -0.418031 -0.429462 0.292916 -0.200052 -0.246760 0.235999 -0.753150 -0.272666 -0.206137 0.335695 -0.568562 0.243438 -0.085862 0.481064 0.090079 -0.045987 0.306859 -0.116340 0.188894 0.015385 -0.003687 -0.032345 0.542660 +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 >&) = -3.315029 2.061306 0.633438 -2.644978 7.336544 -1.421698 0.181502 4.587261 -1.571994 4.240057 -3.292830 0.942926 -0.961256 -4.292735 0.405029 -0.729319 0.054753 3.337629 -1.218809 1.692142 2.477478 -0.659436 0.945082 -1.449487 -1.612193 -3.292823 -0.637134 1.306052 1.931375 -1.044187 -0.374557 0.458071 5.512310 -0.794765 4.138184 3.413809 2.647408 4.434076 1.277725 -0.793908 0.539271 2.278365 -2.158636 -4.610008 1.565997 -2.115334 -3.568711 -2.236135 2.191954 -3.956385 2.142716 3.549040 -0.403210 -0.890379 -2.443186 3.064304 2.415460 -0.656344 4.988389 1.155559 -3.275873 -1.011789 -3.923572 4.617854 -2.687128 2.312057 -0.772352 -4.623892 -0.943134 1.769840 1.865255 -3.710885 -2.754661 2.347869 1.098794 -3.292177 1.334037 -1.468297 -0.075783 -3.391231 -3.418039 1.200332 -1.661796 3.174992 -0.148190 1.099116 -1.778395 1.284607 -0.067277 -4.931821 -0.361227 4.508380 -2.489688 1.015377 -3.452544 1.642401 0.616223 -0.452279 -2.044818 -2.228509 1.333008 0.133093 2.011350 -2.119152 1.087670 -3.324643 1.291581 1.193165 0.879983 2.433445 0.599214 1.862967 2.120192 3.310459 -1.715716 1.137898 -5.633819 1.679859 -1.207068 0.959279 -1.217632 1.659967 1.798157 1.264483 3.645779 -5.560079 3.522385 0.304454 -1.531750 -3.644337 1.360843 -0.901185 -1.667336 -1.380962 2.960484 -0.368284 -0.992246 -1.118038 1.411069 -0.036535 -3.594010 -2.961491 -0.331512 3.050398 -4.423707 1.079592 -1.313954 -1.823203 -0.200898 2.067501 2.640342 2.822112 5.134869 3.754547 -0.457608 1.623725 -5.157745 0.964415 4.990537 2.271257 -4.092860 3.693532 -2.878082 -0.602960 1.819156 2.770183 2.138648 2.475529 -2.742334 -2.696519 1.248664 0.193706 4.895324 2.192208 1.340335 -3.719022 2.159936 -1.322464 -1.098495 6.622410 2.389555 -5.018156 1.352089 2.872704 -1.674691 -2.042325 1.677479 -3.034721 -1.422452 -1.621434 0.914037 2.689759 -3.219740 -3.085108 0.539554 -3.941192 4.532724 -0.688892 -1.364229 1.128392 -4.354168 -1.549679 5.422413 1.042891 -1.414360 -2.156508 -3.391604 -2.017731 -4.810925 1.259860 1.773380 -1.236497 -2.455981 -3.754158 -0.738972 3.651293 -0.233352 1.540274 -5.221872 -1.097126 2.639285 0.256162 1.991868 -4.718371 -1.000194 -0.743068 -0.188234 1.717538 -1.298956 2.202249 5.419744 -3.171327 2.761278 2.361170 -1.331277 0.826300 3.297151 -4.094095 5.197754 -0.028961 3.693709 0.434666 2.032070 -2.261581 0.577796 -0.100381 0.453298 -0.580148 2.061202 -2.674153 -1.497587 0.720046 -3.273655 -2.720812 0.671591 2.342250 0.471246 0.834026 -0.849431 -1.955778 -1.576028 -2.563349 0.555590 3.259260 -1.573390 -3.268514 1.952828 1.215189 -2.055465 -0.935850 0.995258 1.833710 3.618934 -4.725129 1.759751 -0.098823 0.450299 -4.911332 -4.100826 0.623781 -2.591881 -2.573944 1.802700 -5.302080 -2.171738 -2.624047 1.729767 -4.484513 -1.008091 0.570559 5.104702 1.663412 -0.985547 3.118755 -0.977175 2.764119 0.284740 -0.032947 0.460739 3.451172 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -4.698140 4.198893 1.115904 -4.966511 9.048529 -1.301638 1.068964 3.338331 -1.958382 5.412375 -5.707563 1.341489 -1.550511 -6.954971 0.349120 -2.180900 -0.406490 4.572308 -1.417110 3.571115 3.694553 -2.865959 1.996723 -3.268509 -2.205813 -5.762910 -0.422016 1.667831 1.893982 0.432606 1.930728 -0.077600 6.348441 -0.429213 3.959469 4.284117 1.673679 7.725271 1.491391 -0.466446 1.295906 3.333718 -2.255725 -7.934580 3.055234 -3.085936 -4.624388 -4.991570 2.951219 -7.530952 1.778160 4.742043 0.077572 -2.986892 -5.258722 3.156933 6.574194 -0.269566 6.648706 1.726818 -2.822922 -1.023008 -4.990040 2.663026 -4.415815 2.112795 1.329661 -5.629674 -0.808765 3.490269 1.786443 -2.910158 -4.540012 1.325213 2.099410 -4.478017 1.449670 -2.499696 -4.360030 -3.920721 -2.748919 0.981791 -1.589198 4.978297 -0.567954 1.421096 -0.981662 1.133150 1.064543 -5.344916 -2.186157 5.810270 -1.049950 0.827085 -3.036096 4.842442 2.037369 -2.285900 -3.691904 -1.483988 1.514070 0.898732 2.777185 -1.869871 -2.838892 -5.349330 2.581150 2.407402 -0.403418 3.065002 0.531652 2.605274 0.961858 3.091151 -4.415803 3.531523 -8.152568 1.232602 -0.519867 1.696037 -1.516136 1.378759 1.473131 1.035714 3.744873 -6.620777 6.861830 1.158076 -1.664736 -4.825310 2.759654 0.397161 -1.892487 -1.258229 3.513211 -0.403118 -1.029033 -0.283778 1.054294 -0.481692 -3.545690 -3.803985 -0.330163 6.470029 -5.061150 1.888602 -1.810374 -2.837017 0.122232 1.248795 2.405922 2.032738 7.075207 4.985569 -0.465158 3.360414 -5.637971 1.847139 8.374273 4.686932 -5.158568 3.741156 -1.693813 -0.229181 2.368490 1.967515 2.922870 3.710333 -4.807132 -4.556892 0.849556 -1.869971 6.091069 3.941675 2.016454 -7.528875 5.092071 -0.090948 0.711079 8.476461 3.984482 -6.126185 2.199829 4.924709 -5.807422 -3.090548 1.286127 -1.534028 -1.584665 -1.424463 1.700554 2.670955 -4.084321 -6.559288 -2.487660 -5.326228 5.679942 -0.952535 -0.601221 0.818019 -4.885350 -2.640932 6.183016 0.975101 -2.662543 -2.385642 -3.565536 -3.406581 -7.413448 1.912461 2.604410 -3.216676 -3.641984 -4.617219 -0.713733 4.341357 -2.016550 0.099539 -5.887182 -1.892296 3.502984 1.950491 2.160022 -6.263206 -1.315116 0.036844 0.855174 2.379987 0.120608 3.316094 7.342245 -4.450616 2.886616 2.335556 -0.494220 2.742851 6.211877 -4.329965 6.930152 -1.145083 6.851720 -0.070966 2.862344 -1.700115 1.054835 0.346382 -1.215973 -0.326813 3.145831 -4.739883 -2.109494 2.675257 -3.680132 -3.129970 2.811485 4.051438 2.166661 0.827261 0.858889 -2.212854 -1.434632 -2.138278 -0.242896 4.402227 -1.172151 -5.553780 0.864274 3.203111 -2.220121 -2.996530 1.491145 2.982218 4.748982 -5.928808 4.528405 -0.979301 -1.295677 -6.492094 -5.048469 3.214575 -4.034933 -4.384606 3.818969 -7.280568 -1.912245 -3.391137 4.006517 -5.696805 -0.974463 -0.417368 5.566009 1.886732 0.129407 4.483223 -1.295203 4.082124 -0.288367 -0.171422 0.921297 5.823291 +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) = -2.662828 1.312555 0.333234 -2.130583 5.603340 -0.808242 -0.227451 3.164411 -0.445403 3.203988 -2.796831 0.118397 -1.008704 -3.218436 0.194662 -0.473997 0.039146 2.523593 -1.383088 0.884789 2.053072 -0.313616 1.043576 -1.344973 -1.122815 -2.100689 -0.778596 0.900901 1.187592 -0.601127 -0.593280 0.113786 4.109563 -0.563637 2.903802 2.331128 2.145359 3.814840 0.506133 0.119816 0.649528 1.969858 -1.641529 -3.919755 1.601740 -2.031160 -2.558021 -1.776694 1.890107 -3.285165 2.224365 2.650416 -0.195410 -0.991668 -1.811336 2.150699 1.994641 -0.013147 3.950057 0.899972 -2.636514 -0.571701 -3.124219 3.106782 -2.370189 2.578533 -0.385964 -3.786588 -1.443006 1.433712 1.657283 -2.917478 -2.648514 1.533909 0.783928 -2.342987 1.110997 -1.121400 0.638460 -2.243314 -2.754665 0.777088 -1.409062 2.301757 -0.286876 0.774544 -1.232337 0.861695 0.234489 -3.645790 -0.541254 3.295086 -1.837665 1.393262 -2.337136 0.673205 -0.045416 -0.484911 -1.755481 -1.358705 0.878329 0.478870 1.542180 -1.165714 0.515927 -2.585013 1.719299 1.292476 0.510523 1.177504 0.776451 1.117471 1.284535 2.431491 -1.211135 0.985902 -4.309756 0.967940 -0.816372 0.826060 -0.973523 1.341087 1.271735 0.560670 2.704808 -4.100765 3.079515 0.177731 -1.581773 -2.589424 1.263364 -0.570389 -1.413382 -0.788530 2.308311 -0.338944 -0.905783 -0.791615 1.039599 -0.331889 -3.012359 -2.014513 -0.444124 1.813841 -2.888653 0.775222 -1.090559 -1.727897 -0.027825 1.514489 1.822193 1.921868 3.939162 2.904120 -0.508782 0.755156 -3.731206 1.046013 3.963436 1.368455 -3.352226 2.478189 -2.004626 0.025977 1.644150 1.771922 1.581123 2.338604 -1.479272 -1.566755 0.378347 0.011548 3.696103 1.947553 1.468938 -3.161461 1.241349 -1.016138 -0.284884 5.300522 1.924709 -4.073023 0.909178 2.340140 -1.209545 -1.524724 0.999559 -1.816026 -0.957805 -1.454713 0.847016 2.045371 -2.688790 -2.825365 0.354464 -3.150935 3.672914 -0.479454 -0.957313 1.029641 -3.777716 -1.025639 4.198044 0.810617 -1.218183 -1.540195 -2.473602 -1.385525 -3.913584 1.083273 1.550825 -1.114651 -1.982653 -2.815642 -0.290342 2.927050 -0.279932 1.015982 -3.537193 -0.847210 1.942480 -0.151641 1.759798 -3.482854 -0.855839 -0.673755 -0.285863 1.661863 -0.930999 1.162610 4.093620 -2.618151 2.197017 2.173679 -0.930421 0.361373 2.758612 -2.699046 3.911413 -0.207923 2.573737 0.009441 1.807461 -1.543156 0.671910 -0.084375 0.443429 -0.305606 1.836189 -2.268367 -1.234438 0.644792 -2.636274 -1.879848 0.812762 1.844661 0.759764 0.591725 -0.658654 -1.503984 -1.095900 -1.435873 0.276923 2.615251 -1.104886 -2.920550 1.029496 0.896264 -1.943483 -1.022649 0.955132 1.186948 3.068180 -3.578742 1.479067 0.047057 -0.115288 -3.918676 -2.523011 0.096126 -1.874322 -1.671063 1.723335 -3.898839 -1.677841 -1.940018 1.590735 -2.716721 -0.651011 0.041300 3.735548 1.731664 -0.539642 2.660863 -0.471902 2.249799 0.343370 -0.495623 0.514244 2.747744 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -7.158428 7.239345 2.757977 -7.398065 15.264121 -2.752799 1.948282 8.514787 -5.125763 9.171214 -8.349233 5.051524 -0.786999 -9.638493 0.629439 -2.915841 -0.742560 7.287121 -1.672282 5.838796 5.054769 -2.791913 2.222382 -4.277568 -4.396382 -9.638989 -0.031299 2.972964 3.475883 -0.661835 2.776906 0.467810 10.902700 -1.853792 8.297598 7.693370 4.485545 10.022554 3.635482 -2.108040 2.048551 4.027072 -3.907061 -10.478216 2.909603 -3.661991 -7.988916 -6.136417 4.183747 -10.658890 3.256719 7.458340 -0.324996 -3.499166 -7.007525 7.081607 7.732085 -3.280066 10.521141 2.208188 -6.552481 -2.441480 -7.675048 9.221935 -6.258414 2.978759 -0.067490 -8.739773 -0.344897 5.439500 3.211602 -5.522732 -6.036492 3.873903 2.756176 -8.067721 2.188748 -4.100105 -4.561623 -6.989730 -4.039432 3.023394 -1.832185 6.992218 0.182546 3.029853 -3.164275 2.950630 0.233818 -9.766509 -2.066062 9.911668 -3.979597 0.658502 -7.600302 6.729452 3.414118 -2.829879 -4.233824 -4.336055 3.200400 0.301210 4.303992 -5.503005 -0.548440 -8.230121 2.043060 3.466720 0.438141 6.715056 -1.437297 5.911099 4.130259 6.163208 -4.696268 4.237723 -13.069462 3.000678 -1.698967 1.774352 -2.757741 2.241576 3.001094 3.858583 7.198930 -11.026005 9.556054 1.304056 -2.471209 -8.095067 3.291139 -0.165441 -2.599632 -2.883312 5.345795 -0.432551 -1.310957 -1.248829 2.338410 -0.139527 -6.067961 -8.471016 0.195863 9.299805 -9.499178 3.161055 -2.374139 -2.832890 -0.383622 3.620677 5.450943 4.490186 11.074250 7.633235 0.342474 5.543376 -9.876845 1.526080 11.416169 7.447372 -8.171598 8.159055 -5.350323 -2.478221 3.225045 4.798492 3.984809 5.321175 -9.306697 -9.000221 3.282301 -1.786051 10.210917 4.982022 1.467417 -10.090851 7.839290 -1.983876 -1.255213 13.532058 5.838226 -10.145390 2.853090 7.396169 -6.357615 -5.449180 3.704509 -5.706891 -3.950882 -1.683270 1.755638 4.591766 -5.803226 -8.315249 -1.541733 -8.317823 9.386117 -1.400189 -2.483016 0.715191 -7.204360 -4.642137 10.272962 1.869553 -3.700675 -3.990742 -6.007204 -4.667989 -11.231306 2.150857 4.575128 -3.648114 -5.276511 -7.862600 -1.625258 5.790180 -2.481340 1.849479 -11.649510 -3.766453 6.102818 2.325766 2.384587 -10.721703 -1.552891 -1.214572 1.374273 2.816575 -1.673805 6.773685 12.042923 -6.220998 5.922750 3.938115 -3.178849 3.388434 8.729280 -8.700577 11.531587 -0.825153 9.044298 1.675908 3.860742 -4.388876 1.107714 -0.197606 -1.369031 -1.185428 4.119511 -6.866000 -3.416454 1.932448 -5.904800 -5.414809 2.854671 6.071882 1.262273 1.353824 0.481862 -3.231337 -3.701182 -6.473413 0.371884 6.399542 -3.421722 -7.456783 4.034986 4.792683 -4.032195 -2.937650 1.675351 5.409608 7.050099 -10.042190 6.294131 -1.068332 -0.123556 -11.679018 -9.253141 4.644762 -6.850591 -7.319723 3.135029 -11.890331 -4.481015 -5.399351 4.894267 -10.262086 -2.946329 1.957955 10.599864 1.995091 -1.505725 6.586955 -3.402407 6.085039 0.364748 1.113065 0.505718 8.252578 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -3.177517 2.403897 1.826620 -2.642944 6.513512 -0.556245 0.217055 3.517514 -1.467311 4.550579 -2.792174 -0.148832 -0.775990 -3.453826 0.283193 -2.149064 -0.662619 2.466192 -0.819998 2.764427 2.221009 -1.006807 0.881022 -0.954275 -2.030705 -2.729175 -1.022671 1.568448 2.784291 -1.434147 0.422421 -0.122947 4.984278 -1.147502 5.189146 3.686411 2.086122 3.559384 0.610348 -1.225611 -0.298037 2.129089 -2.803861 -3.746400 0.646731 -1.649352 -3.788832 -2.032487 2.042474 -2.843235 1.266191 3.844373 -0.970518 -0.524654 -2.127831 3.530790 1.086703 -0.030256 5.283378 0.535711 -2.956994 -0.269997 -4.700508 4.471835 -2.002087 2.379504 -2.163815 -4.386048 -0.186627 0.717926 0.685219 -2.944904 -2.172979 3.933738 1.775294 -3.802617 1.297904 -2.202276 -1.385097 -3.298262 -3.057148 1.837527 -0.858109 3.054713 0.319804 1.865959 -0.950122 2.541057 -1.114243 -6.009199 0.639627 4.553029 -2.980435 -0.074840 -2.789810 1.935461 0.583062 0.325314 -2.066400 -1.451732 1.641775 -0.366094 2.276325 -2.770717 2.202520 -3.990960 0.750420 1.314937 1.443175 2.247235 0.902668 2.310788 3.681269 4.447699 -2.237495 0.955496 -4.191427 1.191938 -2.321651 0.959623 -1.465254 2.679500 1.117935 2.091207 4.493807 -5.564527 2.566055 0.031679 -1.412837 -3.901850 0.778692 -1.795723 -1.366089 -1.686622 2.527476 -0.448717 -0.942368 -1.824307 1.089170 0.357736 -2.483048 -1.855862 0.856317 2.199913 -3.217281 1.343994 -1.044959 -1.513224 -0.262424 2.931385 3.663034 3.673479 5.175606 3.942763 -0.145343 0.271344 -4.683077 0.340040 4.177561 0.177073 -4.121836 4.744796 -3.503645 -1.480724 1.311048 3.158947 2.744027 2.627763 -3.351455 -3.740516 1.079422 1.060323 4.983030 1.780942 0.449905 -2.338815 2.714273 -2.212093 -2.371822 5.787028 2.114432 -4.432033 0.242739 2.221680 -2.790455 -2.498306 2.650376 -3.661215 -0.600001 -1.658143 0.289333 2.695245 -2.370545 -2.448258 1.102487 -4.174061 4.929716 -0.876198 -1.150300 1.026124 -3.834407 -2.853726 5.031272 1.028845 -1.735797 -2.758981 -3.189495 -1.518207 -4.202984 1.247268 1.465431 -0.671161 -2.595182 -4.056912 -0.448169 2.248474 0.563792 2.566758 -4.392788 -1.689824 2.483699 -0.000158 2.211542 -2.819670 -0.604495 -1.285305 -0.666552 1.423653 -1.214158 2.940741 5.763218 -2.740246 3.031233 1.434239 -2.931949 0.707044 2.865655 -5.029099 5.677925 0.268291 2.412145 0.387184 1.753617 -2.230710 0.718568 0.552144 -0.572736 0.096414 1.672489 -1.612979 -1.836365 -0.334055 -3.495715 -2.420993 -0.498117 1.755756 -0.613994 1.336457 -0.167184 -2.781131 -2.061865 -2.904377 0.729023 3.128668 -1.284505 -2.156021 3.134527 0.666778 -0.801825 -0.954085 0.536638 1.559695 3.238677 -5.340864 0.977765 -0.362389 0.800586 -4.441206 -3.298501 -0.007508 -3.187063 -2.033316 1.391374 -4.268938 -1.183818 -2.979921 0.402587 -2.727126 -1.880537 1.739390 5.867962 2.186876 -2.434240 2.551704 -1.906974 3.112090 0.730977 -0.319644 0.356461 3.125038 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.843731 0.676667 -0.308986 -0.854333 2.342305 -0.525258 0.164167 1.432093 -0.718097 1.113611 -1.094245 0.970161 0.148563 -1.345920 0.223502 0.358011 0.173010 0.898585 -0.255872 0.322514 0.506466 -0.175585 0.244175 -0.563864 -0.459652 -1.426964 0.144019 0.404746 0.488672 -0.168006 -0.278255 0.257839 1.400585 -0.419507 0.870016 0.938280 0.928961 0.941669 0.718264 -0.714598 0.621204 0.315937 -0.342282 -1.212597 0.180668 -0.387008 -1.203395 -0.554530 0.567640 -1.260977 0.386913 0.881513 0.047988 -0.419031 -0.922007 1.065327 0.995805 -0.790861 1.250662 0.372378 -0.989447 -0.684634 -0.608742 1.793040 -0.861896 0.189514 -0.098947 -1.193471 -0.263591 1.126115 0.237836 -0.718458 -0.672956 0.208186 0.305794 -1.005994 0.309975 -0.286574 0.408132 -1.030109 -0.469603 0.494055 -0.457984 0.912906 0.164511 0.313638 -0.450382 0.128810 0.196135 -1.062357 -0.363094 1.142977 -0.625949 0.137131 -1.025088 0.728811 0.654145 -0.546388 -0.266890 -0.999505 0.318964 -0.052774 0.435025 -0.771835 0.442384 -0.809845 0.067545 0.331726 0.243508 1.119698 -0.393725 0.557536 0.273768 0.548955 -0.168258 0.087378 -1.772614 0.507879 -0.191269 0.097519 -0.495334 0.023874 0.971468 0.524840 0.817230 -1.376532 1.295252 0.268056 -0.152644 -0.868016 0.397118 0.156227 -0.391018 -0.179678 0.673295 -0.149114 -0.030628 0.055680 0.617215 0.021185 -1.141363 -0.849311 -0.240928 1.204997 -1.613689 0.404482 -0.201622 -0.197503 -0.074133 0.393423 0.635559 0.512703 1.420616 0.861417 -0.096230 1.171611 -1.407857 0.452927 1.612161 0.994513 -0.910901 0.979291 -0.963592 -0.249440 0.373838 0.645353 0.255445 0.533206 -1.010524 -0.713377 0.628365 -0.228564 1.271361 0.263117 0.263149 -1.329103 0.694155 -0.208497 0.113268 1.743293 0.713971 -1.620822 0.896713 1.278542 -0.438703 -0.382688 0.426648 -0.977960 -0.715850 -0.434615 0.406409 0.721131 -0.952028 -0.854878 -0.172383 -0.869393 1.033240 -0.052844 -0.595126 0.161682 -0.737113 0.139018 1.455684 0.310820 -0.127947 -0.368367 -0.830721 -0.852385 -1.503946 0.071306 0.551369 -0.616304 -0.312962 -0.953202 -0.549230 1.092288 -0.425414 0.247450 -2.114106 0.116683 0.823106 0.623337 0.070654 -1.260945 -0.218964 0.003688 0.035565 0.075995 -0.745757 0.687877 1.097977 -0.834427 0.855100 0.322005 -0.322623 0.497224 0.911292 -0.945188 1.403950 0.193447 1.228040 0.512854 0.588683 -0.734656 0.165501 -0.394608 -0.257630 -0.470842 0.567263 -1.250056 -0.425228 0.673905 -0.374882 -1.134461 0.445938 0.975771 0.422320 -0.027169 -0.360391 -0.167811 -0.398371 -0.984286 0.320845 0.642231 -0.691607 -0.963908 0.457741 1.001920 -0.819827 -0.364834 0.294395 0.726195 1.028131 -1.200373 0.925247 0.077047 0.454447 -1.650150 -1.358576 0.630071 -0.559907 -0.788660 0.260949 -1.867554 -1.020123 -0.564391 0.744260 -1.676058 -0.228174 0.271585 1.378961 -0.097132 -0.056700 0.863444 -0.293530 0.318988 -0.112732 0.392297 0.020646 0.743753 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.598804 0.295527 -0.175427 -0.606316 1.547881 -0.437300 -0.140468 1.115325 -0.003192 0.861831 -0.614815 0.397315 0.057921 -0.807509 0.104670 0.139421 0.075033 0.735175 -0.265012 0.219807 0.391642 0.059141 0.197570 -0.264111 -0.360644 -0.823176 0.012110 0.347066 0.183495 -0.221038 -0.206664 0.172223 1.037724 -0.254362 0.851692 0.694098 0.662928 0.666845 0.428723 -0.056419 0.378307 0.215550 -0.274127 -0.815697 0.155082 -0.213405 -0.831621 -0.396893 0.433662 -0.859778 0.611411 0.654595 -0.039878 -0.197716 -0.484874 0.695106 0.288859 -0.275178 0.891907 0.223015 -0.842868 -0.211694 -0.603382 1.259620 -0.621735 0.289009 -0.163987 -0.921941 -0.238933 0.663153 0.315681 -0.578987 -0.420228 0.314624 0.211683 -0.677593 0.272465 -0.253048 0.599442 -0.573342 -0.401533 0.390715 -0.286672 0.500554 0.077275 0.326979 -0.450147 0.217799 -0.041679 -0.858282 -0.046824 0.756810 -0.603153 0.195017 -0.664714 0.321350 0.356150 -0.299261 -0.115113 -0.605556 0.248444 -0.118480 0.370150 -0.214142 0.371819 -0.459632 0.185432 0.294134 0.251389 0.576743 -0.234276 0.415085 0.376844 0.534735 0.002838 0.178300 -1.176311 0.411283 -0.293691 0.110190 -0.300416 0.165007 0.670134 0.466330 0.641993 -0.931047 0.799578 0.100186 -0.144339 -0.559432 0.275147 0.013423 -0.221410 -0.237948 0.536404 -0.128775 -0.105352 -0.088811 0.413274 0.021270 -0.728660 -0.524768 -0.137251 0.411832 -0.758851 0.319915 -0.151700 -0.212798 -0.001351 0.340056 0.537954 0.465310 1.051626 0.617675 -0.042718 0.263501 -1.003902 0.184534 0.928474 0.302784 -0.656109 0.821792 -0.630037 -0.230061 0.250333 0.618569 0.247261 0.430931 -0.471684 -0.453728 0.182695 0.035221 0.899806 0.187944 0.118381 -0.738250 0.226734 -0.262657 -0.023795 1.323244 0.488258 -1.102665 0.278532 0.746383 -0.266148 -0.408131 0.346785 -0.611604 -0.361075 -0.289632 0.320681 0.538299 -0.625011 -0.558415 0.150861 -0.661221 0.718745 -0.132876 -0.421863 0.163938 -0.737090 0.112222 1.118982 0.265500 -0.159807 -0.249299 -0.672577 -0.308340 -0.992853 0.062173 0.389886 -0.227888 -0.164346 -0.618378 -0.282977 0.703497 -0.131462 0.281924 -1.182143 -0.061948 0.599686 0.038337 0.067008 -0.815482 -0.113118 -0.131999 -0.034206 0.125578 -0.426198 0.335982 0.869396 -0.531819 0.562485 0.492309 -0.293716 0.216293 0.597412 -0.823995 1.098485 0.100693 0.423455 0.340443 0.330702 -0.488113 0.124084 -0.231590 -0.059793 -0.265964 0.377876 -0.695432 -0.333259 0.269208 -0.408339 -0.627126 0.145717 0.661118 0.121965 0.130066 -0.237040 -0.319168 -0.348225 -0.717970 0.259357 0.460593 -0.355329 -0.606797 0.491923 0.585506 -0.563165 -0.314962 0.169757 0.451498 0.764651 -0.912254 0.541179 0.147783 0.310607 -1.059727 -0.718878 0.235762 -0.442115 -0.408316 -0.040972 -1.158160 -0.756784 -0.415857 0.457398 -0.846453 -0.125483 0.267094 1.073277 0.244653 -0.216659 0.598641 -0.286707 0.275452 0.084081 0.089357 0.037683 0.616811 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -0.825661 1.475260 1.393948 -0.942217 0.709031 0.043136 0.059257 0.388164 -0.289338 0.902118 -1.215552 -0.063321 -0.378702 -1.141047 0.071083 -1.036957 -0.410665 0.594500 0.094434 1.114687 0.767175 -0.919736 0.076129 -0.746265 -0.472754 -0.889191 -0.109433 0.133706 0.466198 0.125354 1.065693 -0.036785 1.159898 0.319557 1.122909 0.838954 0.111241 1.736782 0.383931 0.311701 -0.349833 0.872194 -0.611069 -1.414667 0.739209 -0.671198 -0.021241 -0.857548 0.243519 -0.873488 0.892635 0.875659 -0.082682 -0.563765 -1.142645 0.268264 0.876878 0.370958 1.314498 0.310088 -0.200009 -0.093916 -1.296661 0.180287 -0.917621 0.621851 0.278645 -0.459225 0.476589 0.002522 0.601304 -0.162631 -0.859931 0.634784 0.127688 -0.901007 0.417615 -0.690290 -1.774091 -0.445328 -0.689571 0.403098 0.166206 1.040038 -0.217387 0.276600 -0.438407 0.606412 0.014195 -1.187905 -0.324484 0.774546 -0.346921 -0.048974 -0.242774 1.321475 -0.011029 0.001574 -0.690242 0.193786 0.722570 0.229884 0.509774 -0.513010 -0.513709 -1.443928 1.128352 0.643987 -0.485121 0.415081 0.862716 1.081258 0.799805 0.895077 -1.012106 0.522546 -1.348490 -0.193306 0.429909 0.205474 -0.102819 0.567046 -0.809967 -0.009348 0.786542 -1.313950 1.060965 0.367867 -0.413428 -0.697468 0.395797 -0.398418 -0.471699 -0.643343 0.625558 0.413912 -0.318768 -0.197303 -0.382996 -0.113647 -0.392603 -1.365097 0.227521 1.543201 -0.687833 0.119675 -0.426598 -0.626402 -0.175430 0.456573 0.499753 0.445279 0.873421 0.844355 0.075010 -0.300062 -0.737830 -0.024863 1.283898 0.525730 -1.255227 0.886052 -0.331262 -0.256281 0.452648 0.343721 0.791055 0.595449 -1.352328 -1.731395 0.162417 -0.511584 1.158242 0.769478 0.224213 -1.085068 1.752371 0.138848 -0.691284 1.678437 0.275192 -0.428834 -0.765895 0.568304 -1.530613 -0.792907 0.431417 -0.145843 0.192710 -0.115108 -0.116800 0.337478 -0.547346 -1.265933 -0.523247 -1.311586 1.419260 -0.109878 0.625062 -0.263708 -0.899368 -1.464291 1.172292 -0.012312 -0.863189 -0.720650 -0.435023 -0.275601 -1.191631 0.497936 0.575302 -0.277434 -1.025275 -0.954382 0.254439 0.256772 -0.494727 -0.164940 -0.596287 -1.276788 0.561433 -0.234421 0.373145 -0.891224 -0.382323 -0.005226 0.325492 0.833863 0.470211 1.308226 1.953331 -0.603552 0.791730 1.007942 -0.148640 0.328484 1.400231 -0.912754 1.324275 -0.969448 0.565812 -0.245464 0.540263 -0.522372 -0.165857 0.507465 -0.253127 0.203155 0.291815 -0.273368 -0.164432 -0.466177 -1.154321 0.040957 0.493183 0.242626 0.246943 0.220977 0.689992 -0.296800 -0.459180 -0.330313 -0.217588 1.026606 0.128703 -0.714001 0.275132 0.065786 0.130734 -0.292178 0.195052 0.312904 0.869709 -1.174197 0.576067 -0.341624 -0.707815 -1.057615 -0.833851 0.394330 -0.980678 -0.791444 0.847121 -1.204023 0.252541 -0.731200 0.434967 -0.601756 0.032802 -0.026913 1.021208 0.549270 -0.617681 0.654345 -0.467981 1.310210 0.462585 -0.363843 0.001476 1.260025 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -1.270697 1.025975 0.051773 -1.339643 3.256067 -0.640334 0.133505 1.959895 -0.678112 1.718281 -1.604045 1.085153 0.129140 -1.648833 0.244231 0.033659 0.013101 1.287192 -0.487704 0.582299 0.788351 -0.066445 0.373167 -0.776344 -0.752408 -1.916500 -0.030046 0.617280 0.645561 -0.310986 -0.235884 0.240290 2.094199 -0.666993 1.474624 1.422892 1.437934 1.459647 0.746646 -0.587134 0.834239 0.544848 -0.663306 -1.650919 0.271963 -0.603575 -1.728999 -0.785956 0.863015 -1.762661 0.848278 1.353054 -0.026191 -0.647376 -1.150502 1.684596 1.055072 -0.897725 1.908463 0.464822 -1.514761 -0.636836 -1.263041 2.684963 -1.289620 0.763469 -0.413289 -1.807847 -0.490461 1.390714 0.599715 -1.140189 -1.124477 0.573407 0.430955 -1.496926 0.480572 -0.622662 0.648388 -1.339671 -0.781602 0.816386 -0.514620 1.193816 0.205623 0.549600 -0.791992 0.462613 0.103019 -1.723855 -0.411248 1.766465 -1.059536 0.211187 -1.584345 0.753973 0.756265 -0.667297 -0.385538 -1.271956 0.557778 -0.074133 0.722287 -1.064523 0.788170 -1.298250 0.213424 0.792607 0.359189 1.372131 -0.612380 0.997906 0.726424 1.013300 -0.186524 0.234728 -2.488627 0.659522 -0.408535 0.160117 -0.675243 0.314525 1.081647 0.918488 1.353300 -2.003336 1.800506 0.212407 -0.532199 -1.192352 0.546399 0.084045 -0.580807 -0.385002 0.960530 -0.106329 -0.189614 -0.073518 0.824041 -0.028582 -1.402512 -1.328589 -0.168525 1.275996 -1.937215 0.581984 -0.321861 -0.342325 -0.086867 0.819121 1.090131 0.866817 2.119868 1.341100 0.001972 1.051697 -2.030025 0.487704 2.040386 1.061934 -1.455213 1.602762 -1.458331 -0.464056 0.566875 1.094855 0.394499 1.043077 -1.432917 -1.248790 0.560222 -0.261023 1.936840 0.555427 0.241935 -1.742021 0.928410 -0.699429 -0.090366 2.559547 1.119930 -2.202021 0.690320 1.690088 -0.630141 -0.929624 0.763991 -1.421106 -0.928321 -0.555098 0.461455 1.055050 -1.226686 -1.290355 0.008685 -1.410212 1.681492 -0.163997 -0.903890 0.233011 -1.291971 -0.329321 2.135659 0.408724 -0.380971 -0.630757 -1.201036 -0.806831 -2.159136 0.216038 0.922021 -0.664448 -0.656584 -1.432577 -0.512516 1.332777 -0.526526 0.521133 -2.666892 -0.265834 1.206562 0.468713 0.311818 -1.742823 -0.282040 -0.276399 0.014956 0.250568 -0.970737 0.999869 1.900346 -1.186086 1.291041 0.705349 -0.841013 0.415503 1.430527 -1.546301 2.193114 0.204242 1.277168 0.623428 0.793245 -1.078189 0.225490 -0.382739 -0.337885 -0.502145 0.785173 -1.570192 -0.654952 0.485601 -0.843728 -1.339321 0.543157 1.318735 0.251886 0.107735 -0.335119 -0.436204 -0.734817 -1.401083 0.355542 1.038166 -0.899181 -1.335596 0.856247 1.206883 -1.224582 -0.530592 0.361044 0.991333 1.533595 -1.881367 1.234498 0.104070 0.496751 -2.501464 -1.761003 0.632256 -1.003115 -1.112135 0.226502 -2.408331 -1.443652 -0.943264 0.940986 -1.943327 -0.596869 0.622757 2.101106 0.262067 -0.363685 1.243689 -0.576009 0.753943 0.066040 0.253333 0.084314 1.119439 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.351248 1.652376 0.952237 -1.202380 2.781289 -0.145153 0.132749 1.641431 -1.728454 2.044667 -1.288538 0.712319 -0.309370 -2.108833 0.401718 -0.744260 -0.169322 0.793395 0.186360 1.662256 0.953113 -1.321069 0.168020 -0.441100 -0.965647 -2.064700 -0.016328 0.762420 1.937444 -0.672551 0.513218 0.248631 2.399137 -0.425345 1.954489 1.630216 1.144750 1.737798 1.078745 -1.940686 -0.409182 0.966590 -1.252199 -1.493075 0.456265 -0.729621 -1.443885 -0.583449 0.812244 -0.769421 -0.103466 1.872515 -0.435120 -0.378520 -1.748176 1.564661 0.948292 -0.640548 2.480985 0.340426 -0.676803 -1.562847 -1.916042 2.271433 -1.147743 0.150572 -0.936962 -1.301099 0.687889 0.438585 -0.097153 -0.850259 -0.909792 1.689045 0.762130 -1.962947 0.641202 -0.884594 -1.503260 -1.887773 -1.440926 0.958963 -0.400289 1.949081 0.165419 0.801551 -0.294723 1.110298 -0.474290 -2.745149 0.264010 1.821128 -1.274322 -0.428367 -1.262785 2.125539 0.431774 0.024027 -1.134331 -0.770820 0.963999 -0.368382 1.029082 -2.236839 1.328558 -2.219044 0.224873 0.026939 0.668787 1.816207 0.866475 1.294267 1.593433 1.970918 -1.366397 -0.426799 -2.186299 0.323063 -0.138861 0.307595 -0.855349 1.164629 0.195653 0.777897 2.063869 -3.015324 1.221550 0.278646 -0.269557 -1.773420 0.237586 -0.673891 -0.630666 -0.906906 1.305712 -0.178321 -0.367481 -0.563401 0.497378 0.524552 -1.461733 -1.271153 0.413920 2.593265 -2.518770 0.584309 -0.513902 -0.736485 -0.181474 1.143200 1.680292 1.751727 2.152562 1.767111 -0.117124 1.601247 -2.285827 0.324363 2.277028 1.092661 -2.034736 2.299271 -2.009121 -0.881782 0.468777 1.476501 1.542025 0.734217 -2.207712 -2.311212 1.460400 0.404217 2.437689 0.246580 0.199791 -1.285139 2.066074 -0.379992 -1.100328 2.544473 0.372002 -1.627348 0.458604 1.206828 -1.658229 -0.704571 1.237223 -1.961059 -0.235400 -0.817414 0.065652 1.543674 -1.182862 -0.977839 -0.204631 -1.871396 2.273655 -0.373965 -0.208634 0.387217 -1.317533 -1.704105 2.111217 0.121363 -0.644679 -1.613207 -1.566565 -1.133915 -1.983133 0.550733 0.535894 -0.585020 -1.158623 -2.077059 -0.778684 1.159839 0.160682 0.804200 -3.614966 -0.536022 1.290549 0.771143 0.638231 -0.959779 -0.327756 0.224263 -0.056469 0.469509 -0.739218 2.172985 2.445272 -1.443619 1.555146 -0.204054 -0.860087 0.934987 1.268355 -2.306750 2.705883 -0.016605 1.909315 0.235676 0.827593 -1.269657 0.186698 0.316794 -0.605751 -0.144187 0.343731 -0.800718 -0.735200 0.068031 -1.212829 -1.546055 -0.166327 0.836902 -0.043255 0.534486 -0.070370 -0.384472 -1.050598 -1.176291 0.580464 1.442849 -0.703079 -0.522326 1.471553 0.496848 0.180155 0.063364 0.286776 0.966787 1.432587 -2.472990 0.487136 -0.480166 0.565905 -1.916201 -2.454752 0.518987 -1.091580 -1.039522 1.234981 -2.854223 -0.244112 -1.411261 0.333214 -1.894034 -0.175207 0.695819 2.623372 0.209546 -1.303646 1.163698 -0.881863 1.230191 0.009322 0.254823 0.162488 1.243490 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.330672 0.196156 -0.190068 -0.278895 0.610202 -0.086551 -0.133810 0.292275 0.111410 0.402769 -0.404253 -0.072933 -0.131539 -0.545638 0.056016 0.143197 0.046905 0.308799 -0.125696 0.034007 0.266145 -0.220094 0.155755 -0.237163 -0.091864 -0.411161 -0.018880 0.098492 0.140014 0.045595 -0.155197 0.031904 0.445404 0.014636 0.226674 0.243907 0.148132 0.539300 0.203311 0.039651 0.105831 0.272977 -0.148106 -0.602194 0.276159 -0.295925 -0.214316 -0.325811 0.240504 -0.461056 0.340884 0.299983 0.024857 -0.192825 -0.405911 0.105873 0.407587 0.139757 0.504145 0.158373 -0.155446 -0.154464 -0.286763 0.218857 -0.411052 0.139396 0.128359 -0.436250 -0.148212 0.278737 0.093858 -0.130979 -0.273003 0.031077 0.088823 -0.276808 0.157435 -0.093588 0.021243 -0.238520 -0.302202 0.071686 -0.222863 0.398211 -0.063766 0.051349 -0.128886 0.018013 0.142800 -0.338822 -0.174338 0.263387 -0.084941 0.184055 0.046954 0.308123 0.135634 -0.154095 -0.169020 -0.060349 0.071482 0.100732 0.171368 0.023980 -0.091908 -0.301066 0.381654 0.120467 -0.002357 0.111777 0.263543 0.039840 -0.028262 0.196296 -0.210111 0.069821 -0.565167 0.065217 0.074438 0.111481 -0.120952 0.088450 0.199302 -0.089309 0.242030 -0.475497 0.488493 0.127747 -0.054905 -0.247767 0.209892 0.018953 -0.189698 -0.041172 0.287009 -0.051643 -0.089205 0.000000 0.106989 -0.048987 -0.449368 -0.069619 -0.130948 0.453150 -0.358557 0.095323 -0.138185 -0.269869 0.012825 0.042343 0.099163 0.144126 0.471787 0.339161 -0.129453 0.114020 -0.413156 0.243540 0.681084 0.190321 -0.375442 0.184947 -0.122880 0.084910 0.224400 0.113386 0.206745 0.259829 -0.103193 -0.099728 -0.027267 -0.090534 0.431628 0.189533 0.294200 -0.475034 0.250262 0.123777 0.132350 0.662714 0.214355 -0.481358 0.215400 0.384510 -0.436130 -0.029966 0.035487 -0.027542 0.010564 -0.255141 0.171028 0.276213 -0.411867 -0.446552 -0.183385 -0.373323 0.424653 -0.033246 0.067469 0.151821 -0.412635 0.176170 0.502608 0.119244 -0.112684 -0.160436 -0.269342 -0.392172 -0.530498 0.112864 0.145758 -0.299756 -0.153747 -0.320448 -0.118005 0.456992 -0.124141 -0.045425 -0.456962 0.049301 0.236520 0.107760 0.118183 -0.283685 -0.131547 0.100622 -0.038457 0.213476 -0.063498 0.162049 0.402572 -0.340206 0.223259 0.270747 0.192526 0.212479 0.382771 -0.212231 0.449590 -0.130620 0.317318 0.000687 0.270676 -0.116006 0.100528 -0.047789 -0.069155 -0.062476 0.248424 -0.390609 -0.137977 0.339644 -0.262454 -0.249882 0.213556 0.291235 0.381828 0.024087 -0.060452 -0.156576 -0.029905 -0.082023 0.040125 0.309523 -0.006603 -0.417279 -0.010085 0.225280 -0.183851 -0.310850 0.160191 0.117483 0.413187 -0.390527 0.280840 0.026251 -0.031804 -0.407143 -0.260431 0.087129 -0.105644 -0.195405 0.370262 -0.627815 -0.165070 -0.199718 0.308361 -0.405888 0.146112 -0.171693 0.377532 0.133082 0.015796 0.345581 0.012821 0.207994 0.008132 -0.081350 0.070830 0.387352 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -1.096160 0.991519 0.235515 -0.960446 1.912378 -0.306161 -0.052644 0.968052 -0.392026 1.253619 -1.252291 0.224663 -0.425571 -1.578330 0.029056 -0.361683 0.007204 1.068556 -0.269935 0.642146 0.832557 -0.637037 0.405385 -0.666087 -0.494183 -1.093813 -0.155262 0.339105 0.469299 -0.111381 0.232201 0.053287 1.605421 -0.033981 1.124974 1.023667 0.334198 1.779444 0.594587 -0.072504 0.152883 0.821069 -0.575094 -1.849074 0.711015 -0.812011 -0.741082 -0.964399 0.685091 -1.461495 0.546943 1.009418 -0.022854 -0.470740 -1.189245 0.558876 1.212795 0.184095 1.652646 0.352837 -0.791936 -0.287879 -1.086476 0.627106 -1.090677 0.496825 0.193638 -1.272924 -0.068820 0.641285 0.368639 -0.841121 -0.918386 0.448135 0.254236 -1.025257 0.338179 -0.479178 -0.921368 -0.786926 -0.835827 0.232463 -0.381934 1.064648 -0.149324 0.293898 -0.410790 0.321626 0.201973 -1.354469 -0.360592 1.260006 -0.384975 0.422784 -0.349328 1.069849 0.319922 -0.352948 -0.722496 -0.226937 0.357426 0.195460 0.601585 -0.482738 -0.373615 -1.192373 0.809615 0.287431 -0.136589 0.569932 0.480721 0.633013 0.448296 0.859641 -0.903228 0.510003 -1.946042 0.297939 -0.146911 0.267465 -0.282603 0.399486 0.187978 0.057003 0.983064 -1.614876 1.401209 0.246141 -0.299461 -1.251895 0.595737 -0.089843 -0.494676 -0.328557 0.876990 -0.062604 -0.241028 -0.248342 0.113324 -0.126225 -1.044923 -0.956574 -0.067736 1.517902 -1.131740 0.354455 -0.419579 -0.697537 -0.018707 0.320674 0.565704 0.592206 1.630067 1.140542 -0.187260 0.601670 -1.370294 0.328452 1.802660 0.914117 -1.280504 0.895697 -0.430837 -0.094521 0.633803 0.515671 0.775788 0.845879 -0.960073 -1.046365 0.273274 -0.259842 1.382121 0.731382 0.611398 -1.330825 1.166121 0.205663 -0.008358 2.094658 0.546250 -1.487124 0.624818 1.022171 -1.025883 -0.506728 0.375763 -0.462827 -0.211385 -0.411120 0.230494 0.696457 -1.114108 -1.333727 -0.396995 -1.282204 1.461630 -0.188580 -0.050635 0.288684 -1.375368 -0.465281 1.540729 0.341981 -0.507866 -0.572663 -0.871245 -0.850758 -1.665463 0.386267 0.629907 -0.766219 -0.755807 -1.100443 -0.126973 1.011676 -0.315539 0.167536 -1.304653 -0.453022 0.819138 0.343359 0.491833 -1.341623 -0.349071 0.068990 0.078996 0.729369 -0.062210 0.884393 1.679123 -0.963618 0.839637 0.775139 0.027185 0.623749 1.256292 -1.083393 1.561967 -0.360146 1.389626 0.037099 0.668923 -0.484074 0.185848 0.077612 -0.038927 -0.093446 0.656356 -0.995002 -0.457087 0.493884 -0.967785 -0.590705 0.481918 0.805300 0.570263 0.197740 0.091227 -0.531022 -0.357219 -0.482885 -0.010059 1.018599 -0.236589 -1.310390 0.288206 0.509834 -0.466685 -0.502608 0.332100 0.570911 1.032340 -1.371953 0.755046 -0.138202 -0.291611 -1.426675 -1.057054 0.446037 -0.772533 -0.796983 0.814810 -1.720455 -0.390789 -0.714051 0.765829 -1.326621 0.031326 -0.182599 1.402381 0.531494 -0.111689 0.984369 -0.259650 0.942007 0.082276 -0.067283 0.076457 1.374440 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = -0.990768 0.584792 -0.185375 -0.935789 2.156419 -0.616120 -0.012985 1.325452 0.091147 1.228744 -1.138581 0.337759 -0.071055 -1.089383 0.076455 0.094582 0.054087 1.239993 -0.497961 0.297573 0.691077 0.139498 0.344214 -0.572246 -0.497641 -0.989456 -0.151050 0.407365 0.047821 -0.236628 -0.302528 0.193258 1.604341 -0.279302 1.229482 1.067819 0.796846 1.338474 0.517523 0.238407 0.603561 0.518367 -0.464911 -1.457508 0.410918 -0.506435 -1.058098 -0.846484 0.671127 -1.418450 1.414506 0.918544 -0.003999 -0.421574 -0.773016 0.860599 0.678970 -0.160196 1.415448 0.360590 -1.190565 0.161463 -0.909919 1.648782 -1.028784 0.783301 -0.022467 -1.504786 -0.512300 0.904911 1.011896 -1.121040 -1.063507 0.350175 0.141141 -0.957203 0.376070 -0.414202 0.714453 -0.825318 -0.789113 0.453895 -0.491176 0.746435 -0.009523 0.339803 -1.010240 0.305897 0.138122 -1.165930 -0.309680 1.215945 -0.671146 0.556062 -0.930434 0.284867 0.427043 -0.483726 -0.324372 -0.721519 0.346429 -0.009855 0.564824 0.013901 0.228664 -0.681125 0.478787 0.732710 0.100501 0.627031 -0.153930 0.697510 0.583357 0.680390 0.044004 0.390592 -1.852980 0.569314 -0.308996 0.115461 -0.272821 0.298142 0.666548 0.389711 0.919268 -1.322380 1.307254 0.107532 -0.485540 -0.812504 0.517394 0.074701 -0.431440 -0.364881 0.798535 -0.031605 -0.241787 -0.124672 0.427631 -0.168010 -0.988417 -0.931042 -0.213160 0.609437 -0.896437 0.399514 -0.330767 -0.478737 0.011947 0.519012 0.624282 0.603031 1.553541 1.029899 -0.060749 -0.043016 -1.447332 0.271918 1.380271 0.626111 -1.085068 1.023769 -0.660764 -0.218466 0.568137 0.804365 0.286488 0.730547 -0.628337 -0.696878 -0.090465 -0.197984 1.354506 0.579196 0.320951 -1.140876 0.421813 -0.308583 -0.024392 2.062553 0.778884 -1.523386 0.148576 1.113662 -0.323729 -0.802227 0.462908 -0.687665 -0.617218 -0.378904 0.423520 0.673300 -0.960995 -1.067074 0.155752 -1.092338 1.203166 -0.168222 -0.669261 0.209879 -1.359445 0.081554 1.691485 0.389449 -0.347849 -0.305100 -0.890285 -0.243612 -1.590438 0.243700 0.708311 -0.320315 -0.497591 -0.931869 -0.126781 1.006143 -0.337631 0.300373 -1.116964 -0.374814 0.861467 -0.119008 0.246700 -1.563958 -0.232287 -0.217397 0.128517 0.385506 -0.360955 0.462817 1.484544 -0.869377 0.579007 1.308469 -0.170910 0.195896 1.130628 -1.094118 1.522390 -0.103958 0.581363 0.347126 0.531439 -0.591023 0.138190 -0.214243 0.238089 -0.333281 0.662500 -1.054161 -0.460761 0.292866 -0.770239 -0.675122 0.413381 0.955114 0.200832 0.147151 -0.266475 -0.517171 -0.433972 -0.886129 0.136354 0.840382 -0.377940 -1.143729 0.555803 0.700265 -1.000530 -0.389491 0.275933 0.602986 1.171921 -1.323308 0.883295 0.131311 0.164229 -1.679301 -0.940871 0.335700 -0.738979 -0.738392 0.181812 -1.510035 -1.094509 -0.654424 0.778648 -1.158417 -0.268515 0.234731 1.432855 0.557820 -0.150161 0.931935 -0.352397 0.679331 0.179664 -0.132578 0.067571 1.135934 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.789804 0.795467 0.051930 -0.875135 1.843090 -0.329616 0.257120 1.065689 -0.474264 1.081316 -1.027535 0.491728 0.051620 -1.043027 0.093979 -0.291896 -0.154760 0.758463 -0.302958 0.459091 0.494839 -0.189098 0.214786 -0.533035 -0.490484 -1.201182 0.066214 0.334872 0.434656 0.089874 -0.048865 0.036033 1.165429 -0.398618 0.865325 0.882288 0.550730 0.886350 0.388078 -0.302807 0.426506 0.369503 -0.405328 -1.059657 -0.012484 -0.367587 -1.049790 -0.583443 0.512817 -1.236644 0.332729 0.780721 0.003467 -0.440706 -0.716397 1.008821 0.631167 -0.301082 1.155976 0.267693 -0.780365 -0.372585 -0.847769 1.526027 -0.716264 0.390121 -0.132400 -1.048870 -0.162540 0.826010 -0.012708 -0.336267 -0.497747 0.328003 0.385530 -0.920101 0.217982 -0.476430 -0.357630 -0.473945 -0.253959 0.439874 -0.233118 0.746087 0.101004 0.326293 -0.357571 0.330253 0.059578 -1.015691 -0.325734 1.267290 -0.435809 -0.100314 -0.871133 0.667810 0.705299 -0.411734 -0.219341 -0.507035 0.337587 0.073437 0.425488 -0.940680 0.106109 -0.961791 0.149262 0.638025 0.112115 0.919247 -0.504003 0.639443 0.356366 0.618634 -0.229265 0.399319 -1.496835 0.350254 -0.383734 0.138359 -0.350443 0.149800 0.566874 0.574263 0.767316 -1.150358 1.147560 0.191851 -0.226488 -0.831818 0.364229 0.064108 -0.308588 -0.207128 0.475902 0.012944 -0.101937 -0.061595 0.429788 -0.013401 -0.655599 -0.689833 0.055200 0.789552 -1.010672 0.356277 -0.174433 -0.073427 -0.071494 0.510785 0.628947 0.396427 1.333725 0.775555 0.108448 0.476162 -1.098698 0.268494 1.302155 0.500409 -0.832749 0.911563 -0.762149 -0.341970 0.190928 0.550097 0.235996 0.981390 -1.036028 -0.918311 0.065495 -0.305177 1.153637 0.566782 0.074988 -0.936409 0.856437 -0.645675 -0.068332 1.273057 0.947974 -1.205161 0.307951 0.955607 -0.853087 -0.637517 0.512573 -0.726632 -0.329635 -0.290136 0.182583 0.565324 -0.656382 -0.863690 -0.179544 -0.864037 1.053471 -0.107590 -0.384201 -0.027716 -0.685411 -0.178900 1.163455 0.317152 -0.343535 -0.367349 -0.596606 -0.956335 -1.279985 0.139871 0.565398 -0.475609 -0.530697 -0.818792 -0.300950 0.630500 -0.417012 0.285254 -1.244636 -0.227408 0.710469 0.507948 0.284581 -0.816845 -0.153621 -0.245743 0.018417 0.257248 -0.439525 0.754582 1.195548 -0.580889 0.861013 0.333960 -0.537753 0.301475 0.981877 -0.935178 1.299511 0.092128 0.552426 0.346916 0.437842 -0.479827 0.124435 -0.159348 -0.521634 -0.172344 0.503486 -0.907404 -0.375585 0.271668 -0.577612 -0.602815 0.406318 0.782219 0.216275 0.067094 0.039934 -0.469616 -0.432108 -0.965397 0.056311 0.627925 -0.403136 -0.820667 0.467171 0.681416 -0.660622 -0.478098 0.184066 0.595648 0.809978 -1.072354 0.776130 0.022067 0.171063 -1.497177 -0.904085 0.360677 -0.614805 -0.864681 0.093679 -1.253067 -0.677519 -0.564252 0.577738 -1.302066 -0.681116 0.408422 1.227524 0.117697 -0.136469 0.670689 -0.394022 0.570331 0.130683 0.141794 0.091391 0.721152 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = -0.754886 0.607576 0.174990 -0.708900 1.176760 -0.275493 -0.027820 0.493015 0.280905 0.774904 -0.978107 -0.168696 -0.375178 -1.043895 0.048516 -0.318447 0.008926 0.829824 -0.299300 0.306886 0.651605 -0.337850 0.288333 -0.612054 -0.227764 -0.817092 -0.149575 0.154215 -0.016912 0.248667 0.165933 0.091450 1.028935 0.164238 0.641877 0.674253 0.166329 1.413320 0.246387 0.590582 0.234862 0.625445 -0.302195 -1.433735 0.660577 -0.594884 -0.442079 -0.905798 0.434444 -1.256637 0.805020 0.654408 0.076118 -0.423701 -0.810577 0.176803 0.934449 0.426083 1.005260 0.378729 -0.458074 0.113356 -0.747812 0.136316 -0.837819 0.506832 0.422883 -0.964233 -0.251878 0.526670 0.542854 -0.414759 -0.759113 0.038657 0.150486 -0.553377 0.302399 -0.272985 -0.537362 -0.316058 -0.577932 0.107792 -0.242895 0.755000 -0.192484 0.091382 -0.407033 0.065402 0.323886 -0.677821 -0.455225 0.780225 -0.097844 0.393521 -0.191247 0.580368 0.306486 -0.333986 -0.425232 -0.100637 0.238426 0.216161 0.385827 0.238012 -0.809248 -0.708551 0.843841 0.501745 -0.263336 0.199693 0.263358 0.360523 0.065842 0.360728 -0.594179 0.668023 -1.308976 0.232443 0.025323 0.203600 -0.089552 0.162546 0.094955 -0.079403 0.437590 -0.890629 1.110925 0.271904 -0.306274 -0.575039 0.526394 0.030863 -0.395669 -0.230143 0.624062 0.073266 -0.203544 -0.009980 0.021406 -0.247947 -0.479252 -0.585819 -0.237597 0.868400 -0.476900 0.192134 -0.343758 -0.588468 -0.016417 0.096372 0.154593 0.224706 1.013717 0.739540 -0.177393 -0.082043 -0.816293 0.282316 1.322030 0.564681 -0.809406 0.398145 0.042148 0.130766 0.482350 0.201118 0.382181 0.638268 -0.428849 -0.521990 -0.350189 -0.411477 0.884729 0.808310 0.478179 -1.145247 0.681844 0.081558 0.132962 1.435146 0.642906 -0.882532 0.055515 0.789332 -1.011343 -0.513665 0.085099 0.050310 -0.070886 -0.298585 0.298614 0.370926 -0.785250 -1.110294 -0.320935 -0.886275 0.864430 -0.084063 0.175046 0.108733 -0.986010 -0.242867 1.114771 0.190828 -0.396143 -0.253976 -0.512074 -0.462219 -1.183789 0.317545 0.446637 -0.485847 -0.531950 -0.614958 0.034718 0.759671 -0.428643 -0.112379 -0.365556 -0.366278 0.501253 -0.033422 0.318915 -1.019325 -0.319139 0.024219 0.106240 0.567330 0.198857 0.353312 1.155483 -0.639204 0.375726 0.872295 0.194166 0.328860 1.042640 -0.519140 0.963646 -0.461995 0.699205 -0.034739 0.516536 -0.224313 0.067527 0.059336 -0.058097 -0.100743 0.610120 -0.754213 -0.229163 0.455784 -0.710733 -0.233320 0.568346 0.600690 0.541667 0.062061 0.208100 -0.472856 -0.077840 -0.192724 -0.077869 0.745882 0.065355 -1.010280 -0.039753 0.430363 -0.498593 -0.691724 0.299644 0.282451 0.837248 -0.835069 0.706009 -0.014555 -0.396825 -0.949434 -0.537510 0.360011 -0.611133 -0.650910 0.588988 -1.081755 -0.305925 -0.460072 0.723803 -0.739913 0.009815 -0.271516 0.747188 0.472727 0.091426 0.704044 -0.062268 0.672724 0.091970 -0.249042 0.117205 1.086323 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -1.092567 0.917412 -0.548923 -0.868216 1.795059 -0.587194 -0.080887 1.948413 -0.472112 1.484815 -0.829330 0.220858 -0.019556 -1.398947 0.107883 0.045635 -0.031495 1.181691 -0.258835 0.636330 0.763014 -0.118928 0.060337 -0.190569 -0.876961 -0.822034 0.105082 0.546341 0.734590 -0.774981 0.136435 0.211660 2.138806 -0.544494 2.004108 1.381938 1.362710 1.251165 1.070149 -0.000406 -0.173519 0.727143 -0.829035 -0.989294 0.119857 -0.414773 -1.245279 -0.492262 0.545748 -1.044606 1.380205 1.228968 0.073345 0.201817 -0.740909 1.245574 0.596631 -0.901133 1.880040 0.361050 -1.160054 -0.350730 -0.800030 2.416420 -0.819605 0.354480 -0.323925 -0.994763 0.120265 0.336186 0.261528 -1.314505 -0.630211 1.160847 0.362338 -1.520736 0.557346 -0.612920 0.468179 -1.687578 -0.951693 0.708821 -0.131129 1.050042 -0.088360 0.462632 -0.560586 0.709686 -0.611826 -1.908408 0.317306 1.489644 -1.257066 -0.099519 -1.624302 0.821851 0.085536 0.276662 -0.801082 -0.878867 0.584178 -0.040274 0.702901 -1.155100 0.596325 -0.852946 -0.125414 0.110335 0.036780 1.452342 0.531537 0.825841 1.334464 1.551111 -0.259754 0.244966 -2.122822 0.606982 -0.124397 0.256493 -0.161859 0.326218 1.014831 0.595230 1.219376 -1.989866 0.909597 0.081329 -0.335707 -1.476746 0.188536 -0.427813 -0.641114 -0.683817 0.964705 -0.011214 -0.222324 -0.710415 0.662706 0.367703 -1.130702 -1.620315 0.294167 0.848678 -1.596998 0.237074 -0.349235 -0.302229 -0.326055 0.964213 1.148515 0.826659 1.953127 1.001425 0.126281 0.956699 -1.677551 -0.242855 1.208147 0.912350 -1.416572 1.600474 -1.549256 -0.650207 0.443574 1.313178 0.542334 0.747173 -1.252836 -1.092383 1.182411 0.380474 1.772659 -0.421146 0.025162 -1.053834 0.961723 0.111897 -0.807780 2.646526 1.043708 -1.599052 0.110847 0.489259 -0.042265 -0.571647 1.271498 -1.612826 -0.998935 -0.236658 0.191363 0.839376 -0.803316 -0.527614 0.515625 -1.266234 1.369891 -0.421726 -0.936907 0.187224 -1.738611 0.042882 1.518948 0.425373 -0.432480 -0.591204 -1.090126 -0.552594 -1.600496 0.476458 0.844375 0.030551 -0.867750 -1.233432 -0.075807 1.044636 0.155279 0.588703 -2.353983 -0.562044 1.157271 0.080740 0.509004 -1.613118 -0.192239 -0.307122 0.531955 0.645311 -0.577422 1.279476 2.013355 -0.842056 1.158744 0.645727 -0.870246 0.220883 0.880713 -1.970117 1.971016 0.310387 0.428600 0.238164 0.290086 -0.984551 -0.016918 -0.199272 0.522479 -0.234040 0.135723 -0.549678 -0.467779 -0.484192 -1.058280 -0.553412 -0.161702 0.652837 -0.546283 0.438622 -0.280417 -0.421483 -0.909598 -1.567053 0.029135 1.104825 -0.308043 -0.651284 1.303552 0.090111 -0.240299 0.983553 -0.112039 0.805007 1.211212 -1.674097 0.175123 -0.008928 0.307002 -1.711875 -1.584461 0.097733 -0.684717 -0.634253 0.104598 -1.443996 -0.895241 -0.822809 0.364753 -1.789055 -0.302387 0.662039 2.034203 0.540742 -0.791085 0.579575 -0.520163 1.294478 0.420957 0.114418 0.255141 1.154406 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -1.012614 0.797747 0.215633 -0.751195 2.563426 -0.578900 0.193185 1.257514 -0.798897 1.787307 -0.607716 -0.058219 -0.256000 -1.941957 0.265718 -0.529455 -0.060269 1.011552 0.124330 0.990005 0.668200 -0.809008 0.122627 0.009467 -0.660013 -1.659925 -0.271865 0.748804 1.544171 -1.148225 0.227516 0.243538 2.138530 -0.400604 1.981258 1.470726 0.687198 0.993211 0.788513 -1.179979 -0.315991 0.663231 -0.999625 -1.138623 0.053772 -0.197049 -1.518267 -0.688374 0.712921 -0.559907 -0.270997 1.488459 -0.466912 0.151115 -1.054807 1.245798 0.508694 -0.214000 1.818644 0.225034 -0.542836 -0.395430 -1.617868 1.779647 -0.700128 -0.193892 -0.885434 -1.392250 0.429372 0.220380 -0.290581 -0.970371 -0.309096 1.644291 0.947037 -1.453651 0.311762 -0.649632 -1.197527 -1.736507 -1.344485 0.675554 -0.419830 1.411158 0.244590 0.608710 0.120893 0.819823 -0.567001 -2.329118 0.484949 1.751156 -0.989370 -0.483178 -0.723543 1.391665 0.595682 0.189896 -0.640593 -0.927055 0.472463 -0.607659 0.838632 -0.905238 1.085259 -1.285070 -0.387124 -0.383190 0.657170 1.355218 0.801475 0.498110 1.180127 1.709753 -1.305539 -0.310656 -1.609361 0.812598 -0.749558 0.369746 -0.498467 0.886362 0.617731 0.808031 1.637828 -2.495155 0.501800 0.050260 0.072095 -1.701218 0.004579 -0.673160 -0.457901 -0.667711 0.970273 -0.290402 -0.210642 -0.657446 0.445171 0.574427 -0.890407 -0.460492 0.347936 1.714245 -1.889489 0.532812 -0.308188 -0.533188 -0.230600 0.870573 1.517144 1.598242 2.035735 1.511878 -0.213847 1.000315 -2.106788 0.060971 1.696424 0.147289 -1.250620 1.950218 -1.426511 -0.725855 0.321788 1.628940 1.242202 0.157255 -1.318175 -1.119914 1.098204 0.653244 1.847673 -0.125674 -0.042908 -0.677252 1.158327 0.134100 -1.110563 2.201668 0.434329 -1.583333 0.950883 0.724188 -1.212635 -0.610988 1.095983 -1.723808 -0.208011 -0.790951 0.285188 1.154726 -0.824009 -0.278758 0.256967 -1.310867 1.576492 -0.443412 -0.549284 0.814706 -1.084425 -1.179851 1.904225 0.222842 -0.236512 -1.238014 -1.531790 -0.788952 -1.308741 0.416845 0.119242 -0.490753 -0.561033 -1.501766 -0.446867 1.407868 0.452716 1.177322 -2.463118 -0.099454 0.922461 0.734838 0.660238 -0.870112 -0.163239 0.138466 -0.149680 0.042605 -0.507247 1.245114 2.029864 -1.075527 0.821133 -0.172343 -0.868436 0.779383 0.599331 -2.205224 2.094968 0.332812 1.351653 0.276272 0.443410 -0.830017 0.163340 0.254221 -0.244416 -0.171861 0.230652 -0.492021 -0.596577 0.269332 -1.135972 -1.436856 -0.454337 0.691397 -0.127438 0.568439 -0.424500 -0.924551 -0.475932 -0.956867 0.549847 1.042546 -0.195035 -0.411946 1.392376 0.377635 0.244863 -0.150898 0.069265 0.674045 0.931253 -1.902574 0.126775 -0.244148 0.979408 -1.107519 -2.040010 0.392837 -1.119411 -0.661785 0.538041 -2.071452 -0.366174 -1.181387 -0.026295 -1.910745 -0.091233 0.642787 2.312443 0.448039 -0.926973 0.737728 -0.666081 0.771679 -0.119796 0.187942 0.342787 1.035857 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -10.954363 11.728467 5.522338 -9.838923 20.816423 -1.552762 3.306899 6.273215 -7.828540 17.293469 -9.377837 -1.230083 -4.604058 -19.105318 0.371316 -10.658189 -3.924801 8.305871 0.243097 11.684278 8.208594 -11.554274 2.953588 -3.055437 -6.865897 -16.445276 -2.044317 5.459594 13.463683 -5.865693 6.819413 -1.302561 17.109137 -1.728157 15.249481 12.797546 2.552032 14.981094 3.466489 -4.781533 -4.780581 8.513374 -9.519589 -14.778925 3.436586 -4.992825 -12.660993 -10.639000 6.697864 -10.588627 -1.598692 14.610293 -3.764444 -2.559488 -11.951334 10.305961 10.108287 0.461170 18.889326 2.019165 -2.888323 -3.458626 -17.561516 8.825537 -7.244982 0.911894 -1.920911 -11.510909 4.684964 0.904899 -3.040418 -5.900619 -4.603614 13.960449 9.426163 -14.197537 1.392974 -9.103936 -24.951022 -12.624463 -10.177372 4.145118 -0.350421 13.986387 1.340744 5.712507 3.812532 8.725930 -3.970992 -21.491857 1.850846 18.091439 -4.914453 -4.352695 -6.745419 16.750958 3.775654 0.688461 -9.915190 -1.695017 4.703138 -0.643190 8.317399 -12.154259 -2.009872 -18.252496 2.459048 -0.259395 1.208761 6.552878 8.257839 3.774611 8.585300 16.148370 -17.423991 5.370042 -16.751679 3.711233 -2.143115 5.266187 -3.846522 7.823335 -0.146223 4.822352 14.808079 -22.514457 8.929862 0.736413 -2.605176 -18.853601 1.496270 -5.851753 -3.932756 -5.103348 8.131111 -1.763291 -2.414335 -5.965700 1.615796 2.871452 -7.512547 -7.089562 5.725106 19.355661 -13.965232 5.137914 -3.897107 -5.990756 -2.483538 7.390924 12.215255 11.666712 20.306129 14.392650 0.500599 9.231130 -15.688243 0.310917 18.212860 7.367467 -13.677578 15.624884 -9.552928 -4.565194 2.670360 10.521939 12.637427 6.262245 -16.345667 -14.203886 8.790992 1.768600 17.189899 4.997822 1.846159 -8.259926 16.922227 1.244557 -8.375264 18.969801 8.979755 -13.095374 7.018591 6.450751 -16.706478 -7.029842 10.023307 -9.986910 0.534187 -4.454088 1.243521 7.818213 -6.924643 -8.460085 -3.248371 -14.367550 17.511755 -3.776269 1.860126 6.256633 -11.208551 -15.209176 13.967490 0.334407 -6.835843 -11.390295 -11.105515 -12.371327 -13.380476 5.864798 3.587691 -7.208046 -10.196398 -14.567955 -1.137268 10.626194 1.735056 7.923643 -15.583649 -6.305234 8.245119 7.317399 9.443771 -8.528086 -2.138083 0.109140 1.347867 5.341389 0.727871 14.110533 21.975432 -9.827842 9.219598 -2.336509 -5.453072 7.647354 10.798101 -18.240980 19.422273 0.158833 13.728956 -0.998866 5.369573 -4.890919 2.619101 5.178059 -3.977731 2.860161 3.616942 -4.683312 -5.876063 1.642074 -13.728725 -8.278701 -0.677347 5.744218 0.121074 5.253796 2.201789 -8.445761 -4.917256 -8.411411 1.112297 11.486929 0.155031 -6.104596 8.765125 2.219923 3.594839 -1.638825 1.832238 6.389663 8.858056 -17.405345 3.157368 -4.815158 0.691465 -11.351145 -16.799844 4.202668 -12.299190 -10.301947 8.995942 -17.587359 1.663350 -11.612416 1.659662 -17.101754 -3.015930 2.283950 19.398329 6.348340 -5.467617 8.078566 -5.990780 11.460228 -0.391180 -0.169961 4.755773 13.210768 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -4.736142 2.354647 -2.998296 -2.824482 8.862027 -4.214088 1.190437 5.560594 -3.509900 5.427121 -3.276622 1.314881 -1.720672 -8.060843 1.088824 1.690458 1.745003 6.085801 -0.114981 3.613788 4.079656 -2.755888 0.484003 -1.653645 -2.002364 -3.493599 0.532725 1.990735 3.316340 -3.962991 -1.079403 2.322941 8.791842 0.056050 7.303909 5.949553 2.416516 7.068921 4.504479 -4.353815 -0.838777 3.838252 -2.789045 -7.303235 2.606152 -1.687921 -3.764105 -3.913239 3.033385 -2.986433 5.021489 5.369000 -0.755537 0.132810 -5.845849 2.313495 4.844250 -0.798062 7.429380 1.951827 -2.721006 -0.537391 -3.798121 6.003166 -4.030489 -0.500506 0.857150 -4.979710 1.372314 1.576702 3.853564 -6.831436 -4.481592 3.491266 1.282208 -5.189926 2.056606 -1.186943 -1.049724 -7.408174 -6.747533 1.035848 -3.246326 5.758456 -0.672753 1.478577 -3.829631 1.707187 0.011261 -7.152530 0.329457 4.940451 -3.304672 1.758940 -3.638945 5.681924 1.138346 -0.495940 -4.463583 -3.572847 1.917513 -1.608663 3.384272 -0.611368 1.828260 -2.838382 0.875856 -1.331845 0.783446 4.752855 4.955163 2.550378 3.749399 4.532961 -1.873376 -0.504978 -8.628261 2.873886 -0.230668 1.225064 -0.533553 2.499185 2.915665 -0.494827 5.128865 -8.810233 3.850346 0.963911 0.221038 -6.158769 1.890829 -1.293597 -2.184243 -3.501425 5.582282 -0.688258 -1.223165 -1.627272 1.701969 1.435752 -5.993801 -3.743054 -0.520952 7.455106 -6.854865 1.671236 -2.563456 -3.885680 -0.295082 1.504310 3.034479 4.901424 7.125738 6.020976 -1.780537 3.408001 -7.716714 0.619925 7.341692 4.625807 -5.786051 5.465715 -3.556544 -1.368945 2.733213 5.022019 4.610329 -0.692182 -3.870533 -3.423432 4.549756 0.866753 6.845128 -0.624222 1.974973 -3.871185 3.836771 3.343827 -2.591476 10.587851 0.642258 -6.597124 3.449987 3.600231 -1.217594 -1.934101 2.635663 -4.297868 -2.121089 -2.831481 2.701434 3.592247 -5.158886 -2.771437 0.098838 -5.433271 5.356403 -1.384982 -2.457286 2.187872 -6.881876 0.384441 8.206506 0.975414 -1.450605 -3.591065 -5.848102 -2.168321 -6.706976 2.232818 0.629994 -0.910964 -2.774931 -5.467560 -1.699156 6.733771 0.506866 1.564366 -7.768528 -0.875730 3.868238 1.709228 1.433058 -7.248147 -1.586156 2.024924 2.122996 1.847929 -0.611112 3.725447 7.962365 -5.363629 0.664576 4.593477 2.074333 3.509441 4.360629 -7.255370 7.177590 -0.371658 6.601367 0.533267 2.145907 -3.387156 -0.011933 0.464054 3.891143 -1.504308 1.345227 -2.824964 -1.859185 1.582919 -3.372885 -4.699211 -0.004905 3.304168 0.856850 1.715944 -2.335999 -1.245201 -1.620118 -4.083681 1.487407 5.045815 -0.749314 -3.182793 3.644860 1.575277 -0.579623 2.586380 1.111236 2.642211 5.225513 -6.875250 1.825177 -1.197918 1.982743 -4.025584 -8.001593 2.574754 -3.033124 -2.640748 4.499720 -8.366350 -2.264797 -3.678065 2.802346 -8.262047 2.101467 -0.682355 7.119285 1.917313 -0.912143 4.171506 -1.546788 3.485282 -0.623410 0.281373 0.360283 6.435767 +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.948418 0.644843 0.103503 -0.696747 2.347944 -0.610275 0.158114 1.070070 -0.581936 1.614880 -0.581993 -0.196921 -0.270734 -1.813105 0.274892 -0.442587 0.002221 0.973832 0.083549 0.874727 0.645335 -0.717890 0.104677 -0.022832 -0.567987 -1.436984 -0.295280 0.696628 1.385082 -1.144977 0.121924 0.282896 2.020914 -0.349441 1.870517 1.387323 0.648243 0.986189 0.714245 -1.066268 -0.237078 0.656321 -0.911656 -1.099868 0.075022 -0.174453 -1.374647 -0.661351 0.684717 -0.433876 -0.093016 1.384759 -0.417567 0.142130 -1.037036 1.105206 0.477337 -0.085078 1.689989 0.245755 -0.474334 -0.212898 -1.493104 1.628565 -0.716862 -0.127867 -0.807289 -1.307532 0.340181 0.219193 -0.160487 -0.992279 -0.406490 1.466838 0.855762 -1.319722 0.326200 -0.561706 -0.921921 -1.626258 -1.337143 0.625555 -0.438228 1.322248 0.191547 0.538748 0.045463 0.730467 -0.469832 -2.115624 0.413746 1.561543 -0.930882 -0.385342 -0.590157 1.250174 0.536060 0.146459 -0.617058 -0.885043 0.426235 -0.613790 0.786666 -0.629590 1.049995 -1.095443 -0.318408 -0.328310 0.581998 1.222998 0.858471 0.448261 1.086968 1.526161 -1.119307 -0.366355 -1.506619 0.746717 -0.691573 0.323683 -0.424617 0.844456 0.589034 0.673362 1.488266 -2.295395 0.477923 0.053993 0.058949 -1.500698 0.031994 -0.594840 -0.471182 -0.639497 0.944330 -0.237986 -0.207635 -0.568271 0.421051 0.531504 -0.801568 -0.332167 0.271323 1.518301 -1.658155 0.476249 -0.304781 -0.566437 -0.203427 0.774210 1.360797 1.476113 1.887113 1.423325 -0.273452 0.792006 -1.964044 0.083628 1.574534 0.011170 -1.169546 1.783791 -1.287781 -0.625957 0.335002 1.540428 1.143439 0.079223 -1.096026 -0.925611 0.931482 0.583250 1.702356 -0.196459 -0.018482 -0.614861 0.988738 0.200751 -1.005111 2.115533 0.342296 -1.481803 0.844728 0.721471 -1.074220 -0.601852 0.993560 -1.555001 -0.177571 -0.799529 0.346760 1.066924 -0.809531 -0.246111 0.255881 -1.218159 1.425637 -0.417868 -0.590098 0.776141 -1.081134 -1.033254 1.847970 0.189911 -0.185659 -1.132977 -1.447172 -0.594679 -1.257802 0.408057 0.077742 -0.417379 -0.483854 -1.365845 -0.375645 1.387825 0.385141 1.072044 -2.176238 -0.064794 0.846687 0.656267 0.609234 -0.767339 -0.177776 0.200977 -0.117176 0.024504 -0.470170 1.048823 1.893215 -1.043958 0.656941 -0.034079 -0.760436 0.715187 0.583659 -2.037994 1.944832 0.287594 1.190276 0.233305 0.418442 -0.781260 0.117916 0.244435 -0.140741 -0.208205 0.200994 -0.471176 -0.537126 0.260772 -1.015508 -1.334453 -0.387115 0.675224 -0.097465 0.526582 -0.426955 -0.831027 -0.396203 -0.824788 0.539135 0.988298 -0.114971 -0.394124 1.272107 0.385806 0.188304 -0.099054 0.068610 0.579700 0.940765 -1.768488 0.132932 -0.206315 0.931164 -0.975802 -1.874730 0.350421 -1.022153 -0.508626 0.540080 -1.889500 -0.392957 -1.091146 0.033856 -1.687225 -0.002612 0.556145 2.115025 0.505116 -0.851385 0.690468 -0.590875 0.702072 -0.117770 0.085452 0.326586 0.981265 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.853848 0.939183 -0.009505 -0.709991 2.112169 -0.103057 0.152635 1.443041 -1.526411 1.392605 -0.775745 0.936737 -0.014157 -1.496114 0.140007 0.080008 -0.085577 0.572819 -0.000175 0.747164 0.520131 -0.771098 0.164865 -0.271051 -0.644986 -1.533615 0.325057 0.445757 1.167127 -0.130894 -0.107357 0.071917 1.332563 -0.403406 1.104417 0.989433 0.542905 0.787819 0.780783 -1.460841 -0.117818 0.445874 -0.630172 -1.052184 0.016948 -0.460914 -1.212834 -0.623603 0.556708 -0.955438 -0.474280 1.022114 -0.171988 -0.208799 -0.921373 1.099881 0.795807 -0.761422 1.488194 0.213110 -0.571243 -1.119785 -0.882068 1.579028 -0.597844 -0.289890 -0.265975 -0.887353 0.414177 0.567510 -0.446969 -0.116578 -0.036712 0.834392 0.647525 -1.222473 0.168855 -0.498336 -1.190706 -1.169366 -0.498877 0.429503 -0.360771 1.136823 0.172111 0.457439 0.148976 0.515453 -0.221266 -1.568056 0.056145 1.454363 -0.476510 -0.409600 -1.084949 1.393052 0.656662 -0.141572 -0.544554 -0.480978 0.455081 -0.029338 0.539318 -1.743057 0.649952 -1.179551 -0.068835 -0.083223 0.466270 1.218889 -0.148796 0.407897 0.654022 1.102845 -0.670192 0.220204 -1.456392 0.367236 -0.221811 0.235927 -0.508169 0.316964 0.770483 0.464511 1.161870 -1.720851 0.884308 0.259528 0.052031 -1.395172 0.210741 -0.238760 -0.267835 -0.333738 0.653065 -0.240535 -0.074867 -0.353925 0.507268 0.283938 -1.236590 -0.741028 0.230628 1.646355 -1.754750 0.442974 -0.228566 -0.135309 -0.108226 0.614217 0.953648 0.854479 1.529975 0.986220 0.037127 1.233553 -1.382960 0.255909 1.654947 0.774426 -1.031967 1.249613 -1.046813 -0.543691 0.098412 0.774915 0.758585 0.632149 -1.432853 -1.234938 0.735350 0.146411 1.453553 0.400269 0.152063 -0.661734 1.301352 -0.190255 -0.388270 1.162857 0.702818 -1.183702 0.910755 0.775071 -1.037448 -0.247776 0.718142 -1.191277 -0.310124 -0.376620 0.127013 0.833367 -0.768264 -0.546181 -0.281680 -0.985441 1.327121 -0.177816 -0.096035 0.172751 -0.567207 -0.266779 0.964786 0.192792 -0.327527 -0.748967 -0.835224 -1.686415 -1.207141 0.186808 0.321709 -0.640036 -0.626411 -1.200168 -0.685403 0.751078 0.030709 0.463460 -2.305025 0.019229 0.827455 1.013584 0.372491 -0.756008 -0.129274 0.052052 -0.089104 0.272328 -0.557068 1.371417 1.262203 -0.722822 1.017267 -0.426036 -0.446722 0.738520 0.721635 -1.343244 1.506591 0.277437 1.017601 0.365481 0.474743 -0.495552 0.234488 -0.113779 -0.526686 -0.088767 0.396085 -0.744384 -0.486254 0.339156 -0.668492 -0.988433 -0.007677 0.623588 0.287837 0.217105 -0.158147 -0.483772 -0.473695 -1.244905 0.228963 0.729143 -0.617014 -0.492569 0.801611 0.499497 -0.055831 -0.019494 0.194813 0.729271 0.702159 -1.326031 0.477277 -0.208353 0.516270 -1.271241 -1.343449 0.357314 -0.552543 -0.959855 0.682511 -1.781591 -0.343093 -0.734361 0.302900 -1.767773 -0.393720 0.374318 1.628171 -0.172911 -0.339684 0.684375 -0.477494 0.558858 -0.012656 0.470010 0.066697 0.746649 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -10.318987 12.487406 10.810312 -8.241756 20.264817 -0.147484 5.798327 9.239598 -15.827648 18.007850 -7.176840 3.807297 -3.358165 -15.035647 0.227875 -11.466726 -4.370628 4.229638 2.396335 13.663637 6.753408 -11.767067 1.586448 -0.872268 -8.062132 -16.506769 -0.397556 5.750644 17.829054 -5.755046 7.637165 -1.651167 15.196568 -4.067275 17.271372 13.764450 1.977382 10.076160 3.878389 -12.534897 -7.357114 7.483761 -10.997863 -10.691923 -0.892679 -3.569564 -13.111013 -7.798995 6.377309 -7.744405 -10.482750 14.883691 -5.307243 0.044386 -9.736848 14.151829 5.917728 -3.326184 19.082093 0.438178 -3.831376 -6.721162 -17.154941 11.299105 -3.263631 -1.755058 -7.955257 -9.986622 8.542038 -1.242742 -10.470513 -4.036291 2.275753 17.483991 9.008874 -15.848391 1.109115 -9.520371 -26.607162 -14.290691 -7.783242 5.234716 3.189812 13.305263 2.783026 6.720325 5.292690 10.990706 -6.888443 -24.072560 5.202542 18.813899 -7.819153 -9.402576 -6.143884 17.899150 4.542257 3.328348 -7.983377 -1.675552 5.505754 -2.040339 8.067436 -21.610999 5.196755 -18.726215 -3.089973 -2.886955 4.860972 9.236413 4.353201 5.899861 12.398704 18.687685 -16.252692 5.534400 -14.268247 4.637905 -5.577649 4.439803 -4.633131 8.970992 1.251469 7.953324 17.282045 -22.650168 4.914863 0.095829 -0.318774 -21.054127 -0.423874 -8.711699 -3.220655 -5.932539 7.259344 -2.120783 -1.474980 -8.534894 3.136810 4.073407 -5.595900 -6.055196 8.078789 19.170744 -17.144922 5.173814 -2.861047 -2.336066 -2.989288 10.148573 14.690823 14.117769 20.381154 14.194980 1.466969 11.974501 -16.044081 -1.755824 14.808774 5.345409 -12.710535 18.250208 -13.625084 -8.159791 1.369638 11.544123 13.946674 7.186652 -20.434112 -17.488976 14.544631 4.565703 18.100935 2.754219 0.739958 -3.603851 18.688971 -4.781136 -11.934276 13.311231 8.593946 -14.326432 8.959211 4.354277 -14.742201 -5.848742 12.873588 -15.351341 0.494455 -3.518171 -2.355993 9.111547 -5.765838 -4.582727 -0.926892 -13.983902 18.195905 -3.740759 3.116139 6.217794 -7.814563 -15.179315 11.015297 2.197907 -6.057159 -13.257983 -10.770869 -16.653679 -11.559420 4.818664 2.543157 -5.685209 -10.427087 -16.059550 -3.116280 5.252952 4.461450 11.330944 -18.986856 -5.185388 8.646290 9.144999 9.374419 -3.483613 -1.593024 -1.638854 -1.814172 4.675634 -2.930629 18.711568 20.745845 -8.052677 13.017234 -7.884510 -9.455729 7.793886 7.455763 -21.168722 19.995406 3.358206 14.398929 0.898123 4.472315 -7.529092 2.277620 4.775165 -7.631902 3.165550 2.317215 -2.802056 -6.020694 -1.389935 -13.636550 -8.629074 -4.511350 3.706022 -3.633983 5.839794 3.671435 -10.102277 -7.354990 -13.991323 2.255199 10.646522 -3.517528 -4.219230 12.503077 0.655867 5.488539 -1.368113 0.549057 7.002175 6.103207 -18.257829 -0.522749 -5.078599 3.365196 -11.586118 -17.164698 3.473452 -12.141139 -11.493875 6.412501 -15.832229 4.159047 -12.185212 -2.531521 -20.042739 -6.939619 5.745999 21.798364 3.047803 -8.414086 6.300861 -7.867375 10.925413 0.318495 3.448578 2.369560 9.574589 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -4.743584 4.786971 3.284749 -3.788069 10.190407 -1.191603 2.170940 4.846004 -6.054918 8.186283 -3.244231 1.392611 -1.617475 -7.541966 0.526422 -4.649866 -1.269110 3.067534 0.513261 5.502238 3.232245 -4.464807 0.686527 -0.520812 -3.404107 -7.983688 -0.332727 2.805302 7.513916 -2.980151 2.580398 0.064901 8.090241 -1.946008 7.738380 6.339499 2.154685 4.985683 2.200339 -5.197291 -2.240440 3.345640 -4.593691 -5.025714 -0.060355 -1.477755 -6.406456 -3.241266 3.179682 -3.600908 -3.366020 6.647117 -2.026485 0.010235 -4.649858 6.491562 2.860820 -1.475584 8.496637 0.645447 -2.076823 -3.244631 -7.593642 6.749702 -2.452475 -0.676647 -3.455338 -5.084311 2.869546 0.360995 -3.336979 -2.543480 -0.233915 7.295791 4.205478 -6.905113 0.861471 -3.673456 -9.802184 -6.539347 -4.248994 2.397399 0.216359 6.123252 0.961631 2.847060 1.567150 4.388107 -2.561653 -10.511943 1.833962 8.660519 -3.697627 -3.301035 -4.139818 7.275782 2.479887 0.859189 -3.543317 -2.098509 2.290064 -1.424131 3.733419 -8.377674 2.372799 -7.477029 -1.414258 -1.226102 2.235359 5.275541 1.595360 2.659493 5.033567 7.907855 -6.496728 1.398102 -7.212236 2.638664 -2.616754 1.932186 -2.133636 3.886112 1.342025 3.645759 7.548721 -10.613817 2.766544 0.019492 -0.202626 -8.873396 0.161279 -3.059513 -1.669502 -2.834170 3.874365 -0.974405 -0.877640 -3.256056 1.932022 2.127408 -2.972086 -3.043109 2.877505 8.216845 -7.934333 2.345418 -1.477713 -1.586113 -1.163019 4.113663 6.396635 6.300740 9.224855 6.563651 0.251506 5.806467 -8.067390 -0.287089 7.119781 2.726456 -5.792157 8.332119 -6.181342 -3.357697 0.910411 5.752467 5.763549 2.970403 -8.103029 -6.965930 5.563404 1.984386 8.253231 1.075183 -0.017222 -2.701583 7.049835 -1.769929 -4.736677 7.283218 3.838475 -6.667762 4.008243 2.662722 -6.300391 -3.081611 5.323175 -7.018439 -0.329769 -2.281295 0.072246 4.576624 -3.051855 -2.005628 -0.025203 -6.085769 7.768114 -1.905084 -0.240009 2.897456 -4.322066 -6.681673 6.101015 0.686187 -2.187573 -5.735168 -5.600028 -6.463726 -5.884900 2.130266 1.020207 -2.502830 -4.181939 -6.991984 -1.721404 3.959803 1.635172 4.850825 -9.874387 -1.821508 4.072176 4.098662 3.898877 -2.684310 -0.741097 -0.335677 -0.359850 1.621679 -1.681095 7.211903 9.377622 -4.207016 5.107311 -2.936826 -4.411955 3.395707 3.588546 -9.686167 9.112925 1.519220 6.274438 0.607490 1.938417 -3.470705 0.872821 1.717590 -2.549267 0.501248 1.072698 -1.890019 -2.676860 0.036979 -5.738246 -4.549077 -1.584853 2.522149 -1.310635 2.551127 0.677680 -4.093038 -2.968503 -5.804584 1.288699 4.846684 -1.325666 -1.954546 5.689769 0.901980 1.339383 -0.495615 0.276650 3.333195 3.396887 -8.248915 0.395953 -1.880625 2.079991 -5.455371 -8.591067 1.716689 -5.294556 -4.852029 2.773684 -7.939555 0.308258 -5.289405 -0.092219 -9.080002 -2.661143 2.696266 9.865690 1.533314 -3.352628 3.301349 -3.227145 4.559685 -0.289422 1.330778 1.450819 4.551990 +PE-benchmarks/subset-sum.cpp__main = -1.684888 1.163340 0.683789 -1.084613 3.617655 -0.593019 0.462484 2.253498 -1.394799 2.474129 -1.234198 0.291225 -0.679955 -2.407088 0.294892 -0.935447 -0.065272 1.370832 -0.261059 1.154440 1.304563 -0.803413 0.187726 -0.354991 -0.913376 -2.238873 -0.220450 0.765929 1.829196 -0.600065 0.204554 0.363620 2.877441 -0.430065 2.577071 2.049683 1.236125 1.962683 0.593237 -0.826153 -0.436751 1.279129 -1.408213 -2.116414 0.462789 -0.838116 -1.987315 -1.045756 1.122910 -1.545825 0.027682 2.085296 -0.459086 0.112198 -1.221582 1.768119 0.896419 -0.328845 2.722678 0.573049 -1.325433 -0.921194 -2.304011 2.407301 -1.007051 0.477953 -0.795470 -2.213074 0.201205 0.346637 -0.181270 -1.306913 -0.572787 1.959620 1.004526 -1.952996 0.656676 -0.824984 -1.619872 -1.926590 -1.848284 0.675147 -0.377959 1.994108 0.035894 0.630356 -0.140627 0.966487 -0.504522 -3.177783 0.315474 2.713165 -1.451296 -0.154778 -1.847489 1.434466 0.499519 0.347260 -1.118918 -1.018522 0.802179 -0.202848 1.143781 -1.856460 0.502302 -1.966551 0.121474 -0.144629 0.717209 1.612064 0.477039 0.758955 1.397085 2.304687 -1.503109 0.634905 -2.516364 1.166950 -0.842839 0.665265 -0.634493 1.095816 0.900465 0.798599 2.249574 -3.231915 1.138110 0.125353 -0.348759 -2.498425 0.374517 -1.041355 -0.882130 -0.998529 1.642913 -0.214330 -0.493297 -0.987389 0.757040 0.408739 -1.428002 -1.247978 0.227862 1.975056 -2.570109 0.542375 -0.701236 -0.837483 -0.399700 1.308603 1.764796 2.023380 2.882164 2.166518 -0.200833 1.296486 -2.800018 0.172349 2.584079 1.005122 -2.080694 2.354815 -1.895919 -0.620432 0.706241 1.668482 1.602397 1.194562 -1.848132 -1.569797 1.157417 0.599371 2.814895 0.895266 0.448139 -1.363250 1.496448 -0.802873 -1.335466 2.917669 1.385317 -2.559956 1.068310 1.019104 -1.511494 -0.969717 1.350323 -2.136634 -0.417139 -1.025328 0.335170 1.630342 -1.537742 -0.885155 0.503560 -2.115355 2.468867 -0.507175 -0.052059 0.900445 -2.057670 -1.522826 2.532734 0.394792 -0.668450 -1.627095 -1.841078 -1.755102 -2.152855 0.746816 0.499846 -0.617164 -1.409507 -2.223792 -0.565290 1.819841 0.357010 1.342511 -2.956064 -0.444044 1.348746 0.518679 1.269521 -1.725670 -0.511030 -0.347369 -0.196683 0.856182 -0.683059 1.654281 2.999350 -1.569650 1.604373 0.131335 -1.123263 0.653199 1.333033 -2.765319 2.844255 0.275555 1.816008 0.199243 0.922397 -1.323083 0.176041 0.230778 -0.175654 -0.165870 0.822495 -0.857015 -0.719445 0.220639 -2.055223 -1.385504 -0.212292 0.910815 -0.045260 0.663204 -0.138461 -1.411109 -0.828265 -1.771952 0.437604 1.817461 -0.621305 -1.115552 1.544207 0.181160 -0.367078 -0.405476 0.362489 0.933203 1.605428 -2.631333 0.228888 -0.221928 0.502541 -2.123174 -2.595856 0.229764 -1.617109 -1.566705 0.990735 -2.674470 -0.327233 -1.613422 0.357640 -2.853187 -0.806974 0.544952 3.103002 0.653758 -0.790911 1.416598 -0.633802 1.547672 0.029203 0.248055 0.431423 1.738663 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -4.682716 3.433812 -0.231471 -3.412872 11.708771 -3.640307 1.855530 5.592773 -6.389262 7.696119 -2.259797 1.060415 -1.627500 -10.290520 1.434216 -1.591974 0.514432 5.392115 1.287906 6.043899 3.428058 -5.169445 0.804994 -0.128913 -2.846639 -7.257995 0.049352 3.398724 7.816948 -5.402590 1.005539 1.332765 9.906273 -1.620193 8.241577 6.689164 2.048302 4.998144 4.838991 -9.642552 -2.138432 3.332107 -4.242968 -5.824664 0.645079 -0.518935 -6.685673 -3.677880 3.556414 -2.187325 -2.676339 7.068327 -2.259163 0.239231 -6.288432 5.287030 4.139718 -1.474366 8.471821 0.905721 -1.096164 -3.116141 -6.379311 7.392735 -3.064039 -2.731443 -3.371888 -5.269195 3.184637 1.042810 -1.971143 -4.423296 -1.405076 7.006802 4.505590 -6.864259 1.320477 -2.653308 -6.562956 -9.391135 -6.903000 2.199974 -2.644164 7.070619 0.854833 2.992086 0.666386 3.732729 -1.998020 -10.344930 2.377015 7.061625 -3.674362 -2.918115 -2.556731 8.582331 3.123626 0.017046 -4.216020 -4.522763 1.987482 -3.354637 4.297077 -5.038366 5.299851 -5.651796 -2.504527 -2.716728 3.408844 7.304631 4.552913 2.359564 4.981578 7.250539 -6.099519 -1.697072 -8.358775 3.155994 -3.032016 1.799783 -2.166006 4.345100 3.209695 2.741555 7.373863 -12.202083 2.668477 0.652869 1.563310 -8.182419 0.569592 -2.320624 -1.382515 -3.346564 5.068825 -2.091071 -0.922992 -2.505051 2.361307 3.261211 -5.043978 -1.133502 1.578143 10.340193 -9.988096 2.949918 -1.880601 -3.030881 -0.159882 2.743671 6.047542 7.297905 9.173394 7.291687 -1.639300 7.079889 -9.746693 0.661861 8.170114 2.180836 -5.580830 8.537886 -5.959518 -3.456703 1.232582 7.508801 6.697313 -0.120072 -6.825904 -5.832721 7.291106 2.825631 8.029671 -1.523218 0.202318 -3.560262 6.095262 1.882286 -4.304003 9.961009 0.883904 -6.944969 5.734669 3.600749 -5.707411 -2.267393 4.475293 -7.278395 -0.804023 -3.693330 1.829417 5.294183 -4.200161 -1.720538 -0.421803 -5.708903 6.519902 -2.122000 -2.852632 3.621679 -4.444857 -3.891723 8.608287 1.088639 -1.244580 -6.170024 -7.941648 -4.605474 -6.201890 2.280124 -0.439494 -2.131115 -2.705509 -6.913311 -3.240669 6.887299 2.516261 4.431754 -13.045228 0.482080 4.301899 5.478975 2.492353 -4.189560 -0.757312 2.265461 -0.111530 -0.095393 -1.681518 6.387892 8.529934 -5.701716 2.586998 -1.741694 -2.297528 5.258240 3.048907 -10.202188 9.360736 1.845569 9.415438 1.018824 1.888846 -3.580449 1.135333 1.502406 -0.904553 -0.686992 0.603671 -2.404646 -3.066478 2.235104 -3.675792 -7.971665 -2.233337 3.434201 -0.331659 2.793441 -2.026425 -3.053486 -2.181313 -4.315471 2.730092 4.898389 -1.154889 -1.518161 5.980956 2.322915 2.160281 0.423002 0.564066 3.408533 4.050595 -8.776804 1.178049 -2.209347 5.078157 -3.892488 -10.454964 3.358320 -4.259762 -2.927846 4.269464 -10.238927 -0.753064 -5.266946 0.623392 -9.947392 0.589102 1.749013 9.822571 0.953717 -3.248012 3.721872 -3.103166 2.958629 -1.518177 1.402141 1.086383 5.065764 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -5.762172 3.785696 1.750243 -5.361356 15.556573 -1.566103 1.218422 6.324800 -2.634521 8.886261 -5.182102 -1.493521 -1.855703 -9.809775 1.141544 -3.944125 -1.588217 5.651388 -2.165382 3.934342 4.199074 -2.514471 1.644763 -1.444828 -3.358761 -7.179299 -2.762086 3.544894 6.489029 -3.608057 0.277271 -0.071640 10.465305 -2.786001 8.136170 6.227012 4.705389 6.954725 0.247247 -3.029247 0.586791 4.066116 -4.971609 -7.390358 1.630470 -3.147266 -8.978420 -4.363350 4.344418 -6.020189 0.365534 7.469491 -1.198382 -1.398376 -4.263325 7.274498 3.917198 -0.464098 9.426190 1.992518 -4.268838 -1.000332 -10.223738 8.477005 -3.935724 4.142682 -3.819063 -9.016395 -1.933008 2.454570 0.360223 -6.107908 -3.949233 6.435870 4.875901 -6.335265 2.280541 -3.921588 -3.435270 -8.006279 -6.805077 2.930608 -3.172408 6.787941 0.100331 2.412413 0.649981 3.289811 -1.822410 -10.766306 -0.170058 9.879195 -4.398178 -0.803263 -6.060312 3.573816 1.415833 0.166324 -4.803860 -4.213094 2.283554 -0.080593 4.039518 -4.939561 3.275577 -7.594630 0.087602 1.730125 2.576879 4.739905 2.747534 1.675670 3.832777 7.731040 -6.557562 1.371065 -9.218111 2.930496 -4.032947 3.234505 -3.254940 4.326853 3.560276 3.987937 7.505509 -12.198916 5.384364 -0.353031 -2.723128 -7.688588 1.524313 -2.262544 -3.441767 -2.025229 4.565124 -0.950619 -2.007102 -2.416254 2.834853 1.349950 -5.314498 -2.284075 1.275680 6.145815 -8.939688 2.180898 -1.824823 -3.150159 -0.955040 4.894743 7.270000 6.229789 11.158755 7.611277 -0.498075 3.480665 -10.534466 2.094615 9.881460 0.786540 -7.116817 8.243788 -6.662544 -1.195684 2.402716 6.480974 4.679356 4.853484 -5.695638 -4.548194 3.126082 1.699140 9.803256 3.163469 1.106213 -6.617016 4.421345 -3.232727 -3.313196 12.070327 5.536868 -9.172591 3.293684 4.450903 -6.028485 -4.263239 4.546435 -6.803989 -1.823787 -3.567389 2.001568 5.512709 -4.394242 -4.722469 0.925891 -7.061939 8.786548 -2.367029 -3.219355 3.322806 -6.624928 -6.136538 10.139507 0.974466 -2.666117 -5.173807 -6.870790 -3.722557 -7.882618 2.804754 2.519505 -2.896934 -4.929354 -7.243739 -0.968344 8.274177 0.196218 4.514544 -10.505212 -1.226471 4.427313 2.051003 5.733119 -6.423937 -1.035043 -1.723135 -1.096244 1.758901 -2.631639 4.210573 11.027481 -6.104460 5.358675 0.452945 -5.243451 1.550815 5.527453 -8.729909 10.690996 1.769820 7.752626 -0.388323 3.286658 -3.282290 1.498544 0.899905 -1.382438 -0.089546 3.276742 -3.650347 -3.024918 1.246564 -7.262377 -6.447038 0.483759 4.460378 -0.266630 2.451199 -1.540026 -4.996874 -2.530019 -3.995785 1.126973 5.990213 -2.198635 -4.689396 4.627801 1.939044 -1.818750 -2.136427 1.138659 3.524002 6.405280 -9.176842 2.256349 -0.672793 2.589711 -8.337498 -9.006479 0.570483 -6.060216 -4.299365 3.591480 -9.214092 -2.983604 -5.954392 2.007345 -8.464845 -3.253156 2.673765 10.672840 3.981611 -2.975668 5.060810 -2.168051 5.626210 -0.285510 -0.682352 2.960853 5.239032 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -1.550737 0.606440 0.186026 -1.252123 3.782782 -0.633644 0.094013 1.698242 0.002294 2.096598 -1.411717 -0.695103 -0.732587 -2.368071 0.326117 -0.707204 -0.104316 1.644417 -0.809577 0.570250 1.245860 -0.291575 0.451335 -0.522667 -0.679970 -1.542760 -0.735291 0.777314 1.130470 -0.679261 -0.326711 0.231845 2.765929 -0.482454 2.040823 1.559250 1.318631 2.143884 0.034834 -0.090423 0.341355 1.214073 -1.142792 -2.230836 0.757047 -0.984214 -1.989828 -1.188193 1.206654 -1.677352 0.937576 1.800944 -0.174659 -0.334108 -1.071633 1.486563 0.957281 0.290606 2.375725 0.692877 -1.301490 0.006487 -2.420692 2.016049 -1.288379 1.400432 -0.687676 -2.508283 -0.889074 0.737119 0.623575 -1.705150 -1.349004 1.234675 0.954319 -1.404010 0.760232 -0.701135 0.003885 -1.713670 -2.038064 0.609638 -0.974472 1.679932 -0.194112 0.431923 -0.284744 0.567570 -0.142614 -2.449524 -0.226713 2.280174 -1.154905 0.389014 -1.444675 0.436837 0.192117 -0.054694 -1.159740 -1.070491 0.545035 0.035807 1.012445 -0.510459 0.483533 -1.539319 0.577007 0.615852 0.532840 0.912155 0.831681 0.348105 0.760731 1.665021 -1.198142 0.458133 -2.477358 0.849473 -0.867656 0.732018 -0.681968 1.032085 0.969699 0.591665 1.718435 -2.867753 1.537050 -0.015431 -0.813843 -1.604319 0.618741 -0.466271 -1.021771 -0.589382 1.454257 -0.161270 -0.630867 -0.507019 0.740677 0.139065 -1.449991 -0.534460 -0.115024 1.112163 -1.889777 0.437310 -0.635556 -1.115376 -0.180293 1.070454 1.452592 1.490074 2.676172 1.950760 -0.374486 0.245775 -2.680779 0.654343 2.541229 0.099810 -1.887800 1.777776 -1.401821 0.016813 0.868776 1.494446 1.068380 1.298405 -0.780708 -0.670517 0.189779 0.332890 2.454874 1.015443 0.600706 -1.834417 0.598687 -0.787026 -0.546309 3.275771 1.419657 -2.447046 0.575823 1.271677 -1.320387 -1.137851 0.867452 -1.386124 -0.444838 -1.121592 0.736268 1.463450 -1.478965 -1.326729 0.436575 -1.851909 2.111157 -0.543583 -0.733645 0.866008 -2.170380 -1.074455 2.803711 0.317141 -0.593869 -1.151571 -1.786056 -0.738477 -2.213166 0.764686 0.672279 -0.601712 -1.206942 -1.731068 -0.175703 2.309397 -0.051343 0.933025 -2.136852 -0.239690 1.132777 0.072358 1.392404 -1.814768 -0.438039 -0.367150 -0.309149 0.707104 -0.594393 0.576209 2.666171 -1.664869 1.201519 0.884067 -0.971745 0.210784 1.525666 -1.949111 2.576551 0.172511 1.582581 -0.135300 0.961856 -0.864377 0.309469 0.114976 0.055648 -0.231371 1.026454 -1.088713 -0.685483 0.427573 -1.897028 -1.409561 0.320695 1.213432 0.242720 0.537070 -0.441757 -1.282731 -0.495735 -0.863927 0.303394 1.649249 -0.428345 -1.453790 0.942954 0.459762 -0.935149 -0.730356 0.444219 0.708994 1.906032 -2.258229 0.641857 0.043236 0.431700 -2.129733 -1.983814 -0.037184 -1.423543 -0.983752 1.029965 -2.288906 -0.948594 -1.379199 0.854430 -1.874255 -0.582151 0.320387 2.497106 1.206183 -0.500787 1.478071 -0.277758 1.404760 0.021214 -0.458166 0.703327 1.561970 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -2.618860 2.354797 0.668516 -1.615927 6.336031 -1.541818 0.237677 3.267989 -2.981793 4.619281 -1.437685 -0.340920 -1.159362 -5.493596 0.479331 -1.848343 -0.214976 2.672320 0.309590 2.816225 1.843686 -2.461799 0.388904 -0.043199 -1.707276 -3.623526 -0.505617 1.643074 4.806391 -3.538014 0.254367 0.282101 5.770310 -1.018030 5.040145 3.483363 1.338906 2.862781 1.753343 -4.052592 -1.524800 2.068062 -2.722668 -2.971575 0.107970 -0.743858 -3.259813 -1.474733 1.917826 -0.448977 -1.109051 3.705748 -1.229483 0.484381 -2.976409 3.422239 1.337112 -0.094634 5.097649 0.265465 -0.701878 -1.209732 -4.735556 3.841794 -1.780685 -0.462434 -2.391179 -2.609529 1.397346 -0.262595 -1.123420 -3.146910 -0.449576 4.770334 2.574663 -3.764101 0.547609 -1.670324 -4.422632 -4.646395 -4.266250 1.332412 -1.406959 3.396698 0.478271 1.737253 0.768550 2.648388 -1.363500 -6.408536 1.445796 4.416942 -2.394551 -1.472251 -1.632231 3.991164 0.766875 0.764525 -2.226348 -1.942504 1.137310 -1.381649 2.222597 -4.130515 3.340169 -4.062958 -0.512424 -1.622368 1.440704 2.835925 3.163339 0.908410 3.136491 4.937586 -3.884673 -1.295776 -4.641646 1.176031 -1.758753 1.105918 -1.135550 2.694076 0.813600 1.815669 4.423881 -7.259377 1.058451 -0.107807 0.214119 -5.098124 -0.018497 -1.874945 -0.968216 -1.710592 2.525402 -0.852917 -0.611154 -1.967925 1.116813 1.659395 -2.940358 -0.976272 1.509812 5.085609 -5.187607 1.331549 -0.942742 -1.557425 -0.518929 2.014824 3.853466 4.009365 5.197754 3.903135 -0.677810 2.820464 -4.959096 -0.075456 4.088700 -0.240032 -3.387780 5.080716 -3.621914 -1.783340 0.632478 4.086992 3.626357 0.649909 -3.892261 -3.727111 3.533128 1.815851 4.448465 -0.602397 0.041156 -0.759694 3.766098 0.408735 -3.391297 5.854313 0.695575 -3.779400 2.789861 1.370717 -2.818219 -1.462642 2.909208 -4.325777 0.156312 -2.078863 0.582132 2.629399 -1.970722 -0.400367 0.426777 -3.365142 4.453935 -1.131876 -1.421715 2.228421 -2.820596 -3.278173 4.649613 0.236080 -0.906025 -3.626947 -4.053027 -2.895470 -3.135300 1.362928 -0.079863 -1.186591 -1.802595 -3.903695 -0.874607 3.836448 1.522267 3.029139 -6.271948 -0.758995 1.986822 2.513309 2.416250 -1.707748 -0.339299 0.531665 -0.299214 0.552303 -1.050367 3.738477 5.806271 -2.829195 2.510935 -0.993810 -2.386232 2.016274 1.756628 -5.933217 4.923186 0.986006 3.800755 0.113047 1.073285 -1.931163 0.630325 1.164531 -0.182342 0.207839 0.100093 -0.645228 -1.682299 -0.141748 -3.370592 -3.420648 -1.498234 1.265212 -0.475620 1.600701 -1.010843 -2.013387 -1.143914 -2.544557 1.136331 2.771548 -0.246341 -0.620338 3.456451 0.370458 1.196485 1.093478 0.128120 1.355522 2.128241 -4.770050 -0.235221 -1.075785 2.247914 -2.056500 -5.484625 0.391954 -2.650440 -1.530005 2.176427 -4.868057 -0.255369 -2.827838 -0.239351 -5.100811 -0.344424 1.207773 5.785185 1.521083 -2.232099 1.887209 -1.713245 2.224603 -0.172417 0.212577 0.786671 2.742822 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.967052 0.691587 0.233007 -0.487034 2.126781 -0.460201 0.097955 1.512295 -1.071504 1.673457 -0.541482 0.182190 -0.357621 -1.435205 0.084888 -0.143924 0.007317 0.801960 0.024587 0.787457 0.659010 -0.641918 0.150301 -0.021912 -0.610691 -1.104237 -0.065311 0.513813 1.505783 -0.964860 -0.200555 0.087890 1.872038 -0.335682 1.833923 1.211346 0.494197 0.957929 0.687994 -1.274493 -0.514608 0.773657 -0.969110 -1.022524 0.058574 -0.406235 -0.997177 -0.571666 0.703365 -0.363513 0.044895 1.224737 -0.428962 0.238152 -0.826975 1.180244 0.331291 -0.205889 1.848281 0.086382 -0.570437 -0.408319 -1.406972 1.502213 -0.529867 -0.049327 -0.835647 -1.059840 0.420512 -0.104341 -0.174176 -1.138652 0.013588 1.594099 0.551089 -1.315473 0.318261 -0.533665 -0.745628 -1.714506 -1.398016 0.435046 -0.375659 1.095542 0.086310 0.537125 -0.220009 0.879276 -0.487590 -2.199883 0.531373 1.399027 -1.019181 -0.316547 -0.509761 1.141155 0.159578 0.349838 -0.631295 -0.598088 0.402984 -0.347519 0.717958 -1.383561 1.403225 -1.108239 -0.102868 -0.454051 0.636285 0.854613 0.888559 0.456317 1.240507 1.709657 -0.860437 -0.166850 -1.550009 0.550368 -0.522878 0.313493 -0.336458 0.918071 0.500570 0.517981 1.615863 -2.304436 0.343712 -0.037756 0.028229 -1.699951 0.029250 -0.769175 -0.413643 -0.636380 0.909406 -0.257507 -0.222133 -0.835469 0.481145 0.382128 -1.151795 -0.418356 0.411308 1.491963 -1.793632 0.379418 -0.341037 -0.449074 -0.157982 0.853110 1.249496 1.389152 1.769182 1.319712 -0.193632 0.616270 -1.738526 -0.054908 1.287196 0.058604 -1.204817 1.689088 -1.292752 -0.607836 0.432689 1.333777 1.208743 0.268717 -1.190933 -1.144756 1.261976 0.668713 1.667573 -0.148358 0.265009 -0.189444 1.096838 -0.180968 -1.125885 1.864778 0.362140 -1.504296 0.812110 0.394365 -0.560930 -0.339795 0.997199 -1.490160 -0.106325 -0.648461 0.077677 0.994566 -0.772372 -0.181784 0.364365 -1.236368 1.657970 -0.351974 -0.261255 0.771161 -1.125298 -0.428484 1.523503 0.311099 -0.310097 -1.129115 -1.281297 -1.158515 -1.161853 0.404967 0.041006 -0.277866 -0.634151 -1.424556 -0.324803 1.044692 0.574034 1.001564 -2.055496 -0.232476 0.776743 0.442941 0.721228 -0.703733 -0.196248 -0.004255 -0.234949 0.415336 -0.539105 1.347042 1.913821 -0.904991 0.943779 0.125131 -0.428355 0.560213 0.543004 -2.019348 1.706522 0.249482 1.087386 0.129248 0.424262 -0.800031 0.174156 0.186107 0.137249 -0.010577 0.181458 -0.298757 -0.535765 -0.141194 -1.278986 -0.996715 -0.529123 0.353308 -0.190029 0.541773 -0.335187 -0.872780 -0.527710 -1.289458 0.358971 0.989680 -0.293428 -0.452819 1.226555 -0.013473 0.191492 0.238560 0.054973 0.468946 0.771555 -1.650092 -0.194672 -0.214130 0.726178 -0.896562 -1.658381 0.015457 -0.791438 -0.701931 0.712679 -1.617899 -0.163736 -0.980218 -0.136525 -1.933153 -0.135871 0.375783 2.075199 0.446780 -0.801562 0.690284 -0.550864 0.845640 0.096755 0.159261 0.085720 0.903423 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.671868 0.288089 -0.160126 -0.259533 1.534886 -0.402114 -0.022243 1.421955 -0.552295 1.010528 -0.332116 0.298008 -0.135419 -0.857339 0.141354 0.264663 0.121206 0.715808 -0.112793 0.272425 0.519357 -0.061572 0.007182 -0.025830 -0.362632 -0.666108 -0.001797 0.312723 0.695020 -0.477776 -0.382897 0.254173 1.275784 -0.213638 1.246715 0.854045 0.721219 0.597797 0.481891 -0.473829 -0.214250 0.490345 -0.589713 -0.759162 0.175715 -0.311828 -0.701390 -0.253980 0.471413 -0.394482 0.534161 0.775073 -0.218156 0.245005 -0.321554 0.679964 0.089958 -0.298576 1.119907 0.219495 -0.749002 -0.355391 -0.746304 1.458401 -0.397220 0.181822 -0.395475 -0.953902 0.018013 0.077646 0.288107 -0.884890 -0.187377 0.901754 0.179004 -0.780644 0.369060 -0.223995 0.354488 -1.008324 -0.972333 0.295185 -0.416112 0.706154 -0.011423 0.252479 -0.516309 0.394196 -0.270772 -1.335396 0.284776 0.900181 -0.854120 0.210243 -0.807497 0.314723 0.088176 0.266749 -0.308056 -0.611238 0.335315 -0.149613 0.455311 -0.522703 0.858488 -0.435262 -0.016726 -0.232902 0.481455 0.726902 0.294542 0.335495 0.764108 1.010614 -0.096260 -0.086396 -1.020391 0.604624 -0.371210 0.247316 -0.209279 0.474717 0.691230 0.257899 0.988581 -1.313493 0.276300 -0.001032 -0.035858 -0.946959 0.138286 -0.525840 -0.366199 -0.511553 0.750663 -0.137034 -0.256023 -0.522372 0.439313 0.216790 -0.998903 -0.570082 -0.038339 0.549380 -1.206266 0.186177 -0.313159 -0.343833 -0.121662 0.584436 0.741447 0.967586 1.102765 0.880988 -0.134166 0.350804 -1.236664 0.031547 0.894366 0.327776 -0.852390 1.012801 -0.945391 -0.323448 0.412518 0.837607 0.610075 0.309211 -0.500692 -0.462437 0.610637 0.464348 1.177489 0.099265 0.243526 -0.313813 0.285628 -0.226535 -0.710501 1.411028 0.277043 -1.163974 0.461305 0.281384 0.004717 -0.201063 0.533807 -1.036269 -0.326096 -0.487626 0.191080 0.744977 -0.711284 -0.163980 0.539558 -0.828609 0.993307 -0.199801 -0.228948 0.451771 -0.995134 0.034198 1.184437 0.315576 -0.199955 -0.640639 -0.810754 -0.532493 -0.791485 0.252264 0.130655 -0.035995 -0.422707 -0.923345 -0.327444 0.862334 0.329035 0.574158 -1.443000 -0.079798 0.568715 -0.075021 0.348094 -0.950310 -0.198212 -0.181476 -0.075932 0.323037 -0.470981 0.594815 1.185153 -0.666587 0.523956 0.501140 -0.201731 0.157881 0.385825 -1.216436 1.102204 0.165085 0.487398 0.202269 0.335027 -0.683479 0.043920 -0.082048 0.398176 -0.167306 0.277137 -0.257161 -0.283834 0.004356 -0.821918 -0.620712 -0.270678 0.308052 -0.040620 0.297225 -0.457709 -0.535396 -0.376685 -0.895963 0.248284 0.730195 -0.364253 -0.419309 0.798897 -0.062603 -0.246914 0.094021 0.136047 0.346360 0.704128 -1.072088 -0.051240 0.041971 0.473245 -0.838795 -1.043704 -0.096566 -0.424150 -0.481752 0.320954 -1.134967 -0.360385 -0.602825 0.048741 -1.264728 -0.142236 0.219646 1.342867 0.245958 -0.407034 0.607182 -0.253753 0.560921 0.117051 0.139221 0.026065 0.677868 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -10.334216 11.558045 6.136208 -7.983528 20.247733 -0.639058 -0.077261 6.695956 -10.501173 19.658556 -6.605601 -1.906894 -4.619677 -19.074947 -0.104879 -9.802280 -5.832138 5.141702 1.808138 12.822362 7.108854 -13.241142 1.350794 -0.002644 -8.053114 -16.466099 -2.579563 6.130477 19.519697 -13.411811 3.321791 -2.062586 18.317775 -3.990716 17.333835 13.941054 3.612474 11.518992 3.609129 -10.547060 -9.077556 8.477897 -12.322608 -8.140480 0.032998 -4.342756 -12.839072 -6.257934 6.930950 -1.547814 -4.924987 16.328739 -6.084291 0.321564 -11.240029 14.160239 3.831319 0.016127 21.271723 0.299286 0.159802 -4.520717 -20.904261 13.479469 -6.141692 -0.396053 -7.342770 -8.003407 8.270814 -4.156964 -5.285147 -7.292105 -0.777660 20.387559 10.305734 -16.929860 0.163604 -10.775208 -28.085709 -17.777211 -13.741859 5.945098 1.413232 13.804137 3.219374 7.428699 5.622927 13.749320 -8.213932 -26.548904 6.690570 18.546021 -7.582725 -7.929155 -7.613666 18.858816 1.900308 4.500867 -10.079201 -1.453289 5.701808 -2.554771 9.066882 -20.457053 9.890167 -20.475087 0.162187 -4.347718 3.567357 3.473688 11.535470 2.029147 13.631720 21.444765 -17.538754 -0.791172 -15.744461 1.607099 -1.455237 4.957356 -4.159574 10.624648 -2.247279 5.763721 19.086560 -26.601472 3.358232 -1.867680 -3.223001 -22.569757 -1.906349 -9.802599 -3.660005 -6.132171 7.454088 -2.011365 -2.182137 -9.115173 3.106187 5.190595 -9.058932 -4.659349 10.140929 21.867444 -15.377138 5.277901 -3.241703 -4.685989 -3.834829 10.624078 16.444115 15.756252 22.440379 14.944630 1.814044 8.365632 -17.609686 -2.614289 14.596959 3.933416 -14.577603 20.000929 -13.795081 -7.372065 0.107852 15.833400 15.153754 3.680759 -18.075475 -16.743114 13.136521 6.092138 18.792806 -2.070701 -0.154486 2.744823 18.816488 2.007859 -15.052634 16.786642 7.984543 -10.654203 7.490466 3.152103 -11.615410 -6.679951 15.251360 -14.478616 3.426572 -4.224287 -1.075306 8.672761 -4.831887 -2.276247 -0.792864 -14.593350 20.091791 -4.327047 2.179609 9.862773 -10.920322 -20.002608 10.767345 -2.496248 -6.673172 -14.968807 -13.463231 -14.638829 -10.257193 6.345292 1.822714 -6.253192 -10.519577 -16.812851 -0.935980 10.276926 6.016703 12.569585 -20.341439 -7.622877 7.995495 8.418079 13.000780 -0.600558 -1.042620 0.230617 0.102698 5.057811 -1.739352 18.237874 24.174079 -9.009393 11.178066 -8.258586 -8.127807 7.015620 7.861062 -22.952983 20.678987 4.045093 9.142443 -1.091072 4.233399 -6.140177 2.730248 7.697918 -2.624170 5.581798 -0.306609 0.129020 -6.558785 -4.432368 -15.783992 -9.095094 -5.913279 2.216410 -4.471593 6.983805 0.852530 -8.391744 -6.465044 -10.834734 2.556758 11.278735 1.215994 0.641120 13.773424 -1.253461 8.869031 8.675781 0.588709 5.177791 7.592741 -19.235814 -2.679382 -6.095977 5.402894 -8.613435 -19.471558 -1.482308 -11.365539 -8.489903 9.639199 -18.321494 3.186002 -13.022710 -3.599005 -16.632763 -2.112837 5.461756 22.651982 8.323613 -10.831293 5.885085 -8.184600 11.689130 0.382931 -1.001732 4.980650 10.224320 +PE-benchmarks/palindrome-partitioning.cpp__main = -2.503408 2.275632 1.208661 -1.825320 4.850147 -0.292624 -0.170394 1.921455 -1.553026 4.338468 -1.773495 -0.819796 -1.173900 -4.120539 0.048690 -1.959639 -1.129452 1.514373 -0.076902 2.352022 1.839339 -2.323619 0.334231 -0.227770 -1.678647 -3.338584 -0.840188 1.299422 3.778318 -2.657248 0.277637 -0.258189 4.349975 -0.779205 4.058045 3.176424 1.223266 2.989778 0.553963 -1.338581 -1.631480 2.115279 -2.740310 -2.333274 0.383999 -1.308437 -2.873863 -1.555291 1.685213 -0.824720 0.055096 3.624480 -1.183148 0.063807 -2.264062 2.973726 0.775084 0.351160 4.811445 0.374083 -0.604685 -0.566991 -4.726008 3.208581 -1.622825 0.782922 -1.478562 -2.453910 1.080648 -0.682430 -0.339667 -2.095713 -0.724615 4.230988 2.019290 -3.554404 0.391994 -2.219137 -4.846775 -3.711292 -3.409217 1.309306 0.000000 3.066647 0.448385 1.435419 0.598536 2.760126 -1.566402 -5.777341 1.164171 4.188764 -1.928607 -1.009110 -2.002160 3.303314 0.213755 1.009698 -2.206099 -0.526166 1.319304 -0.318510 2.002568 -3.656908 1.926883 -4.217792 0.573663 -0.466404 0.734238 0.619975 2.472819 0.486913 2.928934 4.601280 -3.376867 0.132083 -3.706290 0.628049 -0.490093 1.160075 -0.868878 2.345691 -0.167038 1.063133 4.142775 -5.745373 1.074399 -0.367842 -1.087993 -4.679675 -0.107145 -2.193957 -1.172357 -1.427436 1.949875 -0.275152 -0.707344 -1.987403 0.768890 0.844157 -2.204920 -1.204058 1.750665 4.057554 -3.190408 1.001676 -0.889648 -1.329621 -0.861903 2.457557 3.476568 3.466004 5.070032 3.442281 0.212994 1.014451 -4.120068 -0.353260 3.484025 0.705644 -3.473919 4.242174 -2.970474 -1.257829 0.436324 3.418475 3.113302 1.233614 -3.355614 -3.178520 2.126289 1.240399 4.387545 0.124553 0.319891 0.115292 3.507987 0.021459 -3.149915 4.306195 2.045210 -2.802346 1.236625 0.900813 -2.291547 -1.678968 3.151970 -3.061080 0.532085 -1.179019 0.017106 2.065592 -1.501632 -0.868211 0.288239 -3.468881 4.560603 -0.935270 0.391368 2.135333 -3.107569 -3.993169 3.016064 -0.343831 -1.522188 -3.107201 -2.997391 -2.814329 -2.631986 1.495056 0.663649 -1.217816 -2.463848 -3.717822 -0.041234 2.674510 1.085873 2.660946 -4.005410 -1.716737 1.843429 1.066010 2.993892 -0.836756 -0.452043 -0.282071 -0.073914 1.455051 -0.480249 3.451452 5.536905 -2.193869 2.458044 -0.705038 -1.690764 1.089242 2.044335 -4.877718 4.670990 0.658862 1.688825 -0.292200 1.189616 -1.505802 0.507175 1.473541 -0.127109 0.993153 0.401089 -0.227478 -1.363255 -0.893271 -3.801682 -1.828786 -0.968490 0.679492 -0.775502 1.467163 0.028256 -2.128272 -1.368686 -2.346356 0.509260 2.778712 0.172193 -0.443969 2.848236 -0.336322 1.161673 1.480609 0.313877 1.042505 2.203272 -4.336338 -0.429509 -0.987067 0.968944 -2.385462 -4.043625 -0.637013 -2.591256 -1.891090 2.109456 -4.016738 0.256000 -2.897465 -0.428958 -3.504672 -0.603774 1.051554 5.061599 2.226903 -2.230949 1.614699 -1.538929 2.827375 0.287317 -0.544115 1.139574 2.553839 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -1.432264 1.353073 -1.079516 -1.274923 1.321593 -0.737892 -0.130854 1.446378 0.744267 1.876646 -1.190609 -1.306909 -0.359403 -2.129874 0.187400 -0.677767 -0.060057 1.495250 -0.240059 1.237561 1.069616 -0.582388 0.091907 -0.360398 -1.107043 -0.312581 -0.356292 0.846372 1.001155 -1.370022 0.542446 0.321132 3.021016 -0.430586 2.985481 2.171314 1.218682 1.883724 1.481198 0.284427 -0.706650 1.139308 -1.359317 -1.593150 0.013246 -0.363025 -1.648668 -0.900507 0.727203 -0.638805 2.441527 2.068298 0.068216 0.388558 -1.426755 1.348205 0.691563 -0.031957 2.743440 0.424137 -0.762000 0.779483 -1.347554 2.087699 -0.884322 0.451921 -0.781892 -1.112964 0.593001 -0.007977 0.305728 -1.847403 -1.334535 1.980377 0.934067 -2.173288 0.783959 -1.011686 -0.686875 -1.982212 -1.731027 1.210072 -0.029597 1.778573 -0.041238 0.809424 -0.372427 1.431261 -0.933005 -2.834961 0.843364 1.814637 -1.217864 -0.528754 -1.024633 1.602606 0.161918 0.498406 -1.500823 -0.690106 0.859764 -0.423748 1.238430 -0.654861 0.722075 -1.412261 0.284059 0.465468 -0.242512 1.665375 2.251489 1.011866 2.472578 2.343455 -0.946682 0.529643 -2.607603 0.491430 -0.651558 0.178955 0.100638 0.968167 0.895692 0.625321 1.612937 -2.864666 0.935837 0.339879 -0.579296 -1.888632 0.049447 -0.780391 -0.850045 -1.134944 1.397556 -0.019463 -0.300430 -0.987060 0.558970 0.598878 -0.751354 -1.271844 0.718908 1.038253 -1.070129 0.427460 -0.492180 -0.864207 -0.422822 1.321834 1.622772 1.345285 2.943911 1.545218 -0.379324 -0.421910 -2.085485 -0.519349 1.445015 0.123567 -1.983290 2.443879 -1.597715 -1.103828 0.192100 2.282406 1.247671 0.674931 -1.605361 -1.450231 0.604945 0.752267 2.240715 -1.067987 -0.401313 -0.691793 1.592625 0.671339 -1.489642 4.066230 1.220535 -1.495537 -1.183599 0.620642 -0.825691 -1.191690 2.098585 -2.003627 -0.532977 -0.486695 0.265383 0.908318 -0.992322 -0.426478 0.619801 -1.830841 1.674964 -0.675065 -1.396067 0.049197 -2.794888 0.076186 2.458025 0.188190 -0.588560 -0.921605 -1.806800 0.053762 -1.997756 0.989344 1.030279 0.409440 -1.182457 -1.531599 0.165615 1.183493 0.470667 1.108874 -1.841534 -1.078597 1.592052 -0.183081 0.950764 -1.486086 -0.260482 0.144915 0.709214 0.859149 0.034272 1.889545 2.984342 -1.241950 0.895393 0.848300 -0.954970 0.526641 1.318937 -3.091159 2.904355 0.158935 0.352739 0.181961 0.387350 -1.005197 0.091368 0.335258 0.563652 -0.067649 -0.139499 -0.262245 -0.775077 -0.688985 -1.111254 -0.732479 -0.721745 0.775773 -1.260886 0.855180 -0.138025 -0.672706 -1.250880 -1.494561 0.290234 1.636701 0.575914 -0.412714 2.002375 0.151742 0.403358 1.496716 -0.274633 0.714084 1.738929 -2.591862 0.096401 -0.359394 0.652568 -1.560796 -1.600681 0.094086 -0.870803 0.048409 0.271451 -1.318581 -0.819421 -1.338942 0.189541 -1.228287 0.164351 1.068102 2.786410 1.493396 -1.739165 0.377024 -0.915639 1.746922 0.807263 -0.593492 0.594043 1.889792 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.296814 0.093275 -0.156338 -0.190713 0.725292 -0.344291 -0.108358 0.579376 0.096057 0.430767 -0.260967 0.127637 -0.059521 -0.425241 0.093513 0.168375 0.177029 0.437048 -0.102470 -0.041513 0.188934 0.067210 0.089288 -0.097924 -0.142025 -0.508032 0.029905 0.168215 0.038178 -0.107984 -0.217440 0.227451 0.626883 -0.090935 0.425235 0.365568 0.321885 0.366159 0.370837 -0.041894 0.222362 0.114433 -0.113528 -0.448944 0.108789 -0.083709 -0.314925 -0.194065 0.248628 -0.363947 0.370778 0.284379 -0.005946 -0.031130 -0.310060 0.262031 0.104042 -0.047081 0.455334 0.131324 -0.390564 -0.134310 -0.203212 0.693606 -0.417330 0.030169 -0.129964 -0.507734 -0.132158 0.376697 0.144434 -0.230961 -0.190261 0.088280 0.045636 -0.326689 0.128164 0.020309 0.392448 -0.246248 -0.357360 0.191679 -0.204189 0.280912 0.035430 0.114431 -0.295098 0.049600 0.064108 -0.376570 -0.020576 0.322580 -0.292566 0.175056 -0.157547 0.125932 0.236256 -0.192945 0.057770 -0.351609 0.090346 -0.168772 0.187924 0.020558 0.199861 -0.120434 0.144698 0.059970 0.145277 0.308880 0.002536 0.167091 0.147935 0.192768 0.072475 -0.066483 -0.655031 0.305293 -0.085423 -0.054746 -0.136625 0.077585 0.320770 0.132393 0.315365 -0.511475 0.361433 0.064087 0.014254 -0.201533 0.135212 0.075764 -0.113391 -0.153001 0.371100 -0.082469 -0.057720 -0.008022 0.212714 0.032658 -0.385975 -0.175437 -0.178373 0.264553 -0.399236 0.152610 -0.112787 -0.189379 0.011269 0.102640 0.178688 0.303673 0.459972 0.344142 -0.125713 0.077245 -0.604871 0.118573 0.460380 0.099125 -0.304573 0.383245 -0.285770 -0.107753 0.178668 0.342635 0.121128 0.143871 -0.081468 -0.135447 0.003005 0.070224 0.446094 0.057888 0.107856 -0.327194 0.018724 -0.021974 0.035278 0.687127 0.148631 -0.560438 0.198962 0.438890 -0.186056 -0.179885 0.145530 -0.338385 -0.157578 -0.272969 0.189226 0.380134 -0.432037 -0.169500 0.124289 -0.301098 0.306212 -0.053317 -0.224191 0.165424 -0.431927 0.157444 0.617823 0.164408 0.077969 -0.147838 -0.438837 -0.205305 -0.538979 0.012277 0.148505 -0.122227 0.010326 -0.311604 -0.209593 0.439370 -0.009797 0.162179 -0.601916 0.109422 0.327538 0.072279 -0.062079 -0.355325 -0.069118 0.100841 -0.080586 0.031513 -0.231037 0.141875 0.294531 -0.303063 0.262639 0.327738 -0.076266 0.163606 0.207677 -0.399690 0.493754 -0.010788 0.126202 0.244475 0.160819 -0.255912 0.051248 -0.145257 0.006989 -0.261477 0.162641 -0.408425 -0.164581 0.233748 -0.192810 -0.356101 0.027466 0.374141 0.193523 0.029569 -0.179444 -0.148800 -0.098803 -0.321333 0.209812 0.224423 -0.109215 -0.290545 0.289490 0.304221 -0.357294 -0.254340 0.100758 0.188077 0.369809 -0.450563 0.237346 0.115470 0.237391 -0.487776 -0.384762 0.117962 -0.168110 -0.183423 0.005556 -0.672910 -0.416128 -0.159586 0.279631 -0.467461 0.070756 0.061767 0.515419 0.036273 -0.063866 0.318237 -0.075816 0.019225 0.019382 0.013514 -0.012803 0.336870 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -1.484510 1.344218 0.268295 -1.294696 2.570792 -0.651406 0.308560 1.266073 -0.232564 1.999570 -1.642603 0.367355 -0.445821 -2.016790 -0.041432 -0.765078 -0.050667 1.468852 -0.331214 0.796936 1.032888 -0.669338 0.437633 -0.773674 -0.821894 -2.172743 -0.103118 0.536464 0.496233 -0.343311 0.541034 0.196813 2.434825 -0.027851 1.860071 1.652944 0.595791 2.310662 0.866731 0.623481 0.225414 0.944073 -0.789468 -2.196365 0.602384 -0.731350 -1.333710 -1.412224 0.824068 -2.023835 1.364735 1.488961 -0.118361 -0.426668 -1.543026 1.002275 1.415334 -0.134586 2.287179 0.414305 -1.215529 -0.104389 -1.507498 1.734436 -1.433413 0.375036 0.390017 -1.734726 0.120849 0.825923 0.698855 -1.018017 -1.196791 0.858137 0.541747 -1.664388 0.244051 -0.757069 -1.705230 -1.150198 -1.076449 0.550059 -0.029325 1.423693 0.068598 0.537529 -0.632083 0.642577 0.020745 -2.058256 -0.268325 2.104569 -0.719952 0.383426 -1.184778 1.506023 0.523924 -0.422703 -0.823556 -0.550384 0.511852 -0.020136 0.853918 -0.664981 -0.950526 -1.700095 0.879980 0.462604 -0.314147 0.694645 0.366366 0.877861 0.889586 1.345921 -1.142019 0.988069 -2.717853 0.788103 0.174571 0.188746 -0.296015 0.429325 0.090164 0.441330 1.558864 -2.279471 1.688696 0.214003 -0.572068 -1.887418 0.412169 -0.201152 -0.591516 -0.627526 1.164259 0.021729 -0.174752 -0.450630 0.186532 -0.089395 -1.092658 -1.722925 0.181378 1.964836 -1.343477 0.556649 -0.492527 -0.719486 -0.335362 0.748638 0.959785 0.972440 2.322682 1.555339 0.073384 0.653019 -2.008429 0.041055 2.249869 1.654165 -1.732165 1.623288 -0.887689 -0.394068 0.681859 1.081757 0.958195 0.714182 -1.645382 -1.495185 0.473251 -0.281745 2.072884 0.926895 0.390018 -1.460362 1.656510 0.234706 -0.383135 2.805176 1.306174 -1.942623 0.528346 1.344197 -1.425983 -1.056936 0.983170 -0.936132 -0.512667 -0.450710 0.357806 0.851514 -1.176218 -1.295944 -0.205360 -1.777583 2.005880 -0.292832 -0.005060 0.466995 -1.911661 -1.155952 2.083431 0.156132 -0.560794 -0.746898 -1.269003 -1.107315 -2.256553 0.442504 0.881803 -0.855307 -0.934969 -1.604887 0.017977 1.343880 -0.361291 0.645887 -1.456457 -0.949690 1.224596 0.336745 0.504693 -1.935427 -0.391995 0.005726 0.494198 0.833641 -0.042849 1.414292 2.449726 -1.114678 1.135075 0.952126 -0.270859 0.724797 1.592259 -1.881065 2.268260 -0.495519 1.103598 0.273379 0.733437 -0.735204 0.100393 0.124346 0.097601 -0.258528 0.686622 -1.277774 -0.610625 0.327080 -1.518130 -0.710821 0.449747 1.073048 0.349042 0.323563 0.251976 -0.803441 -0.584421 -1.345422 0.117873 1.314451 -0.037499 -1.356554 0.900259 0.683527 -0.626231 -0.332481 0.273575 0.896845 1.360103 -1.994017 0.862914 -0.180310 -0.248668 -2.011613 -1.928679 0.734234 -1.530470 -1.558211 0.620071 -2.405692 -0.669210 -1.115844 0.840809 -2.166483 -0.238926 0.160721 2.232481 0.740620 -0.274993 1.188165 -0.584840 1.259205 0.116588 0.018046 0.353476 1.942287 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -1.007595 0.744368 0.018857 -0.949494 2.196404 -0.725626 0.135285 1.321313 -0.186270 1.184182 -1.204473 0.555627 -0.161027 -1.375277 0.160075 -0.079601 0.178466 1.271851 -0.359476 0.414439 0.725511 -0.093598 0.299923 -0.657766 -0.480778 -1.352456 -0.013685 0.392471 0.097236 -0.061184 -0.002269 0.349198 1.683172 -0.171755 1.143656 1.124144 0.713824 1.503969 0.674209 0.050147 0.600499 0.531897 -0.382613 -1.636514 0.493255 -0.478976 -1.042807 -0.924993 0.637083 -1.569575 0.944010 0.947427 0.066519 -0.425869 -1.026593 0.803020 1.023780 -0.237030 1.386630 0.456171 -1.076072 -0.122400 -0.843194 1.384298 -1.093598 0.440419 0.110274 -1.419998 -0.309559 1.044709 0.734271 -0.893164 -0.961313 0.181619 0.214287 -0.988385 0.366173 -0.295139 0.085258 -0.822073 -0.735792 0.410345 -0.414086 0.930112 -0.019952 0.292663 -0.768612 0.160398 0.275054 -1.094973 -0.428976 1.258294 -0.556130 0.408159 -0.907357 0.665650 0.619270 -0.584404 -0.353500 -0.817793 0.369829 -0.073023 0.554189 -0.148483 -0.201026 -0.782920 0.470618 0.542391 0.000158 0.875800 -0.221274 0.730069 0.376785 0.552221 -0.288757 0.512569 -2.032237 0.634007 -0.218382 0.090573 -0.302255 0.147292 0.630555 0.382372 0.819562 -1.412234 1.441564 0.257899 -0.295395 -0.875707 0.575634 0.179446 -0.434012 -0.397671 0.903387 -0.025508 -0.168066 0.003329 0.394936 -0.118617 -0.875424 -1.060799 -0.314884 1.111504 -1.177819 0.409881 -0.365524 -0.512401 -0.034748 0.324074 0.512132 0.552231 1.518481 1.037462 -0.149691 0.455194 -1.511479 0.306843 1.631636 0.931166 -1.051924 0.977140 -0.548684 -0.197281 0.550957 0.691357 0.357681 0.650989 -0.853397 -0.849118 0.076174 -0.325963 1.353466 0.668461 0.329139 -1.465268 0.695003 -0.142967 0.076248 2.068888 0.805224 -1.561062 0.422985 1.280149 -0.717856 -0.789768 0.374838 -0.684089 -0.613846 -0.398228 0.463812 0.698193 -1.075656 -1.116576 -0.081368 -1.084836 1.098568 -0.142650 -0.486870 0.148312 -1.209858 -0.166375 1.700233 0.333892 -0.266952 -0.356240 -0.956253 -0.515631 -1.714457 0.226771 0.652545 -0.494350 -0.489287 -0.951617 -0.266993 1.104530 -0.472874 0.181184 -1.394218 -0.277181 0.891385 0.208561 0.146326 -1.621178 -0.290577 -0.003680 0.153173 0.347350 -0.296944 0.599173 1.450554 -0.905239 0.677360 1.002165 -0.201525 0.453459 1.192665 -1.067440 1.515258 -0.184671 1.047785 0.398050 0.573489 -0.639142 0.081546 -0.206091 0.006096 -0.461331 0.679751 -1.204840 -0.419984 0.536316 -0.700450 -0.796391 0.532299 1.046528 0.406273 0.068249 -0.096964 -0.436022 -0.342804 -0.858741 0.186921 0.857525 -0.384536 -1.200090 0.466045 0.883588 -0.955326 -0.584534 0.309763 0.681995 1.137598 -1.315937 1.008298 0.066787 0.093986 -1.652420 -1.219945 0.660621 -0.856830 -0.916249 0.292719 -1.767077 -0.983849 -0.619454 0.952155 -1.457046 -0.188298 0.125474 1.379756 0.300217 -0.003847 0.974118 -0.301737 0.601592 0.030426 0.057876 0.030321 1.242135 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -10.417937 11.902592 4.243638 -9.441784 21.658584 -2.266334 3.802440 7.484221 -8.454098 17.276828 -9.912210 1.855580 -3.102560 -17.781454 0.317181 -10.101804 -3.804830 7.238686 -0.276875 9.930840 7.219518 -9.600406 2.345341 -2.758519 -7.041258 -19.277890 -1.000872 5.411401 13.216235 -6.452572 6.364913 -0.936087 16.885381 -3.158123 14.225841 12.838003 5.025924 13.137807 3.448259 -2.811830 -3.371029 7.193616 -8.973516 -12.585443 1.043246 -3.554937 -14.276575 -7.760701 6.470245 -10.392835 -0.700791 14.245878 -3.763326 -2.035665 -11.308386 13.138335 8.685958 -2.877820 18.563510 1.629817 -4.597482 -4.927057 -16.426365 15.210386 -7.091326 1.011614 -2.329259 -10.996170 4.310751 1.628124 -4.606381 -4.920261 -4.516667 13.629451 9.273997 -14.892767 0.621397 -8.957344 -24.084867 -11.831166 -8.845799 5.181606 1.660837 12.890888 2.691287 6.000587 4.158113 8.829239 -4.384544 -21.054682 2.279399 19.098961 -6.582136 -4.724103 -9.886737 16.232396 3.850869 0.482820 -8.038630 -3.608900 4.473508 -1.237968 7.866547 -14.956891 -2.153357 -19.021448 1.356009 -0.192557 1.433862 7.295129 4.705985 3.652543 8.190668 15.730307 -15.225680 4.901276 -18.159115 4.357572 -0.958287 4.411270 -4.197815 6.322260 0.456964 6.484429 15.033735 -21.422710 8.866984 -0.015982 -3.181997 -18.583605 0.062559 -5.618549 -3.650889 -4.787571 7.453913 -1.612200 -1.591825 -5.729952 3.215663 3.398277 -7.517090 -8.901728 5.989193 18.114969 -14.736917 5.127216 -3.184269 -3.877360 -3.443915 8.360951 12.471320 11.503373 21.071112 13.402886 1.863445 12.189278 -15.679106 -0.402674 17.611392 9.701969 -13.098153 16.142228 -12.344071 -5.299384 1.716320 11.172842 11.097536 6.697449 -17.516140 -14.297645 10.375697 1.830060 17.108369 3.731780 0.386762 -7.130615 16.833888 -0.201789 -8.288007 18.767523 10.884771 -14.069409 7.872643 6.787592 -14.580392 -7.302735 11.171497 -11.753870 -0.707815 -4.266323 1.110690 7.737073 -6.069001 -6.510100 -1.934032 -13.483802 16.908367 -3.360793 1.226408 6.654499 -10.449629 -16.035010 12.907392 -0.202076 -5.689220 -11.115268 -10.871900 -13.674309 -13.079451 4.877836 4.186616 -6.878585 -9.039809 -14.568410 -1.583797 10.379514 1.616415 9.385439 -17.984134 -6.818182 8.394974 8.206215 8.100368 -7.252642 -1.796507 -0.819875 1.901909 4.361028 -1.646572 14.488323 21.561587 -8.927303 11.130374 -4.742064 -8.696393 6.313676 11.005807 -18.329232 19.128283 1.736227 10.831025 0.455588 4.927996 -6.388352 2.341434 4.098683 -4.581665 2.118504 2.347490 -5.105772 -5.774206 0.788317 -12.868658 -8.334899 -1.101689 5.607986 -0.620992 4.726757 2.056976 -7.042784 -5.820089 -10.520995 1.883417 10.431576 -0.502135 -4.862566 10.023470 2.732174 2.135848 0.005230 1.385167 6.792100 8.634310 -17.136420 2.609587 -4.089235 1.793290 -13.392589 -17.983251 3.662432 -12.086737 -11.657131 6.173027 -17.842450 0.282869 -11.207776 1.002653 -18.487631 -5.087683 3.856063 19.673484 5.258985 -5.521244 7.758134 -6.366451 10.186865 -0.401882 1.211783 4.928966 11.765188 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.157752 -0.010297 -0.489537 -0.023025 0.397824 -0.273434 -0.149778 0.375455 0.054353 0.210159 -0.114640 0.028495 0.021086 -0.356407 0.111725 0.523777 0.237215 0.287348 0.020795 -0.081589 0.098568 -0.051136 0.006996 -0.042847 -0.030898 -0.145661 0.061835 0.100847 0.074140 -0.248261 -0.403321 0.232599 0.409503 0.016789 0.299970 0.228090 0.155661 0.185604 0.458578 -0.274766 0.092980 0.078243 -0.054385 -0.280028 0.089535 -0.046076 -0.080044 -0.100606 0.124239 0.016116 0.486428 0.157886 -0.006052 0.060335 -0.313054 -0.015963 0.089293 0.003088 0.303063 0.109876 -0.160005 -0.087573 0.051809 0.466025 -0.267452 -0.141667 0.000843 -0.260482 0.001529 0.223173 0.230300 -0.296862 -0.167782 0.036640 -0.066424 -0.187888 0.133590 0.101651 0.541086 -0.341474 -0.366663 0.126076 -0.292445 0.249067 0.014994 0.033869 -0.373776 -0.018096 0.070741 -0.213463 0.018144 0.006962 -0.200162 0.212544 0.106244 0.201062 0.127465 -0.085279 0.001210 -0.266669 0.050100 -0.161568 0.092742 0.221278 0.383155 0.064733 0.114882 -0.118425 0.108581 0.227941 0.370542 0.053967 0.147147 0.093744 0.178420 -0.360645 -0.378626 0.174666 0.059401 -0.073489 -0.058972 0.052041 0.297821 -0.114550 0.184864 -0.354146 0.142414 0.109758 0.136465 -0.098799 0.063847 0.009329 -0.115170 -0.108289 0.266774 -0.066608 -0.007467 0.010721 0.114291 0.065873 -0.464357 0.016889 -0.173093 0.336710 -0.336197 0.063862 -0.069472 -0.176998 0.001940 0.009983 0.072579 0.233700 0.243214 0.200585 -0.197675 0.042130 -0.401017 0.133436 0.350378 0.073415 -0.200667 0.211525 -0.194500 -0.044204 0.148443 0.263000 0.124264 -0.199342 0.063199 0.058284 0.151997 0.104690 0.259083 -0.248640 0.169310 -0.059509 -0.000946 0.333991 -0.007571 0.538293 -0.185548 -0.333390 0.226157 0.287265 0.074523 0.116781 0.086392 -0.223878 -0.087313 -0.265416 0.181529 0.253355 -0.355316 -0.006147 0.050468 -0.162852 0.164897 -0.001445 -0.183875 0.136457 -0.293459 0.509554 0.491970 0.123158 0.138518 -0.071172 -0.305617 -0.085683 -0.298858 -0.018299 0.002670 -0.064357 0.134218 -0.191406 -0.214988 0.429122 0.026398 0.043416 -0.468170 0.233551 0.189487 0.061946 -0.155087 -0.208783 -0.071817 0.262838 -0.000767 -0.029449 -0.198372 0.100590 0.090528 -0.228025 -0.004447 0.380908 0.341072 0.210654 0.037773 -0.227225 0.264367 -0.032249 0.130762 0.177473 0.124908 -0.183305 -0.004726 -0.138841 0.224639 -0.239882 0.052836 -0.247733 -0.072887 0.272077 0.028813 -0.356589 -0.025852 0.213589 0.224565 -0.003612 -0.337027 0.036638 -0.008398 -0.155472 0.232565 0.122806 -0.034491 -0.117038 0.171693 0.200831 -0.104787 0.078327 0.079137 0.065087 0.284136 -0.262193 0.086871 0.083323 0.323356 -0.148884 -0.289802 0.066591 0.086171 0.068565 0.148423 -0.545132 -0.298511 -0.073920 0.147889 -0.359739 0.373988 -0.075837 0.317925 -0.021198 -0.077633 0.158901 -0.003960 -0.090202 -0.028023 0.024887 -0.055983 0.197942 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = -0.905895 0.865325 0.420843 -0.901443 1.301167 -0.307555 0.054254 0.496388 0.293271 0.888248 -1.222488 -0.175285 -0.452308 -1.246278 0.034920 -0.601235 -0.065983 0.999964 -0.316692 0.492285 0.800364 -0.466726 0.311456 -0.792927 -0.280575 -1.012954 -0.178602 0.149554 -0.060737 0.386058 0.421594 0.076719 1.190075 0.251720 0.768757 0.841007 0.092751 1.757373 0.244678 0.822964 0.235745 0.772314 -0.355803 -1.751997 0.799664 -0.705539 -0.480338 -1.155511 0.465910 -1.581751 0.876638 0.774391 0.104812 -0.533386 -0.987444 0.180690 1.199586 0.556047 1.163953 0.463616 -0.488290 0.221975 -0.935693 -0.026568 -0.975372 0.601286 0.600020 -1.082996 -0.201331 0.583257 0.651769 -0.433313 -0.888126 0.030830 0.180443 -0.654875 0.340702 -0.383494 -1.016064 -0.305037 -0.591570 0.101763 -0.178284 0.901925 -0.252821 0.094989 -0.459228 0.093301 0.397321 -0.774320 -0.602708 0.977447 -0.036073 0.389906 -0.241534 0.796623 0.422307 -0.389072 -0.523185 -0.046261 0.318433 0.300745 0.452543 0.274498 -1.211095 -0.913383 1.013831 0.644284 -0.440419 0.247725 0.216567 0.522820 0.078549 0.410393 -0.832922 0.973416 -1.572553 0.251473 0.020805 0.265865 -0.043351 0.159652 -0.018113 -0.069569 0.468208 -1.003333 1.357248 0.352323 -0.369935 -0.719490 0.655522 0.022977 -0.466237 -0.306215 0.699596 0.169592 -0.234067 -0.007507 -0.064725 -0.329956 -0.397398 -0.843824 -0.232345 1.110118 -0.513601 0.215086 -0.414567 -0.672271 -0.046847 0.086475 0.151385 0.191808 1.198082 0.865907 -0.153861 -0.114634 -0.889951 0.258455 1.571451 0.753033 -0.947704 0.445006 0.173435 0.131405 0.555671 0.174505 0.451004 0.813380 -0.662322 -0.781989 -0.466448 -0.617001 1.024943 1.084561 0.515171 -1.419050 0.992169 0.090317 0.094775 1.671857 0.826595 -0.964941 -0.024651 0.907441 -1.339316 -0.711622 0.093389 0.147148 -0.054942 -0.247633 0.304395 0.335428 -0.870569 -1.409570 -0.466729 -1.080062 1.023032 -0.096670 0.313587 0.034164 -1.123880 -0.503299 1.278775 0.201388 -0.560580 -0.292349 -0.530138 -0.534953 -1.400110 0.405314 0.555151 -0.588481 -0.718321 -0.707394 0.129799 0.803935 -0.608783 -0.196568 -0.277542 -0.607106 0.572027 -0.046372 0.400262 -1.286622 -0.394600 -0.020560 0.208786 0.722391 0.377334 0.500046 1.499748 -0.708063 0.425654 1.041109 0.191669 0.402950 1.348934 -0.620549 1.130261 -0.630423 0.873919 -0.075564 0.594394 -0.245522 0.022240 0.144403 -0.129266 -0.061487 0.731696 -0.852772 -0.233415 0.476448 -0.890576 -0.148593 0.750540 0.683961 0.604149 0.069434 0.416737 -0.600634 -0.082403 -0.218542 -0.192407 0.913421 0.135140 -1.243244 -0.098807 0.497138 -0.545911 -0.864789 0.333259 0.346260 0.948838 -0.966409 0.890066 -0.068779 -0.621429 -1.124708 -0.638011 0.516937 -0.835831 -0.877655 0.676028 -1.208046 -0.269277 -0.558085 0.871237 -0.891291 -0.082390 -0.316708 0.833678 0.586023 0.132031 0.805439 -0.113196 0.907648 0.138088 -0.292986 0.120408 1.370127 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.714818 0.912122 0.115425 -0.727912 1.260407 -0.268774 0.316459 0.645374 -0.493163 0.839914 -0.935122 0.194270 -0.129953 -1.161471 0.096999 -0.410571 -0.103186 0.697613 -0.076703 0.634446 0.541379 -0.587835 0.118656 -0.562995 -0.357491 -0.972957 0.100944 0.202013 0.399006 0.211725 0.225231 0.088121 1.006349 -0.011110 0.766923 0.818344 0.043141 1.078404 0.479386 -0.239761 0.085187 0.503042 -0.352988 -1.192501 0.196540 -0.402519 -0.621685 -0.748549 0.346766 -1.064267 0.270605 0.694383 0.021206 -0.340792 -0.909486 0.444833 0.867109 0.106036 1.029876 0.317743 -0.348491 -0.261473 -0.705187 0.626925 -0.615298 0.077036 0.268500 -0.746918 0.209347 0.540107 -0.001474 -0.190870 -0.443965 0.240693 0.313354 -0.758386 0.221345 -0.384031 -1.234453 -0.382302 -0.313407 0.235972 -0.181763 0.867115 -0.041272 0.186921 -0.302108 0.226604 0.147344 -0.846536 -0.355637 1.022290 -0.121859 -0.111574 -0.414698 1.083709 0.663921 -0.268836 -0.411889 -0.178842 0.343758 0.117086 0.369698 -0.618107 -0.485710 -0.941114 0.367795 0.394232 -0.158132 0.801757 0.040636 0.586090 0.275281 0.507096 -0.603629 0.483935 -1.299756 0.234021 -0.164626 0.163376 -0.152270 0.127881 0.197256 0.174693 0.556665 -1.033594 0.992733 0.355751 -0.030040 -0.841220 0.390613 -0.045331 -0.318229 -0.282412 0.487614 0.109718 -0.080235 -0.056334 0.085952 -0.021778 -0.451091 -0.634793 0.050081 1.219600 -0.839140 0.243334 -0.238243 -0.236390 -0.108672 0.255155 0.377493 0.294670 1.089477 0.697464 -0.022054 0.375099 -0.840305 0.197366 1.358391 0.639063 -0.769904 0.645310 -0.297010 -0.222982 0.194783 0.319795 0.428327 0.686654 -1.020317 -0.953463 0.032325 -0.404531 0.960396 0.604170 0.198944 -0.851516 1.182454 -0.116542 -0.161293 1.133742 0.666842 -0.806958 0.217407 0.754644 -1.175726 -0.458732 0.364324 -0.353237 -0.049754 -0.238326 0.136089 0.376136 -0.636114 -0.879834 -0.454697 -0.842413 0.912026 -0.076075 0.068083 -0.123552 -0.621606 -0.249777 1.024411 0.229950 -0.395050 -0.361029 -0.465972 -0.967799 -1.091930 0.221705 0.381666 -0.494893 -0.575639 -0.701648 -0.212363 0.575144 -0.443958 0.027210 -0.761421 -0.307351 0.553125 0.503475 0.251727 -0.765290 -0.242914 0.031437 0.176555 0.396156 0.005900 0.847586 1.173997 -0.502781 0.547559 0.412414 0.002321 0.517118 0.977705 -0.772223 1.051435 -0.230505 0.770957 0.147146 0.420855 -0.301914 -0.007410 0.053295 -0.399315 -0.085605 0.451322 -0.676789 -0.224836 0.364897 -0.534065 -0.391815 0.440519 0.572214 0.375729 0.058786 0.230717 -0.429946 -0.231736 -0.623366 -0.035467 0.662587 -0.083427 -0.738963 0.219845 0.482564 -0.230870 -0.386398 0.187162 0.436770 0.662096 -0.883710 0.647752 -0.131369 -0.095700 -0.987973 -0.826257 0.487518 -0.565924 -0.814667 0.441068 -1.123300 -0.204954 -0.504998 0.541813 -1.222579 -0.324254 0.060397 0.934544 0.104898 -0.053625 0.526801 -0.285908 0.640699 0.077531 0.091261 0.053197 0.905214 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = -0.740467 0.576135 0.141055 -0.684560 1.140945 -0.277748 -0.041851 0.475450 0.311052 0.752240 -0.955050 -0.200750 -0.376670 -1.019868 0.048331 -0.284071 0.022370 0.823203 -0.298962 0.285465 0.642774 -0.323174 0.283973 -0.598261 -0.214255 -0.764751 -0.157228 0.148801 -0.033805 0.229726 0.133682 0.098909 1.015450 0.175924 0.637485 0.659454 0.156518 1.397279 0.248187 0.597408 0.229812 0.620282 -0.295577 -1.415168 0.662668 -0.589172 -0.416910 -0.894840 0.426989 -1.215938 0.847404 0.638941 0.074441 -0.407926 -0.797122 0.144378 0.907504 0.446561 0.988172 0.375409 -0.450667 0.140168 -0.724039 0.120928 -0.827281 0.509092 0.425201 -0.953686 -0.257851 0.509630 0.573578 -0.434542 -0.767272 0.033628 0.133215 -0.532266 0.304364 -0.256666 -0.480344 -0.314051 -0.595269 0.102114 -0.255816 0.739146 -0.196249 0.083348 -0.430348 0.058353 0.323398 -0.659837 -0.443160 0.746417 -0.097186 0.416459 -0.166371 0.552374 0.283271 -0.323249 -0.423769 -0.095329 0.231183 0.208503 0.378310 0.287131 -0.786250 -0.674460 0.850222 0.493543 -0.260893 0.173898 0.303623 0.345237 0.072379 0.348946 -0.564225 0.638386 -1.278815 0.229202 0.033147 0.193948 -0.079127 0.167545 0.090057 -0.105506 0.426428 -0.870611 1.081710 0.268193 -0.305781 -0.552083 0.518699 0.025989 -0.395094 -0.229189 0.621992 0.072591 -0.203966 -0.010827 0.012389 -0.249352 -0.482545 -0.558056 -0.245256 0.839091 -0.444894 0.183152 -0.342061 -0.596627 -0.013195 0.091085 0.141890 0.225686 0.988661 0.726894 -0.189818 -0.126833 -0.802398 0.280921 1.293423 0.539238 -0.799083 0.382075 0.054974 0.140840 0.484191 0.201932 0.377685 0.603532 -0.383889 -0.484699 -0.362094 -0.395483 0.864192 0.782508 0.485484 -1.107685 0.645177 0.105456 0.131726 1.424447 0.608354 -0.859990 0.037262 0.772451 -0.968418 -0.495965 0.078525 0.061858 -0.065780 -0.304242 0.302368 0.364418 -0.782055 -1.085004 -0.302342 -0.871554 0.845610 -0.081283 0.166574 0.113214 -0.992543 -0.204557 1.110932 0.188731 -0.382289 -0.241219 -0.508160 -0.423394 -1.159860 0.314740 0.434855 -0.464547 -0.513553 -0.598065 0.041446 0.759847 -0.413423 -0.113558 -0.323703 -0.353686 0.488980 -0.061134 0.310177 -1.006497 -0.318357 0.036495 0.106155 0.562812 0.202563 0.326948 1.126663 -0.632459 0.343773 0.904455 0.230224 0.317626 1.016613 -0.502001 0.939172 -0.466011 0.670596 -0.039719 0.510150 -0.215107 0.063425 0.058592 -0.018588 -0.105185 0.601581 -0.735640 -0.222062 0.450432 -0.694575 -0.227205 0.553774 0.586082 0.536519 0.061828 0.185186 -0.461996 -0.068380 -0.172394 -0.069187 0.735030 0.077148 -0.991187 -0.043696 0.413187 -0.490420 -0.661627 0.298310 0.263386 0.832700 -0.817363 0.683691 -0.008555 -0.385296 -0.914834 -0.512555 0.339349 -0.587149 -0.615433 0.590909 -1.057415 -0.306610 -0.448868 0.711276 -0.703747 0.041367 -0.283206 0.728495 0.482578 0.087929 0.690034 -0.051142 0.656061 0.092571 -0.263868 0.114941 1.074501 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.494319 0.496028 0.164691 -0.539899 0.943089 -0.281333 -0.001457 0.564640 0.077928 0.596694 -0.667079 0.211952 -0.043951 -0.646961 0.049896 -0.185273 -0.048838 0.591740 -0.161503 0.223754 0.363182 -0.099748 0.131851 -0.396502 -0.236651 -0.783928 -0.015226 0.158709 0.036080 0.080718 0.106747 0.077825 0.735436 -0.074997 0.523411 0.553303 0.288202 0.741971 0.269546 0.248711 0.277056 0.292364 -0.198391 -0.801160 0.220960 -0.257271 -0.425129 -0.493668 0.285648 -0.831362 0.435106 0.434602 0.043547 -0.277334 -0.493955 0.401675 0.484982 0.021772 0.660461 0.219841 -0.424090 0.007022 -0.495656 0.580471 -0.580565 0.265475 0.093287 -0.633406 -0.121855 0.476906 0.254254 -0.231924 -0.354496 0.077426 0.099855 -0.482300 0.167401 -0.240633 -0.153139 -0.249988 -0.221880 0.212248 -0.086053 0.438696 -0.023676 0.136094 -0.329603 0.128956 0.145593 -0.489079 -0.286079 0.600994 -0.206740 0.100344 -0.276525 0.390796 0.408092 -0.283000 -0.051728 -0.251852 0.197455 0.050646 0.256062 -0.061711 -0.215121 -0.450355 0.315312 0.356195 -0.107691 0.355881 -0.220871 0.401171 0.139438 0.269960 -0.195005 0.351494 -0.979471 0.229076 -0.104093 0.088625 -0.098335 0.046643 0.221844 0.224169 0.350339 -0.598708 0.754131 0.142168 -0.129382 -0.388292 0.308189 0.073144 -0.215112 -0.180271 0.343612 0.077265 -0.092317 0.006305 0.145844 -0.101425 -0.299594 -0.545494 -0.095316 0.514320 -0.469093 0.181444 -0.160312 -0.192381 -0.033186 0.143347 0.218764 0.164088 0.745713 0.477567 0.007897 0.096000 -0.620323 0.106833 0.783842 0.341155 -0.478384 0.434018 -0.183638 -0.117228 0.252882 0.269571 0.132436 0.501936 -0.488537 -0.518696 -0.113418 -0.295968 0.631141 0.406915 0.118836 -0.714106 0.491145 -0.110850 -0.003688 0.962472 0.484524 -0.695382 0.099657 0.591798 -0.564264 -0.441166 0.172524 -0.187556 -0.158940 -0.132371 0.161694 0.266435 -0.451902 -0.654183 -0.140283 -0.550815 0.571790 -0.059712 -0.072390 0.027713 -0.517834 -0.166612 0.758990 0.179526 -0.227401 -0.177982 -0.348057 -0.336658 -0.812422 0.121282 0.344575 -0.307830 -0.279580 -0.432179 -0.040382 0.434052 -0.341151 0.016064 -0.552436 -0.273356 0.399299 0.087829 0.093836 -0.673419 -0.145267 -0.084890 0.077156 0.229253 -0.059816 0.363185 0.818230 -0.365611 0.376693 0.475643 -0.161332 0.200719 0.694564 -0.498005 0.728523 -0.167809 0.311771 0.168416 0.268951 -0.287450 0.012143 -0.054708 -0.180555 -0.121693 0.323736 -0.551519 -0.175442 0.206868 -0.426289 -0.208402 0.350714 0.480986 0.244660 0.026937 0.120174 -0.301180 -0.147701 -0.395383 -0.031068 0.427405 -0.070800 -0.643054 0.162674 0.424625 -0.440927 -0.477890 0.126809 0.297660 0.524299 -0.603323 0.548080 0.043210 -0.088049 -0.827465 -0.474324 0.296383 -0.445460 -0.501522 0.079006 -0.782099 -0.406864 -0.305604 0.452809 -0.670463 -0.179888 0.070485 0.614660 0.206861 -0.021825 0.444123 -0.185855 0.398728 0.119583 -0.034135 0.002644 0.622854 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.523068 0.608318 0.104740 -0.508706 0.798494 -0.340411 0.056627 0.460257 -0.056811 0.558326 -0.658666 0.167363 -0.139485 -0.854547 0.073960 -0.160364 0.029637 0.671393 -0.018540 0.390256 0.433514 -0.371963 0.096448 -0.429801 -0.214649 -0.750640 0.053826 0.135691 0.069567 0.072939 0.238828 0.156605 0.793580 0.116984 0.567769 0.608861 0.045249 0.940561 0.461146 0.115045 0.108111 0.390138 -0.192887 -0.982173 0.362630 -0.279000 -0.267478 -0.639598 0.245085 -0.797785 0.447965 0.461762 0.050150 -0.231434 -0.725910 0.144707 0.721294 0.159628 0.707416 0.266549 -0.241461 0.003631 -0.430683 0.233429 -0.599488 0.009328 0.323282 -0.539484 0.127592 0.399729 0.308205 -0.257964 -0.389293 0.058834 0.074223 -0.494040 0.188936 -0.193495 -0.619927 -0.351971 -0.328267 0.124450 -0.130838 0.595248 -0.098905 0.098666 -0.376527 0.087741 0.198203 -0.495085 -0.299860 0.532473 -0.083245 0.116822 -0.082093 0.755828 0.439994 -0.258449 -0.216270 -0.161208 0.222329 0.024339 0.278264 0.073954 -0.469912 -0.464632 0.405339 0.172671 -0.223432 0.423646 0.122300 0.433326 0.144318 0.258425 -0.407287 0.353807 -1.041178 0.221474 0.023601 0.103799 -0.021169 0.051649 0.100783 0.016669 0.317725 -0.684584 0.752422 0.247855 0.024136 -0.494555 0.353074 0.046744 -0.226825 -0.270407 0.438578 0.091865 -0.082983 0.005644 0.002214 -0.062064 -0.319875 -0.589021 -0.110602 0.929051 -0.539398 0.169344 -0.224911 -0.326214 -0.040592 0.004000 0.131493 0.181927 0.721191 0.523160 -0.086741 0.187862 -0.623876 0.089642 0.942122 0.548854 -0.519490 0.387744 -0.000546 -0.100975 0.292756 0.230157 0.304044 0.294475 -0.568172 -0.617979 -0.000104 -0.330139 0.631261 0.377717 0.206293 -0.753069 0.738492 0.266697 -0.047963 1.055790 0.308156 -0.598005 0.164090 0.570318 -0.744610 -0.348743 0.127964 -0.075702 -0.078053 -0.135912 0.186070 0.236298 -0.524726 -0.703964 -0.319723 -0.600636 0.558687 -0.068954 0.084711 0.002664 -0.557677 -0.137631 0.802193 0.160054 -0.249831 -0.220663 -0.385378 -0.397472 -0.834749 0.173416 0.254867 -0.349889 -0.311792 -0.455933 -0.067513 0.507524 -0.348989 -0.116171 -0.512223 -0.290594 0.395379 0.171314 0.038277 -0.779305 -0.195990 0.138758 0.208188 0.291535 0.147300 0.499272 0.889574 -0.412798 0.214243 0.566311 0.194693 0.422869 0.746372 -0.526596 0.711636 -0.336571 0.595417 0.104745 0.277386 -0.241009 -0.047003 0.037385 -0.058503 -0.129036 0.299623 -0.508332 -0.138292 0.323957 -0.401771 -0.217135 0.365340 0.456672 0.363143 0.042392 0.162387 -0.256688 -0.073638 -0.297432 -0.039532 0.496968 0.056541 -0.648134 0.106547 0.391336 -0.220051 -0.380741 0.138794 0.293511 0.507357 -0.608361 0.539446 -0.064381 -0.162576 -0.627298 -0.590944 0.462516 -0.443888 -0.523308 0.328435 -0.895910 -0.223517 -0.313047 0.504199 -0.804472 0.079279 -0.122460 0.570449 0.166926 0.022450 0.437659 -0.164902 0.447502 0.056033 -0.009559 -0.033264 0.816675 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -8.331271 8.843533 3.705708 -8.055675 14.826776 -2.546362 1.405592 6.693873 -4.348967 12.833658 -7.127988 -1.640157 -2.532856 -14.098758 0.602028 -8.701859 -3.523867 6.916029 -0.497288 8.650394 6.226139 -6.472838 1.088150 -2.034647 -5.934924 -11.521657 -1.589340 4.416738 9.365184 -5.953531 5.684901 -0.431350 14.450901 -2.989677 13.234093 10.979350 5.087089 10.582841 2.588815 -0.700724 -3.298044 6.358125 -7.568835 -8.847894 0.963569 -2.634227 -10.832082 -6.176828 4.664800 -7.283572 0.689711 11.587998 -2.116684 -0.861953 -7.886108 10.371191 5.710579 -1.651726 14.334651 2.086260 -3.333758 -1.082411 -13.013596 11.036753 -5.886225 2.303604 -2.827839 -7.732249 3.144926 0.436285 -2.304038 -5.227014 -3.741033 11.205588 7.149157 -11.807784 1.710917 -7.399079 -15.038848 -10.290592 -7.678548 4.792828 1.357201 9.949874 1.025662 4.515119 3.160024 7.474837 -4.469216 -16.596906 2.170553 14.139275 -5.901294 -5.017989 -8.764071 11.193689 2.693953 1.500308 -6.915490 -3.329390 4.463952 -1.094282 6.492365 -10.113886 -0.015517 -12.836638 0.018146 0.847040 0.373700 6.860312 4.502033 3.937159 8.120301 12.938183 -10.911393 3.909442 -14.007584 2.933654 -2.112546 3.666879 -2.181771 4.946746 1.758287 5.251760 10.798602 -16.573502 6.393515 0.201631 -2.997114 -13.635854 0.707894 -4.730638 -3.758441 -4.749090 6.163605 -0.259412 -1.745874 -4.788076 2.796630 2.973666 -3.943396 -7.366140 4.702806 11.377122 -10.444573 3.377301 -2.750349 -3.300829 -2.674081 6.934546 10.161128 8.392895 16.472638 9.984875 1.263297 6.387451 -11.991617 -1.500647 11.981028 4.264330 -10.453166 13.097237 -9.107847 -4.646599 1.123444 9.714691 7.849400 6.019182 -12.737732 -11.204292 6.528302 1.469573 13.478035 1.063492 -0.877919 -6.033260 12.192311 0.296406 -7.891150 16.310746 9.128926 -9.764543 2.880400 4.378612 -10.081639 -7.430517 9.734113 -9.635104 -1.469777 -2.381704 0.903093 5.545930 -4.513087 -5.134476 -0.200364 -10.847863 12.350673 -3.241970 -1.177999 3.939926 -9.577436 -12.772191 10.293665 0.292133 -5.247009 -8.359494 -8.526741 -7.439702 -10.456693 4.947097 4.062145 -3.239904 -8.089928 -10.625022 0.184149 7.915666 1.061542 6.675509 -13.449189 -6.180197 6.980039 4.550468 7.615603 -6.254945 -1.467581 -1.378484 2.061619 3.933262 -0.616476 10.639454 18.118849 -6.844038 8.308768 -1.496712 -9.097296 3.780285 8.573093 -15.491488 15.782224 1.942143 5.952695 -0.141969 3.152924 -5.374437 0.982603 3.575970 -2.481753 1.843452 1.293100 -2.667053 -4.205742 -2.263417 -10.415672 -4.957213 -0.990814 4.074437 -2.767060 4.185135 2.013492 -6.083975 -4.897863 -7.874105 0.533920 9.054462 0.571531 -3.299264 8.638974 1.475561 2.176244 2.404939 0.276962 5.029834 7.751234 -13.817612 2.081872 -2.950118 1.201807 -10.262652 -13.002452 1.922682 -9.563785 -6.990269 3.918478 -11.558021 -0.692335 -8.750687 1.068026 -11.983603 -4.176443 4.338623 15.415211 5.807849 -6.092564 4.973487 -5.266726 9.903949 1.269171 -0.799790 3.661777 9.461542 +PE-benchmarks/cut-vertices.cpp__main = -11.677140 7.281886 4.304946 -9.593650 21.448810 -5.925669 2.043959 11.293640 -0.272197 15.098223 -11.243265 -1.529663 -5.178711 -15.079979 0.690552 -9.202951 -0.828964 11.537219 -4.627993 5.677243 9.135588 -1.790352 2.511929 -4.731415 -5.944826 -13.743663 -2.923267 4.467533 5.033820 -3.952379 3.093802 2.148839 20.243010 -2.193436 16.371938 13.648106 8.983462 16.959942 2.017746 6.024922 0.909033 8.527546 -7.653934 -15.398763 4.151086 -5.289117 -12.895862 -8.816995 7.362746 -13.750807 8.995045 13.262038 -1.383333 -1.730688 -8.528399 11.117861 7.104379 -0.409844 17.507720 4.213678 -10.393685 0.986217 -14.961680 15.484855 -10.080581 8.043034 -1.448921 -14.693889 -2.241384 4.256889 4.545108 -9.859637 -9.506855 9.114053 5.978314 -12.516099 3.407039 -5.984373 -8.241795 -9.191648 -11.785804 4.831258 -0.408290 10.809741 -0.029828 4.056960 -2.233889 5.858238 -1.472805 -17.842423 -0.234432 17.929011 -8.451658 1.430524 -13.980042 6.153212 1.972003 -0.755387 -7.219327 -6.584882 4.841790 -0.911641 7.623730 -6.166926 -3.977316 -12.613135 4.807432 4.794046 -0.047517 6.091867 2.096332 5.457547 7.913987 12.287582 -7.991195 7.864275 -20.064052 6.700004 -2.637027 2.751137 -2.321302 5.116248 3.077411 4.944488 12.468105 -18.603646 11.175280 0.482566 -6.749104 -13.748657 3.294617 -3.756434 -5.926121 -6.016588 10.534296 0.293101 -2.972123 -4.482893 4.040205 0.248545 -6.328589 -11.166556 0.806186 8.526928 -10.106117 3.649761 -4.730770 -6.341295 -2.717904 7.911439 9.174384 9.623465 19.223727 13.037122 -0.317899 2.403397 -16.750876 -0.096566 15.455424 6.710893 -13.984701 13.870845 -9.296127 -2.580975 4.683786 10.583952 7.230615 8.614851 -10.278963 -9.415704 1.820625 0.100392 17.049947 7.019479 1.847581 -11.093881 8.429305 -3.597721 -5.727791 22.428253 12.897811 -15.823714 1.702161 8.954206 -9.009585 -11.410902 8.751100 -10.086932 -4.271862 -4.979451 3.580524 7.799075 -9.509807 -8.308194 3.158983 -14.244491 14.950659 -3.047773 -2.529671 4.650227 -16.806740 -12.828728 17.138537 1.043909 -4.989440 -7.627282 -11.550216 -6.032987 -16.715633 5.472140 6.569097 -3.200838 -9.317949 -12.569492 0.852772 11.925226 -0.774594 7.597666 -11.552846 -7.234972 9.324888 0.496464 8.228029 -13.615913 -3.548949 -2.874398 1.717349 6.731165 -1.714422 7.527668 20.818394 -9.765814 9.946415 6.363464 -9.593111 1.758170 12.062824 -16.374064 18.691155 -0.258585 6.003268 0.919821 5.781342 -7.560911 0.733062 1.929007 0.843382 -1.394904 5.473396 -7.547923 -4.762634 -1.026142 -13.802526 -5.520875 1.755045 7.375505 -0.945169 3.622564 1.398490 -8.161935 -5.161515 -10.227465 1.405488 11.969354 -0.870169 -8.859244 8.519551 3.220229 -6.095439 -1.270636 2.288266 5.695033 12.494912 -16.828229 4.764557 -0.774334 -0.555027 -16.139649 -14.707960 1.955449 -12.929466 -10.176536 3.836533 -15.285727 -5.524633 -9.732531 5.562603 -13.885899 -5.699050 3.380204 18.302353 8.468768 -3.719697 9.394056 -4.059843 11.149971 1.684070 -2.212004 3.995741 13.821434 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.447045 0.273775 -0.075905 -0.344690 0.879235 -0.416480 -0.056616 0.613517 0.112462 0.541828 -0.467291 0.102764 -0.135552 -0.639284 0.092645 0.049936 0.166285 0.634156 -0.123778 0.106126 0.334095 -0.043768 0.121344 -0.246566 -0.186065 -0.612224 0.003913 0.180257 -0.004982 -0.063375 -0.087946 0.249757 0.824392 -0.001660 0.577277 0.526845 0.266822 0.702776 0.435369 0.095561 0.230530 0.256841 -0.164911 -0.766710 0.264251 -0.190389 -0.350156 -0.429074 0.297626 -0.614236 0.568530 0.407235 0.015633 -0.111557 -0.507941 0.228464 0.353415 0.068806 0.636758 0.214564 -0.441728 -0.017731 -0.336837 0.596119 -0.563598 0.101906 0.041839 -0.649566 -0.101364 0.441260 0.344696 -0.361858 -0.380323 0.084595 0.047470 -0.427054 0.183753 -0.048782 0.122791 -0.322409 -0.458599 0.186167 -0.227123 0.434310 -0.027492 0.120290 -0.431795 0.063974 0.136918 -0.485722 -0.132306 0.468809 -0.264554 0.249800 -0.188951 0.318216 0.304008 -0.250471 -0.075049 -0.340246 0.155787 -0.122670 0.262448 0.137231 -0.069783 -0.254931 0.311313 0.157717 0.014646 0.354893 0.085005 0.299490 0.193054 0.243324 -0.083224 0.121822 -0.922165 0.340014 -0.065191 -0.012171 -0.098772 0.100161 0.263033 0.082793 0.369837 -0.659586 0.579385 0.136704 -0.036724 -0.338505 0.255964 0.074402 -0.188966 -0.235081 0.486543 -0.024326 -0.091678 -0.009279 0.147207 -0.028478 -0.413808 -0.375405 -0.203398 0.508506 -0.456246 0.180553 -0.191340 -0.316022 -0.000249 0.090641 0.179490 0.317078 0.643021 0.484994 -0.149925 0.029402 -0.726131 0.124235 0.711314 0.286435 -0.461526 0.441581 -0.187521 -0.094936 0.277134 0.363895 0.210461 0.212316 -0.229122 -0.313015 -0.060687 -0.068134 0.595861 0.233223 0.185881 -0.554297 0.243777 0.076065 0.016631 0.982391 0.239346 -0.668344 0.154440 0.567061 -0.385070 -0.316371 0.155784 -0.274859 -0.176194 -0.268257 0.236768 0.381339 -0.558936 -0.421706 0.017453 -0.486171 0.458368 -0.071415 -0.169858 0.131146 -0.626183 0.055002 0.832859 0.184839 -0.041156 -0.179218 -0.508615 -0.221167 -0.761922 0.094080 0.234343 -0.193721 -0.128915 -0.413616 -0.150616 0.552633 -0.135918 0.089896 -0.559662 -0.056200 0.411534 0.041273 -0.011921 -0.646021 -0.141370 0.120248 0.027264 0.162738 -0.092838 0.249602 0.588672 -0.412221 0.251261 0.580892 0.037810 0.254622 0.463046 -0.509110 0.663870 -0.162287 0.321985 0.212789 0.241740 -0.281658 0.019358 -0.088258 0.061956 -0.263506 0.271469 -0.515920 -0.183174 0.287834 -0.325272 -0.345744 0.166246 0.471298 0.265073 0.045478 -0.086777 -0.229380 -0.103103 -0.341653 0.150277 0.386952 -0.056025 -0.499336 0.259133 0.370388 -0.402355 -0.321773 0.143578 0.247369 0.513355 -0.597048 0.392589 0.070218 0.096726 -0.628386 -0.504046 0.255132 -0.328231 -0.334068 0.139813 -0.843536 -0.433097 -0.251423 0.429879 -0.616676 0.090942 -0.013567 0.623275 0.152435 -0.032160 0.430642 -0.108983 0.204372 0.040137 -0.037969 -0.012686 0.616291 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.663960 0.444221 -0.213574 -0.559369 1.511565 -0.544387 0.031567 0.980444 -0.295444 0.866284 -0.669087 0.483549 -0.119697 -1.044638 0.142270 0.172255 0.216939 0.851667 -0.145825 0.282840 0.461042 -0.195497 0.221445 -0.334012 -0.349514 -1.015573 0.121281 0.321932 0.231246 -0.142643 -0.094074 0.285479 1.173203 -0.151100 0.750310 0.731559 0.468077 0.938024 0.667029 -0.344947 0.329408 0.328371 -0.255642 -1.060762 0.313908 -0.266935 -0.697270 -0.553786 0.475598 -0.933232 0.467803 0.649344 0.014376 -0.232962 -0.798478 0.541397 0.700449 -0.260536 0.983864 0.262634 -0.629763 -0.353076 -0.482840 1.049470 -0.761758 -0.009109 0.006882 -0.900318 -0.088108 0.717748 0.277181 -0.520666 -0.515927 0.171611 0.185580 -0.732022 0.226417 -0.130850 0.078210 -0.688337 -0.555556 0.266559 -0.378236 0.697945 0.008214 0.244016 -0.436203 0.115259 0.148179 -0.799387 -0.178419 0.768589 -0.397830 0.230258 -0.470537 0.643840 0.456575 -0.418315 -0.242446 -0.574142 0.209115 -0.155373 0.407205 -0.240644 0.076397 -0.483884 0.225908 0.113873 0.142361 0.714946 0.014179 0.416408 0.227843 0.419145 -0.208913 0.118524 -1.390339 0.448147 -0.079662 0.055191 -0.273365 0.129723 0.534047 0.221421 0.624237 -1.092243 0.907869 0.165255 -0.000589 -0.649411 0.346153 0.169464 -0.222256 -0.280604 0.679292 -0.154220 -0.103459 -0.012388 0.345765 0.064861 -0.784913 -0.568595 -0.210914 0.955681 -0.989106 0.330234 -0.253498 -0.377295 0.026238 0.155284 0.374216 0.479958 1.011376 0.734175 -0.156435 0.598631 -1.115196 0.255338 1.145831 0.660966 -0.694329 0.718339 -0.482234 -0.190526 0.357033 0.536241 0.362254 0.307798 -0.554259 -0.547812 0.299300 -0.053461 0.937854 0.234426 0.245551 -0.931975 0.462176 0.087161 0.107355 1.385851 0.385121 -1.093788 0.541744 0.855196 -0.525617 -0.349355 0.256668 -0.555324 -0.380093 -0.361667 0.346723 0.612704 -0.773373 -0.628390 -0.109749 -0.680478 0.715803 -0.135147 -0.363862 0.217872 -0.768790 0.100385 1.100456 0.254165 -0.079194 -0.337195 -0.767563 -0.555859 -1.148603 0.120520 0.323583 -0.383862 -0.225969 -0.699285 -0.375356 0.821483 -0.158024 0.143434 -1.318854 0.031442 0.644136 0.361211 -0.000945 -0.945715 -0.146444 0.191946 0.060615 0.150840 -0.280719 0.485711 0.837985 -0.671950 0.468336 0.472311 -0.018239 0.487563 0.665544 -0.794196 1.041145 -0.058005 0.825315 0.312945 0.350223 -0.429656 0.125878 -0.176756 -0.012338 -0.355508 0.353794 -0.821969 -0.340816 0.494028 -0.389572 -0.710443 0.221431 0.740873 0.379062 0.084548 -0.190702 -0.213310 -0.236793 -0.609707 0.227762 0.538525 -0.278398 -0.699497 0.421429 0.616247 -0.513059 -0.355018 0.200869 0.506647 0.712238 -0.920054 0.615098 0.013560 0.235026 -0.999633 -0.938864 0.486675 -0.439638 -0.563483 0.306070 -1.371484 -0.626939 -0.395879 0.634060 -1.133560 0.072911 0.028976 0.978760 0.037660 -0.012593 0.682808 -0.203308 0.272303 -0.061698 0.136089 0.008040 0.797407 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.297324 0.059503 -0.302939 -0.165116 0.751367 -0.385596 -0.116765 0.617806 0.034642 0.430451 -0.230690 0.165938 -0.041153 -0.466751 0.111795 0.319084 0.227769 0.459640 -0.077072 -0.039803 0.187580 0.041731 0.082102 -0.079265 -0.140790 -0.464301 0.064070 0.182806 0.074298 -0.190671 -0.303693 0.260720 0.655522 -0.093341 0.446361 0.373427 0.330447 0.353076 0.457690 -0.191557 0.211225 0.112948 -0.111029 -0.448172 0.110296 -0.070073 -0.308413 -0.178116 0.257250 -0.291993 0.427608 0.290527 -0.010490 -0.006491 -0.355813 0.241301 0.124785 -0.090933 0.476776 0.132145 -0.380149 -0.166125 -0.148278 0.759395 -0.422985 -0.043193 -0.121763 -0.496177 -0.102003 0.384471 0.183692 -0.306869 -0.213939 0.094098 0.026849 -0.343266 0.141582 0.048245 0.511309 -0.346157 -0.410712 0.190761 -0.274171 0.307486 0.033839 0.118706 -0.353966 0.041588 0.063529 -0.390511 0.003077 0.277611 -0.316512 0.205659 -0.138136 0.174330 0.227521 -0.196150 0.026226 -0.393631 0.085364 -0.203794 0.195314 0.041871 0.322320 -0.068915 0.111589 -0.011563 0.179064 0.356052 0.100815 0.159278 0.170842 0.196127 0.128766 -0.178710 -0.673006 0.312377 -0.056804 -0.061271 -0.142060 0.086902 0.381340 0.087331 0.334678 -0.552976 0.341993 0.069255 0.064119 -0.216272 0.130104 0.082120 -0.113919 -0.167189 0.400771 -0.110452 -0.053295 -0.008236 0.236530 0.070689 -0.487841 -0.147416 -0.192418 0.329481 -0.468391 0.159196 -0.118977 -0.210147 0.022792 0.087788 0.183456 0.337448 0.461359 0.357910 -0.158696 0.140563 -0.643613 0.138341 0.480823 0.133754 -0.316092 0.399089 -0.325023 -0.117253 0.192657 0.381826 0.149827 0.044766 -0.061263 -0.102427 0.104700 0.111932 0.458331 -0.054441 0.130747 -0.296856 0.001307 0.082325 0.036446 0.735557 0.059239 -0.584638 0.270728 0.446679 -0.095226 -0.112272 0.149496 -0.375794 -0.185027 -0.302998 0.221866 0.406109 -0.462056 -0.130645 0.121459 -0.291845 0.299328 -0.058766 -0.286201 0.189388 -0.447377 0.296564 0.649933 0.173391 0.108611 -0.157543 -0.477323 -0.200815 -0.545422 0.005752 0.114049 -0.111440 0.046526 -0.328782 -0.260380 0.498175 0.022554 0.154945 -0.706828 0.173735 0.340360 0.108848 -0.102775 -0.374176 -0.065877 0.170653 -0.055683 0.002220 -0.267691 0.150964 0.269807 -0.337834 0.211580 0.359157 0.030785 0.212355 0.177268 -0.423072 0.500371 0.008656 0.184595 0.258296 0.157593 -0.272858 0.053261 -0.167977 0.094790 -0.293125 0.134033 -0.413799 -0.172388 0.270468 -0.139690 -0.429959 -0.003187 0.386894 0.211562 0.036016 -0.269709 -0.092532 -0.100850 -0.337796 0.248558 0.221920 -0.127539 -0.265616 0.317676 0.315049 -0.326338 -0.151524 0.101477 0.199650 0.386523 -0.463989 0.222416 0.107566 0.315746 -0.452127 -0.440044 0.133749 -0.108964 -0.135893 0.057435 -0.733857 -0.445932 -0.155744 0.284144 -0.524145 0.170337 0.035866 0.533210 0.005388 -0.068224 0.325343 -0.073892 -0.016645 -0.009317 0.039467 -0.027977 0.334382 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.326083 0.018306 -0.772136 -0.110553 0.731503 -0.525348 -0.108765 0.629256 -0.133071 0.381164 -0.189795 0.202574 -0.021249 -0.651366 0.158803 0.775588 0.382647 0.590444 0.029059 0.056063 0.240693 -0.129358 0.044055 -0.088931 -0.114701 -0.207367 0.151830 0.194582 0.131293 -0.452289 -0.508475 0.366504 0.753147 0.012694 0.546330 0.431311 0.227413 0.460195 0.748548 -0.586737 0.116479 0.186766 -0.104892 -0.564114 0.211725 -0.071060 -0.188967 -0.243749 0.253872 -0.078865 0.770063 0.317190 -0.010298 0.057513 -0.586552 0.025978 0.319476 -0.101176 0.561772 0.170066 -0.276693 -0.111941 0.028241 0.739629 -0.452818 -0.262708 0.075986 -0.428138 0.062450 0.349165 0.488986 -0.644383 -0.400880 0.082467 -0.081854 -0.374274 0.209543 0.118054 0.716174 -0.692588 -0.625673 0.134816 -0.508289 0.436402 -0.035457 0.096837 -0.647869 0.002508 0.106078 -0.407907 0.021593 0.100548 -0.314859 0.362091 -0.003287 0.434928 0.176704 -0.189165 -0.181776 -0.447696 0.091734 -0.272677 0.223977 0.291273 0.535838 0.095914 0.104217 -0.221411 0.160982 0.458341 0.573016 0.182060 0.266722 0.182677 0.243221 -0.466432 -0.754854 0.295930 0.090836 -0.057822 -0.076344 0.123292 0.470563 -0.181853 0.352128 -0.665439 0.311795 0.131212 0.213578 -0.288660 0.165076 0.074974 -0.150507 -0.254550 0.510979 -0.136720 -0.050588 -0.008134 0.204953 0.150328 -0.779434 -0.126464 -0.237238 0.649986 -0.617990 0.152584 -0.174951 -0.350009 0.052612 -0.011076 0.134746 0.400254 0.462433 0.417972 -0.287600 0.230043 -0.716815 0.176130 0.598809 0.330096 -0.389780 0.389979 -0.297958 -0.108153 0.281130 0.464160 0.285220 -0.340256 -0.019542 -0.042112 0.389002 0.154339 0.483936 -0.374489 0.254421 -0.226278 0.063800 0.578795 0.002437 0.969044 -0.280028 -0.589260 0.412451 0.449238 0.169044 0.086387 0.129227 -0.362966 -0.242876 -0.355347 0.336801 0.401702 -0.568293 -0.106129 0.029876 -0.312981 0.290433 -0.073392 -0.415263 0.213260 -0.563067 0.736495 0.792972 0.184382 0.131189 -0.165284 -0.562128 -0.094819 -0.581583 0.037282 0.001892 -0.066936 0.098354 -0.369839 -0.337195 0.696714 0.057882 0.030985 -0.841988 0.263915 0.357573 0.154991 -0.217580 -0.561607 -0.097729 0.434274 0.136339 -0.013695 -0.228838 0.202328 0.305802 -0.461506 -0.088531 0.652673 0.573358 0.406100 0.183512 -0.480261 0.504703 -0.052698 0.452648 0.227816 0.160586 -0.289062 0.006323 -0.171851 0.503198 -0.359493 0.062535 -0.391815 -0.159661 0.380402 0.012553 -0.585462 -0.031181 0.399169 0.285636 0.061753 -0.506697 0.090202 -0.069460 -0.313036 0.305948 0.273424 -0.096298 -0.243471 0.325876 0.311388 -0.156763 0.255208 0.110177 0.210210 0.466209 -0.494767 0.202200 0.032030 0.450526 -0.266168 -0.605440 0.240162 0.050658 0.010757 0.337591 -0.896159 -0.470802 -0.158002 0.334326 -0.688837 0.576465 -0.146262 0.533538 -0.009232 -0.053727 0.339903 -0.061169 -0.029862 -0.090667 0.065636 -0.090556 0.454113 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -1.570166 0.971785 -0.230948 -1.628563 3.885426 -0.905169 0.204320 2.374029 -0.769292 2.033623 -1.748503 1.118887 -0.219647 -2.345789 0.258263 0.043932 0.270853 1.758249 -0.721326 0.730901 1.128411 -0.180087 0.671891 -0.852826 -0.929411 -2.133870 0.071944 0.778955 0.580503 -0.219629 -0.148303 0.325752 2.628893 -0.547910 1.718936 1.583684 1.458317 2.159123 0.972021 -0.576061 0.873532 0.779943 -0.718030 -2.431317 0.639164 -0.827370 -2.071753 -1.232995 1.172441 -2.480372 0.873433 1.640417 0.104899 -0.709354 -1.539514 1.608397 1.574236 -0.880538 2.320888 0.661299 -1.771991 -0.821957 -1.483667 2.417903 -1.606695 0.717429 -0.115048 -2.221978 -0.693378 1.700360 0.647971 -1.414215 -1.467410 0.428114 0.647390 -1.712914 0.617638 -0.571973 0.433523 -1.623766 -1.067478 0.760133 -0.811825 1.590357 0.075537 0.653175 -0.691642 0.354958 0.199413 -2.048940 -0.449184 2.038646 -1.038431 0.387630 -1.763481 1.099543 0.608388 -0.863642 -0.875800 -1.420308 0.589891 -0.006026 0.943694 -1.010568 0.177478 -1.440977 0.471170 0.781291 0.356758 1.453525 -0.304976 0.868793 0.521688 1.179386 -0.570554 0.719192 -3.212364 0.933155 -0.511303 0.360034 -0.858478 0.381297 1.414320 0.828784 1.508243 -2.510110 2.341199 0.386833 -0.586216 -1.588351 0.870890 0.277413 -0.671539 -0.446759 1.448917 -0.383200 -0.252085 -0.121980 1.003127 -0.048887 -1.742090 -1.343853 -0.414726 1.654209 -2.337095 0.734000 -0.511460 -0.750613 0.021342 0.736293 1.108278 0.995918 2.648376 1.662955 -0.283883 1.407747 -2.534669 0.683660 2.761868 1.528027 -1.716657 1.729182 -1.357889 -0.291099 0.784416 1.191848 0.706611 1.103652 -1.439381 -1.206409 0.654551 -0.148084 2.381155 0.828266 0.612684 -2.441913 0.941185 -0.534869 0.368545 3.145952 1.473112 -2.703797 1.068841 1.969123 -0.952883 -1.014480 0.657460 -1.430557 -1.048032 -0.716319 0.734569 1.355773 -1.663508 -1.764730 -0.159093 -1.673186 1.855741 -0.330377 -1.007882 0.405457 -1.842961 -0.068571 2.521583 0.493122 -0.485057 -0.752298 -1.654356 -1.181130 -2.751148 0.404652 1.006314 -0.868068 -0.728993 -1.682658 -0.710089 1.803824 -0.466994 0.373129 -3.033474 -0.083412 1.527692 0.605760 0.487980 -2.283961 -0.313613 -0.043145 -0.014563 0.509804 -0.900599 0.945136 2.138364 -1.595992 1.378327 0.838222 -0.549473 0.725898 1.744766 -1.773328 2.663917 0.117115 2.101392 0.543602 0.960662 -1.023000 0.426186 -0.472016 -0.248492 -0.582422 1.083522 -1.991020 -0.871408 0.907759 -1.014371 -1.667288 0.654253 1.738323 0.470779 0.213207 -0.341775 -0.615939 -0.696394 -1.473896 0.438594 1.373320 -1.004331 -1.848150 0.841856 1.490559 -1.358345 -0.792820 0.508515 1.272674 1.900461 -2.218818 1.477699 0.048614 0.443371 -2.769927 -2.156352 0.994625 -1.193994 -1.284660 0.610949 -2.902721 -1.574784 -1.076759 1.478666 -2.412795 -0.300969 0.382700 2.348275 0.291301 -0.105485 1.586739 -0.449149 0.908082 -0.109891 0.273447 0.242340 1.678947 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -4.048707 2.376484 -1.139255 -4.936796 10.086576 -1.174268 0.054099 5.318624 -1.990422 5.482598 -4.531188 2.287767 -0.811862 -6.850963 0.495113 -0.210549 0.237801 3.828984 -2.214018 2.397285 3.104397 -1.418051 2.561374 -2.239779 -2.526165 -5.580542 0.159504 2.178471 2.388148 -0.344436 -0.110192 -0.340845 6.168839 -1.596250 3.534665 3.326255 3.761929 5.666607 1.849277 -2.069941 1.789474 2.307474 -2.108927 -6.429240 1.887179 -2.662147 -5.823176 -3.219437 3.423697 -6.759044 0.700826 4.581389 0.249340 -2.639365 -4.244474 4.218786 4.719712 -2.194030 6.278148 1.506061 -3.636085 -3.230611 -4.491932 4.975378 -4.240545 2.142583 -0.107342 -5.326177 -2.282117 4.230538 0.183008 -2.742853 -3.954734 1.162458 2.673459 -4.575708 1.581068 -2.164072 0.261322 -4.236871 -2.248384 1.860152 -2.408005 4.564003 0.242928 2.094314 0.127310 1.209632 0.346043 -5.679935 -0.999563 4.987927 -2.098737 0.293694 -3.978432 3.622664 0.825390 -2.340174 -3.270647 -2.776932 1.369346 0.697009 2.692118 -3.565749 0.194506 -4.755907 1.516792 2.267841 1.133064 3.152352 0.031287 1.285779 0.547583 3.569162 -2.757626 2.025998 -8.022349 1.440010 -1.347989 1.782928 -2.847153 1.438504 3.862774 2.140325 3.987133 -6.787624 6.655537 1.214553 -1.880393 -4.348680 2.460193 0.782848 -1.615265 -0.427134 3.485258 -1.746640 -0.729460 -0.413460 2.950025 -0.073478 -4.972207 -2.094451 -0.769417 4.308775 -6.163612 2.145003 -1.253856 -2.217813 0.501307 1.897542 3.052562 2.271614 7.350615 4.358958 -0.925846 4.848910 -6.027500 2.460612 7.952417 3.810868 -4.559583 4.244115 -3.630117 -0.299809 1.805830 2.679609 2.409783 3.521155 -3.804595 -2.866450 1.989221 -0.229880 6.312258 2.080165 2.046132 -7.004061 2.803475 -1.287190 1.966187 7.765588 4.273231 -6.849381 3.359998 4.933088 -3.650128 -2.069018 1.330166 -3.039541 -1.920995 -2.054417 1.942206 3.646360 -4.058516 -5.564819 -1.633460 -4.384773 5.148877 -1.041356 -2.320879 1.467029 -4.534810 -0.147158 5.783105 1.052737 -2.010687 -2.444447 -4.194724 -3.984309 -7.143888 1.503472 2.440733 -3.015254 -1.988643 -4.529651 -2.084974 4.620791 -0.852275 0.510399 -8.798682 0.224909 3.920633 2.398501 2.146161 -4.624921 -0.593993 0.048887 -0.480781 1.600660 -2.299705 2.308550 5.380606 -4.568282 3.829323 0.234622 -1.455133 2.227036 4.797142 -4.266847 7.351900 0.652409 6.393080 0.569746 2.779036 -2.022192 2.033397 -1.007904 -1.961180 -0.446401 2.914572 -5.303336 -2.775902 2.934660 -2.431860 -4.730474 1.785924 4.539773 1.484262 0.854131 -0.727688 -1.558265 -1.772398 -2.749471 0.949452 3.765140 -2.565460 -4.938182 1.466929 4.133330 -2.530975 -2.571885 1.514106 3.371298 5.151585 -5.878017 4.035867 -0.330904 0.853592 -6.969231 -5.283958 2.598849 -2.580451 -2.737682 2.725348 -7.492819 -3.300307 -3.087571 3.912108 -5.489745 -0.404120 0.691619 5.777458 0.896321 -0.291093 4.231082 -1.001415 2.629734 -0.595028 0.452391 1.321369 4.064507 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.437871 0.306774 -0.119390 -0.179851 0.875128 -0.244496 0.047882 0.768822 -0.546503 0.716314 -0.270189 0.288471 -0.090189 -0.564592 0.059878 0.419509 0.135831 0.349343 0.088746 0.296165 0.284113 -0.348613 0.066120 -0.043282 -0.273027 -0.412789 0.123620 0.218289 0.543300 -0.321147 -0.262219 0.141967 0.727129 -0.055825 0.776887 0.542144 0.092978 0.465440 0.582019 -0.700711 -0.183523 0.311023 -0.360969 -0.553185 0.111051 -0.211285 -0.313944 -0.376468 0.288179 -0.237594 0.299331 0.503903 -0.141648 0.100708 -0.497659 0.345472 0.258076 -0.158502 0.838306 0.087489 -0.300781 -0.234510 -0.337020 0.599595 -0.246913 -0.209017 -0.207242 -0.499957 0.272153 0.098117 0.071343 -0.516091 0.022953 0.519556 0.023963 -0.593857 0.198318 -0.132042 -0.003810 -0.877952 -0.574098 0.190077 -0.180651 0.550728 0.017763 0.191415 -0.421731 0.279124 -0.137744 -0.861713 0.184273 0.416522 -0.428213 -0.007433 0.019892 0.654207 0.132652 0.069286 -0.243821 -0.236140 0.191933 -0.135523 0.280752 -0.425937 0.657692 -0.312818 0.044356 -0.226713 0.284439 0.369436 0.501450 0.252925 0.543349 0.628021 -0.160691 -0.066022 -0.727474 0.291607 -0.028583 0.052274 -0.146932 0.312701 0.345944 0.021925 0.667677 -0.928714 0.225606 0.084579 0.137406 -0.698839 0.070626 -0.265021 -0.192713 -0.291163 0.458611 -0.129247 -0.053752 -0.304408 0.201585 0.103624 -0.663756 -0.172529 0.054136 0.884951 -0.865590 0.164836 -0.160824 -0.218944 -0.046312 0.298687 0.435270 0.586056 0.733313 0.548284 -0.139298 0.223305 -0.796648 0.040832 0.653371 0.275859 -0.522715 0.660474 -0.489446 -0.247899 0.275376 0.507809 0.526264 -0.069897 -0.467466 -0.433958 0.675280 0.267564 0.757294 -0.172978 0.315522 -0.103120 0.480221 0.102769 -0.336396 0.789207 0.047077 -0.722602 0.405114 0.278474 -0.113062 0.059472 0.404995 -0.594006 -0.123556 -0.254855 0.033021 0.480068 -0.482230 -0.152191 0.062265 -0.538206 0.698374 -0.104995 0.010994 0.294452 -0.497390 0.416565 0.662245 0.255717 -0.060639 -0.387166 -0.535123 -0.630895 -0.583463 0.104994 0.051335 -0.136811 -0.190151 -0.637974 -0.278950 0.417356 0.202056 0.264624 -0.902497 0.065366 0.416920 0.135347 0.094095 -0.377490 -0.115821 0.163063 -0.087116 0.203308 -0.263293 0.675840 0.660865 -0.400516 0.327906 0.359597 0.358035 0.396296 0.209180 -0.781412 0.734335 0.003567 0.594047 0.163789 0.229908 -0.372418 0.055089 -0.051820 0.178245 -0.128118 0.143783 -0.270218 -0.215911 0.128870 -0.417114 -0.490517 -0.181481 0.226276 0.073506 0.169373 -0.201960 -0.291611 -0.241564 -0.701000 0.226749 0.408131 -0.212795 -0.305177 0.495071 0.094620 0.056675 0.082311 0.077312 0.250241 0.384883 -0.702368 -0.020225 -0.052659 0.365543 -0.421575 -0.664781 0.136216 -0.190397 -0.323047 0.401898 -0.877144 -0.132452 -0.375341 0.045286 -1.017513 0.225809 0.007462 0.884553 0.015968 -0.292838 0.320753 -0.196838 0.263127 0.028055 0.157672 -0.096930 0.446363 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.830044 0.555929 -0.194544 -0.675882 1.900402 -0.528631 0.057458 1.240404 -0.447417 1.078077 -0.822302 0.467791 -0.114317 -1.252635 0.198347 0.065751 0.187933 0.943083 -0.164876 0.492936 0.605478 -0.311366 0.156161 -0.391638 -0.418369 -1.059071 0.053899 0.389971 0.502157 -0.230625 -0.196888 0.305255 1.413394 -0.211236 1.090611 1.012359 0.641614 1.069970 0.648504 -0.471010 0.224020 0.484956 -0.425586 -1.208680 0.301607 -0.382701 -0.947846 -0.579162 0.542296 -0.981413 0.523930 0.891865 -0.056234 -0.162552 -0.876592 0.772334 0.745883 -0.211024 1.271214 0.352058 -0.790950 -0.421141 -0.768724 1.304939 -0.758537 0.124424 -0.088349 -1.147535 -0.004908 0.655765 0.308864 -0.771723 -0.597537 0.472711 0.294651 -0.938733 0.392300 -0.277011 -0.037541 -0.934872 -0.724817 0.355809 -0.471531 0.948129 0.006727 0.313888 -0.522854 0.239734 0.027007 -1.188862 -0.136546 1.036099 -0.628138 0.233109 -0.800412 0.796850 0.543302 -0.256385 -0.440326 -0.698424 0.349177 -0.137390 0.516129 -0.480678 0.226796 -0.695834 0.229496 0.119084 0.253858 0.918796 0.058337 0.556788 0.518905 0.728741 -0.365313 0.161482 -1.502294 0.493634 -0.296438 0.164224 -0.342693 0.287012 0.675445 0.356940 0.899237 -1.372405 0.961808 0.197379 -0.066196 -0.916991 0.393527 -0.098055 -0.391351 -0.421592 0.808801 -0.116556 -0.142526 -0.177555 0.436542 0.109908 -0.941620 -0.633693 -0.150200 1.026206 -1.197186 0.333832 -0.316194 -0.425223 -0.048107 0.367269 0.628279 0.729116 1.288101 0.941256 -0.133443 0.667166 -1.386135 0.268556 1.415793 0.706861 -0.947538 0.985605 -0.699209 -0.231721 0.436032 0.713861 0.539639 0.450672 -0.761653 -0.729912 0.393611 0.034239 1.203623 0.336502 0.222827 -0.971303 0.646552 -0.119663 -0.224860 1.688261 0.550416 -1.317687 0.549711 0.895961 -0.620526 -0.405385 0.419926 -0.806686 -0.348020 -0.474654 0.357502 0.745947 -0.897637 -0.709275 0.005352 -0.914990 0.994085 -0.176794 -0.346248 0.199527 -0.982548 -0.038456 1.432847 0.260351 -0.212655 -0.487631 -0.888523 -0.700556 -1.313840 0.167723 0.313664 -0.417811 -0.433067 -0.955997 -0.422429 1.014318 -0.151465 0.282525 -1.605096 -0.077132 0.751807 0.323296 0.196294 -1.080632 -0.242045 0.008244 0.033652 0.268327 -0.414297 0.657192 1.258444 -0.768104 0.617472 0.474771 -0.183919 0.511622 0.831906 -1.134334 1.369456 0.021774 0.982614 0.324908 0.468102 -0.633903 0.074315 -0.149940 0.040763 -0.336000 0.503434 -0.821625 -0.366765 0.471042 -0.604152 -0.836092 0.191193 0.756535 0.291823 0.165436 -0.198081 -0.425061 -0.397672 -0.833011 0.248006 0.724350 -0.372537 -0.731886 0.599755 0.545988 -0.458032 -0.269093 0.217848 0.547507 0.934243 -1.218397 0.570458 0.021592 0.277678 -1.180067 -1.196419 0.359448 -0.603829 -0.674212 0.417554 -1.590678 -0.673640 -0.573487 0.558745 -1.323049 -0.092068 0.179233 1.355886 0.192814 -0.197159 0.774675 -0.313273 0.530090 -0.054768 0.190086 -0.006481 0.939477 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.495859 0.242881 -0.794027 -0.314840 1.328621 -0.537855 -0.012854 0.930643 -0.485140 0.637051 -0.466264 0.508653 0.048213 -1.007416 0.216623 0.820337 0.397828 0.684293 0.004885 0.161710 0.313083 -0.266101 0.108752 -0.218797 -0.226965 -0.621754 0.199823 0.286774 0.346528 -0.428066 -0.505838 0.383974 1.007413 -0.103255 0.656002 0.601399 0.427533 0.611083 0.895911 -0.886370 0.247789 0.215949 -0.181266 -0.804703 0.215966 -0.176161 -0.537790 -0.346571 0.352146 -0.401649 0.604051 0.530457 0.002506 -0.065967 -0.810678 0.312197 0.635617 -0.398845 0.835393 0.245692 -0.477578 -0.447105 -0.094939 1.099763 -0.578406 -0.285965 0.044835 -0.671325 0.040753 0.642429 0.368505 -0.708528 -0.494926 0.134854 0.057306 -0.617757 0.251238 0.036269 0.587126 -0.948072 -0.637577 0.261074 -0.577510 0.687317 0.054887 0.171229 -0.578890 0.010996 0.140425 -0.669175 -0.072504 0.411300 -0.414630 0.295273 -0.287829 0.693776 0.343804 -0.308856 -0.278653 -0.682913 0.163393 -0.242951 0.293538 -0.101998 0.589404 -0.217408 0.067165 -0.172917 0.235298 0.770981 0.441652 0.266256 0.279858 0.320337 0.050732 -0.428212 -1.111756 0.380086 0.063449 -0.027623 -0.260252 0.085972 0.696773 -0.016782 0.538305 -1.003831 0.621879 0.228392 0.180364 -0.544702 0.217150 0.097121 -0.236022 -0.220701 0.607072 -0.202451 -0.007783 0.022957 0.341774 0.159498 -1.048594 -0.313038 -0.260789 1.071934 -1.113396 0.250920 -0.180806 -0.329424 0.004490 0.096166 0.320852 0.497656 0.792548 0.579127 -0.293858 0.733761 -1.013289 0.328392 1.053757 0.669187 -0.588172 0.612689 -0.569873 -0.155251 0.311874 0.547462 0.350270 -0.213629 -0.375742 -0.243950 0.649132 0.092803 0.773671 -0.282737 0.318823 -0.589897 0.333499 0.500571 0.059419 1.275856 -0.073540 -0.960754 0.737690 0.771994 -0.028843 0.081364 0.243029 -0.643374 -0.423234 -0.443096 0.386226 0.564247 -0.763910 -0.305193 -0.098618 -0.493834 0.546322 -0.054674 -0.484040 0.226668 -0.599904 0.683061 1.061635 0.228577 0.114851 -0.253522 -0.712766 -0.437369 -0.902505 0.025281 0.141434 -0.302270 0.020529 -0.607861 -0.522746 0.929453 -0.057402 0.100847 -1.465448 0.359483 0.536112 0.429807 -0.182699 -0.800107 -0.144289 0.437079 0.105994 -0.031799 -0.452390 0.435506 0.492253 -0.632016 0.208105 0.487500 0.448848 0.566832 0.353690 -0.646894 0.821144 0.044072 0.911999 0.353047 0.334463 -0.446279 0.076346 -0.277534 0.290167 -0.455779 0.220011 -0.724291 -0.262391 0.618769 -0.026207 -0.933240 0.084926 0.609434 0.410036 0.019111 -0.572749 0.085614 -0.165804 -0.530574 0.403587 0.384627 -0.332701 -0.442514 0.385009 0.585681 -0.282122 0.149527 0.192908 0.405913 0.664564 -0.757096 0.420662 0.021306 0.566237 -0.672667 -0.972312 0.435000 -0.078882 -0.215656 0.433100 -1.386226 -0.644723 -0.295625 0.465782 -1.143162 0.477927 -0.062567 0.866384 -0.145442 -0.065154 0.515048 -0.117102 0.000192 -0.179363 0.258303 -0.061422 0.548324 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.403491 0.311315 -0.029291 -0.398420 0.767257 -0.285001 -0.077326 0.489938 0.203301 0.478190 -0.521086 0.077133 -0.034994 -0.505540 0.052019 0.017918 0.023673 0.530444 -0.156678 0.095979 0.296446 -0.011981 0.108788 -0.302270 -0.168789 -0.522545 -0.042000 0.136774 -0.026914 -0.027525 -0.081754 0.112884 0.647023 -0.042536 0.480175 0.457815 0.261390 0.606212 0.278261 0.230970 0.255629 0.241549 -0.159755 -0.659935 0.202623 -0.211320 -0.310918 -0.397954 0.247932 -0.594073 0.602160 0.345510 0.030756 -0.188517 -0.402399 0.262988 0.318527 0.082860 0.557035 0.189216 -0.387094 0.099397 -0.357246 0.547999 -0.508885 0.256344 0.068305 -0.565663 -0.157357 0.393738 0.364178 -0.313445 -0.364450 0.057611 0.020397 -0.372796 0.168483 -0.149198 0.185029 -0.244607 -0.293692 0.189474 -0.154474 0.342789 -0.027726 0.101231 -0.419179 0.093309 0.129194 -0.393984 -0.205662 0.418388 -0.216512 0.199162 -0.161120 0.229316 0.286455 -0.226595 -0.026595 -0.240732 0.150953 0.001168 0.211058 0.140266 -0.037229 -0.264889 0.308978 0.293008 -0.062096 0.237188 -0.039558 0.304156 0.165039 0.210189 -0.020191 0.164494 -0.799821 0.211832 -0.069785 0.035161 -0.063307 0.068546 0.223999 0.110901 0.297179 -0.492045 0.581567 0.110757 -0.114705 -0.262461 0.250077 0.053929 -0.199047 -0.161294 0.320404 0.055190 -0.088040 0.002268 0.124725 -0.091156 -0.330835 -0.376539 -0.129297 0.342706 -0.326581 0.138808 -0.139242 -0.210889 -0.013508 0.122926 0.165563 0.175187 0.603244 0.399205 -0.050040 -0.087645 -0.547463 0.106004 0.613758 0.196342 -0.407677 0.356777 -0.155475 -0.074433 0.246531 0.278717 0.099960 0.318997 -0.251204 -0.308519 -0.140488 -0.187180 0.516633 0.242180 0.143057 -0.500589 0.273886 -0.010314 -0.001350 0.871303 0.300953 -0.583966 0.038436 0.497323 -0.316359 -0.326478 0.143086 -0.158144 -0.140880 -0.166967 0.176934 0.246156 -0.422189 -0.487594 -0.032332 -0.450276 0.460787 -0.045335 -0.136339 0.061669 -0.518981 0.048708 0.711300 0.168648 -0.135768 -0.116188 -0.328408 -0.157144 -0.668547 0.092021 0.273111 -0.197064 -0.164394 -0.342494 -0.030965 0.427014 -0.240846 0.027769 -0.392779 -0.171726 0.333469 -0.027350 0.040452 -0.566875 -0.127245 -0.023371 0.056658 0.179339 -0.079785 0.222169 0.627820 -0.323882 0.230838 0.579808 -0.006696 0.138658 0.523465 -0.405395 0.592035 -0.151549 0.156493 0.155545 0.226802 -0.244483 0.003659 -0.074973 0.002245 -0.148840 0.263675 -0.453645 -0.144539 0.180626 -0.321825 -0.200091 0.252790 0.402799 0.210719 0.024418 -0.019333 -0.229478 -0.106625 -0.304086 0.028986 0.348439 -0.034800 -0.516109 0.157734 0.338812 -0.397047 -0.315088 0.114741 0.204159 0.483587 -0.502607 0.417008 0.079497 0.005985 -0.646074 -0.349100 0.177749 -0.298947 -0.305718 0.070520 -0.654721 -0.417648 -0.238799 0.370705 -0.487504 -0.026804 0.029512 0.518715 0.226308 -0.044768 0.364854 -0.128402 0.281285 0.112766 -0.088327 -0.007660 0.516849 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.222480 -0.004206 -0.657701 -0.051703 0.614470 -0.342437 -0.136394 0.509358 -0.046092 0.276007 -0.186676 0.096640 0.037067 -0.502223 0.151889 0.700252 0.321131 0.369539 0.012805 -0.077133 0.137158 -0.078656 0.019016 -0.076209 -0.046385 -0.174217 0.077439 0.135856 0.126504 -0.331368 -0.528825 0.300142 0.550928 0.008785 0.387948 0.304281 0.234914 0.260714 0.583239 -0.443848 0.137861 0.104317 -0.076309 -0.391423 0.124324 -0.082177 -0.171216 -0.138372 0.166462 -0.014094 0.606030 0.236566 -0.003937 0.060185 -0.424344 0.012798 0.195185 -0.080852 0.417601 0.155453 -0.249274 -0.153982 0.069736 0.628598 -0.325875 -0.162784 0.017609 -0.366048 -0.014262 0.322206 0.330184 -0.460377 -0.282903 0.047159 -0.066255 -0.261939 0.181117 0.125583 0.699844 -0.515534 -0.484717 0.163973 -0.405897 0.353688 0.029385 0.045388 -0.475875 -0.039855 0.100324 -0.306677 0.007609 0.056383 -0.268520 0.285633 0.026635 0.271663 0.140837 -0.118477 -0.072780 -0.399454 0.072784 -0.192845 0.123039 0.220676 0.501367 0.042806 0.119868 -0.142864 0.152663 0.339700 0.476590 0.071763 0.194659 0.129468 0.204898 -0.455055 -0.518162 0.229114 0.075984 -0.086908 -0.103761 0.059634 0.421804 -0.143198 0.257839 -0.498619 0.221368 0.155157 0.139090 -0.173925 0.087615 0.007160 -0.168660 -0.124891 0.356275 -0.100785 0.001833 0.020761 0.165037 0.078559 -0.651833 -0.014654 -0.230619 0.493046 -0.516893 0.088893 -0.091687 -0.228615 -0.005971 0.034771 0.118964 0.310071 0.350476 0.274935 -0.264591 0.159995 -0.549057 0.204607 0.517064 0.196298 -0.295261 0.288525 -0.292616 -0.040360 0.196653 0.337859 0.167820 -0.280581 0.028902 0.071109 0.273868 0.126381 0.367296 -0.309976 0.240734 -0.140373 0.019175 0.420047 0.004261 0.730151 -0.218653 -0.480789 0.348294 0.412304 0.144397 0.161565 0.120488 -0.339429 -0.181699 -0.345388 0.249970 0.328990 -0.482711 -0.033919 0.051602 -0.230130 0.240877 0.007500 -0.277855 0.164895 -0.385762 0.648482 0.669907 0.146658 0.172031 -0.088865 -0.407691 -0.116999 -0.423065 -0.018199 0.023535 -0.098496 0.146158 -0.277887 -0.298712 0.594841 0.018195 0.063730 -0.681749 0.319642 0.259455 0.111176 -0.176333 -0.352223 -0.106305 0.333951 0.015545 -0.043236 -0.293022 0.136994 0.133027 -0.329285 0.008004 0.471026 0.444072 0.280538 0.067377 -0.294726 0.370725 -0.008903 0.310714 0.227409 0.195881 -0.257129 0.004093 -0.194580 0.313310 -0.325313 0.103174 -0.365176 -0.103984 0.382005 0.058382 -0.534370 -0.012217 0.292739 0.278782 -0.016026 -0.470662 0.079260 -0.028201 -0.221167 0.317818 0.175213 -0.113950 -0.174308 0.206897 0.289781 -0.150997 0.163857 0.121760 0.113754 0.402470 -0.366843 0.136680 0.090218 0.432897 -0.242977 -0.444007 0.122774 0.094007 0.066094 0.236939 -0.754785 -0.410351 -0.116961 0.206135 -0.522018 0.465510 -0.093631 0.445558 -0.048482 -0.084729 0.228610 0.000335 -0.113152 -0.076841 0.073544 -0.060893 0.256088 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.601809 1.128674 0.202358 -1.600503 3.274441 -0.547781 0.272162 1.003718 -0.564119 1.927028 -1.752103 0.069539 -0.684800 -2.652709 0.306231 -0.791362 0.038801 1.453791 -0.424249 1.167074 1.263020 -1.140822 0.681658 -0.949392 -0.660479 -2.248809 -0.201095 0.716923 1.075997 -0.058560 0.451286 0.121212 2.319848 -0.296487 1.401861 1.540328 0.703203 2.464569 0.501780 -0.778387 0.401436 1.199358 -0.866598 -2.646300 0.904461 -0.926141 -1.802320 -1.573790 1.188017 -2.212112 -0.106653 1.797245 -0.090790 -0.891222 -1.947233 1.213597 2.108007 0.090935 2.357457 0.612584 -0.703201 -0.592151 -1.824638 1.075003 -1.581406 0.458621 -0.041559 -2.020990 -0.292606 1.205030 -0.112243 -0.706823 -1.313974 0.590320 1.052146 -1.596962 0.559378 -0.736904 -1.370585 -1.460886 -1.202826 0.407086 -0.711228 1.941339 -0.133292 0.534497 0.193703 0.403286 0.332005 -1.987785 -0.551017 1.956910 -0.486650 -0.036559 -0.648898 1.793911 0.904639 -0.760368 -1.205524 -0.665478 0.444713 -0.041628 1.060366 -0.679273 -0.497181 -1.796418 0.611145 0.520608 0.262539 1.315756 0.420742 0.635524 0.250118 1.124217 -1.696953 0.764537 -2.664323 0.520486 -0.498232 0.609157 -0.664418 0.677646 0.831800 0.452330 1.412827 -2.508378 2.170617 0.423375 -0.282089 -1.572273 0.878505 0.084603 -0.689159 -0.441061 1.375724 -0.326740 -0.368800 -0.087461 0.616420 0.116280 -1.165725 -0.500710 -0.192606 2.167801 -1.892274 0.716201 -0.628730 -1.092754 0.106027 0.405984 0.923175 1.015689 2.557694 1.897071 -0.470859 1.467980 -2.174118 0.827777 3.027866 0.962239 -1.724817 1.423202 -0.852095 -0.111574 0.741725 0.911394 1.239187 1.262227 -1.419225 -1.273332 0.319622 -0.328090 2.186379 1.037324 0.654362 -2.516825 1.567005 -0.036321 0.258050 2.858596 1.231483 -2.281042 1.179221 1.810101 -2.448920 -0.972805 0.473639 -0.775253 -0.297131 -0.958019 0.767637 1.273364 -1.570826 -1.939679 -0.788724 -1.789395 1.833861 -0.406294 -0.350044 0.610747 -1.591703 -0.967638 2.268767 0.365378 -0.661333 -1.129688 -1.537656 -1.362980 -2.565103 0.690450 0.560741 -1.183021 -1.051863 -1.678422 -0.549793 1.793898 -0.419100 0.320279 -2.561346 -0.084705 1.222600 1.150110 0.792215 -1.453889 -0.462425 0.306956 -0.083563 0.556995 -0.244320 1.014630 2.268127 -1.730427 1.052515 0.115336 -0.566830 1.153457 1.875601 -1.677745 2.540938 -0.086812 2.423483 0.018820 1.015629 -0.686751 0.455721 0.142127 -0.856224 -0.238511 0.982793 -1.663454 -0.811903 1.266952 -1.123719 -1.493915 0.721153 1.485882 0.880041 0.374149 0.123910 -0.896712 -0.376008 -0.540629 0.241306 1.535890 -0.336674 -1.697907 0.485290 1.246599 -0.609064 -1.347860 0.524322 0.939360 1.699691 -2.214765 1.416887 -0.310534 0.014066 -1.989250 -1.891740 1.042986 -1.285612 -1.216926 1.467173 -2.663899 -0.575103 -1.262327 1.297719 -1.872555 -0.253687 -0.083450 2.054536 0.581128 -0.106799 1.559591 -0.402180 1.136528 -0.279043 -0.072985 0.419497 1.798367 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.023538 0.248238 -0.406263 -0.706135 2.684277 -0.716110 -0.051767 1.607552 -0.526924 1.553269 -0.651230 0.197925 -0.306904 -1.519482 0.361507 -0.254874 0.422285 1.114428 -0.197482 0.892634 0.709580 -0.482355 0.135693 -0.066519 -0.636048 -0.965039 -0.073923 0.784452 1.070570 -0.695648 -0.624239 0.543633 1.988247 -0.537273 1.747975 1.497019 0.903173 1.174762 0.734984 -1.195994 0.150901 0.542244 -0.635233 -1.177906 0.094726 -0.325577 -1.651957 -0.374748 0.813322 -0.727039 0.306147 1.328267 -0.250233 0.158378 -1.117557 1.371342 0.427717 0.101798 1.826461 0.356319 -1.116489 -0.707218 -1.327403 1.917259 -0.754334 -0.014180 -0.818701 -1.738567 0.221359 0.603008 0.001204 -1.242388 -0.718399 1.124007 0.720264 -1.372795 0.668839 -0.329474 -0.045918 -1.392862 -1.174733 0.568067 -0.863715 1.356317 0.061655 0.665000 -0.499382 0.507726 -0.428325 -1.995579 0.276450 1.443709 -1.201592 0.269863 -1.313053 1.061162 0.775223 -0.108251 -0.912797 -1.035384 0.458611 -0.588631 0.836240 -1.084118 0.826539 -0.862096 0.051085 -0.137361 0.918379 1.300313 0.318989 0.701614 1.196039 1.320857 -0.685584 -0.106464 -1.551397 0.619151 -0.949106 0.164246 -0.748439 0.838084 0.930272 0.845679 1.639695 -2.064976 0.838800 -0.000676 -0.015688 -1.301589 0.361515 -0.310310 -0.499782 -0.744100 1.245756 -0.377969 -0.179840 -0.495231 0.790691 0.518380 -1.154415 0.025914 0.039832 0.854243 -1.241742 0.499455 -0.394813 -0.659003 0.014719 0.712013 1.278251 1.545216 1.663781 1.356485 -0.143737 0.803361 -2.268965 0.354470 1.640739 0.284241 -1.316293 1.725527 -1.181828 -0.360383 0.495197 1.361567 1.050200 0.468080 -0.678733 -0.912384 0.500875 0.840220 1.569399 0.230829 -0.103046 -0.729304 0.435141 -0.681305 -0.598839 2.035385 0.711159 -1.645635 0.595834 0.988280 -0.931728 -0.506302 0.786347 -1.498021 -0.089135 -0.901349 0.483852 1.409539 -1.087662 -0.398500 0.456539 -1.086008 1.220297 -0.496000 -0.812223 0.295801 -1.438303 -0.277534 1.999942 0.156578 -0.046727 -0.805634 -1.551660 -0.916201 -1.644847 0.040438 0.028008 -0.387496 -0.537065 -1.434778 -0.792987 1.398288 0.318116 0.823263 -2.341909 0.142446 1.085520 0.502643 0.431359 -0.629127 -0.183367 -0.063390 -0.334071 0.181575 -0.872128 0.748122 1.544185 -0.920555 0.935556 -0.025876 -0.824840 0.768263 0.692585 -1.995423 2.113240 0.424638 1.192905 0.465586 0.431595 -0.854490 0.136505 -0.132850 0.171141 -0.530511 0.618478 -0.785741 -0.598453 0.527421 -0.800839 -1.370281 -0.324387 1.003734 -0.007709 0.496457 -0.258534 -0.839370 -0.858121 -1.246709 0.617512 0.766586 -0.546512 -0.277223 1.435763 0.429127 -0.219291 -0.058662 0.102149 0.678847 1.200809 -1.884763 0.229078 0.097082 0.711163 -1.173941 -1.679096 -0.089464 -0.844267 -0.560782 0.522995 -2.025825 -0.967470 -0.729357 0.426752 -1.160443 -0.199300 0.694567 2.199417 0.465677 -0.683479 0.894311 -0.589435 0.617466 -0.306611 0.281786 -0.025079 1.023688 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.314706 0.200740 -0.136927 -0.297531 0.738789 -0.248066 -0.101741 0.521495 0.083289 0.441260 -0.374842 0.172387 0.024155 -0.428559 0.068309 0.153489 0.053435 0.399632 -0.119895 0.017716 0.199135 0.012661 0.095132 -0.190183 -0.158320 -0.519905 0.018215 0.151259 0.074971 -0.078019 -0.182904 0.109311 0.543623 -0.129286 0.377368 0.358202 0.320987 0.371531 0.293967 -0.007689 0.243044 0.140483 -0.131530 -0.455239 0.089127 -0.135293 -0.329008 -0.226563 0.234669 -0.428305 0.385628 0.287758 0.011926 -0.134990 -0.315732 0.325222 0.197180 -0.071499 0.470325 0.130552 -0.348363 -0.092527 -0.258155 0.681540 -0.419883 0.127007 -0.066188 -0.473285 -0.146743 0.382922 0.154303 -0.213659 -0.212375 0.076276 0.048390 -0.346974 0.129648 -0.096460 0.345846 -0.260474 -0.232068 0.199930 -0.168672 0.284091 0.028350 0.115465 -0.287995 0.083891 0.073409 -0.361055 -0.116550 0.337755 -0.251012 0.121636 -0.156933 0.178703 0.265809 -0.204308 0.041831 -0.284241 0.105482 -0.048296 0.174776 -0.038414 0.201795 -0.198616 0.154106 0.165329 0.069551 0.281825 -0.083519 0.206484 0.124096 0.200314 0.057739 -0.009042 -0.659487 0.199323 -0.071818 0.014416 -0.127309 0.052495 0.318744 0.157271 0.295207 -0.460423 0.451675 0.068459 -0.034517 -0.216950 0.163849 0.069392 -0.139704 -0.104555 0.266555 -0.023946 -0.057101 0.003653 0.208099 -0.009070 -0.386833 -0.233682 -0.110696 0.277232 -0.402565 0.141937 -0.088261 -0.123989 -0.000394 0.127056 0.193195 0.198335 0.509101 0.327553 -0.043213 0.098192 -0.516702 0.130133 0.504129 0.129007 -0.317332 0.353001 -0.284542 -0.102117 0.176526 0.285067 0.075133 0.255108 -0.197664 -0.208257 0.009629 -0.063129 0.451833 0.080225 0.098399 -0.380164 0.154224 -0.047865 0.030058 0.693066 0.228333 -0.562137 0.177050 0.438774 -0.204971 -0.189030 0.147534 -0.259007 -0.147557 -0.195895 0.157839 0.292715 -0.362793 -0.307263 0.007909 -0.328324 0.375424 -0.041484 -0.192591 0.109545 -0.369417 0.154372 0.573069 0.162222 -0.036779 -0.130179 -0.321916 -0.239553 -0.547511 0.028858 0.198796 -0.185752 -0.061024 -0.313666 -0.140926 0.391298 -0.132322 0.086095 -0.595281 0.002684 0.303629 0.088640 -0.009328 -0.365110 -0.070624 0.005990 -0.023970 0.066201 -0.220496 0.196010 0.417134 -0.283747 0.274230 0.321615 -0.077909 0.138254 0.337944 -0.365791 0.512420 -0.013594 0.122158 0.196967 0.180049 -0.246233 0.048594 -0.133851 -0.063092 -0.165832 0.179109 -0.415749 -0.154785 0.197726 -0.212309 -0.288768 0.141061 0.365807 0.195055 0.018065 -0.116567 -0.148490 -0.118201 -0.326370 0.099329 0.240666 -0.111524 -0.367371 0.207882 0.326658 -0.345252 -0.259679 0.090959 0.201881 0.390548 -0.435895 0.319673 0.095431 0.152923 -0.567449 -0.347216 0.121923 -0.172830 -0.221231 0.020146 -0.630348 -0.410815 -0.185992 0.281698 -0.482843 -0.014304 0.078671 0.488334 0.084050 -0.063694 0.314030 -0.112288 0.130855 0.063232 0.001659 -0.007057 0.321667 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.276528 0.254863 -0.105588 -0.225019 0.455152 -0.217145 -0.072654 0.316982 0.073637 0.322719 -0.327891 0.029155 -0.062658 -0.481797 0.069228 0.095698 0.077633 0.367550 -0.011033 0.101243 0.219819 -0.177673 0.048543 -0.203026 -0.093661 -0.407051 0.034645 0.086717 0.057390 -0.019289 -0.050737 0.133328 0.463577 0.056580 0.327540 0.324960 0.076366 0.460324 0.335286 0.022449 0.078346 0.203122 -0.105554 -0.515144 0.188172 -0.150926 -0.122248 -0.303605 0.153655 -0.342794 0.353045 0.244369 0.020298 -0.086291 -0.405444 0.053661 0.308243 0.123282 0.406572 0.153434 -0.139657 -0.038810 -0.188159 0.247377 -0.368507 -0.023335 0.125586 -0.325611 0.031804 0.243595 0.158485 -0.142660 -0.185094 0.034038 0.013585 -0.267171 0.130263 -0.051640 -0.075126 -0.214763 -0.258659 0.101123 -0.142883 0.339664 -0.039746 0.048090 -0.259335 0.033799 0.114722 -0.277595 -0.129927 0.218287 -0.099311 0.115336 0.062030 0.375764 0.244039 -0.134572 -0.050354 -0.125491 0.107621 -0.027102 0.146825 0.115778 -0.082102 -0.187235 0.257192 0.047754 -0.059914 0.223619 0.176965 0.179453 0.084463 0.145570 -0.121311 0.031397 -0.560427 0.142347 0.033266 0.026241 -0.031789 0.041637 0.139967 -0.034564 0.192452 -0.401200 0.374360 0.146133 0.059472 -0.219780 0.175187 0.016650 -0.143237 -0.139675 0.270108 0.022408 -0.046312 0.006136 0.042466 -0.012997 -0.286309 -0.205638 -0.112293 0.480292 -0.317654 0.086969 -0.118031 -0.200792 -0.018129 0.004125 0.071752 0.148273 0.388684 0.287795 -0.105146 0.049225 -0.389478 0.095204 0.527111 0.194174 -0.284926 0.223277 -0.060452 -0.044569 0.177018 0.173014 0.166321 0.112543 -0.188660 -0.223438 -0.006270 -0.110049 0.356189 0.097450 0.156787 -0.336760 0.308589 0.204949 -0.014523 0.621308 0.092462 -0.367863 0.132500 0.339545 -0.357337 -0.102289 0.075678 -0.078883 -0.012900 -0.169682 0.134452 0.200219 -0.350353 -0.312620 -0.123427 -0.315501 0.305075 -0.026131 0.024663 0.062986 -0.336156 0.119378 0.502356 0.119380 -0.061077 -0.126170 -0.257133 -0.243194 -0.453611 0.067680 0.109619 -0.193534 -0.082000 -0.255383 -0.097586 0.361900 -0.144168 -0.037675 -0.360195 -0.035477 0.226243 0.085830 -0.024932 -0.337727 -0.112686 0.138186 0.051660 0.131969 -0.006301 0.238885 0.403667 -0.244316 0.122587 0.356590 0.180354 0.240082 0.333374 -0.285253 0.390151 -0.167419 0.225486 0.100154 0.170570 -0.159471 -0.014680 -0.031378 -0.004252 -0.123183 0.152855 -0.302550 -0.081682 0.240696 -0.189912 -0.185895 0.156302 0.262821 0.269641 0.013963 -0.024655 -0.128430 -0.021701 -0.160696 0.054784 0.255366 0.041860 -0.325586 0.088296 0.229292 -0.137582 -0.213947 0.091742 0.124540 0.317013 -0.342566 0.255984 0.021498 0.024483 -0.320176 -0.307434 0.181508 -0.148190 -0.195681 0.185732 -0.563625 -0.182218 -0.156302 0.262407 -0.441234 0.156064 -0.087972 0.344826 0.077302 -0.023683 0.242983 -0.059849 0.163429 0.037391 -0.022463 -0.025225 0.407027 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.403340 0.120765 -0.431556 -0.251301 1.123775 -0.413476 -0.028085 0.821902 -0.215884 0.554584 -0.388037 0.333021 -0.026271 -0.676985 0.150441 0.448478 0.291107 0.524443 -0.129357 -0.012943 0.233506 -0.019496 0.109655 -0.143371 -0.203967 -0.591606 0.072300 0.244888 0.195117 -0.235208 -0.370629 0.299862 0.871998 -0.154405 0.535570 0.450078 0.449007 0.495605 0.565491 -0.435227 0.316658 0.165490 -0.151571 -0.601690 0.126243 -0.173765 -0.498562 -0.225152 0.324910 -0.441792 0.437243 0.384430 0.033034 -0.029922 -0.498572 0.359764 0.357469 -0.296859 0.659278 0.193275 -0.542471 -0.326183 -0.179384 1.005487 -0.490855 -0.057675 -0.125175 -0.656689 -0.137078 0.544619 0.232638 -0.487602 -0.356578 0.085835 0.073648 -0.456530 0.209594 0.051963 0.578611 -0.605474 -0.476701 0.234905 -0.401600 0.463409 0.014628 0.120920 -0.392423 -0.008879 0.089372 -0.519865 -0.086567 0.443717 -0.406649 0.253191 -0.351363 0.292202 0.235251 -0.231505 -0.127601 -0.577126 0.103798 -0.170977 0.213033 -0.140660 0.408647 -0.148708 0.073086 -0.034046 0.220726 0.567823 0.116719 0.214215 0.186940 0.249203 0.067976 -0.200775 -0.895637 0.382625 -0.060785 -0.036844 -0.243362 0.073606 0.548221 0.118875 0.449307 -0.759708 0.510184 0.101903 0.038185 -0.356845 0.160444 0.106127 -0.226984 -0.155294 0.483693 -0.128725 -0.032822 -0.013738 0.319533 0.093003 -0.709896 -0.261676 -0.218927 0.558797 -0.797913 0.165278 -0.123392 -0.220993 -0.016215 0.164451 0.279134 0.382131 0.642616 0.445392 -0.192682 0.443162 -0.869093 0.255708 0.775649 0.362322 -0.457996 0.496633 -0.497390 -0.094030 0.281070 0.441876 0.196451 0.028119 -0.187077 -0.132855 0.302227 0.111595 0.658977 -0.045141 0.204298 -0.532514 0.100317 0.087389 0.109132 0.979990 0.135465 -0.835256 0.480985 0.602606 -0.071320 -0.058383 0.193191 -0.547992 -0.364359 -0.370890 0.286396 0.522172 -0.579172 -0.207761 0.086251 -0.388707 0.444692 -0.084591 -0.420268 0.194340 -0.539272 0.354159 0.842734 0.187382 0.141760 -0.174516 -0.570908 -0.334117 -0.774506 -0.005567 0.171838 -0.224438 0.004429 -0.469934 -0.347851 0.700779 -0.056378 0.175913 -1.099437 0.255266 0.440223 0.234965 -0.085416 -0.605160 -0.099507 0.197195 -0.042258 0.016456 -0.451447 0.246906 0.374631 -0.459512 0.340409 0.350894 0.052777 0.288133 0.262491 -0.503926 0.673951 0.039321 0.512143 0.278497 0.247576 -0.353437 0.055597 -0.268491 0.146583 -0.412065 0.216298 -0.604756 -0.201085 0.400097 -0.162016 -0.635645 0.082631 0.509063 0.287035 0.022984 -0.362749 -0.078256 -0.145067 -0.460986 0.292319 0.293038 -0.292661 -0.418031 0.358479 0.417645 -0.420701 -0.085798 0.113732 0.325453 0.515844 -0.594206 0.287842 0.117444 0.397603 -0.663177 -0.710989 0.217901 -0.159179 -0.249087 0.190459 -0.997695 -0.595135 -0.223506 0.389150 -0.822195 0.165868 0.066951 0.720835 -0.056543 -0.066820 0.425840 -0.062273 0.041052 -0.084552 0.165027 0.003334 0.379842 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.299657 0.109297 -0.564739 -0.162265 0.786216 -0.355887 -0.091072 0.595355 -0.180675 0.405473 -0.261094 0.243801 0.025610 -0.618670 0.144325 0.589315 0.270809 0.433342 0.006128 0.031819 0.187556 -0.149844 0.063799 -0.114684 -0.125602 -0.387699 0.124014 0.181354 0.205434 -0.289182 -0.401769 0.262104 0.635746 -0.055526 0.419902 0.367763 0.270418 0.357657 0.602704 -0.515054 0.154168 0.135296 -0.111877 -0.487911 0.134931 -0.104514 -0.285751 -0.198281 0.228670 -0.192841 0.457739 0.312910 -0.003167 -0.015524 -0.504639 0.157429 0.319894 -0.175091 0.523306 0.152820 -0.279405 -0.268518 -0.041931 0.719943 -0.396319 -0.194402 0.002762 -0.424413 0.011045 0.394420 0.220488 -0.409964 -0.271783 0.083669 0.010769 -0.373527 0.168622 0.050779 0.494157 -0.564578 -0.438632 0.175831 -0.384677 0.423205 0.031405 0.101596 -0.397434 0.007673 0.089797 -0.406439 -0.024221 0.196577 -0.276999 0.212643 -0.064626 0.408874 0.224255 -0.185581 -0.109505 -0.410248 0.091286 -0.175212 0.181030 0.020820 0.439805 -0.083676 0.086976 -0.130718 0.165865 0.445674 0.343536 0.136132 0.174730 0.198373 0.090697 -0.346943 -0.678768 0.243921 0.053371 -0.033926 -0.155540 0.067368 0.452857 -0.043147 0.335568 -0.620713 0.356563 0.142361 0.149351 -0.292161 0.128823 0.057740 -0.150285 -0.142444 0.391735 -0.130924 -0.014303 0.011680 0.220276 0.108784 -0.685087 -0.118922 -0.186926 0.627434 -0.657063 0.149738 -0.112976 -0.225330 0.010206 0.048469 0.184327 0.329716 0.476948 0.358285 -0.210206 0.364538 -0.641043 0.213502 0.637402 0.314071 -0.354905 0.377113 -0.356187 -0.094360 0.205967 0.364159 0.218485 -0.143594 -0.142042 -0.091667 0.353260 0.093840 0.474391 -0.229235 0.216785 -0.303617 0.152222 0.353437 0.037926 0.809641 -0.093158 -0.594588 0.446233 0.475741 -0.022885 0.086823 0.147356 -0.384953 -0.211031 -0.323986 0.251883 0.385590 -0.500546 -0.151402 -0.032111 -0.297859 0.331561 -0.033897 -0.287883 0.178732 -0.397401 0.529102 0.682619 0.164992 0.107607 -0.162020 -0.462020 -0.278640 -0.548306 0.004130 0.065501 -0.183063 0.065532 -0.368037 -0.339974 0.605630 -0.006993 0.067363 -0.901959 0.271010 0.332461 0.240620 -0.144372 -0.420253 -0.089008 0.307569 0.029419 -0.022803 -0.298308 0.248529 0.265695 -0.390076 0.120790 0.353400 0.326076 0.353867 0.182104 -0.400441 0.500659 0.010920 0.448677 0.236429 0.204089 -0.278538 0.048160 -0.187633 0.190048 -0.300261 0.118894 -0.442275 -0.161933 0.403769 -0.018306 -0.573797 0.025632 0.379081 0.301285 0.014457 -0.393632 0.039406 -0.083371 -0.313173 0.277450 0.229512 -0.160870 -0.257580 0.257310 0.355296 -0.177369 0.056481 0.120884 0.218012 0.422285 -0.465590 0.233336 0.049409 0.393413 -0.382551 -0.559469 0.216091 0.004436 -0.078335 0.259855 -0.876393 -0.417557 -0.168520 0.281165 -0.680296 0.368496 -0.059573 0.538753 -0.077052 -0.064539 0.315084 -0.058477 -0.034515 -0.086135 0.123183 -0.045638 0.332143 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -4.487993 3.330566 1.028802 -3.432826 9.581207 -1.247952 1.370708 3.532269 -5.447708 6.897608 -2.677466 0.117698 -1.848351 -7.786812 0.906073 -2.585435 -0.434567 3.001696 0.493528 5.278224 3.300679 -4.768586 1.094755 -0.435769 -2.665025 -5.364706 -0.547385 2.841100 7.360374 -3.808275 1.022571 0.147254 7.273252 -1.863514 6.939032 5.626578 1.742202 4.782651 2.147639 -7.464442 -2.156381 3.543902 -4.332954 -5.466760 0.625340 -1.539363 -5.796843 -3.038981 3.535599 -2.241553 -3.335245 6.494023 -2.100189 -0.347123 -5.148569 5.080516 3.223021 -0.513266 8.069407 0.661250 -1.228567 -2.683230 -6.617633 5.158413 -2.580967 -0.495837 -3.387905 -4.969482 2.139509 0.433571 -3.158040 -3.271200 -1.320877 6.377484 4.017347 -6.161414 1.224406 -3.084973 -6.604639 -6.796999 -5.125628 1.885265 -1.580048 6.178339 0.601213 2.680975 1.701548 3.716655 -1.915735 -9.504362 1.911162 6.697645 -3.307335 -2.458357 -1.751957 6.927383 1.879477 0.416650 -4.227497 -1.831525 1.856139 -1.751010 3.858269 -6.000202 4.109178 -6.255213 -1.273287 -1.549001 2.970942 4.914511 3.945713 1.785345 4.347837 6.859575 -5.724711 -0.446704 -6.282026 1.842963 -2.994487 2.050874 -2.195684 4.307849 2.305921 2.167786 6.871492 -9.918712 2.653527 0.261500 0.386765 -7.544638 0.694919 -2.638364 -1.621652 -2.445094 4.177309 -1.717395 -1.136718 -2.678743 2.088956 2.369674 -4.018791 -0.268686 1.867282 7.378521 -7.255135 2.425393 -1.681331 -2.633817 -0.172294 3.178387 5.598175 6.340881 8.561164 6.659933 -1.134250 5.478749 -7.541987 0.895393 7.229881 0.936499 -5.596793 7.142108 -5.664435 -2.606198 1.161850 5.380845 6.155856 2.198365 -5.948487 -5.102481 5.334702 2.387471 7.450749 -0.252517 0.954494 -2.668617 5.638574 -0.071139 -3.476851 7.434122 1.592949 -6.652255 4.886034 2.958903 -5.534060 -1.971783 4.142895 -6.079575 0.041232 -3.232471 0.905274 4.763564 -3.844429 -2.280678 -0.547936 -5.630200 6.747915 -1.847845 -1.388716 3.318873 -4.396894 -4.112953 6.304849 1.173288 -1.903961 -5.743292 -5.796051 -5.041098 -5.619504 2.382874 0.265336 -2.274445 -3.497704 -6.495256 -2.336952 4.632334 2.183287 4.189012 -9.676364 -0.060062 3.718946 4.567815 3.582554 -1.649316 -0.825409 0.991475 -0.895582 1.090003 -1.748704 5.520718 7.750230 -5.080867 3.642577 -2.291174 -2.896993 3.933931 3.144287 -8.486194 8.625756 1.874838 7.273188 0.125744 2.189623 -3.087505 1.428571 1.670268 -1.984820 0.439314 1.023270 -1.989713 -2.901316 1.393156 -4.109151 -5.550316 -1.706539 2.690678 -0.231630 2.591167 -0.771773 -3.248707 -2.418328 -3.573243 1.842259 4.765719 -1.442244 -1.998753 4.784439 1.327787 1.753962 -0.301691 0.745864 2.725353 3.864803 -8.014678 0.678222 -1.993030 2.808519 -4.143066 -7.245554 1.597086 -3.671876 -2.468163 4.292496 -7.545970 0.376090 -4.969907 0.261975 -6.975034 -0.810441 1.386545 8.663712 1.732889 -3.042883 3.517697 -2.619858 3.593077 -0.771255 0.599866 1.197131 4.180326 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -1.409307 0.962614 -0.049496 -0.956148 3.157118 -0.530787 0.274134 1.786751 -1.659615 2.164160 -0.888516 0.499839 -0.416817 -2.321723 0.280757 -0.202464 0.080410 1.117021 0.047428 1.272782 1.004402 -1.133674 0.315008 -0.180187 -0.813053 -1.836494 0.006637 0.817428 1.994619 -1.000051 -0.024742 0.197216 2.411948 -0.543894 2.150270 1.714148 0.862431 1.429602 0.981806 -2.043313 -0.468683 1.018501 -1.223640 -1.719006 0.257568 -0.554334 -1.739339 -0.829340 1.075202 -0.941276 -0.452521 1.859749 -0.543576 -0.019349 -1.443641 1.532692 0.989324 -0.523228 2.473705 0.268052 -0.798146 -1.089989 -1.714477 2.165906 -0.903305 -0.186463 -0.859073 -1.677644 0.486883 0.361920 -0.574914 -1.128140 -0.414096 1.787018 0.976710 -1.871287 0.472386 -0.759374 -1.168431 -2.132051 -1.577057 0.588267 -0.660743 1.817280 0.157173 0.746329 0.050955 0.949559 -0.479435 -2.815800 0.508003 1.998754 -1.195121 -0.369314 -0.908975 1.851292 0.584591 0.088478 -1.063421 -0.858886 0.559293 -0.467990 1.093883 -1.725291 1.336637 -1.640282 -0.276916 -0.502487 0.948814 1.691120 0.897969 0.638662 1.291555 2.012495 -1.305189 -0.166139 -2.139198 0.800850 -0.757534 0.532795 -0.667734 1.094224 1.043045 0.656524 2.083635 -2.977560 0.924323 0.140924 0.134209 -2.216543 0.260578 -0.752420 -0.543422 -0.766721 1.366679 -0.528021 -0.327604 -0.823701 0.770142 0.629597 -1.661727 -0.512987 0.298936 2.160893 -2.511329 0.688239 -0.527901 -0.734099 -0.073919 0.971146 1.601755 1.879681 2.533955 1.949547 -0.338659 1.762475 -2.437366 0.315965 2.292239 0.718203 -1.734781 2.139316 -1.827614 -0.766664 0.533119 1.612507 1.676730 0.631603 -1.682028 -1.421122 1.638483 0.717486 2.350074 0.014578 0.396663 -1.003773 1.490473 -0.039436 -0.963030 2.537387 0.527964 -2.254541 1.554703 0.987387 -1.291590 -0.424090 1.144535 -1.948124 -0.309647 -1.017895 0.350977 1.540015 -1.339668 -0.688178 0.051162 -1.710045 2.075097 -0.483830 -0.467509 0.971305 -1.505394 -0.681600 2.108039 0.483715 -0.457366 -1.571739 -1.771000 -1.612727 -1.852867 0.582838 0.169022 -0.680872 -0.906628 -1.998752 -0.856362 1.569301 0.600588 1.176011 -3.354959 0.070449 1.227560 1.128862 0.807140 -1.060016 -0.306930 0.209044 -0.223473 0.389678 -0.768663 1.639836 2.271568 -1.533522 1.197031 -0.285932 -0.644817 1.101692 0.927766 -2.529490 2.568067 0.471988 2.066812 0.263674 0.725882 -1.095172 0.384323 0.168714 -0.287989 -0.126555 0.431174 -0.838451 -0.837475 0.544439 -1.262008 -1.734929 -0.440748 0.877585 0.118595 0.675680 -0.504105 -0.935623 -0.757939 -1.362070 0.591541 1.424842 -0.625446 -0.799110 1.467990 0.448074 0.147154 -0.125746 0.267967 0.904338 1.267357 -2.398479 0.278005 -0.386393 0.919746 -1.531773 -2.316238 0.479376 -0.984210 -0.945869 1.162292 -2.600997 -0.262361 -1.407836 0.200001 -2.487331 -0.173537 0.395873 2.721793 0.314808 -0.824255 1.197890 -0.707087 1.008700 -0.175281 0.388162 0.236594 1.324084 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.855389 0.246475 -0.072575 -0.472641 1.754753 -0.338270 -0.044803 1.230058 -0.075453 1.032265 -0.683835 -0.164613 -0.367465 -1.007592 0.162886 0.015906 0.095440 0.837317 -0.410070 0.166108 0.733518 -0.002205 0.131125 -0.273707 -0.306635 -0.597876 -0.259831 0.295524 0.470733 -0.230779 -0.399261 0.244392 1.403179 -0.122524 1.220972 0.893559 0.801321 1.098943 0.155344 0.125199 0.000652 0.725078 -0.627948 -1.222458 0.484486 -0.611482 -0.811131 -0.517546 0.604734 -0.814633 0.900291 0.902114 -0.119555 0.031405 -0.413795 0.580950 0.338949 0.091294 1.271080 0.412150 -0.905073 -0.090801 -1.001604 1.190963 -0.629165 0.756594 -0.204590 -1.335353 -0.404332 0.243086 0.575086 -0.993988 -0.670763 0.681647 0.222557 -0.718048 0.516029 -0.256573 0.439086 -0.821191 -1.137085 0.259415 -0.503610 0.857438 -0.165802 0.152621 -0.538543 0.256786 -0.062904 -1.302727 -0.015317 1.070851 -0.785130 0.507300 -0.877389 0.078740 -0.013805 0.167702 -0.527948 -0.531900 0.357987 0.075709 0.506895 -0.128834 0.312433 -0.577453 0.435527 0.183264 0.316901 0.495728 0.390884 0.271317 0.566583 0.912304 -0.231176 0.263253 -1.196353 0.581144 -0.391648 0.349146 -0.229240 0.509085 0.648204 0.080542 0.934450 -1.309390 0.661677 0.060479 -0.375429 -0.854137 0.362572 -0.479098 -0.598359 -0.456411 0.897875 -0.041664 -0.376163 -0.424125 0.398585 0.006791 -0.960709 -0.525004 -0.227536 0.359341 -0.963559 0.136627 -0.423433 -0.608149 -0.125454 0.603945 0.644187 0.881846 1.296589 1.026524 -0.247698 -0.015193 -1.324605 0.256716 1.261961 0.284167 -1.078486 0.857835 -0.771343 -0.003989 0.588983 0.700546 0.584125 0.663745 -0.260840 -0.248397 0.069785 0.249253 1.335132 0.569870 0.488107 -0.772281 0.173964 -0.386198 -0.449234 1.706042 0.602621 -1.357610 0.252911 0.526252 -0.279271 -0.419395 0.409715 -0.769915 -0.300751 -0.625829 0.345475 0.790436 -0.954927 -0.603895 0.484902 -1.051972 1.141726 -0.204012 -0.146625 0.438469 -1.374965 -0.144811 1.472853 0.303377 -0.333834 -0.585471 -0.824111 -0.413354 -1.112327 0.400660 0.330566 -0.149148 -0.649885 -0.961856 -0.156179 1.107823 0.078263 0.462918 -1.033338 -0.159707 0.608789 -0.298022 0.613444 -1.151708 -0.349048 -0.282097 -0.123282 0.578966 -0.364735 0.296331 1.375806 -0.856506 0.568386 0.860442 -0.207520 0.013890 0.739311 -1.033152 1.263194 -0.006142 0.545877 0.011991 0.562733 -0.634249 0.063708 -0.043956 0.384628 -0.175061 0.600398 -0.488085 -0.282351 0.164953 -1.022460 -0.533614 0.076122 0.472844 0.167888 0.262622 -0.327047 -0.695384 -0.307074 -0.629919 0.164396 0.960924 -0.307428 -0.806074 0.521253 0.006646 -0.575685 -0.245023 0.291095 0.294613 1.054666 -1.183626 0.172787 0.112920 0.149257 -1.116983 -0.896573 -0.179328 -0.591130 -0.527628 0.553808 -1.158469 -0.441032 -0.697129 0.357671 -1.018389 -0.232716 0.043454 1.328737 0.582831 -0.263280 0.820125 -0.089754 0.794105 0.140882 -0.159362 0.192945 0.919790 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -4.474888 4.756928 2.168791 -3.419677 9.140490 -1.377312 1.420505 4.256650 -6.076608 7.061067 -2.751502 1.499574 -1.269276 -7.742440 0.592959 -3.316095 -0.900066 3.371259 1.107324 5.624237 3.079638 -4.714598 0.570880 -0.323324 -3.225968 -6.065647 -0.319105 2.754979 6.983937 -4.212223 2.308752 0.277636 7.619403 -1.691979 7.718466 6.158477 1.614542 4.716787 2.999191 -6.323829 -2.541890 3.104267 -4.346368 -5.247273 0.324199 -1.252733 -5.349357 -2.809507 2.943831 -2.354960 -3.043011 6.272784 -2.064620 0.155059 -4.981631 5.091642 2.804995 -1.136512 8.071372 0.527937 -1.890831 -2.672211 -6.567774 5.757117 -2.509057 -0.997199 -3.018856 -4.550352 3.297704 0.200606 -2.766584 -3.501289 -0.837618 6.892981 3.459767 -6.577963 0.766865 -3.384702 -8.689725 -6.490166 -4.535174 2.240912 -0.492125 5.808009 0.943092 2.812149 1.111613 4.154234 -2.461025 -9.868776 2.074163 7.267825 -3.570449 -2.398302 -2.414112 7.507699 2.011987 0.806432 -3.655527 -1.850123 2.301316 -1.645097 3.661752 -6.746967 3.310629 -6.780056 -1.310959 -2.067956 2.001555 4.924134 3.267817 2.681472 5.248720 7.364119 -5.952504 -0.128191 -6.921728 2.190686 -2.608939 1.752825 -1.928863 3.821961 1.241921 2.657941 7.118829 -9.989348 2.414321 0.110679 0.456557 -8.517385 0.337081 -2.967428 -1.426005 -2.835141 3.883902 -1.191002 -0.889640 -3.101007 1.348560 2.333437 -3.819339 -2.821507 2.523492 8.293523 -7.505142 2.375937 -1.511714 -2.000157 -0.852906 3.439262 6.002268 6.364647 8.635579 6.387327 -0.206743 5.893534 -7.612036 -0.283334 6.721882 2.476204 -5.690083 7.712555 -5.789832 -3.425382 0.989011 5.579767 5.933674 1.980634 -7.450587 -6.668089 6.194942 2.214447 7.484972 -0.169501 0.324648 -1.999388 6.834987 0.597667 -4.601255 7.840047 1.420678 -6.485903 4.772888 2.519985 -4.835091 -2.256716 4.915911 -6.667037 -0.304237 -2.178104 0.057043 4.222847 -3.447915 -1.967440 -0.296740 -5.785019 7.092061 -1.754942 -0.871692 2.859160 -4.382182 -5.553917 6.189386 1.068480 -2.081524 -5.585881 -5.462800 -4.932388 -5.342110 2.044112 0.971677 -2.362663 -3.664995 -6.633119 -1.809330 4.049992 1.897151 4.457206 -9.489030 -1.546198 3.899154 4.199356 3.145493 -2.856455 -0.635507 0.513892 -0.052916 1.305870 -1.374602 6.848112 8.578472 -4.344448 4.243065 -1.936405 -3.238570 3.881867 3.204174 -9.045997 8.649702 1.401177 6.866413 0.674436 1.796089 -3.419983 0.892413 1.811997 -1.450066 0.562844 0.629450 -1.524218 -2.681862 0.358653 -4.667072 -4.707049 -1.874015 2.429233 -0.821847 2.480510 -0.238513 -3.058043 -2.822460 -4.480865 1.454897 4.609094 -1.419901 -1.900921 5.450795 0.895830 1.987103 0.575674 0.409301 3.148583 3.242586 -7.947820 0.397823 -2.057025 2.305731 -4.706095 -7.882483 1.796265 -4.425794 -3.184146 2.934406 -7.822037 0.434238 -4.832136 -0.165731 -7.900677 -1.000886 1.948098 9.093905 1.580656 -3.368156 3.168502 -3.190291 4.056250 -0.252483 1.196652 0.822539 4.723478 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -1.427934 0.886172 0.221000 -0.915146 2.816721 -0.664264 0.188102 1.569407 -0.969738 1.919496 -0.978427 0.073061 -0.649219 -2.188620 0.253384 -0.522055 0.077296 1.315539 -0.137227 1.028514 1.135424 -0.828942 0.240803 -0.309155 -0.727121 -1.498338 -0.184619 0.677003 1.421724 -0.857217 0.068013 0.352941 2.427904 -0.295222 2.153222 1.704908 0.826629 1.822462 0.711212 -0.983755 -0.370807 1.122046 -1.122328 -1.973800 0.551580 -0.665060 -1.417414 -0.924795 1.016246 -1.051843 0.213020 1.729597 -0.391005 0.011588 -1.323932 1.178522 0.865757 0.007684 2.320183 0.444171 -0.932846 -0.532022 -1.799012 1.713379 -1.057546 0.305798 -0.548601 -1.759373 0.225994 0.308832 -0.024284 -1.316346 -0.748736 1.491520 0.737482 -1.623997 0.519542 -0.631930 -1.135098 -1.646916 -1.744623 0.492246 -0.528586 1.668827 -0.028219 0.563974 -0.218157 0.794638 -0.311267 -2.535530 0.277321 1.943554 -1.121205 0.077464 -0.926498 1.396333 0.345135 0.111730 -1.054074 -0.721637 0.613952 -0.300646 1.034107 -1.081671 0.587370 -1.497590 0.248943 -0.261025 0.522136 1.176498 0.984130 0.610039 1.147119 1.783569 -1.172691 0.161342 -2.226553 0.813590 -0.621888 0.507658 -0.473932 0.999365 0.661871 0.360952 1.829106 -2.709355 1.016485 0.103621 -0.137434 -2.009035 0.417871 -0.699151 -0.667682 -0.851719 1.481919 -0.271613 -0.446578 -0.736052 0.539202 0.409215 -1.384455 -0.787605 0.123040 1.779972 -1.942277 0.528037 -0.648671 -0.954923 -0.174485 0.853627 1.331051 1.704435 2.375059 1.886120 -0.347763 1.012441 -2.331763 0.203604 2.144188 0.654917 -1.772811 1.854924 -1.417491 -0.493694 0.653655 1.438776 1.482168 0.760025 -1.308762 -1.223042 1.042276 0.518179 2.222661 0.373663 0.502904 -1.046300 1.207301 -0.015936 -0.916982 2.677232 0.641835 -2.141405 1.071794 0.944217 -1.129246 -0.727437 1.017853 -1.568727 -0.225910 -0.931619 0.391967 1.354343 -1.440384 -0.827960 0.219494 -1.752980 1.952256 -0.457872 -0.275616 0.853673 -1.871558 -0.967979 2.200899 0.386220 -0.529597 -1.387813 -1.667817 -1.178254 -1.864599 0.669709 0.359781 -0.538894 -1.059416 -1.811467 -0.472684 1.638899 0.362754 0.999423 -2.350631 -0.283743 1.144050 0.593647 0.931032 -1.321349 -0.401885 0.086908 -0.083916 0.672613 -0.420721 1.262568 2.390545 -1.469344 1.080074 0.382039 -0.579608 0.782849 1.141321 -2.247083 2.378320 0.147160 1.673173 0.109647 0.737280 -1.026899 0.213315 0.285117 0.090114 -0.128613 0.547660 -0.730498 -0.679019 0.312950 -1.498841 -1.236685 -0.199153 0.868360 0.157770 0.598718 -0.266678 -0.950093 -0.631851 -1.134825 0.417278 1.523347 -0.381674 -0.969284 1.238460 0.254765 -0.168399 -0.150957 0.339450 0.738284 1.389694 -2.223060 0.281408 -0.274355 0.451818 -1.547565 -2.038008 0.272221 -1.169492 -0.900849 1.037676 -2.291857 -0.274694 -1.274434 0.448203 -2.097331 -0.144390 0.178266 2.428849 0.685247 -0.611257 1.240593 -0.526602 1.190481 -0.007097 0.021279 0.277560 1.602653 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -7.256817 8.614345 5.308352 -5.318715 14.284765 1.118151 -0.346140 6.232782 -9.222616 13.874486 -4.639401 0.456202 -3.067638 -11.651889 -0.073017 -6.885973 -3.832181 2.852308 1.208209 9.045426 5.130275 -8.906423 0.850328 0.134694 -5.924183 -9.997802 -1.698380 4.172782 14.258134 -8.419562 2.092363 -1.539757 12.207679 -3.194233 11.854016 9.713529 3.577441 8.274420 2.866014 -8.619826 -6.732846 6.123071 -8.981882 -5.960276 0.586116 -3.928724 -8.237717 -3.112347 4.646592 -1.026757 -4.321742 11.227781 -4.306719 0.362347 -7.577185 10.457086 2.081615 -0.286919 15.374210 0.176998 -0.926433 -5.403008 -14.316104 8.801641 -3.967077 0.727691 -6.200161 -6.097589 5.711217 -3.078895 -4.245031 -6.496845 -0.635043 14.710562 5.731311 -11.670988 0.495392 -7.554198 -18.568947 -10.917739 -9.100614 3.891806 0.836942 9.179732 2.097078 5.013138 3.031564 9.689168 -5.835508 -19.140657 4.809585 12.888753 -6.260482 -4.430481 -5.276854 12.545997 0.819192 3.561192 -7.189014 0.205220 4.239900 -1.005912 6.230502 -16.444069 7.694305 -14.883167 0.319277 -3.355849 3.150691 3.050733 7.585034 2.293576 10.309851 15.429742 -11.668648 -1.182178 -10.658529 0.932846 -1.517577 3.585839 -3.417310 8.114706 -1.612014 4.060048 13.886934 -18.653010 2.359272 -1.622211 -2.524937 -16.176010 -0.847802 -7.261864 -2.686198 -4.345806 5.609579 -1.533592 -1.819790 -7.016953 2.388923 3.406400 -7.220247 -4.745777 7.059303 14.808371 -11.695819 3.376113 -2.536648 -3.286012 -2.335821 7.756250 11.906504 11.384299 15.741623 10.608494 1.400426 7.759288 -12.038686 -1.585198 10.099287 3.933727 -10.961078 14.054256 -10.804475 -5.219210 0.678822 10.173709 10.719495 4.704730 -13.074616 -12.691360 10.057194 4.843513 13.279840 -0.737124 1.028180 1.724308 12.674726 -0.840315 -10.480363 11.492940 4.352020 -8.430575 5.568084 1.853309 -6.794485 -3.584653 10.341515 -11.245961 2.328324 -2.920513 -1.859913 6.817369 -4.183077 -2.114853 -0.057204 -10.501449 14.827880 -2.885642 1.765027 6.409418 -8.187635 -12.588987 7.699019 -0.716679 -5.010334 -10.741246 -8.633620 -10.790857 -7.387594 4.354265 1.780044 -4.311202 -8.117832 -12.334505 -1.180492 6.411755 4.558523 8.420118 -15.069229 -5.490175 5.914967 5.387639 9.463651 -0.852786 -0.888986 -0.572850 -0.565100 4.473295 -2.365234 13.161702 17.192629 -6.439410 8.605854 -5.872940 -5.001046 4.514231 5.646417 -16.123116 14.612266 2.936318 8.111384 -0.728597 3.144254 -5.212040 2.162573 4.826726 -1.603313 4.104604 0.037825 0.114062 -4.655641 -3.141678 -11.051473 -5.500833 -4.370585 1.653310 -3.747863 4.907511 0.543311 -5.304495 -5.685783 -7.997793 1.555413 8.179337 -0.897546 -0.302464 9.540127 -1.890059 5.419005 5.010533 0.691856 3.949028 5.197761 -13.557148 -2.458745 -4.077588 2.654626 -7.097402 -12.885712 -1.777039 -6.728209 -5.434434 6.443434 -12.096437 2.737101 -8.914811 -2.643249 -12.062131 -2.208966 3.462374 16.116947 5.266209 -7.712483 4.486461 -5.548621 8.682551 0.578757 0.086627 2.580898 6.869287 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -1.946117 1.737675 1.124459 -1.449742 3.893814 0.019689 -0.175390 1.881751 -1.139733 3.190255 -1.607852 -0.327793 -0.788050 -2.626682 0.075423 -1.453955 -0.789881 1.139099 -0.350464 1.522135 1.462788 -1.272352 0.232848 -0.339166 -1.289768 -2.080655 -0.765359 0.927842 2.568739 -1.609160 0.006168 -0.137891 3.208169 -0.705837 2.991807 2.390679 1.369016 2.453110 0.285619 -0.710211 -0.880542 1.629953 -2.050963 -1.994356 0.474279 -1.282999 -2.102904 -0.986873 1.246099 -0.927787 0.393383 2.612323 -0.727179 -0.034231 -1.521989 2.373808 0.473003 0.259761 3.652998 0.442634 -1.035706 -0.554583 -3.500113 2.462490 -1.285531 1.304591 -1.260316 -2.251176 0.343596 -0.249361 0.083208 -2.073495 -0.904632 2.942657 1.077567 -2.502847 0.509385 -1.609910 -2.670268 -2.300214 -2.409064 0.994623 -0.104772 2.123975 0.209037 0.921131 -0.051544 1.891454 -1.018620 -4.227910 0.572137 3.193952 -1.716015 -0.236261 -1.745046 1.852354 0.046513 0.720324 -1.594478 -0.336649 1.066089 0.080544 1.405773 -2.776604 1.430668 -3.114539 0.653257 0.018399 0.548227 0.537157 1.417073 0.637816 2.224390 3.301274 -2.077314 0.181955 -2.858227 0.519308 -0.578639 0.879628 -0.757643 1.761469 0.026298 0.829131 3.059526 -4.100175 1.099100 -0.327830 -1.126179 -3.317837 0.181612 -1.578510 -1.091010 -1.027885 1.551773 -0.056533 -0.636964 -1.467915 0.667850 0.385811 -1.768954 -1.371847 1.088623 2.488352 -2.425133 0.595947 -0.720759 -0.997750 -0.616452 1.960218 2.592856 2.477864 3.846516 2.569971 0.188803 0.749803 -3.083341 -0.092186 2.678938 0.687349 -2.794967 3.056007 -2.401540 -0.772379 0.594547 2.283580 2.032457 1.610663 -2.375912 -2.362341 1.310488 0.818101 3.362802 0.537802 0.527390 -0.296173 2.227532 -0.765451 -2.136288 3.401845 1.539937 -2.508688 0.729431 0.824120 -1.252415 -1.252673 2.193046 -2.430329 0.163978 -0.872272 -0.093990 1.663470 -1.397518 -0.992809 0.471857 -2.694781 3.547174 -0.640991 0.144642 1.328703 -2.619508 -2.584678 2.558988 0.009841 -1.206596 -2.143491 -1.983720 -1.900808 -2.232084 1.074354 0.841432 -0.853549 -2.037315 -2.805894 0.015612 1.973806 0.532090 1.797603 -2.852991 -1.386134 1.469162 0.364562 2.325820 -1.074598 -0.435620 -0.596382 -0.184251 1.342375 -0.708206 2.344674 4.259857 -1.686849 2.034497 -0.023821 -1.240614 0.441351 1.792666 -3.446526 3.549018 0.435390 1.422973 -0.187674 1.021709 -1.367496 0.338186 0.817679 0.058027 0.618154 0.588597 -0.393819 -0.959630 -0.665611 -2.891478 -1.077766 -0.438769 0.718318 -0.650140 0.981319 0.021209 -1.531662 -1.232748 -1.849015 0.257871 2.181294 -0.341159 -0.829507 1.958560 -0.314692 0.169105 0.665348 0.338866 0.858404 1.874949 -3.222811 -0.205416 -0.486618 0.372174 -2.393959 -2.734737 -0.696198 -1.795614 -1.348226 1.317178 -2.764110 -0.101345 -2.082267 -0.071636 -2.581762 -0.821058 0.771906 3.784773 1.716106 -1.571149 1.382571 -1.011747 2.307676 0.379347 -0.378621 0.689552 1.898771 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -5.598869 5.956051 3.743116 -4.827846 14.262873 -1.466122 0.906917 6.742602 -7.485389 12.424956 -3.472411 0.426230 -2.308822 -12.377183 0.575759 -4.848427 -1.861099 4.267216 1.220009 7.771878 4.210231 -7.571440 1.055526 0.033346 -4.858739 -9.597566 -0.964819 4.114178 11.533442 -7.990261 2.877044 -0.556299 12.281343 -2.236074 10.744819 8.516247 3.529469 7.374716 4.748154 -8.414948 -4.515875 4.827734 -6.625257 -6.404124 0.621175 -1.938602 -8.109414 -4.152995 3.183084 -2.856968 -3.833916 9.598537 -3.489543 -0.082344 -7.314679 8.749264 3.727888 -1.961610 12.325483 0.420468 -0.701901 -4.288941 -12.180702 8.925042 -4.047123 -1.044386 -4.532048 -6.287662 4.652421 -1.215279 -3.429658 -5.488683 -1.189343 12.159142 6.197127 -9.772745 -0.232495 -5.986626 -15.441907 -9.673483 -8.117253 3.234681 -1.068253 7.971469 2.370078 4.259027 3.894328 7.230840 -4.155246 -16.099029 3.786145 11.052379 -5.621966 -4.492966 -5.105091 10.806571 1.550295 1.848405 -6.172516 -2.388488 2.968602 -2.371926 5.517321 -11.562404 5.517504 -11.824845 -0.822590 -2.444530 3.064615 4.946986 7.492724 1.514775 7.738573 12.057999 -11.091879 -1.264267 -9.438973 2.040108 -1.256066 2.813916 -3.505413 6.534955 0.261224 4.719152 11.562883 -16.947895 2.457441 -0.863884 -1.447843 -12.405762 -0.864108 -4.910480 -1.819468 -3.862522 5.405227 -1.889302 -0.837887 -4.968202 2.191437 3.872121 -6.363805 -4.929123 4.887600 13.553339 -12.238501 3.270720 -2.278792 -3.256988 -1.615553 5.823855 10.185613 9.646933 12.394589 9.098646 0.426220 7.858319 -11.687318 -0.581110 10.109162 2.216309 -8.858000 12.630530 -9.513931 -4.153283 0.508736 9.709293 9.160581 1.258781 -11.238656 -9.946043 9.802494 4.022809 10.989037 -0.524134 -0.109066 -1.782992 10.016199 1.322768 -8.778851 12.191831 3.401364 -7.925264 5.957507 2.825761 -7.964400 -3.495993 7.406058 -10.048849 1.083098 -3.592972 -0.167382 5.802429 -3.454192 -1.437484 -0.380663 -8.524916 11.504991 -2.460138 -0.887913 4.857569 -5.928799 -10.752195 9.092025 -0.544089 -3.317355 -9.177688 -9.191533 -8.267887 -7.458668 3.398884 0.416429 -3.728240 -5.614080 -10.345140 -1.371317 7.735248 3.648830 6.716851 -15.005468 -3.297961 5.262183 6.130786 6.865202 -3.799250 -0.768758 0.931877 -0.449376 1.973403 -1.996244 10.167035 14.940500 -5.756798 6.508968 -4.258978 -5.638532 4.669612 4.671401 -14.465059 12.817024 1.499980 8.324925 -0.138991 2.419146 -4.379242 2.131295 3.190013 -1.341441 1.973720 -0.568904 -1.255915 -4.087308 -1.400991 -9.150229 -7.328620 -3.322640 2.550833 -2.033314 4.115640 -1.536503 -4.559256 -4.166031 -6.740203 2.166238 6.582765 -0.610885 -0.703510 8.194581 0.183492 4.406937 2.179126 0.435115 3.864277 4.439280 -11.875545 -0.596875 -3.295156 3.693584 -5.623856 -12.495565 0.883077 -6.725919 -4.395645 4.848919 -11.816323 0.809987 -7.495823 -1.292385 -12.604171 -0.678135 2.355067 14.058803 3.281443 -6.097041 3.996884 -4.696298 6.236189 -0.125266 0.989199 2.322432 5.914439 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -2.874486 3.009383 1.829776 -2.378200 7.242771 -0.711482 0.481991 4.043828 -3.803934 6.025045 -1.908281 0.866268 -0.942396 -5.746334 0.270705 -2.163823 -0.813020 2.210377 0.407838 3.511419 2.088045 -3.212004 0.523494 -0.121250 -2.370199 -5.070637 -0.314196 1.925541 5.307985 -3.222250 1.304378 -0.201392 5.989765 -1.183112 5.244944 4.163403 2.069812 3.445245 2.286484 -3.696797 -1.916432 2.284030 -3.168972 -3.230533 0.290198 -1.092495 -4.093843 -1.927201 1.668469 -2.012991 -1.725372 4.558019 -1.585812 -0.016685 -3.205946 4.381930 1.823361 -1.385701 5.949857 0.284607 -1.039482 -2.444337 -5.603359 4.920275 -1.961348 -0.350235 -2.158306 -3.364129 1.967595 -0.238406 -1.589026 -2.484664 -0.423939 5.660159 2.817833 -4.739235 0.110444 -2.774659 -6.643439 -4.578063 -3.629855 1.600636 -0.525364 3.826489 1.062951 2.005248 1.493707 3.276560 -1.909147 -7.672669 1.670165 5.531145 -2.894805 -1.916804 -3.003453 4.830683 0.956107 0.850296 -2.621517 -1.455087 1.484662 -0.960413 2.589170 -5.684136 2.538658 -5.511344 -0.446426 -1.042361 1.612876 2.856838 2.597293 1.067570 3.661417 5.757749 -4.918366 -0.167717 -4.777815 1.356972 -0.883873 1.349038 -1.698516 2.878949 0.654131 2.494876 5.540049 -7.929282 1.469223 -0.279257 -0.653983 -5.952850 -0.243754 -2.374783 -0.967023 -1.864268 2.649423 -0.894554 -0.453643 -2.442168 1.260171 1.666064 -3.257365 -2.808490 2.038263 6.120596 -6.162535 1.559573 -1.093589 -1.349244 -0.778817 2.907781 4.803127 4.564067 6.039040 4.370513 0.262616 4.001357 -5.704474 -0.215457 5.004322 1.557847 -4.275297 6.011271 -4.690519 -2.071592 0.472237 4.458313 4.151923 1.142171 -5.446408 -4.792677 4.497977 1.803444 5.486948 0.269988 0.025531 -1.363355 4.685030 0.013806 -4.026943 5.954060 1.984431 -4.258221 2.933799 1.504735 -3.719194 -1.664583 3.445715 -4.979598 0.069295 -1.706202 -0.070971 2.952167 -1.887920 -0.950333 0.082773 -4.188826 5.609267 -1.117632 -0.352587 2.219850 -2.982888 -4.780115 4.506299 0.071655 -1.594427 -4.235093 -4.264320 -4.186991 -3.805024 1.501859 0.436986 -1.816349 -2.695154 -5.026335 -0.890227 3.583393 1.597982 3.227622 -7.642503 -1.523341 2.677952 2.664414 3.027319 -2.417796 -0.462827 0.014494 -0.302064 1.077670 -1.254666 4.895929 7.071502 -2.780351 3.471069 -1.819057 -2.888080 2.093500 2.324077 -6.880198 6.212557 0.751864 3.966372 0.234731 1.305922 -2.353787 0.965083 1.156276 -0.799964 0.700688 0.117821 -0.960420 -1.940535 -0.455058 -4.442248 -3.470700 -1.426283 1.335230 -0.808572 1.852027 -0.709734 -2.416311 -2.092379 -3.606719 0.975305 3.228124 -0.707857 -0.811297 3.930330 0.208878 1.499233 0.492698 0.271030 2.032109 2.248737 -5.741982 -0.060375 -1.324096 1.690117 -3.322980 -6.008153 0.526633 -3.271023 -2.610508 2.051448 -5.885233 0.072426 -3.587854 -0.491231 -6.376669 -0.816988 1.330778 6.911939 1.293103 -2.780204 2.156153 -2.215673 3.051536 0.035481 0.791203 0.959321 2.929453 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.979920 0.690251 0.087330 -0.853834 2.477407 -0.660766 0.183598 0.987552 -0.484940 1.618488 -0.755298 -0.125228 -0.226792 -1.861980 0.275251 -0.463945 -0.019135 1.033684 0.002861 0.862851 0.639227 -0.688319 0.173920 -0.149945 -0.597724 -1.531815 -0.299083 0.724347 1.268735 -1.101796 0.144688 0.260681 2.034893 -0.417745 1.767168 1.377265 0.665954 1.102271 0.701949 -1.028340 0.011823 0.621100 -0.839277 -1.191599 0.073805 -0.186604 -1.457217 -0.746326 0.721485 -0.620649 -0.036161 1.370060 -0.329292 -0.037961 -1.159912 1.194509 0.647532 -0.117870 1.699630 0.270880 -0.512716 -0.139432 -1.499613 1.665899 -0.855924 -0.049294 -0.757315 -1.354742 0.214828 0.455282 -0.104444 -0.987935 -0.564368 1.257711 0.865120 -1.337173 0.306796 -0.583409 -0.820363 -1.593309 -1.211587 0.660772 -0.442566 1.310034 0.190348 0.548052 0.025866 0.675642 -0.355524 -1.989559 0.222609 1.586378 -0.860723 -0.380410 -0.578663 1.270083 0.633890 -0.071225 -0.604816 -0.932219 0.399797 -0.579620 0.778547 -0.598233 0.957247 -1.118982 -0.274925 -0.134929 0.486270 1.216545 0.694027 0.501950 0.949539 1.374705 -1.074941 -0.307762 -1.685391 0.686291 -0.657231 0.294970 -0.469210 0.756649 0.603902 0.727237 1.417109 -2.258078 0.729556 0.059261 -0.002585 -1.416514 0.108557 -0.370853 -0.475354 -0.557698 0.904149 -0.209262 -0.177988 -0.417190 0.456370 0.476259 -0.764068 -0.352444 0.249706 1.551318 -1.624294 0.514767 -0.274270 -0.544527 -0.172518 0.717118 1.311942 1.316403 1.944269 1.403618 -0.240866 0.826675 -1.979857 0.167239 1.663968 0.038957 -1.157963 1.741911 -1.237686 -0.586372 0.341003 1.499217 1.019753 0.159141 -1.131851 -0.952834 0.838224 0.402395 1.694183 -0.170918 -0.036854 -0.828859 1.014060 0.178252 -0.762177 2.183801 0.460806 -1.557425 0.852290 0.928238 -1.138046 -0.711938 0.953152 -1.461134 -0.247425 -0.753696 0.407922 1.034388 -0.813831 -0.421474 0.098816 -1.201376 1.404242 -0.419343 -0.744137 0.702844 -1.044006 -1.010044 1.876219 0.175444 -0.177400 -1.038312 -1.432263 -0.571503 -1.428955 0.374249 0.186504 -0.517786 -0.464250 -1.325960 -0.345193 1.411929 0.177939 0.966621 -2.180533 -0.073509 0.887570 0.768809 0.565371 -0.794853 -0.152521 0.226325 -0.078437 -0.024212 -0.500737 1.000304 1.888107 -1.068167 0.691946 0.004529 -0.805815 0.740974 0.740274 -1.944822 1.993827 0.272350 1.251806 0.256331 0.431234 -0.741372 0.139125 0.190096 -0.248711 -0.260843 0.237633 -0.670687 -0.564847 0.337846 -0.933858 -1.363709 -0.190267 0.850260 -0.020470 0.468668 -0.356312 -0.754781 -0.390872 -0.815251 0.502735 0.952135 -0.141392 -0.537964 1.188424 0.613946 0.013995 -0.202497 0.071258 0.655913 1.007082 -1.760265 0.363626 -0.186698 0.884640 -1.146570 -1.870633 0.474728 -1.063191 -0.541615 0.495937 -1.942731 -0.580951 -1.055710 0.238163 -1.675486 -0.035432 0.573588 2.059736 0.512991 -0.755307 0.738998 -0.600005 0.680663 -0.137755 0.056729 0.341278 0.990349 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -2.004081 1.271454 0.953948 -1.518152 4.459186 -0.937764 0.283171 2.549399 -0.485664 2.851509 -1.835673 -0.212160 -0.831174 -2.868715 0.318660 -1.231612 -0.048785 2.063949 -0.659086 1.075890 1.593289 -0.465880 0.330863 -0.681405 -1.013535 -2.356200 -0.696020 0.892406 1.343677 -0.845668 0.220302 0.500711 3.729378 -0.339620 3.127964 2.478712 1.610889 2.824375 0.618370 0.174974 0.050862 1.514251 -1.515307 -2.859148 0.849709 -1.083068 -2.338156 -1.560104 1.227175 -2.229609 1.125909 2.399586 -0.378844 -0.115354 -1.469123 1.882415 1.111137 0.043502 3.146154 0.840978 -1.861638 -0.112201 -2.926111 2.655960 -1.600454 1.332777 -0.681827 -3.030317 -0.352828 0.715236 0.896305 -2.093940 -1.479924 1.961513 1.019113 -2.098056 0.764420 -0.976362 -1.281458 -1.941207 -2.403159 0.886074 -0.633815 2.109279 0.019636 0.640514 -0.569795 0.971660 -0.318156 -3.480797 0.015144 3.195551 -1.688129 0.338207 -2.240554 1.067963 0.471058 0.131912 -1.249380 -1.383682 0.933732 -0.207542 1.317538 -0.993668 0.175541 -2.218451 0.705931 0.565321 0.460052 1.411074 0.677257 0.935203 1.590032 2.374172 -1.673574 0.884624 -3.248286 1.385624 -0.941085 0.626473 -0.670044 1.204620 0.812825 0.957174 2.439505 -3.662984 1.715056 0.130681 -0.978041 -2.466808 0.610899 -0.968062 -1.178837 -1.123634 1.963226 -0.027409 -0.584567 -0.914170 0.676761 0.141331 -1.501065 -1.816360 -0.015820 1.911910 -2.516667 0.593511 -0.850290 -1.231254 -0.461372 1.501380 1.963568 2.140941 3.404951 2.503444 -0.295856 0.456652 -3.398579 0.252793 3.123755 0.812255 -2.538100 2.671077 -1.830983 -0.443975 0.982712 2.053327 1.523602 1.325634 -1.757970 -1.665749 0.472653 0.364522 3.218086 1.417892 0.524929 -1.969701 1.405372 -0.779332 -1.412931 4.129404 1.740168 -2.986987 0.610457 1.558592 -1.669244 -1.667929 1.389624 -2.182270 -0.625172 -1.175317 0.579903 1.688094 -1.882667 -1.392696 0.739425 -2.590101 2.855204 -0.526322 -0.463254 0.883283 -2.792620 -2.078660 3.559502 0.363384 -0.794195 -1.573987 -2.248789 -1.076305 -2.848288 0.896242 0.907449 -0.670675 -1.588222 -2.426365 -0.147266 2.480226 0.001123 1.409271 -2.646830 -0.906755 1.597915 -0.001633 1.537833 -2.708872 -0.672377 -0.493609 -0.154186 1.030781 -0.599359 1.403646 3.842987 -1.839108 1.670291 1.241310 -1.403360 0.406598 1.939797 -3.038235 3.403192 -0.081327 1.754435 0.216187 1.163228 -1.448357 0.143185 0.233420 0.187301 -0.353224 1.153869 -1.274081 -0.805842 0.162441 -2.574376 -1.493392 0.160596 1.308104 -0.004211 0.662576 -0.269207 -1.719657 -0.823743 -1.681824 0.457206 2.167582 -0.503860 -1.680137 1.581790 0.472901 -0.976623 -0.688092 0.496128 0.988958 2.200784 -3.095029 0.676499 -0.045858 0.381409 -2.782445 -2.776806 0.231712 -2.199841 -1.639993 0.873057 -3.086824 -0.995733 -1.843018 0.775416 -2.824947 -0.811369 0.577904 3.542089 1.333144 -0.904319 1.716321 -0.673701 1.891020 0.218104 -0.184149 0.551754 2.323410 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -4.364121 3.238246 1.631167 -3.152152 10.232032 -1.117679 -0.927560 3.171378 -2.864409 8.212890 -2.521736 -2.346336 -2.879299 -8.194981 0.690480 -3.708128 -0.951284 3.229004 0.092291 4.807211 3.321941 -4.891535 0.962088 0.031603 -2.506224 -6.332835 -1.961166 2.900181 8.850403 -6.002193 -0.789281 -0.051019 8.943727 -1.864807 6.864947 5.546793 2.894864 5.503398 1.593682 -6.085946 -2.707532 4.047500 -5.035718 -3.687925 1.195911 -2.151211 -5.502587 -2.392717 3.780754 0.351005 -1.741295 6.900259 -2.404181 -0.032827 -5.351464 6.262151 1.997563 1.811221 8.906688 0.526936 0.887886 -2.095222 -9.174899 4.265483 -3.506520 0.359861 -4.753562 -4.132334 1.689723 -1.075137 -0.839460 -5.592716 -1.449986 8.141167 4.199685 -6.193937 1.257697 -3.418511 -6.839731 -8.416708 -7.779926 2.017186 -2.076216 6.083530 0.542176 2.767670 0.933519 4.932933 -2.452902 -10.924602 2.449538 6.965276 -3.258905 -2.314486 -1.971264 6.773015 1.200536 1.042456 -4.505601 -1.825164 1.794820 -2.105524 4.036195 -6.669306 6.556626 -7.226929 -0.083465 -2.015402 2.716306 2.598789 5.813494 0.632156 5.146145 8.536133 -7.081715 -2.733902 -7.162190 0.684050 -1.714717 2.099725 -1.888781 5.580740 -0.038515 2.451481 7.587980 -12.556647 1.831594 -0.768897 -1.193333 -8.188165 0.134728 -3.154221 -1.936272 -2.525503 4.141889 -1.377849 -1.463350 -3.181238 2.261221 2.174306 -3.982097 0.198573 2.970413 8.867211 -7.361827 2.194256 -1.741632 -3.558553 -0.444594 3.352032 6.666563 6.793548 9.379573 6.933771 -1.054683 3.819718 -8.330612 0.226426 6.244926 -0.214497 -5.994188 8.367841 -5.307542 -2.206024 1.149463 7.278076 6.358775 1.444307 -5.357869 -5.551939 4.225430 3.042596 7.585497 -1.492982 0.663442 -0.437347 5.592582 -0.256012 -5.356316 8.396113 1.855677 -4.851767 3.055360 2.203195 -4.683802 -2.690065 4.996042 -6.209925 1.660154 -3.489779 0.994720 4.880442 -3.080863 -1.343037 -0.019211 -5.740656 7.936472 -2.172588 -1.384131 4.963685 -5.295893 -6.432100 6.669488 -1.058874 -1.952083 -6.365182 -6.864676 -4.186307 -5.067455 2.876110 -0.356052 -2.524685 -3.608232 -6.726991 -1.009856 6.447748 2.775050 4.648257 -10.310091 -1.444725 3.350311 3.454001 5.760885 -0.377220 -0.698274 1.169449 -0.856625 1.368748 -1.503533 5.837412 10.144538 -5.196097 3.011731 -3.058064 -2.447936 3.284141 3.229300 -9.854079 8.704103 2.089471 6.384729 -0.780625 1.944768 -2.752331 1.381945 2.906112 -0.487923 1.284955 0.348550 -0.746038 -2.895256 -0.251043 -5.841631 -5.354605 -2.306051 2.100950 -1.866888 3.091404 -0.923584 -3.171571 -2.045804 -2.830465 1.793074 4.909783 0.614335 -0.360063 5.187772 0.312026 2.598289 2.251583 0.526700 1.742691 4.108298 -8.069947 -0.760126 -2.135692 3.285995 -2.784475 -9.037882 -0.449020 -3.694532 -1.938501 5.230097 -8.232458 -0.189866 -5.320805 -0.363653 -6.851128 0.349224 1.917211 9.405278 4.160825 -4.263365 3.080855 -2.617322 4.062683 -0.998935 -1.234152 2.204786 3.985747 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -1.227458 0.713733 0.148048 -0.803499 2.867132 -0.503892 -0.266196 1.415248 -0.577085 2.107487 -0.748881 -0.351677 -0.599665 -2.000344 0.230687 -0.508902 -0.109317 1.102305 -0.152091 0.947700 0.944811 -0.805089 0.189864 -0.073513 -0.663921 -1.559379 -0.433136 0.732225 1.912934 -1.402237 -0.487778 0.174740 2.455947 -0.505788 1.994932 1.552079 1.078847 1.442170 0.526768 -1.193362 -0.460668 1.042812 -1.254860 -1.168523 0.356732 -0.604609 -1.458695 -0.604986 1.014211 -0.211828 0.245759 1.727706 -0.525539 0.074405 -1.181231 1.589722 0.383476 0.255228 2.305371 0.282049 -0.342176 -0.450985 -2.179072 1.757978 -1.006571 0.358766 -1.114104 -1.421381 0.148719 -0.041787 0.201861 -1.635265 -0.530982 1.928050 0.839491 -1.578808 0.491591 -0.758649 -0.720984 -2.087843 -2.040302 0.588150 -0.673603 1.514191 0.067800 0.638954 -0.268021 1.112445 -0.550227 -2.732127 0.516842 1.812706 -1.128502 -0.191846 -0.867528 1.280784 0.305511 0.264899 -0.957066 -0.750320 0.532240 -0.464542 1.016582 -1.336821 1.736413 -1.525620 0.062855 -0.350311 0.739447 0.844565 1.168074 0.328369 1.356552 2.092216 -1.210398 -0.581325 -2.012375 0.481922 -0.544055 0.521799 -0.466190 1.293349 0.435052 0.607936 1.941114 -3.047924 0.612889 -0.162894 -0.335368 -1.948910 0.168856 -0.804882 -0.625298 -0.758138 1.223413 -0.279090 -0.454549 -0.820622 0.718912 0.477872 -1.308245 -0.296146 0.459685 1.796605 -1.955556 0.506626 -0.513529 -0.897364 -0.144602 0.959428 1.639490 1.773583 2.424323 1.810787 -0.275102 0.723674 -2.308909 0.102704 1.684324 0.060854 -1.626303 2.119386 -1.514584 -0.546591 0.494532 1.869363 1.421943 0.535418 -1.154486 -1.208339 0.919550 0.758813 2.108123 -0.195289 0.263240 -0.327945 1.062583 -0.239890 -1.327480 2.491497 0.573191 -1.626205 0.716893 0.674447 -0.797122 -0.727471 1.215387 -1.700056 0.094676 -0.955706 0.370959 1.347978 -1.030783 -0.422425 0.352615 -1.557835 2.037650 -0.524105 -0.503382 1.174537 -1.661572 -1.128532 2.032234 -0.020398 -0.473239 -1.492770 -1.754077 -0.930476 -1.487337 0.681909 0.082206 -0.479614 -0.902599 -1.750896 -0.321359 1.785779 0.594240 1.155581 -2.665282 -0.340662 0.973673 0.495276 1.278482 -0.664367 -0.254088 0.073605 -0.190837 0.441535 -0.587624 1.291670 2.608787 -1.383530 0.829255 -0.089980 -0.600270 0.612347 0.921322 -2.492230 2.292291 0.470794 1.307990 -0.012904 0.571002 -0.923781 0.261290 0.455229 0.186426 0.094790 0.269360 -0.364013 -0.695777 -0.043951 -1.565545 -1.320117 -0.477446 0.668427 -0.352689 0.722003 -0.453810 -0.892505 -0.586468 -1.011893 0.464754 1.352039 -0.070311 -0.391085 1.399821 0.099885 0.151237 0.418758 0.194226 0.516684 1.287511 -2.126541 -0.069536 -0.296105 0.875547 -1.120521 -2.235593 -0.192978 -0.937602 -0.593651 1.085366 -2.186755 -0.428303 -1.325682 0.080770 -1.903995 -0.031531 0.506767 2.504858 1.031871 -1.003147 0.968419 -0.614631 1.092709 -0.080253 -0.262973 0.448360 1.156127 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -2.709487 2.798360 0.944977 -1.993480 7.181052 -1.191346 0.262037 3.640822 -3.162105 5.049743 -1.751469 -0.048706 -1.141497 -5.662158 0.320540 -1.872123 -0.554270 2.728186 0.254869 2.790289 1.879051 -2.552228 0.560949 -0.119273 -1.836017 -4.162826 -0.551967 1.713681 4.938755 -3.437655 0.405091 0.016261 5.664844 -1.108826 4.927717 3.437384 1.502331 3.094712 1.755827 -3.734475 -1.394194 2.068758 -2.718151 -3.176376 0.332076 -0.964498 -3.356100 -2.000043 2.021417 -1.085423 -0.930723 3.837965 -1.245089 0.027526 -2.876687 3.825645 1.546069 -0.186496 5.259348 0.292261 -0.966942 -1.450297 -5.281196 3.927405 -1.872133 -0.014329 -2.239670 -2.948772 1.329380 -0.055889 -0.888309 -3.140336 -0.155217 4.949693 2.460493 -3.875660 0.438538 -2.007961 -4.689872 -4.765978 -4.162358 1.345255 -1.222197 3.472577 0.505199 1.704867 0.866795 2.677431 -1.452363 -6.759189 1.266787 4.895015 -2.333926 -1.504677 -1.874679 3.988728 0.715313 0.524638 -2.282935 -1.564554 1.188065 -0.998611 2.248530 -4.742645 3.198589 -4.573045 -0.235109 -1.206079 1.314766 2.545912 3.346065 0.817325 3.148388 5.286690 -4.169883 -0.812651 -5.061367 1.056406 -1.295862 1.162316 -1.245941 2.647941 0.636980 1.931728 4.504615 -7.773299 1.559871 -0.172333 -0.275729 -5.436235 0.073392 -1.763915 -1.012615 -1.508739 2.383192 -0.813042 -0.642147 -1.906762 1.049852 1.382082 -3.366308 -1.560033 1.631257 5.557441 -5.541145 1.376479 -0.924603 -1.522928 -0.512571 2.283402 4.129188 3.861137 5.517064 3.931426 -0.323678 2.899053 -5.186435 0.012911 4.192281 0.280421 -3.499873 5.340014 -3.525968 -1.643063 0.684158 4.106584 3.600603 1.141587 -4.298978 -4.000749 3.835731 1.570508 4.575331 -0.175447 0.292929 -1.074635 4.123119 0.150945 -3.403014 5.865592 1.149075 -3.916365 2.668653 1.492405 -3.017037 -1.610846 3.025893 -4.257440 0.113296 -1.719188 0.363700 2.659482 -2.005860 -0.935876 0.151304 -3.496470 5.111056 -1.152665 -1.080570 2.277365 -2.972497 -3.212290 4.566900 0.224386 -1.137059 -3.508496 -4.021563 -3.478822 -3.274514 1.368152 0.366218 -1.545354 -2.092605 -4.025859 -0.748686 3.831818 1.331126 3.016744 -6.552827 -1.042561 2.210457 2.315202 2.609370 -2.245218 -0.364342 0.250968 -0.385934 0.816326 -0.957991 4.163836 6.177672 -2.790432 3.060092 -0.729491 -1.989465 1.907856 1.969672 -5.953067 5.213944 0.930475 4.163318 0.052344 1.172699 -1.834512 0.747968 1.174506 -0.406266 0.439739 0.319996 -0.879263 -1.707951 -0.319585 -4.029108 -3.378175 -1.170264 1.409530 -0.562989 1.597776 -0.786229 -2.181790 -1.384081 -2.718061 0.937222 2.809187 -0.447718 -0.975977 3.233234 0.461245 1.128911 0.789726 0.265070 1.558735 2.197768 -4.805982 0.016352 -1.100735 2.022269 -2.696929 -5.508731 0.453630 -2.751918 -2.015405 2.202650 -5.176718 -0.388455 -2.961322 -0.096222 -5.712293 -0.443747 1.075169 6.196811 1.720452 -2.119684 1.998552 -1.700232 2.417948 -0.129373 0.118904 0.902588 2.767176 +PE-benchmarks/cutting-a-rod.cpp__main = -1.150494 0.633201 0.213962 -0.706923 2.685295 -0.444988 -0.050333 1.724800 -0.322203 1.684095 -0.876296 -0.301204 -0.484039 -1.610604 0.159727 -0.385350 -0.104471 1.201860 -0.438997 0.445223 0.920279 -0.154516 0.164435 -0.226254 -0.573186 -1.038648 -0.459843 0.510636 1.030930 -0.745160 -0.314831 0.197923 2.127380 -0.292632 1.906465 1.290469 1.026168 1.435370 0.231403 -0.036610 -0.151020 0.931397 -0.990635 -1.507902 0.479990 -0.725385 -1.234091 -0.750579 0.805423 -0.902814 0.943149 1.326606 -0.262339 0.083243 -0.584084 1.124567 0.320985 0.136984 1.879581 0.432094 -1.110843 -0.061589 -1.831221 1.717326 -0.801311 0.967147 -0.577084 -1.736424 -0.323435 0.149428 0.645122 -1.522868 -0.663849 1.410243 0.508851 -1.141562 0.541420 -0.557142 -0.137703 -1.365926 -1.680548 0.474318 -0.604872 1.162791 -0.101319 0.355953 -0.467744 0.649176 -0.347044 -2.189305 0.149701 1.780505 -1.120605 0.340444 -1.251760 0.336706 -0.039567 0.331094 -0.765551 -0.717692 0.526365 0.011861 0.746573 -0.723505 0.747506 -1.177404 0.426938 0.125191 0.416087 0.648671 0.783998 0.353681 1.052669 1.663629 -0.756178 0.207926 -1.794281 0.709113 -0.602045 0.507045 -0.369860 0.862755 0.593156 0.425253 1.497798 -2.292543 0.776815 -0.071452 -0.566140 -1.539219 0.313419 -0.743026 -0.743903 -0.635618 1.104532 -0.061430 -0.481892 -0.713272 0.464883 0.140128 -1.297117 -0.849490 0.072890 0.869553 -1.557706 0.258997 -0.497738 -0.743593 -0.257484 1.004234 1.268501 1.347600 1.987401 1.460350 -0.176260 0.060320 -1.964332 0.159575 1.626904 0.159785 -1.490588 1.589949 -1.202322 -0.205383 0.653119 1.271563 0.931689 0.872520 -0.781722 -0.785580 0.429401 0.482775 1.884293 0.639822 0.436424 -0.774270 0.625385 -0.523707 -1.028573 2.459100 0.823689 -1.763283 0.359454 0.585775 -0.523305 -0.746240 0.870996 -1.340214 -0.297242 -0.733197 0.317996 1.050343 -1.070691 -0.654914 0.672645 -1.465656 1.835068 -0.374892 -0.328267 0.696203 -1.771931 -0.749391 2.040585 0.276163 -0.504181 -0.966616 -1.272911 -0.678675 -1.413189 0.564197 0.463867 -0.263496 -0.956810 -1.411413 -0.068402 1.565560 0.229447 0.920926 -1.618449 -0.480587 0.837760 -0.238888 1.044330 -1.530565 -0.341937 -0.437520 -0.170541 0.701034 -0.452693 0.794995 2.277107 -1.101756 1.004103 0.900440 -0.604576 0.040214 0.970179 -1.788094 1.877048 0.107222 0.846692 -0.026551 0.647019 -0.812088 0.118336 0.139736 0.438355 -0.057237 0.626385 -0.457737 -0.459729 -0.122956 -1.709010 -0.806518 -0.091259 0.590871 -0.082632 0.476878 -0.391603 -1.049802 -0.491827 -0.986463 0.205270 1.276163 -0.333412 -0.885651 0.976653 -0.070713 -0.475490 -0.058808 0.268288 0.460560 1.283508 -1.722964 0.077664 0.020862 0.372818 -1.500118 -1.530131 -0.294959 -1.035655 -0.787477 0.649253 -1.626363 -0.547988 -1.054670 0.263856 -1.644439 -0.436270 0.299654 2.138432 0.963625 -0.597673 0.994561 -0.318709 1.181376 0.220366 -0.245823 0.358474 1.229952 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.543933 0.012186 -0.393745 -0.314342 1.286868 -0.787168 -0.010735 0.354592 -0.139538 0.905906 -0.079651 -0.473452 -0.346839 -1.388889 0.307002 -0.002411 0.258767 0.745694 0.195402 0.595573 0.456587 -0.629301 0.048353 0.072956 -0.204321 -0.721254 -0.096012 0.497318 1.044771 -1.187493 -0.199959 0.374655 1.364107 -0.191949 1.199759 0.903159 0.325123 0.615653 0.648561 -1.301301 -0.246204 0.505058 -0.517532 -0.670374 0.071751 0.135303 -0.682614 -0.364836 0.555498 0.299195 -0.116692 0.918224 -0.338958 0.145363 -0.961210 0.570566 0.286991 0.263938 1.012208 0.146985 0.200880 0.009842 -0.880401 0.902839 -0.632658 -0.447654 -0.607151 -0.593106 0.332348 0.043365 -0.245075 -0.688901 -0.280742 0.893685 0.625738 -0.810751 0.219403 -0.186486 -0.247344 -1.220185 -1.231967 0.303920 -0.531359 0.932372 0.069382 0.369730 0.103732 0.463664 -0.191938 -1.257420 0.407529 0.609500 -0.559102 -0.347185 0.215480 1.032586 0.424234 -0.040037 -0.424717 -0.631309 0.167737 -0.796381 0.624478 0.018924 1.141674 -0.354155 -0.330514 -0.534274 0.503316 0.843083 1.148989 0.110920 0.578707 0.847418 -0.564001 -0.845118 -0.952470 0.391003 -0.410475 0.177106 -0.174903 0.700060 0.466144 0.187171 0.876255 -1.612007 0.133393 0.038944 0.390712 -0.767268 0.047314 -0.236061 -0.207723 -0.530023 0.798911 -0.277897 -0.174871 -0.234033 0.395558 0.599051 -0.529556 0.429617 0.070861 1.077869 -0.982223 0.374155 -0.290397 -0.635041 0.049105 0.183829 0.714732 1.067136 1.070059 1.022246 -0.486853 0.497005 -1.316670 0.107838 0.870353 -0.540323 -0.628617 1.117554 -0.749924 -0.403339 0.185524 1.227029 0.935464 -0.395256 -0.331835 -0.291811 0.744697 0.505351 0.924755 -0.810066 -0.035942 -0.181277 0.400913 0.673398 -0.600315 1.403461 -0.246790 -0.852145 0.760131 0.495657 -0.694856 -0.345368 0.511144 -0.888352 0.164619 -0.809053 0.503016 0.772919 -0.616274 0.089893 0.053692 -0.643668 0.626398 -0.342304 -0.675795 0.746756 -0.682072 -0.333528 1.252868 0.070583 0.044014 -0.925037 -1.245141 -0.229514 -0.758550 0.351005 -0.362209 -0.155661 -0.071298 -0.793891 -0.383937 1.160455 0.457586 0.643750 -1.542643 0.300161 0.491854 0.780484 0.303152 0.025921 -0.105443 0.655811 -0.071664 -0.218203 -0.227037 0.422705 1.066688 -0.870351 -0.012476 -0.089734 -0.278508 0.741135 0.246310 -1.425269 1.181370 0.275565 0.794070 0.095058 0.157737 -0.502960 0.097673 0.294052 0.029169 -0.198842 -0.170122 -0.195082 -0.384585 0.285840 -0.378300 -1.115688 -0.419717 0.495960 0.059594 0.438215 -0.498876 -0.334569 -0.086327 -0.273705 0.542860 0.627112 0.231935 0.026991 0.870842 0.367913 0.368715 0.110871 0.039709 0.223943 0.636388 -1.139081 0.045416 -0.227976 0.937395 -0.067798 -1.297273 0.313616 -0.425447 0.141633 0.608869 -1.256017 -0.215096 -0.648198 0.114438 -0.970733 0.561173 0.131856 1.180200 0.368858 -0.508677 0.447155 -0.353440 0.182176 -0.231042 -0.135109 0.192368 0.600092 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -2.595371 2.528407 1.754509 -1.686872 4.027144 -0.253163 0.685433 1.455633 -2.343536 4.089339 -1.492736 -0.516911 -1.023866 -3.784318 0.089246 -2.979773 -0.914498 1.191814 0.533275 2.900473 1.864044 -2.580574 0.034006 -0.059871 -1.695054 -3.182739 -0.691488 1.348205 4.240725 -2.811212 1.333420 -0.070710 4.206386 -0.791552 5.018229 3.786773 1.005301 2.583242 0.768510 -1.990108 -2.224467 2.225104 -2.947229 -2.564468 -0.192220 -0.779689 -2.656612 -1.295560 1.623790 -0.363037 -1.118279 3.776462 -1.575153 0.604075 -2.332516 2.825360 0.474204 0.256033 4.873330 0.168682 -0.934969 -0.689121 -4.306020 3.482158 -1.262646 0.218107 -1.909426 -2.366363 2.046389 -1.106806 -1.932868 -1.739989 -0.273772 4.809258 2.050612 -3.853302 0.335565 -2.330108 -5.824130 -3.029229 -2.933168 1.404558 0.703881 3.175120 0.659655 1.592747 1.031139 3.042563 -1.858134 -6.203649 1.737092 4.360958 -2.493053 -1.443902 -1.246140 3.822580 0.450755 1.405039 -2.032826 -0.250403 1.432589 -0.886202 2.138293 -3.876566 1.610623 -4.289252 -0.301678 -1.157659 0.812734 1.612836 2.500010 1.248635 3.769101 4.899280 -3.364559 0.120818 -3.217430 1.133683 -1.352201 1.011104 -0.649450 2.683711 -0.147912 1.337689 4.542880 -5.454626 0.491911 -0.192467 -0.303690 -5.154194 -0.337428 -2.840656 -1.137623 -1.845865 2.103880 -0.216352 -0.602264 -2.483953 0.497218 1.248554 -1.557665 -1.439135 2.050967 3.470014 -2.935231 1.042888 -0.888197 -1.108643 -1.009005 2.698799 3.599603 4.034713 5.095190 3.771194 0.084458 2.089585 -3.856319 -0.809795 3.142749 0.582962 -3.597480 4.595015 -3.726496 -1.991751 0.456394 3.366134 3.670894 1.447797 -4.142620 -3.537582 3.110859 1.498567 4.398720 -0.114389 0.065384 0.440409 3.985079 0.055974 -3.828739 4.105296 1.088909 -3.482417 1.998805 0.699161 -2.639033 -1.570536 3.524505 -3.834861 0.578234 -1.466651 -0.315414 2.159068 -1.684837 -0.348578 0.595237 -3.707317 4.557139 -0.952699 0.496356 2.044111 -3.146520 -4.492040 3.347624 0.261016 -1.444677 -3.543140 -2.745723 -2.638566 -2.580207 1.456949 0.454306 -1.004488 -2.440665 -3.983268 -0.157428 1.943118 1.480106 3.445113 -3.657778 -1.739717 1.975072 1.712091 2.498730 -0.452377 -0.609087 -0.221201 0.011419 1.367840 -0.642471 4.011582 5.414416 -2.184396 2.675633 -1.335164 -2.659665 1.479487 1.660414 -5.600330 4.986358 0.733952 1.850175 0.020165 1.056512 -2.220311 0.209732 1.621971 -0.670266 0.872067 0.058661 0.027527 -1.340012 -0.914790 -3.498804 -1.580015 -1.544268 0.542913 -1.123366 1.674856 0.365232 -2.265768 -1.725702 -2.725573 0.735435 2.945075 -0.028863 -0.523749 3.441933 -0.553826 1.586152 0.946860 0.100863 1.140642 1.922686 -4.710244 -0.873515 -1.150913 0.812744 -2.294922 -4.093890 -0.158577 -2.865381 -1.608418 1.455384 -3.477415 1.158032 -3.130587 -1.078591 -3.672762 -1.143253 1.304222 5.476817 1.972937 -2.537848 1.460188 -1.931244 2.944636 0.390643 0.064739 0.822775 2.631143 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -1.074554 0.551046 0.257347 -0.680474 2.231837 -0.591648 0.092497 1.364152 -0.285925 1.550832 -0.725429 -0.109039 -0.278887 -1.320014 0.185081 -0.509803 -0.062893 1.007577 -0.231420 0.561916 0.783421 -0.115052 0.019696 -0.126462 -0.608491 -1.095548 -0.364399 0.575222 0.989566 -0.998590 -0.160560 0.329326 2.007689 -0.428301 2.066773 1.514066 1.021396 1.096481 0.360136 -0.258186 -0.140004 0.756676 -0.972040 -1.178096 0.080005 -0.344408 -1.261176 -0.504337 0.750794 -0.526449 0.677992 1.347746 -0.378059 0.225893 -0.648731 1.207046 -0.000948 -0.037396 1.777166 0.326575 -1.075819 0.075182 -1.538645 2.142645 -0.769955 0.638381 -0.809772 -1.525974 -0.007408 0.148243 0.263711 -1.270889 -0.588069 1.419163 0.506644 -1.299435 0.417350 -0.584940 -0.142934 -1.215475 -1.393275 0.662656 -0.222669 1.066455 0.116230 0.480068 -0.448651 0.815099 -0.473516 -2.108451 0.367820 1.666672 -1.274346 0.077751 -1.068130 0.509377 0.220997 0.289292 -0.488420 -0.797625 0.555788 -0.374671 0.776031 -0.652607 0.980649 -1.005248 -0.011531 0.013827 0.460321 0.815530 0.440059 0.593329 1.307438 1.543850 -0.400257 -0.012673 -1.606929 0.829417 -0.739675 0.290694 -0.302727 0.851214 0.591615 0.605180 1.576758 -1.978360 0.517689 -0.100626 -0.338241 -1.458252 0.130560 -0.758328 -0.621266 -0.759047 1.047178 -0.017351 -0.355789 -0.717216 0.510556 0.306716 -0.866324 -0.749532 0.213130 0.605137 -1.210268 0.348133 -0.402215 -0.527350 -0.307539 1.048651 1.281289 1.488330 1.957189 1.448729 -0.104774 0.174734 -1.895652 -0.084444 1.264594 0.047438 -1.375126 1.720161 -1.458189 -0.574867 0.464953 1.455472 0.904779 0.640995 -0.925855 -0.843036 0.573113 0.530881 1.816950 0.152023 0.092570 -0.334812 0.602470 -0.411197 -1.143602 2.150100 0.620013 -1.746293 0.445636 0.636908 -0.350211 -0.866842 1.119150 -1.580764 -0.311858 -0.714513 0.254930 1.021634 -0.958785 -0.270724 0.772549 -1.379805 1.573093 -0.365040 -0.497700 0.688779 -1.593548 -0.982090 1.897839 0.286306 -0.341183 -1.023160 -1.252319 -0.400310 -1.335431 0.454498 0.394089 -0.118124 -0.744106 -1.399322 -0.119816 1.212392 0.304300 1.182316 -1.506017 -0.457689 0.896861 0.032050 0.756127 -0.988816 -0.273276 -0.304586 -0.073472 0.417382 -0.600489 0.874229 2.024202 -0.989040 0.896357 0.563256 -1.007794 0.157189 0.770379 -1.990434 1.952897 0.283259 0.402149 0.256809 0.474472 -1.022857 0.000340 0.167095 0.247412 -0.161633 0.338139 -0.389551 -0.474193 -0.230427 -1.315800 -0.781757 -0.320793 0.608079 -0.334308 0.499369 -0.309344 -0.906122 -0.611175 -1.199901 0.390285 1.146738 -0.290800 -0.593386 1.335671 0.077155 -0.377780 0.096045 0.131001 0.508145 1.161460 -1.804458 0.012086 -0.002225 0.588241 -1.420115 -1.536127 -0.154519 -1.076590 -0.588819 0.190873 -1.492425 -0.538818 -1.067192 0.071909 -1.419393 -0.490235 0.618072 2.135993 0.835846 -0.794508 0.816718 -0.565141 0.982013 0.232716 -0.107327 0.250233 1.072895 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -3.357355 3.326773 0.450479 -2.561181 8.480554 -2.391148 1.268933 2.763981 -3.624037 6.709024 -2.342111 -0.639481 -1.505130 -7.621073 0.611407 -2.617749 -0.733436 3.010656 0.809609 3.901184 2.467579 -4.237870 0.465524 -0.077100 -2.125613 -6.791664 -0.392413 2.269091 7.010697 -5.360782 1.320925 0.214095 6.909152 -1.180639 5.922069 4.738162 1.341840 4.181392 2.329909 -4.130688 -2.298716 2.728061 -3.454075 -4.113481 -0.031479 -0.376528 -4.873174 -2.498852 2.484396 -1.318944 -0.654388 5.381867 -1.906115 0.154269 -4.827931 4.873165 3.065410 0.291960 7.075991 0.406351 0.116578 -1.588652 -6.537183 5.778739 -2.285585 -1.310142 -2.094970 -3.114468 2.405934 -0.404587 -2.388927 -2.926207 -0.965724 6.600911 3.988893 -5.559637 0.299829 -2.795015 -9.761649 -6.204412 -5.261515 1.789411 -0.612108 5.073170 1.031125 2.294328 1.494060 3.702199 -2.000527 -8.794691 1.960348 6.762398 -2.680291 -2.625541 -2.292691 7.065697 1.436502 0.704833 -3.096055 -2.327312 1.417868 -1.921071 3.128603 -5.576894 2.423537 -6.805249 -0.430748 -1.622322 1.491427 3.581562 4.958384 0.604158 3.365875 6.814499 -6.097617 -0.722705 -6.691299 1.580903 -0.674798 1.631710 -1.393425 3.207846 0.147268 2.432380 5.891356 -10.064529 1.849644 -0.085839 0.233190 -7.286868 -0.455921 -2.475781 -1.157791 -2.181217 3.107420 -1.044768 -0.653782 -2.279345 1.203157 2.379917 -3.184612 -1.441000 2.533893 8.312562 -7.023680 1.925376 -1.243443 -1.972634 -1.269267 2.923838 5.317375 5.230334 7.828522 5.245849 -0.332909 4.866924 -6.809975 -0.192148 6.174753 1.094296 -4.594437 7.058448 -4.972567 -2.260686 0.371654 5.948333 5.001976 0.025587 -5.824053 -4.628134 5.774244 1.933163 6.148686 -1.646137 -0.205409 -1.087537 6.178883 1.653733 -4.591977 7.409167 2.365763 -4.709967 3.570736 1.877283 -4.838269 -2.019186 4.397981 -5.466820 0.641110 -2.654412 0.917167 3.283588 -2.162057 -1.012019 -0.388830 -4.440081 6.161854 -1.528223 -1.050098 3.614343 -3.581188 -5.256860 5.540807 -0.535887 -1.394749 -5.000342 -5.674703 -5.090403 -3.913105 1.976917 -0.215371 -1.985993 -2.544696 -5.521359 -1.079233 5.125200 1.891240 4.314925 -7.967852 -1.413296 2.744231 4.281465 3.369293 -1.183478 -0.544833 1.117443 0.530647 0.542954 -0.207531 5.226473 8.644949 -3.679608 3.209779 -2.463093 -2.435149 3.112686 3.089246 -8.261252 6.820052 0.781609 4.881152 -0.012366 1.358387 -2.483180 0.814115 2.018191 -1.006111 0.641127 -0.193095 -0.842782 -2.125618 -0.016806 -4.666114 -4.821633 -1.723904 1.729395 -0.496387 2.223631 -0.994498 -2.379980 -1.645162 -3.551208 1.559843 3.690467 0.513891 -0.439332 4.395539 0.746342 2.385780 2.066974 0.268232 1.912041 2.880040 -6.330111 -0.401294 -1.814649 3.171185 -2.712598 -8.261394 1.217122 -3.848996 -2.723155 2.920045 -7.001372 0.089927 -4.190670 -0.395117 -8.292030 0.011020 1.348626 7.926059 2.098157 -2.650080 2.376919 -2.354733 2.893515 -0.699898 0.217982 2.139344 3.998395 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.589685 3.099063 1.397126 -2.977849 9.066240 -1.361132 0.521159 4.502772 -4.058786 6.606330 -2.902397 0.749775 -0.881969 -5.816971 0.456806 -1.778906 -1.096631 2.843108 -0.266199 3.407692 2.368017 -2.395028 0.548847 -0.286467 -2.725311 -4.949949 -0.836833 2.360306 5.200329 -3.936051 1.007089 0.176750 6.366804 -1.924195 5.809097 4.665846 1.958758 4.083407 1.459998 -3.031138 -0.862032 2.296578 -3.450110 -3.805122 0.115440 -1.188197 -5.140167 -2.317329 2.504738 -2.555628 -0.518338 4.999188 -1.293089 -0.096415 -3.445108 5.556121 1.954534 -1.113695 6.917519 0.760012 -2.440477 -1.016912 -6.283538 6.407573 -2.252292 0.818288 -2.728436 -4.469364 1.031855 0.677289 -0.563601 -3.531267 -1.437625 5.662278 2.561954 -5.278100 0.848069 -2.712243 -5.781887 -5.913787 -4.055170 2.260044 -0.211627 4.167268 0.641628 2.080121 0.512784 3.350950 -2.085839 -8.237895 1.161111 6.440287 -3.329468 -1.562029 -4.019484 4.343720 0.986717 0.524345 -2.725494 -2.244873 1.854908 -0.928331 2.757707 -5.652732 3.582814 -5.441878 -0.467906 -0.210705 1.895524 3.071534 2.123105 1.673117 3.832272 6.256836 -3.943808 0.453488 -6.069772 1.825193 -1.652438 1.460622 -1.848888 2.701881 1.611866 2.562589 5.843137 -8.441606 2.433789 -0.510751 -0.974215 -6.667706 0.228954 -2.013448 -1.618921 -2.020999 2.939313 -0.703020 -0.798371 -2.154951 1.783603 1.483213 -3.316776 -2.219941 1.876466 5.883564 -6.262726 1.680852 -1.061597 -1.318320 -1.004657 3.603166 5.498311 4.834113 7.788448 4.675247 0.244679 2.787288 -6.702592 0.024072 5.726190 1.388135 -4.658932 6.798671 -4.782594 -2.096883 0.825773 4.993318 3.754986 1.761237 -5.069284 -4.645917 3.864900 1.733523 6.612280 0.078731 0.131194 -1.453140 4.526567 -0.774058 -3.584868 6.952344 3.112099 -5.244915 2.726452 2.254798 -2.817730 -2.558838 4.394380 -5.584434 -1.045691 -1.373185 0.356443 3.418026 -2.436316 -1.761395 0.684546 -4.544659 6.351269 -1.513028 -1.383465 2.692960 -4.055887 -4.592916 4.736409 0.436914 -1.553490 -3.955244 -4.509147 -4.134265 -4.524095 1.624311 1.332368 -1.411839 -2.861808 -5.319893 -1.006555 3.779167 1.025213 3.757879 -7.528553 -1.528410 3.138014 1.847798 3.333807 -2.340493 -0.349897 -0.427551 -0.247418 1.032511 -1.527013 4.572891 7.955756 -3.337203 3.967415 -0.379027 -2.727365 1.690999 3.166769 -7.343366 7.043920 1.264232 3.765699 0.477539 1.533164 -2.604799 0.742951 1.027118 -0.642355 0.218637 0.788195 -1.430692 -2.084429 -0.679975 -4.823933 -3.733424 -1.011607 2.018096 -0.915930 1.844396 -0.577322 -2.848880 -2.212338 -4.081764 1.132534 3.597410 -1.256139 -1.680685 4.472859 0.825698 0.337734 1.225984 0.337541 2.477706 3.266363 -6.277676 0.385616 -0.963462 2.470854 -4.730190 -6.105597 0.355850 -3.745497 -3.166850 1.983284 -6.047293 -1.196666 -3.811467 0.274068 -6.275979 -1.508401 2.102240 7.953520 1.960027 -2.977253 2.682179 -2.305339 3.350494 0.118302 0.188418 1.098152 3.599686 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -1.344742 0.459271 0.212349 -0.943869 2.820331 -0.581709 -0.048353 1.379690 0.016811 1.755362 -1.286198 -0.593831 -0.788983 -1.776054 0.209150 -0.451195 -0.003021 1.264939 -0.711177 0.382750 1.135729 -0.207363 0.326135 -0.513250 -0.532780 -1.067499 -0.557258 0.521893 0.750900 -0.549291 -0.243247 0.300849 2.196598 -0.213916 1.683287 1.345576 0.906786 2.093753 0.019776 0.416647 0.168022 1.142963 -0.931996 -2.002606 0.773159 -0.919144 -1.341788 -1.032140 0.987538 -1.393855 1.169702 1.475931 -0.117378 -0.197593 -0.981847 1.109531 0.808366 0.455251 2.115506 0.644642 -1.154931 0.188324 -1.936103 1.454364 -1.159490 1.264908 -0.302738 -1.999929 -0.659359 0.475548 0.771884 -1.429123 -1.257523 0.992919 0.519579 -1.193404 0.650461 -0.485429 -0.386314 -1.263818 -1.774917 0.431698 -0.501462 1.347627 -0.253569 0.278280 -0.407784 0.485044 -0.034991 -2.058585 -0.195261 1.832094 -0.973185 0.546053 -1.244012 0.386747 -0.045119 0.011235 -0.998605 -0.672838 0.516505 0.089749 0.829983 -0.415598 0.118614 -1.267857 0.895426 0.530018 0.280787 0.414748 0.842675 0.307226 0.658258 1.408214 -0.817683 0.623840 -2.112088 0.669569 -0.407302 0.507700 -0.415224 0.774813 0.589386 0.143701 1.430500 -2.264562 1.284988 0.003410 -0.780811 -1.447038 0.570538 -0.467406 -0.910146 -0.607851 1.348005 -0.027863 -0.526522 -0.453811 0.532138 -0.015856 -1.146359 -0.604050 -0.170458 0.974992 -1.316809 0.279158 -0.630127 -1.020973 -0.226218 0.885665 1.068058 1.219195 2.247277 1.563444 -0.339635 -0.191182 -2.100683 0.414883 2.109862 0.263233 -1.685535 1.432472 -0.944421 0.118269 0.774403 1.131566 0.928193 0.999352 -0.499966 -0.552239 -0.030192 0.203172 2.071335 0.858354 0.678740 -1.229783 0.555514 -0.484037 -0.488990 2.655697 1.273213 -1.939458 0.313006 1.014985 -0.862703 -0.986452 0.763441 -1.004093 -0.310099 -0.835392 0.549134 1.133580 -1.366430 -1.118866 0.427028 -1.631938 1.869794 -0.387891 -0.255185 0.769262 -2.104908 -0.906790 2.078409 0.214038 -0.526594 -0.921899 -1.394082 -0.816295 -1.880646 0.696682 0.604482 -0.381494 -1.070446 -1.475380 -0.040320 1.723551 -0.062258 0.719147 -1.304292 -0.416729 0.942904 -0.231043 1.216311 -1.344672 -0.471369 -0.246810 -0.175724 0.875361 -0.305624 0.455241 2.382816 -1.331262 1.025091 1.121454 -0.448835 0.093167 1.404657 -1.626033 2.047350 -0.089129 0.917079 -0.143350 0.850623 -0.758841 0.162851 0.167844 0.317610 -0.182013 0.850182 -0.833253 -0.499190 0.127765 -1.734090 -0.811859 0.296330 0.844895 0.282708 0.411123 -0.172309 -1.055906 -0.397290 -0.780920 0.224986 1.462882 -0.231219 -1.237730 0.723291 0.216660 -0.815837 -0.286762 0.436335 0.468035 1.642272 -1.852552 0.404636 0.049539 0.128380 -1.705158 -1.409108 -0.192074 -1.161235 -0.896753 0.986465 -1.766613 -0.660685 -1.079901 0.772648 -1.421916 -0.333797 0.034501 2.062184 1.117548 -0.387737 1.254253 -0.156611 1.247159 0.144119 -0.517923 0.469082 1.530376 diff --git a/src/test-suite/oracle/FA_llvm17_onDemand/ir2vec.txt b/src/test-suite/oracle/FA_llvm17_onDemand/ir2vec.txt index a555c2f34..3438e39c5 100644 --- a/src/test-suite/oracle/FA_llvm17_onDemand/ir2vec.txt +++ b/src/test-suite/oracle/FA_llvm17_onDemand/ir2vec.txt @@ -1,269 +1,269 @@ -PE-benchmarks/channel-assignment.cpp__main = 1.214859 -1.467144 0.548351 1.809711 0.309289 -0.034176 0.827609 0.908572 0.492141 -2.997323 -1.230067 0.351916 -0.046256 -0.079139 0.349068 0.038488 0.938696 0.541725 -4.123290 0.099235 0.716910 0.255794 0.169921 -0.459484 0.065116 -1.026001 0.653536 1.580560 0.180232 1.967150 -0.711350 0.355190 1.692322 0.258297 0.835825 1.897223 0.447583 -0.118724 -0.438268 -0.132137 2.913493 1.009609 -0.650481 0.847407 0.421098 2.345535 0.940496 1.837446 1.288356 -0.874839 1.140127 -1.734866 -1.153334 -0.755545 -2.175803 0.166368 1.974572 1.665886 -1.214609 1.470145 -0.806626 0.396828 0.726859 -0.061319 2.140915 0.625072 1.429966 1.270018 2.085870 -1.854784 -0.009200 0.481007 0.920412 0.373199 0.489798 -1.859477 -0.975760 -3.905281 0.217384 -2.687542 -0.517548 -0.271774 1.504136 -1.405474 0.339610 1.121843 -0.504391 1.532716 -1.094042 -0.233527 -2.238529 0.010361 0.703660 2.670249 0.004365 0.002965 0.716576 0.816789 0.434899 1.108508 0.895292 -1.825966 -1.078188 -3.893772 -0.927554 -1.204779 0.192264 0.034430 -1.631627 -0.112548 0.933635 0.369590 -2.625889 -0.307207 0.866930 0.882875 0.549957 -0.915595 -0.274192 -0.152316 -0.020188 0.817900 1.418306 -1.952677 0.439170 -0.948272 0.489008 0.760468 0.660053 0.100329 -1.148014 -0.776015 0.619626 0.430957 -0.118834 0.381005 0.233131 -0.609185 0.976445 -1.894716 2.133548 -2.148803 0.099486 -0.797160 -0.692575 -0.830546 3.380866 0.783806 0.867623 0.410074 -1.213400 0.242194 -1.659880 -3.536066 0.563501 0.423041 0.887410 0.237838 -0.496183 0.367126 -1.164419 -0.145492 -0.039462 -0.812544 -0.681720 -0.060355 -0.553537 0.249386 -0.705039 -0.884287 0.821960 1.568349 0.023705 1.481739 -1.045955 -2.586413 -1.896455 -1.390288 1.792588 -0.827252 -0.310047 -0.328271 -0.515547 -1.816779 0.888650 -1.465096 0.513244 -0.313873 -1.750618 -2.460253 0.814722 -0.824060 0.965390 1.021665 -1.521587 0.135561 -0.149532 1.463099 0.222957 0.461644 0.527654 -2.213830 -1.830042 -0.429255 -0.453062 2.515231 -0.055065 0.114362 -0.732034 -0.689909 -1.031101 1.662391 -0.986227 0.801876 -0.149693 -1.527960 1.416844 -0.786736 0.106802 -1.635339 0.990050 1.014965 -1.794000 2.858265 1.985428 -1.616552 -0.883236 -0.962547 0.367549 0.665122 1.973600 -1.361319 -1.296934 0.783438 -0.106449 -0.066212 -0.993024 0.621473 0.084909 0.075414 -2.248460 -1.281896 1.293296 1.194615 -0.174276 0.604667 1.171628 0.442572 -0.583827 2.556399 0.396473 0.399093 -1.459588 -4.012329 1.217106 2.331254 0.381545 0.475446 -1.826244 -0.968986 0.500246 0.541398 1.745981 2.823692 -0.361097 1.931048 -1.609161 -1.857429 -1.493339 -0.449539 0.603675 -0.726270 0.427102 -0.956876 0.528839 -0.393195 0.382902 0.079839 -0.583355 -0.873504 0.549212 1.346009 0.449954 -0.500125 2.194833 -0.002997 -0.952778 -0.323264 -0.004131 -0.566424 1.118181 -0.544437 -0.473591 -0.208072 1.075639 -1.134565 0.846565 -0.093471 0.490587 0.467214 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 3.441593 -1.976313 -3.345061 8.194787 0.354827 0.888550 0.799832 -0.786119 1.010347 -9.295628 -3.854402 6.580499 1.502130 0.613780 -0.329945 2.735048 2.281260 1.653938 -8.743174 -0.143467 1.385181 -0.912442 -1.474642 -0.563162 -0.289064 -3.163202 6.397602 2.415086 0.695990 5.988415 -1.593946 4.664117 5.112712 -0.234028 2.491971 4.001606 -2.035899 0.069436 -4.181773 -2.298100 7.622240 2.217041 0.422440 3.174350 -1.008529 6.771568 2.472873 5.790398 4.442917 -2.382880 3.038998 4.585885 -2.238766 -1.561879 -6.821929 0.724916 2.718675 0.679155 -2.345551 2.251375 -1.560784 1.783713 2.581104 1.759005 7.587666 1.881969 5.967415 5.949112 5.472123 -4.880345 1.551218 0.818054 1.414931 0.600829 6.376967 -4.000788 -6.086877 0.757616 -1.384537 -5.786343 0.184508 -0.610713 7.718246 -4.620268 -2.374529 -1.238889 2.048258 6.798028 -3.069290 0.971398 -6.077637 -0.109697 -1.202321 8.206218 1.864535 2.015095 -1.466653 1.783815 -1.042669 1.401671 1.534562 -6.567397 2.014582 -9.260123 -4.125435 -4.944706 1.790872 2.085031 -6.540350 1.194579 -2.541702 4.449771 -9.188050 -0.996163 1.153500 1.575933 6.552297 -1.321491 -1.551572 0.049388 1.190044 2.617896 2.954324 -2.955937 1.895817 -1.266023 0.394470 0.872222 2.325008 1.776352 -6.166296 -2.149574 1.207198 0.625791 1.399660 3.415251 4.025290 -1.991978 2.925386 -3.701379 5.261243 -7.047359 -2.273634 -3.121089 -4.224702 -3.533852 4.874774 3.814971 6.330615 -1.595909 -1.673714 -0.049709 -8.512772 -10.341389 0.331410 0.294680 -1.266044 2.811474 -1.280487 2.506121 -5.641328 2.187347 5.018224 -3.025916 -3.509080 -0.014389 2.137051 1.110259 -2.111531 -1.764528 -0.963419 -1.469777 2.094876 7.558402 -1.130849 -11.667606 -9.669505 -2.752010 5.516768 -3.679439 -0.198871 -2.860606 -2.859064 -3.996729 -0.477467 -4.921160 0.189588 -0.081282 -2.852529 -7.314824 2.206141 -1.155368 0.003752 1.999155 -6.172625 1.493515 4.040361 1.701789 0.786385 1.660328 0.019875 -4.771135 -3.149878 2.323243 -3.592141 5.654770 3.199663 -0.523998 -3.279322 -3.073040 -5.116284 2.628629 -4.227225 4.048465 1.061740 -2.760983 2.175939 -5.268493 0.377205 -3.038347 1.814892 0.665676 -8.870129 7.483336 5.243503 -4.397008 -0.105001 -0.653823 3.185197 -0.368781 3.711802 -5.240623 -3.945861 1.069779 0.437749 0.064376 -0.873038 1.401907 -1.340214 -2.099220 -5.737894 -2.312176 5.332981 2.542242 -0.834153 -0.688044 2.635528 -3.314302 1.506968 5.604680 3.939624 1.812091 -5.120077 -12.985396 1.874088 -2.304701 -1.491273 0.839651 -3.289220 -1.911701 2.322563 -2.946047 5.394071 -1.183936 -3.105613 5.630194 -7.238919 -5.695371 -5.436335 -2.780891 1.367980 -0.443710 1.644669 -3.222495 0.872826 -1.435237 1.660562 -3.224751 -3.127723 3.255200 3.655992 5.614388 -0.021658 0.068169 6.158601 2.168910 -1.651000 -1.851659 -0.104164 -4.219078 1.435290 -8.161198 -1.109429 1.448847 3.177290 -4.352562 1.042307 -1.105589 2.296816 0.507290 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.964898 -0.515640 -1.028873 2.246820 -0.096822 -0.593847 0.605827 0.984874 0.150678 -3.722620 -2.095263 1.382135 0.465968 -0.631521 0.589587 1.062842 0.855940 0.843620 -3.862625 0.573611 0.927227 -0.053554 -1.383591 -0.163391 -0.111456 -1.139568 -0.642769 0.871512 -0.061152 2.438158 -0.871478 1.345296 2.034252 -0.296431 0.969434 1.903504 -0.642772 -0.213659 0.581535 0.058132 3.418541 1.194908 -0.115266 0.955596 0.463328 2.595014 -0.647974 3.548767 -0.182717 -0.998796 2.095694 -0.899764 -1.256300 0.355641 -2.457810 0.527593 2.336081 0.952671 -1.304499 1.670493 -1.410626 0.763042 1.070482 -0.081908 3.411138 2.023559 1.774241 2.113836 2.765551 -1.232596 0.734187 0.150765 0.735753 -0.506097 1.017488 -1.376782 -0.699899 -1.976995 0.256383 -3.229885 0.184227 -0.403553 4.374024 -2.191288 -0.075672 0.835924 1.045124 2.542652 -1.750863 0.100492 -2.261988 0.094190 -0.509506 3.532130 -0.076496 0.922417 -0.715875 0.996007 -0.070644 0.574487 -0.299886 -1.963438 -1.977307 -4.433530 -2.141140 -1.122682 -0.267340 0.286095 -3.251460 -0.166042 1.260340 1.199754 -3.970795 -0.063333 0.795008 0.536851 1.551526 2.037368 -2.380450 -0.303833 -0.386281 1.152413 0.799083 -0.795899 0.632970 -2.538246 0.209372 0.747411 0.883212 0.222629 -3.451440 -0.182224 0.531638 -0.669596 -0.181320 1.274067 1.065658 -1.029562 1.287731 -1.879966 1.910594 -3.728659 -0.789872 -1.706027 -2.415173 -0.705076 3.046086 2.667917 1.853751 0.330121 -1.129878 -0.382943 -3.712124 -3.927521 0.180148 -0.573862 0.907315 -0.067697 -0.348686 -0.100871 -1.378102 0.364895 1.011098 -1.534353 -0.766116 -0.881433 3.172995 0.159908 -1.134181 -1.430293 -0.194486 1.093680 -0.251786 1.708458 -0.864971 -2.726867 -3.622349 -1.258826 2.082541 -0.793906 0.433574 -0.991653 -0.150434 -2.399796 0.288073 -1.569539 0.103258 -0.402960 -1.212148 -2.783122 0.625144 -0.251239 -0.705835 -0.048223 -1.925489 0.475340 1.945820 1.463528 0.353651 0.621165 0.107207 -2.303557 -2.362263 0.101394 -0.836649 2.618879 2.354875 0.085600 -0.936142 -0.617414 -2.662372 1.900685 -2.201601 1.077168 0.292724 -1.447775 1.784301 -2.096776 -0.892121 -1.990911 0.894328 -0.089758 -3.920092 3.309268 1.881563 -2.151305 -0.421261 -1.860802 1.478523 0.614394 2.293147 -1.223031 -0.676654 0.637688 -0.308770 -0.192030 -0.688367 1.104671 -0.795034 0.353063 -2.334547 -0.812293 2.398737 1.553234 -0.365919 0.494398 0.401419 -0.181537 0.809352 2.333516 1.038494 -0.474680 -1.575618 -5.223988 0.761926 0.131839 -0.374849 0.230921 -1.513658 -1.094820 0.071684 -0.660804 2.290574 0.829710 -0.263307 2.016247 -2.714868 -2.542590 -1.575457 0.336165 0.448871 -0.988711 0.558879 -1.047956 0.409195 0.118021 1.344853 0.288063 -2.111679 -1.778947 0.646935 2.139592 0.057314 -1.032232 2.548361 0.357854 -0.639606 -0.556538 -0.287777 -0.280870 0.890865 -1.915090 -0.743366 -0.457860 1.104922 -1.851215 1.768462 -0.156141 0.985980 1.081820 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 11.903030 -2.219369 -0.272941 12.110091 3.234217 -3.701739 1.489488 8.044522 1.286899 -14.159470 -7.898091 8.891445 -0.629363 0.029964 4.330265 1.871185 5.100419 4.602514 -23.448324 3.410209 -1.252105 1.125187 -4.639540 -8.435689 2.085596 1.613948 5.236282 7.134318 2.095416 8.972222 -8.758312 2.804627 6.213731 2.693548 8.391273 2.705877 1.178137 -3.474849 -6.492331 -9.137940 18.760015 6.675852 -0.674826 11.257595 3.327500 10.761591 3.507132 9.411209 5.470193 -2.490167 3.677671 -5.840957 -6.583939 -0.313430 -15.382982 5.336764 9.745306 4.507489 -7.254508 7.553854 1.059327 4.850574 6.122633 -4.957630 15.484334 3.359127 9.891481 8.723321 13.249190 -8.819897 3.045517 0.049285 12.165256 2.243272 2.686270 -11.931276 -2.272938 -19.485634 2.383114 -20.613314 4.073838 -4.957614 13.360621 -9.053244 5.604144 5.130726 -0.744896 10.210117 -11.077413 1.210202 -10.914258 0.145581 -1.831981 16.610624 -1.401318 1.368914 3.671176 4.684768 0.104177 6.273579 2.180920 -7.418571 1.521477 -23.535912 -7.466557 1.032779 -2.079433 -3.460927 -6.981082 2.387960 4.303589 7.418813 -13.537044 -8.050470 1.985685 0.085923 -2.655222 -3.427400 -1.473956 -2.215348 -4.110573 8.914124 4.211226 -10.870474 5.415350 -3.544320 -3.996941 5.725612 10.964501 5.329536 -7.604898 -4.910921 2.990983 2.376499 -3.100501 1.237679 0.749776 -4.754296 6.598213 -8.717414 9.804941 -11.582660 -3.149250 -6.652417 -2.901214 -2.713497 13.819547 2.202893 6.563309 8.143011 -1.387805 -0.035776 -10.952978 -18.580866 7.752548 4.472583 1.352136 1.626563 -0.504089 1.524513 -6.978994 -7.088196 7.123323 -10.281008 -11.069827 -6.823100 5.655346 -0.024645 -4.595187 -8.010205 8.843869 11.138622 -0.862894 6.095104 -4.558181 -14.069864 -9.980024 -5.872057 9.990101 -3.601242 -0.378300 0.855551 0.002057 -7.266490 3.101738 -11.569934 5.232969 -1.205547 -9.401810 -12.974916 2.323768 -2.554847 3.553656 2.497253 -9.805737 6.580440 1.598696 10.876101 -5.246716 5.775791 7.806111 -14.275838 -14.731278 -3.815076 0.965848 12.388561 2.472476 2.681946 -7.980765 -4.226141 -4.174881 10.488965 -12.190858 6.015336 -1.115549 -5.363925 6.352785 -8.588366 -2.931847 -8.433057 5.515129 3.674347 -13.740332 15.849120 9.763679 -12.785009 -4.569091 -13.647158 8.230710 2.017108 18.365537 -9.533090 -4.842033 4.102475 3.331791 -2.644359 -9.684153 5.750351 3.106895 -3.001559 -12.521817 -8.751728 7.499990 5.717876 0.962134 3.256696 6.639725 2.260852 -3.738744 18.095693 2.731086 2.562954 -10.264174 -22.113964 2.995337 13.552090 3.093862 3.405706 -10.776657 -7.850051 -0.831258 1.195424 9.786902 10.319141 1.858425 9.674781 -11.107602 -9.829979 -7.171329 1.952694 1.652568 -5.248549 3.990120 -7.918887 -0.601806 -3.136434 4.612745 -4.070867 -1.199042 -9.267458 -0.028567 7.165197 2.046536 -3.697438 13.372782 5.136178 -6.460850 0.535016 -2.840251 -3.779564 3.800866 -6.794526 -3.545328 -1.354554 2.736090 -9.482052 6.716269 2.905993 4.671293 0.294030 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 8.057361 -1.148251 -9.022462 23.731620 0.488451 2.124515 2.769478 -1.180263 0.380086 -29.016350 -11.957307 16.154191 4.633255 2.424929 -0.423579 7.254546 4.540388 8.027140 -25.563025 -1.598457 5.658785 0.400965 -0.430259 -5.048554 -0.220634 -5.273918 14.289156 5.674882 2.585806 17.196159 -4.330146 12.907663 14.681011 0.174973 4.160400 9.521397 -4.308031 0.983350 -11.248325 -7.356485 21.048644 5.555001 1.547575 9.383983 -4.291227 18.465754 7.508408 12.941821 7.983592 -6.471600 5.769163 10.258762 -6.488318 -4.898269 -17.473507 2.886647 10.557958 7.181361 -4.810573 7.142274 -1.463355 4.521226 7.528672 0.465644 19.584713 7.375315 15.081034 18.041495 15.852926 -13.784218 4.588190 -0.636209 2.108291 -1.506313 16.529001 -15.991298 -14.704724 -1.123162 -5.372971 -23.345188 1.138511 -0.817887 26.272654 -13.721348 -4.155575 -1.575680 6.668921 18.702545 -7.760957 2.269270 -16.476295 -0.723841 -6.632866 25.228046 5.080423 3.588613 -4.997731 4.675461 -0.850784 3.234423 5.190281 -15.110847 5.182632 -26.124838 -11.076417 -10.744986 5.218437 6.528308 -17.084395 1.068921 -7.037521 11.129434 -29.154721 -4.789839 4.790040 7.164508 14.239870 -6.311427 -7.618014 2.035169 1.720300 6.439795 8.008603 -10.502288 5.070371 -0.716813 -4.543317 1.338161 6.607090 4.984881 -20.459887 -8.283584 -0.147021 1.194714 4.613010 8.115597 10.883186 -3.400178 8.224047 -12.084322 14.592026 -21.439107 -4.554071 -5.825218 -14.085978 -9.832737 12.479466 7.595862 14.218383 -5.579462 -5.278843 -1.007781 -23.035948 -26.735739 3.553578 2.980367 -1.310185 9.120884 -4.048533 5.912657 -15.770685 5.329628 16.586332 -7.471210 -10.140746 0.095866 12.167314 2.153969 -6.453049 -7.005339 -1.036404 -1.503231 5.331445 19.400691 -3.385026 -24.640442 -27.737220 -7.579195 15.896316 -9.789106 -0.777344 -8.637120 -5.898236 -11.160164 -0.734377 -15.320036 2.008426 2.833174 -9.231875 -20.923281 6.935438 -2.882433 -3.490215 7.078886 -16.286688 4.012583 11.305054 6.915821 0.462214 2.630687 2.347692 -15.328898 -11.288686 4.615322 -10.076486 11.812491 9.854269 1.149117 -12.592317 -7.228905 -13.012573 7.408166 -7.660853 10.545294 -0.707628 -3.218679 6.440497 -16.047562 4.470151 -10.483779 3.725826 2.633757 -28.914874 21.334903 12.417078 -10.310712 -0.327916 -2.619504 8.331011 -1.725936 10.032309 -14.899682 -13.108782 3.641764 -0.868314 -0.097998 -5.992041 3.636161 -3.986888 -6.124433 -16.149735 -5.213106 14.145523 7.091339 -2.669811 2.013271 9.638527 -9.075565 1.804656 17.364896 11.227667 2.637313 -12.484810 -32.896375 4.958230 -5.820092 -1.850839 -0.055113 -7.605905 -5.191433 8.554281 -4.125718 14.391313 -0.705804 -9.781752 15.389348 -19.865983 -15.023409 -12.987776 -4.890890 6.275710 -2.385796 0.671108 -8.620253 2.892108 -1.372786 3.096925 -5.943924 -11.269762 6.761535 8.345161 19.412144 -1.466024 -0.087871 18.230298 5.274624 -4.627295 -2.807693 -1.421609 -9.430920 3.059869 -22.166853 -2.022317 5.070531 8.250809 -12.150615 3.883139 -4.849365 2.796322 2.831832 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.924978 -0.545719 -0.207341 1.187406 0.101650 -0.010766 0.333950 0.593001 0.195532 -2.275640 -1.213600 0.436001 0.110420 -0.078601 0.468723 0.433065 0.572463 0.506747 -2.292082 0.159738 0.585641 0.115277 -0.050203 -0.025828 0.078173 -0.609592 -0.410680 0.373499 0.146003 1.304548 -0.574599 0.740958 1.127871 -0.017983 0.337817 0.958507 -0.132270 -0.254451 0.180759 -0.136782 1.896885 0.428769 -0.065665 0.605367 0.097671 1.391906 -0.347963 1.993091 0.555519 -0.606707 1.182917 -1.339870 -0.675950 0.228053 -1.363863 0.397008 1.107974 0.719670 -0.591712 0.781621 -0.629618 0.436752 0.460180 -0.574216 1.634851 0.964130 0.968344 1.101328 1.387318 -0.840527 0.286610 0.158614 0.350460 0.095220 0.391277 -0.992279 -0.056175 -1.826960 0.019273 -1.614904 0.029166 -0.439381 2.174788 -1.133026 0.019011 0.716300 0.191802 1.402874 -0.679284 0.285788 -1.399464 0.133830 0.213168 1.347975 -0.026347 0.186774 -0.356885 0.339668 -0.090304 0.362752 0.171607 -0.911927 -1.339458 -2.385683 -1.080484 -0.557063 0.108764 0.198214 -1.799695 0.187691 0.709085 0.677817 -2.076682 -0.155456 0.359489 0.541982 0.559918 1.044694 -1.121370 -0.446863 -0.002811 0.717331 0.460281 -0.791295 0.355489 -1.493554 -0.011912 0.376261 0.534616 -0.055246 -1.243396 -0.438356 0.205293 0.000174 -0.020709 0.565547 0.675796 -0.391421 0.734239 -0.881523 1.002786 -1.772452 -0.458780 -0.760584 -1.023999 -0.492430 2.669091 1.239690 1.012199 0.489912 -0.774663 -0.289902 -1.643147 -1.911336 0.026102 -0.258651 0.764760 0.259134 -0.195377 0.166020 -0.632582 0.193338 0.017023 -0.747060 -0.425894 -0.315511 0.631767 -0.086966 -0.450503 -1.051744 0.125739 0.917724 -0.562065 0.878775 -0.406247 -1.187290 -1.648881 -0.849135 1.135045 -0.547243 0.340559 -0.473717 0.128833 -1.138859 0.215948 -0.868454 -0.138578 -0.012359 -1.122199 -1.575828 0.442432 -0.281613 -0.237615 0.374571 -1.021816 0.295882 0.704642 1.240087 0.268190 0.338439 -0.073030 -1.504626 -1.443563 -0.384272 -0.634123 1.433310 0.881662 -0.084718 -0.697095 -0.546572 -1.148387 1.220864 -1.218723 0.503817 -0.064404 -0.688899 0.754706 -0.960383 -0.247421 -1.268989 0.499162 0.191586 -2.387190 1.579476 0.886435 -1.097092 -0.312947 -1.264986 0.730820 0.361691 1.297665 -0.537590 -0.310614 0.353282 -0.022574 -0.077204 -0.753216 0.610096 -0.322684 0.070629 -1.327296 -0.588749 1.120340 0.811272 -0.215619 0.317489 0.735018 0.469199 0.363163 1.346803 0.512340 -0.364991 -0.821308 -2.912178 0.479402 1.403829 -0.019134 0.383905 -1.243411 -0.512620 0.150075 -0.264635 1.203470 0.783560 0.395779 1.150359 -1.169415 -1.189210 -0.627859 0.092119 0.254347 -0.483301 0.332746 -0.562572 0.126996 0.097121 0.497930 0.175020 -1.050878 -1.124996 0.339660 1.243659 0.241809 -0.188947 1.326638 0.334044 -0.571661 -0.131438 -0.096753 -0.144079 0.329060 -0.852922 -0.253897 -0.010508 0.372250 -0.948742 0.781441 -0.098280 0.237284 0.282085 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 1.985402 -1.705968 -0.915062 3.618751 0.798214 0.511521 0.608923 0.579777 1.204351 -5.680661 -1.478791 4.617859 0.220879 0.502444 -0.529587 0.912715 1.649717 1.577471 -3.672650 -0.076060 0.336545 0.492419 -0.064040 -0.617431 0.094223 -0.877661 2.941198 0.506066 1.082652 2.744606 -1.171962 1.595412 2.504969 -0.045146 0.921254 2.026286 1.061835 -0.551477 -2.219421 -2.186845 4.384322 0.985913 0.438852 2.759476 -0.297814 3.040160 1.506526 4.327204 3.734923 -1.203795 0.531112 -0.650833 -1.634265 -0.803806 -3.741670 1.162050 0.271576 0.984948 -1.351008 1.228646 0.481909 0.653827 1.034681 -0.489768 3.091265 0.847131 2.412662 3.263450 2.965327 -2.553936 0.178378 0.750463 1.421088 1.858935 3.816338 -2.545319 -1.885026 -0.472783 -0.678991 -2.237524 0.163275 -1.202382 5.107698 -2.555591 -0.129126 0.561758 0.477183 3.117915 -0.797944 0.452668 -3.717921 0.135366 0.755236 3.314278 0.585811 0.519204 -1.072400 0.388339 -0.500036 0.831776 2.002511 -2.827711 0.353871 -4.231331 -1.161439 -2.239743 0.153821 0.806777 -2.965125 0.496822 -1.131979 3.604114 -4.884323 -0.829987 0.619065 0.295542 4.302936 0.399828 -0.215036 -0.087647 0.553841 0.564673 0.519302 -2.552269 0.194997 0.057617 -0.304614 0.144831 1.131056 0.665892 -3.441578 -1.511581 0.408047 1.640628 0.336655 0.937406 1.754573 -1.814616 1.361477 -1.513508 1.916111 -2.685096 -1.765527 -0.461597 -2.057946 -1.891475 6.405615 0.833940 4.254884 0.014421 -0.996429 -1.059339 -3.268374 -5.291127 1.162419 -0.243165 -0.088399 2.119377 -0.326230 0.835042 -2.385912 0.371027 1.406366 -1.309190 -1.366145 0.350575 -0.961548 -0.700827 -0.296478 -1.901561 0.287150 0.984687 1.046681 2.980573 -1.172203 -6.376029 -3.917190 -1.456546 2.494101 -1.693818 0.415101 -0.566192 -1.145657 -0.790222 -0.475517 -2.277251 0.538105 -0.280983 -2.340784 -3.679143 1.435875 -1.075833 -0.168622 1.761795 -2.524892 1.145508 0.212597 2.163682 -0.271047 0.431221 0.023450 -3.836194 -2.392743 0.048728 -1.721911 3.376780 0.724203 0.000000 -2.167156 -1.559866 -2.473066 1.747577 -3.989231 1.677590 0.354509 -1.026639 1.127749 -2.358639 0.702082 -2.523068 1.539301 1.124531 -5.177479 3.526367 2.305451 -2.134251 -0.342709 -0.648781 1.056632 0.587879 2.352652 -2.455267 -2.246569 1.405776 -0.143961 -0.024935 -1.589362 0.672173 -0.173052 -0.089260 -3.504072 -1.614374 1.763029 1.210360 -0.570961 -0.347668 2.210100 -0.537709 -0.268085 3.853472 1.932609 1.351684 -2.912108 -6.652818 1.311346 1.715950 -0.084081 1.161240 -2.753750 -0.525900 1.544855 -2.148205 2.226300 -1.321122 0.110567 2.632798 -4.186597 -2.433732 -0.856151 -1.516429 1.305596 -0.134383 1.632723 -1.605926 0.202100 -1.107650 0.570218 -1.729141 -0.941180 1.372954 1.739548 2.380407 0.753049 0.595714 2.857604 0.687927 -1.308615 0.493210 -0.277126 -0.827012 -0.011873 -4.610626 0.057687 0.710275 1.065691 -2.011302 1.260905 -0.520199 0.436944 -0.284133 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.255305 -0.502387 0.262949 0.650705 0.237250 0.231292 0.193692 0.081832 0.084752 -1.120528 -0.573698 -0.094122 -0.063195 0.136756 0.274045 0.017102 0.458385 0.106968 -1.174228 -0.114705 0.239392 -0.063253 0.189351 0.095495 0.029502 -0.460667 0.197270 0.517177 0.095343 0.645325 -0.285366 0.303349 0.581338 0.140796 0.286933 0.544761 0.115579 -0.107051 -0.235433 -0.079843 1.068710 0.024736 -0.067892 0.282654 0.094578 0.789155 0.152297 0.692099 0.725534 -0.295438 0.616946 -0.710359 -0.216778 -0.118395 -0.853764 0.108120 0.568149 0.432795 -0.432529 0.378646 -0.267627 0.213658 0.147610 -0.217785 0.751241 0.195282 0.550211 0.434898 0.554185 -0.680579 -0.060591 0.241464 0.221666 0.259761 -0.056405 -0.554630 -0.041514 -1.334333 0.004614 -0.673541 -0.090833 -0.194041 0.503012 -0.370387 -0.130053 0.385875 -0.365087 0.539758 -0.240133 0.091468 -0.851616 0.042914 0.386703 0.461619 0.099241 -0.139701 0.218941 0.153958 0.026945 0.426485 0.247971 -0.552479 -0.535912 -1.358050 -0.559454 -0.357010 0.302378 -0.005206 -0.624175 0.116607 0.353212 0.058022 -0.760166 -0.147849 0.215796 0.432368 -0.100295 -0.177575 -0.254614 -0.327011 0.171739 0.414014 0.494710 -0.463268 0.282560 -0.662809 0.168729 0.162147 0.353169 -0.070290 -0.045915 -0.395916 0.105936 0.217863 -0.051298 0.042328 0.197037 -0.016201 0.409958 -0.383142 0.692795 -0.712981 0.024246 -0.427890 -0.158050 -0.296258 1.377904 0.398736 0.460864 0.334934 -0.532036 0.075965 -0.560982 -1.042663 0.022982 0.130597 0.360087 0.233516 -0.202890 0.332037 -0.354520 -0.008257 -0.036623 -0.310342 -0.305348 -0.053999 -0.519797 0.035336 -0.248457 -0.474239 0.343702 0.517097 -0.353779 0.519530 -0.280040 -0.632549 -0.586289 -0.552879 0.564490 -0.375799 0.049235 -0.060891 -0.061034 -0.665289 0.285832 -0.512827 -0.085127 -0.060909 -0.792585 -0.822658 0.285035 -0.298264 0.177893 0.472357 -0.598779 0.120278 0.027189 0.578263 0.223821 0.197267 -0.011751 -0.709572 -0.680514 -0.298950 -0.273600 0.706654 0.076422 -0.077653 -0.320767 -0.412444 -0.298036 0.555389 -0.344976 0.264536 0.023911 -0.532563 0.236158 -0.342937 0.051276 -0.425082 0.274213 0.391794 -1.020285 0.756328 0.591099 -0.570124 -0.364703 -0.531256 0.208580 0.087648 0.703006 -0.343165 -0.155143 0.183857 0.142119 0.006878 -0.373232 0.269473 0.113382 -0.147662 -0.836118 -0.568617 0.466687 0.433049 -0.038008 0.184723 0.593117 0.435667 -0.003770 0.866340 0.134644 0.042928 -0.316168 -1.421153 0.353351 1.081452 0.065643 0.381686 -0.725402 -0.283034 0.077725 0.036719 0.608917 0.736835 0.136669 0.724551 -0.275113 -0.538708 -0.455128 -0.252130 0.127080 -0.301640 0.193272 -0.362263 0.066227 -0.180078 0.061657 -0.008447 -0.164846 -0.441812 0.153319 0.486495 0.173161 0.118841 0.673904 0.130712 -0.422058 -0.118323 0.059432 -0.189371 0.472153 -0.314712 -0.219862 0.003122 0.206283 -0.363689 0.068971 -0.116430 0.141438 0.076117 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.470075 -0.063040 0.250976 0.741960 0.168189 -0.090309 0.423261 0.479374 0.085875 -1.480856 -0.731717 0.312709 -0.003602 -0.075961 0.137925 0.027080 0.386152 0.697451 -1.550971 0.008080 0.469769 0.344374 0.179002 -0.416422 0.031665 -0.322541 -0.164193 0.540572 0.231216 1.069070 -0.419879 0.128555 0.846090 0.180940 0.233262 0.937979 0.398121 -0.068251 -0.076752 -0.284245 1.361378 0.320962 -0.114199 0.602728 0.180287 1.126503 0.161750 0.523263 0.215177 -0.478810 0.270234 -0.741669 -0.544889 -0.291485 -0.878131 0.315129 0.848695 0.881249 -0.551632 0.741771 -0.086988 0.202065 0.354933 -0.439532 0.728347 0.562636 0.197717 0.687715 1.133411 -0.902031 -0.007115 0.137184 0.357064 0.079719 0.195884 -0.587636 -0.195067 -1.592114 -0.095493 -1.502340 -0.148385 -0.100226 1.253414 -0.867085 0.356678 0.759642 -0.073508 0.710806 -0.355348 -0.191311 -1.000510 0.021907 0.101302 1.091691 0.147113 -0.030548 0.037439 0.315529 0.220560 0.491923 0.203172 -0.732533 -0.754947 -1.806280 -0.517028 -0.543086 0.012435 0.080033 -0.829712 -0.232180 0.730918 0.719595 -1.482112 -0.211396 0.487145 0.482367 -0.386724 -0.324702 -0.453395 0.054424 -0.143805 0.163387 0.413888 -0.864571 0.036486 -0.223280 -0.254263 0.103781 0.353787 0.017094 -0.689671 -0.551197 0.110761 0.022381 -0.041320 0.152052 0.134699 -0.287342 0.468292 -0.891185 0.906505 -0.954871 0.051696 -0.237564 -0.566292 -0.453399 1.272617 0.288941 0.402357 0.124448 -0.475013 -0.179146 -0.733421 -1.405101 0.539229 0.108262 0.626884 0.230698 -0.234391 0.074845 -0.607610 -0.145185 0.071139 -0.454258 -0.279009 -0.014029 0.539612 -0.148817 -0.343198 -0.746430 0.342730 0.802650 -0.067113 0.397933 -0.617559 -0.387266 -0.902224 -0.732842 0.921816 -0.425577 -0.022510 -0.196389 -0.125743 -0.635772 0.333098 -0.735986 0.255983 -0.085322 -0.749390 -1.255327 0.413757 -0.379406 -0.090649 0.571848 -0.753961 0.179292 0.107371 0.385711 -0.011336 0.078499 0.265490 -0.977389 -0.843684 -0.288501 -0.240521 0.695045 0.460868 0.253331 -0.761983 -0.374114 -0.489717 0.861255 -0.542101 0.407947 -0.132178 -0.399643 0.788329 -0.517023 0.001051 -0.866391 0.489119 0.518672 -1.246241 1.125476 0.712883 -0.730037 -0.357062 -0.577036 0.178545 0.416926 1.035038 -0.694756 -0.624549 0.536890 -0.288771 -0.038163 -0.654660 0.356337 -0.035685 0.301395 -1.000682 -0.446062 0.607583 0.653616 -0.139685 0.532942 0.709425 0.290722 -0.033081 1.157478 0.381576 0.044416 -0.696668 -1.479016 0.639936 0.792039 0.387005 0.208364 -0.674280 -0.414007 0.378906 0.203956 0.855508 0.876070 -0.105714 0.956846 -0.793037 -0.930133 -0.335916 -0.066067 0.526923 -0.480710 0.265424 -0.408600 0.214557 -0.049988 0.181536 0.209495 -0.407577 -0.630237 0.246994 0.921624 0.269540 -0.169142 1.143656 -0.033537 -0.603516 0.133343 -0.177584 0.075814 0.159446 -0.415566 -0.180358 -0.033642 0.458767 -0.652383 0.689421 -0.190522 -0.036509 0.343325 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 1.533884 -0.491581 -0.941560 3.106479 -0.046014 0.707486 0.470030 -0.022690 0.194655 -4.012581 -1.373964 3.514729 0.355228 0.595274 -0.445323 1.119624 1.201255 0.822702 -4.347284 -0.291347 0.611422 -0.255206 -0.014372 -0.394952 0.036242 -1.332646 3.038291 1.344199 0.604327 2.725087 -0.909749 1.659813 2.225722 0.029617 0.815744 1.780396 -0.606905 -0.279021 -2.271301 -1.593596 3.194045 0.672836 0.149998 1.512461 -0.506945 3.121532 1.361155 1.904402 3.340420 -1.171729 0.826095 2.275454 -1.480919 -0.936846 -2.792309 0.035487 0.374581 0.760588 -0.933540 1.043964 -0.554481 0.756767 0.984776 0.373315 2.734596 0.543720 2.422964 2.351239 2.177192 -2.569651 0.427269 0.517404 0.563349 0.912790 2.472534 -1.862579 -2.252615 -0.885176 -0.563659 -3.235121 -0.375755 -0.293595 3.631901 -2.030545 -0.880348 -0.351469 0.499715 2.764236 -1.185851 0.578740 -2.778323 -0.034315 -0.019680 3.220391 0.833758 0.359437 -0.244379 0.557695 -0.317939 0.856842 0.993988 -2.826344 0.640626 -3.523926 -1.499210 -2.314334 0.867497 0.954477 -2.466388 0.870198 -0.020605 2.439586 -3.884719 -0.667719 0.762317 0.780970 2.059347 -0.159675 -0.350178 0.001917 0.487886 1.322629 1.662121 -1.724972 0.820514 0.455508 -0.163710 0.257308 1.097755 0.842161 -2.805282 -1.534881 0.886960 0.340232 0.676158 1.233844 1.610053 -0.430447 1.323572 -1.618444 2.450998 -2.674037 -0.857651 -0.914130 -0.710564 -1.815710 2.244228 2.095816 2.350861 -0.373764 -0.471885 0.002041 -2.993360 -3.545266 0.259487 0.358101 -0.476436 1.435593 -0.571135 1.400078 -2.272221 0.757000 1.319206 -1.205852 -1.560242 0.208839 0.234629 0.415536 -0.707483 -1.157347 -0.020892 -0.640958 0.801230 2.958756 -0.749293 -5.210260 -3.749810 -1.453061 2.540980 -1.788345 -0.317269 -0.957673 -1.455494 -0.578139 -0.122211 -2.192006 -0.075034 0.116090 -1.634469 -3.279257 1.590999 -0.753313 -0.601788 1.309831 -2.684580 0.523889 1.005939 0.613009 0.355867 0.449626 0.031385 -2.398152 -1.223996 0.582501 -1.785318 2.210112 1.442897 -0.227000 -2.336856 -1.445019 -1.794953 1.291461 -2.115309 1.938228 0.067223 -1.262357 0.929205 -2.038210 0.916075 -1.142163 1.139075 0.840450 -4.764535 3.501980 2.800739 -1.916674 -0.188039 -0.207151 0.992416 0.182273 1.507843 -2.528576 -2.052871 0.534917 0.231219 0.125234 -0.101601 0.680024 -0.292698 -1.181619 -2.502261 -1.053561 2.150150 1.110553 -0.214230 -0.278871 1.737335 -0.991854 0.713715 2.501429 1.487654 0.967655 -2.055326 -5.776960 1.222708 0.248467 -0.397779 1.120591 -1.707934 -0.851842 1.216261 -1.390455 2.243970 -1.299953 -1.385969 2.442352 -2.881113 -2.347783 -2.394582 -1.534448 0.645697 0.021382 1.291997 -1.212905 0.159684 -0.773614 0.319427 -1.686593 -0.586875 1.569539 1.709031 2.463262 0.915931 0.226449 2.736115 0.754874 -1.136311 -0.640967 -0.186033 -1.837180 0.438563 -3.126448 -0.066821 0.940676 1.456234 -1.856845 0.144989 -0.078562 0.601051 -0.229904 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 1.731277 -0.643431 -0.188649 2.788082 0.250561 0.329978 0.877698 0.818928 0.593265 -4.520838 -2.154482 2.579142 0.248213 0.209101 0.097548 0.687252 1.230722 1.280931 -4.832673 -0.134142 1.034715 0.334906 0.264083 -0.737965 0.102848 -1.252057 1.436261 1.460656 0.614501 3.050028 -0.977119 1.327964 2.533479 0.343897 0.924669 2.392163 -0.167704 -0.381729 -1.268451 -1.402541 3.821466 1.027266 -0.072641 1.910937 -0.074066 3.366440 0.839532 2.072532 2.128464 -1.310559 1.198618 -0.261961 -1.724532 -0.894350 -2.914328 0.480626 1.477344 1.171789 -1.280215 1.606932 -0.142623 0.720823 1.049163 -0.450582 2.800219 1.187568 1.788014 2.406915 2.768999 -2.666058 0.315197 0.485644 0.794505 0.691813 1.571406 -2.103405 -1.499937 -2.013605 -0.329102 -3.696840 -0.512613 -0.688504 3.505371 -2.333475 -0.022754 0.642260 0.042214 2.691428 -0.995401 0.073669 -2.984821 -0.037331 0.372602 3.031815 0.406924 0.339101 -0.108699 0.680571 -0.016692 1.131118 0.941066 -2.709137 -0.767544 -4.389525 -1.343559 -2.048465 0.628517 0.769385 -2.659051 0.210535 0.184299 2.186243 -4.254427 -0.801335 1.040441 1.081107 0.827022 -0.426167 -0.773671 -0.124660 0.269089 1.114168 1.297304 -2.202416 0.588570 -0.452975 -0.389491 0.413189 1.140895 0.553448 -2.659468 -1.698354 0.782146 0.496469 0.336399 1.147395 1.249459 -0.552968 1.327799 -2.150584 2.668204 -2.981394 -0.634473 -1.097058 -1.167065 -1.684135 3.253083 1.463024 2.127382 0.128082 -0.845254 -0.148795 -2.804328 -4.223621 0.875067 0.222322 0.713654 1.123796 -0.621710 0.924443 -2.242415 0.357127 0.735177 -1.336638 -1.322348 -0.103198 0.522899 0.107190 -0.942324 -1.307964 0.468356 0.723855 0.154437 2.443600 -1.123998 -3.437935 -3.535590 -1.866950 2.755771 -1.635855 -0.185556 -0.894907 -0.829578 -1.557974 0.153629 -2.298224 0.444454 -0.021933 -2.068192 -3.673941 1.359724 -0.893348 -0.003943 1.581764 -2.557779 0.541075 0.863388 1.275568 0.177619 0.652906 0.223571 -2.590915 -1.938328 -0.034339 -1.386665 2.540839 1.329823 0.100644 -2.186550 -1.382678 -1.747697 2.085871 -2.077443 1.774380 -0.112235 -1.191365 1.586907 -1.936556 0.366863 -2.060297 1.316374 1.167033 -4.462439 3.214047 2.264893 -2.146923 -0.617069 -1.133359 0.903273 0.633752 2.319332 -2.177930 -2.073379 1.030438 -0.185933 0.007806 -1.276799 0.878030 -0.177142 -0.164758 -2.910530 -1.287787 2.259523 1.408462 -0.352751 0.757060 1.996800 -0.018009 0.387678 3.094427 1.474016 0.494072 -2.304458 -5.514121 1.517906 1.734398 0.298600 0.791026 -2.170140 -1.177446 1.156290 -0.606191 2.510984 0.643454 -0.693256 2.765343 -2.721299 -2.682967 -1.974363 -0.883983 1.076007 -0.423899 0.791931 -1.055075 0.517949 -0.312753 0.486776 -0.448504 -1.293566 -0.175649 1.386945 2.899084 0.604624 0.036669 3.147064 0.506568 -1.359381 -0.241430 -0.316906 -1.070039 0.467597 -2.733424 -0.467463 0.487841 1.396662 -2.055989 1.006931 -0.266614 0.422030 0.149011 -PE-benchmarks/word-wrap.cpp__main = 1.935194 -1.359563 -2.603056 6.628035 -0.352424 1.411742 0.783517 -0.514640 0.000354 -9.040747 -3.225214 4.158443 1.742693 1.842216 -0.321354 2.478720 1.205196 1.756936 -7.653053 -0.914314 2.317596 0.307317 0.190338 -0.033120 -0.218907 -2.286932 4.832588 1.044962 0.934948 5.499478 -1.027993 4.681876 4.993569 -0.740396 0.778127 3.152874 -0.870330 0.154608 -3.729903 -1.752365 6.379666 0.870764 0.425473 2.392405 -2.426399 5.638491 1.838266 4.236369 2.203738 -2.729063 2.527033 2.366244 -1.620249 -1.542543 -5.042560 0.732433 2.259368 2.478277 -1.174383 1.752357 -0.700844 1.010537 2.208176 1.033113 6.148042 2.418049 5.229555 5.634348 4.263588 -4.388908 1.656799 0.262148 -1.284001 -0.285251 4.995405 -3.773652 -3.725991 -0.485462 -1.434525 -5.481952 -0.905754 -0.259386 6.489176 -4.072997 -1.766581 -0.879163 1.748870 5.877718 -1.944409 1.710610 -5.542986 -0.732956 -0.124586 5.795711 1.247353 0.908794 -1.674766 1.423582 -0.622227 0.591362 2.109977 -4.877610 1.124302 -5.570077 -3.345005 -3.703385 1.718674 3.377110 -5.819606 0.495543 -2.721874 3.249493 -8.661835 -0.679086 0.803116 2.882774 6.880212 0.125223 -2.280496 0.082902 1.351920 1.302613 2.399622 -2.692402 2.471455 -1.597622 -0.060818 0.564054 1.467670 1.576505 -6.445029 -2.770081 0.473042 -0.527255 1.640039 3.483846 4.357684 -0.910104 2.542251 -3.528035 4.258791 -5.913549 -2.157538 -1.415769 -4.663074 -3.241837 4.912749 3.016902 4.066294 -1.917255 -3.536236 -0.060045 -6.747800 -7.774978 -0.115048 1.029189 -0.581393 3.728096 -1.571541 2.506883 -4.923472 2.710041 4.174142 -1.756181 -2.927691 0.440240 1.064910 1.065472 -1.510730 -1.589928 -0.581304 -1.714692 1.461708 7.074178 -0.586732 -7.476078 -9.252632 -2.139854 4.839313 -2.921050 -0.221757 -2.995308 -2.299706 -4.437381 -0.590186 -4.210854 -0.187644 0.749337 -3.207062 -6.489658 2.816628 -0.848353 -1.462328 2.466652 -4.832617 0.845048 3.059071 1.345974 0.941237 0.166587 -0.203659 -3.881433 -3.107586 2.073778 -3.821663 4.553159 1.986997 -0.423672 -3.156879 -2.810796 -3.638722 2.629046 -2.434907 3.569970 0.441057 -1.080284 1.496675 -4.981511 0.835320 -3.201630 1.271400 1.023707 -7.798314 6.264569 2.998673 -2.683640 0.342709 0.048115 2.718817 -0.269737 1.730481 -3.820115 -3.857284 1.139289 0.603741 0.270448 -1.792504 0.702285 -1.734299 -2.179556 -4.720634 -1.993112 4.436111 1.854270 -1.010989 0.008384 3.412028 -3.188253 0.588118 4.646672 4.148995 0.601509 -3.073220 -9.009603 1.926696 -1.726712 -1.070784 -0.639665 -3.383412 -0.857982 3.174381 -2.318192 4.175552 -0.471502 -2.626675 4.776458 -6.534137 -4.636456 -4.132206 -1.947070 1.436957 0.358873 0.056704 -2.230098 1.527165 0.202485 0.689039 -2.179322 -3.755269 2.813504 2.865747 5.538260 -1.078030 0.923070 5.413461 1.920298 -0.874497 -1.150135 0.383884 -3.197684 0.578830 -6.547948 -0.534450 2.293602 2.650117 -3.880726 0.525213 -1.936772 0.074540 0.619427 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 2.687388 -0.089692 -2.225552 4.045644 -0.526691 -0.240115 0.556208 0.629624 -0.107658 -5.764527 -3.231589 1.639077 1.245828 -0.000704 0.734617 2.536921 0.940485 1.217268 -6.050468 0.562555 1.835876 -0.072950 -1.073762 -0.100553 -0.007330 -1.952360 0.074246 0.560710 0.112316 3.970077 -1.368424 2.979939 3.355382 -0.731799 1.225413 2.576156 -1.662439 -0.056270 -0.171816 -0.039459 4.656888 1.543897 0.058605 0.962290 -0.470896 4.140883 -0.485813 4.361867 -0.857264 -1.902041 2.912038 0.134979 -1.691897 0.564007 -3.338600 0.737126 3.179348 1.612276 -1.449278 1.971928 -1.903615 1.378675 1.784357 0.300341 5.006227 2.558854 3.203447 3.452866 3.862876 -2.170464 1.684714 -0.004228 0.097214 -1.148759 2.556667 -2.490822 -1.823897 -1.332616 -0.137453 -4.919064 0.364819 -0.097174 6.373915 -3.549107 -0.612293 0.578999 1.748322 4.518127 -2.464158 0.797359 -3.226841 0.061244 -1.432396 5.196265 0.214207 1.268246 -1.467519 1.636248 -0.394511 0.335626 -0.278447 -3.287806 -1.859528 -5.513786 -3.365335 -2.142474 0.545773 1.503790 -5.354117 0.194518 0.360907 2.331828 -6.432097 0.251469 0.872217 1.599683 3.012033 2.275724 -3.186966 -0.367323 -0.269503 2.072187 1.520594 -1.401352 1.454203 -3.190623 0.046013 1.185301 1.393665 0.516490 -4.999745 -0.740121 0.589641 -1.525318 0.359231 2.802617 2.699113 -1.296020 2.178676 -2.893541 3.014463 -5.684025 -1.420848 -2.408514 -4.194150 -1.567398 3.071529 3.823939 2.416026 -0.363520 -1.736438 -0.361343 -6.047390 -5.180776 -0.463599 -0.367067 0.798145 1.009161 -0.709395 0.691094 -2.695257 1.411858 2.031051 -2.212834 -1.683569 -0.977894 4.788287 0.615107 -1.781338 -1.817051 -0.834868 0.165263 -0.171979 3.777175 -0.652551 -3.841995 -6.462675 -1.893050 3.547208 -1.690212 0.755522 -2.270141 -0.434383 -3.717185 0.226666 -2.900582 -0.197944 0.130897 -1.412997 -4.502913 1.153891 -0.288275 -1.408460 0.243519 -3.304546 0.714618 3.733933 1.313275 0.805470 0.753900 0.020794 -3.143547 -2.938722 0.936805 -2.197384 3.486785 3.331850 -0.369951 -1.719126 -1.438285 -3.642035 2.583327 -2.074073 1.965096 0.112099 -1.154891 2.087205 -3.482593 -0.477303 -2.890829 0.997188 -0.336005 -6.130718 4.816714 2.790535 -2.896199 0.072357 -2.089619 2.802262 0.280754 2.576544 -1.970021 -1.446138 0.510767 -0.251727 -0.128189 -1.130229 1.461848 -1.830384 -0.489559 -2.949223 -0.636101 3.821271 1.995840 -0.654173 0.435701 1.234398 -1.239368 1.654851 2.846531 2.126247 -0.736224 -2.617244 -7.597919 0.980784 -1.141825 -0.796086 -0.185866 -1.621431 -1.238054 0.778273 -1.043659 3.631522 1.115564 -0.909263 3.294184 -4.437179 -3.960963 -2.991930 0.115975 0.475709 -0.842448 0.021477 -1.727336 0.705444 0.505153 1.806373 -0.198451 -3.647283 -1.119482 1.468828 4.287328 -0.195456 -0.957973 4.072601 1.223860 -0.573867 -1.178962 0.028408 -1.256230 0.727000 -3.148019 -1.100199 0.366724 1.733651 -3.137745 1.819119 -0.706087 1.057877 1.248481 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 7.410614 -5.063799 -14.101667 30.033623 -3.138046 7.235836 2.185574 -4.173231 -0.755190 -39.536530 -13.581039 19.892229 8.778051 9.429025 -2.289671 12.432451 4.041839 7.032814 -33.643769 -4.493935 10.667806 1.031922 1.393201 0.564593 -0.813317 -9.576128 24.381628 2.483030 4.014197 23.672616 -3.710058 23.415055 21.832871 -3.921164 2.865224 11.932105 -7.500699 0.757313 -17.792246 -8.248931 25.979205 3.272074 2.968260 9.476026 -13.370363 23.781453 8.851624 16.392069 10.055411 -11.935108 10.333824 15.577884 -6.215286 -6.476628 -21.041999 2.063712 6.919804 9.228948 -2.999296 5.646281 -2.610082 4.266611 9.754810 5.868389 27.906201 9.560679 24.922305 25.737408 16.542774 -17.932346 9.110905 -0.439077 -8.600820 -2.625009 24.217726 -16.388473 -17.754147 4.165892 -7.584904 -23.785286 -3.962824 -0.326869 27.901010 -17.234832 -9.361897 -8.090113 9.489373 27.071595 -7.772671 8.836175 -23.497493 -3.869558 -1.546329 23.870952 5.734514 4.453810 -8.797737 5.783172 -4.115800 0.255870 9.568929 -21.388136 9.268945 -20.416008 -13.695620 -16.462274 8.725430 17.175260 -25.850805 3.636589 -16.988072 14.564932 -38.410286 -2.923814 2.007559 12.433568 33.608692 0.658866 -9.488092 0.532695 6.532040 6.389427 10.158936 -10.737585 12.003897 -6.220942 -0.736300 2.187428 6.156704 8.223349 -29.484870 -12.533109 1.990025 -3.093329 8.606012 17.846502 21.795735 -2.116000 10.613871 -14.758436 17.828497 -25.272952 -10.470155 -5.779025 -20.413743 -14.857629 17.874952 14.271309 17.206540 -10.641996 -14.864814 0.735720 -30.808627 -32.105999 -2.016013 4.547011 -5.222539 18.006875 -6.878029 12.163311 -22.511995 14.478524 20.515763 -6.923946 -13.696355 2.084207 3.657527 6.234148 -6.321079 -4.794438 -4.625734 -12.131296 7.301962 33.557977 -0.640581 -33.977586 -43.316743 -7.776355 20.933176 -13.200801 -1.299785 -15.036047 -10.558271 -18.390735 -4.447620 -18.519012 -2.135911 4.553005 -12.332563 -27.724503 12.211478 -2.630607 -7.395032 9.975040 -20.927516 3.498071 15.723202 4.773622 4.335951 0.256332 -1.840780 -14.609376 -11.262960 11.803866 -18.607277 18.440953 8.627467 -2.975680 -14.816043 -12.380049 -15.725573 9.972037 -8.660127 16.831329 1.937096 -3.299031 4.540233 -22.898586 5.107532 -12.069503 4.180755 2.795809 -36.181137 26.041355 11.609724 -10.331557 3.905700 2.318918 13.138498 -3.031511 3.743447 -16.274254 -17.175196 3.253395 3.394772 1.667712 -6.850825 1.914509 -9.008157 -12.314714 -19.185139 -7.483287 20.360582 6.050207 -4.457829 -1.519348 14.505411 -17.251022 3.806716 18.034927 19.631754 2.669518 -12.874415 -38.512211 6.966814 -10.904037 -5.669449 -4.399704 -13.307588 -2.633262 14.503800 -12.556527 17.464638 -5.986705 -13.639709 19.872508 -29.539867 -19.455281 -19.741271 -8.844076 5.421947 4.152370 -1.357602 -8.938145 6.790265 1.912099 2.925641 -11.069431 -17.763036 16.629812 13.930931 25.096141 -6.085635 5.203961 22.628252 9.755378 -2.105374 -6.069902 2.285558 -16.665992 1.164835 -31.222523 -1.887904 12.349917 11.559801 -17.295858 0.005656 -9.202176 0.334205 1.320886 -PE-benchmarks/strongly-connected-components.cpp__main = 2.737013 -0.366125 -0.497140 3.848620 1.036388 -0.630223 0.987149 1.668823 -0.089328 -5.719843 -3.011584 1.928300 0.291614 -0.535301 1.013197 0.865659 1.883845 1.804991 -6.421340 0.520074 1.074571 0.116024 -1.001168 -1.356263 0.067750 -1.203336 0.224655 2.255330 0.587913 3.913867 -1.833956 1.430808 3.062937 0.472977 2.285634 2.932157 0.398048 -0.335554 -0.558734 -1.029421 6.085018 1.509740 -0.165030 2.333645 1.108034 4.520120 0.100827 3.739249 0.508561 -1.313461 2.390197 -1.633048 -1.688397 -0.388316 -4.495161 1.129900 3.557772 2.113966 -2.699008 2.652333 -0.853519 1.135992 1.601765 -0.761123 4.557170 2.112218 2.125080 3.178038 4.532562 -2.992915 0.295750 0.393021 1.996036 0.138436 0.893675 -2.889012 -1.196728 -4.846273 0.084040 -5.590049 0.236017 -0.777226 5.596012 -3.350770 0.676476 2.088898 0.338405 3.472152 -2.433624 -0.403905 -4.140736 -0.248488 -0.387259 5.185562 0.383053 0.683708 0.235154 1.423832 0.221797 1.957079 0.150021 -3.454139 -2.166365 -7.387320 -3.134288 -1.641385 0.047758 -0.061014 -3.626242 -0.587835 1.827219 2.157760 -5.744058 -1.045640 1.328479 1.179081 0.195091 0.161075 -2.500884 -0.264586 -0.584790 1.490325 1.648599 -2.391523 0.536532 -2.189486 -0.573314 0.745199 1.969195 0.471586 -3.603864 -1.212308 0.792739 -0.425777 -0.329621 0.563389 0.650517 -1.705077 2.066657 -2.935404 3.615503 -4.681262 -0.783279 -2.151459 -2.961590 -1.560756 4.525754 1.988567 2.631597 1.065642 -1.563207 -0.222015 -4.375588 -6.286203 1.535121 0.036298 1.456305 0.557508 -0.799170 0.548685 -2.579904 -0.619320 1.664522 -2.465546 -2.125697 -1.170391 3.102397 -0.021319 -1.551561 -2.453057 0.923378 2.572811 -0.003672 2.551338 -2.111625 -3.688752 -4.360629 -2.498417 3.604298 -1.731460 0.191486 -0.717158 -0.393769 -3.458807 0.808562 -3.419368 0.967933 -0.882018 -2.330740 -4.713378 1.527724 -1.147160 0.129972 1.310676 -3.298242 1.281477 1.655083 2.180891 -0.292039 0.932600 0.751552 -4.008852 -3.819649 -0.360003 -0.715480 3.517517 2.139946 0.691739 -2.164403 -1.452259 -2.760278 3.128158 -2.612156 1.858891 0.318868 -2.101477 2.740251 -2.729361 -0.776699 -3.024069 1.782714 1.212391 -5.168168 4.787795 2.924390 -3.557778 -1.240727 -2.874542 1.635305 0.903783 4.423604 -2.518450 -1.918518 1.583886 -0.026043 -0.332248 -2.153065 1.543010 -0.086629 0.651547 -4.501484 -2.117429 3.138883 2.689761 -0.315472 1.418682 1.730219 0.346940 0.062484 5.020388 1.535018 0.402593 -2.684700 -7.319961 1.573710 1.978234 0.615562 0.506703 -2.419506 -1.919139 0.317860 -0.012275 3.694272 2.582494 -0.598324 3.815409 -3.645788 -3.962013 -2.440325 0.196782 1.399472 -1.997711 0.813711 -2.144521 0.539792 -0.584105 1.431998 0.284596 -1.929037 -2.375027 0.871091 3.256464 0.464491 -0.964728 4.493604 0.635032 -1.916597 -0.196235 -0.415709 -0.295603 1.686918 -3.134691 -1.327423 -0.491512 1.655862 -2.787270 2.093275 -0.220218 1.098152 1.421565 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 6.877774 -0.924500 -0.165823 6.462540 2.361102 -1.938819 -0.075258 4.564541 0.806317 -6.771358 -4.648438 4.754825 -0.514127 0.552225 3.425992 0.831928 2.832446 2.550607 -10.493934 1.987345 -1.995981 0.360919 -3.143325 -4.815312 1.269659 2.569951 2.516349 3.069912 1.458915 3.913958 -5.253029 1.592760 2.605149 1.496603 4.275477 -0.437970 1.629519 -2.309862 -4.340330 -6.280839 10.262972 2.164229 1.333124 7.596901 1.600026 4.675175 0.652739 6.954656 3.875573 -0.877076 3.383318 -5.604953 -2.938391 0.974755 -8.634185 4.358833 4.491567 0.972931 -3.745099 3.825106 1.966849 3.313078 3.300871 -4.522055 8.295611 2.624462 5.047632 4.503091 6.963060 -4.413969 1.690585 0.036163 7.648743 2.069923 0.327543 -7.342127 0.817596 -8.971818 1.587025 -8.533881 3.843405 -4.044149 7.466581 -4.774391 3.061198 3.201834 -1.086972 4.999347 -6.126793 1.850714 -5.327246 0.230804 -0.927525 6.582016 -1.263078 0.502427 1.816681 1.621374 -0.530946 3.514710 0.563072 -2.358558 0.779446 -11.394410 -4.944382 3.019405 -1.421638 -2.660278 -3.311400 1.810274 0.964316 3.077013 -6.087243 -5.783826 0.255763 -0.313643 -2.380081 0.625687 -1.017008 -2.959238 -1.843120 5.581093 0.981662 -5.466121 3.694375 -3.418555 -3.391273 3.145617 7.069182 2.950836 -2.478889 -2.952591 0.488656 1.803226 -2.083955 -0.400580 0.167540 -2.558831 3.786879 -2.788291 4.116759 -5.914076 -3.642995 -3.963094 -1.647338 -0.719673 9.343463 -0.321943 5.126666 6.341812 -0.957837 -0.971124 -5.270971 -8.548685 4.284105 2.596370 0.715677 1.636637 0.257531 0.780369 -3.082032 -5.202875 4.278715 -6.283626 -7.077226 -4.687251 1.972217 -1.007494 -2.393591 -5.806012 6.194484 6.863513 -2.034365 2.257598 -1.533098 -6.700522 -3.947617 -2.754712 4.786965 -1.576261 0.800298 1.522235 1.146593 -4.037070 0.893946 -6.462414 2.418140 0.052485 -6.132881 -6.452748 0.894186 -0.925527 2.100100 1.265196 -5.121882 4.580781 0.789640 7.702491 -3.663759 4.184066 3.886923 -8.407682 -9.462804 -3.559060 1.264994 6.299241 1.139231 1.705872 -3.974475 -2.640352 -1.557600 5.483353 -8.431993 2.734527 -0.502047 -1.522680 1.935397 -5.218863 -2.214329 -5.167867 2.544692 2.074565 -8.837216 6.875270 3.761505 -7.012914 -2.776524 -9.399485 5.279457 0.472947 11.489937 -4.481966 -1.368744 2.411912 3.238037 -1.892697 -6.808588 3.441051 2.397232 -2.596815 -6.427655 -5.319561 3.312012 2.912300 0.826549 1.553285 4.249887 2.565852 -1.719558 10.189029 1.256970 0.429379 -4.973496 -11.931788 0.940600 10.388922 1.588315 2.556014 -7.119116 -4.118028 -0.837535 0.158600 4.710850 4.739976 4.451754 4.829084 -5.162551 -4.577829 -2.290474 2.122191 0.535987 -3.227815 1.947573 -4.643757 -0.949383 -1.432988 2.282232 -2.820133 0.028650 -6.948381 -1.327946 3.619295 0.247436 -0.488156 6.908968 4.011328 -3.664027 1.227953 -1.942722 -1.356591 1.550655 -3.892009 -1.894015 -0.788559 0.074870 -5.247340 3.506526 1.762924 1.869683 -0.555217 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 6.113995 -1.465349 -2.077321 8.398117 1.421059 0.064550 0.587490 2.297953 0.587499 -10.738403 -5.293107 6.682169 0.742111 1.444900 1.857230 2.840819 2.881444 3.138673 -12.686911 0.416102 0.459631 0.434682 -0.831645 -3.268330 1.078145 0.230310 4.500254 2.327502 1.743980 6.446745 -4.275065 4.358360 5.223472 0.973567 3.082037 1.591161 -0.032396 -1.284388 -4.926343 -5.235390 10.799882 1.633347 1.708443 6.425118 -0.642106 7.034837 1.481470 8.807603 6.009169 -2.030054 4.879524 -3.128496 -3.397893 0.434017 -8.919592 3.119652 3.987989 2.021718 -2.795477 3.586227 1.294952 3.326374 3.265424 -3.189739 9.587015 3.728428 6.589826 6.191262 7.343404 -5.424010 2.282896 -0.624498 4.218730 1.055969 3.662016 -8.682306 -1.832194 -5.808286 -0.025128 -9.605464 2.263540 -3.089240 9.946760 -6.194246 0.617193 1.500359 0.516703 7.402438 -4.544023 2.292605 -7.339035 0.133120 -0.358951 8.516323 0.164419 1.229566 -0.669972 1.356081 -0.823596 2.109848 2.235493 -4.668761 0.499338 -11.181157 -5.467190 -0.709160 0.594789 0.565370 -6.459249 1.940806 -1.531206 3.824795 -10.449813 -4.416106 1.002139 1.706477 2.839203 1.730981 -2.157656 -1.932455 -0.212913 5.126769 1.784789 -5.757194 3.274228 -4.059563 -2.831045 2.137223 5.565359 2.233887 -5.903182 -3.696851 0.426131 1.048611 0.269416 2.005795 2.871625 -1.896713 4.139684 -4.052275 5.087390 -7.837814 -4.515141 -3.280369 -4.133595 -3.063562 10.375237 1.984608 6.545915 3.105066 -2.461634 -1.270898 -8.079922 -10.478537 2.464493 1.176895 0.546564 3.755105 -0.767969 1.994992 -5.507163 -1.531503 5.001365 -5.229628 -6.603659 -3.164848 1.657078 -0.468178 -2.644468 -5.095355 2.951227 3.655081 -0.897355 5.782324 -1.301711 -10.378983 -8.575340 -3.632229 6.484730 -3.491008 1.082256 -1.599179 0.181860 -5.572283 -0.478758 -6.961252 1.101133 1.291497 -6.294272 -8.613231 2.698067 -1.285495 1.037291 2.651200 -6.619489 3.559499 2.680235 6.871992 -1.560125 3.019411 1.732214 -8.587714 -8.294961 -1.368318 -2.347922 6.540799 1.650312 0.960929 -5.380943 -3.574022 -3.969425 5.054747 -7.683016 4.100086 -0.456635 -1.385596 2.179005 -6.366712 -0.022990 -5.376538 2.343880 1.543430 -12.675895 8.340038 4.245575 -6.394614 -1.500005 -6.574939 5.332170 0.061625 8.570136 -5.425420 -3.691734 1.975047 2.022734 -0.947100 -5.377274 3.013428 0.053378 -2.882988 -7.564436 -4.517203 5.259499 3.441406 -0.451771 1.182282 5.447955 -0.010947 0.050983 9.328866 2.987570 0.417863 -4.891075 -15.716621 1.116410 7.741796 0.620403 2.043864 -7.159349 -2.853780 1.620245 -1.707592 6.178008 2.313145 1.675876 6.249681 -7.193905 -5.938686 -3.973627 -0.087373 1.495416 -1.888610 1.019699 -4.050001 -0.111224 -0.403240 2.126095 -2.500275 -3.066783 -2.501770 1.351810 6.904373 -0.463290 0.529608 7.979665 3.726132 -2.805407 0.279818 -1.551975 -2.443936 1.783862 -7.119092 -1.098173 1.255960 1.417157 -6.047504 2.659913 -0.317057 1.225486 -0.414411 -PE-benchmarks/n-queen-problem.cpp__main = 0.324256 -0.260800 0.039211 0.931203 0.120276 0.229472 0.271408 0.053569 0.034182 -1.473599 -0.659359 0.319781 0.081137 0.226408 0.091676 0.210045 0.370691 0.401894 -1.382220 -0.145828 0.406215 0.059638 0.288322 -0.083830 0.005279 -0.466173 0.417223 0.472304 0.195402 0.978518 -0.312822 0.516217 0.848704 0.146944 0.232229 0.743377 0.106319 -0.090305 -0.465652 -0.304189 1.183694 0.099290 0.019333 0.377470 -0.180638 1.066452 0.382401 0.582667 0.633899 -0.459471 0.445979 -0.429850 -0.387756 -0.255725 -0.921988 0.127595 0.409900 0.600652 -0.374812 0.461981 -0.176217 0.241554 0.303793 -0.203328 0.887112 0.269878 0.576248 0.731961 0.770052 -0.923394 0.079056 0.182603 0.052922 0.126151 0.352352 -0.644810 -0.313206 -1.000322 -0.129455 -1.083271 -0.197799 -0.059327 0.973235 -0.670984 -0.115343 0.293448 -0.144076 0.843415 -0.288252 0.131197 -1.037062 -0.013555 0.257226 0.728335 0.240968 -0.093903 0.016720 0.188050 0.020192 0.359385 0.282262 -0.793206 -0.352111 -1.395892 -0.516520 -0.607459 0.298529 0.276126 -0.856348 0.020921 0.138087 0.592849 -1.317567 -0.187722 0.327782 0.535074 0.127231 -0.244999 -0.242703 -0.093452 0.183853 0.381752 0.591564 -0.684828 0.309083 -0.305341 -0.016064 0.089329 0.367343 0.085192 -0.559012 -0.604264 0.173833 0.079576 0.131204 0.307101 0.438256 -0.017083 0.467047 -0.639834 0.865405 -0.872807 -0.037561 -0.307337 -0.470205 -0.532670 1.314381 0.509508 0.572623 0.041357 -0.516465 0.039154 -0.823272 -1.322129 0.153646 0.173500 0.274050 0.480439 -0.262436 0.408939 -0.669094 0.190786 0.243250 -0.367260 -0.468370 0.082714 -0.234547 0.090290 -0.317789 -0.522475 0.220750 0.247162 -0.096113 0.847245 -0.344203 -0.897247 -1.085306 -0.649048 0.859585 -0.534215 -0.031880 -0.314203 -0.257332 -0.631215 0.164065 -0.733615 0.008080 0.078954 -0.765391 -1.174406 0.445040 -0.323448 -0.083833 0.618882 -0.784174 0.151975 0.241850 0.341105 0.154474 0.136270 0.039441 -0.721298 -0.609261 -0.065037 -0.497867 0.693378 0.303552 0.022186 -0.700665 -0.525521 -0.429504 0.658551 -0.394454 0.519908 -0.045251 -0.358839 0.399370 -0.627612 0.236027 -0.500183 0.379768 0.445800 -1.526542 0.915171 0.747195 -0.612588 -0.222348 -0.350366 0.277969 0.151090 0.696362 -0.602837 -0.513698 0.292001 0.041476 0.025349 -0.413791 0.222243 -0.079512 -0.226685 -0.911104 -0.476046 0.635930 0.462871 -0.100210 0.189550 0.756082 0.134614 0.083381 0.960893 0.404857 0.095780 -0.558779 -1.691829 0.504430 0.766293 0.100874 0.312631 -0.702080 -0.219229 0.402743 -0.233693 0.786882 0.476217 -0.228515 0.931766 -0.705006 -0.791806 -0.627987 -0.308024 0.296575 -0.194520 0.201555 -0.398705 0.183958 -0.117614 0.057943 -0.135913 -0.355171 -0.092654 0.397682 0.906378 0.146360 0.156465 0.983141 0.150718 -0.399419 -0.120682 0.012213 -0.325405 0.257280 -0.749376 -0.193651 0.240974 0.429615 -0.599214 0.163896 -0.258977 -0.005804 0.126433 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 1.810426 -0.540636 -0.543897 3.729988 0.130962 0.761499 1.001614 0.404490 0.269916 -5.683184 -2.532076 2.716297 0.625996 0.873308 -0.222640 1.223858 1.185523 1.566800 -5.735276 -0.500233 1.521720 0.403391 0.776611 -0.710587 0.068097 -1.519529 2.324556 1.395480 0.788987 3.818980 -1.015656 2.106792 3.293363 0.299705 0.811978 2.771364 -0.277586 -0.237268 -2.023987 -1.740962 4.270867 0.974259 0.215893 1.830743 -0.968110 4.055709 1.662725 2.369327 2.027012 -1.784216 1.292200 -0.263991 -1.960969 -1.087627 -3.281871 0.415091 1.431885 1.929820 -1.097310 1.718707 -0.224642 0.883574 1.346077 -0.303948 3.394043 1.199096 2.437506 3.025762 3.062846 -3.405709 0.645719 0.489198 0.084918 0.373070 2.332248 -2.947121 -2.072519 -1.559912 -0.515474 -4.651961 -0.700132 -0.287924 4.545654 -2.792720 -0.404824 0.282277 0.194055 3.462293 -1.143174 0.417283 -3.621923 -0.088798 0.172123 3.697384 0.718609 0.264505 -0.293727 0.758180 0.000136 1.011667 1.116748 -3.206747 -0.275194 -4.686797 -1.396973 -2.592365 1.063133 1.579889 -3.238227 0.113285 -0.824263 2.680816 -5.473031 -0.808300 1.216019 1.742719 1.807141 -0.451423 -0.774659 0.000609 0.529240 1.292945 1.942652 -2.734961 1.062196 -0.257240 -0.446496 0.354256 1.227862 0.801363 -3.611606 -2.213811 0.716505 -0.016006 0.802349 1.757719 2.026250 -0.288239 1.674160 -2.686505 3.128089 -3.617289 -0.702878 -0.934931 -2.240818 -2.241699 3.740194 1.927730 2.361140 -0.510407 -1.197918 -0.070421 -3.575940 -4.934710 0.659186 0.625238 0.531912 1.931675 -0.864835 1.444508 -3.090230 0.929435 1.450055 -1.269980 -1.840780 0.197200 0.577517 0.418140 -1.169716 -1.414765 0.359854 -0.021839 0.377571 3.683425 -1.115232 -4.586225 -4.953285 -2.154803 3.432945 -2.087794 -0.315517 -1.567898 -1.238427 -1.952991 -0.003163 -2.887967 0.342077 0.478026 -2.418230 -4.547667 1.800456 -0.997459 -0.409532 2.130615 -3.035761 0.494849 1.663746 1.242411 0.349068 0.510278 0.242333 -2.745289 -1.922149 0.470387 -2.110452 2.759086 1.447654 -0.009795 -2.778633 -1.812368 -2.002894 2.202747 -1.484208 2.266926 -0.380552 -0.774472 1.589195 -2.633404 1.315173 -2.167452 1.325294 1.347848 -6.113060 3.776112 2.744244 -2.181678 -0.421906 -0.767396 1.187922 0.428267 2.098663 -2.652363 -2.776138 1.081072 -0.277867 0.110911 -1.385670 0.705248 -0.599522 -0.940756 -3.255288 -1.366038 2.693924 1.426578 -0.529959 0.586579 2.691029 -0.610001 0.642125 3.484997 1.947243 0.472493 -2.625068 -6.936057 1.787408 1.581132 0.124062 0.536157 -2.198718 -0.992946 1.912487 -1.207586 2.951743 0.933700 -1.461607 3.390405 -3.494563 -3.162698 -2.626597 -1.192295 1.314137 -0.209508 0.323033 -1.390859 0.855514 -0.257974 0.329115 -0.788844 -1.850826 0.679639 1.844178 3.956256 0.288197 0.463809 3.855227 0.682017 -1.063000 -0.458799 -0.079005 -1.475879 0.493286 -3.574808 -0.496670 1.141499 1.801411 -2.498302 0.752350 -0.727446 0.119947 0.375819 -PE-benchmarks/shortest-common-supersequence.cpp__main = 1.186675 0.010761 -0.767432 3.531874 -0.412018 0.139459 0.925865 0.675386 -0.258883 -5.451183 -2.144986 1.202633 0.804559 0.571966 0.280871 0.747535 0.473334 1.719210 -6.190677 -0.277274 2.254608 1.027419 0.700681 -0.642454 0.160300 -0.979861 0.406118 0.665184 0.594717 3.765502 -1.034844 2.250414 3.109711 -0.085420 0.334238 2.228994 -0.388123 0.367945 -0.639328 -0.632561 3.764976 0.942623 -0.016549 1.230951 -1.040488 3.494430 0.233871 2.025655 -0.176741 -1.984625 1.193392 -0.344360 -1.084505 -0.387200 -2.232858 0.685012 2.655815 3.025558 -0.709810 1.684871 -0.875225 0.698552 1.392172 -0.394526 3.263193 2.377803 1.785442 3.039733 3.187676 -2.401638 1.202028 -0.572721 -0.866422 -1.292103 1.991427 -2.028042 -1.601224 -2.904550 -0.681196 -5.131185 -0.759963 0.235578 4.199017 -2.911148 0.405980 0.651674 1.378735 3.393557 -1.340736 0.579453 -3.057079 -0.285571 -0.667223 4.457416 0.529593 0.524145 -0.819690 1.133779 0.268626 0.386509 0.569105 -2.336032 -0.649701 -4.538624 -1.863750 -1.784556 0.683375 1.857403 -3.705130 -0.132091 0.142502 1.985499 -5.953701 -0.428063 0.678976 2.129604 1.337503 0.145316 -1.926342 0.139611 -0.167172 0.478680 1.448270 -2.387880 1.132295 -1.573357 -1.132464 0.559473 0.935843 0.508264 -3.542867 -1.543994 0.012916 -1.136648 0.636864 2.098653 2.084920 -0.213192 1.615651 -3.211375 2.635561 -3.441708 -0.695201 -0.603491 -3.119141 -1.736621 2.719906 1.748938 0.935890 -0.966231 -2.159470 -0.380968 -3.823622 -4.401331 0.500166 0.553971 1.126777 1.632718 -1.003527 0.723639 -2.904690 1.127476 1.650465 -1.113329 -1.365021 -0.028125 2.512764 0.329325 -1.088698 -1.583497 0.027100 0.201639 -0.188504 3.174085 -0.812501 -1.980694 -5.470309 -1.625480 3.182016 -1.426040 -0.159889 -2.087295 -0.445278 -2.585592 0.163215 -2.443304 -0.030687 0.500881 -1.654883 -4.142773 1.474696 -0.622973 -0.984969 1.368430 -2.652293 0.292219 2.146589 1.099709 0.483702 -0.049957 0.505539 -2.362571 -2.176488 0.558131 -1.939784 1.548770 1.513610 0.152514 -1.974621 -1.466240 -2.015528 2.130041 -0.691686 1.831816 -0.423437 -0.708921 1.833722 -2.542242 -0.012545 -2.486323 0.620819 0.730427 -3.986496 3.970339 1.123285 -1.674484 0.008347 -1.028181 1.589497 0.507778 1.664899 -2.170123 -2.307961 0.890417 -0.649496 0.111544 -1.550506 0.681376 -1.356966 -0.452940 -2.456608 -0.748160 2.768308 1.450841 -0.675898 1.033275 2.264537 -1.310411 0.919194 2.730885 2.193262 -0.427692 -1.733578 -4.857201 1.457782 -0.396740 0.424754 -1.246476 -1.956975 -0.936306 1.852728 0.294052 2.661259 2.024560 -1.222046 2.870385 -3.777656 -2.959105 -2.034304 -0.118287 1.172113 -0.622983 -0.769968 -1.163861 1.271424 0.927569 0.784818 0.385430 -2.850560 -0.516995 1.211292 3.414979 -0.690242 -0.178093 3.659793 0.873292 -0.920516 -0.232119 -0.180627 -0.984207 -0.237989 -2.259287 -0.217389 0.951919 1.569922 -2.506146 1.451713 -1.150924 -0.407022 1.077977 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/topological-sorting.cpp__main = 2.207397 -0.241316 -0.012133 2.950860 1.074534 -0.547467 0.904683 1.546145 -0.230166 -4.765945 -2.687841 0.896994 0.096529 -0.534913 1.016434 0.493275 1.684036 1.452090 -5.393312 0.425294 1.008863 0.134222 -0.718479 -1.030781 0.042495 -1.120245 -0.447994 2.105656 0.458220 3.222184 -1.524716 0.947689 2.562311 0.463619 1.944945 2.636236 0.576007 -0.280582 -0.070688 -0.601792 5.235932 1.143218 -0.187202 1.827079 1.220145 3.816851 -0.208418 3.190203 0.125455 -1.122386 2.241667 -2.086805 -1.380837 -0.302625 -3.766339 1.013740 3.364855 2.027913 -2.489802 2.323304 -0.821882 0.861832 1.245141 -0.884122 3.655607 1.909462 1.534730 2.444535 3.839332 -2.524073 -0.047186 0.533502 1.692850 0.151790 0.031455 -2.464144 -0.548271 -4.797740 0.219195 -4.768090 0.120992 -0.710043 4.653085 -2.706023 0.665888 2.159899 -0.053242 2.637304 -1.975344 -0.514012 -3.538248 -0.186864 -0.196893 4.152521 0.205168 0.353030 0.500620 1.152212 0.336280 1.916730 -0.074162 -2.757244 -2.603601 -6.395228 -2.761858 -1.240606 0.101930 -0.222350 -2.954176 -0.744251 2.031712 1.437771 -4.612369 -0.819531 1.263204 1.157328 -0.466187 0.399202 -2.488139 -0.412028 -0.512451 1.162081 1.498984 -1.870701 0.345510 -2.222541 -0.409548 0.564492 1.578568 0.137540 -2.790004 -1.009920 0.553347 -0.482463 -0.433292 0.108932 0.227573 -1.415497 1.783518 -2.390288 3.063741 -3.977975 -0.421219 -1.910619 -2.508811 -1.170842 3.957404 1.755553 1.993040 1.185356 -1.454528 -0.190140 -3.448692 -5.042896 1.227998 -0.002717 1.689797 0.225483 -0.725398 0.433746 -1.898068 -0.699209 0.989181 -1.991468 -1.631105 -1.056028 2.745844 -0.145716 -1.297930 -2.236721 0.969691 2.576861 -0.398995 1.813711 -1.978093 -2.408602 -3.276696 -2.259157 2.922238 -1.395402 0.227389 -0.426779 -0.103871 -3.107257 0.907854 -2.871157 0.733872 -0.918839 -2.136601 -3.874753 1.317533 -1.082323 0.123819 1.172958 -2.634055 1.003997 1.329470 2.059561 -0.085370 0.702494 0.569450 -3.451599 -3.382316 -0.657179 -0.408628 2.944976 1.865363 0.645123 -1.680831 -1.198681 -2.257382 2.734994 -1.922254 1.305726 0.248725 -1.866612 2.427150 -2.115278 -0.662534 -2.655502 1.509724 1.222389 -4.340264 3.940419 2.400670 -2.997705 -1.326463 -2.697457 1.138503 0.923263 3.852976 -1.825351 -1.400829 1.413563 -0.072368 -0.308618 -1.931047 1.370534 0.078058 0.852558 -3.911652 -1.976149 2.534955 2.428874 -0.255742 1.438650 1.446977 0.861361 0.066928 4.333347 1.039710 0.149144 -2.014057 -6.025161 1.395730 2.168635 0.636208 0.469274 -1.974604 -1.725535 0.052424 0.320718 3.185449 2.744689 -0.250590 3.226103 -2.650380 -3.286268 -1.884616 0.361562 1.220786 -1.944999 0.565869 -1.825806 0.475253 -0.487113 1.058281 0.687854 -1.637298 -2.723051 0.493732 2.651232 0.491303 -0.823258 3.723979 0.355904 -1.712689 -0.086785 -0.237747 0.174477 1.661677 -2.207609 -1.226530 -0.675742 1.258911 -2.122691 1.794685 -0.164409 0.840071 1.428990 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 3.713433 -0.654615 -2.122763 5.731094 0.734332 -1.426239 0.992346 1.438937 0.477306 -7.693390 -3.865338 2.649195 1.053258 -1.241716 0.821467 1.904020 2.061227 2.373087 -8.726733 1.435364 1.937310 0.099845 -2.338761 -1.385660 -0.115647 -2.419003 0.700404 2.144036 0.380677 5.391114 -2.367614 2.768557 4.299823 -0.220109 3.372889 4.468325 -0.922867 -0.208802 -0.068011 -0.393987 7.788531 3.024549 -0.356591 2.171384 1.193419 6.070461 0.177269 4.935151 -0.522842 -2.185036 2.557578 0.447382 -1.999587 -0.269158 -5.927643 1.523085 4.920242 2.218916 -3.661258 3.109864 -1.853951 1.527457 2.634340 0.627308 6.853980 2.607067 3.067968 4.737985 6.378246 -3.187636 1.385597 0.206410 2.298537 -0.875247 3.433874 -2.758220 -3.337325 -3.780086 -0.238105 -7.010953 0.825466 -0.177872 7.202058 -4.928873 0.713681 1.779697 2.054991 5.603207 -3.583624 -0.794584 -5.374345 -0.142839 -1.965000 8.072140 0.584172 1.806622 -0.762943 2.668596 -0.355903 1.667667 -0.297705 -5.563385 -1.771718 -10.253602 -4.347357 -3.441394 -0.166484 0.557920 -6.209331 -0.638856 1.274964 3.924320 -8.527654 -0.089379 1.267083 1.018251 1.832833 -0.667260 -3.239191 0.157627 -1.273772 1.897752 1.810940 -2.461171 0.603525 -3.175859 -0.049104 1.476116 2.149117 0.785427 -5.261855 -0.566990 1.152052 -0.819290 -0.390711 2.457612 2.087849 -3.144861 2.695450 -4.428297 4.724794 -6.576661 -0.999936 -3.508835 -4.983839 -2.147313 3.978201 3.172095 3.372886 -0.184135 -1.945860 -0.181602 -7.646612 -9.209416 1.366852 -0.700472 1.053493 0.637085 -1.047986 0.378101 -3.774472 0.323317 3.121647 -3.552099 -2.507081 -1.353459 5.934286 0.418432 -2.196830 -2.298428 -0.440039 2.334002 0.865162 4.303385 -2.548607 -5.179632 -7.534917 -2.885860 4.909923 -2.334518 0.497807 -2.109000 -1.013964 -4.934607 1.087220 -4.419444 0.873381 -1.792280 -1.205532 -6.315959 1.095372 -1.236697 -0.147733 0.554956 -4.796480 1.798602 3.690784 1.671069 -0.035334 1.054314 0.915448 -4.889323 -4.221707 1.159032 -1.352723 5.073461 3.798120 0.398659 -2.126294 -1.898622 -4.540225 3.714317 -3.451974 2.758763 1.153785 -3.282796 3.938387 -4.191736 -1.700116 -3.770183 2.136724 0.365789 -5.542917 7.176827 4.127544 -4.866434 -0.529335 -2.953028 3.040855 0.926772 5.062149 -3.427793 -2.373357 1.689403 -0.674410 -0.427066 -2.151159 1.896004 -1.320939 1.149869 -5.475452 -1.846587 4.796429 3.290915 -0.666389 1.013901 0.974407 -1.449825 0.994310 5.825211 2.698998 0.978271 -4.665907 -9.544357 1.834901 -1.526660 0.390644 -0.284917 -1.877087 -2.276741 0.410183 -0.285757 5.367716 3.004863 -1.727666 4.968573 -6.429772 -5.882778 -3.868186 0.059236 1.518843 -2.113790 0.988895 -3.166293 0.938348 -0.934183 2.919508 -0.199919 -3.599954 -1.833967 2.219025 4.417708 0.340202 -2.265915 5.917742 1.066835 -1.863323 -0.943630 -0.326657 -1.243016 1.491293 -4.388242 -2.033327 -0.553393 2.734602 -4.093367 3.404242 -0.914274 2.481368 2.055837 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 4.940202 0.562869 -3.235549 7.658396 1.059038 -0.315265 1.034218 1.899581 0.208444 -8.534048 -3.648279 7.870747 0.834707 -0.368957 0.713862 2.834892 2.920932 3.425173 -10.094426 0.430044 0.318676 -0.270727 -1.904639 -3.254566 0.245597 -0.500385 3.814497 3.075988 1.170861 6.222756 -2.710603 3.690466 4.680932 1.310764 3.866540 2.599876 -0.127659 -0.574923 -4.022784 -3.428589 8.928167 2.714296 0.321156 4.917929 0.408917 7.378591 1.921607 5.244538 3.150341 -0.925705 2.459614 1.058604 -3.065205 -0.747590 -7.589026 1.131903 2.542938 1.113647 -2.982365 3.796317 0.084956 2.300923 2.832542 -1.193310 8.219011 2.410454 4.889675 5.970566 6.623118 -4.498005 1.543055 -1.175691 3.791629 0.419576 3.776410 -5.189931 -3.876874 -3.823357 -0.701912 -9.136504 1.087958 -1.819130 9.257579 -5.787506 0.294571 0.902843 1.376635 6.312467 -4.237239 -0.013817 -6.632876 -0.856415 -0.949445 8.779409 1.619604 1.980318 -0.874098 1.706208 -0.269789 1.499226 1.551734 -6.125115 0.772492 -9.705397 -4.305392 -2.338626 -0.164128 0.213652 -4.853832 0.372010 -0.319447 5.691099 -10.111719 -3.098378 1.453292 0.136122 3.214510 -0.342904 -1.955974 0.951825 -0.323519 3.500176 2.220020 -4.913740 1.098344 -0.836337 -2.454380 0.823315 3.961819 2.394822 -6.779059 -2.195657 1.965131 0.120720 0.748627 1.675064 1.233377 -2.588904 3.039701 -4.487385 5.557733 -6.547264 -3.175046 -2.255205 -4.000421 -3.329907 6.339376 2.939990 6.035771 1.378426 -0.641002 -0.254478 -7.635047 -10.895892 3.384051 0.093292 -0.290321 2.038944 -0.955740 1.115267 -5.740783 -0.261995 5.479448 -4.337144 -5.146193 -1.740973 3.596336 0.367297 -2.609056 -3.176821 0.706195 2.246368 2.560367 5.344950 -2.554319 -10.651299 -7.618011 -2.816571 6.041559 -3.602573 0.206392 -1.614001 -1.093682 -4.297320 -0.703409 -6.176615 2.239440 0.035262 -3.089338 -7.620864 2.921450 -1.439594 0.921130 2.021709 -5.500622 2.856415 2.827194 3.109180 -1.793630 2.132950 1.401685 -5.427807 -5.075831 0.635102 -2.207395 5.563807 2.381696 1.570435 -5.363128 -2.012336 -4.928853 4.569061 -5.728457 4.156296 0.288050 -2.267345 3.109571 -4.968008 -0.989302 -3.636063 2.963676 0.945487 -9.564376 6.665699 5.181870 -5.814154 -1.029846 -3.536601 3.671712 0.561040 6.806148 -5.493586 -4.514695 1.928592 1.062799 -0.462311 -3.005398 2.038472 -0.098441 -1.105643 -7.064403 -2.577588 5.679593 3.352532 -0.560445 1.088080 2.973964 -1.638851 -0.160763 7.365264 2.985786 1.908698 -4.731629 -12.337923 0.823238 2.602362 0.626668 1.462491 -4.029094 -2.099371 1.055456 -3.103808 5.689046 -0.267984 -2.666472 5.733033 -6.917969 -5.993230 -4.888398 -0.525530 2.130367 -1.974145 2.495847 -2.919860 0.325212 -0.899383 2.482099 -1.565889 -2.911035 0.479763 2.432094 5.581947 0.055457 -1.034470 7.134941 1.707957 -2.483432 -0.336688 -1.566931 -2.640149 2.280335 -8.805288 -1.240053 0.526074 2.822128 -5.134502 2.276079 -0.267622 2.053595 0.716445 -PE-benchmarks/binomial-coefficient.cpp__main = 1.331887 -0.436989 -1.118256 2.597778 -0.326199 0.398199 0.421021 0.428465 -0.085955 -4.173894 -2.305753 0.947545 0.681112 0.420429 0.669268 1.196785 0.648635 0.649903 -4.285809 -0.104492 1.350329 -0.015582 -0.071879 0.343773 0.006825 -1.230664 -0.020867 0.483719 0.165843 2.589935 -0.673388 2.233452 2.290470 -0.327239 0.337191 1.501975 -1.070940 -0.202910 -0.262738 -0.238065 2.960553 0.503912 0.055731 0.793881 -0.707752 2.631795 -0.549327 2.871609 0.226529 -1.294858 2.223598 -0.708147 -0.964716 0.247898 -2.093880 0.351216 1.870744 1.205083 -0.589521 1.102227 -1.198863 0.725170 0.958636 -0.371125 3.144493 1.864262 2.274060 2.337687 2.120438 -1.610151 0.960519 0.029096 -0.512754 -0.464466 1.065352 -1.670472 -0.608993 -1.774005 -0.200350 -3.231571 -0.302297 -0.467486 3.811039 -1.995195 -0.673010 0.203808 0.811271 2.897955 -1.239550 1.009389 -2.304992 -0.110203 -0.073206 2.540089 0.161140 0.478125 -0.901030 0.710427 -0.332206 0.261751 0.046802 -1.840862 -1.501194 -3.395902 -2.106908 -1.187473 0.673836 1.235982 -3.454534 0.422591 0.075802 1.091776 -4.107193 -0.240273 0.425284 1.416978 1.806051 1.983378 -2.343635 -0.682613 0.377755 1.288276 1.164426 -0.977885 1.287363 -2.539742 -0.110759 0.586902 0.816312 0.323837 -3.002927 -1.005183 0.371039 -0.691374 0.473718 1.728045 1.980965 -0.092217 1.362568 -1.711526 1.927090 -3.487594 -1.033625 -1.337517 -2.283827 -1.133558 3.050110 2.744537 1.611381 0.082447 -1.547359 -0.150015 -3.493838 -3.214782 -0.514305 -0.084472 0.782405 0.913301 -0.596482 0.831610 -1.699516 1.198333 0.950780 -1.119908 -1.104187 -0.458943 1.766679 0.468734 -0.930023 -1.281759 -0.257246 0.002396 -0.736303 2.634915 -0.208934 -2.205257 -4.160831 -1.236666 2.241489 -1.150647 0.335399 -1.459317 -0.161481 -2.400643 -0.058190 -1.739779 -0.618923 0.398456 -1.737671 -2.983003 1.055691 -0.194871 -1.023773 0.667239 -2.105513 0.313771 2.229807 1.612917 0.808970 0.433390 -0.361939 -1.893941 -2.023993 0.194231 -1.763449 2.204072 1.915171 -0.404332 -1.320683 -1.149964 -2.113748 1.896720 -1.293686 1.357007 -0.064318 -0.772721 0.966265 -2.273777 -0.251103 -1.872595 0.542056 0.106930 -4.622775 2.864401 1.318088 -1.608490 -0.068909 -1.525847 1.609981 0.154424 1.380010 -1.096190 -0.876340 0.276660 0.277037 0.023833 -0.998345 0.824821 -0.990649 -0.756716 -1.967574 -0.718223 2.487631 1.146718 -0.427789 0.379599 1.363202 -0.307571 1.054582 1.863990 1.461854 -0.882006 -1.125227 -4.948391 0.748543 0.622062 -0.588794 -0.056119 -1.929678 -0.746020 0.678278 -0.916437 2.164151 0.611409 -0.267416 2.144118 -2.452429 -2.214301 -1.936548 -0.015483 0.295073 -0.289095 -0.014491 -0.855631 0.559374 0.625212 0.715843 -0.019155 -2.497868 -0.956105 0.908082 2.731029 -0.305816 0.032212 2.498229 0.932383 -0.548620 -0.742941 0.067598 -1.040981 0.405461 -2.253118 -0.449881 0.610149 0.924576 -1.915650 0.681526 -0.469955 0.237287 0.547625 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 2.362010 -1.456845 -3.949853 9.273434 -0.634977 2.762178 0.752843 -1.212685 -0.017308 -12.578913 -4.604970 6.863413 2.343994 3.338030 -0.528006 3.381115 1.809714 1.948606 -10.624310 -1.727219 3.131543 0.219239 0.892832 0.788775 -0.139821 -3.009793 7.080152 1.047880 1.492377 7.368686 -1.273176 7.481017 6.836681 -1.059120 0.815868 3.772383 -1.972647 -0.128191 -5.718108 -3.080236 7.816256 0.421987 1.346063 3.549595 -4.107625 7.514118 2.614294 5.474662 3.922176 -3.809710 3.231177 3.665340 -2.102298 -1.971949 -6.262625 0.637161 1.868156 3.034236 -1.078408 1.718282 -0.397099 1.286640 2.748079 1.056050 8.019497 3.026156 7.310029 7.945123 4.933250 -5.851584 2.427406 0.259290 -2.487614 0.147425 7.205462 -5.295493 -4.788728 0.846841 -2.226515 -7.763031 -1.599409 -0.880216 9.137092 -5.170869 -3.032632 -2.497440 2.141602 8.319108 -1.985357 3.128217 -7.139760 -1.198419 0.217973 7.002877 1.656068 1.016341 -2.512147 1.564088 -1.447020 0.489337 2.435735 -6.618172 2.246713 -6.592251 -4.239733 -5.019549 2.897213 5.263993 -8.067136 1.436156 -5.778550 5.049919 -12.122503 -1.492819 0.607581 3.868795 9.273187 1.075712 -3.125432 -0.674167 2.652214 2.241095 3.418372 -3.475740 3.881765 -2.035324 -0.821039 0.538148 2.010021 2.431534 -8.940816 -4.489001 0.751875 -0.206558 2.601958 5.089259 6.857408 -0.060377 3.434163 -4.470541 5.437854 -7.741479 -3.744666 -1.812389 -5.797356 -4.787446 6.406893 4.860999 6.259635 -2.534614 -4.125295 0.113461 -9.234486 -9.804465 -0.664402 1.142905 -1.188299 5.896671 -2.135268 4.190520 -6.862845 4.325385 5.737964 -1.980083 -4.347423 0.494466 0.224431 1.737524 -1.658569 -1.916156 -0.900911 -3.800953 1.408368 10.441380 -0.320801 -10.728545 -13.395741 -2.653195 6.486717 -4.241318 -0.285015 -4.223443 -3.137517 -4.900705 -1.712582 -5.836551 -1.353187 1.338528 -4.579318 -8.771666 4.089430 -1.066028 -2.585875 3.667502 -6.601471 1.089012 4.847521 2.780890 1.686759 0.262451 -1.100507 -4.620546 -3.497721 2.911125 -6.154246 5.371731 2.906627 -1.124326 -4.900717 -4.175531 -4.904577 3.366852 -3.096452 5.252189 0.721865 -0.881996 1.185033 -7.120556 1.986099 -3.677496 1.489002 1.497076 -12.813889 7.874108 3.551762 -3.372360 0.822280 0.211100 3.782112 -0.719260 1.382912 -4.920804 -5.174592 1.111989 1.471534 0.620704 -2.551522 0.715748 -2.306798 -4.015506 -5.728453 -2.396542 6.309957 1.876409 -1.296186 -0.654589 5.136391 -4.567849 1.309305 5.770211 5.817355 0.733056 -3.691246 -12.829634 2.429420 -1.958699 -1.903609 -0.741456 -5.159685 -0.819344 4.398236 -4.717860 5.406953 -2.617104 -3.395312 6.340440 -9.056054 -5.803698 -6.041793 -3.097111 1.668687 1.476867 -0.068367 -2.713975 2.010191 0.431915 0.557452 -3.505408 -5.310133 4.644221 4.350645 7.609279 -1.649369 2.526691 6.975598 2.945679 -1.047210 -1.698500 0.798856 -4.965738 0.008627 -10.473113 -0.463842 3.889997 3.292085 -5.280888 -0.389982 -2.716197 0.053071 0.023821 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 1.813395 -1.262293 -1.030942 3.570202 0.154864 0.560409 0.742886 0.223170 0.307265 -4.957723 -2.041508 2.755728 0.597835 0.573914 -0.094952 1.197143 1.070130 0.834597 -4.512386 -0.246473 0.819963 -0.255867 -0.325852 -0.150488 -0.150984 -1.599948 2.196484 1.416329 0.427281 3.063861 -0.786182 1.855256 2.789993 -0.110088 0.782156 2.231145 -0.048014 -0.096479 -1.827047 -1.122456 3.927508 0.957346 -0.163928 1.477991 -0.557049 3.434632 1.056444 3.628296 1.742171 -1.385765 1.719927 -0.069946 -1.534408 -0.724465 -3.206362 0.451786 1.564409 1.269082 -1.196590 1.437460 -1.069324 0.748170 1.169461 0.337343 3.502634 1.265818 2.879868 2.784713 2.761026 -2.861923 0.420737 0.832134 0.482512 0.505870 2.355326 -2.173287 -2.083925 -1.519344 -0.080441 -3.142048 -0.575792 -0.416467 4.439070 -2.391095 -0.927576 0.312054 0.500651 3.182287 -1.604322 0.860832 -3.289515 -0.068858 0.135954 3.937131 0.727846 0.503171 -0.458096 0.848300 -0.073960 1.027343 0.870908 -2.829163 -0.491700 -4.409681 -1.883779 -2.159644 0.700367 1.070570 -3.244102 0.186386 0.064330 2.098151 -4.543463 -0.411861 1.012565 1.241495 3.442617 0.683824 -1.111001 -0.009586 0.683650 0.949196 1.804308 -1.825172 1.044249 -0.789367 0.519185 0.444033 0.966167 0.692987 -3.818997 -1.289813 0.809869 -0.065861 0.608142 1.254599 1.762381 -0.921504 1.598121 -1.922547 2.595060 -3.726179 -0.841941 -1.131988 -2.387809 -1.630855 4.511548 2.277369 2.901361 -0.248321 -1.363653 -0.227866 -3.708286 -5.059338 0.133575 0.441585 0.133992 1.197510 -0.698661 1.234502 -2.440372 0.892695 1.499389 -1.322479 -1.502538 0.167679 0.823669 0.365169 -0.973201 -1.307051 0.024968 0.013109 0.528713 3.448366 -0.755901 -5.547621 -4.357552 -1.697854 2.770230 -1.589583 -0.087963 -1.149235 -1.267887 -2.277216 0.026469 -2.239903 0.392493 0.146011 -2.188544 -3.849082 1.501987 -0.675063 -0.489162 1.391956 -2.773664 0.479833 1.307443 1.105013 0.533612 0.589137 0.070389 -2.859019 -2.101785 0.500009 -1.844228 3.349036 1.490064 -0.180090 -1.605094 -1.537403 -2.520904 1.851155 -2.240071 1.754423 0.044020 -1.348803 1.359638 -2.543319 0.360605 -2.062050 1.241850 0.876213 -4.797282 3.981444 2.835799 -1.998146 -0.450634 -0.593999 1.122833 0.414475 2.176815 -2.436179 -1.976104 0.800322 0.173176 0.011186 -0.529059 0.866125 -0.556862 -0.788766 -2.958226 -1.413685 2.306802 1.489470 -0.395166 0.123973 1.774043 -0.708343 0.462541 3.096405 1.584898 0.310284 -2.179452 -6.891909 1.414584 0.477072 -0.754977 0.716665 -2.239140 -0.938957 1.292461 -1.318524 2.636560 0.156868 -1.130494 2.876919 -3.355430 -2.783035 -2.292657 -1.182208 0.682107 -0.370125 1.013260 -1.392648 0.586000 -0.453899 0.369692 -1.160744 -1.436326 0.548404 1.367099 2.764557 0.249482 0.127555 3.192447 0.712564 -0.926011 -0.737367 -0.050390 -1.393274 0.941260 -3.373813 -0.418930 0.610725 1.524602 -2.031160 0.611330 -0.283944 0.415336 0.507778 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 6.338484 -1.351040 -7.327150 13.084739 -0.392349 2.448902 0.893320 -1.236879 1.134174 -15.401657 -6.008241 10.829369 3.236480 2.556037 -0.537571 7.021061 3.023579 2.189550 -11.139509 -0.512883 2.568246 -2.191864 -2.557354 0.632525 -0.791659 -5.738026 9.186519 2.150828 1.478093 9.868259 -2.425649 8.496846 9.009965 -1.802326 2.744949 6.053522 -2.484710 -0.034275 -7.843112 -3.938774 11.466941 3.160801 0.080743 4.117563 -3.856171 11.155825 2.528505 11.195161 3.155462 -4.800462 4.927843 6.735258 -4.096877 -1.323071 -9.770606 1.465087 3.050085 1.559181 -3.354746 3.168449 -3.602709 3.266032 4.400238 3.575486 11.749454 3.883559 10.266369 10.623580 8.295852 -8.610206 3.038731 2.240645 -0.209967 0.907539 11.203803 -5.353127 -8.437711 3.738556 -1.015991 -7.277814 -0.898448 -0.931851 15.500288 -8.570645 -4.930638 -1.831952 4.271412 12.072510 -5.695969 4.390318 -9.767111 -0.395962 -1.953039 12.750570 2.936627 2.737030 -4.186607 2.978374 -2.145453 1.518509 2.089138 -10.340678 1.016585 -10.331932 -7.285558 -8.020515 3.230925 5.620816 -12.070598 1.732946 -2.840361 9.343332 -15.398597 -0.249899 1.970977 3.597997 15.173368 4.189843 -3.987999 0.250222 2.941303 3.619197 5.006619 -3.645814 4.312138 -2.128125 1.645812 1.371517 3.416624 3.288806 -14.061203 -3.227979 2.859399 -1.655333 3.132458 6.975943 8.424815 -4.197583 5.442359 -5.141181 7.890944 -12.492453 -4.739253 -4.348141 -9.146873 -5.955967 8.589956 9.323612 10.797512 -2.346084 -3.693611 -1.062780 -14.657032 -14.952688 -1.895377 0.960959 -2.491332 5.734753 -2.176161 5.141131 -8.951990 5.761627 7.537485 -4.958969 -5.975081 0.627779 6.327089 1.934346 -3.380653 -3.372908 -2.574969 -4.661042 2.938738 13.758501 -0.617221 -18.477051 -17.394262 -4.638823 9.303948 -6.078360 0.762082 -5.514174 -5.002110 -6.944776 -1.556958 -7.753007 0.493232 1.060453 -4.230211 -12.158623 5.064355 -1.332847 -4.107275 3.277881 -9.920798 2.294516 7.215147 0.282592 1.819552 2.194719 -1.029220 -7.796323 -4.963800 4.678160 -7.561629 10.401851 7.163306 -1.788626 -4.912100 -5.705700 -9.137314 5.199794 -7.980365 6.916012 1.216042 -2.362631 3.027303 -9.769993 0.072108 -5.898631 3.703296 0.846610 -14.862796 11.803752 9.315772 -6.385857 0.757122 -0.487641 6.025047 -0.139994 5.147140 -7.916845 -6.286763 1.589288 1.566523 0.139961 -0.051366 2.286769 -3.648317 -4.421832 -8.094735 -2.317196 8.650298 3.901854 -1.605277 -1.894389 5.011602 -6.123912 3.847469 7.713717 7.307386 1.315156 -7.810772 -20.618956 3.391350 -6.965949 -4.547339 1.121059 -5.208379 -1.846074 4.386450 -7.098241 8.805931 -5.064530 -4.612973 9.295332 -13.192389 -9.655606 -8.626215 -4.366089 1.109869 0.314934 3.130428 -4.471477 1.406897 -1.339884 2.000529 -6.331766 -6.245511 5.716868 5.888878 10.346347 -0.300665 0.570303 9.966158 4.282727 -1.718073 -3.538210 0.615353 -6.774229 1.414531 -14.050937 -1.566674 3.670177 5.026166 -7.657742 0.755315 -1.498165 1.589610 0.786134 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 3.989568 -1.153080 -2.499254 7.699724 -0.359654 0.272041 1.726739 1.733475 0.235009 -11.914269 -5.859642 4.033990 1.531721 0.248917 0.622483 2.845283 1.960952 3.369089 -12.646154 0.119338 3.488374 0.825712 0.072345 -1.700871 0.106453 -2.906164 2.056177 2.026134 0.909833 7.456234 -2.091081 4.607992 6.385112 0.149770 1.897394 5.204724 -2.300342 -0.234313 -1.523119 -2.086028 8.790451 3.239438 -0.166387 2.951337 -1.032937 7.730157 1.513442 5.590696 1.181990 -3.355406 3.163412 -1.053848 -3.617942 -0.819641 -6.459011 1.027357 4.872508 4.019427 -2.131052 3.785417 -2.654783 1.921261 2.974082 -0.964561 8.510611 3.422917 5.711508 6.482247 6.666843 -5.278987 2.157718 0.149140 0.457533 -0.915326 4.440028 -5.438175 -4.059942 -5.029493 -1.141273 -10.602924 -0.259918 -0.167247 11.583729 -5.952246 -0.470192 0.965159 2.271918 7.518376 -3.489058 0.640376 -6.747277 0.012364 -1.437498 8.746269 1.224405 1.336164 -1.710963 2.372038 -0.010685 1.287957 1.131153 -5.826601 -1.929926 -11.631103 -3.651995 -4.388990 1.562116 2.642090 -7.794845 0.165115 0.304856 5.099824 -11.785731 -0.865744 2.195314 2.966196 4.062681 0.435270 -4.068099 0.056330 -0.283347 2.973978 3.492311 -4.985862 1.889828 -2.953689 -0.614459 1.134929 2.528091 1.495147 -8.335349 -3.108684 1.031968 -0.848467 1.090730 4.229734 4.333982 -1.248418 3.496993 -5.735632 6.149117 -8.911696 -1.079357 -2.808211 -6.226858 -3.606074 8.430862 5.799097 4.067607 -0.995750 -2.447716 -0.457874 -8.906106 -10.240029 1.149573 0.596347 1.849220 2.173216 -1.356252 1.672899 -5.580111 2.401436 3.401513 -3.108771 -2.892985 -0.320265 5.235300 0.910315 -2.857644 -3.392921 -0.288154 1.401723 0.227251 6.590769 -2.091282 -7.980956 -10.631894 -3.747569 6.678349 -3.557739 -0.025940 -3.682304 -1.387562 -4.752584 0.517431 -5.491930 0.766268 0.703325 -4.325895 -8.840217 2.494450 -1.247136 -1.467511 2.397801 -5.588269 1.032626 5.055972 3.497377 0.621894 1.248076 0.870621 -6.127852 -5.030292 0.990351 -4.149901 6.041936 4.624227 -0.207391 -5.199536 -2.630005 -5.389286 4.867974 -2.715641 3.912245 -1.176439 -2.472838 3.809590 -5.686000 1.144817 -5.364219 2.041122 1.044555 -12.854915 8.551645 5.295675 -4.612277 -0.379198 -3.077808 3.404040 0.785661 4.516430 -4.617898 -4.312228 1.604356 -1.443847 0.010748 -2.727289 1.906252 -2.177001 -1.270359 -6.305083 -2.159290 6.345209 2.944989 -1.098933 1.569914 3.823422 -1.326267 1.662585 6.869204 4.092113 -0.459900 -5.542803 -14.762467 2.777061 2.491412 -0.204574 -0.081855 -3.620667 -2.654099 2.432820 -1.915614 6.013377 3.743038 -2.923874 6.245836 -7.319188 -6.551491 -5.190301 -0.483161 2.250197 -1.541742 0.361920 -2.906628 1.589513 0.262154 1.935296 -0.267757 -5.551886 -1.139851 3.060839 7.942502 0.556352 -0.849187 7.517499 1.613289 -2.128154 -1.232969 -0.358550 -2.747430 1.350815 -6.617877 -1.360589 1.310637 3.415812 -5.216954 2.820790 -1.024457 1.117459 1.857274 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 1.127433 -0.538836 -0.241141 1.777628 0.164574 0.659998 0.364511 0.169960 0.265146 -2.589990 -0.872104 2.763397 -0.045712 0.485857 -0.366597 0.485803 1.106528 0.493235 -3.017934 -0.280143 0.183146 -0.228551 0.136286 -0.193074 0.101005 -0.859366 2.166266 1.098239 0.537638 1.708900 -0.696602 0.847863 1.372092 0.239382 0.628997 1.188263 -0.174693 -0.469265 -1.661377 -1.472822 2.190762 0.369632 0.159835 1.281996 -0.169274 2.063544 0.997219 1.378530 3.299183 -0.709633 0.440259 0.940750 -1.199908 -0.639947 -2.001741 -0.040885 -0.297448 0.317236 -0.677865 0.687280 -0.181704 0.498892 0.489144 -0.116764 1.574436 0.067654 1.454681 1.304415 1.279381 -1.833091 0.035029 0.551962 0.693541 1.254540 1.288326 -1.242647 -1.221546 -1.096797 -0.272203 -2.061027 -0.391614 -0.524978 2.252342 -1.204462 -0.510610 -0.158648 -0.127989 1.594356 -0.620346 0.351801 -2.019941 0.038665 0.549911 1.564912 0.548113 0.071268 0.100611 0.111076 -0.248030 0.765996 0.790934 -1.859228 0.295289 -2.391146 -0.682614 -1.547088 0.553373 0.404069 -1.275001 0.788384 0.127631 1.923387 -2.199703 -0.699532 0.514210 0.270726 0.842539 0.139827 0.144852 -0.210169 0.466424 0.990166 1.164244 -1.336054 0.444141 0.514142 -0.142479 0.064704 0.830606 0.568955 -1.505794 -1.227935 0.846276 0.646050 0.371007 0.513045 0.827421 -0.119667 0.845530 -0.883483 1.565341 -1.319379 -0.616912 -0.499611 0.137144 -1.277787 2.326469 1.471594 1.752532 0.208391 -0.046004 -0.033448 -1.492462 -2.232198 0.342733 0.152665 -0.223780 0.948236 -0.290767 1.029733 -1.403018 0.198996 0.356617 -0.756175 -1.045593 0.167280 -0.872829 0.145910 -0.296032 -0.916580 0.280296 -0.151820 0.333128 1.639229 -0.668280 -3.887841 -1.906711 -1.069740 1.612520 -1.259563 -0.235792 -0.303095 -0.962064 0.173110 -0.172400 -1.366459 -0.129709 -0.009728 -1.446059 -2.123402 1.156613 -0.666179 -0.234639 1.119341 -1.692271 0.389598 0.289313 0.759681 0.193139 0.391589 -0.087045 -1.657904 -0.769915 0.035310 -1.150279 1.575425 0.784962 -0.223858 -1.810105 -1.025199 -0.997930 1.000743 -1.889651 1.300368 -0.000112 -1.017538 0.514645 -1.088655 0.796716 -0.594673 0.979628 0.853312 -3.636320 2.094564 2.034695 -1.383755 -0.339637 -0.333792 0.420816 0.302204 1.181820 -1.680232 -1.323465 0.419835 0.254399 0.111492 -0.082085 0.476016 0.188630 -0.809432 -1.828966 -0.939394 1.296561 0.671731 -0.060623 -0.285350 1.388488 -0.094728 0.543916 1.851607 0.740125 0.812242 -1.382645 -4.175108 0.935910 1.600164 -0.121458 1.293342 -1.550297 -0.590066 0.711757 -1.296946 1.380439 -1.150824 -0.633990 1.599155 -1.542803 -1.370453 -1.478389 -1.226368 0.428449 0.095210 1.340593 -0.721627 -0.042240 -0.773972 0.071832 -1.244323 0.073496 0.930824 1.184570 1.352904 1.026729 0.418497 1.696168 0.393298 -0.974212 -0.279136 -0.214961 -1.134290 0.303600 -2.149881 0.050330 0.604087 0.844342 -1.120944 -0.053600 0.222272 0.429575 -0.437737 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 2.075571 -1.495474 -2.075817 4.730021 -0.170140 0.629262 0.613098 0.044898 0.088630 -6.429479 -2.768895 3.433672 1.158098 0.876258 0.038307 1.957586 1.012105 1.258938 -6.079507 -0.300062 1.277931 -0.322993 -0.420641 -0.401511 -0.174501 -1.705447 3.143249 1.138138 0.510057 3.866355 -0.992521 3.098009 3.398145 -0.207035 0.986416 2.387119 -1.111656 -0.178311 -2.285928 -1.594687 4.871326 1.152067 0.172526 1.604459 -1.282142 4.081099 1.381227 3.947485 1.723265 -1.747453 2.142627 0.702416 -1.756531 -0.621639 -4.077134 0.463534 1.686395 1.571991 -1.000682 1.596597 -1.297437 1.082143 1.634210 0.458064 5.018956 1.330756 4.042277 3.775053 3.172927 -3.229809 1.234239 0.378681 -0.005459 -0.201366 3.532312 -2.993001 -2.634181 -1.248677 -0.412025 -4.624087 -0.240656 -0.061241 5.957306 -3.011762 -1.408558 -0.268376 1.416090 4.472188 -2.021081 1.304363 -4.016954 -0.177647 -0.237606 4.867545 1.064815 0.827464 -1.116545 1.223106 -0.432124 0.702841 1.115941 -3.410858 0.317418 -5.705719 -2.297313 -2.569719 0.992464 1.736443 -4.234378 0.418268 -0.846336 2.610746 -6.077494 -0.586882 0.937064 1.570823 4.200449 0.402063 -1.599972 -0.016887 0.561480 1.603637 2.044853 -2.153794 1.606521 -1.117830 0.450619 0.542478 1.446208 1.202155 -5.024256 -1.665694 0.868353 -0.259945 0.996344 2.323321 2.976383 -0.626636 1.911727 -2.618395 3.153123 -4.725312 -1.036916 -1.499238 -3.458170 -2.139024 4.596749 3.062559 3.152260 -0.834120 -1.738982 -0.010552 -5.154959 -6.352802 0.116443 0.679635 -0.275381 1.816713 -0.835977 1.554608 -3.335554 1.618122 2.864473 -1.782718 -2.187883 0.015613 1.371187 0.884685 -1.412490 -1.458389 -0.278587 -0.514334 0.676683 4.667021 -0.554238 -6.605921 -6.355966 -1.814585 3.581952 -2.017343 -0.064537 -1.950876 -1.605239 -2.912007 -0.241200 -2.882463 0.317429 0.577358 -2.546707 -4.830666 1.504502 -0.452187 -0.978401 1.459244 -3.543988 0.741413 2.501043 1.229167 0.373863 0.739158 0.160255 -3.153000 -2.593191 1.245994 -2.613292 3.638998 2.097107 -0.361637 -2.446529 -1.828237 -2.972015 2.135679 -2.405977 2.567644 -0.079605 -1.439825 1.349408 -3.708891 0.647001 -2.226815 1.155312 0.514753 -6.905194 5.060422 3.112805 -2.373869 0.046481 -0.751794 2.015228 -0.089356 2.192065 -3.024086 -2.357357 0.662159 0.131737 0.044079 -0.770005 0.816541 -1.099800 -1.640670 -3.614703 -1.609641 3.231153 1.480842 -0.444907 0.147596 2.131194 -1.673827 0.626268 3.793769 2.435672 0.123490 -2.783000 -8.476013 1.513564 0.135679 -1.169289 0.238794 -2.512711 -1.007418 1.628933 -2.030970 3.032609 0.352180 -1.901014 3.463407 -4.475538 -3.473754 -3.220742 -1.091798 0.821426 -0.196965 0.637943 -1.748121 0.763902 -0.285488 0.841934 -1.611987 -2.477468 1.085149 1.938246 4.067365 -0.075139 0.186533 4.023286 1.261655 -0.740794 -1.112993 -0.137923 -2.178338 1.076207 -4.683611 -0.643719 1.238682 1.972800 -2.910738 0.620714 -0.553567 0.606368 0.657143 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.925946 0.182237 -1.134267 1.950707 -0.506534 -0.256948 0.521479 1.301106 -0.174574 -3.967968 -3.153227 -0.393604 0.704784 -0.281974 1.520175 1.434139 0.449147 0.761243 -4.596302 0.471739 1.793225 -0.027219 -0.428091 0.385577 0.124244 -1.248583 -2.933596 0.109667 -0.088750 2.695746 -0.945895 1.890586 2.160391 -0.407499 0.194273 1.551205 -1.491685 -0.378437 1.598386 0.515104 2.985787 1.063372 -0.486739 0.240420 -0.192444 2.549482 -2.409939 3.976861 -1.378940 -1.379190 3.087461 -2.837586 -1.301505 1.417172 -1.664416 0.771161 3.159690 1.451717 -0.677071 1.447361 -2.099169 1.084461 1.023873 -1.275876 3.294081 3.026094 1.793345 1.991872 2.696344 -1.073322 1.178150 -0.228186 -0.388874 -1.169556 -0.188416 -1.361112 0.499893 -3.369955 0.403255 -3.720775 -0.125053 -0.754659 4.763183 -2.404774 -0.059070 1.337645 1.259481 2.986208 -1.815314 1.033572 -1.932640 0.310278 -0.445707 2.797318 -0.348197 0.637047 -1.378566 0.864740 -0.142637 0.190391 -0.788258 -1.159502 -4.108099 -4.107940 -2.715548 -0.573005 0.195579 0.852060 -4.226961 0.257694 2.192487 0.554624 -4.203614 0.140900 0.779422 1.557029 0.654632 4.273606 -3.902825 -0.972822 -0.257493 1.529718 0.874046 -0.599803 1.127852 -4.182206 -0.118595 0.903331 0.828978 -0.220425 -3.390816 -0.237085 0.414902 -1.497441 0.116686 1.794964 1.750119 -0.343775 1.571127 -1.852797 1.666872 -4.404070 -0.972246 -1.805501 -2.956126 -0.613337 3.630676 3.877762 0.965381 0.880074 -1.549787 -0.732651 -3.987206 -2.606844 -0.824544 -0.638556 2.030540 -0.191163 -0.332267 0.033895 -1.037454 0.975989 -0.003640 -1.504145 -0.627010 -1.102488 4.549629 0.086404 -1.151845 -2.076512 -0.510440 1.131561 -2.052513 1.472337 -0.179921 -0.246588 -3.891536 -1.533984 2.277179 -0.788675 0.956520 -1.741468 0.949635 -3.119458 0.216024 -1.372703 -0.712191 0.546311 -1.742072 -2.929901 0.659107 0.130253 -1.629013 -0.075678 -1.986118 0.243478 3.102345 2.119843 1.059744 0.552519 -0.385975 -2.182943 -2.818817 -0.508332 -1.488508 2.415167 3.180195 -0.460229 -0.859442 -0.827157 -2.695743 2.617852 -1.729834 0.810714 -0.569259 -0.726701 1.542126 -2.267161 -1.362290 -2.727446 0.488259 -0.496726 -4.525847 2.879934 1.247401 -1.895182 -0.198906 -3.124169 2.026221 0.667650 2.330574 -0.527249 -0.083112 0.126068 -0.195954 -0.252234 -0.940153 1.463759 -1.474612 0.018495 -1.675129 -0.303100 2.672446 1.715889 -0.503829 1.211210 0.891511 0.762923 1.930298 1.417707 1.056341 -2.327978 -1.008102 -5.106580 0.613679 1.312149 -0.580636 -0.178124 -1.987756 -1.171185 -0.034318 -0.153068 2.458517 1.816743 0.786915 2.003839 -2.012737 -2.374352 -1.475994 1.249353 0.008994 -1.005404 -0.074634 -0.618212 0.486606 1.376592 1.277709 1.204981 -3.547343 -3.630578 0.261989 3.094720 -0.253897 -0.888563 2.608257 0.842747 -0.603733 -0.699605 -0.264782 -0.163839 0.454972 -0.825959 -0.577316 -0.021693 0.560460 -2.069115 1.718870 -0.038902 0.140967 1.171283 -PE-benchmarks/graph-coloring.cpp__main = 10.569060 0.578099 -5.302602 15.200302 2.023621 -2.328671 2.953321 5.803947 -1.569560 -18.211903 -8.258008 9.843876 1.591270 -1.738473 3.441024 5.408647 5.698696 6.610095 -23.449480 1.608688 1.898925 -0.429814 -4.542177 -7.083689 0.530911 -1.338281 4.520838 7.773052 1.859229 13.767757 -6.252047 6.132761 9.583702 2.116106 8.526867 6.790552 0.633719 -0.072704 -5.407416 -4.113702 20.045192 6.400345 -1.757547 8.458500 2.720329 15.681204 3.209467 10.597066 0.672079 -2.360681 6.544085 -0.069353 -5.954767 -1.555238 -15.634409 1.693207 11.739426 6.921731 -7.760194 9.529809 -2.243098 4.714996 6.175533 -1.373330 17.476058 5.926852 10.390218 11.797113 15.188397 -9.988352 3.162739 -2.048122 7.674239 -1.420760 4.780689 -11.842326 -6.710115 -16.628884 -0.188375 -22.750468 1.559950 -2.017126 19.215931 -11.981544 2.116831 4.872902 2.406182 12.559658 -10.871596 -0.722086 -13.466329 -2.205026 -3.447469 21.674332 2.362590 3.681072 0.329784 5.659659 1.245491 4.711986 2.249757 -12.623871 -1.748049 -23.549494 -10.686816 -3.810894 -1.040037 -0.201781 -10.266310 -1.344005 4.662175 7.712881 -21.017872 -5.044483 4.080097 2.623134 4.227209 -1.608342 -7.357624 2.500530 -2.849019 6.969125 6.645273 -10.018405 2.774606 -4.342394 -3.590396 3.263151 7.949687 4.382735 -14.388226 -3.624288 4.079380 -2.125631 -0.169755 2.791237 1.657585 -5.953180 6.998100 -11.493622 13.122520 -16.413989 -4.032583 -5.310804 -10.022826 -5.843138 11.493068 6.470886 8.715867 3.004361 -4.102267 0.675893 -15.743920 -23.168177 7.104987 1.728803 1.351928 2.325669 -2.486657 1.834937 -11.062995 -1.858991 10.683968 -8.842800 -9.814560 -4.740337 12.264334 1.498425 -6.140398 -6.999218 2.692067 7.240647 4.908649 10.715309 -6.528586 -17.524219 -15.974423 -6.514814 13.268750 -6.524035 -0.517563 -2.616965 -1.806144 -12.835458 1.701077 -13.036701 5.284821 -1.087268 -6.639031 -15.844742 6.092027 -2.930807 1.418213 3.668374 -11.263024 4.765444 5.796149 6.573937 -3.294288 3.829407 5.042954 -13.028678 -13.512120 0.751798 -3.081362 12.609710 4.989051 3.390191 -9.176130 -3.303869 -9.651884 10.679145 -8.780211 7.816296 -0.212416 -5.601605 8.991149 -9.654036 -3.375438 -8.746183 6.146034 2.760454 -16.188451 17.410786 11.648336 -12.361507 -3.014446 -8.300452 7.447278 1.854805 14.812879 -11.023430 -9.131060 4.477704 1.475242 -0.978145 -6.828039 4.987245 -0.461785 -0.903100 -15.104467 -5.899294 11.938787 8.501558 -0.705959 4.448835 5.470505 -2.741326 -2.684325 17.418367 5.139156 2.760284 -8.820985 -24.267490 2.674463 4.111574 1.493810 1.266799 -7.561330 -5.870514 1.035783 -1.779970 12.192107 7.126310 -6.290719 12.578609 -13.832164 -13.594874 -11.129930 1.071587 4.636020 -6.542457 3.112090 -6.991856 1.661458 -1.311323 5.761553 -0.610474 -6.588149 -3.152285 2.593914 11.555049 -0.317764 -4.847983 16.025197 2.682420 -5.664344 -1.283419 -2.348488 -3.919047 7.579765 -13.323655 -3.832637 -0.609600 6.903788 -10.906549 6.075767 -0.285718 4.552939 4.254153 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 8.773456 -1.449438 -6.225532 15.873519 -0.314649 -1.378621 3.027733 3.294736 1.255678 -22.829394 -10.433176 13.214621 3.307119 -1.204477 -0.277739 5.731339 4.535373 8.272015 -25.729969 1.304760 5.828457 1.636782 -2.942966 -5.301564 -0.107504 -5.208268 6.518741 4.610489 1.951735 15.186113 -5.178347 8.444673 12.547193 0.283820 6.255938 10.917082 -4.661943 -0.807311 -3.577813 -5.197102 19.240348 7.932462 -0.424693 7.307014 -0.326965 16.160903 3.896893 9.300710 2.515233 -6.009959 4.038664 4.042173 -7.108301 -2.520034 -14.936378 2.511306 9.071078 6.322516 -6.242045 7.788216 -2.680642 3.925007 6.942243 0.103067 17.982719 5.892769 10.284334 13.937832 14.903685 -9.886336 4.995949 -1.247454 3.430465 -2.204688 12.006677 -9.205031 -10.456051 -7.697626 -2.588297 -22.813580 1.046436 0.058363 21.571718 -13.018370 1.246844 1.265241 6.178084 15.793936 -7.582126 -1.470817 -14.535142 -0.601710 -4.359715 20.988337 3.123556 4.327758 -3.401818 6.300176 -0.798724 2.424479 1.865679 -14.322540 0.197512 -25.677319 -7.794537 -10.373506 0.820735 4.222457 -15.030196 -0.267751 0.244578 12.731005 -24.719176 -1.974423 3.541691 2.930060 6.919584 -4.789927 -6.416840 2.331116 -3.056675 5.019753 4.934922 -9.420949 2.191007 -2.652898 -2.324185 2.410618 5.688289 4.440773 -17.481377 -4.850958 3.365783 -1.558683 1.268038 8.818816 7.528784 -4.639099 6.444551 -12.722898 12.554935 -16.461012 -2.172176 -6.080027 -11.561453 -7.693075 11.249043 8.799646 8.230257 -3.054312 -3.183408 -0.460735 -19.374984 -24.405459 5.176878 0.223536 1.218909 3.839825 -2.883269 2.108275 -12.475426 2.926207 9.525585 -8.047440 -6.947949 -1.682234 13.413440 1.758058 -5.834200 -4.826983 -1.483983 3.107814 3.981303 13.026592 -5.880783 -17.147871 -22.164926 -6.899039 13.897535 -7.458364 -0.423974 -6.941329 -4.017471 -9.524625 0.941441 -11.693704 3.129979 -1.417196 -5.182141 -18.199434 4.103985 -2.809236 -1.447307 3.536628 -12.880661 4.066168 9.826295 3.903149 -0.832937 2.003168 3.198009 -11.754460 -9.058132 4.277109 -6.372806 11.777767 10.015639 0.953150 -10.955908 -5.021330 -11.244650 9.267550 -7.583883 9.383418 0.104440 -6.990738 8.788175 -11.606300 -0.016597 -9.273350 5.259003 1.385592 -20.868238 19.110841 10.871466 -10.994550 0.116963 -4.998217 7.669577 1.486977 10.220681 -11.494325 -9.668899 4.117657 -3.400858 -0.310447 -5.184776 3.962223 -3.573731 -0.145723 -14.261404 -3.994359 13.362105 6.268891 -2.013987 3.340151 5.500628 -6.023224 2.229246 14.939339 8.819462 2.677659 -12.970507 -27.350542 5.204568 -1.350294 1.468026 -0.724328 -5.580298 -5.506099 4.216087 -3.309074 12.897310 4.255625 -8.202618 12.770300 -17.840028 -14.558733 -10.923273 -1.726073 5.406932 -2.891063 2.735194 -6.480829 2.664601 -1.370932 6.103261 -1.999719 -9.798124 0.610031 7.846431 14.710208 1.359606 -4.176419 15.819716 2.765813 -4.875828 -1.937956 -2.277125 -5.705352 2.419619 -15.054888 -3.290565 1.963335 8.106289 -11.664375 7.417515 -2.329981 4.721034 3.407600 -PE-benchmarks/trie-suffixes.cpp__main = 17.417280 0.070625 -1.311853 13.808898 4.811944 -6.655976 0.520844 12.951847 0.561755 -14.207771 -10.083800 10.290032 -1.678249 -1.835567 8.866170 2.601018 6.451683 6.969755 -26.378737 6.178157 -4.279745 1.158175 -8.076128 -12.952271 3.486804 7.396525 1.942962 7.383173 2.849164 9.862916 -12.457212 2.740207 5.400805 4.356829 10.827911 -1.009158 3.235776 -4.784913 -6.651658 -12.171914 23.415782 6.585260 1.791247 16.985826 5.959436 11.205966 0.408113 15.616674 5.871280 -0.463010 8.069169 -13.620873 -7.336197 3.473687 -19.015158 8.296246 12.247267 3.175865 -8.659609 10.265593 3.305702 7.888671 7.694378 -11.074859 19.494927 7.241765 10.236599 9.665624 17.677882 -8.446127 4.796614 -2.309074 19.105106 2.742444 -1.242192 -17.053238 1.851915 -24.879487 3.454510 -23.388704 8.860285 -9.034665 18.358388 -11.840204 9.098227 8.548901 -1.515174 11.168271 -15.583974 2.409102 -11.408236 0.095786 -3.568585 17.481350 -3.406038 2.887530 3.694818 4.122482 -0.248766 7.160385 0.362544 -5.968257 -0.206722 -26.986421 -11.567082 8.169333 -5.624156 -7.500343 -7.620267 3.448372 4.865304 7.067469 -15.607351 -13.420128 0.891109 -1.893440 -7.439153 3.072155 -4.444171 -4.987904 -6.280918 13.900579 2.068216 -13.543523 6.620492 -9.274078 -9.457113 7.823084 16.038243 6.634480 -6.424163 -5.199572 2.393327 2.341287 -5.277359 -0.911195 -1.886997 -6.768230 8.202603 -8.368527 9.948000 -14.386712 -9.062490 -8.396840 -4.552300 -1.336046 20.225965 0.434007 10.097975 15.425154 -1.214916 -2.036168 -12.191017 -19.855343 11.411436 3.596831 2.610081 1.581047 1.145786 -0.446373 -7.142881 -13.065624 9.583012 -14.592405 -15.750099 -12.653937 8.812169 -2.254620 -5.905951 -13.391105 12.953259 18.083369 -2.727739 3.381232 -4.887536 -14.648815 -8.358671 -6.025902 11.671455 -3.467245 1.490895 3.157266 4.581861 -10.386431 2.345437 -14.800677 6.308614 -0.168897 -12.163179 -14.299581 2.192836 -1.895156 5.802656 1.087731 -10.427069 10.068652 2.654583 18.359178 -9.412401 9.992159 9.466342 -19.082030 -22.844058 -8.290176 4.101271 14.593763 2.424478 5.154062 -10.200782 -3.917290 -4.819232 14.297844 -19.253875 6.041148 -1.863692 -3.346489 7.047221 -10.378422 -7.128355 -11.973002 6.387570 3.351591 -19.636600 15.860648 9.084291 -17.085150 -6.302022 -23.068854 12.596021 2.325316 27.115469 -9.973924 -3.775238 5.636704 6.962128 -4.345535 -16.043452 8.551755 4.626823 -3.715430 -14.636215 -10.705267 9.017711 7.741249 1.659743 4.490137 7.621589 5.845130 -4.467716 23.196711 1.642652 0.675028 -10.860582 -26.743685 0.266591 25.088550 5.158865 5.606094 -15.426300 -9.875960 -3.445508 0.591389 11.520882 12.780190 8.637860 10.565349 -11.491608 -11.298729 -6.090142 7.639062 1.832116 -9.084877 4.675951 -9.885337 -2.246552 -1.723635 7.319628 -3.216426 -1.516486 -17.570438 -4.079675 8.351629 0.420073 -4.325161 16.277171 8.167579 -8.500116 2.933704 -5.212996 -1.963080 4.689108 -7.945367 -4.363905 -3.304277 1.017613 -12.711562 10.427190 4.615406 5.613682 -0.276417 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 3.064466 0.191859 -1.167528 4.009727 0.447127 -1.615794 0.593104 1.822567 0.352229 -4.493422 -2.520470 3.036127 0.582437 -0.646796 0.608747 1.208201 1.077062 1.953789 -6.585816 1.302534 0.384679 0.746938 -1.892496 -2.323934 0.102987 -0.419547 0.436585 1.965873 0.160089 2.974632 -1.998155 1.271505 2.456480 0.042386 1.928576 1.782188 0.174548 -0.545937 -1.031876 -1.242270 5.381524 2.067972 0.218340 2.626387 0.947101 3.964706 0.437051 3.211312 0.500821 -1.198114 1.247243 0.005816 -2.197031 -0.484310 -4.134835 1.855012 2.834167 1.332358 -2.189902 2.717070 -0.407031 1.028821 2.124502 -0.774863 4.926166 1.977332 2.456370 2.932958 4.749161 -1.990182 0.701805 -0.082120 3.047409 -0.133831 2.062324 -3.120217 -1.853249 -3.969505 0.235518 -6.093146 1.338274 -0.733087 5.608526 -3.607036 1.059818 1.625068 1.170146 3.491896 -3.092669 -0.349766 -3.286970 0.086588 -1.503168 6.074954 -0.000121 0.765037 -0.108739 1.734024 0.296414 1.424134 -0.130810 -2.649689 -0.692227 -7.144029 -2.898345 -0.842758 -0.757091 -0.629080 -3.518715 -0.258462 1.242601 2.981633 -5.608626 -1.465914 1.359552 0.085040 0.399781 -0.443130 -1.497950 -0.113617 -1.046725 1.991323 1.098136 -2.564619 0.820034 -1.025764 -0.991155 1.158566 2.264230 0.893077 -3.862699 -0.920081 0.297496 -0.159887 -0.136166 0.706156 0.458910 -2.147996 2.032911 -3.052520 3.138403 -4.547688 -1.075223 -2.192291 -2.402306 -0.914298 3.144918 1.580148 2.381398 0.870647 -0.627938 -0.562528 -4.864147 -5.896830 1.789387 0.323441 0.732566 0.103789 -0.437023 -0.409910 -1.969828 -1.011782 2.687690 -3.078163 -2.440930 -1.432173 4.165059 0.066952 -1.706681 -2.706774 1.069601 2.583739 0.470102 1.782985 -1.474480 -4.432194 -4.042008 -1.888808 3.071939 -1.010525 0.446190 -0.916260 -0.643489 -2.541542 0.900465 -3.518404 1.273765 -0.431524 -1.879473 -4.241911 0.735616 -0.717389 0.015930 0.036407 -3.187577 1.689543 1.726180 2.114571 -0.939291 1.009784 1.499522 -4.228372 -3.587165 -0.428622 -0.322886 3.591272 2.449851 1.354879 -2.415608 -0.760545 -2.841414 2.754189 -3.351282 1.438764 0.220477 -1.909078 2.561003 -3.183777 -0.707810 -3.037459 1.493172 0.144178 -4.936026 5.292933 3.296522 -3.771419 -1.108965 -3.000339 2.109574 0.824995 5.037199 -2.975878 -1.711193 1.271305 0.006810 -0.871784 -2.278340 1.623701 -0.224033 0.130869 -3.738309 -1.632877 2.652640 2.332619 -0.288930 0.795399 0.936235 -0.423235 -0.260166 4.206740 1.420519 0.386507 -3.228360 -6.968561 1.203854 1.017987 0.383225 0.552093 -2.063728 -1.921723 0.299995 0.048008 3.532795 1.964822 -0.365973 3.019020 -4.326440 -3.726586 -2.040394 0.499013 0.777698 -1.603319 1.329183 -2.345167 0.043991 -0.541459 1.612316 -0.888193 -1.726986 -2.272902 0.853743 2.905543 0.709043 -1.666620 4.366565 0.777119 -1.310752 -0.214472 -0.955272 -0.680171 0.717368 -2.479981 -1.042921 -0.829659 1.264634 -2.660013 2.717753 0.037419 1.285439 1.236421 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 4.680179 0.284316 -0.958816 4.328132 1.100071 -2.196250 0.881187 3.286424 0.679553 -6.548912 -4.031213 3.217387 0.431756 -1.151412 1.272104 1.468502 2.148031 3.102138 -9.542216 1.936658 1.065331 1.312075 -2.184209 -2.728273 0.510122 -0.560334 -1.713454 1.820049 0.614122 4.320848 -3.358184 1.537579 3.460420 0.247793 2.999410 2.817330 0.291688 -1.301633 0.390927 -1.792648 7.852286 2.825992 0.538917 3.653701 1.798643 5.317094 -0.865404 5.677183 0.604956 -1.794751 2.185580 -3.469339 -3.061373 0.779035 -5.696688 2.955881 4.067394 2.151302 -3.376981 3.700983 -0.258301 1.777404 2.614059 -2.461939 6.337041 3.181004 1.981192 3.595260 6.664760 -2.248807 1.169242 -0.412036 4.139309 -0.031723 1.688199 -4.099071 -0.736627 -6.912046 0.620599 -8.422432 2.151981 -1.598521 8.086720 -5.243267 2.611335 3.269733 1.342662 4.713215 -3.673441 -0.776067 -4.900908 0.440780 -1.463756 7.101276 -0.475852 1.151859 -0.486145 2.080667 -0.038662 1.686865 -0.630037 -3.438922 -3.006333 -10.387312 -3.925709 -1.100032 -1.326913 -0.937772 -5.206220 -0.248918 2.430211 4.399515 -7.780609 -1.721275 1.404366 -0.025286 -1.556865 1.444221 -2.763277 -0.932503 -2.076174 2.722494 0.541038 -3.493406 0.544248 -3.332753 -1.989818 1.641399 3.237301 0.593292 -4.594229 -0.964281 0.514245 -0.411353 -0.852882 1.125647 0.639196 -3.016547 2.842742 -4.133042 3.637577 -5.601410 -1.824759 -3.158223 -3.753271 -1.330992 6.442813 2.366625 2.923945 2.289639 -0.937038 -1.410680 -6.345450 -7.501606 2.497307 -0.813118 2.326456 0.142401 -0.404776 -0.946457 -2.491773 -1.975377 1.948254 -4.341688 -3.000981 -2.601754 5.891324 -0.746758 -2.082527 -4.257183 1.422134 5.158075 -0.949817 1.272580 -2.568144 -3.894980 -5.041659 -2.941929 4.246393 -1.479751 1.521944 -1.184085 0.500024 -3.412823 1.036240 -4.440218 1.158208 -1.137180 -2.538930 -5.819247 0.797650 -1.209126 -0.061677 0.187997 -4.061605 2.690318 2.770621 4.076224 -1.272689 1.315063 1.564732 -6.091941 -5.444939 -1.332165 -0.336119 4.686795 3.650054 1.421905 -3.254138 -1.304128 -3.759749 4.478952 -5.422607 1.861818 0.286212 -2.609301 3.697763 -3.941575 -1.467882 -4.598314 2.261716 0.206054 -7.354362 6.527812 3.524287 -5.509701 -1.450246 -5.824867 3.283318 1.547907 7.224058 -3.050958 -1.553398 1.950207 -0.619273 -1.122927 -3.929362 2.531993 -0.337124 1.374022 -5.397716 -2.156451 3.898045 3.326494 -0.572032 1.566453 1.670107 0.859875 0.778155 6.076226 1.608171 0.025705 -4.373006 -9.781649 1.487469 4.281282 1.533811 0.792937 -3.359915 -2.500203 -0.204526 0.130171 4.940217 3.779886 1.206399 4.151455 -5.404808 -5.071614 -1.831199 1.401247 1.307806 -2.530020 1.599174 -3.039443 -0.066651 -0.556838 2.949247 0.154799 -3.002563 -5.212206 1.143338 4.022570 1.202856 -2.246583 5.790922 1.026901 -2.070938 0.467490 -1.499400 0.475411 0.608725 -2.670818 -1.519681 -1.276473 1.170509 -3.963384 4.559397 0.020372 1.829912 1.610553 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 4.157995 -0.520198 -1.424394 5.822154 0.533950 -1.354298 0.547497 2.232483 0.222849 -6.423880 -3.589659 3.159599 0.726425 0.033962 1.502973 1.660367 1.451788 1.801611 -8.659580 1.333978 0.361110 0.227303 -2.181221 -2.530673 0.202822 -0.547740 1.672110 2.651311 0.374673 4.098534 -2.701334 2.309328 3.368751 0.154099 2.627702 1.928487 -0.097452 -0.780341 -2.375991 -2.226118 7.310367 2.308144 0.188922 3.397308 0.453807 5.073107 0.796553 4.674704 0.828594 -1.725391 2.688688 -0.920143 -2.506195 -0.401908 -5.840604 2.168005 3.852740 1.824640 -2.688905 3.213245 -1.057473 1.757944 2.771546 -0.890162 6.987433 2.348458 4.403993 4.271044 5.618558 -3.500670 1.230031 0.357416 3.354908 -0.042265 2.155091 -4.537028 -1.924371 -5.413652 0.604573 -7.239664 1.344427 -1.145548 6.961949 -4.306817 0.753393 1.729839 0.867978 4.941834 -4.501142 0.836504 -4.520849 -0.089501 -1.432958 7.156151 -0.105639 0.693680 0.445122 2.095865 0.071323 2.181210 0.127288 -3.397195 -0.502890 -8.772381 -4.043964 -0.557930 -0.226414 -0.346831 -4.598120 0.289697 1.238040 2.832460 -6.834359 -2.184978 1.336708 0.897908 1.388030 0.044085 -1.920176 -0.822969 -0.796116 3.278332 2.223690 -3.464574 2.359893 -2.166952 -0.833390 1.928115 3.534089 1.629219 -4.763303 -1.715719 0.691711 -0.274019 -0.288477 1.243907 1.325201 -2.093782 2.928170 -3.527868 4.401799 -6.287863 -1.543664 -3.198705 -3.028602 -1.253621 5.229648 2.404117 3.379891 1.759039 -1.556983 -0.141241 -6.234691 -7.674241 1.673329 1.475269 0.595772 0.807480 -0.616211 0.660200 -2.844821 -0.967790 3.512307 -4.030474 -3.969505 -1.897587 3.761938 0.536006 -2.308310 -3.426640 2.154118 2.739956 -0.133239 3.643290 -1.310923 -6.142035 -5.818910 -2.498594 4.285059 -1.567414 0.214300 -0.925230 -0.818832 -3.946809 1.086341 -4.874259 1.535360 -0.068904 -3.315034 -5.794333 1.274559 -0.776443 0.146653 0.629833 -4.346662 2.123386 2.205623 3.239861 -1.044199 1.955860 2.033611 -5.499744 -5.336210 -0.595930 -0.706473 5.138422 2.652471 1.039163 -2.734152 -1.729763 -3.130845 3.778132 -4.114549 2.310403 -0.028145 -2.237448 2.615588 -4.493945 -0.920250 -3.958363 1.854378 0.834583 -6.819385 6.708324 4.247242 -4.790554 -1.437220 -4.295711 3.230824 0.638860 6.572296 -3.659105 -2.026389 1.424464 1.136239 -1.016642 -3.002991 2.080532 -0.109757 -1.394233 -4.838436 -2.756697 3.599951 2.714286 0.002842 0.886723 2.074763 -0.206866 -0.393941 6.084308 1.994673 0.137535 -4.027122 -9.774183 1.672760 2.404849 -0.020086 0.742371 -3.574509 -2.694796 0.385601 -0.095693 4.453677 3.176563 -0.058478 4.271953 -5.403532 -4.734779 -3.458700 0.686190 0.538605 -1.944283 1.114152 -3.207508 0.297379 -0.618930 1.672326 -1.666306 -1.903833 -3.060943 0.657765 3.995853 0.383249 -1.323099 5.808398 1.973671 -1.858411 -0.703906 -0.678358 -1.872424 1.418198 -3.547115 -1.587984 -0.402943 1.640852 -3.769162 2.436881 0.368582 1.356504 1.124851 -PE-benchmarks/biconnectivity.cpp__main = 12.169842 -2.403392 -3.655591 19.145104 1.774405 -3.330188 4.990413 8.320384 0.755879 -27.339116 -17.435348 8.627509 2.998879 -1.986319 5.154724 3.877996 6.052867 7.403223 -35.357630 3.030498 8.057183 1.722271 -3.702989 -5.808883 0.552600 -6.865242 0.595002 9.773877 1.773235 19.250399 -7.160903 8.671415 14.638908 0.624761 8.436258 15.354032 -4.711983 -1.457847 -0.246594 -4.433145 26.351959 8.824302 -1.285263 9.597701 2.451588 20.815467 0.180497 15.919768 0.181947 -8.490710 10.855980 -3.557259 -9.360666 -2.450050 -18.305833 4.496333 18.702096 10.237451 -10.285960 11.775526 -6.279778 4.094100 8.257231 -2.150798 22.390335 10.339940 11.773824 15.736605 20.796247 -13.761113 3.991151 1.845623 6.188526 -1.957996 6.422299 -13.407289 -8.318243 -18.738655 0.423967 -29.803471 -0.906527 -1.800703 27.489633 -15.817676 2.177860 6.541055 4.057978 19.009135 -11.565003 -0.552173 -17.210038 -0.992255 -4.346557 24.318280 0.811527 3.652998 0.281255 7.700985 0.240298 8.081003 -0.999049 -15.579514 -8.901749 -36.650034 -12.506846 -9.233932 1.784443 2.870633 -20.073023 -1.902050 4.972001 8.812408 -28.574068 -4.171590 6.822595 7.534083 -0.565572 0.670088 -12.348154 -2.463009 -2.363729 7.814790 9.489484 -10.590079 4.477656 -10.780240 -1.622993 5.194815 7.543502 3.267597 -17.603571 -7.116522 3.762555 -2.912328 -0.070080 7.075367 7.810228 -4.838732 9.754394 -16.017267 17.689758 -24.814913 -1.816166 -11.187220 -13.809699 -7.638790 15.214057 12.118484 9.466666 0.983580 -6.820085 0.154801 -22.697916 -27.840076 5.105781 0.763249 6.938814 1.998389 -3.692770 3.130769 -12.445787 0.330944 7.369222 -10.327615 -8.538991 -5.097029 17.106674 2.828095 -7.562988 -9.916934 2.502502 6.996013 -2.111758 14.561739 -7.408864 -16.163944 -24.863629 -11.348126 17.948454 -6.971974 -0.254680 -6.980102 -3.192570 -15.215862 3.834041 -15.266729 2.170633 -2.525465 -10.060025 -22.636860 4.715468 -3.271712 -1.744446 5.073169 -15.804510 3.694032 13.777950 10.113764 0.383312 5.027794 3.415492 -16.900335 -15.485800 0.187535 -5.519112 16.656846 13.354830 0.760519 -10.273181 -6.522622 -12.952716 14.895734 -9.073271 9.874322 -0.467689 -9.431258 13.660489 -14.414061 -2.620652 -14.565336 6.391592 4.109842 -29.126809 23.604064 13.525090 -14.916192 -3.421187 -12.222979 7.846534 3.509773 17.522044 -12.359562 -9.249321 5.410424 -2.131967 -1.007349 -10.122934 6.655296 -3.376456 0.722352 -17.982857 -7.942123 16.615448 10.689369 -1.380422 7.011591 7.780965 -0.325890 4.262402 20.792558 8.867078 -1.547905 -14.286913 -35.830953 9.227050 7.349089 0.877851 0.517959 -10.182140 -10.259241 2.722577 0.452643 16.953176 14.316434 -4.129578 17.672577 -17.717692 -19.033091 -14.446441 1.610960 5.481256 -6.797184 1.186426 -9.280746 4.322206 -0.503011 6.626608 1.132796 -12.463335 -11.695903 5.339638 18.104261 1.462517 -4.282649 21.610722 3.680704 -7.383229 -3.530373 -1.691264 -4.679473 4.906136 -12.667007 -6.005438 -0.661400 8.836946 -14.230878 9.566204 -0.908800 5.822135 6.897921 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 8.430950 -3.798453 -8.758297 18.806762 0.280412 0.622199 1.910016 -0.859327 1.871661 -22.403802 -9.436946 12.633789 4.221839 0.558467 -0.084264 7.371374 4.622229 4.709569 -21.148089 0.697594 4.153078 -1.270969 -4.228828 -1.735194 -0.868015 -7.186340 11.282279 4.479193 1.465748 14.340323 -3.950745 10.939070 12.157123 -1.700554 5.590377 9.964048 -4.545424 0.581970 -7.218085 -3.710320 18.538862 5.541569 0.815832 6.567982 -2.028704 15.878794 3.842340 14.432087 4.914297 -6.039106 8.013791 9.718933 -5.095838 -2.841372 -15.726140 2.608544 9.656894 3.763511 -6.162766 5.969155 -4.017877 4.180806 6.650328 4.135278 19.331925 6.183127 13.506030 14.600423 14.054867 -10.732781 4.161504 1.567995 2.770147 -1.020781 15.985551 -9.599364 -12.931688 0.047509 -2.888807 -15.713268 1.254643 -0.689611 21.149998 -12.025785 -4.414086 -1.029092 6.117620 16.380390 -7.845851 2.217194 -14.141021 -0.403413 -4.491679 22.139978 3.405629 4.747891 -4.454596 5.730645 -2.274284 2.910092 2.615208 -15.054663 1.772493 -22.425308 -11.043643 -10.937083 3.265244 5.110776 -17.663347 1.221000 -3.736293 9.851882 -24.404432 -1.038754 3.131006 4.389231 16.375663 -1.959530 -6.684351 0.499873 1.461730 5.683787 6.180797 -6.186516 4.168466 -5.248908 1.049663 2.666380 5.067518 3.505417 -16.873602 -4.106006 1.959537 -0.171813 2.618837 8.347713 9.732718 -6.162024 7.180263 -9.912181 12.285499 -19.234647 -5.384974 -7.784526 -12.527516 -7.678903 9.864088 9.440228 14.471547 -4.027711 -5.685792 -0.631064 -21.696149 -24.593650 0.578500 0.154247 -1.584604 6.094890 -3.026948 4.706438 -12.306999 5.448876 11.712761 -7.583099 -7.680414 -0.555377 11.325022 2.166261 -5.419029 -4.968218 -2.679724 -1.963448 4.522719 17.139123 -2.930777 -23.663111 -24.610531 -6.460282 13.163403 -7.905616 0.529137 -7.044112 -5.891417 -11.492031 -0.364897 -11.837406 0.810327 -0.586105 -5.641404 -17.123708 5.117195 -2.413968 -1.867866 3.669705 -14.099078 3.666773 10.644176 3.713098 1.580136 3.281467 0.516046 -12.735993 -9.092728 5.381353 -8.127981 13.950910 9.344782 -0.561132 -6.834610 -6.689152 -13.126314 6.533612 -10.218664 8.841166 2.538074 -6.166975 6.367649 -13.798412 -0.033753 -8.893975 4.197875 1.006048 -19.570268 19.152992 11.696432 -10.330252 0.174652 -2.509210 8.127049 -0.396434 8.991130 -11.116909 -8.792218 3.070336 0.184091 -0.178364 -3.063276 3.596054 -4.327334 -3.184823 -13.487107 -4.833844 12.707813 6.689117 -2.185429 -0.707719 5.313384 -9.026970 3.245084 13.507099 9.533206 3.051906 -11.912532 -29.789863 4.461367 -9.662424 -3.437265 0.061723 -6.473180 -4.297059 5.176671 -4.781167 13.054080 -0.374929 -7.039357 13.226309 -19.248191 -14.326668 -11.832630 -4.155420 3.516066 -1.930013 2.483405 -7.922360 2.392125 -2.399957 4.724075 -5.681328 -9.379960 4.611803 7.861562 14.173048 -0.508298 -1.378677 14.990485 4.799754 -3.491334 -3.965783 -0.017001 -8.238688 3.558242 -17.715089 -3.097595 2.760341 7.619856 -10.703202 4.250246 -3.254889 4.848566 2.596051 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/weighted-job-scheduling.cpp__main = 1.249432 -0.501592 -0.576152 2.047363 0.046581 -0.219376 0.513175 0.620920 0.074006 -3.187555 -1.579092 0.942768 0.406921 -0.037692 0.397845 0.733254 0.567883 0.866426 -3.409595 0.190298 0.833074 0.182045 -0.342203 -0.425443 -0.009157 -0.804103 0.109932 0.740540 0.206385 2.057647 -0.784780 1.067431 1.680846 -0.116070 0.525009 1.517593 -0.090143 -0.077441 -0.216135 -0.286848 2.746531 0.703363 -0.137789 0.862437 -0.011830 2.159340 0.040491 2.232998 0.104324 -0.951704 1.249497 -0.556618 -0.979559 -0.144505 -1.953568 0.548242 1.899915 1.350654 -0.919250 1.237992 -0.723666 0.551323 0.874267 -0.168912 2.498255 1.254330 1.457315 1.734192 2.209779 -1.494822 0.474168 0.174334 0.445601 -0.282830 1.253917 -1.454582 -0.778997 -2.087792 0.002226 -2.851417 -0.017663 -0.121488 3.189653 -1.780163 -0.031063 0.856816 0.625028 2.121232 -1.191426 0.300590 -1.929855 0.030144 -0.275997 2.973544 0.210291 0.383903 -0.437418 0.847296 0.067418 0.643832 0.209910 -1.567275 -1.105509 -3.604837 -1.570578 -1.032632 0.089983 0.465389 -2.505179 -0.118450 0.789825 1.108424 -3.354930 -0.210847 0.706032 0.922274 1.090202 0.410757 -1.422941 -0.122609 -0.166065 0.732478 0.857896 -1.153896 0.537717 -1.265522 0.015634 0.516611 0.724504 0.199961 -2.313368 -0.640662 0.279185 -0.335392 0.112557 0.867246 1.056961 -0.698712 1.062899 -1.668133 1.677672 -2.781483 -0.396621 -0.933904 -1.832324 -0.812791 2.274118 1.374501 1.270658 0.009828 -1.150900 -0.247368 -2.591619 -3.253955 0.302488 0.084839 0.683237 0.487077 -0.423688 0.282779 -1.289194 0.282864 0.900254 -1.111439 -0.819731 -0.343257 1.814980 0.112511 -0.784215 -1.231486 0.132397 0.807151 -0.097166 1.669112 -0.639111 -2.064717 -2.913586 -1.190402 1.857176 -0.779807 0.161427 -0.805633 -0.368348 -1.889295 0.389015 -1.460522 0.187012 -0.019521 -1.257609 -2.464387 0.650886 -0.346390 -0.511280 0.558538 -1.769967 0.393795 1.162612 0.884694 0.183903 0.337814 0.302749 -2.059779 -1.887191 0.015945 -0.852847 1.892911 1.339526 0.119317 -1.013844 -0.755321 -1.625496 1.496697 -1.442467 0.954866 -0.035013 -0.864795 1.302867 -1.691786 -0.252114 -1.654386 0.713725 0.334472 -2.877300 2.880477 1.502683 -1.502864 -0.315999 -1.131752 0.975205 0.391860 1.797354 -1.376540 -0.972081 0.620911 -0.180195 -0.116830 -0.868571 0.755593 -0.564504 0.023540 -1.887753 -0.776920 1.553606 1.243795 -0.265216 0.573384 0.946957 -0.297652 0.262612 2.094358 0.962293 -0.214943 -1.357457 -3.985948 0.913345 0.213345 -0.154978 0.120802 -1.365194 -0.777083 0.568813 -0.103605 1.776707 1.167986 -0.318029 1.823119 -2.261904 -1.990355 -1.208838 -0.024188 0.547257 -0.673035 0.293544 -0.986559 0.375950 0.029691 0.686145 -0.069280 -1.437986 -0.914101 0.572468 1.988222 0.104042 -0.451902 2.254702 0.396733 -0.681273 -0.308451 -0.200575 -0.368313 0.528507 -1.382199 -0.429723 0.062625 0.926885 -1.505875 1.124937 -0.290798 0.315544 0.695053 -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.775807 -0.229223 -0.042998 0.610374 0.297585 -0.304662 0.289447 0.382615 0.022039 -1.138406 -0.699726 0.505293 -0.008377 -0.376015 0.221702 0.175483 0.547974 0.277405 -0.803600 0.241901 0.028786 -0.051875 -0.716278 -0.032662 -0.083496 -0.425684 -0.352286 0.500494 -0.019355 0.707782 -0.338039 0.069909 0.560510 -0.068473 0.450653 0.797825 0.345781 -0.055643 0.240581 -0.003146 1.431707 0.237270 0.115551 0.640642 0.635044 0.891046 -0.404358 1.560100 0.025025 -0.258613 0.904880 -0.620016 -0.404957 0.064628 -1.062651 0.348725 0.913764 0.202886 -0.758964 0.731484 -0.337558 0.251142 0.290996 -0.052947 0.918423 0.770293 0.280656 0.515806 1.162274 -0.502992 -0.101213 0.429335 0.740669 0.263958 0.077801 -0.444490 -0.096216 -0.803770 0.096160 -0.670437 0.215659 -0.357998 1.615383 -0.659479 0.001035 0.671353 0.052309 0.533754 -0.537675 -0.179448 -0.814525 0.113346 -0.107989 1.078875 -0.063965 0.364604 -0.118192 0.239809 0.047391 0.540272 -0.280911 -0.677789 -0.968374 -1.757735 -0.922655 -0.334840 -0.225400 -0.321496 -0.952226 -0.236237 0.631969 0.496336 -1.041087 -0.099279 0.325052 0.086330 0.246986 0.839995 -0.873863 -0.243116 -0.037390 0.263917 0.170473 -0.125270 0.007974 -0.932889 0.082517 0.148602 0.334443 -0.100762 -0.979677 -0.031938 0.093153 -0.066869 -0.252523 -0.055236 -0.053084 -0.644369 0.460498 -0.483208 0.613486 -1.230142 -0.400956 -0.701171 -0.965804 -0.127654 1.421747 0.583861 1.042267 0.361535 -0.383794 -0.346688 -1.031852 -1.408322 0.222012 -0.359855 0.508610 -0.143535 -0.059395 -0.171831 -0.372329 -0.348266 0.232073 -0.552180 -0.137090 -0.406741 1.034820 -0.229729 -0.349620 -0.753642 0.164427 0.768246 -0.037141 0.201149 -0.493319 -0.995529 -0.728297 -0.536217 0.603844 -0.207222 0.233906 0.070829 -0.075865 -0.840924 0.171903 -0.511567 0.152863 -0.407590 -0.584536 -0.888841 0.239009 -0.213857 -0.138564 0.029078 -0.631642 0.234021 0.436855 0.550556 0.114861 0.307659 -0.018958 -1.023000 -1.050543 -0.226814 0.046452 0.969072 0.866891 0.189891 -0.139545 -0.235592 -0.943756 0.642275 -1.115967 0.128953 0.379730 -0.562505 0.734724 -0.546357 -0.347067 -0.815940 0.424993 0.149757 -1.325502 1.070035 0.711547 -0.938622 -0.509040 -0.784464 0.320102 0.338487 1.183122 -0.389989 -0.075472 0.480217 -0.061609 -0.120114 -0.403823 0.473702 0.053411 0.553652 -1.024332 -0.520391 0.681776 0.753549 -0.163092 0.115607 0.092302 0.257865 0.167071 1.102715 0.206717 -0.015962 -0.583779 -1.834570 0.335299 0.275579 -0.117864 0.363530 -0.617425 -0.494055 -0.030948 -0.199259 0.824773 0.185366 0.243841 0.759487 -0.689921 -0.902867 -0.199197 0.035289 0.263894 -0.626312 0.462611 -0.516765 0.025129 -0.193026 0.463181 0.121408 -0.427160 -0.892199 0.026674 0.539265 0.206302 -0.306578 0.895289 -0.014498 -0.350927 -0.007653 -0.057314 0.381625 0.475097 -0.727171 -0.365558 -0.529071 0.294427 -0.510687 0.843928 0.041123 0.448517 0.543739 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 4.054636 -2.250306 -4.151293 8.438841 -0.176593 0.176491 0.852858 0.160657 0.409586 -10.727290 -4.416018 6.418778 2.102390 0.987550 0.251869 3.614246 1.786753 1.932705 -10.392373 0.171538 1.778680 -0.634091 -2.081634 -0.802915 -0.321433 -2.838213 4.938424 1.967260 0.728898 6.484577 -2.134082 5.306546 5.460974 -0.967512 2.143197 4.144496 -1.613360 -0.156475 -3.526002 -2.087493 8.670655 2.051694 0.254182 2.940009 -1.515546 6.983758 1.783265 7.640765 2.109070 -2.937500 3.633572 3.076692 -2.859948 -1.015668 -7.150186 1.234024 4.078823 2.571881 -2.541635 2.935907 -1.836985 1.888060 3.064757 1.718418 9.505127 2.652969 6.952973 6.808644 6.230395 -5.129148 2.160417 0.612882 0.882876 -0.544946 7.405500 -4.969237 -4.787291 -1.230700 -0.352429 -7.872263 0.166864 -0.134498 10.622461 -5.529808 -2.169380 -0.011655 3.031425 8.084522 -3.972342 2.141805 -6.522009 -0.327076 -1.381182 10.354519 1.410970 1.872923 -2.103169 2.760038 -0.857554 1.492294 1.405124 -6.231852 0.437342 -10.249259 -4.994771 -4.321849 0.975485 2.576273 -8.354974 0.511651 -1.146726 4.578857 -11.281843 -0.798354 1.569825 2.346470 8.155447 0.681621 -3.283172 -0.072299 0.469610 2.726674 3.010215 -3.015781 2.565960 -2.396363 0.823155 1.542229 2.518671 1.889770 -9.099667 -2.085468 1.396518 -0.554414 1.224124 3.824223 5.188754 -2.214660 3.397812 -4.719486 5.357846 -9.206721 -2.306418 -3.139801 -6.147883 -3.344314 5.564980 4.711797 6.101857 -1.430728 -3.223776 -0.121506 -9.905700 -11.730637 0.270800 0.732651 -0.649113 2.981199 -1.417797 2.179732 -5.379616 2.343991 5.584312 -3.642961 -3.858609 -0.696826 4.492343 1.373048 -2.418593 -2.522378 -0.545818 -0.706216 1.501906 8.226427 -1.039939 -11.511866 -11.638666 -3.034378 6.134157 -3.103486 0.229516 -3.038975 -2.904201 -5.695488 -0.094806 -5.160864 0.492536 0.173228 -3.267263 -8.061963 2.256237 -0.713200 -1.944654 1.742499 -6.599925 1.612402 4.617379 1.634243 0.473591 1.319197 0.603332 -6.097828 -4.958399 2.277352 -3.971316 6.537751 4.251285 -0.334094 -3.217083 -2.973052 -5.820541 3.463252 -5.469391 4.271093 0.777547 -2.640169 2.847070 -6.859214 -0.008010 -3.969453 2.118000 0.565023 -10.162743 9.787942 5.425218 -4.626924 0.086258 -1.501081 3.801749 -0.089197 4.434388 -5.480670 -3.856130 1.326067 0.461001 -0.147037 -1.450920 1.777932 -2.042206 -1.980403 -6.153359 -2.471019 5.406352 3.132442 -0.672572 0.139797 2.822888 -3.925582 0.983931 6.649055 4.124063 0.676993 -4.958382 -14.371802 2.546095 -3.190232 -2.236922 0.312298 -4.093175 -1.871736 2.426715 -2.814268 5.472741 -0.284360 -2.733936 5.957560 -9.139753 -6.462570 -5.416008 -1.672056 1.233894 -0.559708 1.182065 -3.489844 1.122287 -0.788295 2.140591 -3.016721 -4.329585 1.386103 3.127718 6.552091 -0.306212 -0.467823 7.136620 2.154359 -1.293607 -1.935263 -0.299560 -3.382514 1.732304 -7.982861 -1.302730 1.452332 3.484418 -5.218436 1.798637 -1.061216 1.742991 1.263941 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.686781 -1.875252 -0.611258 3.279139 0.185450 0.555530 0.730767 0.732986 0.630615 -5.222706 -1.960990 1.949978 0.496057 0.497012 0.212818 0.810518 1.426955 0.851258 -5.430698 -0.145044 1.031283 -0.006719 -0.278128 0.076500 0.004619 -1.467022 1.950358 1.499743 0.432326 3.144982 -0.697225 1.675469 2.796983 -0.396750 0.904295 2.591723 0.353573 0.033544 -1.481740 -0.662709 4.457254 0.864674 -0.187088 1.568700 -0.396414 3.547493 0.990813 3.531740 2.193067 -1.373252 1.781476 -0.476339 -1.325197 -0.984110 -3.781781 0.437146 2.432197 1.596814 -1.437743 1.779667 -0.527169 0.678570 1.196925 0.376925 3.726284 1.330932 2.575359 2.734095 3.324582 -2.670337 0.472138 0.749637 0.337269 0.316643 2.064788 -2.857352 -1.835130 -3.097092 -0.198588 -3.433607 -0.565289 -0.692688 3.464168 -2.351921 -0.414388 0.649571 0.006965 3.169059 -1.432319 0.553760 -3.450971 -0.341171 0.603311 3.984265 0.504930 0.725852 0.074220 0.852737 -0.036122 1.007454 1.318461 -3.018741 -0.524496 -5.046123 -2.019073 -2.097165 0.412207 0.943912 -3.251324 -0.064315 -0.262852 1.353829 -4.521726 -0.437960 0.793985 1.589887 2.818843 -0.314088 -1.331305 -0.199950 0.720948 0.991210 1.728591 -2.071568 0.915472 -1.332401 0.601079 0.858081 0.893359 0.321531 -2.995490 -1.554958 0.613165 0.565901 0.285923 1.231673 1.368689 -1.069055 1.417492 -2.339523 2.858021 -3.628296 -1.043335 -0.983940 -2.055070 -1.624358 4.596304 1.344445 2.437722 -0.276528 -2.212713 0.168261 -3.547788 -5.585191 0.449582 0.579523 0.387614 1.347766 -0.906603 1.176099 -2.424878 0.816416 1.388365 -1.210017 -1.453952 0.279297 -0.142389 0.422564 -0.878601 -1.247493 0.220079 0.703181 0.585247 3.204191 -0.892661 -4.593111 -4.182711 -1.668296 2.897081 -1.482571 -0.180649 -0.959033 -1.130030 -2.880167 0.218322 -2.258959 0.168153 -0.097666 -2.741538 -3.878855 1.267971 -0.937734 0.369743 1.567805 -3.024641 0.517247 0.817808 1.857235 0.402051 0.315872 -0.057147 -3.316986 -2.910423 0.229429 -1.449841 3.633723 0.612437 -0.078572 -1.274519 -1.316383 -1.754250 2.003851 -2.334107 1.812811 0.214662 -1.723471 1.556703 -2.210860 -0.169577 -2.386928 1.218637 1.091148 -3.626057 4.455078 2.374385 -2.094859 -0.774879 -0.492776 0.925621 0.381109 2.253741 -2.182422 -2.196893 1.166840 0.415093 0.013521 -1.241893 0.888832 -0.416881 -0.359587 -3.657338 -1.554871 2.475279 1.630928 -0.443709 0.345533 2.075145 -0.634161 -0.417633 3.821790 1.645832 0.453073 -2.030785 -6.049335 1.539894 1.112407 -0.306658 0.235079 -2.819983 -0.940613 1.394580 -0.425510 2.709553 1.665249 -0.618443 2.983520 -3.224473 -3.036782 -2.279525 -0.972641 0.990062 -0.279012 0.487684 -1.619033 0.851528 -0.708589 0.487534 -0.805732 -1.564728 0.235632 1.310575 2.445291 -0.031568 -0.078741 3.348179 0.682218 -1.115884 -0.467073 -0.165878 -1.297873 0.956266 -2.716968 -0.451401 0.440006 1.930699 -2.081284 1.045394 -0.585699 0.553019 0.637222 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.784988 -0.454900 -0.375187 0.563016 0.211264 0.500046 -0.059473 0.368621 0.280344 -1.084960 -0.803335 1.266894 -0.029200 0.120057 0.003088 0.308063 1.019667 -0.269107 -0.990082 0.234874 -0.307000 -0.612101 -0.685644 0.537612 0.187610 -0.537177 0.555257 0.481797 0.014419 0.748413 0.207680 0.291316 0.555057 -0.150591 0.882724 0.940894 0.020655 -0.004974 -0.430204 -0.542397 1.264070 0.485580 0.089633 0.382386 -0.015331 0.892779 0.208064 1.062081 1.079302 0.095659 0.409911 0.058158 -0.496505 -0.043519 -1.623228 -0.051116 0.063551 -0.834965 -0.623840 0.575539 0.003976 0.354109 0.069381 0.288197 1.103519 -0.414733 0.700586 0.606846 1.032508 -0.516601 0.002750 0.805127 0.400187 0.451871 0.500461 -0.241041 -0.627358 0.356230 0.173639 -0.301624 -0.049460 -0.565107 1.187902 -0.507469 -0.394002 0.023744 -0.672895 0.896035 -0.495502 0.205776 -0.698291 -0.114653 0.201609 0.479709 0.534449 0.688137 0.461820 -0.187787 -0.291256 0.317309 -0.091315 -1.008032 -0.093913 -1.712241 -0.307403 -0.710453 -0.105591 -0.119673 -0.586495 -0.233919 -0.290164 1.248460 -0.414873 0.051787 0.221701 0.128016 0.321617 -0.187488 -0.168966 0.018106 0.664975 0.465744 0.828163 -0.153167 -0.218851 0.060086 0.805977 0.199257 0.353987 -0.058341 -0.503725 -0.586264 0.672517 0.482453 -0.281640 0.110997 -0.002465 -0.459471 0.095141 0.005130 0.710500 -0.728163 -0.280690 -0.347280 -0.346390 -0.369622 1.314777 0.495210 1.263835 0.028124 0.114320 0.298995 -0.887910 -1.779960 0.429117 0.175319 -0.305216 0.004363 -0.132088 0.805786 -0.747022 0.380171 0.366601 -0.513026 -0.575005 0.366386 -0.302517 0.253125 -0.231729 -0.133578 -0.389335 -0.273671 0.298510 0.611640 -0.250209 -1.835017 -0.500493 -0.498907 0.799477 -0.374324 0.122868 0.173865 -0.322308 -0.236083 -0.384561 -0.457821 0.129765 -0.146283 -0.824530 -0.876536 -0.416874 -0.181674 0.223085 0.421438 -0.953625 0.214589 0.522746 0.160984 -0.119555 0.206612 -0.447701 -0.460806 -0.519435 0.142187 -0.179315 1.218383 0.458872 -0.342847 -0.338482 -0.086016 -0.179193 0.383607 -1.055502 0.763471 0.199242 -0.974425 0.449675 -0.474684 -0.305562 -0.157614 0.554386 0.240650 -1.612246 0.643780 1.187953 -0.529647 -0.614989 0.329397 -0.389545 0.045417 1.096860 -0.466242 -0.308584 0.277773 0.302917 0.031543 0.232423 0.551287 -0.072841 0.084202 -1.375236 -0.407354 0.857199 0.468949 0.136484 -0.064636 0.681890 0.427080 0.286870 1.117323 0.337018 0.125702 -1.079606 -2.041440 0.379971 0.489964 -0.471477 0.696190 -0.384783 -0.239340 0.027246 -1.071218 0.895616 -0.428275 0.075189 0.831673 -0.205017 -0.937815 -0.808360 -0.352115 0.098711 0.191727 0.802651 -0.629172 0.141856 -1.147774 -0.033007 -0.534905 0.148669 0.321137 0.335568 0.071656 0.553257 0.184119 0.720770 0.212668 -0.416255 -0.172487 -0.390894 -0.267443 0.423704 -1.332406 -0.503299 -0.239309 0.816146 -0.427059 0.252494 0.289353 0.721523 0.261572 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 4.860605 -2.105727 -6.795697 12.716076 -0.370615 2.987237 1.049057 0.188785 0.907016 -18.800242 -7.243481 12.233793 3.418602 3.112812 -1.029611 5.257766 3.631295 4.604988 -14.822638 -1.391793 3.832971 -0.112218 -1.490214 0.396426 -0.178695 -3.720525 9.390900 0.992261 2.340287 10.830172 -1.803266 9.295024 9.793351 -2.196574 1.936980 6.696230 -1.999351 -0.062619 -7.061383 -5.443924 13.497003 1.752528 2.512548 6.564565 -4.530384 11.090019 2.681359 10.195849 5.838694 -4.785109 3.578946 5.743051 -3.646003 -2.127063 -12.105101 2.092021 3.555279 2.481641 -2.391575 3.667872 0.164278 2.277118 4.348459 0.922328 12.971537 4.855394 9.158954 11.699639 9.958012 -7.912907 3.659768 0.920946 -1.838211 0.053285 11.287665 -7.983717 -7.513482 1.952683 -3.316341 -11.436496 -0.432847 -2.051303 17.442098 -8.728702 -3.173597 -2.314146 4.007213 12.759832 -3.526727 3.120465 -11.075140 -1.684406 -1.261336 11.521052 3.384627 4.023645 -4.321514 1.839755 -2.413566 0.451227 3.461828 -10.035097 3.176044 -12.938319 -6.420389 -7.702137 2.333411 6.292696 -11.987948 0.750718 -6.895521 9.943420 -17.587437 -1.952702 1.001654 4.343511 13.367876 1.765700 -6.088136 0.083932 3.112188 2.691121 3.523291 -4.902329 3.504771 -2.005184 -0.977705 0.531352 3.188072 2.998956 -14.490864 -6.247291 0.885448 0.162854 2.983117 7.007156 8.376610 -2.721640 4.535018 -6.383687 7.648545 -11.698706 -6.046040 -2.437926 -10.163781 -6.858916 11.431738 6.131680 10.643887 -3.962822 -5.480773 -0.917448 -14.636402 -16.513220 1.161281 0.906058 -1.699822 7.398925 -2.688025 4.868236 -10.440474 5.489732 9.304729 -3.783330 -5.943937 1.349191 4.341414 1.208869 -2.528717 -3.850611 -2.705403 -3.257541 3.609679 12.829860 -1.362223 -16.313066 -18.289068 -3.786761 9.887897 -6.048457 0.353056 -5.605905 -4.286081 -6.649017 -3.300950 -8.101598 -0.685374 1.233185 -7.017158 -13.182696 4.360101 -1.535678 -3.651920 4.850370 -10.665249 2.755843 8.098811 3.912811 0.749102 0.075431 -1.724341 -8.772369 -7.176030 4.136031 -7.591434 9.038699 5.974170 -0.902316 -7.558263 -5.161342 -7.228227 5.081912 -8.001366 7.848151 0.897372 -2.228308 3.025156 -10.448236 0.597407 -6.898092 2.767012 1.439143 -18.856858 12.463435 5.519407 -5.576047 0.828679 0.185962 5.216066 -0.724569 4.059889 -7.553446 -7.868177 2.967903 0.993508 0.491094 -3.642039 2.050293 -3.321486 -3.392115 -10.959899 -3.079708 9.935469 3.491959 -2.132841 -0.449061 7.169005 -6.511650 2.313865 10.721154 9.147168 1.174414 -7.258524 -19.681618 3.484494 -3.477896 -2.473088 -1.106665 -6.924403 -1.591506 6.219702 -6.923996 8.438879 -4.259000 -4.293006 9.379514 -13.322849 -9.791500 -7.221220 -3.563059 3.812698 1.245263 1.136704 -4.965063 2.578512 -1.505497 1.887769 -4.957813 -7.724413 6.045732 6.433781 10.851755 -1.510954 2.161687 10.707907 4.209130 -2.339886 -1.094786 -1.002394 -5.734343 -0.528576 -16.106721 -0.681930 4.522594 6.109039 -8.204852 2.475459 -3.092585 0.996897 1.434610 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 1.754237 -0.638647 -0.769982 2.831543 0.185479 0.004956 0.771484 0.569986 0.290088 -4.207435 -1.848155 1.730690 0.600305 0.168100 0.092693 1.081865 0.853497 1.104882 -3.672045 0.034556 0.914288 0.176037 -0.481633 -0.432116 -0.134268 -1.266575 0.846424 1.002868 0.377034 2.818824 -0.861689 1.216723 2.416388 -0.270934 0.646195 2.178974 0.496035 0.083163 -0.970473 -0.567655 3.588830 1.026292 -0.241731 1.329183 -0.145080 3.029060 0.443766 3.177843 0.148303 -1.312187 1.464564 -0.528466 -1.357289 -0.482666 -2.622294 0.809219 2.292100 1.623491 -1.298877 1.623240 -0.780198 0.698408 1.158649 0.175544 2.769160 1.654529 1.851722 2.325998 2.986999 -2.356840 0.394233 0.598649 0.608056 0.034129 1.964082 -1.887512 -1.540460 -1.735966 -0.011626 -2.967432 -0.188850 -0.268124 4.066062 -2.451810 -0.204187 1.063168 0.651612 2.600222 -1.525986 0.344922 -2.667385 0.024626 -0.328804 3.996949 0.428308 0.589075 -0.577582 1.042799 0.174830 0.910611 0.564952 -2.351610 -1.123171 -4.138897 -1.972530 -1.731874 0.221337 0.801404 -2.978684 -0.310063 0.657956 1.752846 -4.237406 -0.092480 1.021857 1.239092 2.454049 0.585104 -1.428923 0.171848 0.118784 0.526160 1.175134 -1.615222 0.655421 -0.978065 0.179221 0.525412 0.798669 0.334474 -3.348289 -0.823785 0.360352 -0.371977 0.272258 1.043696 1.237444 -1.418550 1.466103 -2.044906 2.227093 -3.476048 -0.756420 -0.983955 -2.690604 -1.238736 3.195205 1.469290 2.196901 -0.243410 -1.470154 -0.554785 -3.292414 -4.402127 0.372714 0.279694 0.605567 0.900741 -0.612328 0.553283 -2.029620 0.437826 1.282036 -1.325848 -1.063459 -0.023926 2.282783 -0.047923 -0.974597 -1.489256 0.077866 0.703823 0.492159 2.460446 -0.892890 -3.475155 -3.741392 -1.562725 2.488727 -1.196075 0.182592 -0.978956 -0.834029 -2.450169 0.310956 -1.979837 0.569761 -0.038964 -1.705211 -3.385336 1.210992 -0.611034 -0.561111 1.046997 -2.411385 0.499044 1.144781 0.849660 0.308723 0.354435 0.346502 -2.792508 -2.273440 0.259654 -1.210778 2.811372 1.480010 0.142765 -1.081359 -1.169400 -2.239322 1.786007 -1.997734 1.269246 0.050384 -0.906747 1.649082 -2.150428 -0.175155 -2.392991 1.107957 0.684130 -3.161314 3.741214 2.246421 -1.878727 -0.480481 -0.828077 1.111304 0.578645 2.303449 -2.045838 -1.738331 1.028663 -0.274371 -0.111920 -0.907722 0.920154 -0.677870 0.058948 -2.534024 -1.011213 1.928932 1.659841 -0.487422 0.528613 1.435503 -0.636187 0.189930 2.799174 1.427578 0.086798 -1.999487 -5.151152 1.300840 -0.379242 -0.364057 0.174198 -1.743409 -0.882263 1.157187 -0.328522 2.428975 1.037259 -0.611334 2.574002 -3.155818 -2.714093 -1.470712 -0.583264 0.868950 -0.784578 0.572892 -1.375545 0.628450 -0.182599 0.643230 -0.480403 -1.611693 -0.276513 0.908792 2.591161 0.041964 -0.376231 3.044035 0.468210 -0.829112 -0.313168 -0.145451 -0.519089 0.658988 -2.185164 -0.456402 0.165609 1.337222 -1.904143 1.364154 -0.463375 0.229225 0.914657 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 4.962469 -1.567578 -5.240488 9.882221 -0.715794 1.067488 0.996148 -0.440593 0.217461 -12.757242 -5.439629 6.702492 2.887398 1.665757 -0.171399 5.465087 1.849072 2.101435 -11.103989 -0.030774 2.892549 -0.770439 -1.562098 -0.067960 -0.311160 -4.242023 5.553003 1.429003 0.792842 8.184885 -2.202162 6.767381 7.392597 -1.457404 2.193892 4.997636 -2.399143 0.094884 -4.302303 -1.905696 9.462882 2.700732 0.249770 2.547905 -2.685989 8.685277 1.959954 9.023285 1.037369 -3.886828 4.766737 2.761520 -3.417379 -0.487972 -7.668441 1.329276 4.160402 2.724294 -2.463855 3.035830 -2.989334 2.494406 3.609466 2.172504 10.224697 3.692681 8.238958 8.005283 7.131117 -6.076160 2.950750 0.875888 -0.308388 -0.982394 8.175607 -5.601842 -6.037892 0.700424 -0.645734 -8.187341 -0.173818 -0.100012 12.437686 -6.969525 -2.897425 -0.545452 3.458377 9.680978 -4.595419 2.718502 -7.653090 -0.219248 -1.953088 11.013683 1.633115 2.343768 -3.051413 2.941193 -1.067910 0.845615 1.538619 -7.599530 -0.129850 -9.684529 -5.908724 -5.678483 2.020278 4.186783 -10.115869 0.814978 -1.984089 5.789182 -13.140443 0.186550 1.793870 3.388923 11.087104 2.755820 -3.958377 0.215840 1.100771 3.219111 3.713681 -3.494163 3.377064 -3.224336 1.126770 1.687336 2.615401 2.013544 -11.377208 -2.378622 1.535345 -1.899409 1.915597 5.591734 6.444465 -2.871685 4.354382 -5.185917 6.229607 -10.748885 -3.195994 -3.691501 -8.351011 -4.236644 7.216343 6.688432 6.940913 -2.122146 -3.648407 -0.542105 -12.090534 -12.174375 -1.025552 0.563871 -0.789773 3.914610 -1.750539 3.077474 -6.842168 3.872872 5.830694 -3.956116 -4.374692 -0.272886 5.999281 1.528819 -3.058671 -2.671710 -1.885780 -2.015682 1.822104 10.248453 -0.816127 -13.021962 -14.089682 -3.677271 7.408039 -4.207294 0.735942 -4.698212 -2.914796 -6.940513 -0.551948 -6.217781 0.415235 0.870114 -3.580321 -9.794222 3.318860 -0.846867 -2.594627 2.026665 -7.454253 1.544920 5.999478 1.497637 1.502624 1.241454 -0.115610 -6.533718 -5.018439 3.300688 -5.564489 7.846633 5.007838 -1.042926 -3.768991 -3.916200 -7.271231 4.122183 -4.880768 4.954823 0.452307 -2.161841 3.049457 -7.834845 0.615225 -5.177458 2.337604 0.200128 -12.225750 10.399084 6.551781 -5.056651 0.552580 -1.254107 5.009768 -0.056649 4.254501 -5.652591 -4.681442 1.100338 0.340563 0.012649 -1.077394 2.193390 -3.423954 -2.703370 -6.540229 -2.116845 7.015105 3.489262 -1.322190 -0.287882 3.610772 -4.449380 2.239146 6.444231 5.220925 0.264555 -5.852611 -16.609442 2.385678 -4.051119 -2.702169 0.035676 -3.954050 -1.735527 3.277428 -3.861126 7.147514 -0.668202 -3.532769 7.151103 -10.352275 -7.790666 -6.611616 -2.269354 1.107401 -0.299200 0.853262 -3.761446 1.589753 -0.150722 2.227115 -3.273379 -5.921104 2.677392 4.076534 8.618987 -0.647967 -0.232937 8.312960 2.924234 -0.883531 -2.599899 0.335204 -4.280932 1.595566 -9.249765 -1.512587 2.310158 3.988066 -6.168666 1.723065 -1.695264 1.463008 1.443993 -PE-benchmarks/binary-insertion-sort.cpp__main = 1.563395 -0.903069 -0.769331 3.201740 0.340081 0.646974 0.654970 0.325266 0.342528 -4.804768 -2.204839 2.516081 0.432472 0.505473 0.028818 0.925437 1.120324 1.054422 -4.406489 -0.343256 0.886286 -0.069630 0.059251 -0.323933 -0.046208 -1.318781 1.845814 1.114817 0.510479 2.789457 -0.772021 1.720773 2.500549 0.209472 0.733064 1.969439 -0.314109 -0.264763 -1.498229 -1.387208 3.731153 0.920653 0.004581 1.587553 -0.479541 3.058353 0.897784 2.798954 1.628840 -1.204109 1.254246 -0.376659 -1.426850 -0.552678 -3.059789 0.499696 1.364911 1.135768 -0.929244 1.275463 -0.696135 0.744251 0.980334 -0.362900 3.187843 1.037343 2.505367 2.535484 2.422504 -2.553367 0.400583 0.595778 0.465240 0.511785 2.033157 -2.012849 -1.644767 -1.224125 -0.333320 -3.357960 -0.288312 -0.536024 4.336828 -2.083516 -0.728012 0.250417 0.421750 2.871232 -1.164693 0.555124 -3.100888 0.064441 0.081653 3.292719 0.762764 0.405830 -0.557936 0.663957 -0.126524 0.860513 0.903023 -2.400951 -0.406013 -4.433124 -1.414463 -1.910567 0.807739 0.934801 -2.826531 0.312731 -0.194411 2.264262 -4.243183 -0.627294 0.832774 1.080562 2.402526 0.140834 -1.105336 -0.184953 0.519299 0.973251 1.416824 -1.876535 0.805315 -0.745939 0.079824 0.175944 1.060665 0.628168 -3.157314 -1.425074 0.559650 0.138371 0.567695 1.184519 1.634994 -0.558724 1.386534 -1.768534 2.289760 -3.202013 -0.630216 -0.981975 -2.084252 -1.565034 3.959633 2.083040 2.599141 -0.069291 -0.982337 -0.318463 -3.245481 -4.539746 0.382092 0.373679 0.356285 1.164726 -0.570029 1.105090 -2.317057 0.793540 1.361729 -1.179168 -1.327709 0.118920 0.927929 0.170755 -0.882199 -1.349145 0.124085 0.294646 0.141293 2.871069 -0.766353 -4.506733 -3.961010 -1.604354 2.507328 -1.598236 -0.026666 -1.090976 -0.858850 -1.767627 -0.052698 -2.028533 0.263266 0.268943 -2.192454 -3.512796 1.200849 -0.656287 -0.475415 1.466273 -2.455777 0.546673 1.551738 1.286424 0.339481 0.591215 0.049474 -2.477430 -1.917235 0.238119 -1.691174 2.699564 1.480266 -0.222217 -1.964689 -1.407596 -2.181103 1.822172 -1.862875 1.619660 -0.230216 -1.080871 1.071747 -2.207405 0.509799 -1.883708 1.024148 0.793638 -4.993814 3.313379 2.305927 -1.818925 -0.436475 -0.935612 1.076417 0.249125 1.988468 -2.133115 -1.741949 0.742156 -0.108432 0.022632 -0.839570 0.748154 -0.378322 -0.750783 -2.899476 -1.341550 2.159948 1.195648 -0.406981 0.332510 1.899410 -0.320544 0.712602 2.960845 1.545846 0.173034 -2.115191 -6.237071 1.200917 0.916445 -0.413717 0.540757 -1.956303 -0.954728 1.111743 -1.309218 2.313553 0.276342 -0.935052 2.607020 -2.849372 -2.366475 -1.868666 -0.944437 0.852592 -0.423962 0.814491 -1.231573 0.443102 -0.404030 0.353674 -0.799811 -1.582238 0.268715 1.295795 2.768370 0.326315 0.302880 2.828291 0.733825 -1.001359 -0.430036 -0.167931 -1.181714 0.729078 -3.317731 -0.389883 0.651858 1.182781 -1.852423 0.620941 -0.264948 0.369680 0.368651 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.821203 -2.122206 -3.285808 6.680473 0.170215 1.434092 0.733987 -0.506017 0.694627 -9.290158 -3.366194 6.111827 1.384720 1.429624 -0.565382 2.813419 1.629745 1.765362 -6.489185 -0.557469 1.311826 -0.443682 -0.339435 -0.086337 -0.273769 -2.347291 5.109328 0.892955 1.088882 4.938485 -1.066874 4.361054 4.648089 -0.360579 1.076344 3.186831 -0.793253 -0.189810 -3.868707 -2.831595 6.596898 1.265109 0.869851 2.745401 -2.032642 5.330239 2.013085 6.564939 3.562130 -2.332413 2.650780 0.905841 -2.245024 -0.890446 -5.827751 0.935307 1.103907 1.387648 -1.302943 1.600815 -0.998606 1.422949 1.956040 0.453930 6.430866 1.771260 5.267964 5.471669 3.991907 -4.457674 1.184358 1.199514 0.079221 0.681054 6.213482 -4.253283 -3.834592 1.346677 -1.019800 -4.549490 -0.319822 -0.741306 9.129657 -4.074123 -2.439884 -0.796505 1.819755 5.912575 -1.933892 2.117063 -5.922412 -0.061827 -0.005464 6.275744 1.518335 1.042968 -2.383472 1.084213 -1.016407 0.798423 2.159623 -4.704721 0.645612 -6.540040 -2.632801 -3.847194 1.680786 2.635603 -5.978002 0.672063 -2.554480 4.852837 -8.628551 -0.761757 1.186371 1.741853 8.366221 1.469555 -1.851287 -0.046392 1.717616 1.696018 2.321399 -2.722565 1.712190 -1.046538 0.490879 0.139865 1.678115 1.472947 -7.456982 -2.473576 0.856460 0.436949 1.593171 2.905328 4.295318 -1.437824 2.500769 -2.718252 3.665496 -6.152032 -2.384148 -1.651737 -5.009892 -3.186019 7.807700 4.123785 6.524356 -1.201974 -2.275251 -0.826601 -7.006272 -8.768890 -0.074102 0.268999 -0.696343 3.241643 -0.883985 2.447141 -4.533632 2.813225 3.753033 -2.007328 -2.795736 0.670886 1.217452 0.443715 -1.442447 -2.175764 -0.770375 -1.361990 1.206949 6.593734 -0.613528 -10.770613 -8.837776 -2.364418 4.525520 -3.062474 0.341078 -2.473851 -2.246123 -3.196935 -1.179526 -3.875652 0.349757 0.844806 -3.578853 -6.246844 2.454674 -0.887881 -1.618867 2.402314 -4.446968 1.134176 3.355480 1.829965 0.614657 1.127401 -0.437515 -4.770823 -3.234683 1.653229 -4.121250 5.093056 3.022728 -0.589194 -3.350796 -2.868538 -4.706721 2.400710 -4.709899 3.281326 0.189032 -1.167554 1.396756 -5.092342 1.520406 -3.184380 1.701393 0.999787 -10.029268 5.939400 4.087750 -2.853943 0.179517 -0.366857 2.384591 0.030966 2.529924 -3.714040 -3.373850 1.150474 0.227980 0.157879 -0.972139 0.858852 -1.428324 -2.079676 -5.134184 -1.988087 3.996207 1.635939 -0.865219 -0.794431 3.204109 -2.408541 1.369093 5.126998 3.564955 0.662847 -4.066792 -12.351754 1.876198 -0.811590 -1.940602 0.707175 -3.553032 -0.770617 2.698672 -4.079462 4.015654 -2.185009 -2.173564 4.581122 -6.838483 -4.362643 -3.504332 -2.150050 1.273296 0.180383 1.339068 -2.238072 0.809096 -0.753710 0.570425 -2.761409 -3.207314 2.720170 3.007580 5.439220 0.069962 1.246187 4.885494 1.790373 -0.991418 -1.003159 0.129308 -2.813946 0.780454 -8.289659 -0.547020 2.015195 2.271967 -3.584650 0.538958 -1.009580 0.423487 0.277244 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.741489 -0.823942 -0.209708 1.424809 0.169908 0.403194 0.315043 0.029110 0.176113 -2.238196 -0.986014 0.843813 0.174170 0.412856 0.141512 0.460163 0.576776 0.205268 -2.079082 -0.203966 0.367939 -0.236698 0.091851 0.219803 -0.046231 -0.821137 0.775293 0.710464 0.190650 1.323866 -0.428840 0.846946 1.231356 0.014286 0.301629 0.969489 0.117077 -0.161635 -0.770673 -0.354251 1.776747 0.171902 -0.073494 0.537928 -0.295197 1.515201 0.320568 1.895635 1.226835 -0.633459 1.118806 -0.708788 -0.642395 -0.203999 -1.488337 0.188404 0.709436 0.568784 -0.556947 0.604968 -0.458003 0.389405 0.419499 -0.056861 1.539856 0.520953 1.279962 1.047678 1.101035 -1.315434 0.091348 0.442024 0.163345 0.381544 0.641022 -1.045079 -0.526634 -1.209016 0.108419 -1.165692 -0.345323 -0.329955 1.470204 -0.950693 -0.534464 0.306345 -0.123758 1.365566 -0.616296 0.518513 -1.556027 0.021452 0.509136 1.366289 0.290098 0.042893 -0.070740 0.254501 -0.053692 0.559024 0.436565 -1.184933 -0.651228 -2.031860 -0.986852 -0.861626 0.384895 0.438341 -1.511346 0.207981 0.161384 0.669318 -1.809220 -0.218943 0.428011 0.687538 1.174769 0.517562 -0.503716 -0.297811 0.468795 0.597775 0.892533 -0.765648 0.587543 -0.829125 0.390487 0.251190 0.467362 0.118520 -1.196369 -0.619783 0.407299 0.158009 0.236472 0.445889 0.754220 -0.203124 0.738539 -0.706736 1.112951 -1.560744 -0.380442 -0.576221 -0.788558 -0.688275 2.362220 1.069181 1.264102 0.228499 -0.843444 -0.024545 -1.469377 -2.268326 -0.138477 0.170470 0.256648 0.603230 -0.358828 0.675100 -0.897954 0.357585 0.345461 -0.605314 -0.712818 0.018791 -0.342670 0.157256 -0.391125 -0.669738 0.189818 0.220910 -0.190188 1.497439 -0.290065 -2.192354 -1.701156 -0.892201 1.175908 -0.732152 0.054048 -0.416523 -0.416571 -1.246498 0.088423 -0.932842 -0.158378 0.107345 -1.294063 -1.672035 0.665274 -0.368424 -0.090616 0.757954 -1.298093 0.203214 0.388087 0.787150 0.426382 0.303835 -0.136592 -1.265597 -1.106815 -0.068584 -0.809104 1.521386 0.454213 -0.164888 -0.586587 -0.799044 -0.972402 0.937407 -1.178300 0.717131 0.053603 -0.688742 0.472572 -0.978790 0.071369 -0.787617 0.587763 0.513654 -2.075014 1.697453 1.221948 -0.935567 -0.345192 -0.526304 0.487204 0.215637 1.090315 -0.927258 -0.646239 0.308642 0.325675 0.002317 -0.301374 0.457219 -0.166957 -0.440589 -1.357834 -0.797989 0.890377 0.750326 -0.124355 0.070727 0.941850 0.152638 0.204175 1.382059 0.489961 0.008185 -0.691603 -3.101976 0.662417 0.975440 -0.347437 0.607065 -1.405866 -0.338945 0.479987 -0.615519 1.172749 0.282239 -0.079874 1.311267 -1.179806 -1.137962 -0.997619 -0.586018 0.176195 -0.146581 0.483340 -0.604392 0.213547 -0.201277 0.090998 -0.456025 -0.574094 -0.116307 0.537402 1.127707 0.106526 0.242429 1.354038 0.325470 -0.471313 -0.374826 -0.010195 -0.559054 0.564383 -1.212490 -0.212975 0.277678 0.553173 -0.826577 0.114487 -0.169137 0.114359 0.109960 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 3.226855 -1.537688 -2.785939 7.824923 -0.134165 1.855408 0.974660 -0.885574 0.524377 -10.600309 -3.992958 7.249761 1.693161 2.313419 -0.959476 3.324092 1.949794 1.941893 -9.635341 -1.121906 2.050461 -0.335164 0.560723 -0.361700 -0.080024 -3.064323 6.778334 1.954075 1.363215 6.592420 -1.858820 4.933715 5.985622 -0.390521 1.287664 4.059009 -1.119185 -0.132380 -5.315275 -3.146709 7.441802 1.228262 0.595590 3.139084 -2.601953 7.088523 3.121590 5.865511 5.217850 -3.139525 2.712441 3.259393 -3.032962 -1.835143 -6.269921 0.763134 1.984271 2.228621 -1.807003 2.155603 -0.328085 1.742760 2.479092 1.035820 6.993113 1.994793 6.234925 6.126490 5.067047 -5.959763 1.507754 0.825054 -0.154849 0.882809 6.533035 -5.128840 -5.063513 0.650783 -0.987122 -6.843361 -0.934106 -0.451863 8.186798 -5.055495 -2.414035 -0.990801 1.338368 7.217713 -2.322361 1.928558 -6.506881 -0.224875 -0.203164 7.965952 1.890188 0.972503 -1.392582 1.490777 -0.650021 1.426204 2.479895 -6.282741 1.425642 -7.555758 -3.683980 -5.130462 2.240685 3.645055 -6.815899 1.102405 -2.616541 4.971715 -10.097152 -1.136807 1.690363 2.852703 7.211824 -0.240904 -1.366573 0.113343 1.488044 2.309345 3.343735 -3.775773 2.434917 -0.162190 0.068118 0.679345 2.168025 1.811385 -7.604657 -3.458000 1.254357 0.161802 1.924025 3.665658 4.877885 -0.976249 3.196007 -3.785842 5.098443 -7.131526 -2.272052 -1.862810 -4.121196 -4.166537 5.330939 3.781999 5.699991 -1.778781 -2.362988 -0.216745 -7.963058 -9.574236 0.111782 1.192984 -0.913945 4.320351 -1.695417 3.407223 -5.837974 2.558188 4.242985 -2.624544 -3.887558 0.383034 1.226863 0.984707 -1.856490 -1.899568 -0.473549 -2.031765 1.541891 8.417637 -1.014415 -11.232207 -10.404383 -3.324245 6.010348 -4.009742 -0.247889 -3.116317 -2.987436 -4.017310 -0.723157 -5.232014 -0.210264 0.957008 -3.889765 -8.088715 3.254270 -1.375828 -1.303206 3.279725 -6.580903 1.159276 3.144642 1.447649 1.154731 0.732564 -0.078509 -5.231560 -3.259690 2.043703 -4.608816 5.244490 2.658116 -0.575259 -4.414815 -3.667727 -4.566189 2.816229 -4.084115 4.470085 0.108658 -1.589680 1.911215 -5.493716 2.041055 -3.163519 2.117926 1.716074 -10.439952 8.074699 5.193911 -3.688978 0.062607 0.008685 2.830548 -0.029320 3.040979 -5.646192 -4.995461 1.252052 0.363882 0.268430 -0.992825 1.493840 -1.673819 -2.727515 -5.617481 -2.364661 4.726021 2.496956 -0.800000 -0.021170 4.363972 -3.002028 1.391709 5.677406 3.999725 1.379959 -4.313423 -13.375889 2.663079 -1.095757 -1.369889 1.275667 -4.041972 -1.332346 3.609765 -3.284562 5.337990 -2.005953 -2.882627 5.908541 -7.723118 -5.622953 -5.192055 -3.432415 1.590413 0.557451 1.116214 -2.788567 1.102703 -0.828335 0.582902 -3.451133 -3.047818 3.741724 3.822493 6.799005 0.046332 1.194065 6.595027 1.974792 -1.615188 -1.474668 -0.280198 -3.775509 0.909911 -7.823433 -0.487976 2.652088 3.219904 -4.562757 0.325324 -1.511646 0.595234 -0.076197 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 6.914007 1.174678 -3.852242 9.024615 2.197913 -0.934495 1.985823 3.824363 -0.917535 -10.112805 -4.456572 7.111005 0.582115 -1.298493 2.404449 3.449211 4.094032 4.407380 -11.283087 0.478274 -0.320099 -0.582786 -2.956911 -4.540154 0.219025 0.589525 1.757366 4.897001 1.587036 8.148697 -3.265854 2.987693 5.397398 1.723039 4.680850 3.068080 3.444794 0.706148 -4.338289 -2.404845 12.027729 2.987592 -0.581795 6.589991 2.186702 9.626460 1.169588 9.523501 1.222924 -0.113580 5.467457 -2.392081 -3.557035 -0.789907 -9.427618 1.340384 7.126365 3.461394 -4.720950 6.351303 -0.122789 2.872666 3.201255 -2.337082 9.191267 5.074526 5.124516 6.551123 9.575562 -6.077733 0.636696 -1.404990 6.092410 0.324427 1.491514 -8.734624 -3.469683 -9.929303 -0.162041 -11.807783 1.099070 -2.901975 12.845734 -7.731865 0.835349 4.104220 0.365803 6.039448 -6.466123 -0.299450 -8.093229 -1.723638 -1.288044 12.821978 1.847133 2.442253 -0.428160 2.190958 1.367901 2.975248 1.885009 -7.120375 -2.715103 -12.616875 -7.303854 -0.764412 -1.157475 -0.896845 -4.896660 -1.630291 2.461957 4.090899 -12.580071 -4.112371 3.069165 1.174764 4.092113 2.574437 -5.305727 2.068212 -0.349537 3.763320 3.665406 -6.403056 0.590102 -2.828580 -3.477240 1.005124 4.578880 2.118529 -8.498232 -1.927199 1.830813 -0.699071 0.410018 -0.762741 -1.188138 -5.005465 4.327113 -5.719217 7.315367 -9.820790 -4.970144 -1.787613 -6.970446 -3.487162 9.921246 2.942403 8.279791 3.297656 -2.617208 -1.050613 -8.329511 -14.140325 5.009922 0.198496 1.295357 1.659490 -1.242546 0.741761 -6.694750 -1.869929 6.784263 -5.033868 -6.184986 -2.810552 7.181720 -0.606551 -3.465218 -5.747280 1.806690 5.418466 3.979426 5.310684 -4.160989 -12.783034 -7.305149 -3.627584 7.745451 -4.116418 0.616768 -0.426103 -0.180174 -8.676629 -0.367758 -8.188161 3.702092 0.141485 -5.203268 -9.062635 5.098845 -2.006368 1.828636 3.022865 -6.150330 3.086444 2.378486 6.078967 -2.501553 2.895187 2.387503 -8.938828 -9.468578 -1.028538 -1.853494 8.446837 1.696794 3.249499 -5.399953 -1.411275 -6.735804 6.596224 -7.581440 3.816364 -0.230944 -1.632576 5.263855 -5.305712 -2.880342 -6.270075 4.108346 2.193076 -10.173444 8.878131 6.866059 -7.269913 -2.680218 -5.139048 3.732977 1.635527 10.170398 -6.662660 -6.376537 3.440081 1.826519 -0.646478 -4.888311 3.239341 0.291159 -0.004020 -9.549486 -3.460707 6.583912 6.002535 -0.726754 2.694479 3.748560 -0.660393 -2.548013 10.833105 2.355409 1.383954 -3.943235 -15.158258 0.554690 5.218515 0.466248 1.998652 -5.929421 -2.699388 0.806877 -2.436535 7.259102 2.843056 -2.459916 7.607103 -7.387411 -7.773371 -5.242442 0.926440 3.552535 -4.930955 2.735381 -3.908536 0.801620 -0.320075 2.741149 0.353117 -3.816660 -1.785434 0.454084 6.690958 -1.206367 -1.906058 9.553951 1.040609 -3.674775 0.412750 -1.962005 -0.941024 5.399547 -9.759612 -1.477648 -0.946719 3.495286 -6.049606 3.550936 -0.313065 1.683761 2.760320 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 3.713605 -0.519119 -1.604565 5.540235 0.878194 -1.409903 1.146953 1.811641 0.526652 -7.936359 -4.095411 2.151016 0.923066 -1.219525 0.953947 1.665832 2.176649 2.717167 -9.224575 1.357239 2.224434 0.490054 -1.847936 -1.635830 0.015629 -2.293855 0.119363 2.132991 0.573617 5.587412 -2.553893 2.515230 4.436371 -0.077442 3.276825 4.651241 -0.644581 -0.264050 0.211101 -0.533097 8.013805 3.030725 -0.396789 2.351503 1.284805 6.191892 0.084049 4.776228 -0.565812 -2.323353 2.458777 -0.504288 -2.126165 -0.256885 -5.884429 1.742572 5.343144 2.830105 -3.756887 3.299821 -1.614212 1.555664 2.624218 0.013987 6.585149 2.825171 2.682385 4.679982 6.593838 -3.358104 1.312238 0.105995 2.318708 -0.855920 3.047771 -3.069636 -2.897303 -4.870238 -0.245294 -7.617353 0.845659 -0.253152 7.334148 -5.103410 1.244706 2.313453 1.806217 5.507761 -3.422976 -0.983175 -5.495342 -0.069883 -1.840157 8.038498 0.474842 1.561375 -0.588590 2.680846 -0.207553 1.789771 -0.178200 -5.412268 -2.313462 -10.654422 -4.288045 -3.378084 -0.127584 0.553713 -6.142404 -0.747419 1.715974 3.777221 -8.744844 -0.195292 1.401837 1.297201 0.843750 -0.851298 -3.347983 0.040153 -1.517529 1.820341 1.738330 -2.886974 0.475417 -3.273377 -0.446784 1.488132 2.223185 0.615612 -4.934863 -0.816284 0.942303 -0.816526 -0.508882 2.324780 1.954173 -3.095891 2.783971 -4.664323 4.808898 -6.526095 -0.835176 -3.365733 -4.905657 -2.225800 4.371889 2.859461 2.998908 0.041607 -2.078184 -0.353270 -7.353436 -8.975985 1.636380 -0.619744 1.604376 0.722106 -1.097571 0.303095 -3.747472 0.034223 2.636676 -3.541655 -2.444774 -1.374407 6.063997 0.146191 -2.192999 -2.664051 -0.099385 2.987943 0.435468 3.930198 -2.805474 -4.272117 -7.342874 -3.124330 5.059712 -2.378052 0.579007 -2.065246 -0.707258 -4.884886 1.293010 -4.535092 0.893272 -1.762929 -1.507357 -6.523275 1.198669 -1.412096 -0.082324 0.892330 -4.798510 1.846592 3.508404 2.081138 -0.127866 0.941166 1.079312 -5.247564 -4.480775 0.692258 -1.286526 4.948046 3.675077 0.495379 -2.384526 -1.957286 -4.269064 3.975070 -3.242649 2.702855 0.850121 -3.169504 4.105256 -4.071827 -1.542498 -4.182873 2.177344 0.658412 -5.700771 7.218512 3.950385 -4.901916 -0.674783 -3.380270 2.961009 1.079632 5.291408 -3.401567 -2.508078 1.901320 -0.996751 -0.435990 -2.665538 1.978570 -1.229272 1.400166 -5.628694 -1.927632 4.749431 3.414993 -0.716688 1.469398 1.438018 -0.958872 0.955762 6.109396 2.658203 0.827088 -4.686606 -9.477269 2.029031 -0.500136 0.905149 -0.342215 -2.021333 -2.382544 0.493535 0.321808 5.438211 3.961884 -1.330016 5.117293 -6.279969 -5.921822 -3.557817 0.250806 1.814488 -2.348825 0.753712 -3.204133 0.979518 -0.843322 2.869735 0.249337 -3.659448 -2.513463 2.112849 4.669392 0.459760 -2.250948 6.104659 0.980552 -2.141464 -0.591125 -0.441889 -0.869302 1.371573 -3.798922 -1.957219 -0.539187 2.638393 -4.172275 3.679143 -0.994618 2.220142 2.101344 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.864584 -0.927606 -0.509254 2.901891 0.268060 -0.313685 0.941624 0.978077 0.265583 -4.679242 -2.024307 2.091740 0.436997 -0.242266 0.100398 0.768600 0.925715 1.432439 -4.547440 0.179370 0.988301 0.431646 -0.545028 -0.918038 -0.083232 -1.142079 0.836496 1.317414 0.378434 2.950066 -0.963956 0.835874 2.534548 -0.061003 0.724510 2.403668 0.460218 0.066296 -0.634440 -0.694118 4.124363 1.307616 -0.352494 1.664456 0.328968 3.176610 0.510561 3.139818 0.454884 -1.271286 1.441041 -0.804823 -1.563866 -0.677168 -2.980916 0.857889 2.673785 1.921964 -1.437043 1.904599 -0.888932 0.628500 1.210793 -0.123561 3.123109 1.837719 1.992602 2.413559 3.383053 -2.384765 0.276755 0.538884 1.052418 0.064071 1.875410 -2.105312 -1.683019 -2.840879 -0.149440 -3.828772 -0.147750 -0.296171 4.517113 -2.549567 0.173217 1.299167 0.752595 2.620158 -1.606265 -0.132333 -2.959140 0.084484 -0.333969 4.553263 0.445405 0.679286 -0.451026 1.125053 0.387779 1.140200 0.719529 -2.379853 -1.230535 -5.217966 -1.897060 -1.763269 0.035765 0.502588 -3.004152 -0.415537 1.220549 1.718193 -4.547219 -0.329528 1.215483 1.114841 2.189574 0.074016 -1.629682 0.295724 -0.221280 0.456741 1.141808 -1.993496 0.339676 -0.984683 0.116058 0.456244 0.855784 0.354924 -3.616646 -0.932016 0.333859 -0.188782 0.165442 0.867575 0.885204 -1.474726 1.435262 -2.352170 2.429455 -3.686995 -0.512837 -0.990403 -2.633871 -1.222463 3.811232 1.428127 2.091478 -0.206568 -1.439183 -0.665998 -3.331755 -4.912322 0.875041 0.221860 0.885416 0.547277 -0.583402 0.279006 -2.060891 0.071352 1.242342 -1.408854 -0.908928 -0.157953 2.495010 -0.183128 -1.014451 -1.689355 0.193850 1.447477 0.574775 2.144087 -1.231794 -3.755525 -3.705717 -1.694161 2.602940 -1.183833 -0.010818 -0.915047 -0.771250 -2.482428 0.519625 -2.048768 0.872059 -0.205028 -2.008594 -3.647673 1.147341 -0.690227 -0.233066 0.999897 -2.461141 0.499468 0.910914 1.228640 0.148604 0.361614 0.581095 -3.264499 -2.672162 0.043973 -0.915705 2.989516 1.490143 0.387886 -1.501206 -1.002338 -2.423389 1.990638 -2.117942 1.244814 -0.091734 -1.421386 2.070845 -1.995879 -0.119721 -2.710595 1.177811 0.744782 -3.623558 4.323423 2.359311 -2.076313 -0.675867 -1.072645 0.947658 0.785620 2.641263 -2.322576 -1.919192 1.214226 -0.623509 -0.163734 -1.079591 1.063352 -0.543675 0.470534 -3.021836 -1.364429 2.030825 1.832433 -0.502934 0.862559 1.360769 -0.471964 -0.076991 3.344058 1.428774 0.134103 -2.226043 -5.723660 1.419317 0.339698 -0.023004 0.184093 -1.896419 -1.283881 1.088143 0.029871 2.575490 1.585653 -0.787871 2.626940 -3.236266 -2.847043 -1.403950 -0.413559 1.148411 -1.100781 0.760569 -1.420530 0.581138 -0.209443 0.739033 -0.187745 -1.611239 -0.682227 0.841853 2.648526 0.345586 -0.729695 3.236813 0.309096 -1.168249 -0.144452 -0.386653 -0.329846 0.904687 -2.135403 -0.434767 -0.113308 1.418982 -1.933581 1.832936 -0.289352 0.394787 1.082400 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 1.338222 -0.770456 -0.539218 2.292632 0.148061 0.194040 0.554880 0.469358 0.262603 -3.639537 -1.684967 1.497104 0.342695 0.154143 0.209338 0.773761 0.823112 0.849403 -3.513781 -0.026035 0.802034 0.082922 -0.082167 -0.300199 0.003207 -1.032810 0.811084 0.851341 0.322408 2.229981 -0.730703 1.223813 1.954669 0.024337 0.594933 1.643714 -0.158195 -0.166780 -0.716583 -0.665491 2.949726 0.752719 -0.072902 1.106722 -0.136469 2.420252 0.389690 2.430206 0.990676 -0.993271 1.317638 -0.657642 -1.123778 -0.293317 -2.270839 0.465737 1.497626 1.115785 -0.892928 1.173497 -0.675592 0.622154 0.830272 -0.243220 2.477956 1.109247 1.735351 1.885572 2.141667 -1.816721 0.379362 0.368143 0.465575 0.165009 1.369021 -1.698591 -1.058758 -1.823134 -0.160523 -2.699131 -0.140135 -0.375518 3.284665 -1.792090 -0.298646 0.577754 0.395434 2.220896 -1.034483 0.348465 -2.286071 0.069666 0.062202 2.729057 0.347052 0.365359 -0.436770 0.667787 -0.035051 0.679546 0.563621 -1.860979 -0.854084 -3.637234 -1.408890 -1.376325 0.417873 0.597043 -2.414210 0.141505 0.364245 1.411693 -3.377958 -0.319126 0.706288 0.908513 1.509499 0.343179 -1.126074 -0.171620 0.168953 0.850326 0.995339 -1.431326 0.582628 -1.035681 0.046842 0.375455 0.808915 0.291665 -2.393495 -0.923051 0.394683 0.042331 0.259184 0.942827 1.156190 -0.634348 1.122790 -1.563049 1.838156 -2.663679 -0.553554 -0.938865 -1.686257 -1.084021 3.247661 1.557960 1.735406 0.056896 -0.975528 -0.270963 -2.586270 -3.491327 0.265560 0.104924 0.542377 0.737125 -0.443399 0.603403 -1.584320 0.479675 0.828224 -1.060497 -0.926576 -0.119143 0.951196 0.073163 -0.767582 -1.190423 0.114406 0.626226 -0.003518 1.974548 -0.664509 -2.896813 -2.994438 -1.308228 1.987317 -1.111126 0.110612 -0.833419 -0.491121 -1.644330 0.217223 -1.599327 0.212965 0.071763 -1.653925 -2.741030 0.902835 -0.510212 -0.286604 0.905721 -1.903682 0.414344 1.007385 1.182624 0.296430 0.445073 0.139935 -2.187119 -1.814378 0.036985 -1.157066 2.151184 1.215060 -0.047522 -1.305310 -0.993984 -1.694529 1.530884 -1.574523 1.135880 -0.079381 -0.935245 1.116661 -1.684663 0.126353 -1.720373 0.828749 0.530595 -3.511378 2.818340 1.743166 -1.576285 -0.382863 -0.994241 0.946949 0.357864 1.749666 -1.497624 -1.220488 0.634846 -0.117101 -0.041391 -0.800746 0.731872 -0.419645 -0.232800 -2.175907 -0.954857 1.722545 1.154279 -0.328282 0.396699 1.295229 -0.166600 0.259651 2.303795 1.093099 0.018961 -1.583917 -4.655286 0.943359 0.958400 -0.192311 0.419224 -1.642108 -0.790364 0.743949 -0.539881 1.919513 0.807513 -0.397056 2.019611 -2.236377 -2.017023 -1.384366 -0.464542 0.621846 -0.506212 0.518747 -0.975615 0.358192 -0.144481 0.506482 -0.329283 -1.350076 -0.350464 0.866327 2.156214 0.262662 -0.109403 2.307673 0.500871 -0.805143 -0.319368 -0.144497 -0.687615 0.575425 -2.007952 -0.374028 0.280820 0.953597 -1.526531 0.849874 -0.259574 0.332098 0.412756 -PE-benchmarks/naive-algorithm.cpp__main = 0.891645 -0.026680 0.044812 1.328501 0.249546 -0.126862 0.542117 0.618907 -0.010539 -2.405864 -1.106846 0.837930 0.089106 -0.101815 0.087637 0.237233 0.625698 0.964849 -2.499347 0.029473 0.669463 0.393494 0.012559 -0.581608 0.060280 -0.501338 0.033753 0.634350 0.301295 1.609509 -0.656336 0.433312 1.287066 0.209308 0.507350 1.283921 0.264441 -0.068772 -0.146116 -0.557804 2.119955 0.607327 -0.021674 0.910491 0.225179 1.677899 0.196115 1.124393 0.210191 -0.703235 0.381236 -0.744273 -0.802964 -0.204297 -1.429928 0.464729 1.168786 1.167832 -0.760408 1.047504 -0.291804 0.396975 0.575380 -0.467399 1.358757 0.855255 0.538937 1.149250 1.726129 -1.231960 0.165399 0.126341 0.488072 0.007126 0.599113 -0.932182 -0.541635 -1.777746 -0.151919 -2.345690 -0.018149 -0.109877 2.404645 -1.310606 0.377681 0.833086 0.267079 1.248781 -0.672361 -0.221364 -1.531154 0.087627 -0.230560 1.981905 0.255442 0.237664 -0.144183 0.489790 0.229676 0.585684 0.162046 -1.146136 -0.716413 -2.795496 -0.791540 -0.871184 0.048161 0.196148 -1.350849 -0.218189 0.749032 1.344145 -2.367686 -0.290452 0.554999 0.578154 -0.056986 -0.087777 -0.777920 0.043383 -0.301722 0.288048 0.540920 -1.188485 0.105662 -0.408033 -0.420365 0.138489 0.618377 0.140758 -1.518250 -0.645560 0.146721 -0.204596 -0.027477 0.437476 0.402671 -0.493305 0.750272 -1.335802 1.256017 -1.535890 -0.096105 -0.452266 -1.303886 -0.697321 1.878793 0.725326 0.744189 0.052501 -0.506389 -0.358664 -1.488748 -2.230396 0.685347 0.085352 0.723335 0.366468 -0.301064 0.089446 -1.158682 -0.121222 0.489699 -0.722058 -0.504462 -0.158108 1.311281 -0.181899 -0.546869 -1.036986 0.305142 0.957788 -0.004597 0.810030 -0.845398 -1.177763 -1.761795 -0.989114 1.393547 -0.673139 0.016252 -0.455405 -0.187464 -0.864986 0.308288 -1.114021 0.371482 -0.135963 -0.970446 -1.904945 0.568574 -0.477850 -0.293593 0.660756 -1.170320 0.330848 0.630759 0.590482 -0.026338 0.135470 0.359596 -1.461315 -1.242244 -0.132637 -0.452048 0.992123 0.915961 0.238950 -1.109286 -0.577226 -0.996610 1.152363 -0.813767 0.673520 -0.149488 -0.600211 1.076955 -0.952662 0.075302 -1.238318 0.617712 0.505496 -2.217023 1.873420 1.049122 -1.159375 -0.427593 -0.870995 0.510290 0.447178 1.453057 -1.101916 -0.910552 0.687549 -0.517471 -0.055296 -0.773051 0.521363 -0.170789 0.313340 -1.543037 -0.635892 1.122133 0.902080 -0.271475 0.597660 0.946465 0.065667 0.253560 1.781382 0.701694 0.087869 -1.173808 -2.707135 0.763886 0.724306 0.382991 0.070547 -0.834147 -0.683659 0.524293 0.002448 1.320899 1.017900 -0.346708 1.400921 -1.428757 -1.428371 -0.607802 -0.102993 0.724927 -0.706709 0.273219 -0.713402 0.290593 -0.108428 0.461469 0.193574 -0.842767 -0.677420 0.442075 1.433664 0.311690 -0.296849 1.714991 0.116083 -0.707262 0.126462 -0.233622 0.068135 0.246480 -1.041530 -0.279854 -0.045594 0.664329 -1.051852 1.042534 -0.189774 0.156079 0.595500 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 2.854858 -1.457439 -2.364671 5.886763 0.046432 1.313806 0.587554 -0.268260 0.337033 -7.991680 -3.283279 5.086205 1.005279 1.037151 -0.073962 2.325852 1.916555 1.123633 -7.905660 -0.422971 1.530251 -0.721756 -0.202577 0.004050 0.133154 -2.464854 4.239430 1.288566 0.648839 4.726565 -1.483051 4.294503 4.168648 0.217090 1.857272 2.660644 -2.413686 -0.513371 -2.825795 -2.399400 5.791473 1.486794 0.634846 2.152201 -1.399786 5.107957 1.319395 4.985172 4.154609 -2.022717 2.469761 1.394297 -2.028766 -0.047701 -5.078516 0.345521 0.867483 0.655133 -1.141660 1.519569 -1.692311 1.726019 1.728409 0.285067 6.133948 1.421539 4.787056 4.499812 3.580985 -3.640787 1.649552 0.287597 0.161883 0.398164 4.071785 -3.219438 -3.463900 -0.353825 -0.771539 -5.003280 -0.112419 -0.708687 6.850336 -3.422359 -1.879693 -1.107837 1.655790 5.609730 -2.132967 1.561550 -5.008097 0.131024 -0.364571 5.081787 1.260077 1.394518 -1.421327 0.845335 -1.037487 0.610773 1.098954 -4.465238 0.953721 -6.646616 -2.609482 -3.487641 1.797355 2.000221 -5.229693 1.743354 -1.709992 4.238309 -7.110956 -0.959311 0.464581 1.368716 4.473220 1.270073 -1.355564 -0.735679 0.929420 2.631852 2.240165 -2.639269 1.936339 -1.888746 -0.115769 0.633383 2.245285 1.321642 -5.282607 -2.006158 1.283889 0.080254 1.161471 3.217455 3.743793 -0.345406 2.353727 -2.732994 3.699275 -4.919135 -1.833778 -2.351386 -3.356009 -2.862383 6.012067 4.417450 4.286047 -0.425356 -1.051353 -0.109746 -6.428620 -7.139992 -0.253454 0.068963 -0.442117 2.432189 -0.879797 2.163030 -4.467998 2.133991 2.979674 -2.280657 -2.866341 -0.285074 0.608368 0.927758 -1.601945 -1.588737 -0.585897 -0.910208 0.130256 5.739172 -0.570374 -8.592873 -7.697420 -2.329053 4.283792 -2.972255 0.111608 -2.596918 -1.374533 -2.303657 -0.800300 -3.522335 -0.279929 0.573544 -2.825354 -5.783280 1.847132 -0.820701 -0.820984 1.704728 -4.369470 1.102253 3.502296 2.015374 0.812405 1.303438 -0.420245 -3.466353 -2.616019 1.474683 -3.424763 3.726794 2.728437 -0.999578 -3.220974 -2.707963 -3.760901 2.466772 -3.306416 3.296634 0.156075 -2.076294 1.106009 -4.139291 0.867010 -2.136059 1.297153 0.364827 -9.068121 5.295828 3.531977 -3.344926 -0.036251 -1.590352 2.915605 -0.283937 2.645768 -3.381744 -2.468481 0.369321 0.345523 0.168807 -0.512952 1.137772 -1.184987 -2.281106 -4.342933 -1.826085 4.531856 1.551343 -0.672122 -0.473044 2.818795 -1.629704 2.270774 4.294392 2.932261 0.599338 -3.653477 -11.147277 1.215378 1.193522 -1.036208 0.747835 -3.199571 -1.431750 1.623121 -3.207979 4.008193 -0.957608 -1.837303 4.161686 -4.964703 -4.006358 -4.187990 -1.839490 0.641230 -0.057229 0.913792 -2.006767 0.549591 -0.546394 1.345836 -1.967974 -2.990761 1.677747 2.840436 4.656273 0.289159 0.587836 4.539996 2.113189 -1.086738 -1.415522 -0.061355 -3.121838 0.833657 -6.491108 -0.696857 1.611793 1.993843 -3.515571 0.427715 -0.391367 1.397965 -0.026460 -PE-benchmarks/sudoku.cpp__main = 1.448222 -0.187391 -0.060176 2.296994 0.433035 0.164362 0.724645 0.829008 0.355235 -3.891775 -2.147168 2.258054 0.084262 -0.027160 0.071895 0.378527 1.167475 1.433759 -4.590326 -0.064758 0.952097 0.429214 0.245860 -0.904581 0.174380 -0.868321 0.967928 1.245624 0.552663 2.572279 -0.976077 1.099154 2.076786 0.627889 0.999591 1.996593 -0.451063 -0.529584 -0.700813 -1.473775 3.367837 1.015493 0.097388 1.789541 0.203680 2.820686 0.748788 1.203436 1.689874 -0.989061 0.521502 -0.369731 -1.497363 -0.622082 -2.573989 0.432957 1.130610 0.936640 -1.087865 1.367220 0.068196 0.622277 0.871930 -0.933628 2.445757 0.790170 1.337624 1.929202 2.392044 -2.048212 0.334876 0.168011 0.933059 0.547544 1.046366 -1.593892 -1.162763 -1.811517 -0.449537 -3.994012 -0.160384 -0.567171 3.306699 -1.914176 0.254488 0.485575 0.081272 2.265193 -0.769393 -0.364399 -2.589073 0.060237 0.025808 2.394793 0.474891 0.311974 -0.118211 0.542305 -0.026062 0.888902 0.504726 -2.231755 -0.507526 -4.460380 -0.869870 -1.694714 0.402797 0.407404 -2.085617 0.168383 0.049817 2.488264 -3.684073 -0.930510 0.806867 0.602089 -0.452197 -0.836670 -0.774118 -0.133515 -0.133359 1.041384 0.954941 -1.957952 0.257181 -0.297675 -0.694160 0.157946 1.100979 0.578663 -2.025989 -1.529798 0.662292 0.371430 0.174683 0.947348 0.952763 -0.233939 1.060167 -1.932559 2.186213 -2.300348 -0.260152 -0.909129 -1.046690 -1.439063 2.581559 1.403246 1.524710 0.217519 -0.176609 -0.155076 -2.348466 -3.627476 1.155915 0.007835 0.758312 0.728704 -0.435855 0.605007 -2.008240 0.002282 0.804063 -1.163505 -1.141357 -0.311283 0.942542 0.013932 -0.807725 -1.154871 0.380898 0.933435 -0.021682 1.692159 -1.246035 -2.571863 -2.870625 -1.578445 2.323038 -1.445161 -0.183438 -0.816590 -0.458152 -0.973558 0.160076 -1.957532 0.280775 -0.153046 -1.673234 -3.109204 0.836266 -0.776144 -0.047945 1.267573 -2.083509 0.621683 1.303296 1.222681 -0.054363 0.526091 0.273585 -1.935237 -1.485981 -0.116778 -1.043894 1.839847 1.449202 0.127405 -2.462142 -1.043048 -1.465154 1.947722 -1.447640 1.535108 -0.237518 -1.068372 1.396423 -1.586596 0.429647 -1.461188 1.061236 0.840655 -4.607104 2.539464 1.864542 -1.971763 -0.524039 -1.380939 0.811371 0.493927 2.077059 -1.905249 -1.626098 0.833801 -0.484565 -0.007996 -1.342606 0.756930 -0.023306 -0.003447 -2.629681 -1.163198 2.056685 1.094131 -0.313708 0.799933 1.624251 0.244845 0.670762 2.766142 1.168994 0.439280 -2.102579 -4.796012 1.128537 2.000167 0.636609 0.644438 -1.492811 -1.140508 0.689528 -0.807253 2.157838 0.667902 -0.805706 2.297212 -2.095619 -2.179518 -1.612659 -0.519677 1.088596 -0.519862 0.805933 -0.920711 0.308946 -0.382702 0.593727 -0.127306 -1.286276 -0.473211 1.233324 2.493004 0.689227 -0.061066 2.633272 0.334099 -1.255421 -0.017610 -0.466777 -0.693089 0.337030 -2.520787 -0.509689 0.318919 1.064475 -1.772272 1.068964 -0.199052 0.646567 0.216050 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 2.638546 -0.926513 -2.809870 6.369936 0.012407 1.338581 0.778860 -0.608803 0.483321 -7.841529 -3.741348 5.136795 1.488109 1.139798 -0.077625 2.036841 1.215921 1.204149 -6.680371 -0.508259 1.535731 -0.420070 -0.838997 0.279229 -0.410973 -2.465709 3.966334 2.163594 0.817901 5.109281 -1.086965 3.850039 4.591874 -0.203571 0.897163 3.187503 -0.656919 -0.104448 -3.518234 -2.076289 5.848915 1.365184 0.217298 2.375876 -1.298937 5.590520 1.822550 5.564909 2.580370 -2.511521 2.423476 1.663087 -1.864184 -1.226558 -4.602813 0.723575 1.961087 1.182992 -1.940475 1.755615 -1.306274 1.250151 2.003652 0.963007 5.379453 2.064759 4.848014 4.196779 4.071268 -4.476721 1.053358 1.012435 0.161369 0.423308 4.309523 -2.742101 -3.952154 0.423282 -0.356940 -4.963793 -1.367057 -0.346732 6.797920 -4.000404 -2.116614 -0.252583 1.353414 5.517329 -2.696782 1.613375 -5.070453 -0.318517 -0.314379 5.822869 1.398099 0.532305 -1.428163 1.271590 -0.512713 1.039209 1.203020 -4.870422 -0.129048 -6.367814 -3.448056 -3.750644 1.416390 2.139592 -5.727793 0.442118 -1.276984 4.147057 -7.447065 -0.850459 1.691461 1.929112 5.600834 1.560377 -1.891593 0.254438 1.557812 1.651542 3.245216 -1.992471 2.168342 -0.878705 0.524752 0.878876 0.938356 1.568350 -5.894258 -2.218368 1.525037 -0.143272 1.013055 2.465524 3.489390 -1.098561 2.686812 -2.745196 4.182931 -5.961779 -1.834603 -1.513650 -4.034079 -2.909297 4.763835 4.422160 4.936579 -1.030645 -2.033265 -0.210672 -6.356096 -7.964222 -0.463286 0.649659 -0.451809 2.095166 -1.042489 2.593893 -4.335478 2.307598 3.654395 -1.866751 -2.851258 0.637597 2.115913 0.518927 -1.540049 -1.336849 -0.710158 -1.781811 0.781225 6.471126 -0.668122 -8.910216 -7.799160 -1.972437 4.620032 -2.857898 -0.126745 -2.506897 -2.341792 -3.577521 -0.532406 -3.748968 -0.323989 0.418565 -3.262428 -6.087593 2.346599 -0.900885 -1.413442 2.113585 -4.856562 0.758682 3.708396 1.425869 1.278841 0.937494 -0.239205 -3.832654 -2.578464 1.236454 -3.628898 5.199173 3.108060 -0.672576 -2.858141 -2.639566 -4.279506 2.694634 -3.646232 3.052820 0.203069 -1.638783 1.706138 -4.547558 0.188902 -2.371715 1.414931 1.131945 -7.751169 5.817025 4.522336 -2.996608 0.012820 -0.316159 2.142931 0.419832 2.776923 -4.421978 -3.410150 0.350524 0.417716 0.203754 -0.484763 1.101375 -1.713838 -2.040783 -4.176174 -1.767141 4.027947 2.129276 -0.616795 -0.412679 2.758783 -1.908951 1.750550 4.246136 2.706832 0.427420 -3.193630 -10.391673 2.153114 -1.049988 -1.837184 0.755857 -2.954171 -0.963189 1.677512 -3.302294 4.032326 -1.458123 -2.421237 4.676658 -5.804861 -4.484082 -4.384069 -1.957922 0.622179 0.276753 1.754042 -1.834084 1.279854 -0.531922 0.360643 -2.571452 -3.021638 1.857746 2.559879 4.669153 -0.469014 0.452263 5.128203 1.378845 -1.301176 -1.146119 -0.285696 -2.874541 0.650446 -6.655945 -0.782645 1.665829 2.478166 -3.473661 0.264859 -1.025161 0.623771 0.322617 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 3.411192 -1.285038 -2.396434 6.638787 1.156053 1.147191 0.976794 0.013493 1.681390 -8.510498 -4.575470 7.047304 0.954174 0.565868 -0.469294 1.688658 2.626295 2.628037 -7.379042 -0.456906 0.967426 -0.212872 -0.963566 -0.798538 -0.217741 -2.126299 4.732854 1.941850 1.312407 5.396432 -1.501544 3.508084 4.594405 0.373559 1.794074 3.841257 -0.929968 -0.671802 -3.466081 -3.750991 7.056751 1.904348 1.094834 4.448812 -0.650815 6.002139 2.005493 5.803731 4.925670 -2.040271 2.115739 1.576052 -2.639623 -1.338655 -6.261107 1.352225 1.787494 0.193794 -2.148539 2.148673 0.274374 1.551181 2.096679 -0.748661 5.633703 1.884324 4.038857 4.857008 5.050105 -4.645441 0.913191 0.984568 2.156680 1.976855 4.868919 -3.782422 -4.349557 1.307039 -1.399435 -5.663650 0.430055 -1.728630 8.324411 -4.371748 -1.365826 -0.537984 0.978557 5.501172 -1.888871 0.347828 -5.717174 0.175828 -0.548854 5.561656 1.755660 1.429642 -1.654823 0.714333 -1.206826 1.345840 1.202258 -5.522757 0.779833 -9.039896 -2.846710 -4.343496 1.196187 1.504314 -5.222976 0.827140 -3.013727 5.597482 -8.124773 -1.904883 1.319684 0.785244 3.614131 -0.168476 -1.433460 -0.285470 1.274624 2.064831 2.015026 -3.166291 0.947538 -0.661362 -0.812222 0.074935 1.996778 1.654259 -4.879594 -2.759643 0.948857 1.472639 1.158942 2.310572 3.190735 -1.647427 2.524743 -2.860131 4.121651 -5.557232 -2.580195 -2.104183 -3.696169 -3.526177 6.437759 3.041691 6.826325 -0.561677 -0.498579 -1.067080 -6.491424 -8.879284 1.400721 -0.415401 -0.199974 2.611338 -0.763860 2.060055 -5.049751 1.018575 3.639799 -2.515348 -3.032322 0.154874 2.012968 -0.174049 -1.462315 -2.490036 -0.375152 -0.427142 1.120561 5.404328 -1.629232 -10.045870 -7.295122 -2.574585 4.952251 -3.530165 0.265206 -2.026671 -2.079608 -2.293771 -1.173735 -4.267856 -0.146471 -0.017342 -3.596966 -6.760074 1.951104 -1.309582 -0.279806 2.800238 -5.351781 1.839649 4.260502 3.030367 0.189619 1.695231 -0.210072 -4.592181 -2.819886 0.790337 -3.227218 5.344429 3.575808 -0.279432 -4.240856 -2.828106 -4.366061 2.999584 -5.073127 3.584036 0.477504 -1.640757 1.911555 -4.631834 0.842398 -3.198820 1.972604 1.252571 -10.792179 5.338687 4.428586 -4.015563 -0.316791 -1.624030 2.330259 0.128425 3.972962 -4.774520 -3.763236 1.583058 -0.280782 0.041582 -2.204531 1.236606 -0.496695 -1.308645 -5.534026 -2.298054 4.518113 2.076049 -0.902957 -0.331379 3.293267 -1.250395 2.293416 5.625244 3.313632 1.327639 -4.974574 -12.477522 2.002114 1.511009 -0.603792 1.756730 -3.544004 -1.523490 2.152071 -3.993740 4.571138 -1.803418 -1.505176 5.178576 -5.766738 -4.728061 -3.574570 -2.311116 2.151319 -0.331207 2.468133 -2.741373 0.584295 -1.656676 1.131002 -2.623142 -2.804677 1.821776 3.487385 5.402841 0.387668 1.012835 5.478127 1.460375 -2.058758 -0.387490 -0.892930 -2.694463 0.440213 -8.163268 -0.673610 1.464069 2.295674 -3.962296 1.503894 -0.942782 1.724833 0.144040 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 4.050881 -0.706063 -0.092803 5.572496 1.607933 -1.061751 1.874984 2.887396 0.289964 -9.010719 -5.835607 2.252833 0.230972 -1.204838 1.299013 0.498967 2.770933 2.695115 -11.668380 1.041081 2.535414 0.677321 -1.004874 -1.848908 0.264205 -2.566571 -0.522595 3.770660 0.642791 6.140471 -2.546080 1.927015 4.872633 0.921558 3.444105 5.579544 -0.779655 -0.727301 0.673703 -1.367496 9.095192 3.219849 -0.525026 3.318603 2.021224 7.011370 0.158424 4.984877 0.667822 -2.486051 3.033190 -2.924325 -3.087482 -0.796915 -6.470416 1.566017 6.084670 3.194853 -4.080554 3.922348 -1.759918 1.230477 2.370978 -1.599770 6.671145 3.023747 2.886121 4.402628 7.026117 -4.394006 0.420472 1.065901 3.030017 0.227219 0.799423 -3.992314 -2.495787 -7.086276 0.068790 -9.980721 -0.216751 -1.076761 8.328703 -4.879849 1.208598 2.738807 0.319526 5.279617 -3.370031 -1.474941 -6.252985 -0.006479 -1.005309 7.476494 0.345048 1.000712 0.672769 2.278441 0.425596 3.131005 -0.587615 -5.364219 -3.873414 -12.986768 -3.624624 -3.317645 0.407980 0.096621 -5.850475 -0.963334 2.149053 3.890884 -8.808960 -1.323663 2.318220 1.803373 -1.739564 -0.413974 -4.021887 -0.817256 -1.039574 2.170707 3.007562 -3.674938 0.465739 -3.542490 -0.526915 1.186380 2.370632 0.620807 -4.835466 -2.175551 1.295789 -0.452948 -0.576493 1.378232 1.268570 -1.991494 3.101042 -5.003373 5.667688 -7.255097 -0.073334 -3.644997 -4.318420 -2.396593 6.188381 4.047562 3.139651 1.123560 -1.474358 -0.230810 -6.703654 -9.437338 2.264553 -0.405023 3.081624 -0.026479 -1.144998 0.770313 -3.883337 -0.726430 1.497003 -3.193058 -2.379958 -1.689031 5.483568 0.197864 -2.236438 -3.264248 0.937422 3.801228 -0.862209 3.601908 -3.590111 -4.954742 -6.717715 -4.110257 5.515150 -2.564866 -0.074515 -1.754796 -0.413696 -4.713577 1.642196 -4.966831 0.714273 -1.770881 -3.436426 -7.213607 1.462191 -1.795873 0.349961 1.876533 -4.759258 1.365469 4.111928 4.044627 0.277274 1.428149 0.957286 -5.547355 -4.902478 -0.646369 -1.186726 5.667854 4.129644 0.415991 -3.644675 -2.096675 -4.381977 5.180593 -2.728177 2.679523 -0.046445 -3.668639 4.813047 -3.781125 -0.669832 -4.520651 2.483875 1.785783 -9.269820 7.248580 4.732637 -5.272037 -1.873565 -4.579070 1.908304 1.743196 6.276872 -3.657288 -2.804539 2.135037 -1.208582 -0.375738 -3.499623 2.413044 -0.379620 1.467562 -6.638125 -3.197774 5.181709 3.718813 -0.614426 2.396907 2.339618 1.335149 1.500585 7.326164 2.152147 0.162209 -4.869272 -11.949029 2.798396 3.933523 1.210118 0.653660 -2.992515 -3.615552 0.261069 -0.019852 6.034686 5.244767 -1.340132 5.820644 -4.987893 -5.999874 -4.120204 0.357295 2.198850 -2.857055 1.109309 -3.159533 1.157160 -0.892745 2.032581 1.236803 -3.743961 -4.535846 1.740569 5.131817 1.252054 -1.543810 6.708840 0.539747 -2.963536 -0.597387 -0.453894 -0.512285 2.012097 -4.070907 -2.225352 -1.018640 2.525801 -3.980675 3.525575 -0.252114 2.369494 2.418562 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 3.436874 -1.729047 -1.730113 6.317173 0.901634 0.427790 1.079671 0.645102 1.337974 -8.004763 -3.741207 5.903806 0.647392 0.077513 -0.224650 1.369392 2.603914 2.041996 -9.026035 0.083793 1.114287 -0.325592 -1.122453 -1.088995 -0.035630 -2.365343 4.406682 2.601342 0.832019 5.200519 -1.789874 3.042396 4.332552 0.605192 2.829042 3.942724 -1.224461 -0.630371 -2.744441 -2.685642 7.127566 2.744805 0.025276 3.412886 0.059518 5.997001 2.319143 4.507719 4.145498 -1.907939 1.541276 1.210525 -2.635407 -1.280491 -6.220784 0.727841 2.193585 0.866041 -2.485010 2.490076 -0.861206 1.454575 2.122889 0.124433 6.268685 1.048395 4.220566 4.623338 4.987386 -4.218021 1.028837 0.604336 2.370409 1.245351 4.271702 -3.192248 -4.546845 -1.530685 -0.778352 -6.379734 0.055729 -1.045307 6.490034 -4.036265 -0.608948 -0.205280 0.895858 5.398016 -2.573833 -0.241774 -5.708263 -0.009735 -0.353185 6.539311 1.471406 1.538795 -0.483091 1.513645 -0.609349 1.589403 1.214728 -5.690981 0.995127 -9.515114 -2.382047 -4.152147 0.825052 0.982151 -4.760338 0.749280 -1.525592 5.052946 -7.688757 -1.398946 1.095916 0.509038 3.008413 -1.810408 -0.714405 -0.013232 0.325330 2.217787 2.455911 -3.657462 0.940302 -0.693617 -0.124312 0.706422 2.279885 1.668870 -4.556149 -2.008035 1.703981 1.089799 0.601151 2.403084 2.455550 -1.637065 2.389457 -3.706834 4.596345 -5.131266 -1.344634 -2.394221 -2.999872 -3.044785 5.773458 3.094589 4.941053 -0.307487 -0.524506 -0.059170 -6.424897 -9.528704 1.677071 0.040267 -0.134807 1.693860 -0.907647 1.595819 -4.792018 0.696251 3.192395 -2.719226 -2.885468 -0.243737 1.254543 0.632178 -1.680726 -1.702023 -0.022775 0.660345 1.361632 5.238018 -2.057124 -9.578609 -7.040287 -2.673413 4.818304 -3.118032 -0.313566 -1.854747 -1.983312 -2.680938 -0.145040 -4.143794 0.616400 -0.704635 -2.737584 -6.500293 1.518520 -1.441505 0.832433 2.080533 -4.931894 1.552369 3.158660 2.378849 0.020676 1.556698 0.485727 -4.044575 -2.762243 1.149379 -2.442524 5.220712 2.470334 -0.277585 -3.522122 -2.350473 -4.044322 3.294758 -3.936531 3.465944 0.471074 -2.955991 2.452522 -3.768009 0.178532 -2.704644 2.205214 1.137357 -8.049490 6.067570 4.748677 -4.325425 -0.620408 -1.694872 2.301170 0.418264 4.231683 -4.550685 -3.472161 1.399143 -0.291993 -0.016915 -1.628070 1.316871 -0.313900 -0.935071 -5.566403 -2.372023 4.536410 2.111132 -0.595942 0.078395 2.481654 -1.314138 1.328988 5.714845 2.754907 1.823566 -5.026812 -11.508538 1.991931 1.423593 -0.039572 1.124194 -3.172541 -2.041591 1.433088 -2.686023 4.613983 0.490368 -2.373688 4.930835 -5.695807 -4.831638 -4.334617 -2.001061 1.653669 -0.738561 2.172332 -2.673589 0.762723 -1.680310 1.698006 -1.958916 -2.359097 1.261472 3.162719 4.272511 0.744798 -0.236116 5.417381 1.207053 -2.021967 -0.950112 -0.619438 -2.870516 1.190163 -6.681218 -1.138336 0.682588 2.649743 -3.752187 1.600546 -0.422511 2.354614 0.478071 -PE-benchmarks/coin-change.cpp__main = 1.189780 -0.704655 -0.790682 2.859890 0.088378 0.446717 0.608908 0.204792 0.213590 -4.279023 -1.725666 1.873029 0.543449 0.591528 0.039388 0.793505 0.761935 0.949297 -3.841602 -0.279868 1.003191 0.286360 0.088791 -0.119518 -0.040867 -1.062077 1.363337 0.791332 0.466431 2.599541 -0.654838 1.720383 2.302634 -0.166650 0.401678 1.739977 0.026262 -0.034456 -1.292595 -0.804573 3.177743 0.524824 0.093170 1.348006 -0.621756 2.736539 0.663516 2.488562 1.174728 -1.258072 1.188577 -0.103457 -1.036534 -0.608699 -2.360152 0.510043 1.513436 1.447195 -0.852418 1.133576 -0.313319 0.472260 0.978892 -0.033000 2.617318 1.332495 2.021153 2.399856 2.312443 -2.120114 0.517222 0.291922 0.026205 0.179970 1.942587 -1.861990 -1.349905 -1.260996 -0.406631 -2.972836 -0.496389 -0.392089 3.339895 -2.003712 -0.502703 0.248655 0.507314 2.616183 -0.962959 0.644086 -2.608005 -0.162071 0.111762 2.964801 0.452231 0.344542 -0.618069 0.705957 -0.068311 0.611526 0.779440 -2.211339 -0.338198 -3.485325 -1.593976 -1.623420 0.528648 1.123931 -2.779380 0.073566 -0.495484 1.735164 -4.089016 -0.450729 0.650147 1.274919 2.256295 0.324967 -1.215093 -0.150205 0.471421 0.627904 1.176487 -1.524910 0.895771 -0.875632 -0.158794 0.343968 0.707758 0.496578 -2.821009 -1.318158 0.305405 0.061856 0.498685 1.221914 1.650490 -0.568059 1.250033 -1.794961 2.013425 -2.865672 -0.919137 -0.690714 -2.044117 -1.400150 3.052812 1.451039 2.050852 -0.395421 -1.420037 -0.230832 -2.974720 -3.962012 0.233713 0.268252 0.348867 1.384100 -0.662607 0.914595 -2.045888 0.791200 1.409700 -0.915045 -1.210318 0.072574 0.778186 0.205625 -0.695448 -1.137870 0.071591 0.055890 0.293686 2.772218 -0.611519 -3.268120 -3.860764 -1.284712 2.281534 -1.241702 0.011489 -1.093386 -0.812449 -1.957351 -0.037020 -1.904461 -0.052579 0.150948 -1.770714 -3.125805 1.226862 -0.571925 -0.583142 1.226992 -2.262946 0.393798 1.190273 1.195382 0.415840 0.219851 -0.017418 -2.217168 -1.824296 0.354878 -1.563738 2.235219 1.094177 -0.057650 -1.489039 -1.257567 -1.813890 1.584083 -1.592923 1.462195 0.072225 -0.695575 1.100988 -2.126291 0.225515 -1.758881 0.836071 0.706335 -3.846186 3.134004 1.621120 -1.498428 -0.222855 -0.533869 1.038403 0.304073 1.487493 -1.796869 -1.669539 0.758243 0.116678 0.040896 -1.100957 0.592169 -0.562662 -0.534142 -2.330766 -1.015782 1.934815 1.151572 -0.442303 0.250486 1.656070 -0.745051 0.189254 2.491806 1.542683 0.132878 -1.531181 -4.647179 1.090955 0.192538 -0.306454 0.104368 -1.921305 -0.608320 1.298140 -0.856518 2.084964 0.244388 -0.671189 2.321416 -2.904449 -2.230484 -1.636560 -0.777489 0.775138 -0.182916 0.369028 -1.109168 0.660738 0.011451 0.348729 -0.676184 -1.652533 0.299855 1.146195 2.426411 -0.161950 0.262692 2.639008 0.642703 -0.736829 -0.329341 -0.015458 -0.988910 0.308575 -2.728064 -0.284360 0.674076 1.147455 -1.773034 0.685683 -0.702488 0.082730 0.382464 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.447079 -2.089485 -4.639236 11.096767 -0.262551 2.737940 1.200355 -1.166374 0.337558 -15.152273 -5.340421 9.246333 2.503012 3.407723 -1.008903 3.642197 2.325934 2.560963 -13.083595 -1.634973 3.221228 0.524685 0.490365 0.299112 -0.073980 -3.483936 8.689458 1.616328 1.764288 8.591045 -1.680419 8.136508 7.919794 -0.924582 1.481487 4.736655 -2.109911 -0.158882 -6.698153 -4.013917 10.009594 1.154701 1.573676 4.659587 -3.937308 8.993155 3.792893 7.269145 5.806257 -4.214315 3.010410 4.231933 -2.971525 -2.407913 -8.034816 0.877038 2.322873 3.400947 -1.814020 2.313230 0.057439 1.398915 3.333901 1.303861 9.664931 3.178014 8.725787 9.280110 6.334812 -6.818691 2.711013 0.344024 -1.492997 0.732203 9.147416 -6.553095 -6.208901 1.630619 -2.438252 -9.800440 -1.807826 -1.131016 11.247739 -6.202939 -3.429460 -2.754858 2.604813 9.974231 -2.498978 3.148804 -8.885218 -1.105854 -0.070293 9.243485 1.967791 1.560503 -2.905905 1.990939 -1.350675 0.846728 3.214591 -8.270778 3.241152 -9.389455 -4.586632 -6.247334 2.829480 5.423075 -9.411207 1.374615 -6.660895 7.193155 -14.387367 -1.932101 1.070486 3.893377 10.922186 0.582047 -3.084094 -0.561343 2.498499 2.546682 3.950532 -4.523848 3.915154 -1.385815 -0.869580 0.716055 2.404357 2.975849 -10.868527 -5.222818 1.199996 0.510368 2.678962 5.672702 7.681340 -0.708171 3.967695 -5.456714 6.415097 -9.114125 -4.230522 -2.005834 -6.860795 -5.625197 8.104846 5.414742 7.830755 -3.037347 -3.925198 0.033082 -11.178793 -13.146194 0.050761 1.026492 -1.337387 6.522554 -2.309468 4.453434 -8.239240 4.341969 7.172981 -2.462482 -5.192066 0.448420 0.751686 1.795976 -1.986665 -2.079913 -0.939079 -3.570360 2.288749 12.030766 -1.011981 -14.091952 -15.500095 -3.302786 7.670248 -4.827753 -0.364806 -4.642353 -3.787411 -5.427184 -1.809315 -6.906345 -1.052339 0.968338 -5.029619 -10.423452 4.351982 -1.524109 -2.546255 4.087511 -7.952492 1.389557 5.451886 3.392138 1.481450 0.478330 -0.916539 -6.046029 -4.385102 3.460145 -6.854811 6.712942 3.457627 -1.094296 -6.047044 -4.710068 -6.200194 4.030421 -4.588569 6.196219 0.774487 -1.516418 2.067832 -8.282656 2.449381 -4.122688 2.159055 1.695753 -15.450360 10.001594 4.891963 -4.367515 0.689473 0.295844 4.183491 -0.422942 2.422207 -6.352724 -6.293000 1.578675 1.261988 0.574426 -3.034503 1.061814 -2.259058 -4.046080 -7.563759 -3.119357 7.297409 2.365077 -1.502098 -0.804203 5.653317 -5.281884 1.182851 7.707678 6.422114 1.512464 -5.164335 -16.089205 2.800328 -2.035832 -2.002914 -0.343110 -5.718702 -1.279565 5.103127 -5.690239 6.620405 -3.555989 -4.138350 7.517733 -11.112410 -7.065400 -7.010877 -3.909131 2.201140 1.518940 0.642975 -3.534360 2.285717 -0.041131 0.902402 -4.366723 -5.984597 5.376125 5.331239 8.618608 -1.350609 2.397988 8.353614 3.135107 -1.381046 -1.767976 0.544644 -5.466829 0.282751 -12.928158 -0.763996 4.002179 3.982512 -6.257459 0.204938 -2.923815 0.699956 -0.038269 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 1.118593 -0.391579 -1.205420 4.012081 -0.320745 0.786447 0.668416 -0.003073 -0.071132 -5.594449 -2.240690 1.604802 0.964340 1.036968 0.203553 1.191430 0.674460 1.313276 -5.589652 -0.573756 1.981672 0.490767 0.681018 -0.123190 0.041007 -1.330038 1.649496 0.605478 0.600596 3.661300 -0.842713 2.868593 3.167355 -0.238357 0.348806 2.021401 -0.708513 0.225936 -1.574953 -0.863580 3.771455 0.592067 0.180530 1.232018 -1.504985 3.547471 0.599186 2.432826 0.850401 -1.894133 1.623900 0.420113 -0.939868 -0.503584 -2.642330 0.548451 2.105616 2.320433 -0.615043 1.290125 -0.802310 0.798830 1.352042 -0.047026 3.581110 1.969093 2.651260 3.355740 2.779618 -2.662313 1.219655 -0.251873 -1.069824 -0.792775 2.547006 -2.233146 -1.842865 -1.685424 -0.808141 -4.259713 -0.614833 0.005090 4.079969 -2.692006 -0.535790 -0.014236 1.173184 3.731240 -1.232383 1.108577 -3.249816 -0.307979 -0.229751 3.942148 0.698151 0.437611 -0.981817 0.983848 -0.193024 0.296323 0.940537 -2.642462 -0.074742 -4.067549 -2.124197 -2.049384 1.177946 2.083311 -3.860624 0.339113 -0.822558 1.717794 -5.791728 -0.430939 0.505711 2.204896 2.646747 0.216357 -1.724819 -0.160315 0.503267 0.882540 1.593833 -2.047632 1.553555 -1.618892 -0.645833 0.514342 1.025933 0.656766 -3.492298 -1.723263 0.070484 -0.716546 0.908095 2.251659 2.641272 -0.144505 1.693089 -2.662407 2.688098 -3.663341 -1.043343 -0.874236 -2.930940 -1.953618 3.019104 2.024168 1.825801 -0.971200 -2.228937 -0.159136 -4.130827 -4.449962 -0.067944 0.642339 0.453708 2.136492 -1.035539 1.351047 -3.025617 1.645655 2.030746 -1.115967 -1.698983 0.173794 1.407234 0.548359 -1.070426 -1.379903 -0.132106 -0.626245 -0.049747 3.999176 -0.411938 -3.186147 -5.833327 -1.549532 3.151957 -1.738743 -0.037683 -2.102640 -0.806398 -2.651961 -0.126656 -2.558804 -0.344189 0.689230 -1.896223 -4.153265 1.655214 -0.579741 -0.906779 1.605940 -2.923485 0.429355 2.259032 1.170930 0.690643 0.133342 0.064473 -2.274145 -1.939012 0.811462 -2.405849 2.054381 1.324674 -0.232740 -1.952309 -1.798967 -2.100986 1.896284 -0.829398 2.074469 -0.157064 -0.664836 1.137907 -2.935591 0.336155 -2.213947 0.591659 0.682248 -4.684353 3.731109 1.441356 -1.654082 0.133342 -0.714748 1.802273 -0.006624 1.333363 -2.177802 -2.209617 0.655208 -0.017889 0.177123 -1.337659 0.560728 -1.258679 -1.255125 -2.594984 -0.945638 2.874891 1.265665 -0.658746 0.469985 2.465100 -1.522727 0.891576 2.601540 2.391883 -0.222051 -1.734617 -5.436681 1.271090 -0.518784 -0.200543 -0.780776 -2.101337 -0.674693 1.908739 -0.469552 2.667379 0.987546 -1.221410 3.012194 -3.816688 -2.870548 -2.412598 -0.744824 0.932966 -0.195335 -0.532794 -1.309515 1.082388 0.563927 0.564502 -0.502161 -2.714222 0.527063 1.544375 3.608498 -0.749835 0.411253 3.504538 1.228237 -0.757382 -0.570692 0.091482 -1.697838 0.063997 -3.165214 -0.244031 1.394038 1.528775 -2.510100 0.653043 -1.237931 -0.235694 0.601485 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 3.956137 -2.080438 -7.850607 17.235580 -1.404990 4.227014 1.243962 -3.285885 -0.293520 -21.240829 -7.883299 11.052505 4.752119 5.173694 -1.157626 6.344435 2.581832 3.684653 -18.169286 -2.740274 5.769893 0.251166 0.707873 0.949985 -0.560028 -5.320560 13.052026 1.614755 2.110697 12.958959 -1.901715 13.271258 11.832896 -2.186805 1.383372 6.614654 -4.428965 0.833876 -9.785124 -4.557951 13.659834 0.866723 2.881862 5.499098 -7.269934 13.040071 4.588092 9.792124 6.197208 -6.547357 6.396104 9.195519 -2.910621 -3.297293 -11.200588 1.146520 4.579103 5.099195 -1.675325 3.033332 -1.215673 2.587841 5.292422 2.957477 14.832666 5.872267 13.035014 14.024908 9.173269 -9.876969 4.938532 -0.094005 -4.533819 -1.391452 13.770831 -9.329002 -9.915706 3.828579 -4.491000 -13.279343 -1.560030 -0.363396 16.078491 -9.195296 -5.664256 -4.939499 5.074640 15.028925 -3.897022 5.166658 -12.247002 -1.801606 -1.427153 13.926540 3.169024 2.576466 -5.021205 3.012332 -2.671144 0.239445 3.955630 -11.700810 5.218079 -12.257439 -8.191780 -9.020092 5.169733 9.027097 -14.813973 2.191356 -10.670125 7.284094 -21.801906 -2.143738 0.956293 7.081788 17.026090 0.839664 -5.684301 -0.713465 4.280159 4.005773 5.838673 -5.401082 6.742554 -4.303491 -1.292769 1.133271 3.423084 4.044644 -15.398657 -6.998331 0.241259 -1.342212 4.809799 9.308204 12.010570 -0.493466 5.982624 -8.108662 9.585669 -14.450552 -6.539093 -3.719561 -11.509874 -8.237519 8.779657 7.912284 11.010403 -5.988446 -7.538716 0.120152 -17.399415 -17.083754 -1.586288 1.796267 -2.579393 10.079272 -3.752966 6.772421 -12.519685 7.819877 11.681199 -3.611919 -7.659448 0.897315 3.057559 3.246257 -3.509912 -3.122756 -2.390339 -7.742734 3.149157 18.603939 -0.081837 -19.047576 -24.455609 -4.304163 11.436142 -7.339843 -0.441317 -8.261747 -5.661213 -9.414240 -2.904205 -10.147273 -2.391040 2.653911 -6.361215 -15.168347 6.666858 -1.539108 -3.985663 5.616095 -11.792146 1.970643 10.187405 3.670720 2.898396 0.691487 -1.579699 -7.680061 -5.518202 6.113032 -10.391918 8.825697 5.226539 -1.513121 -7.857249 -7.216255 -8.972378 4.762710 -4.060677 9.021248 1.658127 -1.509569 2.195405 -12.944840 3.611284 -6.232978 1.743679 1.592079 -21.688115 13.707377 6.042666 -5.805569 1.879777 0.816218 7.296197 -2.143476 2.103845 -8.816347 -9.032324 1.812585 1.998278 0.963016 -3.947178 0.955394 -4.671373 -7.162733 -9.920503 -3.827718 11.403748 3.380163 -2.594431 -1.699296 8.145355 -9.718084 3.146524 9.308025 10.385054 1.217680 -6.653424 -22.362763 3.623801 -7.037094 -3.512936 -2.203755 -7.061206 -1.328949 8.118435 -6.722662 9.744051 -4.214273 -6.789008 11.091572 -16.159121 -10.585221 -10.779208 -5.196670 3.092446 2.045990 -1.190335 -5.445134 3.561289 0.756209 1.614457 -6.166268 -9.902145 8.763030 7.721411 13.955942 -3.777984 3.628016 12.399112 5.439171 -1.073808 -3.370971 1.332690 -8.981492 0.452528 -17.959123 -0.934021 6.743727 6.197521 -9.407523 -0.064276 -5.460913 0.596483 0.840473 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 1.611034 -0.382453 -1.422283 3.838976 -0.172308 0.179854 0.848966 -0.093616 -0.265940 -5.759708 -2.312407 2.278343 1.048771 0.823360 -0.473067 1.661205 0.586281 1.770724 -5.560991 -0.282241 1.614686 0.595715 0.233665 -0.580069 -0.091994 -1.186131 1.463298 0.719018 0.576040 3.617445 -0.981579 2.387767 3.277048 -0.329351 0.313708 2.505007 -0.016279 0.293499 -1.355434 -0.899157 4.031616 0.682289 0.602107 1.315431 -1.213025 3.600779 1.266922 3.525735 0.519426 -1.814951 1.576098 -0.113411 -1.505468 -0.650272 -2.960197 0.705663 2.391201 2.544648 -0.969930 1.652730 -0.119525 0.846243 1.523822 0.072550 3.673795 1.897836 2.346509 3.054260 3.301991 -2.726083 1.012104 0.061339 -0.311934 -0.853484 3.076503 -3.258836 -2.016906 -0.834315 -0.513066 -4.950882 -0.146482 0.321161 5.311384 -2.991081 -0.573487 0.367469 1.147557 3.730678 -1.260553 0.721801 -3.305631 -0.034509 -0.782090 5.123010 0.646065 0.533927 -1.179431 1.040607 0.064040 0.501576 0.680631 -2.795953 -0.444315 -4.920653 -2.019443 -2.225433 0.488678 1.801879 -4.158085 -0.504500 -1.003728 2.373935 -6.384866 -0.351305 1.134772 1.823952 3.038480 0.222421 -1.793596 0.469655 0.125047 0.853831 1.521870 -1.993696 0.979092 -1.000002 -0.457491 0.430387 0.813629 0.549390 -4.862251 -1.551758 0.004474 -0.751298 0.775000 1.820322 2.442514 -0.615719 1.668183 -2.868418 2.471450 -4.338625 -0.783663 -0.762648 -3.940394 -1.870788 2.875166 1.779947 2.328744 -1.270733 -1.777843 -0.473193 -4.347280 -5.422788 0.374457 0.262795 0.590553 1.936531 -0.869171 0.859344 -2.877705 1.051083 2.414991 -1.214722 -1.739874 -0.073721 2.637669 0.259911 -1.205064 -1.460940 -0.200035 -0.117279 0.593407 3.780411 -0.885716 -4.320495 -5.772920 -1.761879 3.194127 -1.623506 0.073634 -1.899068 -1.045920 -2.945683 0.086138 -2.624367 0.070174 0.521215 -1.758434 -4.223160 1.448798 -0.648562 -1.253833 1.399313 -2.964410 0.494962 2.379665 1.136292 0.452038 0.092658 0.518217 -2.951259 -2.259791 0.834665 -2.169193 2.276683 1.946724 0.353888 -2.183916 -1.521038 -2.549584 1.628663 -1.480117 1.855078 -0.082768 -0.128502 1.776954 -3.164937 1.169580 -2.118545 0.886510 0.704144 -5.802104 4.520245 2.209011 -1.851738 -0.004814 -0.563155 1.492967 0.286305 1.752470 -2.492545 -2.481945 1.075513 -0.591612 0.012800 -1.364831 0.714696 -1.227714 -0.531849 -2.891521 -0.908136 2.442814 1.559795 -0.696738 0.405792 1.995855 -1.620446 0.452165 3.167360 1.814329 0.053298 -2.079057 -6.903720 1.416335 -0.872351 -0.325534 -0.164077 -1.581879 -0.533574 2.161050 -1.021880 2.899127 0.789434 -1.563309 3.043528 -4.389478 -3.182767 -2.064571 -0.709047 1.298782 -0.249383 -0.228569 -1.599503 0.899987 0.134072 0.648390 -0.562296 -2.608503 0.333954 1.549583 3.934086 -0.466379 0.074262 3.745411 0.487262 -0.353763 -0.375430 -0.150144 -0.718255 0.318898 -3.431522 -0.433353 0.961843 1.766700 -2.496171 1.368570 -1.455977 -0.005395 1.040296 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/karatsuba.cpp__main = 70.127780 -4.842106 -2.721963 69.012471 20.119239 -13.629082 1.134763 45.167042 6.884324 -73.063081 -46.610248 47.595545 -5.759194 8.079737 34.811448 9.182055 27.216009 27.328728 -109.475125 16.035175 -14.081326 3.984721 -21.605621 -47.865798 15.741679 29.330223 34.471810 26.920539 18.764097 48.229368 -51.536304 20.919146 29.734258 17.121223 37.320949 -3.047469 11.492825 -20.203592 -47.943986 -66.847641 98.371861 20.740892 10.738665 78.055321 7.746747 47.648196 13.154310 65.067987 43.213001 -10.040684 32.080766 -49.315055 -28.591798 8.564867 -81.018302 35.133997 48.085588 16.474511 -31.136386 34.376851 21.337215 35.128058 33.445646 -44.826470 77.367636 29.697691 51.501345 49.890359 70.455301 -51.086775 24.014746 -3.913428 67.458465 20.021602 6.344787 -76.396842 3.783934 -81.782875 8.938778 -88.468735 30.203259 -40.255922 72.546569 -48.028001 30.520458 23.674673 -10.541664 54.060388 -60.192762 24.009394 -50.852007 0.881437 -10.326916 63.161898 -13.003352 7.692597 14.872340 12.137218 -7.567864 31.351271 11.085359 -28.001059 16.635070 -104.248942 -45.408452 27.803336 -11.321232 -15.838782 -34.208367 23.704374 -3.607148 27.737917 -67.751457 -61.136492 -0.947101 4.606131 -17.971553 8.908222 -11.521196 -27.895203 -15.327971 57.584116 13.404399 -60.552832 39.927307 -32.967904 -41.181842 33.181923 68.898132 33.966449 -21.814104 -36.170923 7.314400 16.614993 -17.656779 5.332904 10.232432 -19.379706 36.726655 -30.652076 43.117812 -59.912876 -42.489686 -31.228512 -16.288673 -14.126249 86.726224 -2.892089 49.667423 58.126115 -11.379410 -8.791028 -49.557211 -79.000609 41.381656 25.996112 3.172269 27.054500 2.203015 15.144469 -40.156005 -46.974481 42.775345 -55.879108 -72.562940 -45.458540 16.328533 -8.521438 -21.181194 -54.536323 58.905002 57.024623 -15.525752 33.643530 -13.028218 -68.262837 -49.970928 -26.677641 55.138412 -21.833942 0.784074 9.496396 13.235716 -39.624151 3.439450 -64.258456 18.201594 7.610243 -61.087321 -68.261466 15.132960 -8.684687 18.821628 19.772286 -52.635029 40.977553 12.489044 78.880812 -35.075619 42.821208 36.642291 -80.529964 -93.358536 -30.985096 7.528946 61.944926 4.747065 12.102879 -46.222294 -30.097715 -11.847762 58.012329 -78.072554 34.665683 -10.543190 -2.690399 19.875525 -50.555667 -19.209654 -51.381479 24.650980 24.524341 -93.873040 64.937778 35.085001 -65.262795 -21.643142 -89.253148 56.016200 3.256015 104.267120 -47.967270 -24.185597 24.651858 34.291056 -14.898136 -70.164392 31.814885 19.025124 -33.634836 -58.650408 -49.021573 37.756631 25.785229 6.643142 13.827795 50.142447 19.275475 -13.052820 101.193114 17.021539 4.228989 -48.024956 -117.873196 7.518379 103.731083 18.357844 22.870077 -74.037162 -40.520551 0.052764 -2.704503 47.493275 45.303720 40.488464 50.837742 -53.234605 -45.583536 -29.297553 20.315212 9.867867 -27.485272 13.637586 -44.145372 -5.272051 -8.408082 21.714573 -27.969729 -3.950940 -56.049693 -12.266186 43.825091 -5.065042 -1.123382 71.145921 45.300583 -38.121122 12.138133 -16.756063 -21.602340 10.466199 -42.878670 -13.568142 3.311900 5.588326 -58.063418 33.139915 14.115244 15.589616 -11.919038 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 30.429152 -3.479101 -2.319903 34.657367 8.479118 -3.505192 0.755731 16.937630 4.354187 -36.878177 -21.074041 23.659299 -1.435722 6.283975 13.876488 4.929993 12.143942 12.537782 -49.224285 5.335633 -4.573495 2.004779 -7.353525 -19.532352 6.814084 11.458846 21.335337 11.261196 9.547738 24.126407 -22.359018 12.400262 16.136793 6.586632 14.760034 0.467651 5.082334 -8.171675 -25.558892 -31.129946 44.546700 7.985652 5.836282 35.502380 -0.446620 23.218575 9.012223 30.851076 24.261113 -6.741539 14.617492 -18.268312 -12.612410 1.694677 -36.897064 15.442962 20.502099 8.591000 -13.204688 14.100808 10.540816 15.781160 15.688998 -17.964804 34.854240 13.987538 24.831992 25.189811 32.150758 -25.772464 11.501945 -1.094562 26.966502 10.042988 8.124178 -35.833889 -1.621991 -30.837764 1.859292 -37.549812 11.709678 -17.656796 32.704896 -22.712331 11.331221 7.742031 -4.174566 26.898855 -25.516591 12.836349 -24.570398 0.343128 -3.693204 28.582323 -4.892923 3.194302 4.951138 4.586843 -4.679786 13.548356 7.405110 -15.112829 10.670269 -45.417740 -20.681050 8.774378 -2.720570 -3.008644 -17.948121 11.596668 -7.825934 12.841597 -33.873313 -27.295592 -0.486177 4.717838 -1.679451 3.200552 -3.875509 -12.611321 -3.780333 25.150066 7.329001 -27.894822 19.319982 -13.708433 -18.249722 14.525978 29.907260 15.644320 -10.607386 -18.546471 2.532084 8.764218 -5.730530 5.019127 8.765577 -8.030765 17.067800 -14.018250 20.359685 -27.900742 -20.922219 -12.961743 -8.460906 -9.067995 40.089772 -1.571132 25.290972 22.319301 -7.573505 -4.344017 -24.283115 -36.848563 16.609488 12.063916 -0.481527 16.910738 -0.128214 9.669321 -20.814914 -17.789051 20.779202 -23.782845 -33.380049 -17.829710 3.027209 -3.323469 -9.002557 -24.155760 25.084527 20.640792 -5.672254 20.369342 -4.701369 -35.304739 -27.625134 -12.544251 26.740685 -11.859346 -0.213616 1.760146 3.434795 -18.158545 -0.219302 -29.758175 6.092538 4.938223 -28.451261 -33.419843 8.809554 -4.536517 7.223243 11.711989 -26.288007 17.800063 6.349111 34.884074 -13.937683 18.495536 14.708607 -36.795040 -40.587665 -11.629018 0.047686 28.754265 1.352002 4.281360 -21.567352 -16.037031 -5.810520 25.177195 -35.230447 17.677734 -3.910868 0.411962 8.141626 -24.754234 -5.806797 -23.518887 10.915285 12.291658 -45.216203 30.097751 16.244214 -28.284731 -8.188912 -36.248311 25.554683 0.557218 43.930356 -23.491191 -13.920842 11.460605 15.709644 -5.821844 -31.237680 13.017888 6.921161 -17.674296 -26.558019 -21.871982 17.749510 11.172553 1.990544 4.038335 25.264021 5.274420 -4.611729 45.436958 10.454700 3.087167 -22.258178 -55.851265 4.920861 43.317116 7.116282 10.080471 -34.931102 -16.734640 4.333182 -3.317090 22.339135 17.223555 17.223442 24.856822 -27.106419 -21.456610 -14.649739 5.520993 5.436322 -9.652928 5.398892 -20.449043 -1.079521 -3.904244 8.482538 -15.704802 -2.736011 -18.789473 -2.594793 22.361602 -3.918485 2.299214 33.347244 21.485031 -16.747843 4.789077 -6.346857 -12.612566 2.877479 -22.930007 -4.841063 5.064582 3.961549 -27.190765 13.369259 3.420630 5.539466 -6.642388 -PE-benchmarks/kmp-algorithm.cpp__main = 1.164887 -0.881197 -0.366831 2.349505 0.227985 0.021126 0.592877 0.406489 0.012103 -3.863171 -1.462492 1.628671 0.276207 0.013556 0.012325 0.552361 0.822325 1.086819 -3.671780 -0.052995 0.819638 0.288281 -0.095878 -0.585597 0.014785 -0.824560 1.103440 0.843902 0.369480 2.183321 -0.781051 1.052953 1.908124 0.112116 0.664588 1.634691 0.036904 -0.024951 -0.602979 -0.746341 3.202345 0.750586 0.087167 1.192715 0.064157 2.320964 0.473367 2.235781 1.109083 -0.944583 1.164875 -0.401599 -0.958872 -0.379887 -2.430484 0.533175 1.618564 1.405139 -0.982488 1.231281 -0.430415 0.581223 0.822507 -0.226750 2.633127 1.135117 1.715375 2.008744 2.207340 -1.727704 0.328544 0.182037 0.498001 0.021880 1.534333 -1.800841 -1.112079 -1.971590 -0.348809 -2.989769 0.010304 -0.165789 3.091877 -1.745068 0.063002 0.692456 0.547846 2.108656 -0.914081 0.023822 -2.455024 0.049614 -0.028399 3.138680 0.406354 0.399006 -0.370231 0.724828 0.093974 0.709646 0.731047 -1.766734 -0.488004 -3.895179 -1.386639 -1.345438 0.349380 0.468576 -2.280997 -0.082644 0.427737 1.246426 -3.563468 -0.366352 0.655410 0.895557 1.462953 -0.223174 -1.090194 0.076726 -0.222924 0.536273 0.785338 -1.421722 0.355576 -0.948452 -0.081904 0.243312 0.828694 0.287378 -2.649079 -0.875877 0.145235 0.040704 0.126635 0.782399 0.977862 -0.640350 1.039065 -1.698596 1.765830 -2.550413 -0.352316 -0.788124 -1.833353 -1.048128 2.846939 1.040014 1.522660 -0.187946 -1.202726 -0.341599 -2.579264 -3.715766 0.620156 0.155847 0.577812 0.762743 -0.470782 0.389403 -1.678443 0.220034 1.105220 -1.015589 -0.862499 -0.174481 1.023330 -0.070103 -0.766557 -1.169530 0.215106 0.914644 0.157885 1.848277 -0.880995 -2.793101 -3.065149 -1.244059 1.924107 -1.038385 0.016939 -0.727146 -0.470438 -1.712775 0.260610 -1.655901 0.461758 -0.111090 -1.558202 -2.663469 0.858724 -0.568138 -0.060003 0.877990 -1.832386 0.474642 0.753404 0.955339 0.097255 0.259133 0.388210 -2.282419 -1.896274 0.097358 -0.902109 1.837727 0.940256 0.194263 -1.369541 -0.917772 -1.643000 1.317286 -1.410962 1.084163 -0.001180 -1.143868 1.216523 -1.584544 0.290953 -1.612119 0.749164 0.582511 -3.268153 3.017369 1.460707 -1.539285 -0.412249 -0.888510 0.844158 0.281400 1.721731 -1.588301 -1.291448 0.780569 -0.414918 -0.040803 -0.893470 0.664154 -0.302327 0.079118 -2.447957 -1.214835 1.640607 1.165612 -0.350565 0.578745 1.244362 -0.437115 -0.022757 2.599241 1.114254 0.235196 -1.550531 -4.449858 0.937212 0.519881 0.128008 0.077239 -1.466468 -0.845635 0.900737 -0.092827 1.833347 0.886787 -0.592749 1.946570 -2.382602 -1.980170 -1.133677 -0.407602 0.850366 -0.708359 0.275059 -1.002149 0.361996 -0.199236 0.585835 -0.133861 -1.214246 -0.331183 0.786657 2.100697 0.247719 -0.324131 2.303693 0.361997 -0.867718 -0.065050 -0.235466 -0.362052 0.777508 -2.030518 -0.358435 0.157957 0.970696 -1.488038 1.072446 -0.397229 0.317298 0.595262 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 4.221070 -5.730024 -4.422885 10.991785 -0.061371 2.053746 0.841352 -1.330350 0.450242 -15.278213 -5.061508 9.039910 1.940784 1.614010 -0.450519 3.901491 2.899693 1.733481 -13.767823 -0.835311 2.281128 -1.247821 -0.744765 -0.015894 -0.094319 -4.080964 9.587866 2.336326 0.989764 7.595625 -2.106624 7.392710 7.273937 -0.268869 2.643465 4.414491 -3.551371 -0.294267 -5.110106 -3.342086 11.203423 2.203088 1.179052 3.563319 -2.204894 8.323281 2.705656 10.542114 8.649068 -3.229455 6.387954 3.107665 -2.808311 -0.925651 -10.081295 0.687751 3.116369 1.841669 -2.252058 2.438456 -2.385365 2.647259 2.964048 1.488312 12.505800 2.820850 10.669245 8.797281 5.987038 -6.119505 2.465277 0.566077 0.211524 0.471936 8.747888 -7.562729 -6.316120 -1.323044 -1.755989 -8.223672 0.029846 -0.988247 10.286497 -5.594672 -3.453092 -1.810988 3.059624 9.909104 -3.341565 2.787477 -9.627447 -0.059045 0.646232 10.865659 2.014637 2.201228 -2.551568 2.020523 -1.715995 1.230586 3.943961 -7.568227 2.095768 -12.145034 -5.584978 -5.858908 3.303449 3.362361 -9.880434 2.421079 -3.316470 3.749716 -13.089866 -1.338812 0.966636 2.955731 12.072911 0.593089 -2.916936 -0.568968 1.323410 3.872975 3.462257 -3.805455 3.185908 -4.590842 1.576534 1.157498 3.296866 2.054745 -10.936751 -3.157743 1.276460 1.306754 1.932031 4.942067 6.619747 -1.080629 3.797693 -4.546964 6.248339 -9.991752 -3.114834 -4.030680 -6.003345 -4.616422 10.852797 5.990890 8.178401 -1.627591 -4.533038 -0.024422 -11.881200 -14.566841 -0.579411 0.421441 -1.169730 4.413566 -1.728385 3.662812 -7.066803 3.840272 6.057277 -3.748310 -4.656524 -0.366936 -0.831387 1.486737 -2.700384 -2.251454 -1.036079 -1.125928 0.942668 10.930404 -0.748360 -16.669561 -14.214190 -3.603780 6.936589 -4.798482 0.115042 -3.955621 -2.789401 -6.542605 -1.038689 -6.231738 0.171450 0.697908 -5.764135 -9.575898 3.297882 -1.272138 0.346970 2.790899 -7.679796 1.821224 4.115519 3.839655 1.430369 1.921756 -0.277172 -7.571872 -5.886167 2.624654 -5.675067 7.954811 2.849911 -1.223012 -4.522247 -4.410694 -6.992854 3.291389 -6.292389 5.349853 0.897615 -4.794580 1.803851 -7.298698 1.945268 -4.005061 1.954413 0.749906 -14.323771 11.015573 5.589901 -5.244477 0.040469 -1.677928 4.584946 -1.112828 3.989139 -5.813670 -4.372965 0.834420 0.858286 0.241270 -1.115046 1.851726 -1.842680 -3.452216 -8.867530 -4.720798 7.124226 2.869002 -1.067572 -0.567618 4.308282 -4.143617 0.889191 8.383689 4.995061 1.335971 -5.537087 -19.860894 2.082006 0.171400 -2.311127 0.781294 -6.361173 -2.241631 3.505341 -3.684352 6.570432 -1.613175 -3.067509 6.889932 -9.733931 -6.765351 -6.817363 -3.362531 1.268426 -0.065482 0.922994 -3.450502 0.906607 -1.000431 1.967662 -3.605151 -4.848154 3.408929 4.563348 7.991437 -0.030699 0.451425 7.483505 3.342755 -1.889018 -2.373084 -0.070575 -5.272770 3.488796 -11.436048 -1.089762 2.629549 3.525678 -5.696499 0.577276 -1.428642 2.204062 -0.027649 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 3.214551 -2.168288 -0.217983 2.894751 1.236568 -0.641899 0.716471 1.448774 0.141541 -5.055970 -2.865459 1.358430 -0.082878 -0.987230 1.209956 0.953703 2.297765 0.013330 -6.325316 1.096021 0.583249 -0.875750 -1.903537 0.141831 0.072477 -2.395017 0.200118 2.602837 -0.179649 2.906644 -1.721610 1.345937 2.450658 0.136611 2.726773 2.980342 -0.551274 -0.985161 0.473022 0.063285 6.001606 1.413519 -0.321412 1.471988 2.033567 3.954586 -0.782835 5.636179 1.979249 -1.065103 3.852638 -1.961276 -1.727376 0.314221 -4.859929 0.658618 3.227077 0.667229 -2.984343 2.136896 -2.082823 1.079909 1.182528 0.211011 5.161171 1.630865 2.879675 2.200586 4.015749 -2.164482 -0.049442 1.541328 2.504332 0.991421 0.328435 -2.485657 -0.730833 -5.161426 0.836887 -3.792807 0.232233 -1.390181 4.514174 -2.260268 -0.367020 1.694605 0.001918 3.189113 -2.485646 -0.090332 -4.023877 0.304094 0.536301 4.377233 -0.495279 0.989305 0.513805 1.201656 -0.311307 2.235886 -0.256036 -3.432935 -3.221946 -7.354431 -3.404602 -1.750581 0.064112 -0.881671 -4.301664 0.386723 2.162822 1.293558 -4.119892 -0.418697 0.932581 0.572557 1.209901 2.177539 -2.700713 -1.607834 -0.057315 2.372531 1.550201 -0.899484 0.726316 -4.297675 1.418916 1.284187 1.719288 -0.188254 -3.289667 -0.318723 1.436415 0.125947 -0.760633 0.476742 0.645564 -1.797998 1.889506 -2.064079 3.157929 -4.865582 -0.906469 -3.508202 -2.093571 -0.868448 5.664040 3.567030 3.029678 2.077541 -1.486667 0.124666 -4.550319 -6.015430 -0.156682 -1.104339 1.348470 -0.444230 -0.481430 0.515933 -1.371276 -0.630091 0.363894 -2.444580 -1.475811 -1.866552 1.512166 0.273946 -1.257271 -1.873737 0.554354 2.693413 -0.851320 2.226115 -1.664339 -5.010828 -3.730434 -2.568640 2.687341 -1.380790 0.473261 -0.414968 -0.217201 -3.580159 1.108404 -2.444669 0.057162 -1.658791 -2.551417 -3.683884 0.973108 -1.037569 0.527604 0.208170 -2.905919 0.961807 1.520477 2.842842 0.774601 1.335926 -0.398363 -4.063248 -3.987402 -0.554264 -0.276419 4.705218 2.306059 -0.234414 -0.783544 -1.436220 -3.276613 2.974932 -3.820519 1.232918 1.252303 -3.492440 2.373986 -2.245972 -1.105479 -2.342852 1.786584 0.489422 -4.927155 5.051441 3.405055 -4.001281 -1.751089 -3.494919 1.654978 0.929906 4.251915 -1.343885 -0.200440 0.913262 0.883524 -0.448878 -1.077690 1.863823 0.127344 0.908123 -4.494730 -2.791929 3.054236 2.735738 -0.264564 0.276315 0.468606 1.160566 0.441707 4.544880 0.590331 0.350737 -2.352145 -8.482964 1.082803 2.694611 -0.409932 1.533986 -2.966385 -2.236968 -0.924609 -0.644017 3.776057 2.022038 0.394587 3.194923 -2.752113 -3.569622 -2.698721 -0.115708 0.106868 -1.659879 1.547015 -2.097667 -0.085150 -1.081711 1.724102 -0.035917 -1.669896 -3.073377 0.734085 2.006174 1.283137 -1.286777 3.438421 0.783530 -1.405762 -1.138707 0.272300 -0.291189 2.597251 -2.395067 -1.700822 -1.356754 1.152669 -2.028743 1.780704 0.625811 2.399965 0.938910 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 1.536909 -1.533158 -0.520633 1.726110 0.376288 -0.269019 0.223239 0.232431 0.505558 -2.212844 -0.737790 1.522701 0.073159 -0.340498 0.218516 0.718598 1.041152 -0.114572 -2.465261 0.584474 -0.097488 -0.494045 -1.154716 0.133090 -0.017372 -1.148891 1.324260 1.096066 -0.051431 1.295493 -0.775830 0.718059 1.127528 -0.227201 1.270295 1.270901 0.021690 -0.288666 -0.611822 0.048417 2.638613 0.706920 -0.124881 0.815523 0.763350 1.840681 0.333656 2.849521 1.853133 -0.474243 1.558025 0.149310 -0.776814 -0.165984 -2.370552 0.257115 1.022685 -0.050873 -1.389182 0.874637 -0.756124 0.519633 0.640013 0.849037 2.413018 0.425142 1.684816 1.174105 1.852089 -1.022644 0.082130 0.715365 1.457116 0.750548 1.316499 -1.216903 -1.199440 -1.472949 0.221964 -0.873847 0.180197 -0.586011 1.532333 -1.182151 -0.436868 0.400757 0.061536 1.603260 -1.202264 0.087144 -1.850387 0.112582 0.359713 2.334746 -0.097453 0.636423 0.024711 0.672858 -0.272556 0.843343 0.438489 -1.996125 -0.457200 -3.003001 -1.581171 -1.145273 -0.089958 -0.324767 -1.978065 0.392647 0.278857 0.827304 -1.937129 -0.041053 0.345047 -0.043781 1.982738 0.345701 -0.373810 -0.411033 0.213660 1.104940 0.672881 -0.553874 0.367075 -1.353905 0.963896 0.761469 0.742276 0.094336 -1.390165 -0.014822 0.748666 0.650450 -0.247908 0.393530 0.450318 -1.302874 0.862707 -0.894018 1.453872 -2.057096 -0.863752 -1.457906 -0.725197 -0.532773 2.697245 1.113794 2.005514 0.502327 -0.791881 0.054197 -2.275208 -3.266054 -0.057310 -0.497212 -0.140873 0.187233 -0.186088 0.296939 -0.812198 -0.128414 0.608634 -1.183431 -0.778342 -0.572180 -0.370811 0.169295 -0.511092 -0.632297 0.031377 0.791573 0.485853 1.475982 -0.577738 -3.795758 -1.872282 -0.945573 1.250201 -0.705834 0.237019 -0.150478 -0.634022 -1.599617 0.349007 -1.173834 0.152769 -0.787433 -1.000725 -1.717161 0.461594 -0.502628 0.622741 0.003820 -1.556050 0.500476 0.106325 0.980604 0.303699 0.681151 -0.131803 -2.080919 -1.677854 0.166589 -0.322690 2.582263 0.489380 -0.118733 -0.136479 -0.677833 -1.606258 1.027945 -2.472341 0.702618 0.916244 -1.650907 0.974211 -1.051676 -0.513276 -0.972433 0.941776 0.152954 -1.548079 2.632004 1.963799 -1.865729 -0.571496 -0.795521 0.877773 0.350595 1.838137 -1.046752 -0.425912 0.410600 0.601410 -0.164356 -0.233759 0.781351 -0.024465 0.191497 -1.967487 -1.142657 1.278355 1.160884 -0.121530 -0.466686 0.095010 -0.262846 -0.256718 2.003313 0.400948 0.827609 -1.384430 -3.948529 0.465043 0.469534 -0.468911 0.954273 -1.601996 -0.713776 -0.101321 -0.600990 1.686081 0.150200 0.027100 1.456088 -1.869488 -1.731315 -1.359190 -0.699580 -0.073853 -0.396864 1.158154 -1.056725 -0.072279 -0.777281 0.871046 -0.888721 -0.324271 -0.066873 0.663291 0.659685 0.532800 -0.539818 1.570621 0.394334 -0.548909 -0.613184 0.116550 -0.657462 1.059843 -1.499084 -0.626406 -0.482715 0.757101 -1.019316 0.716840 0.072890 1.289135 0.063724 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 1.582149 -0.573111 -0.926118 1.694279 0.270656 -0.659189 0.299598 0.450659 0.011960 -2.300316 -1.000699 1.899675 0.206406 -0.706164 0.090366 0.817870 0.891827 0.464965 -2.416299 0.740354 0.087602 -0.386005 -1.553916 -0.221585 -0.136956 -0.966302 0.583052 0.997211 -0.082752 1.504122 -0.779719 0.774077 1.213788 -0.136855 1.327717 1.448850 -0.250712 -0.351234 -0.037442 -0.152121 2.719268 0.845006 0.045182 0.805064 0.821745 1.952968 -0.077601 2.460482 0.687739 -0.473697 1.249088 0.483924 -0.841265 0.026520 -2.340342 0.299745 0.907887 0.055282 -1.387115 1.033189 -0.914387 0.498507 0.818687 0.552113 2.643723 0.746657 1.287491 1.439183 2.137390 -0.901826 0.277041 0.507074 1.298424 0.212428 1.222489 -0.710975 -1.040237 -1.156118 0.096006 -1.856624 0.328168 -0.308166 2.891686 -1.435002 -0.149724 0.457938 0.734735 1.788146 -1.396078 -0.185519 -1.906236 0.025335 -0.279808 2.577680 0.077530 0.811474 -0.329820 0.704900 -0.312829 0.712415 -0.296938 -1.997168 -0.712194 -3.344129 -1.631971 -1.138353 -0.447631 -0.338613 -2.238518 -0.009064 0.813927 1.744306 -2.531324 -0.100225 0.408977 -0.245303 1.363437 0.898972 -1.158877 -0.093506 -0.213820 0.935199 0.573594 -0.320088 0.152626 -1.177456 0.491155 0.472021 0.755594 0.278083 -2.434620 0.013418 0.828995 -0.054513 -0.241887 0.542189 0.425522 -1.207965 0.817265 -1.138900 1.456409 -2.314248 -0.650006 -1.490704 -1.488957 -0.552696 2.038430 1.752821 1.864996 0.314224 -0.393256 -0.058012 -2.691761 -3.270810 0.288476 -0.771509 0.028838 -0.138541 -0.156895 -0.009980 -0.947590 -0.108175 1.011686 -1.342104 -0.807723 -0.704509 1.589944 0.180365 -0.645618 -0.815532 -0.247534 0.778915 0.586536 1.233187 -0.874730 -3.206180 -2.262697 -0.930339 1.412978 -0.663057 0.187511 -0.370848 -0.575307 -1.324501 0.240370 -1.252443 0.281626 -0.894723 -0.533514 -1.884014 0.423434 -0.370053 -0.221234 -0.251845 -1.485288 0.658201 0.964990 0.506552 0.049888 0.524636 -0.026989 -1.735393 -1.531850 0.400572 -0.185438 2.079820 1.642963 0.202333 -0.744336 -0.566513 -1.966707 1.196786 -2.365116 0.854822 0.900222 -1.601734 1.364929 -1.449900 -0.582545 -0.890195 0.993696 -0.074917 -2.623884 2.547297 1.895817 -1.970102 -0.406145 -1.065798 0.961657 0.487854 1.926703 -1.054445 -0.352792 0.551795 0.259089 -0.219251 -0.210134 0.763344 -0.212322 0.545616 -2.018538 -0.943421 1.638569 1.221443 -0.168596 -0.267817 -0.229153 -0.409925 0.213238 2.025730 0.626193 0.571236 -1.520967 -3.959851 0.461772 -0.372563 -0.285267 0.724028 -0.963486 -0.790586 -0.181322 -1.046772 1.841236 -0.441860 -0.584494 1.477672 -2.139796 -1.962356 -1.347886 -0.144270 0.181201 -0.630596 1.248566 -1.064831 -0.061655 -0.652412 1.116727 -0.541137 -0.735205 -0.511258 0.747809 1.014261 0.652608 -0.917089 1.780684 0.265898 -0.524851 -0.537306 -0.073394 -0.318946 0.833726 -2.033630 -0.739137 -0.530436 0.935165 -1.237228 1.194361 0.131771 1.296355 0.568314 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 2.182183 -0.712724 0.341640 2.990715 1.169517 -0.373282 1.000625 1.501192 0.173325 -5.145398 -3.239283 0.775375 -0.000581 -0.513099 0.904657 0.175784 1.850322 1.383821 -6.259956 0.404503 1.335898 0.212829 -0.424572 -0.782547 0.102701 -1.583213 -0.235240 2.224237 0.453365 3.364293 -1.511401 1.026190 2.723986 0.558059 1.976915 3.174292 -0.056473 -0.494580 0.228914 -0.734618 5.314224 1.445885 -0.204363 1.863162 1.249084 3.941066 0.038248 3.017352 0.819294 -1.401232 2.047703 -2.179441 -1.609686 -0.466634 -3.867118 0.924300 3.440775 1.904590 -2.476500 2.221022 -0.896338 0.789152 1.206253 -0.996395 3.646680 1.590118 1.595571 2.330442 3.821487 -2.641518 -0.041906 0.828484 1.716614 0.488820 0.122183 -2.376090 -0.914999 -4.557917 0.076794 -5.093714 -0.040989 -0.765386 4.380970 -2.565042 0.574185 1.820320 -0.270937 2.785979 -1.693518 -0.752256 -3.659518 0.053680 -0.104150 3.831827 0.198458 0.341606 0.627765 1.136341 0.207679 2.016148 -0.149850 -3.008679 -2.546741 -7.263605 -2.291127 -1.841522 0.399971 -0.078569 -3.178257 -0.492373 1.409829 1.746517 -4.597327 -0.763840 1.271557 1.183035 -1.126562 -0.258911 -2.250172 -0.771327 -0.420910 1.306639 1.694635 -2.007696 0.303403 -2.323107 -0.147904 0.588145 1.444407 0.115022 -2.232257 -1.273077 0.642771 -0.051545 -0.420944 0.472558 0.624722 -1.090981 1.766796 -2.550965 3.194354 -3.952989 -0.074221 -2.144210 -2.203105 -1.345379 4.101230 2.071675 1.918090 0.984067 -1.148209 -0.101862 -3.501693 -5.236863 1.119179 -0.138182 1.881462 0.172700 -0.709947 0.609706 -2.006171 -0.586154 0.559333 -1.814244 -1.361510 -0.929915 2.263814 -0.025589 -1.217150 -2.040958 0.856278 2.435007 -0.781663 1.944268 -2.076491 -2.555182 -3.466712 -2.468684 3.011976 -1.562355 0.070273 -0.668551 -0.216012 -2.781911 1.023269 -2.765249 0.272437 -1.071444 -2.308518 -4.043542 0.974952 -1.189250 0.349504 1.340142 -2.783185 0.833050 1.886164 2.421425 0.257603 0.802757 0.378656 -3.311716 -3.001325 -0.655354 -0.622907 3.198820 2.064729 0.194620 -1.865370 -1.345349 -2.239100 2.884126 -1.636989 1.417505 0.137330 -2.133025 2.479684 -2.002385 -0.301074 -2.559134 1.466246 1.290358 -5.072584 3.986054 2.609653 -3.059528 -1.309869 -2.747163 1.009575 0.920312 3.635724 -1.878465 -1.400484 1.323511 -0.453413 -0.217375 -2.039004 1.343878 0.079767 0.800614 -3.970410 -2.084857 2.694725 2.226641 -0.303251 1.339963 1.560476 1.160074 0.662391 4.335956 1.075189 0.172491 -2.491321 -6.728046 1.690227 2.816417 0.716781 0.585947 -1.985804 -1.968578 0.086489 0.147066 3.311180 3.203619 -0.278021 3.366487 -2.497793 -3.297086 -2.144555 0.050987 1.277680 -1.713714 0.627379 -1.882497 0.559154 -0.713031 1.041523 0.668984 -1.833175 -2.743497 0.896321 2.790219 0.777873 -0.636204 3.704918 0.316084 -1.811046 -0.249760 -0.153644 -0.102895 1.437743 -2.129612 -1.323391 -0.604617 1.298775 -2.103144 1.796381 -0.182634 1.215094 1.293554 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 3.541590 -1.901884 -2.051462 6.771502 0.619817 0.240102 1.134297 0.562594 1.313301 -8.576505 -4.007880 5.574684 0.954126 -0.020398 -0.062403 1.781240 2.483020 2.220062 -9.287521 0.190943 1.422623 -0.162057 -1.276041 -1.116382 -0.124243 -2.536785 4.210485 2.513008 0.760401 5.599229 -1.814128 3.319115 4.748355 0.188278 2.660419 4.247440 -1.305911 -0.342425 -2.610241 -2.221413 7.554295 2.693318 0.067908 3.370177 -0.031760 6.363731 2.179679 5.166186 3.696852 -2.161771 2.378754 1.383641 -2.604647 -1.351094 -6.413836 0.885299 3.162621 1.367070 -2.682017 2.766771 -1.009402 1.559510 2.409650 0.429121 6.798356 1.750757 4.573480 5.107006 5.523990 -4.361139 1.279457 0.507907 2.186000 0.746202 4.756374 -3.932029 -4.700765 -1.870447 -0.909651 -6.748125 0.279467 -0.858892 7.182263 -4.496167 -0.656927 0.003439 1.181910 5.858926 -2.785169 -0.153495 -5.833508 -0.050633 -0.589536 7.417697 1.309315 1.620159 -0.734916 1.860354 -0.621310 1.543025 1.252494 -5.964443 0.620210 -10.021722 -3.171493 -4.283251 0.871711 1.232438 -5.590247 0.539689 -1.426534 4.291119 -8.590051 -1.172873 1.284658 0.989048 3.731280 -1.753882 -1.401090 0.004460 0.236759 2.370139 2.500595 -3.613211 1.146303 -1.327549 -0.090433 1.000084 2.256186 1.542958 -5.153389 -2.011522 1.349102 0.850765 0.608926 2.714178 2.769862 -1.919915 2.637697 -4.070092 4.952711 -6.193966 -1.581546 -2.732831 -3.635200 -3.104798 5.867050 3.061418 5.123989 -0.666620 -1.218606 -0.112549 -7.235562 -9.969526 1.469839 0.015339 0.004717 1.867854 -1.062010 1.532125 -4.878864 0.938204 3.495773 -2.923719 -2.926534 -0.361769 2.104501 0.663000 -1.975054 -1.924112 -0.157747 0.692013 1.446780 5.673812 -1.978936 -9.552021 -7.918588 -2.781908 5.175680 -3.158037 -0.130475 -2.129348 -2.030002 -3.566382 0.047955 -4.502546 0.599105 -0.638811 -2.915884 -6.955217 1.699843 -1.396769 0.798222 1.970135 -5.323558 1.557489 3.357825 2.624369 0.186654 1.532864 0.556559 -4.712947 -3.329831 1.246175 -2.590975 5.563868 2.772280 -0.110137 -3.412910 -2.420631 -4.422967 3.295456 -3.937657 3.517472 0.613772 -2.917961 2.764922 -4.249777 0.192599 -3.356348 2.122586 1.042131 -8.346540 6.825690 4.832532 -4.485063 -0.529517 -1.715322 2.657564 0.332085 4.312579 -4.633885 -3.643075 1.537940 -0.363863 -0.055001 -1.919177 1.471736 -0.687530 -0.822909 -5.749970 -2.299981 4.899173 2.436222 -0.720223 0.217888 2.494530 -1.762715 0.967259 5.929446 3.052088 1.625954 -5.087006 -12.073656 2.079351 0.783489 -0.154278 0.908803 -3.315291 -2.080574 1.682759 -2.107883 5.001179 1.064218 -2.326583 5.251454 -6.346932 -5.365357 -4.510717 -1.860085 1.782338 -0.891070 1.755513 -2.925518 0.887689 -1.421996 1.901818 -1.852541 -2.842391 1.070542 3.180911 4.943972 0.465478 -0.519556 5.890865 1.285379 -2.006310 -1.060927 -0.542829 -2.900517 1.336701 -6.559953 -1.232452 0.691501 2.922219 -4.109063 1.972272 -0.823073 2.340461 0.738578 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 1.424089 -0.427702 0.113257 1.967035 0.331539 -0.149372 0.793722 0.994636 0.317768 -3.498138 -1.797607 1.424696 0.096352 -0.188550 0.227784 0.318565 0.975433 1.278710 -4.066218 0.118043 0.929637 0.490398 0.062066 -0.786329 0.099426 -0.834921 0.222971 1.164429 0.424372 2.381838 -0.933982 0.662078 1.949576 0.320845 0.783103 2.002469 0.139823 -0.281409 -0.267024 -0.815165 3.191027 0.947573 -0.125501 1.434556 0.355641 2.588277 0.380348 1.792489 1.006326 -1.008517 0.952347 -1.155210 -1.344572 -0.474999 -2.272030 0.565820 1.726538 1.416656 -1.187626 1.511110 -0.298250 0.550254 0.863957 -0.711336 2.201720 1.179687 1.035853 1.709924 2.515082 -1.872369 0.216570 0.263279 0.903758 0.274521 0.838820 -1.626954 -0.836470 -2.730433 -0.162807 -3.438594 -0.177090 -0.431517 3.078854 -1.928807 0.502201 1.076747 0.086673 1.971231 -0.940070 -0.311976 -2.344672 0.075491 0.122434 2.705928 0.226276 0.277194 -0.023516 0.682841 0.184230 0.952952 0.424874 -1.917098 -1.208602 -4.206240 -1.162589 -1.373884 0.117093 0.265553 -2.145709 -0.145017 0.850943 1.606353 -3.462185 -0.570002 0.887068 0.782011 -0.071388 -0.291864 -0.989320 -0.101399 -0.241617 0.742120 0.900161 -1.810743 0.205008 -0.773184 -0.417062 0.365787 0.882804 0.234988 -1.967357 -1.094467 0.450590 0.091548 0.001537 0.673092 0.599072 -0.626320 1.064155 -1.923002 2.016869 -2.412804 -0.268937 -0.863797 -1.293513 -1.103076 2.935922 1.085146 1.301525 0.275629 -0.739756 -0.301030 -2.190655 -3.442887 0.943141 -0.007150 1.040928 0.487804 -0.444961 0.281258 -1.552763 -0.164433 0.385690 -1.128339 -0.836270 -0.288759 1.184888 -0.120567 -0.773686 -1.353758 0.474988 1.369446 -0.087367 1.342989 -1.190787 -2.105457 -2.523491 -1.532224 2.118839 -1.076726 -0.032932 -0.637116 -0.324962 -1.404757 0.433779 -1.710443 0.405350 -0.232776 -1.613428 -2.871497 0.852419 -0.737684 0.055052 1.034314 -1.856030 0.482539 0.789288 1.261140 0.029522 0.404618 0.375104 -2.213027 -1.817805 -0.325201 -0.688170 1.936266 1.170593 0.293773 -1.678940 -0.880948 -1.444578 1.846572 -1.485425 1.121311 -0.156424 -1.083705 1.611288 -1.350257 0.081849 -1.842619 1.037457 0.835265 -3.412359 2.710910 1.703967 -1.820733 -0.637852 -1.372133 0.699313 0.709373 2.187041 -1.594896 -1.401618 0.971054 -0.482658 -0.090376 -1.273392 0.813667 -0.145675 0.392003 -2.377784 -1.058573 1.713904 1.315711 -0.318980 0.848639 1.363294 0.315845 0.252160 2.599099 0.932831 0.183425 -1.777857 -4.324031 1.187542 1.770235 0.580576 0.468447 -1.599794 -1.048285 0.679620 -0.033063 2.043095 1.471213 -0.347871 2.124899 -2.056377 -2.159827 -1.201487 -0.236003 0.986207 -0.785672 0.597922 -0.972396 0.389971 -0.206619 0.619719 0.167685 -1.143182 -1.053305 0.820515 2.136046 0.552314 -0.382902 2.531804 0.180655 -1.153009 0.020399 -0.374546 -0.244959 0.447127 -1.526359 -0.442306 -0.003146 1.030362 -1.583813 1.373698 -0.219259 0.396861 0.538189 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 1.316817 -0.354507 -0.484351 1.664641 -0.004279 -0.299464 0.346119 0.670390 -0.097882 -2.743563 -1.678828 0.918090 0.191444 -0.413976 0.494034 0.739663 0.635201 0.526261 -3.686966 0.427477 0.766246 -0.007139 -0.447325 -0.302722 0.149680 -0.877907 -0.078610 0.718027 -0.100458 1.649658 -0.754463 1.054112 1.396638 0.155354 0.845638 1.175592 -1.095192 -0.342991 0.380757 -0.095215 2.435416 0.921815 -0.107493 0.626568 0.426515 1.840696 -0.172914 1.659537 0.210315 -0.619213 1.202013 -0.488360 -0.979210 0.276887 -1.828290 0.168113 1.382793 0.561445 -0.692458 1.011046 -1.097469 0.573540 0.671194 -0.333360 2.637233 0.896753 1.660082 1.334543 1.811140 -0.795644 0.591176 0.016963 0.656531 -0.240246 0.589258 -0.995605 -0.706859 -1.772672 -0.077811 -2.932503 0.166589 -0.267222 2.842367 -1.293282 -0.106745 0.319003 0.549492 1.958209 -1.124897 -0.053433 -1.621726 0.201445 -0.398939 2.245770 0.046150 0.620723 -0.361912 0.668505 -0.028285 0.397627 -0.144452 -1.378122 -0.972061 -3.470722 -1.203095 -0.830888 0.124434 0.081764 -2.281026 0.342114 0.630718 1.229490 -2.674730 -0.241277 0.421199 0.375289 0.510538 0.496679 -1.400628 -0.391863 -0.325297 1.257180 0.676171 -0.889114 0.431912 -1.681588 0.111953 0.490486 0.827156 0.203974 -1.966249 -0.438074 0.502929 -0.397127 -0.016598 1.023653 0.809444 -0.294957 0.855699 -1.403342 1.459168 -2.455165 -0.240737 -1.280153 -1.326813 -0.548246 2.076524 2.042025 0.855443 0.340621 -0.373593 -0.046593 -2.528297 -2.649827 0.134171 -0.365263 0.631452 -0.105662 -0.193744 0.089998 -1.058139 0.173643 0.627659 -1.062994 -0.598539 -0.793004 1.640637 0.298227 -0.797178 -0.844102 -0.176129 0.851448 -0.329125 1.223019 -0.550424 -1.992071 -2.486005 -1.027770 1.476007 -0.728274 0.125723 -0.882996 0.071334 -1.459624 0.371508 -1.153904 0.000726 -0.118654 -0.967022 -1.997243 0.204930 -0.197336 -0.197747 -0.066888 -1.329532 0.284045 1.554752 1.022449 0.316586 0.519637 0.014936 -1.391925 -1.502087 0.047127 -0.632214 1.672469 1.420222 -0.146625 -1.257598 -0.448570 -1.710230 1.520896 -0.921700 0.780439 -0.082229 -1.183303 1.114818 -1.183921 -0.204319 -1.122014 0.516225 -0.237223 -3.403216 2.288576 1.441998 -1.611404 -0.350348 -1.534437 1.118152 0.278337 1.552094 -0.906475 -0.366447 0.151917 -0.164137 -0.114670 -0.579076 0.853967 -0.487688 0.014978 -1.710472 -0.739141 1.798994 0.946756 -0.244096 0.387170 0.373105 0.106007 0.734119 1.577733 0.646166 -0.291877 -1.278135 -3.954872 0.318288 0.915249 -0.044447 0.274352 -0.915945 -1.032378 -0.118816 -0.520451 1.719238 0.898184 -0.464808 1.366942 -1.513408 -1.640671 -1.410745 0.170556 0.165964 -0.623574 0.445291 -0.691026 0.070314 0.118002 0.934325 0.214934 -1.541690 -1.104804 0.521949 1.650962 0.425461 -0.680347 1.720987 0.458099 -0.533203 -0.549050 -0.139958 -0.472678 0.700186 -1.344838 -0.619341 -0.242501 0.637353 -1.250832 1.031166 0.083160 0.946044 0.484974 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 2.217956 -1.298811 -1.462925 4.943388 0.280455 0.689152 0.602316 -0.327428 0.780348 -6.185197 -2.165849 4.522063 0.758510 0.799712 -0.380732 1.643420 1.580868 1.167734 -6.080016 -0.187995 1.038004 -0.133148 -0.205864 -0.517172 0.093972 -1.931311 4.360688 1.510789 0.780154 3.992438 -1.420072 2.721196 3.451924 -0.027228 1.647565 2.657973 -0.627853 -0.109198 -3.064242 -1.786628 5.053210 1.252800 0.276356 2.264779 -0.679766 4.455353 2.039937 3.388699 3.654240 -1.766821 1.419475 2.310285 -1.696417 -1.138765 -4.298550 0.630391 1.346971 0.927947 -1.674745 1.476025 -0.187635 1.146112 1.559586 0.924913 4.505702 0.951663 3.505114 3.684134 3.518118 -3.385751 0.862050 0.464453 0.953906 0.745387 4.218660 -2.802668 -3.572121 -0.012993 -0.739995 -3.807091 -0.218615 -0.461326 4.245254 -3.146460 -0.956012 -0.390925 0.752367 4.309500 -1.557476 0.577592 -4.124037 -0.069805 -0.156845 5.104697 1.003656 0.936161 -0.606536 1.126633 -0.473296 1.070395 1.636557 -4.265089 1.311610 -5.415421 -2.259993 -3.268149 1.169779 1.490603 -4.016717 0.809160 -1.597310 3.254031 -5.976522 -0.704805 0.823714 1.189082 3.806776 -1.391673 -0.192856 0.055856 0.644290 1.554433 1.718139 -2.498626 1.141077 -0.255769 0.022377 0.678329 1.654155 1.035364 -3.731159 -1.793961 0.867095 0.739083 0.719360 2.062462 2.487431 -1.234716 1.931666 -2.546072 3.362494 -3.965926 -1.421542 -1.610143 -2.104397 -2.456636 3.358472 1.652053 3.705084 -0.848290 -1.276335 -0.073092 -4.944569 -6.471759 0.569331 0.372546 -0.636944 2.353833 -0.912953 1.731192 -3.656508 1.018203 2.652734 -1.937614 -2.351079 -0.027208 0.105633 0.462284 -1.196531 -1.123768 -0.159701 -0.533329 1.220213 4.723616 -0.944025 -7.139012 -6.005325 -2.074168 3.664046 -2.443962 -0.087312 -1.657014 -1.751833 -2.368096 -0.198031 -3.287854 0.342905 -0.093679 -1.991014 -4.881166 1.616312 -1.072688 0.193132 1.709385 -4.020545 0.974525 1.504478 0.902042 0.407032 0.800187 0.171701 -3.365930 -2.103332 1.253872 -2.327625 3.383352 1.204139 -0.267080 -2.385810 -2.191887 -2.799377 1.814509 -3.014844 2.688837 0.572272 -1.644502 1.477034 -3.090870 0.592026 -1.984240 1.450122 0.976479 -5.177749 4.884942 3.241982 -2.828950 -0.181131 -0.293225 1.895522 0.084955 2.509680 -3.486245 -2.889556 0.889015 0.178543 0.096252 -0.862726 1.015222 -0.690528 -1.078813 -3.782358 -1.644430 3.071506 1.667218 -0.485642 -0.131830 2.327691 -1.885676 0.604092 3.861326 2.389045 1.599471 -3.285994 -7.870292 1.501930 -0.650681 -0.358490 0.760997 -2.506560 -1.116907 1.795312 -1.477346 3.467789 -0.670873 -1.581577 3.706251 -4.811499 -3.670560 -3.182056 -2.161082 0.961458 -0.032598 1.013614 -1.912294 0.582646 -0.902537 0.916737 -2.071092 -1.529918 2.199419 2.388465 3.543023 0.242079 0.300480 4.091132 1.281547 -1.284854 -0.782224 -0.141801 -2.376712 0.606644 -4.825904 -0.612728 1.072390 1.983703 -2.865043 0.678527 -0.885499 1.104607 -0.148552 -PE-benchmarks/tug-of-war.cpp__main = 1.555340 -0.784298 -0.822209 3.006811 0.202407 0.258809 0.571595 0.228037 0.312583 -4.204427 -1.843256 2.204946 0.435801 0.189032 0.175520 0.985890 1.022009 0.844712 -3.780352 -0.053256 0.806883 -0.115030 -0.413542 -0.198772 -0.070928 -1.301810 1.459599 1.047485 0.345589 2.603673 -0.801366 1.569166 2.316808 -0.041607 0.863366 1.911943 -0.280005 -0.028672 -1.154296 -0.837450 3.511432 0.812919 0.031439 1.407653 -0.199162 2.914920 0.439663 2.898513 1.273801 -1.174897 1.638627 0.113240 -1.108769 -0.427450 -2.762915 0.502510 1.576925 0.886266 -1.188906 1.294180 -0.752002 0.767038 1.015291 0.188494 3.044180 1.316097 2.127276 2.428816 2.503676 -2.158212 0.462236 0.477551 0.506020 0.262801 1.893074 -1.725853 -1.624679 -1.093969 -0.255189 -2.621121 -0.182037 -0.420884 3.663684 -2.085980 -0.548089 0.314445 0.537133 2.702798 -1.242928 0.411308 -2.700667 0.002411 -0.067207 3.293886 0.513941 0.598841 -0.499130 0.727415 -0.163878 0.838769 0.519862 -2.426334 -0.502592 -4.044865 -1.813661 -1.771481 0.599896 0.802932 -2.901124 0.160813 -0.009401 1.711265 -3.960475 -0.412674 0.697466 0.967728 2.199740 0.347443 -1.170052 -0.182856 0.370932 0.913755 1.188974 -1.352866 0.753928 -1.166231 0.100600 0.403493 0.991359 0.474621 -2.875185 -0.997645 0.503212 -0.048353 0.347460 1.224347 1.413564 -0.806304 1.340759 -1.689460 2.198453 -3.150796 -0.819104 -1.252849 -2.015218 -1.326740 3.152380 1.743069 2.393799 -0.138835 -1.130913 -0.293921 -3.307033 -4.257105 0.217162 0.100595 0.311407 1.011967 -0.571890 0.836185 -2.097997 0.649490 1.343496 -1.279745 -1.233030 -0.193618 1.114545 0.193165 -0.944376 -1.184088 0.000586 0.223997 0.200229 2.698838 -0.685097 -3.916797 -3.805937 -1.468772 2.360344 -1.374923 0.084310 -1.013309 -0.802129 -2.034657 0.045168 -1.994163 0.267018 -0.052629 -1.630955 -3.238827 1.078306 -0.586863 -0.191624 0.972362 -2.415862 0.531915 1.356397 0.975557 0.398178 0.645075 0.025441 -2.314346 -1.856491 0.396343 -1.326293 2.436717 1.483434 -0.066707 -1.349404 -1.291171 -2.151292 1.598992 -1.938263 1.464635 0.255587 -1.145906 1.265141 -2.027467 -0.043458 -1.811942 0.947920 0.589210 -3.903134 3.124788 2.041545 -1.914271 -0.399587 -0.882604 1.203965 0.288991 1.984869 -1.918307 -1.469756 0.731420 0.006211 -0.017578 -0.708473 0.799501 -0.499127 -0.348598 -2.571697 -1.102986 2.171838 1.311614 -0.394983 0.212197 1.391564 -0.603151 0.590845 2.609943 1.481191 0.267354 -1.938344 -5.469760 1.068575 0.163945 -0.363786 0.409624 -1.793884 -0.933887 0.914608 -0.857047 2.328895 0.249284 -0.692610 2.452338 -2.844888 -2.476977 -1.840177 -0.790835 0.653513 -0.521181 0.631446 -1.164904 0.421914 -0.277691 0.647029 -0.655321 -1.466659 0.073076 1.130254 2.478473 0.104305 -0.072754 2.720673 0.701441 -0.901116 -0.510400 -0.084049 -1.012867 0.685870 -2.905157 -0.538506 0.326581 1.205397 -1.852717 0.846649 -0.375408 0.564331 0.483383 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 6.246463 -3.170703 -5.596817 13.100756 -0.216594 1.772975 1.372043 -0.483933 1.346857 -16.769028 -7.187983 11.073914 2.468218 1.403426 0.235605 5.329612 3.528061 2.379147 -15.168655 -0.310908 3.068182 -1.426013 -1.996679 0.009492 -0.249564 -5.333521 8.433281 3.063028 1.145633 10.056345 -2.679471 8.332898 9.256617 -0.669458 3.410622 6.440207 -4.167933 -0.108612 -5.795971 -3.855344 12.862358 3.276476 0.759692 5.118186 -2.422542 11.223094 2.057844 11.779166 6.341660 -4.557827 6.931682 4.216800 -4.118889 -1.218351 -10.767741 1.160328 4.282140 1.338609 -3.528626 3.809532 -3.247521 3.295375 4.135481 2.087722 13.373980 4.625991 10.448250 10.502504 8.661287 -7.841875 3.085747 1.229023 0.706018 0.620442 9.613080 -6.947559 -8.054294 0.841572 -1.496336 -9.456017 -0.608274 -1.600994 14.680129 -8.019364 -3.899975 -1.926063 3.470715 12.092316 -4.867159 2.897823 -10.297954 -0.180969 -0.893668 12.742933 2.231219 3.173314 -3.098530 2.525399 -1.905322 1.956172 2.143310 -10.096116 0.817736 -14.016309 -6.907474 -7.506956 3.345860 4.584279 -12.342729 2.119273 -3.486135 7.038007 -16.009856 -1.643757 1.814306 3.286501 12.186760 2.396184 -4.153272 -0.899161 2.270824 4.646236 4.671551 -4.466168 3.852288 -4.568841 0.655920 1.678178 3.952266 2.806154 -12.654180 -3.843819 2.413110 -0.317898 2.391302 6.767947 7.566202 -2.296987 5.132579 -5.929762 8.301822 -12.749535 -4.424442 -5.403864 -7.820663 -5.726415 10.865703 8.385087 10.380292 -1.677481 -3.578792 -0.616411 -14.723594 -16.458061 -0.618653 0.062973 -0.838933 4.822546 -2.108298 4.278072 -9.044796 4.527886 6.732752 -4.989598 -5.651928 -0.865513 3.727902 1.895550 -3.716614 -3.158029 -1.661783 -2.492633 1.258543 12.928874 -1.129643 -18.533804 -17.251843 -4.927560 9.322219 -5.930047 0.299671 -5.298204 -3.634573 -7.473468 -1.349187 -7.980102 0.236143 0.605985 -5.424982 -12.600686 4.099986 -1.536412 -0.896158 3.040014 -9.883917 2.065175 7.234138 3.526076 1.949021 3.034378 -0.818644 -7.970143 -5.925340 3.461843 -6.681733 9.517542 6.289931 -1.336714 -5.549454 -5.366137 -9.189496 5.326039 -7.625398 6.744800 1.244124 -4.109522 3.688291 -8.892794 0.380142 -6.031715 3.033612 0.975947 -17.226515 11.754353 7.812981 -7.113057 -0.090202 -2.375228 5.867875 -0.094522 5.896464 -7.581473 -5.879537 1.538898 0.813944 0.185259 -1.466977 2.713368 -2.931111 -3.443155 -9.359668 -3.561270 9.556133 3.953893 -1.521019 -0.677082 4.954162 -4.555380 3.724847 8.830989 6.739649 1.108547 -7.843120 -23.065637 3.181028 -1.541786 -2.824218 1.256880 -6.623890 -3.242537 3.708324 -5.584704 9.031706 -2.446977 -3.845269 9.210575 -12.176202 -9.539322 -8.911432 -3.720066 1.589375 -0.297025 2.035737 -4.130854 1.480381 -0.744290 2.724762 -4.137586 -6.624750 3.262634 5.619294 10.405461 -0.311129 0.366129 10.121725 3.977625 -2.509290 -3.209154 -0.039340 -6.334249 2.133579 -13.995075 -1.930522 2.634030 4.792946 -7.691930 1.717085 -1.416729 2.883388 0.682444 -PE-benchmarks/Iterative_QuickSort.cpp__main = 1.220399 -1.119546 -0.666160 2.638902 0.223407 0.273324 0.618282 0.216953 -0.078668 -4.266874 -1.557071 1.445766 0.427369 0.485928 -0.022572 0.833724 0.789742 0.788366 -3.751371 -0.195946 0.875301 0.089345 0.063413 -0.188914 -0.055535 -1.108715 1.318075 0.968095 0.365757 2.334633 -0.734059 1.555746 2.260151 -0.027629 0.642517 1.824442 0.282691 -0.034643 -1.004942 -0.586313 3.277466 0.491639 0.053879 0.894455 -0.332225 2.549771 0.931422 2.881286 0.756404 -1.146652 1.499618 -1.056791 -1.068782 -0.488364 -2.539463 0.410236 1.524437 1.745223 -1.034718 1.222030 -0.600181 0.576524 0.867514 0.102878 2.945025 0.948205 2.203157 2.154021 2.129164 -2.080214 0.277792 0.508081 0.157469 0.019071 1.686011 -2.139174 -1.029649 -1.475809 -0.003593 -2.808952 -0.346730 -0.079504 3.697147 -1.779610 -0.672550 0.639181 0.434765 2.497975 -0.990321 0.656170 -2.693069 -0.051347 0.330780 3.238279 0.357559 0.192202 -0.444349 0.749713 0.133724 0.826743 0.798274 -1.995479 -0.776932 -3.546372 -1.388865 -1.474148 0.447569 0.791944 -2.636817 -0.253703 0.020171 1.422831 -3.808071 -0.210182 0.798141 1.198386 2.678127 0.484089 -1.272603 -0.071443 0.229675 0.658503 1.259138 -1.542439 0.716416 -1.082867 0.430513 0.348678 0.728573 0.288018 -3.399447 -0.995163 0.393753 -0.217195 0.262426 0.840962 1.450731 -0.565061 1.187020 -1.724915 1.911424 -2.980681 -0.425746 -0.781476 -2.537842 -1.156663 3.719177 1.628088 1.870962 -0.166452 -1.509379 -0.096380 -2.832871 -4.181562 0.212346 0.366685 0.494921 1.007491 -0.603111 0.765325 -1.745164 0.707372 1.321748 -0.911207 -1.102258 -0.063217 0.615804 0.201508 -0.797985 -1.018672 0.284938 0.330083 0.176423 2.618694 -0.802733 -3.611064 -3.532905 -1.411372 2.069382 -1.121934 -0.012762 -0.811750 -0.734628 -2.232514 0.331033 -1.756594 0.422854 0.013801 -1.772704 -2.976069 1.096904 -0.634001 -0.435810 1.125187 -1.936487 0.332116 1.000294 1.000697 0.357154 0.216462 0.233685 -2.280739 -1.950198 0.258743 -1.453604 2.265984 1.004243 0.053280 -1.146266 -1.113941 -1.841958 1.432918 -1.218220 1.174320 0.044762 -0.934369 1.159071 -2.063884 0.667015 -1.631211 0.889669 0.816261 -3.912353 3.170469 1.817019 -1.506560 -0.456812 -0.642749 0.802077 0.360073 1.610270 -1.526682 -1.428012 0.766296 -0.066870 -0.008906 -0.790671 0.588065 -0.391250 -0.275982 -2.512103 -1.317716 1.572274 1.215358 -0.330088 0.377850 1.421982 -0.388557 -0.145602 2.706529 1.010667 0.206027 -1.416085 -5.208674 1.136371 0.408225 -0.505957 0.189024 -1.662093 -0.610367 1.019896 -0.799753 1.967449 0.789519 -0.713369 2.186559 -2.711294 -2.127093 -1.511448 -0.619625 0.692984 -0.444714 0.188419 -1.087269 0.562143 -0.225976 0.344939 -0.369292 -1.554708 -0.081322 0.854820 2.239412 0.041522 0.059644 2.480023 0.319222 -0.558422 -0.347927 0.086244 -0.467413 1.000032 -2.618673 -0.521958 0.339027 1.114657 -1.499404 0.661756 -0.515678 0.134380 0.651399 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.866997 -0.438035 -0.244076 1.088375 0.058073 0.159657 0.308672 0.355778 -0.047397 -1.981248 -1.288879 0.316543 0.154111 0.155428 0.468436 0.435819 0.564176 0.133741 -2.082956 -0.025428 0.463612 -0.261403 -0.275664 0.337127 -0.036576 -0.807299 -0.333804 0.654022 0.047930 1.258307 -0.445618 0.731677 1.072647 -0.073398 0.361496 0.952387 -0.130299 -0.144896 -0.018715 -0.030589 1.741332 0.276045 -0.113642 0.407325 0.057801 1.420963 -0.434777 2.012269 0.326877 -0.633017 1.434071 -1.074069 -0.633880 0.191768 -1.266415 0.202805 1.150436 0.532309 -0.634306 0.773490 -0.773980 0.424216 0.378915 -0.256924 1.522288 0.874523 1.039678 0.828699 1.125822 -0.984874 0.145159 0.393251 0.178644 0.103967 -0.053184 -0.790364 -0.072242 -1.494023 0.276840 -1.411631 -0.254018 -0.359736 1.842153 -0.959134 -0.404422 0.554250 -0.031050 1.212483 -0.784633 0.422285 -1.287535 0.027995 0.192998 1.270213 0.102541 0.154108 -0.098306 0.337502 0.031454 0.551474 -0.149092 -0.933929 -1.428935 -2.176388 -1.189886 -0.543243 0.267022 0.262080 -1.596045 0.039953 0.736922 0.497009 -1.642395 -0.081307 0.433660 0.659611 0.480378 1.373445 -1.227280 -0.450861 0.220081 0.670420 0.851694 -0.403760 0.577594 -1.457354 0.292621 0.305619 0.472851 0.015345 -1.332085 -0.384134 0.387248 -0.285996 0.009544 0.416600 0.586305 -0.165254 0.799327 -0.720906 1.031239 -1.836172 -0.336292 -0.834207 -1.066532 -0.420362 2.040937 1.581122 0.978496 0.473318 -0.770877 -0.107646 -1.586579 -1.908849 -0.217832 0.003374 0.696281 0.107717 -0.282162 0.416632 -0.669260 0.232198 0.124283 -0.662916 -0.483674 -0.312529 0.816571 0.137570 -0.521322 -0.836371 0.143171 0.429713 -0.619829 1.020812 -0.327557 -1.324128 -1.539498 -0.842679 1.085746 -0.528343 0.219410 -0.350573 -0.067528 -1.412159 0.169236 -0.807000 -0.245664 -0.013142 -1.130416 -1.466364 0.503055 -0.212386 -0.384980 0.390771 -1.092027 0.112665 0.940611 0.900926 0.523159 0.368144 -0.133108 -1.107780 -1.249869 -0.226726 -0.700242 1.405553 1.063194 -0.212604 -0.401690 -0.572860 -1.156115 1.120650 -1.018853 0.499903 -0.017111 -0.679907 0.655759 -0.923816 -0.338381 -0.903862 0.493326 0.313292 -2.198776 1.533307 1.063183 -1.008445 -0.409445 -1.017466 0.588578 0.328355 1.207170 -0.572854 -0.249299 0.226479 0.151586 -0.022252 -0.340235 0.629429 -0.218042 -0.172650 -1.200644 -0.599071 1.092907 0.818403 -0.095796 0.303992 0.651172 0.465778 0.588979 1.190128 0.331264 -0.491425 -0.531025 -2.899517 0.588752 0.928926 -0.415511 0.417082 -1.166855 -0.539339 0.083614 -0.452637 1.150956 0.535567 0.118989 1.190365 -0.866714 -1.156259 -0.930379 -0.068085 0.064613 -0.435735 0.352904 -0.490073 0.241474 0.087862 0.307128 0.103675 -0.944270 -1.093984 0.227511 1.081481 0.088754 -0.018327 1.301885 0.245811 -0.456083 -0.405532 -0.005540 -0.184210 0.606553 -0.897898 -0.400503 -0.083148 0.434584 -0.828568 0.364896 0.016405 0.218033 0.470524 -PE-benchmarks/tarjan-algorithm.cpp__main = 13.792021 -3.608701 -2.487996 20.153727 4.320635 -4.127236 5.038151 9.168156 -0.651984 -30.839998 -18.893414 4.413832 3.008011 -2.224579 6.928896 4.126271 8.363668 7.333949 -35.097837 3.309993 7.760258 0.535624 -6.511529 -4.756028 -0.577992 -8.644421 -2.732049 11.787776 1.887513 20.202650 -8.667814 7.925963 16.473403 -0.509299 10.337597 17.413503 -0.184305 -1.320350 0.545004 -2.804359 32.112809 7.850594 -1.207718 9.769176 5.134059 23.314418 -2.836938 22.840707 -2.926980 -9.469420 16.184426 -9.732542 -8.847726 -1.823236 -22.524312 7.203359 24.088950 13.391146 -14.772376 14.149515 -8.030636 4.974066 9.037729 -2.245220 25.010043 13.366722 12.416961 16.850083 24.065401 -15.803398 1.573327 4.544472 7.687490 -1.335241 3.746560 -15.972429 -4.798838 -26.655059 2.470553 -29.577110 0.745285 -2.719731 31.986079 -17.447705 2.400081 11.892175 2.935110 19.273358 -13.758519 -0.571064 -20.629548 -1.008512 -3.645469 28.305210 0.264169 2.673937 2.059757 8.949341 0.956819 11.628361 -2.131514 -16.695209 -15.986470 -41.407590 -18.568070 -8.684469 1.614648 1.195052 -22.386910 -4.536468 11.323854 5.774396 -29.909968 -3.292396 8.010265 9.289440 1.180512 4.925502 -17.522478 -4.187493 -2.949310 7.264169 10.319350 -9.377185 4.887349 -15.934166 0.086004 5.324459 8.844050 1.339415 -20.605018 -5.745966 2.531862 -4.810822 -2.010161 3.856374 6.016914 -8.499054 11.892500 -15.617594 19.352945 -29.123802 -2.232717 -14.206817 -18.167638 -6.779610 21.865126 13.107219 11.920895 4.212285 -11.027541 -0.821836 -25.430120 -31.483359 4.226480 1.477058 9.891559 1.286169 -4.789325 3.243797 -11.264750 -1.632072 7.107204 -12.727383 -9.544765 -6.189620 21.578446 1.181721 -8.648513 -13.591702 4.965906 12.073549 -4.260069 14.448259 -9.582990 -15.259403 -25.462712 -13.549578 18.724453 -7.258991 1.646553 -4.744127 -2.802301 -20.611048 5.971125 -17.379888 3.067203 -5.085414 -13.099808 -24.922098 6.781012 -4.818873 -2.256506 5.748368 -18.006466 5.342376 12.526065 12.420356 0.982974 4.531335 3.561383 -22.279751 -21.097391 -2.033296 -3.983700 19.828945 15.445504 2.045071 -7.480528 -7.894801 -15.005166 16.075149 -11.189913 8.600812 1.628767 -11.873429 15.035450 -16.338329 -4.258697 -18.438529 7.826804 6.115769 -28.460594 28.042440 14.878425 -17.723849 -6.422145 -15.783598 8.385372 4.451220 22.263927 -11.546941 -7.911594 7.741401 -1.105284 -2.087135 -11.102700 8.204335 -2.019869 3.216133 -22.461793 -11.235157 16.621858 14.488347 -1.348239 8.324812 8.106045 2.258502 2.251773 25.715617 8.544200 -2.091981 -13.606974 -40.071763 10.873968 7.405006 0.309999 0.332057 -12.042145 -11.440967 1.301082 3.566015 19.399378 18.895813 -1.046400 20.284708 -19.296574 -21.648041 -13.365861 2.861389 6.135508 -10.530928 1.029592 -12.369833 4.236997 -2.134501 6.948668 2.331325 -12.594101 -18.032765 3.638477 18.364246 1.794549 -5.435900 24.034051 3.621684 -8.897494 -2.982399 -0.785673 -0.994354 8.848777 -11.977494 -7.963902 -3.336071 8.657544 -14.244264 11.100816 -0.895941 5.277006 10.202761 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 5.952603 -2.026749 -5.378029 11.682601 -0.366748 -1.034804 1.022675 1.719905 0.968509 -12.701680 -6.918950 7.980106 2.969448 0.588351 1.865773 4.197332 2.192450 3.030893 -14.140330 1.148702 1.918477 -0.494227 -3.973379 -2.353582 -0.494861 -2.721447 4.741247 3.274339 0.653266 8.386412 -3.068854 6.450635 6.749918 -1.261130 3.354857 4.891351 -2.621419 -0.468149 -4.250385 -3.200968 11.896832 3.466804 0.596985 4.933986 -1.353618 9.432800 1.235395 9.721440 1.613937 -3.808379 5.678158 3.033238 -3.976056 -1.131795 -9.574132 2.624949 6.398140 2.791722 -3.714031 4.909738 -2.854685 2.652631 4.770388 1.111490 12.834118 4.419148 8.742445 9.176350 9.106808 -6.404850 3.252607 0.280992 2.667104 -1.098539 7.816673 -7.129669 -5.718274 -4.179097 -0.106847 -11.312796 1.415221 -0.686786 14.574216 -7.996627 -1.309657 0.737646 3.936751 10.735616 -6.632185 2.362099 -7.898647 -0.687179 -2.630877 12.959708 1.333796 2.404672 -1.840180 3.841757 -1.263751 2.329596 0.520343 -7.529596 0.249704 -15.431405 -7.472262 -4.075443 0.809625 2.107732 -10.413607 0.477504 -0.582004 4.439953 -14.192899 -2.294738 2.300074 2.631712 6.678839 0.875771 -4.372057 -0.805092 0.129786 4.729699 4.105363 -4.334622 4.075270 -3.834845 -0.276662 2.710143 4.462298 2.955889 -10.443131 -2.847714 1.395890 -0.890837 1.275596 4.570402 5.728138 -2.986162 4.927862 -6.528740 7.844485 -12.550491 -3.224685 -5.448229 -7.375321 -3.780241 7.587299 5.571659 7.682285 -0.791801 -3.677800 -0.056421 -13.325015 -14.765704 1.298255 1.484629 -0.336966 2.788155 -1.626801 2.028856 -6.596960 1.750046 7.583060 -6.081694 -5.905563 -1.733628 6.951120 2.152934 -4.005192 -4.808518 0.594909 0.299273 1.030185 9.493304 -1.122059 -13.486068 -14.141459 -3.828601 8.387526 -3.353503 0.687462 -3.682962 -3.530138 -7.117947 0.172149 -7.607371 1.227429 0.395583 -4.767417 -10.972053 2.349237 -0.484744 -1.684593 1.601768 -8.854239 2.900781 6.807814 3.686020 -0.546697 2.947968 1.727259 -8.286919 -7.258926 1.956046 -4.007417 8.642996 6.541422 0.382646 -4.377500 -3.419688 -7.050508 5.377984 -7.104266 5.563349 0.852714 -3.810340 4.177076 -9.357866 -1.288223 -6.507932 2.599997 0.405592 -14.439200 12.096628 7.102474 -7.078358 -0.300912 -4.103455 5.773910 -0.214808 8.060512 -7.281574 -4.434453 1.861831 0.945781 -0.771652 -3.535112 2.563465 -2.150858 -3.099159 -7.951915 -3.105711 7.897074 4.306439 -0.504925 0.806496 3.517863 -3.943323 1.136363 9.021901 5.630565 -0.205839 -7.103383 -18.636582 3.654278 -0.771555 -2.290741 0.460109 -5.748004 -3.365173 2.366961 -2.315264 7.260318 2.243950 -2.250217 8.105163 -11.112430 -9.050061 -7.434837 -0.509644 1.446700 -1.695773 1.544889 -5.138180 1.457931 -0.735335 3.459198 -3.882556 -5.400270 -1.256804 3.490600 8.849302 -0.546143 -1.300433 10.318631 3.344066 -2.121969 -2.584018 -1.185018 -4.901913 1.933135 -9.282955 -2.236810 1.166330 4.400837 -7.552213 3.207744 -0.730978 2.641835 2.360131 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 1.524990 -0.736451 -0.875873 2.791679 -0.004751 0.192020 0.534953 0.441912 0.201320 -4.317384 -2.073092 1.613505 0.514667 0.098640 0.326500 1.126361 0.923424 0.999991 -4.367102 -0.000666 1.030015 0.048942 -0.259935 -0.351062 0.008276 -1.227187 0.990102 0.810711 0.274292 2.622219 -0.855577 1.684914 2.287243 -0.049288 0.785461 1.786993 -0.705478 -0.135714 -0.690165 -0.646261 3.473127 0.958784 -0.077463 1.172616 -0.205459 2.817286 0.292866 2.528156 0.809245 -1.130819 1.578333 -0.140963 -1.187561 -0.191491 -2.686216 0.466001 1.893335 1.163479 -0.985761 1.341200 -0.927397 0.814625 1.031460 -0.163145 3.235250 1.335914 2.320266 2.356306 2.449840 -1.909687 0.718596 0.146082 0.375698 -0.142841 1.715623 -1.824090 -1.344331 -1.805089 -0.307786 -3.420082 0.078936 -0.293508 3.889947 -2.105352 -0.397430 0.437063 0.706416 2.754016 -1.300987 0.386170 -2.608388 0.061570 -0.306808 3.333894 0.435757 0.573573 -0.629196 0.940798 -0.128399 0.566021 0.529655 -2.210067 -0.754437 -4.354185 -1.817564 -1.602665 0.554318 0.791385 -2.948616 0.269854 0.352973 1.643031 -4.115338 -0.281684 0.671594 1.018695 1.812452 0.180912 -1.523323 -0.141763 -0.053158 1.166828 1.082606 -1.485390 0.786959 -1.472732 0.056091 0.510827 1.037522 0.441336 -2.906669 -0.964255 0.403429 -0.163168 0.278169 1.439585 1.540269 -0.642103 1.338982 -1.906910 2.184243 -3.298662 -0.598331 -1.287466 -2.073490 -1.238089 3.048079 1.991120 1.808245 -0.090459 -1.136651 -0.214897 -3.381769 -4.003732 0.244497 0.121263 0.519091 0.823913 -0.529513 0.651949 -1.960229 0.726278 1.257323 -1.331959 -1.111364 -0.304083 1.699987 0.231227 -1.052748 -1.248734 -0.066652 0.608265 -0.000883 2.425780 -0.681587 -3.158712 -3.855635 -1.389648 2.346561 -1.316709 0.177801 -1.142256 -0.493035 -2.122576 0.221886 -1.951520 0.225836 0.086286 -1.690540 -3.199915 0.907743 -0.460634 -0.397464 0.801967 -2.286879 0.527056 1.556878 1.182339 0.353242 0.524051 0.213994 -2.417980 -2.086944 0.269035 -1.406788 2.428159 1.601780 -0.138964 -1.583427 -1.081668 -2.079743 1.719428 -1.592769 1.402963 -0.076714 -1.183683 1.220135 -2.067148 0.022356 -1.927584 0.798034 0.315553 -4.180452 3.403528 1.953231 -1.888073 -0.273565 -1.229991 1.408797 0.181959 1.887324 -1.739480 -1.300787 0.561796 -0.224290 -0.028640 -0.882261 0.884414 -0.653048 -0.397279 -2.530049 -0.988271 2.303401 1.263942 -0.391425 0.508473 1.352623 -0.489816 0.551781 2.578478 1.433556 -0.043883 -1.898237 -5.357556 0.893009 0.463966 -0.252301 0.204796 -1.627722 -0.982243 0.717163 -0.583007 2.272187 0.862259 -0.692128 2.315875 -2.716893 -2.406098 -1.817935 -0.434208 0.655652 -0.618026 0.424443 -1.131821 0.387850 -0.059486 0.827653 -0.320414 -1.825560 -0.337025 1.060048 2.692070 0.191874 -0.316716 2.688824 0.696777 -0.871269 -0.496643 -0.178377 -0.978498 0.792102 -2.406909 -0.529272 0.342318 1.144201 -1.918539 1.000006 -0.353394 0.612909 0.531651 -PE-benchmarks/edit-distance.cpp__main = 9.539017 -0.701712 -0.671009 9.227890 2.619151 -1.950008 0.042899 6.049387 0.616870 -9.574330 -6.246289 6.464277 -0.557689 1.532740 4.769402 1.452954 3.507358 3.339682 -15.336286 2.165837 -2.125962 0.206441 -3.160659 -6.241023 1.983266 3.736841 3.688436 3.928439 2.290953 6.265786 -7.208778 3.044211 3.956840 2.313554 5.353624 -0.808974 1.806969 -2.765346 -6.505420 -8.760368 13.279882 2.769273 1.638440 9.936720 0.863423 6.634739 1.091367 9.889904 5.596653 -1.458040 4.945015 -7.756018 -4.037977 1.795174 -11.024740 5.162236 5.941877 1.937332 -4.207045 5.013555 2.388298 4.893909 4.462726 -6.258070 11.058241 3.876510 6.969594 6.234369 9.198385 -6.642503 3.034687 -0.594104 9.108266 2.138467 0.325496 -10.264997 0.859779 -11.841278 2.181207 -12.087122 4.107466 -5.259438 9.830854 -6.745600 3.805684 3.738890 -1.302833 7.417971 -8.537418 3.697437 -7.162278 0.086621 -1.212458 9.152695 -1.402181 0.881892 2.229010 1.759339 -0.660229 4.314192 0.925145 -3.360928 1.434869 -14.298680 -6.481166 4.149740 -1.492459 -2.395415 -4.867689 2.976995 0.619754 4.260701 -8.985244 -8.077319 0.115564 0.449237 -2.803743 2.327604 -1.337119 -3.793535 -2.087410 7.884082 2.178565 -8.101670 5.653681 -4.770616 -5.306906 4.444952 9.604911 4.301272 -3.560332 -4.381490 1.172558 1.607947 -2.223613 0.318945 1.028170 -2.460378 5.255542 -4.147506 5.687801 -7.968192 -5.513874 -4.552798 -2.550094 -1.572687 12.433657 0.253132 6.621469 8.368407 -1.512883 -1.115182 -7.122774 -11.491562 5.317811 3.846317 0.832480 3.101047 0.178680 1.871539 -5.156268 -6.274758 5.816951 -8.155045 -10.209771 -6.197596 2.267595 -0.953899 -3.175928 -7.612756 8.155797 7.872445 -2.940023 4.394294 -1.592539 -9.639054 -6.413654 -3.815923 7.240853 -2.644349 0.614465 1.291206 1.842652 -5.700486 0.538453 -8.826649 2.643051 1.189257 -8.334717 -9.160679 1.866555 -1.131209 2.562110 2.358490 -7.182384 5.717745 1.867532 10.490264 -4.600249 5.849639 5.156579 -10.676335 -12.620863 -4.424919 0.731569 7.931011 1.021151 1.853346 -5.650239 -4.061172 -1.968702 7.741879 -11.050059 4.387703 -1.512195 -0.955116 2.518563 -7.081651 -3.055244 -6.581858 3.360898 3.100489 -12.223730 8.968170 4.829290 -9.063880 -3.231648 -12.483314 7.542179 0.672551 14.968468 -6.387614 -2.711719 2.952492 4.799883 -2.226038 -8.847719 4.566248 2.529333 -4.753888 -7.978076 -6.607049 4.852214 3.772697 1.146557 2.055795 6.694813 3.098227 -1.349400 13.316518 1.768372 0.020400 -6.223625 -16.681688 1.170436 14.375794 1.987780 3.172435 -10.251645 -5.273233 -0.370928 -0.368317 6.447811 6.217274 5.617805 6.813410 -7.084234 -6.244135 -4.039826 2.874437 0.640486 -3.913706 1.846813 -5.915925 -0.726472 -1.004253 2.880056 -3.616286 -0.550778 -8.599163 -1.766056 5.541184 -0.614047 -0.058903 9.741767 5.977626 -4.816656 1.348458 -2.616787 -2.622715 1.589791 -5.591474 -2.075100 0.044678 0.466928 -7.645205 4.079509 2.263038 1.758571 -1.111195 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 18.478111 -1.823714 -3.179108 19.464921 3.974793 -0.833717 0.474370 8.627487 0.086234 -21.941400 -13.071987 15.132374 0.212973 5.904289 6.796631 5.433245 6.471835 5.940980 -31.471076 1.908883 -2.552248 -0.716314 -3.435857 -9.808862 3.593338 5.262733 12.441388 7.503569 5.111333 14.767366 -13.098505 8.696275 10.088893 3.799270 8.432814 0.382162 2.322692 -4.860471 -15.775040 -17.322846 25.075205 3.728242 3.794295 18.191652 -1.952683 14.744207 5.764184 20.842123 13.853726 -4.061635 10.628138 -11.429421 -9.183602 1.932030 -21.261243 7.399099 10.218432 4.677223 -6.602197 8.716676 5.837326 9.496746 8.623587 -9.864684 21.582299 6.796877 16.251659 12.770955 17.248536 -15.670369 6.571544 -0.284994 13.978428 4.705486 3.827776 -22.581777 -1.064080 -16.153587 3.392682 -24.677993 5.016953 -9.147506 20.083727 -13.425942 3.238438 3.693346 -2.932927 16.700801 -15.158461 9.076860 -15.003413 -0.139105 -1.630472 18.544999 -1.421100 1.899544 2.960370 2.585205 -1.590916 7.710733 3.229226 -9.422868 4.382413 -25.085244 -12.043232 4.406360 -1.057518 -0.321979 -11.862273 6.081925 -4.802501 9.418890 -20.268448 -15.030006 1.086541 3.522151 0.889290 6.250949 -2.976734 -6.571862 -1.442614 15.743118 6.729648 -15.690600 11.959662 -7.633233 -8.747825 7.875786 16.796979 9.001465 -10.679918 -10.597013 3.532007 2.361818 -1.648481 3.042625 5.686485 -2.722671 10.371279 -8.471815 11.679263 -17.749879 -11.946229 -7.026543 -6.889465 -5.787975 22.188720 3.094763 14.387831 12.781401 -3.623335 -1.302019 -15.269443 -23.656421 7.830477 7.410809 -0.328543 9.369684 -0.597808 6.932114 -12.726881 -9.156307 12.619108 -13.813886 -20.522145 -10.766701 2.692332 -0.302461 -5.702095 -12.503096 13.216413 9.077424 -3.358355 14.236110 -2.463959 -24.849426 -17.138499 -8.281126 16.065740 -7.519132 -0.162358 0.019450 1.252617 -12.734869 -0.727334 -17.440508 2.539832 4.309557 -17.097148 -19.640874 5.879011 -2.309450 2.831939 6.948709 -15.925814 9.275406 6.056738 19.145178 -6.335293 10.280315 7.625508 -19.961791 -22.902220 -5.622049 -2.459712 16.540455 1.825182 1.975409 -13.047122 -9.357427 -5.018907 14.568312 -20.348276 10.776129 -3.483266 0.948484 4.528210 -14.866618 -1.721064 -10.798792 6.873378 6.851491 -29.538430 19.221016 11.459211 -16.291253 -4.701624 -19.731692 14.240037 0.658868 24.771165 -14.162741 -8.782075 5.336263 9.833267 -3.122287 -15.429969 8.231208 3.093437 -11.828697 -15.421424 -12.346935 10.141877 7.091078 1.629018 2.498161 14.716511 3.260318 -1.315239 25.294378 4.027321 0.439546 -11.254007 -37.054035 2.897883 25.066755 1.476939 7.292734 -20.161252 -8.612238 2.662988 -5.494461 13.594059 7.262281 7.249074 14.718287 -15.360818 -13.056774 -11.064532 2.294115 1.941221 -4.301848 3.079618 -11.156674 -0.389300 -1.548250 3.964915 -9.030934 -2.934810 -9.694657 -0.951789 14.303416 -2.413433 2.549060 19.947510 11.316964 -7.720013 0.852744 -4.063003 -6.993120 3.460335 -14.599999 -3.290223 3.468467 2.927998 -15.658334 5.219075 2.522073 2.599550 -3.132644 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.833192 -0.862920 -0.247018 1.099988 0.326314 -0.115255 0.069136 0.194005 0.308903 -1.667120 -0.717162 0.608994 0.019989 -0.063177 0.340994 0.411760 0.723772 0.154664 -1.629851 0.371329 0.159523 -0.170242 -0.462254 0.115403 0.070961 -0.685215 0.479941 0.504698 0.196073 0.978181 -0.702054 0.509501 0.860881 -0.142196 0.842980 0.864674 0.151436 -0.217311 -0.295453 -0.036159 1.849767 0.347551 0.003988 0.550555 0.436260 1.255902 0.058719 1.766925 1.159673 -0.484358 1.012194 -0.506872 -0.400584 0.029745 -1.514948 0.416743 0.744147 0.266544 -1.034790 0.512551 -0.336585 0.363218 0.379816 0.090194 1.465315 0.308798 0.875544 0.819339 1.190521 -0.702057 0.024427 0.404939 0.843817 0.470670 0.676685 -0.811894 -0.423087 -1.412188 0.056065 -0.711227 0.138579 -0.367135 1.118787 -0.985700 -0.010212 0.555802 -0.155181 1.091049 -0.630329 0.049213 -1.333455 0.030888 0.345870 1.159596 0.019511 0.128667 0.031462 0.441041 -0.214266 0.592628 0.271766 -1.241178 -0.724761 -2.129314 -1.143386 -0.692972 0.101740 -0.059586 -1.371198 0.151000 0.384324 0.615033 -1.410884 0.027550 0.270541 0.157050 0.679117 0.167476 -0.425069 -0.337868 0.057776 0.656999 0.439207 -0.456520 0.179753 -1.055805 0.435615 0.402227 0.571282 -0.040808 -0.528362 -0.212097 0.313012 0.461418 -0.259757 0.187909 0.386806 -0.829427 0.700624 -0.496198 0.931800 -1.252595 -0.482781 -0.914290 -0.503199 -0.423919 2.152438 0.642324 1.229693 0.415159 -0.734534 -0.075400 -1.438692 -1.940763 0.078535 -0.299598 0.197892 0.345295 -0.161260 0.349284 -0.446000 -0.120305 0.157427 -0.831873 -0.551134 -0.312056 -0.323588 -0.074552 -0.297089 -0.760258 0.080181 0.765624 -0.101312 0.813399 -0.498107 -1.741731 -1.170132 -0.738179 0.907996 -0.543212 0.397435 -0.085659 -0.193534 -1.065986 0.263628 -0.948974 -0.035870 -0.543798 -0.772699 -1.240273 0.285982 -0.412926 0.304522 0.202822 -1.061968 0.435204 0.079383 0.811979 0.192010 0.345495 -0.061791 -1.510843 -1.197308 -0.101679 -0.368908 1.514608 0.345690 -0.122940 -0.304265 -0.570964 -0.904168 0.809872 -1.559869 0.459899 0.463044 -0.960223 0.655821 -0.721910 -0.338606 -0.793130 0.628739 0.315781 -1.322696 1.506061 1.103814 -1.155655 -0.258161 -0.720509 0.595023 0.318711 1.268630 -0.553531 -0.202211 0.299531 0.245439 -0.065786 -0.467252 0.583377 -0.085612 0.193746 -1.308232 -0.743383 0.786807 0.781054 -0.008155 -0.070959 0.353989 0.163345 -0.053923 1.390438 0.336691 0.399213 -0.869650 -2.453333 0.447851 0.900214 -0.039593 0.625640 -1.093892 -0.365526 -0.107905 -0.232997 1.120432 0.448409 0.346661 1.069626 -1.182836 -1.141062 -0.684075 -0.312991 0.044518 -0.352570 0.667390 -0.717256 -0.013747 -0.445144 0.500703 -0.385495 -0.228416 -0.466027 0.421738 0.565327 0.403159 -0.119038 1.080152 0.286727 -0.621025 -0.178190 0.053223 -0.251890 0.487595 -0.839770 -0.462194 -0.191887 0.358323 -0.742553 0.435646 -0.178655 0.582262 0.037314 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/finite-automata-algorithm.cpp__main = 1.052627 -1.015417 -0.345901 1.756328 0.385668 0.187325 0.263617 0.022845 0.268224 -2.494316 -0.938918 1.096841 0.153900 0.107590 0.236096 0.610550 0.807795 0.142072 -2.089136 0.104717 0.277786 -0.298030 -0.325358 0.144298 0.007505 -0.987112 1.067100 0.719641 0.138357 1.393299 -0.597180 1.012280 1.257701 0.006582 0.810468 1.096073 0.005710 -0.210390 -0.723253 -0.318644 2.286188 0.367606 0.100051 0.725666 0.096658 1.682092 0.223512 2.296236 1.247889 -0.601217 1.351552 -0.349528 -0.579316 -0.067819 -1.956635 0.354632 0.816602 0.305434 -0.892211 0.658648 -0.576002 0.516888 0.508032 0.258195 2.027366 0.565696 1.423920 1.338510 1.471007 -1.224605 0.124918 0.563631 0.583962 0.429958 1.106982 -1.099177 -0.791110 -0.987094 -0.006244 -0.972359 -0.024251 -0.470442 1.768724 -1.075791 -0.482259 0.344605 0.085655 1.603006 -0.762330 0.394491 -1.782271 0.095869 0.349494 1.768838 0.137467 0.364786 -0.195573 0.379915 -0.239127 0.647995 0.441160 -1.505818 -0.469600 -2.416944 -1.287835 -1.000173 0.387864 0.170455 -1.854246 0.330264 -0.026386 0.871228 -2.093598 -0.158250 0.301120 0.515927 1.620951 0.348817 -0.488704 -0.383170 0.396234 0.784068 0.624823 -0.666387 0.505780 -1.227716 0.456712 0.378716 0.710714 0.050469 -1.411612 -0.433061 0.382468 0.287321 0.054849 0.514851 0.801236 -0.692014 0.813360 -0.810191 1.258596 -1.783690 -0.627197 -1.058181 -1.033477 -0.683177 2.632606 0.992183 1.744967 0.313808 -0.906555 -0.088633 -1.959539 -2.720943 -0.130631 -0.167508 0.119698 0.640171 -0.283300 0.558786 -1.028003 0.257619 0.617362 -0.886091 -0.796829 -0.243392 -0.313337 0.069859 -0.483911 -0.743863 0.104420 0.385410 -0.025360 1.627238 -0.363434 -2.698959 -2.092238 -0.987333 1.249408 -0.800368 0.221835 -0.423845 -0.397694 -1.373524 0.100699 -1.134288 0.106336 -0.220999 -1.158801 -1.769810 0.597567 -0.441034 0.129459 0.516391 -1.390663 0.412911 0.437043 0.764098 0.334245 0.512087 -0.166914 -1.580752 -1.381467 0.091623 -0.655920 1.764615 0.531559 -0.167145 -0.431907 -0.909422 -1.278226 0.954350 -1.607343 0.751913 0.471153 -1.007825 0.609782 -1.170095 -0.126020 -0.971822 0.661084 0.326783 -2.015412 1.908239 1.290393 -1.350892 -0.442267 -0.768135 0.781131 0.152360 1.436016 -0.861877 -0.485515 0.372732 0.424047 -0.066729 -0.397889 0.556460 -0.161556 -0.149379 -1.710525 -1.009771 1.167048 0.930450 -0.207135 -0.137177 0.738322 -0.132193 0.150457 1.716038 0.678323 0.348339 -1.101493 -3.456672 0.505260 0.499015 -0.335881 0.516140 -1.435304 -0.516384 0.319290 -0.530368 1.453910 0.202961 0.019016 1.455715 -1.593053 -1.431805 -1.048735 -0.593046 0.123309 -0.340675 0.518314 -0.828124 0.102051 -0.390676 0.465975 -0.554144 -0.642073 -0.075988 0.604210 1.148812 0.205670 0.026294 1.489972 0.558157 -0.480750 -0.396269 0.146141 -0.563644 0.699583 -1.682112 -0.456296 0.028461 0.553382 -0.973661 0.404942 -0.173184 0.543871 0.099162 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 3.203280 -2.180174 -2.169827 6.181755 0.266869 1.373194 0.726575 -0.164172 0.756328 -8.558359 -3.211467 4.812206 1.066947 1.210502 0.234617 2.532886 2.021959 0.811239 -7.427870 -0.347478 1.485899 -0.772656 -0.263580 0.358759 0.086039 -2.810893 4.101950 1.283512 0.738615 4.908616 -1.529681 4.366997 4.416168 -0.049917 1.935683 3.031679 -1.399892 -0.513012 -2.988603 -2.084410 6.382293 1.536202 0.516525 2.202399 -1.398410 5.364261 0.930574 6.466723 3.324198 -2.262117 3.505200 0.214563 -2.094553 -0.022369 -5.444020 0.758062 1.720804 1.067814 -1.613993 1.710796 -1.670899 1.800353 1.748249 0.631912 6.497363 1.834801 5.073361 5.053040 3.904385 -4.056750 1.361615 0.876996 0.143194 0.524944 4.587409 -3.540690 -3.127558 -0.534865 -0.385873 -4.215209 -0.457467 -1.125241 6.672325 -3.742092 -1.748163 -0.278312 1.288307 5.898292 -2.199753 1.983301 -5.448157 0.056557 0.439054 5.853127 0.857906 1.337480 -1.403215 1.076819 -1.017241 0.968918 1.619622 -4.650973 -0.053248 -6.307487 -3.183557 -3.498754 1.935627 2.114767 -5.995595 1.457346 -1.635556 3.650764 -7.759844 -0.587158 0.640015 1.957015 6.284872 1.550561 -1.364726 -0.616246 1.248810 2.388274 2.109203 -2.626819 2.114106 -2.739395 0.467650 0.938112 2.203935 0.977382 -6.127995 -1.859157 1.282151 0.112351 1.005130 3.084003 3.894552 -1.141253 2.550306 -2.950936 3.836144 -5.632124 -2.156087 -2.579597 -3.774801 -2.825602 7.036135 3.871655 5.177365 -0.081593 -2.281058 -0.273566 -6.793756 -8.118628 -0.598655 0.096436 -0.123433 2.853818 -0.977097 2.290072 -4.320159 2.219802 2.585459 -2.459304 -2.885876 -0.203326 0.117251 0.673649 -1.627462 -1.756661 -0.294528 -0.770316 -0.036321 6.398575 -0.504906 -8.833719 -8.362272 -2.664073 4.407559 -2.925355 0.456882 -2.344464 -1.392307 -3.455569 -0.738731 -3.772302 0.292344 0.430006 -3.200935 -6.016243 2.231685 -0.984623 -0.476663 2.025159 -4.470431 1.129255 2.850149 1.881274 0.946367 1.441177 -0.331881 -4.008898 -3.256013 1.250096 -3.428855 4.752366 2.198652 -1.024407 -2.194925 -3.044098 -4.105497 2.784141 -4.023114 3.194605 0.498661 -2.142867 1.283130 -4.313883 0.383985 -2.974836 1.676742 0.776990 -7.694788 5.572445 3.506492 -3.504324 -0.332634 -1.709045 2.906296 -0.056796 3.194503 -3.057409 -2.479452 0.712074 0.787054 0.090692 -0.898114 1.281716 -1.220835 -1.829375 -4.718394 -2.216639 4.327617 1.993970 -0.741077 -0.335181 3.111363 -1.731202 1.642878 4.574600 3.023287 0.547159 -3.702439 -11.198089 1.557387 0.262615 -1.304086 0.485572 -4.012628 -1.297189 1.903068 -2.402634 4.218721 -0.562831 -1.071283 4.524927 -5.854185 -4.375761 -3.928671 -1.912093 0.526675 -0.126544 0.649119 -2.023774 0.794573 -0.449430 1.256263 -1.916785 -3.028781 1.207348 2.625055 4.836976 0.021972 0.615851 4.816457 2.216343 -1.059824 -1.361250 0.251128 -2.815149 1.154288 -6.594677 -0.896919 1.465799 1.971470 -3.613337 0.537454 -0.604719 0.976461 -0.016562 -PE-benchmarks/snake-ladder.cpp__main = 3.204869 -3.225155 -0.498330 4.938088 0.868467 0.784545 1.072516 0.978477 1.463172 -7.115777 -3.003342 3.406040 0.324418 0.524451 0.647148 1.292076 2.434495 0.809462 -7.929609 -0.098742 0.815187 -0.332711 -0.359623 -0.391751 0.143236 -2.256768 3.314758 2.653698 0.636507 4.283579 -1.643676 2.316511 3.789402 0.270882 2.143935 3.144836 0.033949 -0.629692 -2.588219 -1.474484 6.763663 1.680054 -0.468046 2.775681 0.145354 5.220314 1.603193 5.809725 4.611662 -1.651753 3.408532 -1.778220 -2.335205 -1.004934 -5.684513 0.771469 2.979080 1.434569 -2.461009 2.410585 -0.837719 1.373741 1.622286 0.070440 5.633335 1.498368 4.335649 3.662293 4.237156 -4.001233 0.439336 0.936914 2.061580 1.486184 2.576569 -4.529414 -2.471434 -4.790049 0.220231 -4.448042 -0.315515 -1.608304 4.273423 -3.346418 -0.604299 0.986211 -0.494194 4.318160 -2.266558 0.617033 -5.287779 -0.004955 1.512277 5.418240 0.266557 0.637359 0.319447 1.335173 -0.246313 1.869878 2.267332 -4.452539 -0.981830 -7.604884 -2.923226 -2.763972 0.998581 0.589068 -4.224334 0.893829 -0.171683 1.621467 -6.049303 -1.139772 1.241183 1.426793 3.595150 -0.350950 -0.683102 -0.819148 0.850153 2.440715 2.267333 -3.316875 1.517080 -2.403461 0.800536 1.419856 2.107121 0.711193 -3.418043 -1.813978 1.347253 1.438109 0.226406 1.392135 1.721690 -1.599490 2.390554 -2.980554 4.198906 -5.026077 -1.565955 -2.394724 -1.712297 -2.275679 7.711413 2.145193 4.234955 1.117638 -2.278967 0.109369 -4.887176 -8.138158 0.573559 0.430198 0.556730 1.659873 -0.962184 1.633646 -3.251118 0.361327 1.377503 -2.402914 -2.566904 -0.567983 -1.526350 0.389843 -1.529679 -1.832872 1.074220 1.846112 0.160430 4.436424 -1.365648 -8.058719 -5.303517 -2.744429 4.003557 -2.442943 0.139822 -0.980459 -1.205346 -3.903727 0.448619 -3.620084 0.687759 -0.299987 -4.110417 -5.524238 2.027688 -1.438663 1.651247 2.197213 -4.172403 1.108292 0.655831 3.471320 0.446874 1.545723 0.271106 -5.021681 -4.078860 -0.261167 -1.956670 5.863910 0.564840 -0.282925 -1.869016 -2.220169 -3.016483 3.173008 -4.199989 2.483656 0.411880 -2.770180 1.854941 -2.973798 -0.008610 -3.324580 2.056646 1.555965 -5.536861 5.814829 4.041139 -3.805778 -1.345137 -2.189755 1.950872 0.534467 4.255906 -3.241493 -2.658087 1.242944 0.833369 -0.126930 -1.893934 1.540873 0.082089 -0.906487 -5.282145 -2.826484 3.449492 2.404664 -0.451152 0.445871 2.878629 0.016639 -0.469952 5.521449 1.702440 1.143872 -3.347944 -10.243219 1.780933 4.200491 -0.257409 1.575865 -4.662938 -1.752786 1.057110 -0.810212 4.037396 2.458568 -0.195990 4.390283 -4.292713 -4.104266 -3.490290 -1.753657 0.896425 -0.799889 1.409668 -2.150776 0.587395 -1.062968 1.019733 -1.378689 -1.641051 -0.246171 1.843806 3.500222 0.460432 -0.000149 4.683157 1.176312 -1.837264 -0.861811 -0.134111 -2.169964 2.157117 -4.025581 -0.946155 0.343743 1.874287 -3.034910 0.984867 -0.263170 1.449947 -0.057678 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 5.688026 -0.520598 -3.963833 10.198805 1.210985 0.929657 1.638884 1.556176 0.632599 -12.737879 -5.625048 9.645061 1.474572 1.065074 -0.124386 3.461315 3.405332 3.986681 -12.464949 -0.412038 1.221840 -0.284086 -1.766610 -2.786772 -0.102758 -1.886137 6.305563 3.464045 1.705212 8.297482 -2.741316 5.302310 6.714642 1.092108 3.834918 4.351466 -0.409308 -0.887367 -5.911490 -5.190406 11.602450 3.482720 0.683417 5.960776 -1.253266 9.501787 3.293939 7.626296 4.403735 -2.534851 2.696396 0.768967 -4.318567 -1.446100 -9.839444 1.727401 2.709005 2.189925 -3.107618 4.314279 -0.751058 2.432217 3.616887 -1.216280 10.285765 2.818353 6.903582 7.889207 7.838057 -6.932635 1.763802 0.066192 3.051519 0.963359 5.798611 -6.919682 -5.590623 -3.246394 -0.841014 -11.230360 0.404807 -1.685140 13.201774 -7.210807 -0.820539 0.149167 1.867036 8.198903 -4.923021 0.725105 -9.455472 -0.659293 -1.172042 10.364474 2.335685 1.841294 -1.468176 2.004012 -0.407246 1.951808 2.245384 -7.587096 1.190954 -12.461398 -4.384283 -4.322256 0.928019 1.870168 -6.355095 0.391138 -1.835352 8.414958 -12.851586 -3.254871 2.353904 1.314617 6.075410 0.500877 -2.213780 0.850124 0.790800 3.481175 3.956778 -5.901837 2.237602 -0.401547 -1.715312 0.485514 4.336627 3.248126 -9.584794 -3.760869 2.067391 -0.199115 1.551061 2.996373 3.396607 -2.613297 4.302233 -5.569228 6.986533 -8.459072 -3.071969 -2.670118 -6.287348 -4.707519 10.305431 5.291846 8.083882 0.242207 -1.659834 -0.786335 -9.766970 -14.023807 3.046580 1.116668 -0.439940 3.463243 -1.410871 2.556623 -7.759583 1.248178 6.825205 -4.520735 -5.971381 -0.668814 3.924050 0.677495 -3.121435 -4.146014 0.671477 0.845530 2.506704 7.971871 -2.837185 -15.224922 -10.911874 -3.889369 7.770593 -4.679929 0.016567 -2.871764 -2.656115 -4.430329 -1.197474 -7.550675 2.142451 0.674628 -5.553821 -10.247246 3.885435 -1.759489 -0.933584 3.601881 -7.105391 2.811102 5.453224 3.538012 -1.155855 2.245297 1.373102 -7.056255 -5.687981 1.390491 -4.211432 8.173248 4.376986 0.735429 -6.843388 -3.379374 -6.313372 5.442153 -6.512341 5.450813 -0.242798 -2.324651 3.369344 -7.233482 0.807351 -4.901980 3.413816 1.794994 -14.694521 8.672157 7.147481 -6.214759 -0.972608 -3.098849 4.058935 0.582323 7.291024 -7.207501 -6.051418 2.303988 0.385244 -0.235045 -3.051348 2.017754 -0.791449 -2.774155 -9.193226 -3.421468 7.051980 3.569193 -0.950155 0.546346 4.939413 -2.297744 1.451312 9.562770 4.715989 1.748460 -6.689574 -17.964623 2.435812 3.553664 -0.510349 1.504442 -5.083449 -2.528848 2.591300 -5.316324 7.006165 -0.143288 -3.914160 7.754571 -9.004471 -7.486226 -6.160659 -1.850293 2.775277 -1.714890 2.851445 -3.855975 1.201437 -1.510753 1.864466 -3.061297 -4.119412 1.755112 3.810814 7.837639 0.138539 0.265883 9.040885 2.187191 -2.627869 -0.790164 -1.171488 -3.788662 2.098722 -11.756735 -1.384855 1.668751 3.699548 -6.253242 2.078310 -0.660733 1.712634 1.348438 -PE-benchmarks/m-coloring-problem.cpp__main = 0.729349 -0.455912 0.130242 1.188359 0.278009 0.044349 0.467706 0.452078 0.275297 -2.024652 -0.941601 0.797642 0.031557 0.019862 0.118125 0.134985 0.595974 0.688287 -2.035716 -0.028163 0.434370 0.217335 0.084471 -0.356752 0.012575 -0.542513 0.339409 0.735958 0.290189 1.352492 -0.510343 0.324611 1.124285 0.174345 0.381103 1.152390 0.415314 -0.126809 -0.431010 -0.475214 1.844469 0.453800 -0.140815 0.856311 0.147350 1.495670 0.354068 1.155759 0.777143 -0.586947 0.540701 -0.764376 -0.723056 -0.391213 -1.362028 0.381550 0.959585 0.839863 -0.713563 0.845818 -0.157745 0.296035 0.456798 -0.362077 1.150231 0.597188 0.631439 0.967951 1.408863 -1.241301 -0.014001 0.311053 0.565589 0.336802 0.563810 -0.900192 -0.522695 -1.708013 -0.085148 -1.632597 -0.183723 -0.283184 1.581950 -1.084998 0.170924 0.719750 -0.107756 1.057678 -0.521666 -0.074512 -1.420726 0.043195 0.276017 1.504335 0.244746 0.056491 0.013478 0.371390 0.145140 0.643141 0.419292 -1.112086 -0.685940 -2.388968 -0.714900 -0.826419 0.117136 0.144307 -1.152776 -0.091945 0.557618 0.907310 -1.870068 -0.297442 0.556912 0.522766 0.200241 -0.319636 -0.410417 -0.008976 0.046135 0.311190 0.597199 -1.076552 0.150372 -0.324635 -0.074911 0.165736 0.484915 0.102191 -0.958575 -0.668254 0.240454 0.235098 0.031867 0.236842 0.315161 -0.471608 0.642186 -1.001807 1.168099 -1.302153 -0.142210 -0.399385 -0.689032 -0.649303 2.022742 0.476222 0.950305 0.174741 -0.596476 -0.211919 -1.127882 -2.146443 0.525441 0.131164 0.534649 0.396759 -0.287782 0.275580 -0.880721 -0.080226 0.227864 -0.622315 -0.478077 0.027482 0.259517 -0.131534 -0.397472 -0.858219 0.354551 0.802048 0.024552 0.830344 -0.663593 -1.416451 -1.312384 -0.910524 1.191623 -0.642054 -0.005885 -0.256997 -0.310480 -0.875563 0.279135 -0.957786 0.275686 -0.102752 -1.118338 -1.660068 0.554838 -0.479993 0.072248 0.764213 -1.118413 0.276497 0.164159 0.675777 0.057901 0.224174 0.219523 -1.358306 -1.091546 -0.252015 -0.439182 1.253246 0.476690 0.157255 -0.854297 -0.585898 -0.785249 1.043274 -1.021711 0.609672 -0.062049 -0.633313 0.844840 -0.753505 -0.001773 -1.075886 0.659517 0.628817 -1.674800 1.582023 1.092305 -0.991196 -0.435257 -0.624651 0.304222 0.428489 1.329673 -1.009124 -0.837492 0.610086 -0.168773 -0.041050 -0.688482 0.459870 -0.016024 0.152943 -1.396317 -0.696839 0.817037 0.802609 -0.170278 0.430953 0.915899 0.229697 -0.039724 1.551535 0.532344 0.186920 -0.994901 -2.434510 0.771948 1.036119 0.229902 0.405248 -1.111467 -0.513167 0.491638 -0.041503 1.136503 0.824479 -0.126645 1.282868 -1.162116 -1.199761 -0.595811 -0.341758 0.560193 -0.461305 0.519557 -0.605522 0.231999 -0.228837 0.209316 -0.090430 -0.457736 -0.421373 0.447360 1.109969 0.315260 -0.071021 1.444337 0.096806 -0.731673 0.033842 -0.189568 -0.180665 0.315444 -0.891937 -0.209152 0.032505 0.585630 -0.841405 0.673998 -0.180219 0.103853 0.272797 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.724609 -0.521091 -0.227020 1.593209 0.196415 0.417094 0.235184 0.098081 0.085056 -2.375449 -1.264384 1.002978 0.121308 0.243292 0.214291 0.461710 0.626367 0.325260 -2.657410 -0.149469 0.511286 -0.171040 0.196172 -0.058692 0.089482 -0.795539 0.947219 0.670617 0.140426 1.332858 -0.477559 1.026456 1.209817 0.290405 0.518581 0.831327 -0.662054 -0.308535 -0.629218 -0.583267 1.846388 0.429980 -0.039899 0.636064 -0.156960 1.508382 0.434380 1.069171 1.116687 -0.518086 0.717297 -0.178100 -0.680004 -0.117300 -1.577326 0.093484 0.570371 0.348671 -0.375731 0.518529 -0.570689 0.433257 0.406633 -0.326171 1.844598 0.291728 1.549522 1.155902 1.050053 -1.133735 0.275841 0.213755 0.266837 0.278606 0.681109 -0.871969 -0.731668 -0.983546 -0.199039 -1.867156 -0.112385 -0.317749 1.805612 -0.833875 -0.495566 -0.052944 0.049074 1.543461 -0.583240 0.277142 -1.523979 0.115142 0.133992 1.300194 0.379358 0.172444 -0.141409 0.287246 -0.119634 0.413601 0.384468 -1.163132 -0.185819 -2.403251 -0.731274 -0.887540 0.587683 0.341662 -1.471112 0.520153 -0.056156 1.031443 -1.903960 -0.388666 0.303776 0.529351 0.692262 -0.183782 -0.519815 -0.359551 0.262020 0.894468 0.776945 -0.914649 0.535471 -0.747638 0.150667 0.152737 0.697146 0.272899 -1.107909 -0.777101 0.382493 0.110968 0.268778 0.687665 0.868961 0.051375 0.689870 -0.807116 1.206296 -1.547281 -0.133321 -0.737252 -0.627268 -0.729930 1.952394 1.351062 1.019404 0.207765 -0.343016 0.061510 -1.642820 -2.111296 0.028829 0.136931 0.183197 0.470691 -0.274074 0.659149 -1.083083 0.380852 0.567310 -0.654832 -0.713285 -0.150085 -0.018157 0.258864 -0.483212 -0.590144 0.046918 0.215914 -0.253020 1.433410 -0.292047 -2.106039 -1.903383 -0.879817 1.196901 -0.863761 -0.033032 -0.647561 -0.232141 -0.874065 0.104119 -0.976107 -0.093413 0.180787 -1.164549 -1.698605 0.412938 -0.298066 -0.077055 0.611403 -1.238703 0.251317 0.890342 0.763204 0.316280 0.393944 -0.110767 -1.000905 -0.903056 0.033252 -0.844093 1.287766 0.646413 -0.304325 -1.173924 -0.715676 -1.013144 1.033707 -0.629692 0.826927 -0.171742 -0.800401 0.374845 -0.977470 0.252254 -0.659825 0.420726 0.218088 -2.807779 1.550754 1.197445 -1.024983 -0.279441 -0.785849 0.685002 -0.006896 1.002593 -0.963203 -0.559913 0.092674 0.127903 0.018249 -0.365156 0.482897 -0.159483 -0.598879 -1.441279 -0.804303 1.206711 0.565589 -0.151103 0.176772 0.916903 0.133725 0.535705 1.327702 0.650609 0.019001 -0.964754 -3.208969 0.398171 1.067426 -0.141459 0.464842 -0.992317 -0.618049 0.257590 -0.707588 1.227209 0.304626 -0.435237 1.251154 -1.030012 -1.069701 -1.182882 -0.477381 0.192363 -0.205726 0.460549 -0.568636 0.068046 -0.174796 0.246367 -0.348760 -0.821624 -0.031092 0.634604 1.330365 0.305650 0.155990 1.295818 0.524245 -0.544157 -0.417774 -0.043383 -0.817346 0.544331 -1.498454 -0.302955 0.308418 0.460176 -0.882921 0.119080 -0.042551 0.438009 -0.002810 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 1.729634 -1.429656 -0.934378 3.966496 0.538059 0.613071 0.463811 -0.196763 0.786911 -4.775378 -1.753679 3.368601 0.371843 0.478839 -0.153651 0.946627 1.496839 0.762127 -4.900933 -0.113981 0.607470 -0.293201 -0.257018 -0.364463 0.085451 -1.576275 3.625534 1.454883 0.575485 2.958561 -1.091266 1.978561 2.536706 0.201117 1.540992 2.054337 -0.526726 -0.163623 -2.391630 -1.452044 4.099354 1.168920 0.099939 1.875502 -0.226176 3.438922 1.717284 2.701985 3.345370 -1.213911 1.063608 1.504560 -1.249698 -0.926173 -3.637792 0.446721 1.074548 0.520775 -1.401894 1.128567 -0.459337 0.874102 1.110469 0.568596 3.584628 0.422861 2.869450 2.730406 2.680891 -2.638234 0.462870 0.552338 1.183884 0.950329 3.023414 -2.086004 -2.950226 -0.572517 -0.617332 -2.825808 -0.087571 -0.544592 3.109374 -2.214776 -0.800651 -0.317067 0.325826 3.173082 -1.301713 0.285609 -3.348529 0.030874 0.010482 3.792593 0.898288 0.714566 -0.203626 0.806057 -0.383038 1.025542 1.311274 -3.336255 1.123219 -4.862364 -1.634683 -2.530869 1.002094 0.796818 -2.830707 0.808002 -1.191754 2.484690 -4.275156 -0.681197 0.588845 0.696716 2.694640 -1.469761 0.068140 -0.130634 0.613116 1.326809 1.525219 -2.079562 0.791939 -0.345071 0.234928 0.475635 1.373998 0.795458 -2.222698 -1.337503 0.726445 0.963008 0.478021 1.336740 1.703481 -1.017373 1.498505 -1.845942 2.696387 -2.878265 -0.951885 -1.381626 -1.346294 -1.853649 3.344329 1.374546 3.109949 -0.378074 -0.829127 -0.003431 -3.669928 -5.272294 0.527087 0.286824 -0.493270 1.599210 -0.623517 1.393695 -2.792961 0.622031 1.950632 -1.480596 -1.776487 0.055894 -0.566131 0.349146 -0.866057 -0.989947 0.012231 -0.084356 0.856876 3.521253 -0.844890 -6.086232 -4.248889 -1.614574 2.732307 -1.939284 -0.129095 -1.088815 -1.352116 -1.657237 -0.048459 -2.512692 0.240648 -0.234831 -1.771703 -3.703242 1.093630 -0.925614 0.609604 1.390663 -3.045456 0.793664 1.146385 1.138328 0.301507 0.852947 0.135605 -2.676875 -1.657240 0.754786 -1.682305 2.958958 0.714354 -0.358095 -1.784157 -1.668054 -2.162008 1.492754 -2.355081 1.982881 0.428623 -1.689949 1.054698 -2.174723 0.378391 -1.483735 1.132938 0.810314 -4.094541 3.695779 2.755584 -2.325742 -0.346578 -0.435357 1.343457 0.027983 2.179836 -2.728588 -2.075265 0.631627 0.201692 0.071801 -0.674418 0.771549 -0.266734 -0.957155 -3.163068 -1.565695 2.368144 1.260203 -0.323483 -0.262191 1.768825 -1.093676 0.511660 3.227072 1.722213 1.378313 -2.720970 -6.519132 1.128078 0.328963 -0.276729 0.794009 -2.073253 -1.041731 1.106532 -1.247336 2.654517 -0.062818 -1.162559 2.896902 -3.383461 -2.694362 -2.534240 -1.757964 0.710240 -0.240842 1.092522 -1.629943 0.364482 -1.040449 0.689541 -1.677111 -0.938213 1.604407 1.816825 2.388034 0.385519 0.287857 3.038665 1.017697 -1.195297 -0.647493 -0.070346 -2.021633 0.760161 -3.790153 -0.526391 0.645460 1.425865 -2.041331 0.399734 -0.477362 1.165580 -0.128536 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 1.165896 -0.204917 -4.209558 9.580539 -1.164942 1.587070 0.978000 -0.974987 -0.335784 -12.272265 -4.039734 4.178408 2.608529 2.436257 0.150355 2.940438 0.588971 2.668847 -9.726064 -1.276106 4.134153 1.602525 1.133260 -0.001573 -0.362932 -2.193921 4.562192 -0.001939 1.138243 7.233912 -0.607057 7.542944 6.422411 -1.530122 -0.366957 3.586133 -1.501855 1.261086 -3.820159 -1.323080 6.900000 0.300576 1.163697 2.819778 -4.117633 6.509917 1.411017 4.256041 -0.542096 -3.761024 2.913393 4.511336 -0.874262 -1.919405 -4.756094 1.199652 4.554769 5.476647 -0.613115 2.001790 -1.334020 0.628285 2.858635 1.023227 7.450853 5.053654 6.022288 8.727804 5.619938 -4.857957 2.562006 -0.504882 -3.722465 -2.314067 7.961931 -4.771996 -4.534511 -0.168238 -3.002412 -8.556526 -1.252067 0.172604 10.379452 -5.166336 -2.075919 -1.355169 3.748519 7.821004 -1.921008 3.049849 -5.839290 -1.429501 -1.441083 8.665544 1.394166 1.107537 -3.505096 1.851324 -0.894200 -0.005420 2.018644 -5.124110 1.677603 -6.323130 -4.808002 -3.950065 2.598770 5.580582 -8.695553 0.302473 -4.718762 3.410637 -13.641007 -0.854117 0.488506 4.695936 9.567382 0.254932 -5.103938 -0.031407 1.952772 1.001563 2.715012 -3.152450 3.552098 -2.881567 -2.044153 0.567223 1.257008 1.562998 -9.163288 -3.713820 -1.188942 -1.542219 2.485284 5.022535 6.871521 -0.584150 3.097263 -5.384054 5.084121 -8.292565 -3.476803 -1.217532 -7.496829 -3.916285 4.255170 3.563038 4.773484 -3.712760 -5.693296 -0.540927 -9.183250 -8.737357 -0.566103 1.136413 -0.211041 5.743005 -2.109011 2.823560 -6.073027 5.128089 6.230906 -1.518307 -3.110082 0.910350 3.441136 1.167411 -1.849058 -2.696516 -1.124681 -3.846859 1.324300 9.941527 0.062820 -7.176855 -14.384698 -2.007835 5.940857 -3.230839 -0.085256 -4.524049 -2.389907 -5.479301 -1.060611 -5.494602 -1.118489 1.690895 -3.473724 -8.059462 3.845398 -0.617314 -3.602102 2.910177 -5.620881 0.633807 5.492598 2.499630 1.503508 -0.356823 -0.383052 -4.591655 -3.788760 2.556012 -5.648373 3.895358 3.469800 -0.163775 -3.672333 -3.381847 -4.922027 2.830157 -1.079865 4.044711 0.466523 -0.046675 1.826170 -7.184119 1.242791 -5.064285 0.331187 0.950718 -10.227498 7.789484 1.730562 -2.301443 1.061450 0.408712 3.559657 -0.750993 0.658921 -4.095413 -5.019337 1.400639 0.623523 0.481107 -3.350476 0.354850 -3.389495 -2.866118 -4.641576 -1.271039 6.102544 2.052782 -1.603432 0.083691 4.408728 -5.961554 1.345801 4.700067 6.668531 -0.451838 -2.963261 -9.417103 2.205125 -6.586424 -1.768995 -3.423201 -3.930455 -0.773360 5.035551 -1.931925 4.796839 -0.556537 -3.725611 5.644975 -10.080814 -5.546330 -4.494956 -1.473229 2.205369 0.262786 -2.093275 -2.697317 2.475064 1.677503 0.697582 -1.754515 -6.641226 3.402602 3.191820 7.877130 -2.924839 1.474128 6.620884 2.775986 -0.882297 -1.105849 1.021068 -4.268675 -0.946181 -9.024373 -0.088560 3.337211 3.173219 -4.846090 1.028952 -3.789634 -0.916684 1.372607 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 2.938467 -2.015282 -22.705770 44.441360 -5.870703 9.969942 1.943493 -9.486348 -1.676224 -53.416608 -16.591357 22.080975 12.831494 13.494489 -0.829964 15.168331 2.050261 8.696117 -38.079401 -7.116476 16.381648 4.676945 4.398579 3.272112 -2.364593 -9.962976 28.478590 -1.931049 4.580641 29.568866 -0.209969 37.792312 27.333149 -8.463667 -2.571813 12.763133 -10.171400 5.577722 -21.677150 -6.584787 27.534648 -1.867740 7.875761 11.981758 -21.636594 26.624078 8.586254 17.923596 1.226357 -15.433742 13.575890 29.572990 -1.557376 -9.666212 -20.953849 3.420333 15.078703 19.515340 -0.464779 4.956939 -4.228336 1.832720 11.989211 8.181677 33.844759 19.807900 30.978316 40.063724 20.629210 -20.208343 11.872042 -1.572438 -19.417563 -8.727830 39.545935 -21.745385 -22.218889 12.056232 -15.336412 -32.615309 -5.035810 0.258696 44.450718 -19.842124 -14.978374 -13.278511 16.851640 35.132625 -6.425748 16.356254 -24.495019 -7.438583 -6.076061 34.092215 6.618334 4.992278 -17.172094 6.533401 -6.997084 -2.005546 9.785497 -23.113866 14.624056 -20.963314 -21.170864 -17.832840 13.865136 26.994775 -38.191115 3.701253 -31.481241 13.667858 -58.674600 -4.197707 -0.147327 19.880292 51.322355 1.342605 -21.720725 -1.426790 12.704376 5.770881 11.814874 -9.941457 17.922662 -11.758331 -7.462507 1.465791 4.627962 8.416269 -41.062747 -17.167217 -5.917525 -4.909879 13.106283 23.442315 34.047988 -0.579224 12.689318 -19.998079 20.825096 -36.219929 -18.445910 -5.651773 -32.034100 -17.867199 14.756341 16.383901 24.904114 -18.937463 -24.866891 -0.611505 -41.533041 -36.088790 -6.039302 4.695792 -6.633721 28.616029 -9.123073 15.527228 -26.916295 26.440056 31.694106 -4.926177 -14.986190 4.760250 8.882668 7.237171 -7.046382 -8.622265 -7.377649 -25.380741 8.246697 48.852299 3.807939 -38.077725 -66.235171 -6.056252 24.317500 -14.907894 -0.540442 -20.427742 -13.008295 -23.005871 -7.932327 -24.058377 -7.854933 8.573989 -14.509443 -33.268468 17.355634 -1.345586 -17.038767 12.315711 -24.624192 2.655479 26.204864 10.790014 7.822377 -1.524092 -4.905897 -17.586537 -13.584214 14.657928 -27.458555 17.219937 14.615540 -2.586283 -15.886812 -15.466814 -21.666587 8.648852 -3.784274 18.791171 4.497202 1.724451 3.242450 -33.611677 8.725516 -18.649953 -0.455158 2.600834 -49.298010 31.849041 6.567886 -7.981528 6.963331 6.455527 16.256193 -7.131273 -3.130518 -16.951232 -21.592885 3.933653 6.711348 2.811414 -13.175277 -0.545900 -15.076637 -17.553968 -19.008391 -5.404654 27.138048 6.072280 -6.892037 -4.363540 18.276203 -31.018022 6.004304 18.038682 31.113742 -0.493642 -11.169686 -41.207151 7.332833 -35.234515 -12.062486 -14.880153 -16.410420 -1.078912 22.969788 -14.669591 19.305522 -12.461475 -18.561375 23.353329 -45.174686 -22.251966 -21.828840 -9.344390 8.021685 5.523916 -9.665200 -11.593507 10.077678 6.509146 1.458600 -12.907478 -29.039865 23.822647 15.921438 34.485692 -14.947361 10.459287 26.218540 14.002434 -1.161421 -6.923698 6.681085 -23.337039 -4.214934 -46.573002 0.002844 17.570930 13.414522 -20.258556 -0.999574 -18.070782 -2.971226 3.131887 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 1.072672 -0.991420 0.098438 1.413440 0.270924 0.123113 0.487799 0.578790 0.392136 -2.482649 -1.156071 0.578440 0.060165 0.050147 0.325501 0.354335 0.792495 0.403751 -2.685017 0.023066 0.486224 0.054707 -0.035543 -0.117404 0.046882 -0.795406 0.262539 0.783918 0.200700 1.513708 -0.624551 0.547517 1.291342 0.043077 0.530723 1.231267 0.237225 -0.187106 -0.340871 -0.276862 2.259784 0.581420 -0.315840 0.796117 0.186844 1.740035 0.127149 2.100231 0.979959 -0.650890 1.206132 -1.306473 -0.840985 -0.158879 -1.693676 0.388103 1.456306 0.935007 -0.836715 0.971637 -0.585864 0.467248 0.503820 -0.227429 1.664057 0.836655 1.127958 1.127743 1.599987 -1.349827 0.087228 0.382682 0.636662 0.397062 0.538292 -1.342495 -0.478038 -2.430336 0.120865 -1.707908 -0.113898 -0.471061 1.815808 -1.217706 0.032704 0.840659 -0.145466 1.323447 -0.799998 0.167947 -1.702619 0.125642 0.447436 1.878494 0.012046 0.147992 0.031576 0.515803 0.094625 0.691132 0.552926 -1.278765 -1.113664 -2.846945 -1.089361 -0.861357 0.189728 0.159180 -1.602226 0.131252 0.770442 0.502528 -2.106162 -0.205226 0.514088 0.689355 0.804141 0.316455 -0.658424 -0.314519 0.084434 0.649676 0.755812 -1.100226 0.389559 -1.159623 0.235038 0.479852 0.618513 0.019974 -1.202615 -0.516327 0.320581 0.213502 -0.041836 0.407337 0.478476 -0.607472 0.846853 -1.126752 1.378179 -1.838745 -0.354249 -0.780897 -0.868943 -0.609660 2.889820 0.900721 1.137763 0.486268 -0.924701 -0.191159 -1.557856 -2.498586 0.171612 0.084071 0.668000 0.360231 -0.311303 0.336118 -0.904859 0.006542 0.054703 -0.799129 -0.557491 -0.187737 0.142889 -0.072089 -0.525283 -0.966225 0.409667 1.099181 -0.281013 1.131854 -0.611268 -1.955808 -1.701564 -1.062320 1.349014 -0.704729 0.158882 -0.311849 -0.176166 -1.405287 0.405858 -1.067446 0.199556 -0.113510 -1.478684 -1.904841 0.656039 -0.496386 0.264106 0.735929 -1.297295 0.286061 0.215914 1.259972 0.258772 0.408270 0.127226 -1.874523 -1.588352 -0.391779 -0.552830 1.935213 0.422020 -0.077611 -0.565968 -0.704971 -1.097436 1.289506 -1.340826 0.626078 -0.039076 -0.928915 0.856268 -0.890839 -0.145186 -1.439848 0.716758 0.567510 -1.863731 2.133057 1.338342 -1.280336 -0.570265 -1.057359 0.606036 0.376145 1.598914 -0.983783 -0.737739 0.541054 -0.004980 -0.081351 -0.745099 0.649010 -0.105362 0.033423 -1.692246 -0.894707 1.076516 0.964992 -0.208000 0.370512 1.003434 0.338833 -0.073755 1.827707 0.547842 0.031737 -1.091042 -3.317525 0.758210 1.548119 0.030284 0.477470 -1.578988 -0.674937 0.327361 0.065970 1.380661 1.360377 0.174600 1.482649 -1.343009 -1.390126 -0.845877 -0.345857 0.378527 -0.572003 0.472793 -0.760128 0.205045 -0.182449 0.391430 -0.063989 -0.689178 -0.766627 0.419786 1.270381 0.303636 -0.193630 1.615812 0.271743 -0.735112 -0.167942 -0.058989 -0.299786 0.653685 -0.782550 -0.265854 -0.059726 0.598968 -1.001563 0.701334 -0.032457 0.292213 0.257269 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 1.466631 -0.991454 -1.148372 3.730723 0.224052 0.256811 0.741255 0.278166 0.155517 -5.506682 -2.186534 3.032518 0.493412 0.209724 -0.144101 0.818721 1.082913 1.597979 -5.181629 -0.245911 1.011461 0.216765 -0.154856 -0.879049 -0.074717 -1.052361 2.250970 1.217777 0.559343 3.094806 -0.862097 1.987035 2.581285 0.292601 0.943748 2.153623 -0.447809 0.006094 -1.410625 -1.480954 4.169554 1.150274 0.221981 1.851318 -0.331727 3.306125 1.064656 2.671150 1.916766 -1.240188 1.119119 0.771942 -1.344733 -0.826282 -3.368544 0.515060 1.734713 1.420014 -1.089492 1.550463 -0.416528 0.739161 1.194579 -0.294840 3.733225 1.199640 2.633593 3.000563 2.812507 -2.522541 0.564474 0.145611 0.596347 0.052881 2.480113 -2.291574 -2.236010 -1.543556 -0.766228 -4.421569 -0.059637 -0.171082 4.795458 -2.381572 -0.450897 0.176931 1.009542 3.099245 -1.268624 0.211719 -3.350209 -0.074313 -0.448378 4.236335 0.983121 0.606325 -0.755901 0.789581 0.008079 0.835847 0.820424 -2.681401 0.246180 -5.544739 -1.543738 -2.062694 0.663395 0.927861 -2.932113 -0.010487 -0.322607 2.718303 -5.121765 -0.799215 0.892351 0.974865 2.112386 -0.774292 -1.390212 0.402524 0.004371 0.834901 1.424618 -2.038265 0.564131 -0.512504 -0.293407 0.083406 1.165030 0.839501 -3.704049 -1.480184 0.337101 0.375683 0.498104 1.292792 1.776013 -0.561049 1.390548 -2.317403 2.566455 -3.411696 -0.435886 -0.942552 -2.484824 -1.692341 3.541659 1.888152 2.494427 -0.651538 -1.071839 -0.293263 -3.686872 -5.449748 1.057312 0.407172 0.333170 1.222321 -0.641642 0.836429 -2.719696 0.848184 2.310795 -1.306374 -1.460337 0.051781 1.606722 0.188048 -1.074793 -1.378389 0.076594 0.343966 0.604035 3.045944 -1.114925 -4.599607 -4.498830 -1.515393 2.775036 -1.654545 -0.236398 -1.179714 -1.012792 -1.921161 -0.016953 -2.462222 0.508709 0.071024 -2.114637 -3.736924 1.130205 -0.701641 -0.496889 1.357742 -2.659428 0.653811 1.821249 1.318028 0.041222 0.496795 0.614781 -2.773537 -2.157328 0.519169 -1.770583 2.456064 1.873165 0.190115 -2.385410 -1.260672 -2.345693 1.692091 -1.944885 1.811454 -0.141057 -1.405998 1.475658 -2.546102 0.543131 -1.767724 0.962303 0.795679 -5.317105 4.008858 2.249492 -1.981074 -0.311306 -0.778454 1.127581 0.191151 2.096648 -2.576897 -2.142068 0.926833 -0.561603 0.040496 -1.060428 0.700945 -0.441897 -0.513314 -3.265732 -1.452485 2.461938 1.263266 -0.410711 0.542174 1.747631 -0.943968 0.331525 3.560101 1.816665 0.489105 -2.421601 -6.518558 1.279346 0.304859 -0.192239 0.174256 -1.861036 -1.109879 1.332145 -1.153588 2.453286 0.360201 -1.660461 2.752192 -3.445749 -2.671441 -2.035288 -0.793315 1.259575 -0.658968 0.586226 -1.365878 0.586967 -0.413941 0.632851 -0.603976 -1.869198 0.431493 1.452394 3.038580 0.223922 -0.087142 3.192880 0.560933 -1.165651 -0.265538 -0.379313 -1.183763 0.790924 -3.995801 -0.450228 0.554323 1.513451 -2.105606 1.041935 -0.581983 0.557982 0.703886 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.695886 -0.316901 -0.151441 0.878816 0.174791 -0.564441 0.293203 0.414169 -0.085817 -1.223109 -0.372639 0.325456 0.080215 -0.449467 0.108630 0.275222 0.323763 0.332846 -1.571237 0.450035 0.224627 -0.001409 -0.649480 -0.399092 -0.065346 -0.543517 0.120352 0.772522 -0.099935 0.887230 -0.489015 0.140210 0.679780 0.031467 0.779114 0.938704 0.297651 -0.055579 0.053362 0.285101 1.516614 0.676190 -0.421646 0.190574 0.599835 1.125148 0.262199 0.617110 -0.464982 -0.306745 0.203451 0.022995 -0.451465 -0.246444 -1.137203 0.173612 0.983782 0.633528 -0.869165 0.765377 -0.617101 0.162448 0.489546 0.457198 1.317548 0.238488 0.617509 0.701309 1.324750 -0.596610 0.049342 0.222219 0.727304 -0.189699 0.541042 -0.189538 -0.668499 -1.605464 0.166248 -1.359312 -0.043088 0.171757 0.972601 -0.798367 0.210262 0.684986 0.305271 0.858614 -0.919671 -0.351016 -1.015299 -0.038033 -0.210144 1.887805 0.097934 0.311970 0.096384 0.739368 0.266550 0.550620 0.021424 -1.066608 -0.452051 -2.049187 -0.758900 -0.592955 -0.376285 -0.256167 -1.003004 -0.341415 0.999762 0.902390 -1.372830 0.141913 0.390195 0.084352 0.491586 -0.620617 -0.451009 0.306312 -0.404498 0.211038 0.454520 -0.488989 0.012959 -0.308463 0.456671 0.349321 0.352282 0.110926 -1.147769 0.096634 0.481611 -0.216140 -0.239725 0.194791 -0.015250 -0.843814 0.431630 -1.018879 0.998666 -1.172194 0.215107 -0.585194 -0.865869 -0.178987 0.703885 0.578874 0.296671 0.054753 -0.453106 0.131151 -1.246864 -2.145955 0.416899 0.004303 0.165626 -0.241147 -0.211447 -0.149212 -0.508388 -0.184267 0.607290 -0.705838 -0.314599 -0.268799 1.000906 0.167195 -0.431474 -0.316348 0.048753 0.826019 0.560892 0.613076 -0.694148 -1.096319 -1.119434 -0.617356 0.803718 -0.245915 -0.121955 -0.188075 -0.366705 -1.129923 0.622715 -0.683462 0.544909 -0.570014 -0.214597 -1.067454 0.138329 -0.295584 0.037923 -0.100118 -0.755730 0.222495 0.068277 -0.214138 -0.054415 0.060806 0.365649 -0.874794 -0.909330 0.236212 0.116240 1.121802 0.473869 0.265408 -0.246651 -0.154607 -0.871403 0.838892 -0.685376 0.350514 0.312292 -0.972501 1.023590 -0.546144 -0.554383 -0.538677 0.620633 0.098384 -0.112492 1.760450 1.164959 -1.021652 -0.368544 -0.384237 0.352920 0.433517 1.210374 -0.742826 -0.374399 0.404462 -0.039770 -0.152384 -0.150720 0.433085 -0.137650 0.542543 -1.099005 -0.534809 0.646952 0.823855 -0.071354 0.257451 -0.156999 -0.259644 -0.429649 1.209732 0.254292 0.415905 -0.835413 -1.367640 0.423997 -0.678415 0.066960 0.014544 -0.345385 -0.524433 -0.071299 0.115973 1.031718 0.838272 -0.673766 0.859577 -1.224900 -1.151165 -0.721169 -0.017455 0.168837 -0.588931 0.551642 -0.594969 0.154858 -0.298912 0.570327 -0.040331 -0.374395 -0.385976 0.192623 0.396823 0.303217 -0.843403 1.112147 -0.054378 -0.344103 -0.272589 -0.010256 -0.034870 0.618694 -0.463222 -0.516545 -0.485422 0.652210 -0.587941 0.819791 -0.021979 0.554967 0.584845 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 3.587792 -0.584266 -2.829788 8.250439 0.554386 0.612677 1.048914 0.648802 0.502884 -9.728009 -3.642863 6.234963 1.221179 0.898217 0.766964 2.648447 2.174255 2.795602 -9.395876 -0.405555 1.344043 0.086813 -0.657874 -2.343590 0.133570 -1.219661 4.783506 2.703935 1.322758 6.509391 -2.315978 4.569700 5.245998 0.692981 2.780064 2.768096 -0.243737 0.012374 -4.974137 -2.957227 8.608149 1.696231 0.509881 4.387388 -1.099391 7.332369 2.060161 5.329391 3.985837 -2.037478 3.201474 1.969925 -2.317152 -1.376008 -6.885478 1.555632 3.174576 2.034424 -2.548110 3.233264 -0.053873 2.056674 2.805023 -0.368078 7.795289 3.088375 5.284752 6.521779 6.043017 -5.185500 1.486505 -0.854637 1.755855 -0.275603 4.574123 -5.828330 -4.005757 -3.692262 -0.993012 -7.618747 0.294343 -1.089275 7.906015 -5.702258 -0.598655 0.421917 1.503476 6.526345 -3.435694 1.041529 -6.573086 -0.827339 -0.626084 8.488811 1.443821 1.163830 -0.972982 1.702142 -0.171387 1.564591 2.267907 -5.675342 1.042068 -8.930246 -4.771451 -2.772235 1.367504 1.675990 -5.409776 0.511016 -0.980552 3.851708 -10.192531 -2.552380 1.715313 2.124721 4.213564 -1.216419 -1.770838 0.619855 0.639118 2.809332 2.600852 -4.352994 2.145583 -1.277708 -1.962134 0.885857 3.668056 1.939292 -6.308574 -3.031087 0.765253 0.528724 1.135091 2.318367 2.733227 -1.823381 3.374079 -4.293724 5.779616 -6.800246 -2.647815 -2.458063 -3.748380 -3.503662 6.271770 2.272365 5.612033 0.051031 -2.513618 -0.240684 -7.638699 -10.433226 2.041995 1.334876 -0.319016 3.402460 -1.567572 2.176995 -5.768801 1.246626 5.641823 -3.818411 -4.969189 -0.932634 1.909997 0.515201 -2.733121 -3.046858 0.894802 0.735363 1.506429 6.573005 -1.548395 -9.074751 -8.869354 -3.102568 6.054859 -3.601628 0.131807 -2.309367 -1.619347 -4.882154 -0.510702 -6.326776 1.725267 0.814740 -4.101206 -7.880942 3.307364 -1.374000 0.231660 2.755537 -6.027834 2.117688 2.219571 2.709645 -0.713327 1.733368 1.246410 -5.881205 -5.148998 0.890762 -3.256068 4.689194 2.096820 1.091390 -4.492253 -2.874372 -4.283440 3.614982 -4.757305 4.196218 0.318701 -1.832015 2.454381 -5.656391 -0.214911 -4.111916 2.101002 1.538107 -8.371416 7.147031 4.109663 -4.615795 -0.721048 -2.230276 3.535247 0.089371 5.591042 -5.417767 -4.709147 1.612692 1.013793 -0.179721 -2.643343 1.768493 -0.854563 -2.088457 -6.508747 -2.661546 5.277609 3.262944 -0.622734 1.196844 4.167045 -2.409267 -0.459045 6.978719 3.935327 1.462375 -4.116049 -11.687685 1.653202 1.240776 0.019510 0.565985 -4.800220 -1.931935 2.200130 -1.489570 5.509274 0.510449 -2.158055 6.042965 -7.140081 -5.943823 -4.774323 -1.432221 1.941403 -1.514124 0.754681 -2.647884 1.015051 -0.244918 1.410750 -1.907031 -3.114783 1.247787 2.445371 6.217903 -0.885081 0.159940 7.122761 2.266701 -2.434284 -0.569647 -0.846875 -3.311245 1.673642 -8.056841 -1.061536 1.446301 2.739082 -4.983461 1.356255 -1.377817 0.684951 0.534023 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 5.036448 -11.556965 -8.917441 17.319606 1.293217 1.458485 2.485144 2.683842 1.855147 -33.567829 -5.987161 17.595742 0.014322 0.783962 -0.785143 7.892780 4.063795 3.759205 -20.819796 -0.736215 2.325424 0.825264 8.200651 -2.574108 0.488444 -2.965276 10.399771 -2.389638 1.963394 8.007769 -2.830787 19.086252 14.016466 1.862612 2.660596 6.263792 -0.987775 -1.741907 -4.099769 -5.549741 14.908188 13.525258 -1.131310 5.855107 -7.236342 9.063115 11.274555 19.588366 -15.605347 -3.136797 1.444417 -10.952072 -5.576060 -2.748679 -13.043909 0.766160 5.815380 20.244036 -2.907660 4.177052 -7.646181 1.763546 2.677158 -2.581291 21.545538 1.607723 19.585895 22.469389 7.187328 -7.567177 0.623384 1.220072 -3.713347 -1.912478 20.939468 -11.080576 -5.085358 -17.319693 -0.975729 -32.176014 -1.305800 -2.176608 38.348967 -5.761867 0.302668 0.830045 8.647770 16.602297 -2.810644 9.431572 -13.281230 0.349577 5.924742 37.756868 1.792047 0.635585 -8.446469 1.351331 -0.006096 3.160583 7.599526 -7.358251 -0.255561 -21.596383 -1.765743 -5.937797 1.584127 8.637916 -15.333883 1.601374 2.781559 18.712831 -36.802068 -3.364199 2.741238 1.717000 39.015110 -3.044738 -9.550319 9.283950 0.491840 3.413392 4.384893 -14.592018 1.088341 -3.950707 3.252397 0.723929 3.254727 2.174865 -41.919475 -5.079625 2.613945 -0.475631 1.219046 9.623015 19.032243 -0.708674 3.432821 -15.694965 7.103298 -16.284582 8.725562 -1.972001 -18.050751 -5.022725 41.412032 13.690606 15.142930 0.708273 -4.876371 -0.370166 -16.207895 -35.795255 3.252254 0.831287 1.514232 9.754968 -1.376818 2.717651 -6.417211 16.270078 10.533211 -3.190791 -3.782949 0.229277 2.594335 0.357356 -1.872101 -3.647259 1.682880 -2.000239 0.571310 22.819673 -3.667017 -34.559909 -25.159913 -4.978954 7.419980 -4.827498 -1.252410 -2.285113 -2.461491 -6.233221 0.276858 -12.993628 17.686802 0.093300 -11.069813 -17.271754 3.439981 -2.828070 -3.477782 4.952911 -6.871249 1.614409 7.286870 9.983903 0.031600 1.791864 10.758002 -11.763410 -8.924670 -0.652800 -12.763073 12.074669 7.221982 -0.176951 -7.674397 -3.547312 -13.872783 5.834796 -2.956634 5.019216 -1.499417 -8.486380 3.861984 -13.444346 9.731405 -11.962071 3.738914 3.448767 -28.530077 13.756497 7.389264 -5.853722 -1.844688 -3.252757 1.819739 1.649566 6.293257 -7.050588 -6.324324 2.620886 -1.099322 0.080066 -3.224223 2.101756 -6.678597 -1.584174 -12.995868 -8.718987 5.858091 3.055658 -0.791768 1.387176 5.933071 0.745465 -12.675941 13.592017 10.347134 2.004729 -14.050838 -39.313460 4.137712 -3.417245 -7.926010 3.158668 -10.691164 -3.566775 3.136970 -9.312434 6.481113 4.987877 -12.430080 7.276276 -27.815263 -6.420493 -5.642682 -3.072075 3.287165 -0.825249 -3.271406 -3.343721 0.919528 -2.185373 0.917264 -2.098698 -11.465443 7.580498 4.420289 14.109967 2.932639 -9.421230 8.172443 1.103206 -4.181649 -0.444592 5.290979 -3.581236 5.890876 -33.156776 -0.388293 1.682451 3.664340 -5.099014 2.230214 0.278530 1.889738 -0.255887 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 4.572172 -12.332786 -9.433829 16.846754 1.783698 1.972386 1.529139 0.931704 2.227088 -31.548886 -4.278141 19.219161 -0.212446 1.079780 -1.534150 8.140436 4.476958 2.430666 -17.129814 -0.764452 0.549858 -0.174068 7.210467 -1.616527 0.433031 -2.776792 13.377151 -3.095221 1.862159 6.167346 -2.465687 19.109705 12.647844 1.531659 3.233564 4.824761 -0.987037 -1.846003 -5.617339 -5.922406 13.713924 12.486397 0.001478 5.999271 -7.023568 7.555482 12.045619 19.564057 -13.097131 -2.155989 1.036692 -8.195356 -4.518639 -2.702469 -13.074284 0.479010 3.077085 17.504226 -2.835902 2.753993 -6.431266 1.675146 2.048341 -1.018949 20.771275 -0.144863 19.692887 21.740055 5.525960 -6.433851 0.254438 1.662979 -3.028545 -0.427992 22.135957 -10.465070 -5.588266 -12.704558 -1.325586 -27.995290 -0.302321 -2.608952 36.222854 -4.290097 -0.892640 -0.964513 8.136096 15.515125 -1.830430 9.511695 -12.419506 0.430036 6.292993 35.612101 1.740122 0.953208 -8.511886 0.592815 -1.017248 2.739003 7.955122 -7.253880 2.662428 -18.843698 -1.316326 -5.816377 1.707337 7.973412 -13.837056 2.487095 -0.112860 18.548445 -34.250679 -3.319210 1.626008 0.134573 40.940674 -3.548860 -7.512704 8.872324 1.367825 3.542776 3.269697 -12.969307 0.896172 -3.030442 3.939833 0.396938 3.257829 2.286318 -40.332752 -4.424346 2.455732 1.030754 1.029195 8.991778 18.836006 -1.027912 2.812691 -13.608102 5.727177 -14.331369 7.650681 -2.131535 -16.707927 -4.699794 40.407382 12.230279 16.725944 0.571911 -3.953920 -0.208755 -15.348116 -34.469446 2.700922 0.142583 -0.670104 10.395267 -0.870494 2.999139 -5.948481 15.976488 11.309040 -2.806110 -3.855450 0.130270 -0.884920 0.231888 -1.195804 -2.500232 1.280824 -3.499604 1.696266 22.679456 -2.895066 -36.838340 -23.736400 -3.850484 5.918473 -4.663237 -0.875357 -1.268482 -3.043567 -4.741170 -0.696859 -12.310858 17.404937 -0.523531 -10.048296 -15.433906 2.915277 -2.670908 -2.614600 4.268378 -6.227098 1.987683 6.229706 9.258750 -0.136912 2.050569 9.930470 -10.882436 -7.635083 0.170691 -12.341657 11.472238 5.936034 -0.612072 -6.616444 -3.506435 -13.298682 3.839846 -3.925252 4.690533 0.082985 -8.292835 2.115465 -12.883504 10.301342 -10.103644 3.357096 2.889019 -27.368773 11.967245 6.886142 -5.472742 -1.532308 -1.794022 1.762097 0.592262 5.053689 -6.423359 -5.333531 2.060649 -0.018170 0.191412 -2.234908 1.534852 -5.866577 -2.087264 -12.387313 -8.806906 4.970064 2.072496 -0.605760 -0.651105 4.945951 -0.278801 -13.093328 12.723681 9.996796 3.749421 -13.670009 -38.029645 2.945707 -4.769826 -8.691746 4.049518 -10.098145 -2.692017 2.633087 -10.932622 5.354706 1.273860 -11.967526 6.138512 -27.148804 -5.163888 -5.057747 -4.436089 2.498951 0.186786 -2.607356 -3.282150 0.019600 -3.449831 0.882599 -4.053262 -9.570924 10.531024 4.663450 12.269790 2.966532 -8.410764 6.372296 1.367303 -3.400727 -0.447291 5.802811 -3.964900 5.981759 -34.562491 -0.364939 1.641669 2.940550 -4.194000 0.861817 0.283668 2.930883 -1.578789 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.469345 -0.479957 -0.257309 1.185435 -0.111935 0.232696 0.256522 -0.010788 -0.082154 -2.023215 -0.962530 0.128687 0.253671 0.327576 0.280559 0.538781 0.330591 0.293361 -2.054730 -0.151373 0.635052 0.024542 0.238728 0.171558 0.024956 -0.622572 0.155620 0.345158 0.094219 1.201117 -0.385686 0.973289 1.114442 -0.074198 0.179367 0.792177 -0.198594 0.004332 -0.235278 0.025755 1.471383 0.022361 0.076906 0.218305 -0.334807 1.249833 0.112451 1.331885 0.348377 -0.638338 1.167545 -0.717447 -0.404819 0.003545 -1.067133 0.110956 0.952072 0.872463 -0.396489 0.582950 -0.358687 0.399994 0.401342 -0.101828 1.510535 0.665593 1.089403 0.981680 0.897864 -0.873015 0.357000 0.019339 -0.243684 -0.318384 0.525569 -1.056536 -0.181392 -1.132656 -0.012042 -1.526904 -0.148086 -0.019154 1.366370 -0.867523 -0.360622 0.281652 0.044434 1.281133 -0.425814 0.424127 -1.183649 -0.015639 0.220516 1.331562 0.086604 0.013847 -0.213694 0.417315 -0.000668 0.232428 0.230309 -0.866676 -0.723613 -1.712679 -0.959250 -0.580399 0.378636 0.529941 -1.529344 0.031259 0.019220 0.250496 -1.944680 -0.049305 0.309045 0.818550 0.735168 0.271668 -0.823594 -0.287089 0.140810 0.654511 0.671185 -0.576562 0.611795 -1.176585 0.131980 0.330901 0.408186 0.020971 -1.163430 -0.541982 0.118869 -0.183173 0.119684 0.674696 0.849155 0.112047 0.655916 -0.914426 0.954484 -1.591540 -0.237563 -0.578658 -1.020553 -0.523555 1.534023 0.946567 0.626891 0.013239 -0.961115 0.068276 -1.494074 -1.787003 -0.174213 0.121447 0.456760 0.551298 -0.351968 0.422545 -0.765019 0.472655 0.428369 -0.477047 -0.554705 -0.211240 0.157822 0.227102 -0.527309 -0.523953 0.117466 0.163945 -0.402142 1.285446 -0.196176 -1.005270 -1.873267 -0.705760 1.042114 -0.547311 0.139240 -0.549009 -0.101230 -1.414568 0.246040 -0.884220 -0.200938 0.182334 -0.902308 -1.419061 0.463663 -0.217869 -0.195845 0.464265 -1.001335 0.090589 0.677958 0.635555 0.418866 0.174489 0.055204 -0.930587 -0.996458 -0.000253 -0.815392 0.919470 0.535286 -0.082252 -0.538907 -0.573658 -0.813788 0.760440 -0.416911 0.571057 -0.013194 -0.403633 0.457854 -0.956245 0.179795 -0.690486 0.273032 0.271949 -1.960261 1.430947 0.702388 -0.743847 -0.159874 -0.593102 0.633667 0.066761 0.694585 -0.529514 -0.424323 0.174805 0.069320 0.037748 -0.506229 0.384475 -0.354000 -0.331727 -1.034947 -0.490246 0.963047 0.583985 -0.150882 0.282044 0.778342 -0.054341 0.133392 1.019833 0.440080 -0.244637 -0.438590 -2.371835 0.451817 0.497513 -0.166325 0.155020 -0.920307 -0.241793 0.394945 -0.165680 1.001398 0.731796 -0.114350 1.067419 -1.119653 -1.025078 -0.891421 -0.182986 0.165137 -0.189410 -0.177885 -0.405541 0.280032 0.199460 0.260663 0.066539 -0.958203 -0.431062 0.365927 1.283744 -0.154281 0.081190 1.200408 0.234851 -0.244077 -0.312532 0.089857 -0.317006 0.480947 -0.892751 -0.319809 0.240869 0.481972 -0.844031 0.237286 -0.421266 0.055848 0.268762 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.745590 -2.028960 -2.343259 5.411070 -0.374606 1.399646 0.551710 -1.359025 0.002361 -7.646066 -2.629047 3.277128 1.549023 2.105325 -0.337894 2.732754 0.864755 0.677252 -6.301081 -0.985412 1.668271 -0.331290 0.582210 0.651574 -0.145262 -2.243359 4.244534 0.824887 0.611814 4.262764 -0.969728 4.319377 4.214330 -0.735866 0.600656 2.571918 -0.600295 0.348876 -3.279693 -0.935582 4.957961 -0.000852 0.721121 1.171636 -2.395633 4.474555 2.046097 5.172073 1.979340 -2.297420 3.457972 0.807800 -1.417741 -0.904606 -4.110163 0.387153 2.166952 2.270670 -1.125811 1.302520 -0.083129 1.262240 1.627896 1.458219 5.550486 1.653472 4.967212 4.326489 2.913065 -3.672911 1.315814 0.395602 -1.324981 -0.806074 4.879780 -4.292339 -2.666916 0.817896 -0.268055 -4.234639 -0.721416 0.069168 4.814838 -3.141809 -2.515542 -0.740750 0.930491 5.175915 -1.253534 2.151724 -4.367698 -0.345227 0.425343 6.053947 0.769902 0.554650 -1.363724 1.497614 -0.409533 0.598286 1.789147 -3.942037 0.453348 -4.369754 -2.954308 -3.029722 1.718066 3.015523 -5.359170 0.172322 -3.166075 1.769373 -7.428119 -0.178946 0.922140 2.730859 6.962201 0.055961 -1.641488 -0.228878 1.331438 1.609570 2.210738 -1.836915 2.326011 -1.984912 0.927839 0.840224 1.143928 0.838594 -5.973452 -2.001632 0.488456 -0.273854 1.253015 2.862006 4.075092 -0.224437 2.174248 -2.921636 3.133864 -5.582182 -1.744932 -1.485567 -4.310262 -2.505509 3.881113 2.450135 3.788317 -1.477742 -3.130287 0.261881 -5.960631 -7.465268 -0.885168 0.903861 -0.434980 3.316898 -1.381804 2.359801 -3.798120 2.573337 3.511044 -1.447624 -2.702137 -0.108315 -0.042360 1.052017 -1.539744 -0.588404 -0.333405 -1.981010 0.565465 6.714877 -0.118479 -7.098915 -8.277985 -2.075949 3.816141 -2.387502 0.123608 -2.315968 -1.772586 -4.907660 -0.150444 -3.483703 -0.222076 0.867761 -2.680534 -5.229464 2.095881 -0.681638 -0.752584 2.025282 -4.209365 0.455404 2.339686 1.072823 1.307215 0.396080 0.111099 -3.221055 -2.667264 1.727870 -3.619989 3.581647 1.280640 -0.450947 -1.606606 -2.517059 -3.239812 1.491224 -2.010767 2.754198 0.524842 -0.643853 0.956557 -4.250453 1.493259 -1.961176 0.969460 0.979752 -6.186674 5.675084 2.642534 -2.109867 0.161443 0.254659 2.199867 -0.412552 1.370851 -2.890502 -2.890859 0.615174 0.670381 0.240862 -0.919779 0.798844 -1.520892 -1.991573 -3.666956 -1.736707 3.069484 1.622994 -0.633886 0.003816 2.798645 -2.735746 -0.080887 3.644881 2.451471 0.412445 -2.083870 -8.910845 1.542827 -2.142351 -1.713787 0.076684 -2.971743 -0.285040 2.564882 -1.838473 3.464319 -0.301989 -1.688204 3.898937 -5.855321 -3.745616 -3.637035 -2.095354 0.675990 0.638579 -0.798887 -1.640767 1.181494 0.136578 0.405230 -1.775727 -3.164283 2.351833 2.201495 4.832042 -1.312239 1.122370 4.293579 1.252471 -0.080287 -1.340502 0.575734 -2.168982 1.377358 -5.708042 -0.813513 1.822683 2.089444 -3.046820 -0.178439 -1.850686 0.072399 0.318341 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 15.703804 0.681111 -4.253464 19.112332 4.329059 -2.882733 3.723528 9.922345 -3.225362 -21.525255 -10.301108 11.794445 0.003383 -1.567519 7.068222 5.708054 8.799916 6.826729 -32.223493 2.233599 -0.011948 -2.105048 -5.631924 -10.313069 1.866567 0.500566 7.125964 12.742131 2.905200 17.216750 -9.972474 6.638369 10.472797 4.872005 13.053746 6.410358 2.199529 -1.495460 -9.063846 -7.757481 27.122674 7.469194 -2.998177 12.808951 5.080349 19.791879 4.900673 13.134705 4.329151 -1.413033 9.099647 -3.093668 -7.970669 -1.327760 -21.640210 1.328534 15.324339 8.906283 -10.752472 12.729231 -2.360183 7.130276 7.447839 -3.720551 22.577010 5.881708 14.518235 13.892499 19.246911 -14.473168 3.490374 -2.059013 13.151431 0.690804 1.178686 -16.836724 -5.554126 -28.501938 1.589466 -30.848045 1.718386 -4.774152 22.342911 -13.897231 3.664909 7.497577 -0.529669 15.074366 -16.096151 0.658690 -17.282229 -3.204921 -2.512842 26.220165 1.929165 3.730441 4.333548 6.310771 1.845625 8.574207 3.666845 -15.430464 -1.773517 -30.422943 -14.045111 -1.148645 -1.759065 -3.094878 -10.103387 0.129618 8.511807 7.996994 -23.587062 -9.952033 4.859642 3.200205 0.366953 -1.075591 -8.094791 1.239334 -3.552313 12.100017 10.382138 -14.448499 5.381152 -6.155179 -5.460992 5.587124 13.203375 6.650420 -14.861932 -5.910797 7.110220 -1.496552 -1.729318 0.743293 -0.073575 -6.304486 9.431792 -13.998140 17.801733 -20.089334 -5.630230 -7.283573 -8.546926 -6.942694 16.121666 7.643373 10.848404 9.164352 -4.598816 2.518614 -16.879416 -28.115015 10.522645 4.026951 1.456523 2.771617 -2.598526 3.819767 -13.628575 -6.353266 12.708733 -12.297622 -15.440563 -8.602018 10.870907 2.337928 -7.589179 -10.342238 7.949400 11.775478 4.786370 13.008813 -8.656549 -23.557821 -16.903115 -9.060504 17.337518 -8.431265 -1.913114 -0.230765 -1.131151 -15.822890 2.914678 -17.619079 7.185657 -1.172457 -11.072616 -19.681764 8.663490 -4.098763 3.665521 5.826328 -14.235932 6.791889 4.728260 11.309903 -5.840788 7.127929 7.875292 -17.676997 -20.235967 -1.984795 -1.816069 16.830977 3.165473 4.376981 -12.453566 -4.699944 -9.499303 15.631796 -13.049912 10.476072 -1.206441 -7.163836 11.179125 -11.203214 -5.244608 -10.039389 8.949009 5.672584 -21.205934 21.631197 16.148075 -17.624185 -6.101805 -14.599648 9.959896 2.572842 22.541209 -14.414899 -11.003211 5.749198 5.762527 -1.593995 -10.232032 7.330597 2.511280 -3.544658 -20.199883 -10.432272 14.763760 11.401742 0.659931 6.030459 8.827004 0.347797 -5.231954 25.415770 4.272401 4.083382 -10.153804 -31.419025 2.888253 13.705256 2.689720 4.566934 -12.811068 -9.193931 -0.844778 -1.983857 15.223089 10.904676 -5.793298 16.485667 -14.524727 -16.607846 -15.671276 2.388373 4.902881 -9.663167 5.003547 -9.694679 0.966666 -2.719486 7.000147 -1.583339 -4.756631 -7.099351 0.517766 13.007323 0.341289 -5.564215 20.990698 4.872559 -8.950805 -1.551694 -3.037233 -5.659829 12.086420 -15.669555 -5.335549 -1.250986 8.040903 -14.307735 6.313491 2.488759 6.567733 3.799701 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 5.262477 -2.665563 -2.268664 9.261662 0.520530 0.633100 1.764705 1.478950 1.369884 -12.607139 -5.040661 8.615223 1.081962 0.402842 -0.332105 2.572089 3.490831 2.871730 -14.884372 0.018437 2.148621 -0.254486 -0.967783 -2.120314 0.105661 -3.544787 6.816162 4.159834 1.235001 8.225546 -2.938254 4.625360 6.874483 0.857187 4.006038 5.817511 -1.962296 -1.051877 -4.477876 -3.939589 10.939031 3.940108 -0.724048 4.561934 -0.305126 9.344746 3.563640 5.955711 5.996255 -3.050901 2.578506 2.141188 -4.352838 -2.138696 -9.219858 0.692951 3.471799 2.467414 -3.539636 3.931035 -1.657377 2.301289 3.363203 0.742350 9.989379 1.909511 7.146490 7.426895 7.464171 -6.889689 1.826297 0.548826 2.700148 1.192412 6.282107 -5.279313 -6.247076 -4.583375 -0.779512 -10.727618 -0.662433 -1.133315 9.487505 -6.271763 -0.866447 0.053492 1.581148 8.549148 -4.218999 0.554763 -8.910955 -0.294332 0.085284 10.718025 1.714401 1.929357 -0.396365 2.729613 -0.530682 2.455836 2.808088 -8.567601 1.118402 -13.223522 -3.815034 -6.102217 1.277683 1.944308 -7.511592 1.340671 -0.331443 6.838149 -12.118821 -1.989976 1.787982 1.595613 5.429072 -2.606618 -1.243267 0.408714 -0.056338 3.542800 3.923535 -5.911360 2.005742 -0.764633 -0.040424 1.594994 3.672619 2.708349 -8.614607 -3.332427 3.117540 0.896731 0.927386 4.029581 3.808713 -2.021975 3.602643 -6.212138 7.533637 -8.240791 -1.597009 -3.509584 -3.829364 -4.571883 8.114355 4.995320 5.904088 -0.234403 -1.588274 0.518931 -9.606762 -13.976219 2.263436 0.905358 -0.214194 2.654812 -1.689503 2.661953 -7.102524 1.392323 4.356230 -4.363979 -4.656807 -0.594039 1.688635 1.374518 -2.786234 -2.156534 0.398439 1.220060 2.055818 8.435363 -3.006560 -13.586217 -11.433531 -4.363330 7.649318 -4.723364 -0.967912 -2.902553 -2.986111 -4.609627 0.343971 -6.420038 1.703009 -0.656230 -4.433214 -10.253642 3.139507 -2.181225 0.816521 3.208994 -7.542120 2.075141 3.121597 2.727142 0.001615 1.915040 1.163818 -6.614694 -4.844051 1.813098 -3.684924 7.806936 3.252662 -0.211943 -5.670375 -3.715798 -5.733184 5.307329 -5.687347 5.621397 0.296093 -4.789520 3.882868 -5.810175 0.454892 -4.371101 3.631737 2.047718 -11.063481 10.556838 7.247465 -6.487323 -0.976562 -2.519169 3.645359 0.829883 6.243752 -7.002232 -5.693596 2.079626 0.004057 -0.082363 -2.005615 2.199127 -0.658437 -1.582197 -8.546945 -3.780431 6.870448 3.388242 -0.714834 0.888146 4.133886 -2.407323 0.766405 8.850010 4.279705 2.662559 -7.100715 -16.602267 3.265492 1.800902 0.065961 1.419112 -5.270358 -3.336010 2.373093 -2.736743 7.135918 1.000461 -4.111702 7.491909 -9.138768 -7.563509 -7.071120 -2.878340 2.211485 -0.915627 2.823498 -3.587372 1.165586 -1.781226 2.383276 -2.772606 -3.395268 1.818175 4.534076 6.974235 1.440681 -0.998232 8.553669 2.031316 -3.185153 -1.678133 -0.807465 -4.611418 2.149610 -9.074295 -1.514963 1.436257 4.422740 -5.961131 2.205500 -0.209261 2.772092 0.280219 -PE-benchmarks/vertex-cover-problem.cpp__main = 2.647360 -0.582537 -0.568118 4.394099 0.849965 -0.684003 1.161629 1.466148 -0.082103 -6.856430 -3.490223 1.479917 0.593936 -0.560825 0.830628 0.983429 1.868743 1.956916 -7.335055 0.533918 1.874498 0.269358 -1.048360 -1.123860 -0.109793 -2.090480 0.224636 2.357570 0.527998 4.614370 -1.847197 1.769214 3.805416 0.116645 2.426439 4.012311 0.027011 -0.110730 -0.203853 -0.606567 6.758243 1.915962 -0.436286 1.933675 1.025517 5.192457 0.127013 3.738446 -0.435457 -2.022362 2.461929 -1.072869 -1.739876 -0.678292 -4.832661 1.250175 4.517936 2.861400 -3.156363 2.857333 -1.434607 1.090324 1.907461 -0.051846 5.115033 2.386391 2.401865 3.799064 5.075745 -3.447809 0.454307 0.664880 1.401121 -0.423615 1.596128 -2.709503 -1.824179 -4.850328 0.006528 -6.266425 -0.008966 -0.190162 6.120172 -3.796769 0.629102 2.201833 0.801531 4.147477 -2.575458 -0.642777 -4.709447 -0.238588 -0.798966 6.300921 0.502095 0.754966 0.178099 2.039878 0.268300 2.134809 0.023865 -4.188553 -2.484180 -8.530638 -3.504012 -2.662428 0.375559 0.547312 -4.604078 -0.971047 2.133052 2.372724 -6.783261 -0.317357 1.515415 1.759468 0.680977 -0.560263 -3.061554 -0.075088 -0.859329 1.122990 2.001215 -2.313535 0.637507 -2.399264 -0.083383 0.884684 1.764961 0.425569 -4.501290 -1.201160 0.767215 -0.902961 -0.393660 1.283074 1.315954 -1.960540 2.351214 -3.638545 4.214006 -5.533920 -0.163260 -2.602253 -3.882878 -1.813254 4.055285 2.473420 2.335277 0.224320 -2.110785 -0.097014 -5.440270 -7.281168 1.280493 0.228054 1.707217 0.607805 -1.147582 0.723322 -3.019565 0.004996 1.837823 -2.564287 -1.909151 -0.887389 4.339962 0.178394 -1.825730 -2.250405 0.547752 2.333854 0.006000 3.377683 -2.414866 -3.356491 -5.788779 -2.856080 4.117687 -1.959994 0.093064 -1.257723 -0.802587 -4.182694 1.245072 -3.734371 0.973274 -1.320078 -2.134502 -5.485745 1.518263 -1.303822 -0.237151 1.379815 -3.890689 1.145267 2.272470 1.577465 0.192492 0.589662 0.867277 -4.227713 -3.806181 0.244304 -1.054993 3.812525 2.928515 0.462018 -1.976704 -1.793038 -3.255773 3.240374 -2.010247 2.124414 0.487469 -2.650329 3.267903 -3.209893 -0.772413 -3.460698 1.836978 1.336902 -4.996630 5.931486 3.252331 -3.718882 -1.093223 -2.505772 1.765553 0.988886 4.256514 -2.773840 -2.187777 1.733112 -0.672103 -0.257333 -1.967204 1.599624 -0.558690 1.008772 -4.900066 -2.143389 3.653671 2.935904 -0.459007 1.709782 1.725771 -0.225954 0.349978 5.356946 2.079107 0.451241 -3.274814 -7.823847 2.176618 0.145399 0.557609 -0.195204 -2.007849 -2.187752 0.610442 0.561892 4.306348 3.383950 -1.290112 4.392256 -4.606420 -4.713626 -2.930758 -0.030978 1.607505 -2.083427 0.415764 -2.458675 0.995274 -0.641046 1.610496 0.456306 -2.606659 -2.353539 1.337665 3.879117 0.474409 -1.337666 5.079967 0.585853 -1.989066 -0.490645 -0.138206 -0.421325 1.689467 -3.158872 -1.658483 -0.466271 2.195553 -3.095294 2.426752 -0.615603 1.221729 1.969761 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 5.276079 -1.158088 -3.322934 10.062798 0.215489 -0.007174 1.842881 1.485885 1.336798 -13.851195 -5.887017 9.372018 1.721013 -0.090031 -0.304428 3.142131 3.140400 4.579264 -15.052416 0.309567 3.268851 0.765745 -1.124386 -2.843135 0.169041 -3.341225 5.374736 2.859524 1.550687 9.345911 -3.207066 5.453640 7.693026 0.621763 3.996057 6.425449 -2.535633 -0.545097 -3.514379 -4.110900 11.600404 4.421032 0.104341 5.121028 -0.625834 9.915176 2.583540 5.938150 3.801520 -3.747576 2.509183 2.612911 -4.154992 -1.614244 -9.185996 1.638039 4.171568 2.911806 -3.641380 4.303621 -1.092783 2.587365 3.894126 0.173918 10.455814 3.294988 6.018640 8.625570 8.668429 -6.528713 2.769785 -0.469425 2.015268 -0.413597 7.802129 -5.140007 -6.737351 -3.142615 -1.729379 -12.051940 0.092763 -0.646149 11.845850 -7.724776 0.371729 0.276911 3.281391 9.654388 -3.989512 -0.342148 -9.064991 -0.300336 -1.486925 11.939062 2.119653 2.754330 -1.977911 3.119142 -0.779074 1.679133 1.959002 -8.881177 1.157542 -14.535169 -4.343394 -6.660928 1.249753 2.826012 -8.883226 0.662205 -0.982950 8.115870 -14.634792 -1.658036 1.783708 1.849665 4.643724 -3.012679 -2.356123 1.073377 -0.858301 2.936043 2.819749 -6.044203 1.523884 -1.122030 -1.793123 1.252222 3.807227 2.672990 -9.816281 -3.422701 2.225729 -0.148961 1.049213 5.368674 4.799044 -2.563490 3.895196 -7.256968 7.538067 -8.920250 -1.997339 -3.594977 -6.089973 -5.120069 7.546306 4.551451 6.148069 -1.598828 -1.770781 -0.473757 -11.295668 -14.956520 3.029615 0.203223 0.335910 3.338547 -1.782566 1.979367 -8.243097 1.909027 5.578152 -4.812729 -4.598177 -0.691786 5.279249 0.821131 -3.270696 -2.808216 -0.612866 1.038261 2.153358 8.540232 -3.183097 -11.729687 -13.470958 -4.407410 8.477409 -4.958415 -0.294715 -4.123540 -2.601997 -4.976570 -0.217204 -7.144771 1.941465 -0.620405 -3.423882 -11.202831 2.828024 -1.982632 0.015689 2.946995 -8.098971 2.540483 5.221736 2.239953 -0.355260 1.660938 1.461701 -6.552722 -4.820997 2.609761 -4.253894 6.547816 5.057017 0.231933 -6.409156 -3.852275 -6.565105 5.375486 -5.401454 6.067001 0.388127 -4.058549 4.696684 -6.866728 -0.094354 -5.355237 3.266655 1.362902 -11.979279 10.398839 6.109480 -6.673189 -0.106248 -2.730148 4.569548 0.837220 6.328141 -7.230660 -6.122089 2.445342 -1.497534 -0.012911 -2.882769 2.289190 -1.859088 -0.577967 -8.626182 -2.668907 7.991151 3.652654 -1.260279 1.620037 4.308425 -3.633871 1.924031 8.773248 5.710485 2.242616 -8.067334 -16.606729 3.254642 -0.342710 0.916744 -0.142663 -4.373915 -3.242886 3.096035 -2.378380 7.745569 1.207320 -4.413414 7.980731 -10.786565 -8.600033 -6.577670 -2.142069 3.116775 -1.319779 1.759773 -3.665883 1.649472 -0.981470 3.352948 -1.865016 -5.255470 1.552259 5.086855 8.669475 0.663568 -1.351290 9.523272 2.284308 -3.185930 -1.028507 -1.302578 -4.050019 0.817880 -10.283063 -1.735940 1.682100 4.645742 -7.078812 3.781842 -1.377749 2.568348 1.153411 -PE-benchmarks/largest-independent-set-problem.cpp__main = 5.381994 -3.334482 -1.229211 5.588162 0.102631 -2.036380 1.935200 3.413130 0.921938 -8.733450 -3.978139 1.728626 0.772819 -1.807575 1.480106 2.037981 2.393384 1.491696 -12.351374 2.280600 2.201519 -0.090276 -2.589356 -1.097082 -0.138627 -3.528559 -0.326644 3.997493 -0.159131 6.235117 -2.615209 2.129717 5.209022 -0.474187 3.651088 6.038251 -0.339031 -0.738707 0.817546 0.971644 9.236537 4.052417 -1.931665 1.495085 1.882415 7.494069 0.309969 7.959154 0.705992 -2.718142 4.987517 -3.631347 -3.654919 -0.507667 -6.891633 0.744221 6.382573 3.865408 -4.502513 4.609157 -4.285984 1.568205 3.083128 1.178712 8.523581 3.189491 4.548629 4.721644 7.632088 -4.191790 1.167329 1.209783 3.010378 -0.482376 2.331694 -4.578963 -2.918868 -10.429822 1.428456 -8.354342 -0.717145 -0.574340 7.363651 -5.601497 1.078552 3.445417 1.145119 6.272564 -5.238513 -0.327400 -6.651935 -0.193047 0.391748 9.695252 -0.709910 1.495177 0.610518 3.334192 0.266901 2.695186 0.491445 -6.521245 -5.068620 -11.892710 -4.830984 -3.633799 -0.902406 0.005296 -7.621124 -0.600794 4.314496 2.405426 -9.355898 0.244773 2.308027 1.522777 3.583192 1.795104 -3.487393 -0.349507 -1.101088 3.236716 3.667916 -3.910770 1.281136 -5.116937 2.079186 3.116100 2.027672 0.414561 -6.776220 -0.360660 2.913646 -0.678456 -0.761541 2.464453 1.430772 -3.601137 3.199520 -5.899350 6.386830 -8.530071 -0.994560 -4.300339 -4.358900 -2.011889 8.979156 5.289001 3.126584 1.395106 -3.457875 0.690232 -8.095161 -11.152333 0.625214 -0.764224 2.286043 -0.594651 -1.187143 0.161532 -2.906822 0.269755 0.548645 -4.014477 -2.405759 -1.553016 3.652190 1.264311 -2.552386 -2.709026 0.525079 4.299666 0.465727 4.789873 -3.056324 -7.987553 -7.694496 -3.954530 5.799047 -2.097145 0.017824 -1.867598 -1.305397 -6.554705 2.379972 -4.650830 1.314240 -2.064903 -3.167875 -7.495144 2.099967 -1.728587 1.115810 0.493273 -4.917359 1.089943 1.882471 3.618778 0.596226 1.612055 1.008850 -6.963813 -6.219213 0.082008 -1.102570 8.650425 3.061382 0.393443 -1.369872 -1.771277 -5.241530 5.590332 -5.193479 2.718223 0.882353 -5.357544 5.557511 -3.904138 -1.973515 -5.331224 3.461201 1.096454 -5.792976 9.820221 6.506882 -6.117333 -1.683073 -4.131638 2.779934 2.487916 6.641760 -3.250923 -2.676324 2.061075 0.229535 -0.668230 -2.052963 2.499724 -1.308907 1.438207 -6.548012 -2.915362 5.346617 4.368978 -0.499651 1.033023 0.835624 0.030080 -0.560325 7.156438 1.625775 0.495656 -4.980074 -13.087521 3.007946 3.096744 0.086866 0.919428 -4.684251 -2.996758 0.075186 0.430687 6.396612 6.495286 -1.254648 5.726446 -6.939539 -7.132682 -5.457460 0.500470 0.851191 -2.319178 1.844467 -3.278223 1.348481 -0.783257 3.107660 0.283762 -3.480394 -4.188387 1.993260 4.314688 1.451168 -3.650806 7.084950 0.525437 -2.111747 -2.040176 0.044917 -1.593513 3.082113 -2.399750 -2.263966 -1.383690 3.743853 -4.396122 4.010294 0.253574 2.761990 2.253448 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 15.158557 -0.813955 -11.037296 18.179291 -2.052305 -5.772607 4.621692 6.850855 0.464894 -23.129456 -8.524510 17.831282 4.995292 -4.313947 -1.708660 10.029096 3.806704 7.138572 -26.543303 5.754620 4.649960 -0.667144 -10.560375 -5.870202 -1.777514 -8.239148 6.354827 7.422774 0.023857 17.874843 -5.294551 8.283327 14.347286 -1.873187 9.117733 15.255572 -2.450311 -1.323867 -3.417863 -2.596822 21.560120 13.277417 -3.725701 5.299079 0.974099 20.297807 4.202625 15.192611 -5.893713 -7.052277 4.361107 6.276588 -11.364795 -2.816465 -16.975411 1.431779 8.942625 6.872763 -8.762949 11.311498 -10.741120 3.857905 9.830747 7.142874 22.491688 6.799057 12.796047 16.469625 20.537355 -11.846704 5.388140 2.618550 5.805924 -3.077090 16.300645 -6.289338 -15.312194 -7.716157 1.161031 -23.548152 -1.833287 1.344304 29.321505 -16.902891 0.493837 3.314201 10.664941 19.197883 -15.381442 -0.626933 -16.495691 -1.378329 -6.097321 29.947310 2.254685 7.800146 -4.356625 9.259462 0.139168 3.886887 -0.126780 -19.362273 -3.176072 -25.197491 -9.449965 -12.931321 -4.003899 3.571007 -19.690624 -2.612155 6.175069 20.611582 -28.891203 1.096060 5.932182 0.897392 20.050095 4.655722 -7.643631 5.798319 -3.003510 5.331407 8.540118 -9.821658 2.598739 -0.974290 3.263031 4.711887 4.870666 6.016629 -30.340928 -0.880610 9.511866 -6.314087 1.474265 10.789821 7.004815 -11.656049 7.514445 -16.507386 16.008852 -22.053649 -3.898191 -7.898398 -18.117415 -7.421171 13.445517 16.892564 11.567543 -3.326532 -3.141012 0.141935 -25.216488 -31.064808 3.843046 -1.155299 -0.791288 0.392523 -2.458737 0.311689 -13.080561 4.660066 10.891667 -10.743012 -7.492932 -1.106707 21.898714 4.294146 -6.992274 -5.017934 -3.938647 1.643181 10.925759 16.835583 -7.439317 -29.424760 -27.003702 -8.040152 16.631357 -6.709002 -1.789895 -8.042727 -8.564094 -11.545951 1.715137 -12.738356 7.345392 -3.555245 -2.515193 -21.063522 6.307791 -2.662891 -5.053523 -0.010185 -13.431078 3.502016 10.740558 -1.660043 -1.178768 2.772920 3.474489 -13.255159 -10.447689 8.327146 -5.425407 20.269658 14.362206 1.848514 -8.367951 -4.210212 -17.584820 12.982818 -14.049260 10.471853 2.048614 -9.895588 14.637077 -14.321938 -3.821829 -11.846796 9.842256 -0.033907 -18.845361 25.597982 19.557894 -14.830345 -0.561786 -3.598336 8.356855 5.822271 14.452864 -13.272499 -11.545282 5.650626 -1.388269 -1.497763 -0.511485 4.675426 -6.519694 1.891332 -15.229387 -3.577415 15.624513 9.486569 -2.263452 -0.101371 0.285841 -9.999439 1.727420 16.124450 9.661529 3.615656 -17.538317 -32.948154 7.373687 -12.023350 -2.926750 -0.656031 -5.726924 -6.427794 4.112041 -8.363150 16.487479 1.333043 -13.664989 14.745745 -25.474881 -20.193498 -15.542476 -0.423128 3.596229 -3.493246 7.755088 -8.212106 4.147054 -2.371929 8.561737 -4.860608 -10.840326 1.739837 8.799363 14.508792 3.499618 -9.975925 19.861318 2.054479 -2.660849 -5.844174 -0.816199 -6.889685 3.646643 -18.110459 -4.920928 -0.725751 12.684678 -13.405366 11.009389 1.140001 6.539264 7.126207 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 4.142690 -0.660374 -0.670759 4.814911 1.325099 -0.971964 -0.002961 2.296992 0.648648 -4.967586 -3.081904 3.224170 0.150185 0.804010 1.938109 0.901863 1.649899 1.535232 -6.611079 1.057756 -0.896289 0.165657 -1.997666 -2.444826 0.549233 0.907325 1.490323 1.896450 0.857834 2.825566 -3.147589 1.705457 2.258130 0.494550 2.424512 0.088603 1.193421 -1.220661 -3.097042 -3.582473 6.643413 1.274387 0.989679 4.417619 0.348740 3.562941 0.181911 5.538048 2.387080 -1.120647 2.618293 -3.333362 -1.897023 0.556856 -5.536192 3.113798 2.733143 0.770076 -2.392596 2.495134 0.708075 2.051832 2.259452 -2.434134 5.665841 2.118801 3.433848 3.298787 4.622689 -3.022093 0.982136 0.226034 4.161492 1.050720 1.018992 -4.626974 0.015038 -5.083391 1.093551 -4.969655 2.166416 -2.361458 5.380284 -3.594360 1.271046 2.052354 -0.184461 3.787330 -3.929933 1.668327 -3.850412 0.136693 -0.560830 4.832670 -0.458862 0.250050 0.668634 1.112257 -0.345360 2.152865 0.260710 -1.764872 0.000508 -7.305480 -3.718949 1.277123 -0.482774 -1.076700 -3.063288 0.941107 0.537173 2.282376 -4.688434 -3.213656 0.468414 0.257707 -0.134296 1.224431 -0.825650 -1.829910 -0.568077 3.207523 0.993925 -3.280808 2.589968 -2.412794 -1.806609 1.843732 4.231683 1.578605 -2.467101 -1.776920 0.096559 0.778694 -0.787024 0.024893 0.703805 -1.854171 2.753513 -1.884086 2.808426 -4.296087 -2.494631 -2.697177 -1.907056 -0.686024 6.622356 0.439779 3.912105 3.438948 -1.235783 -0.868104 -4.374612 -6.149446 2.017337 1.673197 0.541836 1.362730 -0.157120 0.691705 -2.160915 -2.398233 3.004699 -4.117706 -4.538107 -2.391118 1.481847 -0.507190 -1.684320 -3.995343 3.469115 3.629889 -1.476638 2.192082 -0.709526 -5.059718 -3.470521 -1.990807 3.265016 -1.103331 0.918834 0.333931 0.251545 -3.018823 0.386524 -4.324199 1.315567 0.256292 -3.975065 -4.645591 0.865324 -0.649016 0.747876 0.946901 -3.775375 2.870582 0.976809 4.550241 -1.769060 2.403661 2.112186 -5.483822 -5.769844 -1.933283 -0.019318 4.197283 1.319703 1.053683 -2.123369 -2.006560 -1.729944 3.346036 -5.591481 1.773152 -0.048708 -1.170195 1.221788 -4.024828 -1.397832 -3.616473 1.593512 1.194938 -5.838003 4.783577 2.637067 -4.424291 -1.671873 -5.476664 3.383805 0.361391 7.285759 -3.041340 -0.999128 1.438071 1.990767 -1.209811 -3.856068 2.135760 0.958329 -1.845056 -4.187030 -3.152197 2.267969 2.156580 0.317854 0.725963 2.868853 1.176677 -0.524443 6.069732 1.250946 -0.025689 -3.201688 -8.434198 1.034675 5.383833 0.316004 1.423402 -4.728431 -2.254138 0.000325 -0.129527 3.360073 2.554299 2.709895 3.471082 -4.025049 -3.319725 -1.622713 0.879681 0.171504 -1.862049 1.204263 -3.082676 -0.327635 -0.786124 1.282420 -2.102919 -0.548376 -4.077623 -0.326641 2.669417 -0.058205 -0.040979 4.773070 2.563056 -2.029854 0.427525 -1.126632 -1.064139 0.731183 -2.997046 -1.147200 -0.298148 0.171977 -3.366648 2.021362 0.680182 0.729101 0.073908 -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.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/reservoir-sampling.cpp__main = 1.078324 -0.719190 -0.193832 1.884995 0.346778 0.279270 0.472019 0.316316 0.312460 -2.938789 -1.336691 1.162934 0.206694 0.150198 0.247079 0.461224 0.830806 0.582311 -2.595127 -0.103310 0.532392 0.006711 -0.151631 -0.124380 -0.038824 -0.926460 0.815750 0.864789 0.306044 1.798693 -0.606949 0.846336 1.571953 0.073568 0.577836 1.380082 0.239770 -0.122605 -0.770242 -0.598039 2.620885 0.534120 -0.085341 1.059166 0.065030 2.020005 0.286060 2.106830 0.938295 -0.811206 1.145407 -0.630387 -0.784377 -0.315181 -2.015509 0.498905 1.280311 0.812377 -0.962037 0.984885 -0.477284 0.522149 0.622042 -0.108431 1.915532 0.908695 1.375288 1.453227 1.776264 -1.643200 0.108960 0.492458 0.522757 0.385062 0.981027 -1.159976 -0.808969 -1.510515 -0.054356 -1.757007 -0.172411 -0.429641 2.354947 -1.401923 -0.216201 0.686078 0.070163 1.650056 -0.839029 0.225073 -2.010432 0.056413 0.209285 2.103493 0.297507 0.221518 -0.174158 0.514026 -0.003463 0.742762 0.548501 -1.570946 -0.768967 -2.963780 -1.296627 -1.146093 0.398179 0.329506 -1.830157 0.084811 0.428800 1.075235 -2.511009 -0.290515 0.590459 0.770767 1.223423 0.191184 -0.748362 -0.191561 0.268289 0.558560 0.816312 -1.074852 0.501447 -0.912733 0.176378 0.319755 0.673954 0.179217 -1.637621 -0.735410 0.324618 0.137133 0.069701 0.527092 0.752046 -0.680726 0.973572 -1.139905 1.554320 -2.047275 -0.473077 -0.794609 -1.265437 -0.869183 2.765840 1.010028 1.622852 0.214789 -0.997275 -0.265023 -1.941329 -2.933712 0.216851 0.172698 0.466274 0.627226 -0.385384 0.574203 -1.323765 0.221155 0.623967 -0.869976 -0.766167 -0.024542 0.473282 -0.101987 -0.608303 -0.994202 0.281030 0.628350 -0.055984 1.585929 -0.590739 -2.397858 -2.227877 -1.089552 1.588327 -0.929678 0.125220 -0.475323 -0.455343 -1.485981 0.192514 -1.305664 0.247072 -0.091209 -1.507944 -2.230403 0.807189 -0.530071 -0.075666 0.897732 -1.623750 0.392111 0.590125 0.858844 0.278446 0.406584 0.080436 -1.876585 -1.568114 -0.106323 -0.802099 1.923451 0.794547 -0.057796 -0.829697 -0.930840 -1.320453 1.239747 -1.480988 0.857764 0.094022 -0.888469 0.840903 -1.279761 -0.105391 -1.429757 0.716927 0.627291 -2.324370 2.230871 1.437735 -1.360825 -0.501980 -0.814033 0.702756 0.314166 1.633607 -1.289861 -0.960662 0.573948 -0.001893 -0.031564 -0.655172 0.611908 -0.181702 -0.104074 -1.956894 -0.969160 1.326043 1.053043 -0.267348 0.321281 1.184628 0.011911 0.240319 2.059509 0.864230 0.167254 -1.269159 -3.618266 0.854472 0.734328 -0.134608 0.376666 -1.471506 -0.666962 0.531258 -0.305435 1.549179 0.656038 -0.144448 1.760531 -1.727801 -1.652256 -1.020247 -0.546716 0.494091 -0.513489 0.541871 -0.842306 0.314529 -0.284203 0.341644 -0.349501 -0.853084 -0.316955 0.613756 1.568381 0.170788 -0.004096 1.901402 0.417976 -0.787108 -0.148479 -0.089920 -0.460731 0.628360 -1.635924 -0.365331 0.126924 0.727800 -1.186234 0.634061 -0.214580 0.264954 0.312472 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 3.126264 -1.861931 -2.055544 6.318423 0.357961 1.573475 0.628087 -0.018452 0.805343 -9.026739 -4.138423 4.914682 1.098060 0.968935 0.552492 2.344972 2.169889 1.159690 -8.354143 -0.438913 1.741785 -0.471107 -0.316644 0.108293 0.087096 -2.773767 4.297440 1.582160 0.869675 5.168692 -1.604838 4.237355 4.724794 0.148657 1.863771 3.068143 -1.950202 -0.628752 -2.993944 -2.477299 7.185300 1.588853 0.414194 2.809832 -0.913219 5.689023 1.090595 5.744374 3.728198 -2.345825 3.425696 0.594733 -2.035926 -0.339821 -5.906741 0.896074 2.024523 0.899448 -1.937564 1.808920 -1.492283 1.824674 1.824141 0.160666 6.743648 2.013904 5.650970 4.831804 4.106156 -4.203803 1.371708 0.712475 0.432973 0.726555 4.145838 -3.320090 -3.169034 -0.959374 -0.684061 -5.160560 -0.296108 -1.178142 7.229868 -3.879464 -1.610000 -0.263908 1.095836 5.933285 -2.245772 1.408493 -5.834723 0.077287 0.123026 5.409860 0.985287 1.017433 -1.294697 1.235394 -1.021976 1.012869 1.761551 -4.854813 -0.197400 -7.384521 -3.453734 -3.675815 2.122955 1.937243 -5.903561 1.582927 -1.234702 3.693644 -7.656157 -0.980961 0.944270 1.873535 5.324748 0.988667 -1.827423 -0.839621 1.113887 2.669162 2.242390 -2.649837 2.153861 -2.796496 0.449682 0.965936 2.188124 1.236907 -5.447834 -2.359759 1.247904 0.228610 0.754322 3.062733 3.767545 -0.969111 2.770476 -2.817789 4.306140 -5.941584 -2.047853 -2.673223 -3.425558 -2.994360 7.140408 4.236935 4.989331 0.018227 -2.170008 -0.289174 -6.776273 -7.899673 -0.356516 0.264556 0.015794 2.502526 -0.947245 2.499913 -4.513461 2.034094 2.764891 -2.492920 -2.888733 -0.239704 0.699390 0.396852 -1.808943 -1.815811 -0.314063 -0.416087 -0.286502 6.116730 -0.660618 -8.586487 -8.192971 -2.524845 4.678247 -3.243941 0.435098 -2.436126 -1.336456 -3.633734 -0.534123 -3.993061 0.037669 0.350277 -3.836977 -6.428227 2.164283 -1.039199 -0.461721 2.130442 -4.883180 1.233385 3.378473 2.337969 1.021998 1.456320 -0.420302 -4.585135 -3.565600 0.903361 -3.509458 5.292411 2.665217 -1.146300 -3.180135 -2.980267 -4.134224 3.025545 -3.890531 3.270299 0.201924 -2.339955 1.261371 -4.389837 0.403976 -3.210137 1.408388 0.813730 -8.811422 5.872862 3.805036 -3.717481 -0.317745 -1.991821 3.058193 -0.111996 3.259081 -3.622986 -2.692089 0.426690 0.366601 0.157649 -1.164165 1.462623 -1.245172 -1.937304 -5.366437 -2.363529 4.810242 2.044074 -0.739624 0.045140 3.368414 -1.250204 2.067722 5.099112 3.207926 0.498243 -3.854109 -11.555529 1.605694 1.401165 -0.988566 0.681952 -3.748060 -1.678160 1.288187 -2.492740 4.332774 -0.349005 -1.228575 4.792876 -5.508190 -4.534284 -4.181478 -1.842304 0.707619 -0.209437 1.068233 -1.999187 0.727083 -0.521339 1.188662 -1.920325 -3.252108 0.977520 2.670976 5.246745 0.158455 0.568132 5.067955 2.243767 -1.668428 -1.061621 -0.083461 -2.981232 1.412488 -6.662402 -1.042308 1.516528 1.948217 -3.823400 0.549897 -0.591219 1.286274 -0.213888 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 2.807561 -2.243773 0.479992 2.477554 1.419299 -0.373625 0.812580 1.510506 0.299445 -4.756741 -2.718769 0.503435 -0.241546 -0.706715 1.279801 0.465318 2.326652 0.065878 -5.829362 0.754039 0.619042 -0.622589 -1.319973 0.167474 0.086297 -2.187343 -0.137412 2.566924 0.017837 2.719763 -1.620395 0.880761 2.326737 0.200630 2.421390 2.930500 0.157203 -0.846045 0.421167 0.028651 5.724855 1.125810 -0.405123 1.492677 1.952045 3.695830 -0.693261 5.266316 1.955603 -1.085368 3.664309 -2.975165 -1.528313 0.121438 -4.493642 0.796086 3.472272 1.161438 -2.977011 2.122411 -1.651547 0.964901 0.986577 -0.152900 4.292651 1.592428 2.312383 1.871713 3.703215 -2.328012 -0.358546 1.566937 2.306962 1.172149 -0.264122 -2.637236 -0.204479 -5.780944 0.913913 -3.356531 0.101712 -1.421260 3.712344 -2.047825 -0.042627 2.143466 -0.611396 2.597708 -2.068797 -0.171811 -3.849870 0.266551 0.926354 3.771662 -0.542730 0.525397 0.924835 1.079820 -0.100270 2.370274 0.029197 -3.020428 -3.497992 -6.954958 -3.138071 -1.520964 0.217599 -0.860807 -3.600665 0.131133 2.297500 0.537966 -3.571340 -0.433953 0.985625 0.900378 0.438869 1.725257 -2.388560 -1.670853 -0.012802 1.940875 1.524844 -1.127395 0.649050 -4.071982 1.229423 1.204241 1.572522 -0.397548 -2.349014 -0.475391 1.094811 0.332702 -0.869740 0.016448 0.316911 -1.653474 1.833165 -1.900602 2.996788 -4.301442 -0.663259 -3.077281 -1.739887 -0.819634 5.828236 2.664735 2.623226 2.200664 -1.768276 0.062936 -3.636676 -5.409583 0.002612 -0.705560 1.725351 -0.273031 -0.565581 0.573102 -1.162795 -0.871126 -0.206218 -2.115268 -1.292399 -1.562230 0.787273 0.006227 -1.109722 -1.961131 1.065842 3.066614 -1.196240 1.815238 -1.738832 -3.877432 -2.930353 -2.552615 2.489289 -1.271383 0.482219 -0.049388 -0.064945 -3.489058 1.252370 -2.307886 0.098675 -1.588318 -2.802043 -3.482776 1.083350 -1.199141 0.827761 0.732287 -2.672251 0.876498 0.841328 3.064638 0.719212 1.160655 -0.231843 -4.090685 -3.942170 -1.029568 -0.139066 4.388952 1.629587 -0.171768 -0.467120 -1.451013 -2.577566 2.824753 -3.272794 0.978746 1.013030 -3.165732 2.165796 -1.838931 -0.921441 -2.524271 1.696518 1.009798 -4.058487 4.579761 2.957862 -3.602987 -1.907358 -3.387258 1.242216 0.943109 4.116611 -1.154177 -0.296446 1.103735 0.704042 -0.391802 -1.428029 1.701916 0.440798 0.984188 -4.328646 -2.807873 2.548918 2.632211 -0.226832 0.632940 0.958895 1.652241 0.094673 4.561779 0.379193 0.292137 -2.003210 -7.566423 1.306396 3.529825 -0.061669 1.413218 -3.048955 -2.071815 -0.746958 0.115172 3.395710 2.948778 0.909996 3.130653 -2.179355 -3.214674 -2.160239 -0.154156 0.343586 -1.752524 1.157943 -2.008978 0.057586 -1.084233 1.328288 0.285746 -1.285721 -3.377938 0.467614 1.786376 1.124638 -0.937837 3.243515 0.562694 -1.564480 -0.740140 0.279369 0.073843 2.536411 -1.583889 -1.529752 -1.287450 0.959724 -1.762634 1.591044 0.463765 1.879378 0.922253 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.895960 -1.131453 -0.095853 0.993009 0.252606 -0.142830 0.226667 0.249719 0.328153 -1.460334 -0.605987 0.350284 0.010522 -0.185044 0.373111 0.309422 0.698625 -0.115960 -1.517126 0.295385 0.016987 -0.276626 -0.686365 0.239351 -0.040892 -0.772625 0.321431 0.757553 -0.050678 0.846375 -0.465756 0.328170 0.753240 -0.198047 0.716207 0.893496 0.280409 -0.070515 -0.161610 0.283719 1.774846 0.368047 -0.184759 0.458214 0.563615 1.180461 -0.027086 2.081499 0.868494 -0.375171 1.333921 -0.685801 -0.409793 -0.054298 -1.466419 0.230686 1.128465 0.259432 -0.991553 0.715722 -0.593907 0.338132 0.362416 0.405614 1.462369 0.500339 0.979904 0.662632 1.183918 -0.707270 -0.039302 0.506739 0.850379 0.403106 0.401210 -0.868006 -0.430095 -1.584272 0.271830 -0.461381 0.053180 -0.396463 0.874153 -0.751591 -0.204353 0.617522 -0.207859 0.868617 -0.769277 0.068452 -1.185302 0.051029 0.386860 1.426109 -0.137110 0.267350 0.163468 0.478299 -0.029538 0.647169 0.242258 -1.121374 -0.851068 -2.087231 -1.182815 -0.562989 -0.019644 -0.244909 -1.257302 0.054758 0.532695 0.032498 -1.157606 0.062885 0.295364 0.212741 1.027439 0.405981 -0.489872 -0.366653 0.148926 0.624475 0.537413 -0.349640 0.313899 -1.302069 0.691326 0.557545 0.435850 -0.097892 -0.693045 0.017743 0.347774 0.365473 -0.290116 0.099746 0.152131 -0.800691 0.639039 -0.601322 0.969574 -1.466249 -0.454524 -0.961836 -0.596561 -0.227362 2.110690 0.636126 1.190065 0.472679 -0.868535 0.007685 -1.354811 -2.116024 -0.075381 -0.188185 0.282174 0.027129 -0.178411 0.148262 -0.396575 -0.146600 0.143100 -0.705900 -0.369654 -0.361149 -0.232088 0.042336 -0.401354 -0.564146 0.237301 0.828995 -0.012425 0.800659 -0.402012 -1.905563 -1.021031 -0.651984 0.780811 -0.351078 0.239051 0.049560 -0.258983 -1.414936 0.384266 -0.724497 0.084699 -0.509902 -0.859776 -1.107664 0.315546 -0.344988 0.488349 0.103286 -0.943868 0.232200 -0.034801 0.863846 0.310733 0.447272 -0.012176 -1.438521 -1.325350 -0.161237 -0.171390 1.730855 0.242529 -0.065915 0.209386 -0.411188 -0.980981 0.752535 -1.441070 0.278959 0.523037 -1.070559 0.674674 -0.583571 -0.484105 -0.856107 0.566760 0.265500 -0.756688 1.659439 1.146239 -1.150817 -0.519753 -0.685773 0.496514 0.292488 1.304167 -0.512808 -0.154874 0.333292 0.326650 -0.094062 -0.331655 0.555563 0.043027 0.219613 -1.283978 -0.776838 0.776126 0.838687 -0.065814 -0.068566 0.186573 0.157035 -0.271441 1.365599 0.135909 0.272380 -0.693373 -2.427986 0.423205 0.671857 -0.286442 0.546063 -1.190615 -0.476711 -0.104005 -0.014873 1.035301 0.768831 0.313499 0.996145 -0.988758 -1.102370 -0.739217 -0.317058 -0.024357 -0.463443 0.550061 -0.661292 0.077965 -0.368365 0.506426 -0.235957 -0.269426 -0.616036 0.190757 0.389739 0.196040 -0.325650 1.042392 0.141187 -0.426805 -0.335543 0.116460 -0.188389 0.849991 -0.583271 -0.465256 -0.453332 0.441819 -0.614983 0.506061 -0.021106 0.672439 0.251115 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 5.409431 -2.493143 -2.528540 5.631301 0.934216 -1.708507 0.980066 1.542192 1.306130 -6.987308 -2.744027 7.109269 0.554963 -1.840010 -0.288974 2.357175 2.939006 1.180194 -8.772007 2.170496 -0.037091 -0.967607 -4.229392 -1.135981 -0.204398 -2.938138 3.916950 3.326830 -0.053036 4.683883 -2.423636 2.203940 3.743548 -0.282024 4.251806 4.515642 -0.769444 -1.167207 -1.465020 -1.137977 8.163382 3.508373 -0.280295 3.206296 2.362125 6.202545 1.403318 6.988049 3.978705 -1.428009 2.583808 2.547689 -3.313696 -0.787423 -7.257780 0.760773 2.565200 -0.291581 -4.078246 3.163412 -1.850205 1.463732 2.597709 2.211908 7.572520 1.355954 4.440260 4.269233 6.653895 -3.185411 0.847618 1.513162 4.803446 1.688891 4.954774 -2.917275 -4.844945 -2.397940 0.304763 -5.589107 0.756169 -1.378565 7.051525 -4.437282 -0.402443 0.661585 1.744535 5.541606 -4.174280 -0.785957 -5.734630 0.204348 -0.692717 8.496219 0.185243 2.767749 -0.587695 2.323571 -0.816324 2.195704 0.400540 -6.792270 -0.228884 -10.068540 -3.814526 -4.170017 -1.259409 -0.816678 -6.011122 0.606782 0.423195 5.703537 -7.478189 -0.658555 1.249263 -1.160452 5.005746 0.490012 -1.388833 -0.076172 -0.441765 2.970251 1.784994 -2.301724 0.343450 -1.863218 1.553378 1.830751 2.314404 1.317777 -6.416495 -0.144273 2.880862 1.057946 -0.451661 1.958769 1.417064 -4.150014 2.374642 -3.850590 4.704910 -6.346648 -2.381473 -4.002235 -3.254302 -2.127057 5.672375 4.072421 5.779561 0.626316 -0.404474 -0.037171 -7.707751 -10.574915 1.343113 -1.855909 -0.712659 0.052967 -0.431477 0.184437 -3.549655 -0.477058 3.094933 -3.959125 -2.642421 -1.790949 2.933382 0.662094 -1.725446 -1.635944 -0.590042 1.963004 2.881837 4.432075 -2.598794 -11.922199 -6.777280 -2.794511 4.547779 -2.383472 0.088350 -1.184674 -2.349351 -3.482728 0.561977 -3.931670 1.154877 -2.576064 -1.732344 -5.972641 1.244936 -1.421683 0.806850 -0.279012 -4.953398 1.926155 2.225313 1.903015 -0.124625 1.851326 0.186271 -5.586350 -4.170743 1.523288 -0.801848 7.368661 3.361814 0.279714 -2.253738 -1.689983 -5.528208 3.637965 -7.343400 2.970255 2.389532 -4.705998 4.004293 -3.842548 -1.429128 -2.858291 3.280579 0.025462 -6.450736 8.330806 6.428058 -6.084338 -1.217555 -2.348664 2.803579 1.396211 5.822960 -4.253476 -2.466432 1.740930 0.644954 -0.630791 -0.767883 2.187099 -0.376174 1.190662 -6.165112 -2.797540 4.724882 3.359040 -0.558164 -1.090508 -0.267000 -1.880414 0.235738 6.341159 1.958680 2.838169 -5.620510 -12.335041 1.562922 -0.640441 -0.773988 2.211327 -3.370617 -2.591626 0.015158 -3.076379 5.583589 -0.989721 -1.972946 4.627960 -6.971191 -6.008729 -4.569353 -1.528664 0.726949 -1.140730 4.041317 -3.330185 -0.043214 -2.480439 3.274914 -2.630766 -1.844787 0.393285 2.893032 2.930420 1.973125 -2.603171 5.582914 0.891335 -1.623296 -1.632240 -0.440305 -2.010165 2.160834 -6.193908 -1.873707 -1.334558 3.093713 -3.804242 3.402911 0.566830 4.365611 0.774541 -PE-benchmarks/subset-sum-problem.cpp__main = 1.554571 -0.649305 -1.016571 4.131281 -0.031519 1.029951 0.768964 0.126421 0.227151 -6.118024 -2.535799 3.179476 0.776846 1.188302 -0.075056 1.160448 1.096792 1.284469 -6.106624 -0.688238 1.623540 0.357831 0.633858 -0.181508 0.090428 -1.505864 2.561886 1.151211 0.754506 3.885621 -0.949612 2.905381 3.309511 0.026470 0.614570 2.309096 -0.651535 -0.238757 -2.228103 -1.623943 4.256086 0.659694 0.254274 1.966832 -1.331282 3.969114 1.111493 2.626798 2.482044 -1.842823 1.510737 0.725295 -1.556283 -0.941694 -3.224868 0.438869 1.452630 1.639682 -0.854569 1.369625 -0.094894 0.763287 1.325962 -0.145276 3.719590 1.569554 2.977250 3.502595 2.903616 -3.124050 0.940742 0.153512 -0.504793 0.157743 2.664317 -2.526757 -2.104889 -1.030073 -0.740318 -4.451196 -1.017275 -0.584383 4.003411 -2.714898 -0.791485 -0.307856 0.671291 3.967342 -1.025404 1.010638 -3.725290 -0.309150 0.356806 3.697746 0.741853 0.461473 -0.743152 0.763032 -0.268539 0.700434 1.268327 -3.217080 0.242530 -4.312858 -1.847020 -2.481031 1.219828 2.060874 -3.808491 0.559792 -1.460347 2.601106 -5.825941 -0.926011 0.710427 1.860828 2.629852 0.050256 -1.210949 -0.229747 0.817051 1.168515 1.702712 -2.320691 1.495958 -0.896310 -0.623654 0.384608 1.189465 0.960351 -3.817228 -2.315841 0.652041 0.058404 0.980384 2.218368 2.654919 -0.085041 1.696481 -2.567185 2.939120 -3.623681 -1.262238 -0.931827 -2.225141 -2.281384 3.330797 2.159394 2.540698 -0.624012 -1.654260 -0.058899 -4.062311 -5.219400 0.285099 0.551638 0.231857 2.368063 -1.014188 1.678043 -3.334750 1.415131 1.988983 -1.230882 -1.987044 0.045649 0.206485 0.570430 -0.980489 -1.154827 0.060062 -0.712913 0.260055 4.335677 -0.689213 -4.511428 -5.791950 -1.849056 3.375888 -2.072204 -0.241943 -1.896068 -1.178285 -2.422878 -0.347782 -2.773014 -0.301878 0.512513 -2.456742 -4.542303 1.848741 -0.789218 -0.732149 1.983426 -3.313169 0.532233 1.880491 1.379994 0.640219 0.331342 -0.151436 -2.491036 -1.994821 0.745423 -2.565506 2.625497 1.389441 -0.292482 -2.639628 -2.025801 -2.244729 2.229415 -1.819304 2.532385 -0.049023 -0.838143 1.202812 -2.973594 0.564777 -1.989988 1.084662 1.034812 -5.714811 3.974682 1.975579 -2.067485 -0.139130 -0.678494 1.586339 0.178751 1.683353 -2.666405 -2.611910 0.820369 0.267319 0.184391 -1.400573 0.718713 -0.754413 -1.287192 -3.162259 -1.382233 2.984454 1.323514 -0.600992 0.470762 2.766053 -1.218745 0.827160 3.207313 2.443755 0.299015 -2.113346 -6.344977 1.491791 0.533435 -0.227130 0.061706 -2.815712 -0.894036 2.013872 -1.434900 2.929227 -0.154823 -1.328913 3.307016 -3.960635 -3.040864 -2.774898 -1.346894 1.047325 0.235038 0.272004 -1.219634 0.929764 0.204316 0.394540 -1.058212 -2.429695 0.997033 1.934182 3.760321 -0.277197 0.739293 3.735088 1.187675 -1.007955 -0.596407 -0.075644 -1.970552 0.135048 -4.235124 -0.324884 1.432784 1.633159 -2.691725 0.467165 -0.956904 0.095651 0.059588 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 6.227580 -1.360022 -0.117136 6.012887 2.115402 -1.570204 -0.049560 4.085268 0.750100 -6.678935 -4.388018 4.516107 -0.510326 0.538935 3.069085 0.744082 2.683400 2.141668 -9.976151 1.740310 -1.728682 0.132522 -2.836022 -4.143821 1.121781 2.016054 2.685285 2.876249 1.269261 3.610806 -4.693489 1.699030 2.507079 1.444968 3.981033 -0.222487 1.031543 -2.222462 -3.936805 -5.848026 9.497437 2.097464 1.158830 6.808790 1.323471 4.325107 0.615669 6.454966 4.058839 -0.892625 3.169623 -5.152012 -2.735365 0.886788 -8.098938 3.768881 3.803592 0.685386 -3.333317 3.395960 1.297788 3.004191 2.951985 -4.027932 7.864988 2.165700 4.992149 4.265269 6.163749 -4.131998 1.540605 0.244673 6.724163 2.038977 0.381997 -6.563314 0.558259 -8.378594 1.412094 -7.768937 3.298935 -3.659662 6.901411 -4.177460 2.509406 2.622722 -0.956988 4.709207 -5.574316 1.756585 -5.123947 0.265279 -0.623451 5.782157 -1.033657 0.481421 1.706687 1.413054 -0.582513 3.250142 0.559962 -2.272872 0.808420 -10.783126 -4.294369 2.464427 -1.057505 -2.267427 -3.109128 1.882516 0.799564 3.024368 -5.537933 -5.217378 0.169849 -0.315405 -1.806314 0.627977 -0.871076 -2.846702 -1.529241 5.178820 1.144333 -4.925871 3.465485 -3.251493 -2.709876 2.797885 6.442093 2.763619 -2.401613 -2.772319 0.667465 1.801662 -1.845020 -0.084599 0.461855 -2.053483 3.441097 -2.500293 3.865903 -5.372126 -3.097272 -3.777292 -1.436992 -0.734323 9.329889 0.299665 4.730804 5.729272 -0.821004 -0.741823 -4.917123 -8.060117 3.714666 2.384004 0.607048 1.477056 0.237385 0.907336 -2.901790 -4.382582 3.749113 -5.652646 -6.349608 -4.114902 1.141699 -0.723295 -2.169714 -5.163525 5.544901 6.156020 -2.016104 2.376928 -1.366775 -6.713672 -3.877657 -2.566421 4.378928 -1.536729 0.573605 1.287660 0.895550 -3.485451 0.787307 -5.857068 2.076514 0.014691 -5.839588 -6.011763 0.762889 -0.849330 1.935433 1.192615 -4.682900 4.055090 0.822424 7.146561 -3.133036 3.889890 3.385055 -7.598291 -8.542520 -3.105227 0.968772 5.928327 1.164340 1.252806 -3.715498 -2.522138 -1.527201 5.034512 -7.725438 2.606109 -0.497824 -1.860847 1.666787 -4.758960 -1.897848 -4.587148 2.315886 1.896523 -8.682782 6.411969 3.612994 -6.396985 -2.532767 -8.522608 4.762646 0.397435 10.299179 -4.071430 -1.135860 2.056272 2.914306 -1.650658 -5.879285 3.078762 2.116039 -2.595171 -6.036327 -5.059673 3.208707 2.505149 0.781126 1.255602 3.880459 2.432412 -1.341579 9.421984 1.310435 0.371320 -4.782047 -11.596128 0.980779 9.955283 1.279786 2.396371 -6.656465 -3.894294 -0.818292 -0.298190 4.290271 4.268036 3.805220 4.441122 -4.684405 -4.140502 -2.376366 1.751724 0.376963 -2.832073 1.920231 -4.198429 -0.835374 -1.428849 2.040487 -2.673013 0.010573 -6.119496 -1.013685 3.342060 0.458298 -0.338189 6.226089 3.731261 -3.375269 0.884708 -1.657790 -1.541642 1.565142 -3.931658 -1.775815 -0.645190 0.138362 -4.733090 2.973753 1.804348 1.868222 -0.552809 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.863025 -3.642959 -1.833886 6.149854 0.192557 1.907629 0.715983 -0.098411 0.306410 -10.276289 -3.991004 5.488582 0.761113 1.378451 0.072692 2.401588 2.136211 1.093979 -10.097992 -0.819074 1.796127 -0.707302 0.704871 0.089122 0.338752 -2.539176 5.344935 1.359188 0.795709 4.930985 -1.477365 4.889709 4.733122 0.715393 1.609814 2.668573 -3.022276 -0.847383 -2.908721 -3.071323 6.972206 1.299523 0.836973 2.484563 -2.024882 5.284494 1.296119 6.309149 6.925498 -2.107801 3.811050 -0.863792 -2.382760 -0.005819 -6.243356 0.169891 0.548113 0.583992 -0.736571 1.440497 -2.050357 1.781939 1.520996 -0.719123 7.433900 1.434620 6.312411 5.002155 3.346849 -4.014151 1.532995 0.418054 -0.404167 0.901237 3.934288 -4.788240 -3.128880 -2.842170 -0.899784 -5.780745 -0.458810 -1.166807 7.120909 -3.209595 -2.141768 -1.395203 1.166618 5.951736 -1.781639 1.821964 -6.322540 0.305495 1.161418 4.517030 1.311523 1.124534 -1.219943 0.314481 -1.081434 0.787007 2.219941 -4.240332 0.644206 -8.124737 -2.217125 -3.484052 2.415454 2.529623 -5.447891 2.302015 -2.354968 3.561569 -7.703266 -1.583869 0.572569 1.697664 5.708038 1.742432 -1.427995 -1.369774 1.356484 3.115405 2.598147 -3.055944 2.129781 -3.224253 0.575942 0.398563 2.429916 1.297806 -5.516803 -2.795492 1.320180 1.040789 1.464090 3.585702 4.343198 0.630029 2.410775 -2.612283 3.833112 -5.128065 -1.786527 -2.351357 -3.081863 -3.136810 10.307365 5.092648 4.566603 0.042364 -1.777469 -0.124393 -6.310680 -8.035696 -0.382701 0.115066 0.003417 2.957200 -0.868699 2.629829 -4.605954 2.569958 2.353355 -2.074724 -2.965569 -0.303106 -2.495515 0.952816 -1.525084 -1.882921 -0.296687 0.117616 -0.806048 6.378973 -0.470095 -10.444732 -8.225540 -2.690771 4.444545 -3.293349 -0.051209 -2.772053 -1.073355 -2.814188 -1.011953 -3.934521 -0.606997 1.102531 -4.827807 -6.408305 2.041581 -0.904511 0.213960 2.288298 -4.424579 0.931042 2.844157 4.092340 1.093488 1.548533 -0.777127 -4.540760 -3.693544 0.900851 -3.829035 4.686230 1.775857 -1.304401 -4.086061 -2.982949 -3.817430 2.810543 -4.150243 3.457998 -0.435518 -3.076432 0.835959 -4.067197 1.559415 -2.472945 1.199850 0.653222 -11.903727 6.023534 3.503023 -3.314968 -0.281217 -2.190556 2.748116 -0.315935 2.616344 -3.372740 -2.527311 0.196846 0.404081 0.263097 -0.730759 1.201983 -1.352588 -2.874771 -5.607800 -3.217763 4.742976 1.405650 -0.678886 -0.306132 3.600814 -0.678149 1.940877 5.493639 3.254895 0.127565 -3.933829 -14.038325 1.317306 5.573602 -0.922240 1.245648 -4.846093 -1.735108 1.716460 -3.991540 4.075113 -0.046556 -1.556798 4.309873 -4.803177 -3.752053 -4.403086 -1.939710 0.700299 0.090104 0.882988 -1.823362 0.458819 -0.382543 0.917370 -1.764676 -3.157167 1.642654 2.923116 5.518198 0.591019 1.279444 4.565273 2.325798 -1.361617 -1.436411 -0.127315 -3.369191 1.856297 -7.317333 -0.507170 1.972804 1.734617 -3.476252 -0.003950 -0.109936 1.218180 -0.402371 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 2.153655 0.052358 -1.808039 3.708408 -0.279410 -0.025940 0.779197 0.610131 0.020487 -5.164235 -2.500670 1.667589 1.173078 0.279346 0.252583 2.076821 0.582934 1.435294 -4.093914 0.290558 1.588997 0.141836 -0.526353 -0.377004 -0.204927 -1.628783 0.511206 0.510544 0.411458 3.687964 -0.873607 2.298774 3.181421 -0.530034 0.739236 2.637043 -0.309267 0.085014 -0.917282 -0.559700 3.912407 1.385448 -0.035067 0.997559 -0.965034 3.762180 0.214586 3.562099 -1.325458 -1.841803 1.976882 -0.490719 -1.604024 -0.119934 -2.770137 0.856385 2.227829 1.910475 -1.160641 1.750161 -1.641056 0.934724 1.610379 0.280387 3.703332 2.139128 2.292549 3.319561 3.474060 -2.669148 1.046909 0.582892 -0.233853 -0.748978 2.650077 -2.043168 -1.883981 -0.877212 -0.189733 -3.673786 -0.309893 0.041426 6.020618 -3.308896 -0.401967 0.836443 1.409948 3.733949 -2.060463 0.814225 -3.063642 -0.127696 -0.914645 4.296075 0.495017 0.800523 -1.270934 1.231070 -0.157074 0.539466 0.101407 -2.901487 -1.582912 -4.017270 -2.369534 -2.117463 0.516571 1.669455 -4.235760 -0.398408 0.289856 2.653864 -5.742413 0.241105 1.168066 1.711467 3.530312 1.878234 -2.190813 0.283480 0.303490 0.981576 1.624026 -1.752140 1.106185 -1.533353 0.080072 0.617697 0.922577 0.550520 -4.811560 -1.021242 0.533267 -1.366521 0.665644 2.156228 2.237318 -1.526649 1.842278 -2.523195 2.764458 -4.554364 -1.136820 -1.408925 -4.106956 -1.646952 3.684327 2.837333 2.611063 -0.689049 -1.748409 -0.531492 -4.648651 -4.615988 -0.118423 0.102264 0.607989 1.340380 -0.668817 0.858347 -2.555752 1.518060 1.683602 -1.635704 -1.465646 0.135892 3.609032 0.347735 -1.357607 -1.842603 -0.569295 -0.173528 0.472748 3.571114 -0.700508 -3.757259 -5.497936 -1.791783 3.257059 -1.531868 0.394386 -1.930774 -0.952542 -2.804471 -0.002497 -2.652075 0.549304 0.378456 -1.461583 -4.228491 1.532292 -0.442524 -1.524972 0.981011 -2.665232 0.535373 2.635158 0.569041 0.432098 0.509580 0.134898 -2.769681 -2.302481 0.910210 -1.964464 3.224991 2.616816 -0.047937 -1.560533 -1.499057 -2.942470 2.277271 -1.779771 1.789991 -0.123997 -0.522250 1.986492 -3.150535 -0.029389 -2.975436 1.190419 0.383935 -5.098018 3.755636 2.628312 -2.083312 0.039904 -1.007507 1.795026 0.618312 2.248129 -1.902459 -1.956895 0.934717 -0.256188 -0.089972 -0.965032 0.874998 -1.660502 -0.415147 -2.539562 -0.588506 2.869405 1.734315 -0.637181 0.310206 1.561270 -1.169778 1.067094 2.684870 2.281034 -0.481077 -2.627574 -6.297424 1.446779 -1.077766 -0.692477 -0.261183 -1.493202 -0.755008 1.470941 -1.156817 3.037944 0.972733 -1.171929 3.133101 -4.179051 -3.518352 -2.269149 -0.086905 0.820868 -0.670752 0.144777 -1.538352 0.990193 0.297584 0.895387 -0.481310 -2.738297 -0.230308 1.383128 3.933344 -0.156298 -0.361498 3.770126 0.939877 -0.516408 -0.766261 0.200369 -1.089918 0.274598 -3.213495 -0.739848 0.703658 1.757866 -2.607031 1.458721 -0.705903 0.003438 1.262776 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 45.316592 -2.958788 -54.523365 88.068869 -8.342809 9.265952 10.215748 -2.080560 3.764035 -106.600202 -45.980982 55.311075 30.760917 15.588853 -2.532260 54.104636 11.035570 20.435901 -69.222752 1.986796 25.925422 -7.693492 -16.409489 0.794113 -7.072391 -37.840336 42.400394 4.798453 8.905844 74.272074 -12.346533 60.885852 66.559033 -16.787992 16.348118 48.748271 -14.294184 3.018324 -41.142819 -18.700464 74.892905 27.042329 3.828468 19.700563 -33.824157 77.070798 14.128937 80.945278 -17.567422 -37.471389 41.522702 19.730515 -30.492935 -4.805726 -60.064108 14.113231 28.279007 22.888367 -19.063461 26.411498 -32.908879 20.184783 34.034607 23.179014 80.955297 35.737475 61.715414 76.051094 62.956545 -58.034205 25.087756 16.077548 -12.239806 -10.629572 76.682674 -42.775438 -54.994798 29.813649 -5.682721 -54.002619 -6.999482 0.221208 124.198399 -66.471997 -25.726921 -3.440163 34.491227 83.885801 -42.651470 28.073066 -63.629231 -5.368682 -20.328099 86.700776 14.546728 21.071196 -32.540094 22.830427 -12.217273 5.466122 7.402579 -67.611844 -7.718933 -61.302579 -47.855064 -51.178454 18.266025 44.840935 -88.245554 -1.013668 -23.307029 60.141686 -116.861497 7.163824 18.857886 32.329108 113.890256 44.576161 -34.400052 7.662137 18.974796 21.687838 35.508972 -29.419468 29.944452 -21.106445 9.438495 11.354441 18.146934 18.770505 -110.070710 -20.067195 14.411960 -25.456949 21.774406 52.621973 58.994978 -33.679128 37.961667 -42.944165 55.029926 -93.636088 -34.562514 -29.785643 -87.777884 -39.226373 69.334779 61.999501 71.974725 -23.971963 -33.026213 -7.901609 -104.656548 -97.481279 -13.238062 4.444654 -8.397532 39.173998 -13.637833 29.009960 -60.611641 45.522652 49.040995 -32.309660 -37.699747 9.462513 61.395291 13.378108 -26.308418 -27.332703 -21.087222 -32.052375 22.310879 95.119754 -3.970814 -112.281411 -126.693457 -30.749005 66.915550 -36.374353 7.924544 -43.825210 -31.468422 -54.248249 -12.643920 -56.550047 10.238909 11.895023 -24.966713 -86.499087 35.371012 -6.020289 -33.673640 21.081371 -59.018794 12.199275 59.884899 3.203976 10.694516 13.145376 -3.784044 -51.537978 -36.984046 34.909679 -50.934420 72.493590 52.091236 -8.620845 -26.879336 -36.412794 -64.748164 36.408891 -42.134979 43.983544 3.472444 -5.675452 28.704428 -73.580821 4.919553 -54.371666 23.180728 4.287284 -107.437391 73.765869 57.870090 -38.785435 9.233259 -3.188971 41.279783 3.547130 34.110948 -42.377631 -45.019298 13.747577 4.429795 0.078902 -7.904457 12.377146 -37.666242 -24.917892 -49.134733 -9.564507 61.197727 28.480426 -12.960857 -9.193376 31.452327 -43.297461 25.568770 49.497454 55.196467 -2.341452 -57.820442 -138.204561 26.088697 -49.142773 -29.714593 -5.614785 -28.951027 -8.530691 36.058757 -44.016040 60.455546 -11.278527 -33.039919 64.775537 -96.382242 -71.746064 -56.355975 -14.367406 11.315567 -0.428696 3.912717 -32.628708 20.784798 1.136556 15.122855 -30.854855 -54.294066 29.248444 37.851967 82.328799 -9.390482 2.945882 74.559581 27.367469 -1.928001 -23.476354 9.535566 -39.569200 4.002197 -91.103069 -13.720976 25.228986 38.398390 -54.592808 14.000032 -15.200087 1.896808 17.800138 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.770831 -0.607476 -0.270423 2.056113 0.264902 0.241200 0.532289 0.179892 0.029751 -3.244257 -1.366523 1.711477 0.163698 0.131568 -0.126069 0.259978 0.755677 1.033090 -3.292839 -0.224025 0.623724 0.252232 0.130203 -0.600255 -0.007212 -0.666251 1.436320 0.902166 0.374794 1.828609 -0.516233 0.934013 1.575492 0.336517 0.582826 1.387166 -0.218145 -0.061473 -0.891565 -1.020866 2.637929 0.568946 0.168442 1.176644 -0.042417 2.009535 0.955241 1.022494 1.539241 -0.712187 0.492948 0.173152 -0.839540 -0.644085 -2.120143 0.250116 0.940546 1.051916 -0.722875 0.935181 -0.116236 0.358321 0.661193 -0.350945 1.996607 0.522609 1.437648 1.623737 1.647426 -1.614455 0.216484 0.164590 0.473511 0.233228 1.180196 -1.428855 -1.206771 -1.441628 -0.524437 -2.933640 -0.119060 -0.096398 2.662214 -1.277754 -0.157526 0.141985 0.233812 1.692812 -0.563486 -0.142705 -2.140558 0.006718 -0.029001 2.197804 0.609211 0.181487 -0.153330 0.432088 0.079267 0.632259 0.642900 -1.637524 0.201635 -3.466777 -0.748822 -1.310723 0.439419 0.413933 -1.464884 -0.026729 -0.088003 1.501024 -2.839852 -0.597943 0.617710 0.608859 0.649836 -0.999983 -0.600067 0.108097 -0.006549 0.544601 0.956724 -1.390089 0.274814 -0.026272 -0.209390 -0.019095 0.713141 0.475134 -1.822650 -1.181402 0.206973 0.353410 0.231638 0.632106 0.856554 -0.156908 0.808458 -1.381193 1.621667 -1.780404 -0.023031 -0.507843 -1.169233 -1.067210 2.272272 0.965643 1.282989 -0.325307 -0.529096 -0.072510 -1.878110 -3.026354 0.784311 0.276496 0.300977 0.735538 -0.397766 0.556221 -1.601415 0.258089 1.150791 -0.669695 -0.849587 0.077580 0.409836 0.099011 -0.616700 -0.825022 0.238799 0.492097 0.319706 1.591259 -0.843808 -2.637472 -2.408000 -1.020817 1.649416 -1.013776 -0.225648 -0.597589 -0.616318 -0.950370 0.145334 -1.462494 0.280013 -0.036590 -1.394891 -2.332055 0.692211 -0.555053 -0.038778 0.978441 -1.571523 0.364599 0.789260 0.830273 0.000159 0.257954 0.358253 -1.671985 -1.229031 0.161616 -0.917866 1.413900 0.825777 0.134974 -1.764958 -0.788405 -1.120730 1.034237 -0.850764 1.113046 -0.165121 -0.910322 0.899025 -1.335013 0.708822 -0.973531 0.612821 0.638022 -3.637790 2.330338 1.426619 -1.195709 -0.330058 -0.466725 0.499448 0.158895 1.258662 -1.555920 -1.267968 0.616059 -0.389302 0.038902 -0.754382 0.397654 -0.026688 -0.294587 -2.156641 -1.075994 1.432464 0.730851 -0.233419 0.400397 1.187610 -0.296046 0.126331 2.315183 1.001776 0.421315 -1.459818 -3.875119 0.816546 1.074362 0.191125 0.298553 -1.054340 -0.725978 0.777855 -0.623431 1.481615 0.524413 -1.025808 1.694141 -1.750231 -1.536674 -1.201655 -0.607082 0.865866 -0.414114 0.476624 -0.864480 0.305571 -0.370594 0.255268 -0.369087 -0.850594 0.211617 0.910668 1.808318 0.383095 0.061343 1.896080 0.241324 -0.830266 -0.082681 -0.216910 -0.640242 0.604414 -2.181962 -0.312451 0.324114 0.894145 -1.218305 0.574376 -0.323449 0.378242 0.315324 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 1.140775 -0.890152 -0.578034 2.622932 0.295379 0.600686 0.390779 0.149799 0.209261 -4.020573 -1.876546 2.360337 0.202962 0.352349 -0.028627 0.644116 1.022962 0.836489 -4.293684 -0.269379 0.723736 -0.088507 0.268412 -0.423021 0.125521 -1.015972 2.068020 1.000443 0.364592 2.136710 -0.727028 1.635323 1.947715 0.510464 0.881367 1.371989 -1.054193 -0.461456 -1.232615 -1.371821 2.927391 0.829625 0.117868 1.309806 -0.278188 2.396034 1.158514 1.516834 2.289283 -0.787714 0.591468 0.127500 -1.173012 -0.447612 -2.565970 0.119489 0.539833 0.538567 -0.577580 0.825799 -0.488432 0.615287 0.713082 -0.505941 2.834829 0.256701 2.340963 1.948334 1.678360 -1.821744 0.475963 0.182674 0.552027 0.551927 1.502081 -1.706540 -1.536714 -1.209751 -0.531319 -3.258154 -0.066077 -0.409912 3.211404 -1.392026 -0.664898 -0.362487 0.304339 2.405800 -0.780171 0.236972 -2.470447 0.115302 0.039192 2.170933 0.722762 0.336475 -0.337345 0.418357 -0.226563 0.565756 0.736947 -2.007019 0.430414 -4.047601 -0.761027 -1.604851 0.807075 0.593754 -2.015001 0.706561 -0.628484 2.172128 -3.192802 -0.792553 0.468879 0.533719 1.129246 -0.731130 -0.574485 -0.287088 0.249735 1.248221 1.135296 -1.706759 0.611470 -0.405260 -0.061599 0.083560 1.086624 0.690497 -2.072232 -1.359209 0.591655 0.573778 0.461791 1.109344 1.430571 0.083061 0.988843 -1.376574 1.887384 -2.186479 -0.233514 -0.902483 -1.092457 -1.337278 3.252725 1.901672 1.704948 -0.022414 -0.176918 0.065768 -2.536691 -3.620753 0.504497 0.225020 0.045264 0.871538 -0.392723 0.970488 -1.966167 0.607103 1.289227 -0.960035 -1.191800 -0.114391 -0.115431 0.366483 -0.701275 -0.790804 0.043968 0.312992 0.067725 2.265426 -0.654522 -3.827249 -3.057066 -1.243729 1.958843 -1.443543 -0.208366 -0.988556 -0.593639 -0.888512 -0.035780 -1.655746 0.054690 0.199087 -1.846326 -2.787348 0.660774 -0.532432 -0.106846 1.058226 -1.959537 0.496094 1.310241 1.345927 0.198867 0.544612 0.010450 -1.781415 -1.354103 0.281375 -1.427394 1.880837 1.079647 -0.327231 -2.241827 -1.059343 -1.533215 1.439321 -1.176604 1.478469 -0.286468 -1.191338 0.641887 -1.665606 0.810408 -0.965538 0.703107 0.436700 -4.963297 2.635196 1.900095 -1.575300 -0.279123 -0.889872 0.969189 -0.044919 1.408909 -1.797274 -1.289490 0.296310 -0.107109 0.067410 -0.652080 0.585634 -0.140085 -0.904647 -2.378203 -1.226222 1.928723 0.682581 -0.242268 0.210189 1.458251 -0.147573 0.559294 2.497580 1.161578 0.412196 -1.815027 -5.389770 0.691530 1.922123 -0.095681 0.669852 -1.524188 -0.933391 0.613987 -1.461203 1.840744 0.216850 -1.080513 1.956308 -1.893374 -1.698746 -1.850453 -0.878440 0.607209 -0.173421 0.785692 -0.928183 0.133556 -0.478673 0.403382 -0.733037 -1.231607 0.528811 1.270438 2.157541 0.558096 0.269308 2.091027 0.680191 -0.884904 -0.453458 -0.222377 -1.336006 0.660314 -2.939164 -0.375281 0.610630 0.880049 -1.462464 0.261306 -0.113798 0.771547 -0.063602 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 3.059033 -3.269828 -3.237267 9.520515 0.243177 1.986729 1.421594 -0.748752 0.473602 -13.382271 -5.321049 9.555739 1.332329 1.356430 -1.231436 2.061360 2.598560 3.228493 -13.619474 -1.287011 2.106332 0.064096 0.351565 -1.724770 -0.107125 -2.838731 9.233479 2.903816 1.369887 7.043773 -1.356358 5.638527 6.357591 0.978925 2.127125 4.529080 -3.477489 -0.222145 -5.364070 -4.953407 9.719167 2.350243 1.206304 4.529061 -1.827183 7.755661 4.834968 4.475454 8.604796 -2.637827 2.243175 4.420299 -3.233753 -2.618718 -8.677852 0.144592 1.874795 2.236569 -1.655187 2.468679 -0.450339 1.498052 2.710088 -0.167051 9.123199 1.233629 8.037451 7.269869 5.298111 -6.186099 1.804646 0.255299 0.900201 0.977771 6.955700 -6.260650 -6.771465 -1.178505 -2.650689 -10.993491 -0.557426 -0.445199 10.579355 -4.697851 -2.577696 -2.592359 1.994136 7.937703 -2.071840 0.685919 -8.509461 -0.147680 -0.336874 8.643629 2.871333 1.355813 -1.548498 1.271830 -0.770864 1.386885 3.283457 -7.116425 4.022132 -12.352235 -2.451846 -5.907369 2.757790 2.919186 -6.245861 1.337896 -3.939572 6.151010 -11.513114 -2.622102 1.750529 1.920314 6.417672 -3.714726 -1.520747 0.452539 1.027148 3.001563 4.076152 -5.078549 1.892743 0.626097 -0.308898 -0.141206 2.738291 2.900947 -8.410039 -4.935490 1.204146 2.071838 2.060376 4.025686 5.272217 0.250012 2.997245 -4.752629 6.192908 -7.187923 -1.090529 -2.118279 -4.236931 -4.873039 8.257757 4.980905 6.362474 -2.537431 -1.310296 0.307893 -8.697784 -12.245728 1.953401 1.101414 -0.971478 3.836713 -1.466202 3.346499 -7.222057 2.923001 6.139448 -2.387176 -4.163592 0.710052 0.026556 1.447719 -2.305538 -1.755497 -0.416218 -1.206914 2.119905 8.638579 -1.920431 -14.489803 -11.430733 -3.194396 6.551463 -4.584192 -1.180998 -3.391759 -3.269704 -3.148386 -0.926694 -5.866302 0.399863 0.748988 -5.217614 -9.197159 2.749635 -1.590612 0.013423 3.606833 -6.702405 1.361368 4.422761 3.404201 0.287288 1.484376 0.722046 -5.954535 -3.705894 2.333356 -5.190906 6.062262 3.181931 -0.474169 -7.398003 -3.436519 -4.937764 3.006535 -3.636399 5.427004 -0.625042 -3.413976 2.163445 -6.194948 3.808043 -2.750318 1.828374 1.572633 -16.421071 9.194007 5.727248 -4.148592 -0.026981 -0.336385 2.648924 -0.601654 3.146506 -6.585792 -5.512576 1.286946 -0.756801 0.425339 -1.732823 1.016915 -0.667727 -3.456333 -8.203598 -3.954928 6.376177 1.667040 -0.856425 0.087121 4.485463 -3.249721 1.306770 8.336895 4.789495 1.988163 -6.093576 -17.345073 2.425709 2.919268 -0.739423 1.111658 -4.190113 -2.432737 3.527949 -4.750521 5.595661 -1.135535 -5.387147 6.378251 -7.785492 -5.719241 -6.349131 -3.458460 2.735793 0.189185 1.781260 -3.147415 1.115040 -1.464311 0.775134 -3.394578 -3.849183 4.290307 4.887195 7.662947 0.945654 1.177898 6.956180 1.993566 -2.425858 -1.408481 -0.688883 -5.063465 2.159846 -11.365604 -0.822583 2.740911 3.693436 -5.055992 0.459972 -1.178302 2.053172 -0.116070 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 1.727370 -0.803421 -0.887483 3.525837 0.238930 0.476455 0.725316 0.229793 0.164091 -5.260790 -2.052156 2.640236 0.544788 0.397419 -0.102038 1.123168 1.121561 1.166670 -4.798271 -0.218334 1.072256 0.122601 -0.187601 -0.431562 -0.079284 -1.344747 1.917301 1.101078 0.473459 3.141111 -0.902153 1.932855 2.827977 0.039805 0.767352 2.165728 -0.164052 -0.091330 -1.431064 -1.202622 3.992638 0.967692 0.054792 1.598537 -0.488226 3.290605 0.880509 3.129604 1.533200 -1.439290 1.410252 -0.015813 -1.421780 -0.572300 -3.177199 0.553436 1.615065 1.502753 -1.141031 1.504174 -0.742929 0.696947 1.160775 0.020527 3.445921 1.537159 2.526802 2.822248 2.938979 -2.575327 0.529341 0.467999 0.267761 0.281142 2.338473 -2.113973 -1.898763 -1.533874 -0.327412 -3.626716 -0.421888 -0.338684 4.527165 -2.355310 -0.592484 0.380253 0.724588 3.083823 -1.408253 0.452918 -3.205769 -0.091020 -0.159215 3.896427 0.722069 0.644953 -0.570368 0.802781 -0.048071 0.880697 0.784871 -2.664947 -0.293622 -4.680545 -1.858450 -2.051016 0.578904 1.075832 -3.209624 0.135596 -0.165978 2.258132 -4.842575 -0.520503 0.939476 1.108841 2.817845 0.427802 -1.323164 -0.014854 0.275415 0.877779 1.408659 -1.900436 0.912184 -0.869742 -0.067857 0.317265 1.083015 0.636246 -3.585703 -1.346304 0.539077 -0.121791 0.480508 1.404167 1.706467 -0.822747 1.483310 -2.060797 2.550880 -3.430607 -0.781233 -0.964301 -2.565256 -1.595593 3.831947 1.949565 2.535852 -0.315656 -1.310751 -0.355282 -3.632192 -4.917229 0.366282 0.313458 0.324406 1.311376 -0.654649 0.913691 -2.536999 0.870011 1.775717 -1.330922 -1.429662 0.088394 1.309163 0.183018 -0.990328 -1.382591 0.068668 0.188169 0.452567 3.276477 -0.920437 -4.667799 -4.545536 -1.618664 2.708239 -1.572673 -0.052646 -1.281154 -0.993760 -2.089730 0.016807 -2.299317 0.298688 0.066021 -2.125811 -3.894807 1.402623 -0.694157 -0.468141 1.297423 -2.672611 0.593520 1.587835 1.273395 0.317633 0.453355 0.200380 -2.716929 -2.143623 0.476752 -1.563072 2.716887 1.514598 -0.036201 -1.922097 -1.413853 -2.379082 1.880051 -1.988838 1.697619 0.021722 -1.257294 1.383501 -2.480997 0.368995 -2.052134 1.073130 0.735854 -4.830903 3.869806 2.353566 -2.046462 -0.427867 -0.854468 1.243386 0.323014 2.144338 -2.452726 -2.129065 0.782384 -0.204443 -0.006180 -0.909081 0.803555 -0.729462 -0.510625 -3.019995 -1.377214 2.460235 1.433210 -0.471734 0.321395 1.854204 -0.729365 0.541398 3.200324 1.759262 0.342013 -2.209535 -6.293779 1.270934 0.358251 -0.355889 0.345130 -2.077372 -1.013111 1.368201 -1.139727 2.530347 0.415397 -1.076286 2.754024 -3.501339 -2.712683 -1.987008 -0.915468 0.944618 -0.433101 0.615343 -1.415803 0.564009 -0.377571 0.639330 -0.779602 -1.769956 0.423640 1.337905 3.031913 -0.015331 -0.020471 3.155440 0.690232 -0.948346 -0.437248 -0.115027 -1.056711 0.692684 -3.522961 -0.433407 0.618716 1.425822 -2.058802 0.983867 -0.413910 0.482071 0.646046 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 6.298367 -4.357912 -6.626761 15.700192 -0.153941 4.028585 1.257469 -2.189738 0.669282 -20.852211 -7.493097 13.148565 3.059062 3.293000 -1.063241 6.394217 3.993710 2.225282 -18.511893 -1.539749 3.590275 -1.730019 -0.832900 0.481121 -0.388521 -5.998896 12.740576 3.054823 1.431427 11.521821 -2.609582 11.310824 11.065651 -0.388187 3.038080 6.356918 -4.937293 -0.676636 -8.368773 -5.442501 13.930564 2.994992 1.255580 5.026511 -4.778444 12.111991 4.542133 12.934848 9.833721 -5.309444 6.574953 5.132660 -4.661843 -1.570525 -12.690901 0.542826 2.324325 2.260029 -2.588058 3.348781 -3.566287 2.979619 4.310289 2.282272 15.582679 4.255983 13.689043 12.072045 8.727163 -9.294612 3.521608 1.404802 -1.296403 1.263053 11.861578 -8.330308 -9.442826 1.147318 -1.840890 -11.433525 -1.867081 -1.386085 16.556360 -7.926262 -6.099982 -3.568008 3.903310 13.889621 -5.210533 4.374801 -12.369121 -0.773966 -0.373610 13.273289 3.429447 3.161697 -3.373285 2.187226 -2.344954 1.622574 3.688124 -11.094930 3.384416 -14.845500 -7.075462 -8.682599 4.236753 6.118737 -13.439233 3.355941 -6.224615 8.644033 -18.379029 -2.057569 2.051964 3.593992 16.866944 3.221746 -3.864386 -0.923800 3.171380 5.379406 6.013006 -5.772759 5.532929 -3.692433 1.061637 1.233709 4.391358 3.706854 -14.601338 -5.336993 2.973434 0.113362 3.453209 7.831967 9.771711 -1.292634 5.492750 -5.993770 9.398576 -13.102377 -4.612965 -4.472120 -9.016664 -6.909475 13.985241 10.055698 11.708128 -2.338554 -4.332571 0.089909 -16.027034 -18.632732 -1.585092 1.050558 -2.356364 6.760414 -2.419193 5.816009 -10.699409 6.738040 9.039540 -4.877145 -7.063462 0.727864 0.775577 2.729404 -3.591934 -2.923966 -1.822767 -4.703516 2.152101 16.823804 -0.948332 -23.690431 -20.447551 -4.970193 10.073364 -7.010042 -0.302002 -6.553509 -4.841825 -7.331023 -2.179366 -8.904274 -0.742642 1.520656 -7.629227 -14.602251 5.437253 -1.688986 -1.839071 4.351640 -10.840742 2.282842 8.263367 4.825395 2.203897 2.507261 -1.092955 -8.548226 -6.205059 4.476476 -8.428577 10.691811 5.541344 -2.229474 -7.514244 -6.306889 -9.772183 5.600943 -7.733277 7.976986 0.777749 -4.879332 2.333012 -11.016542 2.668977 -5.294483 3.103988 1.163995 -21.616246 13.865856 9.065297 -7.152017 0.246802 -1.467163 6.277449 -1.048107 5.221100 -9.319543 -7.919070 0.518644 1.503840 0.456708 -1.156798 2.235953 -3.879543 -6.117697 -10.808510 -5.004077 10.705450 3.590030 -1.530192 -1.677571 6.806421 -5.374997 3.805471 10.409397 7.773182 1.760246 -8.189021 -26.827857 3.245797 -0.545721 -4.040848 1.710610 -8.151754 -2.849265 5.339274 -8.584950 9.255080 -3.905921 -5.609306 9.968537 -14.245038 -9.546481 -10.453713 -5.244699 1.655035 1.359934 2.104778 -5.000093 1.700300 -1.636598 2.225964 -6.145692 -7.321946 6.848084 6.953759 12.039263 -1.208778 1.828439 10.784820 4.667402 -2.021338 -3.896147 0.516856 -8.153726 2.631131 -17.911758 -1.442287 4.814126 5.344563 -8.014203 0.030129 -1.490676 2.927697 0.184491 -PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.785133 -0.618935 -0.968784 3.400766 0.199056 0.321835 0.645726 0.288267 0.092993 -4.795097 -2.214335 2.523511 0.578736 0.286141 -0.017568 1.201407 1.142171 1.073919 -4.862238 -0.115064 0.980263 -0.132327 -0.363011 -0.428829 -0.078236 -1.477026 1.891533 1.289233 0.352616 3.024161 -0.931885 1.839388 2.645259 0.075205 1.074005 2.181279 -0.607801 -0.215395 -1.336182 -1.085179 3.949600 1.074544 0.015074 1.418318 -0.283246 3.363528 0.956196 2.638773 1.198772 -1.264539 1.349677 0.398555 -1.473919 -0.547545 -3.212044 0.386906 1.621039 1.192036 -1.190180 1.477140 -0.904287 0.832363 1.206328 0.116861 3.607180 1.106309 2.657284 2.668482 2.796477 -2.492703 0.630187 0.440889 0.563516 0.193954 2.118691 -1.987927 -1.957868 -1.209289 -0.305185 -3.854910 -0.113694 -0.258316 4.421074 -2.293162 -0.638275 0.193718 0.667996 3.155046 -1.525819 0.282098 -3.118774 0.007064 -0.378722 3.844957 0.702635 0.651736 -0.452566 0.928164 -0.121095 0.863501 0.559070 -2.822086 -0.260755 -4.734271 -1.811852 -2.103043 0.615624 0.877884 -3.124917 0.217701 -0.091580 2.322877 -4.560156 -0.489968 0.833249 1.021819 2.260626 -0.000963 -1.283509 -0.076619 0.182531 1.218648 1.525229 -1.761400 0.875383 -0.874923 0.119206 0.398066 1.159339 0.709650 -3.484316 -1.216838 0.702868 -0.255920 0.458043 1.435449 1.617677 -0.707374 1.487071 -2.100194 2.583094 -3.580166 -0.616555 -1.325919 -2.340205 -1.577408 3.062404 2.263936 2.316502 -0.268043 -0.922339 -0.090429 -3.794990 -4.727685 0.381943 0.264741 0.215262 1.022390 -0.650052 0.967474 -2.486769 0.680655 1.732766 -1.434579 -1.499977 -0.195331 1.667856 0.418057 -1.099951 -1.201461 -0.039312 0.230885 0.462386 3.097491 -0.936208 -4.554914 -4.382349 -1.650649 2.737966 -1.631511 -0.095213 -1.258366 -1.002605 -2.072313 0.138890 -2.278827 0.278482 -0.000460 -1.751735 -3.734434 1.176951 -0.650641 -0.493155 1.115476 -2.719664 0.613282 1.847458 0.956185 0.347680 0.538428 0.159719 -2.444913 -1.936870 0.597761 -1.519444 2.746532 1.752390 -0.113468 -1.982761 -1.353939 -2.375656 1.851753 -1.640256 1.779320 0.043497 -1.347303 1.382040 -2.370723 0.422330 -1.778320 1.082755 0.566359 -5.017005 3.807548 2.605216 -2.190935 -0.397245 -0.971173 1.368546 0.210865 2.115980 -2.302207 -1.785482 0.732853 -0.109256 -0.024017 -0.739068 0.851838 -0.529257 -0.627004 -2.991494 -1.307033 2.525182 1.413937 -0.414252 0.297968 1.531331 -0.727475 0.716702 3.033897 1.582116 0.372984 -2.264423 -6.334246 1.154780 0.156869 -0.336887 0.445428 -1.600500 -1.097643 0.990983 -1.210452 2.655318 0.368349 -1.340023 2.766789 -3.158103 -2.784742 -2.340703 -0.858355 0.818978 -0.526987 0.746674 -1.448917 0.467748 -0.455794 0.750341 -0.815388 -1.716591 0.300184 1.421178 2.915538 0.317991 -0.176155 3.154571 0.707672 -0.890103 -0.673803 -0.130375 -1.249493 0.921915 -3.256897 -0.625917 0.475404 1.485457 -2.095590 0.876280 -0.330930 0.787481 0.612177 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.634993 -0.282759 -0.044603 1.138080 0.137661 0.034032 0.376702 0.396159 0.020115 -2.040681 -0.923864 0.412565 0.129333 0.097255 0.205317 0.235021 0.411607 0.581379 -1.996196 -0.024403 0.569829 0.169641 0.083302 -0.144229 0.015608 -0.500116 -0.074672 0.490125 0.204319 1.268809 -0.487827 0.564865 1.119447 0.067256 0.216666 0.934952 0.231107 -0.108283 -0.138283 -0.241804 1.631817 0.320649 -0.109345 0.516700 -0.071983 1.312608 -0.004818 1.336584 0.291029 -0.607926 0.680590 -0.994932 -0.563322 -0.050928 -1.130438 0.355507 0.928792 0.955506 -0.518172 0.712615 -0.423885 0.301686 0.435465 -0.368064 1.255869 0.776109 0.703291 1.027135 1.253748 -0.989315 0.162758 0.146876 0.122627 -0.007390 0.417559 -0.714870 -0.234145 -1.645147 0.007161 -1.572776 -0.224647 -0.162852 1.672923 -1.026468 0.095052 0.637766 0.134222 1.188838 -0.583487 0.211795 -1.311577 0.027890 0.161705 1.381965 0.195531 0.049377 -0.164947 0.334176 0.100883 0.419879 0.193324 -0.858854 -0.889876 -2.031125 -0.822302 -0.608487 0.085137 0.336332 -1.396474 -0.067458 0.627513 0.785554 -1.915927 -0.162464 0.401211 0.616838 0.434647 0.402392 -0.746922 -0.112015 -0.006691 0.289606 0.554232 -0.834232 0.295390 -0.811698 -0.047541 0.187326 0.410859 0.067754 -1.152592 -0.492384 0.192675 -0.198781 0.072296 0.433507 0.546954 -0.303823 0.635679 -0.911162 0.945438 -1.347267 -0.174334 -0.353492 -1.008983 -0.527724 1.969330 0.829972 0.692681 0.174415 -0.782477 -0.219628 -1.280152 -1.862760 0.186323 0.060010 0.591248 0.392526 -0.294830 0.234505 -0.770315 0.136782 0.226027 -0.571937 -0.458960 -0.069273 0.545469 -0.048447 -0.372824 -0.837804 0.185382 0.658037 -0.241250 0.926522 -0.480843 -1.035521 -1.545009 -0.797360 1.083058 -0.513339 0.094029 -0.470714 -0.104709 -1.064725 0.225197 -0.817855 0.021282 0.011466 -0.958443 -1.545258 0.521568 -0.323925 -0.259452 0.554476 -0.983161 0.226853 0.445646 0.614370 0.180314 0.099876 0.093695 -1.142006 -1.089429 -0.178117 -0.528098 1.041966 0.579807 0.063480 -0.718088 -0.555104 -0.862277 1.047250 -0.801224 0.531335 -0.097231 -0.515102 0.731111 -0.841473 -0.150654 -0.973776 0.494388 0.383591 -1.732496 1.487586 0.807107 -0.841164 -0.286901 -0.748335 0.459672 0.369992 1.082429 -0.774305 -0.559845 0.431068 -0.095604 -0.042709 -0.566041 0.439884 -0.265710 0.050670 -1.168106 -0.573958 0.834739 0.747468 -0.213122 0.364997 0.813281 0.182566 0.240111 1.261104 0.518473 -0.164220 -0.672318 -2.241344 0.601952 0.781512 0.106000 0.176206 -1.005811 -0.390517 0.396449 -0.135830 1.085986 0.753909 -0.046638 1.116029 -1.157451 -1.078694 -0.559477 -0.084235 0.371492 -0.424015 0.290060 -0.527265 0.255446 0.034013 0.265002 0.078373 -0.771997 -0.645373 0.329952 1.076657 0.085976 -0.096443 1.302060 0.190099 -0.510730 -0.058215 -0.106686 -0.087987 0.258175 -0.781157 -0.181017 0.095225 0.468430 -0.838824 0.620950 -0.234405 -0.023076 0.389761 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 2.168791 -1.949399 -1.760876 4.890583 0.271331 1.295804 0.534652 -0.271244 0.456273 -6.846389 -2.396313 3.903403 0.905563 1.432367 -0.100110 1.606273 1.380628 0.536048 -5.639494 -0.613503 0.962579 -0.779139 -0.307822 0.740513 -0.159223 -2.068536 3.362099 1.251670 0.609538 3.700520 -1.043952 3.364739 3.653049 -0.253713 0.789387 2.154760 -0.332116 -0.423118 -2.728769 -1.577075 4.760438 0.731542 0.079435 1.648704 -1.595050 4.031729 0.838100 5.736364 3.245811 -1.766471 2.585424 -0.379151 -1.542580 -0.253614 -4.167647 0.603751 0.960872 1.065206 -1.055760 1.126368 -1.289424 1.050230 1.323082 0.533707 4.877738 1.577431 4.261756 4.047559 2.903842 -3.329822 0.844449 0.820620 -0.310736 0.806227 3.382341 -2.411829 -2.280817 -0.792061 0.017640 -2.749627 -0.989550 -0.928449 4.806808 -2.787485 -1.752106 -0.431673 0.853184 4.678464 -1.837306 2.143525 -4.458708 -0.136357 0.897669 4.144413 1.036340 0.645580 -1.035363 0.584548 -0.676964 0.817826 1.330603 -3.470244 -0.156438 -4.595880 -2.504982 -2.609143 1.052503 2.074800 -4.720715 0.987187 -1.172963 2.815747 -5.787871 -0.592006 0.504947 1.475728 5.881807 2.287714 -1.215506 -0.568946 1.426810 1.258433 1.993760 -1.916515 1.811532 -2.086991 0.875607 0.515950 1.278697 1.033103 -4.650680 -1.443130 1.196106 -0.048764 1.068725 2.196420 3.187237 -0.805760 1.968677 -1.771478 2.647505 -4.166042 -1.827784 -1.214310 -3.037686 -2.170497 6.305696 3.335636 4.182358 -0.056523 -2.233768 -0.288684 -5.011278 -6.604667 -0.735727 0.311837 -0.302513 2.371668 -0.936429 2.014060 -3.219899 1.816439 2.040911 -1.662119 -2.313344 0.192993 -0.705431 0.580724 -0.841946 -1.377249 -0.284724 -0.715059 0.157796 5.364031 -0.338812 -7.725118 -6.333159 -1.889733 3.277900 -2.126070 0.189641 -1.897159 -1.404707 -3.196137 -0.677863 -2.579070 -0.485466 0.414481 -2.935893 -4.826584 2.008166 -0.702482 -0.680005 1.809758 -3.677299 0.825211 1.825769 1.685117 0.976918 0.662336 -0.620917 -3.077546 -2.564926 0.911552 -2.819495 4.113315 1.300203 -0.791931 -1.734706 -2.390067 -3.300411 2.372586 -3.576833 2.448706 0.400402 -1.580853 0.832766 -3.439834 -0.122706 -2.043435 1.403430 0.782633 -5.975419 4.636323 2.835071 -2.352178 -0.194220 -0.849953 1.919858 0.190883 2.179124 -2.907375 -2.048868 0.595002 1.031069 0.071668 -0.410298 0.935786 -0.993580 -1.716679 -3.610029 -1.969665 2.863454 1.596052 -0.649544 -0.595600 2.554611 -1.133660 1.276639 3.527708 2.230954 0.229154 -2.178457 -8.649574 1.377776 0.648259 -1.373835 0.838797 -3.696090 -0.653724 1.624448 -2.808320 3.255177 -1.202477 -0.789870 3.442748 -4.594386 -3.103847 -2.918333 -1.776397 0.350302 0.219462 1.311390 -1.675287 0.703090 -0.436219 0.501707 -2.004529 -2.229014 1.349545 2.000867 3.126074 -0.402337 0.895308 3.619999 1.527360 -0.790785 -1.112752 0.116189 -2.180250 0.902942 -5.247739 -0.292609 1.363957 1.521088 -2.685408 0.085129 -0.623523 0.366499 0.094777 -PE-benchmarks/the-knights-tour.cpp__main = 0.552408 -0.453273 0.089539 1.177272 0.283528 0.186809 0.363640 0.253428 0.192176 -1.907815 -0.880241 0.831360 -0.009050 0.100499 0.040845 0.088027 0.617002 0.608167 -2.006883 -0.103799 0.373175 0.115596 0.197693 -0.292369 0.027387 -0.494042 0.666151 0.696063 0.272160 1.178880 -0.440768 0.468924 1.007149 0.284096 0.438716 0.969005 0.101699 -0.194732 -0.532111 -0.604341 1.632574 0.362419 0.000903 0.753422 0.041883 1.337490 0.579131 0.794575 1.148809 -0.477374 0.331469 -0.520734 -0.610878 -0.377025 -1.323596 0.197309 0.517797 0.632952 -0.555733 0.644963 -0.138874 0.272143 0.380685 -0.398758 1.137272 0.244968 0.713740 0.884942 1.080617 -1.116971 0.030156 0.230804 0.472883 0.394022 0.494775 -0.863289 -0.562517 -1.409459 -0.202298 -1.604480 -0.116183 -0.214406 1.424054 -0.834339 0.009680 0.350255 -0.163300 0.990588 -0.388616 -0.069375 -1.359122 0.037418 0.266242 1.066717 0.327587 -0.018711 0.070425 0.235613 0.026732 0.523419 0.374314 -1.055859 -0.253212 -2.249653 -0.471637 -0.805729 0.242184 0.129256 -0.905075 0.072184 0.156835 0.987936 -1.622729 -0.393767 0.410234 0.368336 -0.009685 -0.539054 -0.209535 -0.094878 0.097009 0.462664 0.659710 -1.022820 0.180202 -0.172297 -0.100153 0.069486 0.515774 0.192723 -0.669717 -0.737142 0.257793 0.365541 0.080642 0.255037 0.386101 -0.144460 0.548703 -0.828007 1.079392 -1.000360 -0.034015 -0.374126 -0.467175 -0.671252 1.926589 0.589839 0.851217 0.129306 -0.336608 -0.035690 -0.989258 -1.885027 0.488913 0.127733 0.332548 0.431790 -0.245943 0.384081 -0.873796 0.013132 0.317782 -0.502783 -0.537197 0.057609 -0.235655 0.010343 -0.342522 -0.687456 0.319278 0.589832 0.001505 0.851199 -0.599063 -1.543988 -1.186298 -0.784795 1.060107 -0.679395 -0.084196 -0.269323 -0.322916 -0.512344 0.189285 -0.902355 0.110525 -0.059777 -1.042323 -1.489187 0.450717 -0.456723 0.095455 0.746801 -0.983929 0.277902 0.289823 0.717361 0.038103 0.238445 0.145365 -1.086304 -0.813943 -0.159733 -0.499845 1.016219 0.406156 0.055595 -1.043018 -0.565178 -0.605171 0.870012 -0.729621 0.645471 -0.084345 -0.642153 0.584304 -0.698254 0.305999 -0.684047 0.540826 0.562200 -2.120131 1.290063 1.046725 -0.886668 -0.345891 -0.537107 0.284469 0.236932 1.041710 -0.913431 -0.719766 0.441724 -0.114699 0.007453 -0.587849 0.313623 0.073346 -0.137022 -1.310107 -0.698282 0.818571 0.549137 -0.116136 0.237449 0.874450 0.237820 0.064145 1.455209 0.469725 0.288478 -0.929952 -2.461974 0.624712 1.363168 0.234510 0.484763 -0.930204 -0.436862 0.397513 -0.379164 0.981552 0.614112 -0.307493 1.143502 -0.896819 -0.974695 -0.715805 -0.408219 0.490632 -0.312813 0.506953 -0.570226 0.147386 -0.345555 0.155154 -0.207485 -0.343240 -0.131444 0.548184 0.993352 0.377232 0.092586 1.218574 0.124012 -0.650595 -0.033465 -0.134740 -0.372923 0.328221 -1.082778 -0.206409 0.159578 0.524286 -0.730065 0.371250 -0.162041 0.228736 0.123127 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 1.105808 -0.924539 -0.602945 2.613865 0.323079 0.563566 0.371426 0.068323 0.241615 -3.889688 -1.717306 2.518241 0.191583 0.327878 -0.129086 0.614114 1.039474 0.831645 -4.052135 -0.250625 0.602375 -0.109445 0.159663 -0.438703 0.091679 -0.977391 2.276144 1.013335 0.371151 2.056236 -0.700693 1.562450 1.882791 0.487544 0.933017 1.360767 -0.932813 -0.433880 -1.344005 -1.397181 2.882358 0.807973 0.163696 1.343054 -0.233781 2.343006 1.294667 1.459360 2.397077 -0.737864 0.476563 0.334098 -1.122093 -0.536895 -2.584353 0.105705 0.394070 0.450348 -0.629278 0.797888 -0.384702 0.580218 0.710216 -0.361750 2.763611 0.141472 2.275914 1.926757 1.644420 -1.795091 0.428689 0.210167 0.643752 0.629490 1.627262 -1.654707 -1.641601 -0.977989 -0.557788 -3.052363 -0.027717 -0.379725 3.084299 -1.348468 -0.658611 -0.418337 0.283235 2.316802 -0.748392 0.160776 -2.447694 0.086962 0.044911 2.145588 0.746809 0.350867 -0.304027 0.408870 -0.246500 0.574164 0.765555 -2.061146 0.648921 -3.942244 -0.708766 -1.638484 0.734011 0.531053 -1.881983 0.653615 -0.759123 2.224080 -3.092656 -0.788289 0.443618 0.405546 1.239220 -0.905579 -0.400698 -0.207122 0.259197 1.175841 1.098561 -1.664408 0.545278 -0.199604 -0.031339 0.056585 1.059469 0.725067 -2.019316 -1.310976 0.600645 0.678550 0.432714 1.029962 1.346104 0.001577 0.940615 -1.319869 1.847791 -2.049767 -0.258944 -0.858995 -1.043596 -1.331847 3.150591 1.719000 1.798948 -0.099733 -0.128850 0.085803 -2.468815 -3.650182 0.584031 0.206829 -0.096026 0.891562 -0.376341 0.942855 -1.960481 0.547515 1.379999 -0.939382 -1.194752 -0.069718 -0.283723 0.356239 -0.663173 -0.716271 0.043650 0.263653 0.267281 2.246385 -0.689756 -4.009050 -2.954318 -1.171790 1.899163 -1.421147 -0.235352 -0.893097 -0.707220 -0.792311 -0.065474 -1.642630 0.119354 0.103771 -1.737495 -2.716190 0.645694 -0.555260 -0.026423 1.035111 -1.930555 0.526730 1.171940 1.229947 0.131166 0.531237 0.036943 -1.748721 -1.263427 0.361646 -1.349506 1.855905 0.987699 -0.269982 -2.184696 -1.033253 -1.494508 1.315452 -1.252856 1.471646 -0.164287 -1.206900 0.627449 -1.625649 0.842164 -0.866172 0.730061 0.462999 -4.792887 2.584040 1.921792 -1.563403 -0.265195 -0.714709 0.907796 -0.054880 1.371956 -1.829283 -1.318584 0.339361 -0.091052 0.069514 -0.604669 0.524565 -0.070411 -0.858686 -2.371699 -1.228277 1.852203 0.644757 -0.225068 0.099728 1.367046 -0.268271 0.438257 2.514082 1.143816 0.599813 -1.842248 -5.266139 0.688633 1.739731 -0.089682 0.708546 -1.458073 -0.870213 0.631508 -1.527571 1.779690 0.027777 -1.148829 1.915814 -1.935460 -1.673625 -1.813418 -0.966909 0.628067 -0.136261 0.867735 -0.952618 0.118673 -0.601789 0.405460 -0.860156 -1.053290 0.751953 1.307617 2.017177 0.569024 0.270819 2.036378 0.619136 -0.862020 -0.423021 -0.216189 -1.332589 0.657594 -3.035890 -0.375914 0.581258 0.915170 -1.418014 0.244883 -0.139456 0.826816 -0.083983 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 0.975428 -0.059621 -0.970024 2.649494 -0.542167 0.539497 0.576370 -0.034637 -0.263033 -3.316473 -1.150375 2.961214 0.438497 0.547208 -0.455070 0.891628 0.512029 0.695967 -3.560767 -0.325380 0.739071 -0.123611 0.113590 -0.327071 -0.074047 -1.072615 2.168180 1.261894 0.371539 2.405795 -0.450689 1.365155 1.967623 -0.094631 0.182048 1.523479 -0.597376 0.078685 -1.800616 -1.135738 2.299166 0.438325 0.009407 0.966344 -0.776515 2.612005 1.014244 1.421765 2.303718 -1.124677 0.861485 2.202376 -1.222555 -0.930767 -1.847941 -0.182504 0.393143 0.997219 -0.481647 0.933377 -0.955256 0.412192 0.862403 0.409433 2.188120 0.883269 2.017495 2.076185 1.733595 -2.280693 0.407320 0.438665 -0.107474 0.244127 1.848915 -1.454914 -2.011239 -0.869758 -0.453164 -3.102957 -0.868035 0.152433 3.497688 -1.741167 -0.935936 -0.365197 0.681511 2.310535 -1.162080 0.745209 -2.163571 -0.220733 -0.193971 2.835503 0.789325 0.140382 -0.254037 0.472735 -0.006817 0.685831 0.526315 -2.094757 0.307318 -2.644052 -1.236973 -1.788043 0.775601 1.090346 -2.175518 0.440755 0.541795 1.817233 -3.486275 -0.500569 0.925141 1.023312 1.854502 0.467057 -0.733465 0.300404 0.545429 0.840611 1.893570 -1.306616 0.889387 0.618286 -0.165973 0.160412 0.629824 0.785085 -3.017372 -1.477622 0.711459 -0.247559 0.767944 1.048644 1.352050 0.070708 1.140101 -1.479417 2.168593 -2.570466 -0.433633 -0.546678 -0.802995 -1.450699 1.484633 2.268568 1.656645 -0.744096 -0.598250 0.071940 -2.507667 -2.670275 0.099498 0.541711 -0.274040 0.997818 -0.570219 1.214855 -1.848418 1.054357 1.118093 -0.765838 -1.151353 0.439930 0.825683 0.596907 -0.665349 -0.992377 -0.138630 -1.086861 0.678435 2.612600 -0.456155 -4.222344 -3.341313 -1.143391 2.193724 -1.264322 -0.545146 -1.017283 -1.357117 -0.484897 -0.082648 -1.789809 -0.064617 0.431590 -1.356892 -2.759391 1.528163 -0.433163 -1.093948 1.026810 -2.061368 0.050534 1.046233 0.238920 0.518059 0.239828 0.137094 -1.763982 -0.855321 0.575431 -1.637081 1.542408 1.640010 -0.028067 -2.085707 -1.121282 -1.606656 0.994567 -1.294610 1.574539 -0.239659 -0.980143 1.013426 -1.832236 0.899742 -0.932148 0.808200 0.781331 -4.413419 2.982272 2.367494 -1.175797 -0.056324 0.244035 0.546015 0.334807 0.965788 -2.163626 -1.835016 0.354978 0.112986 0.178471 0.266366 0.540765 -0.557586 -1.162110 -1.714770 -0.639037 1.878568 0.891362 -0.129629 -0.095350 1.400353 -0.979315 0.695983 1.750292 1.305668 0.309853 -1.408743 -4.736917 1.223090 -0.262681 -0.602135 0.839251 -1.279727 -0.726859 1.308035 -1.109095 1.831077 -1.365292 -1.713141 1.977278 -2.359782 -1.960000 -2.186040 -1.105518 0.457517 0.040077 0.930987 -0.789453 0.377225 -0.185352 -0.081850 -1.203587 -0.564659 1.213480 1.245687 2.192728 0.680921 0.175728 2.371232 0.484038 -0.891956 -0.744783 -0.122976 -1.631179 0.235871 -2.500415 0.111082 0.896878 1.445412 -1.501700 -0.000386 -0.044264 0.071329 0.118573 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 4.992825 -2.724790 -3.893031 9.738137 0.704930 1.687961 1.149731 -0.308157 1.808738 -12.101255 -5.215456 8.400058 1.878312 1.437250 -0.412540 4.000090 3.125620 2.147983 -9.660037 -0.205452 1.623177 -0.920671 -1.304183 -0.318327 -0.310932 -4.068459 7.642988 2.252686 1.432354 7.627662 -1.965264 5.574395 6.737176 -0.571745 2.710899 5.344858 -1.322298 -0.433587 -5.720877 -3.714501 9.730927 2.712220 0.823524 4.529490 -1.811233 8.589930 2.963670 8.843962 5.435496 -3.361770 4.246956 2.815733 -3.604115 -1.675878 -8.575007 1.519770 2.578719 1.081423 -2.918152 2.847262 -1.677931 2.226441 3.091729 1.312961 8.759183 2.510178 7.145162 7.491966 6.877432 -6.801243 1.491251 2.197700 1.698057 2.010118 7.978333 -5.681851 -6.604531 1.113532 -1.383326 -6.149170 -0.101451 -1.656471 11.399778 -6.278003 -2.739125 -0.750994 1.602813 8.283479 -3.519295 1.816116 -7.980916 -0.001603 -0.497859 8.726565 1.887314 2.005279 -2.061961 1.721554 -1.542512 1.918631 2.244283 -8.011546 0.883754 -10.154902 -4.668305 -6.139059 2.428841 3.067012 -8.139477 1.401526 -3.460054 6.388352 -11.445320 -1.090600 1.907716 2.278030 9.529243 0.894751 -1.707861 -0.301231 2.428422 3.230389 3.627540 -4.226082 2.412152 -1.634925 0.766802 0.924193 2.858122 1.993392 -8.311431 -3.313260 1.531248 0.952933 1.848040 4.034554 5.235110 -3.225891 3.968218 -4.071550 6.330990 -8.777927 -3.781185 -3.571245 -5.735654 -4.689219 9.706554 4.989300 9.308352 -1.246945 -2.479786 -0.870196 -9.947888 -11.950432 0.110820 0.164130 -1.082801 4.357917 -1.292428 3.545639 -6.702811 2.839446 4.707740 -3.629692 -4.246162 0.607818 1.553770 0.678583 -2.307411 -3.289311 -0.876713 -1.669542 2.183738 9.226583 -1.319638 -15.226593 -11.640818 -3.833347 7.020480 -4.721891 0.502083 -3.245884 -3.517398 -4.398644 -1.170341 -6.276467 0.533482 0.365413 -4.761682 -9.424528 3.501844 -1.659346 -0.738647 3.365433 -7.239512 1.903861 4.647321 2.895205 0.943673 2.236874 -0.456737 -7.032952 -4.461518 2.189084 -4.929197 8.513073 3.969084 -0.999600 -4.289261 -4.262914 -6.300834 3.866902 -6.574236 4.886048 0.854925 -2.492886 2.590646 -6.757685 1.306235 -5.175095 2.872985 1.558246 -12.929128 8.511374 6.950189 -5.303022 -0.280498 -1.073054 3.732424 0.149471 4.920171 -5.855308 -5.105327 1.822730 0.672707 0.077262 -1.740026 1.755384 -1.765746 -2.624827 -7.268742 -3.053379 6.317515 3.119730 -1.171730 -1.201523 4.357241 -3.061539 2.116634 7.344543 5.190207 1.803610 -6.892827 -17.259605 2.886814 -0.109708 -2.088888 1.816281 -5.085428 -1.922272 3.408506 -4.713983 6.629589 -1.639421 -2.454861 7.315667 -9.093595 -7.160572 -5.875215 -3.476547 1.818112 -0.203037 2.431145 -4.018184 1.145480 -1.816143 1.434288 -4.352400 -3.662102 3.742858 4.565870 7.697748 0.533292 1.200557 7.780026 2.818201 -2.024167 -1.788557 0.260876 -4.706474 1.344538 -10.498070 -1.209137 2.197997 3.621563 -5.464691 1.222253 -1.182633 1.866033 0.251737 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 1.572707 -1.459483 -1.209481 3.855944 0.213828 0.529942 0.659865 -0.118757 0.069719 -5.647908 -2.326471 3.007054 0.676410 0.554022 -0.329524 1.162910 1.128515 1.343227 -5.747856 -0.398392 1.035792 -0.037907 -0.121769 -0.545061 -0.116729 -1.397434 2.922322 1.324688 0.486514 3.224182 -0.884988 2.218930 2.901831 0.155653 0.949825 2.237825 -0.704999 -0.090225 -1.813926 -1.468053 4.430968 0.955050 0.292117 1.674181 -0.605768 3.516781 1.533556 2.997995 2.317922 -1.341545 1.516073 0.574706 -1.454013 -0.881692 -3.770912 0.362157 1.657235 1.459039 -1.067166 1.415472 -0.463443 0.812108 1.274756 0.098422 4.153212 0.993389 3.168099 2.902802 2.799158 -2.751824 0.691999 0.306837 0.445303 0.041503 2.692426 -2.735750 -2.420258 -1.713342 -0.626961 -4.617167 -0.093036 -0.117206 4.514790 -2.348589 -0.939793 -0.230728 0.796176 3.358068 -1.300119 0.433557 -3.702465 -0.035137 -0.150322 4.392051 1.014697 0.616584 -0.655704 0.832123 -0.139266 0.813767 1.051731 -3.022279 0.479924 -5.729469 -1.680246 -2.376533 0.789944 1.142421 -3.174654 0.174413 -0.908322 2.348818 -5.188969 -0.744390 0.862867 1.103586 2.830400 -0.943233 -1.230701 0.263581 0.303609 1.138999 1.641400 -1.990079 0.899472 -0.716555 0.268654 0.188101 1.168237 0.909303 -3.909168 -1.582581 0.521537 0.275966 0.686319 1.517129 1.991408 -0.416362 1.496134 -2.359843 2.656635 -3.642985 -0.503888 -1.100969 -2.617262 -1.860616 3.901936 2.145753 2.571549 -0.756628 -1.232147 -0.078966 -3.956092 -5.856878 0.622591 0.437410 0.014178 1.422750 -0.757021 1.179272 -2.923265 0.886633 2.438944 -1.326498 -1.715417 -0.028857 0.943357 0.465452 -1.110215 -1.092133 -0.074641 0.105935 0.694775 3.530932 -0.961063 -5.666977 -4.962833 -1.642482 2.920337 -1.851014 -0.260675 -1.428259 -1.266839 -2.397894 -0.055004 -2.477294 0.304671 0.171400 -2.365203 -4.050283 1.221641 -0.707132 -0.227554 1.426270 -3.007929 0.653490 1.874783 1.429806 0.320608 0.460336 0.405041 -2.815797 -2.151437 0.833727 -1.913968 2.899780 1.528796 -0.017828 -2.454859 -1.498682 -2.380547 1.633847 -1.836826 2.026917 0.016897 -1.472579 1.280059 -2.724644 0.975916 -1.590883 0.993833 0.714900 -5.825485 4.508034 2.612873 -2.088158 -0.265800 -0.595403 1.332337 0.003901 1.900109 -2.739415 -2.211464 0.799084 -0.255389 0.054583 -0.846110 0.717323 -0.499158 -0.919113 -3.537377 -1.696482 2.576925 1.286562 -0.455353 0.249636 1.819314 -1.268561 0.204298 3.704145 1.777870 0.615336 -2.361585 -7.399383 1.231820 0.695655 -0.454092 0.291805 -2.051677 -1.000230 1.414737 -1.460619 2.704428 0.527019 -1.948871 2.940185 -3.576164 -2.820229 -2.479997 -1.174372 1.097249 -0.329533 0.680998 -1.553645 0.536523 -0.565344 0.594793 -1.050334 -1.894602 0.945352 1.714612 3.221591 0.139177 0.121485 3.326522 0.683779 -0.899818 -0.607675 -0.236855 -1.462414 1.208909 -4.039628 -0.536154 0.795839 1.637926 -2.203811 0.719612 -0.660561 0.742978 0.554010 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/union-find.cpp__main = 2.383993 -2.147379 -0.432373 3.603033 0.313427 -0.114992 0.907072 1.171621 0.832843 -4.870470 -2.282118 1.774720 0.375940 0.006481 0.789772 0.706875 1.461688 0.500992 -6.457076 0.403107 0.900943 -0.189302 -0.736852 -0.286294 -0.014496 -1.785462 1.542849 2.298578 0.196339 3.294454 -1.251198 1.541182 2.657393 -0.147475 1.448444 2.726037 -0.054237 -0.391268 -1.124432 -0.356652 4.821690 1.475286 -0.756848 1.587965 0.342418 3.901907 0.775831 4.098973 2.370291 -1.471305 2.406084 -0.719721 -1.783434 -0.824011 -3.784252 0.456194 2.988019 1.633671 -1.940605 2.082632 -1.484522 0.767060 1.426620 0.468032 4.172625 1.382359 3.000050 2.607818 3.607481 -2.857292 0.464632 0.799722 1.499922 0.658097 1.628496 -2.695671 -1.912211 -4.559086 0.388094 -3.825226 -0.572175 -0.743776 3.226816 -2.588261 -0.250943 1.115307 0.094941 3.375969 -2.304660 0.516846 -3.530544 -0.112249 0.580096 4.464935 0.061964 0.536542 0.401830 1.322579 -0.022991 1.612788 0.959652 -3.316215 -1.306093 -6.164255 -2.499673 -1.987442 0.257445 0.324419 -3.652521 0.394951 0.893390 0.991954 -4.537345 -0.611824 1.072493 1.255427 1.925547 0.141375 -1.125255 -0.660454 0.347941 1.749976 2.139359 -2.228918 1.236655 -2.122739 0.856613 1.432066 1.269834 0.468364 -2.478352 -1.047838 1.190507 0.545502 0.083736 1.101316 1.328488 -1.277175 1.789548 -2.658952 3.379972 -4.196298 -0.830857 -1.928672 -1.431643 -1.430109 4.537655 2.083291 2.381742 0.588328 -1.975197 0.328730 -3.857115 -5.806704 0.269879 0.291729 0.638732 0.645372 -0.769023 0.901913 -2.025282 0.184575 0.864775 -1.850412 -1.616885 -0.484506 0.012721 0.706600 -1.101025 -1.561454 0.725756 1.370098 0.124346 3.202824 -1.060333 -5.171566 -4.072078 -2.052041 3.110447 -1.381232 -0.150945 -0.900365 -1.149887 -3.110682 0.869611 -2.456057 0.132962 -0.478850 -2.545212 -4.063525 1.268959 -0.894744 0.563336 1.151173 -3.159104 0.564186 0.868574 2.238132 0.490010 1.017615 0.331769 -3.663316 -3.129578 -0.125141 -1.144955 4.425406 0.936620 -0.158208 -1.039330 -1.394113 -2.282009 2.696969 -2.933064 1.753260 0.365274 -2.448596 2.051594 -2.240671 -0.696915 -2.523079 1.561597 0.995851 -3.688702 5.029065 3.281363 -2.922906 -0.959718 -1.685815 1.383765 0.712004 3.277964 -2.476086 -1.780790 0.958655 0.642920 -0.182139 -1.332366 1.184329 -0.277896 -0.433886 -3.467552 -1.884597 2.614332 2.063217 -0.225118 0.359034 1.534621 -0.055239 -0.170569 3.877010 1.193072 0.412122 -2.385235 -6.989026 1.750306 2.110245 -0.383276 0.981793 -3.251160 -1.532473 0.674782 -0.156452 3.048305 2.424261 -0.275170 3.249714 -3.265863 -3.352888 -2.932262 -0.783395 0.490562 -0.757734 1.154763 -1.842471 0.660419 -0.609262 1.023191 -0.900635 -1.385014 -1.007393 1.174179 2.331151 0.421313 -0.681344 3.742101 0.739195 -1.340611 -1.047539 -0.097087 -1.625147 1.433053 -1.898972 -0.763011 -0.053577 1.764692 -2.320881 1.201101 -0.054281 1.213637 0.533352 -PE-benchmarks/union-find.cpp__find(int*, int) = 1.472106 -0.562759 -1.477651 3.123808 0.180638 0.261935 0.210537 -0.253077 0.391748 -3.687755 -1.594372 2.301630 0.681491 0.272146 0.050697 1.397079 0.922330 0.693880 -2.971865 0.096167 0.560016 -0.396639 -0.778601 -0.079718 -0.139047 -1.380219 2.022655 0.727327 0.320517 2.413770 -0.835654 1.855501 2.058087 -0.333477 1.018972 1.595021 -0.445013 -0.054538 -1.564231 -0.676549 3.146618 0.826485 0.047618 1.157977 -0.322330 2.729236 0.595080 2.538544 1.101821 -1.032777 1.215967 1.664020 -0.866413 -0.360438 -2.703391 0.608811 1.309396 0.359958 -1.172839 0.913886 -0.650828 0.772650 1.064553 0.665558 2.967151 0.906874 2.282922 2.412571 2.358689 -1.922542 0.604935 0.453779 0.635137 0.227928 2.603461 -1.310835 -2.048759 0.140924 -0.394035 -2.045342 0.220614 -0.275712 3.331278 -2.098671 -0.881385 -0.001661 0.853616 2.794900 -1.376243 0.549107 -2.417297 -0.020545 -0.565848 3.284282 0.708823 0.716902 -0.810772 0.921154 -0.451819 0.585755 0.527063 -2.613297 0.153672 -3.523298 -2.110921 -1.889225 0.584316 0.824509 -2.913126 0.382777 -0.364819 2.064416 -3.710914 -0.076141 0.510339 0.720441 2.730502 -0.093112 -1.000035 0.016396 0.380211 0.973308 0.986292 -0.932001 0.775125 -0.752691 0.321545 0.429240 0.992721 0.553287 -2.559033 -0.693381 0.439570 0.090059 0.392838 1.304200 1.688718 -1.287327 1.333702 -1.336972 2.021158 -3.012727 -0.977141 -1.366294 -1.961760 -1.299266 1.917893 1.617848 2.592624 -0.430390 -0.950193 -0.211002 -3.577062 -3.984145 0.005301 0.054411 -0.403151 1.175074 -0.522039 0.977890 -2.009130 0.851981 1.909478 -1.469076 -1.369097 -0.053749 1.538748 0.238733 -0.856622 -1.013811 -0.459880 -0.311141 0.729656 2.856163 -0.464486 -3.992295 -3.845407 -1.200957 2.206074 -1.417146 0.307290 -1.071866 -1.015071 -1.904531 -0.034960 -1.974832 0.075677 -0.148134 -1.071879 -2.914885 0.877426 -0.450737 -0.526968 0.684331 -2.560407 0.761120 1.487127 0.372210 0.342498 0.523815 -0.031258 -2.188984 -1.574261 0.832207 -1.441258 2.459927 1.528963 -0.240014 -1.156053 -1.295593 -2.158566 1.239126 -2.117580 1.506563 0.521474 -1.019697 0.931682 -2.274584 -0.288460 -1.463056 0.885155 0.211196 -3.117818 3.160852 2.193888 -1.844216 -0.015050 -0.453757 1.482963 -0.021844 1.766368 -1.966836 -1.304556 0.489067 0.258241 -0.043401 -0.402111 0.793535 -0.692755 -0.574488 -2.239166 -0.838480 2.026637 1.259625 -0.320859 -0.171706 1.025254 -1.198442 0.553677 2.209880 1.616584 0.596660 -2.008103 -4.743218 0.760695 -1.523551 -0.708729 0.429194 -1.283167 -0.647375 0.777906 -1.099080 2.275147 -0.633433 -0.828951 2.317697 -3.076005 -2.427610 -1.866400 -1.008340 0.426319 -0.315317 0.889280 -1.405846 0.250177 -0.561379 0.770434 -1.336366 -1.306435 0.931169 1.324636 2.240163 0.088531 -0.086534 2.513012 0.939609 -0.743213 -0.665240 -0.023283 -1.394381 0.505305 -2.984992 -0.544891 0.481678 1.171877 -1.820602 0.603445 -0.536900 0.791520 0.260307 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = 1.792736 -1.302046 -1.510840 3.517116 0.324240 0.673057 0.204492 -0.257466 0.603111 -4.406853 -1.963821 2.353615 0.680577 0.589523 0.327138 1.565114 1.235650 0.328653 -3.622909 -0.024458 0.584968 -0.778404 -0.691483 0.388700 -0.123397 -1.851736 2.309984 1.008503 0.383839 2.725208 -0.971122 2.240712 2.413736 -0.387203 1.129917 1.777043 -0.503329 -0.248086 -1.918097 -0.740632 3.739075 0.758033 -0.088157 1.219785 -0.475846 3.175610 0.425851 3.776749 2.049479 -1.230098 2.128221 0.999251 -1.030731 -0.242103 -3.282281 0.664051 1.512445 0.299351 -1.371159 0.925515 -1.039883 0.955877 1.074437 0.637733 3.523488 1.051628 2.979309 2.658629 2.486626 -2.405048 0.523482 0.837088 0.637894 0.648860 2.558444 -1.767127 -1.947481 -0.626416 -0.133643 -1.848341 -0.026787 -0.692121 3.494259 -2.275138 -1.349330 0.104292 0.591641 3.261713 -1.592343 1.121341 -3.005877 0.009464 0.063147 3.362584 0.687462 0.618864 -0.726949 0.882309 -0.641018 0.873276 0.816344 -2.943628 -0.454790 -3.989327 -2.624579 -2.091362 0.969822 0.978387 -3.500792 0.780335 -0.156303 1.789301 -3.923830 -0.100058 0.571954 1.057077 3.444892 0.753967 -1.200898 -0.455936 0.854054 1.359518 1.372427 -1.013762 1.170362 -1.558541 0.798877 0.619918 1.176342 0.460064 -2.687528 -0.849170 0.696423 0.333950 0.485694 1.357983 2.046004 -1.342581 1.643443 -1.217590 2.342068 -3.541892 -1.281728 -1.769038 -1.872170 -1.489188 3.409995 2.254918 3.228272 0.069388 -1.434186 -0.162515 -3.975946 -4.576412 -0.509222 0.097876 -0.307405 1.390856 -0.634614 1.496505 -2.071826 1.104640 1.580850 -1.694886 -1.658153 -0.046404 0.674730 0.311224 -0.884113 -1.268978 -0.342933 -0.265634 0.227182 3.458106 -0.329844 -4.927513 -4.222931 -1.559089 2.493605 -1.698052 0.471151 -1.109478 -1.043858 -2.436417 -0.059704 -2.186075 -0.195595 -0.074366 -1.837223 -3.353175 1.207085 -0.567561 -0.426520 1.021306 -3.017599 0.817807 1.408028 1.041908 0.706309 0.774043 -0.357833 -2.788046 -2.117008 0.596036 -1.845778 3.322910 1.506443 -0.603998 -0.991147 -1.732646 -2.435321 1.597365 -2.847915 1.701024 0.569829 -1.420203 0.806693 -2.565495 -0.446409 -1.785751 1.096304 0.434970 -3.637084 3.659917 2.594948 -2.141735 -0.195573 -0.844244 1.668035 0.010019 2.143752 -2.024481 -1.255207 0.413516 0.771953 -0.038486 -0.349835 1.020052 -0.674356 -0.963920 -2.697507 -1.275039 2.256623 1.526770 -0.285807 -0.271919 1.452419 -0.794287 0.685553 2.613984 1.658914 0.434198 -2.042468 -6.054095 0.947195 -0.524430 -1.107214 0.859016 -2.218268 -0.751248 0.732469 -1.302299 2.631898 -0.526340 -0.351080 2.741408 -3.195703 -2.668689 -2.269440 -1.288435 0.186112 -0.257151 1.126319 -1.564146 0.234836 -0.658282 0.657494 -1.614872 -1.395525 0.688215 1.436062 2.425258 0.169260 0.228936 2.782538 1.275513 -0.949331 -0.950784 0.105661 -1.774488 0.866783 -3.226845 -0.583612 0.645457 1.147801 -1.984412 0.247174 -0.392261 0.788988 0.022431 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 1.155964 -1.230636 -1.472614 3.881445 -0.012077 1.163327 0.422792 -0.360277 0.269131 -5.239795 -2.122203 2.565960 0.847833 1.197474 0.053146 1.185793 0.918425 0.665999 -4.301744 -0.687251 1.100990 -0.236744 0.076303 0.464675 -0.177410 -1.514337 2.671948 0.875068 0.508165 3.035743 -0.522722 2.788812 2.801039 -0.326336 0.363917 1.703803 -0.516146 -0.110262 -2.290487 -1.114606 3.597649 0.353084 0.162882 1.488028 -1.367460 3.212965 0.795868 3.179335 2.053765 -1.478504 1.866280 0.759745 -0.948404 -0.739453 -3.011991 0.391769 1.221986 1.021877 -0.627423 0.890984 -0.677333 0.612266 1.094596 0.256745 3.512103 1.364810 3.248657 3.118948 2.227392 -2.663226 0.736523 0.476658 -0.536658 0.375216 2.538993 -2.039688 -1.919943 -0.593351 -0.646167 -2.703545 -0.692007 -0.616951 3.747035 -2.127081 -1.515537 -0.542723 0.705873 3.420525 -1.133743 1.445461 -3.246943 -0.336261 0.429279 2.897827 0.834617 0.423280 -0.968859 0.539597 -0.503992 0.522009 1.131115 -2.716426 0.200863 -3.539622 -2.061210 -2.039187 1.150544 1.743067 -3.468492 0.649451 -1.380173 1.782121 -4.632082 -0.583035 0.427524 1.621021 3.925388 0.802693 -1.454598 -0.366573 1.284819 0.941841 1.604958 -1.444167 1.591393 -1.353349 0.221005 0.271202 0.882758 0.824598 -3.374118 -1.647718 0.452751 0.155606 1.012481 1.714497 2.525094 -0.334115 1.515187 -1.630146 2.370976 -3.457262 -1.385840 -0.965367 -2.327759 -1.825695 3.885110 2.298930 2.949276 -0.571381 -1.917452 -0.074509 -3.800885 -4.670190 -0.359255 0.517501 -0.225277 1.990844 -0.867949 1.714611 -2.649361 1.636559 2.092226 -1.026739 -1.687077 0.335246 -0.094358 0.590494 -0.743306 -1.101529 -0.222715 -1.009778 0.323512 4.098625 -0.156939 -4.859353 -5.013359 -1.307479 2.659911 -1.735894 -0.032804 -1.531693 -1.255716 -2.444343 -0.482019 -2.181618 -0.468588 0.530107 -2.368216 -3.693211 1.624214 -0.486668 -0.829525 1.605646 -2.876225 0.486153 1.799368 1.410531 0.817669 0.375894 -0.454313 -2.242633 -1.878435 0.796910 -2.406050 2.918871 1.229627 -0.512561 -1.670996 -1.784915 -2.263257 1.704595 -1.905459 1.994816 0.256821 -0.892212 0.569472 -2.857594 0.239357 -1.770005 0.801946 0.699764 -4.945305 3.447932 1.890503 -1.582649 -0.014535 -0.316478 1.477317 -0.131359 1.245288 -2.150511 -1.887941 0.525280 0.765832 0.163296 -0.878869 0.525040 -0.744993 -1.572306 -2.701591 -1.325628 2.485457 1.088593 -0.497909 -0.186660 2.117715 -1.214222 0.609949 2.619099 2.150901 0.075486 -1.560468 -5.856197 1.122393 -0.063311 -1.051512 0.194277 -2.608161 -0.518147 1.603179 -1.837180 2.361165 -0.706777 -1.060337 2.777664 -3.342369 -2.443882 -2.397919 -1.343340 0.583652 0.240867 0.574227 -1.261882 0.742732 -0.026092 0.186188 -1.462273 -2.071599 1.282996 1.602094 2.873630 -0.510480 0.905561 2.927586 1.229453 -0.705891 -0.818274 0.165870 -2.041149 0.478842 -4.046390 -0.221034 1.321965 1.313632 -2.071323 -0.053028 -0.845035 0.087544 0.130261 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 3.515249 -3.541408 -5.757971 14.306957 -0.444158 4.051728 1.064962 -1.666853 0.406341 -19.118544 -6.906961 11.082353 3.180260 4.612606 -0.992291 4.152368 3.151203 3.024979 -16.944123 -2.496156 4.356371 0.372817 0.744945 0.813464 -0.195475 -4.287212 12.053462 2.145458 2.233193 10.717693 -1.907977 10.715526 9.973162 -1.266187 1.681846 5.507771 -3.164477 -0.387610 -8.818820 -5.087986 12.632621 1.201005 1.834342 6.043243 -5.292143 11.115090 4.472204 8.562044 8.316474 -5.297625 4.557015 5.892829 -3.092763 -3.380199 -10.532397 0.944136 2.733240 3.879403 -1.738727 2.508343 -0.410551 1.678381 4.069649 1.319679 12.690372 3.896738 11.785262 11.790516 7.501263 -8.580066 3.422291 0.343874 -2.586926 1.065731 10.739010 -8.076017 -7.955347 0.478478 -3.747026 -11.602191 -2.029287 -1.663140 13.353762 -7.370374 -4.566476 -4.167139 3.174517 12.436454 -2.979641 4.177033 -11.493186 -1.739832 0.730464 10.008221 2.722284 1.729935 -3.530723 1.809635 -2.231672 0.866219 4.582358 -10.134201 4.579609 -11.574922 -5.834012 -7.638572 4.095772 7.024859 -11.623404 2.497993 -8.864038 7.293212 -17.560765 -2.748025 0.623444 5.057465 14.162394 0.462975 -4.220487 -0.938310 3.835022 3.248326 4.932716 -5.627824 5.396326 -2.961997 -0.828527 0.640981 3.152775 3.970882 -12.630659 -6.700717 1.119076 0.772448 3.748732 7.015846 9.673687 -0.364044 4.944417 -6.415514 8.161382 -11.209402 -5.424822 -2.601481 -8.078956 -7.167484 11.390326 6.966245 9.551974 -3.753404 -5.957494 0.189268 -13.707888 -15.722747 -0.225247 1.645303 -2.107935 8.340717 -3.047073 6.077924 -10.447456 5.756360 9.067526 -2.927258 -6.414191 0.793132 -1.268821 2.505606 -2.198613 -2.730488 -1.229832 -5.043297 2.625673 15.218875 -0.814958 -17.955964 -19.309738 -3.688480 9.487418 -6.392053 -0.723815 -6.002063 -4.887783 -7.046515 -2.524550 -8.414266 -1.853787 1.517365 -7.208283 -13.028188 5.726526 -1.759596 -2.621923 5.450717 -9.872007 1.892197 7.087505 5.046540 2.129427 0.480085 -1.416438 -7.303089 -5.351366 4.323809 -8.831288 8.893047 3.496242 -1.701609 -7.728963 -6.015821 -7.426272 5.148687 -5.044593 7.854896 1.221940 -2.488286 1.658841 -10.354762 2.939450 -5.341252 2.250776 2.181397 -19.589433 11.987102 5.515960 -5.264559 1.060211 0.263069 5.507228 -1.246226 2.254075 -7.864485 -7.879200 1.758933 2.083932 0.900348 -4.047478 0.960045 -2.648112 -5.942244 -9.659489 -4.503705 9.436362 2.562860 -1.931833 -1.264074 7.449968 -6.651714 1.811459 9.450069 8.541692 1.770954 -5.805554 -19.909901 3.426638 -1.003682 -2.579102 -0.711019 -7.985678 -1.577314 6.294742 -7.270877 7.956977 -3.925199 -5.551813 9.363323 -13.113955 -8.418581 -8.960796 -4.988999 2.744109 2.127019 0.890738 -4.384775 2.769080 -0.074615 0.979439 -5.705648 -7.624702 7.264737 6.707223 10.513505 -2.120296 3.608305 10.198816 4.389793 -1.952410 -2.325370 0.755928 -7.776875 0.575350 -16.112824 -0.571380 5.539304 4.857906 -7.673757 -0.459292 -3.830075 0.877494 -0.204043 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 1.611218 -0.367716 -1.036121 3.466631 0.028733 0.323042 0.814377 0.598337 0.080554 -5.521228 -2.381136 2.382326 0.732914 0.532224 0.040667 1.083068 0.859556 1.567174 -5.134196 -0.236358 1.496404 0.626217 0.114913 -0.490851 -0.000870 -1.153175 1.238533 0.770013 0.610936 3.411470 -0.906371 2.116603 2.971962 -0.164572 0.457713 2.237570 -0.155800 -0.083518 -1.186248 -1.121232 4.077587 0.887076 0.134031 1.778725 -0.732148 3.464610 0.556871 2.772054 0.684450 -1.625861 1.234964 -0.190812 -1.455930 -0.609456 -2.873834 0.753795 2.055230 2.056031 -0.973167 1.563369 -0.461921 0.604276 1.317644 -0.378025 3.332373 1.940128 2.291378 3.089147 3.154559 -2.533427 0.805739 0.152585 -0.047151 -0.074610 2.321230 -2.241428 -1.599148 -1.752309 -0.613469 -4.454258 -0.476313 -0.402800 4.939633 -2.721832 -0.228683 0.446935 0.986760 3.326684 -1.286737 0.542116 -3.242956 -0.164011 -0.311313 3.840911 0.550464 0.568370 -0.975158 0.894019 -0.013979 0.637231 0.745534 -2.642139 -0.615378 -4.575162 -1.908661 -1.974743 0.494677 1.483505 -3.552829 -0.031594 -0.331232 2.565004 -5.469968 -0.590762 0.854131 1.567499 2.455800 0.597714 -1.909135 -0.051102 0.222117 0.696178 1.273032 -2.049064 0.956991 -1.062476 -0.585776 0.338439 0.917559 0.678686 -3.949926 -1.653053 0.292640 -0.355517 0.624544 1.729082 2.081879 -0.749066 1.566324 -2.494520 2.495495 -3.694180 -1.077657 -0.790683 -2.953358 -1.753394 3.619185 1.995526 2.157904 -0.572238 -1.635666 -0.502379 -3.833261 -4.708821 0.528038 0.237979 0.666575 1.605965 -0.779318 0.882872 -2.656916 0.919500 1.794319 -1.211384 -1.412781 -0.043749 2.069410 0.146531 -0.929619 -1.616990 -0.039301 0.295242 0.344547 3.192530 -0.908787 -3.572312 -5.018934 -1.621738 2.972411 -1.532762 0.029341 -1.572400 -0.820545 -2.358345 -0.049492 -2.440118 0.041784 0.237542 -2.134889 -4.056665 1.489705 -0.638384 -1.088343 1.399814 -2.756288 0.536298 1.962026 1.455136 0.360681 0.152551 0.105087 -2.807157 -2.358255 0.457272 -1.886378 2.653559 1.813004 0.040501 -2.248714 -1.438410 -2.371113 2.179655 -1.809647 1.843944 -0.140065 -0.697879 1.619531 -2.731319 0.262232 -2.474500 1.010484 0.705525 -5.298512 4.019946 1.898426 -1.917675 -0.189790 -0.943248 1.414242 0.468741 1.908613 -2.275273 -2.171110 1.024342 -0.242848 0.014027 -1.543601 0.797851 -0.916535 -0.418266 -2.942436 -1.085044 2.605787 1.473234 -0.645522 0.581136 2.032848 -0.961673 0.613251 3.147602 2.126949 -0.072286 -2.090020 -5.801385 1.339219 0.202264 -0.135758 -0.172229 -2.163821 -0.912515 1.616348 -1.056085 2.686281 0.523780 -1.044396 2.880337 -3.750542 -2.901882 -1.899477 -0.580969 1.169230 -0.398944 0.318536 -1.363696 0.838805 0.229943 0.614025 -0.501220 -2.441794 0.021751 1.399586 3.382692 -0.139733 0.068839 3.448311 0.786393 -0.939869 -0.248445 -0.174215 -0.977282 0.156545 -3.321505 -0.327216 0.803410 1.441142 -2.364565 1.286912 -0.822614 0.050646 0.721668 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 1.061082 -1.534747 -0.642930 2.402852 0.395683 0.509988 0.149479 -0.212635 0.470917 -3.304359 -1.120681 2.108388 0.223255 0.418675 0.034749 0.862510 0.963322 0.158822 -2.665000 -0.082042 0.154854 -0.471844 -0.353708 0.144296 -0.014541 -1.116689 2.351067 0.722211 0.285973 1.572803 -0.627947 1.466582 1.612640 -0.000651 0.926460 1.095993 -0.189205 -0.237712 -1.524234 -0.744507 2.668119 0.548654 -0.020878 1.018634 -0.225600 1.948019 0.893673 2.401755 2.035910 -0.654105 1.127981 0.164428 -0.724547 -0.411234 -2.482881 0.299455 0.547857 0.082841 -0.905409 0.560426 -0.570894 0.518586 0.559772 0.388126 2.592263 0.134559 2.384060 1.837326 1.404985 -1.556079 0.138660 0.621235 0.635232 0.827953 1.965256 -1.332958 -1.472566 -0.599157 -0.168208 -1.176662 -0.065237 -0.503110 2.152609 -1.193102 -0.943905 -0.124179 -0.019639 2.022352 -0.825882 0.536247 -2.225101 0.026342 0.500023 2.108098 0.534634 0.335426 -0.155842 0.484311 -0.299690 0.693232 0.989266 -1.928518 0.302846 -2.923562 -1.179054 -1.394749 0.626133 0.530028 -1.913342 0.549457 -0.528050 1.337358 -2.492986 -0.267407 0.347962 0.384501 2.943804 -0.391914 -0.139711 -0.237957 0.589120 0.861333 0.921496 -0.958949 0.603918 -0.693975 0.816482 0.272253 0.826146 0.422020 -1.723740 -0.707344 0.547542 0.688607 0.229545 0.766791 1.303809 -0.731666 0.947080 -0.733958 1.484311 -2.003500 -0.623117 -0.963695 -0.970040 -0.969793 3.277370 1.124024 2.310601 0.063550 -0.839289 0.004746 -2.366016 -3.554151 0.039903 0.171853 -0.363058 1.022285 -0.342678 0.982934 -1.412691 0.543603 1.061662 -0.943701 -1.029780 0.012199 -1.002872 0.202949 -0.475239 -0.620528 -0.017998 0.182173 0.386947 2.408218 -0.375773 -4.374240 -2.643641 -0.962715 1.461575 -1.115418 0.108252 -0.462237 -0.808923 -1.440914 -0.026746 -1.492663 0.244623 -0.174344 -1.504572 -2.236103 0.628208 -0.489085 0.406192 0.768435 -1.800440 0.491354 0.338720 0.905008 0.331618 0.536416 -0.127357 -1.852599 -1.365568 0.370890 -1.177200 2.351692 0.261580 -0.394468 -0.859049 -1.024204 -1.571525 0.953378 -1.905532 1.072850 0.353675 -1.298287 0.426603 -1.452603 0.089455 -1.009100 0.763755 0.454889 -2.789675 2.408850 1.814757 -1.377682 -0.281341 -0.310701 0.822737 0.005621 1.365758 -1.457213 -0.907303 0.280257 0.424299 0.023731 -0.242435 0.578986 -0.218832 -0.647511 -2.116836 -1.280776 1.282114 0.791071 -0.120110 -0.256293 0.971128 -0.407327 -0.013605 2.095657 1.039168 0.706494 -1.576752 -4.525576 0.617367 0.587570 -0.662326 0.765028 -1.644239 -0.545302 0.433831 -1.208309 1.531058 -0.287771 -0.446664 1.681290 -2.161012 -1.509560 -1.441481 -1.140990 0.172625 -0.089869 0.977217 -0.962197 0.092669 -0.708783 0.318491 -1.202885 -0.466216 0.984715 0.961230 1.359387 0.312909 0.312950 1.635255 0.653544 -0.684549 -0.509159 0.054597 -1.165599 0.915958 -2.635960 -0.414088 0.305055 0.705144 -1.095739 0.003623 -0.178218 0.714631 -0.152337 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 2.513933 -1.970457 0.127457 2.297191 1.192736 -0.401754 0.626346 1.270120 0.132188 -4.345135 -2.555559 0.388825 -0.122871 -0.691354 1.257379 0.625352 1.946395 0.013297 -5.265623 0.795771 0.648182 -0.662584 -1.283801 0.221997 0.086697 -2.028802 -0.252748 2.167232 -0.079864 2.442507 -1.472389 1.057726 2.096767 0.168282 2.190895 2.519369 -0.214433 -0.817746 0.543491 0.173551 5.112590 1.043733 -0.376799 1.135277 1.664066 3.282536 -0.836024 4.821786 1.458052 -0.960936 3.442982 -2.514281 -1.308537 0.333566 -4.038288 0.708983 3.068754 0.895732 -2.558499 1.782396 -1.728516 0.901169 0.911393 -0.138988 4.214823 1.470121 2.281486 1.763268 3.307134 -1.915572 -0.164427 1.338281 1.934547 0.777662 -0.126102 -2.194747 -0.168008 -5.097019 0.788202 -3.114371 0.132860 -1.213945 3.556616 -1.859583 -0.171313 1.789742 -0.263860 2.558182 -1.960481 -0.005421 -3.452475 0.259852 0.710121 3.453906 -0.452860 0.563751 0.581917 0.990619 -0.191878 1.987893 -0.129391 -2.672818 -3.227303 -6.283636 -2.957555 -1.308117 0.219410 -0.710100 -3.603153 0.225538 2.122125 0.636021 -3.365782 -0.305692 0.820420 0.808448 0.624537 1.795873 -2.436207 -1.505413 -0.008491 1.883492 1.322712 -0.799898 0.659665 -4.002290 1.231835 1.078360 1.439874 -0.364232 -2.382632 -0.347667 1.023064 0.129306 -0.707188 0.221595 0.497699 -1.438940 1.647300 -1.676566 2.639067 -4.070862 -0.567595 -2.925317 -1.769115 -0.679782 5.191298 2.814766 2.373352 1.964531 -1.606544 0.083638 -3.608129 -4.968159 -0.205129 -0.778016 1.484984 -0.309529 -0.483233 0.528282 -0.998608 -0.571034 -0.004721 -2.000386 -1.196900 -1.507411 1.064503 0.110668 -1.039803 -1.745548 0.689775 2.627125 -1.177385 1.734432 -1.408679 -3.451618 -2.939022 -2.286686 2.223661 -1.136357 0.512916 -0.281350 0.054672 -3.302401 1.092782 -2.040952 -0.001733 -1.341911 -2.426091 -3.091681 0.839539 -0.939720 0.530711 0.422531 -2.398586 0.801994 1.087958 2.646039 0.726368 1.064892 -0.319342 -3.537600 -3.568771 -0.786097 -0.211251 3.925007 1.723180 -0.233434 -0.488276 -1.308175 -2.548088 2.604141 -3.014067 0.903789 0.921616 -2.889665 1.920736 -1.834166 -1.003201 -2.154905 1.449975 0.618360 -3.856757 4.111670 2.620727 -3.242745 -1.579032 -3.172514 1.313297 0.794109 3.653325 -0.918792 -0.030428 0.808137 0.746491 -0.376440 -1.156147 1.589654 0.159004 0.809293 -3.819095 -2.483200 2.405782 2.372244 -0.209644 0.513295 0.672219 1.394078 0.240784 3.913523 0.422480 0.061831 -1.762074 -6.913622 0.998842 2.805881 -0.200299 1.217489 -2.669545 -1.846820 -0.809326 -0.111136 3.138647 2.464801 0.709801 2.754857 -2.054312 -2.906288 -2.048552 0.020118 0.127547 -1.549109 1.050115 -1.769290 -0.009413 -0.821236 1.290853 0.267438 -1.431936 -3.105170 0.426922 1.699366 0.975614 -0.937789 2.864203 0.672331 -1.300802 -0.835897 0.287236 -0.044347 2.276353 -1.572189 -1.453707 -1.116227 0.806913 -1.625309 1.418436 0.407301 1.741141 0.839810 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 0.840550 -1.166037 -0.237837 1.035731 0.254550 -0.146928 0.127881 0.090806 0.382740 -1.365010 -0.430871 0.476632 0.051199 -0.154424 0.294684 0.416614 0.637839 -0.124229 -1.270196 0.345562 -0.043502 -0.293371 -0.691707 0.226970 -0.028863 -0.746701 0.602061 0.615584 -0.028235 0.769515 -0.489603 0.398286 0.705751 -0.239550 0.734872 0.776099 0.282887 -0.080431 -0.327778 0.277568 1.662879 0.339377 -0.149230 0.409850 0.480390 1.092702 0.107913 1.980057 0.968865 -0.335846 1.175147 -0.366366 -0.326494 -0.054254 -1.442491 0.269519 0.903638 0.131335 -0.951868 0.562044 -0.501329 0.334737 0.367229 0.538688 1.447813 0.349497 1.012236 0.694043 1.126010 -0.623014 0.007091 0.466903 0.862058 0.405078 0.725137 -0.783201 -0.563541 -1.262304 0.195373 -0.204526 0.132374 -0.349924 0.700380 -0.750485 -0.239078 0.497876 -0.113203 0.915947 -0.727185 0.113724 -1.141990 0.057484 0.371120 1.388478 -0.092097 0.288748 0.042452 0.486315 -0.123423 0.543741 0.355999 -1.154905 -0.557301 -1.862666 -1.166874 -0.607023 -0.031388 -0.209170 -1.265831 0.140660 0.338533 0.158679 -1.123994 0.125875 0.216482 0.124983 1.312280 0.177840 -0.285990 -0.287684 0.168982 0.603203 0.405422 -0.303754 0.281354 -1.143252 0.743143 0.549682 0.432704 -0.080726 -0.603120 0.070276 0.329710 0.464710 -0.248845 0.155133 0.241059 -0.924457 0.594860 -0.503473 0.874194 -1.311028 -0.518625 -0.918590 -0.540107 -0.243893 1.989711 0.474349 1.250327 0.365114 -0.850873 0.003390 -1.373330 -2.090796 -0.110229 -0.235447 0.042837 0.162047 -0.155816 0.177914 -0.383913 -0.085897 0.280145 -0.734125 -0.416843 -0.307317 -0.437954 0.029101 -0.339298 -0.485186 0.105258 0.701173 0.162143 0.868744 -0.320974 -2.030828 -1.050043 -0.585489 0.722820 -0.367707 0.289368 -0.001500 -0.314060 -1.335347 0.334122 -0.706986 0.099322 -0.510426 -0.719191 -1.031029 0.258493 -0.327591 0.503350 0.039218 -0.950788 0.302924 -0.163810 0.676865 0.257617 0.405674 -0.045741 -1.411057 -1.224347 -0.020537 -0.189125 1.685336 0.099116 -0.080543 0.220496 -0.436610 -0.943895 0.632334 -1.547237 0.305365 0.613982 -1.021132 0.576760 -0.608648 -0.493446 -0.749311 0.556624 0.166239 -0.505485 1.617934 1.121299 -1.102055 -0.388461 -0.512710 0.559230 0.226183 1.206268 -0.529518 -0.139981 0.280326 0.403360 -0.099501 -0.256904 0.517751 -0.029320 0.183820 -1.195554 -0.727247 0.679291 0.787397 -0.065663 -0.214698 0.116867 -0.053812 -0.365071 1.255359 0.197501 0.434270 -0.730416 -2.229939 0.322502 0.349628 -0.303777 0.551826 -1.130401 -0.347361 -0.079426 -0.091560 1.004322 0.514719 0.290952 0.927090 -1.114555 -1.058600 -0.687520 -0.415813 -0.084873 -0.350171 0.618803 -0.678242 0.009343 -0.432796 0.524328 -0.454444 -0.177343 -0.259001 0.272828 0.316723 0.191453 -0.302835 0.949370 0.222955 -0.370258 -0.333549 0.130482 -0.293984 0.744779 -0.653186 -0.432177 -0.361072 0.412686 -0.601937 0.449108 -0.106148 0.684046 0.106274 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 2.440736 -1.233347 -1.429055 2.418758 0.376141 -1.041439 0.379371 0.685484 0.437932 -3.275285 -1.335000 3.071942 0.294953 -1.098846 0.067633 1.195904 1.306491 0.723679 -3.545014 1.221656 0.028814 -0.398277 -2.322305 -0.386061 -0.129246 -1.251213 1.090797 1.218712 -0.047122 2.094899 -1.176421 1.041385 1.708319 -0.320164 1.872138 2.050564 -0.337193 -0.521324 -0.083210 -0.260675 3.914963 1.357281 0.150846 1.379308 1.205037 2.721407 0.006538 4.059644 1.660400 -0.662738 1.905753 0.626936 -1.277701 0.045693 -3.425747 0.556366 1.303443 -0.063079 -1.994778 1.436321 -0.978736 0.737524 1.214401 0.779529 3.843841 1.103672 1.809952 2.016877 3.178828 -1.131909 0.479904 0.628509 2.161515 0.466602 2.227620 -1.422076 -1.677107 -1.522971 0.054744 -2.419351 0.680065 -0.635236 3.981841 -2.186935 0.027632 0.585215 1.066945 2.566267 -1.877989 -0.329729 -2.713516 0.119682 -0.281129 3.825814 -0.065374 1.274270 -0.589454 0.955375 -0.607915 0.879962 -0.144303 -2.940576 -0.811659 -4.845711 -2.259239 -1.679168 -0.764615 -0.507612 -3.335987 0.141208 0.660009 2.356417 -3.738983 -0.188098 0.517044 -0.563297 2.315342 1.204129 -1.354908 -0.169088 -0.296058 1.434972 0.541890 -0.629627 0.069553 -1.797881 0.677388 0.832211 1.046265 0.347541 -3.283822 0.079816 1.068508 0.421073 -0.364533 0.839586 0.626384 -1.985216 1.128055 -1.628229 1.952527 -3.267277 -1.297780 -2.112304 -1.955820 -0.837653 3.373370 2.081117 3.021765 0.412712 -0.570321 -0.242614 -3.911267 -4.818038 0.477758 -1.382781 -0.053777 -0.041169 -0.120387 -0.148841 -1.298235 -0.277939 1.335855 -1.956912 -1.135413 -1.038383 1.849151 0.094183 -0.818449 -1.178458 -0.421434 1.293445 0.958187 1.664849 -1.179814 -5.101362 -3.207676 -1.245310 2.007007 -0.948500 0.430121 -0.531571 -0.774725 -1.840071 0.204025 -1.790127 0.370850 -1.303869 -0.791943 -2.665412 0.516661 -0.562196 0.158063 -0.421704 -2.158289 1.037535 1.185811 1.213987 -0.024970 0.867053 -0.035989 -2.891276 -2.324324 0.510654 -0.241808 3.276508 2.016669 0.296843 -0.976209 -0.780620 -2.852547 1.610420 -4.005053 1.199766 1.379545 -2.255696 1.953560 -2.066738 -0.791465 -1.487375 1.424576 -0.179005 -3.648631 3.692107 2.629427 -2.864781 -0.458414 -1.507483 1.466219 0.701979 2.768246 -1.513929 -0.628717 0.848636 0.318207 -0.338946 -0.542931 1.089582 -0.342640 0.889572 -2.891792 -1.324281 2.276749 1.682201 -0.288743 -0.590308 -0.355782 -0.734007 0.115886 2.948740 0.887693 0.996716 -2.374258 -5.987423 0.585482 -0.127083 -0.281850 1.164577 -1.664599 -1.028015 -0.168772 -1.429437 2.616423 -0.549643 -0.451678 2.043525 -3.304609 -2.816730 -1.758422 -0.275018 0.308647 -0.728250 1.817049 -1.573381 -0.152493 -0.988361 1.726632 -0.932173 -0.978209 -0.545993 1.213961 1.420549 0.909884 -1.341609 2.496357 0.413429 -0.743965 -0.627326 -0.203447 -0.509737 1.003907 -2.839643 -0.924046 -0.732101 1.289435 -1.829336 1.898934 0.080460 1.980710 0.526344 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 2.398417 -2.089664 0.082440 2.419129 1.205564 -0.063517 0.612378 1.090411 0.221959 -4.450786 -2.505681 0.637821 -0.089899 -0.381998 1.165471 0.632355 2.006465 -0.043851 -5.128949 0.520238 0.590235 -0.762532 -1.230539 0.343948 0.045831 -2.089110 0.184732 2.168697 0.010743 2.475157 -1.394348 1.157596 2.143309 0.174090 2.107895 2.452604 -0.092977 -0.789581 0.079068 -0.038250 5.084281 0.986680 -0.458469 1.177053 1.393463 3.317883 -0.615810 4.805586 1.689756 -0.990718 3.294380 -2.351856 -1.278379 0.202773 -4.094199 0.674683 2.921233 0.895207 -2.472730 1.703987 -1.620248 0.921629 0.871381 -0.079457 4.151454 1.300424 2.447271 1.830790 3.100554 -2.162663 -0.193272 1.381907 1.751471 0.915275 0.063973 -2.207303 -0.262931 -4.880576 0.787355 -2.936490 0.023263 -1.230919 3.444174 -1.808400 -0.358793 1.664056 -0.348503 2.551807 -1.889363 0.172844 -3.567229 0.211112 0.871788 3.449060 -0.275266 0.455075 0.618204 0.968877 -0.201843 1.972307 0.158555 -2.713663 -2.935724 -6.110410 -2.874454 -1.421388 0.421646 -0.524705 -3.466618 0.310111 1.952431 0.712809 -3.337558 -0.314387 0.781960 0.919026 0.964942 1.615934 -2.228597 -1.434389 0.180332 1.786444 1.443423 -0.890601 0.811131 -3.682179 1.288934 1.009309 1.457442 -0.250832 -2.431846 -0.469501 1.052662 0.276948 -0.594383 0.242596 0.630397 -1.353680 1.684409 -1.610646 2.666323 -3.988968 -0.523397 -2.756515 -1.716112 -0.808113 5.252772 2.771764 2.540793 1.899290 -1.659090 0.125480 -3.557867 -5.138430 -0.244653 -0.471710 1.316619 -0.068895 -0.556874 0.778509 -1.178993 -0.400853 0.132838 -1.921576 -1.293438 -1.258491 0.763903 0.144515 -1.020751 -1.658013 0.771822 2.410568 -1.113361 1.989933 -1.327496 -3.731196 -3.031682 -2.254594 2.254180 -1.253316 0.465272 -0.238721 -0.113881 -3.255428 1.000075 -2.053898 0.025966 -1.204426 -2.570398 -3.152842 0.977183 -0.972471 0.518551 0.718461 -2.500305 0.805047 0.963474 2.552517 0.748130 1.030736 -0.282586 -3.482895 -3.459728 -0.719881 -0.428343 3.964042 1.568118 -0.359914 -0.467247 -1.440896 -2.483537 2.532405 -3.043519 1.016975 0.838945 -2.809838 1.656927 -1.986631 -0.915886 -2.084986 1.462880 0.785577 -3.699286 4.099593 2.675081 -3.114176 -1.549942 -2.918653 1.278606 0.664734 3.528487 -1.079805 -0.196425 0.790074 0.812763 -0.310980 -1.058864 1.502371 0.251166 0.484652 -3.859417 -2.504495 2.348593 2.264059 -0.192920 0.497851 0.973556 1.263934 0.153480 3.955679 0.509417 0.151165 -1.748361 -6.909494 1.078235 2.608131 -0.323333 1.220189 -2.765250 -1.738406 -0.633940 -0.253319 3.036317 2.269512 0.596191 2.838876 -2.111901 -2.822403 -2.101415 -0.279813 0.145919 -1.419772 1.079040 -1.754468 0.049458 -0.915040 1.104697 0.023914 -1.303739 -2.673677 0.518095 1.708447 0.887166 -0.688138 2.859731 0.725555 -1.321674 -0.839354 0.301397 -0.262461 2.299312 -1.833381 -1.362403 -0.885715 0.829881 -1.623585 1.092818 0.378832 1.582414 0.718989 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 1.942531 -1.358142 -1.152061 2.140095 0.502739 -0.503260 0.369257 0.426353 0.388697 -3.045557 -1.075013 3.303130 0.139337 -0.608179 -0.149426 0.864517 1.220417 0.518518 -3.101698 0.705563 -0.095033 -0.384603 -1.969795 -0.369139 -0.075834 -1.116193 1.781949 1.242278 0.056335 1.761013 -0.931444 0.830212 1.405195 -0.032376 1.566627 1.673153 -0.103130 -0.470843 -0.717629 -0.637173 3.494139 1.206010 -0.028929 1.389853 0.905082 2.335065 0.494246 3.424663 2.005940 -0.523750 1.184624 0.921615 -1.181845 -0.288530 -3.165102 0.381897 0.858862 -0.065013 -1.557269 1.140940 -0.571808 0.568592 0.900384 0.664878 3.376355 0.524664 1.770598 1.628393 2.483973 -1.302158 0.189141 0.723870 1.852963 0.705480 2.263500 -1.343310 -1.697185 -1.250129 -0.018396 -2.218003 0.346842 -0.604091 3.451701 -1.625480 -0.138863 0.282566 0.826650 2.009615 -1.425269 -0.263004 -2.580371 0.125209 0.005029 3.621104 0.187582 0.974496 -0.304295 0.718907 -0.352415 0.912269 0.430170 -2.496826 -0.095099 -4.264814 -1.516151 -1.574298 -0.381496 -0.371968 -2.649406 0.255006 0.320254 2.474399 -3.203156 -0.348217 0.482532 -0.409392 2.357029 0.450303 -0.852131 0.026126 -0.009326 1.077652 0.618636 -0.756508 0.112118 -0.856233 0.677749 0.494198 0.950263 0.450430 -3.219651 -0.236430 0.969972 0.802813 -0.163089 0.569371 0.520289 -1.512745 0.934383 -1.409628 1.711957 -2.738048 -0.804279 -1.506774 -1.552815 -0.844808 3.052434 1.810223 2.913480 0.300371 -0.346076 -0.167485 -3.243352 -4.777624 0.552781 -0.755573 -0.259843 0.180162 -0.144997 0.159732 -1.378682 -0.257854 1.517125 -1.475665 -1.009130 -0.643016 1.272932 0.090998 -0.619842 -0.852505 -0.161320 1.047877 1.012286 1.577220 -1.009098 -5.166022 -2.884348 -1.119397 1.680745 -0.957291 0.116727 -0.348341 -0.896018 -1.332939 0.130040 -1.505287 0.528163 -0.950296 -1.018570 -2.260226 0.536798 -0.575927 0.281473 0.032124 -1.873220 0.790277 0.779848 0.996491 -0.019765 0.700058 0.103903 -2.451229 -1.910425 0.466998 -0.329844 2.798612 1.494393 0.135000 -1.056705 -0.764327 -2.521469 1.318928 -3.683268 1.101773 0.980917 -1.906252 1.405754 -1.949045 -0.388745 -1.005508 1.242017 0.104616 -3.096520 3.276510 2.410175 -2.303003 -0.552448 -0.917934 1.005027 0.502432 2.267748 -1.619686 -0.820187 0.711981 0.285441 -0.215669 -0.320960 0.851716 -0.038177 0.439571 -2.747591 -1.382241 1.754880 1.304618 -0.237230 -0.476063 0.073838 -0.843284 -0.267928 2.800628 0.796316 1.107149 -2.082371 -5.352706 0.588270 -0.424691 -0.306197 1.076289 -1.513765 -0.942163 0.069162 -1.550945 2.109476 -0.782258 -0.785497 1.797892 -2.925820 -2.204017 -1.525447 -0.718174 0.328845 -0.506961 1.695978 -1.291964 -0.121954 -1.029245 1.133212 -1.092463 -0.546253 0.202210 1.066926 1.146957 0.854913 -0.864627 2.086169 0.360943 -0.700205 -0.494978 -0.150615 -0.615623 1.000493 -3.074547 -0.695713 -0.479255 1.066594 -1.407549 1.240281 0.161648 1.578332 0.275536 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 0.840550 -1.166037 -0.237837 1.035731 0.254550 -0.146928 0.127881 0.090806 0.382740 -1.365010 -0.430871 0.476632 0.051199 -0.154424 0.294684 0.416614 0.637839 -0.124229 -1.270196 0.345562 -0.043502 -0.293371 -0.691707 0.226970 -0.028863 -0.746701 0.602061 0.615584 -0.028235 0.769515 -0.489603 0.398286 0.705751 -0.239550 0.734872 0.776099 0.282887 -0.080431 -0.327778 0.277568 1.662879 0.339377 -0.149230 0.409850 0.480390 1.092702 0.107913 1.980057 0.968865 -0.335846 1.175147 -0.366366 -0.326494 -0.054254 -1.442491 0.269519 0.903638 0.131335 -0.951868 0.562044 -0.501329 0.334737 0.367229 0.538688 1.447813 0.349497 1.012236 0.694043 1.126010 -0.623014 0.007091 0.466903 0.862058 0.405078 0.725137 -0.783201 -0.563541 -1.262304 0.195373 -0.204526 0.132374 -0.349924 0.700380 -0.750485 -0.239078 0.497876 -0.113203 0.915947 -0.727185 0.113724 -1.141990 0.057484 0.371120 1.388478 -0.092097 0.288748 0.042452 0.486315 -0.123423 0.543741 0.355999 -1.154905 -0.557301 -1.862666 -1.166874 -0.607023 -0.031388 -0.209170 -1.265831 0.140660 0.338533 0.158679 -1.123994 0.125875 0.216482 0.124983 1.312280 0.177840 -0.285990 -0.287684 0.168982 0.603203 0.405422 -0.303754 0.281354 -1.143252 0.743143 0.549682 0.432704 -0.080726 -0.603120 0.070276 0.329710 0.464710 -0.248845 0.155133 0.241059 -0.924457 0.594860 -0.503473 0.874194 -1.311028 -0.518625 -0.918590 -0.540107 -0.243893 1.989711 0.474349 1.250327 0.365114 -0.850873 0.003390 -1.373330 -2.090796 -0.110229 -0.235447 0.042837 0.162047 -0.155816 0.177914 -0.383913 -0.085897 0.280145 -0.734125 -0.416843 -0.307317 -0.437954 0.029101 -0.339298 -0.485186 0.105258 0.701173 0.162143 0.868744 -0.320974 -2.030828 -1.050043 -0.585489 0.722820 -0.367707 0.289368 -0.001500 -0.314060 -1.335347 0.334122 -0.706986 0.099322 -0.510426 -0.719191 -1.031029 0.258493 -0.327591 0.503350 0.039218 -0.950788 0.302924 -0.163810 0.676865 0.257617 0.405674 -0.045741 -1.411057 -1.224347 -0.020537 -0.189125 1.685336 0.099116 -0.080543 0.220496 -0.436610 -0.943895 0.632334 -1.547237 0.305365 0.613982 -1.021132 0.576760 -0.608648 -0.493446 -0.749311 0.556624 0.166239 -0.505485 1.617934 1.121299 -1.102055 -0.388461 -0.512710 0.559230 0.226183 1.206268 -0.529518 -0.139981 0.280326 0.403360 -0.099501 -0.256904 0.517751 -0.029320 0.183820 -1.195554 -0.727247 0.679291 0.787397 -0.065663 -0.214698 0.116867 -0.053812 -0.365071 1.255359 0.197501 0.434270 -0.730416 -2.229939 0.322502 0.349628 -0.303777 0.551826 -1.130401 -0.347361 -0.079426 -0.091560 1.004322 0.514719 0.290952 0.927090 -1.114555 -1.058600 -0.687520 -0.415813 -0.084873 -0.350171 0.618803 -0.678242 0.009343 -0.432796 0.524328 -0.454444 -0.177343 -0.259001 0.272828 0.316723 0.191453 -0.302835 0.949370 0.222955 -0.370258 -0.333549 0.130482 -0.293984 0.744779 -0.653186 -0.432177 -0.361072 0.412686 -0.601937 0.449108 -0.106148 0.684046 0.106274 -PE-benchmarks/dfa-based-division.cpp__main = 1.080649 -0.817891 -0.348859 2.023438 0.291795 0.727800 0.381666 0.142885 0.380583 -2.932573 -1.547560 1.295130 0.201877 0.529125 0.298297 0.561013 0.938231 0.226992 -2.961365 -0.309320 0.506383 -0.399018 0.086232 0.299950 -0.014080 -1.181468 1.107899 1.002835 0.277876 1.839259 -0.539196 1.288336 1.576123 0.119277 0.523495 1.244046 -0.269055 -0.360174 -1.128184 -0.735814 2.394664 0.442593 -0.188332 0.909438 -0.353144 2.126939 0.274824 2.199423 1.836471 -0.815169 1.311417 -0.344868 -0.913595 -0.250754 -2.034824 0.236897 0.899912 0.414720 -0.687759 0.732910 -0.688689 0.560364 0.558598 -0.232272 2.011671 0.685229 1.761354 1.479835 1.470778 -1.824425 0.175403 0.596525 0.305492 0.708852 0.772159 -1.173273 -0.835292 -1.427187 0.016821 -1.724858 -0.435554 -0.696738 2.074592 -1.244066 -0.800153 0.190346 -0.093624 1.881871 -0.891427 0.743861 -2.072093 0.049154 0.534518 1.603785 0.419066 0.120753 -0.141578 0.306262 -0.228040 0.732796 0.544495 -1.662294 -0.729540 -2.805420 -1.284505 -1.230813 0.727379 0.557872 -1.925769 0.610496 0.147814 1.112492 -2.331751 -0.436406 0.479330 0.855707 1.187350 0.719772 -0.738672 -0.557629 0.732105 0.967375 1.204092 -1.009387 0.867566 -1.027439 0.320552 0.310263 0.769741 0.288033 -1.362154 -0.934232 0.612051 0.305857 0.375683 0.694100 1.127262 -0.235291 1.036270 -0.904300 1.622445 -2.057691 -0.573871 -0.916816 -0.741290 -1.023793 2.801117 1.781331 1.776068 0.453138 -0.800853 -0.033469 -2.015586 -2.755125 -0.210096 0.235191 0.274728 0.761043 -0.437488 1.043503 -1.344383 0.595734 0.453102 -0.853502 -0.999620 0.047354 -0.198483 0.245844 -0.515635 -0.963650 0.212620 0.095974 -0.371248 1.974502 -0.329897 -2.899876 -2.298559 -1.189529 1.649422 -1.125140 0.059868 -0.639704 -0.513666 -1.295260 0.003056 -1.271235 -0.319450 0.188821 -1.742433 -2.241003 0.930505 -0.476254 -0.273410 1.081150 -1.808635 0.338621 0.894738 1.181781 0.565209 0.540660 -0.276681 -1.582377 -1.321527 -0.111750 -1.219205 2.139747 0.887882 -0.439427 -1.000621 -1.143831 -1.294164 1.406135 -1.558600 1.089126 -0.021087 -0.952669 0.474849 -1.407861 -0.079192 -1.076668 0.764399 0.615762 -3.001460 2.090134 1.708774 -1.346711 -0.457107 -0.918575 0.786050 0.168378 1.494607 -1.291745 -0.863926 0.310284 0.493392 0.018364 -0.413852 0.626956 -0.128003 -0.824945 -1.825608 -1.010167 1.469297 0.923334 -0.188504 0.080454 1.385899 0.270194 0.666801 1.776179 0.839178 -0.016023 -1.122389 -4.094915 0.811174 1.308084 -0.507435 0.812904 -1.829011 -0.647191 0.534776 -0.963527 1.627188 0.098966 -0.126357 1.830566 -1.411129 -1.499244 -1.506296 -0.822415 0.211459 -0.180102 0.820011 -0.820682 0.228664 -0.319523 0.148255 -0.716312 -0.887569 -0.098202 0.833676 1.562891 0.254415 0.392196 1.819478 0.668931 -0.777364 -0.558229 -0.005208 -1.101107 0.614966 -1.847005 -0.237751 0.473493 0.675324 -1.173384 0.027442 -0.037811 0.309257 -0.021138 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 1.373831 -0.864379 -1.242089 3.288796 0.226747 0.625250 0.336755 -0.218177 0.296784 -4.226807 -1.903925 2.012757 0.641702 0.678152 0.298515 1.095095 1.120648 0.310922 -3.297514 -0.167945 0.716356 -0.453836 -0.685272 0.625826 -0.143203 -1.549227 1.756552 0.962216 0.375439 2.628438 -0.675659 2.074986 2.293268 -0.470308 0.856239 1.735761 -0.152938 -0.070922 -1.623798 -0.569020 3.503133 0.560785 -0.010387 1.194857 -0.486249 2.969479 0.276836 3.532829 1.590654 -1.323607 1.988088 0.525720 -0.826331 -0.442545 -2.821422 0.564665 1.572038 0.744320 -1.301660 0.920769 -0.854157 0.662971 1.017075 0.555631 3.088575 1.414573 2.507153 2.579601 2.393390 -2.228344 0.422880 0.699554 0.203595 0.563003 1.840248 -1.569831 -1.582802 -0.744981 -0.197935 -1.909493 -0.430230 -0.712499 3.395472 -2.037664 -1.076855 0.048323 0.426727 2.802609 -1.444672 0.932884 -2.854037 -0.212171 0.159467 2.773857 0.447160 0.413149 -0.572787 0.694482 -0.427379 0.863821 0.546834 -2.587901 -0.615173 -3.585687 -2.382147 -1.752342 0.756204 1.047509 -3.055843 0.325223 -0.457385 1.340024 -3.768836 -0.241357 0.558337 1.174997 3.151626 1.410542 -1.566171 -0.468915 0.952178 0.895520 1.477362 -0.805922 1.247456 -1.563619 0.507776 0.482922 0.868694 0.509378 -2.705349 -0.912890 0.487418 0.059767 0.376368 1.094946 1.746567 -0.963314 1.583934 -1.280739 2.168615 -3.359318 -1.323106 -1.330913 -2.077446 -1.364253 3.282856 2.265710 2.890027 -0.132487 -1.714781 -0.196580 -3.678638 -4.073595 -0.338610 0.154771 -0.027157 1.308189 -0.655731 1.290244 -2.034006 0.982150 1.580727 -1.161110 -1.421752 -0.041741 0.691408 0.342548 -0.713062 -1.333528 -0.146431 -0.404355 0.149170 3.159703 -0.451020 -4.342411 -4.011735 -1.273538 2.338903 -1.384768 0.286319 -1.012832 -1.004478 -2.462498 -0.214404 -2.036156 -0.385652 -0.137239 -1.820838 -3.153488 1.353342 -0.524207 -0.774228 1.022840 -2.637587 0.534461 1.524195 1.300930 0.808729 0.431047 -0.358886 -2.354862 -1.933318 0.556428 -1.666495 3.098856 1.483610 -0.450631 -0.903379 -1.506510 -2.292627 1.561656 -2.230693 1.481356 0.656557 -1.119446 0.864603 -2.432876 -0.379929 -1.654048 0.915238 0.629386 -3.859332 3.228779 2.179983 -1.831085 -0.261352 -0.625434 1.369739 0.152329 1.784167 -1.792223 -1.305420 0.540992 0.660144 0.025380 -0.581038 0.762597 -0.550110 -0.861325 -2.479929 -1.199897 2.235458 1.384027 -0.354319 -0.182797 1.362749 -0.747469 0.652972 2.501587 1.615687 0.214661 -1.459953 -5.245501 1.059720 -0.319477 -0.980491 0.492985 -2.156725 -0.675945 0.916147 -1.429247 2.358056 -0.488661 -0.455657 2.583097 -2.938012 -2.380542 -2.088344 -1.047419 0.309050 -0.201700 0.843353 -1.369530 0.567709 -0.343751 0.507586 -1.248876 -1.509649 0.364660 1.175154 2.092305 -0.251916 0.359688 2.690485 0.890569 -0.765163 -0.749196 0.262425 -1.392001 0.722755 -3.179730 -0.456808 0.533842 1.128984 -1.802662 0.277744 -0.618176 0.518300 0.420570 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 3.966673 0.761844 -1.664322 5.706584 1.524617 -0.136310 1.046043 2.045871 -0.521415 -5.952033 -2.735743 4.213378 0.178528 -0.169686 1.280327 1.909674 2.598604 2.231641 -7.855143 0.134600 -0.225016 -0.403700 -1.146919 -2.810807 0.321692 0.052343 2.345647 3.396178 0.892882 4.622253 -2.133855 2.181009 3.153208 1.537477 3.302701 1.597801 1.231054 -0.192827 -3.427383 -2.204053 7.193461 1.902859 -0.247031 3.820466 0.961725 5.874562 1.750317 3.924233 1.682084 -0.154411 2.320968 -0.744795 -2.357695 -0.815544 -5.990196 0.599967 3.090105 1.705932 -2.636214 3.473434 -0.062444 1.751212 1.932315 -1.461334 5.942503 1.665183 3.786833 3.871954 5.153814 -3.891530 0.382388 -0.627802 3.643637 0.655268 0.800059 -5.063706 -2.255437 -5.920190 -0.064477 -7.785029 0.656300 -1.706752 6.706681 -4.097740 0.344798 1.686088 -0.381621 3.832778 -3.807012 -0.131095 -5.097282 -0.893507 -0.511315 6.892741 1.102688 0.932248 0.602930 1.236147 0.637648 1.961012 1.302410 -4.337321 -0.377756 -7.575620 -3.609095 -0.664367 -0.060243 -0.654605 -2.444471 -0.253979 0.755295 3.122203 -6.962207 -2.906720 1.682513 0.568162 1.354954 -0.167097 -1.767302 0.751364 -0.021584 3.039927 2.736460 -4.250821 0.960065 -0.930542 -1.893181 0.667691 3.303371 1.635219 -4.253710 -1.792040 1.451474 -0.113269 0.390668 -0.200631 -0.408990 -2.115078 2.598119 -3.485625 4.761224 -5.204830 -2.208180 -1.447707 -2.816437 -2.237732 5.280955 2.079120 4.356482 2.259302 -0.830952 0.136662 -4.765329 -8.056477 2.894530 0.787996 0.295187 1.167125 -0.774802 1.030254 -4.095552 -1.111019 4.042366 -3.102975 -4.300905 -1.638506 2.427423 0.282651 -2.131029 -3.074110 1.679475 2.794321 1.937284 3.611359 -2.389561 -8.006104 -4.361884 -2.406974 4.576897 -2.706382 -0.030853 -0.375461 -0.467258 -4.138536 0.061708 -5.204919 2.139060 0.209748 -3.212485 -5.483129 2.856982 -1.396307 1.317558 2.067663 -3.733491 1.987495 1.499263 3.303307 -1.568464 1.873038 1.575254 -4.648492 -4.811495 -0.580669 -1.179248 4.908140 0.672266 1.618029 -3.941342 -1.156205 -3.305814 4.027177 -3.548910 2.627879 -0.301027 -1.419084 2.563605 -3.207404 -0.718414 -2.879673 2.446971 1.418989 -6.862554 4.961340 4.646833 -4.632273 -1.825288 -3.310433 2.290041 0.617430 6.059991 -4.075429 -3.622522 1.623155 1.489952 -0.441712 -2.881589 1.690919 0.674416 -1.126396 -5.867165 -2.581865 3.962113 3.090257 -0.248386 1.251280 2.667814 -0.038155 -1.231965 6.419762 1.385616 1.332257 -2.806629 -9.216336 0.444604 4.041665 0.527692 1.526278 -3.276613 -1.846566 0.286894 -1.782492 4.366599 1.855083 -1.952479 4.622424 -4.019205 -4.374381 -3.927067 0.055223 1.683709 -2.479399 1.738246 -2.474220 0.242146 -0.768624 1.348172 -0.590150 -1.706930 -0.600983 0.718156 3.943151 -0.083930 -0.760322 5.644492 0.982713 -2.097123 -0.169340 -0.860740 -1.535044 3.230634 -5.897338 -1.145609 -0.204259 1.927258 -3.474061 1.254176 0.141506 1.334500 1.084444 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 9.404278 -2.213566 -4.522069 16.270369 1.414495 0.020197 2.568653 3.211995 2.206962 -21.096353 -9.120648 16.037686 2.172731 0.713748 -0.472293 4.509869 5.605266 6.350771 -24.864584 0.601558 3.210106 0.550416 -2.419848 -5.265174 0.258779 -4.463744 10.251141 6.339605 2.511909 13.646625 -5.719308 7.823256 11.516487 1.447225 7.020967 8.841296 -2.758804 -2.100167 -7.806901 -8.258690 19.055249 6.932652 -0.002950 9.088004 -0.589683 15.777089 5.375743 9.965914 8.389499 -5.192983 3.377749 3.339136 -7.545257 -3.162683 -15.885700 3.124821 5.724434 4.145805 -6.235896 6.950207 -1.367263 4.070814 6.363806 -0.560569 17.166471 3.942602 11.154685 13.168049 13.600143 -11.177855 3.252579 0.269595 5.644201 1.612528 10.998448 -9.607144 -9.864281 -7.253341 -1.347315 -19.900359 0.725040 -2.307968 18.832178 -11.752764 0.500942 0.743079 3.576110 14.773863 -7.653951 0.248159 -14.960450 -0.455514 -1.541571 18.845482 2.867686 3.075736 -1.120315 4.662274 -1.107760 4.088387 3.598968 -13.613254 2.285969 -23.266613 -6.958396 -9.085907 1.520999 2.801398 -12.563971 1.655708 -0.702097 13.074821 -21.437825 -4.482676 3.186417 1.945959 7.257978 -4.134615 -2.451149 0.724879 -1.012682 5.869613 5.606489 -10.349833 3.249365 -0.423833 -2.327245 2.313079 7.218295 4.970099 -15.324092 -5.862498 4.079366 0.902819 1.528898 6.238147 6.122990 -4.234974 6.503115 -10.483460 12.282394 -13.958117 -3.293003 -6.078659 -7.491977 -7.520599 13.412044 7.475836 10.480673 0.054885 -1.731190 -0.223269 -16.968070 -23.231152 5.159939 1.731196 -0.159354 4.632245 -2.611641 3.745983 -11.924221 1.232400 8.781824 -8.541476 -9.042358 -1.586425 6.345009 1.495695 -4.937767 -5.327591 1.360745 2.977207 2.998236 13.125782 -5.252017 -21.742297 -19.251445 -7.246463 13.006109 -7.668871 -0.689972 -4.889439 -4.569921 -6.809055 0.169705 -11.997878 3.615086 -0.940078 -7.245702 -17.711033 5.003277 -3.541138 0.468280 5.094114 -13.015785 4.966500 6.442656 5.273089 -1.536875 3.218648 2.986593 -11.994259 -8.650811 2.444980 -5.687088 12.331019 6.992701 0.880214 -10.703648 -6.194136 -9.704633 9.058740 -10.211440 9.404884 0.347984 -7.091349 6.693030 -11.168140 0.764616 -8.379766 6.007820 3.079472 -20.470607 17.478935 11.613996 -11.525207 -1.565002 -5.830226 6.869279 1.373543 12.252637 -12.156819 -9.538681 3.977298 -0.392058 -0.794360 -4.947104 3.871068 -0.966260 -2.517141 -14.622574 -6.193559 11.472957 5.866317 -1.209263 1.900737 7.219327 -4.007880 1.596322 15.471133 7.840998 4.120293 -12.723747 -28.136599 5.396441 3.152329 1.062578 1.891562 -8.301726 -5.714937 3.907115 -4.380547 12.270063 1.555374 -5.964368 12.698946 -16.418426 -13.016097 -10.719826 -3.538269 4.181867 -2.120257 4.638634 -6.849165 1.528157 -3.114635 4.268626 -5.031076 -5.981679 1.454275 7.489866 12.465234 2.392409 -1.791438 15.138536 3.899623 -5.487488 -1.721468 -2.226974 -6.937506 2.282890 -15.958995 -2.595509 2.302123 6.666829 -10.543709 4.822304 -0.415927 4.169426 1.030856 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 1.893763 -0.513886 -1.030001 2.658803 -0.022354 0.429747 0.677097 0.254413 -0.083094 -4.350109 -1.963170 1.833261 0.780463 0.943673 -0.111689 1.506092 0.696042 0.778342 -4.073974 -0.244439 1.085787 -0.121401 -0.062625 0.218108 -0.096122 -1.414751 0.822190 0.863321 0.447906 2.966946 -0.959958 1.770677 2.629985 -0.348479 0.353188 2.060786 0.375103 -0.193734 -1.242344 -0.696514 3.243037 0.520903 0.051391 0.849235 -0.950275 3.112509 0.444852 3.972639 0.643680 -1.574881 1.865737 -1.212950 -1.624591 -0.094949 -2.388984 0.560904 1.487457 1.629313 -0.949095 1.353418 -0.638758 0.818843 1.117222 0.099110 2.812530 1.526818 2.040967 2.080191 2.596189 -2.512381 0.592426 0.636195 -0.163807 0.024083 1.755892 -2.165189 -1.038183 -1.210359 0.448515 -3.027687 -0.716633 -0.254028 3.966311 -2.483555 -0.743914 0.696523 0.538140 2.984269 -1.455527 1.119417 -2.806781 0.000000 0.145952 3.498492 0.400387 0.392313 -0.719316 0.705855 0.021993 0.722957 0.336057 -2.342941 -1.492790 -3.250207 -1.909577 -1.766969 0.325086 1.410932 -3.419584 -0.127051 0.042358 2.120951 -4.302784 -0.104232 0.978668 1.523666 2.776274 2.347221 -1.483324 -0.143709 0.508087 0.837060 1.551405 -1.395433 1.138015 -1.257217 0.321739 0.529266 0.689949 0.361902 -3.917649 -1.003375 0.804534 -0.851549 0.623918 1.353424 1.783808 -0.733704 1.548405 -1.873990 1.949459 -3.448010 -1.098112 -0.773296 -2.910964 -1.445028 3.426479 2.388910 2.092777 -0.094182 -1.530625 -0.404033 -3.388768 -4.226013 -0.361059 0.217067 0.547742 1.306506 -0.712040 1.042945 -2.073886 0.787458 1.081301 -1.211192 -1.497002 -0.118549 1.686692 0.262088 -0.841965 -1.290884 -0.067250 -0.145260 -0.013587 3.061332 -0.605867 -3.925880 -4.131822 -1.726047 2.611945 -1.343120 0.237496 -1.344525 -0.840188 -2.592285 -0.090785 -1.885767 -0.155957 0.393369 -1.907608 -3.460452 1.493691 -0.544416 -1.228424 1.233856 -2.559401 0.364395 1.654836 0.887860 0.725956 0.190081 -0.162720 -2.375671 -2.049398 0.419511 -1.776079 2.715524 1.637499 -0.157701 -1.210562 -1.486883 -2.235841 1.918264 -2.213609 1.532015 -0.058162 -0.400488 1.356282 -2.382860 0.227933 -1.751102 1.207538 0.715878 -4.171864 3.647383 2.312608 -1.754592 -0.277428 -0.826744 1.228001 0.644074 1.920722 -1.893372 -1.716673 0.749247 0.205450 -0.050941 -0.569092 0.881531 -0.942991 -0.583469 -2.251481 -0.917744 1.852849 1.572470 -0.444187 0.209026 1.716226 -0.474889 0.827655 2.415202 1.123588 -0.320550 -1.455219 -5.880859 1.357639 0.234971 -0.793638 0.479947 -2.170644 -0.431229 1.363465 -1.401875 2.486968 0.195148 -0.530003 2.595693 -3.117541 -2.639505 -1.873985 -0.713253 0.493908 -0.106656 0.497526 -1.174287 0.698267 0.073444 0.398223 -0.728386 -1.933126 -0.151593 1.126203 2.814784 -0.165032 0.180312 3.060076 0.540290 -0.331586 -0.637561 -0.057240 -0.549997 0.469451 -2.408448 -0.379494 0.708818 1.293455 -1.983876 0.763539 -0.514781 -0.173621 0.696550 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 2.019264 -1.001361 -2.380569 4.729882 -0.028833 0.796393 0.246935 -0.681568 0.162877 -5.809842 -2.408947 1.951341 1.446204 0.888378 0.435803 2.498927 0.808390 0.466300 -3.914232 -0.028675 1.329041 -0.569779 -0.844939 0.596378 -0.312652 -2.258925 2.502537 0.718337 0.371538 3.623985 -0.950119 3.368243 3.432011 -0.750469 1.028897 2.189573 -0.489611 0.095312 -2.269821 -0.424004 4.469268 0.894106 0.051066 0.833280 -1.149954 3.949109 0.770010 4.586921 -0.128563 -1.918263 2.630605 0.737915 -0.894444 -0.187810 -3.507763 0.850235 2.082255 1.224747 -1.579613 1.171507 -1.684523 1.200869 1.583510 1.492983 4.582109 1.674923 3.946683 3.521669 3.091118 -2.920258 1.094990 0.804365 -0.423433 -0.449297 3.658177 -2.124462 -2.427902 0.202604 -0.104731 -2.387486 -0.324114 0.011917 5.040505 -3.058260 -1.692913 0.236342 1.316562 4.387254 -2.228243 1.622310 -3.619432 -0.167168 -0.467583 4.572733 0.653972 0.631629 -1.363302 1.416641 -0.592705 0.506780 0.954024 -3.527701 -0.620024 -3.843843 -3.398550 -2.524339 1.228808 1.809944 -4.890150 0.298081 -0.686967 2.099852 -5.574273 0.392880 0.862036 1.923230 5.819089 1.456204 -1.829096 -0.059988 0.995901 1.392346 1.861236 -1.021850 1.917541 -2.114112 1.126068 1.019177 0.972363 0.653834 -4.596743 -0.879908 0.687339 -0.866354 0.584034 2.308885 3.074398 -1.694875 2.155971 -1.925146 2.970559 -4.930408 -1.543266 -1.835339 -4.047607 -1.804087 3.836119 3.023226 3.481836 -0.714044 -2.553254 -0.114911 -5.456163 -5.618409 -1.214674 0.433620 -0.435147 1.934016 -0.847321 1.803102 -2.882215 2.112611 2.760527 -1.763684 -2.071711 0.196592 1.953896 0.484259 -1.399503 -1.116955 -0.786469 -1.056754 0.493073 5.123879 -0.088392 -5.527341 -6.448778 -1.552928 3.250826 -1.955967 0.599627 -2.051251 -1.393604 -3.855067 -0.052754 -2.835361 0.094713 0.248661 -1.919246 -4.346859 1.638381 -0.510172 -1.155710 1.037500 -3.458906 0.728098 2.482012 0.427679 1.028971 0.588488 -0.326549 -3.100931 -2.517477 1.356410 -2.597033 4.031179 1.954992 -0.720283 -0.911396 -2.081672 -3.256249 1.830663 -2.268878 1.990458 0.590516 -1.073492 1.041706 -3.704287 -0.285564 -2.380827 0.921012 0.260212 -4.203404 4.441834 2.969438 -2.280696 0.147909 -0.469798 2.390074 -0.079084 1.995232 -2.312798 -1.756295 0.219151 0.676580 0.008982 -0.345774 0.892643 -1.786397 -1.346869 -2.986474 -1.192889 2.979945 1.818790 -0.582882 -0.405167 1.717329 -1.907606 0.787642 2.907207 2.363203 0.138505 -2.300037 -6.918927 1.150698 -2.380889 -1.663407 -0.194031 -1.887052 -0.468073 1.070629 -1.589247 3.149250 0.103361 -1.186327 3.436231 -4.744085 -3.582429 -2.994073 -1.074653 0.066012 -0.136044 0.333506 -1.724902 0.886512 -0.168309 0.794429 -1.736502 -2.665362 1.157597 1.594219 3.664372 -0.712888 0.013683 3.694106 1.573730 -0.401610 -1.161015 0.514113 -1.949968 0.940929 -4.208203 -1.016309 1.070985 1.658684 -2.645336 0.335865 -1.085294 0.415092 0.538347 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 1.369677 -0.611206 -0.852266 2.503086 0.137055 0.163287 0.489120 0.161193 0.173912 -3.522025 -1.494751 1.394841 0.578950 0.279767 0.101144 1.097713 0.729621 0.749375 -2.865334 -0.026356 0.719000 -0.082761 -0.440589 -0.131460 -0.143659 -1.176790 1.032741 0.734648 0.271925 2.284518 -0.694776 1.339785 2.013986 -0.267045 0.627721 1.671059 0.171770 0.035432 -1.001360 -0.422556 2.939749 0.702039 -0.096992 0.922132 -0.297238 2.486952 0.426100 2.641253 0.217323 -1.062730 1.344543 -0.137683 -0.963476 -0.303094 -2.280548 0.582263 1.637934 1.119996 -1.025997 1.167925 -0.741354 0.654901 0.950351 0.342608 2.523943 1.183507 1.820640 2.025020 2.275052 -1.906533 0.428538 0.483560 0.319864 -0.008194 1.782845 -1.488351 -1.307073 -0.993374 -0.057657 -2.150929 -0.070034 -0.172434 3.258701 -1.934184 -0.477831 0.606976 0.575039 2.315879 -1.255485 0.476426 -2.258388 -0.000608 -0.245586 3.115934 0.435311 0.498971 -0.562298 0.838009 -0.034154 0.642404 0.479388 -2.040509 -0.692395 -3.212299 -1.771708 -1.486388 0.344472 0.758697 -2.583659 -0.090377 0.235582 1.440483 -3.453937 -0.004077 0.688152 1.024889 2.404226 0.490277 -1.148162 0.042991 0.236515 0.617651 1.001698 -1.138582 0.717358 -0.983637 0.321846 0.428802 0.733584 0.312258 -2.737432 -0.640322 0.340066 -0.325917 0.290898 1.021037 1.268048 -1.073649 1.224716 -1.524529 1.825854 -2.884016 -0.692942 -0.964597 -2.266910 -1.059620 2.598493 1.394007 1.947040 -0.236526 -1.275524 -0.309470 -2.931857 -3.661021 0.049925 0.227326 0.247521 0.903664 -0.530901 0.643557 -1.725918 0.588370 1.281324 -1.139381 -1.028299 -0.026383 1.557578 0.111863 -0.838154 -1.099548 -0.066471 0.278080 0.398468 2.343773 -0.578255 -3.080941 -3.314809 -1.239320 2.027111 -1.082837 0.212088 -0.895294 -0.751709 -2.124925 0.172127 -1.661728 0.329555 0.005004 -1.331180 -2.773652 0.978491 -0.458363 -0.518571 0.815476 -2.068380 0.469693 1.083692 0.547321 0.341998 0.325625 0.127624 -2.135135 -1.784047 0.421739 -1.158711 2.301898 1.219893 -0.028692 -0.841813 -1.073665 -1.882031 1.362146 -1.593916 1.143612 0.192418 -0.779138 1.109235 -1.920428 -0.107086 -1.740342 0.854234 0.436177 -2.750725 2.995483 1.865512 -1.563798 -0.288372 -0.615028 1.103445 0.264372 1.736499 -1.605583 -1.272454 0.689002 0.004729 -0.067905 -0.590623 0.703345 -0.613004 -0.238896 -2.094940 -0.856611 1.675371 1.294461 -0.380993 0.224199 1.144544 -0.682288 0.244023 2.208919 1.246744 0.131399 -1.586725 -4.337556 0.937275 -0.591614 -0.482409 0.166915 -1.388411 -0.602395 0.890500 -0.563213 2.007306 0.541093 -0.584690 2.133077 -2.634912 -2.217338 -1.411333 -0.598815 0.556288 -0.520144 0.446638 -1.168888 0.463953 -0.213369 0.569966 -0.618083 -1.366514 0.081360 0.863941 2.157834 -0.051482 -0.180640 2.432151 0.550663 -0.557942 -0.436631 0.005672 -0.670025 0.653459 -2.102494 -0.466341 0.278501 1.090213 -1.592674 0.846923 -0.460971 0.281433 0.650985 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 4.583028 -1.322013 -5.347718 9.408879 -0.690653 0.993560 0.713591 -0.794063 0.112599 -11.942920 -4.928724 6.074218 2.959339 1.616779 -0.177180 5.527418 1.663962 1.995009 -9.705177 -0.054144 2.674823 -0.918469 -1.761434 0.072892 -0.437076 -4.025415 5.382396 0.931455 0.699082 7.597816 -2.043970 6.704598 6.934958 -1.554410 2.113195 4.523030 -2.290199 0.161432 -4.149532 -1.599888 8.779622 2.428447 0.355937 2.124661 -2.724561 8.023762 1.790796 8.416488 0.123337 -3.603442 4.421374 3.058251 -2.931420 -0.279384 -7.231938 1.312864 3.812637 2.437543 -2.257365 2.724120 -2.812635 2.488431 3.465683 2.415864 9.785706 3.387966 7.877730 7.690771 6.600096 -5.520470 2.969600 0.667986 -0.581491 -1.239721 8.154928 -4.961967 -5.659555 1.626330 -0.700567 -7.130169 0.215778 0.107890 11.748637 -6.540768 -2.918151 -0.659417 3.620220 9.262400 -4.328056 2.665254 -7.074504 -0.207815 -2.151328 10.472065 1.674306 2.404696 -3.235398 2.855308 -1.175434 0.511081 1.415984 -7.202629 0.185463 -8.627114 -5.829138 -5.377290 1.854420 4.083197 -9.671071 0.706990 -2.200791 5.519885 -12.370796 0.451228 1.432740 3.144147 11.228761 2.484133 -3.826421 0.333137 0.955018 2.964617 3.169320 -2.968489 3.233414 -3.151016 1.177022 1.511170 2.486274 1.902112 -10.946885 -1.884316 1.325145 -2.086640 1.860308 5.532458 6.347555 -2.933727 4.026200 -4.740908 5.663815 -10.125289 -3.147180 -3.523162 -8.432923 -3.946544 6.303669 6.156832 6.610266 -2.238351 -3.561255 -0.511406 -11.728910 -11.536214 -1.191149 0.537693 -1.077971 3.884718 -1.674831 2.846684 -6.524228 3.870166 6.051676 -3.839946 -4.199397 -0.248909 6.120866 1.466100 -2.958198 -2.342541 -2.051568 -2.167434 1.985762 9.905951 -0.598200 -12.001901 -13.627628 -3.273683 6.872168 -4.009734 0.869436 -4.535978 -2.818286 -6.828452 -0.636058 -5.773383 0.450085 0.831342 -2.953156 -9.144474 3.020792 -0.680659 -2.676243 1.719163 -7.106328 1.621296 5.846303 0.780358 1.339756 1.051526 -0.184363 -5.877887 -4.645268 3.543672 -5.292515 7.184645 4.791948 -1.000782 -3.240713 -3.694395 -6.942117 3.637537 -4.455172 4.699538 0.693905 -1.793301 2.603032 -7.593173 0.395500 -4.763060 2.094927 -0.141842 -10.943197 9.695921 5.943919 -4.732346 0.750293 -0.996799 5.061639 -0.360966 3.773540 -5.201595 -4.251048 1.001959 0.399709 -0.024053 -0.841420 1.919811 -3.401681 -2.611415 -6.056667 -1.800785 6.556880 3.251165 -1.307847 -0.440271 3.167994 -4.721200 2.086242 5.846159 5.120497 0.318967 -5.441939 -15.151976 2.019706 -5.228544 -2.727574 -0.366803 -3.332581 -1.355328 3.084395 -3.781629 6.623411 -0.923729 -3.429783 6.655604 -10.043742 -7.359691 -6.136906 -2.102801 1.018602 -0.242713 0.592066 -3.632095 1.474204 -0.167170 2.330271 -3.263235 -5.819263 2.969093 3.921899 8.194012 -0.952891 -0.314590 7.721699 2.907205 -0.522602 -2.502382 0.394497 -4.027697 1.537983 -8.995254 -1.547358 2.274411 3.760282 -5.855599 1.614205 -1.823173 1.368670 1.478680 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 6.607469 -1.128309 -0.471360 6.820108 2.193647 -1.683819 0.054682 4.161465 0.831623 -7.562505 -4.699748 5.170173 -0.368352 0.677273 3.018682 1.011090 2.739739 2.456607 -10.644246 1.818699 -1.741450 0.301418 -2.986206 -4.407182 1.099895 2.038587 2.618131 2.920928 1.378348 3.988597 -4.876023 2.102277 2.931244 1.364608 4.039621 -0.052031 1.273342 -2.223993 -4.224018 -6.180429 10.132424 2.311251 1.394931 7.265159 1.148609 4.796476 0.639552 7.275660 3.714459 -1.100980 3.302814 -5.120641 -3.011149 0.829300 -8.547591 4.184252 4.239745 0.980656 -3.563167 3.705118 1.381199 3.098681 3.230621 -4.198217 8.399356 2.569316 5.279282 5.008267 6.761053 -4.486064 1.593046 0.316907 6.934581 2.091109 1.142254 -7.089458 0.274043 -8.182286 1.366617 -8.475844 3.414047 -3.820928 8.296051 -4.732045 2.535463 2.882300 -0.671756 5.337870 -5.917165 1.997159 -5.551176 0.264599 -0.974491 6.778956 -1.000630 0.528762 1.434843 1.560678 -0.545797 3.404558 0.574157 -2.508327 0.734790 -11.438160 -4.770879 2.398703 -1.039752 -2.128743 -3.920182 1.741054 0.672175 3.696995 -6.716285 -5.415603 0.402507 -0.113147 -1.107309 0.999394 -1.201405 -2.782515 -1.566850 5.225100 1.247342 -5.291798 3.610829 -3.211856 -3.102199 2.870427 6.669702 2.887742 -3.499138 -2.977994 0.483964 1.573692 -1.789158 -0.007696 0.895522 -2.428047 3.746095 -2.822737 4.147427 -6.254894 -3.400464 -3.900615 -2.144405 -0.883166 9.822798 0.425453 5.453772 5.666959 -1.061944 -1.001181 -5.752725 -8.948028 3.932665 2.488025 0.785341 1.867760 0.185764 0.903796 -3.188822 -4.296452 4.362413 -5.993216 -6.754352 -4.130206 2.042956 -0.847018 -2.344386 -5.643933 5.710515 6.153060 -2.009601 2.989166 -1.472247 -7.515311 -4.741548 -2.778087 4.764619 -1.614681 0.740559 1.191803 0.767257 -3.796241 0.746754 -6.469344 2.374748 0.076338 -6.087997 -6.608882 0.952816 -0.921557 1.511125 1.332986 -5.090872 4.294683 1.415918 7.379672 -3.288458 3.994329 3.616226 -8.158252 -8.946698 -3.190367 0.721233 6.306784 1.767904 1.460229 -3.961667 -2.706808 -2.049177 5.317585 -8.131589 2.773093 -0.513479 -1.778834 1.936720 -5.419936 -1.792711 -5.148174 2.508657 1.996662 -9.826351 7.003690 3.947240 -6.733763 -2.634716 -8.857396 4.975416 0.441412 10.961755 -4.474142 -1.422172 2.294787 2.919498 -1.767834 -6.328764 3.252446 2.013113 -2.628126 -6.452345 -5.142559 3.441188 2.782788 0.712748 1.318192 4.168471 2.244121 -1.276662 9.883737 1.635218 0.320449 -5.241611 -12.701138 1.197240 9.528349 1.106658 2.468994 -6.931891 -4.006089 -0.413163 -0.465189 4.685775 4.023853 3.875487 4.851743 -5.639667 -4.586960 -2.423433 1.813309 0.518453 -2.932576 1.913135 -4.511279 -0.764911 -1.449247 2.085538 -2.863250 -0.352860 -6.457764 -0.915397 3.925637 0.442850 -0.388507 6.804016 3.861277 -3.447664 0.976176 -1.726126 -1.547355 1.399260 -4.721697 -1.814125 -0.639998 0.238583 -5.085164 3.294618 1.642704 1.765628 -0.389340 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.762469 -2.484395 -3.605004 10.185956 0.583784 1.339552 1.237191 0.282576 0.714029 -14.694140 -5.549659 8.758912 1.470984 2.070144 -0.179323 3.736627 2.417907 2.668673 -13.438467 -0.427131 1.732284 0.137176 -0.046048 -1.227680 0.229321 -2.426514 5.009164 1.582581 1.341144 6.819943 -2.390036 6.905944 6.853949 0.313592 1.902755 3.520854 -1.813283 -0.855038 -4.344782 -4.733336 10.147138 2.368458 2.017481 4.766404 -2.899191 7.641340 1.415535 10.412620 5.203599 -3.149574 4.477006 -0.706935 -3.761683 -0.293258 -8.486619 2.246746 2.728878 2.060341 -1.885821 2.986287 -1.633300 2.254387 2.914173 -1.570548 10.105739 3.452697 7.748076 8.717145 6.333370 -5.784482 1.795198 0.779223 0.647922 1.161899 7.735574 -7.418957 -4.549958 -1.860630 -1.127169 -9.315279 0.116750 -1.973135 14.094108 -5.982518 -2.011485 -0.097312 2.592783 9.095051 -3.495882 3.024830 -8.458685 0.302098 -0.593779 9.501027 1.476660 1.361243 -2.579162 1.052601 -0.897850 1.559087 2.290918 -5.417608 0.276056 -11.399905 -4.599674 -3.812673 2.504217 3.223041 -9.503160 1.594701 -2.991911 6.924702 -13.595023 -2.574991 1.735862 2.708958 9.203063 3.599519 -3.079644 -1.048839 1.168437 3.346807 3.113188 -4.885581 2.856499 -3.026067 -1.385676 0.761271 3.567963 1.918419 -11.004428 -3.823867 0.402673 -0.099061 1.743402 3.970216 6.511537 -1.242794 3.935762 -4.224505 5.240731 -9.541908 -3.302484 -2.967975 -6.618931 -3.881026 12.771910 5.721591 8.181445 -0.269199 -2.982169 -1.421183 -10.488689 -12.475251 0.707291 0.635174 0.894883 4.910719 -1.126806 2.612129 -6.041117 3.000612 5.419854 -3.777577 -4.989288 -0.379626 2.010769 0.334201 -2.398444 -4.284962 0.531383 0.102816 -0.773536 9.440163 -0.997457 -14.452930 -12.544992 -3.749105 6.372998 -3.683109 0.783561 -3.251340 -1.714819 -4.368137 -1.214721 -6.995898 0.884174 1.410762 -6.069852 -9.393899 2.991216 -1.265645 -1.907581 2.990153 -6.464435 2.129006 5.811624 5.257896 0.316379 2.070727 0.378729 -7.340560 -5.714435 0.475150 -5.066729 6.578511 4.793676 -0.267287 -5.316908 -3.906300 -6.427313 4.225910 -6.180996 4.292917 -0.513793 -2.666363 2.185622 -7.372078 2.085101 -5.278074 2.163701 1.153916 -17.621568 8.982138 5.174252 -4.998858 -0.790965 -3.864498 3.811965 -0.096047 5.929223 -5.386295 -3.958870 1.389422 0.430040 -0.322782 -2.978156 2.070405 -1.867217 -3.039546 -7.687890 -3.632192 5.905382 2.793843 -1.020776 0.006814 5.040874 -1.619606 2.265462 7.802402 4.878808 -0.126790 -6.231651 -19.563376 2.399607 3.438933 -1.787881 1.608766 -6.223223 -2.294083 3.742107 -4.826534 6.052632 -1.267471 -1.205462 6.362975 -9.579484 -5.984342 -4.638418 -1.631785 1.407746 -0.412415 0.847508 -3.387614 0.811136 -0.484532 1.142625 -2.715862 -4.974333 -0.048683 3.414556 8.436082 0.513779 1.027849 7.454907 2.975877 -1.723594 -0.979071 -0.468994 -3.397754 1.026887 -11.267529 -0.698720 1.998761 2.235723 -5.236622 1.600376 -0.918158 0.705212 0.414976 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 1.132373 -1.933157 -0.371978 3.242250 0.534625 0.986733 0.337032 -0.416472 0.566977 -4.326374 -1.942554 2.405556 0.165337 0.629002 0.035591 0.596368 1.381942 0.394122 -4.440645 -0.424459 0.509251 -0.368989 0.317919 0.024815 0.098001 -1.354661 3.379886 1.335201 0.419699 2.211457 -0.669549 1.796404 2.141402 0.361051 1.009303 1.540595 -0.998157 -0.304622 -1.974726 -1.374434 3.500536 0.446955 0.464714 1.622497 -0.319424 2.667091 1.592284 2.494760 4.112119 -0.878894 1.759186 0.437042 -0.979144 -0.807061 -3.288327 0.105362 0.713138 0.260970 -0.872239 0.725246 -0.307106 0.675906 0.688847 -0.075618 3.272767 0.236239 2.983721 2.120088 1.712642 -2.204759 0.242947 0.611532 0.791404 1.144428 1.900071 -2.596543 -1.995883 -0.830149 -0.703914 -2.455498 -0.028153 -0.729366 2.651976 -1.299886 -1.260911 -0.704717 -0.403751 2.519736 -0.594467 0.473528 -2.942004 0.118522 0.608048 2.147463 0.653283 0.242554 0.099178 0.250605 -0.484746 0.908052 1.255802 -2.463488 0.807525 -4.338974 -1.217471 -1.891547 1.341083 0.613678 -2.252740 0.988468 -1.686400 1.029068 -3.213453 -0.977467 0.486863 0.774386 2.026803 -1.173605 -0.103588 -0.792718 0.963718 1.624857 1.475504 -1.652690 0.878205 -1.020099 0.398603 0.236212 1.164301 0.542233 -1.298010 -1.638459 0.348881 1.185587 0.519857 0.904092 1.482804 0.066877 1.181545 -1.100931 2.190657 -2.529139 -0.744791 -1.338855 -0.596176 -1.547425 4.039314 1.381001 2.778838 -0.050223 -0.794032 0.202861 -2.759200 -4.019548 0.141248 0.185874 -0.220649 1.392655 -0.485773 1.487555 -2.080756 0.540692 1.239229 -0.918115 -1.446229 -0.057427 -1.978472 0.413936 -0.682266 -0.841587 0.244406 -0.101468 0.026398 2.940026 -0.464331 -5.476992 -3.283191 -1.379898 2.067870 -1.702311 -0.145857 -0.826776 -0.908365 -1.373155 -0.121210 -2.003936 -0.300079 0.133873 -2.387548 -2.989092 0.893412 -0.743611 0.885403 1.409628 -2.380020 0.498850 1.117387 2.123524 0.550456 0.910166 -0.278979 -2.302869 -1.516402 0.187622 -1.509308 2.563416 0.399780 -0.484039 -1.909656 -1.451596 -1.573328 1.093111 -1.513010 1.546922 0.178932 -1.529298 0.395765 -1.682150 1.237622 -1.053680 0.641364 0.793920 -5.347819 2.706049 2.116337 -1.742022 -0.473022 -0.643974 0.950651 -0.315102 1.430986 -1.890259 -1.408936 0.315492 0.383157 0.136752 -0.810372 0.565693 0.090237 -1.315720 -2.903022 -1.819342 2.013696 0.771281 -0.226379 -0.297927 1.765130 -0.207459 0.472446 2.823226 1.203769 0.821120 -1.851125 -6.525252 0.796050 2.516601 -0.268674 1.174063 -2.156514 -0.925269 0.825271 -1.328966 2.039314 0.166774 -0.671228 2.310024 -1.961002 -1.827189 -2.198828 -1.535416 0.553734 -0.009973 0.712343 -1.261043 0.111833 -0.850660 0.194798 -1.286236 -0.713845 1.091284 1.460826 2.201255 0.419248 0.861520 2.202881 0.885582 -1.001667 -0.641108 0.078416 -1.816061 1.154714 -3.288038 -0.431591 0.708096 0.914427 -1.442721 -0.222052 -0.389379 1.036869 -0.409766 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 1.153603 -0.469404 -0.618172 2.091513 0.016793 0.025161 0.500660 0.520748 0.096717 -3.194558 -1.619250 1.305779 0.370438 0.108771 0.297088 0.674827 0.609168 0.874081 -3.361545 0.031078 0.822167 0.144266 -0.162326 -0.412705 0.006919 -0.779328 0.494798 0.749396 0.278988 2.046387 -0.689643 1.131654 1.686600 -0.005169 0.447042 1.433074 -0.277963 -0.131291 -0.522493 -0.611398 2.561218 0.638548 -0.022613 0.975337 -0.179388 2.139336 0.235305 1.988156 0.612376 -0.930384 1.125222 -0.368953 -1.014449 -0.232972 -1.881066 0.427803 1.496007 1.193490 -0.725794 1.121669 -0.680483 0.543782 0.809305 -0.321876 2.303135 1.080499 1.492320 1.723775 1.983639 -1.596998 0.466847 0.196673 0.333463 -0.091793 1.252586 -1.494065 -0.879197 -1.814725 -0.155107 -2.842325 -0.091368 -0.178571 3.334454 -1.671914 -0.176676 0.560805 0.586279 2.102838 -1.040424 0.368337 -1.888984 0.025762 -0.162366 2.597094 0.331981 0.313842 -0.428754 0.669217 -0.017709 0.589533 0.286638 -1.546529 -0.780866 -3.447360 -1.325666 -1.105601 0.293417 0.540671 -2.293306 0.072672 0.518753 1.277833 -3.230478 -0.371325 0.674878 0.914377 0.962956 0.384931 -1.246940 -0.156981 0.023960 0.814152 0.953820 -1.265061 0.585944 -0.941268 -0.128964 0.370608 0.759258 0.318200 -2.250705 -0.881402 0.307210 -0.161361 0.256730 0.887811 1.122892 -0.423359 1.024523 -1.549431 1.681664 -2.563203 -0.414006 -0.829807 -1.627249 -0.946935 2.482733 1.525894 1.382958 -0.039333 -0.884552 -0.217546 -2.413227 -3.044884 0.314557 0.154046 0.547472 0.616649 -0.393033 0.467880 -1.399430 0.391883 0.925686 -0.994339 -0.865462 -0.179283 1.410456 0.158709 -0.734497 -1.219662 0.140786 0.492373 -0.100875 1.708510 -0.559568 -2.338107 -2.864941 -1.148793 1.856222 -0.895922 0.069415 -0.821650 -0.458567 -1.400072 0.204983 -1.444917 0.127188 0.153323 -1.436570 -2.477833 0.732932 -0.348640 -0.524060 0.735898 -1.727832 0.362548 1.235378 0.973173 0.179449 0.398880 0.201030 -1.903100 -1.640224 0.031090 -1.020840 1.715068 1.370299 0.026001 -1.312024 -0.821935 -1.496412 1.443334 -1.340412 1.064306 -0.159341 -0.770277 1.094366 -1.672775 0.071578 -1.523205 0.673516 0.410467 -3.512640 2.599558 1.523326 -1.395240 -0.264557 -1.003844 0.900278 0.297093 1.599043 -1.425344 -1.063513 0.548933 -0.157044 -0.048448 -0.797296 0.647769 -0.465369 -0.290602 -1.798105 -0.752374 1.598139 1.047594 -0.248458 0.450379 1.145884 -0.275269 0.395078 2.018531 1.025070 -0.197914 -1.376995 -4.173336 0.918177 0.680932 -0.167332 0.260967 -1.410953 -0.745055 0.680461 -0.441144 1.664426 0.843990 -0.451063 1.803058 -2.064674 -1.847746 -1.288714 -0.213902 0.572279 -0.513551 0.391607 -0.903078 0.344902 -0.018081 0.521762 -0.264437 -1.302606 -0.558871 0.708738 2.069816 0.206183 -0.171822 2.172416 0.459638 -0.717331 -0.311183 -0.224559 -0.612210 0.410150 -1.700930 -0.321269 0.282071 0.909025 -1.477745 0.856580 -0.226175 0.258274 0.502816 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.575488 -2.089368 -4.361390 8.659590 -0.325536 1.399174 0.790281 -0.340203 0.523141 -10.762302 -4.616808 8.233830 1.919975 1.719868 -0.251913 3.322111 1.993176 1.970976 -10.152127 -0.624559 1.724147 -0.822986 -1.182250 -0.739226 -0.241054 -2.714338 6.862754 2.011543 1.091913 6.428277 -1.658397 5.627659 5.489746 -0.413008 1.753364 3.721898 -2.552463 -0.425725 -5.057791 -3.710240 7.744091 1.727619 0.830062 3.504511 -2.353336 6.883737 2.757337 6.416553 4.649325 -2.830898 3.012194 4.015018 -3.034400 -1.458003 -6.787675 0.631830 2.059280 1.786062 -1.574357 2.354293 -1.621072 1.850357 2.739951 0.953601 8.529530 1.783813 7.127997 6.756558 5.099694 -5.640026 2.123815 0.724577 0.322184 0.410238 7.398843 -5.166656 -5.288290 0.134634 -1.139094 -7.826803 -0.201660 -0.419912 11.346466 -4.988561 -2.897447 -1.491708 2.837683 7.992554 -3.217329 2.480542 -6.317651 -0.348986 -0.813028 8.472266 2.019422 1.522620 -2.059852 1.869643 -1.283191 1.220796 1.788761 -6.128120 2.060556 -9.461874 -3.770210 -4.686693 1.992656 2.952682 -7.295608 1.467257 -2.502090 5.425902 -10.659582 -1.600747 1.414052 2.306985 7.519215 0.552490 -2.403164 -0.244159 1.419736 3.135041 3.489834 -3.571607 2.807097 -0.775094 0.100166 0.812212 2.692439 2.480965 -8.786350 -3.289171 1.536642 0.315741 1.944989 3.927048 5.518409 -0.837894 3.205934 -4.125979 5.377808 -8.115320 -2.393344 -2.619318 -5.122511 -4.015030 6.608053 5.468762 6.663360 -1.676532 -1.892038 0.027606 -9.013741 -10.685280 0.331146 1.078685 -1.327937 3.629058 -1.264521 3.105237 -5.930795 2.889086 5.711472 -3.057462 -4.087263 0.123042 2.469723 1.604036 -2.170000 -2.463255 -0.503873 -2.280108 1.483360 8.423420 -0.642222 -12.878815 -11.395443 -2.826329 6.129387 -3.684061 -0.230544 -3.119060 -3.355293 -3.249371 -1.014963 -5.082840 0.193415 1.037447 -4.162071 -8.129190 2.666466 -0.724450 -2.008556 2.629300 -6.389251 1.456166 4.981208 2.076640 0.451317 1.624529 0.094737 -5.314435 -3.723567 2.353076 -4.811280 5.648535 4.405153 -0.800675 -4.707986 -3.306123 -5.175120 3.196440 -4.959120 4.818293 0.155908 -2.167579 1.804569 -6.764159 1.610447 -3.313552 1.916956 0.945001 -13.339443 8.383348 5.528431 -4.088802 0.343466 -0.861540 3.427114 -0.563034 3.442834 -5.724687 -4.313291 0.966177 0.576756 0.194875 -1.094548 1.238814 -1.546530 -3.551113 -5.705115 -2.348285 5.629014 2.151437 -0.588786 -0.475230 3.817522 -3.813668 1.646263 6.269920 4.437951 0.762139 -5.056069 -15.308738 2.570259 -0.852298 -2.298694 1.013120 -4.321968 -1.711600 2.984956 -4.501962 4.911339 -1.904337 -3.399106 5.857252 -8.153602 -5.749528 -5.815385 -2.620631 1.359006 0.237712 1.672385 -3.072439 0.967049 -1.027152 1.318676 -3.992507 -3.652687 3.162257 3.809066 6.960060 0.204494 0.932575 6.725189 2.468886 -1.473893 -1.948924 -0.419477 -4.602000 1.140520 -9.576514 -0.760462 2.549564 3.395119 -5.077785 0.456852 -0.738103 1.456640 0.302758 -PE-benchmarks/ugly-numbers.cpp__main = 0.361987 -0.506288 0.019956 0.877181 0.087759 0.408895 0.210947 0.139135 0.090100 -1.536023 -0.836475 0.090793 0.060800 0.292304 0.353564 0.212097 0.395775 0.153906 -1.560922 -0.209256 0.417436 -0.145748 0.309590 0.192540 0.013866 -0.585012 0.105677 0.470001 0.130970 0.906883 -0.289748 0.613273 0.835314 0.126762 0.122208 0.579198 -0.113241 -0.186802 -0.313183 -0.194704 1.159692 0.082735 -0.174487 0.233997 -0.229396 0.995111 -0.007325 1.027155 0.693991 -0.435842 0.824810 -0.908085 -0.375761 0.013698 -0.915860 0.112256 0.567043 0.507945 -0.271029 0.384913 -0.559302 0.301426 0.215692 -0.383515 1.037282 0.395225 0.883243 0.688788 0.599802 -0.880744 0.099191 0.212267 -0.059900 0.156446 0.042190 -0.564686 -0.010346 -1.490072 0.056436 -0.944472 -0.274474 -0.248347 0.994217 -0.581428 -0.313451 0.351581 -0.161736 0.936232 -0.392451 0.449768 -1.052739 0.037422 0.476135 0.587072 0.214103 -0.139029 -0.021210 0.149978 -0.048542 0.335168 0.297247 -0.604947 -0.816095 -1.460809 -0.697996 -0.449574 0.434116 0.281587 -1.035519 0.282532 0.562675 0.245878 -1.141637 -0.149888 0.263117 0.627280 0.289897 0.396683 -0.525714 -0.347503 0.299173 0.524626 0.655904 -0.573858 0.489753 -0.865854 0.199950 0.170430 0.386014 0.009954 -0.505317 -0.512339 0.258121 0.032334 0.152475 0.328336 0.542403 0.099938 0.523813 -0.455037 0.802083 -1.023229 -0.052448 -0.436654 -0.346184 -0.436641 1.850601 0.963909 0.576304 0.383257 -0.650119 0.029419 -0.877027 -1.253729 -0.189037 0.195017 0.418481 0.318634 -0.256064 0.520442 -0.493224 0.345585 -0.061073 -0.412203 -0.426046 0.048258 -0.318691 0.114276 -0.305381 -0.604001 0.209257 0.346530 -0.563498 0.860433 -0.140750 -0.850520 -1.032997 -0.654931 0.785159 -0.514355 0.092606 -0.327980 -0.045814 -0.807441 0.166970 -0.560080 -0.186055 0.208809 -1.037743 -1.131400 0.433745 -0.226893 -0.145553 0.594245 -0.795983 0.116787 0.305676 0.653790 0.346774 0.230262 -0.116310 -0.768987 -0.795966 -0.284955 -0.629274 0.923589 0.365280 -0.222665 -0.516282 -0.565080 -0.526838 0.815495 -0.534910 0.454511 -0.183170 -0.540225 0.206967 -0.607802 -0.049376 -0.607716 0.326454 0.349622 -1.548097 0.953450 0.710798 -0.581752 -0.255314 -0.683878 0.376589 0.120011 0.749128 -0.457648 -0.226205 0.092544 0.224976 0.020509 -0.274881 0.340632 -0.104472 -0.425940 -0.877022 -0.534626 0.671895 0.479077 -0.060493 0.250019 0.818155 0.468907 0.288533 0.830947 0.305808 -0.283480 -0.349176 -1.940776 0.429572 1.231867 -0.131957 0.401938 -1.005010 -0.275658 0.173824 -0.210609 0.749932 0.596147 0.108881 0.877008 -0.467130 -0.660068 -0.656254 -0.222620 0.059935 -0.209422 0.281709 -0.307559 0.123142 0.011492 0.017420 -0.060726 -0.500220 -0.514340 0.271493 0.823587 0.142903 0.194987 0.850248 0.312939 -0.456649 -0.255804 -0.011262 -0.433843 0.402677 -0.542338 -0.132270 0.263174 0.257434 -0.552690 -0.016960 -0.051897 -0.050026 0.035713 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.563527 -0.400129 -0.766292 2.122883 -0.271520 0.849019 0.290977 -0.092646 0.041522 -2.830134 -1.291700 1.489584 0.517393 0.654800 0.426322 0.746729 0.337024 0.143333 -2.334799 -0.462464 0.807155 -0.300390 0.262028 0.385326 -0.195455 -1.077224 0.973790 0.785374 0.271980 1.845393 -0.180874 1.599499 1.596336 -0.022465 -0.120102 1.056983 -0.378535 -0.088240 -1.270350 -0.596219 1.888723 0.031896 -0.181969 0.406975 -0.886285 1.953763 -0.010683 1.831515 1.014016 -0.975260 1.259901 0.413033 -0.760848 -0.296171 -1.440471 0.113143 0.430364 0.581283 -0.367025 0.542899 -1.008337 0.366200 0.559913 0.275502 2.006405 0.899460 1.914304 1.828133 0.996787 -1.809102 0.356434 0.356853 -0.729642 -0.030517 0.984819 -0.653078 -0.551383 -1.087028 0.064046 -1.344447 -1.025888 -0.116312 2.376446 -1.269219 -0.986975 0.062771 0.353546 2.179706 -0.860035 1.321613 -1.910718 -0.202066 0.630215 1.302593 0.558584 -0.150674 -0.480864 0.240239 -0.328572 0.401187 0.653487 -1.391392 -0.849644 -1.790003 -1.397243 -1.152885 0.889619 1.107605 -2.230313 0.417256 0.574696 0.792541 -2.549493 -0.276538 0.601223 1.146983 1.697891 1.422866 -0.942762 -0.142251 0.901597 0.741238 1.350316 -0.456089 1.107945 -0.816824 0.287902 0.290558 0.418872 0.529640 -1.951559 -1.016752 0.747565 -0.355130 0.630658 1.025271 1.539380 0.148950 0.931166 -0.828288 1.586009 -1.991585 -0.361898 -0.575918 -0.893531 -1.010521 1.868171 2.122729 1.351750 -0.021970 -1.249270 0.073621 -2.009107 -2.265465 -0.692696 0.460992 0.076223 0.902552 -0.516060 1.240708 -1.286807 1.453131 0.738701 -0.710965 -0.978670 0.396553 -0.356855 0.369265 -0.586154 -0.754453 -0.084424 -0.799354 -0.411887 2.502602 0.113310 -2.357988 -2.939445 -0.836919 1.631921 -1.044503 0.115127 -0.997044 -0.720040 -1.325120 -0.224762 -1.086716 -0.264507 0.577532 -1.576844 -2.243484 1.064674 -0.202566 -1.040132 1.006379 -1.657894 0.110910 1.005290 0.029877 0.686086 0.359882 -0.334560 -1.031755 -1.033230 0.223066 -1.608871 1.581011 1.220918 -0.387996 -1.190648 -1.138166 -1.266581 1.320141 -1.463598 1.183586 -0.123488 -0.766672 0.328011 -1.631660 -0.318546 -0.873112 0.559892 0.574218 -3.026863 1.837758 1.410358 -0.834673 -0.055244 -0.314551 0.733025 0.198126 0.902192 -1.413569 -0.833801 -0.046121 0.541774 0.113759 0.108201 0.335830 -0.651619 -1.087510 -1.383722 -0.677641 1.452065 0.749186 -0.150259 0.153752 1.442142 -0.291532 0.904778 1.193544 1.032218 -0.457098 -0.658538 -3.100519 0.924588 0.512532 -0.840191 0.554366 -1.521012 -0.261008 0.558011 -1.043238 1.361677 -0.591280 -0.494730 1.636629 -1.603010 -1.432595 -1.594323 -0.618686 -0.038554 0.172774 0.665295 -0.316932 0.484526 0.251030 -0.116628 -0.761643 -1.194539 0.242382 0.801200 2.001678 -0.093529 0.431888 1.695845 0.701132 -0.514054 -0.611491 -0.053091 -1.204584 0.334852 -2.162770 -0.074358 0.912474 0.834713 -1.258254 -0.341259 -0.139067 -0.345927 -0.050308 -PE-benchmarks/min-cost-path.cpp__main = 1.190827 -0.017016 -0.789073 2.267805 -0.109805 0.265858 0.566584 0.273540 -0.121079 -3.422256 -1.673385 1.369788 0.574225 0.506428 0.018006 0.955995 0.492933 0.911646 -3.340269 -0.201004 1.012769 0.033272 0.047276 -0.171936 -0.095173 -1.028605 0.560257 0.800275 0.365847 2.431963 -0.677963 1.349764 2.050777 -0.124070 0.269820 1.665473 -0.036537 -0.027724 -0.878138 -0.612196 2.520799 0.566094 -0.088291 0.746626 -0.652083 2.509034 0.338078 2.134130 0.302369 -1.207093 1.110513 -0.155263 -1.147494 -0.306900 -1.802618 0.391338 1.383082 1.382679 -0.702063 1.124074 -0.678058 0.571025 0.911838 -0.124293 2.169683 1.235263 1.508680 1.838460 2.067148 -2.007454 0.480748 0.313280 -0.137605 -0.191324 1.288846 -1.391318 -1.058777 -1.206340 -0.017619 -2.924467 -0.513374 -0.010568 3.307959 -1.965821 -0.435444 0.506654 0.581544 2.319003 -1.156759 0.617700 -2.121247 -0.076390 -0.254816 2.810490 0.556580 0.237459 -0.504715 0.651074 0.088074 0.597899 0.186294 -1.829125 -0.971448 -2.973232 -1.484537 -1.425690 0.411584 1.066579 -2.526926 -0.127130 0.467850 1.703802 -3.530215 -0.183088 0.840593 1.234886 1.408386 0.924951 -1.340580 0.096775 0.213378 0.595807 1.336986 -1.223979 0.771769 -0.626222 -0.078686 0.266175 0.603995 0.391703 -2.795744 -0.976027 0.478530 -0.663748 0.512939 1.076488 1.338355 -0.410327 1.188872 -1.607654 1.795591 -2.725233 -0.460654 -0.622948 -2.009228 -1.178326 1.994811 1.875695 1.375833 -0.297910 -1.025375 -0.233324 -2.643653 -3.133981 0.053856 0.354514 0.492998 0.875085 -0.598254 0.805377 -1.695442 0.724998 0.991195 -0.962047 -1.076522 0.075713 1.882350 0.257093 -0.760981 -1.137769 -0.070277 -0.103515 0.046472 2.258835 -0.590502 -2.468085 -3.253369 -1.320312 2.138524 -1.110420 -0.002429 -1.102817 -0.678310 -1.719369 0.083469 -1.618247 -0.035202 0.320032 -1.339696 -2.784846 1.110101 -0.413987 -1.032656 1.000990 -2.026426 0.274379 1.463032 0.497435 0.449667 0.152021 0.111247 -1.725892 -1.424674 0.310755 -1.385035 1.768666 1.577928 -0.009082 -1.363140 -1.073841 -1.668361 1.505607 -1.202758 1.269153 -0.244218 -0.472218 1.174433 -1.860983 0.128389 -1.425583 0.831520 0.599492 -3.412721 2.771370 1.789462 -1.306255 -0.154308 -0.615811 0.879037 0.440889 1.471609 -1.649490 -1.442281 0.587567 -0.100942 0.000146 -0.494007 0.664704 -0.727968 -0.482426 -1.753728 -0.600949 1.636218 1.181978 -0.295741 0.442186 1.359802 -0.411250 0.728182 1.858134 1.124004 -0.269200 -1.285606 -4.217282 1.132046 -0.161118 -0.379945 0.224037 -1.309131 -0.555658 1.048231 -0.739306 1.940294 0.291297 -0.820476 2.076456 -2.336469 -2.084021 -1.566309 -0.431216 0.593916 -0.322824 0.379968 -0.917185 0.568178 0.089399 0.280855 -0.389180 -1.488716 -0.162444 0.909425 2.347460 0.020262 -0.006180 2.461502 0.426762 -0.607252 -0.465561 -0.152321 -0.683700 0.272986 -1.878217 -0.274343 0.583538 1.125361 -1.583736 0.641479 -0.405328 -0.125023 0.652587 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 1.679274 -0.817042 -1.108201 3.210489 0.348957 1.170187 0.500349 0.047039 0.692669 -4.045407 -2.092308 4.319523 0.265644 0.981750 -0.340422 0.860796 1.338401 0.440211 -3.855760 -0.433259 0.215390 -0.590394 -0.225662 0.147757 0.034198 -1.489822 3.003993 1.450768 0.658156 2.632360 -0.712212 1.669813 2.168461 0.166196 0.968721 1.689869 -0.377652 -0.475883 -2.637533 -2.131799 3.259895 0.972841 -0.053652 2.055495 -0.604542 3.096132 1.112867 2.824701 3.587815 -1.121797 0.824819 1.185601 -1.620008 -0.743286 -2.930659 0.366247 0.103847 -0.265875 -0.997804 0.803814 -0.390290 0.548054 0.756747 -0.092196 2.547411 0.385257 2.555094 2.283551 1.920912 -2.816475 0.139838 1.136663 0.975390 1.652602 2.100293 -1.427564 -2.390983 0.096299 -0.140987 -2.556151 -0.872809 -1.015355 3.553847 -1.995125 -1.330815 -0.481513 -0.074777 2.631385 -1.243922 0.900849 -3.008110 -0.122841 0.439502 2.317469 1.044496 0.300852 -0.307000 0.419866 -0.383597 1.073206 0.791456 -2.716541 0.397002 -3.810455 -1.067154 -2.161699 1.059914 0.974471 -2.176041 0.858247 -0.663090 3.320091 -3.376960 -0.820655 0.843486 0.525007 2.163705 0.684965 -0.211276 -0.168150 1.258039 0.983378 1.893453 -1.512053 0.978138 0.476796 0.291096 0.098686 1.092067 1.097522 -2.583091 -1.745032 1.187738 0.932292 0.646601 0.875757 1.600821 -0.560397 1.542748 -1.054596 2.226189 -2.506340 -0.926943 -0.934751 -0.832728 -1.752056 3.381540 2.528105 3.417000 0.074275 -0.126960 -0.250925 -2.820757 -4.156895 0.391630 0.413407 -0.416908 1.284989 -0.441740 1.809013 -2.417875 0.860401 1.217969 -1.131567 -1.574658 0.429489 -0.262384 0.293024 -0.537987 -1.126315 -0.029505 -0.840809 0.416294 3.012243 -0.591611 -6.135728 -3.255940 -1.448690 2.422837 -1.686181 -0.079423 -0.745822 -1.365271 -0.668464 -0.564730 -2.086177 -0.077227 0.115484 -2.184994 -3.171010 1.298328 -0.637559 -0.571726 1.613465 -2.543528 0.545469 1.426103 1.224488 0.512809 0.854146 -0.175430 -2.102389 -1.091469 0.374445 -2.049530 3.081459 1.546880 -0.712125 -2.134850 -1.647523 -2.095439 1.700430 -2.932393 1.878448 -0.125858 -1.258696 0.723999 -2.133902 0.301171 -1.111379 1.319154 1.093920 -5.165309 2.809447 3.017276 -1.706249 -0.312158 -0.277396 0.748916 0.388877 1.995646 -2.593005 -1.821571 0.382233 0.408004 0.199475 -0.199838 0.917012 -0.095363 -1.347853 -2.503956 -1.299353 2.144580 0.879321 -0.103991 -0.259545 2.004380 -0.247432 1.192921 2.593990 1.475161 0.659266 -2.347523 -6.291512 1.287625 1.232901 -1.002172 1.631835 -2.281447 -0.917797 1.006963 -2.579644 2.240752 -2.021725 -1.060161 2.599243 -2.513160 -2.106916 -2.265165 -1.876180 0.332159 0.186852 2.046982 -1.072971 0.292495 -0.887260 -0.118419 -1.926894 -0.553965 1.332012 1.585323 2.017196 0.812096 1.069137 2.576688 0.838931 -1.277881 -0.665344 -0.197776 -1.954051 0.295560 -4.095009 -0.185939 0.851621 1.106029 -1.737413 -0.329330 0.176299 0.655824 -0.374888 -PE-benchmarks/magic-square.cpp__main = 1.063706 -2.173011 -0.710287 2.862666 0.088831 0.805103 0.377088 0.097276 0.030509 -4.798682 -1.565890 2.055695 0.350683 0.789764 0.091383 0.724188 0.999874 0.490817 -4.719950 -0.435373 0.884666 -0.100486 0.013710 0.360200 -0.011535 -1.159739 2.331277 0.973856 0.390231 2.313670 -0.639805 1.937271 2.278011 -0.121997 0.522333 1.382715 -0.377607 -0.291985 -1.496933 -0.906290 3.807537 0.300864 -0.003836 1.277591 -0.660197 2.629911 0.630899 3.058758 3.149645 -1.165561 1.940042 -0.579815 -0.846846 -0.527668 -3.144444 0.140791 0.757608 1.008417 -0.764335 0.838209 -0.625206 0.481991 0.839181 0.100996 3.363932 0.981515 3.017023 2.383937 1.824571 -1.981041 0.542591 0.304201 -0.191415 0.601164 1.390063 -2.101837 -1.144402 -2.551538 -0.352157 -2.431714 -0.680248 -0.594496 2.233072 -1.594386 -0.841343 -0.325248 0.286681 2.645186 -0.956056 0.992754 -3.430329 -0.267617 1.239690 2.106342 0.441988 0.216982 -0.384244 0.395071 -0.338623 0.563202 1.406077 -2.202242 -0.062008 -3.616542 -1.517822 -1.546018 0.715431 1.130289 -2.674301 0.570976 -0.640825 1.004291 -3.482998 -0.643662 0.223849 1.053599 3.054034 0.921602 -1.129651 -0.547196 0.737805 0.874015 1.299780 -1.256162 1.210749 -1.756624 0.771643 0.320140 0.821464 0.723176 -2.682235 -1.311092 0.678502 0.354634 0.575579 1.306457 1.785627 -0.125264 1.211152 -1.359086 1.951153 -2.585869 -0.959101 -0.783522 -1.504740 -1.398279 4.680694 2.090340 1.928501 -0.001891 -2.112266 0.021104 -2.886709 -4.216028 -0.183502 0.277178 0.008274 1.339881 -0.691458 1.234231 -1.989744 0.852370 1.218242 -0.818181 -1.335350 -0.140476 -1.782403 0.541753 -0.543880 -0.865253 0.068749 0.197547 0.024337 2.978124 -0.425559 -4.451785 -3.680891 -1.156445 2.105853 -1.344067 -0.122548 -1.082858 -0.856696 -2.514048 -0.125384 -1.702098 -0.372876 0.077615 -2.458005 -2.975011 1.328737 -0.533289 0.139326 1.131948 -2.181076 0.407524 0.500959 1.840783 0.605748 0.254831 -0.391983 -2.460641 -2.186246 0.446601 -1.747226 3.075290 0.194438 -0.401516 -1.584863 -1.324577 -1.745695 1.723614 -2.105958 1.597807 0.284181 -1.488169 0.646831 -1.945864 0.218725 -1.299835 0.832988 0.617163 -4.299700 3.417780 1.644872 -1.564739 -0.227615 -0.653386 1.172090 0.092857 1.114716 -1.673845 -1.355206 0.473635 0.643131 0.117529 -0.814109 0.485607 -0.298599 -1.025207 -3.062703 -1.917354 2.117442 0.855063 -0.390137 -0.134497 1.628252 -0.552505 -0.089451 2.962760 1.445488 0.218952 -1.123957 -5.374992 0.902910 2.173338 -0.438185 0.385865 -2.773105 -0.613531 0.967014 -1.476455 1.972767 0.251787 -0.698733 2.172778 -2.435768 -1.949800 -2.018214 -0.960517 0.381216 0.109808 0.726004 -0.881147 0.414621 -0.099448 0.309637 -0.957878 -1.475435 0.491235 1.196664 1.970384 -0.094609 0.425883 2.285711 0.831000 -0.721789 -0.609958 0.136749 -1.395199 1.234463 -2.921461 -0.273407 0.810200 0.991778 -1.672296 0.082404 -0.449374 0.322265 0.070053 -PE-benchmarks/box-stacking.cpp__main = 2.320683 -0.668699 -3.263863 6.818943 -0.631365 0.298628 0.961923 -0.097266 0.122620 -8.794904 -3.520248 3.916607 1.961141 0.605160 -0.058419 2.758165 0.765252 2.380988 -7.546533 -0.254453 2.312093 0.146634 -0.850174 -1.036491 -0.475928 -2.373612 3.344496 1.341583 0.556698 5.671567 -1.150519 3.969668 4.942245 -0.733594 0.993300 3.563132 -1.107048 0.668663 -2.678862 -1.037658 6.410303 2.146334 -0.575369 1.870874 -1.630108 5.795492 1.486306 3.989612 -0.680382 -2.545507 2.183494 3.047778 -1.836265 -1.331935 -4.940786 1.002339 4.063211 2.828207 -1.582227 2.424450 -1.877155 1.269390 2.572755 1.246091 6.560747 2.834308 5.162526 5.717509 5.068869 -4.260507 1.822224 -0.009403 -0.388968 -1.569957 5.441003 -3.011119 -4.518102 -1.052709 -1.092005 -6.613011 -0.267763 0.598542 7.928979 -4.718907 -1.249439 0.126487 2.852882 6.102231 -3.028852 1.040366 -5.087022 -0.462477 -2.013829 8.410957 1.731282 1.380672 -2.016519 2.447552 -0.051450 0.688443 1.220023 -4.880567 0.353416 -7.681430 -3.879476 -3.770326 1.136905 2.763284 -6.180852 -0.265057 -0.076359 3.757990 -9.195388 0.007260 1.475908 2.587008 6.460570 -1.128825 -3.058388 1.328139 0.074610 1.023200 2.472615 -2.764004 1.809492 -1.051117 0.197645 0.759517 1.473529 1.525600 -7.353572 -1.746256 0.495480 -1.271732 1.325816 3.491827 3.817729 -1.909112 2.641618 -4.193522 4.589116 -7.045883 -0.937599 -1.784991 -5.563334 -2.767452 3.245475 3.370528 3.606951 -2.297068 -2.929964 -0.296679 -7.658065 -8.942134 0.484555 1.245079 -0.242028 2.252178 -1.488710 1.627553 -4.762438 2.675451 4.700051 -2.495628 -2.488379 0.467336 5.514829 0.937173 -2.193500 -1.767411 -1.068520 -0.908909 1.916047 6.458694 -0.960143 -6.613491 -9.300008 -2.251081 5.046156 -2.656264 -0.172569 -3.098598 -2.186347 -5.063626 0.224545 -4.170182 1.032427 0.560206 -2.331348 -6.722340 2.079679 -0.582991 -1.824699 1.638106 -5.087224 0.927409 3.575374 0.216691 0.560312 0.362031 0.949798 -4.311084 -3.477117 2.203347 -3.328632 4.614524 3.424460 0.067298 -2.823258 -2.212589 -4.499855 2.724688 -2.136734 3.271703 -0.064033 -1.712641 2.537150 -5.042519 -0.282023 -3.791202 1.361873 0.456896 -6.203928 7.552641 3.896581 -2.914860 0.396189 -0.187376 2.826111 0.016140 2.822938 -4.489149 -3.799149 1.192535 -0.552053 0.017849 -1.032295 1.251659 -2.220187 -1.270411 -4.546340 -1.133667 4.456774 2.437861 -0.877774 0.932014 2.401195 -3.462809 0.586356 4.671998 3.977520 0.215311 -3.888298 -9.143750 2.005693 -4.534447 -1.194279 -0.998803 -2.193812 -1.418587 2.601109 -1.007236 4.535635 0.708548 -3.436321 4.825942 -7.063402 -5.229452 -4.070860 -1.249276 1.582961 -0.829631 0.377383 -2.452986 1.470302 0.141515 1.283488 -1.554565 -4.055033 1.806915 2.512282 5.763675 -0.772196 -0.848411 5.802920 1.536427 -1.264314 -1.323394 -0.266042 -2.881548 0.948506 -5.716097 -0.812290 1.461175 3.097092 -4.047046 1.698983 -1.533997 0.455816 1.632695 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 10.035360 -2.908098 -17.442739 31.885363 -3.721992 1.760432 3.208410 -2.524072 0.413801 -38.856699 -14.637687 20.547109 9.741463 3.220973 -1.495315 13.788905 2.826643 9.713517 -32.463711 -1.213554 9.556272 -0.417068 -5.127653 -4.186204 -2.427975 -10.588010 19.265972 4.961687 2.180482 24.667653 -4.370568 19.587804 21.768927 -4.103274 4.886153 14.686082 -7.370168 3.415138 -14.020897 -5.113118 27.541501 9.698363 -1.843193 7.900595 -8.623728 25.278905 8.035605 16.983774 -2.595154 -10.929549 9.070630 19.966743 -7.419233 -6.278332 -22.174650 3.579621 15.905736 10.270932 -6.245060 9.392288 -8.087628 5.604867 11.731748 8.355630 30.514321 11.289741 25.185858 26.558467 21.292686 -18.181804 9.212251 -0.661019 -2.715009 -7.566427 27.568099 -13.121503 -22.889889 2.330271 -5.673926 -28.013685 -0.601106 3.415119 35.181548 -20.549689 -7.409824 -3.057663 14.458994 28.160415 -13.528761 5.214748 -22.207015 -2.596427 -10.526623 38.030301 8.271654 7.222922 -10.002258 11.028110 -1.386076 1.700904 5.666638 -22.725430 6.374592 -31.884375 -16.950417 -17.624259 5.622362 13.486878 -27.508646 -0.377917 -4.584152 17.474554 -41.032381 0.353217 5.492930 10.415884 33.676718 -6.085950 -12.543927 6.766660 0.791861 4.817801 10.768855 -10.999199 8.622595 -2.930374 1.461169 3.234319 6.408502 8.169638 -34.570389 -7.224588 2.446268 -5.710788 6.737517 17.130094 18.643251 -8.407620 11.370845 -17.929252 20.025221 -31.313958 -5.094446 -8.142402 -25.163968 -12.734100 10.738801 15.294738 17.158186 -12.470758 -12.073824 -0.467068 -35.845715 -40.055882 1.314990 5.616942 -4.358046 10.933576 -6.539518 8.028319 -22.286912 13.707410 24.009358 -10.940262 -11.901196 2.298877 24.512720 5.425908 -9.735096 -5.595018 -6.626818 -8.046053 10.938085 31.304734 -3.014834 -33.267356 -43.671331 -8.521183 22.182483 -12.170240 -1.151189 -14.645927 -11.188245 -22.008056 -0.478022 -18.799295 4.588409 2.606517 -8.401604 -29.386543 8.983012 -1.818442 -8.319846 6.204130 -22.958515 4.290740 17.348310 -0.820941 2.340957 1.627240 3.900493 -17.853638 -13.662850 12.800322 -15.795199 20.293269 15.387595 -0.363220 -12.380230 -9.805369 -20.659725 10.150041 -9.034284 15.550917 0.701026 -7.341592 9.910569 -23.497996 -0.502676 -15.165478 5.328585 0.628808 -27.748063 33.583395 17.291129 -12.362027 3.471241 1.858912 13.464314 -1.580996 10.149066 -20.484428 -17.416399 4.207332 -1.817942 0.345136 -2.854167 4.705699 -10.570967 -7.462385 -19.648988 -4.218266 20.509255 9.479248 -3.808906 2.268457 9.362808 -19.213345 2.879340 19.737246 18.859645 2.319835 -17.739724 -40.828109 7.777023 -25.786480 -6.892695 -5.392668 -8.123176 -5.624513 11.843054 -6.708273 19.718710 -1.248780 -17.807305 20.860161 -33.137185 -23.089480 -19.743238 -6.673939 6.362937 -1.914982 1.307844 -10.868784 6.457805 0.205289 5.993264 -9.300290 -18.164865 12.960740 12.505355 25.643206 -4.386059 -3.468866 25.105952 7.679399 -4.243031 -6.995436 -0.725408 -15.196678 3.979061 -28.767322 -3.605000 7.619316 14.277613 -18.185984 5.861141 -7.094218 3.129899 6.413904 -PE-benchmarks/box-stacking.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/longest-palindrome-substring.cpp__main = 4.793940 -0.705218 -1.702766 6.663673 1.192318 -0.419934 0.200328 2.227222 0.508064 -6.927923 -3.665849 4.704682 0.524712 1.095641 1.958527 1.816719 2.042432 2.000154 -8.512467 0.742518 -0.579942 0.065690 -1.766132 -2.729164 0.596281 0.785677 3.190355 2.271792 1.092997 4.268710 -3.188535 3.084147 3.369954 0.626658 2.686308 0.449292 0.725397 -1.137031 -4.438845 -4.047441 7.941190 1.435053 1.100537 5.220298 -0.316664 5.051176 1.107455 6.330413 3.390615 -1.229002 3.405024 -2.353716 -2.331728 0.063576 -6.741508 2.657566 2.927448 1.044817 -2.329436 2.917758 0.715190 2.346365 2.749623 -2.296498 7.256529 2.586347 5.025825 4.764592 5.569451 -4.038198 1.559178 -0.177201 4.006510 1.087421 2.054343 -6.176000 -1.178317 -5.072882 0.389815 -6.567310 1.908921 -2.701209 6.992430 -4.488851 0.657030 1.296329 0.039402 5.197584 -4.461895 2.041594 -5.058630 -0.297376 -0.488303 5.985165 -0.109479 0.687131 0.201615 1.139960 -0.571821 1.971689 1.079842 -3.205459 0.836314 -8.057543 -4.418561 0.643294 -0.109040 -0.325990 -4.128132 1.330238 -0.982270 2.748089 -6.958407 -3.878742 0.594355 0.768737 1.930253 1.369741 -1.305842 -1.573984 0.067651 4.111678 1.724493 -4.312984 3.146020 -2.657895 -2.271710 1.942740 4.634726 2.223627 -3.897040 -2.613338 0.459462 0.829524 -0.056459 0.852821 1.486028 -1.891234 3.212236 -2.731380 4.032096 -5.776862 -3.639397 -2.710917 -2.718952 -1.722593 7.855534 1.215710 5.266133 3.139107 -1.751746 -0.591162 -5.837697 -7.884806 2.155972 1.649341 -0.042441 2.431773 -0.441824 1.405922 -3.659820 -1.668088 4.385199 -4.347949 -5.580557 -2.450089 1.039753 -0.020947 -2.042668 -4.179552 3.147024 2.959329 -0.362417 4.207964 -0.776637 -7.867168 -5.596207 -2.272865 4.591179 -2.099052 0.639862 -0.454367 -0.188544 -4.076614 -0.161353 -5.547453 1.296520 0.842733 -4.790690 -6.138045 1.951388 -0.803053 0.906988 1.644346 -4.728295 3.027075 1.720569 5.419303 -1.793411 2.726363 1.881485 -6.244990 -6.526314 -1.348874 -1.037307 5.496460 1.140702 1.092487 -3.479708 -2.427474 -2.650159 4.115490 -6.014309 2.875369 -0.088736 -0.992106 1.456588 -5.037900 -0.973773 -4.171953 1.928671 1.288096 -8.536722 5.785803 3.517848 -5.103043 -1.506310 -5.361911 4.142823 0.084523 7.428456 -4.018187 -2.406179 1.601182 2.691269 -1.046681 -4.503414 2.150034 0.605634 -2.836315 -5.335698 -3.470489 3.693025 2.504900 0.015459 0.487271 3.697177 0.218103 -0.803960 7.159056 2.178001 0.335913 -3.674473 -10.813037 0.856186 5.971944 0.140800 1.606711 -5.686107 -2.283293 0.738489 -1.414675 4.372697 2.035763 1.591165 4.588072 -5.315437 -4.354803 -3.162863 0.503120 0.651308 -1.649044 1.288688 -3.433737 -0.055069 -0.550795 1.462036 -2.625738 -1.550338 -2.518747 0.395701 4.238727 -0.594575 0.267709 6.055081 3.087914 -2.129275 0.052820 -1.028630 -2.357460 1.250863 -5.320332 -1.094283 0.520814 0.953461 -4.416842 1.794542 0.232689 0.948598 -0.135422 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.921188 -0.986281 -0.344834 1.822195 0.337524 0.465232 0.135733 -0.021304 0.308904 -2.615922 -1.283808 1.377772 0.095030 0.321960 0.249110 0.555248 0.880641 0.151032 -2.621298 -0.055731 0.324029 -0.314284 -0.055209 0.155772 0.110270 -0.936243 1.422060 0.693921 0.241486 1.373807 -0.615170 1.220034 1.294099 0.116797 0.761038 0.915026 -0.507006 -0.311628 -0.921302 -0.634082 2.220880 0.399045 0.103063 0.881458 -0.006699 1.657815 0.490771 1.840387 1.863545 -0.591811 1.109451 -0.166040 -0.672054 -0.130098 -1.961384 0.238002 0.574691 0.131478 -0.698919 0.493646 -0.449422 0.496411 0.408724 -0.119071 2.064014 0.257895 1.781926 1.258017 1.167691 -1.214417 0.165282 0.449718 0.603366 0.682939 1.001018 -1.191805 -0.903778 -0.813999 -0.185022 -1.401087 -0.013301 -0.547830 1.838970 -0.977445 -0.738485 -0.065300 -0.156988 1.646271 -0.596585 0.460765 -1.764434 0.109736 0.351680 1.365775 0.324385 0.210078 -0.085455 0.292782 -0.279725 0.587765 0.559481 -1.468092 -0.153182 -2.615068 -1.009233 -1.038134 0.677875 0.308615 -1.654773 0.612943 -0.368568 0.962497 -1.942225 -0.357032 0.297831 0.434558 1.261889 -0.016661 -0.404480 -0.528209 0.453863 1.014679 0.794845 -0.859083 0.544923 -0.981412 0.379424 0.242620 0.796052 0.238333 -1.031307 -0.770242 0.378372 0.518379 0.152985 0.580751 1.056170 -0.288917 0.848718 -0.623042 1.264204 -1.704009 -0.510194 -0.975419 -0.588777 -0.803790 2.636032 1.238851 1.682727 0.298012 -0.547582 -0.018134 -1.890014 -2.461221 -0.035983 -0.004656 0.041181 0.685231 -0.252270 0.835090 -1.097960 0.283261 0.570727 -0.789777 -0.829418 -0.209783 -0.632514 0.148784 -0.437581 -0.719819 0.054953 0.240935 -0.207995 1.630169 -0.312463 -2.958423 -1.990663 -0.932060 1.259981 -0.970463 0.176150 -0.468924 -0.354962 -1.049192 0.006617 -1.178581 -0.152684 -0.053366 -1.356757 -1.810314 0.472903 -0.404123 0.223652 0.641285 -1.460484 0.369880 0.702889 1.110451 0.395398 0.543667 -0.223413 -1.481281 -1.155754 0.029534 -1.068257 1.749753 0.495192 -0.422322 -0.984070 -0.870513 -1.200618 0.973506 -1.297750 0.859205 0.123294 -0.983871 0.365494 -1.194176 0.228466 -0.813667 0.540172 0.351120 -2.971038 1.751642 1.392677 -1.228290 -0.305098 -0.740440 0.765021 0.009959 1.186021 -1.018067 -0.569320 0.137419 0.291775 0.031995 -0.427494 0.594183 -0.083958 -0.577185 -1.705189 -1.017784 1.247189 0.661479 -0.105548 -0.075802 0.952992 0.095494 0.433577 1.635573 0.686848 0.291734 -1.130812 -3.830524 0.465696 1.331971 -0.421982 0.745269 -1.355836 -0.605911 0.211404 -0.855816 1.352941 0.071480 -0.096097 1.414560 -1.293114 -1.222705 -1.231122 -0.742857 0.123936 -0.154139 0.660582 -0.747236 0.014795 -0.418580 0.299618 -0.677947 -0.608730 0.134224 0.735282 1.236443 0.368120 0.344961 1.370429 0.610490 -0.667440 -0.411942 0.039703 -0.886595 0.655137 -1.835099 -0.388615 0.236528 0.437594 -0.951774 0.038512 -0.103807 0.638661 -0.162745 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 4.576376 -3.407769 -0.465748 4.194293 1.530633 -0.945484 1.039876 1.955434 0.773056 -6.776881 -3.550067 2.719652 -0.073847 -1.371170 1.296751 1.260250 3.202187 0.090577 -8.876253 1.572255 0.546624 -1.099900 -2.811117 0.030531 0.052914 -3.174201 1.155977 3.647974 -0.173231 4.022795 -2.303647 1.713982 3.390406 0.038328 3.794418 4.215588 -0.573299 -1.253320 0.140344 -0.077530 8.146462 2.271271 -0.511909 2.294616 2.706448 5.526166 -0.342107 7.819847 3.711051 -1.454854 4.925056 -2.115972 -2.550390 0.009413 -6.758399 0.790640 4.216611 0.770945 -4.155968 3.010607 -2.476962 1.432294 1.772568 0.721434 6.989991 1.965345 4.003344 3.085942 5.599043 -3.061492 0.033506 1.988045 3.812079 1.646023 1.215712 -3.731215 -1.770494 -6.593490 1.093746 -4.982395 0.314754 -1.921113 5.617912 -3.271300 -0.333495 2.032421 -0.062155 4.383495 -3.437155 -0.291335 -5.549277 0.335002 0.866184 6.352343 -0.687919 1.473661 0.805811 1.744122 -0.494021 2.943264 0.116462 -5.146782 -3.551302 -10.046789 -4.338569 -2.732993 -0.148872 -1.174254 -5.662546 0.573598 2.203936 1.870858 -5.762842 -0.635960 1.266889 0.400311 2.270560 2.230047 -2.816659 -1.894183 -0.046047 3.242958 2.182948 -1.681850 0.891486 -5.143946 1.970482 1.987721 2.254431 -0.003483 -4.294535 -0.386692 2.134540 0.810350 -1.007870 0.767344 0.816251 -2.743726 2.520695 -3.035006 4.443599 -6.421981 -1.530889 -4.569286 -2.465032 -1.386202 7.801953 4.268850 4.465445 2.490843 -1.888836 0.267145 -6.202604 -8.695081 0.107419 -1.492903 1.404393 -0.438777 -0.633255 0.630844 -2.083880 -0.893689 0.608056 -3.329689 -2.111870 -2.298898 1.242069 0.452079 -1.649633 -2.248625 0.763927 3.538842 -0.436817 3.285529 -2.334801 -8.124428 -5.077058 -3.312996 3.803149 -1.942313 0.494081 -0.479029 -0.731341 -4.661331 1.382760 -3.440895 0.235995 -2.380739 -3.322024 -5.160431 1.360131 -1.539782 1.397503 0.358017 -4.127111 1.367232 1.643372 4.028146 0.841066 1.930674 -0.314385 -5.781315 -5.236928 -0.525755 -0.410690 6.905860 2.586629 -0.232845 -0.976974 -1.886172 -4.405410 3.892283 -5.708468 1.874923 1.844326 -4.864423 3.335261 -3.001397 -1.381998 -3.238278 2.620345 0.802078 -6.228897 7.148603 4.984517 -5.534361 -2.231442 -4.206928 2.209176 1.309278 5.766410 -2.258670 -0.850990 1.400851 1.137061 -0.582986 -1.522205 2.386619 0.272523 1.165402 -6.152083 -3.681192 4.148513 3.561819 -0.343880 0.039160 0.594955 1.065096 0.196980 6.345932 0.808654 1.090725 -3.642154 -11.882699 1.619683 3.705004 -0.477408 2.246305 -4.263106 -2.901508 -0.958708 -0.964348 5.108313 2.648627 0.357843 4.410593 -4.236574 -5.009911 -3.895543 -0.569247 0.279876 -1.922662 2.375786 -2.950244 -0.011363 -1.777599 2.443665 -0.555975 -1.900274 -3.316367 1.392496 2.544802 1.725244 -1.843848 4.805437 0.904930 -1.921299 -1.530020 0.226480 -0.832124 3.363217 -3.432865 -2.144322 -1.750900 1.902498 -2.895931 2.484431 0.764856 3.515733 0.989409 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 4.767620 -1.852845 -2.448739 4.500597 0.590542 -2.030301 0.813806 1.670424 0.912788 -6.073351 -2.434115 5.690985 0.565226 -2.062082 -0.003487 2.219607 2.418391 1.545037 -7.392632 2.299584 0.279029 -0.469407 -3.964124 -1.118381 -0.141531 -2.246604 1.922182 2.335100 0.019503 4.132328 -2.330497 1.803251 3.332554 -0.568060 3.506492 3.988869 -0.693116 -1.007692 -0.145340 -0.634116 7.197403 2.836853 0.074903 2.604224 2.218410 5.273829 0.273196 6.852912 2.800686 -1.352723 2.960163 1.319511 -2.698395 -0.085176 -6.137806 0.999932 2.644406 0.321108 -3.721787 2.848781 -1.734185 1.385032 2.396212 1.433859 6.769224 2.041715 3.204165 3.825510 6.148584 -2.267292 1.009134 0.946492 4.015908 0.825545 4.165707 -2.794972 -3.300219 -3.059730 0.184446 -5.209732 1.164738 -1.085815 7.305984 -4.304054 0.420256 1.210277 2.051024 4.924783 -3.610681 -0.773956 -4.931185 0.209415 -0.762429 7.479393 -0.228667 2.372685 -0.920082 1.990961 -0.984570 1.632881 -0.121714 -5.632668 -1.397235 -8.924210 -3.968348 -3.309828 -1.497523 -0.786122 -5.999409 0.273440 1.374421 4.495897 -7.155969 -0.368100 1.056286 -0.973012 3.853346 1.803330 -2.252067 -0.185333 -0.924934 2.643273 1.047309 -1.711936 0.044378 -2.702225 0.854948 1.717275 1.952750 0.761999 -6.076273 0.106086 2.119680 0.500934 -0.652004 1.761383 1.178743 -3.787920 2.110240 -3.431037 3.844604 -5.950526 -2.357318 -3.722033 -3.396327 -1.720545 5.559309 3.658776 4.924633 0.688115 -0.795050 -0.392992 -7.099517 -8.609488 1.095319 -2.362748 -0.031590 -0.069398 -0.286989 -0.340984 -2.572433 -0.586292 2.224266 -3.677312 -2.170245 -1.913928 3.850906 0.211383 -1.528114 -2.086834 -0.688648 2.427592 1.943808 3.165463 -2.386569 -9.088885 -6.028126 -2.414162 3.984933 -1.855097 0.611368 -1.121267 -1.475238 -3.102412 0.526899 -3.472015 0.830301 -2.418644 -1.262133 -5.216162 1.122398 -1.154801 0.303940 -0.656437 -4.141528 1.920409 2.108901 2.129197 -0.227356 1.457908 0.149609 -5.452132 -4.149270 0.979456 -0.462232 6.030543 3.620530 0.588715 -2.006840 -1.397833 -5.012073 3.170313 -6.882802 2.402660 2.265671 -4.033574 3.860627 -3.664860 -1.330731 -3.046609 2.768558 -0.232215 -6.394356 7.199072 5.015793 -5.402267 -0.794623 -2.799364 2.727767 1.415525 5.150683 -3.082566 -1.675871 1.681773 0.317030 -0.647539 -1.105238 2.021417 -0.682102 1.719779 -5.274994 -2.197402 4.283713 3.159101 -0.557575 -0.822819 -0.490628 -1.476103 0.270733 5.481300 1.693426 1.979800 -4.649321 -10.828566 1.258704 -0.207312 -0.207503 1.864240 -2.890044 -2.063604 -0.173074 -2.133586 4.964455 -0.506405 -0.987603 3.889612 -6.324801 -5.417226 -3.434416 -0.448377 0.768458 -1.303289 3.188600 -2.942515 -0.180235 -1.807047 3.273984 -1.634594 -1.910092 -0.962971 2.393189 2.854519 1.802618 -2.744895 4.896878 0.722519 -1.470569 -1.084377 -0.513231 -1.029668 1.571348 -4.773126 -1.577387 -1.248408 2.574865 -3.559074 3.711223 0.264061 3.618300 0.921756 -PE-benchmarks/floyd-warshall.cpp__main = 0.802620 -0.621438 -0.558404 2.456633 0.199743 0.249366 0.491152 0.059252 0.015928 -3.670767 -1.530072 1.668524 0.341369 0.175777 -0.098230 0.563260 0.741476 1.129024 -3.470901 -0.232720 0.785065 0.212416 0.119573 -0.609195 -0.053585 -0.777575 1.631462 0.803422 0.370234 2.079811 -0.556103 1.292734 1.839888 0.223465 0.614215 1.512261 -0.336883 0.019136 -0.996875 -0.951838 2.865901 0.617731 0.200350 1.162968 -0.252852 2.227724 1.014566 1.264034 1.133146 -0.849915 0.705366 0.372174 -0.817641 -0.674198 -2.332852 0.313330 1.172332 1.200189 -0.735304 1.003492 -0.306288 0.472295 0.799045 -0.199020 2.398164 0.679898 1.727171 1.964336 1.852937 -1.756185 0.364101 0.134178 0.298035 -0.058737 1.593204 -1.606625 -1.454037 -1.253793 -0.636224 -3.124538 0.053700 0.021407 3.133518 -1.499529 -0.285130 0.087258 0.476360 1.993101 -0.718377 -0.019995 -2.302890 -0.025871 -0.263510 2.680503 0.683482 0.268137 -0.365134 0.556622 0.004566 0.578271 0.649179 -1.815656 0.256548 -3.748664 -1.001410 -1.452453 0.557480 0.638343 -1.817841 -0.039718 -0.352460 1.546613 -3.381746 -0.512114 0.618670 0.774211 1.228781 -1.186178 -0.850533 0.238904 0.034666 0.625226 0.998831 -1.447897 0.407144 -0.242443 -0.172314 0.018614 0.790089 0.515582 -2.233306 -1.145201 0.099322 0.207346 0.334084 0.879013 1.152563 -0.254486 0.934545 -1.598279 1.805417 -2.217828 -0.073160 -0.669272 -1.663280 -1.170623 2.390228 1.102198 1.476647 -0.526971 -0.784453 -0.093380 -2.347450 -3.424069 0.694825 0.342838 0.204047 0.902674 -0.473702 0.634421 -1.826390 0.535136 1.510661 -0.802472 -0.947378 0.073441 0.800911 0.167230 -0.757539 -0.916951 0.097568 0.323303 0.422670 2.002746 -0.781365 -2.876930 -3.043196 -1.070084 1.864737 -1.163082 -0.189528 -0.830773 -0.707750 -1.315633 0.131226 -1.698105 0.363138 0.063743 -1.425425 -2.606704 0.740983 -0.521026 -0.177072 0.998281 -1.777279 0.427529 1.109883 0.803893 0.062679 0.270119 0.433803 -1.835597 -1.381987 0.357229 -1.107647 1.570265 1.009141 0.135266 -1.768918 -0.886446 -1.369072 1.056535 -0.765990 1.202380 -0.101676 -0.868332 0.926368 -1.661925 0.721992 -1.212727 0.568609 0.577156 -3.816533 2.661342 1.530910 -1.292393 -0.232085 -0.440009 0.741218 0.023385 1.263923 -1.680004 -1.411530 0.632015 -0.424330 0.045651 -0.800928 0.412423 -0.282962 -0.402480 -2.282671 -1.063328 1.653183 0.817186 -0.300840 0.381663 1.256915 -0.650458 0.151506 2.429916 1.267730 0.400412 -1.629477 -4.250755 0.854077 0.463752 0.041829 0.059346 -1.009535 -0.730533 0.898149 -0.617022 1.671420 0.682066 -1.256407 1.896670 -2.187291 -1.782313 -1.381093 -0.607393 0.922636 -0.479098 0.266701 -1.013799 0.364516 -0.351214 0.365470 -0.415165 -1.146353 0.443892 1.001801 2.175795 0.201222 0.044062 2.143713 0.362304 -0.785733 -0.179871 -0.123725 -0.796758 0.643805 -2.497240 -0.373234 0.431959 1.034530 -1.379405 0.633097 -0.503449 0.396202 0.482759 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 3.217975 -3.339634 -4.677176 11.523113 -0.082621 2.027562 1.215910 -1.351948 0.404484 -15.514822 -6.138794 9.340972 2.220681 1.577478 -1.092238 3.577766 2.527555 3.708161 -14.509785 -1.330484 2.913037 -0.134984 0.298417 -1.769468 -0.338989 -3.395352 10.209188 2.410096 1.347088 8.299784 -1.555707 7.432129 7.679573 0.413665 2.284071 5.154557 -4.071179 0.180901 -5.890624 -4.608269 10.859024 2.594169 1.365842 4.460678 -2.879356 8.846606 5.131595 5.683154 6.574319 -3.326464 3.305268 5.415409 -3.124258 -2.769284 -9.741393 0.460662 3.033726 2.977931 -1.717332 2.810235 -1.400600 2.067921 3.399351 0.592574 11.130987 2.020071 9.485068 8.972863 6.325667 -6.894748 2.542729 0.103239 0.022822 -0.482053 9.020741 -7.149497 -8.007797 -0.239330 -3.209623 -11.947982 0.306376 0.143824 12.935880 -5.806731 -3.215715 -2.865992 3.206877 9.439148 -2.846299 1.299469 -9.321120 -0.310624 -1.509420 11.057124 3.242689 1.789065 -2.607517 1.894497 -1.144371 1.116949 3.314855 -8.007085 4.296695 -13.761669 -3.714786 -6.616017 3.348098 4.041236 -8.010644 1.272953 -5.261857 6.378958 -14.222582 -2.192959 1.755326 2.747076 9.312398 -4.645706 -2.773079 1.106573 1.233223 3.404689 4.286687 -5.367587 2.554392 -0.454760 -0.123516 0.047337 3.123030 3.103186 -10.463315 -4.754488 0.665894 1.341517 2.572601 5.260220 6.752259 -0.237875 3.627679 -5.838057 7.111659 -9.375043 -1.341175 -2.925423 -6.707165 -5.390104 8.847537 5.663676 7.330764 -3.545751 -2.587082 0.203546 -11.044484 -14.234306 1.505974 1.433124 -1.456127 4.672393 -1.845885 3.737497 -8.346930 4.308237 7.938800 -3.051062 -4.652543 0.689358 1.981932 1.788817 -3.009735 -2.215142 -1.122369 -2.050887 2.634726 10.696013 -1.608216 -15.687093 -14.606712 -3.440731 7.628064 -5.330719 -1.000398 -4.557678 -3.726865 -4.974701 -0.997237 -7.044358 0.815487 1.250654 -5.370283 -10.570408 2.993493 -1.420475 -0.678049 3.706035 -7.731186 1.676017 6.025877 3.272301 0.599887 1.545198 1.099798 -6.772596 -4.470671 3.311420 -6.139813 6.844084 4.098749 -0.472711 -7.417806 -3.926723 -6.179478 3.118028 -3.212529 5.873671 -0.307816 -3.204027 2.300158 -7.829508 3.873890 -3.946296 1.607312 1.268304 -17.314785 10.849026 6.248700 -4.632015 0.462885 -0.202806 3.857774 -1.279208 3.172814 -7.206211 -6.230385 1.366729 -0.931943 0.459085 -1.965552 1.090757 -1.949099 -3.995798 -8.833748 -3.891597 7.479770 2.098713 -1.193526 -0.006549 4.831991 -5.021781 1.432645 8.910558 6.119263 1.883649 -6.941872 -19.223249 2.613364 -0.133782 -1.485904 -0.084374 -3.966088 -2.455510 4.129417 -4.718476 6.544683 -0.347273 -6.540140 7.390899 -9.970795 -6.947436 -7.246320 -3.460016 3.019641 -0.135734 0.731644 -3.894008 1.409764 -1.367411 1.326144 -3.624967 -5.327977 5.451679 5.342860 9.500329 0.036288 1.091495 8.194345 2.598468 -2.203193 -1.894432 -0.222958 -5.846043 2.356799 -12.941995 -1.126498 3.280136 4.395360 -5.861492 0.753576 -2.078302 2.142976 0.721106 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.963168 -0.673322 -1.120954 3.755872 0.091607 0.139895 0.596010 0.520593 0.009637 -5.613425 -2.896750 3.045170 0.445447 -0.118825 0.131664 1.205060 1.286362 1.361220 -6.764406 0.143897 1.328455 0.096083 -0.158675 -0.894135 0.219877 -1.422639 2.085235 1.359425 0.257043 3.248695 -1.172832 2.363458 2.780868 0.500507 1.451240 2.176721 -2.107875 -0.494644 -0.844830 -1.376253 4.356429 1.516087 0.243735 1.716890 0.026210 3.585865 1.114056 2.086613 2.218530 -1.199447 1.157352 0.886538 -1.756068 -0.395524 -3.568024 0.144543 1.543999 0.899512 -1.004242 1.518782 -0.998962 0.946375 1.282637 -0.481659 4.475204 0.941811 3.188680 2.859329 2.981184 -2.144724 1.050615 -0.066840 0.924066 0.054829 2.118689 -2.492435 -2.359043 -1.731647 -0.823296 -5.570498 0.243737 -0.307402 5.143000 -2.315623 -0.576291 -0.436986 0.984679 3.655484 -1.502547 -0.073700 -3.268709 0.187951 -0.829859 3.908956 0.688946 0.898987 -0.628996 0.939261 -0.258662 0.668193 0.413410 -3.004950 0.279331 -6.247506 -1.514930 -2.218082 0.813222 0.724193 -3.456165 0.780960 -0.619277 2.956707 -5.157956 -0.956975 0.737281 0.694864 1.108055 -0.775391 -1.557823 -0.357879 -0.224768 2.078473 1.505247 -2.168230 0.774817 -1.189545 -0.354004 0.427060 1.557382 0.924521 -3.428253 -1.614015 0.731963 0.178271 0.462740 1.963516 1.988210 -0.078753 1.482927 -2.493094 2.887155 -3.854018 -0.423751 -1.755740 -2.034264 -1.726532 3.336333 3.045419 1.995163 -0.272013 -0.183594 0.091122 -4.341868 -5.028969 0.738184 -0.113030 0.306907 0.792111 -0.506889 0.850995 -2.770144 0.732907 2.049656 -1.608235 -1.574825 -0.741189 1.730814 0.654774 -1.295902 -1.183991 -0.259196 0.557590 0.188349 3.032122 -1.053240 -4.847090 -4.911970 -1.754045 2.982190 -1.885294 -0.237938 -1.727685 -0.632307 -1.636835 0.173538 -2.557815 0.007296 0.060176 -1.988760 -4.003766 0.734489 -0.597713 -0.291365 0.770148 -2.812304 0.655835 2.686695 1.827757 0.287902 0.818554 0.164522 -2.605862 -2.104222 0.610800 -1.764567 2.585178 2.248409 -0.245383 -3.218648 -1.192237 -2.607434 2.159599 -1.418211 2.041418 -0.273602 -1.766630 1.541441 -2.516316 0.873739 -1.581991 0.870470 0.111969 -7.268928 4.161773 2.723468 -2.597053 -0.303327 -1.647099 1.758352 0.021117 2.134603 -2.450999 -1.733010 0.405688 -0.476982 0.002301 -1.077050 1.036558 -0.608806 -0.804382 -3.322841 -1.417595 3.274272 1.207573 -0.436810 0.413793 1.440439 -0.600746 1.093878 3.408604 1.716646 0.356969 -2.754743 -7.670590 0.817965 1.709540 0.022303 0.556957 -1.571264 -1.646168 0.634162 -1.627548 2.980584 0.678242 -1.767417 2.772419 -3.059076 -2.886320 -2.906663 -0.620692 0.871239 -0.547073 0.736201 -1.425499 0.226687 -0.331893 1.172962 -0.525773 -2.359784 0.083844 1.720663 3.437941 0.738026 -0.405711 3.279755 0.909345 -1.109576 -0.804901 -0.322333 -1.683257 0.901930 -3.809214 -0.788230 0.449468 1.463395 -2.367951 1.120250 -0.207469 1.553409 0.373929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 17.272431 -3.476434 -4.677917 21.589248 3.944297 -6.819996 1.390011 10.447363 0.104007 -23.620670 -11.572964 12.550294 0.615775 -0.757931 7.123101 4.092955 5.524973 7.351823 -31.391379 6.108406 -1.168872 -0.008398 -8.747282 -12.441639 2.016537 3.699438 7.699970 9.450090 2.961897 15.082967 -12.667061 7.299731 10.449613 3.549929 11.823652 3.890197 1.872353 -3.511366 -9.414126 -12.256205 27.989674 8.600291 -0.669471 15.080290 2.798283 16.437703 3.312645 18.574435 3.248597 -3.567209 9.529652 -8.719273 -7.557125 0.734938 -23.172436 8.593625 15.355160 7.332878 -9.913107 10.546636 -1.547428 8.085279 10.367774 -5.636550 26.301324 8.769037 15.255163 16.373665 21.300206 -13.699679 5.860001 -0.535847 16.463492 -0.127821 4.856544 -16.920656 -4.334826 -24.748330 2.335124 -26.888290 5.842598 -5.782789 23.059429 -15.175050 6.669982 6.797877 2.308073 17.484641 -18.813711 5.012040 -17.562648 -0.878026 -4.424748 25.784489 -1.236875 3.388769 2.135490 6.947507 -0.538753 8.598625 1.106186 -11.581859 1.119152 -33.348389 -14.255923 2.620643 -4.224385 -3.426903 -14.968807 1.953736 5.533918 10.694206 -23.634353 -11.889865 1.688276 1.497033 2.909657 0.331483 -6.428315 -1.976042 -5.689571 12.151922 6.315118 -13.992600 8.525140 -9.326334 -5.909500 8.078432 15.898047 8.749172 -15.746287 -5.662297 4.014862 0.098630 -3.368481 3.010968 2.702565 -7.764610 9.485975 -12.119994 14.798916 -20.289214 -7.159153 -10.483016 -10.891514 -3.355934 22.681766 5.077671 12.205451 10.682015 -5.339295 -0.627338 -19.830894 -30.467164 9.954863 5.826620 0.876349 3.279034 -1.050564 2.744698 -11.245988 -8.094059 14.695090 -16.542351 -18.108419 -10.362232 11.344537 0.411506 -7.121550 -12.321729 10.610902 14.560347 -0.706610 12.704693 -5.943475 -21.806031 -19.767862 -8.445022 15.940015 -5.887916 -0.701880 -0.585951 0.477020 -16.063158 3.627078 -17.583193 7.971416 -0.673567 -13.081784 -20.911179 4.113688 -2.677949 3.323623 2.822385 -14.977168 10.056233 4.853119 14.695605 -7.720085 9.712723 10.070571 -21.280436 -24.266536 -3.292981 1.526591 18.845449 5.716542 4.572886 -10.555112 -7.710920 -9.148070 16.339471 -19.459493 9.846784 -0.423666 -6.320746 9.928261 -15.696160 -7.164026 -13.627745 8.195242 5.039602 -21.205263 23.974547 12.972838 -18.426278 -5.032285 -20.284502 13.901744 2.586766 27.843845 -14.187566 -7.311652 6.764114 7.350933 -4.500336 -13.868560 8.130135 1.603531 -4.804409 -18.479316 -12.589134 11.464957 9.099496 1.525752 3.847970 7.834114 0.069910 -5.131885 27.342143 6.529202 1.786897 -14.682557 -34.021654 3.867444 14.457286 3.109499 3.175310 -17.037056 -10.715191 -0.352485 -0.189197 15.836694 13.006084 1.415586 15.387599 -19.924762 -15.978374 -11.147151 5.608589 2.400646 -8.876473 5.079541 -12.426750 0.018102 -1.937617 7.338988 -6.007426 -4.413010 -13.627104 -0.528970 12.670222 -0.690706 -5.603927 20.786724 9.567323 -9.175902 -0.338285 -3.142998 -6.416836 5.037305 -14.328156 -5.567631 -0.898979 5.595119 -15.505688 10.519949 3.294301 4.755965 1.606891 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 8.507816 -5.666897 -8.852213 21.267715 -0.042050 0.905003 2.805708 0.415420 0.862126 -29.913267 -10.791335 16.610926 4.426487 2.392088 -1.094980 6.888387 3.711818 7.304520 -27.166606 -0.513035 5.229505 1.100984 -2.019114 -4.652475 -0.558148 -5.502773 14.794803 5.298658 2.444124 16.076704 -4.525055 12.076046 14.126126 -0.291888 4.726615 9.836667 -3.231169 0.076582 -9.796513 -7.270548 22.245297 7.921609 -0.756983 8.435998 -3.952441 17.479561 6.617695 14.417665 4.067753 -6.926519 6.515615 7.317731 -7.167136 -4.384535 -18.064164 3.303795 10.311863 8.328729 -5.324301 7.125206 -2.032051 3.641915 7.577477 1.481498 22.070826 6.340582 17.163506 17.469275 15.005494 -12.903925 4.586410 0.284953 1.948059 -2.691275 16.621699 -13.939134 -13.291963 -7.290887 -3.139262 -24.955410 -0.560436 -0.216087 24.625061 -13.555337 -1.916337 -0.858506 6.975009 18.317788 -8.361470 2.948151 -18.175919 -1.198141 -3.992820 26.488839 4.347444 3.392715 -4.808342 6.282792 -0.480848 3.173473 4.537153 -14.721251 3.940498 -27.921076 -9.285550 -10.623239 3.423236 6.672692 -17.198384 -0.103629 -3.386369 14.279628 -27.842883 -3.297654 4.299998 5.775202 18.186594 -5.229668 -6.751858 3.616361 -0.018537 4.577971 7.304558 -9.783991 4.939613 -1.931251 0.054576 1.838689 5.991697 5.799820 -23.646729 -7.052474 2.090759 -0.483480 3.609385 8.971925 11.255824 -4.487121 7.669998 -13.422171 13.431897 -19.736961 -2.150774 -5.094661 -14.444223 -8.658587 16.417277 9.746858 12.109219 -4.865189 -7.556668 -0.735058 -22.284624 -31.488102 3.556179 3.367023 -0.997270 7.493226 -3.727103 5.128336 -14.449048 5.895892 14.892095 -7.761078 -9.482031 -0.140619 10.944426 2.581670 -5.993003 -5.297888 -0.863769 -1.466775 4.939643 19.290304 -4.043324 -26.639021 -27.228777 -7.328661 14.901169 -8.274148 -0.907902 -7.945577 -6.379554 -13.536161 0.074096 -14.038961 4.745440 1.077556 -10.515965 -20.138160 6.160341 -2.706168 -3.802561 5.634277 -14.872078 3.912398 10.330054 4.556448 -0.118317 2.196352 4.148947 -15.923560 -12.301320 5.314552 -9.649568 15.775708 9.684298 0.729182 -11.423932 -6.872190 -12.858712 9.004219 -10.078224 10.413469 -0.351246 -6.380426 7.246838 -15.367997 2.264216 -9.748305 5.105006 2.508340 -24.057786 24.191864 12.473539 -10.139062 -0.029132 -2.455687 7.774433 0.001901 10.217312 -14.012324 -11.944615 3.989228 -0.995454 -0.392173 -5.412556 3.562090 -3.859933 -4.409519 -17.097444 -6.677646 12.915087 6.198247 -2.166258 1.883977 8.112132 -9.097925 -1.121365 18.692719 10.741222 2.474306 -12.698930 -33.882662 5.983274 -4.769047 -2.581901 -0.980051 -10.413061 -4.978266 7.668684 -4.808466 13.664765 1.812243 -10.984811 14.393192 -21.352680 -14.902943 -12.343935 -4.208372 4.870760 -1.566054 2.217483 -7.486021 3.222902 -1.287131 3.292106 -5.991185 -10.820164 4.895202 8.177866 17.102629 -0.596647 -2.519779 17.232095 4.463955 -4.138448 -2.933559 -1.203324 -8.280628 4.187776 -21.014650 -2.733930 4.160449 8.204575 -11.942960 4.445147 -3.558035 2.409175 3.019134 -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.775807 -0.229223 -0.042998 0.610374 0.297585 -0.304662 0.289447 0.382615 0.022039 -1.138406 -0.699726 0.505293 -0.008377 -0.376015 0.221702 0.175483 0.547974 0.277405 -0.803600 0.241901 0.028786 -0.051875 -0.716278 -0.032662 -0.083496 -0.425684 -0.352286 0.500494 -0.019355 0.707782 -0.338039 0.069909 0.560510 -0.068473 0.450653 0.797825 0.345781 -0.055643 0.240581 -0.003146 1.431707 0.237270 0.115551 0.640642 0.635044 0.891046 -0.404358 1.560100 0.025025 -0.258613 0.904880 -0.620016 -0.404957 0.064628 -1.062651 0.348725 0.913764 0.202886 -0.758964 0.731484 -0.337558 0.251142 0.290996 -0.052947 0.918423 0.770293 0.280656 0.515806 1.162274 -0.502992 -0.101213 0.429335 0.740669 0.263958 0.077801 -0.444490 -0.096216 -0.803770 0.096160 -0.670437 0.215659 -0.357998 1.615383 -0.659479 0.001035 0.671353 0.052309 0.533754 -0.537675 -0.179448 -0.814525 0.113346 -0.107989 1.078875 -0.063965 0.364604 -0.118192 0.239809 0.047391 0.540272 -0.280911 -0.677789 -0.968374 -1.757735 -0.922655 -0.334840 -0.225400 -0.321496 -0.952226 -0.236237 0.631969 0.496336 -1.041087 -0.099279 0.325052 0.086330 0.246986 0.839995 -0.873863 -0.243116 -0.037390 0.263917 0.170473 -0.125270 0.007974 -0.932889 0.082517 0.148602 0.334443 -0.100762 -0.979677 -0.031938 0.093153 -0.066869 -0.252523 -0.055236 -0.053084 -0.644369 0.460498 -0.483208 0.613486 -1.230142 -0.400956 -0.701171 -0.965804 -0.127654 1.421747 0.583861 1.042267 0.361535 -0.383794 -0.346688 -1.031852 -1.408322 0.222012 -0.359855 0.508610 -0.143535 -0.059395 -0.171831 -0.372329 -0.348266 0.232073 -0.552180 -0.137090 -0.406741 1.034820 -0.229729 -0.349620 -0.753642 0.164427 0.768246 -0.037141 0.201149 -0.493319 -0.995529 -0.728297 -0.536217 0.603844 -0.207222 0.233906 0.070829 -0.075865 -0.840924 0.171903 -0.511567 0.152863 -0.407590 -0.584536 -0.888841 0.239009 -0.213857 -0.138564 0.029078 -0.631642 0.234021 0.436855 0.550556 0.114861 0.307659 -0.018958 -1.023000 -1.050543 -0.226814 0.046452 0.969072 0.866891 0.189891 -0.139545 -0.235592 -0.943756 0.642275 -1.115967 0.128953 0.379730 -0.562505 0.734724 -0.546357 -0.347067 -0.815940 0.424993 0.149757 -1.325502 1.070035 0.711547 -0.938622 -0.509040 -0.784464 0.320102 0.338487 1.183122 -0.389989 -0.075472 0.480217 -0.061609 -0.120114 -0.403823 0.473702 0.053411 0.553652 -1.024332 -0.520391 0.681776 0.753549 -0.163092 0.115607 0.092302 0.257865 0.167071 1.102715 0.206717 -0.015962 -0.583779 -1.834570 0.335299 0.275579 -0.117864 0.363530 -0.617425 -0.494055 -0.030948 -0.199259 0.824773 0.185366 0.243841 0.759487 -0.689921 -0.902867 -0.199197 0.035289 0.263894 -0.626312 0.462611 -0.516765 0.025129 -0.193026 0.463181 0.121408 -0.427160 -0.892199 0.026674 0.539265 0.206302 -0.306578 0.895289 -0.014498 -0.350927 -0.007653 -0.057314 0.381625 0.475097 -0.727171 -0.365558 -0.529071 0.294427 -0.510687 0.843928 0.041123 0.448517 0.543739 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/program-wish-womens-day.cpp__main = 7.634685 -1.278535 -4.477942 10.556731 0.422555 4.538810 2.019984 2.773507 0.193751 -17.808767 -8.052787 14.476348 1.234904 3.060798 -1.077715 4.852628 5.585128 3.212276 -19.084964 -1.511424 3.269041 -1.761931 -0.028997 1.078402 1.211501 -4.801692 8.069058 3.491431 0.913857 10.216986 -1.715691 8.199415 9.346467 0.136464 3.296949 7.060882 -3.418840 -2.279752 -6.618236 -7.615873 12.796671 2.794060 1.405713 6.199119 -4.146034 11.267607 3.289475 10.001169 10.700711 -3.279659 1.611220 1.675039 -6.707747 -0.659827 -11.757973 -1.143223 -2.008453 0.154586 -2.437047 4.223356 -1.565993 2.688217 3.207901 -0.291899 11.980220 1.531752 9.658899 9.877539 8.165701 -8.399990 3.375843 1.747380 -0.319491 3.226499 7.030093 -5.871972 -6.231079 -0.672534 -0.411772 -12.994455 -2.862201 -4.258139 17.326907 -7.202189 -3.863077 -3.208975 1.511148 12.598532 -3.823510 4.530103 -11.569295 -0.804996 1.152693 7.988687 3.578565 3.804668 -2.276946 -0.702042 -2.899582 1.070166 2.067648 -10.385377 1.762228 -12.899881 -2.223828 -8.045160 1.788609 5.543248 -10.355540 2.109478 -5.394856 13.321763 -14.752771 -3.487624 0.597274 2.062614 8.049985 6.631141 -4.170418 -2.056970 4.053592 5.318033 6.466938 -6.214728 3.454433 -1.426256 0.255036 1.089064 3.726590 3.717358 -13.407784 -6.823167 5.858350 -0.205705 3.382129 6.819726 7.832778 0.535398 4.205756 -4.932656 7.460789 -9.090034 -4.624851 -1.900654 -6.875607 -7.058298 14.157072 10.997529 8.644223 0.353104 0.256306 0.375201 -12.288400 -15.162904 0.763517 0.260228 -1.883779 4.744655 -2.275311 6.023723 -9.972399 4.132865 4.751368 -2.892824 -6.265716 0.618650 -0.133383 3.055521 -2.101842 -2.617926 -2.063575 -3.268434 1.263787 12.521525 -2.037525 -20.046061 -14.928329 -5.490929 10.269457 -6.546231 -0.849891 -5.166067 -3.634762 -2.348919 -3.290497 -7.207335 -1.798913 1.759168 -7.724536 -12.530721 3.334371 -1.988126 -3.950403 5.280453 -9.676845 2.727949 8.319618 4.506672 0.716596 0.811027 -3.174063 -5.915579 -3.905199 2.252601 -7.767257 9.734860 6.404088 -1.979469 -9.491624 -4.853831 -6.389785 7.703609 -7.961663 8.753735 -1.282605 -3.783212 3.375723 -7.994815 2.334771 -3.680870 4.817306 1.761800 -25.025342 10.088361 9.713622 -6.143526 -1.344249 -2.225952 3.846730 0.399811 5.360931 -7.953916 -6.417960 2.497990 2.417920 0.390277 -1.298996 2.049995 -1.602880 -4.784964 -11.026316 -3.873473 10.762560 2.761067 -1.923780 -1.679074 8.090302 -1.511830 6.019441 10.570913 5.994554 0.409612 -7.286055 -24.459690 3.646568 7.349849 -2.694519 3.237983 -7.598434 -1.906593 4.284127 -12.678490 9.271073 -5.363423 -4.010732 8.609118 -8.695726 -9.177438 -9.772091 -4.303686 2.182491 2.768669 5.110398 -4.044081 0.810394 -3.243925 1.193272 -5.039362 -6.907231 4.471415 6.979734 9.565307 2.728213 1.990456 9.310253 3.988795 -2.136284 -1.906746 -1.813633 -5.236646 1.151535 -15.458820 -1.464958 3.975464 5.423713 -7.561745 0.981532 0.860712 2.541190 -0.352504 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 1.806838 -0.725018 -1.312521 3.405049 0.031193 0.094010 0.585076 0.270061 0.180530 -4.797825 -2.183408 2.242384 0.801537 0.354255 0.152008 1.437280 0.857098 1.177405 -4.625361 0.014041 1.062374 0.053147 -0.432383 -0.392074 -0.078867 -1.275469 1.337263 0.842095 0.398108 3.050105 -1.018919 2.011559 2.611298 -0.305580 0.715407 2.067861 -0.319127 -0.048472 -1.147898 -0.805450 3.856425 0.851702 0.142196 1.374409 -0.523074 3.207771 0.550815 3.428973 0.777201 -1.409963 1.757208 0.122598 -1.369178 -0.325700 -2.973844 0.731723 2.165030 1.525849 -1.145894 1.490496 -0.682928 0.879286 1.309408 0.152305 3.681847 1.608527 2.502786 2.760971 3.009743 -2.338458 0.829312 0.285794 0.405737 -0.228715 2.672862 -2.296358 -1.707328 -1.323072 -0.223663 -3.718544 0.064347 -0.191165 4.725470 -2.600493 -0.572732 0.506828 1.024720 3.330965 -1.557754 0.696152 -2.896995 0.024812 -0.482160 4.343244 0.536753 0.700882 -0.920449 1.091966 -0.186295 0.690393 0.554688 -2.588533 -0.648236 -4.701039 -2.241717 -1.874026 0.411253 1.082541 -3.726129 0.063445 -0.086574 1.935222 -5.069658 -0.327997 0.857623 1.279054 2.705700 0.527050 -1.662898 -0.103852 0.138202 1.091651 1.225570 -1.566561 0.951108 -1.389255 0.036396 0.594965 1.049218 0.521969 -3.697326 -1.057348 0.366125 -0.329363 0.477708 1.545885 1.977170 -0.992980 1.566017 -2.193855 2.335773 -4.015216 -1.000171 -1.267635 -2.843149 -1.480607 3.064282 1.933028 2.494599 -0.430837 -1.458179 -0.388559 -4.093873 -4.835918 0.205067 0.145951 0.355398 1.269912 -0.647551 0.786761 -2.314382 0.760679 1.883549 -1.538608 -1.483014 -0.292109 2.306667 0.239356 -1.088927 -1.494776 -0.128875 0.266305 0.284897 3.107644 -0.674641 -4.158045 -4.782077 -1.585381 2.766394 -1.420222 0.254200 -1.382513 -0.888943 -2.530743 0.090262 -2.243950 0.107979 0.166972 -1.750397 -3.700592 1.114979 -0.479776 -0.790534 0.974346 -2.827709 0.666518 1.893930 1.131450 0.343963 0.480642 0.222415 -2.835971 -2.337911 0.540529 -1.656023 2.708440 1.859298 0.000883 -1.597815 -1.355625 -2.509957 1.773422 -2.239291 1.671670 0.131234 -0.936681 1.473781 -2.778520 0.099251 -2.108930 0.967894 0.407673 -4.633052 4.096742 2.260050 -2.071645 -0.177825 -1.058845 1.592075 0.223338 2.171817 -2.245302 -1.711735 0.799554 -0.102114 -0.083938 -1.001231 0.927060 -0.903199 -0.478441 -2.712835 -1.062495 2.351905 1.577523 -0.466562 0.340146 1.537771 -1.095852 0.536151 2.900074 1.656980 0.030786 -2.071363 -6.232853 1.175525 -0.452896 -0.542295 0.214154 -1.863391 -0.847300 1.201504 -0.845785 2.605494 0.564770 -0.803236 2.727135 -3.680279 -2.887534 -1.967020 -0.604113 0.790471 -0.517320 0.448464 -1.510801 0.520431 -0.141744 0.878610 -0.794826 -2.047944 -0.049674 1.254947 3.112693 -0.066870 -0.202455 3.252058 0.792841 -0.731518 -0.552981 -0.208314 -0.978702 0.621085 -2.931077 -0.509585 0.539947 1.415489 -2.276518 1.201628 -0.638379 0.488525 0.711241 -PE-benchmarks/bfs.cpp__main = 2.445242 -0.337696 0.044912 3.175400 1.107097 -0.936884 1.023597 1.883923 -0.193152 -5.368716 -3.284184 0.129494 0.186234 -0.816110 1.300064 0.472521 1.712700 1.629286 -6.379504 0.743325 1.467763 0.308847 -0.969408 -1.056100 0.015109 -1.418555 -1.305830 2.243819 0.364540 3.603768 -1.763818 1.042879 2.907673 0.324790 2.165747 3.191529 0.334976 -0.363191 0.679883 -0.210068 5.889451 1.493131 -0.298146 1.709006 1.466399 4.219639 -0.577053 3.667149 -0.568008 -1.476892 2.632767 -2.733487 -1.510634 -0.144292 -4.071267 1.303343 4.360950 2.571728 -2.887286 2.647305 -1.304815 0.896102 1.514562 -1.002684 4.232362 2.363778 1.551776 2.689335 4.480450 -2.558802 0.086686 0.577574 1.786785 -0.249289 -0.099794 -2.674145 -0.443720 -5.935157 0.367216 -5.629006 0.252757 -0.563855 5.240862 -3.119695 1.010589 2.601245 0.173920 3.052230 -2.341955 -0.740491 -3.871038 -0.092100 -0.509589 4.794208 -0.023508 0.366364 0.537569 1.529963 0.373312 2.095840 -0.500061 -2.976747 -3.469943 -7.718464 -3.231903 -1.390999 -0.008572 -0.249264 -3.694745 -0.982016 2.598006 1.321047 -5.271170 -0.619365 1.461333 1.400193 -1.032192 0.499392 -3.174247 -0.625926 -0.874262 1.289208 1.654511 -1.865761 0.397511 -3.128598 -0.293344 0.834782 1.647490 -0.024206 -3.003587 -0.914032 0.463886 -0.793678 -0.667936 0.347632 0.399893 -1.645261 2.051122 -2.873882 3.422866 -4.719155 -0.153301 -2.468863 -3.043391 -1.112781 4.304920 2.216070 1.745067 1.221315 -1.812530 -0.216195 -4.136501 -5.572192 1.156580 -0.136879 2.224457 -0.065229 -0.824406 0.252836 -1.826500 -0.732965 0.880402 -2.300198 -1.597145 -1.320856 3.843223 -0.106722 -1.530840 -2.556402 0.970167 3.151474 -0.871711 1.827030 -2.247646 -1.804388 -3.833294 -2.587878 3.233116 -1.352868 0.366248 -0.706609 0.041314 -3.707856 1.328312 -3.127746 0.611383 -1.212723 -2.206192 -4.317674 1.153256 -1.133151 -0.035027 0.978719 -2.917232 1.055361 1.946769 2.458606 0.058582 0.701502 0.682833 -3.937735 -3.868719 -0.772090 -0.325976 3.371905 2.501041 0.641530 -1.623549 -1.250890 -2.595030 3.165023 -1.798007 1.303214 0.293761 -2.280684 2.967001 -2.441948 -0.896332 -3.183047 1.553481 1.148146 -4.711450 4.657261 2.579470 -3.363328 -1.397662 -3.325199 1.390608 1.113444 4.315807 -1.781352 -1.241106 1.519496 -0.370350 -0.411080 -2.263385 1.595500 -0.193865 1.209539 -4.254235 -2.089775 2.894466 2.784755 -0.306364 1.696904 1.321315 1.069741 0.295107 4.717852 1.146966 -0.163293 -2.318147 -6.718581 1.674444 2.273426 0.785301 0.213004 -1.978859 -2.056994 -0.164110 0.816637 3.672867 3.996004 -0.083712 3.574108 -3.019767 -3.805853 -2.063217 0.777189 1.287739 -2.315572 0.364122 -2.126869 0.628688 -0.433594 1.380895 1.093681 -2.201819 -3.826552 0.507324 2.980616 0.536046 -1.270117 4.165114 0.350958 -1.848631 -0.198644 -0.191464 0.370380 1.735674 -1.756609 -1.544832 -0.950892 1.386821 -2.382214 2.379537 -0.291499 1.055805 1.896544 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = 5.726023 -0.133730 -3.190229 9.019527 1.439156 -1.730062 1.383072 2.777781 0.628556 -11.187463 -5.886064 4.828844 1.349222 -1.229143 1.603491 2.798366 3.169932 4.129696 -13.612303 1.629449 2.069142 0.265621 -3.178621 -3.179350 -0.050461 -1.997759 1.249518 3.642265 0.915735 7.822889 -3.732013 4.258865 6.227459 0.544690 5.050189 5.053017 -0.764780 -0.916814 -1.645755 -1.960878 11.845004 4.147838 -0.133312 4.408114 1.198437 9.173479 0.966222 7.141511 0.429827 -2.534661 3.637479 -0.878937 -3.347145 -0.408232 -9.218270 2.564417 6.476470 3.329214 -4.951168 4.928335 -1.737861 2.399991 4.073455 -1.105332 10.651399 3.825438 5.101301 7.298446 9.260107 -4.947208 2.014711 -0.757650 4.184923 -1.048176 4.053171 -5.873241 -3.900058 -7.904697 -0.120628 -12.058469 1.771212 -1.000352 11.319160 -7.574533 1.550217 2.578643 2.338848 8.179242 -5.776579 -0.951465 -8.348070 -0.538474 -2.255323 11.601505 0.935401 1.896760 -0.668909 3.496325 -0.318150 2.329232 0.025850 -7.472657 -2.093862 -15.289866 -6.399015 -3.427979 -0.515861 0.252700 -7.844627 -0.701171 1.595221 5.523481 -12.841733 -2.026994 2.184101 1.101458 1.523823 -0.913433 -4.266981 0.236628 -1.696326 3.708074 2.916090 -4.745913 1.400332 -4.042690 -1.600656 1.897563 4.282792 1.872923 -7.479138 -1.732938 1.564352 -0.878005 -0.254238 2.672887 2.214945 -3.980893 4.250249 -6.359040 7.140526 -9.402473 -1.912755 -4.635035 -6.331006 -3.261253 7.596534 4.416259 5.380089 1.160341 -2.329706 -0.252618 -10.699367 -13.639985 3.067107 -0.158842 1.359157 1.257935 -1.514659 0.690996 -5.642007 -0.227866 5.562279 -5.730644 -5.255815 -2.455660 7.714511 0.559725 -3.525941 -4.320062 0.685134 4.329042 1.029651 5.917815 -3.753349 -8.605443 -10.193540 -4.158299 7.366747 -3.575158 0.822475 -2.712248 -1.042133 -6.820336 1.079634 -7.424860 1.836402 -1.500269 -3.191385 -9.611029 2.245038 -1.801749 0.228344 1.450778 -7.025183 3.333372 5.159982 4.242068 -1.276795 1.960604 1.955005 -7.540438 -6.868833 0.586228 -1.946369 7.555896 4.858320 1.447139 -4.848004 -2.534786 -6.234172 6.066652 -5.312328 4.351254 0.889074 -4.161075 5.113767 -6.631146 -1.923557 -5.673390 3.265473 0.828078 -10.330761 9.907154 6.162389 -7.319542 -1.164372 -5.553375 4.760279 1.133562 8.678636 -5.607847 -3.977636 2.467501 -0.076188 -0.871671 -4.219826 2.789586 -1.155666 0.194949 -8.696283 -3.191993 7.001892 4.801318 -0.727356 1.844784 2.529302 -1.302997 0.505831 9.230388 3.717731 1.246463 -6.298831 -15.045619 2.191917 1.878358 1.109565 0.315458 -3.890175 -3.233094 0.302355 -1.165421 7.752075 4.680803 -2.203544 7.430058 -8.981466 -8.288208 -5.679179 0.641807 2.452224 -3.375474 1.856592 -4.522319 1.021277 -1.284591 3.748343 -0.629962 -4.859271 -3.209967 2.842948 6.735447 0.170633 -2.696308 9.019714 1.768666 -3.061434 -0.824517 -1.217460 -2.127417 2.580271 -7.332586 -2.674326 -0.406600 3.499372 -6.236019 4.420623 -1.110718 3.013510 2.599268 -PE-benchmarks/boruvkas-algorithm.cpp__main = 4.283359 -4.749778 -2.820135 8.602545 -0.003426 0.046432 1.437950 0.650724 1.543078 -10.591270 -3.905447 4.538878 1.764330 0.416202 0.715521 2.796428 2.233576 1.227360 -11.249706 0.402802 1.716589 -0.763934 -2.054896 -0.711864 -0.506846 -3.793284 5.523275 3.724544 0.351864 6.797193 -1.986875 4.121723 5.788128 -1.029697 2.661566 5.202955 -0.426417 0.293402 -3.798109 -0.593422 9.436348 3.034584 -1.451571 2.616996 -0.522506 7.852654 2.592888 8.279105 3.339004 -3.009361 4.749387 1.787895 -2.888613 -2.116217 -7.783423 0.950154 6.115240 3.183450 -3.600992 3.757375 -2.942249 1.766314 3.263659 2.894182 9.111335 2.681983 7.301561 6.417861 6.996084 -5.961425 1.538269 1.209420 1.919505 -0.035340 6.261321 -5.893141 -5.773332 -5.856585 0.191000 -6.825981 -0.536781 -0.274678 7.282391 -5.586499 -1.657645 1.131437 1.721122 7.498232 -4.772313 1.444746 -7.084242 -0.450441 -0.163514 11.169089 1.021920 1.614047 -0.381228 3.405879 -0.187918 2.417848 2.550780 -7.229607 -0.269260 -11.841637 -5.537099 -4.819128 1.011918 1.809681 -7.687512 0.336284 0.478212 2.043919 -10.222367 -0.270836 2.043501 2.785741 8.154083 -1.547245 -2.104035 0.183975 0.678047 2.749434 4.096546 -3.962539 2.689862 -2.896627 2.360106 2.624850 2.306333 1.474718 -7.059367 -1.569090 1.814948 0.666252 0.753939 3.224250 3.802821 -3.320484 3.631333 -5.403952 6.775663 -9.198766 -1.660591 -3.632131 -4.738797 -3.179905 7.682743 3.559929 5.489944 -0.973939 -4.426321 0.652019 -9.256672 -13.302823 0.204516 1.415805 -0.366895 2.177067 -1.814733 2.154749 -5.113121 1.934941 4.308860 -3.766155 -3.561222 -0.131787 1.716564 1.668867 -2.691577 -2.150970 0.263421 0.873369 2.144551 8.278473 -1.506357 -12.056008 -10.289317 -3.471472 6.422006 -3.102364 -0.303599 -2.477881 -3.336800 -7.268304 1.311887 -5.345774 1.211420 -0.538566 -4.435011 -8.470143 2.649181 -1.409042 0.795512 2.119291 -6.948024 1.259043 1.951441 2.585080 0.852101 1.675262 1.135577 -7.451882 -5.970999 1.688764 -3.149661 8.658711 2.181056 -0.229275 -1.509157 -2.946716 -5.274135 3.955354 -5.479669 3.947151 1.029573 -4.408640 3.593758 -5.614259 -1.073744 -4.992248 2.668580 1.414082 -5.839223 11.240303 6.668584 -5.191222 -0.875233 -1.157614 3.324236 0.423530 5.453627 -5.781566 -4.416233 1.734988 0.872061 -0.237299 -1.495614 1.967678 -1.451769 -1.529422 -6.832762 -3.196838 5.331697 3.860889 -0.616442 0.392673 2.752821 -3.083968 -1.301407 7.685692 3.518797 1.473532 -5.267087 -14.170308 3.177182 -1.093095 -1.840708 0.614302 -5.524795 -2.412725 2.288959 -0.328749 6.079459 3.703785 -2.510184 6.634299 -8.514515 -7.102801 -6.221071 -2.361414 1.152441 -1.198591 1.523196 -3.907050 1.598998 -1.312236 2.054671 -2.907392 -3.203037 1.153183 2.930359 5.560157 -0.222701 -1.524581 7.648541 1.783603 -1.978486 -2.429895 -0.013715 -4.156763 3.147817 -5.560019 -1.510004 0.644517 4.176732 -4.962584 1.925888 -0.962767 2.186628 1.359879 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.457826 -0.121295 -2.358918 4.173841 -0.463438 -0.154927 0.345502 -0.365091 -0.112890 -4.525773 -1.783674 2.043043 1.274419 0.147104 0.056052 1.979324 0.382781 0.989570 -3.966719 0.234082 1.197116 -0.343607 -1.161065 -0.428779 -0.358459 -1.707055 2.076757 0.938847 0.076685 3.230486 -0.791887 2.461044 2.702171 -0.665222 1.052019 2.075961 -0.858743 0.502204 -1.599590 0.024309 3.547170 1.379611 -0.493282 0.586621 -0.684714 3.464793 0.844398 2.075454 -0.994940 -1.444017 1.186513 3.180171 -0.876048 -0.705672 -2.796877 0.453764 2.473940 1.289781 -1.254350 1.365762 -1.549996 0.801715 1.618345 1.615955 4.024350 1.369788 3.090643 3.303755 3.048421 -2.272440 1.141251 0.092885 -0.004872 -1.161356 3.467734 -1.223015 -3.104250 0.043075 -0.486899 -3.458771 -0.041345 0.695259 4.194562 -2.786172 -1.055543 -0.037063 1.893157 3.734643 -2.254970 0.590962 -2.653250 -0.332628 -1.639996 5.399464 1.050795 1.004831 -1.091805 1.793130 -0.061622 0.474018 0.378399 -3.234726 0.392150 -4.259621 -2.768258 -2.316119 0.567394 1.440907 -3.885175 -0.179534 0.195794 2.257654 -5.216993 0.432203 0.823769 1.336302 3.975648 -0.913882 -1.805285 0.894742 -0.052947 0.817078 1.649905 -1.079273 1.146581 -0.580752 0.578146 0.686699 0.910636 0.898459 -4.227723 -0.512048 0.534257 -1.014638 0.628856 2.128523 2.225647 -1.548719 1.624321 -2.399143 2.851860 -4.387584 -0.473331 -1.501416 -3.281640 -1.429184 0.411755 2.282758 2.051975 -1.492021 -1.555330 0.152450 -5.023468 -5.310889 -0.033075 0.675263 -0.597420 1.061948 -0.893447 0.971053 -2.653850 1.646806 3.186202 -1.746758 -1.567262 0.096311 3.893036 0.872527 -1.426987 -0.768670 -0.963609 -0.901628 1.531635 4.050317 -0.519305 -4.061054 -5.659586 -1.269164 2.917805 -1.499403 -0.073832 -1.847926 -1.528199 -3.187558 0.399570 -2.525041 0.520536 -0.033551 -0.548639 -3.702054 1.011414 -0.268118 -1.121514 0.379020 -3.135051 0.559380 2.261692 -0.757236 0.452262 0.253283 0.536513 -2.165998 -1.750217 1.779569 -1.810600 2.672471 2.228483 -0.033285 -1.173764 -1.213176 -2.900730 1.459185 -1.224265 1.897634 0.391857 -1.212419 1.625174 -3.020393 -0.695562 -1.773649 0.858813 -0.061015 -2.570676 4.594593 2.760905 -1.949335 0.322904 0.144105 1.892363 -0.044291 1.739068 -2.644609 -1.939644 0.466217 -0.019300 -0.045172 -0.051989 0.854060 -1.498869 -0.729836 -2.349127 -0.493346 2.671334 1.616945 -0.380124 0.227590 0.707455 -2.527689 0.315991 2.316053 2.235135 0.418579 -2.319616 -4.859602 1.029416 -4.608669 -1.055902 -0.606227 -0.648327 -0.846982 1.134150 -0.597489 2.859374 0.009990 -2.406433 2.820261 -4.412286 -3.317654 -2.867141 -0.775479 0.507102 -0.563863 0.400461 -1.631937 0.791980 -0.118064 1.051928 -1.236901 -2.239930 1.333729 1.467692 3.027846 -0.422187 -0.932584 3.397293 0.972995 -0.585484 -1.243915 0.068774 -1.952740 0.739899 -3.238571 -0.824430 0.564697 1.997208 -2.358040 0.902432 -0.891733 0.733988 1.103777 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 12.993725 -4.052067 -19.357698 31.737062 -3.693070 0.073458 2.659303 -1.005904 0.506757 -37.077975 -15.568508 23.582766 9.906382 1.774813 -0.435977 14.940212 3.831776 9.052028 -32.724698 0.571581 7.759008 -2.493127 -9.133260 -4.342676 -2.628031 -10.432143 18.534101 5.479051 1.581928 24.277188 -5.353481 20.058986 20.236553 -4.413218 6.759311 14.516549 -9.590127 1.730609 -12.866760 -6.299851 27.738472 10.312062 -0.818400 8.515314 -7.235935 25.343562 5.943740 20.917611 -0.477370 -10.284416 10.544224 21.069347 -8.834581 -4.221690 -22.960334 3.437927 14.756534 7.347071 -7.061672 10.168508 -9.575582 6.624013 12.346728 8.718447 31.886713 10.882900 24.843321 26.270578 22.190726 -17.432877 10.225491 -0.321753 0.011129 -6.632947 27.530511 -14.149906 -22.137386 1.316444 -3.995105 -28.453819 1.324270 2.675909 39.038437 -20.992117 -8.102747 -3.167195 15.933624 29.455200 -15.930009 6.040700 -21.060816 -2.162899 -11.169187 38.066598 7.734131 8.840418 -10.277276 11.129320 -3.088793 2.071953 2.837039 -23.286740 5.792861 -35.275860 -18.260471 -17.077671 3.840652 11.441879 -28.466555 0.813081 -3.354834 18.210985 -40.340519 -0.594700 5.152705 7.945336 30.487575 -0.988223 -13.213399 4.660266 0.213247 7.735641 10.696864 -9.333414 8.971031 -4.233603 1.769388 4.267992 7.908605 8.916146 -34.996555 -5.783675 4.498972 -5.640180 6.124591 17.363827 19.125528 -8.832379 11.623904 -17.569199 20.032047 -32.511618 -6.662488 -10.710756 -24.864653 -12.296487 12.425674 18.329986 18.732314 -10.391938 -8.963497 -0.229943 -37.613655 -40.886762 1.075430 3.793944 -5.214341 9.148338 -5.484596 7.102321 -21.634722 12.274657 24.309136 -13.142523 -13.043157 0.017201 26.236464 6.300393 -10.211442 -6.814804 -6.579940 -7.412029 10.272140 30.425091 -2.826780 -37.499151 -43.598492 -8.506027 22.589368 -11.670274 -0.320125 -14.010662 -11.629777 -19.480387 -1.138914 -18.495712 3.428580 1.757286 -8.425743 -29.124169 7.858208 -0.877749 -9.238799 4.130729 -23.720683 5.537795 19.835047 0.159108 1.208533 3.690807 3.161358 -18.262805 -14.489936 12.901031 -14.967875 20.730022 19.401925 -0.773672 -12.443235 -9.437521 -21.628841 11.024070 -14.413534 16.372545 1.810493 -8.534128 10.373746 -24.877597 -2.258122 -14.264673 6.179836 -1.044354 -32.212710 34.460190 19.286505 -14.851310 3.448881 -1.253470 15.122277 -1.767425 12.702683 -20.817431 -15.409993 3.822987 -0.706993 -0.254843 -2.029288 5.330076 -10.167518 -7.960139 -19.219486 -4.691374 21.939077 9.963009 -3.075317 0.853660 7.433355 -18.762350 4.142692 20.402021 18.197953 1.740064 -19.069196 -45.690844 7.687898 -22.454917 -8.482264 -3.185137 -9.416495 -6.507244 9.590204 -9.780747 19.803895 -3.209037 -16.544410 20.852311 -33.147087 -24.093475 -21.155905 -5.320167 5.188139 -2.235574 3.670763 -11.843898 5.168070 -1.150835 8.461111 -10.977870 -17.713895 10.442861 12.751985 25.436202 -2.858841 -4.692755 25.679866 8.341042 -3.848104 -8.246855 -1.753939 -15.440633 4.522954 -29.833958 -4.380676 6.548544 14.565469 -19.499009 6.892865 -4.513496 5.977754 6.594646 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 3.397690 -0.938930 -4.617849 8.886401 -0.569579 0.558896 0.750604 -0.833652 0.399443 -9.786537 -4.109490 4.708143 2.531841 0.846212 0.120566 4.088061 1.338192 1.646179 -8.491223 0.061954 2.273994 -1.031231 -1.911155 -0.400645 -0.679742 -3.828765 5.187177 2.028921 0.349809 6.765796 -1.500608 5.479453 5.788658 -1.199257 2.202667 4.354360 -2.009015 0.665827 -4.048876 -0.756778 7.591663 2.731187 -0.734654 1.742263 -1.855448 7.391592 1.970681 5.358368 -0.249580 -3.012218 3.083598 5.726913 -2.101499 -1.442507 -6.298565 0.907611 4.593467 2.032441 -2.457045 2.628091 -2.939277 1.830676 3.215942 2.992626 8.331664 2.670375 6.799170 6.909833 6.063261 -5.270132 2.226777 0.676487 0.009568 -1.351345 7.111687 -3.352950 -6.364849 0.730201 -0.911184 -6.466091 -0.183760 0.575155 8.644086 -5.582417 -2.702243 -0.523818 3.222142 7.848957 -4.346244 1.737683 -5.924105 -0.538698 -2.567773 10.231418 2.019189 1.985301 -2.081099 3.157207 -0.601559 1.099754 1.239686 -6.903255 0.915054 -8.593279 -5.459470 -5.040507 1.813306 3.175300 -7.953144 0.330894 -0.909024 4.445313 -10.547427 0.432330 1.572272 2.870718 8.653410 -1.044996 -3.153051 1.022594 0.793887 2.221489 3.586989 -2.548442 2.734971 -1.576469 1.259516 1.452608 2.080596 1.871048 -8.244559 -1.539720 1.231216 -1.354400 1.572919 4.443429 4.980692 -2.908673 3.476820 -4.541548 5.985108 -8.969716 -1.644184 -3.328957 -6.271259 -3.357010 2.519585 4.870268 5.314475 -2.504630 -3.058115 0.295107 -10.166134 -10.837627 -0.520706 1.322966 -1.299157 2.770463 -1.794359 2.648277 -5.759871 3.612780 6.005412 -3.490969 -3.579155 0.365061 6.129671 1.774043 -2.800709 -1.637940 -1.660580 -2.182914 2.615197 8.911667 -0.773588 -9.777015 -11.659829 -2.845079 6.165567 -3.518428 -0.035810 -3.771637 -3.177812 -6.204445 0.292451 -5.330779 0.691982 0.268266 -2.011646 -7.908048 2.472773 -0.745112 -1.818289 1.553488 -6.668394 1.258849 4.789500 -0.342287 1.127308 1.041689 0.542198 -4.789452 -3.634734 3.324081 -4.169441 6.302465 4.194739 -0.588222 -2.445784 -3.055535 -5.825470 3.112593 -3.073896 4.175607 0.746351 -2.388648 2.725131 -6.373306 -0.825251 -3.897920 1.858750 0.234200 -6.669520 8.976923 5.826469 -4.153455 0.439820 -0.057214 3.954435 -0.356702 3.635356 -5.352931 -4.155981 0.941829 0.449913 -0.028022 -0.380389 1.641849 -2.727721 -2.263068 -5.225766 -1.451220 5.721828 3.117258 -0.870155 0.022553 2.308287 -4.614366 1.145916 5.107571 4.695813 0.899539 -5.054091 -11.553763 2.170547 -7.324779 -2.423038 -0.617470 -2.244979 -1.742805 2.557049 -1.986663 5.967630 -0.199178 -4.202790 6.152566 -8.741262 -6.729604 -6.157659 -2.161702 1.017612 -0.720693 0.854263 -3.471804 1.567106 -0.569004 1.838489 -3.035307 -4.519120 3.092516 3.394449 6.576853 -0.839555 -0.972780 7.014555 2.427522 -1.209273 -2.644499 0.330176 -4.581914 1.605005 -7.388109 -1.544710 1.638045 3.908825 -4.908284 1.203842 -1.614221 1.573471 1.584607 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 3.342012 -0.855454 -2.416217 6.356718 -0.142054 1.108721 1.232564 0.146390 0.315707 -9.108188 -3.615989 4.424532 1.548072 1.762246 -0.323329 2.857289 1.411429 1.906112 -8.008543 -0.609102 2.323170 0.181769 -0.060434 0.169251 -0.220894 -2.559591 3.054560 1.557493 1.065242 5.920180 -1.626772 3.858317 5.506455 -0.809485 0.554610 3.959959 0.299135 0.016566 -3.249978 -1.860042 6.692387 1.143056 0.137883 2.398218 -2.171085 6.355243 1.505077 6.940024 1.730587 -3.224486 2.983487 -0.413413 -2.648345 -0.921491 -4.803835 1.048759 2.799793 3.158600 -1.945578 2.444538 -0.879815 1.509396 2.478997 0.714329 5.757427 3.155664 4.503600 5.117842 5.218872 -5.056335 1.515322 0.831540 -0.576385 0.163753 4.586377 -4.298326 -3.118215 -1.228243 -0.013226 -5.741212 -1.366028 -0.437395 7.812055 -5.029893 -1.348310 0.386346 1.441050 6.256308 -2.651848 2.118474 -5.810536 -0.237778 -0.060343 6.989856 0.891419 0.697173 -1.707388 1.434100 -0.349174 1.067545 1.224088 -5.108894 -1.226762 -6.296651 -3.656561 -3.932870 1.064990 3.246761 -6.814461 -0.068526 -1.288357 4.134717 -9.172910 -0.616409 1.584867 2.954489 6.231222 3.124549 -2.551842 -0.135169 1.206562 1.414351 2.936524 -2.936880 2.347679 -2.013959 0.146913 1.070066 1.322029 1.301029 -7.519124 -2.398805 1.248873 -1.275185 1.491552 3.311574 4.014506 -1.528052 3.064310 -3.842505 4.239111 -6.794221 -2.421198 -1.308899 -5.488714 -3.300596 6.149011 4.193169 4.448413 -0.987670 -3.239100 -0.843011 -7.050589 -8.331121 -0.577003 0.565022 0.361509 3.245642 -1.521147 2.302695 -4.749512 2.116117 2.970199 -2.125355 -3.136559 0.021010 2.834356 0.654363 -1.664817 -2.210428 -0.344406 -0.958473 0.574049 6.859790 -0.993121 -8.224091 -9.074360 -3.039073 5.431775 -2.957478 0.232492 -3.114118 -2.100762 -4.882442 -0.326228 -4.154542 -0.162564 0.747817 -3.400577 -7.179045 3.170892 -1.167056 -2.025655 2.568249 -5.279056 0.887721 3.341941 1.648254 1.182548 0.489841 -0.299226 -4.925015 -3.585355 1.375287 -3.780032 5.554591 2.966605 -0.271256 -2.954760 -3.088270 -4.350462 3.628290 -3.875079 3.460248 0.161725 -0.746142 2.533502 -4.917248 0.663629 -3.732767 2.133094 1.395318 -8.526347 7.008120 4.397900 -3.363921 -0.115115 -0.925253 2.716870 0.794094 3.083538 -4.292371 -4.057463 1.566232 0.314205 0.045530 -1.573570 1.262025 -1.898690 -1.545054 -4.693377 -1.632931 4.264575 2.547314 -1.147501 -0.076409 3.691042 -2.147015 1.551824 4.982404 3.136861 0.036504 -3.297740 -11.276846 2.577841 -0.450653 -1.289256 0.445328 -3.961538 -0.814518 3.091728 -2.767866 4.984648 -0.052656 -1.612760 5.333908 -6.913565 -5.377469 -4.045298 -1.810326 1.253179 0.120532 0.864494 -2.259155 1.355290 0.053531 0.746543 -2.016803 -3.945215 1.075424 2.727224 5.915014 -0.731417 0.340911 6.080135 1.415671 -0.907187 -1.115427 0.029052 -2.052200 0.499259 -5.792155 -0.581975 1.946990 2.768470 -4.282970 1.336850 -1.545837 -0.171826 0.941690 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -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.751037 -0.973183 -0.476912 1.208125 0.307347 0.106507 0.081024 -0.192387 0.331013 -1.415694 -0.461346 0.818814 0.168157 0.041636 0.165192 0.562458 0.519360 -0.150517 -0.741821 0.143385 -0.107309 -0.468151 -0.617152 0.316824 -0.112230 -0.807031 0.940569 0.518334 -0.019211 0.767325 -0.332492 0.639489 0.725664 -0.193506 0.516296 0.632594 0.238348 -0.096705 -0.712938 0.034723 1.467434 0.185543 -0.075822 0.436238 0.130226 1.042437 0.111182 1.963642 0.880944 -0.294217 1.075036 0.116114 -0.286223 -0.073931 -1.395367 0.303148 0.567927 -0.168039 -0.676441 0.359720 -0.508831 0.333775 0.338926 0.561084 1.364791 0.360863 1.141282 0.822258 1.007686 -0.785105 -0.009527 0.604092 0.615519 0.460805 0.986416 -0.526831 -0.708394 -0.355147 0.098918 0.132213 0.054453 -0.404599 0.938504 -0.671286 -0.682216 0.225625 0.101991 1.028955 -0.672517 0.435465 -1.110218 0.090541 0.276671 1.261815 0.150174 0.359390 -0.281431 0.315216 -0.217918 0.471409 0.350617 -1.079409 -0.296334 -1.464856 -1.161378 -0.678165 0.135084 -0.011521 -1.319307 0.272752 0.071815 0.496181 -1.088751 0.061097 0.189181 0.224617 1.840866 0.409859 -0.314492 -0.238988 0.499411 0.468338 0.361723 -0.131223 0.387087 -0.893468 0.754458 0.311890 0.395830 -0.008438 -0.871962 -0.024013 0.305069 0.358153 0.054557 0.228502 0.503283 -0.869057 0.551174 -0.266827 0.754826 -1.287307 -0.613401 -0.811649 -0.729987 -0.328223 1.814192 0.642660 1.574391 0.235273 -0.737795 -0.114991 -1.403624 -2.051917 -0.311930 -0.154558 -0.214996 0.354739 -0.168934 0.388499 -0.548695 0.213160 0.605951 -0.688599 -0.497703 -0.101174 -0.272915 0.026332 -0.285423 -0.459764 -0.085910 0.168652 0.268081 1.155064 -0.074305 -2.281559 -1.238662 -0.574996 0.695398 -0.469608 0.255856 -0.175965 -0.449130 -1.214515 0.081248 -0.604514 0.059828 -0.216098 -0.775606 -1.036701 0.345087 -0.221148 0.078658 0.179859 -1.037420 0.314109 0.060129 0.341348 0.322314 0.401396 -0.254917 -1.162704 -1.036544 0.150531 -0.385272 1.567088 0.306811 -0.152020 0.129743 -0.601998 -1.038241 0.537859 -1.594644 0.400017 0.583187 -0.757445 0.318117 -0.831039 -0.482689 -0.631702 0.498500 0.072000 -0.673301 1.441218 1.080945 -0.927394 -0.318241 -0.302626 0.567192 0.079069 1.071456 -0.652145 -0.172444 0.215470 0.585006 -0.096888 -0.003287 0.449146 -0.129092 -0.099415 -1.081163 -0.691519 0.614030 0.748155 -0.133561 -0.347247 0.235938 -0.226123 -0.111324 1.039883 0.424862 0.326426 -0.691826 -2.199312 0.242630 -0.318666 -0.635533 0.565482 -1.093509 -0.249020 0.135781 -0.537895 0.979972 -0.288528 0.138372 0.933985 -1.120386 -0.959847 -0.642619 -0.608307 -0.113968 -0.209066 0.732534 -0.651843 -0.030493 -0.410527 0.315186 -0.762451 -0.281600 0.246922 0.347121 0.475943 0.069150 -0.019926 0.889597 0.433702 -0.252312 -0.416110 0.137222 -0.485498 0.615163 -1.153116 -0.309829 -0.099413 0.355004 -0.558513 0.225755 -0.094847 0.476508 0.033900 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 1.183229 -0.571596 -0.325520 1.726354 0.094314 0.251560 0.386282 0.550701 0.119419 -3.005939 -1.668598 0.948358 0.171372 0.081359 0.537526 0.615467 0.864733 0.452257 -3.355221 0.002855 0.755314 -0.059874 -0.129647 0.078923 0.118212 -0.944834 0.100876 0.661923 0.152241 1.802421 -0.678640 1.271456 1.534911 0.105986 0.685171 1.190527 -0.666785 -0.331781 -0.139744 -0.442718 2.546648 0.573104 -0.002873 0.883010 0.012281 1.964924 -0.341732 2.101717 0.908868 -0.795296 1.490613 -0.904219 -0.852580 0.210144 -1.922489 0.276084 1.164536 0.545997 -0.702779 0.945690 -0.819773 0.627057 0.575273 -0.471429 2.287347 1.039743 1.507853 1.501603 1.599842 -1.210897 0.470068 0.164977 0.253837 0.142748 0.454019 -1.084557 -0.401912 -1.798925 -0.062076 -2.232512 -0.094122 -0.579140 2.570929 -1.326645 -0.264759 0.381686 0.218927 1.878584 -0.865100 0.358073 -1.907241 0.074088 0.197629 1.628645 0.105439 0.398136 -0.313039 0.417108 -0.176075 0.470044 0.191518 -1.411010 -1.088873 -3.054501 -1.293390 -0.908832 0.457490 0.421038 -2.136789 0.447438 0.372310 1.063239 -2.607224 -0.342122 0.308617 0.689339 0.659898 1.037864 -1.251224 -0.611783 0.133750 1.077315 0.758169 -0.927595 0.696189 -1.748070 -0.064356 0.412023 0.865987 0.193378 -1.702960 -0.724870 0.461775 -0.155886 0.070722 0.989840 1.035343 -0.154480 0.975986 -1.189139 1.480467 -2.192320 -0.574781 -1.135812 -1.200381 -0.788504 2.871692 1.827936 1.275169 0.512878 -0.808280 -0.134200 -2.250465 -2.571931 -0.003020 -0.142200 0.713292 0.457068 -0.322768 0.488289 -1.253299 0.404636 0.381419 -0.946050 -0.755318 -0.487007 0.630167 0.166546 -0.697223 -1.008735 0.124856 0.601442 -0.645434 1.501860 -0.447804 -1.950936 -2.463708 -1.068850 1.574275 -0.895563 0.231263 -0.711661 -0.012000 -1.461119 0.086528 -1.268838 -0.167913 0.004494 -1.421938 -2.156557 0.624503 -0.334068 -0.214518 0.545867 -1.472837 0.339000 1.291484 1.324303 0.427300 0.543313 -0.145190 -1.484474 -1.550651 -0.134947 -0.985221 1.721611 1.197234 -0.305061 -1.052567 -0.828603 -1.456151 1.518180 -1.287264 0.932783 -0.015443 -0.991548 0.768164 -1.308693 -0.254634 -1.299926 0.578703 0.232033 -3.340750 1.944280 1.168433 -1.497862 -0.396325 -1.473512 1.062661 0.232702 1.494429 -0.867178 -0.514862 0.284987 0.078827 -0.004275 -0.753627 0.730037 -0.323374 -0.288967 -1.833370 -0.830644 1.797190 0.890242 -0.258010 0.365074 1.048209 0.305739 0.823667 1.733596 0.860769 -0.304234 -1.144707 -3.852876 0.565616 1.502375 -0.116845 0.348370 -1.552822 -0.821076 0.200244 -0.641547 1.600618 0.619475 0.008901 1.601127 -1.445702 -1.575741 -1.306203 -0.152682 0.250896 -0.468946 0.349374 -0.639909 0.235915 0.110094 0.655940 0.069970 -1.401346 -0.952604 0.613789 1.719243 0.200212 -0.049524 1.787320 0.595416 -0.678325 -0.387425 -0.062307 -0.585764 0.535901 -1.656433 -0.459799 0.108692 0.573545 -1.326585 0.634315 -0.036835 0.520187 0.283431 -PE-benchmarks/find-parity.cpp__main = 0.679004 -0.224011 -0.040991 0.829563 -0.342782 -0.053319 0.318633 0.703729 -0.162151 -1.861120 -1.099278 0.140290 0.157807 -0.091973 0.733762 0.550504 0.259158 0.186221 -2.688247 0.173673 0.940231 0.206000 0.322899 -0.041824 0.166994 -0.648955 -0.838008 0.388164 -0.011953 1.289570 -0.442024 0.863421 0.957038 -0.028614 0.128410 0.859939 -0.670644 -0.235413 0.485640 0.241011 1.503977 0.153479 -0.173015 0.072323 -0.039400 1.275832 -0.688181 1.373726 0.169665 -0.658500 1.373841 -0.780964 -0.818324 0.331194 -0.861835 0.143668 1.095253 0.971528 -0.319788 0.711867 -0.927570 0.309221 0.394379 -0.346101 1.689684 1.051205 0.978100 1.029790 1.094073 -0.666842 0.449398 -0.093952 -0.229199 -0.506619 -0.048507 -0.915040 0.399777 -2.494303 0.183012 -1.944500 -0.330713 -0.139774 1.985400 -1.014703 0.047664 0.686187 0.269694 1.499168 -0.594910 0.499422 -1.097936 0.074400 0.362775 1.108246 -0.243073 0.072055 -0.225158 0.314740 -0.111336 0.272528 0.138200 -0.614847 -1.691357 -1.853257 -1.107397 -0.366988 0.324753 0.429630 -1.894461 0.290721 1.259419 -0.187322 -2.000743 -0.085115 0.431850 0.853994 -0.121207 1.528291 -1.284697 -0.527136 -0.049691 0.982199 0.537693 -0.426196 0.538693 -1.733642 -0.084044 0.548290 0.502447 -0.119279 -1.377498 -0.537448 0.300419 -0.616688 0.135932 0.794373 0.757228 0.126993 0.643207 -1.035180 1.062192 -1.728245 -0.113451 -0.862293 -0.563274 -0.362759 1.443932 1.489189 0.065570 0.458909 -0.880135 0.034442 -1.540229 -1.097005 -0.342316 -0.223010 0.874797 0.133351 -0.263294 0.204119 -0.419492 0.476223 -0.269106 -0.720038 -0.354488 -0.559643 0.317019 0.204495 -0.564395 -0.940850 0.073114 0.581488 -0.981020 0.867450 -0.109541 -0.303909 -1.850759 -0.858502 1.098927 -0.435407 0.381099 -0.696068 0.286508 -1.145572 0.283022 -0.700702 -0.226466 0.254981 -1.001115 -1.426128 0.368724 -0.076128 -0.575252 0.148314 -0.839652 -0.013443 0.723912 0.648317 0.454349 0.307731 -0.159643 -1.034184 -1.323344 -0.307194 -0.684530 0.888899 0.993265 -0.111555 -0.836013 -0.463012 -0.887124 1.272240 -0.835790 0.554350 -0.202374 -0.670392 0.763237 -0.832330 -0.378212 -1.080346 0.355996 0.047576 -2.542830 1.514903 0.630450 -0.888465 -0.246413 -1.293792 0.749562 0.371084 0.983718 -0.343969 -0.061075 0.032465 0.084072 -0.055504 -0.490189 0.579749 -0.538972 -0.035624 -0.965255 -0.418780 1.223274 0.764722 -0.102990 0.706808 0.683471 0.439775 0.593035 0.829248 0.436126 -0.800607 -0.337438 -2.126337 0.420661 1.562827 -0.015155 0.358303 -1.160486 -0.569775 0.020247 0.217866 1.142910 0.959731 0.370485 0.941863 -0.782936 -1.118593 -0.859718 0.348928 -0.045383 -0.322778 -0.035090 -0.138716 0.189454 0.686619 0.479473 0.494546 -1.257687 -1.430363 0.188097 1.577856 0.265949 -0.306124 1.210408 0.397421 -0.334457 -0.377730 -0.044783 -0.177144 0.346391 -0.214237 -0.183423 0.086120 0.385525 -0.937805 0.597667 0.039799 0.039249 0.185384 -PE-benchmarks/birthday-paradox.cpp__main = 0.052016 0.096564 0.067602 -0.049789 -0.065423 0.096471 0.017946 0.129891 -0.215573 -0.431703 -0.413886 -0.443190 0.016375 -0.072316 0.296546 0.074602 0.160085 0.237849 -0.603927 -0.008129 0.271006 -0.068312 0.095339 0.181761 0.066542 -0.186118 -0.695613 0.099500 -0.095245 0.368563 0.061242 0.133116 0.302055 -0.094716 0.068209 0.350299 0.025536 0.007495 0.351365 0.162174 0.397916 -0.098608 0.033221 -0.224235 -0.058657 0.361723 -0.270931 0.174237 -0.153041 0.005487 0.333088 -0.670203 -0.075173 0.267607 -0.387701 -0.101612 0.217193 0.201828 -0.179062 0.263654 -0.254700 0.123394 0.056113 -0.290311 0.406312 0.095856 0.020296 0.169931 0.304606 -0.105315 0.121700 0.055291 -0.225240 -0.302612 -0.382933 -0.001415 0.503329 -0.924254 0.054851 -0.603148 -0.002794 -0.064693 0.500656 -0.187817 -0.044996 0.379491 -0.204622 0.365885 -0.159857 0.133636 -0.216304 -0.037404 0.103454 -0.059009 0.126052 0.031804 0.069348 -0.090915 -0.011357 0.022321 -0.332671 -0.124455 -0.709650 -0.620504 -0.313595 -0.045818 0.003141 0.019557 -0.391982 -0.176148 0.670903 0.094937 -0.337539 0.123976 0.081288 0.415666 -0.648142 0.293875 -0.645420 -0.151911 0.045603 0.325579 0.331712 -0.037436 0.060518 -0.514238 0.061723 0.104020 0.079030 -0.237436 0.024875 -0.297047 0.149977 -0.172858 -0.098910 0.120526 0.073947 0.187472 0.131728 -0.193082 0.299097 -0.369065 0.042823 -0.169766 -0.176843 -0.042688 0.630026 0.432682 -0.200606 0.150453 -0.252867 0.167065 -0.241489 -0.279637 0.040503 0.032562 0.356756 -0.074042 -0.134965 0.166026 -0.063892 0.160136 -0.170610 -0.196533 -0.103403 0.086845 0.163113 0.130069 -0.222570 -0.336783 -0.068797 0.238167 -0.433290 -0.017244 -0.129385 0.489280 -0.117965 -0.237592 0.325217 -0.094106 0.092961 -0.059280 0.155113 -0.406702 0.150951 -0.167780 -0.196741 0.102762 -0.344269 -0.288624 -0.111520 -0.014782 -0.204101 0.092226 -0.256947 0.036727 0.205087 0.110603 0.053763 -0.070046 -0.182173 -0.092143 -0.304451 -0.228219 -0.109154 0.112346 0.312166 0.030396 -0.274323 -0.017590 0.042469 0.327275 0.056506 0.137702 -0.127497 -0.303191 0.217630 -0.185633 -0.165416 -0.016304 0.115482 0.022585 -0.782511 0.197086 0.261900 -0.141405 -0.247795 -0.345421 -0.028856 0.075222 0.328011 0.015554 0.154897 0.059030 0.020039 0.012663 -0.081511 0.211966 -0.141611 0.038879 -0.389273 -0.029230 0.401458 0.229363 -0.033140 0.250862 0.285979 0.467104 0.271174 0.308399 0.001843 -0.459899 0.043899 -0.490136 0.101027 0.641142 -0.014128 0.147255 -0.012062 -0.040950 -0.139291 -0.020656 0.346699 0.512506 0.173072 0.227608 0.222002 -0.292375 -0.236316 0.291440 0.052678 -0.116856 -0.002818 -0.154211 -0.058173 -0.086609 0.075505 0.344134 -0.301686 -0.645845 -0.043100 0.310849 0.189490 -0.057261 0.289867 0.078236 -0.116100 -0.049419 -0.048278 0.176411 0.250098 0.088747 -0.205219 -0.027203 0.247150 -0.176461 0.230235 -0.038698 0.073051 0.223105 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.463732 0.083741 -0.193205 -0.677317 -0.299244 0.542272 -0.320671 0.206297 -0.304142 -0.620527 -0.602738 -0.300468 0.190122 -0.185196 0.392823 0.483878 0.610631 0.443871 -1.266131 -0.040141 0.238662 -0.457513 -0.195197 0.767580 0.321037 -0.370912 -1.134484 -0.138378 -0.414976 0.702198 0.775304 0.060534 0.612789 -0.997641 0.325038 0.904210 0.357873 0.297343 0.536799 0.237156 0.774191 -0.172197 0.255361 -0.719071 -0.370572 0.733478 -0.413961 0.831082 -0.050766 0.586233 0.498880 -0.855736 -0.284690 0.828707 -1.338655 -0.582741 0.065555 -0.297807 -0.587443 0.567464 0.039801 0.294433 0.086700 0.080064 0.882239 -0.393693 0.045682 0.352936 0.763308 0.067837 0.443459 0.354288 -0.682600 -0.738999 -0.217448 -0.196841 1.232817 -0.845755 0.378257 -0.878590 0.300825 -0.565010 1.025036 -0.313289 -0.350561 0.629115 -0.732503 0.971962 -0.335599 0.498466 -0.043428 -0.229453 0.160147 0.009899 0.309335 0.754464 0.344013 -0.596292 -0.295224 -0.304396 -0.834166 -0.530075 -0.874119 -0.711571 -0.414980 -0.341845 -0.240503 0.180459 -0.504012 -0.649555 0.984794 0.141790 -0.283174 0.732117 -0.078828 1.017693 -0.619732 0.814136 -1.367235 -0.203801 0.379400 0.834089 0.680002 0.167883 -0.159790 -0.452932 0.530772 0.534411 -0.106443 -0.751285 -0.019094 -0.763171 0.649139 -0.076938 -0.373768 0.408617 0.128448 0.008638 0.075198 -0.204035 0.480711 -0.623854 -0.623129 -0.116557 -0.180351 -0.092102 1.130364 0.288273 -0.464458 -0.041747 -0.251703 0.652526 -0.415861 -0.652976 0.210211 0.243814 0.124369 -0.073543 -0.334524 0.693953 -0.343208 0.575762 -0.320262 -0.445382 -0.346464 0.677619 0.167050 0.454205 -0.471614 -0.272982 -0.728445 -0.098960 -0.454960 -0.022508 -0.112718 0.401545 0.086768 -0.160138 0.774895 -0.173246 0.283002 0.197831 0.087123 -0.876873 -0.067425 -0.286636 -0.360442 0.274070 -0.691661 -0.271384 -0.686214 0.119476 -0.075789 0.100394 -0.837173 0.181853 0.030228 0.031844 -0.265567 -0.467839 -0.823269 -0.299982 -0.478796 -0.202285 -0.163821 0.626185 0.166482 -0.026260 -0.176414 0.309941 0.620958 0.145056 -0.177790 0.519141 -0.208814 -0.801508 0.318515 -0.368884 -0.454049 0.309767 0.347997 -0.200306 -1.072828 0.645480 0.851672 0.014165 -0.748857 0.122808 -0.525412 -0.119514 0.457662 -0.131765 0.070161 0.192620 0.095955 0.082535 0.324399 0.515627 -0.399458 0.179795 -1.169243 0.301007 1.071368 0.328412 -0.170910 0.325204 0.759159 0.596637 0.541475 0.920751 -0.016337 -1.032743 0.020411 -1.160423 -0.029390 0.827515 -0.571472 0.235354 0.581286 0.171039 -0.400609 -0.161832 0.775523 0.773995 0.707091 0.201153 0.650769 -0.724818 -0.645904 0.587363 0.152091 0.451865 -0.161658 -0.586258 -0.442960 -1.025946 0.172157 0.413199 -0.484115 -0.482648 -0.018773 0.462093 0.571911 -0.143169 0.446012 0.387523 0.187309 0.010767 -0.208423 0.589249 0.772698 0.147218 -0.455299 -0.044571 1.018715 -0.294903 0.617470 0.133855 0.680876 0.265740 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 1.233518 -0.157490 -0.278583 2.091563 0.229839 -0.232162 0.702694 0.724029 0.026695 -3.472392 -1.616788 1.151106 0.289597 -0.114751 0.124489 0.463661 0.733352 1.321480 -3.654439 0.050120 0.989626 0.528991 -0.107489 -0.759001 0.037696 -0.701057 0.138416 0.804317 0.358194 2.282087 -0.866847 0.849438 1.937784 0.122336 0.633031 1.770296 0.226338 0.034772 -0.178870 -0.566768 2.977017 0.887410 -0.067281 1.158691 0.188802 2.348391 0.370406 1.817598 -0.179121 -1.011791 0.741299 -0.881484 -1.052662 -0.298211 -2.025033 0.652159 1.995307 1.762267 -1.036222 1.441121 -0.441709 0.560724 0.891818 -0.447515 2.212560 1.308871 1.094581 1.763243 2.448657 -1.638017 0.385651 0.033012 0.571129 -0.287519 1.165940 -1.433642 -0.938067 -1.980311 -0.197324 -3.394589 0.042958 -0.053032 3.494725 -1.912391 0.364528 1.023018 0.603700 1.982392 -1.010125 -0.169365 -2.126698 0.075923 -0.459916 3.260295 0.349364 0.424987 -0.389664 0.812670 0.302149 0.686737 0.276299 -1.668810 -0.891720 -3.978592 -1.269892 -1.239050 0.043961 0.430375 -2.182941 -0.392485 0.732454 1.619527 -3.606953 -0.301098 0.757009 0.877673 0.616748 -0.219279 -1.306499 0.186569 -0.462501 0.390720 0.751762 -1.631233 0.226916 -0.790316 -0.426559 0.298524 0.760987 0.235598 -2.540685 -0.771344 0.126434 -0.445418 0.022401 0.781162 0.812211 -0.744180 1.066499 -1.979814 1.740069 -2.505489 -0.193148 -0.663661 -2.215793 -0.960400 2.392578 1.017965 1.105651 -0.158773 -0.905953 -0.453088 -2.460323 -3.452973 0.842206 0.147980 0.913617 0.515684 -0.473976 0.112038 -1.674718 0.028629 1.029965 -1.020463 -0.751902 -0.271286 2.270033 -0.151973 -0.825934 -1.267746 0.252444 1.080416 0.098822 1.458913 -1.069777 -1.894094 -2.871041 -1.282730 1.986850 -0.918474 0.048230 -0.788569 -0.294777 -1.693418 0.418122 -1.588707 0.555281 -0.155301 -1.208413 -2.768714 0.713570 -0.567636 -0.356082 0.808747 -1.765314 0.448025 1.170074 0.822620 0.021669 0.163443 0.578973 -2.033282 -1.754339 -0.001557 -0.810563 1.562476 1.285231 0.324960 -1.349782 -0.754890 -1.605147 1.526655 -0.951232 0.970857 -0.165928 -0.804663 1.514606 -1.553709 0.078569 -1.835266 0.760608 0.555603 -3.049776 2.856636 1.412638 -1.565787 -0.437250 -1.078932 0.839991 0.506489 1.898396 -1.600599 -1.348256 0.896431 -0.733507 -0.082349 -1.102436 0.724568 -0.397791 0.381183 -2.142820 -0.835869 1.613060 1.258840 -0.398490 0.848617 1.185340 -0.252432 0.289672 2.390436 1.010533 0.046831 -1.587313 -3.946758 1.000800 0.242087 0.298107 -0.144477 -1.069974 -0.887988 0.776078 0.073861 1.890621 1.481683 -0.617238 1.964491 -2.336513 -2.072108 -0.983292 -0.112176 0.992788 -0.905413 0.186002 -1.027663 0.489467 -0.048361 0.712516 0.251205 -1.501585 -0.834282 0.654224 2.102985 0.133829 -0.505566 2.441935 0.169695 -0.842754 0.067673 -0.339590 -0.009876 0.437071 -1.612412 -0.415387 -0.018648 0.994375 -1.544988 1.461481 -0.433541 0.266026 0.909091 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 4.564224 -2.111490 -3.981648 9.702071 -0.052100 0.787302 1.390436 0.257353 0.523203 -13.324320 -5.832988 6.652082 2.007731 0.972472 0.110301 3.457993 2.454827 2.906787 -13.681120 -0.319737 3.131065 -0.044275 -0.802820 -0.882917 0.020235 -3.463447 4.762748 2.138403 0.933335 8.089455 -2.535604 6.375136 7.422239 -0.217768 2.485681 5.092516 -2.604199 0.004349 -2.989562 -2.444218 10.076784 2.887211 0.406814 3.393197 -1.581668 8.460416 2.190851 8.451196 2.208049 -3.565496 4.270075 0.708244 -3.277261 -0.517271 -8.054040 1.282671 5.000085 3.627309 -2.520730 3.487654 -2.441832 2.544762 3.310600 0.384485 10.402965 3.689622 7.565276 7.569777 7.193625 -5.671072 2.750815 -0.179049 0.577166 -1.075058 6.905921 -5.726738 -5.446058 -1.366650 -0.998562 -10.247775 0.193116 -0.424463 12.300737 -6.431285 -1.945457 -0.158177 3.338892 9.277785 -3.821789 1.821544 -7.985822 0.072503 -1.511351 11.473737 1.729683 2.331133 -2.648732 2.459735 -0.675123 1.116040 1.670220 -7.078604 0.077187 -12.562099 -5.001244 -5.326971 1.776358 3.171354 -9.390150 0.871870 -1.792883 5.615219 -13.307292 -1.012543 1.474628 2.866312 7.841886 0.612563 -3.998461 -0.019749 0.125523 3.145213 3.294375 -4.853008 2.542608 -3.800160 -0.146742 1.433558 2.958335 1.795842 -10.394779 -2.635080 1.182454 -1.123856 1.410857 4.935884 5.791496 -1.599782 3.934862 -5.953053 6.119533 -9.767132 -2.318996 -3.408362 -7.915545 -4.177781 8.580994 5.880646 6.093353 -1.481723 -3.049171 -0.581870 -11.286493 -13.252873 0.530839 0.382103 0.509295 3.178269 -1.744352 2.275987 -7.048177 2.883247 5.681003 -3.772678 -4.103539 -0.850961 5.402126 1.077384 -2.997271 -2.742538 -0.849389 -0.297067 0.647352 8.983587 -1.692268 -12.174529 -13.243652 -3.797131 7.250304 -4.198931 0.271499 -4.262736 -1.911096 -6.445819 -0.251128 -5.895766 0.639068 0.476854 -4.015191 -10.102124 2.572112 -1.269632 -1.133425 2.444684 -7.344441 1.688138 6.198870 3.176062 1.052442 1.443302 0.676643 -6.326186 -5.176494 2.130083 -5.217337 6.578557 4.574791 -0.569526 -4.423452 -3.596284 -6.803585 4.338231 -3.993741 4.783320 0.073874 -3.098555 3.294266 -7.144523 0.883344 -5.120799 2.011632 0.615365 -13.231885 10.211911 5.349554 -5.376989 -0.084535 -2.630034 4.564110 0.012619 4.872464 -5.875162 -4.657003 1.413731 -0.734655 0.033542 -2.159878 2.153795 -2.319999 -1.941890 -7.341844 -2.825969 6.986488 3.335142 -1.307194 0.781740 4.013171 -3.220201 2.451334 7.339665 4.476457 0.394148 -5.721000 -17.345390 2.399946 -1.217574 -1.460627 -0.327288 -4.378704 -2.453394 2.882044 -2.850909 6.856801 1.361307 -3.189955 6.979537 -9.503484 -7.225040 -6.065438 -1.885404 1.980534 -1.050751 0.477705 -3.578070 1.543963 -0.246056 2.601067 -1.679817 -6.284849 0.893435 3.901179 8.002877 -0.600146 -0.455750 8.174715 2.381245 -1.764199 -1.709467 -0.591195 -3.511892 1.786613 -9.345518 -1.374524 1.746520 3.644075 -5.981250 2.522452 -1.610203 1.947699 1.541498 -PE-benchmarks/dfs.cpp__main = 1.578475 -0.551804 0.427746 2.100779 0.909137 -0.514247 0.824726 1.251220 -0.211040 -3.955973 -2.395897 -0.237041 0.032144 -0.500072 0.923193 0.109467 1.333163 0.966459 -4.336643 0.392829 1.116017 0.149821 -0.523757 -0.464886 -0.037618 -1.312644 -0.922028 1.791695 0.265425 2.559252 -1.169082 0.533919 2.122378 0.197623 1.452185 2.584892 0.486490 -0.178371 0.562497 -0.034232 4.264245 0.868937 -0.277241 1.120376 1.185037 3.008581 -0.451527 2.731423 -0.285101 -1.174685 2.096852 -2.244593 -1.019252 -0.268522 -2.908708 0.872675 3.289009 2.012252 -2.210207 1.889039 -1.057939 0.551373 0.931254 -0.576860 2.764932 1.665835 1.038797 1.768903 3.112074 -2.062405 -0.244616 0.853382 1.141388 0.077497 -0.336552 -1.809829 -0.197971 -4.402527 0.309298 -3.667621 -0.098771 -0.395495 3.597735 -2.014975 0.530502 2.057321 -0.200928 1.975732 -1.474524 -0.523562 -2.817447 -0.035246 -0.082312 3.210252 -0.000351 0.111837 0.626483 1.036879 0.368579 1.820334 -0.332562 -2.128714 -2.857306 -5.546151 -2.309153 -1.171724 0.204198 -0.163894 -2.615216 -0.829704 2.120881 0.663209 -3.478159 -0.276046 1.140199 1.275238 -0.731599 0.391831 -2.377883 -0.605501 -0.443094 0.699814 1.367497 -1.200302 0.259601 -2.313955 0.137101 0.517697 1.004615 -0.216407 -2.033859 -0.740088 0.304234 -0.510769 -0.553184 0.020334 0.232156 -1.103342 1.467347 -1.926013 2.489920 -3.401815 0.100493 -1.789881 -2.159941 -0.773590 3.324613 1.577885 1.267842 0.862972 -1.533725 -0.131628 -2.708222 -3.920172 0.666849 -0.015392 1.815652 -0.069226 -0.656505 0.347715 -1.196171 -0.551126 0.235047 -1.438470 -0.874140 -0.774493 2.366138 -0.128079 -1.006619 -1.832067 0.816064 2.248407 -0.804778 1.312475 -1.686943 -1.176049 -2.576101 -2.002681 2.244282 -0.960543 0.173482 -0.311996 -0.078426 -2.732113 1.115304 -2.096976 0.351915 -1.021018 -1.826842 -3.064315 0.906315 -0.926269 -0.029616 0.919233 -2.068335 0.560702 1.130219 1.693905 0.333576 0.423623 0.352514 -2.866377 -2.781345 -0.672334 -0.202202 2.427529 1.744633 0.337340 -0.904156 -1.023061 -1.773099 2.192265 -1.144334 0.794969 0.265160 -1.768750 2.152730 -1.564508 -0.505688 -2.295024 1.138107 1.139597 -3.270053 3.370131 1.884015 -2.307423 -1.208641 -2.203369 0.666817 0.884870 2.973189 -1.159952 -0.812455 1.186135 -0.311117 -0.231124 -1.500172 1.144641 0.003301 1.036860 -3.101602 -1.713202 1.912023 2.062946 -0.203660 1.279911 1.046799 1.050948 0.181673 3.483829 0.727928 -0.136790 -1.538240 -4.808014 1.468216 1.685907 0.458760 0.251551 -1.499830 -1.549316 -0.034477 0.776742 2.585701 3.003735 0.032631 2.626686 -1.904998 -2.671542 -1.389937 0.346493 0.948836 -1.706246 0.232768 -1.549452 0.520658 -0.416758 0.764904 0.885491 -1.378989 -2.862576 0.269088 2.027016 0.528167 -0.728865 2.921912 0.121508 -1.424577 -0.167040 0.047149 0.460690 1.415980 -1.054994 -1.152068 -0.778985 1.009563 -1.504219 1.569398 -0.183929 0.663211 1.454144 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = 1.830715 -1.012828 -1.117367 3.443143 0.298148 -0.075249 0.505213 0.337023 0.312216 -4.534303 -2.168615 2.152117 0.533323 -0.126878 0.290224 1.088040 1.244338 0.936803 -4.820651 0.293360 0.856453 -0.252424 -0.918706 -0.368397 -0.091901 -1.521259 1.583886 1.347436 0.233229 2.878875 -1.053672 1.782179 2.475458 -0.044644 1.553803 2.221686 -0.709000 -0.157596 -0.923627 -0.608002 4.142089 1.321425 -0.104917 1.329518 0.216187 3.320704 0.681792 2.926994 1.118561 -1.170047 1.696816 0.378116 -1.185493 -0.417933 -3.397886 0.494777 2.073823 0.939546 -1.628802 1.495376 -1.057813 0.834611 1.256091 0.382251 3.888761 1.060617 2.552672 2.654961 2.940578 -2.110869 0.646406 0.365506 1.029120 0.054312 2.097985 -1.895649 -2.063741 -1.765165 -0.258294 -3.547368 0.162294 -0.273874 3.924560 -2.341704 -0.407811 0.345436 0.683475 3.132178 -1.726239 0.000786 -3.080389 -0.062060 -0.387718 4.021958 0.574329 0.788960 -0.321353 1.194756 -0.242421 0.932333 0.348461 -3.032043 -0.383025 -5.404768 -2.148493 -2.021383 0.428945 0.528504 -3.244233 0.122121 0.058453 1.900212 -4.444746 -0.295349 0.698090 0.696747 1.996989 -0.462593 -1.361459 -0.111588 -0.039594 1.305602 1.405636 -1.494647 0.718850 -1.418795 0.325434 0.640729 1.217250 0.615603 -2.923277 -0.787674 0.718348 -0.012894 0.104569 1.344412 1.412991 -1.127460 1.501964 -2.089662 2.640454 -3.624202 -0.615946 -1.769399 -2.243984 -1.363101 3.150526 2.058703 2.393120 -0.145926 -1.039601 0.053231 -4.068217 -5.232526 0.467511 -0.011353 0.210196 0.697682 -0.605153 0.760552 -2.245774 0.510906 1.770089 -1.681079 -1.460345 -0.430851 1.625633 0.437851 -1.150945 -1.122839 -0.131911 0.628154 0.468759 2.914716 -1.049943 -4.424904 -4.239030 -1.541027 2.636899 -1.498397 0.084888 -1.087883 -0.881542 -2.449078 0.340445 -2.349672 0.290926 -0.527205 -1.475281 -3.551572 0.817522 -0.659757 0.137009 0.698500 -2.730234 0.772408 1.821942 1.222036 0.282898 0.712094 0.254403 -2.548568 -2.100222 0.631330 -1.227981 2.980987 1.716579 -0.100816 -1.476234 -1.217579 -2.491342 1.846267 -1.884242 1.651903 0.443418 -1.807158 1.579721 -2.285495 -0.246710 -1.787174 1.094326 0.407042 -4.113716 3.850927 2.566259 -2.438284 -0.363506 -1.173447 1.522087 0.238000 2.393787 -2.104994 -1.436126 0.692743 -0.048159 -0.081429 -0.850602 0.953995 -0.505537 -0.243041 -3.058242 -1.292876 2.607903 1.511775 -0.304601 0.248330 0.999210 -0.761197 0.424122 3.118429 1.483580 0.576435 -2.390850 -6.198805 1.038186 0.068812 -0.248344 0.346311 -1.617432 -1.177933 0.495183 -0.837063 2.737451 0.968775 -1.147577 2.737612 -3.276038 -2.917533 -2.415476 -0.649009 0.669248 -0.747781 0.814939 -1.591923 0.442535 -0.615994 1.126249 -0.691689 -1.650947 -0.120064 1.362075 2.471137 0.271125 -0.550704 3.074734 0.699949 -1.020946 -0.744963 -0.091937 -1.266213 1.068002 -3.067539 -0.921246 0.073540 1.475176 -2.098777 1.074429 -0.397080 1.269357 0.696284 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.482909 -0.658365 0.021920 1.013864 0.190104 0.367645 0.237082 0.176733 0.228794 -1.772281 -0.840110 0.383554 0.032786 0.258205 0.286972 0.230857 0.504516 0.248260 -1.609570 -0.169038 0.347729 -0.085182 0.268344 0.110267 0.031222 -0.572752 0.278623 0.448705 0.189595 0.958063 -0.365796 0.590133 0.869601 0.119459 0.206212 0.661508 0.045463 -0.201933 -0.400939 -0.302040 1.369538 0.159812 -0.131849 0.442024 -0.155544 1.069992 0.096653 1.305165 0.977454 -0.442134 0.783525 -0.942912 -0.443376 -0.040747 -1.110834 0.219465 0.584233 0.485457 -0.382797 0.447740 -0.384196 0.325439 0.248301 -0.403305 1.129050 0.396992 0.933040 0.819063 0.767320 -0.937964 0.062444 0.258125 0.154302 0.322905 0.334028 -0.730405 -0.134655 -1.394517 0.017088 -0.936188 -0.165265 -0.345200 1.137449 -0.681379 -0.244355 0.418585 -0.177027 1.011404 -0.380741 0.367440 -1.184188 0.077860 0.494288 0.806410 0.207683 -0.077079 -0.062625 0.173587 -0.056532 0.388598 0.433825 -0.721749 -0.720638 -1.671998 -0.698610 -0.537146 0.366651 0.240594 -1.107861 0.273973 0.407660 0.437328 -1.334294 -0.188548 0.281350 0.543369 0.547698 0.260286 -0.430296 -0.333711 0.278064 0.499610 0.564532 -0.696621 0.397151 -0.793704 0.179220 0.178810 0.435858 0.007523 -0.578577 -0.526118 0.219329 0.264708 0.107243 0.304404 0.545554 -0.102321 0.556074 -0.497464 0.820530 -1.100424 -0.168092 -0.439523 -0.399155 -0.487885 2.130271 0.782334 0.867314 0.387663 -0.638045 -0.077806 -0.987159 -1.564899 -0.034103 0.133812 0.400136 0.417808 -0.234942 0.470943 -0.569108 0.248385 0.002330 -0.471527 -0.442792 0.037192 -0.414245 -0.001392 -0.289213 -0.681771 0.249093 0.518569 -0.433723 0.919168 -0.236041 -1.200553 -1.116879 -0.699552 0.838340 -0.555765 0.138684 -0.265069 -0.084261 -0.804315 0.155223 -0.656680 -0.114184 0.122797 -1.105305 -1.212701 0.436067 -0.299528 -0.018012 0.645780 -0.878261 0.202373 0.189321 0.813392 0.270304 0.260082 -0.075285 -1.025545 -0.930080 -0.312807 -0.611959 1.090024 0.296124 -0.179197 -0.541927 -0.592685 -0.649115 0.829159 -0.829771 0.469629 -0.118768 -0.569828 0.277324 -0.645734 -0.029454 -0.729205 0.405280 0.399733 -1.570049 1.107945 0.789465 -0.691817 -0.297779 -0.692468 0.392587 0.154263 0.903582 -0.567365 -0.334491 0.213074 0.160968 0.003412 -0.406406 0.381252 -0.067465 -0.305188 -1.053107 -0.616403 0.666340 0.532799 -0.093279 0.217690 0.866630 0.441010 0.156797 1.057473 0.367855 -0.115164 -0.553793 -2.206753 0.460734 1.258707 -0.083860 0.475212 -1.114696 -0.299451 0.239488 -0.267066 0.817664 0.509740 0.200004 0.954672 -0.711649 -0.743027 -0.566211 -0.322146 0.161970 -0.243606 0.361623 -0.410557 0.095015 -0.113790 0.077148 -0.150498 -0.453226 -0.404882 0.328867 0.851833 0.195511 0.195401 0.935485 0.297666 -0.524841 -0.153223 -0.030300 -0.378582 0.392910 -0.759063 -0.128171 0.211319 0.271107 -0.604584 0.130574 -0.088936 0.032467 0.006279 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 1.513441 -1.916940 -0.318306 2.776331 0.736931 0.609798 0.412439 0.242941 0.945946 -4.332019 -1.267159 3.668668 -0.048118 0.396526 -0.302459 0.575996 1.498005 0.752786 -3.434363 -0.168257 0.016271 -0.113706 0.005370 -0.293757 0.099568 -0.948087 2.827986 0.922323 0.671805 1.906630 -0.907616 1.094411 1.804199 0.286037 1.030952 1.493743 0.321152 -0.570120 -1.843398 -1.711917 3.453478 0.738771 0.197447 1.963752 -0.007087 2.341881 1.415014 3.269275 3.922461 -0.718620 0.759856 -0.583819 -1.300512 -0.655001 -3.200791 0.527873 0.051916 0.286389 -1.129688 0.861662 0.168191 0.601000 0.618347 -0.301989 2.808075 0.103750 2.448989 2.263781 1.879867 -2.033501 -0.035673 0.720644 1.362307 1.706636 2.558593 -2.024190 -1.518319 -0.890580 -0.295710 -1.782411 0.046680 -0.995279 3.083922 -1.540022 -0.398852 0.158605 -0.230522 2.370336 -0.616565 0.193154 -2.964509 0.185238 0.997325 2.468778 0.561232 0.299620 -0.190489 0.266918 -0.371489 0.915816 1.591489 -2.263686 0.396954 -3.757108 -0.796302 -1.769731 0.414445 0.321759 -2.055734 0.695177 -0.770166 2.277383 -3.255101 -0.794490 0.496005 0.058697 3.022623 -0.419239 0.285196 -0.312257 0.530940 0.901143 0.766469 -1.875865 0.246877 -0.116636 0.320621 0.155575 1.054394 0.534171 -2.080568 -1.183352 0.670549 1.627743 0.178884 0.546416 1.075021 -0.902631 1.009649 -0.967732 1.629219 -2.040907 -0.932773 -0.707432 -0.673465 -1.385621 4.951137 0.863217 3.244893 0.379404 -0.496690 -0.376233 -2.413748 -4.433095 0.781267 -0.043951 -0.160404 1.306245 -0.255816 0.908762 -1.734886 0.095177 0.787826 -1.063084 -1.163581 0.099660 -1.907921 -0.251189 -0.329122 -1.095098 0.399390 0.933945 0.497173 2.416520 -0.888681 -5.653437 -2.720483 -1.252742 1.795727 -1.415443 0.118070 -0.210731 -0.895891 -0.713134 -0.206689 -1.707845 0.340413 -0.293303 -2.113373 -2.715673 0.903905 -0.871300 0.633595 1.358064 -2.041879 0.799996 -0.113621 1.798495 -0.029309 0.633166 -0.030919 -2.743300 -1.738524 -0.080834 -1.149800 2.762484 0.207107 -0.212652 -1.661381 -1.219903 -1.844534 1.279245 -2.983231 1.325109 0.249632 -1.455857 0.643667 -1.406297 0.664493 -1.352639 1.199361 0.941458 -4.000502 2.786194 2.152289 -1.788431 -0.519704 -0.643938 0.672555 0.300936 1.935997 -1.952827 -1.463506 0.779343 0.110932 0.011922 -0.791507 0.637564 0.228160 -0.388451 -2.913846 -1.665291 1.351739 0.868542 -0.217814 -0.240495 1.607844 0.016442 -0.175467 3.069772 1.066130 1.184892 -2.191316 -5.920744 0.949124 2.283152 -0.079240 1.393565 -2.315892 -0.658478 0.756481 -1.654297 1.711556 -0.781963 -0.095108 2.006088 -2.709069 -1.690841 -1.146979 -1.474608 0.716047 -0.088111 1.477437 -1.143800 -0.043050 -1.160803 0.344396 -1.414923 -0.206270 1.026943 1.335201 1.569041 0.866577 0.513334 2.001626 0.492598 -1.146468 0.027805 -0.201708 -0.960104 0.707288 -3.505310 -0.153085 0.395234 0.777598 -1.346361 0.442410 -0.053594 0.781436 -0.470207 -PE-benchmarks/partition-problem.cpp__main = 1.519371 -0.638177 -0.871507 4.423817 -0.027343 1.171087 0.839135 0.210355 0.365001 -6.541427 -2.631155 3.168076 0.581612 1.098895 0.071853 1.049028 1.201467 1.454693 -6.538442 -0.771783 1.816491 0.515339 0.844974 -0.221271 0.126739 -1.459025 2.609684 1.277512 0.819346 3.924649 -0.953791 2.906090 3.550614 0.175312 0.464864 2.358322 -0.801530 -0.176802 -2.238816 -1.835723 4.527286 0.676706 0.137949 2.203918 -1.357524 4.149812 1.169048 2.513711 2.731108 -1.957127 1.371611 0.513200 -1.488125 -1.065183 -3.276776 0.329830 1.500078 1.844253 -0.962857 1.432752 -0.146805 0.842848 1.391453 -0.296439 3.867397 1.729323 3.161745 3.780908 2.940680 -3.248057 1.027566 0.008234 -0.623721 0.300074 2.603372 -2.594390 -2.090533 -1.476123 -0.849379 -4.682340 -1.186795 -0.607290 4.171456 -2.764455 -0.729798 -0.438950 0.614919 4.147541 -0.976280 1.127638 -3.983829 -0.275873 0.507435 3.670638 0.718198 0.227499 -0.757458 0.682531 -0.308439 0.678921 1.389611 -3.275021 0.237992 -4.602604 -1.755247 -2.574824 1.393621 2.177704 -3.968600 0.610447 -1.417977 2.632383 -6.123224 -1.214070 0.695069 1.919993 2.431999 -0.070729 -1.259413 -0.411481 0.837235 1.226141 1.837608 -2.470131 1.556851 -1.106437 -0.731912 0.440333 1.211276 1.119951 -3.786541 -2.541227 0.721350 0.073505 1.027523 2.475028 2.777332 0.162839 1.761650 -2.702608 3.138093 -3.732116 -1.145125 -0.830518 -2.066072 -2.425143 3.722164 2.463156 2.395672 -0.532410 -1.746472 -0.136755 -4.095164 -5.266559 0.233136 0.584659 0.366718 2.431653 -1.063076 1.756050 -3.478188 1.574118 1.877705 -1.121506 -2.032051 -0.025436 -0.046496 0.610631 -1.059963 -1.157917 0.170509 -0.591557 -0.066583 4.519808 -0.701706 -4.553424 -6.045244 -1.940137 3.550390 -2.219470 -0.332520 -2.093895 -1.130445 -2.445894 -0.221802 -2.884069 -0.292273 0.574190 -2.595359 -4.806331 1.962370 -0.900387 -0.578789 2.093004 -3.382210 0.523996 1.921865 1.544646 0.649616 0.488780 -0.203489 -2.678626 -1.967835 0.616795 -2.675858 2.805072 1.459202 -0.290532 -3.046507 -2.099497 -2.254168 2.533809 -1.696227 2.650527 -0.155628 -0.921884 1.286460 -2.871612 0.638847 -2.113353 1.092607 1.134795 -6.339967 3.926065 2.101874 -2.157153 -0.175025 -0.866505 1.662471 0.188112 1.627136 -2.867632 -2.741494 0.851391 0.155068 0.227449 -1.575095 0.637702 -0.713190 -1.400103 -3.388234 -1.415046 3.255100 1.156397 -0.713593 0.422693 3.048127 -1.145651 1.041604 3.410441 2.535669 0.271883 -2.183885 -6.770136 1.564971 1.158634 -0.076200 0.094940 -2.897958 -0.986045 1.992336 -1.541521 3.052120 0.056701 -1.389882 3.448713 -4.030270 -3.110346 -2.945789 -1.365297 1.082002 0.236573 0.359282 -1.016100 0.823371 0.248584 0.337292 -0.977460 -2.603188 0.843418 2.000807 4.016073 -0.279791 0.609364 3.772400 1.206674 -1.238085 -0.544848 -0.099047 -2.117510 0.175299 -4.442294 -0.316457 1.561404 1.646045 -2.856240 0.462014 -1.003916 0.090023 -0.071098 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 1.480192 -0.197355 -0.761913 2.555972 -0.166739 0.272804 0.675638 0.347798 0.033995 -3.909689 -1.547112 1.659874 0.557615 0.530851 0.069902 1.178086 0.571231 0.913141 -3.645851 -0.111491 1.205261 0.163344 0.196247 -0.152897 0.025505 -1.161246 0.732438 0.710759 0.430841 2.730032 -0.820084 1.613994 2.383006 -0.093795 0.423228 1.865921 -0.023107 -0.008394 -1.009619 -0.708606 2.897695 0.607189 0.016128 0.899153 -0.796614 2.825944 0.312939 2.633281 0.531008 -1.442159 1.427844 -0.569590 -1.242422 -0.204516 -1.996755 0.427252 1.167685 1.452078 -0.809889 1.236754 -0.699905 0.767656 1.022940 0.102707 2.525800 1.475430 1.554475 2.213574 2.330779 -2.162051 0.667100 0.284706 -0.297814 -0.224543 1.657337 -1.593003 -1.135330 -1.134342 0.001286 -2.638193 -0.707500 -0.120391 3.386117 -2.256502 -0.305428 0.500684 0.671517 2.707386 -1.138433 0.819580 -2.456992 -0.054998 0.049333 2.975720 0.337148 0.397382 -0.660851 0.600986 -0.016436 0.558000 0.417970 -2.106867 -0.972854 -2.766003 -1.490768 -1.629978 0.517879 1.300759 -2.994288 -0.009103 0.166304 1.932438 -4.053362 -0.205436 0.754965 1.378817 1.972377 1.297478 -1.064248 -0.018618 0.360689 0.736125 1.233073 -1.488123 0.911791 -1.024753 -0.148317 0.464051 0.776694 0.374909 -3.220837 -1.066151 0.646853 -0.721423 0.558239 1.528003 1.597007 -0.496650 1.286302 -1.900647 1.984976 -2.822723 -0.829495 -0.764283 -2.220204 -1.376113 2.795408 1.873951 1.626751 -0.242162 -1.337519 -0.321729 -2.955158 -3.518074 -0.085351 0.176900 0.540594 1.258296 -0.634790 0.834563 -2.024869 0.917741 0.896662 -1.079392 -1.255353 -0.068577 1.202898 0.276543 -0.877802 -1.129710 -0.039176 -0.154885 -0.047579 2.685913 -0.516670 -2.861366 -3.870618 -1.553446 2.430339 -1.257326 0.063975 -1.362738 -0.661600 -1.949224 -0.040915 -1.836890 0.198301 0.370348 -1.353142 -3.170165 1.329517 -0.531760 -0.806648 1.062846 -2.141732 0.294918 1.294369 0.423730 0.470833 0.356927 -0.019062 -1.902358 -1.581400 0.466161 -1.541377 1.902104 1.422357 -0.011117 -1.316797 -1.348418 -1.821611 1.725754 -1.612366 1.493553 -0.052512 -0.467700 1.350691 -1.990093 0.095770 -1.709425 0.979432 0.643845 -3.482438 2.754553 1.728845 -1.574767 -0.182339 -0.749769 1.155576 0.574530 1.630503 -1.635618 -1.608847 0.697847 0.005605 0.012583 -0.610310 0.661531 -0.898116 -0.410020 -1.964797 -0.639052 1.946568 1.241323 -0.449785 0.304437 1.626631 -0.621800 0.841575 2.037578 1.383021 -0.137324 -1.561897 -4.660850 1.205326 0.098786 -0.251032 0.121043 -1.745434 -0.553111 1.291753 -0.785302 2.223749 0.352767 -0.652560 2.320301 -2.832666 -2.425215 -1.741949 -0.524323 0.533369 -0.225347 0.158545 -0.799502 0.653056 0.286338 0.472396 -0.361160 -1.720954 -0.084978 1.072298 2.688342 -0.104399 0.002664 2.743422 0.646289 -0.535070 -0.489606 -0.000119 -0.778580 0.140479 -2.282748 -0.364785 0.688117 1.223926 -1.908587 0.814239 -0.504743 -0.187017 0.500424 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 5.019019 -0.965291 -5.103786 10.962749 -0.936819 2.553813 1.313185 -0.904297 0.911506 -13.666727 -4.180970 9.684511 2.541870 2.911988 -0.627173 5.582237 2.145553 1.981135 -10.352229 -0.877765 3.211983 -0.983392 0.061677 0.320816 -0.105188 -4.666894 7.996308 1.563857 1.728974 9.203278 -2.148275 7.824546 8.312306 -0.692767 2.196501 5.393555 -2.065762 0.051869 -7.155185 -4.148118 9.393102 2.153262 0.598436 3.435180 -4.574466 9.812318 2.377362 8.568049 4.106519 -4.812261 4.307126 4.059845 -3.578078 -1.127241 -7.554618 0.865959 0.528083 1.909291 -2.150196 2.615413 -2.498948 2.980981 3.575510 2.906980 9.611733 3.498054 7.521074 9.435055 6.558896 -7.856462 2.955642 1.266097 -2.020608 0.142708 9.383235 -4.539630 -6.719264 3.216205 -0.946094 -5.572462 -2.487319 -0.643883 11.455225 -7.498723 -3.366298 -1.750801 3.417414 10.601739 -3.752708 4.354678 -8.743732 -0.630989 0.022333 9.521920 2.080922 2.140262 -3.304547 1.646374 -1.729991 1.032028 2.669871 -8.693172 1.310928 -6.322759 -4.757984 -7.038288 3.479630 5.939159 -10.254694 1.785696 -3.292215 8.307342 -13.804698 -0.647307 1.418045 3.966148 12.202130 3.836630 -1.432521 0.263590 3.050016 2.938954 4.199077 -4.409467 4.053495 -1.501284 0.109654 1.230664 3.153133 2.676393 -12.117262 -3.834305 2.969140 -1.637648 3.075362 6.958150 7.597406 -1.937532 4.343813 -5.188103 6.951571 -8.987309 -4.296038 -3.042511 -6.949851 -5.796340 8.417271 6.980293 8.312065 -2.141238 -3.727561 -0.576102 -11.477361 -12.246330 -1.513443 0.961475 -1.595527 6.294649 -2.108852 4.759251 -8.528955 5.630591 5.235383 -3.796702 -5.523620 0.827307 1.299101 1.873881 -2.874596 -2.305954 -1.565813 -4.840102 1.652476 12.458440 -0.210431 -14.652252 -15.561782 -4.480536 8.467322 -5.436884 0.069685 -5.367228 -3.996582 -5.134172 -2.065498 -6.877242 1.002863 1.722332 -3.472338 -10.960227 5.128880 -1.508968 -2.782485 3.795213 -8.031320 1.453495 4.854856 -0.596157 1.542113 1.991945 -0.999850 -5.409569 -3.420515 4.201904 -6.990157 6.795455 4.697681 -1.316309 -4.456081 -5.709934 -6.691570 4.506057 -6.438721 6.637986 0.829606 -1.472474 2.655036 -7.995029 0.703053 -4.781540 3.212565 1.641628 -12.028979 8.254254 6.300977 -5.082709 0.738653 -0.133222 4.907171 0.464349 3.860821 -6.265010 -6.162141 1.433892 1.461222 0.445105 -0.131364 1.390961 -3.444198 -3.941954 -6.517538 -1.776807 7.561856 2.906390 -1.486193 -1.241894 5.761594 -5.233410 3.790528 6.109896 6.712817 1.270099 -6.559227 -16.566629 3.462062 -3.863643 -2.587588 0.279078 -5.592065 -1.221807 5.050622 -5.519322 7.366483 -4.187878 -3.863365 8.083533 -11.385089 -8.260161 -7.648105 -3.913929 0.950872 1.085330 0.999276 -2.547865 2.010254 0.140319 1.375338 -4.497009 -5.265139 5.291112 5.415305 9.465568 -0.741248 1.460466 8.863984 3.991228 -1.269560 -2.733996 0.779219 -6.060280 -0.116365 -12.394978 -1.085828 4.164391 4.483185 -6.952489 0.248094 -1.585220 -0.120497 -0.155035 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 1.331570 -0.749393 -0.731150 2.623861 0.031229 0.112486 0.529016 0.510685 0.151429 -3.776409 -1.828196 1.563240 0.452857 0.150411 0.318372 0.791850 0.766675 0.873199 -4.059327 0.013658 0.880816 0.035511 -0.231642 -0.407013 -0.020446 -1.012890 1.054442 0.975953 0.265702 2.373334 -0.748168 1.438690 2.005723 0.003751 0.676409 1.641417 -0.496342 -0.171931 -0.789698 -0.702662 3.088549 0.858445 -0.122005 1.113500 -0.223174 2.548857 0.494735 2.204568 0.875029 -1.040166 1.270367 -0.153878 -1.131155 -0.368865 -2.383596 0.378173 1.615933 1.212766 -0.853201 1.242411 -0.920318 0.606167 0.963012 -0.121578 2.900234 1.071004 2.080219 2.107551 2.245753 -1.871839 0.578546 0.228948 0.420137 -0.028251 1.511470 -1.675313 -1.291902 -2.009570 -0.217323 -3.193902 -0.142720 -0.219123 3.515371 -1.855934 -0.383369 0.390330 0.609680 2.505700 -1.291885 0.441247 -2.337596 -0.032234 -0.151697 2.990318 0.444739 0.429790 -0.391767 0.805281 -0.073800 0.672656 0.471561 -1.980765 -0.521907 -4.049509 -1.515319 -1.392218 0.418524 0.649316 -2.578242 0.204148 0.315825 1.386870 -3.634979 -0.438676 0.681433 0.949492 1.474962 0.087222 -1.214993 -0.170524 0.097793 1.010182 1.209235 -1.490477 0.773534 -1.057797 0.056266 0.461110 0.912439 0.500368 -2.512688 -0.991110 0.475078 -0.106057 0.332907 1.128849 1.343083 -0.489924 1.183572 -1.775751 2.065763 -2.920915 -0.454464 -1.043184 -1.738356 -1.137930 2.899075 1.761450 1.624131 -0.101473 -1.028430 -0.075536 -2.914985 -3.723711 0.317721 0.258203 0.382453 0.711044 -0.490944 0.654894 -1.748211 0.545964 1.186200 -1.158830 -1.084246 -0.180288 1.165565 0.354860 -0.859650 -1.195464 0.099114 0.467694 0.086815 2.249959 -0.620453 -3.166922 -3.396186 -1.269484 2.166903 -1.110199 -0.029414 -0.995772 -0.661681 -1.732286 0.228722 -1.719639 0.170860 0.108267 -1.638988 -2.926763 0.835749 -0.408382 -0.387415 0.828188 -2.075710 0.429406 1.341590 1.114352 0.233627 0.491135 0.212766 -2.125417 -1.837220 0.227047 -1.198899 2.219052 1.338015 -0.080973 -1.492135 -0.969028 -1.762115 1.641201 -1.426177 1.335221 -0.105376 -1.130651 1.173624 -1.909610 0.054753 -1.668898 0.780884 0.424142 -3.907412 3.109372 1.879238 -1.667668 -0.285170 -1.006874 1.107310 0.229662 1.770437 -1.733780 -1.279059 0.552852 -0.051899 -0.037670 -0.822920 0.701148 -0.499111 -0.512559 -2.233043 -0.998691 1.975577 1.142695 -0.273669 0.407754 1.252402 -0.412068 0.364968 2.411884 1.266223 -0.034191 -1.671670 -4.889343 1.003425 0.763660 -0.281509 0.265002 -1.632399 -0.914235 0.726481 -0.595502 1.967512 0.973229 -0.751136 2.127543 -2.414960 -2.161287 -1.763497 -0.386159 0.593202 -0.506144 0.515397 -1.090975 0.422316 -0.124185 0.629834 -0.478367 -1.458694 -0.294028 0.934844 2.274031 0.198704 -0.213920 2.508783 0.615878 -0.808456 -0.515730 -0.185313 -1.013751 0.647265 -2.123335 -0.426618 0.357209 1.122800 -1.710145 0.814915 -0.229138 0.488355 0.517882 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 8.715758 -4.394470 -8.614422 24.728845 -1.170680 3.649255 3.962311 0.071074 1.041775 -33.759376 -13.023248 17.821943 5.357605 4.263197 -1.907408 7.971295 5.372021 9.205523 -33.013013 -2.496149 8.807601 2.589719 1.672383 -3.840707 -0.230477 -7.392566 16.351875 5.224880 3.962940 21.174139 -4.806313 15.354922 18.624960 -1.299520 3.102731 13.299556 -4.866917 0.541813 -12.022844 -8.549084 23.993625 5.278115 1.998159 10.569699 -6.915662 21.829762 8.577663 14.785271 12.515199 -9.824114 8.313660 9.126000 -8.222750 -6.430328 -18.834688 2.540659 9.796841 10.682920 -4.838717 8.125359 -2.394560 4.305818 8.686641 1.077705 21.172373 9.195987 16.802913 20.433404 17.841318 -16.747892 6.007255 0.041442 -1.286726 -0.363982 19.039287 -17.470494 -15.510377 -5.932795 -6.168343 -26.576873 -1.441013 -0.537568 28.849747 -16.134448 -4.305667 -2.378826 7.090351 21.661519 -7.331614 4.010164 -20.012146 -1.307891 -2.153877 24.878149 4.706998 3.413766 -5.438311 5.103606 -1.763664 2.960054 7.104672 -18.440285 4.343080 -27.299138 -11.049761 -14.745339 5.804798 10.698166 -20.913169 2.105714 -7.789794 12.034194 -34.105710 -4.266298 4.652471 9.301669 18.175877 -2.451116 -8.089161 0.642005 2.339053 6.373935 9.442102 -13.272578 6.603527 -2.096449 -3.149168 2.160491 6.017229 5.686136 -23.182815 -11.095108 1.133691 -0.277681 5.663227 12.193653 14.816711 -2.864758 9.369093 -14.839649 16.900516 -22.666711 -6.653434 -5.291211 -15.286250 -12.721077 18.856596 11.167484 14.401945 -7.183271 -8.899222 -1.036858 -24.702477 -28.262505 2.463841 2.833630 -0.589293 12.128876 -5.125678 7.718896 -18.248581 8.234023 14.052674 -7.034069 -10.358306 1.230264 7.201413 2.878267 -6.010097 -7.660739 -1.332114 -3.608053 5.200104 23.604859 -4.293967 -29.826520 -33.034406 -8.949481 19.067086 -11.462793 -1.558239 -10.901105 -7.952520 -11.931403 -1.241909 -16.610694 -0.155490 2.650792 -12.310888 -25.398226 10.021330 -4.055009 -3.127212 9.364813 -18.434858 3.457090 12.067703 8.696934 2.107139 1.523605 1.113970 -17.220344 -11.260895 5.620634 -13.479505 15.566635 9.023778 -0.163125 -15.378266 -9.563048 -13.486480 9.559261 -8.246975 13.242901 -0.436385 -5.336602 7.747666 -17.757463 6.436226 -13.094306 4.894437 4.329755 -35.213849 24.923780 13.195155 -11.209689 0.705824 -1.688445 9.117371 -0.307431 8.172890 -16.155634 -16.084639 5.085111 -1.322644 0.754163 -7.337021 3.205731 -5.742615 -6.874417 -17.998878 -6.938764 16.935184 7.211291 -3.636161 0.973122 12.937219 -10.241029 2.470151 18.688673 14.280898 2.958165 -14.126266 -39.255695 7.865631 -0.020181 -1.670215 -0.335437 -11.713400 -5.109798 11.549332 -6.883598 16.279833 1.292466 -10.066228 17.961556 -23.900505 -17.796909 -15.220279 -6.555685 7.500408 -0.319042 0.726377 -9.206379 4.558739 -0.715683 3.206948 -6.891667 -12.983350 8.758662 11.403487 22.285413 -0.785347 1.354408 21.127960 5.785594 -5.416260 -3.050206 -0.571406 -11.218970 1.904589 -22.940908 -0.976383 7.778964 10.524472 -14.770110 4.546945 -5.813977 1.866890 2.200429 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 8.103737 -4.791030 -9.269005 24.126625 -0.810569 4.164546 2.989253 -1.746117 1.257596 -31.483991 -11.266367 19.474146 5.191245 4.535275 -2.739134 8.228261 5.646552 7.960755 -28.967145 -2.599016 7.022553 1.563190 0.630469 -2.893976 -0.359696 -7.087408 19.132128 4.394434 3.807761 19.231723 -4.293598 15.408996 17.149011 -1.609828 3.539667 11.730810 -5.013668 0.462636 -13.435832 -8.964963 22.473024 4.179333 3.189992 10.593798 -6.841668 20.155722 9.244834 14.378593 14.589514 -8.764155 7.692927 12.137383 -7.088508 -6.322158 -18.618488 2.146320 6.820539 7.836308 -4.559934 6.642694 -1.209552 4.186342 8.041140 2.597597 20.238343 7.440472 16.747257 19.671539 15.980495 -15.484269 5.729827 0.349477 -0.842632 0.920341 20.122495 -16.529567 -15.929059 -0.827380 -6.569682 -22.406754 -0.417870 -0.837467 26.850252 -14.551160 -5.553573 -4.337171 6.763529 20.483631 -6.310791 4.092495 -18.944055 -1.269581 -1.990022 22.509910 4.751766 3.763055 -5.640372 4.272775 -2.794028 2.354363 7.225481 -18.166735 7.379795 -24.207926 -10.464113 -14.533028 5.858638 10.081107 -19.260740 2.918731 -10.693269 12.025482 -31.446752 -4.225397 3.464940 7.631956 19.926511 -2.799392 -6.155851 0.348521 3.164748 6.407598 8.276277 -11.480351 6.408157 -0.972401 -2.623961 1.695520 5.946086 5.890371 -21.736038 -10.391491 0.980209 0.978688 5.548032 11.635643 14.623670 -2.966199 8.635484 -12.690223 15.380688 -20.569265 -7.639122 -5.326213 -14.050568 -12.354402 17.329583 9.844630 15.812511 -7.451812 -7.758384 -0.854513 -23.759443 -26.628987 1.927201 2.154593 -2.829813 12.669695 -4.595783 7.916952 -17.782997 8.063017 14.961154 -6.559867 -10.379560 1.189313 4.165949 2.822804 -5.347090 -6.406766 -1.844162 -5.362877 6.374204 23.367714 -3.457525 -31.752596 -31.557370 -7.656047 17.464235 -11.228700 -1.246324 -9.933291 -8.534402 -10.205130 -2.335093 -15.783473 -0.459721 2.138830 -11.032492 -23.411574 9.446896 -3.773683 -2.568554 8.591858 -17.635023 3.801760 11.278567 7.667000 1.878823 1.718560 0.286942 -15.911908 -9.681331 6.571123 -13.054068 14.599637 8.006677 -0.548216 -14.404777 -9.421460 -12.867335 7.456315 -8.930505 12.918164 1.088119 -4.966724 5.903076 -17.208855 7.022493 -11.023562 4.415126 3.639326 -34.166030 22.812292 12.529676 -10.664408 1.135308 -0.141087 9.039605 -1.440914 6.706492 -15.452384 -15.017366 4.470382 -0.313133 0.882938 -6.205993 2.518528 -4.966591 -7.452523 -17.159093 -6.808636 16.059194 6.074063 -3.451759 -1.068913 11.826794 -11.362689 2.254214 17.534046 13.951584 4.563337 -13.622411 -37.591002 6.586436 -1.793244 -2.471537 0.429056 -10.793008 -4.143095 11.052874 -8.715285 14.984200 -2.797576 -9.840676 16.666603 -23.092969 -16.403908 -14.594081 -7.790417 6.728756 0.737334 1.344724 -9.017216 3.670973 -1.882567 3.161733 -8.773134 -11.166866 11.776044 11.645047 20.445457 -0.831055 2.348028 19.192985 5.993858 -4.503466 -3.063776 -0.110414 -11.582523 1.867891 -24.456976 -0.909678 7.810356 9.812556 -13.824419 3.138012 -5.779620 2.829705 0.976218 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 1.265914 -0.439284 -1.229621 3.398060 -0.173605 0.503906 0.567145 0.244617 -0.072559 -5.132197 -2.194709 1.776216 0.855561 0.761213 0.167063 1.198326 0.698203 1.205885 -4.762797 -0.338960 1.540700 0.406399 0.159816 -0.066923 -0.032661 -1.172538 1.279685 0.565295 0.481694 3.163369 -0.785669 2.469207 2.820038 -0.360187 0.324797 1.868518 -0.417578 -0.042024 -1.185704 -0.729161 3.645510 0.569853 0.150562 1.318363 -1.060078 3.162214 0.395643 2.630710 0.494879 -1.589003 1.582088 0.116218 -1.071652 -0.446867 -2.618965 0.583349 1.875836 1.886484 -0.720191 1.251622 -0.626234 0.608509 1.234831 -0.122848 3.377333 1.831642 2.506300 3.005301 2.693605 -2.248070 0.966672 0.001309 -0.581749 -0.354620 2.191055 -2.060468 -1.410220 -1.457721 -0.608757 -3.832896 -0.430910 -0.268804 4.251456 -2.443713 -0.550981 0.119788 1.025336 3.295231 -1.212861 0.879985 -3.001463 -0.269822 -0.175076 3.355627 0.493829 0.474227 -1.033989 0.832104 -0.196942 0.362308 0.733844 -2.419144 -0.483486 -3.771898 -2.046240 -1.752521 0.660046 1.684743 -3.584919 0.161092 -0.716036 1.869394 -5.127721 -0.409497 0.542509 1.675502 2.802220 0.832329 -2.006048 -0.202656 0.404682 0.804565 1.251570 -1.640572 1.266351 -1.556927 -0.372358 0.418267 0.834374 0.632836 -3.647280 -1.458309 0.195891 -0.562760 0.711753 1.876618 2.302043 -0.458872 1.505199 -2.221242 2.290384 -3.586464 -1.130118 -0.852491 -2.889772 -1.623237 3.197351 2.092565 1.892739 -0.625660 -1.948777 -0.275813 -3.825492 -4.194359 0.020468 0.302115 0.416547 1.698131 -0.832604 1.034072 -2.470831 1.256962 1.861189 -1.090797 -1.419128 -0.081269 1.578324 0.388926 -0.877152 -1.348569 -0.197989 -0.211930 0.167193 3.404073 -0.526995 -3.212783 -5.048360 -1.365695 2.735879 -1.462483 0.080820 -1.692400 -0.751623 -2.604618 -0.104626 -2.254106 -0.321492 0.383401 -1.904901 -3.712797 1.434355 -0.461620 -1.108242 1.227931 -2.604410 0.472175 2.084995 1.342364 0.583008 0.058617 -0.091643 -2.334290 -2.097282 0.622569 -2.017490 2.448260 1.547473 -0.153169 -1.864112 -1.423563 -2.206216 1.934421 -1.285595 1.766456 0.012390 -0.613877 1.178822 -2.724335 0.169375 -2.154141 0.734303 0.489147 -4.825350 3.630419 1.542605 -1.671091 0.021797 -0.806768 1.593422 0.150337 1.382526 -1.919680 -1.849976 0.716630 0.090133 0.067596 -1.374240 0.654493 -1.064900 -0.797399 -2.576000 -0.972990 2.545555 1.271078 -0.608710 0.378532 1.892572 -1.131429 0.638638 2.578757 2.079373 -0.228052 -1.560477 -5.123277 1.098720 -0.253063 -0.384407 -0.371313 -2.028980 -0.652983 1.482084 -1.058955 2.461694 0.375059 -0.982529 2.645936 -3.507193 -2.635359 -2.010075 -0.535873 0.851592 -0.169331 0.016475 -1.236182 0.822083 0.398753 0.592343 -0.545444 -2.547032 0.255450 1.315860 3.142450 -0.494853 0.221258 3.122462 0.933691 -0.653609 -0.475034 0.063607 -1.208852 0.192780 -3.090645 -0.308256 0.984709 1.317602 -2.228964 0.851020 -0.981773 0.000637 0.636018 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 2.045037 -0.414404 -0.485713 2.717041 0.487915 -0.579971 0.688649 1.339382 0.134257 -3.856346 -1.833098 1.384866 0.275433 -0.313156 0.649284 0.751008 0.986769 1.299794 -4.331924 0.451789 0.576774 0.245355 -0.737648 -1.212946 0.047298 -0.506362 0.167334 1.368450 0.357378 2.602237 -1.277915 0.843812 2.044508 0.232763 1.268552 1.667870 0.638710 -0.183658 -0.629098 -0.673338 3.985158 1.278856 -0.452817 1.610798 0.561596 2.947940 0.271798 2.788876 -0.136198 -0.801698 1.415770 -1.486098 -1.338691 -0.247018 -2.938431 0.931908 2.645047 1.698940 -1.557343 1.884726 -0.658115 0.811593 1.208100 -0.536716 3.215277 1.579584 1.753982 2.212841 3.201135 -2.046153 0.362474 0.097283 1.579573 -0.064055 0.945844 -2.117530 -0.920061 -3.674742 0.178455 -3.859359 0.240592 -0.541744 3.868428 -2.460719 0.645623 1.586633 0.368480 2.380190 -1.990027 0.003930 -2.723628 -0.100819 -0.340913 4.081059 0.170818 0.493897 -0.065233 1.144460 0.346309 1.123915 0.436041 -2.110857 -1.358343 -4.852440 -2.059423 -0.803202 -0.324077 -0.051658 -2.503203 -0.372704 1.481677 1.538544 -4.030819 -0.713824 0.919810 0.755571 1.080445 0.117897 -1.497719 0.163066 -0.513404 0.965572 1.048082 -2.001028 0.476140 -1.324176 -0.346879 0.712229 1.358778 0.482188 -2.816447 -0.668989 0.507890 -0.310170 -0.151229 0.444196 0.347649 -1.478081 1.401655 -2.161229 2.361684 -3.296604 -0.643668 -1.159173 -2.180597 -0.859515 3.567054 1.155627 1.750617 0.778703 -1.206108 -0.332993 -2.987755 -4.552892 1.133696 0.314435 0.860606 0.310628 -0.464385 0.160822 -1.704608 -0.462922 1.313766 -1.794783 -1.492129 -0.716077 2.322946 -0.120845 -1.091381 -1.748126 0.707834 2.050336 0.272944 1.724129 -1.276767 -2.864074 -2.991286 -1.558504 2.428012 -1.035268 0.157727 -0.502215 -0.200697 -2.639990 0.647731 -2.225417 1.058986 -0.252994 -1.787705 -3.261313 0.992569 -0.655166 0.120949 0.793849 -2.160197 0.888688 0.724264 1.497892 -0.391564 0.666109 0.861609 -3.035766 -2.947974 -0.359654 -0.448730 2.890202 1.092785 0.601649 -1.376812 -0.841320 -2.009924 2.312895 -2.145715 1.160828 -0.092907 -1.159004 1.875215 -1.901057 -0.742497 -2.429833 1.283522 0.712667 -2.850858 3.683071 2.161276 -2.347198 -0.808077 -1.968191 1.284459 0.705750 3.280910 -1.965218 -1.488981 1.113268 0.041230 -0.358510 -1.554598 1.131681 -0.202158 0.297460 -2.891608 -1.318474 1.860099 1.790894 -0.235918 0.974657 1.193484 0.018932 -0.451531 3.387280 1.028597 0.135005 -1.912693 -4.858322 0.975917 1.186966 0.333711 0.275873 -1.950279 -1.228456 0.353053 0.178376 2.459701 2.073363 -0.342796 2.463377 -2.827853 -2.617505 -1.433701 0.239116 0.856824 -1.370949 0.739542 -1.452919 0.351785 -0.159547 0.941218 0.001006 -1.324841 -1.538761 0.396757 2.197335 0.171541 -0.905730 3.082345 0.497386 -1.217508 -0.058345 -0.413233 -0.288841 1.048260 -1.805301 -0.657745 -0.308865 1.124442 -1.948034 1.667785 -0.051050 0.464518 0.893846 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.961633 -0.344021 -0.456248 1.916332 0.118980 -1.844144 0.898957 1.731291 -0.059789 -3.099663 -1.076449 0.441299 0.388378 -1.350874 0.268995 0.651375 0.567092 1.463000 -4.546086 1.300589 1.002689 0.595806 -1.554408 -1.468573 -0.145341 -0.949078 -0.908318 1.544429 -0.083925 2.509440 -1.318442 0.045723 1.916378 -0.178372 1.683718 2.614040 0.843827 -0.007457 0.913431 0.776171 3.732222 2.108436 -1.227667 0.465514 1.406763 2.885503 0.290280 1.658892 -2.263201 -1.002192 0.372936 -0.793225 -1.350638 -0.470784 -2.422359 0.696764 3.276644 2.462879 -2.219792 2.240052 -1.339628 0.396887 1.483164 0.742370 3.036761 1.266445 0.915850 1.866872 3.732549 -1.372813 0.447396 0.018417 1.590675 -1.099137 1.309944 -0.877974 -1.357820 -4.689983 0.569056 -4.348900 -0.000916 0.606467 2.988509 -2.594115 1.530613 2.265389 1.184846 2.229809 -2.402172 -1.147303 -2.398122 -0.192813 -0.890320 5.344370 -0.052736 0.778792 0.130983 2.108802 0.760764 1.104075 -0.059541 -2.560055 -1.796604 -5.276198 -1.843325 -1.395436 -1.362809 -0.348089 -2.687191 -1.342678 2.979219 1.953189 -4.132156 0.503214 1.105085 0.326480 0.721737 -1.112353 -1.571733 1.059681 -1.717325 0.189892 0.892018 -1.648761 -0.226063 -0.781241 0.524112 1.105987 0.669673 0.266223 -3.351977 0.415271 1.022461 -0.993628 -0.712998 0.733714 -0.105532 -2.350436 1.105464 -3.102542 2.459697 -3.162582 0.487535 -1.161946 -2.639725 -0.497618 1.508449 1.105862 0.065858 -0.054182 -1.241238 0.083964 -3.208657 -5.086960 1.385520 -0.051664 0.983265 -0.748756 -0.563695 -0.840250 -1.217265 -0.567256 1.079284 -1.818178 -0.673812 -0.693559 4.117115 0.209475 -1.119722 -0.950738 0.115547 2.602486 1.267359 1.161077 -1.987573 -1.520373 -2.974594 -1.474661 2.284886 -0.453282 -0.174885 -0.654540 -0.600610 -2.909933 1.605950 -1.809447 1.526615 -1.448301 -0.218671 -2.929938 0.435468 -0.720966 0.029103 -0.266047 -1.848268 0.634887 0.336258 -0.161287 -0.461704 -0.108407 1.334220 -2.601962 -2.470208 0.453653 0.387001 2.741157 1.399714 0.942013 -0.581256 -0.176389 -2.099324 2.290393 -1.538423 0.889714 0.411037 -2.090138 3.072340 -1.418083 -1.497156 -2.141890 1.573045 0.282309 0.034950 4.675017 2.504593 -2.454292 -0.603399 -1.240679 0.958974 1.358334 3.028689 -1.790325 -1.364175 1.316835 -0.788763 -0.437823 -0.906590 1.060574 -0.644413 1.895876 -2.563589 -0.854335 1.708393 2.097920 -0.250784 1.204113 -0.346032 -0.749241 -1.112826 3.075577 0.697485 0.653250 -2.206365 -3.151269 1.290049 -1.586532 0.727178 -0.611371 -0.684665 -1.264690 -0.001431 1.182208 2.592564 3.246075 -1.449034 2.155729 -3.534038 -3.144982 -1.513905 0.668172 0.851226 -1.571704 0.793120 -1.460740 0.672929 -0.358405 1.667939 0.591329 -1.420505 -1.817234 0.494880 1.394292 0.546729 -2.632391 3.085460 -0.376018 -0.901636 -0.295009 -0.346611 0.361243 1.035597 -0.292483 -1.087307 -1.143806 1.792417 -1.788892 2.751334 -0.176826 1.030259 1.769638 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 5.907572 -0.278576 -2.518459 7.788703 1.380556 -2.174293 0.946701 3.494427 0.133073 -8.901491 -3.629780 5.434166 0.763106 -0.910111 1.606790 2.558212 2.604272 3.547325 -10.702790 1.760540 0.036216 0.449107 -3.034768 -4.569625 0.378633 0.701505 2.339789 3.063542 1.148218 6.006990 -3.836476 2.536488 4.453750 0.840639 4.599875 2.353012 1.485252 -0.593800 -3.135677 -2.919182 10.369739 3.421583 -0.443174 5.034134 1.575748 7.123974 1.739926 6.619511 -0.044749 -0.885909 3.029917 -2.254306 -3.025627 -0.381090 -8.242583 2.500526 5.595510 3.336067 -4.065626 4.530148 -0.208541 2.488102 3.453322 -1.165948 9.337407 3.242872 5.108934 6.231329 8.004748 -4.459010 1.586797 -1.167233 5.541275 -0.269582 3.141963 -6.667709 -2.719362 -7.896443 0.241316 -10.157956 2.243115 -1.646962 9.946106 -6.495476 2.536403 3.050976 1.111948 6.106312 -5.796589 -0.079458 -6.850363 -0.832398 -1.744498 10.800008 0.117922 1.611053 0.052428 2.969169 0.372762 2.286087 1.409835 -5.574498 -0.517360 -11.425566 -5.260819 -0.660369 -1.704977 -0.885975 -5.198035 -0.734310 1.819920 4.143784 -10.306151 -3.055138 1.485381 0.324617 3.579287 -0.656848 -2.607172 0.973394 -2.104828 3.438030 1.991566 -5.490853 1.226967 -2.406961 -2.284439 2.112630 4.661090 2.432178 -7.340617 -1.337304 1.328635 -0.479687 -0.698137 0.737493 0.130257 -4.259604 3.413075 -5.183994 5.817630 -7.786732 -2.947239 -2.978228 -5.189384 -1.987192 8.285359 1.405730 5.102282 2.564372 -2.085371 -0.404053 -7.902766 -11.617050 4.162822 0.903761 0.458109 1.163401 -0.753401 0.159491 -4.692844 -2.263752 5.459715 -5.408840 -5.596062 -2.968262 5.416283 -0.203359 -2.927046 -4.081156 2.259388 5.425600 2.102980 4.540252 -3.287239 -9.185736 -7.508178 -2.993805 6.098452 -2.663710 0.537624 -0.606374 -0.257678 -6.415818 0.960695 -6.718096 3.848175 -0.765025 -3.608801 -7.970677 2.430470 -1.472098 1.589411 1.344268 -5.249955 3.470363 1.402075 4.273439 -2.871752 2.328088 3.140277 -8.050361 -7.874274 -0.434291 -0.402655 7.323492 1.568600 2.320779 -4.114464 -1.738217 -4.838191 5.432515 -6.218110 3.438412 0.192540 -2.266917 4.209900 -5.295718 -1.788163 -5.623322 3.328447 1.411963 -7.350539 8.924869 5.264950 -6.562745 -1.565168 -5.416350 4.324250 0.999207 8.978644 -5.348644 -4.153517 2.754107 1.115071 -1.236314 -4.787059 2.655627 0.097777 -0.015181 -7.695968 -3.363456 4.804677 3.938908 -0.169270 1.831912 2.466797 -1.312669 -2.561814 9.457576 2.662905 1.699705 -5.145645 -12.120770 1.190656 3.250692 1.520018 0.637482 -4.633151 -2.854387 0.142510 -0.145791 5.989174 4.139993 -1.247435 5.881147 -8.115760 -6.460161 -4.015665 1.264852 2.079901 -3.417690 1.835080 -4.077320 0.261072 -0.774881 3.081352 -1.016330 -2.388470 -2.758071 0.914116 5.196808 -0.094018 -2.577503 7.765306 1.839672 -2.882387 0.292791 -1.312216 -1.359577 2.850139 -6.245718 -1.781824 -0.684388 2.712604 -5.472785 3.926954 0.123779 1.875487 1.465027 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 3.979746 -6.244737 -0.006907 6.554022 0.869953 0.062289 1.834208 1.297991 2.444563 -8.716401 -2.489426 2.599087 0.514880 0.226705 0.671600 1.124453 2.724127 0.312796 -10.718968 0.454574 1.051677 -0.273393 -0.942863 -0.561976 -0.145112 -3.608336 5.073236 4.612302 0.362668 5.504002 -1.984307 1.826634 4.887698 -0.484472 2.734275 5.208893 1.741291 0.120506 -3.395638 0.138053 8.757440 2.821377 -2.125626 2.513062 0.805056 6.938676 3.409322 7.837466 5.377275 -2.492494 4.308289 -1.633430 -2.874581 -2.734758 -7.182361 0.747563 6.118794 3.597528 -4.108751 3.745532 -2.057422 1.264300 2.451694 2.615291 7.046641 1.646692 5.807404 4.384988 6.313183 -5.678097 0.077908 1.918094 3.163453 1.558073 4.363919 -6.145576 -4.710033 -8.910609 0.957988 -4.917910 -1.198059 -0.987451 2.914685 -4.319759 -0.492775 2.411743 -0.813184 5.216301 -3.773354 0.469361 -6.645106 -0.165362 2.137356 9.686445 -0.022543 0.668712 1.623497 2.964302 0.600205 3.279909 3.815071 -6.497373 -1.185875 -10.632281 -4.126305 -4.207136 0.643799 0.453986 -5.582564 0.218221 1.075714 0.032099 -7.612485 -0.294102 2.183451 2.442005 6.517799 -3.077955 0.107229 -0.260236 0.829768 2.305554 3.913553 -4.736219 1.878855 -2.642023 3.049015 3.016937 1.802189 0.470140 -3.850532 -1.338313 1.874207 2.424879 -0.119000 1.336361 1.591357 -3.534436 3.062401 -4.940908 6.268152 -7.030464 -1.099704 -2.917832 -2.061123 -2.511654 9.146771 1.167587 4.512733 0.442013 -4.595035 0.892419 -6.150577 -12.110457 0.552997 1.405974 0.490767 1.602795 -1.642290 1.704425 -3.626003 0.262720 1.496332 -2.890428 -2.643574 0.004369 -2.906599 1.003843 -1.915966 -1.663151 1.785536 3.111424 1.735998 6.327849 -2.087238 -11.117409 -6.717436 -3.639209 5.221272 -2.504717 -0.596145 -0.870935 -2.800867 -6.768406 2.305484 -4.479480 1.556253 -1.293998 -4.885594 -7.123514 2.583862 -2.262427 3.540282 2.620005 -5.658597 0.757485 -1.631063 3.773916 0.896678 1.587666 1.319317 -7.711663 -5.866772 -0.015586 -1.654428 9.027870 -1.202863 -0.011554 -0.055788 -2.517031 -3.605351 3.755210 -5.249547 2.666060 1.071024 -4.862505 3.559377 -3.159103 -0.709198 -4.828289 3.006660 2.611497 -1.904583 10.178567 6.396828 -4.884630 -2.142637 -1.113386 1.704355 1.242587 5.675964 -4.810699 -4.178874 2.127547 1.072005 -0.289633 -1.952018 1.862167 -0.022977 -0.328847 -6.653177 -3.931470 3.464983 3.803734 -0.452544 0.470470 2.833094 -1.047408 -3.181744 7.685262 1.638735 2.466168 -4.513496 -12.141511 3.329412 2.751167 -0.617688 1.503816 -6.256416 -2.354950 1.844632 1.593665 5.326872 6.351981 -0.779548 5.875235 -6.565922 -5.933925 -4.953227 -2.844590 1.034218 -1.289234 1.670723 -3.490244 1.426403 -1.940510 1.292663 -2.159074 -1.080438 0.280311 2.062439 3.286246 0.461059 -1.446511 6.468495 0.742188 -2.306170 -1.692725 0.296757 -3.009998 3.706692 -2.492911 -1.275917 -0.382383 3.491882 -3.488844 1.765938 -0.630946 2.066549 0.580805 -PE-benchmarks/subset-sum.cpp__main = 1.447864 -0.598830 -0.810874 2.549908 0.215109 0.329746 0.524236 0.289791 0.130875 -3.669549 -1.741602 1.692750 0.480341 0.303937 0.207200 0.981455 0.840130 0.568197 -2.982630 -0.107049 0.647820 -0.287677 -0.496422 0.033346 -0.165348 -1.297932 1.009517 0.949345 0.249865 2.301985 -0.602217 1.392025 2.005334 -0.146607 0.608127 1.682818 0.014124 -0.093559 -1.053185 -0.617797 3.011509 0.709917 -0.141570 1.091218 -0.264349 2.560297 0.149946 2.839516 0.499386 -1.044329 1.539408 -0.124194 -1.082045 -0.308315 -2.372085 0.498187 1.506716 0.816063 -0.957678 1.165778 -1.021216 0.607159 0.855196 0.154336 2.569885 1.249184 1.986696 2.054515 2.211181 -2.051654 0.252663 0.760813 0.332775 0.313125 1.450739 -1.292409 -1.262820 -1.040185 -0.025396 -2.153113 -0.329527 -0.453640 3.581174 -1.810233 -0.776313 0.495035 0.485826 2.310406 -1.319175 0.623441 -2.338187 -0.005211 -0.104835 2.859696 0.509419 0.514688 -0.505437 0.644767 -0.041906 0.845602 0.323490 -2.004554 -0.938053 -3.317715 -1.754935 -1.458917 0.497209 0.739517 -2.588160 0.081799 0.410256 1.622587 -3.307068 -0.201372 0.742536 1.025678 2.405855 1.087160 -1.382814 -0.152544 0.535515 0.682841 1.220805 -1.030871 0.802324 -1.095069 0.378582 0.279370 0.761246 0.364197 -2.871129 -0.797254 0.512155 -0.322553 0.389767 0.927181 1.271799 -0.897685 1.251341 -1.344742 1.900015 -2.984385 -0.742276 -1.063050 -2.100088 -1.067500 2.959432 1.957872 2.249806 0.022880 -1.127535 -0.335564 -2.882659 -3.649748 -0.058215 0.230932 0.333637 0.776389 -0.501678 0.830098 -1.721123 0.681660 1.126108 -1.103650 -0.997122 0.002056 1.483350 0.155984 -0.781055 -1.236369 -0.032653 0.104438 0.184056 2.407924 -0.528515 -3.453634 -3.265128 -1.317185 2.024243 -1.138557 0.108688 -0.832916 -0.780189 -1.941898 0.041977 -1.630352 0.201499 0.070528 -1.646593 -2.797159 1.088120 -0.429743 -0.714951 0.911300 -2.078110 0.373109 1.324069 0.756985 0.501290 0.481162 -0.078756 -2.044765 -1.793799 0.272479 -1.244865 2.478303 1.529229 -0.179689 -0.970697 -1.135041 -2.052388 1.553893 -1.787510 1.167188 0.107932 -0.917201 1.060098 -1.910629 -0.234938 -1.744956 0.903129 0.520734 -3.346784 2.877806 1.993990 -1.596689 -0.457004 -0.779384 0.969640 0.348458 1.835263 -1.616241 -1.198176 0.628837 0.195363 -0.049912 -0.438514 0.768084 -0.525095 -0.409131 -2.181574 -1.003360 1.785062 1.313378 -0.343432 0.186891 1.214955 -0.344909 0.605607 2.216506 1.305746 -0.083721 -1.570387 -4.748474 1.014888 -0.196845 -0.745478 0.384924 -1.633847 -0.810932 0.796063 -0.974180 2.021194 0.069921 -0.567758 2.177553 -2.402177 -2.150756 -1.548684 -0.632922 0.471085 -0.528083 0.734345 -1.095319 0.445459 -0.199185 0.392077 -0.655421 -1.383868 -0.068285 0.816079 2.138687 0.100875 0.024123 2.410413 0.645674 -0.699485 -0.563267 0.019850 -0.811733 0.716927 -2.478087 -0.441768 0.248433 1.019853 -1.505829 0.652238 -0.151042 0.280823 0.633295 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 9.934431 -1.434877 -12.168942 19.886242 -1.085566 3.858739 1.295001 -2.052139 -0.237562 -24.162325 -9.973496 16.164363 6.056639 4.689956 -1.301134 12.152259 3.791895 2.637951 -16.472235 -0.628891 4.259332 -3.935852 -4.000920 1.333076 -1.359754 -9.260513 14.462818 2.249149 1.893638 15.502396 -2.966803 14.717403 13.998124 -2.596286 5.002197 9.418259 -5.058025 -0.534488 -11.839658 -6.133796 17.110425 5.204893 1.358394 4.781423 -7.120546 16.857114 4.394163 16.712794 1.025579 -7.462722 8.345854 8.552728 -6.933897 -1.199214 -15.059306 1.678121 2.446590 2.060187 -3.837314 4.597552 -7.223161 4.713857 6.563523 5.847032 19.291504 4.782158 16.697336 16.308980 11.774602 -13.057138 4.854403 4.424502 -2.149818 0.101409 17.001688 -8.086006 -12.925900 9.033353 -1.386705 -11.697394 -1.867163 -0.627128 26.690242 -12.699873 -8.770332 -3.656976 6.818795 18.693105 -9.040859 6.955679 -15.002074 -1.009449 -3.633160 17.922052 4.533499 4.866946 -6.456619 4.248309 -3.138006 1.876020 2.107813 -15.536875 1.611398 -13.539110 -9.759678 -11.995375 5.384360 9.427587 -18.183718 2.034089 -6.561325 15.780334 -23.621914 0.541195 3.295325 5.778363 26.353786 8.900239 -6.249555 0.873512 5.197223 6.070515 8.524635 -5.474675 7.233003 -3.133406 3.496565 1.301711 5.151018 5.261235 -24.688688 -5.125340 4.844757 -4.723763 5.184675 11.293059 13.741970 -5.653355 8.187486 -7.805092 11.951283 -19.417269 -7.225096 -7.017796 -17.027087 -9.004674 14.646120 16.233630 16.944506 -4.412805 -5.231085 -0.723048 -23.044680 -22.435740 -3.436822 1.634620 -4.138681 8.858619 -2.885604 8.285044 -14.188274 10.002505 12.296929 -7.120965 -9.208355 1.550586 9.758532 3.891007 -5.443021 -4.725192 -4.761547 -9.219785 5.246104 22.231423 -0.615397 -29.972863 -27.977966 -6.762887 14.088567 -9.113128 0.884810 -8.951886 -7.998690 -10.289215 -3.632487 -12.145694 1.549038 2.417542 -6.412321 -18.490809 7.712059 -1.343930 -7.812157 4.728689 -13.639308 2.730938 13.508890 -0.551825 2.943773 3.164365 -1.939416 -9.817684 -7.004707 8.731170 -12.298855 15.723711 11.613106 -3.411198 -7.602045 -8.517456 -14.617198 7.515216 -9.963017 10.592579 1.197840 -2.752222 4.202837 -16.115232 2.152215 -8.506120 5.295269 0.780667 -26.377901 16.606929 14.186702 -9.082009 1.538076 0.003309 9.045252 -0.314742 6.789327 -10.359761 -9.267205 1.659039 2.481361 0.370645 0.845895 2.879647 -6.772126 -7.807450 -12.119836 -3.659075 13.655356 5.496739 -2.247210 -3.294934 6.973125 -9.639596 6.818151 11.288214 11.821889 1.039446 -12.414757 -32.783787 5.029738 -10.738771 -8.259895 0.447590 -6.629619 -2.533379 6.817770 -13.548771 12.934351 -8.030119 -9.228068 13.948242 -20.153756 -14.689835 -14.107700 -5.587830 1.302564 0.973136 3.125806 -6.855183 3.356836 -1.341080 2.810476 -9.289766 -10.502777 9.737171 9.015611 16.884903 -0.596957 2.164843 15.361951 6.746039 -0.569737 -6.269454 2.278786 -10.315979 2.639781 -23.852276 -3.366012 5.847234 7.939939 -11.310706 0.159024 -1.766681 1.992421 2.402220 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 1.395440 -0.519501 -0.195453 1.727452 0.299014 -0.143527 0.602962 0.878582 0.279690 -3.308556 -1.627760 1.370676 0.133684 -0.213373 0.212979 0.510563 0.932382 1.169154 -3.371316 0.144257 0.712942 0.393252 -0.224133 -0.613097 0.080060 -0.691741 0.142340 0.709691 0.362875 2.001629 -0.872664 0.698073 1.686611 0.121907 0.649788 1.589139 0.108696 -0.253945 -0.104041 -0.723477 2.948592 0.861188 -0.025359 1.326054 0.346211 2.148902 0.078780 2.164499 0.749375 -0.830908 0.954118 -1.129265 -1.159154 -0.111071 -2.145922 0.650987 1.591451 1.170887 -1.016372 1.317337 -0.387434 0.584652 0.756380 -0.709594 2.121766 1.183325 1.086436 1.567435 2.254368 -1.455632 0.295470 0.187503 0.868599 0.250582 0.967931 -1.520722 -0.627662 -2.295601 -0.156210 -2.914512 0.208116 -0.455196 3.385521 -1.755535 0.350590 1.001765 0.359890 1.771289 -0.909170 -0.152639 -2.104730 0.187473 -0.110490 2.520559 0.200801 0.397862 -0.397832 0.630912 0.069056 0.659674 0.396958 -1.550974 -1.129384 -3.898777 -1.206712 -1.116837 -0.001855 0.201222 -2.014306 -0.039851 0.850651 1.612416 -3.124631 -0.387227 0.665963 0.542760 0.514829 0.325671 -1.199979 -0.143787 -0.332130 0.660094 0.539325 -1.450210 0.154003 -0.982281 -0.320856 0.310632 0.827199 0.182686 -2.076196 -0.752960 0.240276 0.038246 -0.065163 0.670950 0.698004 -0.797400 1.003290 -1.564915 1.549138 -2.272333 -0.445512 -0.798879 -1.611627 -0.882998 3.183628 1.169287 1.378708 0.296470 -0.720419 -0.546020 -2.168855 -3.075108 0.750325 -0.150510 0.890746 0.430837 -0.290655 0.092400 -1.339236 -0.091018 0.518924 -1.073762 -0.645094 -0.347038 1.545900 -0.293675 -0.687798 -1.403320 0.276305 1.426596 -0.102915 1.061959 -0.982200 -2.110706 -2.319175 -1.220266 1.772859 -0.898745 0.246144 -0.539628 -0.150662 -1.318922 0.298712 -1.430560 0.356370 -0.201524 -1.531039 -2.491257 0.663786 -0.547367 -0.240977 0.719106 -1.606289 0.545363 0.889506 1.355757 -0.001357 0.342305 0.310658 -2.295648 -1.917838 -0.304954 -0.702303 1.910858 1.273910 0.169595 -1.414213 -0.710885 -1.518229 1.576677 -1.709123 0.872470 -0.127766 -0.945398 1.299609 -1.346642 -0.011268 -1.828211 0.843115 0.473668 -3.377150 2.641221 1.477982 -1.643573 -0.493203 -1.387633 0.848398 0.523679 1.967782 -1.357651 -1.028037 0.822232 -0.545846 -0.106718 -1.107696 0.804951 -0.233181 0.378816 -2.184764 -0.909331 1.560486 1.156985 -0.350764 0.638209 1.127382 0.203278 0.308593 2.411778 0.890901 0.034673 -1.629991 -4.177541 0.852327 1.457246 0.292823 0.387296 -1.456587 -0.882725 0.491078 -0.279721 1.749196 1.078074 -0.071327 1.774411 -1.953751 -1.857179 -0.782340 -0.130369 0.837284 -0.802840 0.630227 -0.945889 0.204840 -0.201142 0.730381 0.089393 -1.217875 -0.979494 0.653841 1.912788 0.495057 -0.409161 2.139407 0.232607 -0.948988 0.117707 -0.391309 -0.027175 0.447776 -1.511871 -0.334637 -0.080169 0.763705 -1.437814 1.395925 -0.151474 0.444945 0.545801 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 5.162527 -6.117168 -2.737263 9.065455 1.198103 2.134219 1.098745 -0.169762 2.160882 -12.142730 -4.352056 9.071566 1.043832 1.443201 -0.485441 3.202645 3.860329 0.570107 -11.800875 -0.473033 0.508622 -2.015067 -1.632222 0.229258 -0.247254 -4.542241 9.755020 3.810035 0.904089 6.588263 -2.028066 4.982460 6.071449 0.094452 3.444743 4.810370 -1.374684 -1.211350 -6.221045 -3.613566 10.421957 2.823609 -0.344136 4.237451 -0.953770 8.200305 3.658696 9.742635 9.636625 -2.517421 4.692779 2.212779 -3.837791 -1.969543 -9.930143 0.521765 1.884783 -0.028502 -3.147121 2.647568 -2.156971 2.105836 2.564504 1.939599 9.945433 0.865540 9.120083 6.593989 5.921787 -6.760149 0.839523 2.539633 2.712352 3.452545 7.148636 -6.048434 -6.448671 -2.379145 -0.250316 -5.551791 -0.697459 -2.293393 8.269419 -4.779129 -3.550950 -1.066879 0.508123 7.780254 -3.775748 1.999416 -8.948071 0.117321 1.664407 8.736238 1.766970 1.848692 -0.557464 1.715378 -1.320189 2.610996 3.936935 -8.092214 1.544104 -11.406769 -4.068650 -6.011908 2.165918 1.889283 -7.126752 2.527666 -2.368351 5.393955 -9.517143 -1.529148 1.480280 1.311944 10.599662 -0.099999 -0.250844 -0.916752 2.520576 3.773303 4.045196 -4.192810 2.633419 -2.058976 3.001285 1.387352 3.074667 2.137954 -7.423992 -2.780162 3.000787 2.426492 1.449627 3.238546 4.368854 -2.631216 3.550357 -3.592112 6.334048 -7.880649 -2.921763 -3.737104 -3.155035 -4.231502 11.869814 5.344141 8.797858 0.303845 -2.486340 0.264915 -8.998422 -13.863207 -0.072861 0.610011 -1.670786 3.330687 -1.330253 3.744034 -6.102238 2.176402 3.902238 -3.638984 -4.311856 0.183826 -2.936719 1.315972 -1.951777 -1.927232 -0.006582 -0.399137 2.113140 9.229725 -1.423258 -18.296379 -10.170643 -3.840531 6.237253 -4.563098 -0.304545 -2.177539 -3.731040 -4.934657 -0.513368 -5.441704 0.622631 -0.302896 -6.153335 -8.769717 3.226916 -1.916776 1.227285 3.254657 -7.222039 1.781981 2.273001 3.972635 1.144200 2.429176 -0.590086 -7.319518 -5.096939 1.708695 -4.171514 10.070616 1.975713 -1.494093 -3.543775 -4.058981 -5.965336 4.009153 -8.074704 4.784519 1.152539 -5.208353 1.885850 -5.574118 0.686111 -3.737876 3.336854 1.727106 -10.747519 10.073737 7.812312 -5.747790 -1.268833 -1.286498 3.184278 0.095048 5.336459 -6.174811 -4.495774 1.321562 1.852754 0.006998 -0.531882 1.962019 -0.395857 -3.010782 -8.504060 -4.904886 5.683828 3.033291 -0.708782 -1.376401 3.880174 -2.012052 0.638181 8.400181 3.797477 2.769380 -6.376727 -18.536771 2.617833 2.772264 -2.402031 3.068955 -6.967818 -2.463845 2.222226 -4.987799 6.269897 -1.521962 -2.487105 6.805755 -8.065138 -6.317669 -6.602138 -4.554898 0.875469 0.122641 3.927444 -3.744307 0.533831 -2.861548 1.296296 -5.025490 -2.141735 4.065502 4.345765 5.551324 1.360924 0.779554 6.913059 2.573756 -2.263680 -2.467140 0.069558 -5.314713 3.609115 -9.880121 -1.168466 1.539867 3.427803 -4.610921 0.148133 0.176837 3.027456 -0.733641 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.435615 -0.669264 -0.118512 1.029122 0.136922 0.351719 0.228131 0.029025 0.188333 -1.578712 -0.754923 0.181269 0.128977 0.300903 0.295452 0.303406 0.382973 0.103535 -1.248649 -0.153004 0.319148 -0.192141 0.130297 0.240624 -0.047908 -0.662864 0.323161 0.486535 0.125368 0.950671 -0.263248 0.631950 0.874554 -0.002621 0.155222 0.683039 0.154484 -0.077350 -0.509553 -0.104582 1.247146 0.102128 -0.166012 0.298459 -0.235833 1.070930 0.078113 1.369664 0.660090 -0.475335 0.954021 -0.745124 -0.350463 -0.100263 -1.012357 0.208070 0.682229 0.458033 -0.391916 0.422505 -0.517420 0.287453 0.272656 -0.105560 1.048368 0.460738 0.895585 0.765106 0.762842 -0.981368 0.029942 0.387917 0.046465 0.211785 0.346088 -0.656523 -0.259407 -1.190732 0.068776 -0.599887 -0.281425 -0.262832 0.972461 -0.681765 -0.433895 0.391288 -0.132001 0.945718 -0.465136 0.500264 -1.088687 0.016541 0.450633 0.834355 0.218384 -0.052501 -0.091948 0.214196 -0.033403 0.419056 0.343953 -0.756143 -0.743949 -1.433827 -0.834871 -0.539599 0.392963 0.306590 -1.125731 0.158923 0.365525 0.273908 -1.215307 -0.057639 0.326298 0.658814 0.822001 0.381032 -0.473541 -0.257080 0.445407 0.408509 0.671205 -0.518020 0.490412 -0.825461 0.367326 0.202760 0.335440 -0.017246 -0.630226 -0.437460 0.212219 0.135916 0.166454 0.286011 0.567027 -0.211293 0.571718 -0.453771 0.843465 -1.157575 -0.217193 -0.475147 -0.578147 -0.441747 1.939573 0.788648 0.919704 0.251285 -0.817837 -0.036573 -1.000799 -1.567181 -0.215985 0.191290 0.296633 0.422562 -0.272360 0.534176 -0.548783 0.383539 0.133868 -0.443877 -0.443597 0.125124 -0.320343 0.080034 -0.309755 -0.613917 0.163976 0.235681 -0.302008 1.030436 -0.120328 -1.225642 -1.138721 -0.672281 0.822379 -0.504417 0.122096 -0.297392 -0.219767 -1.035119 0.148031 -0.637666 -0.084897 0.148405 -1.043378 -1.170698 0.482686 -0.250321 -0.090947 0.598739 -0.888032 0.122801 0.206396 0.588063 0.369881 0.268049 -0.117265 -0.940583 -0.896212 -0.170195 -0.630987 1.159924 0.310967 -0.170704 -0.262330 -0.616361 -0.653506 0.742107 -0.800383 0.434443 -0.008600 -0.492062 0.294005 -0.721643 -0.148477 -0.724424 0.389231 0.392664 -1.213757 1.100318 0.827088 -0.611455 -0.278294 -0.462221 0.363422 0.156029 0.846024 -0.536426 -0.333379 0.198789 0.304811 0.000697 -0.260450 0.347927 -0.160804 -0.347011 -0.912334 -0.555977 0.613529 0.584331 -0.090420 0.116812 0.755554 0.254289 0.097226 0.925381 0.395425 -0.151333 -0.462771 -2.012581 0.492131 0.742914 -0.313284 0.394672 -1.100657 -0.226574 0.314567 -0.243988 0.828657 0.504630 0.109857 0.975883 -0.718861 -0.796863 -0.640503 -0.356721 0.070413 -0.216319 0.316620 -0.425363 0.184995 -0.065007 0.005084 -0.242569 -0.461054 -0.270942 0.280868 0.804784 0.032104 0.216577 0.946969 0.317963 -0.404893 -0.287680 0.075207 -0.447523 0.424714 -0.712005 -0.173713 0.203511 0.336496 -0.563634 0.040297 -0.155245 -0.048738 0.105431 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.676009 -0.822562 -0.585507 1.736327 0.087050 0.524333 0.186785 -0.126213 0.130987 -2.542101 -1.013702 0.990317 0.302333 0.590651 0.139300 0.756846 0.534472 0.205716 -1.863233 -0.164862 0.455464 -0.239044 0.121491 0.252438 -0.008056 -0.881703 1.194501 0.401097 0.299584 1.421319 -0.415328 1.222328 1.363256 -0.073182 0.475099 0.935487 -0.072838 -0.104539 -1.073966 -0.488655 1.835066 0.260057 0.044084 0.509708 -0.530405 1.582096 0.535759 1.744169 0.933549 -0.755496 1.050954 -0.478925 -0.556256 -0.189413 -1.538005 0.233565 0.397964 0.558479 -0.547299 0.455834 -0.533030 0.404324 0.443646 0.117558 1.747990 0.312273 1.537849 1.387679 0.969293 -1.344074 0.202624 0.489881 -0.070558 0.261682 1.155966 -1.105426 -0.771414 -0.659190 -0.077564 -1.075476 -0.347298 -0.202828 1.904106 -1.089639 -0.668796 0.071303 -0.001453 1.572041 -0.593722 0.646772 -1.647554 -0.090330 0.438653 1.277761 0.376846 0.022081 -0.260063 0.374113 -0.170366 0.435545 0.547000 -1.327888 -0.316184 -1.786811 -0.889774 -0.982634 0.666014 0.739714 -1.570828 0.195967 -0.321329 1.018708 -2.073070 -0.037874 0.391415 0.739407 1.855479 0.337837 -0.439345 -0.163559 0.580516 0.612945 0.947826 -0.803075 0.678599 -0.656623 0.462818 0.178731 0.554396 0.269225 -1.526462 -0.751474 0.375250 0.140435 0.278853 0.709567 1.126839 -0.314148 0.839594 -0.694357 1.193173 -1.608329 -0.432630 -0.621342 -1.135960 -0.814310 2.654620 1.224959 1.504086 -0.035386 -0.915091 0.010386 -1.738932 -2.364188 -0.173636 0.274799 0.014424 0.929867 -0.333047 0.913069 -1.089937 0.760794 0.651285 -0.598368 -0.806218 0.182355 -0.536651 0.230245 -0.444480 -0.654803 -0.004429 -0.192039 -0.028791 1.874330 -0.204045 -2.514808 -2.177256 -0.827023 1.267745 -0.845843 0.155722 -0.546429 -0.536645 -1.181622 -0.063093 -1.194456 0.067085 0.146991 -1.235770 -1.771495 0.691255 -0.333935 -0.216049 0.775498 -1.232158 0.220654 0.574662 0.602902 0.381533 0.321192 -0.127538 -1.240721 -0.993865 0.270790 -1.164041 1.569316 0.518822 -0.339342 -0.711093 -0.889767 -1.061358 0.869816 -1.012390 0.847786 0.028169 -0.548833 0.367312 -1.247402 0.272943 -0.862167 0.555467 0.506489 -2.460388 1.539210 1.260352 -0.837349 -0.097138 -0.236540 0.620294 0.116753 0.860322 -0.842797 -0.717853 0.201335 0.284445 0.084605 -0.288429 0.369542 -0.376824 -0.661635 -1.347663 -0.721409 1.054594 0.568679 -0.101687 -0.057350 1.032051 -0.213061 0.163303 1.405205 0.845943 0.113803 -0.985000 -3.219780 0.659859 0.666043 -0.498111 0.364240 -1.257345 -0.229744 0.541589 -0.916501 1.163250 0.161242 -0.375813 1.393056 -1.550696 -1.219402 -1.141324 -0.632255 0.120793 -0.030741 0.322492 -0.594645 0.312938 -0.175628 0.061663 -0.635164 -0.699166 0.383996 0.676545 1.360944 0.082065 0.476094 1.384371 0.498906 -0.405286 -0.409191 0.247307 -0.809503 0.457742 -1.874043 -0.354404 0.474887 0.578411 -0.938000 -0.131921 -0.302772 0.049471 0.061951 -PE-benchmarks/palindrome-partitioning.cpp__main = 1.351747 -0.698339 -1.596759 4.571231 -0.275271 0.953578 0.650301 -0.277239 0.036640 -6.330591 -2.425708 2.947866 1.084352 1.091198 -0.085603 1.583429 0.840826 1.461290 -5.686829 -0.626609 1.790341 0.333258 0.503862 -0.290350 -0.019521 -1.539868 2.929354 0.729879 0.689895 3.957789 -0.818954 3.269639 3.482554 -0.168277 0.577026 2.235361 -1.022491 0.093539 -2.293351 -1.449202 4.373788 0.646403 0.438448 1.675500 -1.629006 3.951084 1.163032 2.503133 1.884366 -1.894339 1.807886 1.385134 -1.206705 -0.839939 -3.385243 0.495384 1.508603 1.761154 -0.721878 1.273806 -0.523034 0.875821 1.487351 0.246765 4.175014 1.755029 3.302908 3.918868 2.937720 -3.036544 1.254005 -0.047970 -0.884856 -0.436704 3.329770 -2.616547 -2.470224 -0.520389 -1.086892 -4.259499 -0.606471 -0.119995 4.660774 -2.875378 -1.015393 -0.523645 1.281653 4.210162 -1.165008 1.127738 -3.809516 -0.334150 -0.068921 4.023096 0.922114 0.623633 -1.190055 0.917900 -0.417001 0.375927 1.362286 -3.249826 0.662675 -4.259185 -2.155144 -2.574171 1.399233 2.270783 -4.085657 0.478407 -1.568410 2.326228 -6.223640 -0.629763 0.629974 2.027889 3.576863 -0.209633 -1.469182 -0.014762 0.723389 1.135377 1.622694 -2.155724 1.575849 -1.041187 -0.545185 0.343571 1.219869 0.982481 -4.228171 -2.134234 0.293513 -0.272182 1.107221 2.562892 3.012573 -0.227690 1.740276 -2.590818 3.005358 -3.960476 -1.262163 -1.091642 -2.966256 -2.313950 3.351638 2.172660 2.635881 -1.225650 -2.051790 -0.087276 -4.628181 -5.200293 0.098592 0.594951 -0.063638 2.528188 -1.035859 1.658564 -3.507331 1.906120 2.630537 -1.310782 -2.023064 0.227410 0.835282 0.650022 -1.202293 -1.213678 -0.326392 -1.057069 0.534804 4.664964 -0.452916 -4.651332 -6.434784 -1.684325 3.457421 -2.110675 -0.129451 -2.221418 -1.267985 -2.692632 -0.410191 -2.943904 -0.067336 0.691406 -2.166314 -4.650565 1.817611 -0.627598 -0.836212 1.762991 -3.340142 0.592010 2.207494 0.972383 0.583769 0.316176 -0.055985 -2.519808 -2.005194 1.225817 -2.707206 2.467602 1.561314 -0.231042 -2.585185 -2.049765 -2.428376 1.840820 -1.417510 2.557973 0.025641 -0.801901 1.128328 -3.379797 0.750540 -2.172813 0.805257 0.707233 -5.946125 4.013498 1.883959 -1.917311 0.203041 -0.373192 1.914503 -0.145298 1.393169 -2.614743 -2.574075 0.725131 0.101621 0.199845 -1.213858 0.577348 -1.195997 -1.461721 -3.217498 -1.263552 3.221789 1.261725 -0.681620 0.299827 2.590106 -1.919140 0.766349 3.080747 2.856236 0.253744 -2.286057 -6.430843 1.316414 -0.532758 -0.384146 -0.383162 -2.317027 -0.755633 2.161149 -1.319081 2.959140 -0.124318 -1.731698 3.328664 -4.333183 -3.206481 -2.834671 -1.211787 1.075103 0.083951 -0.163398 -1.384934 0.980719 0.298591 0.553936 -1.127704 -2.673453 1.484327 2.028016 4.158138 -0.518744 0.608833 3.795564 1.406092 -0.819882 -0.704240 0.077923 -2.184132 0.208653 -4.534045 -0.381390 1.625244 1.779544 -2.815066 0.509093 -1.238053 0.031890 0.302366 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.460745 -0.343075 -0.369943 1.210170 0.115602 0.444982 0.185998 -0.074066 0.145416 -1.502112 -0.780595 1.406644 0.070483 0.406748 -0.045936 0.270592 0.455349 0.113241 -1.284366 -0.165896 0.097349 -0.249542 -0.055282 0.150703 0.005447 -0.599779 1.036825 0.605266 0.223061 0.967433 -0.256135 0.617285 0.801001 0.071423 0.356927 0.621344 -0.036829 -0.117829 -0.983023 -0.653050 1.210580 0.253318 -0.040064 0.663722 -0.210118 1.143248 0.407893 0.975403 1.274064 -0.443272 0.374276 0.324366 -0.493822 -0.292086 -1.063239 0.122775 0.035872 -0.038502 -0.409881 0.285800 -0.262557 0.161821 0.236651 -0.028870 0.959187 0.104318 0.961993 0.827621 0.642686 -1.056328 -0.013318 0.487898 0.316972 0.565194 0.635456 -0.408279 -0.837302 -0.187644 -0.061115 -0.866268 -0.432733 -0.286075 1.219965 -0.704846 -0.570953 -0.105771 -0.148916 0.928537 -0.471462 0.362696 -1.141528 -0.090832 0.244302 0.718239 0.457943 -0.005224 -0.056095 0.177203 -0.069380 0.466850 0.237722 -0.959747 0.025025 -1.461315 -0.464935 -0.738892 0.447467 0.339095 -0.806705 0.234527 -0.068964 1.203679 -1.192250 -0.244338 0.364677 0.281040 0.702240 0.175876 -0.135069 -0.039099 0.537755 0.331824 0.848505 -0.481598 0.414805 0.101435 0.227495 0.005336 0.396836 0.370403 -0.833966 -0.698962 0.426769 0.339220 0.199065 0.229910 0.550746 -0.136954 0.615501 -0.344525 0.862533 -0.933817 -0.201139 -0.360157 -0.318308 -0.593526 1.371641 1.008147 1.245724 0.019020 -0.207963 -0.039392 -1.015120 -1.592472 0.135723 0.221310 -0.104744 0.456225 -0.191574 0.734002 -0.831023 0.350986 0.464771 -0.390624 -0.552228 0.206217 -0.299966 0.146518 -0.222640 -0.480608 0.014542 -0.307945 0.085950 1.110463 -0.226016 -2.163402 -1.136841 -0.558449 0.867860 -0.579613 -0.027469 -0.232100 -0.516532 -0.377003 -0.117606 -0.791068 -0.046165 0.027659 -0.865596 -1.142695 0.447878 -0.234038 -0.261093 0.593666 -0.894238 0.137775 0.461661 0.360104 0.279210 0.302285 -0.051662 -0.702530 -0.417892 0.105152 -0.781812 1.091161 0.564903 -0.259701 -0.777657 -0.615270 -0.774492 0.646166 -1.000279 0.635871 -0.033948 -0.537497 0.290298 -0.769016 0.061191 -0.313926 0.479081 0.475585 -1.924266 0.978848 1.165126 -0.579541 -0.150151 -0.041501 0.207482 0.192239 0.761997 -0.921213 -0.555166 0.097941 0.201866 0.102390 -0.038545 0.371877 -0.047659 -0.521613 -0.905612 -0.527276 0.758283 0.351688 0.012396 -0.071739 0.736339 0.011687 0.383638 0.941427 0.507044 0.197050 -0.766385 -2.223588 0.523068 0.494887 -0.417981 0.677084 -0.860806 -0.313482 0.332984 -0.970594 0.824930 -0.706663 -0.445014 0.980207 -0.830348 -0.754857 -0.854691 -0.708852 0.045345 -0.002055 0.813293 -0.372627 0.139516 -0.295574 -0.123828 -0.675726 -0.125588 0.400524 0.493629 0.655253 0.310098 0.468886 0.937322 0.264425 -0.524334 -0.290140 -0.004993 -0.705780 0.186554 -1.503317 -0.144151 0.265382 0.404726 -0.592031 -0.215211 -0.006680 0.186234 -0.060125 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 5.938502 -4.040995 -9.533237 21.848239 -1.797786 5.345828 1.897967 -3.454793 0.526949 -27.978050 -9.697440 16.683098 5.594084 5.899166 -1.591663 8.293474 3.607680 5.022369 -24.056651 -3.202256 6.901597 0.155935 1.257153 -0.173021 -0.329752 -7.116489 18.121603 2.473858 2.924367 16.980330 -2.812037 16.590571 15.295069 -1.526020 2.921262 8.768845 -6.570597 0.591968 -12.994428 -7.359338 18.599164 2.497568 2.985060 7.496549 -8.821518 17.135979 6.612671 11.664935 11.157614 -8.075150 8.250066 11.576668 -4.739991 -4.135629 -15.537631 1.294540 3.913306 4.997019 -2.399800 4.098037 -1.714042 3.889115 6.657886 3.811583 19.595681 6.484018 16.950408 18.380787 11.568192 -13.144551 6.324036 -0.252943 -4.844373 -1.394751 17.941967 -11.945811 -13.475855 4.740911 -5.454895 -16.220868 -2.564866 -0.649375 19.787488 -12.067429 -6.895309 -6.119507 6.659766 19.620552 -4.827381 6.229693 -16.847299 -1.944946 -0.442961 17.498551 4.401839 3.718181 -6.067472 3.606103 -3.299964 0.602987 6.901248 -15.552669 7.601287 -16.011864 -9.217120 -12.361722 7.154293 11.319231 -18.144694 3.498250 -12.107933 10.501067 -27.306617 -2.882513 1.602830 8.056669 21.292112 -0.830715 -4.834037 -0.047123 4.695195 5.580305 7.096499 -8.380826 7.903525 -3.391149 -1.658521 1.446143 5.319620 5.554730 -20.005500 -9.339065 1.716314 -0.341013 5.905398 12.718292 15.129258 -0.709895 7.400511 -10.282609 12.892604 -17.208895 -7.377908 -5.122953 -12.854860 -10.920306 13.078743 9.818510 13.874066 -7.047842 -8.431139 0.391059 -21.848957 -23.324041 -0.889593 2.529580 -3.554612 12.717120 -4.508186 8.663910 -16.690641 10.234036 14.054937 -5.473619 -10.013656 1.326155 0.968220 4.017708 -5.013256 -3.225185 -2.873481 -8.864569 4.303735 23.616954 -0.468808 -25.854640 -30.551127 -6.199260 15.038820 -9.912359 -0.864730 -10.444112 -7.174435 -11.269128 -3.741519 -13.220783 -0.811622 3.334296 -8.560246 -20.180603 8.264000 -2.250662 -3.253511 7.370964 -15.284972 2.748933 10.557419 3.556538 2.794792 1.789907 -1.258397 -10.100921 -7.230317 7.970860 -13.259511 11.241977 6.279079 -2.006563 -10.961073 -9.587402 -11.231472 6.243869 -6.911547 12.435661 1.385994 -3.271293 3.173618 -15.975022 4.314516 -7.996668 3.021900 2.230792 -27.005802 17.321086 8.234607 -8.009775 2.223769 0.893097 9.221289 -2.246070 3.891342 -11.946137 -11.943198 2.196410 1.865675 1.212749 -3.787169 1.651838 -5.559655 -8.716264 -13.934566 -5.397405 14.867541 4.224318 -2.974816 -1.074453 10.864981 -11.739933 3.699055 12.767761 13.718170 2.613093 -10.382737 -29.558350 4.841856 -5.908422 -3.558625 -1.903104 -10.016681 -2.541329 10.158140 -8.628262 12.651065 -5.510157 -9.171326 14.349741 -20.594573 -13.873324 -14.208726 -7.153261 3.907345 2.605937 -0.864430 -6.053745 4.231809 0.736724 2.354477 -7.871279 -11.580514 11.697581 10.459448 18.243639 -3.264480 3.963853 16.044737 7.355363 -2.290989 -4.249870 1.008261 -12.318621 0.715891 -23.884117 -1.473165 8.567674 8.156723 -12.575583 0.013623 -5.634562 1.108053 -0.189461 -PE-benchmarks/cut-vertices.cpp__main = 8.483504 -2.005703 -3.854862 14.694229 0.994674 -2.337704 3.105992 4.612159 -0.563608 -20.702300 -11.535760 4.839083 3.044173 -1.124690 3.777473 4.192767 4.329098 4.838063 -23.299018 1.896882 5.909419 0.152016 -4.046104 -3.124192 -0.425716 -6.016878 0.959812 6.587242 1.031952 14.146116 -5.130264 7.132491 11.261597 -0.814690 6.284657 11.215364 -2.441464 -0.092276 -0.825730 -1.598899 19.771367 5.623884 -1.166221 5.414709 1.427642 15.393233 -0.580034 13.000240 -2.773543 -6.514460 9.387916 -0.981841 -5.520353 -1.477310 -13.887442 3.456007 14.684654 8.484492 -8.200158 8.619665 -6.035081 3.445335 6.318125 0.909708 17.297311 8.262209 9.654151 12.454332 15.229949 -10.295370 2.904776 1.614772 2.927300 -2.770024 5.963932 -9.213463 -5.903917 -13.176655 0.512504 -19.461175 -0.134914 -0.152317 20.837368 -11.752641 0.425632 5.350465 4.232590 14.397810 -9.151452 0.449221 -12.957626 -1.022467 -3.711300 19.989165 1.081709 2.941710 -0.349869 6.441332 0.189427 5.878438 -0.560653 -11.932420 -6.903555 -25.402551 -11.648049 -7.107230 1.550808 2.750254 -15.787896 -2.116049 5.409730 4.991293 -21.280035 -1.307185 4.604322 6.442098 4.360590 1.346273 -10.577647 -1.164204 -1.889989 4.814977 6.854967 -6.222778 3.864978 -8.862953 0.206473 3.736925 5.447890 1.938302 -15.282552 -3.685106 2.267291 -4.005559 -0.176521 5.407762 6.255392 -4.913630 7.466546 -11.271763 13.014073 -19.385671 -1.490858 -8.699946 -12.597608 -5.295057 10.651469 9.105413 7.246822 -0.119535 -7.183157 0.194589 -18.339640 -21.341528 2.182210 1.336055 4.306056 1.989947 -3.352069 2.588150 -9.147510 1.381941 6.907594 -8.057711 -6.362032 -3.309754 14.665259 2.135742 -6.006469 -7.083897 1.220257 4.391065 -0.649257 12.185776 -5.088510 -11.624786 -20.037781 -8.088318 13.028480 -5.240349 0.287383 -5.031379 -3.028162 -13.434247 3.148481 -11.216729 2.118968 -2.271672 -6.690728 -16.800671 4.300214 -2.357302 -2.405352 3.239046 -12.355691 2.898153 9.407350 4.987046 0.843095 2.749897 2.407617 -12.795136 -12.143002 1.545699 -4.208763 11.974488 10.198037 0.642828 -5.356166 -5.234305 -10.370866 9.778802 -6.264906 7.049057 0.946474 -7.243464 9.531519 -11.437663 -2.803834 -11.045621 4.570865 2.729527 -17.800408 18.896619 9.721501 -10.838945 -2.310039 -7.728057 6.569105 1.955404 12.286871 -8.718887 -6.351175 4.146145 -0.992338 -0.819869 -5.654377 4.759917 -3.115146 0.624546 -13.491079 -5.756308 11.999167 8.635927 -1.094082 4.814923 5.014789 -2.276984 2.063655 15.208636 7.177327 -0.908517 -9.507002 -25.300692 6.693450 -0.954078 -0.640120 -1.199152 -6.744642 -6.881130 2.153594 1.378816 12.524704 9.950424 -3.638150 13.193716 -14.608170 -14.628056 -10.516190 0.933420 3.735440 -5.535021 -0.015776 -7.453122 3.375146 -0.483280 5.197133 0.363374 -9.365494 -7.445650 3.663442 13.185102 0.120442 -3.894747 15.958807 3.107381 -4.874084 -3.090096 -0.445309 -3.094024 4.854075 -9.571378 -4.818495 -0.560849 6.967716 -10.354492 6.694367 -1.295274 3.616074 6.166662 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = 6.403476 -2.578260 -6.708426 14.529691 -1.674408 -0.242175 1.662405 1.424548 0.879563 -16.381164 -8.149972 10.409698 3.847278 1.111199 1.927820 5.219166 2.153509 3.417920 -18.238886 0.540432 3.787311 -0.678303 -3.127926 -2.329952 -0.380585 -4.013902 7.337604 3.562084 0.954977 11.394394 -3.093281 8.915114 8.780389 -1.273115 3.456030 6.707338 -5.123987 0.045471 -5.319731 -3.856414 13.459446 4.179906 0.183223 5.156808 -2.991340 11.662780 2.148820 9.978445 2.367337 -5.174297 6.468516 6.218793 -4.700544 -1.730896 -10.516380 1.495629 7.088158 3.890433 -3.270078 5.443963 -4.299743 3.195223 5.459546 2.640815 15.264286 5.104926 10.990360 11.775418 10.171634 -8.413727 4.884273 -0.274156 0.679718 -2.306216 10.536736 -7.502507 -8.327603 -2.984590 -1.010687 -13.827368 -0.239705 0.257632 16.909397 -9.397003 -2.364807 -0.714356 5.577097 13.922100 -7.172160 3.384912 -9.370415 -1.143801 -3.060552 15.456902 2.224170 3.524780 -2.771188 4.425261 -1.617256 2.092424 1.484199 -9.847089 1.790077 -17.264641 -7.842774 -6.492097 2.178173 4.504929 -13.123740 1.295307 -1.706209 5.492899 -18.012366 -2.225268 2.473866 4.444709 9.116389 0.185499 -4.758300 -0.255395 0.602101 5.430761 5.598890 -5.629384 5.188229 -3.954279 -0.315100 3.186205 4.766728 3.935696 -13.235330 -4.154929 2.524266 -1.725884 2.376030 7.602283 8.683792 -1.852930 5.539225 -8.790163 10.020310 -14.911440 -3.361537 -5.826430 -8.667116 -5.648423 7.208728 7.371288 8.184024 -2.934120 -4.715102 0.707881 -16.094383 -17.613313 0.998674 1.987909 -0.949718 4.368551 -2.307169 3.420308 -9.526100 4.057286 9.004291 -6.265487 -6.560923 -1.315273 7.013996 3.599501 -4.792222 -4.256663 -0.491947 -2.415015 1.753358 13.519080 -0.791662 -16.411713 -19.288990 -4.650551 10.976203 -4.735863 -0.370586 -5.817561 -4.846396 -8.180977 -0.400228 -8.669322 1.128466 1.288920 -4.973717 -13.792280 3.223391 -0.319962 -2.538685 2.634729 -10.868589 2.206713 8.886522 2.415547 0.188434 3.414989 1.621617 -8.232302 -7.279005 4.061599 -6.307078 8.999588 7.570479 -0.627983 -5.775123 -4.589140 -8.304415 6.259928 -6.871467 7.961823 0.434229 -4.333211 5.073327 -10.917749 -1.072701 -7.044732 2.747318 0.604181 -17.451030 14.277871 7.945626 -7.527710 0.733211 -2.993781 6.866511 -0.569380 7.306898 -9.275166 -6.541094 1.666958 0.537108 -0.056210 -2.974750 2.532063 -3.734463 -4.529177 -8.814117 -2.871305 10.520622 4.539872 -0.744762 1.219810 4.981590 -6.351669 2.658502 9.856312 7.831329 -0.275172 -8.556574 -21.894315 4.780750 -2.916490 -2.873515 -0.411200 -6.629269 -4.006397 4.117783 -3.033820 8.450834 1.675935 -4.761663 9.989983 -13.630740 -11.063843 -10.505992 -1.551217 1.943333 -1.020685 0.663566 -5.066192 2.697845 0.195357 4.140171 -4.307297 -7.306460 1.162770 5.088879 11.794148 -1.234626 -1.078540 12.560410 4.347805 -2.401632 -3.883912 -1.121102 -7.447254 1.740499 -12.060088 -2.263904 2.893412 6.414515 -9.722667 2.993306 -1.195135 2.857752 2.313161 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 1.277482 -0.680994 -0.693992 1.571775 0.414706 -0.104651 0.167538 0.039584 0.423288 -1.918363 -0.738955 2.097408 0.135543 -0.217342 -0.098973 0.699348 0.893789 0.314209 -1.510584 0.345787 -0.164771 -0.361839 -0.985517 -0.052900 -0.073768 -0.808271 1.336205 0.663105 0.120054 1.176448 -0.612509 0.729380 0.980336 -0.086526 0.943792 1.020385 0.041579 -0.322138 -0.804217 -0.558521 2.113579 0.524750 0.225542 1.065393 0.421135 1.546518 0.323182 2.120903 1.543299 -0.363890 0.796339 0.691319 -0.714206 -0.141844 -1.987830 0.381440 0.299415 -0.364273 -0.982428 0.637505 -0.248056 0.462803 0.563502 0.414989 1.785977 0.374904 1.143069 1.169031 1.595244 -0.961558 0.113619 0.579774 1.217451 0.792209 1.490987 -0.699086 -1.145542 0.027480 -0.111554 -0.754615 0.335423 -0.572165 2.006449 -1.109220 -0.440000 0.104221 0.307516 1.411913 -0.829932 0.058420 -1.548947 0.144158 -0.009605 1.718152 0.228672 0.658896 -0.419764 0.354550 -0.394042 0.554256 0.214493 -1.685121 0.034949 -2.344539 -1.164601 -1.114873 -0.105543 -0.148688 -1.583113 0.343562 -0.197829 1.658060 -1.823694 -0.243838 0.251028 -0.225305 1.562277 0.370620 -0.293093 -0.194419 0.268262 0.743066 0.304016 -0.439992 0.158021 -0.522180 0.338576 0.259266 0.682523 0.260535 -1.423926 -0.223072 0.530664 0.525535 -0.007192 0.402743 0.547533 -1.095048 0.674020 -0.601401 1.041604 -1.513407 -0.913675 -1.013255 -0.884659 -0.648176 1.971230 0.915411 2.128102 0.213238 -0.203957 -0.271851 -1.931517 -2.597955 0.218835 -0.537119 -0.310071 0.421054 -0.088716 0.269995 -0.989955 -0.057594 0.913097 -1.014991 -0.740561 -0.315147 0.265915 -0.067399 -0.370504 -0.699951 -0.158456 0.305484 0.639091 1.206063 -0.502214 -3.303211 -1.693287 -0.744456 1.110976 -0.753066 0.257736 -0.231425 -0.637222 -0.760759 -0.098642 -0.997750 0.129773 -0.501104 -0.713220 -1.549743 0.412352 -0.383281 -0.005954 0.170662 -1.389448 0.619722 0.524449 0.499416 0.059092 0.539980 -0.203438 -1.509798 -1.091223 0.293752 -0.414904 1.811370 0.892329 -0.012498 -0.658044 -0.684889 -1.439538 0.794146 -2.289784 0.767856 0.747189 -0.980010 0.694952 -1.134707 -0.259364 -0.730612 0.812161 0.074780 -2.119058 1.827413 1.570143 -1.513161 -0.327003 -0.559723 0.780680 0.214712 1.514227 -1.114370 -0.510998 0.469606 0.338246 -0.126012 -0.227627 0.572660 -0.037525 0.113207 -1.614716 -0.803293 1.124157 0.863814 -0.201642 -0.496217 0.252279 -0.397000 0.238574 1.603951 0.658560 0.757830 -1.397488 -3.294217 0.347896 -0.085195 -0.378696 0.889858 -1.089782 -0.477019 0.181870 -1.185698 1.390369 -0.989237 -0.140893 1.261533 -1.701058 -1.428491 -0.880160 -0.714369 0.198410 -0.245523 1.246135 -0.914359 -0.150164 -0.749583 0.693391 -1.009669 -0.333749 0.427406 0.794156 0.841599 0.485643 -0.175695 1.353803 0.405969 -0.475178 -0.290926 -0.092407 -0.512562 0.448651 -2.054811 -0.390625 -0.156667 0.612699 -0.969320 0.700608 -0.010508 0.968202 0.013051 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.584777 -0.293187 0.067273 0.901719 0.176017 0.029760 0.379813 0.397274 0.125851 -1.640286 -0.831953 0.196766 0.084764 0.044708 0.241724 0.197484 0.383668 0.506078 -1.551046 -0.014835 0.460144 0.148789 0.094607 -0.167913 -0.005176 -0.497425 -0.159611 0.510900 0.185634 1.117088 -0.414973 0.310476 0.929119 0.056802 0.169138 0.901805 0.387080 -0.065059 -0.160891 -0.156261 1.433841 0.309191 -0.199807 0.492267 0.041074 1.185761 0.003346 1.143127 0.181820 -0.530242 0.629505 -0.925254 -0.540368 -0.136447 -0.974776 0.373562 1.021481 0.844307 -0.526237 0.700101 -0.370958 0.270798 0.371594 -0.351150 0.919359 0.696334 0.500679 0.749955 1.172821 -0.982922 0.022677 0.270368 0.279667 0.086359 0.285480 -0.657346 -0.204157 -1.644842 0.036585 -1.266517 -0.178435 -0.189596 1.394284 -0.923732 0.077798 0.779754 0.000566 0.891648 -0.527801 0.125828 -1.089552 0.066885 0.157923 1.254806 0.164001 0.015638 -0.097208 0.338918 0.160822 0.489336 0.221602 -0.746675 -0.982792 -1.847217 -0.786954 -0.544844 0.103329 0.177589 -1.126774 -0.107517 0.800991 0.578534 -1.529954 -0.100227 0.478863 0.625513 0.217423 0.208037 -0.644172 -0.072502 0.045673 0.231332 0.513006 -0.759827 0.220763 -0.618796 0.017446 0.184379 0.347085 -0.043676 -0.842776 -0.440876 0.127991 -0.060270 0.043474 0.220588 0.326135 -0.419586 0.583067 -0.796064 0.901258 -1.228100 -0.104424 -0.354326 -0.795384 -0.435986 1.706473 0.591494 0.648616 0.218222 -0.701191 -0.242714 -0.982665 -1.598850 0.196449 0.122407 0.597448 0.267024 -0.257506 0.206260 -0.598353 0.037312 0.085901 -0.523366 -0.331055 0.014665 0.592504 -0.123854 -0.353281 -0.837640 0.245402 0.705117 -0.199568 0.648239 -0.439551 -0.744089 -1.104750 -0.779300 0.955504 -0.451913 0.103336 -0.295720 -0.118007 -0.956281 0.305168 -0.703885 0.126985 0.024912 -0.939629 -1.323086 0.469093 -0.322778 -0.200077 0.566431 -0.886184 0.174948 0.235323 0.531385 0.169009 0.139257 0.125665 -1.139833 -1.039322 -0.291984 -0.398938 1.036820 0.510673 0.086960 -0.514726 -0.486843 -0.695949 0.930863 -0.772324 0.391741 -0.125375 -0.433957 0.695177 -0.669399 -0.182016 -1.002991 0.486016 0.429629 -1.213579 1.337287 0.831942 -0.750003 -0.358064 -0.658537 0.320534 0.378436 1.115674 -0.686968 -0.523137 0.448708 -0.092141 -0.058648 -0.523568 0.439280 -0.170970 0.119339 -1.014838 -0.494803 0.635602 0.755989 -0.163587 0.419173 0.746651 0.297225 0.070110 1.128068 0.408320 -0.151581 -0.643694 -1.866611 0.609779 0.684595 0.058976 0.243639 -0.915898 -0.385154 0.369850 0.100468 0.950524 0.883790 0.071350 1.035080 -0.881482 -0.980408 -0.406333 -0.114081 0.360288 -0.474551 0.314612 -0.492413 0.214531 -0.013932 0.161769 0.071158 -0.567648 -0.668805 0.214286 0.955527 0.161722 -0.109405 1.178035 0.134460 -0.536934 -0.027133 -0.110335 -0.039813 0.272246 -0.430003 -0.162776 0.013342 0.412990 -0.674739 0.591458 -0.160188 -0.075600 0.355543 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 1.355831 -1.030536 -0.787058 2.299246 0.314921 0.416090 0.297859 -0.051375 0.429959 -3.083609 -1.196215 1.947902 0.359575 0.418715 0.005399 0.985503 0.918722 0.338971 -2.486273 -0.015460 0.296527 -0.406291 -0.403749 0.156686 -0.074214 -1.207073 1.745437 0.808274 0.325162 1.895258 -0.692838 1.291847 1.703302 -0.151293 0.765345 1.379448 0.100475 -0.253469 -1.431044 -0.706133 2.659192 0.512645 0.034617 1.007562 -0.267818 2.230251 0.620805 2.751350 1.715856 -0.853221 1.300689 0.101582 -0.939747 -0.300890 -2.344598 0.435731 0.697088 0.351435 -0.965110 0.770539 -0.556642 0.611908 0.725945 0.369424 2.307381 0.599873 1.876620 1.720694 1.812444 -1.793874 0.214517 0.737838 0.628167 0.715153 1.790483 -1.352638 -1.320164 -0.630391 -0.030975 -1.281215 -0.154468 -0.525569 2.508075 -1.573816 -0.773641 0.208675 0.197415 2.107503 -1.023505 0.642060 -2.219664 0.050387 0.332136 2.249549 0.435251 0.397754 -0.405705 0.484939 -0.324716 0.705365 0.674532 -2.055969 -0.306445 -2.713309 -1.487810 -1.496851 0.454483 0.558401 -2.238255 0.409782 -0.197402 1.577273 -2.705214 -0.184218 0.507703 0.608410 2.460984 0.598362 -0.472849 -0.236543 0.647177 0.858460 0.970810 -0.978316 0.678952 -0.768772 0.560175 0.358628 0.776283 0.323256 -2.016407 -0.697687 0.608825 0.346520 0.325810 0.773898 1.185281 -0.959991 1.078091 -0.941959 1.585934 -2.225043 -0.928576 -0.989080 -1.324217 -1.076771 3.043788 1.399566 2.366509 0.105693 -0.929960 -0.197242 -2.468717 -3.339461 -0.125538 0.003583 -0.160663 1.007808 -0.383498 0.921856 -1.466491 0.516716 0.938611 -1.078951 -1.114576 0.035526 -0.098904 0.120771 -0.534000 -0.946164 -0.057213 0.024078 0.360008 2.252459 -0.411875 -3.920346 -2.695041 -1.162280 1.729221 -1.148482 0.228333 -0.631535 -0.846546 -1.471332 -0.074906 -1.467813 0.061201 -0.069954 -1.443008 -2.390273 0.930080 -0.517377 -0.196737 0.845751 -1.953315 0.528436 0.648058 0.752525 0.384445 0.513371 -0.220175 -1.997386 -1.473876 0.323666 -1.146730 2.404746 0.818662 -0.264913 -0.837573 -1.176638 -1.640200 1.180919 -2.212235 1.151107 0.394318 -0.948174 0.700703 -1.632397 -0.002641 -1.224422 0.949296 0.492470 -2.796318 2.506624 1.967934 -1.537745 -0.300025 -0.496896 0.936427 0.230487 1.612745 -1.473526 -1.036342 0.488198 0.481616 -0.037349 -0.310529 0.643805 -0.324884 -0.513634 -1.991478 -1.023948 1.403397 1.069887 -0.237974 -0.295749 1.090087 -0.413177 0.298109 2.017595 1.013646 0.485375 -1.516705 -4.442417 0.797453 0.308729 -0.626423 0.819539 -1.733604 -0.457348 0.686760 -1.169756 1.793155 -0.372571 -0.268951 1.905846 -2.227586 -1.844260 -1.420601 -0.997963 0.249575 -0.139586 0.993993 -1.065919 0.178952 -0.571944 0.384670 -1.171675 -0.727940 0.582139 1.015377 1.602467 0.283528 0.226167 1.981530 0.669563 -0.606131 -0.514129 0.053130 -0.988006 0.597758 -2.336854 -0.357431 0.380149 0.857103 -1.324449 0.323518 -0.225177 0.472817 0.028141 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 1.192575 -0.686351 -0.437876 2.005353 0.280149 0.255229 0.464689 0.157536 0.174983 -2.913801 -1.195872 1.343104 0.329513 0.327656 -0.002556 0.743859 0.787797 0.512540 -2.638676 -0.106688 0.473842 -0.155859 -0.265211 -0.068658 -0.092934 -1.049173 1.143306 0.913548 0.254672 1.880651 -0.634373 0.982297 1.637515 -0.054165 0.646729 1.459950 0.305614 -0.117929 -1.036967 -0.525381 2.550358 0.541150 -0.112099 0.863183 -0.147981 2.148941 0.584727 2.175639 0.831820 -0.846309 1.013778 -0.245503 -0.929287 -0.384927 -2.061042 0.381896 1.134406 0.857619 -0.941021 0.990000 -0.487492 0.523401 0.725111 0.248718 2.034899 0.715717 1.519409 1.522880 1.842822 -1.760025 0.184147 0.559460 0.461018 0.342410 1.290707 -1.283116 -1.068332 -1.149905 0.069962 -1.839397 -0.219675 -0.265002 2.361176 -1.476710 -0.452454 0.503834 0.170251 1.823613 -1.005628 0.344742 -2.045548 0.015315 0.111274 2.451632 0.381826 0.314277 -0.195177 0.611510 0.016630 0.737085 0.500402 -1.801385 -0.508470 -2.806660 -1.306768 -1.314936 0.287429 0.488660 -1.934213 0.012177 0.183236 1.356131 -2.660644 -0.164655 0.601672 0.771517 1.701344 0.259253 -0.655729 -0.063990 0.298753 0.585918 0.989859 -1.056561 0.598718 -0.619655 0.362223 0.338992 0.667987 0.286848 -2.061018 -0.652753 0.496424 -0.039267 0.216151 0.653121 0.888489 -0.772163 1.005149 -1.250796 1.588454 -2.176944 -0.492530 -0.764309 -1.524291 -0.937224 2.350214 1.176114 1.639851 0.022141 -0.930504 -0.140264 -2.185788 -3.199921 0.121762 0.243199 0.185951 0.743947 -0.459307 0.650858 -1.452154 0.305211 0.916593 -0.920042 -0.940936 -0.026050 0.631048 0.132206 -0.624534 -0.849503 0.160531 0.324490 0.320490 1.931290 -0.613788 -2.933708 -2.499785 -1.153038 1.684075 -0.966852 0.041625 -0.582769 -0.723756 -1.617241 0.187846 -1.369478 0.231371 -0.083055 -1.308818 -2.310760 0.879141 -0.518399 -0.266996 0.858643 -1.759457 0.387940 0.661617 0.550047 0.298725 0.298886 0.072026 -1.762632 -1.443383 0.232916 -0.886178 2.021547 0.815257 -0.049452 -0.797990 -0.963534 -1.431431 1.219260 -1.483477 1.000942 0.186862 -0.821222 0.891516 -1.440469 0.024966 -1.209722 0.864529 0.572783 -2.326808 2.540426 1.767041 -1.411002 -0.436661 -0.530997 0.752918 0.294027 1.576222 -1.446652 -1.110645 0.611987 0.142922 -0.049317 -0.449377 0.590423 -0.248210 -0.255378 -1.914214 -0.941854 1.304297 1.094023 -0.266310 0.136033 1.069386 -0.320913 0.136438 2.031825 0.847081 0.321224 -1.317808 -3.803766 0.876157 0.090750 -0.354636 0.434531 -1.375299 -0.555602 0.710232 -0.651139 1.692181 0.376715 -0.506750 1.836200 -2.009078 -1.792947 -1.277479 -0.727116 0.446373 -0.373331 0.624036 -0.987862 0.335879 -0.397652 0.368386 -0.646357 -0.858695 0.136036 0.763628 1.600254 0.144481 -0.032772 2.027145 0.376080 -0.545379 -0.381249 -0.001058 -0.576897 0.684514 -1.786181 -0.394244 0.200089 0.915598 -1.243587 0.551787 -0.254611 0.321365 0.409369 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 1.217421 -0.193530 -1.023624 3.173376 -0.150430 0.527370 0.569551 0.101029 -0.074450 -4.704346 -1.885856 1.681464 0.757497 0.734108 0.083971 1.186468 0.634913 1.138354 -4.298549 -0.343115 1.468834 0.416980 0.310509 -0.073559 -0.010163 -1.103052 1.223473 0.560228 0.492050 2.963156 -0.776993 2.220320 2.689097 -0.257971 0.241668 1.777868 -0.266431 -0.002277 -1.233689 -0.775941 3.276073 0.402789 0.236043 1.187787 -1.037997 2.999766 0.537716 2.504436 0.565479 -1.547240 1.319408 0.018961 -0.984141 -0.421009 -2.254536 0.508930 1.540718 1.836110 -0.731905 1.155609 -0.495458 0.671126 1.169015 -0.001315 2.955627 1.703372 2.175197 2.720380 2.507575 -2.203195 0.909311 0.009959 -0.607346 -0.334074 2.123956 -1.912898 -1.293837 -1.111581 -0.503974 -3.436898 -0.486526 -0.144821 3.887662 -2.307629 -0.453912 0.143659 0.894205 3.093741 -1.074186 0.870079 -2.744586 -0.177986 -0.158406 3.206703 0.409372 0.334481 -0.939989 0.755559 -0.197139 0.326102 0.617699 -2.286056 -0.430840 -3.199359 -1.871447 -1.727997 0.665805 1.577283 -3.384145 0.146308 -0.656068 1.869888 -4.804535 -0.420645 0.557684 1.621475 2.451124 0.817704 -1.591472 -0.197284 0.419615 0.791189 1.199708 -1.529174 1.199808 -1.314097 -0.433096 0.451418 0.755624 0.553897 -3.368701 -1.397470 0.247080 -0.644850 0.673206 1.781463 2.114188 -0.358472 1.412664 -2.104721 2.151234 -3.238973 -1.066671 -0.718121 -2.621221 -1.589872 2.767049 1.890834 1.764675 -0.580109 -1.750949 -0.289771 -3.464999 -3.779693 -0.114525 0.249556 0.365286 1.686664 -0.777804 1.007176 -2.355701 1.152946 1.633081 -0.977087 -1.414040 -0.067936 1.403145 0.315923 -0.850975 -1.195383 -0.130593 -0.323062 0.076556 3.234086 -0.464641 -2.936829 -4.734127 -1.355267 2.608607 -1.428579 0.065480 -1.657310 -0.734168 -2.261580 -0.082090 -2.102238 -0.243407 0.423101 -1.673355 -3.503016 1.448654 -0.518768 -1.085609 1.210866 -2.445083 0.432761 1.798101 0.943233 0.559542 0.096661 -0.128326 -2.183729 -1.821298 0.572740 -1.858137 2.064786 1.401769 -0.084539 -1.779240 -1.444256 -1.961251 1.749518 -1.197838 1.673892 0.046632 -0.421592 1.110453 -2.472785 0.364430 -1.886327 0.706069 0.528510 -4.435581 3.271563 1.518510 -1.590760 -0.005337 -0.709365 1.485343 0.176370 1.276859 -1.851201 -1.791405 0.664204 0.077920 0.068704 -1.170625 0.549958 -1.014108 -0.762290 -2.279210 -0.848895 2.333169 1.187203 -0.616253 0.223440 1.890090 -1.104076 0.738225 2.360528 1.834134 -0.108706 -1.453731 -4.842406 1.063876 -0.308504 -0.257117 -0.265088 -1.797771 -0.508753 1.455201 -0.898356 2.337993 0.321193 -0.857500 2.512565 -3.299069 -2.502620 -1.893688 -0.594433 0.749228 -0.092511 -0.034209 -1.068483 0.718354 0.338045 0.504296 -0.570712 -2.251576 0.327377 1.265817 3.045363 -0.454641 0.185653 2.937541 0.855420 -0.559524 -0.401215 0.061752 -1.063642 0.091949 -2.819104 -0.282100 1.010843 1.254271 -2.118480 0.768349 -0.971040 -0.091377 0.479818 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 1.626562 -0.596408 -0.522320 2.760742 0.355339 0.009172 0.682834 0.726343 0.058738 -4.389824 -2.218613 1.287475 0.377215 -0.045664 0.485081 0.794994 0.924654 0.940901 -4.422732 0.082859 1.100203 0.060264 -0.343617 -0.385780 -0.047215 -1.309123 0.425245 1.300763 0.256663 2.667864 -0.946845 1.321604 2.368216 0.121519 0.869926 2.055010 -0.129948 -0.170410 -0.463727 -0.529001 3.783438 1.037569 -0.401370 1.182880 0.199541 2.984048 0.148735 2.742634 0.041306 -1.198125 1.531701 -0.897002 -1.220270 -0.299393 -2.704145 0.633835 2.377413 1.538515 -1.370015 1.517202 -1.087761 0.700732 1.030469 -0.187705 3.146109 1.513164 2.115960 2.229169 2.772870 -2.149816 0.347400 0.487207 0.592957 -0.052605 1.184334 -1.546474 -1.111687 -2.544128 0.050953 -3.569085 -0.324032 -0.325073 3.940077 -2.133859 -0.228000 0.996671 0.566411 2.686964 -1.520927 0.286694 -2.786850 0.050720 -0.189513 3.677744 0.374086 0.404508 -0.379727 1.022511 0.176595 1.041270 0.327380 -2.205134 -1.509623 -4.695320 -1.928883 -1.531797 0.386921 0.558411 -3.054005 -0.146084 1.086079 1.685371 -4.028973 -0.336056 0.936366 1.190064 1.527193 0.413859 -1.850756 -0.135453 -0.066725 0.794593 1.276477 -1.421797 0.673655 -1.577440 0.268624 0.497486 0.915818 0.338230 -3.146467 -0.882552 0.585247 -0.517954 0.124237 1.004028 1.192117 -0.889702 1.400428 -1.983523 2.321710 -3.481283 -0.278395 -1.257390 -2.345040 -1.087614 3.211042 2.160851 1.665416 0.238069 -1.288793 -0.282879 -3.246001 -4.393507 0.269777 0.224772 0.888346 0.442309 -0.609980 0.635451 -1.838751 0.423358 1.121187 -1.347443 -1.070778 -0.392831 2.214742 0.106473 -1.019284 -1.303475 0.146841 0.978663 -0.207564 2.342296 -0.961015 -2.862464 -3.689398 -1.672823 2.389651 -1.231543 0.053459 -1.046067 -0.453885 -2.547225 0.551996 -1.891028 0.433502 -0.169476 -1.838990 -3.308662 0.968146 -0.603704 -0.492458 0.894139 -2.321777 0.471024 1.484943 1.040831 0.418034 0.457088 0.214369 -2.501686 -2.285694 0.026701 -1.109233 2.692733 1.723410 -0.011093 -1.395572 -1.124840 -2.227235 2.127790 -1.499914 1.245547 -0.067186 -1.334389 1.612856 -1.976558 -0.358299 -2.061875 1.005810 0.591197 -3.598350 3.603278 2.135413 -2.007811 -0.637793 -1.450030 1.131585 0.546568 2.352259 -1.855453 -1.306191 0.737756 -0.189786 -0.129194 -0.889295 1.007911 -0.548500 0.066596 -2.745169 -1.276225 2.093249 1.601757 -0.392051 0.785810 1.299535 -0.083867 0.459303 2.849708 1.235770 -0.154419 -1.761682 -5.255251 1.163577 0.364926 -0.240084 0.130916 -1.654545 -1.210248 0.502022 -0.340664 2.475449 1.383721 -0.688098 2.498964 -2.691832 -2.550395 -1.738464 -0.270030 0.653470 -0.908348 0.600103 -1.154506 0.463352 -0.094679 0.658280 -0.055368 -1.879322 -1.060412 0.753503 2.484548 0.202986 -0.549276 2.844484 0.547775 -1.041196 -0.441032 -0.138909 -0.525624 0.965943 -2.199397 -0.709788 0.014577 1.125647 -1.790182 1.176477 -0.214238 0.464204 0.840969 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 4.439478 -3.766426 -5.661832 14.210083 0.087502 3.527592 0.968943 -2.590914 1.762103 -17.862180 -6.497313 11.121157 2.525082 2.687614 -0.472679 4.652242 2.952288 2.385476 -14.033919 -1.845433 3.156472 -0.586250 -0.347014 0.440983 -0.533388 -4.390566 11.599915 2.984790 1.746275 9.168141 -2.046392 8.954255 9.719158 -0.424102 1.656063 5.237333 -2.937096 0.344836 -8.211421 -4.965272 12.521594 1.734316 0.858886 5.487829 -3.442450 10.562463 5.049511 11.017437 6.905056 -4.549225 5.210633 4.688969 -2.609361 -2.783280 -10.154710 1.007151 3.639164 2.805699 -3.383266 2.563639 -1.068473 3.033931 3.888468 2.864380 12.657859 3.927646 11.969251 10.502008 7.066090 -8.420887 2.912657 0.571748 -0.562826 0.915524 11.201162 -7.369196 -8.185786 3.112885 -2.061506 -8.878405 -1.328762 -0.848864 13.438548 -7.144115 -4.788115 -3.045040 3.047261 11.917348 -3.449423 4.235062 -10.845525 -0.333582 0.055386 12.488796 2.318409 1.100585 -3.799151 2.510255 -1.917858 1.143990 4.424865 -9.754638 3.194233 -12.268980 -6.196812 -7.792443 4.009933 5.301717 -11.804809 1.797799 -6.313283 6.422733 -15.977273 -2.547100 1.711392 3.899518 14.932184 -0.435403 -3.038318 -0.061603 2.651435 3.529987 4.762287 -4.299372 4.346661 -3.121248 1.114920 1.647525 2.701691 3.598576 -12.955168 -4.763824 1.833653 0.449070 2.564923 6.452179 8.596072 -1.140999 4.832234 -5.404409 7.918403 -11.949888 -3.985665 -3.220879 -7.849711 -6.103441 10.691058 7.184861 10.048706 -2.724732 -4.811837 -0.501419 -13.463967 -16.553934 -1.311907 1.377062 -2.117710 6.049712 -2.377209 5.403657 -9.469003 5.520052 8.644791 -3.384466 -6.082139 0.079314 0.804554 1.358688 -3.304946 -1.216174 -1.309733 -4.046292 1.299064 14.638641 -0.526251 -19.337804 -18.028252 -3.877323 8.915528 -6.366931 -0.144433 -5.582239 -4.279418 -8.120496 -1.249909 -7.569951 0.581397 1.252401 -6.399543 -12.646785 4.544896 -1.895420 -0.875620 4.358744 -9.954180 1.977973 6.352541 3.042933 2.070771 2.299812 -0.660146 -8.470676 -5.097794 3.401624 -7.965403 10.012350 4.455292 -1.420279 -6.276691 -5.750753 -8.313346 4.421820 -5.901588 6.757657 1.110354 -2.867420 2.035752 -9.165328 2.510052 -5.013174 2.157962 1.831821 -16.884559 11.814796 7.390252 -5.742101 0.450045 -0.272642 5.460399 -1.204054 3.698409 -8.923359 -7.079852 0.953640 0.717678 0.506412 -1.813678 1.489775 -2.732716 -4.675282 -9.633614 -3.934411 8.383483 2.642081 -1.825369 -1.394378 6.324181 -6.101573 2.021473 9.238623 6.579628 2.129489 -6.396479 -22.054655 3.169993 -2.563148 -3.346570 0.544502 -6.146909 -1.837215 4.006523 -6.015607 7.901744 -3.204519 -4.586839 9.047129 -12.887945 -8.357513 -8.545274 -5.160443 1.607896 1.262955 1.761613 -3.196175 1.314227 -1.008412 1.062660 -5.544985 -6.608548 6.075007 5.812747 10.458952 -1.786696 1.140774 9.164450 3.627078 -2.391975 -2.138997 0.091821 -6.579715 2.289122 -15.501825 -1.357123 4.244354 4.526563 -7.338931 -0.107943 -2.888571 1.717491 -0.905043 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.762370 -0.775739 -0.388650 2.176859 0.193645 0.519821 0.370084 0.167173 0.226415 -3.317869 -1.308406 1.543793 0.237896 0.493728 0.082374 0.397453 0.823420 0.654953 -3.132677 -0.280726 0.688543 0.156189 0.208531 0.026639 0.022457 -0.763234 1.341457 0.658905 0.394580 1.849516 -0.531164 1.418690 1.718464 0.023294 0.438063 1.198328 -0.120413 -0.257864 -1.045377 -0.795601 2.437060 0.301519 0.152420 1.171863 -0.440891 2.006584 0.626474 1.732477 1.648047 -0.862931 0.846905 -0.273222 -0.698329 -0.493234 -1.952063 0.276325 0.695119 0.887904 -0.602601 0.727814 -0.258120 0.327760 0.637730 -0.281585 2.085861 0.719594 1.659368 1.835308 1.547930 -1.541524 0.334331 0.208679 0.081223 0.500615 1.233257 -1.357712 -0.898241 -1.328016 -0.462644 -2.127125 -0.310933 -0.505179 2.357332 -1.287370 -0.363695 -0.014696 0.116022 1.913891 -0.575045 0.422957 -2.099663 -0.148907 0.455972 1.577337 0.353072 0.128694 -0.288112 0.309485 -0.241428 0.471359 0.674363 -1.669187 -0.046200 -2.730448 -1.039464 -1.184330 0.483539 0.741840 -1.918106 0.377859 -0.637854 1.294793 -2.879538 -0.582332 0.269364 0.753893 1.474284 0.100528 -0.730686 -0.353692 0.493289 0.681553 0.891178 -1.267857 0.708237 -0.827295 -0.164487 0.195650 0.661707 0.428526 -1.635356 -1.147120 0.284847 0.366310 0.349233 0.847877 1.227960 -0.158576 0.891396 -1.164198 1.520363 -1.839014 -0.714686 -0.568401 -1.103049 -1.111114 3.015670 1.152780 1.631703 -0.033143 -1.013851 -0.050380 -2.039261 -2.832602 0.239910 0.116086 0.183615 1.128566 -0.467866 0.807365 -1.493033 0.539144 0.878500 -0.643195 -0.948889 0.025419 -0.526531 0.198348 -0.382072 -0.894114 0.193759 0.179401 0.057602 2.054675 -0.497400 -2.743537 -2.674269 -0.912225 1.628452 -1.034957 -0.043225 -0.710565 -0.568929 -1.141131 -0.082163 -1.433715 -0.228982 0.035738 -1.589847 -2.344118 0.911320 -0.511008 -0.200115 1.036169 -1.619719 0.394538 0.784318 1.335864 0.309077 0.214622 -0.153561 -1.603670 -1.301852 0.098769 -1.173344 1.733006 0.550924 -0.161458 -1.377285 -0.988241 -1.205396 1.259010 -1.189266 1.145865 0.142462 -0.789582 0.575745 -1.466447 0.331352 -1.191048 0.620383 0.613249 -3.515432 2.069660 1.156864 -1.210978 -0.223445 -0.597031 0.779751 0.120268 1.040134 -1.258014 -1.117179 0.510690 0.271176 0.076143 -0.990109 0.362038 -0.208033 -0.598606 -1.877730 -1.007186 1.524824 0.699155 -0.293217 0.017072 1.361482 -0.236026 0.185437 1.984867 1.156829 0.273476 -1.120513 -3.716758 0.758921 1.268630 -0.065715 0.348293 -1.727213 -0.468714 0.801509 -0.971431 1.472900 0.143028 -0.370208 1.702040 -1.899228 -1.477854 -1.285264 -0.679590 0.558218 -0.042083 0.490899 -0.834802 0.360816 -0.182139 0.254931 -0.605809 -1.036396 0.316610 0.957063 1.609441 0.046033 0.422198 1.822230 0.542959 -0.703241 -0.214357 0.018723 -0.936695 0.269118 -2.251806 -0.166895 0.578551 0.751760 -1.254277 0.298956 -0.474341 0.252295 0.044200 -PE-benchmarks/cutting-a-rod.cpp__main = 0.798910 -0.575523 -0.233731 1.517876 0.108004 0.234003 0.440795 0.380225 0.123789 -2.781884 -1.318209 0.594113 0.233567 0.256654 0.263536 0.491187 0.521741 0.666954 -2.586294 -0.153616 0.748099 0.155250 0.212824 -0.156604 0.020877 -0.707368 0.169964 0.528144 0.271923 1.620538 -0.537076 0.894020 1.430849 0.054356 0.255101 1.148530 0.060540 -0.096883 -0.393676 -0.389414 2.051800 0.416928 -0.145276 0.675547 -0.233178 1.684402 0.100333 1.725809 0.470129 -0.775776 0.960911 -1.081748 -0.753523 -0.135726 -1.468114 0.403946 1.284858 1.070188 -0.579403 0.859355 -0.446931 0.442654 0.538020 -0.455915 1.667805 0.882053 1.173891 1.316364 1.447347 -1.351254 0.248898 0.203931 0.061149 -0.017070 0.728555 -1.216816 -0.409993 -1.831662 -0.029478 -2.037042 -0.206894 -0.224222 2.259424 -1.278435 -0.170861 0.669178 0.191682 1.571342 -0.658318 0.372769 -1.628009 0.045883 0.191832 1.836446 0.267854 0.078822 -0.329994 0.490599 0.096943 0.481665 0.430848 -1.117655 -1.000340 -2.606024 -1.010838 -0.847804 0.346308 0.537067 -1.749989 -0.007641 0.568706 0.908935 -2.466689 -0.175718 0.543000 0.918709 0.863057 0.350110 -1.004732 -0.139818 0.090117 0.480503 0.730741 -1.051592 0.477672 -0.943890 0.027742 0.248399 0.547652 0.110710 -1.636988 -0.724075 0.196695 -0.027546 0.169522 0.643531 0.886178 -0.313106 0.834428 -1.145081 1.256856 -1.910371 -0.219504 -0.527304 -1.320965 -0.734567 2.496488 1.121606 0.988687 0.131302 -0.939927 -0.228173 -1.699825 -2.474988 0.176262 0.237578 0.679591 0.580457 -0.383272 0.450955 -1.067982 0.412814 0.460290 -0.695496 -0.610110 -0.032887 0.702488 -0.009237 -0.558471 -0.940188 0.211811 0.651551 -0.323690 1.353975 -0.475199 -1.420878 -2.106608 -0.997770 1.406143 -0.748474 0.131646 -0.594051 -0.185607 -1.403888 0.260981 -1.103462 0.115250 0.170417 -1.394483 -1.961510 0.654359 -0.369175 -0.342149 0.801702 -1.311122 0.247301 0.641965 0.896995 0.267893 0.206586 0.153471 -1.563833 -1.436525 -0.158259 -0.915598 1.427783 0.793386 -0.035626 -0.889991 -0.733882 -1.094968 1.229335 -0.989648 0.735162 -0.233426 -0.570988 0.762546 -1.191821 -0.000276 -1.288792 0.558746 0.490937 -2.371993 1.996263 1.075845 -0.992326 -0.310480 -0.850953 0.629079 0.299882 1.262118 -0.984133 -0.811870 0.465322 -0.148412 -0.014909 -0.696213 0.548674 -0.338376 -0.155032 -1.489710 -0.700101 1.109398 0.852305 -0.233539 0.544222 1.136886 0.132978 0.136254 1.661160 0.732308 -0.252252 -0.949650 -3.148724 0.743605 0.961977 -0.095083 0.210055 -1.314280 -0.499635 0.569357 -0.221540 1.312473 0.988744 -0.121651 1.454657 -1.478694 -1.356654 -0.821482 -0.240875 0.467726 -0.438032 0.217187 -0.617691 0.330074 0.059698 0.251800 0.010468 -1.130353 -0.599561 0.472470 1.629003 0.081236 0.004930 1.645857 0.306442 -0.610839 -0.137055 -0.125957 -0.304021 0.433176 -1.199830 -0.247110 0.248016 0.597349 -1.064818 0.586229 -0.279114 -0.037511 0.377529 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 2.279631 -2.606391 -2.301021 5.294885 0.215091 1.132495 0.536000 -0.475148 0.489258 -8.170758 -2.922565 4.621873 0.997533 1.249804 -0.324471 2.257670 1.561740 1.059460 -6.537576 -0.504663 1.200122 -0.423329 -0.233650 0.036343 -0.048163 -2.076526 4.318144 1.034180 0.729794 3.979291 -1.183602 3.787820 3.853063 -0.165368 1.379577 2.557364 -0.969918 -0.307706 -3.006380 -1.919375 5.515198 0.942765 0.530647 2.087357 -1.313896 4.408814 1.698859 5.398809 3.630467 -1.808572 2.461624 0.280010 -1.816653 -0.743173 -4.840992 0.575291 1.377294 1.010273 -1.402444 1.387493 -0.504390 1.225842 1.501388 0.462200 5.696255 1.047999 4.903910 4.343525 3.142011 -3.459419 0.991939 0.684460 0.079181 0.581950 4.538759 -3.902172 -2.894652 -0.525995 -0.514462 -4.184527 -0.213366 -0.607509 6.241685 -3.064261 -2.038983 -0.582204 1.092140 5.055357 -1.503061 1.509178 -4.723581 -0.095502 0.482957 5.080937 1.016377 0.833649 -1.449146 1.112943 -0.643459 0.834908 1.792598 -4.037689 0.521999 -6.048072 -2.306699 -3.092777 1.329082 1.972957 -4.816566 0.674285 -1.954813 3.485537 -6.843009 -0.613128 0.818150 1.534528 6.193882 0.496107 -1.531200 -0.239388 0.997101 1.735385 1.834243 -2.193897 1.548940 -1.502614 0.815526 0.483770 1.597609 1.135600 -5.737702 -1.927679 0.932208 0.981464 0.891278 2.400626 3.529256 -0.851551 2.046792 -2.375078 3.128476 -5.032765 -1.588983 -1.670879 -3.708304 -2.456580 6.527759 3.206838 4.498391 -0.661830 -1.856015 -0.116096 -5.644867 -7.823105 0.093785 0.384801 -0.353779 2.571633 -0.889262 1.976651 -3.678696 2.031097 3.211641 -1.808485 -2.432208 -0.072179 -0.303978 0.591998 -1.313101 -1.161090 -0.289631 -0.454492 0.652073 5.598795 -0.706079 -8.170289 -7.150847 -2.032136 3.630578 -2.474079 0.178421 -1.765024 -1.643322 -3.278861 -0.385583 -3.331138 0.323502 0.273542 -3.301431 -5.163624 1.710833 -0.831508 -0.546027 1.827056 -3.874720 0.936494 2.029845 2.050504 0.629358 0.809887 -0.064453 -3.991493 -3.108128 1.295536 -3.239488 4.218914 1.787511 -0.557037 -2.494998 -2.264187 -3.511285 2.134279 -3.649378 2.716218 0.389769 -1.668122 1.090152 -3.992321 1.048115 -2.196857 1.400199 0.848335 -7.800292 5.576941 3.260910 -2.663136 -0.105516 -0.678406 2.070578 -0.111388 2.241732 -3.080955 -2.567928 0.751757 0.330719 0.137459 -0.921868 0.974475 -0.913983 -1.524095 -4.298371 -2.162479 3.272246 1.483239 -0.542893 -0.176061 2.504052 -1.693579 0.072454 4.700394 2.526681 0.771176 -3.143469 -10.288315 1.401600 0.864173 -1.408371 0.866886 -3.436436 -0.862515 1.759695 -3.041440 3.391340 -0.719506 -1.516852 3.746845 -5.299592 -3.567406 -3.227030 -1.980392 0.840539 0.169064 0.905169 -1.790276 0.628658 -0.691106 0.748265 -2.009945 -2.764166 1.891229 2.349537 4.314583 -0.005743 0.794457 4.019753 1.297015 -0.846976 -0.948825 0.039701 -2.195330 1.374876 -6.554909 -0.782829 1.306812 1.838183 -2.928959 0.318389 -0.882105 0.891419 0.053398 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.732990 -0.408762 -0.205248 1.584591 0.146449 0.394875 0.309507 0.114386 -0.074335 -2.479700 -1.396775 0.286552 0.227671 0.362466 0.381146 0.538409 0.585973 0.316980 -2.674865 -0.160779 0.745682 -0.173894 0.272808 0.140304 0.029850 -0.932001 0.373020 0.733294 0.162551 1.570222 -0.526632 1.128833 1.385405 0.117535 0.439379 1.085848 -0.418494 -0.206223 -0.452715 -0.278988 1.964041 0.228623 -0.025106 0.390989 -0.295054 1.732663 0.140551 1.478046 0.746842 -0.752627 1.229030 -0.638446 -0.626559 -0.048472 -1.523147 0.166682 1.009716 0.773395 -0.565248 0.659856 -0.693800 0.475236 0.497891 -0.292007 1.809491 0.649157 1.332515 1.188173 1.230980 -1.332606 0.269933 0.304072 -0.045191 0.036890 0.353993 -1.108559 -0.405077 -1.491543 -0.011601 -1.909216 -0.267685 -0.204715 1.856674 -1.053592 -0.482162 0.307470 -0.023103 1.625426 -0.700403 0.476719 -1.626101 0.026291 0.181309 1.358107 0.262245 -0.001435 -0.051324 0.346032 -0.085849 0.544251 0.157139 -1.235405 -0.913859 -2.388566 -1.158269 -0.869364 0.632261 0.523115 -1.791700 0.249897 0.275131 0.650796 -2.136408 -0.228241 0.443772 0.954932 0.435275 0.455183 -0.952317 -0.481162 0.309953 0.891663 1.037497 -0.774856 0.712205 -1.227489 0.160742 0.285327 0.627368 0.088750 -1.168443 -0.778341 0.326517 -0.212690 0.240049 0.672403 0.953905 0.046056 0.862484 -0.921312 1.370529 -1.881430 -0.183632 -0.866271 -0.954965 -0.754184 1.953384 1.502902 0.900070 0.257678 -0.823103 0.109236 -1.773245 -2.036424 -0.232721 0.165612 0.503598 0.560424 -0.419745 0.761257 -0.997794 0.483837 0.370134 -0.697363 -0.812213 -0.160806 0.296763 0.302342 -0.569631 -0.799087 0.147769 0.209933 -0.564233 1.574471 -0.338337 -1.502472 -2.076515 -1.065973 1.387349 -0.854928 0.069315 -0.709874 -0.194061 -1.347383 0.234052 -1.149674 -0.306174 0.170627 -1.231364 -1.855665 0.647462 -0.358474 -0.323919 0.736346 -1.368726 0.209638 1.015969 0.848701 0.501579 0.324624 -0.156254 -1.183275 -1.140108 -0.074024 -0.923129 1.324738 0.857385 -0.242761 -0.916202 -0.871093 -0.985557 1.149769 -0.568083 0.818641 -0.107655 -0.680489 0.562702 -1.174287 0.157706 -0.842108 0.471302 0.417868 -2.766267 1.679604 1.189266 -1.064837 -0.319118 -0.936543 0.710423 0.114480 1.100682 -0.793828 -0.544251 0.200086 0.233091 0.007300 -0.494076 0.518249 -0.308322 -0.546802 -1.436463 -0.766984 1.263103 0.806324 -0.148424 0.286192 1.039991 0.288464 0.587814 1.397964 0.613950 -0.247225 -0.754513 -3.229216 0.624725 1.050138 -0.185724 0.399170 -1.113330 -0.530367 0.345139 -0.431991 1.414507 0.761989 -0.217242 1.483939 -1.080069 -1.313014 -1.288291 -0.287032 0.199860 -0.314822 0.150223 -0.679341 0.245421 -0.027912 0.205111 -0.116256 -1.004233 -0.560325 0.556357 1.549912 0.128599 0.168584 1.552109 0.486544 -0.522366 -0.490645 0.096933 -0.640398 0.579900 -1.147476 -0.398077 0.339289 0.564892 -0.991555 0.140919 -0.229240 0.182823 0.252268 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.618265 -0.071276 -2.023133 4.912790 -0.268015 1.427280 0.504136 -0.884140 -0.382409 -6.205208 -2.909483 2.742756 1.330715 1.816545 -0.241193 2.274466 0.789995 0.878660 -5.783952 -0.843732 1.802684 -0.539341 0.663500 0.257879 -0.121513 -2.191258 3.373503 1.170995 0.632544 4.190830 -0.909134 3.703551 3.691818 -0.195152 0.646146 2.415892 -1.373285 0.003952 -3.020556 -1.438950 3.990762 0.564378 0.351830 0.942100 -2.228343 4.390492 1.655951 2.905536 1.568983 -2.128714 1.873744 2.057530 -1.596092 -0.782364 -3.288186 0.170456 1.278950 1.541084 -0.680210 1.096044 -0.992836 1.081067 1.525641 0.614639 4.270073 1.156644 3.840180 3.592415 2.704622 -3.698211 1.161889 0.557715 -1.136800 -0.273155 3.215376 -2.754197 -2.859006 0.780787 -0.516269 -4.497119 -0.948500 0.215741 5.040033 -2.929353 -2.097923 -0.908249 0.935923 4.608225 -1.659412 1.727746 -3.715838 -0.250791 -0.645751 4.251616 1.324524 0.356454 -0.894072 0.882138 -0.372481 0.696475 0.680285 -3.614935 0.373827 -4.020879 -2.362452 -2.954697 1.918938 2.690577 -4.406275 0.557880 -1.784369 2.941441 -6.031016 -0.411194 1.050018 2.450009 3.748196 0.588836 -1.524941 -0.118875 1.227558 1.681467 2.789749 -1.819334 2.070335 -0.660820 0.154075 0.325652 1.223179 1.070494 -4.522667 -2.186235 0.779975 -0.998820 1.526549 2.579826 3.475167 0.094196 2.087879 -2.303663 3.260591 -4.628001 -0.959340 -1.311847 -3.173016 -2.509243 2.108890 3.534518 2.776222 -1.249062 -1.540827 0.289061 -5.076824 -5.121790 -0.769627 1.034963 -0.408301 2.564567 -1.181505 2.551448 -3.597158 2.305583 2.786522 -1.388863 -2.550060 0.367432 1.617754 1.204668 -1.334170 -1.094781 -0.577394 -2.289055 0.332208 5.607440 -0.262679 -5.702276 -6.762945 -2.124001 3.761213 -2.492450 -0.236896 -2.539360 -1.694711 -2.788202 -0.381881 -3.185359 -0.633565 1.095386 -2.093561 -4.791436 1.987161 -0.603793 -1.729322 1.998937 -3.837702 0.384581 3.361999 0.401844 1.161031 0.407728 -0.321242 -2.173968 -1.502762 1.546151 -3.286989 2.763152 2.295920 -0.709140 -2.645508 -2.367144 -2.678771 1.891227 -0.974713 2.757033 -0.306090 -0.407530 0.950224 -3.701182 1.279739 -1.422903 0.966068 0.836957 -6.911497 4.268571 3.161854 -1.921819 0.228745 -0.087561 1.885306 -0.250397 1.359113 -2.945697 -2.690245 0.294427 0.495994 0.230588 -0.340397 0.726136 -1.479724 -2.474709 -2.860376 -1.063069 3.126554 1.407267 -0.463248 -0.052233 2.681689 -1.695498 1.760976 2.728776 2.444212 -0.003079 -2.226314 -7.760914 1.555286 -1.389771 -1.305441 0.296162 -1.767117 -0.669114 2.122612 -2.337063 3.343862 -0.772007 -2.302860 3.707278 -4.110433 -3.388766 -3.829151 -1.641041 0.612642 0.353187 0.038089 -1.663633 0.972225 -0.040978 0.096227 -1.769407 -2.643260 1.978238 2.218349 4.541088 -0.400846 1.016108 4.034915 1.461404 -0.510432 -1.511631 0.343843 -2.647575 0.542266 -4.651461 -0.596574 1.969765 1.959281 -2.723265 -0.461993 -1.072063 0.006500 0.409938 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 1.015516 -0.206671 0.044311 1.489246 0.261341 -0.153503 0.587690 0.666891 0.066243 -2.668720 -1.176894 0.786509 0.118326 -0.114720 0.191625 0.315720 0.668529 0.935061 -2.626526 0.077771 0.716120 0.408942 -0.036564 -0.531475 0.060035 -0.597033 -0.016018 0.644133 0.301356 1.720417 -0.691957 0.514614 1.395840 0.139282 0.554306 1.413242 0.376219 -0.054705 -0.103263 -0.455470 2.364499 0.671915 -0.034059 0.940237 0.258863 1.805161 0.082931 1.520895 0.011729 -0.782929 0.709039 -0.966408 -0.842501 -0.176159 -1.587080 0.547240 1.498997 1.320894 -0.887548 1.150758 -0.343410 0.443863 0.618887 -0.405145 1.610477 1.021456 0.699315 1.352211 1.881135 -1.315275 0.163140 0.207365 0.501306 -0.050506 0.764237 -1.104327 -0.511986 -1.917170 -0.107505 -2.392463 -0.042212 -0.186424 2.532963 -1.438562 0.428484 1.012210 0.243990 1.406082 -0.734163 -0.157817 -1.682815 0.080712 -0.112372 2.327702 0.145823 0.264905 -0.165102 0.590200 0.231980 0.650774 0.264509 -1.235415 -0.960244 -2.926245 -0.993283 -0.894041 0.091124 0.221158 -1.658864 -0.272678 0.768159 1.186025 -2.703208 -0.215948 0.602981 0.732113 0.357954 -0.054908 -0.893239 0.061615 -0.293703 0.318738 0.535870 -1.217649 0.163483 -0.727805 -0.318450 0.247695 0.643360 0.070143 -1.822957 -0.622945 0.118682 -0.224126 -0.077487 0.480298 0.484266 -0.653412 0.831080 -1.490361 1.356845 -1.866330 -0.158919 -0.579483 -1.476130 -0.702514 2.124304 0.691420 0.948925 0.101571 -0.818670 -0.389675 -1.739997 -2.564958 0.620242 0.059428 0.840918 0.443122 -0.326947 0.085264 -1.169489 -0.087168 0.460820 -0.799619 -0.516215 -0.202941 1.358296 -0.214456 -0.610243 -1.111093 0.353938 1.024476 -0.066656 1.006790 -0.851941 -1.298567 -2.085785 -1.082105 1.485893 -0.681210 0.101631 -0.451686 -0.164611 -1.197394 0.359526 -1.237030 0.483155 -0.172724 -1.072827 -2.032875 0.643371 -0.509522 -0.194455 0.689623 -1.236923 0.339208 0.622229 0.641967 0.017070 0.194289 0.417328 -1.653702 -1.451809 -0.178743 -0.480453 1.272244 0.874327 0.238119 -0.942957 -0.640071 -1.171030 1.263067 -0.948126 0.672996 -0.082105 -0.674011 1.176488 -1.050856 -0.008304 -1.484165 0.684143 0.556068 -2.115801 2.051704 1.076879 -1.264970 -0.492212 -0.980526 0.580651 0.477623 1.609994 -1.050084 -0.920844 0.760228 -0.469809 -0.073502 -0.920170 0.585720 -0.214369 0.416453 -1.701823 -0.733619 1.195527 1.025723 -0.302641 0.651350 1.003088 -0.007097 0.140978 1.904696 0.749934 0.044442 -1.235344 -2.924220 0.832853 0.507966 0.340364 -0.026162 -1.010162 -0.710959 0.579235 0.223388 1.436360 1.212831 -0.223892 1.525811 -1.723235 -1.585754 -0.623544 -0.071439 0.719227 -0.766505 0.163279 -0.748420 0.351865 -0.054641 0.516605 0.262651 -0.959264 -0.865301 0.411381 1.579540 0.253179 -0.363034 1.850842 0.148277 -0.716246 0.115414 -0.171791 0.117670 0.359413 -1.108992 -0.354780 -0.102586 0.695625 -1.140822 1.142468 -0.259874 0.134660 0.641496 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 3.474216 -2.357393 -2.367177 6.690489 0.105412 1.180601 0.815418 -0.028340 0.720944 -9.305958 -3.633522 4.829099 1.151376 0.972626 0.445977 2.718287 2.130710 0.974690 -8.541552 -0.181485 1.763537 -0.644519 -0.448194 0.254717 0.131930 -2.943327 3.990574 1.337483 0.649146 5.281102 -1.661157 4.701012 4.712515 -0.133040 2.092052 3.307247 -1.854793 -0.443034 -2.611528 -1.887730 7.014191 1.809738 0.572919 2.300929 -1.231362 5.744263 0.753478 6.967682 3.162298 -2.421186 4.108775 0.283624 -2.226452 0.092989 -5.864274 0.758074 2.518538 1.420445 -1.777359 2.035841 -1.950337 1.960459 1.945946 0.596337 7.392548 2.252546 5.588949 5.514615 4.356012 -4.057362 1.638259 0.692714 0.228053 0.110007 4.897407 -4.080160 -3.315654 -1.050947 -0.549469 -5.237143 -0.232734 -1.091421 7.491925 -4.062144 -1.625681 -0.212219 1.540344 6.396234 -2.441978 1.879285 -5.766405 0.096447 0.226366 6.810773 0.711980 1.530722 -1.525924 1.347386 -1.025969 0.936225 1.611271 -4.911628 -0.265432 -7.300362 -3.618197 -3.601927 2.012171 2.125269 -6.769769 1.470906 -1.614359 3.447710 -8.788566 -0.586794 0.704489 2.138511 6.547919 1.434418 -1.932161 -0.644519 0.969516 2.785299 2.214914 -2.785087 2.225446 -3.487608 0.393802 1.179416 2.370196 0.968570 -6.806141 -1.893083 1.143694 -0.017395 0.911421 3.431561 4.151772 -1.145938 2.757767 -3.505791 4.203416 -6.571338 -2.147851 -2.987474 -4.217229 -2.888350 7.239621 4.247922 5.309723 -0.180003 -2.612760 -0.264805 -7.684864 -8.812800 -0.578979 -0.060654 0.145801 2.815457 -1.009210 2.142117 -4.522033 2.304264 2.835277 -2.668462 -2.925106 -0.509236 0.843439 0.764971 -1.918813 -1.959269 -0.341917 -0.576767 -0.180040 6.722970 -0.603090 -9.196894 -9.317368 -2.794007 4.745519 -3.012611 0.538502 -2.578320 -1.260268 -3.965697 -0.544109 -4.137380 0.278436 0.389740 -3.337260 -6.422928 2.221118 -0.979057 -0.325293 1.849065 -4.702484 1.144055 3.459644 2.272796 1.029443 1.597532 -0.131584 -4.428286 -3.663844 1.244153 -3.566786 5.127397 2.520271 -1.003732 -2.389330 -3.022190 -4.633004 3.020292 -3.978212 3.294018 0.492990 -2.445298 1.603676 -4.630260 0.448980 -3.365294 1.629309 0.617691 -8.562009 6.187248 3.670762 -3.872900 -0.359342 -2.138008 3.267410 -0.131712 3.430455 -3.122586 -2.519945 0.732717 0.583833 0.077774 -1.248546 1.459555 -1.402888 -1.765538 -5.136861 -2.314716 4.898827 2.169557 -0.827952 -0.204596 3.101912 -1.993526 1.707867 4.910962 3.173460 0.382199 -3.961156 -12.232702 1.560211 0.111825 -1.249344 0.264289 -4.079645 -1.568249 1.897830 -2.103277 4.585498 0.017045 -1.223222 4.786137 -6.437093 -4.793274 -4.266699 -1.681720 0.612731 -0.356209 0.364094 -2.181858 0.855952 -0.277456 1.621515 -1.622592 -3.573246 0.738341 2.686964 5.385653 -0.003398 0.256912 5.219249 2.274156 -1.131657 -1.470760 0.247799 -2.874158 1.398319 -6.828420 -1.071487 1.326832 2.150321 -3.960420 0.927385 -0.741868 1.290869 0.203521 +PE-benchmarks/channel-assignment.cpp__main = -1.581319 0.319871 -0.558139 -0.939563 2.970957 -1.571012 0.267727 1.700208 -0.096449 1.628319 -1.169029 -0.415000 -0.763096 -2.290668 0.459351 0.291909 0.534602 2.117772 -0.412261 0.825779 1.464251 -0.294599 0.070795 -0.631679 -0.480576 -0.646813 -0.331433 0.630039 0.695715 -1.298903 -0.665342 0.907046 2.958222 0.013724 2.613210 2.027093 0.990691 2.471378 0.858560 -0.569983 0.060945 1.432160 -0.969136 -2.487639 0.955770 -0.641575 -1.197837 -1.339729 1.088245 -0.910090 2.227575 1.740192 -0.180949 0.104599 -1.567996 0.762552 1.076452 0.469403 2.283684 0.869534 -1.105551 0.807599 -1.645405 1.801210 -1.422725 0.758395 -0.064601 -2.072358 -0.206043 0.477547 1.816766 -2.610458 -1.742485 0.994550 0.274576 -1.389073 0.949160 -0.296477 0.789448 -2.169686 -2.562982 0.410665 -1.115227 1.744544 -0.434180 0.294409 -1.599765 0.448024 0.119439 -2.163440 -0.108422 1.577973 -1.295259 0.829079 -1.058608 0.911167 0.242980 -0.050919 -1.253774 -1.310060 0.669833 -0.517658 1.088528 0.765732 0.803713 -0.503293 0.512446 0.079602 0.256660 1.154260 1.520133 0.818842 1.198136 1.306277 -0.191770 -0.028611 -2.679960 1.065881 -0.549656 0.451354 -0.060286 0.984003 1.018477 -0.191015 1.516238 -2.610914 1.217629 0.198110 -0.267110 -1.488225 0.797344 -0.502790 -1.036220 -1.239388 1.927121 0.076228 -0.610340 -0.465521 0.606776 0.251259 -1.448851 -0.841586 -0.454543 1.418854 -1.674488 0.351054 -0.906566 -1.464578 -0.118549 0.618195 0.931179 1.615410 2.330379 2.048458 -0.760235 -0.259135 -2.641900 0.253364 2.189343 0.407424 -1.862876 1.665557 -0.959185 -0.170824 1.111380 1.754907 1.259879 0.050859 -0.515173 -0.574489 0.538386 0.219138 2.275997 0.042959 0.697345 -1.286428 0.511711 0.467573 -0.925681 3.609838 0.428965 -2.276682 0.459438 1.217095 -0.179280 -1.134572 0.744748 -1.240737 -0.578897 -1.101307 1.039352 1.202730 -1.792463 -0.970123 0.569805 -1.848781 1.661879 -0.503916 -0.977777 0.751212 -2.580424 -0.012930 3.081331 0.378127 -0.467568 -1.091444 -1.937368 0.041013 -2.249493 0.856693 0.252359 0.031107 -0.978036 -1.619680 -0.168451 2.369344 -0.046011 0.571960 -1.596947 -0.387852 1.147379 -0.198094 0.792748 -2.285579 -0.644196 0.320092 0.384582 0.703543 -0.233458 0.504190 2.833866 -1.794121 0.052418 2.325551 0.340278 0.571055 1.587685 -2.242808 2.352585 -0.190355 1.527304 0.023994 0.767226 -1.204764 -0.193016 0.196104 1.439765 -0.589324 0.669299 -0.824357 -0.458058 0.235502 -1.411855 -1.247101 0.190393 1.132029 0.149542 0.565513 -0.686635 -0.835329 -0.366991 -1.108253 0.451836 1.810797 -0.108538 -1.303437 1.107334 0.417825 -0.747012 0.385352 0.390503 0.575589 2.036332 -2.229369 0.568480 -0.081059 0.625148 -1.423255 -2.195976 0.392778 -1.213043 -0.596660 1.237407 -2.230158 -1.044635 -1.240227 1.045723 -2.099007 0.448001 -0.131119 2.220750 1.237586 -0.373855 1.403008 -0.349898 1.323446 0.026290 -0.471971 0.166369 2.080519 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -4.212474 3.861014 0.901597 -3.719230 8.431558 -1.565892 1.223597 2.518959 -3.442034 6.946959 -3.034693 0.049223 -1.463476 -8.261469 0.590143 -3.599586 -1.016923 3.201344 0.634980 4.762073 3.027246 -4.769748 0.860837 -0.735831 -2.662048 -7.521889 -0.486110 2.611338 6.072555 -3.882197 2.519485 0.092932 7.374241 -1.305140 6.217390 5.641183 1.758941 5.005120 2.024922 -3.387142 -1.878992 3.106023 -3.831228 -4.809099 0.489200 -0.876709 -5.618790 -3.070109 2.849798 -2.751169 -1.740010 6.274367 -1.889970 -0.509041 -5.229016 4.847578 3.550275 -0.947330 7.480235 0.685569 -0.848371 -1.991397 -6.530573 5.819797 -3.125672 -1.017690 -1.551583 -4.206001 2.495993 0.456664 -2.337474 -2.157134 -1.598891 5.917077 4.198644 -6.287018 0.447232 -3.439213 -8.961498 -5.859674 -4.384980 2.176862 -0.048853 5.867818 1.091906 2.634221 2.274755 3.714593 -1.884021 -8.852841 1.498907 6.786393 -2.814849 -2.491025 -2.873146 7.326918 2.055247 0.160183 -3.532101 -1.842880 1.751461 -1.674836 3.616566 -4.990701 0.809430 -6.711881 -0.608830 -1.366265 1.322531 3.731210 3.293371 1.474858 3.573358 6.432082 -6.376812 0.328627 -6.605098 1.945714 -0.962568 1.878108 -1.747706 3.110416 1.009473 2.436904 6.365278 -9.169474 2.750940 0.110384 -0.185747 -7.453260 0.000000 -2.340653 -1.419655 -2.366150 3.541162 -1.110964 -0.669588 -2.242137 1.524182 2.231551 -3.027851 -1.904542 2.226663 7.687704 -6.260856 2.370487 -1.428118 -2.151068 -1.013855 2.943038 5.177297 5.521686 8.249939 5.958226 -0.047676 5.492650 -6.809517 0.018747 7.081663 2.982694 -5.228288 6.956891 -5.083289 -2.504820 0.669715 5.213053 5.403692 1.363956 -6.547381 -5.197994 4.931390 1.368340 7.043188 -0.112317 -0.099250 -2.642448 6.334258 1.528656 -3.600238 7.834119 2.971394 -5.648291 4.320365 2.947554 -6.125052 -2.670880 4.496024 -5.042158 -0.045190 -2.377668 0.993740 3.678888 -2.768800 -1.956039 -0.961159 -5.431266 6.374638 -1.675557 -0.165532 3.401867 -4.181683 -6.583208 5.627116 0.001791 -1.914654 -5.281523 -5.195283 -4.709626 -5.334027 2.226102 0.643907 -2.706150 -3.090096 -6.092883 -1.330189 4.880119 1.318647 4.067055 -8.505344 -1.529424 3.469171 4.141567 3.078114 -2.100139 -0.707486 0.950309 0.620343 0.966527 -0.716837 5.512136 8.116358 -4.291256 3.566544 -2.451473 -3.182422 3.625834 3.511434 -8.164538 8.214174 1.087919 5.187158 0.240014 1.855482 -2.824876 0.997164 2.005213 -1.778513 0.569097 0.371079 -1.886680 -2.554175 1.002020 -4.531788 -4.471361 -1.096751 2.425618 -0.117551 2.310263 0.140264 -2.754148 -2.073940 -3.398814 1.472949 4.398815 0.170075 -1.258119 4.622569 1.527031 1.926988 0.197695 0.463908 2.748277 3.591562 -7.509886 1.046042 -2.007690 1.801574 -4.078205 -7.981718 2.074409 -4.647335 -3.568282 3.229738 -7.767424 0.393334 -4.833097 0.277952 -7.029703 -0.732739 1.466882 8.154088 1.896641 -2.802330 3.163685 -2.782665 3.670860 -0.740050 0.492679 1.860937 4.614838 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -1.943540 1.614688 1.252662 -1.943882 4.796803 -0.808751 0.519569 2.686475 -0.811101 2.715848 -2.180111 0.687428 -0.335772 -2.431968 0.275545 -1.554522 -0.566312 1.909824 -0.913434 1.095853 1.407720 -0.126132 0.292174 -0.944220 -1.220604 -2.812245 -0.581021 0.904850 1.065952 -0.275215 0.738208 0.235692 3.165232 -0.908781 2.525434 2.150410 1.793645 2.593664 0.013339 0.496839 0.798598 1.163503 -1.286760 -2.536208 0.441283 -1.031264 -2.728864 -1.391824 1.239350 -2.772973 0.624419 2.152592 0.012539 -0.544531 -1.129079 2.538663 1.260744 -0.605317 2.724944 0.785412 -2.199824 -0.167537 -3.010332 3.253811 -1.561048 1.740703 -0.740731 -2.906717 -0.785462 1.318863 0.678218 -1.753388 -1.312661 1.390782 0.966325 -1.985200 0.787135 -1.143249 -0.845663 -1.699590 -1.328861 1.015497 -0.319434 1.822375 -0.087492 0.591139 -0.457087 0.857049 -0.260860 -2.934938 -0.690199 3.506348 -1.541179 -0.017936 -2.871940 0.823399 0.793766 -0.242803 -0.921143 -1.561219 1.046415 0.297378 1.073211 -1.630024 0.090041 -2.263077 0.302372 1.152462 0.198237 1.674449 -0.914560 1.353531 1.103630 2.012746 -1.171458 1.400443 -3.442145 1.181661 -1.159848 0.821384 -0.827185 0.771401 1.136213 1.593468 2.076037 -3.013885 2.324462 -0.074249 -1.100503 -2.150420 0.701197 -0.352941 -1.180787 -0.812179 1.422350 0.255568 -0.570959 -0.530990 0.910585 0.043072 -1.168656 -2.285538 0.102050 1.492164 -2.711641 0.536066 -0.584656 -0.563017 -0.506665 1.509563 1.905164 1.383971 3.509110 2.152594 0.267621 1.132123 -3.115784 0.335209 2.988996 1.161502 -2.300466 2.465863 -2.009126 -0.458226 0.871944 1.629064 0.813636 2.286075 -2.269974 -1.999539 0.283532 -0.226798 3.186454 1.785534 0.148169 -2.597352 1.544696 -1.554083 -0.878335 3.772707 2.422080 -3.122616 0.585593 1.703409 -1.508360 -1.969035 1.313241 -2.053072 -1.119894 -0.565733 0.525886 1.427312 -1.455795 -1.917513 0.466587 -2.265333 2.715854 -0.590194 -0.793790 0.351477 -2.208060 -2.021451 3.003921 0.301860 -0.948022 -1.273110 -1.633700 -1.190194 -2.883566 0.672522 1.493213 -0.781923 -1.767586 -2.208704 -0.047420 1.909450 -0.816735 1.035526 -2.790513 -1.097710 1.535124 0.310434 1.422737 -2.980116 -0.400944 -1.132534 -0.032796 0.867617 -0.893714 1.334761 3.854215 -1.594887 2.053589 0.864003 -2.204573 0.032592 2.401951 -2.587112 3.337827 0.231464 1.719823 0.265283 0.988745 -1.374022 0.059978 -0.088804 -0.390567 -0.318391 1.271038 -1.500717 -0.703976 0.039492 -2.387977 -1.105078 0.822487 1.648152 -0.169213 0.437344 0.119506 -1.556391 -0.964688 -1.883791 -0.045709 1.886798 -0.978798 -2.089649 1.351817 0.814623 -1.571862 -1.013070 0.323973 1.357369 2.096797 -2.677924 1.229050 0.114320 0.106576 -3.626499 -2.553755 0.367822 -2.246259 -2.149219 0.276595 -2.620127 -1.531144 -1.597926 1.209299 -2.876377 -1.880518 1.048649 3.219525 1.108640 -0.712343 1.728399 -0.747390 2.138887 0.327951 -0.017331 0.534685 1.910068 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -13.502862 3.701041 -7.512265 -16.185182 32.032559 -6.121730 -2.335830 14.264512 1.143434 17.615309 -13.029428 -2.648689 -5.138687 -25.246514 2.341848 -1.854098 1.976322 13.488242 -7.736115 9.970936 10.797532 -6.136752 8.867115 -5.671712 -7.964871 -12.127119 -2.188817 9.062494 6.860374 -6.498370 0.488220 1.034380 23.219908 -2.758227 16.038516 11.494912 10.160419 21.544636 6.385451 -5.604521 4.966090 7.889301 -7.503319 -22.672570 7.733732 -7.520695 -20.520907 -12.532646 11.622449 -18.653126 6.871843 18.268036 0.134388 -6.849855 -16.209463 10.046567 13.498312 -1.277378 21.674495 5.346552 -11.610629 -4.944822 -16.295876 10.765826 -13.594874 6.263280 -1.428983 -17.544127 -6.609156 12.862586 3.394401 -13.716110 -15.774857 6.066900 11.324227 -14.295748 7.076040 -6.321513 2.654440 -15.713949 -11.923793 6.990213 -8.618681 15.624922 0.032868 8.420399 0.896993 4.602137 -1.012908 -20.877595 0.598316 15.533933 -8.453456 1.091698 -9.138719 13.779613 0.017283 -7.050463 -15.079317 -8.948039 4.581889 -1.680642 10.178728 -2.918914 1.423417 -14.705927 6.902125 6.184315 4.879654 9.408664 9.378896 2.940793 4.801862 13.012116 -11.366028 6.314738 -26.122292 4.763306 -5.761194 6.172769 -8.704614 7.255390 12.818715 6.084208 12.863465 -25.004845 20.034029 4.195475 -5.510834 -14.475359 7.155830 1.297148 -5.373404 -3.025107 14.255002 -6.968422 -2.840965 -1.330704 7.979191 1.655858 -14.652342 -2.542975 -1.957378 13.756072 -15.640217 8.018804 -4.027685 -10.958120 1.785381 5.966041 11.391045 9.133991 27.143840 14.871182 -6.817317 9.328378 -20.775180 8.049181 26.628952 6.025364 -16.471562 16.949756 -11.027821 -0.862066 3.814611 12.834740 12.117714 6.629223 -8.797159 -6.589636 5.219808 3.127247 21.389658 1.677080 6.931261 -21.568454 6.649695 0.488230 6.500172 30.862622 10.111706 -21.443314 6.361560 16.517990 -13.045503 -7.680584 6.318742 -9.680626 -4.858843 -8.170667 10.100752 12.542442 -14.296304 -15.979563 -2.851323 -15.752081 15.230081 -5.436703 -10.234550 5.999699 -19.137279 -0.126868 23.759363 2.565997 -5.492163 -7.707384 -17.738724 -4.216073 -23.374901 5.976588 7.569630 -6.090949 -4.567756 -13.243650 -6.130870 18.234233 -0.333741 4.505378 -24.766861 1.464450 12.955980 4.280262 7.441693 -13.450243 -2.133502 4.121146 -1.102125 4.097305 -4.711033 5.038397 18.346189 -16.850289 9.476430 3.427322 -2.324434 9.002513 14.634824 -16.256757 27.400574 1.635955 21.962592 -0.095015 9.454941 -5.491053 6.632645 -1.186004 -3.808950 -2.695276 7.953930 -14.962195 -9.726379 9.882865 -5.920992 -17.978834 2.927562 15.596084 2.149076 5.611035 -4.199846 -4.889352 -5.368959 -5.859651 7.589963 12.931714 -5.058509 -13.479973 6.996291 14.360357 -4.902682 -3.629070 5.154077 10.086357 19.510859 -21.923731 11.442428 -1.476015 5.764987 -17.533252 -16.434536 8.643897 -9.015180 -2.487063 9.570919 -24.345082 -10.694723 -11.634164 12.838987 -12.177377 4.344546 1.604028 21.530981 9.405174 -5.465801 13.554748 -3.714219 6.928327 -1.746512 -1.763479 7.399208 15.479171 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -11.777350 9.078218 1.891287 -10.580890 24.394401 -2.106576 2.393570 5.451344 -3.918144 20.383201 -9.371915 -5.724994 -6.027998 -24.381637 1.271185 -12.557526 -3.829825 7.708864 -0.193234 11.271571 9.477263 -11.379757 2.438198 -2.223101 -7.044726 -19.016745 -3.811170 6.595831 17.454907 -10.701958 5.301387 -0.483964 21.956276 -1.828388 18.741675 15.298418 6.339200 15.641717 2.033079 -0.931952 -6.446501 10.167038 -11.613677 -15.102174 2.068120 -4.111299 -15.169142 -8.559120 7.999273 -6.261516 2.257844 17.986358 -5.019963 -0.940832 -13.627318 12.032076 6.857375 2.184133 21.487633 2.794727 -2.912436 -2.717635 -22.597269 13.730644 -8.461836 2.820683 -3.068036 -11.323391 4.719461 -0.979764 -5.251687 -8.871208 -6.717147 17.777048 12.177101 -16.753302 2.054902 -10.267678 -26.071691 -13.829964 -15.148725 6.543741 -0.869075 16.497745 2.542066 6.895595 6.959333 11.386876 -5.713841 -26.828938 4.349374 20.910467 -7.987248 -5.684135 -10.033886 17.808288 1.792719 2.651835 -10.849262 -2.137362 5.668070 -2.387435 10.063008 -13.592533 -1.815853 -22.444873 3.269899 -1.141233 1.353288 5.303960 14.864225 1.270754 10.411137 20.619505 -18.367363 3.978004 -18.749117 4.538017 -2.147739 6.314358 -5.042023 10.353058 0.924613 5.579369 17.768285 -28.478340 7.140448 0.379913 -4.158010 -21.568861 -0.067136 -8.579461 -5.789253 -5.845475 10.213203 -1.741723 -2.978830 -7.378061 3.126238 4.798817 -9.614260 -5.355394 7.432879 17.025265 -14.897720 5.228019 -4.379836 -7.518839 -4.548677 10.332100 15.551800 15.411507 24.237843 16.584331 -0.486611 9.086289 -19.333294 -0.166456 19.968837 4.052547 -16.454160 19.618766 -14.387290 -4.725128 1.581106 14.616306 15.285761 6.131060 -16.297861 -11.443379 10.653942 4.321808 20.520984 2.804749 1.130643 -4.661940 16.186566 1.093093 -11.507236 23.746656 10.471671 -15.313627 7.002449 6.807006 -16.938766 -8.404415 13.501944 -12.839798 2.666724 -7.899223 2.806090 9.597748 -7.853641 -5.245292 -1.271971 -16.209512 20.299470 -4.718245 1.824203 9.576113 -15.105233 -18.291524 18.485868 -2.316952 -6.731646 -14.559416 -15.082019 -12.601223 -14.277724 7.692518 3.015046 -6.489581 -9.824458 -17.139067 -0.465183 16.036917 3.676449 12.469726 -17.481481 -6.411053 8.995424 7.379700 12.751378 -6.087314 -2.620142 0.642135 2.186419 5.908219 -0.929269 13.379709 26.355708 -11.902839 11.167902 -5.732805 -7.030964 6.553981 11.099655 -22.823262 23.094487 1.587781 11.987671 -1.854618 6.053326 -6.575442 2.699608 6.543450 -4.246438 3.894028 2.018801 -3.526448 -6.654054 0.411794 -16.382360 -10.645531 -2.818835 6.004498 -2.051892 6.801267 0.203487 -8.931562 -5.733413 -9.506781 4.184888 13.750567 2.065458 -4.268062 11.746424 2.389077 4.600179 1.762569 1.832667 5.769452 12.145106 -20.821791 0.068824 -4.901542 3.176111 -10.972087 -21.174172 2.031130 -12.766632 -8.812779 9.109115 -19.380140 1.884898 -14.222453 0.406731 -18.323613 -3.423300 3.521579 23.507522 10.124506 -7.770174 7.766684 -6.464373 11.844412 -0.759453 -2.153069 8.705682 13.467507 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.980940 0.490732 0.115194 -0.794455 2.768208 -0.359610 0.012916 1.728545 -0.324802 1.511327 -0.925744 0.090396 -0.108699 -1.137864 0.206741 -0.085363 -0.147784 0.964335 -0.584124 0.247877 0.698004 0.214551 0.158144 -0.290284 -0.558042 -0.976747 -0.434528 0.520618 0.796928 -0.457385 -0.451557 0.155873 1.747530 -0.556707 1.456705 1.079037 1.196799 1.032130 0.071868 -0.095900 0.381261 0.612952 -0.780394 -1.141450 0.257052 -0.630972 -1.410476 -0.526787 0.721192 -1.053715 0.834100 1.080387 -0.082916 -0.097447 -0.351405 1.386599 0.260706 -0.277381 1.511177 0.442385 -1.272750 -0.149902 -1.480962 1.982935 -0.697838 1.093056 -0.715426 -1.728668 -0.673874 0.573472 0.614863 -1.405786 -0.695758 0.990481 0.366818 -0.956418 0.578059 -0.492626 0.805710 -1.276455 -1.101431 0.573822 -0.598916 0.898638 -0.061906 0.289760 -0.656093 0.431970 -0.246536 -1.731547 -0.134454 1.631670 -1.068256 0.324618 -1.458405 -0.085392 0.167960 0.081058 -0.476435 -0.939611 0.451886 0.106254 0.558907 -0.719235 0.990973 -0.835325 0.091342 0.485990 0.494005 0.852200 -0.063199 0.477683 0.775471 1.261437 -0.237797 0.204564 -1.567758 0.680146 -0.747078 0.436755 -0.489442 0.587905 0.950734 0.693345 1.208085 -1.800490 0.915421 -0.110181 -0.600972 -1.121563 0.359561 -0.385939 -0.713446 -0.404410 0.810585 -0.006662 -0.396101 -0.427810 0.659570 0.038861 -1.070393 -0.793921 -0.044580 0.427090 -1.530610 0.227428 -0.310416 -0.403133 -0.189800 0.953120 1.225725 0.983150 1.778019 1.164103 -0.030814 0.221599 -1.819213 0.323836 1.422946 0.170359 -1.199464 1.404750 -1.235999 -0.176640 0.597738 1.049487 0.408027 1.029359 -0.656510 -0.573315 0.185314 0.273733 1.698647 0.629430 0.280450 -0.994767 0.237015 -1.008552 -0.570658 2.079148 0.981257 -1.752822 0.266435 0.757536 -0.189216 -0.710007 0.716761 -1.356484 -0.618263 -0.547299 0.335707 0.964413 -0.878131 -0.737364 0.640886 -1.158425 1.544222 -0.319497 -0.689924 0.427979 -1.351622 -0.351952 1.808598 0.344339 -0.373035 -0.614073 -1.010860 -0.456271 -1.376438 0.343234 0.606562 -0.229694 -0.754625 -1.151663 -0.152439 1.313620 -0.104346 0.678337 -1.797524 -0.233460 0.791291 -0.267365 0.782515 -1.361698 -0.221850 -0.628039 -0.216711 0.403703 -0.789374 0.514311 1.858910 -0.939980 0.952554 0.737764 -0.749385 -0.145483 0.922607 -1.442599 1.696180 0.298171 0.729170 0.145890 0.571419 -0.787852 0.105536 -0.185665 0.137723 -0.231897 0.699141 -0.692163 -0.399821 0.044314 -1.244862 -0.863098 0.167240 0.775906 -0.131541 0.292485 -0.466093 -0.836615 -0.519162 -1.001724 0.161565 0.985633 -0.645412 -0.982839 0.828255 0.249456 -0.902485 -0.300481 0.208107 0.576352 1.236238 -1.447497 0.363870 0.213467 0.461993 -1.765291 -1.214503 -0.208397 -0.841613 -0.753920 0.235116 -1.436727 -0.980929 -0.863788 0.423997 -1.402540 -0.738014 0.570242 1.888194 0.678790 -0.486384 0.906749 -0.290531 0.948568 0.180192 -0.095748 0.285621 0.793959 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -2.005499 0.823368 -0.686636 -1.357174 5.820329 -0.465707 -0.190930 2.361765 -2.260844 3.845364 -1.137463 -0.725106 -1.295554 -3.924085 0.452602 0.224096 0.199963 1.417764 -0.378913 1.600880 1.591237 -2.028433 1.022280 -0.203065 -0.832557 -2.257083 -0.516103 1.243407 4.030108 -1.689968 -0.957780 -0.131989 3.621677 -0.777562 2.255066 1.736785 1.066193 2.383026 0.854615 -3.738125 -0.660384 1.852245 -1.872517 -2.499386 1.085310 -1.371245 -2.579557 -1.426125 1.965316 -1.075511 -0.788926 2.820965 -0.796652 -0.503578 -2.211551 2.722011 1.856825 0.144020 3.764591 0.364409 -0.217412 -2.110060 -3.350172 1.754845 -1.433590 0.280831 -1.600913 -2.580109 -0.242652 0.361165 -0.955301 -2.457982 -0.646529 3.122497 1.747834 -2.307986 0.932244 -1.017471 -1.106491 -4.169138 -3.420463 0.433847 -2.103093 2.838296 -0.107608 0.980197 0.407673 1.276261 -0.433934 -4.678038 0.634124 2.902939 -1.265474 -0.374890 -0.812828 2.312227 0.241105 -0.022663 -2.310391 -1.008986 0.399352 -0.429927 1.695358 -2.988749 2.881234 -2.671074 0.087658 -0.623356 1.843220 2.002888 3.139914 -0.100185 1.222666 3.550094 -2.825690 -0.963516 -3.026710 0.444755 -0.901239 1.176130 -1.246977 2.237445 1.537582 0.683658 2.995371 -5.789514 1.479284 0.043953 -0.200823 -3.470317 0.590800 -0.875675 -0.899842 -0.605139 2.067314 -1.262764 -0.747293 -1.013273 1.366120 0.797619 -3.151505 0.663462 0.326114 3.987768 -4.471363 0.994591 -0.894255 -1.842177 0.382678 1.084249 2.777628 2.641032 3.726671 2.979662 -1.082145 2.723047 -3.946652 1.302236 3.609955 0.103713 -2.563676 3.302015 -2.249525 -0.207643 1.027496 2.363619 2.755719 1.016946 -1.631210 -1.389362 2.234470 1.337969 3.294089 -0.054311 1.318399 -1.758083 1.682443 -0.288211 -0.939310 3.971219 0.709257 -3.056127 2.297337 1.440726 -2.370957 -0.151477 1.182330 -2.643938 0.128635 -2.051984 0.925251 2.556751 -2.052558 -1.449577 -0.374282 -2.382090 3.726968 -0.839140 -0.950898 2.115612 -2.320524 -0.191602 3.316053 0.440500 -0.712796 -2.448293 -3.312983 -2.931248 -2.671162 1.189801 -0.187789 -1.281268 -1.340911 -2.836337 -1.280821 3.325163 1.233099 1.340950 -5.999811 0.929859 1.519156 1.613128 2.032610 -0.624211 -0.465536 0.704718 -0.929121 0.623349 -1.045671 1.894338 3.596286 -2.790605 1.553839 -0.962121 0.058327 1.645706 1.251670 -3.771285 3.593975 0.865626 4.294494 -0.452608 1.350093 -0.991285 1.165363 0.460431 -0.652057 0.137999 0.882438 -1.295072 -1.434898 1.391638 -2.181156 -3.504599 -0.543841 1.303667 0.460999 1.138513 -1.548206 -1.345205 -0.728898 -0.821300 0.921989 2.155738 -0.609631 -1.160193 1.383758 0.604565 0.471639 -0.333444 0.680478 0.889049 2.153798 -3.379446 0.326724 -0.672873 1.556696 -1.532718 -3.103735 0.234972 -0.827768 -0.982021 3.135662 -4.224215 -0.366240 -2.104712 0.520086 -3.479229 0.385766 -0.117877 4.221336 0.986185 -1.061066 1.993441 -0.469701 1.322133 -0.744720 -0.205240 0.837385 1.550597 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.490127 -0.061737 -0.394074 -0.184924 1.094260 -0.561948 -0.096430 0.841971 0.100008 0.663431 -0.220375 -0.094656 -0.191732 -0.672650 0.165737 0.296406 0.243394 0.689162 -0.175335 0.019047 0.397797 0.107227 0.024279 -0.023234 -0.203163 -0.375774 -0.079624 0.281430 0.275885 -0.548127 -0.466398 0.366316 1.078750 -0.137193 0.936273 0.647848 0.580001 0.578206 0.397050 -0.179127 0.071316 0.357900 -0.338779 -0.628749 0.182374 -0.137223 -0.484988 -0.217709 0.418776 -0.173395 0.797365 0.544833 -0.102056 0.169659 -0.362150 0.383537 0.006996 0.015882 0.780337 0.225910 -0.538994 0.053367 -0.503975 1.156198 -0.512287 0.188407 -0.277848 -0.785882 -0.170576 0.201798 0.454407 -0.787652 -0.427152 0.449647 0.106247 -0.505309 0.294738 -0.022854 0.747915 -0.681066 -0.904262 0.240894 -0.425869 0.498024 -0.056129 0.154989 -0.525531 0.189604 -0.081244 -0.813776 0.138346 0.537047 -0.639367 0.344381 -0.431284 0.074044 0.065580 0.023342 -0.199020 -0.563154 0.183068 -0.286366 0.362530 0.155300 0.631982 -0.062495 0.085102 -0.097664 0.299576 0.428992 0.419247 0.179079 0.461510 0.537114 0.167957 -0.267898 -0.854135 0.496597 -0.219613 0.084760 -0.119052 0.354597 0.518248 0.066024 0.637641 -0.932344 0.262641 -0.036661 -0.038048 -0.456719 0.144143 -0.172671 -0.300790 -0.405565 0.676931 -0.083382 -0.215195 -0.231980 0.353729 0.189026 -0.673817 -0.205410 -0.169020 0.207503 -0.612046 0.144761 -0.261241 -0.425276 -0.045982 0.315984 0.427550 0.702508 0.774267 0.676503 -0.230967 -0.046236 -1.026544 0.086538 0.610768 -0.019656 -0.603376 0.693279 -0.611390 -0.144936 0.352409 0.744044 0.374807 0.042160 0.009609 -0.032007 0.197123 0.342002 0.816120 -0.121521 0.165533 -0.239798 -0.124894 0.049032 -0.319869 1.205352 0.109153 -0.877137 0.250152 0.369073 0.089778 -0.283029 0.335736 -0.657943 -0.231584 -0.502347 0.355091 0.600865 -0.617684 -0.051593 0.459336 -0.551433 0.557545 -0.195414 -0.455480 0.405096 -0.912930 0.142809 1.046797 0.177709 0.016496 -0.400863 -0.753182 -0.050115 -0.702723 0.184538 0.069393 0.044733 -0.153698 -0.580831 -0.189754 0.852419 0.192119 0.403588 -0.835681 0.058208 0.443225 -0.084031 0.166578 -0.612817 -0.138150 0.079826 -0.013465 0.134970 -0.335501 0.118666 0.752117 -0.580989 0.176621 0.645941 -0.087635 0.108610 0.284030 -0.840446 0.816239 0.072865 0.139325 0.157201 0.203453 -0.467974 -0.001300 -0.072899 0.480385 -0.295847 0.143772 -0.277011 -0.208450 0.069603 -0.489660 -0.505781 -0.144701 0.403458 0.048676 0.214663 -0.436276 -0.297664 -0.179811 -0.503632 0.290144 0.514988 -0.098095 -0.293153 0.608169 0.094768 -0.353816 0.092604 0.100801 0.207926 0.651836 -0.779281 0.037057 0.108308 0.449330 -0.540241 -0.743336 -0.072986 -0.294908 -0.124185 0.200225 -0.839929 -0.504591 -0.379523 0.247613 -0.705731 0.143434 0.099243 0.893887 0.336311 -0.230402 0.480684 -0.120344 0.275277 0.044388 -0.108917 0.086364 0.546966 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.836101 0.063688 -0.088698 -0.500819 1.514655 -0.372743 -0.145979 0.773213 0.335883 0.910283 -0.694341 -0.567421 -0.542311 -1.044338 0.170756 -0.088412 0.128887 0.815676 -0.465981 0.130097 0.776943 -0.069793 0.179789 -0.345812 -0.195481 -0.495338 -0.341437 0.270558 0.362580 -0.272053 -0.447797 0.250915 1.353586 -0.033345 1.111180 0.844074 0.672744 1.262116 0.000989 0.221278 0.047378 0.825022 -0.575415 -1.295011 0.580738 -0.609843 -0.692559 -0.667955 0.651665 -0.681570 0.951270 0.893645 -0.103345 -0.073841 -0.551967 0.426585 0.408729 0.447330 1.219345 0.436911 -0.613691 0.237192 -1.046687 0.796128 -0.782683 0.822459 -0.126382 -1.222372 -0.478697 0.198187 0.634589 -0.858409 -0.794323 0.506579 0.295949 -0.619555 0.495744 -0.222403 0.409557 -0.733185 -1.249836 0.183610 -0.524583 0.863933 -0.242386 0.119521 -0.374120 0.229266 0.075445 -1.118525 -0.093632 0.904170 -0.601831 0.475799 -0.562572 0.096269 -0.035114 0.048350 -0.592988 -0.375154 0.298913 0.002822 0.536510 0.255714 0.183342 -0.470969 0.613742 0.280138 0.213521 0.217152 0.609251 0.112469 0.425774 0.730801 -0.251661 0.268885 -1.141511 0.418816 -0.298346 0.326441 -0.131276 0.562603 0.510462 -0.104744 0.799395 -1.213951 0.699875 0.081195 -0.419163 -0.632281 0.422911 -0.360498 -0.605589 -0.440364 0.920826 -0.001366 -0.398180 -0.303881 0.355678 -0.024820 -0.774874 -0.181968 -0.269595 0.247038 -0.582750 0.130303 -0.460923 -0.781259 -0.047413 0.447080 0.455793 0.776473 1.225277 1.038303 -0.378737 -0.369185 -1.201242 0.300167 1.219918 -0.107183 -1.029457 0.696045 -0.489137 0.131157 0.570784 0.681228 0.606283 0.575051 -0.006714 -0.078043 -0.288935 0.136732 1.202656 0.523431 0.500707 -0.721462 0.095230 -0.176373 -0.294537 1.619253 0.565925 -1.162190 0.102683 0.585614 -0.491734 -0.562255 0.291889 -0.448601 -0.093307 -0.703466 0.490107 0.708998 -0.950894 -0.629285 0.342621 -1.017975 1.002722 -0.221937 -0.142634 0.478381 -1.394089 -0.230845 1.409603 0.159332 -0.325049 -0.577170 -0.844352 -0.243214 -1.135966 0.486036 0.215129 -0.142695 -0.615024 -0.846788 -0.017650 1.148395 0.023115 0.356984 -0.650143 -0.151507 0.533107 -0.231616 0.674123 -0.846222 -0.377562 -0.082851 -0.132468 0.578740 -0.179542 0.088877 1.310095 -0.901402 0.346210 0.859785 -0.187837 0.049519 0.814494 -0.915569 1.193521 -0.088991 0.347156 -0.128552 0.550911 -0.483651 0.062452 0.084982 0.353183 -0.138453 0.552574 -0.468523 -0.270385 0.170393 -0.956761 -0.441114 0.164362 0.489417 0.257604 0.280274 -0.217597 -0.684926 -0.140644 -0.356463 0.151911 0.972292 -0.045108 -0.756050 0.375544 0.081697 -0.527254 -0.275275 0.303808 0.146797 1.111032 -1.124763 0.245922 0.073077 0.072034 -0.859336 -0.713422 -0.198910 -0.589848 -0.333961 0.752686 -1.001032 -0.393525 -0.672718 0.477277 -0.615919 -0.063397 -0.106181 1.106255 0.805614 -0.190513 0.793695 -0.030852 0.759052 0.123922 -0.438712 0.254415 0.948515 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.836199 1.102608 -0.502312 -1.324573 3.307793 -0.608603 0.847138 0.736477 -1.638349 2.718409 -1.009407 -1.115281 -0.962251 -3.386448 0.465202 -1.394796 -0.074798 1.204124 0.188204 2.227723 1.449010 -2.218781 0.311712 -0.187068 -0.859416 -2.047815 -0.281106 1.149573 3.032594 -1.558255 0.157849 0.219176 3.221031 -0.487331 3.052889 2.522150 0.327824 2.102753 0.926550 -2.844403 -1.085670 1.738852 -1.842259 -2.254706 -0.031376 -0.471517 -2.329962 -1.378747 1.451942 -0.463142 -0.588351 2.760325 -0.995027 0.055308 -2.435292 1.537589 1.113940 0.528701 3.386639 0.322307 -0.085653 -0.719086 -2.621912 2.529086 -1.077814 -0.432463 -1.004326 -1.937435 1.191773 -0.140759 -1.319997 -0.952109 -0.868325 2.656535 1.982859 -2.490455 0.557025 -1.253002 -3.425375 -2.370200 -2.385077 0.763794 -0.886561 2.832075 0.145573 1.042775 0.581539 1.595572 -0.755013 -3.829647 0.900400 2.873286 -1.170874 -1.093576 -0.746962 3.176589 1.004785 0.324215 -1.991071 -0.450800 0.692677 -1.011290 1.692956 -1.917080 1.073937 -2.525281 -0.433859 -0.486443 1.122704 2.313615 2.305365 0.687172 1.947167 2.691619 -2.222176 -0.342866 -2.265401 0.855203 -1.243561 0.764953 -0.599726 2.000220 0.804040 0.571426 2.824057 -3.917369 0.761559 0.285601 0.286077 -2.902552 0.118578 -1.274959 -0.810711 -1.218104 1.811980 -0.504522 -0.478087 -1.139007 0.683895 1.221878 -1.360452 0.518703 0.899234 2.607724 -2.125112 0.906203 -0.725524 -1.218609 -0.129356 1.412265 2.076988 2.740684 3.490848 2.861339 -0.631911 1.534132 -2.949188 0.391484 3.090739 -0.013256 -2.386957 2.866456 -2.244807 -1.107922 0.276504 2.400898 2.778854 0.797071 -2.136920 -1.757778 1.370816 0.979239 3.080965 -0.091153 0.155001 -0.477901 2.468462 0.226817 -1.657098 2.887723 0.665183 -2.187423 1.425482 1.122865 -3.022104 -0.929699 1.822355 -2.244355 0.463542 -1.769487 0.665172 1.987771 -1.500865 -0.513310 -0.209454 -2.372512 2.625937 -0.872470 -0.601389 1.244441 -2.163165 -1.672523 2.842550 0.300571 -0.669351 -2.402169 -2.421346 -1.980048 -2.285901 1.143230 -0.251000 -0.653225 -1.394091 -2.564976 -0.936899 2.049039 0.973606 1.917979 -3.030563 0.020951 1.425742 2.037815 1.420222 -0.152533 -0.466596 0.771177 -0.033840 0.520261 -0.459966 2.172939 3.046353 -2.078537 0.966070 -0.754461 -0.901100 1.696407 1.268614 -3.662504 3.574984 0.568667 1.953148 -0.131670 0.807119 -1.036626 0.343187 0.910161 -0.688312 0.101672 0.218899 -0.568514 -1.073754 0.654299 -1.507462 -2.080131 -0.817391 0.982431 -0.100558 1.243072 -0.323186 -1.513106 -0.851890 -1.298514 0.884155 2.086810 0.102494 -0.326111 2.117536 0.317038 1.064712 0.317477 0.147487 0.872784 1.694717 -3.374282 0.046000 -0.908760 1.258306 -1.092818 -2.922757 0.496004 -1.345639 -0.913942 2.030878 -2.716791 0.405804 -2.233871 -0.043696 -2.493129 -0.428674 0.573145 3.490513 0.996747 -1.340092 1.173092 -1.091548 1.566085 -0.344192 -0.047220 0.844828 1.841341 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -2.191473 0.675905 0.234712 -1.495099 4.359216 -0.851136 0.082690 1.715948 -0.720740 2.836413 -1.510258 -0.869436 -1.221754 -3.341099 0.497545 -0.830617 0.104576 1.815262 -0.544589 1.477417 1.858585 -1.156993 0.387755 -0.530165 -0.868555 -2.091298 -0.683932 1.091057 2.240934 -1.551582 -0.428732 0.508074 3.764593 -0.483515 3.401236 2.661072 1.516299 2.847830 0.353948 -1.593990 -0.451988 2.013349 -1.860960 -2.949275 0.876201 -1.087876 -2.519698 -1.808870 1.723727 -1.157743 0.446103 2.876167 -0.699573 -0.077622 -1.972475 1.863734 1.269718 0.397348 3.561546 0.813260 -0.981438 0.118844 -3.103278 2.402766 -1.745425 0.981515 -1.068372 -2.738360 -0.073626 0.230396 0.454978 -1.891727 -1.430740 2.287234 1.582950 -2.333574 0.936735 -1.042646 -1.015922 -2.941332 -3.140514 0.760995 -1.097244 2.701216 -0.177139 0.821866 0.159913 1.279942 -0.418607 -3.809467 0.414398 2.913434 -1.610910 -0.149623 -1.590406 1.754501 0.395606 0.221459 -1.902700 -1.116076 0.923989 -0.675844 1.703179 -0.771022 1.472854 -1.916063 0.355031 -0.005480 1.037393 1.403250 1.641734 0.444838 1.839555 2.606156 -1.636834 0.324959 -2.947469 1.047074 -1.125492 0.880372 -0.574315 1.858870 1.323636 0.429159 2.755637 -4.024002 1.409198 0.170529 -0.617130 -2.528417 0.660589 -1.190087 -1.272717 -1.337256 2.296372 -0.301413 -0.795720 -1.068921 1.038942 0.593095 -1.831588 -0.296215 0.106008 1.867543 -2.326821 0.748744 -1.039616 -1.751056 -0.151121 1.441236 1.988820 2.683796 3.755726 3.079835 -0.851498 0.467071 -3.481886 0.472759 3.302765 -0.306342 -2.727404 2.768031 -1.918561 -0.507571 0.953309 2.502276 2.305221 0.948430 -1.393286 -1.299876 0.513026 0.781672 3.450822 0.638289 0.633186 -1.370370 1.408754 -0.067092 -1.472082 3.895376 1.188276 -2.900060 1.086766 1.484271 -1.980770 -1.596984 1.470184 -2.132011 -0.204702 -1.736249 1.099160 1.997346 -2.096125 -1.075925 0.517184 -2.731051 2.836047 -0.797459 -0.685541 1.443940 -2.916079 -1.815408 3.399702 0.142794 -0.850286 -2.197194 -2.614208 -1.112983 -2.860101 1.311794 0.175574 -0.552254 -1.652519 -2.696939 -0.410014 2.762862 0.571998 1.616609 -3.115961 -0.346538 1.584658 0.791902 1.830593 -1.565292 -0.726041 0.210986 -0.321697 0.901829 -0.618549 1.382876 3.740692 -2.457790 1.046179 0.421382 -1.377077 0.945132 1.845943 -3.461529 3.742003 0.413961 1.782961 -0.151643 1.190613 -1.363686 0.285098 0.609258 0.163357 -0.141027 0.898592 -0.957087 -1.012821 0.300253 -2.270702 -1.918277 -0.267750 1.246759 0.049693 1.074594 -0.482526 -1.793281 -0.610347 -1.381791 0.716074 2.500467 -0.277640 -1.216654 1.848356 0.469355 -0.217124 -0.071558 0.505614 0.781215 2.513007 -3.511521 0.477700 -0.422228 0.975679 -1.938833 -2.831902 0.069616 -1.932212 -0.965560 2.149115 -3.047859 -0.583687 -2.207445 0.644289 -2.129888 -0.338124 0.397059 3.593254 1.776444 -1.110433 1.797631 -0.758196 1.898585 -0.021375 -0.608272 0.696982 2.283517 +PE-benchmarks/word-wrap.cpp__main = -3.572834 3.601934 2.012546 -2.492958 6.912940 -0.300946 -0.036028 2.893082 -2.810929 6.106670 -2.425722 -0.384563 -1.727573 -5.765685 -0.010764 -2.844924 -1.437846 2.087570 0.183400 3.567515 2.611004 -3.683432 0.484457 -0.284462 -2.446678 -5.107992 -0.851596 1.778655 5.668462 -3.561609 0.310676 -0.365395 6.197741 -0.987983 5.609627 4.491438 1.809698 4.312760 1.467732 -2.751268 -2.633239 3.006185 -3.891804 -3.389035 0.737718 -1.979040 -3.819314 -2.181189 2.352653 -1.157458 -0.283982 5.089108 -1.733533 0.118001 -3.440898 4.067511 1.361573 0.389795 6.866951 0.400920 -0.639129 -1.711479 -6.380543 4.179375 -2.200506 0.558229 -2.062744 -3.154439 2.049545 -1.057626 -0.812881 -3.177316 -0.723082 5.991347 2.696187 -5.107159 0.522838 -3.111691 -7.415337 -5.381625 -4.810450 1.644387 -0.033436 4.455550 0.636712 2.076302 0.450473 3.905694 -2.206589 -8.214892 1.744881 5.914933 -2.545518 -1.359033 -2.598682 5.287303 0.494043 1.363316 -3.214098 -0.619568 1.870612 -0.417334 2.819085 -5.834905 2.631066 -6.224249 0.773971 -1.193337 1.007177 1.099964 3.363966 0.881600 4.278777 6.566381 -5.009149 0.021229 -5.577260 0.829842 -0.422020 1.571506 -1.209038 3.400828 -0.601172 1.471560 5.909890 -8.583767 1.510369 -0.422361 -1.318866 -6.926488 -0.119341 -3.090536 -1.487110 -2.057463 2.831196 -0.486920 -0.952313 -2.986979 0.993205 1.122912 -3.314596 -2.185849 2.663746 6.625627 -5.063868 1.463198 -1.307791 -1.912043 -1.159687 3.283619 4.796322 4.899195 7.047570 4.970688 0.368184 2.619604 -6.004841 -0.623743 4.804497 1.924644 -5.057975 5.906525 -4.212442 -1.947696 0.728295 4.871078 4.670706 1.817254 -5.252329 -4.917028 3.825129 1.788815 6.116365 0.158201 0.670621 0.025721 5.341268 -0.009793 -4.396369 5.907417 2.573107 -3.923132 2.046643 1.181764 -3.203928 -2.010182 4.349141 -4.433978 0.859415 -1.590297 -0.228019 3.039021 -2.204512 -1.232734 0.086700 -4.919337 6.495990 -1.305294 0.781315 2.918514 -4.315253 -5.288517 4.374472 -0.557930 -2.178052 -4.450613 -4.395443 -4.322711 -3.746697 2.025782 0.864052 -1.979522 -3.623011 -5.432653 -0.259193 3.655121 1.668634 3.591554 -6.231970 -2.523908 2.726790 1.890208 4.091425 -1.463709 -0.661356 -0.229840 0.046800 2.245568 -0.627673 5.479826 7.705192 -3.104386 3.439034 -1.526564 -1.827137 1.999946 2.810316 -6.955462 6.554831 0.848580 3.501297 -0.352872 1.630773 -2.191565 0.740333 2.066693 -0.182709 1.454632 0.609146 -0.377551 -1.956589 -1.034135 -5.162475 -2.714967 -1.488177 1.045545 -1.217074 2.096631 0.203521 -2.715082 -2.125954 -3.588005 0.651665 3.913061 0.055278 -0.649264 3.988841 -0.587217 1.802752 2.122266 0.449942 1.655062 2.851491 -6.062625 -0.744304 -1.593810 1.178785 -3.285973 -6.288646 -0.560493 -3.522278 -2.857367 3.172460 -6.229870 0.518335 -4.060615 -0.640555 -5.781419 -0.576901 1.361849 7.075884 2.841718 -2.928589 2.294425 -2.208693 4.001414 0.175194 -0.330430 1.492004 3.679835 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -2.939175 3.084172 2.252460 -2.899316 6.250714 -0.118409 0.955402 2.755715 -1.596099 4.410556 -3.121652 0.702875 -0.262043 -3.448750 0.076237 -2.843558 -1.524485 1.897928 -0.827785 2.078171 1.866271 -1.037644 0.415652 -0.987919 -2.243717 -4.028445 -1.022680 1.512037 2.569659 -1.218011 1.407970 -0.283096 4.325829 -1.437074 4.338400 3.522782 2.121013 3.378711 -0.022327 0.391473 0.191907 1.719564 -2.500689 -3.341511 0.146829 -1.531384 -3.998782 -2.010926 1.675937 -3.366080 0.532424 3.447331 -0.480224 -0.563148 -1.824578 3.824339 1.416565 -0.901540 4.753568 0.805136 -2.899566 -0.222663 -4.651286 4.612899 -1.806862 2.174403 -1.431796 -3.999123 -0.091265 1.082029 -0.030190 -2.246675 -1.564053 3.155658 1.716138 -3.639764 0.674335 -2.490761 -3.470072 -2.738455 -1.617014 1.855527 0.552248 2.852257 0.387052 1.306885 -0.035072 2.136662 -1.288218 -5.274242 -0.236696 5.352594 -2.442642 -0.495348 -3.449808 2.124708 0.773936 0.332328 -1.727713 -1.200756 1.544954 0.512362 1.715850 -3.532100 0.275339 -4.265494 0.256377 1.156550 0.205091 1.601735 -0.494002 1.757423 2.632317 3.939996 -2.625572 2.039069 -4.459319 1.440932 -1.392659 1.248714 -1.323181 1.529083 0.736278 2.253825 3.906878 -4.760357 2.711415 -0.355396 -1.688811 -4.395829 0.429277 -1.409506 -1.655702 -1.150230 1.677516 0.307445 -0.674455 -1.576950 0.917212 0.257446 -1.588151 -3.160041 1.442435 2.563582 -3.338821 0.934326 -0.630127 -0.546167 -1.196777 3.025756 3.658597 2.679892 5.620572 3.371507 0.956908 1.613811 -4.328852 -0.049126 4.204009 1.769627 -3.662921 4.196475 -3.569280 -1.272538 0.970002 2.630760 1.817544 3.090506 -4.193545 -3.482987 1.520686 0.212854 4.977732 2.020508 0.135599 -2.303904 3.291970 -2.016488 -2.071483 4.960751 3.438780 -4.556457 1.101178 1.924112 -2.361457 -2.511163 3.119618 -3.499756 -1.119911 -0.573675 -0.048064 2.027727 -1.642444 -2.225643 0.544223 -3.741681 4.744774 -0.957754 -0.325565 0.973690 -3.178101 -4.136560 3.790042 0.434195 -1.689123 -2.199306 -2.040908 -2.260631 -3.859551 1.038413 2.190189 -1.504262 -2.878427 -3.739035 0.268924 2.232645 -0.571657 2.423689 -3.597386 -2.222155 2.360422 0.593059 2.455014 -2.927654 -0.409586 -1.743128 0.147093 1.476424 -1.256875 3.252698 5.830574 -2.084373 3.528768 0.211173 -3.227266 0.353097 3.099780 -4.373208 5.329699 0.485280 1.977077 0.253979 1.387935 -1.977597 0.225176 0.452796 -0.913417 0.282619 1.394527 -1.577457 -1.263253 -0.580486 -3.891601 -1.288362 0.439586 1.900125 -0.748037 0.993739 0.812620 -2.426852 -1.884454 -3.348778 -0.052639 2.811837 -1.223883 -2.452663 2.718978 0.587474 -1.082679 -0.642865 0.229007 2.073800 2.719671 -4.426496 0.915561 -0.290776 0.014868 -5.112184 -3.851834 0.150980 -3.648548 -2.987497 0.402390 -3.721200 -1.039722 -2.853708 0.621303 -4.056685 -2.727764 1.944450 5.371869 1.938353 -1.673362 2.116134 -1.656222 3.471983 0.662973 0.115318 1.089108 2.768931 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -14.526127 17.908315 11.370202 -11.051947 28.035805 0.781166 0.031491 9.451051 -13.864488 27.057254 -9.723825 -1.636267 -6.491460 -24.457687 -0.912709 -15.228157 -8.695688 6.595673 2.621416 17.717812 9.890286 -18.500337 1.767924 -0.145913 -11.455200 -23.222371 -3.964367 7.974878 27.256268 -17.448571 3.579926 -3.570252 25.312807 -4.997918 24.020789 19.294302 5.899047 16.537446 6.151848 -13.989316 -13.421921 12.023244 -17.670822 -11.465540 0.975954 -7.523865 -16.591862 -8.854625 9.177316 -2.345346 -5.313782 22.230373 -8.561762 0.512075 -15.023272 18.893938 4.629495 1.516240 29.728104 0.090629 0.112535 -7.548832 -28.927868 16.880553 -7.951359 0.598251 -10.484737 -10.804192 12.070834 -6.744210 -6.597084 -12.143542 -0.599079 28.565000 12.921347 -23.136532 0.473126 -15.592648 -39.650459 -23.981363 -19.061615 7.898885 2.434482 18.817225 4.281045 10.113268 4.583463 19.438596 -11.732980 -36.938026 9.136017 26.196450 -10.032783 -9.618078 -9.719722 26.098943 2.587591 6.872344 -13.835638 -0.721075 8.257788 -2.110774 12.100565 -29.464486 13.044976 -29.807416 1.555943 -6.143220 3.904961 3.403974 14.925032 3.735411 20.391018 30.318522 -24.656998 -0.844056 -22.632903 1.711546 -1.414433 6.712183 -5.318494 15.487986 -5.852513 8.034551 26.582716 -37.943834 4.516522 -2.650778 -5.652961 -31.909865 -2.531861 -14.464835 -5.277823 -8.362087 9.810760 -1.956204 -3.222299 -13.895232 3.139659 5.534658 -12.302560 -9.084434 15.284516 31.330463 -21.416050 6.793141 -4.428627 -6.438022 -5.705824 15.217876 22.668600 21.401499 30.980525 20.909419 3.530705 12.508887 -24.800075 -4.544314 18.849047 7.738966 -21.264113 27.053587 -18.813521 -10.372556 1.024106 22.118418 21.061735 7.085826 -26.283102 -24.495291 18.915584 8.156493 25.796272 -1.370880 0.870680 4.037757 26.875390 0.603331 -21.432888 22.753385 10.849955 -14.236053 8.646488 3.414102 -14.970816 -8.715985 21.189819 -19.943324 5.547303 -5.032072 -3.265906 11.901907 -6.515135 -3.730125 -1.097936 -20.834520 28.910749 -5.808523 4.470473 12.781398 -15.852018 -27.106370 16.121193 -3.903652 -10.060565 -20.130744 -18.284135 -19.665622 -13.954930 8.538716 3.507694 -9.345625 -15.956244 -23.726437 -0.097955 13.259403 8.057001 17.028535 -26.810646 -12.846479 11.228326 10.224069 18.666690 -2.467871 -1.714095 -1.103117 0.517827 8.890061 -2.020688 27.140145 34.080819 -11.737272 15.529480 -11.358638 -9.432024 9.438086 11.147597 -31.414126 28.482117 4.666392 14.667855 -1.800134 5.895863 -8.568396 3.402143 10.781266 -3.054141 8.617665 0.683557 0.575578 -8.758971 -6.691565 -22.380871 -11.222854 -8.077668 3.009376 -7.826534 9.691145 2.538606 -11.607349 -9.904839 -15.877353 2.385329 15.806053 1.310235 0.065119 18.548167 -3.332312 11.814961 11.756892 0.756241 7.210605 9.970567 -26.092468 -4.787017 -8.450570 5.555995 -12.677567 -27.740709 -2.688549 -15.825555 -12.266029 12.912699 -26.105293 4.447727 -18.164607 -5.751461 -24.641568 -3.099973 7.850955 31.091433 12.566732 -14.794953 7.732744 -11.378771 17.612341 0.833553 -1.080118 6.885277 14.390419 +PE-benchmarks/strongly-connected-components.cpp__main = -3.274445 0.785726 0.544243 -2.860751 6.840062 -2.072520 -0.195054 3.582879 0.559803 4.212448 -2.991843 -0.662823 -1.762941 -4.794821 0.540567 -1.778357 0.369005 3.407760 -1.526385 1.445285 2.726209 -0.122589 1.079864 -1.298431 -1.382673 -3.605071 -1.069112 1.521613 1.206478 -1.295104 0.140734 0.881056 6.001643 -0.457014 4.472413 3.745447 2.765447 4.934937 0.676260 0.961021 0.762440 2.499495 -2.065657 -4.799303 1.573330 -1.540390 -3.815101 -2.600609 2.512223 -3.707890 2.380441 3.914803 -0.400888 -0.699164 -2.897958 2.673941 1.701640 0.230525 4.848645 1.381058 -3.153584 0.092528 -4.298827 4.047708 -3.281598 2.384560 -0.578831 -4.320833 -1.188276 1.720682 1.767128 -3.140752 -3.117218 2.046978 1.750587 -3.246525 1.349182 -1.294897 -0.043007 -2.667606 -3.730374 1.392954 -1.162683 3.233736 -0.187381 1.201433 -0.847793 1.285951 -0.001093 -4.773120 -0.110621 4.380200 -2.461719 0.673048 -3.510919 1.608286 0.509834 -0.727004 -1.823383 -2.122687 1.181177 -0.636420 2.376093 -0.384721 -0.284828 -2.985681 1.594815 1.246138 0.702434 1.730242 0.800458 1.177685 1.764055 2.992375 -1.720973 1.768647 -5.723547 2.008963 -1.371019 0.896956 -1.193762 1.819413 1.793629 1.246298 3.353754 -5.264414 3.407459 0.344282 -1.644660 -3.154651 1.371055 -0.587729 -1.783557 -1.450959 3.453412 -0.351341 -1.048892 -0.849045 1.629823 0.206986 -2.278968 -1.912859 -0.492545 1.941082 -2.638548 1.201142 -1.431941 -2.371337 -0.167488 1.791919 2.361404 2.988278 5.530800 3.875681 -0.909442 0.209838 -5.227066 0.714637 4.891026 0.799115 -3.805291 3.796642 -2.362840 -0.375974 1.439213 3.276093 2.382290 2.054007 -1.704079 -1.675637 0.065238 0.337611 4.848760 1.864795 1.021327 -3.559224 1.054733 -1.068326 -0.446905 6.475565 2.901806 -4.825137 0.860754 3.168050 -2.311209 -3.063406 1.732431 -2.352421 -0.992087 -2.165606 1.845353 2.818909 -3.272545 -2.589282 0.754012 -3.863079 3.798402 -1.050301 -1.304199 1.734997 -4.897063 -2.630707 5.510099 0.425040 -1.038370 -2.201802 -3.950646 -0.945311 -5.143770 1.645705 1.492605 -0.841018 -1.766183 -3.418184 -0.340618 4.028281 -0.046442 1.998020 -3.799080 -0.971371 2.699900 0.007228 2.062887 -3.702518 -1.010010 -0.271527 -0.124227 1.665920 -0.924289 1.033964 5.284618 -3.365564 2.431561 2.262861 -1.751839 0.629338 3.300385 -4.484593 5.565213 0.085783 2.416041 0.219386 1.804360 -1.919376 0.502600 0.232710 0.133487 -0.620702 1.697894 -2.657229 -1.593071 0.831893 -3.264047 -2.366968 0.526449 2.669880 0.146473 1.141415 -0.233968 -2.270646 -1.198944 -2.232294 1.224393 3.461499 -0.581019 -2.855890 2.228513 1.855135 -2.305380 -1.130096 0.840148 1.590455 4.063450 -4.987040 1.807009 -0.007411 0.662364 -4.203237 -3.897669 0.837864 -2.996689 -2.039345 1.454192 -4.736727 -2.355531 -2.784884 2.140444 -3.263512 -0.792292 0.492496 4.944216 2.606636 -0.850938 2.864973 -0.865720 2.306805 0.046419 -0.938342 1.322224 3.791560 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -6.332924 0.578695 -4.461920 -8.394519 16.595673 -3.357983 -2.446603 9.442129 1.739028 8.620714 -5.114388 -1.026876 -2.086102 -12.386951 1.134539 -0.296038 1.269600 6.618990 -4.852931 4.186714 5.048938 -1.247700 4.810537 -1.555363 -4.589194 -5.390717 -0.858196 5.191773 2.473476 -3.972048 -0.137493 0.635538 11.938009 -1.918625 8.377275 4.936056 6.906252 9.531817 3.312448 -2.662997 3.212109 2.867955 -3.460934 -10.099597 3.338408 -3.190636 -11.297471 -5.048601 5.948542 -9.556751 2.821046 9.126738 0.367421 -2.946948 -6.816952 5.650680 4.261884 -2.297794 10.325818 2.780240 -7.415144 -3.921224 -8.048161 6.692380 -6.726356 3.694422 -1.794358 -8.568067 -4.802671 7.341424 0.721705 -6.909771 -6.950082 2.683719 6.068453 -6.937391 4.000627 -2.785651 5.553631 -7.620954 -5.321145 4.458283 -4.075874 6.904339 0.383828 4.896653 1.155518 2.238876 -1.724914 -10.629892 1.640014 7.297712 -5.500628 0.370424 -5.792393 5.417809 -1.616913 -3.512934 -7.440053 -5.820068 2.541054 -1.149357 4.858150 -2.268458 2.608932 -6.639224 2.751819 3.457591 3.326984 4.591218 3.774762 0.978383 2.282411 6.879429 -4.481565 2.950708 -13.270936 2.745243 -3.753299 3.219621 -5.124947 3.199061 8.083279 4.439140 6.088718 -12.467749 10.002954 2.200748 -3.326047 -6.784172 3.476895 0.981450 -2.447083 -1.243115 7.372281 -4.257360 -1.224965 -0.699941 5.101244 0.858866 -7.590247 -1.061762 -1.461981 4.694666 -8.167460 4.176741 -1.466509 -5.004906 1.087548 3.516478 6.472317 4.282196 14.164373 6.413978 -3.598026 5.028318 -10.541727 3.975091 12.466693 2.170179 -7.889380 9.205419 -6.974078 -0.545548 1.162415 7.323395 5.405648 3.269502 -3.637096 -2.360311 3.320103 2.791898 11.033118 -0.946864 3.268518 -10.897049 1.263457 -0.952888 4.356241 15.252811 5.436630 -11.157054 3.022923 8.215500 -4.635459 -3.884520 3.394294 -5.929320 -3.139775 -3.750336 5.430895 6.812341 -7.051951 -7.480095 0.061068 -7.444680 6.842940 -2.970897 -6.541599 3.101105 -9.935247 1.015095 12.022891 1.294210 -2.490320 -3.275707 -9.406381 -0.961638 -11.631502 2.599403 4.502758 -2.175250 -0.992570 -5.947599 -3.540271 9.090095 0.547330 2.474499 -14.268888 1.736142 6.923810 1.043815 3.687086 -5.644750 -0.491780 1.678029 -1.368447 1.677632 -4.025751 1.500644 7.548457 -8.256307 5.865369 0.642856 -2.536764 3.619491 5.990450 -7.989535 14.412541 2.238049 10.277222 0.398848 4.408462 -3.111744 3.770081 -1.646330 -2.276812 -1.764834 3.844363 -7.659140 -5.202778 4.215309 -2.164724 -9.642436 0.876458 8.309588 -0.417036 2.957928 -2.761015 -1.937119 -3.189237 -3.472215 4.743807 6.001849 -3.452739 -6.172046 4.086138 8.021493 -2.832597 -1.245212 2.622895 5.547687 10.387285 -10.925897 5.508600 0.094517 4.089296 -9.470462 -8.057652 3.954284 -3.952102 0.281755 2.738600 -12.103803 -6.824551 -5.446092 6.884898 -5.132634 2.815560 2.078248 11.133106 4.819274 -3.730088 6.744464 -1.725725 2.621305 -0.518309 -0.620327 4.183185 6.608203 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.264616 1.676991 -0.982629 -6.268655 13.956862 -1.993492 -1.872196 7.087692 -0.414838 8.353774 -3.937940 -1.877834 -1.736995 -10.681036 0.938186 -2.549496 -0.857690 4.532662 -2.572660 4.421617 4.001693 -1.813574 2.520539 -0.517035 -4.094959 -4.801839 -2.234956 4.284919 4.943302 -5.979861 0.579462 0.026463 10.584902 -2.072689 8.948096 5.748152 5.201951 6.820411 1.995832 -2.511270 0.332399 3.132904 -4.721153 -6.756167 1.197063 -2.404990 -9.102500 -3.265702 4.422866 -4.597261 1.039777 8.198889 -0.979213 -0.987403 -5.281182 5.800886 1.020555 -1.078261 9.360525 1.848503 -5.429101 -1.985586 -9.295250 7.661090 -4.599118 3.697369 -3.196043 -6.491306 -1.550623 2.949521 0.069107 -6.565659 -4.613902 5.886774 5.196490 -6.762946 2.529305 -3.810557 -0.553011 -7.078379 -5.746103 4.453919 -2.258061 6.141726 0.905854 4.014701 1.422050 4.021600 -3.022786 -11.224593 2.190516 7.950196 -5.426770 -1.375976 -5.793823 5.243301 -1.184426 -0.266766 -5.263825 -3.826470 2.776129 -1.000159 4.376757 -4.295857 4.350649 -7.601644 1.208580 1.253036 2.572914 3.247416 4.420418 0.956721 4.500767 8.177957 -4.936290 0.678510 -9.867382 2.244698 -3.945071 2.980663 -4.280550 4.280166 4.487526 4.029110 7.078960 -11.820806 5.496353 0.531650 -2.936793 -7.731906 1.348457 -1.889542 -2.832499 -1.580875 5.287992 -2.203054 -1.390937 -2.328754 3.409024 1.778098 -5.798181 -1.632694 1.336508 4.889475 -6.743523 2.895132 -1.175810 -3.337970 -0.562221 4.867932 7.555631 6.031055 12.455428 6.289858 -1.555818 2.787650 -9.895637 1.616396 9.491519 -0.095283 -7.166029 9.328257 -7.272630 -1.747854 0.457214 7.973252 5.639907 2.649798 -4.809961 -3.680482 4.224318 3.247583 9.900609 -0.976125 1.513685 -4.846270 2.846238 -0.916265 -0.816460 11.998513 4.143188 -8.683634 2.678920 4.949378 -3.233783 -3.853547 5.283027 -6.649975 -1.206042 -3.210010 2.765617 5.629168 -4.704424 -4.013846 0.978703 -6.871970 7.675761 -2.748695 -4.322837 3.519445 -7.831634 -4.176493 9.707376 0.502421 -2.452041 -4.710983 -7.968041 -1.619545 -8.133268 2.836750 3.379924 -1.712936 -2.187053 -6.383856 -1.570276 7.403069 1.346568 4.781442 -10.940880 -0.617226 5.168914 1.093369 5.046765 -3.703185 -0.314657 -0.080578 -1.036960 1.927480 -3.420049 3.322932 9.273694 -6.150882 5.983300 0.158694 -3.542374 1.855351 4.569861 -9.060571 12.316832 2.501592 6.766978 -0.154615 3.137014 -3.001455 2.236349 0.476882 -1.405857 0.362901 1.918939 -3.671571 -3.997233 0.947978 -4.511957 -6.926615 -0.884334 5.032555 -1.968100 3.101595 -2.001278 -3.116823 -3.225254 -3.833624 3.661537 5.667588 -2.271244 -3.442159 5.494836 4.076701 -0.735305 1.324776 1.187144 3.982128 7.587608 -9.943861 1.998894 -0.606522 4.271122 -7.408320 -7.865181 0.998245 -4.361174 -0.502638 1.988439 -9.320757 -4.235833 -5.767805 2.545154 -5.328636 0.415934 2.912070 10.738846 5.157353 -4.684292 4.138275 -2.529003 3.734883 0.112690 -1.064648 3.858391 5.050986 +PE-benchmarks/n-queen-problem.cpp__main = -0.682495 0.173293 -0.073618 -0.362845 1.215438 -0.395198 -0.111209 0.693921 -0.032391 0.921163 -0.383087 -0.315581 -0.352915 -0.950558 0.134021 -0.052209 0.051537 0.643493 -0.128651 0.331371 0.582603 -0.266615 0.070045 -0.104076 -0.275142 -0.511922 -0.176945 0.319511 0.680084 -0.647644 -0.338280 0.199778 1.203243 -0.144328 1.188233 0.863063 0.491644 0.823372 0.255778 -0.347391 -0.228856 0.635601 -0.604635 -0.866595 0.245631 -0.302048 -0.572401 -0.427518 0.544756 -0.176013 0.526022 0.850393 -0.253131 0.094308 -0.556153 0.538617 0.119055 0.259777 1.148257 0.221445 -0.362503 0.087905 -0.936410 0.951254 -0.577734 0.322035 -0.378509 -0.840315 0.005877 -0.031452 0.191318 -0.750036 -0.356736 0.814616 0.302755 -0.748693 0.309997 -0.302356 0.039002 -0.851179 -1.106955 0.265451 -0.322644 0.760416 -0.049379 0.261995 -0.257278 0.478761 -0.183744 -1.247276 0.236516 0.775621 -0.661777 0.101065 -0.252321 0.458258 0.060008 0.157834 -0.425237 -0.315047 0.295074 -0.229775 0.534986 -0.166176 0.694581 -0.503878 0.204900 -0.103962 0.313081 0.311492 0.719142 0.174565 0.684591 0.910601 -0.254338 -0.118008 -0.974478 0.358713 -0.297860 0.243690 -0.119924 0.627946 0.378105 0.050590 0.923478 -1.274324 0.312267 -0.013265 -0.108419 -0.817378 0.173766 -0.458819 -0.387704 -0.487839 0.755408 -0.075548 -0.289544 -0.422918 0.327401 0.204805 -0.703190 -0.104704 0.045208 0.491295 -0.688776 0.207064 -0.346549 -0.554453 -0.071131 0.473384 0.626366 0.920143 1.146001 0.963729 -0.243123 -0.058747 -1.115728 0.050481 0.847345 -0.189449 -0.866134 0.909715 -0.706890 -0.215656 0.354704 0.866168 0.727652 0.283542 -0.314088 -0.342158 0.302775 0.348414 1.071788 -0.044368 0.259092 -0.151085 0.328313 0.048047 -0.608015 1.340313 0.218520 -0.989706 0.319758 0.356435 -0.313555 -0.400109 0.536282 -0.704326 0.037289 -0.578159 0.273682 0.663871 -0.704828 -0.228597 0.315111 -0.865305 0.942999 -0.240755 -0.173877 0.554651 -1.058063 -0.254377 1.141372 0.163197 -0.247196 -0.719544 -0.848423 -0.361872 -0.820657 0.388516 0.058861 -0.087237 -0.457534 -0.855942 -0.110514 0.880917 0.283925 0.560194 -0.876583 -0.143848 0.504075 0.074816 0.523407 -0.405674 -0.223143 0.048856 -0.092988 0.353365 -0.225011 0.447358 1.207254 -0.733800 0.352153 0.443523 -0.237553 0.234706 0.504365 -1.160512 1.140779 0.093421 0.285325 0.001965 0.333974 -0.535741 0.061271 0.183188 0.264661 -0.022072 0.183568 -0.188371 -0.306764 -0.036845 -0.802142 -0.495219 -0.202272 0.333586 0.006622 0.359274 -0.244949 -0.540993 -0.256187 -0.550550 0.238221 0.785549 -0.009561 -0.352302 0.680757 -0.000325 -0.075281 0.082315 0.149561 0.178111 0.782555 -1.096637 -0.012267 -0.060143 0.348361 -0.578494 -0.837171 -0.152999 -0.479793 -0.193077 0.524468 -0.943900 -0.186102 -0.648850 0.118805 -0.779657 0.051487 0.070662 1.169796 0.606507 -0.413834 0.562484 -0.249505 0.595170 0.119508 -0.245225 0.145623 0.732240 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -2.565954 1.174718 0.794845 -1.647461 4.541211 -0.908710 0.241978 1.548760 -1.065264 3.464559 -1.606101 -1.347169 -1.530490 -3.904923 0.413779 -1.534780 -0.267279 1.865238 -0.265122 2.072942 2.167291 -1.839491 0.308956 -0.432762 -1.164355 -2.027261 -0.896564 1.243303 3.219307 -2.451696 -0.193645 0.349021 4.264721 -0.557546 4.325896 3.248812 1.298204 3.274773 0.339849 -1.900094 -1.251001 2.480238 -2.474581 -3.251286 0.796253 -1.182624 -2.516955 -1.872437 1.933284 -0.677043 0.364364 3.505146 -1.067391 0.143734 -2.362690 2.257111 1.039438 0.932406 4.413683 0.727266 -0.821065 0.298176 -4.069146 2.439403 -1.759661 1.126165 -1.494945 -2.833340 0.532956 -0.448370 -0.096007 -2.546367 -1.297009 3.392236 1.757223 -2.983400 0.891616 -1.573228 -2.473075 -3.374541 -3.860275 0.951062 -0.683286 3.142774 -0.050684 1.098316 0.266118 2.053646 -0.913009 -5.026938 0.891229 3.469197 -2.070748 -0.479335 -1.076664 2.544095 0.114157 0.740504 -2.336637 -0.795496 1.190791 -0.721382 2.065059 -1.692994 1.897215 -2.876046 0.458421 -0.414315 0.956282 1.056284 2.870590 0.553474 2.621783 3.695322 -2.361676 0.136606 -3.434297 0.952343 -1.201801 1.118906 -0.589886 2.524193 0.708696 0.391354 3.598751 -5.067223 1.161423 -0.049846 -0.647159 -3.688379 0.469209 -1.936464 -1.448013 -1.671206 2.563833 -0.252882 -0.939541 -1.659371 0.906110 0.833353 -1.952732 -0.321978 0.802067 2.665218 -2.669072 0.841837 -1.203827 -1.976849 -0.449718 1.940391 2.690702 3.443426 4.585184 3.706414 -0.741926 0.527849 -3.985710 0.097571 3.438336 -0.502156 -3.357349 3.554972 -2.600275 -0.833159 0.977986 3.100232 3.135498 1.087868 -2.152805 -1.931343 1.632901 1.157108 4.069768 0.098585 0.790298 -0.659189 2.253082 0.111283 -2.481205 4.518287 1.143800 -3.427380 1.425285 1.251015 -2.012213 -1.733661 2.324151 -2.720038 0.343874 -1.872914 0.726488 2.217047 -2.261045 -0.994245 0.573243 -3.385123 3.765896 -0.967090 -0.285344 1.971410 -3.477630 -2.638364 3.835136 0.184153 -1.237275 -2.979268 -3.036337 -1.683659 -2.979474 1.664616 0.242380 -0.658970 -2.250139 -3.388115 -0.159210 2.991250 0.992480 2.319939 -3.062023 -0.891497 1.779435 1.010262 2.595860 -1.095517 -0.805739 0.175635 -0.305998 1.342627 -0.506677 2.208119 4.881440 -2.719003 1.585018 0.358983 -1.527190 1.142797 2.050938 -4.457397 4.479362 0.523408 2.133219 -0.405171 1.303256 -1.773949 0.301702 1.237418 0.290477 0.379483 0.660752 -0.498686 -1.203741 -0.308439 -3.121364 -1.913905 -0.727374 1.067201 -0.355975 1.446665 -0.234753 -2.087485 -1.013521 -1.851211 0.750027 3.027725 -0.056775 -1.126321 2.431047 -0.042922 0.482816 0.571953 0.496077 0.779287 2.690741 -4.241678 -0.128619 -0.766148 0.959573 -2.019061 -3.477997 -0.260652 -2.385121 -0.958662 2.398719 -3.317536 0.106036 -2.734539 0.176290 -2.875751 -0.266687 0.423370 4.455663 2.359319 -1.660201 1.901115 -1.108435 2.566893 0.167269 -0.810389 0.844497 2.683523 +PE-benchmarks/shortest-common-supersequence.cpp__main = -2.490665 2.010164 1.142152 -1.890037 4.399578 -0.023295 -0.550448 1.921708 -0.166488 3.562819 -2.458795 -1.300153 -1.226101 -3.179956 -0.057330 -2.016943 -1.131777 1.685470 -0.935690 1.507852 1.982223 -1.125316 0.249840 -0.759743 -1.365581 -2.004219 -1.424163 0.903984 2.012637 -1.833198 0.343862 -0.165998 3.990893 -0.507930 3.363523 2.834266 1.361673 3.640312 -0.284062 1.463557 -0.786492 2.253287 -2.390287 -2.426614 0.912340 -1.779368 -2.253671 -1.232689 1.482796 -1.462093 1.760464 3.058621 -0.653018 -0.103360 -1.678139 2.475733 0.686625 0.932524 4.331128 0.813234 -1.570523 0.624471 -4.447180 2.765222 -1.839315 2.537169 -0.680726 -2.899146 -0.126370 -0.423557 1.408140 -2.802485 -2.023353 3.058012 0.918660 -2.758552 0.837436 -1.926811 -3.207483 -2.590428 -3.148973 1.130348 0.255674 2.380037 -0.121316 0.807413 -0.312000 2.032755 -1.024661 -4.663381 0.226883 3.590005 -1.934184 0.388229 -2.588338 1.612169 -0.401359 0.940945 -2.069641 -0.250594 1.306485 0.452813 1.585397 -2.134065 0.578741 -3.500929 1.588033 0.630839 0.035002 -0.180232 1.831786 0.865538 2.363690 3.664371 -2.406649 0.766126 -3.601027 0.569327 -0.378382 1.118412 -0.531371 1.767941 -0.351959 0.504858 3.338917 -4.426283 1.602731 -0.467732 -2.040216 -3.735932 0.389958 -1.955089 -1.707254 -1.283266 1.842508 0.366036 -0.852469 -1.630345 0.550308 0.049481 -1.846205 -1.704631 1.012685 2.413728 -2.004094 0.431237 -0.954704 -1.356295 -0.904422 2.345396 2.718466 2.570375 4.692734 2.791486 0.315453 -0.682020 -3.490807 -0.228556 3.345811 1.213722 -3.432907 3.188480 -2.040179 -0.381456 0.941671 2.524709 2.127267 2.044895 -2.198743 -2.480382 0.449533 0.456817 4.022926 1.179496 0.704289 -0.470626 2.510658 -0.741893 -2.464060 4.725051 2.547264 -2.671297 0.041445 0.937875 -1.355432 -1.996479 2.562780 -1.979260 0.051279 -0.720918 0.023886 1.585181 -1.618929 -1.640051 0.746533 -3.425279 4.244620 -0.756934 0.570716 1.663688 -3.899793 -3.800136 2.980249 -0.117627 -1.676690 -2.205723 -2.103804 -1.522463 -2.788291 1.506093 1.340708 -0.834026 -2.546597 -3.097933 0.670102 2.524920 0.116712 1.900307 -2.097860 -2.432461 1.588687 -0.833552 3.076558 -1.735693 -0.729873 -1.049016 0.144357 2.093867 -0.346142 2.145567 5.528463 -1.924893 2.262489 1.381708 -1.030412 -0.118962 2.698535 -3.648763 4.088442 0.066547 0.903230 -0.555026 1.366310 -1.495446 0.104065 1.216259 0.675268 0.763357 0.903184 -0.378083 -0.886169 -1.130545 -3.962464 -0.597060 0.034022 0.557322 -0.600904 1.086584 0.413492 -2.066741 -1.223468 -1.509651 -0.025811 2.837146 0.272013 -1.282463 1.922551 -0.624156 -0.163354 0.979569 0.457207 0.742505 2.607498 -3.680470 -0.090596 -0.397436 -0.158845 -2.965262 -2.877169 -1.207007 -2.411779 -1.961758 1.695958 -2.980140 -0.214246 -2.443666 0.187423 -2.232421 -1.113019 0.712791 4.180152 2.733607 -1.895311 1.743798 -0.973492 3.267235 0.659680 -1.131407 0.903742 2.755853 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/topological-sorting.cpp__main = -2.769641 0.264591 0.390763 -2.225757 5.821915 -2.000095 -0.138282 3.294645 0.812135 3.372369 -2.544432 -0.521911 -1.607925 -3.713792 0.477020 -1.302077 0.622636 3.024151 -1.560130 0.743606 2.359807 0.497655 0.879722 -1.177301 -1.012812 -2.873639 -0.911302 1.159871 0.561437 -0.905032 -0.311710 1.011192 5.173535 -0.300884 3.812747 3.137356 2.635526 4.257779 0.485507 1.277547 0.938004 2.128153 -1.597032 -4.166243 1.414268 -1.362511 -3.068374 -2.096074 2.183490 -3.200577 2.645796 3.120432 -0.257347 -0.476501 -2.204530 2.106746 1.196401 0.282421 3.938977 1.280059 -3.087211 0.271692 -3.427840 3.737891 -2.891506 2.387053 -0.426604 -3.885623 -1.428444 1.585221 1.970495 -2.887657 -2.872562 1.397949 1.183680 -2.506278 1.249055 -0.773254 0.981447 -1.954367 -3.342936 1.092510 -1.135273 2.516914 -0.248119 0.854755 -1.217078 0.836294 0.260284 -3.763070 -0.224530 3.632749 -2.255504 1.073693 -3.268437 0.639080 0.280308 -0.676213 -1.322833 -2.020840 0.954562 -0.562188 1.922033 0.094309 -0.337888 -2.112081 1.570512 1.219800 0.581581 1.347180 0.397562 1.011992 1.379718 2.227792 -0.789565 1.531314 -4.890646 1.967256 -1.192242 0.588758 -0.921506 1.461346 1.635388 0.916367 2.717326 -4.196430 2.901403 0.276932 -1.551577 -2.315708 1.275576 -0.425739 -1.597439 -1.286517 3.112498 -0.198703 -0.944999 -0.659969 1.466545 -0.025949 -1.985666 -1.747113 -0.791169 0.995134 -1.992627 0.895489 -1.297089 -2.089307 -0.142045 1.490416 1.700023 2.492186 4.428407 3.242370 -0.916145 -0.273563 -4.484609 0.648042 3.936800 0.608437 -3.196209 2.992972 -1.932224 -0.117868 1.431395 2.687873 1.746874 1.748601 -0.932640 -0.976649 -0.366920 0.238131 4.035617 1.841120 1.020130 -3.037359 0.250938 -1.241637 -0.236795 5.465571 2.490370 -4.279657 0.529062 2.777512 -1.448168 -2.704096 1.240178 -1.954398 -1.008253 -2.003259 1.696412 2.423782 -3.003025 -2.078896 1.066780 -3.216415 3.066032 -0.797609 -1.224804 1.415656 -4.435054 -1.898188 4.872191 0.423146 -0.701297 -1.678919 -3.359109 -0.541469 -4.450353 1.320199 1.269885 -0.489241 -1.385904 -2.770442 -0.236523 3.499567 -0.120385 1.668953 -2.800305 -0.750208 2.259297 -0.404849 1.634130 -3.460045 -0.975562 -0.347262 -0.164710 1.503305 -0.940766 0.392487 4.261600 -2.851539 1.977995 2.495794 -1.450735 0.206974 2.762198 -3.573345 4.489309 -0.062016 1.673579 0.287811 1.592733 -1.760778 0.303885 -0.018596 0.496401 -0.816613 1.624001 -2.400227 -1.235576 0.663313 -2.775562 -1.878732 0.556362 2.312734 0.204415 0.841419 -0.375661 -1.941423 -0.925964 -1.991904 1.104285 2.931306 -0.616818 -2.620395 1.786136 1.524985 -2.584329 -1.090180 0.811436 1.224080 3.575492 -4.080793 1.485079 0.256858 0.520005 -3.678258 -3.181984 0.534779 -2.508871 -1.738654 1.045039 -3.877068 -2.308212 -2.208785 2.005472 -2.693608 -0.754093 0.334885 4.028522 2.216827 -0.450625 2.540676 -0.523782 1.818310 0.090956 -0.859425 1.026061 3.218559 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -4.553212 3.299975 1.878372 -4.550957 9.030425 -1.783162 0.448349 3.224629 -0.102368 6.177681 -4.851927 0.331248 -1.499417 -6.116242 0.186998 -3.474209 -0.724130 4.316149 -1.477717 2.826302 3.306708 -1.625906 1.641536 -2.162261 -2.430851 -6.737988 -1.302330 2.107226 2.021660 -1.577879 2.282924 0.151351 7.185959 -1.121480 5.200479 5.033652 2.788340 6.624050 0.672879 1.697042 1.093264 2.941193 -2.830439 -6.219703 1.889110 -1.997999 -5.344810 -3.945984 3.052798 -6.003178 1.933414 5.252652 -0.668900 -1.845144 -4.131204 4.481495 4.010861 -0.444112 6.830287 1.309166 -3.479746 0.276117 -5.977645 5.318000 -4.408173 2.552095 -0.496359 -5.953331 -0.901164 2.537421 1.483458 -3.131816 -3.885102 3.042693 2.509036 -5.077063 0.964998 -2.845640 -3.717284 -3.915628 -3.533403 1.952545 0.043211 4.307775 0.321811 1.942989 -0.134582 2.303296 -0.228309 -6.598477 -0.661972 6.352684 -2.611788 0.304480 -3.802966 3.433606 1.534821 -1.424603 -2.573273 -2.157780 1.532085 -0.382527 3.069356 -1.665958 -1.542329 -5.275239 1.652512 1.907261 0.162756 1.927005 0.194765 2.227519 2.320459 4.283873 -4.051164 2.907308 -7.696861 2.139303 -0.953315 1.328959 -1.473620 1.950181 1.208246 2.357749 4.942411 -7.034622 5.217097 0.064041 -2.306092 -5.194943 1.473732 -0.603318 -1.855852 -1.722910 3.523112 -0.390167 -0.949860 -1.120015 1.496461 0.030318 -2.446081 -3.508226 0.401904 4.341125 -3.900747 2.035680 -1.543347 -2.436696 -0.525336 2.481726 3.576263 3.479592 7.758894 5.232569 0.032083 2.222203 -6.414332 0.585629 6.803483 3.340119 -5.116772 5.276728 -3.101208 -1.041020 1.936065 3.792067 2.977600 3.258880 -4.507857 -4.150389 0.910884 -0.520675 6.523849 2.859689 0.745112 -5.294243 3.893119 -0.554156 -0.961037 8.750104 4.503935 -6.405743 1.956156 4.353781 -4.646272 -4.197345 2.909273 -3.017809 -1.598026 -1.604532 1.481120 2.991238 -3.427818 -4.414342 -0.271524 -5.423478 5.875889 -1.233979 -1.001729 2.312583 -5.520926 -5.518377 6.210570 0.506939 -2.061751 -3.073512 -4.340727 -2.148958 -6.813076 1.889662 2.515292 -2.459741 -3.042810 -4.988179 0.009845 4.424426 -0.777730 2.495802 -5.465850 -2.535233 3.613408 1.026296 2.554001 -4.946714 -1.011006 -0.590851 0.499873 1.800364 -0.544613 3.062544 7.703747 -4.121763 3.564491 1.517912 -3.254578 1.665443 5.067981 -5.905019 7.594650 -0.222935 3.805269 0.460104 2.353155 -2.527300 0.905270 0.792697 -0.958483 -0.315561 2.159437 -3.774887 -2.307289 1.106545 -4.684613 -2.803277 1.245307 3.518671 0.486647 1.362614 0.803668 -2.941839 -1.790387 -2.770401 0.547865 4.286501 -0.450697 -4.112015 2.845159 2.583817 -2.119109 -2.400952 0.986902 2.700423 4.638259 -6.673385 3.131903 -0.612621 -0.327590 -6.462456 -5.415693 1.953030 -5.074409 -4.080013 1.883119 -6.920905 -2.245404 -3.906486 2.515595 -4.604583 -1.756518 1.084844 6.844355 2.960142 -1.366613 4.060231 -1.935192 3.880265 0.078230 -0.643717 1.382861 5.303724 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -4.638085 1.778493 1.804097 -5.825365 10.944424 -2.061058 -1.229041 4.233237 -0.733336 7.449712 -3.926343 -1.132378 -2.286798 -9.855408 1.133046 -4.325668 -0.867883 3.981643 -0.737514 5.383770 3.960104 -2.709365 1.981242 -1.283244 -2.798240 -6.720286 -1.907187 3.393865 4.421107 -3.493976 2.784676 0.073709 8.824124 -0.776338 7.196069 6.154490 2.951433 6.880456 1.403482 -1.494391 -0.335125 3.714619 -4.113153 -6.709014 1.611114 -1.592349 -7.000062 -4.592708 3.745173 -4.331943 -0.883573 7.288125 -1.375106 -1.593811 -6.439997 4.141353 2.200775 0.185773 7.737301 1.637379 -2.744461 -0.895131 -8.386456 4.411961 -4.644819 1.853169 -1.479550 -4.561146 0.716657 1.854684 0.187581 -3.496060 -3.651931 4.809823 4.545977 -6.003755 1.720583 -3.712910 -4.345234 -5.243347 -4.404630 3.116889 -1.629263 6.183012 0.448108 3.086142 1.496910 3.541549 -1.385445 -8.825353 0.892524 6.679411 -3.073947 -2.787960 -4.252862 7.007791 1.579503 -0.967205 -3.027355 -1.842412 2.182619 -1.526411 4.463385 -1.781877 0.589748 -6.887575 1.006497 0.606034 1.703726 3.406549 2.193992 1.459383 3.308751 5.995822 -5.477434 2.221837 -8.163875 2.081206 -3.318586 2.597325 -3.324083 4.102149 2.775178 3.210784 5.721724 -9.206920 4.771565 0.855884 -1.323969 -5.955218 1.723252 -1.204145 -2.269732 -1.647356 4.534682 -1.235554 -1.480853 -1.436153 2.463140 1.829816 -2.758752 -1.372511 1.189028 5.469350 -4.361266 2.703677 -1.630071 -3.336206 0.103919 2.779785 5.343088 5.551573 10.104106 6.274178 -1.233459 2.044280 -8.122366 1.047491 8.727076 -0.387048 -5.439046 7.392981 -3.890113 -1.864411 0.554525 6.270236 5.713959 2.359650 -4.844455 -4.447228 2.060497 1.238115 7.884264 1.595344 0.801043 -4.777193 3.792160 -0.413083 -0.687759 8.853903 3.368291 -6.320826 2.350395 4.644143 -5.981377 -4.470928 3.487074 -3.464447 0.144575 -3.066722 2.709458 4.601521 -3.820759 -4.266320 -1.320922 -5.870106 6.048294 -2.508733 -1.659177 3.118611 -5.359724 -6.299658 7.546469 0.200913 -2.338088 -4.931115 -6.622930 -1.731780 -7.321228 3.173440 1.654749 -2.031058 -1.938113 -5.687082 -1.159655 5.630168 0.639723 3.468689 -8.022242 -1.283830 4.172721 2.149170 3.611120 -3.576717 -0.624482 0.483890 -0.298429 1.677730 -1.114193 3.220164 9.129315 -5.421532 3.839522 0.193326 -2.190661 2.601712 5.124295 -8.559085 10.290011 1.112915 5.999254 -0.309448 2.275813 -1.822216 1.454544 1.452063 -2.795832 1.062464 1.352561 -3.218057 -3.287212 2.172459 -4.128019 -4.813931 -0.171735 4.337497 -0.850904 2.822505 0.215268 -3.724079 -2.097701 -2.594274 2.874388 5.427205 -0.815621 -3.332823 4.348389 4.339835 -0.496213 -1.653318 0.635240 3.248514 5.783428 -8.755658 2.975752 -1.390882 2.667399 -5.034953 -6.686258 2.840910 -4.247446 -2.138940 2.802798 -7.689504 -2.558131 -5.484417 2.287433 -4.702696 -0.622855 1.375511 8.051245 4.187513 -2.702977 3.033945 -2.622596 3.190868 -0.699509 -1.328281 3.137417 5.426122 +PE-benchmarks/binomial-coefficient.cpp__main = -1.725389 1.698890 1.335775 -1.425938 4.144938 -0.176328 0.099072 2.559441 -1.011240 2.835193 -1.606942 0.417050 -0.180424 -1.947943 0.124652 -1.442467 -0.861906 1.281698 -0.573748 1.074365 1.131079 -0.221655 0.019737 -0.291234 -1.325691 -2.344591 -0.732148 0.920773 1.916044 -1.125606 0.013830 -0.003063 3.040079 -1.041643 2.933577 2.243387 1.903887 1.752204 0.036835 -0.074406 -0.130193 1.070496 -1.744213 -1.486546 0.012032 -0.980160 -2.455341 -0.733937 1.069533 -1.333907 0.552748 2.139067 -0.445460 0.089593 -0.742865 2.670502 0.092406 -0.487206 3.005599 0.497231 -1.806257 -0.331390 -3.091061 3.382751 -0.998491 1.513575 -1.504355 -2.405827 -0.141775 0.261068 0.504086 -1.971349 -0.703324 2.468099 0.929260 -2.179112 0.598338 -1.409664 -1.243681 -2.068687 -1.654497 1.205279 -0.081779 1.621888 0.219028 0.799146 -0.507994 1.519087 -1.055324 -3.578298 0.252541 3.312667 -1.886137 -0.203699 -2.690018 0.847654 0.360568 0.630716 -0.862530 -1.113312 1.060385 0.133755 1.071054 -2.490757 1.486902 -2.441539 0.033595 0.441174 0.581195 1.076495 -0.384637 0.993109 2.066537 2.816357 -1.259550 0.598068 -2.754741 0.977487 -1.117500 0.765391 -0.761701 1.215412 0.581257 1.552912 2.611768 -3.301707 1.152643 -0.403365 -1.136001 -2.704022 0.162604 -1.250790 -1.081183 -0.925407 1.155770 0.192609 -0.569561 -1.264621 0.859731 0.252245 -1.302500 -1.936526 0.864723 1.329111 -2.426451 0.466871 -0.437865 -0.345591 -0.731424 2.082872 2.532304 2.049061 3.517377 2.131332 0.528976 0.623317 -2.953924 -0.206201 2.212829 0.626774 -2.273882 2.889249 -2.467019 -0.924041 0.589402 2.133136 1.103240 1.865777 -2.278162 -2.181989 0.745870 0.618891 3.149302 1.026341 -0.032371 -0.695609 1.620729 -1.733771 -1.974759 3.166792 1.938343 -2.582163 0.332711 0.811264 -0.707794 -1.546678 2.043570 -2.665431 -0.619629 -0.503215 -0.048465 1.477963 -1.014706 -0.846738 1.051579 -2.249539 2.999493 -0.623342 -0.439456 0.813464 -2.132967 -2.427145 2.521255 0.131063 -0.959222 -1.534475 -1.529852 -1.181857 -2.045652 0.672049 1.107312 -0.552725 -1.746577 -2.366731 0.067030 1.658082 0.070033 1.762576 -2.807793 -1.430163 1.397438 -0.093551 1.789465 -1.842579 -0.249895 -1.316085 -0.140621 0.908685 -1.120618 1.973138 3.877542 -1.273966 2.088872 0.202683 -2.063587 -0.141351 1.667320 -3.076721 3.213080 0.639252 0.801796 0.237601 0.765829 -1.445156 0.054066 0.258255 -0.019666 0.185667 0.772944 -0.535823 -0.728766 -0.818155 -2.629513 -0.879942 -0.191236 0.899299 -0.943756 0.732295 0.034006 -1.609312 -1.212693 -2.265955 0.098561 1.769732 -0.832776 -1.034738 2.049919 -0.077522 -0.705228 0.254208 0.100071 1.081035 1.686738 -2.760569 0.054453 -0.033092 0.544361 -2.955250 -2.645434 -0.579241 -1.994544 -1.655792 0.170511 -2.314069 -0.930582 -1.787803 0.017050 -2.575816 -1.726673 1.523584 3.551984 1.380288 -1.386746 1.213088 -1.030974 2.112594 0.503779 -0.019705 0.589656 1.520044 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -4.463594 5.097813 3.024435 -3.002017 8.925949 0.208861 -0.510269 3.765453 -4.678038 8.466734 -2.897463 -0.401954 -2.141211 -7.257328 -0.009871 -4.487513 -2.091729 2.028639 0.589398 5.096325 3.061752 -5.135481 0.444602 0.232374 -3.355843 -6.875134 -1.274166 2.573040 9.070141 -5.519525 0.241530 -0.727631 8.200160 -2.014320 7.582751 5.955209 2.622717 5.018264 1.534658 -5.195526 -3.988789 3.817037 -5.553946 -3.110593 0.131737 -2.317422 -5.202496 -1.918017 3.199033 0.209973 -2.200899 6.831838 -2.704016 0.577775 -4.755088 6.528030 1.057889 0.497994 9.606593 0.033000 -0.145923 -2.856809 -8.922948 5.508215 -2.623652 0.222036 -4.363876 -3.406987 3.288966 -2.119044 -1.975597 -4.249029 -0.240322 9.144821 3.920129 -7.047642 0.511407 -4.331353 -10.648510 -7.469860 -6.355568 2.425360 -0.038506 5.699773 1.152700 3.110064 1.458914 5.970627 -3.579225 -11.697981 3.119507 7.959048 -3.775993 -2.839157 -3.192272 7.674335 0.677385 2.254951 -4.126019 -0.602810 2.434093 -1.158333 3.802187 -9.661839 5.497084 -8.865249 0.247793 -2.259068 2.064044 1.757549 4.464192 1.114690 6.487620 9.573308 -7.215236 -1.127708 -7.071937 0.654593 -1.103669 2.017193 -1.767294 5.174733 -1.231455 2.750136 8.451327 -11.800034 1.254625 -1.006747 -1.470521 -9.681763 -0.700809 -4.494820 -1.772906 -2.725028 3.431415 -0.847751 -1.163927 -4.415246 1.699943 2.070963 -4.166987 -2.137570 4.369731 8.863593 -7.063882 2.024316 -1.448943 -2.143888 -1.469438 4.694362 7.215844 7.034138 9.868341 6.629730 0.530764 4.247695 -7.552812 -1.150076 5.898928 1.339116 -6.481537 8.735662 -6.436386 -3.249682 0.535034 6.839988 6.474812 2.410685 -7.521930 -7.527399 5.246096 3.158919 8.042183 -0.575019 0.273191 1.611704 7.698182 -0.701043 -6.748644 7.353291 2.661690 -4.840872 2.948941 1.054097 -4.399497 -2.486545 6.400693 -6.980864 1.601895 -2.240328 -0.627388 4.280354 -2.391644 -0.742743 0.410689 -6.243097 8.894936 -1.915573 0.697567 4.355110 -5.069534 -7.788423 5.170513 -1.055579 -2.650774 -6.522225 -5.590075 -5.978669 -4.399044 2.611945 0.554273 -2.551930 -4.558241 -7.391097 -0.512433 4.484535 2.975491 5.571839 -9.331923 -3.448272 3.471760 3.331605 5.778569 -0.244223 -0.554171 -0.209940 -0.396214 2.462579 -1.602248 7.985149 10.681333 -4.013802 4.867504 -3.988805 -3.388637 2.751278 3.334684 -10.194266 8.795462 2.072205 4.328858 -0.427320 1.780996 -3.119096 1.080269 3.024978 -0.706692 2.245480 0.010349 0.198840 -2.773434 -2.030471 -6.770395 -3.576409 -2.936336 0.981509 -2.597545 3.111005 0.276725 -3.484772 -3.041361 -4.946848 1.133738 4.895929 -0.002454 0.217805 6.111735 -1.085497 3.251548 3.617619 0.183778 2.072469 3.257172 -8.189972 -1.864613 -2.343517 2.235683 -3.715957 -8.694460 -1.337012 -4.301411 -3.212645 4.109467 -7.551982 1.132571 -5.503445 -1.802729 -7.378380 -1.318477 2.653226 9.965321 3.817955 -4.803633 2.555445 -3.370266 5.083374 0.131255 -0.288710 1.902144 4.249288 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -2.220279 1.468075 0.489227 -1.363024 4.592368 -0.984472 0.564518 2.533396 -1.894221 3.250504 -1.443682 -0.137233 -0.969862 -3.518965 0.392292 -1.107871 -0.060622 1.889326 -0.120689 1.923121 1.727608 -1.498464 0.312499 -0.478208 -1.187715 -2.373551 -0.285115 1.016877 2.774789 -1.450518 0.188489 0.357158 3.901528 -0.448930 3.651078 2.721611 1.158326 2.586375 1.033889 -1.888719 -0.911956 1.806304 -1.964668 -2.766145 0.519639 -0.966336 -2.418913 -1.380545 1.450204 -1.431387 0.016915 2.811844 -0.709749 0.194307 -1.964383 2.128797 1.322089 -0.038758 3.639839 0.576202 -1.152338 -0.789767 -3.290827 2.746379 -1.324565 0.297901 -1.001743 -2.566487 0.598192 0.139788 -0.299029 -2.168161 -0.937843 2.893792 1.525148 -2.677227 0.766904 -1.146803 -2.564399 -2.901556 -2.773638 0.847822 -0.790651 2.706235 0.087886 1.022095 -0.091736 1.502153 -0.644013 -4.389233 0.606229 3.402541 -1.800304 -0.398084 -1.802659 2.402788 0.607139 0.513336 -1.742839 -1.213637 0.987172 -0.506607 1.623229 -2.353060 1.189249 -2.630793 0.087671 -0.488063 0.877048 2.185605 1.579468 0.960617 1.981124 3.237774 -2.179063 0.160399 -3.228893 1.197272 -1.204213 0.918822 -0.752784 1.672869 0.979059 0.831866 3.005076 -4.639938 1.322099 0.191922 -0.165130 -3.492084 0.403394 -1.433207 -1.012318 -1.370227 2.158474 -0.414065 -0.607473 -1.354096 0.849703 0.770082 -1.989903 -1.179557 0.521470 3.088985 -3.387267 0.833936 -0.934756 -1.282729 -0.435696 1.555114 2.416521 2.771423 3.679261 2.963937 -0.509321 1.572857 -3.596397 0.175621 3.376968 0.715643 -2.763898 3.250193 -2.439795 -0.954199 0.816993 2.429159 2.470607 1.001000 -2.565468 -2.243017 1.877077 0.899559 3.584583 0.472827 0.551411 -1.441034 2.336337 -0.322956 -2.129709 4.111277 1.266689 -3.179534 1.544086 1.273714 -2.108656 -1.191236 1.805827 -2.793096 -0.157186 -1.527893 0.499343 1.983395 -1.912175 -1.037543 0.410082 -2.817784 3.286704 -0.691511 -0.419651 1.289663 -2.618775 -1.837670 3.477254 0.510940 -0.940527 -2.402827 -2.689822 -2.254293 -2.744164 1.118784 0.322808 -0.758625 -1.757789 -2.946533 -0.687859 2.528566 0.681705 1.820138 -3.890307 -0.552102 1.607852 1.092046 1.786859 -1.909689 -0.586325 -0.040420 -0.115436 0.980660 -0.639071 2.343326 4.227377 -2.195903 1.705155 0.260905 -1.202078 1.194050 1.707327 -3.885359 3.694588 0.332500 2.696362 0.076076 1.159182 -1.595995 0.338358 0.616482 -0.061194 -0.017679 0.761482 -0.882617 -1.099012 0.214030 -2.673199 -2.120795 -0.547863 1.086778 0.005211 0.997689 -0.433991 -1.744012 -0.943794 -2.077571 0.656322 2.415272 -0.420601 -1.190854 2.116106 0.245534 0.121100 -0.033142 0.394692 1.054524 2.044117 -3.580508 0.188040 -0.579114 0.956617 -2.186141 -3.484923 0.386906 -2.039807 -1.564484 1.694824 -3.539693 -0.193363 -2.150145 0.303834 -3.723061 -0.544203 0.553744 4.057862 1.053653 -1.215551 1.756814 -0.998843 2.005621 0.007842 0.163629 0.526442 2.352056 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -6.996639 7.434895 4.560840 -5.565595 13.623858 0.024626 2.921790 6.327962 -9.348108 12.055358 -4.748020 2.238517 -1.949578 -10.341828 0.385195 -6.224987 -2.449279 3.185640 1.101777 8.552827 4.552918 -7.605677 1.518255 -0.583321 -5.176307 -11.050223 -0.270380 4.026809 11.141182 -3.688056 4.316974 -1.026344 10.481391 -2.427348 10.546998 8.803493 2.273057 7.069602 3.090020 -7.928754 -4.365037 4.956002 -7.082129 -7.150566 0.238580 -2.635526 -9.340410 -4.912328 4.234153 -5.813377 -5.307223 9.949412 -3.405510 -0.494933 -6.681204 8.697667 4.626387 -2.775892 12.737707 0.421364 -2.647227 -5.554540 -10.620355 8.883018 -2.854748 -1.018526 -4.229838 -7.424739 4.742392 -0.136266 -5.650645 -2.904797 -0.267631 11.085880 6.205222 -10.327105 0.759616 -6.107668 -15.768609 -8.871805 -5.424583 3.302235 0.627917 9.129869 1.683641 4.492293 3.531569 6.776667 -4.204496 -15.532018 3.277604 12.348015 -5.183581 -4.929451 -5.232286 11.407641 2.744312 1.706804 -5.839787 -1.202351 3.296130 -1.249356 5.527778 -12.629334 2.479168 -11.956165 -1.492025 -1.661814 3.490058 6.706970 3.386656 3.552350 7.641950 11.995710 -10.376716 2.674371 -9.175739 3.222507 -2.923634 3.166227 -3.348644 5.914143 1.645694 5.111204 11.501628 -14.751252 3.857184 0.063316 -0.676291 -13.157627 -0.264726 -5.147575 -2.081520 -3.753156 5.226532 -2.015951 -1.326735 -5.291658 2.484651 3.029230 -5.218161 -4.418442 4.583757 11.707339 -11.197753 3.555779 -2.106646 -2.215614 -1.520485 6.509281 9.447125 9.416270 13.219330 9.465079 0.760897 9.040404 -10.581187 -0.063048 10.863258 4.991663 -8.903312 11.752868 -9.357124 -4.934066 1.196739 7.359736 9.131507 4.735911 -12.275397 -10.478720 8.763009 3.283802 12.166437 2.736624 0.641609 -3.520383 11.315455 -2.165961 -6.723469 9.852010 5.394289 -9.404257 6.014799 3.288721 -10.162245 -3.277457 7.693195 -9.663171 -0.144189 -2.959168 -0.736739 6.457231 -4.075234 -3.488356 -0.733768 -9.242037 11.821597 -2.578744 1.100365 4.130081 -5.988522 -9.385688 7.874279 1.507940 -3.958206 -8.639289 -7.193358 -10.371217 -8.068470 3.280632 1.736179 -3.915118 -6.558668 -10.709040 -2.631156 4.731933 3.150825 7.002333 -13.918525 -2.701904 5.896149 5.975222 5.595882 -3.396814 -0.991029 -0.574195 -0.585179 2.834233 -2.094326 11.323918 12.986512 -6.096943 7.863261 -5.194563 -5.509787 5.157761 4.978796 -13.530753 13.403114 1.899763 9.286121 0.494783 3.149613 -4.556493 1.988457 2.665591 -4.297975 1.668916 1.567668 -2.456085 -4.287531 0.436499 -8.173628 -6.194055 -2.763392 2.997084 -1.527822 3.925865 1.016405 -5.921455 -4.769797 -7.769984 1.692537 7.113287 -2.172181 -2.708929 8.051876 0.657964 3.248197 -1.198659 0.641694 4.889170 4.729289 -12.295241 0.359612 -3.252344 2.127769 -7.767880 -11.121027 2.262547 -7.085475 -7.093307 4.897493 -11.189992 2.098123 -8.076003 -1.065574 -12.091177 -3.961885 3.253429 13.996842 2.038083 -5.386974 4.786353 -4.871381 6.961973 -0.091942 2.147675 2.111514 6.514696 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -5.167096 3.891863 2.649812 -4.374033 11.143607 -1.635994 1.521770 4.149422 -1.028337 7.616602 -4.653645 -2.291637 -2.046897 -7.639601 0.570819 -4.680425 -1.748306 4.542085 -1.397423 3.800667 4.004417 -2.543104 0.705193 -1.488771 -2.871333 -5.849258 -2.347871 2.554251 5.204816 -3.616155 1.045179 0.128742 8.879695 -1.385012 8.332691 6.391222 3.083426 6.684622 0.003985 -0.124213 -0.748747 4.220779 -4.665317 -6.404052 1.219609 -2.429658 -6.383931 -4.299574 3.318417 -4.263372 2.475565 6.684401 -1.423007 -0.430896 -3.833710 5.666940 2.477474 1.053654 8.323016 1.721638 -3.175559 1.306611 -9.263039 6.156222 -3.305989 3.692680 -2.366560 -6.996671 -0.260068 0.431187 1.192790 -5.670334 -3.023836 6.294720 3.545739 -5.869005 1.723153 -3.830535 -5.237273 -6.060284 -6.289683 2.559013 -0.822979 5.831447 0.118444 2.033748 -0.322488 3.690969 -1.895658 -9.729741 0.376094 8.647282 -4.024438 -0.884115 -4.400606 3.919868 0.874716 1.102652 -3.933976 -2.337311 2.461696 -0.277509 3.603751 -3.583972 1.390658 -6.803423 0.951173 1.378201 0.837068 2.347205 3.540913 1.922046 4.558979 7.236368 -5.514226 2.189264 -7.912191 2.526736 -2.457985 2.458511 -1.527202 3.911412 1.134872 2.754467 6.676206 -10.120088 3.738669 -0.293136 -2.524453 -7.301727 0.880426 -3.248975 -3.166539 -2.760710 4.054201 0.292046 -1.654321 -2.851445 1.514432 0.807712 -3.046128 -2.889663 1.837658 5.094482 -5.915131 1.537812 -1.844868 -2.793086 -1.652919 4.595362 6.029671 5.649985 9.615976 6.749319 -0.035830 0.564319 -8.178303 0.107801 7.330440 0.475342 -6.439690 7.344603 -5.178690 -1.489152 2.024227 5.854530 4.566730 3.496181 -5.608218 -4.631184 2.358575 1.034718 8.508170 2.307078 0.844881 -3.401115 5.090268 -2.011919 -4.855829 10.088194 4.997358 -7.213118 1.314602 2.964175 -4.985242 -4.547403 4.892903 -5.439453 -0.500681 -2.560859 1.077549 3.785526 -3.451057 -3.278296 1.222279 -6.807140 7.991512 -1.878308 -0.884145 2.916012 -6.463603 -6.291003 8.430703 0.397645 -2.857722 -4.765528 -5.259983 -3.055204 -6.395743 2.843028 2.049264 -1.753211 -4.858053 -6.451849 0.643498 6.107004 0.169545 4.333053 -5.302843 -3.075596 3.649523 0.622820 5.177427 -4.823859 -1.332661 -1.574439 -0.011554 2.589959 -0.972105 4.595543 11.027299 -4.601062 4.296083 2.053200 -3.734347 1.084639 5.225198 -8.417010 9.163395 0.522833 4.368625 -0.549453 2.616247 -3.296758 0.324024 1.891546 -0.095983 0.566350 2.223912 -1.835836 -2.122950 -0.772201 -7.419645 -3.303277 0.034960 2.790458 -1.099301 2.356352 0.343517 -4.839642 -2.266761 -4.438201 0.615462 5.724985 -0.308021 -3.569100 4.491936 0.506500 -0.743268 -0.570005 0.720419 2.317512 5.434366 -8.085709 0.849476 -0.896703 1.128121 -6.420958 -7.586548 0.086193 -6.235946 -4.150890 2.739726 -6.648805 -1.331191 -5.493322 0.881762 -7.313844 -2.716111 2.075131 9.268767 4.782988 -3.069788 3.743791 -2.375330 5.905092 0.665758 -1.310693 2.322297 5.437010 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -1.125945 0.208406 -0.740535 -0.690813 2.250547 -0.658777 0.451685 0.602276 -1.105680 1.567597 -0.373289 -0.941388 -0.736955 -2.202317 0.495115 -0.487967 0.311084 0.884060 0.101641 1.428497 0.945601 -1.328928 0.218928 0.017552 -0.373241 -0.918253 -0.200915 0.833913 2.084538 -1.168338 -0.375089 0.344045 2.200982 -0.419681 1.984929 1.588898 0.263630 1.192245 0.726160 -2.787690 -0.611718 1.182993 -1.166765 -1.417295 -0.031032 -0.204128 -1.514180 -0.759878 1.108113 0.081836 -0.669298 1.763461 -0.688950 0.142412 -1.626387 0.915915 0.599768 0.493334 2.105989 0.229292 0.067825 -0.478959 -1.515264 1.677972 -0.700923 -0.415735 -1.078128 -1.326718 0.628674 -0.047176 -0.923210 -0.777680 -0.572636 1.618203 1.304795 -1.443969 0.577507 -0.527774 -1.138181 -1.776699 -1.874633 0.408462 -1.154675 1.870284 -0.059098 0.638097 0.280043 0.881662 -0.380158 -2.331197 0.699793 1.515365 -0.847867 -0.730342 -0.121713 1.885409 0.762369 0.141566 -1.296253 -0.559618 0.335047 -1.011153 1.161186 -0.852312 1.557913 -1.090672 -0.621505 -0.488161 1.224697 1.963845 1.696484 0.436774 1.232385 1.533856 -1.108424 -0.774366 -1.308469 0.631281 -1.304138 0.467166 -0.411712 1.518376 1.030342 0.301388 1.761981 -2.542120 0.326115 0.230480 0.513827 -1.480371 0.209992 -0.714568 -0.535370 -0.857879 1.375899 -0.509922 -0.392926 -0.655535 0.691642 0.989542 -0.966919 1.118605 0.280264 1.371027 -1.480556 0.600374 -0.519991 -0.976267 0.228597 0.743066 1.226715 1.942617 2.132142 1.946914 -0.848451 0.945299 -2.075965 0.518991 1.946111 -0.732465 -1.403406 1.780652 -1.442459 -0.705681 0.269146 1.725157 1.915810 0.364919 -0.824473 -0.765233 0.752096 0.898208 1.911216 -0.404962 0.145022 -0.348556 1.090692 0.105934 -0.891564 1.874134 -0.069657 -1.457892 1.074267 0.791648 -1.851805 -0.479016 0.897541 -1.527975 0.319777 -1.518672 0.695941 1.579517 -1.173301 -0.162958 0.018032 -1.371811 1.375042 -0.658403 -0.980714 0.907573 -1.390275 -0.447077 2.067193 0.400709 -0.183359 -1.645449 -1.856074 -0.965896 -1.501167 0.763525 -0.544117 -0.191824 -0.640196 -1.556017 -0.946154 1.514232 0.872967 1.226930 -2.405577 0.616312 0.898917 1.478468 0.781333 0.142298 -0.316219 0.799155 -0.347074 0.072139 -0.551215 1.024867 1.592459 -1.575803 0.281485 -0.437708 -0.517942 1.227626 0.588783 -2.394815 2.279963 0.577687 1.510680 -0.067591 0.477774 -0.710161 0.263256 0.475762 -0.395390 -0.185750 0.097023 -0.396140 -0.731346 0.721667 -0.586228 -1.753312 -0.709498 0.736417 0.008545 0.890595 -0.618037 -1.009494 -0.427823 -0.530403 0.817707 1.332548 -0.052385 -0.163595 1.429824 0.328210 0.646091 0.067175 0.085545 0.469241 1.152485 -2.207871 0.014442 -0.524960 1.322318 -0.366510 -1.798813 0.326363 -0.500751 -0.129347 1.538541 -1.686925 0.076461 -1.399445 0.043221 -1.337889 -0.047270 0.335525 2.148274 0.554437 -0.915522 0.786542 -0.608690 0.721212 -0.377227 -0.077709 0.408718 0.989183 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -2.653745 2.710420 1.241289 -2.175899 5.542814 -1.103155 0.622582 2.616666 -1.871593 4.256752 -1.915558 -0.596312 -1.043523 -4.815938 0.262309 -2.438120 -0.920177 2.479354 0.079177 2.757498 1.986438 -2.267539 0.372488 -0.350493 -1.765388 -3.489892 -0.642632 1.472819 3.698772 -2.529817 0.963684 -0.059709 4.972909 -0.892541 4.615931 3.486967 1.330640 3.159946 1.072938 -1.758671 -1.397255 2.102111 -2.619232 -3.018340 0.335309 -0.909927 -3.268434 -1.860634 1.702324 -1.781500 -0.066554 3.729934 -1.038478 -0.014422 -2.505322 3.117141 1.383962 0.061309 4.710620 0.509110 -0.996055 -0.657055 -4.620419 3.455458 -1.608026 0.531239 -1.548802 -2.808574 1.127423 -0.151795 -0.889090 -2.483449 -0.725169 4.078877 2.257052 -3.645605 0.581393 -2.197991 -4.601357 -3.663698 -3.353329 1.374483 -0.438907 3.287486 0.377645 1.478964 0.465130 2.455507 -1.473605 -5.740333 1.028093 4.552575 -2.067939 -1.388407 -1.854091 3.607005 0.798846 0.717550 -2.124647 -1.268483 1.343152 -0.565199 2.137837 -3.446623 1.269533 -4.282754 -0.029602 -0.304277 0.707021 2.183011 2.477782 1.116719 2.790501 4.463499 -3.750578 0.265290 -4.575995 1.143881 -1.252594 1.231193 -0.887390 2.191268 0.400832 1.657539 3.857554 -6.147284 1.569108 -0.033894 -0.522185 -4.627488 0.177947 -1.889313 -1.142412 -1.578935 2.173510 -0.342444 -0.716052 -1.819506 0.804058 1.059667 -2.012199 -1.673879 1.482687 4.199159 -4.109495 1.137692 -0.949651 -1.309026 -0.734685 2.268416 3.501180 3.357092 5.234477 3.611128 0.043944 1.923486 -4.565760 -0.275721 3.855149 0.590718 -3.388839 4.380399 -3.188984 -1.530152 0.575896 3.630837 3.065416 1.519524 -3.897262 -3.511204 2.880342 1.049537 4.392011 0.030029 0.122592 -1.437055 3.761433 -0.025681 -3.097242 5.361831 2.036303 -3.535653 1.538584 1.250930 -2.954431 -1.920327 2.973303 -3.468935 0.057664 -1.313647 0.173990 2.223704 -1.756216 -1.385318 0.176509 -3.528851 4.253828 -1.058805 -0.490655 1.689494 -3.020516 -3.393127 4.148455 0.353172 -1.507913 -3.092197 -3.412144 -2.552964 -3.098683 1.513703 0.838613 -1.128247 -2.500727 -3.651840 -0.273377 3.062968 0.889016 2.578993 -4.636560 -1.485301 2.134357 1.644813 2.628817 -1.981898 -0.502279 -0.286533 0.036351 1.192280 -0.422246 3.606616 5.815891 -2.399821 2.688833 -0.177157 -2.172886 1.444183 2.340462 -5.167775 5.031165 0.663020 3.076611 -0.060383 1.120517 -1.824618 0.452753 1.246018 -0.479389 0.608238 0.538888 -0.673236 -1.425429 -0.487147 -3.662844 -2.307963 -0.788634 1.257077 -0.705725 1.482662 -0.120615 -2.239100 -1.526098 -2.570895 0.501961 2.927311 -0.108116 -1.103235 2.908379 0.181314 0.859869 0.583129 0.234747 1.446250 2.297859 -4.544190 0.146930 -0.959479 1.021264 -2.924259 -4.646977 0.404222 -2.934858 -2.008257 1.514838 -4.265069 -0.087756 -2.926978 -0.034836 -4.757928 -0.761356 1.184773 5.227185 1.787160 -1.986753 1.757745 -1.630867 2.902889 0.236536 -0.140268 1.065616 2.921473 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.910135 1.862665 1.911480 -1.898341 5.137101 0.175822 0.409516 3.722472 -0.683695 2.819705 -2.398697 1.117717 0.401066 -1.241549 0.114207 -1.665405 -1.226517 1.437795 -1.483697 0.320208 1.144996 1.326329 -0.032742 -0.719260 -1.550452 -2.293075 -1.217738 0.858415 0.804842 0.143592 0.215452 -0.098483 2.997801 -1.414701 3.055289 2.250037 3.009122 1.677633 -0.871827 2.096979 1.075215 0.824697 -1.687255 -1.889032 -0.037107 -1.414055 -3.309770 -0.659767 0.991294 -3.045908 1.496292 1.926184 0.063636 -0.157743 0.475530 3.223721 -0.169796 -1.485706 2.681369 0.928028 -3.876490 0.202268 -3.238599 4.536617 -0.804864 3.473670 -1.556948 -3.699850 -1.560895 1.166501 1.471252 -2.370015 -1.169021 1.864344 0.539886 -1.865573 1.072066 -1.496452 0.780546 -1.272123 -0.789349 1.646604 0.088806 1.190451 0.093513 0.490349 -1.080667 1.014155 -0.953443 -3.193335 -0.628281 4.098916 -2.388430 0.446705 -4.601744 -1.255396 0.266660 0.668231 -0.363167 -1.767002 1.344103 1.088414 0.717601 -2.151517 0.733802 -2.247631 -0.008650 1.919467 0.406006 1.366400 -2.550711 1.462261 1.926881 2.485519 -0.321576 1.950113 -2.596148 1.589977 -1.918838 0.929075 -1.118748 0.668186 1.660402 2.299374 2.361206 -2.381527 1.922015 -0.507647 -2.114830 -2.140421 0.465317 -1.171134 -1.652865 -0.678647 0.894826 0.678585 -0.701277 -1.164005 1.064503 -0.487905 -1.118074 -3.309953 0.353593 -0.787489 -2.412342 0.110051 -0.288724 0.235733 -1.015532 2.853624 2.678498 1.557006 3.624545 1.803612 1.058819 -0.083624 -3.095562 0.148664 2.548149 0.986056 -2.439239 2.673526 -2.807157 -0.516457 0.987227 1.564689 -0.062603 3.404468 -2.183186 -1.828935 -0.419793 0.092433 3.474283 2.714094 -0.095982 -2.053068 0.693367 -3.583738 -1.578140 3.649606 3.230714 -3.457320 -0.489643 1.160886 0.134455 -2.147477 1.845784 -2.904951 -1.896306 -0.101841 -0.210883 1.379610 -1.078107 -1.589564 1.938012 -2.433433 3.131369 -0.488587 -0.865914 -0.106961 -2.493327 -2.314678 2.977782 0.551401 -1.177022 -0.778496 -0.791204 -0.494951 -2.497414 0.428215 2.319391 -0.350336 -2.166630 -2.259418 0.481415 1.472271 -0.948829 1.664490 -2.382118 -1.833136 1.521295 -1.550731 1.924394 -3.913796 -0.331625 -2.967587 -0.336791 1.207817 -1.817829 1.266165 4.028230 -1.081522 2.871710 1.343155 -3.208093 -1.545356 2.163921 -2.392216 3.361146 0.581800 0.162668 0.496067 1.083692 -1.703845 -0.124039 -0.593649 -0.027317 -0.156417 1.774051 -1.157357 -0.512724 -0.956867 -3.054298 -0.333644 0.730371 1.272671 -1.041065 0.316332 0.076119 -2.221959 -1.509457 -2.673756 -0.356762 1.864230 -1.872116 -2.442223 1.757679 0.049815 -2.577054 -1.155837 0.190353 1.423538 2.160294 -2.653012 0.628845 0.778769 -0.047417 -4.953838 -1.910958 -0.964032 -2.379366 -2.416632 -0.997768 -1.697060 -1.990299 -1.679266 0.444148 -2.409395 -3.493924 2.225148 3.612506 1.354914 -1.258815 1.495577 -0.838168 2.688844 1.057435 0.137122 0.549707 1.373251 +PE-benchmarks/graph-coloring.cpp__main = -10.807747 4.084519 3.350962 -11.916221 22.637998 -6.310836 -1.096079 10.143040 1.929374 15.113508 -10.367497 -3.166955 -5.637672 -19.601941 2.084382 -9.952723 -0.917811 10.682984 -2.840000 9.397544 9.163435 -3.307840 3.717631 -4.329417 -5.656832 -13.196397 -4.177032 6.322056 5.360443 -5.174114 5.900948 1.934766 20.578223 -0.103593 16.359309 13.791981 6.777249 17.808416 3.294513 3.599687 0.942482 8.371223 -7.811731 -16.912906 4.764397 -4.231433 -13.762425 -10.824314 7.587371 -12.055763 6.546966 14.933228 -1.666512 -2.949630 -13.415901 6.995069 5.546661 1.726706 16.605404 4.375114 -9.185390 0.563287 -16.369460 10.431885 -10.371680 5.855524 -0.413443 -11.311010 0.415848 5.078572 4.976422 -10.236709 -10.396452 8.306137 7.680340 -11.983966 4.256259 -6.615964 -7.300769 -8.549447 -10.300787 5.961493 -2.756421 12.281972 -0.224595 5.377980 -1.778831 5.946838 -1.554372 -17.190801 0.163836 15.620079 -7.111909 -1.811011 -11.097780 12.258698 2.976791 -2.442014 -6.377074 -4.491978 4.558452 -2.272582 8.976666 -0.694381 -4.714380 -13.946079 5.474724 3.119167 0.872108 6.813774 4.052976 4.648657 7.032404 11.037233 -9.527371 8.272483 -20.041343 5.902695 -5.262404 4.420519 -5.436195 7.155764 4.518726 5.617871 10.987234 -18.740498 11.676024 1.765620 -4.001125 -12.164568 4.113435 -2.025858 -5.652431 -4.304405 10.829031 -0.855242 -3.509752 -2.638350 3.924199 2.448716 -5.596892 -7.656577 1.533346 10.195236 -7.016968 4.885295 -4.125039 -7.660914 -1.040234 5.721034 9.518473 10.383062 20.948969 13.102530 -2.181657 1.143432 -17.577643 1.583026 18.231756 2.034558 -12.776773 14.575564 -7.385460 -2.946494 2.338727 12.573764 10.661564 6.060436 -9.358632 -8.465019 2.210765 1.028213 16.739682 6.034285 2.503834 -11.927302 6.940064 -1.864539 -0.955528 21.980745 8.707332 -14.991065 1.477156 10.664369 -11.017321 -10.682122 7.354797 -6.333883 -1.448540 -6.206636 6.452249 8.905996 -9.393835 -9.622646 -0.919218 -13.363138 12.605738 -4.974488 -3.242589 4.810755 -14.838551 -11.855617 18.941906 0.686911 -4.506716 -8.054529 -13.861734 -1.597595 -17.201684 6.408410 5.728765 -3.024580 -5.339670 -11.322697 -0.656405 12.907146 -0.641418 7.139293 -11.671123 -5.041194 9.193595 1.007967 6.605253 -12.929780 -2.476000 -0.243036 1.760807 5.561992 -0.889648 5.861115 20.309425 -11.175719 8.392387 6.468606 -2.973352 3.925006 12.517542 -17.131562 21.123674 -0.275601 11.249669 -0.532058 5.317353 -4.372825 1.619766 2.388771 -2.158514 0.362879 3.943021 -7.716795 -5.926463 4.016555 -9.892204 -7.739655 1.365057 9.874636 -1.523153 5.280205 1.295014 -7.445541 -5.016354 -7.387230 5.440797 12.013395 -1.137870 -9.148794 8.585891 8.294344 -4.859135 -2.864372 1.623574 6.794931 13.308201 -18.195650 6.579005 -1.800376 2.761589 -12.428188 -14.004300 5.909712 -10.250045 -6.364329 4.185207 -16.009917 -7.040039 -10.958718 6.694252 -11.448461 -2.452222 1.736874 16.982989 10.393417 -3.935957 7.370209 -4.697696 7.689596 -0.256950 -3.256530 7.085492 13.987786 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -11.300653 9.133566 6.484225 -11.300629 22.619816 -3.556264 1.463431 5.706078 -0.828206 16.435159 -10.807459 -4.636183 -5.073403 -18.573409 0.706712 -12.051905 -3.945218 10.816522 -2.378283 9.884823 8.652483 -7.864774 3.536205 -4.034414 -6.250243 -15.594680 -4.808850 5.921714 9.847670 -6.447140 5.580427 -0.878691 19.257482 -2.588315 15.326085 13.156907 4.830466 16.392774 0.540147 0.259400 -1.040905 8.782876 -9.203323 -15.426183 4.172612 -5.056463 -13.947138 -11.274601 7.666686 -11.513057 2.246291 14.706383 -3.127304 -3.825087 -11.056576 10.982196 9.156486 2.743659 18.168722 2.909218 -4.290839 2.256571 -18.977076 9.880118 -9.598231 5.794998 -3.254796 -13.885854 0.166572 2.578074 1.861881 -8.102374 -8.255273 11.764624 9.460981 -13.115848 2.200140 -8.989539 -16.550039 -11.718624 -12.147377 4.890449 -1.382811 12.784171 0.681373 5.422304 2.466976 7.992260 -2.800920 -19.561235 0.174921 17.640673 -5.479160 -2.799359 -7.049766 11.836630 3.710178 -0.936114 -8.840127 -4.231672 4.458971 -1.355271 8.583226 -5.360563 -1.588515 -15.772627 3.395105 3.590543 1.038353 4.508722 5.749394 3.800828 7.760324 13.956976 -14.959089 6.150743 -18.303331 3.895219 -4.139816 5.042097 -3.553617 7.950447 0.931857 5.624874 13.668620 -21.144026 10.640689 -0.013383 -5.186353 -14.985906 2.716366 -4.208683 -4.955073 -4.942654 8.404487 -0.848756 -3.149034 -4.531161 2.475082 1.699473 -5.210854 -5.426161 3.857784 13.325292 -10.582620 5.078123 -3.974984 -7.128120 -1.734709 7.380194 11.514184 10.864395 20.817624 14.726731 -0.287476 3.527265 -16.834324 0.978226 17.613973 2.464246 -13.448673 14.885322 -7.984875 -3.327089 3.560960 12.040372 10.506140 7.577291 -12.312840 -11.500375 2.474872 0.548376 17.050575 6.324259 1.035721 -10.149006 12.656061 -0.288676 -6.359144 22.076787 10.292404 -13.647998 3.931954 8.375013 -15.177003 -10.878635 8.877576 -8.356013 -0.298068 -4.996638 3.200651 7.656471 -7.220854 -9.902053 -1.436548 -14.443163 16.155971 -4.172544 -1.822266 6.556195 -12.904099 -17.379198 16.800462 -0.044181 -6.586245 -10.339239 -12.154191 -6.177387 -14.992989 6.320176 4.415668 -6.230649 -9.564276 -13.391819 0.986854 12.796434 0.005230 7.893411 -12.589458 -7.060331 8.207829 4.555839 9.946070 -9.980857 -2.265900 -0.935052 0.460845 4.582925 0.517577 9.463379 22.381124 -10.627944 7.790372 1.650402 -9.214193 5.159764 12.446314 -17.175342 20.151557 0.095185 10.216713 -1.186423 5.491080 -4.839240 2.380491 4.981400 -2.863016 1.881306 4.511952 -5.864174 -5.916127 1.058482 -13.628703 -7.690924 1.092941 7.351836 -0.197727 5.176538 2.411146 -9.596119 -3.913830 -5.688304 1.041898 11.801641 0.970024 -7.876855 8.290667 4.080151 -0.212419 -3.847238 1.889040 5.686172 11.006594 -17.695319 5.360041 -3.321538 0.739650 -12.840693 -15.134824 3.236634 -13.714464 -8.468169 7.482430 -16.490004 -2.310292 -11.643086 3.634814 -11.942046 -4.115954 3.361269 18.353491 9.898797 -5.632783 8.754316 -5.706058 11.615887 0.304196 -3.413417 5.220785 13.384960 +PE-benchmarks/trie-suffixes.cpp__main = -15.229107 1.065615 -8.495036 -21.633336 40.966753 -7.059492 -6.268645 21.243710 5.269946 20.192149 -14.797067 -2.316895 -4.484679 -29.667230 3.294744 -2.239550 1.498937 14.716018 -11.577117 10.391829 12.202161 -2.150501 11.265713 -5.659395 -10.084608 -13.179271 -3.862694 12.085991 4.596600 -7.215245 1.506657 0.980996 27.271132 -3.977573 18.465468 12.222572 16.307990 23.891396 5.416734 -2.720962 9.753232 7.365188 -8.081192 -25.100838 8.592426 -8.390370 -27.350990 -13.392971 13.624183 -24.468902 7.689040 21.935764 1.344671 -8.996946 -17.548783 12.669202 10.779842 -5.038941 23.724608 7.454805 -18.928011 -7.979427 -19.981388 14.886276 -16.127910 11.531422 -2.309503 -20.080104 -11.712108 18.678882 4.184249 -16.760723 -18.214943 4.616260 13.697739 -15.601307 10.038380 -7.539311 14.456055 -16.134475 -10.206586 10.720439 -9.393700 16.430369 0.175446 10.608295 1.335045 4.251215 -2.518864 -23.158240 0.683933 17.907125 -12.239681 0.662790 -15.641383 13.038466 -2.131982 -9.369128 -15.892276 -12.416527 5.857123 -1.019621 11.379328 -2.693414 2.650760 -17.137125 7.799653 10.038637 6.652886 10.844367 5.440571 3.058633 3.892955 14.020730 -10.287828 9.867397 -31.175707 5.807608 -9.243617 8.459209 -13.179235 6.935383 19.283322 10.692353 12.798496 -27.200150 25.459000 5.231746 -8.553529 -14.430590 9.158339 3.187974 -7.183797 -1.254303 16.298102 -8.245050 -3.472171 0.184662 11.663349 1.481837 -16.542399 -3.986758 -3.329564 10.500251 -16.699242 9.379050 -3.277285 -11.244926 2.383005 7.783938 14.715119 8.774968 34.056159 14.842135 -7.474195 10.282754 -24.400927 10.616925 31.343887 4.591988 -18.592666 20.457604 -15.190555 -0.123770 2.522536 15.958617 11.993633 9.851504 -8.733926 -5.188327 5.946861 3.703445 25.765812 1.273931 8.260532 -28.293256 2.546629 -4.581601 12.671667 35.603132 13.783603 -27.106726 6.040898 21.311971 -11.332051 -10.035074 7.127461 -10.830573 -7.778887 -8.591487 13.875440 15.413980 -16.552060 -20.257332 -1.950252 -17.749706 16.003408 -7.098560 -14.261970 6.119594 -22.335935 0.649791 29.023014 3.113287 -6.296643 -6.516089 -20.742770 -0.209691 -28.617726 6.536595 12.229699 -5.693858 -2.601595 -13.374324 -7.191311 21.639550 -1.921142 5.113794 -31.089731 3.145351 15.687889 1.234407 8.601837 -15.667001 -1.735445 1.982536 -2.209754 4.604001 -9.391054 2.030041 19.305068 -19.535611 14.521907 4.124753 -3.939271 7.057339 16.613219 -17.463788 34.283619 4.918278 25.348206 -0.045038 11.042934 -6.319241 8.223805 -4.064383 -7.013837 -3.359294 9.938773 -19.311785 -11.724542 12.066969 -4.934206 -21.309199 5.079945 20.643311 -0.449558 6.475135 -4.993046 -4.743734 -7.789169 -7.548583 11.281629 14.586767 -9.134503 -16.883928 7.775957 21.094619 -9.816832 -5.154912 6.101606 13.377244 25.557716 -25.849166 15.458405 0.592820 8.246147 -23.748939 -17.517446 10.380815 -9.099752 -0.606416 6.031234 -27.777147 -17.876647 -13.469792 17.362235 -11.537804 3.797205 3.773807 25.098746 12.983200 -7.232513 15.438512 -3.897339 6.161803 -1.622824 -2.286977 11.349448 15.549368 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -3.005822 2.038907 0.175010 -4.008316 6.252943 -1.301880 0.371580 2.513265 0.543431 3.696117 -3.333777 -0.921883 -0.899784 -5.539891 0.625268 -2.472934 -0.163146 3.125460 -1.466455 2.562373 2.647826 -1.069393 1.144089 -1.594780 -1.919988 -3.448174 -0.884313 1.787377 1.424663 -1.327029 0.980335 0.284767 5.381165 -0.479147 4.464424 3.608391 2.268421 4.868823 0.958810 0.321912 0.716979 2.175581 -2.069774 -5.016661 1.003858 -1.484695 -4.181011 -2.948493 2.175700 -3.799279 1.487490 3.906869 0.122504 -1.039061 -3.499560 2.243005 2.291955 0.481915 4.725566 1.702146 -2.227641 0.222694 -4.465293 2.783663 -3.180856 2.211837 -0.211492 -3.861014 -1.046738 2.170189 0.803973 -2.542015 -3.565311 1.444858 2.332080 -3.445375 1.534350 -1.964942 -1.740680 -2.754439 -2.377073 2.160798 -1.039590 3.934648 0.135000 1.554820 -0.044386 1.531713 -0.357650 -4.763491 -0.395457 3.982214 -1.858192 -0.506379 -2.458254 3.192366 0.458343 -0.736800 -2.760982 -1.956288 1.761194 -0.100829 2.192209 -0.641965 -0.871573 -3.697069 1.256127 2.139393 -0.174752 1.914251 1.463930 1.388044 1.738154 3.151070 -2.643908 1.765451 -5.831180 1.505208 -2.027886 1.384981 -1.520288 1.765789 1.832290 1.721410 2.994529 -5.004315 4.229981 1.258820 -1.727766 -3.236225 1.689407 -0.404056 -1.948487 -1.222452 2.850409 -0.253592 -0.586316 -0.682265 1.382818 0.066735 -1.488873 -1.348284 -0.119031 2.355895 -2.930603 1.226205 -0.944467 -2.048500 -0.381841 2.034254 2.653487 2.255235 6.172666 3.539550 -1.038404 1.026819 -4.636882 0.852782 5.776772 1.150203 -3.569518 3.822133 -2.291306 -0.584652 1.082253 2.990985 2.143024 2.068957 -3.007608 -2.436629 0.093257 -0.111190 5.122023 1.349134 0.791441 -4.002622 2.708472 -0.499557 -0.232850 6.373606 3.139160 -4.255444 0.580077 3.259904 -3.427126 -3.012071 1.957560 -2.430654 -0.514335 -1.589473 1.442891 2.286735 -2.750577 -3.590642 -0.490827 -3.787138 3.675735 -1.093537 -1.656023 0.746396 -4.179705 -2.396438 5.425179 0.249836 -1.783866 -2.120524 -3.246982 -0.884677 -5.132596 1.682317 1.743754 -1.393615 -1.610437 -3.249669 -0.345209 3.596987 -0.955989 0.906545 -3.661932 -1.108734 2.851343 0.770727 2.186594 -2.936422 -0.599921 0.133103 0.090226 1.371298 -0.887554 1.812471 5.328404 -3.172917 2.039327 1.093128 -1.863073 1.273210 3.987110 -4.150140 6.237085 -0.070490 3.277089 0.103366 1.811189 -1.703684 0.463261 0.226832 -1.207766 -0.159779 1.882314 -2.803604 -1.630293 1.070123 -2.246090 -2.615117 1.086971 3.203475 -0.281056 1.011654 0.339927 -2.016849 -0.993144 -1.633158 0.873116 3.456802 -0.537087 -3.215817 1.827959 2.730454 -0.976538 -1.230593 0.689920 2.087923 4.396299 -4.809316 2.324987 -0.319075 0.700278 -4.542207 -4.229258 1.734556 -3.149664 -1.190733 1.280543 -4.410057 -2.012322 -2.893661 2.528700 -2.826331 -0.326371 1.386868 4.548890 2.274350 -1.364532 2.211369 -1.141808 2.925419 0.076463 -0.726804 1.430171 3.827207 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -4.205712 1.938241 0.620860 -5.482432 10.122359 -1.553360 -0.522228 4.360163 1.473347 5.265745 -4.878091 -1.028005 -1.146356 -6.315682 0.705165 -2.659806 -0.409924 4.463525 -3.073768 2.277592 3.366605 0.179285 2.103373 -2.079755 -2.624613 -4.103496 -2.150204 2.613013 1.119300 -1.678087 0.591450 0.060815 7.307056 -1.665003 5.312152 4.296460 4.083971 6.415608 0.124988 1.417263 2.483731 2.644114 -2.768661 -6.483825 1.745781 -2.566686 -6.283841 -3.482744 3.429594 -6.025567 2.437063 5.014270 0.309305 -1.988960 -3.549926 4.156430 2.648565 0.132582 6.393686 2.148689 -4.616675 0.769544 -6.372415 4.929321 -4.597150 5.021411 -1.555203 -6.704077 -3.511317 3.754587 2.315814 -4.482166 -5.480767 1.635707 2.583636 -4.243636 2.248885 -2.531325 1.666262 -3.749959 -3.245641 2.929817 -1.816534 4.291276 -0.038324 1.966939 -0.503504 1.720031 -0.319442 -6.091085 -1.050477 5.400596 -3.096799 0.562841 -3.955507 1.540461 0.142332 -1.490610 -3.161845 -3.189324 1.962217 0.287507 2.842718 -0.392937 0.389768 -4.320336 1.795140 3.791907 0.658352 1.905431 0.462109 1.839939 1.958754 3.890233 -2.566320 2.323917 -7.874435 2.026822 -3.379698 1.852919 -2.594318 2.368422 3.259136 2.779175 4.186324 -6.456644 6.245930 0.709561 -3.357128 -3.567418 2.545314 0.075772 -2.763552 -1.026395 3.669678 -0.623456 -1.171272 -0.688699 2.462993 -0.389285 -2.608408 -1.554494 -0.714361 1.275768 -3.744228 1.681817 -1.175222 -2.711900 -0.020574 3.041032 3.851691 2.936127 8.440681 4.689880 -1.157079 0.511859 -6.821054 1.849157 7.439425 0.795707 -4.870080 4.953139 -3.288394 -0.213032 2.077036 3.973701 2.011057 4.065643 -2.580429 -2.478155 -0.930686 0.059489 6.946221 2.616705 1.356379 -6.312087 1.579961 -2.297080 0.832236 9.251168 4.629200 -6.767954 0.776786 4.846124 -3.068038 -4.319276 2.248107 -3.273702 -1.789883 -2.042875 2.012508 3.587017 -3.912727 -5.462231 0.336494 -4.992454 5.201418 -1.558822 -3.505391 1.510451 -6.088838 -3.120815 7.379840 0.930613 -2.135320 -2.368363 -4.464266 -0.136933 -7.323182 2.017544 3.150977 -1.859236 -2.170900 -4.277296 -0.292643 5.033024 -1.351905 1.519955 -5.504640 -1.200405 3.890420 -0.219761 3.225962 -4.729488 -0.629550 -0.962605 -0.896763 1.707389 -2.150817 1.041742 6.791689 -4.526536 3.493482 2.585308 -3.499656 0.493261 5.317202 -4.865707 8.388769 0.430813 4.117164 0.192834 2.646229 -2.291063 1.187125 -0.322566 -1.378137 -0.539431 3.131639 -4.447185 -2.474057 1.459489 -3.468851 -3.590983 1.818768 4.678550 -0.186336 1.240148 -0.133724 -3.030545 -1.595633 -1.607367 1.031246 4.391850 -1.761032 -5.283166 2.318489 3.751707 -3.250014 -2.830188 1.114045 2.886456 6.163755 -6.490164 3.613330 0.324983 0.903400 -7.509847 -4.562071 1.289991 -4.077839 -1.574502 1.249233 -5.848968 -4.223449 -3.657888 3.744886 -2.550914 -1.339689 2.088433 6.283698 3.537773 -1.844587 3.724015 -1.232547 3.769807 0.295141 -1.462831 1.761858 4.526444 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -3.969499 2.329673 -0.007840 -4.827089 8.205810 -2.280810 0.441504 4.485091 0.387161 5.182520 -3.558794 -0.875842 -1.187005 -6.871685 0.637549 -2.764437 -0.015443 4.200229 -1.830077 3.496602 3.344195 -1.193651 1.410762 -1.385936 -2.823979 -4.000628 -0.701678 2.564965 1.881731 -2.383358 1.262009 0.742927 7.459534 -0.622257 6.766098 4.790119 2.999348 6.044885 1.843294 -0.112436 0.560406 2.498138 -2.741438 -6.079436 1.084544 -1.472004 -5.645187 -3.629249 2.842913 -4.740506 2.348212 5.408209 -0.116752 -0.706810 -4.162985 3.267668 2.097191 -0.043309 6.365022 1.937498 -3.582316 0.008500 -5.623587 4.259452 -3.670382 2.126288 -0.777894 -4.868259 -0.822978 2.629767 0.939788 -3.917925 -3.729689 2.704547 3.057316 -4.718565 2.046339 -2.360523 -1.644017 -4.108474 -3.439745 2.901891 -0.878599 4.695328 0.279834 2.456845 -0.447517 2.330305 -1.264083 -6.923733 0.668122 5.457954 -3.232911 -0.717290 -3.608567 4.190214 0.167593 -0.704399 -3.795508 -2.913982 2.365502 -0.807001 2.941942 -1.485374 -0.037768 -4.479096 1.204859 2.151494 0.396349 2.843661 2.060122 2.041667 3.106759 4.756378 -3.015887 2.493543 -7.814135 2.363885 -2.528553 1.617111 -1.761482 2.303898 2.713104 2.608948 4.235820 -7.161038 4.846711 1.383818 -1.907035 -4.914006 1.738531 -0.884414 -2.086452 -2.125045 4.126702 -0.678989 -0.697709 -1.314600 1.913745 0.412555 -2.214520 -2.309609 0.148527 3.234523 -4.175866 1.854094 -1.161337 -2.503073 -0.549982 2.923985 3.970031 3.302775 8.346279 4.494851 -1.292346 1.179196 -6.275939 0.523900 6.754247 1.509238 -4.815239 5.920262 -3.684011 -1.373536 0.972693 4.677198 3.251481 2.057845 -4.125795 -3.406873 1.282050 0.746379 6.929496 0.600347 0.858910 -4.477990 3.224074 -0.768316 -0.844952 8.560900 3.815794 -5.742511 0.470136 3.873230 -3.551903 -3.865494 3.231889 -4.059964 -1.096379 -1.730217 1.956629 3.166985 -3.553396 -3.732932 0.411837 -5.083023 4.790014 -1.626089 -2.382973 1.153786 -5.907503 -2.423473 7.237852 0.482119 -2.108348 -2.690151 -4.811913 -0.946406 -6.477012 1.982905 2.361335 -0.914828 -1.929998 -4.186249 -0.700797 4.457193 -0.376786 1.950095 -5.289872 -1.465994 3.951824 0.419213 2.616981 -3.808965 -0.679397 0.266405 0.232747 1.690915 -1.236498 2.788295 6.898949 -4.032451 2.943846 1.568216 -2.359702 1.794338 4.442247 -6.219165 8.452939 0.270178 4.090577 0.417670 2.119574 -2.570548 0.610560 0.228164 -0.891283 -0.559393 1.980577 -3.148198 -2.248244 0.539102 -2.977142 -3.649028 0.463217 3.973661 -1.276150 1.737912 0.113623 -2.481879 -1.819275 -3.374419 1.697789 4.343751 -0.833229 -3.437053 3.345081 3.233030 -0.932631 -0.334048 0.839280 2.923526 5.582262 -6.612286 2.366098 -0.386260 1.509155 -5.591537 -5.743792 2.202673 -4.154144 -1.450569 0.993671 -5.947828 -2.660807 -3.817454 2.944995 -4.311575 -0.067940 2.104520 6.850497 3.129020 -2.513454 3.012002 -1.835919 3.481515 0.425402 -0.548042 1.837202 4.981236 +PE-benchmarks/biconnectivity.cpp__main = -15.508414 8.422974 5.609161 -12.861305 29.121094 -7.901136 1.544772 12.903968 2.408596 18.977853 -15.087725 -4.936389 -6.369426 -20.035802 2.020983 -12.297126 -0.674746 14.835372 -6.415296 7.919632 12.040788 -1.661184 3.294089 -6.894252 -7.515594 -17.352155 -5.636589 6.255335 7.202837 -7.166073 3.840020 2.965707 27.218513 -3.456384 22.654102 18.427905 13.465853 21.822197 1.257728 6.705812 2.187704 11.539824 -10.881731 -19.941452 5.281940 -6.881957 -18.269017 -11.514371 9.597872 -16.034985 10.517039 18.119047 -1.385632 -1.783656 -11.490189 14.890122 9.945113 0.388701 22.974786 5.973622 -12.704938 4.236351 -20.178359 19.501389 -13.545827 11.919428 -4.440595 -19.831209 -4.782015 5.798327 6.392096 -14.631434 -13.915707 12.196112 9.001681 -16.443959 5.715892 -7.585634 -5.757053 -14.723813 -16.462542 7.537488 -1.331661 14.714442 0.087608 5.765247 -1.675998 7.892211 -1.374436 -23.539504 -0.701910 22.267119 -12.359719 0.916959 -16.504474 6.909570 2.693535 -0.413285 -9.565366 -10.536777 6.413316 -2.269442 10.140434 -4.414296 -1.874349 -15.584218 5.022077 6.219614 0.401493 8.570310 3.035764 6.998940 10.895421 15.996549 -10.865184 8.118482 -25.130941 8.118968 -6.291998 4.234156 -3.516968 7.433520 5.999209 7.509502 16.036567 -24.559010 14.842112 0.908020 -8.764446 -16.377665 4.488511 -5.273175 -8.754126 -7.757637 13.891845 0.344340 -3.797617 -5.454457 6.127926 0.647568 -6.760995 -12.137491 0.500326 9.489159 -13.181804 4.826132 -5.908532 -9.032634 -3.689492 10.256501 12.433590 12.964577 25.669097 17.743938 -2.538936 3.100337 -21.995710 0.517656 21.047526 4.661099 -18.296962 18.652507 -12.894765 -3.199497 6.655843 14.632411 9.225699 10.355420 -12.561799 -11.202486 1.582183 0.476540 22.756221 7.351443 2.095711 -16.414521 10.071268 -4.303941 -7.693922 31.641524 15.855497 -22.023518 2.254530 13.050088 -12.402988 -15.789322 11.422233 -13.989392 -5.785952 -8.129506 6.032964 9.998309 -12.551413 -10.842008 5.179882 -18.973973 18.649007 -3.930750 -6.022202 6.612689 -21.372253 -17.806486 24.476484 1.422369 -6.131382 -10.714152 -15.836788 -3.768264 -22.597952 7.698084 7.723638 -3.725575 -11.319993 -16.474644 1.806416 17.124320 -1.579017 10.383643 -17.084033 -8.484628 11.367919 0.561407 11.168211 -17.199542 -4.605906 -3.692572 1.373555 7.023780 -3.409157 8.180283 27.975927 -14.071139 11.713484 6.936360 -16.046208 1.997549 16.076547 -21.599447 24.999507 0.670586 9.318094 0.859756 8.275045 -10.846710 1.056720 2.580741 0.056574 -2.388842 7.310019 -10.156129 -6.712130 -0.179930 -16.414586 -9.205573 2.152569 10.255217 -1.676268 4.593011 0.823452 -11.171283 -5.425564 -11.250222 2.803666 16.136348 -0.751310 -11.997709 11.396458 5.951120 -8.139784 -2.860412 2.697111 6.560238 18.000337 -23.108299 6.704259 -0.687817 1.047627 -20.741174 -19.323489 2.650069 -17.851451 -10.402219 5.554815 -19.795309 -8.369274 -13.149572 7.213979 -14.655981 -7.480193 5.500531 23.955454 12.874149 -6.481522 12.178823 -5.529672 14.486911 2.072082 -3.821852 5.136072 17.463907 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -10.620380 11.099301 3.452433 -9.528801 22.302978 -2.602577 3.433391 7.175397 -8.095084 17.145844 -9.731696 1.410414 -3.420522 -18.041015 0.681573 -9.198270 -3.119508 7.625375 -0.349769 10.133740 7.548502 -9.620664 2.586534 -2.768769 -6.793158 -18.728575 -1.265201 5.705788 13.229900 -7.133025 6.101351 -0.545077 17.153828 -3.166198 14.442024 13.020535 5.249399 13.581861 3.736699 -4.130091 -3.065341 7.537330 -9.014706 -13.182718 1.713322 -3.581570 -14.419945 -8.112931 6.927072 -10.128835 -0.927671 14.561710 -3.807456 -2.133467 -11.841970 12.845450 9.239813 -2.515058 18.742176 1.843027 -4.430727 -4.425304 -16.365773 14.818995 -7.569989 1.016376 -2.690277 -11.521924 3.851138 1.915621 -4.128057 -5.616775 -5.239951 13.398202 9.264781 -14.801239 1.116661 -8.611080 -22.106865 -12.920280 -9.538797 5.027794 0.818070 13.274682 2.331880 6.002063 4.071981 8.545121 -4.020923 -21.007802 2.270727 18.444891 -6.738390 -4.297922 -9.062687 16.126876 3.887273 0.106560 -8.465948 -3.896397 4.333821 -1.841895 8.211116 -13.245013 -0.918282 -18.103726 1.077716 -0.477389 2.051843 7.739365 5.598652 3.639710 8.144866 15.429283 -14.989090 4.074152 -18.062338 4.495709 -1.521860 4.557155 -4.245175 6.807020 1.386051 6.138090 15.037688 -21.780431 9.089719 0.069511 -2.841477 -18.081040 0.567186 -5.297294 -3.808500 -5.001178 8.117838 -2.009455 -1.852507 -5.485051 3.565889 3.612941 -7.952161 -7.845116 5.268725 18.060853 -14.735699 5.308443 -3.472387 -4.771548 -2.838329 7.864692 12.294304 11.911049 21.235216 13.973084 0.928994 12.255536 -16.299839 0.166846 17.999787 9.005819 -13.203474 16.115499 -12.094098 -5.073216 2.272450 11.606073 11.519386 6.095591 -16.571810 -13.631667 10.336832 2.126601 17.250028 3.128421 0.780726 -7.931912 15.988627 0.606310 -7.777303 19.475778 9.873018 -14.563081 8.362471 7.287100 -14.620779 -7.278902 10.599988 -11.636652 -0.935629 -4.902913 1.907222 8.232457 -6.745864 -6.854094 -1.916712 -13.559292 16.571118 -3.600723 0.109480 7.137724 -10.934836 -15.136152 13.500257 0.080611 -5.477571 -11.358512 -11.647811 -12.447446 -13.601444 5.150523 3.702703 -6.702720 -8.708515 -14.633213 -1.959188 10.975159 1.871739 9.129964 -18.936090 -5.960371 8.529237 8.236052 7.901322 -7.378147 -1.912019 -0.060377 1.653012 3.961943 -1.758435 13.708756 21.421369 -9.832567 10.166597 -4.404508 -8.156121 6.801578 11.039834 -18.505421 19.489774 1.853066 12.078911 0.333552 5.059541 -6.530822 2.509984 4.032418 -4.319862 1.681482 2.458832 -5.455065 -5.993464 1.658818 -12.334496 -9.300150 -1.134837 6.131161 -0.305462 4.945533 1.253861 -6.975025 -5.524924 -9.599534 2.297837 10.742191 -0.600815 -5.284993 9.991498 3.275883 1.999922 -0.611801 1.545167 6.776529 9.218812 -17.554829 3.044284 -4.111215 2.448096 -13.018437 -17.848095 4.094727 -11.800243 -10.795530 7.038557 -18.322247 -0.251511 -11.343029 1.545863 -17.646738 -4.053600 3.418324 19.643550 5.575309 -5.516930 8.207403 -6.209295 9.930714 -0.816943 0.867996 4.756375 12.006352 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/weighted-job-scheduling.cpp__main = -1.607264 1.253647 0.398988 -1.303180 3.420744 -0.555031 0.148775 1.843941 -0.399014 2.176840 -1.599821 -0.242735 -0.530626 -2.246114 0.202139 -0.924576 -0.261609 1.496763 -0.618085 0.788484 1.257178 -0.380692 0.268807 -0.601150 -0.830812 -1.764234 -0.516345 0.666587 1.187883 -0.694819 0.142050 0.186089 2.710142 -0.428722 2.314154 1.815276 1.330678 2.174251 0.307751 0.320060 0.042309 1.222156 -1.213014 -2.188899 0.577809 -0.930651 -1.875636 -1.101656 1.018102 -1.738225 1.131491 1.838224 -0.197575 -0.196842 -1.138719 1.658963 0.942263 0.041754 2.551932 0.641143 -1.431070 -0.169354 -2.293725 2.244096 -1.235400 1.301640 -0.433840 -2.191872 -0.402871 0.528959 0.463984 -1.607568 -1.204628 1.518053 0.800071 -1.674456 0.652718 -0.908862 -0.960014 -1.579442 -1.708759 0.718496 -0.425538 1.649475 -0.071067 0.501524 -0.403949 0.826670 -0.318039 -2.688777 -0.083439 2.560260 -1.266306 0.231478 -1.754673 0.903487 0.236979 0.146359 -1.078338 -0.889171 0.733487 0.124789 1.003048 -1.113437 0.131800 -1.956608 0.630245 0.550390 0.172294 1.083527 0.646521 0.678795 1.167907 1.963592 -1.233628 0.669254 -2.717275 0.818684 -0.628906 0.634186 -0.479158 0.873669 0.659991 0.673370 1.814854 -2.819892 1.535338 0.067923 -0.827268 -2.042990 0.501108 -0.733451 -0.992838 -0.741351 1.361139 0.036704 -0.521075 -0.715543 0.583867 0.122227 -1.342624 -1.436820 0.169454 1.453064 -1.916565 0.407288 -0.615659 -0.856130 -0.405716 1.221120 1.554133 1.439357 2.890251 1.865152 -0.079099 0.560308 -2.462221 0.223541 2.458704 0.714967 -2.019481 1.991723 -1.561363 -0.305767 0.737122 1.477937 1.061789 1.437129 -1.512778 -1.369362 0.536262 0.175590 2.485211 0.922142 0.440056 -1.532748 1.344309 -0.605622 -1.014495 3.322729 1.521974 -2.368410 0.441757 1.105319 -1.181735 -1.196633 1.226542 -1.615252 -0.499760 -0.810814 0.427724 1.218947 -1.387395 -1.289554 0.423015 -2.000929 2.337294 -0.446518 -0.449486 0.647327 -2.239627 -1.338061 2.580049 0.321295 -0.784243 -1.150747 -1.556867 -1.034989 -2.163670 0.759552 0.921616 -0.559293 -1.385755 -1.828694 -0.021069 1.889185 -0.108280 1.001769 -2.121412 -0.839678 1.221456 0.098315 1.300134 -1.901871 -0.482639 -0.557285 0.070202 0.941592 -0.489443 1.241583 3.136567 -1.434232 1.487235 0.850602 -1.144325 0.198107 1.747835 -2.272614 2.640159 0.098196 1.238985 0.014251 0.899740 -1.088007 0.130641 0.189870 0.055751 -0.074620 0.856110 -0.923919 -0.627407 0.010791 -2.003049 -1.001623 0.245240 0.999766 -0.027403 0.517390 -0.139702 -1.169243 -0.740438 -1.318066 0.144829 1.711445 -0.363847 -1.365076 1.120498 0.279719 -0.736893 -0.189700 0.348192 0.779375 1.806745 -2.328502 0.528260 -0.053323 0.149733 -2.370138 -2.033592 -0.001266 -1.521796 -1.267563 0.714780 -2.240466 -0.785736 -1.408212 0.626791 -2.199988 -0.787443 0.461693 2.705032 1.190590 -0.653073 1.310757 -0.503482 1.675425 0.270961 -0.258362 0.565362 1.785941 +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.718734 0.206231 0.094338 -0.546986 1.834651 -0.504920 0.143716 1.204034 -0.205966 0.801875 -0.768922 0.365738 -0.287816 -0.979491 0.245409 -0.136188 0.193810 0.766682 -0.482229 -0.024213 0.575437 0.171960 0.141862 -0.402422 -0.300347 -1.049673 -0.024558 0.279856 0.208407 0.170644 -0.194393 0.376817 1.225548 -0.294271 0.678847 0.683781 0.937640 1.013224 0.109474 0.029427 0.523732 0.444979 -0.280388 -1.123811 0.343274 -0.449013 -0.915756 -0.365687 0.571675 -1.132608 0.277261 0.662079 0.149446 -0.186045 -0.473486 0.796979 0.586725 -0.295002 0.910484 0.476194 -0.931986 -0.461256 -0.750242 1.262780 -0.745988 0.543084 -0.183785 -1.173802 -0.581052 0.793552 0.146817 -0.497687 -0.571086 0.019401 0.277330 -0.587719 0.399696 -0.025454 0.446119 -0.454997 -0.623646 0.250799 -0.367736 0.717776 -0.137984 0.078387 -0.184215 -0.080329 0.215701 -0.741061 -0.403080 1.030467 -0.599670 0.323032 -1.083552 0.021009 0.282588 -0.282819 -0.271140 -0.786424 0.253943 0.069890 0.352046 -0.486710 -0.119115 -0.461017 0.275376 0.301450 0.202443 0.727821 -0.447085 0.262558 -0.068385 0.347931 -0.121042 0.429829 -1.380273 0.566663 -0.298899 0.219059 -0.383845 0.066412 0.765978 0.308717 0.550534 -1.013353 1.013539 0.087855 -0.267566 -0.499000 0.448711 0.121824 -0.482551 -0.255287 0.796432 -0.023082 -0.238427 0.014020 0.586467 0.014983 -0.672018 -0.594358 -0.404105 0.360566 -1.079070 0.152917 -0.322188 -0.371731 -0.104295 0.309946 0.372680 0.441586 1.029087 0.752806 -0.167405 0.591966 -1.235105 0.407619 1.256268 0.462077 -0.764499 0.587930 -0.686182 0.091180 0.443245 0.402665 0.169129 0.830505 -0.311813 -0.198957 -0.002268 -0.070402 1.096973 0.678614 0.298209 -1.289058 0.038915 -0.677546 0.183953 1.343294 0.917625 -1.401090 0.501820 0.868848 -0.477312 -0.538907 0.164365 -0.665669 -0.480520 -0.510766 0.441047 0.749595 -0.890887 -0.641612 0.208020 -0.713782 0.702726 -0.160532 -0.323458 0.195211 -0.903897 -0.254542 1.170967 0.203547 -0.087595 -0.362388 -0.720528 -0.666775 -1.256065 0.190397 0.409265 -0.336870 -0.471428 -0.713364 -0.326125 1.037775 -0.326870 0.198131 -1.317220 0.094660 0.604392 0.194684 0.353183 -0.993180 -0.251979 -0.197364 -0.160078 0.314980 -0.551028 0.091983 0.900437 -0.737550 0.818823 0.312444 -0.645467 0.057456 0.786467 -0.616238 1.038037 0.093565 0.709042 0.178417 0.478426 -0.583332 0.060919 -0.277342 -0.126098 -0.436613 0.576493 -0.866905 -0.230714 0.390084 -0.679693 -0.588058 0.431352 0.780811 0.402074 0.022834 -0.071864 -0.384482 -0.219860 -0.669581 0.152820 0.678476 -0.501406 -0.879463 0.308318 0.480300 -1.006513 -0.644272 0.272655 0.470219 0.921900 -0.882290 0.548839 0.208935 0.079799 -1.329650 -0.969573 0.156884 -0.608753 -0.710528 0.246326 -1.175215 -0.716435 -0.398775 0.807423 -1.124550 -0.466266 0.111259 0.942968 0.111189 0.145212 0.845799 0.024673 0.445852 -0.029749 0.079411 0.175001 0.663099 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -4.877737 5.744557 1.901475 -4.321914 10.305773 -1.418947 0.998119 4.591513 -4.065327 7.844033 -4.330459 0.012310 -1.609832 -8.560559 0.375219 -4.516984 -1.402732 4.001229 -0.224766 4.757163 3.526879 -3.947723 1.009868 -1.123084 -3.249405 -7.489630 -0.768890 2.572949 6.366703 -3.568444 2.809729 -0.172957 8.545701 -1.645241 7.467544 6.023932 2.745430 6.244912 2.342445 -2.283626 -1.670384 3.575696 -4.254983 -6.065601 0.825897 -1.863337 -6.315303 -3.446394 3.053257 -4.522846 -0.384713 6.500121 -1.435948 -0.629617 -5.115779 6.219196 3.766597 -0.616981 8.772686 0.947975 -2.359258 -2.427085 -7.716401 6.484195 -3.446335 1.054163 -1.953943 -5.068087 1.619851 0.704016 -2.204682 -3.511871 -2.040719 6.733707 3.998469 -6.652241 0.900664 -3.845943 -9.529706 -6.119227 -4.794948 2.403798 -0.322652 5.866418 0.705292 2.646717 1.382962 4.082189 -2.115596 -10.084958 1.246574 8.762589 -3.341719 -2.113996 -4.244150 6.917009 1.593608 0.488963 -3.983295 -1.934321 2.240959 -0.668998 3.722245 -7.036840 0.718689 -8.460407 0.455795 -0.099003 0.739167 4.621248 3.504446 2.185967 4.499026 7.753941 -6.945112 1.223497 -8.898190 1.857998 -1.563435 1.988715 -1.731232 3.328310 0.770565 3.087001 6.702277 -10.807594 4.170166 0.223550 -1.235993 -8.576254 0.568020 -2.560683 -1.948746 -2.402813 3.829000 -0.751500 -1.041717 -2.780011 1.484487 1.714315 -3.912445 -4.319549 2.512470 8.416442 -7.421413 2.168399 -1.628423 -2.233389 -1.203483 3.675893 6.032434 5.235984 9.921094 6.168105 0.211676 5.356874 -7.738084 -0.126194 7.803721 2.963992 -6.217992 7.792920 -5.631782 -2.549948 1.053671 5.514248 5.035014 3.637253 -7.839370 -7.055088 4.970549 1.212038 7.711219 1.043271 0.301582 -3.769295 7.602714 -0.050182 -4.285195 9.848867 4.018572 -6.553201 3.112523 2.967392 -6.178646 -3.346458 5.113448 -6.095914 -0.562401 -2.172782 0.533094 3.837790 -3.373769 -3.332088 -0.440699 -6.233427 7.856178 -1.726353 -1.162765 2.595389 -5.536318 -6.276681 6.861074 0.584509 -2.624533 -4.989106 -5.673522 -5.440540 -6.239496 2.489778 2.192687 -2.610945 -4.316894 -6.414240 -0.709551 5.114460 0.978610 4.037514 -9.285213 -2.849721 4.081699 3.587344 4.043824 -3.873850 -0.903362 -0.398806 0.627836 2.181673 -0.878299 6.823809 10.479159 -4.387269 5.336799 -1.355572 -4.452831 2.760842 5.014083 -9.052891 8.996026 1.002268 5.830549 0.114819 2.161304 -3.127354 0.996261 1.745961 -1.837195 0.773450 1.116625 -2.200868 -2.677741 -0.073981 -5.983455 -4.235811 -0.701067 2.754967 -0.760939 2.302441 0.158633 -3.200717 -2.825185 -4.452572 0.749309 5.065137 -0.454326 -2.610012 4.679300 1.068690 0.853927 0.561923 0.531660 3.019893 4.274386 -8.011829 1.155540 -1.701462 1.157712 -6.239033 -7.959925 1.370879 -4.978421 -4.304392 2.732776 -8.049061 -0.648055 -4.931340 0.714752 -8.439245 -1.956883 1.885926 9.452364 2.850180 -2.953410 3.413063 -2.775659 5.007213 0.210788 0.154051 1.949033 5.575145 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -2.418850 1.553697 -0.064336 -1.599699 5.006391 -1.433820 0.068502 2.743285 -1.211557 3.197890 -1.663922 -0.142298 -1.126046 -3.848579 0.409922 -0.461067 0.281513 2.466988 -0.373988 1.457741 1.997501 -1.308240 0.057663 -0.441943 -1.170756 -2.664584 -0.425892 1.047323 2.125024 -1.935295 -0.694384 0.574179 4.529888 -0.478519 3.584562 2.960805 1.680363 3.148244 1.127426 -1.523476 -0.880495 2.067702 -1.946052 -2.850571 1.040149 -1.150570 -2.225313 -1.567163 1.666142 -1.285276 1.438202 2.957858 -0.603927 0.145863 -2.272259 2.192935 1.385931 0.160922 4.093492 0.749282 -0.978108 -0.677603 -3.014986 3.045821 -2.056823 0.309795 -0.638457 -2.577789 0.389643 0.111823 1.024132 -2.901635 -1.835896 2.452035 0.912246 -3.001606 0.927478 -0.969829 -1.533880 -3.540566 -3.555881 0.776430 -1.284142 2.805870 -0.192842 0.673176 -0.962190 1.457012 -0.656926 -4.175096 0.545084 3.168843 -1.741874 0.396238 -2.020870 2.312038 0.511091 0.247838 -2.017790 -1.410437 1.010059 -0.660637 2.144747 -1.682219 1.457409 -2.481861 0.574268 -0.562453 0.689330 1.603221 2.238215 0.985045 1.993618 2.939119 -2.186017 0.129042 -4.501930 1.193812 -0.419368 0.785436 -0.488100 1.703739 0.787933 0.361667 3.015725 -4.934393 1.617536 -0.073356 -0.695575 -3.505560 0.652545 -1.156530 -1.267500 -1.527569 2.369228 -0.350326 -1.042463 -1.396172 1.060556 0.497129 -2.750023 -1.580508 0.375965 3.452409 -3.565055 0.800320 -1.465036 -1.658507 -0.343947 1.461673 2.028978 2.704186 4.158152 3.222247 -0.412981 1.398989 -4.181966 -0.218779 3.095339 1.542714 -3.102109 3.134486 -2.213277 -0.681573 1.206801 2.788572 2.230908 1.010074 -1.877767 -2.004943 1.740675 0.893853 3.712803 0.215380 0.916993 -1.494230 1.906913 0.174534 -1.841826 4.827791 1.433762 -3.091231 1.190612 1.209571 -1.185617 -1.168818 1.787122 -2.566789 -0.497910 -1.450198 0.792803 2.056503 -2.095761 -1.163616 0.321434 -2.922074 3.170703 -0.811188 -0.572451 1.799185 -3.646350 -1.556026 3.693274 0.073321 -1.011372 -2.037486 -3.008594 -1.595847 -2.922930 1.270499 0.553214 -1.010396 -2.069473 -3.187586 -0.282623 3.214295 0.720561 1.485378 -4.132717 -0.761951 2.151502 0.822810 1.671239 -2.521678 -0.673578 0.133819 0.373588 1.263014 -0.506650 2.209387 4.427919 -2.405862 1.157158 0.823472 -0.317980 1.124277 2.100464 -3.841497 3.796610 0.305883 2.843224 -0.019956 1.167793 -1.439532 0.227732 0.621409 0.796758 -0.076653 0.865759 -1.016183 -1.028466 0.191741 -2.631635 -2.122899 -0.184373 1.137286 -0.087991 1.119399 -0.774469 -1.574249 -0.979451 -1.888318 0.742540 2.678086 0.007218 -1.273330 2.023878 0.035667 -0.115983 0.779377 0.295990 0.876130 2.295539 -3.414886 0.053460 -0.543792 0.956018 -2.151584 -4.018612 0.153383 -1.916636 -1.602940 2.018046 -3.993528 -0.699502 -2.042448 0.564216 -3.809098 -0.102978 0.244898 3.837786 1.563709 -0.889899 1.944141 -0.828238 2.024348 -0.105984 -0.631920 0.799211 2.777189 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.736965 0.452106 0.000000 -0.548087 1.507702 -0.960532 0.076918 0.809043 -0.364118 0.762356 -0.185873 -0.033525 -0.244160 -1.171644 0.351839 -0.011921 0.840283 0.655409 0.026478 0.031553 0.462081 -0.258341 -0.268314 0.063659 -0.422010 -1.438725 -0.042563 0.351941 0.178388 -0.506136 0.260883 0.220207 1.463112 -0.307786 1.093697 0.971651 0.426630 0.260569 0.601853 -0.860849 -0.383268 0.502341 -0.475107 -0.640619 -0.095681 0.034940 -0.648644 -0.452965 0.322924 -0.368546 -0.742311 0.743783 0.024975 0.334197 -0.654563 0.772276 0.547486 -0.139248 1.049811 -0.014823 0.180839 -0.415556 -0.140015 0.723437 -0.898406 -1.103884 -0.495111 -0.568446 0.148722 0.168279 -0.666622 -0.025716 -0.426860 0.318115 0.108616 -1.210452 0.214637 0.363796 -0.101402 -1.058321 -0.471606 0.341271 -0.408457 0.842905 -0.024599 -0.092762 0.231514 0.345583 -0.150683 -0.956800 0.345310 0.531555 -0.336398 -0.252807 -0.040236 0.604299 0.742918 -0.200061 -0.135398 -0.853414 -0.005330 -0.984730 1.088115 -0.160683 0.605782 -0.229634 -0.533917 -0.699291 0.368590 1.219191 0.321860 0.674189 0.221297 0.438282 -1.103345 -0.045905 -1.382745 0.648537 -0.563851 -0.079398 -0.165604 0.283928 0.482944 0.371768 0.744580 -1.353465 0.625775 -0.041031 0.443789 -0.710425 0.201133 0.120070 -0.240241 -0.381522 0.518543 -0.508908 -0.398451 -0.469457 0.582427 0.137457 -0.641660 -0.212270 -0.019545 1.028083 -1.400915 0.446007 -0.761529 -0.131193 0.078949 0.136984 0.102069 0.563786 0.959518 0.985461 -0.333398 1.076712 -1.188615 -0.459011 0.534431 0.201535 -0.650444 1.073170 -0.646587 -0.379877 0.516734 0.710539 0.395436 0.270124 -0.353261 -0.316662 0.690633 0.517046 0.883370 -0.023306 0.316278 -1.378350 0.226496 0.314620 -0.108297 1.161572 0.255833 -1.103448 0.909746 0.335086 -0.964506 0.127194 0.199483 -0.995729 -0.401991 -0.674131 0.197991 0.641212 -0.412737 -0.151882 -0.132706 -0.636876 0.263313 -0.203647 -0.489076 0.974989 -0.967118 -0.381918 0.620703 0.093977 0.097002 -0.285576 -0.922977 -0.482003 -0.853540 0.212277 -0.070307 -0.821054 -0.304851 -1.042088 0.034595 0.544681 0.543252 0.368076 -1.983098 0.654970 0.908390 0.885160 -0.290019 -0.379040 -0.019792 0.246135 0.046110 -0.068138 -0.170234 0.594206 0.693669 -0.517830 0.338213 -0.682044 -0.824976 0.653357 0.257427 -1.129571 0.748620 0.191344 1.098070 0.306249 0.388127 -0.071152 0.214410 -0.107157 -0.770833 -0.427005 0.295649 -0.771930 -0.438268 0.710304 -0.243422 -1.006455 0.006469 0.170007 0.379991 0.299231 -0.368531 -0.654391 0.037090 -0.334521 0.826056 0.676239 0.514940 -0.537687 0.597777 0.205656 0.059460 -0.798291 -0.494276 -0.082074 -0.029274 -0.575730 -0.072013 -0.104428 0.884613 -0.183342 -1.142083 0.602540 -0.674919 -0.536020 0.189269 -1.046931 -0.140804 -0.143454 -0.111182 -0.861660 -0.197855 -0.008600 0.857355 -0.115316 0.097591 0.521944 -0.203242 -0.212580 -0.249479 -0.390823 0.158029 0.642792 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -7.299491 7.864438 4.625535 -5.987339 16.568158 -0.090181 -0.472575 5.935610 -5.657553 12.741178 -5.154499 -1.412456 -3.756966 -12.844094 0.218149 -7.007624 -2.809199 4.080026 -0.250904 6.613573 5.176997 -7.706841 1.321738 -0.089184 -5.007428 -12.976737 -2.444364 4.048835 11.520509 -6.214022 0.730891 -1.782649 13.081525 -3.188851 10.044368 8.467280 4.457708 8.152438 1.219367 -6.180366 -5.143578 6.063423 -8.058288 -6.013303 1.425676 -4.138674 -9.196576 -4.357693 5.265575 -3.689835 -3.749738 10.721890 -3.472260 -0.595550 -6.910095 10.434316 3.357138 0.426066 14.440756 0.360925 -0.154230 -5.538587 -13.423226 8.161362 -5.223550 0.171933 -5.251813 -6.776350 2.856328 -1.708799 -3.876448 -4.858176 -2.253987 11.729115 6.266014 -11.440722 0.956438 -6.291834 -15.670650 -11.321084 -9.585594 3.348680 -1.502595 9.305070 1.354143 3.928246 3.861807 7.715577 -4.772557 -16.523456 3.624402 12.724770 -4.457806 -3.742524 -5.425744 10.424311 1.938009 2.016874 -6.609075 -1.387733 3.057965 -1.181353 7.318994 -13.465937 5.129520 -14.148918 0.921018 -2.314494 3.141975 3.148959 6.852296 1.442169 6.965660 13.010008 -13.921755 1.256596 -13.038897 1.430097 -1.370549 3.610580 -3.341239 6.976017 -0.715431 4.199669 11.839355 -18.247089 3.866099 -1.429612 -3.403290 -14.216496 -0.163576 -5.402731 -2.921235 -3.123100 5.051676 -2.180218 -2.809250 -5.982359 3.093697 2.171923 -7.441743 -3.239525 5.374537 13.918080 -12.376785 3.482303 -3.440158 -3.567087 -1.660435 6.640183 9.627347 9.554699 15.293549 10.434822 0.875828 7.833097 -12.794624 -1.438534 9.674205 3.938426 -10.022813 12.032081 -9.027593 -3.447534 1.527482 9.313076 8.748575 6.015288 -10.032728 -9.816112 7.369007 4.121390 12.410283 1.236551 1.505590 -2.828341 10.272686 -1.882802 -7.366899 12.165618 7.215962 -8.155951 4.620758 2.433080 -9.267478 -3.524227 8.077186 -9.459694 1.290386 -3.762327 -0.287741 6.901482 -3.825121 -3.216445 -0.850552 -9.649335 12.671500 -2.954851 1.374474 7.303180 -8.630915 -12.081370 8.407461 -1.278007 -4.403926 -8.677190 -9.415321 -9.664886 -7.588856 4.247419 1.999684 -6.063231 -8.019309 -11.705806 -0.586306 8.144847 4.096082 7.413476 -15.804560 -3.689003 6.708241 5.861641 8.473891 -2.339056 -0.957800 -0.864777 -0.860924 3.936451 -1.707657 11.002292 15.088630 -6.587110 7.621416 -6.733471 -5.551011 4.171709 5.793301 -13.591855 13.429918 2.892786 9.942863 -1.093118 3.660538 -3.211246 2.675652 4.026360 -3.784893 3.236353 1.879601 -1.766494 -4.556902 -0.505839 -10.407427 -7.185773 -2.516036 2.206853 -1.934015 4.538972 -0.090272 -6.749385 -4.131213 -5.583691 1.853378 7.886396 0.596367 -1.535093 7.434458 -0.797961 3.689877 1.034875 0.453209 2.963741 5.132806 -11.887862 -1.576948 -3.326187 2.653354 -6.727056 -13.348045 -0.916843 -7.454523 -6.375578 6.744716 -13.105372 1.299117 -8.015996 -1.608243 -11.895535 -3.233088 2.944669 14.017345 5.316874 -5.378593 5.045879 -4.117429 7.284571 -0.661345 -1.728777 4.542533 6.772674 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -2.181044 1.384084 0.522541 -1.463639 4.304034 -0.583473 0.397163 2.337845 -1.187182 2.882238 -1.813584 -0.041593 -0.981868 -3.032125 0.246073 -0.955380 -0.156994 1.759317 -0.586986 1.243472 1.747739 -1.011911 0.438066 -0.721490 -1.088697 -2.193282 -0.422789 0.820704 1.854915 -0.697469 0.121564 0.249564 3.395691 -0.340019 2.940332 2.296239 1.352419 2.905111 0.473529 -0.382885 -0.407298 1.752495 -1.671855 -3.027454 0.964803 -1.385505 -2.208011 -1.491645 1.413051 -2.152323 0.834292 2.481775 -0.386653 -0.151744 -1.608793 1.766411 1.490895 -0.034317 3.398887 0.766493 -1.643893 -0.685658 -2.875791 2.361411 -1.448667 1.124320 -0.396052 -2.798611 -0.151462 0.479349 0.326966 -1.945091 -1.348393 2.038940 1.089598 -2.262496 0.820034 -1.055109 -1.770739 -2.192834 -2.363283 0.668379 -0.608281 2.402344 -0.132460 0.688743 -0.315764 1.032746 -0.355600 -3.661426 0.034720 3.155165 -1.560302 0.381801 -2.020556 1.561989 0.170543 0.304480 -1.719036 -0.911003 0.919775 0.192271 1.369195 -1.763159 0.065956 -2.504817 0.840811 0.129441 0.454357 1.272711 1.105976 0.721414 1.395033 2.635586 -1.837617 0.962499 -3.200838 1.086439 -0.660067 0.941630 -0.740405 1.257670 0.853890 0.468289 2.569879 -3.799252 1.793730 0.137143 -0.771275 -2.982780 0.654081 -1.125681 -1.193328 -1.034750 2.005917 -0.213114 -0.688958 -1.103194 0.731856 0.237474 -2.039150 -1.559275 0.182520 2.332047 -2.743867 0.597176 -0.943402 -1.305072 -0.478721 1.470988 1.916119 2.158881 3.480719 2.629712 -0.281241 1.152654 -3.208662 0.397023 3.389944 1.344070 -2.751347 2.477675 -2.007831 -0.329504 1.061087 1.706443 1.893167 1.534883 -1.947677 -1.629534 1.149910 0.466139 3.389680 1.280410 0.950047 -1.930491 1.779692 -0.590310 -1.212174 3.893274 1.754441 -3.211877 1.181505 1.336684 -1.689336 -1.126346 1.433708 -2.035110 -0.453742 -1.214388 0.507198 1.767505 -1.992547 -1.584075 0.352899 -2.719744 3.136086 -0.568296 0.041787 1.076728 -2.863332 -1.592342 3.128628 0.436272 -1.044834 -1.807041 -2.082685 -1.974624 -2.811743 1.037448 0.849754 -0.903521 -1.910786 -2.662805 -0.355579 2.404226 0.175087 1.301555 -2.905572 -0.746316 1.559863 0.368182 1.753638 -2.352267 -0.680890 -0.433824 -0.048855 1.388705 -0.547283 1.701839 3.775714 -2.041214 1.874383 0.792234 -0.863688 0.669179 1.984878 -2.901832 3.368875 0.028767 2.274789 -0.098973 1.312407 -1.372586 0.327925 0.342867 0.174297 -0.023044 1.187384 -1.169624 -0.900695 0.322034 -2.616816 -1.453728 0.116119 1.162021 0.313064 0.733118 -0.145654 -1.573267 -0.904999 -1.781536 0.293690 2.339092 -0.607383 -1.739004 1.422189 0.171958 -0.605654 -0.376653 0.593410 1.029073 2.208872 -3.121006 0.458197 -0.286409 0.116369 -2.679017 -2.814155 0.126389 -1.944507 -1.758815 1.607395 -3.178708 -0.388616 -1.889793 0.750635 -3.120521 -0.696573 0.194710 3.487259 1.189371 -0.686001 1.916728 -0.573504 2.126906 0.122754 -0.060834 0.644060 2.383724 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.751398 6.440848 3.679120 -4.806328 11.727423 -0.344281 1.943650 5.021619 -5.824531 9.421665 -4.746876 0.967791 -1.337628 -8.587090 0.086646 -5.192975 -2.526226 3.407781 0.087616 5.907012 3.726300 -4.957632 1.044828 -1.165833 -4.399247 -7.904229 -1.095618 2.989282 7.836313 -3.820101 3.004730 -0.848292 8.894936 -2.081115 9.155220 7.028681 2.294411 6.247709 1.838931 -3.512561 -2.442242 3.839086 -5.580628 -6.355640 0.236851 -2.623705 -7.170307 -3.904294 3.286654 -4.734903 -1.552671 7.508499 -1.992979 -0.392302 -4.950271 6.912569 3.403435 -1.334946 10.103102 0.706107 -3.280929 -2.324827 -9.339297 7.323184 -2.880682 1.115225 -2.880505 -6.298292 2.537461 0.358709 -2.450729 -4.123307 -1.561153 8.411039 4.416213 -8.051844 0.765268 -4.988065 -11.382627 -7.011826 -4.588913 3.135253 0.606845 6.667647 1.287065 3.350873 1.358978 5.276713 -3.074925 -12.269414 1.483174 10.270840 -4.287361 -2.495157 -4.736268 7.629128 1.558219 1.414521 -4.467627 -1.579588 2.890777 -0.062436 3.995540 -9.244577 1.867121 -9.808888 -0.015701 -0.454692 1.197973 3.948889 2.713723 2.832453 5.968160 9.514721 -7.610076 2.100882 -8.386438 2.228349 -2.330762 2.550635 -2.617104 4.092296 0.596734 3.656242 8.719926 -11.862327 3.875843 -0.236736 -1.533616 -10.762061 0.098023 -3.926268 -2.298872 -2.650169 3.770285 -0.695280 -1.022501 -4.020627 1.345445 1.648075 -4.278287 -4.811185 3.813833 9.094834 -8.306878 2.495148 -1.491918 -1.695610 -2.047894 5.415743 7.758548 6.721702 10.902822 7.304339 1.009793 5.245083 -8.710434 -0.437978 8.603469 3.534712 -7.432630 9.273772 -7.246457 -3.367234 1.244889 5.999129 6.135983 3.896042 -9.651870 -8.104200 6.184536 1.814953 9.732338 1.816806 0.610072 -2.925560 8.759169 -1.380586 -5.504879 9.427465 4.836994 -8.131555 4.067000 2.982443 -6.237842 -3.394946 6.598123 -7.589617 -0.489166 -1.949905 -0.522301 4.354663 -3.306639 -3.303888 -0.097770 -7.636850 9.982781 -1.864463 0.273932 3.024382 -5.602096 -7.869962 7.179326 0.793946 -3.354993 -6.073542 -5.501776 -6.958744 -6.786564 2.470866 2.602719 -3.361436 -5.483321 -8.219185 -0.651089 4.567450 1.103278 5.501932 -9.279717 -3.474723 4.469228 3.469649 5.178140 -4.077311 -0.741200 -1.462423 0.138422 2.757490 -1.569282 8.423119 11.707597 -4.539802 6.688714 -1.662769 -4.669057 2.983249 4.863215 -10.201057 10.501130 1.128050 6.536723 0.213492 2.739011 -3.648773 1.192232 2.086397 -2.078799 1.429281 1.714242 -2.107368 -3.159737 -0.653015 -7.424447 -4.315949 -1.188266 2.686374 -1.155550 2.617584 0.834317 -4.608759 -3.586463 -6.476619 0.751552 5.723632 -1.500827 -3.089228 6.003741 0.547499 1.304961 0.221843 0.506369 3.717291 4.356355 -9.460411 0.484580 -2.032020 1.257087 -7.437786 -8.945934 0.984444 -6.569351 -5.375039 3.001047 -8.887334 0.308714 -6.065630 -0.261816 -9.730361 -3.131883 2.858104 11.365954 2.930306 -3.988983 3.879803 -3.723873 6.253519 0.535222 0.919193 1.944609 5.709514 +PE-benchmarks/binary-insertion-sort.cpp__main = -1.909067 1.146803 0.616396 -1.262155 4.442428 -0.883359 0.337769 2.015265 -1.102188 2.992496 -1.234095 -0.616791 -0.969108 -3.231938 0.398257 -1.164272 -0.140956 1.682241 -0.219188 1.483066 1.516876 -1.190652 0.318230 -0.212837 -0.969996 -2.353486 -0.613165 1.059075 2.519714 -1.652896 0.108480 0.317836 3.581019 -0.515052 3.195332 2.374487 1.260293 2.299612 0.586360 -1.352931 -0.690494 1.592273 -1.789334 -2.390924 0.560916 -0.775110 -2.424423 -1.300130 1.407713 -1.164025 0.013782 2.623577 -0.735644 0.120922 -1.640628 2.117032 0.963965 0.201362 3.245973 0.560378 -0.951425 -0.517109 -3.188280 2.421970 -1.235951 0.582624 -1.242332 -2.545331 0.181862 0.086687 -0.310094 -1.978007 -0.833985 2.709713 1.516089 -2.269407 0.706390 -1.090014 -2.064580 -2.724788 -2.811252 0.822977 -0.816862 2.411408 0.091271 0.866162 0.192613 1.321631 -0.735260 -3.986729 0.642639 3.096668 -1.669156 -0.394448 -1.454935 1.868854 0.413554 0.464284 -1.500735 -1.199353 0.824813 -0.582569 1.508597 -1.621629 1.290428 -2.403458 0.082805 -0.299603 0.983085 1.677234 1.748963 0.527083 1.701635 2.959588 -2.267543 -0.024582 -2.929771 1.159276 -1.133669 0.894700 -0.732771 1.678528 0.839029 0.955783 2.705548 -4.318204 1.084573 0.002637 -0.368559 -2.898565 0.294585 -1.302002 -0.989919 -1.164684 1.927251 -0.410933 -0.658807 -1.175023 0.839109 0.704853 -1.675383 -0.713165 0.397388 2.577898 -3.008170 0.737644 -0.826502 -1.312038 -0.352487 1.485898 2.360719 2.637589 3.539208 2.728397 -0.489824 1.180503 -3.518133 0.244413 3.011677 0.133146 -2.399241 2.990935 -2.209833 -0.694427 0.766694 2.449440 2.186892 0.906228 -1.841115 -1.622671 1.526183 0.995417 3.210721 0.411908 0.435152 -1.351760 1.705723 -0.371119 -1.838853 3.855419 1.206092 -2.843934 1.271854 1.094927 -1.978798 -1.222251 1.629672 -2.516839 -0.100998 -1.483378 0.580876 1.923315 -1.662892 -0.900252 0.560834 -2.465677 2.904347 -0.735624 -0.508933 1.480924 -2.399668 -2.030308 3.293654 0.336104 -0.767369 -2.197289 -2.649648 -1.617917 -2.329540 1.067238 0.260149 -0.659506 -1.503065 -2.591542 -0.471873 2.610720 0.759175 1.813955 -3.530134 -0.422768 1.451634 0.809388 1.763082 -1.452066 -0.510572 -0.063629 -0.352876 0.705100 -0.605819 1.745058 3.858766 -2.051422 1.536457 0.034119 -1.400522 0.885133 1.502777 -3.511862 3.450406 0.455857 2.342618 -0.032997 1.006651 -1.387858 0.355919 0.630341 -0.200765 -0.002405 0.694083 -0.709231 -0.975750 0.210452 -2.492540 -2.043915 -0.540097 1.030058 -0.124477 1.004554 -0.531438 -1.721423 -0.783060 -1.477211 0.686642 2.156879 -0.266297 -0.981217 1.925413 0.214632 0.092167 -0.240332 0.382786 0.859542 1.942292 -3.225492 0.107912 -0.415195 1.048428 -1.956896 -3.064768 0.162987 -1.934447 -1.245793 1.430407 -3.189918 -0.314521 -2.048609 0.205324 -3.019768 -0.438985 0.580077 3.715578 1.258000 -1.224465 1.571354 -0.806842 1.726257 -0.063633 -0.182516 0.731267 2.023589 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -3.300647 3.308320 1.706143 -2.307513 8.447399 -0.753444 0.958366 3.617913 -4.478732 6.110673 -2.198989 0.149675 -1.457698 -6.123699 0.356001 -2.275298 -0.949037 1.867773 0.265117 3.537366 2.369075 -3.507000 0.755197 -0.163707 -2.120269 -5.191175 -0.451607 1.883497 6.450114 -3.446640 0.515220 -0.462500 5.937587 -1.364593 5.220634 3.933023 1.545959 3.489534 1.282951 -4.793478 -2.278642 2.751378 -3.556911 -3.518235 0.239890 -1.359782 -4.517732 -2.030711 2.431137 -1.633208 -2.190045 4.869200 -1.718958 -0.032127 -3.295904 5.074308 2.102755 -0.530450 6.371830 0.273739 -0.723061 -2.773790 -6.193420 4.252188 -1.476993 0.025196 -2.689062 -3.447975 1.544981 -0.532856 -3.025700 -2.981851 0.143841 6.000996 3.165765 -4.725262 0.656518 -2.690575 -7.013539 -5.840418 -4.609888 1.431149 -1.075346 4.402562 0.654793 2.048182 1.595678 3.232822 -1.903698 -8.100557 1.746554 6.052924 -2.792263 -2.275856 -2.133671 5.309136 0.686368 1.110633 -2.923817 -1.341749 1.409765 -0.733241 2.734614 -6.636341 3.395436 -6.092616 -0.322249 -1.219940 2.077334 3.217804 3.725972 0.764109 3.274930 6.409516 -5.545015 -0.498507 -5.628629 1.177536 -1.589427 1.818873 -1.647693 3.248642 0.862491 2.411865 5.476619 -8.940918 1.719883 -0.170103 -0.276726 -6.544467 -0.063992 -2.746494 -1.247259 -1.701835 2.752148 -1.148038 -0.859781 -2.585660 1.646776 1.586501 -3.750928 -1.283554 1.971471 6.997501 -7.124271 1.572926 -1.180349 -1.564660 -0.657846 2.987122 5.008167 4.760009 6.832623 4.766850 -0.267934 4.323716 -6.206328 0.218723 5.519968 0.785788 -4.239812 5.970841 -4.747395 -1.820476 0.760376 4.372463 4.597892 1.921605 -5.266214 -4.562961 5.286997 2.008408 5.756842 0.111931 0.733771 -1.629959 5.181581 -1.023448 -3.958499 6.160580 2.310153 -4.927193 3.344231 1.409064 -4.130418 -1.365410 3.536792 -5.098061 0.468592 -2.206780 0.090743 3.311051 -2.233783 -1.534989 0.005218 -4.371296 6.100912 -1.261314 -0.190139 2.860153 -3.047230 -3.811721 4.899938 0.563825 -1.779245 -4.596057 -4.884882 -5.577343 -3.654438 1.862719 0.211850 -1.754113 -3.028409 -5.136447 -1.167731 4.022886 1.934173 3.567082 -8.365735 -0.952699 2.507296 3.122669 3.552681 -1.008169 -0.610215 -0.119015 -0.880231 1.323324 -1.321447 5.225511 7.461127 -3.347009 4.067488 -2.512269 -2.675321 2.215645 2.699805 -6.900690 6.233268 1.418915 5.635579 -0.237143 1.711154 -2.396862 1.151436 1.473718 -1.797835 0.983442 0.651212 -0.872009 -2.085248 -0.031129 -4.793996 -4.081085 -1.564083 1.233556 -0.526776 1.992610 -0.703609 -2.898078 -1.930263 -3.456096 1.052846 3.600382 -0.778478 -1.109429 3.655426 0.102105 1.624948 0.469292 0.495883 1.716944 2.646615 -5.871123 -0.364687 -1.437338 2.098580 -3.344585 -5.841187 0.320286 -3.153988 -2.927261 3.020977 -6.201331 0.561465 -3.872525 -0.600305 -6.889255 -1.240930 1.163215 7.119026 1.532219 -2.576849 2.486185 -1.941731 3.170792 -0.165528 0.395256 1.218803 3.023354 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.939470 0.444024 -0.071083 -0.487757 2.092784 -0.595929 0.008243 1.545217 -0.858399 1.355054 -0.492394 0.197270 -0.299302 -1.444654 0.230555 -0.015234 0.131080 0.987214 -0.077962 0.620858 0.743817 -0.344399 0.030819 -0.084512 -0.470448 -0.839938 -0.110369 0.483030 1.175208 -0.884931 -0.303904 0.325778 1.813154 -0.342160 1.724398 1.238961 0.862138 0.937292 0.633618 -1.027484 -0.307898 0.745577 -0.826672 -1.126811 0.214524 -0.369939 -0.975919 -0.337814 0.709570 -0.380769 0.228513 1.153932 -0.338240 0.221198 -0.697039 1.000051 0.263570 -0.176736 1.588288 0.284631 -0.779631 -0.431774 -1.194566 1.763092 -0.660351 0.213378 -0.673752 -1.195541 0.152894 0.098283 0.084986 -1.186831 -0.397844 1.283607 0.427429 -1.109353 0.445425 -0.383270 -0.067288 -1.355169 -1.358671 0.392764 -0.553278 1.060231 -0.014918 0.389694 -0.374082 0.629316 -0.329098 -1.895937 0.361306 1.307099 -1.048356 0.087483 -0.857371 0.720883 0.227082 0.251920 -0.570046 -0.775245 0.448600 -0.337044 0.704193 -0.827077 1.229458 -0.755087 -0.115695 -0.366304 0.588601 1.098169 0.610177 0.500939 1.041446 1.397843 -0.410838 -0.320030 -1.468952 0.672383 -0.678285 0.347712 -0.290191 0.790289 0.764660 0.346755 1.378021 -1.971443 0.444040 0.015794 0.022163 -1.397548 0.234372 -0.645202 -0.491968 -0.688393 1.037781 -0.185515 -0.347344 -0.635682 0.529929 0.409622 -1.187549 -0.602126 0.074537 0.967697 -1.583587 0.314997 -0.433639 -0.563784 -0.106344 0.696671 1.055066 1.333205 1.628677 1.304207 -0.273063 0.686284 -1.729376 0.080145 1.276894 0.177312 -1.195046 1.460354 -1.247204 -0.484429 0.475512 1.233207 0.987562 0.432496 -0.811670 -0.774174 0.881915 0.551981 1.546813 -0.052958 0.232398 -0.437720 0.586673 -0.080304 -0.942281 1.962200 0.190962 -1.554345 0.812539 0.499910 -0.260715 -0.415658 0.762915 -1.406304 -0.256781 -0.737709 0.289509 1.015781 -0.998425 -0.290222 0.485535 -1.153148 1.378769 -0.329981 -0.515659 0.635399 -1.322319 -0.402940 1.673193 0.362793 -0.295204 -1.017949 -1.235554 -0.656807 -1.156462 0.424043 0.122284 -0.177935 -0.620142 -1.259186 -0.422382 1.227074 0.408041 0.838325 -2.041901 -0.107275 0.774043 0.320400 0.614244 -1.003022 -0.273211 -0.046333 -0.108241 0.363585 -0.564532 0.844201 1.726466 -1.013735 0.687957 0.404206 -0.524898 0.409914 0.612278 -1.793735 1.624116 0.285739 0.958207 0.186921 0.438667 -0.907822 0.072147 0.088951 0.318724 -0.161600 0.266722 -0.353974 -0.433092 0.026150 -1.017296 -0.967225 -0.333765 0.502809 -0.070161 0.460975 -0.535464 -0.660581 -0.489402 -0.970456 0.353286 1.037038 -0.393739 -0.548125 1.062586 0.046570 -0.155702 0.164144 0.167373 0.475126 0.951537 -1.548665 0.019662 -0.091648 0.656450 -1.033795 -1.505701 -0.008250 -0.642275 -0.437728 0.546242 -1.566792 -0.391737 -0.875706 0.121082 -1.567721 -0.100754 0.300271 1.847240 0.451423 -0.585467 0.815502 -0.411178 0.783989 0.067081 0.100504 0.082722 0.939572 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -4.368417 3.404271 0.896955 -2.952722 8.137916 -0.718724 0.760189 2.724644 -4.520986 7.030436 -2.511385 -1.251284 -2.141540 -7.861255 0.443812 -3.359241 -0.891576 2.618555 0.481038 4.707910 3.280397 -4.928044 0.676817 -0.283670 -2.519883 -4.969887 -0.964343 2.415392 7.571760 -4.659860 1.020250 -0.089851 7.515229 -1.250639 7.506728 5.608099 1.691621 4.848815 1.884039 -5.306018 -3.178604 3.898998 -4.556857 -4.979480 0.462189 -1.755008 -4.906487 -2.546719 3.144108 -1.060040 -1.949961 6.284920 -2.322162 0.279155 -4.691652 4.542332 2.336790 0.369226 8.272043 0.480882 -0.877349 -2.072825 -7.012115 5.427255 -2.673274 -0.110296 -2.669314 -4.124776 2.684718 -1.014579 -2.714976 -3.148843 -1.477029 7.410443 4.097438 -6.074379 0.760634 -3.398882 -8.822003 -6.093786 -5.599340 1.797710 -0.782269 5.885333 0.657186 2.522843 2.119025 4.379495 -2.353915 -10.109697 2.337630 7.127541 -3.245584 -1.976948 -2.361210 6.767498 0.839169 1.467347 -4.408561 -0.944828 1.942900 -1.410732 3.675526 -6.183092 3.331872 -6.738418 -0.220352 -1.973380 1.840749 3.428440 5.244707 1.205678 5.118803 7.785643 -5.962750 -0.743215 -5.791570 1.471394 -1.957080 1.956996 -1.500245 4.543921 0.700424 1.438998 7.255197 -10.132497 1.691665 0.052211 -0.294434 -8.357239 -0.020552 -3.703805 -1.858188 -2.578785 3.865309 -1.079504 -1.125675 -3.437055 1.204027 2.318000 -4.139135 -1.348793 2.805214 7.007678 -5.976087 1.934970 -1.664767 -2.636885 -0.948844 3.656677 5.710510 6.351666 8.447846 6.391098 -0.668888 4.245184 -6.960557 0.009017 6.598937 0.781461 -6.031916 7.316112 -5.630704 -2.495210 0.889760 5.612879 6.323018 1.723801 -5.967883 -5.037456 4.851495 2.450724 7.210905 -0.375211 0.629909 -0.588635 6.100912 1.220076 -4.859399 7.421543 1.507988 -5.613599 4.135667 1.835969 -5.059639 -1.979698 4.884820 -5.840935 0.848882 -3.183388 0.543767 4.049343 -3.310453 -1.261173 -0.097320 -5.887542 7.531290 -1.732406 -0.377466 3.476293 -5.192119 -5.892800 5.995407 0.218928 -2.173427 -5.788703 -5.377732 -4.956663 -4.851290 2.557672 0.266619 -2.267445 -3.778591 -6.469435 -1.112872 4.702565 2.423212 4.810226 -7.939423 -1.439810 3.295795 3.991247 4.311413 -1.282303 -1.006212 0.742966 -0.122262 1.945832 -1.074879 5.894246 8.579047 -4.459599 3.657370 -2.165304 -3.135551 3.247544 2.908216 -8.897444 8.189450 1.264248 4.806935 -0.397678 2.047069 -2.823239 0.961584 2.366762 -0.843270 1.106629 0.439727 -0.809508 -2.496827 -0.129257 -5.136598 -4.197450 -2.034348 1.543623 -0.643942 2.738654 -0.625282 -3.270828 -2.258372 -3.582131 1.402452 4.877943 -0.136978 -1.066970 4.872949 -0.154648 2.608836 1.632666 0.522085 2.015394 3.595620 -7.700141 -0.575397 -2.083029 2.048899 -3.339558 -7.170098 0.211786 -3.923260 -2.213764 4.249340 -6.974255 1.161636 -5.027571 -0.728977 -6.335960 -0.523933 1.305770 8.916249 2.891430 -3.436915 2.954799 -2.593527 4.322505 -0.184844 -0.025626 1.765170 4.390980 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -6.182359 -0.075478 1.631123 -6.896857 15.280006 -3.503484 -1.864968 8.675776 -0.285552 8.991822 -5.647592 -0.222629 -3.792312 -12.605539 1.897935 -4.577446 0.177170 5.257334 -1.867964 5.072523 5.806657 -0.628797 2.337587 -2.383017 -2.722140 -7.990126 -2.407797 3.598716 3.718233 -2.269493 2.577799 1.250829 12.215755 0.422301 9.079960 7.801946 5.672541 10.117860 1.430516 1.590088 0.459841 5.499451 -4.734456 -10.032336 3.233362 -3.069879 -8.321594 -5.469322 4.820504 -6.958132 2.583713 8.972763 -1.036778 -1.551419 -8.116128 3.436766 1.880901 -0.404955 9.291904 3.080871 -6.879194 -2.736416 -9.900300 6.850419 -5.948388 4.139908 0.388553 -5.734946 -0.159011 2.961114 2.878983 -6.514850 -5.735464 4.398891 4.245598 -6.531944 3.365921 -3.364241 -0.472129 -4.659389 -5.860178 3.347921 -3.187872 7.560960 -0.547958 2.820442 -1.218884 2.708361 -0.354260 -9.948481 -0.075593 8.651337 -5.055692 -1.135125 -9.182325 7.024449 0.892373 -1.047294 -2.689585 -2.677962 2.546242 -0.683406 5.430072 -1.025607 -2.533342 -8.443388 3.439882 0.574359 1.749666 4.561330 1.156734 1.782175 2.886589 6.175401 -4.467544 5.039595 -11.544403 3.906979 -3.770993 3.567572 -4.901948 4.534922 4.729783 3.273002 6.207455 -10.748457 6.713436 1.368812 -2.022869 -6.552092 2.974236 -1.430572 -4.106013 -1.569435 6.994284 -0.852214 -2.634032 -1.445882 3.754585 1.900955 -5.096701 -4.389636 0.011166 4.969553 -4.881568 2.446911 -2.703823 -4.548231 -0.229751 3.140827 5.289224 6.674850 12.246283 7.576329 -1.865036 2.077210 -10.969441 2.020932 11.895464 0.908774 -7.373547 8.049683 -5.170717 -0.786051 1.446727 7.089316 6.914957 3.910177 -4.404920 -3.204695 2.828659 1.158408 10.196983 4.655059 2.941925 -7.848283 1.700749 -3.152648 1.147947 11.758580 4.823105 -10.067176 2.539167 6.440641 -4.778249 -4.989962 3.024691 -3.011806 -0.796134 -5.009348 4.807501 6.467877 -6.358950 -5.750740 -0.690140 -7.511867 7.137874 -3.122282 -1.062371 3.490185 -8.418244 -5.801125 11.395622 0.620761 -2.362393 -5.167289 -8.603148 -1.539059 -10.457296 4.188490 2.886358 -1.618975 -2.081064 -6.870247 -1.546139 8.598916 0.012878 4.118932 -9.095967 -1.298968 5.191909 0.111288 4.008627 -8.423406 -1.774268 -0.881680 0.334975 4.113399 -2.381174 1.830709 11.467133 -7.231380 6.234717 3.752205 0.399532 1.272398 7.070472 -9.863881 12.480721 0.768907 8.490832 -0.868617 3.574449 -2.589387 1.169175 0.380005 -1.586951 0.721191 2.615612 -5.061692 -3.506641 4.087572 -5.718718 -5.141910 0.937450 5.940728 -0.595403 3.171418 -0.164158 -4.321993 -3.137022 -4.809711 4.619554 7.623043 -2.669913 -6.102495 4.488024 5.653867 -4.590660 -2.348862 1.170617 4.135586 8.581870 -10.863798 3.633953 -0.570065 2.484700 -7.202456 -8.660680 3.474951 -4.232997 -3.861239 2.955086 -9.803461 -5.109638 -6.682460 4.215355 -7.910355 -1.805430 -0.196871 9.454745 5.663533 -1.085194 4.223957 -1.825928 3.401608 -1.150077 -1.361982 5.141663 7.310187 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -4.692971 2.850806 1.564491 -4.519101 9.297000 -1.812679 0.235802 3.317418 0.546947 6.222436 -4.940561 -0.270046 -1.742361 -6.013286 0.191039 -3.229568 -0.607826 4.479797 -1.900234 2.424655 3.481370 -1.209996 1.768586 -2.181223 -2.351054 -6.234169 -1.624843 2.115611 1.762029 -1.654770 1.726275 0.207532 7.405312 -1.096819 5.336897 4.996006 3.082918 6.929765 0.356887 2.273902 1.277792 3.145191 -2.916386 -6.477438 2.179176 -2.283607 -5.419444 -4.009213 3.249962 -6.080899 2.855421 5.324818 -0.636563 -1.835757 -3.942477 4.378151 3.826026 -0.098071 7.003321 1.437147 -3.848797 0.680256 -6.159147 5.447958 -4.563655 3.296128 -0.525394 -6.444688 -1.547317 2.541544 2.148457 -3.686006 -4.426272 3.002192 2.406753 -4.942773 1.174451 -2.750856 -2.576207 -3.929360 -4.049346 1.920783 -0.277475 4.283203 0.149497 1.852045 -0.494699 2.206840 -0.150688 -6.668533 -0.711966 6.377045 -2.815476 0.916641 -3.984386 2.685140 1.085243 -1.354544 -2.775584 -2.217143 1.499910 -0.246363 3.125316 -1.062447 -1.426433 -5.080480 2.074094 2.213953 0.253253 1.501778 0.562207 2.010772 2.337061 4.314783 -3.712814 2.921244 -7.736288 2.216603 -0.999164 1.388206 -1.488762 2.145122 1.351366 2.084596 5.026185 -7.081580 5.305777 -0.051082 -2.735122 -5.030452 1.597780 -0.672065 -2.097740 -1.715359 3.765244 -0.402209 -1.150709 -1.183594 1.588982 -0.141911 -2.736036 -3.289943 0.153662 3.685025 -3.598596 1.944662 -1.674143 -2.777321 -0.485695 2.646065 3.562734 3.608289 7.887156 5.387544 -0.155216 1.467500 -6.624912 0.789937 6.879259 3.025839 -5.371103 5.198722 -3.132845 -0.691074 2.211026 3.871785 2.939948 3.394414 -3.814211 -3.565319 0.424296 -0.357076 6.703950 3.062422 1.073626 -5.367246 3.213572 -0.769945 -0.811429 9.142275 4.625844 -6.669688 1.655428 4.402682 -4.219847 -4.281238 2.836075 -2.938876 -1.687724 -1.871418 1.697713 3.162693 -3.701374 -4.530349 0.145481 -5.591492 6.033290 -1.275947 -1.196587 2.501519 -6.162068 -5.214637 6.591133 0.543364 -2.068927 -3.000460 -4.487500 -1.741207 -7.000986 2.023548 2.639817 -2.283587 -3.145303 -5.033842 0.179758 4.793304 -0.696790 2.572750 -5.032315 -2.477619 3.643181 0.423737 2.837314 -5.195185 -1.120003 -0.750295 0.362396 2.047645 -0.638175 2.514995 7.768748 -4.353900 3.483775 2.242058 -3.104509 1.278483 5.138366 -5.792806 7.688940 -0.266986 3.517334 0.273222 2.530797 -2.524280 0.969907 0.726357 -0.425621 -0.387727 2.421511 -3.843380 -2.335536 1.071143 -4.938233 -2.773332 1.301531 3.582256 0.522745 1.408647 0.526598 -3.095087 -1.769546 -2.609358 0.593280 4.486582 -0.468412 -4.341317 2.770595 2.398851 -2.548087 -2.364611 1.129606 2.546866 5.039373 -6.788262 3.044774 -0.416356 -0.374408 -6.632256 -5.179868 1.495462 -5.042469 -3.868866 2.075705 -6.830845 -2.519685 -3.968106 2.664532 -4.221427 -1.687992 0.928800 6.930414 3.437040 -1.334286 4.279724 -1.707583 4.013242 0.158202 -1.052413 1.550043 5.419838 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -2.325364 1.265318 0.257929 -1.649381 4.924608 -1.011597 0.503622 2.448157 -0.663343 2.951394 -2.128217 -0.685302 -1.202626 -3.668493 0.387670 -1.020315 -0.044491 2.270200 -0.821910 1.166890 1.957669 -0.975965 0.472843 -0.983885 -0.928914 -2.265674 -0.657455 0.823036 1.721782 -0.754111 -0.144216 0.422708 3.982734 -0.163867 3.103459 2.449233 1.471710 3.367419 0.522572 -0.090693 -0.146620 1.974313 -1.656495 -3.464283 1.184211 -1.497058 -2.442251 -1.800289 1.500324 -2.478767 1.492438 2.657413 -0.301277 -0.281651 -1.826934 1.697182 1.811982 0.382251 3.457220 1.035214 -1.645999 -0.333418 -3.169031 2.420588 -1.711818 1.442979 -0.134183 -3.155805 -0.493590 0.702542 0.905333 -2.333806 -1.878783 1.882087 1.318476 -2.186066 0.992768 -0.993269 -1.640078 -2.313249 -2.900178 0.675887 -1.080217 2.684921 -0.246049 0.569578 -0.552419 0.816585 -0.078728 -3.666355 -0.258705 3.457845 -1.457804 0.529721 -2.338858 1.460115 0.319421 0.169997 -1.893104 -1.359434 0.930529 0.164190 1.439416 -1.150109 -0.235427 -2.537403 1.134500 0.512294 0.308786 1.478369 1.474794 0.653959 1.153648 2.524578 -2.040770 0.916682 -3.634762 1.222791 -0.737620 0.990979 -0.698943 1.241556 0.925039 0.385399 2.432342 -4.198920 2.111093 0.331189 -0.976897 -2.851607 0.827101 -1.062025 -1.439710 -1.067924 2.212769 -0.087061 -0.751286 -0.898254 0.718749 0.142042 -2.099391 -1.504354 -0.105436 2.559238 -2.897992 0.562561 -1.052765 -1.589187 -0.515904 1.417443 1.857825 2.116393 3.629216 2.795122 -0.523173 0.684536 -3.622564 0.633902 3.875125 1.112790 -2.893519 2.470805 -1.803613 -0.054718 1.155317 1.974683 1.861058 1.376352 -1.678866 -1.311632 0.717267 0.207087 3.527808 1.433843 0.996744 -2.465086 1.671736 -0.464613 -1.175783 4.543995 2.091105 -3.280112 0.927998 1.692268 -2.023150 -1.456646 1.280336 -1.913715 -0.435486 -1.522458 0.868483 1.811578 -2.221280 -1.844723 0.318140 -2.895699 3.187965 -0.567221 -0.279248 1.031154 -3.161092 -1.640092 3.901286 0.321063 -1.044502 -1.769637 -2.489002 -1.810010 -3.143545 1.187544 0.858681 -0.956470 -1.981974 -2.642748 -0.269992 3.143029 -0.116489 1.232530 -2.826100 -0.706761 1.573889 0.291803 2.001261 -2.863001 -0.875491 -0.359175 0.004283 1.431083 -0.410015 1.298901 4.158407 -2.259451 1.672038 1.451188 -0.702775 0.625661 2.307927 -2.914023 3.525863 -0.146608 2.540534 -0.202960 1.516572 -1.349054 0.243012 0.384958 0.363156 -0.211959 1.461607 -1.437952 -0.849063 0.537204 -2.785298 -1.830506 0.455669 1.373212 0.544470 0.684309 -0.379637 -1.747049 -0.689365 -1.574961 0.357105 2.564157 -0.364849 -1.947574 1.201367 0.409626 -0.887854 -0.471589 0.715254 0.945966 2.606129 -3.254260 0.758581 -0.215487 0.280078 -2.778008 -3.195019 0.247896 -2.188192 -1.828769 1.821599 -3.578544 -0.823538 -2.024254 1.078459 -3.432760 -0.510510 0.103749 3.571065 1.452201 -0.546843 2.064722 -0.421980 2.220078 0.021589 -0.317468 0.884106 2.656100 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -1.619520 0.988325 0.296907 -1.176038 3.667761 -0.661130 0.260615 1.881807 -0.740925 2.331252 -1.301644 -0.288163 -0.634601 -2.508231 0.290971 -0.713204 -0.161049 1.507423 -0.422632 0.993950 1.269256 -0.684677 0.258598 -0.395007 -0.825173 -1.743822 -0.488123 0.802193 1.659238 -1.017393 -0.165889 0.254750 2.895611 -0.472715 2.526297 1.914775 1.201879 2.015392 0.379967 -0.676347 -0.211872 1.282327 -1.364013 -2.126800 0.502269 -0.826702 -1.951383 -1.160278 1.147582 -1.282552 0.694275 2.021413 -0.416347 -0.055854 -1.257067 1.655448 0.869833 0.006443 2.643577 0.577049 -1.162858 -0.201950 -2.466751 2.236913 -1.123990 0.868221 -0.745856 -2.223538 -0.136976 0.352989 0.337720 -1.764884 -0.963441 1.823372 1.009025 -1.786010 0.656386 -0.889567 -0.944794 -2.022358 -2.112374 0.701619 -0.738607 1.869194 -0.020803 0.602569 -0.265527 0.929323 -0.447715 -2.977140 0.183681 2.504144 -1.351141 0.019965 -1.548339 1.168396 0.304772 0.241780 -1.203308 -1.014458 0.718610 -0.177306 1.130577 -1.197883 0.865129 -1.837797 0.288736 0.138585 0.604690 1.207050 1.000999 0.547422 1.302800 2.148990 -1.374248 0.328175 -2.545017 0.922474 -0.815487 0.704444 -0.583001 1.156374 0.851954 0.682299 2.077991 -3.188227 1.207960 0.021085 -0.544596 -2.188905 0.400958 -0.894766 -0.946738 -0.867476 1.505137 -0.153178 -0.548368 -0.841939 0.707714 0.359374 -1.530276 -0.870024 0.211702 1.651899 -2.265913 0.512490 -0.654155 -0.970293 -0.327362 1.272591 1.760955 1.872112 2.873198 2.123495 -0.257291 0.625402 -2.742982 0.288095 2.498728 0.333138 -2.031462 2.217851 -1.739411 -0.431984 0.724649 1.780558 1.455947 1.043661 -1.438784 -1.246885 0.826665 0.524107 2.657092 0.650515 0.447420 -1.230572 1.270241 -0.533728 -1.252763 3.233962 1.223390 -2.432414 0.828346 1.049493 -1.247410 -1.062519 1.263497 -1.873580 -0.351422 -1.050270 0.515815 1.466765 -1.426172 -0.951752 0.464766 -2.031572 2.383989 -0.548196 -0.465352 0.943645 -2.114206 -1.273375 2.733412 0.296941 -0.689553 -1.485779 -1.850342 -1.165427 -2.092175 0.803807 0.515498 -0.543146 -1.316935 -2.038782 -0.280007 2.121639 0.240940 1.249253 -2.488936 -0.488351 1.228828 0.362827 1.383399 -1.690614 -0.453219 -0.281121 -0.144186 0.745499 -0.605222 1.273867 3.073892 -1.617630 1.311933 0.640209 -0.919320 0.489232 1.440618 -2.564117 2.787405 0.277486 1.576474 0.007637 0.887738 -1.120804 0.204902 0.293426 0.112633 -0.084400 0.762266 -0.793695 -0.718526 0.115164 -2.029026 -1.415213 -0.081712 0.971705 -0.019964 0.683262 -0.384271 -1.317009 -0.693364 -1.390380 0.387657 1.761001 -0.419673 -1.110694 1.394336 0.253702 -0.389823 -0.138839 0.344257 0.783355 1.757735 -2.528224 0.326847 -0.183467 0.614442 -1.974949 -2.370110 0.040678 -1.528789 -1.154479 1.056406 -2.454863 -0.588563 -1.582759 0.431082 -2.421229 -0.586200 0.480048 2.905222 1.082281 -0.807128 1.352552 -0.588615 1.538432 0.080564 -0.174273 0.561718 1.688020 +PE-benchmarks/naive-algorithm.cpp__main = -1.226215 0.406592 0.161305 -0.895067 2.453971 -0.502627 -0.036612 1.007844 0.279411 1.512667 -1.095582 -0.855142 -0.779265 -1.755150 0.213421 -0.676140 -0.037604 1.188308 -0.612577 0.424610 1.051320 -0.299876 0.307784 -0.460403 -0.448813 -0.957921 -0.605790 0.503665 0.652510 -0.498967 -0.130441 0.256383 2.063398 -0.168474 1.552868 1.260052 0.749568 1.872119 -0.060766 0.420605 0.106289 1.084112 -0.884145 -1.771861 0.689573 -0.784959 -1.228740 -0.914429 0.911790 -1.164189 0.924466 1.403549 -0.153079 -0.190677 -0.907436 0.894221 0.653330 0.571625 1.837388 0.580032 -0.907904 0.277024 -1.838787 1.164883 -1.086711 1.137894 -0.308287 -1.835778 -0.571432 0.381245 0.577594 -1.253627 -1.138860 0.878821 0.589949 -1.062290 0.586086 -0.489638 -0.319505 -1.022485 -1.681596 0.410002 -0.502205 1.290765 -0.214726 0.272249 -0.192231 0.450834 -0.043682 -1.825717 -0.147193 1.583934 -0.848394 0.412220 -0.884980 0.395036 0.027989 0.019613 -0.929830 -0.523562 0.449433 0.005013 0.800809 -0.149856 -0.006214 -1.144282 0.742420 0.453867 0.237555 0.367296 0.944983 0.268573 0.583714 1.221331 -0.902008 0.438840 -1.816711 0.598767 -0.491022 0.491559 -0.369370 0.784669 0.479875 0.143769 1.280863 -2.039614 1.097446 0.015285 -0.673743 -1.221784 0.496455 -0.460938 -0.832931 -0.559707 1.229013 -0.030573 -0.490751 -0.404675 0.436922 0.044068 -0.919007 -0.294917 -0.147043 0.761516 -1.033610 0.277223 -0.575177 -0.990653 -0.171835 0.757549 0.935999 1.160350 1.982341 1.476528 -0.358259 -0.261129 -1.874822 0.391307 1.890300 0.077133 -1.505996 1.242740 -0.823576 0.098752 0.670463 1.041469 0.930280 0.954899 -0.421254 -0.462591 -0.140158 0.190058 1.845874 0.766695 0.562033 -1.151142 0.488208 -0.387153 -0.453424 2.437249 1.090192 -1.721780 0.281552 0.936059 -1.063782 -0.951872 0.684525 -0.809246 -0.134141 -0.855382 0.523284 1.051440 -1.227280 -0.985915 0.334914 -1.514954 1.602299 -0.381286 -0.204998 0.734008 -1.902907 -0.983978 2.000182 0.219981 -0.486737 -0.922812 -1.286959 -0.571553 -1.700436 0.683889 0.494182 -0.384891 -0.960907 -1.307592 -0.012274 1.652846 -0.029034 0.694429 -1.041606 -0.330319 0.835179 -0.142053 1.128603 -1.098124 -0.436931 -0.158253 -0.199674 0.752999 -0.238651 0.360302 2.047268 -1.247738 0.874354 0.986413 -0.490138 0.141160 1.210206 -1.443519 1.921019 -0.051588 0.883820 -0.181241 0.774435 -0.667470 0.157069 0.266435 0.180568 -0.128914 0.733941 -0.721645 -0.470852 0.219588 -1.543066 -0.742298 0.245394 0.773909 0.271948 0.418186 -0.091188 -1.021931 -0.323841 -0.483595 0.235555 1.363895 -0.041871 -1.044984 0.663137 0.211671 -0.620784 -0.481635 0.387521 0.380191 1.502395 -1.739691 0.394245 0.005322 0.084199 -1.444862 -1.285691 -0.148201 -1.100674 -0.728240 0.913743 -1.565448 -0.462839 -1.042238 0.663578 -1.104610 -0.303872 0.036637 1.797587 1.070681 -0.420316 1.121543 -0.163526 1.150116 0.097164 -0.555853 0.476631 1.358388 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -2.997051 2.835670 1.141905 -2.733840 7.234441 -0.965722 0.579861 2.643539 -2.745785 5.392855 -1.949316 -0.556783 -0.833376 -5.712447 0.478162 -2.903632 -1.269547 2.459956 0.226799 3.616991 1.945973 -2.857593 0.457090 -0.022228 -2.305475 -4.402059 -1.079494 2.269171 4.708377 -3.684432 1.571119 -0.045581 5.700804 -1.696984 5.157000 4.238225 1.172671 2.975234 1.057286 -3.011346 -1.170698 2.002319 -3.210854 -2.651397 -0.302487 -0.517272 -4.574930 -1.728773 2.126000 -1.407297 -1.744516 4.637277 -1.471594 -0.061831 -3.073052 4.479567 1.179354 -0.531825 5.526927 0.436962 -1.205341 -0.573413 -5.796961 4.960166 -1.888397 0.183217 -2.756184 -3.648606 1.471486 0.205771 -1.535047 -2.653785 -0.844307 5.091788 2.913805 -4.622530 0.526196 -2.733287 -5.447841 -4.707119 -3.588567 2.151565 -0.215341 3.882959 0.835846 2.049964 1.590549 3.179901 -2.129289 -7.073553 1.401451 5.199487 -2.705516 -2.231194 -2.224323 4.385164 1.352254 0.566233 -2.381616 -1.498496 1.519546 -1.352011 2.611836 -4.324020 2.958674 -4.824003 -1.232933 -0.591464 1.679367 2.834273 2.634644 1.479850 3.459553 5.322420 -4.365434 -0.471511 -4.592887 1.471183 -2.071035 1.379921 -1.619618 2.751161 1.064310 2.562927 5.094951 -7.316863 1.496082 -0.451374 -0.438878 -5.541436 -0.141461 -1.981108 -1.232844 -1.780281 2.344354 -0.716574 -0.619517 -1.909269 1.307524 1.782833 -2.180015 -0.674272 1.993539 4.816188 -4.846729 1.671173 -0.786845 -1.166720 -0.732744 2.962586 4.838020 4.539886 6.463765 4.240668 0.151558 2.437554 -5.573284 -0.093812 4.628380 0.457635 -3.761236 5.850015 -4.178369 -2.194467 0.306074 4.542833 3.765420 1.538974 -4.675720 -4.197676 3.315070 1.667951 5.484974 -0.379567 -0.452339 -1.059935 4.190037 -0.289638 -3.407034 5.860102 2.196998 -4.156524 2.569183 1.860170 -3.823123 -2.385936 3.999801 -4.610201 -0.165905 -1.473136 0.227197 3.007323 -1.740568 -1.096642 0.223974 -3.959739 5.013793 -1.480003 -1.132533 2.516690 -3.045882 -4.978857 4.345277 0.466634 -1.354202 -3.959806 -3.973531 -2.910555 -3.623049 1.560348 0.780868 -1.428825 -2.314112 -4.480954 -0.866325 3.425643 1.191330 3.634289 -6.215122 -1.096364 2.599385 2.292746 2.895267 -1.107752 -0.177711 0.015236 -0.367165 0.420699 -1.192152 4.098198 6.278017 -2.919582 3.213730 -1.054232 -2.933879 1.930962 2.194515 -6.430799 6.412264 1.451936 3.599403 0.288087 1.152224 -2.147944 0.714041 1.520071 -1.327563 0.484131 0.206989 -0.872652 -1.942740 -0.220864 -3.868815 -3.385618 -1.266288 1.663165 -0.969733 1.879711 -0.171716 -2.679003 -1.845092 -2.595136 1.185380 3.102473 -0.309398 -0.716959 4.172087 0.800753 1.312998 0.251621 0.093473 2.038483 2.566977 -5.713370 0.333661 -1.184547 2.249949 -3.428711 -5.488515 0.575219 -3.442695 -2.324287 1.619674 -5.041468 -0.207439 -3.623151 -0.271278 -4.689451 -1.358778 2.112921 6.630535 1.725689 -3.140146 2.018630 -2.339915 2.865276 -0.116476 -0.001235 1.135898 2.739743 +PE-benchmarks/sudoku.cpp__main = -1.791121 0.504225 0.584420 -1.474012 3.821462 -0.811287 -0.150371 0.987811 0.358364 2.395681 -1.374281 -1.355407 -1.081239 -2.962476 0.472517 -1.298644 -0.021096 1.703240 -0.554789 1.164158 1.512153 -0.837119 0.459638 -0.470230 -0.678258 -2.051970 -1.018467 1.050261 1.679614 -1.481417 -0.037233 0.377372 3.324664 -0.491464 2.780608 2.233371 1.381438 2.492442 0.038688 -0.708389 -0.014491 1.614674 -1.548662 -2.525067 0.807154 -0.794538 -2.292661 -1.601483 1.484756 -1.063609 0.239456 2.475729 -0.577607 -0.255180 -1.714695 1.644964 1.013350 0.783011 2.898915 0.694995 -0.724161 0.601341 -2.969526 1.770521 -1.722643 1.153213 -1.213249 -2.554750 -0.452140 0.387783 0.357865 -1.574166 -1.436327 1.843313 1.524853 -1.874694 0.752519 -0.961376 -0.697122 -2.266951 -2.710663 0.807597 -0.890437 2.186147 -0.051856 0.734646 0.423318 1.073425 -0.286086 -3.106565 0.228998 2.419927 -1.322380 -0.197142 -0.856721 1.217711 0.476745 -0.023885 -1.372438 -1.099724 0.680079 -0.744370 1.481379 0.077403 1.080281 -1.721163 0.349480 0.270212 0.805322 0.943617 1.362852 0.292703 1.355044 2.048729 -1.765086 0.190109 -2.547480 0.871660 -1.216601 0.749299 -0.587970 1.643516 0.928999 0.677588 2.213521 -3.378501 1.326079 0.045804 -0.672891 -1.783499 0.575119 -0.801512 -1.079584 -0.988976 1.851266 -0.253957 -0.677043 -0.691866 0.804865 0.458351 -1.035622 0.080157 0.027525 1.319035 -1.668367 0.716972 -0.798402 -1.613421 -0.080025 1.121935 1.737418 2.221179 3.289460 2.650049 -0.801863 0.154349 -3.025344 0.476471 2.790830 -0.857702 -2.178200 2.372360 -1.485670 -0.338289 0.810025 2.249759 1.814580 0.913120 -0.936272 -0.957214 -0.020311 0.579883 2.810378 0.555640 0.360164 -1.533320 0.963140 -0.038684 -1.045147 3.658697 1.032725 -2.492950 0.788672 1.517106 -2.126074 -1.712509 1.169207 -1.640714 -0.036882 -1.573633 1.041062 1.698672 -1.695441 -1.075309 0.429373 -2.270750 2.245024 -0.726606 -0.834134 1.403368 -2.407767 -2.235850 3.180026 0.065475 -0.625437 -1.862047 -2.360948 -0.263227 -2.501746 1.124064 0.222366 -0.611615 -1.202585 -2.138769 -0.107846 2.575345 0.345790 1.469023 -2.438353 -0.319608 1.291060 0.603397 1.600503 -1.175601 -0.545149 0.189944 -0.468116 0.484554 -0.433097 0.771857 3.211224 -2.131312 0.851680 0.276993 -1.754254 0.719638 1.642470 -2.849717 3.290804 0.314601 1.491187 -0.158196 0.996162 -1.092266 0.328373 0.627364 -0.243715 -0.142610 0.762850 -0.949168 -0.929669 0.448744 -1.927909 -1.738963 -0.103368 1.288742 0.047878 0.910744 -0.305619 -1.649683 -0.362552 -0.562505 0.680090 2.052174 0.029231 -1.142575 1.493272 0.728730 -0.332885 -0.737491 0.406695 0.592437 2.195868 -3.023217 0.645615 -0.263580 0.853138 -1.711464 -2.327662 0.149825 -1.905039 -0.538360 1.504997 -2.559769 -0.685124 -1.903309 0.643477 -1.282765 -0.272287 0.462991 2.981147 1.836142 -1.059766 1.517910 -0.654046 1.500389 -0.062582 -0.833404 0.759370 1.911111 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -2.975265 2.869035 1.851401 -2.394709 6.741778 -0.415957 0.789930 3.576061 -3.672121 5.520853 -1.931719 0.593900 -1.292437 -5.496536 0.328730 -2.785120 -0.490254 2.099805 0.262285 3.846714 2.534484 -3.090507 0.512249 -0.610522 -2.271981 -4.978708 -0.481288 1.712298 4.867884 -2.514554 1.684337 -0.147180 6.014872 -1.120006 5.514711 4.497924 2.119867 3.726698 1.775484 -3.216751 -1.976033 2.842471 -3.447432 -3.995611 0.364300 -1.441550 -3.620958 -1.847975 1.762589 -1.909400 -2.138034 4.594904 -1.528356 0.307196 -3.219638 3.711815 1.847100 -0.910371 5.961566 0.416622 -1.344728 -1.916719 -5.163730 4.424934 -2.088101 -0.058012 -2.191755 -3.569692 1.839414 -0.409104 -1.790545 -2.202932 -0.674048 5.307450 2.570826 -4.753409 0.585204 -2.711180 -5.867040 -4.147445 -3.632800 1.511148 -0.616725 3.757512 0.925431 1.847205 1.054833 3.244789 -1.420990 -7.511192 1.458613 5.035708 -3.109462 -1.540899 -2.313628 4.447037 1.229086 1.112426 -2.651362 -1.221630 1.515056 -0.964910 2.670706 -4.681441 1.985173 -5.163366 -0.702371 -1.270288 1.622720 3.165610 2.088076 1.520352 3.730402 5.171411 -4.559378 0.353900 -4.295759 1.515921 -1.917470 1.495658 -1.605393 3.017244 1.161299 2.008127 5.451229 -7.070230 1.333074 0.005012 -0.309734 -5.588621 0.287513 -2.767811 -1.238409 -2.069713 2.927409 -0.703526 -0.332009 -2.660874 1.051364 1.487927 -2.472214 -2.472523 1.757140 5.134904 -5.580490 1.499906 -1.267006 -1.539956 -0.733163 2.776904 4.170723 4.591903 6.075747 4.800941 -0.332208 4.091161 -5.220196 -0.356851 5.212125 1.637895 -4.473457 5.523076 -4.589189 -2.065114 0.798228 3.810062 4.411784 1.814779 -5.299962 -4.663670 3.489637 1.528045 5.741293 0.303001 0.436520 -2.020218 4.353960 -0.153324 -3.641497 5.934357 1.646681 -4.846849 3.004726 1.699500 -3.963956 -1.840119 3.136365 -4.669050 0.082951 -2.167077 0.058714 2.994987 -2.390872 -1.053500 0.327680 -4.610671 5.328041 -0.986390 0.043815 2.277865 -3.428536 -4.702626 4.715378 0.450593 -1.688743 -4.464271 -3.933799 -3.462873 -4.363999 1.755966 0.159052 -1.670187 -2.787128 -5.114269 -0.840955 3.282518 1.393376 3.148350 -6.983961 -1.547069 2.514751 2.308690 2.874324 -2.715683 -0.786798 -0.169534 -0.485491 1.462105 -1.273588 4.258264 6.879719 -2.964903 2.997726 -1.379755 -3.237237 2.095622 2.637078 -6.701722 6.237730 0.455995 4.064429 0.100675 1.571575 -2.795183 0.893997 1.106248 -0.834591 0.664195 0.361545 -1.133050 -1.921379 0.163685 -4.155150 -2.957061 -1.297891 1.257756 -0.678631 1.838632 -0.351500 -3.007744 -1.923697 -3.285993 0.927818 3.734832 -0.787685 -1.455562 3.711763 0.201077 1.125570 -0.301091 0.258947 1.819160 2.331844 -6.028391 -0.068237 -1.285681 1.224549 -3.468551 -5.619548 0.763972 -3.408136 -2.442079 2.286054 -5.167692 0.601139 -3.731648 -0.404116 -5.631914 -1.403037 1.092158 6.791519 1.346539 -2.718797 2.277703 -2.178653 3.465539 0.123905 0.928063 0.586960 3.172456 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -3.601819 1.818670 1.250585 -3.088260 8.573042 -1.030505 0.259666 2.558631 -2.142824 6.006420 -2.183949 -0.593603 -1.834616 -7.083688 0.825807 -2.972681 -0.469980 2.684349 -0.155028 3.441537 2.859988 -3.379415 1.281655 -0.367789 -1.925641 -6.544020 -1.091991 2.478532 5.856099 -3.317304 1.349722 -0.138870 6.502380 -1.786097 5.000668 4.343062 3.197976 4.070610 0.643764 -3.788448 -1.260318 3.020994 -3.568860 -4.406811 1.085523 -1.207927 -5.481788 -2.254795 3.152415 -2.276367 -3.085509 5.652903 -1.785127 -0.629899 -3.823119 4.792912 2.950323 -0.636500 6.429304 0.614089 -0.748025 -2.167655 -6.307009 4.724710 -2.911523 0.302011 -2.976701 -4.508335 0.340543 0.414936 -2.761590 -2.031417 -1.375989 5.231520 4.171046 -4.977095 0.870827 -2.743622 -4.411114 -5.536549 -4.707879 1.607927 -1.165150 4.967826 0.751319 2.255179 3.102836 2.929271 -1.396746 -7.781487 1.470876 5.455034 -3.022641 -1.882199 -1.972530 4.556067 1.201013 0.168879 -3.046326 -2.313652 1.117060 -1.549551 3.386271 -3.606050 2.532378 -5.330791 -0.808692 -1.332130 2.550007 3.070773 2.485051 0.218913 2.375492 5.521877 -5.637148 -0.077320 -5.255629 1.632811 -2.016378 2.254254 -2.133097 3.468723 2.149372 2.478108 5.595741 -8.200338 2.367792 -0.257873 -0.401679 -5.437060 0.414510 -2.038977 -1.386268 -1.681676 3.502761 -1.718951 -1.081323 -1.994885 2.305783 2.009725 -3.042550 -0.082566 1.103262 4.973374 -6.066406 2.115406 -1.476514 -2.629077 -0.202075 2.417635 4.571548 5.229182 7.213743 5.767413 -0.956401 5.485508 -6.371831 0.933213 6.241925 0.559395 -4.515687 5.775828 -5.014830 -1.453246 1.171101 4.671402 4.844621 2.040123 -4.102026 -3.007221 3.959864 2.006751 6.186403 0.084132 0.482353 -3.683579 3.433615 0.135530 -2.397823 7.232528 2.285810 -6.010637 4.548538 2.663210 -5.285303 -2.166068 2.873602 -4.554092 0.020800 -3.240074 1.527815 4.067794 -2.930110 -1.893300 -0.115056 -4.615117 5.255843 -1.620237 -0.882228 3.984065 -3.702270 -5.612815 5.457990 0.193673 -1.524999 -5.193304 -5.210600 -3.232451 -4.789203 2.247448 -0.064855 -2.397212 -2.564553 -5.413226 -1.451389 5.205149 1.905422 3.728620 -9.107968 -0.106203 2.834044 3.529675 3.373267 -1.606287 -0.699951 0.484122 -0.986359 0.527975 -1.471935 3.102548 6.699341 -4.631623 3.114542 -3.412513 -4.510343 2.664968 2.797796 -6.824325 7.257854 1.683392 5.464386 -0.264189 1.968929 -2.743788 1.651158 1.417038 -2.131097 0.509433 0.743932 -1.914204 -2.579992 1.625558 -4.034700 -4.882594 -1.184393 2.394554 0.146439 2.250377 -0.678567 -2.861782 -1.527117 -1.810440 1.576580 4.071032 -0.572595 -1.632679 3.651633 1.436392 0.908558 -1.717477 0.739697 2.031674 3.581595 -6.769875 0.855423 -1.379385 2.102041 -3.577772 -6.639846 1.179439 -3.753886 -1.978148 3.389630 -6.702187 0.089336 -4.348978 0.357304 -5.125953 -0.775477 1.020128 6.976463 2.108836 -2.335369 3.440532 -1.849025 2.884617 -0.958962 0.023653 1.867745 3.308588 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -5.030410 1.568455 1.710034 -3.929484 10.156798 -3.282008 0.358652 4.026916 1.855335 5.839901 -4.909331 -1.635369 -2.403096 -6.326166 0.886930 -3.423429 0.646098 5.265565 -2.420797 1.834650 3.945748 0.181307 1.370591 -2.478381 -1.895663 -5.842683 -2.221132 2.032869 1.481422 -2.250681 0.534118 1.516798 9.033335 -0.837313 6.905516 5.786349 4.373877 7.328506 0.156810 2.230452 1.776315 3.672996 -3.130686 -7.057532 2.266509 -2.234700 -5.720667 -3.816753 3.475535 -5.305321 3.570862 5.605253 -0.448130 -0.756034 -3.812228 4.274982 3.350964 0.773248 7.022856 2.087647 -4.506054 1.927343 -6.390199 5.988824 -4.936233 4.066505 -1.572240 -7.358373 -2.596374 2.638937 3.134024 -5.245894 -5.219939 2.992023 2.572919 -4.707674 2.042120 -1.657744 0.330641 -4.482099 -5.885235 2.179803 -1.253038 4.561560 -0.089762 1.664444 -1.236639 1.798223 0.525776 -6.877981 -0.761429 6.519687 -4.040861 1.472053 -4.483180 1.142514 1.040527 -0.886135 -2.541243 -4.083653 1.654764 -1.268176 3.227874 0.756659 -0.384907 -3.979043 1.967303 1.999473 0.581014 2.363987 0.607428 2.175661 2.696730 4.138392 -2.892815 2.110539 -8.019254 3.163049 -2.540460 1.156730 -1.314723 2.482053 2.272795 2.224456 4.988029 -7.542001 5.072629 0.256963 -2.674689 -4.299817 1.857881 -1.103298 -2.846087 -2.428718 4.946112 -0.127206 -1.315375 -1.185505 2.118284 -0.105466 -2.235627 -2.911614 -0.978760 2.431229 -3.948225 1.679132 -2.045336 -3.542944 -0.762110 2.659962 3.339912 4.347656 7.765969 6.018068 -1.658910 0.393392 -7.527765 0.862666 7.060577 1.035847 -5.629828 5.538835 -3.541657 -0.441099 2.828330 4.552347 2.865731 2.727291 -2.600896 -2.428645 -0.473578 0.042653 7.163338 2.862730 1.143982 -6.016969 1.720524 -1.495489 -1.469892 10.520788 4.370149 -7.800743 1.336167 5.110008 -3.821548 -5.215742 2.594041 -3.930875 -1.898851 -3.402033 2.693597 3.580666 -4.699315 -3.681112 1.970447 -5.965910 5.545188 -1.157288 -2.360532 2.693826 -7.066036 -5.428374 8.826427 0.617745 -1.334815 -3.338412 -5.558878 -0.115305 -7.747957 2.246650 1.974781 -1.368673 -2.792891 -5.131062 0.297553 6.260388 -0.737354 3.262359 -5.241775 -1.895984 3.476209 -0.257417 3.026523 -5.921496 -1.645178 -0.733730 -0.176521 1.753425 -1.366445 1.138185 8.254902 -5.058493 3.010312 3.157249 -4.622866 0.688427 5.070625 -6.325810 7.752101 -0.186908 3.679351 0.506726 2.977341 -3.582337 0.434484 0.525934 0.310333 -1.591309 2.848340 -4.090550 -2.198701 1.204832 -4.894908 -3.667441 1.070864 3.882724 0.419807 1.248246 -0.288950 -3.723132 -1.067010 -2.682907 1.472393 5.087761 -0.364147 -4.611796 3.216511 2.711381 -3.849648 -2.675231 1.230622 1.895609 6.093476 -7.365134 2.726269 0.204400 0.648415 -6.510222 -6.141473 1.243040 -5.853969 -3.092138 1.959141 -6.926115 -3.391725 -4.037603 3.015210 -4.106920 -1.811716 1.236348 7.303609 4.149807 -1.508098 4.616653 -1.371677 3.788217 0.158235 -1.390412 1.377852 5.682077 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -3.763754 2.311664 1.080900 -3.441060 7.915519 -2.174589 0.353324 2.144219 -1.354944 5.612126 -2.711169 -0.853291 -1.748481 -7.054320 0.810659 -2.868701 -0.276576 3.738775 -0.016535 3.885083 2.939878 -3.209556 1.083213 -0.843055 -1.906849 -5.732639 -1.182641 2.445011 4.296839 -3.564152 1.960149 0.466937 6.858246 -1.136768 5.386184 4.837768 1.913556 5.021497 1.298968 -2.632298 -0.626559 2.953886 -3.113276 -4.842736 1.357528 -0.844018 -4.867378 -3.099134 2.917263 -2.685695 -1.193088 5.394606 -1.409287 -0.766223 -4.541587 3.999496 3.382251 0.099628 6.205793 0.938759 -0.887756 -0.210403 -5.879441 3.907507 -3.441838 0.124300 -1.954654 -4.493173 0.761639 0.957469 -0.560062 -2.943268 -2.406024 4.348506 3.350690 -4.823489 1.004685 -2.470490 -4.536340 -5.478368 -4.608462 1.667646 -1.002858 4.864375 0.340203 2.065371 1.442965 2.615984 -0.963871 -6.997588 0.819124 5.049113 -2.514554 -1.456157 -1.548656 5.037831 1.787573 -0.504618 -2.938315 -2.330900 1.296228 -1.946117 3.306432 -1.492939 1.506914 -4.390662 -0.431914 -0.663476 1.544240 3.213278 2.770734 1.431616 2.637547 4.771700 -5.089127 0.043201 -5.965748 1.860975 -1.875139 1.692920 -1.410009 2.987848 1.590457 2.052619 4.971729 -7.703600 2.939904 0.047909 -0.278829 -5.124875 0.846535 -1.309252 -1.443765 -2.154792 3.602539 -1.088301 -0.970989 -1.402786 1.619796 1.656696 -2.117768 -0.673107 0.759940 5.510278 -4.997340 2.092031 -1.513132 -2.810528 -0.106441 1.839834 4.014756 4.654202 7.068426 5.440024 -1.017965 3.500398 -6.331857 0.550637 6.127767 0.946173 -4.272339 5.633317 -3.377780 -1.606428 1.368471 4.695772 4.420391 1.096107 -3.965029 -3.621619 2.805065 1.061768 5.881403 0.001905 0.183922 -3.756546 3.865080 1.306324 -2.216932 7.910908 1.941711 -5.274043 3.358077 3.156487 -5.072232 -3.040987 2.818798 -3.699365 -0.367809 -2.474220 1.710939 3.430716 -2.961107 -2.510391 -0.452739 -4.614241 4.827884 -1.661561 -1.515478 3.254804 -4.129876 -5.350630 5.798651 0.373409 -1.466219 -4.390878 -5.083307 -1.835935 -5.211680 2.163795 0.316552 -1.976982 -2.242441 -4.837816 -0.955867 4.894154 0.927739 2.965839 -7.357241 -0.874642 2.984166 2.706835 2.571437 -2.523693 -0.735412 1.059892 -0.068085 0.424402 -0.522151 3.087591 7.074093 -4.426208 2.034588 -0.696526 -2.970080 2.947876 3.411922 -6.773052 7.170015 0.782615 5.172873 0.051460 1.680047 -2.456675 0.934608 1.601178 -1.146878 -0.080704 0.743976 -2.120363 -2.276864 1.443632 -3.641710 -4.256142 -0.496248 2.747199 0.169012 2.052016 -0.269858 -2.717626 -1.212236 -1.462945 1.381123 4.008997 0.202703 -2.072406 3.552614 2.049975 0.643560 -1.330962 0.570110 2.146830 3.722298 -6.545585 1.747165 -1.356281 1.739715 -3.436159 -6.272158 2.097811 -4.095366 -2.154293 3.020009 -6.551764 -0.696896 -4.036856 1.192728 -4.589942 -0.017694 0.966917 6.568676 2.411295 -2.285718 3.242193 -2.063631 2.971766 -0.773600 -0.457020 1.300665 4.286683 +PE-benchmarks/coin-change.cpp__main = -1.803178 1.366139 0.540566 -1.150705 3.766216 -0.371527 -0.122697 1.922622 -1.068030 2.786089 -1.361781 -0.288985 -0.852959 -2.748458 0.194571 -0.973541 -0.303050 1.338152 -0.278970 1.293584 1.407608 -1.123316 0.266648 -0.366091 -0.981646 -2.144848 -0.526227 0.801751 2.366070 -1.365708 -0.200068 0.118956 3.171663 -0.476444 2.744853 2.125406 1.324769 2.293050 0.482870 -0.926665 -0.722323 1.536831 -1.710104 -2.020995 0.614762 -1.126231 -1.910970 -0.997009 1.299947 -0.857044 0.408088 2.342036 -0.577129 0.068140 -1.529832 1.884986 0.828144 0.215195 3.238641 0.464463 -0.830973 -0.707282 -2.915496 2.148918 -1.305908 0.755155 -1.000471 -2.023127 0.199949 -0.061570 0.146387 -1.969680 -0.829971 2.468016 1.092279 -2.174655 0.607573 -1.094123 -1.893169 -2.446653 -2.478501 0.720944 -0.592170 2.105040 0.042482 0.785993 -0.099631 1.409810 -0.638285 -3.681776 0.497372 2.713273 -1.509734 -0.085878 -1.497329 1.760339 0.138674 0.565633 -1.471240 -0.690732 0.836290 -0.140832 1.320120 -2.095186 1.278496 -2.473497 0.549232 -0.282648 0.598709 0.952178 1.416414 0.493507 1.736639 2.818838 -1.909386 0.012923 -2.832381 0.660189 -0.616655 0.790542 -0.607641 1.528459 0.376263 0.661685 2.596107 -3.885952 1.098482 -0.112370 -0.650767 -2.875926 0.304666 -1.292850 -0.960871 -0.990811 1.643454 -0.230470 -0.611137 -1.199915 0.742356 0.452718 -1.839255 -1.057778 0.617340 2.428192 -2.552315 0.594312 -0.749501 -1.145327 -0.436019 1.421120 2.118772 2.246793 3.304984 2.428138 -0.243983 1.079616 -2.910587 0.096732 2.612906 0.634557 -2.415064 2.654588 -1.999432 -0.609335 0.719158 2.031650 1.930164 1.155239 -1.888602 -1.849790 1.194757 0.769371 2.960207 0.457726 0.547104 -0.702914 1.870160 -0.410588 -1.794867 3.390533 1.116311 -2.400006 0.961999 0.892039 -1.333697 -0.992393 1.634100 -2.149410 0.015028 -1.148167 0.323718 1.596611 -1.498554 -0.908354 0.410348 -2.333182 2.962759 -0.565997 -0.097442 1.341911 -2.396395 -1.875429 2.624170 0.033522 -0.888978 -1.937407 -2.079749 -1.604368 -2.138229 0.968504 0.442051 -0.794309 -1.584271 -2.466295 -0.260890 2.200452 0.570207 1.493689 -3.162854 -0.840064 1.292120 0.532777 1.789352 -1.286966 -0.472007 -0.230015 -0.132851 1.023396 -0.619722 1.948790 3.710177 -1.784154 1.551087 -0.095585 -0.965298 0.664483 1.551537 -3.136274 3.063549 0.343023 1.770036 -0.115325 0.996138 -1.250034 0.304416 0.617046 0.116115 0.258955 0.596637 -0.568173 -0.870715 -0.111367 -2.384520 -1.418744 -0.383626 0.755832 -0.243564 0.833818 -0.283878 -1.351125 -0.822215 -1.476116 0.384473 1.988707 -0.265917 -0.853553 1.668757 -0.036955 0.087551 0.415668 0.359783 0.721165 1.780318 -2.876957 -0.074510 -0.427323 0.553940 -1.884265 -2.780187 -0.308719 -1.532228 -1.202960 1.506474 -2.881801 -0.241759 -1.819389 0.172837 -2.584380 -0.473605 0.494942 3.353372 1.374706 -1.141743 1.419496 -0.764407 1.822108 0.118281 -0.244202 0.614285 1.872064 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -5.397742 6.080085 3.314454 -3.763777 11.431171 -0.172663 -0.474207 4.037749 -5.384066 10.061159 -3.637102 -1.140484 -2.703359 -9.693822 0.227412 -5.401884 -2.141853 2.836958 0.777384 6.313528 3.759821 -6.270462 0.850487 -0.245898 -3.817190 -8.481462 -1.695664 3.050303 10.752050 -6.530900 0.982818 -0.677907 10.081554 -2.055030 9.063208 7.093499 2.811556 6.453307 2.032280 -6.146720 -4.147970 4.572000 -6.300981 -4.595494 0.585460 -2.801851 -6.385279 -2.812934 4.007958 -0.239884 -2.764729 8.257394 -2.824253 0.388535 -6.159823 7.258647 2.311342 0.864318 11.250211 0.214260 0.084537 -3.281776 -10.752500 5.770127 -3.676743 0.013257 -4.935568 -4.385652 3.405900 -1.752376 -2.679529 -5.398109 -0.767071 10.426779 4.980767 -8.288383 0.634103 -4.752663 -12.570511 -9.174657 -7.717912 2.798480 -0.628180 7.121468 1.275816 3.674588 2.384442 6.610970 -3.490362 -13.732037 3.259023 9.299078 -4.345514 -3.367107 -3.008352 9.291541 0.945438 2.375184 -5.159095 -0.938571 2.686163 -1.502683 4.682623 -10.589414 5.968176 -10.521188 0.416257 -2.612568 2.084192 2.806566 6.127242 1.336069 7.028437 10.988842 -9.336616 -1.571832 -8.860450 0.799812 -1.799232 2.413763 -2.240206 6.065809 -1.146634 3.357070 9.678772 -14.552423 2.172690 -0.911153 -1.377719 -11.352891 -0.439646 -4.859253 -2.089923 -3.074276 4.308490 -1.250298 -1.353806 -4.607004 1.902028 2.597662 -4.985751 -2.427419 4.690323 11.213299 -8.813722 2.660425 -1.791533 -3.072761 -1.641331 4.911242 8.540618 8.167270 11.500125 8.090095 -0.174944 5.665743 -9.208130 -0.797662 7.666103 1.316014 -7.606165 10.389071 -7.193275 -3.603468 0.814645 7.791054 7.835347 2.734008 -8.879649 -8.763015 6.251203 3.381794 9.378869 -0.700609 0.411642 0.544356 9.270632 -0.187679 -7.664334 9.591852 2.621949 -6.150866 4.031065 2.076011 -6.152517 -3.091317 7.066307 -8.097095 1.787798 -3.249617 -0.171289 4.927830 -3.251408 -1.546523 -0.049036 -7.376728 10.392435 -2.118991 0.113399 5.252910 -5.947130 -9.366213 6.885124 -1.067822 -2.960588 -7.729988 -7.264292 -6.563227 -5.796659 3.164029 0.595078 -3.477455 -5.066907 -8.617099 -0.786709 6.069899 3.179172 6.262580 -11.893483 -3.422908 4.003520 4.504312 6.491602 -0.608897 -0.702930 0.324865 -0.477124 2.397335 -1.638577 9.263356 12.861936 -5.300032 5.586511 -5.003158 -4.327047 3.731914 4.181349 -12.099534 10.473101 2.033098 6.660202 -0.539331 2.487337 -3.550401 1.451627 3.623906 -1.641978 2.294010 0.100824 -0.480779 -3.445494 -1.334092 -7.665063 -5.252835 -2.983628 1.627128 -2.308697 3.386565 -0.056391 -4.144212 -3.004726 -4.773457 1.561891 5.844737 0.133492 -0.344276 6.821062 -0.283485 3.809197 3.220301 0.378583 2.391236 4.150741 -9.865171 -1.540641 -2.899492 2.722041 -4.368937 -10.314242 -0.803473 -5.264139 -3.546148 5.223637 -9.714964 1.121063 -6.519049 -1.379715 -8.610890 -1.278390 2.708371 11.833331 4.481769 -5.360424 3.350481 -3.879137 5.678661 -0.049537 -0.486220 2.329061 5.316500 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -2.332438 2.117287 1.005096 -1.648169 4.307023 -0.159437 -0.337266 2.029979 -0.994568 3.850175 -1.844364 -0.732347 -0.991056 -3.176486 -0.046862 -1.735615 -1.102257 1.407538 -0.385429 1.793999 1.728864 -1.536637 0.228163 -0.274336 -1.558100 -2.542275 -0.980138 1.092851 2.861713 -2.295127 0.258342 -0.212426 3.844237 -0.723495 3.585016 2.850312 1.369068 2.945370 0.262241 0.136724 -1.278944 1.944489 -2.487896 -2.065213 0.491895 -1.363980 -2.408693 -1.069939 1.468008 -0.892485 1.049166 3.135831 -0.936912 0.136049 -1.737910 2.709564 0.412948 0.410444 4.375055 0.455177 -1.181714 -0.243450 -4.259409 3.197002 -1.507232 1.449406 -1.155224 -2.526401 0.581848 -0.619294 0.466237 -2.482128 -1.188800 3.710126 1.267515 -3.076369 0.547922 -1.999183 -3.699493 -2.980324 -2.984191 1.221158 0.198013 2.480681 0.244605 1.142260 -0.136766 2.373183 -1.443832 -5.141865 0.863054 3.718383 -2.050223 -0.200476 -2.314262 2.307166 -0.160352 1.038220 -1.942166 -0.371971 1.255490 0.039831 1.692803 -3.039882 1.383779 -3.706221 0.881462 -0.124456 0.481235 0.269826 1.951055 0.700259 2.724253 4.148685 -2.609689 0.171750 -3.358285 0.647984 -0.349623 1.074144 -0.716072 1.981888 -0.269390 0.861191 3.685521 -4.791702 1.081576 -0.543626 -1.441865 -4.170417 -0.005864 -2.048084 -1.278736 -1.327716 1.770949 -0.031652 -0.740756 -1.874463 0.682737 0.514087 -1.977153 -1.584152 1.448915 3.008765 -2.546430 0.700836 -0.838145 -1.153288 -0.880028 2.432916 3.133519 3.014995 4.635325 2.939323 0.416762 0.458144 -3.615883 -0.409785 3.060518 1.195382 -3.289071 3.717894 -2.677134 -0.941516 0.647796 2.897992 2.487194 1.533851 -2.742442 -2.783568 1.556352 1.049563 4.023297 0.445399 0.449438 0.081685 2.804179 -0.434368 -2.816543 4.203219 2.051478 -2.670887 0.649039 0.688306 -1.275175 -1.586280 2.872278 -2.682370 0.188930 -0.826069 -0.117367 1.815523 -1.394878 -1.002476 0.709920 -3.230192 4.276605 -0.837919 0.413760 1.880852 -3.368518 -3.542569 2.717700 -0.145179 -1.486652 -2.556830 -2.355716 -2.116522 -2.429992 1.343420 0.970947 -0.889004 -2.340772 -3.316548 0.221034 2.307285 0.773867 2.334196 -3.063449 -2.045552 1.680328 0.004831 2.768447 -1.205546 -0.456224 -0.741815 0.104970 1.654469 -0.535293 2.802631 5.251322 -1.893584 2.309895 0.235099 -1.244157 0.406138 2.085357 -4.187361 4.164889 0.469471 1.050821 -0.304619 1.104607 -1.521694 0.317617 1.214969 0.398240 0.863175 0.495690 -0.148114 -1.106814 -1.075222 -3.707845 -1.099822 -0.683512 0.552473 -0.877971 1.268797 0.080556 -1.910589 -1.416627 -2.054184 0.262190 2.593337 0.100649 -0.645984 2.510265 -0.640357 0.531980 1.400411 0.304569 0.941067 2.170209 -3.806962 -0.466906 -0.643200 0.460332 -2.605611 -3.328313 -0.968750 -2.267506 -1.851306 1.587616 -3.293279 0.007799 -2.514821 -0.299802 -2.868352 -0.849191 0.959082 4.554932 2.250527 -2.054163 1.564873 -1.275066 2.866959 0.463911 -0.638782 0.939012 2.468695 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -7.952059 9.866726 5.208518 -5.900376 14.919286 0.151095 -0.021221 5.103165 -7.815275 14.991120 -5.579036 -0.587470 -3.377155 -13.274567 -0.301573 -8.538736 -4.725676 3.021372 1.357727 9.189508 5.403308 -9.748535 0.710183 0.037869 -6.339526 -13.163005 -1.858511 4.458077 15.512630 -10.161768 2.450699 -1.735230 13.428131 -3.464593 12.841913 10.601327 4.323099 9.043176 2.564976 -6.341469 -7.281112 6.482102 -9.634600 -5.875369 -0.148419 -3.573227 -9.256884 -3.193130 5.250640 -0.406587 -3.082918 12.303639 -4.673937 0.504122 -8.558474 11.516791 2.262763 0.363129 16.667251 0.061897 -0.249357 -5.106026 -16.043358 10.921553 -4.653890 0.342218 -5.877763 -5.773785 6.368686 -3.603065 -4.740683 -6.192840 -0.868053 15.972410 7.212284 -13.086955 0.103039 -8.479932 -22.200349 -12.215684 -9.826025 4.587243 1.967112 10.222154 2.652180 5.660801 3.495659 10.654113 -6.564046 -20.681088 5.149179 14.611433 -6.568522 -5.232154 -6.299361 14.414830 1.065998 3.806993 -7.392873 -0.612601 4.438221 -1.355338 6.709344 -17.677537 6.642508 -17.069705 0.837842 -3.726918 2.230813 2.217938 7.813813 1.701787 10.590597 17.003368 -13.512462 -1.382756 -12.449400 0.898925 -0.312889 3.869214 -3.238514 8.065137 -3.151946 4.700525 14.724055 -20.102769 2.654320 -1.960242 -3.016605 -17.893122 -1.740375 -7.872128 -2.931548 -4.570640 5.559539 -1.227916 -1.758164 -7.485935 2.577146 3.800678 -6.733574 -5.042711 8.345811 16.466917 -11.736634 3.728730 -2.459618 -3.224566 -3.478519 8.603721 12.866045 11.979633 17.451489 11.390391 2.166798 8.552112 -13.042057 -2.481289 10.769190 4.634965 -11.603398 15.374241 -11.868927 -5.688613 0.285754 11.823492 11.280316 4.202852 -14.495486 -13.332831 10.900647 4.753167 14.296983 -1.480708 0.158733 2.602780 14.780259 0.120159 -11.872617 12.728641 6.189126 -8.805950 5.708854 1.943299 -7.616218 -4.700556 12.041654 -11.806923 2.994645 -3.184268 -1.524046 6.777595 -3.647974 -1.622252 -0.160620 -11.252186 15.995075 -3.210539 2.403217 7.755889 -8.860321 -15.734377 7.979948 -2.164763 -5.278835 -11.632370 -9.507447 -11.733383 -7.634240 4.671971 1.813612 -5.174116 -8.533777 -13.243929 -0.415199 7.510087 4.559895 10.055242 -15.542448 -7.151963 6.163243 6.291076 10.234878 0.040438 -0.830297 -0.717599 0.527049 4.571649 -2.048436 14.359314 19.255780 -6.687651 9.484377 -7.708961 -6.602941 4.739179 6.457649 -17.488363 15.698207 3.453750 6.627762 -0.881662 3.186081 -5.522121 1.956234 5.886488 -2.117177 4.690314 -0.460170 0.399522 -4.891697 -3.896809 -12.474071 -5.943100 -4.614741 1.674602 -4.164659 5.279329 1.224317 -5.653738 -5.745575 -8.879304 1.614377 8.647949 0.735991 0.659267 10.604223 -1.847231 6.295843 7.003134 0.436872 4.030200 5.720378 -14.439425 -2.985395 -4.532096 3.128563 -7.380621 -15.480633 -1.906525 -8.402962 -6.627694 6.577138 -13.802048 2.714068 -9.808430 -3.104930 -13.509082 -2.437576 4.362521 17.460904 6.584559 -8.084003 4.599831 -6.206640 9.398577 0.324495 -0.376041 4.013956 7.863605 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -2.553692 2.199941 1.270590 -1.860785 4.834851 -0.324201 0.146279 1.650815 -1.321710 3.627225 -2.438208 -0.868333 -1.208087 -3.933350 0.088955 -2.191675 -0.911520 1.521105 -0.537051 1.732092 2.027286 -1.773292 0.348039 -0.783418 -1.374842 -2.388900 -0.909005 0.959829 3.341444 -2.228073 0.362050 -0.218297 3.929144 -0.691540 3.814951 2.846019 1.566316 3.466045 0.044896 -0.472245 -1.035842 2.294553 -2.369648 -3.357178 0.693505 -1.555606 -2.321296 -1.318213 1.686514 -1.233169 0.628401 3.153919 -0.779549 -0.189074 -2.230079 2.741629 1.346083 0.919183 4.589783 0.612787 -1.300099 -0.263084 -4.584301 2.745201 -1.776661 1.899475 -1.029401 -2.690650 0.185555 -0.324856 -0.589511 -2.657262 -1.504939 3.474760 1.515253 -2.988283 0.581378 -1.929614 -4.135471 -2.514959 -3.159150 0.985390 -0.133798 2.741407 0.109270 1.037081 0.505313 2.148835 -0.878177 -5.160682 0.380725 4.061836 -1.992999 -0.117570 -1.679858 2.489785 -0.261342 0.799449 -2.148286 -0.336583 1.194787 0.297861 1.736728 -3.465660 0.843172 -4.360586 1.303215 -0.137975 0.063643 0.603355 2.570880 0.575778 2.190385 4.070194 -2.806733 0.401569 -4.115877 0.453376 -0.734545 1.281470 -0.754295 2.053453 -0.307495 0.660094 3.529438 -5.264050 1.846051 -0.244531 -1.135910 -4.409038 0.381082 -1.908028 -1.460127 -1.148873 1.983407 0.008617 -0.847387 -1.661132 0.612463 0.513407 -2.375255 -1.786408 1.290248 3.164216 -2.992641 0.664487 -1.010563 -1.452589 -0.892435 2.072622 2.920398 2.737712 4.877840 3.244063 0.006369 1.389883 -3.676652 -0.005552 3.622839 0.562369 -3.579305 3.429450 -2.922023 -0.610315 0.888826 2.428645 2.692459 2.250537 -3.039767 -2.558324 2.292325 0.604827 3.896089 0.597082 0.883612 -0.863876 3.323113 -0.287637 -2.560238 5.118320 1.744242 -3.702239 1.734029 1.129630 -1.799241 -1.489731 2.458751 -2.680578 0.432066 -1.375074 0.044077 1.754004 -1.980636 -1.488278 0.188578 -3.410977 4.505410 -0.719145 0.179262 1.722723 -3.457111 -3.402494 3.528786 0.133757 -1.623845 -2.727704 -2.529276 -2.588229 -2.871890 1.473798 1.049484 -1.313464 -2.613031 -3.347920 0.291180 2.915688 0.380500 2.164918 -3.080789 -1.923575 1.626135 0.974007 2.990350 -1.363073 -0.729083 -0.606936 0.025090 1.849530 -0.334932 2.778350 5.749770 -2.291352 2.970267 0.106061 -1.906436 0.647545 2.714615 -4.103896 4.188918 0.139596 2.190927 -0.552299 1.443691 -1.779444 0.380244 1.211051 -0.181406 0.872770 0.702590 -0.586993 -1.117817 -0.732269 -3.724146 -1.372173 -0.169776 0.920100 -0.095172 1.113205 0.071166 -1.670229 -1.291499 -1.914018 0.140162 2.866515 -0.152142 -1.690441 1.892980 -0.312775 0.098216 0.773176 0.549958 0.872581 2.489858 -3.847824 -0.120398 -0.684913 -0.009154 -2.931859 -3.365630 -0.646092 -2.444044 -1.509803 1.812987 -3.476909 0.169094 -2.462344 0.181675 -3.474033 -0.914866 0.357116 4.445826 2.408731 -1.368261 1.963411 -1.023017 2.984466 0.472321 -0.617467 1.012110 2.762456 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/karatsuba.cpp__main = -59.236667 0.515450 -37.850138 -75.306037 150.411032 -25.095206 -26.383618 79.465599 19.732280 82.362398 -43.760412 -19.571770 -21.382468 -111.212705 10.279996 -8.615887 5.629746 50.648173 -42.249770 42.924323 45.914869 -16.416760 42.156322 -9.965637 -41.521474 -43.875256 -14.181792 49.744911 29.664033 -42.005161 4.771817 4.994281 107.347907 -16.118516 80.423768 46.045703 63.072541 86.860972 22.180215 -22.030379 24.044783 27.643608 -36.422683 -86.406521 32.014502 -28.988737 -107.395434 -44.282578 53.478826 -79.073930 23.729362 91.941435 -2.022084 -25.360496 -62.361644 52.355947 30.946010 -19.141162 97.662893 23.447646 -68.501835 -35.084830 -79.917334 56.617987 -55.369817 35.904401 -20.844644 -74.649942 -38.145644 60.253214 4.062940 -69.353886 -58.903009 36.467227 59.119421 -63.804605 38.287955 -29.123588 48.796305 -71.490775 -50.773300 41.114671 -29.194294 62.524396 3.062521 46.763540 15.865798 25.413927 -23.318670 -104.692642 22.597073 71.508615 -56.706831 -0.136715 -53.687969 52.336233 -18.640867 -26.393718 -72.487406 -45.955033 23.736320 -12.777482 45.962900 -20.609788 27.947153 -68.413023 24.236819 25.221639 34.650478 38.977332 39.374354 6.441935 28.133496 69.527291 -46.441283 28.989593 -112.354997 21.250387 -30.920494 33.028705 -46.989048 33.970463 72.707242 41.511146 58.892506 -117.286111 83.085671 14.496304 -31.082792 -68.248244 25.506738 0.298204 -23.074368 -11.537041 67.678283 -38.444191 -13.585182 -8.965251 44.637827 12.112548 -66.863323 -10.043883 -4.278059 43.437188 -68.091523 38.641851 -12.420062 -46.246296 7.104428 35.971068 66.502177 43.636907 136.544234 59.528293 -30.692929 45.738255 -93.592355 34.920813 111.960893 14.112441 -78.300664 91.339204 -72.331164 -6.022191 3.690651 71.016033 58.441217 30.455391 -34.939595 -20.278407 39.298772 31.279606 103.540879 -14.421063 30.350966 -91.902240 10.301308 -10.420151 34.645590 139.680208 44.699465 -102.560120 24.033884 72.227203 -39.793926 -33.798777 39.155224 -55.277588 -27.008109 -33.863936 51.620585 62.699433 -62.433655 -61.529158 5.120688 -72.641890 65.968789 -29.766019 -53.198563 33.161745 -94.004120 -0.416597 110.218823 8.928003 -23.567192 -32.059474 -86.208987 1.222029 -101.950117 25.728522 43.916430 -14.481278 -12.818443 -55.128355 -28.850874 83.937610 10.184843 34.158991 -128.841059 13.210992 60.623410 3.010796 39.304684 -45.371627 -5.990784 13.112177 -9.945015 16.086322 -35.978890 14.879612 73.558734 -77.446972 56.417774 -1.945013 -22.067488 31.192016 50.561122 -78.022144 136.633271 26.265971 94.129070 -2.453342 41.529921 -28.496619 34.382556 -9.267317 -20.552632 -12.567319 30.071945 -61.114941 -47.647789 35.811290 -21.109384 -86.626993 2.425268 71.681730 -12.987696 32.542602 -24.969826 -16.418802 -34.490538 -32.008505 49.737888 56.155477 -29.469965 -47.860306 41.618811 68.752601 -19.943910 -0.358884 24.377812 48.790675 96.606963 -105.617379 42.618605 -1.030725 37.239977 -80.029050 -70.393595 30.226523 -34.729081 6.741476 26.168229 -107.867496 -55.482138 -55.696056 55.209593 -41.008815 23.219591 17.353024 109.200260 57.291972 -44.003337 61.667258 -18.423064 23.538985 -3.654652 -8.417700 46.540346 57.048046 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -21.754296 -0.306004 -12.837354 -26.851639 52.485441 -10.789920 -10.662598 29.070753 9.682599 31.255791 -12.251181 -11.644882 -8.248930 -40.923456 3.843208 -6.681715 1.304354 18.127515 -14.219840 18.608030 16.809316 -6.626573 13.419506 -0.050318 -16.829378 -13.714393 -6.445151 20.033725 13.088242 -22.412412 4.092356 3.590327 42.569897 -5.725788 36.294168 19.475438 23.657885 30.845296 9.230127 -8.718629 5.025963 9.878801 -15.691763 -28.288663 9.761187 -7.846321 -40.263184 -14.230129 19.188739 -22.399624 8.349326 36.794443 -2.610030 -4.945818 -22.289088 19.944501 4.524952 -5.450483 37.417016 8.217225 -24.795574 -9.816295 -32.212288 21.752201 -19.006115 11.746465 -12.264536 -25.581728 -10.383012 18.224999 0.312510 -29.138970 -19.101126 19.538026 23.204027 -25.138300 14.765705 -11.489130 15.855184 -28.655280 -21.963862 17.679019 -7.141988 22.967370 2.069877 19.368453 7.032363 13.487070 -13.897558 -43.777735 14.616645 27.319912 -25.374908 -3.153672 -18.603811 20.993646 -9.269285 -5.822238 -28.391774 -17.664736 10.908700 -9.002981 17.918239 -7.446521 16.022663 -25.568805 5.918132 6.040487 13.732456 14.442687 19.255279 3.291933 17.167773 30.695128 -17.829916 7.899138 -40.582654 8.938040 -13.033831 12.122893 -15.841076 15.389099 25.941193 17.476009 24.362416 -46.619170 25.365237 4.126401 -10.947890 -28.476565 6.591812 -4.129410 -8.345043 -7.856065 26.615261 -13.882430 -5.009762 -6.305823 15.931294 6.974547 -21.473444 -3.944933 1.761939 15.025608 -24.217911 14.549825 -4.082964 -17.351979 0.858079 16.128620 28.586481 19.837239 53.763042 22.608294 -11.867821 14.591196 -35.622499 8.679001 37.768209 1.158757 -30.412055 39.592540 -30.667286 -5.898362 -1.349687 31.990353 24.861572 8.097633 -14.646858 -9.473665 17.996235 16.307588 40.382860 -12.343466 8.465919 -26.758662 4.409371 -1.879161 6.027362 53.802158 13.377722 -36.387143 5.832466 23.709396 -11.884713 -14.557438 19.883803 -25.533476 -8.711084 -11.795970 18.392648 23.468540 -21.866309 -16.795227 7.128035 -28.390051 24.727110 -12.548812 -20.999566 13.889681 -37.654983 -4.845456 42.443510 2.006137 -8.641821 -14.137898 -34.329265 6.202027 -35.357427 10.255098 15.981348 -0.956055 -4.448973 -20.883185 -9.217644 30.928113 7.546504 17.729496 -47.428919 2.471486 22.843339 -1.569709 16.144713 -13.042236 -1.630300 6.038318 -2.955339 5.016750 -13.164119 8.045516 29.835528 -28.515192 20.268624 -3.127373 -11.765468 11.457590 15.782268 -34.656159 53.772876 11.580181 31.148658 -0.898220 13.765662 -12.821092 11.130110 -0.731379 -5.527899 -4.505745 7.269303 -17.068790 -17.650127 7.538914 -8.322252 -31.749054 -4.465029 24.790978 -11.946639 14.799803 -9.534642 -6.367520 -14.200599 -13.393989 21.100334 21.515471 -8.180304 -12.367649 21.265678 22.875017 -2.123487 7.148368 7.759603 17.616277 36.020168 -41.715867 10.522999 -1.021946 16.954380 -26.415357 -28.120285 9.057288 -14.407072 6.633687 6.442972 -38.314014 -18.373025 -22.493600 16.810390 -13.054463 10.453022 10.139621 44.480989 25.507196 -23.389412 21.119928 -9.380151 9.590369 0.663852 -4.129291 18.160928 21.127792 +PE-benchmarks/kmp-algorithm.cpp__main = -1.633300 0.895106 0.029261 -1.210392 3.752754 -0.948767 0.085052 1.734731 -0.328042 2.460681 -1.402870 -0.797548 -0.926181 -2.838236 0.234496 -0.759617 -0.153335 1.760214 -0.577047 0.835694 1.334673 -0.745327 0.389526 -0.485423 -0.740916 -1.716018 -0.590133 0.744237 1.509904 -1.273606 -0.215375 0.251769 3.084640 -0.302632 2.291950 1.789382 0.966545 2.377792 0.520041 -0.169029 -0.138010 1.366641 -1.265901 -2.268750 0.694898 -0.892426 -1.807070 -1.244105 1.190018 -1.423379 1.127606 2.001767 -0.354535 -0.210206 -1.419022 1.547753 0.979358 0.527083 2.704574 0.613826 -1.031915 -0.160378 -2.683234 2.253770 -1.367240 1.078321 -0.407864 -2.207707 -0.297086 0.381600 0.573922 -1.796139 -1.267630 1.748692 1.046929 -1.752928 0.569554 -0.833436 -1.500118 -1.885401 -2.406401 0.611782 -0.766207 1.843757 -0.080403 0.552724 -0.303428 0.908366 -0.277604 -2.974130 0.061945 2.600724 -1.109586 0.208581 -1.563102 1.092756 0.168451 0.071473 -1.310480 -1.006053 0.629800 -0.120662 1.153415 -1.126182 0.506790 -2.035553 0.786944 0.370783 0.367594 0.829059 1.600710 0.336492 0.977892 2.146043 -1.578476 0.201270 -2.807191 0.784282 -0.498109 0.654540 -0.543552 1.088202 0.540216 0.414431 2.007081 -3.506243 1.387421 0.007166 -0.742117 -2.259550 0.443916 -0.715928 -0.935664 -0.788312 1.573891 -0.155630 -0.562169 -0.682242 0.578601 0.278168 -1.648341 -0.772672 0.190851 2.072225 -2.084574 0.512465 -0.717048 -1.173538 -0.355191 1.166949 1.648921 1.727757 2.890410 2.054304 -0.296901 0.346269 -2.894160 0.362395 2.608472 0.319443 -2.174597 2.179697 -1.443539 -0.170565 0.672122 1.932783 1.515199 0.869303 -1.148996 -1.044373 0.668861 0.384477 2.600939 0.528073 0.530823 -1.201870 1.227330 -0.016695 -1.067828 3.502943 1.486907 -2.212138 0.662408 1.156704 -1.327000 -1.193890 1.230626 -1.540644 -0.132997 -1.088077 0.604109 1.415773 -1.477762 -1.142945 0.285917 -2.042863 2.507137 -0.541760 -0.558528 1.089974 -2.462447 -1.486837 2.777656 0.095287 -0.681220 -1.430394 -2.151940 -1.403106 -2.178080 0.889318 0.580651 -0.633611 -1.310478 -1.982033 -0.153249 2.398072 0.171759 1.206934 -2.325397 -0.566803 1.187119 0.307532 1.624031 -1.555634 -0.485120 -0.096372 -0.040919 0.905101 -0.307643 1.018955 3.210346 -1.629846 1.333279 0.907192 -0.585451 0.457817 1.568664 -2.493097 2.700521 0.070877 1.453650 -0.152976 0.936795 -0.888547 0.275365 0.450631 0.306070 -0.035803 0.757139 -0.859247 -0.733069 0.057482 -2.192992 -1.497103 0.073407 0.974185 0.234669 0.655640 -0.475397 -1.264759 -0.565718 -1.058497 0.368875 1.778571 -0.049623 -1.124146 1.169718 0.262549 -0.424540 0.246834 0.433439 0.657507 1.821244 -2.462404 0.363319 -0.203843 0.617716 -1.853249 -2.413088 -0.109004 -1.528961 -1.176923 1.231836 -2.679966 -0.777822 -1.507256 0.645207 -2.410663 -0.130937 0.202632 2.862875 1.361597 -0.658855 1.416588 -0.439750 1.509247 0.052580 -0.490359 0.771027 1.860034 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.032473 5.278237 0.481682 -4.310465 13.728354 -3.196420 1.188181 6.277975 -5.783051 10.132923 -3.485758 -0.268812 -1.567956 -11.127881 0.583534 -3.321015 -1.848199 5.319485 0.404450 5.672410 3.362734 -5.084844 0.865802 -0.147331 -3.765991 -8.192545 -1.001209 3.472026 8.995347 -7.557623 1.146451 -0.068653 10.807013 -2.367776 8.852408 6.884874 2.257554 5.503600 3.961322 -5.959518 -2.392190 3.414964 -5.119635 -5.135841 -0.275865 -1.054605 -7.466577 -3.377155 3.517140 -2.703247 -0.728813 7.628365 -2.478876 -0.159479 -5.630983 7.747230 2.809493 -0.754535 9.862859 0.605930 -1.825398 -2.760424 -10.019194 10.404601 -3.291044 -0.114647 -3.254067 -5.508255 2.843216 0.207546 -1.553411 -5.366346 -1.488157 9.441143 5.198704 -8.075719 0.443535 -4.452278 -11.350906 -9.021701 -7.212593 3.160463 -1.535351 6.647921 1.507458 3.452341 1.034567 5.467559 -3.298903 -12.815617 2.447140 10.283436 -4.011478 -3.249390 -5.614933 7.873765 2.054568 0.825533 -4.284871 -3.910947 2.421380 -1.980387 4.374868 -9.205651 5.523692 -9.280359 -1.010313 -1.006882 2.329559 5.143086 5.913282 1.819448 5.430442 9.945982 -7.747771 -1.659360 -9.545287 2.398755 -2.106470 2.194824 -2.490528 4.268825 1.366014 3.916239 8.726041 -14.650010 2.945954 -0.491969 -0.780748 -10.730268 -0.404159 -3.256056 -1.746511 -2.923304 4.068746 -1.341856 -0.976606 -3.297104 2.015921 2.953336 -5.826684 -3.063050 3.683008 11.369732 -10.101550 2.847383 -1.496201 -2.081149 -1.649523 5.009586 8.402626 7.376921 11.004110 7.129550 0.458352 5.474546 -10.669974 -0.238371 8.219240 1.669187 -7.104240 10.534799 -7.278183 -3.541050 0.314367 8.999404 6.690016 1.110995 -8.314431 -7.106582 7.360164 2.640050 9.260300 -1.572674 -0.608388 -1.313575 7.885646 1.562655 -6.479058 11.188570 4.180570 -6.608314 4.473459 2.963396 -5.139213 -3.596026 6.730304 -8.267191 -0.160185 -2.636611 0.631322 4.828987 -2.992976 -1.881789 -0.021007 -6.599285 9.537984 -2.282374 -2.900181 4.296521 -5.843578 -7.493152 8.232647 -0.156836 -2.326617 -6.497719 -8.298436 -7.068320 -6.011266 2.587494 1.213216 -2.672424 -4.061970 -7.853157 -1.571198 7.151768 2.195298 6.196811 -12.634075 -2.278783 4.359087 4.540672 5.372408 -3.395300 -0.418653 0.324639 0.426608 1.181212 -1.537108 7.391461 12.093410 -4.830122 5.508356 -1.450336 -3.410447 3.514248 3.986803 -11.678689 10.309771 2.064262 6.448557 0.429409 1.964024 -3.253325 1.305520 2.441049 -0.700052 0.949689 0.322976 -1.560663 -3.253822 -1.031393 -7.118443 -7.159646 -2.126224 2.664549 -1.156125 3.066984 -2.092762 -3.893146 -3.054474 -5.469647 1.851978 5.175854 -0.348156 -1.112766 6.704995 1.055145 2.294217 3.893965 0.323065 3.425066 4.161221 -9.326935 0.179034 -2.230372 4.917534 -5.470644 -11.125498 0.771203 -5.584130 -4.567702 3.210141 -10.614056 -1.782352 -5.948240 -0.363135 -11.219715 -0.494101 2.942895 11.956975 3.180273 -4.332842 3.493854 -3.721037 4.660930 -0.339395 0.326234 2.607880 5.247971 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -2.726663 1.282792 0.100305 -2.331730 7.219680 -2.713813 0.886177 4.234164 -1.116331 3.265774 -2.835068 1.535678 -0.466148 -3.802509 0.875984 -0.595800 0.919646 3.591871 -1.122844 1.085972 1.870650 0.520658 0.498347 -1.244241 -1.364723 -3.886305 -0.311339 1.494556 0.794986 -1.078555 -0.446032 1.635686 5.478354 -1.171050 3.943553 3.578126 2.914856 3.525974 1.688921 -1.257208 1.965974 1.258075 -1.271405 -3.979146 0.567427 -0.717303 -4.017882 -1.866555 2.011215 -3.504350 1.685497 2.953482 -0.018250 -0.478173 -2.485673 3.230782 2.015651 -1.151425 3.812523 1.350788 -3.559659 -0.399790 -2.581356 5.596036 -2.735926 1.248472 -1.300683 -4.425948 -1.093305 2.986903 1.595111 -3.090630 -2.680031 0.991097 1.104095 -2.872345 1.212204 -0.469722 1.374924 -2.846239 -2.724805 1.583789 -1.514825 2.634694 0.157308 0.950475 -1.865964 0.533208 0.344401 -3.498495 -0.624898 4.144668 -2.510569 0.639660 -3.599967 1.173550 1.829931 -1.346394 -0.901790 -3.625384 1.103970 -1.199896 1.697009 -0.864325 1.111013 -1.780409 -0.056908 1.195115 1.023235 3.670542 -1.126706 2.104832 1.624720 1.701078 -0.320462 0.674282 -5.711081 2.525754 -1.907073 0.064937 -1.160431 0.821307 2.638557 1.974627 2.730753 -4.407624 3.428959 0.434835 -0.707493 -2.278274 1.272509 0.315489 -1.385467 -1.446092 2.926513 -0.207191 -0.493610 -0.112242 1.812701 0.308798 -2.102113 -2.375749 -0.957946 2.178259 -3.891489 1.186159 -0.948899 -1.274036 -0.187117 1.475874 2.051305 2.463368 4.608089 3.209471 -0.765421 1.678571 -5.193489 0.847682 4.302996 1.538967 -2.877056 3.488324 -2.643792 -0.967181 1.320766 2.979057 1.029187 1.595526 -2.177819 -2.001885 0.453061 0.001333 4.154307 1.337105 0.252031 -3.824827 0.962230 -1.424779 -0.289775 5.849408 2.220041 -4.907508 1.418494 3.701609 -1.365097 -2.723053 1.528763 -3.444395 -2.204153 -1.741260 1.613869 2.630707 -3.107002 -1.980810 1.038160 -2.855072 2.668466 -0.659252 -2.857397 0.657551 -3.400285 -1.185872 5.437271 0.912970 -0.054334 -1.389484 -3.487353 -0.820509 -4.808559 0.570742 1.451099 -0.686875 -1.108982 -2.824073 -1.184281 3.585382 -0.773039 1.650993 -4.971699 -0.090428 2.646418 1.054924 0.511157 -4.241139 -0.712136 -0.083423 -0.115796 0.187203 -1.867814 1.334802 3.888950 -2.785570 2.140036 2.038205 -2.345903 0.934699 2.807721 -3.730824 4.660803 0.468230 3.038806 1.493364 1.405896 -2.406707 0.063355 -0.739999 -0.035481 -1.954328 1.659919 -3.223276 -1.240309 1.255333 -1.668375 -3.169208 0.737681 3.144832 0.256187 0.388752 -0.932940 -1.416033 -1.130574 -2.842890 1.311063 2.365653 -1.675411 -2.762227 2.391536 2.563500 -3.046859 -1.246049 0.643535 2.025359 3.331712 -4.128167 2.288981 0.393935 1.685327 -4.830286 -4.251412 1.585598 -2.680113 -2.192797 0.162776 -4.828607 -3.413291 -1.941710 2.357885 -4.150961 -1.294882 1.406161 4.484666 0.730334 -0.521135 2.622198 -0.988141 1.220472 -0.199996 0.406154 0.219931 2.878310 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.245584 0.958465 -0.531190 -1.144238 3.107096 -1.009915 0.471957 1.679234 -1.411533 1.645081 -1.189004 1.081908 -0.047995 -2.275953 0.408381 0.217930 0.360665 1.443084 -0.026618 1.076529 0.817899 -0.783049 0.269782 -0.545656 -0.725456 -1.921620 0.251248 0.772826 1.105789 -0.715094 -0.034459 0.524275 2.316387 -0.517431 1.635829 1.593316 0.838166 1.529492 1.336760 -1.945027 0.456218 0.639949 -0.645177 -1.803371 0.215628 -0.305492 -1.677763 -0.950738 0.893155 -1.311550 0.069774 1.445713 -0.098876 -0.340100 -1.764532 1.307194 1.513880 -0.847647 1.972992 0.457855 -0.924315 -0.814794 -0.988089 2.293293 -1.191225 -0.424097 -0.324512 -1.534235 0.275497 1.248452 0.082803 -1.117578 -0.915918 0.639460 0.678049 -1.600758 0.452625 -0.406519 -0.349541 -1.899258 -1.013660 0.615364 -0.828998 1.602699 0.094800 0.566957 -0.500884 0.383274 0.069128 -1.786980 -0.199193 1.631694 -0.851282 -0.147658 -1.028257 1.815634 1.080279 -0.656746 -0.783070 -1.319742 0.455222 -0.549422 0.847308 -0.979280 0.806269 -1.049931 -0.340390 -0.084127 0.514550 2.050766 0.137625 0.954883 0.724201 0.967451 -0.649696 -0.168572 -2.512307 0.824052 -0.527686 0.211431 -0.605784 0.427655 1.252414 0.666436 1.388141 -2.328733 1.513664 0.339644 0.268435 -1.490786 0.512153 0.162035 -0.477657 -0.611089 1.213185 -0.312223 -0.103471 -0.096983 0.771388 0.484488 -1.408836 -0.828724 -0.102175 2.185257 -2.342090 0.676502 -0.388676 -0.543945 0.011315 0.454286 1.030349 1.134610 2.146546 1.535842 -0.335091 1.890212 -2.258787 0.499660 2.335857 1.182033 -1.337258 1.662783 -1.324273 -0.649804 0.510520 1.301760 0.951673 0.325303 -1.568066 -1.304741 1.211667 0.023622 1.936787 -0.029300 0.182988 -1.648303 1.319359 0.259160 -0.118468 2.571161 0.493856 -2.110265 1.436377 1.599329 -1.068676 -0.602418 0.731592 -1.521839 -0.806760 -0.745354 0.678214 1.217093 -1.304596 -0.935784 -0.351159 -1.284208 1.364250 -0.374120 -1.110184 0.377236 -1.132015 -0.088065 2.145546 0.424414 -0.132622 -0.899978 -1.542843 -1.054319 -2.146031 0.270287 0.354420 -0.716681 -0.472469 -1.490458 -0.908809 1.610548 -0.234114 0.498274 -3.198274 0.220654 1.227002 1.327706 0.049356 -1.575729 -0.229292 0.519084 0.195329 -0.037664 -0.792589 1.267861 1.730846 -1.387950 0.782706 0.215716 -0.323118 1.214803 1.195332 -1.890129 2.224680 0.262207 2.164448 0.575326 0.584423 -0.953304 0.160892 -0.235308 -0.212198 -0.677289 0.446205 -1.426474 -0.669559 0.967682 -0.450368 -1.778990 0.242409 1.397560 0.418438 0.291094 -0.481578 -0.340325 -0.538894 -1.253211 0.556434 1.046767 -0.706671 -1.066724 1.090027 1.261916 -0.502563 -0.201992 0.209238 1.120130 1.293042 -1.945123 1.068479 -0.212899 0.906925 -1.739454 -2.301576 1.166296 -0.866614 -0.967301 0.757161 -2.631946 -1.068443 -0.968240 0.962732 -2.423391 -0.025442 0.387722 2.082909 -0.085213 -0.294445 1.133323 -0.614093 0.564236 -0.339583 0.552500 0.044859 1.291143 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -1.438743 1.280445 0.447337 -1.536822 3.430538 -0.885902 0.472499 1.496248 -0.862837 1.877189 -1.653221 0.722911 -0.254459 -2.285132 0.324949 -0.957952 -0.017999 1.517794 -0.336127 1.161669 0.982703 -0.627755 0.460381 -0.861189 -0.801180 -2.585855 -0.016191 0.737858 0.929473 -0.172502 0.468546 0.262941 2.391539 -0.591751 1.622740 1.708480 0.906109 1.882053 0.735782 -0.934751 0.650792 0.771772 -0.772356 -2.119966 0.250041 -0.479857 -2.038008 -1.215098 1.010553 -2.087053 -0.219467 1.623151 -0.074100 -0.688985 -1.641108 1.743857 1.605358 -0.345125 2.073987 0.493033 -1.026927 -0.591595 -1.641802 2.051927 -1.400214 0.284659 -0.467479 -1.860407 -0.126671 1.383904 -0.213362 -0.653786 -0.972871 0.651339 0.992032 -1.683415 0.406087 -0.702711 -1.194260 -1.272414 -0.844152 0.719088 -0.485584 1.575785 0.153263 0.677394 -0.110594 0.563993 0.187975 -1.897802 -0.435719 2.206999 -0.747587 -0.399192 -1.149603 1.616502 1.310835 -0.805306 -0.587660 -1.132386 0.526956 -0.335508 0.955889 -1.177418 0.009916 -1.695251 0.063078 0.636349 0.327789 1.851340 -0.586935 1.041643 0.540286 1.053645 -1.129451 0.657764 -2.833513 0.742285 -0.882100 0.318104 -0.667540 0.463329 0.961846 1.118523 1.392654 -2.357286 2.043018 0.344027 -0.142226 -1.465810 0.676618 0.188678 -0.485811 -0.530081 1.156319 -0.194476 -0.194534 -0.040389 0.758719 0.211166 -0.836021 -0.961957 -0.035569 1.896488 -2.023370 0.782921 -0.421534 -0.535092 -0.011532 0.584592 1.072538 1.000255 2.485436 1.678908 -0.196312 1.438719 -2.216241 0.484509 2.551260 0.829077 -1.433256 1.727034 -1.130731 -0.611170 0.425903 1.194821 0.828466 1.294275 -1.836383 -1.687166 0.344676 -0.337100 2.064131 0.870519 0.073413 -2.179613 1.555332 -0.591403 -0.039971 2.615329 1.387580 -2.222429 0.924706 1.855748 -2.062910 -1.313879 0.758376 -1.298412 -0.519181 -0.734467 0.583695 1.163729 -1.282978 -1.538035 -0.397894 -1.556323 1.594923 -0.341862 -0.855590 0.290057 -1.187539 -1.078349 2.260073 0.436305 -0.449457 -0.997233 -1.549909 -1.325315 -2.413047 0.417855 0.657630 -0.882621 -0.814471 -1.529994 -0.617834 1.436004 -0.514207 0.614610 -2.738862 -0.242062 1.242668 1.298148 0.468948 -1.487749 -0.272777 0.023411 -0.056608 0.186041 -0.528957 1.265000 2.249326 -1.368889 1.295971 0.062143 -1.294117 0.944090 1.784330 -1.892579 2.452340 0.146100 1.942601 0.507799 0.758451 -0.904038 0.290461 -0.036655 -1.071544 -0.427346 0.766285 -1.615335 -0.793046 0.853465 -0.886278 -1.513605 0.522622 1.529165 0.418363 0.262695 0.099019 -0.856750 -0.544677 -1.194601 0.351546 1.234668 -0.540321 -1.431363 0.944151 1.438764 -0.899201 -1.186504 0.303634 1.069276 1.439870 -2.146543 1.424412 -0.171273 0.463635 -2.311297 -2.021998 1.100830 -1.413898 -1.385963 0.496746 -2.509252 -1.036477 -1.118166 1.117393 -2.162983 -0.838599 0.583863 2.148895 0.278174 -0.268543 1.299420 -0.710524 0.870555 -0.109566 0.231707 0.196235 1.516565 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -2.783563 0.394621 0.459399 -2.041452 5.732411 -2.169061 0.138914 2.679160 1.023858 3.232870 -2.491067 -0.744226 -1.510454 -3.535174 0.553249 -1.320664 0.698091 3.168950 -1.425091 0.652441 2.288756 0.326248 0.723526 -1.131201 -0.897591 -3.067298 -1.093679 1.209664 0.780855 -1.400915 -0.333210 1.155484 5.203959 -0.544578 3.864231 3.245995 2.757907 4.109143 0.331997 0.941471 1.034962 2.115499 -1.616671 -4.030230 1.407996 -1.162939 -3.089017 -2.020173 2.198411 -2.821380 2.440843 3.129412 -0.364797 -0.361631 -2.095281 2.376153 1.567612 0.356861 3.945697 1.241280 -2.724308 0.791233 -3.369264 3.855308 -2.906037 2.232246 -0.925427 -4.235473 -1.541889 1.508714 1.887960 -3.070535 -2.893440 1.549749 1.231175 -2.516207 1.218178 -0.713812 1.159458 -2.474732 -3.690847 1.044640 -1.061846 2.547749 -0.204421 0.781591 -1.037090 0.817950 0.268311 -3.753366 -0.225254 3.530354 -2.398492 1.167726 -2.620957 0.377447 0.470020 -0.624396 -1.396824 -2.446848 0.855955 -0.921334 1.901030 0.589963 0.198961 -1.751018 1.075418 0.986037 0.669018 1.424908 0.608598 1.060577 1.478303 2.177740 -1.020488 0.957634 -4.698720 2.053670 -1.236197 0.530514 -0.638651 1.504903 1.577736 0.975526 2.834514 -4.234160 2.669619 0.068428 -1.418926 -2.214747 1.127414 -0.523537 -1.617993 -1.501375 3.086891 -0.167721 -0.907639 -0.663568 1.428476 0.058990 -1.699252 -1.445911 -0.854358 1.018346 -2.256231 0.896454 -1.302134 -2.194499 -0.213412 1.443184 1.740749 2.643222 4.343234 3.476116 -1.019931 0.165200 -4.537329 0.599444 3.726303 0.512799 -3.160594 3.021293 -2.096296 -0.165415 1.715895 2.796047 1.672099 1.458988 -0.877487 -0.869053 -0.183990 0.271627 3.976152 1.371041 0.776390 -3.130832 0.318181 -0.755359 -0.702513 5.897089 2.184616 -4.475164 0.911012 2.780630 -1.519818 -2.772468 1.300004 -2.279701 -1.187071 -2.104035 1.724844 2.374952 -2.959726 -1.821641 1.329803 -3.213426 2.972510 -0.768441 -1.544662 1.718618 -4.359994 -2.331443 5.052555 0.402457 -0.539965 -1.843966 -3.358440 -0.041865 -4.339502 1.260533 0.992642 -0.568845 -1.472843 -2.845861 -0.103384 3.767360 -0.091107 1.854718 -3.070642 -0.702252 2.158537 -0.168765 1.560152 -3.322118 -1.027737 -0.175732 -0.182458 1.039737 -0.961625 0.352539 4.289140 -2.990898 1.572453 2.140399 -2.187735 0.382895 2.626385 -3.635559 4.399061 0.034109 1.773047 0.362849 1.558369 -2.125800 0.197470 0.128225 0.684145 -1.114115 1.522111 -2.307331 -1.159218 0.655462 -2.766145 -2.111358 0.484267 2.269013 0.267059 0.828164 -0.518924 -1.923622 -0.739471 -1.623838 0.972769 2.876719 -0.385147 -2.513151 1.894298 1.366466 -2.372160 -1.235751 0.777541 1.094060 3.505243 -4.088937 1.405413 0.237970 0.584086 -3.568452 -3.495095 0.538302 -2.875306 -1.571976 1.126045 -3.936037 -2.146062 -2.238991 1.823865 -2.557689 -0.639642 0.487116 4.111198 2.255250 -0.642807 2.719307 -0.580044 1.915454 -0.003776 -0.842910 0.799374 3.149132 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -4.152173 2.755524 1.022964 -3.737319 8.567414 -2.150113 0.625309 2.638301 -1.583067 6.166475 -3.226622 -0.584382 -1.728339 -7.506782 0.699143 -2.988301 -0.556959 3.970258 -0.253133 3.845519 3.203566 -3.282960 1.093193 -1.079723 -2.231293 -6.212902 -1.074113 2.469378 4.573556 -3.521046 1.661830 0.354902 7.360913 -1.228509 5.862627 5.151145 2.359181 5.521693 1.250526 -2.191406 -0.678277 3.186287 -3.357033 -5.355646 1.370030 -1.215579 -5.268414 -3.344071 3.064075 -3.205748 -0.244952 5.705529 -1.366755 -0.867890 -4.674058 4.390622 3.604074 -0.160830 6.834304 1.056720 -1.330338 -0.454985 -6.337236 4.756524 -3.638521 0.517664 -1.617238 -4.836524 0.695340 1.048697 -0.286273 -3.292969 -2.711291 4.640779 3.522606 -5.276508 0.974459 -2.818077 -5.041551 -5.580078 -4.814811 1.803278 -0.981951 5.185929 0.393429 2.162809 1.131714 2.848120 -1.085567 -7.602422 0.659680 5.931191 -2.744865 -1.222507 -2.476496 5.238150 1.623298 -0.393589 -3.281945 -2.417845 1.514125 -1.489359 3.417332 -2.323004 1.058843 -5.108719 0.005947 -0.404767 1.232050 3.073714 2.693098 1.406972 2.848269 5.294743 -5.139372 0.549447 -6.747674 1.920014 -1.465089 1.873778 -1.510954 2.990226 1.484676 2.057565 5.417560 -8.245750 3.383110 -0.000648 -0.717968 -5.842111 0.832801 -1.515022 -1.674903 -2.215035 3.743070 -0.922662 -1.063338 -1.662461 1.698134 1.565136 -2.701112 -1.585649 1.074668 5.821580 -5.437701 2.100493 -1.622029 -2.792687 -0.473816 2.325925 4.375637 4.773522 7.676240 5.768144 -0.642334 3.717939 -6.696854 0.493972 6.663218 1.622378 -4.886370 5.989625 -3.989780 -1.613274 1.450165 4.841053 4.476152 1.547658 -4.576618 -3.905375 3.083511 0.946508 6.508451 0.416422 0.336840 -3.844648 4.340804 1.038775 -2.477179 8.476073 2.702398 -5.840150 3.375230 3.254463 -4.953178 -3.204518 3.272083 -4.056800 -0.506347 -2.485243 1.686031 3.496343 -3.116648 -2.743414 -0.432817 -5.104384 5.589215 -1.678256 -1.249834 3.207183 -4.643847 -5.524369 6.236190 0.198969 -1.814415 -4.502112 -5.099879 -2.585406 -5.639939 2.260720 0.756431 -2.229668 -2.837695 -5.334807 -0.764648 5.320024 0.723835 3.157142 -7.404363 -1.388363 3.252914 2.776456 2.987848 -3.180488 -0.819734 0.662288 0.286266 0.923573 -0.634120 3.573355 7.887069 -4.561790 2.573905 -0.490195 -3.124333 2.799231 3.938378 -7.116026 7.647766 0.735116 4.970748 -0.012177 1.900035 -2.613107 0.932137 1.573637 -0.811296 0.091969 0.968813 -2.283645 -2.350201 1.117888 -4.294581 -4.114295 -0.285724 2.909351 0.156582 2.075028 -0.150489 -2.793676 -1.519677 -2.366569 1.169095 4.361627 0.045675 -2.332657 3.737759 1.867520 0.379914 -0.778684 0.662618 2.391998 4.111533 -6.911874 1.730833 -1.378677 1.432241 -4.217492 -6.913923 1.864066 -4.504425 -2.721538 3.121075 -6.987904 -0.800289 -4.312507 1.322582 -5.610494 -0.431470 1.054802 7.156974 2.680124 -2.160712 3.529959 -2.163088 3.551674 -0.577224 -0.414524 1.637297 4.691610 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -1.823687 0.468298 0.180618 -1.351038 3.727789 -0.901581 -0.025003 1.587323 0.159955 2.183492 -1.569928 -0.900247 -0.984674 -2.607834 0.397967 -0.675497 0.088581 1.804343 -0.812936 0.775100 1.569491 -0.409900 0.398272 -0.687867 -0.626177 -1.496862 -0.782069 0.797863 1.179914 -0.964772 -0.454966 0.450940 3.129742 -0.356525 2.546870 2.027228 1.449565 2.603327 0.066587 -0.158796 0.165469 1.608605 -1.332087 -2.644942 0.949972 -1.052123 -1.988275 -1.437594 1.404515 -1.484558 1.233777 2.158167 -0.315630 -0.262972 -1.421701 1.449705 1.076236 0.545767 2.742478 0.838854 -1.253096 0.413156 -2.533935 1.984770 -1.632221 1.496412 -0.624898 -2.612495 -0.749161 0.575256 0.992196 -1.919536 -1.701140 1.387314 0.994190 -1.644199 0.902225 -0.736852 0.072172 -1.948577 -2.524750 0.616533 -0.977503 1.978145 -0.276071 0.484206 -0.396740 0.719891 -0.049118 -2.737775 -0.115504 2.334813 -1.339409 0.456994 -1.440075 0.709386 0.219753 -0.025790 -1.362167 -1.140345 0.696739 -0.245927 1.260488 -0.017015 0.654569 -1.417881 0.736179 0.534147 0.551634 0.916975 1.037877 0.453386 1.095337 1.793112 -1.043826 0.461950 -2.694054 0.922519 -0.914682 0.716960 -0.474631 1.257760 1.058531 0.305503 1.939975 -2.978808 1.573632 0.106660 -0.842171 -1.715470 0.767928 -0.701683 -1.193285 -0.934752 1.858348 -0.085917 -0.723597 -0.621647 0.821961 0.164612 -1.410864 -0.507139 -0.259758 1.076068 -1.711387 0.491314 -0.863174 -1.478196 -0.144944 1.088803 1.410789 1.821644 2.987098 2.349870 -0.661151 -0.073148 -2.837538 0.557653 2.756718 -0.116631 -2.208789 1.960443 -1.360722 -0.055350 1.008820 1.784991 1.413103 1.120314 -0.693044 -0.696894 -0.076666 0.302120 2.730171 0.870708 0.683478 -1.704471 0.670620 -0.372757 -0.782859 3.634280 1.288657 -2.611917 0.573671 1.449360 -1.289721 -1.467018 0.939160 -1.423985 -0.363570 -1.373254 0.982592 1.542996 -1.840269 -1.327681 0.544149 -2.215117 2.258578 -0.570846 -0.695575 1.051830 -2.663705 -1.312178 3.107549 0.255409 -0.705137 -1.437615 -2.011358 -0.520861 -2.541031 1.017516 0.509883 -0.474455 -1.335784 -1.984295 -0.112128 2.488612 0.026696 1.057595 -2.068973 -0.412125 1.267594 0.068961 1.503406 -1.806757 -0.661502 -0.140741 -0.232568 0.872109 -0.507179 0.544583 3.107806 -1.989320 0.917836 1.220094 -1.039248 0.360001 1.801804 -2.378732 2.924086 0.113398 1.333984 -0.142160 1.096810 -1.130089 0.193413 0.308524 0.351834 -0.272363 1.028845 -1.090317 -0.732495 0.344536 -1.955470 -1.372865 0.262274 1.225128 0.251482 0.674621 -0.383652 -1.434304 -0.447810 -0.885957 0.429511 2.037361 -0.236692 -1.493771 1.121995 0.513217 -0.893375 -0.469118 0.529348 0.605951 2.286663 -2.678638 0.699411 -0.048850 0.457298 -2.047610 -2.093959 -0.020362 -1.618983 -0.827644 1.417698 -2.420490 -0.907860 -1.626986 0.931242 -1.658859 -0.363142 0.205684 2.720739 1.607031 -0.638728 1.652061 -0.384177 1.610362 0.083495 -0.701019 0.607673 1.974514 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -1.221162 1.203091 0.890893 -1.379731 3.222727 -0.610743 0.396369 1.262549 -0.040554 1.767944 -1.503932 -0.181028 0.004715 -1.870860 0.338242 -1.195267 -0.455928 1.306639 -0.395132 0.807763 0.775519 -0.185892 0.035322 -0.551148 -0.811920 -1.799402 -0.737373 0.779870 0.843457 -0.769590 0.448701 0.290381 2.313004 -0.593685 2.118148 1.741335 1.084487 1.510939 0.186923 0.190172 0.643062 0.631594 -0.944476 -1.583496 0.052645 -0.435230 -1.978694 -1.047075 0.670282 -1.423505 0.528670 1.509457 -0.063134 -0.236015 -0.984767 1.623136 0.648107 -0.059416 1.825581 0.643681 -1.262151 0.514434 -2.095353 2.094050 -1.016533 1.015972 -0.805370 -2.056701 -0.327933 0.941248 0.530424 -1.323742 -1.044545 1.081015 0.826496 -1.395130 0.503887 -0.853643 -0.745163 -1.341479 -0.968935 1.046233 -0.177401 1.368590 0.154503 0.441955 -0.328922 0.627043 -0.328212 -2.040131 -0.401165 2.321029 -1.066348 -0.255005 -1.431233 0.737252 0.837034 -0.091852 -0.487438 -1.250809 0.713470 -0.158396 0.703768 -0.451869 0.401702 -1.465246 -0.059791 0.790237 0.070331 1.231219 -0.238370 0.909791 1.036104 1.354894 -1.052520 0.457988 -2.140969 0.895421 -1.055102 0.408836 -0.569005 0.550942 0.628667 1.183577 1.377215 -2.149951 1.335664 0.051729 -0.630423 -1.399846 0.329286 -0.352966 -0.914654 -0.560710 0.807121 0.317361 -0.253759 -0.281062 0.405778 0.127061 -0.322643 -1.169301 0.226605 1.133178 -1.564757 0.386173 -0.218216 -0.349762 -0.526260 1.146790 1.597896 1.123809 2.459407 1.469771 0.086511 0.188899 -2.258553 0.165856 2.063018 0.065698 -1.401861 1.910411 -1.324042 -0.508685 0.449474 1.485294 0.490247 0.974611 -1.491033 -1.254879 0.062878 -0.105731 2.114828 0.720956 -0.185738 -1.454711 1.144453 -0.727460 -0.884012 2.702825 1.357819 -1.975230 0.226517 1.320424 -1.232407 -1.467558 1.210609 -1.637272 -0.626578 -0.484550 0.356638 0.916371 -0.860270 -0.985865 0.350640 -1.528090 1.721757 -0.413807 -0.847125 0.253981 -1.275490 -1.812842 2.427377 0.191389 -0.430957 -0.777218 -1.186023 -0.185824 -1.859887 0.382067 0.907476 -0.578926 -0.906526 -1.386722 0.104867 1.552562 -0.658515 0.970675 -1.621636 -0.695935 1.023475 0.200599 0.882417 -1.597666 -0.230986 -0.545430 -0.006411 0.157428 -0.631412 0.968008 2.635400 -0.997640 1.138144 0.679480 -1.565565 0.170598 1.438339 -1.900217 2.403228 0.170878 0.992546 0.330250 0.621367 -0.935974 -0.135271 0.082479 -0.435219 -0.354954 0.735508 -0.957536 -0.430644 0.076575 -1.414172 -1.032706 0.457909 1.204370 -0.226655 0.289226 0.056420 -1.126429 -0.503064 -1.114793 0.229970 1.177626 -0.393563 -1.177292 1.159098 0.831481 -0.810811 -0.644259 0.087440 0.864151 1.462051 -1.931063 0.811590 0.098669 0.547426 -2.267309 -1.913113 0.376509 -1.772059 -1.000397 -0.112127 -1.865056 -1.160008 -1.217685 0.583524 -1.726538 -0.969447 1.083215 2.346161 0.931583 -0.804639 0.848241 -0.678906 1.241153 0.179061 -0.111316 0.471932 1.236935 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.816306 2.032011 -0.025889 -2.207120 5.375741 -0.751123 0.186446 1.441016 -2.269251 4.396423 -1.905595 -0.550569 -1.263867 -5.291018 0.369453 -1.487417 -0.316169 1.911670 0.233107 2.944349 2.053094 -3.212310 0.685876 -0.435477 -1.602522 -3.716418 -0.526845 1.693763 4.034971 -2.964572 0.886857 0.111227 4.818586 -0.745186 4.193641 3.521310 0.889584 3.491308 1.468432 -3.082220 -1.310601 2.323180 -2.581444 -3.309065 0.595231 -0.982923 -3.293504 -2.036184 2.055615 -1.170931 -0.969715 4.021956 -1.236378 -0.263087 -3.583911 2.730865 2.284875 -0.102676 5.152994 0.450207 -0.464601 -0.981670 -4.105952 3.272934 -2.255385 -0.426223 -1.151062 -2.755336 1.470412 0.116456 -1.118258 -1.817621 -1.440280 3.826580 2.488136 -3.936371 0.496353 -1.992833 -4.970618 -4.244212 -3.377589 1.235067 -0.569055 3.838558 0.404780 1.614065 1.383959 2.367226 -1.101602 -5.812450 1.054259 3.954335 -1.799422 -1.154347 -1.235940 4.637551 0.847237 0.171052 -2.767537 -0.815836 1.084526 -1.125855 2.360440 -2.820655 1.671015 -3.874292 -0.033061 -1.049308 1.092819 2.139877 3.215628 0.782547 2.629979 4.207637 -3.743302 -0.458749 -4.009497 0.924141 -0.701789 1.092045 -1.064265 2.386956 0.811929 0.831080 4.258447 -6.110743 1.700788 0.126620 -0.169271 -4.747622 0.181073 -1.581436 -1.124623 -1.513454 2.528639 -0.832833 -0.526997 -1.582526 0.936754 1.394497 -2.613431 -0.517509 1.271466 4.913627 -3.734299 1.430758 -1.024270 -1.836992 -0.375623 1.856210 3.275620 3.708138 5.346199 3.923968 -0.567892 2.785398 -4.492642 0.305777 4.690320 1.135367 -3.646790 4.372196 -3.023794 -1.375021 0.673859 3.457595 3.803217 0.558760 -3.476598 -2.994540 2.817083 1.171463 4.568753 -0.432485 0.430824 -1.226346 3.789767 1.562485 -2.139891 5.105143 1.111866 -3.546585 2.825265 1.884448 -3.532797 -1.369043 2.758264 -3.125545 0.115996 -1.860182 0.783954 2.546108 -2.186162 -1.229677 -0.589511 -3.615150 4.321490 -1.111748 -0.451982 2.342478 -3.195964 -3.475509 3.640805 0.082432 -1.134744 -3.399717 -3.507489 -2.818318 -3.591210 1.534024 0.219510 -1.672003 -1.894097 -3.976297 -0.875519 3.220421 1.109549 2.521004 -5.467261 -0.614859 2.244341 2.579494 2.161189 -0.945439 -0.560758 1.080742 0.092399 0.834057 -0.607216 3.374932 5.062873 -3.033141 1.971310 -1.114493 -1.391408 2.449511 2.105314 -5.218855 5.305957 0.622383 3.331930 -0.066467 1.341200 -1.620244 0.719916 1.294960 -0.639426 0.298462 0.277120 -1.187974 -1.698733 0.652115 -2.774867 -3.008186 -0.831531 1.443942 0.189246 1.578202 -0.386745 -1.767824 -1.169480 -1.714604 1.074653 2.948083 0.109571 -0.889902 2.891034 0.807779 1.416693 0.627378 0.392872 1.496345 2.536359 -4.909882 0.458409 -1.279566 1.397364 -2.216034 -4.545622 0.836707 -2.466220 -1.562740 2.956773 -4.963199 0.203353 -3.059241 0.226284 -3.702470 0.246245 0.589102 5.303136 1.608033 -2.036438 2.071826 -1.603424 2.345226 -0.417748 -0.093508 0.999731 2.969491 +PE-benchmarks/tug-of-war.cpp__main = -1.942650 1.193973 0.509091 -1.443533 4.104509 -0.809609 0.263024 2.104519 -1.216078 2.925880 -1.493695 -0.011086 -0.790186 -3.102832 0.313420 -0.993598 -0.199701 1.627815 -0.327207 1.396777 1.470599 -1.133027 0.327189 -0.454042 -1.064939 -2.513773 -0.378666 0.984361 2.102172 -1.257572 0.230666 0.293634 3.414012 -0.551219 2.837539 2.341422 1.296988 2.409608 0.633646 -0.991100 -0.391914 1.497113 -1.601564 -2.321777 0.525987 -0.845960 -2.353057 -1.275425 1.328407 -1.557652 0.161569 2.497477 -0.549868 -0.123509 -1.700692 2.154982 1.190417 -0.301272 3.213799 0.602870 -1.158658 -0.652062 -2.845548 2.766278 -1.455966 0.576180 -0.832675 -2.394008 0.211397 0.410947 -0.030448 -1.568854 -0.991263 2.231976 1.332487 -2.344006 0.573061 -1.109571 -1.981520 -2.372717 -2.280830 0.841183 -0.440766 2.299970 0.090891 0.833356 0.226892 1.257630 -0.567674 -3.633952 0.321377 2.988904 -1.553709 -0.347704 -1.903092 1.887851 0.482140 0.173223 -1.435380 -1.103429 0.846588 -0.368861 1.407725 -1.856707 0.757068 -2.281830 0.216938 -0.085455 0.692444 1.506875 1.002987 0.695663 1.520086 2.623795 -1.833150 0.380698 -3.006726 1.042082 -0.682055 0.769714 -0.725141 1.311225 0.883417 0.850444 2.624116 -3.827753 1.410060 0.018958 -0.547308 -2.809025 0.347464 -0.981875 -0.968842 -1.077666 1.814564 -0.276476 -0.539857 -0.973537 0.896592 0.586622 -1.672765 -1.151762 0.404903 2.393387 -2.751111 0.718140 -0.775912 -1.072320 -0.391128 1.429621 2.079144 2.259094 3.425107 2.481991 -0.206806 1.304815 -3.190399 0.243120 3.025243 0.844675 -2.408777 2.779645 -2.090902 -0.669739 0.689862 2.121163 1.896250 1.042566 -2.023033 -1.759375 1.324784 0.591688 3.179137 0.623386 0.355328 -1.421368 1.790243 -0.278277 -1.381060 3.597937 1.556852 -2.758660 1.291164 1.305648 -1.789559 -1.295199 1.627192 -2.212084 -0.350001 -1.139441 0.526821 1.739986 -1.599587 -1.030643 0.288201 -2.418167 2.847237 -0.657869 -0.335208 1.206958 -2.349047 -2.103579 2.827777 0.243130 -0.801487 -1.953992 -2.225612 -1.852859 -2.546658 0.952796 0.535948 -0.807066 -1.512382 -2.535878 -0.460418 2.318434 0.355315 1.527095 -3.405194 -0.596431 1.529726 0.858995 1.566369 -1.611267 -0.491654 -0.090092 -0.091503 0.818181 -0.664325 1.777885 3.578934 -1.902070 1.687364 0.106367 -1.335772 0.840277 1.659250 -3.225873 3.390190 0.336254 1.846849 0.091997 0.997098 -1.346667 0.295546 0.465247 -0.133180 -0.071207 0.653882 -0.975320 -0.930824 0.129991 -2.290094 -1.665532 -0.177282 1.104656 0.015830 0.837165 -0.206056 -1.436150 -0.857501 -1.689130 0.514744 2.053288 -0.360441 -1.079181 1.789783 0.416748 -0.187164 -0.121244 0.372329 1.040681 1.939543 -3.099697 0.446332 -0.386340 0.673348 -2.252540 -2.979141 0.262108 -1.880334 -1.518920 1.320932 -3.112403 -0.456555 -1.891916 0.498976 -2.899748 -0.576194 0.564823 3.476315 1.044600 -1.042593 1.612768 -0.827486 1.751469 0.016772 -0.041063 0.617217 1.982282 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -7.048470 6.295933 3.609250 -6.061615 15.579429 -2.104037 1.795112 6.932209 -7.308306 12.092990 -5.327845 1.078837 -1.974110 -12.313503 0.893139 -5.673810 -2.285051 4.932638 0.157424 7.465548 4.755516 -6.235022 1.002810 -1.047758 -4.915055 -11.142821 -1.289340 4.291772 10.386179 -6.213998 3.122018 -0.018899 12.549944 -2.971962 11.140052 9.341046 3.966334 7.652515 2.611363 -6.360554 -2.647426 4.979599 -6.742547 -6.987156 0.196233 -2.157233 -10.027573 -4.562656 4.504637 -4.884003 -3.300263 10.112187 -2.858933 -0.520427 -6.865430 9.973945 4.428294 -2.681292 12.539450 1.321431 -3.019894 -3.272411 -11.800453 11.021610 -4.501155 0.354710 -4.439224 -7.723528 3.224722 0.711185 -2.797407 -4.763832 -2.050255 10.595262 6.434795 -10.178005 1.034461 -5.772911 -12.921836 -10.119168 -7.216209 3.985596 -0.053024 8.963727 1.538645 4.159058 3.336859 6.469191 -3.743060 -15.360888 2.294445 12.494572 -5.732970 -4.524140 -7.297084 9.965288 2.697013 1.113893 -5.562055 -3.759083 3.464493 -1.986171 5.529842 -10.622147 4.159115 -10.701255 -1.470983 -1.190109 2.853096 6.576015 3.362101 3.109592 7.113555 11.565247 -9.254802 0.968590 -10.822593 3.333144 -2.909777 3.063105 -3.184907 5.381261 2.349649 5.105403 11.093880 -15.581340 4.382196 -0.312634 -1.592813 -12.517335 -0.014952 -4.381046 -2.931803 -3.964877 5.547129 -1.215317 -1.356034 -4.288433 3.135513 3.220473 -5.260886 -4.642288 3.932809 11.360598 -11.549312 3.326450 -2.147920 -2.587144 -1.936120 6.319229 9.742733 9.137941 13.885820 9.366684 0.498041 7.355402 -11.905215 -0.085752 11.127157 3.424993 -8.869913 12.336162 -9.156883 -4.305608 1.170042 8.991701 8.004081 3.393339 -11.021945 -9.349756 7.607483 2.581996 12.267353 1.079114 -0.413228 -3.874729 9.749699 -0.714035 -6.921648 12.443574 5.995761 -9.572175 5.869739 4.327137 -8.136658 -5.095526 7.962604 -9.883823 -0.924689 -3.217209 0.731313 6.151061 -4.243933 -2.980857 0.046797 -9.110950 11.566966 -2.754928 -1.169653 4.625585 -6.769629 -11.231919 9.323777 0.353030 -3.440972 -8.416777 -8.251772 -8.305415 -8.752409 3.459543 1.852512 -3.703524 -5.929824 -10.255178 -1.748000 7.447665 1.859959 7.095568 -14.761846 -3.109634 5.827533 5.526098 6.322178 -4.306046 -1.084351 -0.371109 -0.090849 2.033708 -2.592623 9.424696 14.520415 -6.508078 7.279514 -3.314767 -7.019391 4.169008 5.793822 -13.939949 13.709051 2.346647 7.734791 0.586187 3.095175 -5.018826 1.303567 2.712645 -2.566539 0.849870 1.160560 -2.748325 -3.940885 -0.556141 -8.623336 -6.851288 -1.764657 3.610714 -1.531550 3.672746 0.064600 -5.488326 -3.950713 -7.252388 1.942224 7.258801 -1.313737 -2.450408 8.207409 1.705743 1.893277 0.724239 0.573694 4.660569 5.991833 -12.331002 1.222440 -2.616947 3.413380 -8.230968 -12.588147 1.745698 -7.980007 -6.274498 4.350686 -11.924767 -0.475064 -7.919544 0.088134 -11.912764 -3.159905 3.880883 14.331236 3.377422 -5.524837 5.029380 -4.694714 6.861187 -0.133140 0.884939 2.520821 6.621624 +PE-benchmarks/Iterative_QuickSort.cpp__main = -1.732485 1.293810 0.700903 -1.049744 3.807087 -1.075810 0.150934 2.278581 -1.110050 2.580158 -1.304593 -0.309571 -0.954686 -2.715306 0.209959 -0.831898 -0.000366 1.743803 -0.330306 1.028063 1.424105 -0.808256 0.230223 -0.432395 -0.816464 -1.503563 -0.401748 0.702328 1.968982 -1.525122 -0.114846 0.383556 3.200218 -0.322643 2.942646 2.050478 1.040683 2.397016 0.795182 -0.997010 -0.493026 1.505871 -1.398326 -2.393229 0.649303 -0.896152 -1.454878 -1.123736 1.245110 -0.952804 0.750500 2.045606 -0.471365 0.064317 -1.515873 1.784908 0.793647 0.402166 2.886535 0.545211 -1.156698 -0.270051 -2.942737 2.054169 -1.318958 0.886905 -0.686952 -2.040767 0.127772 0.093713 0.185707 -2.335082 -0.730764 2.207060 0.752970 -1.875781 0.602447 -0.800834 -1.729986 -2.134587 -2.630990 0.566939 -0.732732 1.839767 -0.103175 0.609516 -0.624850 1.071607 -0.370706 -3.429120 0.316912 2.701572 -1.464154 0.221299 -1.422164 1.397887 0.049747 0.282197 -1.296346 -0.955409 0.762946 -0.253321 1.217803 -1.956482 1.255069 -2.185200 0.675116 -0.156326 0.397499 1.150862 1.744166 0.616387 1.483545 2.572482 -1.565499 -0.023431 -3.049816 0.805831 -0.648179 0.572534 -0.404311 1.301979 0.398394 0.554543 2.206898 -3.857384 1.165931 -0.015017 -0.499573 -2.751120 0.470815 -0.990448 -0.936354 -1.050138 1.769822 -0.109323 -0.596040 -0.976947 0.584701 0.347495 -1.851548 -1.303592 0.259250 2.453071 -2.550126 0.490986 -0.817060 -1.205474 -0.324068 1.180198 1.899023 1.990629 2.907438 2.248218 -0.376777 0.509815 -3.018653 0.080169 2.319175 0.135640 -2.244919 2.538884 -1.658338 -0.449562 0.813934 2.055914 1.754982 1.064279 -1.727265 -1.717101 1.366987 0.561966 2.616509 0.427034 0.676872 -0.808279 1.725945 -0.376110 -1.847218 3.562058 0.877823 -2.536391 0.977994 0.990388 -0.947559 -1.102796 1.344980 -2.111238 -0.075716 -1.095554 0.402944 1.466966 -1.698343 -0.869206 0.461677 -2.177981 2.845466 -0.531687 -0.502412 1.081654 -2.530719 -1.385470 2.911354 0.314882 -0.716505 -1.650669 -2.257499 -1.635034 -2.188050 0.903211 0.496395 -0.496781 -1.431662 -2.135613 -0.163871 2.236373 0.392789 1.332688 -2.551927 -0.777621 1.278914 0.426241 1.649507 -1.664535 -0.558429 -0.073307 -0.099720 1.079790 -0.446241 1.731546 3.734280 -1.685362 1.696037 0.922462 -0.807281 0.606056 1.516256 -3.024880 2.776705 0.125579 1.773068 -0.058793 0.892169 -1.268748 0.148158 0.505603 0.348542 -0.000709 0.596700 -0.660885 -0.729511 -0.354495 -2.627086 -1.415367 -0.209482 0.867269 0.009860 0.738643 -0.481841 -1.206252 -0.765282 -1.626460 0.389955 1.908842 -0.280147 -1.134159 1.438942 0.031083 -0.294414 0.502725 0.398599 0.656749 1.758602 -2.612376 0.090961 -0.285680 0.622475 -1.822512 -2.514521 -0.132013 -1.496481 -1.253834 1.211039 -2.695114 -0.560580 -1.522797 0.469990 -3.073183 -0.282087 0.155058 3.227232 1.299877 -0.756267 1.430069 -0.579522 1.629140 0.199721 -0.322683 0.385055 1.968897 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.949212 0.479427 0.437697 -0.604290 2.235372 -0.559991 0.147514 1.811645 -0.508906 1.211126 -0.759814 0.436346 -0.193119 -1.008779 0.211894 -0.409627 0.030555 1.003641 -0.421575 0.298983 0.699028 0.293187 -0.031075 -0.222406 -0.542967 -1.055042 -0.248554 0.446226 0.581671 -0.371689 -0.100872 0.386234 1.817412 -0.476504 1.637121 1.214087 1.193858 1.000659 0.239834 -0.094471 0.219860 0.622269 -0.710120 -1.118728 0.134959 -0.461861 -1.156088 -0.299546 0.657039 -0.939959 0.420708 0.960216 -0.090406 0.191335 -0.310934 1.157724 0.125814 -0.387355 1.378575 0.428688 -1.388814 -0.214044 -1.204801 2.080549 -0.682108 0.754011 -0.717247 -1.509518 -0.315172 0.428822 0.364617 -1.105250 -0.501913 0.847103 0.272213 -0.948949 0.531422 -0.313697 0.428288 -0.906203 -0.965865 0.495388 -0.347666 0.807141 -0.110883 0.244943 -0.546636 0.377619 -0.250057 -1.523075 -0.021089 1.535552 -1.187986 0.269311 -1.477618 0.010337 0.246805 0.192549 -0.295717 -0.986763 0.487867 -0.097620 0.530613 -0.723273 0.679290 -0.596296 -0.079934 0.125665 0.422159 1.103060 -0.445414 0.731780 0.851723 1.054906 -0.100521 0.311270 -1.562018 0.902459 -0.880658 0.302085 -0.326249 0.475559 0.852129 0.687005 1.163234 -1.469042 0.709441 -0.077890 -0.315882 -1.032603 0.330344 -0.453631 -0.658538 -0.631887 0.936275 0.092567 -0.357132 -0.533576 0.596233 0.167711 -0.778763 -1.088298 -0.103862 0.196683 -1.364681 0.160431 -0.354482 -0.310659 -0.247968 0.861700 0.957164 1.030299 1.561023 1.118132 -0.045408 0.409704 -1.717496 0.051897 1.198922 0.287534 -1.117550 1.261979 -1.221536 -0.373332 0.586502 0.999185 0.465724 0.972577 -0.710192 -0.704488 0.265808 0.300996 1.604605 0.625383 0.090172 -0.900996 0.270926 -0.909511 -0.698217 1.904663 0.785819 -1.740964 0.405624 0.604004 -0.126393 -0.790296 0.662665 -1.379759 -0.640155 -0.515665 0.246149 0.953989 -0.908994 -0.432675 0.820762 -1.104301 1.217872 -0.329419 -0.584671 0.324845 -1.359521 -0.751610 1.667128 0.390259 -0.251729 -0.680180 -0.937799 -0.364598 -1.340367 0.287606 0.479935 -0.098805 -0.706137 -1.112075 -0.189427 1.045169 -0.038502 0.777903 -1.671702 -0.362367 0.796035 -0.138382 0.551899 -1.439538 -0.267934 -0.585054 -0.154605 0.446132 -0.766962 0.563543 1.678513 -0.812922 1.006433 0.616807 -1.138648 -0.094522 0.807441 -1.468444 1.571781 0.207504 0.527653 0.282785 0.420492 -0.970810 -0.105211 -0.174995 0.219294 -0.382443 0.511898 -0.552412 -0.283597 -0.140196 -1.176038 -0.548671 0.031419 0.654378 -0.157028 0.301118 -0.203883 -0.846596 -0.525788 -1.129402 0.150122 0.973927 -0.644340 -0.919845 1.005239 0.094524 -0.901559 -0.301800 0.093136 0.592925 1.001149 -1.382242 0.188003 0.214579 0.331109 -1.630191 -1.331438 -0.107681 -0.943875 -0.805897 -0.025708 -1.229124 -0.781304 -0.756116 0.367582 -1.408402 -0.827463 0.620971 1.695023 0.475883 -0.450029 0.843593 -0.331188 0.944630 0.242699 0.137569 0.090022 0.872479 +PE-benchmarks/tarjan-algorithm.cpp__main = -17.918578 6.707265 3.855699 -14.101573 35.058554 -11.842934 2.795936 20.956972 2.332147 21.579563 -16.904477 -1.881992 -8.889632 -22.070474 1.806918 -11.027349 2.275762 19.588338 -9.890313 5.350262 14.683954 2.152290 4.685730 -7.528211 -8.042682 -19.115361 -4.326466 6.716797 4.615994 -5.081980 0.116446 5.308615 32.639233 -3.347478 25.002487 20.099959 17.340216 26.548999 3.077086 9.633764 4.417765 13.034660 -10.443692 -25.263381 7.427940 -8.553016 -20.016449 -12.464552 12.756271 -22.141933 17.305339 19.422568 -1.074402 -2.286766 -11.820671 16.260535 9.654334 -0.636006 25.857605 7.584323 -19.340715 1.218737 -21.323719 25.669719 -16.760373 14.954395 -2.813457 -24.796701 -8.298907 9.004661 10.011184 -17.962766 -17.163734 10.597136 7.959293 -17.420612 6.945520 -6.293758 -0.399511 -12.997999 -20.003023 7.029824 -4.149428 15.679385 -0.898205 5.602779 -6.701471 6.505680 -0.165718 -25.403487 -0.931573 25.897768 -14.638583 5.916130 -22.918175 4.025325 1.279515 -2.561006 -10.440338 -13.623319 6.885861 -2.040472 11.521785 -5.784730 -4.609778 -15.496511 8.344700 8.822179 1.465664 9.691081 1.794190 7.864880 10.333508 16.448133 -7.250138 11.426233 -32.386306 12.297904 -5.998601 3.556891 -4.087823 7.780353 8.206110 7.250283 18.013742 -27.496771 18.569797 1.362973 -11.187316 -17.734694 6.877166 -4.036140 -9.738492 -9.184350 18.500416 -0.443067 -5.134438 -5.923246 8.542605 -0.679355 -11.333014 -15.668034 -2.902803 7.557403 -15.544338 5.260769 -7.928771 -11.259111 -2.854107 11.435625 11.986126 14.520428 28.472061 20.054977 -3.247973 2.274287 -27.200886 1.719345 23.497275 8.859046 -21.096784 19.792826 -14.438979 -2.071609 9.032882 16.211368 9.492825 13.168506 -10.737192 -9.806429 0.373743 0.868307 26.105093 11.328629 4.632293 -19.591053 6.390794 -8.459022 -5.360113 35.786162 19.469061 -26.948820 2.461003 15.470635 -9.584967 -17.768920 10.509008 -15.645482 -8.120064 -10.085184 7.853912 13.596969 -17.250125 -12.989086 7.689795 -21.074444 20.954825 -4.476940 -7.497135 7.286954 -28.269008 -14.226654 29.459137 2.481898 -6.073305 -10.473056 -19.394103 -6.470151 -27.474859 8.058641 9.706822 -3.344506 -12.270277 -18.367682 0.003340 20.497606 -1.118708 10.799795 -18.130036 -8.146704 14.841449 -1.471401 11.612971 -23.148657 -6.021697 -4.303360 0.861979 10.270422 -5.204599 6.518193 29.140798 -16.469394 14.402005 13.185758 -14.405206 0.971947 18.184608 -23.452366 28.207832 -0.223520 9.556880 2.210982 9.605126 -12.741460 1.361822 0.342033 3.616209 -4.841542 10.198931 -14.090298 -7.366488 0.074911 -19.576134 -10.113379 3.366896 13.259706 -0.725518 4.908704 -0.505772 -12.055231 -7.252658 -15.499028 3.722108 18.533833 -3.457889 -15.922182 12.081470 6.565838 -14.383946 -3.915609 4.548819 8.473765 21.401146 -25.352740 8.075123 0.938021 0.477611 -25.962149 -22.381586 2.789659 -18.531858 -13.694553 5.015848 -23.542607 -12.401236 -13.804482 11.400126 -20.480792 -7.658883 4.634439 26.890767 12.752965 -3.667593 16.016378 -4.197965 15.109100 2.055144 -3.689533 5.778283 20.924933 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -6.951085 6.678223 2.080703 -7.460281 13.502173 -2.840496 1.254093 6.967639 -2.634295 10.413445 -6.175951 -0.486421 -1.951756 -12.087748 0.660047 -6.611154 -1.966252 6.602545 -1.407835 6.648081 5.415049 -4.070244 1.711408 -1.955380 -5.135925 -9.858658 -0.911137 3.941778 6.730713 -4.277302 3.778562 -0.185782 12.532206 -2.497237 10.921686 8.717945 5.473851 9.211525 2.677693 -0.450299 -1.473645 4.908041 -5.788473 -8.571289 1.088801 -2.379934 -9.644576 -5.212584 4.446019 -7.503017 1.448526 9.429428 -1.116579 -1.146694 -6.706680 8.285839 4.814451 -1.640060 11.768978 2.119988 -3.961200 -1.783708 -10.507082 9.369286 -5.591969 2.554278 -2.175305 -7.209590 0.849528 2.010024 -1.472931 -4.983566 -4.226121 7.775380 5.984796 -9.592352 1.943337 -5.656056 -9.109241 -7.939512 -6.019492 4.323495 -0.187063 8.348828 0.939782 4.064081 1.680031 5.527570 -3.136644 -13.357660 1.483935 11.349119 -5.166813 -3.337922 -7.330111 8.614367 1.712688 0.250665 -5.739925 -3.983679 3.728404 -0.728411 5.418530 -7.584006 -0.438384 -10.312100 0.518682 1.764440 0.443958 5.888015 3.046089 3.214414 5.837569 10.184746 -8.113890 3.564003 -13.113628 3.086713 -2.650432 3.150727 -2.621124 4.047362 2.684930 4.977715 8.604740 -13.654693 6.904434 0.880293 -2.811293 -10.525651 1.512343 -2.810641 -3.110039 -3.567161 5.741654 -0.897587 -1.437922 -3.545280 3.161860 1.947920 -3.868949 -5.918874 2.672527 8.174870 -9.250324 3.080566 -2.265892 -3.160320 -1.697162 5.549228 8.009921 6.534078 14.046857 8.335305 0.198589 6.052041 -10.529285 -0.408540 10.747865 3.934806 -8.531115 10.652232 -7.817838 -3.444604 1.455555 7.942817 5.968466 5.286969 -9.904859 -8.417352 5.012885 1.292929 11.552706 1.259415 -0.017539 -6.898401 8.754146 -0.754023 -4.548307 14.345500 7.849554 -9.346579 2.585281 4.658156 -7.785747 -6.212247 7.039246 -8.083403 -1.581721 -2.555812 1.425118 5.208221 -4.546086 -5.453352 -0.168534 -8.804363 9.769627 -2.722012 -2.376116 2.992930 -8.496164 -8.327153 9.941637 0.579731 -4.276054 -6.491299 -7.627413 -5.619450 -9.769552 3.891892 3.718418 -2.885691 -5.741573 -8.656993 -0.569194 7.212913 0.540401 4.688429 -11.907616 -4.191447 6.418400 3.591904 5.752216 -6.227428 -1.018162 -0.983574 1.179525 3.170341 -1.431417 7.706218 14.197225 -6.283480 6.904166 -0.792518 -7.314607 3.137579 7.598524 -12.292784 13.706060 1.488938 6.208621 0.313049 2.931707 -4.630393 1.319484 1.795304 -2.311113 0.934052 1.989009 -3.772394 -3.922331 -0.635599 -7.664197 -5.114624 -0.260022 4.899063 -2.081349 3.230632 1.104897 -4.723419 -3.993376 -6.583812 0.949719 7.564418 -0.580847 -4.265780 6.690217 2.810266 0.329972 0.474677 0.618434 4.815821 7.414927 -11.495507 2.706133 -1.872549 1.353234 -9.736018 -11.276694 2.576858 -7.686714 -5.110259 2.539064 -10.237575 -2.132097 -6.996502 2.437661 -10.241807 -2.745870 3.786332 12.468504 4.397429 -4.264664 4.694543 -3.925724 7.625891 0.753119 -0.369837 3.217400 8.122866 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -1.885332 1.441232 0.603794 -1.579220 4.323212 -0.643405 0.377547 1.961714 -0.667564 2.914464 -1.623158 -0.356953 -0.596028 -2.967978 0.256424 -1.286941 -0.517142 1.782103 -0.466696 1.264994 1.377792 -0.867241 0.315401 -0.430617 -1.168227 -2.458693 -0.662062 1.042630 1.880298 -1.256362 0.275244 0.154877 3.391197 -0.637799 2.987232 2.289025 1.327098 2.362191 0.448671 -0.277638 -0.143067 1.334678 -1.620704 -2.379568 0.430695 -0.868089 -2.506023 -1.501667 1.252389 -1.761169 0.781501 2.387496 -0.459914 -0.163028 -1.482076 2.042178 0.986848 -0.061617 3.140415 0.612080 -1.369774 -0.104841 -3.086672 2.868302 -1.343822 0.992665 -0.882648 -2.631714 -0.070174 0.500364 0.310069 -1.766348 -1.133465 2.222804 1.359119 -2.226079 0.580644 -1.280749 -1.841521 -2.296539 -2.103688 1.005994 -0.468341 2.156644 0.116160 0.813754 -0.101873 1.269724 -0.710891 -3.559455 0.151695 3.158011 -1.491038 -0.200789 -1.937506 1.526643 0.489558 0.228492 -1.337429 -1.088125 0.875463 -0.147801 1.313594 -1.484765 0.581788 -2.429404 0.296805 0.379724 0.482110 1.249189 0.906430 0.690889 1.597278 2.616309 -1.882554 0.632754 -3.034203 1.084312 -0.858551 0.839997 -0.760769 1.301955 0.682259 1.063022 2.524948 -3.778531 1.503724 -0.094823 -0.778447 -2.703420 0.319703 -0.946607 -1.042185 -0.953699 1.546947 -0.090331 -0.579531 -0.976723 0.682128 0.438880 -1.534051 -1.284753 0.587087 2.110087 -2.451644 0.671519 -0.637659 -0.957246 -0.541531 1.634456 2.253779 2.126052 3.553806 2.443603 0.036337 0.719875 -3.257935 0.183155 2.939518 0.567240 -2.365036 2.778987 -2.083656 -0.649892 0.695600 2.234284 1.593596 1.244886 -2.024796 -1.706578 0.973667 0.532213 3.183915 0.891736 0.231525 -1.445574 1.738696 -0.558814 -1.520437 3.765272 1.757013 -2.732986 0.797745 1.232133 -1.821481 -1.487355 1.763790 -2.190513 -0.431483 -0.978948 0.478790 1.613444 -1.370201 -1.192751 0.439182 -2.392072 2.883978 -0.715813 -0.534665 1.033225 -2.340316 -2.105204 3.065004 0.195668 -0.870328 -1.688801 -2.096842 -1.286629 -2.443440 0.876863 0.837529 -0.791292 -1.601008 -2.402814 -0.122562 2.307043 0.126413 1.573943 -2.746512 -0.896169 1.485194 0.476836 1.636221 -1.976430 -0.367011 -0.470875 -0.001500 0.789222 -0.578584 1.761097 3.749750 -1.727998 1.657451 0.485479 -1.429771 0.545772 1.778408 -3.075203 3.409103 0.275320 1.614177 0.037457 0.920372 -1.156658 0.237411 0.428921 -0.080536 0.008305 0.818160 -0.905295 -0.876338 -0.014902 -2.494242 -1.532156 -0.036533 1.234876 -0.200880 0.817583 -0.164582 -1.608087 -0.877710 -1.751696 0.334753 1.967714 -0.354734 -1.271967 1.796652 0.357220 -0.385575 -0.236534 0.274744 1.084715 1.940420 -2.982734 0.465957 -0.254660 0.631816 -2.530339 -2.894080 0.123375 -2.114482 -1.540935 0.911162 -2.906505 -0.751516 -1.909083 0.467571 -2.826472 -0.856965 0.846436 3.511560 1.351789 -1.044811 1.478992 -0.867630 1.926879 0.152199 -0.214511 0.846911 2.021254 +PE-benchmarks/edit-distance.cpp__main = -7.978847 0.448777 -4.821275 -10.605600 20.437548 -4.006923 -3.937456 12.104655 2.133968 10.942008 -5.943639 -1.960619 -2.577888 -15.501926 1.447475 -1.377458 0.950486 7.679264 -5.744751 6.220496 6.356637 -1.460554 5.523928 -1.371980 -5.949347 -5.456391 -1.880424 6.839827 3.324096 -6.293277 1.222437 0.867676 15.188756 -2.333856 11.684673 6.805234 8.430134 11.727620 3.619242 -2.750116 3.294997 3.726719 -4.970272 -11.871535 3.789201 -3.635824 -14.235250 -5.673572 7.238201 -10.746475 2.933931 12.165473 -0.023730 -2.950233 -8.398847 7.114335 3.555359 -2.836133 13.160575 3.431283 -10.095066 -4.276911 -10.887072 8.529778 -7.872109 5.056822 -2.950533 -10.125243 -4.979736 8.228159 0.882722 -9.598373 -8.315071 4.727123 7.439318 -8.887963 5.370888 -3.988237 6.784479 -9.565321 -6.632942 6.110272 -4.012805 8.312762 0.404492 6.413972 1.648003 3.595545 -3.323150 -14.280511 3.071813 9.242738 -8.025703 -0.176824 -7.769944 7.160821 -2.622819 -3.415153 -9.342536 -6.707445 3.584718 -1.883106 6.300093 -2.828700 4.278328 -8.646118 2.907094 3.541590 4.507449 5.920627 5.017672 1.913326 4.284764 9.506961 -5.623386 3.755061 -16.004530 3.456183 -5.646046 4.370567 -6.433484 4.522105 10.157368 6.021542 8.047373 -15.598544 11.408708 2.326088 -4.063267 -9.247249 3.910504 0.072845 -3.355306 -1.956805 9.293031 -4.995832 -1.721743 -1.429019 6.149583 1.708536 -8.845151 -1.734169 -0.977194 5.281726 -9.350906 5.142830 -1.661446 -5.963580 1.061139 5.053912 9.093553 6.080320 18.724489 7.872220 -4.290741 5.370413 -13.113950 4.218033 15.096034 1.842128 -10.241424 12.612026 -9.377404 -1.350017 0.743272 9.976375 7.655762 4.163685 -4.948401 -3.525483 4.941912 4.199999 14.228158 -2.096159 3.724563 -12.303793 1.543651 -1.441176 4.400011 19.400387 5.965055 -13.969177 3.265819 9.666097 -4.663405 -5.140157 5.374245 -7.820017 -3.897739 -4.221031 6.671119 8.532874 -8.568850 -8.636363 0.989254 -9.783612 8.796933 -4.177926 -7.937619 4.170172 -13.025773 -0.459520 15.102054 1.833827 -3.332914 -4.419016 -11.786319 0.475459 -14.130833 3.565064 5.986547 -1.668143 -1.150567 -7.409827 -4.040017 10.885535 1.169080 4.310464 -17.581134 1.369498 8.586963 -0.011887 4.996894 -6.544782 -0.631386 1.579685 -1.487945 2.320056 -5.170182 2.137357 10.358578 -10.226763 7.927664 1.166958 -3.298814 3.988058 7.182682 -11.130163 18.903802 3.365141 12.459437 0.188950 5.307938 -4.293992 4.286642 -1.457446 -2.688225 -1.747615 3.954822 -8.322907 -6.426349 4.238441 -2.956507 -11.435253 0.290809 9.762553 -2.078675 4.403602 -3.218884 -2.633389 -4.695099 -4.362563 6.614546 7.829940 -4.320306 -7.063167 6.153101 9.584350 -2.896366 -0.090772 2.930157 6.960905 13.115528 -14.410262 6.031485 0.031987 5.474440 -11.403397 -9.658936 4.414088 -4.895461 1.006178 2.544384 -14.310220 -8.114293 -7.391089 7.672550 -5.385645 3.040630 3.070244 14.832334 7.321080 -6.279348 7.952329 -2.767914 3.556423 -0.147933 -1.014511 5.537931 8.147608 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -12.515752 1.310024 -3.402803 -15.378857 29.888163 -6.679199 -6.075420 17.530727 2.361194 16.840269 -6.937213 -5.885111 -4.487331 -24.613802 2.623161 -7.189794 0.541778 10.699695 -6.481043 12.559818 9.824219 -3.589654 6.277113 0.161945 -9.693951 -6.204031 -4.705793 11.528544 9.023642 -15.335690 4.365458 2.522886 25.617644 -3.657209 24.262824 13.332911 13.147192 16.996984 5.642678 -7.906097 1.452415 6.367659 -9.988124 -17.304692 3.841200 -3.958807 -21.838177 -7.242180 10.830823 -10.370275 0.765334 20.988433 -2.167526 -1.031800 -13.190033 11.040968 0.539111 -2.228718 21.587938 4.668371 -15.560613 -5.234717 -19.242641 13.198342 -10.418251 6.901527 -9.151837 -13.772572 -3.183662 8.780694 -2.146703 -17.336912 -10.142477 12.860173 12.800798 -14.804126 8.444368 -7.147671 6.094905 -15.293869 -12.395295 10.760517 -3.959748 13.027005 1.180926 11.036515 3.861741 8.596465 -8.659595 -26.155936 8.905005 16.504466 -15.661946 -3.085715 -10.048603 13.483051 -4.804802 -1.617267 -14.909346 -10.076873 6.887049 -5.954504 10.568549 -5.932813 11.269199 -15.133710 1.796540 1.324644 7.585192 10.813931 10.847301 4.391073 12.369576 18.355657 -10.452325 3.626423 -23.911331 5.861471 -12.361102 6.891087 -8.998933 9.928261 13.655717 10.821485 14.614406 -26.625903 13.069555 2.781417 -4.400576 -17.543629 3.975184 -4.234866 -5.631116 -5.282929 15.176476 -6.670618 -3.083417 -4.939476 7.924910 5.189538 -11.181400 -3.835112 1.890751 8.318406 -13.586365 7.872172 -2.278464 -9.158341 -0.014664 9.796787 17.337985 12.975353 31.428261 13.727719 -7.142474 8.523725 -21.239718 3.443173 20.752132 -2.620324 -17.312384 23.513020 -18.182816 -5.398841 -0.672831 19.408684 15.385371 5.466051 -10.277384 -7.778268 11.605472 9.594002 22.976737 -7.507024 3.961176 -13.575705 4.283157 -1.281661 0.730202 30.959370 4.371218 -22.282564 5.141848 12.741596 -5.802432 -8.971699 12.267717 -16.459989 -4.183292 -7.172811 9.491915 13.582761 -13.124680 -8.843679 4.735084 -16.665780 14.419674 -7.574311 -12.849982 7.313086 -21.223058 -6.807152 25.981727 2.537073 -4.994389 -9.324942 -19.781839 4.787325 -20.048584 6.184136 8.725586 -0.332821 -2.483856 -12.245873 -4.879063 16.503834 4.446511 11.953273 -26.657667 0.156142 13.090374 0.568504 9.093171 -7.333766 -1.227960 2.506509 -2.113990 3.319112 -8.271324 6.130015 18.891162 -15.850480 13.307215 -1.034673 -9.579486 6.529448 9.110177 -22.105852 31.594665 6.969343 19.112058 -0.103501 7.256262 -8.878269 4.901425 0.419436 -3.852071 -1.908712 3.233483 -8.444019 -9.650793 2.778686 -5.224997 -17.288603 -3.537780 13.564356 -7.992928 8.970057 -4.688114 -4.652914 -8.707141 -8.006624 12.169302 13.099396 -6.180503 -8.055073 13.732582 12.457132 -0.836434 4.758656 3.300545 10.215706 19.688479 -24.669296 4.926386 -0.950925 10.484210 -15.140309 -16.745809 5.372468 -9.205142 5.177358 1.525231 -20.620708 -9.946145 -13.356832 7.917709 -7.941414 4.326142 6.998206 26.392221 15.097432 -14.127860 10.640915 -6.458035 6.382177 1.076812 -1.629926 9.386798 12.478356 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.903301 0.323981 -0.511850 -0.720333 2.180130 -0.542792 0.011789 1.300538 -0.483019 1.276323 -0.834244 0.474943 -0.149472 -1.260934 0.131619 0.356987 0.288564 0.918933 -0.315784 0.358484 0.563127 -0.221746 0.380870 -0.319971 -0.443010 -1.184952 -0.022473 0.508015 0.671767 -0.525591 -0.397846 0.168090 1.680038 -0.413218 1.137028 0.928185 0.797511 1.038729 0.734597 -0.899585 0.387575 0.549076 -0.520104 -1.157499 0.208408 -0.423513 -1.124288 -0.560735 0.768040 -0.961418 0.488701 0.940271 -0.130362 -0.238406 -0.914378 0.952839 0.807394 -0.504542 1.495192 0.187179 -0.882168 -0.452254 -0.734929 1.803664 -0.907926 0.130041 -0.388892 -1.256120 -0.232131 0.731015 0.266870 -0.907879 -0.706573 0.548024 0.396030 -1.038294 0.358663 -0.291750 0.643317 -1.302968 -0.867082 0.370784 -0.682605 0.894591 0.007835 0.392522 -0.446984 0.306289 0.026423 -1.313359 -0.027089 1.059168 -0.762067 0.210422 -0.659354 0.678667 0.382082 -0.367446 -0.472169 -0.833990 0.160973 -0.282583 0.579360 -0.495453 0.886801 -0.578517 -0.003038 0.081778 0.521167 1.024416 0.168550 0.516277 0.565429 0.794546 -0.216702 -0.143072 -1.634171 0.558590 -0.363764 0.128937 -0.405353 0.455711 0.917682 0.439976 1.116235 -1.578564 0.986947 0.083886 -0.102109 -0.904086 0.301632 -0.003503 -0.391756 -0.304272 0.821353 -0.302144 -0.141210 -0.271923 0.628848 0.171750 -1.211458 -0.388987 -0.119319 0.898421 -1.382199 0.414509 -0.258064 -0.435728 0.099791 0.491733 0.704525 0.796866 1.492878 1.060902 -0.269692 0.871348 -1.563142 0.404106 1.442367 0.504007 -1.009999 1.103248 -1.001484 -0.296478 0.560943 0.940753 0.636637 0.344242 -0.613648 -0.533185 0.594852 0.184474 1.376519 0.031213 0.295720 -1.046254 0.472901 -0.038542 0.032967 1.879736 0.416449 -1.598595 0.846263 0.980062 -0.432446 -0.327889 0.427078 -0.958518 -0.571692 -0.667264 0.469271 0.944286 -0.899114 -0.625969 0.071525 -0.947883 1.139698 -0.268847 -0.825403 0.518741 -1.104898 0.180038 1.516834 0.356843 -0.069630 -0.567134 -1.082566 -0.591181 -1.531497 0.188807 0.251352 -0.457062 -0.245732 -1.060314 -0.461964 1.098451 0.057109 0.512172 -2.138426 0.152184 0.833147 0.505151 0.156148 -1.040897 -0.192182 0.145561 -0.095214 0.160737 -0.727677 0.609897 1.139417 -0.978757 0.645119 0.369928 -0.266531 0.536734 0.696367 -1.276058 1.529118 0.148668 1.038943 0.300658 0.469162 -0.632251 0.241920 -0.270694 0.066600 -0.438727 0.386262 -1.024531 -0.522626 0.542284 -0.543241 -1.114390 0.079024 0.831794 0.287540 0.274400 -0.508767 -0.452729 -0.396135 -0.797037 0.354949 0.733923 -0.462609 -0.876952 0.733603 0.661574 -0.564013 -0.259144 0.143302 0.618250 0.952844 -1.362961 0.547555 0.024897 0.576905 -1.250182 -1.301738 0.401704 -0.482689 -0.572239 0.554923 -1.696771 -0.876182 -0.694636 0.518895 -1.371277 -0.010869 0.248048 1.531425 0.230070 -0.310641 0.860584 -0.323143 0.451462 -0.106681 0.188607 0.095426 0.773566 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/finite-automata-algorithm.cpp__main = -1.092816 0.655808 -0.155814 -0.780790 2.755436 -0.694358 0.056772 1.691468 -1.060943 1.743748 -0.859512 0.511026 -0.247881 -1.815987 0.258742 0.116038 0.139079 1.086451 -0.124946 0.709409 0.747108 -0.521399 0.205952 -0.214987 -0.661279 -1.478560 -0.009610 0.648463 1.207169 -0.913401 -0.195772 0.359591 2.031108 -0.474484 1.622610 1.366014 0.837082 1.236189 0.829936 -1.152376 0.021974 0.653302 -0.810253 -1.343960 0.212308 -0.372774 -1.399666 -0.640451 0.820347 -0.861894 0.174936 1.380548 -0.269562 -0.048769 -1.143344 1.374586 0.720390 -0.497300 1.920344 0.343206 -0.911585 -0.608995 -1.337081 2.085560 -0.908471 0.049546 -0.606545 -1.434897 0.116574 0.600831 0.044298 -1.100110 -0.550727 1.175384 0.561385 -1.451971 0.381169 -0.446348 -0.477131 -1.687349 -1.312378 0.594699 -0.458871 1.282390 0.141256 0.526634 -0.228747 0.636372 -0.262202 -2.081466 0.209015 1.561179 -1.022772 -0.078603 -1.069694 1.138376 0.454050 -0.130540 -0.642728 -0.966598 0.475671 -0.398558 0.787830 -1.206830 1.108421 -1.143791 -0.038681 -0.152618 0.640330 1.183677 0.529287 0.517046 0.895501 1.426326 -0.659013 -0.134446 -1.985358 0.710443 -0.403024 0.260824 -0.546880 0.614250 0.917319 0.536021 1.532751 -2.347263 0.918158 0.062586 -0.073656 -1.613339 0.257052 -0.335706 -0.479279 -0.596729 1.116827 -0.316049 -0.212671 -0.421293 0.705814 0.389263 -1.367844 -0.606578 0.057558 1.659414 -1.988428 0.518071 -0.396161 -0.536423 -0.134251 0.754832 1.240773 1.353316 2.039632 1.380295 -0.222345 1.026584 -2.067133 0.248676 1.807150 0.623676 -1.327664 1.741831 -1.360414 -0.506767 0.415366 1.348483 0.989486 0.386656 -1.145314 -1.014841 1.067973 0.434299 1.858186 -0.035459 0.266889 -0.794365 0.930125 -0.046093 -0.627230 2.233377 0.640822 -1.807458 1.071261 1.018701 -0.644891 -0.541434 0.952025 -1.562955 -0.487803 -0.680922 0.379234 1.165687 -1.122870 -0.544663 0.190536 -1.267981 1.588390 -0.331648 -0.581498 0.733413 -1.294908 -0.470441 1.721166 0.308229 -0.211103 -1.017535 -1.456619 -1.158384 -1.586597 0.364549 0.331385 -0.447460 -0.562863 -1.481521 -0.624035 1.405268 0.225916 0.852915 -2.575535 0.021899 1.021766 0.622934 0.556020 -1.005630 -0.216995 0.160479 -0.113908 0.227522 -0.687680 1.081015 1.837009 -1.150538 1.017901 0.233902 -0.444250 0.668631 0.842530 -1.911358 1.976517 0.335004 1.305750 0.378394 0.569087 -0.909001 0.225158 -0.017424 -0.015519 -0.319354 0.366436 -0.838847 -0.614057 0.309433 -1.029167 -1.373386 -0.163053 0.838912 0.138015 0.384539 -0.479362 -0.597941 -0.553797 -1.195938 0.536566 1.033262 -0.519364 -0.683827 1.160998 0.573479 -0.296143 0.082757 0.248539 0.743496 1.148307 -1.813267 0.393040 -0.119972 0.841032 -1.451052 -1.837443 0.331115 -0.818346 -0.814718 0.654918 -2.157377 -0.693477 -0.957345 0.428553 -1.978181 -0.085745 0.364239 2.165495 0.264466 -0.586900 0.984580 -0.498781 0.637887 -0.082202 0.203069 0.135926 1.088596 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.287446 2.690521 1.203402 -2.561817 8.137430 -1.083877 0.314182 4.249817 -4.091931 6.034764 -2.323543 0.747413 -0.935375 -5.419450 0.420905 -1.472232 -0.829967 2.540344 -0.041500 3.334881 2.185093 -2.465793 0.575896 -0.086494 -2.454656 -4.340680 -0.650959 2.182642 4.986401 -3.550276 0.856376 0.151999 5.841776 -1.716667 5.370270 4.275247 1.663999 3.523167 1.525700 -3.530904 -1.156457 2.166495 -3.259428 -3.357776 0.170823 -1.073764 -4.567030 -2.016982 2.366668 -2.051690 -1.176692 4.678899 -1.381989 0.023075 -3.148585 4.947919 1.648579 -1.140047 6.334698 0.565923 -2.068305 -1.323303 -5.612744 5.559519 -1.972995 0.373277 -2.688277 -3.992941 1.234387 0.406186 -0.863066 -3.107354 -0.963094 5.384194 2.379030 -4.881206 0.781295 -2.428892 -5.114709 -5.575046 -3.883288 1.966772 -0.345802 3.902758 0.621695 2.001483 0.758116 3.144546 -1.988724 -7.695757 1.428019 5.583976 -3.061103 -1.573991 -3.312800 4.136863 0.908609 0.569391 -2.556934 -1.892246 1.672441 -1.061196 2.634682 -5.320021 3.758558 -4.828913 -0.654666 -0.629014 2.107322 2.951628 2.219971 1.514017 3.684863 5.846532 -3.724698 0.123819 -5.253884 1.669399 -1.681511 1.315348 -1.715763 2.680265 1.684232 2.221785 5.500744 -7.846762 1.909393 -0.393672 -0.617913 -6.185777 0.189505 -2.027983 -1.337145 -1.924548 2.830369 -0.925836 -0.729845 -2.134870 1.717033 1.488037 -3.287059 -1.604781 1.645766 5.466007 -5.858926 1.648358 -1.034507 -1.319598 -0.685919 3.184957 5.016497 4.719305 6.956701 4.385430 0.005644 2.756260 -6.101994 0.041018 5.121522 1.175870 -4.239752 6.245364 -4.386543 -2.059656 0.740268 4.567952 3.817073 1.507030 -4.589120 -4.285235 3.770397 1.886811 6.012048 -0.065753 0.238583 -1.140011 4.095353 -0.564984 -3.347884 6.184558 2.386699 -4.740665 2.866474 1.959985 -2.735942 -2.072736 3.941610 -5.178459 -0.825078 -1.398077 0.259669 3.319317 -2.373641 -1.422650 0.597633 -4.190122 5.769218 -1.381096 -1.116180 2.642529 -3.647828 -3.982731 4.243406 0.591759 -1.388293 -3.868740 -4.262503 -3.920790 -4.043258 1.534404 0.958292 -1.277776 -2.521484 -4.959658 -1.240445 3.360144 1.387073 3.514516 -7.353973 -1.034268 2.905700 1.830284 2.982858 -1.911572 -0.342106 -0.145962 -0.498541 0.916814 -1.492129 4.312121 6.913656 -3.168939 3.561592 -0.599631 -2.329687 1.846601 2.505844 -6.846178 6.480064 1.346819 3.782447 0.488290 1.430269 -2.422060 0.835633 1.007429 -0.686765 0.250215 0.655192 -1.229067 -2.032233 -0.428504 -4.270346 -3.644806 -1.288880 1.681309 -0.783955 1.803834 -0.647683 -2.670853 -2.043615 -3.586254 1.220859 3.328277 -1.210137 -1.347393 4.203952 0.683444 0.681865 0.938364 0.364544 2.220568 2.856363 -5.893997 0.239621 -1.015545 2.386650 -3.969101 -5.503825 0.383503 -3.199335 -2.745194 2.131413 -5.679697 -0.755183 -3.546014 0.025027 -5.582498 -1.134996 1.792386 7.319646 1.557550 -2.890975 2.482054 -2.149193 2.904960 0.010600 0.301478 0.785646 3.204808 +PE-benchmarks/snake-ladder.cpp__main = -3.262137 1.156754 -0.664267 -2.419017 7.778719 -2.460685 0.162483 4.357787 -2.077737 4.641801 -2.048400 0.393341 -1.197703 -5.944790 0.877332 0.122180 0.582528 3.718656 -0.425507 2.617643 2.600268 -1.478686 0.650364 -0.517767 -1.818157 -3.334568 -0.463020 2.051790 3.201529 -3.239500 -0.665782 1.158551 6.559705 -0.898719 5.497541 4.195605 2.519908 4.187586 2.180493 -3.469563 -0.301710 2.394551 -2.579323 -4.367465 1.177028 -1.076840 -4.107819 -2.439978 2.529175 -1.933436 1.475340 4.335498 -0.847454 0.069741 -3.567692 2.979265 2.014558 -0.785530 5.432666 1.144757 -2.259937 -0.529515 -4.178085 4.944263 -2.749760 0.397322 -1.451594 -4.033712 0.305171 1.166991 1.522822 -4.455351 -2.513356 3.413059 2.019976 -3.970292 1.438427 -1.356872 -0.177004 -5.528186 -4.788568 1.559555 -2.226847 4.062668 0.003906 1.611300 -1.087276 1.861854 -0.837208 -5.999376 0.812796 4.255410 -2.949524 -0.023352 -2.998232 3.407003 0.749230 -0.124381 -2.667138 -2.955966 1.455724 -1.436004 2.645994 -1.257986 3.097018 -2.687650 -0.136183 -0.663010 1.705142 3.219996 2.537226 1.299528 2.956779 4.054349 -1.928308 -0.364034 -5.837766 2.120433 -1.648286 1.200195 -1.409787 2.502112 2.670219 1.185845 4.315913 -6.848397 2.427969 0.202507 -0.305711 -4.269200 0.956514 -1.118267 -1.588961 -2.084809 3.708011 -0.901960 -0.972961 -1.415479 1.869504 1.362556 -3.782073 -1.485564 0.082365 4.241179 -5.176560 1.486134 -1.423332 -2.415238 -0.146456 1.958592 3.447450 4.262631 5.937901 4.536182 -1.178631 2.105319 -6.300204 0.626814 5.216475 0.965320 -4.009098 4.907331 -3.515452 -1.319181 1.429081 4.493886 3.447374 0.330740 -2.674056 -2.393131 2.835232 1.590279 5.462365 -0.230023 0.827019 -2.566749 1.978300 0.660627 -1.800246 7.222249 1.127736 -5.045532 2.472871 2.645628 -1.462315 -2.005742 2.404316 -4.029687 -1.262451 -2.329205 1.832567 3.320882 -3.251486 -1.615557 0.702570 -3.861136 4.109376 -1.382501 -2.278946 2.152943 -4.326122 -1.425594 5.955312 0.520219 -0.894477 -3.185273 -4.799575 -1.371679 -4.681740 1.614573 0.570726 -0.747177 -1.706691 -4.210120 -1.306482 4.816186 0.937162 2.324102 -6.632509 -0.205490 2.863589 1.389311 1.842824 -3.961100 -0.630590 0.755028 0.088887 0.758770 -1.432385 2.387252 5.745041 -3.904251 1.595914 1.614251 -0.900973 1.932132 2.640651 -5.779142 6.049643 0.812620 4.341227 0.417116 1.487625 -2.320872 0.538368 0.327156 1.148259 -0.702765 0.970617 -1.921804 -1.830927 0.909832 -2.762941 -4.072833 -0.665354 2.605165 -0.175918 1.602205 -1.623228 -1.867291 -1.348316 -2.799355 1.642882 3.498345 -1.089466 -1.977354 3.485743 1.531547 -0.515271 0.818127 0.577934 2.057784 3.768361 -5.539782 1.064641 -0.637619 2.524990 -3.398440 -5.661219 1.170592 -2.598786 -1.453692 2.508786 -5.937088 -2.025752 -3.128916 1.410177 -5.011451 0.387906 0.805579 5.879650 1.833295 -1.679085 2.775585 -1.451815 2.239080 -0.418089 -0.071339 0.854987 3.670540 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -1.146762 0.922798 0.093959 -1.091621 2.160323 -0.591979 0.156336 0.955829 -0.152594 1.257132 -1.383216 0.182865 -0.414924 -1.756175 0.168183 -0.327947 0.128409 1.299044 -0.323373 0.661140 0.914653 -0.567463 0.397924 -0.810706 -0.452039 -1.415203 -0.091949 0.386265 0.249549 0.069412 0.243573 0.260540 1.735539 0.032375 1.108746 1.160057 0.412878 1.952067 0.616325 0.065927 0.415000 0.808427 -0.475112 -2.046986 0.785689 -0.696149 -0.986863 -1.252011 0.701899 -1.752550 0.806518 1.110647 0.064507 -0.572493 -1.371297 0.564214 1.484691 0.155254 1.594399 0.535572 -0.767921 -0.102543 -1.055427 0.722224 -1.213129 0.415628 0.375044 -1.462866 -0.203638 0.960349 0.632138 -0.787686 -1.120716 0.181408 0.364758 -1.033527 0.425821 -0.391619 -0.724164 -0.882173 -0.877261 0.283096 -0.469780 1.243720 -0.156081 0.263507 -0.537076 0.150807 0.381423 -1.200460 -0.553944 1.305251 -0.317281 0.377428 -0.557602 1.123699 0.622935 -0.587721 -0.707034 -0.522250 0.381953 0.057159 0.648158 -0.017614 -0.717513 -1.069149 0.773156 0.526899 -0.149315 0.789427 0.270313 0.654397 0.250165 0.616948 -0.862570 0.710146 -2.116007 0.486962 -0.115306 0.257662 -0.283882 0.264105 0.431238 0.127099 0.832280 -1.597936 1.642235 0.388481 -0.281250 -1.035874 0.710615 0.124846 -0.530806 -0.402857 1.010471 -0.030331 -0.226949 0.002733 0.229936 -0.142168 -0.862628 -0.897380 -0.298090 1.581547 -1.175258 0.417667 -0.474243 -0.786230 -0.009721 0.204256 0.449025 0.544985 1.674801 1.210779 -0.286932 0.523259 -1.505103 0.442365 2.067280 1.024632 -1.225713 0.887674 -0.299449 -0.033891 0.640811 0.561012 0.655217 0.725442 -0.936332 -0.944158 -0.002660 -0.451281 1.464120 0.880481 0.548738 -1.756176 1.089370 0.165132 0.156152 2.242162 0.832003 -1.532899 0.485865 1.336149 -1.362856 -0.755361 0.285980 -0.385021 -0.364410 -0.493855 0.520033 0.711465 -1.202983 -1.467180 -0.461113 -1.288708 1.263805 -0.183907 -0.162129 0.202662 -1.337912 -0.372292 1.779547 0.294584 -0.449496 -0.500383 -0.990091 -0.724946 -1.875892 0.408211 0.600215 -0.722529 -0.698989 -1.062062 -0.219968 1.256576 -0.539664 0.013738 -1.283830 -0.327814 0.886176 0.360198 0.341051 -1.594441 -0.396041 0.186560 0.187539 0.552001 0.010483 0.708863 1.686537 -1.081263 0.605834 0.947775 0.079044 0.706410 1.449336 -1.055763 1.645289 -0.402018 1.481619 0.139319 0.717579 -0.499077 0.130451 0.000962 -0.129667 -0.318105 0.793932 -1.242156 -0.443605 0.785075 -0.835446 -0.794475 0.689979 1.063313 0.668376 0.127846 0.098019 -0.551029 -0.232376 -0.533611 0.093052 1.071464 -0.168345 -1.378324 0.243651 0.871717 -0.692790 -0.786792 0.394618 0.644730 1.250888 -1.431979 1.101719 -0.097920 -0.180121 -1.521230 -1.252191 0.791378 -0.943498 -0.977737 0.826666 -1.908850 -0.642942 -0.751600 1.077760 -1.448031 -0.003089 -0.176138 1.362391 0.451628 0.052309 1.078071 -0.238099 0.834597 -0.045501 -0.085253 0.138537 1.530060 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -5.889354 3.078376 3.131836 -5.977255 13.323889 -2.470060 0.048346 5.126806 -1.839722 9.305380 -4.169092 -2.163992 -3.381367 -11.874518 1.113057 -5.561582 -1.007977 4.820569 -0.556409 6.728050 4.967154 -4.313501 2.106620 -1.100517 -3.605206 -8.080295 -2.071131 3.879467 6.830973 -4.504719 3.027812 0.023925 11.012395 -1.243038 9.279635 7.405857 2.904278 8.193851 1.549566 -3.615536 -1.943699 4.975639 -5.685028 -7.719401 1.764867 -2.045167 -7.868264 -4.970878 4.657338 -4.405105 -1.775212 8.996027 -2.063169 -0.795301 -7.008341 5.584637 2.801012 0.992121 10.071479 1.508008 -2.424436 -1.026058 -10.715230 5.157544 -4.702803 1.613178 -3.190050 -6.177091 1.187101 0.818268 -1.695069 -5.228649 -3.105519 7.367925 5.780131 -7.736105 2.216395 -4.369355 -7.167451 -7.940277 -7.289598 3.393724 -1.312878 7.900701 0.578329 3.830625 2.368086 4.969580 -2.304497 -12.052638 2.015461 8.461107 -4.547105 -3.496897 -3.364843 8.252167 1.273848 0.262632 -4.659885 -2.564965 2.799092 -1.954875 5.411653 -3.910175 2.155079 -8.873885 0.676341 -0.272074 2.461260 3.995397 5.012190 1.904699 4.759568 8.727505 -7.889119 1.991616 -10.140186 2.650746 -4.256485 3.322390 -3.510706 5.727334 2.656892 4.006731 8.095118 -12.958580 4.558578 0.518307 -1.158977 -8.354043 1.378561 -2.887681 -2.679275 -2.894360 5.881039 -1.770772 -1.728182 -2.949410 2.758994 2.433939 -3.819264 -0.749160 1.894446 8.040584 -7.704144 3.103312 -2.203359 -4.128391 -0.393553 3.998075 6.944953 7.654819 12.068012 8.347259 -1.766286 3.423115 -10.676786 0.744632 9.954475 -0.371026 -7.130167 9.411699 -5.935125 -2.503350 1.223637 7.832132 7.733634 3.300872 -6.706949 -5.974364 4.877360 2.605860 10.147009 1.149553 1.197926 -5.028520 5.744917 -0.943588 -3.043420 11.761431 4.209575 -8.413641 3.461983 4.477183 -7.966985 -4.849276 4.982664 -5.760321 0.678378 -4.157222 2.292023 5.867655 -4.653969 -4.326725 -0.493276 -7.698757 8.154410 -2.877326 -1.182245 4.437514 -6.791652 -7.409783 9.948543 0.446376 -3.018777 -7.248983 -8.942251 -3.818635 -8.254785 3.940258 1.355239 -2.341945 -3.579810 -7.876978 -1.359247 7.143067 1.911891 5.108564 -10.061953 -1.641909 4.797730 3.135679 5.357099 -3.659372 -0.850072 0.530937 -1.064559 2.300040 -1.246733 5.073421 11.553571 -6.727518 5.208045 -0.577974 -3.665968 3.398974 5.582383 -10.987015 12.229429 1.384176 8.686103 -0.632308 2.941291 -3.286336 1.851161 2.366030 -3.016716 1.258901 1.631995 -2.854990 -4.002747 1.760554 -6.229201 -6.596951 -1.373767 4.272460 -1.274629 3.619981 0.261043 -5.284531 -2.658913 -3.455203 2.965300 6.943384 -0.505728 -3.597291 5.889238 3.183781 0.875834 -1.929213 0.830475 3.422437 6.442848 -10.880424 1.761912 -2.021066 3.140568 -5.735358 -9.361135 2.416864 -5.878823 -3.073826 4.224889 -9.853733 -0.908280 -6.821245 1.618456 -7.405897 -1.308769 1.772579 10.571914 4.611765 -4.121030 4.223944 -3.220180 4.959145 -0.620579 -1.179366 3.105249 6.631002 +PE-benchmarks/m-coloring-problem.cpp__main = -1.039642 0.174710 -0.181499 -0.617445 2.082562 -0.573248 -0.084639 1.137465 -0.042717 1.256092 -0.759821 -0.427303 -0.603573 -1.551068 0.250988 -0.034894 0.212122 1.077606 -0.388673 0.389774 0.926410 -0.309012 0.226859 -0.323460 -0.308625 -0.825252 -0.306211 0.429795 0.763949 -0.531525 -0.456460 0.322262 1.824705 -0.118134 1.457388 1.116200 0.825982 1.449163 0.263417 -0.317552 -0.065884 0.967098 -0.758628 -1.547897 0.634702 -0.630671 -0.999260 -0.763861 0.823793 -0.774248 0.786321 1.208264 -0.213212 -0.041063 -0.833805 0.670863 0.645900 0.282537 1.594890 0.467970 -0.673676 -0.029078 -1.277451 1.151211 -0.909489 0.623766 -0.286071 -1.459923 -0.342514 0.254143 0.542020 -1.121780 -0.858849 0.834431 0.495393 -0.926869 0.574109 -0.304487 0.253227 -1.220254 -1.590364 0.256793 -0.743530 1.192944 -0.204990 0.252946 -0.355944 0.354096 -0.010318 -1.596211 0.044325 1.183504 -0.801608 0.379711 -0.700172 0.482199 0.089380 0.055626 -0.788411 -0.666383 0.363886 -0.168187 0.730104 0.016411 0.497022 -0.684913 0.447452 0.052223 0.439787 0.639610 0.820897 0.202633 0.611592 1.066059 -0.537783 0.106868 -1.523832 0.587847 -0.438869 0.425672 -0.254828 0.743975 0.745921 0.018935 1.135244 -1.776396 0.804343 0.114792 -0.292264 -1.007938 0.447369 -0.469451 -0.655502 -0.583196 1.173666 -0.158706 -0.438594 -0.426729 0.508681 0.156481 -1.084923 -0.230612 -0.254857 0.741852 -1.183918 0.269847 -0.552514 -0.927714 -0.027781 0.539225 0.734914 1.131188 1.611692 1.368825 -0.491250 0.131123 -1.655633 0.366363 1.620346 0.061229 -1.272186 1.077038 -0.808257 -0.017803 0.659542 1.004968 0.933372 0.507707 -0.276456 -0.283160 0.154309 0.316593 1.564170 0.394147 0.536201 -0.952092 0.323506 -0.038456 -0.459975 2.133948 0.532554 -1.531330 0.497531 0.739131 -0.662816 -0.566209 0.435864 -0.825376 -0.180968 -0.909038 0.597236 0.990278 -1.168191 -0.692879 0.332574 -1.253577 1.278290 -0.315474 -0.308881 0.693277 -1.579923 -0.326087 1.818298 0.236771 -0.352342 -0.879370 -1.222949 -0.465081 -1.408862 0.576895 0.145891 -0.256750 -0.690344 -1.176077 -0.242426 1.523139 0.193089 0.550588 -1.442951 -0.047925 0.729328 0.043860 0.750868 -1.101242 -0.414443 0.046966 -0.154634 0.537747 -0.307239 0.333559 1.666343 -1.198805 0.450267 0.755054 -0.261118 0.323984 0.902927 -1.378909 1.601157 0.028486 0.889683 -0.067549 0.645842 -0.681266 0.141803 0.109623 0.368206 -0.201652 0.572604 -0.600831 -0.419790 0.347834 -1.082547 -0.884852 0.031171 0.639155 0.291411 0.407564 -0.407051 -0.784103 -0.235907 -0.517070 0.305991 1.185533 -0.150108 -0.835796 0.640747 0.193233 -0.417375 -0.239634 0.340575 0.316458 1.283875 -1.520323 0.288005 -0.023875 0.341318 -1.010287 -1.260864 -0.012352 -0.724349 -0.442528 0.986905 -1.532075 -0.436785 -0.900729 0.495695 -1.152378 0.035579 -0.056853 1.558278 0.768988 -0.327821 0.995805 -0.146838 0.845789 0.004105 -0.301731 0.284362 1.158523 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.840696 0.580212 0.244292 -0.657502 2.153840 -0.551455 0.114548 0.913189 -0.237198 1.439966 -0.544190 -0.410427 -0.191843 -1.550578 0.279832 -0.556475 -0.111648 0.906102 0.017020 0.726189 0.572767 -0.475403 0.021760 -0.003138 -0.525164 -1.198355 -0.432784 0.650952 1.154021 -1.095856 0.098679 0.287302 1.819077 -0.351722 1.804240 1.315683 0.667264 0.845608 0.472930 -0.636617 -0.137789 0.551583 -0.862469 -0.948702 0.025007 -0.125826 -1.311073 -0.599221 0.579352 -0.338053 0.103645 1.267063 -0.367649 0.166528 -0.802906 1.040624 0.194094 0.078083 1.473259 0.284430 -0.516250 0.101087 -1.503300 1.532801 -0.623497 0.152964 -0.846601 -1.307043 0.174530 0.194355 0.011191 -0.994062 -0.434248 1.373452 0.764281 -1.146847 0.325706 -0.552471 -0.679557 -1.366799 -1.238579 0.680512 -0.330369 1.148971 0.198211 0.469373 -0.034139 0.696331 -0.492760 -1.924929 0.349362 1.486722 -0.914006 -0.329080 -0.604145 0.884849 0.480624 0.205729 -0.469568 -0.843903 0.455061 -0.540553 0.696577 -0.358383 0.983063 -0.987071 -0.272362 -0.121386 0.482515 0.990445 0.711718 0.406055 1.066832 1.404144 -0.937613 -0.307100 -1.291933 0.717508 -0.760686 0.305991 -0.382557 0.787645 0.499841 0.686725 1.323744 -2.009197 0.385509 -0.001277 -0.078000 -1.278328 0.015623 -0.596719 -0.497020 -0.600015 0.814789 -0.106180 -0.229603 -0.501089 0.347132 0.442726 -0.546933 -0.309349 0.258529 1.109482 -1.323310 0.394263 -0.253573 -0.494835 -0.265061 0.812299 1.329283 1.374722 1.759125 1.286502 -0.197732 0.337695 -1.801075 0.028559 1.343950 -0.245320 -1.054382 1.669917 -1.186772 -0.564761 0.272676 1.467232 0.913534 0.166705 -0.916194 -0.786692 0.594011 0.532182 1.563139 -0.104759 -0.096188 -0.465812 0.763181 0.010762 -1.047554 1.952860 0.396259 -1.322868 0.518756 0.644133 -0.904214 -0.721189 0.999676 -1.465621 -0.152684 -0.696592 0.299405 0.931328 -0.696623 -0.197910 0.410170 -1.119921 1.287049 -0.383054 -0.582414 0.661793 -1.017465 -1.119589 1.774212 0.157539 -0.189671 -0.988733 -1.270673 -0.277972 -1.071953 0.381173 0.176202 -0.281509 -0.479625 -1.193227 -0.205837 1.279510 0.274613 1.050079 -1.652481 -0.164242 0.743773 0.367862 0.646188 -0.697933 -0.146770 0.022517 -0.132034 -0.005649 -0.422466 0.838820 1.814629 -0.896456 0.585644 0.152014 -0.878834 0.452286 0.556900 -1.839584 1.795324 0.289190 0.808462 0.219702 0.371130 -0.729593 0.042735 0.255264 -0.116737 -0.172490 0.226568 -0.338831 -0.447865 0.098791 -1.006883 -1.114217 -0.333781 0.628626 -0.224883 0.466544 -0.362877 -0.842224 -0.357521 -0.731390 0.484351 0.907858 -0.075021 -0.337417 1.205618 0.316671 0.068346 -0.122617 0.056384 0.482242 0.927065 -1.606777 0.104160 -0.108259 0.867557 -0.986101 -1.597846 0.169018 -1.041031 -0.383303 0.277642 -1.564009 -0.448718 -1.013756 -0.003234 -1.340844 -0.146870 0.643849 1.947317 0.633577 -0.860458 0.574984 -0.554686 0.690959 -0.011482 -0.066819 0.347110 0.876334 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -2.081574 1.302263 -0.421742 -1.633707 4.255258 -1.055580 0.244203 1.181563 -1.456522 3.332599 -1.294814 -0.462011 -0.923878 -4.193485 0.434884 -0.870955 0.036005 1.746194 0.289186 2.227804 1.531675 -2.372486 0.527821 -0.258664 -1.107905 -3.044474 -0.366658 1.392753 2.946308 -2.458815 0.723340 0.325265 3.875344 -0.526122 3.154381 2.737339 0.704419 2.601551 1.408266 -2.390201 -0.813967 1.672278 -1.842794 -2.452506 0.478697 -0.430065 -2.583315 -1.527431 1.574244 -0.877221 -0.563643 3.093538 -0.947443 -0.124890 -2.883816 2.031925 1.856183 -0.166468 3.776433 0.386310 -0.289144 -0.669565 -2.951444 2.707363 -1.769462 -0.701749 -0.893188 -2.210980 1.084415 0.282085 -0.711469 -1.593492 -1.180042 2.796518 1.886071 -2.970467 0.467105 -1.323915 -3.187534 -3.496681 -2.739677 0.978450 -0.602555 2.989401 0.337342 1.226078 0.839744 1.627222 -0.744293 -4.299485 0.844480 2.756411 -1.469398 -0.873643 -0.762996 3.566376 0.874952 -0.038395 -1.947463 -1.065093 0.699297 -1.233981 1.848846 -1.512345 1.329092 -2.613580 -0.323618 -0.962526 0.996894 1.988442 2.607891 0.661352 1.820139 3.008490 -2.827637 -0.683250 -3.139238 1.001346 -0.574123 0.789849 -0.823452 1.756305 0.897065 0.762777 3.141957 -4.724043 1.240869 0.119833 0.152568 -3.384188 0.116960 -1.020390 -0.800977 -1.237610 2.064343 -0.767429 -0.354214 -1.015487 0.848121 1.219472 -1.883573 -0.125410 0.705550 3.878074 -3.072822 1.169451 -0.787333 -1.493519 -0.196405 1.194566 2.409571 2.916230 3.984118 3.016344 -0.622025 2.342818 -3.644408 0.308884 3.604871 0.989868 -2.576642 3.386297 -2.291869 -1.061280 0.603247 2.829362 2.896311 -0.047183 -2.431312 -2.012036 2.402350 0.967724 3.439517 -0.724654 0.236402 -1.274897 2.601403 1.454364 -1.514204 4.240209 0.701441 -2.818409 2.328164 1.618845 -2.723601 -1.013775 1.967077 -2.408686 -0.076155 -1.577579 0.853652 2.074627 -1.701578 -0.837182 -0.389255 -2.616011 2.974755 -0.899277 -0.675453 1.984316 -2.386838 -2.360055 3.072203 0.168228 -0.601374 -2.602363 -2.972092 -1.790499 -2.800360 1.128865 -0.048837 -1.172218 -1.076412 -2.947777 -0.883152 2.781006 0.904968 1.901205 -4.547503 -0.134022 1.731652 1.944830 1.310049 -0.877980 -0.412438 1.108322 0.128580 0.269665 -0.496238 2.295963 3.703971 -2.448385 1.191115 -0.644245 -0.789119 2.048477 1.464539 -4.061321 4.052242 0.489857 2.905101 0.092346 0.954024 -1.365750 0.530484 0.895866 -0.389319 -0.085805 0.106523 -1.059387 -1.308690 0.896361 -1.877868 -2.713646 -0.690962 1.278551 0.210155 1.211666 -0.560817 -1.259035 -0.789762 -1.139754 1.076631 2.182021 0.213870 -0.630592 2.287511 0.911158 1.035200 0.211181 0.266383 1.193611 1.975831 -3.779227 0.485109 -0.922883 1.425458 -1.516818 -3.805961 1.052017 -1.850648 -1.156014 2.132914 -4.057798 -0.088805 -2.319639 0.290274 -3.063264 0.534313 0.411746 4.018000 1.008970 -1.532809 1.627976 -1.195204 1.481985 -0.571064 0.033524 0.749359 2.274827 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -4.335362 6.372661 3.053639 -2.914052 8.380340 1.230281 -0.589628 3.949594 -3.674112 9.064468 -4.251807 -0.790068 -2.017457 -6.251678 -0.472910 -4.835360 -2.819899 1.447007 -0.376028 3.485692 3.184691 -4.230829 0.272865 -0.493272 -3.135888 -7.280545 -1.109903 1.695618 8.301050 -3.856648 0.462621 -1.127511 6.994022 -1.343830 6.264281 5.137576 2.704069 6.030504 0.115200 -0.141856 -3.743476 3.854540 -5.324017 -2.661291 0.546258 -3.256148 -4.571540 -1.971814 2.582000 -0.795024 1.067669 6.219469 -2.064589 0.243682 -4.153447 6.637830 0.805506 0.814783 10.002217 0.509702 -0.725903 -3.045235 -9.507162 6.165791 -2.387036 1.954511 -2.329618 -3.318989 2.123031 -2.213587 -0.584804 -4.100544 -0.828959 8.969622 3.045786 -6.432857 0.450829 -4.449488 -12.760834 -6.310729 -5.623062 2.146522 1.443618 5.118318 0.968316 2.349929 0.191228 5.834104 -3.205067 -11.592886 2.040442 8.333964 -3.430904 -1.697764 -5.490124 6.624814 -0.458848 2.601464 -4.032517 0.310067 2.461392 0.803609 3.124802 -10.911060 2.238873 -10.526382 2.803736 -1.044324 0.473893 -0.250125 4.219223 0.300559 5.600451 9.954959 -7.372986 0.434905 -7.299550 0.388849 1.286918 2.285264 -1.397957 4.311025 -2.832337 2.222184 8.045506 -11.346529 1.460584 -1.146488 -3.380412 -10.249690 -0.820517 -4.663452 -2.215039 -2.222220 2.841931 0.025419 -1.171331 -4.142737 1.455713 0.943465 -4.270182 -3.828689 4.666598 9.310496 -6.230323 1.251271 -1.507920 -1.640722 -2.420834 5.011925 6.801849 5.621243 10.176430 5.515735 1.724346 2.870742 -6.512585 -1.290591 5.839664 4.088790 -6.857847 8.001527 -5.921365 -1.843593 0.563868 5.370769 5.111249 3.669804 -7.638036 -7.812844 4.365151 1.948217 8.086992 1.000983 0.902270 2.020459 8.271443 -2.307315 -7.260978 6.877401 5.297773 -4.356577 0.833334 0.533901 -4.091414 -2.328186 6.802963 -5.847510 1.620180 -1.370392 -0.938812 3.167576 -1.878854 -1.031908 0.509846 -6.241711 10.037704 -1.345787 2.954476 3.862705 -5.884476 -8.092650 3.959074 -1.603364 -3.322061 -5.422760 -4.256970 -7.618602 -3.954198 2.640011 1.578931 -2.476851 -5.294710 -7.171265 0.566720 4.399347 1.784586 4.597399 -7.317353 -5.508966 3.003107 1.148815 6.749756 -0.786993 -0.897870 -1.629943 0.686449 3.827693 -0.959113 8.064242 12.201107 -3.118655 5.837372 -3.117071 -2.107912 0.997212 4.634755 -9.331752 7.669068 1.233953 1.934358 -1.005115 2.197478 -2.792950 0.768770 2.787099 -0.385734 2.743180 0.632648 0.295339 -2.059707 -2.936396 -8.458114 -1.791467 -1.597684 0.252332 -2.618548 2.431595 0.771161 -3.201546 -3.026412 -5.764193 0.149555 4.904092 0.607079 0.052338 4.695145 -2.075874 2.203697 4.431979 0.597573 1.641501 3.663511 -7.046955 -1.988334 -1.802630 0.241891 -4.488441 -8.083505 -2.759975 -4.307627 -5.148439 3.804731 -7.149484 1.364387 -5.096582 -1.449155 -8.126187 -2.626301 1.857114 9.584961 4.250593 -3.984194 2.586044 -2.518988 5.826560 0.666129 -0.755486 2.571512 4.908524 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -16.550174 30.516230 14.775901 -10.935828 33.155334 7.163179 -1.568956 14.447993 -21.541113 40.138915 -15.512706 -0.070453 -7.113560 -26.542829 -2.601201 -22.847464 -13.420873 2.248532 2.453349 17.340655 11.172739 -22.432430 0.260187 0.512931 -14.251495 -35.635360 -2.095844 7.549201 42.656555 -19.360524 3.067175 -6.321983 27.762190 -7.055449 26.058947 21.329771 10.541862 21.378080 2.617418 -9.089913 -20.034205 14.399472 -23.399348 -5.850742 -1.584794 -11.373685 -19.278349 -6.142049 9.889194 2.804830 -3.463335 26.505337 -10.683143 2.181743 -19.276534 30.930790 1.681228 1.378552 43.227459 -0.675483 2.552904 -18.827222 -40.703449 26.795416 -7.614645 1.199414 -13.004576 -8.068686 15.244010 -12.467727 -10.397123 -13.967065 2.655424 42.866910 15.504524 -29.327424 -1.111991 -20.437751 -65.916444 -28.791806 -21.909495 9.579357 8.628356 21.815056 6.991520 11.948037 4.692867 28.419784 -16.547995 -52.153607 12.447411 36.257247 -13.703561 -13.502623 -21.324489 35.389787 -0.419645 12.220457 -16.361008 2.740075 10.175109 1.420913 13.276290 -56.948437 13.725480 -49.571766 8.372486 -9.499694 2.845023 -0.358256 18.703306 -0.262297 26.038296 45.837369 -35.617474 -2.046757 -30.062796 -0.384849 7.610209 9.170134 -6.409621 19.609019 -16.107818 12.192561 36.222699 -51.522253 2.115055 -5.649946 -11.655478 -47.487796 -7.102651 -21.004970 -6.550416 -8.986128 9.642746 -1.109277 -3.420028 -19.105116 6.227921 6.673255 -17.507912 -15.724577 25.298697 46.649616 -29.308220 6.435564 -4.949023 -4.291797 -11.147444 21.600742 31.504295 25.122305 43.618545 23.026001 9.360065 20.221143 -26.499738 -7.983988 21.735906 17.899607 -27.884953 36.963257 -28.518897 -11.450252 -1.089797 24.740437 23.708600 13.081706 -38.610941 -38.313563 25.905513 10.473339 33.169630 -1.006980 0.995755 15.364960 41.132331 -8.741674 -35.019788 24.000400 20.432429 -15.540888 6.239707 -0.364132 -19.328216 -7.545458 32.213768 -28.425154 10.054895 -5.055183 -6.423703 12.984106 -4.385695 0.748547 -0.148477 -24.681525 43.367841 -5.754292 14.080654 17.477775 -19.655693 -37.414548 12.555734 -9.463718 -13.498946 -25.442113 -18.351166 -37.725089 -12.970823 10.227474 4.189253 -11.941572 -21.790672 -31.516134 1.185717 16.284223 10.745013 22.006778 -36.450131 -24.097912 12.205592 11.830203 28.722788 3.629539 -2.054669 -5.044854 3.521703 13.894227 -4.622679 40.855999 52.108599 -11.392618 26.138915 -25.230464 -10.975012 7.404817 16.941179 -43.168316 31.874231 8.069349 8.957556 -3.597985 7.218944 -11.581196 3.964082 13.495322 -5.465282 14.089170 -1.357713 4.203916 -9.425565 -14.363362 -34.774332 -9.096822 -10.900872 -0.716132 -14.408747 11.188249 3.861950 -11.318079 -13.970265 -27.795931 1.430181 18.556880 3.239658 6.313974 22.733779 -9.680179 15.852883 23.868868 0.964926 7.350347 11.368463 -29.438163 -11.972060 -10.220594 3.605259 -15.175764 -38.443553 -11.330649 -17.481388 -21.742836 15.597388 -31.476405 9.430123 -21.933346 -10.615323 -38.750651 -10.926670 10.054180 41.945558 15.726050 -18.641343 8.088948 -13.016113 22.772520 1.511588 -0.333812 11.605202 18.274373 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -1.183414 0.325578 -0.327213 -0.746909 2.799528 -0.810109 0.125109 1.799251 -0.453960 1.533752 -0.886375 0.010787 -0.401673 -1.685683 0.310223 0.181213 0.219720 1.403370 -0.460978 0.476224 0.959402 -0.108997 0.173070 -0.305002 -0.546997 -0.853132 -0.272338 0.589643 0.809220 -0.706141 -0.582844 0.461844 2.184673 -0.318563 1.834141 1.356442 1.076607 1.521425 0.493286 -0.503791 0.157421 0.869695 -0.811960 -1.671500 0.545214 -0.630042 -1.382208 -0.795688 0.865123 -1.047731 1.185329 1.321331 -0.139548 0.034360 -0.836592 1.040206 0.649568 -0.118280 1.832594 0.561953 -1.237377 -0.113339 -1.395359 1.920557 -0.891281 0.711611 -0.435695 -1.870675 -0.396331 0.545123 0.908848 -1.700013 -1.036383 0.982655 0.428347 -1.137631 0.689951 -0.338870 0.687030 -1.605150 -1.646883 0.447186 -0.887010 1.285324 -0.179387 0.327473 -0.850644 0.389107 -0.155242 -1.905526 -0.018077 1.550738 -1.132022 0.533332 -1.331490 0.418646 0.159734 0.044169 -0.885272 -1.107692 0.493552 -0.145199 0.768870 -0.283794 0.785392 -0.708234 0.245080 0.132713 0.538973 1.026963 0.618878 0.493041 0.893100 1.277580 -0.340654 0.105999 -1.917879 0.857649 -0.626889 0.444670 -0.438997 0.743924 1.044950 0.280540 1.398432 -2.113199 0.986058 0.030082 -0.352582 -1.309311 0.486892 -0.422553 -0.758493 -0.695154 1.298445 -0.146694 -0.450413 -0.479320 0.652520 0.219451 -1.396761 -0.680316 -0.208585 0.897653 -1.664182 0.313324 -0.548618 -0.834584 -0.127912 0.784851 1.071750 1.314110 1.918298 1.486875 -0.332217 0.330338 -2.151119 0.378852 1.824709 0.460224 -1.458681 1.454106 -1.181869 -0.145041 0.767787 1.257722 0.855748 0.528000 -0.555568 -0.507788 0.528348 0.439716 1.896706 0.407148 0.474117 -1.170501 0.281799 -0.315967 -0.568396 2.595346 0.717926 -1.967459 0.565666 0.891950 -0.245797 -0.650388 0.692241 -1.313557 -0.600035 -0.829614 0.607816 1.168982 -1.272922 -0.752835 0.574282 -1.368700 1.512199 -0.402806 -0.737567 0.564988 -1.780075 -0.107175 2.226898 0.369388 -0.334833 -0.824545 -1.400153 -0.497231 -1.675672 0.477208 0.393230 -0.201856 -0.801207 -1.379000 -0.360508 1.753747 0.091763 0.658652 -1.902726 -0.088565 0.957341 -0.073376 0.720153 -1.744174 -0.353956 -0.174112 -0.053881 0.498270 -0.605943 0.512003 1.964446 -1.271056 0.660214 1.145619 -0.277810 0.272393 1.016193 -1.682801 1.924604 0.144539 1.210937 0.120860 0.651334 -0.881785 0.089318 -0.098449 0.696037 -0.404997 0.705021 -0.768323 -0.469992 0.289765 -1.215731 -1.133628 0.053824 0.901866 0.101122 0.411483 -0.601547 -0.802786 -0.493385 -1.069272 0.351104 1.236717 -0.537147 -1.003997 0.968200 0.266644 -0.711778 -0.019916 0.304910 0.624691 1.459934 -1.748024 0.367529 0.075188 0.560921 -1.542216 -1.672220 0.039393 -0.906617 -0.677067 0.741712 -1.850700 -0.904913 -0.956119 0.632743 -1.722646 -0.140305 0.223919 2.010166 0.685319 -0.386104 1.131895 -0.266518 0.973197 0.005599 -0.076168 0.246031 1.276127 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -2.171086 1.450566 0.523883 -1.741498 4.952780 -1.060506 0.216889 1.842566 -0.487533 3.471566 -1.744564 -1.334396 -1.347828 -4.312722 0.338241 -2.023367 -0.370652 2.303297 -0.383473 1.714517 1.830818 -1.591956 0.484744 -0.522098 -0.993955 -3.175180 -0.813889 1.119259 2.669740 -1.966680 0.626443 0.183079 4.301561 -0.368104 3.169508 2.618357 1.113385 3.152494 0.606939 -0.509395 -0.678642 1.981261 -1.903457 -2.922415 0.779943 -0.870903 -2.513420 -1.738629 1.606801 -1.571564 0.418421 2.997339 -0.755697 -0.213721 -2.219258 2.236368 1.466666 0.850207 3.783071 0.668639 -0.673729 -0.184419 -4.055720 2.655351 -1.802381 0.857730 -0.805162 -2.575922 0.177668 0.059161 -0.136868 -1.929225 -1.166746 2.894782 1.898778 -2.596466 0.637746 -1.424839 -3.522955 -2.774982 -3.303326 0.856433 -0.694639 2.751320 0.040509 0.955287 0.626758 1.616103 -0.618304 -4.391973 0.443561 3.489344 -1.459628 -0.562170 -1.538610 2.368668 0.456626 0.251817 -1.796478 -1.118763 0.843213 -0.551442 1.764995 -1.730605 0.322630 -3.257356 0.670931 0.013721 0.543603 1.253160 2.479844 0.418007 1.507099 3.261931 -3.121152 0.415364 -3.784865 0.988076 -0.765708 1.074124 -0.678227 1.807765 0.392068 1.046848 2.919375 -5.145984 1.564133 0.020462 -0.672080 -3.319758 0.383601 -1.235140 -1.124337 -1.206368 2.074449 -0.295360 -0.710184 -1.082741 0.752123 0.721390 -1.811704 -0.695550 0.653846 3.118145 -2.966359 0.839957 -0.957479 -1.618631 -0.467793 1.477910 2.414629 2.592353 4.167381 2.990622 -0.438345 1.080320 -3.793560 0.227564 3.535146 0.233257 -2.765236 3.254800 -1.979497 -0.539043 0.717306 2.855746 2.499715 1.246809 -2.241273 -1.952776 1.420712 0.627722 3.503773 0.679654 0.376555 -1.466439 2.417063 0.059150 -1.932604 4.795125 1.814046 -2.820546 1.206513 1.359339 -3.047302 -1.753163 1.829804 -2.103540 0.252344 -1.566111 0.790372 1.876242 -1.698013 -1.331516 0.090674 -2.819019 3.376546 -0.868300 -0.320692 1.788163 -2.905393 -3.019894 3.734197 -0.042545 -1.044094 -2.451207 -3.030861 -1.865939 -2.760839 1.387532 0.371470 -0.974811 -1.710033 -2.804687 -0.157557 3.252440 0.521281 1.873564 -3.402164 -0.996454 1.535021 0.933309 2.154822 -1.690580 -0.612854 0.099888 -0.016715 0.990992 -0.027356 1.933509 4.627859 -2.279295 1.858635 0.074837 -1.385300 0.998698 2.133441 -3.935841 3.881096 0.080376 2.365959 -0.339335 1.119420 -1.265599 0.387556 1.035477 -0.323956 0.252521 0.621792 -0.831415 -1.073654 0.211766 -3.091705 -2.103607 -0.221069 1.159239 0.054832 1.149932 -0.216325 -1.864587 -0.703778 -1.167195 0.580882 2.500826 0.383009 -1.179782 1.823431 0.402431 0.207808 -0.161117 0.418417 0.857704 2.262199 -3.555188 0.358903 -0.611140 0.877173 -1.970425 -3.772782 0.269264 -2.334268 -1.665299 1.784494 -3.615156 -0.338691 -2.325623 0.497021 -3.321572 -0.429591 0.377694 3.974424 1.889822 -1.199777 1.747257 -0.877927 2.113028 -0.093070 -0.631213 1.170658 2.584803 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -1.143544 0.942922 0.059458 -1.083961 2.157579 -0.572160 0.147687 0.960403 -0.202891 1.275132 -1.367121 0.203585 -0.398263 -1.773219 0.163410 -0.287509 0.126905 1.285876 -0.292112 0.686304 0.905004 -0.612785 0.402475 -0.793849 -0.458807 -1.421209 -0.077024 0.392167 0.292340 0.043252 0.239920 0.245817 1.728296 0.035415 1.114923 1.159731 0.390898 1.927051 0.657884 -0.001554 0.377687 0.801923 -0.486734 -2.032702 0.779151 -0.691829 -0.985707 -1.251198 0.696160 -1.727633 0.785283 1.120237 0.045712 -0.566345 -1.387461 0.557012 1.493078 0.132622 1.611280 0.517108 -0.745128 -0.141169 -1.040495 0.723742 -1.196669 0.363947 0.376579 -1.445121 -0.159400 0.942477 0.609263 -0.784703 -1.096932 0.220412 0.370624 -1.053388 0.416063 -0.404668 -0.763666 -0.922606 -0.877342 0.285892 -0.477534 1.257481 -0.138747 0.278588 -0.530635 0.170763 0.360847 -1.232580 -0.521097 1.295991 -0.313522 0.360816 -0.528754 1.180551 0.625717 -0.575783 -0.717416 -0.508481 0.381267 0.049117 0.653127 -0.046916 -0.674382 -1.090014 0.756101 0.488486 -0.130731 0.802851 0.318080 0.649959 0.278171 0.649419 -0.888631 0.673553 -2.101362 0.478611 -0.100262 0.258315 -0.290306 0.276270 0.432839 0.122645 0.856309 -1.624722 1.619991 0.394811 -0.256758 -1.071028 0.692297 0.103738 -0.515734 -0.399974 1.001742 -0.053351 -0.217404 -0.015163 0.221945 -0.127673 -0.902403 -0.888387 -0.276799 1.643986 -1.209480 0.430047 -0.468108 -0.781301 -0.006034 0.208510 0.470017 0.567471 1.682621 1.215044 -0.286245 0.569239 -1.503852 0.440074 2.076895 1.054400 -1.230465 0.908807 -0.316937 -0.055876 0.631941 0.572554 0.686444 0.689017 -0.967843 -0.967298 0.058922 -0.426884 1.467855 0.842801 0.554254 -1.724541 1.129780 0.215735 0.134705 2.240508 0.792248 -1.522702 0.520654 1.323075 -1.366363 -0.710698 0.302372 -0.403917 -0.357676 -0.493639 0.506074 0.716152 -1.197440 -1.455204 -0.481268 -1.291562 1.283227 -0.181173 -0.149242 0.217393 -1.320972 -0.341681 1.769788 0.300430 -0.451205 -0.515584 -0.995227 -0.754119 -1.857578 0.404302 0.586948 -0.735654 -0.687721 -1.079292 -0.243271 1.250140 -0.506472 0.024136 -1.336529 -0.313140 0.889606 0.385961 0.328293 -1.583626 -0.389456 0.209583 0.191347 0.541691 0.010072 0.755016 1.681209 -1.082483 0.599453 0.919203 0.123829 0.742639 1.424463 -1.077801 1.652917 -0.394796 1.515154 0.146511 0.717674 -0.495605 0.144765 0.004872 -0.129932 -0.304047 0.780234 -1.232599 -0.455681 0.802233 -0.821014 -0.825176 0.657767 1.048090 0.669288 0.136245 0.071791 -0.541159 -0.240888 -0.537670 0.106199 1.065684 -0.170573 -1.354558 0.258850 0.866933 -0.635560 -0.755996 0.393596 0.650055 1.234873 -1.444054 1.086532 -0.116223 -0.153563 -1.498221 -1.266965 0.803076 -0.920854 -0.970311 0.850936 -1.941580 -0.618369 -0.761794 1.042772 -1.473992 0.033525 -0.180448 1.385765 0.430254 0.029311 1.068742 -0.252570 0.823273 -0.055079 -0.062151 0.132413 1.526485 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -4.663009 2.150273 0.424092 -4.827171 10.110355 -1.529961 -0.982866 4.896977 -1.404219 7.721970 -3.445541 -1.270230 -2.490230 -9.834076 0.544861 -3.345874 -0.881395 3.772847 -0.741993 4.703640 3.964046 -3.333328 1.533835 -0.846383 -2.990880 -6.363426 -1.273129 2.954848 4.828310 -3.924502 1.568131 0.057219 9.236188 -0.607242 7.388109 5.932190 2.579388 6.705897 1.729487 -1.316179 -1.772281 3.996862 -4.433261 -5.737452 1.348792 -1.911886 -6.064786 -3.938577 3.575653 -3.155628 0.687702 7.188689 -1.632202 -0.579304 -5.765422 4.034537 1.601201 -0.056361 8.389774 1.310406 -2.437176 -1.077440 -8.167906 5.634910 -4.250020 1.332822 -0.892220 -4.142885 1.399362 0.427618 0.471153 -3.824344 -2.889048 5.795730 4.329327 -6.432926 1.493819 -3.677508 -5.541096 -5.798054 -5.803324 2.919563 -1.202682 6.283045 0.560941 3.011549 1.744039 4.182573 -2.124339 -9.725978 1.816203 6.829295 -3.506735 -2.207424 -4.806893 6.959410 0.172882 0.313487 -3.989028 -1.465448 2.510512 -1.142305 4.250090 -3.468692 0.990494 -7.162549 1.599354 -0.124219 1.414932 2.180340 4.473749 0.931252 4.241009 7.163584 -5.031642 1.637565 -8.113568 1.893309 -1.562020 2.328699 -2.629878 4.164814 2.144643 2.318088 6.690530 -9.988641 3.508856 0.516532 -1.784236 -6.998832 0.743325 -2.493886 -2.356681 -2.265729 4.649120 -1.115229 -1.201619 -2.515193 2.144444 1.837463 -4.545197 -1.710655 1.740060 5.903950 -5.197019 2.266342 -1.713757 -3.084029 -0.644678 3.670548 5.486628 5.982226 9.916257 6.162856 -0.827116 1.592374 -7.892480 0.292128 8.111480 0.915624 -6.172637 7.564626 -4.729326 -1.867403 0.455823 6.401531 6.078218 1.932957 -5.253197 -4.552540 2.984054 1.988763 8.298052 0.855598 0.968084 -2.265497 4.675134 0.593419 -2.469986 9.004990 3.785148 -5.721843 2.226672 3.337016 -5.058989 -3.621400 4.516896 -4.208904 0.286007 -2.879778 2.019508 4.371513 -3.642105 -2.842547 -0.464784 -6.241013 6.990285 -2.208841 -0.279025 3.361056 -6.259974 -5.597024 7.112432 -0.584955 -2.496734 -5.294398 -6.365724 -3.622017 -6.521691 3.144524 1.564365 -1.730993 -2.645030 -6.348245 -0.869448 5.798629 1.483140 3.990115 -7.450917 -1.877289 4.070338 1.950131 4.249203 -3.403369 -0.730052 0.658598 0.064602 2.620659 -1.046815 4.404640 9.138731 -4.986211 4.296978 0.326965 -1.480977 2.270834 4.428185 -8.806785 9.863215 0.890823 4.257927 -0.449734 2.313757 -2.172973 1.237853 1.663139 -0.819033 1.250381 0.951591 -2.096616 -3.027860 0.567028 -5.195578 -4.111952 -1.028635 2.941197 -1.066367 2.893150 -0.210513 -3.611961 -2.327535 -3.489038 2.467063 5.549862 -0.128634 -1.993268 4.877947 2.216971 0.853543 1.043973 0.675276 2.763327 5.495107 -8.595205 1.197496 -1.558532 2.437635 -4.567482 -7.404114 1.075109 -3.998653 -2.718507 3.675284 -7.767589 -1.292876 -5.455893 1.212635 -5.475715 -0.445505 1.207911 8.611393 4.018322 -3.376363 2.992737 -2.534640 3.994430 -0.164977 -1.233028 2.869215 5.426774 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -5.445270 9.991449 11.308873 -3.832762 25.405130 -8.196799 0.948064 16.856690 -17.477647 23.532959 -12.945107 -4.959410 -3.520752 -14.348910 1.916658 -7.628644 0.764724 10.165616 -0.817474 4.937020 4.885019 -3.688059 1.051350 -0.944693 -1.611357 -6.147840 -2.697061 3.322929 23.301228 -10.329490 3.851429 1.609088 14.960065 -1.184532 16.486307 7.103220 -3.705860 17.003278 5.647636 -7.346007 -1.405891 5.418961 -4.948017 -17.418158 2.166230 -1.720354 -6.743291 -11.468857 4.652451 -1.431324 5.851776 7.903758 -2.281018 0.018219 -5.934308 20.134141 13.289929 12.787385 15.979625 2.033581 -1.114752 8.601746 -24.873342 -6.854235 -4.255128 2.059232 -10.829815 -7.406083 -0.145938 0.279687 5.942467 -18.107434 1.531311 23.188432 4.855899 -5.729165 2.849137 -2.578159 -26.079588 -19.855127 -13.931219 1.887630 -1.615032 7.509784 -0.515529 2.227647 -4.278351 10.342104 -1.092059 -26.735667 1.608719 15.649586 -4.232056 -8.033850 -4.479350 5.075577 1.644208 0.545996 -5.461269 -8.424740 1.925111 -3.245119 4.884851 -15.470280 13.630045 -13.694092 9.281115 8.503793 3.370907 7.929982 18.276802 1.431036 11.792048 23.385941 -14.552018 3.662508 -21.549666 2.987220 -4.869236 2.622944 -1.454890 12.998736 3.485654 10.428739 14.095926 -32.376975 12.008187 0.495161 -0.459625 -22.771557 1.688829 -3.129470 -3.221693 -3.699501 6.270393 -1.303895 -2.245212 -2.452727 2.548105 2.536991 -8.072894 -0.781498 7.207083 26.352415 -20.255711 2.228292 -2.772704 -5.413611 0.168827 3.110858 14.984718 7.727133 16.879741 8.576477 -3.445508 -12.661789 -14.137286 1.728293 17.685212 -9.625554 -6.795284 24.180663 4.733044 -1.430132 2.552737 12.036071 6.997493 5.857359 -18.898073 -18.616156 4.003655 2.634934 8.557400 13.985155 1.234274 2.640455 12.200349 -10.803590 -21.303175 26.051061 1.272652 -7.585580 -6.497707 3.955787 -10.359478 -4.116191 10.599358 -15.240256 0.169272 -5.773765 3.574213 5.604224 -5.435756 -11.742767 1.197477 -6.842951 23.166820 -2.492047 -8.391177 4.536874 -7.659730 -2.673001 15.198432 0.914137 -1.831697 -6.462207 -12.570366 -16.526210 -7.119437 3.824829 -0.779819 -1.052611 -3.560962 -6.690844 -1.444759 13.049688 2.188107 4.681495 -5.751949 -9.714764 3.797616 2.759185 12.068777 -10.826617 -1.860695 1.683830 -0.896788 0.936076 8.603080 19.261280 36.516859 -7.265802 9.982529 13.571738 -1.090950 3.299178 14.169837 -26.321734 10.012774 -8.350729 11.474463 -0.807397 2.861065 -3.673841 0.837835 2.371944 -4.160456 -0.642857 1.774990 -2.117355 -2.806236 -5.238189 -21.076987 -11.331445 -1.310620 3.583326 -7.256601 3.307562 -6.926093 -4.669693 -1.188418 -15.587659 2.652710 6.615833 0.308983 -12.578616 4.916162 1.670805 0.625167 3.959451 1.163545 1.695969 6.608475 -9.499979 1.154581 -1.514603 8.459593 -3.444125 -12.829551 1.079100 -4.795140 -9.830159 5.808856 -12.424939 -5.735388 -6.123696 1.414998 -26.534624 -4.190539 0.982517 25.941667 5.065994 -3.452411 4.532361 -2.045124 4.400200 -1.072022 -2.005430 2.209148 15.708520 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -4.187933 9.580678 10.033737 -3.042595 23.649125 -7.958966 0.893366 15.382747 -19.045810 22.675753 -11.430630 -3.579846 -2.896208 -14.041199 1.904507 -6.393861 1.185883 8.755758 0.453218 5.054995 3.539730 -4.945304 1.227718 -0.062798 -1.447899 -6.509312 -1.403735 3.405641 24.059165 -10.696272 4.070511 1.369125 13.191811 -1.516498 14.345438 5.677621 -4.974419 14.944953 6.883044 -10.841629 -1.569309 4.037917 -3.993174 -15.452719 1.124315 -0.430676 -6.043676 -10.408462 4.176613 0.231750 2.592706 6.885155 -2.312277 -0.142594 -6.505581 19.806708 13.487533 11.544126 14.662122 1.043614 0.914204 6.571462 -22.935999 -7.714496 -3.621185 -1.228311 -11.096690 -5.080562 1.288963 0.514257 3.099315 -15.929272 3.251540 22.417779 5.172373 -5.428123 1.780505 -1.984595 -27.200065 -19.789742 -12.300685 1.604137 -1.446864 6.917197 0.148586 2.518699 -2.421572 10.087487 -1.120242 -25.365632 2.185124 13.865323 -3.066486 -9.565612 -2.289442 6.845775 2.267984 -0.332945 -4.867082 -7.963162 1.087767 -4.122009 4.432119 -16.982033 14.647935 -13.158368 7.787297 6.811814 3.880636 8.332054 18.500783 0.622411 10.652238 22.328640 -14.768177 1.774388 -20.290362 2.058226 -3.871002 1.991127 -1.868625 12.372209 3.314187 10.445447 13.323065 -31.696837 11.124841 0.474740 1.338732 -22.146426 0.873009 -1.805052 -1.795289 -2.817635 5.255807 -2.310463 -1.399101 -1.677442 2.626318 3.477138 -7.963145 1.072192 7.728026 27.889228 -20.542494 2.644233 -2.047686 -4.547189 0.742927 1.822279 14.415194 7.011274 15.264914 7.374003 -3.412019 -9.798746 -12.939346 1.916843 16.569730 -9.551919 -5.177676 23.532159 4.891273 -1.916390 1.398680 11.488220 6.970612 4.087054 -19.059138 -18.487857 5.980623 3.066635 6.860063 11.600332 0.585901 3.688228 12.483369 -9.070853 -19.889290 23.492849 -0.413254 -6.138072 -4.638416 3.734923 -10.714370 -2.380329 10.158093 -14.929980 0.696944 -5.459748 3.300798 5.394381 -4.354862 -10.354951 -0.479330 -5.019646 21.515814 -2.386009 -8.707277 4.624110 -4.942450 -1.369746 12.765493 0.587222 -0.661385 -6.288623 -12.284932 -17.721853 -5.829854 2.946362 -1.877657 -1.637685 -1.893621 -5.822360 -2.697499 11.929087 2.884241 4.222684 -7.456334 -7.862701 3.351501 5.524596 10.524728 -7.931409 -0.975604 3.565087 -1.058180 -0.742630 8.352306 19.700415 33.558490 -6.553860 9.591063 10.188948 -0.386533 4.870632 12.371292 -25.369187 8.634046 -7.636559 12.289069 -0.384954 1.952976 -2.752778 1.437836 2.153453 -5.595160 -0.698054 0.267669 -2.036437 -3.002397 -4.235943 -18.707449 -12.276552 -2.102436 3.452496 -6.729094 3.078492 -7.173263 -2.914974 -0.888724 -14.950959 3.227554 4.860416 0.367811 -10.813895 4.777709 2.505921 2.351655 4.438127 0.733080 1.843713 4.769613 -8.225392 0.972108 -2.073770 9.536182 -1.443587 -12.641605 2.149640 -3.170442 -8.851165 5.811186 -12.398938 -5.023389 -5.091228 0.999147 -26.342715 -2.687372 0.742306 24.540202 2.878906 -3.109842 3.575438 -2.094652 2.166979 -2.093914 -0.870689 1.906859 13.953792 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.837365 0.695128 0.293221 -0.556918 1.800532 -0.385970 -0.112230 1.241886 -0.374942 1.290114 -0.715373 0.067549 -0.169566 -1.069734 0.073754 -0.280505 -0.234239 0.788204 -0.241648 0.330282 0.604758 -0.088550 -0.040847 -0.138635 -0.568321 -0.736825 -0.275676 0.406464 0.868081 -0.939277 -0.196184 0.156639 1.536265 -0.398940 1.588072 1.086066 0.813038 1.009311 0.282925 -0.152836 -0.105083 0.610381 -0.756587 -0.989520 0.094851 -0.428395 -0.810472 -0.407505 0.557357 -0.337660 0.746309 0.927534 -0.182726 0.138809 -0.529533 1.075808 0.023017 -0.035555 1.516553 0.268887 -0.863779 0.092984 -1.384580 1.691788 -0.673624 0.679023 -0.565068 -1.042648 -0.021209 0.051610 0.378774 -1.144980 -0.430473 1.142428 0.257834 -0.989040 0.283952 -0.525115 -0.394210 -1.019494 -1.058232 0.499463 -0.142093 0.736291 -0.006426 0.322898 -0.423966 0.692461 -0.407093 -1.681843 0.126805 1.369863 -0.970070 0.156563 -0.940050 0.435296 -0.031812 0.287848 -0.421207 -0.511544 0.481112 -0.008741 0.525372 -0.919843 0.954956 -0.942246 0.268755 -0.024526 0.133176 0.380865 0.417098 0.397977 1.000483 1.327261 -0.286045 -0.063893 -1.489059 0.434149 -0.366702 0.308940 -0.226926 0.612274 0.253292 0.389196 1.223055 -1.654228 0.534252 -0.205751 -0.372754 -1.313716 0.131631 -0.548417 -0.552210 -0.539265 0.707969 0.129585 -0.323485 -0.593513 0.349804 0.203735 -0.934113 -0.925153 0.329295 0.736545 -1.060703 0.163740 -0.296049 -0.349450 -0.330283 0.842696 1.092136 0.990011 1.629684 1.038039 0.113274 0.077883 -1.476147 -0.124747 1.007360 0.014761 -1.128930 1.342732 -1.128172 -0.373068 0.387225 1.120372 0.597596 0.633926 -0.835569 -0.897004 0.591033 0.335117 1.405916 0.094093 0.113479 -0.080749 0.685754 -0.235606 -0.977307 1.811450 0.508966 -1.337370 0.352021 0.350142 0.063635 -0.626614 0.933439 -1.204368 -0.215695 -0.352497 0.092864 0.683460 -0.667886 -0.258003 0.530889 -1.060380 1.444985 -0.315021 -0.372356 0.462955 -1.269557 -0.759721 1.319565 0.125142 -0.379773 -0.736663 -0.860685 -0.539495 -1.001151 0.345304 0.461761 -0.177814 -0.732466 -1.075516 0.097378 0.975335 0.074188 0.774413 -1.186164 -0.677049 0.657024 -0.019024 0.760828 -0.883383 -0.158533 -0.363743 0.039054 0.519038 -0.474173 0.856974 1.926472 -0.678005 0.913644 0.598980 -0.669553 -0.016158 0.815085 -1.524123 1.446229 0.171441 0.151858 0.067721 0.320747 -0.726891 -0.048272 0.132838 0.392144 0.028407 0.191649 -0.175068 -0.303939 -0.518689 -1.306682 -0.370905 -0.110549 0.427597 -0.244779 0.368087 -0.205887 -0.589524 -0.508016 -1.075338 0.062846 0.879699 -0.265367 -0.528339 0.977550 -0.127455 -0.327264 0.462582 0.055852 0.414489 0.873663 -1.267079 -0.059467 0.016249 0.321726 -1.209485 -1.157330 -0.392046 -0.798620 -0.501028 0.166657 -1.116277 -0.512873 -0.734418 0.117698 -1.274026 -0.354782 0.429544 1.661624 0.785803 -0.563314 0.624122 -0.412929 0.976173 0.343664 -0.165627 0.195099 0.897096 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -2.834681 3.509100 1.665659 -1.756626 5.624719 -0.705941 -0.078165 3.191328 -3.924005 4.989393 -2.061511 0.734231 -1.072517 -4.907417 -0.042894 -1.851113 -0.945835 1.861643 0.425628 2.673033 1.997718 -2.752605 0.084320 -0.096091 -2.101721 -3.299883 -0.349229 1.403686 5.154349 -4.064238 0.674976 -0.063545 5.049887 -1.087215 5.342083 3.728824 1.459489 3.487436 1.719945 -3.350532 -2.226955 2.299545 -2.965683 -3.344103 0.197929 -1.271942 -2.501814 -1.564983 1.863565 -0.212362 -0.559321 3.767011 -1.360831 0.462640 -3.058982 3.832519 1.132559 -0.391490 5.951004 0.195897 -1.239223 -1.355465 -5.069583 4.166568 -1.890431 0.260361 -1.854994 -2.078689 2.100977 -0.961042 -1.135787 -2.981816 -0.341787 5.380153 1.823536 -4.197175 0.127848 -2.335353 -6.899950 -4.340413 -3.725412 1.336190 0.155988 3.188340 0.538196 1.686592 0.732701 3.290442 -1.879693 -7.116457 1.560020 5.000194 -2.617242 -1.028292 -2.205536 4.539079 -0.203971 1.241251 -2.440796 -0.740472 1.593077 -0.459022 2.177634 -6.036542 3.247522 -5.191786 0.638544 -1.827182 0.541599 1.406563 3.305613 0.898549 3.873504 5.804897 -3.590639 -0.749022 -5.091288 0.669178 -0.490204 1.102621 -0.866188 2.659663 -0.507402 1.177097 4.994530 -7.230314 1.266587 -0.501151 -0.506357 -6.462342 -0.170092 -2.525682 -1.171787 -1.801446 2.344888 -0.302218 -0.709385 -2.581408 0.699578 1.344538 -3.580878 -2.874658 2.339976 5.913552 -4.690284 1.063730 -1.033082 -1.294968 -1.078347 2.613416 4.282757 4.013301 5.956288 3.888870 0.340821 2.937801 -4.814700 -0.829656 3.812318 0.942555 -4.097337 5.328338 -4.034497 -1.889658 0.593602 4.030506 3.755159 1.207128 -4.865743 -4.796462 4.667684 1.607298 4.654088 -0.675419 0.387313 0.763126 4.908926 0.942217 -4.183449 5.523460 0.822521 -3.923111 2.980572 0.741085 -1.238034 -1.324694 3.779316 -4.556488 0.301603 -1.164354 -0.315300 2.243932 -2.032381 -0.407721 0.324204 -3.827496 5.698477 -1.043750 -0.158812 2.218626 -3.523621 -4.170290 3.469052 -0.109175 -1.577836 -3.675213 -3.452152 -3.989877 -2.929934 1.448142 0.831776 -1.470399 -2.758762 -4.358526 -0.134475 2.882075 1.421130 3.204348 -5.556200 -2.427982 2.225818 2.235454 3.048187 -1.574338 -0.471030 -0.027863 0.235536 1.790703 -0.931772 4.927151 6.989422 -2.433264 3.627688 -0.828895 -2.012437 1.615229 2.369671 -6.276316 5.142854 0.858649 2.594307 -0.076901 1.076321 -2.247111 0.372592 1.503837 0.308245 1.062354 -0.158940 -0.055006 -1.490578 -1.718482 -4.489308 -2.066245 -1.410555 0.723437 -0.880169 1.660948 -0.380650 -1.553000 -1.903875 -3.600137 0.477727 3.035923 -0.537915 -0.679984 3.552626 -0.686589 1.438123 2.806177 0.201173 1.468820 2.062550 -4.780721 -0.867503 -1.258419 1.180549 -2.755371 -4.985386 -0.605052 -2.737919 -1.856411 1.995793 -4.746913 0.257985 -2.914859 -0.622257 -5.407646 -0.294903 0.954366 6.262263 2.090125 -2.252767 1.864864 -1.887438 3.172259 0.531114 0.104150 0.713371 3.263068 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -13.771057 1.502195 0.333362 -15.347203 29.021125 -10.836564 -2.938014 14.778973 5.339104 18.349786 -12.107568 -5.740537 -7.630049 -25.635881 3.921963 -10.893191 1.544618 14.225188 -4.063274 12.382567 11.880834 -2.059122 4.947262 -4.932197 -6.965463 -13.659628 -5.202358 9.340860 4.639951 -7.901227 7.027344 5.210379 28.042232 0.558850 23.079857 18.384816 9.755478 23.330266 6.605192 3.370627 2.778422 10.065927 -9.291916 -22.317045 6.028555 -3.929876 -18.846709 -13.645912 10.206557 -14.429536 10.694082 20.259881 -1.614449 -2.677185 -18.794872 7.196780 4.884179 2.361333 20.970341 6.296613 -14.245986 1.196992 -18.916173 14.069221 -13.603070 6.462230 -1.421711 -14.038264 0.466103 8.591633 7.295937 -15.268153 -14.814673 9.454285 9.910849 -14.896394 7.321082 -6.460514 -1.548681 -10.879306 -13.561650 8.681684 -4.998993 15.546780 -0.789278 7.610284 -4.240483 6.694552 -2.103587 -21.408536 1.863610 18.591309 -10.978348 -2.167026 -14.513350 15.852015 3.883721 -4.392682 -8.216801 -7.251047 5.802468 -5.853870 12.168932 3.359666 -4.131287 -15.330041 6.651075 3.563849 2.752195 12.077382 6.289919 6.900460 10.099067 12.717878 -8.904679 9.996779 -26.387061 8.988091 -8.966617 4.738971 -7.416803 9.396510 9.451982 7.709518 12.809867 -23.717001 14.977041 3.330166 -3.503053 -13.625988 5.757454 -1.258467 -7.164159 -6.176190 16.266562 -2.061979 -4.575616 -2.133849 6.209233 4.513820 -6.895625 -8.530865 0.381619 10.800798 -6.930930 6.930082 -5.207416 -10.872135 -0.330170 6.399409 11.787515 13.780068 27.880183 16.345052 -5.492639 -0.415774 -23.464853 2.686300 23.203513 -0.273568 -16.303245 19.956474 -9.994694 -4.475001 1.729585 18.121127 14.484641 5.797668 -9.378338 -8.674134 2.306313 3.126515 21.538048 4.395126 3.265610 -16.182391 4.913466 -2.162474 1.470321 29.911024 8.626982 -20.285881 -0.230176 15.670280 -12.531617 -13.980205 9.451997 -8.781073 -3.109979 -9.358014 11.271998 12.811072 -13.925637 -10.891676 0.651814 -16.724694 13.203813 -7.300018 -8.090643 5.322311 -21.070496 -10.353194 27.036950 1.893361 -3.653560 -9.048845 -20.247161 3.113295 -23.542733 8.085023 7.571077 -0.586046 -3.866600 -12.891293 -2.691418 17.091387 -0.004197 9.895064 -15.781387 -3.711175 12.827750 -0.276920 6.016823 -16.587199 -3.224295 1.806499 2.401201 5.854403 -2.189990 5.132104 23.843368 -15.565881 9.797079 10.357159 -1.916305 5.654470 15.015205 -23.032558 28.779453 0.459167 15.326135 0.245078 6.660504 -5.962307 1.890137 1.687360 -2.379962 -2.091748 4.186074 -10.785154 -8.094075 6.977836 -8.703205 -12.136306 0.474931 14.754006 -3.599280 7.560641 -0.556141 -8.080720 -7.138136 -9.743604 10.863936 15.253529 -2.147555 -11.176308 12.624925 13.691373 -7.751251 -2.016207 2.006856 9.258524 19.027005 -24.684322 9.047912 -1.425560 6.879425 -14.647835 -17.027363 9.330386 -11.098396 -4.478140 3.458191 -20.380449 -12.150147 -13.878559 10.378030 -12.419386 -0.894346 2.365857 22.452356 14.403879 -6.195769 9.113736 -6.004539 6.662220 -0.482234 -4.398715 9.868818 18.146059 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -5.973711 3.807473 1.337724 -5.287336 12.139664 -3.226647 0.734626 3.847475 -2.563250 8.635912 -4.311690 -1.958679 -2.820771 -10.843179 1.101455 -4.190011 -0.495340 6.026260 -0.249505 6.436200 4.731114 -4.999118 1.471326 -1.379751 -3.126129 -7.186701 -1.696320 3.642950 6.312648 -5.200356 2.018040 0.898349 10.873805 -1.192068 9.431928 7.809028 2.087790 8.198936 2.512229 -4.588857 -1.368987 4.736083 -4.930152 -8.045292 1.993842 -1.723325 -7.422154 -5.652071 4.317962 -4.176907 -0.142018 8.362282 -2.183233 -0.939163 -7.056568 5.143639 4.614706 1.064495 9.903840 1.621354 -1.798708 0.427456 -9.118515 5.749788 -4.961420 0.558639 -2.398885 -6.968457 1.756387 1.221460 0.441102 -4.985304 -4.010200 6.923447 5.101932 -7.351901 1.695138 -3.858105 -7.874092 -8.227518 -7.484564 2.575680 -2.154252 7.602209 0.271067 3.225070 0.889079 4.274069 -1.710554 -11.101008 1.436456 8.251939 -3.541607 -1.986444 -3.270355 8.056257 2.689696 -0.454085 -5.268980 -3.051148 2.509882 -2.752449 5.079092 -2.497332 2.393638 -6.899110 0.145260 -0.155001 2.159339 4.994109 4.892067 2.545363 5.237360 7.640429 -7.152955 0.788822 -9.257436 2.759674 -3.165674 2.307628 -1.807958 4.900460 2.138611 2.529702 7.743473 -12.101501 4.504025 0.563860 -0.766510 -8.274122 1.496985 -2.431643 -2.350535 -3.704316 5.722720 -1.256597 -1.548614 -2.496227 1.858192 2.224471 -3.710200 -1.472337 1.478449 8.573439 -6.845089 3.117541 -2.403140 -4.400207 -0.232194 3.335773 6.327956 7.244512 11.055363 8.364985 -1.586307 2.812940 -9.849792 0.631507 9.548137 0.694117 -7.096508 8.894333 -4.595386 -2.688981 1.697384 7.581166 7.008473 1.597858 -6.225709 -6.148113 2.954624 1.648379 9.247232 0.791454 0.423631 -4.474118 6.474326 1.707031 -4.284729 11.717438 3.001789 -7.199100 3.378863 4.644487 -7.692195 -5.044590 4.745054 -5.722437 -0.251750 -3.595880 2.528025 5.020685 -4.765881 -3.864556 -0.463932 -7.518544 7.861632 -2.525109 -2.397657 3.782025 -6.981792 -7.139472 9.439725 0.487191 -2.634903 -6.246829 -7.884924 -2.800540 -8.036308 3.377423 0.813210 -2.354433 -4.034869 -7.365491 -1.296945 7.133609 1.341726 4.484761 -9.382171 -1.883244 4.749079 3.575089 4.273141 -4.458517 -1.274880 1.517392 0.124184 1.416628 -0.271487 5.594537 11.251294 -6.433060 2.765824 0.708981 -3.425257 4.420256 5.486863 -10.673572 11.204927 0.753441 7.023987 0.049930 2.625210 -3.166284 1.086217 2.559947 -0.881378 -0.020014 1.643870 -2.862208 -3.362776 1.362798 -5.709540 -6.155749 -0.865575 4.056308 -0.198940 3.261698 -0.525979 -4.654353 -2.033210 -3.252800 2.068429 6.366360 0.238258 -2.975425 5.674721 2.677074 1.171843 -0.457327 0.926475 3.175728 5.950160 -10.172254 2.493029 -2.141217 2.832955 -5.123622 -8.978682 2.637983 -6.252556 -3.300849 4.941751 -9.709672 -1.297275 -6.290878 1.816512 -6.897566 -0.128429 1.664206 10.496105 4.312402 -3.701724 4.574034 -3.376823 4.987789 -0.588197 -1.067774 1.908481 7.175511 +PE-benchmarks/vertex-cover-problem.cpp__main = -3.863037 1.639132 1.098327 -2.973698 7.251554 -2.215346 0.305672 3.497659 0.467671 4.880884 -3.598337 -0.687002 -2.110543 -4.965461 0.258863 -2.393008 0.212081 4.033874 -1.693529 1.489068 3.098357 -0.521865 1.146970 -1.616618 -1.626981 -4.453112 -1.091028 1.465761 1.272276 -1.246665 0.386214 0.886677 6.697237 -0.439275 4.982693 4.240245 2.628841 5.890338 0.609466 1.760290 0.641315 2.914014 -2.323394 -5.527697 1.902723 -1.905343 -3.900610 -3.154041 2.744351 -4.499432 3.150402 4.221706 -0.550893 -0.791780 -3.014429 3.100149 2.494043 0.482548 5.672005 1.381950 -3.323987 0.553803 -4.833177 4.517157 -3.729269 2.610187 -0.348733 -5.218575 -1.183433 1.631013 2.165283 -3.333056 -3.476418 2.492572 1.777482 -3.758161 1.156291 -1.554032 -1.728434 -2.907211 -4.401760 1.241316 -0.774528 3.505249 -0.187498 1.242899 -1.057090 1.576303 0.058293 -5.478790 -0.258347 5.314777 -2.524458 1.213364 -3.744091 1.684088 0.595059 -0.724903 -2.284786 -2.117674 1.293908 -0.534608 2.561264 -0.768587 -1.117680 -3.527161 2.096293 1.471880 0.326714 1.412558 0.981138 1.487119 2.105871 3.515409 -2.337987 2.301522 -6.490783 2.269191 -0.841240 0.820028 -0.812895 1.895219 1.071411 1.087393 4.057908 -5.990109 3.800294 0.133250 -2.090467 -4.017657 1.366891 -0.873706 -1.850965 -1.913844 3.775163 -0.191004 -1.106536 -1.217879 1.328797 -0.087456 -2.449147 -2.745718 -0.328666 2.652287 -2.942413 1.317299 -1.719466 -2.660779 -0.448019 2.109065 2.527417 3.293020 5.991666 4.501657 -0.632056 0.160078 -5.681442 0.447853 5.277225 1.832888 -4.501969 4.153211 -2.403075 -0.424193 1.915323 3.371078 2.589988 2.408656 -2.321643 -2.378876 -0.125566 0.075626 5.443449 2.603732 1.090774 -3.727957 1.964273 -0.834652 -1.146994 7.370966 3.612396 -5.283278 0.908673 3.290991 -2.968513 -3.604088 2.144543 -2.628007 -1.136589 -2.087376 1.610648 2.819337 -3.541907 -2.921076 0.930068 -4.607609 4.750769 -0.992615 -0.835937 1.984612 -5.724217 -3.702213 5.882289 0.377141 -1.374494 -2.510798 -4.108208 -1.687895 -5.674236 1.757334 1.726884 -1.222922 -2.620171 -4.052281 0.050991 4.296187 -0.134339 2.286633 -3.492337 -1.833068 2.957778 0.003756 2.450124 -4.429890 -1.241602 -0.400513 0.155911 2.115035 -0.455691 1.697604 6.272040 -3.563002 2.653311 2.697494 -2.266921 0.811269 3.863839 -4.959427 5.917085 -0.438889 2.186127 0.249516 2.059999 -2.217060 0.455749 0.583686 0.615829 -0.709030 2.022512 -2.821244 -1.657534 0.401649 -4.356239 -2.104551 0.693173 2.631409 0.459673 1.181861 0.125196 -2.750094 -1.256086 -2.636291 0.720386 3.892707 -0.194892 -3.233866 2.438413 1.328256 -2.368136 -1.234895 1.025015 1.660356 4.193896 -5.449534 1.824387 -0.154427 -0.097676 -4.844253 -4.465841 0.705099 -4.010639 -3.091586 1.895025 -5.374473 -1.978654 -3.080074 2.211812 -3.966929 -1.129908 0.458272 5.664346 2.861430 -0.841346 3.509392 -1.047050 3.163924 0.269171 -1.022516 1.158600 4.669432 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -6.696750 4.854472 3.138700 -6.405431 13.425461 -2.103651 -0.063803 3.647166 -1.745379 10.185853 -5.809484 -2.548614 -3.219311 -11.545431 0.574152 -5.901001 -2.031477 5.866468 -1.079505 6.212969 5.098035 -5.398306 2.122075 -1.877954 -3.734993 -9.099876 -2.721667 3.790857 6.687256 -4.859780 3.053376 -0.378204 11.454031 -1.749752 8.995963 7.890990 2.589569 9.374246 0.661729 -1.462311 -1.219023 5.328999 -5.762086 -8.452731 2.437851 -2.861120 -8.407097 -6.189617 4.765948 -5.806501 -0.197861 9.171429 -2.229172 -1.946644 -6.924618 6.943064 5.294784 0.934128 11.219345 1.615971 -2.115600 0.667734 -11.227938 6.074256 -5.788641 2.520116 -2.477122 -7.942150 0.736560 1.130453 0.557625 -4.542813 -4.482631 7.671334 5.745743 -8.218657 1.343268 -5.207053 -9.966209 -8.219121 -7.721553 3.005460 -0.907133 7.941721 0.500136 3.438881 2.504857 5.081982 -2.039364 -12.330832 0.880708 9.861151 -3.521969 -2.209009 -4.191363 7.814566 1.993497 -0.345806 -5.602217 -2.457283 2.661111 -1.454521 5.365543 -3.855170 0.979666 -9.002137 1.432154 0.955573 1.656375 2.943454 4.293964 1.898487 4.933686 8.828115 -9.034262 2.452944 -10.246802 2.170872 -2.330754 2.988324 -2.376469 5.017637 1.281466 2.944418 8.745494 -12.926238 5.614228 -0.108086 -2.668678 -9.360827 1.366355 -2.809831 -2.879617 -3.127061 5.338540 -1.116404 -1.754568 -2.867721 1.960452 1.633192 -3.683437 -2.027861 2.234497 8.714235 -6.952005 3.213309 -2.417304 -4.397696 -0.723084 4.377958 7.249518 7.287125 12.653654 8.824739 -0.580418 2.563879 -10.222934 0.716264 10.777052 1.429065 -8.052118 9.390991 -4.910148 -2.166346 1.882998 7.516957 7.085172 3.538451 -7.059443 -6.858932 2.172322 1.171442 10.434389 2.516764 0.650308 -5.177882 7.487664 0.954205 -3.932520 12.849165 5.512566 -7.814175 3.443991 4.893807 -8.717489 -5.905090 5.579814 -5.396902 -0.169766 -3.134053 1.975241 5.098334 -4.497917 -5.192189 -0.868575 -8.586314 9.765942 -2.626602 -0.994163 4.775769 -7.645969 -10.529506 9.028993 -0.016584 -3.606729 -6.845214 -7.649560 -4.390343 -8.781064 3.917012 1.980490 -3.645467 -5.223622 -8.353809 -0.245055 7.599565 0.919616 5.018687 -9.397178 -3.356938 4.983786 3.139075 6.027061 -4.554393 -1.274669 0.323991 -0.251373 2.417324 -0.135955 5.866733 12.972908 -6.661061 4.648028 0.166236 -5.159056 3.638626 6.708443 -10.820317 12.285363 0.672345 6.089277 -0.617727 3.293380 -3.003153 1.710126 3.124526 -1.676230 1.098147 2.128054 -3.227755 -3.792162 0.771452 -7.882297 -5.280299 -0.162433 3.913493 0.069816 3.371752 0.798337 -5.628384 -2.275933 -2.971249 1.277181 7.061999 0.564073 -3.787804 5.520005 2.406618 0.898345 -1.291315 1.149782 3.345208 6.502233 -10.999099 2.832708 -2.240443 1.374284 -6.889290 -8.983412 1.676403 -7.531485 -4.685040 5.507334 -10.298530 -0.995441 -7.085296 1.730401 -6.528173 -1.503155 1.861824 11.404622 5.428572 -4.176617 5.232283 -3.488178 6.456491 -0.148181 -1.916867 2.728197 7.615405 +PE-benchmarks/largest-independent-set-problem.cpp__main = -5.536876 3.576658 1.091076 -4.978026 11.124162 -3.746117 1.947699 6.252764 -2.020153 6.051066 -5.822345 1.784916 -1.134467 -6.538302 0.880004 -1.549023 0.221445 6.446297 -1.828605 3.749392 4.408379 -0.549749 0.860490 -3.186326 -2.574883 -4.749010 -0.772591 2.119091 1.716312 -1.642188 0.171605 1.541039 8.874156 -1.136005 7.725373 6.802719 3.488587 7.881310 1.990834 -1.002267 1.740163 3.831219 -3.063709 -8.229301 2.111671 -2.400173 -5.634322 -4.981904 3.430580 -6.580963 4.945916 5.694812 -0.251118 -1.426003 -4.756125 4.709263 4.556181 -0.627189 7.657759 2.444105 -5.194770 1.593229 -5.761814 6.984978 -4.547178 3.459070 -0.408236 -7.309902 -0.975544 3.393562 4.625670 -6.605661 -5.216854 2.649344 1.288031 -5.343465 2.483680 -2.388769 0.184624 -5.751171 -4.872854 1.995432 -2.026936 5.101249 -0.673575 1.568260 -4.530151 1.899344 0.449171 -6.895611 -1.539123 7.068720 -3.743301 1.292660 -5.439818 3.251879 2.441407 -1.461537 -3.197736 -4.034270 2.465869 -0.531144 3.357206 -0.806516 0.809112 -3.783351 1.047715 2.788876 0.409143 4.729479 -0.376040 4.464682 3.793273 4.038110 -1.259704 3.003995 -9.693984 3.245678 -2.724636 1.345685 -0.873386 2.213983 3.281332 2.017130 5.035512 -7.595944 6.178022 0.802119 -1.873256 -5.294305 2.946803 -0.714647 -2.876783 -3.160235 4.869750 0.542602 -1.455114 -1.126175 2.136818 -0.190591 -3.509135 -5.092495 -0.645301 4.471262 -5.738927 1.766777 -2.249805 -2.819304 -0.355597 2.788877 3.517739 3.869113 8.601610 6.266392 -0.723134 0.804159 -7.934549 0.738547 7.636153 3.264783 -5.978126 5.796191 -3.390347 -1.506469 3.031583 4.571294 2.783163 3.394084 -4.920445 -4.845830 0.972321 -1.181047 7.748330 2.985414 1.314556 -6.223482 3.828517 -1.870094 -1.990262 10.701927 4.073667 -8.026002 1.077763 5.190254 -2.411717 -5.106187 2.783743 -4.233818 -3.042938 -1.868193 2.248830 3.302416 -4.989120 -5.313757 0.714989 -6.312383 6.203653 -1.316996 -3.070858 0.800357 -6.932806 -1.946030 9.106777 1.704248 -2.483134 -2.784923 -4.923381 -1.210326 -8.389966 2.182867 2.713409 -0.997186 -3.990120 -5.436995 -0.428885 5.327285 -1.895672 1.702194 -5.838616 -2.739953 4.328766 0.144807 2.301779 -8.457824 -1.719812 -1.035557 1.174188 2.285413 -1.244193 3.305869 9.660350 -5.026019 2.432085 5.934250 -1.686760 1.577203 6.680261 -7.061931 8.484882 -0.343380 5.411375 1.020399 2.668000 -3.885655 -0.237357 0.005057 1.351022 -1.511304 3.186873 -4.350076 -1.931961 0.709767 -4.563781 -3.422561 2.032035 4.519876 -0.080225 1.292147 -0.222531 -3.288709 -2.227118 -5.110579 0.439223 5.491738 -1.971624 -5.834703 3.330158 2.975473 -3.961998 -1.142411 1.126634 3.241037 6.188291 -7.513225 4.009138 -0.266188 0.659097 -7.879994 -6.624529 2.621078 -5.189744 -4.442655 2.073745 -7.176795 -4.127902 -4.213599 3.858469 -7.249265 -2.267207 1.352142 7.671853 3.126362 -0.992538 4.720613 -2.195210 4.936757 0.579194 -0.329271 0.189856 6.569596 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -14.700208 16.168083 12.882497 -15.267406 26.046693 -4.148702 7.677710 8.827384 -10.444733 18.046731 -15.988618 2.118909 -4.905056 -20.137698 1.504221 -15.173252 -3.981358 12.300670 -0.942012 17.268451 11.737465 -11.310108 3.179747 -8.568964 -7.735960 -18.054849 -2.092756 5.695306 11.064035 -0.266965 10.535343 -0.153839 19.610793 -1.798930 18.638053 18.040613 1.670758 21.485537 2.840380 -5.908400 -1.242662 11.391437 -10.284245 -22.378045 5.105607 -6.752443 -15.274170 -16.685506 8.204508 -19.181682 -2.466240 17.471774 -2.552840 -5.822137 -15.647516 12.754734 15.718276 1.839273 21.533637 4.934585 -6.097968 0.878219 -19.820523 6.434458 -9.455615 4.816363 -1.600184 -16.209703 4.067593 5.514166 -0.180204 -7.804331 -7.558309 10.886570 8.408837 -16.115801 4.448901 -10.461111 -25.353468 -13.548983 -8.873726 4.745623 -0.028677 16.901987 -0.526706 5.639764 -1.221681 8.213151 -0.649089 -21.478336 -2.897027 21.329001 -5.027299 -5.941585 -7.616647 19.257069 9.620422 -2.609704 -10.568887 -3.460027 7.140041 -0.261549 9.871585 -10.466117 -5.229831 -19.154617 2.359312 6.326510 0.295021 12.151749 0.648736 11.276742 9.631248 14.104709 -17.081444 13.372187 -22.690901 5.284784 -7.919723 5.674152 -3.126426 7.706369 2.737423 7.037744 14.355383 -22.164791 15.998026 3.668918 -2.983607 -18.613111 6.824789 -4.388407 -6.001043 -7.453863 10.464575 0.790733 -3.024204 -4.110912 2.417294 0.178782 -3.016492 -10.083713 3.241592 20.850461 -15.528319 6.017164 -5.416459 -6.679725 -1.237152 7.171334 11.156915 10.547018 24.571218 17.581665 -0.724290 6.739798 -17.906540 1.183700 23.107940 8.112244 -15.510327 16.355685 -6.608932 -5.652327 4.896841 9.595768 12.342743 12.444270 -21.282270 -20.365206 4.228772 -4.265351 20.621945 11.528420 2.775850 -16.790838 21.475693 -5.443433 -7.367991 22.300447 13.090934 -17.416511 4.124139 12.248443 -21.963593 -13.542032 8.986705 -9.310532 -1.672873 -3.387015 2.060016 7.855648 -10.533588 -16.815849 -5.330578 -18.253771 18.808803 -3.710531 0.723336 2.028614 -12.643832 -15.508444 19.077731 3.716632 -9.852034 -11.221787 -11.453989 -11.673308 -20.366367 7.353161 6.021662 -6.907713 -13.942660 -15.953886 -1.195202 9.098919 -4.207003 4.971628 -14.377539 -9.024587 10.630314 6.861204 9.451743 -14.476960 -4.283304 -1.863979 1.182617 6.958271 1.588237 15.974916 27.769653 -12.144236 9.480742 3.961560 -7.157352 8.981793 18.679555 -20.138174 23.962089 -1.495361 20.164441 0.305667 7.502458 -7.620593 0.961200 4.892348 -8.035699 1.224913 8.263331 -9.477792 -6.045526 3.220756 -13.995199 -8.154426 4.600234 9.849885 0.051312 4.617999 6.919716 -12.176143 -5.725198 -11.160262 -0.339113 15.271919 -2.628646 -14.055148 7.591908 7.482286 -1.746724 -9.039943 2.791873 8.595362 12.836223 -21.091117 10.371085 -4.913372 -1.794399 -17.953291 -16.983794 9.974364 -16.633189 -14.952215 9.235037 -18.504089 -0.885243 -13.631558 7.006243 -19.425004 -8.702932 3.308863 20.754515 7.076265 -4.405109 10.753581 -7.761764 15.372088 0.730028 -0.099653 1.607462 17.949283 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -3.931976 0.935931 -2.317418 -5.119190 9.947599 -2.017435 -1.361185 6.450369 0.066888 5.562249 -3.052889 0.019877 -1.116164 -7.637795 0.645960 -0.409282 0.639505 4.113157 -2.692227 2.921816 3.212555 -0.798762 2.591049 -0.850158 -3.089319 -3.513048 -0.352423 3.123085 1.965365 -2.743440 0.165028 0.349255 7.563462 -1.306847 5.718494 3.549703 4.223884 5.638385 2.358404 -1.673137 1.265135 1.965564 -2.491273 -5.894396 1.601531 -1.895334 -6.625096 -2.656325 3.577066 -5.410095 1.376568 5.599088 0.108743 -1.286580 -4.038914 3.805271 2.145099 -1.671723 6.613360 1.730297 -4.595935 -2.504163 -5.270025 4.877580 -4.088964 2.178414 -1.270971 -5.110319 -2.322652 3.868780 0.260299 -4.299660 -3.984195 2.274616 3.389772 -4.731853 2.429671 -1.984061 2.347611 -4.881357 -3.330314 2.999045 -2.159472 4.445304 0.361303 3.044022 0.583243 1.909853 -1.433002 -7.188729 1.275278 4.555297 -3.751698 -0.114095 -3.989154 3.666161 -1.060952 -1.504617 -4.384760 -3.535871 1.950442 -0.639339 3.068916 -2.433766 2.021189 -4.252337 1.299081 1.781014 1.926948 3.037790 2.352030 1.084172 2.105595 4.950576 -2.626633 1.512753 -8.262268 1.972792 -2.616519 2.004862 -3.077257 2.200087 4.834348 2.857980 4.335596 -7.851523 5.725149 1.354608 -2.010301 -4.809577 2.067336 -0.003490 -1.691577 -1.195216 4.550964 -2.387611 -0.715177 -1.032077 3.222330 0.659023 -4.671417 -1.131169 -0.649755 2.949181 -5.552955 2.395651 -0.984506 -2.788312 0.420602 2.656380 4.320818 3.166967 8.857814 4.082197 -1.951389 3.156675 -6.718991 1.858257 7.524636 1.858634 -4.926288 6.073743 -4.581179 -0.822177 0.879049 4.725723 3.467945 2.140964 -2.965120 -2.273266 2.495572 1.908450 7.173715 -0.596593 1.765538 -5.837476 1.473772 -0.707814 1.549076 9.317827 3.464038 -6.777122 2.057598 4.488476 -2.379448 -2.472976 2.551444 -4.289166 -1.795331 -2.110847 2.652772 4.245566 -4.225115 -4.333296 0.286354 -4.746330 4.707960 -1.833553 -3.688450 1.969697 -6.267675 0.010585 7.091027 0.944955 -1.812201 -2.559450 -5.667964 -1.313463 -7.008212 1.746339 2.628829 -1.274431 -0.802860 -4.150611 -2.189597 5.211192 0.536981 1.660262 -9.063631 0.511645 4.426551 0.572241 2.507270 -3.475722 -0.262141 0.747413 -0.817937 1.368490 -2.678949 1.746543 5.355991 -4.866123 3.889096 0.517792 -1.792661 2.077265 3.747809 -5.674081 9.056392 1.343228 5.822076 0.468908 2.538388 -2.398620 2.030019 -0.861149 -1.218214 -0.773171 2.141408 -4.263372 -3.126234 1.833607 -1.939901 -5.499092 0.168186 4.676064 -0.649113 1.888726 -1.480815 -1.557368 -2.167589 -2.652341 2.642035 3.993519 -2.154807 -3.714484 3.090235 4.337847 -1.306231 -0.405128 1.366695 3.498734 6.200070 -6.898645 2.871638 -0.046204 2.565057 -6.071275 -5.439868 2.150212 -2.571507 -0.274058 1.481220 -7.292164 -3.793230 -3.496390 3.730575 -3.752582 1.384209 1.747826 7.160979 2.566278 -2.687184 3.866777 -1.339971 2.260893 -0.075331 -0.145193 2.098834 4.215930 +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.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/reservoir-sampling.cpp__main = -1.302659 0.500435 -0.007964 -0.830507 3.028575 -0.640289 0.079090 1.816522 -0.649273 1.931257 -0.899814 -0.048852 -0.653954 -2.067806 0.264414 -0.199694 0.148009 1.322253 -0.388026 0.678056 1.083793 -0.484283 0.272614 -0.260262 -0.671769 -1.457167 -0.254582 0.665801 1.164039 -0.754946 -0.224364 0.375337 2.472634 -0.333405 1.959035 1.530443 1.086285 1.733171 0.599301 -0.589096 -0.143260 1.057296 -1.042403 -1.812460 0.577974 -0.700515 -1.521214 -0.881557 0.972088 -1.142949 0.558043 1.629893 -0.314850 0.024307 -1.059729 1.227924 0.726761 -0.167285 2.169593 0.503095 -1.060261 -0.420177 -1.785120 1.999234 -1.058946 0.518221 -0.543613 -1.908856 -0.168172 0.388539 0.348873 -1.314446 -0.855829 1.343546 0.713453 -1.458896 0.555495 -0.528209 -0.391042 -1.705509 -1.810059 0.489873 -0.678866 1.498398 -0.032831 0.459064 -0.259383 0.642589 -0.266043 -2.381206 0.212765 1.834381 -1.176551 0.243941 -1.320180 0.851736 0.202453 0.108724 -0.995828 -0.896966 0.532328 -0.251883 0.954622 -0.792565 0.670894 -1.220635 0.278509 -0.052649 0.667664 1.000563 0.814427 0.355936 0.960083 1.604165 -0.917732 0.220060 -2.073940 0.887607 -0.509020 0.499597 -0.550487 0.906871 0.906653 0.351912 1.734975 -2.602812 0.955488 0.022463 -0.380123 -1.667705 0.393811 -0.617481 -0.715988 -0.765484 1.461466 -0.281668 -0.422095 -0.665010 0.682711 0.333542 -1.469268 -0.683668 -0.054364 1.415426 -1.947712 0.451489 -0.630114 -0.936806 -0.163308 0.913865 1.283566 1.619381 2.238785 1.751313 -0.349997 0.643323 -2.399931 0.301777 2.120270 0.544076 -1.686993 1.747796 -1.401752 -0.272852 0.663306 1.487537 1.254369 0.646792 -0.895514 -0.808688 0.712924 0.573742 2.213530 0.458752 0.510031 -1.147450 0.662210 -0.223684 -0.767092 2.663025 0.919310 -2.059634 0.836848 0.930986 -0.910873 -0.750990 0.881596 -1.501137 -0.398176 -0.977436 0.530627 1.375418 -1.360717 -0.693529 0.462637 -1.639043 1.819570 -0.435840 -0.362924 0.891579 -1.878707 -0.778804 2.177955 0.276316 -0.414097 -1.237411 -1.709424 -1.015355 -1.853176 0.634611 0.319581 -0.415071 -0.941395 -1.711464 -0.436792 1.785675 0.349082 0.927060 -2.353787 -0.154514 1.088043 0.241925 0.974941 -1.514611 -0.391758 -0.032192 -0.205146 0.622243 -0.565779 0.831090 2.238142 -1.403053 0.968862 0.593271 -0.577355 0.476809 1.056419 -2.049039 2.250698 0.155495 1.327120 0.084835 0.741112 -0.943988 0.259834 0.093752 0.293549 -0.239431 0.605626 -0.786526 -0.630965 0.298301 -1.584910 -1.295207 -0.137528 0.841621 0.158244 0.550066 -0.474361 -1.022953 -0.542995 -1.125935 0.452654 1.445529 -0.408972 -0.906590 1.168174 0.233115 -0.437580 -0.205990 0.352746 0.670495 1.440892 -2.097118 0.270019 -0.095943 0.567240 -1.579743 -1.957918 0.075822 -1.106770 -0.914146 0.996670 -2.225001 -0.550159 -1.210161 0.506929 -1.988224 -0.189508 0.186710 2.356736 0.668671 -0.575573 1.230879 -0.371728 1.084582 -0.014374 -0.053727 0.362938 1.413509 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.175251 2.400819 1.267653 -2.739695 8.613979 -0.915547 0.607082 4.068251 -3.056208 6.180190 -2.094288 0.042287 -1.123363 -5.968293 0.463185 -2.002006 -0.766409 2.769089 -0.235716 3.270516 2.254227 -2.504592 0.708708 -0.024917 -2.580655 -4.968244 -0.979298 2.410610 4.734151 -3.415257 0.904730 0.133406 6.687274 -1.725027 5.767829 4.489328 2.281981 3.639499 1.809694 -3.178453 -0.972023 2.278799 -3.423817 -3.582664 0.177235 -1.131242 -5.101364 -2.356465 2.274493 -2.272800 -1.103655 4.934299 -1.468347 0.043606 -3.117426 4.696002 1.455437 -1.269159 6.241314 0.601503 -1.993122 -1.092324 -5.950754 5.979846 -2.243559 0.398208 -2.889081 -4.576276 0.982250 0.486614 -0.788314 -2.829189 -1.262814 5.325998 3.007677 -4.895216 0.636409 -2.675239 -4.528982 -5.600782 -4.059657 2.126314 -0.792672 4.031462 0.933332 2.027078 1.034185 3.123070 -2.030254 -7.769592 1.475438 5.793693 -3.187946 -1.603206 -3.327213 3.921110 1.129641 0.599383 -2.744287 -2.108064 1.566366 -1.283521 2.778248 -4.252787 3.244113 -4.789348 -0.921367 -0.439778 2.207396 2.906968 2.177338 1.107090 3.797548 5.507440 -4.199914 0.150098 -5.116299 2.000370 -1.849436 1.352640 -2.025742 3.018197 1.686612 2.436311 5.708141 -8.039061 1.742115 -0.426660 -0.959245 -5.615948 0.033901 -2.099560 -1.422215 -1.902194 2.962111 -0.929944 -0.571206 -2.285387 1.587188 1.587808 -3.075922 -1.573527 1.693963 5.279455 -5.835269 1.734597 -1.040243 -1.561836 -0.723929 3.369108 5.104822 5.002429 6.936600 4.812543 -0.060197 2.627482 -6.775526 0.083286 5.427912 0.836129 -4.409204 6.259945 -4.760072 -1.998337 0.699163 5.200711 3.980051 1.233516 -4.499027 -3.953593 3.354558 2.081128 6.282097 0.131876 0.067733 -1.828098 3.480101 -0.466127 -3.286505 6.531425 2.580967 -4.918561 2.597512 2.160210 -3.505542 -2.420024 3.852096 -5.279121 -0.740652 -1.967768 0.527322 3.583894 -2.296160 -1.034104 0.781751 -4.433052 5.528648 -1.461251 -1.250720 2.646723 -3.669290 -4.557808 5.138608 0.267576 -1.240789 -4.064735 -4.854041 -3.128841 -4.487323 1.582858 0.785337 -1.523367 -2.548161 -5.120491 -0.985948 3.912173 1.459241 3.706068 -7.419731 -0.999512 3.034591 1.982656 3.084270 -2.722379 -0.366103 -0.114878 -0.741899 0.773436 -1.711219 3.896468 6.745574 -3.230607 3.178616 -0.759463 -3.183117 1.822399 2.378115 -6.882008 6.961453 1.200964 3.796970 0.388397 1.447555 -2.330513 0.999647 0.916558 -0.672852 0.147353 0.665958 -1.469294 -2.130851 -0.029385 -4.493045 -4.124054 -1.324425 1.989756 -0.949945 1.958322 -0.850808 -3.146699 -1.990043 -3.567005 1.390275 3.468395 -1.011015 -1.221510 4.444833 0.769346 0.613304 0.115609 0.270262 2.287773 2.917575 -6.264933 0.284595 -0.961235 2.498270 -4.146417 -6.087068 0.493027 -3.748016 -2.549922 2.033750 -6.080946 -0.894739 -3.912340 -0.014042 -5.675593 -1.163007 1.975257 7.495692 1.701499 -3.029873 2.415017 -2.193947 3.028185 -0.114288 0.303399 1.239948 3.058790 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -2.588339 0.459671 -0.516174 -1.821182 6.634495 -2.818704 0.562962 4.307307 -0.583150 2.933326 -2.370495 1.181074 -0.785410 -3.315159 0.803016 0.149881 1.294512 3.591143 -1.357824 0.461758 1.915379 0.995790 0.539670 -1.033246 -1.103967 -2.956733 -0.288822 1.305051 0.360053 -1.109514 -1.132018 1.778986 5.293685 -0.932370 3.716065 3.179494 3.022418 3.499506 1.551000 -0.808558 1.837418 1.351330 -1.106951 -3.852635 0.929125 -0.829480 -3.430068 -1.602925 2.063259 -3.132382 2.584701 2.644821 0.013891 -0.234851 -2.069643 2.667477 1.610470 -0.942567 3.559441 1.332851 -3.640149 -0.225314 -2.189843 5.345731 -2.693252 1.486858 -1.053926 -4.334011 -1.499793 2.652441 2.216205 -3.466083 -2.848405 0.772652 0.698676 -2.443024 1.305422 -0.052844 2.796882 -2.683700 -3.185099 1.212183 -1.806886 2.291056 -0.112423 0.737162 -2.272328 0.267136 0.466512 -3.154844 -0.460275 3.526212 -2.572800 1.429904 -3.541872 0.286840 1.102955 -1.185972 -0.980580 -3.484822 0.908208 -1.130206 1.615329 -0.175388 1.205917 -1.036317 0.325119 0.976767 1.109836 3.003018 -0.579755 1.679319 1.424964 1.486958 0.384319 0.466294 -5.316842 2.528352 -1.535129 0.023037 -0.957910 0.866335 2.659929 1.306135 2.534158 -4.076475 3.037394 0.264875 -0.827456 -1.904123 1.306503 0.301598 -1.368315 -1.473367 3.147088 -0.326544 -0.668125 -0.199452 1.853502 0.211207 -2.481601 -2.088829 -1.319842 1.377260 -3.393692 0.986327 -1.121264 -1.611718 -0.033575 1.278022 1.628732 2.432178 4.031264 3.053628 -0.990233 1.025950 -4.986431 0.879174 3.760833 1.386780 -2.807582 3.014556 -2.410634 -0.542155 1.575077 2.801091 0.973233 1.252464 -1.089513 -1.101520 0.273779 0.319604 3.855190 1.167226 0.638148 -3.453331 -0.073095 -1.239218 -0.073861 5.701803 1.864594 -4.753603 1.239651 3.293278 -0.388333 -2.383238 1.141853 -3.066432 -2.204141 -1.898907 1.788831 2.638954 -3.237865 -1.654005 1.487002 -2.647455 2.388322 -0.643734 -2.803341 0.901122 -3.862572 -0.338187 5.231676 0.891793 0.087157 -1.214276 -3.477554 -0.407907 -4.533248 0.621682 1.237013 -0.289893 -0.966562 -2.594229 -1.098232 3.687956 -0.383347 1.482673 -4.365793 0.132048 2.473354 0.338962 0.503904 -4.278899 -0.778564 -0.006960 -0.133642 0.440313 -1.788778 0.562623 3.374771 -2.818550 1.705926 2.695673 -1.653060 0.577796 2.405629 -3.335674 4.134688 0.350295 2.509528 1.259368 1.352735 -2.284854 0.099378 -0.834883 0.941491 -2.010085 1.617560 -2.957415 -1.132987 1.089244 -1.700419 -2.871293 0.557934 2.871610 0.359643 0.418189 -1.304064 -1.224133 -0.995921 -2.590848 1.311274 2.324858 -1.563999 -2.623377 2.170526 2.033162 -3.233644 -0.851084 0.746204 1.695272 3.331461 -3.774919 1.865416 0.552557 1.531062 -4.291560 -3.790524 1.072410 -2.212822 -1.799100 0.413753 -4.423287 -3.374422 -1.667533 2.385201 -3.658845 -0.758120 0.878767 4.051936 0.895821 -0.236167 2.703239 -0.581048 1.057108 -0.178753 0.116120 0.206970 2.799916 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.850152 0.400872 -0.446597 -0.606849 2.090102 -0.822481 0.204944 1.580558 -0.713364 1.033005 -0.753905 0.853159 -0.085916 -1.271347 0.247957 0.445177 0.354865 1.122684 -0.241392 0.325680 0.608885 -0.049155 0.114730 -0.356920 -0.467244 -1.071885 0.186741 0.427728 0.390333 -0.378443 -0.305291 0.492136 1.641269 -0.309371 1.138558 0.993891 0.857048 1.104526 0.829331 -0.739150 0.424691 0.459012 -0.358283 -1.233398 0.289133 -0.322966 -0.958307 -0.496127 0.611128 -0.982734 0.699742 0.797974 0.062496 -0.076818 -0.863649 0.813990 0.809704 -0.645688 1.237095 0.404820 -1.004113 -0.451633 -0.568331 1.801805 -0.850479 0.023227 -0.108203 -1.163078 -0.130753 0.833425 0.560103 -1.047849 -0.711206 0.266747 0.157998 -0.915764 0.417132 -0.081885 0.615235 -1.170534 -0.820518 0.329930 -0.622417 0.880958 -0.104677 0.236392 -0.756585 0.088202 0.102682 -1.050324 -0.228003 1.032062 -0.771907 0.378078 -1.069973 0.615709 0.436064 -0.341135 -0.422961 -1.025117 0.306872 -0.205831 0.482206 -0.432399 0.498878 -0.331779 -0.017744 -0.031173 0.283023 1.189786 -0.100029 0.621739 0.408155 0.559288 0.058609 0.014733 -1.775481 0.713962 -0.237159 0.143637 -0.327682 0.167857 0.955734 0.305624 0.849919 -1.402754 1.007630 0.112228 0.023506 -0.853592 0.421003 0.122712 -0.425363 -0.484795 0.938213 -0.107373 -0.176763 -0.120842 0.601873 0.208911 -1.137141 -0.911064 -0.285604 0.990967 -1.531725 0.295073 -0.342685 -0.404722 -0.047664 0.328646 0.553881 0.686728 1.275158 0.946437 -0.183538 0.931482 -1.576012 0.282681 1.391509 0.908890 -0.922320 0.960067 -0.880178 -0.260125 0.553446 0.806987 0.416559 0.285354 -0.663916 -0.567674 0.653187 0.058582 1.317091 0.138663 0.247776 -1.150071 0.381497 -0.030742 -0.041125 1.869010 0.453692 -1.562484 0.778832 0.930519 -0.099110 -0.409333 0.361823 -0.978690 -0.750451 -0.466319 0.507230 0.829023 -0.963154 -0.570604 0.154469 -0.834473 0.871234 -0.250784 -0.750965 0.242136 -1.070802 0.242822 1.485174 0.319378 -0.056116 -0.443280 -0.983227 -0.551883 -1.459166 0.154163 0.333304 -0.285669 -0.350076 -0.936462 -0.492707 1.183949 -0.197963 0.236615 -1.964747 0.049121 0.813880 0.369228 0.028323 -1.485025 -0.198157 0.107330 0.174753 0.184958 -0.614977 0.546203 1.179582 -0.894076 0.546660 0.699028 -0.113429 0.454242 0.808983 -1.122194 1.321183 0.066439 1.090730 0.370304 0.377437 -0.726513 0.005334 -0.336718 0.390943 -0.579917 0.379888 -0.916267 -0.333279 0.420509 -0.528175 -0.917383 0.239763 0.900413 0.297272 0.146644 -0.418199 -0.228869 -0.364744 -1.016653 0.261054 0.734888 -0.565224 -0.872230 0.701355 0.594978 -0.768408 -0.046446 0.158761 0.710776 0.949654 -1.154806 0.591303 0.073393 0.454453 -1.317423 -1.461629 0.497597 -0.547614 -0.723859 0.358161 -1.636223 -0.948839 -0.505427 0.784577 -1.685804 -0.043640 0.172321 1.302926 0.018090 -0.035065 0.873297 -0.237229 0.473742 -0.083688 0.313154 -0.011462 0.913534 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -4.303074 3.851020 0.872481 -4.733190 9.693951 -2.519835 1.755005 2.965174 -3.336703 5.379931 -4.563693 1.734059 -0.900863 -7.807256 1.217388 -2.619751 0.223126 4.411093 -0.140755 4.689357 3.084824 -3.450781 1.310180 -2.332419 -2.244596 -7.092430 -0.163804 2.539090 3.699824 -1.602795 2.163433 0.919624 7.063868 -1.465077 4.972367 5.389102 1.980390 5.914148 2.540396 -4.925454 1.254885 2.621827 -2.445929 -6.612532 1.216153 -1.155983 -5.903168 -4.199454 3.041513 -5.178937 -1.953185 5.391372 -0.560803 -2.079421 -6.124260 4.364488 5.769651 -1.101390 6.482366 1.524418 -1.825966 -1.471982 -4.802723 4.612505 -4.103466 -0.385271 -1.190886 -5.156625 0.706914 3.749163 -0.837407 -2.353041 -3.243148 2.258351 3.316732 -5.234563 1.279195 -2.256596 -4.636496 -5.285902 -2.895220 1.892480 -1.703386 5.590811 0.340211 2.042004 0.467285 1.685609 0.380131 -5.981516 -0.984216 5.837376 -1.841219 -1.689604 -2.217480 6.502577 3.967004 -2.407094 -2.967075 -3.206576 1.572656 -1.662252 3.163811 -2.542246 0.372839 -4.912738 -0.687274 0.800799 1.149946 5.810904 0.195190 3.028591 1.943360 3.242786 -4.621497 1.063623 -7.815841 2.027304 -2.462746 1.216514 -1.890263 1.899527 2.801861 2.701533 4.330016 -7.455328 5.575285 1.270759 0.240242 -4.814101 2.025337 0.396368 -1.509723 -1.817888 3.692425 -0.870391 -0.515231 -0.091834 1.941211 1.200208 -2.382592 -1.848750 0.052513 7.098574 -6.276714 2.510192 -1.394835 -2.274847 0.207657 1.274036 3.365389 3.474564 7.591364 5.492900 -1.165742 5.694228 -6.695278 1.613426 8.064415 2.771868 -4.405758 5.298849 -3.213783 -1.899280 1.393543 3.794682 3.550484 2.324950 -5.792133 -5.101827 2.416557 -0.792090 6.201120 1.367513 0.326055 -6.492356 5.426715 0.352837 -0.336554 8.079361 2.523662 -6.378187 3.981216 5.513811 -6.599738 -3.408597 2.235642 -3.822508 -1.550846 -2.318060 2.119326 3.484573 -3.932666 -4.432208 -2.163512 -4.730272 4.577209 -1.288455 -2.652595 1.322763 -3.330093 -3.668876 6.767761 1.024001 -1.387245 -3.484523 -4.819778 -2.886079 -7.141862 1.583805 1.233715 -2.920221 -2.360788 -4.842151 -2.079076 4.711278 -1.175822 1.636972 -8.838594 -0.229201 3.768375 4.666923 1.232925 -4.146258 -0.908051 1.406941 0.283705 0.000447 -1.210930 4.004744 6.562193 -4.748674 2.527938 -0.737185 -2.849011 4.128107 4.934219 -6.125298 7.763764 0.616588 7.680582 1.128507 2.191151 -2.633893 0.817426 0.453537 -2.896955 -1.232245 1.883031 -4.582234 -2.398236 3.364453 -1.964050 -5.312354 1.345263 4.597981 1.216572 1.166521 0.116566 -2.074978 -1.397200 -2.447305 1.340167 3.924194 -1.371149 -3.898045 2.804946 4.556267 -1.048107 -2.792622 0.884242 3.359973 4.327259 -6.739135 4.288554 -1.279771 1.663035 -5.554598 -6.829423 4.371434 -4.157330 -3.305436 2.889095 -7.899721 -2.210043 -3.772068 3.213750 -6.090124 -1.058493 1.252418 6.467302 0.854246 -1.080599 3.782211 -2.260776 2.583586 -1.155297 0.818610 0.642736 4.771899 +PE-benchmarks/subset-sum-problem.cpp__main = -2.441012 1.817331 1.126983 -1.641928 4.779574 -0.291510 -0.510919 1.966018 -1.525310 3.933615 -1.618582 -0.753762 -1.235934 -3.848635 0.273198 -1.784121 -0.642244 1.593402 -0.132031 2.267548 1.868829 -1.966106 0.253222 -0.198734 -1.430680 -2.937298 -0.993031 1.313700 3.632881 -2.652704 0.015291 0.100551 4.383577 -0.798945 4.091274 3.185025 1.571577 2.957027 0.567829 -1.814548 -1.376782 2.157560 -2.642024 -2.417915 0.598331 -1.367183 -2.750056 -1.346460 1.778212 -0.428498 -0.279504 3.494648 -1.121213 0.225554 -2.252958 2.754256 0.749577 0.513358 4.669884 0.508400 -0.706016 -0.531643 -4.367028 2.929931 -1.748532 0.867573 -1.852188 -2.545661 0.813860 -0.551348 -0.032330 -2.335568 -0.984375 3.968174 1.810155 -3.261679 0.700009 -1.806268 -3.558555 -3.766575 -3.557306 1.199103 -0.486445 3.003800 0.215414 1.282010 0.494259 2.493488 -1.312942 -5.474472 1.114468 3.805592 -2.058266 -0.668238 -1.868451 2.874084 0.273328 0.940890 -2.146463 -0.755087 1.274081 -0.633983 1.978394 -2.873820 2.526823 -3.466422 0.351098 -0.680820 1.036869 1.064357 2.256844 0.633853 2.994332 4.243516 -2.897414 -0.266545 -3.476467 0.749496 -1.059888 1.061626 -0.798490 2.456078 0.281816 0.942626 3.973466 -5.421331 1.015668 -0.270569 -0.879354 -4.168842 0.167970 -2.064592 -1.292938 -1.528806 2.194816 -0.309355 -0.806886 -1.862532 0.907374 0.880455 -2.140566 -0.980659 1.237728 3.424990 -3.065188 0.915134 -0.961678 -1.597482 -0.584164 2.167104 3.209026 3.524661 4.913765 3.505252 -0.305440 1.115373 -4.039079 -0.141039 3.380784 0.277369 -3.366694 4.062018 -2.782047 -1.180530 0.698555 3.321792 3.041670 1.210177 -2.692937 -2.874123 1.508808 1.361498 4.258267 0.068806 0.390148 -0.091115 2.906127 0.042321 -2.919008 4.422310 1.285162 -2.873971 1.311072 1.041866 -1.964469 -1.630490 2.707422 -3.116179 0.339151 -1.449660 0.321430 2.245816 -1.841448 -0.803426 0.578317 -3.299919 4.159280 -0.958840 -0.173019 2.115849 -3.245750 -3.780795 3.225372 -0.251326 -1.244222 -3.028182 -2.957728 -1.948869 -2.708793 1.472608 0.402615 -1.001057 -2.184492 -3.527157 -0.230901 2.783493 1.115622 2.506928 -4.352503 -1.312503 1.796292 0.955312 2.724481 -1.039567 -0.550438 -0.067333 -0.300949 1.223270 -0.750727 2.914726 5.215947 -2.435132 1.978970 -0.661224 -1.843582 1.109345 1.914449 -4.800955 4.538067 0.741403 1.954721 -0.210656 1.179182 -1.672212 0.386594 1.273732 0.051687 0.599090 0.478817 -0.323477 -1.286165 -0.587950 -3.280793 -1.919209 -0.980191 0.803909 -0.736515 1.440834 -0.216680 -2.009443 -1.169760 -1.797561 0.688381 2.775194 -0.089216 -0.668147 2.764558 -0.173344 0.866679 1.186610 0.328507 0.937660 2.324704 -4.290534 -0.347804 -0.828457 1.112092 -2.175476 -3.829394 -0.631833 -2.289220 -1.282991 2.239365 -3.749266 -0.029647 -2.754654 -0.236521 -2.779754 -0.469184 1.024064 4.859745 2.304053 -2.230014 1.664635 -1.370599 2.573418 0.151275 -0.563493 0.868964 2.465215 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -5.821578 0.604031 -4.194599 -7.644573 15.567025 -3.397301 -2.032467 8.820849 1.190298 8.117260 -4.603917 -0.907102 -1.913521 -11.677304 1.134751 -0.172548 1.190838 6.332363 -4.230382 4.056891 4.616148 -1.397735 4.325233 -1.366984 -4.175787 -5.206884 -0.731202 4.834624 2.649257 -3.873440 -0.185585 0.682295 11.205374 -1.835962 7.772853 4.678730 6.155837 8.644177 3.280462 -3.158240 2.871979 2.647772 -3.207390 -9.168884 2.966161 -2.731406 -10.440898 -4.735769 5.473201 -8.655184 2.381376 8.469072 0.219590 -2.663845 -6.397004 5.458594 4.051870 -2.147445 9.564475 2.523328 -6.565584 -3.662175 -7.490310 6.414626 -6.105891 2.997189 -1.905130 -7.906426 -4.130898 6.706959 0.601487 -6.431030 -6.083054 2.734031 5.657967 -6.464322 3.657593 -2.552926 4.960971 -7.453979 -5.168374 4.058769 -3.881013 6.477783 0.367628 4.494071 1.002687 2.155159 -1.608515 -9.940057 1.554946 6.758312 -5.048549 -0.004015 -5.179793 5.255972 -1.105550 -3.250005 -6.778336 -5.595333 2.294542 -1.318102 4.529088 -2.266873 2.814902 -6.053262 2.145830 2.962035 3.261641 4.639607 3.696670 1.024367 2.200790 6.433800 -4.313191 2.375120 -12.297318 2.623623 -3.540502 2.944603 -4.672957 3.063242 7.502806 4.185904 5.750711 -11.904812 9.026637 1.985541 -2.746214 -6.389598 3.128602 0.885755 -2.189629 -1.268822 6.795583 -3.938970 -1.109581 -0.609148 4.728732 0.990060 -7.025743 -0.760704 -1.228167 4.894466 -7.980860 3.901877 -1.370818 -4.567644 1.039893 3.159289 6.049635 4.111699 13.057272 6.007602 -3.314593 4.842314 -9.952962 3.648756 11.470250 1.958412 -7.164097 8.689522 -6.442520 -0.653180 1.048710 6.983613 5.109181 2.737897 -3.575953 -2.396864 3.479785 2.597017 10.146496 -1.153361 2.838286 -10.010991 1.351746 -0.752422 3.719506 14.178187 4.904659 -10.243450 2.996751 7.566445 -4.438398 -3.572957 3.244037 -5.606558 -2.870723 -3.514970 5.007244 6.357069 -6.442699 -6.729671 -0.014952 -6.813613 6.339931 -2.773968 -6.178148 2.952048 -8.913469 1.009824 11.246572 1.269414 -2.191664 -3.184483 -8.893353 -1.141288 -10.647783 2.381047 3.901676 -2.005519 -0.913592 -5.538450 -3.427944 8.599426 0.585402 2.373344 -13.601718 1.752418 6.360200 1.251379 3.349094 -5.243742 -0.459255 1.693682 -1.276365 1.304950 -3.675823 1.611212 7.063722 -7.632117 5.289249 0.598066 -2.161154 3.566337 5.415678 -7.663694 13.266379 2.150747 9.871408 0.446007 3.978779 -2.939427 3.421412 -1.416939 -2.061193 -1.717794 3.413005 -6.987564 -4.771854 3.949919 -2.045079 -9.211930 0.700827 7.620830 -0.407449 2.769936 -2.693676 -1.866958 -2.916785 -3.336464 4.416925 5.497911 -3.092248 -5.509071 3.913365 7.394215 -2.407858 -1.170380 2.355585 5.122632 9.410545 -10.119775 5.072267 -0.005019 4.112301 -8.526349 -7.820602 3.825597 -3.682126 0.078302 2.613137 -11.381061 -6.280863 -5.072884 6.224665 -5.275443 2.657146 1.946012 10.439466 4.216474 -3.495853 6.204914 -1.689263 2.337890 -0.617040 -0.447843 3.747186 6.030731 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -2.868768 2.215561 0.293892 -2.421746 8.793159 -2.240864 0.575398 4.041338 -3.096580 5.852911 -1.538927 -1.316110 -0.840878 -6.720851 0.750916 -1.845595 -1.129283 3.467706 0.195219 3.447751 1.886395 -2.464275 0.143783 0.331883 -2.120801 -3.883017 -1.484667 2.397597 5.702556 -5.443573 -0.105046 0.259307 7.060213 -1.921758 6.050107 4.441531 1.624713 2.426843 1.809452 -4.947745 -1.259813 2.024364 -3.434871 -2.182611 -0.673482 -0.247532 -4.844573 -1.666009 2.165896 -0.410809 -0.793084 4.796344 -1.675155 0.460985 -2.695307 5.299202 0.327843 -0.309236 5.781432 0.536556 -1.231724 -0.384733 -6.418683 6.627598 -1.615067 0.471473 -4.023853 -3.840897 1.281611 -0.135583 -0.472112 -4.235572 -0.409052 6.173413 3.099849 -4.499828 0.765730 -2.588409 -3.477472 -6.446569 -5.327055 2.388284 -1.220851 3.915569 0.892599 2.002684 0.603491 3.648656 -2.418110 -7.954720 1.802144 5.437894 -3.253302 -2.811775 -2.603492 3.744682 1.239178 1.056286 -2.290963 -3.106217 1.594534 -1.830356 2.650631 -4.586736 5.690998 -4.429895 -1.836879 -0.776803 2.217271 3.364039 4.071559 1.322555 4.271569 6.143872 -4.021951 -2.306813 -5.204712 1.743838 -2.831711 1.386656 -1.631335 3.513165 1.497294 2.762211 5.635323 -9.178676 0.779549 -0.567741 -0.410948 -5.904337 -0.363538 -2.460947 -1.494741 -1.980870 2.476691 -0.659245 -0.718007 -2.077866 1.564319 2.078415 -3.064311 -0.163628 2.293869 5.648046 -6.198391 1.531664 -0.759718 -1.196521 -0.838029 3.325854 5.427403 5.108415 6.888903 4.387257 -0.176135 1.791249 -6.962912 -0.107593 4.308850 -0.798653 -3.715204 6.776650 -4.707005 -2.284975 0.234439 6.201669 3.827847 0.210246 -4.537658 -3.999725 4.660166 2.224666 5.592559 -1.985040 -0.702202 -0.463842 3.492980 0.024687 -4.448868 7.019363 1.885665 -4.241826 2.459892 1.674480 -2.256718 -2.517262 4.622575 -5.526156 -0.120263 -1.954653 0.392103 3.265646 -1.774491 -0.321101 1.059936 -3.902339 5.452854 -1.563990 -2.778262 2.764468 -3.119981 -4.079002 5.934582 0.457693 -1.072035 -4.222420 -5.340575 -2.803946 -3.313182 1.639494 0.424161 -0.927370 -2.156454 -4.490063 -0.906103 4.920369 1.561962 4.257680 -7.595853 -0.714704 2.482715 2.091325 3.536829 -1.757939 -0.233320 -0.078336 -0.749119 0.068034 -1.686282 4.030134 6.866226 -3.024190 3.026527 -0.014259 -2.512256 1.564653 1.730930 -7.392877 6.519645 1.960660 4.309993 0.318684 1.113582 -2.498214 0.528591 1.575932 -0.033494 0.295217 0.073877 -0.459747 -1.849229 -0.849463 -4.205412 -4.808388 -1.743233 1.497626 -1.831141 2.022781 -1.744846 -2.929442 -1.787090 -3.254353 1.598009 3.168863 -0.354264 -0.247581 4.625135 0.575630 1.364167 1.630764 0.007469 1.762834 2.751661 -5.879596 -0.202090 -1.008212 4.133859 -3.138941 -6.761397 0.055416 -3.438535 -1.692812 1.401112 -5.781788 -1.433400 -3.803998 -0.727425 -6.051021 -0.454462 2.569432 7.516074 2.011600 -3.645647 1.818885 -2.333445 2.720921 -0.131739 -0.180775 1.232485 2.311801 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -2.697342 2.296367 2.020685 -2.086622 5.038296 -0.074591 0.857015 2.631756 -1.859096 3.870711 -2.467738 0.353020 -0.862643 -2.857461 0.012837 -1.926692 -0.962889 1.444180 -0.629192 1.944426 2.002844 -1.278857 0.484575 -0.932188 -1.653425 -2.879995 -0.562358 0.975110 2.648252 -0.629394 0.683554 -0.306465 3.518019 -0.751968 3.814835 2.974471 1.422685 3.158780 -0.088278 -0.254999 -0.747848 2.080888 -2.376375 -3.227350 0.608052 -1.682766 -2.872522 -1.992058 1.604424 -2.761264 0.432226 3.179290 -0.663946 -0.306116 -1.558796 2.967577 1.404609 -0.316750 4.341861 0.674347 -2.044164 -0.444972 -3.975296 2.821209 -1.272823 1.779472 -1.022794 -3.253284 0.121117 0.203270 -0.188035 -2.010043 -0.853802 3.064703 1.318594 -3.113253 0.814061 -1.974629 -2.999853 -2.716710 -2.146123 1.091595 0.360336 2.709055 0.115778 1.073131 -0.166007 1.933083 -0.905052 -4.900038 0.197039 4.199930 -2.083392 -0.416865 -2.384173 2.014570 0.247166 0.678519 -1.834740 -0.578369 1.331740 0.542956 1.648321 -3.291277 0.440285 -3.639126 0.702074 0.646846 0.528733 0.998890 0.471814 1.208653 2.305265 3.745957 -2.359342 2.075226 -3.596653 1.074808 -0.996267 1.232020 -0.898275 1.692210 0.703575 1.204674 3.497302 -4.421212 2.035582 -0.047470 -1.275657 -4.057849 0.548963 -1.831442 -1.401816 -1.216951 1.893088 0.002958 -0.732006 -1.711393 0.896210 0.034377 -1.750402 -2.083905 0.991705 2.600562 -3.136949 0.759938 -0.928885 -0.931476 -0.808261 2.439206 2.800928 2.597835 4.617086 3.165665 0.297515 0.953786 -3.520499 -0.013247 3.634150 1.370171 -3.325350 3.411570 -2.764533 -0.832884 1.067158 2.022959 2.247094 2.509607 -3.365468 -2.807003 1.706135 0.397849 4.336303 1.765918 0.934465 -1.734760 2.868461 -1.909890 -2.108107 3.945957 2.889001 -3.940031 0.980704 1.323382 -2.103141 -1.733878 2.409191 -2.714778 -0.427084 -0.859601 -0.083364 1.831218 -1.841772 -2.007833 0.477411 -3.523977 4.345879 -0.644311 0.706474 1.182358 -2.984775 -2.535789 3.151928 0.600969 -1.743439 -2.317483 -1.983197 -2.895319 -3.210530 1.266666 1.330757 -1.028916 -2.783802 -3.469006 0.009884 1.819635 0.130904 1.933683 -2.894759 -1.662962 1.892550 0.236661 2.531321 -2.214266 -0.720580 -1.345094 -0.241809 1.887193 -0.740738 2.868822 5.154962 -2.049610 2.868327 0.481350 -1.762317 0.480797 2.595580 -3.877060 4.348329 0.274008 2.245756 -0.103274 1.543290 -1.836068 0.384224 0.621043 -0.554560 0.557341 1.435608 -1.108948 -1.142265 -0.488083 -3.686095 -1.147580 0.027947 1.080558 -0.432277 0.975703 0.671907 -2.417033 -1.525395 -3.104373 0.033146 2.845701 -0.946593 -2.128659 2.014001 0.005862 -0.520418 -0.615872 0.532347 1.309923 2.448930 -3.953717 0.357784 -0.459828 -0.143812 -3.710767 -3.080083 -0.045171 -2.838856 -2.659053 1.436996 -3.204520 -0.030946 -2.587543 0.303134 -3.877119 -1.939024 0.845704 4.581721 1.630610 -1.299361 2.049340 -1.182030 3.091650 0.587455 -0.007339 0.652869 2.603612 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -52.065568 56.230721 48.278495 -40.508098 95.911914 4.724565 24.240856 47.286196 -66.359238 84.196266 -41.266348 21.210527 -15.088423 -60.843688 -2.389933 -45.126787 -23.817693 18.527681 1.124094 55.662441 35.943497 -45.000489 10.155519 -11.693161 -38.518425 -68.597420 -2.328217 21.985550 73.810260 -18.665967 28.112173 -12.842732 64.653623 -17.966592 76.778110 60.436876 17.236256 53.441069 5.625933 -35.634298 -30.907330 38.549992 -51.664222 -55.069779 3.343277 -26.921164 -59.316329 -37.952283 30.358055 -46.994261 -25.439747 67.903858 -20.326093 -4.253379 -37.154347 66.692192 31.341442 -18.371097 90.657687 4.521761 -27.473141 -25.854352 -80.165710 51.987957 -16.531217 11.502333 -26.593837 -51.459855 25.216691 -4.990796 -31.442924 -28.111594 1.437551 76.445252 34.668554 -72.330166 8.019756 -46.342933 -102.036385 -64.253315 -35.323672 21.927351 17.127269 57.883730 9.761248 29.276612 14.727887 49.618255 -27.763482 -110.141925 16.513320 86.810745 -39.107487 -29.300031 -40.217433 67.150851 9.128403 16.810374 -40.220597 -4.201887 26.682573 5.299763 35.808415 -97.255085 16.430230 -86.166170 -0.839317 -3.181648 16.187812 26.508538 13.335023 24.689345 53.338881 86.958437 -64.803157 38.614510 -67.356600 17.257152 -17.478593 25.431400 -20.962492 37.918809 7.835380 30.764523 79.021057 -98.572054 31.726274 -1.907889 -14.510354 -97.969311 2.536113 -41.666597 -18.733643 -24.890933 33.496990 -7.219987 -9.935457 -40.683906 17.061565 9.402803 -33.903783 -39.286455 34.642565 76.473758 -75.125640 21.154530 -15.960286 -12.008678 -16.126037 50.012647 64.654828 58.835958 94.578299 64.927010 10.848477 46.241203 -68.083839 -6.880181 70.043310 35.920482 -64.692749 78.311045 -63.107094 -28.971653 12.705258 43.611004 57.827035 42.853154 -90.274858 -74.319451 62.702948 15.116816 87.213672 23.403153 13.100968 -23.329212 78.820303 -31.686739 -51.141689 65.299529 52.594047 -74.185506 35.014860 19.672217 -53.283522 -27.493698 57.257220 -63.668298 -2.907516 -12.490836 -10.674693 36.894737 -28.545651 -32.223596 -0.826705 -69.613075 91.047888 -14.186701 22.033026 27.847893 -44.931919 -60.956727 48.419174 10.483414 -36.619744 -56.932289 -41.372720 -78.178005 -57.225802 24.735739 19.845739 -25.430684 -56.485668 -76.080072 -6.856766 24.562522 14.351245 45.870987 -76.484710 -32.598868 38.736446 25.866851 50.164424 -28.298694 -9.650312 -20.483617 -4.546790 32.855641 -13.181091 79.330289 103.198283 -38.585013 62.916567 -21.721269 -38.224477 24.095269 44.071390 -89.581605 89.902012 12.335375 60.132731 -0.698009 26.565951 -36.113788 12.426163 18.942192 -24.818946 19.415915 18.691021 -15.434040 -27.669264 -11.782018 -71.376400 -29.479860 -12.472017 15.773645 -14.929885 24.049752 18.503015 -46.252877 -35.671513 -70.601213 2.815432 53.816244 -19.952723 -29.962380 49.533086 -1.563525 12.876126 -4.837866 6.951493 30.877512 36.291561 -83.130740 0.068797 -20.280366 2.321812 -65.000420 -71.422537 7.744296 -57.395815 -57.860245 32.872727 -68.861493 16.604952 -55.411796 -6.567026 -90.484470 -38.224810 20.499912 98.117193 21.230731 -32.364493 36.107762 -32.497604 59.517479 7.161859 11.534646 11.451503 47.824481 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -1.286768 0.539048 0.019079 -0.876887 2.729483 -0.922148 0.111512 0.820229 0.199192 1.905668 -0.902137 -1.281241 -0.925158 -2.598455 0.283617 -0.966387 -0.037072 1.480791 -0.210172 0.882203 1.111212 -0.894274 0.290477 -0.312689 -0.489223 -1.620213 -0.536619 0.652158 1.492172 -1.292784 -0.054283 0.279354 2.652927 -0.126872 2.133584 1.590102 0.674861 1.906911 0.407225 -0.470932 -0.371288 1.215980 -1.101406 -1.832267 0.501969 -0.506602 -1.417985 -1.068255 1.037633 -0.636855 0.619346 1.792312 -0.428353 -0.022600 -1.413842 1.021286 0.782173 0.881086 2.207388 0.421184 -0.209151 0.221642 -2.316126 1.423709 -1.194647 0.415158 -0.561381 -1.596481 -0.026018 0.052812 0.034210 -1.303592 -0.863786 1.577528 1.179251 -1.453975 0.400338 -0.653311 -1.484388 -1.709181 -2.250246 0.489013 -0.681874 1.688122 0.008384 0.555774 0.190048 0.885270 -0.229666 -2.460531 0.316931 1.876474 -0.924599 -0.198915 -0.471214 1.320568 0.262558 0.177810 -1.095834 -0.752107 0.435028 -0.507752 1.101010 -0.457372 0.430969 -1.654971 0.494034 -0.076789 0.317534 0.665903 1.856084 0.111889 0.890278 1.751196 -1.648369 -0.100675 -2.216042 0.621922 -0.566617 0.554241 -0.341026 1.176005 0.207899 0.393740 1.678676 -3.040911 0.827882 0.022164 -0.276598 -1.705589 0.236185 -0.714134 -0.667742 -0.775381 1.380189 -0.215376 -0.470865 -0.579870 0.452003 0.496836 -1.072155 -0.040389 0.231955 1.752724 -1.494391 0.525170 -0.626102 -1.190252 -0.247291 0.745138 1.289862 1.654096 2.308716 1.901085 -0.534428 0.177508 -2.338819 0.209340 2.026892 -0.395016 -1.623482 1.835375 -1.176346 -0.275553 0.476188 1.777059 1.522301 0.424043 -0.905537 -0.789258 0.681495 0.481777 2.021231 0.057315 0.263902 -0.769120 1.155522 0.253254 -1.158087 2.909671 0.793835 -1.709284 0.621155 0.896761 -1.701689 -1.050884 1.004875 -1.184421 0.306793 -1.267930 0.668406 1.159818 -1.148970 -0.619350 0.181194 -1.647727 1.781242 -0.484845 -0.437465 1.155641 -1.806959 -1.470340 2.443937 -0.036248 -0.465405 -1.495937 -2.029167 -0.811598 -1.663640 0.841250 0.046548 -0.518086 -0.930364 -1.596233 -0.103298 2.149866 0.414692 1.146920 -1.762253 -0.333373 0.859558 0.623973 1.279954 -0.825654 -0.388058 0.287965 -0.082080 0.461193 -0.000436 0.864718 2.604167 -1.481460 0.757996 0.238089 -0.792383 0.654213 1.147267 -2.260630 2.240152 0.000261 1.255996 -0.201840 0.703767 -0.744069 0.231362 0.660990 0.014349 0.021080 0.323405 -0.500579 -0.655932 0.213611 -1.692310 -1.431608 -0.216480 0.754088 0.139648 0.658369 -0.354437 -1.117129 -0.250962 -0.586828 0.489558 1.488457 0.415114 -0.576879 1.126373 0.288855 0.135219 -0.037825 0.283225 0.331569 1.443123 -2.137345 0.141659 -0.333560 0.656993 -0.936134 -2.211028 0.033493 -1.343130 -0.610939 1.169707 -2.203236 -0.301680 -1.362994 0.364820 -1.781416 0.099700 0.131488 2.247563 1.235608 -0.676621 1.064993 -0.463976 1.095433 -0.057231 -0.566632 0.723716 1.558500 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.342430 0.943205 0.331950 -1.139158 3.481664 -0.882517 0.209935 0.985460 -0.231234 2.299336 -0.807841 -1.169717 -0.610358 -2.995858 0.416734 -1.355242 -0.229767 1.605907 0.091884 1.419222 0.990831 -1.205715 0.198346 -0.030148 -0.740037 -2.007145 -0.769716 1.056618 2.110660 -1.946466 0.266793 0.276902 3.077615 -0.487920 2.704142 2.003812 0.746866 1.542913 0.594197 -1.323104 -0.418411 1.062904 -1.407080 -1.591160 0.150878 -0.168468 -2.034529 -1.112620 1.033708 -0.381359 -0.190846 2.147197 -0.687583 0.066280 -1.569034 1.594495 0.605247 0.526195 2.383577 0.356648 -0.214331 0.285912 -2.776670 1.773951 -1.079800 0.112373 -1.309981 -1.856359 0.377998 0.103148 -0.243327 -1.648366 -0.629441 2.253595 1.538203 -1.835929 0.410803 -0.996565 -1.711343 -2.248503 -2.362476 0.913526 -0.781409 1.960703 0.280228 0.818009 0.469219 1.207371 -0.718758 -3.107406 0.609224 2.285344 -1.162389 -0.811900 -0.437539 1.800171 0.733029 0.214594 -1.039456 -1.086411 0.596920 -0.970866 1.246766 -0.650320 1.424349 -1.901399 -0.385633 -0.269640 0.732364 1.370506 1.923546 0.411931 1.489644 2.263870 -2.156012 -0.595029 -2.228983 0.848597 -1.135577 0.599714 -0.571354 1.463266 0.494586 1.078903 2.088362 -3.645423 0.623714 -0.009070 -0.073861 -2.082212 0.032450 -0.889263 -0.691350 -0.895892 1.305537 -0.296550 -0.390778 -0.745782 0.488200 0.803208 -0.912613 0.062902 0.553054 2.091161 -2.157879 0.726054 -0.462870 -1.030626 -0.275801 1.088129 2.053071 2.168048 2.812117 2.175729 -0.461072 0.625144 -2.783711 0.115224 2.185240 -0.745998 -1.662518 2.597504 -1.670758 -0.797796 0.354432 2.390800 1.766307 0.229434 -1.546535 -1.338573 1.035965 0.803944 2.364946 -0.278138 -0.141943 -0.784707 1.532536 0.263081 -1.684248 3.259971 0.560555 -1.908130 0.955981 1.011120 -2.100973 -1.216712 1.490726 -2.014918 0.152256 -1.242435 0.577574 1.435979 -1.022940 -0.419155 0.245031 -1.795130 2.028144 -0.687653 -0.909894 1.273222 -1.538277 -2.023004 2.930179 0.080425 -0.406826 -1.804993 -2.211090 -0.525461 -1.696073 0.797934 0.023766 -0.596586 -0.820695 -1.893822 -0.246023 2.341114 0.570583 1.649282 -2.548000 -0.220545 1.090489 1.004960 1.284095 -0.816383 -0.234500 0.349903 -0.230953 -0.035082 -0.354346 1.379946 2.973997 -1.582831 0.860928 -0.077461 -1.281449 0.986079 0.953029 -2.973934 2.880507 0.457507 1.846805 0.050194 0.582313 -0.949048 0.225080 0.740982 -0.325644 -0.037359 0.217042 -0.456040 -0.813438 0.236010 -1.720209 -1.912753 -0.555313 0.966340 -0.268820 0.878671 -0.455956 -1.338373 -0.435998 -0.738458 0.749224 1.508484 0.242563 -0.404706 1.754001 0.552460 0.527338 -0.233051 0.105005 0.644988 1.427226 -2.603526 0.191576 -0.431724 1.323530 -1.127065 -2.799221 0.404893 -1.695174 -0.550432 0.891664 -2.471916 -0.376191 -1.706207 0.005909 -2.166520 -0.070139 0.792232 2.950102 1.205011 -1.324056 0.926754 -0.883378 1.116021 -0.190371 -0.346959 0.725613 1.430572 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -4.442324 3.448737 0.915510 -3.485173 10.290076 -3.008624 1.305917 1.934736 -1.650032 7.931612 -2.634205 -4.424212 -2.818558 -10.961696 0.929048 -5.240040 -1.251997 4.833258 0.831646 5.494106 3.525836 -5.527968 0.840473 -0.394936 -2.405023 -7.566564 -1.768730 2.919116 8.297541 -6.675673 1.639410 0.165905 9.900295 -1.008092 8.599978 6.381271 1.486538 5.769859 2.109199 -4.931794 -2.976426 4.075651 -4.764678 -5.397517 0.355079 -0.759205 -6.119202 -3.763659 3.499313 -0.817706 -1.225615 7.426330 -2.466855 0.159162 -5.974369 4.948115 3.041656 2.488304 8.584503 0.634056 1.192854 0.075445 -9.700905 5.515306 -3.467062 -0.783692 -3.187586 -4.457386 2.382271 -0.966963 -2.586601 -4.100121 -1.523145 8.150134 6.000562 -6.585088 0.481070 -3.682469 -10.876637 -7.983838 -7.865987 2.327482 -1.709419 6.828887 1.112811 3.031667 3.023941 4.878307 -2.257674 -10.821344 2.548161 7.860695 -3.246651 -3.742910 -1.193005 7.992473 1.768039 1.328845 -4.484329 -2.621179 1.733520 -2.798386 4.482341 -4.674126 3.012757 -8.172888 -0.327262 -1.733079 1.500350 3.508641 7.869548 0.494593 4.480513 8.161912 -8.808695 -1.422972 -7.911533 1.792739 -2.527751 2.345618 -1.550230 5.046451 -0.248725 2.998311 7.306717 -13.064708 1.838524 -0.165057 -0.036900 -8.194940 -0.388470 -3.501856 -1.671622 -2.955229 4.194786 -1.221149 -1.207089 -2.780512 1.391484 3.138804 -3.425317 0.186279 3.010574 9.348620 -6.962757 2.620197 -1.777551 -3.524538 -1.290027 3.268162 6.456349 7.049895 9.321474 7.362905 -1.297782 3.139331 -8.824669 -0.130401 7.309775 -1.687590 -5.795225 8.531783 -5.535167 -2.657514 0.439776 7.894038 6.948963 0.481670 -6.319784 -5.141901 5.584660 2.443574 7.635046 -1.627174 -0.577807 -1.290531 7.205520 1.968676 -6.372084 10.239826 2.407757 -5.483779 3.520339 2.576320 -7.934992 -3.828402 5.233548 -5.795477 1.934366 -4.299076 1.662262 3.994550 -2.744268 -1.185577 -0.351016 -6.041032 7.136976 -2.073339 -1.738452 4.770971 -4.807823 -8.115965 8.340637 -0.792483 -2.023793 -6.895640 -8.086343 -4.088163 -5.134990 3.187572 -0.609153 -2.478802 -3.546465 -6.569560 -0.606321 7.476522 2.526396 5.584024 -8.632217 -1.694889 3.061218 4.809078 5.170868 -1.478368 -0.785140 1.552440 0.039101 0.529349 0.338147 5.653119 10.717463 -5.187415 3.141061 -2.776943 -4.346636 3.767959 3.635460 -10.287501 9.008997 0.908569 6.119700 -0.721022 1.996213 -2.680752 1.108009 3.629975 -1.588930 1.172710 -0.238505 -0.709680 -2.877165 0.176756 -6.238789 -6.557272 -2.202113 2.163657 -0.781993 3.057694 -1.103428 -4.168863 -1.306158 -2.610287 2.057796 5.186253 2.018660 -0.304844 5.544896 1.084508 3.533087 1.326229 0.333693 1.636878 4.090734 -8.572421 -0.244642 -2.556774 3.716177 -2.369501 -10.142549 0.923865 -5.658155 -2.435302 4.290191 -8.785742 0.250965 -5.873370 -0.440709 -8.000648 0.156098 1.729270 9.425122 4.128739 -3.854837 2.995419 -3.099140 4.079579 -0.677737 -1.224683 3.062799 5.221681 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -2.169099 1.414023 0.490783 -1.574885 4.675272 -0.840495 0.340004 2.247248 -1.211215 3.453236 -1.563710 -0.621089 -1.121013 -3.682883 0.346614 -1.526475 -0.276389 1.985241 -0.328958 1.787370 1.734284 -1.438102 0.387796 -0.459565 -1.225929 -2.545216 -0.623229 1.088833 2.627129 -1.637093 0.286145 0.288575 3.891534 -0.523451 3.306817 2.594703 1.284413 2.799614 0.773222 -1.123406 -0.642975 1.801195 -1.875905 -2.730782 0.693844 -1.084071 -2.460991 -1.451725 1.544661 -1.420902 0.207362 2.840730 -0.679522 -0.084945 -1.940620 2.259813 1.235117 0.392171 3.688749 0.668136 -1.099242 -0.600587 -3.750574 2.696077 -1.562557 0.786678 -0.986598 -2.690311 0.247845 0.236975 0.007361 -2.123883 -1.135586 2.907750 1.531714 -2.539756 0.706333 -1.380576 -2.589324 -2.737218 -2.886460 0.862176 -0.591652 2.627701 0.142970 0.905618 -0.061089 1.658528 -0.664065 -4.442378 0.429874 3.317753 -1.728926 -0.383659 -1.751187 2.126198 0.464751 0.312610 -1.771999 -1.089681 0.930934 -0.403664 1.634011 -2.098646 0.927596 -2.873557 0.351508 -0.142576 0.720579 1.512398 1.923824 0.699057 1.901375 3.201858 -2.391133 0.193979 -3.362587 1.083480 -0.940082 0.953657 -0.877273 1.875898 0.686101 0.796118 3.115212 -4.735436 1.456702 0.009466 -0.563488 -3.417368 0.444892 -1.233575 -1.109990 -1.215512 2.073822 -0.320855 -0.685866 -1.148356 0.801557 0.663131 -1.857480 -1.078610 0.729996 3.113149 -3.122471 0.794938 -0.925290 -1.407691 -0.420203 1.538718 2.413193 2.623763 3.955971 2.889709 -0.354537 1.244577 -3.674547 0.264015 3.324263 0.803329 -2.963495 3.206000 -2.299591 -0.658914 0.787607 2.498597 2.341388 1.191849 -2.342204 -2.115079 1.595025 0.744767 3.499199 0.493564 0.520959 -1.384574 2.065461 -0.250869 -2.065858 4.172060 1.573121 -3.012742 1.256252 1.339541 -2.117763 -1.440884 1.910765 -2.421771 0.013495 -1.397123 0.434970 1.976385 -1.853056 -1.226616 0.282424 -2.763471 3.393037 -0.783473 -0.292519 1.485632 -2.921115 -2.451708 3.386967 0.291310 -0.968891 -2.395465 -2.690882 -2.009734 -2.845616 1.191577 0.538243 -0.897119 -1.797152 -2.910463 -0.430589 2.767504 0.517971 1.768107 -3.470458 -0.905817 1.631240 0.877824 2.267223 -1.733388 -0.582065 -0.050098 -0.257169 1.021512 -0.493689 2.071873 4.436844 -2.189322 1.824432 0.319420 -1.174261 0.987125 1.834149 -3.887024 3.888496 0.336898 2.440865 -0.103392 1.136735 -1.419772 0.468073 0.764280 -0.064068 0.191483 0.766962 -0.907255 -1.044962 0.115069 -2.909063 -1.958599 -0.275485 1.173937 -0.184278 1.020475 -0.290269 -1.711856 -1.027564 -1.806446 0.565037 2.395092 -0.190851 -1.198792 1.908093 0.281696 0.004575 0.038850 0.456369 1.021300 2.157652 -3.586249 0.332348 -0.517794 0.787224 -2.290188 -3.477177 0.076936 -2.106761 -1.555249 1.634688 -3.459773 -0.353283 -2.167892 0.490009 -3.450423 -0.439230 0.488927 4.133298 1.512465 -1.280096 1.785124 -0.866570 2.053337 -0.037136 -0.265432 0.800760 2.324106 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -7.038206 7.445397 3.032973 -5.876141 16.755168 -2.313170 2.194580 7.416585 -8.780843 14.156019 -4.025809 -0.234240 -2.372529 -14.181034 0.959202 -7.453019 -2.683378 5.808880 1.555851 9.829361 4.793534 -8.062011 0.835928 0.035905 -5.822507 -11.446987 -1.477067 4.906650 13.620111 -9.089445 3.711908 -0.140826 13.685706 -3.314006 12.947043 10.114654 3.216055 6.981884 4.597284 -9.559324 -4.484886 5.086018 -7.646731 -6.588097 -0.560069 -1.714067 -9.969191 -4.178401 4.841805 -2.153172 -5.115799 10.983212 -3.888314 0.291784 -7.695782 10.664878 3.433707 -0.686900 13.706626 0.656425 -1.627244 -3.940804 -14.808333 11.409594 -3.995128 -1.239574 -6.042904 -7.199778 5.223247 -0.628104 -4.273725 -6.342470 -0.717667 14.409316 7.290686 -11.152620 0.817206 -6.997119 -16.356477 -12.098439 -8.810191 4.309703 -0.211719 9.643236 2.637622 4.956292 2.374961 8.947456 -5.026553 -18.829298 4.010838 12.940314 -6.448945 -6.247876 -5.500046 12.177374 3.367132 1.839204 -5.972457 -3.710388 3.600225 -3.277637 6.291771 -13.019316 7.143589 -12.864451 -2.945734 -2.987377 3.572686 7.422298 7.286888 3.328401 9.531859 14.265398 -11.333259 -1.711117 -11.279906 3.334349 -4.121169 3.330527 -3.873235 7.866018 1.316222 5.648244 13.326658 -19.378400 2.925143 -0.612019 -0.089963 -15.324570 -0.582158 -5.384775 -2.372819 -4.557529 5.748869 -1.856648 -1.399077 -5.167263 2.651784 4.510885 -5.704900 -3.864447 6.436227 15.383016 -13.593989 4.001153 -2.158725 -2.904176 -1.901491 6.497082 11.563965 10.920004 15.314304 10.405823 0.327887 8.545622 -13.394559 -0.854520 10.623816 3.002743 -10.196944 14.749340 -10.607382 -5.659959 0.553691 11.205614 10.006335 2.542771 -13.395152 -11.817387 10.797362 4.030362 12.594379 -1.869286 -0.950265 -1.550055 11.446872 0.366729 -10.903904 13.296570 4.384560 -9.452851 6.442033 3.583963 -8.855346 -4.876545 9.748470 -11.622858 0.997190 -3.742421 -0.437395 6.887718 -4.116029 -2.038963 -0.175699 -9.420047 13.067502 -3.307411 -1.512622 5.872843 -7.388282 -12.267270 10.343142 0.571894 -3.501740 -10.553933 -10.176352 -9.112402 -8.551272 3.813028 1.015840 -3.769784 -5.968609 -11.482694 -2.313980 8.127233 3.556806 8.613351 -16.274304 -4.073313 5.995167 6.934040 8.307601 -3.183685 -0.684611 0.522743 -0.737479 1.482688 -2.078662 11.861796 17.155016 -6.845116 7.455731 -4.268413 -6.310305 5.631519 4.912676 -17.474553 15.199510 3.152478 10.045454 0.515356 2.596032 -5.234536 2.143698 4.070684 -2.790704 2.224718 0.118773 -1.465645 -4.502548 -1.058253 -10.094427 -8.591518 -3.629220 3.357524 -3.381327 4.612226 -0.741000 -5.852989 -4.975568 -8.339985 2.591287 7.506846 -0.508922 -1.120055 9.742332 1.132650 4.411895 2.669147 0.232194 4.722162 5.262257 -13.892982 -0.032103 -3.596401 5.380505 -6.934773 -15.050978 1.379660 -8.108958 -5.758627 4.528773 -13.106281 0.388690 -8.652990 -1.281067 -14.738966 -1.972099 4.359311 17.071442 4.138334 -7.279183 4.631619 -5.633157 6.882812 -0.613393 0.932649 2.747065 6.849363 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -2.173181 1.554105 0.850624 -1.724760 4.449820 -0.969586 0.535833 1.686805 -0.966780 3.190142 -1.642304 -0.579697 -0.964012 -3.560361 0.367468 -1.779195 -0.338948 1.930209 -0.196219 1.841562 1.675101 -1.457161 0.352061 -0.486888 -1.196485 -2.730725 -0.634485 1.178397 2.416434 -1.616934 0.630197 0.328235 3.813449 -0.566707 3.495128 2.790083 1.166050 2.773671 0.675675 -1.044852 -0.518787 1.686927 -1.863576 -2.824416 0.527791 -0.780337 -2.602337 -1.634271 1.503397 -1.579486 0.091649 2.884943 -0.703432 -0.124824 -2.095982 2.186779 1.246627 0.301562 3.563033 0.635845 -1.072690 -0.220305 -3.422180 2.617863 -1.613348 0.619358 -1.044137 -2.704999 0.401993 0.374731 -0.289555 -1.808043 -1.198055 2.628568 1.669589 -2.645374 0.606793 -1.377990 -2.864146 -2.482358 -2.559518 1.014864 -0.426637 2.654475 0.170054 1.009670 0.221249 1.520294 -0.699944 -4.145398 0.419707 3.473429 -1.605496 -0.505680 -1.498585 2.346337 0.763778 0.183257 -1.617905 -1.094540 0.973356 -0.599090 1.670176 -1.655199 0.639586 -2.785225 0.175712 -0.033750 0.599101 1.673056 1.488388 0.871930 1.841364 2.973137 -2.418275 0.393600 -3.337898 1.177006 -1.094083 0.862819 -0.743273 1.655391 0.602965 1.017116 2.890113 -4.378195 1.522774 0.055326 -0.460618 -3.203185 0.399516 -1.142251 -1.041632 -1.263707 2.000465 -0.240670 -0.621954 -1.096373 0.702906 0.702080 -1.385676 -1.057399 0.630503 2.775460 -2.670330 0.898345 -0.851305 -1.333869 -0.471576 1.556988 2.427415 2.638222 3.940812 2.980109 -0.296362 1.208226 -3.619182 0.138663 3.282641 0.445368 -2.680105 3.207859 -2.249915 -0.898293 0.711033 2.554219 2.267297 1.155856 -2.379257 -2.070802 1.358279 0.644465 3.491178 0.544568 0.275578 -1.516736 2.218770 -0.151751 -1.752538 4.080349 1.496632 -3.058421 1.288414 1.491380 -2.468363 -1.693491 1.938541 -2.487356 -0.102540 -1.365541 0.583254 1.901812 -1.766836 -1.207147 0.224723 -2.771749 3.130735 -0.805425 -0.501319 1.355356 -2.632820 -2.676771 3.438069 0.264491 -0.934317 -2.267863 -2.612165 -1.620667 -2.803845 1.125405 0.594757 -0.929725 -1.739120 -2.793516 -0.331619 2.535406 0.397782 1.883741 -3.160537 -0.808287 1.698784 1.110572 1.798205 -1.596860 -0.518202 -0.005819 -0.039939 0.805633 -0.434535 2.019877 4.186961 -2.147391 1.677858 0.152941 -1.642628 1.125359 1.906518 -3.759412 3.929918 0.316897 2.228029 0.052308 1.040565 -1.444803 0.286446 0.792936 -0.392605 0.024905 0.711242 -0.972845 -1.074281 0.186424 -2.556415 -1.897060 -0.271497 1.369336 -0.117878 1.025954 -0.064712 -1.737041 -0.931410 -1.699076 0.598369 2.340853 -0.148255 -1.222420 2.079693 0.532391 0.013202 -0.341072 0.360453 1.124649 2.123503 -3.565009 0.489368 -0.550248 0.766157 -2.380717 -3.350253 0.488584 -2.373778 -1.465846 1.313584 -3.373245 -0.368730 -2.228708 0.488833 -3.116203 -0.591361 0.725393 3.944854 1.452232 -1.215245 1.689429 -1.066758 2.016480 -0.010909 -0.226755 0.823380 2.410013 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.936619 0.393166 0.154429 -0.615928 2.045430 -0.376404 -0.168331 1.327459 -0.117349 1.311789 -0.780017 -0.242906 -0.388776 -1.163602 0.136678 -0.209550 -0.049441 0.939726 -0.431177 0.343011 0.761645 -0.052378 0.161094 -0.291890 -0.405653 -0.702415 -0.402941 0.367268 0.661665 -0.475686 -0.303831 0.165876 1.616109 -0.238603 1.356301 1.012877 0.824599 1.208377 0.186528 0.057470 0.010796 0.761597 -0.747668 -1.185178 0.443825 -0.636825 -0.921985 -0.475561 0.664126 -0.809145 0.777058 1.025564 -0.160468 -0.021890 -0.472776 0.924698 0.275991 0.173943 1.449853 0.384057 -0.915954 -0.086602 -1.383200 1.333661 -0.742646 0.900869 -0.431441 -1.404504 -0.397100 0.231875 0.587471 -1.214529 -0.727160 0.971761 0.280980 -0.863728 0.499895 -0.408452 0.175111 -0.968170 -1.236916 0.368469 -0.437237 0.871644 -0.121080 0.247208 -0.512270 0.488465 -0.149795 -1.601245 0.006335 1.276637 -0.884040 0.406405 -0.940210 0.152355 0.011762 0.160796 -0.534496 -0.545461 0.408293 0.044999 0.580436 -0.434578 0.607612 -0.812738 0.410672 0.230141 0.314188 0.502285 0.442239 0.389986 0.751502 1.205437 -0.398710 0.091436 -1.389835 0.517414 -0.529948 0.374877 -0.282264 0.661565 0.507329 0.270244 1.142977 -1.673751 0.727657 -0.026545 -0.504073 -1.100963 0.361124 -0.511218 -0.615943 -0.475360 0.888008 -0.027444 -0.391283 -0.473984 0.411090 0.023762 -0.940701 -0.654958 -0.064348 0.598985 -1.124777 0.198485 -0.409913 -0.603709 -0.134107 0.726799 0.894764 0.970413 1.544992 1.112898 -0.182407 -0.023766 -1.512964 0.196628 1.288841 0.194758 -1.202086 1.174650 -0.869903 -0.103556 0.562141 0.916371 0.645686 0.763088 -0.451706 -0.552508 0.139458 0.251737 1.457948 0.460367 0.398369 -0.710488 0.354893 -0.436404 -0.618248 1.923018 0.681870 -1.406475 0.244390 0.585071 -0.304272 -0.607484 0.596984 -0.928602 -0.210036 -0.582541 0.239307 0.833863 -0.931425 -0.685967 0.480492 -1.168872 1.434009 -0.253465 -0.288929 0.529078 -1.456606 -0.541320 1.578535 0.294887 -0.414382 -0.735197 -0.979711 -0.472742 -1.209243 0.447407 0.420371 -0.223856 -0.748672 -1.091688 -0.082671 1.164617 0.066986 0.595569 -1.328989 -0.329306 0.665053 -0.278401 0.816663 -1.075914 -0.312166 -0.353288 -0.169374 0.589998 -0.389932 0.497183 1.757268 -0.896121 0.721541 0.849786 -0.375743 0.005872 0.844596 -1.341301 1.466822 0.057062 0.630804 0.010676 0.568804 -0.684500 0.098037 0.076020 0.309097 -0.082961 0.537963 -0.479824 -0.362264 -0.017187 -1.226428 -0.606835 0.054481 0.506180 0.001174 0.320675 -0.296712 -0.786884 -0.382423 -0.640114 0.146922 1.024752 -0.254679 -0.817441 0.651450 0.041090 -0.544215 -0.185160 0.263053 0.335940 1.090964 -1.377466 0.202912 0.074971 0.221522 -1.262298 -1.026603 -0.240808 -0.722831 -0.546347 0.497308 -1.302836 -0.531378 -0.788076 0.328612 -1.092255 -0.274130 0.200503 1.593224 0.745322 -0.483446 0.849046 -0.216716 0.922586 0.214183 -0.248639 0.198605 0.957344 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.434574 2.114508 0.942818 -1.617866 6.054530 -0.870045 -0.149258 3.966377 -3.538053 4.616420 -1.265853 0.828271 -0.723814 -4.146522 0.308641 -1.026122 -0.449983 2.123626 0.206089 2.800674 1.680697 -1.916571 0.363229 0.020829 -1.697229 -3.121425 -0.448070 1.465010 4.204330 -2.639615 0.388085 0.062893 4.647472 -1.192659 4.116858 3.156018 1.591343 2.300372 1.819025 -3.595746 -1.378794 1.712606 -2.563114 -2.151197 0.286509 -0.962120 -3.012493 -0.685433 1.735559 -1.112586 -1.412861 3.389360 -1.186445 0.296194 -1.964649 3.784545 0.873218 -0.861895 4.498658 0.255368 -1.428361 -2.277931 -4.226545 4.144785 -1.400609 0.059378 -2.318096 -2.758496 1.138721 -0.067768 -0.747043 -2.933036 -0.441627 4.653176 1.614992 -3.487334 0.718499 -1.730342 -3.205050 -4.171554 -3.118274 1.250858 -0.741981 2.836111 0.440533 1.517430 0.094408 2.570366 -1.481928 -6.049449 1.374100 4.031307 -2.557485 -0.861284 -2.384432 3.020922 0.666710 0.755814 -1.725421 -1.458357 1.218032 -0.804900 1.973472 -4.469162 3.576308 -3.483606 -0.779695 -1.242406 1.725311 2.879770 1.712022 1.443474 3.159571 4.896621 -2.793449 -1.117630 -3.758872 1.229392 -1.776650 1.075271 -1.200617 2.426128 1.080473 1.788350 4.335723 -6.379421 1.059161 -0.216029 -0.233024 -4.929128 0.205967 -1.902859 -0.858470 -1.517665 2.186072 -0.866981 -0.651790 -1.927511 1.214741 1.201217 -2.845277 -1.915504 1.183858 4.498236 -5.139158 1.210126 -0.859048 -1.053727 -0.289094 2.209381 3.781490 3.696932 4.778571 3.346483 -0.168574 3.058709 -4.610019 -0.058927 3.434579 1.332673 -3.272584 4.869216 -3.489246 -1.746974 0.705614 3.477155 3.075230 1.172875 -3.534325 -3.619355 3.405741 1.631465 4.228905 -0.404793 0.247833 -0.872051 3.006089 -0.298736 -2.953637 4.751257 0.937011 -3.535181 2.477410 1.125001 -1.530272 -1.082763 2.671826 -4.142388 -0.193452 -1.302373 -0.162218 2.628020 -1.933158 -0.967563 0.580256 -3.152701 4.593297 -0.930184 -0.929735 2.003043 -2.752003 -2.854112 3.543449 0.751164 -1.135672 -3.295783 -3.415768 -2.947545 -2.763787 1.139494 0.463233 -1.083143 -1.975184 -3.812598 -1.204299 2.639102 1.419195 2.578842 -6.976402 -0.685476 2.057657 1.386541 2.210953 -1.784241 -0.345162 -0.248615 -0.501081 0.805761 -1.275860 3.650190 5.291425 -2.437985 2.504268 -0.566809 -1.512815 1.513200 1.463003 -5.525993 4.633351 1.099457 3.685828 0.423090 1.096870 -2.097215 0.676909 0.802216 -0.232066 0.318995 0.324980 -0.710169 -1.536814 -0.234571 -3.126356 -2.961898 -1.292040 0.990031 -0.831487 1.391689 -0.960321 -1.906370 -1.603857 -2.374401 0.855927 2.554865 -0.923645 -0.904307 3.075565 0.133350 0.720542 0.562906 0.308590 1.533094 1.868674 -4.515269 -0.045346 -0.807315 1.829377 -2.737631 -4.386446 0.189561 -1.978549 -1.716535 1.575148 -4.678448 -0.400630 -2.588870 -0.332566 -4.578299 -0.449037 1.286946 5.564353 0.911743 -2.406321 1.926883 -1.603965 2.209212 0.082052 0.559338 0.272485 2.202882 +PE-benchmarks/the-knights-tour.cpp__main = -0.850487 0.115536 -0.215192 -0.533009 1.756796 -0.650823 -0.062844 0.739725 0.148513 1.122175 -0.505495 -0.630007 -0.526254 -1.466292 0.251525 -0.192025 0.167303 0.998648 -0.195247 0.467086 0.752402 -0.388544 0.180867 -0.169880 -0.260561 -0.774137 -0.312071 0.462891 0.831194 -0.816415 -0.340469 0.290933 1.668735 -0.159714 1.368012 1.037902 0.609567 1.135873 0.291515 -0.508184 -0.127231 0.805731 -0.691718 -1.192008 0.405834 -0.314758 -0.871954 -0.625952 0.736056 -0.342708 0.537542 1.112106 -0.286450 0.004933 -0.843741 0.640427 0.424190 0.424115 1.369825 0.323025 -0.309457 0.167309 -1.242302 1.009188 -0.806909 0.339319 -0.469457 -1.162649 -0.152062 0.126984 0.261296 -1.022294 -0.639057 0.887332 0.555634 -0.871367 0.433410 -0.315447 0.131040 -1.145614 -1.514651 0.291424 -0.652832 1.049548 -0.092423 0.314283 -0.184125 0.450249 -0.102346 -1.468257 0.198988 0.942616 -0.722408 0.086998 -0.213865 0.609798 0.198029 0.026115 -0.617387 -0.593942 0.274914 -0.416549 0.709582 0.117269 0.712386 -0.613073 0.173384 -0.076837 0.446952 0.582918 1.035140 0.167904 0.618342 0.996196 -0.586627 -0.232805 -1.316203 0.490388 -0.482141 0.346655 -0.203578 0.788721 0.556592 0.151170 1.043727 -1.723512 0.525998 0.039494 -0.086645 -0.867974 0.285033 -0.399821 -0.481515 -0.557815 1.001064 -0.186777 -0.362916 -0.364424 0.448072 0.302139 -0.793584 0.134100 -0.090044 0.709748 -0.989826 0.316950 -0.448304 -0.833100 0.008731 0.432657 0.735470 1.110834 1.430488 1.254356 -0.474190 0.095539 -1.490531 0.240138 1.251622 -0.322956 -1.016356 1.094867 -0.775504 -0.161519 0.481392 1.112132 0.925993 0.257808 -0.275260 -0.284766 0.292047 0.384248 1.305323 -0.046017 0.297335 -0.617155 0.335750 0.132936 -0.563894 1.917046 0.270674 -1.268081 0.486117 0.623470 -0.738064 -0.565584 0.492582 -0.787311 0.021754 -0.876273 0.546821 0.885393 -0.911241 -0.417242 0.262239 -1.037123 1.030494 -0.340045 -0.453797 0.758747 -1.269061 -0.388223 1.672491 0.186301 -0.237565 -0.910826 -1.221213 -0.246902 -1.137973 0.519676 -0.036471 -0.185497 -0.466600 -1.011576 -0.203971 1.399854 0.306213 0.632914 -1.271929 0.018227 0.619231 0.238724 0.628349 -0.617707 -0.287118 0.224089 -0.144164 0.250287 -0.226408 0.332576 1.470700 -1.067383 0.280766 0.497726 -0.317571 0.418563 0.674627 -1.401262 1.461056 0.114532 0.789530 -0.044270 0.447073 -0.604074 0.137608 0.240168 0.220083 -0.144222 0.279569 -0.402186 -0.419243 0.274279 -0.887210 -0.906543 -0.151061 0.577544 0.136142 0.448246 -0.387509 -0.676218 -0.185695 -0.357908 0.377050 0.983307 0.080428 -0.508428 0.732866 0.238997 -0.119401 -0.193163 0.215990 0.236812 1.049125 -1.389171 0.181206 -0.095134 0.530796 -0.640844 -1.242493 0.063998 -0.654642 -0.200882 0.775360 -1.314712 -0.322590 -0.831346 0.316806 -0.989131 0.156600 0.040396 1.397745 0.739842 -0.439786 0.775226 -0.247929 0.630364 -0.047867 -0.346123 0.285152 0.944867 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.316503 0.913942 0.236868 -1.123072 3.348250 -0.917253 0.201406 0.854394 -0.283817 2.253838 -0.759460 -1.132806 -0.658945 -3.056934 0.412083 -1.298294 -0.170559 1.586380 0.158424 1.468576 0.987925 -1.346205 0.239841 -0.044135 -0.701969 -2.036611 -0.667464 1.038715 2.142887 -1.935463 0.293573 0.265513 3.010109 -0.448254 2.572647 1.943383 0.632651 1.560187 0.676167 -1.512729 -0.463503 1.072714 -1.349087 -1.600843 0.182518 -0.130033 -1.934763 -1.124062 1.047660 -0.337135 -0.335386 2.119989 -0.691236 0.009373 -1.692681 1.522870 0.734935 0.548747 2.350232 0.317532 -0.027064 0.186561 -2.683117 1.601201 -1.120070 -0.082663 -1.222581 -1.707265 0.470661 0.100853 -0.385082 -1.517841 -0.583685 2.172558 1.558615 -1.829128 0.364920 -0.961628 -1.852767 -2.239371 -2.335290 0.832775 -0.800236 1.974886 0.270071 0.829256 0.568546 1.184774 -0.647138 -3.022084 0.612933 2.154682 -1.047860 -0.869679 -0.236167 1.985073 0.775742 0.119198 -1.063014 -1.007199 0.540452 -1.019410 1.261181 -0.668186 1.367354 -1.878058 -0.377732 -0.367423 0.720842 1.373532 2.023547 0.367012 1.371517 2.183893 -2.206803 -0.658349 -2.233009 0.763821 -1.028174 0.585734 -0.549336 1.446065 0.457358 0.993289 2.030010 -3.638879 0.642757 0.024547 0.046551 -2.056191 0.051071 -0.795572 -0.609070 -0.875844 1.312928 -0.360181 -0.367466 -0.687487 0.488623 0.842776 -0.928224 0.187364 0.543773 2.251737 -2.151948 0.762646 -0.478468 -1.071718 -0.201344 0.938846 1.941650 2.107803 2.727140 2.158682 -0.510893 0.785650 -2.704260 0.141970 2.178532 -0.713068 -1.605378 2.517389 -1.574945 -0.787293 0.327980 2.334111 1.828614 0.139935 -1.539064 -1.337718 1.126264 0.766536 2.268039 -0.394091 -0.119905 -0.799254 1.594602 0.448792 -1.566244 3.174761 0.461245 -1.833648 1.076549 1.027209 -2.215697 -1.141593 1.400711 -1.885648 0.241411 -1.260979 0.611333 1.417209 -1.022107 -0.431806 0.065570 -1.736777 1.945463 -0.682812 -0.876270 1.302633 -1.454531 -1.921111 2.818871 0.061590 -0.389303 -1.831538 -2.232519 -0.638446 -1.688744 0.802881 -0.077754 -0.650649 -0.762398 -1.858142 -0.311808 2.316471 0.600928 1.554691 -2.620401 -0.138056 1.070421 1.195788 1.215652 -0.666073 -0.226334 0.521734 -0.205681 -0.066360 -0.277517 1.388489 2.866788 -1.604705 0.784248 -0.215746 -1.150536 1.137683 0.938717 -2.930313 2.810937 0.435724 1.958664 0.026850 0.557584 -0.890994 0.269680 0.772897 -0.389440 -0.018196 0.142013 -0.477662 -0.834742 0.331619 -1.606549 -1.951061 -0.555096 0.969587 -0.162201 0.880725 -0.434846 -1.238827 -0.391230 -0.653957 0.754934 1.472523 0.317758 -0.358983 1.680197 0.614716 0.637463 -0.242650 0.113237 0.631100 1.364573 -2.556204 0.235107 -0.501338 1.305334 -0.964685 -2.794013 0.518011 -1.602117 -0.510738 1.018169 -2.507218 -0.283477 -1.659409 0.056026 -2.173105 0.087793 0.663881 2.832255 1.120103 -1.240811 0.931550 -0.869473 1.028826 -0.258537 -0.331332 0.700660 1.428356 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.602270 1.153004 -0.213169 -0.861848 2.363354 -0.439788 0.938245 0.797165 -1.454411 2.171987 -0.946017 -1.226276 -0.827180 -2.604066 0.335225 -1.578781 -0.193142 0.858220 0.094757 1.926556 1.296465 -1.735940 0.006441 -0.433533 -0.744787 -1.463002 -0.117813 0.618678 2.531988 -0.899483 0.104762 0.138817 2.712522 -0.144093 2.882744 2.199556 0.089876 1.703833 0.575788 -1.890331 -1.289960 1.644671 -1.695390 -1.785126 -0.322753 -0.567422 -1.661127 -0.970735 0.941598 -0.247457 -0.182551 2.163195 -0.712738 0.420470 -1.741115 1.118605 0.716266 0.750087 2.779820 0.309995 -0.059773 -0.412599 -2.240944 2.143623 -0.622447 -0.192903 -0.601671 -1.374100 1.162257 -0.529359 -1.105163 -0.749441 -0.566074 2.418259 1.627399 -2.081344 0.550727 -1.011520 -3.558972 -1.601418 -1.962863 0.639554 -0.507648 2.302311 0.080853 0.830033 0.242784 1.488910 -0.557302 -3.305951 0.666126 2.603989 -1.090230 -0.996114 -1.015835 2.539120 0.796334 0.808278 -1.610128 -0.224255 0.753997 -0.547069 1.250675 -2.092933 0.483414 -2.303862 -0.112976 -0.329754 0.563708 1.995798 1.684924 0.798168 1.822128 2.462590 -1.715882 -0.032931 -1.673337 0.613773 -1.233896 0.682132 -0.288717 1.553199 0.432244 0.411836 2.307186 -3.183632 0.473981 0.403733 0.226078 -2.632030 0.024276 -1.538489 -0.796170 -1.179282 1.433356 -0.075144 -0.342980 -1.213522 0.409823 0.894314 -0.885587 0.026929 0.943970 1.988907 -1.646213 0.533267 -0.626553 -0.760066 -0.472662 1.381936 1.630551 2.145230 2.630999 2.234141 -0.491747 0.708241 -2.079944 0.016330 2.537269 -0.118396 -2.095075 2.348646 -1.897490 -0.989414 0.124583 1.744064 2.224067 0.932250 -2.106161 -1.730090 0.824131 0.634900 2.640143 0.283073 0.089047 -0.044475 2.483508 -0.379436 -1.996786 2.207364 0.956069 -1.663602 0.626928 0.643381 -2.678312 -0.885531 1.682725 -1.902581 0.696114 -1.510460 0.310502 1.296584 -1.095786 -0.244926 0.116386 -2.178323 2.356340 -0.514118 -0.025009 0.634429 -1.796387 -1.539548 2.414443 0.271935 -0.790851 -2.044278 -1.730905 -2.136486 -1.777223 1.003643 -0.276213 -0.304165 -1.449395 -2.155843 -0.522401 1.464854 0.606982 1.636752 -1.881074 -0.443427 0.905306 1.405379 1.440469 -0.167080 -0.501712 0.178144 0.128707 0.824769 -0.250543 2.041067 2.964597 -1.427909 0.957137 -0.411893 -0.980861 1.055753 1.217735 -3.056977 2.640676 0.224880 1.062662 -0.190453 0.786902 -0.952171 0.046437 0.868108 -0.546912 0.243178 0.258186 -0.135359 -0.733489 0.072601 -1.511158 -1.244225 -0.697255 0.380270 -0.156695 0.892245 0.004883 -1.580674 -0.604997 -1.552446 0.511525 1.886099 0.354008 -0.176116 1.750491 -0.182011 0.895373 0.507137 0.054986 0.426670 1.364781 -2.718137 -0.324019 -0.722954 0.768365 -0.829036 -2.360703 0.033826 -1.324635 -1.071622 1.627446 -1.868372 0.726449 -1.791271 -0.284652 -2.249218 -1.020459 0.596100 2.864117 0.884822 -1.197360 0.814037 -0.953930 1.697494 0.096854 0.015271 0.577781 1.615542 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -5.348149 3.799429 1.299494 -3.972085 11.389271 -1.352716 1.946471 4.464516 -5.782025 8.687314 -3.436683 0.577834 -2.080703 -9.120864 0.810249 -2.950757 -0.727213 3.266153 0.378006 5.523779 3.863002 -5.420908 1.279773 -0.613886 -3.258696 -7.944862 -0.354794 3.170832 8.593603 -4.138080 1.317410 -0.042582 8.718970 -2.028514 7.990412 6.529586 2.713281 5.673590 2.133388 -6.872992 -2.636814 4.179949 -5.122729 -6.092710 0.650764 -1.848402 -7.153062 -3.729442 4.000699 -3.213781 -2.816576 7.758441 -2.423532 -0.279920 -5.692926 6.441482 4.163613 -1.580601 9.663611 0.771102 -1.551064 -3.231550 -7.859095 7.013101 -2.951989 -0.723116 -3.309139 -5.764697 2.325313 0.298761 -3.468560 -3.396378 -1.213645 7.657806 4.946754 -7.581630 1.218224 -3.830475 -8.061957 -8.523011 -6.024647 2.305930 -0.866027 7.319068 0.991245 3.149912 2.339136 4.433457 -2.412641 -11.417139 2.230451 8.184230 -4.205721 -2.974881 -3.195770 8.027894 1.729412 0.811954 -4.797063 -2.571304 2.104514 -1.675765 4.397418 -7.397865 3.519028 -7.704156 -1.140038 -1.853981 3.117402 4.745485 4.002600 1.462171 4.776634 8.403747 -6.949260 0.654648 -7.679053 2.444982 -2.057504 2.575140 -2.560352 4.564097 2.562638 2.801338 8.311779 -11.767692 3.082015 0.114266 -0.142396 -9.177403 0.233760 -3.452398 -2.023509 -2.793055 4.742046 -1.883264 -1.120602 -3.411728 2.757080 2.540134 -4.816268 -1.136299 2.431268 8.774328 -9.009252 2.720390 -1.926324 -2.743454 -0.895655 4.168949 6.605653 7.288141 10.148224 7.681513 -0.733795 6.829145 -8.847146 0.658583 8.659424 2.461146 -6.655669 8.498158 -7.182816 -2.783355 1.465691 6.340732 6.992688 2.125124 -7.424063 -5.564094 7.061818 2.678325 9.186300 -0.046572 1.097334 -3.314959 6.759796 -0.291069 -4.312067 8.951761 3.514293 -8.141780 5.719294 3.240524 -6.394032 -2.291668 5.252278 -7.097382 -0.309162 -3.621801 1.112076 5.306356 -3.984625 -2.283390 -0.360976 -6.788674 8.264638 -2.025777 -0.306226 4.390256 -5.089362 -5.427592 7.132585 0.725662 -2.315876 -6.734796 -6.620797 -6.751440 -6.613633 2.755023 0.337418 -2.881286 -4.199360 -7.992527 -2.266581 5.854066 2.473381 5.145981 -11.426420 -0.647912 4.325145 4.847174 4.314920 -2.431059 -1.053022 0.623986 -0.603099 1.543868 -2.060693 6.671264 9.555499 -5.715564 4.741740 -3.299109 -3.661432 4.156053 3.790165 -10.001793 10.064589 1.990710 7.731377 0.088083 2.720668 -3.850518 1.636009 1.800871 -2.095443 0.603679 1.197303 -2.402241 -3.292150 1.300863 -5.677662 -6.259974 -1.889204 2.810359 -0.349606 2.940679 -0.455009 -3.966861 -2.821864 -5.312250 2.028712 5.639107 -1.331864 -2.144601 5.693165 1.318288 1.927409 -0.233111 0.835530 3.209734 4.656630 -9.375926 0.442305 -2.203655 2.973718 -5.160990 -9.552261 1.810755 -5.061038 -4.094378 4.938369 -9.323803 0.636181 -6.042933 0.045007 -9.427698 -1.340103 1.666643 10.431299 1.986668 -3.410826 4.232148 -2.994673 4.485763 -0.898692 0.982270 1.943760 4.940120 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -2.226299 1.703112 0.613833 -1.714328 4.811549 -1.338118 0.360876 1.785348 -0.853770 3.382827 -1.741222 -1.080395 -1.208943 -4.679626 0.352384 -1.938494 -0.439070 2.413732 -0.040063 2.034087 1.769895 -1.943458 0.358838 -0.386521 -1.174095 -3.059787 -0.728055 1.230582 3.004438 -2.546442 0.460424 0.222944 4.581601 -0.530038 3.681501 2.885647 1.161665 3.052492 1.070289 -1.346832 -0.937668 1.904614 -2.054363 -3.010238 0.547862 -0.717986 -2.566929 -1.526920 1.601801 -1.147569 0.245781 3.131269 -0.918000 -0.072638 -2.554784 2.223890 1.463933 0.844559 3.964027 0.532171 -0.573540 -0.088279 -4.033328 2.840667 -1.773440 0.492408 -1.116260 -2.495730 0.663833 -0.041807 -0.448541 -2.270855 -1.232914 3.115985 2.017479 -2.855694 0.459128 -1.570299 -3.830737 -3.000361 -3.403128 0.988344 -0.803436 2.882706 0.262777 1.139598 0.497360 1.818358 -0.850175 -4.588249 0.703240 3.545731 -1.604114 -0.759739 -1.121282 2.999952 0.642857 0.348450 -1.825224 -1.254954 0.952519 -0.771401 1.849864 -1.997591 0.898424 -3.498199 0.420742 -0.448405 0.532879 1.483196 2.646933 0.581367 1.899590 3.400261 -3.235565 -0.154382 -4.145267 0.965823 -0.930231 1.004412 -0.715403 1.935129 0.056349 1.026940 3.144926 -5.343220 1.437208 -0.015496 -0.395241 -3.607746 0.228562 -1.405777 -1.011448 -1.322536 2.082732 -0.342190 -0.662559 -1.271933 0.630843 0.968591 -1.876334 -0.850015 0.919147 3.674147 -3.312508 0.974815 -0.925993 -1.564614 -0.541494 1.527421 2.634538 2.920854 4.349732 3.216931 -0.372368 1.479340 -4.093888 0.031827 3.526699 0.145530 -2.850381 3.447389 -2.440164 -0.953048 0.609130 3.238224 2.733608 0.799650 -2.672111 -2.263017 2.165658 0.827596 3.539125 -0.017025 0.222573 -1.195817 2.892432 0.593382 -2.342526 5.078718 1.312265 -3.034039 1.643046 1.338638 -2.676368 -1.695276 2.134708 -2.550098 0.388791 -1.617268 0.596512 1.950017 -1.753467 -1.090235 0.022431 -2.922166 3.369292 -0.880725 -0.692650 1.796635 -2.730905 -3.123316 4.010892 0.039234 -1.032385 -2.737673 -3.281378 -1.755076 -2.701579 1.320778 0.391597 -1.157842 -1.806390 -3.002948 -0.242414 3.310051 0.710124 2.174153 -3.695118 -1.123729 1.655174 1.536545 2.158591 -1.687530 -0.538938 0.238593 0.006962 0.831339 -0.063715 2.393935 4.810154 -2.318768 1.845416 -0.040151 -1.667887 1.338160 2.095688 -4.143171 4.104384 0.197957 2.751755 -0.168230 1.045549 -1.480434 0.381201 1.202652 -0.155171 0.325715 0.393752 -0.698979 -1.173474 0.062123 -2.937913 -2.354939 -0.528506 1.212578 -0.059694 1.220290 -0.398542 -1.702343 -0.886003 -1.448747 0.660748 2.494994 0.292052 -1.037675 2.202854 0.361250 0.578502 0.307186 0.361229 0.984759 2.108505 -3.777122 0.212768 -0.797840 1.135023 -2.025969 -4.284958 0.376955 -2.468209 -1.328176 1.648567 -4.002672 -0.281064 -2.415298 0.239901 -3.806845 -0.055752 0.578913 4.136701 1.781178 -1.405233 1.704658 -1.150927 2.122753 -0.090986 -0.404591 1.046504 2.686810 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/union-find.cpp__main = -2.674886 1.524806 -0.478925 -2.006306 5.235462 -1.826764 0.469012 3.070986 -1.197704 3.198446 -2.107235 0.318363 -0.723972 -3.908022 0.653918 -0.445204 0.393311 2.997333 -0.434542 1.989620 2.164876 -0.925300 0.232593 -0.919348 -1.299005 -2.572287 -0.279119 1.280837 1.898164 -1.789193 -0.095036 1.008126 4.851354 -0.627980 4.156726 3.506557 2.178902 3.515313 1.617453 -1.485832 -0.045437 2.010402 -1.851764 -3.515848 0.963483 -0.962979 -2.894833 -1.828923 1.741010 -2.010413 1.853914 3.193761 -0.401981 -0.033016 -2.613198 2.233617 1.976367 -0.453348 4.109435 1.118926 -1.900435 -0.177233 -2.750930 4.005562 -2.212940 0.722102 -0.647426 -3.204190 0.148066 1.059914 1.369705 -3.239278 -2.262757 2.203056 1.094310 -3.018945 1.296852 -1.087168 -0.184396 -3.618198 -3.135685 1.110178 -1.240063 3.038856 -0.191865 0.948071 -1.506005 1.241554 -0.349729 -4.169062 0.148041 3.344068 -2.237273 0.329835 -2.562800 2.345288 1.026146 -0.117148 -1.969235 -2.135291 1.231538 -0.814814 1.893349 -0.822029 1.236793 -1.985657 0.010524 0.065515 0.666474 2.902999 1.214938 1.715204 2.318902 2.751946 -1.180283 0.150792 -4.521785 1.658996 -1.122163 0.776977 -0.533568 1.471434 1.867020 0.865551 2.947317 -4.604972 2.252970 0.367519 -0.417302 -3.100533 0.997379 -0.884790 -1.427685 -1.797739 2.772454 -0.159682 -0.744791 -0.989121 1.281478 0.691053 -2.262515 -2.025954 -0.085069 2.787194 -3.445352 0.918266 -1.191109 -1.696072 -0.295938 1.457414 2.197790 2.715452 4.427358 3.339185 -0.676211 1.727107 -4.303284 0.269519 3.843937 1.681863 -3.199108 3.387079 -2.512233 -1.021114 1.323942 2.928826 2.083836 1.021729 -2.369472 -2.158846 1.541524 0.439723 4.080867 0.202752 0.528832 -2.492199 1.962157 0.191124 -1.620445 5.647302 1.325475 -3.853019 1.242517 2.121109 -1.292090 -1.833667 1.846325 -2.883483 -1.252384 -1.515868 1.239587 2.171467 -2.582490 -1.676039 0.576512 -3.135220 3.060924 -0.845246 -1.618778 1.088270 -3.673656 -1.151979 4.528870 0.628216 -0.938608 -2.050532 -3.021384 -0.768784 -3.826611 1.246302 0.797717 -0.487191 -1.770528 -3.060443 -0.690856 3.285386 0.058469 1.372806 -4.521424 -0.745053 2.249836 0.694149 1.219878 -3.453188 -0.799354 0.156924 0.643183 0.890305 -0.875444 1.995216 4.637279 -2.805816 1.140482 1.599637 -0.986333 1.277761 2.545474 -4.222774 4.480581 0.323505 2.822014 0.452011 1.207569 -2.159370 -0.003759 0.207492 0.856687 -0.730560 0.967733 -1.637089 -1.099132 0.542792 -2.094169 -2.325820 0.061754 1.970367 -0.198198 0.975959 -0.763032 -1.335319 -1.167223 -2.233824 0.714428 2.840450 -0.610640 -1.873304 2.333488 1.032354 -0.827558 0.451216 0.450354 1.529219 3.055840 -4.090084 1.129105 -0.356734 1.050243 -3.131932 -4.096390 1.004625 -2.126819 -1.540323 1.542494 -4.135859 -1.565555 -2.290780 1.326938 -3.716840 -0.305408 0.714359 4.289143 1.438497 -1.113830 2.167830 -1.102693 2.270946 -0.026576 -0.015180 0.411374 3.107079 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.810859 1.684911 0.348231 -1.529971 3.677086 -0.229737 0.415698 1.447941 -1.456380 2.976186 -1.417968 0.376075 -0.488790 -2.974217 0.127669 -1.214476 -0.377114 1.190685 0.028613 1.654787 1.200469 -1.683050 0.545400 -0.336233 -1.203978 -3.219975 -0.130671 1.048513 2.301689 -0.985702 0.855588 -0.100423 2.881270 -0.587509 2.473779 2.127782 0.921992 2.031254 0.878038 -1.181464 -0.556315 1.191501 -1.552483 -2.162738 0.298719 -0.703163 -2.411513 -1.338284 1.228503 -1.726259 -0.537078 2.416237 -0.670240 -0.309100 -1.891987 1.935529 1.493112 -0.612211 3.186648 0.231578 -0.862465 -1.231355 -2.453061 2.575423 -1.275022 -0.196077 -0.638926 -2.087271 0.672222 0.482917 -0.956393 -0.686533 -0.632243 2.278067 1.581420 -2.539384 0.251926 -1.362660 -3.101450 -2.196810 -1.437152 0.863675 -0.132834 2.298624 0.412000 1.064343 0.700183 1.381435 -0.727756 -3.592255 0.501436 2.915430 -1.190631 -0.638969 -1.302131 2.634759 0.784513 0.007750 -1.348638 -0.610695 0.677321 -0.348939 1.374514 -2.211421 0.215778 -2.774631 -0.010123 -0.298174 0.663344 1.542800 0.852877 0.666879 1.468700 2.636664 -2.406307 0.502265 -2.666610 0.899237 -0.437715 0.727089 -0.871042 1.202199 0.629354 1.083965 2.673902 -3.605093 1.416836 0.096819 -0.219586 -3.000819 0.099752 -0.881652 -0.587089 -0.777517 1.407107 -0.560161 -0.300896 -1.030254 0.656268 0.660602 -1.603521 -1.061647 0.792898 2.825197 -2.579852 0.963585 -0.541317 -0.788998 -0.352911 1.353989 2.102154 2.138221 3.381039 2.387566 0.044085 2.329110 -2.777212 0.205244 3.058552 1.499269 -2.254025 2.734407 -2.196195 -0.960427 0.479706 1.830880 2.026096 1.043667 -2.611420 -2.101357 1.715974 0.603001 3.011242 0.575999 0.235192 -1.421532 2.444399 0.101420 -1.103307 3.082234 1.365997 -2.597956 1.693404 1.263015 -2.574652 -0.838244 1.697212 -2.101474 -0.264559 -0.991284 0.301933 1.660429 -1.270985 -1.088403 -0.287532 -2.281423 2.808482 -0.615158 0.017480 1.230783 -1.816818 -2.096125 2.287091 0.240606 -0.789336 -1.908240 -1.909133 -2.154488 -2.361718 0.730285 0.535572 -1.264736 -1.292714 -2.563151 -0.647839 1.737940 0.516488 1.575720 -3.601075 -0.507458 1.552566 1.464861 1.083533 -1.220287 -0.277138 0.083530 0.055711 0.581156 -0.538013 2.332023 3.049007 -1.713164 1.754947 -0.970810 -1.260065 1.359820 1.412606 -3.101814 3.365096 0.326253 2.072022 0.225934 0.893131 -1.065791 0.560419 0.439897 -0.888212 0.130373 0.527038 -1.107083 -1.108407 0.655613 -1.886431 -1.740635 -0.340115 1.116727 0.146050 0.843087 -0.003570 -1.280495 -0.956746 -1.600393 0.502309 1.741112 -0.328733 -0.949680 1.790553 0.612351 0.360933 -0.487249 0.269913 1.247781 1.483262 -3.029183 0.509952 -0.607055 0.527724 -2.149863 -2.900838 0.738688 -1.769228 -1.676210 1.253852 -3.262392 -0.024378 -1.899931 0.202053 -2.846115 -0.578549 0.631895 3.447243 0.622651 -1.029890 1.439443 -1.036967 1.518280 -0.179575 0.379325 0.719200 1.876792 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -2.007431 1.638498 0.013474 -1.475316 4.525991 -0.515820 0.491863 2.552902 -2.211817 3.368791 -1.323455 0.955298 -0.366472 -3.151234 0.220700 -0.705794 -0.132663 1.515952 0.027415 1.766601 1.283726 -1.476974 0.510857 -0.148743 -1.373514 -3.338839 0.005128 1.235872 2.661507 -1.297270 0.431454 0.107718 3.494291 -0.838660 3.093103 2.482289 1.382706 1.897162 1.354269 -2.044119 -0.604165 1.213225 -1.770679 -2.207750 0.152673 -0.680236 -2.840577 -1.193329 1.422745 -1.740455 -0.442390 2.672440 -0.827197 -0.030337 -1.847524 2.361276 1.308458 -1.213124 3.577393 0.224827 -1.445767 -1.664566 -2.468589 3.752656 -1.238812 -0.340871 -1.074259 -2.500039 0.745760 0.573037 -0.795672 -1.260990 -0.588728 2.756217 1.585367 -2.869248 0.426763 -1.322380 -2.307850 -2.837727 -1.832302 1.022771 -0.547948 2.465632 0.479556 1.222937 0.240232 1.524015 -0.949742 -4.184840 0.845493 3.280528 -1.742313 -0.551612 -1.990627 2.595146 0.865793 0.145203 -1.382552 -1.196994 0.787080 -0.620197 1.543490 -2.673748 1.240134 -2.682580 -0.472844 -0.557613 1.233143 2.329978 0.716503 0.959872 2.006205 3.065700 -2.059118 0.177972 -3.011835 1.353517 -0.853559 0.700852 -1.020420 1.412211 1.282222 1.377303 3.177355 -4.164581 1.313308 0.069604 -0.082070 -3.374787 0.073335 -1.104321 -0.638555 -1.031729 1.734511 -0.765523 -0.354275 -1.319963 1.008162 0.873233 -2.244700 -1.331263 0.715419 2.899929 -3.384605 1.083990 -0.608528 -0.759167 -0.300501 1.688745 2.510411 2.698948 3.747658 2.704753 -0.043355 2.729034 -3.431745 0.215050 3.231850 1.700770 -2.515792 3.295268 -2.841589 -1.303382 0.615597 2.347160 2.244079 0.986775 -2.799584 -2.282429 2.242153 1.054284 3.484607 0.408977 0.220786 -1.402190 2.312300 -0.184570 -1.454679 3.567450 1.234148 -3.133991 2.029764 1.333548 -2.074035 -0.770934 1.928120 -2.933225 -0.706228 -1.212141 0.368834 2.112444 -1.562475 -0.862290 0.216639 -2.479785 3.106791 -0.706120 -0.519488 1.369892 -2.142155 -1.662553 2.819527 0.518708 -0.678266 -2.127696 -2.363834 -2.279823 -2.612212 0.699695 0.501788 -1.066069 -1.277533 -2.941641 -1.073302 2.007050 0.888677 1.976285 -4.724720 -0.277132 1.850011 1.469579 1.000039 -1.809632 -0.290706 -0.007131 -0.057241 0.503376 -1.061252 2.595318 3.266174 -1.967249 1.939549 -0.759043 -1.362677 1.424447 1.258521 -3.745621 3.793151 0.632600 2.394589 0.541130 0.934077 -1.464852 0.591081 0.186213 -0.543679 -0.139643 0.582356 -1.230198 -1.264367 0.656630 -1.969073 -2.286985 -0.717013 1.232521 -0.071034 0.985766 -0.560387 -1.428188 -1.241686 -2.218300 0.784423 1.906950 -0.831863 -0.981389 2.374235 0.597621 0.183331 -0.197038 0.256553 1.502261 1.649381 -3.487083 0.390636 -0.539273 1.143550 -2.512942 -3.444357 0.740494 -1.737385 -1.826782 1.193970 -3.773321 -0.424973 -2.104803 0.071659 -3.546787 -0.699413 0.949530 4.135820 0.419148 -1.286451 1.634975 -1.206333 1.510647 -0.205251 0.737276 0.572416 1.935369 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -1.913202 1.861400 0.842419 -1.159842 4.235375 -0.377243 -0.102384 2.524384 -1.985875 3.457933 -1.061536 0.270340 -0.743064 -3.184585 0.171003 -1.219144 -0.539696 1.335682 0.187502 1.909943 1.378863 -1.709047 0.134681 0.085853 -1.332155 -3.059440 -0.330148 1.081756 3.400809 -1.995041 -0.015842 0.018346 3.679124 -0.771957 3.287441 2.551299 1.544013 1.936193 1.024951 -2.019600 -1.456054 1.522736 -2.176874 -1.602692 0.246853 -0.896396 -2.320223 -0.735636 1.342121 -0.451244 -0.523683 2.796361 -1.028575 0.372520 -1.654928 2.536876 0.464346 -0.248656 3.696360 0.219417 -0.616453 -1.490596 -3.400790 3.070673 -1.099088 0.010740 -1.573464 -1.901303 1.093989 -0.514807 -0.519520 -1.935493 -0.133308 3.588625 1.482738 -2.835820 0.466610 -1.519518 -3.145300 -3.203841 -2.743445 0.973449 -0.466691 2.446339 0.388682 1.175764 0.095342 2.047040 -1.343317 -4.727487 1.212811 3.285399 -1.840238 -0.755981 -1.890681 2.691307 0.480481 0.891594 -1.488225 -0.930837 1.029740 -0.525462 1.570630 -3.397204 2.184279 -3.131071 -0.139283 -1.077589 1.103383 1.504082 1.406432 0.636710 2.465578 3.794545 -2.549809 -0.423035 -3.039729 0.830654 -0.680351 0.905519 -0.778833 1.863511 0.324911 1.228903 3.335476 -4.804671 0.563270 -0.247982 -0.387338 -3.771559 -0.096259 -1.804722 -0.779799 -1.278340 1.700116 -0.461984 -0.566957 -1.749942 0.912152 0.892686 -2.088094 -1.322193 1.196800 3.377846 -3.525279 0.835726 -0.721765 -0.937875 -0.546420 1.866886 2.885650 3.006792 3.831530 2.790691 0.065373 2.040700 -3.518781 -0.297924 2.597257 1.012158 -2.641884 3.558023 -2.762717 -1.308386 0.476329 2.857700 2.527409 0.982499 -2.835329 -2.683870 2.267385 1.360678 3.470099 -0.064387 0.200223 -0.134112 2.636853 -0.372255 -2.728709 3.442106 1.123826 -2.441479 1.421052 0.573379 -1.486014 -0.930453 2.285720 -3.071541 0.176225 -1.105665 -0.001366 1.995689 -1.311850 -0.355007 0.515912 -2.584220 3.475856 -0.759642 0.052938 1.738972 -2.271714 -2.616060 2.665064 -0.060994 -0.992904 -2.609787 -2.558713 -2.297242 -1.975388 1.007429 0.222738 -0.915784 -1.735179 -3.064048 -0.594487 2.253890 1.212865 2.179606 -4.573268 -1.024070 1.561603 1.043184 1.990118 -1.161925 -0.327751 -0.234759 -0.156766 0.904636 -0.813431 2.964693 4.262183 -1.824420 1.919201 -1.056387 -1.367456 1.079597 1.283101 -4.150225 3.643367 0.787081 2.079512 0.098025 0.827644 -1.548455 0.403659 0.858273 -0.089084 0.522517 0.272390 -0.200710 -1.098311 -0.398127 -2.762019 -1.895753 -1.128820 0.604032 -0.749070 1.198483 -0.387873 -1.556137 -1.223854 -2.110951 0.578764 2.114396 -0.304990 -0.264797 2.528599 -0.302035 0.865752 0.980451 0.199610 1.019225 1.529977 -3.423216 -0.514326 -0.724725 1.177991 -1.877901 -3.808302 -0.253347 -1.740175 -1.567185 1.507050 -3.599290 0.058252 -2.226007 -0.497363 -3.578515 -0.530961 1.024617 4.194095 1.189532 -1.773918 1.343582 -1.251924 1.975927 -0.001248 0.196407 0.652337 1.867743 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -6.480790 7.225032 3.853570 -4.556750 13.957378 -0.659416 -0.794720 5.329732 -6.102011 12.488565 -3.910520 -1.243646 -3.329920 -11.966696 0.207864 -6.374305 -2.817359 3.681811 1.176590 7.860359 4.471061 -8.057949 0.845839 0.428313 -4.771175 -10.999580 -2.019316 4.047046 13.487223 -8.923158 0.440538 -0.904904 12.924841 -2.794044 10.927329 8.752244 4.039230 7.386654 3.146167 -8.237094 -5.758814 5.535199 -8.050945 -4.670899 0.478370 -3.036110 -7.946631 -2.798904 4.768640 0.457455 -3.309160 10.299598 -4.045843 0.644052 -7.381914 9.203616 1.798875 1.110432 13.585311 0.054990 0.644930 -4.337636 -13.467232 8.427801 -4.183953 -0.428743 -6.185209 -5.107734 4.935915 -2.836450 -2.773511 -6.827248 -0.674129 13.425145 6.264953 -10.418163 0.735770 -6.281811 -15.394020 -11.953627 -10.166794 3.547790 -1.025938 8.811962 1.813172 4.681837 1.921633 8.414786 -5.108989 -17.211929 4.620561 11.558974 -5.290527 -4.242708 -4.394216 11.761103 1.582338 2.850566 -6.231232 -1.934092 3.328996 -2.351274 5.781116 -13.191565 8.203637 -12.956707 -0.126795 -4.041958 3.142322 3.309657 7.296255 1.444169 9.003109 13.965306 -11.489757 -2.781044 -10.853794 1.000637 -1.449932 3.002328 -2.719020 7.495801 -1.731249 4.304280 12.074434 -18.174800 1.593956 -1.359573 -1.924270 -13.978538 -1.070217 -6.181525 -2.405103 -3.957468 5.183941 -1.607943 -1.620171 -6.093191 2.508992 3.347379 -6.077786 -2.810960 6.078192 14.185204 -11.317614 3.277943 -2.141509 -3.611787 -1.947608 6.453778 10.744591 10.455110 14.117411 9.935522 0.386515 6.997204 -12.089992 -1.424965 8.600285 2.163116 -9.320121 13.038487 -9.134649 -4.730642 0.756309 10.930862 9.804667 2.503577 -10.808724 -10.533191 8.232209 4.683303 11.724005 -2.000973 0.205743 1.442805 11.264896 0.053053 -9.963084 11.365911 3.602999 -6.841835 4.618096 1.956539 -6.529212 -3.774202 8.975701 -10.184578 2.588255 -3.677311 -0.437009 6.489831 -3.458685 -0.818657 0.122387 -9.025542 12.731330 -2.947438 0.268344 6.896323 -7.311775 -11.940861 8.495158 -1.853722 -3.626679 -9.817872 -9.478908 -8.052142 -6.580019 3.897791 0.324993 -4.148981 -6.212150 -10.828844 -1.034605 7.852891 4.482455 8.182654 -15.244285 -4.495640 5.128567 5.375887 8.293546 -0.866729 -0.727037 0.438701 -0.428711 2.895640 -1.984843 11.505649 15.730929 -6.293876 6.458673 -6.194469 -4.902101 4.694816 4.631811 -15.074631 13.104026 2.987700 7.744893 -0.645837 2.562629 -4.385420 1.779395 4.701218 -1.251524 3.085585 -0.168755 0.014004 -4.245222 -2.124498 -9.689273 -6.850118 -4.339489 1.845277 -3.509804 4.658641 -0.360468 -5.014083 -4.109148 -6.100324 2.047622 7.110025 0.680200 0.580828 8.916072 -0.915192 5.323267 5.362152 0.294009 3.105840 4.819854 -12.169716 -2.378781 -3.692255 4.241431 -4.970182 -13.975644 -1.098359 -6.379911 -4.568008 6.460668 -12.598885 1.236779 -8.210406 -2.398753 -11.433907 -0.846819 3.781277 14.637471 5.634453 -7.106216 3.807728 -4.961957 6.990038 -0.532005 -0.493737 3.131059 6.191508 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -2.349166 1.815838 1.223555 -1.687837 4.942947 -0.220264 -0.085713 2.212974 -0.891567 3.568094 -2.011780 -0.815128 -1.167047 -3.451566 0.205207 -1.836550 -0.660645 1.705759 -0.603477 1.587830 1.831730 -1.321937 0.417230 -0.598521 -1.260334 -2.739743 -1.015298 1.015263 2.817738 -1.424518 -0.098720 -0.020969 4.021573 -0.616165 3.417800 2.664990 1.689330 3.097299 0.125460 -0.536146 -0.727387 2.005472 -2.243421 -2.729893 0.856426 -1.623441 -2.634279 -1.481215 1.640525 -1.498285 0.509772 3.036294 -0.676844 -0.111646 -1.779625 2.498391 0.989666 0.567432 4.125868 0.682555 -1.188993 -0.517440 -4.081526 2.582778 -1.636791 1.576356 -1.315580 -2.872865 -0.098483 -0.004843 0.292772 -2.423966 -1.273059 3.056150 1.501768 -2.673292 0.812955 -1.570348 -2.623828 -2.889355 -3.069495 0.990541 -0.589731 2.671671 0.033074 0.940167 -0.007329 1.795193 -0.806123 -4.652013 0.395272 3.732550 -1.807115 -0.099426 -2.017208 1.900217 0.135378 0.715820 -1.921211 -0.759078 1.104242 0.090886 1.639673 -2.522658 1.133990 -3.421565 0.933023 0.113304 0.606550 0.857951 1.600697 0.587880 2.121370 3.562984 -2.690753 0.507954 -3.582201 0.786940 -0.912018 1.098846 -0.840676 1.972237 0.273591 0.946161 3.258996 -4.867146 1.550761 -0.163057 -1.257322 -3.562688 0.442992 -1.669851 -1.381998 -1.113677 1.961815 -0.137318 -0.825166 -1.479421 0.824169 0.326399 -2.007761 -1.293829 0.844869 2.827153 -2.956047 0.692903 -0.914552 -1.448094 -0.645200 1.989744 2.727551 2.716618 4.372133 3.079312 -0.191408 0.821847 -3.721562 0.204949 3.393602 0.646927 -3.143934 3.287238 -2.409688 -0.571551 0.921754 2.472762 2.292354 1.888420 -2.385269 -2.307981 1.048523 0.780168 3.848251 1.057902 0.729218 -1.182581 2.341950 -1.031741 -2.150701 4.277269 1.944831 -3.048632 0.821623 1.223488 -2.024396 -1.559564 2.134250 -2.528742 0.074361 -1.376288 0.333957 1.968590 -1.835693 -1.418241 0.524988 -3.097549 3.898802 -0.719298 0.054544 1.597799 -3.110245 -2.936360 3.469001 -0.016699 -1.289228 -2.353983 -2.543606 -1.908979 -2.798621 1.298915 0.841558 -1.102387 -2.257093 -3.104519 -0.041965 2.786528 0.462270 1.922435 -3.443526 -1.283618 1.614209 0.377490 2.635785 -1.762129 -0.643124 -0.640424 -0.297520 1.461630 -0.686100 2.287383 4.857046 -2.208455 2.142883 0.026754 -1.556674 0.554615 2.187532 -3.768958 3.998993 0.364438 2.194763 -0.304381 1.392218 -1.469550 0.398199 0.864413 -0.111004 0.446656 1.056514 -0.800022 -1.078809 -0.212359 -3.300660 -1.654321 -0.219688 1.015190 -0.398323 1.021516 -0.023237 -1.990302 -1.041970 -1.752623 0.343392 2.608713 -0.301513 -1.318006 1.915330 -0.051814 -0.120033 0.118806 0.511242 0.882178 2.398125 -3.667595 0.033969 -0.466031 0.392684 -2.713728 -3.398435 -0.529197 -2.247930 -1.667938 1.819764 -3.512070 -0.314938 -2.412251 0.276169 -3.054815 -0.985147 0.744809 4.248941 2.044671 -1.463607 1.813791 -0.908967 2.558133 0.224829 -0.546455 0.986117 2.389796 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.144032 0.786171 -0.245114 -0.787411 3.037345 -0.876256 0.208366 1.626559 -1.504563 2.235573 -0.611772 0.235108 -0.382477 -2.493407 0.277667 -0.018700 0.198128 1.276527 0.242921 1.184601 0.763863 -1.205621 0.287137 -0.017404 -0.689379 -2.028335 -0.011951 0.826395 2.088859 -1.434729 0.010184 0.276926 2.518816 -0.378164 2.105628 1.519854 0.599615 1.218513 1.367983 -2.103384 -0.415801 0.790852 -1.002140 -1.381258 0.178330 -0.224572 -1.544982 -0.924284 0.890747 -0.608768 -0.325485 1.631327 -0.522403 0.063982 -1.515680 1.499642 0.994296 -0.418396 2.236081 0.157942 -0.377157 -0.968469 -1.733107 1.978621 -0.900618 -0.709710 -0.883406 -1.330375 0.661206 0.322689 -0.354082 -1.134822 -0.232479 1.917084 1.047831 -1.679957 0.295526 -0.594702 -1.348329 -2.417087 -1.663635 0.556150 -0.679626 1.661095 0.226283 0.716834 0.054659 0.952064 -0.458907 -2.758431 0.569307 1.819461 -0.944685 -0.625368 -0.649638 1.988629 0.672497 -0.019723 -0.894103 -1.104446 0.379314 -0.778060 0.983485 -1.523914 1.505001 -1.461949 -0.425648 -0.728866 0.807537 1.774053 1.322567 0.493490 1.254584 2.031496 -1.470090 -0.685366 -2.070916 0.792102 -0.539230 0.359643 -0.559574 1.090149 0.775783 0.658362 1.947402 -3.282334 0.669831 0.139493 0.343520 -2.201729 0.058700 -0.533850 -0.364081 -0.701221 1.194089 -0.552224 -0.171262 -0.661316 0.571567 0.734994 -1.484915 -0.459481 0.441509 2.769311 -2.581877 0.690920 -0.397740 -0.719628 -0.061882 0.685126 1.597841 1.714327 2.288756 1.701467 -0.398951 1.692480 -2.451226 0.208134 2.021770 0.521601 -1.382339 2.302884 -1.506242 -0.775662 0.410957 1.858578 1.586320 -0.253799 -1.709593 -1.472167 1.893684 0.731280 1.969836 -0.567892 0.123472 -0.879260 1.526262 0.635690 -1.014797 2.574292 0.200870 -1.781487 1.502301 0.904076 -1.260770 -0.362762 1.147282 -1.882834 -0.227225 -0.979404 0.443135 1.354610 -1.032471 -0.351551 -0.073487 -1.385887 1.934498 -0.494000 -0.794564 1.016123 -1.171531 -0.666183 2.117867 0.262429 -0.173166 -1.420564 -1.968591 -1.455954 -1.591394 0.448460 -0.077675 -0.688986 -0.471534 -1.703714 -0.758186 1.754475 0.635315 1.114761 -3.493738 0.176709 1.072161 1.250858 0.640080 -1.019756 -0.183758 0.588253 -0.086115 0.015473 -0.546783 1.720338 2.251201 -1.348725 0.775110 -0.263994 -0.345214 1.268205 0.612121 -2.675348 2.261328 0.331429 2.104407 0.294207 0.493607 -0.847150 0.320216 0.226804 -0.065964 -0.258414 0.138798 -0.732968 -0.758161 0.491155 -1.110736 -1.976827 -0.529431 0.825969 0.018925 0.646473 -0.741974 -0.753993 -0.492407 -1.255845 0.684755 1.114093 -0.213636 -0.454177 1.441165 0.572938 0.447249 0.099034 0.113234 0.807830 0.968204 -2.102121 0.231234 -0.414230 1.262965 -0.975802 -2.538535 0.725108 -0.960610 -0.831792 1.022498 -2.720741 -0.456947 -1.233158 0.125002 -2.729652 0.478137 0.390926 2.709344 0.229253 -0.835058 0.925560 -0.687482 0.656530 -0.343399 0.368539 0.297689 1.189031 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -2.292162 0.765760 -0.132986 -1.757052 6.157626 -2.385864 0.504142 3.983472 -0.619781 2.735510 -2.298598 1.308438 -0.443933 -2.924471 0.674990 -0.074780 0.930658 3.157269 -1.158080 0.474107 1.588853 0.919100 0.449463 -0.955512 -1.098627 -3.048583 -0.314884 1.188957 0.350735 -0.955272 -0.803293 1.459548 4.710833 -0.938813 3.378339 2.905402 2.740433 2.956430 1.415006 -0.541383 1.723512 1.046299 -1.036945 -3.324343 0.629072 -0.706902 -3.288362 -1.429633 1.729195 -2.983175 2.167675 2.366669 0.004085 -0.256495 -1.742408 2.664684 1.434610 -0.983545 3.175044 1.143259 -3.377977 -0.248005 -2.045651 4.979748 -2.330908 1.380695 -1.076883 -3.909641 -1.282101 2.465396 1.893984 -2.972176 -2.392649 0.815157 0.661529 -2.282545 1.092005 -0.225946 2.151043 -2.377413 -2.569002 1.283882 -1.415559 1.987154 0.075820 0.730419 -2.005722 0.359956 0.298325 -2.910614 -0.436947 3.398652 -2.332772 1.055363 -3.257651 0.356824 1.177294 -1.032791 -0.638388 -3.191939 0.888185 -0.940236 1.379543 -0.398995 1.113842 -1.204246 0.213323 1.038806 0.934751 2.801619 -0.920921 1.654454 1.416320 1.442896 0.187169 0.551687 -4.869020 2.269437 -1.488618 -0.013240 -0.928545 0.681543 2.326279 1.536025 2.316644 -3.646494 2.818329 0.251663 -0.809275 -1.783369 1.070613 0.199761 -1.204422 -1.234241 2.578875 -0.209906 -0.500150 -0.200609 1.596106 0.112752 -2.093643 -2.185704 -1.019877 1.387904 -3.214011 0.914278 -0.858618 -1.165176 -0.148554 1.314680 1.650826 2.125216 3.779586 2.645693 -0.677917 0.984411 -4.456718 0.686254 3.423246 1.343876 -2.467806 2.857792 -2.239390 -0.660754 1.297146 2.549677 0.718581 1.276310 -1.375120 -1.325979 0.238760 0.183406 3.486594 1.192329 0.393457 -3.137068 0.241933 -1.290311 -0.220683 5.119932 1.872487 -4.250260 0.994593 2.995775 -0.480573 -2.216531 1.204951 -2.905881 -2.028087 -1.521595 1.400761 2.266859 -2.732284 -1.589056 1.326351 -2.393866 2.261192 -0.510992 -2.467751 0.680675 -3.213301 -0.589957 4.698767 0.826516 0.029570 -1.028498 -2.998105 -0.475664 -4.005223 0.445867 1.296531 -0.373209 -0.854840 -2.342871 -0.914693 3.141382 -0.488680 1.436006 -4.045281 -0.090986 2.229216 0.346571 0.414635 -3.929587 -0.635412 -0.248721 -0.157961 0.306839 -1.657364 0.829820 3.220920 -2.338895 1.800373 2.289126 -1.795044 0.449540 2.265701 -3.033953 3.781539 0.320851 2.229506 1.289105 1.214446 -2.089169 0.069825 -0.787795 0.508918 -1.741148 1.492411 -2.691287 -1.020400 0.902474 -1.564130 -2.576710 0.532181 2.562188 0.195126 0.305604 -1.079252 -1.203569 -0.967605 -2.474927 1.132723 1.989876 -1.481741 -2.405823 2.021044 1.931943 -2.904102 -0.933064 0.610925 1.595204 2.897385 -3.402349 1.751956 0.540126 1.427681 -4.179592 -3.425171 0.999025 -2.143527 -1.795656 0.017208 -4.039407 -3.133428 -1.535692 1.971993 -3.438698 -0.967192 1.089084 3.781009 0.744915 -0.390924 2.305434 -0.677054 0.979660 -0.050500 0.230103 0.152369 2.445195 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.788634 0.518035 -0.545017 -0.619918 1.977790 -0.653253 0.147338 1.415204 -0.842854 1.064310 -0.725488 0.914160 0.010592 -1.295084 0.196232 0.548057 0.289943 0.977643 -0.112017 0.419300 0.510097 -0.286560 0.184778 -0.322820 -0.481413 -1.130976 0.243735 0.435660 0.527922 -0.407729 -0.251213 0.341485 1.471189 -0.305497 0.995184 0.894871 0.674222 0.965813 0.948481 -0.968620 0.334070 0.379100 -0.352873 -1.124920 0.237642 -0.299884 -0.923844 -0.509702 0.560949 -0.923695 0.499511 0.778664 0.009771 -0.160918 -0.950032 0.772129 0.898264 -0.706143 1.238613 0.286601 -0.811021 -0.610201 -0.476209 1.647530 -0.787948 -0.198202 -0.066975 -1.007227 0.031913 0.809595 0.355700 -0.870866 -0.587356 0.327269 0.205347 -0.958069 0.314750 -0.166195 0.330801 -1.224966 -0.661341 0.332870 -0.590416 0.882902 -0.006405 0.302272 -0.610604 0.155620 0.059688 -1.065046 -0.157285 0.933066 -0.631135 0.237999 -0.801264 0.887723 0.484606 -0.381052 -0.423193 -0.865122 0.257540 -0.193431 0.465723 -0.573781 0.570119 -0.469437 -0.050684 -0.106281 0.298130 1.145644 0.039320 0.565956 0.410569 0.603419 -0.114046 -0.101254 -1.659061 0.568035 -0.118530 0.126950 -0.369554 0.166248 0.874424 0.301878 0.866110 -1.411917 0.974571 0.145276 0.109907 -0.922689 0.338529 0.131028 -0.313176 -0.368415 0.787904 -0.205714 -0.096464 -0.119025 0.529083 0.226295 -1.208791 -0.787916 -0.159932 1.264157 -1.562064 0.360009 -0.265059 -0.332308 -0.006158 0.288785 0.585500 0.644905 1.251375 0.882187 -0.142340 1.129295 -1.440973 0.305179 1.402166 0.992311 -0.866268 0.960278 -0.860223 -0.320991 0.462545 0.753777 0.483325 0.173685 -0.805688 -0.671384 0.836788 0.064246 1.228689 -0.005450 0.252063 -1.045438 0.603394 0.189613 0.008924 1.726655 0.320959 -1.427478 0.906512 0.911024 -0.240343 -0.211225 0.385125 -0.921351 -0.660675 -0.409229 0.415847 0.777293 -0.858811 -0.587423 -0.078650 -0.781639 0.905933 -0.215547 -0.657715 0.265253 -0.863165 0.345830 1.310948 0.315622 -0.064548 -0.445011 -0.915912 -0.709615 -1.354016 0.105196 0.302925 -0.423728 -0.263086 -0.932991 -0.556035 1.054247 -0.132069 0.211894 -2.086895 0.114969 0.788473 0.559297 -0.046498 -1.282576 -0.137943 0.223415 0.172503 0.107914 -0.575517 0.726199 1.054313 -0.836929 0.536262 0.457735 0.063091 0.626334 0.714083 -1.083927 1.287124 0.078377 1.206769 0.381496 0.366484 -0.615467 0.105872 -0.312310 0.220930 -0.474115 0.312090 -0.920986 -0.390086 0.535604 -0.392365 -1.003939 0.178359 0.846381 0.351481 0.144304 -0.437853 -0.145733 -0.370688 -0.935074 0.275981 0.629058 -0.532026 -0.776599 0.656440 0.655225 -0.507322 -0.021502 0.147483 0.719704 0.818954 -1.121499 0.603647 -0.016066 0.494720 -1.198716 -1.401725 0.586416 -0.422443 -0.674273 0.439451 -1.711179 -0.820190 -0.501991 0.658033 -1.674942 0.105595 0.138961 1.287137 -0.093512 -0.092329 0.789774 -0.292254 0.373753 -0.133987 0.387784 -0.022213 0.826852 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -2.036479 1.793177 0.268893 -2.308850 5.225887 -1.121576 0.662387 2.036480 -1.569834 2.669291 -2.430191 1.293471 -0.213627 -3.450650 0.470433 -0.965445 -0.082003 2.065924 -0.474632 1.721422 1.362797 -1.093333 0.749452 -1.235321 -1.145266 -3.741261 -0.009849 1.115726 1.593299 -0.504280 0.513822 0.185182 3.294568 -1.018124 2.067950 2.289521 1.406721 2.608766 1.021835 -1.910440 0.987062 1.088665 -1.102919 -2.980432 0.366204 -0.734889 -3.123737 -1.680500 1.500612 -2.951863 -0.483579 2.361103 -0.115210 -1.183570 -2.436532 2.693641 2.692247 -0.789556 3.004037 0.658449 -1.315318 -1.061135 -2.295685 2.993248 -1.972256 0.385845 -0.664815 -2.577486 -0.267813 2.051559 -0.338416 -1.108512 -1.547068 0.891253 1.495387 -2.442485 0.576525 -1.121210 -1.439319 -2.272881 -1.150522 0.992026 -0.895192 2.316586 0.233692 0.990525 0.006240 0.780941 0.251802 -2.698775 -0.681597 3.071482 -1.025389 -0.624584 -1.587360 2.509203 1.764979 -1.240062 -1.069518 -1.710227 0.678415 -0.379074 1.363141 -1.860130 0.431240 -2.509671 -0.070906 0.840501 0.584814 2.699845 -0.687445 1.335846 0.640336 1.493950 -1.687103 0.708198 -4.130527 0.835418 -1.137101 0.597814 -1.079465 0.678950 1.593308 1.591644 2.012450 -3.463124 3.072206 0.446205 -0.222813 -2.119019 0.964658 0.349229 -0.707146 -0.571261 1.520874 -0.403764 -0.257364 0.003895 1.227721 0.364148 -1.549088 -1.214827 0.012984 2.993220 -3.280682 1.151830 -0.549359 -0.737298 0.068710 0.817596 1.607400 1.342571 3.693563 2.393255 -0.264267 2.634982 -3.179849 0.898033 3.840562 1.400520 -2.063057 2.405001 -1.763846 -0.781654 0.630062 1.709398 1.205995 1.715630 -2.741512 -2.338585 0.960277 -0.499405 2.949680 0.955052 0.185911 -3.318723 2.308609 -0.574623 0.151774 3.846148 1.895861 -3.284931 1.682103 2.689311 -2.713845 -1.612055 1.029445 -1.833334 -0.868702 -1.036837 0.911407 1.645945 -1.765536 -2.380761 -0.838885 -2.160336 2.320140 -0.505793 -1.453091 0.528382 -1.522275 -1.286139 3.160850 0.572101 -0.702917 -1.445561 -2.199660 -1.966554 -3.445714 0.604082 0.893664 -1.436191 -1.150597 -2.239115 -0.963263 2.236791 -0.746804 0.767497 -4.514251 -0.187603 1.758861 2.189502 0.713444 -2.127909 -0.346089 0.113418 -0.041626 0.134463 -0.910386 1.840684 3.228403 -2.092794 1.807178 -0.209135 -1.690683 1.456248 2.652271 -2.594646 3.549671 0.388900 3.329140 0.612028 1.119845 -1.264742 0.551830 -0.110355 -1.537076 -0.517937 1.050918 -2.398166 -1.193113 1.392038 -1.066541 -2.493002 0.835617 2.228674 0.650807 0.393963 -0.104496 -0.984820 -0.809532 -1.564352 0.475890 1.720705 -0.945774 -2.103176 1.210380 2.182687 -1.133818 -1.483916 0.455452 1.609865 2.112397 -3.051308 2.133134 -0.333864 0.818152 -3.372436 -3.053527 1.643305 -1.821981 -1.886218 0.993506 -3.761534 -1.578510 -1.635507 1.607443 -3.242963 -1.024937 0.770778 3.026894 0.341194 -0.356788 1.908684 -0.998781 1.216818 -0.320055 0.408731 0.348169 1.996240 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -2.249143 0.755626 -0.218947 -1.572217 6.036992 -2.382118 0.439514 3.984255 -0.835107 2.785516 -1.995608 1.304337 -0.558622 -2.965052 0.649973 -0.008652 0.982115 3.140140 -1.002652 0.576254 1.581983 0.749580 0.454458 -0.720524 -1.115411 -3.140853 -0.240493 1.222865 0.525411 -1.105986 -0.747260 1.460277 4.737350 -0.870818 3.438677 2.864626 2.579465 2.883036 1.566660 -0.789039 1.393498 1.066684 -1.102113 -3.240101 0.673841 -0.639377 -3.221983 -1.376178 1.739704 -2.859121 1.998257 2.378865 -0.115780 -0.084831 -1.726779 2.571350 1.381436 -0.928379 3.200946 1.034209 -3.200458 -0.439504 -2.013744 4.830704 -2.223520 1.063211 -1.139788 -3.795319 -1.041264 2.192359 1.720138 -2.957337 -2.206918 1.059833 0.696797 -2.303899 1.049557 -0.193183 1.819603 -2.526216 -2.756831 1.189409 -1.501719 2.009640 0.059602 0.786566 -1.919271 0.455221 0.136352 -3.060420 -0.148393 3.351309 -2.332541 1.024936 -3.065323 0.577435 1.070015 -0.879079 -0.724702 -3.053277 0.853072 -1.062048 1.444763 -0.530979 1.231231 -1.259005 0.136954 0.677856 1.095540 2.849480 -0.576140 1.556215 1.534300 1.620294 0.000986 0.450515 -4.803867 2.303736 -1.453406 0.025736 -0.909014 0.840509 2.256030 1.477230 2.436077 -3.806938 2.585506 0.185993 -0.619790 -1.919109 0.976636 0.078876 -1.082256 -1.332610 2.661398 -0.368002 -0.544352 -0.371128 1.551184 0.274519 -2.226289 -2.092337 -0.937468 1.576652 -3.334557 0.951327 -0.906304 -1.268223 -0.084432 1.277325 1.702883 2.342245 3.759189 2.705722 -0.722765 1.131205 -4.510659 0.598831 3.359098 1.396098 -2.454100 2.924981 -2.232986 -0.748717 1.286102 2.651096 0.977530 1.105088 -1.416664 -1.451025 0.460015 0.491860 3.473739 1.077923 0.409151 -2.946286 0.336950 -1.038758 -0.357712 5.074270 1.650069 -4.114082 1.086963 2.730052 -0.543228 -2.036862 1.223352 -2.949295 -1.903380 -1.562731 1.355530 2.369716 -2.694649 -1.439370 1.380829 -2.364765 2.241292 -0.590848 -2.377736 0.855542 -3.241914 -0.551463 4.587127 0.842411 0.049969 -1.190901 -3.145924 -0.600467 -3.822997 0.486943 1.102547 -0.297591 -0.825524 -2.398977 -1.017488 3.123874 -0.122968 1.524421 -4.241979 -0.024984 2.217908 0.430853 0.391456 -3.823699 -0.577126 -0.097380 -0.180775 0.307009 -1.522154 0.981894 3.208345 -2.363089 1.751324 2.114199 -1.617472 0.593564 2.101992 -3.185063 3.744228 0.313130 2.371043 1.229326 1.112923 -2.016523 0.138250 -0.685316 0.616940 -1.658461 1.341899 -2.449960 -1.067775 0.884233 -1.601005 -2.634669 0.217705 2.422017 0.153048 0.445910 -1.201321 -1.233394 -0.975792 -2.411870 1.183388 1.989132 -1.391866 -2.196681 2.184275 1.687272 -2.564827 -0.837505 0.573408 1.571492 2.727334 -3.424064 1.491025 0.433964 1.519212 -3.903044 -3.453486 0.952942 -2.039891 -1.829494 0.176831 -4.068337 -2.867737 -1.551481 1.786521 -3.491969 -0.770189 0.995188 3.812748 0.691193 -0.475135 2.273538 -0.696104 0.944882 -0.097998 0.257494 0.149362 2.488475 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.606750 1.706237 0.085933 -1.637926 4.500489 -1.140750 0.520174 1.441879 -1.626514 2.095991 -1.756805 0.929524 -0.418804 -3.314362 0.514023 -0.797116 0.184132 1.758347 -0.096723 1.568665 1.129276 -1.286965 0.536114 -0.798998 -0.824067 -3.640297 -0.017264 0.966506 1.549310 -0.763985 0.492233 0.383769 3.028717 -0.601691 1.819033 1.937279 0.836605 2.243825 1.195079 -2.074321 0.452705 0.978843 -0.952723 -2.563044 0.392942 -0.468835 -2.693232 -1.419209 1.209708 -2.267136 -0.694104 2.023162 -0.215813 -0.694935 -2.270733 2.111068 2.602197 -0.209516 2.474304 0.552897 -0.658548 -1.137684 -1.795602 1.973499 -1.562045 -0.226965 -0.636271 -1.984625 0.159047 1.432513 -0.589914 -1.029596 -1.211307 0.889675 1.352167 -1.976660 0.505852 -0.721701 -2.070985 -2.264089 -1.541892 0.745587 -1.086175 2.148965 0.167683 0.795637 0.145421 0.621294 0.158369 -2.314789 -0.283804 2.599927 -0.776309 -0.653755 -0.724983 2.799652 1.479493 -0.857997 -1.030440 -1.441901 0.536631 -0.664257 1.187727 -1.447434 0.404724 -2.297122 -0.054648 0.171742 0.621936 2.649298 0.220310 0.940931 0.622061 1.277537 -1.996470 0.411481 -3.781941 0.769569 -0.965452 0.448687 -0.842206 0.754027 1.207875 1.284230 1.688584 -3.260363 2.469179 0.482642 0.189027 -1.770378 0.702894 0.132305 -0.563316 -0.623536 1.463074 -0.459101 -0.197576 -0.052799 0.867820 0.534887 -1.398259 -0.802564 -0.039886 3.252338 -3.236892 0.953565 -0.519281 -0.877094 0.081570 0.495055 1.281275 1.415465 3.242620 2.077689 -0.564428 2.500126 -2.925428 0.739313 3.543227 1.225706 -1.659174 2.012527 -1.242008 -0.670331 0.492769 1.646287 1.387540 1.023707 -2.419823 -2.149543 0.947886 -0.094825 2.381356 0.672688 0.206337 -2.813548 2.306602 0.211331 -0.036237 3.444917 1.260901 -2.499972 1.500281 2.109869 -2.719526 -1.113497 0.837448 -1.550335 -0.438558 -1.126487 0.832155 1.508056 -1.578069 -1.935510 -0.722652 -1.750340 1.728211 -0.468862 -1.170251 0.633530 -1.235881 -1.128554 2.895558 0.431501 -0.375947 -1.414674 -2.273230 -1.858286 -2.685429 0.562069 0.361640 -1.144649 -0.780796 -1.867665 -0.970154 2.229626 -0.283410 0.728894 -4.213731 0.082161 1.400839 2.328069 0.492450 -1.578514 -0.325099 0.601926 -0.129850 -0.024872 -0.499536 1.872591 2.833181 -1.829201 1.571494 -0.460714 -1.121026 1.563032 2.261337 -2.272538 2.890287 0.178092 3.554395 0.452355 0.888429 -0.998993 0.419421 0.094631 -1.344492 -0.518769 0.708149 -1.771277 -0.966328 1.417616 -0.721269 -2.499060 0.369058 1.732081 0.637696 0.424237 -0.423282 -0.826650 -0.479513 -0.933476 0.657822 1.446814 -0.521667 -1.511518 1.112531 1.704833 -0.419991 -1.283851 0.371169 1.187558 1.647019 -2.566937 1.477418 -0.403426 1.016214 -2.471839 -2.752781 1.458943 -1.420731 -1.593300 1.167977 -3.424920 -1.014979 -1.381876 1.173342 -2.941707 -0.447554 0.444279 2.486666 0.208410 -0.435143 1.463709 -0.762959 0.805460 -0.455784 0.323937 0.286304 1.802798 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.788634 0.518035 -0.545017 -0.619918 1.977790 -0.653253 0.147338 1.415204 -0.842854 1.064310 -0.725488 0.914160 0.010592 -1.295084 0.196232 0.548057 0.289943 0.977643 -0.112017 0.419300 0.510097 -0.286560 0.184778 -0.322820 -0.481413 -1.130976 0.243735 0.435660 0.527922 -0.407729 -0.251213 0.341485 1.471189 -0.305497 0.995184 0.894871 0.674222 0.965813 0.948481 -0.968620 0.334070 0.379100 -0.352873 -1.124920 0.237642 -0.299884 -0.923844 -0.509702 0.560949 -0.923695 0.499511 0.778664 0.009771 -0.160918 -0.950032 0.772129 0.898264 -0.706143 1.238613 0.286601 -0.811021 -0.610201 -0.476209 1.647530 -0.787948 -0.198202 -0.066975 -1.007227 0.031913 0.809595 0.355700 -0.870866 -0.587356 0.327269 0.205347 -0.958069 0.314750 -0.166195 0.330801 -1.224966 -0.661341 0.332870 -0.590416 0.882902 -0.006405 0.302272 -0.610604 0.155620 0.059688 -1.065046 -0.157285 0.933066 -0.631135 0.237999 -0.801264 0.887723 0.484606 -0.381052 -0.423193 -0.865122 0.257540 -0.193431 0.465723 -0.573781 0.570119 -0.469437 -0.050684 -0.106281 0.298130 1.145644 0.039320 0.565956 0.410569 0.603419 -0.114046 -0.101254 -1.659061 0.568035 -0.118530 0.126950 -0.369554 0.166248 0.874424 0.301878 0.866110 -1.411917 0.974571 0.145276 0.109907 -0.922689 0.338529 0.131028 -0.313176 -0.368415 0.787904 -0.205714 -0.096464 -0.119025 0.529083 0.226295 -1.208791 -0.787916 -0.159932 1.264157 -1.562064 0.360009 -0.265059 -0.332308 -0.006158 0.288785 0.585500 0.644905 1.251375 0.882187 -0.142340 1.129295 -1.440973 0.305179 1.402166 0.992311 -0.866268 0.960278 -0.860223 -0.320991 0.462545 0.753777 0.483325 0.173685 -0.805688 -0.671384 0.836788 0.064246 1.228689 -0.005450 0.252063 -1.045438 0.603394 0.189613 0.008924 1.726655 0.320959 -1.427478 0.906512 0.911024 -0.240343 -0.211225 0.385125 -0.921351 -0.660675 -0.409229 0.415847 0.777293 -0.858811 -0.587423 -0.078650 -0.781639 0.905933 -0.215547 -0.657715 0.265253 -0.863165 0.345830 1.310948 0.315622 -0.064548 -0.445011 -0.915912 -0.709615 -1.354016 0.105196 0.302925 -0.423728 -0.263086 -0.932991 -0.556035 1.054247 -0.132069 0.211894 -2.086895 0.114969 0.788473 0.559297 -0.046498 -1.282576 -0.137943 0.223415 0.172503 0.107914 -0.575517 0.726199 1.054313 -0.836929 0.536262 0.457735 0.063091 0.626334 0.714083 -1.083927 1.287124 0.078377 1.206769 0.381496 0.366484 -0.615467 0.105872 -0.312310 0.220930 -0.474115 0.312090 -0.920986 -0.390086 0.535604 -0.392365 -1.003939 0.178359 0.846381 0.351481 0.144304 -0.437853 -0.145733 -0.370688 -0.935074 0.275981 0.629058 -0.532026 -0.776599 0.656440 0.655225 -0.507322 -0.021502 0.147483 0.719704 0.818954 -1.121499 0.603647 -0.016066 0.494720 -1.198716 -1.401725 0.586416 -0.422443 -0.674273 0.439451 -1.711179 -0.820190 -0.501991 0.658033 -1.674942 0.105595 0.138961 1.287137 -0.093512 -0.092329 0.789774 -0.292254 0.373753 -0.133987 0.387784 -0.022213 0.826852 +PE-benchmarks/dfa-based-division.cpp__main = -1.234370 0.577262 -0.026151 -0.685085 2.814151 -0.656054 0.144859 1.803002 -1.002271 1.865113 -0.561033 0.170561 -0.353822 -1.794002 0.358721 -0.322858 0.132675 1.154645 -0.066076 0.976299 0.920920 -0.479414 0.073020 0.035165 -0.712421 -1.553235 -0.214385 0.787700 1.557908 -1.055492 -0.150203 0.438181 2.385507 -0.528413 2.278651 1.717976 1.179332 1.115848 0.690367 -1.301185 -0.384103 0.878117 -1.191439 -1.326125 0.172080 -0.349702 -1.696292 -0.545326 0.943384 -0.558633 -0.021477 1.688044 -0.520756 0.338565 -0.915212 1.368282 0.301841 -0.376683 2.095607 0.347692 -0.998450 -0.548524 -1.624244 2.412727 -0.758413 0.123179 -1.096956 -1.748411 0.219709 0.180983 -0.028038 -1.325342 -0.464810 1.770639 0.809535 -1.581291 0.600853 -0.565142 -0.234698 -1.901447 -1.692287 0.671646 -0.650327 1.518530 0.107671 0.633300 -0.272624 0.881245 -0.603565 -2.569464 0.626483 1.820317 -1.438055 -0.150914 -1.234695 1.018214 0.485029 0.350407 -0.762348 -1.091320 0.610285 -0.639842 0.999558 -0.928449 1.440083 -1.095399 -0.470502 -0.444589 1.017545 1.583981 0.536820 0.637447 1.466025 1.857348 -0.791737 -0.283381 -1.686480 1.063007 -1.034782 0.478260 -0.527934 1.106925 1.145452 0.781856 1.920282 -2.531260 0.501107 -0.018636 0.019160 -1.752261 0.180547 -0.872463 -0.601608 -0.940937 1.373031 -0.363096 -0.424136 -0.870110 0.794344 0.631229 -1.233789 -0.520495 0.141704 1.114218 -2.013116 0.527665 -0.518340 -0.712935 -0.149414 1.070186 1.537778 1.978855 2.253215 1.814798 -0.345649 1.104505 -2.354924 0.116157 1.793126 0.339706 -1.550868 2.068154 -1.791533 -0.765477 0.543775 1.721736 1.368500 0.576866 -1.152971 -1.058210 1.006174 0.926528 2.208272 0.105407 0.131582 -0.695252 0.764265 -0.335085 -1.232140 2.457382 0.433214 -1.993476 0.971139 0.711754 -0.789602 -0.680749 1.114605 -2.010819 -0.442350 -1.019767 0.426967 1.478385 -1.185625 -0.263424 0.751272 -1.533921 1.667002 -0.511112 -0.693606 0.922795 -1.626332 -0.868554 2.146925 0.419763 -0.316196 -1.432799 -1.664629 -0.658610 -1.527316 0.549289 0.106872 -0.183563 -0.764947 -1.763367 -0.661531 1.543671 0.678482 1.309263 -2.828278 -0.034709 1.083719 0.431380 0.714170 -1.242799 -0.264913 -0.067114 -0.219818 0.235984 -0.801834 1.134797 2.099343 -1.385508 0.829144 0.010913 -1.023317 0.598374 0.691566 -2.442184 2.333954 0.519551 1.253917 0.329016 0.546078 -1.159660 0.163990 0.121341 0.102328 -0.274322 0.380952 -0.482998 -0.670223 0.271888 -1.218778 -1.428091 -0.617682 0.753048 -0.263395 0.681662 -0.640621 -1.056258 -0.663775 -1.208312 0.634094 1.347150 -0.514498 -0.557520 1.659938 0.180394 -0.107398 -0.081476 0.167717 0.727523 1.252181 -2.214642 0.016515 -0.147338 1.018255 -1.386600 -2.083275 0.129545 -1.011282 -0.718636 0.676782 -2.068355 -0.452978 -1.299651 0.052010 -1.821849 -0.422139 0.674212 2.518527 0.536269 -0.971482 1.033072 -0.659137 0.954553 -0.043789 0.197924 0.230218 1.192624 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -1.932862 1.425909 0.295405 -1.220960 3.963642 -0.553020 0.218298 2.489420 -1.919611 3.098540 -1.277386 0.932402 -0.642838 -2.622465 0.171589 -0.953723 -0.081740 1.289567 -0.150462 1.507522 1.312663 -1.138985 0.328994 -0.273617 -1.291505 -3.033536 -0.014094 0.963424 2.460801 -1.082345 0.143430 0.194812 3.412459 -0.746381 2.876957 2.298358 1.583202 2.021692 1.058307 -1.400400 -0.625380 1.332745 -1.727438 -1.888756 0.233828 -0.862350 -2.352858 -0.715089 1.371838 -1.324805 -0.322585 2.417630 -0.615983 0.127674 -1.602793 2.322913 0.959016 -0.880570 3.331229 0.294042 -1.365541 -1.466026 -2.496086 3.236841 -1.321295 0.066455 -1.131319 -2.052328 0.577152 0.295792 -0.401945 -1.627874 -0.490752 2.486232 1.170039 -2.624443 0.576086 -1.068543 -1.900328 -2.585337 -1.984937 0.905612 -0.348387 2.158517 0.271451 1.045592 -0.132412 1.489974 -0.754288 -3.853566 0.663683 2.989508 -1.818971 -0.380072 -2.055490 2.068782 0.635650 0.312180 -1.210062 -1.109608 0.861849 -0.431596 1.368863 -2.846742 1.214488 -2.458054 -0.212481 -0.606953 0.925749 1.778975 0.375026 0.909724 1.879098 2.888618 -1.652074 0.002535 -2.884495 1.068310 -0.588093 0.634341 -0.881824 1.357791 0.987064 1.178717 2.932545 -3.964985 1.217083 -0.119444 -0.279768 -3.166888 0.165889 -1.094066 -0.745501 -1.091235 1.763890 -0.490310 -0.404951 -1.346384 1.092669 0.639561 -1.928335 -1.505940 0.691971 2.484655 -3.149379 0.796319 -0.681173 -0.778256 -0.386369 1.579254 2.151875 2.419280 3.334639 2.457336 -0.024461 2.480823 -3.194372 0.037184 2.787831 1.672349 -2.478637 2.983635 -2.624950 -1.035453 0.692884 2.117516 2.000810 1.220816 -2.476894 -2.195498 1.920736 0.927684 3.239754 0.393248 0.312374 -1.052362 1.965400 -0.541758 -1.502101 3.349049 1.280370 -2.784386 1.603489 1.120038 -1.392734 -0.930254 1.749296 -2.682075 -0.484343 -1.119557 0.211097 1.929089 -1.489503 -0.663544 0.439074 -2.368204 2.909976 -0.622894 -0.358146 1.285725 -2.306400 -1.678899 2.467978 0.246913 -0.677869 -2.072056 -2.190991 -2.113036 -2.506810 0.713142 0.495528 -0.851131 -1.406263 -2.788814 -0.749813 1.912611 0.704583 1.759695 -4.396212 -0.607033 1.619884 1.060342 1.321120 -1.741892 -0.337671 -0.193825 -0.087478 0.832248 -1.090177 2.306050 3.336277 -1.818528 1.899293 -0.759354 -1.448515 0.989099 1.322629 -3.456674 3.357926 0.532591 1.994984 0.359508 0.885259 -1.527239 0.397063 0.249896 -0.147211 -0.045848 0.501699 -0.963403 -1.085170 0.172536 -2.091095 -1.688627 -0.609012 1.016011 -0.241433 0.855476 -0.334910 -1.313665 -1.171861 -2.199001 0.581274 1.898925 -0.619864 -0.962493 2.174246 0.248182 -0.104665 0.120691 0.227937 1.198152 1.588351 -3.160714 0.026602 -0.402102 0.720798 -2.350521 -3.299484 0.220853 -1.537744 -1.780713 1.207396 -3.323809 -0.365545 -1.790797 0.184475 -3.294185 -0.800382 0.848908 3.627770 0.630300 -1.224440 1.565087 -1.023792 1.657289 -0.037097 0.507122 0.396811 1.768009 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -3.492548 -0.023964 0.720885 -4.199301 8.114898 -2.592853 -0.932943 3.920716 0.466318 5.134708 -2.857349 -1.056717 -2.139764 -7.484137 1.295816 -2.842918 0.383179 3.237139 -0.603714 3.745967 3.327714 -0.901093 1.285123 -1.082377 -1.781020 -4.227781 -1.427485 2.558339 2.369117 -2.569554 1.683031 1.100449 7.261760 0.236169 6.228623 5.112711 2.663378 5.861365 1.606860 -0.220972 -0.003507 3.046770 -2.904376 -5.833959 1.479522 -1.046699 -4.887773 -3.565337 2.872688 -2.924699 1.281479 5.585779 -0.780557 -0.548179 -5.430265 1.806818 0.792774 0.659210 5.616027 1.761729 -3.150428 -0.312685 -5.770222 3.393910 -3.625068 1.575283 -0.541911 -3.243963 0.560448 1.595953 1.362989 -3.849673 -3.518236 2.903672 2.770800 -4.186338 1.960901 -2.018033 -0.779089 -3.421565 -3.762859 2.493586 -1.641343 4.794365 -0.000374 2.108233 -0.593008 2.142529 -0.648491 -6.216828 0.674088 4.515292 -3.023354 -1.426375 -3.599764 5.094773 0.802724 -0.696463 -1.861304 -1.697290 1.730021 -1.522504 3.493037 0.516886 -0.412542 -4.473573 1.420125 0.198215 1.113796 2.762281 2.061956 1.282921 2.615593 3.866410 -2.681600 2.064472 -6.679164 2.430325 -2.797362 1.772247 -2.658833 3.264752 2.661703 2.024242 3.898578 -6.548963 3.546640 1.037965 -0.679266 -3.820809 1.625991 -0.819763 -2.193588 -1.492330 4.360197 -0.690691 -1.320556 -0.885581 2.065722 1.485913 -2.021895 -1.304773 0.183872 3.166328 -2.375303 1.777385 -1.487285 -3.030408 -0.020191 1.838030 3.400552 4.517611 7.556782 4.785987 -1.673634 0.485342 -6.655271 0.806994 6.643007 -0.589923 -4.122334 5.424295 -2.874450 -1.158096 0.630645 5.054189 4.521182 1.079814 -2.647394 -2.206460 1.568037 1.220795 6.056207 1.171891 1.254721 -3.706592 1.338763 -0.658610 0.135658 7.044970 1.942602 -5.482885 1.115036 3.893369 -3.210314 -3.369661 2.336893 -2.344720 0.016341 -3.034492 2.854645 3.843129 -3.696258 -2.860181 -0.370766 -4.377365 3.788979 -2.062398 -1.462498 2.151498 -4.960008 -3.299602 6.913080 0.343671 -1.172039 -3.399511 -5.600292 0.067818 -6.055359 2.535234 1.229163 -0.553889 -0.683966 -4.026828 -1.020693 4.751591 0.414662 2.628335 -4.862570 -0.565434 3.321635 0.491995 2.035276 -3.639142 -0.772435 0.596851 0.094316 1.658131 -1.091913 1.450205 6.658325 -4.390877 2.621108 1.983265 0.022024 1.601066 3.920826 -6.593047 7.941600 0.437365 4.773322 -0.188047 1.779215 -1.668624 0.582670 0.640570 -1.159390 0.225508 1.029074 -2.651240 -2.282036 2.222654 -2.573094 -3.566512 -0.187878 3.798849 -0.982654 2.183630 -0.133573 -2.532416 -1.693064 -2.534241 3.234344 4.438129 -0.939503 -2.995023 3.460655 3.779689 -1.493324 -0.996172 0.458821 2.432938 5.123139 -6.799248 2.004595 -0.627834 2.452531 -3.483557 -5.222458 2.564719 -2.766212 -1.035069 1.550962 -5.614336 -2.798601 -4.112288 2.331986 -3.779162 0.049694 0.466032 5.800248 3.535201 -1.519475 2.044621 -1.585093 1.758280 -0.669444 -1.122949 2.731231 4.550606 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -10.443002 6.302959 2.618279 -10.603307 21.459993 -4.792340 0.620457 6.559084 -2.520369 15.385288 -8.119684 -4.581867 -5.235599 -19.283064 1.594522 -8.787196 -1.179897 10.192643 -1.776362 11.098448 8.495997 -8.081862 3.781646 -2.653262 -5.909687 -12.616443 -3.454036 6.653275 10.443723 -8.401399 3.988880 0.483704 18.966315 -2.261970 16.047638 12.963018 4.379832 14.908877 3.296119 -5.689536 -1.929868 8.227811 -8.757149 -14.509697 3.537908 -3.587854 -13.920176 -9.986377 8.059821 -8.690888 -0.437305 14.958554 -3.362220 -2.452212 -12.102549 9.738156 7.783625 2.297778 17.576867 2.931544 -3.563480 0.601399 -17.016923 8.900489 -9.238360 2.815822 -4.273386 -12.472969 1.193534 2.714350 0.109702 -8.215971 -8.100691 11.571948 9.799200 -12.991115 3.113541 -7.382688 -13.328895 -13.300876 -12.408028 5.224546 -3.479838 13.334104 0.867743 6.274729 3.105081 7.814174 -3.220313 -19.867026 2.653539 14.803453 -6.090072 -3.905574 -5.818530 13.482207 3.185926 -1.161254 -9.822747 -5.051311 4.529877 -3.974265 9.088007 -4.696733 2.777552 -13.229781 1.423028 1.629468 3.485165 7.165144 8.601811 3.637139 8.485526 13.921153 -13.250302 2.753011 -16.875959 4.440804 -6.160909 4.494013 -4.087142 8.916116 3.869955 5.242215 13.549570 -21.153786 9.276309 1.434018 -3.020646 -14.281498 3.044533 -3.875702 -4.223572 -5.623736 9.957429 -2.871675 -2.613763 -4.386210 3.823963 3.140944 -5.941200 -1.519833 2.405415 13.151384 -11.218303 5.707315 -3.950745 -7.946614 -0.171122 6.447013 11.337358 12.131986 20.400458 14.392914 -3.112557 4.338315 -16.940201 1.573560 17.359543 0.781945 -12.495673 15.667768 -8.031307 -4.089476 2.777271 13.029628 12.034754 4.090667 -10.578411 -10.239874 3.852569 3.015773 16.679099 2.131305 1.193772 -8.916973 10.762843 1.577946 -5.433854 20.720048 7.073215 -12.803644 5.020385 8.538394 -14.143819 -9.424312 8.188194 -9.652489 0.074430 -6.327367 4.335920 8.925446 -8.261657 -8.193984 -1.145340 -13.335714 14.093562 -4.536699 -4.360523 6.747009 -12.873019 -12.958734 16.437567 0.618167 -5.313046 -10.893921 -13.871777 -5.340348 -14.724015 6.311434 2.227137 -4.532280 -6.675567 -12.835429 -2.021002 12.223068 2.306149 7.537514 -15.799326 -3.366890 8.753410 5.633610 8.573501 -6.863120 -1.894414 2.217632 -0.728574 3.038847 -0.744533 8.496144 19.565971 -11.474001 5.834708 0.359250 -7.167460 7.098567 10.261854 -18.267936 20.673789 1.334002 12.049577 -0.324818 5.092981 -5.134524 2.863181 4.278807 -3.156691 0.741573 3.570567 -5.859070 -6.581320 2.442544 -10.001147 -10.779522 -1.197133 7.715018 -0.859635 5.797168 -0.202546 -8.493153 -3.642813 -4.879105 3.756206 11.418483 0.317946 -6.120596 9.338565 5.674851 1.839673 -2.089130 1.903647 5.772524 11.365884 -18.114659 4.863903 -3.569129 4.441153 -10.042749 -15.095073 4.562759 -11.160419 -4.970807 8.207894 -16.531940 -2.528696 -11.250161 3.848213 -10.410719 -0.339641 3.498825 18.271918 8.169794 -6.761462 8.012624 -5.637092 8.996898 -0.854868 -2.617082 4.239794 12.582548 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -2.094498 1.632523 1.259435 -1.357823 4.029735 -0.303400 0.176738 2.595303 -2.103425 2.675594 -1.574544 0.418957 -0.760759 -2.604286 0.198472 -1.264471 -0.350237 1.445622 -0.327539 1.598845 1.625600 -0.943558 0.178284 -0.475207 -1.162811 -1.427749 -0.582761 0.838633 2.419948 -1.257373 0.155458 0.103543 3.217963 -0.784904 3.355488 2.484085 1.447653 2.320569 0.434635 -1.524584 -0.780239 1.741269 -1.937815 -2.613224 0.518781 -1.326246 -1.906723 -0.800051 1.420222 -1.272087 -0.340552 2.438126 -0.652477 0.124006 -1.287926 2.145252 0.664660 -0.080605 3.463155 0.532878 -1.852655 -0.841305 -2.958517 2.567910 -1.162887 1.393961 -1.386751 -2.499757 0.277219 -0.012502 -0.365117 -2.237735 -0.825002 2.625552 0.786918 -2.330383 0.818285 -1.269696 -1.649730 -2.091898 -2.234882 0.775378 -0.453577 2.069656 -0.070013 0.781934 -0.250633 1.485481 -0.751298 -3.991987 0.459654 3.086697 -2.005756 0.068492 -1.627894 1.457929 0.073324 0.719305 -1.502493 -0.726426 1.097178 0.073248 1.375385 -2.692397 1.620230 -2.521948 0.228961 -0.262289 0.768333 1.573077 0.910512 1.222253 2.198148 3.008172 -1.512344 0.350221 -2.942813 0.884954 -1.566832 0.888024 -0.692022 1.662828 0.807025 0.734852 2.897792 -3.702323 1.245118 -0.065267 -0.560471 -3.245854 0.611068 -1.612704 -1.190542 -1.155626 1.824945 -0.114616 -0.743430 -1.513441 0.715458 0.416500 -1.998170 -1.616286 0.547092 1.878798 -2.818696 0.525096 -0.840922 -0.979232 -0.392845 1.771986 2.280182 2.474648 3.614417 2.662807 -0.200605 1.402271 -3.103532 0.080244 2.687583 0.588134 -2.778752 2.748200 -2.482060 -0.850361 0.963009 1.885988 2.072186 2.059270 -2.274427 -2.205362 1.681608 0.765375 3.270272 0.791152 0.760705 -1.016789 1.928320 -0.968493 -1.909959 3.615556 0.853532 -3.332078 1.506529 0.929993 -0.791131 -1.042161 1.723324 -2.660407 -0.301283 -1.053708 -0.057694 1.819131 -1.983947 -1.259630 0.696956 -2.714663 3.324199 -0.597693 -0.284876 1.025842 -2.769003 -1.952657 2.975135 0.780455 -1.150757 -2.095694 -1.914805 -1.715352 -2.461638 1.007426 0.859667 -0.694259 -2.033373 -2.738837 -0.355528 1.770180 0.491446 1.749625 -3.258915 -0.959631 1.539612 0.536278 1.927125 -1.805736 -0.641758 -0.754039 -0.419695 1.421864 -1.012557 2.109325 3.891834 -1.893352 2.251074 0.439004 -1.653888 0.529643 1.725275 -3.320035 3.477424 0.488492 2.248096 0.012517 1.137095 -1.810047 0.211164 0.480808 0.054008 0.255884 0.866836 -0.662095 -0.888848 -0.366392 -2.565530 -1.207773 -0.342116 0.826316 -0.292293 0.896465 -0.160730 -1.589085 -1.303282 -1.839123 0.234545 2.320649 -1.123777 -1.659173 1.801444 -0.237061 -0.336101 0.095610 0.417805 0.984780 1.884769 -3.223663 -0.010974 -0.341042 0.291946 -2.718824 -2.499093 -0.357781 -1.669214 -1.171303 1.148231 -2.608924 -0.128668 -1.919643 0.128731 -2.781109 -1.078273 0.621336 3.701191 1.298352 -1.246492 1.674205 -0.884785 2.304069 0.440559 0.089161 0.165595 1.971325 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -2.363108 2.781626 1.519726 -1.949493 5.287172 -0.087535 0.796049 3.322023 -3.216286 4.567103 -1.854180 1.592255 -0.514765 -3.486536 -0.131034 -1.386968 -0.767429 1.489613 0.102075 2.439708 1.640529 -2.034183 0.498348 -0.354491 -2.157077 -3.842744 -0.009483 1.309121 3.226569 -1.497564 1.087042 -0.280641 4.055962 -0.949208 4.036894 3.185067 1.339235 2.773195 1.586086 -1.636248 -1.171561 1.620964 -2.402032 -2.901374 0.204419 -1.235955 -2.848463 -1.693036 1.297633 -2.366966 -0.334839 3.245253 -0.973993 -0.034764 -2.136884 3.140199 1.268454 -1.451114 4.681365 0.215200 -1.924118 -1.678797 -3.681566 3.841905 -1.362067 0.109069 -1.199406 -2.897435 1.371926 0.202157 -0.818863 -1.804329 -0.308365 3.803503 1.358580 -3.772272 0.181846 -2.190111 -4.423048 -3.136141 -2.034383 1.316573 0.251135 2.602496 0.817952 1.432292 -0.049723 2.421490 -1.410962 -5.659628 0.954339 4.245708 -2.254699 -0.755788 -2.308067 3.289084 0.627432 0.585452 -1.793907 -0.680208 1.272721 -0.067206 1.772209 -4.515688 1.134555 -4.199223 -0.038839 -0.408331 0.879252 1.627860 1.055739 1.284575 2.956179 4.139323 -2.887023 1.131697 -3.812683 1.268354 -0.449510 0.850310 -1.313968 1.776653 0.535121 1.519650 4.228515 -5.240842 1.461376 -0.187170 -0.706867 -4.794328 0.046100 -1.781431 -0.816258 -1.297738 1.876366 -0.462188 -0.200830 -2.024550 0.690115 0.640104 -2.425495 -2.863636 1.606543 4.304945 -4.254156 1.152491 -0.755579 -0.647337 -0.807070 2.510340 3.412416 3.157446 4.798368 3.221960 0.618851 2.646245 -4.049375 -0.423137 3.701210 2.524556 -3.423202 4.272334 -3.532000 -1.619675 0.623957 2.671098 2.798152 1.506203 -4.487153 -3.876753 3.188405 1.035112 4.480958 0.631890 0.579816 -1.140059 3.573311 -0.578247 -2.428073 4.091275 2.013508 -3.808308 1.978752 1.255888 -2.023632 -1.150861 2.910087 -3.649728 -0.559982 -0.731060 -0.482233 2.152506 -1.661749 -1.137647 0.174114 -3.433197 4.565348 -0.678022 0.511407 1.430270 -2.637768 -2.621776 2.977256 0.462891 -1.347374 -2.666564 -2.504719 -3.498847 -3.240737 0.909583 1.138563 -1.421714 -2.301269 -3.914931 -0.543164 1.834391 0.811702 2.287632 -4.597400 -1.534404 2.293451 1.211104 1.936849 -2.460911 -0.372768 -0.583590 -0.083796 1.441858 -1.019271 3.997814 5.026235 -1.799678 3.028723 -0.260416 -1.456235 1.356533 1.969302 -4.758689 4.732833 0.270834 2.673901 0.438526 1.143688 -1.886663 0.685918 0.466888 -0.328991 0.512553 0.602407 -1.139482 -1.438728 -0.355888 -3.513951 -1.800288 -0.751377 1.107426 -0.634301 1.162736 0.056844 -1.991969 -1.969476 -3.703356 0.453587 2.483329 -1.136893 -1.382308 2.888329 0.081624 0.408360 0.231009 0.273749 1.852133 1.669131 -4.286895 0.034464 -0.785807 0.587615 -3.592482 -4.023541 0.484469 -2.599044 -2.747637 1.136880 -4.170737 0.030877 -2.625038 -0.173567 -5.119294 -1.141779 0.990626 5.401946 0.703044 -1.789713 1.746939 -1.679806 2.618629 0.344700 0.914123 0.455158 2.482291 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -1.733381 1.305714 0.523139 -1.227371 3.485808 -0.470058 0.318921 1.930009 -1.179842 2.508815 -1.368702 0.219292 -0.668244 -2.489780 0.151659 -0.823016 -0.243028 1.388878 -0.288347 1.147936 1.317608 -0.972924 0.339257 -0.436472 -1.006733 -2.032310 -0.244863 0.762692 1.708124 -0.774659 0.253967 0.144349 2.743126 -0.401215 2.470462 1.937740 1.035363 2.175130 0.590954 -0.563876 -0.432698 1.292982 -1.392518 -2.279237 0.602509 -0.951870 -1.840833 -1.165289 1.139139 -1.643133 0.415076 2.059354 -0.422265 -0.115465 -1.365371 1.631685 1.067810 -0.209353 2.821728 0.491112 -1.266683 -0.714988 -2.385284 2.145295 -1.153030 0.620475 -0.483099 -2.150990 0.170281 0.355098 -0.034966 -1.430060 -0.818854 1.878393 0.935052 -2.010895 0.513634 -0.995405 -1.819034 -1.853433 -1.782354 0.643787 -0.321006 1.933051 0.042749 0.688541 -0.144255 1.033122 -0.492776 -3.145554 0.217163 2.640319 -1.295894 0.058837 -1.530431 1.570147 0.276273 0.220823 -1.268202 -0.691589 0.764202 0.024853 1.158906 -1.784512 0.297993 -2.181709 0.466456 -0.046541 0.435269 1.097539 0.869800 0.649162 1.305566 2.317127 -1.581682 0.661552 -2.654925 0.896277 -0.484981 0.713358 -0.642741 1.062152 0.604442 0.571842 2.246472 -3.223679 1.340587 0.032182 -0.493435 -2.620179 0.392042 -0.916103 -0.824485 -0.862961 1.538393 -0.234240 -0.505029 -0.966902 0.591881 0.322755 -1.659115 -1.340082 0.374642 2.143631 -2.341805 0.591727 -0.694722 -0.917674 -0.395216 1.261832 1.753420 1.871942 2.935128 2.152009 -0.052072 1.170392 -2.677404 0.175278 2.615122 1.135234 -2.189747 2.248924 -1.800171 -0.525793 0.729796 1.570026 1.621411 1.180418 -1.881650 -1.610312 1.274009 0.485702 2.767807 0.795376 0.594920 -1.305270 1.673347 -0.361902 -1.136811 3.065769 1.342231 -2.569819 1.114305 1.023556 -1.405623 -0.898203 1.375650 -1.849483 -0.332624 -0.862996 0.269854 1.479715 -1.490292 -1.143292 0.212959 -2.174152 2.624405 -0.511819 0.027719 0.949815 -2.170267 -1.420862 2.395847 0.353888 -0.829706 -1.563825 -1.741916 -1.776867 -2.193756 0.774340 0.705531 -0.799382 -1.494772 -2.237112 -0.356619 1.797694 0.281201 1.214691 -2.604024 -0.658170 1.357091 0.530893 1.337693 -1.703590 -0.439452 -0.291866 -0.019719 1.006054 -0.474427 1.711271 3.093934 -1.576638 1.655592 0.367477 -0.795425 0.699832 1.495383 -2.600076 2.861075 0.132033 1.784685 0.049819 0.933384 -1.136376 0.302331 0.325685 -0.015336 0.059386 0.771982 -0.875050 -0.800028 0.143235 -2.142803 -1.227267 -0.088398 0.949456 0.114641 0.670377 -0.080209 -1.237894 -0.873378 -1.648057 0.275380 1.806391 -0.502754 -1.234385 1.403545 0.163450 -0.266923 -0.204714 0.396577 0.959152 1.620881 -2.605293 0.318592 -0.311637 0.241702 -2.183812 -2.411771 0.183067 -1.594093 -1.471520 1.110615 -2.692772 -0.270744 -1.578980 0.446325 -2.741512 -0.529938 0.320111 3.004767 0.856941 -0.702227 1.472402 -0.650664 1.666707 0.108021 0.067908 0.503911 1.877860 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -5.328860 6.427212 3.923166 -4.724012 10.900144 -0.064391 1.806236 4.635686 -5.709055 9.067979 -4.438725 1.383003 -1.194812 -8.078163 -0.100592 -5.118617 -2.721595 3.102212 0.262677 5.619915 3.423304 -4.947798 1.041923 -0.905963 -4.255476 -7.843960 -0.930702 2.895063 7.454575 -3.513824 3.296384 -1.021534 8.039731 -2.064079 8.324965 6.525811 2.027375 5.849296 1.767961 -3.052357 -2.419216 3.457232 -5.174392 -5.916549 0.299907 -2.388018 -6.699461 -3.775122 3.109745 -4.773720 -1.818489 7.081601 -2.005420 -0.655251 -4.645635 6.714812 3.160683 -1.479498 9.501989 0.541587 -3.025231 -2.566379 -8.951573 6.710151 -2.713978 0.909478 -2.586510 -5.786944 2.674514 0.319409 -2.707507 -3.407258 -1.077938 8.000234 4.115674 -7.655214 0.427105 -5.011220 -11.668944 -6.340405 -3.921132 2.895888 0.996629 6.204730 1.311228 3.174464 1.609823 5.075737 -3.163917 -11.591336 1.497428 9.823382 -3.784661 -2.528724 -4.378465 7.513167 1.498743 1.159880 -4.106156 -1.081179 2.725736 0.100163 3.799668 -9.212522 1.379611 -9.594718 0.018368 -0.409239 1.045424 3.391851 2.454199 2.573219 5.524963 9.072249 -7.519663 2.357558 -8.021225 2.043723 -1.729240 2.421447 -2.487013 3.794606 0.175557 3.535960 8.265626 -11.143397 3.667611 -0.378067 -1.525806 -10.378318 0.025058 -3.592668 -1.964699 -2.389577 3.346744 -0.692803 -0.985878 -3.794847 1.133039 1.533871 -4.025159 -4.855599 3.838995 8.920481 -7.805734 2.435789 -1.363286 -1.466178 -1.883469 5.108939 7.454092 6.265236 10.418312 6.816026 1.429427 5.262827 -8.162889 -0.549212 7.902173 3.791916 -6.922974 8.765584 -6.752167 -3.263040 1.031614 5.613158 5.815263 3.901647 -9.429707 -7.961710 6.159980 1.640929 9.053481 1.814998 0.492179 -2.617200 8.535790 -1.157215 -5.135098 8.545142 4.695575 -7.469486 3.984794 2.623060 -5.979292 -3.156090 6.322366 -7.020853 -0.412888 -1.395567 -0.776545 4.105376 -2.944034 -3.282920 -0.466639 -7.108599 9.552824 -1.841144 0.702493 2.937905 -5.127089 -7.768095 6.228070 0.655435 -3.318837 -5.696801 -5.016500 -6.936402 -6.190222 2.281506 2.715090 -3.444923 -5.315049 -7.748735 -0.585083 3.972267 1.119834 5.144223 -8.670918 -3.517790 4.379831 3.427495 4.898027 -3.667276 -0.604573 -1.413249 0.185235 2.692491 -1.254461 8.297370 11.024532 -4.098532 6.612266 -1.888432 -4.273463 2.937515 4.572934 -9.637192 10.013337 1.083654 6.084795 0.213321 2.408916 -3.292452 1.212133 2.076227 -2.217276 1.641438 1.497741 -1.911918 -2.976165 -0.804714 -7.282511 -3.784354 -1.078771 2.528931 -1.167961 2.559876 1.119955 -4.221409 -3.641957 -6.177617 0.503904 5.272707 -1.479927 -2.860484 5.621685 0.421023 1.466590 0.121991 0.489420 3.731054 3.817518 -8.805809 0.527463 -2.039706 0.870580 -7.166760 -8.356331 1.029252 -6.184632 -5.336790 2.603472 -8.419804 0.502336 -5.756432 -0.317065 -9.442037 -2.865158 2.642263 10.735847 2.642848 -3.663144 3.622631 -3.588624 5.938807 0.497690 0.911574 1.944811 5.380544 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -6.211651 0.976691 -3.857468 -8.037039 16.563009 -3.320255 -2.074133 9.278924 0.797782 8.951187 -5.060344 -0.989818 -2.096229 -12.271106 1.167464 -0.615142 1.178696 6.442390 -4.506361 4.343007 4.969719 -1.461931 4.553491 -1.542685 -4.463292 -5.722029 -0.774989 4.993427 3.339951 -4.032041 0.016179 0.595401 11.758738 -1.888051 8.387445 4.993947 6.499671 9.236099 3.254234 -3.095328 2.867072 2.959203 -3.542780 -9.806337 3.119994 -3.086756 -11.025592 -5.071435 5.784629 -9.189354 2.318879 8.954776 0.261250 -2.711164 -6.667490 5.982511 4.344655 -2.127980 10.466340 2.682426 -6.948676 -3.992191 -8.382096 6.774477 -6.412097 3.447846 -2.099222 -8.440144 -4.448783 6.863260 0.373280 -6.823391 -6.305080 3.387443 5.977539 -7.018367 3.875807 -2.759350 4.190922 -7.903003 -5.442750 4.286943 -3.835421 6.961424 0.386387 4.739306 1.235095 2.593987 -1.677594 -11.044714 1.619116 7.554616 -5.376219 -0.097107 -5.692084 5.497574 -1.317442 -3.147635 -7.220196 -5.683442 2.511832 -1.157859 4.799181 -3.162366 2.968909 -6.880457 2.450381 3.173512 3.330531 4.765523 4.001859 1.064033 2.484534 7.371392 -4.874820 2.684120 -12.971001 2.735929 -3.791954 3.210783 -4.963388 3.437083 7.807985 4.491382 6.411808 -12.932886 9.600834 2.133280 -2.999486 -7.286288 3.333092 0.693173 -2.410691 -1.366198 7.183079 -4.113776 -1.201201 -0.834285 4.993682 0.980803 -7.369223 -1.044953 -1.037183 5.351741 -8.635450 4.048974 -1.507315 -4.829497 0.881373 3.577320 6.589553 4.438586 14.052296 6.439899 -3.516689 5.083182 -10.473415 3.795433 12.269709 2.092460 -7.814855 9.472921 -6.900890 -0.669252 1.207903 7.153532 5.516490 3.366549 -4.103681 -2.885501 3.746167 2.755206 10.955675 -0.746184 3.101794 -10.329803 1.818003 -1.304872 3.382023 15.009415 5.516330 -10.859683 3.162760 7.846680 -4.986642 -3.763651 3.612626 -6.142240 -2.871966 -3.788980 5.047249 6.684310 -6.813365 -7.236508 0.008987 -7.318735 7.276730 -2.861430 -6.183964 3.232085 -9.584939 0.533674 11.740504 1.250831 -2.484635 -3.549044 -9.317593 -1.824985 -11.248123 2.621498 4.137415 -2.200080 -1.165049 -6.133065 -3.556583 8.943197 0.643427 2.597715 -14.360784 1.602262 6.667560 1.237299 3.952456 -5.348664 -0.515218 1.543455 -1.326452 1.612443 -3.831458 2.089674 8.127048 -8.055751 5.901593 0.329123 -2.616775 3.599232 5.906002 -8.510847 13.984581 2.128406 10.248769 0.384776 4.308847 -3.157905 3.621732 -1.423037 -2.525355 -1.621445 3.702154 -7.298814 -5.048835 3.879798 -2.661504 -9.518823 0.714201 7.883812 -0.459168 2.884669 -2.636371 -2.190985 -3.043147 -3.767093 4.518919 5.966160 -3.273857 -6.046016 4.116883 7.590556 -2.540476 -1.147575 2.491582 5.325342 9.947296 -10.734986 5.074198 -0.052983 4.091802 -9.170763 -8.252989 3.850353 -3.982705 -0.186858 2.925785 -11.949958 -6.364611 -5.419959 6.462857 -5.801886 2.317241 2.062508 11.348588 4.551246 -3.687113 6.541365 -1.768686 2.741008 -0.555182 -0.478136 4.012498 6.489952 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.819132 4.078860 1.979545 -4.384076 13.773079 -1.855632 0.367064 6.331716 -5.059161 10.022547 -3.821063 -1.729687 -1.754417 -9.689858 0.914484 -4.058561 -1.189992 4.017842 -1.184677 4.878332 3.654252 -2.785254 1.285077 -0.546623 -3.558325 -6.458743 -1.703603 3.191614 9.156025 -6.236580 0.903775 -0.175166 9.827036 -2.182205 9.123067 6.017617 3.343882 5.386450 1.678313 -4.633184 -1.284346 3.581519 -5.111818 -5.369876 0.095684 -2.024286 -7.768045 -3.344339 3.723036 -3.081657 -1.105568 7.224866 -1.466854 0.224388 -4.047739 7.918790 1.791766 -0.211906 10.290757 1.332047 -3.147188 -2.034813 -10.877616 8.426852 -3.146099 2.724756 -4.994312 -6.509486 -0.307812 0.645922 -1.613148 -6.197380 -1.519183 9.440473 4.697711 -7.270052 1.856796 -3.620531 -7.327718 -8.691690 -6.698935 3.529156 -0.992889 6.333772 0.986394 3.228858 1.765530 5.842796 -2.763507 -13.478001 2.122995 9.419415 -4.891651 -3.277234 -5.164946 4.952693 0.179721 1.568135 -4.500266 -3.546764 2.680983 -1.029141 4.001094 -9.064202 6.461034 -8.565870 -0.314121 0.280582 2.561724 3.993620 5.597504 1.520885 5.690289 10.831829 -6.830094 -0.761815 -8.573128 2.305365 -4.088968 2.717558 -3.083490 5.382369 3.023187 4.289600 8.940807 -14.319046 3.650532 0.170952 -1.677307 -10.387789 0.658913 -3.423854 -2.600051 -2.467747 4.414172 -1.533275 -1.176107 -3.203551 2.889072 2.032131 -4.781713 -1.584870 3.248791 7.934421 -9.471338 2.267150 -1.442202 -2.505785 -1.630628 5.416010 8.126997 6.742852 11.864023 6.548742 -1.186612 2.995585 -9.565175 0.625793 8.306146 -0.128413 -6.968997 10.693645 -6.998858 -2.365338 1.030405 7.051265 5.864395 3.353503 -7.176298 -6.442913 5.992076 3.015609 9.638452 0.050848 0.615337 -2.057898 5.824265 -2.737560 -6.136281 11.175501 4.944021 -7.322990 3.289939 3.075651 -4.997938 -3.470732 6.465523 -8.204567 -0.126480 -3.324704 0.592124 4.901854 -3.627823 -2.855282 1.179632 -6.427948 10.136846 -2.001296 -2.807342 4.164651 -6.477332 -6.459754 8.404242 0.364778 -2.536889 -6.045225 -7.461776 -6.222434 -6.314883 2.841748 1.602856 -1.900177 -3.413739 -7.463139 -1.549295 6.639222 1.852088 5.379535 -11.391183 -1.465484 4.019511 2.020928 6.553641 -2.282547 -0.513133 -0.829469 -0.999554 1.605502 -2.464456 6.422445 12.182859 -5.142359 6.088249 -1.358971 -4.790362 1.729126 4.182551 -11.628639 10.110658 1.848957 6.196798 0.012525 2.763924 -3.590606 1.530192 1.545438 -2.354306 0.776963 1.519620 -2.015995 -3.234130 -1.200067 -7.287538 -6.342853 -1.676363 2.812537 -2.089734 2.596444 -1.458324 -4.549576 -2.418898 -5.407496 2.107977 5.510108 -1.262310 -2.932303 5.642728 1.557334 0.701079 1.744790 0.687451 2.776388 5.435416 -8.955646 -0.192433 -1.248034 4.031364 -6.361008 -8.923333 0.179194 -4.941431 -3.018610 2.964352 -8.626271 -1.852140 -5.539373 0.463536 -8.683237 -2.153988 3.151909 12.061684 3.685464 -4.601949 3.501139 -2.730563 4.736513 0.177549 -0.332240 2.559047 4.607910 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -1.426141 0.506866 -0.662791 -0.911296 3.635512 -1.554766 0.344132 1.276668 -0.956048 2.522725 -0.558744 -0.626744 -0.608090 -3.486540 0.533964 -0.384805 0.200709 1.605310 0.318895 1.401810 1.036795 -1.501613 0.099036 0.143446 -0.776215 -2.181625 -0.273851 1.172427 2.787545 -2.873020 -0.331192 0.572431 3.479747 -0.658227 2.959666 2.217499 1.139334 1.432866 1.308157 -2.692556 -0.687805 1.140611 -1.451522 -1.453724 -0.102434 0.095980 -2.148072 -0.729059 1.236081 0.332161 -0.135227 2.381968 -0.846394 0.347134 -2.034359 1.767154 0.729798 -0.143015 2.755622 0.285060 -0.055309 -0.419613 -2.386769 3.047312 -1.227878 -0.714330 -1.346879 -1.555882 0.805204 0.029709 -0.636418 -1.795028 -0.720773 2.538478 1.690049 -2.269269 0.342009 -0.842610 -1.464476 -3.096289 -2.826709 0.927435 -0.856506 2.265230 0.435108 0.977852 0.455675 1.345964 -0.801604 -3.520732 1.000531 2.115773 -1.576893 -0.890363 -0.691217 2.453509 0.653965 0.221848 -1.264260 -1.719124 0.540003 -1.427493 1.421164 -1.219022 2.370797 -1.707882 -0.769687 -1.114438 1.033210 1.806390 2.317437 0.211296 1.626166 2.528390 -1.708306 -1.484456 -2.606063 0.966351 -0.679099 0.533982 -0.632656 1.542219 0.883689 0.784889 2.511210 -4.164534 0.388140 -0.061609 0.343601 -2.529207 -0.217454 -0.953779 -0.639187 -1.097696 1.668275 -0.566771 -0.302546 -0.873556 0.949651 1.313392 -1.618255 0.172865 0.640210 2.823811 -2.887276 0.847077 -0.562857 -1.092634 -0.338323 1.095096 2.178347 2.608266 2.990336 2.420612 -0.608490 1.798935 -3.309906 0.096597 2.327997 -0.297641 -1.861933 2.973588 -2.484305 -1.008671 0.312634 2.998032 2.164880 -0.636534 -1.600413 -1.022303 2.471393 1.204587 2.615200 -1.535312 -0.150217 -0.357122 1.459092 1.096956 -1.881222 3.540222 0.225266 -2.346136 1.943964 1.070427 -1.301831 -0.813589 1.772091 -2.619068 0.042240 -1.658473 0.862518 1.744315 -1.235440 0.263580 0.274856 -1.798729 2.104163 -0.745251 -1.233500 1.737421 -1.688847 -1.594146 3.025969 -0.073198 -0.125861 -2.216600 -2.816479 -1.004676 -1.841966 0.794074 -0.402125 -0.599822 -0.606937 -2.268159 -0.710835 2.872711 1.010074 1.973187 -3.919346 0.201863 1.269986 1.823407 1.119773 -0.486275 -0.247879 0.926788 0.027716 -0.231812 -0.833150 1.647078 2.959076 -1.910609 0.746084 -0.651895 -1.174164 1.416633 0.715493 -3.532173 3.077155 0.848627 1.962066 0.207272 0.542016 -1.351527 0.263243 0.663332 0.131732 -0.241301 -0.265775 -0.487089 -0.942075 0.288358 -1.385379 -2.648736 -0.972883 1.000402 -0.205561 1.003687 -1.018108 -0.830305 -0.579955 -1.340236 1.155422 1.567220 0.188437 0.085811 2.241962 0.596656 0.834738 0.899611 0.082936 0.770285 1.546864 -2.895857 -0.133162 -0.590174 2.075147 -0.873297 -3.739707 0.496939 -1.431559 -0.303733 1.249149 -3.245187 -0.419118 -1.788478 -0.065698 -3.085812 0.606908 0.690241 3.319301 0.868007 -1.324121 1.076136 -0.960147 0.830052 -0.485274 0.020117 0.770368 1.371508 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -1.499211 1.091144 0.353556 -1.167614 3.205068 -0.562132 0.204486 1.648068 -0.404072 2.090697 -1.310104 -0.510491 -0.567602 -2.258850 0.249751 -1.025483 -0.271264 1.397934 -0.453375 0.899311 1.189592 -0.541992 0.212896 -0.427929 -0.774537 -1.648079 -0.512055 0.701376 1.424534 -0.854031 0.060666 0.165616 2.643294 -0.455155 2.364784 1.782383 1.209079 1.920329 0.241419 -0.058117 -0.205272 1.219693 -1.276550 -1.908544 0.406886 -0.766029 -1.838083 -0.991815 1.001357 -1.296160 0.821724 1.866613 -0.315576 -0.066296 -1.099906 1.579233 0.729522 0.130285 2.453120 0.558898 -1.085124 -0.136883 -2.324096 2.116625 -1.054633 1.032390 -0.638242 -2.006813 -0.192868 0.283090 0.161708 -1.550757 -0.966230 1.693130 0.960940 -1.658425 0.629471 -0.911310 -1.065225 -1.613527 -1.834982 0.713452 -0.507664 1.687911 -0.032275 0.543754 -0.186841 0.907991 -0.449193 -2.727207 0.136154 2.418996 -1.281507 -0.058567 -1.491584 1.046177 0.267699 0.288948 -1.094408 -0.849263 0.693958 -0.062804 1.033682 -1.160459 0.433197 -1.889382 0.371120 0.328606 0.364204 1.141104 0.854091 0.547285 1.237152 2.023259 -1.374886 0.471093 -2.428728 0.769150 -0.749051 0.666881 -0.467234 1.008974 0.668414 0.737613 1.821872 -2.819347 1.182320 0.039202 -0.640043 -1.959082 0.362207 -0.857724 -0.929405 -0.779018 1.317704 -0.031312 -0.512199 -0.778929 0.620008 0.302862 -1.185009 -0.963129 0.269612 1.329759 -1.899777 0.417274 -0.585017 -0.839656 -0.377031 1.258441 1.598382 1.584493 2.759871 1.878869 -0.157826 0.489668 -2.347643 0.188274 2.302644 0.284855 -1.897482 2.028672 -1.630227 -0.394112 0.606515 1.589798 1.221834 1.307588 -1.419627 -1.252208 0.603391 0.379422 2.419443 0.684641 0.329864 -1.239104 1.327188 -0.599547 -1.227006 3.073664 1.395959 -2.177788 0.463798 0.924732 -1.378449 -1.118214 1.265390 -1.662710 -0.284551 -0.920149 0.423239 1.255950 -1.243010 -0.996406 0.471927 -1.904257 2.198297 -0.498023 -0.420173 0.759981 -2.060611 -1.372471 2.494496 0.283033 -0.722927 -1.313487 -1.566065 -1.042291 -1.932991 0.798685 0.619847 -0.446723 -1.311062 -1.807665 -0.093599 1.878525 0.127106 1.162811 -2.076121 -0.667318 1.124576 0.274885 1.359887 -1.487458 -0.433123 -0.425893 -0.035010 0.786609 -0.486616 1.219870 3.013505 -1.413540 1.378873 0.554829 -1.226702 0.281153 1.501319 -2.336429 2.587802 0.248676 1.155081 -0.050894 0.805770 -1.045057 0.146982 0.313097 -0.038348 0.001993 0.677216 -0.681016 -0.634478 -0.063323 -1.940522 -1.049958 -0.008251 0.862896 -0.152155 0.618648 -0.168194 -1.254214 -0.691163 -1.240102 0.247829 1.662104 -0.233430 -1.015805 1.249288 0.178037 -0.366415 -0.130566 0.272209 0.673401 1.679288 -2.319113 0.301903 -0.140109 0.383157 -1.987755 -2.081385 -0.060329 -1.434115 -1.078243 0.804895 -2.018928 -0.516477 -1.455473 0.391018 -2.131751 -0.800212 0.520669 2.653999 1.163440 -0.802842 1.159327 -0.548468 1.576000 0.206375 -0.282164 0.606632 1.599181 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.337472 4.932043 1.674315 -3.644087 9.227395 -1.454452 1.276676 3.612146 -4.090617 7.413316 -2.881874 -1.326470 -1.794713 -8.624239 0.613279 -5.021520 -1.451011 3.507085 0.598781 5.311301 3.188948 -4.754227 0.730311 -0.256981 -2.968030 -6.908853 -0.747442 2.746894 7.549953 -4.364502 2.402808 -0.275320 8.211463 -1.777402 7.720695 5.859466 2.137437 4.975298 2.010781 -4.174510 -2.908287 3.563380 -4.572662 -4.663822 -0.028721 -1.040227 -6.127542 -2.897188 2.969529 -2.312525 -1.933545 6.642067 -2.025956 0.023114 -4.921714 5.820545 2.702888 -0.174322 8.278630 0.536747 -0.629527 -2.264732 -7.868256 5.846841 -2.542503 -0.292087 -2.975949 -4.142791 2.669865 -0.525330 -3.716065 -3.227819 -0.848733 7.609092 4.802818 -6.572087 0.784430 -3.858182 -10.055759 -6.289651 -5.426064 2.378576 -0.733283 6.058601 0.899251 2.857868 2.468497 4.488795 -2.771363 -10.277107 2.344538 8.056270 -3.417723 -3.564220 -2.928708 7.630461 1.747209 1.201904 -4.063644 -1.734777 2.043316 -1.606963 3.875416 -7.271947 2.225670 -8.124277 -0.839833 -1.207922 1.698714 4.909133 4.542300 1.528413 4.845254 8.052277 -7.651402 0.232695 -7.455455 1.610325 -2.164159 2.152189 -1.671613 4.004834 0.812676 3.408215 6.737366 -10.804871 2.405072 0.079946 -0.299872 -8.156712 -0.126486 -3.182047 -1.631580 -2.591148 3.611822 -1.091583 -0.997336 -3.096941 1.665191 2.617492 -3.124372 -1.951091 3.013259 7.799920 -7.337475 2.218329 -1.475215 -2.151017 -1.060056 3.862497 6.253677 5.961664 9.269192 6.236688 -0.181962 5.003672 -7.165193 -0.302526 7.023417 0.813431 -5.607998 7.977663 -5.976101 -2.991672 0.400640 6.073551 5.835240 2.989549 -7.373615 -6.469320 5.306193 2.231201 7.382380 -0.144235 -0.249381 -2.301078 7.517109 -0.019811 -5.347754 8.603541 3.388496 -5.600090 3.222728 2.064454 -7.162215 -2.954364 5.307687 -6.333201 0.513642 -2.719456 0.510666 4.022801 -2.651843 -1.866349 -0.196144 -5.750065 7.161190 -1.983875 -1.016199 3.158658 -4.641238 -6.448730 6.433306 0.393200 -2.317955 -5.802804 -5.719514 -5.477050 -5.086102 2.685444 0.683843 -2.048093 -3.943433 -6.309097 -1.072205 5.061163 2.155542 4.842728 -9.058758 -1.987917 3.597299 4.470193 4.342588 -1.801783 -0.655784 0.258151 0.101778 1.406754 -0.864167 6.715247 9.863852 -4.283807 4.794989 -2.834437 -4.864716 3.176070 3.781503 -9.371965 8.734240 1.754665 5.411029 -0.210908 1.691453 -2.912608 1.077964 2.362096 -2.307687 1.156517 0.222159 -0.986353 -2.713096 -0.444548 -5.670820 -4.477488 -1.968522 2.070617 -1.384696 2.808733 0.016178 -3.625575 -2.578813 -4.062755 1.264304 4.818436 0.197762 -0.863659 5.323247 0.560283 2.706317 0.857595 0.151743 2.490023 3.637103 -7.964881 0.023756 -2.135396 2.324831 -4.327117 -8.198890 1.075566 -4.540016 -3.357792 3.183351 -6.941371 0.698242 -5.167646 -0.464115 -8.098062 -2.020730 2.180803 9.197197 2.714433 -3.702257 2.655913 -3.000590 4.510088 -0.112142 0.035039 2.155382 4.641346 +PE-benchmarks/ugly-numbers.cpp__main = -0.578322 0.149864 -0.093267 -0.259673 1.469397 -0.412508 -0.072727 1.274080 -0.212815 0.937667 -0.241541 -0.027092 -0.099670 -0.685209 0.151079 0.121893 0.039863 0.730042 -0.179639 0.217969 0.445707 0.134647 -0.017557 0.054697 -0.332659 -0.441035 -0.185738 0.349040 0.556179 -0.557026 -0.401385 0.245151 1.233517 -0.268754 1.281342 0.822567 0.720411 0.472155 0.347895 -0.253784 -0.097778 0.408426 -0.575921 -0.596734 0.086520 -0.217040 -0.735813 -0.219180 0.431300 -0.284619 0.658308 0.707898 -0.225032 0.260323 -0.155987 0.669618 -0.194521 -0.106232 0.959252 0.206709 -0.754715 -0.018516 -0.819878 1.475180 -0.356628 0.384515 -0.555565 -1.013994 -0.120295 0.055179 0.431663 -0.923586 -0.273712 0.912249 0.193202 -0.651432 0.366186 -0.242051 0.603647 -0.852408 -0.951032 0.359878 -0.453581 0.559138 -0.008080 0.237296 -0.573984 0.406454 -0.334058 -1.239179 0.297045 0.898894 -0.846759 0.191448 -0.800672 0.015225 0.113541 0.279934 -0.201798 -0.624952 0.317036 -0.217410 0.432136 -0.201621 0.978551 -0.292895 -0.105060 -0.040924 0.502453 0.692437 0.233564 0.340505 0.815864 0.945495 0.033729 -0.164006 -0.829286 0.623023 -0.578483 0.216530 -0.187059 0.532799 0.652390 0.345672 0.907017 -1.173670 0.159384 -0.079005 -0.122596 -0.729352 0.105932 -0.493033 -0.362193 -0.494962 0.653484 -0.073282 -0.283449 -0.486602 0.384862 0.212667 -0.740480 -0.437641 -0.022352 0.165557 -0.904487 0.163802 -0.254611 -0.314649 -0.097537 0.641446 0.796862 0.954223 1.036745 0.822505 -0.109440 -0.101682 -1.212155 0.004188 0.680437 -0.108481 -0.750845 1.018016 -0.874878 -0.337125 0.352231 0.934982 0.476423 0.323446 -0.266363 -0.329775 0.244405 0.498187 1.077694 0.092854 0.089044 -0.198998 0.032631 -0.354947 -0.743175 1.327790 0.256393 -0.996255 0.146764 0.225137 0.056495 -0.370053 0.539777 -1.022782 -0.299206 -0.464950 0.189513 0.709697 -0.584233 -0.086396 0.694905 -0.740167 0.879683 -0.242247 -0.461509 0.393268 -0.970269 -0.085059 1.204211 0.312501 -0.160043 -0.560936 -0.794667 -0.148093 -0.674224 0.240910 0.153776 0.106277 -0.367808 -0.779682 -0.202360 0.797992 0.320280 0.637886 -1.111767 -0.107611 0.511636 -0.254831 0.387289 -0.870511 -0.137076 -0.273077 -0.131377 0.211897 -0.443182 0.368631 1.153276 -0.579409 0.375421 0.685779 -0.378857 -0.015854 0.313933 -1.184203 1.065657 0.192079 0.154044 0.188904 0.239808 -0.589853 0.009339 -0.053893 0.407727 -0.169014 0.253603 -0.148989 -0.254797 -0.130532 -0.788761 -0.544854 -0.298765 0.315433 -0.201664 0.323878 -0.495182 -0.631819 -0.346421 -0.738996 0.243320 0.654084 -0.287822 -0.337434 0.844638 -0.089656 -0.305473 0.043877 0.070179 0.285230 0.667084 -1.006886 -0.070272 0.111327 0.562715 -0.793191 -0.828974 -0.221324 -0.440426 -0.300037 0.094365 -0.870157 -0.491329 -0.586452 -0.008310 -0.926365 -0.228371 0.382488 1.283656 0.401378 -0.504473 0.482568 -0.274663 0.535241 0.179195 -0.030238 0.077763 0.569526 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.983387 0.783298 0.608618 -0.524119 2.334512 -0.187986 -0.023957 2.141927 -1.605791 2.062589 -0.378885 0.134085 -0.355121 -1.456232 0.126982 -0.511992 -0.199006 0.866040 -0.002990 1.245051 0.889075 -0.591439 -0.084531 0.052209 -0.780763 -1.332135 0.012068 0.530847 1.749758 -0.649157 -0.039505 0.087458 2.139702 -0.519968 2.305505 1.656033 1.029783 1.004275 0.801105 -1.131354 -0.961382 0.998998 -1.289878 -0.924328 -0.080958 -0.505885 -1.241014 -0.538352 0.557713 -0.425193 -0.047000 1.470695 -0.662068 0.453908 -0.519173 1.425440 -0.170161 -0.394888 1.973167 0.190248 -0.733710 -0.674171 -1.631658 2.555235 -0.526788 0.288550 -1.007552 -1.271035 0.681883 -0.465960 -0.302781 -0.642596 0.108398 2.275895 0.622024 -1.527584 0.391059 -0.872405 -1.099453 -1.517049 -1.502272 0.546383 -0.486797 1.073101 0.188420 0.552756 -0.201701 1.325156 -0.803698 -2.742696 0.833207 1.889508 -1.425915 -0.799408 -1.705012 1.025075 0.541071 0.783692 -0.616032 -0.473083 0.729135 -0.356682 0.891142 -1.948376 1.357783 -1.460946 -0.436472 -0.303806 0.919919 1.644110 0.415172 0.673689 1.913722 2.141904 -0.662637 -0.001244 -1.232616 0.808229 -0.909262 0.423419 -0.355437 1.250215 0.916746 0.736108 2.029695 -2.478119 0.024657 -0.010575 -0.114987 -1.707979 0.013302 -1.339721 -0.445435 -0.975294 1.056566 -0.107216 -0.290092 -1.237271 0.510432 0.530196 -1.062738 -1.188529 0.558927 1.042047 -1.940344 0.378277 -0.495362 -0.312887 -0.234796 1.389579 1.611451 1.846987 1.952118 1.535089 -0.010826 0.630975 -1.903611 -0.316789 1.325507 -0.082335 -1.614029 2.130279 -1.737758 -0.952519 0.213771 1.604680 1.300776 0.900188 -1.508711 -1.710130 0.703937 0.816628 2.028382 0.411437 0.060296 -0.083989 1.226718 -0.567549 -1.879203 1.721222 0.725272 -1.391647 0.236671 0.113003 -0.866318 -0.673945 1.318053 -2.015952 -0.172270 -0.695662 -0.247353 1.144434 -0.874088 -0.004103 0.771210 -1.573233 1.991986 -0.347248 -0.141881 0.432156 -1.266314 -1.101763 1.436068 0.524136 -0.660995 -1.608795 -1.336419 -1.552459 -1.157127 0.620785 0.027792 0.045905 -1.222320 -1.767429 -0.391959 0.893811 0.795406 1.151617 -2.544597 -0.493356 0.928242 0.329424 1.002996 -1.289802 -0.317321 -0.460847 -0.270814 0.634546 -0.590035 1.664170 2.461447 -0.779404 1.024470 0.190709 -1.265042 0.334888 0.678481 -2.661250 2.059590 0.322025 0.176501 0.203241 0.431780 -1.007662 0.120985 0.199433 0.041494 0.205513 0.261453 -0.009896 -0.517095 -0.595717 -1.555737 -0.749427 -0.775638 0.124431 -0.620492 0.730656 -0.573278 -1.513691 -0.782335 -1.549982 0.269731 1.326237 -0.514264 -0.255211 1.630916 -0.458440 0.277121 0.356690 0.075646 0.506633 0.779402 -2.086527 -0.420034 -0.194140 0.799524 -1.192969 -1.561797 -0.378376 -0.845736 -1.025712 0.642775 -1.418057 0.019488 -1.292358 -0.454620 -1.916881 -0.981145 0.733489 2.556082 0.286393 -1.227219 0.498045 -0.792002 1.308896 0.503689 0.225937 -0.034599 0.985743 +PE-benchmarks/min-cost-path.cpp__main = -1.702148 1.194295 0.838414 -1.131729 2.977610 -0.266746 0.245100 1.620328 -0.897901 2.235716 -1.304773 -0.329185 -0.743879 -2.133141 0.139259 -1.366681 -0.345318 1.181269 -0.350763 1.204048 1.371031 -0.793274 0.180272 -0.445427 -0.836716 -1.541557 -0.541779 0.642490 1.739127 -0.799509 0.270338 0.064394 2.636263 -0.392410 2.679980 2.033747 1.050527 2.016286 0.138987 -0.331257 -0.659683 1.498331 -1.557417 -2.118087 0.436133 -0.984022 -1.631922 -0.931665 1.110902 -1.186575 0.262301 2.038080 -0.557359 0.078225 -1.062746 1.512902 0.586549 0.279021 2.745824 0.464788 -1.229256 -0.304145 -2.485268 2.038001 -1.003751 1.092901 -0.758045 -2.058654 0.158156 -0.113220 -0.148479 -1.400924 -0.796676 2.100115 0.908875 -1.854241 0.624595 -1.083761 -1.782042 -1.464719 -1.843759 0.621164 -0.230292 1.782047 -0.046183 0.626096 -0.081518 1.204072 -0.562654 -3.151004 0.355396 2.584718 -1.436295 -0.007494 -1.404909 1.193649 0.164021 0.588071 -1.207164 -0.450556 0.818763 -0.003547 1.156808 -1.569285 0.478291 -2.084549 0.408337 0.046875 0.448316 1.055681 0.821673 0.799261 1.633193 2.381468 -1.419876 0.617290 -2.202622 0.810840 -1.025795 0.748153 -0.407860 1.323957 0.474335 0.580138 2.256661 -2.873082 0.981587 0.015608 -0.581476 -2.451255 0.380899 -1.342426 -0.967310 -0.978499 1.461016 -0.015430 -0.602555 -1.186617 0.488185 0.297320 -1.242793 -1.116026 0.456010 1.282444 -1.753406 0.429401 -0.703724 -0.888434 -0.405464 1.439059 1.699946 1.949463 2.872818 2.174385 -0.145148 0.620301 -2.357741 0.015561 2.261048 0.427798 -2.209336 2.161623 -1.785543 -0.587112 0.713083 1.538635 1.667051 1.560533 -1.679302 -1.544716 0.759386 0.497515 2.655243 0.921988 0.470703 -0.848629 1.572058 -0.714547 -1.575593 2.871076 1.136935 -2.390425 0.733506 0.728718 -1.340249 -1.082269 1.393689 -1.801121 -0.054485 -0.977002 0.153943 1.357534 -1.418976 -0.976474 0.558869 -2.248992 2.599826 -0.497255 0.059874 0.883499 -2.322749 -1.875564 2.429287 0.415036 -0.964393 -1.664511 -1.524307 -1.297419 -1.967262 0.911824 0.571253 -0.510492 -1.615245 -2.143581 -0.093743 1.514203 0.363606 1.444651 -1.990611 -0.915430 1.162387 0.250907 1.557545 -1.350825 -0.563480 -0.581929 -0.141657 1.161460 -0.462323 1.530165 3.197106 -1.486235 1.534720 0.375765 -1.321421 0.365517 1.474004 -2.671369 2.780434 0.169078 1.181318 -0.098533 0.916829 -1.258524 0.127669 0.527121 -0.060848 0.230345 0.724112 -0.486014 -0.681467 -0.212206 -2.192671 -0.802551 -0.222553 0.616173 -0.189359 0.767725 0.048737 -1.517183 -0.861137 -1.370823 0.176785 1.931149 -0.357145 -1.156547 1.413747 -0.205663 -0.191979 -0.166960 0.313825 0.650345 1.604962 -2.602305 0.024695 -0.280771 0.090056 -1.964127 -1.990077 -0.243644 -1.572547 -1.161654 0.984937 -2.007197 0.022324 -1.665770 0.087340 -2.015987 -0.966062 0.481871 2.906656 1.267804 -0.966863 1.295858 -0.697741 1.921092 0.342657 -0.170302 0.438897 1.764193 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.764344 0.914682 0.079494 -0.739420 3.697082 -0.599619 0.300257 1.666724 -1.879922 2.688669 -0.630974 -0.440967 -0.808282 -2.978520 0.526606 -1.081001 0.396660 1.082899 0.242041 2.117597 1.154656 -1.672295 0.484854 -0.078166 -1.030602 -2.678312 -0.210298 1.069306 3.022887 -1.368485 0.497187 0.210339 3.438177 -0.508531 3.111963 2.160215 0.760400 1.426736 1.078102 -3.294364 -1.049420 1.396105 -1.922618 -1.759865 -0.049978 -0.548292 -2.448527 -0.841126 1.227122 -0.482498 -2.074601 2.413912 -0.764663 0.640477 -1.835641 1.606997 1.309826 -0.246436 3.115162 0.064175 -0.327474 -1.186795 -2.201443 2.256466 -0.853551 -0.992592 -1.895613 -1.982628 0.801243 -0.036389 -1.552820 -1.027958 -0.282994 2.832313 2.043385 -2.462058 0.726481 -0.663478 -2.078312 -3.137076 -2.244686 0.847947 -1.034263 2.460414 0.305730 1.286561 1.020707 1.457028 -0.620693 -3.901663 1.072987 2.323047 -1.700894 -1.167492 -0.490703 2.576447 0.920610 0.666355 -1.414861 -1.291054 0.535302 -1.233829 1.426395 -1.845819 1.963185 -2.018998 -0.953037 -1.385408 1.633659 2.766465 1.230163 0.818611 1.900778 2.845045 -2.561827 -0.771754 -1.801638 1.032641 -2.065834 0.772204 -0.993908 1.775676 1.450560 1.308333 2.835738 -4.030038 0.626483 0.319186 0.772083 -2.699901 -0.004689 -1.334859 -0.550612 -1.094935 1.809304 -1.023336 -0.231391 -1.379747 0.971027 1.211077 -1.323903 0.410612 0.538505 2.567125 -3.166955 0.997262 -0.559419 -1.024636 -0.118369 1.161503 2.096895 2.796383 2.866159 2.608963 -1.184580 2.575492 -2.905298 0.334240 3.121456 -0.159472 -2.045739 2.981614 -2.419403 -1.262223 0.599919 2.121825 2.624356 0.300294 -2.104180 -1.891724 1.738313 1.540472 3.088871 -0.091480 0.163952 -1.440225 2.081334 -0.099866 -1.500555 3.180465 0.292723 -2.703903 2.033287 1.110746 -3.097714 -0.532106 1.409070 -2.749529 0.046772 -2.019576 0.580812 2.022788 -1.370541 -0.229624 0.464089 -2.215516 2.280160 -0.636989 -0.847868 1.468843 -1.425253 -1.783501 2.874471 0.654641 -0.282115 -2.560889 -2.588289 -1.681638 -2.269610 0.799753 -0.699341 -0.709634 -0.703692 -2.648107 -1.203601 1.947795 1.290660 2.010310 -4.971559 0.512095 1.116507 1.786830 0.930134 -0.722076 -0.219944 0.496235 -0.714310 -0.046438 -1.002377 2.035069 2.675578 -2.065616 1.167843 -1.772579 -2.024773 1.683736 0.654482 -3.516900 3.063376 0.613711 3.017642 0.231410 0.947395 -1.277882 0.662771 0.440996 -1.108125 -0.302529 0.360999 -0.778882 -1.318882 1.214589 -1.131597 -2.759891 -1.319792 0.805836 0.147353 0.975743 -0.714255 -1.858773 -0.365963 -1.076545 1.146764 1.789218 -0.233695 -0.549595 2.320163 0.588073 0.855852 -0.883663 0.034411 0.770669 1.321056 -3.320438 -0.148794 -0.633607 1.698898 -0.976563 -3.101792 0.727885 -1.617719 -0.848702 1.892332 -3.160495 0.299660 -1.844898 -0.297706 -2.155411 -0.545570 0.902100 3.490973 0.367969 -1.702832 1.299791 -1.076905 1.088052 -0.386797 0.657610 0.239884 1.511877 +PE-benchmarks/magic-square.cpp__main = -1.555778 1.139792 0.333370 -1.041095 4.122521 -1.235512 -0.206049 2.627484 -1.170762 2.673177 -0.876639 -0.024980 -0.619587 -2.957429 0.274845 -0.276840 -0.261867 1.899623 0.005382 1.549885 1.085031 -1.109141 0.122776 -0.015621 -1.018811 -1.964736 -0.476231 0.961256 2.370752 -2.327148 -0.883141 0.247759 3.787003 -0.617567 2.710887 2.157229 1.227030 1.702739 1.633754 -2.559629 -0.705720 1.196342 -1.656237 -1.261046 0.279746 -0.701705 -1.921065 -0.660870 1.085083 -0.366217 0.281001 2.205058 -0.705746 0.181071 -1.430264 2.040411 0.300591 0.069560 2.819383 0.298528 -0.540013 -0.793714 -2.826484 3.022941 -1.104859 0.291403 -1.508523 -1.767022 0.641180 -0.081960 0.665556 -2.620004 -0.529546 2.535509 1.021074 -2.121317 0.496677 -1.041119 -1.160620 -3.090382 -2.902160 0.860333 -1.271365 1.913707 0.170989 0.894484 -1.024851 1.508525 -0.876301 -3.491980 0.761373 2.601315 -1.469960 -0.482936 -1.391481 1.856581 0.600456 0.427791 -1.129800 -1.382416 0.818195 -0.643011 1.269029 -2.217368 2.812470 -2.125405 -0.186686 -0.482246 0.917886 1.448155 1.656969 0.840562 2.024588 2.690060 -1.545241 -1.303802 -3.073683 0.722416 -0.887101 0.526098 -0.608526 1.583313 0.379058 1.029414 2.542342 -4.409828 0.655914 -0.194743 -0.408468 -2.563274 0.093575 -1.087792 -0.703185 -1.095214 1.493843 -0.263716 -0.514229 -1.145082 0.781175 0.658452 -2.032270 -0.953677 0.720336 2.934262 -3.180249 0.655915 -0.580906 -0.896172 -0.248526 1.382977 2.225379 2.347760 2.940036 2.233375 -0.140146 1.036574 -3.690118 -0.055775 1.999330 0.297347 -2.125420 2.832214 -1.979794 -1.040957 0.469558 3.077545 1.879716 0.268758 -1.945398 -2.093431 1.928964 0.992690 2.744619 -0.730761 0.091724 -0.280319 1.760617 0.159836 -1.913640 3.474858 0.738917 -1.845838 0.755695 0.795549 -0.396416 -1.054335 1.663124 -2.419031 0.094680 -0.931883 0.113106 1.705369 -1.163237 -0.418590 0.473271 -2.012707 2.560410 -0.676681 -1.268697 1.145405 -1.975174 -1.527037 3.091899 0.052682 -0.622450 -1.918737 -2.889248 -1.255410 -1.856701 0.780834 0.260231 -0.552770 -1.268691 -2.296546 -0.463440 2.460631 0.745180 1.572593 -4.202043 -0.639827 1.327413 0.716675 1.569803 -1.581183 -0.249988 -0.000905 -0.224490 0.564749 -0.749052 2.151878 3.319471 -1.553176 1.271479 0.368971 -0.613014 0.829704 1.043825 -3.290889 3.012419 0.529080 2.365956 0.166838 0.608169 -1.198112 0.218169 0.614800 0.697453 0.099125 0.268325 -0.365180 -0.874083 -0.314423 -1.868590 -2.211168 -0.738273 0.807287 -0.676494 0.927095 -1.065649 -1.195802 -0.935590 -1.443584 0.565266 1.657828 -0.248807 -0.338153 2.053880 0.049223 0.312755 1.258713 0.120533 0.838242 1.395185 -2.782435 -0.132052 -0.459335 1.556245 -1.562334 -3.460921 -0.183521 -1.309310 -0.919712 1.056786 -3.471170 -0.776015 -1.712482 -0.060507 -3.079412 0.431344 0.949211 3.190173 1.149835 -1.515061 1.057040 -1.001770 1.474315 0.020394 -0.072172 0.400694 1.380815 +PE-benchmarks/box-stacking.cpp__main = -4.021455 4.353143 2.334533 -3.267177 7.420286 -0.226258 0.915267 3.061060 -2.036380 6.428046 -3.469357 -0.647985 -1.622953 -6.375757 -0.101883 -4.123841 -1.749220 3.087570 -0.194417 3.601383 3.040415 -3.527826 0.766326 -1.095359 -2.551035 -6.108479 -0.901068 1.667163 4.478344 -1.876714 2.347765 -0.521509 6.512311 -0.381526 5.900646 4.728569 1.473497 5.370447 1.005575 0.575854 -2.078535 3.183441 -3.660380 -5.036681 1.216284 -2.115325 -4.330535 -3.448825 2.171221 -3.907848 0.941408 5.171372 -1.361297 -0.432189 -3.435160 3.646155 2.823337 0.299347 6.800802 0.799837 -1.624940 -0.996314 -6.604400 4.138691 -2.486695 1.067771 -0.323907 -4.264343 1.505028 -0.256392 -0.305654 -2.383846 -1.571090 5.480221 3.093461 -5.116684 0.530029 -3.420532 -9.114582 -4.272638 -3.894869 1.618820 0.464978 4.772744 0.521907 1.932474 0.684404 3.343673 -1.722950 -8.052374 0.794749 6.966740 -2.204608 -0.949231 -3.566683 5.129319 0.844942 1.023801 -3.245279 -0.578395 1.920233 0.291166 2.829243 -4.450107 -1.288170 -6.769111 1.566904 0.085927 -0.007238 1.621239 2.548672 1.297375 3.465339 6.323782 -5.907724 2.520817 -6.094062 1.573471 -0.352161 1.951350 -1.127044 2.649925 -0.467549 1.740359 5.510924 -8.163182 2.812728 0.079880 -1.603774 -7.055751 0.252274 -2.872084 -1.676102 -2.024120 2.853965 -0.189179 -0.976045 -2.693957 0.407114 0.696107 -2.908798 -3.743817 2.207895 6.250631 -4.833235 1.510154 -1.447198 -1.940386 -1.488018 3.257928 4.540246 4.285123 7.203777 5.048035 0.677440 2.293102 -5.786492 -0.448290 6.183507 3.137118 -5.233328 5.698018 -3.657794 -1.581231 1.051073 4.055762 4.255995 2.631993 -5.852467 -4.957281 2.710988 0.700904 6.452822 2.523495 0.646554 -2.310991 5.931477 -0.122908 -3.922200 7.131174 4.001941 -4.619274 1.613262 1.721682 -5.315079 -2.683120 3.974665 -3.723367 0.227945 -1.431119 0.110017 2.585256 -2.307259 -2.736528 -0.269386 -5.486312 6.770774 -1.202385 1.412989 2.254566 -4.657844 -6.113835 5.228312 -0.112670 -2.731471 -4.002823 -3.908054 -4.506807 -4.518811 2.135082 1.641755 -2.356964 -4.033765 -5.389961 0.191587 3.692797 0.624976 3.187418 -4.784524 -3.218062 2.852757 1.356876 3.788010 -3.797745 -0.917187 -0.907637 0.762338 2.628995 0.379684 5.156446 8.562706 -3.117899 3.723630 -0.152019 -2.293595 1.826853 3.929136 -6.635875 6.821233 -0.300886 3.431918 -0.390616 2.019062 -1.986360 0.647388 1.883181 -0.671317 1.271782 1.449865 -1.190582 -1.863035 -0.354098 -5.924738 -2.141302 -0.342154 1.498917 -0.279724 1.843307 0.954824 -3.425895 -1.905511 -3.626511 0.088339 4.335726 0.344498 -2.134023 3.334686 -0.134953 0.980627 -0.174857 0.639767 2.036279 3.268084 -6.194332 0.472486 -1.423333 -0.295284 -4.445837 -6.201886 0.550619 -4.767235 -4.260192 2.704053 -6.367136 0.519482 -4.248402 0.112911 -6.489715 -1.670379 1.042421 7.228992 2.771475 -2.167830 2.834684 -2.110241 4.733399 0.422931 -0.206578 1.896592 4.950220 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -17.239637 21.495958 11.986044 -14.928826 31.484785 0.029272 5.074481 10.941761 -11.464250 29.143066 -14.816128 -1.917024 -6.694255 -29.162545 -1.043088 -20.901198 -9.142889 12.368286 1.125693 18.449160 12.538888 -18.761779 3.491014 -4.288444 -12.035051 -29.389505 -3.199547 7.675625 22.032673 -9.229724 13.710391 -3.632288 27.957610 -1.838906 25.548639 20.889196 4.223308 22.787123 5.232957 0.209964 -10.864620 13.310319 -16.385800 -20.790120 3.916553 -8.073548 -19.336362 -15.485737 8.907637 -16.407353 -0.246937 23.206037 -6.752289 -2.337321 -16.550469 16.858717 13.411264 0.517036 30.122312 2.206489 -4.397477 -5.617556 -29.728460 16.904548 -10.190952 1.369422 -1.455657 -16.322590 10.033679 -2.135469 -4.978615 -8.077427 -4.915728 25.779888 15.331231 -23.864471 0.542386 -16.579168 -48.936771 -19.389287 -15.365978 7.385294 4.182195 21.393811 3.595719 9.645590 6.165687 16.383996 -8.779668 -36.564036 4.558333 31.478197 -8.292514 -7.651969 -14.355444 27.104191 4.878328 4.368975 -14.650077 -1.091364 8.370525 0.609293 12.705626 -23.331654 -6.666378 -32.598572 5.379969 -0.989172 -0.671882 7.318676 11.686909 5.768954 15.785335 29.069881 -29.687933 11.121680 -26.627742 5.762483 -0.560101 8.543817 -5.156753 11.798420 -4.535720 8.955607 24.966006 -37.246518 11.679580 0.237933 -6.007518 -33.224611 -0.290915 -12.717354 -5.932133 -8.605267 11.147131 -1.265593 -3.327014 -12.172859 0.812785 4.076175 -11.402173 -16.607048 12.476090 31.617347 -21.859707 7.555872 -5.646727 -7.395286 -6.886737 14.241062 21.082048 18.896067 32.069895 22.057104 4.287034 13.303951 -24.746803 -3.209065 26.899969 14.982961 -22.508987 26.340226 -16.259872 -8.652871 2.843568 18.388586 20.036080 10.472846 -29.640162 -24.965541 14.844501 2.975741 27.938527 9.782704 1.188894 -8.697321 30.278038 1.277013 -18.327860 29.663046 17.524565 -18.562860 8.356459 6.964536 -26.470627 -11.742715 18.969289 -16.715384 2.333837 -5.044347 -0.826312 10.514116 -8.101326 -11.351345 -3.720274 -23.881746 30.220336 -5.475692 7.330563 10.051788 -17.919789 -30.526720 20.885335 -1.596519 -12.445550 -18.658499 -17.190719 -22.079995 -18.885290 9.254947 6.724966 -11.719955 -17.826025 -24.139276 0.882469 14.494171 3.334153 14.798511 -22.110886 -15.221326 12.447400 9.403351 16.679972 -14.290198 -3.147623 -2.918658 4.204630 10.639821 2.953433 25.940410 38.206068 -12.840486 16.973253 -5.348238 -11.075188 10.166509 16.876891 -30.543102 30.358257 -1.001731 16.497017 -1.749358 8.007529 -7.855725 3.302721 9.804402 -5.567715 7.107657 4.678511 -4.350932 -8.740896 -2.050812 -25.773396 -9.773369 -2.532127 6.007951 -2.119463 8.579105 5.905252 -14.588175 -8.750124 -16.345030 0.211258 18.298851 2.634183 -7.438852 15.535152 -0.259921 7.928715 0.225081 2.011327 9.612669 12.334449 -27.452009 1.776498 -8.067655 -1.302957 -18.176042 -28.842801 4.129113 -21.864735 -19.608687 11.913517 -28.644329 4.540209 -19.164201 -1.023796 -29.843960 -7.361855 5.390711 32.223068 11.258027 -10.347006 11.270684 -10.809523 20.705171 1.234964 0.152080 8.754827 21.476233 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/longest-palindrome-substring.cpp__main = -4.603606 1.443177 -1.563484 -5.854326 11.652114 -2.026072 -1.508380 6.839769 -0.776186 7.053756 -3.433410 0.018227 -1.375366 -9.326318 0.878068 -1.331690 0.042707 4.132609 -2.117424 4.333527 3.731517 -1.894059 2.526876 -0.804659 -3.591376 -4.833042 -0.681073 3.695389 3.868453 -3.890777 0.419784 0.230192 8.868842 -1.444768 7.186657 4.871014 4.667163 6.318537 2.584396 -2.927544 0.411998 2.643691 -3.580334 -6.398425 1.528730 -2.049901 -7.725057 -3.283027 3.995720 -4.934158 0.845345 7.120949 -0.530928 -1.275862 -5.361611 4.655132 1.985516 -1.659119 8.034540 1.781346 -4.387998 -3.013550 -6.972744 5.593216 -4.326218 1.973291 -1.839403 -5.068983 -1.094164 3.380380 -0.004316 -5.165446 -3.832567 3.995162 4.257805 -6.017273 2.531745 -2.991532 0.673128 -6.236574 -4.212618 3.600743 -2.198619 5.686568 0.664287 3.670429 0.667273 3.065812 -2.125797 -9.182665 1.830037 5.962100 -4.350778 -1.272870 -4.683772 5.789435 -0.573960 -1.121135 -4.772991 -3.420302 2.437175 -0.973433 3.894591 -3.684013 2.917870 -6.072940 1.095688 1.058410 2.298364 3.462727 2.979351 1.164912 3.302878 6.498024 -3.829835 1.507197 -9.296165 1.977238 -2.846505 2.570275 -3.695505 3.273786 4.754506 3.441407 5.631711 -9.833864 5.712252 1.253394 -1.948229 -6.407989 1.854214 -0.844451 -2.050575 -1.491541 5.033741 -2.388605 -0.994647 -1.600832 3.524000 1.335138 -5.132749 -1.529680 0.461474 4.777173 -6.470702 2.825723 -1.179045 -3.091747 0.101156 3.361233 5.721917 4.592982 10.679967 5.326397 -1.764525 3.903467 -8.072188 1.638695 8.612234 1.614803 -5.941865 7.738609 -5.786716 -1.557712 0.549877 6.215659 4.938042 2.164485 -4.524697 -3.425078 3.950843 2.396179 8.536039 -0.926231 1.778142 -5.388689 2.695788 -0.827483 0.486906 10.125640 3.618412 -7.555906 2.571043 4.817936 -3.008646 -2.908386 3.779378 -5.218885 -1.236621 -2.591974 2.835130 4.965876 -4.484655 -4.322423 -0.115606 -5.764908 6.012176 -2.307318 -3.304747 2.696782 -6.595918 -1.490764 8.152914 0.545645 -2.271068 -3.812729 -6.745019 -1.919432 -7.653364 2.357411 2.656771 -1.609642 -1.404229 -5.411332 -2.283858 6.099649 0.971943 2.789082 -10.522570 0.034227 4.928414 1.338386 3.413130 -3.546468 -0.326670 0.731609 -0.588891 1.658215 -2.898689 3.114137 7.391107 -5.621444 4.576986 -0.243452 -1.710424 2.654313 4.337437 -7.683672 10.813632 1.948624 7.060711 0.236960 2.763113 -2.741119 2.121128 -0.175747 -1.613492 -0.006098 1.882833 -4.055955 -3.621391 1.846677 -2.763124 -6.240839 -0.390094 5.007106 -1.455680 2.580515 -1.321796 -2.012150 -2.833977 -3.772693 3.315995 4.903377 -2.279535 -3.453742 4.270767 4.648261 -0.635071 0.494460 1.269959 3.951046 6.849100 -8.528802 2.635871 -0.656760 3.361877 -6.332705 -7.182947 2.368247 -3.150589 -0.612507 2.113648 -8.613456 -3.718136 -4.757755 3.261994 -5.328661 1.150068 2.061441 8.785881 3.518325 -3.426990 3.893330 -2.130087 2.788359 -0.314326 -0.227405 2.924808 4.755370 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.945493 0.478445 -0.180082 -0.679632 2.575154 -0.667928 0.156183 1.235778 -0.727945 1.656826 -0.571078 -0.005028 -0.212114 -1.814248 0.292644 -0.150164 0.118238 0.942953 0.011118 0.753035 0.584377 -0.627626 0.156395 0.014182 -0.583221 -1.591289 -0.242225 0.754120 1.472933 -1.275632 -0.123967 0.299366 2.109037 -0.505431 1.828171 1.330891 0.829042 0.884358 0.803826 -1.422940 -0.075944 0.602918 -0.881077 -1.003957 -0.030507 -0.162763 -1.504743 -0.526047 0.765786 -0.382263 -0.122474 1.364751 -0.397372 0.134637 -1.048786 1.272575 0.500848 -0.361619 1.736872 0.205830 -0.592177 -0.395652 -1.512704 2.022022 -0.754693 -0.188402 -0.950937 -1.341462 0.228277 0.359811 -0.210160 -1.096688 -0.445897 1.413179 0.874839 -1.359699 0.335151 -0.492465 -0.412280 -1.816024 -1.346508 0.653710 -0.584868 1.297282 0.213315 0.563472 0.040772 0.683205 -0.455768 -2.112428 0.419061 1.544869 -1.047773 -0.356130 -0.704892 1.170833 0.499228 0.061337 -0.623115 -1.082165 0.349059 -0.677003 0.773614 -0.937492 1.438630 -1.107232 -0.474752 -0.389462 0.741926 1.360845 0.794943 0.417466 1.052321 1.489829 -0.920485 -0.588581 -1.580702 0.771214 -0.695229 0.276715 -0.524210 0.830743 0.820594 0.738653 1.556845 -2.368141 0.511642 0.002785 0.077743 -1.465702 -0.007192 -0.485006 -0.479484 -0.567093 0.956042 -0.330177 -0.168479 -0.547952 0.603210 0.596005 -1.026185 -0.230672 0.240696 1.462194 -1.854800 0.495384 -0.259164 -0.506606 -0.160403 0.813051 1.397392 1.482611 1.908838 1.411388 -0.306976 1.058434 -2.090451 0.194356 1.591071 0.013436 -1.169013 1.824635 -1.509966 -0.624852 0.367225 1.623228 1.103369 -0.008773 -1.145363 -0.905455 1.138454 0.672379 1.746410 -0.411158 -0.015697 -0.656184 0.946650 0.160399 -0.836571 2.156705 0.313314 -1.661247 1.074261 0.814446 -0.826792 -0.486975 0.987245 -1.713783 -0.339244 -0.891488 0.423977 1.184605 -0.833470 -0.135884 0.302962 -1.149748 1.418927 -0.440174 -0.881830 0.847037 -1.067613 -0.772658 1.876362 0.203901 -0.042845 -1.112113 -1.533969 -0.651175 -1.361199 0.331760 0.043412 -0.444065 -0.357978 -1.400954 -0.500739 1.488384 0.426776 1.135670 -2.595608 0.152103 0.896828 0.815998 0.537333 -0.730287 -0.142128 0.256540 -0.178177 -0.082794 -0.761910 1.117096 1.737335 -1.106723 0.735875 -0.160976 -0.809873 0.727137 0.483031 -2.050335 1.981555 0.435398 1.269852 0.295279 0.415115 -0.835841 0.173822 0.086304 -0.088434 -0.341390 0.156092 -0.619400 -0.585410 0.330617 -0.892383 -1.546842 -0.412793 0.760051 -0.071668 0.518269 -0.623201 -0.725030 -0.439528 -0.933285 0.633514 0.915859 -0.280876 -0.396299 1.345708 0.491411 0.066532 0.017410 0.039762 0.649371 0.967975 -1.788808 0.128345 -0.152469 1.141696 -1.055075 -2.005296 0.342545 -0.903267 -0.582353 0.549613 -2.007318 -0.611605 -1.063000 0.072732 -1.809136 0.033736 0.624270 2.183756 0.392957 -0.845546 0.732525 -0.569834 0.572086 -0.199034 0.197318 0.333020 0.812559 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -3.805523 1.806752 -0.269209 -3.344286 9.695226 -3.738949 1.307099 5.264942 -1.979798 4.451165 -3.794102 2.186937 -0.702681 -5.655812 1.228070 -0.591983 1.280518 4.950811 -1.255667 2.082161 2.709309 -0.004447 0.765576 -1.770106 -1.862186 -5.241640 -0.235671 2.122851 1.537539 -1.850013 -0.384382 2.094877 7.412268 -1.564817 5.294373 4.930443 3.675660 5.033714 2.477322 -2.755433 2.368805 1.953342 -1.788808 -5.619563 0.957335 -0.929152 -5.379413 -2.753803 2.857876 -4.550288 1.842747 4.218101 -0.112446 -0.846524 -3.960473 4.269417 3.422434 -1.623963 5.381921 1.777622 -4.184348 -0.588626 -3.516013 7.145949 -3.834044 1.169843 -1.535773 -5.697562 -1.074235 3.914687 1.996655 -4.305132 -3.793489 1.416485 1.678939 -4.102499 1.647358 -0.804521 1.415757 -4.500310 -3.787834 1.939189 -2.267648 3.910931 0.092468 1.400918 -2.274833 0.830381 0.517465 -4.858917 -0.831976 5.342899 -3.199903 0.626791 -4.385377 2.474195 2.570668 -1.977896 -1.743653 -4.744979 1.447181 -1.761277 2.508141 -1.141016 1.714978 -2.462553 -0.342577 1.210786 1.410727 5.183587 -0.925138 2.874398 2.150701 2.361804 -0.798955 0.609447 -7.813889 3.139324 -2.437880 0.335963 -1.517777 1.305667 3.646091 2.426063 3.784032 -6.243841 4.742638 0.639190 -0.603423 -3.332133 1.855332 0.523808 -1.787678 -2.056442 4.070040 -0.457264 -0.703514 -0.128887 2.504246 0.690770 -3.056584 -2.900766 -1.156197 3.663953 -5.538797 1.762333 -1.409836 -1.992654 -0.037332 1.695189 2.744351 3.380780 6.372241 4.609678 -1.189755 3.051239 -7.009395 1.239830 6.103867 2.314049 -3.989162 4.739677 -3.519732 -1.375163 1.857874 4.096536 1.855113 1.793833 -3.261198 -2.948362 1.290124 -0.063418 5.674311 1.272120 0.407140 -5.374209 1.809602 -1.105871 -0.321870 8.136731 2.558593 -6.657897 2.483820 5.016584 -2.101172 -3.517917 1.955519 -4.448968 -2.878299 -2.396403 2.394640 3.531810 -4.211942 -2.903192 0.787071 -3.941442 3.620677 -1.033780 -4.005522 1.078262 -4.522669 -1.473810 7.272779 1.184449 -0.291973 -2.197410 -4.852423 -1.127089 -6.641660 0.983260 1.615864 -1.100845 -1.587700 -3.990302 -1.740266 5.014202 -0.959232 1.970121 -7.399203 -0.044624 3.605568 2.032651 0.676961 -5.637109 -0.952586 0.380064 0.146450 0.145956 -2.302459 2.000335 5.487069 -4.133524 2.409054 2.376992 -2.732666 1.864309 4.002508 -5.290204 6.489252 0.684376 4.949802 1.777343 1.861605 -3.205843 0.193525 -0.765951 0.014419 -2.460386 2.005745 -4.320801 -1.804181 1.967424 -2.014804 -4.581498 1.007770 4.335460 0.482664 0.718372 -1.304436 -1.671995 -1.486146 -3.575241 1.700314 3.369479 -2.116369 -3.724257 3.181518 3.621009 -3.532080 -1.399441 0.854371 2.860431 4.544188 -5.759800 3.281823 0.138114 2.301825 -6.107472 -6.101044 2.615774 -3.514985 -2.834824 0.951147 -6.768165 -4.291647 -2.772161 3.322740 -5.754797 -1.255144 1.587400 5.993866 0.990525 -0.647502 3.681278 -1.469562 1.788794 -0.532618 0.582953 0.277981 4.093018 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -3.938041 3.305338 0.582178 -4.500649 9.371799 -1.893573 1.427566 3.171855 -2.653421 4.992198 -4.620852 1.707369 -0.616590 -6.387623 0.848424 -2.186295 -0.210935 3.829933 -0.956068 3.518245 2.736711 -2.235489 1.475024 -2.379233 -2.099178 -6.222314 -0.290848 2.130656 2.921771 -0.911036 1.162460 0.303647 6.087524 -1.738882 4.063515 4.438827 2.333851 5.262116 1.586705 -3.355019 1.753431 2.278614 -2.174301 -5.868046 0.918622 -1.495722 -5.716361 -3.537581 2.883039 -5.480115 -0.649214 4.628539 -0.305101 -2.332698 -4.774687 4.624117 4.974711 -1.115986 5.821881 1.299547 -2.415047 -1.354798 -4.526350 5.020843 -3.695353 1.043063 -1.031314 -5.020089 -0.477963 3.689026 -0.309325 -2.288151 -3.340414 1.757112 2.847744 -4.557995 1.143733 -2.260363 -2.956546 -4.140045 -2.259116 1.769922 -1.639335 4.505547 0.303368 1.828662 -0.014615 1.520836 0.462055 -5.188960 -1.284300 5.737770 -1.755965 -1.018986 -2.957048 4.635299 3.156518 -2.314172 -2.492506 -2.776105 1.315695 -0.694390 2.695176 -2.983198 0.401513 -4.724313 -0.029688 1.848655 0.986348 4.727480 -0.787876 2.562794 1.420833 2.853660 -3.314668 1.560107 -7.317873 1.528005 -2.191914 1.179605 -1.892136 1.539067 2.721166 2.646856 3.840503 -6.373899 5.630755 0.863773 -0.670836 -4.090699 1.917088 0.547649 -1.448059 -1.162671 2.961276 -0.687697 -0.585364 -0.036072 2.061303 0.599088 -2.615958 -1.984148 0.083638 5.264781 -5.381000 2.164437 -1.135971 -1.681570 0.198866 1.603238 3.042448 2.621209 6.982479 4.699327 -0.581010 4.328096 -5.811473 1.718670 7.163578 2.430888 -4.087674 4.513566 -3.110824 -1.359445 1.254214 3.127840 2.495511 3.248868 -4.960153 -4.288015 1.410644 -1.000996 5.612180 1.981302 0.467170 -6.023875 4.331881 -1.050868 0.206795 7.135564 3.400163 -6.011945 2.894591 5.043550 -5.254233 -3.235570 1.969645 -3.244678 -1.587895 -1.931971 1.786976 3.033889 -3.389666 -4.543680 -1.665408 -4.259360 4.500286 -1.041944 -2.635963 0.954372 -3.244040 -2.690313 5.945552 1.014466 -1.512359 -2.702973 -3.986149 -3.079867 -6.566898 1.354936 1.742474 -2.584206 -2.422055 -4.235474 -1.592073 4.043019 -1.393398 1.441398 -7.453224 -0.507326 3.337512 3.726706 1.584092 -3.934262 -0.752370 0.293752 0.084633 0.437185 -1.432089 3.210514 6.081950 -4.088181 2.962879 -0.032136 -2.885108 2.762694 4.943222 -4.964161 6.862413 0.656062 6.051705 0.892788 2.154376 -2.216179 0.997016 0.047754 -2.629094 -0.857586 2.097375 -4.414404 -2.243295 2.563030 -2.101290 -4.389473 1.636929 4.188383 1.049576 0.882886 0.034668 -1.954639 -1.544631 -2.660005 0.838104 3.450292 -1.636043 -3.968987 2.183857 3.977610 -1.969312 -2.595419 0.900879 2.987493 4.140718 -5.887311 4.049599 -0.795963 1.174318 -6.047340 -5.431732 3.123016 -3.540367 -3.336813 2.198804 -6.665758 -2.641946 -3.278065 3.053639 -5.417086 -1.899946 1.309949 5.734768 1.065199 -0.692034 3.589311 -1.883931 2.556882 -0.646220 0.458593 0.793865 3.980481 +PE-benchmarks/floyd-warshall.cpp__main = -1.456041 0.853090 0.215626 -1.072738 3.023930 -0.889403 0.203136 0.919041 0.036365 2.266664 -1.133244 -1.161846 -0.949609 -2.840088 0.216305 -1.195064 -0.228481 1.521648 -0.199079 1.008597 1.216498 -1.131077 0.300059 -0.309935 -0.657016 -1.965778 -0.533566 0.743762 1.746783 -1.430582 0.145383 0.180530 2.861289 -0.199593 2.295560 1.778694 0.702412 2.155525 0.414731 -0.287367 -0.531805 1.327764 -1.277181 -2.029707 0.497864 -0.532040 -1.584738 -1.194601 1.082549 -0.855517 0.700706 2.010610 -0.539902 -0.088528 -1.605513 1.351317 0.921404 0.822883 2.573904 0.426037 -0.295501 0.165377 -2.663692 1.639434 -1.245478 0.472431 -0.533658 -1.709196 0.154982 -0.023275 -0.116016 -1.361132 -0.856000 1.902212 1.298234 -1.732260 0.348698 -0.934994 -2.258039 -1.846812 -2.331790 0.584058 -0.447508 1.866197 0.088804 0.651395 0.232187 1.099336 -0.427401 -2.891207 0.360574 2.242534 -0.984096 -0.310567 -0.672694 1.683035 0.270942 0.187479 -1.194506 -0.702791 0.543443 -0.433008 1.191520 -0.917461 0.208381 -2.166971 0.613970 -0.075754 0.263832 0.553102 1.984170 0.126057 1.055907 2.139231 -1.993088 0.136733 -2.543703 0.650657 -0.328636 0.653446 -0.393608 1.264347 0.009567 0.506734 1.962641 -3.431836 0.950418 -0.020077 -0.421014 -2.166815 0.163467 -0.855825 -0.732820 -0.834440 1.423225 -0.178188 -0.482981 -0.752308 0.439067 0.494903 -1.196095 -0.282031 0.485432 2.161004 -1.746304 0.570042 -0.661597 -1.173981 -0.370438 0.971870 1.560912 1.806324 2.740057 2.072084 -0.301367 0.416396 -2.596527 0.097282 2.297489 -0.062549 -1.848030 2.130945 -1.420693 -0.354814 0.477586 1.974452 1.680631 0.542659 -1.374489 -1.096057 1.048044 0.485747 2.296479 0.200522 0.286633 -0.775383 1.581558 0.258598 -1.358697 3.195316 1.124631 -1.914330 0.769449 0.892638 -1.898827 -1.141610 1.326396 -1.386741 0.330166 -1.170746 0.562884 1.247964 -1.158140 -0.726472 0.101777 -1.906855 2.197842 -0.560954 -0.181775 1.256748 -1.968142 -1.781616 2.575064 -0.073100 -0.642860 -1.667047 -2.117068 -1.220238 -1.799722 0.916380 0.198254 -0.666839 -1.155873 -1.872682 -0.011105 2.247194 0.419246 1.323228 -1.855028 -0.661868 1.027358 0.710648 1.477791 -0.900124 -0.412458 0.196016 0.015935 0.655190 0.082101 1.246858 3.065642 -1.524005 1.090357 0.189517 -0.796207 0.723468 1.375031 -2.567994 2.571493 -0.020132 1.361893 -0.232040 0.738411 -0.841951 0.252246 0.766608 -0.033265 0.173318 0.355796 -0.495385 -0.719623 0.054002 -2.099356 -1.423870 -0.228538 0.794609 0.047083 0.772282 -0.227542 -1.193082 -0.446818 -0.948220 0.429378 1.660778 0.437996 -0.648617 1.283690 0.191862 0.226077 0.033840 0.300168 0.485377 1.538580 -2.378256 0.130761 -0.411085 0.555930 -1.198241 -2.528539 0.097057 -1.616642 -0.944564 1.187683 -2.478058 -0.203187 -1.554784 0.290178 -2.266488 0.029721 0.193846 2.618177 1.318610 -0.770655 1.157394 -0.580302 1.372200 -0.036460 -0.536157 0.846637 1.801191 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -5.288690 5.018948 1.898243 -4.464431 11.762314 -2.844899 1.764037 2.428798 -2.464166 9.736592 -3.789740 -3.827236 -2.940812 -12.169859 0.592485 -6.383426 -2.209038 5.037544 0.887107 6.126080 4.052267 -6.711982 0.888383 -0.381166 -3.243989 -9.294389 -1.753461 3.377135 9.570593 -7.364666 2.637742 -0.328214 10.942107 -1.371696 9.409858 7.324234 1.624296 7.012929 2.146728 -4.013967 -3.779008 4.634570 -5.643557 -6.384713 0.334556 -0.886397 -6.952969 -4.395392 3.723893 -1.911018 -0.818819 8.517821 -3.024598 -0.170478 -6.932721 6.598267 3.737811 2.197288 10.417080 0.658320 0.761105 -0.205882 -11.438737 6.593931 -3.721216 -0.497325 -3.048972 -5.020963 3.287268 -1.347401 -3.337733 -4.387822 -1.484214 9.773557 6.595475 -7.976515 0.222869 -5.090884 -14.744890 -8.671991 -8.273707 2.802708 -0.537588 7.719264 1.514914 3.509772 3.234639 5.948638 -3.246344 -12.974723 2.766376 9.690993 -3.544136 -4.301171 -2.200407 9.804806 1.809958 1.377190 -4.977690 -2.374596 2.275594 -2.424667 4.934894 -6.974572 1.899814 -10.732887 0.272419 -1.727903 1.231839 2.944639 8.509980 0.565430 5.308657 10.102086 -10.532289 -0.235935 -9.549837 1.936418 -1.337850 2.841643 -1.813141 5.488158 -1.240382 3.563282 8.726542 -15.019330 2.451208 -0.376259 -0.758981 -10.501067 -0.752060 -4.210314 -1.997012 -3.250523 4.409963 -1.035207 -1.267670 -3.642702 1.326804 3.129140 -4.045020 -1.021929 4.277959 11.390021 -8.222320 2.844557 -1.955029 -3.443184 -1.905764 4.401824 7.811597 7.811039 11.478181 8.217898 -0.132480 4.333772 -10.113207 -0.690694 8.662761 -0.025256 -6.917966 10.009635 -6.756901 -3.053821 0.446768 8.881004 7.740612 1.074755 -8.664547 -6.675897 7.417407 2.463425 9.011282 -0.911137 -0.464153 -1.321844 9.335699 1.995395 -7.375136 11.668055 4.061739 -6.509010 4.261811 2.555707 -8.920684 -4.282037 6.841155 -6.807076 2.051232 -3.813156 1.134650 4.435276 -2.790119 -1.721185 -0.748102 -7.336674 9.219973 -2.453884 -0.460004 5.276508 -5.613738 -9.672345 8.996271 -0.976743 -2.911067 -7.751189 -8.525850 -6.131365 -5.815402 3.563223 0.149379 -3.222569 -4.674008 -7.951807 -0.145352 7.963162 2.549166 6.465561 -9.096092 -3.337363 3.900217 5.242454 6.160055 -1.850717 -0.907142 1.092696 0.529174 1.499331 0.750829 7.563816 13.024836 -5.400140 4.802866 -3.019802 -4.365757 4.114232 4.774279 -11.824324 10.665705 0.806602 6.649187 -0.872025 2.169431 -3.170162 1.212433 4.158064 -1.827001 1.933898 -0.076548 -0.683710 -3.195616 -0.621290 -8.274019 -6.518582 -2.262405 2.366264 -1.244818 3.627261 -0.468952 -4.548631 -2.285435 -4.417246 1.756893 6.047861 2.133070 -0.663529 6.331483 0.599543 3.987377 1.684551 0.418405 2.405915 4.568018 -9.776977 -0.299132 -2.944400 3.210863 -3.680040 -11.730105 1.241686 -7.025714 -4.103427 4.380070 -10.159851 0.743427 -6.832316 -0.813914 -10.426009 -0.193795 2.041063 11.278194 4.543747 -4.325007 3.457425 -3.680772 5.463413 -0.573884 -1.072307 3.677401 6.435136 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -2.188458 1.929320 1.024090 -2.268280 5.250645 -1.095619 0.699081 0.971909 -0.004200 3.408408 -2.024287 -1.574596 -0.684987 -4.352721 0.555502 -2.783082 -0.780520 2.249695 -0.165002 2.117032 1.538309 -1.644481 0.245466 -0.575844 -1.303315 -3.450513 -1.304031 1.537183 2.669004 -2.444119 0.937264 0.293069 4.459063 -0.842564 3.912630 3.195697 1.255436 2.771417 0.376047 -0.814548 -0.035736 1.572232 -2.042850 -2.684329 0.086696 -0.435874 -3.366079 -1.950611 1.451306 -1.326978 0.085316 3.248586 -0.728023 -0.298512 -2.468469 2.641614 1.262517 0.682365 3.660965 0.758227 -0.731902 0.843895 -4.315885 2.953702 -1.830910 0.845455 -1.567826 -2.992422 0.305073 0.645768 -0.179856 -2.165909 -1.481149 2.856137 2.312502 -2.877605 0.555128 -1.806234 -3.238461 -2.859402 -2.800648 1.618508 -0.484019 2.953670 0.456952 1.155417 0.705882 1.770690 -0.907688 -4.384026 0.204702 3.932501 -1.648423 -1.225416 -1.264511 2.654459 1.279295 0.068807 -1.567698 -1.539089 1.066988 -0.975159 1.745998 -1.111179 0.905361 -3.312172 -0.261182 0.442940 0.386271 1.760641 1.884559 0.919608 2.060168 3.081290 -3.196228 0.011908 -3.672109 1.179509 -1.524073 0.907122 -0.888246 1.801447 0.444703 1.817675 2.990872 -4.956263 1.649698 0.006581 -0.679716 -3.100572 0.161480 -1.090251 -1.306300 -1.188994 1.696074 0.063307 -0.489073 -0.858477 0.614591 0.868514 -0.778306 -0.633885 1.020327 2.896925 -2.717485 1.001125 -0.579254 -1.229209 -0.774781 1.873464 3.010419 2.735398 4.559591 3.160417 -0.222836 0.862563 -4.006397 0.135888 3.610453 -0.522009 -2.669329 3.758622 -2.505517 -1.086617 0.473522 3.239191 2.135190 1.001977 -2.868450 -2.307930 1.027718 0.435419 3.741111 0.259088 -0.378666 -1.642170 2.735032 -0.052279 -2.191215 4.866920 1.791863 -3.073226 1.036777 1.947457 -3.379064 -2.412834 2.479251 -2.785595 -0.020662 -1.466919 0.781937 1.802621 -1.397980 -1.153072 0.108088 -2.889184 3.195760 -0.959932 -1.166486 1.411119 -2.330921 -3.887845 4.310051 -0.083930 -0.854907 -2.367862 -2.800371 -0.762796 -2.979884 1.150368 0.700363 -1.162546 -1.617877 -2.830071 0.108735 3.263844 -0.084692 2.318984 -3.026682 -1.006619 1.715918 1.454089 2.018207 -1.442412 -0.395292 0.039369 0.026246 0.167817 -0.525461 2.161791 4.775110 -2.189654 1.686504 -0.091412 -2.518977 1.147451 2.159206 -4.137175 4.535511 0.508989 2.311044 0.074483 0.999182 -1.448378 0.114166 1.068300 -0.892551 -0.037889 0.584588 -1.057152 -1.096897 0.199961 -2.667390 -2.313343 -0.065849 1.748554 -0.463944 1.075830 0.050397 -1.988660 -0.773373 -1.388953 0.766817 2.329134 0.298003 -1.075680 2.404946 1.146975 0.197738 -0.512230 0.131881 1.194166 2.410644 -3.895936 0.787158 -0.555819 1.302353 -2.590514 -4.111421 0.716044 -3.110240 -1.324829 0.902921 -3.511500 -0.813476 -2.604597 0.418388 -3.060640 -0.912651 1.480051 4.342391 2.041529 -1.781441 1.416242 -1.413629 2.121716 -0.089677 -0.575971 1.278917 2.312418 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -17.565847 6.962411 -3.468918 -21.838296 41.586243 -10.717704 -3.626893 23.814692 2.433913 23.673027 -15.837659 -1.098630 -5.276850 -32.385782 2.401970 -7.032865 1.268976 19.444130 -9.025927 15.235552 13.970973 -5.617220 9.552587 -6.183639 -11.584241 -17.289918 -2.351348 12.042735 6.588376 -10.174603 5.564840 2.569798 32.670900 -2.520084 25.450587 17.465927 13.818700 27.199693 9.225745 -2.628087 5.641355 8.941777 -9.617237 -27.195412 8.463209 -6.875094 -26.668941 -15.641359 13.296651 -25.066586 9.540676 24.581762 -0.850092 -6.888771 -19.179051 14.968596 12.341757 -3.262661 27.431356 7.085751 -18.422404 -5.007281 -23.237897 16.801373 -16.918877 8.024154 -2.160007 -21.151447 -5.633677 15.863659 5.307575 -18.366671 -16.508110 10.486351 14.082090 -19.562012 9.219854 -9.202866 0.879586 -19.383812 -14.471671 11.011121 -6.196586 18.028912 0.971233 12.351387 -0.691762 8.030617 -4.350968 -29.088423 3.510886 21.881589 -14.169616 -0.734975 -16.376772 18.370584 0.505998 -7.741807 -17.016563 -13.882903 8.097571 -4.293914 13.069876 -5.464409 1.451004 -19.937967 7.865061 8.522937 5.312458 13.171808 7.887670 7.984218 9.907302 19.041171 -14.356872 11.220252 -35.864022 7.868054 -8.749638 7.252613 -9.707788 8.143889 15.095264 12.415147 16.916610 -33.269500 24.446064 5.685721 -7.338672 -20.459474 8.315802 -0.577639 -6.178614 -6.639475 18.516208 -7.036231 -2.917611 -2.748344 9.341932 1.829181 -15.726966 -9.807632 -1.252084 17.809404 -20.033003 10.667068 -4.640482 -11.819579 0.791673 9.049124 17.015823 12.125105 36.183862 17.731641 -6.497153 8.947322 -27.237107 5.676762 31.032432 7.751920 -21.289281 25.894804 -14.927708 -4.272027 2.851211 19.911532 15.268782 7.851524 -15.707804 -13.707978 8.854564 3.433879 28.129358 1.093223 5.528214 -25.690649 10.662380 -1.775309 3.333776 41.208921 14.400969 -26.993010 4.250682 20.527283 -15.519143 -14.119660 10.978911 -14.390399 -6.844661 -7.267233 12.054011 14.423192 -16.924284 -19.360588 -0.243477 -21.670650 19.807081 -6.899382 -11.859486 6.156378 -25.010086 -6.224510 32.793226 2.956878 -8.380727 -9.415027 -23.901850 -2.711330 -29.673234 7.073321 11.335350 -4.869660 -5.576709 -16.508305 -6.088496 21.717154 -0.780827 7.710841 -31.625644 -3.171186 17.262504 1.255141 8.897413 -19.032142 -2.968067 2.402416 0.170852 5.631923 -5.336064 8.883997 27.226262 -19.153481 14.771531 6.536321 -6.762479 9.922230 18.673449 -24.902387 37.083702 2.221364 25.364055 1.942703 10.731593 -9.757570 6.202054 -0.758215 -4.959915 -3.713641 9.188455 -17.256841 -11.731202 7.142866 -9.792206 -21.190736 2.806823 18.916188 -2.318276 7.790660 -3.007400 -7.555270 -8.917411 -12.182870 10.392133 16.688595 -5.832352 -15.566535 11.967965 18.862407 -5.855688 -2.484200 5.800202 13.566148 25.029266 -29.343848 14.482290 -1.176031 7.400269 -23.578771 -23.234532 11.978030 -15.207782 -5.257514 5.539640 -31.883885 -14.775134 -15.404697 15.419293 -17.487053 3.671945 5.591069 30.670108 13.937208 -10.437197 16.565159 -7.601171 9.905148 0.231786 -1.268164 8.406299 21.149563 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -12.093726 11.856746 5.853350 -10.922251 26.755952 -3.402910 1.754554 10.705211 -5.649624 19.885843 -11.272485 -4.183200 -5.798401 -24.559690 0.798663 -12.890968 -3.364010 12.200743 -0.793029 12.488008 9.453764 -10.973590 3.373107 -3.165326 -7.412501 -17.872228 -3.433617 6.258433 15.700573 -10.005601 5.914130 -0.840555 23.983158 -1.671564 18.713788 14.660759 4.534487 18.256921 5.559572 -4.267443 -5.231276 9.826582 -11.016047 -17.103549 3.651181 -5.605401 -14.379190 -10.725024 7.884817 -9.702366 1.300504 16.873829 -4.081553 -1.734228 -13.115372 12.012364 10.039193 3.763149 21.844762 2.674780 -3.319308 -1.429138 -22.055229 10.914947 -8.971404 2.895551 -3.980212 -12.749259 3.506521 0.441615 -0.780300 -10.512924 -7.066225 16.980765 10.952024 -16.113028 2.325964 -9.549477 -26.263883 -16.743955 -16.250693 5.651350 -2.299165 15.407997 1.685221 6.947651 3.582117 10.785418 -4.610739 -25.800433 3.364588 20.245055 -7.294422 -4.955588 -7.791102 17.141238 2.224711 1.696959 -11.147997 -5.097581 5.665752 -1.886752 9.626858 -12.026057 -0.378413 -20.969154 4.831250 0.345867 1.617986 6.224780 13.051919 3.614394 10.607628 19.785312 -19.442320 4.700669 -23.542669 4.173981 -3.802320 5.688732 -4.362165 9.955101 0.141844 6.860110 17.207887 -30.145245 9.485472 1.077745 -4.073583 -20.846030 1.732171 -7.327004 -5.013636 -6.172182 10.121047 -2.147753 -2.797742 -7.036302 2.531013 3.142667 -10.606159 -6.915951 6.017902 21.787029 -18.325754 5.582808 -4.378773 -7.723771 -3.248619 9.248696 14.618035 13.834153 23.636631 16.193701 -1.384454 6.965116 -20.588592 0.076800 19.748687 4.514426 -16.021632 19.422541 -10.170024 -4.912082 2.973288 15.657648 14.270779 6.435712 -16.957291 -15.415152 9.922635 3.286588 19.949239 5.141871 1.932739 -7.439743 17.680075 0.405903 -11.322501 27.219136 9.888611 -14.695867 4.759666 7.387253 -17.668083 -9.095856 11.744494 -12.639241 1.746814 -6.398476 2.116949 8.937692 -8.220320 -8.648956 -1.459094 -16.216386 20.070247 -4.232715 -0.645798 8.181452 -14.591367 -17.901407 20.718464 -0.699299 -7.340716 -13.305851 -16.535474 -11.943615 -15.213429 7.090190 3.385351 -6.757392 -10.080025 -16.543376 -0.658813 15.907634 2.760494 10.108295 -18.747870 -8.340332 9.129218 6.623989 12.114956 -11.647857 -2.471276 0.385304 0.706259 5.792036 1.159361 14.633257 27.577050 -11.551823 10.719233 -1.261799 -7.960718 7.287537 13.081818 -22.380521 22.496061 -0.858410 16.575299 -1.188177 6.302385 -6.388468 2.833790 5.939685 -3.593356 2.955606 3.733083 -4.831277 -6.855187 0.057084 -16.053103 -11.976804 -1.779441 6.386619 -1.470275 6.134698 0.560655 -9.834655 -4.891610 -8.708171 2.634437 13.308303 0.816920 -7.677166 10.541683 3.056091 3.894459 1.008130 2.044394 6.029263 11.480435 -20.185832 2.026701 -4.733100 3.623050 -11.888799 -22.436374 3.118942 -13.853060 -9.124429 9.246785 -21.544364 -0.040160 -13.170218 1.832239 -20.077403 -2.523550 3.598224 22.768982 9.820090 -7.788579 8.610637 -6.587433 12.441518 0.159428 -1.721242 5.962361 15.837784 +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.718734 0.206231 0.094338 -0.546986 1.834651 -0.504920 0.143716 1.204034 -0.205966 0.801875 -0.768922 0.365738 -0.287816 -0.979491 0.245409 -0.136188 0.193810 0.766682 -0.482229 -0.024213 0.575437 0.171960 0.141862 -0.402422 -0.300347 -1.049673 -0.024558 0.279856 0.208407 0.170644 -0.194393 0.376817 1.225548 -0.294271 0.678847 0.683781 0.937640 1.013224 0.109474 0.029427 0.523732 0.444979 -0.280388 -1.123811 0.343274 -0.449013 -0.915756 -0.365687 0.571675 -1.132608 0.277261 0.662079 0.149446 -0.186045 -0.473486 0.796979 0.586725 -0.295002 0.910484 0.476194 -0.931986 -0.461256 -0.750242 1.262780 -0.745988 0.543084 -0.183785 -1.173802 -0.581052 0.793552 0.146817 -0.497687 -0.571086 0.019401 0.277330 -0.587719 0.399696 -0.025454 0.446119 -0.454997 -0.623646 0.250799 -0.367736 0.717776 -0.137984 0.078387 -0.184215 -0.080329 0.215701 -0.741061 -0.403080 1.030467 -0.599670 0.323032 -1.083552 0.021009 0.282588 -0.282819 -0.271140 -0.786424 0.253943 0.069890 0.352046 -0.486710 -0.119115 -0.461017 0.275376 0.301450 0.202443 0.727821 -0.447085 0.262558 -0.068385 0.347931 -0.121042 0.429829 -1.380273 0.566663 -0.298899 0.219059 -0.383845 0.066412 0.765978 0.308717 0.550534 -1.013353 1.013539 0.087855 -0.267566 -0.499000 0.448711 0.121824 -0.482551 -0.255287 0.796432 -0.023082 -0.238427 0.014020 0.586467 0.014983 -0.672018 -0.594358 -0.404105 0.360566 -1.079070 0.152917 -0.322188 -0.371731 -0.104295 0.309946 0.372680 0.441586 1.029087 0.752806 -0.167405 0.591966 -1.235105 0.407619 1.256268 0.462077 -0.764499 0.587930 -0.686182 0.091180 0.443245 0.402665 0.169129 0.830505 -0.311813 -0.198957 -0.002268 -0.070402 1.096973 0.678614 0.298209 -1.289058 0.038915 -0.677546 0.183953 1.343294 0.917625 -1.401090 0.501820 0.868848 -0.477312 -0.538907 0.164365 -0.665669 -0.480520 -0.510766 0.441047 0.749595 -0.890887 -0.641612 0.208020 -0.713782 0.702726 -0.160532 -0.323458 0.195211 -0.903897 -0.254542 1.170967 0.203547 -0.087595 -0.362388 -0.720528 -0.666775 -1.256065 0.190397 0.409265 -0.336870 -0.471428 -0.713364 -0.326125 1.037775 -0.326870 0.198131 -1.317220 0.094660 0.604392 0.194684 0.353183 -0.993180 -0.251979 -0.197364 -0.160078 0.314980 -0.551028 0.091983 0.900437 -0.737550 0.818823 0.312444 -0.645467 0.057456 0.786467 -0.616238 1.038037 0.093565 0.709042 0.178417 0.478426 -0.583332 0.060919 -0.277342 -0.126098 -0.436613 0.576493 -0.866905 -0.230714 0.390084 -0.679693 -0.588058 0.431352 0.780811 0.402074 0.022834 -0.071864 -0.384482 -0.219860 -0.669581 0.152820 0.678476 -0.501406 -0.879463 0.308318 0.480300 -1.006513 -0.644272 0.272655 0.470219 0.921900 -0.882290 0.548839 0.208935 0.079799 -1.329650 -0.969573 0.156884 -0.608753 -0.710528 0.246326 -1.175215 -0.716435 -0.398775 0.807423 -1.124550 -0.466266 0.111259 0.942968 0.111189 0.145212 0.845799 0.024673 0.445852 -0.029749 0.079411 0.175001 0.663099 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/program-wish-womens-day.cpp__main = -6.770660 6.321497 6.861715 -5.686976 15.069586 -2.956514 0.456564 4.799056 -5.149180 10.730618 -3.166539 -2.801662 -2.836147 -10.947760 2.556634 -7.575470 -0.908095 4.640685 1.301353 7.965547 4.453489 -5.686761 -0.461090 0.884420 -4.546381 -8.427574 -3.834247 4.878195 11.560578 -7.658392 2.505828 0.365097 13.537339 -4.622761 12.057256 10.513575 3.396220 5.221921 2.504467 -11.807018 -4.449471 5.785373 -8.182528 -4.754285 -0.320847 -1.300894 -9.421735 -3.592225 4.240739 -0.767420 -8.606817 10.622542 -3.434617 0.449460 -6.764963 10.921864 1.407055 1.567256 12.379291 1.054783 0.805360 -2.617539 -11.776065 6.670140 -4.024034 -0.683230 -9.783597 -7.111185 3.713287 -0.936615 -4.823252 -6.345678 -2.423592 11.425776 3.861917 -10.431059 2.107325 -4.864745 -8.890287 -9.691908 -8.685710 4.516881 -2.861982 8.773748 0.951326 3.357487 3.035744 7.416714 -4.866873 -15.190340 4.385386 10.295794 -5.004262 -6.263662 -1.594003 8.667591 4.242522 1.680902 -5.306688 -3.140601 3.241564 -5.007125 7.586075 -8.887575 10.181273 -9.497471 -4.217539 -2.100571 5.328467 7.345517 6.589873 4.668899 9.028546 11.486735 -11.790810 -2.947966 -9.920042 3.062591 -6.871908 2.737056 -2.843683 8.045606 1.111216 6.133221 10.089335 -16.895676 2.204788 -1.596623 -0.969964 -10.201819 0.632179 -4.855793 -3.377164 -4.828041 5.208584 -2.102178 -2.913651 -4.638479 4.024587 2.944216 -3.237406 -0.814621 4.041875 9.634673 -12.044756 3.652875 -3.492490 -2.767172 -0.035971 5.863164 9.128876 10.430642 13.352949 10.912971 -0.916822 6.180330 -13.066196 -1.048513 7.158188 -1.793327 -8.300302 13.302879 -8.875302 -4.863845 1.583868 11.055522 7.743749 5.739561 -8.781562 -9.225441 6.520371 4.807661 10.782278 -0.123537 0.440101 -3.492116 7.473849 -3.614443 -8.821552 11.037540 2.323267 -7.394005 4.156645 3.286108 -8.299918 -4.363316 7.077325 -10.773967 0.596168 -4.343483 -0.865964 7.371625 -3.897309 -1.934110 0.556165 -8.300371 8.698758 -3.244376 -3.926756 6.536029 -7.458733 -11.759597 8.903460 0.865665 -2.803251 -8.127915 -9.354744 -3.767571 -7.201513 4.524427 0.945384 -3.560414 -6.821078 -10.770821 -0.821764 6.446501 4.518417 7.853360 -14.907516 -1.007938 6.466103 6.042989 7.019953 -0.979799 -0.734805 -0.080801 -2.311923 1.027719 -2.380137 9.816726 14.047825 -6.268989 5.528809 -5.314082 -8.180605 4.796858 4.387064 -15.155986 13.382350 4.034765 11.385533 0.335808 3.041951 -3.512726 1.767182 3.794937 -5.008190 0.944637 1.161330 -1.482380 -4.409173 0.265741 -7.384099 -7.840277 -3.461683 2.526119 -4.130097 4.843405 -0.136194 -6.611653 -3.881407 -3.064497 3.632914 7.902749 0.678714 -1.435386 8.749455 0.848760 3.230233 -2.173966 -0.908544 1.722922 4.491168 -12.091711 -0.816374 -2.919099 6.071315 -5.103823 -11.458637 0.223788 -6.648467 -3.116896 3.710208 -8.724126 -0.222948 -6.718520 -1.971558 -7.895427 -4.321175 4.290567 12.599368 5.020336 -7.169368 3.573453 -4.821520 4.948641 -0.893840 -2.329769 2.475187 4.766144 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -2.257603 2.046303 0.695050 -1.829835 4.794156 -0.535676 0.295847 2.194368 -1.346844 3.364174 -2.035721 -0.158159 -0.777568 -3.536690 0.219111 -1.559479 -0.590311 1.775091 -0.471671 1.605881 1.685537 -1.326355 0.427900 -0.584914 -1.347687 -2.835110 -0.597808 1.086654 2.554338 -1.440243 0.491652 0.000000 3.729998 -0.759303 3.312174 2.598833 1.633956 2.837646 0.561767 -0.569782 -0.491515 1.710923 -1.945473 -2.875095 0.572221 -1.172183 -2.781309 -1.402253 1.488815 -2.001828 0.496079 2.840309 -0.576098 -0.249279 -1.902599 2.607115 1.384606 -0.101854 3.866043 0.615235 -1.517509 -0.837351 -3.535097 3.110474 -1.579545 1.187131 -0.906736 -2.762540 0.108498 0.391128 -0.339666 -1.989064 -1.307959 2.748329 1.536196 -2.737268 0.628936 -1.581740 -2.809161 -2.492452 -2.361423 1.044923 -0.371593 2.556938 0.161761 0.988862 0.229443 1.585842 -0.808264 -4.342005 0.314306 3.800166 -1.744047 -0.251787 -2.090333 2.216474 0.364172 0.353398 -1.741353 -0.967986 1.025573 0.012645 1.571357 -2.645913 0.538907 -3.399634 0.538943 0.136252 0.449527 1.571976 1.356827 0.785710 1.836656 3.283867 -2.537673 0.578875 -3.740416 0.936120 -0.813617 1.019153 -0.869813 1.509038 0.619455 1.057805 2.994088 -4.461334 1.887741 -0.020920 -0.852088 -3.525621 0.401365 -1.274157 -1.169998 -1.017849 1.824906 -0.227604 -0.653960 -1.262127 0.792210 0.543343 -2.003126 -1.790105 0.781888 2.846772 -3.094785 0.783306 -0.806525 -1.128078 -0.605252 1.820220 2.598270 2.412392 4.333012 2.827613 0.012254 1.774650 -3.506130 0.202400 3.552105 1.090731 -2.933023 3.183420 -2.623322 -0.757621 0.769400 2.295404 2.070658 1.815646 -2.744047 -2.397605 1.678966 0.591956 3.619258 0.785163 0.499079 -1.713643 2.557678 -0.417342 -1.724262 4.432022 1.878273 -3.319874 1.363389 1.356891 -2.060465 -1.402698 2.080272 -2.608132 -0.328628 -1.171105 0.349614 1.851497 -1.770616 -1.553160 0.222026 -2.882435 3.578125 -0.724389 -0.383185 1.269590 -2.815305 -2.480236 3.281451 0.328722 -1.182384 -2.145516 -2.332428 -2.142259 -2.842016 1.114717 1.080217 -1.117161 -2.030755 -2.914551 -0.238792 2.536417 0.302741 1.802461 -3.661017 -1.119671 1.749507 0.993485 2.033197 -1.923801 -0.528596 -0.503807 0.026924 1.197793 -0.694477 2.391962 4.553426 -2.079267 2.416281 0.049630 -1.792272 0.782069 2.257361 -3.624519 3.956757 0.421914 2.232514 -0.052186 1.196496 -1.512726 0.413841 0.597021 -0.339774 0.263799 0.847378 -1.045965 -1.095983 -0.008220 -2.858337 -1.693838 -0.107666 1.250898 -0.109916 0.943096 -0.140029 -1.585151 -1.200652 -1.923743 0.318378 2.391067 -0.474744 -1.503427 1.904797 0.277323 -0.207810 0.027475 0.421226 1.211894 2.228852 -3.527850 0.424691 -0.461737 0.415536 -3.060063 -3.245536 0.081334 -2.178410 -1.718955 1.298789 -3.423935 -0.479794 -2.195145 0.439006 -3.419988 -0.933198 0.710495 4.112969 1.515393 -1.191361 1.779814 -0.973355 2.338242 0.198482 -0.124449 0.902576 2.396712 +PE-benchmarks/bfs.cpp__main = -3.198454 0.653003 0.646924 -2.652760 6.611115 -2.273722 0.104112 3.723820 1.321845 3.755275 -3.225450 -0.455944 -1.604696 -3.793344 0.389168 -1.627421 0.548094 3.629484 -2.014092 0.589638 2.651814 0.861649 0.988108 -1.549376 -1.229122 -3.349570 -1.105293 1.221508 0.184325 -0.783648 -0.259415 1.061300 5.820612 -0.482193 4.208856 3.503733 3.142382 4.937709 0.285738 2.307929 1.418152 2.306076 -1.716577 -4.738460 1.623278 -1.630045 -3.463598 -2.393233 2.413826 -4.080074 3.654414 3.380038 -0.132421 -0.668862 -2.173648 2.594195 1.527405 0.262208 4.435947 1.466966 -3.785887 0.752178 -3.846383 4.497570 -3.337399 3.165576 -0.395387 -4.762576 -2.056253 2.013834 2.674016 -3.508154 -3.505607 1.365323 1.144292 -2.812564 1.410084 -0.958974 1.453671 -2.027672 -3.630957 1.283746 -0.997780 2.646546 -0.259784 0.895914 -1.703653 0.892883 0.360812 -4.095398 -0.550097 4.253826 -2.626701 1.582146 -3.800682 0.156100 0.258144 -0.840816 -1.469243 -2.516797 1.131915 -0.372799 2.030132 0.296762 -0.750868 -2.363368 1.909234 1.917549 0.318616 1.259072 0.034411 1.393937 1.530795 2.422362 -0.697014 2.018784 -5.750604 2.264612 -1.221136 0.599765 -0.870441 1.418655 1.695897 1.210147 3.033439 -4.499788 3.562640 0.195763 -2.137823 -2.511642 1.461300 -0.402547 -1.862756 -1.471505 3.355648 -0.020795 -1.007257 -0.708349 1.557062 -0.362103 -2.075272 -2.442164 -0.960429 0.758439 -2.220189 0.940927 -1.408833 -2.198195 -0.312517 1.833622 1.863333 2.502727 5.013617 3.597754 -0.786618 -0.455810 -4.968003 0.639379 4.306847 1.136832 -3.676545 3.270252 -2.214721 -0.053011 1.820863 2.841062 1.501721 2.349809 -1.187346 -1.191401 -0.706427 -0.057700 4.584203 2.347846 1.073892 -3.711984 0.342405 -1.632466 -0.328340 6.542878 3.249291 -5.028455 0.303295 3.211174 -1.411298 -3.296817 1.446663 -2.240718 -1.473716 -1.982258 1.766597 2.494667 -3.304612 -2.642412 1.403940 -3.713427 3.580096 -0.774235 -1.478574 1.398374 -5.164097 -2.229703 5.646332 0.467327 -0.928389 -1.644642 -3.509023 -0.401543 -5.120452 1.370667 1.814175 -0.606183 -1.797525 -3.108031 0.072856 3.876840 -0.526172 1.771028 -2.696328 -1.271798 2.567980 -0.783345 1.851997 -4.400424 -1.108152 -0.755238 -0.047784 1.756234 -1.039737 0.401097 4.970883 -3.099843 2.306012 3.229157 -2.067115 -0.068492 3.392236 -3.790139 5.008784 -0.243128 1.546895 0.423669 1.850416 -2.175956 0.255771 -0.138987 0.788724 -1.049807 2.062056 -2.869029 -1.311226 0.497764 -3.311885 -1.806767 0.964302 2.676546 0.174811 0.774822 -0.271188 -2.205946 -1.098287 -2.303405 0.875576 3.274953 -0.688043 -3.289913 1.868151 1.631106 -3.280613 -1.426978 0.947629 1.425047 4.107044 -4.480837 1.856299 0.447318 0.133065 -4.733685 -3.525171 0.503973 -3.157348 -2.225345 0.822654 -4.297556 -2.816244 -2.408741 2.400761 -2.968157 -1.223991 0.572172 4.538513 2.575347 -0.472616 3.040210 -0.599609 2.382014 0.310772 -0.988443 1.016322 3.736300 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -6.531418 3.595806 2.561630 -7.548479 13.994421 -3.305404 -0.249289 5.838122 1.231294 9.376317 -6.555383 -0.700415 -2.511471 -10.414065 0.559896 -5.551195 -0.993123 6.698004 -2.379604 4.982105 5.235591 -1.824297 2.770272 -2.685968 -3.802735 -9.188351 -2.354406 3.711864 3.070837 -3.080892 3.252271 0.136815 11.644586 -1.437480 8.710641 7.599211 4.660025 9.933970 1.077979 2.407382 1.256097 4.507263 -4.626033 -9.242420 2.729299 -2.632252 -8.442554 -5.993455 4.894905 -8.128156 3.125727 8.493489 -1.066310 -2.498674 -6.684954 6.073115 4.033734 0.119343 10.152635 2.081550 -5.203354 0.663467 -9.977704 7.313816 -6.715031 4.303354 -1.181685 -8.130671 -1.539661 3.513810 2.676480 -5.830620 -6.115272 4.930369 4.536391 -7.606299 2.147864 -4.532969 -3.189999 -5.756885 -5.838688 3.693956 -1.010925 6.865431 0.524126 3.531982 -0.262628 4.010781 -1.007443 -10.533295 -0.048317 9.115827 -4.435869 -0.638266 -5.678688 5.693936 1.476136 -1.877043 -3.890316 -3.660776 2.760355 -0.989809 5.137337 -1.125537 -1.355549 -8.167411 2.537012 3.083418 0.718143 2.903440 1.395263 2.970193 3.943396 7.103723 -5.608804 4.076014 -12.017649 3.251434 -2.941125 2.568400 -3.045189 4.104162 2.733764 4.295934 7.380621 -10.945410 7.547723 0.488077 -3.468401 -7.172958 2.395217 -1.011293 -2.944040 -2.522458 5.748459 -0.992107 -1.668452 -1.803650 2.758528 0.551490 -3.503728 -4.046400 0.581976 5.278548 -5.549275 3.217748 -2.207918 -4.072738 -0.352226 3.951608 5.958130 5.800002 12.580898 8.004158 -0.783624 2.016603 -10.179314 0.947328 10.300303 2.439123 -7.554100 8.696575 -5.030926 -1.766800 2.249257 6.966596 5.197036 4.605017 -6.120299 -5.655979 1.215157 0.255633 10.177132 3.367186 1.161593 -7.570618 4.608845 -1.212296 -0.958154 13.570564 6.251210 -9.431799 1.921430 6.410206 -6.390880 -6.649888 4.330460 -4.589217 -1.591747 -3.057641 2.945085 5.057118 -5.162279 -6.701089 -0.285845 -8.043473 8.367115 -2.435543 -2.515994 3.477851 -8.544306 -7.459814 10.615050 0.402879 -3.317323 -5.110413 -7.601344 -1.736595 -10.185345 3.408257 3.706994 -2.798323 -3.589363 -7.355900 -0.123772 7.147697 -0.492894 3.913481 -8.076688 -3.356551 5.625465 1.106787 4.319294 -7.299094 -1.082849 -0.622619 0.239259 2.724682 -1.159178 3.673328 11.934175 -6.668549 5.106712 2.819581 -4.419965 2.132005 7.597123 -9.738530 12.551848 0.192792 5.864932 0.297803 3.309565 -3.471987 1.629286 1.122007 -1.565694 0.181767 2.987559 -5.256838 -3.913247 1.761278 -6.342520 -4.768531 1.159729 5.846049 -0.697359 2.716692 0.597669 -4.707346 -2.861061 -3.734836 1.947270 6.858111 -0.774914 -5.976803 4.809325 4.732806 -2.778753 -3.176684 1.284298 4.164970 7.762316 -10.623449 4.494973 -0.912394 0.920708 -9.111184 -8.313359 3.044354 -6.866038 -4.266149 2.358370 -10.022041 -4.202179 -6.347533 3.887828 -6.045247 -1.945376 2.003892 10.331369 5.430178 -2.793637 5.377594 -3.057379 5.439990 0.041694 -1.753183 2.980394 7.916411 +PE-benchmarks/boruvkas-algorithm.cpp__main = -5.443456 4.708456 -0.340685 -4.207947 10.255752 -3.032378 1.624033 5.791322 -3.860677 7.498738 -4.216955 1.037530 -1.665153 -9.442380 0.638776 -2.218869 -0.238466 6.055599 -0.001127 4.959101 4.284449 -3.913105 0.773105 -1.636162 -3.174461 -6.729565 0.092825 2.507341 4.935268 -3.506478 1.446381 1.022779 9.846204 -0.726303 8.278212 6.889254 2.724255 7.410561 3.769037 -2.654516 -1.654584 4.048403 -3.970290 -7.338776 1.832287 -1.863549 -5.614870 -4.373120 3.194873 -4.721881 3.030147 6.701591 -1.258573 -0.338470 -5.873983 4.409099 4.803098 -1.160361 8.858083 1.581106 -2.833273 -1.434856 -6.340642 7.195684 -4.051098 -0.064901 0.007760 -5.551105 2.105519 1.210468 1.276626 -5.276757 -3.443612 5.647812 3.077895 -6.856886 1.439793 -3.176022 -6.554241 -7.112323 -6.152035 1.986383 -1.516636 6.526104 0.170573 2.414193 -1.422367 3.370655 -1.375784 -9.519955 0.841585 7.766852 -3.563511 -0.361482 -4.914211 7.205585 1.843834 0.052782 -4.555607 -3.034992 2.457927 -1.064015 3.992499 -4.071672 -0.030706 -6.350566 0.662606 -0.629591 0.500511 4.957537 3.852125 2.883458 4.597725 6.811861 -5.011310 1.482175 -9.787431 2.888313 -0.650189 1.912696 -1.159564 2.945042 1.837415 1.662347 6.623653 -10.643029 4.354511 0.656370 -0.615795 -8.321527 1.232528 -2.261452 -2.135826 -3.449194 5.067032 -0.630488 -1.212642 -2.589658 1.583516 1.665241 -5.204625 -5.100002 1.364444 8.547950 -7.794069 2.235768 -2.326451 -3.118843 -1.093117 3.071256 4.974756 5.579723 9.226401 6.796561 -0.284779 4.756172 -8.370705 -0.130879 8.277333 5.146728 -6.703575 7.334492 -5.033072 -2.449829 1.970695 5.778721 5.300953 1.794152 -6.962452 -6.006064 5.097975 0.872622 8.317633 0.900583 0.935513 -4.341852 6.601897 1.710434 -3.970975 11.308138 3.342509 -7.125838 3.290312 3.482941 -4.590883 -3.230267 4.502255 -5.490092 -1.588122 -2.329243 1.603934 3.882027 -4.357893 -3.453788 -0.289977 -6.679320 7.302573 -1.737147 -1.082660 2.466955 -6.796174 -3.909725 8.378620 0.739388 -2.622493 -4.761575 -6.044680 -4.292074 -7.167450 2.629088 1.723100 -2.028146 -4.244445 -6.751358 -1.147204 6.477281 0.643695 3.117084 -8.793638 -2.619958 4.504860 2.653422 2.909791 -6.994160 -1.319523 0.554150 2.020070 2.398012 -0.338224 6.053988 10.222096 -5.154022 3.267450 1.953986 -1.279099 3.529379 5.225669 -9.057182 9.120151 0.045282 6.430402 0.462798 2.295925 -3.545660 0.455145 1.343438 1.255886 -0.185397 1.426922 -2.698920 -2.497015 0.656089 -5.476603 -4.412966 -0.292921 3.307044 -0.074475 2.267638 -0.495566 -2.764782 -2.612545 -5.212952 0.934078 5.695964 -0.440882 -3.133729 4.805128 1.357858 0.306467 1.478665 0.827185 3.405553 5.110610 -8.347374 1.813869 -1.731631 1.275332 -5.826628 -9.372825 2.526104 -5.030418 -4.562679 3.653642 -9.104216 -1.135898 -4.966363 1.861572 -9.697317 -0.458320 0.896226 9.134284 2.470043 -2.083867 4.208733 -2.691421 5.109882 -0.088416 0.457439 1.428659 6.967650 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -2.438080 3.141476 1.447968 -2.208313 3.831601 -0.132126 0.886694 1.381748 -1.493269 3.797702 -2.327575 0.301020 -0.670649 -3.731661 -0.137803 -2.721891 -1.033638 1.648211 0.178660 2.465263 1.717838 -2.412697 0.448246 -0.867179 -1.651634 -4.275983 -0.202031 1.009150 2.382579 -0.761742 2.137005 -0.283697 3.599890 -0.139684 3.450941 3.037945 0.485960 3.282660 0.988413 0.418176 -1.077442 1.738131 -1.999753 -3.142891 0.515681 -1.043607 -2.519496 -2.264654 1.156717 -2.756479 0.254141 3.024377 -0.757830 -0.429739 -2.499075 2.019958 2.091958 -0.178585 4.080492 0.406370 -1.042051 -0.778125 -3.420368 2.475218 -1.622568 0.001128 0.258670 -2.363909 1.468284 0.209917 -0.643061 -0.677522 -0.880856 2.937049 1.758854 -3.297171 0.120051 -2.143412 -6.413264 -2.044934 -1.456008 1.057707 0.764295 2.902372 0.456492 1.231568 0.488910 1.978350 -0.918898 -4.560239 0.304170 4.183215 -1.118296 -0.780615 -1.896534 3.855821 1.050549 0.249430 -1.739225 -0.055488 1.156878 0.060115 1.655707 -2.721901 -1.747706 -4.172167 0.775388 0.079775 -0.358880 1.359708 0.986600 1.305653 2.110375 3.473156 -3.567496 1.866946 -3.665178 1.054763 0.009206 0.916698 -0.580490 1.249538 -0.433672 1.187672 3.232308 -4.304521 1.970867 0.269142 -0.644887 -4.290240 0.135253 -1.441356 -0.840864 -1.232121 1.555811 -0.002143 -0.323152 -1.456910 0.019623 0.411276 -1.287222 -2.744126 1.439749 4.064825 -2.545270 1.033664 -0.743712 -0.864620 -0.929830 1.804184 2.495238 2.300797 4.328995 2.907929 0.625305 2.031212 -3.045092 -0.425951 3.845997 2.738617 -3.045939 3.379878 -2.087921 -1.286472 0.533327 1.984378 2.485487 1.588813 -4.171631 -3.545182 1.691550 -0.020521 3.794704 1.587063 0.159689 -1.573280 4.277028 0.324742 -2.061791 3.928375 2.355210 -2.745167 1.164154 1.327570 -3.796948 -1.633360 2.451346 -2.080351 -0.036545 -0.562053 -0.062447 1.363881 -1.300155 -1.798548 -0.659092 -3.276592 3.930410 -0.656391 1.163766 1.009570 -2.545818 -3.792266 2.767542 0.042701 -1.580404 -2.198745 -1.859052 -2.863679 -2.953137 1.067709 1.153595 -1.653926 -2.245529 -3.198750 0.030551 1.691724 0.018857 1.756015 -2.726440 -2.094433 1.880869 1.269371 1.575083 -2.156661 -0.520675 -0.304595 0.848914 1.459154 0.338268 3.619357 4.865802 -1.670199 2.278527 -0.405890 -1.302859 1.544147 2.489528 -3.983244 4.179855 -0.435507 1.958421 0.102456 1.099520 -1.206346 0.244300 1.030130 -0.940997 0.588037 0.744616 -1.054156 -1.099673 0.093763 -3.117989 -0.992698 0.017958 1.088965 -0.017664 0.989618 1.042771 -1.867411 -1.244118 -2.364218 -0.000615 2.444499 0.244695 -1.400104 2.037956 0.347541 0.656255 -0.382751 0.254191 1.520525 1.747268 -3.708962 0.686704 -0.952314 -0.500017 -2.869210 -3.584741 1.046130 -2.967181 -2.922622 1.284811 -3.764849 0.522390 -2.492347 0.208933 -3.887349 -1.124734 0.703014 4.270600 1.244236 -1.203367 1.591659 -1.514630 2.762367 0.237964 0.282718 0.941988 3.140944 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -17.629132 22.769695 11.949294 -17.296066 32.969595 -1.710537 6.469211 12.412024 -12.162802 29.079376 -15.613873 -0.801036 -5.584022 -31.784470 -0.272707 -23.687204 -9.545297 14.455104 0.942095 20.122282 12.621092 -18.121130 3.854863 -4.595956 -12.899423 -31.190008 -2.757215 8.882650 21.731971 -7.905519 15.385459 -3.583858 29.381055 -4.201305 25.634354 21.946159 5.840593 22.507196 5.445751 -1.688428 -8.840861 12.643059 -16.094997 -21.116064 2.649726 -6.577724 -22.335417 -15.478369 9.484746 -19.200378 -3.002587 24.111276 -6.127402 -3.722573 -17.325640 19.536331 14.238321 -1.847498 30.299101 2.550991 -5.602434 -6.713493 -29.540421 19.180226 -10.754341 1.547916 -3.327045 -17.259575 9.367382 0.665219 -8.264039 -6.837065 -5.050226 24.757471 16.805005 -24.970430 0.928665 -17.394328 -46.253972 -18.076476 -14.281804 8.567689 3.269938 21.817810 3.817027 10.319799 8.377654 16.298041 -9.091261 -36.092247 4.056382 32.657045 -8.877544 -10.553141 -15.341609 27.778433 7.543254 2.494106 -14.198630 -3.483344 8.605924 -0.283938 13.464237 -24.896231 -8.357360 -33.336931 2.137674 0.929831 0.035308 12.061350 8.697592 7.830167 15.337612 28.213902 -30.036275 12.292468 -29.351987 6.513643 -3.418275 8.688332 -5.962724 11.151672 -1.747369 12.159640 24.397682 -36.830300 13.817655 0.658031 -5.228062 -32.213305 0.628372 -10.677588 -5.679959 -8.516844 11.190625 -1.639610 -3.300452 -10.907127 2.425022 5.168137 -9.738882 -16.586339 12.262832 30.083643 -23.644656 8.491174 -5.363318 -6.379530 -6.052536 14.311510 21.624543 18.208515 33.943911 22.276096 4.675055 17.400717 -24.674564 -2.633885 27.636546 14.454159 -22.067166 27.177677 -18.022643 -10.094377 2.096835 17.972423 18.960916 14.233818 -31.665816 -27.026897 15.382882 2.137914 28.371387 9.522583 -0.766102 -13.100968 30.942728 -0.966588 -16.419759 31.768660 19.340342 -20.399008 8.938346 8.891450 -29.416684 -13.744215 19.449162 -18.139361 0.275941 -4.693620 -0.358197 11.407428 -8.286109 -12.995921 -4.459192 -23.646619 28.790704 -6.205273 4.687627 8.645851 -17.135556 -30.623842 22.384767 0.151101 -12.506594 -18.610318 -16.889610 -21.330865 -20.779776 9.338762 8.167968 -11.524015 -18.087077 -23.840848 -0.300171 16.032535 2.362731 14.766473 -25.715890 -14.215752 13.957701 12.126949 15.587262 -15.177537 -2.667950 -3.427052 4.087873 9.001024 1.690708 26.215607 37.582219 -13.482939 18.761323 -7.135287 -15.693178 10.787770 18.023733 -31.442290 32.608863 1.104897 18.665470 -0.616793 7.462470 -8.801894 3.664993 8.935189 -9.061686 6.226124 4.605623 -6.270655 -9.486625 -0.971730 -24.095244 -10.961080 -1.700219 8.442668 -3.047366 8.715379 7.087043 -14.551869 -10.086059 -16.533660 0.198828 18.373910 1.118043 -8.294862 16.430077 2.598670 6.597094 -1.911861 1.512688 11.558096 12.995214 -28.658885 4.639675 -7.971947 -0.253367 -21.243376 -29.919045 6.727308 -22.417669 -19.838760 9.267711 -27.478041 3.899769 -19.441961 0.663502 -30.533487 -10.582830 7.570433 32.709842 9.979771 -10.473716 11.506519 -11.759481 20.752559 1.166025 0.945885 8.868738 21.245414 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -4.930266 5.811977 2.652223 -4.187711 8.366702 -0.532800 1.920052 3.201123 -3.954213 7.906228 -4.045522 1.009924 -1.341344 -7.596668 -0.065564 -4.913541 -1.822211 3.235654 0.580860 5.238107 3.452178 -4.873749 0.847581 -1.189052 -3.480074 -8.492764 -0.269273 2.369133 5.667649 -2.426480 3.901985 -0.356730 7.442319 -0.752667 7.392817 6.329393 1.451237 6.078562 2.083829 -0.967063 -2.508469 3.426065 -4.314838 -5.955826 0.809082 -1.754600 -5.613606 -4.215684 2.600492 -4.753399 -0.381721 6.495547 -1.847053 -0.478242 -4.973150 4.696816 3.862903 -1.050841 8.463639 0.701202 -2.087645 -1.969971 -7.016814 5.728430 -2.978231 -0.438810 -0.490339 -4.886192 3.108327 0.222663 -1.774281 -1.912620 -1.450833 6.621499 3.799726 -6.988462 0.322612 -4.248184 -11.945407 -5.236204 -3.505771 2.258963 1.288582 6.049816 1.107382 2.763494 1.280504 4.280626 -2.313407 -9.881652 1.332365 8.390932 -2.897495 -1.943533 -3.966937 7.819714 1.947149 0.731482 -3.737133 -0.683323 2.378530 -0.482756 3.612877 -6.046998 -1.735921 -8.172237 0.552418 -0.603658 0.248790 3.186622 2.298320 2.434232 4.730564 7.524930 -7.018950 2.994123 -7.227503 2.383171 -0.415043 1.969598 -1.481795 3.002877 -0.126896 2.667467 7.095690 -9.333399 3.422530 0.272202 -0.960742 -8.991303 0.064430 -3.148684 -1.575165 -2.733474 3.507622 -0.511489 -0.742293 -3.209156 0.653367 1.385533 -3.013970 -4.863000 2.980960 8.241044 -5.972190 2.314361 -1.584302 -1.853764 -1.737991 3.876836 5.607576 5.520045 9.014603 6.273813 1.010840 4.951648 -6.750555 -0.848413 7.579185 5.175556 -6.209397 7.460076 -5.124358 -2.939890 1.038973 4.686771 5.489158 2.685669 -8.440927 -7.014478 4.640722 0.886187 8.014771 2.260747 0.264922 -2.805914 8.122567 0.531699 -4.544359 7.942809 4.288674 -6.063937 3.159790 2.542977 -6.956047 -3.100704 5.293240 -5.211437 -0.336254 -1.472437 0.027614 3.294030 -2.764719 -2.955383 -0.815691 -6.575551 7.908681 -1.524155 1.714420 2.636496 -5.056045 -7.398520 5.650740 0.188887 -2.976733 -5.033127 -4.368334 -5.741728 -5.825218 2.230921 1.881813 -2.999406 -4.431493 -6.872462 -0.497280 3.692815 0.886933 4.134973 -6.885920 -3.550979 3.978125 2.967874 3.270638 -3.983699 -0.895411 -0.399316 1.370213 2.442485 0.072413 7.358247 9.700448 -3.808370 4.542611 -1.604497 -3.027433 3.332444 4.472319 -8.730069 8.807997 -0.036475 4.651189 0.356460 2.125097 -2.859962 0.727026 2.063083 -1.733332 1.092287 1.215773 -1.887408 -2.495487 0.166687 -6.121566 -2.895572 -0.779160 2.244294 -0.521225 2.293729 1.461315 -3.682399 -2.747934 -5.177491 0.538963 5.002119 -0.029152 -2.318700 4.881784 0.662844 1.661745 -0.281901 0.508914 3.236365 3.589483 -7.945362 0.942170 -2.066475 0.004225 -5.597725 -7.854016 2.073933 -5.887709 -5.506682 2.785891 -7.884568 1.056668 -5.255975 0.088252 -8.147461 -2.114758 1.695160 9.158302 2.273879 -2.792029 3.354549 -3.234321 5.246517 0.170895 0.839882 1.845261 6.003878 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -4.166422 3.281225 2.438331 -2.832032 7.828800 -0.307744 0.298373 4.322897 -3.923804 6.070470 -2.995744 0.391150 -1.635927 -5.392759 0.281989 -2.656104 -1.044629 2.394449 -0.359825 3.776647 3.147543 -2.894439 0.599534 -0.819343 -2.562844 -3.679199 -1.046569 1.822547 5.471309 -2.956811 0.546077 -0.217101 6.484725 -1.318660 6.291518 4.947533 2.560506 4.860247 1.089290 -3.423805 -2.139382 3.538093 -4.134932 -4.601632 1.099779 -2.573265 -4.144584 -1.924657 2.592764 -2.327212 -0.745749 5.334752 -1.548814 -0.031937 -3.143069 4.516706 1.739471 -0.256999 7.271635 0.787741 -2.356767 -1.968916 -6.385342 4.814972 -2.315190 2.078797 -2.582314 -4.609869 1.129637 -0.453201 -0.796776 -4.263604 -1.657957 5.841382 2.159700 -5.141944 1.137173 -3.009239 -4.995884 -4.734835 -4.673541 1.604209 -0.548508 4.516304 0.233489 1.950869 0.206036 3.577960 -1.776887 -8.509837 1.292647 6.300959 -3.735343 -0.642166 -3.074894 4.084939 0.090649 1.439324 -3.540107 -0.913944 2.100249 0.002347 2.976858 -5.926394 2.877189 -5.880600 0.574496 -0.638747 1.491996 2.422196 2.715698 1.942417 4.502677 6.533110 -4.094797 0.475949 -5.651495 1.273040 -1.949781 1.888387 -1.560767 3.662650 0.841176 1.640381 6.268847 -8.191992 2.318730 -0.326606 -1.477372 -6.844426 0.644423 -3.258491 -2.040640 -2.277768 3.547332 -0.515524 -1.336388 -3.114577 1.474370 1.059835 -3.869928 -3.037640 1.808063 4.968512 -5.754586 1.313764 -1.670398 -2.111423 -0.869304 3.659367 4.914906 5.179781 7.297704 5.442205 -0.140856 3.215304 -6.207553 0.084103 5.597576 1.751436 -5.748982 5.965152 -5.138800 -1.805189 1.532484 4.177558 4.673294 3.264971 -5.156385 -4.845332 3.969584 1.748946 6.794573 1.282416 1.388535 -1.627275 4.623574 -1.402419 -3.983139 6.916181 2.229749 -5.927331 2.749397 1.753240 -2.589647 -2.055768 3.842461 -5.155598 0.036980 -2.032567 -0.265337 3.529304 -3.302779 -2.288941 0.740648 -5.577287 6.948607 -1.252617 -0.089631 2.410363 -5.128072 -4.666493 5.512567 0.890079 -2.525772 -4.700022 -4.172746 -4.176175 -4.834619 2.233951 1.388600 -1.661906 -4.213934 -5.906763 -0.580064 3.695330 1.372807 3.535430 -6.909516 -2.107552 3.058405 1.573250 4.234365 -2.826455 -1.054684 -0.973542 -0.544266 2.690422 -1.598367 4.866811 8.128834 -3.842281 4.204074 -0.352487 -2.823571 1.487609 3.412039 -7.042800 7.208112 0.853438 4.689541 -0.299773 2.214444 -3.194212 0.810224 1.479840 -0.102227 1.014547 1.235537 -1.074724 -2.094789 -0.778956 -5.181938 -2.700694 -1.049040 1.503074 -0.894010 2.029626 -0.177101 -3.005857 -2.628725 -3.646562 0.592653 4.626705 -1.457115 -2.364791 3.868955 -0.502842 0.445550 0.623455 0.771787 1.975317 3.654555 -6.774020 -0.226749 -1.242228 0.635782 -4.790889 -5.572532 -0.576030 -3.476843 -2.562689 3.007819 -5.700210 0.297101 -4.191376 -0.064212 -5.648060 -1.657439 1.136665 7.456516 2.729022 -2.936943 3.170089 -2.073552 4.639973 0.649394 0.026340 0.792990 3.827042 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +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.680727 0.674905 -0.282082 -0.465925 1.838521 -0.382913 0.134146 1.438180 -1.195065 1.116049 -0.503582 0.988611 0.055546 -1.292536 0.196543 0.367912 0.181655 0.692322 0.120870 0.524816 0.413185 -0.522665 0.123377 -0.133917 -0.485282 -1.362594 0.323089 0.410700 0.867315 -0.284468 -0.049477 0.255304 1.238127 -0.287172 0.928824 0.841563 0.600727 0.602340 0.938822 -1.161483 -0.040800 0.277277 -0.441369 -0.882644 0.128604 -0.226570 -0.938434 -0.356013 0.449358 -0.772862 -0.197061 0.825890 -0.141569 -0.029197 -0.797001 0.802054 0.713400 -0.810286 1.162598 0.191691 -0.626063 -1.077450 -0.498364 1.493175 -0.509939 -0.481626 -0.210191 -0.845960 0.317693 0.580823 -0.251362 -0.435501 -0.090797 0.655831 0.360152 -1.000566 0.213037 -0.231511 -0.392140 -1.126569 -0.539094 0.357848 -0.392655 0.936978 0.173790 0.362615 -0.160613 0.279215 -0.143746 -1.270830 0.126957 0.983181 -0.600105 -0.084297 -0.759419 1.090345 0.539378 -0.146665 -0.319190 -0.719586 0.305429 -0.202378 0.453036 -1.065643 0.561540 -0.763209 -0.198170 -0.375850 0.466348 1.211932 0.033376 0.414401 0.474725 0.854163 -0.496648 -0.112443 -1.319762 0.563928 -0.149308 0.170920 -0.452498 0.196386 0.805604 0.421236 0.949647 -1.477533 0.670517 0.196478 0.258019 -1.122264 0.158800 -0.151868 -0.187226 -0.338232 0.688407 -0.331527 -0.049073 -0.254795 0.477451 0.322632 -1.161925 -0.712823 -0.029323 1.482923 -1.751239 0.395093 -0.219430 -0.198168 -0.074798 0.358038 0.743911 0.829270 1.184703 0.841086 -0.085836 1.479119 -1.312188 0.226292 1.356372 1.047881 -0.792969 1.063246 -0.998374 -0.454905 0.257430 0.694504 0.639717 0.219188 -1.063981 -0.835922 1.086957 0.269033 1.187001 0.042139 0.197286 -0.808230 0.829610 0.108241 -0.279093 1.357940 0.287412 -1.264047 1.080545 0.704630 -0.559834 0.005598 0.500318 -1.117999 -0.467142 -0.409769 0.198985 0.813752 -0.771441 -0.386330 -0.089449 -0.748972 0.947257 -0.145300 -0.224924 0.337399 -0.557999 0.062582 1.057560 0.314750 -0.086991 -0.629268 -0.858630 -1.114673 -1.019740 0.084668 0.204030 -0.497526 -0.274428 -1.002015 -0.736270 0.871051 0.138710 0.392344 -2.312485 0.220553 0.728371 0.717596 0.010318 -0.961033 -0.112545 0.178466 0.001206 0.054953 -0.556493 0.994143 0.924563 -0.715411 0.739155 -0.168005 -0.113212 0.716575 0.437158 -1.150645 1.224337 0.218223 1.274765 0.441511 0.380460 -0.631578 0.191120 -0.221667 -0.176250 -0.299746 0.272886 -0.719545 -0.410927 0.578732 -0.425928 -1.076767 -0.101515 0.615060 0.308354 0.159294 -0.399044 -0.219685 -0.403301 -0.946033 0.365547 0.572222 -0.567815 -0.480791 0.725565 0.500727 -0.126887 -0.144666 0.181361 0.674821 0.599133 -1.119713 0.380156 -0.102964 0.567336 -1.039557 -1.404520 0.538069 -0.387476 -0.732411 0.412802 -1.759618 -0.406604 -0.554195 0.292609 -1.758958 0.007553 0.197570 1.381123 -0.343291 -0.237305 0.675003 -0.335441 0.264609 -0.167864 0.582377 -0.017848 0.677551 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -1.252973 0.736806 0.596708 -1.055935 3.285582 -0.583824 -0.005888 1.872097 -0.427909 1.970841 -1.046576 0.042758 -0.249949 -1.710536 0.290488 -0.652474 -0.271171 1.228643 -0.497141 0.671627 0.849938 -0.041412 0.103978 -0.200717 -0.852458 -1.627661 -0.592527 0.819761 1.086451 -0.941171 -0.102259 0.315589 2.460962 -0.735420 2.092658 1.638131 1.327751 1.373977 0.205514 -0.314242 0.306631 0.751501 -1.102004 -1.291417 0.167212 -0.550968 -1.916484 -0.737643 0.900408 -1.077077 0.402463 1.566891 -0.220964 0.017019 -0.718973 1.804396 0.249383 -0.327540 2.041524 0.518946 -1.351795 0.043536 -2.090182 2.501636 -0.978806 0.950682 -1.161376 -2.036399 -0.366194 0.586762 0.598673 -1.489889 -0.747593 1.414733 0.710934 -1.462986 0.579865 -0.713629 0.011632 -1.780062 -1.470209 0.890026 -0.421485 1.283586 0.038121 0.518936 -0.403942 0.806029 -0.539586 -2.339967 0.048606 2.116201 -1.351151 -0.070757 -1.715400 0.446795 0.423818 0.128512 -0.621642 -1.193216 0.665269 -0.249473 0.835826 -0.926440 1.310834 -1.167204 -0.141877 0.323736 0.637026 1.070962 -0.073809 0.683780 1.237176 1.665609 -0.697530 0.166609 -2.051964 0.927682 -0.990192 0.473310 -0.627520 0.849912 0.941051 1.017194 1.738300 -2.402655 0.974289 -0.209417 -0.627189 -1.543894 0.288266 -0.520239 -0.827728 -0.712705 1.095281 0.002874 -0.421217 -0.596959 0.764623 0.295657 -0.926716 -0.869077 0.199644 0.896695 -1.793205 0.407486 -0.368423 -0.512470 -0.318292 1.240202 1.660979 1.524825 2.463408 1.588650 0.007420 0.249988 -2.484023 0.145448 1.801316 0.116596 -1.511614 2.030090 -1.539803 -0.520602 0.545496 1.716110 0.780878 0.984479 -1.110444 -1.112387 0.300235 0.492511 2.274935 0.540143 -0.001143 -0.993678 0.627088 -0.910042 -0.950060 2.583839 1.227421 -1.990999 0.413221 0.962519 -0.621169 -1.220757 1.234202 -1.807552 -0.648858 -0.599890 0.365890 1.285433 -0.979995 -0.637906 0.765074 -1.519996 1.824984 -0.544418 -0.828445 0.681966 -1.612938 -1.467561 2.130986 0.231476 -0.386367 -1.044805 -1.485192 -0.470881 -1.753772 0.479313 0.657589 -0.316701 -0.922215 -1.581766 -0.178879 1.592295 -0.001574 1.135217 -2.331822 -0.458870 1.087635 -0.018690 1.029034 -1.404393 -0.180497 -0.527056 -0.261238 0.334541 -0.863748 0.941157 2.425552 -1.164827 1.201662 0.495514 -1.377008 0.077612 1.099545 -2.137030 2.398737 0.438246 0.825617 0.259995 0.559312 -0.993094 0.061806 0.043087 0.010762 -0.284222 0.596889 -0.695732 -0.566160 -0.133701 -1.605996 -1.107362 -0.035863 0.974661 -0.374346 0.512095 -0.244669 -1.169740 -0.642767 -1.277081 0.339619 1.258241 -0.568707 -0.886749 1.474840 0.378831 -0.738471 -0.160209 0.113033 0.821093 1.417549 -2.053132 0.371940 0.091630 0.763030 -2.039861 -1.903439 -0.116286 -1.399081 -0.968096 0.257855 -1.918516 -1.059979 -1.219783 0.414075 -1.622042 -0.846932 0.974415 2.486375 0.896450 -0.931127 1.012239 -0.611877 1.202054 0.171479 -0.133901 0.374054 1.106737 +PE-benchmarks/find-parity.cpp__main = -0.877587 0.568054 0.365353 -0.716608 2.274453 -0.192528 -0.100926 1.640273 -0.417063 1.249317 -1.014398 -0.178951 0.092959 -0.746679 0.181759 -0.303732 -0.358851 0.844245 -0.610091 0.233435 0.593570 0.439624 -0.140180 -0.348231 -0.591235 -0.445200 -0.424479 0.390679 0.626138 -0.336808 -0.541990 0.199352 1.588087 -0.605260 1.847523 1.204221 1.171301 0.916989 -0.018367 0.361671 0.341030 0.553983 -0.780143 -0.771714 -0.146357 -0.633988 -1.305497 -0.575427 0.430250 -0.718800 1.394255 0.896192 -0.044531 0.070795 -0.124855 1.187692 -0.199890 -0.139312 1.382255 0.504809 -1.361585 0.545093 -1.291845 2.527317 -0.590540 1.503156 -0.662479 -1.487972 -0.473350 0.389016 0.906902 -1.156638 -0.766136 0.982072 0.170705 -0.863078 0.578824 -0.554865 0.793438 -1.071360 -0.894674 0.752313 -0.382034 0.636629 -0.044586 0.196770 -0.829002 0.603326 -0.371873 -1.571568 -0.179433 1.747175 -1.097657 -0.042816 -2.057302 -0.249037 0.307967 0.331490 -0.312819 -0.770663 0.696739 0.186306 0.391417 -0.825162 1.029475 -0.785487 0.069193 0.827996 0.195123 0.975138 -0.362331 0.715523 1.251572 1.184788 0.422967 0.282515 -1.280080 0.629444 -0.848049 0.217659 -0.285645 0.497193 0.904413 0.552499 1.108439 -1.386296 0.687932 -0.054324 -0.771976 -0.849359 0.269264 -0.601326 -0.807375 -0.468323 0.567688 0.417718 -0.314326 -0.499536 0.442710 -0.054227 -0.723747 -1.130779 0.159875 -0.113248 -0.903204 0.045142 -0.195246 -0.035980 -0.434985 1.234490 1.199035 0.861095 1.660248 0.869833 0.173579 -0.669620 -1.497909 0.043603 1.065270 -0.439041 -1.287276 1.354364 -1.146727 -0.350790 0.346913 1.058231 0.070323 1.209664 -0.679075 -0.761588 -0.508830 0.085843 1.593961 0.775193 0.049286 -0.348194 0.396897 -1.011176 -1.038303 1.701429 1.175402 -1.351857 -0.596842 0.582755 0.123453 -0.951051 1.119941 -1.450586 -0.721262 -0.288665 0.047004 0.630981 -0.726208 -0.459113 0.866277 -1.137294 1.500165 -0.210513 -0.728968 -0.214875 -1.233024 -0.566602 1.432821 0.355061 -0.438308 -0.479453 -0.609603 -0.434494 -1.150348 0.302510 0.806190 0.132917 -0.992284 -0.941910 0.157976 0.880191 -0.350570 0.672398 -0.937700 -0.568215 0.706362 -0.397215 0.922191 -1.549317 -0.244767 -0.897511 -0.032557 0.478270 -0.780687 0.662507 1.955904 -0.507986 0.958988 1.219349 -1.280606 -0.475101 0.946715 -1.372892 1.535392 0.267755 -0.560378 0.222496 0.491443 -0.725986 -0.214692 -0.198908 0.267685 -0.198336 0.715552 -0.431035 -0.186565 -0.639979 -1.145659 -0.297329 0.195895 0.534396 -0.395738 0.194896 -0.427574 -1.033065 -0.528983 -1.270510 0.029811 0.904885 -0.677762 -0.780391 0.947825 0.018104 -0.916833 0.467840 0.098763 0.435787 1.178159 -1.269924 0.151142 0.341337 0.469123 -1.811740 -0.805784 -0.734134 -0.825570 -0.731742 0.034015 -0.793541 -1.037518 -0.797802 0.207785 -1.002446 -1.316394 0.950480 1.818743 0.738610 -0.681241 0.390374 -0.406938 1.141448 0.559305 -0.234442 0.120394 0.681806 +PE-benchmarks/birthday-paradox.cpp__main = -0.294242 0.101551 0.059668 -0.226471 0.569201 -0.360137 -0.049232 0.560838 0.440722 0.331248 -0.244236 -0.232796 0.011669 -0.130716 0.116693 0.033386 0.063195 0.337152 -0.265676 -0.357179 0.185207 0.428254 -0.204777 0.011503 -0.131825 -0.145229 -0.226620 0.088462 -0.139368 -0.090829 -0.146522 0.081075 0.546589 -0.257267 0.594402 0.431691 0.342173 0.109892 -0.016029 0.580993 0.061333 0.207386 -0.224096 -0.173847 -0.046756 -0.026357 -0.193383 -0.102102 0.125300 -0.287825 0.617017 0.227772 0.037037 0.083387 0.132217 0.395697 -0.235537 0.101091 0.378993 0.139688 -0.407206 0.137008 -0.181744 0.650920 -0.305953 0.313873 -0.181697 -0.465467 -0.188329 0.100008 0.320067 -0.196875 -0.254006 0.146043 -0.203938 -0.316743 0.193803 -0.002243 0.736974 0.069824 -0.182797 0.221289 -0.014367 0.081319 -0.083189 -0.109272 -0.430488 0.122291 -0.136420 -0.242726 -0.002166 0.346560 -0.304441 0.222340 -0.382788 -0.430725 0.071943 0.041807 0.178936 -0.269816 0.132926 -0.085370 0.271257 0.208366 0.285259 0.070118 0.122580 0.227481 0.055003 0.166126 -0.108175 0.325267 0.261886 0.208248 0.122744 0.179158 -0.536715 0.317955 -0.261237 0.006360 0.044665 0.113077 0.224416 0.174690 0.225699 -0.265154 0.249131 -0.158817 -0.196966 -0.132584 0.169599 -0.069245 -0.275307 -0.223960 0.150094 0.102013 -0.320596 -0.210732 0.239259 -0.169419 -0.113489 -0.355914 -0.022824 -0.414133 -0.158356 0.016238 -0.256436 -0.014053 -0.064195 0.264787 0.032064 0.126541 0.454678 0.319261 0.098373 -0.438773 -0.501512 -0.227591 -0.042768 -0.202052 -0.298304 0.374183 -0.329713 -0.041620 0.233364 0.362408 -0.190239 0.497831 0.152687 0.003235 -0.280322 0.081283 0.304149 0.220116 0.040137 -0.190687 -0.248565 -0.504498 -0.250326 0.515484 0.426506 -0.384283 -0.264716 0.054389 0.217422 -0.206776 0.205380 -0.247046 -0.239870 -0.117698 -0.016171 0.202591 -0.146128 -0.109201 0.346828 -0.264939 0.286234 -0.084496 -0.245674 0.242906 -0.644670 0.040228 0.327048 0.199170 -0.073610 0.035463 -0.162182 0.164376 -0.300131 0.118828 0.301653 -0.065694 -0.316305 -0.310404 0.265904 0.173626 0.024734 0.223010 -0.073194 -0.143680 0.352091 -0.250969 -0.039913 -0.344913 -0.049541 -0.407997 0.010638 0.216829 -0.095949 0.054919 0.506539 -0.060162 0.152865 0.520860 -0.365885 -0.257556 0.246158 -0.384919 0.248048 0.008543 -0.425118 0.138972 0.108194 -0.062295 -0.087604 -0.117957 0.093830 -0.115536 0.280020 -0.136933 -0.024847 -0.114846 -0.392964 0.106750 0.110026 0.057853 -0.113511 0.096686 -0.084911 -0.381184 -0.141700 -0.357797 0.065746 0.337885 0.147730 -0.310826 0.244447 -0.147354 -0.427313 -0.244492 -0.136822 -0.109651 0.267594 -0.219980 -0.001529 0.213754 0.082468 -0.417362 -0.073095 -0.276220 -0.168642 -0.167326 -0.312375 0.004344 -0.371601 -0.001351 0.010990 -0.245234 -0.444422 0.185805 0.339538 0.243730 -0.009481 0.162333 -0.044613 0.211283 0.334454 -0.380067 0.099501 0.265849 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.679067 0.505405 -0.017359 -0.639465 1.244691 -1.099809 0.371452 0.885047 0.408021 0.699408 -0.379908 -0.619058 -0.001972 -0.618155 0.407933 0.220081 0.495976 0.518071 -0.431456 -1.030243 0.269686 0.644845 -0.798089 0.425388 -0.390608 -0.167919 -0.505608 0.233210 -0.216114 -0.293681 0.286291 -0.041211 1.224808 -0.883899 1.254373 1.014781 0.090547 -0.139400 0.161475 0.734678 -0.390045 0.481489 -0.530430 -0.046170 -0.321718 0.324324 -0.331631 -0.318011 0.090227 -0.663698 0.569906 0.585186 0.153126 0.165099 0.144021 1.048783 -0.038255 -0.061774 0.960273 0.099320 -0.319172 -0.422738 0.310252 0.703217 -0.604831 -0.411684 -0.184646 -0.557523 0.292359 0.115339 0.159571 0.107799 -0.739180 0.207355 -0.677788 -1.130715 0.226478 0.244509 0.864236 0.290601 0.097333 0.386555 0.143316 0.234890 -0.217575 -0.543675 -0.531468 0.270699 -0.573081 -0.297096 0.236707 0.709635 -0.093805 0.224375 -0.793610 -0.576608 0.144636 -0.103811 0.119169 -0.483140 0.137649 -0.543290 1.037295 0.089453 0.492257 0.168595 -0.042719 0.060173 0.134813 0.718982 0.347980 0.962064 0.456950 0.328676 -0.714040 0.569890 -1.480917 0.643756 -0.368662 -0.133698 0.154589 0.216637 0.205347 0.288339 0.406121 -0.807887 0.690511 -0.602132 -0.229083 -0.695302 0.419077 0.198913 -0.514350 -0.471854 0.057882 -0.112325 -1.033974 -0.634188 0.601128 -0.518831 -0.167858 -0.839049 0.351351 -0.348954 -0.763279 0.220570 -0.971203 0.153478 0.010228 0.320481 -0.446326 -0.059237 1.054742 0.798542 0.402545 -0.090407 -1.212254 -1.012091 -0.611929 0.061286 -0.642697 0.977090 -0.769236 -0.057533 0.445488 0.829604 -0.553613 1.005752 0.301137 -0.083393 0.045524 0.391207 0.228137 0.281499 0.156833 -0.684597 -0.407173 -1.002139 -0.346513 0.654094 1.052807 -0.430818 -0.289936 -0.182834 0.547055 0.179941 0.479449 -0.446410 -0.846825 -0.060654 -0.379482 0.347487 0.091596 -0.150384 0.098759 -0.325693 0.427678 -0.274150 -0.773722 1.004110 -1.515615 0.170300 -0.259393 0.433848 -0.083340 0.360889 -0.313972 0.240979 -0.489274 0.378370 0.769720 -0.763879 -1.126905 -0.957789 0.888819 -0.056575 0.518785 0.479063 -0.451393 0.027517 1.202431 0.397463 -0.683521 -0.482530 0.100798 -0.778607 0.349341 0.451654 0.243753 0.588228 0.861410 0.100190 0.048604 0.341156 -0.689774 -0.135140 0.319917 -0.914504 0.066648 0.130556 -0.191014 0.285490 0.164142 0.713845 -0.048835 -0.225912 -0.103379 -0.208180 0.732753 -0.372790 -0.125615 0.136003 -0.483488 0.124545 0.265414 -0.230237 -0.348886 0.351945 -0.177099 -0.684795 -0.367675 -0.692832 0.384586 0.800343 0.867162 -0.514736 0.402676 -0.616679 -0.366839 -0.402034 -0.798913 -0.567233 0.025957 -0.108991 -0.202212 0.164118 0.224863 -0.284705 -0.230638 -0.325653 -0.087329 -0.436065 -0.577287 0.415216 -0.447587 0.522068 -0.282264 -0.837012 -1.183650 0.191403 0.397655 -0.020835 0.505621 0.132225 -0.034345 0.062147 0.672906 -1.185402 0.483463 0.583450 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -1.741931 0.919415 0.605463 -1.359980 3.501865 -0.647264 -0.036535 1.438881 0.196250 2.278587 -1.668251 -0.923504 -0.983078 -2.519652 0.204147 -1.175191 -0.237146 1.640568 -0.782829 0.690275 1.457330 -0.515708 0.420828 -0.680983 -0.732873 -1.604123 -0.844206 0.694015 1.058082 -0.856995 0.209080 0.222058 2.875042 -0.253810 2.292668 1.801791 1.135816 2.697449 -0.016987 0.804105 0.073915 1.481000 -1.268171 -2.529665 0.967278 -1.116696 -1.732052 -1.295226 1.210058 -1.765708 1.201165 1.983330 -0.224974 -0.317857 -1.309538 1.422642 1.072015 0.651803 2.659337 0.749328 -1.311014 0.305696 -2.838748 1.657754 -1.537953 1.590352 -0.294740 -2.464935 -0.663899 0.474439 0.713086 -1.828008 -1.565555 1.440965 0.857459 -1.599288 0.686506 -0.870478 -1.218208 -1.477421 -2.159010 0.603604 -0.473702 1.776957 -0.215101 0.441694 -0.214038 0.742655 -0.150347 -2.752188 -0.222567 2.485514 -1.178006 0.568460 -1.503310 0.716490 -0.015933 0.064235 -1.312271 -0.735492 0.667882 0.137430 1.116376 -0.622415 -0.166830 -2.006768 1.103612 0.558241 0.103483 0.496719 1.172458 0.421417 0.870528 1.937275 -1.582640 0.719620 -2.694609 0.779972 -0.520340 0.748571 -0.512182 1.027968 0.422932 0.378806 1.862257 -2.979084 1.626709 -0.044502 -1.033964 -2.046078 0.621823 -0.700702 -1.126750 -0.754325 1.600172 0.010669 -0.657020 -0.646240 0.496474 0.045995 -1.304653 -1.009375 -0.007953 1.427542 -1.588666 0.409373 -0.769777 -1.293071 -0.363878 1.110052 1.503113 1.570594 2.901347 2.072794 -0.271974 -0.074108 -2.637609 0.388545 2.676617 0.415173 -2.181921 1.902962 -1.247932 0.056043 0.916171 1.507409 1.295524 1.371397 -1.041587 -0.990784 0.154084 0.170647 2.598794 1.148161 0.690569 -1.647338 1.106810 -0.439318 -0.909986 3.549999 1.580647 -2.450454 0.517499 1.241131 -1.459186 -1.364269 1.065567 -1.258794 -0.239353 -1.004254 0.608665 1.330009 -1.587998 -1.481607 0.366314 -2.181314 2.478529 -0.528107 -0.224780 1.018041 -2.633988 -1.898031 2.706838 0.190862 -0.819358 -1.314092 -1.765544 -0.902498 -2.355219 0.948611 0.842903 -0.701793 -1.462053 -1.905739 0.145973 2.243939 -0.114481 1.016264 -1.581704 -0.836964 1.177646 -0.132654 1.703453 -1.754075 -0.573923 -0.359418 -0.067781 1.120490 -0.202510 0.817815 3.327017 -1.683734 1.432145 1.186381 -0.938791 0.200424 1.841325 -2.180938 2.739359 -0.124765 1.292238 -0.271918 1.055912 -0.965077 0.212219 0.443465 0.188628 -0.025066 0.963086 -0.963524 -0.668200 0.072340 -2.472059 -0.976572 0.386300 1.051056 0.300326 0.590263 -0.063460 -1.335388 -0.542735 -0.844416 0.181471 1.913323 -0.061278 -1.529532 0.944604 0.239535 -0.781851 -0.462147 0.499448 0.635245 2.020775 -2.450102 0.560398 -0.077054 -0.036389 -2.173142 -1.963221 -0.144934 -1.725831 -1.242053 1.146869 -2.347944 -0.643533 -1.499132 0.848528 -1.873409 -0.480624 0.106374 2.667459 1.559667 -0.577811 1.569279 -0.332417 1.777286 0.173894 -0.678486 0.727291 2.029287 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -5.575631 5.399783 3.362695 -5.058407 12.473911 -1.688909 0.580245 4.798727 -3.161590 9.222457 -4.812660 -0.898594 -1.852441 -9.534961 0.431790 -5.398887 -2.267255 4.721257 -0.624461 4.945314 3.976021 -3.936752 1.022312 -1.125128 -3.725777 -7.633070 -2.271571 3.220919 6.736239 -5.474572 3.268723 -0.217204 9.759026 -2.123665 8.855998 6.946921 3.103910 7.101887 1.276179 -1.093846 -1.332564 3.986761 -5.130984 -6.440415 1.086036 -2.175957 -7.091490 -3.632762 3.617337 -4.414892 -0.361021 7.536181 -1.831072 -0.697735 -5.083565 7.121672 3.272781 -0.130936 9.636673 1.283442 -3.220891 -0.430050 -10.796767 7.424523 -4.144606 2.445506 -2.688445 -6.794393 1.009150 0.671744 -0.857588 -5.525692 -2.977780 7.902509 4.251352 -7.307519 1.028295 -4.637485 -9.941361 -6.981801 -5.975637 3.119572 -0.072827 6.313918 0.833968 2.897190 1.481517 4.639006 -2.662615 -11.705907 1.024578 9.707389 -4.353573 -1.449996 -5.315975 5.992436 1.132644 0.789344 -4.293823 -2.558143 2.611793 -0.689925 4.189673 -6.686816 2.155590 -9.136433 0.573022 -0.069594 1.009007 3.481389 3.772023 2.244070 4.893618 8.902140 -7.768589 0.932389 -8.982376 2.377207 -2.217629 2.664978 -2.333679 3.967654 0.779595 3.738115 8.001919 -12.014213 4.142395 -0.750308 -2.239981 -9.662907 0.485375 -3.179925 -2.701940 -2.753368 4.200150 -0.510361 -1.450861 -3.117096 1.605285 1.792468 -4.108245 -4.246564 2.688988 8.146318 -7.622011 2.331926 -1.759844 -2.678810 -1.692958 4.725098 7.673587 6.591106 11.058798 7.221996 0.582983 3.372661 -9.387219 -0.107621 8.559962 2.147838 -7.140858 9.151123 -6.300149 -2.408011 1.534617 6.872533 5.591645 3.621462 -7.777385 -6.838639 4.786278 1.570897 9.249577 1.527765 0.190340 -3.540920 7.283046 -0.550463 -5.689844 11.423851 4.649271 -7.799891 3.748915 3.385533 -5.800145 -4.447922 5.905011 -6.857938 -0.691963 -2.217497 0.654098 4.400169 -3.544158 -3.575103 0.380973 -7.291540 9.394944 -2.214109 -1.231441 3.936855 -6.701284 -9.549123 7.878556 0.321035 -3.017309 -5.916207 -6.366456 -4.565278 -6.896963 2.883958 2.524473 -3.013333 -4.819843 -7.471690 -0.075087 6.381106 0.764098 5.243463 -8.915611 -3.629585 4.311722 2.339744 5.769519 -4.387509 -0.862668 -0.990588 0.292301 2.258155 -1.011444 6.385761 12.676761 -5.099561 6.002685 -0.054391 -5.177147 2.227282 5.350107 -10.117894 10.503965 1.086052 5.641496 -0.165298 2.559609 -3.635976 0.989792 2.405222 -1.287266 1.003373 1.352710 -2.082048 -2.929480 -0.957101 -8.513778 -4.556990 -0.561759 3.048903 -0.827842 2.740099 -0.033074 -4.246291 -2.939562 -4.399245 0.914957 5.849614 -0.406432 -3.139698 5.579424 0.940076 0.507662 0.349060 0.653106 3.313755 5.158877 -9.265423 1.164429 -1.596424 1.647009 -7.070111 -8.876163 0.591550 -6.568478 -4.893354 2.785306 -8.953946 -1.110909 -5.907623 0.653471 -8.533446 -2.242535 2.461604 10.979895 4.170619 -3.927624 4.257312 -3.184370 6.001126 0.267174 -0.614398 2.389199 6.094238 +PE-benchmarks/dfs.cpp__main = -2.296780 0.221120 0.175197 -1.451197 4.547920 -1.868724 0.209962 2.848385 0.818274 2.515558 -2.156960 -0.298065 -1.326189 -2.486006 0.318577 -0.763238 0.760795 2.700023 -1.482329 0.012472 1.921917 0.795576 0.569113 -1.085044 -0.684682 -2.190828 -0.620700 0.705001 0.060084 -0.484558 -0.720340 1.077720 4.229386 -0.252285 3.027544 2.475198 2.335290 3.503396 0.352168 1.489637 0.986851 1.727546 -1.100781 -3.431337 1.231628 -1.194514 -2.191988 -1.528248 1.744089 -2.759546 2.945877 2.226216 -0.087420 -0.231597 -1.369350 1.737078 1.116579 0.224615 3.096846 1.098786 -2.788163 0.423054 -2.387933 3.439597 -2.364655 2.133762 -0.248467 -3.514920 -1.534204 1.366801 1.995337 -2.565538 -2.444516 0.862507 0.579435 -1.841862 1.030723 -0.293322 1.393653 -1.407193 -2.954911 0.657407 -0.898092 1.795368 -0.320126 0.429646 -1.533379 0.387379 0.466361 -2.755291 -0.392141 2.964277 -1.958155 1.570980 -2.787746 -0.295743 0.153306 -0.527490 -1.007377 -1.953882 0.696848 -0.378494 1.361204 0.206833 -0.438841 -1.238838 1.425781 1.126623 0.312576 1.022354 0.118548 0.938670 1.015402 1.545059 -0.129709 1.231020 -4.044507 1.806132 -0.685315 0.232816 -0.380251 0.898434 1.239484 0.497265 2.110861 -3.182739 2.348999 0.128637 -1.390985 -1.715922 1.049392 -0.337457 -1.350275 -1.214009 2.616364 0.016436 -0.760336 -0.542462 1.149450 -0.280639 -1.705023 -1.784754 -0.961757 0.447122 -1.684928 0.541369 -1.151696 -1.685749 -0.243076 1.191837 1.045479 1.834466 3.191835 2.569309 -0.718245 -0.377220 -3.575059 0.465748 2.882092 0.907455 -2.631030 2.119476 -1.557026 0.093801 1.502068 1.916435 1.000918 1.503321 -0.447112 -0.507377 -0.536156 0.023488 3.150488 1.661777 0.899593 -2.521686 -0.068355 -1.154902 -0.370107 4.615320 2.174574 -3.664069 0.332399 2.210962 -0.713261 -2.195071 0.871261 -1.689284 -1.134346 -1.635946 1.325043 1.851016 -2.597299 -1.533314 1.343720 -2.593949 2.447361 -0.447900 -1.015223 1.054735 -3.903090 -1.176928 4.079022 0.425669 -0.422611 -1.107009 -2.545946 -0.479355 -3.624158 0.902183 1.068017 -0.288448 -1.315856 -2.176283 -0.057111 2.926422 -0.249355 1.282016 -1.889000 -0.698832 1.779019 -0.624658 1.201786 -3.205224 -0.968655 -0.443241 -0.049100 1.321878 -0.797705 0.114315 3.298713 -2.210982 1.521826 2.557406 -1.349225 -0.085385 2.200140 -2.591324 3.211350 -0.261951 0.912650 0.386020 1.347531 -1.710256 0.054928 -0.190504 1.021672 -1.070504 1.500901 -2.034181 -0.785848 0.300180 -2.442138 -1.272903 0.622956 1.760537 0.396454 0.457278 -0.404234 -1.511049 -0.674426 -1.818334 0.620985 2.316030 -0.469746 -2.269724 1.291808 0.845408 -2.576237 -0.862795 0.757128 0.827180 2.872412 -3.031130 1.091849 0.442617 0.081629 -3.200813 -2.572107 0.152421 -2.161933 -1.676047 0.728256 -3.061218 -1.951046 -1.537739 1.735517 -2.422935 -0.752621 0.184700 3.167017 1.652140 -0.092144 2.316629 -0.209972 1.584782 0.219381 -0.620125 0.540952 2.662585 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -2.248297 1.659102 0.687610 -2.008890 4.690130 -1.288145 0.441553 1.965997 -0.713912 3.311996 -1.978562 0.036617 -0.771482 -3.687405 0.282320 -1.592457 -0.249619 2.318881 -0.319342 1.747145 1.642243 -1.264677 0.546969 -0.714555 -1.274154 -3.409469 -0.493224 1.224428 1.931198 -1.472864 0.793361 0.302728 4.088544 -0.622538 3.244457 2.788032 1.360557 3.012022 0.858599 -0.498401 -0.003047 1.545930 -1.644759 -2.943618 0.623713 -0.718862 -2.763878 -1.798173 1.545054 -2.204552 0.573543 2.819753 -0.554586 -0.440205 -2.296993 2.360537 1.756267 -0.214506 3.597304 0.611902 -1.315418 -0.196981 -3.180462 3.011241 -1.999267 0.494579 -0.709394 -2.786660 0.201573 0.883594 0.259758 -1.848554 -1.503761 2.213386 1.578725 -2.764728 0.521614 -1.388147 -2.353089 -2.568524 -2.336855 1.052085 -0.429084 2.527580 0.216457 1.074552 -0.044784 1.379403 -0.470242 -3.874878 0.134988 3.397209 -1.550018 -0.338227 -1.745761 2.409644 0.973218 -0.318150 -1.417300 -1.465720 0.852133 -0.639543 1.662353 -1.310408 0.201870 -2.654206 0.233698 0.183516 0.432755 1.723247 0.817107 1.082904 1.580590 2.663272 -2.290103 0.654336 -3.929468 1.265050 -0.764548 0.746836 -0.754446 1.314000 0.739033 1.254259 2.799261 -4.218695 2.036623 0.052209 -0.552825 -3.031845 0.491889 -0.663304 -0.929241 -1.169459 1.947359 -0.284782 -0.494255 -0.854425 0.830086 0.563870 -1.418783 -1.513527 0.464749 2.858664 -2.818093 1.041282 -0.798860 -1.248424 -0.370017 1.362910 2.234305 2.308585 4.016557 2.885292 -0.154709 1.576815 -3.637810 0.161381 3.462302 1.154135 -2.602435 3.164443 -2.085410 -0.904619 0.844103 2.482951 1.982615 1.078594 -2.499862 -2.213022 1.270207 0.281345 3.481895 0.656346 0.154858 -2.143913 2.249603 0.071873 -1.230469 4.585232 1.752944 -3.225544 1.401478 1.876083 -2.377199 -1.865214 1.764070 -2.237104 -0.546605 -1.156591 0.768526 1.797548 -1.706259 -1.542516 0.007340 -2.726880 3.034681 -0.786040 -0.726144 1.351406 -2.618152 -2.677855 3.525192 0.237198 -0.874839 -2.018255 -2.588146 -1.422674 -3.194271 0.985797 0.764695 -1.130053 -1.481588 -2.746283 -0.306002 2.668899 0.077383 1.637319 -3.567231 -0.971157 1.843893 1.113938 1.361324 -2.247973 -0.458811 0.046130 0.222309 0.647255 -0.451013 1.965364 4.185071 -2.176457 1.648978 0.398921 -1.666641 1.223905 2.193580 -3.673461 3.996745 0.153452 2.228994 0.269499 1.012284 -1.443640 0.340149 0.548211 -0.285059 -0.201746 0.722110 -1.476807 -1.154359 0.438344 -2.393917 -1.914935 0.065294 1.663415 0.070661 0.916371 0.018412 -1.558627 -0.911453 -1.730591 0.529577 2.221737 -0.141925 -1.538031 1.998599 1.048812 -0.388735 -0.550857 0.327593 1.372023 2.179997 -3.559759 1.044476 -0.473575 0.591537 -2.745356 -3.589443 0.976246 -2.503220 -1.811154 1.117439 -3.728735 -0.863759 -2.137533 0.871050 -3.282842 -0.563234 0.748115 3.879040 1.313596 -1.023630 1.867734 -1.139692 1.905944 -0.086149 -0.088791 0.749868 2.588565 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.654019 0.135755 -0.270618 -0.317532 1.783670 -0.441773 -0.098189 1.337995 -0.335500 1.106676 -0.301481 -0.049627 -0.170349 -0.926690 0.183402 0.249274 0.103461 0.787565 -0.209492 0.226745 0.504161 0.013824 0.074880 0.025427 -0.334479 -0.554461 -0.195490 0.401862 0.756813 -0.628256 -0.472497 0.242107 1.360202 -0.282588 1.235684 0.811844 0.734080 0.599178 0.386289 -0.485284 -0.061444 0.473350 -0.597745 -0.750199 0.202447 -0.290708 -0.835977 -0.307085 0.534942 -0.361183 0.602534 0.800036 -0.218592 0.179183 -0.306812 0.784570 0.024815 -0.121629 1.107600 0.231216 -0.723291 -0.215787 -0.889064 1.451061 -0.453681 0.351729 -0.569861 -1.113073 -0.201029 0.150196 0.378313 -1.024069 -0.339001 0.979992 0.279335 -0.707797 0.404387 -0.230303 0.615928 -1.091328 -1.100907 0.335692 -0.596769 0.700080 -0.034316 0.258727 -0.488548 0.385148 -0.279562 -1.404564 0.261619 0.975028 -0.834472 0.225217 -0.762449 0.126948 0.082607 0.198194 -0.345538 -0.687429 0.282746 -0.216668 0.487828 -0.303224 1.051894 -0.369154 -0.057030 -0.097019 0.567795 0.755468 0.477285 0.254848 0.737217 1.064239 -0.131574 -0.248356 -0.985723 0.601232 -0.535443 0.277161 -0.269110 0.595666 0.745987 0.313002 0.985186 -1.472247 0.297256 -0.060550 -0.110479 -0.886821 0.159215 -0.431556 -0.395321 -0.455677 0.747277 -0.179033 -0.308732 -0.452484 0.457563 0.243638 -0.962916 -0.337815 -0.057858 0.459606 -1.175237 0.211186 -0.293167 -0.443622 -0.047758 0.590771 0.885020 0.999436 1.170066 0.924503 -0.208477 0.210254 -1.375356 0.153044 0.903997 -0.026027 -0.830765 1.123327 -0.920309 -0.255473 0.426693 0.966835 0.582832 0.300886 -0.279310 -0.296636 0.410602 0.531032 1.170901 0.056710 0.206443 -0.382264 0.057343 -0.232979 -0.604453 1.540690 0.239461 -1.154216 0.369637 0.346195 -0.060799 -0.292862 0.513494 -1.084884 -0.314135 -0.583060 0.302120 0.819343 -0.700450 -0.204112 0.581652 -0.794966 1.036399 -0.271888 -0.528594 0.519035 -1.043047 0.035285 1.346714 0.310495 -0.151164 -0.624810 -0.952220 -0.321290 -0.812913 0.278295 0.129457 -0.019627 -0.363879 -0.865622 -0.292415 1.031229 0.344257 0.616446 -1.502069 0.038803 0.561810 -0.117209 0.416163 -0.864122 -0.153843 -0.150946 -0.168946 0.201745 -0.488168 0.384027 1.219687 -0.748096 0.414889 0.568671 -0.250061 0.108673 0.360743 -1.282413 1.171438 0.220526 0.507038 0.141153 0.321179 -0.587609 0.100267 -0.064700 0.372739 -0.197836 0.302143 -0.283365 -0.324473 0.084275 -0.794692 -0.786965 -0.259051 0.419482 -0.073855 0.341190 -0.612931 -0.590512 -0.324117 -0.661604 0.297382 0.714917 -0.315307 -0.428065 0.800848 0.014419 -0.300359 -0.016041 0.129724 0.326949 0.778642 -1.098439 0.009572 0.079596 0.616822 -0.823381 -0.964924 -0.145895 -0.424551 -0.297110 0.320910 -1.129275 -0.528807 -0.631416 0.101326 -1.075304 -0.085115 0.275855 1.436409 0.407551 -0.458714 0.614717 -0.227202 0.516691 0.070190 -0.035910 0.138805 0.623020 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.387277 0.281680 -0.978145 -0.906936 4.355561 -1.121966 0.010345 1.925078 -1.709963 2.744011 -0.557742 -0.552390 -0.844773 -3.295827 0.536057 0.393658 0.495383 1.588597 -0.011963 1.300997 1.099221 -1.422339 0.588436 0.005878 -0.540139 -1.594539 -0.276737 1.073755 2.945056 -1.862372 -0.678830 0.332047 3.097860 -0.558243 2.126957 1.551608 0.714486 1.583024 1.237941 -3.398740 -0.365937 1.215734 -1.227503 -1.875257 0.567092 -0.444932 -1.958138 -1.082602 1.417136 -0.456357 -0.552228 2.062470 -0.641483 -0.124363 -1.879916 1.941812 1.313460 0.027152 2.626079 0.291047 -0.125823 -1.266442 -2.107164 1.820663 -1.190361 -0.421643 -1.339547 -1.854450 0.122350 0.417582 -0.523193 -1.857683 -0.614530 2.358821 1.450414 -1.714827 0.645487 -0.513965 -0.563895 -3.234432 -2.713016 0.427426 -1.778320 2.134517 -0.011285 0.778631 0.267224 0.883020 -0.300778 -3.416261 0.634414 2.078959 -1.052587 -0.520552 -0.459207 1.934532 0.569181 -0.171328 -1.475222 -1.378820 0.262952 -1.009864 1.331432 -1.421568 2.538117 -1.343812 -0.471212 -0.784757 1.469866 2.248849 2.512624 0.132432 1.060864 2.482744 -1.781796 -1.315708 -2.364776 0.720847 -1.035862 0.672660 -0.804371 1.655582 1.429419 0.539389 2.164430 -4.422182 0.878648 0.144052 0.404355 -2.419073 0.374133 -0.465491 -0.547321 -0.713308 1.703115 -0.969602 -0.470205 -0.598438 1.005140 0.976336 -2.170550 0.567270 0.094895 3.104070 -3.429134 0.845270 -0.648984 -1.404151 0.354371 0.580468 2.053683 2.156864 2.673936 2.266329 -1.058155 2.127471 -3.177424 0.854855 2.605078 -0.418463 -1.666932 2.721766 -1.682602 -0.473590 0.671945 2.250157 2.089716 -0.106991 -1.016142 -0.880834 1.876482 1.106462 2.294753 -0.759609 0.524208 -1.281884 0.986852 0.673751 -0.725133 3.324494 -0.066367 -2.264948 1.952195 1.217738 -1.656225 -0.309321 0.866134 -2.265721 -0.069092 -1.730525 0.998559 1.943299 -1.564274 -0.641537 -0.124454 -1.584919 2.364990 -0.713775 -1.507183 1.532017 -1.599048 -0.010062 2.898338 0.418518 -0.168131 -1.869418 -2.821020 -1.663212 -1.992362 0.793224 -0.446013 -0.717743 -0.534497 -1.949528 -1.135206 2.737188 1.002827 1.167124 -4.749274 0.943741 1.174998 1.591733 1.000771 -0.679021 -0.288089 0.988884 -0.546857 -0.087107 -0.767692 1.146217 2.583106 -2.132252 0.615661 -0.326014 -0.096147 1.525888 0.713343 -3.198765 2.701241 0.666435 3.138915 -0.028747 0.753512 -0.858067 0.674986 0.301901 -0.154342 -0.318768 0.324137 -0.957900 -1.039333 1.148227 -1.103080 -2.991009 -0.613072 1.157850 0.341567 0.897829 -1.490520 -0.914119 -0.366294 -0.581408 0.986665 1.486393 -0.297716 -0.645879 1.395074 0.784907 0.440134 -0.153982 0.341318 0.730549 1.512676 -2.566441 0.377449 -0.489707 1.813497 -0.808239 -2.709243 0.647962 -0.719220 -0.275739 1.974266 -3.254846 -0.633961 -1.502147 0.433390 -2.794768 0.813282 0.080504 3.235333 0.544866 -0.852112 1.370766 -0.498122 0.611456 -0.663021 -0.019476 0.498680 1.251456 +PE-benchmarks/partition-problem.cpp__main = -2.472376 1.612921 1.230506 -1.706542 4.983070 -0.432098 -0.545939 2.137738 -1.291431 4.215386 -1.598077 -1.019800 -1.232558 -3.835131 0.363706 -1.699091 -0.685660 1.660189 -0.177722 2.382350 1.900857 -1.925638 0.236688 -0.161533 -1.485564 -2.843380 -1.129053 1.417180 3.709799 -2.903570 -0.104692 0.132189 4.662867 -0.756756 4.227922 3.346771 1.713588 3.113405 0.686757 -1.993224 -1.377757 2.247053 -2.762252 -2.282959 0.666599 -1.336306 -2.938594 -1.442125 1.667703 -0.428728 -0.014537 3.680813 -1.176851 0.185913 -2.285085 2.911058 0.602745 0.549860 4.803307 0.572988 -0.567822 -0.383154 -4.683452 3.201890 -1.788480 1.075650 -2.077865 -2.799894 0.747470 -0.615096 0.329431 -2.708681 -1.161914 4.214294 1.844335 -3.316238 0.679575 -1.903929 -3.305799 -3.870804 -3.868496 1.289639 -0.584012 3.080033 0.233892 1.320789 0.450950 2.663579 -1.385038 -5.694441 1.178022 3.858612 -2.292501 -0.841937 -2.001353 2.784777 0.211977 1.005074 -2.243018 -0.829363 1.321394 -0.741719 2.075972 -2.733748 2.778952 -3.473826 0.328885 -0.491318 1.154378 1.072757 2.561486 0.678384 3.220342 4.410255 -2.912007 -0.479057 -3.451072 0.797936 -1.018945 1.102274 -0.853979 2.722705 0.288512 1.144027 4.196013 -5.729631 0.916657 -0.386490 -1.134365 -4.060984 0.074040 -2.108845 -1.350092 -1.674160 2.326233 -0.277970 -0.887201 -1.877583 1.036843 0.967177 -2.118643 -1.100384 1.281598 3.391453 -3.244047 0.898447 -1.028463 -1.714576 -0.572446 2.352040 3.421343 3.724545 4.981333 3.606499 -0.308772 0.830131 -4.290114 -0.078634 3.419608 0.046131 -3.504303 4.353905 -2.977333 -1.197735 0.707344 3.625121 3.110275 1.047109 -2.668358 -2.946928 1.567628 1.486267 4.459460 0.103453 0.333104 -0.108370 2.775513 -0.116196 -3.195081 4.634650 1.407815 -2.837658 0.974480 1.063416 -2.007614 -1.836114 2.792106 -3.263200 0.414805 -1.511560 0.302518 2.323194 -1.756673 -0.716230 0.735073 -3.419991 4.286953 -1.019727 -0.426204 2.089557 -3.318773 -3.920099 3.553726 -0.241189 -1.307467 -3.202026 -3.193651 -1.791326 -2.810715 1.594779 0.368665 -0.814068 -2.292044 -3.670749 -0.134196 3.038685 1.175163 2.539128 -4.476702 -1.360671 1.847247 0.789047 2.926900 -1.102329 -0.544763 -0.053277 -0.352989 1.164996 -0.802768 2.968643 5.550932 -2.533969 1.881471 -0.484867 -1.848173 0.957655 1.981083 -5.085733 4.763714 0.664127 1.954093 -0.280011 1.168446 -1.731319 0.396561 1.337821 0.219412 0.582591 0.364318 -0.239346 -1.327894 -0.786937 -3.416509 -2.036150 -1.046882 0.857102 -0.997148 1.543509 -0.413604 -2.097443 -1.237998 -1.824027 0.762264 2.890071 0.000369 -0.506065 2.957926 -0.223933 0.886634 1.103269 0.310826 0.937289 2.490660 -4.509741 -0.366699 -0.837269 1.274445 -2.181656 -3.913042 -0.738203 -2.357013 -1.190665 2.218387 -3.775305 -0.155952 -2.911950 -0.251573 -2.809736 -0.423844 1.074538 4.977451 2.495628 -2.522901 1.665347 -1.449625 2.695027 0.259666 -0.727502 0.916637 2.403017 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -1.925209 1.325904 1.035085 -1.356035 3.501412 -0.195552 0.002226 2.027803 -1.511372 2.631693 -1.549203 -0.026824 -0.730842 -2.337957 0.164913 -0.957934 -0.497000 1.125453 -0.389571 1.477643 1.484620 -1.008172 0.176323 -0.508349 -1.062265 -1.365045 -0.568373 0.779204 2.018880 -1.152075 0.118934 0.041460 2.821087 -0.569296 2.880699 2.300479 1.004477 2.281815 0.209583 -0.968119 -0.692777 1.657866 -1.792449 -2.127844 0.484533 -1.179702 -1.857730 -1.078527 1.211278 -1.184279 0.092362 2.367702 -0.594038 -0.039131 -1.292247 2.044467 0.665304 -0.025608 3.215656 0.571178 -1.339063 -0.233272 -2.871705 2.250986 -1.140477 1.312275 -0.989151 -2.220133 0.287379 -0.082731 0.099016 -1.749823 -0.827301 2.344490 0.797234 -2.193550 0.682925 -1.276212 -1.812940 -2.125194 -2.095604 0.802587 -0.108744 2.002532 -0.068870 0.722609 0.015400 1.472972 -0.708358 -3.594459 0.358181 2.719154 -1.655746 -0.235463 -1.664658 1.500611 0.042386 0.601207 -1.479672 -0.400561 1.043630 0.056472 1.286494 -2.173303 1.325860 -2.229755 0.429439 0.114033 0.634129 0.937093 1.007297 0.919899 1.982921 2.719564 -1.364069 0.573349 -2.477717 0.653639 -0.928047 0.792576 -0.547502 1.466965 0.697657 0.539557 2.642941 -3.295282 1.140366 -0.070841 -0.824437 -2.813183 0.438441 -1.432037 -1.141029 -1.097839 1.602467 0.004889 -0.631782 -1.242741 0.715118 0.311805 -1.623159 -1.150222 0.561542 1.767629 -2.199164 0.470165 -0.760481 -0.901512 -0.396035 1.709237 2.058634 2.191980 3.348903 2.311108 -0.081531 0.358721 -2.707598 0.066196 2.573231 0.436736 -2.506858 2.545834 -1.919397 -0.660081 0.711824 1.796057 1.867197 1.572189 -1.975391 -1.983819 1.059130 0.547950 3.087056 0.807587 0.607535 -0.620452 1.875314 -0.756643 -1.738816 3.051019 1.338021 -2.536229 0.842106 0.897750 -1.063219 -1.209519 1.737973 -2.055241 -0.172608 -0.767928 0.027110 1.490741 -1.566885 -1.123844 0.496551 -2.527863 3.065714 -0.558524 0.063969 0.955177 -2.466054 -1.957988 2.329344 0.465718 -1.130686 -1.876471 -1.676892 -1.752793 -2.245723 1.043463 0.747871 -0.504491 -1.863819 -2.483463 -0.157862 1.550545 0.325955 1.459873 -2.507638 -1.003761 1.368588 0.234939 1.904717 -1.227192 -0.574676 -0.543547 -0.301079 1.310167 -0.688320 1.938992 3.650656 -1.649046 1.861414 0.580932 -1.160451 0.394502 1.703687 -3.005894 3.222722 0.334106 1.362128 -0.095308 1.047679 -1.404595 0.160600 0.591953 0.014314 0.315557 0.716446 -0.519679 -0.792365 -0.541542 -2.459234 -0.930405 -0.211570 0.624767 -0.295678 0.840753 0.057319 -1.578256 -1.047372 -1.679839 0.225754 2.140154 -0.605517 -1.185897 1.657672 -0.143882 -0.109681 0.251780 0.371917 0.791759 1.880034 -2.979505 0.114840 -0.364727 0.294801 -2.278561 -2.024560 -0.432778 -1.604242 -1.291594 1.341812 -2.279364 -0.091989 -1.854156 0.148948 -2.115682 -0.933952 0.540868 3.287050 1.369440 -1.335040 1.412854 -0.853604 2.156003 0.480329 -0.270613 0.235289 1.796149 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -6.084656 5.650826 4.133064 -4.550680 11.003210 0.402891 0.702128 5.525931 -8.933673 10.361211 -3.849446 1.267229 -2.156292 -8.585090 0.217494 -3.838065 -2.433738 2.013467 0.794369 7.728290 4.170735 -6.786541 0.895127 -0.416309 -4.396384 -6.778565 -0.643423 3.309688 9.798138 -4.815282 2.646562 -0.925032 8.663559 -2.221821 9.398370 7.886915 0.970706 6.175290 2.030355 -7.980189 -4.617572 4.994798 -6.674170 -5.168620 0.199410 -2.647108 -7.080004 -3.986500 3.762623 -2.827852 -4.883961 8.899754 -3.243601 -0.110150 -5.642387 8.043790 2.792597 -1.912997 11.490990 0.514291 -1.762680 -2.899195 -9.853510 6.937243 -2.618280 0.151350 -4.218615 -5.512423 4.639790 -1.532249 -3.562915 -3.138370 0.060905 10.226293 4.415805 -9.036764 0.890269 -5.438747 -13.020708 -9.138189 -5.959799 2.940977 1.132749 7.587283 1.018042 3.791106 3.447618 6.773200 -4.017665 -13.910165 3.340646 9.388150 -4.737374 -4.735645 -4.415111 9.718499 1.217790 2.183458 -5.587830 0.037636 3.397431 -1.188642 4.926217 -11.350433 5.724212 -9.314845 -0.935902 -1.649295 3.483111 4.051515 4.346497 2.880726 7.809694 10.884726 -7.603144 1.488048 -7.114511 1.568424 -2.359482 2.608437 -2.375857 5.674762 1.644921 2.958831 10.387822 -12.663993 2.326688 -0.315449 -1.221019 -11.560152 -0.096461 -5.292795 -2.263210 -3.784427 4.646082 -1.328038 -1.256958 -4.886590 2.399479 2.546090 -4.966981 -2.333800 4.156049 9.909559 -8.821865 2.728217 -2.027955 -2.088514 -1.034020 5.994245 8.350025 8.599922 11.737074 7.907766 0.408085 4.190071 -8.831338 -0.543077 8.630714 2.322976 -7.914742 10.373257 -7.058473 -4.170089 0.692157 6.928371 8.434224 3.459675 -9.799499 -9.439232 6.880136 3.085429 10.595613 0.990727 0.820249 -0.031821 9.670733 -1.141585 -6.907905 7.748738 4.191187 -6.782556 4.493237 2.218160 -6.624403 -3.232257 7.361004 -7.918283 0.406261 -1.813140 -1.016143 5.210073 -3.601582 -2.382361 -0.223298 -8.271642 10.763209 -2.252421 1.428484 4.006779 -5.725275 -8.287512 5.130005 1.104335 -3.840787 -7.915800 -6.150206 -9.105633 -6.507039 3.479377 1.168328 -2.315124 -5.935745 -9.309997 -1.847004 3.333050 3.102721 5.970210 -11.280137 -2.858880 4.828843 4.005129 6.137530 -0.873149 -1.022029 -0.171032 -1.167080 3.170071 -1.795169 9.915592 11.874665 -5.144666 6.581591 -2.959699 -3.816836 3.855730 4.307326 -12.105044 11.570842 2.095098 6.061322 -0.043263 2.739806 -3.967816 1.442660 3.098548 -2.548514 2.182771 0.701370 -0.796155 -3.574024 -1.792403 -7.663587 -4.473931 -2.881749 1.223742 -1.897718 3.709344 0.920651 -5.378312 -4.022734 -6.504300 1.468226 6.544013 -1.539722 -1.326993 7.293212 -0.286996 3.762459 1.697903 0.575886 3.368374 4.412873 -10.853961 -0.344630 -3.026751 2.433500 -5.683513 -7.901701 0.061921 -5.383206 -5.262286 5.636250 -8.551907 2.189977 -7.030976 -1.479581 -8.155455 -2.751007 2.543282 12.090388 2.820579 -6.031601 3.728461 -4.395790 6.505643 0.747926 0.478613 0.716051 5.261150 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -1.719344 1.314977 0.425800 -1.389184 3.638095 -0.793902 0.301525 1.762046 -0.512679 2.491083 -1.420831 -0.511316 -0.631993 -2.753062 0.290022 -1.192187 -0.318998 1.712331 -0.328705 1.281223 1.341840 -0.856705 0.223140 -0.437680 -0.949386 -2.041391 -0.542803 0.880199 1.715847 -1.186624 0.208135 0.236788 3.166443 -0.483491 2.793652 2.179233 1.226655 2.202370 0.527355 -0.348275 -0.316585 1.348078 -1.479274 -2.123027 0.443333 -0.724946 -2.126005 -1.241021 1.120003 -1.398832 0.815353 2.228157 -0.432474 -0.062350 -1.461131 1.745394 0.930545 0.123681 2.818596 0.595723 -1.026075 -0.077726 -2.670836 2.353779 -1.243679 0.807415 -0.743643 -2.188897 0.068759 0.313571 0.259925 -1.778819 -1.054302 2.024934 1.179569 -2.031765 0.641269 -1.104337 -1.534351 -2.075000 -2.126583 0.859811 -0.523293 2.022427 0.045708 0.712666 -0.242959 1.141690 -0.586903 -3.197941 0.250117 2.701125 -1.377905 -0.250488 -1.574159 1.558919 0.515056 0.263079 -1.251753 -1.055546 0.817181 -0.280441 1.251590 -1.201712 0.563770 -2.152613 0.231212 0.223728 0.402596 1.391014 1.099301 0.736901 1.508537 2.352055 -1.696833 0.367214 -2.840561 0.938535 -0.811109 0.720812 -0.515484 1.191112 0.647836 0.876680 2.163222 -3.419041 1.281584 0.053131 -0.575350 -2.373253 0.354981 -0.950544 -0.960678 -0.988566 1.523727 -0.066032 -0.530480 -0.891471 0.645593 0.437623 -1.232383 -1.109222 0.420913 1.940751 -2.252927 0.584979 -0.660760 -0.977321 -0.430790 1.350420 1.912004 1.920530 3.176293 2.227403 -0.150567 0.697021 -2.840310 0.089799 2.586784 0.447419 -2.143869 2.471349 -1.815299 -0.632534 0.633870 2.041046 1.525496 1.075960 -1.787732 -1.608524 0.900570 0.447227 2.798882 0.472671 0.225328 -1.351197 1.653513 -0.354439 -1.545837 3.555509 1.444646 -2.380494 0.614051 1.092699 -1.630635 -1.346422 1.547824 -1.967252 -0.297523 -0.986451 0.478021 1.435123 -1.345835 -1.056991 0.386054 -2.193728 2.465723 -0.615342 -0.537323 0.925628 -2.230071 -1.731050 2.894248 0.240076 -0.810310 -1.596073 -1.966129 -1.015125 -2.219345 0.906727 0.630882 -0.566872 -1.443810 -2.130519 -0.139094 2.166554 0.192803 1.349538 -2.532320 -0.786972 1.347449 0.479616 1.476028 -1.713111 -0.443397 -0.281728 0.078253 0.750892 -0.424415 1.609955 3.496945 -1.628929 1.348401 0.579692 -1.214587 0.592717 1.651162 -2.894754 3.072490 0.259579 1.553748 0.024331 0.835168 -1.190705 0.146848 0.471695 0.010448 -0.006702 0.660576 -0.754998 -0.767708 -0.021896 -2.135098 -1.368347 -0.103553 1.040611 -0.245927 0.765499 -0.173368 -1.390057 -0.790730 -1.458862 0.344264 1.885092 -0.138893 -1.031555 1.591812 0.317623 -0.193919 -0.013789 0.255014 0.863190 1.829903 -2.747565 0.389932 -0.284320 0.586232 -2.103799 -2.678275 0.198187 -1.780282 -1.225608 0.906879 -2.559498 -0.593562 -1.734185 0.412360 -2.598663 -0.613741 0.680900 3.101024 1.255161 -1.009651 1.280430 -0.778662 1.761883 0.136135 -0.250982 0.682147 1.908320 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -14.020226 11.404456 3.495426 -10.680629 26.510494 -3.430031 2.729197 7.438956 -7.288440 22.473408 -10.098739 -7.446658 -7.368545 -24.558684 1.013703 -12.756173 -4.971416 9.741561 -0.720813 13.368353 11.017258 -13.873011 2.306754 -2.327830 -7.876262 -17.416182 -4.688030 7.103901 21.240254 -13.966943 1.075811 -1.051949 24.475641 -3.548330 21.544961 17.364800 6.382402 17.804650 1.766188 -8.636459 -8.382305 12.726720 -14.428161 -15.238657 2.646253 -6.580107 -16.138720 -9.566313 9.770419 -4.979036 2.079573 20.292098 -6.430063 -0.682215 -14.211624 14.649809 6.947902 4.073863 25.718866 2.577596 -1.949362 -2.914449 -25.470448 16.095326 -8.894013 4.259910 -6.308763 -13.960322 5.179170 -3.050993 -2.563785 -13.136138 -6.477249 21.691110 12.481623 -18.603638 2.735773 -11.900995 -25.776369 -18.693706 -19.708356 6.045809 -2.545785 18.276104 1.813796 7.385155 2.238325 13.665497 -6.915845 -30.575277 5.193419 22.989294 -9.459432 -5.015815 -9.584309 18.752935 1.816658 4.236376 -14.231640 -3.702091 6.311108 -2.172253 11.436992 -17.761596 5.687848 -23.591027 2.758573 -1.884610 3.335808 5.567517 16.369675 2.405314 14.109858 23.635088 -19.427798 0.079141 -20.812745 3.607023 -3.023881 7.031365 -4.396600 13.567470 -0.618623 5.124284 21.500254 -31.656433 6.877701 -1.029462 -5.259340 -24.881504 0.137696 -11.083615 -6.854167 -7.593460 11.499411 -1.633871 -4.182313 -9.749006 4.027216 5.094951 -11.187050 -4.352862 9.071266 20.611267 -17.162667 5.510858 -5.462188 -8.804641 -4.225332 12.264617 17.622060 18.324862 27.237064 19.966093 -0.249535 8.340814 -22.122506 -0.210231 20.264638 4.130938 -19.358822 21.871421 -16.420801 -5.577427 2.940284 18.145909 17.669421 6.925586 -18.169626 -14.961238 12.361648 5.614720 23.280645 0.701152 2.449654 -2.602124 18.740541 0.274605 -15.822254 24.889404 10.641413 -16.535701 7.514177 6.153520 -14.476362 -8.998294 15.828700 -15.650125 3.475343 -8.805395 2.147927 11.443661 -9.046364 -5.761304 -0.152712 -19.053054 23.949351 -5.402403 1.109950 11.175216 -17.679905 -19.705881 20.210274 -1.719290 -8.338668 -17.045714 -16.729435 -14.207208 -15.525739 8.975597 2.589247 -6.827062 -13.871237 -19.926359 -0.485827 17.423433 5.188070 13.942664 -19.212791 -7.743623 9.850537 8.288065 16.275096 -5.602914 -3.305556 -0.041546 1.140195 7.654406 -1.718842 17.265289 29.567814 -13.680174 11.398408 -3.323367 -7.763336 7.182105 12.115500 -26.037325 25.667536 3.270661 12.944837 -2.945591 6.929963 -8.109897 2.759625 8.429000 -0.480750 4.831139 2.687542 -2.392411 -7.376381 -1.872051 -19.230223 -10.510036 -3.975597 5.361119 -3.456647 8.225801 -0.332010 -10.502237 -7.113198 -11.385428 3.038101 15.998050 1.825148 -3.397542 13.752227 -0.882277 5.966900 7.088063 2.127467 5.633118 13.297628 -23.673439 -1.253223 -6.086527 3.736769 -12.028013 -24.171372 -1.040014 -14.012841 -9.653703 13.002170 -21.092094 2.305468 -16.330456 -0.841855 -21.163435 -3.218114 4.107292 26.577542 12.380294 -9.782062 9.538119 -7.529219 15.446116 -0.288230 -3.169315 7.950014 14.545001 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -12.648247 11.060020 2.596538 -9.873351 24.423624 -3.054190 2.668346 5.735263 -8.712658 21.507125 -8.481471 -6.149223 -6.730557 -24.033815 0.956630 -11.896223 -4.745613 8.183720 0.590593 13.510348 9.604383 -15.099850 2.438746 -1.403258 -7.703203 -17.803741 -3.413560 7.130095 21.922787 -14.143894 1.570160 -1.400962 22.418437 -3.882505 19.238563 15.835124 4.999350 15.586527 2.757769 -11.816427 -8.620650 11.264380 -13.438776 -13.088464 1.534454 -5.207479 -15.331709 -8.448055 9.198143 -3.300811 -1.477343 19.166261 -6.462039 -0.866624 -14.588629 14.316831 6.955485 2.960736 24.181017 1.536554 0.238648 -4.870285 -23.604515 14.946909 -8.143409 1.021112 -6.610223 -11.466109 6.650927 -2.944500 -5.647895 -10.609797 -4.522430 20.908803 12.825563 -18.192768 1.574142 -11.377457 -27.290446 -18.277873 -17.822864 5.737639 -2.127845 17.530438 2.496922 7.666509 4.327805 13.458535 -7.004784 -29.058414 5.770164 21.165418 -8.163564 -6.732539 -7.298899 20.430110 2.484912 3.405465 -13.473255 -3.021327 5.477139 -2.976848 10.933788 -19.332452 6.441677 -23.102711 1.245803 -3.499799 3.755862 5.797911 16.326713 1.562426 12.867395 22.525994 -19.740631 -1.605473 -19.313586 2.583985 -2.072144 6.439836 -4.764746 12.895334 -0.998640 5.238117 20.584377 -30.727199 5.887462 -1.106341 -3.466175 -24.147143 -0.711239 -9.759137 -5.326241 -6.677667 10.314937 -2.572179 -3.350014 -8.954439 4.018659 6.012718 -10.711742 -2.482339 9.694498 21.926992 -17.172323 5.902344 -4.695079 -7.821914 -3.666246 10.938184 17.008100 17.485452 25.463414 18.637770 -0.069227 11.047293 -20.662558 -0.144406 18.897706 4.020468 -17.571338 21.115179 -16.112645 -6.090413 1.651298 17.450451 17.539098 5.366081 -18.361002 -14.916756 14.121685 5.977573 21.405044 -1.524108 1.653073 -1.444555 19.041416 1.804325 -14.460551 21.973595 9.069634 -14.837961 9.168726 5.756215 -15.032867 -7.376410 15.361373 -15.175942 4.177453 -8.328848 1.737302 11.092555 -7.753966 -4.360328 -1.859773 -17.120384 22.166813 -5.289814 1.012943 11.180674 -14.738362 -18.729695 17.466041 -2.088513 -7.254398 -16.857200 -16.248715 -15.398514 -14.000267 8.096204 1.500537 -7.378998 -12.256298 -18.914936 -1.619846 16.014266 5.856430 13.446530 -20.555605 -6.047017 9.290040 11.000815 14.784557 -2.449932 -2.355588 1.683602 0.944778 5.972064 -1.795171 17.674806 26.556302 -12.783966 11.033916 -6.928785 -7.312872 8.636141 10.296752 -24.958975 24.125554 3.979141 13.473763 -2.574516 5.918302 -7.082055 3.348876 8.319164 -2.184172 4.947526 1.121733 -2.116793 -7.522287 -1.037550 -16.910015 -11.165904 -4.769113 5.120087 -3.023271 7.991765 -0.310823 -8.813611 -6.788969 -10.654082 3.473784 14.155528 1.993740 -1.521369 13.546882 -0.152605 7.768999 7.355014 1.652565 5.716997 11.269591 -22.231080 -1.469096 -6.662956 4.622706 -9.931571 -23.725941 -0.039622 -12.441905 -8.699608 12.796709 -20.736158 3.225387 -15.233162 -1.349472 -20.714561 -1.938961 3.927670 24.967963 10.204965 -9.422177 8.464743 -7.604845 13.241129 -1.223201 -2.102216 7.660335 12.695089 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -2.105406 1.994922 1.346047 -1.560076 4.352967 -0.107032 -0.181707 2.134511 -1.014455 3.440557 -1.767388 -0.317667 -0.838438 -2.901335 0.055850 -1.712758 -0.867009 1.390105 -0.411297 1.536057 1.540454 -1.259007 0.258713 -0.359259 -1.358791 -2.668193 -0.869025 0.985426 2.742113 -1.616065 -0.018838 -0.145008 3.612214 -0.743043 3.169934 2.509864 1.614163 2.589989 0.281185 -0.532278 -0.853238 1.680387 -2.162897 -2.073427 0.544323 -1.392800 -2.360007 -1.077546 1.383001 -1.138995 0.455158 2.744623 -0.734516 -0.014014 -1.525881 2.569796 0.535928 0.260862 3.846737 0.471970 -1.142071 -0.658282 -3.805084 2.760987 -1.381447 1.347113 -1.341436 -2.416202 0.264596 -0.202242 0.204405 -2.250843 -0.897144 3.137738 1.242665 -2.632872 0.597563 -1.685185 -2.819372 -2.713948 -2.609151 1.056837 -0.227560 2.289649 0.189326 0.977045 -0.276629 1.946241 -1.094526 -4.493734 0.548136 3.567882 -1.742075 -0.171238 -2.063521 1.914260 0.154859 0.753182 -1.601043 -0.652673 1.109667 0.106954 1.458171 -2.921461 1.388382 -3.356552 0.687299 -0.055200 0.514902 0.627003 1.202573 0.689356 2.302785 3.577805 -2.397403 0.294442 -3.268768 0.658527 -0.638779 0.961248 -0.767341 1.801195 -0.035324 1.080833 3.193120 -4.476642 1.204711 -0.334358 -1.216039 -3.590178 0.190825 -1.649029 -1.172023 -1.057612 1.594176 -0.040986 -0.701317 -1.575354 0.698650 0.329275 -1.818962 -1.617396 1.157043 2.793733 -2.744210 0.638685 -0.728122 -1.042473 -0.710501 2.051649 2.776123 2.562545 4.130930 2.737559 0.247763 0.941716 -3.462957 -0.142529 2.783718 0.916735 -2.912175 3.271280 -2.464764 -0.817908 0.713008 2.550155 2.051028 1.717838 -2.593370 -2.535254 1.302517 0.824945 3.578702 0.726341 0.472014 -0.504803 2.421257 -0.939029 -2.318792 3.731725 1.801190 -2.653897 0.706853 0.863535 -1.407425 -1.396814 2.313390 -2.592083 0.082192 -0.909870 -0.024161 1.770018 -1.419483 -1.067844 0.547308 -2.836607 3.785602 -0.710663 0.132562 1.458222 -2.776909 -2.974864 2.890413 -0.111234 -1.259618 -2.183285 -2.228445 -1.901018 -2.355072 1.088783 0.922461 -1.015501 -2.136275 -2.945364 0.068006 2.264833 0.503588 1.939941 -3.330323 -1.553211 1.557259 0.302324 2.439991 -1.444835 -0.450156 -0.766233 -0.116429 1.390537 -0.705760 2.555807 4.610779 -1.784593 2.172478 -0.192828 -1.457189 0.462264 1.910413 -3.682967 3.740139 0.465480 1.627840 -0.166511 1.076051 -1.414758 0.311906 0.843847 -0.008403 0.601117 0.766609 -0.476867 -0.991445 -0.625167 -3.183553 -1.307970 -0.407687 0.818961 -0.729283 1.021264 -0.032236 -1.701347 -1.234955 -1.957866 0.210891 2.287082 -0.301370 -0.954308 2.059819 -0.293175 0.070513 0.678521 0.328723 0.949129 1.977906 -3.356919 -0.186239 -0.466819 0.408957 -2.606278 -3.219270 -0.649782 -2.074593 -1.665234 1.328175 -3.242955 -0.305534 -2.218439 -0.055760 -2.948163 -0.953030 0.981068 4.082770 1.877188 -1.583775 1.494263 -1.055821 2.471504 0.310717 -0.366264 0.860625 2.090216 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -2.003256 0.833146 0.345343 -1.854099 4.473149 -0.981989 -0.055263 2.558363 -0.131093 2.656643 -1.882769 -0.190966 -0.857470 -3.163592 0.354390 -0.852410 0.056447 2.071085 -0.799475 1.190131 1.711079 -0.350149 0.597602 -0.810191 -0.974374 -1.965896 -0.605086 0.949702 1.000352 -0.705130 0.151580 0.397099 3.562203 -0.147499 2.940015 2.283930 1.548679 3.025794 0.597329 0.348225 0.231076 1.533022 -1.360793 -3.122493 1.060255 -1.140924 -2.345369 -1.753877 1.390425 -2.398832 1.504781 2.405171 -0.192486 -0.384195 -1.802109 1.453438 1.191178 0.112863 3.011515 0.939082 -1.952167 -0.131109 -2.801145 2.129093 -1.757290 1.422392 -0.135685 -2.676359 -0.528492 0.983002 1.205616 -2.175092 -1.858948 1.432143 1.008819 -1.985575 0.993650 -0.949885 -0.350856 -1.959844 -2.089953 0.893901 -0.901449 2.194198 -0.158186 0.735247 -0.754263 0.781472 -0.159723 -3.150535 -0.130110 2.750936 -1.466849 0.401563 -2.192720 1.362128 0.257193 -0.193059 -1.342845 -1.194702 0.902562 -0.037642 1.390648 -0.391928 -0.148137 -2.025032 1.025553 0.694722 0.355478 1.243218 0.721459 0.804695 1.217628 2.114019 -1.319354 1.184116 -3.474255 1.195295 -0.961166 0.821776 -0.865865 1.152055 1.189061 0.734065 2.066953 -3.409389 2.143305 0.371087 -0.919441 -2.219806 0.941156 -0.588766 -1.196376 -0.875332 2.015693 -0.180201 -0.658397 -0.661698 0.836482 0.085122 -1.717278 -1.452162 -0.211093 1.711646 -2.104919 0.665130 -0.842206 -1.405347 -0.199657 1.192444 1.695979 1.836282 3.489757 2.359580 -0.487952 0.273670 -3.273195 0.497211 3.345676 0.756788 -2.403612 2.401593 -1.444447 -0.220135 0.961566 1.951562 1.561616 1.195298 -1.389394 -1.267608 0.426110 0.244641 3.118861 1.282413 0.813057 -2.332879 1.041106 -0.605444 -0.522164 4.101354 1.669277 -2.976061 0.519711 1.752149 -1.414919 -1.538783 1.052341 -1.534837 -0.579445 -1.160371 0.970558 1.670818 -1.975098 -1.892860 0.280496 -2.452285 2.571719 -0.655407 -0.578522 0.807520 -2.862660 -1.199890 3.529618 0.370087 -0.904126 -1.332935 -2.287606 -0.775037 -3.031563 0.996369 0.984907 -0.626359 -1.227697 -2.185144 -0.265347 2.464270 -0.145041 0.950941 -2.524397 -0.678717 1.642222 -0.161548 1.360745 -2.755934 -0.595513 -0.334117 -0.002628 1.150832 -0.522143 0.960324 3.618136 -2.013355 1.437006 1.589510 -0.513725 0.495076 2.162268 -2.768210 3.506755 -0.078136 2.134274 0.036327 1.187289 -1.122820 0.268938 0.077281 0.154550 -0.195553 1.254864 -1.515368 -0.917697 0.593775 -2.137421 -1.569235 0.400088 1.617068 0.088547 0.705009 -0.222592 -1.478411 -0.786686 -1.487171 0.619957 2.195576 -0.600057 -1.965497 1.265958 1.027130 -1.121435 -0.678219 0.534311 1.105353 2.521242 -3.035891 1.059796 -0.044885 0.398222 -2.652758 -2.535820 0.591519 -1.796860 -1.276174 1.038831 -3.073522 -1.333362 -1.774674 1.238144 -2.501036 -0.337284 0.292694 3.155704 1.500376 -0.586845 1.678599 -0.553800 1.675629 0.056169 -0.368460 0.777252 2.446143 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -2.760724 2.132217 0.806587 -2.719039 4.755267 -1.166155 0.381052 1.980518 0.315274 2.790479 -3.476014 -0.004289 -1.113948 -3.490117 0.116156 -1.362230 -0.040589 3.152524 -1.190295 1.486225 2.300845 -0.765844 1.023167 -2.096044 -1.028418 -2.567447 -0.640090 0.708269 -0.081807 0.397192 0.774066 0.296085 3.894725 0.210711 2.658088 2.646806 0.940467 4.919835 0.673993 1.613839 1.038623 2.068672 -1.159849 -4.926161 2.095717 -1.901437 -2.139934 -3.133663 1.603495 -4.502503 2.841538 2.498817 0.188473 -1.507376 -2.673181 1.206289 3.270008 0.789771 3.636512 1.245739 -2.170576 0.753771 -2.788421 1.200741 -2.765109 2.134940 1.167842 -3.611191 -0.980737 1.942885 2.483368 -2.349432 -3.162333 0.399434 0.590940 -2.159149 1.013826 -1.170706 -1.478672 -1.599338 -2.023914 0.502944 -0.874940 2.470702 -0.565289 0.524105 -1.715917 0.439830 0.910758 -2.677001 -1.472669 3.212695 -0.673968 1.376208 -1.747157 1.715865 0.936959 -1.243668 -1.799562 -0.857386 0.934098 0.574144 1.491442 0.527026 -2.322037 -2.494682 2.281892 1.990995 -0.754234 1.051807 0.343042 1.683602 0.737943 1.430551 -1.793725 2.467377 -4.834619 1.001340 -0.364032 0.700582 -0.368762 0.702630 0.503303 0.211219 1.822492 -3.284725 3.945948 0.701714 -1.427969 -2.309754 1.823388 0.143450 -1.333089 -0.946689 2.213787 0.227151 -0.721011 -0.139554 0.256547 -0.816841 -1.628875 -2.598683 -0.632627 2.721783 -1.834453 0.831548 -1.188776 -1.917528 -0.021229 0.676108 0.929778 0.989802 3.883937 2.774721 -0.416687 -0.027070 -3.155355 0.788816 4.391394 2.313257 -2.989913 1.828396 -0.243942 0.160085 1.668217 1.093180 1.259267 2.161042 -1.940191 -2.184154 -0.823400 -1.368021 3.305099 2.780568 1.339175 -4.092746 2.245135 -0.156461 0.254653 5.281626 2.349476 -3.384225 0.156664 2.836740 -2.676480 -2.322173 0.579077 -0.403608 -0.934215 -0.769313 1.076312 1.228365 -2.604253 -3.872225 -0.752271 -3.189587 3.116901 -0.415207 -0.299310 0.267751 -3.619203 -1.335892 4.108196 0.634859 -1.515278 -0.877310 -1.961827 -0.887244 -4.327578 1.154787 1.781473 -1.358638 -2.077241 -2.304475 0.239603 2.556901 -1.458446 -0.048508 -1.510766 -1.639604 1.931430 -0.199289 1.231105 -4.319751 -1.002086 -0.272401 0.637182 1.783966 0.487576 1.236340 4.429571 -2.381830 1.231143 3.199034 0.078204 0.935344 3.787228 -2.252453 3.710510 -1.225928 2.874515 -0.011895 1.686501 -0.999375 0.228982 0.203049 0.221766 -0.403264 2.123252 -2.657117 -0.946639 1.144633 -2.426668 -1.049794 1.871896 2.264777 1.124530 0.342944 0.564602 -1.564589 -0.619915 -1.099929 -0.264155 2.673894 -0.269734 -3.568679 0.273270 1.605030 -2.018850 -1.753327 0.940720 1.327390 3.017254 -3.219237 2.603010 -0.182616 -1.182228 -3.788444 -2.279968 1.466100 -2.525967 -2.389353 1.710838 -3.656866 -1.517714 -1.789055 2.515473 -2.658664 -0.510058 -0.423012 2.959962 1.818600 0.221358 2.543048 -0.534031 2.522542 0.249289 -0.714918 0.389088 3.825149 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -4.412530 1.787787 0.818065 -5.648488 10.749333 -2.203235 -0.736186 5.147312 -0.391511 6.822523 -4.246934 -0.267490 -1.909888 -8.928343 0.694337 -2.844158 -0.264154 4.326976 -1.331885 4.475799 3.758448 -1.893935 2.229827 -1.678230 -2.824561 -5.029188 -1.237799 2.921044 2.953677 -2.692538 1.817649 0.087523 8.360463 -0.300574 6.839747 5.293573 2.784814 7.220451 2.045454 -0.406459 0.415867 3.186027 -3.156410 -7.120308 1.986066 -1.971610 -6.201092 -4.723668 3.366204 -5.450785 1.846601 6.229933 -0.585896 -1.750021 -5.953010 3.513492 2.823469 0.020322 7.229297 1.687768 -3.662469 -0.756590 -7.386282 3.699036 -4.424586 2.187473 -0.079739 -4.629331 -0.079882 2.577839 1.654683 -4.568728 -4.384550 3.525653 3.488111 -5.357514 1.806910 -3.115204 -2.743898 -5.023854 -3.675637 2.706182 -1.837679 5.418338 0.238877 2.823313 -0.302028 2.656644 -0.869462 -7.867132 0.267993 6.164768 -2.779877 -1.076625 -4.447805 6.017291 0.679571 -1.416355 -3.424587 -2.017784 2.030785 -0.621816 3.797502 -1.650544 -0.506397 -6.049832 2.182686 1.530964 0.719108 2.629653 2.316548 1.618810 2.847465 5.344056 -4.332835 2.963875 -8.832883 1.899385 -2.300730 2.114971 -3.020655 3.182386 2.430546 2.614154 4.904136 -8.786510 5.583370 1.137354 -1.855520 -5.688378 2.089939 -0.473439 -2.113021 -1.354157 4.336278 -1.144060 -1.121653 -1.187056 2.084208 0.784211 -3.683002 -2.479008 0.623039 5.541591 -4.430327 2.387434 -1.507767 -3.213694 0.073429 2.427327 4.606463 4.150118 9.079944 5.343425 -1.047723 1.424935 -7.768539 1.097187 8.210078 1.024102 -5.235396 6.540792 -3.139234 -1.097765 1.109395 5.490808 4.597736 1.727569 -4.420027 -3.937882 2.418078 0.716974 7.130461 1.670423 1.437955 -5.348761 3.378665 -0.458286 0.039567 9.144809 3.635050 -6.318973 1.520211 4.632053 -4.308073 -3.817899 2.780320 -3.007117 -0.477316 -2.343886 2.519199 3.836301 -3.831097 -4.902365 -1.287531 -5.420258 5.841810 -2.080732 -1.915852 1.977815 -5.704506 -3.317464 7.779008 0.248378 -2.317834 -3.378573 -6.198327 -1.801106 -7.438229 2.481614 2.269464 -1.937421 -1.797856 -5.022776 -0.798194 5.196730 -0.089143 2.159480 -6.731964 -1.541709 4.190345 1.088015 3.079514 -5.063208 -0.629075 0.245228 0.209608 2.182087 -0.945377 2.870428 8.657395 -4.766998 3.535174 2.059629 -0.548110 2.312364 5.256112 -7.351825 9.356172 0.227421 6.477776 -0.146547 2.315432 -1.595492 1.346249 0.563934 -1.269786 0.544420 2.052723 -3.836821 -2.981069 1.819370 -4.082147 -4.604667 0.601027 4.538024 -0.595349 2.200880 0.089031 -2.909857 -2.195604 -3.421630 2.277969 4.799013 -1.211977 -4.095076 3.338985 4.257276 -1.271116 -1.127061 0.812565 3.288173 5.788564 -7.672239 3.179053 -0.904316 1.714565 -5.455150 -6.355650 2.925666 -3.981446 -2.093152 2.300777 -7.681885 -3.384464 -4.469560 3.109176 -5.615226 0.347574 0.920942 7.434251 3.817164 -1.720720 3.110979 -2.081782 3.132693 -0.490186 -0.954670 2.631570 5.640437 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -4.736142 2.354647 -2.998296 -2.824482 8.862027 -4.214088 1.190437 5.560594 -3.509900 5.427121 -3.276622 1.314881 -1.720672 -8.060843 1.088824 1.690458 1.745003 6.085801 -0.114981 3.613788 4.079656 -2.755888 0.484003 -1.653645 -2.002364 -3.493599 0.532725 1.990735 3.316340 -3.962991 -1.079403 2.322941 8.791842 0.056050 7.303909 5.949553 2.416516 7.068921 4.504479 -4.353815 -0.838777 3.838252 -2.789045 -7.303235 2.606152 -1.687921 -3.764105 -3.913239 3.033385 -2.986433 5.021489 5.369000 -0.755537 0.132810 -5.845849 2.313495 4.844250 -0.798062 7.429380 1.951827 -2.721006 -0.537391 -3.798121 6.003166 -4.030489 -0.500506 0.857150 -4.979710 1.372314 1.576702 3.853564 -6.831436 -4.481592 3.491266 1.282208 -5.189926 2.056606 -1.186943 -1.049724 -7.408174 -6.747533 1.035848 -3.246326 5.758456 -0.672753 1.478577 -3.829631 1.707187 0.011261 -7.152530 0.329457 4.940451 -3.304672 1.758940 -3.638945 5.681924 1.138346 -0.495940 -4.463583 -3.572847 1.917513 -1.608663 3.384272 -0.611368 1.828260 -2.838382 0.875856 -1.331845 0.783446 4.752855 4.955163 2.550378 3.749399 4.532961 -1.873376 -0.504978 -8.628261 2.873886 -0.230668 1.225064 -0.533553 2.499185 2.915665 -0.494827 5.128865 -8.810233 3.850346 0.963911 0.221038 -6.158769 1.890829 -1.293597 -2.184243 -3.501425 5.582282 -0.688258 -1.223165 -1.627272 1.701969 1.435752 -5.993801 -3.743054 -0.520952 7.455106 -6.854865 1.671236 -2.563456 -3.885680 -0.295082 1.504310 3.034479 4.901424 7.125738 6.020976 -1.780537 3.408001 -7.716714 0.619925 7.341692 4.625807 -5.786051 5.465715 -3.556544 -1.368945 2.733213 5.022019 4.610329 -0.692182 -3.870533 -3.423432 4.549756 0.866753 6.845128 -0.624222 1.974973 -3.871185 3.836771 3.343827 -2.591476 10.587851 0.642258 -6.597124 3.449987 3.600231 -1.217594 -1.934101 2.635663 -4.297868 -2.121089 -2.831481 2.701434 3.592247 -5.158886 -2.771437 0.098838 -5.433271 5.356403 -1.384982 -2.457286 2.187872 -6.881876 0.384441 8.206506 0.975414 -1.450605 -3.591065 -5.848102 -2.168321 -6.706976 2.232818 0.629994 -0.910964 -2.774931 -5.467560 -1.699156 6.733771 0.506866 1.564366 -7.768528 -0.875730 3.868238 1.709228 1.433058 -7.248147 -1.586156 2.024924 2.122996 1.847929 -0.611112 3.725447 7.962365 -5.363629 0.664576 4.593477 2.074333 3.509441 4.360629 -7.255370 7.177590 -0.371658 6.601367 0.533267 2.145907 -3.387156 -0.011933 0.464054 3.891143 -1.504308 1.345227 -2.824964 -1.859185 1.582919 -3.372885 -4.699211 -0.004905 3.304168 0.856850 1.715944 -2.335999 -1.245201 -1.620118 -4.083681 1.487407 5.045815 -0.749314 -3.182793 3.644860 1.575277 -0.579623 2.586380 1.111236 2.642211 5.225513 -6.875250 1.825177 -1.197918 1.982743 -4.025584 -8.001593 2.574754 -3.033124 -2.640748 4.499720 -8.366350 -2.264797 -3.678065 2.802346 -8.262047 2.101467 -0.682355 7.119285 1.917313 -0.912143 4.171506 -1.546788 3.485282 -0.623410 0.281373 0.360283 6.435767 +PE-benchmarks/subset-sum.cpp__main = -1.684888 1.163340 0.683789 -1.084613 3.617655 -0.593019 0.462484 2.253498 -1.394799 2.474129 -1.234198 0.291225 -0.679955 -2.407088 0.294892 -0.935447 -0.065272 1.370832 -0.261059 1.154440 1.304563 -0.803413 0.187726 -0.354991 -0.913376 -2.238873 -0.220450 0.765929 1.829196 -0.600065 0.204554 0.363620 2.877441 -0.430065 2.577071 2.049683 1.236125 1.962683 0.593237 -0.826153 -0.436751 1.279129 -1.408213 -2.116414 0.462789 -0.838116 -1.987315 -1.045756 1.122910 -1.545825 0.027682 2.085296 -0.459086 0.112198 -1.221582 1.768119 0.896419 -0.328845 2.722678 0.573049 -1.325433 -0.921194 -2.304011 2.407301 -1.007051 0.477953 -0.795470 -2.213074 0.201205 0.346637 -0.181270 -1.306913 -0.572787 1.959620 1.004526 -1.952996 0.656676 -0.824984 -1.619872 -1.926590 -1.848284 0.675147 -0.377959 1.994108 0.035894 0.630356 -0.140627 0.966487 -0.504522 -3.177783 0.315474 2.713165 -1.451296 -0.154778 -1.847489 1.434466 0.499519 0.347260 -1.118918 -1.018522 0.802179 -0.202848 1.143781 -1.856460 0.502302 -1.966551 0.121474 -0.144629 0.717209 1.612064 0.477039 0.758955 1.397085 2.304687 -1.503109 0.634905 -2.516364 1.166950 -0.842839 0.665265 -0.634493 1.095816 0.900465 0.798599 2.249574 -3.231915 1.138110 0.125353 -0.348759 -2.498425 0.374517 -1.041355 -0.882130 -0.998529 1.642913 -0.214330 -0.493297 -0.987389 0.757040 0.408739 -1.428002 -1.247978 0.227862 1.975056 -2.570109 0.542375 -0.701236 -0.837483 -0.399700 1.308603 1.764796 2.023380 2.882164 2.166518 -0.200833 1.296486 -2.800018 0.172349 2.584079 1.005122 -2.080694 2.354815 -1.895919 -0.620432 0.706241 1.668482 1.602397 1.194562 -1.848132 -1.569797 1.157417 0.599371 2.814895 0.895266 0.448139 -1.363250 1.496448 -0.802873 -1.335466 2.917669 1.385317 -2.559956 1.068310 1.019104 -1.511494 -0.969717 1.350323 -2.136634 -0.417139 -1.025328 0.335170 1.630342 -1.537742 -0.885155 0.503560 -2.115355 2.468867 -0.507175 -0.052059 0.900445 -2.057670 -1.522826 2.532734 0.394792 -0.668450 -1.627095 -1.841078 -1.755102 -2.152855 0.746816 0.499846 -0.617164 -1.409507 -2.223792 -0.565290 1.819841 0.357010 1.342511 -2.956064 -0.444044 1.348746 0.518679 1.269521 -1.725670 -0.511030 -0.347369 -0.196683 0.856182 -0.683059 1.654281 2.999350 -1.569650 1.604373 0.131335 -1.123263 0.653199 1.333033 -2.765319 2.844255 0.275555 1.816008 0.199243 0.922397 -1.323083 0.176041 0.230778 -0.175654 -0.165870 0.822495 -0.857015 -0.719445 0.220639 -2.055223 -1.385504 -0.212292 0.910815 -0.045260 0.663204 -0.138461 -1.411109 -0.828265 -1.771952 0.437604 1.817461 -0.621305 -1.115552 1.544207 0.181160 -0.367078 -0.405476 0.362489 0.933203 1.605428 -2.631333 0.228888 -0.221928 0.502541 -2.123174 -2.595856 0.229764 -1.617109 -1.566705 0.990735 -2.674470 -0.327233 -1.613422 0.357640 -2.853187 -0.806974 0.544952 3.103002 0.653758 -0.790911 1.416598 -0.633802 1.547672 0.029203 0.248055 0.431423 1.738663 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -10.318987 12.487406 10.810312 -8.241756 20.264817 -0.147484 5.798327 9.239598 -15.827648 18.007850 -7.176840 3.807297 -3.358165 -15.035647 0.227875 -11.466726 -4.370628 4.229638 2.396335 13.663637 6.753408 -11.767067 1.586448 -0.872268 -8.062132 -16.506769 -0.397556 5.750644 17.829054 -5.755046 7.637165 -1.651167 15.196568 -4.067275 17.271372 13.764450 1.977382 10.076160 3.878389 -12.534897 -7.357114 7.483761 -10.997863 -10.691923 -0.892679 -3.569564 -13.111013 -7.798995 6.377309 -7.744405 -10.482750 14.883691 -5.307243 0.044386 -9.736848 14.151829 5.917728 -3.326184 19.082093 0.438178 -3.831376 -6.721162 -17.154941 11.299105 -3.263631 -1.755058 -7.955257 -9.986622 8.542038 -1.242742 -10.470513 -4.036291 2.275753 17.483991 9.008874 -15.848391 1.109115 -9.520371 -26.607162 -14.290691 -7.783242 5.234716 3.189812 13.305263 2.783026 6.720325 5.292690 10.990706 -6.888443 -24.072560 5.202542 18.813899 -7.819153 -9.402576 -6.143884 17.899150 4.542257 3.328348 -7.983377 -1.675552 5.505754 -2.040339 8.067436 -21.610999 5.196755 -18.726215 -3.089973 -2.886955 4.860972 9.236413 4.353201 5.899861 12.398704 18.687685 -16.252692 5.534400 -14.268247 4.637905 -5.577649 4.439803 -4.633131 8.970992 1.251469 7.953324 17.282045 -22.650168 4.914863 0.095829 -0.318774 -21.054127 -0.423874 -8.711699 -3.220655 -5.932539 7.259344 -2.120783 -1.474980 -8.534894 3.136810 4.073407 -5.595900 -6.055196 8.078789 19.170744 -17.144922 5.173814 -2.861047 -2.336066 -2.989288 10.148573 14.690823 14.117769 20.381154 14.194980 1.466969 11.974501 -16.044081 -1.755824 14.808774 5.345409 -12.710535 18.250208 -13.625084 -8.159791 1.369638 11.544123 13.946674 7.186652 -20.434112 -17.488976 14.544631 4.565703 18.100935 2.754219 0.739958 -3.603851 18.688971 -4.781136 -11.934276 13.311231 8.593946 -14.326432 8.959211 4.354277 -14.742201 -5.848742 12.873588 -15.351341 0.494455 -3.518171 -2.355993 9.111547 -5.765838 -4.582727 -0.926892 -13.983902 18.195905 -3.740759 3.116139 6.217794 -7.814563 -15.179315 11.015297 2.197907 -6.057159 -13.257983 -10.770869 -16.653679 -11.559420 4.818664 2.543157 -5.685209 -10.427087 -16.059550 -3.116280 5.252952 4.461450 11.330944 -18.986856 -5.185388 8.646290 9.144999 9.374419 -3.483613 -1.593024 -1.638854 -1.814172 4.675634 -2.930629 18.711568 20.745845 -8.052677 13.017234 -7.884510 -9.455729 7.793886 7.455763 -21.168722 19.995406 3.358206 14.398929 0.898123 4.472315 -7.529092 2.277620 4.775165 -7.631902 3.165550 2.317215 -2.802056 -6.020694 -1.389935 -13.636550 -8.629074 -4.511350 3.706022 -3.633983 5.839794 3.671435 -10.102277 -7.354990 -13.991323 2.255199 10.646522 -3.517528 -4.219230 12.503077 0.655867 5.488539 -1.368113 0.549057 7.002175 6.103207 -18.257829 -0.522749 -5.078599 3.365196 -11.586118 -17.164698 3.473452 -12.141139 -11.493875 6.412501 -15.832229 4.159047 -12.185212 -2.531521 -20.042739 -6.939619 5.745999 21.798364 3.047803 -8.414086 6.300861 -7.867375 10.925413 0.318495 3.448578 2.369560 9.574589 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -1.550737 0.606440 0.186026 -1.252123 3.782782 -0.633644 0.094013 1.698242 0.002294 2.096598 -1.411717 -0.695103 -0.732587 -2.368071 0.326117 -0.707204 -0.104316 1.644417 -0.809577 0.570250 1.245860 -0.291575 0.451335 -0.522667 -0.679970 -1.542760 -0.735291 0.777314 1.130470 -0.679261 -0.326711 0.231845 2.765929 -0.482454 2.040823 1.559250 1.318631 2.143884 0.034834 -0.090423 0.341355 1.214073 -1.142792 -2.230836 0.757047 -0.984214 -1.989828 -1.188193 1.206654 -1.677352 0.937576 1.800944 -0.174659 -0.334108 -1.071633 1.486563 0.957281 0.290606 2.375725 0.692877 -1.301490 0.006487 -2.420692 2.016049 -1.288379 1.400432 -0.687676 -2.508283 -0.889074 0.737119 0.623575 -1.705150 -1.349004 1.234675 0.954319 -1.404010 0.760232 -0.701135 0.003885 -1.713670 -2.038064 0.609638 -0.974472 1.679932 -0.194112 0.431923 -0.284744 0.567570 -0.142614 -2.449524 -0.226713 2.280174 -1.154905 0.389014 -1.444675 0.436837 0.192117 -0.054694 -1.159740 -1.070491 0.545035 0.035807 1.012445 -0.510459 0.483533 -1.539319 0.577007 0.615852 0.532840 0.912155 0.831681 0.348105 0.760731 1.665021 -1.198142 0.458133 -2.477358 0.849473 -0.867656 0.732018 -0.681968 1.032085 0.969699 0.591665 1.718435 -2.867753 1.537050 -0.015431 -0.813843 -1.604319 0.618741 -0.466271 -1.021771 -0.589382 1.454257 -0.161270 -0.630867 -0.507019 0.740677 0.139065 -1.449991 -0.534460 -0.115024 1.112163 -1.889777 0.437310 -0.635556 -1.115376 -0.180293 1.070454 1.452592 1.490074 2.676172 1.950760 -0.374486 0.245775 -2.680779 0.654343 2.541229 0.099810 -1.887800 1.777776 -1.401821 0.016813 0.868776 1.494446 1.068380 1.298405 -0.780708 -0.670517 0.189779 0.332890 2.454874 1.015443 0.600706 -1.834417 0.598687 -0.787026 -0.546309 3.275771 1.419657 -2.447046 0.575823 1.271677 -1.320387 -1.137851 0.867452 -1.386124 -0.444838 -1.121592 0.736268 1.463450 -1.478965 -1.326729 0.436575 -1.851909 2.111157 -0.543583 -0.733645 0.866008 -2.170380 -1.074455 2.803711 0.317141 -0.593869 -1.151571 -1.786056 -0.738477 -2.213166 0.764686 0.672279 -0.601712 -1.206942 -1.731068 -0.175703 2.309397 -0.051343 0.933025 -2.136852 -0.239690 1.132777 0.072358 1.392404 -1.814768 -0.438039 -0.367150 -0.309149 0.707104 -0.594393 0.576209 2.666171 -1.664869 1.201519 0.884067 -0.971745 0.210784 1.525666 -1.949111 2.576551 0.172511 1.582581 -0.135300 0.961856 -0.864377 0.309469 0.114976 0.055648 -0.231371 1.026454 -1.088713 -0.685483 0.427573 -1.897028 -1.409561 0.320695 1.213432 0.242720 0.537070 -0.441757 -1.282731 -0.495735 -0.863927 0.303394 1.649249 -0.428345 -1.453790 0.942954 0.459762 -0.935149 -0.730356 0.444219 0.708994 1.906032 -2.258229 0.641857 0.043236 0.431700 -2.129733 -1.983814 -0.037184 -1.423543 -0.983752 1.029965 -2.288906 -0.948594 -1.379199 0.854430 -1.874255 -0.582151 0.320387 2.497106 1.206183 -0.500787 1.478071 -0.277758 1.404760 0.021214 -0.458166 0.703327 1.561970 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -4.682716 3.433812 -0.231471 -3.412872 11.708771 -3.640307 1.855530 5.592773 -6.389262 7.696119 -2.259797 1.060415 -1.627500 -10.290520 1.434216 -1.591974 0.514432 5.392115 1.287906 6.043899 3.428058 -5.169445 0.804994 -0.128913 -2.846639 -7.257995 0.049352 3.398724 7.816948 -5.402590 1.005539 1.332765 9.906273 -1.620193 8.241577 6.689164 2.048302 4.998144 4.838991 -9.642552 -2.138432 3.332107 -4.242968 -5.824664 0.645079 -0.518935 -6.685673 -3.677880 3.556414 -2.187325 -2.676339 7.068327 -2.259163 0.239231 -6.288432 5.287030 4.139718 -1.474366 8.471821 0.905721 -1.096164 -3.116141 -6.379311 7.392735 -3.064039 -2.731443 -3.371888 -5.269195 3.184637 1.042810 -1.971143 -4.423296 -1.405076 7.006802 4.505590 -6.864259 1.320477 -2.653308 -6.562956 -9.391135 -6.903000 2.199974 -2.644164 7.070619 0.854833 2.992086 0.666386 3.732729 -1.998020 -10.344930 2.377015 7.061625 -3.674362 -2.918115 -2.556731 8.582331 3.123626 0.017046 -4.216020 -4.522763 1.987482 -3.354637 4.297077 -5.038366 5.299851 -5.651796 -2.504527 -2.716728 3.408844 7.304631 4.552913 2.359564 4.981578 7.250539 -6.099519 -1.697072 -8.358775 3.155994 -3.032016 1.799783 -2.166006 4.345100 3.209695 2.741555 7.373863 -12.202083 2.668477 0.652869 1.563310 -8.182419 0.569592 -2.320624 -1.382515 -3.346564 5.068825 -2.091071 -0.922992 -2.505051 2.361307 3.261211 -5.043978 -1.133502 1.578143 10.340193 -9.988096 2.949918 -1.880601 -3.030881 -0.159882 2.743671 6.047542 7.297905 9.173394 7.291687 -1.639300 7.079889 -9.746693 0.661861 8.170114 2.180836 -5.580830 8.537886 -5.959518 -3.456703 1.232582 7.508801 6.697313 -0.120072 -6.825904 -5.832721 7.291106 2.825631 8.029671 -1.523218 0.202318 -3.560262 6.095262 1.882286 -4.304003 9.961009 0.883904 -6.944969 5.734669 3.600749 -5.707411 -2.267393 4.475293 -7.278395 -0.804023 -3.693330 1.829417 5.294183 -4.200161 -1.720538 -0.421803 -5.708903 6.519902 -2.122000 -2.852632 3.621679 -4.444857 -3.891723 8.608287 1.088639 -1.244580 -6.170024 -7.941648 -4.605474 -6.201890 2.280124 -0.439494 -2.131115 -2.705509 -6.913311 -3.240669 6.887299 2.516261 4.431754 -13.045228 0.482080 4.301899 5.478975 2.492353 -4.189560 -0.757312 2.265461 -0.111530 -0.095393 -1.681518 6.387892 8.529934 -5.701716 2.586998 -1.741694 -2.297528 5.258240 3.048907 -10.202188 9.360736 1.845569 9.415438 1.018824 1.888846 -3.580449 1.135333 1.502406 -0.904553 -0.686992 0.603671 -2.404646 -3.066478 2.235104 -3.675792 -7.971665 -2.233337 3.434201 -0.331659 2.793441 -2.026425 -3.053486 -2.181313 -4.315471 2.730092 4.898389 -1.154889 -1.518161 5.980956 2.322915 2.160281 0.423002 0.564066 3.408533 4.050595 -8.776804 1.178049 -2.209347 5.078157 -3.892488 -10.454964 3.358320 -4.259762 -2.927846 4.269464 -10.238927 -0.753064 -5.266946 0.623392 -9.947392 0.589102 1.749013 9.822571 0.953717 -3.248012 3.721872 -3.103166 2.958629 -1.518177 1.402141 1.086383 5.065764 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.671868 0.288089 -0.160126 -0.259533 1.534886 -0.402114 -0.022243 1.421955 -0.552295 1.010528 -0.332116 0.298008 -0.135419 -0.857339 0.141354 0.264663 0.121206 0.715808 -0.112793 0.272425 0.519357 -0.061572 0.007182 -0.025830 -0.362632 -0.666108 -0.001797 0.312723 0.695020 -0.477776 -0.382897 0.254173 1.275784 -0.213638 1.246715 0.854045 0.721219 0.597797 0.481891 -0.473829 -0.214250 0.490345 -0.589713 -0.759162 0.175715 -0.311828 -0.701390 -0.253980 0.471413 -0.394482 0.534161 0.775073 -0.218156 0.245005 -0.321554 0.679964 0.089958 -0.298576 1.119907 0.219495 -0.749002 -0.355391 -0.746304 1.458401 -0.397220 0.181822 -0.395475 -0.953902 0.018013 0.077646 0.288107 -0.884890 -0.187377 0.901754 0.179004 -0.780644 0.369060 -0.223995 0.354488 -1.008324 -0.972333 0.295185 -0.416112 0.706154 -0.011423 0.252479 -0.516309 0.394196 -0.270772 -1.335396 0.284776 0.900181 -0.854120 0.210243 -0.807497 0.314723 0.088176 0.266749 -0.308056 -0.611238 0.335315 -0.149613 0.455311 -0.522703 0.858488 -0.435262 -0.016726 -0.232902 0.481455 0.726902 0.294542 0.335495 0.764108 1.010614 -0.096260 -0.086396 -1.020391 0.604624 -0.371210 0.247316 -0.209279 0.474717 0.691230 0.257899 0.988581 -1.313493 0.276300 -0.001032 -0.035858 -0.946959 0.138286 -0.525840 -0.366199 -0.511553 0.750663 -0.137034 -0.256023 -0.522372 0.439313 0.216790 -0.998903 -0.570082 -0.038339 0.549380 -1.206266 0.186177 -0.313159 -0.343833 -0.121662 0.584436 0.741447 0.967586 1.102765 0.880988 -0.134166 0.350804 -1.236664 0.031547 0.894366 0.327776 -0.852390 1.012801 -0.945391 -0.323448 0.412518 0.837607 0.610075 0.309211 -0.500692 -0.462437 0.610637 0.464348 1.177489 0.099265 0.243526 -0.313813 0.285628 -0.226535 -0.710501 1.411028 0.277043 -1.163974 0.461305 0.281384 0.004717 -0.201063 0.533807 -1.036269 -0.326096 -0.487626 0.191080 0.744977 -0.711284 -0.163980 0.539558 -0.828609 0.993307 -0.199801 -0.228948 0.451771 -0.995134 0.034198 1.184437 0.315576 -0.199955 -0.640639 -0.810754 -0.532493 -0.791485 0.252264 0.130655 -0.035995 -0.422707 -0.923345 -0.327444 0.862334 0.329035 0.574158 -1.443000 -0.079798 0.568715 -0.075021 0.348094 -0.950310 -0.198212 -0.181476 -0.075932 0.323037 -0.470981 0.594815 1.185153 -0.666587 0.523956 0.501140 -0.201731 0.157881 0.385825 -1.216436 1.102204 0.165085 0.487398 0.202269 0.335027 -0.683479 0.043920 -0.082048 0.398176 -0.167306 0.277137 -0.257161 -0.283834 0.004356 -0.821918 -0.620712 -0.270678 0.308052 -0.040620 0.297225 -0.457709 -0.535396 -0.376685 -0.895963 0.248284 0.730195 -0.364253 -0.419309 0.798897 -0.062603 -0.246914 0.094021 0.136047 0.346360 0.704128 -1.072088 -0.051240 0.041971 0.473245 -0.838795 -1.043704 -0.096566 -0.424150 -0.481752 0.320954 -1.134967 -0.360385 -0.602825 0.048741 -1.264728 -0.142236 0.219646 1.342867 0.245958 -0.407034 0.607182 -0.253753 0.560921 0.117051 0.139221 0.026065 0.677868 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.967052 0.691587 0.233007 -0.487034 2.126781 -0.460201 0.097955 1.512295 -1.071504 1.673457 -0.541482 0.182190 -0.357621 -1.435205 0.084888 -0.143924 0.007317 0.801960 0.024587 0.787457 0.659010 -0.641918 0.150301 -0.021912 -0.610691 -1.104237 -0.065311 0.513813 1.505783 -0.964860 -0.200555 0.087890 1.872038 -0.335682 1.833923 1.211346 0.494197 0.957929 0.687994 -1.274493 -0.514608 0.773657 -0.969110 -1.022524 0.058574 -0.406235 -0.997177 -0.571666 0.703365 -0.363513 0.044895 1.224737 -0.428962 0.238152 -0.826975 1.180244 0.331291 -0.205889 1.848281 0.086382 -0.570437 -0.408319 -1.406972 1.502213 -0.529867 -0.049327 -0.835647 -1.059840 0.420512 -0.104341 -0.174176 -1.138652 0.013588 1.594099 0.551089 -1.315473 0.318261 -0.533665 -0.745628 -1.714506 -1.398016 0.435046 -0.375659 1.095542 0.086310 0.537125 -0.220009 0.879276 -0.487590 -2.199883 0.531373 1.399027 -1.019181 -0.316547 -0.509761 1.141155 0.159578 0.349838 -0.631295 -0.598088 0.402984 -0.347519 0.717958 -1.383561 1.403225 -1.108239 -0.102868 -0.454051 0.636285 0.854613 0.888559 0.456317 1.240507 1.709657 -0.860437 -0.166850 -1.550009 0.550368 -0.522878 0.313493 -0.336458 0.918071 0.500570 0.517981 1.615863 -2.304436 0.343712 -0.037756 0.028229 -1.699951 0.029250 -0.769175 -0.413643 -0.636380 0.909406 -0.257507 -0.222133 -0.835469 0.481145 0.382128 -1.151795 -0.418356 0.411308 1.491963 -1.793632 0.379418 -0.341037 -0.449074 -0.157982 0.853110 1.249496 1.389152 1.769182 1.319712 -0.193632 0.616270 -1.738526 -0.054908 1.287196 0.058604 -1.204817 1.689088 -1.292752 -0.607836 0.432689 1.333777 1.208743 0.268717 -1.190933 -1.144756 1.261976 0.668713 1.667573 -0.148358 0.265009 -0.189444 1.096838 -0.180968 -1.125885 1.864778 0.362140 -1.504296 0.812110 0.394365 -0.560930 -0.339795 0.997199 -1.490160 -0.106325 -0.648461 0.077677 0.994566 -0.772372 -0.181784 0.364365 -1.236368 1.657970 -0.351974 -0.261255 0.771161 -1.125298 -0.428484 1.523503 0.311099 -0.310097 -1.129115 -1.281297 -1.158515 -1.161853 0.404967 0.041006 -0.277866 -0.634151 -1.424556 -0.324803 1.044692 0.574034 1.001564 -2.055496 -0.232476 0.776743 0.442941 0.721228 -0.703733 -0.196248 -0.004255 -0.234949 0.415336 -0.539105 1.347042 1.913821 -0.904991 0.943779 0.125131 -0.428355 0.560213 0.543004 -2.019348 1.706522 0.249482 1.087386 0.129248 0.424262 -0.800031 0.174156 0.186107 0.137249 -0.010577 0.181458 -0.298757 -0.535765 -0.141194 -1.278986 -0.996715 -0.529123 0.353308 -0.190029 0.541773 -0.335187 -0.872780 -0.527710 -1.289458 0.358971 0.989680 -0.293428 -0.452819 1.226555 -0.013473 0.191492 0.238560 0.054973 0.468946 0.771555 -1.650092 -0.194672 -0.214130 0.726178 -0.896562 -1.658381 0.015457 -0.791438 -0.701931 0.712679 -1.617899 -0.163736 -0.980218 -0.136525 -1.933153 -0.135871 0.375783 2.075199 0.446780 -0.801562 0.690284 -0.550864 0.845640 0.096755 0.159261 0.085720 0.903423 +PE-benchmarks/palindrome-partitioning.cpp__main = -2.503408 2.275632 1.208661 -1.825320 4.850147 -0.292624 -0.170394 1.921455 -1.553026 4.338468 -1.773495 -0.819796 -1.173900 -4.120539 0.048690 -1.959639 -1.129452 1.514373 -0.076902 2.352022 1.839339 -2.323619 0.334231 -0.227770 -1.678647 -3.338584 -0.840188 1.299422 3.778318 -2.657248 0.277637 -0.258189 4.349975 -0.779205 4.058045 3.176424 1.223266 2.989778 0.553963 -1.338581 -1.631480 2.115279 -2.740310 -2.333274 0.383999 -1.308437 -2.873863 -1.555291 1.685213 -0.824720 0.055096 3.624480 -1.183148 0.063807 -2.264062 2.973726 0.775084 0.351160 4.811445 0.374083 -0.604685 -0.566991 -4.726008 3.208581 -1.622825 0.782922 -1.478562 -2.453910 1.080648 -0.682430 -0.339667 -2.095713 -0.724615 4.230988 2.019290 -3.554404 0.391994 -2.219137 -4.846775 -3.711292 -3.409217 1.309306 0.000000 3.066647 0.448385 1.435419 0.598536 2.760126 -1.566402 -5.777341 1.164171 4.188764 -1.928607 -1.009110 -2.002160 3.303314 0.213755 1.009698 -2.206099 -0.526166 1.319304 -0.318510 2.002568 -3.656908 1.926883 -4.217792 0.573663 -0.466404 0.734238 0.619975 2.472819 0.486913 2.928934 4.601280 -3.376867 0.132083 -3.706290 0.628049 -0.490093 1.160075 -0.868878 2.345691 -0.167038 1.063133 4.142775 -5.745373 1.074399 -0.367842 -1.087993 -4.679675 -0.107145 -2.193957 -1.172357 -1.427436 1.949875 -0.275152 -0.707344 -1.987403 0.768890 0.844157 -2.204920 -1.204058 1.750665 4.057554 -3.190408 1.001676 -0.889648 -1.329621 -0.861903 2.457557 3.476568 3.466004 5.070032 3.442281 0.212994 1.014451 -4.120068 -0.353260 3.484025 0.705644 -3.473919 4.242174 -2.970474 -1.257829 0.436324 3.418475 3.113302 1.233614 -3.355614 -3.178520 2.126289 1.240399 4.387545 0.124553 0.319891 0.115292 3.507987 0.021459 -3.149915 4.306195 2.045210 -2.802346 1.236625 0.900813 -2.291547 -1.678968 3.151970 -3.061080 0.532085 -1.179019 0.017106 2.065592 -1.501632 -0.868211 0.288239 -3.468881 4.560603 -0.935270 0.391368 2.135333 -3.107569 -3.993169 3.016064 -0.343831 -1.522188 -3.107201 -2.997391 -2.814329 -2.631986 1.495056 0.663649 -1.217816 -2.463848 -3.717822 -0.041234 2.674510 1.085873 2.660946 -4.005410 -1.716737 1.843429 1.066010 2.993892 -0.836756 -0.452043 -0.282071 -0.073914 1.455051 -0.480249 3.451452 5.536905 -2.193869 2.458044 -0.705038 -1.690764 1.089242 2.044335 -4.877718 4.670990 0.658862 1.688825 -0.292200 1.189616 -1.505802 0.507175 1.473541 -0.127109 0.993153 0.401089 -0.227478 -1.363255 -0.893271 -3.801682 -1.828786 -0.968490 0.679492 -0.775502 1.467163 0.028256 -2.128272 -1.368686 -2.346356 0.509260 2.778712 0.172193 -0.443969 2.848236 -0.336322 1.161673 1.480609 0.313877 1.042505 2.203272 -4.336338 -0.429509 -0.987067 0.968944 -2.385462 -4.043625 -0.637013 -2.591256 -1.891090 2.109456 -4.016738 0.256000 -2.897465 -0.428958 -3.504672 -0.603774 1.051554 5.061599 2.226903 -2.230949 1.614699 -1.538929 2.827375 0.287317 -0.544115 1.139574 2.553839 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.661936 0.330228 -0.050946 -0.175633 1.287965 -0.302189 0.015923 0.799994 -0.580387 1.000794 -0.239980 -0.149489 -0.279901 -1.048396 0.188996 -0.258433 0.226353 0.434058 0.086759 0.668608 0.415005 -0.533247 0.140667 -0.072934 -0.375814 -1.032931 -0.015812 0.335104 1.050907 -0.475810 0.063972 0.130255 1.365053 -0.122069 1.241032 0.808525 0.291738 0.508049 0.543114 -1.099490 -0.390488 0.533195 -0.704395 -0.625316 -0.060768 -0.230199 -0.763441 -0.249039 0.413338 -0.132497 -0.560623 0.804185 -0.235063 0.354934 -0.652003 0.519606 0.419685 -0.053939 1.155969 0.020853 -0.167521 -0.425958 -0.712260 0.958409 -0.362917 -0.439285 -0.674215 -0.693148 0.312640 -0.032010 -0.505695 -0.385298 -0.023026 1.029680 0.658713 -0.910207 0.306559 -0.150041 -0.572392 -1.143049 -0.862378 0.331849 -0.392739 0.865163 0.094796 0.461069 0.200558 0.527881 -0.169952 -1.415912 0.379582 0.779957 -0.710026 -0.358040 -0.108899 0.911085 0.359838 0.311606 -0.375116 -0.523086 0.191819 -0.460488 0.473561 -0.629400 0.789442 -0.631073 -0.260530 -0.588717 0.548697 1.048682 0.422923 0.367760 0.734228 1.050317 -0.793425 -0.368275 -0.700511 0.416490 -0.746835 0.228342 -0.316421 0.596906 0.563912 0.456794 1.036699 -1.476477 0.204474 0.156130 0.371044 -0.961012 -0.018632 -0.529961 -0.225770 -0.442926 0.684444 -0.327992 -0.052256 -0.555807 0.356317 0.421829 -0.543998 0.059236 0.156579 0.928206 -1.200319 0.319771 -0.197809 -0.338439 -0.094446 0.412128 0.698882 0.996188 0.961182 0.910816 -0.481862 0.826528 -1.058186 0.067245 1.131809 -0.105875 -0.744245 1.090098 -0.892359 -0.490211 0.279785 0.771774 0.924051 0.054656 -0.726294 -0.687216 0.596097 0.564862 1.146181 -0.081036 0.082061 -0.473174 0.771489 -0.012398 -0.609801 1.251723 0.077773 -1.029603 0.703723 0.395215 -1.095858 -0.136268 0.504093 -1.016385 0.049123 -0.800242 0.199134 0.729537 -0.524040 0.002790 0.273247 -0.828643 0.847765 -0.188950 -0.265975 0.520645 -0.555509 -0.468359 1.133033 0.295147 -0.041041 -0.918646 -0.951269 -0.694841 -0.867629 0.241374 -0.302418 -0.236116 -0.164604 -0.969505 -0.429030 0.726743 0.446568 0.725200 -1.872868 0.173774 0.378018 0.564768 0.244087 -0.308507 -0.099091 0.173787 -0.264325 0.030572 -0.420931 0.786552 1.002119 -0.700171 0.459724 -0.500303 -0.694735 0.591060 0.211792 -1.305500 1.041705 0.114342 0.926882 0.147815 0.357982 -0.525987 0.185841 0.088760 -0.325637 -0.189169 0.113355 -0.294970 -0.454919 0.421887 -0.438898 -0.954619 -0.505828 0.245055 0.142554 0.312908 -0.295207 -0.734111 -0.077421 -0.508589 0.424805 0.646102 -0.009282 -0.232162 0.890157 0.182978 0.248098 -0.346700 -0.024785 0.218951 0.473599 -1.193329 -0.126592 -0.148997 0.648280 -0.330484 -1.144627 0.205290 -0.568237 -0.336571 0.644823 -1.207570 0.059663 -0.611709 -0.127889 -0.883124 -0.160550 0.327026 1.290017 0.105045 -0.661383 0.460621 -0.387102 0.395802 -0.048196 0.281322 -0.004804 0.573222 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -10.334216 11.558045 6.136208 -7.983528 20.247733 -0.639058 -0.077261 6.695956 -10.501173 19.658556 -6.605601 -1.906894 -4.619677 -19.074947 -0.104879 -9.802280 -5.832138 5.141702 1.808138 12.822362 7.108854 -13.241142 1.350794 -0.002644 -8.053114 -16.466099 -2.579563 6.130477 19.519697 -13.411811 3.321791 -2.062586 18.317775 -3.990716 17.333835 13.941054 3.612474 11.518992 3.609129 -10.547060 -9.077556 8.477897 -12.322608 -8.140480 0.032998 -4.342756 -12.839072 -6.257934 6.930950 -1.547814 -4.924987 16.328739 -6.084291 0.321564 -11.240029 14.160239 3.831319 0.016127 21.271723 0.299286 0.159802 -4.520717 -20.904261 13.479469 -6.141692 -0.396053 -7.342770 -8.003407 8.270814 -4.156964 -5.285147 -7.292105 -0.777660 20.387559 10.305734 -16.929860 0.163604 -10.775208 -28.085709 -17.777211 -13.741859 5.945098 1.413232 13.804137 3.219374 7.428699 5.622927 13.749320 -8.213932 -26.548904 6.690570 18.546021 -7.582725 -7.929155 -7.613666 18.858816 1.900308 4.500867 -10.079201 -1.453289 5.701808 -2.554771 9.066882 -20.457053 9.890167 -20.475087 0.162187 -4.347718 3.567357 3.473688 11.535470 2.029147 13.631720 21.444765 -17.538754 -0.791172 -15.744461 1.607099 -1.455237 4.957356 -4.159574 10.624648 -2.247279 5.763721 19.086560 -26.601472 3.358232 -1.867680 -3.223001 -22.569757 -1.906349 -9.802599 -3.660005 -6.132171 7.454088 -2.011365 -2.182137 -9.115173 3.106187 5.190595 -9.058932 -4.659349 10.140929 21.867444 -15.377138 5.277901 -3.241703 -4.685989 -3.834829 10.624078 16.444115 15.756252 22.440379 14.944630 1.814044 8.365632 -17.609686 -2.614289 14.596959 3.933416 -14.577603 20.000929 -13.795081 -7.372065 0.107852 15.833400 15.153754 3.680759 -18.075475 -16.743114 13.136521 6.092138 18.792806 -2.070701 -0.154486 2.744823 18.816488 2.007859 -15.052634 16.786642 7.984543 -10.654203 7.490466 3.152103 -11.615410 -6.679951 15.251360 -14.478616 3.426572 -4.224287 -1.075306 8.672761 -4.831887 -2.276247 -0.792864 -14.593350 20.091791 -4.327047 2.179609 9.862773 -10.920322 -20.002608 10.767345 -2.496248 -6.673172 -14.968807 -13.463231 -14.638829 -10.257193 6.345292 1.822714 -6.253192 -10.519577 -16.812851 -0.935980 10.276926 6.016703 12.569585 -20.341439 -7.622877 7.995495 8.418079 13.000780 -0.600558 -1.042620 0.230617 0.102698 5.057811 -1.739352 18.237874 24.174079 -9.009393 11.178066 -8.258586 -8.127807 7.015620 7.861062 -22.952983 20.678987 4.045093 9.142443 -1.091072 4.233399 -6.140177 2.730248 7.697918 -2.624170 5.581798 -0.306609 0.129020 -6.558785 -4.432368 -15.783992 -9.095094 -5.913279 2.216410 -4.471593 6.983805 0.852530 -8.391744 -6.465044 -10.834734 2.556758 11.278735 1.215994 0.641120 13.773424 -1.253461 8.869031 8.675781 0.588709 5.177791 7.592741 -19.235814 -2.679382 -6.095977 5.402894 -8.613435 -19.471558 -1.482308 -11.365539 -8.489903 9.639199 -18.321494 3.186002 -13.022710 -3.599005 -16.632763 -2.112837 5.461756 22.651982 8.323613 -10.831293 5.885085 -8.184600 11.689130 0.382931 -1.001732 4.980650 10.224320 +PE-benchmarks/cut-vertices.cpp__main = -11.677140 7.281886 4.304946 -9.593650 21.448810 -5.925669 2.043959 11.293640 -0.272197 15.098223 -11.243265 -1.529663 -5.178711 -15.079979 0.690552 -9.202951 -0.828964 11.537219 -4.627993 5.677243 9.135588 -1.790352 2.511929 -4.731415 -5.944826 -13.743663 -2.923267 4.467533 5.033820 -3.952379 3.093802 2.148839 20.243010 -2.193436 16.371938 13.648106 8.983462 16.959942 2.017746 6.024922 0.909033 8.527546 -7.653934 -15.398763 4.151086 -5.289117 -12.895862 -8.816995 7.362746 -13.750807 8.995045 13.262038 -1.383333 -1.730688 -8.528399 11.117861 7.104379 -0.409844 17.507720 4.213678 -10.393685 0.986217 -14.961680 15.484855 -10.080581 8.043034 -1.448921 -14.693889 -2.241384 4.256889 4.545108 -9.859637 -9.506855 9.114053 5.978314 -12.516099 3.407039 -5.984373 -8.241795 -9.191648 -11.785804 4.831258 -0.408290 10.809741 -0.029828 4.056960 -2.233889 5.858238 -1.472805 -17.842423 -0.234432 17.929011 -8.451658 1.430524 -13.980042 6.153212 1.972003 -0.755387 -7.219327 -6.584882 4.841790 -0.911641 7.623730 -6.166926 -3.977316 -12.613135 4.807432 4.794046 -0.047517 6.091867 2.096332 5.457547 7.913987 12.287582 -7.991195 7.864275 -20.064052 6.700004 -2.637027 2.751137 -2.321302 5.116248 3.077411 4.944488 12.468105 -18.603646 11.175280 0.482566 -6.749104 -13.748657 3.294617 -3.756434 -5.926121 -6.016588 10.534296 0.293101 -2.972123 -4.482893 4.040205 0.248545 -6.328589 -11.166556 0.806186 8.526928 -10.106117 3.649761 -4.730770 -6.341295 -2.717904 7.911439 9.174384 9.623465 19.223727 13.037122 -0.317899 2.403397 -16.750876 -0.096566 15.455424 6.710893 -13.984701 13.870845 -9.296127 -2.580975 4.683786 10.583952 7.230615 8.614851 -10.278963 -9.415704 1.820625 0.100392 17.049947 7.019479 1.847581 -11.093881 8.429305 -3.597721 -5.727791 22.428253 12.897811 -15.823714 1.702161 8.954206 -9.009585 -11.410902 8.751100 -10.086932 -4.271862 -4.979451 3.580524 7.799075 -9.509807 -8.308194 3.158983 -14.244491 14.950659 -3.047773 -2.529671 4.650227 -16.806740 -12.828728 17.138537 1.043909 -4.989440 -7.627282 -11.550216 -6.032987 -16.715633 5.472140 6.569097 -3.200838 -9.317949 -12.569492 0.852772 11.925226 -0.774594 7.597666 -11.552846 -7.234972 9.324888 0.496464 8.228029 -13.615913 -3.548949 -2.874398 1.717349 6.731165 -1.714422 7.527668 20.818394 -9.765814 9.946415 6.363464 -9.593111 1.758170 12.062824 -16.374064 18.691155 -0.258585 6.003268 0.919821 5.781342 -7.560911 0.733062 1.929007 0.843382 -1.394904 5.473396 -7.547923 -4.762634 -1.026142 -13.802526 -5.520875 1.755045 7.375505 -0.945169 3.622564 1.398490 -8.161935 -5.161515 -10.227465 1.405488 11.969354 -0.870169 -8.859244 8.519551 3.220229 -6.095439 -1.270636 2.288266 5.695033 12.494912 -16.828229 4.764557 -0.774334 -0.555027 -16.139649 -14.707960 1.955449 -12.929466 -10.176536 3.836533 -15.285727 -5.524633 -9.732531 5.562603 -13.885899 -5.699050 3.380204 18.302353 8.468768 -3.719697 9.394056 -4.059843 11.149971 1.684070 -2.212004 3.995741 13.821434 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -8.331271 8.843533 3.705708 -8.055675 14.826776 -2.546362 1.405592 6.693873 -4.348967 12.833658 -7.127988 -1.640157 -2.532856 -14.098758 0.602028 -8.701859 -3.523867 6.916029 -0.497288 8.650394 6.226139 -6.472838 1.088150 -2.034647 -5.934924 -11.521657 -1.589340 4.416738 9.365184 -5.953531 5.684901 -0.431350 14.450901 -2.989677 13.234093 10.979350 5.087089 10.582841 2.588815 -0.700724 -3.298044 6.358125 -7.568835 -8.847894 0.963569 -2.634227 -10.832082 -6.176828 4.664800 -7.283572 0.689711 11.587998 -2.116684 -0.861953 -7.886108 10.371191 5.710579 -1.651726 14.334651 2.086260 -3.333758 -1.082411 -13.013596 11.036753 -5.886225 2.303604 -2.827839 -7.732249 3.144926 0.436285 -2.304038 -5.227014 -3.741033 11.205588 7.149157 -11.807784 1.710917 -7.399079 -15.038848 -10.290592 -7.678548 4.792828 1.357201 9.949874 1.025662 4.515119 3.160024 7.474837 -4.469216 -16.596906 2.170553 14.139275 -5.901294 -5.017989 -8.764071 11.193689 2.693953 1.500308 -6.915490 -3.329390 4.463952 -1.094282 6.492365 -10.113886 -0.015517 -12.836638 0.018146 0.847040 0.373700 6.860312 4.502033 3.937159 8.120301 12.938183 -10.911393 3.909442 -14.007584 2.933654 -2.112546 3.666879 -2.181771 4.946746 1.758287 5.251760 10.798602 -16.573502 6.393515 0.201631 -2.997114 -13.635854 0.707894 -4.730638 -3.758441 -4.749090 6.163605 -0.259412 -1.745874 -4.788076 2.796630 2.973666 -3.943396 -7.366140 4.702806 11.377122 -10.444573 3.377301 -2.750349 -3.300829 -2.674081 6.934546 10.161128 8.392895 16.472638 9.984875 1.263297 6.387451 -11.991617 -1.500647 11.981028 4.264330 -10.453166 13.097237 -9.107847 -4.646599 1.123444 9.714691 7.849400 6.019182 -12.737732 -11.204292 6.528302 1.469573 13.478035 1.063492 -0.877919 -6.033260 12.192311 0.296406 -7.891150 16.310746 9.128926 -9.764543 2.880400 4.378612 -10.081639 -7.430517 9.734113 -9.635104 -1.469777 -2.381704 0.903093 5.545930 -4.513087 -5.134476 -0.200364 -10.847863 12.350673 -3.241970 -1.177999 3.939926 -9.577436 -12.772191 10.293665 0.292133 -5.247009 -8.359494 -8.526741 -7.439702 -10.456693 4.947097 4.062145 -3.239904 -8.089928 -10.625022 0.184149 7.915666 1.061542 6.675509 -13.449189 -6.180197 6.980039 4.550468 7.615603 -6.254945 -1.467581 -1.378484 2.061619 3.933262 -0.616476 10.639454 18.118849 -6.844038 8.308768 -1.496712 -9.097296 3.780285 8.573093 -15.491488 15.782224 1.942143 5.952695 -0.141969 3.152924 -5.374437 0.982603 3.575970 -2.481753 1.843452 1.293100 -2.667053 -4.205742 -2.263417 -10.415672 -4.957213 -0.990814 4.074437 -2.767060 4.185135 2.013492 -6.083975 -4.897863 -7.874105 0.533920 9.054462 0.571531 -3.299264 8.638974 1.475561 2.176244 2.404939 0.276962 5.029834 7.751234 -13.817612 2.081872 -2.950118 1.201807 -10.262652 -13.002452 1.922682 -9.563785 -6.990269 3.918478 -11.558021 -0.692335 -8.750687 1.068026 -11.983603 -4.176443 4.338623 15.415211 5.807849 -6.092564 4.973487 -5.266726 9.903949 1.269171 -0.799790 3.661777 9.461542 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -1.027302 0.799610 -0.104358 -0.999590 2.617880 -0.447010 0.239050 1.034639 -1.132230 1.542791 -0.887374 0.565411 -0.204541 -2.029816 0.343458 -0.262960 0.103538 0.860015 0.017919 0.991143 0.680481 -0.991597 0.385161 -0.331380 -0.598398 -1.995198 0.095883 0.715236 1.379044 -0.455151 0.226823 0.170320 1.701963 -0.546451 1.121711 1.182806 0.694773 1.125610 0.747858 -1.759392 0.144176 0.586603 -0.697258 -1.421340 0.203646 -0.315734 -1.600588 -0.755775 0.856634 -1.097915 -0.948668 1.381412 -0.234948 -0.414062 -1.429795 1.266647 1.260999 -0.553532 1.713178 0.277205 -0.408781 -1.076384 -1.171260 1.533257 -0.938309 -0.371297 -0.598338 -1.292169 0.176485 0.891438 -0.821256 -0.314643 -0.425423 0.802129 0.978914 -1.398466 0.303725 -0.515205 -0.935330 -1.474616 -0.774519 0.501096 -0.561377 1.484797 0.185266 0.584459 0.485344 0.466885 -0.073203 -1.724811 0.008924 1.423509 -0.608388 -0.522052 -0.498747 1.665018 0.915415 -0.474644 -0.689329 -0.810358 0.320577 -0.422396 0.805647 -1.199139 0.632495 -1.301181 -0.314701 -0.173946 0.692488 1.556409 0.192587 0.442609 0.410954 1.054491 -1.208375 -0.096879 -1.775940 0.513818 -0.567521 0.383300 -0.715298 0.558516 1.005696 0.711259 1.290720 -2.097177 1.200987 0.248898 0.243365 -1.327769 0.350642 -0.002728 -0.315874 -0.343751 0.947754 -0.501053 -0.141245 -0.153006 0.725366 0.506994 -1.052379 -0.113323 0.043642 1.855142 -1.986936 0.672030 -0.314243 -0.515165 0.079061 0.411578 1.030902 1.105254 1.910176 1.399159 -0.320966 1.963089 -1.800527 0.570607 2.099671 0.631291 -1.111321 1.438504 -1.238030 -0.498447 0.296946 1.007011 1.049372 0.624414 -1.352657 -1.076912 1.014343 0.210573 1.660476 0.112468 0.181802 -1.477828 1.206297 0.027591 -0.043519 1.858549 0.565209 -1.761778 1.473958 1.267539 -1.684751 -0.407942 0.613597 -1.246535 -0.306553 -0.810069 0.494826 1.194369 -1.036304 -0.847912 -0.481436 -1.112065 1.248847 -0.347706 -0.566018 0.619549 -0.709311 -0.599754 1.526067 0.323169 -0.209118 -1.080948 -1.321893 -1.296136 -1.656879 0.330237 0.161450 -0.870334 -0.474176 -1.370960 -0.881401 1.293370 0.078468 0.595783 -2.996493 0.405820 0.974306 1.445587 0.334892 -0.620562 -0.151610 0.419875 -0.223106 -0.077441 -0.652759 1.089695 1.344469 -1.254873 0.928970 -0.797573 -0.761524 1.127770 0.882020 -1.586935 1.973484 0.427309 1.960949 0.324276 0.583876 -0.695147 0.421544 -0.016926 -0.935794 -0.280532 0.394511 -1.131655 -0.712194 1.034119 -0.498124 -1.631236 0.043549 1.092015 0.472191 0.346335 -0.248476 -0.500289 -0.415403 -0.699521 0.511459 0.910030 -0.521480 -0.762921 0.856857 1.032752 -0.092021 -0.762615 0.255976 0.862306 1.007206 -1.741441 0.815272 -0.285504 0.725748 -1.336630 -1.794561 0.866406 -0.747462 -0.751325 0.875286 -2.234463 -0.434608 -0.955280 0.603127 -1.737111 -0.161355 0.306080 1.800486 -0.071679 -0.369803 1.003621 -0.499741 0.442417 -0.380592 0.392584 0.235146 0.909347 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.855389 0.246475 -0.072575 -0.472641 1.754753 -0.338270 -0.044803 1.230058 -0.075453 1.032265 -0.683835 -0.164613 -0.367465 -1.007592 0.162886 0.015906 0.095440 0.837317 -0.410070 0.166108 0.733518 -0.002205 0.131125 -0.273707 -0.306635 -0.597876 -0.259831 0.295524 0.470733 -0.230779 -0.399261 0.244392 1.403179 -0.122524 1.220972 0.893559 0.801321 1.098943 0.155344 0.125199 0.000652 0.725078 -0.627948 -1.222458 0.484486 -0.611482 -0.811131 -0.517546 0.604734 -0.814633 0.900291 0.902114 -0.119555 0.031405 -0.413795 0.580950 0.338949 0.091294 1.271080 0.412150 -0.905073 -0.090801 -1.001604 1.190963 -0.629165 0.756594 -0.204590 -1.335353 -0.404332 0.243086 0.575086 -0.993988 -0.670763 0.681647 0.222557 -0.718048 0.516029 -0.256573 0.439086 -0.821191 -1.137085 0.259415 -0.503610 0.857438 -0.165802 0.152621 -0.538543 0.256786 -0.062904 -1.302727 -0.015317 1.070851 -0.785130 0.507300 -0.877389 0.078740 -0.013805 0.167702 -0.527948 -0.531900 0.357987 0.075709 0.506895 -0.128834 0.312433 -0.577453 0.435527 0.183264 0.316901 0.495728 0.390884 0.271317 0.566583 0.912304 -0.231176 0.263253 -1.196353 0.581144 -0.391648 0.349146 -0.229240 0.509085 0.648204 0.080542 0.934450 -1.309390 0.661677 0.060479 -0.375429 -0.854137 0.362572 -0.479098 -0.598359 -0.456411 0.897875 -0.041664 -0.376163 -0.424125 0.398585 0.006791 -0.960709 -0.525004 -0.227536 0.359341 -0.963559 0.136627 -0.423433 -0.608149 -0.125454 0.603945 0.644187 0.881846 1.296589 1.026524 -0.247698 -0.015193 -1.324605 0.256716 1.261961 0.284167 -1.078486 0.857835 -0.771343 -0.003989 0.588983 0.700546 0.584125 0.663745 -0.260840 -0.248397 0.069785 0.249253 1.335132 0.569870 0.488107 -0.772281 0.173964 -0.386198 -0.449234 1.706042 0.602621 -1.357610 0.252911 0.526252 -0.279271 -0.419395 0.409715 -0.769915 -0.300751 -0.625829 0.345475 0.790436 -0.954927 -0.603895 0.484902 -1.051972 1.141726 -0.204012 -0.146625 0.438469 -1.374965 -0.144811 1.472853 0.303377 -0.333834 -0.585471 -0.824111 -0.413354 -1.112327 0.400660 0.330566 -0.149148 -0.649885 -0.961856 -0.156179 1.107823 0.078263 0.462918 -1.033338 -0.159707 0.608789 -0.298022 0.613444 -1.151708 -0.349048 -0.282097 -0.123282 0.578966 -0.364735 0.296331 1.375806 -0.856506 0.568386 0.860442 -0.207520 0.013890 0.739311 -1.033152 1.263194 -0.006142 0.545877 0.011991 0.562733 -0.634249 0.063708 -0.043956 0.384628 -0.175061 0.600398 -0.488085 -0.282351 0.164953 -1.022460 -0.533614 0.076122 0.472844 0.167888 0.262622 -0.327047 -0.695384 -0.307074 -0.629919 0.164396 0.960924 -0.307428 -0.806074 0.521253 0.006646 -0.575685 -0.245023 0.291095 0.294613 1.054666 -1.183626 0.172787 0.112920 0.149257 -1.116983 -0.896573 -0.179328 -0.591130 -0.527628 0.553808 -1.158469 -0.441032 -0.697129 0.357671 -1.018389 -0.232716 0.043454 1.328737 0.582831 -0.263280 0.820125 -0.089754 0.794105 0.140882 -0.159362 0.192945 0.919790 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -1.409307 0.962614 -0.049496 -0.956148 3.157118 -0.530787 0.274134 1.786751 -1.659615 2.164160 -0.888516 0.499839 -0.416817 -2.321723 0.280757 -0.202464 0.080410 1.117021 0.047428 1.272782 1.004402 -1.133674 0.315008 -0.180187 -0.813053 -1.836494 0.006637 0.817428 1.994619 -1.000051 -0.024742 0.197216 2.411948 -0.543894 2.150270 1.714148 0.862431 1.429602 0.981806 -2.043313 -0.468683 1.018501 -1.223640 -1.719006 0.257568 -0.554334 -1.739339 -0.829340 1.075202 -0.941276 -0.452521 1.859749 -0.543576 -0.019349 -1.443641 1.532692 0.989324 -0.523228 2.473705 0.268052 -0.798146 -1.089989 -1.714477 2.165906 -0.903305 -0.186463 -0.859073 -1.677644 0.486883 0.361920 -0.574914 -1.128140 -0.414096 1.787018 0.976710 -1.871287 0.472386 -0.759374 -1.168431 -2.132051 -1.577057 0.588267 -0.660743 1.817280 0.157173 0.746329 0.050955 0.949559 -0.479435 -2.815800 0.508003 1.998754 -1.195121 -0.369314 -0.908975 1.851292 0.584591 0.088478 -1.063421 -0.858886 0.559293 -0.467990 1.093883 -1.725291 1.336637 -1.640282 -0.276916 -0.502487 0.948814 1.691120 0.897969 0.638662 1.291555 2.012495 -1.305189 -0.166139 -2.139198 0.800850 -0.757534 0.532795 -0.667734 1.094224 1.043045 0.656524 2.083635 -2.977560 0.924323 0.140924 0.134209 -2.216543 0.260578 -0.752420 -0.543422 -0.766721 1.366679 -0.528021 -0.327604 -0.823701 0.770142 0.629597 -1.661727 -0.512987 0.298936 2.160893 -2.511329 0.688239 -0.527901 -0.734099 -0.073919 0.971146 1.601755 1.879681 2.533955 1.949547 -0.338659 1.762475 -2.437366 0.315965 2.292239 0.718203 -1.734781 2.139316 -1.827614 -0.766664 0.533119 1.612507 1.676730 0.631603 -1.682028 -1.421122 1.638483 0.717486 2.350074 0.014578 0.396663 -1.003773 1.490473 -0.039436 -0.963030 2.537387 0.527964 -2.254541 1.554703 0.987387 -1.291590 -0.424090 1.144535 -1.948124 -0.309647 -1.017895 0.350977 1.540015 -1.339668 -0.688178 0.051162 -1.710045 2.075097 -0.483830 -0.467509 0.971305 -1.505394 -0.681600 2.108039 0.483715 -0.457366 -1.571739 -1.771000 -1.612727 -1.852867 0.582838 0.169022 -0.680872 -0.906628 -1.998752 -0.856362 1.569301 0.600588 1.176011 -3.354959 0.070449 1.227560 1.128862 0.807140 -1.060016 -0.306930 0.209044 -0.223473 0.389678 -0.768663 1.639836 2.271568 -1.533522 1.197031 -0.285932 -0.644817 1.101692 0.927766 -2.529490 2.568067 0.471988 2.066812 0.263674 0.725882 -1.095172 0.384323 0.168714 -0.287989 -0.126555 0.431174 -0.838451 -0.837475 0.544439 -1.262008 -1.734929 -0.440748 0.877585 0.118595 0.675680 -0.504105 -0.935623 -0.757939 -1.362070 0.591541 1.424842 -0.625446 -0.799110 1.467990 0.448074 0.147154 -0.125746 0.267967 0.904338 1.267357 -2.398479 0.278005 -0.386393 0.919746 -1.531773 -2.316238 0.479376 -0.984210 -0.945869 1.162292 -2.600997 -0.262361 -1.407836 0.200001 -2.487331 -0.173537 0.395873 2.721793 0.314808 -0.824255 1.197890 -0.707087 1.008700 -0.175281 0.388162 0.236594 1.324084 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -1.427934 0.886172 0.221000 -0.915146 2.816721 -0.664264 0.188102 1.569407 -0.969738 1.919496 -0.978427 0.073061 -0.649219 -2.188620 0.253384 -0.522055 0.077296 1.315539 -0.137227 1.028514 1.135424 -0.828942 0.240803 -0.309155 -0.727121 -1.498338 -0.184619 0.677003 1.421724 -0.857217 0.068013 0.352941 2.427904 -0.295222 2.153222 1.704908 0.826629 1.822462 0.711212 -0.983755 -0.370807 1.122046 -1.122328 -1.973800 0.551580 -0.665060 -1.417414 -0.924795 1.016246 -1.051843 0.213020 1.729597 -0.391005 0.011588 -1.323932 1.178522 0.865757 0.007684 2.320183 0.444171 -0.932846 -0.532022 -1.799012 1.713379 -1.057546 0.305798 -0.548601 -1.759373 0.225994 0.308832 -0.024284 -1.316346 -0.748736 1.491520 0.737482 -1.623997 0.519542 -0.631930 -1.135098 -1.646916 -1.744623 0.492246 -0.528586 1.668827 -0.028219 0.563974 -0.218157 0.794638 -0.311267 -2.535530 0.277321 1.943554 -1.121205 0.077464 -0.926498 1.396333 0.345135 0.111730 -1.054074 -0.721637 0.613952 -0.300646 1.034107 -1.081671 0.587370 -1.497590 0.248943 -0.261025 0.522136 1.176498 0.984130 0.610039 1.147119 1.783569 -1.172691 0.161342 -2.226553 0.813590 -0.621888 0.507658 -0.473932 0.999365 0.661871 0.360952 1.829106 -2.709355 1.016485 0.103621 -0.137434 -2.009035 0.417871 -0.699151 -0.667682 -0.851719 1.481919 -0.271613 -0.446578 -0.736052 0.539202 0.409215 -1.384455 -0.787605 0.123040 1.779972 -1.942277 0.528037 -0.648671 -0.954923 -0.174485 0.853627 1.331051 1.704435 2.375059 1.886120 -0.347763 1.012441 -2.331763 0.203604 2.144188 0.654917 -1.772811 1.854924 -1.417491 -0.493694 0.653655 1.438776 1.482168 0.760025 -1.308762 -1.223042 1.042276 0.518179 2.222661 0.373663 0.502904 -1.046300 1.207301 -0.015936 -0.916982 2.677232 0.641835 -2.141405 1.071794 0.944217 -1.129246 -0.727437 1.017853 -1.568727 -0.225910 -0.931619 0.391967 1.354343 -1.440384 -0.827960 0.219494 -1.752980 1.952256 -0.457872 -0.275616 0.853673 -1.871558 -0.967979 2.200899 0.386220 -0.529597 -1.387813 -1.667817 -1.178254 -1.864599 0.669709 0.359781 -0.538894 -1.059416 -1.811467 -0.472684 1.638899 0.362754 0.999423 -2.350631 -0.283743 1.144050 0.593647 0.931032 -1.321349 -0.401885 0.086908 -0.083916 0.672613 -0.420721 1.262568 2.390545 -1.469344 1.080074 0.382039 -0.579608 0.782849 1.141321 -2.247083 2.378320 0.147160 1.673173 0.109647 0.737280 -1.026899 0.213315 0.285117 0.090114 -0.128613 0.547660 -0.730498 -0.679019 0.312950 -1.498841 -1.236685 -0.199153 0.868360 0.157770 0.598718 -0.266678 -0.950093 -0.631851 -1.134825 0.417278 1.523347 -0.381674 -0.969284 1.238460 0.254765 -0.168399 -0.150957 0.339450 0.738284 1.389694 -2.223060 0.281408 -0.274355 0.451818 -1.547565 -2.038008 0.272221 -1.169492 -0.900849 1.037676 -2.291857 -0.274694 -1.274434 0.448203 -2.097331 -0.144390 0.178266 2.428849 0.685247 -0.611257 1.240593 -0.526602 1.190481 -0.007097 0.021279 0.277560 1.602653 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -1.946117 1.737675 1.124459 -1.449742 3.893814 0.019689 -0.175390 1.881751 -1.139733 3.190255 -1.607852 -0.327793 -0.788050 -2.626682 0.075423 -1.453955 -0.789881 1.139099 -0.350464 1.522135 1.462788 -1.272352 0.232848 -0.339166 -1.289768 -2.080655 -0.765359 0.927842 2.568739 -1.609160 0.006168 -0.137891 3.208169 -0.705837 2.991807 2.390679 1.369016 2.453110 0.285619 -0.710211 -0.880542 1.629953 -2.050963 -1.994356 0.474279 -1.282999 -2.102904 -0.986873 1.246099 -0.927787 0.393383 2.612323 -0.727179 -0.034231 -1.521989 2.373808 0.473003 0.259761 3.652998 0.442634 -1.035706 -0.554583 -3.500113 2.462490 -1.285531 1.304591 -1.260316 -2.251176 0.343596 -0.249361 0.083208 -2.073495 -0.904632 2.942657 1.077567 -2.502847 0.509385 -1.609910 -2.670268 -2.300214 -2.409064 0.994623 -0.104772 2.123975 0.209037 0.921131 -0.051544 1.891454 -1.018620 -4.227910 0.572137 3.193952 -1.716015 -0.236261 -1.745046 1.852354 0.046513 0.720324 -1.594478 -0.336649 1.066089 0.080544 1.405773 -2.776604 1.430668 -3.114539 0.653257 0.018399 0.548227 0.537157 1.417073 0.637816 2.224390 3.301274 -2.077314 0.181955 -2.858227 0.519308 -0.578639 0.879628 -0.757643 1.761469 0.026298 0.829131 3.059526 -4.100175 1.099100 -0.327830 -1.126179 -3.317837 0.181612 -1.578510 -1.091010 -1.027885 1.551773 -0.056533 -0.636964 -1.467915 0.667850 0.385811 -1.768954 -1.371847 1.088623 2.488352 -2.425133 0.595947 -0.720759 -0.997750 -0.616452 1.960218 2.592856 2.477864 3.846516 2.569971 0.188803 0.749803 -3.083341 -0.092186 2.678938 0.687349 -2.794967 3.056007 -2.401540 -0.772379 0.594547 2.283580 2.032457 1.610663 -2.375912 -2.362341 1.310488 0.818101 3.362802 0.537802 0.527390 -0.296173 2.227532 -0.765451 -2.136288 3.401845 1.539937 -2.508688 0.729431 0.824120 -1.252415 -1.252673 2.193046 -2.430329 0.163978 -0.872272 -0.093990 1.663470 -1.397518 -0.992809 0.471857 -2.694781 3.547174 -0.640991 0.144642 1.328703 -2.619508 -2.584678 2.558988 0.009841 -1.206596 -2.143491 -1.983720 -1.900808 -2.232084 1.074354 0.841432 -0.853549 -2.037315 -2.805894 0.015612 1.973806 0.532090 1.797603 -2.852991 -1.386134 1.469162 0.364562 2.325820 -1.074598 -0.435620 -0.596382 -0.184251 1.342375 -0.708206 2.344674 4.259857 -1.686849 2.034497 -0.023821 -1.240614 0.441351 1.792666 -3.446526 3.549018 0.435390 1.422973 -0.187674 1.021709 -1.367496 0.338186 0.817679 0.058027 0.618154 0.588597 -0.393819 -0.959630 -0.665611 -2.891478 -1.077766 -0.438769 0.718318 -0.650140 0.981319 0.021209 -1.531662 -1.232748 -1.849015 0.257871 2.181294 -0.341159 -0.829507 1.958560 -0.314692 0.169105 0.665348 0.338866 0.858404 1.874949 -3.222811 -0.205416 -0.486618 0.372174 -2.393959 -2.734737 -0.696198 -1.795614 -1.348226 1.317178 -2.764110 -0.101345 -2.082267 -0.071636 -2.581762 -0.821058 0.771906 3.784773 1.716106 -1.571149 1.382571 -1.011747 2.307676 0.379347 -0.378621 0.689552 1.898771 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -2.004081 1.271454 0.953948 -1.518152 4.459186 -0.937764 0.283171 2.549399 -0.485664 2.851509 -1.835673 -0.212160 -0.831174 -2.868715 0.318660 -1.231612 -0.048785 2.063949 -0.659086 1.075890 1.593289 -0.465880 0.330863 -0.681405 -1.013535 -2.356200 -0.696020 0.892406 1.343677 -0.845668 0.220302 0.500711 3.729378 -0.339620 3.127964 2.478712 1.610889 2.824375 0.618370 0.174974 0.050862 1.514251 -1.515307 -2.859148 0.849709 -1.083068 -2.338156 -1.560104 1.227175 -2.229609 1.125909 2.399586 -0.378844 -0.115354 -1.469123 1.882415 1.111137 0.043502 3.146154 0.840978 -1.861638 -0.112201 -2.926111 2.655960 -1.600454 1.332777 -0.681827 -3.030317 -0.352828 0.715236 0.896305 -2.093940 -1.479924 1.961513 1.019113 -2.098056 0.764420 -0.976362 -1.281458 -1.941207 -2.403159 0.886074 -0.633815 2.109279 0.019636 0.640514 -0.569795 0.971660 -0.318156 -3.480797 0.015144 3.195551 -1.688129 0.338207 -2.240554 1.067963 0.471058 0.131912 -1.249380 -1.383682 0.933732 -0.207542 1.317538 -0.993668 0.175541 -2.218451 0.705931 0.565321 0.460052 1.411074 0.677257 0.935203 1.590032 2.374172 -1.673574 0.884624 -3.248286 1.385624 -0.941085 0.626473 -0.670044 1.204620 0.812825 0.957174 2.439505 -3.662984 1.715056 0.130681 -0.978041 -2.466808 0.610899 -0.968062 -1.178837 -1.123634 1.963226 -0.027409 -0.584567 -0.914170 0.676761 0.141331 -1.501065 -1.816360 -0.015820 1.911910 -2.516667 0.593511 -0.850290 -1.231254 -0.461372 1.501380 1.963568 2.140941 3.404951 2.503444 -0.295856 0.456652 -3.398579 0.252793 3.123755 0.812255 -2.538100 2.671077 -1.830983 -0.443975 0.982712 2.053327 1.523602 1.325634 -1.757970 -1.665749 0.472653 0.364522 3.218086 1.417892 0.524929 -1.969701 1.405372 -0.779332 -1.412931 4.129404 1.740168 -2.986987 0.610457 1.558592 -1.669244 -1.667929 1.389624 -2.182270 -0.625172 -1.175317 0.579903 1.688094 -1.882667 -1.392696 0.739425 -2.590101 2.855204 -0.526322 -0.463254 0.883283 -2.792620 -2.078660 3.559502 0.363384 -0.794195 -1.573987 -2.248789 -1.076305 -2.848288 0.896242 0.907449 -0.670675 -1.588222 -2.426365 -0.147266 2.480226 0.001123 1.409271 -2.646830 -0.906755 1.597915 -0.001633 1.537833 -2.708872 -0.672377 -0.493609 -0.154186 1.030781 -0.599359 1.403646 3.842987 -1.839108 1.670291 1.241310 -1.403360 0.406598 1.939797 -3.038235 3.403192 -0.081327 1.754435 0.216187 1.163228 -1.448357 0.143185 0.233420 0.187301 -0.353224 1.153869 -1.274081 -0.805842 0.162441 -2.574376 -1.493392 0.160596 1.308104 -0.004211 0.662576 -0.269207 -1.719657 -0.823743 -1.681824 0.457206 2.167582 -0.503860 -1.680137 1.581790 0.472901 -0.976623 -0.688092 0.496128 0.988958 2.200784 -3.095029 0.676499 -0.045858 0.381409 -2.782445 -2.776806 0.231712 -2.199841 -1.639993 0.873057 -3.086824 -0.995733 -1.843018 0.775416 -2.824947 -0.811369 0.577904 3.542089 1.333144 -0.904319 1.716321 -0.673701 1.891020 0.218104 -0.184149 0.551754 2.323410 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -5.598869 5.956051 3.743116 -4.827846 14.262873 -1.466122 0.906917 6.742602 -7.485389 12.424956 -3.472411 0.426230 -2.308822 -12.377183 0.575759 -4.848427 -1.861099 4.267216 1.220009 7.771878 4.210231 -7.571440 1.055526 0.033346 -4.858739 -9.597566 -0.964819 4.114178 11.533442 -7.990261 2.877044 -0.556299 12.281343 -2.236074 10.744819 8.516247 3.529469 7.374716 4.748154 -8.414948 -4.515875 4.827734 -6.625257 -6.404124 0.621175 -1.938602 -8.109414 -4.152995 3.183084 -2.856968 -3.833916 9.598537 -3.489543 -0.082344 -7.314679 8.749264 3.727888 -1.961610 12.325483 0.420468 -0.701901 -4.288941 -12.180702 8.925042 -4.047123 -1.044386 -4.532048 -6.287662 4.652421 -1.215279 -3.429658 -5.488683 -1.189343 12.159142 6.197127 -9.772745 -0.232495 -5.986626 -15.441907 -9.673483 -8.117253 3.234681 -1.068253 7.971469 2.370078 4.259027 3.894328 7.230840 -4.155246 -16.099029 3.786145 11.052379 -5.621966 -4.492966 -5.105091 10.806571 1.550295 1.848405 -6.172516 -2.388488 2.968602 -2.371926 5.517321 -11.562404 5.517504 -11.824845 -0.822590 -2.444530 3.064615 4.946986 7.492724 1.514775 7.738573 12.057999 -11.091879 -1.264267 -9.438973 2.040108 -1.256066 2.813916 -3.505413 6.534955 0.261224 4.719152 11.562883 -16.947895 2.457441 -0.863884 -1.447843 -12.405762 -0.864108 -4.910480 -1.819468 -3.862522 5.405227 -1.889302 -0.837887 -4.968202 2.191437 3.872121 -6.363805 -4.929123 4.887600 13.553339 -12.238501 3.270720 -2.278792 -3.256988 -1.615553 5.823855 10.185613 9.646933 12.394589 9.098646 0.426220 7.858319 -11.687318 -0.581110 10.109162 2.216309 -8.858000 12.630530 -9.513931 -4.153283 0.508736 9.709293 9.160581 1.258781 -11.238656 -9.946043 9.802494 4.022809 10.989037 -0.524134 -0.109066 -1.782992 10.016199 1.322768 -8.778851 12.191831 3.401364 -7.925264 5.957507 2.825761 -7.964400 -3.495993 7.406058 -10.048849 1.083098 -3.592972 -0.167382 5.802429 -3.454192 -1.437484 -0.380663 -8.524916 11.504991 -2.460138 -0.887913 4.857569 -5.928799 -10.752195 9.092025 -0.544089 -3.317355 -9.177688 -9.191533 -8.267887 -7.458668 3.398884 0.416429 -3.728240 -5.614080 -10.345140 -1.371317 7.735248 3.648830 6.716851 -15.005468 -3.297961 5.262183 6.130786 6.865202 -3.799250 -0.768758 0.931877 -0.449376 1.973403 -1.996244 10.167035 14.940500 -5.756798 6.508968 -4.258978 -5.638532 4.669612 4.671401 -14.465059 12.817024 1.499980 8.324925 -0.138991 2.419146 -4.379242 2.131295 3.190013 -1.341441 1.973720 -0.568904 -1.255915 -4.087308 -1.400991 -9.150229 -7.328620 -3.322640 2.550833 -2.033314 4.115640 -1.536503 -4.559256 -4.166031 -6.740203 2.166238 6.582765 -0.610885 -0.703510 8.194581 0.183492 4.406937 2.179126 0.435115 3.864277 4.439280 -11.875545 -0.596875 -3.295156 3.693584 -5.623856 -12.495565 0.883077 -6.725919 -4.395645 4.848919 -11.816323 0.809987 -7.495823 -1.292385 -12.604171 -0.678135 2.355067 14.058803 3.281443 -6.097041 3.996884 -4.696298 6.236189 -0.125266 0.989199 2.322432 5.914439 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -1.227458 0.713733 0.148048 -0.803499 2.867132 -0.503892 -0.266196 1.415248 -0.577085 2.107487 -0.748881 -0.351677 -0.599665 -2.000344 0.230687 -0.508902 -0.109317 1.102305 -0.152091 0.947700 0.944811 -0.805089 0.189864 -0.073513 -0.663921 -1.559379 -0.433136 0.732225 1.912934 -1.402237 -0.487778 0.174740 2.455947 -0.505788 1.994932 1.552079 1.078847 1.442170 0.526768 -1.193362 -0.460668 1.042812 -1.254860 -1.168523 0.356732 -0.604609 -1.458695 -0.604986 1.014211 -0.211828 0.245759 1.727706 -0.525539 0.074405 -1.181231 1.589722 0.383476 0.255228 2.305371 0.282049 -0.342176 -0.450985 -2.179072 1.757978 -1.006571 0.358766 -1.114104 -1.421381 0.148719 -0.041787 0.201861 -1.635265 -0.530982 1.928050 0.839491 -1.578808 0.491591 -0.758649 -0.720984 -2.087843 -2.040302 0.588150 -0.673603 1.514191 0.067800 0.638954 -0.268021 1.112445 -0.550227 -2.732127 0.516842 1.812706 -1.128502 -0.191846 -0.867528 1.280784 0.305511 0.264899 -0.957066 -0.750320 0.532240 -0.464542 1.016582 -1.336821 1.736413 -1.525620 0.062855 -0.350311 0.739447 0.844565 1.168074 0.328369 1.356552 2.092216 -1.210398 -0.581325 -2.012375 0.481922 -0.544055 0.521799 -0.466190 1.293349 0.435052 0.607936 1.941114 -3.047924 0.612889 -0.162894 -0.335368 -1.948910 0.168856 -0.804882 -0.625298 -0.758138 1.223413 -0.279090 -0.454549 -0.820622 0.718912 0.477872 -1.308245 -0.296146 0.459685 1.796605 -1.955556 0.506626 -0.513529 -0.897364 -0.144602 0.959428 1.639490 1.773583 2.424323 1.810787 -0.275102 0.723674 -2.308909 0.102704 1.684324 0.060854 -1.626303 2.119386 -1.514584 -0.546591 0.494532 1.869363 1.421943 0.535418 -1.154486 -1.208339 0.919550 0.758813 2.108123 -0.195289 0.263240 -0.327945 1.062583 -0.239890 -1.327480 2.491497 0.573191 -1.626205 0.716893 0.674447 -0.797122 -0.727471 1.215387 -1.700056 0.094676 -0.955706 0.370959 1.347978 -1.030783 -0.422425 0.352615 -1.557835 2.037650 -0.524105 -0.503382 1.174537 -1.661572 -1.128532 2.032234 -0.020398 -0.473239 -1.492770 -1.754077 -0.930476 -1.487337 0.681909 0.082206 -0.479614 -0.902599 -1.750896 -0.321359 1.785779 0.594240 1.155581 -2.665282 -0.340662 0.973673 0.495276 1.278482 -0.664367 -0.254088 0.073605 -0.190837 0.441535 -0.587624 1.291670 2.608787 -1.383530 0.829255 -0.089980 -0.600270 0.612347 0.921322 -2.492230 2.292291 0.470794 1.307990 -0.012904 0.571002 -0.923781 0.261290 0.455229 0.186426 0.094790 0.269360 -0.364013 -0.695777 -0.043951 -1.565545 -1.320117 -0.477446 0.668427 -0.352689 0.722003 -0.453810 -0.892505 -0.586468 -1.011893 0.464754 1.352039 -0.070311 -0.391085 1.399821 0.099885 0.151237 0.418758 0.194226 0.516684 1.287511 -2.126541 -0.069536 -0.296105 0.875547 -1.120521 -2.235593 -0.192978 -0.937602 -0.593651 1.085366 -2.186755 -0.428303 -1.325682 0.080770 -1.903995 -0.031531 0.506767 2.504858 1.031871 -1.003147 0.968419 -0.614631 1.092709 -0.080253 -0.262973 0.448360 1.156127 +PE-benchmarks/cutting-a-rod.cpp__main = -1.150494 0.633201 0.213962 -0.706923 2.685295 -0.444988 -0.050333 1.724800 -0.322203 1.684095 -0.876296 -0.301204 -0.484039 -1.610604 0.159727 -0.385350 -0.104471 1.201860 -0.438997 0.445223 0.920279 -0.154516 0.164435 -0.226254 -0.573186 -1.038648 -0.459843 0.510636 1.030930 -0.745160 -0.314831 0.197923 2.127380 -0.292632 1.906465 1.290469 1.026168 1.435370 0.231403 -0.036610 -0.151020 0.931397 -0.990635 -1.507902 0.479990 -0.725385 -1.234091 -0.750579 0.805423 -0.902814 0.943149 1.326606 -0.262339 0.083243 -0.584084 1.124567 0.320985 0.136984 1.879581 0.432094 -1.110843 -0.061589 -1.831221 1.717326 -0.801311 0.967147 -0.577084 -1.736424 -0.323435 0.149428 0.645122 -1.522868 -0.663849 1.410243 0.508851 -1.141562 0.541420 -0.557142 -0.137703 -1.365926 -1.680548 0.474318 -0.604872 1.162791 -0.101319 0.355953 -0.467744 0.649176 -0.347044 -2.189305 0.149701 1.780505 -1.120605 0.340444 -1.251760 0.336706 -0.039567 0.331094 -0.765551 -0.717692 0.526365 0.011861 0.746573 -0.723505 0.747506 -1.177404 0.426938 0.125191 0.416087 0.648671 0.783998 0.353681 1.052669 1.663629 -0.756178 0.207926 -1.794281 0.709113 -0.602045 0.507045 -0.369860 0.862755 0.593156 0.425253 1.497798 -2.292543 0.776815 -0.071452 -0.566140 -1.539219 0.313419 -0.743026 -0.743903 -0.635618 1.104532 -0.061430 -0.481892 -0.713272 0.464883 0.140128 -1.297117 -0.849490 0.072890 0.869553 -1.557706 0.258997 -0.497738 -0.743593 -0.257484 1.004234 1.268501 1.347600 1.987401 1.460350 -0.176260 0.060320 -1.964332 0.159575 1.626904 0.159785 -1.490588 1.589949 -1.202322 -0.205383 0.653119 1.271563 0.931689 0.872520 -0.781722 -0.785580 0.429401 0.482775 1.884293 0.639822 0.436424 -0.774270 0.625385 -0.523707 -1.028573 2.459100 0.823689 -1.763283 0.359454 0.585775 -0.523305 -0.746240 0.870996 -1.340214 -0.297242 -0.733197 0.317996 1.050343 -1.070691 -0.654914 0.672645 -1.465656 1.835068 -0.374892 -0.328267 0.696203 -1.771931 -0.749391 2.040585 0.276163 -0.504181 -0.966616 -1.272911 -0.678675 -1.413189 0.564197 0.463867 -0.263496 -0.956810 -1.411413 -0.068402 1.565560 0.229447 0.920926 -1.618449 -0.480587 0.837760 -0.238888 1.044330 -1.530565 -0.341937 -0.437520 -0.170541 0.701034 -0.452693 0.794995 2.277107 -1.101756 1.004103 0.900440 -0.604576 0.040214 0.970179 -1.788094 1.877048 0.107222 0.846692 -0.026551 0.647019 -0.812088 0.118336 0.139736 0.438355 -0.057237 0.626385 -0.457737 -0.459729 -0.122956 -1.709010 -0.806518 -0.091259 0.590871 -0.082632 0.476878 -0.391603 -1.049802 -0.491827 -0.986463 0.205270 1.276163 -0.333412 -0.885651 0.976653 -0.070713 -0.475490 -0.058808 0.268288 0.460560 1.283508 -1.722964 0.077664 0.020862 0.372818 -1.500118 -1.530131 -0.294959 -1.035655 -0.787477 0.649253 -1.626363 -0.547988 -1.054670 0.263856 -1.644439 -0.436270 0.299654 2.138432 0.963625 -0.597673 0.994561 -0.318709 1.181376 0.220366 -0.245823 0.358474 1.229952 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -2.709487 2.798360 0.944977 -1.993480 7.181052 -1.191346 0.262037 3.640822 -3.162105 5.049743 -1.751469 -0.048706 -1.141497 -5.662158 0.320540 -1.872123 -0.554270 2.728186 0.254869 2.790289 1.879051 -2.552228 0.560949 -0.119273 -1.836017 -4.162826 -0.551967 1.713681 4.938755 -3.437655 0.405091 0.016261 5.664844 -1.108826 4.927717 3.437384 1.502331 3.094712 1.755827 -3.734475 -1.394194 2.068758 -2.718151 -3.176376 0.332076 -0.964498 -3.356100 -2.000043 2.021417 -1.085423 -0.930723 3.837965 -1.245089 0.027526 -2.876687 3.825645 1.546069 -0.186496 5.259348 0.292261 -0.966942 -1.450297 -5.281196 3.927405 -1.872133 -0.014329 -2.239670 -2.948772 1.329380 -0.055889 -0.888309 -3.140336 -0.155217 4.949693 2.460493 -3.875660 0.438538 -2.007961 -4.689872 -4.765978 -4.162358 1.345255 -1.222197 3.472577 0.505199 1.704867 0.866795 2.677431 -1.452363 -6.759189 1.266787 4.895015 -2.333926 -1.504677 -1.874679 3.988728 0.715313 0.524638 -2.282935 -1.564554 1.188065 -0.998611 2.248530 -4.742645 3.198589 -4.573045 -0.235109 -1.206079 1.314766 2.545912 3.346065 0.817325 3.148388 5.286690 -4.169883 -0.812651 -5.061367 1.056406 -1.295862 1.162316 -1.245941 2.647941 0.636980 1.931728 4.504615 -7.773299 1.559871 -0.172333 -0.275729 -5.436235 0.073392 -1.763915 -1.012615 -1.508739 2.383192 -0.813042 -0.642147 -1.906762 1.049852 1.382082 -3.366308 -1.560033 1.631257 5.557441 -5.541145 1.376479 -0.924603 -1.522928 -0.512571 2.283402 4.129188 3.861137 5.517064 3.931426 -0.323678 2.899053 -5.186435 0.012911 4.192281 0.280421 -3.499873 5.340014 -3.525968 -1.643063 0.684158 4.106584 3.600603 1.141587 -4.298978 -4.000749 3.835731 1.570508 4.575331 -0.175447 0.292929 -1.074635 4.123119 0.150945 -3.403014 5.865592 1.149075 -3.916365 2.668653 1.492405 -3.017037 -1.610846 3.025893 -4.257440 0.113296 -1.719188 0.363700 2.659482 -2.005860 -0.935876 0.151304 -3.496470 5.111056 -1.152665 -1.080570 2.277365 -2.972497 -3.212290 4.566900 0.224386 -1.137059 -3.508496 -4.021563 -3.478822 -3.274514 1.368152 0.366218 -1.545354 -2.092605 -4.025859 -0.748686 3.831818 1.331126 3.016744 -6.552827 -1.042561 2.210457 2.315202 2.609370 -2.245218 -0.364342 0.250968 -0.385934 0.816326 -0.957991 4.163836 6.177672 -2.790432 3.060092 -0.729491 -1.989465 1.907856 1.969672 -5.953067 5.213944 0.930475 4.163318 0.052344 1.172699 -1.834512 0.747968 1.174506 -0.406266 0.439739 0.319996 -0.879263 -1.707951 -0.319585 -4.029108 -3.378175 -1.170264 1.409530 -0.562989 1.597776 -0.786229 -2.181790 -1.384081 -2.718061 0.937222 2.809187 -0.447718 -0.975977 3.233234 0.461245 1.128911 0.789726 0.265070 1.558735 2.197768 -4.805982 0.016352 -1.100735 2.022269 -2.696929 -5.508731 0.453630 -2.751918 -2.015405 2.202650 -5.176718 -0.388455 -2.961322 -0.096222 -5.712293 -0.443747 1.075169 6.196811 1.720452 -2.119684 1.998552 -1.700232 2.417948 -0.129373 0.118904 0.902588 2.767176 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -1.074554 0.551046 0.257347 -0.680474 2.231837 -0.591648 0.092497 1.364152 -0.285925 1.550832 -0.725429 -0.109039 -0.278887 -1.320014 0.185081 -0.509803 -0.062893 1.007577 -0.231420 0.561916 0.783421 -0.115052 0.019696 -0.126462 -0.608491 -1.095548 -0.364399 0.575222 0.989566 -0.998590 -0.160560 0.329326 2.007689 -0.428301 2.066773 1.514066 1.021396 1.096481 0.360136 -0.258186 -0.140004 0.756676 -0.972040 -1.178096 0.080005 -0.344408 -1.261176 -0.504337 0.750794 -0.526449 0.677992 1.347746 -0.378059 0.225893 -0.648731 1.207046 -0.000948 -0.037396 1.777166 0.326575 -1.075819 0.075182 -1.538645 2.142645 -0.769955 0.638381 -0.809772 -1.525974 -0.007408 0.148243 0.263711 -1.270889 -0.588069 1.419163 0.506644 -1.299435 0.417350 -0.584940 -0.142934 -1.215475 -1.393275 0.662656 -0.222669 1.066455 0.116230 0.480068 -0.448651 0.815099 -0.473516 -2.108451 0.367820 1.666672 -1.274346 0.077751 -1.068130 0.509377 0.220997 0.289292 -0.488420 -0.797625 0.555788 -0.374671 0.776031 -0.652607 0.980649 -1.005248 -0.011531 0.013827 0.460321 0.815530 0.440059 0.593329 1.307438 1.543850 -0.400257 -0.012673 -1.606929 0.829417 -0.739675 0.290694 -0.302727 0.851214 0.591615 0.605180 1.576758 -1.978360 0.517689 -0.100626 -0.338241 -1.458252 0.130560 -0.758328 -0.621266 -0.759047 1.047178 -0.017351 -0.355789 -0.717216 0.510556 0.306716 -0.866324 -0.749532 0.213130 0.605137 -1.210268 0.348133 -0.402215 -0.527350 -0.307539 1.048651 1.281289 1.488330 1.957189 1.448729 -0.104774 0.174734 -1.895652 -0.084444 1.264594 0.047438 -1.375126 1.720161 -1.458189 -0.574867 0.464953 1.455472 0.904779 0.640995 -0.925855 -0.843036 0.573113 0.530881 1.816950 0.152023 0.092570 -0.334812 0.602470 -0.411197 -1.143602 2.150100 0.620013 -1.746293 0.445636 0.636908 -0.350211 -0.866842 1.119150 -1.580764 -0.311858 -0.714513 0.254930 1.021634 -0.958785 -0.270724 0.772549 -1.379805 1.573093 -0.365040 -0.497700 0.688779 -1.593548 -0.982090 1.897839 0.286306 -0.341183 -1.023160 -1.252319 -0.400310 -1.335431 0.454498 0.394089 -0.118124 -0.744106 -1.399322 -0.119816 1.212392 0.304300 1.182316 -1.506017 -0.457689 0.896861 0.032050 0.756127 -0.988816 -0.273276 -0.304586 -0.073472 0.417382 -0.600489 0.874229 2.024202 -0.989040 0.896357 0.563256 -1.007794 0.157189 0.770379 -1.990434 1.952897 0.283259 0.402149 0.256809 0.474472 -1.022857 0.000340 0.167095 0.247412 -0.161633 0.338139 -0.389551 -0.474193 -0.230427 -1.315800 -0.781757 -0.320793 0.608079 -0.334308 0.499369 -0.309344 -0.906122 -0.611175 -1.199901 0.390285 1.146738 -0.290800 -0.593386 1.335671 0.077155 -0.377780 0.096045 0.131001 0.508145 1.161460 -1.804458 0.012086 -0.002225 0.588241 -1.420115 -1.536127 -0.154519 -1.076590 -0.588819 0.190873 -1.492425 -0.538818 -1.067192 0.071909 -1.419393 -0.490235 0.618072 2.135993 0.835846 -0.794508 0.816718 -0.565141 0.982013 0.232716 -0.107327 0.250233 1.072895 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -2.595371 2.528407 1.754509 -1.686872 4.027144 -0.253163 0.685433 1.455633 -2.343536 4.089339 -1.492736 -0.516911 -1.023866 -3.784318 0.089246 -2.979773 -0.914498 1.191814 0.533275 2.900473 1.864044 -2.580574 0.034006 -0.059871 -1.695054 -3.182739 -0.691488 1.348205 4.240725 -2.811212 1.333420 -0.070710 4.206386 -0.791552 5.018229 3.786773 1.005301 2.583242 0.768510 -1.990108 -2.224467 2.225104 -2.947229 -2.564468 -0.192220 -0.779689 -2.656612 -1.295560 1.623790 -0.363037 -1.118279 3.776462 -1.575153 0.604075 -2.332516 2.825360 0.474204 0.256033 4.873330 0.168682 -0.934969 -0.689121 -4.306020 3.482158 -1.262646 0.218107 -1.909426 -2.366363 2.046389 -1.106806 -1.932868 -1.739989 -0.273772 4.809258 2.050612 -3.853302 0.335565 -2.330108 -5.824130 -3.029229 -2.933168 1.404558 0.703881 3.175120 0.659655 1.592747 1.031139 3.042563 -1.858134 -6.203649 1.737092 4.360958 -2.493053 -1.443902 -1.246140 3.822580 0.450755 1.405039 -2.032826 -0.250403 1.432589 -0.886202 2.138293 -3.876566 1.610623 -4.289252 -0.301678 -1.157659 0.812734 1.612836 2.500010 1.248635 3.769101 4.899280 -3.364559 0.120818 -3.217430 1.133683 -1.352201 1.011104 -0.649450 2.683711 -0.147912 1.337689 4.542880 -5.454626 0.491911 -0.192467 -0.303690 -5.154194 -0.337428 -2.840656 -1.137623 -1.845865 2.103880 -0.216352 -0.602264 -2.483953 0.497218 1.248554 -1.557665 -1.439135 2.050967 3.470014 -2.935231 1.042888 -0.888197 -1.108643 -1.009005 2.698799 3.599603 4.034713 5.095190 3.771194 0.084458 2.089585 -3.856319 -0.809795 3.142749 0.582962 -3.597480 4.595015 -3.726496 -1.991751 0.456394 3.366134 3.670894 1.447797 -4.142620 -3.537582 3.110859 1.498567 4.398720 -0.114389 0.065384 0.440409 3.985079 0.055974 -3.828739 4.105296 1.088909 -3.482417 1.998805 0.699161 -2.639033 -1.570536 3.524505 -3.834861 0.578234 -1.466651 -0.315414 2.159068 -1.684837 -0.348578 0.595237 -3.707317 4.557139 -0.952699 0.496356 2.044111 -3.146520 -4.492040 3.347624 0.261016 -1.444677 -3.543140 -2.745723 -2.638566 -2.580207 1.456949 0.454306 -1.004488 -2.440665 -3.983268 -0.157428 1.943118 1.480106 3.445113 -3.657778 -1.739717 1.975072 1.712091 2.498730 -0.452377 -0.609087 -0.221201 0.011419 1.367840 -0.642471 4.011582 5.414416 -2.184396 2.675633 -1.335164 -2.659665 1.479487 1.660414 -5.600330 4.986358 0.733952 1.850175 0.020165 1.056512 -2.220311 0.209732 1.621971 -0.670266 0.872067 0.058661 0.027527 -1.340012 -0.914790 -3.498804 -1.580015 -1.544268 0.542913 -1.123366 1.674856 0.365232 -2.265768 -1.725702 -2.725573 0.735435 2.945075 -0.028863 -0.523749 3.441933 -0.553826 1.586152 0.946860 0.100863 1.140642 1.922686 -4.710244 -0.873515 -1.150913 0.812744 -2.294922 -4.093890 -0.158577 -2.865381 -1.608418 1.455384 -3.477415 1.158032 -3.130587 -1.078591 -3.672762 -1.143253 1.304222 5.476817 1.972937 -2.537848 1.460188 -1.931244 2.944636 0.390643 0.064739 0.822775 2.631143 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -1.344742 0.459271 0.212349 -0.943869 2.820331 -0.581709 -0.048353 1.379690 0.016811 1.755362 -1.286198 -0.593831 -0.788983 -1.776054 0.209150 -0.451195 -0.003021 1.264939 -0.711177 0.382750 1.135729 -0.207363 0.326135 -0.513250 -0.532780 -1.067499 -0.557258 0.521893 0.750900 -0.549291 -0.243247 0.300849 2.196598 -0.213916 1.683287 1.345576 0.906786 2.093753 0.019776 0.416647 0.168022 1.142963 -0.931996 -2.002606 0.773159 -0.919144 -1.341788 -1.032140 0.987538 -1.393855 1.169702 1.475931 -0.117378 -0.197593 -0.981847 1.109531 0.808366 0.455251 2.115506 0.644642 -1.154931 0.188324 -1.936103 1.454364 -1.159490 1.264908 -0.302738 -1.999929 -0.659359 0.475548 0.771884 -1.429123 -1.257523 0.992919 0.519579 -1.193404 0.650461 -0.485429 -0.386314 -1.263818 -1.774917 0.431698 -0.501462 1.347627 -0.253569 0.278280 -0.407784 0.485044 -0.034991 -2.058585 -0.195261 1.832094 -0.973185 0.546053 -1.244012 0.386747 -0.045119 0.011235 -0.998605 -0.672838 0.516505 0.089749 0.829983 -0.415598 0.118614 -1.267857 0.895426 0.530018 0.280787 0.414748 0.842675 0.307226 0.658258 1.408214 -0.817683 0.623840 -2.112088 0.669569 -0.407302 0.507700 -0.415224 0.774813 0.589386 0.143701 1.430500 -2.264562 1.284988 0.003410 -0.780811 -1.447038 0.570538 -0.467406 -0.910146 -0.607851 1.348005 -0.027863 -0.526522 -0.453811 0.532138 -0.015856 -1.146359 -0.604050 -0.170458 0.974992 -1.316809 0.279158 -0.630127 -1.020973 -0.226218 0.885665 1.068058 1.219195 2.247277 1.563444 -0.339635 -0.191182 -2.100683 0.414883 2.109862 0.263233 -1.685535 1.432472 -0.944421 0.118269 0.774403 1.131566 0.928193 0.999352 -0.499966 -0.552239 -0.030192 0.203172 2.071335 0.858354 0.678740 -1.229783 0.555514 -0.484037 -0.488990 2.655697 1.273213 -1.939458 0.313006 1.014985 -0.862703 -0.986452 0.763441 -1.004093 -0.310099 -0.835392 0.549134 1.133580 -1.366430 -1.118866 0.427028 -1.631938 1.869794 -0.387891 -0.255185 0.769262 -2.104908 -0.906790 2.078409 0.214038 -0.526594 -0.921899 -1.394082 -0.816295 -1.880646 0.696682 0.604482 -0.381494 -1.070446 -1.475380 -0.040320 1.723551 -0.062258 0.719147 -1.304292 -0.416729 0.942904 -0.231043 1.216311 -1.344672 -0.471369 -0.246810 -0.175724 0.875361 -0.305624 0.455241 2.382816 -1.331262 1.025091 1.121454 -0.448835 0.093167 1.404657 -1.626033 2.047350 -0.089129 0.917079 -0.143350 0.850623 -0.758841 0.162851 0.167844 0.317610 -0.182013 0.850182 -0.833253 -0.499190 0.127765 -1.734090 -0.811859 0.296330 0.844895 0.282708 0.411123 -0.172309 -1.055906 -0.397290 -0.780920 0.224986 1.462882 -0.231219 -1.237730 0.723291 0.216660 -0.815837 -0.286762 0.436335 0.468035 1.642272 -1.852552 0.404636 0.049539 0.128380 -1.705158 -1.409108 -0.192074 -1.161235 -0.896753 0.986465 -1.766613 -0.660685 -1.079901 0.772648 -1.421916 -0.333797 0.034501 2.062184 1.117548 -0.387737 1.254253 -0.156611 1.247159 0.144119 -0.517923 0.469082 1.530376 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.589685 3.099063 1.397126 -2.977849 9.066240 -1.361132 0.521159 4.502772 -4.058786 6.606330 -2.902397 0.749775 -0.881969 -5.816971 0.456806 -1.778906 -1.096631 2.843108 -0.266199 3.407692 2.368017 -2.395028 0.548847 -0.286467 -2.725311 -4.949949 -0.836833 2.360306 5.200329 -3.936051 1.007089 0.176750 6.366804 -1.924195 5.809097 4.665846 1.958758 4.083407 1.459998 -3.031138 -0.862032 2.296578 -3.450110 -3.805122 0.115440 -1.188197 -5.140167 -2.317329 2.504738 -2.555628 -0.518338 4.999188 -1.293089 -0.096415 -3.445108 5.556121 1.954534 -1.113695 6.917519 0.760012 -2.440477 -1.016912 -6.283538 6.407573 -2.252292 0.818288 -2.728436 -4.469364 1.031855 0.677289 -0.563601 -3.531267 -1.437625 5.662278 2.561954 -5.278100 0.848069 -2.712243 -5.781887 -5.913787 -4.055170 2.260044 -0.211627 4.167268 0.641628 2.080121 0.512784 3.350950 -2.085839 -8.237895 1.161111 6.440287 -3.329468 -1.562029 -4.019484 4.343720 0.986717 0.524345 -2.725494 -2.244873 1.854908 -0.928331 2.757707 -5.652732 3.582814 -5.441878 -0.467906 -0.210705 1.895524 3.071534 2.123105 1.673117 3.832272 6.256836 -3.943808 0.453488 -6.069772 1.825193 -1.652438 1.460622 -1.848888 2.701881 1.611866 2.562589 5.843137 -8.441606 2.433789 -0.510751 -0.974215 -6.667706 0.228954 -2.013448 -1.618921 -2.020999 2.939313 -0.703020 -0.798371 -2.154951 1.783603 1.483213 -3.316776 -2.219941 1.876466 5.883564 -6.262726 1.680852 -1.061597 -1.318320 -1.004657 3.603166 5.498311 4.834113 7.788448 4.675247 0.244679 2.787288 -6.702592 0.024072 5.726190 1.388135 -4.658932 6.798671 -4.782594 -2.096883 0.825773 4.993318 3.754986 1.761237 -5.069284 -4.645917 3.864900 1.733523 6.612280 0.078731 0.131194 -1.453140 4.526567 -0.774058 -3.584868 6.952344 3.112099 -5.244915 2.726452 2.254798 -2.817730 -2.558838 4.394380 -5.584434 -1.045691 -1.373185 0.356443 3.418026 -2.436316 -1.761395 0.684546 -4.544659 6.351269 -1.513028 -1.383465 2.692960 -4.055887 -4.592916 4.736409 0.436914 -1.553490 -3.955244 -4.509147 -4.134265 -4.524095 1.624311 1.332368 -1.411839 -2.861808 -5.319893 -1.006555 3.779167 1.025213 3.757879 -7.528553 -1.528410 3.138014 1.847798 3.333807 -2.340493 -0.349897 -0.427551 -0.247418 1.032511 -1.527013 4.572891 7.955756 -3.337203 3.967415 -0.379027 -2.727365 1.690999 3.166769 -7.343366 7.043920 1.264232 3.765699 0.477539 1.533164 -2.604799 0.742951 1.027118 -0.642355 0.218637 0.788195 -1.430692 -2.084429 -0.679975 -4.823933 -3.733424 -1.011607 2.018096 -0.915930 1.844396 -0.577322 -2.848880 -2.212338 -4.081764 1.132534 3.597410 -1.256139 -1.680685 4.472859 0.825698 0.337734 1.225984 0.337541 2.477706 3.266363 -6.277676 0.385616 -0.963462 2.470854 -4.730190 -6.105597 0.355850 -3.745497 -3.166850 1.983284 -6.047293 -1.196666 -3.811467 0.274068 -6.275979 -1.508401 2.102240 7.953520 1.960027 -2.977253 2.682179 -2.305339 3.350494 0.118302 0.188418 1.098152 3.599686 diff --git a/src/test-suite/oracle/FA_llvm17_p/ir2vec.txt b/src/test-suite/oracle/FA_llvm17_p/ir2vec.txt index dd4079a7f..051e3d4ff 100644 --- a/src/test-suite/oracle/FA_llvm17_p/ir2vec.txt +++ b/src/test-suite/oracle/FA_llvm17_p/ir2vec.txt @@ -1,118 +1,118 @@ -8.409956 -4.281703 -3.567420 15.980676 1.058014 1.002052 3.349904 2.200203 1.569161 -21.957576 -10.156019 10.634604 2.065331 0.366033 0.624830 4.609717 5.593707 4.981438 -23.989093 0.191920 4.710755 -0.059949 -1.281638 -2.605862 0.052384 -6.760642 8.615462 6.481589 1.586128 14.104381 -4.366488 8.071287 12.054094 0.962277 5.674024 10.562528 -3.226275 -0.906791 -5.514536 -4.619415 18.566499 6.091174 -0.328650 6.924335 -0.472102 15.783945 4.887933 11.759537 7.028615 -5.797001 6.552479 0.359871 -6.882478 -2.923575 -15.064921 1.555834 8.016710 5.548665 -5.732085 7.238427 -4.818519 3.838422 5.559509 0.232632 16.866199 4.733471 11.879433 12.171796 13.285538 -11.247455 2.859079 1.882013 3.712293 1.108536 9.436728 -9.744715 -9.908733 -8.426320 -1.888981 -17.917946 -0.643844 -1.521351 18.874806 -10.610941 -1.854872 1.126228 2.360547 14.228093 -7.088896 0.373716 -14.467630 0.145765 -0.981341 17.497510 2.792400 3.122681 -1.261554 4.333084 -0.436500 4.181410 3.140702 -13.353893 -1.082596 -23.544846 -7.545944 -9.782429 2.993557 3.339423 -14.033347 1.375312 -0.709005 9.840657 -21.033183 -2.523160 3.896987 4.352992 8.902204 -2.224572 -4.544915 -0.499763 0.842462 6.355082 7.396240 -9.552283 3.616774 -4.694542 0.425148 2.410844 5.519622 3.079296 -13.674208 -5.722239 3.358346 0.231817 1.788517 6.778082 6.825652 -3.421355 6.749499 -10.540267 12.726731 -15.973662 -2.700914 -6.515626 -9.390315 -7.299591 16.410083 9.677058 10.627167 -0.885272 -4.239319 -0.078778 -16.992247 -22.585187 2.431424 0.867977 1.548313 4.310206 -2.709191 4.045819 -11.422663 2.851474 6.914383 -6.535849 -6.566866 -0.786711 4.784249 2.022578 -5.181121 -5.744117 0.266768 2.273635 1.981582 13.763922 -4.646637 -21.521294 -19.519277 -7.729225 12.804762 -7.546989 -0.745360 -5.713450 -4.349100 -9.180307 1.122338 -10.894144 1.673851 -0.315043 -8.417865 -17.284529 4.977691 -3.379913 0.429104 5.144946 -12.039121 2.582001 7.910264 6.031640 1.359815 3.468725 1.177973 -11.579293 -8.992292 2.107478 -6.675270 13.441102 6.737760 -0.551682 -8.945749 -5.903464 -10.594947 9.082022 -7.411777 8.048488 0.007908 -7.099740 7.027003 -9.995221 1.662063 -8.843095 5.005309 2.827796 -22.390523 16.885995 12.232416 -10.622010 -2.153916 -5.082999 6.077154 1.378550 10.367218 -10.374223 -8.429174 3.383025 -0.778752 -0.059362 -4.345319 3.787416 -2.268361 -2.659424 -14.014546 -6.161917 12.025405 6.374978 -1.893788 1.254614 7.032539 -2.689396 2.781991 14.303229 7.200033 2.197008 -11.522962 -29.767010 5.477912 4.295920 -0.497456 2.047062 -8.223585 -5.591301 4.237186 -4.431231 12.337329 5.060642 -5.851468 12.886631 -14.187818 -12.952572 -11.286168 -3.649055 3.870459 -2.898951 3.258332 -6.592951 2.435005 -2.146481 3.836823 -3.060489 -7.615060 0.732710 6.634670 13.119077 1.795738 -1.191486 14.649620 3.205933 -4.683539 -3.079537 -0.416438 -6.565955 4.236838 -14.231269 -3.087520 1.679782 6.947944 -9.676231 4.513378 -1.406606 4.335275 2.554339 -4.997656 -3.590091 -3.333383 9.621690 0.623383 0.730752 1.450128 0.400272 1.188665 -13.854625 -5.762706 7.011215 1.487541 0.477765 0.651687 3.635239 3.122085 1.741064 -11.799293 0.116721 2.649954 -1.137106 -2.584436 0.131290 -0.289608 -4.506909 5.149064 3.423653 0.538036 8.184774 -2.581872 6.310391 7.265160 -0.143270 3.358274 5.485579 -1.885623 -1.001645 -3.298790 -1.782561 11.234861 2.879792 -0.131979 3.402926 -0.818722 8.767728 2.133556 10.092715 4.777899 -3.258633 4.988398 0.774093 -3.602445 -0.739285 -9.244291 1.281473 4.361534 2.146441 -3.537615 3.709855 -3.335704 2.297081 3.035506 1.058353 11.713609 3.832321 8.387005 8.116939 7.358976 -5.911747 1.800822 1.249859 1.388764 -0.012923 6.452741 -4.795167 -4.464579 -3.062564 0.098051 -8.572480 -0.608298 -1.264364 11.682585 -6.192318 -2.852519 -0.059969 2.438648 9.083693 -4.632412 1.759522 -8.859561 0.165636 0.210843 10.849006 1.280626 1.994531 -1.904377 2.628607 -0.663086 2.165291 2.269665 -7.363727 -1.595432 -12.864388 -5.734168 -5.171429 1.351371 2.395379 -9.536591 1.044189 0.322108 4.620394 -12.753535 -0.880861 2.536816 2.375817 9.058402 2.165165 -4.134531 -0.755515 1.055592 3.674147 3.465556 -3.265922 3.244341 -5.330496 2.078976 1.564812 3.383247 1.575460 -10.279773 -2.287055 1.829947 0.096227 0.716263 4.351383 5.334683 -2.528320 4.202656 -4.999585 6.680115 -10.611175 -2.086267 -4.662368 -5.526928 -3.664708 10.420264 7.930146 7.899374 0.023540 -4.103507 -0.269961 -11.718610 -14.437006 0.104450 0.039426 -0.223840 2.852876 -1.706752 2.518826 -6.030218 2.835528 5.594486 -4.391319 -3.976382 -1.071525 3.186444 1.209990 -3.120665 -3.466330 -0.443161 0.517121 0.495773 9.061955 -2.048460 -13.976234 -13.420863 -4.397440 6.856503 -4.035240 0.519665 -3.766112 -2.433790 -6.901365 0.190648 -5.661353 0.262243 -0.352079 -5.288946 -9.472038 2.779530 -1.389355 -1.864104 2.043936 -7.342222 1.595760 4.357197 3.648773 1.418111 1.752081 -0.231830 -6.952944 -6.229877 1.643505 -4.451974 8.723026 4.740013 -0.723817 -4.148979 -3.559491 -7.866856 4.974424 -7.078406 5.008124 1.119830 -4.785340 3.499082 -7.761992 -1.062575 -4.252791 2.955321 0.831534 -12.625794 10.799869 7.103448 -6.108690 -1.103921 -3.015473 4.369119 0.657215 6.044167 -5.683583 -3.616018 1.402488 0.517439 -0.137599 -0.707855 2.762894 -2.209049 -2.151984 -8.413507 -4.156802 6.893819 4.259501 -0.983052 0.319634 3.377491 -2.149187 1.613443 8.112749 4.514598 0.938245 -5.170883 -17.660779 2.569641 -0.742752 -2.149724 1.697827 -5.922781 -2.660202 1.642837 -4.324994 7.245454 -0.394330 -2.581054 7.228862 -9.701543 -7.486025 -6.259028 -2.507552 1.179204 -1.490111 2.434806 -3.625905 1.264968 -1.248304 2.489336 -2.574749 -5.029098 0.295920 3.471635 6.701112 -0.200043 -0.529515 7.908850 2.251049 -2.060412 -2.333680 -0.289445 -3.953939 3.431121 -9.373945 -1.893635 0.716125 3.608944 -5.535277 2.337406 -1.561540 2.707784 1.273337 -106.923228 -43.065862 -45.911473 176.637766 22.963615 -42.249355 30.073492 42.317803 0.169341 -220.372919 -85.190275 90.096458 18.608671 -16.708223 21.270291 55.138533 51.973187 47.092151 -242.941971 40.274427 31.776965 -4.547775 -66.036280 -47.185406 2.898695 -54.856935 54.275173 89.327354 5.943795 141.528491 -78.142250 70.700524 114.830432 6.019045 92.636992 100.277524 12.894931 -12.680595 -45.243078 -21.540767 222.037728 73.557137 -30.884291 63.989754 31.464563 172.852200 36.367338 144.911428 6.109466 -51.776948 63.842717 -7.858446 -66.173583 -21.424546 -177.204996 44.026768 124.047379 79.744706 -97.173397 90.218146 -61.532496 44.029601 74.964114 24.411819 210.216922 63.797713 122.750886 135.327165 182.563471 -109.761179 27.746854 20.265581 91.923810 -6.458745 85.996151 -87.801592 -86.614913 -176.854466 6.175816 -201.801899 8.223362 -8.110724 189.980422 -131.313248 8.156415 55.217576 37.528322 155.846748 -127.631790 8.285165 -164.857521 -3.865374 -24.464006 243.024362 13.402907 34.174084 -6.901471 81.785288 9.101140 65.419694 15.798639 -143.466207 -38.078924 -280.116723 -124.452135 -69.227403 -19.543310 -3.883662 -169.744128 -9.081415 69.831010 119.534195 -228.663305 -24.766409 40.234286 32.191924 92.215951 -21.773280 -66.690336 12.281601 -24.468381 60.896800 68.786660 -82.342988 40.839630 -70.333012 15.185347 47.813884 77.961942 38.132413 -174.988474 -23.886982 45.335513 -14.494719 -8.491346 47.541162 38.153071 -85.410935 78.702599 -126.384656 143.259028 -191.421986 -25.192549 -88.193380 -125.157323 -45.265272 159.448486 96.452333 97.470559 20.500656 -65.184378 -0.962257 -203.597706 -286.448319 41.726774 12.417538 14.718591 18.724552 -30.226768 18.032400 -100.390170 -10.032454 108.248536 -111.262504 -91.863601 -45.389519 109.427146 18.411110 -59.346416 -75.987517 18.238927 87.098169 31.657228 127.600728 -69.051076 -201.242571 -205.600817 -88.793445 132.780519 -58.191156 -0.551653 -42.133461 -36.945000 -153.772052 50.435461 -125.450966 48.754768 -34.276328 -75.038114 -182.094764 45.611515 -36.879340 -5.431011 19.645239 -131.299590 49.822856 45.663816 42.927186 -6.265431 35.156002 39.570501 -151.074454 -148.240735 20.430739 -24.365374 165.817263 74.389856 21.409021 -69.110777 -58.051742 -128.860023 127.652431 -126.122727 76.169581 28.798146 -91.910980 108.766564 -121.757940 -43.632374 -98.312131 77.358881 25.017636 -146.342323 229.922778 149.739730 -147.209058 -39.508859 -88.650382 84.995577 35.165511 175.848505 -120.164718 -68.906626 48.787836 21.634825 -20.756915 -54.132040 60.900710 -21.626673 10.681894 -163.352666 -81.189932 110.893310 97.885620 -11.423895 21.082224 33.296822 -37.192943 -27.109980 184.259426 65.618873 36.528699 -121.307810 -273.073600 51.131253 -15.739078 -0.356649 20.840654 -100.002784 -67.399454 11.809126 -19.337516 153.181916 73.731698 -61.145281 141.406087 -187.005053 -155.174437 -108.712828 -9.955273 22.424051 -62.851401 65.806298 -90.366480 12.431406 -24.104476 66.057008 -38.834726 -71.703284 -45.764288 40.528141 108.274704 15.378019 -65.572230 171.689291 31.767890 -53.822804 -35.208794 -1.322731 -43.349815 58.587763 -128.531516 -53.796516 -20.137888 77.584856 -111.349651 87.702241 -5.644076 54.913698 46.794273 -2.840495 -2.191848 -0.677548 4.962243 1.192772 0.721352 1.010047 1.169957 0.998029 -8.626142 -3.252557 4.292760 0.155348 0.514807 0.406357 1.360012 2.565463 2.117657 -6.459083 -0.045739 1.195090 0.497826 0.175117 -0.439136 0.266058 -1.872432 2.009087 1.170161 1.205188 4.357885 -2.039810 2.602584 3.868483 0.253518 1.499714 3.155443 0.930499 -1.008230 -1.840312 -2.211037 6.971104 1.122475 0.404121 3.326920 0.032178 4.807268 0.832361 6.264678 4.201859 -1.934518 2.107449 -2.848626 -2.269537 -0.308282 -5.574197 1.641591 1.649580 1.991624 -2.171136 2.204950 -0.553475 1.297612 1.413067 -1.589339 5.188604 1.878089 3.618846 4.464616 4.528259 -3.670143 0.360337 1.094617 1.766998 1.983815 3.492379 -3.382122 -1.337079 -3.656973 -0.692734 -4.404249 0.215171 -1.708566 7.717633 -3.687307 -0.315297 1.760182 0.297445 4.741694 -1.555478 0.811381 -5.598416 0.403708 1.183877 4.395453 0.708265 0.480715 -1.332551 0.775574 -0.480881 1.514041 1.984484 -3.741560 -1.829928 -7.548567 -2.753790 -2.744628 0.585387 0.801617 -5.147425 0.809858 0.423119 4.541033 -7.178660 -1.034634 1.053410 1.265534 3.877241 1.457564 -1.925834 -0.977638 0.589621 1.674784 1.230814 -3.334053 0.808833 -2.317756 -0.242947 0.440206 2.080208 0.383284 -4.446931 -2.270353 0.610646 1.427159 0.158271 1.425569 2.517920 -1.908544 2.390559 -2.492456 3.264710 -4.821925 -1.856137 -1.653449 -3.275044 -2.382316 9.905799 2.752377 5.194227 1.066009 -2.116035 -1.309042 -5.141281 -7.497596 1.099423 -0.429709 1.207510 2.395608 -0.639323 1.207179 -3.086203 0.475549 1.351174 -2.284150 -1.882198 -0.221096 -0.434451 -0.810464 -0.998026 -3.505521 0.707155 2.479997 -0.259063 3.830896 -1.780508 -6.906372 -5.734317 -2.797918 3.822943 -2.440033 0.917698 -1.051045 -0.709379 -2.399931 0.131545 -3.352427 0.200462 -0.290337 -4.050061 -5.595531 1.897635 -1.495523 -0.768700 2.336519 -3.739459 1.499569 1.158069 3.470461 0.280567 0.831049 -0.189528 -5.405914 -4.325019 -0.743203 -2.474588 4.764138 1.984551 -0.206724 -3.292470 -2.374414 -3.752572 3.508832 -5.006129 2.177096 0.240308 -2.061147 1.898096 -3.471519 0.364943 -3.772039 2.111910 1.436886 -8.565877 5.244054 3.432313 -3.637096 -1.083553 -2.726423 2.004669 0.963082 4.211787 -2.908188 -2.060507 1.718043 -0.022123 -0.097730 -2.566296 1.601476 -0.388530 -0.084025 -5.343526 -2.661077 3.194666 2.385188 -0.805038 0.298236 3.361055 0.722228 0.378287 5.597277 2.429632 0.703671 -3.631801 -10.017926 1.841300 3.981260 -0.012008 1.851696 -4.247739 -1.300721 1.414658 -2.480035 3.812005 -0.033763 0.682877 4.174398 -4.982634 -3.791966 -1.591140 -1.385559 1.481436 -1.127147 2.108886 -2.306863 0.207333 -0.983493 1.131331 -1.209841 -2.237161 -0.648811 1.873158 3.926054 1.258263 0.551426 4.465687 1.162102 -2.192165 0.287137 -0.234393 -0.752367 0.791680 -5.527106 -0.552824 0.537405 1.301250 -3.082946 2.056242 -0.668425 0.724351 0.217452 -1.008575 -1.215539 -0.173602 2.696575 0.463429 0.726428 0.371281 -0.083708 0.274324 -3.852534 -1.890940 1.134044 0.163497 0.498876 0.460817 0.637974 1.186746 0.431287 -3.876319 -0.278581 0.754911 -0.278935 0.302434 0.101448 0.097289 -1.390918 1.712167 1.191284 0.315403 2.174038 -0.822469 1.564878 1.994730 0.274974 0.921544 1.500466 -0.529891 -0.280666 -1.245842 -0.684811 3.221959 0.415197 0.023724 1.065840 -0.140860 2.536186 0.813649 2.072388 2.188944 -0.942365 1.545432 -0.392557 -0.816878 -0.389956 -2.728200 0.299976 1.291555 0.783739 -0.996696 0.895406 -0.736404 0.708825 0.654794 -0.262841 2.858664 0.526872 2.377164 1.880047 1.780197 -2.003590 0.245920 0.522729 0.544548 0.611071 1.129768 -1.740916 -1.155455 -1.913323 -0.350868 -2.405986 -0.096730 -0.493861 2.445214 -1.401490 -0.789521 0.207261 -0.316339 2.328359 -0.850533 0.421741 -2.586786 0.114640 0.440287 2.078572 0.552238 0.066445 0.040711 0.532167 -0.197803 0.905253 0.807897 -2.054158 -0.417101 -3.974227 -1.596703 -1.486297 1.078253 0.490527 -2.355453 0.653697 -0.127575 1.023392 -3.004437 -0.498368 0.541190 1.081505 1.140828 -0.661048 -0.728468 -0.687628 0.570098 1.374874 1.366868 -1.400706 0.909243 -1.441735 0.386557 0.372619 1.124863 0.235753 -1.199806 -1.263035 0.351165 0.515507 0.246695 0.817515 1.287942 -0.171058 1.258418 -1.209267 2.094693 -2.554104 -0.321368 -1.325453 -0.944950 -1.188922 3.395188 1.577279 1.926514 0.306239 -1.122126 0.134862 -2.597675 -3.513276 0.008834 0.308951 0.338161 1.031002 -0.552549 1.194461 -1.656050 0.484002 0.863539 -1.060753 -1.191703 -0.152241 -0.712543 0.299242 -0.794225 -1.119946 0.328729 0.520363 -0.416070 2.387055 -0.553582 -3.311776 -2.923406 -1.479544 1.953061 -1.406614 0.096192 -0.765649 -0.499226 -1.796158 0.347594 -1.788311 -0.208620 0.056973 -2.011064 -2.772414 0.796966 -0.669149 0.232492 1.184701 -2.151761 0.456967 0.949185 1.399119 0.604701 0.645563 -0.126391 -2.041139 -1.707986 -0.090437 -1.305684 2.215074 0.662992 -0.414385 -1.464404 -1.306492 -1.467503 1.464950 -1.151050 1.227797 0.048728 -1.366715 0.611806 -1.566679 0.409230 -1.224781 0.697856 0.696503 -4.006930 2.585804 1.939868 -1.705353 -0.571319 -1.098271 1.036087 -0.043122 1.731532 -1.508955 -0.908331 0.321745 0.327675 0.056303 -0.817475 0.773550 -0.113844 -0.870118 -2.483992 -1.462291 1.815916 1.079493 -0.204197 0.214115 1.630435 0.237106 0.443299 2.429192 1.007777 0.301707 -1.465893 -5.049831 0.822586 1.752658 -0.182876 0.872312 -1.802311 -0.873346 0.501546 -0.667493 2.021419 0.917425 -0.326459 2.222880 -1.702834 -1.843164 -1.818850 -0.988174 0.375362 -0.472138 0.599431 -1.148712 0.177276 -0.491853 0.335152 -0.652959 -0.969334 -0.059199 0.960273 2.013830 0.371389 0.409831 2.183469 0.777006 -1.030113 -0.580907 0.105467 -1.231285 1.067399 -2.186733 -0.584444 0.410280 0.785606 -1.403771 0.112109 -0.399703 0.674961 0.028627 -9.551058 -4.834870 -4.798129 19.054088 0.485762 3.923828 3.562162 0.964626 2.912119 -26.573106 -11.418373 17.641257 2.613882 3.095559 -0.355701 6.406891 6.912830 5.172869 -25.877601 -1.479780 4.975144 -0.674275 0.526510 -1.911448 0.119390 -8.499333 14.490072 7.589479 3.306811 17.268449 -4.833085 10.933080 14.809915 0.546579 5.145101 12.223835 -3.550568 -1.589068 -11.324950 -8.354114 21.023099 4.676607 0.807385 9.871189 -3.045714 19.367664 6.342045 14.081471 15.787668 -7.589407 8.477705 5.609875 -8.775180 -5.113536 -17.544740 1.623254 5.616319 4.267851 -6.212970 7.190595 -2.582457 4.603105 6.118606 0.759474 18.019968 5.554921 14.323189 15.258437 14.171353 -15.636018 2.671994 3.478625 2.863228 4.432127 13.024344 -12.637045 -11.797443 -4.818552 -2.875537 -17.863869 -2.632940 -3.375678 21.322850 -12.879590 -4.642766 -0.542293 1.646902 17.314952 -6.295474 3.318370 -17.348201 -0.418831 1.336488 17.597606 3.605139 2.483439 -1.957600 3.386580 -1.893031 5.447739 5.923215 -16.836288 -0.047849 -22.545756 -9.241363 -13.054185 5.777910 6.228438 -16.675199 3.514273 -2.908126 12.357379 -24.509458 -4.011772 4.991525 6.305305 12.511474 -0.578293 -3.799764 -1.115467 4.065587 7.869201 8.954336 -10.774244 5.340882 -2.343810 -0.397470 2.185921 6.604716 4.098184 -16.685122 -9.644676 4.520548 2.909180 3.633974 8.127978 10.160664 -2.810861 8.124398 -10.307927 15.297797 -18.209426 -5.605292 -7.154835 -7.097957 -10.522223 18.200466 11.006924 15.546921 -1.256122 -5.153704 -0.131509 -18.845242 -24.117585 1.713268 1.586640 0.053386 8.581011 -3.641136 7.933315 -13.879757 5.193944 7.215321 -7.517901 -9.020737 0.478579 0.454548 2.170925 -5.275159 -6.682080 0.514581 -1.587952 2.417232 18.417347 -4.057020 -27.270347 -23.487163 -9.661720 15.812918 -10.471277 -0.918125 -6.319979 -6.901654 -8.442795 -0.875825 -13.705245 0.769105 1.020870 -11.501638 -20.982803 8.610212 -4.386073 -1.287142 8.622695 -15.918691 3.037024 6.811431 6.362114 2.428561 4.227001 -0.337434 -14.597138 -9.738547 2.531717 -10.576737 15.327776 8.091495 -1.206058 -12.108537 -9.093550 -11.371116 9.602702 -12.490031 11.260498 0.495949 -6.772318 6.521890 -13.025312 3.710813 -9.993112 6.648524 5.467893 -28.641228 18.986424 14.458291 -11.719823 -1.905283 -3.561257 6.487535 1.440036 10.695273 -13.145080 -11.803434 4.041196 1.252910 0.515659 -4.208486 4.370983 -2.196387 -5.262789 -16.071647 -7.104728 13.800591 7.120325 -1.845241 0.602846 11.148677 -3.662187 3.603471 16.328518 9.769529 3.649754 -13.013428 -35.190652 7.673949 5.208441 -1.933952 5.300119 -12.213093 -5.573337 7.330135 -7.190991 14.345456 -2.336252 -5.694788 15.897162 -17.081063 -15.176748 -13.861252 -7.486406 4.437233 -0.457730 4.972260 -6.765831 2.472827 -2.670622 2.207361 -6.884213 -6.961136 5.125600 9.498933 16.940469 2.860206 2.102775 17.398152 4.860351 -6.503031 -3.617970 -0.520872 -10.018142 3.123203 -19.718566 -2.222135 4.889144 8.336064 -11.849015 2.226752 -1.818834 3.094876 -0.494589 -11.963310 -6.453215 -18.485420 40.863388 -3.724252 8.628059 3.592472 -4.061068 -1.264347 -55.011646 -20.598007 24.928649 11.590621 11.361501 -1.409187 17.462323 6.530804 10.040458 -47.841641 -4.975110 15.094182 1.156419 0.799137 0.635042 -0.945892 -14.200600 28.767031 4.379298 5.037994 33.450903 -6.399726 31.343084 30.417465 -5.076711 5.109406 17.831784 -10.032535 0.653350 -21.495614 -9.928163 37.705656 5.394529 3.483271 12.792798 -16.035336 33.936030 9.877875 24.934688 11.313302 -16.690228 16.166315 17.221183 -9.486755 -7.187693 -29.891823 3.615804 12.628551 13.606507 -5.851373 9.565249 -5.620306 6.862857 13.665550 6.676489 39.522958 14.604411 33.593147 34.924460 24.844851 -24.767398 12.347768 0.004382 -9.792158 -4.029359 31.054561 -22.497471 -22.699915 0.990584 -9.189897 -34.738123 -4.481028 -0.750232 41.199247 -24.855625 -11.945954 -7.908153 12.615024 37.688345 -12.259487 11.417069 -32.748351 -4.406759 -2.887839 34.596128 7.344874 6.405586 -11.843287 8.890568 -5.023079 1.502370 11.210824 -29.555476 7.689378 -32.431425 -20.917826 -22.255956 11.312678 21.852785 -37.407134 4.451996 -18.503026 20.405354 -53.721874 -3.400622 3.757748 17.344035 42.515324 3.072855 -15.544982 -0.194854 7.653048 10.157007 14.330382 -14.821828 16.187902 -11.891006 -0.677527 3.855897 9.432574 10.088983 -40.691600 -16.363726 3.050013 -5.359545 10.447607 24.055582 28.940083 -4.024631 15.629641 -21.277437 25.447563 -37.234902 -13.680371 -10.034576 -29.464065 -19.665275 26.690324 21.790898 23.616004 -12.361094 -20.482431 0.354531 -43.833578 -45.356886 -2.683758 5.281240 -4.474637 22.761230 -9.276681 15.567406 -30.198433 18.511607 26.648742 -11.120861 -18.397776 1.290393 9.406055 7.892057 -9.864193 -8.753633 -5.747640 -13.103139 7.848012 44.380878 -2.081921 -44.638712 -59.200295 -12.301496 29.513494 -18.011037 -0.603981 -20.312631 -12.984915 -27.016151 -4.420026 -25.837171 -2.720565 5.436243 -17.539702 -39.057634 16.201326 -3.905312 -10.628283 12.885365 -29.257431 5.115916 22.757036 7.499563 6.366082 1.238207 -2.163595 -21.699450 -17.797982 14.406791 -24.744878 26.434947 14.325001 -3.891253 -20.120268 -16.897106 -23.137450 15.724801 -12.967281 22.362084 2.440455 -5.879815 8.139755 -31.515186 5.375832 -18.141943 6.522792 3.604280 -51.111375 37.260849 17.639360 -16.317148 3.892870 -0.535243 18.876794 -3.006981 8.611942 -21.979722 -21.981942 4.862436 3.891198 1.814379 -9.997276 4.397850 -12.465634 -15.049224 -27.367155 -10.570454 28.929261 10.263873 -6.141449 -0.746848 19.567774 -20.887904 6.332894 25.925133 25.891679 2.251781 -18.463265 -55.572663 9.924847 -12.911094 -7.445112 -4.918683 -18.563009 -4.991500 18.176183 -15.985572 25.653946 -4.838844 -16.999117 28.334390 -40.137804 -28.221723 -26.972538 -10.636419 7.256106 3.159331 -1.136003 -13.033944 8.901111 2.646773 5.484236 -13.102924 -25.410690 17.427065 18.059457 35.223717 -7.095716 5.313718 32.395759 13.039666 -3.865627 -8.473635 2.837335 -20.901182 2.945158 -40.982049 -3.879168 14.847879 15.806878 -24.437232 2.363885 -11.894980 1.516745 3.408294 -109.913557 -48.676665 -42.264068 169.373432 25.859807 -55.516782 33.785426 49.453836 -3.109341 -217.178085 -80.702934 74.807586 17.227943 -31.759771 25.889045 54.599650 55.942146 46.864548 -243.000352 51.202163 34.818937 -7.301228 -79.108158 -44.550899 -0.260340 -65.596147 34.607254 96.742748 1.770716 145.884309 -82.693892 62.487089 116.026773 4.344243 105.720020 115.927064 22.982430 -12.865102 -25.963908 -0.548752 232.556425 78.958718 -40.832025 53.375865 49.139967 179.837160 27.724816 147.763725 -14.775190 -52.338245 68.868985 -19.238842 -64.382215 -19.076859 -181.787530 42.158651 133.860704 86.195016 -112.467162 98.680460 -78.072586 42.996212 75.921232 37.314862 216.550966 63.604114 113.889421 132.582873 193.610678 -106.832057 23.712550 24.900523 99.055579 -11.022638 79.873804 -68.968370 -84.868300 -208.160647 12.183475 -197.276788 4.103406 -1.083615 184.324391 -135.795398 15.813836 73.949035 38.892948 155.137998 -134.936642 -3.017465 -170.960401 -5.788769 -20.078457 250.920257 12.660304 38.471015 -3.750464 91.739414 13.219889 71.916586 8.283787 -155.539803 -62.251365 -294.673946 -133.706693 -76.524780 -31.954615 -13.386880 -178.476475 -20.398780 101.777447 125.213748 -230.101847 -10.747189 42.599464 28.848821 87.566879 -23.222421 -74.378578 16.962096 -33.213133 56.073528 70.130068 -76.928099 31.648636 -84.779603 31.495352 51.922404 74.670763 30.586495 -175.358177 -10.459252 56.722590 -23.575338 -17.923665 44.547632 28.127783 -101.003236 78.547083 -134.235173 150.268664 -193.904383 -17.357850 -96.836890 -134.042976 -40.891219 164.939194 102.968749 91.361452 24.510506 -75.240240 3.639805 -207.813947 -302.782311 43.400333 1.731227 22.195210 4.848864 -31.763354 9.128349 -94.690610 -14.588793 99.272820 -117.313608 -83.952529 -48.802303 116.397481 19.691792 -61.895793 -75.406645 13.484974 103.984360 37.946100 121.873794 -81.889695 -192.010899 -202.887951 -95.358910 135.031161 -55.274952 0.686194 -39.270379 -38.599605 -169.951960 63.250674 -122.179665 54.731524 -52.613752 -64.365337 -183.906040 42.439966 -41.045425 -2.615762 10.751204 -130.728079 49.393001 38.359040 26.672647 -4.515030 32.527943 38.646586 -151.824071 -153.211934 23.479675 -14.158949 175.062469 77.284673 24.522039 -58.214930 -54.915751 -136.444771 136.862869 -131.659672 73.306264 40.598157 -111.902458 125.640889 -115.542466 -63.722097 -99.175493 87.089398 23.892286 -117.824239 240.827121 158.565549 -157.425733 -43.950586 -91.290768 83.065323 46.364917 186.526291 -116.352565 -61.149871 54.101668 20.133920 -21.846788 -49.376428 65.148644 -24.451168 34.131878 -170.417777 -83.255096 113.171622 110.185308 -10.977437 23.365077 18.088022 -34.187141 -33.427201 188.629150 62.050799 42.099205 -123.950214 -264.922555 56.627695 -28.221556 3.603405 20.514099 -96.831373 -69.432511 0.837924 -13.414972 160.630703 90.310556 -65.293923 146.007931 -191.705967 -166.848072 -111.473463 -5.388888 21.238143 -74.358364 75.976583 -93.096017 14.105333 -27.884036 77.918295 -28.006226 -70.556932 -60.628338 39.377821 97.529416 23.133154 -82.613505 175.889504 23.709802 -57.257529 -39.000073 1.717983 -32.415581 69.027685 -116.688482 -64.092548 -34.947328 85.397010 -111.960205 100.478210 -5.400072 63.609326 58.785823 -31.360936 -15.346728 -11.434257 46.408485 10.063225 -1.619404 3.374485 8.846221 3.504286 -58.428197 -28.613549 33.993036 3.424737 4.565522 8.737832 14.512267 17.420426 11.117862 -61.886066 4.965476 0.593454 -2.924097 -12.369080 -11.249415 3.007203 -6.537275 24.435195 17.400975 5.617657 32.692829 -21.572899 23.239368 27.126564 3.776836 20.575658 13.338638 0.081177 -8.241980 -23.154190 -22.067880 60.466117 9.246213 6.277855 29.979326 1.972117 39.298159 6.380157 52.439817 31.474687 -10.513321 28.988137 -13.691745 -17.126086 1.132526 -52.209839 16.701013 21.710398 7.224471 -19.275317 18.667795 -2.930182 15.861197 16.939668 -9.248033 55.852322 18.051949 37.669025 33.322274 40.497516 -28.958575 7.911859 4.633729 26.996002 9.049048 19.014958 -38.548560 -12.786560 -33.185747 0.844485 -44.096558 11.395175 -15.441938 53.958630 -30.896040 -2.958572 8.065328 2.584345 39.179929 -27.237618 11.263951 -43.051924 1.845322 0.098361 45.361180 1.334175 7.120589 -3.399253 9.834660 -4.843526 15.374014 7.792406 -28.541667 -3.106680 -67.605742 -32.955894 -8.283812 1.712289 -1.696953 -38.965448 8.957366 -1.208880 23.406681 -52.236887 -19.213976 6.325940 6.833524 21.269240 10.584458 -14.019048 -11.019457 1.403923 26.028753 12.563851 -22.388977 16.633959 -26.885473 -3.908734 10.613689 28.218703 10.422738 -34.230845 -15.074572 4.935851 6.754261 -0.306666 8.154199 13.823434 -13.884523 22.237343 -19.711435 29.526505 -45.297490 -20.354276 -24.979183 -24.361972 -13.075536 61.193588 19.670731 40.135259 16.660064 -14.461787 -5.503416 -47.663302 -63.179427 9.165555 3.230619 1.857163 13.940534 -4.287284 10.494113 -25.932844 -7.039609 27.539007 -29.840103 -32.046101 -16.390504 7.309213 -0.659318 -14.139105 -26.908492 12.698834 20.823498 -4.405387 31.207804 -9.360516 -63.053993 -46.298724 -21.251588 32.117171 -17.450213 6.097735 -6.933470 -3.246296 -32.894281 1.610986 -34.623229 5.497632 0.421722 -33.973083 -45.501270 12.311983 -7.443964 3.014179 10.723266 -35.513394 18.361797 14.422157 32.931706 -3.890015 16.821251 5.669024 -45.816563 -44.301709 -5.327183 -10.106111 42.305263 14.690139 3.052654 -23.440770 -20.007565 -27.741849 28.210999 -44.850032 20.098420 4.648651 -16.742460 13.764956 -35.320297 -3.049524 -26.428133 15.039600 7.301235 -66.694998 49.149718 29.989661 -37.377066 -11.197265 -34.418846 26.696013 1.627141 48.728532 -28.351753 -13.498144 10.232360 13.045980 -6.040216 -22.583224 17.095435 0.772987 -11.302185 -44.270811 -28.121927 27.833356 20.928851 -2.038902 1.541251 21.380303 0.557909 -0.297117 50.955575 16.162284 4.448964 -28.262677 -88.336054 7.930845 32.831624 -2.283784 15.030131 -38.343045 -16.902338 3.847051 -13.938065 35.629403 8.232511 5.156170 34.819875 -38.843019 -33.165830 -22.620313 -3.764675 4.499523 -12.543884 14.299428 -24.377173 -2.036852 -6.944547 12.499344 -16.738027 -14.405051 -14.609901 8.455885 31.671925 1.984069 0.279360 41.090855 17.760034 -15.048805 -3.741745 -3.976877 -13.191270 14.280814 -41.430873 -9.800822 0.976753 9.313105 -29.554197 14.766919 0.613140 11.960923 1.318477 -7.799668 -4.071620 -5.420433 19.441916 0.097448 4.814210 3.490422 -1.530861 0.597974 -26.429035 -10.877028 12.952038 4.108473 5.608901 -1.736988 7.655037 4.722737 5.153288 -23.937006 -2.728251 6.328065 -0.122088 2.837551 -1.051951 -0.213946 -7.934377 15.135514 5.365330 3.064898 16.927538 -3.650098 12.374073 15.305216 0.126718 3.332398 11.490137 -2.811076 -0.284730 -11.919938 -7.305765 18.496267 3.311266 2.265938 6.788055 -6.882538 18.098935 9.180751 13.693581 10.354634 -8.181621 7.835342 2.072203 -7.757140 -4.703185 -15.396661 1.116479 4.719974 7.281211 -3.821130 6.148457 -2.546109 4.211159 6.257105 1.560075 17.218851 4.547378 14.312523 14.613264 12.638885 -15.464573 3.658994 3.001690 -1.402216 1.350324 13.693015 -14.634152 -11.876987 -1.186063 -2.838731 -17.777290 -2.919642 -0.515821 21.382559 -12.020154 -5.636419 -2.043629 1.864138 17.104423 -5.606672 4.253726 -16.519433 -0.456080 0.136849 16.892359 3.967897 1.738018 -2.569942 2.932628 -1.195328 3.563640 5.149190 -15.186575 1.977276 -19.023884 -7.274184 -12.395145 6.337628 8.761522 -16.083562 1.538830 -8.596282 11.205614 -24.904878 -2.909526 4.797332 8.391178 15.660855 -0.152596 -3.079458 -0.410645 4.770430 6.788594 10.052194 -10.788585 6.520489 -2.101117 0.164836 1.538862 5.159729 4.003360 -17.691548 -9.588865 2.785036 -0.491522 5.134570 9.196989 11.614197 -1.108197 7.893796 -10.658770 13.767441 -17.558700 -4.758970 -4.815434 -12.323341 -10.497475 17.930053 10.386022 13.400652 -4.304485 -6.377691 0.241143 -18.525935 -22.993010 -0.127095 2.926281 -0.575743 10.497739 -3.966038 8.333590 -14.770962 6.808651 9.431247 -5.201344 -9.380830 1.682729 0.148893 3.285342 -5.252660 -5.443881 -0.219518 -4.608916 2.950185 20.592283 -2.874299 -27.069132 -25.240624 -8.904709 15.309622 -9.927617 -1.220012 -8.493945 -7.128332 -9.854514 -1.387859 -13.265998 0.227644 3.382564 -10.860245 -20.386805 8.379125 -3.783692 -2.409698 9.130444 -14.238075 1.896706 9.559346 5.362971 2.909695 2.681067 -0.368899 -11.980692 -7.895843 4.560356 -11.355878 13.486466 6.207853 -1.324402 -11.322136 -9.016356 -10.269337 7.963580 -6.265186 10.619692 -0.735949 -2.762971 5.251211 -13.550013 7.680528 -8.443272 4.939788 4.845492 -30.144040 17.246924 13.223097 -9.038090 -0.710021 -0.957483 6.384306 0.099880 7.228224 -11.905642 -12.286174 3.478319 0.604545 0.754335 -4.232095 2.337189 -4.108180 -7.570293 -14.094706 -6.149521 12.474037 5.675516 -2.540617 -0.615645 11.590825 -5.662908 3.555393 14.683361 9.617569 2.305236 -11.480688 -34.754830 7.042273 3.759777 -2.646295 2.395819 -9.726436 -3.147618 9.513382 -8.701130 13.342775 1.320514 -7.930653 15.314771 -16.951001 -14.104072 -13.670273 -6.897526 4.520713 0.617136 0.750838 -7.097527 3.901455 -1.539772 0.938039 -6.552337 -8.823639 7.756748 9.214457 18.313635 -0.224244 3.797845 16.870032 4.480413 -2.690932 -4.028372 1.218755 -9.146699 2.968953 -19.287535 -2.257836 6.626014 8.320818 -11.061159 0.807550 -4.164060 0.880403 1.366365 -5.509865 -3.120084 -7.142217 19.509393 -0.727753 3.973796 2.200049 -2.153222 -0.616550 -26.586854 -10.196966 11.877416 4.634136 5.273189 -0.461018 6.395212 4.015107 5.065614 -24.574405 -2.625037 7.139923 1.014166 0.896833 0.584717 -0.213415 -6.527709 12.619035 3.364663 2.621083 16.185483 -3.649969 14.291888 14.487193 -1.795528 2.449175 9.060720 -3.640389 0.416006 -9.641886 -4.939471 18.453433 1.353761 2.900525 7.299637 -6.418880 16.496585 4.566947 12.143568 6.885857 -8.127638 7.655783 6.949911 -4.317275 -3.563733 -14.362675 2.054361 7.349341 7.734126 -3.470325 5.041796 -1.654653 3.229948 6.237684 1.900604 17.976628 7.708886 14.292988 15.690883 12.687095 -12.070930 5.070203 0.215990 -3.253068 -1.119042 13.938046 -11.385171 -10.248539 -1.725271 -4.659981 -18.405959 -2.103247 -0.996049 19.679442 -11.613037 -4.987069 -3.117121 4.786954 17.266875 -5.111346 4.905521 -15.723369 -1.702986 -1.664724 17.400904 3.427597 2.773472 -4.893745 4.031144 -2.111644 1.798503 4.030260 -14.008921 2.954378 -18.507988 -10.458283 -10.418270 5.191662 9.222441 -17.984932 2.051018 -9.115057 10.237448 -26.291917 -2.957129 1.909404 8.380077 15.645148 0.781505 -7.694188 -1.422513 3.984472 4.940413 7.109812 -7.441883 7.322478 -6.775677 -1.711370 1.620648 4.718742 3.978236 -17.325539 -8.545677 0.658224 -1.359448 4.537577 9.839634 12.709787 -1.015798 7.647415 -10.819922 12.064834 -17.391090 -6.962319 -4.882412 -13.471680 -9.433606 12.997102 9.605303 12.081369 -5.221549 -9.543628 -0.377573 -20.201373 -21.966130 -0.559664 1.651144 -0.717393 10.863895 -4.554254 7.187476 -14.426950 6.982586 12.284117 -5.094995 -8.754826 -0.117637 4.215065 3.008973 -4.360341 -5.369679 -1.538802 -5.062338 2.317261 19.970047 -1.788360 -20.641913 -27.628064 -6.568929 14.123206 -8.596119 -0.300154 -9.080059 -5.697341 -12.313964 -1.971468 -12.296983 -2.673881 2.066672 -9.246314 -18.952423 7.682072 -2.612269 -5.063220 6.793629 -14.431692 2.488902 10.985133 5.545642 3.555445 0.796424 -1.390389 -11.236675 -9.220338 5.341002 -11.239210 11.087393 7.005183 -1.193421 -10.047257 -8.504480 -10.803798 7.480338 -6.793735 10.230167 1.843837 -3.292985 4.422609 -14.556376 3.199861 -8.242662 3.038862 2.728369 -26.095448 18.619568 7.943252 -8.458001 0.665716 -1.480681 8.391576 -0.966200 5.259915 -10.833142 -10.253521 2.991657 1.802627 0.868247 -5.931998 2.430955 -4.854528 -6.435850 -13.340147 -5.819400 13.565940 5.578408 -3.032841 -0.512672 10.038463 -8.982719 3.563389 13.544254 11.289503 1.364435 -8.031762 -27.793399 5.134377 -4.706118 -2.671169 -1.666471 -10.160457 -2.758099 8.787107 -7.038948 12.682762 -1.974584 -6.785021 13.947348 -18.544207 -13.370530 -12.175964 -5.394371 4.052814 0.762631 -0.242945 -6.827023 4.057127 0.836079 2.540313 -5.496742 -11.632999 6.311295 8.310882 16.009240 -3.268320 3.354953 15.810461 5.693172 -2.711556 -3.309776 0.967411 -8.620551 1.262241 -19.272020 -1.701479 6.348939 7.208237 -11.407388 1.867465 -6.178993 1.077095 1.847371 -99.956192 -47.536372 -36.796540 154.189143 24.803894 -52.256257 30.741406 44.968079 -3.504811 -196.262405 -70.935288 64.998407 14.577760 -28.984371 24.242770 49.636841 50.792112 39.878970 -219.047014 48.472430 29.854884 -7.757022 -74.314794 -39.283784 -0.442414 -61.384921 30.937855 91.755466 -0.100884 130.800860 -76.167207 55.207455 105.035311 3.606067 97.645747 105.317210 26.142152 -12.278761 -24.432604 3.043733 213.086149 70.904317 -39.191997 46.625466 47.148313 164.335808 25.654110 137.021182 -14.056667 -47.552828 63.699257 -20.948424 -58.559661 -18.210502 -167.108630 39.675069 121.865092 79.436142 -105.145646 90.675946 -73.824054 38.342463 69.153881 36.247634 199.006014 57.018229 105.538940 119.563179 177.774837 -97.378558 19.074795 25.955753 93.353848 -8.709064 70.913380 -61.571510 -75.771090 -198.044759 13.982186 -176.402504 2.662675 -0.932145 164.228573 -123.275641 13.321285 70.646765 33.286570 140.588941 -125.632260 -1.785112 -157.229126 -5.132449 -14.920481 229.833887 10.678256 33.271317 -1.041266 85.171671 13.669268 68.465376 7.792432 -141.258814 -60.381164 -268.827484 -124.405622 -68.007250 -30.959908 -15.510665 -163.506275 -19.588649 98.578292 113.801972 -207.164462 -8.784347 40.017463 26.040064 82.623404 -20.525038 -66.690002 14.999407 -29.020681 50.953316 65.225929 -68.704541 29.928760 -78.794345 33.640189 48.348282 68.390701 26.683750 -159.910891 -7.784930 52.749062 -20.966155 -17.408077 37.410538 22.548533 -94.840788 72.463531 -121.951673 137.753223 -177.307513 -14.655859 -89.467252 -121.542407 -34.867334 154.646644 94.801322 83.471464 25.177613 -71.390589 3.846693 -189.341148 -279.009609 38.089481 2.409659 20.348118 2.599989 -29.405714 7.632863 -83.211744 -15.032619 90.279908 -108.391576 -76.872784 -45.002577 101.346272 18.238462 -56.201468 -70.154233 14.203321 98.377187 34.472451 109.941189 -75.128295 -177.288987 -182.096023 -88.152075 121.363862 -48.563601 1.113756 -33.938139 -36.095199 -158.445362 61.117507 -111.356013 51.256515 -49.808861 -60.763871 -166.763243 38.865746 -38.178767 -1.817421 8.224979 -118.687905 45.169304 29.172515 22.635404 -3.081365 29.268781 35.227930 -139.834983 -142.272160 19.888269 -10.490040 162.803838 68.406379 23.536790 -49.861222 -50.000981 -125.344515 126.389228 -123.471584 64.709605 39.480362 -104.971754 115.610431 -105.022671 -60.489112 -89.941582 81.257078 22.291961 -101.380344 222.090516 148.001369 -145.435600 -43.298569 -83.786729 74.876970 44.456565 174.055868 -105.686914 -53.046053 49.500245 22.148804 -21.073315 -43.590892 60.574379 -21.166588 32.624282 -156.500676 -78.978877 100.614737 102.814618 -9.671947 20.302007 14.194763 -29.100755 -35.190196 172.862782 54.181826 39.451983 -111.652581 -240.081137 51.867946 -25.831969 1.616858 21.233572 -91.350016 -63.133472 -1.277269 -11.661701 147.744520 83.782801 -58.598098 132.941297 -174.720134 -152.258590 -100.941512 -5.504600 16.368809 -69.062234 73.154394 -85.717028 11.808497 -26.614855 70.249258 -27.426574 -61.669753 -57.967366 33.709691 84.839718 22.357463 -77.044701 160.317034 20.575447 -51.723319 -37.063771 3.104248 -28.186455 65.799196 -103.740993 -59.825406 -35.188289 77.386802 -100.343510 91.837103 -4.017096 58.087370 54.648022 -4.084757 -2.177070 -4.993197 13.237469 -0.552666 3.825956 1.427035 -0.861107 -0.359699 -18.924760 -8.251484 8.456501 2.919638 4.256171 0.562547 4.862724 3.256981 2.745190 -16.688836 -2.127024 4.852125 -0.155755 1.055030 1.487374 -0.033887 -5.225414 7.574680 2.427460 1.857815 11.234785 -2.495949 10.597967 10.163795 -0.998289 1.750627 6.066351 -3.079483 -0.651231 -6.765518 -3.858760 12.677285 0.887011 1.392664 4.969276 -4.793174 11.664364 2.146658 9.266057 5.334187 -5.671856 6.222472 2.423636 -3.520157 -1.748665 -9.888408 1.193685 4.044803 4.487823 -2.306226 3.300992 -2.264285 2.380665 3.861573 0.130700 12.585665 5.061565 10.783923 11.210269 7.871987 -8.793743 3.269956 0.961824 -2.687946 0.277813 8.191034 -7.218767 -5.630902 -2.472039 -2.520996 -12.412690 -2.311710 -1.700580 14.603243 -7.869599 -4.481778 -1.917279 2.432417 12.366504 -3.774619 4.573227 -11.067311 -1.264943 0.604541 9.994406 2.423951 1.263979 -3.372538 2.499285 -1.739146 1.537452 2.530625 -9.420704 -0.073797 -12.381021 -7.323443 -6.893737 4.341317 6.635695 -12.710981 2.218619 -4.925699 7.604476 -17.639602 -2.026621 1.472398 5.994822 10.795865 3.248008 -6.193565 -1.839008 3.606315 4.253976 5.682534 -4.925712 5.842280 -5.355450 -0.630724 1.049500 3.637705 2.898413 -12.539666 -6.513562 1.546990 -0.772355 3.117066 6.969831 9.476669 0.007945 5.707075 -6.624017 8.573290 -12.527266 -4.611261 -3.941330 -8.592590 -6.512939 11.659737 9.292430 9.043884 -1.871472 -6.225561 -0.035747 -13.973204 -14.906852 -1.132081 1.351850 0.020511 7.283295 -3.041040 5.962249 -9.461094 5.785888 7.081300 -3.718514 -6.093998 -0.014421 1.586475 2.330106 -3.062277 -4.230739 -0.849349 -3.528916 0.014337 14.158305 -0.957808 -14.440257 -18.861659 -4.940546 9.789863 -6.170550 0.184953 -5.925996 -3.508084 -8.149201 -1.497265 -8.574121 -2.217340 1.767647 -7.769665 -13.237924 5.612327 -1.633014 -4.233203 5.128561 -9.793974 1.598737 7.779818 4.820603 3.058363 1.059515 -1.654057 -7.282111 -6.428319 2.802851 -8.818061 8.621013 5.765388 -1.910309 -7.427276 -6.208742 -7.923937 6.450129 -5.188592 7.240755 0.573803 -2.537823 2.457237 -10.315846 1.706470 -5.843999 2.583587 2.200360 -20.362137 11.855567 6.275403 -5.966143 0.175323 -2.168905 5.816793 -0.359086 4.086389 -6.853538 -6.109423 1.445575 2.094848 0.751337 -3.812129 2.231653 -3.237899 -5.359229 -9.113797 -4.099996 9.867168 3.738370 -1.730037 -0.018314 7.651869 -4.072995 3.030734 8.972631 7.770936 -0.234922 -5.481245 -20.454544 3.751583 0.019731 -2.819175 0.186060 -8.200747 -2.141048 5.129225 -6.672085 8.778268 -2.208558 -3.931212 9.856006 -11.965453 -8.941879 -8.940163 -3.782694 1.930599 0.676254 0.873852 -4.080599 2.587318 0.788590 1.212650 -3.856008 -8.178692 3.191871 5.546306 11.297549 -1.381682 3.172448 10.692592 4.282618 -2.432053 -2.806218 1.000946 -6.493776 1.075136 -14.293107 -1.414487 4.603165 4.484696 -7.911471 0.090229 -3.242776 0.526716 0.730821 -14.634759 -6.274812 -15.080035 31.106797 -1.027188 6.025920 3.290894 -1.764668 1.752367 -38.981297 -15.647158 26.381829 7.042171 6.275470 -1.828499 14.561857 7.166093 5.474123 -32.805801 -1.936159 6.620064 -4.362658 -4.134863 0.522939 -1.407183 -13.280978 22.249558 7.280042 3.319533 24.099170 -5.633878 19.958780 22.312854 -2.678012 6.362699 15.039666 -6.567495 -0.713829 -17.713047 -10.222235 28.438378 7.664953 0.127703 10.085855 -8.713862 26.865179 8.130128 27.190383 11.522997 -11.230997 12.395075 10.843059 -11.111174 -3.960020 -24.312913 2.503280 7.376822 5.594882 -7.242414 8.238896 -9.166375 6.983702 10.020668 6.203894 29.755435 8.710068 26.184401 24.850516 19.517908 -21.214392 6.689526 5.129202 -0.057259 2.251565 24.521799 -15.064886 -19.756484 2.504221 -2.062327 -22.439745 -3.535530 -2.176579 37.838597 -19.549801 -11.175262 -4.110253 8.532288 28.836304 -13.242296 9.940491 -24.799052 -1.046632 -2.636946 30.631992 6.987872 5.746765 -7.813640 6.671332 -3.792556 4.475496 5.847627 -23.898512 2.057708 -28.444460 -15.390613 -18.667690 7.611671 12.525235 -28.119463 4.106484 -5.933490 20.800702 -37.456279 -2.070262 5.700215 8.856067 34.770820 8.608069 -9.041057 0.431553 6.580333 9.122039 13.612427 -11.282053 10.231870 -4.884724 4.070023 3.100688 8.049166 7.939618 -34.448953 -9.468875 7.299394 -3.147345 7.274478 15.242284 19.293795 -6.973546 12.756916 -13.434534 19.507330 -30.170804 -9.301896 -9.754170 -20.816347 -14.248007 27.648948 22.603796 24.577846 -5.074226 -8.549026 -1.380411 -34.008826 -37.626898 -2.714168 2.941605 -4.294912 12.237462 -5.285766 12.152895 -21.415843 12.361248 16.557739 -10.990691 -14.023019 1.419647 10.638755 5.130051 -7.965243 -7.817693 -4.622877 -8.749401 6.014340 32.462332 -2.599760 -47.307417 -40.668936 -11.560523 22.347173 -14.127231 0.174731 -12.702668 -11.434376 -16.333638 -3.154290 -18.406560 1.514238 2.897532 -12.946360 -30.059824 11.912839 -3.437286 -7.931446 8.860051 -22.995797 4.518648 16.180356 4.127366 4.549946 4.930999 -1.566774 -19.227255 -12.687742 9.531301 -18.231403 25.252342 15.362362 -3.886477 -13.812736 -13.113675 -21.719448 12.886899 -17.249863 16.430648 1.117458 -7.930451 7.821411 -23.114044 3.094857 -13.749533 8.680762 3.234346 -40.979525 29.680774 22.456431 -14.949666 0.687850 -1.925475 12.552898 0.352625 12.705855 -19.354118 -15.559218 3.562037 2.910416 0.556907 -0.743828 5.766337 -7.585476 -10.769969 -20.868166 -7.851421 20.686129 9.253013 -3.344151 -2.736391 12.772638 -11.976099 8.053237 20.326619 15.854151 2.564893 -18.124985 -54.392570 8.752147 -7.583571 -9.495812 3.818613 -14.136601 -5.608223 10.488906 -16.460219 20.893369 -8.732078 -12.261075 22.109380 -29.973692 -22.261276 -21.316364 -10.247215 3.225094 0.597999 7.393726 -10.346408 3.917527 -2.929701 3.794852 -13.408895 -14.140448 11.776893 13.668761 24.336380 0.413985 1.951113 24.218813 8.892725 -4.693218 -8.319108 0.687247 -15.776614 4.991902 -33.031994 -3.336890 8.424824 12.229130 -17.658792 1.553789 -2.691459 3.969659 2.063918 -14.954241 -6.656964 -12.707540 34.880897 0.647098 4.521440 4.817377 -0.117307 2.307201 -46.573464 -20.093890 23.123911 6.780681 4.459507 -0.053816 13.419261 9.220416 10.285501 -41.850979 -1.081256 10.083736 -0.583129 -1.251975 -3.673626 -0.431231 -13.774215 21.556373 8.569055 4.559641 28.868563 -7.974391 20.830188 25.151549 -0.766860 8.644362 19.430207 -6.811625 -0.421650 -16.226226 -10.498598 35.083254 9.488866 1.622393 13.222739 -6.262895 31.221045 10.380540 24.440652 13.723010 -12.977941 12.786138 8.697809 -12.208214 -5.954709 -28.713713 4.515313 13.749244 10.252907 -9.537515 11.671382 -7.788756 7.840957 11.451560 2.270745 33.563071 10.057636 25.876571 27.321048 25.085809 -23.601604 6.803500 4.191725 2.890387 1.408782 25.375011 -20.687654 -21.589619 -6.016782 -6.058684 -31.545433 -0.762832 -1.668725 42.150020 -22.727195 -8.113702 -0.659162 7.799762 30.815998 -12.860324 5.428008 -28.179669 -0.252526 -4.475468 34.044373 7.425632 5.555208 -7.326744 8.173995 -2.637270 6.370934 7.420062 -26.783154 0.676167 -40.931775 -17.085018 -20.719628 8.983861 11.582486 -30.874953 3.177163 -6.360284 22.053269 -44.729285 -3.424226 7.722110 11.330604 26.717416 -1.599367 -10.849862 0.122557 4.340159 11.542299 14.290896 -16.704381 8.849765 -7.259277 0.606404 3.277472 10.511684 6.688272 -31.156808 -13.020584 4.022389 0.362382 6.142292 15.632942 19.451460 -7.671638 14.389235 -18.215271 24.255606 -33.930149 -7.932065 -11.884711 -22.604192 -16.160526 30.287694 19.924125 24.805378 -6.093264 -10.437066 -1.610355 -36.608086 -42.471159 1.955205 2.969783 -0.050511 14.020283 -5.879269 11.405272 -24.035244 10.973193 18.479160 -12.695951 -14.363853 1.039920 11.840245 3.670188 -9.984234 -12.198256 -2.541749 -2.245608 5.618683 32.137678 -6.174438 -43.675991 -43.849087 -14.591203 26.125883 -16.408550 0.304746 -13.682540 -10.465906 -18.176395 -0.463179 -23.070064 1.923157 2.301631 -16.666236 -34.809580 11.569059 -5.681834 -5.456800 11.347211 -25.593607 5.489917 17.618235 9.419078 3.637077 5.532016 0.826166 -24.433859 -17.425674 7.353346 -18.286688 25.377136 15.695133 -2.160578 -18.865259 -13.829326 -21.874951 15.193812 -15.657964 17.200357 0.005881 -9.410157 11.272735 -24.512507 5.562151 -17.889949 8.692944 5.156777 -48.211172 33.563889 23.500363 -18.295291 -0.881759 -5.784101 13.636219 0.579449 16.724814 -21.165452 -18.128035 5.898265 -0.759074 0.464780 -7.328657 6.833660 -7.750451 -8.786122 -25.781560 -10.259494 23.518009 11.789928 -4.088504 0.567842 15.989886 -10.166102 6.136658 26.857166 18.218571 3.872272 -22.561438 -59.184901 10.632216 -0.729465 -5.011143 3.243439 -15.129159 -8.236597 11.848476 -12.410535 24.277335 1.865558 -12.215525 26.143393 -31.715589 -25.971647 -21.856272 -9.263273 7.520880 -3.201910 4.951110 -13.652920 4.955903 -3.368273 5.645452 -10.293165 -16.923461 7.842221 14.717028 29.860496 1.721414 1.383178 29.177593 8.876926 -8.076548 -6.300073 0.334345 -15.241198 5.670218 -33.646526 -5.059521 7.594490 13.691320 -20.080743 5.996150 -5.749306 5.276477 3.836423 -10.885370 -8.537444 -13.578325 26.170776 -1.586006 4.042864 2.077384 -1.768354 0.332482 -33.459054 -13.649817 21.566106 6.884348 5.452718 -0.973378 11.743598 5.073008 5.362204 -31.208087 -1.741658 5.663394 -3.088195 -3.400627 -1.412817 -1.095345 -8.952630 21.402984 5.082600 2.457332 19.507946 -4.573098 18.327519 17.446573 -1.677515 5.838151 11.193137 -8.504860 -0.998041 -14.342156 -9.492951 24.717945 5.879093 2.068810 8.172979 -8.166038 20.788038 8.891437 20.720625 11.146349 -8.686730 11.008923 8.942348 -8.777094 -3.348491 -21.933521 1.349127 5.708052 5.561842 -4.338015 6.849617 -6.486476 5.750775 8.673234 4.873561 27.824319 5.102736 23.626891 20.621240 14.985899 -16.258119 7.506566 1.658086 -0.802923 -0.924838 21.556955 -16.023912 -16.104465 0.101755 -2.686052 -22.693154 -0.706227 0.054964 31.280490 -15.025727 -9.613981 -5.300351 8.691123 24.482389 -10.510985 7.839096 -20.873630 -1.349922 -1.883113 25.180790 6.004135 5.284346 -6.618936 6.128985 -3.721573 2.475730 6.262167 -18.787742 6.512022 -27.711539 -11.336916 -14.190946 5.892622 10.089116 -22.010656 3.456979 -9.280375 14.349083 -31.520406 -3.204374 3.735774 6.905784 26.576560 1.970556 -6.851821 0.024645 3.787690 9.323624 10.674897 -10.101946 9.214265 -4.381770 3.176657 2.691598 7.718108 7.754569 -27.948063 -8.487475 5.178983 -0.911797 6.086503 13.610884 17.412904 -2.621877 9.633118 -12.672009 15.998385 -24.436416 -6.627951 -8.212878 -18.096315 -11.730986 22.091920 16.817449 18.036987 -5.990139 -7.857898 0.953016 -28.485145 -33.462023 -0.409128 3.469355 -4.800188 10.572966 -4.111826 9.218203 -18.488046 10.038891 17.695941 -9.158427 -12.586598 0.055879 5.165699 6.048152 -7.242535 -5.508299 -2.955744 -6.587513 5.417948 27.013391 -1.539550 -39.835429 -35.307082 -8.153290 18.443416 -10.992974 -0.675566 -10.858194 -9.887946 -14.161972 -3.047951 -15.243168 1.330850 3.269636 -12.025102 -24.758841 7.611625 -1.616608 -5.066761 6.769061 -18.786324 4.102174 14.477696 5.470602 1.782575 4.252037 0.113033 -15.216221 -11.836412 9.259549 -14.831791 19.054635 10.847938 -2.869535 -12.943114 -9.711845 -15.992540 9.340675 -12.786477 14.598266 0.543562 -7.417339 5.321269 -20.538750 4.789446 -9.570355 5.451088 1.432843 -38.159589 26.182724 16.485051 -12.030941 1.769181 -1.714975 11.425129 -2.197830 9.186766 -16.183201 -12.564797 2.217611 1.732745 0.520366 -2.312721 3.346648 -6.068832 -10.954348 -18.605509 -8.207779 17.612303 6.174994 -2.089479 -1.506034 10.143999 -11.942261 3.705166 19.139872 13.586080 1.984224 -14.996231 -45.965436 6.829939 -2.300173 -7.937033 1.034106 -12.230380 -4.576087 8.611106 -13.857914 15.236187 -2.678437 -12.031786 17.510889 -24.673404 -17.784743 -18.713391 -6.978346 3.376688 1.051381 3.248587 -9.092579 3.689706 -2.215211 4.627429 -11.199385 -12.754510 10.437055 11.573423 21.229021 -0.975913 1.892389 20.231069 7.567197 -2.366222 -7.056426 -0.222735 -13.858970 5.693770 -28.288502 -3.405864 7.745533 10.628953 -15.415182 1.090511 -2.745634 4.489024 2.193288 -2.487867 -0.128729 -1.981463 5.426152 -0.160328 0.819055 0.718903 0.102127 -0.463849 -8.532681 -5.141487 0.256688 1.322769 1.159321 2.290275 2.812708 1.389322 0.823852 -7.133088 0.040426 3.077714 -0.840052 -0.066480 1.831999 0.213801 -2.946804 -1.612296 0.422883 0.405655 5.471854 -1.920793 4.420407 4.246549 -0.614901 0.941307 2.801173 -1.105847 -0.748209 -0.400180 0.356777 6.239394 1.209771 -1.109593 0.236743 -1.305110 5.407911 -2.466128 6.774818 0.620763 -3.043191 4.542546 -4.159109 -1.848505 1.340973 -4.067925 1.620624 4.133337 2.984527 -1.910196 1.766391 -2.751817 2.160710 1.868890 -1.017300 6.281687 4.217603 4.321638 4.587117 4.887895 -3.431312 1.418720 0.113330 -1.206092 -0.822295 1.228333 -2.244783 -0.298653 -5.464386 0.246595 -4.803114 -1.483775 -1.648437 6.604471 -4.143503 -1.086084 1.774536 1.215935 5.764688 -2.998025 2.467921 -4.953460 0.446024 0.916545 4.750486 0.073886 0.087047 -2.381169 1.508585 -0.184374 1.130293 0.329454 -3.229730 -5.859235 -6.748161 -5.175280 -2.144101 0.984275 1.963305 -7.229052 0.535645 2.190828 1.747359 -7.946846 0.169380 1.804897 3.465927 3.622075 5.690121 -5.526066 -1.439415 1.091281 2.290478 2.557711 -0.930214 2.780537 -5.662458 0.904664 1.126751 1.799978 -0.096314 -5.966732 -0.927510 1.206407 -1.003386 0.419268 2.673396 3.846030 -0.622631 3.384340 -3.108158 3.469538 -7.522080 -1.922039 -2.596140 -5.293905 -1.987016 7.735380 6.382481 3.147347 0.805280 -3.934648 -1.071965 -7.738095 -6.080000 -1.421762 -0.060535 2.163709 1.595297 -0.882910 1.355891 -3.005627 2.197691 1.907970 -2.258594 -2.090041 -1.089121 4.236168 0.206258 -1.566826 -3.857549 -0.713851 0.569959 -2.702082 4.476292 -0.391853 -3.036690 -8.168951 -3.257760 4.613949 -2.263971 1.484854 -3.214763 0.249052 -6.501013 -0.000209 -3.275401 -1.155707 1.008615 -4.104186 -6.132975 1.869647 -0.392254 -3.190826 1.035967 -4.901903 0.493169 4.289760 2.523623 2.628643 0.201828 -1.078593 -3.857396 -4.860077 0.088907 -3.560114 4.755529 4.530343 -1.190529 -1.461170 -2.648860 -4.802815 4.270098 -4.088977 1.945912 -0.069727 -1.154140 1.862739 -4.959772 -1.781952 -3.839507 1.285691 0.259804 -7.151741 5.431143 3.581839 -3.570449 -0.564450 -3.658905 3.525545 1.018756 4.608269 -2.288183 -1.053894 0.252932 0.734202 -0.365515 -0.711816 2.334942 -2.166311 -1.180684 -3.972813 -1.643465 4.281510 3.495581 -0.922379 1.666328 2.591710 0.222208 2.318947 3.426219 2.472815 -2.433607 -1.956192 -8.909371 1.736262 0.894383 -1.626024 0.153373 -4.842274 -1.522410 1.053825 -1.658967 4.842985 1.188641 0.433602 4.663780 -4.753842 -4.314554 -3.285352 -0.070020 -0.243061 -1.077966 0.988497 -1.391044 1.229810 1.445179 1.578611 -0.195459 -5.389600 -3.466057 1.127326 5.472692 -0.981785 -0.126394 5.314213 1.380872 -1.135689 -1.223297 0.270681 -1.308212 1.524643 -3.916900 -1.190367 0.755588 1.274397 -3.738590 1.568981 -1.258237 -0.244120 1.692811 -41.620226 -17.994404 -14.615579 63.945611 12.185770 -13.547706 11.935817 16.393617 -2.196934 -86.961817 -36.425775 31.964015 5.483427 -10.164160 13.080932 21.363974 26.738905 20.448192 -94.580343 14.069212 12.551708 -3.874913 -23.910308 -16.725776 0.427213 -24.273280 18.324430 33.986430 3.596198 57.361597 -30.975303 27.156871 43.846701 4.228122 40.308838 41.725497 2.996092 -6.685890 -13.677803 -6.510679 93.093470 24.480791 -7.924708 26.625418 18.383376 67.967050 9.676928 56.332766 11.144263 -17.496017 33.198771 -6.115152 -23.221507 -4.858278 -73.856680 13.259666 48.565084 28.062310 -40.997182 36.375691 -23.213124 18.866386 25.717701 6.008959 81.964792 22.263431 44.768300 50.493483 68.754718 -42.074659 9.150063 6.910625 35.726910 -0.130277 28.974141 -35.092856 -28.252948 -77.983471 -0.660480 -77.886966 6.462518 -5.611834 76.356837 -48.938348 3.475284 26.046607 10.284562 58.045154 -43.917148 -2.178325 -65.561040 -1.582040 -5.911600 86.428305 6.412242 14.086561 -1.908974 28.156178 1.187011 26.304830 6.431705 -59.333942 -20.822307 -115.492663 -52.316003 -29.227562 -4.603042 -4.933273 -63.544144 -2.376098 31.688949 41.853392 -86.742863 -8.681237 15.575730 12.776184 24.307381 -10.407026 -31.250459 1.070526 -9.865531 28.756458 26.242782 -30.496782 11.782341 -35.695617 6.054265 16.753107 32.243337 9.445184 -58.036746 -11.437268 18.269700 -2.999463 -6.627834 14.884749 13.865640 -31.533152 30.598763 -46.495000 56.735057 -72.264966 -9.179945 -38.877690 -44.669048 -19.860185 69.708197 36.770032 40.812717 12.590125 -27.514846 2.214293 -75.935506 -108.817862 18.043940 -1.568987 8.508139 7.279507 -11.125406 7.889439 -38.239096 -6.062392 36.521968 -42.595828 -33.184543 -19.510032 34.926113 5.179233 -24.972639 -31.614082 7.329942 37.759874 11.161264 46.092731 -29.804454 -73.603508 -74.893471 -36.655105 53.029056 -26.142473 2.680453 -12.978889 -11.701093 -58.853202 18.682274 -48.901599 16.687160 -16.759027 -31.035475 -70.016314 17.119063 -15.832264 0.658817 9.779784 -51.654082 20.146652 18.568638 19.543990 -1.937850 14.602859 12.186384 -60.704696 -59.691115 3.894021 -10.030641 61.841696 29.418549 7.723065 -30.237021 -22.387427 -48.142044 47.562015 -49.431011 29.619474 13.131220 -41.525716 41.394435 -43.938220 -16.957126 -36.218313 29.797129 10.275094 -65.481478 86.117859 56.469010 -59.370309 -16.717889 -38.387330 32.787617 11.627344 67.958509 -42.059444 -22.149151 19.196856 7.243283 -6.199803 -23.264441 25.380386 -5.489879 7.119842 -68.730462 -33.898602 47.411878 41.046200 -4.022650 9.851861 15.887331 -7.381653 -9.217631 74.997369 24.006983 15.638684 -44.690053 -109.544879 19.083356 7.814587 3.061243 13.119752 -37.715001 -27.012511 0.529797 -7.281625 59.245814 30.375930 -18.863645 56.434755 -64.175485 -61.707527 -43.414600 -4.423009 11.691774 -28.588614 24.761069 -35.812009 3.176810 -12.803276 28.561677 -8.963134 -24.971951 -20.832548 16.062262 42.858082 11.444192 -22.949818 65.770115 12.715714 -25.459070 -11.492901 -1.390544 -13.512588 30.369669 -50.101311 -23.279708 -9.318598 29.185782 -43.375504 32.488761 -3.841038 25.993923 17.916375 -60.301269 -19.742497 -11.415719 73.350401 21.745504 -21.899695 8.362339 29.428868 4.343458 -89.839771 -45.093647 41.244991 1.232496 -9.516627 23.085340 20.746710 33.106938 22.317573 -107.688909 23.622606 -0.638889 -1.991116 -35.539465 -28.073430 4.842579 -12.194387 15.857124 39.623259 5.277459 55.460489 -45.007652 25.848589 42.600403 7.367369 48.891311 30.769861 12.905865 -16.209148 -22.422493 -22.152568 111.999687 25.823043 1.274144 48.473788 26.157750 71.265558 4.548380 82.490522 27.046300 -15.870387 43.786354 -32.467919 -30.420163 2.606377 -91.686237 32.178558 53.150428 20.368788 -49.089315 43.426221 -14.484394 26.343786 32.319025 -12.965268 97.057785 31.027305 51.445800 53.337220 84.350312 -44.200970 9.114631 9.672843 65.660120 12.246088 22.106705 -53.988705 -17.170390 -96.570229 7.274702 -83.840158 23.876692 -23.708843 89.048857 -57.536450 12.210096 36.443166 2.797308 62.736624 -58.852251 4.552658 -72.009139 3.140710 -5.980782 90.616564 -3.219558 13.268928 3.000427 27.385770 -1.374792 35.328843 3.015300 -53.586113 -24.201915 -134.873489 -65.039399 -9.996467 -12.507020 -20.911458 -67.812571 5.528930 31.727281 45.941420 -88.600800 -27.512306 14.714287 4.625997 12.523551 5.554820 -29.013698 -15.045871 -11.858880 45.416658 20.820326 -39.642147 20.448667 -50.124412 -4.600250 25.210908 51.445047 12.806405 -52.237893 -14.984930 13.561413 6.422842 -13.588513 4.967414 6.487203 -41.179992 39.082395 -43.202092 57.809797 -80.325719 -25.909694 -51.147981 -41.535254 -13.741724 100.644606 31.016964 58.359999 39.288317 -25.216046 -6.743983 -82.550485 -116.699830 25.880263 0.501759 12.130005 7.507242 -6.325246 4.121591 -34.367458 -27.454230 41.547634 -60.685515 -50.699647 -35.910916 32.363258 -3.064966 -27.866504 -52.704277 27.449275 62.418408 -2.754158 37.553160 -29.398183 -87.971802 -67.896503 -41.039407 55.194909 -23.662951 11.585569 -3.844867 -2.636166 -62.504652 19.773073 -61.294547 19.786094 -15.666572 -48.724580 -76.966558 15.123451 -16.893482 8.925321 6.915854 -58.353988 34.793490 15.514943 48.957355 -12.542676 28.580999 18.485438 -83.671190 -84.937215 -15.450206 0.360146 77.920405 29.322399 14.313880 -34.315067 -26.678524 -49.988661 59.316237 -80.194445 27.606760 14.606836 -41.826465 40.854453 -54.080596 -24.028542 -50.483089 34.259706 11.724873 -86.463287 93.174550 61.480730 -77.500645 -28.149107 -71.523030 45.600133 13.855648 104.134502 -46.377212 -15.411560 24.041440 21.157764 -15.036680 -43.857393 35.696123 4.287875 1.836205 -79.205968 -48.204248 46.788895 47.579781 -1.664014 8.276610 22.210072 9.209814 -12.094453 93.779039 20.650367 13.153334 -53.510800 -135.506726 16.302393 50.186360 6.087109 26.601302 -59.961075 -36.046392 -7.005886 -7.485655 67.792141 38.405839 10.892123 61.142914 -68.758706 -65.656378 -36.843363 4.844321 7.099780 -37.103275 34.122021 -47.673413 -5.222926 -16.622575 32.632762 -18.886112 -19.426067 -50.191506 6.881356 42.712653 13.459220 -21.437139 75.538271 23.685631 -32.202473 -5.174018 -7.207562 -10.642314 29.175054 -51.399857 -26.096342 -17.449319 19.138095 -50.264998 43.430469 4.263403 29.940713 12.895418 -44.864407 -23.764481 -21.021929 78.506916 9.439897 -10.872330 12.880804 14.719925 3.984346 -101.127692 -48.550802 38.595947 11.547690 -5.334963 15.231130 24.386076 26.064957 19.492680 -108.804013 13.623405 18.405770 -4.066311 -24.332071 -13.032739 -0.762420 -32.054689 25.570555 35.231550 4.103667 66.274525 -29.863200 37.655557 52.326488 -1.830805 37.396965 50.504333 -6.142271 -5.933667 -18.176801 -9.653921 101.040273 25.966626 -4.162897 31.031935 10.244157 76.697341 8.672147 70.792444 16.404265 -27.142762 43.464929 2.840193 -27.446927 -8.351028 -79.123251 17.464616 56.557417 28.449333 -42.010927 38.496534 -27.546563 19.154995 30.407282 10.174297 92.881242 29.467005 55.308475 61.080649 76.062789 -50.321877 12.757316 12.377235 30.962312 -0.283597 43.361929 -42.602618 -38.100519 -64.129027 -0.832089 -81.292636 3.660685 -6.454364 91.152878 -56.651558 -4.653697 21.875680 15.610007 72.428400 -46.660519 5.467430 -70.079499 -1.448084 -9.008308 95.089338 6.694847 15.877442 -5.477413 30.630788 -3.184928 29.051174 5.750701 -65.619164 -20.984481 -127.779214 -58.823408 -37.922558 3.414589 4.427105 -80.440542 0.071118 19.537328 40.133082 -101.801368 -8.976059 19.427959 21.669311 35.893113 -4.664705 -35.310549 -6.428299 -2.032039 32.302097 32.264605 -31.523722 19.477542 -42.371817 9.594783 20.340247 32.137962 10.428325 -65.414871 -17.763097 16.110329 -1.903264 -1.226303 24.035436 29.449534 -31.287430 36.564946 -51.169518 64.159931 -89.369851 -14.350488 -46.626686 -51.518390 -25.704678 71.814904 43.123579 52.777496 4.983109 -34.385513 1.137493 -91.821078 -118.050015 11.133017 0.296097 8.876562 14.130496 -13.463599 14.088997 -44.440943 3.135136 40.206779 -45.042123 -36.026551 -16.761241 38.511693 9.501098 -27.605711 -36.127618 5.365124 25.166846 5.939780 62.016002 -24.175070 -88.071707 -95.190070 -40.925232 61.896805 -28.404270 4.008617 -21.557850 -19.434109 -63.943906 15.881109 -55.245744 10.557266 -13.265316 -37.016519 -81.573155 18.355984 -14.229770 -4.578884 13.611445 -63.008709 19.216925 33.105863 24.473827 3.547287 18.891378 8.315922 -68.134942 -61.935907 7.314075 -20.180959 71.090249 39.782837 2.664882 -29.233648 -28.833022 -54.980490 49.213470 -54.893619 35.641506 13.861281 -42.996916 43.209047 -56.896139 -14.985743 -46.017765 28.261468 10.862943 -86.650847 96.033006 60.583578 -61.598801 -14.146410 -37.358561 36.347231 9.401267 69.441735 -48.257133 -26.907279 18.883295 7.104628 -5.584195 -26.172728 26.014578 -11.882164 -0.572275 -71.285980 -35.179870 55.797728 43.350720 -5.279065 8.458798 22.336593 -13.366677 2.045874 77.926861 33.638817 9.797068 -53.026668 -132.809100 27.979897 1.394311 -6.077817 11.626447 -44.682239 -30.156251 8.572540 -8.577598 65.140805 30.857054 -16.015005 65.422119 -76.056621 -70.943232 -52.366779 -7.928707 11.630639 -24.376845 20.494167 -40.560675 8.160299 -11.799656 28.089765 -15.850639 -34.319409 -20.792062 22.528937 55.850296 8.087856 -16.702392 76.083872 18.454272 -25.010048 -17.545963 -0.676271 -23.296464 26.101107 -58.186180 -24.062873 -4.069009 33.180717 -50.658522 31.665366 -6.754900 26.489496 19.270702 -72.933264 -30.014143 -33.631389 98.205386 16.409319 -20.558416 23.156324 26.741004 10.861424 -145.617167 -58.798662 84.239099 9.844076 -13.841630 0.428259 38.015925 42.407086 36.306212 -138.727547 20.151749 21.559256 0.282319 -47.017740 -15.882256 -0.328069 -42.703498 29.504247 45.500538 8.622973 91.109134 -41.455478 38.423744 77.963793 -5.370313 44.904341 79.554255 11.416034 -4.136144 -12.972437 -20.570259 140.500282 43.470950 -9.633025 53.138977 23.077619 108.844801 8.837481 125.833381 17.286915 -39.176268 45.870645 -10.054459 -49.599055 -11.363397 -111.071916 30.066160 70.153095 41.926789 -64.998393 58.637968 -25.965412 26.301433 44.169167 11.524538 120.345082 53.438494 64.561621 81.750927 118.875910 -66.115701 13.678104 22.425617 54.212569 11.454902 65.495279 -54.311333 -53.042945 -71.209895 1.745969 -112.333320 3.561879 -15.537700 145.240055 -86.288481 0.296301 29.910501 27.473456 96.407053 -64.233236 -0.480857 -105.690151 2.974003 -8.842739 151.061040 10.494624 31.676487 -20.425576 42.300804 -2.200834 37.402422 4.611549 -92.512048 -39.605744 -173.971629 -71.335274 -62.441385 -11.343924 6.896477 -116.871981 -10.113465 28.582145 85.468692 -151.060525 -10.426590 28.586743 12.953098 74.027975 29.476398 -52.788163 3.903347 -9.913965 23.871737 27.177956 -41.747186 11.427956 -48.831624 9.940647 19.467373 34.807257 19.169691 -131.082090 -12.116130 27.429995 -6.674083 -0.629718 36.780195 32.869046 -59.745060 48.158771 -75.006368 75.936633 -123.804194 -32.786044 -46.383891 -92.882717 -38.938529 116.084158 68.442693 86.271208 2.325145 -35.996056 -23.564070 -132.473229 -180.054944 22.875987 -14.058335 16.743570 16.718840 -16.625789 5.929042 -67.291303 -4.117568 53.545304 -59.866174 -40.971397 -26.288519 87.617188 0.469042 -28.697023 -50.630486 -4.890068 46.494708 18.856362 71.597070 -45.373919 -145.262738 -131.133292 -54.272391 82.100219 -39.772842 8.589947 -28.505724 -27.989311 -87.327850 14.848996 -68.399015 18.957182 -27.720324 -46.252256 -114.802132 34.999946 -23.979514 -11.185306 15.074568 -84.079677 28.833321 41.887348 32.790682 4.477086 18.964971 8.227677 -99.251468 -85.359500 17.062557 -25.188940 107.732037 64.898813 7.199252 -41.177722 -37.537015 -94.174463 76.192687 -104.232952 47.598655 26.490335 -50.934310 72.507342 -73.966410 -21.293901 -69.721314 50.642743 13.511895 -120.725613 136.939346 89.061767 -90.069397 -20.796963 -46.879546 46.284497 28.380673 95.546986 -73.209029 -49.046709 39.560038 -4.392627 -8.860250 -29.636422 36.213806 -14.470835 26.274610 -106.296053 -43.981829 74.727676 60.836165 -17.038183 8.259532 21.829491 -24.906548 7.037823 112.974678 43.298314 19.974335 -80.154592 -197.903347 34.955952 -11.581309 -6.971262 17.644310 -63.779864 -36.585267 19.359863 -34.430520 94.726083 14.775008 -28.254607 87.930912 -122.742554 -101.589716 -51.980519 -14.155130 25.019816 -30.835430 48.496714 -50.381459 8.486643 -18.768380 44.662974 -22.320432 -57.364834 -22.628374 36.163596 76.461944 9.303069 -35.135385 104.084388 8.618706 -30.757353 -14.453335 -6.217339 -9.874942 30.040382 -98.365863 -28.044540 -13.218477 47.984087 -72.821216 67.626256 -5.264143 37.731175 32.685261 -11.827886 -2.296385 -10.869277 22.905213 -0.604082 4.042099 3.300746 4.202219 0.345001 -36.889863 -15.351471 18.077827 6.454336 5.261356 -0.432230 10.574730 8.190894 9.594000 -32.326777 -1.147892 8.760852 0.071952 -4.001550 0.934331 0.157324 -8.720726 9.999432 4.097792 4.054835 23.177609 -4.861385 15.214737 20.530242 -5.060967 5.339346 16.739543 1.423061 0.835517 -10.146105 -7.017654 28.852969 4.868494 2.145042 10.076680 -6.953579 24.445000 3.401267 22.063827 3.223350 -10.278052 7.142931 3.185023 -8.846397 -3.224398 -23.907617 4.670700 12.578778 9.939375 -8.145384 11.416414 -1.949195 5.327448 9.065278 2.031722 25.249305 10.604083 15.992733 21.907416 23.616076 -16.727718 6.538510 3.314137 -2.782604 -2.357052 18.528887 -14.543854 -12.330541 -6.521067 -2.683707 -26.237277 -2.266104 -2.965691 35.505427 -19.515876 -3.314831 2.803926 5.765088 25.222931 -10.320307 5.524816 -22.004782 -3.420361 -3.003443 28.005847 6.750398 7.782984 -5.423862 5.504031 -1.526390 2.995511 4.302479 -20.431199 -1.903669 -29.767233 -14.515709 -14.874521 1.502660 11.012561 -24.988036 -3.085150 -4.027122 20.090865 -35.518935 -0.894446 4.370705 10.954759 21.748180 5.063717 -14.830823 1.637999 3.896373 4.202617 9.773434 -10.825311 5.984564 -5.560512 0.605142 3.160926 6.163216 3.740736 -29.946393 -11.233407 3.689156 -3.654379 3.273530 12.359811 13.210649 -8.388696 10.124869 -15.039079 16.872991 -26.044550 -9.028954 -4.256844 -23.676271 -12.189790 22.765441 12.558212 17.485508 -6.173084 -12.660345 -1.453480 -29.514031 -35.799428 3.578262 3.693436 0.655908 11.710817 -6.407482 8.552381 -19.844664 8.411535 15.590917 -8.647632 -11.147912 2.672479 15.377842 2.353731 -6.440417 -9.440344 -3.991062 -1.996533 6.139280 23.510593 -5.396458 -27.020659 -34.673537 -10.165532 21.436453 -10.690033 1.036637 -9.669763 -7.724059 -17.653990 -2.673128 -16.277148 0.700124 1.042013 -14.110009 -27.660659 7.451907 -4.354798 -8.182811 9.315501 -21.900726 5.282058 14.573239 4.996773 1.317062 -1.527105 -1.509696 -18.289762 -17.256214 6.166024 -13.053583 19.130560 12.177015 -0.589022 -12.331665 -8.792777 -14.383907 13.259930 -14.620526 14.646959 0.330471 -6.330280 10.620571 -19.597988 -2.206933 -15.619222 7.917182 4.330197 -31.581077 28.183618 14.736221 -12.482109 -1.361827 -0.898254 8.546564 1.777893 13.502973 -15.313701 -15.382328 8.057632 0.873017 0.421669 -6.942222 6.451259 -7.219845 -2.487156 -22.831744 -6.040519 19.187138 10.579647 -3.716256 2.243662 14.544835 -9.090708 3.571003 23.129888 15.815412 0.210622 -14.296044 -37.702415 9.534289 -7.148475 -3.848258 -2.205018 -12.836521 -3.716252 11.302035 -9.523130 19.152458 0.064707 -7.103888 20.292085 -26.046454 -22.448066 -14.289225 -4.586702 7.863682 -0.372460 2.487582 -11.229933 6.391259 -3.329611 4.347014 -6.436112 -15.882104 4.834728 10.278418 20.791974 -1.724928 0.242079 24.168831 6.122715 -5.406821 -1.644000 -2.772140 -6.309991 1.520732 -25.094791 -3.239189 5.469550 13.859967 -16.687898 8.909372 -5.628705 1.394107 7.492452 -6.646821 -2.146387 -5.565614 12.869850 -0.237407 1.293041 1.834806 0.126572 0.105695 -17.634517 -7.847950 7.672082 3.311751 1.924821 0.388515 6.561183 3.045852 3.239758 -15.270386 -0.125634 4.079741 -0.704272 -1.754372 -0.295953 -0.351766 -5.893777 5.877997 2.722466 1.146409 11.312440 -3.357100 8.250318 10.044628 -1.411690 3.080729 7.347259 -1.902174 -0.024255 -5.074426 -2.360760 13.741609 3.434817 0.038973 3.839166 -2.598748 12.089540 2.077519 12.145511 1.097090 -5.323031 6.624722 1.375130 -4.733990 -0.703166 -10.759399 2.221027 6.722533 4.634791 -3.991148 4.853753 -4.175298 3.399848 4.686322 1.822693 13.456345 5.414038 10.328520 10.431119 10.293729 -8.708680 3.240332 1.660077 0.295118 -0.918604 9.424453 -7.333878 -6.974230 -2.392772 -0.690375 -11.706594 -0.339938 -0.434939 16.938894 -9.420024 -3.306795 0.999840 3.738449 12.502105 -6.199655 3.136348 -10.801505 -0.060111 -2.066420 14.743832 2.210223 2.707579 -3.532260 4.031559 -0.783620 2.075739 1.913937 -9.953064 -2.097362 -14.754979 -8.393121 -7.358180 2.564417 4.784812 -13.477159 0.630259 -0.480120 7.801130 -17.595505 0.044879 2.890583 5.056024 12.555541 3.353966 -5.976729 -0.055441 1.258147 4.138051 5.140046 -5.099874 4.290832 -5.084220 1.379570 2.131862 3.828606 2.120657 -14.487453 -3.522823 1.893004 -2.485029 2.030181 6.558047 7.769460 -3.992743 6.115328 -7.328249 8.802513 -14.589309 -3.584244 -5.106723 -11.234714 -5.473790 11.242641 8.836469 9.064958 -1.803880 -5.463504 -1.056691 -15.612708 -16.871636 -0.741936 0.915672 0.346943 4.832448 -2.480582 3.836875 -8.939497 4.221882 7.040515 -5.509864 -5.528310 -0.552973 8.177395 1.458225 -4.284314 -4.713182 -1.513648 -0.734273 1.570584 12.680446 -1.911074 -15.840170 -17.999320 -5.732232 10.090563 -5.602342 1.080572 -5.688303 -3.441380 -9.861531 0.150122 -8.404340 0.785930 0.834154 -5.872611 -13.520118 4.549181 -1.595978 -3.518201 3.273815 -10.058389 2.102143 7.385088 2.413989 2.094771 1.657277 0.090944 -9.391320 -7.780592 3.152684 -6.893820 10.612055 6.866535 -1.022112 -5.278569 -5.353576 -9.641672 6.448581 -6.676676 6.219757 0.452894 -3.414197 4.714180 -10.137770 0.350353 -7.550431 3.519009 1.005028 -16.388272 14.278508 9.038628 -7.341130 -0.355797 -2.894841 6.338290 0.535508 7.119420 -7.613761 -5.923097 2.087985 0.210604 -0.094862 -2.208834 3.432751 -3.994617 -2.709817 -9.586412 -3.586013 9.255334 5.512659 -1.828070 0.569145 5.462212 -4.294830 2.712285 9.640407 6.633186 0.068331 -7.750484 -22.213524 3.737071 -3.568880 -2.975018 0.516424 -5.948037 -2.879992 4.154344 -4.256843 9.958723 0.872857 -3.967573 10.116346 -13.134714 -10.673783 -8.189459 -2.813866 1.897845 -1.593241 1.569570 -5.275356 2.096440 -0.306286 2.933528 -3.409502 -7.777900 1.504111 4.779277 11.512135 -0.342598 -0.464510 11.638439 3.532574 -2.024532 -2.987703 0.329238 -4.581298 2.729048 -11.498488 -2.325602 2.313404 5.188597 -8.195710 3.101117 -2.208584 1.742356 2.578151 -9.890518 -4.284540 -9.764141 20.935683 0.350732 4.511604 2.522100 -0.774158 2.216875 -27.414201 -11.020282 18.056196 4.321263 4.445416 -1.064931 9.386863 5.381237 4.703470 -20.484566 -1.449742 4.450090 -2.134684 -1.819381 0.182657 -0.872354 -8.543281 14.642522 4.041926 3.061949 16.289094 -3.726732 13.040981 15.024474 -1.335554 4.061285 10.641675 -2.747650 -0.660257 -12.273751 -8.196652 20.124752 5.073325 0.915357 8.203170 -6.081759 18.081472 5.442625 19.078458 8.226732 -7.825762 7.923109 4.305948 -7.611140 -2.734453 -17.100799 2.675214 4.430657 3.986726 -5.002017 5.651851 -4.738008 4.720725 6.552413 2.497672 19.193004 5.921960 16.185600 16.990591 13.367359 -14.870964 3.869421 4.270228 0.352793 2.576727 17.209888 -11.069079 -12.561399 2.925264 -1.994814 -14.161776 -2.199710 -2.402224 26.924494 -13.504095 -7.165880 -1.978329 5.054879 18.808116 -7.796336 6.490664 -17.691748 -0.402943 -0.816372 19.364534 4.686724 3.348026 -6.158882 3.946749 -2.802077 3.209807 4.870343 -15.785201 0.647494 -19.598095 -9.250595 -12.554731 5.439602 8.525025 -18.631570 2.247401 -5.596191 15.750410 -25.903021 -1.893336 4.050058 6.004535 23.261771 5.849844 -5.772600 -0.128604 5.367283 5.611296 8.574560 -8.329688 6.246219 -3.234931 2.007934 1.352298 5.562660 5.038812 -22.485647 -7.324096 4.159014 -0.585958 4.923299 9.819525 12.916585 -5.281644 8.637350 -8.901850 12.810315 -19.612984 -6.931285 -5.964424 -14.802026 -10.008734 20.950635 14.448928 18.656894 -2.954752 -6.254620 -2.153486 -22.006998 -25.940564 -1.060526 1.565924 -2.027427 9.424177 -3.197422 8.218619 -14.586665 8.560937 10.703094 -7.006519 -9.170607 1.734301 6.110533 2.244125 -5.059117 -6.627402 -2.439581 -5.009214 3.501996 21.128143 -2.045174 -31.637608 -27.140714 -8.195317 15.102355 -9.813613 0.824667 -8.197984 -7.380086 -10.357689 -2.751087 -12.626359 1.280470 2.267189 -10.023592 -20.302513 8.190882 -2.863132 -5.456291 7.293138 -14.837374 3.372867 10.985707 3.971085 2.505226 3.850294 -1.333960 -13.788580 -9.142826 5.474070 -12.417041 17.198969 10.327582 -2.466306 -9.912672 -9.299025 -14.451107 9.191230 -13.362566 10.784383 0.472831 -4.007971 5.230157 -15.422161 2.654261 -10.310742 6.177670 3.179648 -29.011436 18.448112 14.673481 -9.893262 0.131466 -1.739006 8.028024 0.673769 9.091802 -12.455025 -10.741100 3.404517 1.380739 0.408926 -2.242181 3.433527 -4.764571 -6.756920 -14.969698 -5.508064 13.502764 5.867747 -2.642578 -2.114582 10.029323 -7.057857 5.594663 14.910349 11.275988 1.750827 -13.189001 -36.840203 6.409571 -3.295220 -6.101387 2.661058 -10.455145 -3.289212 7.828567 -12.215958 13.819932 -5.772367 -6.968269 15.326565 -20.518565 -14.843422 -12.699035 -6.886531 3.107770 0.193762 5.045901 -7.027510 2.726604 -2.250388 2.026027 -8.806480 -9.877824 7.562877 9.291556 17.110602 0.402397 2.754390 16.292113 5.974716 -3.528593 -4.310116 0.708670 -9.719790 2.468248 -23.938110 -2.258673 5.928466 7.681665 -11.877542 1.532490 -2.360473 1.732851 1.231215 -5.917894 -3.884045 -3.580696 13.328682 0.585092 3.808611 1.982908 -1.168516 0.380470 -19.665763 -7.916392 11.532319 2.306254 4.470571 -0.944191 5.393953 4.292384 2.808219 -18.260176 -2.297239 3.554267 -1.260554 1.409020 0.393490 -0.037383 -6.094513 10.747978 4.452459 2.269437 11.677403 -3.711748 8.642224 10.773407 0.046402 2.706996 7.454848 -1.290558 -1.028262 -8.776844 -5.380093 14.262645 1.579630 0.893048 5.292297 -4.050699 12.870510 4.928669 11.983730 10.178262 -5.566502 6.071382 1.339951 -5.670100 -2.542805 -12.048864 1.177898 3.444358 4.293073 -3.639306 4.157690 -1.498926 3.285071 3.919287 0.610926 13.078671 3.183933 11.521898 10.199980 8.759460 -10.986701 1.980751 2.312362 0.014011 2.458899 9.090882 -9.041052 -7.078929 -2.575251 -0.788800 -12.427750 -2.257294 -1.451854 14.443546 -8.403760 -4.734348 -0.674963 0.813403 12.639997 -4.283961 3.751555 -12.629295 -0.136303 1.440112 12.854387 3.331918 1.087865 -1.614035 2.265547 -0.832490 3.435204 4.011050 -10.813872 0.082524 -15.020460 -6.784454 -8.608525 4.042747 5.706311 -12.230690 2.095245 -2.995817 8.913945 -17.186479 -2.295321 3.139143 5.325588 11.321074 1.368496 -3.042712 -1.030374 3.074903 4.766158 6.781534 -6.716268 4.755365 -2.391364 1.156709 1.121558 4.268055 2.702606 -12.943233 -6.374596 2.993599 0.282310 2.969717 5.668171 8.168529 -0.870382 5.994242 -6.436333 9.152305 -12.704011 -3.422223 -3.779121 -7.260062 -7.081494 13.430598 8.388117 10.141607 -1.146924 -4.743698 -0.148545 -13.646480 -17.975893 -0.186678 2.063223 -0.333981 7.106744 -3.070739 6.376571 -9.853766 3.887073 6.234005 -4.746031 -6.963070 0.146611 -0.093350 1.791008 -3.326026 -4.086860 0.165201 -1.925181 0.872666 14.535250 -2.289637 -20.065512 -17.494118 -6.760606 10.526339 -7.125780 -0.279348 -4.892630 -4.663885 -8.039715 -0.718032 -9.030446 -0.984959 1.488938 -8.675106 -14.552003 5.767443 -2.776958 -2.280977 6.290768 -11.531443 1.945453 5.334265 3.818473 2.727975 1.551839 -0.690143 -9.293673 -6.815538 2.306665 -8.046620 10.096070 4.654732 -1.430338 -7.871113 -6.813896 -8.224987 6.236907 -7.709284 7.590365 0.080415 -3.899824 3.304806 -9.314567 3.463625 -5.151205 4.263140 3.631988 -20.320607 14.380045 9.875662 -7.211347 -1.110390 -1.754570 4.746898 0.475127 6.616025 -9.449167 -7.603994 2.139179 1.374256 0.439549 -1.873180 3.157528 -2.226515 -4.925394 -10.985062 -5.572303 8.297693 4.952514 -1.231392 0.243197 8.259046 -2.682227 2.785912 11.003222 5.994585 1.722392 -6.896989 -25.636273 4.995564 2.555174 -2.560931 3.560553 -8.717296 -2.663064 5.467975 -6.837745 9.746562 -2.254083 -4.154281 10.837206 -12.263445 -9.724296 -9.309283 -6.019314 2.298820 0.372714 2.807597 -4.930999 1.747833 -1.709603 0.820216 -5.428949 -5.287157 4.186285 6.144800 11.494098 0.708979 2.644343 11.693009 3.228799 -3.181339 -2.862058 -0.299640 -5.825355 3.044315 -13.604006 -1.429585 4.059499 5.218117 -7.755981 0.204959 -2.110161 1.157943 0.185121 -116.787803 -49.494546 -46.457103 178.748620 28.825332 -55.842134 35.956450 52.057496 -5.951901 -229.804350 -84.187704 82.746898 16.727084 -33.473853 27.990506 59.910005 61.348249 51.405812 -254.105461 51.828986 34.091996 -8.666810 -81.977410 -48.593658 0.106133 -66.603677 38.113208 102.863770 3.080064 154.694608 -86.827963 66.451411 122.010737 7.005894 111.723686 119.354595 28.051056 -12.844749 -31.362328 -1.901270 247.177850 80.665062 -41.818733 59.282916 52.718034 190.916026 29.991442 158.578697 -10.507552 -51.719972 74.925251 -21.999878 -68.090238 -19.661057 -194.092083 42.662976 139.664977 90.661963 -118.348381 105.148564 -79.514738 46.257293 78.613430 35.175013 227.671768 67.367150 120.619204 139.634178 203.907128 -113.738871 23.617647 24.533955 106.495811 -10.077596 82.103482 -78.373730 -87.750742 -225.339293 11.175775 -210.803110 5.402482 -3.768654 200.272762 -143.525539 14.954267 79.175244 38.707371 161.552255 -141.837553 -3.086658 -181.965519 -7.052230 -19.040453 264.922201 15.433725 40.361651 -5.203142 94.242038 14.756861 75.540522 11.891140 -164.232479 -66.382659 -310.278180 -142.916647 -78.110240 -33.291382 -15.593910 -184.834862 -21.358563 108.249682 133.084767 -244.378929 -14.193601 46.155527 29.865662 93.919742 -20.957153 -81.205016 19.904789 -33.164749 61.320415 74.631139 -83.058521 31.937993 -88.120426 29.709127 52.273491 80.286716 32.129211 -186.249480 -12.934560 59.658442 -22.996382 -17.934684 42.937810 26.566842 -106.842460 83.542152 -140.351280 158.667804 -204.509357 -21.497977 -99.127581 -141.991642 -44.631147 181.201442 109.382039 101.236900 29.141220 -78.745130 2.851109 -217.206455 -320.759148 48.341130 0.709607 22.832500 6.997927 -33.109124 10.434049 -101.470355 -16.002470 107.455889 -123.029251 -90.448210 -51.974969 121.086422 18.549233 -65.700842 -82.566049 14.861718 111.929142 43.343325 127.259312 -87.510578 -208.795946 -210.865437 -100.297753 143.066923 -60.707838 1.866570 -39.260953 -38.707172 -179.712625 64.157983 -131.220731 59.021166 -53.202926 -72.312847 -193.670648 48.492829 -43.979760 -1.792571 13.779463 -137.002452 52.888102 37.989851 32.367023 -6.156660 34.891030 40.510508 -162.838480 -165.277177 22.033319 -16.667977 184.719005 79.252167 28.164910 -66.372369 -56.962032 -145.158438 144.703589 -142.856066 77.175298 41.417570 -115.168292 131.410622 -121.855638 -66.067524 -104.006822 92.739535 26.180655 -131.671571 252.534954 168.748005 -166.502005 -47.981870 -96.872449 87.341478 48.737163 198.039410 -123.332029 -66.297346 57.555868 23.439596 -22.407452 -53.203411 69.588142 -23.968923 34.760931 -182.750495 -88.915125 120.372565 117.733369 -12.036402 25.164284 21.892384 -34.338763 -39.389878 202.014351 63.752915 45.366414 -127.560706 -283.207424 55.953290 -21.054027 3.620738 25.703025 -104.760340 -71.782175 0.620477 -19.052163 169.861788 91.368769 -69.719722 154.289296 -199.510191 -175.227570 -117.087130 -5.985166 24.257477 -80.508261 82.219931 -97.538124 13.309135 -29.356259 80.850115 -28.514653 -73.667795 -60.760302 39.844222 104.418417 24.558720 -85.166723 185.666085 24.559671 -61.708415 -38.914717 0.645317 -32.781982 77.210790 -129.254781 -66.112524 -36.573889 89.215717 -118.022141 104.144839 -5.994102 66.294236 61.268035 -6.111913 -5.137732 -4.933410 13.498814 0.179349 1.029899 1.850387 0.200861 0.289438 -18.896610 -7.486097 10.525204 2.456658 0.797103 -0.005015 5.010972 3.578563 3.390132 -17.521851 -0.099640 3.205156 -0.939809 -2.229346 -1.372910 -0.382056 -5.542739 9.254241 4.299394 1.006710 10.671749 -3.140828 7.115760 9.889937 -0.410611 3.660151 7.174660 -2.844222 -0.215296 -5.459356 -3.341694 15.271571 3.822195 -0.178233 4.919946 -1.104793 11.857800 3.591433 11.512976 5.791398 -4.404486 6.587600 2.327705 -4.650525 -2.008083 -12.821040 1.524031 5.989794 3.949409 -4.138915 4.765674 -4.657784 2.941547 4.399215 1.684023 15.298999 4.354049 12.414683 10.677743 10.018592 -8.574394 2.493391 1.620475 2.020034 0.258042 9.634259 -7.786717 -8.336611 -5.147039 -1.609950 -12.677947 -0.186489 -0.653425 16.483634 -8.378907 -3.344509 0.005135 3.620054 12.239064 -5.970839 1.640911 -12.159637 -0.070943 -0.853895 15.274248 2.916419 2.829292 -2.572229 3.742679 -0.691037 2.821298 3.549581 -10.215158 0.054202 -18.010195 -7.614345 -7.655568 2.525195 3.345527 -12.413500 1.283855 0.184793 6.746221 -16.977289 -1.203966 2.883512 3.644892 13.454119 -0.162351 -5.126179 0.253535 0.944818 4.186702 5.280582 -5.901146 3.348670 -4.408313 2.393227 1.479773 4.066189 2.693226 -14.235837 -3.939068 2.209069 -0.085771 1.897898 5.485462 6.394660 -3.349316 5.474674 -7.011215 9.245324 -14.068482 -2.558948 -5.186716 -9.064534 -5.455060 14.243767 8.474756 9.582757 -1.809052 -5.068406 -0.536907 -15.159750 -18.966477 0.750277 0.961626 -0.387789 3.688932 -2.296758 3.704412 -8.880136 3.326928 7.463188 -5.446879 -5.256873 -0.506893 4.372829 1.586350 -4.010855 -4.271105 -1.227970 0.987235 2.515364 12.220245 -2.553240 -19.825551 -17.039889 -5.442426 9.653450 -5.753776 -0.138207 -4.831075 -4.037487 -9.172313 0.393279 -8.208255 1.671321 0.069952 -7.165415 -13.695513 4.102109 -1.803553 -0.977396 3.122802 -10.120706 2.176457 5.199932 3.786912 1.563555 1.992142 0.486817 -10.453019 -8.375421 2.931011 -5.853509 11.345179 5.476816 -0.602968 -6.655689 -4.841258 -9.826184 5.942846 -7.411651 6.370437 0.618010 -6.579294 4.745917 -9.075611 1.153776 -7.022727 3.500623 1.207482 -18.034376 15.815971 9.536411 -7.595043 -0.835299 -2.491134 5.336259 0.363656 7.248780 -8.702072 -6.131077 2.045220 0.040579 -0.054666 -1.566827 3.371135 -2.622752 -2.568867 -11.645487 -5.705714 9.240107 5.209380 -1.436625 0.580295 4.751783 -4.148110 0.993393 11.542065 6.414417 1.423455 -8.139403 -24.657776 3.645140 -0.237820 -2.379103 1.468737 -6.839944 -3.973738 3.492681 -4.191689 9.624831 0.771238 -5.316567 9.691635 -12.617373 -10.076445 -8.581546 -3.494231 2.300554 -1.874993 3.175861 -5.216268 1.398829 -1.454161 2.747287 -3.940247 -6.105798 2.471467 5.034134 10.264385 1.014330 -0.908067 11.081545 3.197598 -3.280653 -2.931714 -0.378722 -5.467992 4.606496 -12.753988 -2.056966 1.758695 5.340504 -7.556613 2.867734 -1.247366 3.049142 2.001467 -5.019096 -3.320548 -3.634964 10.912470 0.628040 2.347561 1.435770 -0.099760 0.670272 -15.853666 -6.658074 8.946765 1.711440 1.943829 -0.053679 4.226526 3.826124 2.823091 -14.029974 -0.937653 2.744335 -0.796537 -0.188893 -0.555249 0.021068 -4.702539 7.802492 3.092512 1.530049 9.003391 -2.788353 7.075568 8.195805 0.324838 3.211911 5.867848 -2.487670 -1.024700 -5.645384 -4.345105 12.086014 2.460127 0.777479 4.657412 -1.839584 10.004658 3.399312 8.887840 6.513897 -3.861180 4.627856 1.132861 -4.195586 -1.468297 -10.335343 1.120071 3.054423 2.738978 -3.074882 3.522642 -2.280959 2.819312 3.240104 0.125724 11.334052 2.512953 9.253701 8.735422 7.275862 -7.748480 2.008220 1.534698 1.093696 1.383510 7.704768 -6.935227 -5.815374 -2.836814 -1.553177 -10.387046 -0.292681 -1.375164 13.870373 -6.644842 -3.355413 -0.535898 1.850432 10.104169 -3.682514 2.224486 -10.042377 0.064866 0.228364 10.186786 2.414604 1.639847 -2.242431 2.351595 -1.209362 2.205257 3.024366 -8.582328 0.315644 -13.741317 -5.218728 -6.646227 3.135325 3.333352 -9.584923 1.919429 -2.000846 7.580673 -13.859621 -1.657453 2.012676 3.177810 8.741884 0.040680 -3.278201 -0.832826 1.692810 4.357399 4.366750 -5.401716 3.182348 -2.654234 0.505159 0.839466 3.984758 2.311906 -10.593638 -4.566292 2.086117 0.790864 1.797914 4.834697 6.416851 -1.520314 4.578523 -5.487663 7.558061 -10.323790 -2.615832 -4.087450 -6.620624 -5.329181 12.702317 7.352686 8.516919 -0.642639 -2.919202 -0.281351 -11.542324 -14.726590 0.537396 0.846828 -0.191373 4.582176 -1.844543 4.111838 -7.828011 3.345624 5.587024 -4.219061 -4.970538 -0.178465 1.166714 1.199244 -3.119852 -3.660870 -0.269801 -0.329312 0.951084 10.418836 -2.043390 -15.514131 -13.999693 -4.912119 8.165958 -5.600114 0.177215 -3.838374 -3.123743 -5.469803 -0.255612 -7.108067 0.537419 0.632643 -6.506035 -11.373833 3.846816 -1.971418 -1.594244 4.041879 -8.303068 2.052478 5.040947 3.774192 1.279527 1.970016 -0.080777 -7.783081 -5.970349 1.953683 -6.196585 8.251029 5.015488 -1.186121 -6.636735 -4.832168 -7.062214 5.192301 -6.028993 5.854338 0.189935 -3.789872 2.741187 -7.870132 2.266584 -5.076606 3.118921 1.846705 -17.298967 11.000398 7.604639 -6.340573 -0.777092 -2.583691 4.509623 -0.029918 5.615963 -6.665311 -5.169806 1.663472 0.388538 0.235546 -2.111072 2.392710 -1.520708 -3.262969 -9.352408 -4.243800 7.751675 3.576947 -1.187968 0.163459 5.717794 -2.401251 1.592237 9.410268 5.390931 1.481361 -6.918768 -20.531936 3.178845 2.485311 -1.808096 2.118824 -6.093003 -2.759124 3.251183 -5.241958 7.673687 -0.678365 -3.462465 8.374897 -9.766638 -7.883258 -7.138706 -3.632852 2.066481 -0.694279 2.438616 -4.023883 1.048010 -1.522649 1.802969 -3.596447 -5.161663 2.607278 4.881869 9.222134 1.158633 1.133429 9.015032 2.988416 -2.759870 -2.033646 -0.038026 -4.838898 2.580718 -12.156079 -1.732234 2.533754 3.968033 -6.421646 1.185166 -1.194553 2.110196 0.436432 -3.676619 -1.424280 -1.875003 7.371350 0.588886 1.407542 1.196845 0.347825 -0.075360 -11.067385 -4.950291 5.163035 0.918434 1.026299 0.480896 2.577317 2.885536 2.121923 -10.899358 -0.522915 2.472618 -0.438131 0.099342 -0.373436 0.287096 -3.351371 3.751753 2.213510 0.926667 6.644805 -2.432636 4.994028 5.691357 0.743045 2.605264 4.115214 -2.148313 -0.784444 -2.773561 -2.844613 8.601326 1.801915 0.644106 3.024770 -0.942286 7.161059 1.189307 6.053947 4.276217 -2.849968 3.244418 -0.207900 -2.791052 0.015473 -6.977108 0.892782 2.306300 2.109970 -2.130484 2.761755 -2.389881 2.330029 2.221996 -0.707687 7.955193 2.343623 5.563833 5.748899 5.482727 -5.148428 1.710300 0.599478 0.645405 0.434950 3.955662 -3.996144 -3.401414 -3.488800 -0.956475 -7.900791 -0.107838 -0.885368 9.690128 -4.731654 -1.707195 0.207374 1.551329 7.079416 -2.883578 1.413112 -7.020282 0.353163 -0.379659 6.796893 1.664319 1.406919 -1.468775 1.382692 -0.698351 1.515970 1.071365 -5.613297 -0.607033 -10.373665 -3.912889 -4.306648 2.168318 1.992994 -6.963148 1.650510 -0.114946 5.841555 -9.696297 -1.298954 1.094436 2.374879 3.430621 1.195338 -2.722913 -1.135424 0.666289 3.312681 3.032317 -3.818244 2.300348 -3.178598 -0.462555 0.690986 3.278197 1.235039 -6.562814 -2.972133 1.427917 -0.337985 0.976320 3.577548 4.234015 -0.541218 3.398842 -4.166221 5.301105 -6.819401 -1.561714 -3.234918 -4.852994 -3.558115 8.721952 5.821524 4.957380 0.188821 -1.902686 -0.428211 -8.147128 -9.665521 0.342796 0.226422 0.812367 2.815755 -1.298577 2.458594 -5.694389 1.923953 3.397158 -3.230615 -3.460963 -0.699342 1.814980 0.723189 -2.399859 -3.177939 0.013511 0.625166 -0.618019 6.520751 -1.617829 -9.113689 -9.627462 -3.810404 5.871136 -3.844367 0.289899 -3.063459 -1.254551 -3.639492 -0.100899 -4.843078 -0.107513 0.440586 -4.382879 -8.028785 2.435034 -1.436629 -1.477040 2.565637 -5.732542 1.491280 4.373885 2.672548 1.069490 1.500297 -0.200597 -4.992762 -4.346977 0.934388 -3.995365 4.672967 4.023084 -0.882579 -4.758480 -3.553165 -4.888631 4.159526 -3.918358 3.965842 -0.043209 -3.022114 2.198606 -5.244449 0.852594 -3.354358 1.988312 0.991092 -12.286352 7.307459 4.821527 -4.910053 -0.891741 -3.274003 3.643113 0.176753 4.660295 -4.398991 -2.882356 1.015855 -0.027536 0.117920 -1.509721 1.978342 -1.248570 -2.033161 -6.398129 -2.919932 5.965285 2.816978 -0.962056 0.453031 4.181197 -0.773299 2.807543 6.472775 3.618638 0.404186 -4.725671 -14.307343 2.029817 2.779308 -0.562009 1.124933 -4.284297 -2.377611 1.867142 -3.272725 5.711326 0.564092 -2.007481 5.953848 -6.020082 -5.603753 -4.902923 -1.903731 1.287651 -1.273400 1.330428 -2.858534 0.718420 -0.627787 1.870488 -1.430120 -4.078631 0.103558 3.076462 6.391924 0.864254 0.435646 6.536431 2.369403 -2.105889 -1.363696 -0.155491 -2.834980 1.554630 -7.596197 -1.333325 1.403836 2.521481 -4.690325 1.484145 -0.631086 1.604168 0.788540 -15.709271 -8.979145 -8.542351 31.579649 4.437101 5.550407 4.798356 0.705145 5.181979 -42.724124 -19.872630 30.357524 3.379616 3.471795 -1.174129 8.298724 12.700557 9.342508 -41.876457 -1.527933 5.922821 -1.351597 -2.474187 -3.360355 0.062057 -12.416532 24.797391 12.326590 5.192949 25.864940 -8.632938 17.014092 22.664313 2.746144 10.958949 18.513427 -5.008394 -3.827913 -17.155952 -15.090860 35.501965 9.382286 2.437129 17.665048 -1.643003 29.759253 12.736683 24.125117 25.234242 -10.429101 9.433253 5.736150 -13.062187 -6.982213 -30.646236 3.893701 7.897993 4.604288 -11.424269 10.838137 -2.903226 7.183133 9.538778 -0.771350 30.292614 5.441307 23.587405 22.639567 23.029975 -22.872737 3.903586 5.277618 9.536220 8.806917 21.539547 -18.424131 -20.297385 -5.593822 -4.881045 -30.217383 -1.084065 -5.803678 36.120270 -19.415626 -6.853582 -1.399793 2.614883 27.015022 -10.669218 2.177917 -29.064830 0.418906 0.588958 28.057538 7.341470 4.620792 -3.911756 5.614600 -3.421766 8.216487 8.136536 -27.073512 3.385360 -43.491035 -13.047139 -20.596466 6.979746 6.345270 -25.017449 5.118654 -8.711087 25.526629 -37.994933 -7.717925 6.905604 5.367367 18.249454 -4.601937 -5.092788 -1.754759 4.997813 12.167314 13.161806 -16.988868 6.551137 -3.395509 0.149738 2.511927 10.809068 7.652222 -24.223577 -13.795957 7.224047 6.551815 3.895926 10.960165 14.843695 -6.022048 12.801646 -15.499551 22.557171 -26.884158 -7.918617 -10.910431 -14.659457 -16.022824 33.411881 17.825808 27.053283 -1.208246 -4.742207 -1.177270 -30.794646 -43.734559 5.521655 0.861393 -0.962018 11.541446 -4.467306 11.144908 -23.045979 5.314038 15.793772 -12.088934 -14.579818 -0.096538 1.725925 1.900810 -7.754267 -10.148554 0.248242 0.457624 4.759610 27.489562 -8.465203 -49.271295 -35.602086 -13.861365 23.825562 -16.582407 -0.646112 -9.326986 -10.295781 -12.568714 -1.466130 -20.963893 0.977014 -0.943801 -18.639197 -32.685888 9.775916 -7.325279 -0.159234 12.490079 -24.803334 6.885137 14.967058 12.744548 2.354042 7.013211 -0.010090 -22.590731 -15.015556 3.934235 -15.342264 26.320571 13.020731 -2.418623 -20.776281 -13.363122 -19.840343 15.723310 -20.747532 16.878829 1.472209 -12.515912 9.746271 -20.572654 5.554747 -13.249851 10.232755 7.093935 -49.293507 29.833558 24.402611 -20.081613 -3.352149 -7.253867 10.841989 1.588264 19.061143 -22.463014 -17.039024 5.798692 0.147440 0.497270 -7.989869 6.840352 -2.114084 -7.381610 -27.774823 -13.399256 21.640487 10.475022 -3.110127 -0.725709 15.753350 -4.864675 6.592872 28.617708 13.922983 7.927779 -22.626910 -60.030092 10.291688 11.196841 -2.628748 8.881965 -17.687712 -8.857221 8.252057 -16.905769 22.497911 -3.043113 -10.078610 24.860756 -27.079360 -22.957398 -20.636471 -11.959777 7.353377 -1.782784 11.642301 -12.504291 2.850084 -7.817993 5.097067 -12.104534 -11.462898 8.270116 15.312326 23.740730 4.718896 2.920168 26.476749 6.783271 -10.302704 -4.080678 -2.136244 -14.018493 5.984736 -35.642429 -4.938765 5.746436 11.851149 -18.080876 4.869445 -3.185117 9.015907 -0.018306 -29.585052 -17.732623 -7.044671 46.048334 11.681492 -9.270771 8.528500 10.809711 2.567518 -62.624742 -28.669938 19.405583 3.077461 -6.732536 10.065857 12.339586 20.832867 11.960961 -67.314138 11.332821 9.209344 -3.334360 -17.214337 -7.834216 0.074160 -21.869582 12.117712 26.138741 2.118216 40.085107 -22.552300 18.732114 31.961041 2.014577 29.732007 33.325031 3.440731 -6.506146 -8.443945 -3.267002 68.115264 17.391991 -4.780924 19.190000 14.763248 49.289546 5.724924 45.215768 13.630888 -14.971319 25.588583 -9.692705 -16.745802 -3.897215 -54.248503 12.505785 34.987585 17.586194 -32.229592 25.352308 -18.063509 12.414402 17.898231 4.344318 57.697491 15.144838 30.949807 34.624826 50.287495 -30.588548 3.653002 10.409005 28.034029 4.767877 20.277186 -23.085832 -20.574465 -54.553159 1.103716 -48.688619 3.801769 -6.245115 50.252561 -34.647850 0.819028 20.367960 4.154027 41.626078 -30.310134 -1.619385 -48.125390 0.680423 -1.147866 57.372149 3.549311 8.684505 0.354595 19.696474 -0.236396 22.073695 3.200580 -43.132931 -19.393331 -86.660091 -38.081133 -23.461908 -1.685138 -4.824074 -48.017921 -0.977970 20.882845 30.158632 -58.980862 -4.807136 11.894012 9.488838 14.865704 -6.876421 -20.217675 -4.582190 -3.695323 20.319248 19.532202 -20.310123 8.500732 -29.661949 8.967855 12.667687 22.157831 3.793745 -34.462229 -8.221702 12.356127 2.052349 -5.665829 9.094057 10.791171 -24.395081 23.067891 -31.091482 40.646558 -51.199039 -6.266575 -31.637458 -30.106874 -13.626087 55.990529 26.369777 32.643024 10.597207 -21.066103 0.621683 -54.517498 -78.522545 9.966122 -2.908257 8.460245 4.816862 -8.024660 6.546989 -24.754901 -4.959901 21.307007 -30.794027 -22.056044 -12.737580 17.379613 2.906604 -16.696465 -24.437196 6.033942 28.076326 3.048919 32.376051 -21.304840 -53.695865 -51.164600 -28.650769 36.904361 -17.993136 3.806474 -8.971329 -9.377947 -41.930808 14.876074 -34.408545 8.457601 -14.880213 -24.406311 -50.346512 9.978511 -12.716600 2.244528 7.636254 -38.292917 14.458364 13.251616 16.921833 1.864994 11.491542 5.453336 -44.983387 -41.984895 0.253477 -7.039062 48.004297 21.276036 3.150250 -17.391424 -18.132283 -34.726930 34.604561 -38.273290 19.417425 12.007922 -33.146202 29.646089 -31.058394 -12.949529 -27.229000 21.779758 8.569859 -46.906001 60.950798 41.848121 -43.818587 -14.037627 -29.014632 21.747118 9.609433 51.313128 -28.669341 -12.561601 13.817958 5.705664 -4.892192 -17.504512 18.956043 -3.270178 6.590378 -49.678395 -26.846086 32.455685 30.533870 -3.015195 4.931651 11.408414 -0.159704 -2.897899 53.487593 16.475558 11.098449 -34.136535 -81.859136 16.755959 10.300999 0.775624 12.166703 -29.892337 -20.084716 -0.394872 -5.014932 43.841562 24.315907 -7.281139 41.717990 -44.409002 -44.531987 -29.921797 -5.700323 6.633894 -20.133990 19.916551 -27.608122 2.344363 -12.140968 19.469629 -8.084507 -16.661407 -19.183729 12.602750 27.942878 10.261144 -13.723624 46.727000 9.149984 -19.001733 -9.220193 0.444468 -9.300807 20.298779 -33.220990 -18.104948 -8.720604 19.185052 -29.300390 23.173872 -3.251732 20.160457 12.657048 -4.566975 -2.734301 -4.985063 14.112744 0.118735 3.405254 1.876437 -0.964404 0.149294 -20.101137 -7.626253 10.358261 2.870509 4.090215 -0.502294 4.449934 3.431152 3.543700 -17.419549 -2.044258 4.497323 0.701175 0.868516 0.383716 -0.021186 -4.931193 9.531365 2.698255 2.207251 11.499317 -2.628507 10.123105 10.458070 -0.774585 2.123807 6.647282 -2.082716 -0.395640 -7.792398 -4.705898 13.877234 1.387319 1.697780 5.969670 -4.326742 12.104897 4.130207 9.702090 6.892403 -5.596403 4.592408 3.270553 -3.967381 -2.749141 -10.863632 1.469614 4.106340 5.135148 -2.894854 3.641490 -0.661645 2.078209 4.231000 0.745506 12.744737 4.577338 10.984780 11.779804 8.822868 -9.214484 3.123585 0.821486 -1.471342 0.941833 10.374766 -8.259608 -6.954684 -0.987606 -2.877898 -13.325096 -2.281485 -1.589908 15.022781 -8.205340 -4.137347 -2.024079 2.740587 12.811319 -3.540187 3.865816 -11.974255 -1.133414 0.256941 11.941486 2.568823 1.679782 -3.427240 2.744463 -1.309526 1.777768 3.804397 -10.484040 2.058613 -13.806334 -6.692475 -7.818576 3.680930 6.343632 -12.573193 1.573525 -6.310366 9.187419 -18.694039 -2.432021 1.795489 5.596305 12.192868 0.920056 -4.888616 -1.154677 3.008512 3.567366 5.378250 -6.039247 5.069271 -3.143267 -0.954796 0.979137 3.526651 3.245067 -13.451493 -6.861391 1.502707 0.358581 3.019973 6.817233 9.419380 -0.978737 5.512571 -7.349101 8.774335 -12.344172 -4.781489 -3.127815 -9.098010 -7.023757 11.988751 7.544528 9.808751 -2.871092 -5.690179 -0.157551 -14.383274 -17.403339 0.195376 1.366852 -0.457371 7.923751 -3.089791 5.574147 -10.352837 5.044353 8.510467 -3.605427 -6.492543 0.264834 1.425202 1.978930 -2.933159 -3.769998 -0.573223 -2.936883 1.838757 14.774533 -1.825557 -16.703124 -19.529105 -5.079734 10.145579 -6.268427 -0.191279 -5.746874 -4.292414 -7.855385 -1.455222 -9.017528 -1.303984 1.122291 -7.387412 -13.889817 5.598172 -2.234111 -3.491859 5.514656 -10.408189 1.841534 6.882987 4.654212 2.180713 0.759570 -1.073906 -8.328292 -6.698111 3.407365 -8.537104 8.902210 4.930490 -1.273897 -7.964302 -6.235612 -8.145204 6.154894 -5.979667 7.654102 0.796914 -2.557602 3.184462 -10.561444 2.585178 -5.861551 3.068574 2.522857 -20.297753 13.273808 6.753510 -6.271695 0.038722 -1.050681 5.439112 -0.105356 4.471171 -8.064924 -7.465863 2.295902 1.523078 0.619730 -4.359178 1.973190 -2.714514 -4.645616 -10.406684 -4.593094 9.543521 3.880204 -1.962859 -0.225302 7.725324 -5.236197 1.655315 10.596486 7.949480 1.362320 -6.593902 -21.189314 3.941836 -0.981813 -2.218161 0.067810 -7.890585 -2.150087 6.120995 -6.613952 9.087603 -2.807801 -4.633009 10.230390 -13.643480 -9.464908 -8.754568 -4.647868 2.897771 0.826561 1.155420 -4.781893 2.824691 -0.002644 1.314315 -4.698626 -7.882234 4.779211 6.271384 11.347006 -1.249154 2.805339 11.274066 3.917941 -2.429764 -2.171953 0.668672 -6.237016 1.065819 -15.719781 -1.404969 4.513891 4.993277 -8.153395 0.904518 -3.676249 0.832809 0.563696 -5.535475 -2.815092 -9.425970 22.457832 -1.610134 5.458443 2.098376 -3.363024 -0.219236 -28.337390 -10.904584 14.063951 5.786943 6.617410 -1.000009 7.806457 3.711641 5.111170 -25.043304 -3.479925 7.848914 0.492390 1.333609 0.977498 -0.513575 -7.250377 15.738348 2.825499 2.934354 17.587692 -3.000563 16.757136 15.801252 -2.353738 2.089105 9.257400 -5.174306 0.941983 -12.343099 -6.074581 18.641869 1.712108 3.022327 7.394838 -8.985037 17.730790 5.595171 13.200353 8.321673 -8.884761 8.394280 9.939998 -4.344311 -4.092962 -14.906157 1.817747 6.720591 7.381127 -2.700250 4.609257 -2.280540 3.548491 6.881115 2.881581 19.372962 7.945679 16.648266 18.208269 12.595572 -13.595610 6.144869 0.142020 -5.286671 -1.619033 16.953294 -11.970427 -12.595873 1.955510 -5.360256 -18.405325 -2.607596 -0.644381 21.378425 -12.592148 -6.770998 -5.059506 6.098908 19.688701 -5.600866 6.637932 -16.638346 -2.200417 -1.412603 18.586927 4.325118 3.008853 -6.059117 4.173383 -2.933548 1.002618 5.133889 -15.303019 5.168362 -17.786303 -10.780912 -11.808368 6.795146 11.449502 -19.481303 2.764996 -11.561647 10.205568 -28.785884 -2.819015 1.826681 9.567724 20.375077 1.231898 -7.544189 -0.912879 5.321181 5.220137 8.281010 -7.930312 8.710914 -5.820948 -1.711106 1.652949 4.845853 5.071813 -19.724921 -9.420556 0.738512 -1.719538 5.916958 11.789773 15.202588 -0.774925 8.291214 -11.115594 13.136300 -19.047709 -7.783575 -4.953954 -14.759122 -10.784663 13.170403 10.944599 14.081927 -6.940627 -9.975617 -0.078375 -22.545362 -23.126188 -1.518508 2.659916 -2.230429 12.671989 -4.980079 8.857470 -16.376325 9.816518 14.176716 -5.118509 -9.910660 1.277326 4.164827 3.941135 -4.802978 -4.983267 -2.507903 -8.676924 3.185361 23.713579 -0.719790 -24.397126 -31.425778 -6.412144 15.455959 -9.658199 -0.506469 -10.596487 -6.984143 -12.443204 -3.148466 -13.497145 -2.781393 3.370800 -9.123034 -20.464308 8.769949 -2.352886 -5.153536 7.815701 -15.609869 2.537774 12.908097 5.201754 3.868249 1.127114 -1.566888 -10.656735 -7.875106 7.029647 -13.579579 11.971239 7.116116 -2.005562 -10.587214 -9.630493 -11.847856 7.305160 -5.890355 11.731588 1.467115 -2.711902 3.623611 -16.649447 4.008630 -8.760851 2.814419 2.749911 -28.296733 18.417334 8.649147 -8.039192 1.862968 0.059969 9.305951 -1.957861 4.199205 -11.915362 -11.797107 2.565734 2.182254 1.242530 -5.323382 1.887999 -5.977711 -8.939471 -13.421099 -5.300633 15.036922 4.997515 -3.240780 -1.301050 11.346794 -11.229123 4.421737 12.850993 13.283981 1.192679 -9.154426 -30.023032 5.417959 -7.060992 -4.131459 -2.307447 -10.023349 -2.317124 10.360158 -8.162808 13.236360 -3.933390 -8.455432 15.083973 -20.806157 -14.210625 -14.046496 -6.650346 4.070757 1.848600 -0.909836 -7.127276 4.783193 1.024563 2.055132 -7.344155 -12.741955 9.690617 9.759415 18.219694 -4.217721 4.508155 16.840971 6.931833 -2.355524 -4.231804 1.419178 -11.385110 0.703079 -22.627655 -1.322203 8.403147 8.131022 -12.509654 0.373555 -6.705524 0.547024 1.381833 -10.706581 -4.323913 -11.173377 25.736948 -0.177296 2.674436 4.030695 -3.460147 -0.568316 -35.297245 -12.965522 19.788404 6.692110 6.020460 -4.266908 11.706380 4.999053 8.794116 -31.117332 -2.039170 7.198870 0.836312 -1.035677 -1.775312 -1.065292 -8.633407 16.250877 4.766168 3.447753 21.444202 -5.717218 16.523875 19.739943 -2.469006 3.645108 14.519608 -0.799444 1.197597 -12.889104 -7.241142 25.284988 3.684768 4.796950 9.186102 -7.863260 22.339088 9.695947 23.929928 8.631047 -10.321922 9.886251 5.627181 -8.851254 -4.528269 -20.728546 3.821902 10.575923 10.706308 -6.414721 8.590990 -0.234697 5.593640 9.234727 3.755488 24.101094 9.175642 17.332071 19.716671 19.290797 -17.292894 5.937664 2.055243 -0.436308 -2.132212 22.791701 -19.289210 -15.506063 2.649135 -3.504610 -25.356268 -0.200350 0.716966 31.937513 -17.527992 -7.195880 -1.211542 7.092035 23.827642 -7.934488 5.737515 -21.313260 -0.252178 -4.138355 30.801915 5.018074 4.529952 -7.932993 5.750124 -1.575160 3.175279 5.202011 -19.524304 2.204953 -28.608336 -12.987967 -15.407093 3.789644 10.854712 -25.438439 -0.951785 -10.731392 17.040884 -37.814403 -2.439432 5.764778 9.092586 25.108187 1.375914 -8.341793 2.427432 3.284765 6.267800 9.288463 -10.501981 6.775464 -4.505371 -0.654767 2.270694 5.736921 4.580700 -30.378257 -9.133854 1.365956 -2.175790 5.400132 11.370903 16.253437 -5.017404 10.271676 -15.256437 15.013376 -26.044214 -7.145108 -5.951241 -23.267325 -12.253563 18.028065 11.541656 19.475612 -8.050289 -9.637377 -2.416221 -28.276744 -35.466000 1.078908 1.046371 -0.699487 13.427699 -5.042452 7.148544 -18.926756 7.405442 17.720112 -8.089569 -12.209516 -0.082421 11.523850 2.240042 -6.954152 -7.481535 -2.387956 -4.334808 6.354545 26.227884 -4.355272 -35.458806 -36.468996 -10.146641 19.228801 -11.120656 0.612565 -11.063285 -8.882972 -17.031521 -1.419041 -16.359560 0.137781 2.470697 -10.527156 -25.671969 9.129951 -3.986450 -7.161726 8.429580 -19.570064 4.046010 14.420545 5.693070 3.004456 1.719366 1.522091 -17.794845 -12.679429 7.443653 -14.242041 15.993401 11.604558 0.894061 -12.766878 -10.556587 -16.929902 8.393594 -12.988884 12.612025 2.137185 -1.876233 8.707165 -20.602450 7.315968 -10.773136 6.042595 3.738159 -36.374944 27.733473 15.553167 -12.290597 0.273734 -1.190088 9.977112 0.254384 10.443483 -16.531045 -15.064885 5.898882 -0.951543 0.223931 -6.001210 4.070370 -6.663455 -5.425507 -18.735094 -6.629487 15.388031 8.989171 -4.095339 -1.138369 11.541342 -12.408190 3.063973 19.773101 11.965326 3.405223 -13.993017 -45.200518 7.734956 -8.930363 -4.798021 1.221450 -10.466049 -2.635596 13.147303 -11.226874 17.961773 -2.959405 -10.516039 18.993413 -28.304323 -19.532104 -14.273127 -7.862156 6.692311 0.261671 1.510251 -10.646370 4.442283 -1.858395 4.059144 -8.424447 -14.026820 8.268156 11.320562 22.828801 -2.535683 2.177022 22.300187 4.373974 -1.542178 -3.652281 -0.229035 -7.265901 2.811047 -26.861236 -2.914763 6.562586 11.005748 -15.277124 5.902417 -8.434114 2.217218 4.324338 -129.315516 -17.825544 -13.490547 142.764407 40.000677 -18.635615 6.245653 70.949854 16.053024 -159.615570 -91.601818 100.059028 -5.142498 16.374817 55.987899 27.120420 57.193602 49.107561 -208.000162 26.160342 -17.537131 2.789372 -40.903617 -75.096988 24.911623 32.468350 71.000599 54.059818 33.346375 102.190270 -92.922845 52.284442 69.754190 27.121788 71.885357 12.051476 20.791433 -36.283041 -91.228448 -113.938137 195.080172 37.578793 20.660311 139.394101 11.910033 107.345050 25.866588 144.348849 91.261730 -25.697263 69.831348 -81.584142 -57.153764 12.038138 -161.708188 65.615901 87.750117 31.650850 -63.575889 66.115724 28.023833 64.247204 62.980554 -70.125127 156.975644 60.637378 103.651475 103.837950 140.405243 -101.783282 39.849954 0.411271 119.323731 40.342241 30.099455 -141.743250 -8.172177 -140.962064 12.480241 -161.348906 50.861727 -72.923743 153.364940 -99.632320 40.294821 41.929242 -13.095164 114.262859 -109.045608 44.007338 -112.673717 3.457055 -13.685715 131.838114 -17.234751 18.217501 16.236747 25.042120 -15.722738 59.085808 23.807481 -70.132281 18.004286 -206.849491 -96.024437 26.955818 -14.119254 -21.529518 -86.807744 41.845879 -9.090927 64.067384 -148.007329 -103.092489 5.434517 14.682814 -2.050599 26.307507 -28.076859 -49.529327 -16.868534 103.529370 30.527407 -106.879806 70.475466 -70.503724 -63.565106 56.048464 122.215549 55.881639 -63.117371 -65.268536 15.189606 29.325930 -24.168677 15.671371 28.729896 -44.150203 73.495525 -62.187692 89.500224 -126.687694 -82.511385 -66.228679 -46.799740 -34.946022 181.756557 13.941776 112.543091 96.669052 -30.237834 -19.968415 -115.516898 -170.297911 65.377251 36.845666 6.275669 55.601390 -1.893520 32.431718 -83.186230 -71.910279 84.777659 -105.762775 -131.730239 -77.259547 29.235034 -14.507595 -41.907585 -104.046642 93.365407 97.491347 -24.069021 79.153095 -28.618961 -157.409660 -116.719242 -59.665145 109.817879 -49.520413 7.974304 5.496708 14.201826 -85.121559 4.697426 -123.231566 29.244501 10.419531 -116.950816 -141.587655 36.387331 -21.433301 26.595361 41.273136 -109.521733 74.529346 31.585992 140.457262 -51.301356 74.773983 53.624075 -156.454084 -170.964944 -47.944729 -0.671510 128.042064 20.145987 18.971333 -86.123750 -63.283478 -44.810496 109.794416 -154.147606 68.795504 -8.017711 -16.280205 42.222547 -104.538931 -30.915712 -99.572021 50.986512 43.158912 -192.940115 135.654502 79.028571 -127.744921 -41.412126 -155.891079 103.744075 7.735368 192.406587 -95.435407 -49.971741 46.367798 60.702081 -25.914048 -120.119958 60.397518 26.180806 -56.107658 -123.866816 -93.219397 79.771423 58.420392 5.441593 18.634370 93.446161 26.674298 -15.619831 188.950903 41.167769 12.714761 -94.807007 -248.037165 19.492227 171.553153 24.129330 47.062718 -141.596729 -71.238274 6.561808 -19.095708 102.518724 67.331806 63.776849 107.280525 -114.435848 -97.446755 -61.699062 21.345376 20.121025 -49.995339 34.308085 -85.651511 -8.211478 -19.394547 42.420150 -56.350323 -20.129295 -88.105595 -6.891565 92.521267 -6.227325 0.359481 140.652974 80.237931 -68.143868 14.384546 -25.949048 -42.081012 24.753476 -101.813310 -27.133172 6.694205 17.672156 -110.244089 61.727534 17.656131 32.212608 -15.977671 -6.826607 -9.997949 -5.821520 18.767951 0.801709 3.306080 1.890310 -1.800941 0.470124 -26.869958 -9.314538 13.980377 2.639425 2.441535 -0.291218 5.753081 5.579086 3.620701 -24.413105 -1.444637 4.162794 -1.507849 -0.562312 -0.600632 -0.007129 -7.077795 15.625461 4.989798 1.837605 13.241065 -4.050527 11.712124 12.679388 0.257378 4.842254 8.312943 -4.836534 -0.618632 -8.274109 -5.536983 20.339104 3.527945 1.811402 6.596375 -2.563816 14.697056 5.301996 17.135878 14.764456 -5.573017 10.677856 3.094980 -4.902326 -2.203924 -17.896027 1.484759 6.433059 4.577825 -4.654840 4.897126 -3.961345 4.369251 4.919253 1.364172 21.447512 4.576147 17.850438 14.792947 10.943111 -11.024450 3.347654 1.476414 1.435972 1.224977 13.861556 -13.361550 -10.114332 -5.894103 -3.307924 -15.563729 0.186457 -1.651041 18.231252 -9.452941 -5.238650 -1.629739 3.806856 16.435013 -5.482032 3.655525 -17.042408 0.130994 1.592853 18.631041 3.571441 2.957617 -3.390361 3.665919 -2.149551 3.187683 6.769970 -12.879939 2.402779 -23.234719 -9.625488 -9.892992 5.651094 4.748878 -16.655168 3.495717 -4.171968 6.350671 -22.661811 -2.655653 2.340211 5.502092 18.199700 -1.335192 -5.263294 -1.255148 1.949863 6.679305 6.362801 -7.390156 4.997877 -7.994434 2.607124 1.723308 5.977761 3.015760 -17.491392 -6.199870 1.705859 2.645321 2.692272 7.266476 10.323805 -1.809562 6.743709 -8.269820 11.382046 -17.420829 -4.004431 -6.961946 -10.101866 -7.772455 20.207593 9.656575 13.659191 -2.135951 -8.126793 -0.062534 -19.762455 -25.732105 0.105750 1.019981 -0.780951 7.273998 -3.071709 6.077080 -11.820724 5.324973 9.911233 -6.386975 -7.624402 -0.758787 -1.983876 2.071328 -4.792772 -4.940719 -0.631102 0.166955 1.149437 17.709642 -2.416466 -27.599390 -23.493815 -6.986340 12.004366 -8.270655 0.074896 -6.096378 -4.504275 -11.509012 -0.406282 -11.053016 0.615460 0.725792 -11.074759 -16.872502 5.487782 -2.824096 1.092638 5.425552 -13.082705 3.097367 6.347836 7.264985 2.394868 3.165660 -0.033990 -13.678066 -10.886768 3.230292 -9.053799 13.671775 4.567585 -1.581210 -8.709509 -7.459594 -11.779001 6.372197 -9.927081 8.664019 1.273644 -8.721185 3.779207 -11.974145 3.965995 -7.264521 3.617581 2.203230 -25.619375 19.171756 10.198923 -9.480148 -1.042326 -3.688589 7.198143 -1.454515 7.970820 -10.119288 -7.334474 2.051827 0.960198 0.356344 -3.117355 3.518190 -2.368606 -5.100002 -16.189818 -9.068147 11.909117 5.547252 -1.812831 -0.101002 7.975978 -5.419659 0.624647 15.651908 8.086279 2.534638 -9.587573 -34.492975 4.103829 2.830419 -2.902687 2.021492 -11.049528 -4.416122 5.727529 -5.408715 11.629086 -0.103136 -5.181733 12.348754 -16.005445 -11.720728 -11.138626 -5.694284 2.843440 -1.311473 1.985739 -6.399888 1.423942 -2.200972 3.134382 -5.333985 -7.785372 4.275281 7.234078 13.706302 0.781983 0.777359 13.264254 5.057152 -4.176382 -3.475246 -0.065741 -7.964051 6.788013 -18.811613 -2.359495 3.686706 5.949165 -9.498418 1.632502 -2.750275 3.874592 0.551796 -17.279626 -8.541266 -8.206714 18.904301 3.164731 -5.268871 4.054054 5.429386 0.871887 -26.628347 -11.802608 21.310411 1.551947 -5.967517 1.007653 7.891097 10.109968 3.777378 -31.083152 6.516131 1.350788 -4.071474 -14.694943 -2.436728 -0.804248 -11.224088 9.190787 12.527849 -0.769082 16.867969 -8.259023 8.297401 13.441779 -0.213873 14.016036 15.749253 -3.154641 -3.845997 -2.479709 -2.767156 30.138368 10.453381 -1.404428 9.513177 8.340885 21.933055 1.271020 26.173536 10.662427 -5.449307 12.884840 4.666856 -10.609683 -1.147818 -25.857885 2.305196 10.910632 1.359913 -14.027946 11.493571 -9.718441 5.252795 8.286790 5.410525 29.285671 6.826771 16.445182 14.827946 22.428568 -11.648951 2.350828 6.120348 14.086064 3.583866 12.957554 -9.446549 -12.712396 -15.898279 1.464261 -22.988362 1.428425 -4.124959 29.240089 -14.661046 -2.321757 4.168959 6.134808 19.116105 -14.889662 -1.546210 -21.497362 0.583858 -1.262992 29.756465 1.156198 8.191233 -1.788267 7.659200 -1.913793 8.683766 -0.711287 -21.556090 -6.350896 -38.060378 -15.457903 -12.835239 -2.944246 -3.004593 -23.319562 1.148862 7.924877 18.549490 -27.236196 -2.096393 5.219481 -1.333368 15.284175 6.761271 -10.663823 -0.937340 -1.155445 10.645776 8.243505 -5.929119 2.679750 -11.481662 6.391933 5.315969 8.498329 3.569452 -26.273751 -1.631220 9.681659 1.090764 -1.856211 5.961574 4.862370 -11.460447 9.170911 -13.588495 16.956922 -25.421151 -5.428072 -15.140700 -13.915451 -6.556050 23.265541 19.620845 19.732417 3.754635 -4.122872 0.046119 -28.244403 -37.902029 3.212198 -5.783781 0.591271 -1.272333 -2.042295 1.408263 -11.548637 -0.977527 10.477822 -13.533003 -8.703812 -6.957205 14.094449 2.674154 -7.002927 -7.941491 -1.258407 8.391214 5.819118 14.598222 -9.150563 -38.112628 -24.958358 -10.930700 15.805421 -7.909243 0.508199 -4.154771 -6.596389 -14.742172 3.121019 -13.623726 3.495445 -8.203064 -8.830394 -20.963031 4.988027 -4.456262 -0.282815 -0.748599 -16.495330 5.762282 9.660680 7.110980 1.404395 6.112746 0.500711 -19.025709 -16.726948 3.573168 -3.242657 24.348488 15.195304 0.964835 -8.853715 -6.365605 -21.086491 14.025621 -24.838010 9.576775 7.409246 -17.911960 14.342325 -15.035475 -5.227009 -9.494881 10.763469 0.501518 -27.871694 29.059117 21.907107 -20.948323 -5.615652 -10.947140 9.466161 5.333825 20.837392 -13.059815 -5.663698 5.366607 2.707531 -1.970858 -2.177139 8.524871 -1.447567 3.863751 -22.765268 -11.593184 17.547163 12.754484 -1.754405 -1.846687 -0.020068 -3.658931 1.425064 22.865334 6.430300 6.156194 -16.848432 -45.361223 5.762288 -0.927719 -3.465768 8.025924 -12.453964 -9.907398 -1.155857 -10.817584 19.891867 -1.829752 -7.562283 16.619387 -22.462203 -20.626092 -16.035988 -3.500100 1.785670 -6.232943 13.344742 -10.926784 -0.085580 -6.846364 10.464859 -6.118532 -7.856586 -4.193255 7.907365 11.288549 7.276333 -8.923991 19.690249 3.077027 -6.236456 -6.367037 -0.681149 -5.171747 10.300386 -21.703983 -7.544427 -5.248863 10.038822 -12.941005 11.243848 2.413370 13.705869 5.237587 -28.099168 -18.094410 -7.820087 46.111628 10.689251 -8.513206 7.917812 8.597374 2.852690 -61.231583 -26.663124 19.047510 3.669475 -5.895933 9.754187 12.925246 19.852539 11.247213 -63.335967 10.616246 8.929404 -3.510805 -16.633504 -6.933280 -0.160653 -21.539170 13.834523 24.537398 2.077178 39.185497 -21.681651 19.579256 31.425144 1.123922 28.284299 31.904505 3.507506 -5.349038 -9.930708 -2.554927 65.890348 15.708114 -3.921517 18.386739 13.048799 47.904040 5.839642 44.993594 14.435421 -14.859211 26.321775 -6.849461 -15.130820 -4.002399 -52.754904 12.274692 33.738903 16.818339 -30.926730 24.196152 -17.407662 12.569078 17.601380 6.059558 56.542442 15.414319 30.738471 34.665974 48.707360 -29.919768 4.118785 9.737666 26.075684 3.974342 22.143021 -22.903645 -20.957052 -50.516513 0.190781 -44.263744 4.108424 -5.663130 47.866139 -33.907066 -0.372037 18.986230 4.793419 41.189697 -29.052443 -0.267697 -46.610901 0.597724 -0.990271 56.352305 3.643505 8.827072 -0.695552 18.987893 -0.820046 20.801117 4.213508 -42.330998 -17.137548 -82.328371 -38.468549 -23.229034 -0.860618 -3.746691 -47.832759 -0.347299 18.705258 27.715708 -58.011762 -4.240040 10.992963 10.123041 17.977715 -7.268971 -18.942922 -4.345963 -2.584306 19.854595 18.540120 -19.253731 9.084810 -29.451997 8.732472 12.599578 21.626611 3.378886 -33.395602 -7.847446 11.062834 2.343727 -4.907897 9.757696 11.723241 -23.936508 22.485702 -29.893049 39.551588 -50.107975 -7.484494 -31.017051 -29.632771 -13.564780 54.184172 24.096563 33.113886 8.985183 -22.249082 0.529658 -54.035794 -76.666413 8.518515 -2.640033 6.970191 6.507482 -8.132735 6.860652 -24.646480 -3.546688 22.130580 -30.091986 -21.882419 -11.869945 14.893918 2.891653 -16.488076 -23.598668 5.416652 25.494663 3.657873 33.260899 -19.393437 -53.141689 -51.476502 -27.516641 36.017701 -17.827905 4.075792 -9.242179 -9.787995 -41.760141 13.898168 -33.693371 8.049721 -13.703789 -23.470457 -49.217285 10.220190 -12.222395 2.513147 7.512685 -38.091293 14.113999 12.033478 15.391515 2.269622 11.347011 4.934783 -43.984259 -40.920090 1.219378 -7.660970 45.924404 19.780019 3.159218 -15.678844 -18.401628 -33.863964 32.227356 -37.864140 19.198780 12.815268 -31.606389 27.947196 -31.006574 -12.660745 -26.653316 20.574943 8.057852 -43.777517 59.252626 39.804829 -42.322427 -13.049602 -26.788504 22.072793 8.392058 49.081839 -28.048068 -12.454070 13.323048 6.442110 -4.632889 -16.534421 18.054384 -3.934724 5.463393 -47.846863 -25.642237 31.557429 29.754787 -3.187957 3.762521 11.496924 -2.348585 -3.413021 51.263829 17.088531 11.326442 -32.818831 -78.993406 16.038310 6.641450 0.014045 11.374668 -29.729300 -18.607694 0.924462 -4.199809 42.532188 22.214744 -6.653109 40.753576 -44.439827 -43.580628 -29.166334 -6.617084 6.197291 -19.048210 18.310601 -26.997133 2.404220 -11.390251 19.059631 -9.083986 -16.116683 -16.150385 12.677397 27.756336 8.621994 -12.750142 45.545824 9.848719 -17.997240 -9.273450 0.863371 -10.185693 19.371581 -33.152973 -17.283538 -7.561587 18.955760 -28.891291 22.043765 -4.426555 18.998688 11.727409 -12.044019 -6.052506 -5.331293 21.966385 1.625521 2.183072 3.980676 1.807382 2.872615 -30.774903 -13.770776 19.165526 2.755730 1.627237 0.295550 7.102951 8.350292 6.350680 -32.574332 -0.026945 5.879919 -0.494263 -1.488612 -2.758688 0.517750 -9.621395 14.336379 8.646673 2.889977 19.702013 -6.923565 12.307874 16.813866 1.236271 8.301325 14.179080 -4.604259 -2.124273 -9.732799 -8.014773 26.131529 6.824737 0.946569 11.086850 -1.012251 22.155691 6.317472 17.393992 15.064673 -8.233020 9.779727 3.704774 -9.725245 -3.891169 -21.547644 2.637141 8.375143 4.843668 -8.411560 8.988520 -3.360820 5.720457 7.398674 0.695925 23.322444 6.408731 16.347540 17.144441 18.030286 -15.811341 3.927665 2.711228 5.478109 3.293676 14.681034 -13.524702 -13.395924 -7.272231 -2.674333 -22.661682 -1.180738 -3.575502 24.319464 -15.050068 -3.514193 0.377456 2.794724 20.593353 -8.323687 1.660645 -20.554371 0.125422 0.201202 22.765185 3.684784 4.533471 -2.470437 5.160252 -1.852983 5.991926 5.242936 -19.552809 -0.307986 -30.566912 -11.101013 -14.320749 4.660272 5.238981 -20.402407 3.363127 -3.247437 15.483590 -29.133676 -4.288352 4.822117 5.557483 12.547916 -2.299873 -5.084398 -1.540823 2.243976 9.342247 8.734113 -12.050882 5.238755 -5.947419 -0.080870 3.247687 8.439417 4.329458 -18.947927 -8.971296 5.304141 2.093555 2.568634 9.608670 10.578039 -4.391839 9.365701 -13.286908 17.030481 -21.215018 -5.793870 -9.612176 -10.706607 -10.929058 21.257975 12.399167 16.773976 -0.677652 -5.506356 -0.343090 -23.783801 -31.415470 3.187081 0.129556 0.958694 7.967093 -3.888862 6.806330 -16.249357 3.795308 9.732098 -9.904135 -10.287678 -2.044425 3.446695 2.293226 -6.671363 -7.256149 0.159196 1.303011 2.432812 19.894806 -5.825005 -30.988898 -27.671582 -11.225739 17.927069 -11.288238 -0.316246 -7.687881 -6.189562 -12.196375 0.022999 -15.450258 1.340635 -0.711382 -11.828955 -24.057702 7.332557 -4.947900 0.298689 7.531691 -18.185607 4.376626 9.807968 7.527346 2.213716 5.000893 0.231107 -16.122838 -12.225166 3.322866 -10.094128 17.638873 9.433083 -0.986868 -13.162101 -9.627300 -14.571313 12.069919 -14.382534 12.306095 1.653132 -9.528406 8.911187 -14.550462 1.929933 -10.890172 7.565048 4.350943 -31.206341 22.946695 16.084011 -15.304965 -2.670803 -6.692766 9.034259 1.863818 14.497199 -14.836177 -11.731677 4.595808 0.404905 0.051803 -5.795403 5.934853 -2.715064 -3.508585 -19.700774 -8.926175 16.621332 8.943774 -2.426265 1.283429 10.585176 -4.180042 4.537227 19.678403 10.354253 4.477448 -15.736338 -41.149678 7.438222 5.173631 -0.833916 4.714049 -13.294459 -7.294794 6.320268 -7.735805 17.583460 0.491337 -6.542265 18.098130 -20.505201 -18.161754 -15.552852 -7.073900 4.806779 -2.168443 5.626332 -8.544949 2.560727 -3.167592 5.312164 -6.039686 -9.655373 2.895943 10.281631 18.248054 2.744661 0.045257 20.264846 5.347416 -6.933249 -4.005706 -1.053437 -9.450769 4.561785 -22.259383 -4.181213 3.206579 9.185828 -14.048407 5.399267 -2.381048 6.157844 0.998425 -16.231085 -7.300262 -14.672005 33.768081 0.166636 6.264412 3.455909 -2.229910 2.957648 -42.964024 -17.521817 27.373346 5.938909 5.823735 0.517735 14.773723 9.282789 4.786654 -34.967728 -1.774574 7.414114 -5.075683 -5.066451 2.614185 -1.152740 -14.785547 22.017096 8.363684 3.331052 25.303367 -6.735653 21.103307 24.187160 -2.435442 7.643075 16.543346 -7.214721 -0.027847 -17.452981 -10.011598 32.888128 6.911131 0.997842 12.454440 -7.637596 29.345997 5.392869 32.461694 14.298831 -12.644720 17.220269 9.005984 -10.438820 -3.205172 -27.049765 2.850774 9.469262 4.279235 -9.815128 9.356948 -8.699563 8.625080 10.471389 6.833996 32.846561 11.494483 27.090230 26.756937 21.473282 -21.945390 6.910305 5.550374 0.411383 3.513395 23.855246 -16.372191 -19.430693 3.414743 -2.001242 -20.225837 -4.006512 -4.178691 37.400746 -20.640612 -12.064640 -4.707840 7.599896 30.902754 -12.981196 10.352034 -27.335997 -0.564661 -0.927062 31.530131 6.147298 6.494241 -8.335696 6.071722 -4.646221 5.882691 5.050458 -26.009196 0.069376 -32.166654 -17.993545 -19.548580 9.146723 13.130736 -31.943870 4.363286 -8.441302 20.466913 -39.673668 -3.597104 4.997302 9.683937 34.224457 11.175532 -10.928138 -2.753429 8.176535 10.595366 13.722335 -9.993187 11.218365 -11.766647 4.107453 3.887568 9.553050 7.587401 -34.161383 -9.900760 7.599008 -2.466693 7.018667 17.091815 20.140030 -6.710505 14.048467 -13.928846 20.902748 -32.741495 -11.541918 -12.528095 -21.812533 -14.893125 29.314493 24.433872 27.587506 -3.328978 -10.863486 -2.442082 -37.081950 -42.109546 -4.291757 1.317494 -2.668029 13.568664 -5.925719 12.885806 -23.148684 12.694193 16.951818 -11.997896 -15.134370 -1.567172 8.674186 5.250112 -9.196319 -8.414987 -4.003413 -8.558429 2.622437 34.845185 -2.343940 -48.550282 -44.151338 -13.638719 24.015697 -15.512006 1.154889 -13.672676 -10.656791 -20.875636 -3.298182 -19.956319 0.384666 2.040894 -14.235791 -32.291889 12.223826 -4.331767 -5.443174 8.867432 -25.480050 4.861566 18.008142 6.086147 6.135743 7.629291 -3.579040 -20.330566 -14.818224 9.316113 -18.424841 26.548130 16.792470 -4.212629 -13.213383 -14.957890 -23.794453 15.140141 -20.694867 17.314883 3.548891 -8.540343 9.082758 -22.923792 0.565166 -14.721379 9.223424 3.723778 -43.448149 29.592132 22.413487 -17.829084 -0.776438 -4.840279 14.663894 0.556405 14.868530 -19.776399 -15.023624 4.403769 3.918380 0.572287 -2.351721 6.622190 -7.278142 -10.090016 -23.776579 -8.924762 23.437573 10.073489 -4.236556 -3.571757 13.976510 -11.427673 10.488147 22.468888 16.763275 2.381252 -18.730069 -58.907015 9.199424 -5.874089 -9.795498 4.343300 -17.608464 -6.904104 10.191793 -17.675724 23.575586 -8.794157 -9.580286 24.490074 -31.272765 -24.606837 -22.983626 -11.039884 2.772802 -0.069459 7.041436 -10.019969 3.519708 -2.346361 5.156068 -12.549992 -16.873491 8.988264 13.926395 26.247103 -1.313833 2.150250 25.719124 10.121061 -5.706713 -9.010734 1.424542 -15.710581 6.006612 -36.861802 -5.274980 7.453360 12.052788 -19.536962 2.431087 -3.753676 5.403578 2.087562 -8.375896 -9.164267 -8.346969 20.946473 1.015169 3.365499 2.041659 -1.958256 0.283032 -29.236230 -10.309517 12.521344 3.916733 3.868105 0.238887 8.749733 5.657792 2.968812 -23.246650 -0.831577 4.822969 -2.060672 -1.248194 0.770336 -0.348382 -9.124118 14.901008 4.836160 1.871224 15.117747 -4.638196 14.711905 15.164465 -1.176027 5.809097 10.285136 -2.839881 -0.503044 -9.812240 -3.968051 21.965834 3.129868 1.523040 5.533021 -3.686381 17.013073 6.780672 20.408453 8.264010 -7.152424 11.857092 0.241385 -5.717741 -2.230038 -18.864969 2.193357 7.213669 6.678197 -6.228378 5.745239 -5.728764 4.810194 5.919996 3.730956 23.290918 4.677444 19.489735 16.545764 12.848177 -12.914925 3.466302 3.593862 0.745282 0.695422 15.878935 -13.796181 -10.186504 -2.179753 -1.693947 -14.404773 -0.515540 -1.085055 24.889321 -11.456063 -8.496499 -0.324230 4.316384 19.349397 -7.082931 6.628049 -18.233801 -0.189384 1.341436 20.504432 3.095604 2.807894 -4.960515 4.911240 -1.984615 3.908343 6.186732 -15.158758 -0.468028 -21.958554 -11.151709 -11.076216 5.413994 6.256835 -19.881847 1.943590 -4.851937 9.902118 -25.463781 -0.717971 3.457473 6.997353 25.096148 2.765515 -7.397996 -1.627308 3.754142 7.339215 8.024595 -8.200747 6.530662 -9.034731 4.938000 2.716789 6.068426 2.764680 -22.329206 -6.175151 2.790498 -0.060806 2.796230 8.334319 13.256712 -4.365536 8.331596 -9.235362 12.924961 -21.029812 -5.237287 -8.067408 -16.352771 -8.312462 24.811610 12.976785 16.522831 -2.068891 -9.779513 0.203735 -22.823374 -28.248167 -1.648372 1.402284 -1.002396 8.645417 -3.602217 7.271977 -12.630003 7.757303 11.859593 -7.160282 -8.793031 -0.580544 0.623996 2.748714 -5.653396 -5.611057 -0.973770 -2.072701 2.274800 21.476476 -2.577911 -30.433948 -27.138833 -8.413631 13.667386 -8.848656 1.072136 -6.968522 -5.861277 -14.956018 0.445471 -12.531361 1.589928 0.601844 -10.867637 -19.685421 6.655409 -3.258410 -2.450608 5.869568 -14.178890 3.055180 8.651535 5.923583 3.334315 3.084659 -0.586330 -14.766158 -12.096736 4.609561 -12.002359 16.707056 6.867933 -2.026030 -7.410471 -8.594733 -14.069101 7.964107 -9.668505 9.103855 2.202211 -7.166124 4.905836 -15.896604 4.321120 -9.585299 4.957305 2.740817 -28.537722 20.578399 13.034830 -10.650304 -1.242700 -3.168051 8.310817 -0.365570 9.129065 -9.976205 -7.980221 2.668254 2.233693 0.199352 -3.227943 3.893629 -3.968412 -5.391780 -16.715800 -8.742766 12.514478 7.038201 -2.173890 -1.067294 8.437461 -5.854653 0.590908 16.550335 8.915961 2.659681 -10.745038 -37.580178 5.185180 -1.329034 -6.282207 2.071772 -10.822672 -3.541512 5.902348 -8.925089 13.696530 -0.256605 -5.416149 14.588782 -19.630923 -14.329370 -12.690175 -6.133652 2.275885 -1.215774 2.019035 -7.852341 2.500249 -2.339592 3.273224 -6.550882 -10.645380 4.965954 7.548012 15.532607 -0.030140 1.690498 15.559284 5.334510 -2.770011 -4.688972 1.974731 -7.836838 7.122955 -22.261559 -4.116725 3.759156 7.068341 -10.665921 1.629888 -3.725474 3.425814 1.869417 -4.515472 -0.795771 -2.045427 4.854191 -0.269046 0.711838 0.928804 1.958519 -0.942746 -9.653204 -6.944694 1.143774 1.053634 0.837790 2.674593 3.167641 2.411776 0.574480 -11.034040 0.153750 2.899140 -1.216063 -1.290700 1.764725 0.265655 -3.779389 -2.989093 1.840269 0.114373 6.030595 -2.577134 4.465546 5.073493 -0.535659 1.849070 3.753262 -2.600915 -1.063393 1.050238 -0.029373 7.997974 1.566915 -0.355186 1.367354 0.011403 6.489393 -3.428203 9.233443 -0.286738 -3.124341 6.835083 -4.887511 -3.144392 2.442333 -5.459621 1.023883 5.449009 2.261772 -2.452771 3.296144 -4.060480 2.435758 1.782276 -1.838286 7.918678 4.439687 5.472602 4.015744 5.045348 -3.632189 1.712040 0.988170 0.038758 -0.572406 -0.423311 -3.394715 0.442776 -6.268837 1.370383 -8.162114 -0.620456 -1.608152 10.122145 -4.811017 -1.889561 2.146771 0.867707 6.564663 -3.901122 2.366048 -5.609756 0.344099 -0.197802 5.972015 0.214928 1.164495 -1.407128 1.871551 -0.171469 1.679178 -1.493781 -3.912927 -7.270045 -9.965339 -5.866180 -2.160366 1.520657 1.836479 -8.497564 0.849653 3.580172 3.096922 -8.333067 0.014053 1.555650 3.144828 1.823684 8.240409 -7.180874 -2.556672 0.208534 3.929990 3.374187 -1.344860 3.067345 -8.133758 0.873937 1.581038 2.641892 0.176716 -7.412980 -1.554463 1.833189 -2.780457 0.023136 3.240535 3.832859 -0.344050 4.001531 -3.468951 4.363666 -9.296382 -1.748999 -4.418787 -5.854777 -1.832872 8.384117 9.218255 3.541872 2.457946 -3.047685 -0.720153 -8.666587 -7.897477 -1.720885 -0.394729 3.509021 0.382134 -1.144068 1.878973 -3.221904 1.574715 0.727021 -3.491390 -2.347535 -2.504732 6.658824 0.795005 -2.723490 -3.942472 -0.219946 1.647164 -4.025190 4.752216 -1.083685 -4.645136 -8.501671 -3.859354 5.172457 -2.543559 1.717606 -2.573534 0.782191 -6.744223 0.539680 -3.791488 -1.751040 0.317150 -4.714040 -6.772316 1.886915 -0.399684 -3.100891 0.872921 -5.051080 0.627534 6.437617 4.133825 2.668301 1.568263 -0.923253 -4.685622 -5.874482 -0.684460 -3.965487 5.961160 6.350615 -1.752476 -2.528897 -2.538106 -6.008821 5.698318 -4.126529 2.497643 -0.669646 -2.679527 2.786621 -4.808770 -1.874059 -4.173846 1.849293 0.202139 -11.855010 7.192057 4.435564 -4.846740 -1.223552 -5.968905 4.010691 1.174629 5.209047 -2.091635 -0.376786 0.178620 0.342003 -0.090169 -1.501695 3.444281 -1.939706 -1.113777 -5.142113 -2.117121 5.987249 3.608272 -0.527621 1.822618 2.858663 2.023481 4.293329 4.694805 1.832898 -3.445986 -2.360908 -13.764603 1.925808 3.689271 -2.114353 1.158906 -4.682370 -2.739694 -0.383593 -2.535757 5.600519 2.137891 0.662272 5.237766 -4.247017 -5.426183 -4.593245 0.621409 -0.283261 -1.933751 0.943588 -1.931899 0.859340 1.386115 2.188977 1.150086 -6.115832 -6.102644 0.990436 5.968193 0.356799 -0.400897 5.972237 1.831503 -1.710422 -2.133224 -0.072391 -0.727588 2.403009 -4.168557 -2.120882 -0.188500 1.486656 -4.400721 1.834510 0.294655 1.264642 2.181657 -114.520932 -55.711424 -47.927661 182.962485 25.570481 -51.064174 33.297583 47.411239 -0.588519 -233.606504 -95.152836 76.904945 22.367588 -25.589888 30.863467 59.186309 58.231244 43.748479 -254.790916 49.413437 38.330248 -10.456514 -82.072454 -37.925202 -2.197964 -73.690803 38.231184 98.907383 1.852548 152.827503 -82.394844 73.504926 124.454419 -2.345091 104.021940 122.009568 15.406791 -13.004944 -30.247952 -3.620712 245.144653 76.313969 -35.051616 58.115685 43.232008 188.644353 21.527063 171.297278 -8.880578 -60.640324 88.820335 -18.555961 -67.140713 -19.296926 -191.732614 47.820874 145.207245 86.874840 -116.096469 101.283606 -82.993615 45.050091 79.770653 38.292658 230.799609 73.648364 127.610820 142.745891 200.050411 -115.491159 25.032853 32.598838 95.002536 -9.568396 86.978834 -83.223195 -86.125164 -203.941050 14.007417 -200.894106 5.320400 -5.334742 205.548682 -142.069858 5.521873 72.471525 40.912081 167.837822 -138.639206 6.802252 -178.040668 -5.352649 -20.656042 258.780088 11.233820 38.032449 -5.271921 93.008864 8.065873 77.111196 5.983637 -159.842904 -69.922349 -309.245619 -147.194588 -80.677075 -22.368159 -6.700295 -195.748424 -18.069449 95.043657 115.980595 -242.960056 -12.266737 46.234128 38.819230 100.010211 -7.027435 -86.522117 5.161139 -24.725512 62.566201 76.685520 -73.832027 41.723067 -100.065919 35.499885 54.800592 77.489602 29.884453 -186.087207 -16.452196 52.269388 -23.802046 -14.588388 49.085660 41.414852 -100.441304 86.630593 -134.732632 157.249239 -215.402567 -24.381889 -108.707975 -143.033990 -44.728867 177.177162 113.548891 106.867750 23.759850 -84.690467 1.981335 -225.122402 -311.020473 33.524659 4.022627 25.067622 10.769881 -34.349755 16.825910 -97.970170 -7.582617 102.532264 -121.535210 -89.034685 -49.544350 122.443360 22.087419 -65.645370 -83.924483 15.096785 96.282493 27.053919 136.044533 -76.403814 -205.774167 -221.431950 -100.404819 142.359665 -58.137540 5.220435 -43.890476 -42.938172 -179.183707 60.911160 -130.310099 47.628459 -49.714936 -76.845534 -194.962559 46.363332 -39.880426 -8.450567 14.790876 -142.437348 50.572613 52.744624 39.390331 2.238322 37.310155 33.912198 -164.370088 -162.372254 22.272226 -23.258114 186.190801 90.587439 20.011096 -56.147653 -62.629107 -144.745542 138.312010 -139.227861 77.116942 42.626226 -114.076157 124.810871 -130.787756 -60.515907 -110.731230 85.316346 25.629002 -146.219540 251.910661 162.358732 -161.881239 -45.077476 -97.074640 88.495634 42.777059 191.050671 -118.528672 -61.183882 54.048187 23.672819 -22.281639 -53.296245 67.741367 -27.377037 25.496692 -177.462497 -88.973131 122.005787 114.386992 -11.769731 22.337388 25.618116 -34.782498 -25.001509 195.900980 69.469135 33.707760 -127.775479 -295.096492 63.386505 -26.351811 -7.436330 21.531058 -106.820007 -73.513924 4.807317 -14.445657 167.557877 91.965918 -57.209025 155.362433 -200.307989 -175.352410 -118.902085 -6.721863 20.128006 -73.267259 70.930152 -99.879973 16.463291 -27.840479 76.413669 -33.568898 -79.551254 -68.510009 42.346046 111.030451 20.307427 -75.360319 185.535087 30.764071 -57.581216 -44.509469 3.978268 -38.407524 71.192320 -125.790459 -66.434325 -31.771144 86.300151 -118.049562 97.799882 -6.611931 63.832607 61.397005 -6.421593 -4.276813 -6.184397 15.340148 0.288077 2.854209 1.445492 -0.990310 0.953757 -20.963257 -8.837110 11.383901 3.007982 2.156400 0.110293 6.480315 4.582564 3.484527 -18.576962 -1.091999 3.616294 -1.626110 -1.481385 -0.659332 -0.334120 -6.509337 11.432833 3.640162 1.482057 11.913824 -3.334104 10.219245 10.834923 -0.216849 4.371376 7.347013 -4.701484 -0.725556 -7.587995 -4.866695 16.005968 3.683284 0.596442 5.667636 -2.836203 13.216026 3.943023 11.089813 7.044224 -4.897931 6.540994 5.402240 -4.766044 -1.925943 -13.947796 1.423324 5.209076 2.601606 -3.983116 4.416946 -3.705750 3.861558 4.704401 1.631183 16.304589 3.762024 13.668132 12.375343 9.759734 -9.769822 3.448571 1.355241 0.922779 0.573882 11.481754 -8.123022 -9.096413 -1.449949 -2.419699 -13.367104 0.349990 -1.268108 17.577087 -8.908119 -5.089474 -1.670762 3.716002 13.967964 -5.592409 3.194159 -13.012075 -0.119133 -1.375219 14.884610 3.580328 2.992332 -3.507395 3.868650 -1.943172 2.286273 3.728337 -11.800623 1.772420 -18.307434 -8.119196 -9.010969 4.298399 4.898049 -13.310378 2.714441 -3.014279 9.533478 -18.795907 -1.639615 2.221526 4.164144 13.647025 -1.303985 -4.919128 -0.318167 1.702994 5.753561 5.523210 -5.972007 4.612521 -4.319174 1.519580 1.444330 5.231056 3.431985 -14.439623 -5.138416 2.444177 0.446589 2.595268 7.497523 9.157773 -2.548061 6.092381 -7.286931 10.221882 -14.622682 -3.479270 -6.139370 -9.254865 -6.866862 12.836026 9.614487 11.139812 -1.946721 -4.473651 -0.040014 -16.810011 -19.902481 0.176450 1.348590 -1.323376 5.947465 -2.646755 5.372908 -10.783307 5.341390 9.074311 -6.039404 -6.726979 -0.347554 4.177899 2.163707 -4.609487 -3.999191 -1.445202 -1.414349 2.142026 14.870854 -2.004853 -20.523877 -19.975956 -5.847083 10.856237 -7.398425 0.256288 -5.757448 -4.447179 -8.936116 -0.612758 -9.664192 0.974344 0.797794 -7.573573 -15.013574 4.612071 -2.002247 -2.062367 4.386745 -11.688369 2.908114 7.608834 3.547669 1.797445 2.674606 0.036388 -10.062065 -7.892604 3.839884 -8.120659 11.425542 6.891855 -1.710490 -7.944040 -6.226484 -9.934422 6.241998 -7.775403 8.001513 0.768663 -5.539087 3.371344 -10.944099 1.561151 -6.663797 3.523143 1.265885 -20.826573 15.551385 9.910985 -8.349229 -0.315286 -2.793029 6.931114 -1.002960 6.988136 -9.276879 -6.706960 1.681127 0.659692 0.257027 -2.099502 3.209180 -2.864463 -4.717281 -12.263327 -5.219761 10.945909 4.741533 -1.629973 0.143390 6.542612 -5.076125 2.771091 11.962838 8.076107 1.944049 -9.446448 -26.353113 3.516122 -1.777233 -3.165249 1.434079 -7.159360 -3.776866 4.072158 -6.346677 10.380532 -1.727345 -5.618071 11.050702 -13.830266 -10.814320 -10.227094 -4.808578 2.423718 -0.971052 2.811394 -5.599806 1.424437 -1.833391 3.023914 -5.234113 -7.459018 4.715075 6.654714 12.568490 0.546283 0.616134 11.965582 4.560282 -3.341240 -3.454541 -0.083793 -7.569810 4.118520 -16.295189 -2.474568 3.406369 5.611953 -8.835981 1.521930 -1.902866 3.525938 0.861937 -42.371127 -9.310067 -8.462244 48.567888 12.891997 -5.715251 2.279396 18.417061 3.046124 -55.978609 -30.924611 35.540418 0.251540 6.207236 15.368771 13.670922 19.805237 13.069890 -69.730310 8.747832 -5.051775 -3.106321 -15.678106 -19.331784 6.430575 3.304682 23.279456 20.406927 8.958660 35.431451 -30.791442 20.730986 25.386468 7.346018 26.105678 8.121897 6.176275 -11.997717 -29.320041 -32.009370 65.926831 11.207366 6.575276 40.069924 4.521140 40.183174 7.767469 55.503689 30.818509 -9.388873 28.018086 -23.905813 -20.454782 4.735704 -56.168944 20.627914 26.728059 8.863445 -22.778957 22.525352 3.965812 21.133470 20.208404 -17.416538 57.067714 18.649192 36.910351 33.492669 46.787451 -34.015802 11.142294 3.306106 39.174922 12.690723 12.262109 -45.102594 -6.181325 -44.710581 5.795069 -52.855680 15.087816 -21.393960 53.968228 -34.479740 5.938067 13.580262 -3.477408 40.784471 -36.678507 15.317491 -41.831718 1.444026 -2.785427 48.186644 -2.715458 6.947560 3.159351 10.197252 -4.585587 20.286527 5.346887 -28.084046 -0.392789 -71.802956 -35.857894 2.688003 -4.071475 -6.746256 -36.234240 12.127130 0.705089 27.181233 -51.789540 -29.046577 4.343040 5.065582 6.736015 13.660150 -11.549735 -14.649604 -3.487477 34.531038 13.521903 -30.612968 22.219015 -26.300231 -13.746265 16.997437 38.616700 16.050370 -28.852369 -18.352071 8.097102 6.989656 -5.922902 5.319229 10.368131 -15.731830 25.454922 -21.197627 31.404619 -46.329761 -26.298464 -25.749057 -20.694418 -11.872098 62.338721 13.826593 40.923118 29.715523 -11.042524 -5.433909 -45.071686 -64.600142 16.975231 8.761828 1.806316 16.173305 -2.119674 11.737434 -27.527614 -20.047545 29.478549 -37.025839 -43.015064 -25.230257 10.304701 -2.595629 -14.927460 -33.069298 25.040661 29.371555 -7.162215 30.118991 -11.000633 -61.934466 -42.957507 -22.854746 36.797046 -17.798600 4.860026 -0.490481 1.432274 -33.412196 2.756092 -40.754543 8.081140 1.352019 -38.136779 -48.624187 12.642038 -7.887819 5.907316 12.121773 -38.735472 23.783327 13.055267 41.503529 -11.697326 23.568387 13.651252 -51.370960 -55.182274 -12.288094 -3.980989 45.056955 11.603910 5.142320 -26.991511 -22.227248 -22.398490 36.386019 -54.235619 23.024284 1.178282 -10.253184 15.683209 -36.773168 -9.271080 -29.209524 19.172790 12.532347 -67.489370 50.547799 32.400081 -44.781830 -14.341080 -48.517595 33.534424 3.740851 64.065537 -32.463878 -14.980125 13.691350 20.693280 -8.568197 -32.973398 21.647552 5.945256 -16.209796 -44.160403 -31.124027 27.281097 22.714851 1.591774 3.814800 27.038935 7.154839 -3.202468 60.894308 12.811957 4.956525 -31.260220 -91.063356 7.553994 49.226606 2.663702 19.504910 -46.458753 -21.617820 0.996038 -12.474291 37.772205 15.095276 15.228027 37.782545 -40.394407 -35.543489 -24.004865 2.700789 4.003204 -16.179499 16.023031 -29.067985 -3.389875 -7.654901 14.924114 -19.912250 -8.756585 -26.212894 1.588414 31.426640 0.537265 -0.221341 47.502404 23.586064 -20.269409 -0.116039 -7.088506 -13.333476 11.787276 -38.522767 -11.400008 0.327180 8.235217 -35.944289 18.671362 5.393506 12.631351 -2.506809 -10.627547 -6.771685 -8.405626 22.106973 1.221165 5.179250 2.269997 -1.933199 1.957667 -30.051170 -11.562961 19.790295 3.976945 5.032590 -1.397568 9.207954 7.293134 4.098922 -25.984435 -1.832238 4.500721 -2.622714 -0.948177 0.242619 -0.070327 -9.432391 18.615354 5.313642 3.159925 17.367653 -5.270510 14.989316 15.792165 -0.188729 6.496744 11.006169 -4.800882 -1.854892 -13.235519 -9.137105 22.355571 4.598394 2.736698 8.845544 -5.278208 19.371522 7.335387 19.909509 15.351393 -7.759772 9.429942 5.036475 -8.059954 -2.529775 -19.876869 2.082861 3.577739 3.238540 -5.652010 5.675248 -3.572244 5.661248 6.485239 2.494651 21.920480 4.337543 18.220949 17.028552 13.751722 -15.232114 4.288326 3.498063 1.592657 3.677258 17.294866 -13.898537 -13.258497 0.781272 -2.588146 -16.548630 -0.996654 -2.998258 24.781056 -13.078585 -7.532859 -3.111336 3.876392 20.200084 -7.196837 5.767363 -19.388070 0.032731 0.241710 19.530778 4.535269 4.021190 -4.541805 3.441495 -3.527105 3.752092 5.716718 -17.708147 3.329851 -23.097479 -10.054860 -13.773354 6.436993 7.684704 -19.136713 4.553903 -8.490612 15.357013 -26.592558 -3.103714 3.142801 5.782876 21.031487 2.658394 -3.838153 -1.582945 4.754858 8.476004 8.567557 -9.611854 6.774443 -4.754348 1.547328 1.971699 7.403826 4.788570 -20.850170 -8.204735 4.459668 1.755910 4.366212 10.077527 13.633858 -3.575766 8.884190 -9.590268 13.848492 -19.142732 -7.336470 -7.831310 -12.804706 -11.004895 22.752897 13.457595 18.652859 -2.252807 -5.754393 -0.601786 -23.136862 -28.122690 -0.606407 0.922945 -2.565492 10.715978 -3.509143 8.991774 -16.012450 7.057743 11.439497 -8.056591 -10.882870 0.034545 0.015313 2.739214 -5.330823 -5.926130 -1.496894 -3.977077 2.911761 22.546726 -2.784452 -34.626934 -28.286096 -9.123934 15.893132 -11.199753 0.552630 -8.123956 -7.167434 -10.212726 -2.825983 -13.960314 0.160688 1.441604 -11.608567 -21.676844 8.022976 -3.804023 -2.687274 7.863821 -16.692583 4.192252 10.301624 6.570655 2.845084 4.172758 -1.413673 -14.727513 -10.289297 5.508229 -12.614262 16.691125 8.330831 -2.986302 -11.223598 -10.426601 -13.831364 8.708529 -13.800493 12.045397 1.646698 -6.594562 4.415625 -15.805008 4.803688 -8.624095 6.144318 3.342854 -32.380608 20.691742 14.753066 -12.087549 -0.614978 -3.239194 9.205757 -0.592698 9.949782 -13.123193 -10.737412 2.874135 2.178302 0.519988 -2.876571 3.975957 -3.603367 -7.626411 -17.165371 -8.042527 14.752380 6.450098 -2.405728 -2.295248 10.912999 -6.832176 5.077804 17.379033 10.714884 3.993958 -13.684017 -41.145485 5.878830 2.238712 -4.792406 3.961130 -12.513692 -4.149892 7.524314 -12.067407 14.954077 -4.788060 -6.619310 16.250001 -20.189010 -15.395346 -14.654658 -8.521032 3.152707 0.599883 4.378292 -8.202787 2.232182 -3.564484 3.367416 -9.435932 -9.142049 8.607097 10.680158 17.483523 1.167766 3.357554 17.286331 6.714477 -3.854104 -4.667082 0.498364 -10.640723 4.077592 -25.057359 -2.857332 6.053008 7.850152 -12.542348 0.989843 -2.691996 4.185845 -0.280397 -79.195598 -36.228696 -31.425020 124.784807 16.440408 -39.110499 25.939238 36.486572 -1.983634 -158.364255 -55.906577 57.573380 12.680528 -19.518043 14.551707 39.895321 37.633255 32.434914 -178.289361 35.572154 25.396589 -4.604790 -56.611412 -32.545815 -0.063655 -47.026620 28.950397 72.837564 0.653600 105.531795 -58.294516 45.135985 85.703223 3.648053 74.142338 83.441929 19.138983 -8.417825 -23.175589 -2.079787 165.721181 59.838207 -34.143686 37.218475 31.141781 131.877877 25.302835 106.325745 -14.325282 -39.199562 44.626362 -14.960236 -49.815203 -17.418508 -129.980787 30.008945 94.619359 66.109605 -78.992630 71.846190 -58.291665 29.652004 56.161757 29.033590 157.632924 45.901688 86.412212 96.909418 140.197663 -80.245132 17.209896 19.046972 70.096126 -8.518550 58.459483 -50.360272 -64.675457 -151.589443 11.427603 -146.313312 -2.384733 1.140755 132.562684 -99.174645 10.176083 50.439455 28.542149 112.947216 -100.905313 0.623559 -126.194770 -5.048681 -12.664854 186.522663 9.865277 26.362925 -1.660446 68.630867 12.646384 51.807352 8.530527 -111.856848 -42.429855 -209.251326 -92.170036 -55.458943 -24.346187 -6.757871 -128.424566 -16.015370 73.243956 95.351347 -168.348124 -8.411906 32.161358 21.259465 72.874012 -15.301013 -49.643129 16.566544 -22.499242 37.125472 54.072152 -58.608947 25.600894 -54.144894 24.726084 37.446893 52.546558 26.447921 -136.046234 -7.818542 43.639383 -19.811529 -9.969363 34.357121 19.666770 -72.376636 57.128976 -100.446616 110.029784 -140.975639 -11.049744 -65.014756 -99.043461 -29.691909 120.182638 78.758048 63.893770 15.448911 -53.701366 2.381540 -150.546101 -224.168299 30.859714 6.682276 14.551048 3.355333 -24.150610 7.444986 -71.026422 -7.678685 74.303791 -83.729104 -62.234128 -32.715101 84.330740 16.477058 -44.055877 -52.178505 10.107624 72.691393 29.795773 91.573227 -59.062435 -147.454841 -149.599534 -68.570892 97.821737 -39.312674 -2.926200 -30.261704 -30.752330 -123.912724 46.264783 -88.454357 42.689862 -35.209979 -48.922941 -134.847694 33.850661 -29.727350 -3.138216 9.062292 -93.463149 33.776310 26.131695 16.308825 -2.909281 22.366915 30.094959 -107.689076 -109.162606 19.722564 -11.720177 130.825320 54.303359 17.739056 -42.717301 -39.736039 -100.534575 102.137853 -94.248209 54.195692 26.560622 -78.554202 91.584625 -84.587145 -44.163331 -71.881661 64.828558 18.871594 -82.133143 176.669740 118.668755 -112.359977 -32.227129 -61.697694 58.570686 35.925451 134.208243 -88.237378 -49.385014 39.148957 15.207739 -15.872945 -32.551315 45.652892 -18.477016 21.753542 -123.057937 -60.037566 80.444327 77.765926 -8.473434 16.662590 13.427790 -28.225314 -26.714194 136.146009 45.221554 30.452878 -90.458469 -193.027597 42.042709 -22.804636 0.451737 13.095373 -72.444481 -49.452406 3.378276 -13.350752 116.659112 65.191229 -54.732752 105.799531 -142.776343 -120.000600 -82.154140 -5.587427 14.214355 -51.109490 57.407713 -65.116835 12.015893 -18.130036 52.972297 -23.273267 -52.409293 -39.187345 28.907271 70.483706 14.365546 -60.660476 128.422940 15.099439 -38.842946 -30.140500 2.229684 -25.992956 48.698802 -86.748398 -44.665165 -23.736606 63.911047 -80.858499 71.463857 -1.869205 42.422087 43.015375 -9.088737 -6.701912 -3.325465 16.892722 2.537423 3.169719 2.884626 1.226888 3.744957 -23.476045 -10.460596 16.102161 1.417521 2.153372 -0.098926 4.433461 7.353445 4.378385 -23.886959 -0.768317 3.227938 -1.018111 -0.515970 -1.693440 0.372882 -7.386899 13.652789 7.074046 2.945421 14.366679 -5.002086 8.665556 12.467294 1.486900 6.310592 10.511700 -2.321998 -2.236858 -9.631804 -7.937411 19.967907 5.325932 0.446182 9.738987 -0.910972 16.613297 6.265233 14.093146 15.411494 -5.863434 6.777919 1.524035 -7.688599 -3.842382 -17.280008 2.257679 4.952072 2.612351 -6.365474 6.137131 -1.878271 4.074322 5.003795 -0.369961 16.689087 3.210870 13.018289 12.610164 12.795657 -13.094948 1.686424 3.455765 5.459321 5.494898 11.442938 -10.737825 -10.727028 -5.900974 -2.113974 -15.283143 -1.255291 -4.164360 17.527435 -10.773607 -3.242572 -0.056473 0.334247 14.805972 -5.687672 1.540380 -16.339458 0.273299 2.140332 15.549094 3.540656 2.692769 -1.124357 3.068279 -1.764049 5.321737 5.616105 -14.955640 0.712715 -23.616900 -7.199178 -11.306151 4.318196 3.657014 -13.747344 3.449914 -3.621017 12.115303 -20.383593 -4.017659 3.755603 3.591880 10.525573 -2.851269 -1.763166 -1.517508 3.255576 6.793545 7.084074 -10.127771 3.660228 -2.911143 0.801395 1.752088 6.447715 3.570935 -12.234177 -7.596456 4.294178 4.217011 2.291915 5.945923 7.686101 -3.777464 7.062313 -8.633050 12.708178 -14.536276 -4.634773 -6.546580 -6.155359 -8.795310 20.206171 8.664680 14.939222 0.402410 -3.585019 -0.597294 -16.287948 -24.393592 2.770015 0.690833 0.024341 6.701704 -2.676414 6.421334 -12.258775 2.538446 6.422241 -7.064100 -7.914647 -0.130261 -2.067590 1.113998 -4.122670 -5.918368 0.823441 1.202156 1.978420 15.069010 -4.447922 -27.048609 -19.021150 -8.556031 13.197841 -9.166109 -0.286537 -4.688212 -5.386161 -7.647030 -0.585590 -11.520516 1.090311 -0.447989 -10.989994 -18.117119 5.848695 -4.303423 1.683208 7.421916 -13.847961 3.605581 5.864580 7.455100 1.481279 4.324622 -0.155053 -13.071160 -9.003716 1.577612 -8.052451 15.231377 5.424457 -1.556522 -10.192196 -7.818573 -10.387357 9.154539 -12.476091 9.358597 0.823735 -7.563930 5.544098 -10.354579 2.133689 -8.380395 6.275338 4.559899 -24.080888 16.652893 13.148424 -11.244258 -2.440015 -4.485305 5.740151 1.366068 11.275741 -11.862223 -9.420549 3.635397 0.888925 0.187699 -4.430830 4.211108 -0.743045 -3.732240 -15.617459 -7.900340 11.505385 6.230143 -1.567497 0.185404 9.305643 -1.859870 2.918576 15.797645 7.713208 4.335990 -12.577058 -32.830114 6.108116 8.059840 -1.015274 5.203839 -11.774707 -5.336780 4.938510 -7.200016 12.664423 -0.064665 -4.055557 13.903437 -14.622252 -12.767139 -11.246811 -6.988335 3.827697 -1.120303 6.149714 -6.735624 1.576747 -4.026080 2.659742 -6.353537 -5.381173 3.828543 8.223629 12.775044 2.968155 1.879292 14.663174 4.225488 -6.177361 -2.576162 -0.888641 -8.108516 3.691260 -17.912463 -2.516062 3.000494 6.351201 -9.869908 2.549781 -1.151280 4.487283 -0.592944 -4.034479 -2.160360 -26.470472 54.177986 -6.742737 11.777609 2.988667 -10.464156 -2.413862 -66.358714 -21.191257 25.498283 15.264072 16.021710 -0.212388 18.123001 2.982515 11.398404 -48.299817 -8.521999 20.788705 6.169600 5.821199 3.474661 -2.633863 -12.542076 32.519352 -1.642393 5.695417 37.111509 -1.110276 45.601470 33.991203 -9.677141 -2.698129 16.519914 -11.672323 6.636506 -25.298959 -7.795277 35.124545 -1.859370 9.070391 14.763614 -25.521906 33.509198 9.671069 22.124020 0.595679 -19.318783 16.882703 33.226403 -2.390960 -11.318145 -26.178607 4.702518 19.903503 25.278993 -1.306310 7.153413 -5.968121 2.668039 14.766052 8.679548 41.758100 24.928383 37.238444 48.891365 26.424762 -25.341980 14.329398 -1.891780 -23.144578 -11.012237 46.792630 -26.361905 -26.149279 10.530764 -18.371840 -41.723656 -6.265147 0.364497 55.265317 -25.007149 -17.259475 -14.151556 20.228619 43.174534 -8.425006 19.479028 -30.815339 -8.733572 -7.301671 42.490959 8.161300 5.874551 -20.580456 8.432292 -7.781824 -1.691453 11.614508 -28.239899 15.457318 -28.217998 -26.490733 -21.730728 16.786708 32.371983 -47.269273 4.129071 -35.353989 17.337596 -72.533263 -5.101015 0.416035 25.004237 59.904124 1.610580 -27.414092 -1.901325 14.695739 7.165224 14.781118 -13.084396 21.733107 -15.521717 -9.433081 1.952128 6.299506 9.751906 -49.987991 -21.201453 -7.109161 -6.665742 15.433893 28.387467 41.007060 -0.865881 16.081424 -25.479558 26.255030 -44.876870 -21.554544 -7.300573 -39.724028 -21.781895 19.842604 20.625686 29.604742 -22.088547 -30.905130 -1.112233 -50.946050 -45.121280 -6.694503 5.904312 -6.313613 34.376133 -11.349800 18.556906 -33.057032 31.479329 37.852797 -6.672384 -18.186432 5.414439 12.219135 8.381912 -9.146486 -11.870997 -8.208065 -28.650013 8.827318 58.765374 3.668702 -44.597633 -80.788115 -8.556323 30.452155 -18.337706 -0.463660 -24.962926 -15.090756 -28.956022 -8.601824 -29.759702 -9.172488 10.267889 -18.570246 -41.668490 21.220360 -2.100977 -21.003332 15.426042 -30.437825 3.347465 31.938291 13.356336 9.609308 -1.819526 -5.428898 -22.243287 -17.861687 16.806282 -33.225482 21.069344 18.464026 -2.872009 -19.987364 -19.116636 -26.719734 12.019400 -4.662314 22.831570 4.913928 1.332167 5.084261 -40.948293 9.878590 -23.694220 -0.050523 3.672321 -60.526715 39.776735 8.538875 -10.688723 7.596885 6.051582 20.033067 -7.868755 -1.910127 -20.961976 -26.115546 5.293277 7.479282 3.296930 -16.749471 0.128157 -18.358926 -20.485481 -24.162126 -7.133647 33.551890 8.488617 -8.513927 -3.951435 23.100868 -36.188839 7.633313 23.135751 37.766956 -1.228503 -14.031334 -51.077184 9.588512 -40.959458 -13.740274 -17.996803 -20.591453 -2.114473 27.725067 -16.668710 24.484596 -12.514212 -22.110456 29.389546 -54.882122 -27.967319 -26.430926 -10.778867 10.148549 5.277240 -11.615058 -14.429189 12.430979 8.213685 2.219365 -14.317713 -35.926194 26.328480 18.907208 42.664810 -17.608794 12.078074 33.120868 16.918550 -2.355608 -8.104183 7.841638 -27.386991 -4.686622 -55.660934 -0.442330 20.745778 16.451050 -25.227548 0.043274 -21.910361 -3.837787 4.723994 -4.583939 -4.318865 -0.281814 6.109798 0.894504 1.301765 1.420232 1.748638 1.105165 -10.502613 -5.304025 2.899084 0.290701 0.631632 1.595861 2.263048 3.566411 0.438030 -11.737580 -0.099429 1.841067 -0.838718 -0.345496 0.524122 0.378860 -3.754516 1.943011 2.873923 0.430542 5.834132 -2.468777 3.658741 5.075538 0.309286 2.734479 4.159263 -1.395685 -1.288479 -1.547902 -1.373803 9.144553 2.156017 -0.918207 2.814899 0.415520 6.927635 0.011204 8.931359 4.894754 -2.341079 5.884352 -4.437989 -3.335119 0.297420 -7.290428 0.837521 4.823457 2.243269 -2.816067 3.254517 -3.258343 2.286545 1.727202 -0.662683 8.091435 2.805677 6.283034 4.772974 5.417142 -4.989608 0.874677 1.492139 2.035474 1.802739 1.873822 -5.421816 -1.853344 -8.379965 0.472996 -6.884543 -0.209334 -2.282717 7.863477 -4.221740 -1.302303 1.747929 -0.522828 5.987760 -3.305200 1.451860 -6.991666 0.640748 1.860138 6.564855 -0.062136 0.961937 -0.101470 1.787634 -0.282357 2.346642 1.887951 -5.210087 -3.893488 -11.216551 -4.480908 -3.410061 1.647348 0.881812 -6.926524 1.866552 1.954991 2.086255 -8.098446 -0.976960 1.341304 2.533108 4.178274 2.790393 -3.048807 -2.291350 0.807108 4.052315 3.308600 -3.526602 2.409313 -6.079419 1.453615 1.964870 3.069041 0.432311 -5.408915 -2.089814 1.803104 0.535763 0.021673 2.521301 2.909324 -1.284775 3.516827 -3.895617 5.500321 -7.865550 -1.766237 -4.229690 -3.266782 -2.399921 11.920400 5.853591 4.937571 2.522823 -3.042121 -0.207289 -7.233081 -9.671282 -0.522771 0.071643 2.063248 1.437734 -1.072970 2.076512 -3.898056 0.828695 0.567486 -3.324008 -2.656507 -1.545854 -0.286273 0.469218 -2.341908 -3.299305 1.131084 3.260566 -2.034405 5.543792 -1.745078 -9.443505 -7.890441 -4.135448 5.252972 -3.203836 0.797278 -1.650450 -0.373189 -5.540293 1.101320 -4.286835 0.042414 -0.138153 -6.166346 -7.464946 2.419485 -1.570095 0.851798 2.442715 -5.195994 1.082426 2.409956 5.590700 1.649320 2.226034 -0.369760 -6.754793 -6.079182 -1.102001 -2.977023 7.982919 2.324968 -1.468882 -2.619087 -3.061475 -5.026661 5.195039 -5.065197 2.886510 -0.114870 -4.138823 2.345183 -3.933154 -0.200704 -4.835615 2.483580 1.440816 -10.106747 8.209038 5.544389 -5.445477 -2.140915 -4.974446 3.322984 0.609243 5.807729 -3.466380 -2.005395 1.045987 0.739770 -0.190797 -2.254699 2.755776 -0.536065 -1.285777 -6.969371 -3.840195 5.307433 3.290293 -0.728352 0.779714 3.868633 1.376123 0.935500 6.889387 2.369788 -0.256143 -4.259342 -15.150316 2.197777 6.978151 -0.805926 2.233318 -6.387640 -3.025030 0.401134 -1.470141 5.598914 3.957288 0.375623 5.779045 -4.904007 -5.216195 -4.609532 -1.604479 0.524664 -1.813503 1.846549 -2.804535 0.348818 -0.583683 1.850862 -0.643397 -3.388832 -2.674363 1.939416 5.428225 1.356045 -0.248219 5.977691 1.925910 -2.488483 -1.636411 0.266484 -2.236925 3.273554 -4.666799 -1.426091 0.020608 2.020226 -4.113873 1.571586 0.551779 2.104280 0.414668 -85.200509 -41.565664 -41.254172 146.375325 16.077565 -37.043368 27.820779 33.793440 -1.258725 -186.335160 -65.390304 75.917986 16.550908 -17.712546 13.171205 46.073306 41.863211 38.979086 -202.665993 34.239975 30.414803 -5.036715 -57.969188 -35.794754 -0.544671 -52.989600 45.823802 77.161647 3.112043 120.687994 -62.091375 59.025323 98.568649 3.911087 78.825816 92.383425 12.755492 -7.299973 -32.921690 -9.125837 184.577663 64.517703 -31.730332 45.367789 27.243708 147.748498 31.044256 119.103392 -2.026628 -45.374423 50.710565 -0.127378 -54.391259 -21.535078 -146.216868 31.898519 101.136531 69.865650 -83.118214 77.042080 -60.442725 33.790757 62.324861 31.368426 177.944166 51.326222 102.545680 113.997939 152.722485 -91.705280 21.736611 18.574136 70.878085 -9.730921 76.309572 -60.566064 -79.601020 -150.074857 5.521988 -164.886147 -1.937232 1.366489 155.048148 -110.689069 4.374955 46.652415 36.919706 130.947825 -106.689757 3.950195 -141.595373 -5.717160 -16.917468 208.758362 15.867660 30.875789 -7.967122 72.372112 10.699081 54.191134 12.953636 -126.431256 -35.333083 -234.191202 -101.443590 -67.155088 -18.924061 0.041056 -145.448894 -13.687389 66.943715 108.695639 -194.919334 -11.683210 34.871671 26.133776 89.307932 -21.062351 -56.059464 18.999797 -21.335703 41.990691 60.333439 -66.369149 29.486669 -56.512485 23.666414 37.823120 58.440375 31.301116 -155.551339 -14.698212 44.627275 -16.808923 -5.972469 43.552528 32.302220 -74.677644 63.701289 -110.532034 122.403865 -158.513513 -14.869300 -70.856782 -111.151271 -38.812290 131.896657 88.340206 78.068618 8.891241 -58.806437 1.721338 -172.276950 -251.244300 33.715271 8.408228 12.119933 11.718520 -27.614280 13.304515 -85.831795 0.112309 90.017673 -90.584332 -70.595268 -32.189319 91.613311 18.734445 -49.412212 -56.727155 7.381892 68.568499 34.454611 111.011251 -61.851320 -172.866707 -176.470273 -74.783387 111.494533 -48.492885 -4.084331 -38.222878 -37.074349 -133.687534 44.473400 -101.077217 43.819424 -34.105224 -56.721067 -152.954291 39.018705 -32.158909 -6.204867 14.347934 -108.361779 37.218616 36.171723 20.445302 -1.759475 25.019759 31.948037 -120.210096 -118.100949 26.003653 -22.837464 140.544163 63.929324 17.576568 -53.951026 -47.016235 -113.273968 107.499222 -104.259960 64.608909 27.670641 -85.692104 96.826718 -99.219572 -41.704707 -78.485431 67.950498 20.639142 -107.461435 197.425598 128.513725 -121.387848 -31.213948 -62.381290 66.123443 34.321538 141.461153 -101.694418 -59.980724 41.760370 13.900524 -15.264186 -35.122048 48.595962 -22.600278 16.694733 -137.491921 -66.338068 93.591166 83.013441 -10.466002 17.080628 20.921628 -38.220752 -24.363621 151.338811 56.535234 34.169967 -102.414248 -224.785845 46.734503 -31.385029 -2.886669 12.754406 -80.807759 -54.120519 10.843371 -20.309047 128.825317 59.991519 -64.859224 118.908959 -162.526835 -133.234940 -94.273270 -11.445822 19.057297 -52.173757 59.114959 -71.790653 14.499171 -19.842619 56.592007 -29.351106 -62.544558 -30.721147 37.928053 86.221280 13.889617 -60.305743 143.409048 20.368678 -43.619217 -33.233480 0.917759 -35.826711 51.597620 -110.630508 -46.594072 -18.902774 71.699884 -91.793585 74.335469 -6.099919 46.050392 44.569387 -9.608620 -23.889750 -18.351270 34.166360 3.076915 3.430871 4.014284 3.615546 4.082235 -65.116715 -10.265302 36.814903 -0.198124 1.863742 -2.319293 16.033216 8.540754 6.189871 -37.949610 -1.500667 2.875282 0.651196 15.411118 -4.190635 0.921475 -5.742068 23.776922 -5.484859 3.825553 14.175115 -5.296474 38.195957 26.664309 3.394272 5.894160 11.088553 -1.974812 -3.587910 -9.717108 -11.472147 28.622112 26.011655 -1.129832 11.854378 -14.259911 16.618598 23.320174 39.152424 -28.702478 -5.292786 2.481109 -19.147427 -10.094699 -5.451148 -26.118192 1.245170 8.892465 37.748262 -5.743561 6.931045 -14.077446 3.438692 4.725499 -3.600240 42.316812 1.462860 39.278782 44.209444 12.713288 -14.001028 0.877823 2.883051 -6.741893 -2.340470 43.075425 -21.545646 -10.673623 -30.024251 -2.301315 -60.171304 -1.608121 -4.785560 74.571821 -10.051964 -0.589972 -0.134468 16.783865 32.117422 -4.641075 18.943267 -25.700736 0.779614 12.217735 73.368969 3.532169 1.588793 -16.958356 1.944146 -1.023344 5.899586 15.554648 -14.612130 2.406867 -40.440081 -3.082069 -11.754174 3.291465 16.611328 -29.170939 4.088469 2.668698 37.261275 -71.052746 -6.683409 4.367246 1.851573 79.955784 -6.593598 -17.063023 18.156274 1.859665 6.956167 7.654591 -27.561325 1.984513 -6.981149 7.192230 1.120867 6.512556 4.461183 -82.252228 -9.503971 5.069676 0.555123 2.248240 18.614793 37.868250 -1.736586 6.245512 -29.303067 12.830474 -30.615951 16.376243 -4.103536 -34.758678 -9.722520 81.819414 25.920885 31.868874 1.280184 -8.830291 -0.578921 -31.556011 -70.264701 5.953176 0.973870 0.844128 20.150235 -2.247311 5.716790 -12.365692 32.246567 21.842251 -5.996901 -7.638399 0.359547 1.709415 0.589243 -3.067905 -6.147491 2.963704 -5.499843 2.267576 45.499129 -6.562084 -71.398250 -48.896313 -8.829438 13.338453 -9.490735 -2.127767 -3.553594 -5.505058 -10.974391 -0.420001 -25.304486 35.091739 -0.430231 -21.118109 -32.705660 6.355259 -5.498978 -6.092383 9.221289 -13.098347 3.602092 13.516576 19.242653 -0.105312 3.842433 20.688472 -22.645846 -16.559753 -0.482109 -25.104730 23.546907 13.158016 -0.789022 -14.290841 -7.053747 -27.171465 9.674642 -6.881886 9.709749 -1.416431 -16.779215 5.977449 -26.327850 20.032746 -22.065715 7.096011 6.337786 -55.898850 25.723742 14.275406 -11.326464 -3.376996 -5.046779 3.581836 2.241828 11.346945 -13.473947 -11.657856 4.681535 -1.117492 0.271478 -5.459131 3.636609 -12.545174 -3.671438 -25.383181 -17.525893 10.828155 5.128154 -1.397527 0.736071 10.879022 0.466664 -25.769268 26.315698 20.343931 5.754149 -27.720847 -77.343105 7.083419 -8.187071 -16.617756 7.208186 -20.789309 -6.258791 5.770057 -20.245056 11.835819 6.261737 -24.397606 13.414788 -54.964067 -11.584381 -10.700429 -7.508164 5.786116 -0.638463 -5.878762 -6.625871 0.939129 -5.635203 1.799863 -6.151960 -21.036368 18.111522 9.083739 26.379757 5.899171 -17.831994 14.544740 2.470510 -7.582376 -0.891883 11.093790 -7.546136 11.872635 -67.719268 -0.753232 3.324120 6.604891 -9.293013 3.092031 0.562198 4.820621 -1.834676 -2.145049 -2.449079 -2.155713 6.752592 -0.193632 1.852938 0.875406 -1.372634 -0.481647 -10.339122 -4.151742 2.644714 1.626742 2.523865 0.409886 3.285767 1.538628 1.004053 -8.850162 -1.266203 2.576227 -0.416617 1.110298 1.027255 -0.026644 -3.251110 3.878724 1.460639 0.682565 5.772611 -1.648663 5.558880 5.564414 -0.493418 1.020665 3.534744 -0.797956 0.150905 -3.316621 -0.797237 7.119240 -0.270697 0.828961 1.352019 -2.498118 6.099591 1.832346 6.448340 2.239135 -3.059774 5.018938 -0.767570 -1.781882 -0.633590 -5.645961 0.580641 3.389055 3.430140 -1.750716 2.080153 -0.847582 1.869268 1.947445 0.831035 7.523509 2.385893 6.294456 5.408006 3.986543 -4.821605 1.568163 0.600481 -1.573215 -1.094798 4.690112 -5.193398 -2.244187 -1.671990 -0.313113 -6.313363 -0.846772 -0.016789 6.616355 -4.008022 -3.081347 0.023026 0.603386 6.677952 -1.757597 2.648776 -6.032378 -0.226355 0.861330 7.118709 1.005306 0.343234 -1.480684 1.962496 -0.300741 1.150227 1.829822 -4.810636 -1.114605 -7.013987 -4.425425 -3.557944 2.419503 3.342089 -7.271120 0.328925 -2.300842 2.278970 -9.590454 -0.277442 1.306041 3.977419 6.711756 0.340672 -3.054512 -0.959095 1.510839 2.656861 3.133154 -2.403967 3.196152 -4.043315 1.133398 1.090239 1.966649 0.632204 -6.898839 -2.864029 0.604632 -0.670670 1.215024 3.459319 5.011797 0.185103 3.125008 -3.933487 4.434160 -7.538098 -1.614326 -2.495493 -5.523914 -3.027474 6.246229 4.075449 4.342352 -0.902827 -4.436346 0.370356 -7.684465 -9.547404 -1.148479 1.097415 0.552929 3.885293 -1.851488 2.988463 -4.630848 2.957175 3.867198 -2.152571 -3.347002 -0.575716 0.010793 1.256449 -2.318099 -1.664573 0.078327 -1.239479 -0.580355 7.971871 -0.516712 -7.447237 -10.319497 -3.273945 5.052052 -3.133785 0.424887 -2.876112 -1.566370 -6.793077 0.486710 -4.574646 -0.622080 1.053100 -4.169920 -6.989085 2.578872 -1.037584 -1.310892 2.689700 -5.403451 0.604172 3.258474 1.775069 2.009504 0.631957 0.026355 -4.216737 -4.152435 1.319960 -4.553934 4.455166 2.194612 -0.655150 -2.573733 -3.358693 -4.184719 2.792055 -2.225852 3.320943 0.461852 -1.393095 1.430052 -5.359195 1.583336 -2.631644 1.315940 1.372470 -9.148142 7.244242 3.585348 -3.259467 -0.426327 -1.151099 3.050752 -0.332279 2.626907 -3.335348 -2.818506 0.748964 0.884112 0.283019 -1.649725 1.502526 -1.767686 -2.388694 -5.214062 -2.684907 4.343828 2.570535 -0.803226 0.614274 3.992924 -1.999349 0.335714 5.061717 2.876235 -0.115214 -2.420846 -11.735611 2.045196 -0.783358 -1.788905 0.538255 -4.142628 -0.789034 2.679555 -2.071347 4.847951 0.933606 -1.626025 5.357596 -6.601596 -4.939718 -4.635586 -2.239589 0.762620 -0.060293 -0.833355 -2.184672 1.339763 0.363074 0.729076 -1.364908 -4.367589 1.024002 2.361372 6.417773 -1.203115 1.348219 5.775431 1.627453 -0.636254 -1.727670 0.805076 -2.267265 2.332798 -6.664352 -1.489936 1.901189 2.434724 -4.013753 0.072744 -2.321897 0.178370 0.806603 -52.090255 -21.725281 -12.833638 76.016552 16.764879 -12.895263 14.437689 22.125465 -2.376901 -100.611779 -42.206092 41.048051 3.163227 -9.149896 17.655070 22.703170 34.479827 20.762801 -116.849698 14.897523 11.226378 -7.281364 -25.000743 -20.925431 2.356447 -26.252341 28.215644 45.492875 5.783384 67.888712 -38.400064 31.234094 50.075548 9.324721 49.868444 46.357098 4.630824 -10.445873 -23.090235 -13.958184 110.875954 27.824517 -10.534010 35.144925 21.771137 81.028155 15.207353 65.256191 25.061630 -18.603752 38.872021 -9.426221 -29.564984 -6.651010 -89.428278 13.230695 54.015694 31.621096 -48.044905 42.853007 -25.895213 23.570372 29.214296 4.321259 96.198228 22.614157 55.613886 58.286016 79.335898 -54.307723 9.332372 9.361249 46.142911 6.149318 27.901915 -43.854445 -31.038445 -98.012916 1.775432 -93.334464 4.720633 -11.151447 85.108364 -55.345814 3.345687 29.895917 5.541295 67.518159 -53.712890 1.363616 -78.652550 -2.463705 -1.485033 98.142486 6.792919 14.626300 4.158776 30.046826 1.310894 34.821951 11.586585 -70.070419 -21.561852 -133.936264 -59.682966 -31.180335 -3.916908 -8.179631 -69.546770 1.969293 37.726036 47.658476 -97.510020 -16.889208 17.879096 14.902984 23.236396 -10.378049 -31.376001 -1.910552 -8.766470 38.945150 35.167898 -40.329925 16.970490 -39.648765 5.499502 21.215172 42.192162 13.603459 -62.950867 -17.245613 25.594552 0.079630 -7.881479 13.912270 13.789025 -33.305173 36.455067 -53.315269 69.206976 -82.066854 -12.298579 -45.339494 -42.704987 -24.427184 84.607818 43.317504 49.354240 22.534567 -29.679195 5.571362 -83.737705 -125.702355 22.725615 1.579027 8.554515 9.850035 -12.691604 13.808855 -46.060526 -11.021220 40.396088 -50.782391 -44.248806 -24.685726 27.211994 7.329248 -28.427731 -38.183914 15.373270 45.110981 10.912548 55.934274 -35.055749 -94.291742 -83.658413 -44.777731 63.758953 -32.723192 0.237169 -11.382846 -13.391793 -65.623540 21.122872 -59.133578 19.611064 -17.826367 -41.586686 -83.018783 23.060833 -20.016613 4.791470 15.927735 -61.443705 24.110968 16.906921 27.782745 -3.842293 21.131692 14.989486 -71.708054 -71.933128 0.462241 -10.851634 74.605564 28.129828 8.151305 -38.354101 -28.475629 -52.346843 58.931202 -61.755149 37.158421 13.197082 -48.908057 46.753178 -49.622828 -19.564527 -40.186009 37.377337 16.959981 -80.626805 99.460508 69.521731 -72.031172 -23.083129 -49.192323 37.988763 13.999210 84.224615 -51.835725 -27.770358 22.257923 14.975142 -7.307467 -28.219560 30.422127 -1.235579 2.158260 -82.481381 -44.544979 55.266073 47.993611 -2.401599 11.273571 23.869900 -2.861128 -11.255040 92.075542 25.329583 20.297759 -51.514143 -131.872223 22.622512 24.488793 4.267130 21.594557 -50.667689 -33.998625 -0.669832 -10.728315 69.458967 34.490456 -19.862843 67.824069 -70.734798 -70.917915 -55.035331 -6.892281 12.354149 -33.191513 31.760641 -42.323732 2.324478 -16.940091 31.077713 -13.638848 -23.159248 -24.730745 17.121306 48.564350 15.096393 -23.331212 78.182748 17.485982 -32.779216 -13.955925 -1.901519 -19.936099 38.064575 -59.784615 -26.205944 -9.337456 33.709011 -51.252941 33.211513 0.334008 30.727324 15.953593 -25.396550 -15.941644 -6.883009 41.497316 9.164573 -8.502479 7.284020 8.477639 0.853580 -56.744622 -23.536323 17.339453 3.522923 -5.426608 8.949848 12.616722 17.479347 10.744622 -57.598123 9.878817 8.601401 -2.792887 -15.259265 -7.154238 -0.131016 -19.511327 11.523232 22.147436 1.785822 35.983609 -20.396054 17.576005 28.934906 1.039152 25.933933 28.828514 4.130738 -5.117505 -8.778849 -2.069535 60.914369 13.979869 -4.289732 15.992072 12.120391 43.770174 4.732562 39.747346 10.097032 -13.671163 23.664553 -7.058776 -13.872912 -3.286220 -48.168680 11.458588 30.600593 17.130244 -28.375087 22.506363 -16.612371 11.528248 16.183670 5.939013 52.525210 14.376714 28.350078 32.393550 44.704159 -27.414574 3.898748 8.560915 22.926209 2.187478 20.182548 -19.991457 -17.590731 -49.882980 0.607177 -41.863718 3.406741 -4.089560 45.110645 -31.333658 0.520837 18.824764 5.353914 37.993039 -27.095401 -0.053190 -43.089315 0.249936 -0.524874 52.700739 3.295318 7.771267 -0.975337 18.337936 0.067199 19.100199 4.120355 -38.099916 -16.649663 -74.766573 -35.670793 -20.636164 -1.537773 -3.461608 -44.059937 -1.036293 21.128816 25.964945 -53.736378 -3.203772 10.208189 9.829145 17.238288 -6.762611 -18.293127 -2.772229 -3.764263 17.359263 16.347183 -17.384080 8.493438 -26.415551 8.193975 11.374690 20.298804 3.204982 -33.869357 -7.045269 10.572035 0.103486 -4.953817 8.980455 10.437869 -22.073451 20.564416 -28.064393 36.298167 -46.094825 -5.550489 -28.108351 -28.090841 -11.854489 49.976353 22.500455 28.290310 8.420019 -21.436119 0.577713 -49.569513 -70.633530 8.246972 -1.529922 6.573155 5.683128 -7.704108 5.764859 -22.265896 -3.384374 20.686632 -28.196632 -19.944860 -11.269833 15.246562 2.623274 -15.519677 -21.753609 5.233948 24.576695 3.662019 30.020580 -18.121789 -46.339914 -47.954300 -25.520227 32.971850 -15.831891 3.639691 -8.328915 -8.819052 -39.029983 13.633891 -30.689477 9.309165 -12.593067 -21.533285 -45.358782 9.743100 -10.971736 0.511631 6.312125 -34.513375 12.987516 9.210562 11.518317 1.550123 9.202791 5.344633 -40.276435 -38.448331 1.524952 -6.414980 40.963271 18.647278 3.601709 -14.988047 -16.718932 -31.056954 30.045149 -34.234441 17.611743 11.592534 -29.472299 26.089858 -28.716195 -12.112719 -24.530313 19.321377 7.270748 -38.398262 55.751119 36.226806 -38.747641 -12.099443 -24.623931 20.507321 8.180681 45.349253 -25.648438 -10.934901 12.411660 5.832270 -4.447637 -14.383761 16.972383 -3.943167 5.994280 -44.193495 -23.675978 28.608723 27.809454 -2.786418 4.817414 10.366018 -2.757167 -5.041225 47.331635 16.084483 10.147746 -29.438466 -70.234656 14.867630 4.241030 0.421327 9.462921 -27.053477 -17.177802 0.648262 -2.709976 38.911813 20.388930 -7.237151 37.096782 -41.642019 -40.208581 -26.041980 -5.353962 5.408683 -18.075803 16.852396 -24.210634 2.017100 -9.584783 17.697672 -7.736882 -14.650569 -15.595378 10.763288 25.596364 8.535152 -12.895860 42.023368 8.953104 -16.518730 -8.255859 0.792811 -8.090632 18.256664 -29.795359 -16.144492 -7.211805 17.572029 -26.713891 20.841820 -3.673453 16.277010 11.365986 -21.569018 -5.579850 -11.867244 25.878069 -1.256972 -7.176998 7.087523 10.496736 1.419821 -35.305600 -14.364363 20.059373 5.547698 -5.693435 0.605989 12.394712 7.594403 8.612360 -42.304937 7.907459 7.351269 -1.244481 -13.112693 -6.451432 -1.773039 -13.430332 6.765353 13.148234 0.042633 26.108486 -8.878758 11.427657 21.234033 -1.983351 13.914858 22.885445 -2.453224 -2.446883 -3.521127 -1.853375 34.214237 17.575401 -5.984808 7.746321 3.384643 30.323541 4.722319 25.605293 -3.060599 -10.689789 11.223298 1.088858 -15.848706 -3.527190 -26.582341 2.531699 16.767258 11.497544 -14.729376 17.042093 -16.201067 6.028734 13.300827 7.956446 33.547938 10.486768 19.356594 22.523877 29.938209 -18.096069 6.269687 4.973189 9.828617 -2.566955 18.583753 -12.014753 -18.711954 -21.836258 2.778589 -33.884457 -3.118697 0.086275 38.628387 -23.734354 0.721577 7.834656 10.806719 27.224431 -21.739137 -0.487227 -25.809475 -1.463600 -4.661546 41.227176 1.988046 9.076849 -3.275256 13.220026 0.598749 8.071525 0.813088 -27.687727 -9.943029 -41.371675 -16.116330 -17.670313 -4.021317 3.471859 -29.408887 -2.790660 11.910970 24.194728 -40.501392 1.046224 9.026210 3.529257 23.816661 6.578350 -12.109694 4.584795 -3.375469 9.827269 13.927681 -14.737960 4.845422 -7.987832 6.284877 8.271647 8.069721 6.387088 -37.899152 -2.401590 13.121939 -6.442770 0.491706 13.347549 9.083849 -15.608813 12.167678 -23.448428 24.530476 -33.011134 -4.856667 -13.707094 -23.170735 -10.203733 26.604140 24.252464 16.552133 -0.821713 -8.030975 0.943115 -35.384869 -45.852471 4.472437 -1.584473 2.361593 0.288343 -4.163020 1.617947 -17.138214 4.975649 11.657728 -15.862965 -10.801690 -2.960624 24.409856 5.734020 -10.329874 -9.250344 -2.660548 7.153569 10.520070 23.308351 -11.312294 -40.257400 -36.641950 -13.734643 24.147207 -9.876704 -1.553929 -10.063438 -10.220947 -20.213718 4.910529 -18.992281 8.488550 -5.954259 -8.122261 -30.975127 9.173232 -5.157267 -3.906029 1.562163 -20.180403 4.857873 12.980370 3.289070 0.311994 5.096041 4.354681 -22.266424 -18.765222 7.729049 -7.532297 31.435558 18.198005 1.788510 -10.774213 -7.224529 -24.315182 20.499855 -20.970514 13.981048 3.100036 -17.107980 21.086792 -19.429444 -6.128262 -18.215603 14.330228 2.093066 -27.937467 37.978495 28.446229 -22.841032 -3.426398 -9.213780 11.802471 8.831356 23.555751 -17.780937 -14.467496 8.048822 -0.533573 -2.123584 -3.218044 8.348479 -7.632124 2.893139 -24.314739 -8.280258 22.546610 15.311110 -2.795265 1.319650 2.645377 -8.732041 1.407272 25.852931 11.748663 4.226211 -23.660108 -50.653269 11.423804 -6.360097 -3.246281 1.736185 -12.697174 -10.484564 4.172455 -8.608025 24.949644 8.945663 -14.842313 22.715793 -33.447826 -29.092152 -22.589621 -0.897530 4.401057 -6.770656 10.903419 -12.519393 5.626465 -3.697472 11.859519 -4.942225 -14.804084 -3.659630 11.120259 20.053249 5.748181 -13.229407 29.047006 3.050621 -6.082686 -8.510472 -0.494185 -9.117627 8.222317 -22.121998 -8.056210 -2.399103 17.023909 -18.922585 15.143858 1.324488 9.974399 9.700105 -20.809934 -7.618473 -6.726401 29.379919 8.148575 -3.128139 1.823054 6.521393 3.161318 -35.067058 -18.634568 18.937766 1.749166 0.861218 7.110429 9.478823 12.584777 6.018929 -35.136323 5.485003 -0.443739 -2.679905 -11.502106 -6.139963 1.507641 -5.945517 9.666970 11.880648 2.709776 20.085563 -14.884711 13.990375 16.479972 1.652669 15.693001 9.443440 1.864774 -6.120270 -12.241982 -11.352971 39.119272 6.731984 2.983364 18.610016 4.911884 25.975826 0.616084 34.749654 14.421408 -6.494817 18.331139 -9.160970 -10.621214 1.911012 -33.384633 13.023727 15.809581 3.550755 -15.309864 12.847201 -4.488760 10.190953 10.896691 -5.206137 35.208043 12.405724 21.255978 21.153567 27.939066 -17.294129 3.344841 4.881577 20.906901 7.015920 10.448469 -20.621503 -6.790636 -23.101653 1.424323 -25.323078 9.197890 -10.820430 35.680738 -20.669003 -1.239253 8.493063 1.138900 24.443211 -19.123997 6.113244 -26.800318 1.835104 -1.434456 29.014425 -0.070940 4.655397 -1.953429 7.726784 -3.123097 11.453456 1.508555 -18.734769 -7.268263 -45.082401 -24.370110 -5.106277 -0.241758 -4.168519 -26.535901 4.926860 4.645122 16.934027 -32.134008 -10.675930 4.465851 3.141344 10.661220 8.363994 -10.504352 -7.878657 0.361968 16.638394 7.141753 -11.794826 9.624502 -19.372402 -2.119037 7.172800 18.871093 5.016879 -20.708390 -6.975139 2.958935 3.214367 -2.032753 3.332016 6.857293 -12.857194 15.028465 -11.893864 19.553767 -30.113601 -12.943635 -19.532029 -16.061929 -6.401411 39.017724 13.859135 27.273726 13.194801 -8.536558 -4.514270 -32.173486 -39.900348 5.357614 0.338895 2.637901 6.491837 -2.500170 5.123851 -14.124741 -6.196863 16.546261 -21.595519 -19.591790 -11.644930 9.525004 -1.528817 -9.487289 -19.731860 8.082401 16.492179 -4.237226 17.166697 -7.373849 -36.634540 -27.947901 -14.644791 19.598922 -10.328615 6.371542 -3.007820 -1.501319 -21.098536 3.157221 -22.220201 4.191403 -2.646915 -20.054484 -28.711394 6.961343 -5.305554 0.406706 4.937851 -22.741971 12.994668 9.497592 19.628303 -2.171477 11.288448 3.103150 -29.768119 -28.836857 -4.790337 -4.532079 28.164742 12.733141 2.102241 -12.378341 -12.670168 -19.866649 19.710597 -30.268144 11.180379 5.627384 -12.161802 10.155019 -22.961867 -5.651730 -18.661683 10.903266 3.931405 -39.200588 30.751914 20.864684 -26.517613 -8.954549 -25.087314 17.741137 2.173888 35.246776 -16.914317 -5.411276 7.042296 8.945374 -4.939305 -14.589512 12.393504 0.769410 -3.831814 -28.324647 -17.182243 17.556426 15.605078 -1.246252 0.638081 11.164031 2.317697 0.497731 31.658402 10.397157 3.067252 -19.141966 -54.023336 5.325798 17.327817 -1.820487 10.774285 -23.393328 -11.620799 -0.697364 -7.613002 24.167648 5.469641 5.857090 22.918172 -24.955916 -22.358835 -12.823811 -1.580146 1.699391 -10.752636 12.040971 -17.062295 -2.445740 -5.663350 9.758238 -10.449229 -8.656184 -14.023829 4.692290 18.425459 3.086563 -1.920178 26.308010 11.044747 -10.589190 -2.690728 -1.654674 -6.493951 8.466346 -25.010471 -8.089286 -2.869732 5.225132 -18.441411 11.694476 1.205206 9.226866 2.435488 -5.146217 -3.250121 -2.159455 10.056975 1.196613 2.239109 1.375831 0.500202 0.875504 -15.162481 -7.328351 6.528017 1.238997 1.246810 1.543954 3.416561 4.138767 2.081080 -14.343014 -0.558886 2.980045 -0.744885 -0.397694 0.133317 0.263734 -4.949910 5.533500 3.422913 1.261473 8.679892 -3.161172 6.353642 7.793452 0.674159 3.497344 5.586106 -2.364389 -1.256408 -4.039080 -3.390978 12.720106 2.420544 0.377894 4.602669 -0.430208 9.742007 1.401192 9.365100 5.805803 -3.837130 5.934360 -1.069507 -3.526706 -0.409738 -10.256541 1.653688 4.366803 2.295828 -3.825612 3.670443 -2.986779 3.065139 2.857664 -0.601185 11.308741 3.372892 8.934361 7.620690 7.400517 -7.130238 1.702675 1.624673 1.601046 1.477196 5.295971 -5.375464 -4.225364 -4.954392 -0.933833 -9.385436 -0.345001 -2.055739 12.070003 -6.316430 -2.394869 0.968152 0.874909 9.467669 -3.920870 1.810180 -9.979440 0.401574 0.607116 8.916013 1.659661 1.367746 -1.519013 2.256918 -1.078359 2.550758 2.461453 -7.847132 -2.093846 -14.115967 -6.257070 -5.723736 3.257795 2.235669 -9.845648 2.279149 0.018600 6.112504 -12.507914 -1.612919 1.911716 3.405471 6.490509 1.130004 -3.787935 -1.878006 1.516809 4.681759 4.011824 -4.597863 3.381316 -5.659018 0.961033 1.540617 4.078939 1.442347 -8.138112 -4.022058 1.993053 0.363214 0.712678 4.233699 5.415105 -1.650449 4.846109 -4.982631 7.506693 -10.189362 -2.505801 -4.915294 -5.678797 -4.549396 12.987689 7.306473 7.819832 1.060577 -3.944021 -0.508014 -10.975360 -13.612855 -0.118601 0.408344 1.203179 3.535825 -1.672437 3.778644 -6.986646 2.352907 3.951042 -4.448823 -4.463026 -0.927440 1.200354 0.477834 -3.233612 -4.049722 0.263463 1.281718 -1.218908 9.079343 -1.887321 -12.874222 -12.660055 -5.004865 7.741612 -5.219912 0.851482 -3.478471 -1.718122 -6.703973 0.220730 -6.638494 0.054655 0.139017 -7.038636 -10.800365 3.331173 -2.046038 -0.776088 3.582642 -8.047658 2.029920 5.106396 4.212015 1.882720 2.415684 -0.542080 -7.894652 -6.816749 0.466236 -5.191177 8.798404 4.568662 -1.610476 -5.503228 -4.836478 -6.887399 5.905902 -6.250792 4.934313 0.322242 -4.627395 2.727234 -6.854706 0.309655 -5.454969 2.725683 1.691901 -15.047276 10.145910 6.880473 -6.830436 -1.561374 -4.554140 4.850037 0.296795 6.719744 -5.815825 -3.657378 1.113998 0.589828 0.116735 -2.511428 3.036587 -1.494106 -2.441482 -9.503495 -4.668309 7.845736 4.171935 -1.175916 0.772348 5.668193 -0.426484 3.025098 9.144506 4.689797 0.578724 -6.202635 -19.270758 2.894009 4.053232 -1.168015 1.908458 -6.559714 -3.327806 1.625759 -3.559185 7.673476 1.183375 -1.504116 8.280723 -8.220082 -7.680380 -6.560773 -2.795588 1.279067 -1.554299 2.342335 -3.690537 0.944366 -1.052399 2.153468 -2.297754 -5.193504 -0.435286 3.733526 8.403756 0.990360 0.629532 8.693133 3.290948 -3.358410 -1.705065 -0.067304 -3.931096 3.189234 -9.960999 -2.232474 1.516632 3.066823 -6.164968 1.607000 -0.908344 2.386146 0.385772 -15.498290 -9.567552 -4.745462 15.660488 4.499803 -3.997381 3.326452 5.453404 2.428502 -23.673737 -10.449496 16.587606 0.427703 -4.954692 1.663099 5.841715 10.299429 3.267502 -28.387945 5.631301 1.206633 -2.742892 -11.436667 -2.246561 -0.011902 -9.688132 8.256916 10.865368 0.145491 14.440236 -8.252025 6.228421 11.670441 0.226670 12.857176 14.054224 -1.267212 -4.145977 -2.201985 -2.716820 27.631136 8.914909 -1.079374 9.382217 8.376274 19.091346 1.506775 24.117747 12.445433 -4.804011 11.825730 0.180049 -9.295723 -0.987468 -23.528277 3.097523 10.737962 2.102301 -13.335051 10.089410 -6.447535 4.933026 6.825759 3.232795 24.790852 5.370317 13.473715 12.000908 19.999674 -10.406935 1.175231 5.599420 13.838118 5.010984 10.665401 -10.632154 -9.522176 -17.346557 1.414622 -19.033483 2.253298 -5.090638 23.077651 -12.644003 -0.276684 5.312670 3.201120 15.855429 -11.667451 -2.090888 -19.361010 1.198239 0.841872 25.168655 -0.105379 6.332956 -0.144326 6.350042 -1.886731 8.442979 1.393658 -18.791486 -6.608347 -34.286534 -13.440662 -11.097446 -2.068817 -3.435089 -19.789491 1.812438 6.193648 14.088237 -22.947797 -2.303801 4.177539 -0.805968 11.154711 3.836750 -8.012038 -2.655648 -1.177199 9.811617 5.897524 -6.622165 1.682934 -11.598628 5.281195 5.234328 8.021307 1.841132 -19.251136 -1.781773 7.454572 3.354874 -2.517463 4.043428 3.570099 -10.825932 8.135839 -11.612582 14.667080 -21.141636 -5.225596 -13.467261 -10.409400 -5.892966 23.616004 14.097756 17.387916 5.284962 -4.457083 -0.387056 -23.113069 -32.750570 3.150425 -5.349130 1.759723 0.098806 -1.746774 1.310262 -9.375203 -2.793199 6.951327 -11.937132 -7.610977 -6.587742 8.202339 0.929144 -5.560494 -7.747035 0.658412 10.528434 3.414763 11.451523 -8.600801 -31.933627 -20.019230 -10.423000 13.621210 -7.340612 1.365204 -2.559957 -4.552109 -13.077113 3.417345 -12.151156 2.793582 -7.824279 -9.360519 -18.339861 4.332457 -5.069752 2.757976 0.717258 -14.677936 5.712184 6.161476 9.298256 0.946013 5.569648 0.371431 -19.043246 -16.114217 1.005024 -2.063332 22.147606 10.390451 0.436780 -7.036234 -6.133478 -16.852022 12.513290 -22.582549 7.791668 6.587859 -15.726824 11.771651 -12.177848 -3.966393 -9.688460 9.606347 1.641099 -22.670260 25.234615 18.249742 -18.961174 -5.882471 -11.273703 8.187221 4.445993 19.235409 -10.699423 -4.929854 5.429927 2.297022 -1.891679 -4.261906 7.664248 0.003592 4.159340 -21.062720 -11.453562 14.259956 11.535613 -1.643082 -1.093391 1.602339 -1.237474 -0.098369 21.599922 4.851775 6.332036 -14.894622 -39.979779 5.210212 4.613004 -1.112776 7.625142 -12.642525 -8.793888 -1.301583 -6.982357 17.400719 2.556907 -2.992978 14.892308 -18.757978 -17.711999 -12.492413 -3.441244 2.221275 -5.804696 10.845599 -10.249817 -0.545732 -6.921220 9.181319 -4.808381 -5.880868 -5.215615 6.706696 9.548274 6.750016 -7.170737 17.033879 2.880106 -6.400753 -4.168407 -0.544163 -3.428491 9.329580 -16.637595 -6.548316 -4.863166 7.670050 -11.011775 10.030889 1.656456 12.075878 3.135461 -5.759142 -2.894724 -7.545578 19.899175 -0.865758 4.807620 2.186267 -2.164660 0.096194 -26.675068 -9.407183 15.318402 4.705120 6.318027 -1.654016 6.246780 3.819655 4.811436 -24.465131 -3.213841 6.650375 0.975778 1.357732 0.470305 -0.105090 -6.180894 14.851842 3.220611 3.107092 16.332005 -3.331164 14.910640 14.284762 -1.565591 2.365667 8.607185 -3.611309 0.042671 -11.591707 -6.603113 17.257075 1.952454 2.497376 7.650908 -7.815896 16.344301 6.053289 12.272945 10.342908 -8.024793 6.260711 8.159038 -4.996110 -4.135839 -13.606682 1.577298 4.795865 6.579969 -2.839692 4.353764 -0.219979 2.886299 6.139523 2.339346 16.954084 6.340348 14.565751 16.519985 11.659989 -12.457998 5.217646 -0.026744 -4.251582 -0.653890 15.257857 -11.061390 -11.450108 1.901395 -4.246216 -17.190260 -3.981991 -1.314770 17.468867 -11.449222 -5.153812 -4.531733 5.073566 18.257649 -4.403744 5.551998 -15.820288 -2.061780 0.027252 16.931871 3.739291 2.818859 -4.695420 3.385450 -2.222247 1.364835 5.449122 -14.471970 5.720559 -15.867691 -8.544745 -11.088634 5.483614 10.748167 -17.193862 2.463059 -11.411661 11.140564 -26.131614 -3.324081 1.658924 7.725002 17.666822 0.783665 -4.996830 -0.347877 4.277611 4.296614 7.212207 -8.419958 7.348011 -3.349291 -2.360174 1.418974 4.383080 5.071310 -18.371953 -9.287604 1.905579 -0.521233 5.145642 10.977786 13.449148 -0.712673 7.214299 -10.358594 11.648127 -15.530189 -7.181344 -3.460359 -12.147890 -10.129701 12.170390 9.060378 12.260267 -5.666678 -7.927688 0.018059 -19.636914 -22.914495 -0.210613 2.301788 -2.088113 12.179802 -4.547802 7.903483 -15.502189 7.986031 12.361854 -4.572106 -9.390277 0.708892 0.536197 3.404238 -3.732669 -3.478667 -1.683710 -7.245244 3.544245 21.788657 -1.636189 -23.106296 -28.112604 -6.126432 14.136118 -8.828777 -0.969966 -9.409628 -6.528255 -10.903921 -3.028728 -12.084626 -2.351615 2.286541 -8.808192 -19.116622 8.021623 -2.668511 -4.099960 7.524929 -14.491941 2.425440 9.710662 4.840130 2.998687 0.530239 -1.293786 -9.841848 -7.315861 6.287813 -12.200618 10.668734 5.488942 -1.714888 -10.360932 -8.970284 -10.440912 7.311196 -7.027534 11.502286 1.305764 -2.531143 3.788324 -14.314809 3.223630 -7.178829 3.519792 3.085968 -24.644934 17.495670 7.406445 -7.785899 1.344208 0.238658 7.855706 -0.870458 4.292423 -11.623780 -11.594432 2.789475 2.037015 1.067431 -4.912066 1.835963 -4.486413 -7.371204 -12.697541 -5.249123 13.111946 4.577035 -2.841802 -0.536100 10.822619 -9.857226 3.462824 12.823392 12.019893 2.240646 -8.429754 -26.994462 5.285463 -4.093430 -2.754682 -1.740936 -11.042942 -2.248218 9.798096 -8.302923 12.063653 -4.208504 -7.613508 13.669170 -19.669006 -12.850020 -12.731875 -6.628530 4.000708 2.745479 -0.011558 -5.862774 4.413928 0.886572 1.850561 -6.987124 -11.172741 9.101574 9.307016 15.818592 -3.322606 4.018538 15.462824 6.031810 -2.351177 -3.288944 0.621712 -10.034832 -0.172915 -21.339976 -1.073933 7.476052 7.368981 -11.745032 0.611197 -5.640366 0.640281 0.255115 -21.333931 -10.243707 -5.622138 29.366055 7.864993 -2.374196 2.191876 7.493454 2.667338 -37.832619 -18.529240 21.242055 0.691509 0.968112 6.702493 8.819286 13.028094 6.556003 -39.856654 4.877232 -0.300872 -2.639148 -9.764970 -7.399102 2.317310 -4.724528 13.363706 12.042554 3.305219 20.785459 -15.340451 14.340359 16.739719 3.622277 16.123314 9.109736 -0.137133 -6.902295 -12.785437 -14.250825 40.078040 7.234536 2.908814 19.618957 4.051594 25.611407 2.441805 33.647948 19.649494 -6.021377 17.617073 -10.920625 -11.236537 2.001569 -34.722477 11.207167 13.875894 3.615996 -14.022385 12.481523 -4.427740 10.702925 10.651754 -6.546023 36.474770 10.892423 22.975046 21.766400 27.065363 -18.185464 4.471617 3.863218 20.346956 7.524105 10.257449 -22.096394 -6.979016 -26.551772 0.788979 -28.174405 8.329520 -10.874185 34.950731 -19.600333 -0.288206 6.715522 0.815646 24.823679 -18.878320 6.014110 -28.230112 1.892238 0.259205 27.910390 0.137506 4.984516 -1.154983 6.784652 -3.390082 11.151866 3.486160 -18.887155 -4.067634 -46.853042 -21.537004 -5.079877 -0.159745 -3.558392 -25.106987 6.758180 3.145937 17.814487 -32.542468 -12.524211 3.361783 2.544708 10.310798 6.913911 -8.816790 -7.968396 -0.456247 17.797999 7.612948 -13.906000 9.863164 -18.794144 -2.599660 7.211654 19.833014 6.589332 -20.578246 -8.506210 4.536507 4.875389 -2.164789 4.868110 7.524190 -10.047760 14.305329 -12.593283 19.763167 -28.345879 -12.325704 -18.370819 -14.385857 -7.310474 43.229929 14.313275 25.853430 13.708955 -7.566289 -3.535674 -30.537063 -41.009253 6.861538 0.840489 2.025022 7.370480 -2.081883 5.851668 -15.716254 -6.251204 16.074435 -20.937414 -20.306630 -12.056766 4.048630 -0.967797 -9.076642 -18.539684 8.994940 17.624214 -4.223767 18.225025 -7.780683 -39.559449 -28.645132 -14.532253 20.294954 -11.168919 4.275144 -2.968445 -1.010044 -19.449734 2.555342 -22.332251 4.273871 -1.984671 -21.886391 -29.452686 7.002608 -5.404794 2.364093 5.922004 -22.283338 12.721382 8.193745 21.795592 -3.052435 11.991381 3.742321 -29.851245 -29.606724 -4.637574 -4.329297 27.874069 10.459755 1.397408 -15.133400 -13.057882 -18.411807 20.316865 -30.863312 12.696805 4.030168 -13.243598 9.788409 -21.794439 -4.235235 -17.365225 11.013351 4.739553 -42.871965 31.460641 20.553641 -26.469835 -8.636628 -25.735522 17.887267 1.957509 34.458570 -17.689793 -6.436292 6.886576 8.794832 -4.415635 -14.610875 11.974803 1.209073 -5.404105 -29.482082 -18.900802 18.327726 14.117009 -0.871764 0.777488 12.502616 2.784212 -0.123181 34.204648 10.586343 3.838421 -20.231326 -57.214537 4.988013 24.497921 -0.025182 11.166262 -25.364740 -12.519205 -0.471819 -9.482549 23.584918 6.378029 4.403801 22.670683 -24.553042 -21.565581 -14.115724 -1.628389 2.255832 -10.107820 11.986294 -16.385562 -2.486748 -5.719063 9.842906 -10.307555 -7.855425 -12.357296 4.999795 19.035372 3.725258 -1.475509 26.170534 11.655837 -11.373423 -2.399827 -2.154637 -7.864022 9.222342 -26.685704 -7.464851 -1.509797 5.742249 -19.138218 11.206326 2.491969 9.809168 0.731485 -58.972543 -4.184631 -67.786566 113.373342 -10.033183 11.552491 14.267188 -1.106375 4.268954 -139.193774 -60.251017 72.648852 38.132926 19.202920 -2.909858 68.089052 15.816142 27.395198 -93.433872 2.591419 33.560694 -9.426222 -20.690779 0.100048 -8.728362 -49.203261 53.650011 9.057014 11.721683 96.973238 -17.212313 77.031818 86.354543 -20.229950 21.679606 64.352862 -17.294066 3.046105 -52.367665 -24.896741 99.269723 34.674270 4.629017 26.999512 -41.246064 101.102105 18.124065 104.348061 -18.156443 -48.534130 53.719214 23.829172 -40.646279 -6.880079 -79.284114 18.055954 37.125826 30.875613 -25.968171 35.752793 -42.826869 26.157619 43.771624 27.712530 105.025621 46.505487 79.219671 97.696154 82.888595 -76.220720 31.196148 21.317837 -13.369780 -12.003694 96.521817 -55.372845 -69.992533 30.756096 -7.366680 -73.742169 -9.677799 -0.358045 161.480897 -86.133960 -32.282803 -2.297888 43.014297 108.064656 -55.420278 35.068525 -83.983022 -6.500931 -24.741580 112.647248 19.118099 26.429399 -40.495493 29.397539 -14.732001 9.131730 9.467091 -87.814375 -12.329823 -84.281298 -62.412854 -66.386643 23.017483 55.865320 -114.037166 -1.006141 -25.215837 79.086342 -151.615068 7.747826 25.463608 41.640691 141.505717 56.691447 -45.140466 9.234120 23.754650 28.837826 47.025412 -39.385618 38.052900 -27.340581 11.443148 14.466854 24.430952 23.866758 -141.303949 -27.412152 19.456436 -31.762723 27.224734 66.201913 74.396110 -42.579288 49.542765 -56.600833 72.598764 -121.235673 -43.339696 -38.845560 -111.043284 -50.871236 92.455419 81.389616 92.575873 -28.923127 -42.435140 -10.336744 -134.367198 -127.469512 -15.156634 5.505530 -8.815326 49.398318 -17.790483 37.133508 -78.078672 56.498837 61.693026 -42.428096 -48.519072 11.445030 78.110527 16.689905 -34.158605 -37.431507 -25.349493 -37.937681 27.635738 120.844355 -7.244562 -145.418332 -162.107204 -41.420899 87.265676 -47.358133 9.555612 -55.392673 -40.414123 -69.234423 -14.759791 -73.495414 12.917764 14.424781 -34.642647 -112.998519 46.212684 -8.896260 -43.446771 28.020537 -77.046202 15.813774 75.838287 5.591654 13.999035 17.105858 -4.387610 -68.287156 -49.420502 42.625173 -65.037170 93.747115 68.238897 -10.246210 -37.485622 -47.180352 -83.796970 48.905116 -56.271203 56.877623 4.206992 -9.990504 38.757713 -94.255473 6.455613 -70.132364 31.190058 7.095303 -142.196605 97.467381 76.690190 -51.985344 9.853709 -6.383305 52.365135 6.155597 46.882693 -56.168344 -58.078412 18.650157 5.385721 0.038087 -10.824128 17.308260 -46.986467 -30.959306 -65.712443 -14.224681 79.545219 38.299955 -16.474713 -10.624546 41.641109 -52.833833 32.906901 66.382343 70.136603 -2.594951 -74.827263 -181.165377 34.955391 -57.708676 -36.818838 -4.462080 -39.426043 -12.704043 45.995939 -56.358271 79.266182 -13.973806 -42.411569 84.676820 -123.310219 -93.308874 -72.895916 -18.953163 15.292660 -2.211839 7.797249 -42.445949 26.113868 0.675996 19.594048 -38.979195 -68.693446 34.667464 48.528031 105.943156 -9.389843 3.168493 97.574516 34.313941 -4.989289 -29.755175 11.267285 -49.974307 6.266581 -116.865332 -17.739157 31.266431 49.926056 -70.723247 19.428135 -18.674922 3.143962 23.214733 -4.970639 -4.767456 -4.085724 14.199560 0.803458 2.828615 2.344662 -0.419062 0.712614 -20.647101 -8.564118 13.627554 1.698989 1.840347 -1.386132 2.965454 4.377198 5.098072 -21.205996 -1.780415 3.453793 0.227822 0.750180 -2.748046 0.011184 -4.520954 12.737819 4.806425 2.109273 11.009092 -2.599620 8.207864 9.880798 1.825907 3.591318 7.288235 -4.749827 -0.745074 -7.488250 -7.346094 15.284487 3.748814 1.492614 7.015511 -2.147788 12.161231 6.948723 7.014782 12.433320 -4.137728 3.327590 4.720951 -5.246305 -3.710414 -13.363965 0.514198 3.355174 3.827052 -2.955641 4.229659 -1.055007 2.471660 4.084363 -1.023937 13.954634 2.012939 11.816063 10.841941 8.623897 -9.622298 2.497093 0.602563 1.925739 1.762926 9.637978 -9.396046 -9.514950 -3.829884 -3.706444 -17.185285 -0.742563 -0.951508 16.452973 -7.367631 -3.400120 -2.812861 2.532286 12.036315 -3.415496 0.780186 -13.120467 -0.025660 -0.326684 13.012366 4.203306 1.873775 -2.039173 2.122276 -0.918159 2.584899 4.663305 -10.760968 4.654180 -19.866613 -3.961694 -8.822943 4.004283 3.926873 -9.725746 2.017728 -4.656059 9.824162 -17.545768 -4.012598 2.837118 3.062891 8.196755 -5.445839 -2.695299 0.273548 1.270334 4.794385 6.168173 -8.175397 2.779027 0.194565 -0.579887 -0.076740 4.538057 4.066578 -12.304922 -7.476100 2.002773 2.999026 2.753805 5.767136 7.559342 0.176165 4.794546 -7.510396 9.701958 -11.154806 -1.347073 -3.528605 -6.498620 -7.277527 13.782753 7.848221 9.350411 -2.885151 -2.016310 0.301150 -13.112584 -18.892834 3.242209 1.602930 -0.625237 5.443789 -2.256691 4.873208 -10.789639 3.788192 8.579466 -4.016906 -6.204980 0.673240 0.320961 1.913214 -3.623513 -3.371323 -0.133451 -0.401825 2.507337 12.495264 -3.418761 -20.954525 -16.895799 -5.458943 10.159723 -7.041511 -1.615012 -4.977904 -4.479660 -4.987268 -0.817140 -8.984542 0.734566 0.911485 -8.458831 -14.316562 4.102621 -2.678097 -0.132201 5.643499 -10.233465 2.222061 6.522261 5.580402 0.486314 2.286942 1.090749 -9.407934 -6.289029 2.776347 -7.536167 9.357000 5.087356 -0.666426 -11.404787 -5.284267 -7.591709 5.480093 -5.663767 8.018519 -1.076632 -5.515636 3.704358 -9.195567 5.327273 -4.689387 3.144302 2.647356 -25.022158 14.159540 9.053962 -6.919601 -0.636162 -1.692982 4.117561 -0.487678 5.814078 -9.938986 -8.070034 2.199315 -1.253211 0.531651 -3.139285 2.000203 -0.834499 -4.655567 -12.738441 -6.257145 9.737365 3.080471 -1.332112 0.697706 7.131324 -3.693340 1.992395 13.149658 6.952849 2.821674 -9.368421 -26.609962 3.933786 5.915752 -0.643979 2.080062 -6.768640 -4.092107 4.919792 -6.835154 8.918019 -0.394272 -7.493468 10.028701 -11.429097 -8.954661 -9.401238 -4.943982 4.208868 -0.398350 3.043575 -4.940079 1.554167 -2.313578 1.433784 -4.496702 -5.931383 5.030736 7.068301 11.628807 1.886845 1.508549 10.943288 2.915081 -4.141028 -1.944620 -1.128170 -7.039713 3.424574 -16.486730 -1.510316 3.675654 5.467630 -7.736760 1.295654 -1.615548 3.202961 0.135652 -7.955852 -5.101494 -7.069388 19.382116 0.377898 4.725637 2.049959 -1.962766 0.431520 -26.782841 -10.105419 15.027701 3.427899 3.781383 -0.698058 7.531617 5.458553 3.425392 -23.804515 -1.887501 4.935435 -1.717287 -0.731142 0.253681 -0.374143 -7.728822 14.136446 4.446496 1.881419 14.971663 -3.804984 13.509892 14.129271 -0.031736 4.046073 8.693295 -5.100412 -0.970267 -9.601487 -6.532532 18.613099 3.670478 1.341306 6.587125 -5.034349 15.777798 5.096440 16.008834 11.278338 -6.872751 8.378626 4.258924 -6.042945 -1.875353 -16.336764 1.178795 4.209421 4.049788 -3.957505 5.047638 -4.714982 3.883600 5.389271 1.777443 19.491088 5.859970 16.453686 14.994131 11.841756 -12.145619 3.946299 2.058340 -1.033192 1.573855 13.484814 -10.288804 -10.737468 -1.743786 -2.201318 -15.612061 -2.266239 -1.791573 21.518672 -10.280262 -6.897649 -2.705631 4.256359 17.194349 -6.697035 4.900644 -16.055921 -0.730475 -0.317353 16.902917 4.300316 3.581387 -3.846919 3.037574 -2.283566 2.822784 4.283361 -13.761800 2.246453 -20.457599 -9.445778 -10.681438 5.138459 6.991194 -17.031462 3.616881 -5.544580 11.161267 -23.439259 -2.627263 3.066296 5.130842 18.699176 3.662590 -5.776980 -1.381783 3.485387 6.649966 7.672896 -7.663684 6.703460 -5.443994 1.067359 1.470088 5.888908 4.115738 -17.948997 -7.003713 3.509817 -0.222072 3.776042 9.158750 11.565728 -1.817888 7.270903 -8.151992 12.295269 -16.897361 -5.026028 -5.867689 -11.775019 -8.503479 18.648281 12.684010 14.171124 -2.092534 -5.988266 -0.225174 -19.888986 -23.845095 -1.307909 1.436124 -1.500808 8.088887 -3.191558 6.935817 -13.304117 7.519235 10.743043 -6.435967 -8.583283 0.560098 1.980070 2.889752 -4.833308 -4.858772 -1.459833 -3.937760 1.860990 20.071829 -2.070826 -27.701283 -25.161333 -7.081093 12.975400 -8.781687 -0.192609 -7.845799 -5.528140 -9.891603 -1.771445 -11.410314 -0.643020 1.589682 -10.342117 -18.837618 6.859204 -2.521221 -2.669674 5.849216 -13.706105 2.934541 10.092031 6.165481 2.804953 3.022005 -1.032524 -11.330250 -8.837394 4.545569 -10.110203 13.362747 7.434629 -2.387626 -9.864559 -7.988717 -12.282384 8.021385 -9.520289 9.670294 0.749674 -6.482235 3.732154 -13.650036 2.948255 -7.326599 4.250566 2.020619 -27.448356 17.873873 11.659290 -9.604231 -0.608962 -3.134287 7.738052 -0.711581 7.926908 -11.687601 -9.551459 1.260012 1.443808 0.454937 -2.289596 3.358716 -4.501799 -6.693716 -14.340665 -6.839245 13.476981 5.386796 -2.020384 -1.027762 9.076562 -5.313624 4.630077 14.006723 9.517127 1.819237 -10.296942 -33.574566 4.567284 0.674010 -4.305529 2.362291 -10.479705 -4.124578 6.427203 -9.791871 12.167662 -2.986724 -6.509062 13.113802 -17.372999 -12.428187 -12.547852 -6.121415 2.521147 0.417369 2.863538 -6.554261 2.142546 -1.987133 2.928477 -6.581013 -9.337005 6.374956 8.085614 15.373164 -0.960703 1.952627 14.221703 5.497765 -3.281573 -4.408031 0.541315 -8.991714 3.798308 -21.498277 -2.232307 5.270479 6.633695 -10.195907 1.027892 -1.954531 3.459892 1.050037 -5.941357 -2.246562 -5.252580 12.860708 0.308964 1.620373 1.471328 -1.077240 -0.469869 -16.662658 -6.933035 8.632134 2.851546 1.827844 -0.198869 6.042484 3.585581 2.618784 -14.699813 -0.423662 3.162031 -1.735121 -2.051404 -0.135937 -0.567936 -6.089034 8.419912 3.824608 0.865440 10.474270 -3.152781 8.259668 9.277431 -0.640895 3.940250 6.964281 -2.566883 -0.446634 -6.125915 -2.839059 13.454051 2.670155 0.576019 3.627236 -2.140170 11.758562 3.330267 10.018471 3.656794 -4.530316 5.760980 4.495235 -4.184741 -1.446991 -11.459841 1.145508 4.572779 3.107256 -4.040015 4.242578 -3.894538 3.266195 4.370612 2.690202 13.598527 3.492818 10.656326 9.956332 9.255102 -8.591101 2.740634 1.897230 0.739145 -0.017135 9.132888 -6.386799 -7.514016 -1.102852 -1.139654 -11.009879 -0.174060 -0.196610 15.081960 -7.945428 -4.389433 -0.489692 3.251135 11.982217 -5.784630 2.535225 -10.908258 -0.145239 -1.759929 13.491633 2.817045 2.617406 -2.644273 3.452667 -1.162295 2.467559 1.796319 -10.471185 0.199587 -14.452815 -7.928683 -7.724894 2.748455 3.874932 -12.183814 1.241538 -1.444113 8.287109 -15.991055 -0.654380 2.357080 4.029641 11.493527 1.110817 -4.717897 -0.272629 1.595559 4.728645 5.481874 -4.305294 4.188146 -3.792535 1.760581 1.527881 4.121227 2.492181 -13.157119 -3.634594 2.544243 -1.688307 2.101310 5.923890 7.160097 -2.904838 5.479200 -6.528211 8.884767 -13.156684 -2.949960 -5.412467 -9.399552 -5.536245 9.231637 8.906967 9.050865 -1.751102 -4.255146 0.134546 -14.862342 -16.707379 -0.633561 0.887064 -1.051535 4.670809 -2.492845 4.319312 -8.929826 3.915031 7.954760 -5.346236 -6.002648 -0.645421 5.494372 2.207456 -4.068011 -3.641084 -1.337293 -1.665704 2.401718 12.864330 -2.122882 -17.227447 -17.095955 -5.513857 9.472595 -5.938098 0.154996 -5.099288 -4.311548 -8.508661 0.120496 -8.169643 0.368775 0.235416 -5.291012 -12.751781 4.345867 -1.832603 -3.058674 3.177159 -10.056306 2.265415 6.985643 1.264485 1.974877 1.747791 -0.336906 -7.950254 -6.508017 3.766576 -6.190096 9.551650 6.540337 -0.939636 -5.900892 -5.396046 -8.935653 5.557792 -6.132806 6.555068 1.440430 -4.403050 3.864563 -9.539360 1.129820 -5.028920 3.529786 1.028738 -16.728584 13.601119 9.482259 -7.611491 -0.690734 -2.170603 5.863501 -0.172538 6.523078 -7.801331 -5.458691 1.764966 1.190480 -0.031905 -1.097390 2.868858 -2.836966 -3.431797 -9.994333 -4.322674 9.027226 5.081678 -1.484772 -0.460772 4.714489 -4.489569 2.600914 9.663424 6.142573 1.629128 -7.383945 -21.753890 3.322903 -4.066222 -2.992487 1.472782 -5.167056 -2.892808 3.584469 -5.654971 9.600063 -1.482398 -5.367486 9.758740 -12.030881 -10.036231 -9.089651 -3.804767 1.666063 -1.206423 2.494304 -5.384308 1.440594 -1.649713 2.784394 -4.545830 -6.263225 3.395711 5.293903 10.342924 0.344337 -0.191094 10.862128 3.424295 -1.968864 -3.548926 0.540017 -5.403235 3.621060 -12.797829 -2.625908 2.289774 5.335582 -7.497873 1.840661 -1.856240 2.858986 1.993071 -4.433922 -3.325308 -2.980042 11.483314 0.844148 2.914255 1.580984 -0.410493 0.212758 -16.203593 -6.629133 7.509603 1.706160 3.103505 0.301559 3.410705 3.605546 2.062553 -14.289337 -1.383975 3.068372 -1.091377 0.210600 1.033949 -0.088129 -5.057565 7.032229 3.689854 1.532720 9.357679 -2.844301 7.558218 8.740228 0.039439 2.447268 5.794015 -0.941177 -0.967009 -5.957996 -3.545997 11.977854 1.537445 0.370046 4.095836 -2.826585 10.255558 2.640851 10.477147 6.860754 -4.441047 5.380404 -0.764652 -3.634624 -1.208769 -9.956607 1.332708 3.025220 3.558594 -3.050022 3.258368 -3.094787 2.366385 3.122965 0.100037 11.309210 3.299349 9.413001 9.092533 7.325935 -8.285213 1.711695 2.006843 -0.112188 1.724223 6.452674 -5.690871 -5.128447 -4.125672 -0.827281 -9.077075 -2.091235 -1.588693 12.103902 -6.675538 -3.581851 -0.166162 0.947120 10.538900 -4.171412 3.716471 -10.694201 -0.348151 1.469108 9.087056 2.649008 0.807383 -1.593109 1.776946 -0.988037 2.607980 2.524186 -8.346773 -0.998058 -12.755231 -6.054483 -6.198276 3.058632 4.147528 -10.629988 1.850549 -1.556944 7.108998 -13.909724 -1.650509 1.870751 4.194158 9.471744 2.707995 -3.497927 -1.443536 2.875427 3.592355 5.554325 -5.060062 4.189893 -4.447437 1.228259 0.988130 3.534060 2.157338 -9.571013 -4.691976 2.322414 -0.218727 2.057964 4.536352 6.791619 -1.163268 5.060659 -4.966928 7.424450 -10.192614 -2.876096 -3.424604 -6.746417 -5.242468 13.743230 7.971085 8.680491 -0.148453 -5.017341 -0.259762 -11.502774 -14.764996 -0.598354 1.120695 0.267336 5.247652 -2.371115 4.878254 -7.662379 3.480529 4.794660 -3.891461 -5.304197 0.245905 -0.819589 1.464539 -2.524293 -4.205496 0.012251 -0.751379 -0.089257 11.575407 -1.769522 -15.722686 -14.248184 -5.163156 8.235727 -5.267721 0.197364 -4.239239 -3.113984 -7.087959 -0.406204 -6.936760 -1.029867 0.747691 -7.163357 -11.719171 4.492170 -2.077157 -2.071665 4.623749 -8.581064 1.761804 4.904646 3.849796 2.361427 1.456853 -0.929198 -7.171726 -6.031616 1.475603 -6.497307 8.853087 3.832560 -1.520162 -5.835565 -5.537307 -7.216271 6.110330 -6.255473 5.708139 0.457479 -3.991240 2.683461 -7.972236 0.871996 -4.735916 3.279783 2.483144 -16.500060 10.685596 7.418334 -5.982515 -1.032528 -2.610104 4.260894 0.587642 5.756862 -6.798404 -4.736355 1.562747 1.752824 0.312574 -2.101808 2.510106 -1.928621 -3.859027 -8.993752 -4.877002 7.366928 4.064614 -1.293682 -0.360972 6.466996 -1.466083 2.912735 8.903717 5.202477 0.629967 -5.446380 -19.943522 3.667302 2.986561 -2.106992 2.403831 -7.623234 -2.221006 3.585348 -5.790277 8.103764 -0.961036 -2.664878 8.772873 -9.628823 -7.716625 -7.256532 -3.905204 1.353368 -0.503907 2.969246 -4.235831 1.635170 -1.071844 1.060758 -3.789217 -4.995535 1.865229 4.451177 8.115827 0.140517 2.102711 9.210375 3.167443 -2.769578 -2.421728 0.438466 -4.834632 2.405898 -11.509981 -1.404809 2.821183 3.788957 -6.348141 0.468080 -1.834755 1.113962 0.800462 -10.577654 -5.665226 -5.668717 21.139103 1.716592 3.526022 3.923943 1.382741 3.039382 -29.069494 -12.599862 19.985071 2.674406 2.656599 -1.432649 6.207625 7.711207 6.881928 -28.138415 -1.175340 4.694317 -0.354949 -0.509773 -3.129751 -0.087273 -8.271381 16.322654 7.738254 3.619979 18.089362 -5.212803 10.841253 15.680326 1.090733 6.109093 13.097612 -3.051475 -1.742918 -11.753889 -10.093484 23.060291 6.610840 1.121272 11.302814 -2.635149 20.293331 8.498089 15.948529 15.886659 -7.575414 6.636125 4.113063 -9.636219 -5.214696 -19.620810 2.403940 5.855097 5.253258 -6.586726 7.857106 -3.194688 4.527510 6.775573 -0.319213 19.493033 4.854435 15.277277 16.170517 15.951739 -16.367595 2.758636 3.807538 4.891942 4.990177 14.993648 -13.694279 -14.138967 -5.749271 -3.476266 -21.166975 -1.405440 -3.161484 26.205567 -13.811476 -4.103703 -0.617961 2.502192 18.099559 -7.463375 2.067150 -19.183528 0.068113 -0.163469 20.163664 4.902739 3.118280 -2.574801 3.834769 -1.736265 5.533879 5.487475 -17.743320 1.806079 -27.946453 -8.258245 -13.955027 4.962047 5.663208 -16.583913 2.937681 -4.251067 16.073852 -26.645822 -4.611751 5.314990 4.984254 13.735840 -2.004523 -3.660374 -0.309348 3.425081 7.407010 9.562763 -12.644847 4.444808 -0.980557 -0.397608 1.465721 7.033203 5.035284 -18.182964 -9.717197 4.237451 3.163287 3.678875 7.865599 10.084843 -4.223189 8.680074 -11.326213 15.624788 -18.653573 -5.192924 -6.619924 -10.275086 -11.077627 23.069604 11.896087 17.369274 -2.032132 -3.842131 -1.192787 -20.319499 -27.905116 3.618784 1.436810 -0.295915 8.367521 -3.267300 7.407648 -15.499245 4.495615 9.346327 -7.785292 -9.314375 1.107313 2.432056 1.660473 -5.271836 -7.925088 0.200078 -0.211409 3.996617 18.639959 -5.454144 -32.821908 -24.580990 -9.766861 16.609028 -10.900446 -0.939708 -6.769085 -7.470997 -7.546834 -1.006241 -14.342927 1.553045 0.625368 -12.701281 -22.510869 7.955257 -4.768324 -1.276655 8.944362 -16.249903 3.883516 9.058928 8.205127 1.398212 4.267536 0.634617 -16.202280 -10.339768 2.963333 -10.535970 17.300897 8.963619 -1.084803 -14.093082 -8.993284 -12.888400 10.306984 -13.011365 11.472443 -0.209385 -7.513122 7.329687 -13.900437 5.019172 -10.744233 7.082657 5.294621 -33.336568 21.018317 16.528093 -12.480965 -1.987531 -3.781932 6.691128 1.523803 12.125029 -14.966979 -12.785168 4.788481 -0.478801 0.354133 -4.922139 4.296480 -2.155624 -5.275086 -17.915619 -8.096198 14.473987 7.062893 -2.252152 -0.133625 11.281960 -4.165276 3.860968 19.020707 10.381001 4.437736 -15.554704 -40.511415 7.812068 7.296017 -1.753954 5.245656 -12.092765 -6.037315 7.631900 -9.664754 15.146996 -0.739650 -7.480819 16.801343 -18.739285 -15.846037 -13.656165 -7.650462 5.678747 -1.413009 6.586844 -8.578942 2.461417 -4.346519 2.728222 -7.770330 -7.414456 6.062540 10.264042 17.292132 3.603024 1.884106 18.438603 4.593872 -6.747613 -3.012538 -1.026797 -9.756635 3.414217 -22.358969 -2.240839 4.570227 8.781197 -12.267026 3.627122 -1.771160 4.285561 0.768744 -10.202578 -10.549726 -8.991543 24.431236 1.163438 4.112811 3.152570 -2.145145 1.241177 -34.186252 -13.791536 20.410446 4.398337 3.906216 -2.129108 8.305611 7.200232 6.380983 -34.443448 -2.293161 5.260388 -1.824979 -1.649989 -1.849096 -0.697639 -9.342610 20.874692 7.763045 2.599630 19.029255 -5.191065 15.113473 17.403386 0.430926 6.297218 12.658222 -6.062348 -0.989350 -12.697519 -9.058919 26.665644 5.605073 2.207762 10.077158 -4.336415 21.201295 9.630146 20.377373 17.414045 -7.770754 10.576908 6.163809 -8.668062 -4.877426 -23.781179 1.673197 8.277717 5.974523 -6.118318 7.426991 -3.224263 5.320183 7.637619 2.205564 26.606841 5.129780 21.517081 17.946436 16.149469 -16.338364 4.674225 2.334911 2.973717 1.381157 18.201295 -16.899948 -16.047917 -6.786566 -3.790326 -25.313824 -0.240758 -1.616912 26.493597 -13.755226 -7.949282 -3.688493 5.071434 21.395375 -8.086641 4.092427 -22.590668 -0.044414 -0.322876 26.045923 6.086832 4.515260 -4.661122 4.633565 -2.222827 4.403182 6.978935 -19.216331 4.853233 -33.527188 -10.740522 -14.958850 5.552865 7.183266 -20.188799 3.067954 -8.268845 14.186894 -30.797296 -4.485345 4.363014 5.881913 21.102975 -4.355916 -6.442472 0.639279 3.360847 8.433856 9.920092 -11.022330 6.374307 -5.283696 3.067394 1.614829 7.387074 5.852718 -23.648577 -9.189323 3.869287 2.920175 4.723286 10.094154 13.442296 -2.679045 9.120527 -12.988386 15.852145 -22.363259 -4.765137 -7.833362 -14.915764 -11.508258 24.406943 14.199251 17.918314 -4.405680 -7.119351 -0.033472 -25.308132 -36.011496 1.965809 1.907040 -2.007019 9.314710 -4.322496 8.216725 -17.899725 6.523294 15.542487 -8.395698 -11.163041 -0.422638 2.689912 3.539774 -6.525372 -5.646954 -1.513720 -1.515485 4.612847 23.294887 -4.383208 -38.939492 -31.077480 -9.531239 17.431064 -11.727723 -1.180433 -9.030145 -8.268806 -14.521248 -1.424856 -14.916638 0.856062 1.255979 -14.381789 -24.181287 7.294040 -3.914713 -0.737570 7.999830 -18.864185 4.197374 11.788740 9.167972 2.635496 3.753426 1.092440 -17.036548 -12.690342 6.067625 -12.566115 19.080160 8.869174 -1.362803 -14.146688 -9.665301 -15.247210 9.210454 -13.193397 12.829592 1.167050 -9.475189 6.322092 -17.133184 5.800516 -8.674802 5.898998 3.289803 -36.062220 27.322961 16.540123 -13.031874 -1.091533 -3.102663 9.105968 -0.964177 10.909339 -16.564269 -12.792086 3.717171 0.294047 0.395777 -3.858698 4.389700 -3.233539 -7.310565 -21.373513 -10.510735 16.138839 7.312925 -2.681117 -0.606330 10.486141 -8.765029 1.869456 21.754651 10.997183 4.419753 -14.568990 -47.101582 6.444908 3.587342 -4.591773 2.939627 -13.428183 -5.718050 8.187129 -11.178083 16.552700 -0.159835 -11.454097 17.640777 -22.124439 -16.918235 -16.354631 -8.513887 5.223070 -0.585635 5.033416 -9.522053 2.584498 -4.028242 3.839429 -8.690682 -11.283843 8.325456 11.287737 19.106912 0.732397 1.553988 19.483258 5.418967 -4.752388 -4.976214 -0.935966 -11.022540 7.671399 -26.581860 -3.237014 5.431636 9.679923 -13.414330 2.794148 -3.645422 5.811693 1.710628 -10.977718 -5.723395 -8.001439 21.069539 0.305679 0.218833 2.881184 2.740364 2.134823 -25.837792 -12.341413 12.460945 4.452874 1.561516 3.295481 7.282583 5.954495 3.979582 -26.638369 1.243142 4.884991 -1.978754 -5.903654 -0.769583 -0.925286 -8.830879 9.198049 7.686167 1.457989 17.540974 -5.912414 11.743733 14.102730 -2.490123 6.488854 12.010692 -2.157087 -0.987465 -7.982102 -3.164572 23.313140 6.345615 -1.861661 7.885583 -1.491102 19.527843 2.254899 19.430479 5.086451 -8.007874 10.562115 4.748180 -7.319003 -2.692952 -18.395695 3.558007 12.957420 6.466478 -8.360952 8.988283 -7.565983 4.537963 7.910196 3.689022 22.090783 8.073157 16.450134 16.498414 17.697797 -14.035165 4.494428 3.001120 4.188280 0.665404 13.049188 -9.971507 -11.112571 -10.879739 -0.106656 -18.033732 -1.092439 -2.087209 23.148322 -14.666499 -4.036403 2.956667 5.162027 19.751459 -12.084310 4.713419 -16.982654 -1.213223 -1.997458 23.130698 3.038330 4.228471 -2.929772 7.117635 -1.680766 5.682789 2.813599 -16.851616 -3.305877 -27.830436 -15.025773 -10.651260 2.234847 4.783028 -20.760800 1.694657 2.100324 10.060112 -25.712395 -1.799935 4.333076 6.759710 15.118199 3.235880 -8.936139 -1.508907 2.045692 7.443351 9.351700 -8.069810 7.362696 -8.988869 2.813925 5.198151 6.850592 4.039547 -17.940097 -5.108672 4.638770 -0.986783 2.027230 8.431431 10.793491 -7.226118 9.717399 -12.057407 15.844777 -22.955067 -5.706284 -9.615253 -13.196712 -7.984756 16.906909 12.703896 14.579836 -0.687347 -9.644817 0.091044 -23.978280 -28.653233 0.400687 1.940775 0.220680 5.801748 -4.037785 5.674856 -12.701948 4.316459 10.790409 -10.215298 -9.262713 -1.669108 9.282936 3.590439 -6.267973 -8.479427 0.023221 0.990199 2.526687 19.238752 -3.515457 -25.370491 -26.032036 -8.846346 16.313456 -7.734542 0.791734 -6.788350 -6.961273 -15.688344 1.718372 -13.152939 0.456085 -0.967199 -9.878834 -21.214300 6.328311 -2.601224 -3.890849 4.812537 -17.354927 4.005331 9.947405 5.543651 2.263190 4.132849 1.055385 -15.999829 -14.079385 3.491529 -8.663355 19.340448 10.079085 -1.403301 -6.679990 -7.874555 -14.054814 12.127779 -14.345464 10.375945 2.476880 -9.062861 8.644729 -15.420780 -4.489374 -12.170006 6.691834 2.558818 -22.110903 24.363229 15.377590 -13.589601 -1.677139 -6.191405 9.758188 1.435333 14.446841 -13.559538 -8.708956 3.946259 2.904099 -0.586948 -5.020006 5.676517 -4.239696 -4.214669 -15.939767 -6.926546 14.793717 9.774709 -1.553446 0.981744 7.517953 -5.446393 2.559258 17.223622 10.082841 0.925848 -12.372021 -33.213020 7.687554 -2.909585 -4.817676 2.444218 -12.630311 -6.139512 4.680487 -5.042124 15.255102 3.215979 -4.118863 16.658312 -20.021039 -17.620748 -14.583078 -4.019098 2.448386 -3.236239 5.515329 -9.591524 3.406326 -2.003678 5.804530 -7.006888 -9.880934 -0.621645 6.994898 14.701470 -0.027007 -2.122583 19.316397 5.792014 -5.444847 -5.574381 -0.540449 -9.222497 4.812074 -16.069529 -4.001052 2.031627 9.048261 -13.445029 5.360880 -1.966960 4.936199 3.910966 -5.131957 -5.115119 -7.600528 19.398572 -0.340634 5.660037 1.673752 -2.101196 0.820889 -25.860451 -9.809759 15.054957 4.098577 6.216828 -0.985082 5.608753 4.524976 3.804219 -22.530233 -3.349304 5.554710 -0.113469 0.765966 1.428842 -0.367439 -6.401327 15.762235 3.625792 2.964419 14.720869 -2.686834 14.121623 13.575202 -1.521101 2.402690 7.832918 -3.717451 -0.615701 -12.092330 -6.855642 17.440849 1.807407 1.957160 8.194994 -6.869720 15.471303 5.675964 12.716783 11.644303 -7.219401 6.797572 6.976941 -4.534989 -4.411738 -14.607627 1.458680 3.991098 4.862778 -2.776031 3.685127 -1.350442 2.452467 5.400897 1.547554 17.161662 5.365866 15.995913 15.737085 10.371340 -12.299620 4.145496 1.308430 -2.806612 2.006141 13.913460 -10.523985 -10.712592 -0.302517 -4.454308 -15.172004 -3.154028 -2.566167 18.320763 -10.202301 -6.652965 -4.815634 3.731474 16.785516 -4.584845 5.985191 -15.881658 -2.166925 1.404044 13.624287 4.014844 2.147991 -4.555677 2.526436 -2.805044 1.855077 5.951194 -13.810375 4.805497 -16.575859 -8.360158 -10.416651 5.693783 9.107021 -15.898602 3.381972 -10.313175 10.279012 -23.385097 -3.575398 1.415646 6.959525 18.790022 1.441544 -5.810155 -1.343982 5.657596 4.521992 7.386178 -7.553589 7.402524 -4.213912 -0.380027 0.917519 4.432369 5.165883 -16.838743 -9.047398 1.998597 1.267274 4.960277 8.960253 12.749528 -0.835113 7.075104 -8.390186 11.394891 -15.600481 -7.011801 -3.927005 -10.725022 -9.586705 16.647077 10.273322 13.746974 -4.305765 -8.082908 0.075368 -18.523893 -21.985410 -0.448779 2.384114 -2.437956 10.787786 -4.106597 8.526537 -13.927840 7.743904 11.624522 -4.344620 -8.653496 1.334594 -1.663145 3.242618 -3.164559 -4.312626 -1.438005 -6.361020 3.035136 20.427964 -1.197913 -24.978719 -25.459938 -5.554408 13.015189 -8.707560 -0.784088 -7.765857 -6.660031 -9.867862 -3.124175 -11.386951 -2.368540 2.075131 -10.442095 -17.864095 7.798618 -2.480302 -3.712540 7.650030 -13.642471 2.516125 9.348534 6.817175 3.226306 1.158264 -1.922413 -10.248251 -7.647694 5.225872 -12.019150 12.903079 5.290772 -2.473871 -10.177615 -8.416006 -10.464021 7.499448 -7.950331 10.485582 1.444813 -3.917995 2.518611 -13.981371 3.239998 -7.425183 3.531803 3.356746 -26.459003 16.413881 8.571589 -7.426749 0.895525 -0.094910 7.192027 -1.185346 4.261360 -10.936209 -10.322307 2.382154 3.051630 1.166034 -4.964892 1.856962 -3.440764 -8.036163 -13.266692 -6.356609 12.680102 4.003140 -2.417346 -1.522472 10.304022 -7.854248 2.805045 13.010596 11.199637 2.043490 -8.132406 -27.989686 5.072099 -0.572107 -4.048594 0.160342 -11.454645 -2.408943 8.230905 -10.078652 11.143071 -5.338639 -7.057164 13.121194 -17.286672 -11.617319 -12.213405 -7.041191 3.373106 2.365830 2.278257 -6.019284 3.651328 -0.396281 1.041799 -7.843647 -9.821889 8.948257 8.802945 14.042388 -2.320678 4.982752 14.063724 5.883672 -3.182635 -3.433785 0.916805 -10.523804 1.240747 -21.662531 -0.936565 7.126651 6.576264 -10.337111 -0.727531 -4.681789 1.151273 -0.133907 -7.652166 -4.527213 -8.389790 21.559249 0.340147 5.133116 2.494891 -1.304924 0.660277 -30.681807 -11.753127 17.246589 4.554316 5.740030 -0.896218 7.703144 5.388886 5.409077 -25.528519 -2.823072 6.201497 0.119489 0.293087 0.392069 -0.297752 -7.693980 15.683051 3.612108 3.271436 17.306977 -3.989194 15.575778 15.979424 -1.184492 3.535717 9.877098 -3.652170 -0.973225 -12.087993 -7.783145 21.411954 3.032195 2.157703 9.236873 -6.761204 18.292828 5.754951 15.480550 9.886105 -8.134009 7.132113 5.579423 -6.347009 -3.706922 -17.430697 2.522583 5.550764 6.324876 -4.207932 5.349028 -2.325749 3.521490 6.511716 1.184836 20.257252 6.742416 17.287230 18.202972 13.551455 -14.046831 4.753363 1.698283 -1.814715 1.854347 16.320841 -11.768306 -11.355281 -0.711668 -4.231520 -18.967056 -2.697105 -2.730891 24.447640 -12.690739 -6.542853 -3.249949 4.914784 19.567053 -6.138376 5.790107 -18.576570 -1.421859 -0.155674 17.835539 4.500025 3.228320 -5.747948 3.680515 -2.508095 2.563019 5.844401 -15.973230 3.254676 -21.152001 -10.234022 -12.119469 5.458917 9.645845 -18.992190 2.976307 -8.755165 14.873336 -27.963572 -3.488078 2.601163 7.551734 20.991889 2.301476 -7.296628 -1.343545 4.666246 5.425240 7.768382 -9.033301 7.381044 -4.654450 -0.627309 1.161425 5.626429 5.242235 -21.083159 -9.582785 2.676112 0.279402 4.881477 10.710467 14.537696 -2.544665 8.368562 -10.346588 13.090203 -18.774388 -7.443353 -5.133887 -14.295340 -10.606475 19.763503 12.262478 15.580374 -4.047500 -8.317415 -0.842024 -22.210743 -26.402636 0.138092 1.890208 -1.488409 11.673130 -4.327455 8.419950 -15.804983 8.015235 12.972419 -6.151227 -9.788615 0.691563 2.746637 2.752372 -4.439201 -6.013543 -1.669951 -4.264110 3.303020 22.424055 -2.496548 -27.754671 -29.477950 -7.556053 15.333948 -9.810504 -0.035746 -8.827969 -6.727910 -11.878711 -2.680149 -13.587734 -1.310342 1.853493 -11.622371 -21.360583 8.303039 -3.050693 -5.433524 8.006670 -15.949543 3.322605 11.036272 6.747282 3.003923 1.587442 -1.724510 -13.116322 -10.363636 5.508120 -12.892594 15.067924 8.166042 -2.266337 -12.020708 -9.457391 -13.059867 9.405625 -10.685408 11.692405 1.129533 -4.353829 4.512540 -16.248885 3.063420 -9.579890 4.882987 3.152329 -31.148267 20.401453 11.034266 -9.774246 0.295970 -1.867210 8.666698 -0.357341 7.339575 -12.666436 -11.150537 3.317971 2.240289 0.766556 -5.517150 3.185068 -4.618114 -7.207025 -16.199712 -6.914112 14.571673 5.924669 -2.981967 -0.736414 11.217185 -7.993811 3.970621 16.167723 12.736429 2.013189 -11.159227 -33.886586 5.720730 -1.529654 -4.120720 0.545594 -12.267573 -3.472033 8.788169 -11.523031 13.825922 -5.098139 -7.493772 15.437347 -20.876416 -14.409104 -13.120985 -7.051310 4.202821 1.041777 2.896109 -7.450595 3.742685 -0.636583 2.306301 -7.936102 -11.673996 8.012742 9.714399 17.428193 -1.389452 3.895810 16.935942 6.443262 -3.793413 -3.524943 0.571797 -9.959546 1.885756 -24.546176 -1.923164 6.830456 7.494670 -12.376517 1.510645 -4.648696 1.693775 0.853198 -19.673889 -13.434690 -8.650699 20.091626 4.506563 -5.456378 3.716973 5.878888 3.488792 -30.366767 -12.174697 25.295104 1.181758 -6.567072 0.733549 8.470587 12.108913 4.734706 -34.365162 7.641346 0.740204 -3.384282 -15.819217 -3.018690 -0.186952 -11.322607 12.929622 12.088136 0.277419 17.800191 -9.905362 8.445822 14.378824 -0.583700 15.304240 16.841997 -2.572874 -5.027547 -3.526757 -4.340035 34.511882 11.249918 -0.199705 12.380658 9.473191 23.295815 2.060260 33.230101 19.149802 -5.761586 15.817158 3.294269 -11.686581 -1.009028 -30.196866 3.881825 11.010189 0.820084 -15.723519 11.789084 -7.398749 6.121614 8.890022 4.747126 32.844373 7.141051 17.817674 15.694071 24.950196 -12.050315 2.444166 6.455220 17.420680 6.045450 16.919014 -14.080712 -13.607605 -18.828632 0.715018 -22.903076 3.553844 -6.337493 31.144773 -16.476733 -0.636261 4.634235 6.068410 20.453528 -14.410648 -2.117325 -24.816058 1.487372 0.489283 32.160336 0.124491 8.955918 -2.366579 7.277668 -3.609150 9.045529 2.004354 -23.771207 -5.913396 -42.720390 -16.614528 -14.328761 -3.367736 -3.730713 -26.006547 2.884371 5.658866 18.938806 -30.084635 -3.029659 4.832202 -2.549706 18.458921 6.712603 -9.609377 -2.290227 -1.029006 12.317145 6.346486 -7.508692 1.682584 -14.427585 7.148164 6.223547 9.575833 3.006841 -26.535376 -2.066058 9.211068 5.524801 -2.348631 6.049587 5.326628 -13.987509 9.776205 -13.998741 17.294037 -26.668392 -8.366985 -16.445893 -13.453431 -7.779347 31.737584 17.924784 24.409142 4.985530 -5.029448 -1.368182 -30.410391 -42.129155 3.909410 -8.334657 0.301184 0.794825 -1.562239 1.235530 -11.978250 -2.641742 10.094435 -15.008921 -9.673932 -7.893025 9.812920 0.975828 -6.540821 -9.615322 -1.047772 11.857034 6.080927 14.599861 -9.859086 -44.791251 -26.387442 -11.887425 16.915885 -9.123102 2.119589 -3.926419 -6.435702 -15.692159 2.428414 -15.018303 3.307814 -9.315839 -11.192492 -22.605455 5.341802 -5.633222 2.864374 -0.219347 -18.291748 7.536767 8.142012 12.166649 0.747236 7.179794 0.113657 -25.218826 -20.511158 2.584179 -3.193079 28.393421 13.925412 0.883464 -9.728682 -7.520822 -22.539689 14.369758 -32.532733 10.259233 8.971407 -19.894610 14.530296 -16.423858 -4.405413 -11.661996 11.815538 0.772563 -30.811023 32.358454 22.705284 -23.313153 -5.748800 -12.642516 10.768159 5.367810 22.932717 -13.804676 -6.503400 6.549088 2.899426 -2.308838 -4.541809 9.235876 -1.016165 4.873770 -26.482082 -14.199507 18.198413 13.646721 -2.262892 -3.347991 0.950168 -3.970255 -0.217726 26.920045 6.928563 8.391204 -19.300963 -52.696731 5.752361 4.899990 -2.136903 10.324740 -16.599163 -9.957653 -0.755927 -11.221480 21.489416 -1.419350 -4.437731 17.838154 -25.461442 -22.100634 -15.340169 -4.649156 2.663121 -5.899666 14.720957 -12.580618 -1.188447 -8.580098 11.886919 -7.857472 -7.167255 -3.642656 9.571389 12.227284 8.482621 -8.978541 20.837493 3.910438 -7.309428 -5.171124 -1.237101 -5.187655 10.869865 -23.349380 -7.243126 -5.180298 9.850275 -14.263136 12.927399 1.787880 15.390468 3.033161 -9.671130 -6.154091 -4.787894 11.102829 1.938672 -2.310684 2.290296 2.854161 1.310000 -15.631532 -6.510522 12.539996 1.016212 -2.709736 0.496469 4.302449 5.763929 1.970775 -17.333070 3.206283 0.629824 -2.313129 -8.557667 -1.135505 -0.594198 -6.496018 6.311209 7.147304 -0.161535 9.711522 -4.492296 4.584386 7.863354 -0.371301 7.596909 9.051326 -0.730360 -1.948772 -2.615426 -1.659156 17.375971 6.144051 -1.403105 5.630577 4.187696 12.579019 1.351064 16.192955 6.576555 -3.308728 7.407422 2.159683 -5.975799 -1.219329 -14.981584 1.593935 6.781463 1.251532 -8.015055 6.529880 -5.079832 2.925246 4.701257 3.405321 16.663688 3.713762 9.690730 8.526706 12.654967 -7.341731 1.069103 3.750074 7.880426 2.338501 8.379377 -6.110022 -7.675130 -9.313160 1.031075 -12.099548 0.428431 -2.535709 15.994276 -8.482295 -1.351261 2.609870 3.258449 10.730745 -8.340450 -0.480942 -12.648026 0.215203 0.000000 17.941393 0.851167 4.384071 -0.813834 4.483920 -0.906263 5.099877 1.000659 -12.400050 -3.305843 -21.584214 -8.715161 -7.539507 -1.348146 -1.233347 -13.334596 0.618269 4.065244 10.013645 -15.740064 -1.025794 2.998511 -0.256906 10.608643 3.087584 -5.543194 -0.252538 -0.093319 5.433336 4.804405 -3.914573 1.738254 -6.104391 4.182478 3.155601 4.609090 2.039619 -15.240074 -1.003609 5.307709 1.583444 -0.862860 3.204066 2.886757 -7.019286 5.355645 -7.783283 9.730815 -14.728197 -3.109522 -8.068037 -8.118360 -3.935496 14.466012 10.286349 12.148992 1.996500 -3.202532 -0.087751 -16.101947 -23.075607 1.781530 -2.460484 0.164939 0.008724 -1.389477 1.248804 -6.822325 -0.313429 6.197592 -7.489595 -5.000735 -3.160547 7.131747 1.343282 -3.847793 -4.373747 -0.369649 4.918303 3.603739 8.925042 -4.983527 -22.795509 -14.496315 -6.196823 9.093684 -4.616370 0.295712 -2.145921 -4.168297 -9.124177 1.729230 -7.779063 2.395132 -4.404624 -5.714275 -12.156088 3.146710 -2.725553 0.636205 0.433982 -9.734651 3.208760 4.533497 4.508940 0.863576 3.445088 0.650211 -11.581759 -9.932559 1.955279 -2.196208 14.748863 7.611028 0.273526 -4.162314 -3.902100 -12.096294 7.834656 -15.068496 5.457083 4.040975 -9.990444 7.630698 -9.073414 -3.162759 -5.996830 6.226094 0.947728 -13.948831 17.055454 12.504239 -11.498804 -3.212456 -5.401560 5.120778 2.871666 11.850304 -7.875184 -3.963688 3.304344 1.621193 -1.043946 -1.392505 4.691788 -0.698980 1.740967 -13.212592 -6.772821 9.426961 7.233208 -1.003213 -0.936583 0.749836 -2.589929 -0.352636 13.506622 3.807161 3.724317 -9.649757 -26.056485 3.733915 -1.182449 -2.255786 4.371161 -7.930093 -5.318318 0.022510 -5.707713 11.102405 -0.283132 -4.033310 9.769819 -13.506932 -11.692076 -8.906441 -2.720914 1.193981 -3.305844 7.437477 -6.329191 0.357507 -4.055101 5.408934 -3.974520 -4.134471 -1.551978 4.536772 6.287611 3.548829 -4.666618 11.331395 1.773192 -3.667553 -3.460213 -0.365029 -3.300375 5.968080 -12.691602 -3.991062 -2.621098 5.794669 -7.289091 5.839431 1.050344 7.173079 2.655863 -5.629357 -2.955672 -4.949610 13.502966 0.763415 3.284562 1.766228 -1.368297 1.595158 -17.458869 -7.821947 10.799576 2.519154 3.156467 0.024521 4.771106 4.249645 1.863441 -14.000350 -1.288032 2.850506 -1.801963 -1.222930 1.505812 -0.315424 -6.166832 9.157024 4.068066 1.813818 10.986367 -2.438759 8.517904 9.443388 -0.568490 3.055632 7.050631 -1.510037 -0.737897 -8.054596 -4.326314 13.479646 2.924027 -0.169048 4.961345 -3.086019 12.231802 3.143180 12.581496 8.631766 -5.201945 6.231127 2.839203 -4.627180 -2.453457 -11.304964 1.710991 4.247744 2.516924 -4.159534 3.297964 -2.708421 2.995773 4.090640 1.574116 12.184198 4.622597 10.316764 10.473646 9.244409 -10.013089 1.836231 2.610696 0.698463 2.673909 8.605673 -6.577357 -7.591705 -1.512186 -0.987838 -9.274235 -2.424485 -2.815432 14.159999 -8.115776 -4.682911 -0.940678 1.851172 11.660307 -5.423556 3.865953 -11.827183 -0.314894 0.997260 11.318065 2.514415 1.473141 -2.756416 2.339134 -1.582933 3.244538 3.224808 -10.432725 -0.858506 -14.462349 -7.460237 -7.977443 3.523702 4.647255 -11.314657 1.950760 -2.733686 7.607833 -15.631945 -1.790725 2.940690 4.444641 12.619356 4.085119 -4.360270 -1.009661 4.223307 3.946148 6.299734 -4.521036 4.798155 -3.113042 1.759638 1.303714 3.703920 2.750672 -11.696753 -4.657958 2.780114 0.918202 2.459124 4.937229 7.440177 -2.646786 6.048277 -5.610397 8.854106 -12.719447 -4.533975 -4.289908 -7.234522 -6.347382 13.127074 9.915466 11.601136 -1.040815 -4.915418 -0.822709 -14.250234 -16.831784 -0.648406 1.133750 -0.790933 5.603245 -2.381882 5.606372 -9.239192 4.659102 6.633331 -4.351848 -6.149206 0.648427 1.825612 1.561924 -2.928907 -4.908561 -0.728688 -2.698146 1.083319 13.055289 -1.755448 -19.892855 -16.409636 -5.588821 9.907786 -6.315025 0.310044 -4.846277 -4.508003 -8.030753 -1.633199 -8.125982 -0.792799 0.868537 -7.834976 -13.278610 5.606575 -2.174151 -3.466455 5.039478 -10.789063 1.940952 6.054509 4.418603 2.862601 1.937218 -1.256574 -8.668467 -6.415011 2.624682 -7.397785 12.217805 6.214516 -1.800425 -5.801341 -6.333169 -8.934313 6.258915 -8.988451 6.750687 1.372463 -3.946697 3.135058 -9.885717 0.179387 -5.519844 3.974812 2.717076 -17.592952 12.766213 10.057992 -7.054851 -0.916291 -1.796376 5.037384 0.626573 7.156679 -8.542562 -6.537618 1.933145 1.977761 0.171052 -1.169682 2.799125 -2.140579 -4.585144 -9.925588 -4.674155 8.836989 5.019362 -1.509613 -0.520092 6.354071 -3.167572 3.184401 9.889208 6.578476 1.283963 -6.887957 -22.770683 4.434320 -0.047737 -3.790053 2.850404 -8.582759 -2.758014 4.750570 -7.491340 9.548722 -3.514820 -3.611507 10.507596 -11.811077 -9.150243 -8.926630 -5.285406 1.516012 0.047330 4.196349 -4.827390 2.069896 -1.674007 1.365744 -5.922404 -5.726140 3.606505 5.658423 9.547347 -0.246773 1.898847 11.002083 3.405862 -2.965325 -3.067415 0.464773 -6.606232 2.583620 -14.326365 -1.145782 3.267433 4.845138 -7.339648 0.563932 -2.007757 1.704479 0.728864 -48.691164 -21.574956 -15.749251 77.691242 15.613900 -12.581895 13.306489 17.702657 1.458894 -101.933445 -43.240753 44.638370 6.364944 -7.577096 12.597967 23.291279 31.761361 22.677292 -112.259354 14.829388 13.177186 -4.487016 -25.288749 -19.595259 0.580738 -29.010343 29.519948 40.831313 5.459600 66.084856 -35.925116 33.346302 51.935521 6.174929 46.599783 47.981134 2.454341 -10.439991 -23.333809 -14.758532 107.823414 28.968418 -7.183838 34.065358 17.364679 80.036570 15.541082 64.537239 22.551642 -21.832400 34.659661 -4.829714 -29.552122 -8.321720 -87.488486 17.471233 49.186791 28.617451 -46.056187 40.367169 -24.846989 21.617465 30.387730 5.666118 95.257755 22.480502 54.044710 59.892999 78.403310 -52.082404 9.381948 10.735401 42.586163 5.437893 37.213703 -40.936576 -35.984457 -81.954974 -0.523756 -88.306982 6.773568 -9.130281 87.643306 -56.642396 2.140252 26.252579 10.187133 69.110045 -49.947428 0.025946 -78.127932 -0.847511 -4.519573 96.971767 8.225435 14.470693 -0.751422 30.376466 -0.435365 31.791863 9.674262 -69.348796 -18.227101 -132.657184 -56.926737 -36.214867 -2.282058 -4.360378 -72.874951 0.827075 29.471064 54.118065 -99.598595 -13.602482 17.944387 13.728726 29.563751 -14.097394 -28.448025 -1.411713 -7.471626 34.453027 31.913062 -38.433076 15.765121 -35.362525 6.535272 18.613788 38.997888 12.975718 -65.719081 -17.018142 21.727620 0.593317 -4.949442 17.605060 18.408511 -34.841782 35.857887 -52.120647 66.358220 -80.770804 -11.469131 -45.477431 -46.970974 -24.846621 83.101392 42.523408 51.529570 15.332205 -28.081463 2.426838 -87.680029 -125.974326 20.339414 0.872224 7.338470 11.364710 -12.868508 12.646684 -45.767728 -5.935379 42.133500 -50.160641 -41.695986 -19.854327 30.847086 6.582228 -27.964247 -36.927003 10.873287 39.904855 10.959804 56.781311 -33.000079 -94.173084 -87.436271 -43.659850 61.837451 -31.926253 2.457448 -15.738776 -16.678545 -61.599015 19.357922 -58.166666 18.919589 -17.469128 -38.478342 -83.569049 20.208118 -19.488509 1.706165 14.852793 -62.038050 24.802335 21.383463 23.902412 -2.607953 18.634675 13.148834 -69.910278 -65.252265 3.931623 -13.678703 73.448994 33.107366 7.590197 -37.590768 -29.165218 -54.540050 54.998290 -59.624128 36.343095 14.596839 -48.274938 44.561208 -53.014945 -15.415064 -41.710938 35.250351 13.985436 -82.209896 98.104340 67.519607 -69.251367 -19.959798 -44.126825 37.153900 12.746901 80.274012 -51.605807 -27.543227 21.882380 10.191220 -7.790993 -27.036846 28.116788 -4.471032 2.722387 -80.263704 -41.393582 53.705808 45.297442 -4.249122 8.444247 22.420617 -7.474108 -6.936868 86.800627 29.645016 19.837912 -55.749547 -132.497345 24.744783 14.082253 2.720545 17.991231 -46.215865 -31.647064 3.104133 -12.557858 68.962695 30.303653 -20.487035 66.749501 -75.506926 -70.540556 -51.493880 -9.495173 12.645300 -29.348432 31.232887 -42.579285 3.206667 -17.698512 29.819373 -17.098131 -26.076156 -19.903293 22.338703 50.227394 15.380232 -21.489203 76.730982 17.175853 -29.803067 -13.791057 -1.788912 -20.632569 31.047948 -62.509774 -25.584723 -7.611602 32.714323 -49.778207 33.858871 -2.892988 28.966122 16.799646 -13.715581 -5.822665 -12.687307 25.601563 0.370081 5.272773 2.420097 -2.924139 0.125322 -34.504740 -14.176584 17.834676 7.240075 7.535314 -0.614216 14.485259 6.348081 3.353071 -27.153589 -1.689807 6.394424 -4.448703 -3.746187 3.417477 -1.319537 -13.028948 16.056365 5.621536 2.884533 21.814183 -6.724910 18.490489 20.059740 -3.530720 5.931134 13.646471 -1.677773 -1.239193 -14.704631 -5.852528 26.123341 4.198017 1.137514 6.413959 -7.830951 23.943507 5.416580 29.183750 6.696341 -11.005763 14.423871 2.829731 -9.274161 -1.042620 -21.739823 3.936001 8.480162 6.628268 -7.991280 7.443547 -6.778259 7.069918 8.769503 6.156323 26.068257 8.427225 21.975308 19.493258 18.124937 -18.737602 5.581088 5.478813 -1.054002 0.907177 20.024425 -14.339118 -13.204327 1.093282 0.968012 -17.360234 -2.900953 -1.750000 30.388613 -17.928315 -10.825290 0.113867 6.155820 25.597162 -12.003745 10.123940 -22.476016 -0.485721 -0.753213 26.885422 4.922835 4.521288 -7.148104 6.397107 -2.979166 4.440209 4.450405 -21.025027 -3.420288 -23.771317 -17.223275 -15.629982 5.694632 11.137762 -27.323224 2.300708 -4.915100 17.169425 -32.529770 0.276794 5.138847 10.030434 31.013235 12.586362 -9.651042 -1.136522 5.973387 8.305123 11.427657 -7.679576 10.396552 -9.323995 5.555230 4.011029 6.862447 4.511053 -29.842046 -6.696073 6.204136 -4.551626 5.149134 12.508833 17.352040 -7.627330 12.290212 -11.488547 15.984122 -27.341453 -9.652601 -9.326712 -22.171687 -11.732015 23.745485 19.268053 21.113809 -2.656228 -11.471813 -1.369709 -30.644762 -34.534200 -5.151577 2.010902 -2.215189 12.050220 -5.298184 10.915598 -17.806501 9.683296 14.501234 -10.621138 -13.331967 -0.219702 9.793586 3.500839 -7.070418 -7.418843 -3.475267 -6.219463 3.117156 28.970847 -2.254458 -37.593736 -36.061633 -11.376700 19.587973 -12.105611 2.519476 -11.013192 -8.858995 -20.114258 -1.968830 -15.965018 -0.751409 1.983235 -12.608936 -26.291126 10.594662 -3.471352 -8.486240 7.896089 -21.392705 4.426493 14.055254 3.507200 5.776109 2.905770 -2.604398 -17.466716 -14.179942 7.655843 -15.683652 22.523093 12.451637 -3.728311 -8.353361 -12.786095 -19.062888 11.878476 -17.257185 13.330360 2.780095 -5.513961 6.647701 -21.155435 0.929994 -11.473261 8.048418 2.987131 -31.216141 27.805557 19.056432 -14.167789 -0.256492 -3.376702 12.428620 0.867196 12.886974 -15.283653 -11.726280 3.148509 4.412045 -0.009178 -1.370837 6.138388 -7.804974 -8.190921 -18.502279 -7.893820 16.416281 10.793684 -3.106942 -2.181569 11.497400 -9.040721 6.297890 18.268511 11.977384 1.222557 -13.285523 -45.956741 7.794803 -8.326265 -9.741460 3.148381 -14.295740 -3.037197 8.673148 -14.049533 19.318465 -5.319627 -7.007778 20.333623 -26.684252 -20.530358 -17.523073 -8.621504 1.582063 0.372382 4.975897 -10.329534 4.090578 -2.127702 4.049324 -11.220112 -14.030837 7.282565 10.723095 21.164623 -1.788062 2.326207 22.265097 7.762514 -2.184215 -7.197341 1.483228 -10.058307 5.396707 -26.090756 -4.462091 6.690852 9.940505 -15.598102 1.889077 -4.455371 2.299749 2.959074 -5.882820 -1.873380 -5.755129 12.068051 -0.260690 1.377444 1.269885 -0.635691 -0.115342 -16.134786 -6.983640 6.707959 3.362338 1.987510 0.391186 6.639362 2.736866 2.777825 -13.064862 -0.209917 3.666727 -1.111101 -1.912663 0.145554 -0.487072 -5.587384 5.893708 1.956698 0.947540 10.191065 -3.031995 8.310596 9.184587 -1.504809 2.981557 6.364738 -2.117495 -0.005437 -4.952542 -1.909853 12.409268 2.838280 0.289878 3.008870 -2.789477 10.885917 1.890694 11.002123 0.252078 -4.790187 6.159337 2.062645 -3.854217 -0.315007 -9.981150 1.977660 5.720602 3.844545 -3.511778 4.086728 -3.959755 3.350365 4.334241 2.233117 12.772138 4.638302 9.936210 9.815629 9.050762 -7.702683 3.293487 1.337086 -0.266177 -1.218254 9.222537 -6.294842 -6.362507 -0.724274 -0.791241 -9.832918 0.168474 -0.131348 15.442484 -8.473641 -3.601165 0.429683 3.823720 11.799183 -5.661791 3.214605 -9.813923 -0.073912 -2.181442 13.321199 2.258418 2.678404 -3.700962 3.740884 -1.100129 1.472998 1.705737 -9.245061 -1.351272 -12.770966 -8.112713 -6.811501 2.521694 4.638519 -12.637337 0.741958 -1.119196 7.219470 -16.042389 0.397959 2.195748 4.597046 12.647374 2.987452 -5.564012 -0.067001 1.230125 3.975048 4.422249 -4.097561 4.209118 -5.016472 1.572446 1.859086 3.634394 1.987009 -13.446273 -2.845054 1.662517 -2.626201 1.993532 6.476112 7.703153 -3.709883 5.545759 -6.362863 7.835482 -13.373681 -3.471952 -4.919026 -10.892931 -5.004574 9.733254 8.229586 8.484450 -1.913201 -5.181723 -0.780677 -14.890527 -15.492367 -1.230322 0.837126 -0.299301 4.805480 -2.323448 3.696359 -8.317856 4.369719 7.260786 -5.207227 -5.317856 -0.531452 7.573774 1.555292 -4.047398 -3.994305 -1.823773 -1.311767 1.640552 12.221272 -1.378512 -14.425894 -17.110682 -5.005239 9.093076 -5.291544 1.243562 -5.442408 -3.262549 -9.424226 -0.072818 -7.641833 0.580574 0.839351 -4.871415 -12.258686 4.018611 -1.277099 -3.557277 2.734792 -9.367460 2.149168 7.170824 1.394371 1.965177 1.438540 -0.196687 -8.078117 -6.918029 3.557753 -6.569779 9.440592 6.390528 -1.151425 -4.510744 -5.036036 -8.955267 5.540074 -5.847263 5.838838 0.836526 -2.918048 3.727908 -9.666098 0.198697 -6.483383 3.022609 0.415104 -14.695129 12.829614 8.049858 -6.701896 0.034024 -2.424484 6.382302 -0.083082 6.071510 -6.722509 -5.026826 1.649946 0.548849 -0.087549 -1.655761 2.942364 -3.907478 -2.915706 -8.663765 -3.115352 8.543547 4.909181 -1.707298 0.112343 4.728475 -4.612750 2.613474 8.452079 6.351924 0.167344 -6.927050 -19.942462 3.007534 -4.958677 -3.118775 0.106663 -4.971570 -2.219925 3.694623 -4.412036 9.012952 0.121163 -3.837944 9.179922 -12.305276 -9.746053 -7.655370 -2.662864 1.496384 -1.272320 1.182121 -4.939348 1.816395 -0.353504 2.963420 -3.537038 -7.430880 2.153684 4.579791 10.653833 -0.740967 -0.350570 10.435294 3.597999 -1.392434 -3.013649 0.539654 -4.478999 2.665935 -11.161307 -2.370313 2.390549 4.713805 -7.571175 2.475025 -2.334089 1.700227 2.349166 -26.023117 -11.467582 -8.813450 39.023403 9.283796 -2.173805 3.321895 7.573750 4.146747 -49.378778 -23.081134 29.669414 1.844235 2.209804 6.336694 11.717050 15.641859 9.153967 -49.816454 5.268891 -0.033004 -2.356602 -11.333670 -9.007349 2.210226 -6.752266 17.676872 14.308931 4.499494 26.440114 -17.717714 19.285625 22.406448 3.414641 18.427938 12.693454 0.357080 -7.538240 -17.287653 -18.178196 49.502074 9.488963 5.015679 25.045056 3.104134 32.653233 4.500570 43.187777 23.238633 -8.514287 20.971745 -9.604036 -14.584594 0.707736 -42.690550 14.186195 17.505364 5.284312 -17.256153 15.699222 -4.482434 12.408573 13.575917 -7.228361 44.739721 13.925258 28.824634 29.513507 33.957074 -23.476178 5.142827 5.487928 23.618317 9.773535 18.210051 -28.548883 -11.825734 -26.176592 -0.299350 -35.625959 9.327461 -13.143310 47.976994 -25.336946 -1.832777 7.672494 2.430809 32.527306 -22.359812 7.989497 -35.284438 2.150841 -1.248587 37.756800 1.217625 6.170016 -3.106633 8.275551 -4.048568 13.540670 5.041628 -24.448495 -3.666939 -57.466757 -26.778133 -8.480643 1.182310 -2.261299 -33.809163 7.241434 0.497378 24.537375 -44.649725 -14.934863 5.495626 4.307342 18.093909 8.339430 -11.195450 -8.570411 0.550076 20.443603 10.010517 -18.194247 11.771452 -20.098600 -4.216422 8.142382 23.045495 8.136836 -29.885332 -11.601790 4.315044 5.218691 -1.316949 6.636361 12.156534 -13.323320 17.990878 -16.230281 24.684570 -37.685036 -15.803318 -21.462871 -20.111173 -10.399134 52.197928 17.364419 35.098181 13.498094 -10.009917 -5.160812 -40.241391 -52.954222 8.529612 1.113373 2.564061 11.528412 -2.966101 7.587978 -20.509161 -5.251322 21.906560 -24.913943 -24.921882 -12.521164 7.743614 -1.363598 -11.177444 -22.963670 10.074574 17.810470 -3.519264 26.044543 -9.380064 -53.149489 -38.804951 -17.926608 25.787944 -14.092007 5.388746 -4.601790 -3.325388 -23.448387 2.092167 -29.007590 5.892969 -1.982024 -26.477612 -37.574234 9.447933 -6.965047 0.697692 8.344518 -28.500632 15.277510 13.396542 25.817199 -3.375416 14.068160 4.646931 -37.023671 -34.639418 -4.667042 -7.738742 34.519593 15.373246 2.145408 -19.178116 -16.302388 -24.556532 23.902562 -37.103010 16.013487 4.862359 -15.260822 12.498721 -28.577154 -2.626155 -22.515674 13.623498 6.209085 -57.200252 39.544427 26.245595 -31.745685 -10.048351 -28.947949 20.895216 2.120984 41.379237 -23.110689 -10.074096 9.102765 9.547386 -5.107950 -18.345750 14.155263 0.644231 -6.804349 -36.495929 -22.020752 22.860466 17.417934 -1.710053 0.358880 16.248097 1.050004 0.977340 41.402340 14.397369 5.112145 -26.237326 -73.664068 7.430720 24.367725 -1.711322 13.665923 -30.263592 -14.592264 2.966098 -12.999205 29.387623 4.090468 4.013283 28.705965 -33.946670 -27.500008 -17.477111 -3.508664 3.856913 -10.966339 13.902198 -20.438066 -2.102298 -7.441692 11.001401 -13.744883 -11.083619 -12.868210 7.844505 25.579687 4.537462 -1.091598 33.194779 13.727483 -13.284640 -2.783054 -2.578642 -10.226920 9.830416 -36.768789 -8.516926 -0.927219 7.870702 -23.662703 13.610073 1.122215 11.198677 1.315587 -5.119951 -2.842007 -4.904650 12.117359 0.099766 2.089913 1.544112 0.103658 0.363421 -16.128812 -7.576819 10.185152 2.184945 2.326352 0.466460 4.281762 3.400976 2.991738 -15.292390 -0.888794 2.916568 -1.038132 -1.110499 -0.797105 -0.135026 -4.478624 7.872947 3.656800 1.570495 9.750828 -2.897424 7.642811 8.212990 -0.030107 2.797974 5.946965 -2.866322 -0.877146 -6.364957 -4.862097 12.205786 2.327279 0.798318 5.105648 -2.510521 10.541524 3.074333 9.324495 6.447183 -4.328569 4.905113 3.112508 -4.501993 -1.715588 -10.200644 1.264940 3.861189 3.228057 -2.938448 3.956446 -2.969878 2.762994 3.704114 0.077499 12.254340 3.035459 9.820150 9.407792 7.901632 -8.569032 2.472693 1.594688 0.968069 0.913299 8.571650 -6.913524 -6.400668 -3.224965 -1.388333 -12.087216 -0.703032 -0.951362 16.336031 -7.364010 -3.850259 -0.554550 2.903506 11.244833 -4.807465 3.284501 -9.829194 -0.279545 -0.515620 11.520799 2.958147 1.605974 -2.447967 2.763629 -1.260820 2.596691 2.123487 -8.636318 0.460374 -15.302101 -6.072678 -6.479009 3.056341 3.629073 -10.778225 1.899801 -1.206288 8.166516 -15.299966 -2.265601 2.528463 3.930411 8.198797 1.126340 -4.374602 -0.883368 2.020042 4.673798 5.543390 -5.308755 4.066193 -2.496747 0.272275 1.107269 4.263068 2.942207 -11.632977 -5.189951 2.267927 0.279956 2.243109 4.967386 7.279597 -1.100714 5.140801 -6.117361 8.267819 -11.976716 -2.640319 -4.240548 -7.261167 -5.553901 11.293519 8.681550 9.219187 -1.135170 -3.329496 -0.189132 -12.671848 -15.617770 0.692328 1.526150 -0.354060 4.719030 -1.966844 4.513237 -8.228957 3.543139 7.029713 -4.670324 -5.595113 -0.106185 3.475545 1.886593 -3.378182 -4.715740 -0.054280 -1.518094 0.724756 11.213941 -1.629863 -16.723377 -15.565471 -5.025807 9.047266 -5.358569 -0.026560 -4.183946 -4.022946 -5.497296 -0.536471 -7.525548 0.075372 1.221433 -7.051316 -12.090278 3.866604 -1.445205 -3.156172 4.159017 -9.204073 2.014668 6.919076 3.476609 1.193399 2.387083 0.104156 -7.985159 -6.270397 2.081660 -6.732485 8.408812 6.719042 -1.156325 -7.225886 -5.011305 -7.577143 5.826332 -7.097987 6.514158 -0.087178 -3.820962 3.204875 -9.358446 1.653499 -5.130665 3.143001 1.951823 -19.777555 12.099965 8.457310 -6.469336 -0.499139 -2.719541 4.752091 -0.060190 6.365344 -7.986575 -5.435294 1.572036 0.765988 0.253226 -2.154107 2.577668 -1.952351 -4.428723 -8.920990 -4.085890 8.296733 3.914275 -0.843306 0.231825 6.115682 -3.286512 2.708188 9.626881 5.954748 0.478253 -7.097834 -22.158592 4.062057 1.185001 -2.792798 2.257722 -6.844304 -3.032339 3.718130 -5.980894 7.782929 -1.263211 -4.118653 9.031757 -10.675245 -8.521154 -8.065919 -3.504633 1.898124 -0.787357 3.020702 -4.486509 1.329704 -1.313771 1.779794 -4.588390 -5.325983 2.107142 4.805382 9.987117 0.984181 1.374298 10.116371 3.333080 -3.027447 -2.624884 -0.509544 -5.701267 2.211718 -12.844320 -1.582496 2.934653 4.572179 -7.270462 1.112117 -1.020903 1.951271 0.964950 -2.292849 -2.637956 -1.439823 6.729617 0.230922 2.638776 0.865841 -0.194945 0.562998 -9.583451 -4.136217 5.166052 0.812598 1.786067 0.870116 1.664508 2.174757 0.724493 -8.514944 -1.236406 1.763180 -1.000039 0.646514 0.896519 -0.240565 -3.247730 4.493717 2.949233 1.055035 5.391863 -1.294871 4.248120 5.091877 0.626559 0.778570 3.271877 -0.978846 -0.847698 -4.099032 -2.716645 6.992686 0.628409 -0.224830 2.300990 -1.531495 6.109439 1.474259 5.931157 5.938650 -2.596132 3.470457 -0.549547 -2.366270 -1.020887 -5.868457 0.336302 0.853706 1.437785 -1.785306 1.743506 -2.449845 1.450646 1.523391 -0.050226 6.687207 1.617550 6.403218 5.210238 3.292087 -5.484396 0.642584 1.414443 -0.384126 1.553689 3.088053 -2.812959 -2.245075 -4.193163 -0.158805 -4.798966 -2.324963 -1.068594 6.844383 -3.547048 -2.575250 0.054515 -0.001779 6.398161 -2.400736 2.820306 -6.674228 -0.202697 2.473407 4.079844 1.758706 -0.447962 -0.653393 0.678964 -0.890464 1.695175 2.533948 -4.786052 -1.578558 -7.446990 -3.584909 -3.805707 2.528545 2.228953 -6.204681 1.817700 0.939330 3.418528 -7.471644 -1.418620 1.619381 2.471415 4.982718 2.087078 -1.671194 -0.931376 2.364333 2.803546 4.006010 -2.660618 2.820875 -2.399958 1.206803 0.730268 1.877566 1.611036 -4.958779 -3.322105 2.360238 0.548804 1.217037 2.459668 3.937705 0.255179 2.894952 -2.371227 4.897402 -5.654400 -1.127137 -1.968869 -1.940353 -3.258442 8.910812 6.027556 5.088786 0.757385 -3.082110 0.141988 -5.903703 -8.276071 -1.093160 1.090730 0.191119 2.663496 -1.273820 3.682973 -4.053975 2.925842 1.891854 -2.240959 -3.128089 0.881855 -2.940747 0.750902 -1.554551 -2.336918 0.347499 -0.714722 -1.075744 7.046158 -0.606609 -9.590087 -8.030667 -2.862685 4.851055 -3.526117 0.054755 -2.308575 -2.052042 -3.468985 -0.316091 -3.641287 -0.663765 0.912058 -5.534173 -7.035383 3.049794 -1.291948 -1.220569 3.297219 -5.130537 0.820584 2.197245 1.990571 1.709328 1.348010 -0.842875 -4.202194 -3.472698 0.042883 -4.420866 5.750925 2.477188 -1.325637 -4.280568 -3.454610 -3.912650 4.065063 -4.688117 3.519113 -0.260839 -3.390954 0.920134 -4.283825 0.265079 -2.391528 2.000351 2.035428 -10.354839 5.925441 5.038933 -3.407123 -0.755997 -1.666305 2.106897 0.537762 3.472948 -4.487076 -2.597056 0.121624 1.414580 0.338221 -0.294136 1.316534 -0.883978 -3.113665 -5.502690 -3.240262 4.332599 2.214569 -0.466323 -0.115196 4.541581 0.050338 2.094690 5.114836 2.579038 0.000748 -2.841573 -12.053845 2.631975 4.454860 -1.626263 2.479140 -5.169250 -1.258018 1.239629 -3.671226 4.325583 -1.047208 -1.406731 5.144497 -4.818914 -4.174962 -4.786986 -2.518324 0.216337 0.201040 2.877957 -1.548654 0.853450 -0.661293 -0.100174 -2.649514 -2.524163 0.836556 2.700511 5.119220 0.675248 1.409140 5.083365 1.916069 -2.317260 -1.434581 -0.271294 -3.590112 1.807648 -7.118025 -0.593058 2.213396 2.223505 -3.673741 -0.874632 -0.217493 0.212461 -0.644334 -8.088303 -1.524263 -7.586989 15.893774 -0.572683 3.520676 2.236189 -0.591352 0.329491 -21.024321 -9.653656 14.365721 3.932612 4.626399 -1.293879 7.386339 3.886197 3.481487 -19.542842 -1.646970 4.246712 -2.044377 -1.174585 0.530927 -0.617627 -7.219903 10.175300 4.695899 2.391347 14.345389 -3.788229 10.396124 12.341482 -1.323885 2.986326 8.983216 -2.376029 -0.742912 -9.594277 -5.959614 15.288565 3.583448 0.267309 5.522554 -5.234788 15.491208 3.880602 14.722005 7.188205 -6.926637 6.605598 5.165300 -7.039154 -2.138671 -12.590618 1.695584 4.556896 3.991546 -4.107178 4.966195 -3.467469 3.690569 5.432063 1.834007 14.581622 5.189625 12.385430 12.250889 11.092393 -12.633923 3.295541 2.863570 -0.282807 1.308299 11.514344 -8.584042 -9.720461 0.398217 -0.283679 -14.818029 -3.069998 -1.194118 19.750173 -11.503231 -5.822899 -1.049712 3.774640 15.421314 -7.170265 5.347701 -13.658954 -0.768336 -1.214581 16.452828 4.132812 2.360676 -3.636261 3.499429 -1.392023 3.180161 2.211977 -13.113818 -0.872541 -16.233196 -8.671678 -10.271909 3.883706 7.393434 -15.258477 1.627389 -2.284944 12.609453 -20.756455 -1.447435 4.003575 5.782123 14.284717 6.253320 -5.639121 0.208672 3.465695 4.741867 8.521717 -6.297104 5.753146 -1.766685 0.998156 1.547356 4.236790 4.067287 -18.042061 -6.127910 4.304745 -2.011304 3.986499 7.508139 10.073421 -2.832191 7.478599 -7.845796 10.749935 -16.162816 -4.876657 -4.620099 -10.882655 -8.219256 11.611206 12.754418 12.326673 -2.422613 -4.457679 -0.787070 -17.715983 -20.163972 -0.933685 1.996265 -1.004358 6.929157 -3.345456 7.193423 -11.779262 5.991785 8.214543 -6.084989 -8.169671 0.838741 7.650310 2.560872 -4.101938 -5.036013 -1.860625 -4.983389 2.174382 17.039663 -2.222145 -23.389513 -21.450951 -7.164611 12.969990 -7.875966 0.043805 -6.814448 -6.065843 -8.856589 -1.738638 -10.402425 -0.856328 1.789171 -7.795230 -16.766813 7.020059 -2.235193 -5.880785 6.044419 -13.426051 2.298552 9.702649 2.762447 3.043074 1.911692 -0.636670 -10.072107 -6.914047 4.253567 -10.209743 12.608024 9.339432 -1.935581 -8.340381 -7.629177 -11.156565 7.751879 -10.081858 9.257697 -0.157716 -3.423677 4.923977 -12.547048 1.533390 -6.685872 5.276847 3.086730 -22.677761 16.779267 12.491256 -8.148290 0.155912 -1.470694 6.173052 1.200050 7.718572 -11.214533 -9.220004 2.241498 1.358612 0.398068 -0.880750 3.778300 -4.122794 -5.791446 -10.979208 -4.056744 10.823612 5.860190 -1.456111 -0.290551 8.140370 -5.027847 5.456111 11.108636 7.792266 0.622207 -9.105543 -28.871227 5.985739 -3.266222 -4.890393 2.922611 -8.477070 -2.918081 6.346904 -9.080430 11.851026 -5.302842 -6.249161 12.768394 -15.664576 -12.447002 -11.699526 -5.673336 2.184200 0.514332 4.242383 -5.834362 2.766486 -1.271232 1.417987 -6.768303 -7.775008 4.868011 7.488920 13.579557 0.338148 1.980072 14.292914 4.117937 -3.060346 -4.204178 -0.371822 -7.591319 1.644859 -16.638997 -1.526625 4.947143 6.876691 -9.876012 0.807181 -1.776435 1.094445 1.489115 -5.590356 -11.135848 -4.599060 15.394473 -0.282773 4.362761 1.726956 0.671297 -0.499741 -26.407457 -8.666592 11.724050 2.171448 4.440181 0.284581 4.381300 4.792656 2.897585 -26.827304 -2.382829 5.419441 -0.071485 0.408570 1.733089 0.226705 -5.717398 12.582725 4.235502 2.089157 12.450440 -3.378541 11.217421 12.323102 -0.750968 2.360904 6.699644 -3.683492 -1.664735 -7.618773 -5.231939 20.178136 1.780215 0.231288 6.753637 -4.245012 13.792690 3.038663 15.583308 16.586881 -6.371076 9.987079 -2.247333 -4.637545 -2.351716 -16.436750 0.447193 3.361707 5.405798 -3.099714 4.073299 -3.280382 2.524469 4.564932 0.191487 18.599160 5.476745 16.908685 13.159509 9.376592 -9.845574 3.825128 0.628473 -2.165999 2.392179 7.751348 -11.331687 -6.175078 -12.860307 -2.382912 -14.542976 -3.697293 -2.934266 12.636467 -8.594224 -4.434739 -2.996668 2.638278 14.778165 -4.950353 5.601807 -18.311967 -1.538367 6.115882 11.127104 2.304654 1.497920 -2.893041 2.021324 -1.989542 2.004287 7.571062 -11.374067 0.592475 -18.772004 -7.513922 -8.095512 3.965910 6.978021 -14.711513 3.503655 -4.482472 5.894838 -19.364454 -3.616883 0.717319 5.595536 16.936996 5.777850 -6.724796 -2.846535 3.503450 4.801281 6.533558 -6.660562 6.716127 -9.553211 3.608355 1.513996 4.357976 4.452172 -15.739051 -7.292685 3.584365 1.039578 3.553129 8.242653 10.558697 0.193877 6.343125 -7.527081 10.027670 -13.921359 -5.337478 -3.761029 -8.520297 -7.642009 24.297352 12.252396 9.291880 -0.656012 -11.088174 0.006894 -16.060799 -21.889783 -1.182533 1.371905 -0.232751 7.378271 -3.618210 6.558241 -11.101378 5.198295 7.106830 -4.096193 -7.160662 -1.179752 -8.718497 3.272986 -2.863495 -4.207906 -0.456555 0.181997 0.027874 16.268239 -1.817580 -23.601965 -20.978037 -5.721429 11.337736 -7.227556 -0.778236 -6.823865 -4.207560 -13.273126 -1.247846 -9.030195 -2.398132 1.016400 -12.875349 -15.875507 6.984526 -2.323806 0.095780 5.483728 -11.410739 1.999285 3.826700 9.949557 3.218438 0.967895 -2.288690 -12.662188 -11.405015 3.139482 -10.089235 15.966333 1.322486 -2.488936 -9.638504 -6.798374 -9.594591 9.343546 -10.513003 8.936893 0.918531 -7.441738 3.206297 -10.727042 1.593493 -6.689192 3.921061 2.398820 -24.759369 18.388891 8.022701 -7.957885 -0.364259 -3.462566 6.885336 0.154870 4.694596 -8.882363 -7.422329 1.957669 3.042914 0.768274 -4.346199 2.446401 -2.323105 -6.052395 -16.182206 -9.936753 12.005554 3.861594 -2.279970 -0.670153 8.642738 -3.875368 0.189266 15.328328 8.348130 0.524070 -5.803582 -28.777590 4.253197 11.515463 -2.287074 1.054295 -14.433255 -3.305877 5.294113 -8.638542 10.389957 0.610632 -4.552432 11.127257 -13.406408 -10.193626 -11.118841 -4.588768 1.920469 1.241708 3.228393 -4.116838 2.227335 0.467424 1.870928 -4.877267 -9.208452 3.115272 6.645753 11.270790 -0.837431 2.228957 12.024811 4.850723 -3.370432 -3.338782 0.629798 -7.822132 6.122024 -16.233946 -1.197782 4.980542 5.130448 -9.293179 0.365208 -2.404434 1.589839 0.216621 -14.067541 -4.068095 -22.662551 42.980705 -4.393785 2.526842 4.874760 -2.551923 0.427704 -52.739382 -20.210421 28.557010 12.503384 4.722588 -1.847948 17.773693 4.508760 12.805048 -44.536547 -1.568741 12.611246 -0.737930 -7.183338 -4.909036 -3.209771 -14.826215 25.180625 8.143917 3.099776 33.894279 -6.377559 25.844420 29.613790 -5.247720 6.897823 20.552585 -8.052509 3.958418 -19.262289 -7.133316 38.051465 13.006068 -2.957433 11.433747 -10.955727 35.060019 10.516019 24.285978 -1.983171 -15.143639 12.132648 24.908197 -10.768226 -8.642965 -30.377830 5.035946 21.036309 13.995475 -9.216448 13.242154 -11.373587 7.186590 15.682800 10.545152 40.823311 15.306379 33.530728 35.503576 29.524778 -25.532813 11.514012 0.426517 -2.562994 -8.524164 35.712340 -16.767477 -30.422374 0.391744 -6.895357 -38.093990 -2.368427 3.693115 47.545847 -28.090151 -10.148918 -2.978276 18.241946 37.872618 -18.972956 7.350448 -30.971077 -3.669601 -12.660505 50.579847 11.330054 9.263440 -12.818184 14.672888 -1.364261 3.552384 7.211033 -31.111598 6.754992 -44.166109 -23.093738 -23.804422 7.026594 17.608244 -37.371719 -0.610040 -4.500397 25.487266 -55.249232 0.039951 7.968734 14.047355 44.114282 -6.033611 -17.127797 8.658977 1.979864 6.275228 15.757429 -15.129973 11.909744 -4.045873 2.439443 4.315194 8.756617 11.045746 -46.463572 -10.396798 4.431993 -7.331170 8.813788 21.983857 24.399121 -11.646523 15.946601 -24.238944 27.538921 -42.202995 -6.991318 -10.838923 -33.587938 -17.232211 17.144798 22.119082 24.114139 -15.447068 -16.546443 -0.877504 -47.954124 -55.208576 2.150256 7.478861 -5.114527 14.424076 -8.927808 11.244774 -29.992639 17.630801 31.431940 -14.911471 -16.153016 3.196247 31.639440 7.180721 -12.733018 -8.712009 -8.180616 -9.990997 14.349362 41.932696 -4.879593 -46.393564 -58.020008 -12.322020 30.326595 -16.350044 -1.664679 -19.128613 -15.417972 -29.648825 -0.335819 -25.436012 5.635728 2.940698 -12.653431 -40.167260 12.659320 -2.957389 -11.923309 8.989305 -31.202743 5.662443 22.909074 -0.483216 3.714987 2.217207 4.881950 -24.284914 -18.926554 16.260179 -21.305947 28.718886 21.005541 -0.604919 -17.158376 -13.642463 -28.433829 15.392641 -14.230463 20.969363 1.099418 -10.717788 14.206341 -31.579087 -1.707666 -20.365229 8.372493 1.945891 -38.463256 45.685252 24.827719 -17.434231 3.619230 1.858806 17.496839 -0.684173 15.394519 -28.214537 -23.368003 6.114835 -1.578368 0.469061 -4.067796 7.030101 -13.681510 -9.762784 -27.055900 -6.680589 27.672262 13.604008 -4.988712 2.907900 13.201822 -24.095926 4.191985 27.383203 24.923218 3.068424 -23.859910 -55.983489 11.456888 -32.236839 -9.602317 -5.568917 -12.776845 -7.919228 15.838531 -10.623151 27.307180 -2.579147 -23.533877 28.915508 -44.390245 -31.516692 -26.787975 -9.544295 8.236554 -2.871567 4.099958 -14.864049 8.863440 -0.072116 7.606654 -12.905148 -23.811992 16.143080 16.578322 33.489868 -5.016451 -4.071246 34.566763 9.971840 -6.553833 -9.495853 -0.969867 -20.063149 5.340009 -39.124462 -4.952729 9.671069 19.322393 -24.521282 8.003597 -9.076996 4.116619 8.911409 -24.996527 -10.395479 -11.457693 43.196263 7.442165 1.583071 3.651753 4.911455 3.886737 -53.060248 -24.552466 29.565156 4.869620 5.740019 5.703104 14.250487 15.625106 9.137794 -51.211001 2.507510 4.102880 -2.125854 -8.758224 -5.844505 1.658645 -10.036155 21.923534 13.943034 5.195766 31.518977 -16.516761 24.248256 26.776223 1.123433 16.930535 15.314581 -0.867620 -6.109876 -21.699506 -16.715546 50.318941 7.824351 4.988593 24.240616 -1.536674 37.486582 6.488781 43.598287 23.778758 -11.685084 23.380079 -5.148755 -14.404245 -1.458728 -42.699920 13.016792 17.244387 7.611789 -16.192587 15.631584 -4.617154 12.475461 14.902871 -3.693776 46.306083 16.320001 31.480019 32.280434 35.365677 -26.764743 7.101146 4.822988 17.666615 8.055976 20.606142 -30.321281 -15.071127 -21.455926 -2.129164 -35.426195 6.472743 -12.364692 47.749993 -28.212399 -5.302315 4.328308 3.297172 36.360932 -21.659139 10.127168 -37.587208 0.333660 -0.199457 38.088094 2.260929 6.545175 -4.879386 8.546787 -5.170442 11.822821 6.588141 -29.058906 -2.427276 -53.957207 -29.021993 -13.075111 4.272701 3.490979 -37.278786 7.692337 -5.637438 22.978520 -49.361509 -13.647534 5.426758 8.861576 24.268958 9.686807 -12.268625 -8.535215 4.810707 20.623415 12.513175 -19.067087 14.966111 -21.309832 -4.105351 8.210732 21.854993 8.616357 -32.048962 -13.979225 4.473203 3.544679 2.468234 10.932133 15.969408 -12.592916 19.713507 -18.589575 28.011450 -40.356032 -19.127097 -21.230258 -23.438640 -14.362332 50.796263 19.375781 36.680784 9.422345 -13.893384 -4.153665 -44.446932 -54.015121 4.755474 1.796045 0.553779 15.827642 -5.484163 11.350421 -25.379457 -0.389311 23.995142 -23.875982 -26.397996 -10.423149 5.755578 1.060128 -11.857473 -22.029133 7.129578 11.043531 -1.165762 32.797936 -7.912746 -55.181418 -46.345338 -18.817333 29.737196 -17.288994 5.223612 -9.581399 -6.146596 -27.305321 0.077389 -30.767886 2.792315 0.295777 -27.118981 -42.036584 13.780783 -7.429770 -0.737906 11.530944 -32.146447 14.317663 15.566396 24.703057 -0.189413 12.394643 1.585873 -36.581811 -33.397419 -0.577491 -13.269319 36.295026 14.339911 0.611222 -20.026599 -18.999984 -26.207151 24.553902 -34.438992 19.383960 6.003995 -12.744438 11.871371 -32.199078 -1.157881 -24.118737 13.292326 6.604596 -58.550015 40.748097 26.466081 -31.526363 -7.977985 -24.376866 23.015032 1.028605 37.089971 -24.629292 -14.707859 8.970336 11.054674 -3.835802 -18.551604 12.795974 -2.235886 -10.382708 -36.957952 -20.633127 26.951040 18.089496 -3.553801 -0.873213 19.818648 -3.881289 2.491130 40.391270 18.471494 5.136065 -25.093788 -74.364962 8.597266 19.655361 -3.321063 10.810105 -31.665926 -12.572121 6.885214 -14.461911 32.173957 3.252691 0.791265 32.535207 -36.923994 -30.865389 -22.281906 -6.804281 4.850348 -8.257076 11.467365 -20.917641 0.698569 -5.223378 10.458454 -15.552687 -15.637779 -5.343991 11.670846 30.121303 0.471749 2.107634 36.861170 15.359250 -11.799449 -5.006758 -0.670352 -14.564261 8.642941 -39.909707 -8.043566 3.611743 10.567965 -26.377097 10.973239 -2.688659 9.296851 1.568021 -21.557058 -13.335286 -8.342073 21.909321 4.331272 -6.682224 4.525994 7.317092 3.806467 -31.038140 -13.291622 22.987658 1.497683 -7.542044 2.074395 8.935841 12.417682 3.722003 -38.150618 8.767238 1.534369 -3.909657 -16.847901 -2.892463 -0.354975 -13.209984 10.811395 14.477199 -0.726018 19.537343 -10.513774 8.825681 15.893976 -1.028239 16.740371 18.940156 -2.575598 -4.751222 -2.501774 -1.734684 36.034925 13.046980 -2.259198 11.605439 10.794526 25.710339 1.926107 34.040774 15.368849 -6.563100 16.904864 2.113036 -12.714167 -1.359408 -30.713797 3.685268 15.386536 2.384022 -17.543092 13.766388 -10.371252 6.429109 9.922216 6.689008 34.115823 8.324710 19.082353 16.726538 27.620176 -13.202547 2.635521 7.129032 18.520211 5.196817 16.132293 -14.235709 -14.927613 -21.781739 2.348133 -24.834893 2.534597 -6.197281 30.766537 -17.804313 -0.998737 6.384593 5.902088 22.399027 -17.205859 -2.061524 -25.032114 1.315748 0.039767 36.115312 -0.679282 9.676966 -1.267702 9.386607 -2.548448 10.468662 1.440487 -25.820736 -8.549589 -45.227675 -18.771992 -15.018438 -3.825430 -4.151795 -28.174138 2.300007 8.102187 17.966191 -31.734994 -2.126421 5.827663 -1.413454 19.021572 6.435975 -10.806429 -2.546583 -1.482824 13.344937 8.318672 -8.512718 2.674716 -15.970923 8.139560 8.312816 9.841317 2.762082 -27.517834 -1.009852 10.577808 3.728893 -2.945968 6.725607 5.291946 -15.660398 10.876011 -16.337559 19.918781 -29.957525 -8.025152 -18.429890 -14.685125 -7.482502 30.950299 19.514592 23.520597 5.713069 -6.456470 -0.260497 -32.736695 -44.958356 3.245586 -7.760814 1.369452 -0.766447 -2.249916 0.985905 -12.355213 -2.431031 9.882913 -16.317086 -9.984330 -8.810333 12.538826 2.223326 -7.763330 -9.447931 -0.667737 12.532264 6.254515 16.717478 -10.527338 -45.500955 -28.241065 -13.246247 18.521309 -9.115211 1.633506 -4.479933 -6.823396 -18.934564 4.511296 -16.090953 4.001980 -10.273867 -11.180524 -24.662777 5.566933 -5.984704 3.718115 -0.861399 -19.842773 7.068780 8.584903 11.893172 1.663041 7.846126 0.629465 -25.641060 -21.607674 2.672995 -2.970909 31.217816 14.208234 0.788588 -7.812812 -7.518911 -23.950282 16.580193 -31.026176 10.459838 9.295181 -21.271691 16.865071 -16.677142 -6.707401 -13.638219 12.822074 0.825144 -28.209956 35.342743 25.288290 -25.361828 -6.980891 -13.880397 11.567423 6.357506 25.520984 -14.697034 -7.019512 6.820394 3.532674 -2.706355 -4.599522 10.428493 -1.615022 5.607114 -26.914597 -13.953715 19.642479 15.664519 -2.280453 -2.423402 0.170118 -3.670196 -0.482541 27.563319 6.665158 8.071482 -20.301038 -54.329424 6.721226 2.722632 -3.018982 9.704550 -17.027936 -11.591626 -1.452615 -9.043813 23.770335 2.955136 -4.896893 19.612145 -26.912125 -24.627122 -17.994231 -4.218615 2.029206 -7.141543 14.681742 -13.580034 -0.228096 -8.331945 13.014684 -7.050205 -8.830934 -6.075607 9.173917 12.621412 8.148181 -11.203460 23.156911 3.905234 -7.584717 -6.929601 -0.722608 -5.930053 12.018896 -21.772815 -8.569291 -6.786163 11.293851 -15.200876 14.194722 2.214944 16.719115 4.510493 -5.913878 -4.574555 -5.911679 17.891705 0.501637 2.637420 2.370245 -0.774924 0.028195 -25.468854 -11.125782 13.293565 2.831545 1.725394 -0.591582 5.360318 4.898676 6.231845 -25.239443 -1.548724 5.299461 0.063645 0.548675 -3.068675 -0.079035 -5.980745 13.404455 4.863537 1.950898 13.937021 -3.577891 11.354535 12.535972 1.454283 4.590168 9.014188 -6.515003 -0.496908 -7.533979 -6.823769 18.771250 4.435780 1.840861 7.302612 -2.873677 15.035398 6.934016 8.978184 9.837412 -5.499841 5.561407 5.816197 -5.657289 -3.571534 -16.110933 1.001067 6.020089 5.364638 -3.685294 5.527193 -3.111616 3.693625 5.399239 -0.613461 18.466843 3.708608 14.638760 13.896365 11.335402 -11.071337 3.852793 0.356117 1.240374 -0.456301 12.017398 -11.093080 -11.216755 -4.582000 -4.702158 -21.194838 0.626543 -0.208974 21.647545 -9.620573 -4.282319 -2.733595 4.296376 15.308638 -5.145473 1.278699 -15.373749 -0.014033 -2.387318 17.379783 4.763917 2.730926 -3.504913 3.437946 -1.289007 2.682926 4.187810 -12.829615 3.988233 -24.689392 -6.742993 -10.234374 5.041601 5.200398 -13.667256 2.139540 -5.387581 11.141379 -22.979938 -3.711240 3.186132 4.644160 10.663621 -6.594233 -5.770864 0.544469 1.081713 6.501168 7.041996 -8.974203 3.994699 -2.768568 -0.576255 0.412125 5.885037 4.315928 -15.886830 -7.834120 1.494485 1.513491 3.211750 8.025367 9.980582 -0.273621 6.339995 -10.026856 12.150045 -15.811265 -1.469916 -5.781702 -10.597808 -8.285670 15.405191 10.490040 10.729718 -3.783059 -3.900073 0.241487 -17.963563 -22.982478 2.849886 1.735039 -0.414023 6.384276 -2.944192 5.429030 -13.011174 5.487465 11.426902 -5.689669 -7.264906 -0.234551 4.408988 2.588151 -5.314222 -4.868300 -0.989731 -0.592407 2.502066 15.702429 -3.644878 -22.754165 -22.730124 -6.757096 12.668788 -8.578067 -1.265825 -7.127272 -4.759476 -8.398019 -0.301360 -11.507001 0.986855 1.377578 -9.371547 -17.521438 4.488293 -2.677292 -1.508948 5.674618 -12.513521 2.817560 10.063283 5.970642 1.233892 2.695260 1.558174 -11.279150 -8.445594 3.871792 -9.130582 10.953576 7.734985 -0.704779 -12.833592 -6.273382 -10.287104 6.874552 -5.194905 9.113157 -0.732891 -6.184598 4.783609 -12.160246 5.379904 -6.720996 3.119839 2.078198 -29.401454 17.810351 10.743505 -8.927214 -0.500423 -3.102571 6.574561 -1.221194 7.132811 -11.252546 -8.878249 2.363417 -1.688844 0.511446 -4.067247 2.858945 -2.733660 -5.268054 -14.951419 -6.830475 12.718521 4.487027 -1.949633 1.117323 7.945282 -5.482247 2.961238 15.146079 9.088322 2.358007 -11.224479 -31.597524 4.335959 2.900991 -1.330564 0.838480 -6.797466 -5.094412 5.381456 -7.030240 11.578921 1.516834 -9.387434 12.451229 -14.843785 -11.785093 -11.641206 -4.649348 4.735010 -1.671368 1.877962 -6.471672 1.879203 -2.023482 2.927759 -4.221625 -9.079216 5.082646 7.859275 15.416053 1.238941 0.874505 13.899257 4.010247 -4.410391 -2.953841 -0.529531 -8.107335 4.377026 -19.312008 -2.644576 3.999200 6.756594 -9.731749 2.520820 -2.839165 4.142711 1.797294 -175.154796 -83.712420 -71.285509 251.422993 46.924310 -58.658862 45.753241 66.323504 18.856676 -344.645265 -137.547012 167.290379 20.977703 -31.182666 26.711566 87.171871 96.985827 77.855640 -341.431139 61.431028 41.113783 -4.925278 -108.554845 -54.651110 3.426188 -88.816564 76.444661 120.002196 17.950249 213.467332 -116.106128 99.164450 178.160988 -1.440892 127.643112 165.504646 31.991934 -20.384434 -50.821918 -46.207502 350.313209 98.227710 -24.958550 122.995943 58.471727 258.503563 26.825264 288.909199 49.493908 -83.123131 127.768875 -42.464354 -106.200749 -20.252882 -282.190603 82.725502 177.222100 101.204763 -158.732810 136.366408 -73.947349 69.642856 109.817328 19.238221 310.296814 119.052594 170.912022 201.338888 285.873795 -161.621134 33.385152 48.814659 151.472008 20.137106 136.857660 -143.890241 -113.739631 -238.276347 6.973839 -268.657738 23.247689 -40.048318 320.802263 -204.354771 9.384934 87.155576 51.780833 233.489281 -174.883217 12.925612 -258.530700 4.747204 -16.808518 350.243541 15.882746 61.506555 -30.271753 105.288326 -5.042716 100.466519 16.810435 -214.936113 -89.084959 -429.437754 -194.346945 -116.659480 -27.534089 -5.636966 -274.938088 -10.872164 91.304326 182.783730 -347.707447 -38.918551 62.211370 36.846229 155.468770 37.433271 -116.362899 -1.177357 -27.140227 85.491135 75.544341 -109.213892 45.585285 -137.093692 24.014890 62.465155 110.933910 45.044606 -272.471993 -34.035895 60.991124 -7.311385 -12.828030 69.444044 65.849119 -143.845249 120.436625 -171.779430 195.051507 -291.960213 -72.724516 -134.901657 -198.947749 -77.236390 303.748018 147.328217 196.157109 38.491359 -102.622829 -36.571025 -311.392336 -430.657877 57.235672 -16.513033 33.705774 38.790785 -38.542586 22.395924 -145.576237 -23.708215 138.207100 -166.559477 -125.800118 -75.153423 161.273867 4.537706 -77.040795 -134.595166 16.250503 138.095306 31.385234 174.131561 -103.785608 -331.317701 -300.771703 -136.027378 196.289420 -92.281017 22.193382 -57.322476 -52.034842 -225.709308 54.554118 -180.945810 56.943454 -61.536083 -129.561950 -275.522768 75.775126 -58.319437 -9.072721 32.564607 -202.360752 82.787528 73.924616 94.001249 -1.798708 59.686577 34.546499 -254.887780 -235.693483 19.448714 -40.819211 264.897437 129.802425 26.251056 -98.750652 -97.344583 -206.976581 189.978635 -248.635424 110.804936 62.254398 -135.644673 164.992856 -183.388621 -64.259419 -167.595265 121.255483 37.284682 -269.073578 335.806368 215.239675 -227.738740 -60.397397 -145.302822 126.370249 60.985943 266.381711 -169.783312 -96.715972 87.968672 25.624251 -31.609068 -88.845455 96.206952 -27.626132 41.782997 -259.854265 -127.812439 169.526535 153.039810 -27.132696 20.781973 55.721107 -40.634251 -16.440309 287.321821 99.541314 49.763836 -188.148526 -461.390618 76.156912 17.655138 -6.444019 53.193020 -173.758297 -96.197058 26.012538 -53.882237 233.772309 75.621063 -47.227781 213.897866 -283.021756 -240.083363 -132.837098 -19.439261 42.792384 -90.438264 114.416190 -137.039017 11.149761 -45.191465 105.026322 -61.489613 -112.887413 -81.686876 68.160767 172.164041 27.439268 -84.626964 253.028065 45.173366 -86.239710 -38.158569 -8.488115 -40.433096 83.397980 -213.658458 -75.844628 -34.589969 105.639036 -173.221309 151.492786 -8.712321 87.737422 65.559346 -7.725701 -1.382240 -4.105734 10.870918 0.734870 5.006677 1.957425 2.866326 -0.245926 -18.988820 -8.923738 13.675824 1.071477 3.217251 -0.308821 5.255327 6.335791 3.254903 -19.911409 -1.610486 3.648467 -2.032196 0.165928 1.644530 1.525430 -5.487632 7.422569 3.804062 0.871787 10.878367 -1.945722 8.780598 9.843911 0.422570 3.869481 7.481606 -3.390549 -2.392879 -6.483928 -7.288741 14.044858 2.380592 1.520555 5.925443 -4.004604 12.061685 2.758688 10.192972 10.949266 -3.382562 2.312059 0.806034 -6.622392 -0.300148 -12.844402 -1.148368 -1.732709 0.421114 -2.987707 4.658929 -2.151734 3.195127 3.141950 -0.750021 12.922580 1.626576 10.224682 10.254531 8.676039 -8.789664 3.385596 2.143821 -0.393069 3.105775 6.370056 -5.800514 -5.607694 -2.512510 -0.464298 -13.676415 -2.793622 -4.527121 18.342342 -7.349320 -4.224413 -2.354950 0.874369 13.275299 -4.020275 4.901676 -12.466352 -0.714975 1.411453 8.048504 3.995409 3.817543 -2.071396 -0.734586 -2.887926 1.413955 1.984915 -10.735275 0.551417 -14.377924 -2.998261 -8.215062 2.132071 5.420782 -11.097712 2.142357 -4.254023 13.744105 -15.264539 -3.357790 0.613896 2.761256 7.152252 6.745724 -5.083934 -2.569565 4.292393 6.000810 7.005805 -6.272245 3.848551 -2.666388 0.693537 1.192467 4.246220 3.286378 -13.170550 -7.400626 6.067218 -0.332759 3.099816 6.828003 8.088261 0.758500 4.649606 -4.919986 8.040521 -9.842965 -4.292197 -2.342116 -7.387489 -7.156544 15.588505 11.753833 8.843344 1.122953 -0.287660 0.606782 -13.015758 -16.174080 0.697609 0.434694 -1.289163 4.907571 -2.542225 6.563104 -10.272347 4.252240 4.747767 -3.256876 -6.443779 0.534563 -0.428698 3.123190 -2.517322 -3.321888 -1.955050 -2.719716 0.413432 12.826818 -2.319463 -19.780960 -15.442483 -6.222646 10.796264 -6.940748 -0.539663 -5.001759 -3.326570 -3.058691 -2.815670 -7.642059 -2.160657 1.764711 -8.688772 -13.258633 3.080800 -2.346535 -4.327694 5.574568 -10.318757 3.007517 8.578797 4.326564 0.998448 0.824084 -3.595261 -6.054387 -4.657545 1.621317 -8.099263 9.848701 6.862341 -2.191308 -9.878982 -5.150902 -6.510350 8.478405 -7.893053 8.960513 -1.415529 -4.535914 3.499111 -8.329875 2.157812 -3.970731 5.075569 1.949716 -26.451511 10.328008 10.489575 -6.715538 -2.023277 -3.055815 4.115984 0.380758 6.412568 -7.948143 -5.801283 2.583311 2.867704 0.431682 -1.300514 2.507998 -1.612999 -4.861171 -12.141702 -4.444579 11.472024 3.399215 -1.970546 -1.445301 8.846895 -0.508978 6.527245 11.379045 6.117919 0.058267 -7.333329 -25.435922 3.808090 8.464844 -2.626554 3.671506 -7.974827 -2.038469 3.981591 -13.093092 10.018340 -4.577750 -3.579797 9.295035 -8.277550 -9.770110 -10.157832 -4.282470 2.120847 2.318380 5.409372 -4.424089 0.649442 -3.538286 1.327153 -4.875601 -7.405501 3.448828 6.826852 10.096739 3.332503 1.935169 9.875771 4.296162 -2.573716 -1.818602 -1.792921 -4.901464 1.969499 -15.664097 -2.112414 3.752575 5.562801 -7.922581 1.120027 0.700922 2.719823 -0.062579 -9.856097 -4.713613 -9.394795 20.360183 0.485275 1.953374 2.032147 -1.286811 1.144168 -26.164671 -10.920123 16.495547 4.836599 3.175165 -0.457062 9.285231 5.326999 5.012653 -23.101501 -0.479337 4.095685 -1.697143 -3.661078 -0.876920 -0.728956 -7.663966 13.227117 4.270832 2.182208 15.982149 -5.229455 13.034338 13.940510 -1.990525 4.995030 10.154728 -3.034897 -0.584541 -9.938583 -5.931879 20.880028 3.877633 2.052776 7.901748 -3.941382 17.355405 4.882683 19.114895 7.705371 -7.126662 9.119092 6.428766 -6.850749 -2.121719 -17.681901 3.347127 8.138870 4.896436 -6.031594 6.521113 -2.970044 5.076998 7.031578 3.366442 21.353402 6.474211 16.064021 15.972377 15.010812 -12.923021 4.774420 2.221286 2.302196 0.318785 17.948832 -12.018087 -11.677691 -0.059921 -1.850109 -17.232878 0.999413 -1.313020 25.468612 -13.339861 -6.095639 -0.668419 5.990581 19.096974 -8.269916 4.947112 -16.284683 -0.050254 -2.688295 22.997616 3.957505 4.592336 -5.761807 5.477473 -2.596995 3.289257 3.708562 -15.613717 1.266081 -23.707403 -12.268648 -11.465537 3.210350 6.392510 -20.151570 1.953476 -4.967115 12.565228 -26.966491 -2.005131 3.511287 5.612124 19.515299 2.173794 -7.028374 -0.719910 2.436001 6.750038 6.629398 -7.076149 6.000393 -5.808284 1.375518 2.707346 6.288515 4.054954 -20.902669 -5.769734 2.725317 -0.541740 3.362722 9.088664 12.402052 -5.476534 8.448280 -10.240777 12.371542 -21.268385 -6.869844 -7.520616 -15.122915 -8.810582 15.382401 11.031617 16.771411 -3.289976 -6.767249 -1.447671 -23.672119 -27.369456 0.118500 0.719149 -1.711833 8.603438 -3.391097 5.962517 -13.877605 5.347337 13.225221 -8.560309 -9.488757 -1.304501 9.418687 2.156561 -5.652628 -6.585767 -1.845239 -2.261072 3.592528 19.704344 -2.596499 -28.782814 -27.624736 -7.831343 14.751414 -8.677819 1.367356 -7.548447 -6.725894 -12.665079 -1.205834 -12.526429 0.136059 0.774567 -8.781900 -19.833883 6.123362 -2.381267 -4.499873 5.166700 -16.298542 4.320437 10.933176 4.565581 1.960366 3.115352 0.080691 -14.389651 -11.129849 5.326894 -10.176679 15.089254 9.980462 -1.059830 -8.821018 -8.283059 -14.323462 7.954834 -13.780765 10.290330 2.437409 -5.261900 5.886015 -16.358610 1.498985 -9.061699 5.242346 1.534254 -26.694819 21.931630 13.282673 -11.461383 -0.155597 -3.567772 9.476073 -0.480248 10.554219 -13.099480 -9.280461 3.447424 1.231953 -0.188115 -3.566799 4.454193 -4.569198 -4.920937 -15.118479 -6.222634 13.185203 7.605974 -2.365963 -0.854050 7.982946 -8.618697 3.409560 15.578661 9.897725 2.411235 -11.895148 -35.586326 5.430968 -6.198051 -5.003295 2.189616 -9.787908 -3.809346 6.693271 -8.623842 13.994775 -3.221107 -5.927575 14.857547 -21.239586 -15.433514 -12.161225 -5.851413 3.360342 -1.053438 3.794682 -8.674578 2.093194 -2.509758 4.738101 -8.104667 -10.006168 5.189205 8.383166 16.430723 -0.478592 0.545919 17.010702 5.473842 -3.063416 -4.076455 -0.499486 -7.706996 3.739423 -20.776698 -2.958863 4.059860 7.818934 -12.440391 4.098223 -3.497956 4.114745 2.288673 -32.920136 -19.384142 -6.453924 47.738380 13.844046 -14.717497 8.944952 13.438383 -1.802530 -66.202454 -28.278267 13.098483 2.245859 -10.668699 14.191412 14.125700 22.445629 11.921965 -69.394058 15.379675 8.693920 -4.853873 -22.981239 -9.451029 -0.223727 -21.966127 5.857385 29.565972 0.771792 42.395624 -27.139904 18.247367 32.680898 2.668197 35.202503 34.491261 8.496352 -7.371294 -4.990487 2.059426 76.551067 16.954559 -7.216097 17.463994 20.726055 52.608308 2.531909 51.859185 6.271766 -13.768094 31.707507 -17.175946 -15.791687 -0.983840 -60.249257 14.207846 42.753912 22.942439 -37.722324 28.934672 -23.405744 14.464969 19.735014 6.031970 65.931337 18.665899 32.216722 36.811239 56.731483 -31.404598 3.256494 10.603888 33.596688 1.558546 16.149660 -24.028818 -15.753943 -73.997788 3.329495 -52.551146 6.358395 -5.245281 54.815272 -37.268112 3.685478 28.238510 4.416701 43.225299 -36.944459 -1.730774 -53.052824 0.531943 -0.954138 64.970043 1.192495 8.991166 1.280398 23.272018 1.479212 25.501383 1.395588 -45.486634 -28.131852 -95.550915 -47.141032 -20.072979 -6.801129 -10.354525 -53.621906 -3.640802 34.547587 29.223879 -62.994544 -4.258411 12.203618 10.290800 14.943728 -3.716642 -27.405245 -4.218030 -7.867617 22.971468 20.413849 -18.576386 9.057492 -39.775108 11.316739 15.535299 26.110610 2.442299 -39.345964 -4.788615 13.808157 -1.700894 -10.075844 6.010170 6.527226 -29.330066 24.920003 -33.813717 44.357430 -57.645417 -5.454457 -37.217647 -35.861261 -10.229197 63.582517 29.528133 32.429484 16.865626 -27.025795 1.674812 -59.449329 -86.835070 10.792700 -4.140259 10.823930 1.416394 -8.581692 4.297831 -22.835102 -9.561506 24.261266 -36.601901 -24.828347 -18.748815 22.937908 2.334181 -19.484346 -28.507871 8.750142 39.124280 2.596377 31.539874 -25.441411 -51.586679 -53.805643 -32.025336 38.755219 -17.459747 5.212580 -6.719577 -6.664200 -52.332242 20.633534 -36.753164 12.083022 -18.654309 -26.097338 -53.155604 10.553699 -13.866028 1.514679 4.495998 -39.549883 16.797002 9.733670 17.027541 0.778728 12.379908 7.456507 -51.180065 -52.561062 -1.809714 -1.618979 52.531407 22.758586 6.493587 -16.282566 -18.719243 -38.856451 40.000821 -43.576445 18.598699 15.736757 -37.913518 34.665247 -33.656116 -19.074382 -29.441825 25.207767 8.807281 -43.843135 69.456942 45.554940 -50.162158 -17.876447 -37.124583 25.603497 11.877291 61.091493 -28.442364 -8.629698 16.117521 9.778874 -7.108752 -19.388610 22.612664 -3.147124 11.362465 -55.716642 -31.458658 33.419145 36.699910 -2.227739 6.287827 8.185170 1.456222 -9.863592 60.953766 15.220655 11.673523 -33.299021 -84.155110 16.144457 9.637894 2.390830 13.702887 -32.997754 -22.457605 -5.515924 -1.623890 48.941575 31.547974 -6.403386 44.857337 -47.960452 -48.992554 -30.554494 -1.286078 5.477408 -27.473050 22.600347 -31.277109 0.705398 -12.076186 23.802607 -5.379430 -16.670832 -29.185477 8.480125 27.245265 11.320513 -20.229486 50.421302 9.659769 -21.149648 -9.850780 2.119321 -4.918093 26.689904 -31.365167 -22.140228 -13.931830 20.585269 -31.333296 28.664698 -2.734924 21.963988 16.407242 -22.971935 -11.024573 -29.694775 55.086742 -4.916358 0.402557 5.284313 -1.062353 2.647942 -63.747180 -26.466117 35.077067 15.922304 3.589320 1.561344 24.372654 8.084979 12.769374 -58.696222 1.527664 13.287241 -4.877993 -14.759751 -5.826505 -4.118378 -20.260686 31.803947 12.728138 2.465411 42.313680 -10.267231 33.124788 35.314560 -7.786032 13.122005 26.798169 -13.076338 3.115086 -22.947763 -7.632896 50.197859 17.693688 -3.725515 13.962671 -10.560528 45.339818 11.273035 38.697619 1.991763 -18.530404 21.110144 31.397735 -15.190271 -8.493664 -41.156190 6.155675 29.482196 14.678267 -15.059679 18.723347 -17.856235 11.459647 21.061038 16.629477 55.364674 18.208380 43.682063 44.139290 39.509525 -32.016633 15.690206 1.852200 2.248285 -9.280627 45.156816 -25.898359 -37.667794 -5.899325 -4.767464 -46.224737 0.471817 3.578460 60.611747 -36.107025 -13.730365 -1.971504 22.915539 50.272825 -28.510994 10.791563 -37.727876 -3.691896 -15.388243 66.355483 11.733955 13.527142 -13.724538 20.222220 -4.145142 6.688143 7.366700 -41.555968 6.257710 -62.325859 -33.569568 -29.490106 7.518754 18.194826 -49.732747 1.559076 -3.142329 26.386656 -67.947141 -0.188600 9.975122 15.925281 52.025999 -3.986241 -20.837510 6.123331 1.867599 14.581454 20.976779 -17.528367 16.683058 -10.816193 6.517584 10.014816 13.986479 13.400187 -55.164563 -9.851109 8.391556 -7.273600 9.077231 27.785244 31.299776 -16.964119 21.312773 -30.869454 36.987142 -57.174457 -10.903104 -20.228755 -39.822223 -20.660609 24.795408 29.641018 32.457252 -15.115792 -19.553770 1.152415 -63.838283 -72.337810 0.505622 7.772480 -7.367377 15.738230 -10.271280 13.432332 -35.747985 19.634588 38.416865 -23.133441 -22.628566 -0.075207 37.543310 11.203500 -17.737937 -12.401689 -8.387879 -9.367613 16.051765 53.242526 -5.415022 -64.947556 -73.121809 -16.778931 39.424027 -20.003607 -0.431222 -22.431605 -20.219309 -37.862269 1.239214 -32.724970 5.825274 1.602168 -16.562627 -50.777379 14.218202 -3.221797 -11.574993 8.501552 -41.896384 8.843989 29.316963 2.402093 3.745970 7.363559 5.675475 -34.301935 -27.578509 19.645113 -24.777233 40.060745 28.377254 -1.960866 -17.481031 -17.230578 -36.226129 20.628986 -25.579488 27.184817 4.087593 -17.291763 18.889630 -41.179797 -5.592642 -26.141453 11.934859 0.810449 -48.885223 61.320028 35.604932 -27.180155 3.248325 -3.171459 25.274515 -1.800139 24.949883 -35.544037 -26.196810 7.052296 1.216142 -0.620355 -4.722809 10.312048 -16.230629 -13.305739 -34.610005 -10.433400 36.691631 19.366392 -4.751803 1.788588 14.025601 -29.154707 4.147213 36.973196 29.325010 4.080126 -32.418640 -78.770962 14.978329 -34.469897 -14.466329 -3.484459 -19.508306 -12.007965 15.745130 -12.396586 35.517945 1.805760 -25.020128 37.784523 -56.113932 -42.619938 -37.701160 -10.623148 7.629333 -5.000669 6.467180 -21.630911 9.485805 -3.054549 13.974076 -18.849234 -28.212748 15.091760 20.631132 41.725258 -4.600904 -8.128596 45.376513 14.227527 -8.020266 -15.219149 -1.401337 -27.033267 10.581538 -46.335783 -8.709863 9.554521 25.259819 -33.020632 11.104561 -8.046076 10.752928 10.897923 -71.092767 -39.331505 -50.572332 121.529636 15.640057 2.961259 15.671340 1.802001 14.642784 -165.906805 -59.998910 106.229838 16.367448 8.555828 -5.288218 54.233965 44.945134 28.786394 -135.126433 8.887309 22.579786 -10.106744 -35.464436 1.735532 -0.418235 -52.248052 73.006465 37.997060 14.368147 97.673849 -40.430148 66.880555 90.556546 -9.950104 39.725967 73.761971 0.892070 -6.071875 -47.499741 -34.178195 143.261757 29.369013 1.685377 54.935292 -4.072645 116.940412 21.785254 146.480059 57.571631 -45.781204 57.639274 12.214406 -45.278388 -11.686686 -120.801425 28.308772 44.709398 28.767532 -58.117891 43.346435 -20.868312 31.850178 45.502001 20.330329 132.484213 48.865979 89.875239 97.259953 110.531873 -78.239117 20.535942 26.312464 36.853276 22.386391 92.646670 -65.657380 -64.690040 -27.716362 -5.648077 -90.446487 -0.762018 -20.486017 147.843020 -89.170960 -26.534281 4.006157 27.873341 116.901259 -58.273387 25.204914 -119.711781 2.409469 2.171754 139.218319 17.482597 28.118343 -32.999580 33.269446 -18.429219 30.084875 17.453145 -104.826045 -17.165394 -154.220228 -79.006055 -75.873454 8.626980 28.074512 -134.441970 8.172735 -12.159447 93.379779 -162.674483 -13.801697 21.664126 21.771557 119.047336 44.462045 -43.679265 -5.527115 14.245813 34.069025 33.307746 -37.978097 27.793238 -53.097122 15.871457 17.687468 37.786470 24.635811 -136.769576 -24.779710 28.482842 0.606000 14.606428 52.054389 61.313521 -52.247717 54.053775 -62.781397 77.104908 -127.709844 -51.787026 -47.897282 -93.597722 -53.747777 135.109908 80.668058 113.175735 -4.417557 -45.032802 -22.840916 -148.285173 -183.709821 0.607834 -13.818216 -3.968813 46.394550 -20.392572 31.147975 -80.764471 18.537136 66.129725 -58.989822 -57.851765 -18.882404 46.731731 6.258102 -26.078784 -47.390782 -14.501486 11.545419 17.354166 107.931114 -29.645933 -188.189209 -159.042298 -56.200532 89.570381 -54.732370 13.264022 -42.685968 -37.689634 -89.150876 -0.817095 -76.400371 3.138370 -14.696748 -56.321333 -125.582733 46.774357 -24.676014 -18.142672 27.027685 -98.849756 32.754168 49.581579 34.406144 14.845717 22.017099 -9.824388 -102.300764 -79.244617 29.206348 -50.290914 116.423661 60.861607 -5.476791 -49.682987 -56.696269 -98.493548 70.945671 -116.404357 61.837707 32.702652 -43.052698 53.309317 -90.743576 -6.134997 -62.339613 49.236839 13.709645 -155.431276 134.621904 93.674248 -88.097953 -10.572721 -34.710522 58.033767 15.894581 81.224097 -79.022421 -54.426619 31.724549 14.291761 -5.070063 -23.479397 31.818709 -21.413078 -3.369719 -109.654058 -47.551224 82.003357 54.493967 -19.883902 -13.181005 39.128381 -39.060293 19.702059 110.524503 56.150512 25.210910 -79.672932 -227.955983 31.716363 -13.821548 -22.762898 28.119737 -78.182320 -24.143270 32.481044 -65.449306 101.115644 -25.526484 -27.652389 96.911244 -135.539661 -103.147337 -66.110767 -35.938128 17.499115 -10.604885 50.924007 -52.412165 5.402421 -21.831426 36.216106 -51.004083 -60.544234 16.202722 52.788270 90.547534 1.965412 -10.519526 105.434966 25.766123 -25.597744 -23.163856 1.326815 -34.889453 25.489401 -132.663783 -23.696291 11.900471 47.299376 -79.909225 42.886927 -15.715829 33.070230 13.588106 -4.205615 -2.195178 -1.990914 8.518188 0.758723 2.254166 1.294801 0.870359 0.690370 -13.223111 -6.095907 7.258946 0.875976 1.589670 0.820073 2.653733 3.730489 2.160814 -13.071900 -0.915658 2.671825 -0.436945 0.138083 0.055244 0.426465 -3.792077 4.846297 2.608276 1.352627 7.689296 -2.570522 6.232853 6.664020 0.894356 3.085357 4.602507 -2.609754 -1.447760 -3.771088 -3.998535 10.454827 2.103709 0.602642 4.592535 -1.326858 8.366127 0.883883 6.875009 6.077374 -3.299921 3.958376 -0.188172 -3.342035 -0.419709 -8.569064 0.988103 1.927256 1.248277 -2.417291 2.960084 -1.948403 2.375147 2.344513 -1.200329 9.216485 2.614169 6.872719 7.260477 5.881935 -6.018031 1.822232 0.819524 0.532938 1.671058 4.360603 -3.918127 -3.626364 -3.478009 -1.304348 -8.384137 -0.868018 -2.284004 10.228413 -5.309108 -1.967550 -0.382323 1.052333 8.206892 -2.788508 1.742250 -8.681608 -0.092615 1.073027 6.160970 1.713991 1.599862 -1.547461 1.214532 -1.201788 1.799512 2.168289 -6.784609 -0.518623 -11.287260 -4.070905 -4.990146 2.718338 2.792383 -7.822404 2.384856 -1.580155 6.932067 -11.051602 -2.074331 0.866495 2.472749 4.900791 1.629745 -2.881483 -1.650921 1.533704 3.739833 3.202043 -4.394755 2.936083 -3.772940 -0.668320 0.668034 3.808159 1.936763 -7.406297 -4.117222 2.192396 0.304191 1.209163 4.461981 5.242812 -0.373430 3.799863 -4.449841 6.188608 -7.482929 -2.583966 -3.643262 -4.466979 -4.409431 11.175411 6.559594 6.599040 0.782348 -2.572801 -0.335465 -9.068627 -11.454048 0.678936 0.252943 0.831336 3.814731 -1.517044 3.353606 -6.783076 2.485173 3.490817 -3.550724 -4.069656 -0.773586 -0.189148 0.899390 -2.394663 -3.289531 0.221369 0.093813 -0.816732 8.067424 -1.731485 -11.168786 -11.187623 -4.145346 6.770077 -4.639197 0.226876 -3.172659 -1.576529 -4.408835 -0.826791 -5.823060 -0.204007 0.309995 -5.726125 -9.406179 3.094643 -1.669757 -0.983575 3.495744 -6.653001 1.772261 4.944805 3.921037 1.242002 1.944225 -0.701920 -5.238400 -4.796607 0.945358 -5.014464 6.497722 4.042969 -1.471550 -5.687637 -4.240610 -5.599420 5.447164 -5.430414 5.052135 0.200877 -3.600598 2.102500 -5.961804 0.170572 -4.169142 2.573889 1.577661 -14.387168 7.428740 4.986049 -5.687620 -0.992798 -3.788266 4.093431 0.302289 5.124846 -4.952398 -3.597433 1.212737 0.681543 0.320107 -2.520178 2.179803 -1.058341 -2.551784 -7.969974 -3.710038 7.241910 2.816354 -1.051884 0.614195 5.322302 -0.512557 3.343491 7.467646 4.862771 0.616630 -5.583636 -15.670331 2.502707 4.345952 -0.611673 1.441289 -6.242265 -2.801115 2.109383 -4.762903 6.325693 -0.973509 -1.798024 6.952586 -7.080223 -6.252128 -5.879525 -2.561492 1.477005 -0.677814 2.092120 -2.698015 1.060708 -0.506728 1.889794 -1.924492 -4.775534 0.551118 3.871977 7.252371 0.767630 1.397072 7.392557 2.973709 -2.818475 -1.426062 -0.189376 -3.976841 1.397776 -10.231111 -1.489465 1.943201 2.700808 -5.562457 1.097671 -0.575258 1.825772 0.085235 -1.005120 -1.178792 0.426849 2.174652 0.085777 0.500082 0.513368 0.662531 -0.516761 -4.596098 -2.137726 0.736552 -0.110522 0.222795 1.030381 0.670176 1.195566 0.348146 -4.831301 -0.080899 1.219980 -0.100751 0.647325 0.191964 0.298433 -1.496545 -0.037312 1.259203 0.157441 2.396251 -1.058010 1.798433 1.985711 0.514430 0.843701 1.550272 -0.685674 -0.690477 -0.069218 -0.219035 3.572873 0.012823 -0.080634 0.600732 0.244137 2.538993 0.028465 2.483294 2.321339 -1.030882 2.233737 -1.620117 -1.188187 0.321877 -2.673494 0.226772 1.218217 1.594535 -0.954270 1.179547 -1.226534 0.724834 0.467624 -0.961187 3.604804 1.040040 2.575927 2.267343 1.758446 -1.725074 0.274924 0.416200 -0.032298 0.054235 0.007937 -1.586247 0.489155 -4.448523 0.031397 -3.597513 -0.695369 -0.485577 3.346482 -1.540877 -0.455218 1.110975 -0.286032 2.982533 -0.776099 0.632077 -2.852052 0.232819 1.504624 1.880093 0.216429 -0.172901 0.033681 0.425060 -0.103330 1.016947 0.847038 -1.467940 -2.362975 -4.115819 -1.890135 -0.953983 0.940378 0.511862 -3.226409 0.740522 2.094172 0.416240 -3.611946 -0.456962 0.808968 1.332634 0.179279 1.554192 -1.687278 -1.152492 0.280636 1.862719 1.336044 -0.941148 1.007663 -2.848584 0.413426 0.471695 1.368050 -0.120938 -2.627166 -1.529559 0.547315 -0.414693 0.039386 0.955152 1.263806 0.393978 1.315997 -1.432258 2.115250 -2.915041 0.259848 -1.628165 -0.636451 -0.857290 4.037233 2.867758 1.212585 1.233727 -1.564114 0.164031 -2.878137 -3.418930 -0.209085 -0.063766 1.317219 0.663363 -0.510507 0.905875 -1.096898 0.522929 -0.095142 -1.299338 -0.917410 -0.773465 -1.361683 0.276518 -0.971080 -1.844520 0.575727 1.298765 -1.784642 2.035369 -0.649960 -2.102364 -3.445425 -1.852218 1.922365 -1.191830 0.470294 -0.743636 0.209578 -2.022158 0.684001 -1.502539 -0.501562 0.144593 -2.586972 -2.755889 0.827521 -0.552081 -0.652216 0.861651 -1.750330 0.129141 0.648748 1.374513 0.844220 0.626934 -0.357997 -1.969946 -2.451576 -0.735912 -1.617792 1.915276 1.243143 -0.386570 -2.124443 -1.198713 -1.779083 2.314746 -1.583459 1.195037 -0.159522 -1.771224 0.932507 -1.391281 -0.262455 -1.130926 0.868699 0.578628 -5.534120 2.688792 1.672720 -1.837577 -0.938701 -2.325052 1.149499 0.468596 2.203121 -0.938674 0.045178 0.146613 0.420086 0.000114 -0.848999 1.122663 -0.215883 -0.455563 -2.697681 -1.758410 2.071102 1.404798 -0.111762 1.035419 1.818729 1.394839 0.749791 2.438763 0.801106 -0.631057 -0.607443 -4.981985 0.837731 3.174132 0.042685 1.328290 -2.661937 -1.102041 0.019496 -0.555827 2.137597 0.808841 0.296932 2.079735 -1.527704 -1.836114 -1.628299 -0.231231 0.005547 -0.734369 0.659464 -0.389617 0.162143 0.373856 0.586879 0.299410 -1.536116 -1.986253 0.458995 2.428796 0.829725 0.125703 2.171266 0.699693 -1.107560 -0.605787 0.070835 -0.456608 1.431044 -1.841200 -0.707159 0.064647 0.553092 -1.607371 0.500013 0.012932 0.437582 0.094725 -0.445863 0.240144 0.319253 -0.571020 -0.071759 0.859340 -0.235551 0.333367 -0.921569 -1.722071 -1.576790 -1.504758 0.030546 -0.166548 1.156590 0.572712 1.113999 0.715160 -2.364409 -0.177687 0.782572 -0.635694 0.189501 1.153464 0.481241 -0.942208 -2.351527 0.251716 -0.533688 1.379492 0.543297 0.459864 1.150486 -0.775710 0.633889 1.425159 0.384342 0.102536 1.086515 0.511921 1.862004 -0.563011 0.319515 -0.981229 -0.196907 1.470404 -1.011094 0.949702 -0.292390 0.467704 1.225388 -2.383863 -0.319185 1.363785 -2.195020 -0.601821 0.552780 0.191027 -0.994920 1.025800 -0.620665 0.624860 0.061020 -0.735602 1.751039 -0.231009 0.303818 0.622705 1.243527 -0.313158 0.460508 0.595119 -0.912391 -1.011951 -1.315617 -0.042780 2.340267 -3.127239 0.400092 -2.033559 0.320760 -0.696506 1.960839 -0.499796 -0.600740 1.490729 -1.308665 1.558751 -0.573706 0.705027 -0.740764 -0.132346 0.479073 -0.315910 0.584187 0.561005 0.510094 -0.639640 -0.197122 0.037438 -1.356471 -0.656453 -2.428110 -2.263628 -1.240442 -0.335485 0.085440 -0.003359 -1.278599 -0.700358 2.501710 0.495829 -0.838369 0.806902 0.077316 1.861368 -2.253487 1.121054 -2.602085 -0.798841 0.463594 1.552448 1.262946 0.139958 0.159074 -1.848989 0.666073 0.557545 0.387123 -1.216082 0.243825 -1.380633 0.796422 -0.463439 -0.630353 0.451759 0.289946 0.493603 0.501770 -0.494543 1.125621 -1.357295 -0.212136 -0.717590 -0.550292 -0.133200 2.591483 1.399702 -0.737920 0.670383 -0.849514 0.859790 -0.887110 -1.227746 0.161617 0.348484 1.012275 -0.130488 -0.587205 1.066097 -0.474810 0.647081 -0.563087 -0.869816 -0.540026 0.508303 0.225493 0.561603 -0.945229 -1.161981 -0.502976 0.716793 -1.631929 -0.068205 -0.444160 1.547773 -0.199442 -0.889966 1.293909 -0.466325 0.538001 0.127415 0.549682 -1.754425 0.474640 -0.661139 -0.756249 0.379836 -1.623009 -0.900569 -0.778405 -0.033383 -0.642352 0.392773 -1.286872 0.276759 0.476144 0.209139 0.071618 -0.476496 -1.145391 -0.457219 -1.271960 -0.838162 -0.391529 0.692580 0.857335 -0.117815 -0.878956 0.024375 0.532307 1.012721 0.080541 0.652531 -0.386108 -1.450308 0.551786 -0.707014 -0.709182 0.313482 0.536926 -0.056952 -2.856546 0.980776 1.353999 -0.532993 -1.424549 -1.035269 -0.337051 -0.030780 1.347143 -0.031543 0.721734 0.210635 0.260405 0.099607 0.019171 1.046800 -0.433863 0.153279 -2.070675 -0.186178 1.784123 0.921330 -0.222508 0.904481 1.461075 1.854479 1.095858 1.626152 -0.029811 -1.775664 0.165924 -2.103488 0.122190 2.330138 -0.494393 0.689160 0.318646 -0.132113 -0.820172 -0.249683 1.504456 1.790301 1.056692 0.820003 1.246149 -1.186217 -0.989351 0.917555 0.126263 -0.174454 -0.021060 -0.878834 -0.622896 -1.085519 0.310845 1.101613 -1.030904 -2.025262 -0.267923 1.074928 1.024807 -0.055771 1.017323 0.605890 -0.240681 -0.113288 -0.117215 0.984383 1.497289 0.172406 -1.017132 -0.234137 1.129174 -0.594266 0.861602 0.045212 0.804051 0.708346 -6.998680 -3.181966 -4.565335 15.319982 0.889395 1.329273 2.540276 0.583475 0.694875 -21.492775 -9.661131 9.720713 2.506877 1.302287 0.507929 4.830169 4.771541 5.096287 -21.741910 -0.583043 4.956791 0.247090 -0.700127 -1.830278 0.160220 -5.820572 7.515746 4.394779 1.697487 13.121182 -4.490297 9.233421 11.762153 0.350165 4.449793 8.771997 -3.043585 -0.282103 -4.940531 -4.118732 17.149995 4.165411 0.771560 6.150318 -1.412679 14.032125 3.854991 12.128233 4.808215 -5.648113 6.387936 0.648468 -5.264959 -1.471415 -13.627286 2.341690 8.236772 6.131198 -4.872353 6.059084 -3.409207 4.023498 5.103006 -0.231384 16.093574 5.522102 11.337499 11.798643 12.081015 -9.780011 3.484641 0.437287 2.060521 -0.579152 9.925650 -9.113058 -8.181970 -4.737512 -2.050985 -16.816560 0.523209 -0.923162 19.172845 -10.091238 -2.577033 0.896611 3.769660 14.130331 -5.779915 1.828834 -13.299035 0.358676 -1.970141 17.404703 2.936873 3.028015 -3.184764 3.919908 -0.697379 2.884536 2.768727 -11.513319 -0.566765 -21.550255 -8.286116 -8.630680 3.061417 4.039946 -14.380382 1.258265 -1.630139 9.249450 -20.852185 -2.077828 2.841393 4.860729 9.439684 -1.165647 -6.065953 -0.537188 0.230555 5.260419 5.492731 -8.089884 3.714951 -5.796633 -0.510517 1.986544 5.272112 2.428163 -14.423932 -5.085733 1.566773 -0.937197 1.738697 6.757211 8.189803 -2.649079 6.510732 -9.515434 10.504124 -15.298349 -2.944963 -5.764645 -11.449338 -6.731348 14.141377 8.570317 9.754983 -1.592761 -4.951836 -0.948994 -17.095147 -20.967596 1.721782 0.736082 1.518136 5.172183 -2.869968 3.729948 -11.082107 3.335525 8.456854 -6.186488 -6.428439 -1.405412 7.298914 1.210135 -4.881373 -5.442866 -0.286847 1.213042 0.760313 13.334163 -3.632739 -18.222364 -19.912247 -6.899328 11.710594 -6.985638 0.385508 -6.042308 -3.030353 -9.928788 0.554492 -9.873069 0.993120 0.256563 -7.323930 -16.327783 4.225610 -2.727693 -1.480116 4.635829 -11.875127 2.896486 8.805747 5.153743 1.613004 2.348269 1.137021 -10.729900 -8.784855 2.300691 -7.497806 10.383512 7.013622 -0.507483 -8.086555 -5.995204 -10.243035 7.448155 -6.291911 7.395346 0.264781 -5.454362 5.608986 -10.817597 1.758852 -8.154904 3.616482 1.896061 -21.717985 16.200277 9.252997 -9.260958 -1.232404 -4.894133 6.799457 0.283949 8.932566 -9.608940 -7.214350 2.852912 -1.203972 0.007622 -4.330647 3.771018 -2.789311 -2.507126 -12.685646 -5.436960 10.999490 5.958769 -2.074766 1.694967 7.123373 -3.624617 3.398189 12.833686 6.966965 1.300024 -9.401483 -27.280059 4.269372 0.197349 -1.197156 0.674381 -7.117408 -4.438869 4.423173 -3.911057 11.384720 3.152243 -4.640873 11.764392 -14.128546 -11.714458 -9.238538 -3.415004 3.682516 -2.644753 1.545731 -6.237283 2.079121 -1.172761 3.925224 -2.494837 -8.874496 0.607995 5.937333 12.793476 0.130764 -0.508435 13.437431 3.503914 -3.854682 -2.227499 -0.820351 -4.971191 3.406755 -14.235379 -2.590790 2.204535 5.727178 -9.372796 4.380796 -2.736250 3.338884 2.544233 -23.949137 -16.024582 -5.352286 37.188961 9.774080 -9.523051 6.486715 8.535218 0.136817 -50.988413 -22.248115 10.500667 2.593617 -6.426744 10.448418 11.176382 16.712114 8.336910 -52.079889 10.865366 7.289637 -3.624887 -16.105588 -5.247107 -0.288452 -18.750809 6.560635 21.638333 0.601917 32.050672 -19.576424 15.042738 25.636720 0.426258 25.102651 26.839974 5.310452 -5.066581 -5.124402 1.501885 57.274939 12.397498 -4.542193 13.273694 13.963470 39.998981 2.132365 39.662034 7.244541 -12.128035 24.568785 -10.653603 -11.975183 -1.657115 -45.144706 11.201791 31.285911 16.222779 -28.169222 21.332493 -17.699033 10.573698 14.714368 5.475303 49.184833 13.766691 25.821031 28.244071 42.235523 -24.138211 2.416221 9.469720 23.431506 2.317401 15.062594 -18.146583 -13.779480 -51.483455 2.060190 -37.102999 4.065025 -4.164295 40.879376 -28.351652 0.471153 20.220304 3.466284 33.988488 -26.554226 -0.235218 -39.591196 0.657318 -0.358604 48.004625 1.727507 6.615351 0.337880 17.457983 0.382567 19.205553 1.758719 -34.560456 -20.322128 -71.301666 -35.664323 -17.238352 -2.607095 -5.889098 -41.641664 -1.804987 23.237696 21.457657 -47.484827 -2.043599 9.778820 9.074210 13.813418 -3.501384 -19.443828 -4.485031 -3.673857 17.051897 15.753029 -14.001264 7.793100 -29.487017 10.017710 11.568389 18.778154 1.143738 -28.627560 -4.637948 9.495549 -0.098706 -6.307795 5.944813 7.812754 -21.978322 19.519466 -24.962734 33.508192 -44.010280 -4.743865 -28.264750 -26.530136 -8.907823 48.400882 21.989501 26.023041 10.470823 -21.555372 0.775286 -45.844735 -64.819061 6.297773 -2.696796 7.792400 2.885863 -6.838207 4.409805 -17.598104 -5.030536 17.530468 -26.836562 -17.783810 -12.060338 14.687689 2.208037 -14.413675 -21.781884 5.608095 26.144016 1.399100 25.612519 -17.337791 -40.555012 -41.706311 -24.217629 29.406747 -13.347495 4.589070 -6.288842 -6.868989 -38.845962 14.837978 -27.877870 7.509756 -13.407623 -20.366406 -40.578434 7.946692 -10.239847 0.599083 4.132902 -31.199858 12.088238 8.149823 12.395298 2.306276 9.030767 4.363871 -38.820363 -38.130407 -0.671808 -3.856181 39.950975 17.493617 3.413985 -11.173093 -14.851393 -29.188421 28.770486 -32.574876 14.186698 12.008882 -28.864613 25.121813 -25.902432 -13.331107 -22.999117 18.116433 6.358763 -34.191112 52.230760 34.500304 -37.078719 -12.807280 -25.625523 18.964244 8.307782 44.292266 -21.649459 -6.805190 11.428259 6.834616 -4.801888 -13.929644 16.788841 -3.233653 7.210224 -41.209253 -23.179855 25.620232 27.384427 -2.161948 4.039062 7.436874 0.558247 -5.371397 44.425450 12.745599 8.303174 -25.889947 -64.855977 13.439406 5.924594 -0.261434 10.183536 -25.408953 -16.379869 -2.236401 -1.259076 36.584540 22.481813 -3.865355 34.150860 -36.492450 -37.249690 -23.457565 -3.176948 3.638587 -18.865419 16.436579 -23.658934 1.123440 -9.460289 17.077150 -5.940800 -13.111545 -19.768331 7.841162 21.483999 8.513290 -13.259862 38.317968 7.814676 -15.430308 -8.300745 1.732887 -5.425616 19.133404 -23.963175 -16.380136 -9.434938 15.356506 -23.651628 20.222903 -3.011069 16.330327 12.028177 -1.996351 -2.575305 -0.296387 3.790195 0.927035 0.977443 0.649522 0.419673 1.174740 -6.104299 -2.107269 4.052222 -0.015332 0.654732 -0.015486 0.806852 2.002520 1.001046 -5.043933 -0.337295 0.364000 -0.198888 0.273714 -0.183490 0.130789 -1.520839 3.106610 1.371028 0.861399 2.864693 -1.273412 1.684544 2.673800 0.405496 1.237165 2.155252 0.366615 -0.772052 -2.244337 -2.013956 4.823016 0.898583 0.065599 2.405776 -0.162632 3.411873 1.511667 4.574440 4.899915 -1.160754 1.543381 -1.526732 -1.743887 -0.695748 -4.311625 0.747339 0.636149 0.771847 -1.512485 1.309402 -0.216005 0.926439 0.866649 -0.705294 3.937124 0.500742 3.382029 3.082844 2.647186 -2.971465 0.026770 0.978770 1.516609 2.029542 2.892621 -2.754595 -1.652974 -2.285096 -0.278622 -2.718599 -0.118585 -1.340479 4.221371 -2.221401 -0.643207 0.577190 -0.407550 3.381740 -0.997307 0.560594 -4.148697 0.263098 1.491613 3.275188 0.768915 0.222541 -0.253113 0.440505 -0.428021 1.304413 2.025314 -2.985436 -0.323685 -5.429106 -1.494913 -2.306876 0.781096 0.562352 -3.163596 0.969149 -0.362506 2.714710 -4.589395 -0.983038 0.777355 0.602066 3.570321 -0.158953 -0.145100 -0.645968 0.809003 1.400754 1.331001 -2.572486 0.644028 -0.910340 0.499842 0.334386 1.490252 0.541694 -2.659145 -1.709471 0.889878 1.892451 0.286127 0.850820 1.620575 -1.004952 1.565723 -1.465196 2.449749 -3.141331 -1.100866 -1.146955 -1.072621 -1.873506 7.081408 1.645551 4.112207 0.767067 -1.134735 -0.454039 -3.400908 -5.997994 0.747164 0.089861 0.239732 1.724053 -0.490758 1.379705 -2.303994 0.343563 0.790155 -1.534610 -1.606372 0.136852 -2.322166 -0.252581 -0.618335 -1.776870 0.648482 1.452513 0.063450 3.335688 -1.124722 -6.853990 -3.837362 -1.952294 2.634067 -1.971208 0.256754 -0.475800 -0.980151 -1.517448 -0.051466 -2.364525 0.226229 -0.170506 -3.218678 -3.928374 1.339972 -1.170828 0.615583 2.003845 -2.920140 1.002369 0.075700 2.611887 0.240995 0.893247 -0.106205 -3.768844 -2.668604 -0.393640 -1.761759 3.852508 0.503231 -0.391849 -2.203308 -1.812588 -2.493649 2.108404 -3.813001 1.794738 0.130864 -2.025684 0.920991 -2.052031 0.635039 -2.081845 1.604641 1.341192 -5.570550 3.894139 2.941754 -2.480248 -0.817483 -1.336406 1.065143 0.455199 2.839579 -2.520192 -1.797997 0.992416 0.271900 0.015333 -1.197913 1.018816 0.160695 -0.693638 -3.966953 -2.281694 2.018079 1.401342 -0.311093 -0.022804 2.474475 0.457452 -0.018670 4.127245 1.433985 1.069728 -2.745109 -8.127497 1.409858 3.541859 -0.163100 1.868777 -3.430588 -0.957929 0.995969 -1.921363 2.529220 -0.272224 0.104896 2.960760 -3.420719 -2.433868 -1.713189 -1.796754 0.878017 -0.331717 1.839061 -1.554357 0.051965 -1.274593 0.421544 -1.565421 -0.659495 0.622061 1.664069 2.420873 1.062087 0.708735 2.937112 0.790264 -1.671309 -0.125418 -0.232009 -1.338685 1.100198 -4.264373 -0.281256 0.606553 1.048705 -1.950946 0.572984 -0.142530 0.813903 -0.463929 -6.151950 -3.977186 -7.116550 22.777450 -0.457589 5.662395 2.788565 -2.032062 1.536464 -30.044474 -9.810613 16.924252 3.667088 5.802795 -1.172237 5.764229 4.803764 5.656201 -26.823299 -3.639691 7.226016 1.508030 1.814498 0.339555 -0.177083 -6.420214 16.998348 4.689589 3.547146 17.019042 -3.335003 15.001229 16.201174 -0.925419 1.767678 9.570580 -3.573235 0.572205 -12.973127 -8.111569 19.894547 2.246073 1.781383 9.811301 -7.855056 18.197672 7.183779 13.450946 13.237724 -8.841640 5.991565 7.775121 -4.868665 -5.639956 -15.092542 1.161230 5.225938 7.396178 -4.117349 5.013337 -0.500033 3.371807 6.830882 2.503986 18.503103 7.412914 16.402656 18.801641 12.773727 -14.113181 5.339041 -0.016336 -4.073068 1.089497 16.360644 -12.016323 -12.739109 0.020028 -4.859904 -17.602520 -5.187414 -1.834064 18.841704 -12.202661 -5.467494 -5.369211 4.735450 19.814746 -4.557644 6.469289 -18.214755 -1.893609 1.269826 18.106309 3.838190 1.818131 -4.862753 2.999060 -2.548291 1.868657 6.771561 -15.931358 6.289229 -18.388572 -8.586682 -12.454116 6.407797 11.364756 -18.735414 2.691557 -11.817698 11.774865 -28.508790 -5.154176 1.897201 7.978473 19.031202 -0.087662 -4.783797 -1.202917 5.189629 4.475188 8.376323 -9.495611 7.751102 -4.230186 -2.209151 1.849438 4.512409 6.172047 -19.010643 -10.628912 2.583020 0.410593 5.627601 12.265980 14.244148 -0.360994 7.856032 -11.226684 13.395365 -16.906721 -7.227715 -3.118595 -11.633159 -11.335139 15.865585 10.560018 13.401261 -5.385743 -8.963344 -0.631000 -20.585169 -25.286395 -0.479553 2.469603 -1.973240 12.963210 -4.952041 8.686331 -16.910729 8.955181 12.493918 -4.244661 -10.024147 0.641108 -1.875994 3.572245 -4.198520 -3.599678 -1.045622 -6.811065 2.770849 23.999957 -1.815506 -26.633255 -30.293772 -6.963538 15.635180 -10.027676 -1.633604 -10.425368 -7.281309 -11.732278 -2.455159 -13.171270 -1.874212 2.346502 -10.210468 -21.440377 9.151833 -3.625875 -2.699974 8.531193 -15.769968 2.558087 9.361802 5.895664 3.144074 1.828200 -1.720975 -12.046953 -7.731475 5.880613 -12.948463 13.294732 5.676466 -1.535415 -12.354617 -9.863843 -11.309414 9.113863 -8.118949 12.515716 1.438970 -3.552025 4.650319 -14.247648 3.461575 -8.388583 4.132578 4.084935 -28.160638 18.417972 9.248511 -8.874897 0.804339 -0.144657 8.221665 -0.621579 4.745415 -13.790679 -13.114480 3.482490 1.911237 1.239519 -5.729829 1.452473 -4.103391 -7.987987 -14.918253 -6.088019 14.772822 4.133960 -3.620075 -1.513297 12.537041 -10.126373 4.116528 15.047962 12.933750 2.966007 -9.606865 -31.285635 6.172333 -1.313536 -2.583797 -0.914614 -12.528006 -2.865063 10.261926 -9.571505 13.407762 -3.915994 -8.152053 15.242592 -21.287461 -14.011672 -14.138207 -7.756481 4.346016 2.834270 1.444917 -5.266322 3.870814 0.411295 1.429434 -7.746837 -11.764456 9.496086 10.127730 17.330725 -3.372739 3.383332 16.365726 6.243650 -3.873227 -3.217826 0.559597 -11.415885 0.477765 -23.988706 -1.049839 8.131194 7.974854 -12.938945 0.702680 -6.004496 0.931862 -0.563832 -6.429327 -1.102807 -5.420844 13.674808 -0.810650 3.047214 2.055996 -0.559320 0.543647 -18.246257 -6.288248 10.583285 2.923533 3.533803 -0.090050 6.774554 3.060068 2.927715 -14.492431 -1.118674 4.690149 -0.929917 0.547283 0.372042 0.013979 -6.213319 8.207316 2.565210 2.136348 12.242041 -3.261608 9.704753 10.930954 -0.469915 2.860370 7.430125 -2.087936 -0.158827 -7.966454 -4.744132 12.980694 2.468244 0.645498 4.296411 -5.138759 13.013465 2.364099 11.145713 4.548944 -6.378436 6.128391 2.632332 -4.779822 -1.064285 -10.020037 1.375743 1.965799 3.648375 -3.188500 4.046851 -3.604619 3.955671 4.516656 2.484332 12.600021 5.040312 9.313389 11.748466 9.065288 -10.294193 3.518091 1.736343 -2.322972 -0.052175 10.325336 -5.977157 -7.250473 0.724634 -0.977824 -8.762475 -3.172090 -0.831078 15.276488 -9.753915 -3.876909 -0.767993 3.717391 13.530029 -4.969391 5.247184 -11.681756 -0.551476 0.287138 12.230840 2.566871 2.312381 -3.868664 2.294927 -1.636968 1.909541 2.898207 -10.801963 -0.506267 -10.020315 -6.760619 -8.616088 4.320310 7.036544 -13.631587 1.901937 -2.279898 10.498881 -18.075715 -0.901934 2.247866 5.772975 13.188894 5.147150 -3.086198 -0.198156 3.449296 4.067859 5.683382 -5.888080 5.223633 -3.407856 0.034916 1.613829 4.344363 2.823942 -15.100056 -5.220872 3.613299 -2.572715 3.475926 8.408770 9.281964 -2.136689 5.924958 -7.186176 9.282360 -12.174408 -4.757364 -4.238061 -9.363154 -7.170863 12.043772 9.532991 9.865961 -1.821723 -5.410024 -0.857632 -14.662279 -16.059537 -1.687891 1.210482 -0.523784 7.570043 -2.861357 5.799932 -10.621533 6.459516 6.059831 -5.103993 -6.869132 0.502570 2.397330 2.127753 -4.003443 -3.987880 -1.310723 -4.417400 0.861218 15.115901 -0.929158 -16.856670 -19.600646 -6.526219 11.091457 -6.893183 0.295698 -6.741102 -4.350737 -7.554246 -1.715299 -8.920855 1.002098 2.095685 -5.412560 -14.470953 6.477725 -2.178805 -3.951595 5.058211 -10.365804 1.806591 6.390054 -0.105735 2.296369 2.410261 -1.158861 -7.377021 -5.490629 4.260406 -8.650088 8.651607 6.498724 -1.449377 -6.201098 -7.326328 -8.644301 6.772202 -7.849262 8.127227 0.727298 -2.285783 4.021369 -10.137619 0.709106 -6.470946 4.265444 2.406242 -16.512624 11.147017 8.270249 -7.063228 0.128417 -1.695647 6.279964 1.052391 6.052794 -7.815959 -7.274312 2.090723 1.611238 0.462096 -0.965392 2.371699 -4.235107 -4.417368 -8.994494 -2.873814 9.819720 4.511268 -1.954436 -0.609042 7.804161 -5.064473 4.915312 8.544476 8.080522 0.849754 -8.019511 -21.680409 4.717941 -2.903377 -2.747413 0.706673 -7.588077 -2.037120 6.062103 -6.371818 9.972467 -3.331311 -4.339395 10.795075 -13.844377 -10.854400 -9.497184 -4.399500 1.405735 0.350520 1.301238 -3.485731 2.541547 0.453692 1.910917 -4.513889 -7.231196 4.309365 6.281554 12.455897 -0.582241 1.607790 11.888850 4.777648 -2.116520 -3.298237 0.918586 -6.620137 0.498607 -14.741285 -1.807227 4.690145 5.570419 -8.983978 1.076230 -2.139908 -0.257391 0.564889 -5.727012 -4.178864 -5.212578 14.101275 0.070783 2.168885 1.528252 0.117347 0.546275 -18.117808 -8.049895 10.323277 2.608973 2.169442 0.640097 4.713304 3.890668 2.873208 -18.194712 -0.827421 3.171110 -1.441119 -1.471111 -0.913654 -0.304660 -5.280220 10.193985 4.410874 1.267715 10.745074 -2.992438 8.867743 9.326723 -0.048013 3.817249 6.575680 -4.139766 -1.003158 -6.985165 -4.756630 14.159190 3.393344 0.242028 5.270901 -2.563120 11.855406 4.223020 9.647564 6.749041 -4.543990 5.401706 4.078590 -4.708403 -2.238862 -12.152588 0.844387 4.544876 3.382214 -3.293009 4.395095 -4.146331 2.975484 4.389704 1.308154 14.877744 2.874172 12.385550 10.882828 8.831626 -9.161751 3.156202 1.300437 1.171141 0.729357 9.489496 -7.592732 -8.039593 -4.206391 -1.700511 -13.330410 -0.578407 -0.908603 16.201571 -7.763286 -4.519460 -1.471627 3.192829 12.733469 -5.844769 3.359262 -11.379340 -0.536692 -0.695910 13.161904 3.176750 2.306884 -2.169948 3.402809 -1.527987 2.628580 2.995308 -10.281987 1.989107 -17.453682 -6.745663 -7.459818 3.359519 3.941848 -11.681137 2.454132 -2.354888 7.617058 -16.534723 -2.425365 2.203115 3.860061 10.568594 -0.835794 -4.047853 -0.925523 1.925282 5.518155 6.227375 -6.179653 4.776925 -3.297354 1.156160 1.644947 4.785319 3.664813 -12.370913 -5.149232 2.848370 0.272561 2.501108 6.183704 8.049995 -1.363152 5.479590 -7.130754 9.709879 -13.189174 -2.681931 -5.160654 -7.609502 -6.106345 12.419934 9.086740 9.420497 -1.527030 -3.984803 0.702320 -14.667277 -18.098257 0.575591 1.929779 -1.239433 4.829174 -2.362735 4.901318 -9.490623 4.116638 8.128026 -5.266647 -6.355590 -0.318432 2.306160 2.916981 -3.906462 -4.089943 -0.318851 -1.358221 1.764944 13.352169 -1.769159 -19.532863 -17.616098 -5.191506 10.043490 -6.064614 -0.592065 -4.996579 -4.725100 -7.113581 -0.276435 -8.382814 0.383569 0.923441 -7.400225 -13.641166 4.035630 -1.569620 -2.075204 4.119094 -10.397105 2.278042 7.094687 3.963576 1.239260 2.638328 0.226233 -8.616533 -7.034481 3.152250 -7.019027 10.341557 5.960432 -1.538470 -7.528895 -5.278592 -8.396871 6.367364 -6.612297 7.503780 0.270559 -5.445705 3.390125 -10.010442 1.491360 -5.690894 3.308127 1.558285 -20.221924 14.179998 9.427658 -7.524360 -0.472662 -2.696221 5.786801 -0.657015 6.631708 -8.915977 -6.173406 1.497609 1.194996 0.215504 -2.269303 2.526063 -2.107148 -5.238851 -10.625006 -5.036520 9.803082 4.133190 -1.006965 0.047812 6.018449 -4.118989 2.143887 11.045573 6.894620 1.263539 -8.099504 -24.231050 4.050475 1.186483 -3.059880 1.604849 -7.312177 -3.733935 3.661267 -5.936449 8.776516 0.218884 -5.474082 9.998463 -11.946613 -9.647542 -10.059926 -3.829318 1.978315 -0.740858 2.950144 -5.241264 1.654667 -1.654824 2.552056 -5.196240 -6.136923 3.295673 5.668393 10.557155 0.629207 0.652827 11.197249 4.006092 -3.049866 -3.562027 -0.269077 -7.404733 3.447853 -13.875434 -2.070441 3.120102 5.450102 -8.072829 1.077338 -1.032002 3.145524 1.115469 -16.819495 -9.185500 -17.883427 48.855470 -1.981249 7.813800 6.951564 -1.675043 2.299371 -65.243368 -24.289615 37.296090 10.548850 8.798472 -4.646542 16.199557 11.018573 17.166278 -61.980158 -5.095166 15.830153 4.152910 2.302852 -6.734683 -0.590173 -14.479973 35.484003 9.619315 7.770701 40.405862 -9.099911 30.763918 35.773971 -2.909348 6.642398 25.030366 -9.880585 1.004449 -25.458676 -17.514047 46.466649 9.457448 5.188150 21.163498 -13.757330 41.985484 17.822497 29.163864 27.104713 -18.588268 16.006587 21.263383 -15.311258 -12.752486 -37.453176 4.686979 16.617380 18.519229 -9.398650 14.768053 -3.604112 8.492160 16.727781 3.675302 41.410716 16.636459 33.550170 40.104943 33.821812 -32.232160 11.737082 0.390919 -2.129358 0.556358 39.161783 -34.000061 -31.439436 -6.760175 -12.738025 -48.983626 -1.858884 -1.375035 55.699999 -30.685608 -9.859240 -6.715996 13.853880 42.145150 -13.642405 8.102659 -38.956201 -2.577472 -4.143900 47.388059 9.458764 7.176821 -11.078683 9.376381 -4.557692 5.314417 14.330153 -36.607020 11.722875 -51.507064 -21.513874 -29.278367 11.663435 20.779273 -40.173909 5.024445 -18.483063 24.059676 -65.552462 -8.491696 8.117411 16.933625 38.102388 -5.250508 -14.245012 0.990525 5.503801 12.781534 17.718379 -24.752929 13.011684 -3.068851 -5.773129 3.856011 11.963314 11.576508 -44.918853 -21.486598 2.113900 0.701008 11.211259 23.829296 29.440380 -5.830957 18.004577 -27.529872 32.281204 -43.235976 -14.292556 -10.617424 -29.336818 -25.075479 36.186180 21.012114 30.214456 -14.635082 -16.657606 -1.891371 -48.461920 -54.891492 4.391042 4.988223 -3.419106 24.798571 -9.721461 15.635848 -36.031578 16.297041 29.013827 -13.593936 -20.737866 2.419577 11.367362 5.701071 -11.357187 -14.067505 -3.176276 -8.970931 11.574307 46.972573 -7.751492 -61.579117 -64.591776 -16.605528 36.531321 -22.691493 -2.804563 -20.834396 -16.486923 -22.136533 -3.577002 -32.394167 -0.615211 4.789622 -23.343380 -48.809800 19.468225 -7.828692 -5.695766 17.956671 -36.069881 7.258850 23.346270 16.363934 3.985962 3.242165 1.400912 -33.132252 -20.942226 12.191757 -26.533574 30.166272 17.030455 -0.711342 -29.783043 -18.984508 -26.353815 17.015576 -17.177481 26.161065 0.651734 -10.303326 13.650742 -34.966318 13.458719 -24.117867 9.309563 7.969081 -69.379878 47.736072 25.724831 -21.874097 1.841132 -1.829532 18.156976 -1.748345 14.879382 -31.608018 -31.102005 9.555493 -1.635777 1.637101 -13.543014 5.724259 -10.709206 -14.326940 -35.157971 -13.747400 32.994377 13.285354 -7.087920 -0.095792 24.764013 -21.603717 4.724366 36.222719 28.232483 7.521502 -27.748676 -76.846698 14.452066 -1.813425 -4.141751 0.093619 -22.506407 -9.252894 22.602205 -15.598884 31.264032 -1.505110 -19.906904 34.628159 -46.993474 -34.200817 -29.814360 -14.346102 14.229164 0.418292 2.071101 -18.223595 8.229712 -2.598250 6.368681 -15.664802 -24.150216 20.534706 23.048533 42.730870 -1.616402 3.702436 40.320945 11.779451 -9.919726 -6.113983 -0.681820 -22.801493 3.772480 -47.397884 -1.886061 15.589320 20.337028 -28.594528 7.684957 -11.593597 4.696595 3.176647 -5.186211 -2.482388 -8.212344 18.661326 -0.917989 4.212593 1.690256 -1.817586 -0.728045 -25.631699 -9.544046 12.288365 4.919137 5.605612 -0.706692 6.955812 3.432489 4.785433 -21.290596 -2.738422 6.594235 0.734868 0.456647 0.950000 -0.482164 -6.057846 12.470278 2.086613 2.536855 15.052068 -3.097698 14.629100 13.853729 -2.233484 1.891997 7.882578 -3.104877 -0.118833 -9.772612 -4.963101 17.267171 1.553225 2.100804 6.663475 -7.259360 15.220908 4.221584 11.938463 4.941204 -7.564696 6.775943 6.660065 -4.162516 -3.152759 -13.594498 2.063081 5.467617 6.953957 -2.666451 4.271046 -1.949704 2.744189 5.963934 1.917135 17.386986 6.957531 14.603265 16.060113 11.475677 -11.243020 5.131280 0.213414 -4.296570 -0.844912 14.099903 -9.655848 -9.294813 0.143201 -4.202286 -16.215068 -2.224151 -1.115492 20.025989 -11.006892 -5.547178 -3.332882 5.625908 17.020042 -5.197597 5.624111 -15.174178 -2.003094 -0.854908 15.276946 3.533159 2.693488 -5.902792 3.433346 -2.266183 0.934387 4.640838 -13.039084 3.135815 -15.328743 -9.630657 -9.702761 4.468351 9.771578 -17.183429 1.960911 -9.142044 10.768456 -24.945295 -2.301748 1.359331 7.676259 19.036872 2.822230 -8.049733 -0.784582 3.894323 3.915525 6.256140 -6.836982 7.319273 -5.400505 -1.211712 1.192933 4.135421 4.500036 -18.928699 -7.766429 1.153114 -1.996330 4.709414 10.182329 13.347516 -1.600801 7.121253 -9.491734 10.822152 -16.578834 -6.820858 -3.833410 -14.274179 -8.905095 13.743483 10.230142 11.463671 -5.005073 -9.239257 -0.490909 -19.720670 -21.025099 -0.887664 1.998619 -1.638696 10.748356 -4.289631 7.007708 -13.690408 8.019496 12.579049 -4.727331 -8.287240 0.405743 4.027726 3.019521 -3.764628 -4.710764 -2.165930 -5.646705 3.159886 20.094509 -1.324371 -20.674024 -26.975666 -5.546277 13.105507 -8.021115 -0.122126 -8.818178 -5.723533 -11.917064 -2.366262 -11.455055 -2.249568 2.190218 -8.579856 -17.938595 7.481683 -1.971191 -6.039099 6.322502 -13.366016 2.580950 10.903698 4.801577 3.086037 0.003089 -1.583523 -9.743878 -8.243086 5.828627 -11.440035 11.576154 6.772467 -1.650842 -9.541856 -7.858157 -10.937465 7.587688 -6.119327 9.939196 1.512864 -2.379858 3.473913 -14.646603 2.321149 -8.145782 3.115889 1.997641 -24.941453 17.081720 7.481323 -7.458680 1.325727 -0.715018 8.294893 -1.082073 4.201008 -10.152984 -9.686832 2.660762 2.177639 0.803210 -5.325335 2.029835 -5.253955 -6.586495 -12.615287 -4.994354 12.722819 4.835263 -2.972370 -0.633076 9.322261 -8.894324 3.229530 12.064151 11.666615 0.889533 -7.529331 -25.069981 4.557268 -5.745323 -3.688923 -1.997777 -9.402583 -1.999189 8.270283 -8.978810 11.530049 -4.241838 -7.145332 12.851931 -18.585962 -12.333893 -11.270079 -5.076063 3.582432 1.406075 0.354916 -6.210471 3.925264 0.995496 2.240549 -6.133525 -11.889649 7.555412 7.997729 15.112402 -3.418977 3.260509 14.578438 5.680508 -1.992102 -3.202932 1.289127 -8.461624 0.693416 -20.048218 -1.363995 6.638392 6.678196 -10.839854 1.314988 -5.610110 0.447372 1.739607 -142.553269 -72.699037 -54.333433 188.500412 35.270650 -70.714718 41.317666 62.262863 14.617895 -268.146150 -97.810170 93.707473 17.672986 -48.166508 27.359701 75.515893 75.787075 66.372231 -274.210678 68.923695 44.670765 1.584498 -96.040856 -42.193880 1.437478 -83.310223 18.591216 97.960717 7.296422 175.914310 -100.622745 67.293818 147.611415 -10.923507 110.618035 152.426863 41.925204 -12.683945 -3.786720 7.785457 285.067613 83.811270 -35.059536 73.374106 67.779599 213.926708 11.818039 237.672496 5.472915 -69.263398 107.996676 -57.741458 -81.560516 -10.687409 -221.307112 66.674281 167.271790 103.616838 -147.141079 119.567088 -78.704107 53.969239 92.311677 31.848198 250.498571 103.338858 121.010838 157.017680 249.736518 -116.924571 27.372776 35.349961 126.880122 -0.308331 108.772562 -103.019603 -85.065979 -241.731683 13.548440 -210.267687 18.329806 -18.084121 243.315633 -176.024647 24.040612 102.389104 48.428161 190.410909 -149.331425 -5.342598 -207.709303 3.684411 -11.284271 299.489941 3.991186 51.893868 -25.630591 102.576225 1.672188 80.493008 8.964481 -184.590845 -113.349413 -354.289977 -174.466646 -101.083542 -43.002927 -14.266329 -241.187658 -24.842994 117.674844 135.773522 -290.191747 -3.984414 55.334371 30.404831 122.370716 26.788412 -106.679507 6.636256 -40.120655 62.865528 55.092817 -84.275640 21.816259 -135.069892 35.698040 63.841609 77.993425 17.788444 -213.419894 -2.738825 55.126461 -18.867027 -22.933793 56.004188 41.065575 -143.011898 96.593523 -152.262340 162.048022 -242.302032 -52.239366 -114.871822 -172.043264 -55.170965 246.154862 115.737287 135.393691 30.594093 -103.156381 -26.110691 -258.593332 -354.631137 42.518942 -33.541346 40.796430 15.131814 -34.464128 -1.799824 -100.340810 -23.498758 92.208666 -140.815693 -86.773785 -65.205432 147.793930 2.335180 -63.694122 -108.362124 1.003496 142.910728 33.600230 127.106342 -97.722989 -230.990457 -238.026603 -116.085988 159.277051 -66.609404 25.833601 -49.558612 -36.144671 -208.929810 67.335175 -140.291694 47.266277 -71.205794 -83.817593 -221.481853 57.019555 -52.278990 -1.406583 8.813355 -160.531831 65.711414 39.965237 60.852509 2.547811 35.942930 25.837758 -214.567152 -199.491803 16.622719 -18.692263 222.161703 100.009301 29.499917 -58.439156 -69.643942 -173.326253 162.055786 -201.137805 79.684120 64.518799 -126.305545 159.131656 -137.097378 -75.781386 -144.177907 107.058266 21.751746 -162.111969 289.670831 180.075218 -193.021743 -48.672773 -119.689331 102.995438 65.175795 221.873865 -125.252716 -68.564027 76.743333 14.963835 -28.252696 -69.970101 83.926713 -35.324003 72.324848 -208.117625 -95.412459 134.766575 142.818813 -25.050449 22.504182 20.547125 -32.631262 -28.998720 226.846078 69.716092 44.865535 -148.149491 -345.648923 62.178861 -7.696285 6.465346 37.631578 -132.710456 -71.898270 9.455804 -16.031493 200.116948 98.975258 -33.181036 172.851043 -238.549375 -208.754985 -103.149978 -3.554780 32.855174 -85.564639 95.574578 -113.708066 10.418363 -35.100070 103.525726 -28.964681 -96.750918 -89.008833 52.448903 126.819995 27.396029 -99.896984 207.418912 22.357701 -68.943997 -33.492173 -3.985601 -13.461797 74.397766 -130.256931 -69.051197 -45.860520 94.238335 -140.224366 148.139234 -17.457723 78.452996 66.939041 -14.314482 -10.787578 -9.682033 28.632715 0.419858 0.909935 4.632641 1.963123 4.198026 -36.796376 -13.804390 18.734522 5.760202 2.020311 0.781018 10.617405 7.780335 6.657539 -36.489980 0.756921 6.445387 -1.140605 -5.334698 -3.648386 -1.023999 -11.998158 18.563007 10.135676 2.389987 23.470964 -7.418410 14.364493 20.313324 -2.280252 8.939152 17.045782 -1.622153 0.169113 -13.321446 -5.015417 31.318191 10.202246 -3.163853 10.308621 -2.441674 26.397472 9.319895 23.583372 8.719878 -10.256368 11.326982 6.583439 -10.506391 -6.303032 -25.520969 4.034074 16.874319 10.385684 -11.082013 12.015525 -7.695162 6.302186 10.614399 7.032150 29.382435 8.272335 23.101088 22.402210 23.296337 -19.801600 5.499810 3.395025 5.835736 0.309218 22.830417 -17.036084 -19.081731 -13.239356 -1.192877 -25.171288 -0.969706 -1.013372 28.712670 -19.501720 -4.645224 3.104217 6.439301 25.554961 -14.254534 3.630841 -23.866386 -0.907002 -1.995113 36.110405 4.661799 5.695204 -3.498446 10.795368 -0.672470 6.887887 8.654789 -23.937806 0.544616 -37.255134 -16.458730 -16.965003 3.686419 7.199463 -25.388612 1.284891 -0.228915 13.983125 -36.258478 -1.231222 6.606654 8.501417 26.575692 -5.958657 -6.814270 1.725593 1.420934 8.435228 11.711095 -14.372640 7.720585 -6.233917 4.912916 6.546791 8.515085 5.626369 -26.298831 -6.855490 5.639563 1.080563 2.930520 11.983872 13.558747 -10.888190 12.070490 -18.032815 21.529746 -29.251932 -5.666229 -10.591328 -17.816866 -11.700921 24.273750 12.437836 18.885791 -3.953545 -11.905882 0.282513 -31.113771 -42.441596 2.564144 4.125622 -1.247242 9.076793 -5.601699 7.175553 -18.896259 6.546726 15.535385 -12.518457 -11.873066 -0.238284 9.192784 3.972095 -8.851835 -7.963136 -0.237266 2.419293 7.762242 27.036899 -5.953098 -38.807946 -35.810778 -11.893257 21.765138 -11.590612 -0.373585 -9.158557 -10.392746 -20.990604 3.153336 -18.464605 4.847756 -1.108726 -13.201051 -29.253389 8.859251 -4.931349 -0.121415 7.731842 -22.784698 4.954817 8.261457 5.999164 1.957723 4.540940 3.790072 -22.967106 -17.769727 6.382983 -11.647943 26.117118 8.767672 -0.742774 -9.430018 -10.204065 -18.346976 13.628174 -17.011681 13.857585 2.282090 -12.180280 11.608474 -19.091565 -1.360573 -16.498008 9.148789 4.362444 -24.815032 35.032124 21.714435 -17.202066 -2.165589 -3.860956 11.610625 1.571830 17.637148 -19.787773 -15.499085 6.075505 0.747657 -0.512117 -5.513732 6.717287 -5.422524 -4.515237 -22.797436 -9.735692 18.229720 12.108095 -2.769310 1.790568 10.677836 -10.687795 -1.827713 24.738973 13.388896 5.482486 -19.180996 -46.195990 9.935151 -5.956593 -4.530000 1.655944 -15.364113 -7.672634 8.544954 -4.351823 20.528777 7.548828 -9.579831 22.111556 -29.690008 -23.463561 -18.957103 -8.276975 5.144128 -3.744708 5.811002 -12.387170 4.745907 -4.132294 6.895053 -9.553875 -11.794329 5.996398 10.818923 20.770957 0.442727 -3.800776 25.577879 6.110364 -6.800644 -6.231463 -0.606020 -12.469914 7.996074 -22.513805 -4.881044 3.194543 13.210628 -17.161841 7.272466 -3.783064 6.454508 4.110065 -17.538542 -5.076771 -18.602154 34.396003 -0.756930 6.108211 2.876240 -2.306297 0.511941 -43.275002 -18.153296 28.210435 9.071507 6.766763 -1.034164 18.855405 8.282268 4.630967 -31.946894 -0.934835 6.938518 -6.520939 -7.476930 2.209319 -2.133577 -16.311330 23.876826 6.304155 3.059999 27.034670 -6.059198 23.995927 24.388539 -3.870242 9.241761 17.119717 -7.691505 -1.365445 -19.150648 -9.998555 32.386224 8.756904 1.656896 10.165852 -9.426380 29.991356 6.531269 31.058638 6.373449 -12.584351 16.214906 12.668227 -12.139683 -2.615667 -28.149246 3.301871 7.144709 3.790796 -8.428642 9.296687 -12.315507 8.167546 11.148457 8.686006 34.506869 9.511745 29.287827 28.008376 22.001215 -22.858117 7.316224 7.785737 -0.806729 1.975182 27.393272 -14.795708 -21.330800 8.728524 -2.267600 -21.611633 -2.887511 -2.758662 44.965467 -21.784884 -14.292461 -4.326072 10.172318 32.064526 -15.753522 10.778640 -27.308961 -1.360081 -4.372163 32.122180 7.374757 8.244060 -9.724665 7.491399 -4.924788 5.067897 4.345274 -27.292131 0.638850 -28.930997 -18.718535 -20.470869 8.597808 13.992712 -32.142888 4.098638 -8.086644 25.259132 -40.995102 -0.410390 5.940214 9.708325 42.444699 13.909005 -11.895243 0.002455 8.453983 11.123087 14.630600 -9.976454 12.050784 -8.106356 6.068239 2.951237 9.608668 8.240930 -40.423992 -9.157793 8.286908 -5.673716 7.614061 17.739259 21.963586 -9.849192 14.500588 -13.940510 21.668497 -34.600449 -12.267913 -13.363403 -27.047478 -15.138317 28.644677 27.247192 29.920049 -5.336598 -10.106312 -1.397095 -39.761623 -41.408665 -4.601053 2.188157 -5.271136 14.023575 -5.268488 13.546595 -23.814772 14.882502 19.910870 -13.161911 -15.476782 1.249713 14.776931 5.885867 -9.455130 -9.438977 -6.383858 -11.527187 7.611039 36.917292 -2.382019 -52.079624 -46.868474 -12.650527 24.504971 -15.674993 1.505041 -13.894162 -13.017099 -19.323825 -4.691403 -21.100895 2.084950 2.608958 -13.527781 -32.796476 13.104243 -3.186358 -11.130823 8.411397 -24.828608 5.127580 21.076241 2.460354 5.512035 6.017607 -3.127977 -19.522707 -14.866588 12.389485 -19.799970 28.588897 19.334848 -5.250240 -13.269055 -14.700397 -25.753511 14.278480 -19.887464 17.824269 2.953314 -8.014180 8.333201 -26.824190 1.970624 -15.715514 9.726762 2.287217 -45.704124 31.217786 24.915714 -17.590917 0.595167 -2.589156 15.336286 0.176388 14.573119 -18.816340 -15.325352 3.706848 4.596722 0.391318 -0.115630 6.403811 -9.882565 -11.711504 -23.340859 -8.613904 23.945427 11.084125 -3.769508 -4.429092 12.354233 -13.930177 10.397119 22.048700 19.341487 2.250711 -21.167298 -58.751872 9.158652 -13.798863 -13.001312 2.863777 -14.463743 -6.088962 10.633806 -21.295178 23.322258 -11.997317 -13.613155 24.825922 -33.984694 -25.803538 -23.978702 -10.088752 2.693803 0.085360 7.325028 -12.453919 5.082929 -3.047280 5.517323 -15.069651 -17.265497 13.345855 14.844061 27.908305 0.029103 2.801833 27.208804 11.084959 -3.345378 -10.271713 2.847795 -16.924659 6.244779 -39.867009 -5.889647 8.200235 13.514718 -19.577369 1.855572 -2.673311 5.022725 4.008581 -12.670157 -9.406781 -5.350281 18.826203 2.203762 2.274384 3.543843 3.450701 3.762016 -29.824892 -13.167213 17.532876 2.183823 0.952517 0.658566 7.041724 8.618082 5.681515 -29.678406 0.096206 4.046890 -0.962487 -2.987108 -1.968695 0.255699 -8.585343 12.139507 6.751763 2.553787 16.807496 -6.332491 10.405571 14.906889 0.438881 6.797106 12.109102 -3.108339 -2.852104 -7.553189 -7.690914 25.332928 7.204042 -0.101266 10.801689 -0.259284 19.176907 3.863935 22.036995 14.952880 -6.703774 10.589343 -1.866196 -9.788088 -1.766794 -21.351471 3.404229 8.875588 4.260813 -7.514583 8.539048 -4.756499 5.527225 6.425116 -1.255646 22.278683 6.652903 16.725750 15.249616 16.684592 -13.883441 3.229919 3.282543 6.452042 4.797331 13.295705 -14.133666 -10.348132 -11.480343 -1.249098 -19.915973 0.611843 -5.054582 26.285979 -13.620112 -3.442662 2.123551 3.121000 18.102536 -8.563431 2.555948 -19.864151 1.195405 1.025071 21.247404 2.945855 4.458979 -3.629571 4.659802 -1.963593 5.114143 6.198008 -16.328783 -3.062582 -30.749336 -10.528523 -12.014504 3.038288 3.742762 -18.516634 3.885447 0.082008 13.973442 -25.796436 -3.534090 4.212891 3.872534 15.871517 3.152257 -6.560559 -2.310550 1.626278 8.405204 6.824909 -11.012662 4.334452 -8.077026 1.887782 3.124529 7.624981 3.531984 -18.939908 -6.646820 4.609028 2.747113 1.803158 8.052016 9.633876 -6.083568 8.819896 -10.925692 14.059265 -20.164923 -6.202038 -8.540708 -11.408664 -9.064890 28.699075 13.191298 16.944782 1.733443 -5.818611 -2.300564 -21.548548 -29.722947 2.371842 -0.502009 1.728478 6.091831 -2.669272 5.069945 -13.420345 3.174033 7.329061 -9.348159 -8.188234 -1.832409 4.211390 0.483918 -5.551649 -8.529754 0.335304 5.070627 1.273347 16.255311 -5.219906 -31.606108 -23.644670 -9.744672 15.372584 -9.669851 1.281599 -5.830254 -4.515684 -11.715573 0.016650 -12.785618 1.561583 -0.577100 -14.169811 -21.594703 6.517540 -4.154401 -0.373726 6.484077 -15.897315 4.650712 8.327327 11.426703 1.705973 4.739001 0.064693 -18.753112 -14.653420 0.996590 -9.105462 20.482572 9.050902 -1.747514 -11.030485 -8.086756 -14.539945 11.844957 -17.510197 9.876799 0.536708 -10.088720 7.367463 -13.326351 0.792717 -12.569787 7.233262 3.072402 -30.243745 23.601594 15.514784 -14.185027 -3.032640 -8.427713 8.643569 1.854501 14.557819 -13.042241 -9.340058 4.420592 -0.088200 -0.398074 -5.362692 6.139576 -2.222028 -2.786678 -19.545198 -9.393787 14.571896 8.351543 -2.521154 0.866405 9.607817 -1.771133 3.448067 20.028835 8.908180 2.575983 -14.849548 -42.024421 6.125324 9.924681 -2.248936 5.318176 -14.876332 -6.825244 4.527096 -8.366687 15.334891 1.692681 -2.996645 15.751007 -18.448606 -15.665636 -11.744166 -5.721409 4.227125 -2.944109 7.250364 -8.383016 1.228292 -3.652704 5.240562 -5.693996 -9.290305 0.523991 8.396616 15.951397 3.624851 -0.659568 17.506727 4.896473 -6.544027 -2.830610 -1.743141 -7.121294 5.908037 -19.470696 -2.793231 2.016832 7.096048 -12.325176 6.125674 -0.343007 5.909213 1.067975 -3.252691 -4.039672 -2.601213 7.868252 0.391951 2.325851 1.063953 -0.559136 0.872147 -11.606566 -4.682846 6.194006 1.231639 2.335588 0.059760 2.872983 2.561073 1.105829 -9.856376 -1.102533 1.723422 -0.980856 0.400291 0.697246 -0.071743 -3.636382 6.047323 2.435070 1.147588 6.300171 -1.723367 5.358318 6.029199 -0.092791 1.827214 4.127971 -0.897969 -0.511622 -4.797153 -2.746648 8.332098 1.170056 0.275750 3.052590 -2.109125 7.083703 2.674118 8.223439 6.079518 -2.997369 4.638269 -0.818042 -2.822601 -1.274741 -7.195635 0.752445 2.196501 2.055955 -2.253813 2.214127 -1.514637 1.781309 2.063697 0.414321 8.022298 1.770731 7.199453 6.147561 4.582364 -6.014210 1.032316 1.660119 0.240219 1.366315 5.434350 -5.669335 -3.976269 -2.542766 -0.384979 -6.106051 -1.283612 -1.271423 8.405847 -4.581390 -3.280219 -0.354275 0.432332 7.120129 -2.482261 2.672002 -7.366341 -0.241418 1.787715 6.931256 1.665878 0.558910 -1.261025 1.571592 -0.763130 1.917921 2.589124 -6.034973 -0.364139 -9.282958 -3.842264 -4.584875 2.597963 2.977741 -6.941736 1.239759 -2.068347 4.260079 -9.599597 -1.052681 1.641394 2.838376 7.872302 0.940153 -2.058264 -0.849260 2.293913 2.812204 3.912344 -3.686689 2.864639 -2.497173 1.502907 0.865973 2.408774 1.489528 -7.290411 -3.437096 1.696452 1.284058 1.405891 3.098111 4.932876 -0.791059 3.470055 -3.453680 5.263460 -7.433620 -2.071561 -2.675820 -4.485963 -3.762755 10.740738 5.190848 6.758852 -0.264189 -3.267841 0.042914 -7.867937 -11.435439 -0.286319 1.051278 -0.102220 3.744835 -1.556678 3.707913 -5.270480 3.008478 3.516198 -2.637927 -3.702391 0.308755 -1.785215 1.053954 -1.957715 -2.303896 0.127186 -0.798201 0.146186 8.368998 -0.998787 -12.403780 -9.853424 -3.550609 5.692376 -3.817709 0.171620 -2.426237 -2.465975 -5.092582 -0.447377 -5.091105 -0.008045 0.651422 -5.828990 -8.046634 3.009167 -1.447218 -0.504178 3.470549 -6.041516 1.082009 2.741056 3.608345 1.601224 1.502823 -0.456324 -5.785849 -4.511127 1.075059 -5.015313 6.834866 2.541042 -1.176661 -3.608516 -3.814219 -4.926345 3.593226 -5.028234 4.043314 0.209836 -2.840524 1.635211 -5.632520 1.462444 -3.493965 2.326028 2.079610 -11.555994 7.975122 5.484170 -3.969219 -0.648163 -1.181769 2.677727 0.204811 3.888392 -4.670701 -3.718168 1.015278 1.062799 0.318898 -1.322859 1.746184 -1.123693 -2.870019 -6.411036 -3.476679 4.929085 2.520015 -0.588236 -0.036477 4.529276 -1.291957 0.597920 6.722746 3.471908 0.789320 -4.328525 -15.501612 2.710919 2.952738 -2.204837 1.908205 -6.029514 -1.495292 2.608956 -4.067372 5.301776 -0.188925 -1.993637 6.107673 -6.987174 -5.336300 -5.279755 -3.264858 0.939672 0.083305 1.657207 -2.641698 1.125720 -0.979633 0.428510 -2.939124 -3.303733 2.051793 3.278459 6.067368 0.249436 1.785536 6.259699 1.988492 -1.909514 -1.764073 0.367981 -3.728941 2.221237 -8.786363 -1.097873 2.057254 2.737774 -4.273765 -0.235069 -1.086377 0.909248 -0.016444 -7.750993 -5.082408 -11.499939 27.629640 -1.957456 6.744388 2.734267 -3.806097 0.709005 -35.810754 -12.903743 21.037609 6.748919 7.397112 -1.723202 10.147495 4.903855 6.596900 -31.027845 -3.994760 8.789288 0.239650 1.705732 -0.312668 -0.343827 -9.256135 22.087781 3.809003 3.837323 21.905553 -3.887126 20.477495 19.578624 -1.622875 3.855215 11.625550 -7.629916 0.567678 -16.270802 -9.461590 24.183532 3.397289 3.383444 9.835771 -10.660641 22.230312 8.183596 15.143471 14.316045 -10.412761 10.432228 13.286168 -6.440517 -5.267654 -19.986113 1.912699 5.457781 6.719671 -3.531559 5.657643 -2.499634 4.926756 8.381888 4.029478 24.729882 8.343365 21.215310 23.127276 15.148597 -17.237424 7.564724 0.186985 -5.412258 -1.266260 21.907193 -14.970637 -16.783382 4.032878 -6.602903 -21.346636 -3.604071 -1.055445 25.668226 -15.647653 -8.481655 -6.748924 7.792503 24.759251 -6.463851 7.720127 -21.798343 -2.369929 -0.267580 22.239886 5.781897 4.336590 -7.313621 4.701206 -3.786345 1.445763 8.501256 -19.762242 8.288987 -21.732364 -11.837200 -15.674785 9.000993 13.929108 -23.037057 4.211184 -13.745307 14.030975 -34.722507 -3.756614 2.597482 10.365598 25.571215 -0.864471 -6.438289 -0.100985 5.956339 7.047506 9.567698 -11.018147 9.894180 -4.330901 -1.976211 1.795050 6.936324 6.907614 -25.067637 -12.172261 2.436596 -0.273975 7.211685 15.511094 18.692576 -1.074539 9.756288 -13.217953 16.760495 -22.103188 -8.841210 -6.574752 -16.139424 -13.827781 17.802022 12.999317 17.755671 -8.254472 -10.690892 0.264391 -27.492257 -30.116806 -0.655277 3.345842 -3.722994 15.701533 -5.735619 11.056476 -21.028995 12.491142 17.150245 -7.175025 -12.588948 1.759782 1.503537 4.814248 -6.438188 -4.919470 -3.185332 -10.229583 4.924489 29.392381 -1.147740 -32.669374 -38.122753 -8.442035 19.364100 -12.602646 -1.021650 -12.897631 -8.958952 -14.338763 -4.269315 -16.955754 -0.925122 4.053361 -11.592156 -25.973864 10.529489 -3.112298 -4.350816 9.727621 -19.519352 3.478718 13.226574 4.889025 3.657771 2.408367 -1.366044 -13.323258 -9.653403 9.301829 -16.748529 14.800740 8.405296 -2.497306 -14.323915 -12.252437 -14.434340 8.730855 -9.329336 15.629506 1.377686 -4.610691 4.592244 -20.123835 5.126247 -10.483407 4.306239 3.413610 -34.876193 22.313432 11.283692 -10.506627 2.276660 0.478405 11.343274 -2.199129 6.046509 -15.482093 -15.072439 3.019481 2.169161 1.514983 -5.039572 2.601063 -6.803310 -10.699597 -18.057675 -7.188233 18.847613 5.837731 -3.644040 -0.846365 14.191426 -13.647386 4.849042 16.789935 17.081450 3.063887 -13.435179 -38.212782 6.681338 -5.946293 -4.360751 -1.609182 -13.194514 -3.610444 12.652273 -10.917937 16.435134 -6.341138 -11.348038 18.658611 -25.758104 -17.834661 -17.898087 -9.073900 5.027793 2.687833 -0.214535 -7.811307 5.352045 0.739741 2.784585 -9.674709 -14.379554 13.582433 12.981093 23.057030 -3.473126 5.041572 20.777623 9.025881 -3.635205 -5.244250 1.081191 -15.208533 1.111098 -29.921479 -1.998706 10.458299 10.340992 -15.982679 0.307505 -6.879295 1.326177 0.052781 -41.518521 -22.765783 -23.867417 76.767827 7.557891 -9.950542 10.812609 10.041223 1.388867 -97.166915 -43.923018 35.835646 12.940642 -4.388019 14.070540 26.559896 23.775395 17.247021 -98.126279 12.485642 17.384646 -6.240671 -25.761972 -10.062811 -2.145139 -32.124227 26.406906 31.595435 2.981716 62.866161 -27.758485 38.662632 50.525811 -4.052808 35.313995 46.811332 -6.090601 -3.764609 -18.966458 -6.401550 95.743191 22.970153 -3.619633 26.338721 8.024650 72.705626 7.039242 69.616237 11.213902 -26.014869 44.188189 8.144516 -23.340795 -6.807255 -75.600043 16.421445 53.798882 27.108133 -39.736907 35.650244 -29.306758 19.105450 29.387863 14.514651 90.783511 29.167752 55.438237 60.223087 71.610693 -47.365772 13.073330 11.656336 25.962497 -3.455783 44.998315 -38.958585 -37.240740 -56.999254 -1.391683 -72.863629 4.678900 -3.768002 88.757184 -53.931499 -7.976046 19.584521 18.387433 70.475585 -45.596435 7.563587 -66.686266 -1.777006 -10.140882 93.911760 7.728869 16.285275 -7.819053 30.220501 -3.613142 26.269128 5.211600 -63.063503 -18.592423 -118.291526 -60.177892 -36.611269 4.002952 5.876555 -79.242885 -0.181419 19.801198 36.527963 -97.948177 -5.562280 17.218491 21.726144 44.360197 -2.428317 -36.282541 -4.744400 -1.534829 29.779797 30.374593 -26.390553 20.059929 -41.973751 11.398700 18.907178 30.452834 9.656360 -67.253543 -14.276146 14.348566 -5.384509 -0.550557 24.462111 30.063246 -31.299547 35.142807 -47.402777 60.584179 -87.268161 -14.551187 -45.423514 -53.760723 -23.892982 66.993909 42.854903 51.585565 2.191292 -35.718469 1.161417 -91.523936 -113.999081 7.103389 1.032891 5.700785 14.622822 -13.621367 14.096618 -42.807618 6.337677 42.586010 -43.618602 -34.645486 -15.216745 40.402820 9.723592 -27.192309 -33.556845 2.493063 20.314954 7.731703 62.543283 -21.166019 -85.560080 -95.162778 -37.813970 58.393515 -27.298133 4.682846 -21.536608 -19.762324 -64.160047 14.713271 -52.361460 10.346952 -12.337155 -33.604089 -77.545534 18.391985 -12.628165 -6.915710 11.061015 -61.067553 18.457704 32.061006 18.620949 4.732206 16.690371 7.119416 -64.118983 -59.175821 10.599031 -20.378487 66.387602 39.522000 2.338778 -24.846992 -28.188418 -54.786561 44.137691 -51.505369 33.862288 15.518506 -40.967996 39.506547 -56.392771 -15.514253 -43.199291 25.919672 8.342517 -78.335298 93.329814 57.158774 -57.982506 -12.152343 -32.698651 36.823764 7.115707 64.004500 -45.398826 -24.306775 17.169337 8.186547 -5.324803 -20.793561 24.439334 -13.450875 -1.708505 -67.340811 -32.566820 53.423312 41.854353 -5.318580 6.202900 19.347277 -17.849292 1.001634 72.411129 33.872263 9.372516 -48.773343 -125.513303 25.321541 -11.410822 -9.083603 8.360184 -40.956571 -27.176507 8.606184 -8.410874 62.083246 25.449629 -17.605280 62.039839 -75.566739 -68.225438 -50.278754 -8.243481 9.738572 -23.389047 18.260343 -39.292275 7.744888 -10.746776 27.450556 -16.831205 -33.764980 -15.815882 21.455188 53.355279 5.659233 -16.779608 71.986397 19.042579 -22.046053 -18.345450 0.862173 -22.938190 26.260290 -57.912375 -23.386589 -3.321587 32.294041 -48.189339 28.994778 -7.715209 24.424207 19.776063 -6.689961 -3.452887 -3.647764 10.738948 1.117942 1.946637 1.753538 0.349030 1.783355 -14.758970 -5.815369 10.366897 1.808490 1.998120 -0.775427 4.669730 4.206980 2.558196 -13.066036 -0.350490 1.838894 -1.160812 -1.319075 -0.264326 -0.230316 -5.121435 8.307754 3.584648 1.777538 9.400037 -3.201124 5.991562 8.296548 -0.388867 3.322634 6.743614 -0.099752 -1.310774 -6.684114 -4.480839 12.267775 2.915652 0.441425 5.205903 -1.727034 10.747369 3.562611 11.568585 7.631073 -4.144214 4.740808 1.056240 -5.205766 -1.681764 -10.641871 1.770562 2.757310 2.271114 -3.972229 3.945075 -1.957370 2.872487 3.670871 1.155634 10.481051 2.870589 8.337937 8.307479 8.736506 -8.684995 1.480740 2.813148 2.531900 3.057625 8.724967 -6.783912 -6.544627 -2.030539 -0.428688 -8.303596 -0.733799 -2.185197 13.193582 -7.711426 -2.882931 0.495544 1.466221 10.064218 -4.625759 2.478371 -10.366995 0.239743 0.761742 11.074395 2.066617 2.051196 -2.014826 2.177805 -1.377456 2.865591 3.069063 -9.709687 -0.514022 -12.588328 -5.815189 -7.397633 1.923968 3.119116 -10.068384 1.790393 -1.652144 8.632481 -13.691250 -1.392327 2.493491 2.711658 10.611214 2.613768 -1.940945 -0.639649 2.382643 3.949429 4.490117 -5.565965 2.944839 -1.978563 1.260882 1.437202 3.638297 2.111824 -10.724329 -3.835635 2.963349 0.938947 1.880339 4.267940 5.697381 -3.861619 4.896026 -5.326588 7.559795 -10.257091 -4.240617 -3.886263 -6.490512 -5.597105 12.965005 6.657655 10.308511 -0.114110 -3.179019 -1.046023 -11.467445 -15.070538 0.210650 0.168408 -0.674778 4.898567 -1.762352 4.030932 -7.710736 2.372119 4.570485 -4.791367 -5.365603 0.229417 1.199890 0.637800 -2.578543 -4.238072 -0.241418 -0.285823 2.165167 10.535657 -2.331155 -18.370424 -13.275438 -5.409306 8.617458 -5.623356 0.536783 -3.458747 -4.087802 -5.551163 -0.743300 -7.109891 0.579285 0.101110 -6.363242 -11.734765 4.693352 -2.460971 -1.462918 4.322063 -9.067617 2.452222 3.967537 3.367620 1.225700 2.108605 -0.602183 -9.004993 -6.176516 1.842725 -5.542544 10.544196 4.395681 -0.962017 -5.367685 -5.343017 -7.499461 5.647972 -9.397569 5.936174 1.055562 -3.707697 3.560613 -7.786683 1.262011 -5.823470 4.465821 2.348988 -14.959259 11.755949 9.191282 -7.141534 -1.125910 -2.226619 4.336516 1.086968 7.084342 -7.461301 -6.000496 2.570697 1.251879 -0.105238 -1.763897 2.674500 -1.576752 -2.542927 -9.309548 -4.306513 7.060336 4.583321 -1.346528 -1.050175 5.605632 -2.463140 2.044255 9.547623 5.079984 2.327453 -7.695989 -21.221306 3.907254 1.629161 -2.184347 3.306754 -7.323341 -2.305351 3.918257 -5.821179 8.393542 -1.958255 -2.344507 8.977969 -10.865143 -8.797305 -6.852602 -4.456214 1.963648 -0.346589 4.181150 -4.833804 1.041468 -2.487211 1.865701 -5.204055 -3.886299 3.280115 5.295971 8.549578 1.499568 0.888952 9.754736 2.867951 -2.643537 -2.025584 -0.165335 -4.570332 2.056275 -11.377441 -1.273128 2.318004 4.420441 -6.637778 1.961577 -0.873925 2.032988 0.214445 -5.555325 -3.307479 -3.668169 10.254904 0.745172 2.230899 1.369378 -0.681727 0.431988 -13.899538 -5.707099 7.346709 2.090337 2.515170 -0.190109 4.877544 3.488081 1.264265 -12.593302 -0.814171 2.149721 -1.895889 -1.230876 0.795524 -0.358866 -5.504691 7.473691 3.597484 0.922253 8.630613 -2.772127 6.647065 7.733312 -0.469767 3.214806 5.810844 -0.933291 -0.875127 -6.047941 -2.707790 11.297244 2.166579 -0.039166 3.221093 -2.082298 9.917343 3.041687 10.284820 4.874994 -3.885215 5.214636 1.319660 -4.110089 -1.123191 -9.788084 1.021687 3.473981 2.339998 -3.458641 3.473315 -2.818228 2.807625 3.327899 2.112200 10.824962 2.406639 9.166163 7.595546 7.375454 -7.886641 1.774797 2.383565 0.937474 1.390560 7.176718 -5.861512 -5.736770 -1.945243 0.166361 -7.938612 -0.993406 -1.153391 10.963911 -6.448418 -4.079435 0.006837 1.435018 9.740907 -4.764539 2.982664 -9.548937 0.033380 0.325484 10.716499 2.101273 1.839509 -1.677208 2.604951 -0.876691 2.504352 2.356780 -8.774679 -0.564467 -11.563498 -6.191639 -6.486989 2.393750 3.298204 -9.824990 1.513612 -1.493703 6.877567 -12.389003 -0.617509 2.011865 3.504972 10.410514 2.227528 -2.826814 -0.811949 2.247274 3.985751 4.917063 -4.031695 3.933301 -3.337438 2.399839 1.613777 3.417929 1.926774 -10.406321 -3.092529 2.872896 -0.525377 1.793230 4.487555 5.916866 -2.600948 4.754523 -5.084664 7.186094 -10.421595 -2.915932 -4.156741 -7.083418 -4.714473 10.036180 7.405176 8.177548 -0.288785 -3.852195 0.051810 -11.532918 -14.667196 -1.062988 1.091298 -0.749115 4.243488 -2.122406 4.208410 -7.335444 3.022889 5.442620 -4.339023 -5.222555 -0.309879 1.836798 1.700292 -2.992983 -2.886826 -0.407259 -1.088089 1.436661 10.993974 -1.588943 -15.895118 -13.389113 -4.994160 7.818743 -5.055515 0.289906 -3.739412 -3.659017 -7.474477 -0.056837 -6.432880 0.090216 0.373806 -5.710196 -10.611670 4.002631 -1.850565 -1.902475 3.530219 -8.554101 1.791422 4.662683 2.015270 2.033903 1.663707 -0.653646 -7.039300 -5.791897 2.469966 -5.485891 9.417290 4.142992 -1.421842 -4.018594 -4.959461 -7.152743 5.187034 -6.633122 5.422967 1.037565 -3.652928 2.727328 -7.550772 0.657509 -4.210323 3.554636 1.587368 -12.672899 11.511180 8.447930 -6.413466 -1.140128 -1.960847 4.582776 0.238195 5.990924 -6.585181 -4.697950 1.512708 1.784833 -0.018341 -0.844588 2.577609 -1.817532 -3.297827 -8.498626 -4.155420 6.834020 4.323517 -1.162423 -0.593452 4.828596 -2.674363 1.872462 8.369222 4.400865 1.416102 -5.956636 -18.992361 3.145652 -0.955528 -3.041896 2.122493 -6.156842 -2.168914 3.116406 -5.273494 7.922552 -0.929308 -3.246191 8.357326 -9.632850 -8.081141 -7.482551 -4.089831 0.921545 -0.440570 2.766142 -4.371868 1.264322 -1.714710 1.763119 -4.394845 -4.688727 2.816703 4.343741 7.916609 0.297641 0.677924 8.962676 2.867029 -1.587875 -3.019283 0.514039 -4.512572 3.285806 -10.249932 -1.960068 2.039294 4.122857 -6.012772 0.808461 -1.117301 2.040048 0.941245 -5.789941 -1.828387 -7.393439 18.599801 -0.875440 4.968831 2.019128 -2.371443 -0.265952 -25.128346 -8.928306 12.012313 4.673380 5.919633 -0.726736 7.459259 3.503264 4.371474 -20.521510 -3.095986 6.653303 0.487579 1.396420 1.369547 -0.426774 -6.518392 12.139512 2.487216 2.703710 15.165573 -3.264685 14.060436 14.251567 -1.867676 1.325284 8.116004 -2.383516 0.067215 -10.550198 -5.384805 16.524573 0.958265 2.149484 6.289450 -7.655359 15.639969 4.674344 13.560328 5.820767 -7.987879 6.753428 5.038775 -4.294882 -2.869007 -12.518922 1.878624 4.874194 7.183628 -3.021716 4.333255 -1.994185 3.617328 5.978878 2.482318 16.220130 7.259054 14.018059 15.375326 11.333813 -12.232454 5.093675 0.587413 -4.643680 -0.600165 14.094447 -9.815410 -8.876564 0.930582 -3.226949 -14.763131 -2.911466 -0.934598 19.382285 -11.208840 -5.598432 -2.762840 4.956892 17.182192 -5.156423 6.510345 -14.849096 -1.401355 -0.377039 15.867771 3.140572 2.015484 -5.656814 3.330731 -2.354147 1.013923 4.395432 -13.094678 2.215903 -13.591495 -9.770788 -10.192730 5.063490 9.804508 -17.628570 2.265937 -8.249771 10.700486 -24.685032 -2.367793 1.800194 8.328334 18.459498 4.206371 -6.542861 -1.185365 4.515653 4.405820 6.747464 -6.834862 7.783715 -5.345579 -1.185550 1.878349 4.023847 4.086668 -18.569107 -7.761987 1.760261 -2.588168 4.803757 10.332267 13.188417 -1.283825 7.390520 -9.471454 11.008872 -16.419493 -7.015810 -3.657571 -13.582968 -9.271711 13.436906 10.376153 11.834991 -4.333022 -9.068101 -0.771985 -19.120020 -20.411519 -2.292653 2.041173 -1.430948 11.086387 -4.316819 7.495546 -13.814827 8.131807 11.202458 -4.633777 -8.773389 0.582586 3.584875 2.710913 -4.088612 -4.488290 -1.654393 -6.180475 1.975256 20.537803 -0.824391 -20.550384 -26.849662 -6.218058 13.493730 -8.444962 0.048168 -9.149890 -5.738019 -11.405386 -2.231126 -11.231282 -2.003250 2.884225 -8.590243 -18.251614 8.304384 -2.441122 -6.140473 6.957574 -13.675206 2.433361 9.882261 3.535887 3.531295 0.663424 -1.950291 -10.170066 -7.866029 5.284595 -11.545896 11.099280 6.550170 -1.711509 -9.022730 -8.726118 -10.520830 7.530428 -6.715638 9.989196 1.419210 -1.674752 3.318259 -14.180128 3.003800 -7.918602 3.335628 2.534797 -23.937693 16.586552 8.269878 -7.698408 0.924603 -0.947899 8.370011 -0.834651 4.561363 -10.454242 -9.899653 2.491819 2.389158 0.811382 -4.380720 1.936621 -5.306771 -7.034568 -11.831799 -4.667455 12.481844 5.025992 -3.209148 -1.240043 10.402198 -8.515970 4.303184 11.724206 10.767030 0.917542 -7.446084 -26.244200 4.924414 -5.376895 -3.630124 -1.164330 -9.581839 -1.532629 8.548472 -8.114335 11.814234 -3.790381 -5.999400 13.284573 -18.359751 -12.594241 -11.487509 -5.745735 2.998167 1.693948 0.184136 -5.631532 3.652814 0.864605 1.807797 -6.455606 -11.217761 7.373880 8.029650 15.813265 -3.436538 3.196759 14.745359 5.770985 -1.826391 -3.225140 1.227158 -8.313096 0.552054 -19.077102 -1.225994 7.169923 6.705776 -11.072340 0.899874 -5.503476 -0.235083 0.935368 -9.234470 -6.925255 -9.037962 25.587644 1.079886 5.490228 2.349620 -2.876528 2.381548 -33.872849 -13.761149 17.992481 4.132189 4.027242 0.714072 8.411602 6.426332 4.673303 -27.961024 -2.499955 6.325989 -1.467115 -1.186839 0.672199 -0.758385 -9.316658 17.582252 6.762700 2.868398 18.000244 -4.948623 15.835626 18.200774 -0.202940 4.499819 11.069516 -4.831403 -0.228496 -12.811285 -7.899425 25.267512 3.901809 0.780652 9.826341 -4.433554 20.712599 7.156112 21.101235 11.057201 -8.621170 10.997201 4.786121 -5.778884 -3.978553 -20.205056 2.572541 8.912381 6.027167 -7.452102 6.204495 -4.137906 5.889700 7.202006 3.430897 24.580718 7.873952 21.638638 19.113167 14.897005 -15.975033 4.698840 2.148936 0.530157 1.725849 17.750679 -12.943482 -13.333065 -0.657078 -2.980012 -18.584824 -2.231543 -2.139507 26.429139 -13.876729 -8.111737 -2.601779 4.830002 22.249396 -7.770311 6.919415 -21.020749 -0.224051 0.236158 23.461079 4.354376 2.253449 -6.120836 5.262586 -2.762819 3.763957 6.720765 -18.119910 1.390795 -26.683390 -13.061857 -13.906904 6.953891 8.280969 -22.869256 3.020167 -6.738836 12.679368 -29.824585 -4.163909 3.943165 7.749429 23.801716 0.449598 -7.927216 -1.092620 4.228605 7.375445 9.389961 -8.344857 7.847638 -8.455045 2.641110 3.107754 6.151162 5.518175 -23.379406 -8.617954 3.853198 0.070408 3.817542 10.972883 14.740160 -3.007986 9.750836 -10.733248 15.672451 -23.535872 -6.233020 -7.739393 -15.194783 -10.683327 22.518161 15.175893 18.167108 -2.743066 -9.395991 -1.039008 -25.604287 -31.909746 -1.819067 2.137518 -1.466843 9.646030 -4.483953 9.410234 -16.755538 8.740875 14.360937 -7.710466 -10.874601 -0.806816 3.745024 2.290426 -6.694703 -4.695888 -1.634066 -3.854823 0.827189 25.325077 -2.363528 -33.319153 -32.404599 -8.942805 17.035035 -11.629149 0.322010 -9.744439 -6.775851 -16.438397 -0.736800 -14.388679 0.984416 1.444382 -13.035681 -24.126448 8.055725 -3.822462 -2.370819 7.818787 -18.692828 3.878405 11.987608 6.385418 4.181119 4.454192 -1.129657 -16.486609 -11.761131 4.711606 -13.711024 19.356149 9.760349 -2.547181 -11.767902 -10.657693 -16.199637 10.461543 -11.721935 11.975710 1.786739 -7.165715 5.366812 -16.884937 2.716545 -10.404653 5.017650 3.543437 -32.089404 23.167451 14.905448 -12.332528 -0.774564 -3.716927 10.275063 -0.927925 10.065015 -15.791726 -11.456391 2.328629 1.439648 0.535018 -4.014743 4.354713 -4.747792 -7.119876 -19.138269 -8.491753 16.094197 6.917516 -3.159068 -0.897213 11.535387 -8.018292 4.255663 18.448323 11.604207 2.686938 -12.284612 -41.947238 6.393580 -1.893564 -5.585517 2.023325 -12.318618 -4.871034 6.126361 -10.188227 16.096013 -2.739075 -7.374918 17.715188 -22.704289 -16.551830 -15.675616 -8.213227 2.952008 -0.076373 4.330376 -6.927372 2.338811 -1.912286 2.855404 -8.390736 -12.660687 6.478027 9.699820 19.323499 -1.688403 1.247955 18.193393 6.634809 -5.544179 -4.306500 0.153048 -10.710235 5.581926 -26.763877 -3.656820 6.003795 8.209065 -13.739529 1.460685 -4.481901 3.752800 0.044903 -3.564152 -3.041840 -2.294427 11.217491 1.005413 2.963613 1.586159 0.514579 0.700954 -16.986401 -6.390236 9.462132 1.232009 2.890387 -0.299969 2.071847 4.225621 3.471773 -15.837869 -1.763820 3.381508 1.071817 1.163006 -0.121319 0.270958 -3.379973 8.297972 2.759721 2.207706 9.120446 -2.566169 7.641884 8.535027 0.241642 2.354413 5.490491 -1.219529 -1.420804 -6.010879 -5.069984 12.022959 1.427932 1.412109 6.529647 -2.526215 9.809395 3.835950 7.252824 8.416708 -4.205253 2.785012 0.617102 -3.441302 -2.760349 -9.702002 1.191988 2.154796 4.040524 -2.562714 3.198133 -0.368561 1.424537 3.102736 -1.320657 10.371616 2.971660 8.626046 9.614798 7.305038 -7.466038 1.883775 0.688151 0.026203 2.795924 7.041289 -6.585182 -5.070416 -4.191001 -3.034585 -11.327724 -1.387065 -2.523138 12.526479 -6.103712 -1.951409 -1.421596 0.970630 9.632714 -2.331937 1.827747 -10.412047 -0.923732 1.683415 7.562277 1.995602 0.910619 -1.723223 1.330924 -1.395011 1.947675 3.481236 -8.417598 1.967445 -12.894944 -4.304502 -6.132518 2.614213 4.177110 -8.967374 2.170956 -5.238232 7.880398 -14.644214 -3.389463 0.836465 3.307395 7.940271 -0.233535 -3.274093 -1.578277 2.393253 3.161101 4.006917 -6.376782 3.493756 -2.728615 -1.646792 0.400531 3.445519 2.851944 -9.034615 -6.255206 1.284407 1.742341 1.983112 4.647317 6.644874 -0.336234 4.251751 -5.762144 7.284506 -8.564075 -3.816275 -2.316684 -5.702096 -5.905710 13.829489 5.620825 8.218453 -0.872166 -4.151333 -0.275706 -10.255386 -13.764680 1.697092 0.707212 0.053249 6.341899 -2.262471 4.243473 -8.265529 2.791518 5.582402 -2.806360 -4.930972 0.030250 -2.570145 1.080408 -1.649415 -3.932386 0.705098 -0.220188 1.089378 10.741907 -2.509338 -14.538485 -14.134334 -4.068358 8.031271 -5.402930 -0.544223 -3.724646 -3.168590 -4.506244 -1.108211 -7.356549 -1.099539 0.174065 -7.543858 -11.648723 4.580779 -2.465820 -1.510862 5.222748 -7.942163 2.069311 4.615517 6.262129 1.205959 0.675936 -0.843421 -7.294218 -5.653150 1.325270 -6.194687 7.804622 2.784093 -0.986144 -7.971695 -4.877510 -5.985902 5.863463 -5.164345 6.146077 0.741510 -3.398585 2.319789 -7.537426 2.636846 -5.331405 2.817332 2.863783 -19.069915 9.971997 5.297836 -5.810326 -0.724247 -2.224351 3.986643 0.074348 4.165082 -6.621245 -6.086344 2.425517 1.098623 0.571706 -5.037958 1.410303 -0.908788 -3.443307 -9.416744 -4.992537 7.911569 2.774280 -1.591241 -0.239537 6.970482 -2.257115 1.201528 9.929436 6.461013 2.035274 -5.811243 -18.243847 3.422742 5.279679 -0.217301 1.143612 -7.880836 -2.340919 4.302229 -6.049413 7.024311 -1.180447 -2.900796 8.249275 -9.965343 -7.039391 -6.489531 -3.815100 3.084241 0.395263 2.268360 -4.050111 1.750661 -1.020390 1.229888 -3.581816 -5.336696 3.391844 5.215688 8.213614 0.154012 2.675393 8.882694 2.886575 -3.227833 -0.774781 0.167906 -4.924712 0.798913 -13.043530 -0.687794 3.340666 3.656581 -6.308925 1.088379 -2.449805 1.488112 -0.084959 -3.539285 -3.524989 -2.904696 8.022931 0.438697 1.811479 1.162793 -0.168989 0.758463 -12.454753 -5.021369 6.622630 1.301583 1.913206 -0.106871 3.019449 2.538831 1.839656 -10.408236 -0.824175 2.045571 -0.517622 -0.076108 0.030442 -0.021840 -3.383672 5.524933 2.167590 1.224779 6.567262 -1.976813 5.299125 6.084913 -0.039589 1.991605 4.327239 -0.946206 -0.522418 -4.383078 -2.961839 8.777577 1.613011 0.345306 3.426626 -1.757192 7.236463 2.207085 8.100021 5.374660 -3.027619 3.796811 -0.477372 -3.063997 -1.170984 -7.372345 1.102012 2.698024 2.041959 -2.391729 2.532648 -1.213878 1.830316 2.276059 -0.022585 8.323246 2.034371 7.039795 6.487510 5.232044 -5.867001 1.227519 1.376289 0.457302 1.130075 5.902771 -5.527266 -4.141947 -2.545301 -0.605055 -7.087837 -0.852994 -1.117806 9.721074 -5.047542 -2.780797 -0.018797 1.134906 7.555236 -2.632841 2.244643 -7.493119 -0.140451 0.919090 7.635623 1.742174 0.907247 -1.835235 1.780745 -0.615895 1.783423 2.461167 -6.115091 -0.453316 -10.115411 -3.782473 -4.679474 2.122857 2.849118 -7.373260 0.901172 -1.455071 5.598152 -10.501949 -1.033184 1.725827 2.734277 7.759179 1.022093 -2.671002 -0.418305 1.624972 2.547712 3.413488 -3.727086 2.441418 -2.345069 1.070763 0.737505 2.542096 1.616712 -8.208656 -3.350716 1.555673 1.293138 1.259865 3.274067 4.966180 -1.301611 3.496721 -3.864685 5.247865 -7.876953 -2.009626 -2.558339 -5.347577 -3.784672 10.395888 5.336591 6.732802 -0.511508 -3.003905 -0.383661 -8.359812 -11.890564 0.405770 0.843688 0.221068 3.608316 -1.464107 3.161609 -5.577701 2.794896 4.136702 -2.894605 -3.594546 0.101150 0.098544 0.729278 -2.094211 -2.581886 -0.063279 -0.110887 0.414333 8.063233 -1.407293 -11.754569 -10.394296 -3.588354 5.904581 -3.802165 0.282598 -2.591175 -2.345461 -5.059751 -0.242208 -5.225667 0.392587 0.471617 -5.561510 -8.267829 2.813069 -1.434722 -1.149269 3.222424 -6.080080 1.321570 3.133470 3.307603 1.176461 1.318758 0.037356 -6.257856 -4.962546 1.242430 -4.936897 6.737859 3.145800 -0.852363 -4.162646 -3.613338 -5.380746 4.009781 -5.639305 4.087251 0.122394 -2.776607 2.142996 -5.953158 1.109030 -3.799575 2.438026 1.814857 -12.096550 8.552051 5.501881 -4.235003 -0.566148 -1.570860 2.907139 0.380733 4.265848 -4.986301 -3.934964 1.315020 0.384173 0.224941 -1.656626 1.895026 -1.300018 -2.200740 -6.693692 -3.389856 5.139927 2.687231 -0.764036 0.296422 4.377277 -1.548913 0.592346 7.302981 3.766033 0.715974 -4.859503 -15.660628 2.668273 2.321036 -1.921434 1.754026 -5.611522 -1.675632 2.662035 -4.233573 5.528743 -0.437426 -2.083517 6.181709 -7.608634 -5.678916 -4.903202 -2.930119 1.353610 -0.271024 1.935648 -2.780594 1.098248 -0.926982 0.876238 -2.675203 -4.020107 1.692192 3.315636 6.598839 0.385591 1.268273 6.602932 1.867883 -1.982149 -1.376021 -0.091249 -3.205131 1.994606 -9.258056 -1.174090 1.820210 2.840258 -4.585807 0.689407 -1.167898 1.040143 0.370803 -2.669671 -1.120961 -1.696710 7.853566 0.491635 2.463943 1.073233 -0.906729 -0.642525 -10.959310 -5.513550 3.427716 1.299500 2.506597 0.535084 2.885709 2.405624 1.440085 -10.678242 -1.344745 2.900395 -0.991274 1.388550 0.558756 0.034385 -4.037828 4.678270 2.932335 0.958842 6.897563 -2.030155 5.653198 6.111579 0.572103 1.859869 4.330522 -1.981707 -0.645530 -4.164045 -2.291380 8.039555 0.667017 0.509378 1.995538 -2.290166 7.574251 2.363384 4.940540 4.064630 -3.277886 3.809928 0.595032 -2.618723 -1.000766 -6.658394 0.361543 2.495854 2.684980 -1.889084 2.286748 -2.165065 2.000989 2.163673 -0.316672 7.739597 1.652189 6.469351 5.631823 4.713505 -6.259238 1.303622 1.341390 -0.688333 0.480683 3.445840 -4.463631 -3.402836 -2.605692 -0.826946 -7.958972 -1.274119 -0.340517 8.190396 -4.379149 -3.158889 -0.337850 0.149669 7.323669 -2.636592 2.258484 -7.079305 -0.052199 0.191962 5.948488 2.096264 0.119080 -0.614694 1.320552 -0.484164 2.022581 1.163283 -5.886236 -0.947085 -9.100149 -4.298772 -4.563041 3.302956 3.049752 -7.196720 1.317003 -1.178970 4.625496 -9.477467 -1.180671 1.761806 3.958338 3.606293 0.243043 -2.799847 -1.305989 1.939461 3.615388 4.750606 -3.391101 3.317041 -2.825992 0.536867 0.546463 2.794584 1.209763 -5.764064 -4.014327 1.431221 -0.787356 1.738888 3.364257 4.890506 0.567502 3.656157 -3.764116 5.895177 -7.562485 -0.868802 -3.041399 -4.300013 -3.895220 6.593600 6.228173 4.661438 -0.311311 -2.832672 0.629893 -7.919360 -9.109821 -0.794199 1.392816 0.517561 3.634215 -1.903118 4.094882 -5.490398 2.740054 3.506510 -2.664337 -4.042782 -0.007132 0.539292 1.669443 -2.393589 -2.758137 0.143654 -1.337121 -0.869392 8.178850 -1.181180 -8.800578 -9.994990 -4.266991 6.124353 -4.241010 -0.184818 -3.402899 -2.036606 -4.864698 0.267102 -5.297018 -1.158611 1.205348 -4.831188 -8.170398 2.991194 -1.508950 -2.003591 3.600741 -6.272211 0.885704 4.794193 1.959708 2.063581 1.143147 -0.669675 -4.146582 -3.577775 1.065406 -4.812013 4.979172 3.551435 -1.203120 -4.937564 -4.064856 -4.286405 4.095183 -1.932792 4.213396 -0.365886 -2.193656 1.684550 -5.535840 1.924995 -2.421217 1.915008 1.845776 -12.869931 7.007705 5.611455 -4.167548 -0.841985 -2.082554 3.041517 -0.163775 3.710961 -4.483595 -3.280058 0.646810 1.049269 0.308871 -1.356796 1.744216 -1.402851 -3.588104 -6.048871 -3.109377 5.423802 2.847312 -0.666853 0.420037 4.871404 -0.482858 2.735556 5.747764 3.379980 0.028069 -3.658593 -13.901323 2.619375 1.878867 -1.343619 1.716059 -3.950698 -1.818717 2.457000 -3.583575 5.894725 0.447017 -2.744446 6.504878 -5.427173 -5.525146 -6.102029 -2.630169 0.990492 -0.502201 0.928381 -2.967422 1.091367 -0.592996 0.414777 -2.117073 -3.866467 1.015121 3.189937 7.036715 0.378540 1.689005 6.709777 2.288314 -1.843408 -2.280961 0.569814 -3.760520 2.110185 -7.257584 -1.556730 2.366726 2.796623 -4.344460 -0.437583 -1.431141 0.726971 0.677406 -6.908896 -5.757119 -4.910665 16.445947 0.974185 2.834454 2.140330 -0.746272 1.179875 -22.822318 -9.123310 11.548013 2.354694 2.128821 0.625252 5.346314 5.222991 3.404149 -20.405584 -0.979191 4.012842 -1.080452 -0.666179 -0.385901 0.034998 -6.631108 11.111506 4.270316 1.718905 12.411058 -3.686635 10.407790 11.079441 0.338837 4.619747 8.220676 -3.611718 -0.736321 -6.865766 -4.955619 17.358148 3.829944 1.463239 6.232211 -2.233354 13.689091 3.565009 14.235510 8.532640 -5.406531 8.611435 2.253005 -5.012280 -1.530498 -14.725020 1.758366 6.672801 4.249766 -4.428158 5.049269 -3.693864 4.043190 4.508125 0.615523 17.577205 4.560897 13.597708 13.048805 10.471177 -10.275307 2.904232 1.986668 1.453088 0.604116 11.676445 -10.256800 -8.632469 -3.920526 -2.600610 -14.444602 -0.171406 -1.980314 18.414222 -9.059225 -4.059214 -0.495184 2.914226 14.383319 -5.193209 3.150416 -14.155268 0.224057 0.249032 16.663380 2.804111 2.770376 -3.013714 3.246683 -1.722591 3.079925 4.225236 -11.621210 0.527997 -19.875822 -8.342118 -8.765218 4.992931 4.315256 -15.099007 2.611853 -3.771802 8.307010 -21.135564 -2.193994 2.462322 5.227360 13.947505 -1.082202 -4.917891 -0.784839 2.128007 6.067886 5.900497 -6.951576 4.553132 -6.436313 0.912388 1.692018 5.495000 2.492340 -15.377456 -5.672738 1.686405 1.094053 2.218645 6.698597 9.131172 -2.205987 6.388049 -8.404250 10.481294 -15.841496 -3.217536 -6.450885 -9.685278 -6.962159 16.416333 9.142847 12.587619 -1.347976 -6.150896 -0.502758 -17.634390 -21.981375 0.202718 0.670777 0.325053 6.586453 -2.571144 5.217767 -10.784722 4.667301 8.194067 -5.816033 -6.636877 -0.602268 2.035351 1.592781 -4.534518 -5.165239 -0.245918 -0.756029 0.537093 15.402830 -2.396070 -22.215111 -21.528210 -6.750998 11.153346 -7.364129 0.478252 -5.506694 -3.714072 -9.101041 -0.287583 -10.197660 0.793668 0.763741 -8.977697 -15.343720 5.002309 -2.689640 -0.616191 5.170044 -11.333618 2.659205 8.043787 5.401468 2.152825 3.333600 0.472213 -10.954117 -8.628806 2.486725 -8.083797 11.879187 5.875048 -1.541619 -7.547162 -6.802935 -10.747676 6.784548 -8.051799 7.575365 0.835816 -6.119509 4.008767 -10.903291 2.609862 -7.373734 3.688831 2.298054 -22.253674 15.320179 9.463679 -8.873231 -1.384563 -4.150636 6.543426 -0.642126 8.106148 -8.527418 -6.561143 2.285899 0.616482 0.256062 -3.670732 3.278310 -2.379259 -4.116712 -13.265077 -6.475288 11.018623 5.199193 -1.848215 0.037586 7.596163 -4.617137 2.700894 12.953623 7.454227 1.644411 -9.389302 -29.342252 4.132170 0.464929 -2.450834 1.204169 -8.782815 -4.065049 4.887421 -4.882845 10.760212 0.680855 -4.629086 11.606845 -14.785890 -11.044647 -9.749372 -4.560317 2.659012 -1.562557 1.597123 -5.779566 1.783348 -1.631322 2.951730 -4.067482 -7.580282 2.500967 6.266884 12.929780 0.641046 0.902439 12.467640 4.487430 -3.602677 -2.956600 0.304607 -6.535047 4.243740 -16.840394 -2.591865 2.920737 5.337393 -8.800215 2.155393 -2.431759 3.181829 1.061342 +-9.902570 6.613863 2.783184 -8.339592 20.149013 -5.157371 2.801339 6.833907 -4.331579 14.210207 -7.823270 -2.470260 -4.118904 -16.754778 1.913445 -6.725293 -1.409498 9.049174 -0.688430 9.076469 7.848823 -7.224421 1.533813 -2.768200 -5.121384 -12.069394 -2.821079 5.419500 10.838571 -8.241512 2.756186 1.516880 17.249549 -2.399214 15.450649 12.928082 4.874536 13.138515 2.913043 -5.321997 -2.080275 8.044258 -8.339573 -12.812035 2.714093 -3.196184 -11.843017 -8.192312 6.779582 -6.781659 1.505938 13.496100 -3.122343 -0.993015 -10.487917 9.965978 7.165303 0.820825 16.172876 3.196913 -3.882221 0.540992 -15.272399 11.311068 -7.437388 2.432080 -3.870924 -11.815133 2.046130 1.689070 0.419156 -9.321542 -6.241830 11.347486 7.354757 -12.124000 3.084220 -6.445794 -11.664701 -13.337835 -12.054442 4.520512 -2.062159 12.517528 0.499571 4.464420 0.437854 6.757932 -2.758415 -18.295727 1.394413 14.599664 -7.103020 -2.711520 -6.480419 11.616614 3.523446 0.429738 -8.031764 -5.533748 4.326640 -3.030261 7.752541 -5.746341 3.393819 -11.739522 0.246390 -0.150472 2.543427 7.367866 7.475168 4.020645 8.033743 12.815859 -10.745421 1.689199 -15.390371 4.989657 -4.162816 4.270605 -2.999304 7.352447 3.420552 4.094015 12.757748 -19.516854 7.136070 0.320296 -2.011932 -14.088629 2.010665 -4.898875 -5.023685 -5.948884 9.047375 -0.888038 -2.647633 -4.372112 3.555097 3.255384 -6.014346 -4.003180 2.640768 13.437066 -12.503520 4.078983 -3.948747 -6.310771 -1.958700 6.552598 10.552821 11.605316 18.110013 13.611581 -1.587053 5.429381 -16.189003 0.755781 15.328671 2.731211 -11.909106 14.285675 -9.526540 -3.731795 3.514063 11.749475 10.422083 3.579673 -10.830757 -9.041463 7.083190 2.162271 15.870547 1.089705 1.299694 -7.417066 10.340292 0.791249 -7.744730 19.341855 6.806639 -13.715893 6.052851 7.168045 -10.359105 -7.814943 8.586879 -10.347841 -1.000584 -5.792945 3.429255 8.031186 -7.696725 -5.892739 0.215851 -12.533564 13.727120 -3.779743 -2.554897 6.461990 -11.644802 -11.426565 15.566457 0.860975 -4.436851 -10.281733 -11.804197 -6.310668 -13.029170 5.532203 2.095309 -3.906089 -7.671928 -12.587822 -1.292027 12.176556 1.164564 7.663087 -14.561653 -3.737740 7.493835 4.889913 7.946580 -7.655895 -2.517026 0.718910 0.687995 3.194370 -1.638734 8.810792 19.593581 -10.236029 6.058079 1.706316 -5.804297 5.555481 9.407405 -17.051921 17.945889 1.458246 11.119145 -0.194472 4.726257 -6.744662 1.018999 3.804958 -0.737708 0.044596 2.857535 -4.501157 -4.736414 1.151860 -10.998858 -9.033277 -0.620370 6.260380 -0.660148 4.748229 -0.339198 -7.349476 -3.876398 -7.379028 2.721875 10.862525 -0.213208 -5.569023 9.036476 3.185310 0.565985 -0.453323 1.513688 5.123145 10.229792 -16.282681 2.960476 -2.907729 3.789493 -10.109812 -15.955024 3.289159 -10.779200 -6.631095 7.074050 -15.335028 -1.922431 -10.416599 2.651833 -14.338563 -1.699783 2.756337 17.344911 6.816137 -5.463141 7.678389 -4.946070 9.307799 -0.582994 -1.251607 3.564228 11.084655 +-5.460779 5.276602 2.152982 -4.799850 13.214715 -2.720849 1.202819 6.736001 -5.362796 9.254640 -4.500438 1.444018 -1.639118 -9.396686 0.754704 -3.959232 -1.091689 5.039660 -0.050811 5.873478 3.937832 -4.629530 0.934282 -1.408825 -3.536711 -9.133198 -0.822252 3.099642 6.786119 -3.775514 3.256855 0.547325 9.747031 -1.952465 8.247197 6.586937 2.715848 7.142809 2.686685 -3.911766 -1.023238 3.782585 -4.590337 -6.622614 0.861670 -1.862875 -7.445059 -4.287613 3.666102 -4.717140 -1.415270 7.714330 -1.585287 -0.683463 -5.597962 6.815304 4.284499 -1.346452 9.069079 0.831857 -3.020803 -2.248863 -9.129760 8.348409 -4.110494 0.633192 -2.555560 -6.301319 1.617805 1.611632 -0.819564 -4.852181 -1.807797 7.359831 4.085680 -7.153084 1.543257 -3.726591 -8.044284 -7.848168 -5.776429 2.700334 -1.258015 6.870860 0.603033 2.777122 0.655983 4.390844 -1.907097 -11.351076 0.772317 9.936028 -4.020654 -2.627826 -5.182397 7.843430 2.637803 0.030341 -3.952022 -3.774533 3.173482 -1.262907 4.051105 -6.496964 2.964925 -8.419845 -0.335112 -0.211323 1.654046 5.911723 2.956006 3.546457 5.169532 8.418729 -6.399260 0.828488 -9.650769 2.766108 -2.467832 2.290064 -2.273055 4.226629 2.280933 4.267841 7.905016 -11.931354 4.642325 0.125573 -0.894340 -8.698155 0.453919 -2.420590 -2.328353 -3.039692 4.598556 -0.750520 -1.109764 -2.609959 1.953601 1.979271 -4.739941 -4.746815 1.801828 10.020397 -10.288233 2.486463 -1.791215 -2.396993 -1.065145 3.862379 6.576051 6.203340 11.036050 7.292073 -0.271089 6.833611 -9.650954 0.350383 9.025359 3.744531 -7.250811 9.286375 -6.768774 -2.796306 1.612602 6.633111 6.004882 3.321688 -8.895716 -7.797556 5.199525 1.282568 9.495051 1.572042 0.339231 -4.847911 7.905494 0.465381 -4.962960 11.254527 3.667604 -7.737197 4.338568 4.072446 -6.358561 -3.866195 4.970039 -7.200384 -1.422205 -2.581046 1.317002 4.685283 -4.127129 -3.940154 -0.220428 -6.838010 8.926401 -1.934571 -1.584352 2.742663 -5.686318 -5.684375 8.562581 0.160973 -2.468789 -6.265257 -6.743546 -5.485110 -7.254643 2.387581 2.402499 -2.663724 -4.462531 -7.838245 -1.468104 5.635924 0.502692 4.288648 -11.184770 -2.056376 4.492619 4.467854 3.966703 -6.658319 -0.936332 -0.071036 -0.043111 1.665460 -1.645685 6.782606 11.855177 -5.310270 4.931172 -0.538050 -4.579770 3.325979 5.388045 -10.440880 10.586328 1.135828 8.010615 0.639289 2.527945 -3.873216 0.841318 1.295381 -1.260205 -0.052203 1.823223 -2.956253 -2.844991 0.925430 -6.312841 -5.623546 -0.394419 3.684692 -0.905114 2.376239 -1.232055 -4.046460 -2.810386 -4.765909 1.320382 5.564147 -1.362477 -3.457548 5.360451 1.908310 0.641047 -0.345561 0.747843 3.637746 4.974857 -8.971146 1.925943 -1.570422 2.522632 -7.138448 -9.441720 2.212825 -5.551625 -5.372726 3.489942 -9.693601 -1.956973 -5.535516 1.388686 -10.212473 -2.316508 2.145443 11.069693 2.586605 -4.165003 4.321031 -3.148371 5.534585 -0.189050 0.528025 1.348413 5.732240 +-131.704823 105.689583 20.571417 -137.658305 270.019054 -60.345112 7.999722 131.066534 -30.691489 173.203339 -139.457962 13.897799 -41.680263 -217.997937 19.056340 -66.366879 -0.344928 136.811544 -31.895731 112.283828 104.457461 -73.349665 43.420025 -67.478977 -73.879003 -162.450141 -16.333472 64.716433 75.417898 -44.093704 41.678476 19.214895 221.994456 -11.697324 176.647098 149.476909 69.757850 204.935003 69.924174 -20.891494 16.653554 88.818413 -79.505275 -208.198533 62.642010 -65.187932 -146.372231 -122.161899 85.424052 -165.796249 66.135886 158.339118 -10.918374 -46.201086 -153.498177 99.974580 122.912875 4.849198 205.715584 51.327556 -96.688883 -24.095725 -165.625841 119.662022 -124.164771 47.063481 -2.310116 -157.060329 0.204141 83.810930 40.022571 -107.031821 -111.813512 83.443058 73.758477 -148.391776 53.715626 -71.179654 -102.095364 -131.585124 -111.291462 62.344631 -40.668838 152.278849 2.078711 62.438867 -31.825721 60.562500 -5.492350 -201.548930 -13.083367 168.675378 -76.852784 1.493049 -90.799767 154.932432 49.100974 -39.262715 -99.325787 -69.213343 61.958277 -13.253245 90.126141 -56.125886 -22.036872 -157.828190 62.376981 47.278953 8.529997 99.262327 56.301130 78.855378 81.523417 132.460359 -117.788541 68.367903 -241.411295 55.346981 -43.350620 41.239181 -51.983303 64.131247 56.786551 56.524355 136.161011 -228.643254 164.137436 38.209924 -38.979890 -154.286027 61.810390 -19.948395 -58.265377 -59.831478 121.040303 -16.123998 -25.311268 -29.967689 39.946238 7.902142 -102.723860 -95.368263 1.521437 171.548900 -151.121674 58.757875 -47.385005 -83.395711 -10.080145 62.729730 105.706565 101.454391 227.899377 148.935679 -27.773989 68.189880 -194.892696 30.189982 231.213029 84.472788 -156.832916 162.015743 -85.686121 -33.620353 50.439159 112.499717 107.711590 74.046584 -142.415864 -136.956817 46.687436 -6.679674 196.729311 61.812672 36.686265 -162.557671 138.021245 -0.939233 -26.787461 272.634228 94.998814 -181.545865 47.026703 135.475658 -150.347012 -98.142250 76.651638 -95.823283 -29.720644 -59.321516 52.292131 96.589773 -123.038045 -139.775131 -27.066675 -162.451582 169.272839 -35.632339 -34.672011 35.925548 -160.619979 -81.278707 219.080944 24.020717 -64.006598 -88.574745 -140.891728 -75.859096 -208.422536 52.655157 64.990446 -64.429315 -78.681721 -143.947646 -29.748909 142.232520 -26.488974 44.533575 -191.982807 -51.569817 113.535771 38.216725 62.766570 -151.605372 -33.942894 11.192132 12.693522 57.566555 -19.410576 108.707613 226.765128 -126.932242 96.707518 61.279947 -38.843847 79.703318 154.357511 -179.485236 235.894803 -18.922560 165.607139 16.099445 76.380131 -75.145455 22.279334 13.162040 -29.039727 -17.680021 70.947908 -114.203409 -66.458063 50.806180 -107.771313 -113.032204 35.013104 114.026865 21.453862 40.179430 6.159550 -74.261763 -54.405090 -91.416224 34.410894 130.404665 -26.975594 -124.002828 79.897221 93.838555 -37.834438 -48.768943 34.484305 84.123992 152.660572 -201.066648 94.412981 -19.751621 15.270605 -173.512125 -173.589595 76.569603 -122.713366 -90.301083 76.542290 -225.057342 -67.069535 -110.421404 90.203069 -162.821931 -5.415733 24.887218 205.092100 74.748302 -50.215060 112.724500 -56.161901 106.246773 2.278831 -5.347122 29.025111 167.139007 +-2.986439 1.314099 -0.571441 -2.151629 8.588536 -0.825317 -0.178014 4.090310 -2.585647 5.356691 -2.063207 -0.634711 -1.404252 -5.061949 0.659343 0.138733 0.052179 2.382099 -0.963037 1.848757 2.289241 -1.813883 1.180424 -0.493349 -1.390598 -3.233830 -0.950632 1.764025 4.827036 -2.147353 -1.409336 0.023884 5.369207 -1.334269 3.711770 2.815822 2.262991 3.415156 0.926483 -3.834025 -0.279122 2.465197 -2.652911 -3.640836 1.342362 -2.002217 -3.990033 -1.952913 2.686509 -2.129227 0.045174 3.901352 -0.879568 -0.601025 -2.562957 4.108610 2.117531 -0.133362 5.275768 0.806794 -1.490162 -2.259962 -4.831134 3.737779 -2.131428 1.373886 -2.316339 -4.308776 -0.916526 0.934638 -0.340438 -3.863768 -1.342287 4.112978 2.114652 -3.264404 1.510304 -1.510097 -0.300782 -5.445592 -4.521893 1.007669 -2.702009 3.736934 -0.169514 1.269957 -0.248420 1.708231 -0.680470 -6.409585 0.499671 4.534609 -2.333730 -0.050272 -2.271233 2.226835 0.409065 0.058395 -2.786826 -1.948597 0.851237 -0.323673 2.254265 -3.707984 3.872207 -3.506400 0.179000 -0.137365 2.337225 2.855088 3.076715 0.377498 1.998138 4.811531 -3.063487 -0.758952 -4.594469 1.124901 -1.648318 1.612885 -1.736419 2.825350 2.488316 1.377003 4.203455 -7.590004 2.394705 -0.066228 -0.801794 -4.591880 0.950361 -1.261615 -1.613289 -1.009550 2.877899 -1.269425 -1.143394 -1.441083 2.025690 0.836479 -4.221898 -0.130459 0.281534 4.414858 -6.001973 1.222019 -1.204671 -2.245311 0.192879 2.037369 4.003353 3.624182 5.504690 4.143765 -1.112958 2.944646 -5.765865 1.626072 5.032901 0.274072 -3.763140 4.706765 -3.485524 -0.384283 1.625234 3.413106 3.163745 2.046305 -2.287719 -1.962676 2.419784 1.611702 4.992736 0.575119 1.598849 -2.752851 1.919458 -1.296763 -1.509968 6.050367 1.690514 -4.808949 2.563772 2.198262 -2.560172 -0.861484 1.899091 -4.000423 -0.489628 -2.599283 1.260958 3.521164 -2.930688 -2.186941 0.266603 -3.540514 5.271190 -1.158637 -1.640821 2.543591 -3.672145 -0.543554 5.124651 0.784839 -1.085831 -3.062366 -4.323843 -3.387519 -4.047600 1.533034 0.418773 -1.510962 -2.095536 -3.988000 -1.433260 4.638783 1.128752 2.019288 -7.797335 0.696399 2.310446 1.345764 2.815125 -1.985909 -0.687385 0.076679 -1.145832 1.027052 -1.835045 2.408650 5.455196 -3.730586 2.506394 -0.224357 -0.691058 1.500223 2.174278 -5.213884 5.290156 1.163797 5.023663 -0.306718 1.921512 -1.779137 1.270900 0.274766 -0.514334 -0.093899 1.581579 -1.987235 -1.834719 1.435952 -3.426018 -4.367697 -0.376601 2.079573 0.329458 1.430998 -2.014299 -2.181820 -1.248060 -1.823024 1.083553 3.141372 -1.255044 -2.143033 2.212013 0.854021 -0.430846 -0.633925 0.888585 1.465401 3.390036 -4.826943 0.690594 -0.459407 2.018689 -3.298010 -4.318238 0.026575 -1.669381 -1.735941 3.370778 -5.660942 -1.347170 -2.968500 0.944083 -4.881768 -0.352248 0.452365 6.109530 1.664974 -1.547450 2.900189 -0.760231 2.270700 -0.564528 -0.300989 1.123005 2.344556 +-1.498769 0.620897 -0.408758 -0.925714 3.473377 -1.121372 0.073282 1.767172 -0.409856 2.455909 -0.837966 -0.383472 -0.470103 -2.593095 0.395611 -0.209655 0.149175 1.590311 -0.092617 0.874607 1.059974 -0.722292 0.141541 -0.021479 -0.852187 -1.971836 -0.381160 1.021117 1.817719 -1.903712 -0.354600 0.592171 3.168462 -0.530101 2.903966 2.104703 1.289973 1.612613 1.081212 -1.114492 -0.249569 1.048341 -1.336653 -1.704123 0.184674 -0.307661 -1.951397 -0.868929 1.142261 -0.519532 0.866546 2.048463 -0.575554 0.316450 -1.477166 1.604051 0.449139 -0.101379 2.645571 0.433644 -0.986896 -0.175051 -2.143778 3.049001 -1.289489 0.059330 -1.050795 -2.088025 0.229481 0.347552 0.190243 -1.778990 -0.881917 2.095105 1.072861 -1.996288 0.533191 -0.713143 -0.459741 -2.363124 -2.303671 0.945690 -0.712414 1.897816 0.229680 0.773047 -0.351424 1.076285 -0.661889 -3.149959 0.633344 2.253026 -1.648678 -0.063592 -1.104863 1.458570 0.500462 0.219791 -0.907230 -1.369082 0.623230 -0.887340 1.206116 -0.683463 1.637610 -1.385527 -0.166814 -0.471068 0.811300 1.458849 1.485408 0.511053 1.633799 2.264283 -1.031891 -0.676542 -2.431851 1.209119 -0.695019 0.433965 -0.579541 1.254599 0.985745 0.731431 2.313482 -3.406000 0.722262 -0.065339 -0.079920 -2.184531 0.044533 -0.852220 -0.790716 -1.044497 1.626757 -0.327227 -0.412315 -0.887026 0.790147 0.782037 -1.583796 -0.580563 0.291858 1.821121 -2.235799 0.656010 -0.562614 -0.993581 -0.369544 1.234173 1.934678 2.287742 2.829915 2.183833 -0.393118 0.829373 -3.057506 0.107900 2.234021 0.102679 -1.915655 2.637908 -2.135034 -0.802594 0.636476 2.409754 1.611125 0.084654 -1.223534 -0.964365 1.332056 0.992453 2.656925 -0.453920 0.126838 -0.658217 0.984439 0.374439 -1.435980 3.394152 0.588793 -2.445849 1.179125 1.078028 -0.991847 -0.893685 1.561724 -2.315680 -0.348708 -1.337100 0.690111 1.687560 -1.388076 -0.194386 0.707198 -1.870120 2.177144 -0.639429 -0.950407 1.328387 -2.112301 -1.088049 2.878705 0.244983 -0.205203 -1.640280 -2.244125 -0.820410 -1.994012 0.625933 0.196044 -0.452155 -0.705506 -2.092505 -0.490383 2.329485 0.642182 1.652728 -2.998162 -0.109112 1.339458 0.670852 0.894893 -1.212832 -0.294999 0.293324 -0.022121 0.213766 -0.828623 1.302471 2.789836 -1.654950 0.961433 0.445278 -0.914865 0.828081 0.882771 -3.031201 2.904703 0.406511 1.136733 0.352496 0.636895 -1.276042 0.152445 0.253331 0.372398 -0.408657 0.250125 -0.708969 -0.801471 0.215667 -1.655205 -1.830243 -0.601378 1.068091 -0.096595 0.795217 -0.841676 -1.090246 -0.656373 -1.489517 0.854721 1.552395 -0.108296 -0.562846 2.018717 0.414359 -0.052565 0.239728 0.159745 0.810974 1.655786 -2.673196 0.056544 -0.151230 1.373784 -1.570292 -2.781525 0.170651 -1.408666 -0.674583 0.770135 -2.835408 -0.824730 -1.569420 0.200174 -2.508801 0.151596 0.684749 3.188339 0.960750 -1.149856 1.189442 -0.774300 1.057494 -0.062957 -0.067056 0.570453 1.560961 +-11.850578 6.106441 0.569356 -8.156823 23.672108 -4.121815 2.763269 8.970803 -9.226909 17.513798 -7.067735 -2.958979 -5.627157 -19.913168 2.525356 -6.001101 -0.486243 8.395858 -0.317245 11.147405 9.357035 -10.175714 1.666755 -1.561493 -5.931477 -14.114229 -2.019461 6.757921 17.042295 -10.360835 -0.392372 1.852611 20.731682 -3.584787 19.782807 15.626618 6.477214 13.424205 4.252964 -14.304788 -5.355592 10.507222 -11.299357 -14.106102 1.711007 -4.186108 -14.819275 -8.838535 9.130452 -4.304448 -1.988329 16.934939 -5.332977 0.447955 -12.425475 12.013833 6.704845 0.057806 20.860317 2.901507 -3.360676 -3.013164 -17.403002 16.106897 -7.871388 0.486209 -6.960425 -12.972546 4.436921 -0.239468 -3.427658 -8.488627 -4.724546 16.122988 10.626363 -15.357693 3.746205 -7.365070 -14.025907 -17.493405 -15.973207 5.002871 -4.486419 16.177986 0.774599 6.051509 3.151370 9.435284 -4.585207 -23.985106 4.754096 17.737518 -9.174179 -4.917478 -8.233214 15.352682 3.849584 2.239582 -10.906776 -5.314532 5.173696 -5.034601 9.971043 -11.101425 9.593703 -13.809671 -1.422024 -2.856890 6.650819 10.715387 10.571530 3.187355 12.061711 17.172134 -11.722166 -0.063908 -15.912542 5.723118 -6.025568 4.915419 -3.795138 11.069239 6.413395 4.154614 17.512001 -24.735311 5.739358 0.805397 -0.897977 -17.697735 1.388076 -7.986244 -5.759852 -7.710774 11.731606 -2.534705 -3.362005 -7.315777 5.686471 5.683276 -10.288784 -1.277729 4.018771 14.816752 -15.519775 5.100621 -4.947721 -7.683281 -1.567691 9.180875 13.320947 16.587082 21.823310 17.470016 -3.271172 7.976829 -19.495189 1.394562 18.225712 0.234382 -15.111673 18.051622 -13.880961 -5.763009 3.267981 15.307598 15.116957 4.269195 -12.640690 -10.426892 8.782520 5.789011 19.859797 0.434292 1.733729 -4.471998 12.488700 0.458076 -10.855555 19.797430 6.042739 -15.661097 8.843707 7.046747 -13.324729 -7.216426 10.982456 -14.725420 0.099764 -9.422242 4.382027 11.595145 -9.888713 -3.555348 1.290892 -15.127798 17.011910 -4.824730 -3.031538 8.561528 -13.903574 -11.328400 17.451488 0.790588 -4.640459 -14.244505 -14.938067 -10.780685 -14.675832 6.897405 -0.147223 -3.892953 -9.130535 -16.451462 -3.981173 13.906449 5.123748 11.285394 -20.809930 -1.648263 9.177617 8.938073 9.802745 -5.257184 -3.148439 2.261025 -0.950117 3.916864 -4.000581 12.407069 21.117501 -12.930506 7.381939 -2.963739 -7.949449 7.856356 8.646461 -22.338169 21.938622 3.788524 11.338198 -0.178973 5.632627 -7.982902 1.909614 4.382504 -1.585009 0.345798 2.584427 -4.012839 -6.313635 1.305756 -12.201378 -12.110465 -4.072553 6.026816 -1.101435 6.900588 -2.295782 -9.512868 -4.953785 -10.362027 4.724059 13.294614 -1.307012 -3.775270 12.944558 2.060172 3.217574 2.015796 1.658714 5.467276 11.795155 -20.621124 0.773934 -4.152049 7.281815 -9.552335 -18.792673 1.672676 -10.494691 -6.593225 11.575326 -18.094544 -0.425591 -13.318398 0.704509 -16.176580 -2.524566 3.780615 22.159487 7.431466 -7.872220 8.647653 -6.210919 10.300054 -0.888567 -0.716627 4.254883 11.616147 +-21.038136 24.594421 15.635208 -16.444222 41.199459 0.361811 0.950865 15.099849 -18.271515 37.574480 -15.271199 -1.317955 -8.481076 -33.672122 -0.847237 -20.916639 -11.658019 10.581171 1.977031 23.363498 14.367562 -23.221413 2.668033 -1.418293 -16.145594 -32.358808 -5.838643 11.265570 35.494389 -22.228190 5.298572 -4.218743 35.836377 -7.422975 33.968815 27.308523 9.829758 24.228917 7.597253 -16.349111 -15.863253 16.748992 -24.063315 -18.196086 1.860501 -11.034288 -24.409958 -13.046740 13.205905 -6.868884 -5.065340 30.766812 -10.775520 0.066928 -20.288749 26.785788 7.407633 1.004495 41.348624 1.296686 -3.426160 -9.482973 -39.959698 25.672826 -11.958727 3.330884 -13.979277 -17.957754 14.029114 -6.719807 -7.440155 -17.567533 -2.886215 37.712005 17.333672 -31.883455 1.670299 -21.195100 -50.535868 -32.101444 -25.489079 11.398799 2.953293 26.125033 5.304809 13.496455 4.998864 25.480953 -15.227787 -50.427161 10.644202 37.463977 -15.020944 -11.472459 -15.768212 33.510954 3.855570 8.567988 -18.777449 -2.541399 11.673354 -2.015746 16.635500 -38.831492 15.951381 -40.297159 2.586291 -6.180007 5.117229 6.105674 17.794996 6.374434 27.302112 40.824899 -32.291720 1.216241 -32.669482 3.982319 -3.229112 9.532403 -7.850713 20.417897 -5.717407 11.759937 36.399484 -51.287958 8.738307 -3.428535 -8.660637 -43.232182 -2.221925 -18.964877 -8.420635 -11.569780 14.319472 -2.135680 -4.849067 -18.459162 5.050076 6.915015 -17.205307 -14.430324 19.390698 40.519672 -29.818739 9.190665 -6.366545 -8.896232 -8.062288 21.527251 31.123519 28.980586 43.648668 29.251614 4.855797 16.742302 -35.133769 -5.217182 27.857553 11.433237 -29.985009 37.156587 -26.595244 -13.592790 2.722403 29.620256 27.549985 11.993586 -35.728975 -32.895306 24.261400 10.158163 36.890370 0.807829 1.676899 1.759574 35.508628 -1.422950 -27.900740 33.621554 16.861843 -22.715642 11.794309 6.519978 -20.536201 -13.237331 28.658578 -27.877058 5.286806 -7.196045 -3.541988 16.968654 -10.362092 -7.188502 -0.467013 -29.495538 40.151514 -8.071571 4.926223 16.673603 -23.345372 -36.531446 24.285707 -4.027387 -13.927741 -26.780663 -24.720486 -26.248965 -21.561178 11.602911 6.561936 -12.829410 -22.457682 -32.898124 -0.088224 19.147170 9.153979 23.043777 -36.640002 -17.592542 16.315538 12.707337 25.213129 -6.859234 -2.785037 -3.076084 0.711720 12.612053 -3.905236 35.872669 47.616584 -16.926030 22.497283 -12.674029 -14.486428 11.791130 17.057693 -42.742796 40.366647 6.000253 20.146229 -1.899027 8.914571 -12.737558 4.367652 13.300755 -4.150267 10.354916 2.687230 -1.379430 -11.978813 -8.306186 -31.434947 -15.226183 -9.126260 5.955046 -9.791646 12.781515 3.554747 -16.749283 -13.915247 -22.814135 2.984355 22.530951 0.141630 -3.036808 25.255987 -3.332056 12.535034 13.236293 1.435189 10.939467 15.541728 -36.581589 -4.615760 -10.335156 6.749648 -21.075724 -37.881189 -3.098062 -22.996381 -18.110893 16.487549 -36.056363 3.926340 -25.078929 -5.770712 -34.479671 -6.404638 11.157255 43.539187 17.346803 -19.396904 12.143303 -15.243685 25.085738 1.671720 -1.295230 9.466389 20.839184 +-138.342753 113.297129 30.002936 -140.560555 273.582121 -70.543722 7.624591 140.870921 -26.432512 173.431112 -151.949850 25.203908 -41.381810 -212.622524 19.511116 -62.107414 3.545665 151.271175 -33.572124 108.528298 108.509583 -66.149069 42.886277 -78.088529 -72.378956 -170.168916 -15.667938 61.909261 58.301184 -31.091192 42.176267 25.272681 227.822087 -10.226659 176.457820 157.894127 69.364547 217.414095 76.302800 -9.788706 28.795536 92.647191 -76.202758 -219.939971 70.947123 -69.468602 -141.948511 -132.568251 86.465525 -185.366326 80.219508 155.371214 -6.985936 -51.505594 -157.625965 100.091684 134.893173 5.230387 208.088725 55.626003 -105.771610 -15.249317 -158.100926 125.326923 -135.082987 51.032717 4.862032 -169.133210 -3.636767 95.044077 60.394321 -108.452457 -117.965746 71.134656 61.807692 -148.499147 55.360074 -67.725070 -88.495709 -128.307057 -110.313019 59.078824 -40.727704 151.562737 -3.414191 56.843210 -53.674854 53.344468 6.859411 -190.564334 -27.534381 169.225397 -74.500218 13.853311 -91.322748 149.474029 64.233528 -48.919815 -88.978884 -74.358412 61.386487 -11.921618 90.203513 -38.842774 -31.624188 -147.121335 68.563591 55.481762 3.072696 105.569087 34.726082 92.880710 79.011547 119.594978 -107.709410 76.521118 -253.460171 61.321939 -42.460420 35.368855 -45.818492 56.720031 57.573398 53.735440 132.508727 -219.513283 177.288393 39.819953 -38.566157 -146.612381 70.768808 -11.424437 -60.990188 -63.517368 124.468411 -9.307718 -26.812406 -24.308259 39.409402 0.446941 -99.620447 -110.535969 -9.563707 175.023264 -147.962780 58.305836 -51.636190 -85.058688 -6.792281 55.490409 95.407769 96.711810 225.728720 152.081011 -26.216100 57.807670 -199.115315 30.711538 235.104278 95.261640 -157.330902 155.035562 -72.798652 -33.049660 61.084055 108.170273 99.127949 81.547702 -140.487476 -143.920672 29.992737 -21.338785 196.340840 76.885503 38.784778 -178.663082 138.629637 -2.105472 -21.144238 280.542740 99.448722 -187.980964 44.411650 146.470902 -151.877462 -106.718555 69.264387 -87.508035 -38.831028 -57.031574 54.173918 96.008141 -131.218399 -153.298560 -28.570853 -166.146015 168.068116 -32.804559 -35.443864 30.427697 -165.351540 -78.474980 225.109618 32.087815 -63.032202 -82.085327 -138.910475 -73.541512 -221.517741 51.226401 70.479990 -67.398774 -82.125866 -143.911925 -27.762914 141.228451 -38.966483 35.148353 -187.317508 -57.308666 117.274281 32.733354 53.075337 -172.452201 -38.606636 8.046277 15.385733 61.244996 -15.987978 108.434877 230.322169 -127.786514 94.089289 89.335933 -35.250306 79.456603 165.319744 -176.637265 234.048601 -27.813927 162.131094 23.349701 77.823232 -78.535649 17.337270 8.688992 -22.822987 -26.545487 78.674555 -126.567773 -64.236867 56.796570 -110.513495 -104.899877 47.689370 120.194940 32.585375 34.641023 12.123120 -78.529744 -52.858301 -94.007611 27.204154 133.274655 -27.248696 -139.175131 75.752549 99.396432 -57.379203 -66.077597 35.515899 85.818158 155.163750 -201.609958 110.594562 -15.279852 5.801086 -186.577497 -168.588983 83.156772 -127.660921 -104.124898 74.748678 -231.546835 -79.773794 -107.420245 101.694735 -166.698339 -10.208930 20.036135 201.515190 72.385341 -41.053787 119.694280 -55.795669 110.144613 5.372211 -6.144831 17.881952 178.201891 +-30.777555 14.905595 -7.255303 -35.630164 82.850706 -17.647594 -3.914413 48.038028 -10.979193 46.510609 -25.664458 4.604107 -7.340495 -61.812040 6.515210 -8.877330 1.565190 32.305984 -12.580071 25.458903 23.162631 -11.295973 14.210799 -7.200993 -23.112463 -37.350663 -3.984299 22.947702 25.858591 -25.532339 1.769694 4.053249 61.504961 -11.795983 48.451842 34.026216 30.195914 40.074506 20.454942 -22.077092 5.965826 16.125473 -22.060753 -43.665711 7.549228 -12.467516 -50.506709 -20.256998 25.235352 -34.918730 5.673957 43.476069 -3.191695 -7.344220 -33.648728 34.294222 16.812402 -11.924435 52.395875 11.561357 -32.090823 -18.980992 -45.019184 47.945146 -28.756894 11.856965 -14.055712 -39.374591 -7.141209 24.688499 -0.654123 -33.370068 -24.996212 26.121843 26.892860 -39.900080 14.769869 -17.557688 -2.477032 -41.550873 -29.687887 23.292823 -16.411454 37.070366 5.290772 22.151591 1.479648 17.965846 -11.032027 -59.251790 7.550111 43.521752 -29.273917 -5.541939 -33.090312 34.140445 2.541777 -7.789725 -27.015167 -29.249848 15.599883 -7.185192 24.004737 -27.679442 19.734773 -39.799813 5.492944 7.273441 14.307470 28.740324 16.474688 11.551076 21.387772 40.890706 -25.931370 4.885107 -63.322365 16.381664 -20.617940 13.506938 -23.617795 19.063388 29.214840 24.376766 38.616311 -66.807925 38.126789 7.447508 -10.581939 -41.863581 11.516375 -4.940994 -13.803035 -11.037526 32.116702 -13.463653 -5.408115 -9.937234 21.285223 8.630203 -35.984462 -14.074071 1.414743 35.908639 -48.505070 17.829908 -7.921674 -17.899470 -1.409435 22.420960 37.435301 31.436434 65.689441 36.123141 -9.646275 28.060590 -58.465323 10.746436 57.617125 11.672943 -38.667493 50.388750 -38.991856 -11.032583 6.747372 41.122909 28.649284 14.185973 -32.148651 -25.833966 26.763151 13.363092 54.790666 -2.117067 8.191498 -38.203217 20.892275 -5.035734 -1.663746 70.373906 24.780711 -53.185828 20.887014 33.777495 -23.653106 -20.452901 24.442906 -38.783480 -10.794485 -18.820155 16.222536 32.727832 -30.421409 -26.997375 1.400364 -37.504946 40.884213 -12.964652 -25.664940 15.161888 -40.532056 -13.487245 57.977817 5.732298 -11.950221 -24.979926 -45.998405 -18.295460 -51.345809 12.134375 16.928491 -13.495968 -11.194766 -37.250541 -15.527992 42.481558 3.266688 20.173136 -72.415420 -0.248167 32.041204 13.345731 19.532491 -29.385039 -2.975259 2.377428 -5.061382 8.499508 -20.575403 22.417383 49.496198 -34.800519 33.462783 1.720676 -19.081820 17.253950 28.798600 -50.056369 67.668292 10.770462 46.807741 5.869392 18.323103 -20.871627 11.792111 -2.552775 -9.526998 -4.740846 14.673470 -29.357646 -22.244311 12.422789 -21.949758 -44.005397 -0.825413 32.934878 -3.302607 13.642265 -11.124603 -15.806576 -17.726974 -27.431494 19.192150 30.445845 -16.548097 -24.551832 29.071339 28.867212 -8.662039 -1.408083 7.829612 25.690421 41.959124 -54.824232 18.478332 -2.412165 23.170374 -46.483027 -51.394518 15.023184 -25.990282 -10.905483 11.484385 -61.708528 -27.543492 -29.046832 20.705266 -42.517717 3.223974 15.687487 59.587343 16.973186 -19.592560 27.239435 -14.270496 18.805639 -2.128042 2.148567 14.358205 31.959952 +-10.937752 7.546265 4.056843 -6.955302 19.381406 -3.913549 2.731603 6.852472 -9.013372 16.346716 -6.207212 -3.508062 -5.557087 -18.134046 1.491321 -7.607325 -2.255449 6.976357 1.291696 11.145526 8.705615 -10.800940 0.583961 -1.006207 -6.081485 -10.387810 -2.498583 5.678614 17.753698 -12.924766 0.780017 0.803806 18.358920 -3.148372 19.810495 14.928611 4.447690 12.425551 3.264957 -12.078724 -7.951640 10.211870 -11.534238 -12.354436 1.160631 -3.742817 -10.797914 -6.694593 7.813855 -0.822381 -1.622688 15.925888 -5.656837 1.494487 -11.236649 11.573379 4.091166 2.228904 20.021238 2.001468 -2.179053 -1.324178 -18.205812 12.255649 -6.199417 1.519961 -7.409682 -10.159991 6.258630 -3.413212 -4.828684 -10.906608 -2.724780 17.660947 8.210760 -14.998651 2.633493 -8.182326 -17.025148 -15.875844 -15.974216 4.852917 -0.883787 14.264848 1.340060 5.826108 2.422793 10.943945 -5.805998 -24.367951 5.672649 16.028365 -9.768416 -5.068024 -3.642560 15.336472 1.136555 4.357511 -10.049576 -3.094154 5.538042 -3.710215 9.171455 -13.468764 9.945661 -15.370724 -0.302352 -4.520433 4.085828 5.806161 14.070327 3.095796 12.972061 18.603250 -12.302307 -1.165398 -15.437776 3.768140 -4.480495 4.920693 -2.946999 11.265006 1.636132 2.969858 17.392981 -24.337625 3.392129 -0.582664 -0.993491 -19.611225 0.240798 -9.896309 -5.425956 -7.535563 10.270570 -1.385109 -3.206821 -8.415140 3.734799 5.181578 -8.822818 -2.330732 6.351136 15.996242 -14.607777 4.168513 -4.646006 -6.830901 -3.090340 9.337263 13.701263 16.170738 20.728446 16.235812 -1.757595 6.863979 -17.534543 -1.156623 14.292945 -0.204848 -14.685656 17.695636 -14.195659 -5.858869 2.888715 14.568889 15.227219 3.676845 -13.918964 -11.313001 13.696356 5.899847 18.141376 -2.986581 2.428715 -0.090374 13.789031 1.449690 -13.712717 18.993649 4.316192 -15.349563 9.049762 4.337737 -8.646245 -6.127220 12.740459 -14.457802 2.487343 -7.420129 1.173739 9.539694 -8.616788 -2.495494 1.373257 -14.851769 17.810666 -4.192252 -0.012788 9.243253 -13.278034 -12.722245 15.763811 0.816665 -5.601047 -14.698608 -13.408667 -11.092254 -11.773535 6.888775 0.659847 -3.699611 -10.056878 -16.075794 -1.423348 12.165373 5.488661 11.864802 -15.996868 -4.450659 7.961653 7.535183 11.449419 -2.431491 -2.938456 1.181717 -0.533739 5.338863 -2.721107 13.711738 22.479772 -11.067901 8.918334 -1.945111 -6.771462 6.679848 7.894332 -21.846651 20.204780 3.446284 11.248192 -1.187744 5.048482 -8.895644 1.318207 6.373820 0.037763 2.887489 0.811067 -0.861671 -5.562460 -2.593921 -13.989682 -9.151703 -5.022752 3.664980 -2.866892 6.726015 -0.492474 -8.164666 -5.891117 -10.784223 3.613501 12.792662 -0.300420 -2.920587 12.486602 -0.874516 5.480330 5.159121 1.437553 4.166838 10.045662 -19.165819 -2.399905 -4.693220 5.249899 -8.307557 -18.219099 -0.357009 -10.582203 -5.016956 9.533342 -15.631410 2.793246 -12.509240 -1.602806 -17.251921 -1.142887 2.794303 21.201196 8.508941 -8.552585 7.327119 -6.388182 11.262716 0.475030 -1.345151 3.532747 10.894681 +-10.213008 10.913445 5.063990 -7.598057 19.887865 0.103339 -0.808848 7.174784 -7.522088 17.248503 -8.211525 -1.367223 -4.529775 -16.905972 0.144119 -9.615316 -4.562021 5.412977 0.153658 10.026480 7.278365 -10.365664 1.057763 -1.030193 -7.027539 -14.817980 -3.064399 5.312920 16.771968 -11.247272 1.817222 -1.172436 17.847298 -3.984380 15.488104 13.050333 6.420663 12.615026 3.069694 -6.977311 -6.777036 8.569997 -11.263095 -8.590125 1.116553 -5.313167 -11.411844 -4.162549 6.946015 -1.947876 -2.202313 14.780298 -4.913213 0.165983 -10.846084 13.196776 3.871622 1.228975 20.350711 1.152110 -1.874057 -4.754656 -19.053750 13.513738 -7.070476 2.562753 -6.634225 -8.692392 5.361066 -2.846118 -3.305134 -8.904378 -3.722803 17.080028 7.920894 -15.076412 1.355080 -9.326413 -22.270520 -14.646401 -13.190445 5.350728 0.831919 12.554620 2.168892 6.054271 3.448711 11.446842 -6.459457 -23.536585 4.709764 17.034649 -8.123591 -4.172955 -7.912557 15.595337 1.290658 3.796637 -9.081807 -1.684751 5.317078 -1.428080 8.059716 -17.963181 7.715304 -19.071616 2.197262 -3.161982 2.603617 3.227041 9.109213 2.641665 11.838058 18.735334 -14.863329 -1.216263 -16.709108 1.642452 -1.288167 4.592284 -3.784574 9.448386 -2.368115 4.846116 17.095754 -24.211746 4.984705 -1.843018 -4.248341 -19.861685 -0.684875 -8.756414 -4.697091 -5.561348 7.724689 -1.081149 -2.558622 -8.245258 3.502906 3.875337 -9.527184 -5.920753 8.000961 18.252455 -14.119878 4.086385 -3.429086 -4.948298 -3.712807 9.703643 14.281504 13.935701 21.515075 14.022264 1.372268 8.760632 -16.639026 -1.731846 14.418147 5.184282 -14.540004 17.217693 -13.507744 -5.651773 1.678819 14.004662 12.881039 6.168045 -15.312193 -14.585966 10.670422 4.848702 17.572892 -0.348243 1.105451 0.673869 16.054644 -0.391694 -12.649883 18.163897 7.447457 -11.885144 6.632917 3.826807 -9.718121 -6.161295 13.128574 -13.272631 2.594329 -4.770010 -0.564998 8.683548 -6.086987 -3.451361 0.150568 -13.992314 18.626695 -3.811637 1.697944 9.040985 -12.311691 -17.536877 12.066074 -1.997731 -6.072821 -13.278115 -11.892374 -11.842067 -10.922795 5.797303 2.782979 -6.207191 -10.084749 -15.679107 -0.517502 11.012908 4.215569 11.010365 -18.747621 -8.075585 7.709179 6.373021 12.227267 -2.428041 -1.782325 -0.839755 0.334883 5.914343 -3.104485 15.171820 23.183195 -9.076241 10.851612 -6.387027 -7.305635 5.146440 9.121626 -19.999954 19.241706 3.525526 9.355913 -1.048572 4.639423 -7.137227 1.984630 6.225080 -1.553008 4.289791 0.694168 -1.077865 -5.622381 -3.377721 -14.591632 -7.549249 -3.971167 3.044704 -3.573492 5.940742 1.065050 -6.807879 -6.374311 -9.387255 1.995456 11.114331 0.428360 -1.461011 11.715110 -1.301321 4.970197 6.360507 1.056432 4.731823 8.537587 -17.591159 -2.206030 -4.498502 3.546889 -10.091976 -18.561374 -2.309891 -9.886186 -7.389407 8.442648 -17.242578 1.589994 -11.634556 -1.906561 -15.472931 -2.915252 4.639660 20.351549 8.648639 -9.128256 6.582057 -6.572031 11.539500 0.400884 -1.151862 4.530949 10.290215 +-127.277476 104.981530 24.014143 -129.366366 251.643685 -65.146372 6.923523 133.062837 -26.907314 158.056960 -140.870489 26.585209 -37.662800 -196.360899 18.626384 -51.600611 6.026677 140.195238 -31.227949 99.491724 100.484762 -60.720225 39.861583 -73.584017 -66.410060 -154.844494 -11.838144 56.176475 52.375826 -25.972454 35.088287 24.292272 209.512886 -8.179365 161.662632 144.477701 64.058682 201.299517 74.514108 -13.452320 27.413239 85.536994 -69.077449 -204.944925 66.443559 -65.756732 -128.302073 -122.214111 79.758004 -171.725371 75.926364 141.449160 -4.707515 -47.897431 -146.958470 89.397151 126.135449 4.443020 191.458359 52.345909 -97.828607 -17.260612 -142.025784 114.307132 -125.509194 46.287152 6.576021 -155.336049 -4.063957 89.789278 56.967970 -100.166130 -109.894166 61.745721 54.381056 -136.017537 52.875686 -60.235277 -76.278632 -118.477041 -101.129527 54.078421 -41.329202 140.662952 -3.761024 51.624597 -53.643250 47.107139 8.970158 -173.465279 -27.080313 152.866240 -67.786843 14.682919 -82.304670 138.890567 59.135358 -46.406818 -82.286579 -69.041814 57.141301 -9.749481 82.337347 -35.663506 -27.843992 -133.644877 64.922158 51.713417 2.443329 99.676354 33.106925 86.847033 71.780802 108.097972 -95.618403 68.555892 -235.033456 56.349153 -38.997914 31.801294 -42.847790 51.465549 55.320811 47.146868 120.608757 -201.284647 165.724836 39.473392 -34.355215 -133.051315 67.779164 -8.928530 -56.588142 -58.408476 115.842749 -8.861222 -24.416431 -21.360423 36.887267 -0.846050 -95.289048 -101.989816 -11.760044 162.830236 -139.347234 53.110248 -48.050622 -79.082255 -5.163735 49.688039 85.192312 87.584460 206.208923 139.298235 -26.500169 54.320457 -183.052963 30.419573 218.616385 90.184840 -144.731352 140.656021 -65.795476 -29.487045 57.844116 97.312363 90.426436 74.524942 -128.768995 -132.540172 27.505228 -20.805265 180.802439 70.821433 38.466417 -166.624687 127.945907 -1.300473 -16.763907 258.296538 89.265853 -173.436148 41.266889 136.502993 -138.767460 -95.662021 61.058365 -80.114104 -36.165303 -53.432999 50.030995 89.124584 -123.523637 -143.373040 -28.033854 -152.535873 154.275315 -29.128443 -33.257991 25.506796 -152.441928 -63.008003 208.430756 31.300341 -57.790314 -74.623220 -127.201780 -69.681800 -205.641438 46.478261 64.693631 -62.350652 -74.323081 -132.115017 -28.102014 129.840779 -37.414156 28.014027 -174.976570 -50.407691 108.555129 30.429573 46.731565 -160.900277 -36.019460 9.545186 13.803531 57.140021 -16.149187 100.230405 209.859662 -118.404571 85.584156 85.349948 -26.824555 74.786916 153.268031 -160.286922 214.599171 -27.737414 152.541935 22.495885 72.869152 -72.714167 15.935404 5.464946 -20.399094 -26.041249 74.122687 -119.149094 -58.926363 54.881426 -98.744714 -98.027517 45.654353 111.976273 32.682647 30.375616 9.358573 -70.576670 -48.028964 -86.770719 25.226969 122.917418 -27.322660 -130.975391 67.679115 93.245462 -54.316719 -61.612305 33.836978 79.493995 144.117100 -184.752991 103.310495 -13.445450 6.014117 -172.806021 -155.232556 78.313741 -114.216365 -94.849243 71.028276 -214.636350 -74.838571 -97.412452 96.451250 -155.633341 -6.182713 16.920471 183.467226 63.363552 -36.212659 110.786696 -50.029453 100.604121 4.930287 -4.229663 14.036968 164.656517 +-6.850918 7.126931 4.309264 -4.603588 14.358852 -0.269657 -0.395274 7.124888 -6.269665 12.302721 -4.744385 -0.134393 -2.601537 -10.253668 0.303777 -6.188413 -2.727282 3.744395 0.102408 6.839298 4.607836 -5.890383 0.605006 -0.131794 -5.057348 -10.252657 -2.022126 3.828917 12.037092 -7.120941 0.319333 -0.600439 12.605292 -3.178032 11.757359 9.007121 4.818342 7.278517 2.114607 -6.369423 -4.509470 5.420728 -8.002554 -5.222455 0.083002 -3.527781 -8.421278 -2.900993 4.681904 -1.256431 -2.208773 9.775089 -3.384539 1.022303 -6.149956 9.718137 1.569980 -0.043151 13.768161 0.551085 -2.119701 -3.614157 -12.726270 9.849375 -3.985061 1.296327 -6.542447 -6.505962 3.459831 -1.889986 -1.977206 -6.605677 -0.966672 12.642599 5.508101 -10.136961 1.416304 -5.891057 -12.464583 -10.681596 -8.872443 3.962488 -0.513023 8.186825 1.466524 4.370279 1.151478 8.017594 -4.804501 -16.692191 3.751631 12.051672 -6.372157 -3.400896 -5.991189 9.433074 1.397791 3.197272 -5.363665 -2.239208 3.686297 -1.485065 5.346802 -12.781997 7.773427 -11.937861 0.020858 -2.406612 3.193935 3.882725 4.502478 2.475559 9.288385 13.439982 -9.268212 -0.897915 -10.527189 2.048570 -2.968004 3.010925 -2.845416 6.987050 -0.086286 4.759841 12.099794 -16.578218 2.611743 -1.253982 -2.235478 -13.346798 -0.556837 -6.275570 -3.079859 -4.093361 5.271629 -0.983134 -1.785744 -6.235675 2.915990 2.745037 -6.013484 -4.014860 5.391034 11.120910 -10.690652 2.810957 -2.084616 -2.827918 -2.295308 7.189362 10.447030 10.079386 14.346900 9.671877 0.577878 5.697540 -11.564921 -1.289033 9.243567 1.860015 -9.499664 12.715009 -9.795764 -4.663934 1.404221 9.744899 8.502102 4.331119 -10.526386 -10.396604 6.588063 4.342672 12.337666 0.370286 0.322881 0.442921 10.090399 -2.447212 -9.333204 11.771807 4.677806 -8.452638 3.985375 2.260576 -6.203149 -4.169491 8.948356 -10.662680 1.031389 -3.543785 -0.476719 6.487854 -3.930390 -1.586691 1.735516 -9.321279 12.742195 -2.727865 -0.007864 5.689219 -7.758010 -10.683927 8.824801 -0.629369 -3.651037 -8.975345 -8.071196 -7.855367 -7.312326 3.525367 1.359167 -3.340771 -6.469421 -10.727333 -0.874433 6.869360 3.492092 8.059615 -14.012583 -4.704661 5.247216 3.802821 7.812121 -2.395309 -0.903157 -1.352238 -0.801161 3.401835 -3.143797 10.744840 15.560993 -5.987939 7.416099 -4.286424 -6.146959 3.200987 5.213796 -14.576487 13.050248 2.825798 6.057536 -0.041905 2.904808 -5.090239 1.320176 3.371992 -1.051995 2.241978 0.896647 -0.631953 -3.957119 -2.426740 -9.838806 -5.410969 -3.633401 2.125863 -3.398747 4.156208 0.015524 -5.828195 -4.331476 -7.721392 1.657104 7.311764 -0.844512 -1.049095 9.051811 -0.980041 2.794418 3.525127 0.259064 3.372455 5.417509 -12.143871 -1.936752 -2.525606 3.428325 -7.001691 -12.484522 -1.710963 -6.864192 -5.205009 4.924801 -11.073621 0.261652 -7.902957 -1.913569 -10.837320 -3.205700 4.503836 14.807323 5.303287 -6.851762 4.229154 -4.788343 7.591770 0.586838 -0.027093 2.486996 6.342553 +-16.627984 16.479083 9.704770 -12.346344 34.014997 -2.976576 6.427524 15.901422 -20.185177 27.999901 -10.869787 1.547454 -5.379086 -26.438099 1.649262 -14.728769 -4.851825 10.111315 2.196910 19.946748 11.300903 -16.648516 2.807413 -1.960736 -11.615991 -23.221290 -1.880758 9.182192 26.533118 -11.641349 8.181243 -1.079674 27.525995 -5.276882 27.975934 21.590460 5.637506 16.965779 7.726974 -18.769553 -10.054929 12.318981 -16.998855 -17.603671 0.258589 -5.876424 -21.300292 -11.042543 10.041894 -11.052220 -9.896238 23.283838 -7.589328 0.462860 -15.831951 20.082306 9.882752 -3.343590 29.536259 1.639945 -6.060794 -9.195926 -27.442534 20.797060 -7.394798 -1.420854 -10.697201 -17.557753 10.255986 -0.860214 -10.636449 -11.253415 -2.281108 27.112209 14.920945 -23.803616 2.837564 -13.271450 -34.782471 -22.602310 -16.188825 8.213382 -0.850509 21.426895 3.586955 10.445914 5.939067 15.875577 -9.049802 -37.466050 7.406657 29.400012 -12.923807 -10.667337 -12.381333 25.330649 6.633695 4.867755 -13.559642 -5.577799 8.028209 -4.164688 13.046047 -27.362400 9.051331 -26.769302 -3.381728 -4.454822 7.475477 17.243529 10.320757 8.588839 18.475624 28.862434 -23.515709 3.070730 -22.646078 7.737482 -9.548002 7.404246 -7.222007 14.303444 4.037664 11.276072 26.373125 -37.071300 8.506614 0.525654 -0.862334 -31.190532 -0.099475 -12.691047 -5.685980 -9.688584 13.142345 -3.972691 -3.251321 -12.362033 5.398192 7.417177 -12.042907 -9.559460 10.118922 28.106160 -26.951880 8.060764 -5.243205 -6.275811 -4.104821 14.750211 22.750118 22.624029 30.763070 22.846700 -0.149502 17.553043 -26.350839 -0.672460 25.386700 7.020187 -21.014523 28.685312 -21.489796 -11.469994 3.077162 19.396452 21.342542 9.071649 -27.915087 -24.175763 19.334425 7.832411 28.457748 3.762530 1.052969 -7.892351 25.721047 -3.906489 -18.890534 26.808095 11.211924 -22.451019 13.222710 8.156257 -22.340717 -9.181172 18.101856 -23.984414 0.435639 -8.724800 -0.397374 14.759085 -10.359826 -7.182126 0.063499 -22.067845 27.822074 -5.954048 -0.471088 9.847742 -15.244745 -21.879210 22.210881 3.372854 -8.762705 -20.689974 -19.124540 -21.926509 -19.211917 8.161324 3.082625 -8.061573 -14.805757 -24.618405 -5.272490 13.994678 6.923203 17.130986 -32.158877 -6.514217 12.931983 13.235287 14.476655 -9.296786 -2.624843 -1.116451 -1.239317 6.190344 -4.607783 25.312089 33.488966 -14.863166 16.741075 -8.070645 -13.635375 11.552125 11.995582 -33.137267 30.979152 4.302461 21.972408 0.968323 7.603848 -11.311900 3.820835 6.922606 -7.685046 3.227669 3.669357 -5.057621 -9.844146 -0.048010 -20.755076 -16.082281 -6.781996 7.074481 -3.518053 9.050346 0.492822 -14.609439 -9.718137 -17.939533 4.569533 17.365303 -3.516890 -6.265779 19.299284 1.675854 7.030899 -0.817032 1.314142 10.101465 12.078544 -29.174877 0.335292 -7.193991 7.265223 -17.070446 -27.638508 4.588741 -17.660606 -14.524489 11.411007 -26.766071 3.097222 -18.691187 -2.233953 -29.452070 -7.943181 8.035753 33.800629 6.636482 -13.050370 11.119242 -11.353799 16.450436 0.077150 3.695712 4.766949 16.172267 +-19.731178 15.940970 5.699398 -15.366731 40.395945 -5.053262 6.304485 13.921614 -13.075486 31.500081 -14.916039 -4.672748 -8.192745 -33.086160 2.103733 -15.299094 -4.843342 13.840640 -0.613179 18.325926 14.669802 -17.982409 3.658989 -3.628776 -11.460276 -27.381442 -4.478766 10.622579 27.659461 -16.070743 5.408227 -0.185334 33.220574 -5.306849 31.052028 24.703449 9.117087 23.374237 5.823962 -13.414905 -8.413792 16.213598 -18.716855 -23.246883 2.987020 -7.622891 -24.394537 -15.109935 13.449114 -12.545316 -0.631755 27.590214 -8.145363 -0.981765 -19.663245 21.708884 12.503249 0.239461 34.647402 3.908874 -6.939865 -5.128947 -32.449516 24.687497 -12.123193 3.097300 -8.990985 -22.345841 6.737008 -0.190240 -6.481487 -15.463725 -7.150792 27.907533 16.803188 -26.302827 4.345242 -15.089412 -31.797452 -26.516640 -23.301284 9.082464 -2.384600 25.637638 2.844774 10.239260 5.172506 16.473188 -8.635788 -41.165969 6.229506 32.313640 -14.500283 -8.023993 -12.800309 26.181419 5.130911 4.056508 -16.999224 -6.784557 8.436636 -4.291967 15.407070 -22.466395 7.622078 -29.557191 0.538208 -2.601103 6.300230 13.037593 18.372373 5.802006 18.390774 30.835871 -25.758053 3.652858 -29.132771 8.660728 -6.319005 8.965564 -7.073328 16.386694 4.562186 9.541425 29.100397 -42.645728 11.921983 0.132155 -4.068671 -33.123842 0.844958 -13.619197 -9.206984 -10.612514 16.369191 -3.139980 -4.658739 -12.512103 6.581723 7.126438 -15.491566 -7.630811 9.683029 29.267589 -27.108350 8.312088 -7.018081 -10.613349 -5.333659 16.379705 24.036737 24.984297 37.432433 27.353811 -1.189064 15.202038 -31.341014 0.628892 30.251482 6.747059 -25.243262 30.593135 -23.384241 -8.839221 5.541147 23.375388 23.603478 9.228042 -26.262437 -20.467758 19.066992 7.225623 33.018771 2.786835 3.373711 -9.745961 25.552668 -0.526828 -18.835747 35.373046 14.767388 -27.296575 14.077806 11.044431 -24.045724 -11.723609 20.307156 -23.428390 0.642601 -12.103896 3.539630 16.834337 -13.678429 -9.206062 -0.047005 -26.017730 31.740172 -7.237781 -0.650732 14.409466 -22.064636 -23.260272 28.563235 1.231283 -9.718952 -22.524906 -22.539711 -20.885132 -23.837431 10.673295 3.828355 -9.783908 -16.778417 -27.701172 -3.053010 22.225882 6.055644 18.749321 -30.978790 -7.456591 14.995704 12.464074 17.636409 -11.253682 -4.591002 0.224956 0.111491 8.306137 -4.436849 23.789984 39.055963 -19.005774 17.323932 -4.043253 -12.191222 11.722777 16.356748 -36.018848 36.361234 3.976283 21.588135 -1.063972 9.833603 -12.845393 3.686370 8.307377 -4.569007 3.138068 4.943752 -7.101190 -10.345521 1.044350 -24.978245 -17.632262 -4.605978 9.522634 -2.110623 10.432984 -0.111096 -15.929870 -9.633577 -18.053165 5.329359 21.370272 -0.754858 -8.994284 19.669714 2.619946 5.262931 0.696423 2.698079 9.975316 18.125085 -33.245071 1.214796 -6.997376 7.351526 -19.921876 -32.883348 3.662077 -20.786362 -15.648777 15.495927 -31.040843 0.628739 -22.159728 0.306234 -32.281565 -5.781344 6.213297 37.865105 12.993696 -12.811332 14.172899 -10.663847 19.491292 -0.612220 -0.569107 8.710772 20.110941 +-13.054834 15.992762 7.761114 -11.648332 27.640241 -5.458371 4.233639 11.336456 -12.511909 22.543350 -8.962690 -2.254968 -4.840628 -26.179386 1.040177 -14.910712 -5.917854 11.806565 2.572841 16.987230 9.255441 -14.727886 1.894314 -0.914611 -9.872203 -19.786462 -2.550001 8.176723 21.833582 -15.025057 7.753670 -1.382996 25.233506 -5.286520 23.740995 18.168152 4.839667 14.894563 6.642713 -13.221333 -8.855472 10.005780 -13.799290 -13.716756 -0.153012 -2.956485 -17.294291 -9.405417 8.265475 -7.557110 -5.353298 19.728783 -6.176670 -0.262909 -14.406597 17.330788 7.598351 -0.611843 24.382020 1.261965 -2.249108 -4.578314 -24.428976 16.943838 -7.405634 -0.782001 -9.128934 -11.852321 9.273079 -1.764277 -8.784883 -11.058892 -1.411291 22.852044 13.406239 -20.154681 1.380600 -12.664453 -30.972001 -20.008286 -16.011605 7.538093 -0.776136 17.255007 3.252055 8.857009 5.534450 14.398674 -9.006545 -30.744160 6.753144 23.959947 -9.677106 -11.236254 -7.646575 23.099627 5.446695 3.555272 -11.171566 -5.810286 6.828272 -4.237730 11.386429 -21.760856 7.391673 -24.449539 -2.632166 -3.244471 3.606434 12.310550 13.810241 5.982393 15.201648 24.231969 -22.652778 0.109339 -23.613406 4.758414 -6.314858 6.174225 -4.845875 11.696403 0.207015 10.199047 20.556711 -33.314311 7.030589 -0.364832 -1.121758 -25.710786 -0.484599 -9.692810 -4.406100 -7.958277 9.918365 -2.374363 -2.743103 -9.620108 3.601567 6.953642 -8.931376 -7.931241 10.332734 25.559142 -22.350505 6.831255 -4.108645 -5.547511 -3.854762 11.561916 19.387898 17.613002 27.457876 18.483693 1.163497 13.379358 -23.208900 -2.621942 19.113328 2.841679 -16.675380 24.132531 -17.104807 -9.927629 1.043581 19.894802 17.148599 6.430024 -23.761404 -21.246363 18.571611 5.768445 22.026479 -2.654599 -1.308322 -5.764700 23.189254 1.737469 -17.300314 26.178162 9.732674 -16.680411 9.521656 5.861707 -17.621822 -9.849077 16.935780 -18.912159 1.540096 -5.770635 -0.332458 10.930056 -7.102326 -5.980615 -1.314291 -17.623291 21.889436 -5.816597 -2.678312 8.915926 -12.753665 -20.316308 19.634503 1.085858 -7.835676 -17.197567 -18.123310 -14.863741 -14.883332 7.661755 3.547869 -6.704615 -12.661563 -19.100513 -1.715728 14.407997 5.543366 14.335382 -26.007628 -8.042823 10.989759 12.487846 13.512822 -7.192864 -1.575362 -0.099670 0.611045 4.648527 -1.478463 21.797878 30.287885 -11.649914 14.488101 -5.651088 -12.644533 9.697339 11.273980 -28.370379 26.439086 4.480820 17.797090 -0.158576 4.635318 -8.871631 2.782300 7.864603 -5.087459 4.398176 0.662515 -2.437441 -7.978294 -3.203208 -18.126769 -12.914637 -5.553159 6.055827 -4.955193 8.258546 0.407441 -10.893302 -8.379158 -13.637844 2.781327 14.184091 0.262999 -3.388148 16.311997 1.502729 8.184792 4.598138 0.220979 8.108771 9.781181 -23.745490 0.295649 -6.707865 6.301048 -13.492416 -25.715236 3.801347 -15.637710 -10.357268 7.482280 -22.399063 1.416262 -15.484056 -1.797371 -25.942953 -3.578092 7.287242 27.441218 8.123611 -11.428374 7.643735 -10.043517 14.455513 0.539524 0.343362 5.665567 14.253974 +-3.566948 3.919111 1.741328 -2.804034 7.458907 0.436565 0.068653 5.937154 -3.465407 5.807680 -3.539886 2.874021 -0.122799 -3.866070 0.017322 -2.075694 -1.325436 1.908568 -1.181474 1.620627 2.196771 -0.271420 0.026999 -0.882483 -2.820214 -4.616343 -1.176271 1.471362 3.769412 -0.619372 0.335621 -0.276837 5.897760 -1.911447 5.684158 4.289741 4.484821 3.280246 0.456904 0.549839 -0.222553 2.203028 -3.535370 -3.537111 0.059607 -2.367094 -4.923249 -0.570747 2.176399 -3.383750 0.919798 4.051097 -0.584914 0.058460 -1.019925 5.330685 0.342455 -3.066188 5.904647 0.979112 -5.248282 -1.177596 -5.393078 6.572463 -1.552919 3.786355 -2.820352 -4.741987 -0.121069 0.697055 0.746985 -4.111235 -0.522431 4.551674 1.054654 -4.275986 1.872599 -2.591794 -1.814690 -3.333431 -2.519348 2.728707 0.062473 3.009195 0.349952 1.379108 -0.741992 2.819089 -1.862794 -6.897989 0.315538 6.426792 -3.845062 -0.451828 -5.962629 1.052904 0.585856 1.460375 -1.291438 -1.976428 2.443471 1.054499 1.802107 -5.807766 2.538188 -4.941323 -0.358391 0.898645 1.068596 2.804419 -1.281427 2.022483 4.438233 5.615546 -1.810627 1.308189 -4.208503 2.033160 -2.205491 1.419363 -2.080031 2.310183 2.938429 3.105352 5.283989 -6.010416 2.561293 -0.737417 -2.203626 -5.162028 0.238933 -2.757972 -2.450619 -1.701562 2.255375 0.282279 -0.956236 -2.949008 1.903022 -0.229973 -3.375066 -4.932337 1.418112 1.205274 -5.529345 0.431917 -0.860062 -0.269366 -1.266452 4.636814 4.660755 3.813401 6.456099 3.600594 1.219506 2.281430 -5.681310 0.348731 5.136293 2.419124 -4.981012 5.385626 -5.290994 -1.310355 1.651722 3.282754 2.225943 4.816854 -5.006936 -4.424291 1.787916 1.073433 5.861946 2.415539 0.195237 -1.748845 3.179829 -3.051958 -3.518873 6.919065 3.414567 -5.422882 0.751074 1.652307 -0.053672 -2.351946 3.385309 -5.309894 -2.125806 -0.909307 -0.907373 2.914262 -2.340793 -1.764897 2.067345 -4.655968 5.999862 -0.886642 -0.893831 0.430868 -4.762404 -2.451794 4.531336 0.439497 -1.961793 -2.956178 -2.310517 -3.008273 -4.360410 1.018634 2.942997 -1.104359 -3.626228 -5.020544 0.055500 2.635169 -0.067800 3.141854 -7.104749 -2.824490 2.858040 -0.739125 3.500414 -6.185060 -0.665868 -3.015954 -0.556554 2.510132 -3.101187 4.271206 7.074085 -2.674656 4.814678 -0.112741 -3.656798 -0.776423 3.095283 -5.590189 6.178396 0.953696 1.667005 0.738882 1.887697 -2.979191 0.347862 -0.433173 0.360727 0.410901 1.884956 -1.509781 -1.460586 -1.128695 -4.847209 -1.342743 -0.118314 1.567750 -1.302751 1.089122 -0.513601 -3.453384 -2.909980 -4.369929 -0.056556 3.619144 -2.364345 -3.698494 3.632031 -0.297470 -1.985740 -1.217940 0.336767 2.253503 3.111633 -5.401998 -0.163460 0.346169 0.338006 -6.895643 -4.066582 -1.567803 -2.294081 -3.881705 0.754706 -3.934562 -1.518073 -2.984014 -0.045697 -5.414855 -4.053169 2.866770 6.530526 1.419154 -3.164454 2.489574 -1.859936 4.509549 1.453808 0.703296 0.257052 2.697497 +-49.395881 32.047768 3.464267 -47.774621 104.046976 -27.592304 1.359402 49.078742 -5.094663 66.276645 -50.432339 1.081668 -16.756386 -80.439337 8.076089 -22.349449 0.399462 53.085730 -12.419632 33.714548 37.530162 -21.386505 15.722146 -22.862967 -25.613475 -64.428877 -8.987807 25.263669 26.657861 -18.384751 9.353282 9.635464 86.455929 -7.972072 64.808115 57.640538 28.800335 73.812070 24.747457 -4.297813 10.098449 33.166676 -29.981500 -75.382913 20.923659 -22.010204 -57.780474 -45.772700 33.774985 -59.556529 30.056173 58.449789 -4.924604 -15.866074 -55.832909 39.971928 42.399631 1.443964 76.229280 18.323204 -36.907722 -4.816560 -60.109730 56.297560 -48.146932 17.442647 -4.384083 -61.820523 -2.789663 31.741961 17.869432 -41.202661 -42.070125 31.127095 27.601262 -54.638323 17.366090 -24.740632 -27.460924 -47.777657 -45.946691 22.580602 -17.888568 54.797936 0.064011 21.008542 -13.910482 21.337056 -1.114661 -72.175434 -5.982309 66.261427 -28.727133 2.318768 -36.253458 50.704863 22.742261 -15.929851 -29.630750 -28.103838 18.726180 -7.772564 34.634645 -14.440730 -5.445918 -53.631753 20.859973 15.175661 5.994431 36.965590 16.125039 24.722045 28.065940 45.599665 -38.369933 23.150748 -91.363889 24.574606 -16.027529 13.836146 -19.033160 23.781723 24.163913 20.810666 50.804751 -84.112774 58.081214 8.757601 -13.176572 -54.254769 20.112404 -4.620153 -22.381603 -20.672790 45.140239 -5.794841 -11.341308 -10.079811 18.245958 5.951898 -38.237829 -32.468870 0.337106 58.132309 -51.773392 21.915895 -17.966839 -30.793999 -3.333311 22.873114 38.708253 40.980631 85.750648 57.888811 -8.688453 20.585802 -77.629656 12.108442 82.980628 24.661724 -56.458280 59.414557 -33.752352 -12.676955 19.303908 47.135498 37.902556 28.664385 -44.685456 -42.426217 12.051791 -0.276649 72.216252 23.401976 12.456658 -57.644894 41.277904 -0.960112 -7.542509 101.579973 37.973075 -70.422101 19.493188 50.978274 -51.361884 -37.622136 29.328809 -35.582100 -12.827092 -25.928277 22.627441 39.152012 -45.725386 -46.442630 -6.027060 -57.798659 59.956461 -15.301950 -17.768454 18.514427 -61.065245 -30.484812 81.991366 9.108395 -17.737633 -32.454084 -55.721061 -27.289640 -77.311363 19.828218 23.462993 -23.511563 -27.634917 -53.171538 -10.275700 58.211268 -7.389372 22.662716 -69.363243 -15.289724 42.184348 16.583786 22.431703 -57.382867 -11.853355 3.042093 4.158925 19.075560 -9.104356 35.297311 82.432387 -48.016824 35.264839 26.776065 -15.951421 26.278298 54.707041 -67.963377 85.866332 -3.010992 52.658332 6.966221 26.171674 -25.657236 8.285632 3.729097 -6.755244 -8.359528 23.870356 -42.859664 -25.003735 21.625123 -41.853513 -41.466864 11.112888 44.319144 9.547210 15.690190 -1.172715 -29.707189 -19.470581 -35.117049 14.341313 47.522483 -8.060064 -44.275345 33.422723 33.957988 -21.288399 -19.066937 10.881974 30.195873 55.236040 -74.764509 34.126727 -5.246832 10.599381 -64.127904 -63.859784 24.247368 -44.000500 -35.117015 25.524634 -82.682504 -31.405932 -41.222460 32.370340 -62.454185 -6.537676 8.237573 76.461855 29.269581 -14.644647 41.240522 -19.475839 35.463309 -0.453519 -5.327631 15.114105 60.186153 +-56.360194 24.663736 -15.770915 -67.391222 136.698402 -32.203649 -7.097872 74.736140 0.656649 74.292426 -57.021449 5.404968 -13.924457 -100.633237 12.326239 -11.257452 7.733823 61.651384 -28.057233 37.414622 44.384649 -14.163031 27.520113 -24.804700 -34.908109 -64.045493 -7.260102 36.414067 23.665972 -23.274008 1.941933 11.012030 101.396976 -13.752979 74.809580 58.623787 49.545637 84.368159 31.759153 -14.367412 25.478015 31.309517 -30.779937 -91.010168 24.778380 -27.290353 -81.625677 -48.515230 44.654594 -78.868545 31.956259 70.941371 1.647417 -22.991750 -64.756352 47.856819 44.011731 -10.737897 88.012778 26.766589 -58.290979 -20.355242 -68.279363 68.333580 -60.263713 28.743599 -7.971370 -76.157190 -23.705571 56.574132 17.423939 -53.666941 -58.049789 22.969448 37.331059 -62.406227 30.203002 -25.586996 15.576865 -59.206451 -44.449292 35.673221 -30.674889 64.581194 1.869810 31.407923 -11.814716 19.207005 -3.644666 -84.567954 -4.017955 68.279334 -41.701643 4.469668 -49.679300 53.126720 12.329158 -26.644631 -44.055872 -46.031113 24.877650 -7.348134 39.777701 -17.101845 7.658663 -57.971410 23.693139 28.488294 15.397630 46.451106 17.140898 24.748007 25.284910 52.104713 -34.466161 24.655261 -113.309621 29.032532 -29.533410 20.729279 -35.659232 25.378560 53.101490 32.577010 54.898579 -98.249015 82.496009 18.690655 -21.226781 -57.062583 31.416796 4.060852 -27.541709 -17.552073 57.828168 -17.704376 -10.799266 -6.041239 34.467290 4.758961 -55.056711 -26.431109 -10.774151 52.862677 -68.387224 29.085908 -16.703430 -37.138358 1.966836 28.704986 48.699818 41.296015 109.858447 61.392394 -20.394383 34.318258 -93.370293 26.185685 106.990585 27.168910 -65.833486 72.649633 -49.356658 -9.602653 20.139293 56.079810 39.933926 33.273025 -44.074242 -37.171451 18.241207 6.180449 91.118338 14.699671 21.683461 -84.934018 30.774993 -9.787010 15.318775 124.487924 46.869489 -92.829146 26.055060 70.620676 -48.170620 -39.768197 29.251989 -47.376924 -22.911583 -32.143275 35.850042 52.985709 -60.174193 -64.250435 -5.660007 -65.277083 64.582480 -19.843758 -39.742679 18.652420 -75.964352 -8.849957 103.227446 13.334269 -20.884376 -31.432759 -69.914481 -22.022692 -99.886402 20.720649 34.267002 -25.727917 -18.732754 -57.916676 -23.654590 73.040550 -10.395963 18.044067 -103.155419 -0.613231 56.296688 14.559083 24.857073 -62.686803 -9.947291 6.855828 -3.924694 18.211169 -28.454657 27.307396 81.447033 -62.659442 46.641261 25.587398 -18.879047 30.081814 62.503171 -72.579148 113.189148 6.063104 75.375448 10.511428 35.393700 -32.302592 17.373165 -9.772183 -16.271070 -15.580845 35.146912 -64.330488 -35.146177 34.672885 -32.067188 -65.784497 16.789631 66.102426 7.296898 17.739120 -11.522672 -26.281812 -24.794463 -39.148186 27.975569 54.223726 -25.164738 -59.346208 35.472686 60.262339 -32.002234 -23.544059 17.570080 43.708119 80.302380 -89.976387 49.377626 0.593708 24.368605 -86.327353 -74.785099 34.476860 -43.010065 -22.382169 23.461745 -102.747851 -54.490936 -46.140206 53.303900 -63.224145 5.367928 16.454433 91.216940 31.811665 -21.082413 52.500263 -18.691869 32.905209 -3.177364 -2.683827 21.907081 64.285777 +-56.004074 41.797603 4.393943 -50.023977 112.296338 -26.311284 6.119365 54.309077 -14.864167 75.989285 -54.620386 2.180753 -17.009229 -85.889125 7.762760 -27.007734 -1.742844 53.938967 -13.648850 37.267432 41.775175 -25.594282 14.472860 -23.128915 -31.010589 -73.970142 -7.668825 26.657238 39.225645 -25.437740 11.599688 8.523853 95.266066 -13.864356 75.876793 65.814157 39.062476 76.984315 25.310330 -7.023269 3.803685 38.503614 -37.691672 -76.451706 18.084980 -24.113286 -66.758133 -44.039443 36.483525 -61.355254 27.189090 66.890229 -6.798475 -12.107955 -56.408830 54.421063 46.973571 -7.402752 89.270691 19.004955 -38.838052 -9.446872 -67.761308 73.759814 -49.871472 19.953563 -10.183288 -67.745109 -1.913539 27.770673 8.238705 -43.633327 -41.932447 44.425129 33.420377 -66.452023 18.152612 -30.222265 -40.338730 -60.785967 -52.237762 26.655252 -11.719031 62.329193 2.912961 24.342802 -5.921775 29.169368 -6.719602 -89.051944 -1.060657 78.673030 -37.872871 -2.151735 -47.871948 54.825654 20.400818 -8.841701 -37.315879 -33.383092 22.845548 -7.796817 38.392192 -34.256454 -0.047102 -64.123834 15.763085 13.119281 6.713025 43.208317 19.905573 26.329568 36.994156 60.695623 -46.242467 21.285405 -98.667008 26.798496 -14.988864 16.307110 -18.641648 26.256235 26.326289 25.194199 62.361974 -97.892385 59.105443 7.793992 -17.857589 -68.876793 17.154168 -13.623260 -26.129336 -25.894432 49.341653 -6.295334 -11.125627 -18.116540 23.299923 8.428890 -42.716864 -40.809658 5.115182 65.235384 -66.307122 22.773561 -20.147685 -30.589836 -8.781554 32.541029 48.183996 48.562787 97.860270 65.435499 -6.821644 36.151927 -84.326141 8.113039 88.940285 34.180428 -66.045936 70.746845 -49.507680 -17.097028 21.577215 53.279472 41.856232 33.843543 -58.430945 -51.624477 25.494410 3.306703 84.287287 18.546730 10.781811 -59.208568 53.843799 -1.724812 -21.724531 112.862150 48.847936 -80.107867 26.199239 50.228301 -55.328674 -41.167887 40.945317 -51.906676 -17.202619 -28.171719 19.658817 42.587005 -48.004226 -44.601674 -0.416431 -66.817039 72.115106 -15.482999 -18.047139 23.745780 -68.981522 -41.849812 84.726417 8.820892 -22.102532 -41.584360 -59.520806 -39.364686 -83.056782 23.682475 25.648530 -25.326257 -37.279544 -64.529795 -9.610261 62.199982 -3.341722 30.651869 -87.686437 -20.823260 46.980367 22.116810 31.229938 -57.572512 -13.651945 -0.690798 5.928617 22.416827 -14.425589 47.335474 96.891867 -52.583265 44.666218 15.087334 -34.406742 26.586078 58.364849 -81.473281 95.744820 2.864596 53.007831 7.777959 29.217426 -35.982871 8.812305 5.929667 -7.629786 -7.327720 23.773881 -42.605477 -27.793450 13.818778 -52.261919 -45.171345 6.930981 42.436086 4.841594 17.638844 -1.138940 -33.208663 -23.994723 -45.622333 12.217493 55.091104 -8.071540 -42.937940 42.212475 28.503410 -16.836582 -10.633797 10.823640 32.474705 60.670815 -85.199932 29.507875 -7.607997 11.039606 -74.625153 -77.539804 20.682902 -52.750374 -41.999896 29.167354 -89.871280 -27.501132 -47.678394 28.155473 -74.639074 -13.114500 14.973654 90.906498 30.488121 -21.695548 45.526294 -23.145426 46.756680 1.623868 -2.462426 15.690718 64.261879 +-81.814072 61.638699 33.299744 -74.148518 179.502952 -34.029533 10.769339 85.476895 -41.453053 105.272657 -85.367989 15.076944 -31.312054 -125.206083 15.674602 -45.729034 -2.125143 76.681668 -21.739586 57.563919 62.454485 -39.070421 24.107924 -38.264185 -40.726822 -110.905363 -15.716249 37.454953 61.411570 -23.102499 20.347172 11.778181 136.928614 -20.950976 96.030830 86.728054 58.008073 118.918996 29.861358 -35.259880 12.334383 59.163452 -53.626680 -120.168828 38.260634 -45.302861 -94.865290 -60.941419 56.362450 -98.378626 11.271071 94.482314 -9.700984 -29.437074 -80.664696 81.625909 78.953585 -7.534977 124.557380 29.753102 -57.858721 -33.198333 -107.395314 93.517652 -74.140503 40.717388 -25.542581 -105.849675 -12.145275 46.948301 11.434885 -61.803801 -64.266537 55.463603 45.827377 -86.830375 30.927439 -39.506268 -55.248667 -82.232166 -78.212677 32.165561 -31.242105 91.810375 -3.062609 30.370346 -6.699163 33.375277 0.094383 -121.721519 -13.149157 114.643983 -52.557345 -0.104405 -65.718531 72.143814 28.729758 -18.794639 -54.966361 -50.826975 33.206054 -6.011781 54.190286 -58.634392 7.598227 -97.062709 27.272969 23.653947 19.224462 72.963643 20.716556 45.079517 41.240236 78.721347 -74.375302 28.163909 -144.964623 35.223901 -31.089793 26.968750 -35.075535 43.275846 35.482751 38.038895 87.817521 -144.496349 95.691028 11.711892 -26.606991 -88.174244 34.108988 -14.305049 -39.753115 -34.523099 74.172121 -9.845414 -22.778331 -19.129177 33.386071 9.266071 -67.048314 -59.167412 -2.950153 101.198129 -113.709673 31.093761 -32.257700 -49.264275 -4.448646 42.448565 65.985440 69.143447 132.961490 97.616077 -15.310587 64.038186 -127.734274 27.167529 137.632460 45.820081 -97.717663 94.099075 -67.558647 -17.371236 38.610185 67.531375 62.598986 62.066567 -82.322699 -80.133975 33.670853 -0.440078 121.618939 49.745678 23.787709 -110.939233 75.164323 -20.964478 -19.948511 161.544185 61.302045 -120.132693 41.992552 79.498767 -89.415982 -59.018217 41.282066 -70.729775 -23.146920 -45.354302 26.578906 70.295242 -76.712662 -81.501948 -7.441593 -97.388843 106.327423 -21.819478 -28.082426 30.131564 -92.092441 -72.530042 129.026374 18.053301 -33.921567 -65.304193 -88.479145 -58.672354 -124.774058 34.702983 36.612463 -42.462750 -60.994095 -94.242845 -21.564702 91.487286 -10.774183 36.306237 -145.025930 -24.461717 65.499780 37.159965 48.215230 -90.874467 -23.208565 -3.160827 -7.122427 33.164314 -24.172174 64.663948 137.841817 -83.346856 73.643353 20.997866 -53.468727 37.402536 91.412900 -104.592983 136.384181 -2.203140 110.550070 6.024281 48.834724 -53.313484 15.303485 8.009367 -23.824055 -13.327566 43.553453 -68.587765 -39.026608 28.508701 -76.590179 -74.349248 20.606691 64.888155 19.483008 22.968638 -2.996600 -47.825848 -33.472412 -48.368944 15.837402 81.883327 -28.356839 -77.480249 48.247797 43.320814 -36.249469 -42.786088 22.092561 48.252504 87.235184 -121.428223 51.659034 -10.999394 11.415917 -116.377703 -111.310025 32.591996 -75.118433 -64.526331 53.830873 -137.228525 -39.272053 -68.492610 49.282373 -106.800528 -22.978932 15.457358 123.459676 36.151852 -26.308072 76.891949 -27.522000 67.579053 -1.189436 -1.797671 17.838284 88.060339 +-17.303940 16.076046 10.262371 -13.485199 33.542966 -2.540479 -0.703082 14.999031 -9.071828 25.110893 -13.252915 -2.252290 -8.803947 -24.076245 0.652877 -13.242066 -2.905348 11.497691 -3.011014 11.181130 12.910677 -12.050353 1.733499 -2.588643 -10.054917 -22.490049 -5.610445 7.046675 17.323408 -8.993136 2.535305 -1.926938 28.469009 -5.146932 22.851718 19.074881 9.444659 20.710607 2.814622 -5.488587 -8.850884 14.701040 -15.854905 -18.232285 6.228201 -10.598871 -16.272811 -10.734832 11.334848 -12.888438 -1.183295 20.936396 -4.910616 -0.855627 -13.383900 18.598853 8.953816 2.484196 30.257967 2.535300 -5.510500 -8.666832 -25.143735 15.574791 -13.040099 4.135369 -7.349899 -17.448805 3.362090 -1.571399 -2.557568 -12.988335 -9.228541 20.317159 7.915451 -22.676245 4.344487 -10.448386 -24.823825 -19.671963 -18.703476 6.009081 -2.834995 18.591067 -0.177887 5.486425 1.699171 13.364643 -7.364757 -31.966673 4.554347 25.508580 -10.076130 -1.386990 -12.031327 16.730238 2.522767 3.290239 -13.575400 -3.295118 6.763280 -1.096860 15.477311 -21.440768 5.133166 -25.326107 5.527232 -2.276918 3.907961 7.032100 12.213800 6.722569 13.911823 24.338592 -24.786440 6.686659 -28.942535 5.464296 -3.802282 6.580200 -5.158659 13.048027 -0.084683 5.783779 22.878310 -34.474760 12.139438 -2.250816 -8.059790 -27.993452 3.128182 -10.002737 -8.335411 -7.722325 12.347529 -3.074602 -7.585326 -12.414824 5.613096 1.223925 -15.290384 -11.804270 7.614368 24.096602 -23.122973 6.070244 -9.382894 -8.512102 -3.092463 12.946055 16.292762 17.665909 30.737068 22.212003 0.798807 11.856113 -26.467934 -3.001044 20.692705 10.720773 -22.629632 22.904934 -15.974779 -5.064735 7.092303 16.500434 15.984813 15.767267 -17.358004 -18.469169 10.913702 6.332655 26.221597 7.882505 6.659176 -11.300001 18.166939 -4.877232 -12.870633 28.353864 15.257592 -20.161534 7.716160 6.009224 -15.764806 -7.832364 14.470758 -17.307692 -0.557473 -7.900165 -0.071927 13.923818 -11.102643 -10.744287 -0.541309 -21.781693 25.967592 -5.561651 2.512660 13.586002 -23.852162 -21.517256 19.142289 0.217634 -9.786262 -14.754296 -17.538350 -17.192574 -19.124164 9.084427 7.034843 -11.519108 -18.064471 -24.044635 0.928685 15.657297 6.065563 12.895698 -27.023983 -8.311352 15.059781 7.096004 15.641602 -12.149644 -3.701001 -3.787802 -0.667228 11.858194 -2.273437 19.872120 32.234866 -13.908863 15.086994 -3.852057 -9.484782 6.837126 14.747665 -26.498061 27.117834 2.246845 19.437569 -2.008908 9.039876 -6.874083 4.161134 6.427178 -4.422414 4.275212 7.610335 -6.554883 -8.383618 -0.112243 -22.816419 -10.753215 -1.129705 5.086744 -1.534931 8.455350 1.204856 -14.992103 -8.408389 -11.532153 2.947002 18.622941 1.069970 -9.905406 13.011050 -2.435299 1.617027 -1.264654 0.858660 5.301100 12.233335 -23.602369 -1.647226 -4.885937 1.388157 -17.262517 -24.099865 -1.675522 -16.175945 -14.163998 13.009657 -24.854844 0.636235 -14.699701 -0.126621 -23.160828 -7.465153 3.381466 27.722897 11.989315 -7.908083 12.569819 -6.745408 16.722140 0.497820 -5.453417 7.863631 17.707397 +-7.932442 7.824931 4.201661 -6.269966 16.031458 -0.927754 2.340813 7.359464 -7.011713 12.303903 -6.560460 0.926198 -2.319496 -11.619216 0.332719 -6.148355 -2.683220 5.167098 -0.499371 7.150484 5.474040 -5.969542 1.482895 -1.887323 -5.487943 -10.097511 -1.518407 3.809985 9.691228 -4.517570 3.126295 -0.598727 12.290627 -2.421134 12.095553 9.324920 3.646830 9.152820 2.312459 -3.895446 -2.849540 5.591580 -7.252483 -9.383094 1.201653 -4.009210 -9.378319 -5.395939 4.699705 -6.887226 -0.718379 9.990274 -2.379632 -0.544046 -6.559064 8.678980 4.894330 -1.369263 13.501990 1.472600 -4.924822 -3.010485 -12.215088 9.684595 -4.329350 2.239545 -3.276557 -9.096903 2.385999 0.838058 -2.123763 -6.068398 -2.909546 10.449980 5.505811 -10.314341 1.585302 -6.043173 -13.153366 -9.204661 -6.952196 3.803633 -0.001436 9.069991 1.154605 4.039615 1.043213 6.309459 -3.430525 -15.930840 1.517894 13.426005 -5.847662 -2.113356 -6.756824 9.191117 1.728762 1.719001 -6.186662 -2.490591 3.810551 0.129835 5.364735 -11.007737 1.933077 -12.313705 0.825110 -0.325250 1.652330 5.221600 3.819699 3.553867 7.363193 12.150307 -9.447692 3.063381 -11.587275 3.314788 -2.990829 3.492265 -3.357509 5.349966 1.450624 4.124532 11.289805 -15.661579 5.669574 -0.099594 -2.304890 -13.744841 0.752104 -5.051949 -3.492200 -3.684919 5.776202 -0.908394 -1.711458 -5.123822 2.077301 1.885549 -6.317437 -6.370461 3.996354 11.426881 -11.050746 3.092325 -2.435319 -3.000682 -2.526615 6.886731 9.674667 8.880584 14.383541 9.934051 0.728552 6.397736 -11.919096 -0.040956 11.993412 4.878783 -10.183978 11.751448 -9.254288 -3.696737 2.305975 7.705572 8.029150 5.430925 -11.599547 -9.733733 7.334446 2.281093 13.122018 3.097216 1.560120 -4.856051 10.538861 -1.970896 -6.717053 13.320739 6.591435 -11.343432 5.248504 4.319126 -7.927178 -4.521292 8.031831 -9.624726 -0.942908 -3.164293 -0.015104 6.122168 -5.299186 -4.887964 0.255129 -10.356594 13.118867 -2.432759 0.315718 4.101109 -8.465428 -9.462304 10.307954 1.230218 -4.399827 -7.880583 -7.584460 -8.933368 -9.598307 3.508314 3.452473 -4.264957 -7.394107 -10.881990 -1.006668 6.971676 1.278365 6.803487 -12.185289 -4.221039 6.029091 3.837831 6.931778 -6.429578 -1.422090 -1.896247 0.089567 4.146195 -2.116564 10.124958 15.483311 -6.581017 8.563097 -0.870534 -5.532745 3.652428 6.848093 -13.102889 13.870005 1.156817 8.811511 0.114519 4.051417 -5.021359 1.520157 2.429264 -1.904502 1.406237 2.901626 -3.276992 -4.060433 -0.330981 -10.041263 -5.769677 -1.072147 3.848395 -0.842485 3.350702 0.688664 -6.182026 -4.491462 -8.258155 1.045241 8.062724 -2.108210 -4.828233 7.425930 0.719457 0.699307 -0.154810 1.099778 4.746364 6.565228 -12.581416 0.942776 -2.318429 1.373455 -10.116802 -11.760089 1.110834 -8.513857 -7.133854 4.608442 -12.066042 -0.079902 -7.955422 0.488819 -12.850882 -3.828456 3.052814 14.853213 4.119677 -4.674984 5.796531 -4.297377 8.380425 0.657976 0.858359 2.588670 8.093237 +-11.226306 10.132578 6.513703 -7.758714 24.465320 -1.907704 3.607325 11.422016 -13.577551 19.128128 -7.212959 1.133118 -4.300269 -17.584952 1.269125 -8.078013 -2.695631 6.087940 0.920729 12.300364 7.840734 -10.763251 2.297665 -0.951230 -7.384927 -16.007453 -1.354930 6.190901 18.635528 -8.429657 3.621035 -0.839597 18.509363 -3.828865 17.827017 13.770075 4.766937 11.616835 4.317371 -13.886548 -6.901387 8.823515 -11.613544 -11.821533 1.040489 -4.555626 -14.573692 -7.325779 7.410597 -7.024052 -6.956557 15.887149 -5.260742 0.220655 -10.328149 14.542366 6.831430 -2.426220 20.441403 1.223092 -3.798440 -7.440476 -18.312355 13.568537 -4.844577 -0.082856 -8.359569 -12.320729 5.447290 -0.939616 -7.861381 -8.301229 -0.667865 18.304993 9.671404 -15.640197 2.470428 -8.471128 -20.559531 -16.967321 -12.715422 5.007222 -1.629244 14.478588 1.978046 6.742034 4.419584 10.343384 -5.982643 -25.397761 5.316208 18.927831 -9.467854 -6.928119 -7.248383 16.287278 3.053043 3.533785 -9.331207 -3.964634 5.061768 -2.582926 8.862572 -18.622494 8.353313 -17.901701 -1.680240 -3.334614 6.480152 10.526616 8.570018 4.407113 11.780779 19.680713 -16.159062 1.263636 -15.935442 4.981703 -5.952931 5.449868 -5.209993 10.265828 3.643427 7.602946 17.994012 -25.927354 5.737908 -0.064265 -0.948159 -20.322867 0.112106 -8.802092 -4.170337 -6.274127 9.429302 -3.363788 -2.677258 -8.489090 4.945754 4.784801 -9.754403 -4.997411 5.935575 19.162356 -20.077146 5.174164 -3.911127 -4.953361 -2.235614 9.943850 15.258445 15.629352 21.206823 15.595589 -0.895469 12.556952 -18.709427 0.418625 17.547907 3.946687 -14.135985 18.944544 -14.952821 -6.615676 2.933562 13.066863 14.681671 6.369192 -17.039277 -14.799865 14.504404 6.205492 19.411371 2.379119 2.160059 -5.949861 15.963066 -3.802722 -11.798893 18.491895 7.660500 -16.188943 9.661324 5.199484 -14.128049 -5.215151 11.502707 -16.077333 0.358987 -6.638857 0.071952 10.736027 -7.559054 -5.107612 0.644039 -14.776849 18.893412 -4.033367 0.015973 8.004419 -10.395658 -12.942876 15.219189 2.572746 -5.779519 -14.420796 -13.892187 -15.727260 -12.858440 5.813079 1.362292 -5.185131 -9.944245 -16.924314 -3.877801 10.678472 5.628847 11.322014 -24.058304 -3.253502 8.644743 8.491617 10.222800 -5.150677 -2.057618 -0.742829 -2.370972 4.377273 -4.093367 16.275361 22.425621 -10.783352 12.026842 -6.592192 -8.843295 7.269933 8.192387 -21.939448 20.734003 3.567605 16.476661 0.068540 5.618599 -8.056022 3.195791 4.280348 -5.361110 2.204448 2.784813 -3.466762 -6.744402 0.449522 -14.074668 -11.709192 -4.844130 4.512859 -2.050389 6.260998 -0.682930 -10.019950 -6.428346 -11.644715 3.431367 11.955305 -3.032907 -4.546539 12.510012 0.757277 4.365895 -1.037202 1.434092 6.246187 8.782883 -19.637714 -0.419078 -4.454238 5.441622 -11.419629 -18.171996 2.102633 -11.071261 -9.665228 9.041594 -18.621678 2.114339 -12.647223 -1.468793 -19.860204 -4.937383 4.416827 22.618122 4.610401 -8.732960 8.174396 -6.776017 10.735042 -0.131023 1.987345 3.141174 10.329905 +-7.547251 5.288349 1.581860 -4.749934 14.977349 -2.556020 0.936505 6.638866 -8.196669 11.872835 -3.974294 -1.524799 -3.647635 -13.533951 1.178842 -4.892163 -0.721708 5.619921 0.771143 7.881763 5.765838 -7.360128 0.854241 -0.339435 -4.149192 -7.619387 -1.737622 4.259067 12.921590 -8.681043 0.884394 0.687000 13.886296 -2.476044 13.745202 10.015680 3.724754 8.129901 4.011362 -10.405210 -4.981971 6.697513 -7.741148 -8.718263 0.883716 -2.799159 -8.185039 -3.701514 5.657872 -1.378408 -3.302484 10.613081 -3.905336 1.022583 -7.774137 8.192507 3.337072 0.603864 14.085411 1.083785 -2.412374 -3.453990 -11.891288 10.255927 -4.838957 0.077230 -5.781029 -7.590473 4.189177 -1.399778 -3.917359 -7.030878 -2.564866 12.759165 6.318884 -10.153601 1.921536 -5.120749 -11.972572 -11.007638 -10.525638 3.123355 -2.365905 9.818483 0.779585 4.165523 2.261580 7.243039 -3.813261 -17.389249 4.085667 11.914173 -6.481896 -2.829509 -4.058223 10.577240 1.696729 2.494419 -6.924087 -3.046788 3.432194 -3.100122 6.359334 -10.039362 8.101905 -10.234662 -1.060688 -3.838158 3.859568 7.232086 8.651070 2.889117 9.202455 13.260361 -8.952395 -2.521489 -10.650019 3.208404 -4.815759 3.164082 -2.505574 8.052254 2.288721 2.737087 12.444435 -17.834185 2.752758 0.059545 0.116435 -13.960612 0.494466 -6.228944 -3.373181 -4.933633 7.289407 -1.859090 -2.201719 -5.854190 2.565739 4.186509 -7.529154 -2.531153 3.973436 11.482562 -11.330086 3.221664 -3.057863 -4.746796 -1.229830 6.006726 9.829565 11.320750 14.438661 11.179880 -1.835682 7.109296 -12.927876 0.083165 10.889207 0.218737 -10.199211 12.909229 -9.876744 -4.538653 2.081609 10.312134 10.666317 2.886184 -9.503764 -8.521369 8.555153 4.592225 12.355997 -1.350806 1.081605 -1.323309 9.244722 1.672678 -8.645804 13.884879 1.399850 -10.484427 7.464603 3.374476 -7.059679 -3.568360 7.985873 -10.913738 0.922934 -5.880449 1.205182 7.527618 -6.469257 -1.966925 0.894317 -9.959147 12.629822 -3.077428 -2.295795 5.972537 -9.362155 -9.020663 11.599628 1.182726 -3.256504 -10.009306 -10.059516 -7.410209 -8.614800 4.278020 0.244959 -3.232693 -6.051547 -10.962798 -2.395882 8.709674 4.297242 8.307097 -15.048388 -1.916696 5.827260 6.422206 7.073956 -3.240512 -1.852593 1.244951 -0.753476 3.000704 -2.634367 9.516079 14.941429 -8.031394 6.117829 -2.202975 -5.664749 5.392264 4.796393 -15.852120 14.104850 2.466105 9.040064 -0.158464 3.395725 -5.716358 1.341374 3.588716 -0.573479 1.080748 0.783050 -1.523760 -4.194959 -0.317957 -8.628405 -7.870515 -3.706289 3.013707 -1.295110 4.700473 -2.072718 -5.651681 -3.909199 -6.285390 2.750577 8.484806 -0.976857 -2.390061 8.766612 -0.075937 3.481640 2.601953 0.875064 3.491425 6.393237 -13.355598 -0.923966 -3.078436 4.511145 -5.984936 -12.644161 0.351413 -6.402736 -3.083652 6.631389 -12.244534 0.799661 -8.361009 -0.904125 -11.359426 -0.537566 2.465391 15.614793 4.812994 -6.028651 5.372243 -4.373125 7.111495 -0.206066 0.124242 2.213575 7.503531 +-145.469901 115.217024 29.560722 -147.670336 293.986468 -73.842262 6.095812 151.149608 -29.413228 184.516683 -159.374432 25.437092 -45.313165 -229.146810 22.173160 -64.950831 3.755481 157.762597 -34.675332 114.160461 114.624176 -68.951798 45.868874 -81.321349 -75.359766 -181.397889 -17.753906 66.136421 65.042833 -32.812444 41.664988 26.425178 242.515284 -10.090058 186.133764 166.316558 74.094705 228.833600 79.863855 -13.054299 29.642042 98.935686 -81.955709 -232.669392 74.101017 -74.002530 -151.521300 -139.928707 92.284614 -193.137364 83.913589 164.991347 -8.243725 -54.000966 -168.859236 103.558510 138.966499 6.138547 219.586121 58.652334 -111.990403 -20.428726 -169.109701 133.818403 -141.825376 53.994035 4.638744 -176.408757 -3.113172 99.260540 62.770623 -116.344547 -123.893877 76.037265 66.585564 -155.940374 59.194204 -71.170021 -89.774348 -134.608064 -118.295751 62.607093 -48.830798 161.332302 -3.849741 59.815643 -57.020690 56.269934 7.560530 -201.802047 -28.857494 179.815164 -78.915036 12.195300 -98.174647 160.188901 67.674118 -50.843349 -91.369739 -76.650335 63.642260 -12.220405 96.191244 -41.866786 -32.243034 -158.703832 73.073849 55.419625 6.033232 112.915647 38.173534 94.641293 81.962655 126.207789 -113.692941 79.864030 -268.381413 65.291972 -46.962292 39.317612 -52.546284 62.756534 63.208540 57.046347 140.155821 -233.801056 185.717255 41.567132 -38.676786 -153.826718 74.278568 -12.415835 -65.463522 -64.395025 131.942358 -10.706076 -29.970420 -25.520090 43.374617 3.129924 -109.004125 -113.622489 -8.926819 184.638408 -157.081657 61.357791 -54.530364 -90.186332 -6.731826 58.732114 101.329145 104.912457 240.046720 161.575885 -28.788726 61.273944 -212.720770 35.208299 251.206980 95.338197 -165.736723 163.877025 -79.053321 -34.121560 63.104562 115.959964 107.572453 87.241211 -146.670996 -148.670037 33.517446 -19.945356 208.191462 83.693342 43.517045 -187.585186 143.054770 -5.643341 -19.260555 294.643698 103.323947 -200.130632 48.682016 154.755015 -160.745187 -109.875688 72.406336 -91.042165 -38.552978 -64.423909 59.361304 104.614622 -139.240940 -160.544446 -31.262248 -174.453326 177.316457 -36.173897 -36.866214 34.028670 -173.140451 -80.225749 240.031089 34.174822 -64.797814 -88.516676 -148.978318 -79.193417 -233.471654 55.249460 72.984819 -70.879956 -84.367074 -152.283346 -31.264358 152.834177 -39.184129 39.509072 -199.844224 -56.713631 122.812361 36.283156 56.817629 -182.730507 -40.312516 8.303177 14.892566 65.069426 -19.284355 112.959621 243.241576 -136.557870 101.721432 94.214287 -30.965715 82.959259 174.128163 -187.100613 247.656520 -27.791121 175.265026 22.527845 82.607490 -80.311362 19.361905 8.484013 -25.747833 -25.965756 82.139662 -133.284414 -68.581273 64.583218 -116.539959 -113.206747 48.913864 127.837796 34.707619 37.848049 9.843191 -83.702659 -55.915318 -99.756076 32.765967 141.466110 -31.109079 -147.109891 80.658542 106.152429 -62.488244 -70.510512 37.175238 90.596646 164.205836 -213.978218 114.764301 -16.116495 10.433154 -194.971365 -179.410634 87.215161 -130.575384 -109.697018 80.511450 -244.657952 -85.653076 -115.004209 106.316682 -179.645221 -12.612595 18.855046 212.413086 76.960656 -41.514998 124.665433 -57.736840 112.938320 3.644901 -7.016807 23.522767 186.281455 +-7.506239 6.935596 1.694413 -6.196704 17.201847 -3.583679 2.810972 7.341445 -5.837878 12.154930 -6.039326 -1.113693 -2.762140 -14.546338 0.953887 -5.394211 -1.813791 7.192955 -0.019084 7.496806 5.443626 -6.835010 1.435316 -1.969865 -4.569932 -10.687175 -1.364996 3.912082 9.948590 -5.995146 2.077860 0.183382 14.253115 -1.639001 12.161723 9.439810 2.989566 9.184150 4.367803 -5.722603 -2.664023 5.591061 -6.635514 -9.377864 1.096303 -2.797234 -9.618912 -5.917073 4.586046 -6.295977 0.335409 10.126217 -2.512984 -0.657739 -7.834545 8.008724 5.790445 -0.217380 12.602713 1.684156 -2.861083 -2.469115 -12.139441 9.961376 -4.823680 0.300689 -2.358207 -8.480205 2.894785 1.152040 -1.170482 -6.577980 -3.455671 10.175738 6.891435 -9.907665 1.455449 -5.454769 -13.770543 -10.192290 -8.837472 3.587777 -2.339313 9.826595 1.252951 3.960921 0.658219 5.673722 -2.653439 -15.404008 1.507356 13.434887 -4.663443 -3.056195 -6.602073 10.518547 3.323060 0.866778 -6.166698 -4.540979 3.308804 -1.497833 5.621693 -8.775330 2.282575 -11.581147 0.306975 -0.481819 1.630780 7.208933 6.200144 3.033903 6.234077 11.407826 -10.368864 0.655807 -12.573246 3.639107 -2.939169 3.200141 -2.915243 5.179406 1.545126 4.022955 10.302271 -17.508884 5.448694 0.747700 -1.223993 -12.921770 0.634481 -4.300442 -3.122039 -3.886797 6.054770 -1.115786 -1.429370 -4.058068 1.943671 2.643312 -6.440336 -4.961259 3.341565 13.897546 -12.135160 3.413047 -2.502237 -3.642163 -2.139883 5.633291 9.202208 8.747879 13.633271 9.992604 -0.316158 5.810649 -13.162026 0.397809 12.577198 3.374434 -9.368618 11.856247 -8.131468 -3.628314 1.640084 9.590153 8.309629 2.366413 -10.655177 -8.619481 7.284457 1.832899 12.313069 1.085620 0.550733 -5.495442 10.412402 0.688908 -6.892985 14.672934 6.179165 -9.845156 5.046885 5.045083 -9.500922 -5.012196 7.199900 -9.162598 -0.152231 -4.330977 1.432705 6.047549 -5.132935 -4.266532 -0.691210 -9.752765 11.940097 -2.500096 -1.833672 4.129812 -7.777070 -8.627536 12.397790 0.505658 -3.619934 -8.007354 -9.869249 -8.575314 -9.522881 3.682749 1.968903 -4.246292 -6.233329 -10.110544 -1.596041 9.530101 1.238238 6.541609 -13.363352 -3.066712 5.688636 5.401481 6.662750 -6.954899 -1.565197 0.021658 0.642515 2.776920 -1.102441 8.912895 15.668364 -6.896619 6.397346 0.242637 -3.957350 4.875522 6.600694 -13.574898 13.513761 0.861054 10.106212 0.181687 3.773935 -4.363211 1.336017 2.868392 -1.381046 0.666368 2.377810 -3.545725 -3.954062 0.730483 -9.176083 -8.386150 -1.007218 4.246796 -0.051397 3.390828 -1.117336 -5.962868 -3.292261 -7.172314 1.849980 7.830312 -0.257119 -3.593104 7.104162 1.969981 1.567447 0.555593 1.014333 4.330810 6.553395 -12.399934 1.753734 -2.678700 3.750363 -8.093052 -13.941132 2.669299 -8.452268 -6.639180 5.201584 -13.952957 -1.473330 -7.995100 0.938308 -14.775902 -1.361762 2.763588 14.460565 3.763521 -4.263500 5.414500 -4.174272 7.150924 -0.425086 0.565014 3.246275 8.292707 +-5.873724 4.956627 1.908453 -4.598255 13.594979 -2.274076 1.541376 5.210426 -5.062113 9.983966 -3.872433 -1.372173 -2.593625 -11.190882 0.925003 -4.451231 -1.272895 4.922554 0.234999 6.158435 4.281182 -5.651927 1.197163 -0.435238 -3.666380 -8.205326 -1.431484 3.759611 9.395557 -5.919292 1.142102 0.171998 11.196815 -2.174502 10.056351 7.623620 2.662992 6.830791 2.449262 -6.757157 -2.704948 4.650487 -5.836829 -7.014509 0.672598 -1.866641 -7.859352 -4.659911 4.394882 -2.970936 -1.630023 8.580319 -2.723406 -0.159436 -6.419533 7.193401 3.612960 -0.027113 10.778294 0.982986 -1.637056 -1.742240 -10.480517 7.459725 -3.743191 0.096513 -4.146039 -6.716979 2.453316 0.068462 -2.361814 -5.407998 -1.703920 9.229834 5.706905 -8.119227 1.263998 -4.436020 -9.910431 -9.161508 -8.121256 2.913657 -2.182372 7.893394 0.944544 3.486129 1.922962 5.241717 -2.994681 -13.143878 2.480727 10.028449 -4.446814 -3.173799 -3.679985 8.525300 2.059429 1.005440 -5.186429 -2.952141 2.549259 -2.241093 4.995832 -7.565553 4.769183 -9.071041 -0.711441 -1.422550 2.973979 5.284580 6.050012 1.764019 5.947886 9.842530 -8.517351 -0.184538 -9.526345 2.727693 -3.106350 2.674530 -2.539796 5.550813 1.796444 3.619701 9.134653 -14.393495 3.370936 -0.122552 -0.572846 -10.269207 0.286568 -3.786141 -2.418388 -3.390596 5.226716 -1.538186 -1.527925 -3.778849 2.326913 2.885260 -5.204837 -1.604498 2.984423 9.847029 -9.702503 2.942478 -2.092335 -3.429968 -1.060410 4.820966 8.147042 8.316085 11.669821 8.667015 -0.785821 4.852809 -10.689865 0.365046 9.308167 0.280156 -7.443699 10.201489 -7.289623 -3.276815 1.377934 8.176663 7.630611 2.513767 -7.988607 -7.018217 6.033716 3.059810 10.047054 0.194341 0.495889 -2.799717 7.846717 -0.233454 -6.143098 11.390506 3.505405 -8.129650 4.856615 3.445840 -7.491991 -3.780408 6.166169 -8.186466 0.255832 -3.979889 1.273803 5.786679 -4.235130 -2.328341 0.093534 -7.619451 9.551333 -2.596011 -1.664596 4.613473 -6.271508 -7.147406 9.418051 0.503602 -2.566600 -7.361620 -8.165409 -6.236932 -7.168169 3.224385 0.689320 -2.844377 -4.746598 -8.469196 -1.629905 7.524178 2.587585 6.120757 -11.485653 -1.673260 4.752651 4.803672 5.552152 -3.392873 -0.988765 0.679449 -0.667615 1.659000 -1.669297 7.436665 12.142662 -6.132832 5.239483 -1.622075 -4.180352 4.168529 4.510435 -11.873863 11.447718 1.928119 7.733577 -0.076820 2.615929 -3.724901 1.443879 2.615450 -1.662650 0.772866 1.150913 -2.007876 -3.535070 0.248740 -7.516488 -6.834674 -2.168067 3.280785 -0.870466 3.529644 -1.028599 -4.964873 -2.884132 -5.314049 2.110209 6.308967 -0.596460 -2.078501 6.772306 1.179000 2.164365 0.504016 0.649412 3.289156 5.204722 -10.464884 0.421231 -2.326004 3.710984 -5.498769 -10.592563 1.294536 -6.161476 -4.166726 4.798640 -10.146758 -0.213952 -6.773641 0.033153 -10.252663 -1.452856 2.432364 12.092656 3.602467 -4.362124 4.260262 -3.558296 5.346605 -0.486671 -0.133649 2.481621 6.043573 +-4.223267 3.242262 1.303210 -3.628906 9.688412 -1.468349 0.543249 3.651383 -2.466375 6.905522 -3.044897 -1.411925 -1.612640 -7.467597 0.691583 -3.579772 -1.307151 3.648264 -0.385778 4.041601 2.997293 -3.157470 0.764873 -0.482630 -2.754288 -5.359981 -1.685284 2.772836 5.360888 -4.183400 1.440679 0.210802 7.764202 -1.865457 6.709869 5.498277 1.922239 4.847352 0.996520 -2.590740 -1.064410 3.086431 -4.094999 -4.423258 0.387086 -1.302231 -5.803670 -2.643201 3.037790 -2.571486 -0.820050 6.040827 -1.624673 -0.252508 -3.980488 5.373788 1.832685 0.039800 7.364315 1.016995 -2.113245 -0.296389 -7.635749 6.125048 -2.975108 1.321111 -3.064471 -5.484384 0.900053 0.587016 -0.957453 -3.907412 -1.983167 5.970610 3.503754 -5.684820 1.112282 -3.222925 -5.767346 -5.729603 -5.270163 2.561567 -0.717546 5.173724 0.621120 2.322213 1.398318 3.630735 -2.172971 -8.899270 1.254258 6.783421 -3.553910 -1.818973 -3.109302 4.780200 1.380242 0.585846 -3.311446 -2.022058 1.968979 -1.346998 3.412645 -4.473876 2.952460 -5.968285 -0.490512 -0.137597 1.916923 3.201569 3.579627 1.748422 4.043267 6.543751 -5.267442 -0.032671 -6.409598 2.069951 -2.562057 1.871481 -1.988988 3.535829 1.544186 2.706696 6.375815 -9.356476 2.593528 -0.436089 -1.112621 -6.763220 0.354994 -2.442047 -2.065775 -2.339988 3.573366 -0.747148 -1.110268 -2.313943 1.744446 1.826901 -3.099022 -0.969188 1.846496 5.577705 -5.880339 1.948396 -1.362021 -2.157373 -0.904580 3.720135 5.774020 5.700235 8.446106 5.717196 -0.206701 2.176425 -7.448106 0.297494 6.518681 0.534767 -5.267232 7.092755 -5.001945 -2.095715 0.976537 5.584302 4.695700 2.493874 -5.096974 -4.660267 3.174912 1.858009 7.330848 0.387128 0.109694 -2.211077 4.678245 -0.676791 -3.860458 8.297350 3.287190 -5.878305 2.850736 2.796229 -4.886905 -3.337808 4.684326 -5.419447 -0.300046 -2.328518 0.750482 4.058763 -2.967848 -2.082558 0.558888 -5.474693 6.616092 -1.861289 -1.337531 3.250698 -4.948789 -5.962835 6.345460 0.686615 -1.840939 -4.882617 -5.260490 -3.482108 -5.323485 2.244237 1.275049 -1.813717 -3.275019 -5.788546 -0.878599 5.078490 1.162296 4.328718 -7.256728 -1.426683 3.434563 2.150693 4.023869 -2.205876 -0.614643 -0.143017 -0.566838 1.173697 -1.430804 4.458500 8.325284 -4.167320 4.088084 -0.067819 -3.424016 2.072122 3.404722 -7.874318 8.333283 1.400348 4.483222 0.106846 1.926658 -2.815414 0.871110 1.786506 -1.146995 0.355217 0.940930 -1.594297 -2.413592 -0.001276 -5.411882 -4.127916 -1.020894 2.437074 -0.697786 2.297897 -0.262904 -3.700934 -2.168933 -3.078730 1.420936 4.466368 -0.351269 -1.761943 4.835224 1.012424 0.692214 -0.230013 0.480994 2.418674 4.069372 -7.453061 0.727905 -1.179225 2.334148 -4.873573 -6.774206 0.427018 -4.543369 -3.052527 2.533417 -6.606916 -0.670278 -4.665389 0.392300 -5.794061 -1.662650 2.149559 8.428122 2.796370 -3.560462 3.140173 -2.503440 4.015392 -0.019312 -0.557088 1.612529 4.098131 +-17.182428 10.305065 3.290515 -14.019737 39.311051 -8.284078 2.926592 12.244332 -10.662108 27.736257 -10.731632 -5.105578 -8.602839 -34.205135 4.266592 -12.105693 -0.330032 15.345747 0.611810 18.115745 13.548035 -16.868229 4.451396 -2.466826 -9.252845 -26.482254 -4.797660 11.647264 26.048283 -18.272436 4.468401 2.058078 33.669161 -6.176618 28.124284 22.980128 10.334381 21.179841 8.103018 -21.205067 -5.882370 14.763094 -16.474834 -22.278684 4.035787 -4.909591 -23.334943 -13.100913 13.714014 -8.267759 -8.314395 26.000542 -7.852180 -1.176607 -21.258680 19.364934 13.500926 0.575914 30.987936 3.680030 -3.083148 -5.047365 -28.540254 21.127527 -14.269385 -1.100160 -12.707161 -20.835204 5.262595 2.179669 -7.780178 -14.264078 -7.936748 24.183277 17.376742 -23.621170 4.824169 -11.581026 -21.823371 -27.373126 -24.464402 8.119932 -7.843327 24.055646 2.702282 10.014647 7.490148 13.822205 -5.882522 -36.540592 6.463428 25.284725 -13.759754 -8.389262 -6.197709 24.862018 7.778546 0.664810 -15.142789 -10.888928 6.220634 -9.594566 15.618208 -13.651441 14.041750 -22.984624 -3.630173 -5.696798 10.121167 17.187029 17.566446 4.736816 15.210068 25.181279 -24.429268 -3.344999 -26.561799 8.503363 -10.270385 7.947236 -7.976664 16.783199 8.770573 9.778491 26.114729 -40.214913 10.635209 0.591599 0.056534 -25.854210 2.439747 -9.352706 -7.328539 -10.135604 17.487124 -5.874112 -4.093551 -9.238920 8.261457 9.405982 -13.626227 -0.964072 5.477631 27.287627 -27.627374 9.418200 -6.979273 -12.894857 -1.302013 11.106053 21.090125 24.732471 33.718853 27.004557 -6.147675 18.673904 -31.355432 3.099044 29.477413 0.370945 -21.659486 28.397748 -21.060770 -8.460339 5.625588 24.008513 23.304999 5.088084 -20.205361 -16.863970 16.605155 8.539863 29.246878 -2.192910 2.081215 -13.867632 19.165446 3.988717 -14.043237 35.641319 7.102701 -26.141675 17.657555 13.397606 -24.381129 -11.101638 14.873797 -22.037118 0.508976 -15.265616 7.199946 18.261454 -14.699683 -7.706752 -0.643369 -22.342603 24.706197 -7.532475 -7.218368 15.760593 -18.871071 -21.486761 29.448822 1.670328 -5.932749 -22.902210 -25.432393 -13.212944 -23.907977 10.022139 -0.806541 -9.292883 -11.101781 -24.872496 -6.140116 24.609309 7.396024 16.627571 -37.876430 -1.161327 13.973032 16.153505 13.925363 -9.232097 -3.769449 5.526876 -2.781591 2.407299 -5.781707 17.389867 33.104608 -20.884766 11.455336 -7.323461 -14.838446 14.472191 13.523494 -34.140988 34.386104 5.168295 25.411391 -0.030643 8.452658 -12.448028 5.050610 6.931153 -5.784726 0.039135 2.837723 -8.738696 -11.049255 6.399687 -18.035489 -22.681812 -5.515375 11.719076 0.028588 10.330103 -4.296505 -13.765945 -6.529970 -10.481425 8.174958 19.226210 -0.733555 -7.533033 18.714007 7.257809 5.398394 -3.624200 2.469990 9.194063 16.978591 -32.019580 3.780895 -6.569527 11.977199 -14.929442 -31.855080 6.982449 -17.485563 -8.620460 16.098790 -31.279025 -1.538237 -19.999345 2.469925 -26.241992 -0.719723 5.067151 33.870283 10.403589 -12.434042 14.103070 -9.706773 13.676080 -3.539901 -0.495231 6.696495 17.609819 +-35.923458 21.790964 -2.077786 -32.561335 74.762161 -20.623964 1.164629 36.927460 -4.552826 46.648024 -35.747033 3.966897 -10.910353 -55.034991 6.218180 -9.171932 4.064127 38.616721 -10.192958 20.768075 26.942618 -13.617582 11.637219 -16.789515 -17.819427 -46.236568 -4.883224 17.584449 18.876020 -14.151631 2.359329 8.190995 61.529883 -7.705013 45.176173 40.677733 24.443181 51.217785 19.255027 -6.877700 9.154455 23.642879 -20.778888 -53.241100 15.537856 -16.198398 -40.656819 -29.861836 25.297269 -42.205453 20.747875 40.676202 -2.811128 -10.537440 -38.334499 30.593483 32.880107 -2.752669 55.205101 13.431672 -27.257056 -5.261561 -39.301564 44.610721 -36.071027 12.046028 -5.144377 -47.523728 -6.090191 24.741144 12.098441 -30.369488 -30.875152 20.562647 17.762794 -39.615182 13.612765 -15.164829 -9.047439 -38.118547 -33.955326 15.803466 -14.078698 39.316302 0.295755 14.499150 -10.402833 13.624980 1.235923 -51.235020 -4.621554 43.910373 -22.931205 5.432413 -24.303698 31.650218 15.522248 -11.987962 -21.436514 -24.272650 12.718354 -6.558713 24.176905 -9.899851 2.355875 -33.335111 12.493787 9.654923 6.294136 27.669645 11.338463 18.068738 19.108972 31.934434 -23.950922 10.824996 -64.317663 18.832634 -11.198410 8.844228 -13.056404 15.802796 21.549756 14.001800 37.350636 -59.552184 41.959340 6.470981 -9.200499 -37.635281 15.188938 -2.736028 -16.446711 -15.544535 33.764001 -5.862594 -7.316301 -7.268699 15.995849 3.348006 -30.412401 -21.106341 -3.834290 39.736460 -41.599410 15.513856 -13.406618 -22.710625 -1.527265 15.859711 26.175828 29.482082 59.507511 41.999914 -8.640059 20.495361 -55.847577 10.182074 59.045685 21.438584 -40.481516 41.538848 -26.583267 -8.098179 17.686050 32.107495 25.105265 19.027471 -29.461365 -27.538606 11.034005 0.382402 52.286406 12.945446 10.220054 -43.785917 26.901149 0.907851 -5.104319 74.716063 26.024954 -54.071787 19.412229 37.960764 -33.356239 -24.645241 19.251145 -28.532313 -12.515329 -20.360622 16.480638 29.370408 -35.145470 -32.640559 -1.863185 -41.091525 42.782871 -9.472165 -15.541616 15.443703 -45.090735 -16.388205 58.528412 8.247489 -11.126293 -23.622767 -39.590257 -20.065278 -56.957345 13.121270 15.181372 -17.743276 -18.528314 -39.335074 -9.581023 42.639292 -4.691053 14.891355 -57.089645 -7.168575 30.783848 12.306688 14.391061 -40.472341 -9.125770 3.592268 1.284163 11.964152 -10.666505 23.532418 55.612341 -36.188884 23.962709 17.602833 -13.819745 19.488249 37.201983 -47.531379 60.287003 -0.984775 38.602180 7.273893 19.922694 -22.384768 6.582220 -0.028645 -2.915625 -9.587136 18.278989 -33.688650 -18.206045 17.304855 -28.523628 -32.652312 8.071194 32.052548 9.561474 9.606478 -4.284408 -19.935455 -12.827677 -24.324173 9.915767 33.881898 -7.170024 -33.079794 23.412625 24.595676 -17.076391 -15.579413 8.845212 21.280949 40.795770 -53.354010 24.878040 -2.299507 8.456856 -47.780278 -47.063641 17.144993 -30.589471 -24.120603 19.898373 -61.464201 -23.766242 -28.067476 24.264632 -44.620447 -1.943893 5.992746 54.939450 17.335063 -10.315089 32.492721 -12.582934 24.934765 -1.196328 -1.732898 6.984216 41.846599 +-7.200920 7.446225 3.855020 -4.914482 15.197386 -0.544190 -0.596904 5.960371 -6.452096 12.847248 -4.998883 -1.429469 -3.556318 -12.442280 0.421983 -6.375425 -2.444903 4.175110 0.498414 7.607113 5.167430 -7.393779 1.117135 -0.611990 -4.798835 -10.626310 -2.221891 3.852054 13.118121 -7.896609 0.782750 -0.558951 13.253217 -2.531475 11.808061 9.218905 4.136325 8.746357 2.515150 -7.073385 -4.870293 6.108831 -8.011085 -6.616489 1.200222 -3.928082 -8.296249 -3.809944 5.307905 -1.096929 -2.356640 10.599429 -3.401382 0.456675 -7.689655 9.143633 3.139486 1.079513 14.488852 0.678724 -0.746437 -3.989059 -13.667996 7.919045 -4.982651 0.768412 -5.936039 -6.408779 3.605849 -1.813946 -2.533142 -7.367789 -1.597043 12.894795 6.073046 -10.463037 1.241676 -5.846786 -14.463681 -11.621310 -10.196412 3.519424 -1.220351 9.226508 1.318298 4.460581 2.284811 8.020780 -4.128647 -17.413813 3.756394 12.012351 -5.855248 -3.452984 -4.505681 11.051879 1.084112 2.940818 -6.630335 -1.629303 3.522453 -1.643516 6.002742 -12.684601 7.246672 -12.994686 0.965490 -2.895216 2.682901 3.758743 7.543656 1.829576 8.765076 13.807680 -11.246002 -1.558909 -11.692831 1.460001 -2.415887 3.204306 -2.847848 7.594268 -0.770371 4.018755 12.274879 -18.438374 3.271171 -1.023523 -2.028486 -14.228817 -0.134980 -6.152104 -3.050794 -4.065088 5.951944 -1.480768 -1.964943 -5.806919 2.644384 3.050379 -6.825006 -3.485196 5.307663 13.641491 -11.366038 3.254737 -2.541034 -4.218088 -2.077349 6.332361 10.659390 10.414063 14.805110 10.518233 -0.418927 6.745359 -12.118717 -0.700931 10.279009 1.950571 -10.021230 13.043659 -9.192707 -4.212804 1.533803 9.822704 9.765511 3.889247 -10.768251 -10.612805 7.445961 4.151165 12.339075 -0.242883 0.958745 -0.158558 11.140792 -0.598268 -9.459201 12.982386 3.738260 -8.550872 4.993064 2.968050 -7.486214 -4.083710 8.700406 -10.246505 1.802827 -4.397784 0.152428 6.524442 -4.749962 -2.454878 0.361312 -9.709910 13.355194 -2.684988 0.015957 6.594822 -8.343525 -11.241642 9.509294 -1.034300 -3.849566 -9.667395 -9.344041 -8.167595 -7.934887 4.132534 1.037129 -4.271764 -6.651177 -11.083394 -1.047599 8.270351 3.749379 7.756269 -15.056337 -4.262972 5.295640 5.037089 8.280954 -1.895864 -1.174937 0.094850 -0.609974 3.420732 -2.258299 11.212145 16.572113 -7.084186 7.137598 -5.098743 -5.292345 4.396397 5.732886 -15.235808 13.536650 2.376121 8.430238 -0.654656 3.483476 -4.800435 1.756043 4.240952 -1.525863 2.552965 0.697461 -1.048952 -4.316209 -1.445459 -10.049582 -6.671579 -3.367254 2.382960 -2.552261 4.220384 -0.340269 -5.495337 -3.826941 -6.249573 1.946364 7.833444 -0.132425 -1.197829 8.489819 -0.320439 3.896748 3.635968 0.738366 3.112401 5.931059 -12.742128 -1.615151 -3.326815 3.275981 -6.253202 -13.094430 -1.112192 -6.796367 -4.749108 6.730111 -12.596764 0.879304 -8.338439 -1.206878 -11.195270 -1.751996 3.203313 15.186703 5.856476 -6.502167 4.769977 -4.643544 7.500769 0.068743 -0.730421 2.943347 7.188564 +-10.946433 12.314241 6.162669 -7.724179 20.514273 -0.310531 -0.342564 7.933138 -9.390230 19.842089 -7.663379 -1.469306 -4.648113 -17.499449 -0.159438 -10.532784 -5.601580 4.862967 1.059057 11.652115 7.547177 -11.818419 1.079013 -0.309400 -8.273440 -16.738211 -2.854460 5.886032 19.425250 -12.932705 2.773014 -1.817401 18.637421 -4.310158 17.667962 14.260164 5.983905 12.496596 3.370331 -7.304235 -8.950544 8.959786 -12.826891 -8.565897 0.282708 -5.167405 -12.429018 -4.512107 7.131986 -1.431569 -2.594374 16.243654 -5.845912 0.995105 -10.948387 14.745961 3.095396 0.719634 22.198275 0.537927 -1.598591 -5.775435 -21.015027 15.076964 -6.524038 1.352340 -7.707202 -8.993333 7.263174 -4.254368 -4.780141 -9.060266 -2.079879 20.712216 9.138513 -17.073531 0.957519 -10.629156 -26.472234 -16.339057 -13.672594 6.140250 1.772387 13.567998 2.991580 7.264131 3.559451 13.555176 -8.177830 -27.238865 6.391815 19.109773 -9.328771 -5.790670 -8.722521 17.633081 1.265484 5.156818 -9.710155 -1.507658 5.885530 -1.775995 8.875708 -21.346818 8.815729 -21.406999 1.458775 -4.440091 3.260745 3.536446 10.187791 2.769807 14.049078 22.202370 -16.915577 -1.579282 -16.508196 1.963399 -1.409348 5.171700 -4.271006 10.643930 -2.857424 6.018509 19.446275 -26.370948 3.940370 -2.347738 -4.087426 -23.024551 -1.764870 -10.450173 -4.436054 -6.341282 8.014932 -1.587559 -2.551176 -9.916206 3.616200 4.736595 -9.254725 -6.567626 9.951306 20.403888 -15.483383 4.749336 -3.495572 -4.716294 -4.452994 11.448765 16.698446 15.990816 23.047995 15.240529 2.101698 9.836784 -17.716125 -2.823830 14.961517 5.724471 -15.636714 20.182233 -15.438420 -7.120341 1.213335 15.493259 14.691560 5.791359 -17.964222 -16.803615 13.053097 6.367592 19.466461 -1.116344 0.690232 2.211291 18.355927 -0.326608 -15.298961 18.183583 8.318378 -12.506440 7.061616 3.026820 -9.987251 -6.423103 15.418026 -15.505678 3.232698 -4.810579 -1.442279 9.322655 -5.566892 -2.621938 0.822548 -15.311021 21.119445 -4.237408 2.551003 10.157386 -12.784349 -19.745304 11.830682 -2.014795 -6.806528 -15.107845 -12.814432 -14.544746 -10.931861 6.256765 2.482140 -6.299236 -11.039154 -17.529982 -0.623195 10.544116 5.780330 13.114638 -20.478765 -9.023741 8.221589 6.860675 13.247411 -1.473615 -1.385612 -1.285627 0.367694 6.256690 -3.004660 17.948498 25.509221 -9.281407 12.253996 -7.974165 -8.541834 5.736377 8.754798 -22.981224 20.904801 4.037563 8.605465 -1.038466 4.648671 -7.569801 2.459692 7.190217 -2.044574 5.364320 0.148875 -0.043562 -6.453429 -4.550144 -16.620815 -7.997541 -5.804081 2.472129 -4.900076 6.861034 1.009666 -8.298438 -7.239624 -11.442076 2.301372 11.887388 0.827358 -0.218879 14.004645 -2.304609 7.075922 8.056845 0.716656 5.190218 8.364186 -19.439716 -3.578894 -5.324293 4.237175 -10.316716 -19.953574 -2.669984 -11.238705 -8.815572 8.809577 -18.302897 2.781529 -12.934959 -3.532622 -17.260559 -3.447317 5.648629 23.305852 8.940131 -10.799549 6.625325 -7.868808 12.661337 0.740210 -0.733501 4.948164 10.905522 +-14.902986 14.724833 7.100884 -11.233890 29.060562 -1.819518 1.886582 8.798194 -13.718670 22.772142 -13.004135 -1.984014 -6.784995 -26.178209 0.770517 -13.292165 -5.144821 8.003475 -0.225939 13.809586 11.341015 -15.167610 2.544643 -3.532746 -8.921191 -17.918323 -3.133848 6.723017 24.221190 -14.652503 4.687469 -1.819443 23.145624 -4.907190 22.028108 17.201861 7.519799 19.056364 3.203011 -11.421028 -8.256835 12.913827 -14.339472 -18.974243 2.783043 -7.478830 -14.852145 -7.598812 10.248449 -5.982668 -4.415586 19.852505 -5.818016 -1.429065 -16.207305 17.571115 10.315094 2.822311 28.074278 2.194960 -4.366062 -6.361361 -26.663867 16.026910 -10.076009 4.858994 -7.271662 -13.569947 5.459536 -1.998348 -9.840645 -12.702231 -5.992365 22.450095 11.392823 -19.883382 2.044185 -12.112743 -31.901092 -17.455653 -17.559233 5.833224 -0.564738 17.977892 2.078043 7.798886 7.291848 14.058680 -6.157874 -32.414822 4.251097 24.137029 -10.855176 -4.998704 -7.628268 21.552971 0.849406 3.806979 -13.485002 -1.751747 6.719332 -0.466257 11.233300 -25.753286 6.864986 -28.076348 4.242885 -4.623585 2.176394 7.097893 16.310121 3.444380 13.152121 25.453521 -20.539228 0.123704 -24.614534 2.084196 -4.166694 7.643122 -5.585461 12.745107 -1.577081 5.297473 22.347371 -33.930788 10.342053 -0.952451 -3.222777 -28.696595 1.231910 -10.822937 -6.623661 -6.787122 11.646663 -2.201330 -4.001783 -9.950183 4.175183 5.571777 -14.731761 -8.831632 9.444959 25.062194 -21.499868 5.727356 -5.624718 -8.043127 -4.450050 11.214051 18.526415 17.631755 29.596434 20.021336 -0.147305 16.275746 -22.282949 -0.016368 22.640975 5.133778 -20.684716 22.227926 -18.804973 -6.016100 3.632937 15.341702 18.810708 11.403469 -22.138976 -18.383418 19.287388 4.803117 23.163315 0.381291 4.056510 -4.933741 23.888336 1.316296 -15.247389 28.910732 8.248203 -21.624124 15.273021 7.045567 -14.697357 -7.075559 15.355985 -17.670856 3.487725 -8.429738 -0.135849 11.412779 -11.151910 -7.776300 -2.247893 -19.717533 26.622170 -4.690970 0.985350 11.341334 -17.251384 -21.280066 19.128929 0.682996 -9.138660 -18.551906 -16.534463 -19.408460 -16.772276 8.485757 4.192688 -9.664909 -14.557791 -21.134477 -1.274271 16.623595 4.338010 13.613174 -25.281994 -9.289314 10.274579 12.300047 16.446433 -4.899354 -3.388605 -0.392804 0.060485 8.703715 -2.139312 20.287817 33.080900 -14.263024 18.112908 -6.712614 -11.759639 8.448284 14.734815 -26.687729 25.947653 2.451564 18.063982 -2.455468 7.865602 -10.441521 3.596194 7.970786 -4.853475 5.689389 2.099404 -3.702108 -7.988779 -2.139004 -19.935208 -11.607510 -3.108300 5.766351 -0.123813 7.372813 0.367313 -8.668134 -8.101840 -11.635870 2.129944 16.292019 -1.147567 -7.823416 12.818922 -0.127741 4.978732 4.797618 2.809227 6.617103 12.776575 -24.012921 -0.523513 -6.324984 2.190332 -15.392017 -22.994929 -0.439791 -13.909327 -9.254771 12.486041 -23.606265 3.389173 -15.188097 0.011236 -23.471744 -3.915584 2.357701 27.469013 10.994709 -8.805910 11.361310 -7.627473 15.935800 0.754762 -0.939899 5.676091 15.768860 +-104.598357 11.192811 -53.485395 -129.288249 265.938477 -47.516007 -39.828460 145.275714 16.804150 149.419944 -76.688570 -23.365906 -35.612508 -197.101842 19.900464 -22.099352 9.599271 91.717461 -65.199858 80.968365 80.969568 -31.049424 66.015553 -16.447047 -75.165293 -87.338971 -23.653567 86.930638 63.082130 -79.450485 11.796353 12.549109 194.782546 -31.376590 151.721725 92.290362 109.845700 148.936327 45.422808 -47.540644 34.449573 50.940653 -68.857634 -148.540635 48.344591 -47.244331 -184.688308 -74.048857 92.683128 -128.216477 32.914827 161.170547 -6.977765 -36.384272 -111.581186 98.633081 49.237990 -34.847263 175.506071 41.070038 -118.667861 -60.540075 -145.931627 115.058815 -97.486003 57.316536 -44.042448 -131.289088 -53.718026 97.906526 4.167247 -122.370112 -98.348149 74.808693 100.240304 -119.396691 65.272947 -53.207460 64.900272 -130.910583 -93.631172 75.862784 -49.364740 115.126583 8.149086 81.506628 23.585529 51.926695 -43.597564 -192.953108 40.567635 130.707370 -104.315051 -6.796410 -98.579814 99.306019 -23.997290 -38.896263 -119.601177 -84.699469 46.755404 -26.795706 82.493608 -48.919014 58.097053 -123.491253 33.754679 36.278926 60.310765 77.043645 67.491333 20.357739 61.510540 130.297651 -81.507305 42.144792 -199.269129 43.706331 -60.572342 55.005536 -81.961946 65.227577 122.496707 76.569018 113.916861 -211.993733 137.939978 24.264485 -49.669391 -127.040710 42.476522 -6.654726 -43.233505 -27.825019 119.493165 -62.089864 -23.161507 -22.256575 77.750348 25.595880 -115.182344 -24.316785 -3.374453 84.001445 -129.176943 66.067364 -23.441447 -77.470979 8.109661 68.353651 122.339971 88.780235 239.625043 110.832700 -50.246988 83.969570 -173.801335 53.139816 194.677871 26.881059 -138.490720 168.365190 -131.687735 -19.675400 9.925114 130.986907 105.239238 52.252580 -73.432540 -49.542996 75.112952 56.937219 185.822417 -23.038318 46.013108 -148.814189 29.295987 -18.791756 40.561451 244.839247 75.920315 -180.626472 48.133626 122.763995 -69.481459 -63.207276 76.023081 -109.859814 -45.007666 -61.075249 81.808553 112.959745 -109.298171 -100.485027 11.933076 -129.081663 122.579835 -52.036926 -91.334247 58.465759 -162.531960 -15.953339 194.643955 15.959883 -40.584007 -66.728391 -153.447497 -8.291424 -177.827002 45.309931 72.172623 -26.732580 -26.391037 -106.181893 -51.545537 145.184552 19.324216 65.644221 -231.781437 16.715412 108.448039 12.550672 69.559106 -82.712350 -10.376160 20.915572 -18.107357 28.164144 -66.575247 39.387147 141.006031 -133.384805 102.077336 -3.240088 -47.861105 55.662735 89.046679 -151.228090 241.645933 45.695404 161.399830 1.931839 69.419706 -58.082668 53.944324 -13.210464 -34.529673 -21.361490 49.802544 -102.354227 -81.897636 55.842449 -46.001711 -150.088631 -1.376556 122.226561 -25.817271 56.958212 -41.788162 -35.562807 -62.449164 -65.224762 85.193568 101.583901 -52.831536 -81.512267 84.417515 113.999097 -31.199644 0.134299 38.087707 86.493360 164.488100 -189.111713 68.434709 -3.551334 69.950411 -143.334166 -136.092677 51.036855 -67.012813 3.163178 43.993751 -192.147998 -94.374624 -100.133406 88.760548 -85.370311 33.122420 38.422838 198.288324 92.843675 -80.559950 103.833555 -37.936201 47.738572 -6.302215 -10.229927 73.318070 102.428928 +-8.787228 8.043724 -0.235472 -7.110643 23.505684 -6.429833 1.973748 10.444091 -8.329153 16.980997 -6.165889 -1.690990 -3.379007 -19.537485 1.280093 -4.920148 -2.208924 9.793076 0.325066 8.835929 6.221913 -8.454501 1.562479 -0.675575 -5.798423 -13.556864 -1.832829 5.730607 14.972236 -12.975449 0.779115 0.536090 19.095421 -3.385173 15.323002 11.741831 4.100802 10.402760 6.865727 -9.576140 -3.757621 6.453545 -8.472798 -9.879347 0.364764 -2.073890 -12.312953 -6.172931 6.321686 -4.528187 0.996178 13.009153 -4.010150 -0.244179 -10.202550 12.307748 5.450800 -0.051672 16.882368 1.501998 -2.828377 -3.933144 -16.898131 17.018021 -6.324205 0.109602 -4.856688 -9.743045 4.042327 0.544148 -1.494601 -10.133732 -3.559926 15.401883 8.696165 -13.320813 1.223642 -6.894943 -17.551519 -15.348677 -13.665234 4.984718 -3.650328 11.737925 2.092605 5.467500 0.777170 8.606349 -4.730379 -21.446367 3.743058 17.193463 -6.838006 -4.406990 -8.749837 13.276364 3.194006 1.145878 -7.593793 -7.147120 3.879504 -3.562150 7.533768 -13.529561 8.750190 -15.095826 -0.640996 -1.702114 3.624200 8.615484 11.554334 2.554084 8.618577 16.424848 -12.757219 -3.271255 -17.016759 4.245221 -3.082531 3.691774 -3.885862 7.393108 2.309643 5.623655 14.420218 -25.193970 5.485049 -0.494772 -1.283798 -17.654859 -0.260131 -5.332920 -3.434160 -5.116195 7.724104 -2.191999 -1.908607 -5.281572 3.380455 4.834499 -10.283108 -4.788597 5.332755 19.361580 -17.166381 4.622078 -2.985964 -4.638279 -2.715432 7.909671 13.569555 12.464644 18.609498 12.528401 -0.216218 8.568275 -18.449973 0.119290 14.585018 2.286742 -12.323354 17.411219 -11.893848 -5.155055 1.241925 15.331197 11.467888 1.267520 -12.860689 -10.851251 12.002905 4.298660 15.689433 -2.945137 -0.211732 -3.040438 12.646693 3.384112 -10.611041 20.206010 6.686581 -11.794382 7.441968 5.541189 -8.627944 -5.991934 10.726706 -13.523982 0.026625 -5.599596 2.060882 8.399876 -5.987819 -3.460368 0.030445 -11.392571 16.033011 -3.811268 -5.128768 7.650343 -10.899752 -11.417204 15.422822 -0.375467 -3.645387 -10.960613 -14.651108 -11.475296 -10.813185 4.658098 1.626904 -4.494329 -6.696563 -13.231161 -2.505556 13.674717 3.553991 10.103987 -20.744430 -3.448531 7.355614 7.623123 9.145660 -6.333986 -1.228961 1.317875 0.872052 2.258712 -2.305811 11.572986 20.876213 -8.899992 8.513468 -0.923265 -4.817878 6.083371 7.219188 -19.621178 17.369285 2.822282 11.243841 0.386722 3.722676 -5.674959 2.057161 4.063018 -0.105001 1.057770 0.845840 -3.110302 -5.364257 -1.079248 -12.131845 -12.459115 -3.162448 4.931847 -1.119071 5.115620 -4.092009 -6.405366 -4.612845 -8.854015 3.425698 9.220738 0.042487 -2.388504 10.761668 1.992957 3.308226 6.478537 0.907041 5.299366 7.958194 -15.840737 0.405293 -3.530831 8.272551 -8.913543 -19.293750 1.361251 -9.319662 -7.107911 6.319198 -18.429731 -3.385730 -10.048524 0.184265 -19.652783 0.370149 3.947523 20.059514 6.014310 -6.666012 6.395886 -5.640786 7.761440 -0.814397 -0.112557 4.720442 9.505353 +-15.025207 13.720545 4.238687 -15.209246 36.227367 -10.625439 5.892159 14.901877 -10.733389 18.794917 -16.744696 6.529804 -3.195574 -25.853900 4.264084 -10.018134 0.848737 16.773156 -2.195216 13.803405 10.613251 -8.104501 3.626423 -8.599661 -8.026048 -26.779029 -0.796060 8.058449 10.795304 -4.350362 5.613723 4.276396 26.761263 -5.046961 18.973820 19.129639 8.372070 20.526658 9.140474 -12.581512 5.237368 8.783188 -8.634059 -22.917440 2.961118 -4.534624 -21.560182 -13.211733 10.073991 -19.672741 -2.607910 17.698264 -1.020387 -5.340188 -18.480485 16.960548 18.387544 -2.316297 21.913808 5.807484 -9.496443 -4.971238 -16.994750 19.849637 -13.939739 1.084942 -5.152251 -19.230277 0.778256 13.072812 -0.835630 -9.253593 -11.057965 7.859903 10.579494 -17.595782 5.012044 -6.682921 -15.092576 -16.298323 -11.394569 7.495369 -6.266170 18.009298 1.132127 6.707356 -1.828841 5.759717 1.580873 -20.658536 -3.869121 23.150610 -8.221800 -4.598682 -10.920181 19.535052 13.644354 -6.921958 -7.795929 -13.219924 6.029720 -4.998829 10.225955 -9.977806 0.955410 -17.326253 -0.454110 4.279591 3.425408 21.530758 -2.608086 11.319817 7.361093 11.420185 -13.697469 5.382917 -30.233981 8.645436 -10.157999 3.445641 -6.376101 5.667979 9.938300 11.068416 14.870911 -26.072769 20.307393 4.173275 -0.120607 -15.918343 6.792252 0.566069 -5.916351 -6.954968 13.154629 -1.677430 -1.984851 -0.956160 7.005414 3.331171 -8.323778 -10.053429 -0.449528 22.843802 -23.022257 7.775167 -4.756069 -6.746430 -0.768816 5.910330 11.592334 12.108729 26.760029 18.355863 -3.598647 15.816145 -24.621179 4.605220 28.183438 9.010483 -15.305101 18.693365 -11.263675 -6.741160 4.829528 14.142777 10.364368 10.173599 -19.887833 -18.214317 5.137663 -2.419959 22.073493 7.663591 0.631830 -22.860064 17.715970 -2.880167 -2.540428 29.571711 12.223067 -22.872201 9.913849 18.794595 -21.480510 -13.391930 8.406168 -14.621262 -5.453741 -8.421281 6.668802 12.307421 -13.862092 -15.199083 -3.637548 -16.643879 16.025751 -3.993506 -9.852807 3.137747 -12.798314 -12.452721 25.711639 4.218924 -4.150045 -11.298097 -17.544510 -11.958411 -24.835875 4.901744 5.358212 -8.402005 -8.378863 -16.390454 -6.519455 16.885571 -4.865774 6.883042 -29.566703 -2.438604 12.797493 14.295152 4.642430 -17.235465 -3.301785 1.879658 0.068682 1.228849 -4.645128 14.341101 25.245718 -15.017271 11.619351 1.349524 -12.411214 11.158560 18.987525 -21.113252 26.045672 0.938212 23.887216 4.925679 7.891346 -9.995260 1.827554 0.549275 -9.202192 -5.274067 7.432580 -15.536812 -7.699230 9.456664 -8.640814 -17.373590 4.428292 15.508083 3.796791 3.136847 -0.151638 -9.073296 -4.937599 -11.269865 4.604225 13.631171 -4.949274 -14.349647 10.829457 14.402136 -7.215668 -10.309297 2.803571 10.907133 15.238714 -23.046395 13.581296 -2.484074 6.607517 -22.457250 -23.608926 12.417252 -15.538596 -13.772675 6.716398 -26.964488 -10.152758 -12.339486 10.944590 -23.675543 -6.925546 5.977591 22.967630 3.259749 -3.970255 12.894622 -7.513508 9.382516 -1.989634 2.636604 1.873299 17.015603 +-34.944258 21.985343 -3.472853 -31.771012 72.337480 -19.096240 0.816100 36.337375 -6.884502 46.381159 -34.481718 5.373941 -10.239974 -54.537720 5.669193 -7.537418 3.077069 36.655815 -9.258382 20.579058 26.171479 -15.083984 11.067259 -15.805872 -17.876405 -45.519243 -3.637171 17.231191 20.013607 -14.549990 2.023686 7.359335 59.225579 -7.858778 43.450861 39.544551 23.403478 49.445413 19.410169 -7.894446 7.409811 23.082959 -20.515743 -51.002056 14.686566 -15.818822 -39.426018 -28.563148 24.636651 -40.314792 19.872175 40.018283 -3.189204 -10.380972 -37.785522 30.538810 31.975549 -4.238207 54.571842 12.785165 -25.791877 -7.212037 -38.406557 44.836538 -34.921705 10.410744 -3.984549 -44.991989 -4.136618 23.216161 10.461963 -28.457701 -28.935079 21.064464 17.374388 -39.571367 12.578828 -15.709096 -11.943223 -37.803511 -32.707409 15.365641 -12.877374 38.850559 0.605611 14.334922 -8.982868 14.131913 0.089567 -50.969685 -3.755783 43.000364 -22.115615 4.567101 -24.676971 33.059484 14.595819 -11.229072 -21.684236 -22.305493 12.663891 -5.701661 23.717059 -13.085653 2.824723 -33.625417 12.175500 8.257476 6.153291 26.355685 12.334186 16.783952 18.877477 32.347220 -23.562227 10.228697 -62.718329 17.586706 -8.589044 8.986535 -12.857431 15.264440 20.775670 12.809888 37.317743 -58.689735 40.287275 5.963934 -8.860317 -38.501278 14.095560 -3.258025 -15.808688 -15.120953 32.529442 -5.906134 -7.015417 -7.650811 15.797999 3.988042 -31.577252 -21.028291 -2.439953 40.700894 -41.521459 15.153453 -13.040264 -21.517702 -1.848114 16.031019 26.275482 29.077084 58.629111 40.731386 -7.087157 21.541882 -54.212527 9.576184 57.767908 23.066296 -39.926405 40.968167 -26.882316 -8.252797 16.415520 31.462911 25.293846 18.370123 -30.111538 -27.617890 13.147750 0.763481 51.380195 11.413588 9.957473 -40.468198 27.842390 2.363981 -5.735184 71.834221 25.789513 -51.987716 20.210466 35.950666 -31.796808 -22.705623 19.949593 -28.055268 -11.816633 -18.991996 15.369904 28.687464 -33.781364 -31.155781 -2.956093 -40.105158 42.835207 -9.398042 -13.405667 15.553852 -43.805435 -15.731994 54.946755 7.414246 -11.435680 -23.622601 -38.074749 -22.749835 -54.763127 12.891975 14.877126 -17.901174 -18.673142 -39.078136 -9.908380 41.268878 -3.890160 14.557581 -56.941254 -7.292472 30.347662 13.185945 14.543544 -37.991381 -8.688993 3.914230 2.030565 12.350501 -10.455303 24.851411 54.472424 -34.940619 24.297116 15.744336 -11.897147 19.595294 36.047835 -46.943799 59.133383 -0.379979 36.598696 6.854564 19.166328 -21.635036 6.621316 0.322981 -2.496652 -8.185378 16.781433 -31.958729 -17.769963 15.887205 -28.522567 -31.347692 7.377233 30.394133 9.376092 9.753252 -4.062701 -18.527469 -13.376391 -24.977107 9.337787 33.012883 -6.985395 -30.793234 23.316731 22.910966 -14.721368 -12.304992 8.598161 21.208851 39.325482 -52.054351 23.439416 -2.959575 8.183205 -46.333417 -46.465173 15.947504 -28.827130 -24.275802 20.373554 -60.498454 -21.899718 -27.643574 22.865321 -45.155387 -1.281051 5.456301 54.142685 16.164075 -10.322084 31.460187 -12.576249 24.743828 -1.141292 -1.198663 7.137493 40.496501 +-13.863232 8.939638 3.087035 -11.517110 29.022409 -5.527776 1.668518 9.980813 -8.412151 20.373587 -10.535364 -2.318963 -5.600307 -24.403589 2.718672 -8.299903 -1.538272 11.388164 -0.824681 12.819733 10.447559 -11.151788 2.596713 -3.145525 -7.470646 -17.978185 -3.695640 8.179101 17.116661 -12.450963 2.792556 1.790772 24.524412 -4.575548 21.393431 17.881952 7.646642 17.156678 4.895213 -12.372231 -3.156873 11.041280 -12.127313 -17.091868 3.041841 -4.868846 -17.602221 -10.546584 10.189616 -7.854391 -2.539795 19.218052 -4.924623 -1.499536 -15.272743 14.921504 9.841664 -0.382197 23.708423 3.793709 -5.013891 -1.871651 -20.929189 17.453031 -11.187840 2.118278 -7.397785 -15.906571 3.454180 2.575655 -2.019206 -10.659641 -7.862301 16.662526 11.532648 -17.771058 3.876634 -9.020323 -16.644876 -19.890704 -16.843100 6.671552 -3.788518 17.825823 1.229310 6.983801 3.991897 10.153100 -4.360239 -26.525437 3.050855 20.333722 -9.975968 -4.966326 -9.022415 17.536546 5.173322 0.319384 -11.503007 -7.585367 5.976426 -5.161101 11.096289 -10.679247 8.908731 -16.679857 -0.578045 -1.695668 5.515751 11.358318 9.882939 4.848976 12.170010 18.600575 -15.214590 0.267233 -20.972211 6.075415 -6.544166 5.487798 -5.084602 10.941372 6.196034 6.013528 19.116582 -28.121396 9.702227 0.606541 -2.292647 -20.008887 2.461079 -6.830481 -6.677900 -7.788989 12.625395 -2.452469 -3.377939 -6.544517 5.865741 5.471028 -10.524540 -3.919534 4.050421 19.158575 -18.364271 6.306143 -5.151796 -8.636373 -1.932169 9.477166 15.552723 17.172716 26.094236 19.238222 -2.921689 10.006268 -22.996436 1.816943 22.255866 2.212555 -17.058265 20.758368 -14.398393 -6.066296 4.155261 17.151080 15.517043 5.269597 -15.298304 -13.426784 9.646204 4.319648 22.486257 0.841210 1.419192 -8.981634 15.013146 2.212546 -10.163560 26.111151 7.813613 -18.871783 10.792235 10.459410 -15.414365 -9.963955 12.273195 -15.757727 -1.278333 -8.991813 4.907210 12.336106 -11.218816 -7.105935 -0.154323 -17.406541 19.640426 -5.359203 -4.482416 9.670227 -15.579005 -16.906086 20.622838 0.872382 -5.515350 -15.237562 -17.028016 -10.153218 -18.426254 7.387060 2.195733 -6.499316 -9.837109 -18.323506 -3.302709 16.801693 2.972373 11.689262 -25.092737 -3.552135 10.928047 9.745765 10.851088 -8.306317 -3.147779 2.287700 -0.616247 3.620717 -4.138603 13.450918 25.729688 -14.792524 9.452211 -2.065574 -10.639221 8.970860 11.986807 -24.507440 25.857582 3.510880 15.016159 0.378603 6.724122 -9.104047 2.362879 4.926983 -2.933704 -0.002227 3.408961 -6.749830 -7.460874 2.305408 -14.000970 -14.192737 -2.070384 8.643410 -0.214109 6.922691 -1.499796 -10.076240 -5.342532 -9.523349 4.728996 14.742339 -1.303423 -6.659985 13.638234 5.173415 1.914292 0.102015 2.083230 7.330151 13.988105 -23.524822 4.047801 -4.316331 7.137042 -13.775642 -21.923492 3.757969 -13.794818 -7.899899 11.403666 -22.665743 -2.651341 -14.662181 2.980234 -17.853408 -2.216746 4.673397 25.187116 8.944987 -8.941705 10.660284 -7.356979 11.881507 -1.067184 -1.260325 4.555126 14.315823 +-18.026527 16.217371 11.536740 -14.008027 37.719828 -4.337873 4.909960 19.922461 -22.400301 30.311495 -12.536131 5.824545 -5.100832 -28.622345 2.316985 -13.340166 -4.774054 10.776432 1.703503 20.190981 11.956220 -16.464738 2.324504 -2.037591 -12.550758 -26.597330 -1.889908 10.453103 27.449803 -14.320126 8.224252 0.065923 30.947844 -6.828070 28.230886 23.776489 9.407466 19.002605 8.532898 -21.226686 -8.874264 13.078272 -17.548740 -17.096453 0.927107 -6.026083 -23.902472 -10.349660 10.817074 -12.233673 -11.852821 25.490552 -7.816937 -0.476639 -17.055571 24.757377 10.848527 -7.985836 32.069386 2.781887 -7.684031 -11.823119 -28.424382 26.578312 -9.829589 -0.355908 -12.558239 -19.211250 10.222275 0.499870 -9.431728 -12.380770 -3.040280 27.582972 14.659823 -25.834422 2.715727 -13.954728 -33.092300 -24.909831 -17.897394 9.172540 0.180452 22.771252 3.487963 10.606567 8.397002 16.578623 -9.726996 -39.218570 7.241217 30.958437 -15.832721 -11.966218 -16.707059 26.234267 6.142080 4.042532 -14.086737 -7.866483 8.991703 -5.007301 13.985707 -30.152375 11.925150 -27.025491 -4.263914 -4.751596 8.681844 18.192630 8.701504 9.657519 19.526779 29.890115 -23.236644 2.260789 -26.355314 8.684465 -7.914292 7.439895 -8.016195 14.589231 5.921353 13.328114 29.023130 -39.438161 9.947657 -0.586595 -2.880219 -31.939895 -0.204143 -12.298663 -6.940793 -10.895836 14.948766 -3.730717 -3.763686 -12.183785 8.317837 8.415508 -14.322127 -13.123541 9.582710 29.119822 -31.275555 8.064419 -5.913133 -6.377624 -4.194574 16.179114 24.321717 24.205268 33.655040 23.743278 0.716428 21.303967 -29.865706 -0.181079 27.316578 9.774538 -22.839303 31.064444 -24.235543 -11.891856 3.686443 21.755126 21.760232 9.295962 -28.886326 -25.479399 22.479769 7.935334 31.195856 4.058272 0.330811 -9.206750 25.702179 -3.818062 -18.293261 29.600771 13.012146 -24.830589 15.735191 9.755725 -20.418672 -10.834561 19.331076 -26.188676 -1.803745 -8.062801 -0.250350 16.439349 -11.416173 -7.246679 0.573617 -23.318189 29.401405 -6.699213 -1.732194 10.884212 -16.646449 -26.459437 23.009993 2.994943 -8.891975 -22.377420 -20.792145 -23.319522 -21.806728 8.682400 4.073664 -8.559618 -15.713220 -26.928538 -5.847533 16.440128 6.482871 17.785640 -39.659834 -7.076818 15.025003 14.310868 15.273100 -10.351604 -3.103247 -0.820148 -1.553579 6.107418 -7.479660 26.051767 35.678298 -16.527388 19.785827 -10.077332 -16.680640 11.184421 13.447416 -35.734127 34.415721 5.532422 22.804490 1.803838 7.908523 -13.934568 3.373443 6.534983 -6.995851 2.065497 2.634547 -6.311458 -10.056573 -1.573174 -21.203353 -16.983414 -6.053273 8.142673 -4.307451 9.553919 0.220465 -13.748732 -11.211925 -19.037088 5.110608 18.616829 -5.311597 -6.527862 21.305310 2.705796 5.674949 0.249566 1.544054 11.924910 14.129389 -31.584364 1.537666 -7.033399 8.025278 -20.200225 -30.821024 4.384911 -18.578995 -15.938362 11.435681 -29.873183 1.106775 -19.925724 -0.938584 -30.919316 -8.103792 8.980542 35.691709 6.721815 -14.800751 12.793198 -11.984600 17.471487 0.278615 4.097029 4.309092 16.052910 +-10.556026 11.415633 4.533803 -7.712301 25.504135 -5.408930 2.792585 13.538939 -12.375081 19.172861 -7.690304 1.637619 -3.574978 -18.994585 0.946638 -5.763691 -1.924990 9.059848 0.818360 9.872534 7.286293 -9.388684 1.635292 -1.391648 -7.146634 -14.720782 -0.853883 5.903249 17.127956 -11.746750 2.165692 0.688251 19.726881 -3.660267 18.971781 13.633368 4.967495 12.289416 7.583680 -12.342387 -4.656018 7.653922 -9.703534 -12.419954 0.880808 -3.620509 -11.998167 -7.338520 7.214259 -5.384973 -0.981055 14.251368 -4.221511 0.047767 -11.504178 14.353345 6.189203 -1.823553 19.491728 1.595779 -4.993212 -5.135565 -19.265679 15.639996 -6.851975 -0.138210 -5.779398 -11.016014 5.407496 0.677230 -4.135472 -11.909298 -1.243358 17.223765 7.501024 -15.017155 1.706016 -7.483258 -19.312745 -16.906609 -13.659051 5.294743 -2.462985 12.999695 2.047297 6.016987 -0.335853 9.308101 -4.994356 -24.670651 3.966063 18.997163 -8.842975 -4.024856 -8.610175 15.515838 2.862418 1.597476 -8.210943 -5.957096 4.897550 -2.893189 8.117303 -19.152700 10.283349 -17.719709 0.065673 -3.131326 3.575118 9.680367 10.676592 4.214258 11.091485 19.022518 -13.792636 -1.370687 -19.121215 4.706387 -3.063742 3.633258 -4.159320 8.309650 2.157364 6.724572 16.336894 -27.210856 6.478690 -0.289289 -1.176829 -21.075904 0.358650 -6.504476 -4.143628 -6.022493 9.104007 -2.042535 -2.051009 -6.885105 3.843116 4.271365 -11.744014 -8.332639 5.579038 21.892392 -19.894184 4.857521 -3.584434 -4.910101 -2.793618 8.770140 15.361961 13.813653 20.262881 14.369419 -0.156355 9.662796 -19.708398 -0.475250 15.552282 3.479359 -13.735655 19.588694 -13.617213 -6.178127 2.753647 14.873869 12.723176 4.378910 -17.484426 -15.272915 14.980881 4.588396 17.644524 -0.572079 1.811099 -3.473467 16.652247 -0.580876 -13.216807 20.746465 6.003456 -15.551371 9.500882 6.232255 -9.284629 -5.687686 11.775783 -16.503823 -0.503465 -5.565473 0.921447 9.446724 -8.006853 -3.905951 0.113163 -13.540508 19.468486 -3.754402 -2.873166 7.439275 -11.733754 -10.837358 16.224370 1.274526 -4.405118 -12.005290 -14.597815 -14.676879 -13.047228 4.732440 2.731637 -5.290456 -8.392127 -15.259191 -2.673060 12.561291 3.669693 10.422249 -21.863552 -4.559502 8.910116 8.001298 9.510941 -7.751282 -1.848424 0.730248 0.080378 4.211920 -3.659777 16.776114 24.047522 -9.816915 12.435157 -1.116961 -6.123967 7.195390 8.186945 -22.148031 19.551893 2.688949 13.753187 0.990671 4.665492 -7.723705 1.963795 3.682992 -1.759068 1.096040 1.674268 -4.112517 -5.897421 -1.818120 -15.643818 -11.811660 -3.373236 5.576694 -1.341553 5.312810 -2.573901 -7.095741 -6.197222 -13.305621 3.328745 10.694473 -2.125586 -4.391456 12.007336 1.770608 2.758584 4.560487 1.247381 6.334612 8.883825 -17.900427 0.361347 -3.736846 6.703538 -11.497157 -19.563517 1.985005 -10.340856 -9.834129 7.074959 -19.909390 -2.156710 -10.940945 0.375468 -23.789205 -1.985545 3.658881 23.235458 5.336304 -6.954745 7.609330 -6.380712 9.428980 0.047181 1.105524 3.034299 11.016346 +-4.096547 3.447310 4.058732 -3.480898 10.494237 -1.013064 1.138633 7.400947 -2.818326 5.743109 -4.039099 2.164703 -0.117705 -3.797522 0.521779 -3.931698 -1.305926 3.599928 -2.055675 1.921852 2.491852 1.356102 0.006647 -0.901050 -3.095357 -5.066972 -2.039562 2.269532 2.806763 -1.422210 1.206462 0.616096 7.591694 -2.861593 7.237678 5.244263 5.062865 3.939532 -0.040476 0.371984 1.476995 2.144680 -3.501544 -4.262137 -0.250960 -2.231811 -6.234106 -1.382351 2.539589 -5.015875 0.330772 4.239468 -0.358259 0.412993 -0.695543 6.181177 0.312993 -2.359985 6.161451 1.513215 -6.853647 -0.546585 -6.299401 9.206761 -2.319063 4.368251 -4.106862 -7.052965 -1.498438 2.061835 1.051789 -4.636829 -2.135794 4.325130 1.707795 -4.404976 1.919375 -2.462734 -0.255541 -3.719180 -2.658475 2.865003 -0.488110 3.122756 -0.034538 1.367873 -1.435989 2.220262 -1.949033 -7.168568 -0.371322 8.142347 -5.140893 0.264099 -7.373914 -0.204399 1.096259 1.091007 -1.333817 -4.016770 2.319008 0.295052 2.053734 -4.764226 2.668348 -4.063861 -1.035108 1.632924 1.567086 4.663827 -3.591379 3.790516 4.391866 5.209226 -1.739486 2.480733 -6.471925 3.711656 -4.803979 1.466999 -1.998948 2.096339 2.922311 4.577691 5.504990 -6.238868 3.360039 -0.809443 -2.430763 -5.128968 0.982796 -2.149926 -2.989526 -2.118375 2.866559 0.767132 -1.296692 -2.634897 2.095775 0.408267 -2.238938 -5.683779 0.793148 0.538271 -5.779933 0.732240 -0.818588 -0.239338 -1.554637 4.937024 5.430819 4.202373 7.638192 4.594231 0.958873 1.950603 -7.379170 -0.040644 5.219200 1.280620 -4.945748 6.145231 -5.838398 -2.084085 2.153462 4.263969 1.535926 5.448972 -4.639721 -4.427158 0.907403 1.095889 7.342412 3.886924 -0.414158 -4.149820 2.264686 -5.569604 -3.275835 7.847228 4.509877 -7.562369 1.204008 2.529633 -1.080620 -4.126936 3.799376 -6.706039 -3.302152 -1.156508 0.031291 3.799977 -2.837601 -2.357774 3.554644 -4.970653 6.105698 -1.595184 -2.789856 0.798186 -5.177942 -5.882465 6.797950 1.571975 -1.510709 -2.638171 -3.245379 -1.210486 -5.769299 0.968948 3.258387 -0.953901 -3.670947 -4.983624 0.002436 3.405653 -0.783671 4.124730 -6.884491 -2.717552 3.512743 -0.721527 3.056343 -6.455984 -0.692070 -3.998458 -0.914612 1.817252 -3.689930 3.357554 7.962348 -2.847614 5.661302 1.565748 -7.024542 -1.075813 3.736580 -6.465838 7.479446 1.228417 2.429036 1.180503 1.717416 -3.882269 -0.391752 -0.659382 -0.361894 -1.134421 2.524874 -2.395487 -1.344742 -1.375119 -5.651907 -1.931194 0.395988 2.874003 -1.819514 1.314417 0.094151 -4.360286 -2.857724 -5.094638 0.086702 3.909631 -3.519426 -4.377677 4.712110 0.407573 -3.939125 -1.728177 -0.075757 3.180233 3.857030 -6.154003 0.908054 0.889940 0.983600 -8.526729 -5.566127 -0.629375 -5.216163 -4.168551 -1.321860 -4.648258 -3.501876 -3.668147 0.923275 -5.592134 -5.589906 4.295282 8.070465 2.436678 -2.784390 3.148722 -2.059829 4.907492 1.363620 0.875082 0.780325 3.253407 +-144.700790 119.435501 28.988703 -142.252839 288.187917 -73.223271 15.324354 154.706244 -38.537988 184.242825 -155.131088 30.864258 -42.910080 -218.903042 19.328947 -66.143493 3.410176 154.990545 -37.748847 108.409859 112.817860 -64.078071 42.352636 -76.546836 -78.747924 -181.396835 -12.764414 64.420191 69.833464 -36.716937 38.322094 26.120737 241.351659 -17.871784 188.806702 165.537044 84.389923 220.520775 77.957536 -13.873808 25.140371 96.674394 -83.232028 -222.513358 66.108321 -71.410172 -154.073030 -129.175675 91.720903 -189.422153 82.145508 163.085525 -8.320391 -46.987102 -156.396273 116.547725 134.953239 -6.368443 220.925787 56.499812 -113.746362 -24.564649 -166.208090 151.582109 -136.990024 55.403309 -3.048529 -177.245296 -6.063165 93.638588 52.703495 -114.567168 -119.280864 82.914278 67.773275 -159.705514 56.177983 -71.284802 -93.910673 -137.919292 -119.075943 63.469087 -39.910934 158.031236 -0.273655 60.286189 -50.671130 60.026177 0.769250 -207.722477 -21.844899 186.140589 -85.682475 11.399948 -110.586712 149.428994 59.963941 -43.332969 -95.340460 -83.876043 65.249556 -12.075401 94.363334 -63.438001 -25.266700 -157.487487 63.446245 54.935765 6.413835 114.240571 34.689936 93.481317 87.138603 134.171376 -109.628773 76.352469 -267.229908 68.021511 -43.537013 37.040034 -48.220992 60.279711 62.218527 60.478043 145.236043 -235.429498 179.427564 37.615136 -44.621072 -160.623435 68.174979 -18.088748 -64.417800 -68.536468 131.180053 -10.967250 -27.990656 -32.763869 47.804351 3.598813 -107.872854 -121.157150 -5.842250 176.912469 -165.800622 59.319543 -54.229692 -84.490493 -11.906779 67.560311 105.511802 106.247699 239.197496 160.445734 -23.957587 73.169436 -211.083275 27.954708 240.509898 104.750018 -166.988575 167.530988 -92.615170 -37.688626 63.153676 117.265382 102.076110 89.083531 -152.261019 -150.336670 42.721040 -14.701980 210.401517 75.398487 37.574198 -179.964633 144.566589 -11.048170 -32.128779 291.815812 112.923920 -201.196219 50.299503 145.962831 -149.410611 -111.341118 80.464116 -107.794328 -45.145988 -61.362882 52.326182 103.472237 -135.181179 -149.446104 -19.107189 -173.798122 179.932930 -34.452162 -40.549760 35.219700 -175.969948 -85.091766 231.795712 31.932351 -65.261169 -90.836279 -145.980571 -87.694810 -228.640701 54.187565 73.842928 -67.260476 -90.875571 -155.532396 -29.597364 147.989521 -33.145169 45.583161 -206.370454 -60.912562 124.335803 38.510623 61.891665 -177.691092 -39.388732 2.732396 15.721148 65.114539 -25.220586 118.382981 243.259113 -133.201065 106.603162 80.570198 -53.577131 77.123672 168.861032 -190.867808 245.214084 -20.935799 162.018390 25.506155 80.236557 -88.728124 18.502895 7.703458 -20.812656 -27.329125 79.254772 -128.014305 -67.611951 48.139865 -121.610787 -110.271031 42.383267 121.544798 25.952975 37.194895 9.202667 -81.832129 -59.568963 -110.342468 27.272948 140.685423 -32.324038 -139.321751 87.300430 94.002867 -59.533088 -56.478104 35.791310 90.665462 161.064089 -212.184747 104.412871 -15.934155 9.758255 -201.178310 -186.374625 78.650529 -135.252430 -112.623951 74.489152 -238.992193 -81.048898 -113.714775 99.693301 -186.183316 -19.953075 28.755300 216.953481 71.750843 -44.920431 125.002941 -58.271693 119.066167 7.059633 -2.069252 21.281447 181.597822 +-7.900256 7.908729 3.088736 -6.755259 18.076099 -2.482265 2.412353 6.606856 -6.695560 14.130057 -5.513416 -0.868160 -2.829431 -15.352780 0.852657 -7.197893 -2.664738 6.793160 0.739024 8.698329 5.452672 -8.152050 1.648545 -0.586191 -5.624975 -13.434892 -1.593720 5.185984 12.241151 -7.623557 3.707660 -0.204538 14.868237 -2.788139 13.345257 10.439932 3.410191 9.143448 4.071612 -6.786532 -3.715017 5.575448 -7.770174 -9.173479 0.636088 -2.149978 -11.221563 -6.792231 5.371779 -5.635096 -2.402715 11.630660 -3.623165 -0.523135 -8.696480 9.538926 5.308382 -1.045426 14.632788 1.080806 -2.289530 -3.094701 -14.031821 11.337060 -5.101366 -0.775627 -4.651908 -8.874390 4.120438 0.440656 -3.671073 -5.280598 -2.103201 12.683157 8.266701 -11.590452 0.851437 -6.751072 -16.908692 -11.989768 -9.084741 4.363287 -1.001250 10.677342 1.988883 5.095551 3.450206 7.620291 -4.558799 -17.951606 3.257481 14.093654 -5.473215 -4.922800 -5.990404 12.588242 3.419779 1.141853 -6.632428 -3.565439 3.595662 -2.667990 6.669477 -10.625113 3.528419 -13.333570 -0.911100 -1.494764 3.002651 6.747143 6.736118 2.537064 8.099515 13.621323 -12.562598 1.086869 -12.974913 3.930299 -3.037267 3.623849 -3.603375 6.858599 1.290427 5.529969 12.654339 -19.461059 4.909785 -0.228067 -1.042798 -14.697353 -0.209302 -4.897627 -2.726211 -4.411255 6.380674 -1.970803 -1.674563 -5.105185 2.505862 3.890105 -6.616172 -4.053908 5.081065 14.809431 -12.637485 4.333696 -2.493745 -3.903947 -2.100999 6.729740 11.232654 10.915280 16.151504 11.411917 0.293407 7.723244 -14.321872 -0.208800 12.893097 3.015657 -10.030925 14.218672 -9.919136 -5.004182 1.247931 11.291672 9.974031 3.014946 -12.501618 -10.413748 8.950022 3.641567 13.729668 1.037561 -0.263611 -4.166109 11.801839 0.758237 -8.496440 15.095110 6.007136 -10.446227 6.399303 4.624696 -11.702425 -5.503061 9.202242 -10.795081 0.058364 -4.351431 1.232761 7.264386 -4.780426 -3.622728 -0.545494 -10.378961 13.155559 -3.459141 -1.335755 5.909514 -7.881704 -11.717690 11.837529 0.081313 -3.807817 -9.729134 -10.648164 -8.734778 -9.533839 4.028122 1.740828 -4.663384 -6.556902 -11.610172 -1.867289 9.245942 3.044114 8.401112 -15.546638 -3.454528 6.640997 6.778604 7.037631 -5.244213 -0.901636 0.503709 0.192000 2.094525 -1.450677 11.455161 16.571368 -7.597239 7.387127 -3.666107 -6.455956 5.888398 6.324313 -16.147019 15.693061 2.133827 9.921177 0.306573 3.255067 -4.587159 2.003507 3.688436 -2.924517 1.419112 1.385481 -2.820040 -4.875852 0.300147 -10.294605 -8.854481 -2.722629 4.551946 -1.444778 4.635552 -0.358695 -6.602767 -4.132756 -7.912538 2.424526 8.182713 -0.304450 -2.703615 9.485115 1.813264 3.364640 0.312879 0.653520 5.174196 6.426270 -14.113524 1.038970 -3.421003 4.356227 -8.197227 -15.136238 2.576879 -9.399773 -6.861715 5.421140 -14.584104 -0.187295 -9.261649 -0.133850 -14.477350 -2.141397 3.886231 16.618735 4.409102 -5.838218 5.557627 -5.387865 7.475765 -0.624906 0.443795 3.908651 8.659798 +-30.163350 6.915436 -10.057858 -38.111662 76.512230 -17.167271 -10.889984 45.243511 0.975150 41.704056 -22.454864 -2.824316 -8.379609 -59.001569 6.833365 -10.780421 3.641518 29.442332 -15.692018 27.032871 23.408943 -8.257584 16.305587 -4.989658 -22.559588 -25.783187 -6.280741 25.634901 18.236807 -25.894294 6.798660 6.070289 59.227979 -9.451675 50.201689 31.409330 30.910325 42.090354 16.917501 -17.191437 9.354086 14.356483 -19.981067 -44.734714 10.495443 -10.962552 -51.709708 -20.527089 25.980926 -34.843384 5.881944 45.865901 -2.400744 -7.656526 -34.077572 28.276463 11.555924 -9.251269 50.427027 12.363057 -37.044784 -16.283127 -42.051571 36.791929 -28.825616 13.949549 -14.982017 -37.026626 -9.985953 28.109469 -0.877637 -34.706779 -27.021916 22.455234 27.643019 -36.066107 19.032688 -15.606187 14.349764 -36.125243 -25.527147 24.150867 -13.746624 33.325544 2.920923 24.187604 4.025337 15.978564 -13.402155 -56.412425 12.045714 38.005999 -32.192702 -4.121758 -28.073436 32.615507 -2.943706 -10.372112 -30.851741 -26.686912 15.343076 -10.823201 24.232835 -15.161802 18.704916 -34.714846 6.993373 8.353715 16.522208 28.287835 16.618583 12.225909 22.117544 37.613833 -22.542889 10.842617 -60.414480 15.181750 -24.568404 14.267095 -23.252615 19.028646 34.334372 25.006991 33.590404 -60.543402 39.099650 8.849891 -9.994096 -37.349010 13.188649 -3.040980 -12.969752 -10.823472 34.856462 -15.602529 -5.960298 -7.429809 20.915020 9.157501 -30.522987 -10.453982 -0.687238 24.655582 -37.132181 19.090156 -6.490696 -20.564968 1.652792 19.886048 36.305908 27.771363 69.227245 32.625243 -14.530314 23.493021 -52.433989 12.052267 55.227932 4.214056 -38.781261 50.831446 -37.799735 -10.239284 3.067003 40.195419 30.760644 14.747533 -25.274055 -20.333840 22.218570 15.927816 53.347289 -7.500473 9.731744 -41.275841 12.351647 -5.200383 7.345758 71.926592 17.799247 -53.513947 14.939589 35.751741 -20.422910 -20.824715 23.190817 -34.818753 -12.317845 -17.459496 22.333146 32.728188 -32.345825 -27.943309 4.326892 -37.457400 34.355173 -15.448140 -28.492595 14.003864 -45.569211 -9.497691 59.638529 6.916253 -11.144629 -20.029000 -45.065268 -0.482002 -52.305100 12.067112 19.872555 -7.139647 -5.775529 -30.787562 -15.489675 39.734784 4.261101 20.130668 -67.224365 2.434091 32.584463 5.657096 16.362257 -24.569442 -3.070715 5.553231 -5.068722 7.297204 -20.156984 14.878207 43.095177 -36.644318 31.265955 2.013821 -18.439038 17.569601 26.609457 -47.935591 71.652236 12.331529 46.352772 3.946825 18.246176 -19.911758 12.272938 -3.641041 -11.450239 -7.313289 13.105138 -28.967442 -22.782079 14.021443 -12.974920 -42.525173 -1.380264 35.843823 -8.541577 16.587699 -9.997478 -11.896619 -18.945970 -21.567317 25.042746 29.520980 -16.882141 -24.611788 28.215896 34.315228 -8.857513 -0.430661 8.765111 26.189272 46.202709 -55.845453 20.180796 -0.735487 22.181647 -42.314196 -41.746392 17.389692 -22.227614 1.288755 6.953142 -55.481741 -28.527947 -28.666494 24.684722 -26.241062 7.867425 14.753536 59.028745 25.334451 -24.586258 27.675461 -13.897882 14.318219 -0.582125 -0.606470 17.547013 31.577833 +-11.564187 9.489258 3.373322 -8.881647 26.419072 -3.926606 2.484810 10.494156 -12.767519 20.024722 -7.006924 -0.588947 -4.534101 -21.565251 1.784687 -8.109751 -2.432912 8.710856 1.416501 13.075326 7.999970 -11.961238 2.233154 -0.254647 -7.772165 -16.233061 -2.242785 7.771359 19.876318 -13.351545 3.124014 0.256006 21.258354 -5.329038 19.597463 15.390459 4.921545 12.163702 5.811552 -16.129853 -6.019272 8.727975 -11.872053 -12.412677 0.252780 -3.087070 -15.401520 -7.185332 8.808807 -4.531187 -6.721635 17.259715 -5.897195 0.072176 -12.985036 15.327808 6.361373 -1.398441 21.960531 1.300832 -3.473687 -5.349005 -19.982841 16.735034 -7.185845 -1.137495 -9.719642 -12.501664 6.314268 -0.015497 -7.274675 -9.839628 -2.486761 19.194837 10.769958 -17.281971 2.156378 -8.952997 -20.343856 -18.673283 -14.980583 6.266195 -2.452617 15.406325 2.580540 7.520832 5.100105 11.452721 -6.687243 -26.971711 6.033424 19.033757 -9.802313 -7.310213 -6.237034 17.980554 4.153439 2.094190 -9.948619 -5.462622 5.182155 -5.196063 10.045760 -17.827242 12.127507 -18.189553 -3.083400 -4.374020 6.938963 10.911548 11.941488 4.305972 12.770366 20.256668 -15.949353 -2.003449 -18.096068 5.070553 -6.425952 4.898520 -5.597488 11.161600 4.148967 7.256847 19.380808 -28.720753 5.656733 -0.617858 -0.129685 -21.556870 0.069993 -7.823384 -4.301090 -6.766154 10.269958 -3.759671 -2.551146 -7.862990 5.198144 6.574346 -10.885956 -2.385132 6.733930 20.219545 -19.771001 6.260382 -3.850876 -5.941424 -2.055539 9.949820 16.733373 17.366435 23.652993 16.982048 -1.386132 12.412467 -21.015385 0.371446 17.829052 1.686118 -14.905351 21.174532 -16.028541 -7.681366 2.207268 16.617167 15.861265 4.505850 -16.968909 -14.682759 15.087031 6.942572 20.211716 -2.263983 0.761616 -3.828351 16.094964 0.596287 -12.135541 21.459299 5.708677 -16.753949 12.031471 6.840603 -13.626133 -6.493811 13.456023 -17.479333 0.344020 -7.521100 1.499219 11.999513 -8.538917 -3.903832 0.032095 -14.981865 19.269933 -5.080183 -3.619403 10.044918 -12.014582 -14.492597 16.854855 1.639542 -4.722591 -15.480808 -16.050585 -13.618027 -13.991761 6.031323 1.257130 -5.835282 -8.801420 -17.578991 -4.443674 13.295429 6.089260 13.172203 -25.279875 -2.405787 9.805425 10.900512 10.493177 -3.904139 -1.597788 1.925246 -1.744031 2.718412 -4.493144 16.007191 22.952490 -12.129627 11.411302 -5.630520 -8.943522 9.097094 7.854411 -24.416518 23.181596 4.911310 15.869008 0.694310 5.003573 -8.408595 3.221356 5.219496 -4.030275 1.647155 1.134059 -3.839807 -7.501046 0.367566 -13.675756 -13.995366 -5.498867 6.077197 -2.101171 7.118659 -1.881006 -9.015923 -6.636125 -10.851564 4.921556 12.127170 -2.120197 -3.481414 14.583938 2.528536 5.395672 2.054877 1.132526 6.980940 9.643353 -21.350731 0.122281 -4.982761 8.373310 -11.027782 -21.256221 2.573401 -11.279738 -7.629223 9.151315 -20.399688 0.159165 -13.332657 -0.837374 -20.073985 -2.306349 5.306496 24.752129 5.944542 -9.883718 8.345091 -7.780525 9.901179 -1.099417 0.866145 3.910777 10.958554 +-101.397361 87.115146 28.504688 -103.619859 199.196883 -50.779359 7.513903 103.789048 -25.044596 125.641402 -111.056040 18.955942 -31.854004 -158.160232 14.731162 -48.157205 2.584258 111.309371 -22.420151 86.870729 81.338619 -52.905552 30.452507 -58.111933 -53.693334 -120.976913 -10.655856 44.782271 45.036912 -22.409105 34.069149 18.332646 167.168737 -4.211818 132.572860 116.268465 46.894278 162.354274 57.383383 -14.601715 16.365759 69.854168 -57.232895 -163.376148 53.992787 -52.296561 -100.614670 -98.635029 62.390518 -134.337845 54.533800 114.690949 -5.411530 -36.655800 -117.801837 69.924082 99.918114 7.685676 152.897840 41.407741 -74.768498 -11.099475 -118.270930 82.291422 -97.152059 36.485049 3.690738 -121.512621 1.635918 66.311127 44.352743 -81.704202 -85.449201 53.832527 45.146912 -108.758786 43.183424 -50.040581 -72.575411 -97.212081 -82.780759 42.876812 -30.630266 113.644377 -3.346182 42.467952 -40.743323 40.408369 4.537962 -141.807011 -19.188600 122.204034 -54.653942 7.495489 -62.996747 115.732627 45.481161 -33.246634 -69.449541 -53.458716 48.106859 -8.472610 66.437684 -29.593338 -21.855096 -110.110968 50.872549 39.611588 1.546236 79.437904 30.706891 71.939987 61.235706 89.951311 -82.712726 56.407293 -185.990084 43.340214 -34.368795 27.352209 -33.591468 44.572033 39.353660 38.816407 97.627526 -163.242941 129.574674 32.033588 -26.756502 -108.508079 54.004378 -11.478025 -44.904590 -49.482179 92.738113 -6.038553 -19.867833 -19.397120 26.192783 0.113063 -72.093885 -81.474235 -6.598404 134.413300 -112.716842 42.188083 -38.831092 -64.069761 -4.896958 40.400068 70.209638 71.940917 164.517568 112.155464 -21.714283 41.622615 -145.709368 21.448617 174.121546 69.032212 -116.347722 114.397069 -50.848247 -24.936911 45.064890 78.511928 76.560201 58.077824 -107.688428 -112.112331 25.338984 -15.614992 144.993263 56.930465 29.358703 -131.395071 107.931895 -1.496307 -19.548132 206.198689 68.457066 -135.566790 30.156751 105.669332 -114.948175 -78.545960 49.910640 -64.350182 -25.530852 -41.234601 38.106857 69.557567 -96.779967 -114.786657 -22.630965 -123.873738 124.313390 -23.809436 -23.128346 19.166282 -119.887035 -58.357862 167.706701 24.012097 -49.637421 -63.047705 -102.479207 -53.269455 -161.966102 38.776430 49.762671 -47.816442 -62.232084 -106.361131 -20.559478 101.680808 -28.801296 22.747733 -137.071205 -44.736520 85.113673 23.095946 40.315631 -127.778666 -28.914474 7.260975 10.823357 46.495523 -9.082680 83.242095 172.513484 -94.246968 67.461064 66.890540 -23.196115 60.750566 123.442526 -130.689753 172.569865 -23.771980 127.343514 15.268799 57.837728 -58.684703 11.601393 8.835548 -17.333067 -17.944764 58.510539 -89.936599 -46.584943 39.692519 -80.709514 -77.830554 34.479430 86.345546 22.186394 26.098777 10.986881 -58.655419 -38.488205 -67.732070 19.468056 99.862725 -20.667121 -102.943149 55.069625 71.480152 -36.681995 -47.924589 26.510495 62.753066 113.956851 -148.881473 79.849224 -13.494496 3.490354 -134.311767 -125.633341 63.318738 -95.006276 -75.116445 58.924832 -170.004180 -53.251905 -79.614026 74.226836 -123.032720 -5.465644 14.471413 146.813036 53.135197 -32.943563 87.436423 -42.149605 84.027803 4.668955 -3.665506 9.889921 133.157250 +-10.034996 4.711242 0.150790 -7.365771 22.372697 -5.382876 1.139279 8.681769 -6.597522 15.252545 -6.141758 -2.185611 -4.633628 -18.804552 2.634646 -3.875686 0.611559 9.109197 -0.040057 9.340533 7.705236 -8.466103 2.209891 -1.176113 -4.885744 -13.247689 -2.409531 6.507977 13.975084 -10.209079 0.360766 2.075356 19.214100 -3.286247 16.260585 13.049429 6.104251 11.790921 5.110612 -12.592130 -2.974755 8.281772 -9.087806 -12.451030 2.557507 -2.973137 -13.269275 -7.434802 8.102398 -4.591927 -2.430504 14.527728 -4.305955 -0.158795 -11.538221 10.543793 7.257982 -0.466011 17.581056 2.540822 -3.038279 -2.677991 -14.631930 13.359168 -7.893849 -0.435451 -6.771724 -12.195011 2.595504 1.583376 -1.978333 -8.830803 -5.193809 13.122346 8.999258 -12.984310 3.477595 -5.590586 -8.826728 -16.776838 -14.503095 4.521874 -5.088167 13.821696 0.845645 5.310689 2.543093 7.068554 -3.292926 -20.176979 3.730772 13.940565 -8.066544 -3.655273 -5.217369 13.074036 3.954903 0.478250 -8.561276 -7.257987 3.752689 -5.519152 8.649791 -6.440321 9.439723 -10.827918 -1.837668 -3.223492 6.384811 10.229157 9.331505 2.919811 9.061292 14.048263 -11.328695 -2.073579 -15.139966 5.557517 -5.709879 4.103550 -4.034430 9.091161 6.450711 4.384276 14.573594 -22.114390 5.923386 0.652475 -0.014938 -14.301053 1.599070 -5.346781 -4.623229 -6.122398 10.414864 -3.299646 -2.667924 -5.172958 5.245855 5.073118 -9.020170 -0.404428 1.941060 14.600335 -15.591721 5.004575 -4.090896 -7.365467 -0.521459 6.441972 11.550036 14.224043 18.880673 14.972158 -3.877375 8.930125 -18.277998 2.121040 16.604970 0.535238 -12.231232 15.767138 -11.394995 -4.602847 3.686421 13.873093 12.749267 1.824090 -9.641079 -8.213141 8.852243 5.170434 16.710009 -1.213915 1.548228 -7.081664 9.430724 2.539450 -7.498015 20.250457 3.759098 -14.630266 9.577932 7.563436 -11.247254 -5.856797 8.242428 -12.659281 -1.011406 -8.522384 4.648363 10.653140 -9.043840 -4.078799 0.689267 -12.458743 13.760484 -4.270956 -4.656223 8.643164 -11.521186 -9.748463 16.739473 1.339293 -2.906179 -12.140650 -14.468638 -7.048988 -13.397982 5.490295 -0.309509 -4.289440 -5.916984 -13.833039 -4.167175 14.050183 4.336499 9.228236 -21.735830 0.033686 8.160219 7.775377 7.183699 -6.208447 -2.403540 3.176203 -1.482672 1.492844 -3.817503 9.098141 17.816865 -12.054918 5.670411 -1.927432 -6.671667 7.797629 7.142521 -19.008616 19.163575 3.255690 13.326404 0.524664 4.939550 -7.159543 2.302346 3.174966 -1.406122 -0.985434 2.263894 -5.073480 -5.919138 3.561588 -9.398443 -13.144417 -3.177349 6.488314 0.231654 5.680765 -3.410976 -7.617271 -3.556253 -6.413414 4.988625 10.888942 -1.161568 -4.356142 10.774157 3.961242 2.189215 -0.526292 1.619780 5.195410 10.312688 -17.890555 2.193075 -3.162354 7.702193 -8.415826 -17.570658 3.442420 -9.068828 -4.664808 9.585999 -18.104091 -2.101153 -11.074851 1.663679 -14.363062 0.395337 2.944135 19.134343 5.675823 -6.904648 8.198775 -5.052488 7.315946 -1.951117 -0.312131 3.282861 10.177290 +-20.885536 36.888890 17.829540 -13.849881 41.535674 8.393460 -2.158584 18.397588 -25.215226 49.203382 -19.764513 -0.860521 -9.131017 -32.794507 -3.074111 -27.682824 -16.240772 3.695539 2.077321 20.826348 14.357430 -26.663259 0.533052 0.019659 -17.387382 -42.915906 -3.205747 9.244819 50.957604 -23.217171 3.529796 -7.449495 34.756212 -8.399279 32.323228 26.467347 13.245931 27.408584 2.732618 -9.231769 -23.777682 18.254011 -28.723365 -8.512033 -1.038536 -14.629833 -23.849889 -8.113864 12.471193 2.009807 -2.395667 32.724806 -12.747732 2.425425 -23.429981 37.568619 2.486734 2.193335 53.229676 -0.165781 1.827001 -21.872457 -50.210610 32.961207 -10.001681 3.153925 -15.334195 -11.387675 17.367042 -14.681314 -10.981927 -18.067609 1.826465 51.836532 18.550310 -35.760281 -0.661162 -24.887239 -78.677278 -35.102535 -27.532557 11.725879 10.071974 26.933374 7.959836 14.297966 4.884095 34.253888 -19.753062 -63.746493 14.487853 44.591211 -17.134465 -15.200387 -26.814612 42.014601 -0.878493 14.821920 -20.393525 3.050143 12.636501 2.224522 16.401092 -67.859497 15.964353 -60.098148 11.176222 -10.544018 3.318916 -0.608380 22.922529 0.038262 31.638746 55.792328 -42.990460 -1.611851 -37.362346 0.004001 8.897127 11.455398 -7.807578 23.920044 -18.940155 14.414745 44.268206 -62.868782 3.575639 -6.796435 -15.035890 -57.737487 -7.923168 -25.668422 -8.765455 -11.208348 12.484677 -1.083858 -4.591359 -23.247853 7.683634 7.616720 -21.778094 -19.553266 29.965295 55.960112 -35.538543 7.686835 -6.456943 -5.932520 -13.568279 26.612667 38.306144 30.743549 53.794975 28.541736 11.084410 23.091885 -33.012322 -9.274579 27.575570 21.988397 -34.742801 44.964784 -34.440262 -13.293844 -0.525929 30.111207 28.819849 16.751510 -46.248977 -46.126407 30.270663 12.421556 41.256622 -0.005998 1.898025 17.385419 49.403774 -11.048989 -42.280766 30.877801 25.730202 -19.897466 7.073042 0.169769 -23.419630 -9.873644 39.016731 -34.272664 11.675075 -6.425575 -7.362515 16.151683 -6.264549 -0.283361 0.361368 -30.923236 53.405545 -7.100079 17.035130 21.340480 -25.540169 -45.507197 16.514808 -11.067082 -16.821006 -30.864873 -22.608136 -45.343692 -16.925021 12.867485 5.768184 -14.418423 -27.085382 -38.687399 1.752437 20.683570 12.529599 26.604178 -43.767484 -29.606878 15.208700 12.979018 35.472544 2.842547 -2.952539 -6.674797 4.208151 17.721920 -5.581792 48.920241 64.309706 -14.511273 31.976287 -28.347535 -13.082924 8.402028 21.575934 -52.500068 39.543299 9.303302 10.891914 -4.603100 9.416422 -14.374146 4.732852 16.282421 -5.851017 16.832349 -0.725065 4.499255 -11.485272 -17.299758 -43.232446 -10.888289 -12.498556 -0.463799 -17.027295 13.619844 4.633111 -14.519625 -16.996677 -33.560123 1.579737 23.460972 3.846737 6.366311 27.428925 -11.756053 18.056579 28.300847 1.562499 8.991849 15.031974 -36.485118 -13.960394 -12.023225 3.847150 -19.664205 -46.527058 -14.090624 -21.789015 -26.891276 19.402119 -38.625889 10.794511 -27.029928 -12.064479 -46.876838 -13.552972 11.911294 51.530519 19.976643 -22.625538 10.674992 -15.535101 28.599079 2.177716 -1.089298 14.176714 23.182897 +-4.061166 1.971188 -0.196070 -3.057621 10.982054 -3.138791 1.339697 6.546609 -3.382545 6.057777 -2.914804 0.949323 -0.716610 -6.503838 1.237140 -0.410518 0.238197 4.964436 -0.944265 2.989691 2.911654 -0.953228 0.321310 -0.571097 -2.610654 -3.859452 -0.954694 2.729873 4.130673 -3.585158 -1.056282 1.557510 8.182630 -1.960544 7.308739 5.418668 3.629863 4.574390 2.131763 -3.890518 0.559921 2.426378 -3.136827 -5.104897 0.711434 -1.350569 -6.135377 -2.767606 2.871210 -3.312555 2.170644 5.086317 -0.737823 0.326028 -3.255864 5.147717 2.136543 -1.482050 6.705443 1.688158 -4.308707 -0.613293 -5.611359 7.868784 -2.570239 1.462841 -2.932117 -6.514421 -0.258861 2.080094 2.156644 -6.167426 -2.925997 4.573665 2.348436 -4.787138 2.093573 -1.783394 0.549515 -6.828499 -5.277204 2.303908 -2.735342 4.786672 -0.017604 1.753211 -2.309635 2.124269 -1.505296 -7.720145 0.376606 6.496880 -4.341828 0.130005 -5.331894 2.736879 1.470175 0.206258 -3.180747 -4.795795 2.001155 -1.263388 2.868085 -2.837000 4.085051 -3.195642 -1.027106 0.091551 2.361697 4.996236 1.472545 2.430033 4.170833 5.307567 -2.168741 -0.013575 -7.002386 3.254982 -3.231207 1.536977 -2.075673 2.913763 3.735383 2.584072 5.681794 -8.437478 3.135079 -0.174877 -0.779199 -5.583689 1.156899 -1.491647 -2.411603 -2.625836 4.154504 -0.582606 -1.211408 -1.844312 2.427056 1.546849 -4.189948 -2.595051 0.414747 4.351061 -7.051450 1.509893 -1.471294 -2.121402 -0.711614 3.365363 5.157429 5.238813 7.520560 5.412595 -0.567119 2.580926 -8.407323 0.883515 6.381771 1.420799 -4.955144 6.607796 -5.141195 -1.649029 2.050586 5.498474 3.261370 1.367872 -3.807921 -3.334618 3.415390 2.002507 7.061998 0.623277 0.362965 -3.837385 2.111815 -1.490448 -2.902718 9.112262 2.624773 -7.027510 2.542632 3.217973 -1.231045 -2.817446 3.585903 -6.219018 -2.457736 -2.438527 1.738996 4.270535 -3.697436 -2.016303 1.950740 -4.697213 5.543035 -1.797298 -3.715600 1.737883 -5.161077 -1.944780 7.996812 1.143266 -1.015479 -3.321594 -5.367484 -1.938958 -5.830892 1.371353 1.366767 -0.816728 -2.827666 -5.248878 -1.534976 5.974523 0.411427 3.216719 -8.287307 -0.459194 3.677219 1.031707 2.529266 -5.919858 -0.697076 -0.714385 -0.187436 0.697460 -2.657251 3.102561 7.558203 -4.227996 2.831766 2.466228 -2.578351 1.532309 3.317585 -7.287226 7.655051 1.382631 5.321727 0.922653 1.776048 -3.325702 0.219666 -0.162819 1.635933 -1.467218 1.959330 -2.491066 -1.894086 0.569319 -4.120114 -4.932241 -0.402267 3.509601 -0.850276 1.722406 -1.916368 -2.992294 -2.274345 -4.809078 1.516317 3.998135 -2.418781 -2.827366 4.743058 1.430613 -1.674852 0.531711 0.470775 2.982696 4.614398 -6.717518 1.244773 -0.114257 3.133620 -5.754818 -7.298062 0.843379 -4.074743 -2.663189 1.708057 -6.881374 -3.464108 -3.728974 1.648044 -7.119372 -1.246581 2.334963 8.202304 1.956414 -2.232669 3.487980 -1.908707 3.397363 -0.283287 0.558085 0.868353 4.062344 +-111.419314 97.832814 30.155213 -112.761669 222.445461 -53.411148 8.990337 110.702392 -31.785731 144.889346 -119.252722 14.216098 -36.809183 -181.146384 15.410726 -60.265821 -1.584099 120.517106 -21.732048 97.779527 88.831235 -65.422943 32.648424 -59.613862 -59.650842 -141.017159 -13.458209 50.788064 62.088526 -34.205842 40.730730 17.202372 187.522804 -6.666914 147.251099 129.360302 50.007845 175.542358 62.130607 -19.312297 10.471034 78.425939 -67.187044 -174.689667 55.154611 -55.074258 -113.916776 -106.655019 69.257536 -140.583082 51.548147 130.257423 -10.649932 -38.143037 -130.179834 82.844095 107.875113 9.150143 172.571216 42.877973 -75.133911 -15.276175 -138.846253 97.570786 -105.034031 36.130866 0.407418 -131.146594 7.455176 65.103707 39.027927 -86.696996 -88.101973 71.451946 56.690601 -123.973544 43.628152 -59.646676 -102.043624 -111.378011 -96.316272 47.971142 -31.411402 127.900649 -0.801887 48.585678 -32.651798 50.995677 -0.891324 -165.958685 -15.030168 141.076741 -60.343910 0.462894 -71.073272 133.526985 49.162764 -31.628036 -78.666054 -56.756197 52.255818 -11.741802 75.286386 -45.037391 -21.068707 -130.615937 52.093722 37.685654 3.879062 86.126524 44.159176 73.556113 70.057710 108.719900 -102.489420 57.153404 -203.277015 46.794114 -35.317069 32.353670 -37.207586 53.169279 38.833178 45.572873 113.969226 -190.389719 135.710798 31.949780 -29.247092 -128.774382 53.096058 -18.678396 -48.856337 -54.786970 100.491366 -8.063059 -21.754771 -25.592404 28.828236 5.263368 -81.404263 -85.657250 0.684754 154.870030 -128.333679 47.371353 -42.244923 -69.607055 -8.213662 48.804218 84.477489 85.239255 186.303990 126.213649 -21.197648 51.872279 -162.745889 21.071584 191.798778 73.662474 -129.886164 132.825314 -62.151182 -30.050669 45.729092 93.432877 90.498300 62.744855 -124.390871 -125.868635 36.046976 -12.398151 162.201508 58.167242 28.675387 -134.672460 126.234927 2.349628 -31.666033 227.320768 77.791996 -146.616516 38.567305 111.239539 -133.715582 -85.910024 62.015861 -76.033641 -23.150217 -47.150259 39.937008 77.845934 -102.279939 -119.438612 -25.259342 -137.594486 142.894786 -28.032487 -22.485779 28.643657 -131.292721 -78.008929 182.220831 22.109688 -55.215420 -76.357590 -116.077007 -67.171516 -173.691819 45.084394 51.285122 -54.837090 -70.484748 -121.274320 -21.895289 115.747168 -25.098790 33.807934 -157.001287 -50.906480 92.802810 32.067795 50.770309 -132.568453 -30.937812 8.983127 12.310432 50.246741 -8.465239 98.237193 195.738059 -103.851754 78.434934 60.293652 -30.690564 68.161824 132.693940 -152.365800 192.465511 -22.512722 137.990570 14.160246 62.446525 -63.985897 14.050463 15.503452 -21.926659 -14.681105 58.996416 -92.778944 -52.420040 39.877462 -96.104607 -88.341679 31.745040 90.331991 21.739902 32.327531 10.762173 -66.896313 -42.918849 -74.439267 22.298485 110.939290 -17.331403 -104.903301 65.691499 73.234650 -30.237205 -45.466758 27.598942 67.904774 122.524545 -166.837351 80.744739 -18.626752 8.612631 -142.770855 -146.385639 65.581922 -106.678981 -85.340127 67.848384 -189.056549 -52.200318 -92.065310 73.440403 -141.162501 -7.663801 17.832321 168.340467 60.722976 -40.881440 94.254128 -48.612157 94.233554 3.601814 -4.878803 16.448399 144.823510 +-9.633203 19.572127 21.342610 -6.875358 49.054255 -16.155765 1.841431 32.239437 -36.523458 46.208712 -24.375737 -8.539256 -6.416960 -28.390109 3.821166 -14.022505 1.950607 18.921375 -0.364256 9.992015 8.424750 -8.633363 2.279068 -1.007491 -3.059256 -12.657152 -4.100796 6.728569 47.360392 -21.025762 7.921940 2.978213 28.151875 -2.701030 30.831745 12.780840 -8.680279 31.948230 12.530679 -18.187636 -2.975201 9.456877 -8.941191 -32.870877 3.290545 -2.151030 -12.786967 -21.877320 8.829064 -1.199574 8.444482 14.788913 -4.593295 -0.124375 -12.439889 39.940849 26.777463 24.331510 30.641747 3.077195 -0.200548 15.173208 -47.809341 -14.568731 -7.876313 0.830921 -21.926505 -12.486645 1.143025 0.793944 9.041782 -34.036706 4.782851 45.606211 10.028272 -11.157288 4.629642 -4.562754 -53.279653 -39.644869 -26.231904 3.491766 -3.061897 14.426981 -0.366943 4.746346 -6.699923 20.429591 -2.212301 -52.101298 3.793843 29.514910 -7.298542 -17.599463 -6.768793 11.921352 3.912192 0.213051 -10.328351 -16.387901 3.012878 -7.367128 9.316970 -32.452314 28.277980 -26.852461 17.068412 15.315607 7.251542 16.262036 36.777586 2.053447 22.444286 45.714581 -29.320195 5.436896 -41.840027 5.045447 -8.740238 4.614070 -3.323515 25.370945 6.799841 20.874186 27.418991 -64.073812 23.133028 0.969901 0.879107 -44.917983 2.561838 -4.934521 -5.016982 -6.517136 11.526201 -3.614358 -3.644314 -4.130169 5.174424 6.014129 -16.036040 0.290694 14.935110 54.241642 -40.798205 4.872525 -4.820390 -9.960800 0.911753 4.933137 29.399913 14.738407 32.144656 15.950480 -6.857528 -22.460534 -27.076632 3.645136 34.254942 -19.177472 -11.972960 47.712822 9.624317 -3.346522 3.951416 23.524291 13.968106 9.944413 -37.957210 -37.104013 9.984277 5.701570 15.417462 25.585487 1.820174 6.328683 24.683718 -19.874443 -41.192464 49.543909 0.859398 -13.723652 -11.136123 7.690711 -21.073848 -6.496521 20.757451 -30.170236 0.866216 -11.233512 6.875011 10.998605 -9.790618 -22.097717 0.718147 -11.862597 44.682634 -4.878056 -17.098454 9.160984 -12.602180 -4.042747 27.963926 1.501359 -2.493082 -12.750830 -24.855298 -34.248063 -12.949291 6.771191 -2.657476 -2.690296 -5.454584 -12.513205 -4.142258 24.978775 5.072348 8.904179 -13.208282 -17.577465 7.149117 8.283782 22.593505 -18.758026 -2.836298 5.248917 -1.954968 0.193446 16.955386 38.961695 70.075350 -13.819662 19.573592 23.760686 -1.477483 8.169810 26.541128 -51.690921 18.646820 -15.987289 23.763532 -1.192351 4.814041 -6.426619 2.275672 4.525397 -9.755616 -1.340912 2.042658 -4.153791 -5.808634 -9.474132 -39.784436 -23.607997 -3.413056 7.035822 -13.985695 6.386054 -14.099356 -7.584667 -2.077142 -30.538618 5.880264 11.476249 0.676794 -23.392511 9.693871 4.176726 2.976822 8.397577 1.896624 3.539682 11.378088 -17.725372 2.126689 -3.588374 17.995775 -4.887711 -25.471156 3.228741 -7.965582 -18.681324 11.620042 -24.823877 -10.758776 -11.214924 2.414145 -52.877339 -6.877911 1.724824 50.481869 7.944899 -6.562253 8.107800 -4.139776 6.567180 -3.165936 -2.876119 4.116007 29.662313 +-3.672046 4.204228 1.958880 -2.313544 7.425251 -1.091912 -0.190395 4.433213 -4.298947 6.279508 -2.776884 0.801780 -1.242083 -5.977151 0.030860 -2.131619 -1.180074 2.649847 0.183980 3.003315 2.602476 -2.841155 0.043473 -0.234726 -2.670042 -4.036707 -0.624905 1.810150 6.022430 -5.003515 0.478792 0.093094 6.586152 -1.486155 6.930155 4.814890 2.272527 4.496747 2.002870 -3.503367 -2.332038 2.909926 -3.722270 -4.333624 0.292780 -1.700337 -3.312286 -1.972487 2.420922 -0.550022 0.186988 4.694545 -1.543557 0.601450 -3.588515 4.908327 1.155576 -0.427045 7.467557 0.464784 -2.103002 -1.262482 -6.454163 5.858356 -2.564055 0.939384 -2.420062 -3.121337 2.079768 -0.909432 -0.757012 -4.126796 -0.772259 6.522581 2.081370 -5.186215 0.411800 -2.860468 -7.294160 -5.359906 -4.783644 1.835653 0.013896 3.924631 0.531769 2.009489 0.308735 3.982902 -2.286786 -8.798300 1.686824 6.370056 -3.587312 -0.871729 -3.145586 4.974375 -0.235782 1.529099 -2.862003 -1.252016 2.074188 -0.467763 2.703005 -6.956385 4.202478 -6.134031 0.907299 -1.851708 0.674775 1.787428 3.722710 1.296526 4.873987 7.132158 -3.876685 -0.812915 -6.580347 1.103327 -0.856906 1.411562 -1.093114 3.271936 -0.254110 1.566293 6.217585 -8.884542 1.800839 -0.706902 -0.879111 -7.776058 -0.038461 -3.074099 -1.723998 -2.340710 3.052857 -0.172633 -1.032869 -3.174921 1.049382 1.548273 -4.514991 -3.799811 2.669272 6.650097 -5.750986 1.227470 -1.329131 -1.644418 -1.408629 3.456112 5.374893 5.003312 7.585972 4.926909 0.454095 3.015684 -6.290847 -0.954404 4.819678 0.957316 -5.226268 6.671070 -5.162669 -2.262726 0.980827 5.150879 4.352755 1.841054 -5.701311 -5.693466 5.258718 1.942415 6.060004 -0.581327 0.500792 0.682377 5.594680 0.706610 -5.160756 7.334910 1.331487 -5.260481 3.332593 1.091226 -1.174398 -1.951308 4.712755 -5.760856 0.085908 -1.516851 -0.222437 2.927393 -2.700267 -0.665723 0.855093 -4.887875 7.143462 -1.358770 -0.531168 2.681581 -4.793178 -4.930011 4.788617 0.015967 -1.957610 -4.411876 -4.312837 -4.529372 -3.931085 1.793446 1.293537 -1.648212 -3.491228 -5.434043 -0.037097 3.857411 1.495318 3.978761 -6.742364 -3.105031 2.882842 2.216430 3.809015 -2.457722 -0.629563 -0.391607 0.274590 2.309741 -1.405945 5.784125 8.915894 -3.111269 4.541332 -0.229915 -2.681990 1.599071 3.184757 -7.800438 6.589083 1.030090 2.746165 -0.009180 1.397067 -2.974002 0.324320 1.636675 0.700389 1.090761 0.032709 -0.230074 -1.794518 -2.237171 -5.795990 -2.437150 -1.521104 1.151034 -1.124948 2.029034 -0.586537 -2.142524 -2.411891 -4.675475 0.540573 3.915622 -0.803282 -1.208323 4.530177 -0.814044 1.110859 3.268759 0.257024 1.883309 2.936213 -6.047800 -0.926970 -1.242169 1.502275 -3.964855 -6.142716 -0.997098 -3.536538 -2.357439 2.162451 -5.863190 -0.254888 -3.649278 -0.504558 -6.681672 -0.649685 1.383910 7.923886 2.875929 -2.816082 2.488987 -2.300368 4.148432 0.874778 -0.061478 0.908470 4.160165 +-57.730227 30.382523 -2.600419 -55.182002 121.738258 -37.076505 -1.330345 59.570194 -4.953131 76.483290 -54.941024 -2.064486 -20.610752 -95.801039 12.197660 -22.461688 5.527605 62.267897 -13.509712 42.549172 44.640821 -23.642371 17.719596 -24.456307 -29.124633 -69.143429 -10.094633 32.052554 31.201295 -27.032014 9.774043 16.334610 103.840455 -8.313215 81.765345 70.181566 34.479609 85.878277 33.371798 -12.670191 11.575067 38.763817 -35.149013 -88.012923 23.538693 -22.183072 -69.645298 -52.856310 40.608922 -63.930162 34.568458 71.511805 -6.906765 -15.137145 -68.652974 43.847728 44.653111 2.350083 89.391354 22.433860 -45.177831 -4.450218 -68.115488 67.867896 -56.439712 16.756558 -8.315967 -71.120919 -0.610534 37.969017 20.540319 -51.535278 -50.298083 37.607404 33.109827 -64.079170 23.657878 -25.977286 -21.443108 -59.109251 -56.184538 28.114425 -24.219690 65.211473 -0.526020 26.354173 -18.060329 25.013901 -2.642673 -86.043436 -1.967333 74.276960 -37.732103 0.706544 -42.626692 61.946730 27.570655 -19.011314 -35.542910 -35.230788 22.519889 -16.401237 42.595674 -10.625272 2.114066 -57.881777 20.907940 14.150106 12.083874 50.568412 23.342776 30.735103 37.096553 53.112461 -39.948228 22.421259 -105.302776 31.496661 -24.269503 15.130713 -22.640638 30.518154 35.314758 24.731421 59.421679 -99.383675 64.993637 12.185646 -10.951257 -61.602792 23.960565 -5.709830 -26.078696 -27.047957 57.641517 -8.875669 -13.465419 -11.185131 23.654966 10.960271 -44.563644 -32.988268 -1.798016 65.604454 -58.161116 27.102943 -21.392892 -38.369363 -1.746242 25.623067 45.962277 51.992616 102.287559 68.590644 -15.842313 21.970677 -93.256716 14.603486 96.711352 21.793115 -66.248340 73.503717 -41.144121 -17.363326 20.435244 60.326594 48.349141 27.593158 -48.365301 -46.948320 15.203809 4.497804 85.322346 19.599598 14.049008 -65.636702 42.742686 1.597437 -8.535322 120.455155 37.447870 -83.353873 21.665956 61.813920 -58.254475 -44.274394 35.239165 -44.663254 -15.809710 -33.896327 31.436845 48.962930 -56.948598 -49.898868 -3.516737 -67.557392 65.992928 -19.761922 -27.420682 21.716941 -74.315105 -29.233995 99.841822 12.635309 -17.543705 -38.768112 -70.553039 -23.858074 -91.865777 23.790773 24.753815 -21.278526 -27.411251 -60.957254 -16.402468 68.885642 -4.937244 29.038996 -85.120559 -12.169742 50.904144 18.708666 23.036098 -64.482331 -14.277897 8.522184 4.241777 19.273500 -12.883658 38.480166 93.953395 -58.980170 37.773306 32.869905 -16.337806 33.396928 60.847896 -84.466730 104.235874 -0.691428 63.466217 9.763946 30.059684 -31.794186 8.956629 3.481281 -7.251448 -13.523129 25.676423 -49.699160 -30.227752 27.706797 -42.567067 -53.912119 8.496722 53.898458 7.783156 20.847586 -6.862170 -33.813123 -23.549885 -41.266327 24.290628 56.234520 -10.335513 -48.625291 43.696517 43.763915 -23.914812 -17.914171 12.435707 35.559663 67.741321 -91.162220 39.316489 -5.693036 20.544475 -70.047831 -74.334556 30.919326 -48.033432 -33.987644 29.187486 -96.890153 -39.918102 -49.231102 38.669440 -69.137983 -2.712410 10.334499 92.211955 35.696969 -20.928634 47.164570 -23.862710 36.452772 -1.589742 -6.359808 17.536693 70.490292 +-32.343219 21.187849 -2.311604 -29.405648 66.678995 -17.337544 0.329087 34.767264 -5.967051 42.972932 -32.565029 3.647267 -10.045365 -50.465272 4.810812 -7.315510 2.424958 34.568469 -9.188515 18.783729 24.252657 -13.904225 10.483235 -14.945285 -16.707337 -40.585865 -3.490444 15.490413 17.485691 -11.465779 0.823523 6.496868 55.115584 -6.396905 40.332833 36.088167 20.091076 46.655946 18.239805 -5.992536 6.764001 21.449059 -18.863362 -48.152472 14.015572 -15.811729 -35.816047 -27.716807 22.467725 -38.740165 20.406668 36.400603 -2.461791 -9.898826 -34.669389 27.147726 29.215159 -2.013151 50.556858 12.017179 -24.141722 -6.106266 -35.810515 39.371992 -32.152491 10.631780 -2.836102 -41.866282 -3.979727 21.544406 11.251439 -26.132854 -26.780948 19.026531 15.799404 -35.955441 11.672406 -14.427783 -12.683002 -33.454213 -30.603630 13.987681 -12.794575 35.735994 0.072872 12.944736 -9.769345 12.866726 0.293493 -46.840597 -4.017557 40.502041 -19.094554 4.653828 -22.880556 30.328877 13.462573 -10.317902 -20.286437 -19.764294 12.065667 -4.038242 21.540911 -12.459160 1.128150 -31.662717 13.538979 9.511583 4.952240 23.561804 11.708160 15.526528 17.654705 29.911971 -22.027177 11.250857 -58.661505 15.749181 -7.999016 7.880092 -11.695953 13.997868 18.011443 10.998895 33.927180 -54.381378 37.960704 6.198146 -9.000907 -35.503718 13.585197 -2.898551 -14.696827 -13.711424 29.837255 -4.968469 -6.568622 -7.147766 13.470455 2.551746 -29.229279 -19.852918 -2.251949 37.998393 -37.595266 13.686167 -12.048723 -19.973918 -1.633172 15.017825 24.034176 26.054426 53.913085 37.058494 -6.456186 15.972763 -49.987275 8.987848 53.803968 20.082492 -37.091936 37.324541 -22.912509 -7.184405 14.893215 28.586570 22.997768 18.013998 -27.396468 -26.217374 8.993130 0.221705 47.264807 12.970313 9.806119 -36.904908 26.416619 1.097270 -5.000042 65.982793 24.769783 -46.450276 15.957874 33.021948 -30.277724 -21.302937 18.194149 -24.982373 -10.041753 -17.036464 13.491271 26.186018 -31.390250 -29.866569 -3.072587 -37.309765 40.208192 -8.436469 -11.618872 12.728217 -40.834687 -13.357076 51.203184 6.936253 -11.030871 -20.775370 -34.942325 -22.366703 -50.630705 11.811964 14.662197 -16.547951 -18.001023 -35.609219 -8.685031 37.700223 -4.155894 12.578240 -49.638167 -7.459596 28.077547 11.082017 14.143921 -36.090847 -8.112079 3.148453 1.269961 12.796039 -8.520348 23.417699 50.538607 -31.374407 22.833557 17.313303 -9.610341 17.683947 33.833582 -42.531217 54.204443 -1.667818 32.603374 6.121930 17.957324 -18.466431 6.093257 0.265446 -1.910908 -7.215242 16.723401 -29.549052 -16.210709 14.017748 -27.143154 -27.843669 7.391138 27.883942 9.119263 8.691049 -3.069454 -18.213970 -12.146493 -23.371855 7.924777 30.458523 -6.246444 -29.064635 20.751068 20.598332 -13.906163 -11.318213 8.186217 19.219549 36.160986 -47.519913 21.822073 -2.467392 6.729305 -43.045297 -41.338733 13.795491 -26.508927 -22.895248 19.164002 -55.461396 -20.502470 -25.120510 21.529479 -41.558834 -1.379635 4.845861 49.830153 15.324147 -9.327516 28.599848 -11.265365 23.385309 -0.086586 -1.933718 6.471757 38.146702 +-21.596273 20.183318 13.231484 -20.759997 40.067152 -9.083221 9.746691 17.248319 -13.390859 25.805388 -22.606722 4.219785 -6.440114 -28.739133 2.838334 -16.273045 -3.028220 20.254630 -2.904320 21.801235 17.114041 -12.274393 4.172246 -12.110401 -10.957511 -24.324997 -2.787518 8.458828 13.978193 -2.898734 10.181473 2.142317 31.348045 -3.157883 28.734717 26.542355 6.180594 30.860344 6.186414 -8.538662 0.447328 16.211075 -14.326685 -32.315862 7.488141 -9.647727 -22.275244 -22.321514 12.530147 -26.436320 3.114357 24.591933 -2.975797 -6.766145 -21.771445 18.379149 21.233655 0.827561 31.349235 7.831380 -12.361525 1.984069 -26.606159 15.899575 -15.094907 7.925619 -2.680585 -25.222229 3.251583 9.480479 4.892903 -16.050317 -13.595573 14.735382 10.285309 -23.014914 7.712600 -12.888502 -24.633949 -21.515855 -15.626420 7.322517 -3.152276 23.594333 -1.285388 7.759715 -6.607827 10.619439 -0.218719 -30.590989 -4.212866 29.841299 -10.229799 -4.392324 -13.987409 23.737363 12.644836 -3.938238 -14.523751 -8.991932 10.069937 -1.527287 14.080583 -11.710729 -3.042988 -23.515769 3.244132 8.437016 1.458945 18.862267 0.992228 16.625778 14.636769 19.575432 -18.757199 15.789489 -34.536792 9.641852 -11.561875 7.284076 -4.445475 10.697874 7.433123 9.500508 21.081926 -32.353826 23.065664 4.763013 -4.455670 -25.441113 10.126926 -5.625053 -9.576027 -11.585881 16.944500 0.998065 -4.711431 -5.908240 5.360242 0.559776 -8.115387 -15.822864 2.342299 26.915862 -23.608689 8.246185 -8.212782 -10.330898 -1.748726 10.616326 15.715796 16.062495 35.097238 25.552270 -2.267991 8.715876 -28.269080 2.205319 32.956412 11.903949 -23.034290 23.973366 -11.538015 -7.780662 8.790036 15.708465 16.390467 15.815528 -27.141135 -26.091196 6.231240 -4.760838 30.582269 14.367829 4.488458 -24.246756 26.130212 -7.107911 -10.124176 36.012943 17.346265 -27.745269 6.392970 18.573367 -25.140021 -19.072653 12.537926 -15.358399 -5.328662 -6.567860 5.052655 12.565863 -16.992800 -22.441937 -3.977852 -26.095935 26.493732 -5.400937 -3.354429 3.561928 -21.278447 -17.366812 30.809714 5.996847 -12.317658 -15.214642 -18.216512 -13.662189 -30.812804 9.927479 8.626841 -8.160166 -18.291929 -23.078544 -2.407006 16.334181 -5.787993 7.574250 -23.433890 -11.501105 15.980371 7.573616 11.944494 -24.653599 -6.359464 -2.518625 2.312900 9.462696 -0.578380 20.322812 39.386586 -18.656669 12.534586 10.540527 -9.274463 11.447036 26.172209 -29.425112 34.498477 -1.774152 27.249352 1.781433 10.855738 -12.709130 0.770869 4.678307 -6.180075 -1.111741 11.878265 -14.801738 -8.613011 4.669417 -19.380737 -13.283520 6.280214 15.309302 0.350375 6.334516 5.820103 -16.341564 -8.248256 -17.568154 0.840209 22.072732 -4.989034 -20.819532 12.404344 11.027658 -6.158395 -10.265294 4.045137 12.506853 20.419819 -30.727106 14.613857 -5.182527 0.007594 -27.080777 -25.950022 13.096341 -22.741692 -20.108862 12.309996 -28.198753 -5.864137 -18.839681 11.396267 -28.866932 -10.880407 5.012513 30.760628 10.463476 -6.108992 16.630074 -10.446020 21.060462 1.220104 -0.010368 1.720865 25.934018 +-15.852698 7.556193 -3.276107 -19.803830 42.224538 -9.349668 -1.753433 26.033924 -4.200132 23.614461 -14.131361 4.970691 -2.810474 -30.491815 3.770779 -4.806540 2.283408 17.132114 -7.261907 12.859900 12.128264 -4.061942 7.611868 -4.423459 -12.383148 -21.060274 -0.778617 12.292987 10.338453 -9.389597 1.922189 3.291279 30.964496 -5.985424 25.085869 18.007258 16.653770 21.386397 10.795779 -8.189566 5.534695 7.358435 -9.942810 -23.917263 4.067927 -5.980805 -26.708737 -11.404867 13.195006 -21.235221 4.063475 21.840233 -0.504796 -4.339124 -17.823026 17.326669 9.137322 -7.072029 26.494936 6.988735 -18.942503 -10.082621 -21.861080 24.801498 -16.169477 5.814151 -6.228068 -21.697027 -4.711789 15.814602 0.292304 -14.706519 -13.990325 10.511494 13.134878 -20.631636 8.630352 -8.302108 2.391768 -19.261425 -12.203747 12.911888 -7.972539 19.397973 2.626628 11.590912 -0.319020 7.939792 -4.987851 -29.057450 2.744704 21.303605 -15.430641 -2.028787 -18.263023 17.325774 2.721649 -5.921355 -12.940636 -15.944516 8.649132 -4.032599 12.245170 -12.184596 6.647229 -18.827832 3.307228 6.007842 7.282270 16.122722 4.087794 7.689918 10.482517 19.347578 -11.201412 5.968877 -33.130493 10.067067 -11.280975 6.180589 -12.779345 8.721015 17.133147 13.761605 19.176395 -31.553579 22.154366 5.300637 -5.337274 -19.456910 7.482127 -0.527427 -7.203992 -6.122311 17.295709 -6.909548 -2.284395 -4.016321 11.787789 3.593448 -16.816616 -7.842592 -1.408854 15.298319 -23.516964 9.461168 -3.999970 -9.084630 -0.129045 11.095735 18.283877 15.301637 33.545381 18.087154 -5.163286 14.040917 -29.734246 5.984203 30.635302 7.630541 -19.280337 25.717290 -19.041365 -5.685786 4.337883 19.406281 13.186133 8.551787 -16.298342 -13.593192 10.176656 6.028710 28.499889 1.813349 3.789901 -22.674295 9.725737 -5.047269 1.664452 35.752674 14.185144 -28.105037 9.375661 19.265821 -13.456739 -11.503120 11.380624 -19.572873 -6.921642 -9.379024 9.142228 17.483389 -16.537404 -15.664128 0.616675 -18.906147 19.701195 -6.695684 -12.825319 5.898637 -21.109319 -5.299120 29.863841 3.501138 -5.766449 -11.305884 -22.418015 -8.573965 -28.459913 5.180775 9.350499 -6.948669 -4.307766 -18.780863 -9.221278 20.388547 -0.017105 8.265603 -36.423283 0.446418 18.012812 5.728875 7.326281 -16.203101 -1.456571 1.260396 -2.854958 3.978150 -11.423597 10.847101 23.965947 -17.577313 17.102679 1.937951 -10.743426 9.276112 15.807031 -25.298829 35.940588 4.465825 22.245636 4.916570 9.339455 -11.299970 5.588307 -3.441611 -6.723126 -4.414332 9.122167 -17.693248 -11.368048 7.982631 -9.852091 -21.831921 1.080535 19.183151 -1.077251 6.369991 -3.874590 -8.384285 -9.371303 -15.255135 10.207491 15.271949 -9.798876 -14.523226 14.963882 17.563428 -6.741146 -5.185323 4.079733 14.567064 22.766015 -28.138889 12.000708 0.120142 10.714788 -26.114786 -25.493322 9.862451 -13.916113 -6.562042 3.974448 -31.590336 -15.875376 -14.186208 13.275050 -20.335962 0.819447 9.216922 30.485492 7.047990 -9.285265 14.379869 -7.372825 9.102376 -1.235139 2.046006 6.282146 17.459689 +-5.485451 3.635078 1.419352 -4.495214 14.295739 -2.210282 0.898575 6.962372 -4.092234 9.748218 -3.861839 -0.150512 -1.934263 -9.868655 1.030067 -2.717495 -0.712096 5.167410 -0.724244 4.735502 3.973094 -3.524973 1.110946 -0.469407 -3.907587 -7.946881 -1.637141 3.836541 7.077459 -5.259086 0.808372 0.799547 11.261954 -2.548731 9.566678 7.438115 4.150691 6.518496 3.017004 -4.587835 -0.930012 3.930457 -5.319947 -6.615552 0.796540 -2.067362 -8.198851 -3.996026 3.957291 -4.138893 -0.409644 7.925823 -2.031882 0.031976 -5.270044 7.203054 2.774797 -1.579372 10.123736 1.456040 -3.760220 -1.512292 -9.329696 9.825575 -4.176175 1.083460 -4.252151 -8.005379 0.878938 1.446494 -0.376172 -5.260484 -2.796969 7.871034 4.556497 -7.678457 1.557199 -3.803889 -5.544509 -8.893902 -7.042372 3.373047 -1.909837 6.833395 1.062719 2.995537 0.689427 4.402408 -2.674340 -12.126396 1.776375 9.342080 -5.307746 -1.669539 -5.418306 5.864653 1.962934 0.655097 -4.327043 -4.043242 2.548511 -2.026271 4.470766 -5.593557 4.869433 -7.117140 -0.913068 -0.471350 3.306666 5.132941 3.520013 2.024532 5.725606 8.465492 -6.110174 0.141060 -8.942928 3.636616 -3.103690 2.170593 -3.094798 4.638237 3.253538 3.599562 8.854057 -12.865375 3.516722 -0.388021 -1.463424 -8.661563 0.559393 -3.058250 -2.729176 -3.214539 5.302586 -1.312022 -1.191436 -3.342999 2.739099 2.357703 -5.262391 -2.742835 1.884306 8.096211 -9.413246 2.647239 -1.912413 -2.989216 -1.145081 5.113006 7.782706 7.905488 11.209616 7.957049 -0.580568 3.956346 -11.252905 0.575562 9.277177 1.384310 -7.292754 9.779659 -7.469876 -2.825557 1.744061 8.207786 6.114612 2.166393 -6.517295 -5.695004 4.764203 3.017878 10.289177 0.543523 0.508165 -3.902502 5.086826 -0.699271 -4.807921 11.490721 4.112948 -8.641299 4.170849 4.073530 -5.459774 -3.988469 5.749385 -8.319954 -1.509585 -3.651750 1.468199 6.005473 -4.464209 -2.197779 1.452773 -7.300356 8.792947 -2.343668 -2.463237 4.155348 -6.646855 -6.425746 9.303382 0.723448 -1.828619 -6.258799 -7.942622 -4.590759 -7.846195 2.564586 1.439232 -2.446407 -4.011440 -8.157999 -1.684392 7.175275 1.822011 5.608592 -11.875400 -1.298374 5.035778 2.852164 4.671150 -5.193580 -0.896997 -0.076256 -1.022160 1.380991 -2.880001 5.680250 10.968971 -5.681149 4.926097 0.000784 -4.701685 2.888639 4.264164 -10.840463 11.276949 1.632416 6.285145 0.738706 2.631638 -4.043337 1.330820 1.131384 -0.585869 -0.416217 1.588560 -2.970026 -3.285775 0.544383 -7.093674 -6.726026 -1.534941 3.770697 -0.861753 2.942699 -1.655064 -4.979226 -2.947812 -5.578506 2.301388 5.879641 -1.649549 -2.781040 6.835241 1.630379 -0.006361 -0.320536 0.667968 3.671346 5.454388 -10.128041 0.956870 -1.148927 3.941281 -7.103636 -9.929768 0.963646 -6.022207 -4.053065 3.384229 -10.207662 -2.205875 -6.185411 0.805836 -9.339411 -1.556752 2.868170 11.969031 2.960173 -4.385765 4.390736 -3.157823 4.891369 -0.206227 0.278459 1.987714 5.457029 +-13.043121 9.513704 0.465479 -12.900036 32.864727 -10.059691 4.250164 13.272544 -8.467110 16.067599 -13.959689 5.577316 -3.178859 -22.559368 3.905143 -5.178946 2.241854 15.254794 -2.642899 10.249690 9.359356 -5.973066 3.781740 -6.466531 -6.380071 -21.675843 -1.094243 7.516582 8.788504 -5.849941 2.073659 4.430961 23.744240 -4.798872 15.948160 16.025340 8.760591 18.280317 8.297097 -12.081446 5.701218 7.678140 -7.018805 -20.370891 3.757637 -3.944646 -19.152395 -11.270819 9.801807 -16.613096 0.412040 15.513318 -1.170342 -4.971589 -16.215176 14.586210 16.043433 -2.570770 19.363147 5.259835 -9.201557 -4.215464 -13.843343 18.453270 -12.911640 1.829386 -4.579106 -17.823076 -1.236073 12.142085 1.518094 -10.600733 -11.753892 5.945506 8.445278 -14.761904 4.784862 -4.952528 -6.865931 -15.811004 -11.883190 6.071385 -7.509640 15.534202 0.566227 5.455060 -2.887820 4.025059 1.492780 -17.527684 -2.886938 18.976598 -7.745485 -1.566110 -9.475772 15.243401 10.152133 -6.930115 -7.762746 -12.608524 4.581158 -5.071971 9.163675 -6.345346 3.375538 -13.327631 -0.112671 3.561751 4.410528 17.841071 0.111248 8.497112 6.036334 9.182646 -10.007351 3.030298 -26.953611 7.865840 -7.749746 2.704984 -5.798237 5.606788 10.174958 8.392358 13.128134 -22.938462 17.684067 3.061914 -0.842634 -12.829152 6.208062 1.350334 -5.494068 -5.723507 12.465890 -2.418077 -2.181707 -0.403089 7.090132 2.947379 -9.834311 -7.035303 -1.789867 18.755526 -20.173593 6.789195 -4.511424 -7.289581 0.428025 4.898248 9.793740 11.107472 23.634078 16.336441 -4.090917 13.722131 -22.696153 5.310172 24.326499 8.007133 -13.685016 15.776930 -10.225676 -4.616423 5.218551 13.178461 9.030111 7.343386 -14.448568 -12.992060 5.181876 -1.002763 19.157022 5.115612 1.832246 -19.948287 12.236714 -0.707886 -0.436038 26.980513 9.184620 -20.811557 9.700633 16.895155 -15.189509 -10.610183 6.587928 -12.707556 -6.108883 -8.297119 7.269804 11.804902 -13.332007 -13.081535 -2.462660 -14.047480 13.558089 -3.794690 -10.795538 4.338602 -12.930314 -7.779322 23.225414 3.599630 -2.648054 -9.304646 -16.370457 -8.449106 -22.100474 4.298829 4.530269 -6.903742 -6.407604 -14.217956 -6.229777 16.670547 -3.062458 5.913174 -26.706044 -0.249527 11.712856 11.888438 3.721634 -15.515315 -3.051579 3.044886 -0.169103 0.674689 -5.129711 10.305225 20.403825 -14.422273 9.088961 2.864416 -8.569668 9.542848 15.740410 -17.819336 22.947665 1.484124 21.503298 4.116021 6.869457 -8.786729 2.124615 -0.369311 -5.298281 -5.583609 6.550040 -14.362003 -6.921737 9.119349 -6.753570 -16.647427 3.747114 14.276010 3.492278 3.142574 -2.692119 -6.502976 -4.432736 -8.826300 4.993197 11.804851 -5.184997 -12.755076 9.181986 12.815516 -7.158559 -7.553874 3.040841 9.525504 14.458485 -20.109937 11.835001 -1.689873 6.998982 -19.541799 -20.605340 10.274129 -11.783921 -10.404555 6.993892 -24.235790 -10.712964 -10.628969 10.404261 -20.035710 -3.410139 4.051994 19.975672 3.377010 -2.852419 12.076042 -5.513659 6.982370 -2.675978 1.528211 2.061752 14.507928 +-9.952836 10.462387 6.088630 -7.176007 18.940085 0.097451 -2.149145 6.777433 -9.146378 18.001450 -6.718190 -1.723795 -4.913266 -16.954248 0.172810 -9.832195 -4.397458 5.257962 1.135584 11.602255 7.090618 -11.288054 1.222541 -0.408497 -6.940541 -14.508718 -3.474703 5.494774 18.124766 -12.573944 2.392190 -1.305327 17.800005 -3.748314 16.223580 13.117094 4.860174 11.896896 3.245639 -8.912803 -7.842208 8.584611 -11.610094 -8.131797 1.285383 -5.434391 -10.946806 -4.363878 7.002050 -0.519140 -4.366794 14.990313 -5.390523 0.606814 -10.689798 13.012380 3.465947 1.661592 20.631388 0.629480 -0.603055 -4.883944 -19.560238 11.605817 -6.779978 1.239433 -7.863690 -8.021427 6.449590 -3.746707 -3.491953 -8.893709 -2.268898 18.916128 8.199467 -15.340473 1.250215 -9.216409 -23.377388 -16.232332 -13.658221 5.186501 0.259646 12.567612 2.164166 6.433772 4.039737 12.641048 -6.786954 -24.868346 5.794711 16.776690 -7.901746 -5.063925 -6.795644 16.209096 1.328364 4.296690 -9.335626 -1.263221 5.227653 -2.368970 8.421909 -18.210295 10.493647 -18.376124 1.097559 -4.567970 3.367248 3.510664 10.751207 2.821229 13.135078 20.019762 -15.613478 -2.166906 -15.324093 1.363368 -2.582348 4.490559 -3.692291 10.472283 -2.344991 4.906346 18.043496 -24.783792 3.655382 -1.881749 -3.293374 -20.812807 -0.757740 -9.191170 -4.173103 -5.841985 7.779727 -1.696275 -2.583195 -8.598735 3.067869 4.371356 -8.887020 -5.127171 8.275792 19.340543 -14.148833 4.463872 -3.397476 -5.448370 -3.079104 9.283103 14.851773 14.764503 21.446525 14.353224 0.521616 8.448801 -16.202902 -1.960854 13.481271 4.040677 -14.196680 18.532403 -12.671037 -6.322224 1.501553 14.165306 14.019675 4.897930 -15.162533 -15.655380 10.385202 5.768903 17.787085 -1.923246 0.822105 2.122196 16.652505 1.344677 -13.802049 17.540248 5.590337 -10.848205 7.013606 3.348193 -9.250139 -5.916134 13.293855 -13.619557 3.203591 -4.617522 -0.797425 8.782109 -5.924155 -2.923186 0.112610 -13.820194 19.177673 -3.991246 1.128267 9.811057 -12.144096 -19.191304 11.022148 -2.173102 -5.929729 -13.921411 -12.217068 -11.752550 -10.327847 6.012374 1.762504 -5.965326 -9.653836 -15.623953 -0.818692 10.308601 5.438483 11.352533 -20.260313 -7.233683 7.435087 6.544890 12.373238 -1.537013 -1.518525 0.121419 -0.375127 5.292505 -2.526320 15.906698 23.357801 -9.278171 10.212482 -7.020071 -7.432748 6.131367 7.815673 -21.636947 19.226444 3.552809 9.795370 -1.160859 4.373155 -6.734223 2.265430 6.930676 -1.418335 4.590056 0.163644 -0.311693 -5.964850 -3.781026 -14.523861 -7.845657 -5.159416 2.213993 -4.104504 6.384298 0.668825 -7.312450 -6.003968 -8.218247 2.396797 10.990002 0.651027 -1.008400 12.242256 -1.391200 7.047952 7.532600 0.792337 4.390722 7.773196 -18.214062 -2.715048 -5.121560 4.026782 -8.379847 -18.047814 -2.438911 -9.607733 -6.527962 9.462239 -16.721216 2.312170 -11.833462 -2.717271 -14.058068 -1.703753 4.723772 21.279408 9.031063 -10.396013 6.122950 -7.014001 11.152436 0.253235 -1.343173 3.996733 9.878442 +-16.428492 6.852637 -5.118280 -20.473602 45.748693 -11.129512 -2.585016 26.135138 -3.811045 25.072837 -13.995238 1.757848 -3.714776 -33.993248 4.173318 -4.325339 1.818707 19.084495 -7.203520 14.407571 12.487023 -5.856042 8.207532 -4.163373 -12.171471 -20.032516 -1.983802 13.275501 12.190071 -12.601598 1.091157 3.282920 33.305165 -6.258661 25.818413 18.280454 15.621266 22.272431 11.263039 -11.982232 5.687088 7.798563 -10.447570 -24.331143 4.745668 -5.607613 -28.196875 -12.696606 13.926326 -20.733295 4.230938 23.655728 -1.299744 -5.224886 -19.236830 18.659469 9.772774 -5.585025 27.816050 6.858902 -17.895462 -9.289768 -23.924663 24.769112 -16.409978 5.701120 -7.821400 -22.327845 -4.616196 16.049538 1.070104 -17.215574 -13.924479 12.425228 14.785775 -20.901407 8.978367 -8.804659 3.245892 -22.389017 -15.352739 12.855250 -9.631952 19.999741 2.402632 12.256890 0.083412 8.817194 -5.399256 -30.832586 3.444151 21.972325 -15.436449 -3.363378 -16.880073 18.628604 3.320046 -6.691322 -14.507660 -16.959796 8.278835 -5.429071 13.158906 -11.559307 10.143994 -19.538477 2.916429 5.764881 8.694823 16.976099 8.160701 7.309545 10.959180 20.479850 -13.377243 3.769392 -34.590538 9.159149 -12.002183 6.824464 -13.003838 10.140459 17.598009 13.960844 19.907705 -35.726701 22.239638 4.827402 -4.828670 -20.620213 7.415750 -0.447920 -6.960070 -6.185408 17.890122 -7.731097 -2.700270 -3.323399 11.779363 4.649158 -18.322652 -5.306723 -0.459417 18.844398 -25.005026 10.422156 -4.109016 -10.256320 0.629329 10.617182 19.615981 16.033684 35.617616 18.960100 -5.997170 13.398009 -31.632525 6.957512 31.616828 5.016714 -19.985435 27.630821 -19.149526 -5.633657 3.421822 22.047878 14.970530 7.097285 -16.195577 -13.816581 12.201941 6.560451 28.844454 -1.179372 3.704568 -23.347094 9.690367 -3.194330 1.496735 39.026100 13.271640 -28.387110 9.668343 20.337372 -14.534991 -12.067248 12.374792 -19.466408 -6.349556 -10.057943 10.605363 18.096612 -16.934066 -16.040158 0.057450 -19.664012 20.542806 -7.417308 -15.269983 7.098833 -21.539621 -4.880481 32.693000 3.592448 -5.802278 -12.043863 -25.326580 -7.802702 -28.898272 5.819408 9.073457 -6.744175 -4.491245 -18.729100 -9.561277 23.473390 0.657297 9.389999 -39.048216 1.388160 17.942589 6.492444 8.667075 -16.031116 -1.560152 2.516947 -3.173951 2.947724 -10.697147 10.552589 25.291499 -18.989754 16.772764 2.892990 -9.206093 10.518581 15.884818 -26.893154 37.437191 5.532475 25.962786 4.001132 9.721299 -10.849739 6.371409 -2.156418 -6.135435 -4.360281 8.622942 -17.491642 -12.091201 8.528370 -10.002543 -25.076009 0.701727 19.711561 -1.468296 7.386022 -5.771760 -8.453698 -9.436068 -14.292390 11.407424 15.614465 -8.843755 -13.610327 15.278251 18.549266 -5.512370 -3.616401 4.498185 14.417572 23.600859 -29.660864 12.730275 -0.569173 13.166503 -24.848968 -26.827346 10.216039 -14.017520 -5.185728 5.467568 -33.782428 -16.870983 -15.145539 13.469681 -21.132078 2.875562 8.646404 32.427820 8.985621 -10.640106 15.241812 -7.871756 8.544549 -1.772510 0.828157 7.271382 17.611487 +-68.064835 71.137197 59.390109 -52.552659 125.546402 4.186677 31.056099 61.767223 -83.692676 108.399798 -53.984831 24.540886 -20.459583 -80.658585 -1.892196 -57.654685 -29.158417 25.972326 0.395853 71.518847 47.583801 -57.560153 13.037320 -16.017251 -48.882876 -87.964858 -3.582281 28.628849 94.890870 -24.099561 34.001969 -15.012213 86.044399 -22.897318 100.261047 79.098667 23.192324 70.676811 7.822144 -46.874614 -38.736631 51.138158 -66.817059 -73.212726 4.929026 -35.193543 -77.235881 -49.426500 40.184512 -60.648946 -30.665241 88.312240 -25.903764 -5.353719 -49.341345 85.178436 41.050923 -21.464963 117.726222 7.095715 -35.743144 -32.539305 -103.711860 68.821330 -22.965602 15.723386 -34.266146 -68.243089 31.087873 -5.321041 -39.181773 -37.412591 -0.623000 97.673867 45.352888 -93.085471 11.920830 -58.743921 -128.277562 -82.939394 -48.081951 28.309008 18.967232 76.175979 11.538442 37.338902 17.540004 63.065121 -34.379888 -141.919275 20.398405 112.274629 -50.922821 -36.612038 -52.197410 86.137637 12.969612 21.167515 -52.562542 -7.034518 34.461924 5.853871 46.820812 -122.343105 21.669544 -109.956171 -0.499258 -3.352871 21.526900 36.889201 18.464939 32.281170 68.414745 111.292942 -82.443219 48.259882 -88.141206 23.153343 -24.529320 32.948556 -26.867496 49.578171 12.243547 38.889049 101.740930 -127.990940 42.031349 -1.471556 -18.191972 -125.027527 4.574331 -53.390545 -25.417527 -32.913131 45.069138 -9.109872 -13.492193 -51.805148 22.807942 12.619543 -44.500697 -48.808074 42.795893 97.456647 -96.934543 27.169638 -21.369837 -17.161233 -20.231804 64.087194 82.663343 76.547853 122.691533 85.059693 11.829615 58.257372 -89.463447 -7.269637 92.639361 44.112184 -84.339643 100.887856 -81.328608 -36.729130 17.213920 57.169475 74.974527 55.926151 -114.241084 -94.240105 77.863177 19.291737 113.474801 30.614728 17.312158 -31.850991 100.416727 -40.817963 -65.380744 86.953433 67.423740 -96.761396 44.771110 27.081343 -70.326398 -36.304573 72.846498 -82.062657 -3.526425 -18.757063 -11.578004 48.943321 -38.910898 -42.140567 -0.483310 -90.563635 117.068509 -18.611383 26.050675 35.787856 -60.108193 -77.046262 66.071639 14.142460 -46.705527 -73.817329 -55.042167 -99.683816 -75.793507 32.578285 24.782815 -32.313727 -72.644060 -98.233613 -9.763453 34.617129 17.913588 58.942382 -99.490930 -40.483216 50.272838 33.681615 64.705093 -37.437454 -13.325789 -25.347053 -6.123851 42.340898 -17.583099 100.418873 133.511257 -51.519911 79.869503 -25.639800 -49.205344 31.363780 57.966255 -116.008823 116.941244 15.623155 77.602627 -0.982066 35.034416 -47.063425 15.594821 24.073806 -31.406108 23.462182 24.945138 -21.086805 -35.679581 -13.281551 -91.411959 -39.509535 -15.307979 21.677803 -17.757755 31.129677 22.327866 -60.408389 -45.144041 -89.763446 4.464408 70.696863 -25.158597 -39.617938 63.807046 -1.014784 15.029167 -7.157772 9.368300 39.410661 48.966447 -108.341672 1.148337 -25.552246 4.233310 -83.897508 -92.746080 9.963076 -73.602870 -73.672018 43.857885 -89.797095 19.792857 -71.887644 -6.742050 -116.243359 -49.035745 26.053894 126.867244 28.270234 -41.510168 47.567183 -41.312623 76.869731 8.965393 13.847542 15.032032 62.798819 +-7.071522 4.930991 1.266539 -5.501218 16.501223 -4.813289 1.627365 3.740425 -1.682074 12.136617 -4.344183 -6.875170 -4.354074 -16.556009 1.629400 -7.561669 -1.518837 7.919955 0.713358 7.795531 5.627880 -7.627958 1.329295 -0.737773 -3.634283 -11.193923 -3.075065 4.627891 11.900374 -9.914923 1.851920 0.722162 15.630837 -1.622884 13.437705 9.975184 2.908265 9.219684 3.110621 -6.725830 -3.766125 6.354534 -7.273164 -8.820945 1.007925 -1.434275 -9.571716 -5.944534 5.570653 -1.835920 -0.797114 11.365840 -3.582791 0.202842 -8.957245 7.563895 4.429075 3.895585 13.175468 1.411888 0.769371 0.582999 -14.793701 8.712966 -5.741508 -0.256161 -5.058947 -7.910225 2.734251 -0.811004 -2.795718 -7.052080 -3.016373 11.981256 8.718017 -9.874992 1.292211 -5.332345 -14.072367 -11.941522 -12.478710 3.730021 -3.172702 10.477711 1.401423 4.405450 3.683208 6.970947 -3.206098 -16.389281 3.474316 12.022513 -5.333638 -4.753725 -2.101758 11.113212 2.763625 1.721248 -6.619619 -4.459697 2.765468 -4.277003 6.830117 -5.781818 4.868075 -11.729258 -0.218861 -2.079509 2.550248 5.545049 11.649178 1.018414 6.860434 12.176977 -12.613076 -2.118676 -12.356558 3.263258 -4.229946 3.499573 -2.462610 7.685722 0.453759 4.470954 11.073756 -19.751042 3.290120 -0.151964 -0.387359 -11.982741 -0.119835 -5.105253 -3.030714 -4.626502 6.880512 -1.733075 -2.068732 -4.106165 2.331688 4.438848 -5.410085 0.208791 3.795583 13.192505 -10.615027 3.871420 -2.866523 -5.745416 -1.813119 5.101429 9.799282 10.872038 14.442307 11.439719 -2.293281 3.941983 -13.947199 0.194164 11.521907 -2.828603 -9.081225 12.964663 -8.382271 -3.730863 1.270396 12.061897 10.237571 1.135147 -8.771856 -7.269732 7.302121 3.729296 12.021223 -1.847997 -0.455848 -2.844358 9.893578 2.485011 -9.214419 16.409467 3.762147 -9.101193 5.097474 4.484202 -11.737655 -6.095997 7.729148 -8.994816 2.393416 -6.809441 2.908243 6.590347 -4.916178 -2.224082 0.075208 -9.483889 10.946362 -3.245836 -3.085811 7.199835 -8.153059 -11.609309 13.714753 -0.748306 -2.896023 -10.196571 -12.326600 -5.425222 -8.494703 4.826756 -0.538840 -3.593474 -5.297524 -10.059614 -0.955643 11.967501 3.511672 8.380226 -12.942469 -2.248807 5.011265 6.438011 7.734917 -3.120405 -1.407698 2.190307 -0.273932 0.955460 -0.016635 7.897783 16.295626 -8.251706 4.759985 -2.616316 -6.420467 5.408251 5.735757 -15.522064 14.129656 1.366336 9.222501 -0.872668 3.282293 -4.373870 1.564451 5.031947 -1.900225 1.156431 0.301942 -1.666299 -4.346535 0.626377 -9.651308 -9.901633 -2.973906 3.884085 -0.911165 4.594733 -1.913821 -6.624365 -1.993119 -3.935573 3.296579 8.183194 2.676337 -1.286429 8.425271 1.925823 4.195644 1.055354 0.721924 2.613435 6.961083 -13.313292 0.088593 -3.322059 5.696701 -4.432700 -15.152798 1.362252 -8.696459 -3.596673 6.351562 -13.460894 -0.426906 -8.942572 -0.069981 -11.948584 0.185660 2.652991 14.622787 6.569358 -5.855514 4.987166 -4.446494 6.291033 -0.925339 -2.138274 4.512128 8.210754 +-9.207305 8.859420 3.523756 -7.451026 21.430440 -3.153665 2.534584 9.663833 -9.992059 17.609255 -5.589519 -0.855329 -3.493542 -17.863917 1.305816 -8.979494 -2.959767 7.794121 1.226893 11.616731 6.527818 -9.500113 1.223724 -0.423660 -7.048436 -13.992203 -2.100296 5.995484 16.247241 -10.726538 3.998053 0.147749 17.577239 -3.837458 16.253860 12.709358 4.500468 9.781498 5.370507 -10.682730 -5.127861 6.887213 -9.522636 -9.318879 0.133775 -2.798139 -12.430182 -5.630125 6.386466 -3.574073 -4.908438 13.823942 -4.567836 0.206839 -9.636401 12.924691 4.668824 -0.294729 17.395375 1.324561 -2.726485 -4.541391 -18.558907 14.105671 -5.557685 -0.452896 -7.029503 -9.890089 5.471092 -0.391128 -4.266364 -8.466353 -1.853253 17.317066 8.822400 -13.692376 1.523538 -8.377696 -18.945802 -14.835657 -11.696651 5.171880 -0.803371 12.270937 2.780592 5.861910 2.313873 10.605984 -5.690617 -23.271676 4.440712 16.258067 -8.177871 -6.631535 -7.251232 14.303572 3.831883 2.151815 -7.744456 -4.800069 4.531159 -3.681301 7.925782 -15.117962 8.071185 -15.738008 -2.594226 -3.129953 4.293265 8.934696 9.210712 4.027458 11.433233 17.467256 -13.724392 -1.517138 -14.642494 4.417828 -5.061251 4.284184 -4.750508 9.741916 2.002324 6.444361 16.441869 -24.113836 4.381846 -0.602553 -0.653451 -18.741938 -0.137266 -6.618351 -3.482809 -5.773040 7.822691 -2.177502 -2.084943 -6.315619 3.453341 5.174016 -7.562380 -4.943057 7.166223 18.496165 -16.716459 4.796091 -3.084015 -4.311867 -2.321694 8.035800 13.977158 13.543767 19.270275 13.295532 -0.026649 9.790199 -17.069106 -0.590505 13.948079 3.806072 -13.160440 17.955339 -12.906973 -6.318873 1.341297 13.704211 12.347723 3.734619 -15.737356 -13.932467 12.392387 4.775129 16.093578 -1.375722 -0.429307 -2.934628 13.512334 0.115860 -12.969763 17.468630 5.957681 -12.465593 7.698285 4.923504 -10.973109 -6.317429 11.659235 -14.044629 1.010685 -5.139544 -0.002425 8.864103 -5.969086 -3.265580 0.106725 -12.183518 16.460539 -4.090884 -1.805141 7.358475 -10.309397 -14.718977 13.730109 0.863203 -4.470631 -12.949398 -12.867234 -11.122136 -11.396888 5.004605 1.554084 -4.666903 -7.765761 -14.393157 -2.744569 10.894736 4.074777 10.381458 -19.744763 -4.979130 7.626407 7.811864 10.574824 -4.917073 -1.266676 0.472645 -0.994649 2.504200 -2.572351 13.933669 21.591860 -9.034438 9.280162 -3.948993 -7.484567 6.618644 6.746826 -21.361577 19.088006 3.489376 12.486318 0.411964 3.732766 -6.654308 2.611772 4.834964 -2.854772 2.416202 0.885735 -2.372900 -5.547510 -0.943184 -13.003490 -10.550117 -3.904705 4.531461 -3.565605 5.632701 -1.031269 -7.564845 -6.003132 -10.146432 3.156323 9.901938 -0.699773 -2.318847 11.650424 1.414346 4.416470 2.707997 0.688563 5.743462 7.419909 -17.479232 0.300245 -4.114196 6.167729 -9.224961 -18.528155 1.456596 -10.215719 -7.313876 6.163461 -16.566053 0.035407 -10.820882 -0.791058 -18.189389 -2.411328 4.848238 21.204740 5.650799 -8.559279 6.416743 -6.499727 8.936149 -0.650529 0.667216 3.547825 9.173469 +-7.291898 7.446800 3.489030 -6.082779 14.242144 -2.168663 2.420943 5.477953 -6.461384 11.534665 -5.508876 0.437786 -2.452185 -12.345310 0.705479 -6.616048 -2.062634 5.389026 0.738372 7.775861 5.149389 -7.012554 1.172580 -1.410965 -4.903733 -10.802178 -0.889197 4.036514 9.816234 -5.466197 3.644409 0.180327 12.067081 -2.225327 11.635433 9.637887 2.662524 8.557748 3.529455 -5.714927 -3.135636 5.197451 -6.607780 -8.842221 0.661050 -2.297253 -8.682352 -5.311715 4.674916 -5.207490 -2.235317 9.963151 -2.873640 -0.585464 -7.884839 8.034164 4.579317 -0.487469 12.705558 1.232956 -2.903180 -3.014209 -11.244186 9.248692 -4.780505 -0.140665 -3.324082 -7.640375 4.007473 0.804832 -3.797127 -4.359710 -2.166986 10.006948 5.970572 -10.248132 0.966953 -5.706995 -14.846807 -8.463617 -6.948144 3.699299 0.093399 9.222381 1.528367 4.206612 1.937291 6.383163 -3.258709 -15.029733 2.215514 12.330438 -4.993187 -3.484876 -4.563714 11.111605 3.282000 0.734995 -5.474018 -2.354653 3.521675 -1.820930 5.709479 -9.774712 1.923863 -11.566147 -0.148545 -1.223975 1.775884 6.056409 4.783534 3.497756 7.071706 11.143597 -9.548265 1.514236 -11.430202 3.299412 -2.787612 2.764980 -2.810510 5.449862 0.959332 4.028884 10.705779 -15.364222 4.873221 0.256346 -0.663040 -12.890593 0.534778 -4.261408 -2.607947 -4.092359 5.900459 -1.138012 -1.430582 -4.304745 1.921538 2.881587 -5.100195 -4.627770 3.976326 12.210173 -10.022219 3.586598 -2.422412 -3.243985 -1.923070 5.619618 8.922784 9.075341 13.776577 9.921343 0.244712 7.028796 -11.627983 -0.338574 11.075146 3.748527 -9.163921 11.676929 -8.518672 -4.491646 1.355771 8.422195 8.523598 4.089795 -11.306750 -9.689215 7.416241 2.188372 11.901720 1.191336 0.455479 -3.654430 10.724302 0.193998 -6.649453 12.364639 4.917642 -9.926488 5.793098 4.618966 -9.358576 -4.798884 7.845175 -9.125449 0.178750 -3.547217 0.493973 6.141889 -5.183418 -3.789733 -0.811611 -9.475046 11.497805 -2.579735 -0.224266 4.328521 -7.506161 -9.759903 9.920707 0.881289 -3.606029 -8.265794 -8.274248 -8.443891 -8.997961 3.433953 2.260119 -4.134009 -6.212929 -10.171574 -1.730669 6.835366 1.782401 6.823589 -12.072706 -3.368902 6.039281 5.959240 5.666382 -4.098135 -1.273032 0.258444 0.394880 2.805120 -1.355789 9.994774 14.108957 -6.525500 7.107753 -2.230051 -5.399388 5.215053 6.157884 -13.540180 13.637721 1.376068 8.292734 0.657763 3.199398 -4.831184 1.306315 3.084957 -2.903184 1.113118 1.522324 -2.974587 -4.041058 0.310242 -8.436160 -6.305601 -1.675201 4.127046 -0.727940 3.589014 0.759261 -5.300368 -4.105676 -7.263808 1.829737 7.483830 -0.834606 -3.257405 7.774374 1.691704 2.055617 -0.037604 0.875914 4.570465 5.854405 -12.347598 1.294218 -2.875650 2.370765 -8.128958 -11.997386 2.402250 -7.897980 -6.046921 4.280184 -12.104573 0.362552 -7.741500 0.509968 -12.239842 -2.370605 2.851164 14.004689 3.521093 -4.577907 5.151635 -4.685588 6.891719 -0.009657 0.717739 2.449034 7.939773 +-6.061149 4.501485 1.717946 -3.826408 13.187422 -2.218609 -0.042498 7.332758 -5.757820 10.382815 -3.458892 -0.104639 -2.275308 -9.692943 0.827765 -3.095716 -0.771735 4.771883 0.194006 6.057670 4.307746 -4.657648 0.885693 -0.492737 -3.774479 -7.408921 -1.338286 3.339695 9.408801 -6.168703 0.465924 0.401629 11.247786 -2.236375 10.349974 7.795378 3.610348 6.239048 3.596026 -6.871595 -3.119612 4.702454 -6.190792 -5.850746 0.724976 -2.446947 -6.888148 -2.462938 4.240381 -2.187320 -1.593917 8.199015 -2.657395 0.829216 -5.390465 7.669812 2.326094 -0.394436 10.913096 0.830951 -2.697732 -3.397544 -9.924930 9.057974 -3.876839 0.395313 -4.910211 -6.636814 2.388452 -0.331753 -1.580509 -6.552521 -1.803260 10.191199 4.198487 -8.298254 1.873790 -3.935722 -7.265744 -9.342567 -7.912440 3.030906 -1.657282 7.194408 0.878558 3.532134 0.048856 5.827928 -2.966347 -13.845094 2.889185 9.314776 -5.879765 -1.821581 -4.252380 7.320763 1.661832 1.829067 -4.337703 -3.134738 2.764141 -2.108357 4.759691 -8.495140 7.025909 -8.034212 -0.827866 -2.519584 3.307501 5.820996 4.874431 3.003963 7.176150 10.858402 -6.489339 -2.110696 -8.825075 2.799703 -3.756208 2.441909 -2.447973 5.759357 2.161199 3.449636 9.903717 -14.422687 2.723646 -0.270696 -0.549495 -10.888296 0.423999 -4.576538 -2.499314 -3.757742 5.511452 -1.587639 -1.547636 -4.519495 2.670472 2.665709 -5.850046 -3.110472 2.725838 9.621679 -10.270859 2.699673 -2.179064 -3.137762 -1.076909 5.061119 8.221560 8.657323 11.228313 8.360407 -0.982887 5.523317 -10.599847 -0.114780 8.472966 1.799606 -7.944235 10.835756 -7.980276 -3.726322 1.962462 8.161915 7.434108 2.514292 -7.705089 -7.469118 6.651673 3.556167 10.252746 -0.886460 0.877684 -2.026357 7.093025 -0.423880 -6.750254 11.446562 2.533210 -8.571013 5.022798 3.061551 -4.842543 -3.009857 6.311512 -9.000834 0.189197 -4.012147 0.414038 6.033875 -4.741115 -2.072543 1.402914 -7.877929 10.382467 -2.182012 -1.741243 4.874516 -7.143765 -6.589386 9.103019 1.305219 -2.531110 -7.686008 -8.026844 -6.231488 -7.131067 2.950730 0.728350 -2.514931 -4.517210 -8.934602 -2.051661 6.685548 2.966426 6.201257 -13.874451 -1.779453 4.678469 3.284615 5.310600 -3.440726 -1.108033 -0.083320 -0.847714 2.181649 -2.652344 7.915946 12.471475 -6.023782 5.262188 -1.011580 -3.855017 3.596948 3.915818 -12.585013 11.036791 1.916333 7.343426 0.567642 2.838520 -4.854733 1.311964 2.177734 -0.516112 0.560771 0.960445 -1.802574 -3.554247 -0.218154 -7.387036 -6.451312 -2.786018 2.575010 -1.363935 3.289885 -1.676871 -4.826359 -3.229120 -5.533048 2.161611 6.416163 -0.958872 -2.242426 7.188234 0.435456 1.583958 1.031728 0.669498 3.018903 5.129440 -10.748922 -0.331182 -1.820521 3.855282 -5.921748 -10.268093 0.271086 -5.217206 -3.648998 4.300768 -10.611025 -0.621325 -6.325927 -0.484506 -9.949750 -0.954399 2.694208 12.680505 3.288613 -5.390650 4.509102 -3.642513 5.492681 0.190733 0.463498 1.208621 5.703238 +-12.523325 6.867846 1.194977 -8.988298 26.105673 -5.547412 3.507075 8.633582 -7.532484 18.704934 -7.865797 -5.330557 -6.490263 -22.731749 2.810378 -8.253716 -0.612064 10.350410 -0.162160 12.137515 9.916079 -11.340732 2.569986 -2.023218 -6.057467 -15.556948 -3.024337 7.251320 18.074528 -11.084992 1.170689 1.457476 22.702516 -3.415054 20.038606 15.833435 5.933196 14.910759 4.195390 -13.488298 -5.260381 11.033953 -11.768921 -15.549039 2.513632 -4.106785 -15.635626 -9.314798 9.615795 -5.651600 -2.375011 17.967442 -5.347942 -0.148286 -13.771088 12.489546 8.604116 1.896441 21.685012 2.956817 -2.503195 -2.595085 -19.624060 14.496185 -8.406949 0.553227 -7.552535 -14.453719 3.549434 0.341048 -4.443628 -10.593613 -5.711074 16.891770 11.710018 -15.960239 4.075958 -7.757750 -15.355543 -18.356129 -17.736212 5.150604 -5.160969 17.234245 0.983842 6.483237 3.598221 9.468474 -4.225445 -25.345277 4.412086 18.189684 -9.440122 -5.303343 -5.546022 16.463681 4.303781 1.847457 -11.384978 -6.586673 4.763872 -5.314046 10.556897 -10.317486 8.068427 -15.921174 -1.156518 -2.906683 6.474542 11.111150 13.196789 3.315430 10.879157 18.169727 -15.481692 -0.706816 -18.044524 5.923683 -6.924923 5.823392 -4.610142 11.680150 5.609963 5.251887 17.892697 -27.626878 6.954828 0.795990 -0.494697 -18.674957 1.619683 -7.827753 -5.827335 -7.427085 12.281508 -3.314394 -3.500369 -7.044060 5.613063 5.899383 -9.828364 0.084135 3.954777 17.482202 -17.971564 5.724521 -5.192253 -8.778417 -1.611337 8.659143 14.149541 17.048888 22.944467 18.488239 -4.107886 9.717856 -20.981610 2.102880 20.086568 0.137033 -15.480937 18.939793 -14.374099 -5.284053 4.011070 15.861090 16.098565 4.414314 -13.303212 -10.561054 10.883523 5.800284 20.637244 -0.113265 2.345325 -7.765378 13.463925 0.446951 -10.699589 23.652886 6.606850 -17.726367 10.165968 8.120772 -16.160858 -7.445409 10.933947 -14.807884 0.916317 -10.632993 4.672915 12.230196 -10.306866 -5.314833 0.392100 -15.985115 17.800309 -5.026290 -3.346247 10.077949 -14.141962 -12.584067 20.529120 1.545161 -4.922713 -15.457119 -16.705722 -10.882085 -15.783627 7.401636 -0.287300 -5.171864 -9.173221 -17.184377 -3.931254 16.621181 5.091425 11.653877 -22.238578 -1.292293 9.275316 9.516870 10.719958 -6.037603 -3.193804 2.599752 -1.386116 3.379807 -3.328822 12.067603 23.056252 -14.202482 7.991972 -2.799027 -8.037679 8.830133 9.523491 -23.051490 23.058007 3.394809 16.196483 -0.756137 6.380976 -8.413374 2.773117 5.204363 -2.744125 0.453174 3.017829 -4.985212 -7.045759 3.226543 -13.229278 -14.332327 -3.763936 7.024748 -0.240732 7.053421 -2.220033 -10.226189 -4.664847 -8.764561 5.116395 13.997548 -0.186495 -5.095080 12.548311 3.143679 3.603063 -0.967223 2.047968 5.577107 12.458702 -21.743783 1.373345 -4.464181 7.449961 -9.926363 -21.454078 3.250924 -11.901797 -6.875306 12.012526 -20.185697 0.180157 -13.971979 1.299482 -18.762271 -1.857293 3.239060 23.120822 7.757430 -8.078743 9.717783 -6.166557 10.585311 -1.777846 -0.994794 5.049491 12.675540 +-12.720382 11.532651 3.458997 -10.427174 28.879691 -7.377282 3.175039 10.156938 -9.250220 20.471744 -9.583343 -3.730988 -5.787589 -28.694704 2.141011 -11.409991 -3.137689 13.297694 1.574354 14.322842 9.594143 -13.784979 1.976527 -1.590032 -7.626859 -19.675306 -3.203826 7.889445 20.429961 -16.417155 4.245241 0.626497 26.501060 -4.091658 21.567363 17.251595 6.123366 16.175065 7.744045 -13.206467 -6.551538 10.311548 -12.377025 -16.292213 1.647040 -3.002130 -16.226078 -8.486008 9.083005 -5.602058 -3.042984 18.957976 -6.065925 -0.518518 -16.150881 14.463725 9.627791 2.387859 23.549395 2.203914 -1.869886 -2.786136 -23.432979 17.612675 -9.417645 -0.371628 -7.511226 -13.118473 6.584231 -0.362823 -5.663242 -12.402327 -5.616422 19.785995 13.117637 -18.118494 1.812977 -10.179036 -26.389640 -19.727827 -18.567346 6.277021 -4.331589 17.601460 2.682696 7.699509 4.956203 11.735552 -6.117582 -28.126351 5.192327 21.221417 -9.186337 -7.339049 -6.352955 21.286480 5.127357 1.936115 -11.115386 -7.688435 5.647839 -5.490449 11.111479 -15.338351 7.450807 -21.979050 -0.535008 -4.482042 4.022438 11.056768 15.329403 3.910713 11.981238 20.989644 -20.847200 -2.392969 -24.124772 5.212346 -5.729413 6.042975 -4.906106 11.493887 0.634679 7.544577 19.375693 -32.641460 7.798268 -0.031939 -0.677179 -22.913817 0.372133 -8.337064 -4.924525 -7.602635 11.321147 -2.872636 -3.087062 -7.686113 3.952628 7.133314 -11.282425 -4.869503 7.097422 24.951816 -22.014292 6.599259 -4.774648 -7.920114 -3.129484 9.084128 16.892231 17.781706 26.156279 18.992627 -1.547308 13.477107 -24.142218 -0.152635 21.008869 2.219132 -16.327127 21.706364 -15.861152 -7.418379 2.350944 19.816265 17.107728 3.398933 -19.035049 -15.633990 16.722351 5.388447 20.878026 -2.296542 -0.008897 -6.407833 19.824193 4.796654 -14.618708 28.932788 6.607937 -17.536861 12.251074 7.736602 -16.664503 -9.001762 13.623021 -16.729491 2.093171 -8.881855 2.840924 11.455108 -9.151687 -5.580198 -1.528488 -16.735295 19.925654 -5.362831 -4.770478 10.638674 -13.518196 -19.284691 22.432692 0.057728 -6.039344 -17.113587 -19.496373 -11.880762 -15.230142 7.380490 1.566262 -7.662025 -10.241712 -18.340043 -2.756926 18.677772 4.906337 13.456377 -25.841958 -6.036022 9.946993 12.483121 12.019402 -8.748681 -2.390406 2.352002 0.456208 3.200713 -0.950143 16.731692 28.188887 -13.529848 11.130268 -4.392636 -10.520324 9.945900 11.558043 -25.797250 24.804010 2.578320 18.998840 -0.361883 5.539882 -8.843327 2.688587 7.369370 -2.763776 2.425987 0.991575 -3.852123 -7.479813 0.844909 -15.862103 -15.774813 -4.248498 7.072523 -1.124497 7.518142 -2.584317 -9.092009 -5.843699 -9.305523 4.345577 13.975243 0.967208 -4.644819 14.162052 3.006432 6.048100 3.126470 1.507048 6.908047 11.073885 -22.725035 1.260883 -5.987562 8.347432 -11.340885 -27.233825 4.040822 -14.367561 -8.021151 9.812728 -24.756549 -0.756309 -14.661036 0.153809 -24.317207 -0.285395 4.556771 25.198714 8.597264 -9.167914 9.324666 -8.116660 11.814598 -1.511304 -0.377720 5.924856 14.847712 +-13.425243 11.819730 2.895958 -11.171023 25.428235 -4.100439 2.354714 13.790449 -8.390341 19.293475 -10.853244 2.284509 -3.698687 -19.654117 1.489562 -8.398193 -1.903730 11.391687 -1.209808 11.743410 9.944539 -8.293858 2.401364 -3.654573 -8.361821 -18.644567 -1.241089 6.633014 13.110168 -6.358368 5.042386 1.120829 22.406573 -3.952438 19.380510 16.537142 9.377054 16.495097 6.524357 -5.055844 -3.091638 9.588982 -10.782345 -15.800498 3.498732 -5.665983 -15.970115 -9.119851 8.306048 -12.800620 1.954071 16.824047 -3.056566 -1.229960 -12.261503 13.675057 10.011561 -3.610222 21.976941 3.546925 -8.005448 -5.677982 -16.689921 18.494849 -9.709126 2.243704 -4.002112 -14.790284 3.156362 3.502154 -0.936951 -9.829813 -6.882206 14.645728 8.460232 -17.177071 4.176477 -8.729679 -14.598992 -16.093504 -11.743528 6.043024 -1.737749 15.527673 0.798977 6.300779 -0.689760 8.915633 -4.437421 -24.077808 2.269003 20.243879 -9.798501 -2.531179 -13.050690 15.297527 5.277197 0.694921 -9.832944 -6.469302 6.112232 -1.876195 9.635153 -13.075346 1.810700 -16.640644 0.293037 -0.037021 2.976725 12.877262 4.194481 7.529300 11.653714 17.666686 -13.044551 4.558447 -21.355759 6.804662 -4.240840 4.978657 -4.161142 7.632030 5.705974 7.207499 16.878950 -24.646629 11.072453 1.089874 -3.007067 -19.576063 2.869557 -6.048275 -5.740943 -7.349368 11.389576 -1.746986 -3.090842 -7.022014 5.312574 3.566082 -9.935757 -11.599303 3.775123 17.054047 -17.882668 5.437924 -4.884167 -6.258925 -2.543971 9.269430 13.678697 13.635068 23.699969 16.426889 -0.072016 12.951095 -20.065956 0.161490 19.797609 10.827003 -16.465224 18.653798 -14.118852 -6.465280 4.646159 13.447329 11.999777 8.998868 -17.137396 -15.106365 9.624480 2.769652 21.319014 3.935701 1.591424 -11.964874 15.305487 -1.320240 -9.098599 24.785777 10.729713 -18.098296 7.110951 8.679897 -13.350086 -8.524972 11.588361 -14.964902 -4.037369 -5.777006 2.694128 10.883881 -10.100166 -9.021800 0.483416 -16.550078 18.562198 -4.422311 -2.638647 6.241301 -15.967402 -12.794800 18.184305 2.285933 -6.518714 -11.919032 -13.599618 -10.706857 -17.928839 6.171219 5.291472 -5.730518 -10.821545 -16.966723 -2.981968 12.817644 1.719179 8.874669 -24.237943 -5.944434 11.427838 5.995473 8.381199 -13.513691 -2.936713 -1.346326 2.205697 5.838616 -3.368989 14.898724 24.361719 -12.236947 10.987397 -0.510012 -8.988256 7.094849 12.223447 -22.272595 23.604458 1.947237 13.735737 1.504608 5.995798 -9.260329 1.874119 2.570787 -2.142561 -0.106121 4.488899 -7.306431 -6.623654 1.661007 -13.663641 -9.974971 -0.902107 8.210215 -1.575570 5.609703 0.170493 -8.672578 -7.327782 -12.202740 2.064039 13.787815 -2.471455 -8.183905 12.328276 3.518616 -0.508750 -0.408479 1.681426 8.570851 12.515762 -21.122641 4.275552 -3.253450 2.468626 -16.808970 -20.377762 4.475216 -12.407527 -11.333308 7.339729 -21.080373 -3.265087 -12.708519 3.604043 -19.836280 -4.975073 5.080546 23.430350 6.307375 -7.085621 10.078212 -6.855367 13.124595 0.327014 1.278324 3.863600 14.782637 +-9.055928 9.416659 4.645043 -5.892225 19.480718 -1.338848 -0.881181 8.654110 -8.668274 16.947292 -5.212036 -1.122795 -4.352885 -16.199678 0.567863 -7.851882 -3.130701 5.451550 1.450851 10.438911 6.264929 -10.300243 1.121187 0.441232 -6.479145 -15.091951 -2.365276 5.463906 17.938939 -11.394009 0.488668 -0.756303 17.969018 -3.688070 15.455803 12.112067 5.874982 9.830896 4.714232 -11.356184 -7.605356 7.591130 -10.932215 -6.898907 0.664456 -4.162705 -11.030296 -3.783579 6.524099 -0.126285 -4.393466 13.900143 -5.309481 1.371506 -9.688844 12.260098 2.682905 0.807836 18.437639 0.295260 -0.139044 -6.254189 -17.580282 12.456883 -5.645958 -0.857288 -8.432888 -7.702186 6.342544 -3.383266 -3.798726 -9.148039 -0.830464 18.043450 8.406404 -14.164189 1.508939 -7.951370 -19.111712 -16.300517 -13.772617 4.853088 -1.885367 12.123464 2.296649 6.318670 2.217533 10.989706 -6.622258 -23.355328 6.212954 15.624329 -7.840791 -5.356730 -6.393796 15.363495 2.422657 4.053766 -8.094573 -3.388015 4.550555 -3.337224 7.825307 -17.218169 11.177358 -16.718850 -0.526608 -5.708264 4.794402 5.862421 9.125609 2.448640 12.202915 18.810168 -14.832990 -3.572354 -14.594034 2.247780 -2.877119 4.136188 -3.814274 9.956219 -0.842426 5.989977 16.446608 -24.455949 2.361700 -1.451426 -1.940564 -18.711109 -1.185108 -8.516208 -3.410672 -5.678735 7.568501 -2.397918 -2.239384 -8.398941 3.777460 4.661894 -8.709877 -4.073916 7.431571 18.491256 -16.043211 4.433439 -3.061083 -4.888101 -2.588475 8.732792 14.329124 14.458090 18.910123 13.637028 -0.029974 9.864432 -16.666958 -1.655644 12.329351 3.069399 -12.706250 17.686608 -12.789725 -6.529239 1.512424 14.560336 13.256127 3.540732 -14.370347 -13.904277 11.095691 6.608843 16.340286 -2.146396 0.488027 0.835519 14.673239 -0.331600 -13.301594 16.059740 4.804598 -10.312916 6.742870 2.925133 -9.111084 -4.840923 11.765513 -14.272504 2.813603 -5.583218 -0.239241 9.215057 -5.294574 -1.170874 0.911546 -12.438405 17.054952 -3.896030 0.055308 9.155940 -10.138998 -15.025279 12.293255 -1.619569 -4.660625 -13.346305 -12.988890 -11.044225 -9.423037 5.146594 0.245313 -5.300881 -8.111933 -14.862396 -2.058122 10.833524 6.141888 11.087459 -21.690421 -5.345936 7.068187 6.983840 10.527751 -2.337161 -1.153879 0.377728 -0.849801 3.830848 -3.219206 15.256895 20.995230 -8.818468 8.837598 -7.751159 -6.964292 6.365473 6.126704 -20.530356 17.789097 3.889123 10.751286 -0.399997 3.748255 -6.459862 2.368896 5.648251 -1.666246 3.418933 0.216989 -0.481676 -5.798452 -2.100738 -12.890190 -9.700490 -5.974138 2.694364 -4.116320 6.170032 -1.043548 -7.304331 -5.410424 -8.719864 3.051191 9.870523 0.365928 0.083869 12.334828 -1.034249 6.437118 5.995903 0.468834 4.344016 6.823429 -16.786262 -3.019699 -4.565977 6.067702 -7.178567 -18.928573 -1.146416 -8.688323 -6.471764 8.612540 -17.405746 1.354694 -11.048121 -3.024006 -15.895547 -1.538330 5.132920 20.121582 6.929030 -9.541517 5.611931 -6.600982 9.361767 -0.581449 -0.016008 3.778592 8.632472 +-10.920286 11.186977 6.502970 -7.860034 24.214442 -0.894943 -0.039251 10.057930 -10.442849 20.022605 -7.333457 -1.668105 -5.069738 -19.479553 0.776289 -10.024763 -3.870425 7.096614 0.902079 11.923229 7.694472 -11.469696 1.981083 -0.592611 -7.449067 -17.282597 -3.244366 6.254040 20.045692 -11.066951 1.812936 -1.047157 20.374339 -4.077146 17.956061 13.949995 6.155035 12.506689 4.216748 -11.783291 -7.242424 8.851393 -12.178776 -10.394321 1.631003 -5.521478 -13.695167 -6.449659 7.948519 -3.351108 -5.390590 16.300738 -5.416413 0.380292 -11.226028 14.598217 4.739328 0.653732 21.777682 0.992354 -1.618377 -6.608269 -20.933285 13.514418 -6.934322 0.624614 -9.425635 -10.653862 5.523570 -2.116783 -4.821216 -9.941309 -1.804856 19.837042 9.919055 -15.991677 1.918217 -9.178228 -22.178758 -18.133792 -14.882895 5.535409 -1.816341 14.334670 2.336847 6.937045 3.908942 12.146330 -6.635224 -26.730804 5.796671 18.964723 -8.648234 -6.053566 -7.192588 16.794909 2.650481 4.063829 -9.720619 -3.181795 5.285311 -2.657083 9.151905 -19.349189 10.551038 -19.856689 0.293319 -4.432370 4.927970 6.956421 10.498468 3.003488 13.152564 21.152375 -17.656646 -1.538768 -17.529743 3.074474 -4.357230 5.110740 -4.876889 11.540452 -0.140346 6.886560 18.906514 -28.442983 4.751302 -1.216787 -2.701841 -21.694329 -0.292632 -9.187460 -4.363007 -5.975071 8.882087 -2.742605 -2.864744 -8.744522 4.089843 4.719865 -10.255558 -4.926824 8.058549 21.286989 -18.356410 5.272450 -3.687947 -5.979852 -2.926294 9.829500 16.383017 16.016683 22.747838 16.005542 -0.366842 10.700149 -19.271709 -0.680670 15.866252 3.562140 -14.900356 20.145751 -14.222635 -6.646005 2.189624 15.152500 14.833115 5.918740 -17.067466 -16.203523 12.339314 6.451709 19.058131 -0.119316 1.218899 -1.913023 16.755188 -1.645996 -13.689008 19.422179 6.572857 -13.390506 8.103145 4.762568 -12.725395 -6.118073 13.305771 -15.790007 2.253258 -6.593818 0.127109 10.470387 -7.073807 -3.785644 0.341458 -14.758063 20.249738 -4.227420 0.042345 9.821174 -11.900216 -17.149567 15.091905 -0.882200 -5.815693 -14.709875 -14.716508 -13.204105 -12.085044 6.079386 1.696467 -6.726053 -9.995665 -16.948979 -2.347727 12.565153 5.831297 12.005260 -24.054704 -5.565680 8.387543 7.943434 12.465706 -4.191006 -1.668455 -0.171713 -1.425510 4.665954 -3.462141 17.023308 24.497265 -10.705438 11.031393 -7.774376 -8.537204 7.090466 8.221376 -23.204812 21.035167 3.859907 14.234746 -0.568904 5.299507 -7.205817 3.035106 6.060319 -3.427939 3.623584 1.688607 -2.163879 -6.764055 -1.342591 -15.237341 -11.419849 -5.170978 4.067982 -3.855611 6.512569 -0.426598 -9.021531 -6.046456 -10.146180 3.181385 11.790848 -0.717281 -2.189016 12.969087 0.034145 5.829872 3.479834 1.202315 5.384046 8.758373 -19.593924 -1.752264 -4.962621 5.456909 -10.151518 -20.694559 -0.521870 -10.794807 -8.093828 9.686626 -20.076322 1.275463 -12.939848 -1.979446 -18.569702 -2.953668 5.312913 23.581561 7.789726 -9.877521 7.396150 -7.144107 11.118480 -0.355675 -0.276385 4.642180 10.654307 +-16.059492 13.074564 0.271785 -16.719005 43.339468 -11.281636 5.660567 16.759836 -13.312593 20.556003 -17.878220 8.003799 -3.065651 -30.256601 4.753588 -6.588466 1.324124 18.277598 -2.724440 14.204826 11.118359 -9.499958 5.081973 -8.330495 -8.396728 -29.135542 -0.899842 9.433205 13.554680 -7.295936 2.653453 3.674169 29.438939 -6.959606 18.662943 19.315980 10.285656 21.488640 10.330161 -18.723688 6.373623 9.311878 -9.299553 -24.444272 3.280725 -5.023192 -25.352955 -13.511361 12.004652 -20.746591 -2.672075 19.588934 -1.673175 -7.067311 -20.492047 20.062511 21.662909 -3.940857 24.278380 5.766992 -9.651190 -7.610261 -17.866398 23.769646 -15.186535 1.303575 -6.400462 -20.967814 -0.678256 14.900420 -1.082109 -12.024505 -13.379009 8.311951 12.170802 -19.154736 5.393132 -7.462403 -12.033166 -21.362363 -13.905737 7.875869 -9.695835 19.824029 1.481346 7.552673 -1.399755 5.980418 1.429168 -22.490133 -3.625332 24.598078 -8.931452 -4.645288 -11.149171 21.642799 13.533988 -8.466015 -9.939397 -16.101458 5.572941 -5.535637 11.350714 -11.924231 5.383516 -19.123091 -1.126425 4.240854 5.897306 23.540355 -0.214939 10.208734 6.972816 12.298352 -14.544672 3.002931 -34.523099 8.128394 -10.154144 4.237892 -8.160176 7.038207 12.846571 11.711993 16.690868 -30.316861 22.753774 3.946493 -0.439550 -16.919071 7.159934 1.422585 -6.321309 -6.037519 13.993705 -3.533619 -2.230810 -0.583871 9.189893 4.255103 -13.058716 -7.961405 -0.571296 26.819840 -28.472313 8.900493 -4.908559 -7.728618 0.467557 6.450577 13.089925 13.345249 30.255108 20.126247 -4.422646 20.369132 -28.422927 7.104656 31.637313 10.168972 -16.797992 19.955906 -13.669741 -6.363911 5.318873 16.408639 11.667963 9.762249 -20.655772 -17.842391 8.941530 -1.543005 23.906151 5.808223 1.734642 -25.402171 18.028796 -1.216348 -0.507273 33.466670 12.358727 -25.647784 13.268526 20.932151 -21.009949 -12.292894 8.695951 -16.075409 -6.520468 -10.187107 8.238094 14.373546 -15.299766 -17.198006 -5.030380 -17.365671 17.571058 -4.574056 -13.501047 5.225155 -13.558892 -9.946719 28.894189 4.406899 -4.057221 -12.481061 -20.904612 -13.968390 -26.971452 5.307055 5.268480 -9.963428 -8.355274 -18.134839 -8.399386 21.313975 -3.929456 7.502985 -37.306410 -0.116642 14.059735 18.108533 5.382642 -18.382804 -3.236569 3.408447 -0.663930 0.281060 -6.697117 14.975738 26.191238 -17.675094 12.654762 0.050082 -11.631713 12.707756 20.450192 -22.124382 28.698179 2.730301 30.143154 4.734383 8.748954 -10.465699 3.576656 -0.116617 -9.632014 -5.507914 7.768053 -17.804171 -9.199259 11.897033 -7.753789 -23.125356 4.565735 17.390054 4.590193 3.906610 -3.629097 -8.117712 -5.717525 -11.053363 5.830597 14.297834 -6.717159 -15.469135 11.174226 16.457806 -7.123115 -9.360232 3.520548 12.088111 17.216468 -25.160606 14.917141 -2.952587 9.931923 -24.796344 -27.159622 13.020246 -14.330824 -13.542870 9.454057 -31.841299 -13.116816 -13.593967 11.927314 -27.309686 -5.346604 5.759141 24.939829 3.211177 -4.093265 14.606171 -7.573887 8.847797 -3.568399 2.836995 2.890545 16.883451 +-8.711590 7.916483 1.679227 -8.138025 21.381073 -6.340639 2.962577 9.569855 -6.870585 10.973729 -9.048167 4.437839 -2.138398 -15.163223 2.387420 -4.524242 0.981869 10.002156 -1.051732 7.589336 6.294904 -4.637170 2.071498 -4.274555 -4.573275 -15.969097 -0.218861 4.597477 6.308643 -3.069219 2.693469 2.707822 15.938339 -2.573413 11.191841 10.891797 5.036698 12.031484 5.910491 -7.323360 2.340061 5.287613 -5.064701 -13.421246 2.311732 -2.728478 -12.314850 -7.416704 5.911306 -11.582665 -0.601399 10.160270 -0.848440 -2.517044 -10.409524 9.616136 10.860906 -1.491148 12.847775 3.317644 -5.695840 -3.645884 -9.429210 11.492666 -7.972685 0.231940 -2.688886 -11.149672 0.577619 6.979608 0.101912 -6.249502 -6.369711 4.927907 5.646108 -10.090989 3.065165 -3.497081 -8.244255 -10.304002 -7.646829 3.939962 -4.308337 10.429331 0.390917 3.745268 -1.691307 3.198379 0.589927 -12.264452 -1.568338 13.301862 -5.100035 -1.754807 -6.357622 11.443825 7.066177 -3.494535 -4.786237 -7.730266 3.416253 -2.981578 5.959596 -5.824879 0.976210 -9.965091 0.105258 1.460905 2.434725 12.555833 -0.367236 6.180792 4.481782 7.002834 -7.910056 3.018059 -18.113525 5.321540 -5.278939 2.101802 -3.548620 3.574006 5.969416 5.953432 8.887839 -15.627938 11.438312 2.263277 0.128573 -9.508020 3.859765 -0.099366 -3.420230 -4.309012 8.103623 -1.313832 -1.367717 -1.072598 4.083713 2.055471 -6.195018 -6.357323 -0.568183 13.830882 -14.432977 4.352083 -3.044686 -4.374015 -0.260555 3.338608 6.636992 7.501998 15.602158 10.728872 -2.301403 9.612720 -14.760131 2.567829 16.435699 6.317927 -9.070878 10.745167 -6.503133 -3.703926 3.281059 8.388169 6.453458 5.319065 -11.382106 -10.548065 3.753824 -0.609782 12.892498 4.382225 0.948752 -13.162503 10.178690 -0.627297 -1.727050 17.767909 6.520333 -13.263609 6.042661 10.183583 -11.491932 -6.903106 4.662684 -8.549904 -3.359198 -5.051769 3.931114 7.441315 -8.355135 -8.767374 -1.564526 -9.673601 9.396897 -2.386331 -5.422485 2.502452 -8.100744 -6.220284 15.099095 2.550936 -2.312864 -6.688211 -10.651628 -7.313346 -14.093155 2.906421 2.770717 -4.611087 -4.763822 -9.715826 -3.991053 10.406938 -1.856081 3.951038 -18.181599 -1.283269 7.460519 7.954983 2.552793 -10.763259 -2.009895 1.414522 0.114669 1.082562 -2.536176 8.577780 14.871026 -8.907229 6.973611 1.313203 -5.892971 6.488515 10.830090 -12.366773 14.848757 0.244311 14.609509 2.715900 4.439397 -5.892221 1.119285 0.180671 -4.090506 -3.115356 4.205649 -8.591599 -4.408277 5.449575 -5.360109 -10.312781 1.998700 8.566083 2.266155 2.134293 -1.051577 -5.129614 -2.876505 -6.555439 2.751561 8.048179 -2.927189 -8.288850 6.429073 7.485801 -3.776835 -5.493461 1.740612 6.208310 8.766076 -13.288720 7.119428 -1.392636 3.969529 -12.856867 -13.946598 6.796826 -8.406663 -8.412964 4.482361 -16.196125 -5.706759 -7.069306 6.089450 -14.596483 -3.052999 2.811325 13.424694 1.793626 -2.257768 7.699583 -4.027608 5.436884 -1.205097 1.644518 0.971646 10.212757 +-7.564139 5.837368 1.301014 -4.734343 15.145019 -2.182949 1.263891 8.234049 -8.396266 12.135103 -4.455440 1.725484 -2.768815 -11.708720 1.130020 -4.676499 -0.611068 4.801111 0.446611 7.483174 5.327465 -6.139973 1.025863 -0.765107 -4.952011 -11.057813 -0.421013 4.038430 11.413722 -5.341167 1.425116 0.600421 13.310377 -2.656493 12.666541 9.535337 4.834976 7.538561 3.987048 -7.495650 -3.929791 5.703293 -7.538285 -7.879301 0.535786 -2.722968 -9.500401 -3.415610 5.302211 -3.706784 -3.602761 10.333728 -3.062807 0.874512 -6.984436 8.670338 3.762597 -2.262638 13.305913 1.114924 -3.974683 -4.480723 -10.746370 10.773784 -4.546615 -0.359145 -5.265497 -7.664319 3.509283 -0.001560 -3.203317 -6.160376 -1.079247 11.228867 5.788867 -10.562940 2.405372 -4.622282 -10.045553 -11.082290 -8.748287 3.858778 -1.556211 9.463966 1.321134 4.471812 1.415418 6.643804 -3.450060 -16.197712 3.481436 11.561520 -7.104446 -3.616309 -5.891683 9.649393 2.880921 2.100388 -5.261993 -4.078968 3.824267 -2.502109 5.840539 -10.468521 5.748013 -10.382826 -1.839200 -3.079277 4.142181 7.552072 3.986629 3.080274 8.243091 12.289786 -8.344824 -1.032742 -10.010337 3.895961 -3.636560 3.048660 -3.569242 6.505782 4.273106 4.540241 11.907763 -16.535070 3.777154 -0.054066 0.115239 -12.999817 0.422735 -5.456541 -2.963249 -4.704497 7.031086 -2.199501 -1.631860 -5.650597 3.869328 3.349487 -6.979701 -3.796583 3.289407 10.496059 -12.735370 3.320837 -2.765754 -3.519070 -1.470720 6.354010 9.049195 10.664270 13.480871 10.314444 -0.977395 9.720385 -12.477977 0.228780 11.797350 3.880147 -9.790806 12.428084 -10.494911 -4.479903 2.163946 8.866018 9.368759 4.182422 -10.396008 -9.161865 8.371883 4.311968 12.723402 0.782462 0.973822 -3.386418 8.961865 -0.517398 -7.378313 13.694533 3.513500 -10.500776 6.932097 4.086520 -7.488958 -3.717867 7.273030 -10.966248 -0.799841 -5.186167 0.805415 7.508533 -5.836611 -2.168411 1.339922 -9.699674 11.397632 -2.563916 -1.528718 5.248685 -8.353108 -7.121886 10.253548 1.303910 -2.984160 -9.483329 -9.107362 -8.087867 -9.158507 3.417302 1.030793 -2.994502 -5.686735 -11.296775 -3.077504 7.892687 3.560190 7.673937 -17.141002 -1.926043 5.946252 5.397358 5.850997 -5.903350 -1.358174 0.051802 -0.996353 2.637935 -3.643984 9.478125 13.720953 -7.632097 6.836103 -4.001046 -6.530170 4.757540 4.931648 -14.487809 13.693560 2.439988 8.793324 0.962782 3.606518 -5.941204 1.656169 2.007329 -1.575947 0.530605 1.560993 -2.717047 -4.508144 0.941027 -8.048786 -7.584780 -3.363377 3.524534 -0.929272 3.839491 -1.779861 -6.053069 -4.157433 -7.737621 2.845269 7.961977 -1.786414 -3.271679 8.963862 0.931781 1.766470 0.072847 0.877898 4.153184 6.214273 -13.185220 -0.371679 -2.261969 3.818358 -7.782785 -12.807218 1.148815 -6.269815 -5.810224 5.791994 -12.591172 0.260881 -7.660886 -0.333781 -12.394223 -2.804124 3.191765 14.556297 2.783227 -5.918037 5.716552 -4.495676 6.633280 -0.108650 1.615539 1.445167 7.144344 +-56.898081 35.863338 1.473718 -55.259090 119.017982 -32.753168 1.712599 54.915009 -8.802299 76.966665 -54.414898 -0.996481 -19.552050 -94.581105 10.247244 -24.141727 2.850796 60.763434 -12.780914 43.128924 43.975731 -28.347590 18.431752 -23.954660 -30.077693 -72.315531 -9.221427 30.947210 35.702980 -27.240767 10.075151 11.689115 99.974978 -10.146737 78.638757 68.133328 32.492152 83.148718 31.152246 -15.600573 7.824518 38.741953 -36.152158 -85.696885 22.801250 -23.056095 -67.968067 -52.063346 40.286086 -63.554302 27.117933 69.995932 -7.687016 -16.060652 -65.766193 47.371625 48.209437 2.451596 89.708318 20.874460 -38.478732 -5.689002 -70.209559 63.290675 -55.411989 16.013769 -9.480221 -71.344482 -1.199908 34.562957 14.939701 -47.164852 -47.183318 39.751664 34.565227 -65.377360 20.976726 -28.811794 -32.817027 -61.274573 -55.476434 27.418399 -21.473339 66.090771 1.513143 26.784848 -11.470808 27.369508 -3.932194 -88.189744 -1.467425 73.723436 -35.042217 -1.481007 -36.825395 62.606897 25.539134 -16.931896 -37.878944 -34.027232 22.846304 -13.771052 41.852744 -17.476329 3.011992 -60.217501 19.091610 14.660720 10.962798 45.322410 25.750924 28.350324 36.065135 56.773151 -46.303740 20.378651 -103.102378 28.930667 -22.482752 16.290698 -21.829049 31.121365 30.893380 24.759470 61.763820 -100.450854 64.313658 11.919996 -12.799774 -64.717471 23.086199 -7.818043 -25.009471 -26.618954 54.389730 -9.960468 -12.158502 -13.667218 22.925162 9.073948 -43.596832 -29.526049 -0.117289 68.520974 -62.761627 26.978086 -20.995518 -37.482287 -2.213837 27.090928 47.177875 51.591047 100.945983 69.050174 -14.105550 26.640703 -90.846548 13.500457 95.865096 24.967288 -65.160320 72.485021 -40.796308 -17.101999 22.084853 57.870723 47.744262 28.169740 -52.207323 -49.906016 17.727264 4.079870 85.045616 19.151699 13.637030 -63.704201 49.190420 3.236564 -12.574650 117.107241 40.210506 -80.763905 25.825628 58.113842 -61.373662 -42.962212 35.366462 -45.924259 -12.880837 -31.988872 26.201382 47.105901 -53.793332 -51.522392 -6.162253 -67.379914 69.245461 -18.304342 -23.746364 24.026551 -70.759512 -34.115742 94.491892 11.234860 -20.822329 -41.672871 -67.635454 -31.718015 -88.670135 24.045178 22.689362 -26.049057 -30.075527 -63.280978 -15.164080 66.697734 -3.761058 27.254283 -86.365803 -13.923571 50.015415 22.640049 26.822355 -58.579571 -13.276135 8.175205 1.992132 19.227265 -11.768856 42.286928 94.664615 -57.603943 37.557266 25.175531 -21.112626 34.678599 60.479451 -83.390663 102.525067 -0.800573 63.418971 9.047365 30.041350 -32.221900 10.591330 5.721361 -9.852678 -9.900644 26.383608 -48.160407 -30.587763 24.705178 -45.899407 -53.377109 8.117877 50.761775 8.874340 20.064286 -4.099799 -35.216482 -21.834168 -38.935666 19.125390 55.936517 -8.497260 -47.912649 41.741618 40.024773 -17.144397 -20.513110 12.695249 34.643382 64.834737 -89.208584 37.687430 -7.740736 17.490273 -70.406503 -75.917600 29.356304 -50.901417 -35.452406 32.199654 -96.789061 -33.461516 -49.210982 35.502628 -69.656729 -2.074445 11.836256 91.164851 32.483251 -21.609014 47.349540 -24.094221 40.604581 -1.799199 -5.592007 15.136120 69.310539 +-14.831885 15.686198 9.264061 -11.008766 30.476809 -1.502031 3.463297 17.465340 -20.447689 23.995093 -10.298652 6.750335 -4.236446 -22.270219 0.566850 -10.707672 -3.786013 9.284905 1.348771 15.835494 10.173048 -12.927452 2.519790 -1.697921 -10.903462 -19.227362 -1.430304 7.886732 22.011478 -10.693995 6.152248 -0.895543 24.002554 -6.212014 24.456585 18.876755 7.365560 15.381986 7.830683 -16.346565 -7.960648 10.634093 -14.633274 -17.159139 1.261178 -6.917453 -16.678733 -7.703312 9.649687 -10.262769 -8.665091 19.550122 -6.428570 0.193171 -13.098393 17.994040 7.449353 -5.035230 27.081654 1.352558 -9.861513 -10.789553 -22.197345 20.213019 -7.883562 1.128950 -10.037601 -16.042969 8.255942 0.213729 -8.924329 -11.309275 -2.045478 22.782752 9.523554 -21.094689 2.574176 -11.668486 -25.850150 -18.443318 -13.564637 6.953747 -0.665075 16.900577 2.977594 8.593270 2.868554 13.719107 -7.992182 -32.851712 6.262541 24.803834 -12.947157 -5.505266 -10.724754 20.107081 4.016194 3.827459 -11.206068 -4.472344 7.485991 -2.012387 11.119280 -26.563841 10.513675 -23.694443 -1.809125 -4.856334 6.523052 13.615521 7.599767 8.601130 17.214164 24.898349 -17.728360 2.454407 -22.235011 6.642191 -8.147881 5.800697 -6.829801 12.149225 3.945724 8.689213 24.071139 -31.396292 8.390865 -0.393020 -1.462112 -28.274199 1.341009 -11.032667 -5.381352 -8.044693 11.941553 -3.408518 -3.023686 -11.669543 4.660218 5.457914 -14.299309 -12.262382 8.279178 23.610013 -24.481660 6.736405 -4.836061 -5.249387 -3.196840 13.230973 19.712898 19.727004 28.177978 20.010662 0.766701 17.945757 -23.791354 -0.916440 21.293297 9.266081 -19.766344 24.385469 -20.174553 -9.993226 4.079249 16.040917 18.125919 10.925960 -24.310223 -21.914873 18.925595 6.945101 24.993918 2.841225 2.899167 -6.465103 21.281884 -3.000740 -14.688211 24.565709 7.211695 -22.765782 14.645811 7.263243 -12.932109 -6.533015 15.794125 -21.895079 -1.567194 -6.456682 -1.824077 13.819814 -11.565238 -7.359891 0.799830 -19.728430 25.714400 -4.869004 -0.371643 8.948695 -15.858915 -17.453058 18.973049 4.235072 -7.794418 -17.358280 -15.819377 -18.732789 -17.901580 6.326724 5.209108 -8.117636 -13.466477 -22.202099 -4.820386 11.368317 5.969109 14.762769 -29.960731 -6.627658 12.717771 10.589787 12.124453 -10.590053 -2.665290 -2.193314 -1.843613 7.507429 -6.326164 22.469423 28.508158 -12.964322 17.692159 -5.001027 -11.836939 9.374677 10.822012 -28.284604 27.728009 4.109245 19.612049 1.833574 6.942339 -11.747928 3.534707 4.487717 -4.350977 2.871958 3.595725 -5.531487 -8.582481 -0.946884 -18.141109 -12.439988 -5.341976 6.527396 -2.739027 7.554378 -0.156821 -11.207646 -10.624576 -16.644948 3.232087 15.310022 -6.884141 -8.353902 16.587814 0.611793 3.592836 0.956337 1.819172 9.888846 10.479157 -25.489196 0.151024 -5.329555 4.638393 -18.649354 -23.084448 2.387929 -13.834593 -12.300062 8.540374 -23.959614 1.424667 -15.463245 -1.281217 -26.120501 -6.428597 6.184017 30.429609 5.482437 -10.791393 10.945966 -9.539157 14.938904 1.099778 4.255532 2.274085 14.375486 +-7.062241 7.732925 4.446305 -5.951382 14.385952 -0.534449 2.125158 6.565695 -6.888897 11.576794 -5.807426 1.602295 -1.863056 -10.567942 0.051067 -5.941633 -2.964623 4.491090 -0.025670 6.767850 4.740912 -5.920722 1.381180 -1.342435 -5.262209 -9.876269 -1.175564 3.657755 9.162699 -4.288483 3.550352 -0.877185 10.782856 -2.465295 10.795427 8.463551 3.062738 8.024426 2.358916 -3.616234 -2.851915 4.750215 -6.566911 -8.195786 0.902416 -3.339888 -8.540295 -4.940411 4.248883 -6.416853 -1.403413 9.140955 -2.427684 -0.770716 -6.011006 8.346497 4.228493 -1.688851 12.323717 1.032698 -4.291914 -3.281367 -11.336856 8.855446 -3.867008 1.529953 -3.069609 -7.937934 2.844794 0.674507 -2.742473 -4.837318 -1.896792 9.878627 5.050727 -9.666109 0.940739 -6.006625 -13.487978 -8.193838 -5.703485 3.539675 0.675622 8.137781 1.353977 3.863005 1.465568 6.108859 -3.656693 -14.736890 1.714591 12.463701 -5.080555 -2.469887 -5.908895 9.083314 1.775017 1.380703 -5.374358 -1.772769 3.489938 0.125016 4.958574 -10.997035 1.677604 -11.776427 0.484825 -0.455780 1.480693 4.489390 3.323999 3.222381 6.830529 11.389375 -9.101346 3.019109 -10.676149 2.940001 -2.214221 3.134806 -3.129755 4.856758 0.779999 4.107802 10.512098 -14.367077 5.008198 -0.345885 -2.019241 -12.998497 0.417100 -4.508770 -2.789185 -3.252538 4.885137 -0.927043 -1.490907 -4.761750 1.724920 1.856626 -5.684274 -6.195682 4.213637 11.064112 -10.147539 3.027516 -2.058009 -2.383852 -2.278685 6.370771 9.207512 8.137178 13.353440 8.968035 1.377355 6.433219 -10.840293 -0.373934 10.517294 4.927150 -9.112721 11.014508 -8.552339 -3.788833 1.761410 7.183184 7.436675 5.082064 -11.311357 -9.572022 7.433989 2.126631 11.821288 2.610375 1.087099 -3.922470 10.209137 -1.519117 -6.271909 11.610911 6.037807 -10.039305 5.099098 3.646616 -7.384914 -4.054293 7.698016 -8.870337 -0.745512 -2.258563 -0.506691 5.585091 -4.434326 -4.426212 -0.253680 -9.282751 12.177229 -2.352963 0.730212 3.887720 -7.297356 -9.188957 8.623917 1.009323 -4.148543 -7.260626 -6.758416 -8.713269 -8.383978 3.055846 3.420621 -4.244305 -6.809822 -9.985848 -0.941701 5.769961 1.401035 6.358914 -11.274942 -4.175960 5.736922 3.958388 6.235720 -5.370866 -1.044025 -1.705116 0.165517 3.698545 -1.728889 10.008641 14.118466 -5.675170 8.267858 -1.520955 -5.068888 3.637347 6.068317 -12.237268 12.874411 1.215686 7.869479 0.263140 3.342299 -4.428829 1.514464 2.401912 -2.232612 1.700824 2.269724 -2.786969 -3.776193 -0.661479 -9.425315 -5.011621 -1.167168 3.478388 -1.053321 3.230253 1.039747 -5.459303 -4.515335 -7.825675 0.779283 7.079098 -1.982681 -4.094869 7.025230 0.584474 1.199667 -0.082723 0.885997 4.690206 5.438399 -11.411102 0.846055 -2.351343 1.112282 -9.350572 -10.768101 1.212319 -7.778725 -6.808310 3.714087 -11.112577 0.231592 -7.335412 0.129260 -12.183549 -3.395096 2.962374 13.740614 3.499789 -4.365371 5.095033 -4.239287 7.605514 0.605711 0.979482 2.448721 7.258405 +-21.222373 10.395072 -3.862645 -24.739284 57.977988 -12.669009 -2.251835 31.194899 -8.254419 34.141915 -18.179920 1.200222 -5.623654 -43.072412 5.247023 -7.628663 2.050104 22.209983 -8.522582 18.517221 16.325726 -8.734428 10.061281 -5.405514 -15.271112 -27.300209 -2.424494 16.115984 20.500823 -16.881376 2.197374 3.504303 41.807062 -7.775875 33.587342 23.572063 19.518375 28.382436 13.161687 -16.056706 5.114021 11.394363 -14.608687 -31.030925 5.769877 -7.959471 -35.453702 -16.195435 17.887608 -24.704066 2.772061 30.333334 -2.131124 -5.575731 -24.323902 24.836776 13.520279 -6.164777 37.696041 8.375757 -20.658110 -12.765861 -32.833411 31.508786 -20.413404 7.319432 -10.931168 -28.378203 -5.541813 17.908492 -1.756812 -21.679414 -16.402832 19.686308 19.372172 -27.893411 10.933381 -11.401019 -3.774208 -29.654067 -20.600222 15.652827 -10.776281 26.651611 3.135560 15.290611 2.418877 13.263012 -6.688539 -42.706066 4.838628 30.289432 -19.587749 -5.334344 -21.143782 24.196745 3.618076 -6.329898 -19.112412 -20.017934 10.443155 -6.317502 17.006273 -19.350426 14.071328 -27.510710 3.659350 5.745359 10.833866 21.094394 12.501858 8.201446 14.698764 29.688280 -19.663695 4.042054 -43.014640 11.313151 -14.757512 9.338828 -16.094379 14.484239 21.318465 17.289858 27.676215 -48.156857 27.273946 5.901122 -5.761336 -29.857330 8.775879 -2.559915 -9.241503 -8.211109 22.831129 -9.847756 -3.693782 -5.700784 15.044084 6.414002 -23.054170 -6.952671 1.370343 26.267002 -33.806776 12.823847 -5.805096 -13.435236 -0.581051 14.632043 26.064742 21.708528 46.488272 25.373653 -8.139198 18.605236 -39.865674 8.504778 40.841251 6.154652 -26.863240 36.743307 -25.622085 -7.237209 4.986561 27.072435 20.628638 10.857073 -22.315014 -18.847622 17.285970 8.924743 37.975202 -0.159151 5.317200 -27.094911 15.153298 -5.384480 -2.452902 49.412236 17.732142 -36.192421 14.082321 24.356743 -20.811037 -14.432943 16.972017 -26.546104 -6.621328 -14.170547 12.202732 22.998746 -21.429809 -19.665507 -0.005495 -25.605537 29.516607 -9.035032 -17.104397 11.136023 -27.966601 -9.931284 40.208628 3.730921 -7.895080 -17.528777 -32.010393 -14.205699 -35.999158 8.386424 10.247216 -9.381699 -7.081099 -25.935911 -11.925344 29.702095 2.093990 13.305196 -50.518452 1.094907 22.031035 9.676962 13.741914 -17.767482 -2.295417 2.962250 -3.669864 4.483432 -13.116864 16.160135 35.975003 -24.697039 22.121885 -0.170134 -13.875508 13.260352 20.424277 -37.095177 46.797046 6.674368 32.149967 4.165290 12.827600 -14.207284 8.258118 -1.546604 -9.724472 -4.304018 10.486571 -20.977883 -15.407351 9.430122 -15.584596 -31.197339 -0.147362 23.381871 -1.511978 9.424440 -6.694516 -11.728453 -11.189595 -18.915919 13.686267 20.901209 -10.266453 -17.509104 19.598181 21.356718 -5.565358 -3.342573 5.653076 17.266426 29.375435 -37.989423 13.423973 -1.732637 15.844405 -30.925376 -34.955937 11.727919 -18.000016 -7.831742 9.467891 -42.675458 -18.227197 -19.971747 15.436263 -29.113660 1.281683 10.341696 43.002339 11.790587 -13.481591 19.340273 -9.808185 12.235730 -2.267232 1.059100 9.868771 22.647673 +-6.498618 6.353415 1.976925 -4.987335 13.720428 -2.318773 1.497085 6.060208 -5.075076 10.504807 -4.431958 -1.986450 -2.642216 -11.931485 1.052026 -6.305436 -1.495922 5.339077 0.232164 6.879220 4.793545 -5.829466 1.083874 -0.757844 -4.118382 -9.589863 -1.275309 3.783374 10.025394 -5.694343 2.527446 0.020552 12.219810 -2.354626 11.326511 8.450374 3.638255 7.403676 2.795314 -5.332117 -3.504046 5.316269 -6.553607 -7.197681 0.317398 -2.036455 -8.729066 -4.138041 4.384224 -3.741182 -1.672444 9.312864 -2.576595 0.311752 -6.673622 7.919384 3.852095 -0.097976 11.887719 1.116498 -1.882171 -2.827573 -10.904612 8.921875 -3.960053 0.301018 -4.288406 -6.842752 2.789638 -0.274250 -4.060053 -5.163875 -1.837990 10.331902 6.422471 -9.140719 1.720460 -4.919532 -11.693376 -9.046227 -8.123424 3.423877 -1.633685 8.611675 0.961772 3.862691 2.482214 5.924667 -3.390507 -14.420227 2.860274 11.255223 -5.409257 -3.980827 -4.529190 9.587723 2.374746 1.802458 -5.533168 -3.107125 2.929093 -2.130254 5.382658 -9.061806 3.448308 -10.644732 -0.729244 -1.468032 2.611615 7.098918 5.819314 2.443459 6.816635 11.125852 -9.819714 0.335512 -10.584693 2.795965 -3.660045 3.047412 -2.455268 5.610713 2.045002 4.602622 9.595936 -15.100695 3.791866 0.275278 -0.568872 -11.076807 0.217090 -4.569732 -2.786755 -3.813092 5.613969 -1.450886 -1.561791 -4.431677 2.641515 3.342183 -4.853379 -2.854983 3.439450 10.057885 -10.437571 2.955373 -2.258041 -3.329112 -1.531533 5.533066 8.550941 8.542345 12.990246 9.026373 -0.821650 6.319868 -10.571022 -0.047007 10.457870 0.992410 -8.249725 11.096433 -8.498687 -3.875995 1.286940 8.435124 7.981124 4.351793 -9.519535 -8.408745 6.505681 3.175486 10.948004 0.459371 0.162544 -4.013357 9.615785 -0.631757 -7.184562 12.928928 4.862228 -8.807481 4.390249 3.384401 -9.636522 -4.208847 7.077171 -9.012296 0.278213 -4.439847 1.133039 6.008288 -4.418892 -2.859965 0.549030 -8.482965 10.207252 -2.670848 -1.702347 4.439285 -7.257357 -8.289560 10.060836 0.971380 -3.081923 -8.034936 -8.236849 -7.214182 -7.886722 3.725503 1.001272 -2.730931 -5.419099 -9.086266 -1.594834 7.666432 2.729216 6.730739 -13.007746 -2.481461 5.099892 5.309845 5.946562 -3.597748 -1.187998 0.006045 -0.197558 2.223934 -1.771715 8.721670 13.879477 -6.397519 6.633586 -2.779911 -6.786154 4.048283 5.494614 -13.013894 12.363747 2.117683 7.492992 -0.113988 2.855205 -4.483651 1.410787 2.763953 -2.671672 0.969342 1.012730 -1.962339 -3.802493 -0.085984 -8.050240 -6.482065 -2.482601 3.178568 -1.394297 3.740289 -0.447223 -5.613901 -3.347397 -5.811446 1.936937 7.126642 -0.044951 -2.111626 7.462692 0.921299 2.588001 0.380329 0.399167 3.382376 5.789990 -11.477324 0.199067 -2.424502 3.356268 -6.645356 -11.424902 1.220528 -6.542368 -4.772606 4.633069 -10.167869 0.241427 -7.234828 -0.200987 -11.112938 -2.981493 3.028498 13.141213 3.982918 -5.166482 4.275862 -3.936160 6.481889 0.046037 0.034196 2.757210 6.813749 +-2.957226 1.539912 0.379537 -1.770024 8.211300 -1.912243 0.136462 6.073119 -3.795962 6.326909 -0.928508 -0.325040 -1.267928 -5.614603 0.834033 -0.648548 0.212709 3.462884 0.125201 3.690413 2.600721 -2.061750 0.131988 0.333631 -2.073375 -3.881677 -0.418585 2.179407 5.444851 -3.536775 -0.788344 0.795043 7.356007 -1.565968 6.986730 5.010666 2.811242 3.202190 3.275269 -5.279081 -2.006660 2.871192 -3.654404 -3.399468 0.000000 -0.940129 -4.098550 -1.765694 2.212207 -0.857604 -0.238901 4.707083 -1.956952 1.155593 -2.678787 4.337035 0.090276 -0.587570 6.024393 0.624889 -1.758653 -1.764774 -5.201947 7.159691 -2.105890 -0.075115 -3.569713 -4.397513 1.610846 -0.524126 -0.526359 -3.300119 -0.453311 6.526839 2.371633 -4.566549 1.335674 -2.133399 -2.011477 -5.535001 -5.491761 1.745893 -2.687974 3.816922 0.560954 1.798702 -0.890500 3.499883 -1.992735 -8.197041 2.422491 5.235287 -4.204044 -1.901644 -3.236920 3.487128 1.890460 1.444481 -2.095210 -2.650914 1.676973 -2.169826 2.978532 -3.962320 5.606508 -3.608504 -1.734307 -1.315781 3.326109 5.316073 2.883998 1.773184 5.130677 6.048153 -2.468366 -1.609358 -4.435838 2.661002 -3.228112 1.205403 -1.395084 4.072313 3.079596 2.281293 6.036835 -8.460193 0.345971 -0.009962 0.349511 -4.957834 0.155071 -3.068043 -1.356216 -2.863560 3.668141 -0.920715 -0.858994 -3.005610 1.836119 2.107386 -3.494037 -1.892181 1.080327 4.252558 -6.639315 1.510824 -1.474177 -1.806509 -0.163841 3.460056 4.957301 5.855782 6.170384 5.155782 -1.000725 2.179866 -6.879353 -0.163906 4.624944 -1.037690 -4.576208 6.773410 -5.225113 -2.659676 0.964160 5.780368 4.427305 1.094786 -3.568411 -4.060304 2.909109 2.829409 6.100999 -0.499983 0.163351 -1.004922 2.858563 -0.565572 -4.777943 6.594650 0.909782 -4.732946 1.959472 1.336603 -2.727654 -1.933816 3.356806 -6.138906 -0.339942 -3.033079 0.375628 4.136000 -2.989432 -0.008450 1.949487 -4.438164 5.528790 -1.409052 -2.164798 2.316975 -4.031225 -2.289397 6.010198 1.395122 -1.102064 -4.898935 -5.372165 -3.335764 -4.095415 1.778850 -0.516234 -0.226061 -2.535832 -5.255341 -1.738809 4.240195 2.530010 3.637285 -8.717360 -0.241534 2.942687 1.689417 2.583587 -3.349399 -0.789948 0.055872 -1.137040 0.834326 -2.029511 4.101051 7.164972 -3.275255 2.078776 0.913262 -2.694062 1.913839 1.767415 -8.308106 6.647447 1.119960 2.666851 0.702969 1.210667 -3.010551 0.629007 0.589795 0.461402 -0.182559 0.426984 -0.720453 -1.886682 -0.409412 -3.996518 -4.136824 -2.358110 1.408395 -1.351911 2.341124 -2.549903 -3.946056 -1.949241 -3.771071 1.673213 3.840389 -1.102660 -0.856961 5.007868 -0.130879 0.826398 0.481416 0.176574 1.675213 2.730029 -6.624272 -0.603288 -0.658742 3.777944 -3.023999 -5.745966 -0.057914 -2.465582 -1.926370 2.172396 -5.489174 -0.992075 -3.918646 -0.675410 -6.276883 -0.885438 1.868481 7.863202 1.201012 -3.681843 2.027302 -2.245942 2.965380 0.589017 0.486613 0.253482 2.978423 +-9.733244 8.495450 5.110104 -6.521901 17.837377 -1.097493 2.376063 8.391126 -10.030429 14.420392 -6.172724 -0.104564 -3.765809 -14.179848 0.873409 -9.191525 -2.034207 5.639251 0.400105 10.449844 6.984812 -8.162791 1.531181 -1.356751 -5.990531 -11.948606 -1.933306 4.809396 14.126205 -6.486127 4.177230 -0.423631 15.788055 -3.171752 16.174017 12.288033 4.344436 9.862908 3.043678 -9.290761 -5.716848 7.890025 -9.919043 -10.724426 0.501742 -4.172589 -11.059611 -5.019627 6.389940 -5.212794 -5.805157 12.855233 -4.347247 0.942158 -8.210788 10.138084 4.676071 -0.578979 16.974179 0.995912 -4.678663 -4.838214 -14.371773 12.138828 -4.876504 1.033035 -6.683119 -10.258087 4.650666 -1.170105 -6.155393 -6.158448 -2.198572 14.859480 7.835453 -12.944679 2.420142 -7.025314 -16.787719 -11.292650 -9.696655 4.239205 -0.968691 11.509105 1.314200 5.568231 3.257396 8.827979 -4.654972 -20.682104 4.268326 15.577936 -8.169110 -4.184147 -6.274282 12.262906 2.805212 3.420202 -7.627886 -2.716283 4.452573 -2.293181 7.428757 -13.652802 5.369210 -14.231247 -1.327093 -3.015776 4.397462 9.332355 5.375212 5.185076 10.911192 15.766897 -12.004180 1.321919 -12.221468 4.339243 -7.178805 4.248237 -3.584188 8.678996 2.748584 5.570780 15.012058 -19.335688 4.567229 0.235085 -0.576169 -16.760143 0.669010 -7.983592 -3.901477 -5.684060 8.024156 -2.051336 -2.340253 -7.691545 3.047695 3.982813 -6.966779 -4.811341 4.970951 12.151962 -13.101262 4.102884 -3.325035 -4.225142 -2.001540 8.314600 11.751288 13.028853 17.422036 13.331904 -1.092193 9.712641 -14.212753 -0.359515 13.885609 2.923139 -12.484049 15.074868 -12.246454 -6.104345 2.651559 10.262437 12.210161 7.044998 -13.676712 -12.279700 8.933837 4.695171 15.931278 2.645505 1.129824 -4.231838 12.919614 -2.363513 -9.959933 15.620787 4.785554 -13.647307 7.824226 4.286347 -11.465735 -5.165406 9.554507 -12.965215 0.340298 -6.034232 0.141820 8.656452 -7.002037 -4.033518 1.447781 -12.884259 15.359268 -3.333257 -0.541558 6.045706 -10.548019 -13.036440 13.004180 2.424576 -4.963145 -11.852814 -10.284890 -10.036848 -11.180094 4.906570 1.518929 -4.183792 -8.340415 -13.805320 -2.600044 7.708087 4.257650 10.191021 -17.473245 -3.885766 7.043338 6.533454 8.095341 -5.112671 -2.068502 -1.253247 -1.229537 4.408866 -3.239521 12.523222 18.036230 -8.921573 9.480721 -4.497303 -9.587760 5.647825 6.848875 -18.168260 17.301685 2.475464 10.886392 0.221108 4.643647 -7.137880 1.936090 3.827576 -3.739242 1.708154 2.357738 -2.642101 -5.428087 0.171060 -10.902449 -7.838712 -3.956194 3.530386 -1.675592 5.265061 0.159853 -8.679660 -5.325866 -8.414434 2.389982 10.451477 -2.169523 -4.528466 10.627330 0.038720 2.925484 -0.695403 0.850023 4.897223 7.315929 -16.614195 -0.448763 -3.506448 3.075850 -9.681755 -14.181849 1.081880 -9.439377 -6.817679 6.650405 -13.725822 2.120110 -10.394935 -1.387745 -13.201159 -5.310474 4.293790 18.599667 5.042730 -7.451899 6.776198 -5.960064 9.885384 0.546461 1.457810 2.247235 9.413717 +-7.812402 7.115608 3.548748 -5.932750 21.470083 -5.414366 -0.770866 12.403792 -6.755642 14.076399 -4.771314 -0.752546 -2.996422 -15.576639 1.075013 -3.252036 -2.842860 9.102191 0.418572 9.370129 5.193108 -6.923117 0.573438 0.017450 -5.600728 -10.215414 -3.288487 5.044984 13.490684 -12.911189 -3.642657 0.096117 19.453743 -3.440386 13.757072 11.070112 5.530980 8.441571 7.957617 -14.225590 -4.340018 6.086080 -9.139667 -5.388638 0.840367 -3.771383 -10.386729 -3.416505 5.117199 -1.340129 -0.377604 11.700391 -3.962957 0.564154 -7.312841 11.274720 1.497846 0.715254 14.594331 1.089583 -1.562247 -3.848620 -16.048873 14.588873 -4.889464 1.869001 -8.492927 -8.360888 4.198529 -1.365882 3.013536 -13.836091 -2.325423 14.213246 6.039049 -11.190014 2.032836 -6.602580 -9.582334 -16.641111 -14.659189 4.722544 -6.073121 9.905265 1.271544 4.923261 -4.424713 8.758419 -5.360956 -18.716722 4.081890 14.356453 -6.944294 -4.139277 -7.168021 10.645163 3.131984 2.786156 -6.436648 -6.516392 4.426722 -2.882485 6.474891 -13.455345 15.116762 -12.839970 -1.528187 -2.144645 4.319281 6.911904 8.968378 4.472811 11.148794 14.776798 -10.071955 -7.011598 -15.553050 2.663012 -4.900850 3.023416 -3.282691 8.663620 0.253763 6.215190 13.450052 -23.642901 2.957645 -1.323957 -2.890828 -14.086329 -0.136479 -6.253193 -3.571423 -5.244409 6.531914 -0.995793 -2.429125 -6.286505 3.348154 3.330201 -9.570247 -5.017629 5.352355 16.575630 -16.687368 3.380529 -2.489878 -3.962395 -1.651643 7.836621 12.548303 11.970311 15.626335 11.356429 0.122701 5.559366 -19.025323 -0.762759 9.995355 1.201217 -11.025109 15.149813 -10.174086 -5.794177 1.643160 16.524412 10.024565 1.390037 -11.801815 -12.424358 10.718670 4.896722 14.112666 -4.123091 -0.274340 -0.590505 11.041101 0.692641 -10.939922 17.320647 4.337551 -8.243644 3.201233 3.484833 -2.489693 -5.892946 9.437391 -12.646990 1.288993 -3.874505 -0.514698 8.128676 -4.620664 -2.260944 1.639021 -10.513785 13.921706 -3.601203 -6.549385 5.609344 -9.117119 -10.581543 15.512872 -0.524496 -3.944489 -10.229443 -14.860971 -6.550963 -8.855248 4.220992 1.582306 -3.368816 -7.365128 -12.000464 -1.511425 12.185061 3.670895 8.582933 -21.761998 -4.549700 6.483318 4.217373 9.427992 -7.469775 -0.977807 -0.619961 -1.161977 2.898975 -3.426091 12.479378 18.197521 -7.416012 6.980688 0.386136 -3.920148 4.217576 5.516162 -17.327066 15.833688 3.037246 13.355698 0.221113 2.956026 -5.623972 1.157360 4.212341 2.853806 1.739261 1.108289 -1.005161 -4.540288 -2.665134 -10.008161 -11.515734 -3.934343 3.530752 -4.820422 5.026558 -4.914481 -6.496261 -5.102208 -6.967226 2.362504 8.400299 -0.961242 -1.011833 10.638404 -0.184827 3.145709 7.738294 0.196949 4.328116 6.485345 -14.397912 -1.116904 -3.119075 7.986368 -7.826704 -18.485325 -1.225791 -7.437375 -4.895693 5.477437 -17.745105 -3.195776 -9.381295 -1.445428 -15.817666 1.806145 5.894132 16.635402 6.631844 -8.835404 4.567318 -5.824880 8.437447 0.116078 -0.512332 2.530374 6.476479 +-23.853075 28.601454 15.802754 -19.703720 43.295113 -0.606498 5.942642 16.723002 -15.651742 39.222813 -20.197271 -2.199787 -9.279291 -39.199957 -0.785317 -27.170158 -10.959610 17.155857 1.236818 24.890850 17.391790 -24.587602 4.619690 -6.274566 -16.092118 -39.672220 -4.315498 10.301656 29.728010 -11.817817 17.206379 -3.974075 38.919375 -2.453974 35.261349 28.791297 6.673533 31.064829 7.922205 -1.355472 -14.268120 18.561482 -22.484627 -28.648201 5.693885 -11.674409 -25.978480 -20.263545 12.420278 -22.002658 -0.871661 31.368099 -8.793213 -2.365482 -22.574723 22.489520 18.189190 1.042022 41.183337 3.429303 -6.753549 -8.377862 -39.457968 23.289168 -14.351869 1.853431 -3.152605 -22.991136 12.937093 -2.290995 -6.280365 -11.868007 -6.897164 34.498009 20.015427 -32.274067 2.080622 -21.267236 -62.274053 -26.776531 -21.585005 10.058669 4.134320 29.304916 4.277249 12.923734 6.741902 21.656274 -11.014804 -49.483634 5.913423 41.863700 -12.310729 -9.435755 -18.904093 36.042841 7.341955 6.125920 -19.341379 -2.590005 11.456226 0.315683 17.186099 -30.759290 -7.061743 -42.772912 7.090589 -2.069574 0.105531 11.923149 14.793555 9.023597 21.768851 39.051959 -38.978479 13.741762 -36.165695 8.382256 -2.672479 11.396125 -7.121052 16.196907 -4.358990 12.164460 33.888509 -50.350715 16.177539 0.927136 -7.227861 -44.235681 0.478998 -17.366225 -8.596631 -12.169924 16.165301 -1.875088 -4.661558 -16.628660 1.879875 5.447017 -15.810785 -22.075011 15.469749 42.195263 -30.635970 10.073689 -7.946830 -10.494587 -8.878207 18.901219 28.036037 26.047012 43.255010 30.290695 4.223859 18.492825 -34.047594 -3.724499 37.210603 19.791256 -30.781128 35.618115 -22.206124 -11.824931 4.921058 24.603221 27.215539 14.724274 -39.163546 -33.698426 19.068851 4.413008 38.464067 13.310386 2.356007 -13.004060 40.168045 0.681698 -24.515611 41.102556 22.611937 -26.342877 11.671540 10.225060 -35.673914 -15.488184 24.818155 -23.299037 2.877197 -8.103854 -0.677345 15.241687 -12.387739 -15.569187 -3.992143 -32.714807 40.668351 -7.231951 9.143643 13.552214 -24.958009 -39.585849 29.705518 -1.018020 -16.265418 -25.521113 -23.708859 -29.312917 -26.685538 12.403096 8.480685 -15.572456 -23.547055 -32.994924 0.137415 20.213776 4.463074 19.722303 -32.492099 -19.394672 16.960462 12.191493 21.874675 -19.998557 -4.683270 -3.839105 4.687507 14.395236 2.652131 34.714649 51.426522 -18.153334 22.755107 -6.638489 -15.086091 13.970198 22.821205 -41.538536 41.185929 -1.436082 23.519223 -1.744671 11.429729 -11.687237 4.286332 12.403647 -7.524919 8.369237 7.049030 -6.723675 -11.917304 -1.379153 -34.006275 -14.004011 -3.535319 8.526024 -2.157142 11.349985 7.153248 -20.328142 -11.458419 -21.742580 0.874742 25.249887 2.879681 -11.114922 21.236210 0.135204 9.481321 -1.088694 2.860212 12.783119 17.398983 -37.725448 2.518039 -10.220067 -1.008553 -24.918516 -39.006624 5.536948 -28.925107 -26.057291 16.676765 -39.451117 5.415165 -25.708467 -0.820577 -39.893157 -9.978693 7.397557 43.858101 14.829591 -14.462516 15.866527 -14.376125 27.824119 1.730881 0.694639 10.619461 29.179327 +-22.293214 12.823607 0.082862 -24.082598 54.807878 -9.678250 -2.485530 30.055744 -11.653394 35.350952 -17.008345 3.572285 -6.152146 -42.049042 4.304602 -9.953657 -0.908753 19.681550 -5.459633 21.426857 16.887852 -12.581040 7.864876 -3.820085 -16.913241 -28.562186 -2.934703 16.306863 24.230845 -19.374047 1.950108 2.498600 42.276705 -8.765035 36.342567 27.181821 19.653582 27.945306 12.550038 -17.885402 -1.198470 13.406922 -18.400981 -28.295120 4.439468 -8.695110 -34.030450 -14.191899 17.890236 -18.821905 0.565530 32.670630 -5.009421 -3.422406 -25.123756 26.162094 10.128657 -6.526655 39.623425 7.225091 -18.186555 -12.959311 -34.902401 32.232856 -19.467830 5.881191 -12.297259 -25.850200 1.212746 11.818030 -2.390164 -22.289244 -14.476155 24.159418 18.689542 -31.039043 9.556714 -14.869382 -10.793291 -31.283823 -22.495311 16.379835 -8.208833 28.299951 4.174932 16.104442 1.919273 16.809663 -10.445272 -46.117949 7.712455 31.699858 -21.177512 -6.725178 -21.982738 29.075087 3.344378 -2.337631 -19.628660 -16.369691 12.309943 -6.291285 18.329882 -24.533258 16.347549 -30.501587 2.279906 1.194729 10.789605 18.339849 12.820212 8.809406 20.008248 33.044394 -20.472441 3.262040 -41.946306 10.457673 -12.763044 9.713103 -15.531932 16.820807 16.501457 16.212048 31.409583 -48.524493 22.644700 3.522952 -6.714202 -33.573288 6.384609 -7.562657 -10.009524 -10.311561 22.643708 -8.227024 -4.313045 -10.123366 14.399664 7.613916 -22.992131 -9.222529 5.138153 28.111819 -33.393232 12.497236 -6.441279 -12.798008 -2.122970 17.594955 28.968902 26.564224 47.383583 28.192282 -4.769959 19.637235 -40.810854 4.463060 38.593375 8.524318 -28.789366 38.336470 -28.566060 -10.307783 4.681349 29.937389 23.891039 10.278836 -26.429258 -22.630827 20.154674 11.059010 40.162996 -1.727277 4.631771 -19.320667 19.496112 -4.232231 -8.251401 45.748126 16.582847 -35.286194 15.029798 20.700873 -17.501354 -14.718578 21.020384 -29.198309 -4.149523 -12.865694 8.787882 23.714282 -20.249103 -15.975627 0.608737 -28.036842 32.066698 -9.803979 -11.658728 13.087459 -28.276404 -16.273332 37.234586 2.067974 -9.760131 -21.671789 -30.994421 -16.234215 -34.324509 9.755640 9.518030 -9.911279 -10.990336 -29.715189 -10.188049 27.572675 4.849420 16.654166 -49.482239 -3.243170 22.754883 10.858497 16.204229 -15.639430 -2.369042 1.846455 -3.024861 7.228901 -13.426405 21.462462 39.111198 -24.177648 22.928878 -2.661868 -13.900293 13.699110 19.872603 -40.319753 49.059450 8.341428 29.801424 3.539655 11.908031 -15.958422 7.119599 1.896355 -6.609348 -0.438122 8.207806 -16.387693 -15.460029 5.183690 -18.940220 -27.635113 -3.706126 20.325532 -4.999240 11.408931 -3.960152 -12.767859 -13.977123 -21.832055 12.732904 22.868514 -9.735633 -13.352863 24.086370 16.049684 -0.795220 1.984332 4.469230 17.338721 27.968048 -40.634081 8.984519 -4.032665 14.949710 -30.073317 -38.143106 8.087053 -19.484277 -9.687358 11.165918 -42.197760 -13.399676 -22.721512 10.285233 -30.761498 0.319582 11.922850 44.535471 13.167985 -16.492333 17.900696 -12.429548 16.119372 -1.605897 0.990303 9.261484 22.805436 +-17.901550 14.965841 1.559948 -18.264625 44.148951 -12.554014 6.831016 18.462068 -13.761866 21.933913 -20.073909 9.724115 -2.800234 -30.550652 5.102316 -7.413281 1.858313 20.135814 -2.931712 15.420881 12.628364 -9.011908 4.533689 -9.882310 -9.352282 -29.585124 -0.696751 9.774773 12.414682 -6.772368 4.329185 5.280833 31.338770 -6.459699 21.906081 22.227994 11.421195 24.555766 11.331512 -16.400508 7.375404 10.241467 -9.690608 -27.557628 4.416214 -5.638705 -25.728799 -15.526486 12.314721 -23.227498 0.042607 20.924563 -1.137792 -6.995280 -22.221817 19.982765 22.825115 -5.167968 26.310297 7.219749 -12.538369 -5.925360 -18.686136 24.977247 -16.822069 1.970924 -4.878531 -23.296583 -0.262899 16.599779 2.120910 -14.043270 -15.449077 8.281549 11.215474 -20.711939 6.370481 -7.690931 -12.062125 -21.611012 -13.813929 8.577701 -8.871535 21.325116 1.027114 7.516570 -4.130866 5.850120 1.971669 -24.005851 -4.918008 26.266987 -10.227209 -3.070982 -14.364801 22.181295 14.680777 -8.990817 -10.604362 -16.651517 6.917615 -5.583367 11.978188 -10.662277 3.355339 -19.105697 -0.720597 5.048891 4.598341 25.109753 -1.836517 12.991004 8.606032 12.879657 -13.802539 5.181805 -36.241056 10.116062 -10.315546 4.140463 -7.746559 6.534334 13.591934 11.744130 17.637586 -30.560037 24.451391 4.684971 -0.936359 -18.758098 8.451491 1.399224 -7.541343 -7.754034 15.798690 -2.365399 -2.425218 -0.657158 9.093848 3.706393 -12.924209 -12.244815 -1.406500 26.885145 -28.250675 9.065839 -5.743878 -8.406392 -0.298346 6.960273 13.686763 14.020658 31.932903 21.673716 -4.309745 20.005068 -29.537943 6.527399 33.508917 13.141660 -18.712054 21.645842 -14.133551 -7.032449 6.736343 16.652488 11.713077 10.497543 -22.622620 -19.839665 8.148985 -2.920248 26.311927 7.536542 1.980131 -27.324676 19.433303 -1.523430 -1.740175 36.205956 13.006480 -28.155015 13.273921 22.826425 -20.806614 -14.300254 9.504665 -17.510204 -8.853468 -9.719523 8.911588 14.618451 -17.191706 -18.413354 -4.505180 -19.451874 19.191346 -4.690747 -13.351339 4.263055 -16.189470 -11.110003 30.711401 4.926431 -4.757263 -12.345226 -20.387364 -12.481316 -29.979228 5.610927 6.878077 -9.945523 -9.602852 -19.576251 -8.108405 21.298336 -5.850537 7.154797 -36.707369 -1.992295 15.675642 16.225298 4.943067 -22.413498 -4.078916 2.965687 1.206405 1.238244 -6.790950 15.845086 29.115611 -18.780142 12.529239 3.624203 -11.528734 13.145000 22.272756 -24.284050 31.038865 1.707947 29.619703 5.810831 9.443618 -12.237687 2.301700 -0.576766 -7.746990 -6.928490 9.031510 -19.433229 -9.065938 11.787461 -9.216843 -21.579488 6.067429 19.031947 4.486372 3.730011 -2.322544 -8.565043 -6.360202 -13.563797 5.621368 16.075682 -7.554876 -17.809613 12.152879 17.567171 -9.235089 -9.453448 3.795809 13.606329 19.252990 -27.104986 16.754390 -2.749075 8.253157 -27.327868 -28.469128 14.924483 -16.675997 -15.494088 9.064577 -32.767819 -13.810113 -14.481117 13.892828 -28.670071 -6.127497 6.146401 27.251386 3.754495 -3.893205 16.005801 -8.297971 10.739622 -3.126385 3.460637 2.190750 19.921924 +-8.933188 7.801358 3.137958 -7.805450 20.036890 -4.829921 2.666255 4.319748 -2.432001 15.411664 -6.947271 -6.563678 -4.575408 -19.362667 1.364292 -10.361572 -3.218039 8.808887 0.523026 9.251709 6.807074 -9.487540 1.433907 -1.266945 -5.204320 -14.710680 -3.591057 5.658079 13.986379 -11.239367 3.720389 0.145385 18.262459 -2.413853 15.618049 12.298625 3.582144 11.939872 2.937505 -5.115883 -4.346549 7.534566 -8.963589 -11.098748 0.919117 -1.854311 -11.903785 -7.540604 6.257748 -4.093514 -0.032798 13.777017 -4.292523 -0.557518 -11.006703 10.591197 5.921732 3.702537 16.651949 1.842584 -0.266298 0.803389 -18.418314 11.187066 -6.797604 0.820561 -5.150456 -9.722581 3.747323 -0.724908 -3.633606 -7.914863 -3.821364 14.531906 10.206210 -12.586380 1.126694 -7.832112 -20.241389 -13.378204 -13.406145 5.005275 -1.469115 12.539131 2.060670 5.316583 4.172709 8.818665 -4.581433 -20.249956 3.331652 15.866027 -6.176655 -5.837154 -4.137611 14.142300 3.360195 1.633476 -7.739894 -4.616476 3.886025 -3.832833 7.872412 -9.003212 3.013555 -16.212029 0.625207 -1.360718 1.881942 5.258382 12.378710 1.611095 8.424732 15.322607 -15.721604 -0.087295 -15.765649 3.766584 -3.190560 4.402211 -3.094995 8.553951 -0.786112 5.887692 13.680056 -23.407428 5.051324 -0.389755 -1.859711 -15.768454 -0.427114 -6.156391 -4.036132 -5.273957 7.529262 -1.150088 -2.239724 -5.253488 2.380463 4.492557 -6.019421 -1.937846 5.783718 16.447950 -12.686109 4.415724 -3.195880 -5.846375 -3.050983 7.247158 12.382927 12.352761 18.777830 13.450398 -0.656683 5.612731 -16.716131 -0.457524 14.570703 -0.609814 -11.435325 15.899202 -10.683111 -4.495253 1.397876 14.094647 11.556433 2.619391 -12.907487 -10.079885 9.493169 3.384591 15.048871 -0.451528 -0.556186 -3.739397 13.652288 2.201714 -10.925048 19.730291 6.978233 -11.496566 6.068036 5.395802 -14.198576 -7.836481 10.646802 -10.979412 2.360735 -6.450820 2.479470 7.485861 -5.346240 -3.600729 -0.538238 -12.132713 14.613575 -3.974770 -1.808265 7.944375 -9.912801 -15.341806 15.881386 -1.133773 -4.408834 -11.786098 -13.443289 -8.114399 -10.595008 5.629970 1.047996 -5.051955 -7.447757 -12.654560 -0.047722 13.474201 2.883721 10.107774 -13.977802 -5.005849 6.643492 7.407191 9.656053 -4.193253 -1.714892 1.328081 0.571355 2.322338 0.307469 10.972464 20.865588 -9.113799 7.579727 -2.921697 -7.680941 5.985151 8.308515 -18.529493 17.772710 1.295458 10.322124 -1.029582 3.907024 -5.460491 1.578845 5.992973 -2.752817 2.069327 0.863837 -2.236247 -5.012136 -0.367326 -13.040765 -10.255794 -2.556791 4.909427 -1.661680 5.475373 -0.646096 -7.730373 -3.505625 -6.754420 2.953087 10.037774 2.869069 -2.387826 10.020119 1.938380 4.411192 1.206161 0.850454 4.085458 8.517242 -16.051169 0.618787 -3.911305 5.069147 -7.468796 -18.370064 2.054788 -11.752596 -6.372820 6.470674 -16.149409 -0.273236 -10.991697 -0.105348 -15.753136 -1.076724 3.714961 18.238762 7.903886 -6.877102 6.031060 -5.674703 8.957329 -0.700021 -2.184435 5.802954 10.548745 +-198.315292 139.560759 32.236082 -195.038296 442.130470 -93.303613 12.641988 231.898286 -76.344195 260.618903 -205.086317 41.126639 -60.767174 -320.038832 34.775116 -79.316726 5.125750 200.198465 -59.066838 145.170865 151.322611 -89.754777 68.336291 -93.469181 -108.226512 -253.706738 -22.917222 98.764020 128.253143 -64.268225 35.371753 30.712987 339.399509 -42.468950 249.128359 211.728872 138.184503 288.879229 99.052055 -77.114352 39.476926 129.908211 -120.899922 -298.571117 88.208626 -102.442749 -238.497318 -159.635615 136.953199 -249.165947 71.402700 234.087244 -17.635912 -71.920670 -208.414835 181.985300 182.549518 -27.006915 306.408448 74.433965 -158.326058 -74.723395 -245.775364 231.854737 -185.410046 82.750299 -37.356086 -251.357442 -28.781714 136.307777 46.825687 -161.752251 -164.025812 124.552503 113.040661 -218.653352 81.336387 -96.280355 -92.490874 -208.660550 -177.857326 91.704451 -80.950884 221.656355 0.918543 89.541077 -37.832770 82.384614 -5.979259 -300.514735 -20.799519 262.336212 -131.592508 5.217143 -163.983198 193.354075 66.521190 -59.385204 -140.006726 -132.674250 85.057053 -19.830647 132.619667 -120.841586 18.307059 -227.053950 75.971642 67.322686 44.402679 171.440126 57.901876 110.293113 106.934893 194.005468 -159.634210 76.845412 -367.059200 88.198295 -72.419969 62.787712 -90.701519 95.823823 110.993000 96.793437 209.667994 -353.198687 245.664816 44.707438 -60.926613 -219.516850 87.664731 -25.183870 -89.280966 -81.790083 183.829951 -35.166048 -43.903716 -42.262731 85.438734 18.092048 -180.853318 -137.742982 -10.348009 244.700174 -266.307025 86.850810 -70.849358 -117.593734 -8.012621 101.603843 163.348564 158.888861 335.980447 226.341960 -42.937302 136.233427 -309.537095 64.772494 342.106744 119.019364 -236.182427 241.908555 -161.612865 -47.201525 82.811711 175.126835 151.140711 126.399577 -198.270823 -187.428010 86.443180 2.564145 300.085235 93.596786 61.201686 -263.528414 175.251432 -34.668607 -29.394405 407.033553 149.950127 -294.170144 91.910445 206.854944 -202.438896 -136.951248 106.265098 -168.402743 -62.146097 -103.347876 79.440843 165.728144 -189.795757 -202.836444 -22.125609 -236.577623 253.151432 -53.208180 -77.851143 64.469539 -233.288477 -118.607716 328.718898 43.775441 -83.455765 -139.535747 -222.433098 -131.113137 -313.443685 75.721272 95.853274 -97.279772 -120.710990 -221.928829 -62.577225 226.065625 -28.870546 78.270232 -349.308023 -50.777267 170.564137 73.788744 98.909436 -228.167810 -50.278714 4.605381 -5.445308 76.645286 -62.100993 151.389657 323.343643 -199.664211 168.660797 73.978023 -91.885980 103.807920 219.169847 -260.046139 348.104882 -5.320499 262.208035 27.650883 119.527739 -124.408275 42.051756 3.724062 -49.112157 -38.096856 109.672729 -181.680354 -102.892992 79.385757 -162.453561 -194.904044 48.982461 173.423347 40.506749 56.888762 -17.353113 -107.031393 -85.245797 -139.374692 56.242689 192.245528 -69.849736 -187.425503 121.815565 136.739314 -83.282661 -81.155412 55.825537 127.628412 228.248004 -300.336200 138.920605 -20.826030 44.762370 -279.935524 -272.464451 97.393409 -173.628675 -139.791539 115.503196 -349.899363 -118.420576 -163.315276 134.284964 -260.442148 -26.259016 42.902805 311.795541 90.311696 -69.933895 183.009834 -74.006375 148.161356 -1.983913 1.566918 45.593386 224.231240 +-7.068669 6.616855 6.949467 -5.962399 15.664755 -3.299493 0.447862 5.395050 -4.901392 11.281491 -3.307481 -2.631473 -2.855878 -11.162557 2.637962 -7.343492 -0.716868 5.019834 1.222947 7.873294 4.495462 -5.614937 -0.648243 0.984648 -4.730016 -8.951490 -3.938431 5.031953 11.639917 -7.808144 2.536939 0.441927 14.174524 -4.930929 12.605628 10.937651 3.771692 5.301399 2.848174 -11.896482 -4.544010 5.974431 -8.390811 -4.995410 -0.210598 -1.271675 -9.676216 -3.693382 4.435939 -1.139801 -8.461302 10.753034 -3.413426 0.581354 -6.866546 11.369080 1.361980 1.349507 12.929173 1.105744 0.597601 -2.883225 -11.810584 7.437169 -4.214608 -0.909901 -9.987629 -7.445055 3.840213 -0.815588 -4.955730 -6.395632 -2.637653 11.671145 3.625892 -10.966380 2.235117 -4.819208 -8.568119 -10.001516 -8.864863 4.710207 -2.878431 9.010422 0.918908 3.262571 2.925646 7.540888 -5.124676 -15.572431 4.554522 10.487649 -5.171687 -6.077086 -1.649068 8.647205 4.288130 1.638965 -5.366023 -3.353558 3.311386 -5.240004 8.019969 -8.946965 10.485735 -9.522087 -4.297889 -2.136300 5.493951 7.560254 6.854672 4.801282 9.326491 11.812192 -11.992344 -3.054292 -10.528003 3.446820 -6.768979 2.655249 -2.899426 8.201222 1.278244 6.239227 10.542187 -17.422155 2.435015 -1.764135 -0.975921 -10.420021 0.667186 -4.849178 -3.558758 -4.993818 5.334415 -2.187249 -3.117520 -4.838511 4.237201 2.891949 -3.627383 -1.215634 4.136644 9.861850 -12.560053 3.792049 -3.819662 -2.701395 -0.026424 6.108806 9.315233 10.692430 13.634104 11.299319 -0.792101 6.348095 -13.713767 -1.283373 7.226108 -1.598344 -8.610855 13.796894 -9.188567 -4.924173 1.702789 11.465645 7.729862 6.137690 -8.847959 -9.517486 6.770737 5.066296 11.168458 0.020364 0.586092 -3.851609 7.432853 -3.822974 -8.944730 11.451882 2.686953 -7.735692 4.326329 3.317920 -8.172142 -4.268707 7.411731 -11.190928 0.252493 -4.609878 -0.869784 7.699069 -4.048804 -1.838500 0.600000 -8.567515 8.853283 -3.310940 -4.210481 7.002299 -7.975386 -11.736955 9.030544 0.904956 -2.802460 -8.057362 -9.644274 -4.069992 -7.529603 4.588534 1.202576 -3.781572 -7.094582 -11.239906 -0.706720 6.575236 4.777108 8.138050 -15.340592 -0.913623 6.956723 6.066709 7.058417 -1.393208 -0.732249 -0.169267 -2.318314 1.175042 -2.497509 10.172876 14.409021 -6.296772 5.669128 -4.998935 -8.340653 4.914122 4.489423 -15.666219 13.860769 4.043776 11.249948 0.475767 3.116559 -3.400620 1.926091 3.672811 -5.119614 0.770055 1.304776 -1.784371 -4.537108 0.409239 -7.760028 -7.976099 -3.399913 2.477121 -4.160012 5.004861 -0.173118 -6.862605 -4.181950 -3.519871 3.869237 8.188294 0.850993 -1.638245 9.106125 0.719458 3.027931 -2.448756 -1.132238 1.655494 4.500431 -12.324316 -0.899674 -2.850635 6.332417 -5.508184 -11.729118 0.120077 -6.806563 -3.499975 3.591525 -9.020354 -0.540558 -6.670688 -2.031311 -8.346010 -4.524644 4.381733 12.928156 5.246617 -7.286994 3.720572 -4.920378 4.928856 -0.803891 -2.594955 2.680347 5.000885 +-11.414336 12.553754 3.972476 -9.784615 24.584870 -2.304861 2.268376 9.572655 -11.283550 18.687669 -9.433051 0.842441 -3.826654 -20.579944 1.022646 -9.513937 -3.533017 8.027977 0.053549 11.441173 8.034693 -10.993990 2.618391 -1.958202 -7.779864 -17.674315 -1.678131 6.475171 17.132360 -9.190961 5.276217 -0.933162 19.076942 -4.603896 16.891532 13.723354 6.590548 13.525144 4.922150 -9.062007 -4.686841 8.317057 -10.560010 -13.793013 1.573825 -4.558911 -15.225568 -7.107409 7.752270 -8.940606 -4.014359 15.732269 -4.139611 -1.555144 -12.267575 14.833718 8.623915 -1.990403 20.922461 1.710875 -4.717743 -7.680803 -18.629618 15.459816 -7.684912 1.297452 -5.823498 -11.976134 4.461679 1.297423 -7.383853 -7.723060 -4.290759 16.435541 10.194204 -16.102032 1.714414 -9.307275 -22.519929 -14.651344 -11.194213 5.581948 -0.985898 14.445466 2.216458 6.656730 5.264704 9.930773 -5.448186 -24.417912 3.558532 20.185796 -8.082856 -5.304158 -8.511534 17.363435 3.509162 1.402908 -9.729053 -4.106737 5.047542 -1.639472 8.940793 -18.544268 3.925622 -20.376348 0.223524 -2.207384 3.267347 10.191881 8.605393 3.948861 10.090384 18.693673 -17.211386 1.253603 -19.530252 3.895117 -3.868129 5.316000 -5.269619 8.572707 2.193034 6.778240 16.883253 -25.573314 9.020906 0.007313 -1.968821 -20.842796 0.821312 -6.541095 -4.320416 -5.146906 8.920494 -2.801698 -2.501350 -6.928067 4.043775 4.870234 -10.270462 -7.989400 6.400172 20.086895 -18.394237 5.503823 -3.703520 -5.236370 -2.727350 8.903187 14.882289 13.618800 23.378084 15.207179 0.359729 15.166324 -18.264286 0.541112 18.922498 6.564832 -14.830047 18.373325 -14.802930 -6.065290 2.281406 12.903993 13.199391 7.969900 -18.092418 -15.670821 13.377378 4.096398 18.661188 1.256003 1.277576 -7.865241 17.433532 0.501466 -9.601816 21.685903 8.243551 -16.392170 10.558025 6.849679 -14.317512 -6.187423 12.075964 -14.914979 -0.341923 -5.955408 0.986980 10.046407 -8.096790 -7.051188 -1.705060 -14.635455 18.887304 -4.187799 -1.780461 7.595841 -11.939325 -15.067546 15.175597 1.273534 -6.006739 -13.189412 -13.205650 -14.415280 -14.130122 5.710561 4.227362 -7.387780 -10.046826 -16.129038 -2.918359 12.180407 3.414926 10.439219 -23.640752 -4.963534 9.445769 10.502269 10.077228 -6.527858 -1.813357 -0.215350 0.215267 4.583030 -3.250707 16.057365 23.461349 -10.946584 13.327281 -6.108377 -10.246360 7.590487 10.701095 -21.023869 21.509257 3.470082 14.991657 0.054722 5.425455 -7.458827 3.247647 4.361810 -5.090386 2.448812 2.314858 -4.988719 -6.828799 0.856862 -13.616356 -11.021963 -2.529712 6.353542 -0.811226 5.720406 -0.231506 -7.365696 -6.742314 -10.104224 2.446888 11.764347 -2.005034 -5.568119 11.362448 2.366783 3.199508 0.912658 1.574033 7.256684 9.620981 -19.277859 1.877661 -4.490777 3.628011 -14.085352 -19.059742 2.731623 -11.187365 -9.031633 7.826897 -19.624807 -0.032746 -12.016433 0.817961 -19.696345 -3.780213 4.146510 22.405505 5.917912 -7.206017 8.541783 -6.598120 11.101956 -0.333714 1.091754 4.772828 11.935063 +-40.962985 25.315898 -4.047278 -38.670599 88.158165 -25.346768 0.247239 48.699453 -4.345377 52.244762 -43.556836 10.257755 -10.815358 -61.970714 6.569680 -6.592523 5.490538 46.428341 -13.711816 21.307109 30.642563 -11.752568 13.897881 -21.297010 -20.541123 -52.182615 -3.205814 19.277523 15.012461 -10.461750 0.193231 10.430507 69.762149 -7.663689 49.619674 45.034396 28.071960 60.445807 24.314366 -3.211028 15.144136 25.029259 -20.430644 -63.573773 19.094802 -19.665441 -45.789137 -35.256511 28.422614 -55.030445 31.686835 44.167887 -0.880261 -14.424593 -43.805185 33.456359 37.479748 -3.848303 61.374292 16.419229 -37.056837 -8.167787 -41.859343 52.015783 -42.394811 15.669158 -0.885405 -54.760123 -8.962003 33.819065 18.839790 -35.788050 -36.542942 17.506095 16.843425 -43.317832 16.325749 -15.813575 -3.246054 -38.335146 -35.264061 17.723008 -17.777778 42.550154 -0.728652 15.809044 -19.105677 12.426432 3.715412 -54.090248 -8.680828 50.433590 -25.436907 10.389799 -31.220359 34.815076 18.898537 -17.527877 -22.063360 -28.169648 14.908386 -4.637025 26.118910 -10.520985 -2.069367 -37.525913 19.289496 15.548350 5.269772 32.212564 7.230216 22.795684 19.220085 32.354445 -21.326954 17.263076 -78.367546 21.724653 -11.081876 8.675912 -15.451994 14.456176 26.224085 16.000284 39.359156 -64.874486 53.158983 8.830946 -11.045623 -40.241274 19.877417 0.877943 -18.311642 -16.336956 38.437173 -5.641889 -8.109855 -5.452141 17.929683 1.125710 -37.992561 -29.743694 -6.973289 44.641294 -46.676506 17.537867 -14.898512 -24.416668 -0.958033 16.439508 27.263640 29.205366 67.287577 45.043552 -8.404917 20.127584 -63.502994 12.997675 68.492919 27.737267 -45.835610 44.942115 -27.743275 -7.899310 19.808012 33.994947 24.918320 24.966947 -32.926824 -31.776221 9.095315 -2.936435 58.176576 19.198567 13.477098 -53.346101 28.780657 -2.245366 -0.014823 85.602833 31.660688 -62.681179 18.645856 46.228427 -34.980583 -27.815573 19.454974 -29.245048 -16.258251 -21.101242 19.726214 32.733076 -41.949183 -41.700220 -3.399955 -45.987600 47.620543 -9.838752 -17.826633 12.562546 -51.947918 -9.860276 68.720956 10.669933 -12.645680 -21.718525 -44.050828 -24.442609 -67.092376 12.643287 21.521232 -20.023091 -20.113331 -42.387263 -11.830796 48.069120 -9.661562 12.961545 -62.177606 -8.459638 36.245480 11.659193 13.051060 -52.135825 -10.588425 2.465409 2.482316 15.635293 -12.460256 25.601830 61.794281 -39.502729 29.705254 28.273921 -9.994999 20.834439 45.368930 -50.286382 67.865282 -3.322329 43.558209 10.216608 23.110489 -24.322346 6.995472 -3.914056 -2.194032 -12.760044 23.659692 -42.270529 -20.016331 21.145901 -30.707811 -35.583404 13.460786 39.494485 12.993471 8.982520 -5.120329 -20.860021 -16.001397 -31.070929 11.054132 37.072274 -11.399834 -41.638152 23.759175 31.248323 -25.931828 -19.099268 11.265919 25.842351 47.655517 -58.598993 32.547111 -0.047795 7.572907 -59.037522 -50.482137 20.549452 -32.445643 -29.829038 18.968285 -71.539506 -32.720693 -29.360440 32.557352 -53.378409 -2.905227 5.227601 60.985952 18.445040 -7.983754 37.865330 -13.338583 26.516328 -0.057674 -1.062820 6.976376 48.942778 +-31.533500 37.349017 15.159876 -28.768253 57.218708 -5.995035 10.819103 24.734629 -21.943073 49.766859 -27.033256 1.768296 -9.280724 -53.954128 0.270585 -33.495871 -12.671107 26.576259 1.441653 33.421083 22.838571 -29.439610 5.984131 -8.478917 -22.082553 -51.510355 -3.030611 15.314615 35.452057 -15.375200 23.007265 -2.989846 52.408273 -6.364453 46.760431 39.584689 11.864755 40.530144 13.357178 -4.892236 -14.254876 22.582800 -27.208913 -38.542851 5.926633 -11.654252 -37.328668 -26.824090 16.982577 -32.476742 1.280185 41.561759 -9.917513 -4.767208 -31.412757 31.907776 25.592910 -5.138419 53.581354 5.600720 -12.725457 -11.247175 -47.118274 36.995978 -20.225842 1.399812 -3.874879 -31.055543 16.169777 2.644453 -9.143227 -16.018469 -11.455739 41.124677 25.803818 -43.633684 3.368467 -27.574867 -70.698707 -34.157515 -26.347312 14.579562 3.675050 38.346144 5.463114 17.191686 8.164114 26.637357 -14.311178 -61.962500 6.851808 54.487689 -17.713913 -13.738291 -27.743593 47.481403 12.470322 3.804464 -25.031677 -8.136013 15.183437 -1.810870 23.428221 -38.891903 -11.275368 -52.884848 4.002672 -0.113309 0.462508 23.017558 16.366175 15.279352 28.110740 47.574960 -45.893785 18.880679 -52.154922 13.446872 -4.598699 13.743816 -9.346432 18.675347 0.544309 18.272357 42.568709 -63.101115 24.475158 1.937074 -7.785193 -55.293121 2.249120 -17.956893 -10.872927 -16.615451 22.285795 -2.794944 -5.800863 -18.873266 5.344234 8.997891 -20.375402 -30.913783 18.342152 51.786140 -41.553183 14.312042 -10.367018 -12.518987 -10.139529 24.027999 35.850629 32.435740 58.467037 39.255824 6.152701 30.096449 -44.518466 -4.281983 48.547208 28.427410 -39.442649 46.952597 -31.817250 -17.420775 6.083405 31.735471 32.778849 21.049625 -52.493662 -44.685003 27.995540 4.256676 50.271155 13.849830 0.619185 -22.875849 50.905943 1.712183 -27.804666 57.594508 30.370443 -37.933003 16.663449 16.734196 -44.802828 -22.280192 32.967502 -32.534067 -2.683917 -9.294011 1.402267 20.786742 -17.512192 -21.731254 -5.708327 -41.444316 49.302258 -10.544691 5.546246 14.946096 -33.272204 -45.681471 40.700616 1.547448 -20.118703 -31.194970 -30.251802 -34.780939 -38.326077 15.742937 13.770851 -18.174942 -29.876294 -41.896851 -1.989911 28.938992 4.067494 24.363248 -46.475871 -23.043166 25.478827 19.098357 23.851777 -29.925174 -5.595798 -3.883935 8.859025 15.945986 1.185743 44.526675 64.383920 -24.957587 30.008655 -6.545962 -22.172815 19.414624 31.091963 -55.182902 56.687882 0.988584 32.134082 0.543085 13.273097 -17.398414 5.074547 13.172568 -9.957649 7.487011 8.128657 -12.460816 -16.046580 -0.539382 -39.869682 -19.815727 -2.916044 15.735807 -4.207012 14.704986 8.815147 -23.287945 -17.600254 -30.855374 1.700388 32.621318 0.584661 -15.798679 29.458497 5.057024 8.981263 -0.114295 2.990938 20.525546 24.653787 -50.334680 8.257541 -12.731294 0.833175 -37.248815 -52.315089 12.471208 -36.987694 -33.464996 17.096652 -49.675670 3.447687 -32.979455 3.187012 -54.054669 -14.583029 11.526871 57.307230 16.508670 -17.344063 21.241036 -19.720016 35.165803 1.907425 2.640341 13.339786 38.512293 +-80.541168 68.542130 31.038909 -69.756751 183.449434 -23.055761 7.860571 89.873579 -76.014768 121.743334 -71.734229 27.883225 -24.153308 -129.576342 13.602043 -39.788247 -9.031441 61.286354 -5.864200 73.775946 55.743115 -60.709410 23.711429 -23.496600 -49.472287 -118.620427 -9.610989 44.285192 99.660810 -47.983651 17.977916 2.055607 136.757539 -31.702731 104.919273 90.959047 55.729982 98.163579 44.067325 -88.202251 -10.868776 55.890467 -66.530956 -99.804039 22.117509 -39.288449 -101.726884 -48.083576 56.602645 -72.569581 -24.404858 104.391113 -23.987322 -22.543047 -84.148511 98.712102 66.885103 -23.656053 137.806403 16.292854 -44.784125 -60.246728 -114.058021 113.267631 -63.611753 17.511051 -48.466933 -95.038987 13.377651 31.049011 -22.269096 -58.844256 -41.313140 88.950032 55.636871 -104.153460 21.963917 -51.362603 -82.990906 -101.932230 -80.182508 38.774595 -27.047251 96.968776 10.389492 43.570165 11.216517 55.402305 -19.689545 -150.237714 11.848413 120.016184 -62.477943 -23.143850 -56.606266 99.353990 28.739254 -7.153859 -57.926175 -44.729056 34.666336 -15.145958 59.826606 -105.361007 52.637959 -115.612485 5.990741 -0.423146 37.296757 80.569903 37.047649 42.998226 63.373825 106.287278 -86.848803 1.641228 -136.451044 29.255530 -32.702658 28.361787 -43.573189 58.260516 34.698735 48.781114 111.983684 -167.587209 76.490639 5.392239 -16.179829 -112.688938 18.058187 -29.967167 -31.213438 -35.532373 69.901590 -21.885570 -19.309875 -34.674080 38.522384 24.616228 -82.519673 -50.491413 19.240778 125.088644 -136.149359 38.582622 -27.944627 -40.834645 -5.092693 55.325032 89.008791 90.540516 142.663510 104.110706 -9.787538 95.344983 -133.965677 21.372233 133.273111 44.086572 -102.667718 117.418852 -96.201462 -36.856274 27.965510 84.525945 82.589798 53.115908 -105.888643 -98.783720 76.376920 21.604717 129.784563 23.131440 18.252780 -79.896287 94.831208 -14.955171 -41.455103 151.676980 46.514011 -120.708356 64.894022 68.692533 -88.345198 -43.430808 60.975999 -97.065658 -12.994876 -47.568047 12.834397 79.151362 -68.991195 -62.688291 -9.258421 -99.947103 121.753909 -24.112818 -27.075768 43.210811 -80.386631 -77.927490 119.959065 18.876774 -34.654291 -85.442273 -96.834407 -84.453520 -114.089976 33.804608 27.571375 -46.899591 -60.445683 -110.193691 -33.537513 84.579739 13.835583 56.982347 -184.991180 -18.464447 68.657249 61.550274 53.361947 -63.324327 -16.206397 2.669771 -13.770886 26.062898 -36.805284 94.381575 140.785014 -83.733016 85.115301 -18.347603 -59.287607 50.737920 74.648975 -128.878136 147.786244 14.526954 120.187445 9.765800 45.295563 -58.670137 24.206395 14.532317 -33.984824 -1.304784 27.566673 -56.119854 -48.532380 21.379395 -75.969364 -90.449490 -6.013699 55.567045 6.956436 32.161635 -12.552074 -46.079011 -45.524503 -61.670350 24.820880 79.530786 -33.703337 -55.416918 70.711309 35.191121 -4.993439 -22.079398 17.638657 52.140766 76.220473 -134.590917 32.863131 -21.833273 32.424910 -107.944082 -125.228113 26.609265 -67.659224 -58.878328 58.155122 -148.659116 -23.160907 -77.670683 23.234512 -121.848003 -18.977805 25.977060 143.533426 27.848769 -47.924871 70.942521 -41.345626 64.495138 -2.945351 10.452141 16.596336 75.043650 +-4.735569 3.182468 2.616732 -3.919733 11.656522 -1.606060 -0.373540 5.049359 -3.454197 8.394820 -2.955375 -0.835357 -2.003172 -8.286784 0.911566 -3.438091 -1.186642 3.748283 -0.390398 4.781679 3.310044 -3.517504 0.905851 -0.067914 -3.178202 -7.090000 -2.009518 3.422992 6.997820 -5.073853 0.785472 0.360885 9.386204 -2.447497 7.769122 6.306851 3.132949 5.186067 1.394808 -4.938221 -1.301196 3.507316 -4.955150 -4.376172 0.717571 -1.709837 -7.085806 -3.245833 3.718717 -2.316601 -2.506468 7.074591 -2.065565 -0.043889 -4.391263 6.917894 1.939801 -0.549584 8.697479 1.040376 -1.913544 -1.049023 -8.834421 6.926691 -3.518398 0.987202 -4.943665 -6.062806 1.088605 0.422909 -0.413781 -4.421217 -1.433206 7.447232 4.243153 -6.537249 1.479161 -3.487171 -5.440726 -8.621273 -6.597163 2.906033 -1.395719 5.990537 0.611588 2.827909 1.275910 4.490883 -2.733620 -10.639790 1.923763 7.656311 -4.127441 -2.662130 -4.038536 5.455204 1.815688 0.751722 -3.689541 -3.082556 2.264416 -2.144248 4.032813 -5.377651 6.173426 -6.048954 -1.257985 -0.883389 3.266470 3.972123 2.893259 1.757496 5.315875 7.910882 -6.010769 -0.736274 -7.179995 2.353136 -3.251915 2.096993 -2.393941 4.670901 2.340671 3.530864 7.737591 -11.251555 2.557143 -0.654137 -1.272284 -7.591131 0.419734 -2.809125 -2.257562 -2.855670 4.259532 -1.193759 -1.350916 -2.922584 2.589576 2.177198 -3.533882 -0.892970 2.136854 7.071421 -7.572874 2.359770 -1.547160 -2.687839 -0.585430 4.179567 6.935477 7.001586 9.901545 6.826699 -0.588152 2.967857 -9.370948 0.295552 7.153713 0.065273 -5.856143 8.701353 -5.520469 -2.689230 1.259327 7.443898 5.604181 2.159801 -5.605654 -5.661009 3.340498 2.820011 8.559832 0.200193 -0.101207 -2.369728 4.808032 -0.978140 -4.563649 9.051652 3.325306 -6.160747 3.223840 3.032834 -5.046017 -3.916204 5.232172 -6.737954 -0.521393 -2.719872 1.096416 5.150309 -3.286056 -1.869214 1.043636 -6.064492 7.569501 -2.368181 -2.016794 4.148642 -5.248435 -7.476747 6.953502 0.205492 -1.813588 -5.878671 -6.872390 -3.591910 -6.015684 2.557817 0.772942 -2.008529 -3.476226 -6.822899 -1.339323 5.882385 1.971394 4.995246 -10.974229 -1.275882 4.002048 2.488387 4.704627 -2.361968 -0.551276 0.043412 -1.340807 0.916389 -2.131872 5.402946 9.557204 -5.006052 4.056185 -1.716436 -4.579249 2.618375 3.422607 -9.756996 9.674544 2.114686 5.374298 0.265311 2.002563 -3.171992 1.126244 1.889473 -1.398458 0.248063 1.063662 -1.675884 -2.922739 -0.071551 -5.974432 -5.610970 -1.773350 2.757954 -1.539732 2.910724 -0.680051 -4.523337 -2.250512 -3.662703 1.870232 5.015998 -0.787769 -1.570454 6.057836 1.263121 0.964945 0.370609 0.365275 2.794085 4.473495 -8.704411 0.633427 -1.378016 3.606897 -5.063012 -8.243986 0.339996 -5.070917 -3.197711 3.554695 -8.378239 -1.408168 -5.485441 0.197285 -6.212702 -1.452958 3.030277 10.032680 3.318629 -4.588434 3.495939 -3.002909 4.301088 -0.325825 -0.550476 1.600851 4.241867 +-1.337191 0.592967 -0.022312 -0.967094 3.916537 -0.862205 -0.253194 2.775361 -1.260753 2.420024 -1.109336 -0.452640 -0.188758 -2.039603 0.430181 -0.270386 -0.082233 1.672083 -0.487545 0.731105 0.957693 -0.049367 -0.051516 -0.294979 -0.750932 -0.839858 -0.483421 0.797330 2.030238 -1.339025 -0.965270 0.484763 2.949280 -0.774928 3.234273 1.906333 1.262020 1.537251 0.808643 -1.087998 0.187739 0.980245 -1.204046 -1.364378 -0.218499 -0.739180 -1.877949 -1.151834 0.911989 -0.494962 1.406653 1.603821 -0.309455 0.182483 -0.887000 1.922855 0.075950 0.273417 2.504950 0.609093 -1.314390 0.283188 -2.346640 3.718248 -1.073354 1.247379 -1.216723 -2.055709 -0.224958 0.487816 1.025940 -1.930849 -0.816883 2.224522 0.642528 -1.492203 0.951366 -0.659115 0.269184 -2.818478 -2.062130 0.966641 -1.175503 1.394932 -0.046605 0.480407 -0.920094 1.185431 -0.492749 -3.126498 0.134296 2.671129 -1.545088 -0.436761 -2.307463 0.567298 0.712347 0.284980 -0.774544 -1.510430 0.932578 -0.435886 0.881907 -1.440961 2.827684 -1.151665 -0.231910 0.424688 0.731604 2.020763 0.794518 1.038705 2.005806 2.395636 0.119995 -0.303875 -2.267622 0.996127 -1.591489 0.340674 -0.457101 1.217166 1.418823 0.739335 2.095162 -3.439018 0.714352 0.031672 -0.401154 -1.983588 0.366622 -0.777736 -0.989079 -0.876270 1.224905 0.150794 -0.454512 -0.717346 0.784774 0.401607 -1.573299 -1.169521 0.144769 1.366511 -2.436816 0.341733 -0.417206 -0.521075 -0.307867 1.393432 2.041231 1.711691 2.788297 1.691785 -0.279350 -0.134729 -2.808796 0.221692 1.849787 -1.024293 -2.306357 2.783382 -1.721151 -0.690897 0.560153 2.206413 1.097554 1.172956 -0.915315 -1.171561 0.084110 0.515563 2.500136 0.189432 0.079501 -0.227218 0.855480 -0.316629 -1.977164 3.294925 0.937487 -2.075399 -0.225732 1.008741 -0.167576 -1.145236 1.571764 -2.477555 -0.652379 -0.972913 0.430977 1.349242 -1.282359 -0.463689 0.918342 -1.660633 2.583038 -0.494701 -1.425476 0.319951 -2.050126 -0.528969 2.574473 0.162307 -0.368727 -1.445228 -1.827941 -1.117043 -1.839099 0.550451 0.505158 0.001500 -1.284530 -1.585927 -0.267349 1.960741 0.036636 1.157436 -2.823526 -0.345164 1.133314 0.224165 1.524214 -2.111233 -0.346882 -0.390147 -0.210333 0.332735 -1.056367 1.424100 3.444359 -1.218303 0.999410 1.201241 -1.619494 0.157490 1.121125 -3.064356 2.502501 0.466561 0.169932 0.333909 0.644600 -1.114300 -0.114640 -0.067639 0.448031 -0.434906 0.670624 -0.686477 -0.509047 -0.456449 -1.578261 -1.462407 -0.136424 0.950117 -0.287761 0.548813 -1.221961 -1.402518 -0.614796 -1.663044 0.469259 1.406008 -0.626720 -0.888029 1.632934 0.331411 -0.692792 1.124166 0.120618 0.651247 1.662470 -2.201443 0.222910 0.196630 1.469470 -1.921590 -1.992728 -0.959616 -1.071830 -0.930671 0.968257 -2.038874 -1.477127 -1.315127 0.311931 -2.364476 -0.971964 1.074868 3.358257 1.322123 -1.230811 0.768126 -0.671182 1.407656 0.371936 -0.251286 0.195034 1.143100 +-0.973309 0.606956 0.042308 -0.865936 1.813892 -1.459946 0.322220 1.445884 0.848743 1.030656 -0.624144 -0.851854 0.009698 -0.748870 0.524626 0.253466 0.559170 0.855223 -0.697132 -1.387423 0.454893 1.073099 -1.002867 0.436891 -0.522434 -0.313148 -0.732229 0.321672 -0.355482 -0.384510 0.139770 0.039864 1.771398 -1.141165 1.848775 1.446472 0.432719 -0.029508 0.145446 1.315671 -0.328712 0.688875 -0.754526 -0.220016 -0.368474 0.297967 -0.525014 -0.420113 0.215527 -0.951523 1.186923 0.812958 0.190163 0.248486 0.276237 1.444480 -0.273792 0.039318 1.339266 0.239008 -0.726377 -0.285730 0.128508 1.354138 -0.910783 -0.097810 -0.366343 -1.022990 0.104030 0.215347 0.479638 -0.089076 -0.993186 0.353398 -0.881727 -1.447459 0.420281 0.242266 1.601210 0.360425 -0.085464 0.607844 0.128950 0.316209 -0.300764 -0.652948 -0.961956 0.392990 -0.709501 -0.539822 0.234541 1.056196 -0.398247 0.446715 -1.176398 -1.007333 0.216579 -0.062004 0.298106 -0.752955 0.270574 -0.628660 1.308552 0.297819 0.777516 0.238713 0.079861 0.287654 0.189816 0.885108 0.239805 1.287331 0.718836 0.536924 -0.591295 0.749048 -2.017632 0.961711 -0.629899 -0.127338 0.199255 0.329713 0.429764 0.463028 0.631820 -1.073042 0.939642 -0.760949 -0.426049 -0.827887 0.588676 0.129668 -0.789657 -0.695814 0.207976 -0.010312 -1.354570 -0.844920 0.840387 -0.688251 -0.281347 -1.194963 0.328527 -0.763087 -0.921635 0.236807 -1.227639 0.139425 -0.053967 0.585268 -0.414262 0.067304 1.509420 1.117803 0.500918 -0.529180 -1.713766 -1.239682 -0.654697 -0.140766 -0.941001 1.351273 -1.098948 -0.099154 0.678852 1.192012 -0.743852 1.503583 0.453824 -0.080158 -0.234799 0.472491 0.532286 0.501615 0.196969 -0.875284 -0.655738 -1.506636 -0.596840 1.169577 1.479313 -0.815100 -0.554652 -0.128444 0.764477 -0.026836 0.684828 -0.693456 -1.086696 -0.178353 -0.395653 0.550078 -0.054532 -0.259585 0.445587 -0.590632 0.713912 -0.358646 -1.019396 1.247016 -2.160284 0.210528 0.067655 0.633018 -0.156950 0.396353 -0.476154 0.405355 -0.789406 0.497198 1.071372 -0.829573 -1.443210 -1.268193 1.154724 0.117051 0.543520 0.702073 -0.524587 -0.116162 1.554522 0.146493 -0.723434 -0.827443 0.051257 -1.186604 0.359979 0.668484 0.147804 0.643147 1.367949 0.040028 0.201470 0.862017 -1.055660 -0.392696 0.566075 -1.299423 0.314697 0.139098 -0.616132 0.424462 0.272335 0.651550 -0.136439 -0.343869 -0.009549 -0.323716 1.012772 -0.509723 -0.150462 0.021157 -0.876452 0.231295 0.375441 -0.172384 -0.462397 0.448631 -0.262009 -1.065980 -0.509375 -1.050629 0.450332 1.138228 1.014893 -0.825562 0.647123 -0.764033 -0.794153 -0.646526 -0.935735 -0.676884 0.293550 -0.328971 -0.203741 0.377872 0.307331 -0.702067 -0.303733 -0.601873 -0.255971 -0.603391 -0.889661 0.419560 -0.819188 0.520717 -0.271274 -1.082246 -1.628072 0.377208 0.737193 0.222895 0.496140 0.294557 -0.078958 0.273430 1.007360 -1.565469 0.582963 0.849300 +-9.041638 7.333927 3.490213 -7.763007 19.461345 -3.211226 0.913478 6.801351 -3.815964 14.311416 -7.507261 -2.520066 -3.596399 -15.611768 1.028394 -7.483780 -2.595382 7.688889 -1.171298 7.313463 6.707377 -6.470007 1.828722 -1.984157 -5.416522 -11.946945 -3.373510 5.096905 10.518209 -8.543585 3.788799 0.271045 15.776986 -2.901869 13.885859 11.039192 5.098763 11.861502 2.253481 -2.271653 -2.000907 6.832238 -7.967267 -11.033903 2.295355 -3.571904 -11.100020 -6.185077 6.180360 -6.634495 0.588451 12.161843 -2.870503 -1.128461 -8.814645 10.307790 5.702982 0.584449 15.461314 2.350199 -4.541210 -0.715437 -16.263243 11.564199 -7.181155 3.499628 -3.785034 -11.032639 1.173357 1.347647 -1.107434 -8.533945 -5.515510 11.770880 6.966206 -11.454634 1.972056 -6.702761 -13.936786 -11.150587 -10.468011 4.612852 -0.989714 10.676998 1.048020 4.425113 2.149585 6.854357 -3.506989 -18.139437 1.546890 14.715198 -6.781224 -1.692080 -7.368308 9.692782 1.820830 0.851533 -7.238361 -4.140457 3.881936 -1.557689 6.877138 -8.733483 3.015823 -13.583794 1.493228 -0.276922 1.808164 5.364377 7.295490 2.857767 7.226395 13.466485 -11.669776 0.966966 -14.297855 3.898589 -3.021632 4.127988 -3.582675 6.540244 1.780638 4.743633 12.529436 -19.072797 6.773503 -0.752061 -3.190933 -14.590211 1.065929 -4.754044 -4.479151 -4.486146 7.502618 -1.106149 -2.455302 -4.616640 2.863017 2.956186 -6.983155 -5.258610 3.491767 12.666221 -11.598199 3.741341 -3.190731 -5.249453 -2.408618 6.938989 11.297332 10.657788 17.326531 11.935951 -0.120684 5.358923 -15.065044 0.523775 14.165588 3.036169 -11.555385 13.948008 -9.863230 -3.232985 2.802825 10.865722 9.267395 5.011331 -10.888422 -9.261255 7.043360 2.616814 14.743407 1.897174 1.023618 -5.992932 10.502179 0.185673 -7.972177 18.363378 6.949760 -12.724518 6.222388 5.957509 -9.638993 -6.703899 8.815486 -10.278396 -0.720151 -4.769250 2.061308 7.454951 -6.510478 -5.532960 0.414687 -11.653720 14.391757 -3.484190 -1.987765 6.670888 -11.274199 -13.455726 13.248041 0.412013 -4.360106 -9.514154 -10.630479 -7.143036 -11.485808 4.786509 3.322187 -4.781416 -7.303829 -11.905150 -0.554624 11.154639 1.434591 8.032719 -13.983680 -4.553108 6.923161 4.186554 8.735534 -6.456847 -1.735489 -0.431615 0.430367 3.554777 -1.659804 9.098191 19.122430 -8.853076 8.467317 0.132250 -7.127237 4.092737 8.408764 -15.711033 16.657007 1.519491 8.968816 -0.419392 4.402733 -5.731791 1.684979 3.681127 -1.547564 1.046103 2.325278 -3.833064 -4.715782 -0.246107 -12.593617 -7.801822 -0.805149 5.283171 -0.393665 4.345661 -0.559967 -6.498837 -4.160269 -6.460385 2.022902 9.582642 -0.158556 -4.967392 8.510318 1.898094 0.629316 0.227780 1.413555 4.884845 8.927524 -14.869306 1.969478 -2.463650 2.840391 -10.506364 -14.192940 1.129878 -9.941897 -6.893318 5.620421 -14.666668 -1.751552 -9.385958 1.713541 -13.118578 -2.328479 2.960962 17.031334 6.757120 -5.649997 7.171351 -4.521653 8.985197 -0.018484 -1.397764 4.081459 9.946524 +-30.057038 19.159933 -3.941072 -27.328112 62.851661 -17.439101 0.932418 35.037447 -4.272619 38.824803 -31.331090 6.534351 -7.933267 -44.937228 4.761599 -4.393390 3.885717 33.123673 -9.635812 15.052927 22.316915 -9.513720 9.629898 -14.980388 -15.313138 -37.986195 -2.249505 13.969631 13.205962 -8.770189 -0.701385 7.339303 51.133857 -6.235880 36.957757 33.346051 21.128756 43.188094 18.213708 -3.512127 9.365817 18.920936 -16.007689 -45.443403 12.991141 -14.671721 -33.070193 -24.814066 20.777412 -38.215688 22.595891 32.413847 -0.880677 -9.339829 -31.444806 25.136281 27.273477 -3.702066 45.949978 11.854602 -25.808576 -6.460096 -30.577754 39.825548 -30.549322 10.829082 -1.765745 -40.137753 -5.985584 23.019532 12.169133 -25.428419 -26.045843 14.589875 12.531452 -32.679351 11.652320 -11.862246 -4.356307 -29.588588 -26.682674 13.215054 -12.353773 32.057613 -0.119928 11.332021 -12.812495 9.954715 1.906935 -41.147246 -5.495110 36.943818 -18.921199 7.098524 -22.724995 25.231592 13.111142 -11.051077 -16.877851 -20.448089 10.959012 -3.249697 19.136313 -10.069590 0.193769 -27.288989 12.895435 10.207893 3.966813 23.344778 7.330657 15.952529 15.213398 25.406079 -16.320020 10.751109 -55.968651 16.105154 -7.418827 6.333472 -10.922162 11.031926 18.800815 10.867601 30.150446 -48.511013 37.127883 6.212098 -8.360060 -30.965878 13.577704 -0.883604 -13.977610 -12.411289 28.022599 -4.123890 -5.851784 -5.453826 13.492670 1.287220 -28.037713 -21.053423 -4.264452 32.822427 -35.231698 12.305957 -11.054409 -17.769242 -1.568884 13.405984 20.711035 22.522372 49.020197 33.492337 -5.997832 15.851998 -46.598664 8.968265 49.605251 21.097115 -33.983559 33.454264 -21.956748 -6.188015 15.088848 25.329368 18.599415 17.634876 -24.452336 -22.915263 8.111469 -1.074738 43.498696 12.589071 9.627389 -36.991784 22.042643 -0.972048 -2.459161 62.267541 23.455582 -45.597505 14.711677 32.379987 -25.275032 -19.468504 15.594038 -23.427788 -11.783992 -15.898285 13.192315 24.387015 -30.312111 -28.484422 -1.694840 -33.928143 36.082555 -7.148313 -12.536097 10.361223 -38.560300 -7.855956 49.047466 7.676195 -9.140357 -17.091083 -31.760915 -19.498644 -48.497584 9.642672 14.949421 -15.017762 -15.541355 -32.214049 -8.615251 35.080164 -5.823516 10.393736 -46.580937 -6.142093 26.641565 8.873847 10.611341 -36.542507 -7.820072 1.933603 1.764776 11.680776 -9.827164 20.189000 45.308073 -28.917757 21.694531 18.725480 -8.354479 15.325081 31.870091 -37.848845 49.570898 -2.014064 30.226772 7.388753 16.909011 -18.539918 5.036018 -2.421915 -0.932000 -9.025926 16.625186 -29.947312 -14.558837 14.274102 -23.790800 -25.809446 8.611943 27.596611 9.222511 6.694774 -3.725699 -15.574614 -11.692067 -23.401532 7.433011 27.616124 -7.656243 -29.301828 18.479900 20.746165 -17.280296 -12.330498 7.837759 18.564038 34.464017 -43.183742 21.793458 -0.460781 5.904352 -42.765368 -38.272200 13.758563 -23.899485 -21.797216 14.974547 -51.945500 -22.343999 -21.956680 22.105565 -40.067843 -1.867180 4.633488 45.497303 12.787853 -6.823749 27.340930 -9.684517 20.676834 0.134293 -0.460891 5.119525 35.261173 +-2.041296 0.417435 -1.248764 -1.224467 6.139231 -1.563739 -0.087844 3.263073 -2.045463 3.850687 -0.859223 -0.602017 -1.015122 -4.222517 0.719459 0.642932 0.598844 2.376162 -0.221454 1.527743 1.603382 -1.408516 0.663316 0.031305 -0.874618 -2.149000 -0.472226 1.475617 3.701869 -2.490628 -1.151327 0.574154 4.458061 -0.840831 3.362641 2.363452 1.448566 2.182202 1.624230 -3.884024 -0.427381 1.689083 -1.825248 -2.625457 0.769539 -0.735640 -2.794115 -1.389688 1.952078 -0.817540 0.050306 2.862506 -0.860075 0.054820 -2.186728 2.726383 1.338275 -0.094476 3.733679 0.522264 -0.849114 -1.482228 -2.996228 3.271724 -1.644041 -0.069914 -1.909408 -2.967523 -0.078679 0.567778 -0.144880 -2.881752 -0.953531 3.338814 1.729749 -2.422624 1.049874 -0.744267 0.052033 -4.325760 -3.813923 0.763118 -2.375089 2.834597 -0.045601 1.037358 -0.221324 1.268167 -0.580340 -4.820825 0.896033 3.053987 -1.887059 -0.295335 -1.221656 2.061480 0.651788 0.026867 -1.820760 -2.066249 0.545698 -1.226532 1.819260 -1.724792 3.590011 -1.712966 -0.528242 -0.881776 2.037662 3.004317 2.989909 0.387280 1.798081 3.546982 -1.913370 -1.564065 -3.350500 1.322079 -1.571305 0.949821 -1.073481 2.251248 2.175406 0.852391 3.149616 -5.894428 1.175905 0.083501 0.293876 -3.305894 0.533348 -0.897046 -0.942641 -1.168985 2.450392 -1.148635 -0.778937 -1.050922 1.462703 1.219973 -3.133467 0.229455 0.037037 3.563676 -4.604371 1.056456 -0.942151 -1.847773 0.306613 1.171239 2.938703 3.156300 3.844002 3.190832 -1.266632 2.337725 -4.552780 1.007899 3.509075 -0.444490 -2.497697 3.845092 -2.602910 -0.729063 1.098637 3.216992 2.672547 0.193895 -1.295453 -1.177470 2.287084 1.637494 3.465654 -0.702899 0.730651 -1.664148 1.044195 0.440773 -1.329587 4.865184 0.173093 -3.419164 2.321832 1.563933 -1.717024 -0.602183 1.379628 -3.350606 -0.383228 -2.313585 1.300679 2.762642 -2.264724 -0.845649 0.457198 -2.379885 3.401389 -0.985663 -2.035777 2.051052 -2.642095 0.025223 4.245052 0.729013 -0.319296 -2.494228 -3.773240 -1.984501 -2.805275 1.071519 -0.316555 -0.737370 -0.898376 -2.815151 -1.427621 3.768418 1.347083 1.783570 -6.251343 0.982543 1.736808 1.474525 1.416933 -1.543143 -0.441933 0.837939 -0.715802 0.114638 -1.255860 1.530244 3.802793 -2.880348 1.030551 0.242657 -0.346208 1.634561 1.074086 -4.481178 3.872679 0.886961 3.645954 0.112406 1.074692 -1.445676 0.775253 0.237202 0.218397 -0.516604 0.626280 -1.241265 -1.363806 1.232502 -1.897771 -3.777975 -0.872123 1.577331 0.267711 1.239020 -2.103451 -1.504630 -0.690411 -1.243012 1.284047 2.201310 -0.613023 -1.073944 2.195922 0.799326 0.139775 -0.170023 0.471042 1.057498 2.291317 -3.664880 0.387021 -0.410111 2.430320 -1.631620 -3.674166 0.502068 -1.143771 -0.572849 2.295176 -4.384122 -1.162768 -2.133563 0.534716 -3.870072 0.728167 0.356359 4.671742 0.952417 -1.310825 1.985483 -0.725324 1.128147 -0.592831 -0.055385 0.637486 1.874476 +-10.653264 9.593021 6.056647 -7.695327 21.152612 -1.208252 -2.065184 8.647119 -9.474091 20.287578 -6.765704 -2.311279 -5.205774 -18.391508 0.956882 -8.712244 -4.083086 6.087410 1.309784 13.037465 7.800924 -12.205934 1.222756 -0.413352 -7.342807 -15.002037 -3.532545 6.231155 19.722771 -14.222768 1.646789 -0.811757 20.283335 -3.374325 17.396096 14.642622 5.870502 13.454408 4.988189 -12.054892 -8.467277 9.650223 -12.553117 -8.221885 2.069590 -5.394599 -12.370638 -5.183997 6.736269 -0.784284 -3.723719 16.824352 -5.936434 0.336487 -12.009663 14.196772 3.894453 1.224645 22.275843 1.163187 0.539955 -5.556139 -21.450020 13.597270 -7.397277 1.264135 -8.851884 -9.548336 6.851754 -3.970943 -2.127185 -11.153781 -3.200301 20.772790 8.805440 -16.436115 1.278483 -9.754053 -22.997717 -17.965563 -16.197838 5.520675 -0.823544 14.098292 2.292998 6.878594 4.131982 13.713495 -6.991728 -27.066490 6.397068 17.407569 -9.441439 -6.388611 -7.773866 17.410556 1.399864 4.505896 -10.572674 -2.109709 5.636527 -3.341959 9.460326 -18.515517 12.173599 -18.993188 0.795105 -4.443618 4.476599 4.818196 13.286019 3.169831 14.448928 21.531817 -16.452376 -3.777313 -16.162994 1.844167 -2.030984 4.946795 -4.195843 12.206270 -1.648154 5.864915 19.949423 -27.963909 3.492209 -2.097526 -4.073428 -21.192847 -1.081371 -9.628352 -4.504400 -7.072466 9.380758 -2.011159 -3.050235 -8.804970 4.278770 5.353315 -9.956248 -6.026704 8.322230 21.206093 -17.020917 4.705956 -4.207060 -6.606299 -2.867299 10.091643 16.216899 16.576792 22.425367 15.693480 0.010329 8.959576 -18.458782 -1.285258 14.988746 3.950470 -15.595904 20.769282 -14.362992 -6.634294 1.722651 16.257535 15.452461 3.589968 -15.955397 -16.664171 12.358054 6.623720 19.659987 -2.109704 0.923828 1.265545 16.906609 1.276662 -15.592994 19.628311 6.089631 -11.443971 6.596456 3.976399 -10.282671 -6.661255 13.775583 -15.040091 3.634218 -5.594061 -0.547006 9.826311 -6.262841 -2.660371 0.354355 -15.061345 20.440624 -4.358744 -0.135024 10.079088 -12.817203 -19.621093 13.557445 -1.978328 -6.413777 -15.788557 -14.467167 -12.375725 -11.664750 7.004639 1.078479 -5.367222 -10.497571 -17.304286 -1.226514 12.688366 6.150462 11.503241 -23.413785 -6.941313 8.176044 6.909662 13.529500 -2.323390 -1.798625 1.043401 -0.535052 5.048585 -2.982283 17.090078 25.870600 -10.692511 9.850547 -6.756605 -6.891860 6.434837 8.512820 -24.201604 21.234111 3.230390 11.750141 -1.428388 4.708526 -7.629210 2.545101 7.345009 -0.580588 4.336935 -0.504399 -0.335153 -6.517049 -4.085235 -15.303544 -9.712414 -5.703569 2.780493 -4.971422 7.138137 -0.890442 -7.610064 -6.517438 -8.845843 3.222165 12.255575 0.936813 -0.186230 13.565065 -1.282649 7.685274 7.187561 1.004530 4.750056 9.137805 -20.318843 -2.560885 -5.639557 5.370364 -8.410161 -20.000490 -2.196661 -9.944233 -6.477270 10.598907 -18.548215 1.928995 -13.159758 -2.502468 -16.054962 -0.773095 4.452771 22.684844 9.468752 -11.947609 6.772295 -7.570484 11.872781 0.378254 -1.626552 4.132372 10.130166 +-8.009866 6.976730 5.168149 -5.906715 14.504622 0.207339 0.704354 7.553734 -10.445045 12.992904 -5.398649 1.240405 -2.887134 -10.923047 0.382407 -4.795998 -2.930738 3.138919 0.404799 9.205933 5.655355 -7.794712 1.071449 -0.924658 -5.458650 -8.143610 -1.211796 4.088892 11.817018 -5.967357 2.765496 -0.883572 11.484646 -2.791117 12.279068 10.187394 1.975183 8.457105 2.239938 -8.948308 -5.310349 6.652664 -8.466619 -7.296464 0.683943 -3.826810 -8.937734 -5.065027 4.973901 -4.012131 -4.791599 11.267456 -3.837639 -0.149281 -6.934634 10.088257 3.457901 -1.938605 14.706646 1.085469 -3.101743 -3.132468 -12.725214 9.188229 -3.758757 1.463626 -5.207766 -7.732556 4.927169 -1.614980 -3.463899 -4.888193 -0.766396 12.570783 5.213040 -11.230315 1.573194 -6.714959 -14.833648 -11.263382 -8.055403 3.743564 1.024005 9.589815 0.949172 4.513715 3.463018 8.246172 -4.726023 -17.504624 3.698828 12.107304 -6.393120 -4.971107 -6.079769 11.219110 1.260176 2.784664 -7.067502 -0.362925 4.441061 -1.132170 6.212711 -13.523736 7.050072 -11.544601 -0.506463 -1.535262 4.117240 4.988608 5.353793 3.800624 9.792615 13.604290 -8.967213 2.061397 -9.592228 2.222063 -3.287529 3.401014 -2.923360 7.141728 2.342578 3.498388 13.030762 -15.959275 3.467054 -0.386290 -2.045456 -14.373335 0.341981 -6.724832 -3.404240 -4.882266 6.248550 -1.323149 -1.888741 -6.129332 3.114597 2.857894 -6.590141 -3.484022 4.717591 11.677188 -11.021029 3.198381 -2.788436 -2.990026 -1.430055 7.703482 10.408659 10.791902 15.085977 10.218874 0.326554 4.548792 -11.538936 -0.476882 11.203945 2.759713 -10.421601 12.919091 -8.977870 -4.830170 1.403981 8.724427 10.301421 5.031864 -11.774889 -11.423050 7.939267 3.633379 13.682669 1.798315 1.427783 -0.652274 11.546047 -1.898228 -8.646721 10.799758 5.529208 -9.318785 5.335344 3.115910 -7.687622 -4.441777 9.098977 -9.973524 0.233653 -2.581068 -0.989033 6.700814 -5.168467 -3.506206 0.273253 -10.799504 13.828923 -2.810946 1.492452 4.961956 -8.191328 -10.245500 7.459348 1.570053 -4.971473 -9.792270 -7.827098 -10.858426 -8.752762 4.522840 1.916199 -2.819615 -7.799564 -11.793460 -2.004866 4.883596 3.428676 7.430083 -13.787775 -3.862640 6.197432 4.240068 8.042247 -2.100341 -1.596705 -0.714579 -1.468160 4.480239 -2.483489 11.854584 15.525321 -6.793712 8.443005 -2.378767 -4.977287 4.250232 6.011014 -15.110938 14.793565 2.429204 7.423451 -0.138572 3.787485 -5.372411 1.603260 3.690500 -2.534200 2.498328 1.417816 -1.315834 -4.366389 -2.333945 -10.122821 -5.404335 -3.093319 1.848508 -2.193396 4.550097 0.977970 -6.956568 -5.070106 -8.184139 1.693980 8.684167 -2.145238 -2.512890 8.950884 -0.430878 3.652778 1.949683 0.947803 4.160133 6.292907 -13.833466 -0.229789 -3.391478 2.728301 -7.962075 -9.926262 -0.370856 -6.987448 -6.553880 6.978062 -10.831271 2.097989 -8.885132 -1.330633 -10.271136 -3.684959 3.084150 15.377438 4.190019 -7.366641 5.141315 -5.249394 8.661646 1.228255 0.208000 0.951340 7.057299 +-7.157481 7.366188 2.461337 -6.141116 15.030624 -3.407204 2.063398 5.944083 -5.146332 11.906332 -4.856338 -1.841914 -2.748658 -13.848364 1.104655 -7.047226 -2.008677 6.791405 0.893428 8.502083 5.292033 -7.184497 1.004671 -0.743417 -4.791658 -10.916804 -1.443980 4.521205 10.722370 -7.214091 3.348287 0.317327 13.993648 -2.402575 12.658689 10.022951 3.451971 8.587873 3.967816 -5.973576 -3.781440 5.553384 -7.065557 -7.859265 0.596850 -1.559757 -9.693158 -5.384243 4.682762 -4.224714 -1.150050 10.677943 -3.042921 -0.019504 -8.188972 8.396741 4.638552 -0.083664 12.924601 1.316597 -1.360358 -2.046669 -12.272790 9.386393 -4.731410 -0.609546 -4.246597 -7.242111 4.046760 -0.059357 -2.965051 -6.146943 -2.343392 11.293045 7.075527 -10.470550 1.484689 -5.927653 -13.935741 -10.672016 -9.010651 3.970185 -1.334720 9.753605 1.334878 4.415095 1.944950 6.798981 -4.046817 -15.828719 3.164469 12.168040 -5.277620 -4.774313 -4.915741 11.753091 3.499049 1.335642 -6.102125 -3.821740 3.476609 -2.975589 6.216544 -8.679922 3.442305 -11.593045 -1.308158 -1.508585 2.293275 7.549700 6.867649 3.213396 7.710711 12.048310 -10.957971 0.080512 -12.355181 3.395788 -3.285559 3.142658 -2.428347 6.106639 1.357621 4.980228 10.607340 -17.222378 4.182976 0.202723 -0.551757 -12.600819 0.192362 -4.596692 -2.748621 -4.627453 6.165666 -1.331215 -1.619223 -4.551124 2.438710 3.728919 -4.593624 -3.790782 4.190676 12.795628 -11.356148 3.641833 -2.514686 -3.816662 -1.759642 5.672811 9.733791 9.562375 14.527594 10.206760 -0.296230 6.737458 -12.468838 -0.705102 11.030906 2.073674 -8.983799 12.662400 -8.716764 -4.816320 1.171283 10.370836 8.879048 2.907366 -11.001872 -9.859419 7.692660 3.017451 12.078455 -0.731415 -0.546730 -4.212735 10.802249 0.851293 -8.487744 14.568277 5.076575 -8.994115 4.588042 3.996988 -10.053780 -5.441822 8.267681 -9.823165 0.151258 -4.037417 1.262600 6.353788 -4.511802 -3.226263 -0.239455 -9.391153 10.964047 -3.185813 -2.139269 4.912521 -7.718612 -9.972675 11.326314 0.418488 -3.565182 -8.811810 -9.685966 -6.356340 -8.737216 4.132380 1.369902 -3.215714 -6.050980 -10.053883 -1.438769 8.667860 2.676829 7.125897 -13.872074 -3.373164 6.059116 5.973467 6.399324 -4.643158 -1.150552 0.697248 0.746346 1.979064 -0.977578 10.275627 15.777997 -6.989681 5.991034 -2.130429 -6.018728 5.326611 6.181880 -15.058344 14.230170 2.068763 8.958116 0.189552 2.673611 -4.831553 1.224143 3.626779 -2.053262 1.106338 0.799533 -2.111260 -4.146952 -0.259311 -8.778798 -7.437780 -2.548589 3.999805 -2.099485 4.308489 -0.183060 -5.694847 -3.867379 -6.615413 2.090744 7.818465 0.531551 -1.973961 8.627678 1.575835 3.374876 1.427687 0.320783 4.302158 6.220079 -12.854710 0.853832 -3.140768 3.926435 -7.011136 -13.861613 2.566332 -8.051135 -5.320228 4.600151 -12.203720 -0.280743 -8.295390 0.054957 -13.031282 -1.702116 3.662861 14.533349 4.428196 -5.745956 4.541861 -4.930222 7.201388 -0.327203 -0.060032 3.215106 8.095363 +-26.668472 22.464477 6.091964 -20.553980 50.934119 -6.484220 5.397543 13.174219 -16.001098 43.980532 -18.580210 -13.595881 -14.099101 -48.592499 1.970334 -24.652396 -9.717029 17.925282 -0.130221 26.878700 20.621641 -28.972860 4.745500 -3.731088 -15.579465 -35.219923 -8.101590 14.233995 43.163041 -28.110838 2.645971 -2.452911 46.894078 -7.430835 40.783525 33.199925 11.381752 33.391178 4.523957 -20.452885 -17.002955 23.991100 -27.866937 -28.327122 4.180707 -11.787586 -31.470429 -18.014368 18.968563 -8.279846 0.602231 39.458359 -12.892102 -1.548840 -28.800253 28.966640 13.903387 7.034599 49.899883 4.114150 -1.710714 -7.784733 -49.074963 31.042235 -17.037423 5.281022 -12.918986 -25.426431 11.830097 -5.995493 -8.211680 -23.745934 -10.999679 42.599913 25.307187 -36.796406 4.309915 -23.278452 -53.066815 -36.971579 -37.531219 11.783448 -4.673629 35.806542 4.310718 15.051664 6.566130 27.124033 -13.920629 -59.633691 10.963583 44.154712 -17.622996 -11.748354 -16.883209 39.183046 4.301570 7.641841 -27.704895 -6.723418 11.788247 -5.149101 22.370779 -37.094049 12.129525 -46.693738 4.004376 -5.384409 7.091670 11.365427 32.696388 3.967740 26.977253 46.161083 -39.168429 -1.526332 -40.126331 6.191007 -5.096025 13.471201 -9.161346 26.462804 -1.617262 10.362401 42.084631 -62.383633 12.765163 -2.135803 -8.725515 -49.028647 -0.573543 -20.842752 -12.180408 -14.271126 21.814348 -4.206050 -7.532328 -18.703445 8.045874 11.107669 -21.898792 -6.835201 18.765764 42.538259 -34.334990 11.413202 -10.157266 -16.626555 -7.891578 23.202801 34.630159 35.810313 52.700478 38.603862 -0.318761 19.388107 -42.785064 -0.354637 39.162344 8.151405 -36.930160 42.986600 -32.533447 -11.667840 4.591583 35.596360 35.208519 12.291668 -36.530628 -29.877993 26.483333 11.592293 44.685689 -0.822956 4.102727 -4.046679 37.781957 2.078931 -30.282805 46.862999 19.711047 -31.373663 16.682903 11.909735 -29.509230 -16.374704 31.190073 -30.826067 7.652796 -17.134243 3.885229 22.536216 -16.800331 -10.121632 -2.012485 -36.173438 46.116164 -10.692218 2.122893 22.355890 -32.418267 -38.435576 37.676315 -3.807803 -15.593066 -33.902914 -32.978149 -29.605722 -29.526006 17.071801 4.089784 -14.206060 -26.127535 -38.841295 -2.105672 33.437699 11.044499 27.389194 -39.768396 -13.790640 19.140576 19.288879 31.059653 -8.052846 -5.661144 1.642056 2.084972 13.626470 -3.514013 34.940095 56.124115 -26.464140 22.432324 -10.252152 -15.076209 15.818246 22.412252 -50.996299 49.793090 7.249802 26.418600 -5.520107 12.848265 -15.191952 6.108501 16.748164 -2.664922 9.778664 3.809276 -4.509204 -14.898668 -2.909600 -36.140239 -21.675940 -8.744710 10.481207 -6.479918 16.217566 -0.642833 -19.315848 -13.902167 -22.039511 6.511885 30.153577 3.818888 -4.918912 27.299109 -1.034882 13.735899 14.443077 3.780031 11.350115 24.567220 -45.904519 -2.722320 -12.749482 8.359475 -21.959584 -47.897313 -1.079636 -26.454746 -18.353311 25.798879 -41.828252 5.530855 -31.563619 -2.191327 -41.877996 -5.157075 8.034962 51.545505 22.585258 -19.204239 18.002862 -15.134064 28.687245 -1.511431 -5.271532 15.610348 27.240089 +-9.298510 11.347972 7.544604 -7.032396 18.691078 0.587044 -0.820438 7.559235 -8.425727 17.229607 -6.836327 -0.545607 -4.129140 -15.063378 -0.244798 -9.834029 -4.931863 4.646493 0.749949 10.153020 6.424558 -10.255307 1.297501 -0.449245 -6.938300 -14.800089 -2.959858 4.973263 17.023119 -9.656437 1.994131 -1.922061 16.300164 -3.674278 14.266363 11.745423 5.292685 10.896564 2.884522 -7.959710 -7.168506 7.565901 -10.848371 -7.591813 1.299779 -5.407530 -10.599123 -4.408928 6.203524 -2.368937 -4.003715 13.632498 -4.842766 0.058202 -9.159070 12.918025 2.917409 0.847703 18.836588 0.498570 -1.196277 -6.036373 -18.496913 10.959322 -5.666122 1.748010 -7.351482 -7.871716 5.659789 -3.103754 -3.961748 -8.346888 -1.176136 17.489563 7.506418 -13.963995 1.061652 -9.158488 -22.283363 -14.415953 -11.774046 4.834807 0.384530 11.485470 2.222190 5.943249 2.204780 11.392203 -6.644785 -23.113977 4.886283 16.716577 -6.924064 -4.599896 -6.945763 14.732739 1.597399 3.895461 -8.229357 -1.181209 5.018408 -0.862604 7.412293 -19.042423 8.076565 -18.749683 1.513116 -3.595379 2.837131 3.055708 7.969808 2.694968 11.902606 18.920386 -15.401067 -0.725996 -14.856952 1.331451 -1.737922 4.425295 -3.814593 9.552503 -2.872157 5.756799 16.390965 -23.447959 3.781602 -1.775812 -3.852270 -19.696655 -0.733990 -8.479458 -3.758165 -4.887716 6.571588 -1.367133 -2.430142 -8.291750 2.705273 3.164633 -8.135640 -6.264442 8.437650 18.759005 -14.362929 4.040457 -2.944037 -4.319184 -3.216408 9.190992 14.324372 13.067152 19.784459 13.080446 1.751535 8.964640 -15.755153 -1.916426 12.287835 5.073695 -13.298221 17.002116 -12.157010 -5.797990 1.476470 13.064481 12.218292 6.224746 -15.848241 -15.313513 10.503504 4.969173 16.236831 0.250816 1.088066 0.804710 15.784249 -1.778323 -12.668765 15.188488 6.731614 -10.267991 5.726086 2.829407 -9.219799 -5.296710 12.436027 -13.029968 2.834949 -3.742380 -1.600375 8.183091 -5.041066 -3.283986 -0.110501 -12.966428 18.452571 -3.572174 2.175189 8.125472 -10.481913 -16.943349 10.923506 -1.812630 -6.088981 -12.366107 -11.266421 -12.211192 -9.468918 5.192348 2.650064 -6.200223 -9.857126 -14.722275 -0.527379 9.231362 4.516161 10.219009 -18.932403 -7.479206 7.156016 5.800385 11.830899 -2.324424 -1.284074 -1.390735 -0.347918 5.633243 -2.415184 15.981417 21.860604 -7.954329 10.619967 -7.409097 -6.833710 5.218437 7.624956 -19.436491 17.812676 3.195833 9.995102 -0.974122 4.144298 -6.026014 2.305000 5.947024 -2.553280 4.730429 1.194616 -0.635029 -5.472955 -3.303414 -14.403876 -7.354240 -4.266005 2.611712 -4.428610 5.693888 0.704384 -7.036664 -6.235103 -9.182707 1.431824 10.038553 -0.135660 -1.289462 10.923962 -1.688991 5.442248 5.565945 0.874173 4.642455 6.894294 -16.221645 -2.389227 -4.489818 2.847506 -9.275490 -17.132285 -1.969071 -9.362080 -7.728274 7.691063 -16.540714 1.856107 -10.966698 -2.580912 -15.222997 -2.990289 4.862161 19.850363 7.662033 -8.814156 5.753341 -6.441541 10.932003 0.368776 -0.588677 4.124321 9.079015 +-109.735269 78.294847 8.558195 -104.585846 238.478066 -50.266581 4.156953 132.205173 -40.037662 141.166772 -118.245396 32.605344 -27.007511 -163.951013 16.778520 -23.831623 4.938087 112.637709 -33.370797 70.353061 81.895447 -42.798949 37.791224 -57.886232 -56.830942 -130.021392 -10.328805 49.138888 59.162690 -26.865572 4.652609 16.231489 179.206551 -21.159911 131.260458 114.937645 73.590381 157.785515 59.023538 -33.836184 28.601849 70.675134 -62.297222 -166.158659 52.461125 -61.981025 -120.500688 -90.149768 72.884953 -142.654453 63.824699 120.043499 -6.868797 -43.703024 -112.898362 93.008967 102.574659 -16.956091 166.746771 40.634412 -93.526239 -37.396248 -123.030225 132.682335 -104.210594 50.387101 -8.537273 -142.564658 -19.717797 80.000439 45.143937 -95.654965 -95.491814 59.470896 46.895342 -116.355172 44.034563 -50.534678 -26.756723 -109.535011 -92.535532 46.261915 -50.647114 116.665350 -1.664870 43.891067 -45.088648 39.450089 5.695680 -154.668925 -21.661487 137.861460 -68.219644 20.229792 -88.628222 96.337714 40.782368 -37.412380 -68.974457 -68.336628 44.182799 -2.753421 69.000710 -56.569628 11.114301 -115.633064 49.171725 43.073846 19.090790 89.203911 23.542332 65.310817 57.566355 97.914948 -69.687920 40.490671 -197.876785 47.424950 -31.889856 29.681999 -46.113408 46.754354 61.215981 43.355961 111.511261 -181.542006 138.955174 24.523450 -34.917450 -115.334448 52.030204 -9.140248 -49.695019 -41.726999 97.010253 -15.501740 -24.308994 -20.659679 44.135672 1.921711 -109.609487 -85.042982 -11.241446 129.801366 -139.923005 45.128201 -39.648737 -62.793782 -2.158210 52.183735 81.474112 80.761016 175.218038 121.464740 -19.510136 65.149746 -164.857072 38.330197 185.707939 75.985971 -129.305996 122.866897 -82.436120 -22.441082 53.248266 86.224128 73.582485 71.845048 -102.258536 -99.533480 38.874450 -7.440657 159.204902 59.483893 40.228141 -143.006405 92.526225 -17.783623 -11.508217 220.979055 77.814942 -162.263782 49.946850 116.219018 -96.192793 -68.273529 51.469314 -83.986696 -39.339349 -53.810593 41.356660 86.749726 -107.230461 -117.615421 -14.557121 -128.243265 141.122857 -24.122608 -41.604894 29.574495 -130.013888 -41.311430 178.996730 30.238703 -45.234933 -66.750993 -112.081840 -72.434813 -173.622360 37.243128 57.202434 -55.772347 -66.132068 -119.832952 -32.649957 119.749978 -23.260446 33.561238 -180.610580 -28.333168 92.889725 31.588023 46.130228 -138.300025 -29.304134 -1.258938 1.629056 46.303301 -35.446905 80.652246 172.683387 -106.433501 86.144159 65.230082 -30.599785 53.798393 121.122610 -133.312224 181.846821 -8.949776 133.553054 19.363998 66.893172 -66.159012 21.598716 -4.957927 -12.925600 -23.237264 65.736237 -106.150298 -54.152740 47.769088 -87.852119 -99.190360 34.829723 95.582253 31.965996 25.121628 -13.991497 -55.554563 -46.848175 -79.603728 24.392335 102.756260 -41.274673 -110.643887 59.274622 73.703871 -57.913365 -47.524647 32.167428 68.717755 124.505388 -158.652557 82.758862 -7.184121 16.334321 -158.817383 -137.362484 50.915501 -86.778540 -81.033664 63.736948 -191.283161 -73.738669 -83.943837 76.598258 -144.585593 -13.638013 15.757701 165.101450 46.418502 -29.061252 101.949538 -38.019357 80.960797 1.887935 1.250979 16.704983 123.667679 +-17.795685 15.798273 2.190751 -14.282816 34.036934 -6.932944 4.609634 15.039736 -12.609449 25.992712 -14.091505 0.247437 -6.600285 -30.507066 1.833741 -9.451551 -2.271562 16.584916 -0.006390 16.924401 13.719464 -15.238098 3.620556 -4.890183 -10.405235 -22.420835 -1.678374 8.745474 19.058784 -11.751890 6.103961 1.475577 30.178315 -2.617205 26.538755 21.599763 7.018455 24.294390 9.829630 -10.315732 -6.108867 13.741999 -14.137294 -24.210077 6.216366 -7.292568 -19.188645 -15.732875 10.989919 -15.179573 4.532004 22.696721 -4.913548 -2.073746 -19.592901 15.110828 16.057861 -1.452025 30.017389 4.557076 -7.312219 -4.742176 -23.777534 19.024770 -12.795204 0.571975 -2.273119 -18.877632 6.606915 3.038167 0.784094 -15.016930 -10.024513 20.256853 12.017746 -22.361850 4.318689 -11.553431 -26.730094 -23.456722 -19.221084 6.565341 -4.147705 22.206042 0.824220 8.262426 -0.456792 11.962627 -5.138558 -32.881912 2.982558 26.272690 -10.465561 -3.176453 -12.732209 24.646397 5.595218 0.659080 -15.820448 -7.073786 7.677293 -2.899787 13.243204 -14.825965 1.499972 -23.228894 2.822367 -1.864095 2.686157 14.113293 14.546014 7.648941 14.849291 23.942195 -20.862661 4.799374 -29.112123 8.004698 -3.247738 7.117490 -5.040401 11.535100 4.402004 5.730787 22.794147 -35.809710 14.191605 1.831913 -2.647750 -28.190335 3.580213 -8.246323 -7.216014 -9.956301 15.648371 -2.753165 -4.070465 -8.960834 4.425642 5.249334 -15.527457 -12.913424 5.846257 29.373690 -24.306584 7.579036 -7.117986 -10.711853 -3.335274 10.730019 17.915394 18.993038 31.420727 22.926930 -1.367504 14.596145 -27.189296 0.748958 28.459122 13.052913 -22.130821 24.641291 -16.085239 -7.310201 6.168935 18.486076 19.032291 6.474491 -22.787211 -19.839615 15.621362 3.669070 27.655360 3.826780 3.803386 -13.862197 22.879048 4.834380 -12.885084 34.405847 11.100050 -22.874884 11.530309 11.264429 -19.178972 -10.146578 15.026451 -17.621412 -2.793850 -8.313178 4.421505 13.404562 -13.710854 -12.037894 -2.376940 -22.377923 25.814541 -6.026389 -2.083350 9.446435 -20.913463 -15.961704 25.597169 1.958036 -8.955440 -16.810579 -19.575533 -15.881194 -22.996690 8.990918 5.181303 -8.579212 -14.400112 -22.770714 -3.359098 19.812469 2.849917 11.254034 -28.169279 -7.842463 14.193090 9.842204 12.046071 -18.259463 -4.079717 1.965408 3.853138 7.877234 -0.967910 20.360571 33.981016 -17.109055 11.864051 2.730351 -5.117420 12.157061 16.638774 -29.671690 30.665847 0.430374 22.110576 0.048837 8.248976 -10.092643 2.753589 5.697062 0.191476 0.949952 5.328545 -8.549975 -8.799604 3.010134 -19.295862 -14.968179 -1.298291 10.392620 0.304203 7.976801 -0.839127 -11.036997 -7.922905 -15.019013 3.178685 18.680115 -1.097360 -10.350618 15.105913 4.262945 3.019781 1.780210 2.900701 10.510925 16.226034 -27.857266 5.284443 -6.266153 3.960618 -18.196122 -28.425909 7.267993 -17.136442 -14.238734 14.138301 -29.469157 -1.862864 -17.294678 4.800466 -29.063602 -1.308084 2.906421 30.864261 9.254434 -8.097817 13.567375 -8.723812 17.011667 -0.713428 0.413772 5.713983 21.836799 +-18.549725 20.021745 14.872847 -14.521178 38.532991 -2.645438 8.742499 18.852210 -25.385712 31.675746 -13.013007 6.230950 -5.940485 -28.293919 1.464089 -17.414619 -5.788367 10.214654 2.731911 21.942207 12.455683 -18.524276 2.730243 -2.041954 -13.592587 -29.699929 -0.920956 10.464261 29.724375 -10.611132 10.436683 -0.867832 29.517728 -7.196195 30.561758 24.530388 6.559340 18.798533 8.166994 -21.085449 -10.389200 13.210725 -18.541596 -19.986103 -0.398276 -6.520803 -24.092264 -13.370972 11.921326 -14.280452 -14.388384 26.022977 -8.382369 0.100151 -17.566696 24.616597 10.948112 -5.977113 33.479591 2.115540 -8.279208 -12.219670 -29.427766 23.663701 -8.037862 -2.371509 -13.279330 -19.478892 12.367147 0.251594 -14.596218 -8.995541 1.025850 29.040633 15.722165 -27.248694 3.122318 -15.078854 -40.141846 -25.552253 -15.716540 9.362319 2.229213 23.881694 4.144209 11.193927 6.913652 17.591220 -10.645716 -41.445966 7.821870 33.203488 -14.375468 -13.653330 -13.806297 29.252624 8.714385 4.539684 -13.807223 -6.158604 9.479312 -4.310446 14.270619 -34.217781 9.771804 -30.444789 -4.770000 -4.669218 8.861808 18.565905 7.135274 10.174467 20.570346 31.529232 -26.042028 7.421255 -26.959858 9.557473 -9.950627 7.596863 -8.334047 15.114340 4.853476 13.535555 29.730476 -40.512146 10.181750 0.554195 -0.759179 -35.321818 0.354657 -13.646167 -6.511304 -10.738473 14.374016 -3.788038 -3.128419 -13.700535 6.754191 7.424995 -12.034147 -11.419478 11.686106 32.527302 -31.062269 8.980831 -5.573344 -5.461408 -4.863661 16.959266 25.166698 24.772482 35.905262 25.334693 1.281317 21.103013 -30.258493 -1.531028 27.742115 9.862583 -22.784899 31.970545 -24.036939 -13.307567 3.419704 21.280415 23.214645 12.062988 -32.914151 -28.185253 22.932284 7.879121 32.324969 4.928477 1.304456 -8.945279 29.525344 -7.343442 -19.399799 26.790507 14.862852 -26.219656 15.791247 9.532644 -24.665755 -10.749699 21.258790 -27.252692 -0.740148 -8.000944 -1.474804 17.218805 -11.933230 -8.265801 -0.474334 -24.388626 31.185644 -6.748702 2.137939 10.964586 -15.842640 -24.683847 22.461802 3.661589 -9.426368 -22.502191 -20.494372 -27.153602 -22.062118 8.290611 4.462661 -9.862617 -17.128798 -27.841340 -6.464021 13.171499 6.869481 19.059785 -36.298571 -7.496504 15.741353 15.432192 15.524543 -9.416939 -3.152200 -2.068872 -2.576984 7.450326 -6.322021 29.997991 36.278235 -15.596124 21.403127 -11.150117 -16.198105 13.296499 13.682635 -37.001445 35.404009 5.718012 24.697252 2.303641 8.226313 -13.599691 3.678886 6.854189 -11.024249 3.203955 4.809488 -6.764649 -10.440379 -0.532389 -23.114019 -16.886540 -6.703287 8.437797 -4.799505 9.797810 3.625551 -16.921223 -12.021657 -23.637551 4.749600 19.028109 -6.196484 -8.176021 21.810771 2.624310 6.593317 -2.387752 1.451619 12.577545 12.748446 -32.232596 0.712301 -7.595820 7.395161 -21.411707 -31.569800 6.127640 -20.627500 -19.381089 11.399511 -30.117345 3.404022 -20.913545 -1.929343 -35.430927 -10.804068 9.917679 38.510252 5.567080 -13.748694 12.393652 -12.796691 18.293701 -0.072150 5.582872 4.645085 17.593155 +-11.995626 7.825949 1.704798 -10.026352 31.048126 -5.840054 3.167966 13.615815 -9.021489 18.678979 -8.853616 -1.128209 -4.215790 -22.468366 2.901877 -6.243302 -1.178101 12.687919 -1.687053 10.548491 8.872991 -7.975491 2.901092 -2.096408 -6.885370 -15.980053 -3.448025 7.720931 15.436447 -9.689908 0.956100 1.492971 23.137507 -4.888648 18.418571 14.475425 8.072322 14.096753 5.121072 -12.762223 -1.210286 8.612296 -10.357369 -15.445858 3.032595 -4.650414 -17.653921 -9.229424 9.107487 -9.884866 -1.373228 16.338762 -3.632203 -1.493253 -11.623390 14.048092 9.014197 -1.647858 20.273737 3.591116 -6.666492 -4.109986 -19.023742 17.885788 -8.288143 2.811672 -7.878627 -16.793873 0.362555 4.234500 -0.987344 -12.236354 -6.703312 14.677347 10.335810 -14.603533 4.361250 -7.276031 -9.994341 -19.111084 -15.746141 5.740220 -6.791043 15.538492 0.761052 5.836422 1.031622 7.590110 -3.963044 -23.560760 1.980244 19.220995 -9.227445 -3.332364 -10.061718 12.592984 4.731576 0.128676 -10.179619 -9.806348 4.816071 -3.399424 9.349041 -10.488387 9.058962 -14.785745 -1.839918 -0.370752 6.518563 12.956691 8.132128 4.383339 9.575085 16.646600 -13.855223 0.132126 -20.054244 6.935963 -7.932620 5.766306 -6.102914 9.704039 7.739671 7.321157 16.597807 -27.268753 9.589891 0.284406 -1.973662 -17.475326 2.712646 -5.049439 -5.846054 -5.961175 11.088206 -3.202959 -3.560961 -5.428323 5.936837 4.750227 -11.808466 -3.952038 2.738799 17.598172 -20.817561 5.568126 -4.340980 -7.296416 -1.295215 8.708867 14.770134 15.017769 23.008320 16.853724 -2.511861 10.806328 -22.961938 3.410819 20.592803 3.067186 -14.585447 18.559450 -14.023883 -4.635574 4.504075 15.484221 12.445048 6.031817 -13.302250 -11.051432 10.606968 4.857662 20.287801 2.655694 1.909236 -12.011696 11.115294 -2.137468 -8.163508 25.307107 7.840429 -18.564605 9.604176 9.323329 -13.056283 -7.668484 9.889180 -15.468508 -3.072647 -8.382311 4.567252 12.270342 -10.073368 -7.769736 0.940663 -14.622751 17.417607 -5.032611 -6.805632 7.810493 -13.240165 -11.102716 21.551505 2.380246 -4.504566 -12.495402 -16.598493 -9.066507 -16.297673 5.849563 2.752290 -5.629761 -8.841804 -15.888118 -4.384716 17.470873 2.661136 9.879322 -25.687291 -0.984080 9.861989 7.602335 9.617876 -12.428266 -2.230394 0.175176 -1.516923 2.370611 -4.907550 11.174674 22.223586 -13.471045 9.147192 -0.404682 -8.512725 7.019839 10.102025 -20.881208 22.628283 3.787901 18.750645 0.495201 6.137360 -7.727115 2.943346 2.517287 -2.231344 -1.007908 4.906867 -7.143706 -6.776879 3.909241 -12.835197 -15.828263 -1.428884 9.108011 -0.355568 5.781709 -4.008209 -9.333091 -5.207066 -9.175184 4.160460 12.537851 -3.781870 -7.661347 11.551711 4.721722 -0.593617 -2.443781 2.146944 7.641529 12.361907 -20.211875 4.076255 -2.838904 8.099568 -14.359720 -21.445257 3.891619 -11.743521 -8.210963 8.890910 -21.741925 -4.685261 -12.600537 3.485167 -20.286492 -3.246204 4.743165 22.992517 6.141511 -6.724466 10.260753 -5.548976 9.989599 -1.782474 0.261623 4.750564 11.866767 +-4.257780 3.334472 0.741397 -2.362495 9.997699 -2.404133 0.313388 6.202240 -4.605591 7.303266 -2.311282 0.139278 -1.652402 -7.786141 0.705573 -1.727604 -0.086453 4.190088 0.221384 3.876106 3.022053 -3.165289 0.546387 -0.090940 -2.680598 -5.393871 -0.572725 2.469611 7.007195 -4.980649 -0.329086 0.624164 8.918133 -1.567349 8.120783 5.548754 2.554322 4.418507 2.923227 -5.800914 -2.253658 3.332065 -4.281491 -4.753261 0.342259 -1.461921 -4.958380 -2.300379 3.092603 -1.206972 -0.529994 5.705558 -1.876601 0.967539 -4.124939 5.282448 1.758361 -0.599099 8.065838 0.571342 -2.021317 -1.973442 -6.888833 6.802408 -2.707772 -0.329940 -3.622301 -4.623270 1.835871 -0.289290 -1.009489 -5.170452 -0.623365 7.266187 3.304756 -5.860218 1.234930 -2.427984 -4.813772 -7.369225 -6.636599 2.062642 -2.198731 5.198394 0.553159 2.526857 0.032232 3.921859 -2.121862 -9.943815 2.261945 6.716149 -4.267852 -1.578555 -2.949489 5.447042 1.014630 1.381112 -3.165700 -3.151830 1.875609 -1.878781 3.395867 -6.036778 5.601883 -5.606459 -0.632017 -2.309321 2.558444 4.417440 4.346440 1.700222 5.141106 7.657857 -4.841370 -1.549021 -7.212046 2.331024 -2.652841 1.666727 -1.681287 4.086864 2.005401 2.591549 7.028326 -10.877305 1.678464 -0.146595 0.206490 -7.745034 0.149039 -3.169961 -1.748058 -2.858525 4.185470 -1.247458 -1.089310 -3.325765 2.037270 2.258312 -5.091056 -1.964709 1.882781 7.126952 -8.187505 1.897145 -1.596938 -2.350333 -0.798573 3.452370 5.844409 6.366104 8.069702 6.103835 -1.005608 3.787538 -7.934285 -0.098817 6.270261 0.146348 -5.444987 7.782605 -5.860057 -2.714623 1.477685 6.258376 5.445175 1.227837 -5.583885 -5.334305 5.405741 2.948912 7.293526 -0.651490 0.549691 -1.262951 5.148564 0.001232 -5.227684 9.130119 1.334759 -6.447670 4.063276 2.046467 -3.374432 -2.003500 4.440214 -6.852206 -0.276108 -3.214950 0.850888 4.368942 -3.454378 -0.746130 1.330700 -5.430119 7.105212 -1.683651 -1.911918 3.451353 -4.941029 -3.672459 7.357553 0.862755 -1.416077 -5.396701 -6.145078 -4.586477 -5.088637 2.020159 0.091798 -1.500452 -2.859454 -6.251596 -1.526853 5.743474 2.425335 4.604861 -9.770444 -1.071269 3.332280 2.881229 3.485572 -3.361791 -0.733759 0.345934 -0.610095 1.290676 -2.060453 5.680333 8.905246 -4.400773 3.978671 -0.367539 -3.016318 2.734368 2.685457 -9.169000 7.731913 1.400573 5.375539 0.444563 1.832575 -3.414672 0.848401 1.268590 0.353083 0.029956 0.558688 -1.201147 -2.501898 -0.278586 -5.471497 -5.038075 -2.298035 1.926571 -0.706269 2.439699 -1.803739 -3.421564 -2.048309 -4.729978 1.743586 4.491423 -0.904021 -1.492466 5.481902 0.294382 1.141063 1.426059 0.319140 2.170829 3.603924 -7.492229 -0.481134 -1.247944 3.447336 -3.791857 -8.186710 0.310845 -3.866028 -2.713687 3.210059 -7.620923 -0.779490 -4.410881 -0.327135 -8.298691 -0.622531 1.803203 9.203251 2.213821 -3.440694 3.184675 -2.517862 3.631165 0.041389 0.511060 0.898456 4.324113 +-13.499560 14.163905 7.293922 -9.984481 26.385845 -1.233871 -0.231732 9.417406 -12.634586 24.997817 -8.619076 -2.876179 -6.073478 -24.243882 0.132808 -12.020352 -6.735237 7.090133 1.817995 15.842993 9.363198 -16.098008 1.825691 -0.303349 -10.107576 -20.837614 -3.435563 7.765003 24.348923 -16.544869 3.663400 -2.190520 24.032803 -4.891991 22.632912 17.926003 5.127478 15.016819 4.706206 -12.985131 -11.099524 11.126371 -15.767314 -11.099070 0.356230 -5.881391 -16.476376 -8.062263 9.029501 -2.505032 -5.430514 20.757404 -7.502501 0.740305 -14.156094 17.653571 5.026088 0.313347 27.239138 0.694222 -0.612403 -5.513666 -26.342529 17.646460 -8.127435 -0.052416 -9.495547 -11.150466 9.664103 -4.871403 -6.130508 -9.773117 -1.525301 25.648226 12.983737 -21.394471 0.862156 -13.144386 -33.504877 -22.631551 -18.013454 7.586253 1.020525 17.735947 3.762555 9.325187 6.422021 17.037327 -9.950286 -33.742157 8.234323 23.514742 -10.221358 -9.296305 -9.724724 23.073215 2.473901 5.822171 -12.660416 -2.502541 7.212931 -3.333769 11.543011 -24.743361 12.606492 -25.323952 0.475320 -5.402839 4.850291 5.142345 14.431212 2.883821 17.294882 27.096361 -21.709047 -1.027364 -20.151262 2.651638 -2.692166 6.345773 -5.344873 13.567245 -1.850405 7.283648 24.266034 -33.823321 4.637106 -2.079393 -3.939950 -28.210444 -2.032126 -12.526516 -5.058132 -8.002533 10.088407 -2.614509 -2.941737 -11.658383 4.231393 6.456581 -11.807850 -5.804171 12.048174 26.853204 -19.767865 6.599347 -4.329160 -6.354050 -4.791178 13.493762 20.619565 20.218444 28.471593 19.297727 1.545176 10.206611 -22.787940 -2.900305 19.212793 4.533185 -18.795767 25.333201 -17.657914 -9.120105 0.823962 20.023650 19.191106 4.969029 -22.157382 -20.608850 15.858908 7.897399 24.326532 -2.027184 0.247466 2.386941 23.095964 2.016920 -18.812351 22.344560 10.107527 -14.486152 9.430814 4.448132 -15.002815 -8.495186 18.907423 -18.556081 4.007780 -6.203548 -0.859066 11.467890 -6.857558 -3.141668 -0.231378 -18.890874 25.500160 -5.451268 2.305003 12.518751 -14.583399 -24.464136 14.916442 -2.544933 -8.236401 -18.994653 -17.411891 -18.148000 -13.756808 8.081722 2.183945 -7.707125 -13.148029 -21.500178 -1.406243 13.678179 7.549144 15.955732 -26.219717 -9.165840 10.216941 10.048856 16.238759 -1.745822 -1.593754 0.122333 -0.235542 6.543434 -2.640533 22.475878 30.713102 -11.903433 14.095834 -9.463927 -10.513305 8.695922 10.117188 -29.136201 26.391682 4.818298 11.758149 -1.235457 5.780997 -8.171965 3.423264 9.260219 -3.076916 6.385782 0.207834 -0.393428 -8.376959 -4.903752 -20.024572 -11.878499 -7.387598 3.140957 -5.104541 8.763875 0.585579 -11.254128 -7.911151 -13.689679 3.490823 14.703549 1.378905 -0.035011 17.511818 -1.406804 10.278802 9.809690 0.877801 6.439247 10.269612 -24.765481 -3.235483 -7.232042 7.020119 -11.329382 -24.659810 -1.914031 -14.525032 -10.717564 12.393477 -23.545802 3.501665 -16.531884 -4.155852 -21.020559 -2.877161 6.840336 29.003598 10.655560 -13.723626 7.960405 -10.110630 14.912307 0.622052 -1.264525 6.115419 13.351381 +-53.237083 43.521867 5.601304 -48.117219 106.554030 -24.203921 7.578258 54.128811 -18.896835 74.657696 -52.328045 6.134053 -15.734179 -82.944386 5.931017 -27.291075 -3.809768 51.220075 -11.799719 36.331312 39.317992 -26.839248 13.544771 -21.306674 -30.864769 -73.571287 -5.095346 25.244703 38.520442 -22.172966 12.754373 6.940117 90.245571 -13.095564 71.307760 62.605197 34.663913 73.197562 25.771287 -5.537539 1.725845 35.871938 -35.671426 -72.425484 16.036545 -22.839282 -63.113447 -41.883447 34.311851 -60.959361 25.489423 63.484795 -7.180018 -12.202770 -53.883032 52.998548 44.188247 -8.922749 85.784566 17.226219 -37.435841 -13.427437 -65.322301 72.045831 -46.631021 16.488431 -7.214604 -63.420034 1.857925 25.995677 5.341965 -38.578541 -37.011876 43.613848 31.656562 -64.593739 15.215926 -30.522699 -49.289199 -55.115902 -47.564986 25.047694 -9.064543 59.424323 3.632622 23.420081 -5.647520 28.837641 -8.125204 -86.249797 -0.415474 77.916869 -34.591604 -3.184146 -48.074698 56.074538 20.306257 -8.494096 -35.262210 -29.522868 22.210475 -5.715400 36.402394 -40.272244 -4.247530 -64.905821 15.877418 12.358713 5.421685 41.009509 17.929996 25.630781 35.251058 59.579011 -45.991570 23.074505 -95.930610 25.814165 -11.102404 15.284325 -17.922775 24.028783 21.956923 24.359019 60.714939 -94.162064 56.182948 7.090095 -16.926612 -69.421119 15.267664 -13.323363 -23.617572 -24.567518 45.823121 -5.740625 -10.158585 -18.216093 20.959070 8.133491 -41.938150 -42.627087 7.384047 66.506032 -64.975392 21.981867 -18.891583 -26.950093 -9.218906 32.149316 47.094974 46.099267 93.945419 61.556140 -2.755835 36.192021 -80.305025 6.394451 84.897206 38.129022 -63.185190 68.329153 -47.585361 -17.619271 18.915391 50.177031 40.549531 34.022786 -59.900874 -52.974119 26.685341 2.585235 80.683795 19.777034 9.603263 -53.734653 55.626484 -2.497795 -21.870995 105.127733 49.121538 -74.772267 25.534372 46.225099 -53.948089 -38.345855 40.740098 -49.679905 -15.491404 -24.252581 15.994516 40.544795 -44.478625 -42.553987 -2.590929 -63.804063 71.150027 -14.815494 -12.836052 21.832037 -65.007618 -41.361040 78.157564 8.032832 -22.184435 -39.602350 -55.455307 -44.731600 -78.084059 21.764928 25.934130 -25.869224 -37.079091 -62.337014 -9.919245 57.318248 -2.959341 29.527317 -82.731315 -22.097121 45.810190 22.637921 29.945628 -54.850626 -12.560455 -1.427907 6.823194 23.211693 -12.558932 49.598502 93.136960 -47.942373 45.846747 13.776688 -30.332686 26.213953 55.785045 -78.533193 91.577140 1.945820 49.075907 8.047858 27.050082 -33.265067 8.406025 6.143968 -8.006338 -5.317838 22.081334 -39.952455 -26.215788 11.377522 -52.489599 -40.903041 6.566489 39.488984 4.728744 17.018228 1.227496 -31.624474 -24.909344 -47.086402 10.261494 51.869239 -7.937878 -39.826960 40.831502 25.324173 -14.311739 -8.415084 10.217791 32.593257 55.352518 -80.594981 27.436265 -8.171714 8.618515 -72.443274 -75.377704 19.820957 -50.294254 -44.693881 26.564966 -86.709053 -23.897082 -45.601413 25.823675 -77.157976 -13.871104 14.406735 87.952720 26.498069 -20.012860 42.987472 -22.922898 45.448095 1.963190 -0.401763 15.406590 61.819376 +-6.752689 4.539654 0.906731 -4.861615 14.493078 -2.117008 1.600039 6.549078 -7.182777 10.094033 -4.249817 0.452924 -2.632633 -11.116128 1.349717 -2.771993 -0.258718 4.956034 0.130886 6.717113 5.038598 -5.904466 1.540888 -0.889662 -3.784713 -7.799076 -0.800580 3.954052 9.825726 -5.039105 0.598568 0.588863 11.088379 -2.529932 10.310274 8.234286 3.405954 7.311196 3.284789 -9.382557 -2.624411 5.287481 -6.184542 -8.408224 1.367394 -2.705179 -8.347313 -4.385867 5.215535 -3.997462 -2.887474 9.255886 -2.763319 -0.335066 -7.006005 7.194159 4.551293 -0.945200 11.814192 1.341452 -2.931787 -3.864020 -9.333713 8.515282 -4.113438 0.074295 -4.451568 -7.982480 2.222060 1.038576 -3.157868 -5.393328 -2.405736 8.846149 5.216614 -8.750749 2.212821 -4.100921 -7.333983 -9.750241 -7.839771 2.732947 -2.744400 8.853057 0.592584 3.579926 1.213960 4.922999 -2.458074 -13.622889 2.403849 9.767250 -5.287586 -2.320372 -3.538320 8.857415 2.450263 0.672830 -5.818866 -3.222311 2.773419 -2.143291 5.459047 -7.854327 5.758248 -8.472948 -1.114675 -1.868224 4.236656 7.101359 5.234567 2.695324 6.205976 9.784375 -7.261075 -0.349590 -9.617576 3.224957 -4.143669 2.932814 -3.092658 5.911159 3.997170 2.904852 9.889577 -14.205663 4.239527 0.462904 0.145545 -10.615318 1.318069 -3.869882 -2.763433 -3.668226 6.441863 -2.287081 -1.840485 -3.926569 3.257683 3.006062 -6.641227 -1.306677 1.938683 9.898754 -10.730023 3.250259 -2.632666 -3.976065 -0.371667 4.753479 7.844116 9.102409 12.391708 9.636004 -1.720607 7.226031 -11.303957 1.468074 10.784080 1.938868 -8.410060 10.139259 -8.263392 -3.376851 2.283952 7.693898 8.416710 3.493713 -7.891354 -6.772000 7.042971 3.354210 11.135954 0.331930 1.839263 -4.444671 7.303011 -0.496773 -4.889114 11.677551 2.723534 -10.264407 6.693648 4.472543 -7.104922 -2.815268 5.697145 -8.797613 -0.569166 -4.876195 1.601726 7.094015 -6.139025 -3.572751 -0.011872 -8.392217 9.964738 -2.535687 -2.002850 4.728647 -7.277253 -4.939364 9.885740 1.960380 -2.695161 -7.900502 -8.391162 -7.067179 -8.584698 3.366371 0.764924 -3.104464 -5.054217 -9.455864 -3.349493 7.309457 2.862138 5.827941 -14.064661 -0.149321 5.555295 5.398654 5.003138 -3.861040 -1.481387 0.918423 -1.242338 2.058648 -2.882102 7.456885 11.397605 -7.470895 5.407994 -1.716663 -3.749330 5.049512 4.811364 -12.048836 12.457017 2.340685 9.885877 0.401409 3.478238 -4.816926 1.876601 1.795025 -1.888181 0.137698 2.054842 -3.316249 -4.021143 2.102549 -6.393619 -7.818859 -2.071166 4.041107 0.054853 3.529468 -1.602924 -4.879714 -3.483342 -5.565232 2.598196 7.151485 -2.375118 -3.603937 6.773682 1.782508 1.325432 -0.672460 1.304926 3.924304 6.186826 -11.596783 1.129015 -2.266503 3.877522 -6.791822 -10.458365 1.897133 -5.247215 -3.941660 6.008596 -11.305437 -0.327303 -7.074873 0.819647 -10.480754 -1.216694 1.825872 12.714242 2.630528 -4.130417 5.535713 -3.416699 5.395882 -0.805653 0.828666 1.626670 6.424199 +-5.902822 5.643100 2.389790 -4.334822 11.957212 -2.041576 1.608607 5.826056 -7.046346 8.980563 -3.729929 1.572635 -1.918495 -9.931060 0.846344 -3.838150 -0.822770 4.686798 0.970097 6.652751 4.215062 -5.543540 0.811683 -0.632479 -3.953089 -7.563985 -0.503724 3.431982 8.405660 -5.069440 2.376766 0.630578 10.047307 -1.987202 9.871688 7.863385 2.441172 6.539249 3.710403 -7.307584 -2.912697 4.226313 -5.468696 -7.221073 0.875779 -1.917793 -6.766771 -3.734302 3.960077 -3.406804 -2.829992 8.002381 -2.455625 0.166647 -6.305563 6.270164 3.670751 -1.128828 10.391555 0.972108 -2.823676 -3.204233 -8.366786 7.470497 -3.566603 -0.691401 -3.567457 -6.309725 3.523697 0.509438 -2.790868 -4.817635 -1.586353 8.384501 4.197249 -8.201961 1.286407 -4.016632 -9.824823 -8.137082 -6.279797 2.733158 -1.020711 7.476835 0.914872 3.376123 0.893456 4.948873 -2.772292 -12.404305 2.351484 9.211379 -4.691654 -2.320838 -3.340610 8.904032 2.357122 0.918162 -4.709601 -2.571761 2.915268 -1.945744 4.695859 -7.828638 3.898000 -8.277646 -1.062016 -2.328981 2.523690 6.100632 4.251948 3.291511 6.395838 9.147688 -7.125195 0.033150 -9.148281 3.004276 -3.230827 2.260483 -2.402795 4.821326 1.903792 3.018893 8.947935 -12.698703 3.430807 0.214300 0.319123 -10.526421 0.754952 -3.666579 -2.093687 -3.686860 5.365821 -1.462615 -1.336218 -3.837058 1.887761 2.742652 -5.203794 -3.609112 2.646532 10.073495 -9.447419 2.903974 -2.160386 -2.955080 -1.027391 4.292889 7.333318 8.069082 11.010638 8.273447 -0.554506 6.905974 -9.943799 -0.079730 8.866070 3.131121 -7.462894 9.567479 -7.207323 -3.919075 1.642667 7.018544 7.415843 2.740659 -8.759349 -7.891130 7.237218 2.732626 9.707632 0.204162 0.827552 -3.045688 8.042288 0.581731 -5.518237 10.517279 2.062513 -8.627308 5.844682 3.464202 -5.964337 -2.984153 5.933765 -8.235764 -0.530147 -3.109723 0.449010 5.577190 -4.888299 -2.795400 -0.077246 -7.537999 9.044317 -2.212814 -1.147308 3.712833 -6.253740 -6.521896 8.390285 1.454700 -2.611121 -6.973695 -7.130617 -6.110642 -7.206709 2.713821 1.331458 -2.901557 -4.724410 -8.444586 -2.282014 5.688891 2.259905 5.456629 -11.839661 -1.829942 5.043204 4.793003 4.076526 -4.177804 -1.037392 0.600800 -0.136832 1.978483 -1.795323 8.110680 10.969017 -5.813792 5.323140 -1.554366 -3.818177 4.664716 4.345494 -11.293080 11.028022 1.548337 8.539586 0.784083 2.533369 -4.446882 1.105728 2.097114 -1.359951 0.434232 1.177110 -2.254716 -3.360881 0.671603 -6.165913 -5.943734 -2.073168 3.297593 -0.664077 3.079228 -0.505191 -4.008136 -3.454311 -5.615691 1.872175 6.132441 -1.801575 -2.870204 6.689255 1.150595 1.818704 0.424717 0.748751 3.886867 4.632280 -10.170881 0.679231 -2.331380 2.757549 -6.253661 -9.920491 2.068486 -5.595286 -4.084996 3.972081 -10.113893 0.159544 -6.106571 0.282472 -9.998008 -1.145276 2.126363 11.522754 2.265903 -3.979413 4.409094 -3.716893 5.246732 -0.259580 1.217931 1.100099 6.326131 +-9.202934 10.352021 6.432811 -6.768457 18.178579 1.137840 -0.521530 8.114532 -10.362349 17.064741 -6.247254 0.128409 -3.855688 -14.278571 0.002405 -8.339928 -4.622062 3.991406 0.857745 10.567561 6.593063 -10.178774 1.083175 -0.204472 -7.213951 -12.078458 -2.463739 5.100624 16.826873 -10.028722 2.098531 -1.677648 15.415848 -3.900070 14.845823 12.104208 4.946457 10.727530 3.151633 -9.330037 -7.613387 7.753024 -11.032844 -7.954632 1.060395 -5.211723 -10.340621 -4.099220 5.892690 -1.954544 -3.928359 13.840104 -5.033898 0.328116 -9.099174 12.830893 2.554618 -0.027158 19.027208 0.619631 -1.962139 -5.957591 -17.816217 11.264131 -5.252608 2.032282 -7.460477 -8.348765 6.054813 -3.328256 -4.161823 -8.570339 -1.539675 17.653219 6.808878 -14.173835 1.004778 -9.164107 -21.239215 -13.217952 -11.509678 4.886429 0.732170 11.303708 2.306115 5.934269 2.980021 11.580622 -6.854128 -23.368567 5.381723 16.082705 -7.976497 -4.666742 -7.021901 14.398351 0.865705 4.281516 -8.783492 -0.131429 5.305989 -0.925368 7.636275 -19.220673 9.124973 -17.997706 0.972534 -3.337450 3.698918 3.587890 9.002107 2.931392 12.534241 18.731016 -13.745962 -1.000224 -13.516757 1.452154 -2.096215 4.465467 -4.174953 9.876175 -1.585716 4.889179 16.946460 -22.753185 3.458372 -1.950041 -3.651116 -19.493847 -0.666190 -8.840374 -3.777208 -5.373691 7.161353 -1.590125 -2.456753 -8.484868 3.056773 3.792210 -8.989201 -6.117625 8.147926 17.296723 -14.120953 3.972060 -3.257407 -4.283762 -2.952273 9.716467 14.499360 13.862163 19.588139 13.178465 1.589229 8.509092 -15.122027 -1.677383 12.778224 4.621076 -13.756045 17.110263 -13.206015 -5.991589 1.273369 12.457289 12.751952 6.315393 -15.450528 -15.053701 11.367682 5.661614 16.642642 -0.199321 1.555570 1.428135 14.902258 -1.605766 -12.616652 14.894785 5.891957 -10.939263 6.297515 2.677428 -8.046900 -4.837325 12.534561 -13.676290 2.492302 -3.792785 -1.953903 8.480839 -5.580595 -3.107662 0.414654 -13.196230 18.375054 -3.526633 1.909670 7.738122 -10.807142 -15.173665 10.258008 -0.706838 -6.216930 -12.884737 -10.617340 -12.691665 -9.619677 5.428619 2.621476 -5.164751 -10.155147 -15.140399 -1.164881 8.385561 5.090613 10.217721 -17.922219 -6.876308 7.384130 5.752202 11.789471 -1.927385 -1.324606 -1.169232 -0.749352 5.815671 -3.073440 15.506376 21.452486 -8.126259 10.640352 -5.896762 -6.241659 4.955582 7.439083 -19.569643 18.161284 3.371708 9.534357 -0.916271 4.165963 -6.579536 2.500758 5.644405 -1.545286 4.722758 0.626423 -0.279757 -5.615271 -3.807289 -13.942951 -6.578599 -4.809354 2.371628 -4.398004 5.888830 0.564520 -6.836157 -6.918532 -9.846807 1.813284 10.360630 -1.238704 -1.131971 11.498687 -2.204752 5.588110 5.675880 1.030722 4.807432 7.072710 -16.779959 -2.664161 -4.564206 3.026799 -9.491362 -15.620449 -2.473236 -8.523823 -6.782660 7.760612 -14.860547 2.635756 -10.997078 -2.714884 -14.643892 -3.030024 4.234280 19.901719 6.982315 -9.283632 5.869032 -6.560368 10.990228 0.958103 -0.291994 3.270451 8.768058 +-11.457356 10.927138 6.614170 -9.578031 28.442236 -3.776134 1.855678 14.323381 -12.259927 22.919998 -7.971663 0.955110 -4.309184 -22.854211 1.440376 -8.707805 -2.742040 9.575226 0.971622 13.222039 8.530792 -11.937643 2.083803 -0.919253 -8.840196 -18.556218 -2.274118 7.656472 19.453839 -13.159976 4.546412 0.003702 24.035379 -4.176552 20.884896 16.535627 7.876122 14.746607 8.354958 -12.965111 -6.369622 9.247115 -12.148813 -13.685403 1.834887 -4.300768 -15.998629 -8.386627 6.800212 -7.720217 -4.469541 17.926202 -5.783490 -0.252343 -13.149660 16.208118 7.309918 -3.421680 23.121124 1.816932 -4.115736 -6.984911 -22.209785 18.167175 -8.464849 -0.111138 -8.129495 -14.036849 6.482016 -0.283168 -4.226823 -11.055221 -3.657574 21.038525 10.899194 -17.947210 0.949165 -10.321056 -24.187166 -17.786061 -15.361854 6.382163 -2.669998 15.217270 3.643013 7.452842 4.844106 12.154702 -6.738073 -29.242053 5.694062 21.365453 -11.065622 -6.451974 -10.927762 17.975300 3.611350 2.759388 -10.648229 -6.159476 5.786793 -4.119501 10.202576 -18.838441 9.188949 -20.673622 -0.838011 -3.056498 5.623813 10.431443 11.461301 4.019498 13.939561 21.564624 -18.758761 -0.855122 -19.150465 5.468996 -3.738255 5.084397 -6.343184 11.375172 2.332083 8.898439 20.959547 -30.798238 6.371276 -0.953199 -3.082453 -22.241933 -0.388407 -8.624179 -4.440682 -7.408122 10.922024 -3.020527 -2.054084 -8.741730 4.584738 6.155775 -11.886303 -9.906417 7.159749 23.137163 -22.541998 5.938571 -4.496942 -6.382014 -3.028260 10.950134 18.264250 17.668344 23.782850 17.376221 0.152115 13.143003 -22.770228 -0.376535 19.901208 4.625367 -16.829359 23.054790 -17.273119 -7.255222 2.304688 17.720149 15.855859 3.885728 -19.574885 -17.357303 15.611348 6.593169 21.388254 0.992829 0.404539 -5.944907 17.120661 0.735495 -14.980901 24.459095 7.586768 -16.727896 10.354052 6.817325 -14.490883 -7.540443 13.194550 -18.671851 0.279796 -7.228186 0.749472 11.477078 -8.038610 -4.201987 0.540351 -16.505219 21.373705 -4.523435 -2.447891 8.663546 -12.748313 -18.621014 19.034045 0.066393 -5.883376 -16.025081 -17.136904 -14.102686 -15.540935 6.171233 1.947368 -6.733050 -10.361706 -19.123801 -2.754003 15.210796 5.425875 12.320365 -27.475334 -5.801567 10.425620 9.562377 11.995725 -9.720771 -2.056483 0.679086 -0.984064 4.057642 -4.351005 17.466913 27.743096 -11.444424 12.342274 -4.832197 -10.735786 7.910685 9.675549 -26.328313 24.426600 2.442867 15.297538 0.568257 5.319531 -8.922758 3.378688 4.769805 -2.202815 2.060341 0.940419 -4.161103 -7.398531 -1.355761 -17.100712 -13.656421 -4.778595 6.044427 -2.866566 7.098911 -2.871756 -9.450004 -7.473025 -12.843996 4.101484 12.930607 -1.963994 -3.732909 14.895125 1.479217 4.943542 1.781235 1.273532 7.541257 9.895884 -22.472821 0.382875 -4.851807 6.649750 -12.875851 -23.151157 2.116151 -13.259974 -9.187761 8.269361 -22.731111 -0.694271 -13.982404 -0.770036 -23.481273 -2.341924 4.837337 26.572567 6.420681 -10.536870 8.608355 -8.185678 11.859408 -0.009437 1.652982 4.174785 12.157650 +-5.591579 3.951979 1.779214 -3.955651 13.099164 -1.621571 -1.193756 4.586626 -3.441493 10.320377 -3.270617 -2.698013 -3.478964 -10.195325 0.921167 -4.217030 -1.060601 4.331309 -0.059799 5.754911 4.266752 -5.696624 1.151952 -0.041910 -3.170145 -7.892214 -2.394302 3.632406 10.763337 -7.404430 -1.277059 0.123720 11.399674 -2.370595 8.859879 7.098872 3.973711 6.945568 2.120449 -7.279308 -3.168201 5.090312 -6.290578 -4.856448 1.552643 -2.755821 -6.961283 -2.997703 4.794965 0.139176 -1.495536 8.627965 -2.929720 0.041578 -6.532695 7.851873 2.381039 2.066449 11.212059 0.808985 0.545711 -2.546207 -11.353971 6.023461 -4.513091 0.718626 -5.867666 -5.553716 1.838441 -1.116923 -0.637599 -7.227981 -1.980968 10.069218 5.039176 -7.772745 1.749288 -4.177160 -7.560715 -10.504551 -9.820228 2.605336 -2.749819 7.597721 0.609977 3.406625 0.665498 6.045378 -3.003129 -13.656729 2.966379 8.777982 -4.387407 -2.506332 -2.838791 8.053799 1.506047 1.307355 -5.462667 -2.575484 2.327060 -2.570067 5.052778 -8.006127 8.293040 -8.752549 -0.020610 -2.365713 3.455753 3.443354 6.981568 0.960525 6.502698 10.628350 -8.292112 -3.315227 -9.174565 1.165971 -2.258771 2.621524 -2.354971 6.874090 0.396537 3.059417 9.529094 -15.604570 2.444483 -0.931791 -1.528701 -10.137075 0.303584 -3.959103 -2.561570 -3.283641 5.365302 -1.656938 -1.917899 -4.001860 2.980134 2.652178 -5.290342 -0.097573 3.430098 10.663816 -9.317383 2.700881 -2.255161 -4.455917 -0.589195 4.311460 8.306053 8.567131 11.803896 8.744557 -1.329785 4.543392 -10.639521 0.329129 7.929250 -0.153643 -7.620491 10.487227 -6.822125 -2.752615 1.643995 9.147439 7.780718 1.979725 -6.512356 -6.760278 5.144979 3.801409 9.693620 -1.688271 0.926682 -0.765292 6.655165 -0.495902 -6.683796 10.887610 2.428868 -6.477972 3.772253 2.877641 -5.480924 -3.417535 6.211429 -7.909981 1.754830 -4.445486 1.365679 6.228420 -4.111645 -1.765462 0.333404 -7.298491 9.974122 -2.696693 -1.887513 6.138223 -6.957464 -7.560631 8.701723 -1.079272 -2.425321 -7.857952 -8.618753 -5.116783 -6.554792 3.558018 -0.273846 -3.004298 -4.510831 -8.477887 -1.331215 8.233527 3.369290 5.803839 -12.975373 -1.785387 4.323984 3.949277 7.039367 -1.041587 -0.952362 1.243054 -1.047463 1.810283 -2.091156 7.129081 12.753325 -6.579627 3.840985 -3.148044 -3.048206 3.896488 4.150622 -12.346308 10.996394 2.560264 7.692719 -0.793529 2.515769 -3.676111 1.643236 3.361341 -0.301497 1.379744 0.617910 -1.110051 -3.591034 -0.294993 -7.407176 -6.674722 -2.783497 2.769378 -2.219577 3.813407 -1.377394 -4.064075 -2.632272 -3.842359 2.257828 6.261823 0.544024 -0.751148 6.587593 0.411911 2.749526 2.670340 0.720926 2.259376 5.395808 -10.196487 -0.829662 -2.431798 4.161542 -3.904996 -11.273475 -0.641998 -4.632134 -2.532152 6.315463 -10.419213 -0.618169 -6.646488 -0.282883 -8.755123 0.317693 2.423978 11.910136 5.192696 -5.266512 4.049274 -3.231953 5.155392 -1.079188 -1.497125 2.653147 5.141874 +-4.521916 3.761788 1.107993 -2.876037 11.154313 -1.938523 0.227627 6.165616 -4.064695 7.734631 -2.867745 -0.499400 -1.905437 -8.321158 0.669263 -2.515905 -0.432388 4.364104 -0.097369 3.904120 3.214334 -3.239991 0.866051 -0.418461 -2.785017 -6.234406 -1.027622 2.559421 7.020592 -4.658625 0.154232 0.344439 9.157277 -1.523528 8.075215 5.536378 2.820238 5.038131 2.530344 -4.870575 -1.935701 3.533350 -4.413181 -5.309594 0.751299 -1.920082 -5.353632 -2.999660 3.240179 -2.120734 -0.548197 5.968755 -1.742491 0.465703 -4.112774 5.469818 2.286739 -0.103451 8.294898 0.745208 -2.245305 -1.937843 -7.824677 6.603141 -3.036361 0.513534 -3.490969 -5.378344 1.318586 0.061529 -0.748882 -5.048502 -0.842093 7.389616 3.628056 -5.927428 1.286517 -2.715143 -5.399968 -7.274953 -6.705284 2.151422 -2.219808 5.500532 0.498676 2.521890 0.599609 3.854488 -1.969358 -10.364406 1.796070 7.455477 -4.164557 -1.522273 -3.235337 5.236519 1.035584 1.167337 -3.423602 -2.805332 1.906249 -1.447237 3.468664 -6.095550 4.735537 -6.381521 -0.068701 -1.669605 2.279551 4.243265 4.552986 1.538767 4.935285 8.000637 -5.719487 -0.973001 -7.556159 2.182009 -2.644742 1.897703 -1.932222 4.107602 1.794048 2.813774 7.039111 -11.542320 2.541159 -0.087656 -0.470825 -7.936466 0.368179 -3.036901 -1.982287 -2.587283 4.172168 -1.202463 -1.176295 -3.175841 1.871052 1.944039 -5.207423 -2.350288 1.860727 7.355200 -8.299170 1.955246 -1.620149 -2.604960 -0.864500 3.699763 6.096571 6.204924 8.465647 6.302592 -0.981800 3.785901 -8.208953 0.239731 6.950994 0.334331 -5.734706 8.020061 -5.620649 -2.338658 1.617063 6.149922 5.456342 2.068764 -5.806994 -5.473545 4.861229 2.618145 7.605804 0.383340 0.811414 -2.322079 5.519992 -0.385160 -5.041389 9.576415 2.050538 -6.709251 3.731830 2.473396 -4.636199 -2.493354 4.400982 -6.614039 -0.134822 -3.252627 0.880830 4.439362 -3.600590 -1.588000 1.097196 -5.790769 7.793889 -1.716508 -1.674812 3.494213 -5.299936 -4.430040 7.740519 0.795696 -1.682282 -5.393758 -6.245743 -4.852338 -5.555332 2.173723 0.527666 -2.044965 -3.214019 -6.406776 -1.246118 6.124121 2.007141 4.662870 -10.044144 -1.349374 3.426235 2.641081 3.897787 -4.084290 -0.805370 -0.012766 -0.820800 1.547932 -1.831616 5.745383 9.456898 -4.592360 4.523919 -0.329353 -3.288776 2.539130 3.151642 -9.046661 8.132698 1.152039 5.936892 0.173608 2.177700 -3.172587 1.052145 1.403002 -0.293548 0.193333 1.059736 -1.631970 -2.622599 -0.020655 -6.177017 -5.139312 -1.767351 2.245455 -0.503067 2.387562 -1.473039 -3.965703 -1.953329 -4.213113 1.567296 4.731452 -0.790412 -2.093790 5.100045 0.573511 0.901520 0.384218 0.508573 2.238245 3.954875 -7.722275 -0.032576 -1.228870 3.043367 -4.527530 -8.183490 0.363960 -4.355810 -3.139454 3.496726 -8.010651 -0.876780 -4.627700 0.039744 -8.239856 -1.040567 1.701849 9.625260 2.789123 -3.378740 3.453734 -2.406043 3.995126 0.042797 0.154403 1.256259 4.570350 +-4.213858 3.091639 1.618111 -2.681688 7.545849 -1.631979 0.767195 3.174377 -2.768999 6.546077 -2.297816 -1.099402 -1.649591 -6.493221 0.581329 -3.491987 -0.718624 2.945085 0.497258 4.057962 3.104052 -3.324927 0.102056 -0.113377 -2.507866 -4.999541 -1.151899 2.420745 6.275062 -4.997296 0.972901 0.633271 7.578182 -1.411802 8.284762 6.203999 2.351820 4.295375 1.777207 -3.549594 -2.610675 3.486839 -4.436802 -4.412938 -0.040465 -0.988794 -4.600403 -2.164733 2.930083 -0.590292 -0.556978 6.042431 -2.292170 0.975331 -3.942457 4.602972 0.760247 0.482575 7.662704 0.642242 -1.809908 -0.604097 -6.725066 6.527642 -2.665260 0.408834 -3.326349 -4.485443 2.371329 -0.915198 -1.914232 -3.699779 -1.142584 7.122106 3.182994 -5.963488 0.972318 -3.101534 -6.214408 -5.464890 -5.558410 2.371135 -0.050147 5.173947 0.845267 2.442544 0.686220 4.321326 -2.523588 -9.569521 2.512441 6.637130 -4.326500 -1.713337 -2.098790 5.364543 1.095987 1.654294 -2.945964 -1.679337 2.156114 -2.057253 3.538801 -4.510249 3.732946 -5.648655 -0.643723 -1.678106 1.776372 3.271450 4.089058 1.952884 5.655247 7.290549 -4.328817 -0.736973 -5.776829 2.354102 -2.502351 1.478903 -1.127080 4.234984 0.909847 2.130040 6.995894 -9.044992 1.142992 -0.254149 -0.251219 -7.379714 -0.159555 -3.835046 -1.966611 -3.134934 3.949969 -0.511599 -1.132925 -3.435202 1.403332 2.154321 -2.953546 -1.759050 2.334957 5.153020 -5.127723 1.765176 -1.580809 -2.271034 -1.267439 3.931278 5.595624 6.590179 8.122438 6.242169 -0.507168 2.761324 -7.068641 -0.786401 5.277696 0.090076 -5.601224 7.432730 -5.934609 -2.969957 1.106872 6.048635 5.511138 1.693536 -5.400310 -4.672429 4.428669 2.534798 7.140426 -0.772432 0.122012 -0.075681 4.988462 0.318176 -5.572656 7.658858 1.462132 -6.080855 3.204572 1.831727 -3.684100 -2.782746 5.154800 -6.303977 0.430995 -2.990217 0.442532 3.953621 -3.259896 -0.529408 1.421478 -5.730790 6.756630 -1.660043 -0.677138 3.479646 -5.422139 -5.807658 6.498331 0.617905 -1.741846 -5.491337 -5.243184 -3.268390 -4.674188 2.262451 0.486185 -1.278273 -3.256069 -6.176481 -0.661181 4.315965 2.241992 5.271178 -6.706438 -1.897246 3.363787 2.524625 3.558010 -1.415273 -0.987806 0.130024 -0.133717 1.567020 -1.469997 5.308516 8.505306 -4.043787 3.559514 -0.861642 -3.945967 2.377810 2.677103 -9.016032 8.120625 1.292775 3.046394 0.372032 1.688720 -3.746128 0.307745 2.083117 -0.393685 0.511592 0.226678 -0.557106 -2.198791 -0.859377 -5.192905 -3.477460 -2.284779 1.646953 -1.398080 2.612440 -0.442988 -3.506458 -2.423203 -4.199179 1.668580 4.718926 -0.087728 -1.090144 5.648446 -0.108757 1.577087 1.153776 0.271573 1.872729 3.720533 -7.653783 -0.816013 -1.381115 2.338381 -3.782836 -6.927290 0.000521 -4.367419 -2.055604 2.255125 -6.225857 0.404118 -4.845978 -0.892244 -6.062889 -1.072315 2.054150 8.793010 3.177641 -3.841033 2.724060 -2.849826 4.108824 0.392317 -0.177697 1.265376 4.304130 +-8.291782 6.885106 2.059955 -6.482899 20.367125 -4.333990 1.741738 8.646443 -7.666012 15.070715 -6.530706 -0.483537 -3.176083 -15.214099 1.277363 -4.847851 -1.833088 7.118703 -0.167766 7.691627 5.971325 -6.840261 1.340507 -0.876817 -5.383705 -12.809113 -1.786504 5.151290 12.961926 -9.846123 2.084768 0.691694 15.472553 -3.318750 13.414453 10.749585 4.207384 10.358553 3.809683 -6.745179 -2.992725 6.167602 -7.836181 -9.921209 0.857120 -2.483869 -11.355129 -5.848321 5.976671 -5.268427 -0.003024 11.856986 -3.316582 -0.139739 -9.254886 11.538818 5.828310 -0.366483 16.109016 1.811006 -3.478830 -2.417240 -14.756824 13.640675 -5.697368 0.773054 -5.126144 -9.583761 2.778431 0.748250 -2.180644 -7.886597 -3.660872 13.256108 7.070426 -12.031142 1.798359 -5.992687 -15.929849 -13.382017 -11.091601 4.481154 -1.325197 10.588064 1.419184 4.652729 1.599060 7.538192 -4.121358 -19.091171 2.926199 15.034779 -6.982944 -3.641518 -7.556187 11.796164 2.378101 1.240414 -6.820155 -5.245023 3.789281 -2.759653 6.716293 -11.645223 6.124965 -13.514984 -0.003228 -1.303008 3.667738 7.067845 7.924163 2.584501 7.856405 14.479549 -10.859108 0.354622 -14.873160 4.075665 -2.734537 3.600032 -3.657537 6.684540 2.348520 5.138669 13.164993 -20.770698 5.568421 -0.593180 -1.521835 -15.401613 0.343571 -4.956636 -3.686859 -4.810067 7.394738 -1.775650 -1.978675 -4.888107 3.518898 3.847273 -7.647747 -4.264991 4.239902 15.171118 -14.603215 3.885386 -2.935167 -4.311927 -2.500141 7.412669 11.883743 11.283642 17.864247 11.484540 -0.427866 7.463029 -15.613251 0.246807 14.010805 2.745664 -10.938904 15.289591 -10.699582 -4.239300 1.971830 12.073218 9.685155 2.786175 -11.393303 -9.826290 9.608951 3.869857 14.832302 -0.709052 0.604525 -3.770460 11.260964 0.395638 -8.665836 17.017208 6.751075 -11.894341 6.610194 5.147066 -8.518703 -5.564477 9.555801 -12.055347 -0.714679 -4.862989 1.822744 7.835194 -5.964802 -3.892279 0.722744 -10.616677 14.382917 -3.429141 -2.688748 7.076564 -9.741983 -10.756566 12.355624 0.115065 -3.474832 -9.877485 -11.577932 -10.040964 -10.317845 4.297910 1.721479 -3.779325 -6.476951 -12.316632 -2.126108 10.627918 2.854195 8.791951 -16.800697 -3.358435 6.825149 5.898221 7.919410 -4.868643 -1.366098 0.443082 0.107505 2.450827 -2.040168 10.254605 18.983521 -8.348073 8.202285 -1.720667 -5.611349 4.896852 7.660672 -17.230651 15.911322 1.956712 9.563930 0.321822 3.742173 -5.846820 1.719917 3.213153 -1.330857 0.677751 1.445283 -3.106727 -4.709237 -0.569015 -11.224137 -9.366915 -2.439181 4.592386 -1.129608 4.479150 -1.744129 -6.284766 -4.254791 -8.413893 2.917362 8.750759 -0.973467 -3.357746 9.591689 1.788700 1.907678 3.006195 1.042108 4.857783 7.788675 -14.460339 0.388958 -2.728573 5.770418 -9.147947 -15.776099 1.380898 -8.755729 -6.786757 5.889794 -14.815278 -1.767424 -9.082038 0.651598 -15.989924 -1.831177 3.485368 17.941762 5.175733 -6.015071 6.313352 -4.816683 7.491168 -0.437477 -0.111523 3.706577 9.128457 diff --git a/src/test-suite/oracle/FA_llvm17_p/sqlite3.txt b/src/test-suite/oracle/FA_llvm17_p/sqlite3.txt index b3291227a..b89bbe480 100644 --- a/src/test-suite/oracle/FA_llvm17_p/sqlite3.txt +++ b/src/test-suite/oracle/FA_llvm17_p/sqlite3.txt @@ -1 +1 @@ -39389.228010 -5376.674414 -29021.478687 57311.999476 -2830.058969 -4903.917802 12531.761407 11238.552214 5837.613706 -75945.222073 -29524.528980 67012.326909 12066.566763 -3894.166052 -5155.274300 24880.990511 16379.301698 18119.941570 -78168.641123 6989.300529 12382.527812 -4140.765868 -22445.730997 -11017.107544 -2946.210374 -24964.022127 31784.060329 24619.920816 3814.250199 53991.318974 -15070.562586 30707.538848 43953.849707 -2381.574458 22950.984229 41734.144641 -10816.221965 -4810.135903 -22139.721114 -18213.911622 65218.353935 28923.175315 -4972.659720 25150.057632 -1473.603306 60679.434496 14821.739239 48281.290493 15413.638264 -21271.516911 17702.110667 29020.863980 -31464.468252 -12264.696262 -53225.776560 4551.504887 20417.821305 12091.340519 -24138.628052 28349.748690 -17150.800330 12706.377159 24665.181318 16145.634347 65299.241720 21431.810517 40498.453896 51106.281433 54662.926106 -40088.949771 13304.092762 7654.656533 14419.047690 1069.853817 48025.749385 -22396.022974 -42850.026510 -6809.055547 -521.476994 -64375.753597 -7862.747134 -5017.845790 81997.642405 -46507.572785 -7365.529276 1302.849919 25304.077449 58076.845632 -34610.699881 4141.103685 -51849.889573 -3722.191701 -9419.574215 79247.276286 9473.697538 19713.967952 -12465.907796 19244.744645 -3435.023306 13989.461256 6536.506768 -56492.493102 -1688.045743 -73137.700853 -29253.134499 -40407.956653 -933.743462 14279.813178 -57154.836462 557.310850 4767.098763 53947.134808 -84054.927478 -5960.262662 15618.135863 6821.010998 52393.624293 12726.230237 -20777.351490 9294.755970 1390.254836 17729.270299 23544.548798 -26589.157997 11527.892553 -2477.706692 2599.986765 10135.742292 17323.593387 18006.984562 -84040.870641 -13220.164514 23623.495802 -7462.858326 7428.499912 29600.097469 25956.154793 -22568.528168 22848.602044 -41683.667110 46822.194460 -63180.261022 -16181.937610 -23577.152061 -38918.014782 -27130.354619 40871.462790 45417.167782 45708.189488 -8005.036744 -9525.828909 -574.773616 -72716.434262 -90806.812223 10465.695405 -1704.417641 -3791.325645 11437.562356 -9734.447109 10740.288521 -43880.468152 14900.821761 34527.372778 -29568.994163 -26237.248706 -3183.854486 44694.863175 10560.089449 -18749.784008 -15393.422626 -7807.926404 -3875.797153 23007.442336 54734.520268 -18045.888336 -91677.309373 -81314.052401 -25529.987834 49294.973712 -25441.928778 -4832.642230 -21895.379659 -25103.559014 -31507.116894 -2475.733488 -39250.694689 12937.243692 -6512.779912 -17903.734550 -64470.347896 22094.732030 -9237.200299 -14267.520417 10192.716821 -47076.708383 10964.664559 30742.866710 4235.252363 1191.728237 10027.339188 4415.971911 -38850.183036 -29519.167851 20492.481769 -23659.175199 52721.378257 42300.583697 2340.791768 -29988.064784 -19580.261322 -49547.471529 33755.555148 -48905.776848 35422.181670 8024.147986 -27027.556318 33921.390322 -44944.517675 -7937.652834 -29487.218742 26365.878881 6197.248727 -71044.945394 70024.038121 51335.191099 -42336.803306 -3397.896498 -9550.309290 23323.897056 11667.371271 39492.749377 -43755.789585 -36460.205077 14610.025897 151.649603 -1885.533970 -2971.605785 14692.409094 -12728.623378 -2336.804940 -48256.526733 -15118.845499 47250.475424 26403.952496 -6263.492780 1761.811526 13312.365912 -25423.677786 12047.566917 49352.438572 30559.417573 12879.122901 -45558.117241 -102363.066526 21858.284461 -27296.611234 -9673.486010 6833.930802 -27911.443354 -18580.310923 16977.709576 -28889.467960 48066.249561 -17385.422090 -33583.855529 46193.509969 -69949.758441 -54972.692493 -46011.694699 -13363.262082 11685.615563 -4471.066728 22318.769605 -21219.305738 9400.389388 -7905.007664 19022.545764 -19689.155351 -29574.226282 12494.780265 28997.563923 45806.675927 7127.876997 -14628.763346 57523.118124 9747.445151 -12639.944425 -14974.659152 -5337.028753 -25489.188876 8811.413006 -66892.993020 -10358.495763 4699.510652 33516.701552 -40010.545447 22338.301792 70.999160 17700.864559 10359.928443 +-41101.634382 38735.799759 27382.753933 -38428.149139 78807.147466 -10201.363229 11809.130651 27924.743310 -35568.753315 56229.143619 -37591.566824 3612.060317 -16821.251497 -64417.826216 6386.023016 -42262.408228 -7983.935424 32088.540041 -1259.273495 47168.846592 32357.254620 -35290.523576 7994.845608 -17084.430486 -22247.802428 -58208.620963 -6035.959644 19322.311703 44263.613557 -13444.469384 26507.080604 1963.570801 62495.189889 -9200.867792 56820.955105 51238.178683 12631.355717 55438.346042 9508.162860 -27910.263585 -9256.247814 33053.848383 -32980.435099 -56569.312861 10320.667440 -17041.430070 -49450.701605 -39017.728951 26420.856804 -39405.929613 -20332.053524 53477.795069 -11284.140453 -10531.379802 -45110.798757 41873.997693 39090.184467 309.186671 65123.399740 11832.228841 -13385.146329 -6893.802241 -60186.142018 34469.004089 -29759.002358 7141.392186 -13823.622622 -42631.246708 14656.755716 10092.730477 -10224.124416 -18349.991120 -18961.185928 41152.526983 31325.990211 -49782.811655 11639.865323 -27991.299779 -76062.009686 -46565.358701 -34565.192058 15663.023608 -5245.785990 51522.452897 979.273304 19050.150288 11001.021407 28338.643791 -6963.973887 -70501.775344 1299.770843 63156.385177 -18958.043055 -21138.250559 -29428.490842 57447.519906 24948.769871 -3079.899888 -32161.448629 -13054.526573 19893.970533 -8638.677733 31071.836749 -39947.597509 3298.431274 -55929.135506 1592.145556 4970.520484 9464.497552 39013.352177 9373.297251 24067.475199 31847.711511 48272.047251 -50961.322988 24970.525619 -61699.480072 15134.909159 -22415.196065 16489.124974 -12000.624648 27704.195207 13794.523073 20908.800140 48698.300041 -73653.554638 37283.557464 7470.152559 -6412.559969 -56832.482572 13853.028604 -16517.652160 -16635.833442 -22885.244490 33552.820564 -3095.842464 -9078.433652 -16003.086881 12514.987712 9535.676162 -18555.922745 -22559.931832 11645.647055 59478.447601 -50592.310818 18566.133977 -15817.898283 -21228.813536 -3418.174818 23011.531901 37242.477529 40242.016024 72908.702668 53583.117970 -5651.600263 32121.348324 -56722.530591 3688.423828 66788.715399 18033.421048 -47565.541309 54365.690423 -29145.463447 -18735.952817 10567.349902 36786.697149 42208.426481 31363.952217 -57762.011545 -54727.655740 15706.483992 -107.887814 62037.185764 26786.974259 3453.773287 -37559.354897 57532.497062 -6621.205411 -26989.465948 66750.198848 30964.876570 -47710.814290 21396.662324 32225.892989 -64158.493904 -35180.802306 30005.349741 -36601.125925 -2904.412569 -17639.354234 9205.379712 29322.716090 -30954.658750 -34289.713116 -10103.697657 -51366.505581 55489.004712 -12928.615275 -3115.878975 14639.881896 -38935.074496 -53514.630656 52231.609569 5218.811936 -23075.026756 -41109.793286 -40532.686405 -37777.349994 -55559.479750 21976.089282 10083.326896 -19337.499420 -36505.912735 -50051.821695 -9082.800774 32805.858500 -637.068595 23724.770575 -61484.557382 -18875.936965 30691.857731 30412.910966 30326.824049 -34166.536975 -10608.380093 1070.672661 -303.137153 15774.300088 -2005.528168 46129.337184 78568.373177 -38490.273384 29163.087689 -7710.824820 -35090.399468 28039.562718 45615.722816 -66163.459165 71122.668977 3184.788732 51859.463603 1091.877472 20307.354223 -22764.512729 5544.498393 14969.870341 -22895.060557 3083.321421 16838.124306 -22494.489245 -20080.820604 8388.016452 -40220.608756 -30433.892127 2409.473379 25076.197495 -264.216898 17010.639159 10081.724369 -33714.278154 -15719.799520 -29647.812603 6086.495903 43662.926529 -5903.035583 -28509.664345 31034.736390 17832.963603 2580.652400 -15835.954323 6654.975407 22861.414088 36420.042451 -64838.773965 21026.768622 -15222.533935 5533.346503 -44614.611459 -55168.066453 20562.785589 -42856.822779 -37006.943343 33499.164568 -57565.131521 -1674.231104 -40822.987721 13708.261082 -53430.548287 -22253.544508 12361.877114 65930.105214 20795.088722 -19353.738777 30262.675977 -22874.364262 39532.003981 -617.227422 -448.077272 7452.937030 46563.748492 diff --git a/src/test-suite/oracle/SYM_llvm17_f/ir2vec.txt b/src/test-suite/oracle/SYM_llvm17_f/ir2vec.txt index aa6ab8f0c..ef11ad939 100644 --- a/src/test-suite/oracle/SYM_llvm17_f/ir2vec.txt +++ b/src/test-suite/oracle/SYM_llvm17_f/ir2vec.txt @@ -1,2220 +1,1692 @@ -PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 2.543485 0.101596 -2.030001 5.462066 0.188850 -1.876940 0.137507 0.992345 -0.873886 -7.918699 -4.975461 4.473726 0.805358 0.129965 1.198358 1.663876 -0.215039 0.636519 -7.848720 2.418026 2.682212 0.860338 -0.537777 -0.993858 0.844302 -2.129680 2.118986 1.117595 0.861713 4.569816 -2.410932 2.317259 3.796878 -0.443738 2.116250 3.373691 -1.293641 0.717269 -1.201074 -0.429821 6.092980 2.959088 0.219297 2.608287 1.059625 4.620658 0.133548 4.132801 0.756119 -3.257423 2.130579 2.792791 -2.461224 -0.597948 -3.192673 2.426737 3.768791 1.432665 -2.335564 1.509212 -1.411078 -0.234912 1.340297 -0.100269 5.206038 2.324817 3.531493 3.270193 5.311164 -2.578017 -0.480738 2.423720 2.164592 0.031385 3.951724 -2.669797 -5.102868 -0.163358 -1.041061 -6.298958 -2.120936 -0.044134 7.617029 -4.598944 -0.315837 0.478051 0.966520 4.630609 -2.294722 0.137149 -3.345511 -0.050887 -2.459522 6.702220 0.948606 0.943976 -0.659520 1.758004 1.416570 3.217961 -0.566150 -3.458699 -1.579501 -7.453285 -2.231683 -2.105552 2.069495 2.236353 -6.067803 -0.847471 -0.882063 5.202980 -6.812124 -0.153064 3.171968 2.236817 3.496438 -0.407158 -3.409884 0.455454 0.833835 0.494439 2.874633 -1.733499 -0.045306 -1.076622 0.895571 -0.118971 1.517967 0.230926 -5.045006 -2.794852 -0.523037 -0.427135 0.256274 0.905019 2.587530 -2.701250 2.987855 -2.003606 3.455657 -6.302204 -0.591029 -2.359347 -3.940851 -1.216626 3.118739 3.795812 3.944067 -2.055515 -1.641199 -1.625248 -6.343394 -6.406539 1.065395 0.063896 1.136350 1.347083 -0.439877 2.104228 -2.408195 0.673083 2.589104 -2.196952 -0.796183 -0.747507 4.714076 -0.220490 -0.851120 -3.167883 -1.740391 -1.071026 0.158987 3.814565 -0.845353 -7.031144 -7.166881 -3.348291 3.867285 -1.601980 0.449678 -2.681095 -0.654756 -3.465031 0.242986 -4.204659 0.485197 -0.186178 -2.689585 -4.648991 -0.066592 -0.597245 -1.212834 -0.235086 -3.672065 -0.684713 4.212053 1.348072 1.794954 0.771723 0.166140 -4.688840 -3.426190 1.297635 -2.489106 3.771294 3.063302 -0.559897 -3.726550 -1.595394 -5.003671 2.923999 -2.786343 1.038904 -1.072370 -1.209752 4.616130 -3.039061 -0.497345 -3.532416 1.075220 1.149794 -7.641532 5.598816 3.586248 -1.866746 -0.204558 0.283566 0.950309 2.565593 3.595313 -3.187906 -2.695906 0.381732 -1.468098 -0.036459 -0.743840 3.089646 -3.327712 1.125290 -2.978863 -1.771940 2.440485 2.634299 0.218883 1.183458 0.896595 -1.041306 2.114781 3.438343 3.379209 -0.668876 -4.046204 -9.162111 2.564815 -1.741277 -1.349769 -0.072479 -1.588852 -3.318997 1.129229 -1.066854 4.592544 0.065877 -1.601645 3.676058 -5.513198 -4.609028 -2.477005 -0.380819 0.143157 -0.884035 0.747035 -2.045984 1.276737 1.253212 -0.128080 -0.527413 -2.905032 -0.566034 0.451368 3.993708 1.256639 0.613060 4.633052 1.815324 -2.514555 -0.939688 0.494531 -0.764240 -0.908820 -4.885308 -1.938282 -0.981008 1.156428 -1.963329 1.798469 -0.872807 0.320548 1.363754 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = 2.828983 0.768312 -0.065526 3.413127 -0.034996 -1.878250 0.894844 3.129912 -1.181800 -7.316042 -5.511420 2.003103 0.227893 -0.050597 1.688465 1.041945 -0.147655 0.980888 -9.116640 2.388137 3.386468 1.733687 0.842673 -1.358387 1.136542 -1.739752 -1.149380 1.083101 0.820170 4.426649 -2.236237 1.212968 3.631538 0.337027 1.833051 3.769016 -1.149548 -0.045763 0.799228 -0.555948 5.564766 3.516660 -0.281324 2.107112 1.206330 4.343095 -0.339408 2.751472 -1.196801 -3.300676 1.692454 -2.662369 -3.503886 -0.004316 -2.166872 1.881610 3.546588 2.939955 -1.806895 2.292266 -2.034601 -0.372531 1.035328 -2.136938 4.172751 2.162559 2.199279 2.240093 4.779602 -2.491040 -0.558012 2.378842 1.539671 -0.084609 0.828851 -2.885762 -2.658910 -4.102391 -0.209436 -8.185106 -2.846587 -0.201180 8.030865 -4.188534 1.366035 1.810926 -0.343786 3.519536 -2.076118 -0.467851 -3.078687 0.055645 -1.360109 4.537640 -0.034944 0.101484 0.415258 1.471193 2.087139 3.119688 -1.014097 -2.231384 -4.211147 -6.834818 -0.276082 -1.143340 1.696348 1.908512 -4.755492 -1.318663 0.738928 5.018202 -6.087271 -0.294456 3.516289 2.431715 0.129161 1.200074 -3.407241 -0.027168 0.236456 0.896862 3.270672 -3.037799 -0.107789 -1.517327 0.366883 0.031280 1.447265 0.008436 -4.722083 -3.246497 0.077830 -1.377976 -0.185969 0.813844 1.588616 -1.432952 2.749582 -2.787473 3.473883 -5.466237 0.489524 -1.741846 -3.515685 -0.896100 5.391400 4.754043 1.643868 -0.575633 -1.107529 -1.351175 -4.339788 -4.335186 1.486956 0.219657 3.210768 0.365157 -0.138553 1.372906 -1.628361 0.170871 -0.322271 -1.520531 -0.033449 -0.793212 4.228896 -0.139706 -0.942390 -3.548226 -0.496601 0.811386 -1.442041 1.958143 -1.467974 -4.034011 -5.455862 -3.659465 3.706375 -1.094019 0.200185 -2.332727 0.477161 -2.332406 0.761530 -3.686991 0.932260 0.265071 -3.341308 -4.388752 0.091100 -0.764691 -1.237924 0.206178 -1.871318 -1.296580 4.144843 2.456355 1.445165 0.744493 0.480812 -3.946540 -3.325758 -0.142875 -1.945928 3.738651 2.859334 -0.591333 -4.402672 -0.930423 -3.817995 4.292969 -0.887577 0.510717 -2.698048 -0.823669 4.992264 -1.866058 0.488802 -4.123144 1.359147 1.712823 -9.181311 3.968203 3.403562 -1.655199 -0.897346 -1.407507 0.279080 3.436358 3.657896 -1.662511 -2.345304 0.616047 -2.282952 -0.027522 -1.737573 2.815052 -2.901274 1.458905 -2.675895 -1.591332 2.456182 2.111623 0.211676 2.208232 1.553432 1.523278 2.366735 3.335934 2.441942 -2.009247 -3.868323 -8.643863 2.994171 3.961968 -0.022040 -0.202591 -1.550409 -3.552442 0.673520 -0.746525 3.966032 3.687741 -1.106657 3.284961 -3.610764 -4.067097 -2.043237 1.208120 0.366111 -1.217736 0.020771 -1.205552 1.641506 2.006243 -0.342467 1.683754 -3.194272 -3.587312 -0.234257 4.265590 2.071276 0.369480 4.415817 0.962774 -2.335653 -0.489907 0.660715 0.456955 -0.855099 -2.703838 -2.032294 -1.288353 0.923625 -1.679389 2.216313 0.074802 -0.415020 1.786407 -PE-benchmarks/channel-assignment.cpp__main = 0.771876 -0.705957 1.216830 0.641163 0.351552 -1.320910 0.999104 1.501491 -0.015632 -1.686974 -0.517582 -0.796915 -0.249534 -0.891571 0.297863 -0.531275 -0.248023 0.729774 -3.267962 0.806337 0.939378 1.135721 0.463602 -1.520372 0.260117 -0.351931 -0.787659 1.537097 -0.085958 1.311259 -0.690968 -1.007421 0.911492 0.477603 0.209827 1.639457 1.354033 0.217501 0.693808 0.838861 1.824598 1.268110 -1.240580 0.366787 1.162481 1.396708 0.691017 0.245431 -0.951203 -0.612065 -0.087538 -1.582733 -1.135183 -1.032140 -0.697649 0.495218 2.687913 2.330588 -0.847604 1.434873 -0.684457 -0.270011 0.539505 -0.131924 0.854974 0.843170 0.089646 0.235028 2.440694 -1.040614 -0.545786 0.485815 1.271761 -0.437381 0.106646 -0.979612 -0.964154 -4.893732 0.263874 -2.947770 -0.969201 0.312320 0.454340 -1.101908 1.242325 1.986930 -0.005577 0.536709 -1.001939 -0.898390 -0.955752 0.217484 -0.049482 3.378493 -0.250719 0.061872 0.651065 0.990660 1.504766 1.348217 0.573877 -0.640220 -1.544569 -3.253668 -0.205685 -0.412373 -0.625748 -0.457883 -1.103129 -0.939823 2.262227 0.316607 -1.861553 -0.049354 1.412814 0.983473 -0.398329 -2.083742 -0.370096 0.750970 -0.691292 -0.381482 0.751700 -1.811560 -0.539080 -0.030348 0.438988 0.529162 -0.035653 -0.437166 -0.920280 -0.347191 0.138317 -0.161289 -0.168475 -0.369684 -0.763818 -1.211912 0.393176 -2.106947 1.467216 -1.517438 1.020785 0.066815 -0.636220 0.020445 1.312822 -0.340214 -0.839847 -0.013846 -1.037583 -0.211968 -0.415434 -2.760475 1.053189 0.406653 1.317422 -0.685488 -0.308185 -0.639002 -0.230472 -0.904349 -0.220836 -0.432524 0.317277 -0.161658 1.200073 -0.194712 -0.327096 -0.805417 0.589157 2.200126 0.565191 -0.036014 -1.122359 -0.296529 -0.698647 -1.390052 1.074375 0.054342 -0.725491 -0.424533 -0.101432 -1.779025 1.619279 -0.686806 1.230547 -0.264928 -1.120992 -1.401522 0.154980 -0.596210 0.732841 0.221916 -0.612286 -0.463339 -1.032837 0.286819 0.013389 -0.165953 0.976924 -1.855118 -1.754081 -0.647152 0.694072 1.491289 -0.518910 0.877059 -0.439974 0.166014 -0.678904 1.588239 -0.162150 -0.187355 -0.620517 -0.929965 2.350457 0.156899 -0.555043 -1.614273 0.754570 0.651652 1.310724 2.898458 1.351606 -0.867862 -1.069525 -0.439136 -0.548500 1.440092 1.957540 -1.223153 -1.266515 0.894129 -0.676026 -0.331252 -0.807001 0.785604 -0.394577 1.574079 -1.178064 -0.888616 -0.105595 1.546963 -0.235962 1.336947 0.162821 0.402780 -1.458741 1.661448 -0.018003 0.048682 -0.965028 -1.144678 1.083311 0.543322 0.789983 -0.314111 -0.943275 -1.238531 0.496280 2.149141 1.430464 3.829434 -0.587405 1.014418 -1.180206 -1.389016 -0.238634 0.363554 0.624851 -1.178693 0.191628 -0.544533 0.527533 0.336305 0.049015 0.969143 -0.541487 -1.461405 -0.518247 0.633393 0.517424 -1.436937 1.686745 -0.471480 -0.786626 0.068708 -0.166263 0.650764 0.546823 1.537236 -0.275469 -1.026090 0.721976 -0.278944 1.882753 -0.029775 -0.177989 1.010783 -PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = 3.427930 -0.562611 -2.648027 6.345619 0.330238 -1.580920 0.470911 1.175302 0.094008 -9.728784 -5.682833 5.604150 0.968666 0.649950 1.274549 2.430316 -0.389471 -0.099532 -7.832038 2.456943 3.003629 0.386079 -1.438016 -0.046020 0.640192 -2.919768 2.950377 1.546670 1.057858 5.674285 -2.562720 3.238544 4.912123 -0.638313 2.465013 4.059536 -1.142112 -0.175629 -2.217862 -0.298791 7.278763 3.392462 -0.046391 3.051310 0.361568 5.740526 0.859434 6.768269 1.323920 -4.061006 2.704893 2.211791 -3.414741 -0.634720 -3.693544 2.906347 3.775552 1.703580 -2.590592 1.611020 -2.220918 -0.562334 1.642122 0.392132 6.497066 3.203067 4.791122 4.527856 6.114295 -3.388231 -0.629218 3.074196 2.021611 0.198232 5.006932 -2.984766 -5.129043 0.027830 0.011359 -6.173707 -3.407541 -0.417715 9.004166 -5.772750 -0.883373 -0.055450 1.403940 5.863250 -3.187777 0.608983 -4.552764 -0.059589 -1.477638 7.667290 0.317814 0.914522 -1.128807 1.878792 1.544490 3.554414 0.121897 -4.111478 -2.798467 -7.464816 -2.711031 -2.492854 1.943717 3.079466 -7.132081 -0.789235 -1.111978 5.454648 -7.981580 -0.182324 4.335327 2.812630 6.474960 2.212254 -3.728512 0.545426 2.108471 0.477776 3.416193 -1.216402 0.646681 -2.057703 2.240311 -0.070058 1.779424 0.483830 -7.379057 -3.170586 -0.046211 -0.529962 0.394808 1.425503 3.480698 -3.480150 3.784001 -2.068687 4.086962 -7.650019 -0.978070 -3.071228 -3.870283 -1.550905 5.888575 5.961181 5.698855 -1.968308 -2.581997 -2.014503 -7.649232 -8.090622 0.211752 0.069952 0.652587 1.932150 -0.721566 2.985243 -2.663282 1.597201 3.292072 -2.647109 -1.367697 -0.967865 4.280451 -0.058935 -1.088506 -3.682248 -2.121954 -1.997193 -0.023494 5.258368 -0.779940 -9.908868 -8.973808 -4.262532 4.518300 -1.871051 0.617564 -3.490936 -1.350457 -4.277971 -0.439778 -4.695792 0.652782 0.142672 -4.029740 -5.782689 0.728212 -0.448156 -2.659371 -0.110032 -4.434786 -1.259565 4.616982 1.834346 2.406738 0.893739 -0.575607 -5.380160 -4.161234 1.795947 -3.348365 5.832900 3.666747 -1.090080 -4.023148 -2.042844 -6.580569 3.876155 -4.586227 1.740879 -0.748637 -1.211564 5.212375 -4.168982 -1.018992 -4.273492 1.715982 1.352184 -9.096317 6.753619 4.632797 -1.786797 -0.135297 0.650368 1.281049 3.417392 4.110835 -3.843201 -3.349421 0.188336 -0.869596 0.053998 0.191560 3.583411 -4.449976 0.524119 -3.684473 -2.448532 2.801176 3.565815 0.223887 0.719539 1.320142 -1.316793 2.511503 3.705229 4.194006 -0.807761 -3.883848 -11.340638 3.193416 -2.187391 -2.468229 0.348029 -3.187416 -3.424019 1.053936 -2.989469 5.499801 -1.308099 -1.496005 4.590381 -7.018964 -5.654621 -3.127795 -1.005747 -0.212173 -0.626706 1.376309 -1.586859 1.721960 1.443837 -0.606840 -1.491026 -3.606803 -0.067129 0.633068 4.298031 0.591202 1.349171 5.235622 2.177785 -2.421809 -1.500365 0.778672 -1.220172 -0.842418 -6.479309 -2.142386 -0.768112 1.372731 -2.397413 1.741946 -1.252943 -0.078413 1.237803 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.232994 0.360349 0.036930 0.458248 0.193952 -1.237871 0.506461 1.300107 -0.474838 -1.731269 -1.643297 -0.158296 -0.010071 -1.115465 0.781595 0.268090 -0.074699 0.600903 -2.187461 0.988861 0.849937 0.544775 -0.484312 -0.645098 0.233833 -0.348986 -2.283328 0.451691 -0.238113 1.098570 -0.639134 -0.031131 0.770053 0.132227 0.130416 1.075190 -0.271014 -0.122351 1.808228 0.573664 1.701521 0.699030 -0.004803 0.578006 1.125641 1.028250 -1.485383 1.920351 -1.434954 -0.490325 1.469935 -1.583508 -0.941114 0.553558 -0.679683 0.717031 2.088980 0.730074 -0.514230 1.049563 -1.042324 0.154767 0.397959 -0.947238 1.373974 1.904214 0.101989 0.411116 2.164509 -0.097039 -0.036974 0.438848 0.913809 -0.514554 -0.469802 -0.591316 0.136538 -2.135921 0.053010 -2.375455 -0.027079 -0.399237 3.053907 -1.129443 0.448192 1.287666 0.743557 0.963430 -0.868685 -0.303716 -0.548443 0.461448 -0.836729 1.927453 -0.448566 0.717112 -0.643378 0.297278 0.519908 0.734948 -1.037160 -0.147585 -2.648815 -2.810319 -1.121671 0.095612 -0.432139 -0.368912 -2.172601 -0.401802 1.686224 0.711004 -1.893046 -0.166851 0.903552 0.566446 -0.539855 1.932544 -2.376773 -0.366050 -0.426988 0.411076 -0.002351 -0.226326 -0.339194 -2.153399 -0.193147 0.157844 0.230785 -0.572756 -1.842569 -0.132052 -0.176845 -0.946661 -0.129802 0.144198 -0.005541 -0.758665 0.531917 -1.019166 0.651790 -2.322117 -0.277314 -0.991873 -1.722626 0.210528 1.671165 1.557276 0.428314 0.518594 -0.406164 -0.919576 -1.536169 -1.335195 0.137513 -0.978169 1.589731 -0.859943 0.105746 -0.718279 -0.015925 -0.531980 -0.142038 -0.749255 0.329292 -1.089649 3.387356 -0.457354 -0.449642 -1.486489 -0.296569 1.402395 -0.762590 -0.386164 -0.484124 0.128807 -1.237891 -1.106173 0.828441 0.035155 0.295347 -0.728595 0.771572 -1.412692 0.506715 -0.492267 0.097554 -0.054350 -0.880648 -1.092464 -0.109461 0.054638 -0.740695 -0.639538 -0.500760 -0.151148 1.450078 1.049715 0.407966 0.359397 -0.165768 -1.446187 -1.846743 -0.678675 0.230880 0.959101 1.838374 0.406954 -0.734270 0.061815 -1.690138 1.488670 -0.977156 -0.248596 -0.262654 -0.373825 1.832604 -0.618148 -0.774066 -1.635335 0.260169 -0.423574 -2.436414 1.620292 0.540686 -1.086828 -0.674340 -1.841905 0.386033 1.018675 1.756821 -0.181105 0.122819 0.397429 -0.501691 -0.346604 -0.744636 1.099191 -0.826326 1.419313 -0.872400 -0.454430 0.851460 1.377339 -0.364572 0.813524 -0.307345 0.848573 0.818565 0.869120 0.292038 -1.263599 -0.641881 -2.464539 0.265048 0.707948 0.003449 0.024536 -0.640226 -1.239565 -0.218162 0.388125 1.463669 1.246890 0.514173 0.693079 -0.709401 -1.261362 0.029286 1.198707 0.224934 -1.164162 0.145223 -0.369631 0.019465 0.877552 0.623581 1.282722 -1.749853 -2.709144 -0.542961 1.343876 0.401031 -0.946756 1.262714 0.157939 -0.430990 -0.062930 -0.198098 1.064309 0.131850 0.051267 -0.472342 -1.044038 0.030042 -0.572146 2.009716 0.237430 0.244974 1.098851 -PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 6.360943 2.816102 -5.953441 19.256320 -1.081412 -4.849133 0.339749 3.881930 -5.357152 -27.587110 -18.541382 10.034585 3.279930 3.601834 5.846456 5.361103 -2.254903 1.901234 -30.113756 6.444230 11.326058 3.874855 2.153814 -3.741725 3.494253 -5.766301 5.998483 3.967541 3.571366 16.287798 -7.675571 8.314196 13.633867 -1.689231 5.778416 10.092369 -4.527630 4.134483 -5.719271 -0.797222 19.645428 9.639422 -0.540690 7.397023 1.165037 16.171520 1.837194 9.278386 -0.210215 -12.216903 7.160306 7.435399 -8.093273 -3.245745 -8.297986 7.362940 15.558659 9.645508 -6.975019 5.495147 -4.106479 -1.567417 4.254529 -2.043578 16.857465 7.837602 13.501788 11.073285 16.007574 -9.959573 -1.785956 6.598233 3.643775 -2.143435 9.793689 -13.024512 -16.150177 -5.118217 -3.298174 -26.211803 -9.681263 1.435253 24.318274 -15.956424 -0.174593 1.956251 0.556535 14.784432 -7.761426 1.024637 -10.506554 -2.086536 -8.598010 22.507291 3.273796 -0.231649 0.968840 6.758990 7.389816 11.397239 -0.802755 -9.935023 -6.197945 -22.922139 -6.699318 -4.684026 9.897821 10.341130 -17.766476 -4.889773 -3.561749 12.164695 -23.603864 -0.950081 12.591371 11.494618 9.040031 -3.827826 -12.853749 2.433903 3.001535 1.672606 13.817847 -7.788026 1.828541 -1.901893 1.536412 -0.426706 5.156314 1.465152 -16.488377 -12.144302 -3.371109 -3.010365 1.273334 2.147616 8.692972 -5.708342 11.443928 -7.577789 13.394864 -22.733920 0.364478 -5.983327 -12.627505 -4.264758 7.479060 12.300703 9.029762 -8.091677 -7.778524 -3.699262 -20.140588 -18.145054 4.106381 5.138378 5.488311 5.847735 -2.705359 9.335233 -8.233815 3.301991 8.755395 -5.674557 -3.446984 -1.384244 16.215793 0.775720 -3.702649 -11.017100 -3.981915 -4.995754 -1.121323 13.958127 -2.306343 -18.958263 -24.685384 -11.154873 14.037642 -5.352878 0.674984 -9.246258 -1.452514 -13.862046 1.464073 -16.621780 1.807097 2.012633 -10.764771 -16.055601 1.052830 -1.827882 -3.887890 1.346933 -11.836723 -4.305210 14.834250 6.191684 6.545428 1.245797 2.746805 -15.465713 -11.583076 3.665906 -10.483131 11.194059 8.083636 -2.064510 -13.645920 -4.494582 -14.611821 9.949464 -1.971774 3.192047 -7.908516 -1.454392 15.244312 -9.951317 0.998479 -12.789647 2.279412 6.558716 -26.538113 17.942385 11.653022 -3.441594 -0.337521 2.656871 2.079477 8.316950 10.098128 -10.583698 -11.612212 0.165034 -5.914760 0.631143 -3.852481 10.207345 -11.763307 0.470582 -9.016589 -5.210526 8.082656 7.905121 1.908424 7.602027 5.884537 -2.868885 5.595758 11.306099 11.365686 -4.733203 -11.236056 -28.419685 10.003969 -2.879089 -4.021076 -2.929773 -4.362382 -11.351129 4.639241 0.152829 14.422454 6.379385 -7.370803 12.912296 -17.008780 -14.844291 -10.194892 0.104043 0.811671 -2.862783 -2.227528 -5.983162 6.509478 7.028693 -3.426696 0.630507 -10.397892 -3.161837 -0.306350 15.560146 2.325492 3.877707 16.641770 5.583384 -8.905835 -3.215179 2.529997 -3.343397 -2.067850 -13.979775 -6.706846 -1.952242 3.998405 -6.236068 2.456550 -4.014925 -2.464622 5.649691 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = 0.645217 0.247993 -1.019086 2.871434 -0.123912 -0.730666 0.072945 0.033219 -0.616848 -4.092151 -2.310097 1.298198 0.611630 0.507817 0.507446 0.889633 -0.408953 0.719497 -3.542239 0.788105 1.695199 0.817357 0.317357 -0.594491 0.413683 -0.832474 1.007858 0.303174 0.675899 2.491746 -1.173514 1.168480 2.093213 -0.500621 0.416119 1.641976 -0.117377 0.852648 -0.873392 0.088374 2.762401 0.921473 0.180470 1.049611 0.016855 2.311971 0.422497 1.595889 -0.231420 -1.869142 1.008731 1.525891 -0.873426 -0.694127 -1.174823 1.301606 2.509128 1.738679 -1.051068 0.729254 -0.236238 -0.097179 0.722280 0.001320 2.162815 1.391627 1.615675 1.725263 2.554687 -1.465742 -0.150121 0.824616 0.402473 -0.510683 2.221023 -1.791263 -2.454556 -0.209289 -0.826857 -3.301217 -1.009884 0.511198 3.506892 -2.507347 -0.097193 0.446004 0.453155 2.274346 -0.834434 0.106725 -1.485364 -0.156376 -1.447377 3.692129 0.664596 0.083383 -0.416417 1.027815 0.921884 1.413506 0.045306 -1.575987 -0.733585 -3.438625 -1.486214 -1.122011 1.232842 1.643701 -3.074999 -0.853542 -0.483224 1.763830 -3.838740 0.173271 1.729472 1.870247 1.767411 -1.014187 -1.872758 0.608252 0.253777 -0.128620 1.515692 -1.004078 0.067290 -0.282735 0.131424 -0.126277 0.454400 0.011483 -2.356975 -1.600923 -0.847429 -0.428363 0.323122 0.531861 1.507974 -1.222799 1.571873 -1.234884 1.726524 -3.357686 -0.161680 -0.642189 -2.308838 -0.788369 0.755513 1.056179 1.490879 -1.688726 -1.573941 -0.863932 -3.101799 -3.017323 0.496754 0.541197 0.639795 1.235812 -0.486157 1.206916 -1.313416 0.467103 1.630780 -0.812505 -0.443533 -0.075972 2.688812 -0.210214 -0.492440 -1.704940 -0.833630 -0.743683 0.186896 2.165703 -0.428927 -2.357914 -3.832577 -1.581589 2.072182 -0.875835 0.238895 -1.457721 -0.470951 -2.337451 0.327534 -2.343984 0.119215 0.182593 -1.301705 -2.480471 0.240170 -0.307140 -0.784428 0.295539 -2.046323 -0.441565 1.808287 0.359368 0.971046 -0.076581 0.384551 -2.519164 -1.724555 0.655577 -1.596589 1.344868 1.223961 -0.060352 -1.769699 -0.802149 -2.184111 1.118228 -0.568477 0.539939 -0.687690 0.094345 2.216893 -1.615671 0.151847 -1.920696 0.268797 0.811711 -3.279718 3.051787 1.475240 -0.522110 0.214668 0.712625 0.368487 1.055815 1.245518 -1.811250 -1.805655 0.276277 -0.987046 0.099200 -0.711020 1.367419 -1.864277 0.362962 -1.233769 -0.574419 0.919137 1.390100 0.041508 0.928749 0.898069 -0.982254 0.556515 1.585497 1.758320 -0.415984 -1.533457 -3.764385 1.462609 -1.780621 -0.505358 -0.464690 -0.561263 -1.203338 1.130850 0.365984 2.166423 0.706445 -0.898610 1.944892 -2.984094 -2.272210 -1.071490 -0.263629 0.433558 -0.482752 -0.325791 -1.009553 0.871105 0.880588 -0.342718 -0.151748 -1.575765 0.055455 0.185774 2.462127 0.061243 0.479725 2.483456 0.670454 -1.217637 -0.223422 0.235315 -0.261322 -0.543453 -1.815344 -0.750988 -0.048359 0.673648 -1.097054 0.762451 -1.195332 -0.515805 0.913795 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = 2.699169 0.900824 -1.590939 5.082931 -0.538668 -1.452367 0.226125 1.887682 -1.420792 -9.363370 -6.810619 2.777678 0.870649 0.852129 2.227470 2.065646 -0.294830 0.717952 -10.271534 2.300085 4.223426 1.509537 0.936890 -0.472919 1.505300 -2.275073 -0.268429 0.486429 1.182247 5.459743 -2.741654 3.004139 4.647509 -0.491980 1.595115 3.626827 -2.534665 0.482866 0.027016 -0.326989 6.498406 3.074020 0.237949 2.150104 0.502454 5.160049 -0.803829 4.373820 0.230417 -4.270703 3.248122 -0.319795 -3.215270 0.286066 -2.603532 2.377644 4.689301 3.045070 -2.054803 1.673824 -1.871652 0.006990 1.242284 -1.872037 5.609356 3.338788 3.846637 3.381381 5.220266 -2.665185 0.001658 2.032799 0.785248 -0.504968 2.261773 -3.861767 -3.353699 -2.499261 -0.789299 -8.902320 -2.831917 -0.242164 9.410395 -5.324088 0.281996 0.997147 0.408566 5.203256 -2.239397 0.599360 -3.521482 -0.031059 -2.090736 5.772381 0.251982 0.111483 -0.521697 1.755350 1.674020 3.125719 -0.772868 -2.785345 -4.262713 -7.850672 -2.175210 -1.605762 3.082770 3.406986 -6.749168 -0.789184 -0.275410 4.238807 -7.895142 -0.072914 3.688446 3.615436 1.779713 2.189873 -5.220118 -0.448365 0.724366 1.426493 3.678186 -2.283524 0.663195 -2.864654 0.302496 0.112601 1.759672 -0.018260 -5.550563 -3.848925 -0.822065 -1.421459 0.134188 1.640124 3.431396 -1.326643 3.736284 -2.480678 3.843336 -7.526783 -0.442933 -2.496785 -4.073124 -1.409008 4.845060 6.065383 2.729540 -1.491185 -2.302202 -1.774102 -6.859612 -4.897951 0.528656 0.260557 2.966134 1.619228 -0.549514 2.644488 -2.244042 1.226320 0.934586 -1.970372 -0.660763 -1.105656 5.476046 -0.073381 -1.225905 -4.358669 -1.512038 -0.710168 -2.325535 3.578878 -0.786662 -4.976902 -8.127218 -3.922620 4.585683 -1.792916 0.999239 -3.366786 0.643235 -3.882521 0.143605 -4.767396 -0.471217 0.706542 -3.865234 -5.358289 0.314494 -0.485346 -2.304225 0.147855 -3.532351 -1.319066 5.556855 3.235301 2.533947 0.564102 -0.029097 -5.017145 -4.071691 0.446154 -3.680281 3.973974 4.003016 -1.288134 -4.915635 -1.622785 -5.060788 4.103103 -1.535000 1.058976 -2.585476 -0.604573 4.911403 -3.240924 0.203523 -4.394141 0.856530 1.510795 -11.432460 5.423392 3.538506 -1.657424 -0.040407 -1.166848 1.358634 3.003924 3.292568 -2.330843 -2.619944 -0.133933 -2.249072 0.210370 -1.523835 3.588147 -4.099141 0.501000 -2.844744 -1.485179 3.357264 2.572318 0.298660 2.398571 2.038922 0.514961 3.484526 3.283610 3.451150 -2.627843 -3.468786 -10.495490 3.056562 1.999535 -0.999916 -0.378322 -2.037004 -3.641296 1.050211 -0.915314 4.890493 2.172317 -0.838831 4.031751 -5.037025 -4.664310 -2.909321 0.708761 -0.000431 -0.820536 -0.563365 -1.522615 1.712342 2.730582 -0.324644 1.047757 -4.435088 -3.129949 0.122750 5.530538 1.369549 1.119191 5.167895 1.951857 -2.718810 -0.979525 0.757165 -0.387965 -1.121269 -3.993956 -1.998698 -0.548636 0.805037 -2.411865 1.595544 -0.992946 -0.576410 1.533814 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 6.745838 -0.809925 3.978360 4.721977 2.821027 -5.678216 0.168915 8.586235 -3.096760 -9.681957 -9.464649 1.557072 -2.302008 -0.324939 6.834396 -1.389442 -0.305021 -0.881571 -19.053708 6.219294 2.196049 2.380419 0.372566 -5.483158 3.775114 0.987128 -1.460350 5.166388 0.783892 4.338720 -7.132031 -1.021584 2.676477 2.888849 5.804240 1.370410 -0.046132 -1.944015 0.230961 -2.796530 12.129135 5.281837 -1.454094 6.661851 6.206655 4.537116 -1.333304 4.983058 1.654043 -3.181950 3.922497 -8.346155 -5.113289 1.401624 -5.716297 5.526790 9.447023 3.762452 -4.773529 3.731192 -0.909773 -0.373066 1.288650 -6.768619 8.551592 2.966241 5.537712 1.276359 8.991498 -3.771779 -2.043211 4.453672 9.390674 1.661674 -4.244924 -7.583996 -0.508121 -17.669332 2.893196 -15.680421 -3.238435 -3.243300 7.389107 -4.722062 4.753160 5.750610 -3.858502 4.254246 -6.493586 0.513867 -4.115305 0.411696 -1.461568 8.112239 -2.771787 -1.069737 5.591305 2.889846 4.900894 9.361981 -1.525411 0.081899 -5.747367 -15.173579 -1.815547 5.654633 1.226590 -2.242162 -4.962298 -0.085763 5.008556 3.817347 -4.555878 -5.134027 5.134635 3.309059 -7.283903 -1.093495 -4.794216 -3.578948 -1.429707 3.939686 4.541919 -5.495579 1.666384 -4.910704 0.397048 2.623590 6.751073 0.358606 -1.961241 -6.036309 -0.363653 0.213485 -3.819132 -4.016156 -1.166383 -2.295221 5.216128 -2.693031 5.179075 -8.271648 1.768171 -4.774114 -0.041243 2.094017 8.913706 3.634841 0.272118 6.163727 -1.779049 -1.406213 -3.633888 -7.149734 4.964712 3.214965 5.509373 -1.515157 0.632766 2.108956 0.296169 -7.044837 -0.243387 -5.134563 -2.977951 -6.687318 3.737315 -1.104780 -1.024030 -7.111157 5.428396 8.035754 -5.980651 -0.364728 -1.814998 -4.554979 -3.387685 -6.871584 4.550005 0.591953 -0.452402 -0.023017 4.474808 -5.862342 4.216921 -6.541933 2.910661 -0.269368 -9.487646 -4.883716 -2.264309 -0.850431 1.811179 -1.143953 -3.000585 -0.536726 1.826828 9.193255 0.056429 3.433695 3.646672 -10.017733 -11.854813 -5.207403 2.457308 6.655904 -0.014061 0.000319 -6.581883 -1.540531 -2.815852 8.719964 -4.353543 -0.900288 -5.334754 -3.109327 7.971066 -1.745226 -3.023544 -6.077102 2.117937 4.024455 -9.683717 8.934708 4.415687 -4.452412 -5.087914 -8.679289 1.464252 5.810371 12.982631 -3.076525 -0.658444 0.739740 0.672264 -1.739925 -5.846721 7.925451 -1.104958 2.131389 -5.352708 -7.770143 1.092209 4.714578 2.498616 6.255161 2.778033 7.622763 -1.055854 9.981209 0.728601 -3.415521 -4.583882 -12.747332 3.205960 15.124999 1.341894 1.725379 -6.785884 -10.043151 -3.098372 3.919834 6.547800 11.141813 3.841765 4.166897 -2.399100 -4.964189 -1.947887 4.466733 -2.012765 -4.465912 0.575828 -3.616267 0.316860 2.846778 -1.117159 2.290836 -0.647892 -13.680308 -6.438347 2.278655 3.927239 -0.169327 6.969123 4.486866 -6.560573 0.112578 0.013854 2.040395 1.044358 1.018591 -4.406302 -5.442416 -1.710623 -1.965800 3.973498 3.505617 0.776131 0.707879 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/aho-corasick-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/aho-corasick-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.320528 0.065144 0.219541 0.157185 0.304598 -0.305961 0.131753 0.283069 -0.090789 -0.622883 -0.422062 -0.075501 -0.095917 -0.297101 0.220597 0.071167 0.156174 0.326099 -0.429129 0.272925 0.209120 0.250428 0.001288 -0.255423 0.127707 -0.113174 -0.509290 0.085622 0.043354 0.342171 -0.357119 -0.052633 0.247502 0.127027 0.137597 0.331302 0.228864 -0.119696 0.378752 0.043477 0.716574 0.035489 0.140605 0.339532 0.436802 0.341130 -0.312078 0.500791 -0.104674 -0.131282 0.296256 -0.609657 -0.206838 0.160274 -0.400485 0.403700 0.496327 0.266554 -0.296846 0.281907 -0.058696 0.108554 0.089172 -0.426704 0.333049 0.462103 -0.104264 0.148610 0.755252 -0.107379 -0.102756 0.187617 0.473740 0.063058 0.001070 -0.192282 0.161478 -0.822267 -0.118649 -0.546635 0.199849 -0.191477 0.874257 -0.364499 0.231132 0.585174 0.059079 0.260283 -0.108315 -0.172962 -0.322194 0.232448 -0.119742 0.417345 -0.086896 0.125879 -0.221314 0.059620 0.095642 0.290043 -0.139023 -0.088561 -0.730654 -0.977048 -0.435470 -0.033431 -0.108096 -0.247232 -0.622625 -0.049984 0.525672 0.419758 -0.587474 -0.088354 0.231950 0.173353 -0.392977 0.179515 -0.523653 -0.195546 -0.131697 0.127596 -0.202919 -0.150196 -0.189704 -0.613576 -0.146810 -0.013781 0.217707 -0.283517 -0.195569 -0.147947 -0.191460 -0.058408 -0.121995 -0.094712 -0.034792 -0.389922 0.198526 -0.239170 0.176971 -0.502025 -0.110081 -0.307634 -0.451743 0.000220 0.828500 0.113213 0.283571 0.276016 -0.202011 -0.397456 -0.356559 -0.415199 0.171247 -0.364839 0.468167 -0.008683 0.032610 -0.197122 -0.026996 -0.361676 -0.027221 -0.310713 0.041092 -0.332082 0.604607 -0.355992 -0.097122 -0.661092 0.038369 0.722395 -0.236119 -0.244178 -0.261174 0.153761 -0.248564 -0.456682 0.247788 -0.084457 0.236509 -0.121809 0.274211 -0.338580 0.229787 -0.222487 0.055646 -0.102833 -0.384026 -0.387890 -0.025251 -0.125421 -0.183650 -0.039716 -0.221895 0.137428 0.131363 0.281675 0.040215 0.064652 -0.077672 -0.638779 -0.671383 -0.341931 0.142987 0.205731 0.370735 0.178969 -0.374033 -0.127182 -0.384258 0.448092 -0.486715 -0.085324 0.057028 -0.114495 0.479330 -0.189496 -0.137555 -0.508120 0.146944 -0.037971 -0.759773 0.456678 0.160014 -0.454075 -0.298404 -0.664430 0.167888 0.272359 0.718599 -0.091822 0.111209 0.236028 -0.124934 -0.121410 -0.427311 0.371748 -0.127767 0.546347 -0.447127 -0.309572 0.158477 0.514122 -0.158466 0.217533 0.113328 0.374862 0.105835 0.469955 0.125182 -0.126534 -0.275827 -0.642514 0.050527 0.451520 0.215522 0.200779 -0.277799 -0.305639 -0.032353 0.160048 0.512496 0.365557 0.397563 0.303615 -0.215170 -0.385668 0.269436 0.191330 0.161955 -0.458734 0.187627 -0.254003 -0.141720 0.061845 0.219460 0.263231 -0.323252 -0.735919 -0.135303 0.406608 0.263485 -0.163615 0.404360 0.098167 -0.260325 0.182876 -0.054846 0.475385 0.030687 -0.008560 -0.158647 -0.305338 -0.091594 -0.194449 0.697288 -0.086439 0.082845 0.210570 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 1.402161 0.654048 0.472796 1.268315 0.120697 -2.537921 0.739334 2.120088 -1.331508 -2.270479 -1.323770 0.026574 -0.114782 -1.404591 0.635663 -0.087599 -0.785822 0.568316 -4.925450 1.814579 1.222439 0.967316 -0.418817 -2.292889 0.427894 -0.057410 -1.249229 1.687252 -0.417093 1.680022 -1.348074 -0.541245 0.867797 0.863354 1.300767 1.378606 0.134068 0.046676 1.191658 0.798542 2.416398 2.306778 -1.652754 0.213961 1.790032 1.681358 0.245335 -0.626124 -3.186733 -0.513670 -0.632911 -0.185331 -1.509226 -0.403895 -0.829314 0.575911 3.139482 2.211947 -0.858451 1.538755 -1.587506 -0.321728 0.832921 -0.001497 2.357685 0.941532 0.744649 0.669317 3.086775 -0.773948 -0.219647 0.321078 1.940372 -1.422240 -0.236945 -0.193189 -1.574730 -4.856311 0.335416 -5.421303 -1.130861 0.806304 2.133983 -1.479529 1.522671 1.637986 0.826700 1.175354 -2.269731 -0.921603 -1.032162 0.072481 -1.627102 4.711355 -0.257594 0.558939 0.519895 1.642593 2.042762 1.688954 -0.650803 -0.791554 -1.359951 -4.290474 -0.185222 0.249130 -1.069321 -0.610734 -1.772444 -1.211933 3.009190 2.305843 -2.536307 -0.324720 1.489864 0.634148 -0.727762 -1.975565 -1.624096 1.312813 -1.584088 -0.076338 1.227195 -1.428545 -0.512963 -0.018892 0.341350 0.525527 0.731695 0.275359 -2.837796 -0.237483 0.595018 -1.594221 -0.503678 -0.215127 -0.867262 -1.228452 0.559130 -2.492968 1.889959 -2.429705 1.687458 -0.667113 -1.667896 0.694979 -0.470956 1.508448 -1.588070 0.045229 -0.127159 0.035158 -1.638912 -3.415367 1.627098 0.573731 1.189964 -1.675952 -0.135026 -0.718964 -0.457151 -1.116214 1.148676 -1.259520 -0.069747 -1.263973 4.325288 0.269861 -0.713147 -0.689917 0.133277 2.130862 0.708036 0.181825 -1.405949 -0.541165 -2.088898 -1.670982 1.411232 0.186846 -1.062171 -0.897429 0.409918 -2.216626 1.931149 -1.057890 1.896468 -0.376024 -0.584266 -1.626923 -0.584296 -0.232899 -0.249027 -0.990794 -0.546807 -0.536318 0.600078 -0.500420 -0.194325 0.030923 1.480024 -1.410609 -2.145399 0.098485 1.153657 1.456728 0.772948 0.937096 -1.637674 0.375654 -1.744567 2.519474 0.283861 -0.063575 -1.104608 -1.162746 3.336810 -0.354282 -1.327930 -1.209091 0.930050 0.191159 0.254571 3.783206 1.922950 -1.273777 -1.057049 -1.106399 0.101834 1.829931 2.874896 -1.625115 -1.031220 0.565706 -0.777726 -0.621616 -0.416826 1.511557 -1.073921 1.840897 -1.282473 -1.011930 0.381649 1.623897 0.175422 1.757960 -0.893748 -0.070977 -1.014597 1.922873 0.448079 -0.361137 -1.526899 -1.471997 0.849305 -1.237294 0.668264 -0.867234 -0.007300 -2.393302 -0.431247 1.475073 2.145282 3.284757 -2.165607 1.085179 -1.924161 -1.882902 -0.991526 1.370241 0.097863 -1.695568 0.487478 -0.760251 0.438185 1.050213 0.503271 1.342183 -1.254220 -2.278237 -1.046252 0.861800 0.901815 -2.307867 2.104093 0.052583 -0.989089 -0.439472 0.000000 0.669055 0.398394 0.515598 -1.044458 -1.712962 0.925900 -0.503006 2.383445 0.700587 0.269202 1.526761 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 1.244748 0.648060 0.586336 0.852435 0.013535 -2.774914 1.231292 2.343165 -1.237929 -2.061325 -0.935557 -1.094150 0.080275 -1.992061 0.408826 -0.052417 -1.143795 1.096876 -4.737330 1.726158 1.659454 1.357758 -0.356073 -2.583886 0.240333 -0.496781 -2.209553 1.940687 -0.735340 1.801847 -0.877382 -0.973786 1.080928 0.722858 0.616813 2.077704 0.565320 0.275174 2.116352 1.758941 2.160934 2.456191 -2.068046 -0.385426 1.823234 1.789050 0.165850 -1.022181 -4.964451 -0.653445 -0.855335 -0.464091 -1.635011 -0.874181 -0.481576 0.396321 3.815010 2.967378 -0.824940 2.018759 -2.098845 -0.471616 1.006035 0.344871 2.014171 1.294057 0.396153 0.559871 3.606407 -0.641848 -0.195838 0.265726 1.280531 -2.198263 0.113990 0.195477 -1.646226 -5.647357 0.488957 -5.594214 -1.329927 1.268931 2.007892 -1.543330 1.554179 2.344489 1.674243 1.281413 -2.264785 -1.481091 -0.775717 0.200235 -1.814544 5.809049 -0.161617 0.878205 0.176901 1.932542 2.356101 1.463032 -0.568777 -0.709021 -2.116638 -4.457319 -0.292092 -0.329036 -1.430055 -0.606789 -2.086338 -1.730840 4.031435 1.869106 -3.021661 0.372327 1.910957 1.026007 -0.331148 -2.383015 -1.899886 1.784853 -1.843878 -0.675112 0.878369 -1.640009 -0.829479 0.079072 0.721872 0.528552 -0.118222 -0.208296 -3.493711 0.263559 0.677214 -2.202648 -0.120667 0.244018 -0.842001 -1.710975 0.329401 -3.406528 1.947907 -2.798146 2.152592 -0.198256 -2.350781 0.501634 -0.981616 1.261712 -2.370094 -0.530662 -0.587647 -0.068918 -1.670377 -3.987708 1.364244 0.412835 1.583555 -2.084327 -0.341809 -1.485234 -0.433783 -0.784417 0.969156 -0.893967 0.588051 -0.820601 5.756911 0.350531 -0.823072 -0.520908 -0.258536 2.367625 1.348109 0.027091 -1.527403 0.585629 -2.063554 -1.708905 1.428524 0.415883 -1.350623 -1.405552 -0.017001 -2.774735 2.385928 -0.715046 2.160192 -0.429321 -0.154811 -1.687120 -0.374080 -0.164744 -0.516798 -1.074907 -0.529983 -0.807914 0.347897 -1.476756 -0.111634 -0.543667 1.485689 -1.205126 -1.995822 0.249229 1.233174 1.363235 1.055772 1.335147 -0.927430 0.841499 -1.853414 2.504021 0.925686 -0.206348 -1.006415 -1.312576 3.826875 -0.220676 -1.632256 -1.632401 0.862729 -0.377019 1.976053 4.389648 1.925104 -1.242523 -1.108231 -0.704942 -0.326753 2.029026 2.508681 -1.614576 -1.297019 0.778741 -1.220796 -0.631183 -0.163791 1.227013 -1.386852 2.565031 -1.171989 -0.630443 0.376548 2.222848 -0.364414 2.193241 -1.246300 -0.389557 -1.302048 1.517983 0.283641 -0.585516 -1.385301 -0.683363 0.951748 -2.923370 0.629290 -1.639531 0.403379 -2.157644 0.034160 2.407019 2.229813 4.486615 -2.627820 0.991514 -2.127267 -2.202295 -0.887508 1.589412 0.497108 -1.920016 0.132851 -0.502649 0.768110 1.118025 0.675788 1.901698 -2.067064 -2.322745 -0.960544 1.119529 0.617207 -3.244742 2.355070 -0.563655 -0.428604 -0.548069 -0.227011 1.045451 0.764636 1.637282 -0.891862 -1.862038 1.217796 -0.471481 3.154698 0.421323 0.131041 2.378510 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 2.139789 -0.855235 -0.646204 3.278798 0.712687 -0.430969 0.250467 1.132441 0.255864 -5.592262 -3.078235 3.461082 0.230332 0.821597 0.642125 0.994983 0.573861 0.400371 -4.539974 1.246410 1.353938 0.679581 0.141669 -0.221992 0.640561 -1.472679 1.877710 0.557576 1.161725 3.075996 -1.735228 1.159293 2.700757 -0.329532 1.244807 2.380002 0.766052 -0.121192 -1.764121 -1.210027 4.427347 1.756606 0.152733 2.532732 0.426042 3.223882 0.395771 4.112918 2.061137 -2.312885 1.382778 -0.717719 -2.121740 -0.471815 -2.543847 2.042167 1.565705 1.110435 -1.715863 0.993638 -0.371189 -0.135697 0.686299 -0.713713 2.702074 1.273442 2.125796 2.114906 3.489475 -2.465165 -0.838175 2.413865 1.766189 1.722145 2.651495 -2.244726 -2.599629 -1.159001 -0.385128 -2.841798 -1.725702 -1.093980 5.077976 -3.218345 0.045199 1.007335 -0.454148 2.742880 -1.174633 0.544528 -2.917424 0.046681 0.077812 3.139939 0.418188 0.155538 -0.291294 0.692759 0.683103 2.382603 0.649960 -2.379279 -1.711694 -4.185747 -1.083680 -1.552937 1.344874 1.532886 -3.583376 -0.219144 -0.752759 3.938329 -4.129886 -0.265096 2.089233 1.474945 3.253598 1.063206 -1.293184 -0.155628 1.362244 0.148152 1.753160 -1.949417 0.040349 -0.517962 0.776629 -0.132124 1.076801 0.060850 -2.941381 -2.306590 -0.064444 0.675061 0.170376 0.135870 1.621278 -2.438536 2.157348 -0.897169 2.109711 -3.410043 -1.256689 -1.009745 -2.202103 -1.190592 5.689455 2.043382 3.822394 -0.369413 -1.540038 -1.611307 -3.235008 -4.154116 0.708135 0.039402 0.893985 1.772874 -0.178137 1.806936 -1.525598 0.110689 0.443084 -1.326832 -0.623080 0.104892 0.389140 -0.803167 -0.040769 -2.831933 -0.441055 0.014631 -0.058749 2.374980 -0.716534 -5.799154 -3.901239 -2.473995 2.600416 -1.300304 0.726458 -1.126060 -0.595098 -1.700987 -0.211660 -2.741453 0.436275 -0.082074 -3.064065 -3.372018 0.721636 -0.866298 -0.608421 0.966430 -2.330932 -0.166237 1.382481 1.917190 1.044339 0.537189 -0.270736 -4.049825 -2.718556 0.062176 -1.888364 3.818067 0.975487 -0.691241 -2.395891 -1.566063 -2.925020 2.482778 -3.468236 0.727563 -0.729520 -0.550596 2.621088 -1.853912 -0.006876 -3.168145 1.417958 1.630262 -5.366325 3.321783 2.695600 -1.356040 -0.492359 -0.027894 0.364698 2.111401 2.825933 -1.992008 -2.070177 0.786422 -0.478402 0.004249 -1.129089 1.948112 -1.645668 0.618299 -2.430365 -1.709228 1.152539 1.746679 0.026637 0.348636 1.794632 0.277296 0.966809 2.958343 2.242275 -0.104802 -2.927501 -6.640006 2.158254 1.912797 -0.802549 0.847243 -2.657183 -1.721066 1.174717 -1.442427 2.856905 0.030161 0.356196 2.746410 -3.619215 -2.882670 -0.870977 -0.889181 0.252323 -0.245724 1.370652 -1.453369 0.790829 0.303443 -0.549446 -1.055184 -1.151937 -0.181910 0.476402 2.402188 1.270282 1.398211 3.082910 1.256485 -1.917223 -0.011979 0.445344 -0.278225 -0.826175 -3.381449 -0.868654 -0.268028 0.455862 -1.293317 0.956905 -0.403697 -0.406505 0.216892 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.518359 0.025989 0.129397 0.289001 0.058395 -0.441800 0.223337 0.647127 -0.147331 -1.126424 -0.966590 -0.369127 -0.034923 -0.337631 0.567604 0.140352 0.028011 0.362296 -1.357853 0.416996 0.600350 0.369268 0.089675 -0.214096 0.212815 -0.211331 -1.245262 0.116914 0.032425 0.698006 -0.465026 0.083574 0.528166 0.041811 0.000246 0.538472 -0.071432 -0.063805 0.829950 0.291936 0.963509 0.263539 -0.022702 0.291728 0.428927 0.616922 -0.752735 1.039456 -0.385604 -0.411813 0.868035 -1.274699 -0.449353 0.347739 -0.351281 0.459191 1.148911 0.631855 -0.284731 0.511484 -0.483267 0.150292 0.164613 -0.754660 0.692904 0.966845 0.115466 0.247160 1.032465 -0.153084 0.014951 0.153677 0.352489 -0.215516 -0.287589 -0.480403 0.254319 -1.667037 -0.026146 -1.272806 -0.061376 -0.226889 1.434911 -0.721974 0.317851 0.818969 0.135260 0.578171 -0.343223 -0.023359 -0.411085 0.232115 -0.168317 0.781860 -0.187824 0.125484 -0.285196 0.174028 0.253660 0.363247 -0.311020 -0.062018 -1.587398 -1.554685 -0.672251 0.043891 -0.002384 -0.021084 -1.215497 -0.099081 0.978291 0.233507 -1.095109 -0.034976 0.482282 0.515101 -0.499004 0.874913 -1.181930 -0.290315 -0.177729 0.311113 0.105294 -0.325222 -0.068100 -1.299901 -0.140959 0.133820 0.205447 -0.366832 -0.559139 -0.268433 -0.183901 -0.313202 -0.093779 0.122666 0.150873 -0.293240 0.418931 -0.517722 0.398565 -1.173564 -0.130592 -0.464592 -0.711644 0.009550 1.380527 0.757608 0.177202 0.349478 -0.498703 -0.496851 -0.766112 -0.632169 0.039189 -0.379013 0.981978 -0.182750 0.000432 -0.173604 0.011417 -0.205378 -0.324144 -0.403606 0.123966 -0.462169 1.221661 -0.304165 -0.232387 -0.989502 -0.048449 0.871389 -0.722655 -0.166002 -0.232140 0.321640 -0.656194 -0.660999 0.531270 -0.085882 0.314996 -0.382461 0.517216 -0.818944 0.319966 -0.383611 -0.108950 0.073483 -0.712165 -0.697834 -0.003539 -0.048252 -0.302496 -0.111076 -0.354170 -0.064649 0.588423 0.789543 0.303451 0.163946 -0.059943 -0.946317 -1.074439 -0.548350 -0.141621 0.529253 0.740699 0.077875 -0.488313 -0.094806 -0.739646 0.877280 -0.525097 -0.096641 -0.292929 -0.167753 0.854500 -0.306755 -0.347052 -0.977631 0.134666 -0.037350 -1.404330 0.813718 0.258872 -0.521411 -0.281688 -1.045780 0.270065 0.540973 0.916857 -0.070268 0.060430 0.156329 -0.284367 -0.113229 -0.581734 0.636492 -0.471331 0.562177 -0.465035 -0.242991 0.434576 0.698613 -0.140030 0.531550 0.206692 0.659792 0.413514 0.485421 0.170601 -0.736318 -0.285712 -1.348047 0.248466 1.040814 0.125426 0.111079 -0.598317 -0.542414 -0.065677 0.372143 0.759179 1.020140 0.556996 0.471886 -0.335875 -0.639611 0.045587 0.549994 0.100850 -0.586348 0.021713 -0.177526 0.040809 0.525195 0.244304 0.694961 -0.871526 -1.547795 -0.257209 0.800016 0.233228 -0.266792 0.706056 0.143154 -0.418241 0.052380 -0.101598 0.476238 -0.006939 0.235184 -0.209830 -0.366447 -0.057132 -0.382545 0.891917 -0.047996 -0.063891 0.421764 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = 0.791267 -0.041399 -0.286681 1.717962 0.194730 -0.253743 0.073550 0.400847 -0.170546 -2.897934 -1.896307 1.065023 0.162480 0.338798 0.560033 0.553840 0.183014 0.340096 -2.726008 0.595605 1.030688 0.414143 0.345808 -0.209520 0.383908 -0.762609 0.539882 0.231009 0.481506 1.632631 -0.928072 0.826936 1.403355 -0.041623 0.653564 1.154736 -0.266073 0.055599 -0.498914 -0.373896 2.199810 0.797945 0.165533 0.988006 0.199446 1.636038 0.089600 1.333536 0.636137 -1.194919 0.763732 -0.065959 -0.880013 -0.081423 -1.164536 0.922375 1.156076 0.735380 -0.785900 0.515256 -0.283095 0.038370 0.360551 -0.587037 1.586863 0.688762 1.115981 1.084393 1.654237 -1.081342 -0.184422 0.845873 0.618408 0.292793 1.031767 -1.164622 -1.185649 -0.715464 -0.389141 -2.168805 -0.638796 -0.202338 2.593260 -1.572999 0.031983 0.427458 -0.180119 1.512464 -0.522172 0.132278 -1.330760 0.060156 -0.387750 1.584567 0.284510 -0.029848 -0.116282 0.487784 0.395236 1.072956 0.051366 -1.070982 -0.907564 -2.519501 -0.700274 -0.682194 0.951170 0.817439 -1.942642 -0.119661 -0.258222 1.707637 -2.287529 -0.112074 1.052076 0.979871 0.587861 -0.136020 -1.025623 -0.162939 0.384218 0.379386 0.977153 -0.883747 0.112369 -0.584593 0.149630 -0.044001 0.693484 -0.036313 -1.151612 -1.282911 -0.284475 0.066501 0.024597 0.281693 0.966551 -0.708054 1.137307 -0.611891 1.205432 -1.954645 -0.183077 -0.754471 -1.112178 -0.551218 1.946466 1.206123 1.317709 -0.341248 -0.718457 -0.599938 -1.857605 -1.806586 0.357590 0.109447 0.681932 0.794576 -0.164163 0.899571 -0.788742 0.185319 0.390221 -0.714648 -0.319400 -0.159577 0.819098 -0.234551 -0.290047 -1.396501 -0.263540 0.014517 -0.445527 1.144690 -0.336026 -1.887843 -2.212200 -1.301340 1.376144 -0.695369 0.376192 -0.806455 -0.001205 -1.025535 0.130011 -1.513158 0.014188 0.092108 -1.352108 -1.712167 0.109912 -0.356955 -0.387401 0.346640 -1.209522 -0.133986 1.238910 0.860043 0.619954 0.269886 -0.010369 -1.764714 -1.283072 0.029446 -1.022418 1.322331 0.807539 -0.338854 -1.536914 -0.734889 -1.367359 1.191128 -0.859386 0.365026 -0.570686 -0.272827 1.311236 -0.985731 0.165004 -1.374906 0.415242 0.655620 -3.207314 1.575697 1.180673 -0.654702 -0.167067 -0.276065 0.388805 0.817529 1.290790 -0.891438 -0.815368 0.180570 -0.510032 0.040902 -0.668016 1.054908 -0.966053 0.185886 -1.145726 -0.721397 0.838858 0.826654 0.054169 0.518869 0.907546 0.218666 0.753814 1.324197 1.117971 -0.314808 -1.358137 -3.211396 0.947178 0.811656 -0.180209 0.241665 -0.818862 -1.002427 0.422417 -0.350927 1.519952 0.520472 -0.048020 1.394870 -1.550987 -1.464954 -0.643831 -0.199690 0.133778 -0.319358 0.207101 -0.706711 0.374057 0.378384 -0.151916 -0.081919 -0.898565 -0.499384 0.176735 1.578698 0.583079 0.579050 1.585524 0.662715 -1.018758 -0.107372 0.215673 -0.170672 -0.314036 -1.445095 -0.633889 -0.122352 0.225868 -0.735030 0.466086 -0.406612 -0.092040 0.248780 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.212066 -0.159939 0.411212 0.188656 0.258884 -0.054652 0.221140 0.269712 0.073907 -0.668609 -0.375669 -0.178573 -0.128060 -0.076919 0.196170 -0.095757 0.262535 0.314660 -0.560104 0.031193 0.200518 0.252859 0.206452 -0.158903 0.084644 -0.136012 -0.340627 0.227730 0.127440 0.414022 -0.281360 -0.114681 0.324681 0.124521 0.042229 0.409837 0.446296 -0.054363 0.117155 -0.045117 0.714192 -0.006309 0.023161 0.374333 0.270975 0.434229 -0.081075 0.492498 0.275356 -0.200515 0.300993 -0.886781 -0.214112 -0.035183 -0.417667 0.309688 0.557139 0.485679 -0.312199 0.363215 0.023688 0.110955 0.072730 -0.445698 0.181681 0.383845 -0.081346 0.143960 0.610546 -0.371752 -0.150999 0.178895 0.354300 0.199571 -0.116507 -0.378676 0.182326 -1.190995 -0.056349 -0.501051 0.040021 -0.198192 0.535053 -0.346847 0.245136 0.640241 -0.242005 0.160346 -0.047206 -0.114767 -0.438774 0.149751 0.185230 0.331999 -0.032330 -0.080349 0.029384 0.057445 0.149655 0.336446 0.116232 -0.148346 -0.691642 -0.973807 -0.346929 -0.107607 0.008552 -0.149717 -0.392620 -0.071421 0.522464 0.130430 -0.535495 -0.127130 0.259190 0.308075 -0.470726 -0.044776 -0.268290 -0.184306 -0.024254 0.086470 0.045916 -0.395759 -0.060654 -0.439814 -0.137882 0.043775 0.193985 -0.229016 0.062399 -0.281264 -0.153604 0.143627 -0.114838 -0.155053 -0.077813 -0.223492 0.244917 -0.305102 0.313892 -0.396366 -0.032877 -0.145842 -0.209671 -0.112296 1.077063 -0.069366 0.258333 0.285539 -0.368219 -0.276140 -0.143610 -0.493342 0.226840 -0.073872 0.523620 0.120360 -0.062616 -0.047344 -0.107377 -0.310874 -0.212116 -0.200077 -0.004462 -0.097454 0.018840 -0.302408 -0.106641 -0.624070 0.301040 0.748530 -0.284807 -0.128281 -0.300644 0.077615 -0.119066 -0.447155 0.323712 -0.142835 0.147232 0.023527 0.146525 -0.345277 0.260372 -0.266107 0.043527 -0.043183 -0.591426 -0.496627 0.148378 -0.233141 0.040868 0.299075 -0.282348 0.090997 -0.147504 0.453244 0.058213 0.063796 0.047734 -0.689427 -0.632252 -0.463482 0.019089 0.319209 0.071618 0.143916 -0.287484 -0.195126 -0.166016 0.437628 -0.393944 -0.018450 -0.046767 -0.152163 0.367959 -0.106931 -0.006717 -0.552325 0.196151 0.279539 -0.585276 0.455166 0.230138 -0.375964 -0.348684 -0.522330 0.042668 0.251929 0.668857 -0.193483 -0.097741 0.308675 -0.130636 -0.051374 -0.499679 0.272461 0.052883 0.322009 -0.502996 -0.340792 0.126909 0.432072 -0.112463 0.281620 0.433430 0.479056 -0.061953 0.597812 0.058629 -0.059563 -0.225638 -0.675488 0.258441 0.918140 0.272156 0.264141 -0.501316 -0.223372 0.130109 0.308172 0.405428 0.696449 0.419037 0.420293 -0.127822 -0.346941 0.177678 -0.005563 0.252065 -0.396902 0.142374 -0.239371 -0.007920 -0.018340 0.060526 0.226915 -0.116626 -0.648732 -0.075662 0.363634 0.199310 -0.001707 0.465433 -0.011606 -0.365436 0.216316 -0.068427 0.328191 0.110654 0.123280 -0.065945 -0.163352 0.014523 -0.206011 0.475096 -0.129284 -0.061673 0.148911 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 1.062146 0.185881 -0.589099 2.269360 -0.238591 -0.632249 0.032509 0.704840 -0.630922 -4.030043 -2.319189 3.031462 0.157829 0.570607 0.382709 0.622751 0.105335 0.423266 -4.379203 0.980305 1.350696 0.601881 0.224040 -0.406964 0.519748 -0.918912 1.333974 0.583658 0.831477 2.304486 -1.444952 0.774825 1.948568 -0.300109 0.903707 1.652250 -0.314340 0.211902 -1.055230 -0.818215 3.009821 1.210142 0.166039 1.491778 0.442548 2.338021 0.309528 1.649314 2.029501 -1.890164 0.665409 1.362986 -1.511489 -0.420169 -1.412062 1.101346 1.112229 1.215544 -1.255151 0.762419 -0.341586 -0.242997 0.486943 -0.534319 2.081430 0.843970 1.599072 1.431560 2.205814 -1.602192 -0.473986 1.259564 0.974238 0.605699 1.695254 -1.548525 -2.077179 -1.250637 -0.463932 -3.714339 -1.475586 0.057890 3.984057 -2.393398 0.211417 0.414242 -0.140862 2.020664 -0.863995 0.151982 -1.871838 -0.189558 -0.551144 2.752401 0.591050 -0.250929 0.211944 0.778172 0.833387 1.834788 0.041482 -1.649147 -0.922382 -3.377318 -0.767583 -1.051875 1.202854 1.310440 -2.489407 -0.315375 0.393922 2.871881 -3.210013 -0.214288 1.785001 1.091801 0.925286 -0.018327 -1.397564 0.233711 0.315627 0.198900 1.855105 -1.203035 -0.030983 0.453868 0.176000 -0.202451 0.915276 0.250832 -2.378597 -2.026371 -0.126038 0.078903 -0.087941 0.033567 1.122347 -0.839662 1.659921 -0.756109 1.748384 -2.599580 -0.061869 -0.708858 -0.892354 -0.795503 2.033410 2.082160 1.640898 -0.908885 -0.759667 -0.788004 -2.522690 -2.332384 0.909203 0.409864 0.706679 0.974393 -0.264704 1.430407 -0.937309 0.136187 0.421064 -0.998388 -0.360572 -0.061636 1.332833 -0.236182 -0.194677 -1.947954 -0.419086 -0.455114 -0.215791 1.467581 -0.672649 -3.658219 -3.070843 -1.740395 1.989552 -0.863647 0.220525 -0.849217 -0.439872 -0.633468 0.097221 -2.184875 0.046958 -0.101686 -1.789543 -2.363610 0.357164 -0.552184 -0.935668 0.278058 -1.806279 -0.426696 1.332279 0.836199 0.899856 0.033986 0.277730 -2.700868 -1.556408 0.289109 -1.513974 1.533138 1.397895 -0.344066 -2.722685 -0.897110 -1.988890 1.396073 -1.672269 0.594914 -0.950797 -0.798196 2.227870 -1.222744 0.470361 -1.584397 0.804335 1.355713 -4.794496 2.849719 2.038445 -0.673987 -0.065371 0.467279 0.105373 1.630764 1.590621 -1.722449 -1.574521 0.265870 -0.988254 0.164478 -0.180490 1.650366 -1.355839 0.361786 -1.479134 -0.925467 1.012256 1.063279 0.456039 0.739193 1.056434 -0.064759 0.973148 1.876787 1.505217 -0.165676 -1.805612 -4.713583 1.823810 0.746214 -0.338930 0.616702 -1.083451 -1.589821 0.693280 -0.618713 1.967130 -0.628230 -0.691911 1.782306 -2.540239 -2.112381 -1.060615 -0.523494 0.112259 -0.139360 0.844630 -0.863760 0.554107 0.486547 -0.489439 -0.469641 -0.460024 -0.269220 0.302194 1.738629 1.463074 0.725710 2.252353 0.646084 -1.863915 -0.137763 0.053638 -0.244300 -0.749560 -2.146365 -0.668011 -0.238692 0.628555 -0.908509 0.449322 -0.250070 -0.280338 0.244324 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.720495 0.035110 0.625603 0.654780 0.218247 -0.493038 0.452921 1.021205 -0.149417 -2.039137 -1.476719 0.560714 -0.178455 -0.146269 0.507119 -0.116003 0.183685 0.472928 -2.675713 0.455161 0.860375 0.659579 0.445333 -0.565831 0.341898 -0.430910 -0.588883 0.693404 0.254929 1.248772 -0.736139 -0.056296 0.969425 0.327440 0.389178 1.149936 0.178842 -0.114988 0.306318 -0.224794 1.804189 0.707749 -0.204960 0.926877 0.689383 1.266695 -0.214157 0.652698 0.304946 -0.796795 0.475197 -1.073729 -1.008458 -0.202206 -0.772963 0.624698 1.323343 0.928776 -0.686354 0.857263 -0.082950 -0.057564 0.219103 -0.908379 0.916828 0.825992 0.294629 0.470263 1.523355 -0.877532 -0.362693 0.577867 0.757159 0.227250 -0.165381 -0.795098 -0.303244 -2.134314 -0.006488 -2.379172 -0.747664 -0.313740 1.629783 -1.071476 0.584344 1.001062 -0.373730 0.766146 -0.352049 -0.309643 -0.982390 0.113952 0.046377 1.328078 -0.061388 -0.067246 0.270345 0.372557 0.718945 1.107532 -0.000467 -0.548130 -1.485793 -2.373359 -0.263149 -0.293821 0.288800 0.147665 -1.188919 -0.333147 0.901089 1.109467 -1.587584 -0.352827 1.014501 0.750899 -0.902730 -0.209845 -0.907335 -0.115234 -0.078029 0.141696 0.604154 -0.974005 -0.153673 -0.453923 -0.133084 0.039915 0.487815 -0.180757 -0.897568 -1.024570 -0.004037 0.010668 -0.201257 -0.120614 0.069467 -0.313710 0.684649 -0.904241 1.022106 -1.376363 0.274120 -0.434594 -0.430360 -0.236262 1.470512 0.712360 0.288703 0.241296 -0.427703 -0.449161 -0.788092 -1.447080 0.749554 0.080365 1.230342 0.006039 -0.149131 0.185515 -0.397914 -0.435836 -0.338880 -0.519988 0.044453 -0.385853 0.889272 -0.309955 -0.272299 -1.068489 0.323393 0.990355 -0.585879 0.105236 -0.640007 -0.406736 -1.028787 -1.228360 1.018451 -0.309264 -0.010769 -0.338601 0.271853 -0.815993 0.477465 -0.892046 0.316057 -0.047494 -1.281971 -1.304719 0.113285 -0.390651 -0.101802 0.341862 -0.724017 -0.235583 0.383990 0.787014 0.333249 0.157059 0.222398 -1.331939 -1.262662 -0.554083 -0.229207 0.858124 0.585152 0.128258 -1.268913 -0.323307 -0.818875 1.335147 -0.637212 0.115988 -0.622397 -0.467432 1.450700 -0.320794 -0.113535 -1.205504 0.515067 0.724934 -1.904848 1.371702 0.775625 -0.678096 -0.645710 -0.760212 -0.066155 1.035056 1.460126 -0.682270 -0.656395 0.450981 -0.606333 -0.064223 -0.776553 0.944908 -0.349475 0.821950 -1.055205 -0.729072 0.525560 0.878964 0.000191 1.064647 0.715965 0.868212 0.253364 1.263105 0.443826 -0.406314 -0.870866 -1.996901 0.915245 1.564461 0.380726 0.256899 -0.893068 -1.132660 0.225834 0.408189 1.171882 1.172357 0.103907 1.002379 -0.716717 -1.105338 -0.228565 0.149683 0.337950 -0.569418 0.237409 -0.282859 0.302326 0.470547 -0.080304 0.687798 -0.658731 -1.463597 -0.193827 1.065105 0.672945 -0.028429 1.321477 0.091424 -0.991681 0.146306 -0.124556 0.469701 -0.065737 -0.299578 -0.448623 -0.522641 0.209301 -0.478167 0.933031 0.016253 -0.135450 0.376739 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = 2.513945 -0.165795 -1.769074 5.197905 -0.522754 -1.621108 0.314756 1.415471 -1.043250 -8.576878 -5.312537 4.440945 0.843352 0.558384 1.528638 1.925658 -0.529061 0.362444 -8.526220 2.265189 3.192152 1.062274 0.190049 -0.806854 0.996608 -2.339210 1.733447 1.272543 0.989788 4.981038 -2.309663 2.436910 4.251114 -0.593190 1.623862 3.643306 -1.489724 0.709215 -1.276861 -0.304433 6.169623 2.696954 -0.013783 2.494952 0.683661 4.971207 -0.160045 4.150102 0.909432 -3.734703 3.189100 1.965942 -2.949465 -0.899245 -2.882489 2.118574 3.827721 1.908731 -2.186423 1.694415 -1.523219 -0.306225 1.237915 -0.179527 5.392906 2.760336 4.018552 3.470760 5.030248 -3.005117 -0.578685 2.655840 1.320170 -0.014324 3.403249 -3.298883 -4.522061 -1.129803 -0.839505 -6.650118 -3.234936 -0.148891 7.659600 -4.846567 -0.446143 0.635443 0.451602 4.854770 -2.063163 0.631712 -3.432616 -0.355687 -1.488231 6.311527 0.567867 0.496920 -0.381892 1.712477 1.705215 3.479157 -0.099858 -3.409887 -2.826622 -6.554853 -2.215383 -2.069187 2.599522 2.951085 -6.523002 -0.924712 -0.272492 4.390620 -7.141202 -0.069382 3.707477 3.110387 4.016542 0.519072 -3.826621 0.449141 1.226927 0.736381 3.396448 -1.971012 0.386956 -1.347681 1.130329 0.013444 1.380288 0.203653 -6.088163 -3.558045 -0.161236 -0.565412 0.432884 1.208610 2.886487 -2.048603 3.126395 -2.190377 3.913221 -7.045919 -0.610993 -2.339088 -3.368043 -1.371886 3.817207 4.402522 3.658865 -1.933971 -2.411974 -1.355313 -6.218306 -6.119722 0.715985 0.469465 1.682975 1.557639 -0.604346 2.621273 -2.188127 1.194648 1.623420 -2.029218 -0.697388 -0.712516 3.789132 0.055888 -0.997771 -3.162806 -1.545407 -1.435608 -0.388914 4.250671 -0.618867 -6.548624 -7.593293 -3.695415 4.205236 -1.678644 0.258124 -2.717068 -0.701330 -4.036108 0.233490 -4.505628 0.649430 0.275446 -3.455021 -5.026483 0.580596 -0.543690 -1.364285 0.098292 -3.667473 -1.299937 3.565783 1.435361 2.262460 0.784112 0.029533 -4.911642 -3.790849 1.063865 -3.126788 4.060425 3.068790 -0.676195 -3.990478 -1.672570 -4.994674 3.346822 -2.759181 1.237381 -1.542517 -1.071197 4.881038 -3.042128 -0.181316 -4.057569 1.248344 1.725647 -8.334929 5.709550 3.603899 -1.621136 -0.221925 0.462429 0.630804 3.036653 3.255373 -2.921042 -3.093505 0.283013 -1.250386 0.130733 -0.745081 3.289639 -3.567094 0.941722 -2.933520 -1.777890 2.586797 2.701293 0.393012 1.809752 1.431233 -0.642318 1.788202 3.312984 3.482175 -1.312962 -3.653225 -9.390554 3.169607 -0.536919 -1.525480 0.066988 -2.405984 -3.449759 1.431715 -0.692434 4.620304 0.174697 -1.541386 3.832644 -5.531061 -4.816532 -2.978420 -0.280360 -0.043770 -0.468733 0.334159 -1.297871 1.632045 2.142068 -0.683810 -0.093157 -3.114441 -1.067357 0.309537 4.748102 1.369564 0.961289 4.924071 1.741452 -2.700782 -1.172459 0.691934 -0.968977 -0.826723 -4.711474 -1.974864 -0.688297 1.321713 -2.126374 1.318599 -0.742948 -0.488635 1.113871 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.173308 0.096011 0.398188 0.129200 0.192419 -0.242045 0.278382 0.383902 -0.077166 -0.615324 -0.385669 -0.227521 -0.104307 -0.201959 0.165719 -0.128357 0.072046 0.436370 -0.602350 0.111221 0.304530 0.370794 0.215330 -0.352708 0.081390 -0.054510 -0.583008 0.241773 0.081229 0.437896 -0.254795 -0.209363 0.305700 0.181124 -0.040954 0.441278 0.439473 -0.006553 0.300746 0.027598 0.605720 0.101687 -0.056939 0.302003 0.304010 0.401503 -0.112815 0.183130 -0.231687 -0.202902 0.089177 -0.787268 -0.270330 -0.077092 -0.238672 0.304488 0.639581 0.622710 -0.221213 0.418994 -0.060412 0.031151 0.101236 -0.487082 0.126319 0.455715 -0.208481 0.114684 0.702673 -0.313563 -0.149268 0.131593 0.309240 -0.024373 -0.159414 -0.203791 0.118780 -1.239481 -0.079765 -0.812893 -0.060509 -0.049154 0.679361 -0.375947 0.351724 0.697218 -0.058850 0.138730 -0.108955 -0.216205 -0.319235 0.144055 -0.033538 0.522025 0.005155 -0.034338 -0.033114 0.105924 0.307099 0.334568 -0.026056 -0.043927 -0.747225 -0.990419 -0.228889 -0.051786 -0.107321 -0.142594 -0.394837 -0.233261 0.723876 0.314338 -0.618668 -0.114021 0.362613 0.331888 -0.609804 -0.143573 -0.402355 0.011552 -0.152815 -0.060419 0.047400 -0.419742 -0.163080 -0.256777 -0.208699 -0.029150 0.111903 -0.212386 -0.163812 -0.267383 -0.157105 -0.091221 -0.068942 -0.142388 -0.147170 -0.218864 0.183721 -0.442537 0.305414 -0.426770 0.144406 -0.027447 -0.363655 -0.048041 0.721379 -0.003971 0.003719 0.147822 -0.277635 -0.310394 -0.117044 -0.485407 0.340634 -0.046074 0.598887 -0.040272 -0.054597 -0.181676 -0.094807 -0.318082 -0.123638 -0.166689 0.095420 -0.091417 0.561165 -0.285167 -0.119691 -0.615383 0.214249 0.739464 -0.176149 -0.235729 -0.345958 0.347936 -0.148693 -0.455130 0.324542 -0.060642 0.029541 -0.085184 0.161195 -0.330494 0.325887 -0.215890 0.165544 0.008796 -0.465377 -0.473182 0.082159 -0.173862 -0.136890 0.191519 -0.192156 -0.001358 -0.030386 0.211582 0.015279 -0.022877 0.140531 -0.542716 -0.572249 -0.403103 0.102257 0.156189 0.222930 0.263451 -0.403452 -0.071610 -0.216481 0.501342 -0.173401 -0.064920 -0.177428 -0.070830 0.559583 -0.078609 -0.066934 -0.548078 0.176242 0.206952 -0.483477 0.493216 0.208414 -0.296579 -0.332760 -0.460822 -0.047686 0.365982 0.659370 -0.240481 -0.162129 0.325792 -0.275512 -0.077053 -0.447174 0.278601 -0.071661 0.468567 -0.389009 -0.241210 0.076272 0.466925 -0.128309 0.422566 0.295431 0.412979 -0.047901 0.489597 0.083292 -0.179495 -0.225899 -0.431896 0.279463 0.555706 0.314487 0.089161 -0.292588 -0.293436 0.164272 0.384179 0.412169 0.768659 0.168691 0.353845 -0.156353 -0.362673 0.218587 0.168755 0.301620 -0.468411 0.106962 -0.174117 0.047695 0.131272 0.041902 0.390614 -0.250076 -0.732792 -0.159569 0.412263 0.200198 -0.168356 0.496687 -0.085470 -0.332641 0.220287 -0.116539 0.435550 0.016544 0.218692 -0.064025 -0.230451 0.057896 -0.170349 0.642869 -0.103492 -0.156995 0.322543 -PE-benchmarks/word-wrap.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 5.868813 4.308982 -10.301760 24.005389 -3.650787 -3.803737 -0.939899 3.289931 -7.676998 -36.084643 -20.085703 12.460313 5.860438 8.829518 5.118187 8.553071 -3.769750 1.873502 -36.028040 6.806012 16.650712 6.606269 3.415685 -0.706913 4.560550 -7.750937 9.467321 0.493082 6.298051 21.695727 -9.671280 14.416013 18.587577 -5.697382 5.630940 12.342020 -4.931531 4.581625 -8.842777 -0.390207 22.428580 9.639283 0.275200 7.466132 -3.324737 20.077232 2.247912 10.337263 -4.949402 -18.160539 6.411887 12.033873 -8.447406 -4.429413 -7.751569 8.621667 14.515022 14.348161 -7.238366 4.136350 -4.412330 -2.946635 5.650918 1.075714 19.964064 8.895587 17.352882 16.342114 17.812883 -11.494339 0.344872 7.330556 -2.765196 -3.329265 15.853518 -11.873978 -19.182594 -0.551406 -5.506432 -29.415399 -15.068884 3.101365 28.821901 -20.828007 -0.764256 -0.900521 2.871636 21.063455 -8.063741 3.942991 -13.679044 -4.882031 -9.008265 23.681545 3.733052 -0.360463 -1.505937 8.357364 6.920758 10.677063 -0.083419 -14.315936 -5.196294 -19.623665 -8.355158 -8.556045 12.176805 19.092747 -25.725676 -5.341954 -9.332503 19.257469 -31.743519 2.042223 12.112881 15.948726 19.925249 0.798520 -16.022576 3.579992 4.378919 -0.591624 15.922027 -8.613076 4.705219 -2.659448 2.090804 -0.557526 4.003771 3.573932 -24.516258 -15.574489 -2.606110 -7.479944 3.137353 8.249167 16.333020 -7.526182 14.100742 -10.046619 15.055629 -26.302202 -3.023329 -4.370242 -18.770481 -7.501058 8.019388 17.000013 9.639636 -13.394132 -13.882953 -4.070227 -26.913954 -21.319145 1.604998 6.266935 3.940079 12.472679 -4.387568 14.115731 -11.945138 7.800720 11.472250 -5.059305 -4.896627 -0.524402 16.422772 2.427758 -2.270139 -11.578572 -7.954649 -12.622862 0.439336 22.929162 -2.273947 -21.413882 -36.510643 -11.817097 17.987901 -7.287388 0.937657 -13.914016 -4.498505 -17.607334 -0.042262 -20.644360 -0.900753 1.291799 -10.350020 -20.636923 4.005035 -1.913478 -10.037229 2.073847 -14.717063 -5.602068 18.794626 3.307170 9.608910 -2.416613 1.020142 -16.106063 -11.418036 9.157994 -17.197388 13.834389 8.913559 -5.365283 -16.334814 -7.107318 -18.146631 13.120132 -1.328182 6.792812 -7.135522 1.089244 17.077629 -14.126225 0.822184 -14.874505 3.102641 7.508706 -31.495636 22.205512 11.402009 -2.888103 4.112135 7.622951 4.168608 10.166497 5.366247 -11.850321 -15.625922 -0.253061 -5.067058 2.130676 -5.595662 10.231605 -17.395602 -1.316851 -8.820894 -4.310489 10.787728 7.975149 1.463130 6.115469 8.346897 -9.005046 7.775609 11.082061 17.473039 -4.916230 -11.731319 -28.755695 13.114363 -11.213427 -5.805037 -7.590530 -5.909447 -9.915615 8.289791 -3.939619 16.998372 2.475164 -10.276511 15.828610 -26.503181 -18.640465 -13.966018 -1.039394 0.110247 1.234217 -3.838211 -6.071985 10.249173 10.563425 -3.995855 -2.071053 -15.709823 2.141143 2.613760 18.953290 0.142119 7.332087 20.283870 7.899632 -8.500881 -4.189466 5.547426 -6.041758 -7.591932 -19.335390 -7.302347 2.087215 5.541468 -9.644718 0.751447 -8.175850 -5.675632 6.037332 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.667301 0.530200 -1.125633 2.274372 -0.265842 -1.354241 0.210343 1.143370 -1.019475 -4.284321 -3.202532 0.789483 0.537548 -0.320466 1.199003 1.318385 -0.417154 0.520927 -4.685895 1.486860 1.991029 0.676318 -0.257371 -0.468580 0.580357 -1.059255 -1.340988 0.217711 0.161327 2.553644 -1.371318 1.334814 2.079871 -0.348390 0.610016 1.728960 -1.204023 0.242265 1.044767 0.586820 3.112489 1.395357 0.102840 0.769924 0.640384 2.361377 -1.282202 2.868920 -1.578152 -1.777235 2.180932 -0.460687 -1.500895 0.583794 -1.233194 1.244131 2.915286 1.395435 -0.906993 1.119510 -1.528115 0.160623 0.759177 -0.754296 3.089644 2.269526 1.752614 1.530252 3.071897 -0.782737 0.206321 0.877198 0.592486 -0.945989 0.974674 -1.563003 -1.370004 -1.512417 -0.267636 -4.309232 -0.887598 -0.000730 5.172821 -2.616513 0.013679 0.898139 1.011482 2.692066 -1.474593 0.249125 -1.422969 0.216001 -1.620435 3.626594 -0.035376 0.697930 -0.925376 0.968499 0.847430 1.278166 -1.076264 -1.156587 -2.858024 -4.141400 -1.786834 -0.549783 0.740630 1.159951 -4.166822 -0.548724 0.805535 2.092876 -4.088129 0.199888 1.727072 1.643498 1.210621 2.017798 -3.435381 -0.144770 -0.089593 0.742787 1.235517 -0.626738 0.140827 -2.478294 0.249880 0.175567 0.648232 -0.299114 -3.569699 -1.127799 -0.334827 -1.465862 0.133333 0.996579 1.507714 -1.120632 1.624541 -1.492213 1.610828 -4.327702 -0.433636 -1.532741 -3.065325 -0.307992 2.127135 3.169273 1.214714 -0.532802 -1.220718 -1.119077 -3.792499 -2.826067 -0.076647 -0.508691 1.635045 0.082811 -0.144442 0.502652 -0.840786 0.375105 0.795777 -1.239990 -0.133083 -1.148970 4.549052 -0.142262 -0.759097 -2.165109 -1.150436 0.119117 -0.947588 1.475695 -0.349591 -1.795750 -4.063593 -1.901324 2.073165 -0.582068 0.588709 -1.868017 0.530643 -2.709126 0.389168 -1.975517 -0.103499 0.248375 -1.502903 -2.466236 -0.062805 0.066456 -1.454044 -0.688856 -1.630490 -0.544257 3.130961 1.165011 1.231726 0.361947 -0.143899 -2.487582 -2.508172 0.185683 -1.332587 1.887899 2.646654 -0.256781 -1.878619 -0.496622 -3.093459 2.179317 -1.082200 0.272540 -0.902188 -0.275768 2.766032 -1.733705 -0.571195 -2.394738 0.342553 -0.132008 -5.024844 3.136206 1.527915 -1.203063 -0.122737 -1.235481 0.948536 1.503577 1.980250 -0.954461 -0.742559 0.004867 -0.897770 -0.147447 -0.728879 1.925063 -2.287750 0.914508 -1.311198 -0.579485 1.675631 1.766688 -0.134276 1.108022 0.209283 0.082412 1.667663 1.363586 1.461895 -1.737265 -1.542265 -5.069182 1.013003 -0.256640 -0.731449 -0.367977 -0.858505 -1.827064 0.198484 -0.179818 2.638183 1.164068 -0.274918 1.741824 -2.583242 -2.523623 -1.185002 1.017487 -0.078742 -0.926176 -0.197601 -0.751276 0.617737 1.620972 0.392815 0.942361 -2.903765 -2.319260 -0.256954 2.848174 0.441900 -0.316044 2.541469 0.885191 -0.914062 -0.613341 0.213128 0.356683 -0.297843 -1.497422 -1.102247 -0.747997 0.355762 -1.293445 1.702342 -0.340417 -0.023780 1.341571 -PE-benchmarks/word-wrap.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = 2.376218 0.527946 -0.249880 2.806319 0.514447 -2.334363 0.616189 2.234591 -0.812707 -5.458056 -4.157538 0.725399 0.201925 -1.215012 1.655716 0.711832 -0.127925 1.067003 -7.211403 2.247835 2.574169 1.431245 -0.193070 -1.591395 0.940847 -1.224900 -1.916021 0.986086 0.167747 3.302207 -2.126865 0.859902 2.496996 0.261559 1.530624 2.673720 -1.084935 0.150806 1.871326 0.620441 4.767661 2.581915 -0.342809 1.652843 1.990163 3.195619 -1.342737 2.766092 -1.844860 -2.026930 1.787194 -0.949486 -2.063439 0.400644 -2.057693 2.003299 4.733072 2.025593 -1.773260 1.881237 -1.467621 0.070569 1.035208 -1.385398 3.797740 2.755513 1.513677 1.733123 4.832589 -1.077465 -0.100711 1.040016 2.084420 -0.970822 0.930796 -1.899033 -2.067114 -3.637408 -0.334190 -6.455456 -0.847763 -0.258561 5.645020 -3.277899 1.163058 1.951991 1.038296 3.079465 -1.922427 -0.807183 -2.071840 0.524253 -2.221242 5.466566 -0.226826 1.058535 -0.513006 1.559349 1.491149 2.234882 -1.118745 -1.637977 -3.393205 -7.100368 -1.835842 -0.734574 0.558247 0.522513 -4.757470 -0.832981 1.520051 2.939455 -5.156603 -0.186543 2.274718 1.757711 -0.505106 0.092809 -3.762905 -0.183484 -0.808451 0.652975 1.108315 -1.581147 -0.518216 -2.833555 -0.050076 0.410192 1.160897 -0.579778 -3.310743 -1.356357 -0.558487 -1.223589 -0.359966 0.680248 1.023651 -2.011285 1.942100 -2.561951 2.412179 -4.986797 0.157639 -2.097561 -3.323942 -0.244651 2.320808 2.720973 0.939319 -0.233371 -1.084491 -1.475743 -4.310656 -4.395308 1.057230 -0.688216 2.598547 -0.434932 -0.184638 -0.002624 -1.202406 -0.626145 0.853124 -1.850667 0.008988 -1.796605 5.963402 -0.582352 -0.954577 -2.729525 -0.804287 1.871833 -1.095720 1.006477 -1.198292 -1.531375 -4.481474 -2.847534 2.691666 -0.663349 0.466180 -2.129043 1.058640 -3.342874 1.227883 -2.556345 0.521228 -0.353296 -1.928676 -3.252382 -0.574091 -0.378582 -0.649225 -0.762378 -2.129961 -0.407333 3.336752 1.840503 1.020749 0.550556 0.395279 -3.593618 -3.553144 -0.286019 -0.603750 2.449524 2.631109 0.093227 -2.490855 -0.528330 -3.561085 3.212565 -1.249441 0.140464 -1.151063 -1.086213 4.182102 -1.658134 -1.267233 -3.383856 0.639160 0.069801 -4.688761 4.446758 1.872418 -2.083030 -0.876226 -2.279222 0.994305 2.180396 3.667884 -1.618429 -1.142874 0.519537 -1.683671 -0.409695 -1.690998 2.669983 -2.328565 2.321482 -2.364949 -1.333969 1.992977 2.625178 -0.279724 2.141653 0.264352 0.638600 1.554631 2.686653 1.709628 -1.504236 -2.691234 -5.878945 1.339747 0.295459 0.217693 -0.702818 -1.036644 -3.136229 -0.044279 1.137497 3.734864 3.390563 -0.182704 2.432088 -3.127284 -3.412332 -1.074947 1.368006 0.408757 -1.916179 -0.164258 -1.363525 0.700657 1.589284 0.859382 1.809022 -3.435020 -3.738855 -0.534997 3.166625 0.923506 -1.132092 3.513299 1.001089 -1.770320 -0.277792 -0.030094 0.946102 -0.259622 -1.082850 -1.589891 -1.730017 0.404893 -1.535448 3.184106 -0.275765 0.594039 1.786038 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = 0.457605 0.145119 0.011510 0.533434 0.187137 -0.722704 -0.005826 0.367899 -0.462234 -0.545326 -0.381543 0.120559 -0.121205 -0.321630 0.403832 0.009472 -0.120131 -0.014526 -0.606888 0.572181 -0.040896 0.034040 -0.339455 -0.530462 0.145483 0.392026 -0.346756 0.240616 -0.041636 0.308751 -0.562480 0.013948 -0.005091 0.300306 0.460025 -0.143248 0.143675 -0.026516 0.085954 -0.020104 0.688556 0.217045 -0.139292 0.312621 0.530353 0.245395 -0.238594 0.503155 -0.493660 0.144024 0.386762 -0.351293 -0.116884 0.273872 -0.380732 0.364023 0.773760 0.239061 -0.145898 0.192364 -0.332539 0.136056 0.157064 -0.182393 0.792502 0.518942 0.163874 0.253276 0.735505 -0.152675 -0.053162 0.063161 0.952412 -0.167964 -0.389902 -0.176992 -0.067818 -1.046664 -0.084916 -0.840295 0.115160 -0.092648 0.825680 -0.332675 0.314274 0.342702 0.001356 0.163596 -0.686528 0.181421 -0.274266 0.074394 -0.430500 0.723549 -0.220466 0.153086 -0.064800 0.163024 0.332836 0.458612 -0.358009 -0.024348 -0.360150 -1.005279 -0.457825 0.609425 -0.400402 -0.428850 -0.557685 -0.127370 0.650153 0.462132 -0.430268 -0.458628 0.083798 0.048221 -0.161041 0.224269 -0.651894 0.105709 -0.289062 0.277764 0.209803 -0.032517 -0.007351 -0.676044 -0.209874 0.136738 0.562985 0.136882 -0.498050 -0.048410 -0.074717 -0.281380 -0.280474 -0.379590 -0.407575 -0.276778 0.154712 -0.144794 0.318831 -0.653084 -0.079074 -0.505119 -0.525273 0.478123 0.505044 0.346179 0.207542 0.502561 -0.077216 -0.160672 -0.428643 -0.643852 0.398406 -0.021723 0.197931 -0.351578 0.132752 -0.075222 0.002774 -0.602238 0.580914 -0.600154 -0.349336 -0.729108 0.760506 -0.176803 -0.195674 -0.535122 0.217930 0.751598 -0.152064 -0.041436 -0.251865 -0.308566 -0.462939 -0.384611 0.254852 0.024212 -0.016107 0.065430 0.491589 -0.718399 0.335077 -0.305368 0.432758 0.023774 -0.393312 -0.342485 -0.222598 0.012779 -0.050709 -0.335988 -0.072400 0.097081 0.161138 0.373089 -0.140601 0.424715 0.302503 -0.593846 -1.013227 -0.262884 0.509153 0.401031 0.197050 0.304664 -0.471933 -0.114730 -0.573546 0.691661 -0.524177 -0.093340 -0.098214 -0.003664 0.644499 -0.259170 -0.485005 -0.299583 0.220907 0.114228 -0.577498 0.657916 0.309785 -0.471911 -0.347690 -0.874945 0.368734 0.317704 1.183593 -0.322234 0.124375 0.153557 0.277647 -0.285223 -0.397927 0.542764 -0.163364 0.289290 -0.345943 -0.453482 -0.021965 0.362962 0.181069 0.131897 -0.228856 0.155130 -0.301660 0.664712 0.161009 -0.182046 -0.246233 -0.564528 -0.055802 0.251543 0.137728 0.206898 -0.374588 -0.626901 -0.365212 0.090246 0.563594 0.308872 -0.006168 0.281017 -0.349859 -0.283103 -0.003994 0.514200 -0.141128 -0.671093 0.321345 -0.372183 -0.195852 0.392806 0.182214 0.192617 -0.073873 -0.920965 -0.552361 0.177597 0.123129 -0.308633 0.387457 0.364151 -0.418392 0.009341 0.126317 0.233702 0.019826 -0.296888 -0.278818 -0.473849 0.001586 -0.175249 0.592350 0.261058 0.019050 0.156103 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 2.336267 0.818424 0.000449 2.661824 0.631240 -2.252845 0.711960 2.480338 -0.975171 -5.493973 -4.164898 1.223593 0.253578 -0.908990 1.381065 0.638781 -0.039073 1.134516 -7.420172 2.077262 2.507449 1.483928 -0.006054 -1.840910 0.869195 -1.230184 -1.361183 1.242297 0.395742 3.353391 -2.154793 0.615321 2.573126 0.450685 1.649483 2.908224 -0.707890 -0.015595 1.325165 0.114326 4.775251 2.907060 -0.606606 1.716466 1.838846 3.363996 -0.582300 1.732494 -2.010268 -2.093435 0.796897 -0.828265 -2.480386 -0.108255 -2.059976 1.883666 4.212305 2.249372 -1.790265 1.996910 -1.240900 -0.142337 1.122409 -1.395125 3.552415 2.026005 1.559697 1.703411 4.635722 -1.530747 -0.462773 1.341800 2.120414 -0.594338 0.849297 -1.780125 -2.215626 -3.796233 -0.183957 -7.088607 -1.297986 -0.068606 5.765809 -3.193244 1.326844 1.984960 0.616232 2.854103 -1.965103 -0.976742 -2.291345 0.321775 -2.037299 5.338660 0.046034 0.652964 -0.040295 1.722624 1.794664 2.510619 -0.946395 -1.803473 -3.064681 -6.924029 -1.088271 -0.912800 0.609760 0.621948 -4.035922 -1.173581 1.570494 3.856046 -5.037949 -0.320347 2.574349 1.631599 -0.687295 -0.744199 -3.277897 0.208175 -0.859244 0.376971 1.552337 -1.991218 -0.544331 -1.407956 0.131345 0.206811 1.185974 -0.203264 -3.647879 -1.727953 -0.180293 -1.230045 -0.316150 0.370875 0.839461 -1.965594 1.856083 -2.589451 2.655088 -4.665764 0.750266 -1.706320 -3.096350 -0.364543 2.094187 2.818555 0.631959 -0.294729 -0.677597 -1.180099 -3.851457 -4.455324 1.566171 -0.046638 2.489258 -0.439863 -0.244785 0.303079 -1.232018 -0.666930 0.805700 -1.802365 -0.059653 -1.397067 5.743789 -0.307160 -0.888084 -2.536916 -0.495097 1.797423 -0.630224 1.080721 -1.506130 -1.919019 -4.297440 -2.966341 2.767718 -0.718341 0.103883 -1.858727 0.555915 -2.810529 1.349819 -2.612346 0.953209 -0.327474 -2.008151 -3.362064 -0.403841 -0.617444 -0.888403 -0.425384 -2.004690 -0.487625 3.053683 1.314337 0.711991 0.309329 0.704048 -3.374159 -3.171381 -0.040723 -0.541799 2.645289 2.481422 0.159469 -3.130728 -0.454983 -3.155648 3.417337 -0.788772 0.242742 -1.517792 -1.153217 4.251192 -1.589843 -0.756129 -3.175500 1.009078 0.570167 -4.902764 4.497129 2.479745 -1.883215 -0.968461 -1.741464 0.495116 2.397531 3.650913 -1.907709 -1.606544 0.699785 -1.858914 -0.399093 -1.550313 2.461954 -2.046837 2.155962 -2.527777 -1.455928 1.701536 2.420763 -0.011035 2.289018 0.444276 0.689403 1.209688 2.989771 1.741383 -1.198725 -2.990963 -5.693425 1.859626 0.526484 0.323071 -0.597658 -0.700096 -3.188669 0.120580 0.686313 3.540218 3.316958 -0.931523 2.647409 -3.214352 -3.421719 -1.200760 1.142471 0.571415 -1.726791 0.228386 -1.390924 0.822451 1.257061 0.501208 1.528442 -2.990944 -3.256764 -0.398795 3.091808 1.408960 -0.948161 3.620641 0.688423 -1.894563 -0.229676 0.029813 0.898553 -0.225589 -1.349287 -1.741894 -1.590375 0.624254 -1.302213 2.819682 -0.083580 0.338107 1.797037 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = 2.587535 0.395081 -0.174020 2.942367 0.796995 -2.446835 0.674541 2.242153 -0.727975 -5.626631 -4.138404 1.067978 0.157630 -1.349804 1.558074 0.719270 -0.013098 1.105004 -7.096709 2.349025 2.441645 1.450899 -0.333004 -1.732813 0.940824 -1.289945 -1.618677 1.123557 0.179856 3.348837 -2.205176 0.750977 2.538805 0.308639 1.645270 2.825492 -0.799970 0.105597 1.730882 0.508893 5.081828 2.599959 -0.253822 1.937780 2.216252 3.310117 -1.246112 3.123502 -1.625964 -1.987718 1.821062 -0.836878 -2.158221 0.282028 -2.353403 2.191401 4.802277 1.916000 -1.951629 1.942694 -1.330846 0.066553 1.076725 -1.285851 3.863010 2.837403 1.496049 1.797024 5.196464 -1.212555 -0.275890 1.296572 2.470324 -0.704089 1.219825 -2.029324 -2.266413 -3.490850 -0.368132 -6.305721 -0.746110 -0.432568 5.865342 -3.339738 1.133766 2.073841 1.069785 3.114406 -1.947066 -0.899113 -2.227897 0.635277 -2.245463 5.775003 -0.261190 1.215689 -0.579176 1.530656 1.490935 2.450066 -1.040606 -1.791137 -3.328777 -7.363025 -1.950239 -0.860370 0.462128 0.336791 -4.878663 -0.843123 1.419834 3.152373 -5.256042 -0.284262 2.359576 1.703677 -0.189135 0.013870 -3.699575 -0.216919 -0.719428 0.583658 0.939331 -1.600285 -0.668291 -2.790866 0.009023 0.371802 1.205738 -0.662691 -3.458686 -1.354839 -0.614246 -1.061388 -0.361843 0.506371 0.932520 -2.394118 1.953786 -2.559254 2.449784 -5.095045 -0.020112 -2.198628 -3.469993 -0.268678 2.591985 2.487113 1.363028 -0.178385 -1.073775 -1.664486 -4.380705 -4.730226 1.143129 -0.856247 2.530511 -0.378690 -0.154028 -0.064735 -1.276246 -0.851774 1.007731 -1.955363 -0.016671 -1.872630 5.980836 -0.770345 -0.908673 -2.857157 -0.782230 2.040585 -0.860164 1.019089 -1.294634 -2.045789 -4.516739 -3.009920 2.731022 -0.711785 0.483164 -2.086622 0.965208 -3.401502 1.238948 -2.614223 0.680373 -0.478813 -2.068864 -3.363604 -0.530748 -0.474968 -0.577854 -0.731761 -2.266285 -0.303176 3.174523 1.871988 0.969972 0.607152 0.316421 -3.936587 -3.782133 -0.314876 -0.416942 2.682806 2.604398 0.215524 -2.485014 -0.626749 -3.727371 3.233205 -1.682851 0.115409 -0.940666 -1.144146 4.330279 -1.737956 -1.273542 -3.554646 0.758159 0.087333 -4.677015 4.708286 2.014371 -2.286524 -1.070027 -2.311036 0.961657 2.248812 3.983074 -1.785774 -1.229063 0.707960 -1.612059 -0.492039 -1.762663 2.753877 -2.260052 2.592652 -2.630895 -1.580923 1.925442 2.855277 -0.378256 2.042397 0.240274 0.592246 1.418571 2.990929 1.783364 -1.269016 -2.904562 -6.183585 1.341727 0.133383 0.195236 -0.554711 -1.182595 -3.255241 0.040706 1.104319 3.941855 3.208424 -0.069148 2.557166 -3.324197 -3.564815 -0.922367 1.216164 0.510295 -2.024012 0.036874 -1.560474 0.598953 1.392134 0.889509 1.624875 -3.359116 -3.596676 -0.530640 3.196089 1.020548 -1.158541 3.644916 1.056460 -1.806504 -0.198303 -0.022657 1.093925 -0.194155 -1.310923 -1.609720 -1.880692 0.393630 -1.529898 3.437430 -0.262381 0.717138 1.785846 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = 4.679320 1.581245 -2.707430 7.587175 -0.106967 -3.486947 -0.161350 4.086619 -2.593201 -11.286188 -7.922854 7.822984 0.682763 1.023621 3.850274 2.578589 -0.538499 0.381889 -14.055725 4.376254 3.398299 1.377170 -0.432073 -2.621259 2.100426 -1.108886 2.000711 2.042422 1.724711 6.670610 -4.669201 3.006439 5.114643 0.214177 4.841599 3.028214 -0.901356 0.860378 -2.870068 -1.424691 9.970314 5.254736 -0.421969 5.010573 2.241773 6.956909 -0.201020 5.463859 1.156041 -4.405855 3.271120 1.086290 -4.394321 0.192189 -4.364974 3.759932 5.168190 2.436460 -3.870800 3.186239 -0.986230 -0.640524 1.563240 -2.345928 8.422848 3.063694 5.738528 4.361803 7.461466 -3.745072 -1.061800 2.708064 4.424327 0.112498 2.919655 -5.567657 -5.944862 -4.649988 0.023807 -12.000118 -4.630992 -0.850120 10.986759 -7.603467 1.513588 2.046771 -0.747171 6.252865 -4.613645 0.667604 -4.920667 -1.592898 -2.409755 9.249881 0.955341 0.287793 1.184260 2.953454 3.740027 5.832170 -0.398456 -4.079779 -3.183705 -9.569906 -2.338373 0.453223 2.977006 2.902515 -6.775369 -1.895707 -0.153075 7.929595 -9.359636 -1.848959 5.572701 3.068281 3.018391 0.317305 -4.761683 1.063941 1.059235 1.524633 5.475013 -4.235029 0.433445 -0.844010 0.403073 0.203763 4.229435 1.115746 -7.321308 -5.291147 -0.031036 -0.820086 -0.739203 -0.755305 1.954397 -3.407762 5.332966 -2.660125 5.645248 -8.819967 -0.885706 -2.709502 -4.167906 -1.055771 5.950388 5.646910 4.902052 -0.710264 -2.483320 -1.739348 -8.008304 -8.843767 3.947810 1.775525 2.495113 1.847508 -0.442143 3.484041 -3.051215 -0.483473 3.285092 -4.019042 -2.373574 -2.340232 5.315999 -0.007109 -1.481774 -5.443299 -0.565308 0.011599 -0.505706 4.419677 -1.234524 -10.593335 -8.871364 -5.144966 6.084359 -1.603478 0.908221 -2.651164 0.733994 -5.559494 0.060137 -7.499541 2.519437 0.519691 -5.239823 -6.422017 0.116449 -0.812574 -0.689634 -0.428799 -4.352280 -1.211469 4.811963 3.566956 1.273615 1.734581 1.724008 -7.305642 -6.759049 0.760813 -3.327770 5.765723 2.060864 -0.377448 -7.101654 -1.525575 -6.490440 5.970846 -4.537019 1.201700 -3.716946 -1.512811 7.514156 -3.673670 -1.919928 -5.320075 2.305874 3.190742 -11.439429 6.947945 5.192136 -2.418126 -1.026915 -0.506933 1.473088 5.114836 7.461105 -4.356182 -4.424900 0.319044 -1.424276 -0.035749 -2.121145 5.835262 -4.517995 1.311216 -4.567028 -3.037533 3.476673 3.709202 1.746895 3.877316 2.265893 0.422759 1.373577 6.139025 4.404469 -1.774634 -5.096319 -12.861862 3.839580 3.366273 -1.250311 0.195410 -3.688546 -5.780696 0.360130 -1.708950 6.156992 1.311978 -1.941874 5.311999 -7.187060 -6.755076 -3.955502 1.091434 -0.694599 -1.587534 0.884550 -2.229513 2.259155 3.469488 -0.799431 0.540943 -2.969308 -3.349017 -1.565190 4.832524 2.040230 1.488188 7.438469 3.013625 -4.957299 -0.853646 0.257759 -0.500235 -0.793126 -7.418962 -3.626554 -2.427797 1.204808 -3.024476 1.527131 -0.088570 -0.548210 1.520854 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/strongly-connected-components.cpp__main = 0.543830 0.190633 1.194023 -0.126055 0.570098 -0.179459 0.567273 1.056221 -0.452348 -1.154839 -1.360739 -1.006249 -0.394608 -0.362249 0.703148 -0.521075 0.455464 0.205631 -1.739664 0.005282 0.580334 0.319474 0.367724 -0.217948 0.186758 -0.312143 -1.808157 0.842760 -0.047010 0.635217 -0.318215 -0.395788 0.428441 0.518957 0.088542 0.819999 0.178571 -0.204500 1.164401 0.024800 1.309350 0.074218 -0.060900 0.533968 0.894677 0.701286 -0.989547 0.836311 -0.515683 -0.284665 1.057493 -2.348765 -0.593818 0.188924 -0.532893 0.302813 1.602867 0.877234 -0.453427 0.855832 -0.482968 0.088471 -0.050481 -1.240449 0.339458 1.073631 -0.214629 -0.124822 1.000447 -0.563252 -0.507699 0.558155 0.419918 0.184089 -1.777076 -0.646071 0.965884 -2.645980 0.280333 -1.790596 -0.268461 -0.535640 1.497210 -0.189974 0.320399 1.219413 -0.540895 -0.000246 -0.193041 -0.323674 -0.553738 0.303577 0.063916 0.425913 -0.353155 -0.079851 0.477456 -0.072667 0.589950 0.974738 -0.610241 0.228491 -2.270253 -2.044514 -0.451596 0.254371 0.175186 -0.461598 -0.548885 -0.313283 1.495165 -0.285637 -0.527907 -0.469383 0.636793 0.790575 -1.992859 1.131678 -1.503018 -0.793337 -0.128098 0.244582 0.374279 -0.350212 -0.048033 -1.507772 -0.312421 -0.053423 0.289335 -0.520896 -0.377042 -0.524692 -0.170707 -0.536115 -0.276198 -0.517890 -0.443544 0.251553 0.394621 -0.564431 0.596657 -1.150347 0.346142 -0.573862 -0.542055 0.116599 1.466814 0.870234 -0.164426 1.022602 -0.272803 -0.381197 -0.048889 -0.343896 0.186659 -0.098644 1.699226 -0.615014 -0.082505 -0.172188 0.010754 -0.737936 -0.843357 -0.138535 0.255124 -0.679563 1.326202 -0.356823 -0.295805 -1.064549 0.747112 1.429286 -1.352061 -0.603463 -0.603195 1.021314 0.012747 -0.979436 0.440580 -0.050534 -0.025163 0.071828 0.712071 -0.730048 0.575461 -0.275180 -0.052649 -0.042355 -1.281076 -0.668831 0.229382 -0.255152 -0.241095 0.377742 -0.155808 -0.229457 0.648063 1.256173 0.380857 0.238184 -0.073215 -0.808997 -1.237099 -1.179616 0.303408 0.354986 0.871923 0.142580 -0.477428 -0.124057 -0.415392 1.097636 0.236212 -0.292957 -0.477829 -0.330953 0.849997 0.013357 -0.022215 -0.983452 0.145830 0.469106 -1.870569 0.616246 0.175679 -0.648188 -1.085428 -1.676362 -0.223024 0.564772 1.232017 0.095785 0.160594 0.407339 -0.350159 -0.131341 -0.805452 0.623229 0.257852 0.724697 -0.933458 -0.793425 0.446324 0.844483 -0.170085 1.036398 0.581624 1.681236 0.572498 1.032027 -0.205322 -0.960951 0.002809 -1.517198 0.460066 2.315685 0.332586 0.181711 -0.617593 -1.068422 -0.248158 0.702529 0.730126 1.820694 0.676956 0.626694 0.660180 -0.466542 0.111797 0.652103 0.374170 -1.045995 -0.249216 -0.184577 0.081550 0.370922 -0.048247 1.372846 -0.770815 -2.581370 -0.669107 0.764381 0.383555 -0.118491 0.756406 -0.119717 -0.570055 0.172671 -0.009043 1.052690 0.620538 0.521153 -0.346210 -0.745327 -0.188320 -0.087565 0.821731 0.403384 -0.050506 0.779734 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.392683 0.096793 0.242136 0.124632 0.276006 -0.378382 0.150170 0.401234 -0.125534 -0.690190 -0.539684 -0.212767 -0.101853 -0.373213 0.313666 0.090202 0.155853 0.348295 -0.663477 0.338626 0.297772 0.294764 0.002472 -0.276327 0.162573 -0.121594 -0.769538 0.077413 0.014185 0.389627 -0.405945 -0.039368 0.277724 0.131019 0.151962 0.364932 0.113386 -0.146076 0.592077 0.119782 0.787381 0.084592 0.128109 0.317053 0.504124 0.376533 -0.461166 0.577429 -0.223444 -0.156455 0.416794 -0.805157 -0.253857 0.262165 -0.401294 0.415766 0.652765 0.335488 -0.310251 0.342961 -0.148199 0.137265 0.107113 -0.530148 0.428710 0.579730 -0.101102 0.145100 0.838089 -0.049749 -0.050812 0.140259 0.482771 -0.025386 -0.124396 -0.249234 0.263436 -1.072194 -0.092633 -0.759951 0.228250 -0.208705 1.009647 -0.415137 0.306649 0.664868 0.094069 0.316375 -0.156588 -0.195474 -0.324727 0.261111 -0.162962 0.472388 -0.164426 0.151751 -0.235946 0.089694 0.108863 0.282620 -0.222464 -0.059947 -0.950167 -1.137542 -0.497316 0.015371 -0.128770 -0.270096 -0.751256 -0.040690 0.665241 0.364195 -0.683658 -0.083420 0.248024 0.206664 -0.563105 0.342302 -0.698886 -0.268400 -0.217561 0.218580 -0.214097 -0.163916 -0.185574 -0.850575 -0.186252 0.042987 0.244037 -0.328488 -0.243871 -0.133518 -0.197247 -0.148229 -0.160507 -0.040341 -0.027540 -0.365398 0.228524 -0.318446 0.205664 -0.634099 -0.106846 -0.394701 -0.506764 0.031054 0.902936 0.249773 0.184713 0.355135 -0.220240 -0.413896 -0.443943 -0.392112 0.148671 -0.438041 0.613923 -0.095279 0.042906 -0.263578 0.010185 -0.387907 -0.119698 -0.354821 0.068086 -0.446806 0.817817 -0.356819 -0.140018 -0.729338 0.032709 0.856937 -0.382541 -0.312994 -0.279866 0.325469 -0.305132 -0.503561 0.285289 -0.066774 0.276101 -0.175955 0.397122 -0.421473 0.282138 -0.237896 0.014369 -0.103495 -0.409856 -0.424545 -0.055047 -0.108557 -0.202014 -0.112875 -0.215430 0.126380 0.254145 0.413926 0.068035 0.087241 -0.081981 -0.698346 -0.779372 -0.414274 0.156204 0.230759 0.476951 0.173315 -0.409340 -0.098079 -0.443078 0.552648 -0.461119 -0.107749 0.009092 -0.150221 0.564722 -0.198167 -0.183060 -0.599094 0.132814 -0.098280 -0.922631 0.518875 0.141372 -0.521343 -0.318675 -0.866126 0.234736 0.310220 0.787255 -0.027128 0.175667 0.219195 -0.171295 -0.137852 -0.502279 0.438563 -0.180369 0.612861 -0.469146 -0.303471 0.248766 0.563341 -0.172222 0.297393 0.089782 0.476012 0.185118 0.481820 0.102626 -0.255327 -0.275723 -0.758401 0.031778 0.636845 0.262710 0.173072 -0.296816 -0.381222 -0.107835 0.245680 0.579573 0.571321 0.474648 0.312873 -0.197389 -0.436898 0.249516 0.331978 0.148895 -0.526566 0.123877 -0.247591 -0.146366 0.154972 0.299002 0.423076 -0.470414 -1.019154 -0.178830 0.489004 0.284848 -0.256693 0.450453 0.108829 -0.274097 0.171040 -0.067228 0.540439 0.045518 0.113778 -0.193752 -0.365242 -0.110701 -0.240692 0.811267 -0.059340 0.120921 0.261498 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 1.097823 0.051751 0.094173 1.009497 0.263941 -1.620288 0.533990 1.144180 -0.665592 -1.864350 -0.932163 0.490340 0.004483 -1.093399 0.282627 0.239937 -0.388125 0.398928 -3.050030 1.303321 0.829634 0.545115 -0.443839 -1.261030 0.231460 -0.633412 -0.416621 1.205759 -0.345909 1.223970 -0.812909 -0.187799 0.854222 0.387203 0.786531 1.353914 0.101106 -0.053895 0.777315 0.708801 1.947280 1.409340 -0.788331 0.252452 1.272310 1.365523 0.123394 0.359810 -1.437190 -0.529044 -0.014193 0.289331 -1.135315 -0.387392 -0.953725 0.493589 1.806910 1.067656 -0.794397 1.032626 -1.164568 -0.242555 0.592591 0.236245 1.789505 0.712368 0.727675 0.570315 2.449901 -0.536357 -0.286277 0.691714 1.322685 -0.620611 0.646840 -0.175672 -1.392887 -2.633669 0.136609 -3.045685 -0.748447 0.347965 1.842834 -1.120328 0.497652 1.088178 0.837062 1.192670 -1.359183 -0.652646 -0.916759 0.237273 -0.913426 3.341865 -0.049675 0.639764 -0.028693 0.981376 1.103892 1.226683 -0.352068 -0.868248 -1.108151 -3.091777 -0.487310 -0.430706 -0.551985 -0.388034 -1.830969 -0.626152 1.748207 1.807313 -2.014123 0.018962 1.216808 0.437656 0.419696 -0.993454 -1.140322 0.627021 -0.601548 0.000730 0.587387 -0.775514 -0.467660 -0.256232 0.694490 0.242891 0.274958 -0.168313 -2.149412 -0.168651 0.407839 -0.789661 -0.093709 0.030059 -0.180476 -1.280590 0.459275 -1.587133 1.265631 -1.966191 0.763971 -0.664154 -1.305449 0.160564 0.372163 1.188993 -0.240025 -0.183328 -0.293320 -0.238606 -1.557286 -2.739485 0.682918 -0.187643 0.675982 -0.880433 -0.105637 -0.476655 -0.328474 -0.496178 0.733718 -0.858367 0.127928 -0.687654 2.646083 0.088119 -0.389187 -0.659011 -0.350926 1.137610 0.724818 0.362327 -0.807110 -1.297074 -1.648236 -1.333050 1.005561 -0.006756 -0.515840 -0.886744 -0.096212 -1.523654 1.138723 -0.733996 1.002489 -0.392032 -0.522631 -1.244580 -0.268625 -0.210833 -0.329373 -0.726442 -0.711157 -0.325898 0.458515 -0.455062 0.183803 -0.027911 0.427247 -1.279378 -1.479848 0.217497 0.522891 1.299693 0.846010 0.570989 -0.996985 0.106327 -1.579872 1.537816 -0.549437 -0.015768 -0.268577 -1.091136 2.325807 -0.466046 -0.826010 -0.963640 0.680887 -0.172977 -0.320276 2.801571 1.555445 -1.081033 -0.752240 -0.490981 0.015816 1.299903 1.890538 -1.089586 -0.622661 0.408390 -0.403814 -0.392306 -0.020243 1.071524 -0.908266 1.483964 -1.121503 -0.832280 0.427883 1.481338 -0.151822 0.822906 -0.701010 -0.138294 -0.388832 1.262247 0.425778 -0.084476 -1.224753 -1.830938 0.577713 -1.221981 0.048130 -0.253406 -0.229987 -1.494653 -0.046399 0.558951 1.752932 1.466966 -1.225747 0.858682 -1.573482 -1.590863 -0.661528 0.517894 0.060740 -0.964429 0.655836 -0.615592 0.198303 0.391661 0.404488 0.503612 -1.044282 -1.057814 -0.357203 0.756160 0.798785 -1.462507 1.547572 0.079836 -0.505411 -0.459025 -0.006305 0.427761 0.395740 -0.076331 -0.724214 -1.177719 0.612072 -0.353754 1.770807 0.262660 0.455487 1.027939 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 1.373709 0.617027 0.459782 1.240464 0.135511 -2.427905 0.705814 2.033473 -1.284852 -2.212828 -1.331790 0.095868 -0.127841 -1.340687 0.634636 -0.101100 -0.724070 0.516374 -4.723842 1.745414 1.145362 0.899059 -0.426206 -2.166900 0.410596 -0.049226 -1.196128 1.637546 -0.395166 1.615911 -1.301305 -0.505591 0.832015 0.839174 1.262162 1.318631 0.114437 0.034444 1.129817 0.721488 2.358816 2.186638 -1.537006 0.266380 1.739763 1.623209 0.192695 -0.483426 -2.938945 -0.489194 -0.512881 -0.218054 -1.457493 -0.363360 -0.834291 0.564788 3.002902 2.062467 -0.831367 1.477063 -1.519827 -0.301901 0.786961 -0.044525 2.288026 0.943715 0.722733 0.642178 2.966836 -0.762116 -0.237050 0.352935 1.913096 -1.298067 -0.288165 -0.224924 -1.491946 -4.615066 0.314714 -5.178867 -1.084367 0.714789 2.128378 -1.414702 1.426876 1.550461 0.741670 1.118339 -2.176653 -0.852565 -1.011571 0.075771 -1.542919 4.454704 -0.259450 0.536640 0.506497 1.528815 1.945549 1.661701 -0.668821 -0.757619 -1.343496 -4.154066 -0.201583 0.270930 -1.007801 -0.606736 -1.719129 -1.145948 2.843529 2.214351 -2.415367 -0.370060 1.433190 0.599850 -0.725567 -1.761974 -1.603578 1.199588 -1.467193 -0.033261 1.206562 -1.339347 -0.479255 -0.091299 0.309052 0.490118 0.734192 0.265223 -2.715448 -0.265469 0.558004 -1.497330 -0.493960 -0.252769 -0.845660 -1.146036 0.553209 -2.335837 1.815817 -2.364097 1.563617 -0.690558 -1.594786 0.679374 -0.341080 1.501031 -1.414305 0.093796 -0.107504 0.011570 -1.580884 -3.263554 1.559171 0.520661 1.164624 -1.610062 -0.113857 -0.660823 -0.433151 -1.098641 1.091522 -1.221838 -0.082807 -1.247666 4.099660 0.241489 -0.682696 -0.712265 0.152394 2.037754 0.617219 0.169035 -1.342168 -0.616861 -1.996180 -1.621256 1.357108 0.170616 -1.002614 -0.830327 0.416936 -2.115345 1.815936 -1.027447 1.783631 -0.352753 -0.628767 -1.570637 -0.558282 -0.225032 -0.239528 -0.942888 -0.531411 -0.514738 0.628740 -0.375484 -0.162434 0.086602 1.385542 -1.385078 -2.099200 0.051605 1.107019 1.425603 0.784908 0.891050 -1.603573 0.333416 -1.708545 2.430827 0.195155 -0.068663 -1.051118 -1.113487 3.200883 -0.355940 -1.257563 -1.167311 0.895635 0.216554 0.039052 3.592345 1.851658 -1.241860 -1.047466 -1.117803 0.100274 1.764542 2.808205 -1.550768 -0.962330 0.548329 -0.715402 -0.599474 -0.421541 1.476822 -1.007413 1.749757 -1.257650 -1.011632 0.383494 1.557097 0.183329 1.657162 -0.842328 -0.002097 -0.916216 1.880248 0.430867 -0.375428 -1.464461 -1.548273 0.821895 -1.035363 0.614480 -0.754273 -0.066547 -2.329639 -0.430013 1.336846 2.072429 3.063611 -2.017563 1.059431 -1.806775 -1.803445 -0.950145 1.313533 0.083569 -1.636508 0.500516 -0.744972 0.403979 1.012303 0.466361 1.281575 -1.185397 -2.245731 -1.021728 0.835065 0.881330 -2.151892 2.021141 0.073132 -0.980664 -0.422107 0.009548 0.650819 0.382054 0.405591 -1.012623 -1.662845 0.870016 -0.479566 2.274651 0.698076 0.270360 1.450641 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 1.273200 0.685082 0.599349 0.880287 -0.001279 -2.884929 1.264812 2.429780 -1.284584 -2.118976 -0.927537 -1.163443 0.093334 -2.055965 0.409853 -0.038916 -1.205547 1.148819 -4.938938 1.795323 1.736531 1.426015 -0.348684 -2.709875 0.257631 -0.504965 -2.262653 1.990394 -0.757267 1.865958 -0.924151 -1.009440 1.116710 0.747038 0.655418 2.137680 0.584952 0.287406 2.178192 1.835994 2.218516 2.576332 -2.183794 -0.437845 1.873503 1.847199 0.218490 -1.164879 -5.212238 -0.677920 -0.975366 -0.431369 -1.686743 -0.914716 -0.476600 0.407444 3.951590 3.116859 -0.852024 2.080451 -2.166524 -0.491442 1.051996 0.387898 2.083830 1.291874 0.418068 0.587011 3.726346 -0.653680 -0.178435 0.233868 1.307807 -2.322436 0.165209 0.227212 -1.729010 -5.888601 0.509659 -5.836651 -1.376421 1.360447 2.013497 -1.608158 1.649975 2.432014 1.759273 1.338428 -2.357863 -1.550129 -0.796308 0.196945 -1.898727 6.065700 -0.159761 0.900503 0.190298 2.046319 2.453315 1.490285 -0.550759 -0.742956 -2.133093 -4.593727 -0.275731 -0.350836 -1.491575 -0.610787 -2.139652 -1.796824 4.197096 1.960598 -3.142601 0.417667 1.967630 1.060305 -0.333342 -2.596607 -1.920404 1.898078 -1.960773 -0.718189 0.899002 -1.729207 -0.863187 0.151479 0.754171 0.563960 -0.120719 -0.198160 -3.616059 0.291544 0.714228 -2.299539 -0.130385 0.281660 -0.863603 -1.793391 0.335322 -3.563658 2.022049 -2.863754 2.276433 -0.174811 -2.423891 0.517239 -1.111492 1.269129 -2.543859 -0.579229 -0.607301 -0.045330 -1.728405 -4.139521 1.432171 0.465905 1.608895 -2.150217 -0.362978 -1.543375 -0.457782 -0.801989 1.026310 -0.931649 0.601111 -0.836909 5.982538 0.378903 -0.853522 -0.498560 -0.277654 2.460733 1.438925 0.039882 -1.591184 0.661325 -2.156272 -1.758631 1.482648 0.432114 -1.410180 -1.472655 -0.024019 -2.876016 2.501141 -0.745489 2.273029 -0.452592 -0.110310 -1.743406 -0.400094 -0.172612 -0.526298 -1.122814 -0.545379 -0.829495 0.319234 -1.601692 -0.143524 -0.599346 1.580171 -1.230657 -2.042022 0.296108 1.279813 1.394359 1.043812 1.381193 -0.961531 0.883738 -1.889436 2.592668 1.014393 -0.201259 -1.059905 -1.361836 3.962801 -0.219018 -1.702624 -1.674181 0.897143 -0.402414 2.191573 4.580509 1.996396 -1.274439 -1.117814 -0.693538 -0.325193 2.094415 2.575373 -1.688923 -1.365909 0.796117 -1.283120 -0.653325 -0.159076 1.261748 -1.453360 2.656171 -1.196812 -0.630740 0.374703 2.289648 -0.372321 2.294040 -1.297720 -0.458437 -1.400428 1.560608 0.300853 -0.571225 -1.447739 -0.607087 0.979158 -3.125300 0.683073 -1.752492 0.462627 -2.221307 0.032926 2.545245 2.302666 4.707761 -2.775864 1.017263 -2.244653 -2.281752 -0.928888 1.646120 0.511402 -1.979076 0.119813 -0.517928 0.802316 1.155935 0.712699 1.962306 -2.135887 -2.355251 -0.985068 1.146265 0.637692 -3.400717 2.438022 -0.584203 -0.437029 -0.565434 -0.236637 1.063687 0.780976 1.747289 -0.923696 -1.912155 1.273679 -0.494921 3.263491 0.423835 0.129882 2.454630 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.713124 0.706134 -0.050233 4.017117 0.883349 -2.533367 -0.460590 3.681321 -1.830232 -7.149590 -5.962125 2.447153 -0.319329 0.965246 3.901101 1.037437 -0.077245 0.239260 -9.990324 3.135714 1.965625 1.503230 0.388496 -2.163745 2.139405 0.527209 -0.803021 1.009573 1.373223 3.653622 -4.266823 1.265033 2.756015 0.495352 2.971080 0.685140 0.083532 -0.146736 -0.920499 -1.454664 7.218597 2.380994 0.531235 4.081929 2.138349 3.610540 -1.476154 5.157342 1.199403 -2.723550 3.592590 -3.933940 -2.684955 1.501324 -3.122190 3.814689 4.882441 2.280551 -2.722752 2.036240 0.426579 0.235669 0.850998 -4.039377 5.346942 2.912910 3.326318 1.890342 5.187850 -2.007599 -0.678487 1.643482 4.021647 0.454116 -0.452558 -5.525319 -0.769156 -6.586273 0.689152 -8.278091 -1.537347 -1.799795 6.843656 -4.666873 2.215839 2.857161 -1.697573 3.558363 -3.022885 0.978867 -2.858433 -0.281565 -1.236292 4.952410 -0.778948 -0.484928 1.439992 1.429073 2.321797 4.317354 -0.616077 -0.784193 -3.793805 -7.258892 -2.466213 2.574638 1.741357 0.790928 -4.414622 -0.536654 0.694229 2.958498 -5.087778 -2.288908 3.170072 2.489674 -1.342876 1.847523 -3.879949 -1.447089 -0.047848 2.131254 2.525347 -2.973526 0.865084 -3.414855 -0.881818 0.823408 3.845067 0.022256 -2.621446 -3.779594 -1.237926 -0.314921 -1.430071 -1.463180 0.731419 -1.895672 3.866281 -1.121580 2.777609 -5.768689 -1.192605 -2.364148 -2.177734 0.178127 6.100384 2.435455 2.466693 2.122493 -2.177853 -1.918452 -4.237157 -4.190380 2.425493 1.197065 3.093137 1.268118 0.081972 1.963176 -0.829462 -2.532652 0.933713 -3.156773 -2.201922 -3.340596 3.069859 -1.204819 -0.843769 -5.197436 1.564269 2.782310 -3.285130 1.111258 -0.612946 -3.843623 -4.186794 -3.747639 3.489755 -0.600990 1.510294 -0.906361 2.616659 -4.267420 0.667260 -5.036995 0.942291 0.593186 -5.133619 -3.793978 -0.395207 -0.489621 0.152958 -0.255865 -2.642504 -0.063066 2.613688 5.400689 0.534796 1.645619 1.395064 -6.421045 -6.733017 -2.054795 -1.055476 3.468228 0.697541 -0.134997 -4.370353 -1.298547 -3.088988 4.478744 -3.560791 -0.066044 -2.890071 -0.156506 4.360319 -2.202984 -1.328863 -4.408924 1.032565 2.260725 -8.309197 4.423643 2.014954 -2.179581 -1.549124 -3.809232 1.760191 3.195122 6.547963 -1.828851 -1.371759 0.298602 -0.243672 -0.542766 -3.604994 4.628479 -2.135142 0.813185 -3.062750 -3.107161 1.478210 2.782514 1.230197 3.257667 2.502120 2.868200 0.700235 4.982586 1.737419 -2.355641 -2.433304 -8.734048 1.861653 7.289844 0.188699 0.643773 -3.911999 -4.335000 -0.712899 0.831638 4.059408 3.904423 2.565794 3.111338 -3.221982 -3.658936 -1.012412 2.170940 -0.739959 -1.979904 -0.411327 -1.943611 0.659533 2.625732 -0.495432 1.189991 -1.802027 -6.256374 -2.688758 3.135304 1.158652 1.331076 4.672112 2.783627 -3.641298 0.508781 -0.054805 1.231926 -0.446335 -2.124460 -2.344561 -2.049787 -0.927806 -2.013728 1.765099 0.231117 -0.692234 0.538746 -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.626725 -0.223908 0.305898 0.349532 0.521400 -0.497810 0.205730 0.427209 0.037974 -0.991831 -0.561054 0.072467 -0.136464 -0.467121 0.283201 0.122536 0.220689 0.346454 -0.771905 0.492835 0.241168 0.348306 -0.034260 -0.403735 0.207387 -0.230998 -0.423390 0.225446 0.049077 0.509759 -0.534267 -0.105380 0.395159 0.146047 0.229615 0.547317 0.393182 -0.173491 0.410898 0.090664 1.153054 0.149444 0.146129 0.580536 0.685319 0.554786 -0.322868 1.099245 0.176748 -0.193562 0.575665 -0.802919 -0.390623 0.121150 -0.708804 0.638667 0.836996 0.310795 -0.487957 0.395013 -0.068956 0.129400 0.163136 -0.435131 0.582200 0.695041 0.003275 0.232888 1.265041 -0.224903 -0.221726 0.418354 0.883986 0.241016 0.262513 -0.524036 -0.024149 -1.182919 -0.124185 -0.634599 0.231844 -0.398708 1.135104 -0.569033 0.277061 0.822020 0.094084 0.454041 -0.212293 -0.202219 -0.530637 0.380613 -0.088573 0.889756 -0.219755 0.272174 -0.301236 0.093655 0.132812 0.529494 -0.017848 -0.251873 -0.974713 -1.494844 -0.657729 -0.136091 -0.160429 -0.378247 -1.034195 0.004880 0.571702 0.478317 -0.887642 -0.150908 0.398026 0.256639 -0.078669 0.218064 -0.609154 -0.309750 -0.067412 0.199416 -0.304079 -0.292145 -0.304946 -0.920461 -0.030097 0.078628 0.275361 -0.455389 -0.328779 -0.181039 -0.258447 0.111653 -0.125158 -0.172831 -0.039945 -0.799469 0.291301 -0.354994 0.304645 -0.842234 -0.317240 -0.503771 -0.585716 -0.016080 1.428773 0.025964 0.635910 0.398267 -0.364947 -0.609081 -0.579248 -0.853392 0.168118 -0.590322 0.573523 0.020456 0.058415 -0.254235 -0.034020 -0.556052 -0.048185 -0.481803 0.034219 -0.492182 0.609406 -0.536746 -0.078834 -0.909927 0.025446 1.047185 -0.198067 -0.200301 -0.324872 -0.330098 -0.428629 -0.733775 0.389104 -0.139641 0.313640 -0.210742 0.315186 -0.625190 0.335426 -0.349994 0.137505 -0.171722 -0.678826 -0.608926 -0.005146 -0.219316 -0.019843 -0.061619 -0.421937 0.183743 0.002191 0.585291 0.094128 0.168495 -0.168239 -1.209639 -1.119065 -0.484589 0.249717 0.633015 0.314585 0.250742 -0.388726 -0.231176 -0.646867 0.643931 -1.000440 -0.130086 0.158901 -0.242157 0.774360 -0.281532 -0.225813 -0.880546 0.265134 -0.051781 -0.853639 0.924098 0.346566 -0.718846 -0.486963 -0.880218 0.211800 0.443758 1.139710 -0.230767 0.028063 0.371800 -0.060379 -0.218199 -0.604302 0.582530 -0.215445 0.847081 -0.733550 -0.575934 0.155959 0.843427 -0.257872 0.205877 0.121367 0.446875 -0.016059 0.793388 0.190700 -0.061208 -0.514473 -1.228585 0.085652 0.662583 0.213775 0.354990 -0.630792 -0.508963 0.019356 0.318049 0.856807 0.591379 0.674250 0.485006 -0.481821 -0.639569 0.345044 0.154618 0.197060 -0.596494 0.322716 -0.449133 -0.218174 0.026445 0.287021 0.210312 -0.427471 -0.886382 -0.168806 0.560610 0.381389 -0.261103 0.637151 0.218768 -0.363468 0.207233 -0.046062 0.586787 0.087212 -0.003275 -0.192616 -0.478545 -0.121953 -0.256377 1.048006 -0.091333 0.188902 0.192407 -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.377035 -0.305634 0.187791 1.447591 1.024467 -1.266942 -0.081001 1.163453 0.046940 -2.096368 -1.844824 1.112499 -0.157691 -0.137804 1.045751 0.101617 0.163013 0.220181 -2.536718 1.357581 0.064244 0.592439 -0.580322 -0.978547 0.470095 -0.057677 -0.358029 0.821071 0.199063 0.692510 -1.383003 -0.011828 0.741746 0.153556 1.070839 0.382287 0.859708 -0.391228 -0.321983 -0.401516 2.815523 0.816232 0.393113 1.729016 1.289083 1.277599 -0.531399 2.459103 0.739002 -0.707233 1.098094 -1.544012 -1.041735 0.106610 -1.668574 2.020601 1.509045 0.149356 -1.311721 0.865514 0.254666 -0.079656 0.432633 -1.324209 1.945319 1.006074 0.878789 0.530893 2.359557 -0.477757 -0.836622 1.117162 2.474137 0.817032 0.306550 -1.750931 -0.419004 -2.393649 0.350715 -1.977506 0.188328 -1.070935 2.348576 -1.579100 0.660200 1.474469 -0.403378 1.013309 -1.090913 -0.078512 -1.202425 0.262252 -0.287899 1.979947 -0.344112 -0.092526 0.290508 0.467483 0.693661 1.789798 -0.309168 -0.208320 -1.544083 -3.405552 -1.210773 0.684111 0.084195 -0.689210 -1.607431 -0.336631 0.469094 1.350807 -1.453514 -0.912079 1.296967 0.242225 -0.255501 0.221451 -0.914718 -0.695098 0.198780 0.519254 0.305293 -0.785239 -0.092479 -1.133844 0.091291 0.134081 1.213676 -0.361981 -0.747899 -0.875205 -0.688287 0.566528 -0.388838 -1.154762 -0.299805 -1.593174 1.221761 -0.246659 0.837799 -1.914161 -0.509487 -1.241653 -0.732531 0.335667 3.027116 0.300836 1.724800 1.087918 -0.611335 -1.073244 -1.558380 -2.242830 0.879020 -0.031825 1.036309 -0.042245 0.104746 0.023318 0.195534 -1.369223 0.565955 -1.466947 -0.684262 -1.051519 0.912711 -0.783439 -0.257180 -2.219464 0.695076 1.833761 -0.879034 -0.248606 -0.381047 -1.938673 -0.681014 -1.425201 0.780276 0.034789 0.847275 -0.095780 0.502167 -1.386080 0.504825 -1.609364 0.636230 -0.228499 -1.967544 -1.264889 -0.375004 -0.330274 0.274202 -0.267327 -1.044989 0.489201 0.324673 1.949065 -0.046187 0.626681 0.306222 -2.761340 -2.469550 -1.152670 0.245255 1.859221 0.533102 0.505415 -1.011447 -0.344960 -1.400005 1.469457 -2.302250 -0.431116 -0.201914 -0.684670 1.533454 -0.994352 -0.667136 -1.823021 0.565422 0.427146 -2.330495 1.900663 1.110174 -1.307638 -1.120426 -1.679641 0.340470 1.162421 3.209609 -0.790516 -0.058474 0.435537 0.121976 -0.595785 -1.439411 1.566482 -0.299821 0.909248 -1.579078 -1.513638 0.039130 1.422873 0.160079 0.692126 0.356547 1.248859 -0.206280 1.917644 0.489719 -0.403311 -1.236139 -3.257796 0.696009 2.308897 -0.076863 0.729721 -1.602772 -1.460902 -0.366499 0.326018 1.638637 1.207507 1.451691 1.076321 -1.226565 -1.289795 0.306207 0.478532 -0.213718 -0.974729 0.796582 -1.113833 -0.216195 0.130448 -0.105111 -0.187593 -0.335566 -2.439134 -0.716817 0.619811 0.794217 0.122095 1.585589 0.712638 -1.086226 0.279985 -0.196011 0.770862 -0.005239 -0.688448 -0.809934 -1.314963 -0.603313 -0.329701 1.242734 0.131417 0.092338 0.432138 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = 4.193653 0.326262 -4.591802 10.466425 -0.982505 -1.219793 -0.057384 0.947834 -2.817480 -16.242942 -10.519375 7.891738 2.177394 3.586572 2.227113 4.221051 -0.935327 -0.068714 -15.495401 3.040637 6.058177 1.076635 0.945855 0.508965 1.797460 -4.450351 4.286848 1.162229 2.353151 9.297520 -4.151273 6.067921 8.220547 -1.722163 2.754754 5.966226 -3.067697 1.632645 -3.822252 -1.422697 10.533713 4.188297 1.107584 3.751404 -1.052829 9.026405 0.393481 9.524650 1.897150 -7.603662 5.886305 2.623404 -4.942673 -0.563506 -4.829695 3.846807 5.681970 3.784613 -3.369011 2.018475 -2.789203 -0.440197 2.068176 -0.546641 9.583916 4.199314 8.070919 6.209167 7.737998 -5.930938 -0.581161 5.065300 0.546343 -0.021856 6.367337 -6.878806 -8.440003 1.304657 -1.102562 -11.967933 -6.236554 0.282070 15.272223 -8.929916 -2.261063 -0.389107 0.333471 9.320392 -3.750214 2.695347 -6.645974 -0.907025 -3.254021 10.265826 1.881788 0.174724 -0.793665 2.644466 2.639959 5.703900 -1.174818 -6.044756 -4.168619 -10.905537 -3.693192 -3.829966 6.055316 7.278705 -11.780758 -1.714552 -3.780677 8.952832 -13.091060 0.215745 6.356947 6.305494 8.474704 4.058998 -7.014935 0.175394 3.309330 1.282792 7.869180 -3.056514 1.946602 -2.493971 2.203208 -0.436506 2.409863 0.908871 -11.221848 -6.909115 -0.668888 -2.178716 1.357616 2.548380 6.858303 -2.579025 6.616252 -2.957836 6.317448 -12.601384 -1.599007 -3.600936 -8.265320 -3.072920 7.722430 9.811041 7.438276 -4.359186 -4.379380 -2.558746 -12.087991 -10.355254 -0.048453 1.602974 2.446660 4.387155 -1.261406 6.566852 -4.903919 3.315814 3.769719 -2.884075 -2.272572 -0.597293 6.570414 0.606358 -1.501371 -5.886295 -3.325030 -5.421699 -1.801558 9.565048 -0.479464 -14.252504 -14.990288 -6.332416 7.836525 -3.421817 1.144226 -5.634036 -1.458258 -7.055522 -0.855261 -8.635867 -0.670682 1.318118 -6.434150 -9.195095 1.242458 -0.787887 -3.975420 0.986928 -6.765185 -2.489452 9.539333 3.512526 5.003493 1.062797 -0.462408 -8.092845 -5.663123 2.810023 -7.654528 7.143548 5.908687 -2.717577 -7.260422 -3.883175 -9.175186 5.403653 -3.676013 2.529717 -3.526193 -0.370945 7.441286 -6.443604 1.432147 -6.148846 1.665554 3.489630 -18.945539 9.402170 6.761289 -1.839516 0.635441 1.791790 1.505585 4.755413 4.441819 -5.174046 -5.620388 -0.404691 -2.311041 0.750482 -0.851338 5.529220 -7.166683 -0.889582 -4.583973 -2.833706 4.849890 3.821225 0.938553 2.027067 3.790063 -1.466009 5.633317 5.522592 6.331751 -3.194390 -6.086434 -19.560622 5.822443 -0.337912 -4.179277 -0.064682 -3.839352 -5.095071 3.112592 -4.136341 8.080701 -0.723071 -3.106174 7.303157 -10.034585 -8.200527 -6.102903 -1.154613 -0.661821 0.164887 -0.287352 -2.881393 3.553663 3.728057 -2.152384 -1.188646 -6.092429 -0.656448 1.007782 8.863156 1.454032 4.208583 8.781138 3.547374 -3.913099 -2.522534 1.982781 -2.153807 -2.062730 -10.166519 -3.512706 0.167668 2.019204 -3.879961 0.081983 -2.063055 -1.571894 2.301325 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/z-algorithm-linear-time.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/z-algorithm-linear-time.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/z-algorithm-linear-time.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/z-algorithm-linear-time.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = 2.826529 0.264833 -2.848132 8.324164 -1.129244 -1.636672 0.478531 0.953670 -2.785890 -12.806920 -7.285316 3.905690 1.899287 2.684576 1.392260 3.325604 -1.449534 0.460460 -12.982361 2.518091 5.544482 1.738042 1.618581 -0.711353 1.368474 -3.383520 3.630136 1.417176 1.749498 7.735151 -3.150093 4.240237 6.815574 -1.240326 2.014144 5.503951 -1.405977 1.880240 -3.000648 -0.003567 8.120768 3.643755 0.225100 1.848272 -1.030619 7.475673 2.238062 5.217280 -1.007336 -6.289669 3.618450 1.687044 -4.036845 -1.775314 -3.331178 2.443157 5.356319 5.471150 -2.649364 2.267085 -2.473307 -0.614726 2.036327 0.651091 7.467731 2.695153 6.153012 4.880562 6.548742 -5.081868 -0.468983 3.698608 -0.260320 -1.299227 5.350533 -6.123422 -7.275293 -1.084307 -0.980456 -10.778338 -5.495648 1.771886 10.925357 -7.139090 -0.862842 0.333393 0.157806 7.149075 -3.163282 1.227238 -5.139967 -0.977980 -2.823693 9.663129 1.309346 -0.256848 0.256863 2.812927 3.162752 4.602201 -0.221797 -5.081249 -2.875755 -8.252008 -2.221702 -3.357363 4.393015 6.006984 -8.873928 -2.615487 -2.741069 6.255610 -11.059856 0.734638 5.628861 5.864930 7.072773 0.088065 -4.642034 1.416263 1.867083 0.636892 6.952513 -3.718262 1.381319 -0.725052 2.068852 -0.048107 1.348255 0.679170 -9.252330 -5.434085 -0.510024 -2.598356 1.231306 2.300055 4.954762 -2.179912 4.934187 -4.022916 5.851882 -10.043423 -0.023589 -1.950803 -7.096458 -2.504578 4.895819 6.481846 3.790116 -4.589659 -4.366560 -1.144728 -9.062757 -8.799642 0.377826 2.295819 2.005146 3.548663 -1.357550 4.757804 -4.025290 2.590883 3.307898 -1.741250 -1.672711 0.043073 4.936502 1.119657 -1.505809 -4.039495 -2.212838 -3.914433 0.045803 8.074531 -1.035321 -10.194962 -12.262618 -5.187280 6.552785 -2.582385 -0.165089 -4.774783 -1.913119 -6.505594 0.535285 -7.234623 0.658175 1.111191 -4.505969 -7.619133 1.329300 -0.968503 -2.469556 1.023590 -4.960332 -2.602880 6.353328 1.318545 3.580073 0.114671 0.675697 -6.227327 -4.322705 2.781203 -5.573868 5.507669 3.225343 -1.328953 -5.544549 -2.501930 -6.514074 4.314238 -0.347413 1.966145 -3.146727 0.081044 6.803605 -4.614446 2.156318 -4.989007 1.434063 3.166605 -12.673333 8.340684 5.858201 -1.256166 0.411770 2.646027 0.561799 4.030764 2.933776 -4.311522 -5.706446 0.155279 -2.302387 0.560386 -0.957604 3.669119 -5.979911 -0.443098 -3.572398 -2.059826 3.277299 3.243777 0.602601 2.043274 2.818322 -2.154780 2.478246 4.628490 4.843350 -1.893094 -4.856969 -13.920524 5.198056 -1.529677 -2.428271 -1.366636 -2.075766 -3.783394 3.257257 -1.500043 6.401209 2.965381 -4.247636 5.931060 -8.616413 -6.933937 -5.420154 -0.553141 0.083625 -0.116951 -1.544109 -2.339620 3.577168 3.139684 -1.849070 -0.350687 -4.830929 0.256960 0.709658 7.485147 0.789461 2.277196 7.561519 1.938496 -2.495900 -2.108881 2.092523 -1.603912 -1.058824 -6.400987 -3.012361 0.127638 2.549983 -2.975151 0.457173 -2.292681 -1.865637 2.722431 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.492697 0.108339 0.611529 0.533817 0.093790 -0.271495 0.367222 0.877031 -0.210628 -1.794559 -1.356215 0.351486 -0.168267 0.042376 0.501338 -0.139805 0.195943 0.358936 -2.525422 0.268761 0.829643 0.534163 0.528496 -0.389095 0.308769 -0.407830 -0.531816 0.619334 0.249646 1.109084 -0.637098 0.032526 0.862825 0.321099 0.389417 0.962616 0.023142 -0.109968 0.210636 -0.235911 1.530315 0.605818 -0.248438 0.704646 0.499357 1.124115 -0.154046 0.229480 0.256418 -0.747376 0.318948 -0.976095 -0.846479 -0.161496 -0.613775 0.428677 1.073667 0.885199 -0.578518 0.734164 -0.090880 -0.046435 0.145653 -0.857281 0.793792 0.557273 0.330729 0.401869 1.092031 -0.812889 -0.274977 0.419113 0.453241 0.147516 -0.369900 -0.611034 -0.145205 -2.014546 0.034836 -2.253660 -0.768985 -0.187928 1.247608 -0.876560 0.506230 0.811263 -0.488994 0.648770 -0.273746 -0.242627 -0.884237 0.008523 0.130864 0.942259 0.012493 -0.218048 0.407724 0.370630 0.661679 0.947554 0.010182 -0.465646 -1.273147 -2.002363 -0.126878 -0.233965 0.405495 0.239824 -0.879376 -0.280217 0.842192 0.957088 -1.307124 -0.287152 0.848100 0.718500 -1.098210 -0.339339 -0.758083 -0.110102 -0.098489 0.170877 0.707835 -0.884675 -0.003153 -0.312330 -0.125653 0.031807 0.491452 -0.068352 -0.666421 -0.999439 0.077432 -0.042451 -0.221459 -0.053950 0.108812 0.002178 0.640205 -0.796736 0.962058 -1.103330 0.444695 -0.347149 -0.215706 -0.234235 1.113872 0.769661 0.001825 0.229663 -0.364091 -0.216390 -0.621889 -1.150958 0.675854 0.289647 1.116106 0.030257 -0.187663 0.306613 -0.384459 -0.277900 -0.370349 -0.408826 0.001465 -0.285419 0.602363 -0.138322 -0.285453 -0.835934 0.378840 0.782123 -0.675816 0.146742 -0.570692 -0.100298 -0.895917 -1.047899 0.909053 -0.301950 -0.052380 -0.255710 0.252839 -0.665649 0.445017 -0.817607 0.224079 -0.016835 -1.120042 -1.138222 0.105314 -0.351105 -0.113768 0.391623 -0.606211 -0.253879 0.383415 0.620056 0.325979 0.094907 0.268341 -0.948353 -0.961830 -0.464167 -0.332027 0.618589 0.484041 -0.003181 -1.199055 -0.293714 -0.569632 1.196380 -0.243026 0.165157 -0.677180 -0.453155 1.149891 -0.234461 -0.042116 -0.895208 0.432192 0.753067 -1.722842 1.069582 0.668080 -0.513931 -0.527877 -0.632626 -0.058798 0.855274 1.147805 -0.555300 -0.554734 0.301558 -0.568269 0.014339 -0.641419 0.798339 -0.243937 0.518436 -0.893614 -0.603296 0.529861 0.629961 0.091072 1.054854 0.762030 0.851123 0.282349 1.064442 0.363621 -0.396989 -0.678751 -1.599542 0.866310 1.546100 0.377264 0.173424 -0.706153 -0.982398 0.133847 0.340488 0.931167 1.124934 -0.047004 0.891418 -0.489127 -0.902172 -0.352805 0.106339 0.247380 -0.443108 0.119928 -0.158580 0.335934 0.445554 -0.131111 0.677935 -0.535598 -1.322716 -0.158003 0.907833 0.598045 0.075358 1.129327 0.053263 -0.924055 0.085703 -0.081357 0.307826 -0.017384 -0.244384 -0.448634 -0.372393 0.205640 -0.425884 0.564587 0.024263 -0.166619 0.304282 -PE-benchmarks/n-queen-problem.cpp__main = 0.024480 -0.074440 0.185554 0.160291 0.109320 0.006089 0.107043 0.049446 0.012837 -0.390726 -0.180377 -0.132491 -0.057397 -0.003572 0.117371 -0.021393 0.139316 0.222189 -0.211690 -0.009017 0.121563 0.116731 0.138214 -0.048848 0.026694 -0.097885 -0.155407 0.109456 0.077951 0.257853 -0.165089 0.010156 0.205512 0.076041 0.015335 0.214261 0.276412 -0.023748 -0.002903 0.000611 0.383052 -0.069621 0.027827 0.153315 0.082522 0.262065 0.006512 0.167872 0.179230 -0.124581 0.128431 -0.448441 -0.057976 -0.019123 -0.247586 0.155182 0.203902 0.285417 -0.161900 0.186296 -0.023009 0.081357 0.046777 -0.251032 0.137209 0.156305 -0.026448 0.126666 0.297710 -0.225007 -0.049422 0.064752 0.141979 0.070264 -0.020594 -0.102814 0.106413 -0.694499 -0.089082 -0.235865 0.027355 -0.039140 0.269000 -0.209332 0.090283 0.352575 -0.142452 0.130637 -0.025734 -0.027071 -0.285304 0.064870 0.139899 0.096244 0.073815 -0.094885 -0.029341 0.042436 0.062685 0.145368 0.073142 -0.109848 -0.348425 -0.541597 -0.243595 -0.082407 0.017111 -0.065328 -0.249580 -0.032373 0.339961 0.176508 -0.339333 -0.041470 0.126320 0.182620 -0.287507 -0.143724 -0.122952 -0.061588 0.010016 0.072462 0.069584 -0.215745 0.007871 -0.226498 -0.062835 0.000562 0.134563 -0.113583 0.110561 -0.187423 -0.074526 0.093964 -0.051786 -0.051712 0.002394 -0.075977 0.150431 -0.163568 0.199170 -0.181707 0.026900 -0.067730 -0.121897 -0.085644 0.644431 -0.002794 0.156114 0.121010 -0.267240 -0.117823 -0.113151 -0.324876 0.133473 -0.016485 0.250133 0.128793 -0.055826 0.009304 -0.077834 -0.103960 -0.045385 -0.134041 -0.034202 0.009816 -0.123963 -0.138021 -0.085165 -0.382115 0.150143 0.386949 -0.141048 -0.028707 -0.163575 0.082797 -0.096273 -0.243136 0.197623 -0.106162 0.099065 -0.003103 0.045213 -0.202910 0.161102 -0.165239 -0.006201 0.000000 -0.314405 -0.306070 0.074579 -0.133346 -0.043835 0.184938 -0.180936 0.073733 -0.100591 0.127448 0.041166 0.018945 0.031281 -0.308501 -0.313534 -0.227355 -0.050908 0.117208 0.054823 0.088958 -0.229134 -0.137773 -0.081629 0.248174 -0.216783 0.023741 -0.000821 -0.105633 0.168241 -0.097774 -0.017005 -0.220943 0.120232 0.159020 -0.381049 0.206969 0.168730 -0.208172 -0.156577 -0.250338 0.061492 0.121863 0.366352 -0.126581 -0.009868 0.154792 -0.037830 -0.011158 -0.256819 0.137431 0.007946 0.105695 -0.269711 -0.169256 0.085357 0.231224 -0.049238 0.123132 0.268158 0.250474 -0.041417 0.300451 0.057616 -0.010196 -0.110022 -0.309375 0.149663 0.458916 0.154819 0.203016 -0.275519 -0.044756 0.091743 0.078155 0.223927 0.303942 0.170953 0.259549 -0.081880 -0.197364 0.073991 -0.045643 0.123293 -0.222201 0.155258 -0.136189 -0.008706 -0.022971 0.039758 0.070989 -0.031274 -0.287151 -0.002754 0.202906 0.116390 0.032243 0.267114 -0.005979 -0.224233 0.100985 -0.036261 0.122408 0.055222 -0.000884 -0.053432 -0.036290 0.040508 -0.143792 0.221714 -0.152731 -0.060811 0.081401 -PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = 2.695552 2.495700 -4.639805 11.838381 -1.558182 -2.340893 -0.371408 1.611555 -3.946084 -17.832176 -9.925895 5.387072 2.805460 4.123534 2.441086 3.749992 -1.703602 1.583543 -18.440112 3.451570 8.511172 4.021625 1.793639 -0.665238 2.367619 -3.362074 4.070058 0.197447 3.209648 10.841866 -5.126284 6.836215 9.208934 -2.951988 2.681836 6.263091 -1.932034 2.466485 -3.714770 0.153827 11.374554 4.384168 0.651405 3.998483 -1.215065 9.944398 1.230758 5.051799 -2.245181 -9.049737 2.946855 5.814183 -3.876180 -2.288838 -3.811819 4.563681 8.066432 7.979960 -3.901921 2.299615 -1.320647 -1.523276 2.969320 0.135482 9.590756 4.879272 7.784927 7.888823 9.482168 -5.333979 0.302601 3.031510 -1.000915 -1.877642 7.668986 -6.489453 -9.246210 -1.006617 -3.127832 -15.459217 -6.762234 1.710354 14.084993 -10.473981 0.426692 -0.065575 1.357505 10.227296 -3.729043 1.234122 -6.721355 -2.327056 -4.975419 12.053361 1.589977 -0.240954 -0.648555 4.175392 3.494398 5.198870 -0.331381 -7.071817 -2.459857 -10.683407 -4.558167 -4.112138 5.504827 9.134742 -12.866139 -3.001205 -5.062627 9.012322 -16.244393 0.755290 5.856736 7.943544 8.202328 -0.313101 -8.265866 1.527470 1.513211 -0.387283 7.491825 -4.396157 2.015713 -1.785433 0.116896 -0.126564 1.899758 1.477482 -11.165717 -7.720298 -2.090095 -3.652486 1.245609 3.800785 7.746480 -3.766640 7.013458 -5.417845 7.331127 -12.992842 -1.680749 -2.006567 -9.579529 -3.709968 3.242214 7.281804 4.261925 -6.878545 -7.169539 -2.245739 -13.342880 -10.314663 1.299619 2.663577 2.376660 6.337216 -2.276112 6.402383 -5.906004 2.941350 5.928280 -2.418350 -2.408223 -0.751538 8.735319 0.847324 -1.040090 -6.124702 -3.667793 -5.400993 0.187523 10.745418 -1.635435 -9.469741 -17.920271 -5.802891 8.963477 -3.473258 0.613093 -6.892146 -1.906867 -8.934025 0.343139 -10.387935 -1.062951 0.228949 -4.890592 -10.272718 1.826354 -1.177295 -4.736673 0.963532 -7.437708 -2.523347 9.488571 2.399146 4.615260 -1.599913 0.724905 -8.466872 -5.954754 4.160505 -8.022340 6.264173 4.157087 -2.125831 -8.305921 -3.362810 -8.716293 6.356582 -0.251548 3.156499 -3.179400 0.781068 8.815489 -6.902910 0.730412 -7.437858 1.292046 3.705114 -15.920982 11.354392 5.127239 -1.686578 1.977978 3.387020 2.192878 4.942281 2.723202 -5.965833 -7.813695 0.277304 -2.941730 0.991393 -3.894426 5.043447 -8.464962 -0.031564 -4.520542 -2.157322 5.331233 4.190661 0.497295 3.106573 4.137035 -4.491242 3.646422 5.875308 8.398309 -2.168713 -5.511767 -13.834278 6.371313 -5.253337 -1.968813 -3.900729 -2.691286 -4.817293 4.256529 -1.126628 8.609979 2.196174 -4.588616 7.887019 -13.158726 -9.334734 -6.422629 -0.254838 0.635682 0.260605 -2.338793 -3.504238 5.020263 5.148424 -1.562658 -0.572900 -7.930272 0.462862 1.243026 9.353907 -0.226416 3.345717 10.273775 3.544891 -4.270806 -1.504806 2.541571 -2.198754 -4.009879 -8.674736 -3.511405 0.798880 2.715781 -4.919421 1.246091 -4.830638 -2.542331 3.336360 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.492555 0.434797 0.695329 0.406308 -0.007689 -0.868092 0.618969 1.313903 -0.492890 -1.632101 -1.058722 -0.884692 -0.163305 -0.516233 0.735241 -0.379127 -0.305245 0.705698 -2.783905 0.548954 1.322495 0.970436 0.686826 -0.853377 0.438980 -0.096927 -2.063156 0.424751 0.110481 1.256200 -0.703497 -0.217117 0.807206 0.434177 -0.001745 0.934643 0.161444 0.239769 1.337915 0.418291 1.219068 0.793461 -0.468252 0.220284 0.572436 0.947713 -0.885949 0.477719 -1.295035 -0.799093 0.443350 -1.937653 -0.656964 0.255581 -0.001685 0.598917 1.925325 1.788386 -0.256563 0.940066 -0.943257 0.043544 0.237562 -1.084182 0.626920 1.406874 -0.381529 0.272365 1.602043 -0.407427 -0.050833 -0.053486 0.146520 -0.931191 -0.664297 -0.300378 0.027278 -3.388783 0.034680 -2.616740 -0.769868 0.179089 1.536122 -1.088009 1.092552 1.475695 0.445827 0.657206 -0.588450 -0.274932 -0.538184 0.217868 -0.470002 1.873528 -0.125570 0.137541 -0.004019 0.389211 0.993162 0.698312 -0.372648 0.134296 -2.010345 -2.313906 -0.309473 0.096702 0.022960 0.156075 -1.315272 -0.493836 2.051261 0.540326 -1.742993 -0.069298 0.843025 1.071348 -1.462657 0.343864 -1.294994 0.132304 -0.627989 -0.218443 0.447991 -1.115100 -0.268413 -1.100855 -0.592618 0.128504 0.213889 -0.488005 -0.869433 -0.437937 -0.222613 -0.983121 -0.102401 0.161628 -0.083448 -0.202066 0.516954 -1.404878 0.770293 -1.168363 0.538360 -0.108140 -1.053661 0.016574 1.289169 0.723588 -0.849062 0.143515 -0.714331 -0.640192 -0.655013 -1.088078 0.520693 0.040248 1.743188 -0.416512 -0.154214 -0.390363 -0.303598 -0.326381 -0.532024 -0.348825 0.316472 -0.391018 2.085298 -0.359441 -0.327295 -1.248483 0.169731 1.313265 -0.981881 -0.311029 -0.568952 1.193653 -1.002966 -1.075745 0.908800 0.014020 -0.100256 -0.756610 0.775133 -0.974386 0.722295 -0.542863 0.367566 0.196830 -0.746101 -1.098571 0.025440 -0.189610 -0.274902 0.034074 -0.306882 -0.430970 0.602586 0.535395 0.294682 -0.026649 0.489730 -0.939031 -1.241840 -0.674143 -0.036774 -0.021911 0.648591 0.319529 -0.662105 -0.053577 -0.743751 1.358265 0.208778 -0.155787 -0.929212 -0.275454 1.673721 -0.066046 -0.671027 -1.398835 0.130323 0.271647 -0.530902 1.263464 0.055883 -0.448547 -0.492002 -1.172807 -0.016518 1.135368 1.320797 -0.388106 -0.446269 0.314317 -0.931666 -0.113881 -0.639749 0.783530 -0.824944 1.027046 -0.463341 -0.217885 0.429262 1.012444 -0.177444 1.349836 0.495937 0.765100 0.577915 0.663241 0.313676 -1.077046 -0.451279 -1.063603 0.710087 1.003379 0.679182 -0.728778 -0.599999 -1.057087 0.215764 1.502355 1.007680 2.619661 0.121100 0.675216 -0.562387 -0.913112 0.043450 0.980781 0.336090 -1.093722 -0.557495 -0.048087 0.519900 1.117218 0.169070 1.615295 -1.252955 -2.325756 -0.592264 0.977239 0.190935 -0.655188 1.228720 0.070902 -0.730372 0.218896 -0.210820 0.803446 -0.327449 0.931550 -0.178625 -0.574673 0.097818 -0.439342 1.439833 0.021259 -0.598836 0.977506 -PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 2.587535 0.395081 -0.174020 2.942367 0.796995 -2.446835 0.674541 2.242153 -0.727975 -5.626631 -4.138404 1.067978 0.157630 -1.349804 1.558074 0.719270 -0.013098 1.105004 -7.096709 2.349025 2.441645 1.450899 -0.333004 -1.732813 0.940824 -1.289945 -1.618677 1.123557 0.179856 3.348837 -2.205176 0.750977 2.538805 0.308639 1.645270 2.825492 -0.799970 0.105597 1.730882 0.508893 5.081828 2.599959 -0.253822 1.937780 2.216252 3.310117 -1.246112 3.123502 -1.625964 -1.987718 1.821062 -0.836878 -2.158221 0.282028 -2.353403 2.191401 4.802277 1.916000 -1.951629 1.942694 -1.330846 0.066553 1.076725 -1.285851 3.863010 2.837403 1.496049 1.797024 5.196464 -1.212555 -0.275890 1.296572 2.470324 -0.704089 1.219825 -2.029324 -2.266413 -3.490850 -0.368132 -6.305721 -0.746110 -0.432568 5.865342 -3.339738 1.133766 2.073841 1.069785 3.114406 -1.947066 -0.899113 -2.227897 0.635277 -2.245463 5.775003 -0.261190 1.215689 -0.579176 1.530656 1.490935 2.450066 -1.040606 -1.791137 -3.328777 -7.363025 -1.950239 -0.860370 0.462128 0.336791 -4.878663 -0.843123 1.419834 3.152373 -5.256042 -0.284262 2.359576 1.703677 -0.189135 0.013870 -3.699575 -0.216919 -0.719428 0.583658 0.939331 -1.600285 -0.668291 -2.790866 0.009023 0.371802 1.205738 -0.662691 -3.458686 -1.354839 -0.614246 -1.061388 -0.361843 0.506371 0.932520 -2.394118 1.953786 -2.559254 2.449784 -5.095045 -0.020112 -2.198628 -3.469993 -0.268678 2.591985 2.487113 1.363028 -0.178385 -1.073775 -1.664486 -4.380705 -4.730226 1.143129 -0.856247 2.530511 -0.378690 -0.154028 -0.064735 -1.276246 -0.851774 1.007731 -1.955363 -0.016671 -1.872630 5.980836 -0.770345 -0.908673 -2.857157 -0.782230 2.040585 -0.860164 1.019089 -1.294634 -2.045789 -4.516739 -3.009920 2.731022 -0.711785 0.483164 -2.086622 0.965208 -3.401502 1.238948 -2.614223 0.680373 -0.478813 -2.068864 -3.363604 -0.530748 -0.474968 -0.577854 -0.731761 -2.266285 -0.303176 3.174523 1.871988 0.969972 0.607152 0.316421 -3.936587 -3.782133 -0.314876 -0.416942 2.682806 2.604398 0.215524 -2.485014 -0.626749 -3.727371 3.233205 -1.682851 0.115409 -0.940666 -1.144146 4.330279 -1.737956 -1.273542 -3.554646 0.758159 0.087333 -4.677015 4.708286 2.014371 -2.286524 -1.070027 -2.311036 0.961657 2.248812 3.983074 -1.785774 -1.229063 0.707960 -1.612059 -0.492039 -1.762663 2.753877 -2.260052 2.592652 -2.630895 -1.580923 1.925442 2.855277 -0.378256 2.042397 0.240274 0.592246 1.418571 2.990929 1.783364 -1.269016 -2.904562 -6.183585 1.341727 0.133383 0.195236 -0.554711 -1.182595 -3.255241 0.040706 1.104319 3.941855 3.208424 -0.069148 2.557166 -3.324197 -3.564815 -0.922367 1.216164 0.510295 -2.024012 0.036874 -1.560474 0.598953 1.392134 0.889509 1.624875 -3.359116 -3.596676 -0.530640 3.196089 1.020548 -1.158541 3.644916 1.056460 -1.806504 -0.198303 -0.022657 1.093925 -0.194155 -1.310923 -1.609720 -1.880692 0.393630 -1.529898 3.437430 -0.262381 0.717138 1.785846 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 3.116895 1.697126 -1.798947 4.862401 0.104154 -2.242672 -0.254030 2.801786 -2.023701 -7.314947 -5.483493 5.280990 0.299906 0.685402 2.782707 1.807014 -0.158297 0.238981 -9.351877 2.921084 2.122343 0.894309 -0.190542 -1.710620 1.446593 -0.511438 0.788821 1.318393 1.160745 4.250629 -3.149816 2.012583 3.318274 0.356728 3.489235 1.618097 -0.470617 0.569701 -1.890466 -0.885235 6.728655 3.429127 -0.113073 3.441449 1.743156 4.653789 -0.465363 3.683273 0.855347 -2.664459 2.310552 0.242812 -2.936368 0.492441 -2.947890 2.613651 3.274222 1.342511 -2.667405 2.141247 -0.360411 -0.491456 0.891891 -2.264663 5.642071 2.103718 3.718116 2.688696 4.811043 -2.221450 -0.943388 1.608892 3.251840 0.150544 1.133603 -3.999143 -3.491867 -3.377627 0.052057 -8.324968 -2.898421 -0.878868 7.602962 -5.071269 1.115665 1.486466 -1.038525 3.791459 -3.033795 0.294847 -3.401965 -1.162575 -1.513834 5.707922 0.665393 -0.052963 0.939321 1.786954 2.608109 3.882509 -0.469462 -2.513476 -2.588893 -6.191890 -1.630919 0.890945 2.095729 1.712662 -4.098830 -1.396195 -0.144412 5.380950 -6.112999 -1.495018 3.772378 1.733881 1.391810 0.771517 -3.570904 0.656205 0.776320 1.219152 3.691078 -2.706267 0.132160 -0.761494 -0.126552 -0.087170 3.091671 0.679274 -4.594699 -3.600400 -0.232414 -0.601381 -0.628743 -1.095566 0.707919 -2.220024 3.692083 -1.351871 3.628200 -5.679545 -0.698726 -1.794985 -2.712266 -0.509445 4.160770 4.035186 3.401371 0.066030 -1.342480 -1.248775 -5.222720 -5.464837 2.873368 1.024315 1.954177 1.083899 -0.251972 2.326310 -1.850896 -0.469750 2.165713 -2.775636 -1.722638 -1.801547 3.629087 -0.243912 -1.037659 -3.893534 -0.293121 0.422276 -0.608613 2.438911 -0.931074 -6.980657 -5.368775 -3.377940 3.863910 -1.135473 1.030023 -1.543812 1.130454 -3.714937 -0.155420 -5.203740 1.630557 0.426178 -3.674635 -4.041995 0.063760 -0.650793 -0.300275 -0.375618 -2.586956 -0.674829 3.425778 2.949355 0.814860 1.185361 1.081183 -4.789179 -4.630640 0.149589 -2.152489 3.758940 1.301291 -0.064658 -5.239630 -0.870457 -4.434764 4.101046 -2.984436 0.466295 -2.679835 -0.889269 4.887791 -2.285279 -1.287222 -3.442152 1.556807 2.212781 -8.410241 4.003419 3.403043 -1.578304 -0.925152 -0.717239 1.025150 3.529129 5.265603 -2.562157 -2.704187 0.133249 -0.907067 -0.065234 -1.608702 4.096984 -2.836669 0.965178 -3.220700 -2.096090 2.368098 2.409867 1.269482 2.775191 1.511889 0.892745 1.020652 4.059107 2.655074 -1.325654 -3.068930 -8.573860 2.110952 3.406740 -0.649046 0.467932 -2.275693 -3.841685 -0.214503 -1.555756 4.207276 0.628801 -1.105814 3.438839 -4.256000 -4.303300 -2.377445 0.979269 -0.524956 -1.248798 0.732717 -1.441196 1.330531 2.480520 -0.681698 0.807624 -2.007220 -2.691319 -1.313401 3.108098 1.471339 1.198234 4.748428 1.946272 -3.439396 -0.323927 0.157959 0.080676 -0.321079 -5.304851 -2.500100 -1.888968 0.458742 -1.734500 0.831518 -0.068354 -0.410380 0.974211 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/topological-sorting.cpp__main = 0.599953 0.215168 1.339743 -0.163384 0.614151 -0.171747 0.638561 1.186922 -0.520151 -1.256791 -1.529450 -1.141322 -0.440968 -0.386864 0.788383 -0.601870 0.503801 0.180688 -1.961895 -0.025258 0.640524 0.326309 0.405248 -0.211415 0.198492 -0.353548 -2.031033 0.966326 -0.071605 0.688171 -0.316562 -0.443794 0.460268 0.580620 0.085540 0.901613 0.156385 -0.219722 1.306809 0.030598 1.422451 0.087844 -0.089525 0.572970 0.985066 0.766116 -1.121589 0.921889 -0.603078 -0.309301 1.201690 -2.620374 -0.666259 0.206823 -0.565012 0.291510 1.796946 0.961482 -0.480213 0.956649 -0.569409 0.089958 -0.070731 -1.368458 0.365089 1.192302 -0.216601 -0.164836 1.061080 -0.629839 -0.570916 0.627418 0.425581 0.200364 -2.059446 -0.716759 1.088720 -2.927127 0.344933 -2.003072 -0.337795 -0.599667 1.640826 -0.167552 0.321077 1.322336 -0.620963 -0.029527 -0.220431 -0.346262 -0.591004 0.324291 0.074260 0.453449 -0.400914 -0.091394 0.571958 -0.090959 0.673081 1.089477 -0.703089 0.278916 -2.535319 -2.239925 -0.471344 0.303015 0.216685 -0.503987 -0.565635 -0.351310 1.658836 -0.381886 -0.532425 -0.530282 0.706672 0.888969 -2.228219 1.321691 -1.691355 -0.896650 -0.126772 0.273992 0.460861 -0.369692 -0.024367 -1.682079 -0.332555 -0.059000 0.306287 -0.563130 -0.442847 -0.579232 -0.167398 -0.628097 -0.301119 -0.579049 -0.504452 0.342606 0.431878 -0.621275 0.665740 -1.288193 0.407841 -0.636232 -0.584719 0.142921 1.577627 1.023211 -0.218148 1.148241 -0.280898 -0.391995 -0.028554 -0.351196 0.180855 -0.071530 1.903138 -0.725696 -0.095812 -0.177766 0.012982 -0.801243 -0.959857 -0.120946 0.295337 -0.756256 1.492857 -0.359804 -0.335388 -1.140453 0.848403 1.544604 -1.532816 -0.660471 -0.654374 1.137831 0.032850 -1.071126 0.474675 -0.043415 -0.061439 0.093657 0.789135 -0.811774 0.630815 -0.283604 -0.068874 -0.031863 -1.431627 -0.718915 0.264070 -0.268346 -0.266341 0.424268 -0.150142 -0.291832 0.759976 1.414534 0.445400 0.275321 -0.081599 -0.844815 -1.347911 -1.312112 0.330110 0.392722 0.982946 0.134872 -0.496653 -0.120332 -0.453536 1.214014 0.333746 -0.331316 -0.559669 -0.369899 0.922924 0.035623 -0.017780 -1.070554 0.144684 0.530832 -2.080644 0.661604 0.188182 -0.695208 -1.221262 -1.857694 -0.273382 0.616215 1.332529 0.123564 0.179427 0.431637 -0.385688 -0.137252 -0.861549 0.679844 0.308618 0.764632 -1.019672 -0.875866 0.507208 0.912274 -0.178458 1.166724 0.642827 1.889621 0.664664 1.124434 -0.253137 -1.109448 0.040026 -1.692093 0.517005 2.591389 0.333421 0.180105 -0.674891 -1.208650 -0.290754 0.775727 0.781494 2.037298 0.722840 0.681235 0.791902 -0.491776 0.084165 0.733708 0.400847 -1.152216 -0.311764 -0.176021 0.111911 0.431099 -0.078678 1.556192 -0.868443 -2.894968 -0.763942 0.834557 0.405436 -0.122483 0.821606 -0.146790 -0.615164 0.162419 -0.000367 1.154754 0.723316 0.588051 -0.385245 -0.834287 -0.207333 -0.075281 0.862588 0.491197 -0.057279 0.883502 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.392683 0.096793 0.242136 0.124632 0.276006 -0.378382 0.150170 0.401234 -0.125534 -0.690190 -0.539684 -0.212767 -0.101853 -0.373213 0.313666 0.090202 0.155853 0.348295 -0.663477 0.338626 0.297772 0.294764 0.002472 -0.276327 0.162573 -0.121594 -0.769538 0.077413 0.014185 0.389627 -0.405945 -0.039368 0.277724 0.131019 0.151962 0.364932 0.113386 -0.146076 0.592077 0.119782 0.787381 0.084592 0.128109 0.317053 0.504124 0.376533 -0.461166 0.577429 -0.223444 -0.156455 0.416794 -0.805157 -0.253857 0.262165 -0.401294 0.415766 0.652765 0.335488 -0.310251 0.342961 -0.148199 0.137265 0.107113 -0.530148 0.428710 0.579730 -0.101102 0.145100 0.838089 -0.049749 -0.050812 0.140259 0.482771 -0.025386 -0.124396 -0.249234 0.263436 -1.072194 -0.092633 -0.759951 0.228250 -0.208705 1.009647 -0.415137 0.306649 0.664868 0.094069 0.316375 -0.156588 -0.195474 -0.324727 0.261111 -0.162962 0.472388 -0.164426 0.151751 -0.235946 0.089694 0.108863 0.282620 -0.222464 -0.059947 -0.950167 -1.137542 -0.497316 0.015371 -0.128770 -0.270096 -0.751256 -0.040690 0.665241 0.364195 -0.683658 -0.083420 0.248024 0.206664 -0.563105 0.342302 -0.698886 -0.268400 -0.217561 0.218580 -0.214097 -0.163916 -0.185574 -0.850575 -0.186252 0.042987 0.244037 -0.328488 -0.243871 -0.133518 -0.197247 -0.148229 -0.160507 -0.040341 -0.027540 -0.365398 0.228524 -0.318446 0.205664 -0.634099 -0.106846 -0.394701 -0.506764 0.031054 0.902936 0.249773 0.184713 0.355135 -0.220240 -0.413896 -0.443943 -0.392112 0.148671 -0.438041 0.613923 -0.095279 0.042906 -0.263578 0.010185 -0.387907 -0.119698 -0.354821 0.068086 -0.446806 0.817817 -0.356819 -0.140018 -0.729338 0.032709 0.856937 -0.382541 -0.312994 -0.279866 0.325469 -0.305132 -0.503561 0.285289 -0.066774 0.276101 -0.175955 0.397122 -0.421473 0.282138 -0.237896 0.014369 -0.103495 -0.409856 -0.424545 -0.055047 -0.108557 -0.202014 -0.112875 -0.215430 0.126380 0.254145 0.413926 0.068035 0.087241 -0.081981 -0.698346 -0.779372 -0.414274 0.156204 0.230759 0.476951 0.173315 -0.409340 -0.098079 -0.443078 0.552648 -0.461119 -0.107749 0.009092 -0.150221 0.564722 -0.198167 -0.183060 -0.599094 0.132814 -0.098280 -0.922631 0.518875 0.141372 -0.521343 -0.318675 -0.866126 0.234736 0.310220 0.787255 -0.027128 0.175667 0.219195 -0.171295 -0.137852 -0.502279 0.438563 -0.180369 0.612861 -0.469146 -0.303471 0.248766 0.563341 -0.172222 0.297393 0.089782 0.476012 0.185118 0.481820 0.102626 -0.255327 -0.275723 -0.758401 0.031778 0.636845 0.262710 0.173072 -0.296816 -0.381222 -0.107835 0.245680 0.579573 0.571321 0.474648 0.312873 -0.197389 -0.436898 0.249516 0.331978 0.148895 -0.526566 0.123877 -0.247591 -0.146366 0.154972 0.299002 0.423076 -0.470414 -1.019154 -0.178830 0.489004 0.284848 -0.256693 0.450453 0.108829 -0.274097 0.171040 -0.067228 0.540439 0.045518 0.113778 -0.193752 -0.365242 -0.110701 -0.240692 0.811267 -0.059340 0.120921 0.261498 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 1.097823 0.051751 0.094173 1.009497 0.263941 -1.620288 0.533990 1.144180 -0.665592 -1.864350 -0.932163 0.490340 0.004483 -1.093399 0.282627 0.239937 -0.388125 0.398928 -3.050030 1.303321 0.829634 0.545115 -0.443839 -1.261030 0.231460 -0.633412 -0.416621 1.205759 -0.345909 1.223970 -0.812909 -0.187799 0.854222 0.387203 0.786531 1.353914 0.101106 -0.053895 0.777315 0.708801 1.947280 1.409340 -0.788331 0.252452 1.272310 1.365523 0.123394 0.359810 -1.437190 -0.529044 -0.014193 0.289331 -1.135315 -0.387392 -0.953725 0.493589 1.806910 1.067656 -0.794397 1.032626 -1.164568 -0.242555 0.592591 0.236245 1.789505 0.712368 0.727675 0.570315 2.449901 -0.536357 -0.286277 0.691714 1.322685 -0.620611 0.646840 -0.175672 -1.392887 -2.633669 0.136609 -3.045685 -0.748447 0.347965 1.842834 -1.120328 0.497652 1.088178 0.837062 1.192670 -1.359183 -0.652646 -0.916759 0.237273 -0.913426 3.341865 -0.049675 0.639764 -0.028693 0.981376 1.103892 1.226683 -0.352068 -0.868248 -1.108151 -3.091777 -0.487310 -0.430706 -0.551985 -0.388034 -1.830969 -0.626152 1.748207 1.807313 -2.014123 0.018962 1.216808 0.437656 0.419696 -0.993454 -1.140322 0.627021 -0.601548 0.000730 0.587387 -0.775514 -0.467660 -0.256232 0.694490 0.242891 0.274958 -0.168313 -2.149412 -0.168651 0.407839 -0.789661 -0.093709 0.030059 -0.180476 -1.280590 0.459275 -1.587133 1.265631 -1.966191 0.763971 -0.664154 -1.305449 0.160564 0.372163 1.188993 -0.240025 -0.183328 -0.293320 -0.238606 -1.557286 -2.739485 0.682918 -0.187643 0.675982 -0.880433 -0.105637 -0.476655 -0.328474 -0.496178 0.733718 -0.858367 0.127928 -0.687654 2.646083 0.088119 -0.389187 -0.659011 -0.350926 1.137610 0.724818 0.362327 -0.807110 -1.297074 -1.648236 -1.333050 1.005561 -0.006756 -0.515840 -0.886744 -0.096212 -1.523654 1.138723 -0.733996 1.002489 -0.392032 -0.522631 -1.244580 -0.268625 -0.210833 -0.329373 -0.726442 -0.711157 -0.325898 0.458515 -0.455062 0.183803 -0.027911 0.427247 -1.279378 -1.479848 0.217497 0.522891 1.299693 0.846010 0.570989 -0.996985 0.106327 -1.579872 1.537816 -0.549437 -0.015768 -0.268577 -1.091136 2.325807 -0.466046 -0.826010 -0.963640 0.680887 -0.172977 -0.320276 2.801571 1.555445 -1.081033 -0.752240 -0.490981 0.015816 1.299903 1.890538 -1.089586 -0.622661 0.408390 -0.403814 -0.392306 -0.020243 1.071524 -0.908266 1.483964 -1.121503 -0.832280 0.427883 1.481338 -0.151822 0.822906 -0.701010 -0.138294 -0.388832 1.262247 0.425778 -0.084476 -1.224753 -1.830938 0.577713 -1.221981 0.048130 -0.253406 -0.229987 -1.494653 -0.046399 0.558951 1.752932 1.466966 -1.225747 0.858682 -1.573482 -1.590863 -0.661528 0.517894 0.060740 -0.964429 0.655836 -0.615592 0.198303 0.391661 0.404488 0.503612 -1.044282 -1.057814 -0.357203 0.756160 0.798785 -1.462507 1.547572 0.079836 -0.505411 -0.459025 -0.006305 0.427761 0.395740 -0.076331 -0.724214 -1.177719 0.612072 -0.353754 1.770807 0.262660 0.455487 1.027939 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 1.373709 0.617027 0.459782 1.240464 0.135511 -2.427905 0.705814 2.033473 -1.284852 -2.212828 -1.331790 0.095868 -0.127841 -1.340687 0.634636 -0.101100 -0.724070 0.516374 -4.723842 1.745414 1.145362 0.899059 -0.426206 -2.166900 0.410596 -0.049226 -1.196128 1.637546 -0.395166 1.615911 -1.301305 -0.505591 0.832015 0.839174 1.262162 1.318631 0.114437 0.034444 1.129817 0.721488 2.358816 2.186638 -1.537006 0.266380 1.739763 1.623209 0.192695 -0.483426 -2.938945 -0.489194 -0.512881 -0.218054 -1.457493 -0.363360 -0.834291 0.564788 3.002902 2.062467 -0.831367 1.477063 -1.519827 -0.301901 0.786961 -0.044525 2.288026 0.943715 0.722733 0.642178 2.966836 -0.762116 -0.237050 0.352935 1.913096 -1.298067 -0.288165 -0.224924 -1.491946 -4.615066 0.314714 -5.178867 -1.084367 0.714789 2.128378 -1.414702 1.426876 1.550461 0.741670 1.118339 -2.176653 -0.852565 -1.011571 0.075771 -1.542919 4.454704 -0.259450 0.536640 0.506497 1.528815 1.945549 1.661701 -0.668821 -0.757619 -1.343496 -4.154066 -0.201583 0.270930 -1.007801 -0.606736 -1.719129 -1.145948 2.843529 2.214351 -2.415367 -0.370060 1.433190 0.599850 -0.725567 -1.761974 -1.603578 1.199588 -1.467193 -0.033261 1.206562 -1.339347 -0.479255 -0.091299 0.309052 0.490118 0.734192 0.265223 -2.715448 -0.265469 0.558004 -1.497330 -0.493960 -0.252769 -0.845660 -1.146036 0.553209 -2.335837 1.815817 -2.364097 1.563617 -0.690558 -1.594786 0.679374 -0.341080 1.501031 -1.414305 0.093796 -0.107504 0.011570 -1.580884 -3.263554 1.559171 0.520661 1.164624 -1.610062 -0.113857 -0.660823 -0.433151 -1.098641 1.091522 -1.221838 -0.082807 -1.247666 4.099660 0.241489 -0.682696 -0.712265 0.152394 2.037754 0.617219 0.169035 -1.342168 -0.616861 -1.996180 -1.621256 1.357108 0.170616 -1.002614 -0.830327 0.416936 -2.115345 1.815936 -1.027447 1.783631 -0.352753 -0.628767 -1.570637 -0.558282 -0.225032 -0.239528 -0.942888 -0.531411 -0.514738 0.628740 -0.375484 -0.162434 0.086602 1.385542 -1.385078 -2.099200 0.051605 1.107019 1.425603 0.784908 0.891050 -1.603573 0.333416 -1.708545 2.430827 0.195155 -0.068663 -1.051118 -1.113487 3.200883 -0.355940 -1.257563 -1.167311 0.895635 0.216554 0.039052 3.592345 1.851658 -1.241860 -1.047466 -1.117803 0.100274 1.764542 2.808205 -1.550768 -0.962330 0.548329 -0.715402 -0.599474 -0.421541 1.476822 -1.007413 1.749757 -1.257650 -1.011632 0.383494 1.557097 0.183329 1.657162 -0.842328 -0.002097 -0.916216 1.880248 0.430867 -0.375428 -1.464461 -1.548273 0.821895 -1.035363 0.614480 -0.754273 -0.066547 -2.329639 -0.430013 1.336846 2.072429 3.063611 -2.017563 1.059431 -1.806775 -1.803445 -0.950145 1.313533 0.083569 -1.636508 0.500516 -0.744972 0.403979 1.012303 0.466361 1.281575 -1.185397 -2.245731 -1.021728 0.835065 0.881330 -2.151892 2.021141 0.073132 -0.980664 -0.422107 0.009548 0.650819 0.382054 0.405591 -1.012623 -1.662845 0.870016 -0.479566 2.274651 0.698076 0.270360 1.450641 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 1.273200 0.685082 0.599349 0.880287 -0.001279 -2.884929 1.264812 2.429780 -1.284584 -2.118976 -0.927537 -1.163443 0.093334 -2.055965 0.409853 -0.038916 -1.205547 1.148819 -4.938938 1.795323 1.736531 1.426015 -0.348684 -2.709875 0.257631 -0.504965 -2.262653 1.990394 -0.757267 1.865958 -0.924151 -1.009440 1.116710 0.747038 0.655418 2.137680 0.584952 0.287406 2.178192 1.835994 2.218516 2.576332 -2.183794 -0.437845 1.873503 1.847199 0.218490 -1.164879 -5.212238 -0.677920 -0.975366 -0.431369 -1.686743 -0.914716 -0.476600 0.407444 3.951590 3.116859 -0.852024 2.080451 -2.166524 -0.491442 1.051996 0.387898 2.083830 1.291874 0.418068 0.587011 3.726346 -0.653680 -0.178435 0.233868 1.307807 -2.322436 0.165209 0.227212 -1.729010 -5.888601 0.509659 -5.836651 -1.376421 1.360447 2.013497 -1.608158 1.649975 2.432014 1.759273 1.338428 -2.357863 -1.550129 -0.796308 0.196945 -1.898727 6.065700 -0.159761 0.900503 0.190298 2.046319 2.453315 1.490285 -0.550759 -0.742956 -2.133093 -4.593727 -0.275731 -0.350836 -1.491575 -0.610787 -2.139652 -1.796824 4.197096 1.960598 -3.142601 0.417667 1.967630 1.060305 -0.333342 -2.596607 -1.920404 1.898078 -1.960773 -0.718189 0.899002 -1.729207 -0.863187 0.151479 0.754171 0.563960 -0.120719 -0.198160 -3.616059 0.291544 0.714228 -2.299539 -0.130385 0.281660 -0.863603 -1.793391 0.335322 -3.563658 2.022049 -2.863754 2.276433 -0.174811 -2.423891 0.517239 -1.111492 1.269129 -2.543859 -0.579229 -0.607301 -0.045330 -1.728405 -4.139521 1.432171 0.465905 1.608895 -2.150217 -0.362978 -1.543375 -0.457782 -0.801989 1.026310 -0.931649 0.601111 -0.836909 5.982538 0.378903 -0.853522 -0.498560 -0.277654 2.460733 1.438925 0.039882 -1.591184 0.661325 -2.156272 -1.758631 1.482648 0.432114 -1.410180 -1.472655 -0.024019 -2.876016 2.501141 -0.745489 2.273029 -0.452592 -0.110310 -1.743406 -0.400094 -0.172612 -0.526298 -1.122814 -0.545379 -0.829495 0.319234 -1.601692 -0.143524 -0.599346 1.580171 -1.230657 -2.042022 0.296108 1.279813 1.394359 1.043812 1.381193 -0.961531 0.883738 -1.889436 2.592668 1.014393 -0.201259 -1.059905 -1.361836 3.962801 -0.219018 -1.702624 -1.674181 0.897143 -0.402414 2.191573 4.580509 1.996396 -1.274439 -1.117814 -0.693538 -0.325193 2.094415 2.575373 -1.688923 -1.365909 0.796117 -1.283120 -0.653325 -0.159076 1.261748 -1.453360 2.656171 -1.196812 -0.630740 0.374703 2.289648 -0.372321 2.294040 -1.297720 -0.458437 -1.400428 1.560608 0.300853 -0.571225 -1.447739 -0.607087 0.979158 -3.125300 0.683073 -1.752492 0.462627 -2.221307 0.032926 2.545245 2.302666 4.707761 -2.775864 1.017263 -2.244653 -2.281752 -0.928888 1.646120 0.511402 -1.979076 0.119813 -0.517928 0.802316 1.155935 0.712699 1.962306 -2.135887 -2.355251 -0.985068 1.146265 0.637692 -3.400717 2.438022 -0.584203 -0.437029 -0.565434 -0.236637 1.063687 0.780976 1.747289 -0.923696 -1.912155 1.273679 -0.494921 3.263491 0.423835 0.129882 2.454630 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 2.123171 1.504234 -2.997055 7.639392 -0.998970 -1.295679 -0.216833 1.560278 -2.357287 -12.110948 -6.785657 4.301950 1.709746 2.917098 1.766530 2.545974 -0.846667 0.995567 -12.058007 2.288860 5.499774 2.545887 1.148396 -0.233295 1.613822 -2.359694 2.523834 0.024491 2.366598 7.296774 -3.493658 4.440734 6.208337 -1.898874 1.916216 4.233868 -1.001245 1.294285 -2.678332 -0.445774 7.806553 3.132419 0.281707 3.034028 -0.783488 6.739778 0.440651 3.828664 -1.125362 -6.132287 2.010055 2.819387 -2.953916 -1.293215 -2.701516 3.192570 4.747764 5.023638 -2.687829 1.596848 -1.029781 -0.964817 1.828051 -0.349656 6.283717 3.175728 5.178804 5.334990 6.167538 -3.817645 -0.008011 2.431266 -0.527621 -0.585429 4.893347 -3.987615 -5.730855 -1.081509 -1.843132 -9.888012 -4.850901 0.626086 9.926261 -7.159793 0.385868 0.272761 0.576376 6.766101 -2.498048 1.071921 -4.776836 -1.583654 -2.598819 7.344500 1.085830 -0.270347 -0.449320 2.641004 2.249127 3.635220 -0.026875 -4.708893 -2.313443 -6.844138 -2.776958 -2.734325 3.740737 6.123048 -8.427686 -1.823841 -2.772017 6.771087 -10.615286 0.498062 3.975824 5.102231 5.721068 0.840125 -5.385762 0.935239 1.295683 -0.292692 5.006155 -3.143947 1.352309 -1.073407 0.215467 -0.218331 1.470176 1.085839 -7.770648 -5.346675 -0.951081 -2.191707 0.725380 2.446418 5.138781 -2.691103 4.801142 -3.335049 4.872061 -8.418527 -1.320677 -1.301438 -6.142790 -2.552611 3.825687 5.382387 3.413981 -3.982089 -4.686130 -1.744502 -8.636549 -6.869187 0.984683 1.791163 1.792320 4.275437 -1.381083 4.473522 -3.871270 2.021481 3.231471 -1.752542 -1.531260 -0.272553 5.167473 0.332514 -0.593396 -4.454271 -2.275028 -3.358198 -0.178605 6.942848 -1.139350 -6.719234 -11.643495 -4.004825 6.023608 -2.402083 0.634560 -4.257484 -1.233022 -5.484026 -0.061597 -6.887824 -0.429230 0.155734 -3.760079 -6.986354 1.438449 -0.857810 -3.356704 0.915246 -4.831436 -1.622098 5.973226 1.748427 3.019838 -0.880277 0.351443 -5.789654 -4.108602 2.492799 -5.589024 4.689025 2.932485 -1.693109 -5.709294 -2.401575 -5.915205 4.698549 -1.123615 2.177366 -2.323628 0.364276 5.814370 -4.550661 0.219793 -5.332609 1.275293 2.810801 -11.048652 7.194069 3.644024 -1.200006 1.201435 1.993230 1.381295 3.691598 2.191804 -3.844297 -5.130816 0.274072 -1.888230 0.707358 -2.507870 3.518973 -5.489685 0.000678 -3.177571 -1.551928 3.594707 2.729850 0.443655 2.127010 3.138820 -2.375371 2.648576 4.074570 5.731862 -1.585420 -3.962905 -9.583443 4.541030 -2.204746 -1.426249 -2.196914 -2.429589 -3.252029 2.723428 -1.367522 5.622922 0.942162 -2.626220 5.349835 -8.726273 -6.211290 -4.063917 -0.247204 0.307754 0.248665 -0.914057 -2.098432 3.339042 3.401134 -1.181146 -0.488375 -5.027793 -0.008325 0.841132 6.144906 0.328760 2.580141 6.836353 2.453352 -3.180926 -0.844143 1.646681 -1.422011 -2.830496 -6.263898 -2.326961 0.551189 1.679463 -3.336567 0.696365 -2.756713 -1.953976 1.967741 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/binomial-coefficient.cpp__main = 0.751340 0.162771 -0.078954 0.439950 -0.029894 -0.616061 0.244812 0.872644 -0.327484 -1.545050 -1.449215 -0.407129 0.043039 -0.449802 0.813305 0.311458 -0.100745 0.352610 -1.877429 0.600693 0.854707 0.369322 -0.005790 -0.200366 0.268584 -0.332696 -1.776027 0.113267 -0.031770 0.939809 -0.554590 0.268586 0.710739 0.006387 -0.038528 0.657659 -0.403374 -0.070540 1.202282 0.446399 1.200127 0.430693 -0.064884 0.283586 0.497462 0.805672 -1.227486 1.506615 -0.860437 -0.570634 1.306865 -1.492433 -0.636865 0.576383 -0.375861 0.563902 1.567064 0.688357 -0.262325 0.624766 -0.873302 0.182709 0.220766 -0.948552 1.072121 1.394164 0.338278 0.366197 1.331211 -0.129235 0.076031 0.241138 0.316991 -0.434429 -0.419917 -0.530052 0.267502 -1.867377 0.018815 -1.780575 -0.196781 -0.293797 2.178451 -0.966226 0.222231 0.915462 0.387824 0.896562 -0.574667 0.114224 -0.455833 0.285081 -0.410163 1.133102 -0.231573 0.281958 -0.507405 0.229913 0.340485 0.453063 -0.615900 -0.029783 -2.215010 -1.980685 -0.931308 0.107739 0.063299 0.104388 -1.794868 -0.117221 1.281812 0.368664 -1.485065 -0.003749 0.665877 0.721926 -0.381425 1.619038 -1.873937 -0.380101 -0.177175 0.431719 0.218376 -0.246259 -0.016340 -1.866877 -0.097467 0.139034 0.225278 -0.434472 -1.129148 -0.304113 -0.178187 -0.668558 -0.025495 0.291462 0.349090 -0.329934 0.570562 -0.633797 0.498461 -1.791534 -0.201933 -0.699362 -1.143592 0.063725 1.627272 1.437300 0.252118 0.409208 -0.589108 -0.664843 -1.232798 -0.832188 -0.133424 -0.514266 1.284576 -0.371048 0.018201 -0.170860 0.011249 -0.081713 -0.325301 -0.539213 0.180815 -0.674742 2.121665 -0.294034 -0.332479 -1.253612 -0.273894 0.852750 -1.025921 -0.074699 -0.168231 0.333730 -1.100248 -0.851653 0.707605 -0.091130 0.397621 -0.661509 0.710339 -1.193112 0.321132 -0.478473 -0.201687 0.193387 -0.894605 -0.897707 -0.042037 0.079535 -0.633525 -0.306847 -0.468348 -0.185630 1.172647 0.987679 0.520003 0.254579 -0.174524 -1.109455 -1.395449 -0.589268 -0.308580 0.734378 1.289273 -0.002880 -0.623323 -0.088606 -1.202741 1.205710 -0.632813 -0.117653 -0.471960 -0.172666 1.155596 -0.513300 -0.588529 -1.282371 0.110491 -0.208337 -2.064237 1.099725 0.338898 -0.625947 -0.292599 -1.384962 0.403515 0.723042 1.125088 -0.052439 0.132520 0.063200 -0.341268 -0.151012 -0.575897 0.896299 -0.805152 0.654771 -0.505269 -0.238052 0.671559 0.915126 -0.168633 0.712105 0.122475 0.795885 0.809435 0.463009 0.297359 -1.236527 -0.332384 -1.946285 0.282271 1.011980 -0.096971 0.018327 -0.708272 -0.804208 -0.157757 0.307282 1.035583 1.106235 0.595977 0.579051 -0.479851 -0.862811 -0.091916 0.858665 0.003456 -0.727735 -0.025046 -0.153635 0.095573 0.878278 0.300759 0.961710 -1.423107 -2.112255 -0.384977 1.153137 0.232752 -0.365506 0.920181 0.285365 -0.460338 -0.101018 -0.104893 0.545289 -0.026497 0.135787 -0.316300 -0.486196 -0.096375 -0.501525 1.105523 0.052791 -0.097912 0.646346 -PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 3.014311 0.716117 -3.761482 6.462703 -0.560672 -1.338119 -0.197066 0.899095 -1.698489 -9.796256 -6.018427 5.796097 1.344684 1.265827 1.437245 3.150082 -0.736470 0.298222 -7.931259 2.343968 3.299323 0.300541 -0.725902 -0.046724 0.826851 -2.707296 2.162582 0.506497 1.268342 5.406408 -2.521460 3.440564 4.831453 -1.217665 1.494846 3.433325 -1.719058 0.908768 -2.065925 -0.799979 6.487903 2.930617 0.132286 2.450342 -0.139730 5.391226 -0.754966 6.068569 -0.598521 -4.324456 3.180486 2.888511 -3.035050 -0.150741 -3.015297 2.595921 3.404594 1.742146 -2.127421 1.281629 -2.551273 -0.120069 1.442010 0.061476 6.109637 3.087073 5.104598 4.296509 5.254508 -3.285866 -0.372166 3.277089 0.777833 -0.013859 4.674747 -2.666229 -5.278568 1.151559 -0.774145 -6.558218 -3.495396 0.027911 10.860878 -5.725669 -1.583361 -0.014699 1.631976 6.007082 -2.917225 1.831738 -3.865290 -0.353090 -2.640429 7.291440 1.467638 0.778694 -1.717169 1.800306 1.466026 3.374249 -1.015066 -3.669430 -2.999869 -6.588583 -2.888802 -2.413676 3.006487 4.111972 -7.842029 -1.044497 -0.500162 6.717543 -8.113329 0.374582 3.828634 3.242631 6.864829 3.448537 -5.272495 0.685091 1.757411 0.292422 3.998392 -1.191819 0.710869 -1.437121 1.690752 -0.619177 1.393066 0.732154 -8.534118 -3.401881 -0.017833 -1.958197 1.063310 1.831158 4.208778 -2.852046 3.836420 -1.593546 3.597740 -8.180871 -1.218728 -2.233967 -5.763958 -1.618792 4.654919 6.947329 5.111771 -2.486500 -2.413874 -2.325020 -7.992899 -6.860994 -0.212293 0.532906 1.057276 2.042368 -0.561329 3.471456 -2.787429 2.233662 2.918673 -2.274135 -1.080319 -0.468086 6.606187 0.052183 -0.932763 -3.953537 -2.850313 -3.167165 -0.342049 5.557603 -0.208706 -8.850335 -9.437637 -3.775537 4.641450 -2.055045 0.848740 -3.573433 -1.112080 -4.361407 -0.522232 -4.817604 0.310059 0.638451 -3.407646 -5.565987 0.765637 -0.147746 -3.562468 -0.210567 -4.261038 -1.208797 5.783915 0.700070 2.732765 0.702568 -0.517562 -5.136619 -3.741868 2.085594 -4.433252 4.829552 5.017211 -1.408335 -4.411333 -2.098629 -6.642161 3.739689 -3.593770 1.533676 -1.788598 -0.370006 4.891690 -4.166242 -0.586115 -4.237245 1.385550 1.255053 -10.603784 6.290240 4.554590 -1.468611 0.501820 0.921399 1.237048 3.147365 3.143642 -3.523729 -3.129678 -0.061037 -1.243839 0.188232 0.296915 3.570314 -4.674328 0.139070 -2.814308 -1.381454 2.950412 2.730036 0.333038 0.993688 1.399000 -1.580611 3.535670 3.086118 4.368691 -2.104809 -3.986196 -11.474394 3.259003 -3.018406 -3.196114 -0.190870 -2.075467 -3.245434 1.551163 -3.041315 5.099727 -2.140217 -2.163306 4.221936 -6.918441 -5.258114 -3.264616 -0.361971 -0.516337 -0.330654 1.140161 -1.568688 1.601453 2.257091 -0.897098 -1.163804 -4.163014 -0.309726 0.502972 5.379244 1.195521 1.469883 5.200186 2.413848 -2.507303 -1.613035 0.907392 -1.191395 -1.276522 -6.892941 -2.056375 -0.229040 1.194841 -2.488913 0.878706 -0.691222 -0.925484 1.703340 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = 4.423770 1.005486 -4.421350 9.383277 -1.401763 -1.620493 0.234772 2.375991 -2.952547 -15.370608 -10.139880 8.420105 1.942446 3.052590 2.090697 4.114639 -1.221009 0.153131 -14.792057 3.485741 5.826880 1.237718 0.616346 -0.060642 1.697631 -4.204412 3.174134 1.123983 2.278162 8.947713 -3.821436 5.052410 7.816077 -1.461170 2.816830 6.010105 -2.733752 1.169257 -3.284791 -1.829533 9.907811 5.253313 0.182319 3.558973 -0.766692 8.691002 0.196596 8.031290 0.061679 -7.376170 4.450085 1.505898 -5.658570 -0.510340 -4.151634 3.572936 4.540892 3.887938 -3.110850 2.303185 -3.851583 -0.875868 1.955156 -0.969532 8.919300 3.648993 7.513474 6.026477 7.380516 -5.842253 -0.823822 5.467631 0.660957 0.114271 5.653855 -5.429179 -8.026031 -0.173471 -0.643824 -12.438942 -6.991792 0.394394 16.311485 -8.867100 -1.406569 0.223501 0.422141 8.618578 -4.270055 2.342843 -6.380399 -1.126961 -2.932895 9.464896 1.868138 -0.036572 -0.597313 2.844777 3.058824 5.678422 -1.385683 -5.536561 -4.958447 -9.973186 -2.246530 -3.451719 5.355012 6.922298 -10.618538 -2.104231 -1.597718 10.551384 -12.399884 0.502812 6.706742 5.527011 8.285830 4.821291 -6.730500 1.049292 2.961111 0.749264 8.071245 -3.523705 1.539117 -0.885266 2.490652 -0.686222 2.259480 1.383070 -12.318100 -6.796132 0.329674 -2.722988 1.127642 2.342879 6.037315 -2.880755 6.335586 -3.077153 6.296623 -11.791438 -0.718511 -2.962860 -7.934906 -2.726487 8.683498 10.927851 6.686845 -3.907883 -3.469866 -2.539779 -11.006359 -9.546297 0.677237 1.863504 2.664056 3.321159 -0.865406 6.062684 -4.339555 3.419496 2.628774 -2.753278 -1.574603 0.072442 7.252461 0.673116 -1.370553 -5.987309 -3.248317 -4.859744 -1.281665 8.393678 -0.856937 -13.900574 -13.853995 -6.098295 7.546583 -2.904524 0.791816 -5.168428 -1.574304 -5.454036 -0.742859 -8.126582 0.613997 1.257218 -6.200957 -8.785823 1.285482 -0.644065 -4.752035 0.694893 -5.475594 -2.761618 8.923423 2.581401 4.345237 0.933692 0.014455 -7.432990 -5.126599 2.717150 -7.208810 7.556514 6.395595 -2.660563 -7.802774 -3.217008 -9.023282 6.134128 -3.612950 2.306042 -4.385350 -0.708324 7.898296 -5.878788 1.131305 -6.414121 2.294515 3.613808 -18.669549 8.672796 7.435370 -1.487861 0.570615 1.899661 0.827580 5.681571 4.600426 -4.791889 -5.523862 -0.281757 -2.745397 0.720604 -0.236018 5.410454 -7.102607 -0.441803 -4.146769 -2.449022 4.679765 3.393242 1.170655 2.305731 3.340228 -0.858993 5.371919 5.192176 6.312846 -3.485932 -6.630909 -18.430208 6.173655 0.576719 -4.033362 -0.070828 -3.354218 -5.266901 2.682680 -4.791455 7.479187 -0.761497 -3.985972 6.776480 -9.706966 -7.926307 -5.746532 -0.432881 -0.803591 0.048810 0.801249 -2.246597 3.654409 3.815949 -2.377392 -0.861574 -5.488749 -1.187118 0.701801 8.246830 2.640817 3.590034 8.422029 3.067015 -4.068331 -2.393388 1.925496 -1.928343 -2.348419 -9.902158 -3.443552 -0.180107 2.185205 -3.558968 0.307507 -0.850566 -1.976940 2.530912 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.657876 -0.162706 0.514633 0.489837 0.502816 -0.511951 0.489073 0.712411 0.178516 -1.371432 -0.711986 0.338655 -0.143504 -0.363083 0.161053 -0.146433 0.228302 0.740768 -0.992073 0.331540 0.361777 0.668759 0.108932 -0.659062 0.145742 -0.125944 -0.527726 0.423576 0.280974 0.884772 -0.521609 -0.455002 0.665939 0.124532 -0.015781 0.953994 1.076312 0.049740 0.207998 -0.153669 1.395689 0.320311 0.006458 0.979646 0.653137 0.869766 -0.124679 1.247433 0.106764 -0.451537 0.401118 -1.208169 -0.651982 -0.289255 -0.699661 0.818816 1.288175 0.929624 -0.620656 0.771176 0.147561 0.036510 0.248280 -0.652703 0.275354 1.011374 -0.272149 0.346316 1.612219 -0.725472 -0.430384 0.540180 0.958128 0.364832 0.315331 -0.780729 -0.215248 -1.644189 -0.137382 -1.077635 -0.085270 -0.377579 1.549759 -0.942037 0.595437 1.245180 -0.062933 0.353719 -0.227294 -0.355326 -0.716355 0.289898 -0.053985 1.398487 -0.063653 0.136034 -0.165718 0.164292 0.475776 0.800188 0.158270 -0.348323 -1.226757 -1.904478 -0.547698 -0.298602 -0.219728 -0.197645 -0.920005 -0.440944 0.853526 0.634767 -1.302959 -0.243269 0.780509 0.514868 -0.155721 0.038559 -0.621845 0.037550 -0.067469 -0.256258 -0.026969 -0.805205 -0.441977 -0.357947 -0.270080 -0.032192 0.155346 -0.387061 -0.624237 -0.468627 -0.361171 0.178132 -0.090311 -0.376143 -0.222625 -0.967703 0.428222 -0.690497 0.541101 -1.013090 -0.250207 -0.100165 -0.819431 -0.192110 1.794436 -0.302578 0.798811 0.168543 -0.574670 -0.866538 -0.432979 -1.280560 0.644210 -0.242263 0.912297 0.128490 -0.045470 -0.256516 -0.272445 -0.695627 -0.130233 -0.388714 0.125232 -0.140612 0.973133 -0.753646 -0.093039 -1.239839 0.290479 1.239697 -0.014686 -0.223495 -0.620242 -0.447824 -0.443799 -0.878589 0.692913 -0.184113 0.175143 -0.081311 0.088927 -0.685230 0.365371 -0.548783 0.417621 -0.113546 -1.017731 -1.019529 0.273365 -0.381856 -0.031182 0.406035 -0.594240 0.075327 -0.199010 0.703480 0.020022 0.074732 0.175387 -1.598901 -1.289111 -0.671636 0.144207 0.818285 0.317043 0.477564 -0.535378 -0.247137 -0.692632 0.819990 -1.123109 -0.093939 -0.126802 -0.078508 1.166895 -0.281803 -0.143648 -1.401995 0.451340 0.487218 -0.866839 1.236639 0.526577 -0.639146 -0.602136 -0.612796 -0.128280 0.781970 1.388890 -0.672641 -0.615520 0.768869 -0.474140 -0.175156 -0.863512 0.599766 -0.163912 1.040407 -0.895480 -0.567893 0.065363 0.994405 -0.275076 0.556825 0.546297 0.494299 -0.191750 1.179959 0.317006 -0.094783 -0.713782 -1.433932 0.629417 0.831961 0.357498 0.283769 -0.868010 -0.582683 0.493718 0.616650 0.897530 1.007126 0.584817 0.785365 -0.770154 -0.863878 0.507644 0.065167 0.634813 -0.749725 0.364736 -0.497451 0.093103 0.070225 0.039495 0.337081 -0.354380 -0.973738 -0.184909 0.788636 0.348679 -0.175800 1.054011 -0.068522 -0.669323 0.497747 -0.229687 0.794658 -0.078331 0.003779 -0.038876 -0.468530 0.115408 -0.365691 1.299987 -0.188299 -0.231330 0.474809 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.776775 -0.065267 -0.091654 1.327119 -0.054374 -0.252134 0.024574 0.599924 -0.302769 -2.707416 -1.577328 2.430562 -0.094802 0.543838 0.233178 0.228502 0.358930 0.197361 -3.112213 0.600903 0.744862 0.339034 0.237428 -0.115837 0.388819 -0.652894 1.074201 0.515018 0.679346 1.483561 -1.084007 0.363373 1.272815 -0.091551 0.784939 1.136775 -0.019968 -0.072833 -0.902665 -0.882151 2.161541 0.801413 0.141375 1.220296 0.414151 1.594640 0.311347 1.198683 2.313485 -1.284328 0.328727 0.471165 -1.167043 -0.245740 -1.108534 0.726611 0.299736 0.678469 -0.984213 0.522493 -0.047833 -0.185782 0.206200 -0.623555 1.264459 0.272918 1.000525 0.797239 1.310151 -1.212473 -0.496582 1.020205 0.899975 0.932675 0.887233 -1.041558 -1.177684 -1.254304 -0.178011 -2.429876 -1.122273 -0.183967 2.512595 -1.537320 0.248745 0.354341 -0.571186 1.184729 -0.468460 0.093877 -1.470588 -0.132640 0.129492 1.339069 0.409002 -0.386911 0.443841 0.403851 0.530845 1.414058 0.144984 -1.155986 -0.682632 -2.326957 -0.261757 -0.701966 0.839781 0.746002 -1.358322 -0.072796 0.344493 2.233774 -1.854742 -0.299259 1.193973 0.518505 0.177011 0.081889 -0.593905 -0.032943 0.321331 0.219939 1.371241 -0.955414 -0.032413 0.506641 0.155386 -0.167238 0.784017 0.208899 -1.236804 -1.561682 0.109979 0.437362 -0.234053 -0.243392 0.586603 -0.424201 1.170673 -0.314378 1.166133 -1.355867 -0.012470 -0.439160 -0.090421 -0.578684 2.051192 1.469259 1.254593 -0.271869 -0.351664 -0.500329 -1.361645 -1.483476 0.805636 0.295863 0.546917 0.707472 -0.137115 1.102365 -0.546175 -0.116747 -0.149057 -0.689801 -0.263995 0.015660 -0.038767 -0.231064 -0.016231 -1.408034 0.010038 -0.075308 -0.351950 0.756492 -0.588187 -2.836655 -1.643880 -1.251429 1.299986 -0.621259 0.197512 -0.256260 -0.286262 0.015012 0.007503 -1.439913 -0.037986 -0.190339 -1.497003 -1.570472 0.270469 -0.538576 -0.481999 0.384079 -1.170414 -0.232904 0.586434 0.847350 0.584209 0.076657 0.159071 -1.886279 -1.011858 -0.041379 -1.014048 1.150244 0.747122 -0.343530 -2.055524 -0.702362 -1.143787 1.042621 -1.518368 0.408217 -0.681858 -0.774631 1.401626 -0.633909 0.453408 -0.918160 0.746609 1.244492 -3.605796 1.727927 1.538718 -0.515712 -0.202886 0.221291 -0.056564 1.250600 1.247201 -1.139495 -0.990127 0.234347 -0.633766 0.155012 -0.131617 1.169805 -0.601153 0.205077 -1.153081 -0.828028 0.616431 0.599084 0.440223 0.442068 0.945649 0.417388 0.689874 1.474808 0.845456 0.066509 -1.275213 -3.443090 1.390992 1.689122 -0.099768 0.868805 -1.047876 -1.091162 0.363377 -0.746110 1.225528 -0.644387 -0.222861 1.225090 -1.458213 -1.315724 -0.633438 -0.577777 0.027114 0.012536 0.960938 -0.570476 0.294408 0.087241 -0.429439 -0.445450 0.155189 -0.283414 0.252505 0.867966 1.355557 0.751803 1.437132 0.364792 -1.496555 0.024010 -0.012988 -0.106426 -0.512685 -1.538637 -0.448335 -0.197296 0.362244 -0.538005 0.119589 0.005877 -0.138345 -0.092536 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.059526 0.036771 -0.219109 0.785850 -0.087589 -0.098202 -0.009109 -0.207293 -0.298495 -1.295836 -0.493193 0.327426 0.156914 0.353951 0.073378 0.342121 -0.032022 0.331697 -0.790516 0.119129 0.521507 0.337192 0.284694 -0.043603 0.159768 -0.181249 0.340977 -0.063735 0.360703 0.783732 -0.474313 0.353304 0.700759 -0.283360 -0.034832 0.461540 0.281287 0.302019 -0.391798 0.001752 0.846891 -0.198059 0.380092 0.307247 -0.118399 0.693031 0.171710 0.745355 0.484552 -0.665579 0.536999 0.215723 -0.144810 -0.164737 -0.350973 0.434424 0.525592 0.804597 -0.376608 0.183076 0.160715 0.064336 0.183476 -0.066219 0.502122 0.501571 0.316779 0.502991 0.699734 -0.476917 -0.045507 0.191915 -0.031895 -0.068431 0.724036 -0.826657 -0.406903 -0.265652 -0.348868 -0.769867 -0.186216 0.221422 1.140700 -0.835708 0.007694 0.266919 -0.023017 0.648354 -0.031077 0.137063 -0.533385 -0.038246 -0.200772 0.857578 0.170788 -0.176424 -0.155584 0.175644 0.179905 0.374572 0.113956 -0.447853 -0.342486 -0.794278 -0.693392 -0.356519 0.397007 0.567110 -1.007555 -0.250216 -0.084974 0.319112 -1.260010 0.081531 0.490714 0.702437 0.466767 0.008123 -0.536838 0.067280 0.092615 0.017494 0.409445 -0.276606 0.056506 -0.202941 -0.140168 -0.057703 0.148395 -0.136513 -0.585522 -0.614309 -0.428789 -0.077418 0.060325 0.083214 0.494651 -0.263025 0.542422 -0.269872 0.423079 -0.922080 -0.274229 -0.099969 -0.663559 -0.342012 0.645315 0.099468 0.545363 -0.517601 -0.791885 -0.359161 -0.854483 -0.604767 0.066161 0.065354 0.231397 0.734002 -0.183426 0.433721 -0.321913 0.044331 0.339566 -0.208134 -0.213336 -0.017197 0.274948 -0.216970 -0.103903 -0.782075 -0.139475 -0.184066 -0.079149 0.594771 -0.167684 -0.610482 -1.105131 -0.497524 0.642029 -0.318114 0.252132 -0.327900 -0.147820 -0.627799 0.061090 -0.792681 -0.180128 0.063327 -0.497234 -0.798987 0.291566 -0.187515 -0.357341 0.233114 -0.669677 -0.063083 0.234917 0.192149 0.347583 -0.155111 0.040948 -1.013964 -0.616480 0.056379 -0.592605 0.134413 0.277774 0.068413 -0.615453 -0.375412 -0.511528 0.149159 -0.368084 0.168637 -0.050229 0.170702 0.562775 -0.517472 0.408024 -0.549939 0.080693 0.405067 -1.426982 0.892056 0.342826 -0.158226 0.119157 0.242522 0.132865 0.299187 0.253848 -0.468144 -0.504473 0.159753 -0.249002 0.081253 -0.323540 0.384444 -0.527208 0.068230 -0.384492 -0.180297 0.194718 0.465620 0.004000 0.139240 0.511874 -0.264580 0.091673 0.528142 0.451916 -0.034159 -0.221618 -1.215736 0.497497 -0.110976 -0.019323 0.108848 -0.349149 -0.088085 0.511349 0.151749 0.608974 0.001644 0.052764 0.610801 -0.917368 -0.661130 -0.135784 -0.194924 0.192407 -0.108902 -0.149421 -0.336196 0.181661 0.228144 -0.129891 -0.131668 -0.237053 0.052412 0.102639 0.814310 0.062088 0.360561 0.758395 0.129564 -0.395098 0.108651 0.087529 0.126801 -0.222792 -0.434713 -0.117440 0.145349 0.172302 -0.399298 0.186294 -0.610016 -0.349777 0.186399 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = 2.702839 0.549367 -3.109391 7.566073 -0.411136 -1.960597 0.200987 1.275093 -1.497836 -11.137408 -7.119862 3.513104 1.633731 1.026387 2.065485 2.782479 -1.109337 1.095232 -10.040717 2.691610 4.586843 1.588062 0.342328 -1.239428 1.163583 -2.757339 1.803279 0.712094 1.468553 6.616659 -2.822939 3.498960 5.574177 -1.094525 1.718179 4.477599 -1.629282 1.674927 -1.625777 0.090852 7.485583 3.809756 -0.145181 2.628437 0.153385 6.257296 0.115136 4.886458 -2.206009 -4.978673 3.255962 2.463413 -3.075197 -1.063328 -3.202871 3.263759 6.325676 3.633055 -2.503321 1.989753 -2.411571 -0.305137 1.819806 -0.286814 6.560794 3.591057 5.092369 4.753026 6.629044 -3.778083 -0.388780 3.021140 1.042681 -1.147825 5.104758 -4.143347 -6.493896 -0.548835 -1.590586 -8.783601 -3.398970 0.649935 10.736668 -6.615860 -0.531486 0.953993 1.315105 6.351028 -2.984065 0.690350 -3.997215 -0.405820 -3.687665 9.084092 1.410004 0.668653 -1.143224 2.690880 2.362930 3.871968 -0.442544 -4.076125 -3.191895 -8.894660 -3.160636 -2.687735 3.623950 4.455221 -8.397527 -1.890079 -1.048274 5.580954 -9.812277 0.636977 4.714664 4.663034 5.796658 -0.353853 -5.487816 1.236814 1.228313 0.212358 4.501930 -2.715817 0.450656 -1.690934 1.241475 -0.270853 1.393955 0.286112 -7.449387 -4.076493 -1.288552 -1.725944 0.929012 1.962132 4.276982 -3.432897 4.280584 -3.112495 4.826797 -9.444662 -0.464353 -2.433874 -6.544030 -1.818954 4.052292 5.202032 4.423453 -3.582660 -3.504123 -2.209740 -8.604932 -7.976959 0.729042 1.255012 2.055921 2.392741 -0.862863 3.391227 -3.330787 2.030259 3.419167 -2.290277 -0.880758 -0.237818 7.590157 -0.112612 -1.419039 -4.521725 -2.606305 -2.221051 -0.141460 5.943725 -0.749114 -7.258337 -10.467454 -4.349058 5.514253 -2.238986 0.662350 -4.166267 -0.890220 -5.958384 0.485987 -6.088102 0.831034 0.725204 -3.800525 -6.540128 0.439129 -0.457519 -2.283119 0.316368 -4.708344 -1.560970 6.102540 1.476387 2.757753 0.615020 0.561648 -6.190062 -4.623997 1.836915 -4.497688 5.097830 4.071947 -1.071187 -4.553134 -1.969308 -6.588904 4.066721 -1.590025 1.365353 -2.545567 -0.127068 6.049436 -4.332601 -0.281939 -5.789914 0.949883 1.745968 -9.889939 7.306555 4.464890 -1.507631 0.412492 1.024991 1.121455 3.267484 3.666873 -3.954671 -4.281463 0.244406 -2.388702 0.204521 -1.411495 3.818308 -5.385880 0.676008 -3.235888 -1.554932 3.135024 3.403645 0.212634 2.373664 1.976906 -1.748992 2.599241 3.916682 5.022988 -2.177909 -4.891432 -11.318554 3.848778 -3.219761 -2.177389 -1.495267 -1.677616 -3.917013 2.160681 -0.318065 5.833731 2.325326 -2.500824 5.109036 -7.632220 -6.131308 -3.518267 0.131321 0.407257 -1.240694 -0.640305 -2.272088 2.547233 2.816857 -0.902265 0.015429 -5.065960 -0.890504 0.278108 6.720727 0.620022 1.253193 6.458438 2.356277 -3.024514 -1.310600 1.129453 -1.253194 -1.292646 -5.670877 -2.500680 -0.478887 1.568152 -2.812131 1.755370 -1.847789 -1.132109 2.527832 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = 2.662309 0.137058 -1.376671 5.543358 0.069783 -0.970192 0.306396 1.545533 -0.840385 -9.021426 -5.891056 4.273659 0.719137 1.279386 1.372140 1.825765 0.156520 0.636479 -8.674329 2.065992 3.239147 1.183513 0.736792 -0.629129 1.060820 -2.390912 2.394877 0.830900 1.508909 5.176532 -2.447415 2.534434 4.498505 -0.351493 2.225691 3.943894 -1.104855 0.471577 -1.969189 -1.416314 6.536762 3.208000 0.428318 2.943777 0.302234 5.223512 0.837914 3.952137 1.209989 -4.051742 2.142800 0.352144 -3.204346 -0.722222 -3.235150 2.410015 2.991621 2.300149 -2.331900 1.693449 -1.342861 -0.322532 1.181783 -1.053937 4.959765 1.761623 3.724946 3.489350 4.842137 -3.597360 -0.751327 3.174049 1.488206 0.879248 3.405307 -3.754752 -4.669757 -0.778429 -0.971867 -6.975893 -3.047556 -0.248407 8.775089 -4.987164 0.024090 0.615087 -0.594604 4.587842 -1.920367 0.358730 -4.009453 -0.295303 -1.450656 5.089979 0.868886 -0.057424 0.165109 1.542837 1.584820 3.582857 -0.137172 -3.608567 -2.325679 -6.828767 -1.110252 -2.268308 3.144761 3.200878 -5.565392 -1.024595 -1.754097 5.831916 -7.082383 -0.204149 3.718585 2.931722 3.260717 0.237739 -2.866477 0.111777 1.558799 0.824951 4.053098 -2.915324 0.393617 -0.569010 0.884362 -0.305682 1.811221 0.462788 -5.045975 -4.186080 -0.391642 -0.308218 0.248847 0.991996 2.994768 -2.097606 3.550848 -2.003444 4.023469 -6.217631 -0.464288 -2.038184 -3.860212 -1.778392 5.775650 4.513077 4.256871 -1.860278 -1.855769 -1.528927 -5.808882 -5.587874 1.215593 0.821618 1.806089 2.323753 -0.425770 3.146540 -2.668969 1.108292 1.253152 -1.766020 -0.884894 -0.006481 2.641523 -0.141403 -0.850762 -3.815706 -1.054445 -1.350595 -0.640326 4.239674 -1.028902 -7.602496 -7.343802 -3.825475 4.426305 -2.017448 0.580954 -2.542283 -0.735528 -2.684201 -0.061284 -4.981653 0.624144 0.323092 -3.868961 -5.321566 0.562686 -1.002664 -1.279748 0.971279 -3.295558 -1.083796 4.441807 2.284292 1.962963 0.903092 0.180004 -4.982668 -3.270579 0.937837 -3.467642 4.527035 2.665887 -1.224905 -4.774308 -2.013615 -4.515500 3.562559 -2.016700 1.241262 -2.191617 -0.630725 4.530348 -3.015707 1.139921 -4.246662 1.422951 2.475330 -10.652935 4.582861 4.179802 -1.512977 -0.273208 0.440235 0.579196 3.001781 3.355236 -2.757341 -3.338773 0.503428 -1.881231 0.297875 -1.413678 2.947467 -3.326838 0.267004 -3.238919 -1.963986 2.701374 2.055623 0.447947 1.330271 2.450228 0.053840 2.542768 3.969985 3.746067 -1.003911 -4.648005 -10.579518 3.555564 2.060557 -1.113469 0.234696 -2.004913 -3.278082 1.601411 -1.939527 4.453032 1.233449 -1.461691 4.285042 -5.290315 -4.727364 -2.782594 -0.522215 0.307235 -0.453104 0.330115 -1.927932 1.858478 1.381898 -0.983139 -0.392129 -2.650070 -0.724685 0.646370 4.911246 1.843240 2.047970 5.035069 1.793369 -2.835833 -0.728681 1.105966 -0.925602 -1.176302 -5.470915 -2.171957 -0.389603 1.204414 -2.086586 0.856656 -0.839938 -0.533458 1.129589 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.872434 0.595783 0.842471 -0.173120 -0.433623 -1.152624 0.726616 2.037825 -0.678061 -1.679665 -1.909889 -1.952727 -0.175260 -0.932733 1.286981 -0.079417 -0.252081 0.765645 -3.907346 0.767322 1.629948 1.165822 0.491836 -0.810435 0.530363 -0.139141 -3.835343 0.386628 -0.237451 1.269286 -0.768661 -0.321554 0.794602 0.269960 -0.192568 0.996872 -0.589195 0.014306 2.701861 1.089543 1.377585 1.002685 -0.683013 0.021373 1.048627 0.980820 -1.666625 0.616111 -2.352178 -0.757325 1.152872 -3.153217 -1.094419 0.749723 0.123921 0.374558 3.024832 2.111223 -0.215810 1.452086 -1.347280 0.194332 0.288689 -1.728725 1.081339 1.944595 -0.046507 -0.011137 1.759216 0.073911 0.312260 -0.367424 0.246874 -1.323154 -1.757868 -0.770910 0.950975 -4.901580 0.268592 -4.086722 -0.385366 0.055180 2.317037 -1.134194 1.315715 1.878889 0.277745 0.682574 -0.848106 -0.538610 -0.235643 0.387452 -0.692566 1.890285 -0.679745 0.155506 -0.036530 0.717504 1.159064 0.465220 -0.871043 0.460036 -3.498775 -3.121619 -0.644746 0.548950 -0.263566 -0.132298 -1.771364 -0.504608 2.916052 -0.157812 -1.961103 0.047212 0.998404 1.148542 -2.534627 1.252959 -2.553893 -0.300952 -1.211198 0.597436 0.439208 -1.025905 -0.083284 -2.446590 -0.582559 0.549396 0.249531 -0.621734 -1.182358 -0.340319 -0.208451 -1.430091 -0.415977 0.475419 -0.171667 0.157506 0.650783 -1.837537 0.889654 -2.245129 0.694609 -0.558796 -1.191438 0.363658 1.330009 1.746164 -1.623096 0.698825 -0.695958 -0.570334 -1.019547 -0.667046 0.367136 -0.227502 2.611747 -1.216176 -0.039814 -0.931000 0.161950 -0.546418 -1.127114 -0.459792 0.703515 -1.146363 3.649881 -0.217357 -0.725155 -1.490265 0.236994 2.233315 -1.711911 -0.986741 -0.651420 2.439404 -0.957050 -1.101606 0.937439 0.241643 0.148990 -0.788060 1.431646 -1.624139 1.192878 -0.437559 0.031084 0.285457 -1.040513 -1.072965 -0.221773 0.061649 -0.503872 -0.517914 -0.090588 -0.621677 1.354302 1.404897 0.503071 0.074553 0.540390 -1.157414 -1.871420 -1.251494 0.017373 0.492828 1.402700 0.234463 -0.949935 0.502517 -1.049722 2.001550 0.644771 -0.428745 -1.361654 -0.348449 1.962720 0.021991 -0.705224 -1.829556 0.023292 -0.210155 -1.891370 1.663409 0.276036 -0.792004 -0.670581 -2.335012 0.366766 1.174401 1.478276 0.075084 0.071678 0.144786 -1.250875 -0.180354 -1.192414 1.190620 -0.890682 1.220252 -0.483811 -0.024641 0.981737 1.118308 -0.233285 1.882296 0.228238 1.523359 0.692835 0.570659 -0.137971 -2.006385 -0.216241 -1.562447 0.487459 2.290604 0.740877 -0.598082 -0.516024 -1.419469 -0.403707 1.778816 1.145018 3.836613 0.471628 0.542448 -0.065092 -1.026590 -0.108787 1.800117 0.233863 -1.414855 -0.715262 0.135639 0.385336 1.653116 0.631731 2.555846 -2.137255 -4.080660 -0.965997 1.490973 0.374431 -1.329222 1.306499 -0.227862 -0.655644 0.063816 -0.325472 1.237620 0.168477 1.943963 -0.426232 -1.048514 0.023014 -0.652104 2.019411 0.247161 -0.176468 1.320152 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp___GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = 7.834716 1.408631 -9.096379 18.026692 -2.183558 -4.149777 -0.512261 3.107844 -5.155945 -25.843305 -17.004061 13.773107 4.254319 4.448642 4.453229 8.061823 -2.248455 -0.157864 -25.840271 6.891695 9.564535 1.178295 -1.082101 -0.976841 2.591213 -7.174183 8.056218 2.119957 3.090710 15.116070 -6.943528 10.368392 12.683368 -2.827093 6.524981 9.904391 -6.557601 1.959307 -6.187391 -2.225418 17.803419 9.223315 0.640817 5.616194 -0.942136 14.859467 1.383070 12.169302 -2.115499 -12.121305 7.255258 7.928555 -8.819478 -1.225174 -8.467074 5.874335 8.817742 5.821413 -5.796041 4.050003 -6.736890 -0.982711 4.267396 1.196548 18.016385 4.961026 14.696922 11.376578 13.436493 -9.269508 -0.058082 8.338312 1.818898 -1.261316 12.114874 -9.090388 -15.279691 2.145490 -1.457075 -21.155310 -9.869240 1.813386 26.896540 -14.892290 -2.963048 -0.896043 2.516174 16.520982 -8.483727 3.780067 -10.282734 -2.075509 -7.357426 18.372535 3.221075 1.414257 -1.139467 6.007387 4.363741 9.541574 -2.564727 -10.735950 -4.865921 -18.450004 -5.367822 -6.087485 8.634569 11.189909 -19.133881 -3.246936 -5.249328 17.084451 -21.485311 0.706409 10.495354 9.054669 15.005575 3.937660 -10.977518 1.572971 4.141650 2.859216 13.117554 -5.149676 3.322156 -2.237479 4.922622 -0.198355 4.855787 2.992649 -20.468699 -10.377366 0.607892 -5.000082 1.953403 5.344610 11.689255 -5.555453 10.545923 -6.189393 11.586973 -21.313268 -1.256025 -6.821744 -14.320663 -4.490940 9.670410 17.188837 10.994534 -7.759386 -6.115074 -2.729159 -21.165438 -18.233630 0.983210 3.447601 2.238818 5.922282 -1.616516 9.904774 -8.158635 5.605667 8.486151 -6.008000 -4.001219 -1.382050 13.225104 2.754413 -3.174917 -9.030154 -5.841954 -9.227706 -0.420010 16.352567 -0.858560 -24.154767 -26.033998 -9.988164 13.275032 -4.976777 1.002868 -9.516219 -3.902398 -11.079488 -0.673002 -14.403107 1.379410 1.512282 -8.550776 -15.166034 0.728250 -0.437310 -7.612411 -0.271886 -10.818099 -3.851074 16.673114 2.112634 6.402601 2.246093 0.461652 -12.065320 -9.127572 6.810688 -11.467728 12.706940 10.820967 -4.409052 -12.314874 -5.196074 -15.371812 9.942909 -5.414604 4.947429 -5.693852 -1.706623 13.293599 -11.310858 0.702311 -9.893669 3.390318 4.370233 -29.974976 16.396294 12.782089 -3.946242 1.501483 3.284492 3.381149 7.724464 8.120688 -9.082417 -9.051542 -0.827947 -3.548285 0.808490 -0.631589 8.733033 -12.389424 -1.555034 -7.535897 -4.310379 8.704495 6.139447 2.111806 3.337595 3.971482 -4.443162 8.268179 9.434347 11.661422 -4.683022 -12.056307 -30.449460 9.830863 -4.567460 -7.438294 -1.547000 -4.284437 -9.323001 3.873852 -7.667363 12.950972 -0.433545 -7.919065 11.841236 -18.082741 -14.641463 -11.770424 -0.432537 -1.663009 -0.011296 0.282772 -5.190607 6.028715 5.707134 -1.969895 -3.090397 -10.106543 -0.364773 1.646028 14.554873 3.134389 4.565689 15.123897 6.359444 -5.795195 -5.444348 3.423340 -4.880361 -2.869280 -17.688995 -7.194972 -0.567372 4.578202 -7.104105 0.896350 -1.941121 -1.107298 4.758888 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.483783 0.675276 -0.398408 0.680421 -0.290416 -1.164098 0.381322 1.823658 -0.796808 -2.856823 -3.010069 -0.955698 0.204808 -0.838562 1.670360 0.745621 -0.419493 0.562270 -3.837609 1.149639 1.830060 0.667451 0.025019 -0.326267 0.556833 -0.573476 -3.900039 -0.037958 -0.144514 1.743126 -0.967152 0.700911 1.302435 -0.040277 -0.227523 1.046218 -1.388041 -0.161202 2.667076 0.899953 1.973604 0.953704 -0.201648 0.306632 0.758220 1.377645 -2.792819 2.775611 -2.340188 -1.096664 2.576460 -2.810614 -1.267074 1.412528 -0.357044 0.988526 3.094802 1.228755 -0.193844 1.077206 -1.897857 0.356615 0.397167 -1.961421 2.072604 2.845582 0.746528 0.658021 2.335625 -0.002371 0.363485 0.267277 0.200145 -1.189991 -1.061884 -0.904183 0.690605 -3.230045 0.141106 -3.739699 -0.439051 -0.538401 4.440933 -1.804395 0.363610 1.525194 1.058675 1.815131 -1.158724 0.395093 -0.582185 0.533741 -1.091791 2.115617 -0.533149 0.640365 -1.140190 0.430341 0.624601 0.630503 -1.458491 0.219532 -4.441991 -3.461587 -1.680204 0.397090 0.223945 0.447390 -3.538244 -0.133019 2.470631 0.583506 -2.813014 0.056564 1.200210 1.455121 -0.770300 3.788508 -4.018955 -0.787894 -0.452257 0.881439 0.375337 -0.282016 0.076573 -3.803433 -0.298135 0.267711 0.359092 -0.768830 -2.542604 -0.485778 -0.314799 -1.754400 0.064479 0.849790 0.893207 -0.366996 1.056064 -1.178577 0.790041 -3.590704 -0.363104 -1.356432 -2.338852 0.208723 2.560787 3.275509 0.087998 0.776453 -0.908835 -1.267019 -2.485919 -1.118672 -0.526876 -0.975972 2.558975 -0.911382 0.074640 -0.329568 0.076737 0.109142 -0.709802 -0.969334 0.412007 -1.428000 4.957118 -0.427485 -0.660509 -2.245609 -0.767808 1.310294 -2.283098 -0.137614 -0.088583 1.151137 -2.312123 -1.510152 1.299078 -0.101065 0.773842 -1.523907 1.614630 -2.250443 0.470000 -0.782454 -0.531874 0.595060 -1.533494 -1.570279 -0.159762 0.392247 -1.542680 -0.802094 -0.754773 -0.481298 2.848635 1.919666 1.080318 0.464671 -0.413732 -1.807270 -2.523565 -1.030178 -0.747025 1.215430 2.840293 -0.202484 -1.185529 -0.050556 -2.381462 2.350252 -0.794952 -0.230051 -1.205276 -0.106836 2.114507 -1.031573 -1.223380 -2.461799 0.007020 -0.692408 -4.136543 1.944161 0.373730 -0.997123 -0.354857 -2.824626 0.900577 1.300096 1.843570 0.122332 0.369260 -0.140327 -0.746324 -0.279482 -0.947773 1.731084 -1.788783 1.091142 -0.646639 -0.174160 1.426208 1.589923 -0.315731 1.525027 0.115552 1.499652 1.999734 0.468095 0.609995 -2.873784 -0.469096 -3.620394 0.375491 1.689164 -0.350660 -0.325511 -1.092058 -1.620816 -0.452328 0.573497 1.884608 2.084886 1.072975 0.909777 -0.788579 -1.526939 -0.283450 2.000710 -0.143178 -1.283099 -0.393206 -0.072895 0.228581 2.058797 0.585264 2.123855 -3.203069 -4.334941 -0.822599 2.391476 0.296794 -0.767855 1.621955 0.681966 -0.697925 -0.330451 -0.217677 0.988955 -0.201195 0.395300 -0.565325 -0.828929 -0.309565 -0.961167 2.009818 0.293771 -0.280414 1.284302 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = 0.305272 0.215789 -0.485850 1.225688 0.096260 -0.224207 0.037411 -0.119283 -0.156950 -1.833364 -0.885947 0.731675 0.233412 0.337600 0.249171 0.442984 -0.067978 0.330243 -0.841921 0.333250 0.675370 0.218869 0.096494 0.110427 0.220591 -0.247778 0.141156 -0.232174 0.441198 1.116442 -0.565004 0.515136 0.777559 -0.257326 0.082453 0.568555 0.489962 0.088671 -0.466133 -0.068234 1.168376 0.334746 -0.098750 0.344680 -0.136675 0.952918 -0.215748 1.275466 0.407150 -0.873385 0.337033 -0.480987 -0.420240 -0.128768 -0.471174 0.814680 0.629108 0.837036 -0.530944 0.097312 0.115478 0.133718 0.309979 -0.158066 0.761091 0.836381 0.455607 0.865211 1.271566 -0.627769 -0.171208 0.276054 0.043917 0.114814 0.936928 -0.481397 -0.647219 -0.446410 -0.272057 -0.640633 -0.743517 -0.324827 1.324867 -1.124993 0.169905 0.411205 0.212791 0.926508 -0.326570 0.242637 -0.821122 0.069816 0.089507 1.175897 0.082245 -0.126091 -0.623763 0.224581 0.298241 0.574281 0.275521 -0.570342 -0.982222 -1.007501 -0.717058 -0.472668 0.109065 0.602050 -1.321706 -0.371628 -0.083992 0.839481 -1.706618 0.059981 0.849561 0.717996 1.290540 0.722402 -0.890566 0.233702 0.363620 -0.274242 0.418270 -0.212185 0.017667 -0.132741 0.127144 -0.166976 0.095161 -0.079566 -1.373868 -0.376672 -0.075219 0.206420 0.109633 0.069451 0.653106 -0.679411 0.707446 -0.443360 0.401698 -1.300283 -0.583817 0.046738 -1.216562 -0.424552 1.555212 0.562108 1.003209 -0.490475 -0.881926 -0.765553 -1.394277 -1.153743 0.189043 -0.034481 0.287560 0.675499 -0.025060 0.297958 -0.528311 0.128400 0.666195 -0.202118 -0.205982 -0.010428 0.802340 -0.435047 0.113607 -1.127029 -0.446100 -0.227912 -0.035281 0.679433 -0.194478 -1.032237 -1.597829 -0.708311 0.893401 -0.378043 0.324351 -0.653048 -0.166519 -1.152420 -0.238117 -0.855969 0.051993 0.122271 -0.823786 -1.147439 0.277819 -0.134039 -0.714358 0.156664 -0.989966 -0.110485 0.500319 0.247997 0.549742 -0.298579 -0.143671 -1.121760 -0.925557 0.208669 -0.745156 0.780331 0.656825 -0.055192 -0.444259 -0.448748 -1.109348 0.611733 -1.296674 0.145923 -0.055879 0.340062 0.804358 -0.896075 -0.204518 -0.946134 0.283435 0.361148 -1.067449 1.033848 0.696583 -0.351387 0.083574 0.180787 0.199486 0.718473 0.913556 -0.783287 -0.756554 0.192984 -0.200043 -0.079111 -0.085494 0.555670 -0.729625 0.276306 -0.568265 -0.293108 0.193983 0.830350 -0.128488 0.378429 0.389839 -0.373185 0.167725 0.642584 0.724063 -0.218067 -0.561426 -1.331417 0.666912 -0.447267 -0.295117 -0.108529 -0.975450 -0.267842 0.616795 -0.285666 0.925641 -0.361982 0.044230 0.843637 -1.490205 -0.824063 -0.114709 -0.166595 0.091045 -0.060867 0.381819 -0.194695 0.408460 0.400349 -0.071218 -0.340895 -0.795727 -0.099498 0.104578 1.006993 -0.183504 0.305696 1.089793 0.064856 -0.394435 0.201697 0.065419 0.112918 -0.289942 -1.089316 -0.135789 0.057875 0.108125 -0.524936 0.471875 -0.597081 -0.537355 0.386738 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = 0.305272 0.215789 -0.485850 1.225688 0.096260 -0.224207 0.037411 -0.119283 -0.156950 -1.833364 -0.885947 0.731675 0.233412 0.337600 0.249171 0.442984 -0.067978 0.330243 -0.841921 0.333250 0.675370 0.218869 0.096494 0.110427 0.220591 -0.247778 0.141156 -0.232174 0.441198 1.116442 -0.565004 0.515136 0.777559 -0.257326 0.082453 0.568555 0.489962 0.088671 -0.466133 -0.068234 1.168376 0.334746 -0.098750 0.344680 -0.136675 0.952918 -0.215748 1.275466 0.407150 -0.873385 0.337033 -0.480987 -0.420240 -0.128768 -0.471174 0.814680 0.629108 0.837036 -0.530944 0.097312 0.115478 0.133718 0.309979 -0.158066 0.761091 0.836381 0.455607 0.865211 1.271566 -0.627769 -0.171208 0.276054 0.043917 0.114814 0.936928 -0.481397 -0.647219 -0.446410 -0.272057 -0.640633 -0.743517 -0.324827 1.324867 -1.124993 0.169905 0.411205 0.212791 0.926508 -0.326570 0.242637 -0.821122 0.069816 0.089507 1.175897 0.082245 -0.126091 -0.623763 0.224581 0.298241 0.574281 0.275521 -0.570342 -0.982222 -1.007501 -0.717058 -0.472668 0.109065 0.602050 -1.321706 -0.371628 -0.083992 0.839481 -1.706618 0.059981 0.849561 0.717996 1.290540 0.722402 -0.890566 0.233702 0.363620 -0.274242 0.418270 -0.212185 0.017667 -0.132741 0.127144 -0.166976 0.095161 -0.079566 -1.373868 -0.376672 -0.075219 0.206420 0.109633 0.069451 0.653106 -0.679411 0.707446 -0.443360 0.401698 -1.300283 -0.583817 0.046738 -1.216562 -0.424552 1.555212 0.562108 1.003209 -0.490475 -0.881926 -0.765553 -1.394277 -1.153743 0.189043 -0.034481 0.287560 0.675499 -0.025060 0.297958 -0.528311 0.128400 0.666195 -0.202118 -0.205982 -0.010428 0.802340 -0.435047 0.113607 -1.127029 -0.446100 -0.227912 -0.035281 0.679433 -0.194478 -1.032237 -1.597829 -0.708311 0.893401 -0.378043 0.324351 -0.653048 -0.166519 -1.152420 -0.238117 -0.855969 0.051993 0.122271 -0.823786 -1.147439 0.277819 -0.134039 -0.714358 0.156664 -0.989966 -0.110485 0.500319 0.247997 0.549742 -0.298579 -0.143671 -1.121760 -0.925557 0.208669 -0.745156 0.780331 0.656825 -0.055192 -0.444259 -0.448748 -1.109348 0.611733 -1.296674 0.145923 -0.055879 0.340062 0.804358 -0.896075 -0.204518 -0.946134 0.283435 0.361148 -1.067449 1.033848 0.696583 -0.351387 0.083574 0.180787 0.199486 0.718473 0.913556 -0.783287 -0.756554 0.192984 -0.200043 -0.079111 -0.085494 0.555670 -0.729625 0.276306 -0.568265 -0.293108 0.193983 0.830350 -0.128488 0.378429 0.389839 -0.373185 0.167725 0.642584 0.724063 -0.218067 -0.561426 -1.331417 0.666912 -0.447267 -0.295117 -0.108529 -0.975450 -0.267842 0.616795 -0.285666 0.925641 -0.361982 0.044230 0.843637 -1.490205 -0.824063 -0.114709 -0.166595 0.091045 -0.060867 0.381819 -0.194695 0.408460 0.400349 -0.071218 -0.340895 -0.795727 -0.099498 0.104578 1.006993 -0.183504 0.305696 1.089793 0.064856 -0.394435 0.201697 0.065419 0.112918 -0.289942 -1.089316 -0.135789 0.057875 0.108125 -0.524936 0.471875 -0.597081 -0.537355 0.386738 -PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 7.383684 1.314401 -1.680202 11.948317 -0.052159 -5.816493 1.483487 6.875368 -2.674746 -21.759435 -15.019338 7.142477 1.309825 -0.197049 4.687231 3.434956 -0.620158 2.642340 -28.267726 6.864612 9.790479 4.840150 1.663119 -4.677094 3.501002 -5.298022 0.383900 3.506687 2.248953 13.059024 -7.519914 4.644815 10.564412 0.245583 6.236557 10.026336 -4.457886 0.803263 0.565385 -0.484420 17.066350 10.165343 -1.821099 6.186610 4.021592 12.944645 -0.060336 6.378022 -1.848154 -9.297216 3.887936 0.809790 -8.550153 -1.084365 -7.314759 6.085590 13.080945 7.758392 -6.349151 5.788644 -3.735196 -0.742767 3.587149 -3.354292 13.729601 6.029182 8.471121 7.647610 14.651149 -6.742389 -0.691425 4.828064 5.324417 -1.617384 6.228162 -8.211249 -10.580509 -10.002835 -1.363114 -24.114538 -6.771435 0.251940 18.785859 -12.605517 3.340443 4.115772 0.885704 11.941103 -6.210450 -1.626251 -8.937737 -0.076588 -5.743669 18.114630 0.656401 1.179975 0.693689 6.286660 5.761110 8.801816 -0.973788 -8.163314 -7.911121 -21.991548 -3.477790 -4.515585 5.247709 5.782878 -15.182037 -2.869696 1.433311 13.089313 -18.914836 -0.386966 9.230361 7.177278 1.827765 -3.940605 -9.469715 0.977276 -0.897133 2.163003 7.923519 -7.845921 -0.240523 -3.546619 1.289646 1.120073 4.709937 0.375014 -12.680706 -8.393846 -0.547639 -2.565179 -0.726337 3.161262 5.763415 -5.566051 8.098260 -8.650603 10.542407 -16.747601 1.790801 -5.858543 -8.824654 -2.822144 7.693752 10.462991 3.808298 -3.468224 -4.021812 -3.144699 -15.138951 -15.803056 4.611007 1.538002 6.864070 1.848099 -1.417700 4.361327 -5.816277 0.460385 2.996752 -5.810910 -1.239820 -3.367774 14.225127 -0.154708 -3.047926 -8.062718 -2.490405 1.821742 -2.323433 7.717628 -3.898430 -11.152078 -18.262712 -10.256683 11.097452 -3.781655 0.526209 -7.447017 0.848919 -9.804343 3.265266 -11.455631 2.542635 -0.433388 -7.927179 -13.001598 -0.689952 -2.152975 -1.986623 -0.258540 -8.447320 -2.634976 10.528731 5.004983 4.114117 1.303803 2.390215 -12.432416 -10.089072 1.418869 -5.700723 9.987772 6.868429 -1.565775 -11.709182 -3.099026 -11.337106 10.976569 -3.112578 2.477396 -6.118931 -3.748967 14.046001 -6.254755 -1.080881 -10.899529 3.293743 3.848552 -19.093554 15.694526 9.180937 -5.380046 -1.554774 -2.497920 2.418233 8.184196 10.498128 -7.428463 -7.605535 1.147785 -6.242704 -0.183728 -4.566929 9.003931 -8.599011 4.551706 -8.346219 -4.730309 7.122577 6.954179 0.726679 7.421667 3.745908 0.480230 4.596607 10.031290 7.819930 -3.333946 -11.086758 -22.266065 7.602270 2.161243 0.009323 -2.003222 -3.878875 -10.668675 1.764223 1.484386 12.562068 9.412012 -4.245772 9.884937 -13.201005 -12.572076 -6.888318 1.559777 0.890292 -3.299655 -0.325245 -4.308550 4.173288 5.187832 0.190643 3.195052 -9.414400 -7.215196 0.041948 11.797715 4.544516 -0.507366 13.249359 3.819709 -7.520599 -1.782777 0.989503 -0.432014 -2.076461 -7.404563 -5.921310 -3.487652 3.018422 -5.674455 6.342579 -1.402800 0.441741 4.011613 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/graph-coloring.cpp__main = 2.597813 2.892653 0.006789 1.461705 0.934707 -1.836738 -0.011211 3.980263 -3.671522 -1.993792 -3.168409 1.349140 -1.055140 -0.125055 4.324129 0.300636 0.264962 -0.711763 -5.263585 1.689652 -0.497659 -0.299588 -0.218381 -2.026422 1.260448 2.695295 -2.443218 2.202061 0.465788 1.579272 -1.957570 -0.641424 0.223849 1.773689 2.965344 -1.804702 2.389543 1.253784 -0.984222 0.286338 4.272900 1.455277 -0.961480 3.039513 3.143669 1.877380 -1.598935 3.194232 -0.829092 0.875280 3.431813 -4.282659 -1.216068 1.711271 -1.237051 0.767483 4.294698 1.376327 -1.786689 2.616920 0.452311 -0.436828 -0.486530 -4.050158 2.624869 2.369268 1.745439 -0.373930 2.584075 -0.977003 -1.758202 -0.106286 4.015830 -0.026207 -5.625178 -4.789144 0.870271 -8.028949 1.490577 -6.489868 -2.168632 -1.884991 4.060424 -2.059286 1.718971 3.088575 -3.610790 -0.653452 -3.220395 0.244214 -1.035164 -1.910525 -0.351304 2.979453 -0.058048 -0.571006 2.961174 0.367383 3.740675 3.546525 -0.651801 0.689349 -3.723398 -2.332266 -1.464912 5.907205 0.339753 -1.316084 1.336278 -2.081775 2.191903 -0.585719 -1.228474 -3.255415 2.846500 0.978392 -2.169972 3.440074 -4.202363 0.510091 0.507842 1.369843 3.284605 -2.100202 -0.065423 -1.990422 -1.599877 -0.036962 3.139183 0.232521 -0.796922 -1.969995 -0.463777 -1.284452 -1.631453 -5.092057 -3.975236 -0.815735 2.489243 0.410456 1.959415 -3.226643 -1.016773 0.260281 -1.029954 1.368092 3.268551 1.543357 1.469032 3.683849 -1.004691 -0.428602 0.006370 -1.590845 3.748606 1.507351 2.646213 -0.908009 0.191233 0.847969 -0.129997 -3.144753 1.168437 -1.386209 -1.681652 -3.122056 2.533194 -0.671407 -0.765306 -3.421266 2.337451 3.372048 -0.645336 -1.236625 -0.800991 -3.486493 1.236426 -1.571168 1.625303 0.360112 0.567532 1.667584 3.745096 -4.301423 -0.129762 -3.186369 2.159991 1.290495 -3.907298 -0.404194 0.784330 -0.228695 1.722168 -0.253687 0.558570 -0.875790 0.691043 5.111084 -0.720391 1.698448 1.742575 -3.176049 -5.816015 -2.580235 0.925930 2.079808 -2.499257 1.428217 -3.266394 1.126774 -1.695737 3.444778 -1.036818 -1.531454 -3.454755 0.710131 3.242341 0.796701 -2.584096 -1.877503 0.922583 2.569211 -4.013267 0.277134 1.193873 -0.355437 -2.695782 -2.398689 0.074851 2.724321 5.456164 -0.501905 -1.325961 0.337934 1.104355 -0.168274 -2.182279 3.545952 -0.066587 0.796566 -2.164848 -2.110154 0.725556 2.105768 1.692836 3.768114 1.080440 3.703906 -1.937300 3.783611 -0.916945 -2.235318 1.588463 -3.579375 -0.687835 8.425933 0.089509 1.138217 -2.218550 -3.145290 -2.146217 -0.295320 1.574305 2.797382 0.451135 1.326828 1.462427 -1.374388 -0.586187 3.167399 -0.414761 -3.082959 -0.202663 -0.461453 0.618121 3.049712 -1.159801 3.599516 0.085065 -5.225509 -5.075535 -0.104293 -0.403418 0.722841 2.402273 0.802071 -2.972427 0.778592 -0.320281 2.428919 2.980023 -2.114789 -1.647539 -3.243341 -0.687116 0.027683 -0.189010 1.312444 -0.874952 1.255849 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = 0.696130 0.407387 0.318673 0.727157 0.073046 -0.879235 0.253294 0.981666 -0.874213 -1.936341 -1.280709 0.861455 -0.165299 -0.285043 0.361888 0.132533 -0.146353 0.177390 -3.189054 0.919388 0.964471 0.558698 0.289354 -0.728795 0.473777 -0.537140 -0.238719 0.770224 0.053310 1.106507 -0.928519 0.015276 0.835832 0.335170 0.742635 0.945732 -0.364687 -0.181488 0.394751 -0.026761 1.729397 0.931451 -0.330900 0.428339 0.870157 1.169618 -0.053093 0.032375 0.041154 -0.777332 -0.020347 0.141961 -1.020861 -0.033679 -0.640093 0.490293 0.924061 0.941211 -0.674808 0.581181 -0.713907 -0.289860 0.235296 -0.513390 1.300892 0.417053 0.675565 0.439754 1.541562 -0.586561 -0.326552 0.687521 0.806387 -0.123440 0.079036 -0.429932 -0.763280 -2.374190 0.049072 -3.146921 -0.954504 0.196881 2.015580 -0.987072 0.484560 0.708061 0.085862 0.972933 -0.776803 -0.308304 -0.940640 0.088237 -0.472578 1.773945 -0.004944 -0.071041 0.347473 0.644160 0.866054 1.198339 -0.360962 -0.518853 -1.061814 -2.404742 -0.135157 -0.209931 0.271277 0.084155 -1.322865 -0.225300 1.422651 1.794321 -1.592577 -0.155783 1.094022 0.579325 -0.725595 -0.329328 -1.040699 0.075497 -0.350094 0.188935 0.882459 -0.662174 -0.185833 -0.025451 0.234505 0.035516 0.561186 -0.067438 -1.442457 -0.941042 0.187465 -0.549556 -0.263230 -0.152075 0.107575 -0.360340 0.736302 -0.870728 1.041178 -1.394451 0.790014 -0.571717 -0.423234 -0.020845 0.643955 1.552874 -0.320401 -0.003170 -0.089666 -0.228732 -1.084302 -1.185760 0.625205 0.052690 0.821975 -0.312000 -0.082796 0.259957 -0.196017 -0.346144 -0.037389 -0.609096 0.045442 -0.569496 1.498693 0.004250 -0.184054 -0.919515 -0.096093 0.625781 -0.319045 0.156703 -0.628639 -0.952385 -1.334341 -1.268541 0.912977 -0.127218 -0.187989 -0.640674 0.234635 -0.436391 0.742929 -0.912850 0.361533 -0.207764 -0.880329 -1.042655 -0.129602 -0.267495 -0.660444 -0.329936 -0.514146 -0.377529 0.639662 0.166489 0.412884 -0.114803 0.258848 -1.189741 -1.041120 -0.094010 -0.066367 0.622345 0.856160 0.029348 -1.720266 -0.207290 -1.012141 1.270364 -0.232036 0.033550 -0.721747 -0.893825 1.693218 -0.360494 0.010121 -0.636788 0.476903 0.371794 -2.146431 1.876758 1.195462 -0.590570 -0.510527 -0.468359 -0.060656 1.169601 1.317027 -0.711860 -0.379826 0.055398 -0.565010 -0.102476 -0.063779 1.141930 -0.732196 0.824518 -0.877740 -0.798385 0.528910 0.872409 0.166026 0.876488 0.113480 0.500820 0.330479 1.064422 0.441923 -0.296303 -0.909059 -2.016303 0.709647 0.681828 0.196478 0.199474 -0.253420 -1.400615 -0.144213 0.162250 1.363825 0.651274 -0.732627 0.758811 -0.898627 -1.115335 -0.540624 0.271465 -0.145513 -0.542888 0.483394 -0.378967 0.110004 0.463822 -0.088694 0.465840 -0.485103 -1.184414 -0.324691 0.726676 1.224312 -0.376963 1.186977 0.255799 -0.910341 -0.209650 0.087962 0.361573 -0.061538 -0.239740 -0.593536 -0.707241 0.213293 -0.271699 0.791644 0.289332 0.132250 0.417460 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 2.074297 0.153914 0.112729 1.533266 0.653734 -2.304730 0.507145 1.801522 -0.787016 -2.752329 -1.848081 1.176496 -0.161221 -1.454543 0.784517 0.293641 -0.156571 0.440830 -3.974807 1.964340 0.746150 0.674303 -0.913666 -1.704069 0.484805 -0.203591 -0.978858 1.205302 -0.223431 1.636355 -1.533924 -0.154170 0.966616 0.571397 1.336633 1.324485 0.060427 -0.243318 1.065374 0.256525 3.055615 1.710117 -0.536456 1.210231 2.000342 1.721079 -0.588190 1.981502 -1.217897 -0.473559 0.904303 -0.591845 -1.510453 0.211263 -1.612526 1.208423 2.789336 0.975313 -1.121427 1.295153 -1.092741 0.020929 0.750615 -0.424910 2.613439 1.702683 0.777155 0.871132 3.489385 -0.676765 -0.344578 0.889238 2.661824 -0.295904 0.257069 -0.980605 -1.255765 -3.179500 0.065266 -3.907172 -0.294200 -0.358442 3.483512 -1.702366 0.981995 1.469900 0.716798 1.445481 -1.890022 -0.480780 -1.309094 0.476883 -1.354291 3.916106 -0.575774 0.974354 -0.231921 0.933663 1.154973 1.756565 -0.822506 -0.946684 -1.853148 -4.442384 -1.084088 0.182784 -0.871108 -0.827637 -2.654981 -0.554583 1.858564 2.244355 -2.639444 -0.691020 1.281955 0.356955 0.104636 0.291629 -2.089131 0.193816 -0.807391 0.497086 0.465835 -0.816469 -0.582080 -1.503965 0.119800 0.433514 1.007970 -0.140151 -2.687576 -0.346385 0.099265 -0.780222 -0.499191 -0.388819 -0.484755 -1.755006 0.786116 -1.530577 1.453707 -2.903757 0.006508 -1.484059 -1.926977 0.538177 1.661781 1.534067 0.692224 0.652733 -0.176781 -0.849855 -2.203350 -3.136961 1.097082 -0.676252 1.180759 -1.087218 0.171550 -0.578318 -0.364978 -1.372882 0.939917 -1.603337 -0.236683 -1.739860 3.691444 -0.477815 -0.519886 -1.579800 -0.080486 2.126550 0.100536 0.108837 -1.056672 -1.986232 -2.172092 -1.833480 1.374333 -0.087195 -0.122834 -0.751399 0.723313 -2.044563 1.113892 -1.178167 1.178873 -0.436714 -1.254187 -1.754974 -0.452745 -0.251137 -0.254539 -0.992935 -0.944441 -0.030732 1.063224 0.974125 0.057596 0.665440 0.478662 -2.518841 -2.856412 -0.382426 0.975437 2.048260 1.338558 0.733845 -1.580029 -0.170882 -2.378132 2.314269 -1.817605 -0.126463 -0.334838 -0.946572 2.995902 -0.874722 -1.171924 -1.837518 0.910523 -0.020544 -2.115943 3.372516 1.678591 -1.794072 -1.170815 -1.957391 0.594147 1.642471 3.365234 -1.286404 -0.488219 0.708377 -0.295030 -0.710512 -0.894312 1.827090 -0.997056 1.992875 -1.721337 -1.396085 0.668781 1.882711 -0.059959 0.912939 -0.677043 0.373349 -0.168237 2.237086 0.687698 -0.426741 -1.750822 -3.446761 0.500616 0.149189 0.240305 0.207359 -0.970672 -2.322624 -0.451646 0.485970 2.481586 1.559275 -0.344096 1.272952 -1.969526 -2.008646 -0.383021 1.100739 0.068306 -1.614687 0.927020 -1.144017 -0.121506 0.756185 0.739191 0.775447 -1.327088 -2.499095 -0.838287 1.252147 1.013743 -1.505981 2.044412 0.628525 -1.077427 -0.179737 0.006631 0.940441 0.179883 -0.662592 -0.957926 -1.727578 0.373973 -0.708548 2.655386 0.623413 0.673992 0.989172 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.585655 0.024872 0.221453 0.593421 0.398858 -0.720082 0.070010 0.466186 -0.383223 -0.772644 -0.473478 0.181595 -0.191657 -0.326547 0.410748 -0.058758 -0.007018 0.031771 -0.739429 0.574004 -0.036066 0.124963 -0.245385 -0.627969 0.194180 0.348015 -0.266974 0.350395 0.030368 0.405451 -0.656558 -0.103518 0.075843 0.362260 0.488001 -0.005515 0.393368 -0.056096 0.008440 -0.129713 0.961636 0.226901 -0.127791 0.544570 0.668675 0.368950 -0.199476 0.750696 -0.287745 0.101308 0.446729 -0.586861 -0.224790 0.187856 -0.556964 0.531416 0.971009 0.345336 -0.274278 0.274353 -0.206141 0.140138 0.155202 -0.286635 0.766486 0.621650 0.131641 0.266325 0.981581 -0.332722 -0.212045 0.241291 1.171658 0.050252 -0.346628 -0.393630 -0.085711 -1.300871 -0.083742 -0.890736 0.112375 -0.251916 0.953776 -0.408385 0.377822 0.550020 -0.115199 0.161602 -0.655520 0.131387 -0.420587 0.158030 -0.353649 0.905023 -0.264290 0.154275 -0.015976 0.144407 0.399826 0.665301 -0.227975 -0.072613 -0.496521 -1.279448 -0.512792 0.547399 -0.366936 -0.499727 -0.614598 -0.134266 0.690941 0.487301 -0.522033 -0.546657 0.195770 0.154781 -0.161251 0.155788 -0.638250 0.023415 -0.233959 0.222733 0.157610 -0.179093 -0.086716 -0.704770 -0.225651 0.121444 0.611969 0.038036 -0.485862 -0.155947 -0.161268 -0.150822 -0.297808 -0.533051 -0.470475 -0.471991 0.218432 -0.186094 0.387729 -0.743203 -0.143548 -0.526612 -0.555703 0.433934 0.867173 0.158473 0.397593 0.616219 -0.155032 -0.317867 -0.384769 -0.816618 0.476709 -0.034899 0.320433 -0.267651 0.125122 -0.056430 -0.045346 -0.789463 0.508368 -0.638297 -0.347905 -0.759826 0.692958 -0.354016 -0.162676 -0.717659 0.347917 0.990640 -0.178960 -0.074433 -0.348475 -0.464128 -0.446016 -0.570559 0.329777 -0.035121 0.010766 0.112820 0.508797 -0.793469 0.395063 -0.385823 0.515549 -0.010497 -0.657113 -0.480370 -0.142606 -0.097568 0.040761 -0.175504 -0.180243 0.130510 -0.002340 0.564827 -0.137215 0.447025 0.287590 -0.932093 -1.250128 -0.431889 0.575609 0.575689 0.098340 0.345719 -0.507622 -0.214417 -0.609798 0.790800 -0.729863 -0.126804 -0.096627 -0.011688 0.752235 -0.263443 -0.440883 -0.538743 0.299199 0.253725 -0.611736 0.857494 0.376364 -0.582194 -0.526690 -0.985747 0.304502 0.403834 1.431062 -0.433823 0.010894 0.297576 0.257794 -0.321197 -0.562769 0.637783 -0.092576 0.453626 -0.559037 -0.657476 -0.085612 0.536544 0.122454 0.210662 -0.051048 0.297370 -0.389484 0.937325 0.192301 -0.112925 -0.361791 -0.814776 0.032130 0.517560 0.201992 0.294576 -0.582108 -0.751596 -0.278958 0.245996 0.706187 0.498652 0.197127 0.421951 -0.405680 -0.374543 0.136348 0.422781 -0.029673 -0.783392 0.366747 -0.487703 -0.223079 0.316287 0.126257 0.186055 -0.041211 -1.010320 -0.599634 0.267295 0.202659 -0.249332 0.524180 0.395218 -0.538586 0.127652 0.123385 0.382330 0.060870 -0.277185 -0.267041 -0.548241 -0.048598 -0.177824 0.737336 0.264232 -0.009514 0.146945 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 2.530697 0.425481 -0.125634 3.224366 0.500399 -2.764690 0.103719 2.782349 -1.379040 -5.102802 -4.125181 1.269433 0.043447 -0.265530 2.319443 0.542979 -0.688643 0.473689 -7.275592 2.721943 1.634003 1.309353 -0.506856 -2.230926 1.077680 -0.199535 -1.005572 1.610860 0.326305 2.606596 -2.606943 0.481820 2.090629 0.239757 1.790617 1.375672 -0.011327 -0.022939 0.087537 -0.229815 5.172593 2.343223 -0.157015 2.291256 1.890426 2.892655 -0.842254 2.913930 -1.173183 -2.090850 2.053816 -1.616258 -2.236462 0.089638 -2.283841 2.725758 4.223495 2.106984 -1.976309 1.941999 -1.093195 -0.226698 1.095154 -1.929808 4.331243 2.310609 2.493163 1.612433 4.587269 -1.449674 -0.725235 1.703421 3.004972 -0.377513 0.286216 -3.133385 -1.595601 -5.352624 0.453160 -6.702027 -1.192894 -0.524836 5.609842 -3.370969 1.389454 2.299945 0.024007 2.784400 -2.862074 0.082161 -1.987548 0.007142 -1.800381 5.283803 -0.466151 -0.035452 0.834055 1.588490 2.100932 3.384429 -1.032803 -0.704808 -2.991300 -6.530481 -1.912365 1.141242 0.641187 0.125754 -3.830305 -1.056710 1.893857 2.467259 -4.145605 -1.201367 2.879782 1.792493 -0.314035 0.221490 -3.174990 -0.370656 -0.377717 1.016920 2.103964 -1.976116 0.354042 -1.883968 0.169086 0.526486 2.074184 -0.042845 -3.336452 -2.192292 -0.753605 -0.910257 -0.626414 -0.807291 0.338902 -1.935307 2.494718 -1.765505 2.561898 -5.052516 0.183733 -2.027806 -2.291913 0.420240 3.423328 2.380286 1.214993 0.701619 -1.519181 -1.243827 -3.707117 -4.162328 1.585142 0.950072 2.238096 -0.302195 -0.055767 0.622847 -0.339585 -1.526289 1.280588 -2.348949 -1.048736 -1.974947 4.386746 -0.414547 -0.892187 -3.630701 0.716141 2.056259 -1.451952 0.863740 -0.745900 -2.754330 -3.497132 -2.850724 2.486532 -0.056940 0.359226 -1.177384 0.873330 -3.316073 1.388290 -3.436579 1.317964 0.108614 -3.222099 -3.025856 -0.488957 -0.220328 -0.510236 -0.797753 -1.983953 -0.303552 2.106947 2.584753 0.440381 0.898958 1.288738 -4.519601 -4.588004 -1.073584 -0.216554 2.948645 1.803121 0.525083 -2.783697 -0.464999 -2.931359 3.326630 -1.885232 -0.219444 -1.769796 -0.977617 4.038581 -1.947341 -1.106504 -3.477467 0.806303 1.015995 -5.118354 4.620841 2.373169 -1.863045 -1.388868 -2.365667 0.719427 2.582856 4.935125 -1.809100 -1.085537 0.428985 -0.512575 -0.729625 -1.984710 3.093577 -1.852317 1.184824 -2.313097 -2.216606 0.982709 2.538295 0.595265 2.269809 0.610699 1.376825 0.149295 3.414526 1.464487 -1.761470 -2.332742 -6.216342 1.860509 2.419418 -0.251864 -0.113769 -2.022841 -3.540986 -0.332819 1.261524 3.348902 3.569188 0.422544 2.264981 -3.007715 -3.117495 -1.095829 1.818762 -0.394788 -1.871758 0.116333 -1.648387 0.611967 1.655839 -0.288702 0.745550 -1.772841 -4.626953 -1.706625 2.390749 1.205680 -0.421126 3.743292 1.481647 -2.219312 -0.255189 0.009422 0.722966 -0.085664 -0.956685 -1.804140 -2.034962 -0.078951 -1.199097 2.214185 0.400258 -0.289880 1.544421 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = 0.920002 -0.393672 0.359577 1.337870 0.386276 -0.569349 0.318346 0.791921 -0.178015 -2.522932 -1.555233 0.623878 -0.094764 -0.065825 0.525762 0.173003 0.259474 0.186193 -3.232557 0.763266 0.899076 0.468243 0.305440 -0.491249 0.391431 -0.795861 0.378205 0.835973 0.222790 1.430489 -0.924119 0.295945 1.188032 0.257291 0.904582 1.340143 0.009401 -0.094289 -0.136282 -0.075832 2.290188 1.028465 -0.225708 0.818060 0.728507 1.598686 0.369059 0.961827 0.600141 -0.953404 0.531595 -0.580043 -1.040958 -0.301566 -1.266961 0.669024 1.360405 0.934725 -0.956384 0.777826 -0.470335 -0.079957 0.353378 -0.399379 1.582292 0.411685 0.963792 0.719489 1.817795 -1.046952 -0.388576 0.923560 1.050868 0.335293 0.514144 -1.122074 -1.102939 -2.092316 -0.063765 -2.464370 -0.778461 -0.165828 1.778802 -1.232074 0.340183 0.768497 -0.409332 1.179688 -0.701311 -0.271856 -1.363686 0.123788 -0.101751 1.858885 0.014150 -0.018787 0.425078 0.615492 0.691348 1.336417 0.132801 -1.066538 -1.011512 -2.887605 -0.379876 -0.586642 0.539047 0.218339 -1.552603 -0.222550 0.332360 1.442877 -1.894656 -0.195744 1.108340 0.777516 0.034524 -0.788224 -0.643637 -0.143735 0.120045 0.416300 1.033531 -1.110756 -0.041205 -0.515077 0.448535 0.186867 0.653129 -0.131693 -0.903852 -1.041681 0.051742 0.135167 -0.195309 -0.029796 0.338859 -0.739811 0.925210 -0.970478 1.375344 -1.701976 0.284877 -0.771551 -0.682338 -0.321962 1.925561 0.990789 0.682515 0.024565 -0.589980 -0.265141 -1.379041 -2.111069 0.571169 0.120152 0.834207 0.222981 -0.160290 0.513152 -0.566786 -0.276360 0.068995 -0.679894 -0.180493 -0.346322 0.355188 -0.081142 -0.295042 -1.073655 0.127056 0.759561 -0.247248 0.767803 -0.643811 -1.822473 -1.628411 -1.422029 1.223244 -0.477620 -0.007984 -0.570521 -0.002044 -1.092699 0.629591 -1.279082 0.354250 -0.205917 -1.350450 -1.535769 0.015971 -0.513489 0.161931 0.219181 -0.948532 -0.231743 0.585310 0.838256 0.470695 0.266228 0.187573 -1.704836 -1.391826 -0.176883 -0.357740 1.526908 0.312439 -0.102976 -1.300049 -0.494270 -1.115272 1.387686 -0.649912 0.188524 -0.494979 -0.800920 1.596346 -0.535307 0.061961 -1.186781 0.602965 0.699917 -2.181422 1.892844 1.421014 -0.894405 -0.634924 -0.486027 0.104659 1.017126 1.617406 -0.858475 -0.751152 0.321918 -0.419560 -0.079927 -0.641324 1.026035 -0.598059 0.586292 -1.355073 -1.037204 0.653059 0.979531 0.051238 0.643297 0.582536 0.528401 0.145783 1.601635 0.638870 -0.023387 -1.342639 -2.914062 0.945027 1.339146 0.130630 0.298815 -0.872210 -1.260840 0.166994 0.111452 1.553622 1.485896 -0.248533 1.286120 -1.225518 -1.432753 -0.726984 -0.109170 0.111035 -0.534983 0.341100 -0.715430 0.330064 0.166856 -0.043445 0.190097 -0.601838 -0.874450 -0.028299 1.076338 0.827105 0.010330 1.545021 0.358585 -0.962945 -0.188915 0.238119 0.034817 0.168256 -0.713292 -0.736912 -0.580533 0.341909 -0.499201 0.743139 -0.087631 0.226041 0.353655 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 1.975165 0.350784 -0.011260 2.362549 0.599844 -2.358735 0.200019 2.075856 -0.777364 -3.888975 -3.192159 1.499343 0.013684 -0.616656 1.453867 0.351518 -0.366252 0.592353 -5.776437 2.255433 1.274503 1.222983 -0.495000 -1.790592 0.761295 -0.416734 -1.025512 1.380992 0.104983 1.914335 -1.985819 0.244328 1.649850 0.223828 1.414740 1.375081 -0.006581 -0.185579 0.460757 0.009825 4.101651 1.904893 0.048684 1.857061 1.818355 2.407656 -0.724760 2.407510 -0.251345 -1.540102 1.359919 -0.904512 -1.946248 -0.026483 -1.913133 2.270718 3.043485 1.290584 -1.657942 1.600919 -0.658725 -0.318857 0.880837 -1.575459 3.353661 1.876089 1.557412 1.113441 3.904090 -0.827552 -0.761057 1.308469 2.758100 -0.073820 0.528892 -2.323064 -1.470562 -4.008747 0.219978 -5.319172 -0.643517 -0.543652 4.466696 -2.694189 1.127201 1.859011 0.222333 2.135442 -1.964156 -0.417643 -1.704790 0.234460 -1.376069 4.261158 -0.360374 0.110914 0.367875 1.180282 1.558083 2.562419 -0.912138 -0.722022 -2.516682 -5.621960 -1.481740 0.468028 0.256841 -0.252695 -3.199499 -0.833768 1.436212 2.424009 -3.433065 -0.945821 2.364752 0.968962 -0.611469 -0.044884 -2.379185 -0.334590 -0.318721 0.721917 1.258597 -1.413774 -0.213263 -1.402675 0.079479 0.269124 1.444072 -0.336703 -2.524399 -1.536793 -0.691037 -0.396049 -0.389653 -0.778501 0.030870 -1.756636 1.816348 -1.454483 1.922573 -3.794826 0.124965 -1.736059 -1.648726 0.306030 2.656970 1.839410 1.150069 0.472634 -0.812827 -1.190365 -3.054061 -3.419128 1.333351 0.059251 1.880977 -0.507852 -0.038168 0.030545 -0.120435 -1.297119 0.897562 -1.938973 -0.559662 -1.550625 3.567085 -0.503168 -0.649601 -2.877141 0.269269 1.959083 -0.986738 0.207368 -0.796952 -2.414611 -2.518454 -2.355378 1.805067 -0.042293 0.500829 -1.090872 0.650828 -2.242526 1.114747 -2.507163 0.874511 -0.165213 -2.351382 -2.357986 -0.538239 -0.343922 -0.337939 -0.810178 -1.614998 -0.074582 1.676127 2.066168 0.383123 0.554589 0.708059 -3.631618 -3.324114 -0.918487 -0.001574 2.313957 1.700205 0.682968 -2.396460 -0.251346 -2.578558 2.531819 -1.890332 -0.326842 -1.015055 -1.176272 3.336844 -1.489599 -0.745680 -2.657297 0.721689 0.476252 -4.272480 3.739143 1.991971 -1.707563 -1.254618 -1.919645 0.425325 2.123034 4.020297 -1.475242 -0.743118 0.451212 -0.685994 -0.681760 -1.541430 2.436044 -1.396399 1.553052 -2.064773 -1.715348 0.789595 2.168189 0.240742 1.604741 0.142213 1.134912 0.291669 2.517345 1.066839 -1.103354 -2.016660 -5.093245 1.373767 1.870055 -0.003561 0.259837 -1.442626 -2.722864 -0.276649 0.815308 2.865104 2.304505 0.373009 1.737728 -2.363767 -2.518290 -0.559232 1.175880 -0.159770 -1.447759 0.586679 -1.375648 0.215000 1.024829 -0.010277 0.602729 -1.500747 -3.565698 -0.926882 1.780399 1.342301 -0.603929 2.862539 0.854958 -1.665089 -0.121586 -0.199151 0.859217 -0.193447 -0.789628 -1.323748 -1.863033 -0.096856 -0.763618 2.204539 0.186345 0.130006 1.226045 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 3.122934 0.569553 0.773968 1.951763 1.034993 -2.746112 0.415090 3.485941 -0.679418 -5.078744 -4.691351 0.979061 -0.335106 -0.937568 2.296572 0.315656 0.220668 0.987296 -8.297128 2.746426 2.016477 1.894456 -0.149059 -1.954993 1.380476 -0.451266 -3.383085 1.059581 0.292597 2.556295 -2.968587 0.184624 2.065388 0.542577 1.893292 1.779795 -0.343368 -0.762500 2.136695 -0.177341 5.427491 2.484149 0.212187 2.586086 2.679562 2.904810 -2.215132 3.968299 -0.363867 -1.960432 2.115211 -4.149971 -2.741903 1.290390 -2.318993 3.080195 4.258643 1.796302 -2.088374 2.217604 -0.565844 0.109800 0.870242 -3.396198 3.879770 2.920917 1.127068 0.913878 4.987717 -0.591707 -0.553904 1.139517 3.496953 0.022617 -0.588811 -3.039783 -0.198936 -6.279884 0.614710 -7.208956 -0.276973 -1.433994 5.944630 -3.458471 2.288675 3.081627 -0.017814 2.579423 -2.058503 -0.697529 -2.191479 0.781819 -1.351828 4.480990 -1.081617 0.364512 0.212582 1.246152 1.686071 2.795417 -1.413643 -0.456433 -4.725429 -7.619746 -1.717060 0.854340 0.158695 -0.520334 -4.220027 -0.559204 2.243618 3.067747 -4.339191 -1.209539 2.467192 1.143368 -2.851411 1.759612 -3.517766 -1.413924 -1.022832 1.356761 0.683060 -2.034036 -0.414655 -3.556888 -0.701311 0.631104 2.126212 -0.878753 -2.536332 -1.735623 -0.859273 -0.686333 -1.001643 -0.591208 0.061852 -1.916713 2.358881 -2.040341 1.899797 -4.459378 -0.238847 -2.391255 -2.256134 0.396168 4.795820 2.585567 0.904989 1.814451 -0.733939 -2.053608 -3.581656 -3.533923 1.624311 -0.759958 3.640331 -0.778881 0.163857 -0.480485 -0.138687 -2.216754 -0.341271 -2.523421 -0.408285 -2.771596 4.942123 -1.256113 -0.824251 -4.042463 0.627767 3.914124 -2.879250 -0.835924 -1.251266 -1.170087 -2.766183 -3.197275 2.275292 -0.099416 1.354509 -1.345690 2.196109 -2.661937 1.300164 -2.747558 0.538660 -0.293073 -3.226952 -2.967846 -0.878019 -0.524044 -0.308611 -0.931540 -1.750158 0.157447 2.692483 3.956726 0.512769 0.850462 0.592152 -4.691704 -4.653410 -2.071372 0.047246 2.700299 2.338700 0.399706 -3.009252 -0.396293 -3.091240 3.895754 -2.694907 -0.551857 -1.592492 -1.269390 4.074456 -1.470577 -1.211841 -3.862627 0.881746 0.353674 -6.151056 4.111769 1.663528 -2.609360 -1.765464 -4.363930 1.130731 2.748017 5.433313 -1.075883 -0.249112 0.601494 -1.435454 -0.837129 -2.837472 3.383034 -1.580707 2.551679 -2.722865 -2.055799 1.464331 2.724576 0.017445 2.546312 0.784255 2.775488 1.472504 3.259523 0.912393 -2.086469 -2.494091 -6.776938 1.356242 5.166565 0.815760 0.307425 -2.312547 -3.559336 -0.871861 1.277804 3.640529 4.175346 2.122400 2.126413 -2.242316 -3.003030 0.023239 2.089722 -0.064769 -2.153561 0.304668 -1.482921 0.077301 1.643112 0.740378 2.054204 -2.750754 -6.522616 -1.330791 2.521618 1.762411 -0.807869 3.470369 1.128102 -2.161732 0.444814 -0.520637 2.134248 -0.491627 -0.062181 -1.634080 -2.510683 -0.735474 -1.314797 3.555768 0.452747 0.400084 1.388714 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/trie-suffixes.cpp__main = 8.273820 0.386631 2.678506 4.676266 2.574885 -6.087943 -1.563145 9.950479 -4.908095 -7.964785 -10.105606 0.633399 -2.912834 0.288926 10.875281 -0.478538 -0.220005 -2.152487 -17.877106 7.022166 -0.016513 0.624889 -1.022732 -5.596388 4.602111 4.756751 -2.466255 3.902978 1.120397 3.323616 -8.435067 -0.284306 0.872898 3.345789 7.231951 -3.260539 -0.038988 -1.616395 -0.873987 -3.424310 12.459254 4.222145 -0.634906 8.296691 6.784332 2.666470 -3.477544 7.434197 1.499444 -1.358299 7.593821 -11.610371 -3.630254 4.831406 -5.860128 5.520292 10.371135 2.240889 -4.531679 3.709614 0.214030 0.962148 0.716771 -9.471181 9.858974 3.798672 7.055590 0.648378 7.774567 -2.610391 -0.938985 2.732815 11.108650 1.358164 -8.305047 -10.030690 2.994577 -19.201478 3.713607 -14.780538 -1.825294 -5.100425 7.387689 -4.368310 5.391167 5.923553 -6.088243 3.450023 -8.313986 2.885351 -2.444698 -0.722140 -1.582046 5.675731 -3.596724 -1.010257 6.635534 2.004219 4.805834 9.398723 -2.111018 2.204725 -5.657224 -12.440134 -3.618715 11.938503 0.954146 -3.376251 -3.150035 0.883941 4.099999 0.314580 -2.171955 -7.594444 3.820704 2.802198 -8.329661 3.337941 -6.685751 -4.997761 -1.355376 6.969024 4.587503 -5.238997 3.459844 -8.780323 -1.491787 3.588111 9.795324 1.257726 0.785821 -6.116145 -0.912775 0.072954 -5.545239 -5.896573 -2.453700 -1.368418 6.030439 0.011600 4.116337 -8.589483 -1.258864 -5.043547 0.550060 3.676401 10.582923 2.989634 1.549675 9.995505 -2.464344 -1.149782 -2.689995 -4.735072 5.897450 4.081111 5.202458 -0.940806 1.647708 2.792876 1.078346 -9.243259 0.904079 -6.266791 -5.283505 -9.824900 2.588369 -1.421124 -1.335655 -8.630695 7.541425 9.240683 -7.718317 -1.343432 -0.079665 -4.160884 -1.291821 -5.501268 4.177131 1.199087 0.721639 2.285580 7.994674 -7.933227 2.731115 -7.401776 2.804718 1.332996 -10.814389 -3.060064 -2.654976 0.395014 3.417418 -2.258956 -1.967970 0.108505 2.179619 13.153332 -1.397210 5.915717 4.540972 -10.454816 -15.664386 -6.957352 3.329554 6.337617 -2.585212 -0.099933 -6.591123 -0.966779 -1.765292 9.302640 -5.981096 -1.520783 -6.645589 -0.641883 6.604075 -1.257229 -5.653999 -5.851579 1.421903 4.311415 -11.097486 5.664347 2.326771 -4.338128 -5.185928 -11.903853 4.049384 5.086329 15.007127 -1.345079 1.080619 -0.047203 3.760942 -1.813038 -7.729766 9.336742 -0.436265 -0.246261 -4.415408 -8.130369 1.223887 4.107830 4.108214 6.802821 3.243582 9.655472 -2.077034 10.864485 -0.449172 -5.347060 -1.987098 -12.386090 0.551528 21.260336 1.004975 2.531113 -8.688719 -10.409671 -5.591974 2.952788 5.103832 11.289735 7.419371 3.154673 0.044137 -3.839044 -1.764584 7.643162 -3.487990 -5.505771 -0.746424 -3.521621 -0.276554 4.841424 -0.666175 3.165626 0.413740 -16.973911 -10.344513 1.166583 1.638393 1.109865 6.328094 6.810623 -7.479226 0.729818 -0.284851 2.280560 2.485697 0.202132 -5.155541 -6.062598 -3.305886 -2.647889 2.587791 4.515352 0.634678 -0.480418 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 1.438243 0.287026 0.027099 2.244067 0.751999 -1.190114 -0.040777 1.401621 -0.522335 -3.531125 -2.950811 1.187388 0.035810 0.327729 1.354468 0.355794 0.026527 0.339133 -4.202299 1.378347 0.926185 0.826884 -0.101518 -1.049051 0.643474 -0.388660 -0.349158 0.883950 0.447071 1.587413 -1.646420 0.536716 1.487534 0.132112 1.252643 0.892879 0.292777 -0.163414 -0.511108 -0.600770 3.572052 1.244093 0.352659 1.849367 1.034482 2.069434 -0.511914 2.192108 0.102856 -1.467560 1.246296 -1.318809 -1.428003 0.011110 -1.778785 2.166397 2.144851 0.954851 -1.443249 1.126993 -0.142339 -0.149737 0.565085 -1.631870 2.588198 1.275184 1.501024 1.095915 2.727780 -1.089058 -0.818381 1.349153 1.982410 0.468873 0.325560 -2.209090 -0.906951 -2.645163 0.179764 -3.754442 -0.496066 -0.741872 3.831695 -2.249031 0.648635 1.450259 -0.476795 1.684515 -1.348161 0.022781 -1.655769 0.055084 -0.802117 2.660250 -0.082876 -0.343966 0.508565 0.798197 1.131055 2.238358 -0.520269 -0.523884 -1.956549 -4.210346 -1.252393 0.452169 0.916302 0.172587 -2.244525 -0.636975 0.461107 2.008092 -2.582302 -0.864709 1.884900 1.086818 -0.364619 0.157034 -1.715259 -0.587427 0.251415 0.578088 1.268095 -1.224623 0.200772 -1.055010 -0.018685 -0.020006 1.478611 -0.158626 -1.699676 -1.711338 -0.822871 -0.085562 -0.292535 -0.814061 0.317844 -1.306480 1.825006 -0.698789 1.568116 -2.945144 -0.100151 -1.396727 -1.410586 0.038980 2.987047 1.367168 1.599596 0.591143 -0.891626 -1.074913 -2.395629 -2.570406 1.002983 0.600086 1.515675 0.293778 -0.100811 0.704602 -0.330523 -0.899694 0.776375 -1.527412 -0.799588 -0.966353 2.014601 -0.554740 -0.533468 -2.686056 0.593449 1.262999 -1.302810 0.519494 -0.510600 -2.103831 -2.040515 -1.943669 1.524175 -0.286857 0.758810 -0.620359 0.475340 -1.764517 0.577150 -2.450880 0.652635 0.050505 -2.432340 -2.080652 -0.196375 -0.384825 -0.330211 0.007321 -1.442375 0.100833 1.462489 2.005596 0.355670 0.553357 0.524478 -3.051105 -2.678391 -0.909037 -0.549132 1.977472 1.205586 0.189478 -1.949457 -0.588942 -1.878949 1.989906 -1.447053 -0.176244 -0.976465 -0.571232 2.094875 -1.458349 -0.255689 -2.325152 0.548175 0.906900 -4.193397 2.434010 1.541913 -1.223976 -1.028914 -1.518106 0.387197 1.468728 3.266868 -1.125993 -0.639831 0.322061 -0.428889 -0.425286 -1.552264 1.920213 -0.899970 0.582158 -1.857490 -1.578634 0.613910 1.530963 0.313993 1.306953 0.960808 1.243257 0.461398 2.283636 1.135902 -0.941810 -1.652646 -4.423236 1.338002 2.305126 -0.202100 0.279076 -1.408322 -2.026277 -0.111008 0.303056 2.147334 1.763988 0.750422 1.714007 -1.790392 -1.897286 -0.373328 0.614026 -0.135272 -1.076225 0.273571 -1.210259 0.285282 0.667663 -0.440361 0.158497 -0.998191 -2.742191 -0.729492 1.643809 0.927108 0.512006 2.367600 0.942702 -1.509001 0.092392 0.047225 0.562074 -0.174138 -1.315253 -1.173211 -1.167382 -0.372406 -0.654045 1.007655 -0.001362 -0.295576 0.840890 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/trie-suffixes.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/trie-suffixes.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 6.323972 0.706775 -4.965438 11.975804 0.107810 -5.522243 0.587996 3.135959 -2.760891 -17.821095 -11.599174 7.083002 2.263696 -1.164037 3.444974 4.529037 -1.480586 1.591009 -18.645328 6.193136 6.936584 2.333910 -1.669818 -3.095256 1.990372 -4.817008 1.742923 2.496852 1.013859 10.435135 -5.343300 5.193675 8.541024 -1.230505 4.114851 7.669816 -3.931196 1.808161 -0.052443 1.137129 13.671504 7.023023 -0.292692 4.614806 2.981092 10.333388 -1.313164 9.649779 -3.106012 -7.056798 6.134653 5.587607 -5.636791 -0.785765 -6.648360 5.427160 11.496218 4.363717 -4.892690 3.933051 -4.804773 -0.298321 3.465617 0.090702 12.730880 7.019801 8.346880 7.416349 13.231285 -4.834592 -0.411353 4.820944 4.417748 -2.202529 8.231861 -6.322661 -10.843413 -2.391109 -2.045503 -15.931373 -4.163346 0.351559 18.294745 -10.529367 -0.580040 1.992740 4.051280 11.068760 -6.162045 0.127092 -6.674924 0.305746 -7.181783 17.579322 1.164046 3.099742 -2.452673 4.701617 3.636277 6.783370 -2.119325 -7.091181 -5.757517 -17.647199 -6.411105 -4.163926 3.858457 4.700100 -15.473968 -2.298442 0.137508 9.726588 -16.414138 0.350087 7.378855 5.961801 8.450675 0.361156 -10.329201 1.115986 0.642251 1.448187 5.692511 -3.337783 -0.145373 -5.022318 2.240315 0.409258 2.805606 -0.171151 -13.402256 -5.022053 -1.467509 -3.173748 0.836287 2.962206 5.905062 -6.738467 6.491089 -5.819278 7.885130 -16.586495 -1.119604 -6.027716 -10.774039 -1.994742 5.409223 9.451253 7.038956 -4.469467 -4.375308 -3.789003 -15.512935 -14.576906 1.273701 -0.487301 3.486872 1.500278 -1.001316 3.385813 -4.865237 1.594748 6.155723 -5.197120 -1.282232 -2.996638 15.664271 -0.283260 -2.530192 -7.103158 -4.739800 -1.370518 0.150461 8.371654 -1.704612 -12.932390 -17.235810 -7.721103 8.747307 -3.072556 0.924322 -7.196306 -0.553511 -10.279656 1.659516 -9.147832 1.387034 -0.155086 -5.500785 -10.436535 -0.337203 -0.609642 -3.437559 -1.939227 -8.088393 -1.870041 10.509553 2.852613 4.253058 1.539781 0.362216 -10.956908 -9.079646 2.808658 -4.881228 8.810039 8.135277 -0.775443 -7.386015 -2.735582 -12.289022 7.284330 -4.899685 1.846673 -2.570814 -2.469624 11.397833 -7.194395 -2.230145 -9.162242 1.862484 0.764222 -15.742376 14.393969 7.673678 -4.671224 -0.556316 -0.934806 2.787538 5.675447 8.253550 -6.611923 -5.534068 0.613207 -3.327705 -0.575236 -1.915307 7.342522 -8.604117 3.581448 -6.451779 -3.570954 5.905049 7.079538 -0.158963 3.618615 0.623605 -2.763565 4.391404 7.186295 7.414738 -3.125959 -8.493658 -20.067795 4.871728 -6.553859 -3.288260 -1.753329 -2.842099 -8.098285 1.942604 -0.184960 11.139111 2.962807 -3.753683 7.957974 -12.731563 -10.907220 -5.772101 1.138483 0.219829 -3.088956 0.272140 -4.478509 2.790829 4.181969 0.620672 0.547010 -9.096708 -3.532482 0.096308 10.210776 2.016486 -0.888792 10.789227 4.163123 -4.694893 -2.717884 1.189042 -0.995747 -1.158162 -8.702436 -4.544397 -2.931336 2.526867 -4.669007 5.750546 -1.768972 0.897731 4.404260 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = 3.312395 -0.281359 -2.064057 6.538470 -1.000555 -3.288823 0.370023 3.518966 -1.089855 -9.530065 -6.963207 4.721289 1.223571 0.728541 3.413974 1.594762 -1.290807 0.685477 -11.966424 3.561572 3.962967 1.866210 -0.321825 -2.165267 1.512633 -1.404076 0.952227 1.521676 1.339328 6.096408 -3.411818 2.589279 4.238972 -0.945395 2.143796 4.035415 -1.728195 0.663933 -0.995731 -0.814520 7.671247 3.760963 -0.287870 3.509757 0.809761 5.542301 -0.460047 4.780357 -0.553413 -4.890325 3.162715 1.254180 -3.906122 -0.804895 -2.927969 3.153861 5.839352 3.729897 -2.666208 2.804305 -2.100647 -0.551070 1.871168 -0.680779 6.837730 3.173018 4.545966 4.232621 6.623032 -3.528851 0.150903 2.485190 2.212408 -0.806242 3.795944 -4.286407 -4.737988 -4.406111 -0.115925 -9.569156 -3.832606 0.403060 9.785341 -6.451605 1.218284 1.862163 0.962069 6.432189 -3.645652 1.171393 -3.244309 -0.835424 -2.499946 7.757468 0.258382 0.466109 0.276527 2.710562 2.193670 4.602141 -0.617767 -3.151432 -3.149129 -9.706685 -2.443622 -1.064454 2.228736 3.225477 -7.563022 -1.501996 0.343604 4.350964 -8.434367 -0.842547 4.676508 4.078657 1.657816 0.351511 -4.137366 0.112786 0.570873 1.266029 4.466909 -3.197475 1.058708 -1.781003 0.786291 1.048526 2.314318 0.805795 -6.001143 -4.455073 -0.111889 -1.001344 0.103886 1.431456 3.870656 -2.176447 4.092962 -3.775919 4.998435 -8.595192 -0.252944 -2.713956 -3.940103 -1.279291 4.012601 4.092615 2.921254 -2.203749 -3.486611 -1.297691 -7.167964 -7.159976 1.993580 1.543355 2.322276 1.684452 -0.490038 2.535665 -2.378709 0.190164 2.241466 -2.972356 -1.261423 -1.563246 4.485583 0.699962 -1.328699 -4.969012 -0.526241 -0.931935 -1.311892 4.579853 -0.460307 -6.494576 -8.929225 -4.283964 5.646020 -0.839674 0.327591 -3.108963 -1.013141 -4.676530 0.753484 -5.518635 1.176185 0.536260 -4.150118 -6.214866 -0.450364 0.100124 -2.076994 -0.108896 -4.480483 -1.464696 4.862068 2.012254 1.447651 1.555681 1.441048 -6.287953 -5.523951 0.824918 -3.177613 4.668847 3.497325 -0.796324 -4.529424 -1.444171 -4.819856 4.964285 -3.613846 1.828783 -2.597217 -1.105200 6.647856 -3.954860 -1.464456 -5.514640 1.362812 2.154647 -10.342430 7.362844 4.002517 -2.073086 0.075353 -0.465270 1.153593 3.719633 5.156568 -4.224606 -3.580220 0.361425 -1.696175 0.016985 -2.401129 3.935126 -4.489735 0.611482 -2.847763 -1.897462 3.036879 3.233505 1.124835 3.182126 2.037492 -0.575611 1.935668 4.720838 4.321474 -2.682958 -4.734419 -10.488629 4.905326 1.748940 -1.601584 -0.462567 -3.583479 -4.613167 1.442101 0.440896 4.639699 3.511067 -0.668912 4.655080 -6.609668 -6.100376 -3.799126 1.200489 -0.213735 -0.950297 -0.234805 -1.932589 2.519696 3.060279 -0.085186 -0.199111 -3.471830 -3.661712 -0.534664 5.656252 1.171557 0.796384 6.853342 2.357969 -3.341741 -1.369838 0.061490 -1.163330 -1.664851 -3.725780 -2.513263 -1.022609 1.796455 -3.592643 2.292823 -0.391903 -0.637393 2.018408 -PE-benchmarks/biconnectivity.cpp__main = 2.956699 1.678557 4.825228 -0.123885 1.776074 -2.033001 2.349395 6.268855 -1.837130 -5.991760 -8.829575 -1.958415 -1.845036 -1.653870 3.579316 -2.933471 1.055054 0.604591 -12.668842 1.777660 3.774612 2.529234 2.115128 -1.483203 1.749228 -1.129399 -8.525060 3.665376 -0.115105 3.365821 -1.991835 -1.613794 2.296821 2.543037 1.591283 4.083643 -1.927069 -1.097975 6.230477 -0.562792 6.166729 3.035865 -0.599900 3.295916 4.454077 3.477019 -4.220550 2.818301 -1.086955 -2.218299 3.488184 -10.124965 -4.020180 1.248398 -1.571171 1.832996 7.294354 2.958469 -2.175855 3.528804 -1.651110 -0.901785 -0.189140 -7.111902 2.325866 4.339420 -0.627781 -0.734333 4.834764 -1.828255 -2.014639 2.598318 3.089071 0.697640 -8.174189 -3.440532 2.166419 -10.798654 1.457293 -12.215126 -3.017252 -2.485451 7.260402 -1.904663 2.840757 4.181406 -3.137646 0.658260 -1.214846 -2.245254 -2.400169 0.869642 -0.620314 1.508651 -1.926322 -0.718804 3.028889 0.308746 3.289742 4.907264 -3.978740 0.857477 -9.771057 -11.275210 0.540818 1.645354 1.429894 -1.167607 -2.737699 -1.689040 4.225792 1.453684 -3.228203 -2.684376 3.940403 2.770678 -11.810180 4.121293 -6.682825 -3.468466 -0.707538 1.309099 3.114224 -2.341104 -0.629534 -5.689143 -1.521884 0.107837 1.589237 -1.441861 -1.214983 -3.950918 -0.530910 -1.573210 -1.844868 -2.204835 -1.696873 1.851168 2.489960 -2.746455 3.054540 -5.417628 2.630498 -2.930450 -1.375888 0.754479 5.475007 5.652072 -1.405517 3.716137 0.701724 -1.530721 -0.943102 -1.424785 2.504333 -0.682571 8.365032 -3.627600 0.087019 -0.234009 0.134267 -3.227354 -4.555829 -0.647539 1.508040 -3.564160 6.696568 -0.982226 -1.014063 -4.341499 2.498639 5.608955 -7.085035 -3.059252 -2.728959 3.000144 -0.559535 -4.719579 2.542296 0.326199 -0.181768 -0.760064 4.221044 -2.128815 2.227639 -2.171929 -0.622253 -0.338417 -5.700115 -2.984521 -0.939382 -0.889356 -0.332669 0.574272 -0.128760 -1.923453 5.708871 7.847033 2.038397 1.568566 0.254779 -3.396050 -4.668604 -4.944045 0.844039 2.412128 4.288053 -0.250741 -4.667911 -0.095295 -2.442730 6.075364 1.535664 -1.429726 -4.178038 -1.938552 5.670259 0.305655 0.027990 -4.262554 0.560163 2.485531 -12.280039 2.187921 1.313763 -2.087281 -4.105214 -7.160401 -1.408605 4.065679 5.837094 0.268961 0.211256 0.857707 -3.314732 -0.336563 -4.325560 4.005714 -0.127569 3.705974 -3.445589 -3.309661 2.831531 2.601946 0.155714 5.581996 2.111647 8.441089 4.312362 4.401561 -0.586472 -5.160797 -1.773930 -8.842718 2.651666 13.817973 1.940349 0.965487 -2.180438 -6.421835 -1.883409 1.885059 3.962148 8.502591 2.107338 2.742868 2.736343 -2.456570 -0.511528 3.653494 0.862171 -3.615743 -0.945668 -0.468825 1.108558 2.832724 -0.750579 7.016295 -4.004398 -12.915795 -3.022535 3.260662 2.806692 0.122402 3.640483 -0.362706 -3.560456 0.478979 -0.193677 4.089670 0.674476 1.580455 -2.338303 -3.973853 -1.012078 -0.366922 3.567262 2.126884 0.612710 2.917444 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.698684 0.007841 0.540362 0.603644 0.197133 -1.093341 0.578434 1.186585 -0.345634 -1.763460 -0.722198 -0.022519 -0.104422 -0.544809 0.273804 -0.077373 -0.223227 0.759924 -2.367838 0.754358 0.892383 0.961558 0.232716 -1.156599 0.306757 -0.219883 -0.795292 0.742571 0.194809 1.222820 -0.803177 -0.616425 0.868669 0.158132 0.166478 1.220157 0.973779 0.197135 0.528667 0.368907 1.636673 0.903068 -0.634680 0.516681 0.904695 1.169573 0.058821 0.490477 -0.987585 -0.741039 0.001757 -0.900065 -0.944457 -0.498142 -0.500771 0.741704 1.942675 1.849047 -0.751030 1.021802 -0.469465 -0.165882 0.395351 -0.369914 0.713016 0.952676 0.053667 0.406654 2.025688 -0.756920 -0.435209 0.483282 0.900435 -0.323721 0.368577 -0.679831 -0.646644 -3.230146 0.023378 -2.531865 -0.698933 0.241163 1.634525 -1.275833 0.995745 1.601866 0.270545 0.651030 -0.749382 -0.576091 -0.779176 0.156346 -0.414196 2.687127 -0.052498 0.073219 0.124830 0.760192 1.122564 1.100439 0.175153 -0.454048 -1.518452 -2.471070 -0.447987 -0.324355 -0.309007 -0.027475 -1.247499 -0.800342 1.974531 0.932679 -1.847306 0.075714 1.224348 0.850847 -0.097616 -0.759339 -0.917921 0.627656 -0.616013 -0.441964 0.460032 -1.176913 -0.533178 0.006592 0.066198 0.121830 0.102569 -0.326006 -1.430850 -0.469624 -0.101980 -0.468972 -0.154240 -0.241771 -0.285350 -1.160608 0.552518 -1.399103 0.987622 -1.477087 0.521904 0.017601 -0.992848 -0.059412 1.133471 0.179887 -0.290989 -0.160782 -0.808776 -0.629986 -0.748538 -1.846939 0.846574 0.188751 1.104907 -0.263660 -0.173785 -0.312875 -0.224750 -0.663656 -0.043466 -0.494533 0.255719 -0.220440 1.960528 -0.457975 -0.209211 -1.165291 0.133769 1.428482 0.254877 -0.076334 -0.889805 -0.200979 -0.996504 -1.163994 0.972214 -0.059555 -0.206966 -0.417551 0.028315 -1.188709 0.985551 -0.788978 0.882092 -0.209093 -0.885446 -1.242627 0.193110 -0.380331 -0.198399 0.054857 -0.616011 -0.297429 -0.324926 0.075551 0.088724 -0.271459 0.656755 -1.742712 -1.507961 -0.397481 0.185362 0.905741 0.317612 0.572303 -0.801604 0.014668 -0.926411 1.256431 -0.493258 -0.114161 -0.582974 -0.438610 1.960876 -0.180025 -0.394986 -1.514736 0.586376 0.500820 -0.057846 2.310113 0.981721 -0.628977 -0.582221 -0.341388 -0.283449 1.285178 1.519160 -0.977151 -0.964265 0.659985 -0.789592 -0.208027 -0.560081 0.876427 -0.650168 1.363810 -0.893191 -0.564093 0.026911 1.294636 -0.132786 1.123436 0.232652 0.199356 -0.609674 1.268221 0.354965 -0.206091 -0.833990 -1.219747 0.939309 -0.009602 0.467671 -0.288908 -0.584692 -1.013797 0.396673 1.359558 1.214968 2.069290 -0.325288 0.848937 -1.315355 -1.236101 0.068876 0.412038 0.496555 -0.963227 0.227795 -0.427917 0.354125 0.465371 0.019280 0.710579 -0.608101 -1.251100 -0.432806 0.849381 0.608010 -0.861703 1.434561 -0.186257 -0.822364 0.254953 -0.164982 0.810857 0.021849 0.658745 -0.245029 -0.741936 0.397674 -0.377923 1.542891 -0.069355 -0.389222 0.876521 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = 1.424227 -0.034892 -0.687395 2.648314 0.213842 -0.805581 0.160050 0.704348 -0.437815 -4.337793 -2.593383 2.601782 0.306432 0.443238 0.417592 0.837619 0.081371 0.441709 -4.485655 1.136296 1.380154 0.563889 0.028812 -0.528309 0.491038 -1.147859 1.354040 0.706702 0.660254 2.506658 -1.472890 0.997808 2.124059 -0.118678 1.226807 1.944384 -0.086928 0.124897 -1.008524 -0.581788 3.396332 1.601608 -0.003359 1.482859 0.494183 2.599595 0.588208 1.995687 0.823636 -1.842742 0.590370 0.686942 -1.646819 -0.443035 -1.806714 1.300797 1.575645 1.108275 -1.382659 0.903089 -0.345476 -0.175266 0.670646 -0.292231 2.539836 0.750153 1.796611 1.569262 2.742775 -1.715275 -0.416543 1.440583 1.261874 0.439181 2.008356 -1.534725 -2.454159 -0.770934 -0.290823 -3.689027 -1.390299 -0.040019 3.831243 -2.513975 0.093322 0.537363 -0.034500 2.342118 -1.138079 0.010183 -2.101432 -0.065139 -0.759543 3.320916 0.562857 0.139760 -0.018453 0.995835 0.918362 1.873322 0.006566 -1.956858 -0.907192 -3.921350 -0.753353 -1.224634 0.984019 1.223095 -2.852582 -0.564101 -0.367189 3.399227 -3.543438 -0.117182 1.815512 1.135987 1.557827 -0.484927 -1.299344 0.329113 0.403785 0.180886 1.715442 -1.345517 -0.023722 0.075257 0.593517 -0.089848 0.906268 0.239251 -2.645971 -1.758401 0.023150 -0.037895 0.014831 0.274193 1.234658 -1.400613 1.666148 -1.157961 1.873653 -2.944679 -0.072978 -0.887046 -1.863407 -0.781928 2.227173 1.934067 1.910865 -0.873691 -0.813074 -0.790895 -2.958388 -3.577061 0.893436 0.312243 0.669640 0.923287 -0.281666 1.267457 -1.314487 0.102362 1.047200 -1.144932 -0.528337 -0.229289 1.716688 -0.162631 -0.350367 -1.695087 -0.558055 -0.230823 0.142013 1.927420 -0.757116 -3.972336 -3.507245 -1.965442 2.145888 -0.924673 0.207769 -1.182385 -0.475006 -1.613864 0.227287 -2.272642 0.400688 -0.159103 -1.751065 -2.620098 0.097390 -0.560141 -0.665723 0.266510 -1.937509 -0.315758 1.723986 0.664644 0.828129 0.192754 0.237073 -2.571084 -1.787949 0.555296 -1.358473 2.233745 1.230414 -0.324320 -2.344074 -0.936751 -2.359611 1.825820 -1.653873 0.639272 -0.775219 -0.646043 2.459361 -1.464086 0.068024 -1.727927 0.945207 1.069111 -4.161443 3.089425 2.286494 -1.016933 -0.247917 0.259643 0.317861 1.612311 2.078065 -1.855909 -1.660817 0.386645 -0.852260 0.013353 -0.510012 1.658132 -1.507266 0.589886 -1.783828 -1.138010 1.058942 1.339820 0.208350 0.743595 0.880274 -0.209616 0.811293 2.176014 1.590100 -0.077679 -2.247735 -4.928355 1.670621 0.063531 -0.477241 0.287215 -1.089347 -1.632185 0.709660 -0.887888 2.400254 0.183884 -0.898936 2.086824 -2.935379 -2.441040 -1.223968 -0.487010 0.153729 -0.297426 0.769051 -1.102843 0.708284 0.409405 -0.250252 -0.451914 -1.139079 -0.201378 0.330282 1.982513 1.005549 0.530452 2.567832 0.721025 -1.449544 -0.311100 0.215318 -0.192562 -0.471778 -2.516722 -1.039141 -0.437379 0.681205 -1.039145 0.826402 -0.435035 -0.008257 0.571705 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 3.446197 0.485642 -2.947405 6.080813 -0.357805 -2.735374 0.227169 1.966062 -1.822720 -9.252132 -6.095436 3.984449 1.455551 0.257544 2.004892 2.778581 -1.047412 0.723418 -9.455232 3.037759 3.535162 1.077844 -0.985095 -1.395672 1.038251 -2.177802 0.679537 0.987195 0.781413 5.557718 -2.929848 2.864332 4.363896 -1.030429 1.770454 3.724300 -1.513254 0.730751 -0.510830 0.133363 6.968379 3.211379 -0.063737 2.312708 0.813769 5.281226 -0.826245 5.645165 -2.438001 -4.031497 3.261829 1.917543 -3.305524 -0.150873 -3.129710 2.878863 5.463067 2.889131 -2.327432 2.164295 -2.541134 -0.098765 1.820391 0.041608 6.595721 3.520138 4.585865 3.920250 6.557582 -2.851842 0.046365 2.601144 1.681031 -1.183085 4.233824 -3.389872 -4.758419 -1.615231 -0.390759 -8.324951 -2.615215 0.396863 10.427540 -5.795192 -0.350426 1.344616 2.127146 6.092187 -3.527534 0.965024 -3.343868 -0.127377 -3.419963 8.730488 0.611635 1.330340 -1.337976 2.475025 1.898354 3.538690 -1.199637 -3.299411 -3.416109 -8.442581 -3.353280 -1.770765 1.784770 2.964267 -8.085841 -1.428245 0.428960 5.257550 -8.481505 0.207965 3.992509 3.516758 4.749807 2.020289 -5.435850 0.548070 0.443892 0.762932 3.324466 -1.714595 0.557450 -2.390693 1.307398 0.300816 1.538100 0.272709 -7.967680 -2.851443 -0.310763 -2.331342 0.577958 1.693147 3.632387 -3.195791 3.629431 -3.088821 3.922384 -8.811271 -0.782427 -2.684693 -6.136018 -1.107441 3.367355 5.332559 3.512896 -2.213719 -2.790122 -1.965112 -7.978422 -7.367614 0.493055 0.350291 1.717563 1.215225 -0.513715 2.050960 -2.514322 0.816756 3.236449 -2.735147 -1.023430 -1.567921 7.917099 0.127738 -1.300496 -4.148457 -2.113405 -1.225554 -0.209624 4.687133 -0.613065 -6.808023 -9.200682 -3.964436 4.797333 -1.328496 0.642003 -3.599429 -0.702888 -5.417557 0.583497 -4.737716 0.788481 0.343300 -3.199029 -5.614170 0.063823 0.053567 -3.039381 -0.760361 -4.253008 -1.054440 5.545756 0.987276 2.037541 0.696904 0.329326 -5.642721 -4.989597 1.537505 -3.020769 4.627892 4.541435 -0.633473 -3.794167 -1.454600 -6.178933 4.143766 -3.105574 1.296999 -1.649573 -0.646008 5.801847 -4.170386 -1.175884 -4.776583 1.196350 0.635279 -9.120532 7.653122 4.152943 -2.240234 0.006184 -0.408049 1.538003 3.072817 4.285675 -3.617142 -2.912596 0.262736 -1.424214 -0.223276 -0.987579 3.761697 -4.652294 1.161828 -2.995256 -1.668831 2.889823 3.628772 0.174841 2.016653 0.827228 -1.455017 2.326750 3.783552 3.879152 -2.294868 -4.052185 -10.490092 3.127209 -2.771319 -2.322110 -0.819147 -2.061546 -3.811359 1.248293 -0.778388 5.296889 1.240175 -1.662604 4.190443 -6.837419 -5.708041 -3.116367 0.819163 -0.155974 -1.264104 0.181959 -2.132396 1.707968 2.493036 0.183131 -0.206792 -4.648204 -2.159225 -0.181932 5.576783 0.844761 0.019004 5.934765 2.156636 -2.095753 -1.500096 0.502350 -0.344049 -0.772391 -4.516700 -2.300296 -1.100304 1.402053 -2.875132 2.600834 -0.687095 -0.258058 2.504813 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 0.990978 -0.190947 0.210770 0.605352 0.574136 -1.020948 0.383364 0.757909 -0.006489 -1.400204 -0.704677 0.324717 -0.076919 -0.859718 0.265236 0.218512 0.075732 0.596710 -1.299836 0.866655 0.395644 0.573151 -0.290175 -0.833515 0.223025 -0.289213 -0.611912 0.433158 -0.022528 0.832646 -0.700808 -0.243072 0.613140 0.152619 0.320748 0.927705 0.578530 -0.123878 0.660973 0.270933 1.603101 0.544084 -0.018909 0.739854 1.005958 0.878608 -0.329676 1.408390 -0.365750 -0.303894 0.572675 -0.722758 -0.694915 -0.007697 -0.916594 0.853209 1.395065 0.598576 -0.686477 0.712351 -0.269673 0.081381 0.381164 -0.322004 0.947105 1.061839 0.035947 0.427444 2.039380 -0.323407 -0.253604 0.542463 1.288727 0.041431 0.643336 -0.616708 -0.446347 -1.617406 -0.121065 -1.270002 0.164540 -0.336433 1.762162 -0.967748 0.502794 1.167176 0.487356 0.747209 -0.569453 -0.417260 -0.696683 0.460228 -0.432507 1.936532 -0.270397 0.563485 -0.485763 0.341546 0.377730 0.752105 -0.096323 -0.482077 -1.248953 -2.232342 -0.837500 -0.277783 -0.481813 -0.486962 -1.557227 -0.249838 0.967659 0.917994 -1.525885 -0.123151 0.711548 0.302371 0.282844 0.105159 -0.917000 -0.034501 -0.272926 0.074521 -0.334985 -0.507561 -0.531053 -0.937830 0.043007 0.152923 0.248060 -0.507266 -1.044520 -0.102931 -0.225917 -0.086014 -0.114430 -0.134045 -0.122198 -1.347587 0.362980 -0.816641 0.549877 -1.394745 -0.314521 -0.595417 -1.115845 0.012484 1.533743 0.103702 0.729280 0.253306 -0.454968 -0.824885 -1.019077 -1.614611 0.398646 -0.756037 0.721531 -0.199931 0.061931 -0.543332 -0.141658 -0.724347 0.210955 -0.712578 0.101344 -0.639105 1.606451 -0.631482 -0.165335 -1.119376 -0.135563 1.382026 0.177506 -0.162881 -0.541300 -0.695690 -0.860751 -0.999498 0.656217 -0.105151 0.227226 -0.444053 0.249456 -1.037497 0.551595 -0.508700 0.482590 -0.281491 -0.710226 -0.951807 -0.038240 -0.246739 -0.100234 -0.276877 -0.616287 0.161666 0.080792 0.472006 0.038985 0.157680 -0.026533 -1.660220 -1.544253 -0.408167 0.444681 1.019664 0.578101 0.522312 -0.517468 -0.155121 -1.129440 0.977471 -1.355147 -0.143684 0.170713 -0.387457 1.446163 -0.450898 -0.505208 -1.316262 0.451161 -0.168328 -0.754089 1.688491 0.676346 -1.006280 -0.617692 -0.964775 0.229639 0.795058 1.646826 -0.561785 -0.240860 0.596677 -0.233978 -0.352656 -0.687276 0.813297 -0.493445 1.381054 -0.980276 -0.677926 0.233512 1.269443 -0.375902 0.370850 -0.128961 0.236502 -0.187373 1.110113 0.347561 -0.061050 -0.894215 -1.647442 0.216798 0.063628 0.236754 0.220211 -0.692733 -0.809233 0.127223 0.530967 1.297587 0.908421 0.442573 0.684875 -1.068798 -1.099957 0.328958 0.339914 0.335001 -0.862906 0.489088 -0.631033 -0.155252 0.130835 0.469428 0.318212 -0.755089 -1.093468 -0.225836 0.810140 0.476011 -0.744104 1.070818 0.188864 -0.428030 0.190490 -0.131117 0.785314 0.078893 -0.019743 -0.282445 -0.781261 0.073900 -0.407506 1.728075 -0.077556 0.271928 0.515481 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.352978 0.543431 -0.152779 1.645177 0.473807 -1.681125 0.614589 1.405801 -0.728520 -3.285771 -1.896460 1.228939 -0.158639 -0.818068 0.342816 0.473090 -0.124434 0.690463 -3.218539 1.372692 1.382192 1.016797 -0.376341 -0.875786 0.657991 -0.504708 -1.299419 0.883775 0.082502 1.865744 -1.159348 0.195792 1.533210 0.131756 0.224094 1.717409 0.268190 0.275495 1.409481 0.131251 2.496915 0.954957 -0.240969 1.267666 1.308180 1.958178 -0.943366 2.325154 -1.394158 -1.199919 0.773330 -0.551451 -1.443740 -0.115589 -1.086156 1.457628 2.287372 1.558995 -1.025271 1.169372 -0.868331 -0.117136 0.723850 -0.809767 1.956465 2.440962 0.534908 1.174200 3.541770 -0.724773 -0.373945 1.148672 1.569790 -0.029577 0.327883 -0.789817 -0.964732 -1.958040 -0.374286 -3.531222 -0.824071 -0.360115 4.293308 -1.972391 0.400561 0.969046 0.851379 1.833726 -1.333031 -0.173589 -1.429879 0.436658 -1.027064 3.446059 -0.148895 0.799615 -0.765306 0.772613 0.924587 1.524853 -1.081247 -0.622660 -2.471704 -3.606152 -1.122909 -0.454721 -0.217773 0.179645 -3.411935 -0.689902 1.280418 2.302972 -3.384924 -0.492482 1.492403 0.913472 0.509662 1.856493 -2.551081 0.087462 -0.288164 -0.353599 0.140932 -0.540108 -0.479415 -1.517801 -0.382502 -0.195068 0.328905 -0.153275 -3.511382 -0.606739 -0.306356 -1.242334 0.224365 0.326151 0.342610 -1.378556 0.966505 -1.566288 1.153235 -3.263609 -0.654532 -0.627282 -2.600676 -0.170166 1.901838 2.055631 1.083666 -0.320459 -0.590433 -1.793686 -2.605999 -2.575634 0.577359 -0.820647 1.558170 -0.167976 -0.117490 -0.326969 -0.699527 -0.763692 0.744481 -1.013709 0.133936 -1.308908 4.252243 -0.547557 0.032535 -2.117005 -0.779629 1.214646 -0.464494 0.224974 -0.866883 -1.486142 -2.763640 -1.692300 1.355186 -0.235618 0.094578 -1.291218 0.334716 -1.914114 0.665295 -1.168357 0.187316 -0.227189 -1.289431 -2.011526 0.427246 -0.240772 -1.269310 -0.496096 -1.089299 -0.263846 1.620810 0.814788 0.735506 0.111372 -0.244376 -2.156808 -2.289122 -0.015878 0.015049 1.382508 2.049199 0.342244 -1.560704 -0.472902 -2.604219 2.381197 -1.505273 0.088667 -0.081171 -0.031664 2.956266 -1.110700 -0.581213 -2.200248 0.727839 0.033372 -3.468451 2.625510 1.206539 -1.426902 -0.785934 -1.285948 0.324076 1.806084 2.180216 -1.242425 -0.947106 0.817543 -0.639874 -0.406661 -0.773790 1.442784 -1.306272 2.106951 -1.518202 -0.830911 0.890341 1.814264 -0.556104 0.954140 -0.204805 0.041523 0.947136 1.633436 1.148862 -0.894226 -1.401132 -3.534522 0.628686 -0.377565 -0.044662 -0.105238 -1.127867 -1.674173 0.471969 -0.164096 2.387876 0.401767 -0.374890 1.387304 -2.300068 -2.030820 0.164511 0.838013 0.385723 -1.074556 0.837951 -0.686525 0.165965 1.132907 0.463530 0.650700 -2.270098 -2.065949 -0.404086 2.027882 0.304496 -0.845162 2.123673 0.135126 -0.829133 -0.113658 0.103287 1.125003 -0.480986 -1.347868 -0.615299 -1.148054 0.346507 -1.031477 2.712266 0.146101 0.042997 1.313305 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = 0.361970 0.104217 0.097853 0.288782 0.296630 -0.448961 0.177750 0.278588 -0.133496 -0.668439 -0.353834 0.153623 -0.043140 -0.382295 0.115428 0.101538 0.059566 0.376290 -0.387373 0.347666 0.181260 0.248333 -0.155487 -0.381268 0.071052 -0.134235 -0.350552 0.192811 0.005639 0.407636 -0.331410 -0.090590 0.286027 0.121637 0.161233 0.430846 0.345441 -0.057513 0.287086 0.075136 0.762634 0.158893 0.059180 0.350947 0.470452 0.418921 -0.179857 0.457059 -0.342322 -0.137934 0.152197 -0.283501 -0.263544 0.010886 -0.440811 0.410346 0.530130 0.286450 -0.329644 0.345447 -0.127466 0.048779 0.161378 -0.222932 0.410146 0.463873 -0.063275 0.230877 0.920818 -0.178468 -0.139728 0.260456 0.555252 -0.004419 0.233020 -0.077943 -0.126030 -0.669879 -0.125087 -0.616702 0.107637 -0.089623 0.986833 -0.439778 0.196741 0.581562 0.226001 0.321843 -0.242993 -0.226755 -0.352043 0.201427 -0.261252 0.776591 0.000344 0.227823 -0.276447 0.145137 0.192926 0.358017 -0.155668 -0.202197 -0.591551 -1.060152 -0.425639 -0.124861 -0.225586 -0.250793 -0.679634 -0.189111 0.568945 0.670424 -0.719106 -0.059751 0.329535 0.139279 -0.063649 -0.000155 -0.511393 0.031245 -0.138831 -0.017430 -0.147912 -0.167066 -0.252433 -0.352092 -0.048617 -0.051788 0.161065 -0.214640 -0.512477 -0.098155 -0.121705 -0.132989 -0.067115 -0.099492 -0.070130 -0.567567 0.180450 -0.351217 0.251823 -0.599806 -0.055433 -0.255084 -0.639182 0.001560 0.641183 0.118290 0.354991 0.099604 -0.185079 -0.405986 -0.470720 -0.742732 0.267243 -0.321877 0.351366 -0.073058 0.016699 -0.246627 -0.112861 -0.341271 0.225218 -0.342965 0.043657 -0.266201 0.893200 -0.316767 -0.112163 -0.607058 -0.054992 0.628545 0.088102 -0.126655 -0.313773 -0.144194 -0.390584 -0.472779 0.303190 -0.067521 0.117143 -0.174807 0.095398 -0.426471 0.257691 -0.247106 0.236724 -0.139501 -0.297829 -0.458737 -0.024540 -0.115896 -0.256352 -0.100044 -0.277833 0.108307 0.123285 0.004082 -0.000330 0.030124 -0.003351 -0.628191 -0.661874 -0.169751 0.195496 0.293494 0.441890 0.285618 -0.376858 -0.089439 -0.536651 0.465734 -0.555391 -0.055994 0.100443 -0.151929 0.653963 -0.255036 -0.233002 -0.508838 0.220305 -0.057115 -0.543669 0.672136 0.322594 -0.472811 -0.304055 -0.450158 0.104355 0.360767 0.794351 -0.278529 -0.040111 0.303983 -0.141751 -0.149603 -0.301932 0.372205 -0.201205 0.645471 -0.478431 -0.311944 0.128384 0.599292 -0.172184 0.201403 -0.032205 0.143995 -0.007636 0.520493 0.203565 -0.032334 -0.393298 -0.635098 0.113978 -0.133092 0.125738 0.127550 -0.201354 -0.346131 0.057802 0.095446 0.591371 0.222997 0.097670 0.346633 -0.450056 -0.505709 0.207240 0.154704 0.197990 -0.483894 0.310923 -0.297916 -0.085467 0.035860 0.215218 0.160969 -0.334610 -0.516951 -0.116989 0.399045 0.253061 -0.295964 0.511306 0.054550 -0.232213 0.127275 -0.067945 0.448072 0.036763 -0.179236 -0.181660 -0.367756 0.040557 -0.198883 0.806769 -0.081064 0.088145 0.337584 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 2.612323 0.273104 -0.197217 2.539923 0.870866 -2.499472 0.908692 2.183625 -0.717832 -5.151006 -3.188289 2.597738 -0.187106 -1.296299 0.575648 0.879936 -0.019963 0.915302 -5.109033 2.291472 1.785840 1.288233 -0.640016 -1.500647 0.911763 -1.062485 -1.154349 1.390956 0.199808 2.871604 -1.839407 0.164854 2.374859 0.299124 0.885009 2.862925 0.277081 0.166887 1.542809 -0.150245 4.289947 1.953760 -0.181046 2.186404 2.134345 3.093193 -0.989064 4.028364 -1.057717 -1.802136 1.519676 -1.036750 -2.585894 -0.146949 -2.149307 2.214080 3.258193 1.732164 -1.779167 1.833478 -1.215288 -0.104909 1.030946 -1.101946 3.186751 3.123231 1.069578 1.664673 5.296110 -1.420126 -0.799128 2.191202 2.878602 0.381760 1.138415 -1.800636 -1.994561 -2.541383 -0.305419 -5.083649 -1.189643 -0.738923 6.672372 -3.098486 0.603025 1.635835 0.937225 2.749556 -1.944206 -0.422306 -2.317617 0.778866 -1.404871 5.299648 -0.258020 1.239659 -0.888763 1.089469 1.378059 2.633973 -1.248129 -1.378110 -3.557903 -5.843738 -1.405338 -0.927195 -0.080955 0.137502 -4.850401 -0.965329 1.543250 3.802627 -4.886485 -0.673179 2.577246 1.168438 1.220614 2.219035 -3.227716 0.060331 -0.155602 -0.096040 0.529792 -1.170274 -0.909258 -1.885676 0.015114 -0.178681 0.758490 -0.367533 -5.046206 -1.159227 -0.265541 -1.153504 0.134060 0.199943 0.479412 -2.461235 1.583870 -2.118555 1.937847 -4.874826 -0.857349 -1.400728 -3.570797 -0.310234 3.759574 2.919865 2.361740 -0.260600 -0.595150 -2.500813 -3.835928 -4.323675 1.026481 -1.260865 2.198032 -0.274419 0.018054 -0.250773 -1.028813 -1.132005 0.788699 -1.717575 0.144988 -1.742391 5.495540 -0.949755 -0.183022 -3.114324 -0.993109 1.803926 -0.453832 0.530663 -1.297541 -3.690790 -3.969327 -2.867426 2.230157 -0.525904 0.261346 -1.725441 0.367483 -2.561275 0.831164 -2.014747 0.793231 -0.363165 -2.285548 -3.145127 0.348785 -0.504480 -1.273057 -0.637531 -1.776583 -0.384680 2.271194 1.486764 0.979128 0.596634 -0.268974 -3.819037 -3.553254 -0.140951 -0.043645 2.779599 2.882530 0.445881 -2.474828 -0.780850 -3.961434 3.336428 -2.934246 0.093217 -0.373261 -0.475948 4.484156 -1.636760 -0.573578 -3.449100 1.294845 0.306282 -5.588318 4.125743 2.410904 -2.231394 -1.328467 -1.786699 0.343202 2.806631 3.777589 -1.911132 -1.508603 1.211368 -1.128292 -0.614487 -1.016939 2.402057 -1.919073 3.070814 -2.558347 -1.574491 1.290940 2.756269 -0.611298 1.298181 -0.149021 0.393932 1.311813 2.865148 1.654999 -1.040236 -2.804426 -6.585502 1.268577 0.360876 -0.235231 0.353369 -1.782090 -2.785838 0.612644 -0.410581 3.700363 0.791529 -0.326096 2.260860 -3.467431 -3.271589 -0.028561 0.910283 0.520109 -1.564285 1.357217 -1.232753 0.226215 1.234823 0.536256 0.736356 -2.822834 -2.835892 -0.471225 3.076225 1.129621 -1.010548 3.301457 0.421709 -1.436879 -0.184878 0.117434 1.532699 -0.458100 -2.323553 -1.150813 -1.867778 0.531364 -1.391686 3.796951 0.399011 0.320270 1.652592 -PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = -0.043632 0.013273 -0.088389 0.602862 -0.081621 0.010077 0.041955 -0.146502 -0.243090 -0.958162 -0.372740 0.015821 0.074422 0.353094 0.170475 0.068865 -0.033736 0.174829 -0.751233 -0.003556 0.478796 0.190430 0.312310 0.114376 0.139688 -0.146973 -0.002330 -0.014293 0.259685 0.643026 -0.344706 0.362855 0.528351 -0.075420 0.029250 0.315744 0.192830 0.280127 -0.197067 0.037478 0.557199 -0.109719 0.214687 0.102310 -0.198088 0.517376 -0.020951 0.591676 0.269261 -0.554006 0.425812 -0.305879 -0.006317 0.035639 -0.165108 0.262470 0.334336 0.628701 -0.206139 0.148144 -0.071327 0.095920 0.081655 -0.139673 0.368581 0.364570 0.110677 0.318758 0.378374 -0.351352 0.020073 0.029937 -0.224855 -0.216814 0.238165 -0.342428 -0.222993 -0.378109 -0.155145 -0.481336 -0.347015 0.199916 0.532074 -0.582755 0.025933 0.216343 -0.040767 0.475237 -0.050263 0.202718 -0.441914 -0.069779 -0.032828 0.499672 0.215364 -0.123053 -0.050520 0.068431 0.195031 0.243538 -0.018915 -0.248680 -0.326206 -0.625631 -0.396700 -0.194738 0.364207 0.486141 -0.690191 -0.189035 -0.009961 0.303915 -0.869317 0.059921 0.260497 0.574481 0.047966 0.161605 -0.307842 0.031601 0.112852 -0.051803 0.451174 -0.276449 0.142360 -0.354899 -0.156173 -0.044712 0.141458 -0.099515 -0.245856 -0.402155 -0.206296 -0.173420 0.041434 0.137631 0.369123 0.045749 0.413774 -0.273529 0.301046 -0.461619 -0.100299 -0.022988 -0.565195 -0.242782 0.683034 0.199989 0.259081 -0.307717 -0.642530 -0.206555 -0.579427 -0.624375 0.031701 0.144192 0.329813 0.502577 -0.176725 0.352999 -0.364623 0.133888 0.184580 -0.108142 -0.187614 0.037523 -0.057591 -0.077985 -0.109393 -0.527435 -0.035071 -0.174580 -0.336561 0.491724 -0.099044 -0.260112 -0.807171 -0.366384 0.489308 -0.215871 0.142143 -0.293158 -0.000202 -0.538581 -0.007051 -0.524842 -0.179898 0.098999 -0.329417 -0.598809 0.156077 -0.135949 -0.169949 0.245928 -0.437323 -0.114918 0.315707 0.120831 0.325009 -0.045862 0.068229 -0.398565 -0.338826 0.037273 -0.531639 -0.109741 0.137374 -0.036731 -0.267881 -0.329351 -0.339903 0.204644 -0.135739 0.146098 -0.112115 0.071471 0.380674 -0.299347 0.049628 -0.264388 0.018339 0.357443 -0.770096 0.395288 0.077845 -0.074055 0.074934 0.076141 0.101556 0.272942 0.231796 -0.287494 -0.294605 0.036639 -0.194549 0.109653 -0.169193 0.238374 -0.407361 -0.064029 -0.201940 -0.085776 0.195655 0.282262 0.032196 0.175789 0.479340 -0.052934 0.343417 0.291000 0.284288 -0.176870 -0.082802 -0.811341 0.415771 0.125662 0.013685 -0.094365 -0.378085 -0.045141 0.353504 0.089924 0.387699 0.265649 0.031098 0.472750 -0.538515 -0.421923 -0.192404 -0.090410 0.060245 -0.131117 -0.251817 -0.126120 0.300106 0.307612 -0.083627 0.123832 -0.279158 -0.182403 0.032056 0.457528 -0.147088 0.359835 0.557458 0.112024 -0.282676 0.035658 0.063344 0.054933 -0.220694 -0.340905 -0.120913 0.122792 0.108019 -0.301508 0.033164 -0.437946 -0.360587 0.239068 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.821959 0.687635 0.142977 1.663874 0.731025 -2.228260 0.879716 1.890620 -0.833170 -3.651924 -2.272666 1.330834 -0.246175 -1.344226 0.366737 0.487807 -0.132208 0.960556 -3.982009 1.729398 1.515696 1.198747 -0.495827 -1.531057 0.720622 -0.634498 -1.660583 1.286552 -0.045462 2.119624 -1.393107 -0.179495 1.670711 0.473849 0.578264 2.208310 0.319537 0.219038 1.859801 0.135753 3.092816 1.527259 -0.474740 1.431994 1.918391 2.279891 -0.886362 2.231518 -2.111380 -1.196247 0.591461 -0.843692 -1.921039 -0.164714 -1.412044 1.654626 2.956943 1.789132 -1.334670 1.617724 -1.002036 -0.083831 0.860300 -0.938298 2.296140 2.569184 0.444208 1.147069 4.275329 -0.909057 -0.541135 1.357887 2.219562 -0.212217 0.332391 -0.920645 -1.229252 -2.618802 -0.190142 -4.603743 -0.776128 -0.272006 4.944722 -2.211085 0.749924 1.512095 0.997920 1.951337 -1.641157 -0.674906 -1.605474 0.667103 -1.444828 4.539562 -0.195363 1.045213 -0.673289 1.094727 1.339099 1.952007 -1.255458 -0.751312 -2.892837 -4.763986 -1.010267 -0.556250 -0.446652 -0.201321 -3.591357 -1.026675 1.965811 2.901927 -3.791392 -0.538443 1.939889 0.888777 0.002918 1.200234 -2.738772 0.313461 -0.718349 -0.370647 0.105531 -0.846985 -0.852393 -1.359495 -0.284054 -0.171565 0.502567 -0.255963 -4.103036 -0.562609 -0.208897 -1.457893 0.053354 0.189279 0.013574 -1.766571 1.015823 -2.092927 1.464483 -3.729476 -0.158995 -0.871240 -3.002758 -0.050702 1.770326 2.142183 0.877780 -0.212247 -0.244584 -1.934175 -2.812511 -3.349782 1.051184 -0.866263 1.955444 -0.674708 -0.069933 -0.698729 -0.806655 -1.167602 0.837742 -1.315428 0.256392 -1.609212 5.530694 -0.683617 -0.210542 -2.229581 -0.699512 1.942124 -0.328436 -0.062073 -1.269222 -1.526878 -2.904797 -2.169804 1.582212 -0.216309 -0.048920 -1.382185 0.464631 -2.187232 1.075984 -1.301691 0.818599 -0.377487 -1.377178 -2.310531 0.192695 -0.343742 -1.177871 -0.659909 -1.183662 -0.281669 1.738371 0.607070 0.567344 0.220130 0.060955 -2.499027 -2.692999 -0.101981 0.447377 1.596175 2.413289 0.632889 -1.857940 -0.358456 -2.935702 2.775171 -1.525058 -0.011285 -0.300704 -0.306209 3.679893 -1.096551 -0.685173 -2.505965 0.951633 0.004907 -3.439460 3.308185 1.662491 -1.808564 -1.193438 -1.674608 0.236897 2.155422 2.979661 -1.547441 -1.099195 1.058328 -1.107245 -0.578245 -0.811056 1.784233 -1.350814 2.822618 -1.946584 -1.088072 0.935793 2.243666 -0.619013 1.478359 -0.405019 0.244769 0.833475 2.158313 1.093657 -0.882691 -1.976714 -4.109955 0.764218 -0.554309 0.181296 -0.170826 -0.893229 -2.260386 0.348013 0.218403 2.857210 1.198378 -0.713358 1.609960 -2.517048 -2.458485 0.201181 1.071153 0.585079 -1.580090 0.925376 -0.851413 0.131178 1.089177 0.656720 1.076306 -2.502390 -2.670693 -0.595230 2.359761 0.672949 -1.439466 2.544824 -0.002025 -0.982054 -0.081785 -0.037051 1.591743 -0.197769 -1.232604 -0.917939 -1.691207 0.480358 -1.085532 3.454049 0.401745 0.297039 1.697514 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.311925 -0.017386 0.274334 0.703252 0.807987 -1.263513 0.518620 1.012036 -0.173208 -1.775773 -1.100471 0.534105 -0.108874 -1.112144 0.346379 0.223677 0.074326 0.668617 -1.501430 1.034051 0.470762 0.631871 -0.448640 -1.008164 0.248181 -0.377171 -0.952617 0.617437 -0.080167 1.010134 -0.771970 -0.328674 0.725565 0.259711 0.328812 1.167816 0.626591 -0.167546 0.942946 0.226700 1.997957 0.642924 0.061411 1.029118 1.325716 1.063078 -0.682937 1.911418 -0.720132 -0.345517 0.862780 -0.894937 -0.939449 0.036310 -1.108319 1.074026 1.786095 0.572820 -0.779939 0.903406 -0.414622 0.059279 0.415883 -0.513537 1.126946 1.514203 0.008588 0.477078 2.563535 -0.431665 -0.447301 0.870793 1.580669 0.116838 0.531325 -0.693685 -0.482567 -1.630950 -0.111339 -1.630711 0.120591 -0.549920 2.620975 -1.101978 0.437420 1.396620 0.667770 0.859511 -0.705909 -0.484256 -0.790013 0.613214 -0.699396 2.367288 -0.336463 0.809166 -0.655137 0.278547 0.527429 1.068237 -0.398912 -0.454638 -1.762286 -2.765813 -1.024741 -0.259527 -0.544099 -0.629768 -1.938065 -0.370441 1.199314 1.211395 -1.792385 -0.273989 0.965191 0.423774 0.311784 0.680561 -1.480462 -0.146109 -0.214577 0.015160 -0.407228 -0.431213 -0.681931 -1.253718 0.004660 0.019515 0.269797 -0.648394 -1.630643 -0.170616 -0.309762 -0.324593 -0.068454 -0.278084 -0.188153 -1.588883 0.433942 -0.896703 0.618006 -1.898173 -0.426908 -0.801431 -1.598942 0.078031 1.803861 0.415046 1.056390 0.386792 -0.390564 -1.154061 -1.251672 -1.891562 0.423885 -0.987738 1.022620 -0.406459 0.114415 -0.667701 -0.190430 -0.928071 0.297347 -0.820990 0.202110 -0.885946 2.534159 -0.826985 -0.196981 -1.455001 -0.200318 1.555817 0.094489 -0.257961 -0.634695 -0.884492 -1.063622 -1.294797 0.766910 -0.101676 0.226372 -0.558581 0.357410 -1.249317 0.564347 -0.557463 0.580812 -0.280883 -0.984754 -1.136195 -0.022212 -0.228565 -0.387166 -0.360238 -0.715927 0.109365 0.462562 0.627439 0.137443 0.257761 -0.173693 -1.953949 -1.934044 -0.552267 0.590588 1.201582 1.086177 0.640089 -0.672843 -0.183825 -1.569690 1.243906 -1.625196 -0.247497 0.154741 -0.366327 1.829482 -0.604572 -0.624325 -1.667172 0.505102 -0.238434 -1.369776 1.989780 0.774833 -1.215543 -0.900523 -1.309341 0.173367 1.018330 2.079627 -0.656611 -0.246083 0.746311 -0.297356 -0.459216 -0.765729 1.055206 -0.595730 1.768933 -1.226056 -0.900799 0.316906 1.629330 -0.501845 0.518459 -0.207176 0.440894 0.076477 1.351420 0.457462 -0.324282 -1.043058 -2.242756 0.261784 -0.029697 0.099091 0.250627 -0.789770 -1.182836 0.135034 0.466641 1.628093 0.817937 0.533892 0.831656 -1.146565 -1.328384 0.458935 0.522607 0.434557 -1.147608 0.580029 -0.740135 -0.194387 0.255601 0.473719 0.521001 -1.112093 -1.563827 -0.414675 1.105633 0.575517 -0.831122 1.315790 0.260466 -0.486192 0.206691 -0.148407 1.137760 0.131531 -0.261749 -0.371433 -1.075033 0.003081 -0.413753 2.162682 0.084344 0.301911 0.797949 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.691743 0.555306 -0.352229 1.848917 0.585372 -2.584581 0.857848 1.592649 -0.639650 -3.279928 -1.462968 0.955437 -0.165917 -1.751775 0.284926 0.779747 -0.615888 1.134262 -2.895012 1.953746 1.478724 1.314246 -0.723767 -1.706956 0.633681 -0.418543 -1.731461 1.053865 -0.201201 1.847804 -1.227197 -0.290585 1.611417 0.223623 0.031258 1.991927 0.635925 0.577390 1.968604 0.739373 2.643827 1.336576 -0.688327 1.099981 1.723465 2.034956 -0.877709 2.473400 -3.009966 -1.065705 0.566738 -0.432538 -1.520822 -0.315682 -1.026630 1.628479 3.110984 1.949373 -1.196446 1.452383 -1.186423 -0.020691 1.060195 -0.241857 2.251541 2.945433 0.368073 1.381153 4.480640 -0.537990 -0.290461 1.065940 2.030792 -0.698575 1.099230 -0.678018 -1.500876 -2.329639 -0.341219 -3.595241 -0.667959 0.015272 4.553850 -2.300757 0.704167 1.413467 1.763441 2.129120 -1.733350 -0.444523 -1.290619 0.753709 -1.658261 5.171903 -0.289720 1.256388 -1.402281 1.139063 1.222211 1.518844 -1.132568 -0.659299 -2.708454 -4.173674 -1.326958 -0.591144 -0.864311 -0.127930 -4.118304 -1.186630 2.051436 2.510163 -4.030704 -0.303503 1.791587 0.898634 1.304351 1.198392 -2.750337 0.690069 -0.754267 -0.690434 -0.356355 -0.570814 -0.997423 -1.644058 -0.068316 -0.027054 0.055452 -0.323240 -4.432952 -0.003293 -0.282257 -1.712977 0.407358 0.618046 0.129655 -2.314930 0.757316 -2.225908 1.206455 -3.872856 -0.430547 -0.585906 -3.428261 0.045495 1.512324 1.778822 0.796137 -0.588235 -0.721130 -2.194279 -3.000639 -3.600614 0.575443 -1.194761 1.549195 -0.660519 -0.073730 -1.089158 -0.658802 -0.874473 1.262317 -1.226285 0.318058 -1.638471 5.879978 -0.670252 -0.191939 -2.025015 -1.202268 1.780942 0.214119 0.161793 -0.964842 -1.350827 -3.152084 -1.975292 1.454699 -0.070159 -0.060301 -1.814858 0.299347 -2.817311 1.231141 -1.046668 1.052470 -0.270324 -0.762898 -2.162928 0.220935 -0.165485 -1.156741 -1.099995 -1.130135 -0.257100 1.267733 -0.114943 0.465324 0.199214 -0.069250 -2.592100 -2.666760 0.219768 0.599318 1.684496 2.301157 0.999447 -1.303947 -0.191277 -3.137139 2.669708 -1.753524 -0.066729 0.121535 0.062157 3.852189 -1.077296 -1.162861 -2.629385 0.881762 -0.578625 -2.038380 3.475613 1.550226 -1.730087 -0.881210 -1.337445 0.387783 2.098666 2.664803 -1.645618 -1.129518 1.120832 -0.843567 -0.699377 -0.665454 1.534195 -1.738983 3.053039 -1.567138 -0.652671 0.686031 2.329450 -0.935716 1.017200 -0.920643 -0.636393 0.369241 1.690934 1.151499 -0.821854 -1.756284 -3.395435 0.430888 -2.190294 0.022722 -0.480232 -0.804754 -1.815701 0.575477 0.523152 2.930788 1.156249 -0.765671 1.369936 -3.069443 -2.494277 0.366038 1.202301 0.489688 -1.564809 0.945829 -0.629867 -0.063842 1.293089 0.813592 0.864017 -2.833768 -2.190851 -0.605362 2.376045 0.144529 -2.089678 2.341186 0.001263 -0.582438 -0.186698 -0.000256 1.494619 -0.284937 -0.920638 -0.701883 -1.571638 0.524502 -1.165914 3.848066 0.047649 0.118922 1.762568 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.195953 -0.210226 0.042255 1.649730 1.120671 -1.731242 0.399692 1.398172 -0.208851 -3.307196 -2.443053 2.240599 -0.183562 -1.209670 0.631898 0.458611 0.380528 0.417291 -3.842998 1.846055 0.745454 0.542453 -0.796947 -1.052591 0.524766 -0.998647 -0.105879 1.088053 -0.032950 1.692481 -1.472138 0.182785 1.319723 0.443230 1.456394 1.836173 -0.172974 -0.545386 0.741925 -0.182613 3.543810 1.598074 0.171102 1.826385 2.015455 1.984754 -0.554323 2.755326 0.636185 -0.836880 1.082207 -0.246805 -1.740964 0.165731 -2.184696 1.499300 1.924749 -0.043615 -1.473478 1.092423 -0.526209 -0.077543 0.586065 -0.733374 2.551519 1.371595 0.960427 0.877360 3.569237 -0.769195 -0.654166 1.625763 2.761626 0.772356 1.101772 -1.115724 -1.594644 -1.478859 -0.107477 -3.133955 -0.290622 -0.972620 3.869035 -1.778022 0.357677 1.143706 0.425670 1.809768 -1.199892 -0.640550 -1.677877 0.700849 -0.906048 3.146672 -0.278512 1.054653 -0.444345 0.566393 0.639038 1.962373 -0.698962 -1.385437 -1.817451 -4.727323 -1.023727 -0.640243 -0.160082 -0.600948 -2.990498 -0.136179 0.476881 3.057314 -2.687196 -0.622749 1.492371 0.194994 0.351207 0.450756 -1.792829 -0.523123 0.039156 0.611395 0.184778 -0.679734 -0.759105 -1.493754 0.482260 0.069894 0.952493 -0.480946 -2.168592 -0.835169 -0.007085 0.139871 -0.312336 -0.301914 0.199790 -2.003172 1.032978 -0.989651 1.299583 -2.824236 -0.464854 -1.729684 -1.687498 -0.054031 2.657196 1.664145 2.063402 0.493066 0.029251 -1.253055 -2.504412 -3.278955 0.842701 -1.326565 1.121995 -0.418087 0.203640 -0.170793 -0.530508 -1.116872 0.581732 -1.497598 -0.037356 -1.426469 2.622138 -0.733112 -0.250242 -1.841501 -0.476981 1.550236 -0.074173 0.272279 -0.884633 -3.242200 -2.177974 -2.114087 1.408548 -0.436123 0.354944 -0.941779 0.400549 -1.429207 0.543112 -1.324721 0.491225 -0.648942 -1.647567 -1.878905 -0.489502 -0.451995 -0.268665 -0.690102 -1.398879 0.099296 1.552293 1.355948 0.488008 0.694086 -0.375100 -2.753794 -2.510502 -0.323883 0.341417 2.343969 1.644503 0.254316 -1.878061 -0.536882 -2.592366 2.074931 -2.696813 -0.037201 0.029219 -1.194421 2.735600 -1.044391 -0.729080 -1.858091 0.936083 -0.049088 -3.730932 2.919826 1.839686 -1.912281 -1.182077 -1.630937 0.454169 1.638378 3.182575 -1.183217 -0.396489 0.665970 -0.428383 -0.521610 -0.857356 1.917904 -0.959137 2.076035 -2.109578 -1.665712 0.951083 1.964879 -0.272319 0.530066 -0.291691 0.774814 0.805188 2.267095 0.910340 -0.149176 -2.221941 -4.787802 0.624101 0.879764 -0.121114 0.864512 -1.219650 -2.217616 -0.207867 -0.620156 2.688079 0.270871 0.315523 1.503516 -1.916051 -2.207369 -0.244097 0.269975 0.130876 -1.080390 1.363890 -1.258984 -0.224555 0.128400 0.601686 0.188361 -1.393411 -1.826666 -0.205750 1.431002 1.430353 -0.614028 2.048240 0.761847 -1.138230 -0.146523 -0.048820 0.885773 0.026074 -1.711311 -1.078996 -1.612000 0.081181 -0.658695 2.406228 0.312100 1.120265 0.621912 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.893541 -0.258685 -0.138620 1.498505 0.517180 -0.970042 0.233537 0.498768 -0.174973 -2.488975 -1.174407 1.375866 -0.247027 -0.293654 0.103069 0.542470 0.163497 0.173006 -2.192153 1.021005 0.769627 0.469475 -0.112638 -0.379506 0.613466 -0.583326 0.264334 0.680750 0.163947 1.218616 -1.014879 0.370233 1.146569 0.165139 0.514131 1.174418 0.123307 0.173751 0.373482 -0.155080 1.891421 0.582638 -0.096702 0.953379 0.876425 1.483076 -0.020928 1.814912 0.412381 -0.869362 0.475657 -0.024736 -0.977467 -0.170628 -1.181517 1.117850 1.027186 0.700441 -0.967340 0.532438 -0.314727 0.028822 0.472033 -0.330386 1.655494 1.145739 0.774149 0.897824 2.363229 -0.650430 -0.339763 1.046577 1.530477 0.502018 0.769849 -0.828708 -1.065768 -0.910248 -0.341545 -1.916296 -0.499659 -0.318775 2.423141 -1.363541 -0.010833 0.269566 0.125905 1.500184 -0.824948 0.045498 -1.353750 0.395849 -0.250579 2.233640 0.028644 0.401719 -0.374366 0.617201 0.406581 1.207739 -0.360166 -0.750444 -1.125083 -2.573820 -0.681650 -0.600416 0.211856 0.124117 -2.477336 -0.130637 0.193970 1.857897 -2.279125 -0.390858 0.997132 0.433208 0.733875 0.513616 -0.943350 -0.057244 0.066173 0.011970 0.110199 -0.405741 -0.281417 -0.865173 0.083541 -0.085437 0.504722 -0.021202 -1.957279 -0.527674 -0.146203 -0.160775 0.133872 0.251122 0.429918 -1.010404 0.775545 -0.816096 0.878898 -2.081174 -0.567783 -0.609341 -1.307291 -0.279598 1.802012 1.260832 1.289056 -0.270683 -0.321005 -1.209259 -1.976976 -2.152253 0.368438 -0.575536 0.653875 0.346970 -0.081173 0.170108 -0.562360 -0.511918 0.618869 -0.902657 -0.178037 -0.911613 1.436711 -0.324107 0.156962 -1.356813 -0.594659 0.762649 -0.359786 0.450202 -0.522265 -2.169570 -2.019683 -1.311119 0.914936 -0.399756 0.219554 -0.838631 0.080043 -1.262860 0.454705 -1.002598 0.053660 -0.259452 -1.038569 -1.460905 0.239531 -0.364356 -0.332205 -0.235278 -0.971655 -0.019436 0.680449 0.610248 0.596598 0.297162 -0.308725 -1.699694 -1.514092 0.197089 -0.126669 1.192331 0.897615 -0.028078 -1.176032 -0.684916 -1.735076 1.559196 -1.541312 0.215778 0.218844 -0.196798 1.863341 -0.779498 -0.074746 -1.211732 0.661630 0.201745 -2.577988 1.742704 1.209003 -1.143516 -0.525602 -0.643579 0.351864 1.167366 1.601909 -1.024784 -0.659103 0.464315 -0.214885 -0.253051 -0.359577 1.057924 -0.791305 1.291652 -1.299919 -0.835746 0.506339 1.119295 -0.280424 0.327665 -0.039717 -0.082166 0.507579 1.352225 0.814348 -0.021822 -1.336344 -3.090982 0.349007 0.197854 -0.054527 0.470961 -1.073494 -1.044261 0.312969 -0.527994 1.798550 -0.152815 -0.230152 1.117269 -1.801627 -1.433468 0.037314 -0.022182 0.030059 -0.450730 0.970973 -0.615166 -0.114799 0.388031 0.303484 -0.218623 -1.107914 -0.711145 0.005359 1.335082 0.379523 -0.254696 1.394369 0.215968 -0.708566 -0.216675 0.247007 0.393958 -0.261988 -1.487814 -0.587767 -0.686569 0.228861 -0.768894 1.555868 0.020821 0.328460 0.353336 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.866299 0.675311 -0.545395 3.426331 0.489698 -1.824126 0.824479 1.698707 -0.725875 -6.280984 -3.273956 3.089611 -0.295302 0.069779 0.221963 1.119094 -0.135818 1.076268 -5.289674 1.665294 2.491229 1.611066 0.304518 -0.959986 1.246829 -0.900759 -0.526069 1.138217 0.901836 3.377495 -2.016614 0.589825 3.175599 0.059023 0.166885 2.932894 0.729962 0.993612 0.679849 -0.866349 4.006158 1.583274 -0.510415 2.338783 1.033498 3.646913 -0.388964 3.915434 -1.103721 -2.750597 0.670551 -1.002277 -2.549933 -0.628528 -1.607181 2.510012 2.987117 3.015653 -1.849556 1.608445 -0.584050 -0.070615 1.133685 -1.309577 2.883250 3.360886 1.338477 2.331507 5.086800 -2.126521 -0.695455 2.129000 2.015743 0.574409 1.355205 -2.015608 -2.219047 -1.831536 -0.569054 -5.489543 -2.219410 -0.289419 6.934503 -3.808150 0.451816 0.876958 0.437285 3.331886 -1.769398 0.374245 -2.871309 0.461988 -1.050800 5.509407 0.392049 0.412662 -0.941770 1.397834 1.588077 2.656435 -1.057048 -1.349592 -3.351588 -5.247800 -0.989744 -1.341386 0.819658 1.701491 -5.340660 -1.396268 0.786113 4.513432 -5.920808 -0.776380 2.815317 1.904194 1.633267 2.409682 -3.046126 0.568401 0.081424 -1.022790 1.108120 -1.466549 -0.504882 -1.025209 -0.470470 -0.595692 0.657728 0.400970 -5.949108 -1.824531 -0.422682 -1.572039 0.676890 0.910964 1.312511 -1.833170 2.086038 -2.309919 2.048989 -5.149459 -0.929453 -0.212609 -4.058211 -0.966496 3.694193 3.430619 2.291144 -1.300820 -1.057499 -3.176501 -4.287282 -4.538325 1.053582 -0.222819 2.263726 1.024385 -0.427389 0.743891 -1.793601 -0.530090 1.141994 -1.394557 -0.213077 -1.381258 5.466919 -0.775022 0.163214 -3.350917 -1.239981 0.823220 -1.136360 1.399332 -1.271748 -3.829316 -5.193766 -2.952034 2.675802 -0.947030 0.281823 -2.185106 0.016279 -2.967365 0.666985 -2.557743 0.444853 0.090594 -2.460168 -3.875217 1.123901 -0.688853 -1.833743 0.206920 -2.182883 -0.625830 2.445839 1.065082 1.398212 0.277368 -0.156957 -3.702170 -3.044909 0.490574 -1.281248 2.438305 2.880916 -0.046252 -3.075584 -1.392304 -4.007735 3.874181 -2.408740 0.666146 -0.805177 0.782924 4.615533 -1.829068 0.059432 -3.544452 1.462265 1.237123 -6.550017 3.814242 2.558709 -1.683820 -0.737752 -0.758704 0.299613 3.096699 2.962865 -2.730905 -2.661021 1.308824 -1.597532 -0.278472 -0.972122 2.206966 -2.234356 2.536644 -2.423850 -1.028550 1.234548 2.178354 -0.609792 1.590300 0.910919 -0.336974 1.861617 2.853298 2.243319 -1.187544 -2.774185 -6.893059 1.832529 0.044475 -0.271618 0.009203 -2.065756 -2.272966 1.549569 -1.027716 3.746455 0.212384 -1.053882 2.792533 -4.467994 -3.379172 0.014142 0.353224 0.627520 -0.939944 1.352813 -0.760395 0.598587 1.789190 -0.111742 0.285277 -3.261148 -2.064609 -0.157339 3.935775 0.307413 -0.174025 3.627882 0.096577 -1.771734 -0.106271 0.338279 1.237439 -1.285922 -3.404454 -1.010845 -0.967656 0.755712 -2.005399 3.222722 -0.129585 -0.786484 1.589708 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 1.430933 0.688133 0.092403 0.973310 0.522254 -1.633379 0.839500 1.633716 -0.455634 -2.536245 -1.728276 0.704877 0.080679 -1.152667 0.391135 0.155407 -0.344983 1.304458 -2.276033 1.095984 1.054111 1.097418 -0.369323 -1.508374 0.209805 -0.259747 -1.874446 0.714227 0.106919 1.727528 -0.827106 -0.522022 1.212502 0.222044 -0.044202 1.708376 0.947421 0.140966 1.241670 0.163866 2.271380 1.175719 -0.300483 1.223313 1.228110 1.556230 -0.949695 1.857840 -2.225591 -0.832746 0.620224 -1.226183 -1.410746 -0.200466 -0.818706 1.357037 2.696581 1.549871 -0.767054 1.419087 -0.684398 -0.101716 0.631612 -0.950359 1.107126 2.251135 -0.193515 0.789133 3.225248 -0.876784 -0.502042 0.897667 1.352012 -0.417348 0.503443 -0.626218 -0.763958 -2.243110 -0.108120 -3.107052 -0.501623 -0.248518 4.001253 -1.860290 0.857396 1.959894 1.097254 1.133082 -1.069446 -0.598498 -0.892325 0.459916 -1.273881 3.508635 -0.042935 0.812569 -0.845209 0.574571 1.147109 1.334533 -0.692296 -0.438429 -2.605355 -3.501772 -0.994450 -0.344716 -0.650135 -0.121801 -2.356488 -1.126051 2.106324 1.917665 -2.810173 -0.211561 1.634057 0.945355 0.212671 0.977511 -2.360320 0.541808 -0.483412 -0.628869 0.046285 -0.924993 -0.862080 -0.766523 -0.325942 -0.219388 0.066084 -0.500258 -2.916466 -0.473986 -0.359397 -1.055310 0.111258 -0.182309 -0.145024 -1.780290 0.677222 -1.560205 0.961180 -2.664659 -0.088702 -0.364812 -2.560259 -0.032443 1.681145 0.894618 0.812565 -0.100164 -0.579385 -1.561214 -1.609754 -2.511954 0.929165 -0.562438 1.678566 -0.605988 -0.017473 -0.743044 -0.500703 -0.801629 0.439587 -0.838644 0.399854 -0.606977 4.737167 -0.951450 -0.344218 -1.972664 -0.338348 1.571947 0.177255 -0.200952 -0.954056 -0.438627 -1.709085 -1.575343 1.316088 -0.089836 0.021220 -0.893622 0.277298 -1.640393 0.651121 -0.859507 0.974596 -0.036436 -1.184166 -1.777325 0.162832 -0.170954 -1.119612 -0.167006 -0.929279 -0.192520 1.060913 0.381391 0.154638 0.020098 0.286202 -2.192052 -2.204868 -0.538421 0.285565 1.280152 1.895552 0.896772 -1.157847 -0.053822 -2.096151 1.825026 -1.404975 -0.178709 -0.560152 -0.042021 2.722614 -0.859569 -0.903852 -2.442898 0.661624 0.078770 -1.752199 2.632801 0.995835 -1.042641 -0.826492 -1.147618 -0.106442 1.654513 2.398743 -1.199450 -0.996640 1.045398 -1.037355 -0.448091 -0.887897 1.284068 -1.110071 2.139028 -1.218305 -0.628272 0.420816 1.957880 -0.515202 1.318829 0.012569 0.372020 0.329683 1.529783 0.848855 -0.999980 -1.308028 -2.498231 0.931816 -0.732113 0.095245 -0.323201 -0.699732 -1.506939 0.587941 0.780460 1.901938 1.370354 -0.050165 1.185526 -1.778813 -1.818693 0.465988 0.980688 0.865077 -1.476656 0.482385 -0.659678 0.327705 0.852292 0.243455 1.086053 -1.786786 -2.180950 -0.579731 1.788488 0.489134 -1.050294 2.020522 0.020073 -0.811732 0.360082 -0.420381 1.461877 -0.273777 -0.302477 -0.323522 -1.117057 0.326083 -0.671319 2.718616 0.060681 -0.397017 1.560499 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.555517 0.497926 0.172026 1.409980 0.785162 -1.811934 0.941032 1.610160 -0.435262 -3.242818 -1.928089 0.973162 -0.214584 -1.142696 0.277207 0.359828 -0.121255 1.148432 -2.408098 1.260089 1.254080 1.251065 -0.328580 -1.306481 0.586998 -0.329925 -1.948937 0.903783 0.151167 1.907138 -1.057183 -0.393164 1.527730 0.257007 -0.192271 1.972235 1.031755 0.440428 1.691837 0.032464 2.553367 0.877424 -0.193520 1.595110 1.506582 1.920764 -1.147104 2.944242 -1.983217 -1.077965 1.031155 -1.602745 -1.595341 -0.217843 -1.082793 1.807156 2.948547 1.821800 -1.055520 1.492487 -0.616523 0.037923 0.730266 -1.143757 1.458133 3.035316 -0.096042 1.037956 3.974688 -0.948600 -0.627585 1.308266 1.885844 0.004528 0.295194 -1.119984 -0.712353 -2.079333 -0.331273 -3.232191 -0.508224 -0.551396 4.809864 -2.111641 0.613431 1.693531 0.915812 1.520211 -1.180370 -0.379755 -1.297074 0.728987 -1.132445 3.923148 -0.205291 0.966931 -1.046358 0.648254 1.103886 1.650843 -1.011752 -0.326287 -3.158632 -3.922792 -1.248043 -0.443773 -0.466485 -0.102142 -3.347536 -1.071537 1.788669 1.963404 -3.476506 -0.540118 1.798104 1.094799 0.420012 2.046268 -2.690438 0.241188 -0.362815 -0.714183 -0.303531 -0.730752 -0.877510 -1.561408 -0.633160 -0.330939 0.144497 -0.482665 -3.706612 -0.463546 -0.646922 -1.206183 0.287772 0.029924 -0.032857 -1.821177 0.864987 -1.709356 1.003081 -3.476610 -0.785566 -0.455892 -3.112869 -0.133398 2.460498 1.313403 1.446132 -0.185179 -0.641857 -2.376177 -2.264312 -2.779012 0.782614 -0.952106 2.032386 -0.305767 -0.042487 -0.764921 -0.691387 -1.132019 0.569230 -0.994487 0.367694 -1.239979 5.125726 -1.128295 -0.057936 -2.524264 -0.578415 1.881268 -0.452933 -0.279540 -1.023050 -1.006265 -2.334525 -1.871952 1.350341 -0.190359 0.205288 -1.112266 0.456213 -2.139972 0.713843 -1.031458 0.649991 -0.072288 -1.556553 -2.130845 0.558622 -0.281408 -1.165551 -0.196186 -1.076724 -0.193369 1.275636 0.934177 0.533569 0.245291 -0.119593 -2.649690 -2.706800 -0.507055 0.321296 1.401961 2.210461 0.766058 -1.221356 -0.426483 -2.671317 2.350350 -1.868491 -0.149489 -0.150649 0.391996 3.192091 -1.049699 -0.592536 -2.892817 0.765090 0.113663 -3.058189 2.676181 1.067042 -1.480365 -1.088951 -1.594312 0.063888 1.925719 2.658056 -1.356589 -1.138468 1.265653 -0.990477 -0.535429 -1.075796 1.469054 -1.177455 2.692422 -1.632874 -0.822893 0.567301 2.192747 -0.810847 1.290198 -0.013178 0.313597 0.736571 1.873470 1.039199 -1.096854 -1.521928 -3.645178 0.717027 -0.325995 0.082043 -0.086269 -1.267150 -1.679168 0.788864 0.466500 2.415014 1.010479 0.141044 1.470094 -2.218075 -2.077282 0.885565 0.986001 0.878037 -1.566536 0.714642 -0.703764 0.124235 1.123739 0.421605 1.019705 -2.375325 -2.555230 -0.639509 2.432154 0.159055 -1.004040 2.276032 -0.114248 -0.836416 0.308308 -0.150810 1.803518 -0.383590 -0.990106 -0.424918 -1.334689 0.262303 -1.029832 3.393735 0.144534 -0.276723 1.637661 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = 4.028234 0.979408 -1.456901 5.297164 0.352576 -2.638396 1.119608 3.232599 -2.054458 -10.545650 -6.066854 4.363102 0.612597 0.533505 1.358046 1.943597 -0.852071 1.134655 -10.580072 2.713968 4.145303 1.965081 -0.027184 -1.267621 1.218064 -2.260142 -0.691418 1.904330 1.228437 6.033935 -3.180150 1.483977 5.275279 -0.523607 1.000796 4.734464 0.888465 0.600190 -0.233257 -0.293607 7.690052 3.510066 -0.898347 2.974277 1.187541 6.076409 -0.778549 6.795979 -2.743366 -4.711382 2.309234 -1.638403 -4.380368 -0.711285 -2.760007 3.053834 5.538632 4.654549 -2.717081 2.775702 -2.036348 -0.570000 1.674954 -0.914239 5.491785 4.440619 3.538620 3.541488 7.482906 -3.773498 -1.080446 3.519987 1.577519 -0.040841 2.798450 -3.142153 -3.971845 -4.027455 0.453972 -9.539311 -4.790821 -0.336584 10.983294 -6.257098 0.462173 2.417961 1.462947 5.595055 -3.406314 0.850088 -4.471569 -0.007261 -2.085564 9.499729 0.384473 0.739708 -1.057001 2.024756 3.154660 4.490947 -1.084393 -3.176480 -5.675762 -8.392752 -2.187755 -2.027491 1.237071 3.430702 -8.092840 -2.509163 1.746422 6.949080 -9.040031 -0.221076 4.741266 3.977997 4.787412 4.551073 -6.115436 0.771644 0.745512 -0.925868 3.747764 -2.603193 -0.030950 -1.973076 1.328856 -0.301600 0.834453 0.190356 -10.080136 -3.358198 0.310770 -3.282413 0.827261 1.035198 2.677504 -3.587152 3.770346 -3.714739 3.835687 -8.561386 -0.608665 -1.063191 -6.712497 -1.315582 6.160646 6.637311 3.087322 -1.398116 -3.094888 -3.126201 -6.984560 -8.376456 0.736359 0.370453 3.232562 1.003941 -0.820359 2.034747 -2.726900 0.156813 1.764441 -1.965056 -0.560435 -1.436257 8.365637 -0.529024 -0.689351 -4.664904 -1.640998 -0.189842 -0.624723 4.250888 -1.728973 -7.231494 -8.868009 -5.054662 5.114784 -1.454856 0.089291 -3.733668 -0.536924 -5.834964 0.829921 -4.463104 1.094212 0.194589 -4.412727 -6.294399 1.261640 -0.755849 -3.687602 0.124652 -3.990526 -1.681296 4.645611 1.546791 2.519496 -0.133889 -0.066556 -6.201958 -5.303201 0.777692 -2.949345 5.698334 4.516492 -0.219907 -4.552391 -1.608837 -6.754618 5.874087 -3.689752 0.997517 -2.290763 -0.175093 7.171280 -3.277417 -1.398396 -5.356414 2.318464 1.870455 -9.168208 8.376822 4.839534 -2.253216 -1.032391 -0.486397 0.301960 4.985577 4.741401 -4.127407 -4.143758 1.322445 -1.873128 -0.287078 -1.142505 3.990390 -4.365469 2.500568 -3.690432 -2.199084 2.289131 4.140826 -0.360110 2.447701 1.687832 -0.190090 2.577599 4.581674 3.387966 -2.579833 -3.514645 -11.068757 4.074003 -1.087985 -1.844816 -0.800972 -3.176199 -4.043212 1.997021 -1.530426 6.084555 1.498846 -1.815407 4.611605 -7.155265 -5.895126 -2.391582 0.625456 0.324211 -1.331381 1.097187 -1.507109 1.897860 2.899090 -0.883491 0.710872 -5.254775 -3.266093 -0.564441 5.315669 1.130000 -0.001808 6.327190 1.265183 -2.433427 -0.825491 0.513870 1.338401 -1.055790 -4.359215 -1.860564 -1.451935 1.263450 -2.474957 3.323466 -0.466258 -1.636067 3.023262 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.548145 -0.262636 0.062573 0.539799 0.347831 -0.671843 0.250804 0.331844 -0.014556 -0.887994 -0.287448 0.296800 -0.027092 -0.536035 0.097685 0.149126 0.005630 0.334521 -0.735052 0.565158 0.182889 0.276416 -0.263232 -0.523053 0.080180 -0.264701 -0.054897 0.426725 -0.056841 0.546780 -0.415400 -0.123576 0.409706 0.104275 0.265900 0.636971 0.492966 -0.029053 0.192678 0.263212 1.033726 0.358990 -0.101323 0.382341 0.611773 0.622667 0.053376 0.773776 -0.162355 -0.184568 0.261779 -0.159251 -0.395869 -0.178654 -0.670479 0.463690 0.780191 0.368995 -0.480082 0.452929 -0.265694 0.011394 0.278420 0.059343 0.711003 0.498398 0.155998 0.331372 1.302522 -0.294135 -0.196447 0.407198 0.856949 0.014873 0.606437 -0.263417 -0.538898 -1.033738 -0.093023 -0.681943 -0.004014 -0.081825 0.893544 -0.599803 0.193180 0.684429 0.311246 0.519481 -0.455425 -0.254837 -0.526523 0.234815 -0.216069 1.373407 -0.046000 0.346481 -0.264545 0.291067 0.287413 0.530706 0.029761 -0.459637 -0.560131 -1.446139 -0.544582 -0.280008 -0.341914 -0.330597 -0.984418 -0.207231 0.616739 0.708595 -0.978555 -0.027555 0.484808 0.165033 0.480934 -0.322674 -0.393115 0.147190 -0.095219 0.007708 -0.060062 -0.337090 -0.304180 -0.383573 0.241299 0.100039 0.136224 -0.259846 -0.676056 -0.042375 -0.031111 0.022143 -0.036882 -0.101523 -0.094283 -0.919597 0.217282 -0.563415 0.460077 -0.859980 -0.092850 -0.350307 -0.687290 -0.005569 0.924675 0.041408 0.525523 0.027853 -0.374835 -0.389986 -0.697154 -1.363816 0.281439 -0.378615 0.261654 -0.112460 -0.005962 -0.289395 -0.139328 -0.382656 0.347765 -0.469628 0.012462 -0.279640 0.721865 -0.279529 -0.121494 -0.602501 -0.114276 0.767791 0.393041 0.089067 -0.361553 -0.792703 -0.604465 -0.631859 0.437738 -0.079670 0.026259 -0.277630 -0.061577 -0.766076 0.423689 -0.349681 0.403494 -0.222524 -0.404861 -0.638918 -0.025773 -0.184663 -0.004932 -0.180676 -0.450878 0.080578 -0.126218 0.020784 0.030252 0.085632 0.035879 -0.978404 -0.919844 -0.100507 0.284512 0.740514 0.242888 0.380861 -0.288255 -0.108443 -0.749329 0.593016 -0.898777 -0.041430 0.213389 -0.389618 0.955704 -0.305850 -0.378756 -0.674891 0.360327 -0.070061 -0.183751 1.205696 0.637916 -0.652578 -0.397382 -0.346824 0.093517 0.523687 1.066569 -0.501544 -0.218136 0.382472 -0.030392 -0.219512 -0.279474 0.475299 -0.315642 0.812741 -0.659932 -0.482932 0.096885 0.835395 -0.204679 0.128753 -0.175188 -0.028030 -0.328734 0.739425 0.232468 0.152950 -0.610297 -0.988800 0.192106 -0.326754 0.062107 0.191745 -0.449019 -0.460379 0.135128 0.234575 0.855432 0.473172 -0.001700 0.483895 -0.809025 -0.754868 0.055868 0.055520 0.164452 -0.519643 0.480554 -0.442608 -0.062146 -0.023253 0.265628 0.000831 -0.332508 -0.365025 -0.085285 0.388945 0.303048 -0.514245 0.720327 0.082369 -0.261338 0.003200 -0.038548 0.328508 0.151727 -0.153250 -0.225899 -0.497981 0.184746 -0.235825 1.014091 -0.104687 0.208019 0.347263 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = 2.149472 0.039396 -0.296377 2.791728 0.574258 -1.683031 0.701909 1.770111 -0.576681 -5.337482 -3.119676 2.391306 -0.129323 -0.273249 0.846599 0.594065 -0.241219 0.780108 -5.578074 1.666623 1.921922 1.209050 -0.069712 -1.017765 0.731808 -1.066316 -0.435994 1.385233 0.594233 2.845572 -1.844820 0.060135 2.607021 -0.040346 0.620215 2.552672 0.810432 0.444704 0.112754 -0.113667 4.361684 1.891707 -0.689676 2.045994 1.331441 3.121574 -0.404477 3.762626 -0.571129 -2.248070 1.140382 -1.113510 -2.168543 -0.517696 -1.665790 1.820797 3.461012 2.217211 -1.934949 1.547619 -0.679849 -0.261507 0.873836 -0.663637 2.726459 2.390700 1.581106 1.672907 4.253030 -1.888660 -0.803922 1.861147 1.857561 0.365396 1.447507 -1.878048 -2.269858 -2.967899 0.201636 -4.713757 -2.235396 -0.343939 5.018124 -3.222530 0.593508 1.598710 0.381055 2.679951 -1.624218 0.056045 -2.390566 0.269182 -0.959125 5.269430 0.102579 0.267037 -0.448918 1.163129 1.712397 2.645134 -0.509075 -1.672199 -3.021652 -5.543694 -1.189122 -1.036410 0.477093 1.147963 -4.194820 -1.375214 1.264602 3.575235 -4.548873 -0.388295 2.597207 1.759633 1.537518 1.118343 -2.863689 0.284929 0.189332 -0.548676 1.695333 -1.394197 -0.468952 -1.179797 0.774709 0.019611 0.515526 -0.071738 -4.235920 -1.718865 0.060529 -0.869549 0.137042 0.136919 0.887842 -2.194313 1.948074 -1.907681 1.994573 -4.390658 -0.019174 -0.705209 -2.984167 -0.512895 3.346971 2.713974 1.699776 -0.419383 -1.478851 -1.915101 -3.339466 -4.843061 0.778388 -0.094823 1.895431 0.189624 -0.353125 0.731529 -1.172713 -0.488100 0.681461 -1.157105 -0.134649 -1.112431 4.074515 -0.621248 -0.392866 -2.428761 -0.611089 0.860305 -0.480463 1.610429 -1.095320 -3.706329 -3.932260 -2.873288 2.559928 -0.664243 0.141118 -1.721853 -0.029002 -3.251104 0.928822 -2.266329 0.830775 -0.238284 -2.380007 -3.189122 0.255234 -0.601551 -1.013923 -0.064948 -2.159915 -0.690615 1.765313 1.046744 1.157849 0.305747 0.124157 -3.878388 -3.023120 -0.100266 -1.001803 3.204413 2.079701 0.192209 -2.397423 -0.798321 -3.443169 3.190669 -2.486045 0.268917 -1.017521 -0.468610 4.102641 -1.280036 -0.912862 -2.937971 1.317337 1.055404 -4.177057 4.505212 2.707153 -1.426063 -0.877256 -0.602824 0.016620 2.732579 3.141048 -2.454472 -1.976858 0.917860 -1.190829 -0.253743 -0.952935 2.345595 -1.884804 1.994800 -2.211268 -1.375920 0.990447 2.260991 -0.248302 1.374641 0.785931 0.259344 0.914490 2.803606 1.400325 -0.994307 -2.153662 -6.057097 2.046333 0.228434 -0.566654 0.165522 -1.876871 -2.410431 0.776173 -0.160510 3.431815 1.347311 -0.418000 2.435804 -3.515102 -3.096717 -0.837692 0.138397 0.230859 -1.068767 1.119159 -0.780583 0.589374 1.187991 -0.379123 0.489663 -2.329411 -2.249243 -0.481640 2.481057 0.889182 -0.417314 3.170165 0.464111 -1.787703 -0.177277 0.048955 1.000977 -0.350818 -1.855563 -1.075641 -1.237778 0.485191 -1.243007 2.230785 -0.286086 -0.409724 1.377530 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 1.430933 0.688133 0.092403 0.973310 0.522254 -1.633379 0.839500 1.633716 -0.455634 -2.536245 -1.728276 0.704877 0.080679 -1.152667 0.391135 0.155407 -0.344983 1.304458 -2.276033 1.095984 1.054111 1.097418 -0.369323 -1.508374 0.209805 -0.259747 -1.874446 0.714227 0.106919 1.727528 -0.827106 -0.522022 1.212502 0.222044 -0.044202 1.708376 0.947421 0.140966 1.241670 0.163866 2.271380 1.175719 -0.300483 1.223313 1.228110 1.556230 -0.949695 1.857840 -2.225591 -0.832746 0.620224 -1.226183 -1.410746 -0.200466 -0.818706 1.357037 2.696581 1.549871 -0.767054 1.419087 -0.684398 -0.101716 0.631612 -0.950359 1.107126 2.251135 -0.193515 0.789133 3.225248 -0.876784 -0.502042 0.897667 1.352012 -0.417348 0.503443 -0.626218 -0.763958 -2.243110 -0.108120 -3.107052 -0.501623 -0.248518 4.001253 -1.860290 0.857396 1.959894 1.097254 1.133082 -1.069446 -0.598498 -0.892325 0.459916 -1.273881 3.508635 -0.042935 0.812569 -0.845209 0.574571 1.147109 1.334533 -0.692296 -0.438429 -2.605355 -3.501772 -0.994450 -0.344716 -0.650135 -0.121801 -2.356488 -1.126051 2.106324 1.917665 -2.810173 -0.211561 1.634057 0.945355 0.212671 0.977511 -2.360320 0.541808 -0.483412 -0.628869 0.046285 -0.924993 -0.862080 -0.766523 -0.325942 -0.219388 0.066084 -0.500258 -2.916466 -0.473986 -0.359397 -1.055310 0.111258 -0.182309 -0.145024 -1.780290 0.677222 -1.560205 0.961180 -2.664659 -0.088702 -0.364812 -2.560259 -0.032443 1.681145 0.894618 0.812565 -0.100164 -0.579385 -1.561214 -1.609754 -2.511954 0.929165 -0.562438 1.678566 -0.605988 -0.017473 -0.743044 -0.500703 -0.801629 0.439587 -0.838644 0.399854 -0.606977 4.737167 -0.951450 -0.344218 -1.972664 -0.338348 1.571947 0.177255 -0.200952 -0.954056 -0.438627 -1.709085 -1.575343 1.316088 -0.089836 0.021220 -0.893622 0.277298 -1.640393 0.651121 -0.859507 0.974596 -0.036436 -1.184166 -1.777325 0.162832 -0.170954 -1.119612 -0.167006 -0.929279 -0.192520 1.060913 0.381391 0.154638 0.020098 0.286202 -2.192052 -2.204868 -0.538421 0.285565 1.280152 1.895552 0.896772 -1.157847 -0.053822 -2.096151 1.825026 -1.404975 -0.178709 -0.560152 -0.042021 2.722614 -0.859569 -0.903852 -2.442898 0.661624 0.078770 -1.752199 2.632801 0.995835 -1.042641 -0.826492 -1.147618 -0.106442 1.654513 2.398743 -1.199450 -0.996640 1.045398 -1.037355 -0.448091 -0.887897 1.284068 -1.110071 2.139028 -1.218305 -0.628272 0.420816 1.957880 -0.515202 1.318829 0.012569 0.372020 0.329683 1.529783 0.848855 -0.999980 -1.308028 -2.498231 0.931816 -0.732113 0.095245 -0.323201 -0.699732 -1.506939 0.587941 0.780460 1.901938 1.370354 -0.050165 1.185526 -1.778813 -1.818693 0.465988 0.980688 0.865077 -1.476656 0.482385 -0.659678 0.327705 0.852292 0.243455 1.086053 -1.786786 -2.180950 -0.579731 1.788488 0.489134 -1.050294 2.020522 0.020073 -0.811732 0.360082 -0.420381 1.461877 -0.273777 -0.302477 -0.323522 -1.117057 0.326083 -0.671319 2.718616 0.060681 -0.397017 1.560499 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.895781 0.449500 -0.334211 2.857819 1.791368 -2.513782 0.407637 2.623376 -0.719080 -5.961899 -5.998295 4.065397 -0.285127 -1.683124 1.742625 0.666190 0.980938 0.111299 -7.671854 2.967029 1.446632 0.225734 -1.840573 -0.859971 0.864730 -2.010475 -1.088397 1.857132 -0.206870 2.919596 -2.347163 1.094227 2.245947 0.944670 3.157804 3.042482 -2.058939 -1.190252 1.853051 -0.747970 6.208756 3.260445 0.434365 3.259018 3.483317 3.485631 -1.997234 4.641391 0.410577 -1.583829 2.236633 -0.778623 -3.139508 1.083785 -3.767178 2.263981 3.239247 -1.260666 -2.478075 1.833322 -1.230784 -0.148471 0.748545 -2.080229 4.940966 2.129479 2.187983 1.378128 5.279661 -1.089386 -0.966459 2.892735 4.386369 1.401519 0.220697 -1.317193 -2.364810 -0.865772 0.168911 -6.358712 -0.824511 -2.065882 7.448031 -2.768646 0.036736 1.048228 0.172352 3.195304 -2.172501 -1.029500 -2.826741 0.925747 -1.979587 4.049606 -0.256337 1.826028 -0.382597 0.864383 0.997390 3.460424 -2.576104 -2.283009 -3.631413 -8.696348 -1.301666 -0.703480 0.474712 -0.682952 -4.893523 -0.237105 -0.208286 5.997582 -4.093962 -1.339130 2.410890 0.044182 -1.010456 2.184938 -4.200750 -1.609197 0.319958 1.577716 1.124761 -0.466378 -0.788453 -3.370178 0.818260 -0.171703 2.037978 -0.281198 -3.803531 -1.747484 0.379291 -0.211375 -0.788990 -0.283845 0.730518 -2.173376 2.108774 -1.187009 2.259585 -5.235814 -0.446171 -3.679692 -3.165316 0.061345 3.874014 4.986963 3.659950 1.266123 1.078503 -1.770844 -4.863682 -5.366008 1.407477 -2.057068 2.470041 -1.352131 0.431839 0.288306 -1.178590 -1.499578 0.999844 -2.531518 -0.100887 -2.903866 5.696003 -0.668261 -0.717971 -2.847754 -0.928826 1.791654 -1.514951 0.606939 -1.376896 -5.328805 -3.995349 -3.483978 2.427639 -0.814822 0.738518 -1.601095 1.203514 -2.377315 0.329328 -2.377944 0.108303 -1.118991 -2.878965 -3.079776 -1.470767 -0.427191 -0.899257 -1.375636 -2.261364 -0.079254 5.321567 3.080289 1.302348 1.725678 -0.900928 -3.350330 -3.730644 -0.395160 -0.071761 4.023518 4.257512 -0.511658 -3.671759 -0.832003 -4.899139 4.055659 -3.706431 0.052623 -0.554394 -2.123978 4.365718 -1.943504 -1.541786 -2.570295 1.341662 -0.065838 -9.081347 3.756932 3.069662 -3.178397 -1.981925 -3.502766 1.013401 2.637784 5.319184 -1.522543 -0.034616 0.497994 -1.057169 -0.657979 -1.394539 3.534066 -1.511520 2.830058 -3.581057 -2.743857 2.608674 2.653094 -0.055090 1.309306 -0.542903 2.322952 3.367052 3.633686 1.576071 -1.342424 -3.835017 -9.285638 1.095264 2.565679 -0.814588 1.341627 -1.528781 -4.424700 -1.312656 -2.721568 4.451761 -0.145557 0.218695 2.659390 -2.324460 -3.613887 -1.295365 0.902506 -0.194197 -1.687603 2.135743 -1.836880 -0.053926 0.571841 1.000342 1.020978 -3.283503 -4.410376 -0.442546 2.553562 2.311934 -0.297395 3.339271 1.444498 -2.054627 -0.744726 0.013126 1.283499 0.144472 -4.390040 -2.618237 -3.001891 -0.117014 -1.140975 3.218579 1.081165 2.484639 1.393735 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.638350 -0.537926 0.084962 2.232957 1.251087 -2.154306 0.452376 1.786988 -0.252198 -4.185584 -3.092513 2.587475 -0.224336 -1.351590 0.877742 0.489772 0.379055 0.216079 -5.755452 2.373770 1.075349 0.573367 -0.862234 -1.280290 0.701707 -1.433371 0.284469 1.657205 -0.134792 2.164124 -1.876643 0.358060 1.692723 0.650918 2.161738 2.340391 -0.538098 -0.681750 0.735879 -0.017011 4.444581 2.438919 -0.271570 1.949462 2.470148 2.614916 -0.201521 2.780396 0.791241 -1.131639 0.984422 -0.054683 -2.241795 0.015236 -2.737014 1.605135 2.491253 0.048366 -1.895228 1.346687 -0.880823 -0.227338 0.755400 -0.623024 3.514051 1.125332 1.678718 1.060397 4.254354 -1.031225 -0.760420 1.962125 3.403845 0.797252 1.332169 -1.297613 -2.430682 -2.378786 0.060630 -4.424689 -0.792919 -0.947991 3.946961 -2.149310 0.456846 1.209700 0.299951 2.390677 -1.731350 -0.855311 -2.207483 0.693289 -1.009722 4.165378 -0.254720 1.148219 -0.071202 1.049519 1.020207 2.552929 -0.674614 -1.973646 -1.886863 -6.152874 -0.913368 -0.876147 -0.030847 -0.615013 -3.562525 -0.164232 0.480393 3.897157 -3.267049 -0.661661 1.909600 0.249779 0.383168 -0.520604 -1.832323 -0.457272 -0.021730 0.869906 0.762961 -1.110387 -0.763316 -1.544350 1.066052 0.295364 1.249202 -0.370741 -2.454913 -1.078722 0.351987 0.266702 -0.456044 -0.242383 0.298357 -2.309399 1.342184 -1.483087 1.947200 -3.442091 -0.005904 -2.157419 -1.710970 -0.046698 2.846429 2.304308 2.001001 0.492315 0.063406 -1.020276 -3.185636 -4.589647 1.136597 -1.185616 1.243766 -0.673257 0.140433 0.032530 -0.732319 -1.193665 0.788590 -1.862945 -0.137216 -1.682398 2.704241 -0.442323 -0.375244 -1.792703 -0.556329 1.807680 0.015332 0.718374 -1.134970 -4.317592 -2.871489 -2.663087 1.846216 -0.551987 0.146748 -1.270461 0.361255 -2.030657 0.954797 -1.765380 0.718099 -0.886131 -1.978741 -2.360182 -0.827938 -0.609474 0.088284 -0.903614 -1.771794 -0.067561 1.881223 1.512909 0.677803 0.841534 -0.199764 -3.126448 -2.910888 -0.126835 0.318191 3.207958 1.581847 0.086129 -2.347261 -0.588199 -3.101872 2.776200 -2.823702 0.065713 -0.211769 -1.887381 3.485375 -1.137290 -1.044177 -1.965719 1.236372 0.065502 -3.951827 3.902591 2.650770 -2.316349 -1.427191 -1.710483 0.516299 2.094366 3.893818 -1.625724 -0.651722 0.587058 -0.518491 -0.589164 -0.867763 2.405033 -1.232997 2.302766 -2.629936 -2.141492 1.217168 2.273948 -0.123408 0.819156 -0.453979 0.878994 0.747423 2.847228 1.045240 -0.017129 -2.900850 -5.858376 0.918334 1.072145 -0.157587 0.882472 -1.429522 -2.919900 -0.446902 -0.691919 3.379935 1.025956 -0.229419 1.933826 -2.447378 -2.796912 -0.921227 0.210007 -0.089372 -1.166803 1.672814 -1.522720 -0.062854 0.143944 0.673512 0.197842 -1.666907 -2.054857 -0.201420 1.509237 1.816058 -0.884863 2.595074 0.927221 -1.474998 -0.523094 0.057319 0.607458 0.230179 -1.977911 -1.574290 -2.030324 0.293782 -0.759940 2.593005 0.449998 1.569739 0.702475 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -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.765731 0.072084 0.262005 0.385461 0.515479 -0.635688 0.377557 0.607033 -0.190401 -1.124505 -0.873204 0.313459 -0.121215 -0.640092 0.286038 0.020591 0.186111 0.396855 -0.773417 0.480225 0.239413 0.281208 -0.331503 -0.428370 0.083876 -0.265015 -0.820768 0.481833 -0.056029 0.632083 -0.380973 -0.196694 0.452301 0.196460 0.145995 0.770322 0.391852 -0.100386 0.652207 0.048263 1.278885 0.216010 0.187807 0.733977 0.838251 0.684749 -0.631051 1.365009 -0.325228 -0.216067 0.805635 -0.837452 -0.556309 0.071378 -0.734727 0.593866 1.067068 0.269232 -0.491969 0.645468 -0.307832 0.066408 0.191148 -0.507926 0.642508 1.067356 -0.074467 0.256233 1.472684 -0.350318 -0.355612 0.635290 0.905445 0.201529 -0.090835 -0.404926 -0.046052 -0.950564 -0.060415 -0.948316 0.054096 -0.447392 1.881744 -0.587998 0.120657 0.869336 0.222033 0.409795 -0.371492 -0.264708 -0.526231 0.359759 -0.343649 1.109248 -0.166594 0.441678 -0.336699 0.011561 0.305706 0.736535 -0.470390 -0.210900 -1.359225 -1.781701 -0.707467 -0.091891 -0.258060 -0.441644 -1.118727 -0.280483 0.793114 0.658813 -0.995353 -0.287245 0.607971 0.293320 -0.153392 0.903099 -1.150610 -0.272236 0.012501 0.067673 -0.107255 -0.134132 -0.336794 -0.987706 -0.092847 -0.096613 0.191055 -0.409779 -0.980739 -0.212352 -0.206862 -0.232872 -0.069871 -0.291697 -0.184834 -0.709504 0.308110 -0.434202 0.395663 -1.238716 -0.302301 -0.572252 -1.032988 0.049249 1.361339 0.495154 0.851185 0.379871 -0.227395 -0.729468 -0.708846 -1.044326 0.244744 -0.621562 0.825949 -0.311376 0.066561 -0.363473 -0.125440 -0.590004 0.081605 -0.441730 0.150716 -0.555759 1.549531 -0.516235 -0.174899 -1.044187 0.017362 0.926699 -0.199843 -0.243861 -0.419447 -0.482512 -0.521197 -0.801511 0.462457 -0.072463 0.155146 -0.196536 0.243660 -0.713985 0.251995 -0.326328 0.202633 -0.150277 -0.776443 -0.716908 0.066183 -0.139791 -0.370333 -0.105343 -0.414629 0.031338 0.517917 0.580519 0.183444 0.260670 -0.197534 -1.090704 -1.196261 -0.504178 0.313626 0.659927 0.954044 0.384077 -0.454391 -0.145880 -0.998133 0.780330 -0.984080 -0.175275 0.108643 -0.224562 1.057250 -0.388632 -0.304095 -0.992171 0.289038 -0.015356 -1.503696 0.968238 0.450033 -0.768296 -0.684866 -0.972098 0.038237 0.612708 1.316036 -0.310940 -0.025849 0.498631 -0.172844 -0.241657 -0.508194 0.638803 -0.204898 1.000433 -0.824946 -0.604282 0.318329 0.982443 -0.292384 0.324771 -0.016877 0.571842 0.312517 0.881274 0.220884 -0.382349 -0.511131 -1.632594 0.237178 0.417269 -0.016850 0.327290 -0.556371 -0.757529 0.056583 0.051445 0.944499 0.312845 0.434189 0.567789 -0.413530 -0.771286 0.276766 0.342237 0.316027 -0.790999 0.385847 -0.422792 -0.097099 0.158851 0.228848 0.451094 -0.680160 -1.264725 -0.308008 0.720086 0.347963 -0.318853 0.811015 0.079500 -0.354483 0.133270 -0.089917 0.803917 0.185424 -0.374052 -0.264868 -0.705278 -0.012574 -0.241725 1.247755 0.107631 0.171476 0.614092 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.304395 0.528068 0.049738 2.205531 1.098583 -3.144486 0.915189 2.804038 -0.769469 -4.865101 -3.769287 3.042659 -0.154687 -2.186736 0.891647 0.534631 0.166182 1.101313 -6.687671 2.885952 1.573299 1.223944 -1.323171 -2.129505 0.701419 -1.233688 -1.359072 1.789082 -0.197521 2.825216 -2.105189 -0.075816 2.076110 0.669669 2.010331 3.063656 -0.436630 -0.591357 1.951627 -0.001320 5.120734 2.962879 -0.202165 2.415689 3.105618 3.114707 -1.021734 3.191400 -0.831636 -1.403809 1.089906 -0.432506 -2.918943 0.152229 -2.731282 1.971773 3.537522 0.845916 -2.093780 2.193917 -1.226574 -0.261102 1.099530 -1.195355 3.788665 2.430758 1.079631 1.327041 5.587862 -1.075160 -0.717105 1.950827 3.763027 0.211146 1.132960 -1.383892 -2.365692 -3.164060 0.016275 -6.380553 -0.768138 -0.838297 6.418088 -2.933943 1.210689 2.041310 1.139704 2.666292 -2.216249 -1.407027 -2.273355 0.835343 -2.009361 5.598741 -0.434432 1.631025 -0.513543 1.261098 1.504468 2.821813 -1.538369 -1.930884 -3.156392 -7.412476 -1.200944 -0.827502 -0.710255 -0.777258 -4.366430 -0.879068 1.805267 4.761688 -4.561710 -0.804343 2.521873 0.363999 -0.314272 0.653386 -3.280989 -0.132165 -0.735314 0.591603 0.613351 -1.341682 -1.256717 -1.743387 0.332066 0.172278 1.214560 -0.467244 -4.265329 -1.119168 0.198948 -0.768958 -0.551248 -0.198665 -0.007342 -2.723092 1.491855 -2.345241 2.214721 -4.561561 -0.016933 -2.239736 -3.009321 0.042427 2.780948 2.969257 1.845023 0.353585 0.245339 -1.713184 -3.834119 -4.921532 1.767533 -1.646869 2.195575 -1.329078 0.216695 -0.786438 -0.876548 -1.651652 0.855600 -2.161049 0.214812 -2.144123 6.058250 -0.815148 -0.641884 -2.624952 -0.706145 2.525422 0.082393 0.092464 -1.701418 -3.762897 -3.504869 -3.067244 2.351902 -0.373330 0.093653 -1.595370 0.624570 -2.172934 1.129762 -1.970913 1.131652 -0.956764 -1.977426 -2.982174 -0.733974 -0.543252 -0.850198 -1.303902 -1.854284 -0.160058 2.811825 1.548100 0.522979 0.731638 0.084910 -3.726349 -3.609821 -0.324544 0.678476 3.135522 3.104443 0.736031 -3.088481 -0.292613 -3.973086 3.431913 -3.065122 -0.041098 -0.514198 -1.794458 4.809553 -1.467458 -1.237311 -2.952198 1.423697 -0.097388 -5.386559 4.777325 2.806042 -2.747010 -1.680238 -2.421588 0.513586 2.823861 4.691907 -1.924469 -0.985575 1.134871 -1.386100 -0.781888 -1.219886 2.834695 -1.673774 3.459170 -2.929932 -1.999985 1.690260 2.934662 -0.371881 1.491527 -0.745216 0.957599 1.235190 3.284197 1.312929 -0.687279 -3.332453 -6.648314 1.245659 0.603373 0.146522 0.537376 -1.153863 -3.591803 -0.276497 -0.380256 3.982778 1.307982 -0.483946 2.176704 -3.072252 -3.551188 -0.614025 1.137999 0.475423 -1.892886 1.676935 -1.642734 0.077145 0.701587 1.070908 1.140628 -2.573116 -3.484183 -0.480512 2.367599 2.105747 -1.752815 3.408108 0.636306 -1.678486 -0.230124 -0.321590 1.623232 -0.073999 -1.953262 -1.632667 -2.632571 0.582350 -1.145255 4.157191 0.662978 1.472153 1.684153 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.876005 -0.108185 0.464302 1.262326 0.888141 -1.831302 0.660326 1.639789 -0.122878 -2.865448 -1.744063 1.394079 -0.193346 -1.293222 0.411757 0.204765 0.208460 0.919562 -3.738058 1.636584 0.894993 1.044608 -0.409637 -1.551312 0.483440 -0.634007 -0.551270 1.065064 0.045319 1.700894 -1.394030 -0.369719 1.262252 0.424704 1.071770 1.889849 0.533162 -0.316180 0.904149 0.047401 3.151299 1.593888 -0.221186 1.526874 1.872437 1.869564 -0.155948 1.838861 -0.119424 -0.800918 0.412808 -0.713829 -1.646070 -0.186413 -1.728251 1.380133 2.297039 1.028835 -1.386414 1.360082 -0.358061 -0.088875 0.691185 -0.677275 1.928205 1.385990 0.369079 0.777755 3.556960 -0.826196 -0.521090 1.078220 2.446776 0.273643 1.050722 -1.147037 -1.336615 -2.815232 -0.082313 -3.453081 -0.245107 -0.493987 3.184320 -1.828680 1.094220 1.716480 0.505093 1.447853 -1.142574 -0.967001 -1.487075 0.609990 -0.842121 3.565700 -0.338664 0.807851 -0.249117 0.824221 0.931201 1.684424 -0.249866 -1.191477 -1.759317 -4.442803 -0.804692 -0.630356 -0.571339 -0.621762 -2.462978 -0.508894 1.315787 2.466664 -2.800237 -0.419503 1.489814 0.374684 -0.125089 -0.531202 -1.364144 0.033599 -0.557633 0.184440 0.053744 -1.253576 -0.903890 -0.837410 0.127895 0.250366 0.693626 -0.497270 -1.960228 -0.645474 -0.086834 -0.047675 -0.369587 -0.274307 -0.188642 -2.041016 0.839627 -1.601377 1.345033 -2.399370 -0.043810 -1.059513 -1.554118 -0.084986 2.161759 0.702560 1.003493 0.266585 -0.274454 -1.136028 -1.898029 -3.078526 1.212699 -0.913082 1.288895 -0.440691 0.061708 -0.605295 -0.495877 -1.275211 0.337888 -1.289357 0.101217 -1.093060 2.776883 -0.793477 -0.296832 -1.712702 -0.117818 2.154275 0.300478 -0.088760 -1.177714 -1.963474 -1.785505 -1.927947 1.418825 -0.275045 0.114194 -0.805521 0.318675 -1.396177 0.968115 -1.203544 0.915165 -0.628784 -1.331135 -1.881095 -0.252257 -0.572194 -0.056037 -0.431484 -1.183978 0.093260 0.604532 0.929222 0.092455 0.274326 0.233138 -2.763083 -2.407619 -0.467109 0.612895 1.947123 1.041857 0.674697 -1.635288 -0.277778 -1.977555 1.976566 -2.034198 -0.066335 -0.167348 -1.029853 2.839519 -0.715349 -0.632025 -2.058015 0.964086 0.134456 -2.085846 3.138535 1.632929 -1.720596 -1.107834 -1.391321 0.246735 1.667711 2.966954 -1.302983 -0.815529 0.963239 -0.798429 -0.516744 -1.090317 1.599723 -0.829983 2.285990 -1.902601 -1.330796 0.645749 1.950821 -0.361728 0.921590 -0.106197 0.517123 -0.040735 2.249954 0.712442 0.051437 -2.029007 -3.473604 0.782560 0.621810 0.527767 0.380725 -1.005667 -1.901055 0.122516 0.545169 2.389961 1.572039 0.098752 1.389266 -1.996584 -2.118397 0.042592 0.432559 0.534683 -1.259822 0.986219 -1.141194 -0.039360 0.171611 0.646010 0.542436 -1.160314 -1.819804 -0.255539 1.351513 1.256044 -1.149422 2.107962 0.300592 -1.098549 0.202322 -0.238052 1.109785 -0.013594 -0.488658 -0.753595 -1.464829 0.343260 -0.711181 2.728375 0.104657 0.689886 0.814754 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 1.838685 -0.360895 0.324627 1.264641 0.990337 -1.564241 0.606446 1.385392 -0.221841 -2.696024 -1.992096 1.045646 -0.188343 -1.248273 0.662276 0.182946 0.209518 0.359022 -3.223884 1.464173 0.690410 0.507089 -0.654159 -0.998110 0.363172 -0.858232 -0.727353 1.260017 -0.207706 1.455318 -1.057632 -0.119133 1.091790 0.455124 0.953342 1.706894 0.181484 -0.320026 1.015444 0.274903 2.955950 1.309481 -0.156563 1.337389 1.820963 1.696817 -0.636963 2.483067 -0.265527 -0.623310 1.245762 -0.941934 -1.461249 -0.022178 -1.748820 1.153900 2.327180 0.389436 -1.193426 1.198006 -0.810916 -0.060615 0.517233 -0.559952 2.078889 1.512556 0.703311 0.617441 3.197874 -0.738241 -0.654010 1.397468 2.237266 0.374604 0.432178 -0.984083 -1.132967 -2.185829 0.078841 -2.689992 -0.375371 -0.779239 3.073670 -1.382278 0.291007 1.379043 0.408804 1.357747 -1.168474 -0.590797 -1.327493 0.633880 -0.724905 3.057865 -0.356288 0.952110 -0.297452 0.517641 0.810594 1.752323 -0.621553 -0.975639 -2.127808 -4.221149 -1.035227 -0.424016 -0.326970 -0.700651 -2.552537 -0.368399 1.052356 1.875619 -2.241752 -0.476282 1.395937 0.473295 0.274167 0.523106 -1.809711 -0.369309 -0.016450 0.378270 0.239470 -0.644344 -0.619950 -1.671358 0.530175 0.151943 0.560639 -0.586928 -1.980938 -0.488446 0.005543 -0.163473 -0.191562 -0.343045 -0.113773 -1.709929 0.774563 -1.166915 1.215825 -2.686903 -0.219899 -1.396386 -1.688209 0.097045 2.380653 1.327569 1.434122 0.560089 -0.306839 -1.027813 -1.940022 -3.058562 0.581617 -1.009123 1.301237 -0.725614 0.095790 -0.411495 -0.366698 -1.021279 0.376206 -1.132062 0.132843 -1.218488 2.607835 -0.585895 -0.328151 -1.563363 -0.220045 1.689946 -0.091411 0.141462 -0.816156 -2.196703 -1.657467 -1.849283 1.169204 -0.224496 0.080795 -0.771269 0.360334 -1.799434 0.766001 -0.955247 0.592749 -0.475097 -1.539616 -1.606198 -0.277002 -0.349245 -0.118029 -0.516991 -1.086460 -0.095295 1.104097 1.172225 0.474729 0.597447 -0.220176 -2.334808 -2.405123 -0.528517 0.519874 2.122724 1.347793 0.427052 -1.097095 -0.291285 -2.220489 1.917809 -1.963751 -0.191304 -0.012136 -1.023614 2.504430 -0.754390 -0.864836 -1.828256 0.760233 -0.065385 -2.394057 2.722974 1.528485 -1.656887 -1.278644 -1.591855 0.183774 1.455861 2.835716 -0.970309 -0.362676 0.690691 -0.299199 -0.510891 -0.795966 1.562018 -0.745341 1.927817 -1.811482 -1.454399 0.709605 1.940180 -0.365059 0.699210 -0.323080 0.830384 0.371832 1.958488 0.548738 -0.418198 -1.614804 -3.825523 0.575429 0.644892 -0.140494 0.504930 -1.177253 -1.950433 -0.128224 0.074426 2.298711 1.189392 0.256159 1.291537 -1.411117 -1.876061 -0.203802 0.478143 0.221079 -1.256055 0.925064 -0.986978 -0.053335 0.284734 0.479683 0.589588 -1.435264 -2.072366 -0.456821 1.248671 0.932587 -0.863452 1.832006 0.427455 -0.828455 -0.195471 -0.030193 0.944541 0.410301 -0.839809 -0.868377 -1.554289 0.142063 -0.483072 2.287394 0.334994 0.791464 0.931862 -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.291227 0.116843 0.255459 0.231378 0.277126 -0.483138 0.232065 0.373307 -0.152613 -0.650830 -0.296377 -0.057440 -0.072079 -0.375948 0.112556 0.010260 0.001883 0.431874 -0.594169 0.335299 0.273818 0.366484 0.009952 -0.509176 0.102211 -0.097570 -0.411065 0.256741 0.018133 0.434626 -0.353337 -0.201431 0.291168 0.181565 0.140016 0.466213 0.437109 -0.031359 0.315815 0.128163 0.731989 0.235251 -0.088043 0.279132 0.476894 0.428640 -0.048003 0.148214 -0.489877 -0.161924 -0.048853 -0.392092 -0.291998 -0.086345 -0.350917 0.386600 0.649004 0.534899 -0.319845 0.396082 -0.119556 0.005799 0.165960 -0.252905 0.327455 0.392792 -0.120660 0.181377 0.930791 -0.220192 -0.156095 0.194542 0.521340 -0.099322 0.164333 -0.080943 -0.130701 -1.087680 -0.100503 -0.852909 0.009200 0.019776 0.772582 -0.439743 0.357385 0.698336 0.176041 0.267193 -0.248956 -0.313467 -0.340237 0.182699 -0.240418 0.894048 0.001419 0.138761 -0.149258 0.231014 0.330499 0.385938 -0.055036 -0.165213 -0.589257 -1.111468 -0.298252 -0.114965 -0.243154 -0.241394 -0.566544 -0.262198 0.744604 0.625533 -0.731539 -0.036849 0.385295 0.220210 -0.271054 -0.377322 -0.406750 0.142177 -0.254479 -0.096245 -0.087695 -0.341709 -0.281271 -0.181607 -0.061401 -0.020287 0.136302 -0.214477 -0.421985 -0.129934 -0.111157 -0.165535 -0.085080 -0.118737 -0.147927 -0.539548 0.163123 -0.504697 0.315832 -0.518074 0.154149 -0.126525 -0.547777 0.008377 0.504271 -0.011334 0.041563 0.064734 -0.222043 -0.339902 -0.331022 -0.761810 0.373993 -0.168990 0.424594 -0.106779 -0.022471 -0.277124 -0.106385 -0.383584 0.155038 -0.298397 0.079808 -0.210952 0.871523 -0.291370 -0.115749 -0.560435 0.033783 0.764446 0.117012 -0.180161 -0.389496 0.107994 -0.327834 -0.506520 0.324486 -0.041631 0.018591 -0.182753 0.103297 -0.447258 0.405222 -0.250379 0.338089 -0.128086 -0.295296 -0.470650 -0.028348 -0.157848 -0.177507 -0.040538 -0.235867 0.052328 -0.045146 -0.076901 -0.044107 -0.058695 0.140643 -0.611526 -0.644095 -0.204632 0.244135 0.241185 0.265187 0.329649 -0.408338 -0.038472 -0.403920 0.524490 -0.316744 -0.072478 -0.031294 -0.165641 0.728890 -0.148973 -0.216130 -0.519306 0.234408 0.021341 -0.205718 0.761536 0.334173 -0.420423 -0.328190 -0.397011 0.020637 0.417707 0.788697 -0.329850 -0.145708 0.327095 -0.236336 -0.146617 -0.343082 0.356409 -0.194856 0.685677 -0.457119 -0.304260 0.047311 0.602951 -0.158698 0.357691 0.023581 0.164065 -0.174673 0.543038 0.159482 -0.008120 -0.385485 -0.395428 0.183087 -0.089702 0.271010 0.013588 -0.155406 -0.373520 0.090969 0.356220 0.572267 0.625474 -0.016726 0.345189 -0.433732 -0.494179 0.206785 0.183353 0.244151 -0.522062 0.231462 -0.269439 -0.024781 0.071894 0.169326 0.270197 -0.301155 -0.556815 -0.162104 0.373574 0.270552 -0.387207 0.544121 -0.019179 -0.272173 0.162780 -0.081923 0.469654 0.042077 0.099248 -0.165808 -0.371140 0.079364 -0.172431 0.830983 -0.095770 0.002426 0.370253 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 1.430933 0.688133 0.092403 0.973310 0.522254 -1.633379 0.839500 1.633716 -0.455634 -2.536245 -1.728276 0.704877 0.080679 -1.152667 0.391135 0.155407 -0.344983 1.304458 -2.276033 1.095984 1.054111 1.097418 -0.369323 -1.508374 0.209805 -0.259747 -1.874446 0.714227 0.106919 1.727528 -0.827106 -0.522022 1.212502 0.222044 -0.044202 1.708376 0.947421 0.140966 1.241670 0.163866 2.271380 1.175719 -0.300483 1.223313 1.228110 1.556230 -0.949695 1.857840 -2.225591 -0.832746 0.620224 -1.226183 -1.410746 -0.200466 -0.818706 1.357037 2.696581 1.549871 -0.767054 1.419087 -0.684398 -0.101716 0.631612 -0.950359 1.107126 2.251135 -0.193515 0.789133 3.225248 -0.876784 -0.502042 0.897667 1.352012 -0.417348 0.503443 -0.626218 -0.763958 -2.243110 -0.108120 -3.107052 -0.501623 -0.248518 4.001253 -1.860290 0.857396 1.959894 1.097254 1.133082 -1.069446 -0.598498 -0.892325 0.459916 -1.273881 3.508635 -0.042935 0.812569 -0.845209 0.574571 1.147109 1.334533 -0.692296 -0.438429 -2.605355 -3.501772 -0.994450 -0.344716 -0.650135 -0.121801 -2.356488 -1.126051 2.106324 1.917665 -2.810173 -0.211561 1.634057 0.945355 0.212671 0.977511 -2.360320 0.541808 -0.483412 -0.628869 0.046285 -0.924993 -0.862080 -0.766523 -0.325942 -0.219388 0.066084 -0.500258 -2.916466 -0.473986 -0.359397 -1.055310 0.111258 -0.182309 -0.145024 -1.780290 0.677222 -1.560205 0.961180 -2.664659 -0.088702 -0.364812 -2.560259 -0.032443 1.681145 0.894618 0.812565 -0.100164 -0.579385 -1.561214 -1.609754 -2.511954 0.929165 -0.562438 1.678566 -0.605988 -0.017473 -0.743044 -0.500703 -0.801629 0.439587 -0.838644 0.399854 -0.606977 4.737167 -0.951450 -0.344218 -1.972664 -0.338348 1.571947 0.177255 -0.200952 -0.954056 -0.438627 -1.709085 -1.575343 1.316088 -0.089836 0.021220 -0.893622 0.277298 -1.640393 0.651121 -0.859507 0.974596 -0.036436 -1.184166 -1.777325 0.162832 -0.170954 -1.119612 -0.167006 -0.929279 -0.192520 1.060913 0.381391 0.154638 0.020098 0.286202 -2.192052 -2.204868 -0.538421 0.285565 1.280152 1.895552 0.896772 -1.157847 -0.053822 -2.096151 1.825026 -1.404975 -0.178709 -0.560152 -0.042021 2.722614 -0.859569 -0.903852 -2.442898 0.661624 0.078770 -1.752199 2.632801 0.995835 -1.042641 -0.826492 -1.147618 -0.106442 1.654513 2.398743 -1.199450 -0.996640 1.045398 -1.037355 -0.448091 -0.887897 1.284068 -1.110071 2.139028 -1.218305 -0.628272 0.420816 1.957880 -0.515202 1.318829 0.012569 0.372020 0.329683 1.529783 0.848855 -0.999980 -1.308028 -2.498231 0.931816 -0.732113 0.095245 -0.323201 -0.699732 -1.506939 0.587941 0.780460 1.901938 1.370354 -0.050165 1.185526 -1.778813 -1.818693 0.465988 0.980688 0.865077 -1.476656 0.482385 -0.659678 0.327705 0.852292 0.243455 1.086053 -1.786786 -2.180950 -0.579731 1.788488 0.489134 -1.050294 2.020522 0.020073 -0.811732 0.360082 -0.420381 1.461877 -0.273777 -0.302477 -0.323522 -1.117057 0.326083 -0.671319 2.718616 0.060681 -0.397017 1.560499 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.548145 -0.262636 0.062573 0.539799 0.347831 -0.671843 0.250804 0.331844 -0.014556 -0.887994 -0.287448 0.296800 -0.027092 -0.536035 0.097685 0.149126 0.005630 0.334521 -0.735052 0.565158 0.182889 0.276416 -0.263232 -0.523053 0.080180 -0.264701 -0.054897 0.426725 -0.056841 0.546780 -0.415400 -0.123576 0.409706 0.104275 0.265900 0.636971 0.492966 -0.029053 0.192678 0.263212 1.033726 0.358990 -0.101323 0.382341 0.611773 0.622667 0.053376 0.773776 -0.162355 -0.184568 0.261779 -0.159251 -0.395869 -0.178654 -0.670479 0.463690 0.780191 0.368995 -0.480082 0.452929 -0.265694 0.011394 0.278420 0.059343 0.711003 0.498398 0.155998 0.331372 1.302522 -0.294135 -0.196447 0.407198 0.856949 0.014873 0.606437 -0.263417 -0.538898 -1.033738 -0.093023 -0.681943 -0.004014 -0.081825 0.893544 -0.599803 0.193180 0.684429 0.311246 0.519481 -0.455425 -0.254837 -0.526523 0.234815 -0.216069 1.373407 -0.046000 0.346481 -0.264545 0.291067 0.287413 0.530706 0.029761 -0.459637 -0.560131 -1.446139 -0.544582 -0.280008 -0.341914 -0.330597 -0.984418 -0.207231 0.616739 0.708595 -0.978555 -0.027555 0.484808 0.165033 0.480934 -0.322674 -0.393115 0.147190 -0.095219 0.007708 -0.060062 -0.337090 -0.304180 -0.383573 0.241299 0.100039 0.136224 -0.259846 -0.676056 -0.042375 -0.031111 0.022143 -0.036882 -0.101523 -0.094283 -0.919597 0.217282 -0.563415 0.460077 -0.859980 -0.092850 -0.350307 -0.687290 -0.005569 0.924675 0.041408 0.525523 0.027853 -0.374835 -0.389986 -0.697154 -1.363816 0.281439 -0.378615 0.261654 -0.112460 -0.005962 -0.289395 -0.139328 -0.382656 0.347765 -0.469628 0.012462 -0.279640 0.721865 -0.279529 -0.121494 -0.602501 -0.114276 0.767791 0.393041 0.089067 -0.361553 -0.792703 -0.604465 -0.631859 0.437738 -0.079670 0.026259 -0.277630 -0.061577 -0.766076 0.423689 -0.349681 0.403494 -0.222524 -0.404861 -0.638918 -0.025773 -0.184663 -0.004932 -0.180676 -0.450878 0.080578 -0.126218 0.020784 0.030252 0.085632 0.035879 -0.978404 -0.919844 -0.100507 0.284512 0.740514 0.242888 0.380861 -0.288255 -0.108443 -0.749329 0.593016 -0.898777 -0.041430 0.213389 -0.389618 0.955704 -0.305850 -0.378756 -0.674891 0.360327 -0.070061 -0.183751 1.205696 0.637916 -0.652578 -0.397382 -0.346824 0.093517 0.523687 1.066569 -0.501544 -0.218136 0.382472 -0.030392 -0.219512 -0.279474 0.475299 -0.315642 0.812741 -0.659932 -0.482932 0.096885 0.835395 -0.204679 0.128753 -0.175188 -0.028030 -0.328734 0.739425 0.232468 0.152950 -0.610297 -0.988800 0.192106 -0.326754 0.062107 0.191745 -0.449019 -0.460379 0.135128 0.234575 0.855432 0.473172 -0.001700 0.483895 -0.809025 -0.754868 0.055868 0.055520 0.164452 -0.519643 0.480554 -0.442608 -0.062146 -0.023253 0.265628 0.000831 -0.332508 -0.365025 -0.085285 0.388945 0.303048 -0.514245 0.720327 0.082369 -0.261338 0.003200 -0.038548 0.328508 0.151727 -0.153250 -0.225899 -0.497981 0.184746 -0.235825 1.014091 -0.104687 0.208019 0.347263 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.600006 -0.058824 -0.239182 0.373271 0.138065 -0.097854 -0.145600 0.610473 -0.023971 -1.214497 -1.109844 1.195739 -0.075373 0.081218 0.233202 0.140365 0.526468 -0.133410 -1.041480 0.664054 0.074927 -0.087124 -0.474937 0.289605 0.344917 -0.306425 -0.030229 0.140997 0.201012 0.703110 -0.139320 -0.035186 0.534398 -0.236803 0.787750 0.893084 0.211737 0.162416 -0.038930 -0.347988 1.238182 0.653570 0.152966 0.536708 0.339699 0.683200 -0.117435 0.898442 0.585065 -0.284318 0.230708 -0.175403 -0.548292 0.076174 -1.022299 0.457291 0.362503 -0.396501 -0.727359 0.484039 0.168334 -0.017195 -0.029629 -0.174419 0.778693 -0.118749 0.289940 0.359466 1.125395 -0.253637 -0.299284 0.930663 0.606566 0.337866 0.399098 -0.214843 -0.607129 0.135660 0.063761 -0.708622 -0.383772 -0.362046 1.529494 -0.800409 0.153579 0.375253 -0.703673 0.646453 -0.332728 -0.042305 -0.444990 -0.128053 -0.100114 0.492565 0.424379 0.385312 0.435002 -0.031774 0.162550 0.665776 -0.350953 -0.597986 -0.620624 -1.678654 -0.093388 -0.308352 0.021155 0.084563 -0.674290 -0.630673 -0.074115 1.514734 -0.493331 0.142682 0.639259 0.240513 -0.110396 -0.169313 -0.551420 0.163738 0.444922 -0.011060 0.754346 -0.125888 -0.535068 0.169028 0.622968 -0.034116 0.305020 -0.214091 -0.470153 -0.792001 0.166330 0.345880 -0.476120 -0.277651 -0.094550 -0.665052 0.299707 0.157243 0.470158 -0.731922 -0.049904 -0.213859 -0.496263 -0.090944 1.203773 0.399964 1.007399 -0.236305 -0.026075 -0.175062 -0.761951 -1.274592 0.747550 0.120140 0.196432 -0.013307 -0.016525 0.686164 -0.317961 0.045993 0.093515 -0.455076 -0.124549 0.221295 0.350455 -0.127557 -0.043888 -0.600150 -0.471192 -0.088557 -0.009785 0.056075 -0.311305 -1.203995 -0.415177 -0.630262 0.669298 -0.106835 0.331356 0.118389 0.022134 -0.187411 -0.262570 -0.568506 0.196551 -0.214199 -0.822646 -0.671302 -0.678071 -0.148810 -0.027796 0.091677 -0.663491 -0.076584 0.608964 0.250998 0.045565 0.018668 -0.227331 -0.747117 -0.660283 0.012910 -0.148635 0.855822 0.517816 -0.254273 -0.680935 0.031707 -0.365941 0.462615 -0.954737 0.269489 -0.199144 -0.628016 0.987735 -0.256312 -0.337625 -0.477375 0.439904 0.458315 -1.746201 0.526497 0.861098 -0.142462 -0.449062 0.472137 -0.568971 0.628067 1.107445 -0.318576 -0.284904 0.258478 -0.298261 0.037661 0.026107 0.865747 -0.482566 0.679560 -0.945476 -0.328057 0.421236 0.485231 0.303475 0.336570 0.471814 0.602262 0.377375 0.914821 0.440748 -0.206206 -1.023660 -1.650277 0.639852 0.585219 -0.284225 0.463867 -0.186197 -0.502110 -0.016267 -0.668392 0.813923 -0.217734 0.273241 0.638931 -0.338897 -0.889713 -0.197089 -0.002223 0.046904 0.040627 0.625103 -0.503444 0.262886 -0.542319 -0.259495 -0.089170 0.118657 -0.318512 -0.100099 0.040211 0.738938 0.338031 0.664429 0.150773 -0.734840 0.129107 -0.312941 0.353253 -0.172408 -0.977140 -0.608907 -0.566993 0.462801 -0.186437 0.493991 0.100937 0.270298 0.404471 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = 0.699474 0.823293 -0.933247 1.552938 -0.524615 -0.958404 0.304520 0.848470 -1.402186 -3.020877 -1.238777 0.501221 0.667942 0.671868 0.028526 0.784481 -0.916535 0.573520 -3.530225 0.682834 1.683208 0.857108 0.053661 -0.368708 0.291356 -0.427280 -0.576592 0.351786 0.360023 2.166447 -0.891817 0.686541 1.724371 -0.560175 -0.047310 1.384618 0.907556 0.499047 -0.095312 0.660934 1.685308 0.942144 -0.619460 -0.110930 -0.409620 1.855041 0.179876 1.096321 -2.831472 -1.657619 -0.103144 -0.266681 -1.161340 -0.458308 -0.189878 0.637200 1.765006 2.599229 -0.453442 0.907477 -0.739830 -0.373878 0.709814 0.306768 1.568707 1.090552 1.038726 1.064379 2.235885 -1.004961 0.081051 0.508826 -0.640648 -1.235222 1.078955 -0.440778 -1.304364 -1.721248 0.211895 -3.665854 -2.008885 0.891053 2.661787 -2.114987 0.301720 0.855862 0.906756 1.906523 -1.363922 0.365389 -1.133272 -0.500716 -0.963246 3.569443 0.456969 0.200649 -0.362180 1.013537 1.427599 0.849520 -0.427608 -1.001776 -1.431526 -1.790943 -0.677226 -0.633710 -0.256395 1.679630 -2.587165 -1.475406 0.750734 2.487313 -3.237075 0.570643 1.398571 1.692616 2.162589 0.976731 -1.983931 1.278710 -0.231912 -0.918961 1.557433 -0.962995 0.197038 0.156459 0.485812 -0.034635 -0.287076 0.266040 -3.887241 -0.821108 0.382397 -2.026357 0.456165 0.728641 0.965798 -1.021352 1.017543 -1.832276 1.104808 -2.516919 0.161053 0.653784 -3.062057 -0.424206 0.436405 1.847635 -0.386008 -1.366934 -1.599991 -0.463499 -2.288357 -3.043828 0.296670 0.792810 0.697265 0.463922 -0.576900 0.577794 -1.065751 0.394909 1.327663 -0.344392 -0.318626 -0.005770 3.360623 0.335503 -0.156592 -0.945524 -0.864506 -0.658911 0.713075 1.838320 -0.657473 -1.263163 -3.259355 -1.158461 1.708221 -0.199087 -0.393278 -1.481313 -0.606477 -2.557980 0.456287 -1.302354 0.351593 0.176026 -0.709951 -1.966246 0.462683 -0.079039 -1.838125 -0.044100 -1.196838 -0.743863 1.398715 -0.867811 0.722073 -1.016653 0.413740 -1.043546 -1.325335 0.990538 -1.153425 1.224325 0.973691 0.120393 -1.104569 -0.128620 -1.881401 1.805178 -0.059041 0.532163 -0.834322 0.364480 2.372192 -1.167712 -0.608427 -1.155524 0.693388 0.450387 -1.115664 3.183436 1.339777 -0.242223 0.187790 0.908282 -0.057727 1.633312 0.769565 -1.485925 -1.766171 0.346902 -0.518555 0.005397 -0.120869 0.919166 -1.926066 0.604020 -0.622154 -0.118912 0.414459 1.322005 -0.063906 0.960590 0.290854 -1.047978 0.123854 0.925084 1.013336 -0.896957 -0.482165 -1.719915 1.424388 -2.467886 -0.586870 -1.274041 -0.527146 -0.580173 1.063168 -0.262249 1.663954 0.937928 -1.708365 1.279708 -2.853814 -1.878377 -1.077213 0.494987 0.148937 -0.104932 -0.073299 -0.372674 1.259678 1.304525 -0.302889 0.272279 -2.014236 -0.325726 -0.140482 1.411190 -0.348208 -0.354463 2.188987 -0.031035 -0.168563 -0.376888 0.158928 0.445555 -0.587442 -0.757813 -0.469649 -0.082018 0.933993 -0.870910 0.979093 -0.682125 -1.142110 1.628907 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.126689 -0.034112 -0.041703 0.102937 0.036615 0.030235 -0.121438 0.183304 -0.095216 -0.525150 -0.352777 0.007729 -0.026629 0.013622 0.299617 0.276795 0.261361 0.118124 -0.280317 0.167011 0.173015 0.033047 -0.058036 0.190353 0.254045 -0.158946 -0.284211 -0.062655 0.085409 0.340548 -0.067643 0.126612 0.236088 -0.053878 0.259069 0.257590 0.169038 0.133571 0.059095 0.189222 0.532536 -0.058273 0.125978 -0.079108 0.067223 0.344752 -0.253425 0.238911 0.168447 -0.086729 0.219865 -0.136271 -0.006857 0.073808 -0.425107 0.100418 0.117138 0.124192 -0.344561 0.220212 -0.062754 0.181506 -0.012032 -0.102970 0.313624 0.117504 0.117765 0.187288 0.408102 -0.036086 -0.014136 0.239668 0.071526 -0.109716 0.066676 -0.090343 0.003339 -0.505259 -0.093659 -0.242024 -0.021401 -0.146127 0.703668 -0.280099 0.054380 0.466918 -0.240373 0.333802 -0.053469 0.131726 -0.301194 -0.031355 -0.055516 0.334701 0.227970 0.160626 0.060506 -0.050802 0.040312 0.137749 0.020004 -0.222771 -0.508212 -0.584101 -0.213996 -0.131506 0.005664 0.095044 -0.369167 -0.232964 0.348721 0.296991 -0.338621 0.174632 0.105428 0.262721 -0.058200 0.083136 -0.404156 0.029700 0.098595 0.100008 0.210680 -0.092950 -0.062939 -0.252599 0.222777 0.057585 0.062768 -0.232830 -0.033588 -0.299266 0.043478 0.071324 -0.158103 -0.044660 0.081504 -0.211698 0.177431 0.098105 0.148063 -0.367908 -0.034270 0.054683 -0.361811 -0.049185 0.618045 -0.003206 0.261028 0.092609 -0.220311 -0.033547 -0.403318 -0.569798 0.173475 0.031295 0.204780 0.134152 -0.081400 0.246711 -0.114521 0.030607 0.004929 -0.117482 0.031098 0.113451 0.061080 -0.091431 -0.082050 -0.354898 -0.208591 0.077009 -0.122241 0.095556 -0.155185 -0.197580 -0.255155 -0.264608 0.293518 -0.125666 0.198939 0.155687 0.068182 -0.203009 0.084661 -0.273352 -0.085553 -0.049013 -0.352348 -0.329559 -0.283644 -0.192118 -0.070347 0.027118 -0.344026 0.128649 0.019727 -0.164853 0.010047 -0.088868 -0.179613 -0.235777 -0.323451 -0.250375 -0.184135 0.079139 0.131046 -0.021609 -0.098292 0.025896 -0.082424 0.248170 -0.205963 0.077036 -0.147866 -0.232880 0.308679 -0.101605 -0.093841 -0.404071 0.162929 0.130614 -0.491268 0.108916 0.408195 -0.093138 -0.179382 0.022921 -0.059521 0.170638 0.480036 -0.082766 0.045083 0.148892 0.067552 0.033850 0.075296 0.229380 -0.213456 0.223993 -0.463898 -0.078193 0.220798 0.304831 0.007964 0.036588 0.263132 0.239035 0.199830 0.365037 0.157661 -0.122359 -0.168626 -0.422912 0.195998 0.277040 0.051890 0.083583 -0.089954 0.045930 -0.006938 -0.183621 0.330841 0.286719 0.299099 0.239075 -0.054858 -0.390843 -0.046574 0.089902 0.068080 -0.039058 0.146619 -0.184948 -0.002737 -0.158219 0.005796 -0.035462 -0.214766 -0.280815 -0.057055 0.222978 0.360505 -0.121742 0.279408 0.087769 -0.238699 0.270863 -0.122100 0.313184 0.116716 -0.082320 -0.265637 -0.154895 0.156784 -0.175398 0.254529 -0.157696 -0.014003 0.146538 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 2.322100 1.669612 -0.082026 1.214005 0.586532 -1.561770 0.803556 2.805376 -0.682187 -4.559558 -3.818397 0.802509 0.211332 -1.020948 1.182290 0.650493 0.258788 2.115157 -4.021014 1.439549 2.008346 1.298877 -0.285602 -1.267839 0.808408 -0.401429 -3.630098 0.101525 0.704679 2.563090 -1.444533 -0.328726 2.244110 -0.607902 -0.006638 2.742469 1.063772 0.598356 2.067151 -0.265146 3.970964 0.855627 0.839688 2.235051 1.425474 2.627906 -2.531852 4.166256 -2.924385 -1.607501 1.586347 -2.630812 -1.957488 0.574388 -1.633286 2.339497 4.466632 1.998154 -1.454885 2.263741 -0.281542 0.215928 0.621190 -2.174501 1.795746 3.688485 -0.395366 1.479831 4.809235 -1.127873 -0.526758 1.550766 1.166552 -0.643504 0.435591 -2.230555 -0.421523 -2.480985 -0.281124 -4.874549 -0.289524 -1.072609 7.862753 -3.278369 1.257693 2.890532 0.772839 2.098047 -1.074525 -0.475443 -1.053761 0.356646 -2.192310 4.519262 0.176437 1.433088 -0.914202 0.253289 1.362587 1.831815 -1.506504 -0.612047 -4.461863 -5.364368 -2.013048 -0.390070 -0.084684 0.534953 -3.908094 -1.976092 2.295513 2.360186 -4.355506 -0.036927 2.375241 2.122051 -0.517464 2.987929 -5.038377 -0.063917 -0.166772 -0.460291 0.291473 -0.915162 -1.344003 -2.229175 -0.847951 -0.319927 0.503872 -1.324983 -4.311394 -1.822377 -1.236151 -1.668530 -0.214204 -0.000548 0.034000 -2.515919 1.468944 -1.542752 1.370659 -4.816620 -0.993364 -0.774525 -4.240020 -0.316669 3.155102 1.375046 2.128242 -0.338449 -1.217087 -2.579646 -3.164938 -2.489318 1.202450 -0.626658 3.059744 -0.095232 -0.155277 -0.241056 -0.907285 -1.082764 0.048821 -0.874610 0.467559 -0.760585 7.418589 -1.747288 -0.664417 -3.753464 -0.767047 1.738918 -1.002837 -0.355554 -1.052713 0.360102 -2.796669 -2.462173 2.426597 -0.439909 0.911519 -1.152495 0.992231 -2.385292 0.148879 -1.952668 0.793983 0.207098 -2.450423 -2.847755 -0.191357 -0.319187 -1.834860 0.120377 -1.952029 -0.060703 2.920070 1.874919 0.419343 -0.241954 -0.147914 -3.986667 -4.153987 -1.201425 -0.535446 1.261108 3.235287 0.762297 -1.905215 -0.106749 -2.757929 2.326374 -1.911404 -0.067766 -1.525009 0.364562 3.805782 -1.460549 -1.227648 -4.221279 0.601365 0.449286 -5.149085 3.286459 0.923868 -1.233826 -1.052663 -1.685391 -0.284367 2.082254 3.427757 -1.026504 -1.433372 1.651952 -1.824831 -0.332316 -1.928713 2.594905 -1.789213 3.001759 -2.188041 -0.603866 1.380905 2.709246 -0.493714 2.158313 1.281078 1.254625 1.660524 2.715840 1.842982 -2.483475 -1.663031 -4.643564 1.607219 0.481879 -0.001701 -0.478681 -0.875412 -2.127733 0.845111 1.565461 2.933749 1.840843 1.489777 2.020684 -2.114145 -3.028626 0.799586 1.733014 1.618575 -1.969055 -0.659731 -1.173734 0.618379 1.208058 0.123662 2.125835 -3.117762 -3.973224 -0.858303 3.544211 0.570147 -0.404650 3.233528 0.505805 -1.687654 1.093699 -0.865013 2.746863 -0.645151 -0.851915 -0.527219 -1.419244 0.390060 -1.263716 3.876524 -0.044656 -0.769904 2.700484 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 4.311263 1.491328 -4.371876 10.302025 -0.720588 -1.854525 -0.592478 3.462047 -2.462120 -16.901890 -10.259893 7.358496 2.080406 3.019721 2.847330 3.601433 0.045092 0.823499 -17.465567 4.298532 6.787782 2.194188 0.083245 0.149060 2.549963 -3.874775 3.589171 0.576924 2.857206 9.633255 -4.519687 5.715292 8.486758 -2.961573 3.996620 6.819931 -1.540056 1.658897 -3.289208 -0.952591 12.055337 5.117093 0.550756 4.700456 -0.119490 9.698456 -0.001507 6.903293 -0.574942 -7.621408 2.646886 4.386663 -4.643100 -1.349629 -5.755765 4.528565 6.865758 4.505065 -4.485910 2.859495 -1.750774 -1.206072 2.335021 -0.120766 9.926014 3.671787 7.543695 7.535869 10.066207 -4.984229 -0.406965 4.922656 0.659683 -0.142916 7.237622 -5.401549 -8.887131 -1.142281 -2.106748 -13.233329 -6.297968 -0.547338 15.142746 -9.898090 0.209164 0.533550 0.197397 9.973511 -4.199033 1.454887 -6.467157 -2.155923 -3.797457 10.875578 2.085783 1.316631 0.150676 3.054202 2.804357 5.623284 -0.572164 -7.238408 -3.178189 -11.577488 -3.837004 -4.035087 4.630589 7.275793 -11.987851 -2.738871 -3.707464 10.625306 -13.731997 0.804506 5.682476 6.408397 8.156402 0.774999 -8.106431 0.963329 2.823325 0.153965 7.182500 -3.836427 0.708579 -1.702544 1.963051 -0.007606 2.524343 0.723933 -10.753614 -7.725765 -0.647806 -2.088107 0.366788 2.949037 6.059519 -5.262828 6.225920 -3.732727 7.141423 -12.282081 -2.147305 -2.602399 -8.238307 -3.195278 6.546206 7.637450 6.565274 -5.142876 -5.537012 -2.176535 -12.699210 -10.853824 1.883529 2.210102 2.021417 4.864311 -1.731826 6.532989 -5.282105 2.648191 4.337544 -2.874773 -2.087505 0.069726 7.268568 0.485556 -0.832323 -6.220852 -3.998093 -4.401293 0.294378 9.094548 -1.392680 -11.225270 -15.326000 -6.070259 8.592396 -3.284323 1.027618 -5.407498 -1.652985 -7.194619 -0.559215 -9.300710 0.026793 -0.144813 -6.053421 -9.627474 0.252631 -1.314005 -3.714546 0.800375 -7.471298 -1.810368 8.800773 2.898413 3.680902 -0.922988 -0.464767 -8.714429 -6.938869 3.305392 -6.888290 7.803071 4.255477 -2.599186 -7.653985 -2.759955 -8.163258 6.618091 -3.257277 3.217644 -3.259843 -1.330156 8.775731 -6.088108 -1.387229 -7.628849 2.279155 3.483802 -15.523956 10.363328 6.190071 -2.127146 0.517269 3.063301 0.939533 5.231708 4.918925 -5.137873 -6.751552 0.868312 -1.999720 0.723432 -2.740404 6.038466 -7.476388 1.115632 -5.892130 -2.693115 5.531518 4.349136 0.941804 2.595885 4.151420 -2.249041 3.927461 6.822972 8.320184 -2.328214 -6.762700 -14.846836 6.220922 -2.586027 -2.733976 -2.150733 -3.326351 -5.324294 2.991290 -2.325756 8.679363 0.692776 -2.679470 7.579304 -11.327652 -9.470238 -5.840598 -0.236228 0.401791 0.385855 -0.304904 -3.833376 4.256916 2.944715 -1.581654 -1.090341 -6.547444 -0.081419 1.091689 7.703092 1.576397 3.160126 9.589342 4.093714 -5.048001 -1.293781 1.489404 -1.832289 -3.263813 -9.543399 -3.711622 -0.449834 2.981956 -4.232113 2.028041 -2.470595 -1.205457 3.203348 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.033663 -0.751648 1.279719 0.714472 0.293991 -1.651784 1.127348 1.923109 -0.132325 -2.015863 -0.740951 -0.945951 -0.250314 -1.160335 0.429530 -0.533403 -0.325656 0.755689 -4.104966 1.092082 1.149966 1.240020 0.351002 -1.720158 0.325155 -0.448385 -1.198161 1.838808 -0.207657 1.575013 -0.736709 -1.159734 1.083298 0.486341 0.284838 2.004812 1.381524 0.307495 1.074602 1.133673 2.157678 1.624756 -1.519103 0.276349 1.390929 1.680251 0.607137 0.418092 -1.467251 -0.701491 0.038547 -1.822360 -1.411241 -1.129161 -0.840542 0.494787 3.344273 2.669047 -0.970003 1.780272 -1.012021 -0.288211 0.648205 -0.085315 1.207564 1.078037 0.198803 0.270525 3.013955 -1.103701 -0.585169 0.650964 1.409174 -0.723650 0.022113 -1.114114 -1.168840 -5.773341 0.391643 -3.700575 -1.224641 0.373365 0.788268 -1.305469 1.399428 2.314663 0.084809 0.758065 -1.336795 -0.995816 -1.027215 0.231432 -0.222740 4.196293 -0.293529 0.252117 0.794942 1.152160 1.826098 1.572103 0.430522 -0.745875 -2.029733 -3.950953 -0.282491 -0.446970 -0.832514 -0.538247 -1.494513 -1.205796 2.807813 0.389796 -2.201713 0.011410 1.718669 1.220279 -0.387054 -2.165577 -0.754410 0.924159 -0.828485 -0.398138 0.996817 -2.030982 -0.687971 -0.193609 0.675447 0.677927 -0.100024 -0.555672 -1.404176 -0.372681 0.271617 -0.399592 -0.208802 -0.347042 -0.923016 -1.437607 0.422009 -2.515321 1.757713 -2.061665 1.205900 0.027122 -0.929832 0.106785 1.438484 -0.078616 -1.081354 -0.074945 -1.162612 -0.182200 -0.677034 -3.365214 1.177509 0.470486 1.602760 -1.027086 -0.353412 -0.754002 -0.255285 -0.952943 -0.228431 -0.549969 0.412582 -0.232402 1.885002 -0.103564 -0.429759 -0.918706 0.508037 2.464365 0.636738 -0.023312 -1.264356 -0.389487 -0.948452 -1.652177 1.307418 0.136509 -0.918839 -0.580224 -0.083415 -2.252812 1.902691 -0.742166 1.458786 -0.277643 -1.313695 -1.644967 0.046020 -0.635736 0.786642 0.056072 -0.737667 -0.625682 -0.945841 0.276668 0.059835 -0.170489 1.064653 -2.119108 -2.172728 -0.679282 0.839154 1.840380 -0.392922 0.995020 -0.480600 0.336661 -0.915570 1.946813 -0.133976 -0.204932 -0.800149 -1.188533 2.933708 0.159954 -0.805841 -1.911917 0.873891 0.627721 1.425926 3.555975 1.665653 -1.032922 -1.318856 -0.497110 -0.711433 1.755208 2.348387 -1.405618 -1.461142 1.012206 -0.777491 -0.407552 -0.772150 1.018134 -0.625406 1.950237 -1.432627 -0.971721 -0.004904 1.880664 -0.252442 1.618538 0.028282 0.483633 -1.581822 1.918233 -0.031755 -0.178004 -1.135983 -1.522699 1.269337 0.440925 0.789426 -0.465545 -1.004812 -1.573638 0.492327 2.482548 1.773153 4.562287 -0.786604 1.157929 -1.376010 -1.739825 -0.440174 0.653356 0.665735 -1.371391 0.179400 -0.619210 0.660815 0.461423 0.080756 1.264817 -0.856552 -1.914108 -0.677484 0.770140 0.613644 -1.881557 2.016057 -0.537998 -0.869719 -0.048255 -0.223584 0.791539 0.703423 1.790285 -0.395222 -1.328691 0.960658 -0.334355 2.333144 0.096986 -0.119657 1.367286 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 3.930669 0.952181 -3.818016 7.254232 -0.614736 -2.384471 0.223959 1.816595 -2.044560 -11.813491 -7.449653 5.032009 1.818247 1.023539 1.775857 3.783656 -1.117736 1.184979 -10.578958 3.232975 4.648027 1.566242 -0.257569 -0.985911 1.321708 -2.852543 0.855151 0.208687 1.501436 7.008429 -3.365639 3.773173 5.987846 -1.453394 1.763665 4.648542 -1.625077 1.102143 -1.018529 -0.237347 8.020922 3.740658 0.431424 2.734669 0.116705 6.578506 -0.843394 7.311199 -2.249735 -5.291436 4.085475 1.121130 -3.936877 0.060337 -3.444455 3.600577 5.558953 3.536224 -2.603987 2.126233 -2.636209 -0.063571 2.011283 -0.573856 7.229842 4.395839 5.120216 4.895550 7.352881 -3.612651 -0.052609 3.304905 1.118086 -1.089034 5.405893 -4.497870 -5.767098 -0.334436 -0.950272 -9.407306 -3.448284 0.290638 13.207301 -7.413964 -0.495520 1.262292 2.028106 7.146322 -3.446849 1.277337 -4.473498 -0.187836 -3.615302 9.433293 0.925226 1.131855 -2.046588 2.533274 2.068343 3.718089 -1.189908 -4.164111 -4.564650 -8.721181 -3.568852 -2.660470 2.918771 4.639444 -9.773324 -1.800656 -0.537472 7.149584 -10.797577 0.749290 4.834083 4.384509 6.898425 3.638996 -6.478876 0.884377 1.099578 0.541693 4.140031 -2.342399 0.496773 -2.585314 1.221677 -0.154486 1.523489 0.213555 -9.948638 -3.925269 -0.730509 -2.695207 0.903869 2.327334 4.673778 -3.844232 4.599440 -3.141659 4.385548 -10.205408 -1.533646 -2.709421 -7.876336 -1.858689 5.856719 6.876809 5.099899 -3.038037 -3.372616 -2.933189 -9.581171 -8.067299 0.273781 0.126211 2.322964 2.389420 -0.617588 3.124547 -3.266420 1.877940 3.048754 -2.791712 -1.115533 -1.012428 8.990456 -0.391823 -1.339551 -5.159749 -3.127089 -2.165771 -0.499403 5.886721 -0.793489 -8.580027 -11.318171 -4.733238 5.836654 -2.154418 1.297734 -4.565264 -0.556027 -5.938010 -0.063203 -6.090470 0.600575 0.710694 -4.001837 -6.963004 0.751759 -0.290562 -3.712503 -0.285805 -4.780663 -1.349445 6.870916 1.806862 2.913831 0.518765 -0.058409 -6.870384 -5.315821 1.910054 -4.688648 5.603954 5.421171 -1.102940 -5.064391 -2.201814 -7.660972 4.673179 -3.538429 1.507591 -2.361156 0.036373 6.612561 -5.031349 -0.216770 -6.106735 1.461870 1.269731 -12.405670 8.021406 4.836550 -2.076055 0.514098 0.143247 1.675542 3.953686 4.235204 -3.733501 -3.939305 0.311353 -2.240693 0.038371 -1.174039 4.375739 -6.003512 1.216565 -3.416031 -1.579041 3.564801 3.845635 0.037602 1.975224 1.751075 -1.601247 3.519631 4.078630 4.968183 -2.756036 -5.024423 -13.373471 3.761762 -2.451689 -2.601090 -0.904899 -2.344358 -3.851123 2.098706 -1.842477 6.474015 0.596036 -1.933375 5.164361 -8.516712 -6.690322 -3.328176 0.576311 0.035019 -1.000443 -0.010396 -2.276549 2.268544 3.174342 -0.424801 -0.072832 -5.742212 -1.758419 0.363604 7.224876 1.117580 1.115128 6.866946 2.505472 -2.591686 -1.330553 1.012317 -0.344362 -1.707130 -6.370647 -2.495833 -0.579682 1.467556 -3.323537 2.539297 -1.449451 -1.141930 2.614241 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.855266 0.039059 0.572693 0.577785 0.573407 -0.748089 0.623889 1.016991 0.044026 -1.744702 -1.027853 0.362427 -0.136473 -0.517241 0.241359 -0.147809 0.125521 0.921834 -1.401805 0.471960 0.576609 0.861040 0.127320 -0.913966 0.199570 -0.145342 -0.920972 0.523006 0.292553 1.135501 -0.630325 -0.557430 0.829458 0.191551 -0.068227 1.182641 1.166588 0.074501 0.456581 -0.137130 1.681192 0.521831 -0.081501 1.136048 0.827818 1.069819 -0.328383 1.412761 -0.412010 -0.582972 0.445153 -1.431464 -0.890143 -0.303017 -0.727853 1.016397 1.749300 1.210021 -0.672943 0.977514 0.020801 -0.002001 0.315706 -0.863969 0.382764 1.370908 -0.316052 0.420006 2.061804 -0.848260 -0.521802 0.672336 1.089071 0.250810 0.277435 -0.843902 -0.283834 -2.010958 -0.130896 -1.669910 -0.223766 -0.403340 2.180901 -1.188556 0.733808 1.545346 0.116549 0.490992 -0.377998 -0.442026 -0.787891 0.364073 -0.302629 1.930635 -0.074355 0.247067 -0.276668 0.246989 0.713521 1.012151 0.014939 -0.319196 -1.679612 -2.388005 -0.625922 -0.298996 -0.276799 -0.177863 -1.230623 -0.627704 1.230323 0.912474 -1.686419 -0.280743 1.052883 0.718353 -0.222678 0.225457 -1.050923 0.126050 -0.164770 -0.395766 -0.008666 -0.945729 -0.572809 -0.446127 -0.350700 -0.099779 0.145885 -0.463367 -1.118819 -0.563575 -0.428841 -0.088074 -0.051794 -0.405217 -0.245601 -1.171674 0.520651 -0.935802 0.662714 -1.418619 -0.185712 -0.110342 -1.219674 -0.170740 1.910885 -0.106065 0.783247 0.158247 -0.615290 -1.114461 -0.616963 -1.558658 0.773223 -0.264163 1.230580 -0.011325 -0.048541 -0.361529 -0.340329 -0.808670 -0.099048 -0.469629 0.227250 -0.243587 1.871972 -0.893361 -0.140037 -1.523288 0.239815 1.449566 -0.059026 -0.292147 -0.748274 -0.339923 -0.690452 -1.126679 0.872867 -0.177445 0.142600 -0.246417 0.184630 -0.917450 0.473835 -0.647145 0.576766 -0.063652 -1.208210 -1.252799 0.288942 -0.378629 -0.270673 0.384920 -0.686494 -0.012024 0.034717 0.737676 0.062049 0.047662 0.230713 -1.860732 -1.596029 -0.771288 0.180023 0.937282 0.639424 0.587409 -0.734514 -0.225366 -0.990039 1.122953 -1.171333 -0.149014 -0.322832 -0.020561 1.579363 -0.376747 -0.275466 -1.777200 0.511891 0.493286 -1.110046 1.607905 0.621950 -0.730333 -0.736752 -0.803108 -0.185658 1.042976 1.706530 -0.833845 -0.774608 0.893874 -0.682369 -0.239376 -0.977381 0.804116 -0.354446 1.358121 -1.025188 -0.639306 0.104828 1.274829 -0.351491 0.852790 0.568355 0.595212 -0.082205 1.352703 0.441767 -0.351020 -0.864671 -1.723661 0.770422 0.696978 0.365391 0.143553 -0.909331 -0.863742 0.571756 0.794917 1.156953 1.290067 0.539651 0.929760 -0.963840 -1.092392 0.594901 0.274237 0.762280 -0.986302 0.354922 -0.543033 0.164949 0.281378 0.022227 0.597361 -0.696674 -1.383529 -0.337175 1.089556 0.411304 -0.329223 1.337343 -0.062055 -0.782049 0.554512 -0.292502 1.056183 -0.136996 0.034782 -0.078244 -0.639939 0.123872 -0.429187 1.688610 -0.128736 -0.357770 0.746404 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = 2.641341 0.595009 -2.919209 5.475893 -0.425169 -1.007235 0.009497 1.092945 -1.298915 -8.581478 -5.412207 5.200407 1.004558 1.328651 1.213850 2.492760 -0.561853 0.332829 -6.900856 2.002853 2.893810 0.496748 -0.298286 0.001169 0.800189 -2.271337 1.733348 0.440062 1.293835 4.760995 -2.152261 2.725250 4.295734 -0.932862 1.313555 3.172027 -1.090161 0.729081 -1.910606 -1.082107 5.672952 2.705274 0.122604 2.414421 -0.219808 4.752342 -0.432067 5.318432 -0.274236 -3.924283 2.529224 1.289503 -2.871305 -0.192984 -2.509023 2.337404 2.600291 1.662142 -1.906028 1.189693 -2.024859 -0.262485 1.162431 -0.378802 4.943303 2.529041 4.103742 3.656888 4.461804 -3.104411 -0.504941 3.118106 0.739479 0.375884 3.737682 -2.459809 -4.469606 0.753158 -0.540243 -5.725929 -3.459461 -0.136729 9.538880 -5.073658 -1.046551 0.157466 0.816475 4.964288 -2.386205 1.525420 -3.539258 -0.391510 -1.837147 5.639839 1.212937 0.345596 -1.211006 1.437362 1.398201 3.076376 -0.846974 -3.106970 -2.852944 -5.623460 -1.870748 -2.031932 2.692031 3.675923 -6.414713 -1.132068 -0.689058 6.275587 -6.965853 0.207502 3.524174 2.803212 5.519155 3.236543 -4.170243 0.575972 1.778232 0.085128 3.766348 -1.436418 0.587876 -0.910807 1.415728 -0.597588 1.200836 0.730372 -7.193630 -3.357315 0.084100 -1.458226 0.822927 1.390691 3.471377 -2.368226 3.445927 -1.375221 3.155056 -6.758596 -0.965512 -1.666984 -4.913666 -1.489589 5.114770 6.015105 4.601751 -2.021144 -2.023863 -2.121548 -6.463591 -5.812996 0.143481 0.564653 1.225232 1.897522 -0.413814 3.143047 -2.446895 1.863374 1.977106 -1.755002 -0.860545 -0.146332 4.889479 -0.051162 -0.711971 -3.612643 -2.175343 -2.609312 -0.514118 4.631076 -0.337759 -7.904774 -7.810531 -3.380354 4.096785 -1.723282 0.759955 -2.936455 -0.933674 -3.396611 -0.563923 -4.286315 0.441744 0.594852 -3.281842 -4.908822 0.724603 -0.275593 -2.946125 0.176756 -3.367475 -1.168045 4.896751 1.003610 2.310946 0.708253 -0.365327 -4.465466 -3.100079 1.554984 -3.928145 4.453305 4.114079 -1.293959 -4.086311 -1.880362 -5.560834 3.513833 -3.156972 1.277763 -1.875688 -0.168889 4.382445 -3.432196 -0.185196 -3.848221 1.393975 1.588003 -9.898249 4.893406 4.096727 -1.101269 0.334135 0.856632 0.746040 3.083430 2.851230 -2.959508 -2.882913 0.091607 -1.298384 0.255210 -0.066996 3.058485 -3.936834 0.136378 -2.441856 -1.260735 2.512918 2.130546 0.349025 0.907681 1.632000 -0.840452 3.144901 2.871883 3.752139 -1.876070 -3.709702 -10.205277 3.159661 -1.042283 -2.574504 0.084340 -2.042338 -2.780395 1.488942 -3.012396 4.336636 -1.531488 -1.737373 3.776229 -5.810402 -4.499019 -2.679288 -0.359883 -0.385035 -0.189463 1.117483 -1.232378 1.585818 1.961747 -1.095293 -0.883491 -3.343309 -0.507990 0.403228 4.616666 1.231620 1.722266 4.549849 1.903823 -2.319959 -1.179519 0.876355 -0.879691 -1.358972 -6.125668 -1.804913 -0.177471 1.000936 -2.123848 0.647975 -0.563455 -1.053536 1.424511 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.441023 -0.016225 -1.916477 4.513134 0.155933 -1.167538 0.191181 0.913277 -0.651353 -7.010886 -4.092715 3.514394 0.900218 0.649604 0.843175 2.084573 -0.187366 0.689768 -5.615149 1.838061 2.280639 0.779954 -0.194689 -0.605583 0.679131 -1.853389 1.676116 0.348790 1.025398 4.066659 -1.964504 2.087940 3.527291 -0.644356 1.417641 2.962066 -0.291129 0.464251 -1.430725 -0.613101 5.086144 2.284349 0.336438 2.105453 0.197332 4.023900 0.249839 4.359924 -0.266272 -2.985817 2.055052 0.611065 -2.373858 -0.366765 -2.650162 2.230922 2.672463 1.687877 -1.807812 1.274196 -1.214705 -0.025273 1.167036 -0.146929 4.153821 2.007128 2.989505 2.983117 4.427590 -2.565561 -0.381251 2.428327 1.269473 0.248823 3.704491 -2.667581 -3.778321 0.116400 -0.686915 -4.583678 -1.907008 -0.175239 7.374520 -4.244773 -0.337339 0.765300 0.672909 4.028059 -1.875650 0.594344 -3.040027 -0.035688 -1.575364 5.198680 0.682657 0.645570 -0.979977 1.340988 1.053780 2.470848 -0.136124 -2.893816 -2.036151 -5.154707 -1.817758 -1.917293 1.746201 2.416019 -5.301232 -0.914950 -0.964159 4.708493 -6.053548 0.247845 2.797698 2.254501 4.549837 1.179378 -2.771857 0.479446 1.094382 0.316895 2.372267 -1.756390 0.158887 -0.943899 0.973084 -0.185787 1.102453 0.167802 -5.215916 -2.445901 -0.314488 -0.717778 0.490994 1.060492 2.555824 -2.727464 2.654906 -1.660368 2.751953 -5.460549 -1.080654 -1.599259 -4.275838 -1.294251 4.511794 3.345059 3.911439 -1.609522 -1.890700 -1.722076 -5.284022 -5.270210 0.467583 0.094321 0.983042 1.798475 -0.308102 1.988096 -2.121404 0.906244 1.835501 -1.710193 -0.789998 -0.219149 3.582880 -0.404537 -0.670131 -3.066379 -1.498328 -1.046084 0.242459 3.593033 -0.631691 -6.250316 -6.291306 -2.906117 3.427799 -1.501322 0.733935 -2.307036 -0.746101 -3.091323 -0.122202 -3.666291 0.717120 0.217479 -2.644815 -4.232152 0.544006 -0.518509 -1.565822 0.294702 -2.905601 -0.536376 3.308067 1.053558 1.458971 0.546308 -0.096295 -4.271895 -3.085988 1.098838 -2.573916 3.849174 2.504454 -0.621855 -2.953674 -1.558313 -4.299232 2.708960 -2.721120 0.974934 -1.039489 -0.195333 3.697658 -2.873332 0.069200 -3.630486 1.202402 1.132515 -7.023306 4.463520 3.244628 -1.474450 -0.010194 0.333675 0.847801 2.297954 2.874960 -2.397330 -2.519123 0.530937 -1.064491 -0.005621 -0.829146 2.387808 -3.063661 0.700594 -2.483461 -1.363318 1.902354 2.241975 -0.016971 0.715414 1.303896 -0.864354 1.638635 2.939510 3.055039 -0.794365 -3.518340 -8.104607 2.358425 -0.866624 -1.419581 -0.054414 -1.734516 -2.173258 1.429142 -1.527559 3.804536 0.175637 -0.994587 3.291591 -5.084243 -3.984885 -1.811268 -0.302399 0.205538 -0.532421 0.550459 -1.651307 1.238796 1.140227 -0.328016 -0.707850 -2.665349 -0.187008 0.499591 3.993369 0.922910 0.983961 4.067882 1.529464 -1.678100 -0.626482 0.715975 -0.419952 -0.859575 -4.399941 -1.523355 -0.346110 0.944680 -1.864605 1.404087 -0.857798 -0.466938 1.197606 -PE-benchmarks/binary-insertion-sort.cpp__main = 1.021099 0.121715 0.104047 1.527464 0.302982 -0.380491 0.376575 0.947144 -0.259896 -3.114512 -2.190563 0.966725 0.050754 0.182951 0.622297 0.305527 0.195375 0.516722 -3.224601 0.563278 1.167190 0.587101 0.430253 -0.448926 0.382334 -0.759749 -0.154436 0.553183 0.459531 1.830817 -0.935126 0.473864 1.500263 0.166140 0.525019 1.448343 0.034435 -0.010502 -0.141121 -0.458614 2.429700 1.022076 -0.091040 1.166517 0.424827 1.817468 -0.159134 1.455849 0.126120 -1.252146 0.737758 -0.907258 -1.245101 -0.131483 -1.153255 0.989165 1.620554 1.122049 -0.804807 0.885795 -0.453879 -0.013792 0.370412 -0.986602 1.471001 1.036452 0.896397 0.979117 2.001862 -1.339718 -0.376476 1.012847 0.742930 0.313582 0.491590 -1.153000 -0.948825 -1.655294 -0.165861 -2.856966 -0.921975 -0.333214 3.067038 -1.662118 0.263128 0.922911 -0.212634 1.406641 -0.678824 0.005428 -1.430517 0.132555 -0.365814 1.942784 0.235364 -0.008190 -0.003576 0.501958 0.745344 1.355571 -0.093235 -0.916043 -1.625233 -3.024495 -0.564807 -0.601198 0.773040 0.683700 -1.921202 -0.358632 0.491959 1.888931 -2.420225 -0.259861 1.339030 1.149410 0.091082 0.260369 -1.379372 -0.121147 0.271727 0.177899 1.094033 -1.163137 0.006163 -0.591621 0.042217 -0.107496 0.653141 -0.094118 -1.593179 -1.371752 -0.171336 -0.213807 0.013721 0.094399 0.681747 -0.713428 1.164655 -0.934522 1.343015 -2.177281 0.045549 -0.625651 -1.335279 -0.494632 2.306395 1.459307 1.104113 -0.070627 -0.658089 -0.783817 -1.664881 -2.045754 0.587478 0.218742 1.225591 0.436230 -0.182184 0.700081 -0.818601 -0.056551 0.086908 -0.699195 -0.143793 -0.198005 1.580318 -0.360704 -0.338178 -1.641137 -0.012438 0.501233 -0.627005 0.845054 -0.581884 -1.591991 -2.068706 -1.561982 1.507298 -0.623143 0.204863 -0.766284 0.118134 -1.123950 0.297961 -1.432116 0.242845 0.155581 -1.713437 -1.915833 0.229113 -0.409521 -0.578068 0.513952 -1.168398 -0.270848 1.292273 1.018558 0.610204 0.254026 0.117950 -1.891852 -1.571222 -0.312943 -0.852619 1.484335 1.079213 -0.190581 -1.665649 -0.657574 -1.490163 1.635132 -0.845048 0.272903 -0.896072 -0.308216 1.693619 -0.894348 0.017572 -1.737573 0.576370 0.839165 -3.304897 1.851922 1.306151 -0.750249 -0.520920 -0.644256 0.150149 1.163499 1.716617 -1.024723 -0.980013 0.414650 -0.738309 -0.025676 -0.789232 1.197628 -0.879263 0.513240 -1.328003 -0.853816 0.833049 1.076777 -0.017326 0.961083 1.059963 0.682785 0.824339 1.586044 1.024562 -0.659934 -1.404991 -3.429763 1.200124 1.295098 -0.085934 0.183785 -1.010931 -1.328830 0.477049 -0.141170 1.648921 1.079922 -0.054233 1.522079 -1.413984 -1.578736 -0.506868 0.036682 0.334466 -0.622984 0.286083 -0.654875 0.491611 0.541840 -0.241787 0.368368 -1.123939 -1.235492 -0.060326 1.724247 0.706370 0.384366 1.841480 0.482004 -1.160217 0.000375 0.070187 0.223356 -0.228994 -1.177443 -0.601987 -0.360364 0.263363 -0.723182 0.854455 -0.122003 -0.286706 0.585760 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 1.985800 0.175285 -1.801052 5.113354 -0.568668 -0.770272 0.050318 0.767139 -1.396333 -8.487596 -5.057366 4.312558 0.955697 1.924669 0.964442 1.937154 -0.418723 0.355252 -8.605354 1.498643 3.228135 0.955992 0.869075 -0.266220 0.996053 -2.157791 2.558960 0.865133 1.470093 4.937864 -2.468629 2.615853 4.306606 -0.759664 1.481578 3.276152 -0.922559 0.784218 -2.317219 -0.880063 5.640077 2.285920 0.153459 2.085851 -0.288811 4.826553 0.812337 3.703749 1.378392 -4.034690 2.093414 1.715340 -2.794652 -0.850454 -2.496414 2.004296 2.991452 2.662539 -2.009044 1.294507 -0.799756 -0.320295 1.089902 -0.322979 4.650513 1.750712 3.979479 3.115389 4.096557 -3.350245 -0.503069 2.403342 0.516164 0.135029 3.475169 -3.485885 -4.321108 -0.682160 -0.586815 -6.921123 -3.439181 0.406273 7.103414 -4.778388 -0.500102 0.301253 -0.133205 4.650834 -1.774810 0.959724 -3.580649 -0.576268 -1.327804 5.814650 1.118717 -0.269466 0.044737 1.712194 1.778261 3.219902 0.096434 -3.331345 -1.939257 -5.805237 -1.637258 -2.188625 2.921498 3.717742 -5.646418 -1.087503 -1.112023 4.931928 -6.839492 0.102532 3.501917 3.272682 3.723315 0.285117 -3.069895 0.622689 1.172226 0.352302 4.018470 -2.202027 0.721105 -0.097523 1.016993 -0.232918 1.353796 0.565556 -5.623783 -3.825028 -0.179174 -0.787866 0.494105 1.087835 3.215506 -1.439658 3.355189 -1.930208 3.514140 -6.076756 -0.247212 -1.355986 -3.468818 -1.708960 3.342323 4.279953 3.053238 -2.340498 -2.342007 -1.160574 -5.752009 -5.656965 0.728498 1.372231 1.304040 2.397440 -0.830195 3.345607 -2.513078 1.283646 1.779644 -1.601043 -1.133237 -0.138376 3.017003 0.193713 -0.729110 -2.942427 -1.299233 -2.161026 -0.494665 4.639635 -0.732314 -6.755404 -7.467421 -3.453426 4.193824 -1.865291 0.321418 -2.582840 -0.980697 -3.497199 0.011636 -4.564047 0.109774 0.460311 -3.389448 -4.944643 0.758268 -0.724641 -1.820917 0.819702 -3.727208 -1.251083 3.700084 1.185094 2.275948 0.097563 0.308419 -4.440268 -2.980311 1.366285 -3.798943 3.470402 2.443733 -1.102888 -4.232289 -1.911780 -4.261417 2.938535 -1.904972 1.439249 -2.013858 -0.421222 4.117518 -2.968077 0.771272 -3.137655 1.223312 2.332368 -8.509882 5.510819 3.695950 -0.985864 0.233620 1.329603 0.501687 2.754207 2.440187 -3.187990 -3.470284 0.112117 -1.522609 0.401188 -0.524996 2.938402 -3.407351 -0.072350 -2.596948 -1.555223 2.100674 2.091471 0.643362 1.648176 2.242018 -0.827825 1.986154 3.225800 3.187799 -1.047945 -3.207342 -9.164975 3.450131 -0.293434 -1.503884 -0.041199 -2.032517 -2.692517 1.787602 -1.347734 4.095778 0.031034 -1.923242 3.845352 -5.466235 -4.344813 -2.988757 -0.891065 -0.014786 0.097234 0.136721 -1.420454 1.853972 1.752193 -1.191475 -0.646704 -2.561916 -0.072397 0.585121 4.411243 1.173491 1.856609 4.742480 1.486204 -2.522199 -0.949492 0.715984 -0.937993 -1.100250 -4.640628 -1.741702 0.075512 1.294107 -2.027058 0.205302 -1.147729 -1.065722 0.999115 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = 1.388101 -0.142250 -0.418192 2.029302 0.103656 -0.159916 0.170275 0.692112 -0.577571 -4.199779 -2.590111 2.315573 0.231427 1.211905 0.354259 0.829477 0.235972 0.155102 -4.159428 0.619284 1.323480 0.407260 0.472105 0.187088 0.521650 -1.063990 0.906963 0.450330 0.890862 2.373300 -1.381600 0.988109 2.118768 -0.223231 0.838496 1.757851 0.296655 -0.022080 -1.116595 -0.883198 2.997835 0.997985 0.295681 1.301415 -0.051687 2.398977 0.364043 2.816009 1.275878 -2.003898 1.098349 -1.169779 -1.759375 -0.091628 -1.459997 1.106750 0.898037 1.309204 -1.144567 0.779897 -0.106418 -0.076579 0.391004 -0.718162 1.977845 0.682127 1.564985 1.136073 1.985898 -1.845978 -0.502962 1.569387 0.562229 0.813425 1.144948 -1.901924 -1.379600 -0.829709 0.172068 -3.148698 -1.773161 -0.269758 3.741446 -2.326272 -0.068509 0.573731 -0.712728 2.003199 -0.756228 0.526519 -2.109333 -0.139858 0.084847 2.121685 0.399775 -0.285015 0.198430 0.518421 0.841967 1.758005 -0.041899 -1.557062 -1.644081 -2.842569 -0.458692 -0.988253 1.159490 1.601461 -2.489050 -0.581817 -0.600483 3.027754 -3.024270 -0.116371 1.724811 1.360032 1.461766 1.448097 -1.229102 -0.088339 0.766954 0.215142 1.971773 -1.281324 0.310029 -0.232087 0.552754 -0.190207 0.760686 0.184342 -2.713866 -1.949285 0.216720 -0.226388 0.062080 0.160427 1.297539 -0.715628 1.724364 -0.769248 1.448270 -2.545815 -0.403466 -0.492548 -1.846490 -0.875532 3.428084 2.291838 1.914370 -0.420343 -1.000069 -0.828425 -2.342050 -2.821933 0.448792 0.432526 1.013922 1.244461 -0.281807 1.613327 -1.158055 0.139366 0.181932 -0.746517 -0.609127 -0.129655 0.579734 -0.193569 -0.178485 -1.775729 -0.203937 -0.491087 -0.646066 1.864668 -0.638588 -3.853611 -3.025861 -1.901964 2.002306 -0.912300 0.399835 -0.875103 -0.338580 -1.410903 -0.194677 -2.070274 -0.041008 0.123592 -2.198880 -2.464740 0.513357 -0.575222 -0.927599 0.756067 -1.635609 -0.484974 1.656876 1.193041 1.073416 0.111296 -0.062586 -2.321554 -1.638899 0.202157 -1.780480 2.105581 1.073810 -0.635360 -2.107497 -1.084612 -2.001358 1.800692 -1.702672 0.612161 -0.999608 -0.110560 1.956547 -1.281709 0.629519 -1.534504 0.986831 1.502643 -5.021813 2.372777 2.021369 -0.701986 -0.239456 0.144432 0.097517 1.680712 1.638842 -1.356474 -1.539873 0.314134 -0.682692 0.173573 -0.500661 1.476214 -1.280230 0.099337 -1.542327 -1.072024 0.843565 1.038620 0.292911 0.624097 1.467444 0.470526 1.197882 1.979111 1.144244 -0.535536 -1.594499 -5.268358 1.872174 1.905168 -0.650675 0.576962 -1.613178 -1.153915 0.829414 -1.479693 1.951795 0.013117 -0.265818 1.970691 -2.346991 -2.021402 -1.079523 -0.525473 0.023160 0.087817 0.525669 -0.737013 0.844913 0.568197 -0.637188 -0.313679 -0.997104 -0.588080 0.258681 1.924059 0.855288 1.315803 2.311448 0.499909 -1.180527 -0.187394 0.323713 0.172399 -0.496624 -2.394659 -0.860551 -0.080927 0.439248 -0.941365 0.171779 -0.334720 -0.599775 0.452049 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.415141 -0.177443 0.111549 0.461243 0.195771 -0.260085 0.224742 0.372244 0.121012 -1.076977 -0.607785 0.182269 -0.025860 -0.129091 0.248103 0.073775 0.140266 0.449033 -0.745956 0.241144 0.324505 0.355351 0.065268 -0.239919 0.115821 -0.165957 -0.408458 0.137906 0.212591 0.677037 -0.407453 -0.042211 0.539714 -0.023363 -0.013634 0.575680 0.511662 0.031887 0.122764 -0.016794 0.958104 0.170328 0.036229 0.553298 0.287206 0.641155 -0.221103 1.044750 0.176391 -0.400254 0.511156 -0.847783 -0.380058 -0.023934 -0.492299 0.552540 0.819876 0.572011 -0.393944 0.446251 -0.054508 0.103079 0.175338 -0.477092 0.399043 0.710904 0.029933 0.343017 0.994751 -0.439033 -0.150415 0.295736 0.499103 0.163158 0.280149 -0.514724 -0.102453 -1.100907 -0.126350 -0.671070 -0.055846 -0.240835 1.145054 -0.754222 0.271958 0.757033 -0.016113 0.445617 -0.199516 -0.038758 -0.539229 0.162710 0.017492 0.814208 0.013267 0.051821 -0.243321 0.137251 0.204526 0.428495 0.085977 -0.284393 -0.959073 -1.294047 -0.564666 -0.205740 -0.016774 0.028727 -0.887928 -0.175397 0.569124 0.435383 -1.015447 -0.062550 0.478661 0.407616 0.059668 0.288204 -0.572082 -0.045511 0.024680 0.002219 0.076597 -0.470608 -0.149252 -0.548174 -0.107890 0.026061 0.162179 -0.250243 -0.405675 -0.340721 -0.222645 0.117338 -0.039701 -0.068667 0.092041 -0.578899 0.396331 -0.391231 0.382756 -0.830638 -0.268738 -0.181814 -0.593913 -0.166412 1.466193 0.098941 0.648440 0.112031 -0.547289 -0.561385 -0.555758 -0.890220 0.259206 -0.194184 0.598987 0.194215 -0.041622 -0.028187 -0.172002 -0.250714 -0.088099 -0.344263 0.015344 -0.091742 0.538028 -0.439310 -0.108437 -0.927013 0.057279 0.694832 -0.199814 0.017545 -0.295765 -0.345111 -0.520485 -0.576443 0.535114 -0.186788 0.273671 -0.158016 0.112094 -0.605209 0.182016 -0.448624 0.089519 -0.004859 -0.722873 -0.756955 0.162597 -0.198157 -0.117650 0.218718 -0.492350 0.064398 0.047016 0.552067 0.140533 0.098494 0.036652 -1.088318 -0.911882 -0.410111 -0.167871 0.623945 0.334106 0.170145 -0.395520 -0.233403 -0.584838 0.606382 -0.879801 0.004077 -0.097787 -0.079542 0.706746 -0.318856 -0.189667 -0.942185 0.275380 0.260135 -0.904248 0.810145 0.384178 -0.435963 -0.247374 -0.471796 0.099940 0.491948 0.882955 -0.386727 -0.290005 0.370061 -0.239185 -0.075126 -0.549610 0.469847 -0.272515 0.498157 -0.551211 -0.303678 0.182795 0.637878 -0.136241 0.310644 0.408648 0.332869 0.041207 0.680698 0.282993 -0.210717 -0.446842 -1.180885 0.406245 0.660143 0.114582 0.253723 -0.700728 -0.302659 0.271768 0.246662 0.641167 0.560984 0.483907 0.571749 -0.599681 -0.623670 0.203105 0.058597 0.282603 -0.433953 0.270476 -0.307415 0.068549 0.152638 0.073452 0.170495 -0.365763 -0.704495 -0.058281 0.622701 0.200500 -0.015500 0.721927 0.070696 -0.483108 0.229777 -0.128896 0.357571 -0.096436 -0.115382 -0.067067 -0.197631 0.059789 -0.356447 0.736296 -0.213682 -0.172947 0.255016 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp___GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = 0.696130 0.407387 0.318673 0.727157 0.073046 -0.879235 0.253294 0.981666 -0.874213 -1.936341 -1.280709 0.861455 -0.165299 -0.285043 0.361888 0.132533 -0.146353 0.177390 -3.189054 0.919388 0.964471 0.558698 0.289354 -0.728795 0.473777 -0.537140 -0.238719 0.770224 0.053310 1.106507 -0.928519 0.015276 0.835832 0.335170 0.742635 0.945732 -0.364687 -0.181488 0.394751 -0.026761 1.729397 0.931451 -0.330900 0.428339 0.870157 1.169618 -0.053093 0.032375 0.041154 -0.777332 -0.020347 0.141961 -1.020861 -0.033679 -0.640093 0.490293 0.924061 0.941211 -0.674808 0.581181 -0.713907 -0.289860 0.235296 -0.513390 1.300892 0.417053 0.675565 0.439754 1.541562 -0.586561 -0.326552 0.687521 0.806387 -0.123440 0.079036 -0.429932 -0.763280 -2.374190 0.049072 -3.146921 -0.954504 0.196881 2.015580 -0.987072 0.484560 0.708061 0.085862 0.972933 -0.776803 -0.308304 -0.940640 0.088237 -0.472578 1.773945 -0.004944 -0.071041 0.347473 0.644160 0.866054 1.198339 -0.360962 -0.518853 -1.061814 -2.404742 -0.135157 -0.209931 0.271277 0.084155 -1.322865 -0.225300 1.422651 1.794321 -1.592577 -0.155783 1.094022 0.579325 -0.725595 -0.329328 -1.040699 0.075497 -0.350094 0.188935 0.882459 -0.662174 -0.185833 -0.025451 0.234505 0.035516 0.561186 -0.067438 -1.442457 -0.941042 0.187465 -0.549556 -0.263230 -0.152075 0.107575 -0.360340 0.736302 -0.870728 1.041178 -1.394451 0.790014 -0.571717 -0.423234 -0.020845 0.643955 1.552874 -0.320401 -0.003170 -0.089666 -0.228732 -1.084302 -1.185760 0.625205 0.052690 0.821975 -0.312000 -0.082796 0.259957 -0.196017 -0.346144 -0.037389 -0.609096 0.045442 -0.569496 1.498693 0.004250 -0.184054 -0.919515 -0.096093 0.625781 -0.319045 0.156703 -0.628639 -0.952385 -1.334341 -1.268541 0.912977 -0.127218 -0.187989 -0.640674 0.234635 -0.436391 0.742929 -0.912850 0.361533 -0.207764 -0.880329 -1.042655 -0.129602 -0.267495 -0.660444 -0.329936 -0.514146 -0.377529 0.639662 0.166489 0.412884 -0.114803 0.258848 -1.189741 -1.041120 -0.094010 -0.066367 0.622345 0.856160 0.029348 -1.720266 -0.207290 -1.012141 1.270364 -0.232036 0.033550 -0.721747 -0.893825 1.693218 -0.360494 0.010121 -0.636788 0.476903 0.371794 -2.146431 1.876758 1.195462 -0.590570 -0.510527 -0.468359 -0.060656 1.169601 1.317027 -0.711860 -0.379826 0.055398 -0.565010 -0.102476 -0.063779 1.141930 -0.732196 0.824518 -0.877740 -0.798385 0.528910 0.872409 0.166026 0.876488 0.113480 0.500820 0.330479 1.064422 0.441923 -0.296303 -0.909059 -2.016303 0.709647 0.681828 0.196478 0.199474 -0.253420 -1.400615 -0.144213 0.162250 1.363825 0.651274 -0.732627 0.758811 -0.898627 -1.115335 -0.540624 0.271465 -0.145513 -0.542888 0.483394 -0.378967 0.110004 0.463822 -0.088694 0.465840 -0.485103 -1.184414 -0.324691 0.726676 1.224312 -0.376963 1.186977 0.255799 -0.910341 -0.209650 0.087962 0.361573 -0.061538 -0.239740 -0.593536 -0.707241 0.213293 -0.271699 0.791644 0.289332 0.132250 0.417460 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = 0.853381 -0.018589 -0.071152 0.983513 0.482924 -0.747925 0.225653 0.595745 -0.066835 -1.964701 -1.059129 0.493967 0.053414 -0.372585 0.363935 0.370277 0.117856 0.674968 -1.366145 0.689158 0.610510 0.615696 -0.160168 -0.657194 0.280933 -0.325509 -0.376425 0.156999 0.315105 1.146070 -0.840163 0.008779 0.892311 -0.089564 0.315275 0.958462 0.630922 0.108236 0.226077 0.047318 1.833422 0.516113 0.076758 0.926057 0.747922 1.106201 -0.360722 1.532525 -0.452487 -0.675247 0.628741 -0.500396 -0.624997 -0.047242 -0.921116 1.099196 1.605127 0.876051 -0.833076 0.649894 -0.079248 0.113822 0.362080 -0.414272 0.943303 1.131479 0.251623 0.712921 1.954118 -0.577860 -0.278844 0.590094 1.007705 0.077207 0.916644 -0.805596 -0.597727 -1.182002 -0.275740 -1.405864 0.033470 -0.258457 2.261700 -1.351451 0.448723 1.139989 0.361730 0.937795 -0.487440 -0.267389 -0.842105 0.288123 -0.593486 2.049038 -0.007456 0.358873 -0.503879 0.467967 0.423309 0.849356 0.010478 -0.616560 -1.263212 -2.286426 -1.044859 -0.423303 0.000249 0.074825 -1.685728 -0.408837 0.750177 1.068695 -1.887415 0.035711 0.846085 0.657724 0.573706 0.100640 -1.173298 0.088564 -0.189183 -0.131539 -0.070364 -0.565408 -0.418783 -0.752290 -0.072094 -0.011271 0.325665 -0.382048 -1.240954 -0.422598 -0.464945 -0.128612 -0.103764 -0.055450 0.257969 -1.420552 0.698078 -0.712252 0.651491 -1.674418 -0.394479 -0.498942 -1.425843 -0.203105 1.559134 0.156579 1.024838 -0.070004 -0.759266 -1.003692 -1.351412 -1.680292 0.450603 -0.365456 0.758054 0.283744 -0.045879 -0.061932 -0.401845 -0.501795 0.402097 -0.707350 -0.004387 -0.431315 1.911665 -0.748620 -0.192105 -1.406359 -0.220889 0.968590 0.016030 0.214561 -0.547258 -0.716669 -1.348574 -1.027663 0.910634 -0.318200 0.444987 -0.453560 0.154185 -1.220719 0.378660 -0.936568 0.411706 -0.233806 -0.869551 -1.239512 0.110621 -0.268652 -0.346946 0.020237 -0.910437 0.136232 0.369150 0.482208 0.184188 0.047972 0.093671 -1.919325 -1.583220 -0.274906 -0.146668 1.007680 0.741250 0.271925 -0.671120 -0.340893 -1.273759 0.941452 -1.268072 -0.006383 -0.047201 -0.102876 1.398961 -0.687104 -0.409857 -1.594276 0.403482 0.173157 -1.199346 1.766665 0.674868 -0.814281 -0.346460 -0.622430 0.272603 0.786852 1.485784 -0.759056 -0.548626 0.549644 -0.500265 -0.193762 -0.781694 0.921429 -0.689319 1.126938 -1.012333 -0.575592 0.321510 1.220042 -0.255449 0.579389 0.324921 0.050583 0.036141 1.226974 0.708878 -0.165635 -0.970527 -1.873252 0.525961 -0.268847 0.086382 0.002345 -0.668638 -0.764899 0.310127 0.549646 1.304814 0.776240 0.436669 0.955687 -1.451925 -1.238989 0.274853 0.179202 0.426454 -0.821481 0.276025 -0.664753 0.068674 0.244520 0.248996 0.215721 -0.845947 -0.904715 -0.168023 1.146373 0.341795 -0.259752 1.289194 0.291556 -0.705696 0.323468 -0.078655 0.702862 -0.133979 -0.445191 -0.333822 -0.533652 0.054521 -0.586739 1.382026 -0.345071 -0.069982 0.578129 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = 0.611637 -0.564751 0.140233 0.737665 0.421200 -0.545443 0.230950 0.397702 0.144532 -1.331328 -0.461314 0.324549 -0.053053 -0.280451 0.211675 0.148524 0.100303 0.311017 -1.101324 0.543429 0.298283 0.367209 -0.054314 -0.468187 0.188354 -0.350707 0.147652 0.423563 0.161925 0.764302 -0.604066 -0.125091 0.614328 0.016635 0.295488 0.756661 0.747050 0.027068 -0.086906 0.183457 1.353330 0.425734 -0.189844 0.570055 0.591431 0.837672 0.140543 1.158245 0.223775 -0.422543 0.410014 -0.495393 -0.491751 -0.267809 -0.810193 0.682368 1.063778 0.646339 -0.667354 0.477483 -0.150261 0.023736 0.259985 -0.042126 0.742924 0.529253 0.335130 0.418540 1.428207 -0.548005 -0.329262 0.564464 0.948476 0.244212 0.778198 -0.614243 -0.634601 -1.487977 -0.076094 -0.733727 -0.179388 -0.194417 0.908808 -0.867901 0.272379 0.895407 0.055913 0.635832 -0.436672 -0.158386 -0.752945 0.212989 0.000000 1.585554 -0.014738 0.182958 -0.145279 0.383027 0.379181 0.748854 0.352515 -0.591525 -0.764992 -1.722510 -0.655312 -0.392981 -0.096196 -0.117582 -1.131825 -0.207080 0.642789 0.656721 -1.181699 0.031746 0.651379 0.422041 0.728258 -0.442603 -0.346159 0.130859 0.007723 -0.059485 0.104682 -0.606892 -0.281827 -0.410116 0.342473 0.139343 0.195320 -0.308345 -0.589811 -0.253022 -0.112556 0.263365 -0.067184 -0.172354 0.029973 -1.141852 0.440110 -0.578951 0.597118 -1.023673 -0.171348 -0.305956 -0.642148 -0.130851 1.551747 -0.087157 0.744605 0.048341 -0.707896 -0.526924 -0.773913 -1.646685 0.313517 -0.182356 0.385657 0.170607 -0.065714 -0.013092 -0.200780 -0.409408 0.178955 -0.513517 -0.035011 -0.173898 0.351211 -0.430597 -0.073117 -0.852079 -0.022467 0.882412 0.246421 0.264135 -0.413855 -1.064921 -0.748351 -0.814890 0.622472 -0.212013 0.156386 -0.234505 -0.078793 -1.007239 0.465288 -0.600744 0.418491 -0.230114 -0.785834 -0.880678 0.094170 -0.311617 0.168416 0.083821 -0.675694 0.057040 -0.365049 0.325315 0.141792 0.074517 0.101641 -1.481813 -1.199628 -0.238844 0.022634 1.084565 -0.015655 0.233046 -0.291356 -0.266395 -0.799784 0.733845 -1.164202 -0.014024 0.069635 -0.389782 1.040758 -0.325913 -0.380819 -1.024748 0.456535 0.240752 -0.142389 1.510326 0.776321 -0.654192 -0.399237 -0.271534 0.052205 0.669420 1.219931 -0.667635 -0.460090 0.423453 -0.093520 -0.170427 -0.446736 0.635406 -0.374905 0.786060 -0.825125 -0.623718 0.022574 0.951742 -0.147597 0.272860 0.188688 0.073754 -0.450124 1.005870 0.333026 0.176412 -0.730926 -1.357772 0.448152 0.101308 0.052847 0.234530 -0.830568 -0.509667 0.249566 0.473972 0.971193 0.841308 0.262750 0.711115 -1.049172 -0.884439 0.073561 -0.123182 0.191184 -0.521437 0.480499 -0.515748 0.037455 -0.016665 0.104536 -0.084330 -0.271861 -0.387236 -0.091482 0.497037 0.345289 -0.271391 0.912493 0.154657 -0.528221 0.107386 -0.010950 0.298391 0.111769 -0.105486 -0.218261 -0.432451 0.138349 -0.309873 0.909348 -0.210655 0.015505 0.251787 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 2.597156 0.495858 0.265530 2.709416 0.876244 -2.437504 0.788834 2.557838 -0.727672 -5.733721 -4.340245 0.612821 0.029886 -1.357916 1.703533 0.520859 0.061845 1.272526 -7.519664 2.295932 2.654230 1.733941 0.036849 -1.881712 1.065649 -1.189906 -2.161361 1.116116 0.272460 3.426620 -2.317610 0.537817 2.575520 0.427225 1.550500 2.903982 -0.699282 0.062384 2.050626 0.460888 5.186404 2.599849 -0.282659 2.045248 2.336196 3.329926 -1.405771 3.007332 -1.681621 -2.060084 1.821414 -1.607066 -2.263088 0.348473 -2.251092 2.301522 5.150040 2.319099 -1.967541 2.082824 -1.199080 0.084166 1.024666 -1.769951 3.646752 3.020668 1.224965 1.658911 5.291318 -1.252727 -0.330970 1.216610 2.476849 -0.699966 0.780070 -2.272563 -1.871924 -4.324290 -0.345706 -6.773167 -0.737394 -0.520100 5.923330 -3.381154 1.500051 2.434192 0.851597 2.975912 -1.809941 -1.042336 -2.224805 0.717133 -2.165144 5.683141 -0.409732 1.056251 -0.420117 1.510364 1.631530 2.529807 -1.008559 -1.579339 -3.790058 -7.619099 -1.863508 -0.729464 0.510480 0.294865 -4.792082 -0.882481 1.745444 2.920241 -5.305085 -0.376179 2.446122 1.907668 -1.015035 0.001625 -3.832532 -0.378853 -0.902529 0.584823 0.878649 -1.865737 -0.744913 -2.982299 -0.281316 0.398484 1.251640 -0.815754 -3.185336 -1.521558 -0.780272 -1.095556 -0.467169 0.404272 0.800221 -2.265483 1.999922 -2.712942 2.468905 -5.070547 0.110167 -2.122487 -3.357281 -0.262283 2.835321 2.331214 1.003912 0.045315 -1.124392 -1.784653 -4.113871 -4.429379 1.286441 -0.816501 2.997679 -0.404061 -0.161895 -0.157374 -1.201276 -1.091508 0.572521 -1.900866 0.095202 -1.969038 6.098339 -0.953090 -0.912249 -3.099069 -0.518291 2.527362 -1.276910 0.660865 -1.438677 -1.302079 -4.304420 -3.163758 2.777423 -0.696611 0.534925 -2.042282 1.270077 -3.356097 1.397722 -2.635673 0.652292 -0.427433 -2.309289 -3.424671 -0.497205 -0.565580 -0.505043 -0.552460 -2.187523 -0.335674 3.103221 2.255929 0.951302 0.556069 0.411496 -4.141052 -3.971904 -0.710543 -0.345048 2.554671 2.521310 0.247973 -2.639829 -0.609708 -3.523953 3.420942 -1.436078 0.009299 -1.209257 -1.050789 4.429478 -1.573595 -1.145767 -3.832399 0.727747 0.249800 -4.840405 4.678705 1.832298 -2.292346 -1.217055 -2.696458 0.892819 2.349720 4.109003 -1.685310 -1.250880 0.803954 -1.858660 -0.495048 -2.127145 2.835247 -2.179937 2.767363 -2.688560 -1.628172 1.899322 2.916263 -0.414899 2.394890 0.541752 1.031647 1.449371 3.122643 1.684321 -1.473325 -2.848202 -6.128755 1.430377 1.020024 0.546954 -0.606210 -1.273552 -3.389354 0.034768 1.580777 3.949950 3.970608 0.270951 2.592468 -3.071966 -3.525178 -0.691572 1.410724 0.674282 -2.205701 -0.201838 -1.526341 0.614358 1.531155 0.854690 2.052430 -3.447718 -4.218514 -0.687189 3.353544 1.106353 -1.157509 3.712960 0.985638 -1.973025 0.035524 -0.090833 1.406976 -0.243920 -0.780202 -1.560202 -1.932995 0.265013 -1.538184 3.628856 -0.255304 0.560743 1.823891 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = 0.169887 -0.008338 -0.063021 0.360416 0.141864 -0.267359 0.101736 0.061731 -0.111983 -0.544832 -0.213626 0.185467 0.016449 -0.174056 0.070628 0.119502 -0.013022 0.220706 -0.216842 0.219861 0.121511 0.086453 -0.133286 -0.190376 0.008808 -0.168392 -0.032841 0.186784 0.007351 0.342802 -0.209900 0.038842 0.257796 0.053674 0.109511 0.313708 0.281516 0.015252 -0.002840 0.101054 0.528744 0.107032 -0.020943 0.171094 0.218913 0.359740 0.001509 0.297213 -0.199413 -0.147010 0.096924 -0.002802 -0.148523 -0.079655 -0.338727 0.244647 0.292705 0.198187 -0.226860 0.214792 -0.194020 0.016112 0.128679 -0.015622 0.382768 0.232528 0.113904 0.241499 0.598199 -0.213145 -0.102122 0.227936 0.320882 -0.027788 0.307113 0.044213 -0.261000 -0.413761 -0.108515 -0.343202 -0.057460 0.030531 0.616765 -0.347370 -0.011855 0.335928 0.161155 0.311737 -0.237356 -0.059309 -0.313001 0.076745 -0.135482 0.602296 0.138644 0.119936 -0.206720 0.147604 0.159895 0.270450 -0.053206 -0.238181 -0.312321 -0.730499 -0.341914 -0.160301 -0.100402 -0.080625 -0.535532 -0.153610 0.394339 0.578424 -0.553883 0.019419 0.269190 0.142515 0.240858 -0.141027 -0.302962 0.142028 0.011596 -0.040046 0.069146 -0.114497 -0.100231 -0.133997 0.121764 -0.059283 0.097041 -0.087483 -0.412857 -0.100257 -0.012937 -0.066118 0.014506 -0.033863 0.034204 -0.398147 0.163101 -0.237875 0.253862 -0.458834 0.013306 -0.146536 -0.471759 -0.033785 0.481764 0.183301 0.340787 -0.051726 -0.240303 -0.211774 -0.425906 -0.748691 0.155158 -0.106951 0.122624 0.012167 -0.031676 -0.045440 -0.131636 -0.087873 0.305941 -0.248659 -0.018034 -0.052929 0.443411 -0.126216 -0.094628 -0.395775 -0.103109 0.254851 0.180489 0.119664 -0.181940 -0.352559 -0.395248 -0.326517 0.259529 -0.083932 0.036277 -0.155021 -0.083914 -0.407825 0.180156 -0.221063 0.176979 -0.064949 -0.222986 -0.379959 0.000772 -0.073328 -0.220720 -0.042066 -0.270753 0.035679 0.053569 -0.175655 0.060616 0.013780 0.015031 -0.376808 -0.416037 0.004007 0.005251 0.279572 0.288237 0.169912 -0.260952 -0.099019 -0.441282 0.326605 -0.424500 0.020134 0.081977 -0.159829 0.453323 -0.239443 -0.223107 -0.268142 0.189698 0.006235 -0.303832 0.538306 0.369580 -0.289474 -0.156778 -0.101982 0.056330 0.269123 0.528355 -0.300211 -0.082293 0.169322 -0.018875 -0.075096 -0.076492 0.251429 -0.206187 0.312992 -0.321779 -0.213753 0.079164 0.418647 -0.074231 0.082420 -0.024591 -0.017862 -0.058857 0.337035 0.198869 0.015799 -0.281637 -0.472141 0.152979 -0.346320 -0.047770 0.117619 -0.185265 -0.181427 0.099410 -0.069537 0.426921 0.014064 -0.119043 0.299995 -0.427487 -0.393315 0.005132 -0.007492 0.075787 -0.285779 0.327482 -0.206863 0.000000 0.015594 0.081150 -0.040381 -0.186972 -0.134005 -0.032661 0.249617 0.146751 -0.146513 0.398231 0.047887 -0.181237 -0.014858 -0.014491 0.139173 0.051079 -0.293704 -0.151885 -0.192437 0.113177 -0.148830 0.422426 -0.115569 0.008317 0.247122 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = 7.731633 4.027917 -3.674675 12.370361 -0.379005 -5.891712 0.288626 7.523580 -4.958079 -20.761445 -15.112029 9.710131 1.170833 0.886585 6.519564 4.696065 -0.828587 1.803448 -27.358728 7.425669 8.432370 3.952289 1.389733 -4.846943 4.051911 -2.788554 0.517540 2.810131 2.924780 12.621959 -8.064442 5.131844 9.830234 0.476341 7.709336 6.814248 -3.308811 1.776873 -1.794915 -0.861420 17.225524 9.818322 -1.305125 7.281622 4.197653 12.675698 -0.726387 7.557799 -0.947072 -8.160902 5.167575 0.684669 -8.040943 0.639331 -6.765800 6.176353 11.840092 6.803869 -6.506172 5.703132 -2.441283 -1.129493 2.847566 -5.213723 14.146203 6.187451 9.245974 7.391958 13.648573 -6.083385 -1.249937 3.797936 6.399013 -1.536778 4.093160 -10.417323 -9.865639 -10.336000 -0.915621 -24.766011 -7.501405 -0.540411 20.457818 -13.451283 3.676891 4.130501 -1.116006 10.941794 -7.231737 -0.495965 -8.633071 -1.967407 -5.584157 16.918079 1.183750 0.271282 1.655082 5.770016 6.764343 9.184702 -1.073580 -7.230574 -7.841538 -18.591361 -3.893098 -0.421831 5.821152 5.854122 -12.889985 -3.612443 0.616865 12.937323 -18.311019 -1.934791 9.906835 6.535535 2.514163 -0.500198 -10.568170 1.828676 0.170500 2.823094 9.331065 -7.841875 -0.123221 -2.988704 -0.141287 0.510757 6.424579 1.060916 -12.445425 -9.246986 -1.048370 -2.983957 -1.304868 0.096574 3.784215 -5.609773 9.268076 -6.237025 10.189133 -16.428401 -0.016690 -4.740910 -8.509520 -2.156067 8.580397 10.929494 5.517229 -2.032749 -4.039326 -3.207383 -14.506336 -13.790754 6.293334 2.181836 6.362380 2.628005 -1.036281 5.536304 -5.423339 -0.141432 4.192637 -6.205889 -2.772006 -4.286082 13.346596 -0.411135 -2.924766 -9.431147 -2.114048 1.333621 -1.926862 7.051130 -3.205614 -14.081532 -16.621992 -9.485521 11.011102 -3.467220 1.848661 -6.129119 2.837430 -10.197985 1.398060 -13.082029 3.293854 0.832776 -8.635855 -11.680450 -0.000490 -1.821195 -1.559208 -0.753897 -7.143735 -2.667569 10.479002 7.019953 3.196542 1.909472 2.876526 -12.879944 -11.464663 0.989879 -6.098755 9.652966 4.638851 -1.023162 -13.647088 -2.330693 -11.506298 11.034570 -4.024745 1.667624 -7.708406 -2.165582 13.880769 -5.844505 -1.833853 -10.339624 3.375249 4.923674 -21.658570 12.924211 8.874408 -4.077307 -1.468372 -1.915265 2.732543 8.845154 11.488394 -6.756636 -7.862312 0.429174 -4.871503 0.114232 -4.712452 10.203617 -8.853820 3.503613 -8.005644 -4.549145 7.070025 6.553710 2.186366 8.036778 4.108955 1.267843 3.587529 10.189144 7.460091 -4.010612 -9.071885 -22.232856 6.104648 6.217114 -0.506820 -0.890693 -4.136225 -10.413419 0.461268 -0.872078 11.882720 6.564486 -4.060598 9.432374 -12.062846 -12.026442 -6.737293 2.870057 -0.120345 -3.531573 -0.228072 -3.904324 4.091384 6.836422 -0.925507 3.768444 -7.890545 -7.264144 -2.306341 10.638980 3.981689 1.358609 12.952509 4.530343 -8.520173 -1.118943 0.917238 0.158495 -1.393080 -10.212763 -6.202402 -4.046651 2.127680 -5.247497 4.001063 -1.146788 -0.704438 3.401514 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = 0.169887 -0.008338 -0.063021 0.360416 0.141864 -0.267359 0.101736 0.061731 -0.111983 -0.544832 -0.213626 0.185467 0.016449 -0.174056 0.070628 0.119502 -0.013022 0.220706 -0.216842 0.219861 0.121511 0.086453 -0.133286 -0.190376 0.008808 -0.168392 -0.032841 0.186784 0.007351 0.342802 -0.209900 0.038842 0.257796 0.053674 0.109511 0.313708 0.281516 0.015252 -0.002840 0.101054 0.528744 0.107032 -0.020943 0.171094 0.218913 0.359740 0.001509 0.297213 -0.199413 -0.147010 0.096924 -0.002802 -0.148523 -0.079655 -0.338727 0.244647 0.292705 0.198187 -0.226860 0.214792 -0.194020 0.016112 0.128679 -0.015622 0.382768 0.232528 0.113904 0.241499 0.598199 -0.213145 -0.102122 0.227936 0.320882 -0.027788 0.307113 0.044213 -0.261000 -0.413761 -0.108515 -0.343202 -0.057460 0.030531 0.616765 -0.347370 -0.011855 0.335928 0.161155 0.311737 -0.237356 -0.059309 -0.313001 0.076745 -0.135482 0.602296 0.138644 0.119936 -0.206720 0.147604 0.159895 0.270450 -0.053206 -0.238181 -0.312321 -0.730499 -0.341914 -0.160301 -0.100402 -0.080625 -0.535532 -0.153610 0.394339 0.578424 -0.553883 0.019419 0.269190 0.142515 0.240858 -0.141027 -0.302962 0.142028 0.011596 -0.040046 0.069146 -0.114497 -0.100231 -0.133997 0.121764 -0.059283 0.097041 -0.087483 -0.412857 -0.100257 -0.012937 -0.066118 0.014506 -0.033863 0.034204 -0.398147 0.163101 -0.237875 0.253862 -0.458834 0.013306 -0.146536 -0.471759 -0.033785 0.481764 0.183301 0.340787 -0.051726 -0.240303 -0.211774 -0.425906 -0.748691 0.155158 -0.106951 0.122624 0.012167 -0.031676 -0.045440 -0.131636 -0.087873 0.305941 -0.248659 -0.018034 -0.052929 0.443411 -0.126216 -0.094628 -0.395775 -0.103109 0.254851 0.180489 0.119664 -0.181940 -0.352559 -0.395248 -0.326517 0.259529 -0.083932 0.036277 -0.155021 -0.083914 -0.407825 0.180156 -0.221063 0.176979 -0.064949 -0.222986 -0.379959 0.000772 -0.073328 -0.220720 -0.042066 -0.270753 0.035679 0.053569 -0.175655 0.060616 0.013780 0.015031 -0.376808 -0.416037 0.004007 0.005251 0.279572 0.288237 0.169912 -0.260952 -0.099019 -0.441282 0.326605 -0.424500 0.020134 0.081977 -0.159829 0.453323 -0.239443 -0.223107 -0.268142 0.189698 0.006235 -0.303832 0.538306 0.369580 -0.289474 -0.156778 -0.101982 0.056330 0.269123 0.528355 -0.300211 -0.082293 0.169322 -0.018875 -0.075096 -0.076492 0.251429 -0.206187 0.312992 -0.321779 -0.213753 0.079164 0.418647 -0.074231 0.082420 -0.024591 -0.017862 -0.058857 0.337035 0.198869 0.015799 -0.281637 -0.472141 0.152979 -0.346320 -0.047770 0.117619 -0.185265 -0.181427 0.099410 -0.069537 0.426921 0.014064 -0.119043 0.299995 -0.427487 -0.393315 0.005132 -0.007492 0.075787 -0.285779 0.327482 -0.206863 0.000000 0.015594 0.081150 -0.040381 -0.186972 -0.134005 -0.032661 0.249617 0.146751 -0.146513 0.398231 0.047887 -0.181237 -0.014858 -0.014491 0.139173 0.051079 -0.293704 -0.151885 -0.192437 0.113177 -0.148830 0.422426 -0.115569 0.008317 0.247122 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 1.926606 2.685350 -0.386892 1.270711 0.664326 -1.829391 0.357575 3.197792 -2.997902 -1.618387 -2.470772 1.486092 -0.621985 -0.505192 3.132956 0.196459 -0.231935 -0.151830 -3.605579 1.405604 -0.226820 -0.002677 -0.231159 -1.834048 0.725472 2.157205 -2.646296 1.990545 0.310621 1.489885 -1.094463 -0.776626 0.419316 1.324970 1.727935 -0.961698 2.544008 1.432689 -0.503859 0.719404 3.142225 1.194134 -0.796735 2.353488 2.445430 1.792606 -1.473674 3.168424 -1.246798 0.664392 2.997611 -3.308530 -1.186273 0.896839 -0.608342 0.673375 3.662212 1.360411 -1.267169 2.376013 0.120032 -0.726950 -0.306211 -3.211354 1.788620 2.691248 0.825474 -0.261077 2.586068 -0.832574 -1.842224 0.066639 3.084134 -0.288650 -4.305105 -3.858718 0.163491 -6.147693 1.012872 -5.196997 -2.240300 -1.379227 4.120686 -2.058674 1.230569 2.754955 -2.389787 -0.634178 -2.539145 0.007705 -0.804583 -1.635801 -0.445510 3.083812 0.229870 -0.310152 1.864182 0.074719 3.358513 2.901423 -0.767886 0.530450 -3.825683 -1.785545 -1.282884 4.480620 -0.007691 -0.901619 0.718311 -2.460544 2.060384 -0.369945 -1.617511 -2.546626 2.974796 0.940588 -0.912840 3.561399 -3.952505 1.111196 0.803795 0.360112 2.820471 -1.639213 -0.656786 -1.260249 -1.359952 -0.503533 1.773965 -0.115270 -1.597786 -1.471808 -0.561922 -1.344130 -0.717289 -4.440363 -3.564529 -1.060246 1.850091 0.160841 1.610397 -3.004801 -1.011848 0.666332 -1.571005 1.024815 2.822697 1.383933 1.710270 2.327943 -0.986463 -0.786141 -0.088628 -1.662264 3.054743 0.775325 2.443000 -1.037277 0.065093 0.333324 -0.024056 -2.186346 1.045161 -0.868683 -0.963284 -1.982771 3.103515 -0.707873 -0.543381 -3.060247 1.287038 2.416637 0.112857 -1.082585 -0.761035 -3.284037 0.992346 -1.350507 1.388481 0.375106 0.376770 0.985847 2.697075 -3.686401 -0.334176 -2.481522 1.910734 1.272598 -3.077070 -0.486064 0.994102 -0.182924 1.027058 -0.159618 0.507025 -1.015040 0.698775 3.909712 -0.423549 1.149692 1.167344 -2.654444 -4.538173 -2.022178 0.653759 1.766525 -1.516780 1.793645 -2.628912 1.179146 -2.036551 2.727345 -1.057607 -1.460766 -2.763462 0.813553 3.302549 0.559419 -2.122823 -1.950615 0.832052 2.036020 -3.377694 0.288793 1.087351 0.020575 -2.186776 -1.255101 -0.636112 2.720922 4.330803 -0.614368 -1.649297 0.584077 0.606095 -0.191456 -1.504453 2.715868 -0.507307 1.293055 -1.659287 -1.344694 0.378404 2.128851 1.121955 3.047049 0.480076 2.728255 -1.530469 2.661419 -0.606829 -2.140945 1.445216 -3.066732 -0.279904 5.925489 -0.202219 0.882743 -1.702145 -2.297982 -1.151488 -0.370551 1.456317 1.757440 -0.122964 1.127921 0.910683 -1.336018 -0.224878 2.684864 0.077536 -2.591149 0.057426 -0.222305 0.755168 2.800790 -1.277501 3.225714 -0.367208 -4.005888 -3.965444 0.207076 -0.484042 0.415482 2.137977 0.115314 -2.238972 0.641866 -0.428913 2.306960 2.199600 -2.006382 -0.998147 -2.721750 -0.284630 0.277221 0.278055 0.810926 -1.285447 1.655199 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 2.074297 0.153914 0.112729 1.533266 0.653734 -2.304730 0.507145 1.801522 -0.787016 -2.752329 -1.848081 1.176496 -0.161221 -1.454543 0.784517 0.293641 -0.156571 0.440830 -3.974807 1.964340 0.746150 0.674303 -0.913666 -1.704069 0.484805 -0.203591 -0.978858 1.205302 -0.223431 1.636355 -1.533924 -0.154170 0.966616 0.571397 1.336633 1.324485 0.060427 -0.243318 1.065374 0.256525 3.055615 1.710117 -0.536456 1.210231 2.000342 1.721079 -0.588190 1.981502 -1.217897 -0.473559 0.904303 -0.591845 -1.510453 0.211263 -1.612526 1.208423 2.789336 0.975313 -1.121427 1.295153 -1.092741 0.020929 0.750615 -0.424910 2.613439 1.702683 0.777155 0.871132 3.489385 -0.676765 -0.344578 0.889238 2.661824 -0.295904 0.257069 -0.980605 -1.255765 -3.179500 0.065266 -3.907172 -0.294200 -0.358442 3.483512 -1.702366 0.981995 1.469900 0.716798 1.445481 -1.890022 -0.480780 -1.309094 0.476883 -1.354291 3.916106 -0.575774 0.974354 -0.231921 0.933663 1.154973 1.756565 -0.822506 -0.946684 -1.853148 -4.442384 -1.084088 0.182784 -0.871108 -0.827637 -2.654981 -0.554583 1.858564 2.244355 -2.639444 -0.691020 1.281955 0.356955 0.104636 0.291629 -2.089131 0.193816 -0.807391 0.497086 0.465835 -0.816469 -0.582080 -1.503965 0.119800 0.433514 1.007970 -0.140151 -2.687576 -0.346385 0.099265 -0.780222 -0.499191 -0.388819 -0.484755 -1.755006 0.786116 -1.530577 1.453707 -2.903757 0.006508 -1.484059 -1.926977 0.538177 1.661781 1.534067 0.692224 0.652733 -0.176781 -0.849855 -2.203350 -3.136961 1.097082 -0.676252 1.180759 -1.087218 0.171550 -0.578318 -0.364978 -1.372882 0.939917 -1.603337 -0.236683 -1.739860 3.691444 -0.477815 -0.519886 -1.579800 -0.080486 2.126550 0.100536 0.108837 -1.056672 -1.986232 -2.172092 -1.833480 1.374333 -0.087195 -0.122834 -0.751399 0.723313 -2.044563 1.113892 -1.178167 1.178873 -0.436714 -1.254187 -1.754974 -0.452745 -0.251137 -0.254539 -0.992935 -0.944441 -0.030732 1.063224 0.974125 0.057596 0.665440 0.478662 -2.518841 -2.856412 -0.382426 0.975437 2.048260 1.338558 0.733845 -1.580029 -0.170882 -2.378132 2.314269 -1.817605 -0.126463 -0.334838 -0.946572 2.995902 -0.874722 -1.171924 -1.837518 0.910523 -0.020544 -2.115943 3.372516 1.678591 -1.794072 -1.170815 -1.957391 0.594147 1.642471 3.365234 -1.286404 -0.488219 0.708377 -0.295030 -0.710512 -0.894312 1.827090 -0.997056 1.992875 -1.721337 -1.396085 0.668781 1.882711 -0.059959 0.912939 -0.677043 0.373349 -0.168237 2.237086 0.687698 -0.426741 -1.750822 -3.446761 0.500616 0.149189 0.240305 0.207359 -0.970672 -2.322624 -0.451646 0.485970 2.481586 1.559275 -0.344096 1.272952 -1.969526 -2.008646 -0.383021 1.100739 0.068306 -1.614687 0.927020 -1.144017 -0.121506 0.756185 0.739191 0.775447 -1.327088 -2.499095 -0.838287 1.252147 1.013743 -1.505981 2.044412 0.628525 -1.077427 -0.179737 0.006631 0.940441 0.179883 -0.662592 -0.957926 -1.727578 0.373973 -0.708548 2.655386 0.623413 0.673992 0.989172 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.585655 0.024872 0.221453 0.593421 0.398858 -0.720082 0.070010 0.466186 -0.383223 -0.772644 -0.473478 0.181595 -0.191657 -0.326547 0.410748 -0.058758 -0.007018 0.031771 -0.739429 0.574004 -0.036066 0.124963 -0.245385 -0.627969 0.194180 0.348015 -0.266974 0.350395 0.030368 0.405451 -0.656558 -0.103518 0.075843 0.362260 0.488001 -0.005515 0.393368 -0.056096 0.008440 -0.129713 0.961636 0.226901 -0.127791 0.544570 0.668675 0.368950 -0.199476 0.750696 -0.287745 0.101308 0.446729 -0.586861 -0.224790 0.187856 -0.556964 0.531416 0.971009 0.345336 -0.274278 0.274353 -0.206141 0.140138 0.155202 -0.286635 0.766486 0.621650 0.131641 0.266325 0.981581 -0.332722 -0.212045 0.241291 1.171658 0.050252 -0.346628 -0.393630 -0.085711 -1.300871 -0.083742 -0.890736 0.112375 -0.251916 0.953776 -0.408385 0.377822 0.550020 -0.115199 0.161602 -0.655520 0.131387 -0.420587 0.158030 -0.353649 0.905023 -0.264290 0.154275 -0.015976 0.144407 0.399826 0.665301 -0.227975 -0.072613 -0.496521 -1.279448 -0.512792 0.547399 -0.366936 -0.499727 -0.614598 -0.134266 0.690941 0.487301 -0.522033 -0.546657 0.195770 0.154781 -0.161251 0.155788 -0.638250 0.023415 -0.233959 0.222733 0.157610 -0.179093 -0.086716 -0.704770 -0.225651 0.121444 0.611969 0.038036 -0.485862 -0.155947 -0.161268 -0.150822 -0.297808 -0.533051 -0.470475 -0.471991 0.218432 -0.186094 0.387729 -0.743203 -0.143548 -0.526612 -0.555703 0.433934 0.867173 0.158473 0.397593 0.616219 -0.155032 -0.317867 -0.384769 -0.816618 0.476709 -0.034899 0.320433 -0.267651 0.125122 -0.056430 -0.045346 -0.789463 0.508368 -0.638297 -0.347905 -0.759826 0.692958 -0.354016 -0.162676 -0.717659 0.347917 0.990640 -0.178960 -0.074433 -0.348475 -0.464128 -0.446016 -0.570559 0.329777 -0.035121 0.010766 0.112820 0.508797 -0.793469 0.395063 -0.385823 0.515549 -0.010497 -0.657113 -0.480370 -0.142606 -0.097568 0.040761 -0.175504 -0.180243 0.130510 -0.002340 0.564827 -0.137215 0.447025 0.287590 -0.932093 -1.250128 -0.431889 0.575609 0.575689 0.098340 0.345719 -0.507622 -0.214417 -0.609798 0.790800 -0.729863 -0.126804 -0.096627 -0.011688 0.752235 -0.263443 -0.440883 -0.538743 0.299199 0.253725 -0.611736 0.857494 0.376364 -0.582194 -0.526690 -0.985747 0.304502 0.403834 1.431062 -0.433823 0.010894 0.297576 0.257794 -0.321197 -0.562769 0.637783 -0.092576 0.453626 -0.559037 -0.657476 -0.085612 0.536544 0.122454 0.210662 -0.051048 0.297370 -0.389484 0.937325 0.192301 -0.112925 -0.361791 -0.814776 0.032130 0.517560 0.201992 0.294576 -0.582108 -0.751596 -0.278958 0.245996 0.706187 0.498652 0.197127 0.421951 -0.405680 -0.374543 0.136348 0.422781 -0.029673 -0.783392 0.366747 -0.487703 -0.223079 0.316287 0.126257 0.186055 -0.041211 -1.010320 -0.599634 0.267295 0.202659 -0.249332 0.524180 0.395218 -0.538586 0.127652 0.123385 0.382330 0.060870 -0.277185 -0.267041 -0.548241 -0.048598 -0.177824 0.737336 0.264232 -0.009514 0.146945 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = 0.627096 -0.218758 0.164316 0.454208 0.494681 -0.521736 0.238052 0.339928 0.058727 -0.962995 -0.486580 0.401034 -0.091021 -0.480730 0.155819 0.114236 0.196261 0.368680 -0.510067 0.471098 0.121704 0.278822 -0.225440 -0.395233 0.107821 -0.229571 -0.216305 0.299632 0.039943 0.523125 -0.435155 -0.128318 0.405917 0.099011 0.199200 0.611099 0.525797 -0.098195 0.241637 0.032846 1.128785 0.157060 0.176781 0.655918 0.651510 0.587635 -0.220903 1.198657 0.195869 -0.183783 0.543694 -0.516757 -0.396809 -0.019637 -0.747147 0.609237 0.733769 0.206262 -0.502187 0.430737 -0.060245 0.086257 0.199256 -0.261367 0.564466 0.706199 -0.003478 0.295770 1.294592 -0.308488 -0.270738 0.506421 0.922266 0.297246 0.429524 -0.443705 -0.237024 -0.781649 -0.145782 -0.463659 0.173176 -0.370926 1.244642 -0.590652 0.162662 0.731537 0.157988 0.434196 -0.258100 -0.202124 -0.544512 0.325464 -0.134200 0.991588 -0.119161 0.339295 -0.345233 0.068947 0.139641 0.562026 -0.056015 -0.350421 -0.806487 -1.439087 -0.650780 -0.217696 -0.237751 -0.368457 -0.995386 -0.109707 0.451461 0.621809 -0.906548 -0.170211 0.443761 0.173851 0.239973 0.256628 -0.560125 -0.163755 0.038841 0.075520 -0.230000 -0.239534 -0.327257 -0.678975 0.015969 0.006951 0.205323 -0.368264 -0.535388 -0.159965 -0.212446 0.142887 -0.067765 -0.219505 -0.078239 -0.871525 0.268074 -0.330869 0.322487 -0.866874 -0.384970 -0.444218 -0.702367 -0.043642 1.367399 0.008197 0.892121 0.242175 -0.333294 -0.625881 -0.622331 -1.047899 0.233826 -0.571439 0.436609 0.016206 0.054217 -0.254585 -0.114490 -0.511533 0.145392 -0.460159 0.025038 -0.371822 0.669512 -0.512241 -0.075002 -0.869413 -0.022228 0.848224 0.064897 -0.093330 -0.335457 -0.725077 -0.461079 -0.671338 0.404046 -0.133958 0.235531 -0.163254 0.104583 -0.596204 0.235049 -0.349174 0.213961 -0.193314 -0.624520 -0.639503 0.045182 -0.208235 -0.071447 -0.047229 -0.462512 0.171087 0.016559 0.434441 0.071315 0.189598 -0.152724 -1.156630 -1.037184 -0.354068 0.245911 0.691968 0.406987 0.330901 -0.344804 -0.222440 -0.752553 0.558686 -1.154895 -0.092146 0.256208 -0.233111 0.819658 -0.344943 -0.239220 -0.840733 0.315838 -0.004198 -0.860184 0.935117 0.451326 -0.695906 -0.475868 -0.636843 0.125267 0.472851 1.135150 -0.363133 -0.093216 0.449075 -0.041462 -0.212051 -0.486689 0.521446 -0.195625 0.840528 -0.738203 -0.551652 0.142621 0.839844 -0.254538 0.088810 0.038264 0.270082 -0.043143 0.814185 0.244148 0.029006 -0.569667 -1.297423 0.161289 0.287784 0.076093 0.395877 -0.612854 -0.464130 0.138339 0.103855 0.834659 0.224637 0.490106 0.512826 -0.607222 -0.687061 0.307494 0.052134 0.249177 -0.557164 0.464514 -0.471840 -0.163467 -0.049427 0.243052 0.050085 -0.340857 -0.623900 -0.108077 0.514945 0.332507 -0.237650 0.676648 0.148343 -0.334168 0.177852 -0.066387 0.533339 0.076504 -0.301834 -0.172980 -0.483612 -0.002378 -0.250772 1.043110 -0.095296 0.184986 0.269041 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.392683 0.096793 0.242136 0.124632 0.276006 -0.378382 0.150170 0.401234 -0.125534 -0.690190 -0.539684 -0.212767 -0.101853 -0.373213 0.313666 0.090202 0.155853 0.348295 -0.663477 0.338626 0.297772 0.294764 0.002472 -0.276327 0.162573 -0.121594 -0.769538 0.077413 0.014185 0.389627 -0.405945 -0.039368 0.277724 0.131019 0.151962 0.364932 0.113386 -0.146076 0.592077 0.119782 0.787381 0.084592 0.128109 0.317053 0.504124 0.376533 -0.461166 0.577429 -0.223444 -0.156455 0.416794 -0.805157 -0.253857 0.262165 -0.401294 0.415766 0.652765 0.335488 -0.310251 0.342961 -0.148199 0.137265 0.107113 -0.530148 0.428710 0.579730 -0.101102 0.145100 0.838089 -0.049749 -0.050812 0.140259 0.482771 -0.025386 -0.124396 -0.249234 0.263436 -1.072194 -0.092633 -0.759951 0.228250 -0.208705 1.009647 -0.415137 0.306649 0.664868 0.094069 0.316375 -0.156588 -0.195474 -0.324727 0.261111 -0.162962 0.472388 -0.164426 0.151751 -0.235946 0.089694 0.108863 0.282620 -0.222464 -0.059947 -0.950167 -1.137542 -0.497316 0.015371 -0.128770 -0.270096 -0.751256 -0.040690 0.665241 0.364195 -0.683658 -0.083420 0.248024 0.206664 -0.563105 0.342302 -0.698886 -0.268400 -0.217561 0.218580 -0.214097 -0.163916 -0.185574 -0.850575 -0.186252 0.042987 0.244037 -0.328488 -0.243871 -0.133518 -0.197247 -0.148229 -0.160507 -0.040341 -0.027540 -0.365398 0.228524 -0.318446 0.205664 -0.634099 -0.106846 -0.394701 -0.506764 0.031054 0.902936 0.249773 0.184713 0.355135 -0.220240 -0.413896 -0.443943 -0.392112 0.148671 -0.438041 0.613923 -0.095279 0.042906 -0.263578 0.010185 -0.387907 -0.119698 -0.354821 0.068086 -0.446806 0.817817 -0.356819 -0.140018 -0.729338 0.032709 0.856937 -0.382541 -0.312994 -0.279866 0.325469 -0.305132 -0.503561 0.285289 -0.066774 0.276101 -0.175955 0.397122 -0.421473 0.282138 -0.237896 0.014369 -0.103495 -0.409856 -0.424545 -0.055047 -0.108557 -0.202014 -0.112875 -0.215430 0.126380 0.254145 0.413926 0.068035 0.087241 -0.081981 -0.698346 -0.779372 -0.414274 0.156204 0.230759 0.476951 0.173315 -0.409340 -0.098079 -0.443078 0.552648 -0.461119 -0.107749 0.009092 -0.150221 0.564722 -0.198167 -0.183060 -0.599094 0.132814 -0.098280 -0.922631 0.518875 0.141372 -0.521343 -0.318675 -0.866126 0.234736 0.310220 0.787255 -0.027128 0.175667 0.219195 -0.171295 -0.137852 -0.502279 0.438563 -0.180369 0.612861 -0.469146 -0.303471 0.248766 0.563341 -0.172222 0.297393 0.089782 0.476012 0.185118 0.481820 0.102626 -0.255327 -0.275723 -0.758401 0.031778 0.636845 0.262710 0.173072 -0.296816 -0.381222 -0.107835 0.245680 0.579573 0.571321 0.474648 0.312873 -0.197389 -0.436898 0.249516 0.331978 0.148895 -0.526566 0.123877 -0.247591 -0.146366 0.154972 0.299002 0.423076 -0.470414 -1.019154 -0.178830 0.489004 0.284848 -0.256693 0.450453 0.108829 -0.274097 0.171040 -0.067228 0.540439 0.045518 0.113778 -0.193752 -0.365242 -0.110701 -0.240692 0.811267 -0.059340 0.120921 0.261498 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 1.097823 0.051751 0.094173 1.009497 0.263941 -1.620288 0.533990 1.144180 -0.665592 -1.864350 -0.932163 0.490340 0.004483 -1.093399 0.282627 0.239937 -0.388125 0.398928 -3.050030 1.303321 0.829634 0.545115 -0.443839 -1.261030 0.231460 -0.633412 -0.416621 1.205759 -0.345909 1.223970 -0.812909 -0.187799 0.854222 0.387203 0.786531 1.353914 0.101106 -0.053895 0.777315 0.708801 1.947280 1.409340 -0.788331 0.252452 1.272310 1.365523 0.123394 0.359810 -1.437190 -0.529044 -0.014193 0.289331 -1.135315 -0.387392 -0.953725 0.493589 1.806910 1.067656 -0.794397 1.032626 -1.164568 -0.242555 0.592591 0.236245 1.789505 0.712368 0.727675 0.570315 2.449901 -0.536357 -0.286277 0.691714 1.322685 -0.620611 0.646840 -0.175672 -1.392887 -2.633669 0.136609 -3.045685 -0.748447 0.347965 1.842834 -1.120328 0.497652 1.088178 0.837062 1.192670 -1.359183 -0.652646 -0.916759 0.237273 -0.913426 3.341865 -0.049675 0.639764 -0.028693 0.981376 1.103892 1.226683 -0.352068 -0.868248 -1.108151 -3.091777 -0.487310 -0.430706 -0.551985 -0.388034 -1.830969 -0.626152 1.748207 1.807313 -2.014123 0.018962 1.216808 0.437656 0.419696 -0.993454 -1.140322 0.627021 -0.601548 0.000730 0.587387 -0.775514 -0.467660 -0.256232 0.694490 0.242891 0.274958 -0.168313 -2.149412 -0.168651 0.407839 -0.789661 -0.093709 0.030059 -0.180476 -1.280590 0.459275 -1.587133 1.265631 -1.966191 0.763971 -0.664154 -1.305449 0.160564 0.372163 1.188993 -0.240025 -0.183328 -0.293320 -0.238606 -1.557286 -2.739485 0.682918 -0.187643 0.675982 -0.880433 -0.105637 -0.476655 -0.328474 -0.496178 0.733718 -0.858367 0.127928 -0.687654 2.646083 0.088119 -0.389187 -0.659011 -0.350926 1.137610 0.724818 0.362327 -0.807110 -1.297074 -1.648236 -1.333050 1.005561 -0.006756 -0.515840 -0.886744 -0.096212 -1.523654 1.138723 -0.733996 1.002489 -0.392032 -0.522631 -1.244580 -0.268625 -0.210833 -0.329373 -0.726442 -0.711157 -0.325898 0.458515 -0.455062 0.183803 -0.027911 0.427247 -1.279378 -1.479848 0.217497 0.522891 1.299693 0.846010 0.570989 -0.996985 0.106327 -1.579872 1.537816 -0.549437 -0.015768 -0.268577 -1.091136 2.325807 -0.466046 -0.826010 -0.963640 0.680887 -0.172977 -0.320276 2.801571 1.555445 -1.081033 -0.752240 -0.490981 0.015816 1.299903 1.890538 -1.089586 -0.622661 0.408390 -0.403814 -0.392306 -0.020243 1.071524 -0.908266 1.483964 -1.121503 -0.832280 0.427883 1.481338 -0.151822 0.822906 -0.701010 -0.138294 -0.388832 1.262247 0.425778 -0.084476 -1.224753 -1.830938 0.577713 -1.221981 0.048130 -0.253406 -0.229987 -1.494653 -0.046399 0.558951 1.752932 1.466966 -1.225747 0.858682 -1.573482 -1.590863 -0.661528 0.517894 0.060740 -0.964429 0.655836 -0.615592 0.198303 0.391661 0.404488 0.503612 -1.044282 -1.057814 -0.357203 0.756160 0.798785 -1.462507 1.547572 0.079836 -0.505411 -0.459025 -0.006305 0.427761 0.395740 -0.076331 -0.724214 -1.177719 0.612072 -0.353754 1.770807 0.262660 0.455487 1.027939 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 1.373709 0.617027 0.459782 1.240464 0.135511 -2.427905 0.705814 2.033473 -1.284852 -2.212828 -1.331790 0.095868 -0.127841 -1.340687 0.634636 -0.101100 -0.724070 0.516374 -4.723842 1.745414 1.145362 0.899059 -0.426206 -2.166900 0.410596 -0.049226 -1.196128 1.637546 -0.395166 1.615911 -1.301305 -0.505591 0.832015 0.839174 1.262162 1.318631 0.114437 0.034444 1.129817 0.721488 2.358816 2.186638 -1.537006 0.266380 1.739763 1.623209 0.192695 -0.483426 -2.938945 -0.489194 -0.512881 -0.218054 -1.457493 -0.363360 -0.834291 0.564788 3.002902 2.062467 -0.831367 1.477063 -1.519827 -0.301901 0.786961 -0.044525 2.288026 0.943715 0.722733 0.642178 2.966836 -0.762116 -0.237050 0.352935 1.913096 -1.298067 -0.288165 -0.224924 -1.491946 -4.615066 0.314714 -5.178867 -1.084367 0.714789 2.128378 -1.414702 1.426876 1.550461 0.741670 1.118339 -2.176653 -0.852565 -1.011571 0.075771 -1.542919 4.454704 -0.259450 0.536640 0.506497 1.528815 1.945549 1.661701 -0.668821 -0.757619 -1.343496 -4.154066 -0.201583 0.270930 -1.007801 -0.606736 -1.719129 -1.145948 2.843529 2.214351 -2.415367 -0.370060 1.433190 0.599850 -0.725567 -1.761974 -1.603578 1.199588 -1.467193 -0.033261 1.206562 -1.339347 -0.479255 -0.091299 0.309052 0.490118 0.734192 0.265223 -2.715448 -0.265469 0.558004 -1.497330 -0.493960 -0.252769 -0.845660 -1.146036 0.553209 -2.335837 1.815817 -2.364097 1.563617 -0.690558 -1.594786 0.679374 -0.341080 1.501031 -1.414305 0.093796 -0.107504 0.011570 -1.580884 -3.263554 1.559171 0.520661 1.164624 -1.610062 -0.113857 -0.660823 -0.433151 -1.098641 1.091522 -1.221838 -0.082807 -1.247666 4.099660 0.241489 -0.682696 -0.712265 0.152394 2.037754 0.617219 0.169035 -1.342168 -0.616861 -1.996180 -1.621256 1.357108 0.170616 -1.002614 -0.830327 0.416936 -2.115345 1.815936 -1.027447 1.783631 -0.352753 -0.628767 -1.570637 -0.558282 -0.225032 -0.239528 -0.942888 -0.531411 -0.514738 0.628740 -0.375484 -0.162434 0.086602 1.385542 -1.385078 -2.099200 0.051605 1.107019 1.425603 0.784908 0.891050 -1.603573 0.333416 -1.708545 2.430827 0.195155 -0.068663 -1.051118 -1.113487 3.200883 -0.355940 -1.257563 -1.167311 0.895635 0.216554 0.039052 3.592345 1.851658 -1.241860 -1.047466 -1.117803 0.100274 1.764542 2.808205 -1.550768 -0.962330 0.548329 -0.715402 -0.599474 -0.421541 1.476822 -1.007413 1.749757 -1.257650 -1.011632 0.383494 1.557097 0.183329 1.657162 -0.842328 -0.002097 -0.916216 1.880248 0.430867 -0.375428 -1.464461 -1.548273 0.821895 -1.035363 0.614480 -0.754273 -0.066547 -2.329639 -0.430013 1.336846 2.072429 3.063611 -2.017563 1.059431 -1.806775 -1.803445 -0.950145 1.313533 0.083569 -1.636508 0.500516 -0.744972 0.403979 1.012303 0.466361 1.281575 -1.185397 -2.245731 -1.021728 0.835065 0.881330 -2.151892 2.021141 0.073132 -0.980664 -0.422107 0.009548 0.650819 0.382054 0.405591 -1.012623 -1.662845 0.870016 -0.479566 2.274651 0.698076 0.270360 1.450641 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 1.273200 0.685082 0.599349 0.880287 -0.001279 -2.884929 1.264812 2.429780 -1.284584 -2.118976 -0.927537 -1.163443 0.093334 -2.055965 0.409853 -0.038916 -1.205547 1.148819 -4.938938 1.795323 1.736531 1.426015 -0.348684 -2.709875 0.257631 -0.504965 -2.262653 1.990394 -0.757267 1.865958 -0.924151 -1.009440 1.116710 0.747038 0.655418 2.137680 0.584952 0.287406 2.178192 1.835994 2.218516 2.576332 -2.183794 -0.437845 1.873503 1.847199 0.218490 -1.164879 -5.212238 -0.677920 -0.975366 -0.431369 -1.686743 -0.914716 -0.476600 0.407444 3.951590 3.116859 -0.852024 2.080451 -2.166524 -0.491442 1.051996 0.387898 2.083830 1.291874 0.418068 0.587011 3.726346 -0.653680 -0.178435 0.233868 1.307807 -2.322436 0.165209 0.227212 -1.729010 -5.888601 0.509659 -5.836651 -1.376421 1.360447 2.013497 -1.608158 1.649975 2.432014 1.759273 1.338428 -2.357863 -1.550129 -0.796308 0.196945 -1.898727 6.065700 -0.159761 0.900503 0.190298 2.046319 2.453315 1.490285 -0.550759 -0.742956 -2.133093 -4.593727 -0.275731 -0.350836 -1.491575 -0.610787 -2.139652 -1.796824 4.197096 1.960598 -3.142601 0.417667 1.967630 1.060305 -0.333342 -2.596607 -1.920404 1.898078 -1.960773 -0.718189 0.899002 -1.729207 -0.863187 0.151479 0.754171 0.563960 -0.120719 -0.198160 -3.616059 0.291544 0.714228 -2.299539 -0.130385 0.281660 -0.863603 -1.793391 0.335322 -3.563658 2.022049 -2.863754 2.276433 -0.174811 -2.423891 0.517239 -1.111492 1.269129 -2.543859 -0.579229 -0.607301 -0.045330 -1.728405 -4.139521 1.432171 0.465905 1.608895 -2.150217 -0.362978 -1.543375 -0.457782 -0.801989 1.026310 -0.931649 0.601111 -0.836909 5.982538 0.378903 -0.853522 -0.498560 -0.277654 2.460733 1.438925 0.039882 -1.591184 0.661325 -2.156272 -1.758631 1.482648 0.432114 -1.410180 -1.472655 -0.024019 -2.876016 2.501141 -0.745489 2.273029 -0.452592 -0.110310 -1.743406 -0.400094 -0.172612 -0.526298 -1.122814 -0.545379 -0.829495 0.319234 -1.601692 -0.143524 -0.599346 1.580171 -1.230657 -2.042022 0.296108 1.279813 1.394359 1.043812 1.381193 -0.961531 0.883738 -1.889436 2.592668 1.014393 -0.201259 -1.059905 -1.361836 3.962801 -0.219018 -1.702624 -1.674181 0.897143 -0.402414 2.191573 4.580509 1.996396 -1.274439 -1.117814 -0.693538 -0.325193 2.094415 2.575373 -1.688923 -1.365909 0.796117 -1.283120 -0.653325 -0.159076 1.261748 -1.453360 2.656171 -1.196812 -0.630740 0.374703 2.289648 -0.372321 2.294040 -1.297720 -0.458437 -1.400428 1.560608 0.300853 -0.571225 -1.447739 -0.607087 0.979158 -3.125300 0.683073 -1.752492 0.462627 -2.221307 0.032926 2.545245 2.302666 4.707761 -2.775864 1.017263 -2.244653 -2.281752 -0.928888 1.646120 0.511402 -1.979076 0.119813 -0.517928 0.802316 1.155935 0.712699 1.962306 -2.135887 -2.355251 -0.985068 1.146265 0.637692 -3.400717 2.438022 -0.584203 -0.437029 -0.565434 -0.236637 1.063687 0.780976 1.747289 -0.923696 -1.912155 1.273679 -0.494921 3.263491 0.423835 0.129882 2.454630 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = 4.100718 0.585226 -3.830359 8.458103 -0.489150 -2.334299 0.125775 1.850542 -1.878114 -12.910745 -7.993541 7.066810 1.637287 1.133920 1.799808 3.638821 -0.722672 0.810531 -11.818679 3.644796 4.594444 1.326781 -0.361915 -1.119359 1.369788 -3.491943 3.199188 0.946813 1.697038 7.465945 -3.549677 4.039541 6.409813 -1.232415 2.844500 5.251618 -2.158761 1.049800 -2.397254 -1.050723 9.151580 4.641813 0.315049 3.569428 0.510702 7.393191 0.193387 6.674387 -0.092923 -5.678774 3.622447 3.277263 -4.357232 -0.706647 -4.423237 3.623273 4.940905 2.932364 -3.211420 2.169395 -2.978539 -0.438865 2.060648 -0.195736 8.064645 3.553870 6.131490 5.569754 7.658978 -4.470342 -0.602418 4.308999 2.010672 -0.016526 6.321028 -4.581998 -7.546874 -0.031396 -1.383858 -9.982068 -4.175923 0.183908 13.858147 -7.673463 -0.743601 0.632509 1.408051 7.539752 -3.743908 1.075557 -5.321830 -0.434636 -3.488814 9.649108 1.399459 0.908597 -1.215978 2.758801 2.193085 4.757938 -0.776876 -5.230338 -3.367455 -9.759410 -3.071864 -3.302786 3.839207 4.737291 -9.647124 -1.498650 -1.132583 8.581268 -11.062858 0.392005 5.367190 4.146378 7.416717 1.775539 -5.701114 0.976271 1.788991 0.797957 5.282041 -2.900983 0.495740 -1.220200 1.792556 -0.339172 2.168144 0.704335 -9.806508 -4.937751 -0.455428 -1.665533 0.755521 1.998091 4.815620 -4.085845 5.056049 -2.946997 5.482746 -10.365041 -1.115862 -3.268431 -6.878714 -2.194116 6.452972 7.501034 6.259749 -3.432038 -2.969052 -2.583065 -10.029864 -8.854863 0.956734 0.626832 1.757947 2.708032 -0.611404 4.091507 -3.684744 2.159033 3.298423 -3.087246 -1.260205 -0.486451 7.399036 -0.077189 -1.315681 -5.336348 -3.039950 -2.823229 0.079763 6.670654 -0.985130 -11.490365 -11.951077 -5.204450 6.340743 -2.592974 0.918005 -4.437470 -1.314887 -5.001792 -0.083396 -6.959169 1.030415 0.386098 -4.583635 -7.543225 0.722105 -0.704980 -3.237009 -0.060481 -5.216387 -1.516678 6.884368 1.843584 3.037475 0.959312 0.090419 -7.425489 -5.148549 2.354701 -5.001667 6.504964 5.306113 -1.478990 -6.276472 -2.615031 -7.979129 4.843297 -3.922651 1.831040 -2.538884 -1.092115 7.045287 -5.186363 0.234946 -6.145389 1.875221 2.131557 -13.985316 8.364288 6.134641 -2.259343 0.266149 1.056002 1.380925 4.327677 4.737176 -4.447101 -4.537316 0.307686 -2.295326 0.188752 -0.758435 4.688751 -5.929138 0.863360 -4.192429 -2.314087 4.011484 3.686387 0.491833 1.693556 1.998579 -1.700600 3.599267 4.961279 5.777259 -1.843327 -6.360118 -14.993360 4.492238 -1.923234 -2.795675 -0.251422 -2.444699 -4.746118 2.124768 -2.657870 6.927978 -0.294592 -2.911955 5.806446 -9.061709 -7.260226 -4.213427 -0.325840 -0.113568 -0.795299 0.899181 -2.745675 2.386402 2.543620 -0.893036 -1.044424 -4.731486 -0.555951 0.766754 7.132605 2.284235 1.694283 7.331849 2.950833 -3.607915 -1.679441 1.368195 -1.477459 -1.730772 -8.103500 -2.951507 -0.749343 1.893703 -3.245808 1.887945 -1.106527 -0.611994 2.127310 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.081844 0.242711 0.831043 0.506180 0.648260 -1.092487 0.819643 1.483383 -0.099154 -2.043325 -1.369022 0.109673 -0.199153 -0.812996 0.395449 -0.245005 0.031948 1.146278 -2.043374 0.680085 0.862354 1.170509 0.230172 -1.258425 0.302132 -0.112917 -1.631978 0.662159 0.254740 1.356831 -0.771242 -0.775161 0.953014 0.323177 -0.124918 1.443368 1.205252 0.058716 1.002662 -0.017972 1.972942 0.742181 -0.179917 1.261689 1.137257 1.234760 -0.614328 1.508941 -0.954879 -0.681852 0.542123 -1.980210 -1.162662 -0.258989 -0.707306 1.189080 2.359845 1.610355 -0.728262 1.263314 -0.123412 -0.037498 0.379636 -1.224333 0.468082 1.807080 -0.497628 0.384248 2.574932 -0.870616 -0.593167 0.720088 1.282358 0.066954 -0.005454 -1.004102 -0.173684 -2.829929 -0.099728 -2.476183 -0.304910 -0.442530 2.735340 -1.392753 1.060070 1.977932 0.244074 0.554053 -0.506666 -0.650994 -0.809433 0.492086 -0.528749 2.421441 -0.232219 0.343088 -0.304292 0.323958 0.991223 1.219099 -0.181941 -0.195898 -2.333194 -3.010824 -0.665217 -0.202164 -0.416902 -0.291858 -1.529975 -0.813328 1.765248 0.994040 -2.052908 -0.362915 1.328463 0.921132 -0.724130 0.400319 -1.530457 0.113117 -0.397385 -0.439070 -0.050342 -1.157149 -0.756349 -0.740736 -0.525491 -0.084740 0.140408 -0.633629 -1.444458 -0.640138 -0.530226 -0.373588 -0.091338 -0.459738 -0.394694 -1.293345 0.574545 -1.288358 0.790154 -1.811742 -0.056541 -0.163997 -1.516551 -0.085114 2.071180 0.043331 0.524298 0.274911 -0.638457 -1.341819 -0.694186 -1.687264 0.942327 -0.387689 1.745614 -0.287679 -0.028786 -0.625069 -0.298621 -1.062061 -0.280332 -0.540814 0.402347 -0.478205 2.787603 -1.051462 -0.206192 -1.839774 0.285687 1.943815 -0.257570 -0.585413 -0.937306 0.105526 -0.791492 -1.412993 1.026600 -0.105198 0.101360 -0.406469 0.445349 -1.138027 0.702717 -0.699410 0.706764 -0.036954 -1.410675 -1.443971 0.252691 -0.395883 -0.390300 0.302447 -0.679575 -0.119541 0.235721 0.964026 0.081783 0.033779 0.312499 -2.162029 -1.983056 -1.039000 0.366624 0.998093 0.916753 0.763160 -0.957489 -0.126661 -1.197616 1.496746 -1.096207 -0.283677 -0.562415 -0.012881 2.081056 -0.355774 -0.374244 -2.203361 0.544268 0.464476 -1.388123 1.962593 0.635988 -0.880661 -0.955816 -1.234337 -0.248311 1.345096 2.084510 -0.875364 -0.850903 1.041087 -0.956378 -0.332595 -1.239737 1.029909 -0.506744 1.813825 -1.159515 -0.725512 0.162527 1.583928 -0.452549 1.241434 0.555845 0.887730 0.000356 1.540680 0.441269 -0.678898 -0.972621 -1.972766 0.871375 0.995192 0.563917 0.006352 -0.953717 -1.217735 0.566363 1.200612 1.431014 1.975279 0.626212 1.022430 -0.995635 -1.302435 0.736405 0.648060 0.917444 -1.312293 0.240491 -0.569709 0.205986 0.554402 0.084522 1.096985 -1.085493 -2.142973 -0.566048 1.390620 0.528180 -0.625087 1.607481 -0.116323 -0.901377 0.654525 -0.378412 1.453704 -0.163629 0.399638 -0.124056 -0.913975 0.098890 -0.477259 2.244370 -0.039201 -0.425516 1.041921 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = 3.697662 0.172526 -2.350812 7.263537 -0.009693 -1.538087 0.108953 1.874686 -1.194352 -11.961192 -7.216753 6.259119 1.141326 1.725325 1.572896 2.979553 0.041280 0.863834 -11.532137 2.909629 4.226324 1.557357 0.653085 -1.025335 1.522985 -3.127681 3.535735 0.795118 2.053976 6.843343 -3.688250 3.463388 5.937342 -0.767050 3.094799 4.896629 -1.328683 0.531592 -2.812774 -1.690760 8.734538 4.195496 0.307015 3.676704 0.454912 6.871164 1.016473 5.258082 1.302761 -5.324699 2.461142 1.606161 -4.183474 -0.790015 -4.330946 3.426098 3.974665 3.046323 -3.287375 2.004596 -1.367169 -0.272631 1.689587 -0.752428 6.843882 2.268269 5.238634 4.791658 6.599571 -4.478433 -0.714618 3.782865 2.014281 0.817637 5.504824 -4.682762 -6.232332 -0.901202 -1.090467 -9.216407 -3.790645 -0.138176 11.157770 -6.921894 0.121152 0.918650 -0.036342 6.548616 -2.708960 0.623000 -5.320074 -0.405259 -2.089864 7.852876 1.140079 0.199197 -0.256392 2.514600 2.006997 4.505074 0.247053 -5.006767 -2.698279 -8.746666 -2.005886 -3.195298 3.776643 4.367424 -7.860848 -1.193480 -1.742816 8.086391 -9.707868 0.138438 4.687146 3.739564 5.351263 -0.003972 -3.799252 0.578078 1.453170 0.855092 4.638199 -3.562317 0.431858 -0.457014 1.347732 -0.194669 2.453562 0.675606 -7.543278 -5.045345 -0.284067 -0.615777 0.267277 1.627884 4.246456 -3.460563 4.677748 -2.771720 5.062744 -8.283084 -0.765597 -2.628023 -5.198285 -2.349482 6.488892 5.628910 5.233862 -2.575139 -2.630839 -2.098393 -8.218303 -7.944235 1.516812 1.040768 1.818608 3.246343 -0.673258 4.059827 -3.562348 1.381272 2.219372 -2.785203 -1.426230 -0.380286 4.337291 -0.301052 -1.064445 -4.657366 -1.824147 -1.725521 -0.325654 5.837825 -1.350165 -9.871454 -10.264655 -5.017073 5.871188 -2.699726 0.970946 -3.513383 -1.023796 -4.104008 0.041460 -6.570591 1.063651 0.122180 -4.595204 -7.045236 0.728737 -1.234178 -1.993364 0.865404 -4.816351 -1.088884 5.174031 2.049046 2.428601 0.712298 0.341335 -6.889541 -4.568481 1.745503 -4.585640 5.861063 3.424439 -1.570442 -6.083741 -2.702886 -6.188600 4.617314 -3.453344 1.879748 -2.506719 -0.941352 5.996791 -4.222011 0.833970 -5.448428 2.060070 2.823340 -12.225118 7.186236 5.441958 -2.196232 0.013356 0.802086 1.215015 3.915009 4.446125 -4.027125 -4.469384 0.558391 -2.311357 0.294551 -1.480537 4.173895 -4.656136 0.746399 -4.289194 -2.490560 3.365864 3.029645 0.579220 1.932542 2.916246 -0.857383 2.767990 5.193669 5.024380 -0.869528 -6.029406 -13.193936 4.416169 0.557432 -1.521060 -0.002063 -2.647196 -4.155166 2.002842 -2.123387 6.095041 0.799997 -2.039712 5.542976 -7.979247 -6.452774 -3.578302 -0.885032 0.190709 -0.415646 0.657382 -2.514503 2.195173 1.820065 -0.898320 -0.958334 -3.598216 -0.380045 0.970989 6.337802 2.374998 2.133965 6.701614 2.549116 -3.651857 -0.927746 1.216563 -1.128814 -1.636559 -7.020907 -2.799825 -0.427790 1.574733 -3.023827 1.350343 -1.222581 -0.644564 1.217504 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.641719 0.026209 0.369899 0.389638 0.270624 -0.604483 0.420496 0.838635 -0.022169 -1.375599 -0.948954 -0.070485 -0.088539 -0.424846 0.402192 -0.023422 0.046694 0.673477 -1.387525 0.449269 0.610250 0.664820 0.168120 -0.584377 0.218382 -0.133532 -1.119465 0.277059 0.174778 0.898367 -0.548370 -0.259942 0.663269 0.108263 -0.070325 0.836407 0.550326 0.016103 0.668845 0.102365 1.249854 0.390679 -0.062187 0.678939 0.596645 0.806095 -0.507048 1.140929 -0.366478 -0.499133 0.608126 -1.396529 -0.652576 0.020094 -0.471752 0.725223 1.430421 0.972345 -0.449263 0.732050 -0.198721 0.067582 0.239268 -0.837457 0.484362 1.147075 -0.151643 0.307259 1.507879 -0.461389 -0.221780 0.343488 0.692390 -0.020698 -0.002739 -0.674923 0.007697 -1.919879 -0.095183 -1.477342 -0.136990 -0.280025 1.699493 -0.958420 0.598219 1.189620 0.111412 0.508678 -0.328185 -0.247726 -0.560771 0.290723 -0.208628 1.305014 -0.144598 0.147842 -0.270946 0.214220 0.482228 0.635443 -0.110902 -0.161095 -1.612655 -1.916866 -0.603960 -0.108909 -0.156876 -0.085269 -1.187279 -0.361021 1.104049 0.516949 -1.381936 -0.144722 0.754241 0.610394 -0.441784 0.463067 -1.051617 -0.058444 -0.207935 -0.041085 0.034921 -0.682028 -0.332792 -0.842783 -0.282681 0.041100 0.156702 -0.420506 -0.731313 -0.417284 -0.324030 -0.168176 -0.079246 -0.123188 -0.057051 -0.700570 0.450225 -0.743787 0.510195 -1.223761 -0.139567 -0.235470 -0.890789 -0.080787 1.626489 0.248337 0.389491 0.228695 -0.570457 -0.788744 -0.632982 -1.018827 0.428310 -0.317711 1.114021 -0.082139 -0.021866 -0.291727 -0.130294 -0.504105 -0.269383 -0.415448 0.190442 -0.326360 1.453659 -0.597411 -0.174592 -1.243499 0.103151 1.189081 -0.398358 -0.275721 -0.484797 0.100337 -0.621525 -0.862757 0.688846 -0.114541 0.232432 -0.318068 0.372813 -0.825786 0.410898 -0.500890 0.219518 0.021839 -0.925338 -0.948126 0.126346 -0.215411 -0.237277 0.136244 -0.485431 -0.043119 0.248020 0.778417 0.160266 0.084611 0.118438 -1.389615 -1.298909 -0.677824 0.018730 0.684755 0.611434 0.345896 -0.618496 -0.134698 -0.792414 0.980175 -0.804675 -0.130586 -0.337370 -0.071861 1.208439 -0.297884 -0.288445 -1.368346 0.307758 0.231325 -1.182325 1.164834 0.398216 -0.586291 -0.466438 -0.903026 0.037287 0.794067 1.260935 -0.428245 -0.366300 0.517274 -0.513193 -0.168345 -0.811967 0.695640 -0.424813 0.953861 -0.685538 -0.389884 0.240494 0.946976 -0.237299 0.699288 0.396138 0.625388 0.123768 0.868675 0.282495 -0.538596 -0.554792 -1.429990 0.507198 0.958357 0.313107 0.116522 -0.745113 -0.656653 0.266374 0.652358 0.915228 1.246197 0.570468 0.664419 -0.631476 -0.833712 0.344609 0.432421 0.437767 -0.759944 0.156046 -0.334090 0.109587 0.425662 0.135747 0.670119 -0.754583 -1.463939 -0.287154 0.923765 0.317375 -0.311365 0.992065 0.016429 -0.602437 0.329789 -0.214806 0.755092 -0.123069 0.249474 -0.112879 -0.471667 0.034806 -0.404519 1.292057 -0.124146 -0.240693 0.550532 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp___GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 2.475674 0.324732 -1.544510 4.658925 -0.117078 -0.934551 0.043235 1.245422 -0.934973 -7.774489 -4.993285 4.150649 0.603960 1.056836 1.320074 1.680807 0.171428 0.435675 -8.062793 1.875759 2.879520 0.838227 0.405300 -0.239144 1.091750 -2.003835 1.468212 0.372736 1.243967 4.469688 -2.512593 2.585914 3.792301 -0.336284 2.034428 2.948732 -1.531890 0.296036 -1.199122 -1.176182 5.600552 2.582703 0.567491 2.378162 0.282337 4.354636 -0.257775 4.200614 1.649562 -3.506730 2.174180 0.509840 -2.568125 0.316139 -2.705492 2.177321 2.340286 1.613095 -1.904315 1.262861 -1.329042 0.043819 0.970371 -1.089974 4.604627 1.934065 3.125371 2.933776 4.139329 -2.564939 -0.197062 2.145453 1.146408 0.360496 2.885732 -2.739811 -3.625665 -0.697490 -0.668068 -6.047606 -2.390108 -0.298958 7.573096 -4.421682 0.016545 0.428052 0.185381 4.361931 -1.767490 0.726496 -3.447505 -0.101703 -1.394783 4.608436 0.742766 0.326922 -0.355748 1.230522 1.085317 2.730195 -0.500296 -2.916931 -2.116488 -6.044999 -1.442123 -1.771022 2.567519 2.752682 -5.408980 -0.312210 -0.970753 5.342071 -6.258620 -0.175860 2.700814 2.282418 2.383825 1.510178 -2.877003 -0.244646 0.982987 0.902485 3.032371 -2.077338 0.442834 -1.382732 0.362383 -0.121892 1.840116 0.277721 -4.494080 -3.195397 -0.228636 -0.626728 0.101822 1.194958 2.871896 -1.547254 3.123714 -1.613468 3.027331 -5.177810 -0.770383 -2.010299 -3.370570 -1.437261 4.801160 4.457490 3.448217 -1.289324 -1.483685 -1.558439 -5.537208 -4.766112 0.738288 0.211101 1.619271 1.915867 -0.347220 2.536401 -2.345477 0.942854 1.099164 -1.893462 -0.926584 -0.576994 2.852512 -0.224245 -0.711049 -3.354366 -1.218101 -1.161989 -1.266904 3.476914 -0.659661 -6.277546 -6.667836 -3.242148 3.766650 -1.699280 0.864471 -2.462162 -0.067271 -2.257783 -0.310465 -4.025449 -0.033960 0.234923 -3.001780 -4.487933 0.266361 -0.690206 -1.467295 0.328914 -3.081460 -0.701365 4.276577 2.006208 1.859156 0.759597 -0.064228 -4.113539 -2.917237 0.850010 -3.126697 3.146019 2.780759 -1.235052 -4.009996 -1.899875 -4.188609 3.045889 -2.513463 1.162762 -1.673814 -0.827826 3.749045 -2.719861 0.243518 -3.271515 1.067541 1.592636 -9.052029 4.117002 3.027647 -1.535049 -0.013287 -0.310811 1.122541 2.539098 3.044474 -2.308050 -2.286159 0.087174 -1.543571 0.238801 -0.817300 2.856994 -3.110077 0.287869 -2.606514 -1.501559 2.608221 1.859557 0.388130 1.110191 1.961154 -0.023074 3.084981 3.045196 3.118841 -1.157245 -3.662494 -9.293102 2.656703 1.465497 -0.973944 0.139051 -2.014916 -2.836810 1.039333 -1.753562 3.940974 0.139149 -0.743821 3.475711 -4.655206 -4.014193 -2.306450 -0.296151 -0.135119 -0.389988 0.328018 -1.522581 1.349228 1.502115 -0.297451 -0.173650 -2.643186 -1.175255 0.560775 3.950350 1.494548 1.568288 4.212925 1.914812 -2.450410 -0.655737 0.611586 -0.641002 -1.377414 -4.670235 -1.731120 -0.336409 0.758317 -2.033600 0.946948 -0.599661 -0.270160 0.799021 -PE-benchmarks/naive-algorithm.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/sudoku.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 2.018340 -0.087848 -0.883202 3.786878 0.512250 -1.121274 0.186070 1.146512 -0.292676 -6.047171 -4.463121 3.175696 0.331198 0.294938 1.149829 0.851273 0.247155 0.461235 -6.450609 1.677698 1.967930 0.690536 -0.088160 -0.592820 0.717430 -1.652096 1.251627 1.030790 0.760105 3.384087 -1.887176 1.524863 2.823920 0.004180 1.821284 2.684323 -0.878574 0.160239 -0.808181 -0.715855 4.839886 2.476883 0.049956 2.387666 1.031637 3.529658 0.176593 2.953748 1.060240 -2.434868 1.365393 0.665353 -2.178238 -0.397716 -2.594662 1.920984 2.867103 0.866740 -1.899250 1.261757 -0.608010 -0.247177 0.824563 -0.961571 3.694734 1.359149 2.542383 2.105967 3.821113 -2.123819 -0.617350 2.062144 2.075048 0.712796 2.115712 -2.122607 -3.383936 -0.672224 -0.570186 -5.123418 -1.698469 -0.542606 5.384125 -3.303801 -0.004788 0.571293 -0.262393 3.168490 -1.495449 -0.149397 -2.702089 0.023916 -1.317476 4.100446 0.679548 0.370725 -0.020579 1.233965 1.155875 2.693312 -0.416203 -2.528491 -1.656796 -6.211054 -1.115264 -1.431731 1.695052 1.472727 -4.045235 -0.624602 -1.013926 4.251560 -4.661706 -0.430186 2.486428 1.530072 1.249709 -0.642070 -2.348031 -0.068430 0.774065 0.563050 2.328421 -1.649191 -0.055556 -0.868492 0.703857 -0.141234 1.356513 0.213093 -2.855460 -2.502366 -0.269296 0.276472 -0.059744 0.338385 1.710974 -1.741842 2.341237 -1.369671 2.636690 -4.429148 -0.153074 -1.786019 -2.467836 -0.903629 3.130882 2.905089 3.011141 -0.914617 -0.858733 -1.179245 -4.239163 -4.835301 1.218253 0.177300 1.368963 0.885701 -0.262276 1.721375 -1.736414 0.129177 1.324477 -1.600184 -0.521685 -0.594392 2.770277 -0.272560 -0.594733 -2.478645 -0.808585 -0.158781 -0.493899 2.412158 -0.872782 -5.025517 -4.672310 -2.721602 2.876878 -1.264734 0.442025 -1.673821 -0.179685 -2.429923 0.230170 -3.135958 0.230862 -0.188125 -2.640269 -3.494328 -0.316393 -0.634495 -0.500745 0.244456 -2.635213 -0.487091 3.309381 1.851660 1.329399 0.793979 0.129693 -3.437972 -2.602535 0.401695 -1.850821 3.304904 2.059138 -0.680567 -3.174633 -1.205814 -3.462241 2.716356 -2.063032 0.683597 -1.206609 -0.956088 3.372077 -1.974978 -0.286068 -2.667033 0.992881 1.296958 -6.492347 3.670875 2.858396 -1.472579 -0.504966 -0.321000 0.535362 2.069355 3.105542 -2.270043 -1.911733 0.366503 -1.283055 0.004495 -1.158016 2.462019 -2.020145 0.838699 -2.504613 -1.637683 1.805318 1.774655 0.281170 1.229187 1.124941 0.346924 1.757992 2.933345 2.263744 -0.630316 -3.247307 -7.202186 2.115004 0.868950 -0.738422 0.401307 -1.492617 -2.704312 0.565110 -1.191710 3.381568 0.746369 -0.743350 2.908626 -3.430415 -3.282238 -1.724490 -0.349238 0.195990 -0.659268 0.859470 -1.522135 0.973761 0.749992 -0.278112 -0.128972 -2.084611 -1.161701 0.270872 2.884022 1.216344 0.899530 3.425329 1.207090 -2.211033 -0.508651 0.291484 -0.385674 -0.595965 -3.646006 -1.667665 -0.905785 0.636523 -1.363125 1.209590 -0.501874 0.390476 0.849665 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = 2.390178 -0.490975 -0.913502 3.549203 0.527955 -1.211825 0.256525 1.047498 -0.248212 -5.490706 -3.571047 4.229966 0.226552 -0.008187 0.626486 1.018282 0.534013 0.181764 -5.706299 1.838567 1.280617 0.291531 -0.710487 -0.480931 0.505234 -1.771570 2.109713 1.306936 0.532083 3.020526 -1.720388 1.346482 2.599880 -0.016687 2.106316 2.719374 -0.643675 -0.157665 -1.131992 -0.925210 4.791780 2.300040 0.298648 2.360321 1.195180 3.431963 0.553842 3.441405 2.190889 -2.078189 1.439161 1.083500 -2.308675 -0.449409 -3.006240 1.521551 1.606113 0.244432 -2.003656 1.270961 -0.818567 -0.222940 0.880063 -0.221781 3.820228 0.986312 2.524172 2.072917 3.764417 -2.114969 -0.682317 2.386819 2.431684 1.257053 2.465753 -2.031563 -3.435141 -0.340134 -0.359193 -4.167936 -1.547535 -0.669916 5.414872 -2.958706 -0.228661 0.311091 -0.187837 3.007552 -1.642348 -0.100427 -2.903875 0.061737 -0.791272 3.796784 0.441302 0.600538 0.064946 0.971526 0.780375 2.659387 -0.354455 -2.856604 -1.113365 -5.477016 -0.973402 -1.608641 1.157774 0.916142 -3.781093 -0.343397 -1.016086 4.524757 -4.230223 -0.538630 2.241929 0.783650 2.211914 0.129752 -1.609050 -0.179091 0.989086 0.853793 2.194404 -1.427058 -0.067969 -0.516819 1.055579 -0.013808 1.395670 0.301830 -3.311373 -2.167070 0.297034 0.495942 -0.127644 0.176969 1.351984 -1.904502 2.070383 -1.153612 2.577614 -3.969083 -0.573074 -1.964754 -2.089291 -0.890667 3.840752 3.033425 3.578389 -0.634544 -0.521020 -0.937317 -4.029453 -4.752832 1.068116 -0.334371 0.720126 0.764092 -0.100962 1.472435 -1.575385 0.003353 1.187580 -1.686260 -0.651624 -0.595713 1.494815 -0.105385 -0.479298 -2.184280 -0.696892 -0.226880 0.221561 2.385762 -0.907652 -6.692443 -4.303719 -2.572733 2.649442 -1.172245 0.273761 -1.310764 -0.664213 -1.636804 0.037312 -2.844690 0.444445 -0.497985 -2.419442 -3.291312 -0.023553 -0.749847 -0.414173 -0.008234 -2.397513 -0.292731 2.587397 1.574327 1.092477 0.940263 -0.157704 -3.420564 -2.419103 0.626003 -1.342920 3.586521 1.945186 -0.460629 -3.008721 -1.247464 -3.422945 2.393176 -3.006502 0.770252 -0.479450 -1.500638 3.226213 -1.940338 0.070958 -2.212724 1.357707 1.185169 -6.675793 3.628933 3.309747 -1.833387 -0.734750 -0.160578 0.500618 2.077514 3.162419 -2.121412 -1.692822 0.556203 -0.686546 -0.096174 -0.579338 2.192348 -1.612569 0.882370 -2.719119 -1.881934 1.825380 1.712729 0.246469 0.291602 0.642671 0.109033 1.419537 3.094751 2.019706 0.110013 -3.373906 -7.652805 1.948247 1.121102 -0.879540 1.109201 -1.690304 -2.497537 0.523000 -2.060319 3.296784 -0.559737 -0.887986 2.711998 -3.482545 -3.284197 -1.832724 -0.683290 0.007397 -0.388453 1.576308 -1.640950 0.636839 0.110389 -0.043263 -0.836111 -1.249896 -0.423987 0.560427 2.318869 1.719469 0.647535 3.208611 1.110111 -1.861465 -0.700787 0.417505 -0.489221 -0.291788 -4.133398 -1.581821 -1.027910 0.904551 -1.248612 1.234263 -0.058926 0.880473 0.539257 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.134272 0.871919 -1.727842 2.999018 -0.433686 -0.728056 0.142122 0.439437 -0.999462 -4.777716 -3.466758 2.598134 0.816945 0.474205 0.847803 0.821241 -0.907112 0.522824 -3.838606 0.994296 1.950628 0.844547 -0.320233 -0.016853 0.302474 -0.842672 -0.218863 0.520195 0.722880 2.878167 -1.080743 1.408354 2.494540 -0.472157 -0.123234 1.706822 -0.149837 0.675766 -0.475142 -0.301096 2.982600 1.179094 0.264979 1.409972 0.155662 2.575308 -0.583623 3.334075 -0.874483 -2.375604 1.589995 0.334007 -1.248371 -0.234944 -0.762518 1.524838 2.291173 1.365090 -1.132102 0.829064 -0.887699 -0.252031 0.688860 -0.509105 2.311911 2.345884 1.929447 1.430977 2.712226 -1.581754 -0.282424 1.341784 0.176617 -0.508929 1.631433 -1.056055 -2.227833 0.278657 -0.289808 -3.962771 -2.304800 0.265217 5.408809 -2.998127 -0.435612 0.695534 0.816777 2.641285 -1.426558 0.700169 -1.696795 -0.263961 -1.346911 3.521706 0.654435 -0.082971 -1.039134 0.804330 1.144233 1.513004 -0.709244 -1.341705 -2.379878 -3.533604 -1.662074 -0.885258 1.108116 1.857718 -4.034204 -1.149035 0.178316 3.071305 -4.199822 -0.078690 2.444611 1.868628 2.381819 2.403465 -3.152594 0.712534 0.806512 -0.362860 2.208808 -0.350972 0.367242 -0.690521 0.288343 -0.183953 -0.126080 0.288909 -4.106886 -1.880010 -0.187162 -1.126905 0.206865 0.442794 1.742922 -0.996598 1.943705 -0.962110 1.669812 -4.168705 -0.567013 -0.367991 -3.292807 -0.687936 2.058195 3.343998 2.225871 -1.439757 -1.565435 -1.420932 -3.518910 -3.392975 0.049435 0.276744 1.214871 0.507791 -0.223452 1.471969 -1.303517 0.905742 1.587371 -0.660117 -0.279589 0.034769 4.210275 -0.560921 -0.430142 -1.939931 -1.329488 -1.481312 -0.631669 2.355438 -0.177317 -3.371118 -4.351449 -1.409236 2.315250 -0.737945 0.337868 -1.809596 -0.359842 -2.462469 -0.251536 -2.191150 -0.258356 0.435383 -2.153388 -2.741836 0.363108 -0.017549 -2.058583 0.021321 -2.015973 -0.888561 3.358676 0.805539 1.635472 0.075105 -0.042976 -2.486881 -1.926700 0.349259 -2.243457 2.155645 2.790757 -0.389084 -2.262752 -0.793086 -3.378956 1.879480 -1.692769 0.367088 -1.191191 0.137048 2.693854 -2.060226 -0.564670 -2.045875 0.245680 0.867807 -5.187115 2.965201 1.878392 -0.399101 0.277421 0.495528 0.194270 1.990713 1.552868 -2.088341 -1.777810 -0.284668 -1.137362 0.178487 -0.168794 1.749152 -2.687830 0.404880 -1.045958 -0.534492 1.278239 1.557883 0.121714 0.911337 0.809677 -0.395616 1.942451 1.349563 1.693313 -1.670527 -1.280290 -5.151558 1.911015 -1.155085 -1.478010 -0.356644 -0.986368 -1.369475 0.614738 -1.252963 2.197902 -0.756944 -1.005938 2.029749 -3.254028 -2.471145 -1.268418 0.298465 -0.152248 -0.144051 0.536333 -0.316091 1.300620 1.657797 -0.807526 -0.000660 -2.485077 -1.050882 -0.175117 2.630244 -0.053257 0.644852 2.746615 0.610884 -1.369715 -0.155205 -0.103545 0.158263 -1.136203 -3.066333 -0.861634 -0.155162 0.557660 -1.187812 0.757125 -0.765533 -1.009501 1.113399 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = 1.279577 -0.348935 -0.201193 2.340052 0.432250 -0.600088 0.146259 0.718662 0.015852 -3.928834 -2.349688 2.389387 0.060112 0.370258 0.472720 0.495869 0.426109 0.482813 -3.980736 1.026068 1.127964 0.676094 0.233779 -0.519288 0.537952 -0.977363 1.442248 0.608278 0.781728 2.193989 -1.433153 0.682111 1.875521 -0.047469 1.233763 1.806285 0.128703 0.042465 -1.037387 -0.786575 3.295376 1.396487 0.163308 1.774034 0.676983 2.336826 0.646258 1.876913 1.800858 -1.641940 0.568579 0.274432 -1.441421 -0.477782 -1.846472 1.365340 1.392490 0.929376 -1.463395 0.820172 0.058643 -0.134291 0.518909 -0.586422 2.051553 0.605551 1.387839 1.374972 2.502174 -1.619361 -0.548809 1.389142 1.555364 0.933791 1.798378 -1.728077 -2.107616 -1.070497 -0.450916 -3.003237 -1.002216 -0.357580 3.246617 -2.255467 0.389038 0.662529 -0.516137 1.877497 -0.730329 -0.187500 -2.013222 0.027260 -0.339270 2.519195 0.386562 -0.055463 0.217132 0.767845 0.680531 1.827793 0.331814 -1.806007 -0.768412 -3.762998 -0.621598 -1.123618 1.042115 0.882252 -2.305562 -0.314500 -0.512779 2.804713 -3.021806 -0.287500 1.599342 0.920004 0.864067 -0.908136 -0.773252 0.000848 0.451089 0.284571 1.379695 -1.481340 -0.174855 0.029446 0.325491 -0.037353 0.991237 0.074914 -1.471163 -1.810308 -0.232413 0.661865 -0.193090 -0.027119 0.935186 -1.380811 1.551660 -0.864460 1.729777 -2.345650 -0.232852 -0.889334 -1.095826 -0.787952 2.757752 1.132795 2.068012 -0.543269 -0.755051 -0.842812 -2.324608 -2.927800 1.053633 0.160325 0.732906 1.071001 -0.182305 1.175412 -1.084239 -0.207511 0.496465 -1.047854 -0.424632 -0.147800 0.531530 -0.453612 -0.217526 -1.822222 -0.173759 0.270617 -0.074446 1.395571 -0.790768 -3.606845 -2.708538 -1.832197 1.902276 -0.919627 0.381799 -0.754670 -0.303861 -1.049621 0.215591 -2.164264 0.319909 -0.288497 -1.872404 -2.366793 0.101275 -0.731394 -0.056683 0.506045 -1.738143 -0.121301 1.086643 1.225450 0.634151 0.337010 0.218116 -2.793559 -1.747966 0.086575 -1.114933 2.128147 0.680191 -0.307207 -2.217546 -0.965514 -1.819859 1.573993 -1.802332 0.494475 -0.634057 -0.703793 2.108985 -1.124402 0.290779 -1.838595 0.884186 1.264652 -3.975894 2.501493 1.974481 -1.015361 -0.369245 0.038119 0.233707 1.432798 2.064684 -1.589680 -1.483320 0.514212 -0.847202 0.034892 -0.900041 1.513073 -1.049680 0.644014 -1.820347 -1.225057 0.907130 1.150208 0.201954 0.616952 1.136290 0.195950 0.583204 2.267656 1.435569 0.229562 -2.237013 -4.574383 1.568958 1.317525 -0.050700 0.616387 -1.268881 -1.509737 0.631073 -0.519632 2.105482 0.477084 -0.172715 1.956986 -2.426374 -2.128442 -0.784988 -0.627857 0.305414 -0.335071 0.778000 -1.135206 0.503165 0.091079 -0.244985 -0.460694 -0.569691 -0.281544 0.348738 1.692324 1.169118 0.729859 2.252160 0.687696 -1.661168 0.042580 0.177188 -0.132102 -0.504687 -2.125766 -0.872157 -0.427586 0.464418 -0.910041 0.786698 -0.460805 0.101227 0.177024 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = 1.279577 -0.348935 -0.201193 2.340052 0.432250 -0.600088 0.146259 0.718662 0.015852 -3.928834 -2.349688 2.389387 0.060112 0.370258 0.472720 0.495869 0.426109 0.482813 -3.980736 1.026068 1.127964 0.676094 0.233779 -0.519288 0.537952 -0.977363 1.442248 0.608278 0.781728 2.193989 -1.433153 0.682111 1.875521 -0.047469 1.233763 1.806285 0.128703 0.042465 -1.037387 -0.786575 3.295376 1.396487 0.163308 1.774034 0.676983 2.336826 0.646258 1.876913 1.800858 -1.641940 0.568579 0.274432 -1.441421 -0.477782 -1.846472 1.365340 1.392490 0.929376 -1.463395 0.820172 0.058643 -0.134291 0.518909 -0.586422 2.051553 0.605551 1.387839 1.374972 2.502174 -1.619361 -0.548809 1.389142 1.555364 0.933791 1.798378 -1.728077 -2.107616 -1.070497 -0.450916 -3.003237 -1.002216 -0.357580 3.246617 -2.255467 0.389038 0.662529 -0.516137 1.877497 -0.730329 -0.187500 -2.013222 0.027260 -0.339270 2.519195 0.386562 -0.055463 0.217132 0.767845 0.680531 1.827793 0.331814 -1.806007 -0.768412 -3.762998 -0.621598 -1.123618 1.042115 0.882252 -2.305562 -0.314500 -0.512779 2.804713 -3.021806 -0.287500 1.599342 0.920004 0.864067 -0.908136 -0.773252 0.000848 0.451089 0.284571 1.379695 -1.481340 -0.174855 0.029446 0.325491 -0.037353 0.991237 0.074914 -1.471163 -1.810308 -0.232413 0.661865 -0.193090 -0.027119 0.935186 -1.380811 1.551660 -0.864460 1.729777 -2.345650 -0.232852 -0.889334 -1.095826 -0.787952 2.757752 1.132795 2.068012 -0.543269 -0.755051 -0.842812 -2.324608 -2.927800 1.053633 0.160325 0.732906 1.071001 -0.182305 1.175412 -1.084239 -0.207511 0.496465 -1.047854 -0.424632 -0.147800 0.531530 -0.453612 -0.217526 -1.822222 -0.173759 0.270617 -0.074446 1.395571 -0.790768 -3.606845 -2.708538 -1.832197 1.902276 -0.919627 0.381799 -0.754670 -0.303861 -1.049621 0.215591 -2.164264 0.319909 -0.288497 -1.872404 -2.366793 0.101275 -0.731394 -0.056683 0.506045 -1.738143 -0.121301 1.086643 1.225450 0.634151 0.337010 0.218116 -2.793559 -1.747966 0.086575 -1.114933 2.128147 0.680191 -0.307207 -2.217546 -0.965514 -1.819859 1.573993 -1.802332 0.494475 -0.634057 -0.703793 2.108985 -1.124402 0.290779 -1.838595 0.884186 1.264652 -3.975894 2.501493 1.974481 -1.015361 -0.369245 0.038119 0.233707 1.432798 2.064684 -1.589680 -1.483320 0.514212 -0.847202 0.034892 -0.900041 1.513073 -1.049680 0.644014 -1.820347 -1.225057 0.907130 1.150208 0.201954 0.616952 1.136290 0.195950 0.583204 2.267656 1.435569 0.229562 -2.237013 -4.574383 1.568958 1.317525 -0.050700 0.616387 -1.268881 -1.509737 0.631073 -0.519632 2.105482 0.477084 -0.172715 1.956986 -2.426374 -2.128442 -0.784988 -0.627857 0.305414 -0.335071 0.778000 -1.135206 0.503165 0.091079 -0.244985 -0.460694 -0.569691 -0.281544 0.348738 1.692324 1.169118 0.729859 2.252160 0.687696 -1.661168 0.042580 0.177188 -0.132102 -0.504687 -2.125766 -0.872157 -0.427586 0.464418 -0.910041 0.786698 -0.460805 0.101227 0.177024 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = 2.071120 -0.448102 -0.413507 3.490775 0.515104 -0.691894 0.203697 1.249218 -0.011834 -5.999179 -3.589826 3.596506 0.166021 0.852456 0.692313 1.010396 0.615897 0.563952 -5.853260 1.558836 1.781703 0.967489 0.506308 -0.599824 0.840896 -1.542999 2.269849 0.615072 1.282437 3.352105 -2.042846 1.218716 2.935506 -0.101712 1.980166 2.766448 0.074972 -0.037333 -1.741698 -1.432954 4.829498 2.317026 0.304748 2.531991 0.645736 3.548047 1.112950 2.821690 2.271061 -2.639414 0.817540 -0.307698 -2.367733 -0.581373 -2.650906 1.939253 1.474685 1.415722 -2.054913 1.164824 -0.166465 -0.220421 0.745050 -0.868825 3.073851 0.613221 2.172550 2.168265 3.460014 -2.544433 -0.779626 2.325486 1.940370 1.494302 2.691194 -2.663948 -3.116139 -1.175333 -0.551390 -4.315568 -1.824662 -0.539280 5.308117 -3.447647 0.609471 0.818646 -0.970972 2.844395 -1.105133 -0.108087 -3.094624 -0.077381 -0.295553 3.192135 0.489612 -0.186126 0.415355 1.060816 0.961970 2.648762 0.503673 -2.735362 -1.226674 -4.882017 -0.407291 -1.706950 1.798513 1.697661 -3.288641 -0.520493 -1.254502 4.600377 -4.499171 -0.277209 2.426729 1.407723 1.888790 -0.665486 -0.878024 0.008114 0.940411 0.507643 2.350677 -2.437248 -0.100237 0.209223 0.643226 -0.103434 1.500295 0.276912 -2.614735 -2.871203 -0.104144 0.752980 -0.220082 0.214399 1.613762 -2.004329 2.397229 -1.242480 2.625034 -3.376071 -0.444920 -1.245515 -1.900879 -1.295509 4.955061 2.154143 3.234196 -0.813647 -1.059931 -1.181969 -3.413163 -4.064867 1.420503 0.360141 1.070122 1.833003 -0.175490 2.019562 -1.715367 0.052029 0.420239 -1.410139 -0.674104 0.029247 0.252846 -0.518793 -0.309677 -2.699880 -0.292186 -0.009374 -0.160773 2.369873 -1.096970 -5.834064 -4.241170 -2.726168 2.921782 -1.428623 0.604480 -1.197904 -0.539670 -1.237243 0.038519 -3.377469 0.690253 -0.266505 -2.825104 -3.598199 0.312928 -1.087770 -0.196787 0.894227 -2.259731 -0.329288 1.869198 1.818355 0.932702 0.595275 0.241727 -3.951851 -2.353299 0.341325 -1.970630 3.462035 0.960696 -0.756658 -3.377731 -1.503414 -2.688202 2.492242 -2.444307 0.825018 -1.215154 -0.786841 3.066828 -1.716823 0.832123 -2.883952 1.425869 2.049807 -6.632131 3.176187 3.094008 -1.353217 -0.412801 0.227962 0.315407 2.264547 2.828708 -2.038374 -2.328164 0.688188 -1.284024 0.142221 -1.280928 2.079649 -1.744651 0.637436 -2.607417 -1.722403 1.474743 1.407124 0.353787 0.717571 1.887078 0.350014 1.127931 3.300062 2.333862 0.218844 -3.609386 -7.160433 2.506185 2.673887 -0.202641 0.775835 -1.840913 -2.129331 1.013444 -1.381079 3.009953 0.829952 -0.414254 2.959736 -3.707836 -3.187585 -1.373045 -0.839398 0.329653 -0.236543 0.959627 -1.552335 0.984152 0.237943 -0.532217 -0.723364 -0.896236 -0.225764 0.624478 2.732917 1.825326 1.450861 3.354727 1.105888 -2.264376 -0.020900 0.592304 -0.355697 -0.902013 -3.608911 -1.426863 -0.431730 0.718770 -1.378959 0.815917 -0.535638 -0.084896 0.230586 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = 1.359345 -0.005957 -0.190767 2.244476 0.170348 -0.621492 0.181717 0.980690 -0.336739 -4.022503 -2.819982 1.866386 0.085587 0.305717 0.770710 0.626509 0.351096 0.326395 -4.704108 1.111288 1.450910 0.614482 0.317739 -0.379363 0.595282 -1.117611 0.743059 0.593316 0.561002 2.273677 -1.372128 0.990509 1.928366 0.090543 1.364469 1.824574 -0.672713 -0.080624 -0.458665 -0.600412 3.257678 1.605854 0.126842 1.439544 0.631874 2.392818 0.307723 1.543533 1.081821 -1.706509 0.793008 -0.210419 -1.585391 -0.104555 -1.702264 1.065607 1.405026 0.935739 -1.254913 0.934593 -0.520348 -0.092684 0.510609 -0.834925 2.441807 0.629017 1.595512 1.347674 2.335507 -1.439044 -0.295795 1.279457 1.187241 0.530629 1.111450 -1.615139 -1.823412 -1.340709 -0.337794 -3.750656 -1.154628 -0.251929 3.655554 -2.147902 0.342280 0.495634 -0.524065 2.021567 -0.904420 -0.158760 -1.945361 0.013372 -0.499011 2.172469 0.242031 -0.038855 0.308080 0.798682 0.742563 1.697491 -0.152346 -1.656375 -1.204275 -3.836070 -0.423507 -0.907675 1.201701 0.959946 -2.452544 -0.253110 -0.431853 2.883290 -3.088670 -0.271731 1.582198 1.007269 0.258932 -0.340390 -1.216784 -0.243170 0.369583 0.736748 1.695510 -1.437993 0.093541 -0.555617 0.329103 0.049177 1.116639 0.135434 -1.711210 -1.882822 -0.037438 0.108969 -0.231327 0.332701 1.079821 -0.796907 1.607472 -1.059120 1.886294 -2.622528 0.048362 -1.178819 -1.274265 -0.671317 2.698047 2.123217 1.554008 -0.372755 -0.553986 -0.569141 -2.544844 -2.607420 0.854373 0.145558 1.078529 0.732925 -0.140479 1.148666 -1.073249 0.059913 0.289678 -1.016868 -0.357134 -0.398792 0.964550 -0.078581 -0.446551 -1.743431 -0.217240 0.169996 -0.589892 1.404536 -0.706612 -3.143855 -2.980199 -1.879511 1.960716 -0.858510 0.316510 -1.018487 0.004985 -1.077561 0.270185 -2.160920 0.168884 -0.104827 -1.828366 -2.360061 -0.057001 -0.578575 -0.297853 0.248348 -1.462754 -0.350353 1.939805 1.348597 0.809004 0.481021 0.150757 -2.275300 -1.642318 0.115196 -1.231990 2.043121 1.139312 -0.526439 -2.483805 -0.831362 -1.923667 1.905303 -1.052357 0.488059 -0.968721 -0.774411 2.166271 -1.137634 0.379223 -1.707133 0.752890 1.045414 -5.004356 2.183086 1.998049 -1.054778 -0.402408 -0.432213 0.425576 1.433901 1.962051 -1.195278 -1.161014 0.234722 -0.934194 0.069390 -0.872574 1.557582 -1.232471 0.404183 -1.719053 -1.111471 1.370590 0.977875 0.238411 0.762884 1.030634 0.541734 1.151285 2.032489 1.392148 -0.318876 -2.205936 -4.877670 1.475875 1.937226 -0.083642 0.436396 -0.995968 -1.747472 0.319018 -0.819238 2.152940 0.939275 -0.449172 1.913732 -2.068318 -2.148935 -1.221027 -0.169236 0.075955 -0.376530 0.449284 -0.947846 0.613374 0.476646 -0.114279 0.071927 -1.100157 -0.967510 0.239415 1.961773 1.219118 0.628635 2.263772 0.742211 -1.490123 -0.271425 0.345685 -0.210594 -0.379510 -2.119419 -1.146637 -0.519078 0.472066 -0.963416 0.710272 -0.239611 0.246282 0.384962 -PE-benchmarks/sudoku.cpp__main = 0.442213 0.274606 0.672779 0.313975 0.106628 -0.411276 0.323153 0.900828 -0.266434 -1.511469 -1.206088 0.234901 -0.212398 -0.109273 0.464563 -0.164714 0.181126 0.430999 -2.347440 0.364406 0.793610 0.621267 0.491007 -0.497097 0.340561 -0.272311 -0.695933 0.494246 0.215523 0.941765 -0.664232 -0.074751 0.705382 0.352317 0.450650 0.857682 -0.031631 -0.155746 0.435974 -0.192625 1.385083 0.573743 -0.156968 0.643874 0.626906 0.941770 -0.186400 -0.087011 0.110839 -0.633771 0.118527 -0.926979 -0.763827 -0.067154 -0.499456 0.416922 0.932847 0.833724 -0.568104 0.684064 0.026295 -0.055682 0.124690 -0.894329 0.673417 0.468237 0.095793 0.284739 1.031495 -0.561317 -0.222005 0.271927 0.513819 0.061206 -0.435951 -0.492639 0.001362 -1.952464 -0.012420 -2.245911 -0.567106 -0.123685 1.128800 -0.775556 0.701536 0.813422 -0.436645 0.510111 -0.185912 -0.426288 -0.727495 0.040461 0.025044 0.762080 -0.077463 -0.192871 0.396434 0.358884 0.614559 0.828713 -0.089843 -0.355674 -1.168815 -1.858803 -0.027154 -0.131895 0.255430 0.086392 -0.726686 -0.291949 0.839632 0.971558 -1.164531 -0.276780 0.737440 0.535793 -1.462956 -0.489219 -0.688813 -0.112556 -0.302374 0.185704 0.474726 -0.800626 -0.134012 -0.275452 -0.265937 0.032252 0.498003 -0.102349 -0.485414 -0.888834 0.024236 -0.078105 -0.324784 -0.075667 -0.017386 0.013883 0.530214 -0.772194 0.814629 -0.869209 0.489386 -0.339626 -0.134583 -0.148652 0.800947 0.589480 -0.234043 0.249476 -0.195883 -0.203162 -0.485130 -0.840191 0.768195 0.132279 1.097964 -0.054481 -0.122598 0.110719 -0.265693 -0.428446 -0.401118 -0.400087 0.060754 -0.409426 0.692527 -0.182059 -0.259130 -0.768557 0.363980 0.927044 -0.645754 -0.138966 -0.621599 0.292374 -0.691611 -0.950464 0.768643 -0.213152 -0.016463 -0.211214 0.372071 -0.453621 0.479578 -0.726698 0.238266 -0.119864 -0.863780 -0.944145 -0.026035 -0.334011 -0.087088 0.219732 -0.430713 -0.186832 0.342957 0.522448 0.192579 0.037174 0.292681 -0.812861 -0.848133 -0.461231 -0.129218 0.348057 0.458131 0.080681 -1.231462 -0.179527 -0.428756 1.095020 -0.106549 0.090278 -0.602130 -0.420290 1.129217 -0.119473 0.002863 -0.755518 0.377140 0.614141 -1.608548 0.872127 0.496561 -0.515652 -0.488496 -0.715057 -0.030010 0.810087 1.067968 -0.398684 -0.398681 0.294550 -0.644347 -0.010480 -0.697336 0.748298 -0.200626 0.684359 -0.795179 -0.523928 0.480663 0.555790 0.080268 1.031026 0.586825 0.839743 0.245927 0.958977 0.277030 -0.307527 -0.639323 -1.214571 0.709088 1.524375 0.580555 0.126704 -0.455087 -0.936547 0.005159 0.414589 0.837611 1.127687 -0.015400 0.719216 -0.373345 -0.799697 -0.196438 0.242947 0.260202 -0.469782 0.065043 -0.131484 0.234605 0.415645 0.003213 0.781908 -0.470742 -1.391972 -0.185722 0.788413 0.657001 -0.064618 0.975415 -0.005226 -0.851865 0.182578 -0.103089 0.471334 -0.082817 -0.065058 -0.464647 -0.450456 0.137900 -0.376947 0.693480 0.013171 -0.057131 0.285143 -PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = 3.025614 0.068826 -0.171501 3.859387 0.812727 -2.389176 0.609582 2.635215 -0.466886 -7.273188 -5.446149 2.553888 0.073595 -0.762815 1.822262 0.641159 0.320590 1.054823 -9.564186 2.658003 2.899016 1.613039 -0.032480 -1.627547 1.227265 -1.720959 -0.665603 1.449532 0.659878 4.230923 -2.852230 1.102478 3.316161 0.343066 2.393835 3.514341 -1.077387 -0.001865 0.974058 -0.184659 6.378999 3.490472 -0.353368 2.809201 2.360227 4.303441 -0.726692 3.627236 0.218552 -2.821989 1.732334 -0.814220 -2.923539 0.081565 -3.064342 2.607861 5.001173 2.031188 -2.584983 2.174169 -1.039276 -0.122017 1.154964 -1.839400 4.646092 2.533068 2.273433 2.180842 5.712489 -1.979398 -0.532100 1.846109 3.160209 0.086088 1.665917 -2.741328 -3.257308 -3.952071 -0.378053 -7.855805 -1.579241 -0.703139 6.567733 -4.231477 1.379306 1.996421 0.219887 3.810116 -2.142512 -0.932147 -3.173704 0.449213 -1.957200 6.204329 0.049737 0.835055 0.030172 1.861131 1.792881 3.302069 -0.784695 -2.655328 -3.368681 -9.021571 -1.617082 -1.313213 1.206820 0.938349 -5.371547 -0.817535 0.721866 4.617547 -6.150933 -0.556033 3.014326 1.853487 -0.494798 -0.733319 -3.548416 -0.315499 -0.393040 0.820117 2.017980 -2.458634 -0.595983 -2.324799 0.238100 0.387223 1.775299 -0.327490 -3.406555 -2.450682 -0.431669 -0.252358 -0.597046 0.417183 1.373038 -2.466601 2.726301 -2.706219 3.229645 -5.625489 0.142708 -2.449424 -3.109800 -0.682452 3.797880 3.227084 2.121060 -0.327338 -1.057785 -1.718205 -5.107024 -5.901138 1.855786 -0.427155 2.841092 0.106305 -0.245493 0.850514 -1.738553 -0.853635 0.815844 -2.319725 -0.257954 -1.741233 5.160380 -0.734798 -0.891068 -3.363405 -0.662353 1.933217 -1.246949 1.632059 -1.620650 -3.986797 -5.371484 -3.697897 3.548816 -1.158614 0.600025 -2.203152 0.846188 -3.400843 1.157653 -3.570804 0.542769 -0.621421 -3.043676 -4.292535 -0.690533 -0.865625 -0.223274 -0.307405 -3.001532 -0.460627 3.745103 2.839160 1.316722 0.838212 0.540427 -4.825691 -4.118343 -0.310685 -1.224980 3.730628 2.568818 -0.316246 -3.723448 -1.056601 -4.204691 3.996612 -2.414063 0.443126 -1.598093 -1.667503 5.022311 -1.956659 -1.079264 -3.957271 1.213555 1.056882 -6.699280 5.395840 2.989150 -2.486366 -1.103570 -2.075703 0.927207 2.948612 4.715176 -2.512869 -1.961745 0.712536 -2.115383 -0.310567 -2.096117 3.435141 -2.493335 2.430273 -3.307604 -2.082933 2.337456 2.852887 0.049317 2.398934 0.995656 1.062588 1.921570 3.920250 2.247314 -1.130674 -3.937842 -8.349775 2.276436 1.933732 0.218530 -0.040335 -1.894658 -3.950366 0.135970 0.448682 4.576879 3.325505 -0.187381 3.377072 -4.050177 -4.262404 -1.562710 0.680029 0.459597 -1.739260 0.582990 -1.884343 0.969190 1.345047 0.544877 1.319028 -3.231470 -3.670099 -0.221769 3.521655 1.713352 -0.392620 4.444620 1.290504 -2.832791 -0.232002 -0.043165 0.648337 -0.604799 -2.375427 -2.030545 -1.932278 0.585767 -1.836405 3.135094 -0.318106 0.828871 1.474283 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 2.279102 -0.257716 -0.702248 4.106720 0.491986 -1.205788 0.326583 1.426694 -0.290046 -6.546065 -4.418584 3.848383 0.236195 0.401784 1.045148 0.760172 0.372085 0.414588 -7.432590 1.862933 2.109482 0.768246 0.040656 -0.716182 0.811236 -1.844209 1.829528 1.308170 0.880149 3.752415 -2.112656 1.551658 3.120740 0.174557 2.301757 3.064353 -0.757229 0.103337 -1.175732 -1.024468 5.318026 2.952122 -0.083965 2.536062 1.062095 3.965165 0.635314 2.959860 1.713713 -2.731931 1.062016 0.541980 -2.517572 -0.521551 -2.888223 1.896077 2.489816 1.114401 -2.132290 1.458700 -0.832125 -0.312127 0.910902 -0.820454 4.006218 1.063336 2.646757 2.302878 4.077750 -2.522900 -0.697635 2.283254 2.247510 0.898882 2.392473 -2.180949 -3.891060 -1.262988 -0.443439 -5.585495 -2.223975 -0.453478 5.502839 -3.585927 0.290189 0.626428 -0.422636 3.395400 -1.730867 -0.195356 -3.220239 -0.075546 -1.033479 4.443683 0.739811 0.317053 0.372819 1.351520 1.342900 3.018370 -0.209851 -2.957994 -1.388386 -6.531287 -0.681699 -1.703485 1.789959 1.591648 -4.034741 -0.624442 -0.986148 5.085030 -5.012992 -0.494484 2.655003 1.471961 1.388611 -0.941728 -1.755903 0.076664 0.834682 0.561017 2.814625 -2.243724 -0.037792 -0.363493 0.825181 -0.054905 1.606667 0.381081 -3.111095 -2.767052 0.105674 0.362526 -0.162796 0.368864 1.686322 -1.814331 2.525395 -1.704649 3.053760 -4.238230 0.018620 -1.766114 -2.349335 -1.091254 3.899547 3.145903 3.073726 -0.964578 -0.826136 -1.042330 -4.334894 -5.413605 1.550268 0.371124 1.360652 1.039774 -0.300097 1.917985 -2.045450 0.156924 1.159272 -1.719165 -0.663551 -0.406537 1.933854 -0.127383 -0.589820 -2.509659 -0.621336 -0.152792 -0.331711 2.718757 -1.110976 -6.136826 -5.012289 -3.013376 3.217579 -1.377564 0.234410 -1.724322 -0.401540 -2.107028 0.254469 -3.437041 0.566117 -0.317696 -2.787392 -3.892283 -0.203233 -0.901233 -0.258968 0.404385 -2.710592 -0.574948 3.115739 1.784558 1.286165 0.853945 0.332536 -3.590885 -2.569732 0.592030 -1.928375 3.572928 1.772897 -0.746950 -3.505431 -1.406792 -3.511859 2.999767 -2.296797 0.880426 -1.350394 -1.402233 3.752539 -1.946451 -0.152543 -2.702993 1.327115 1.723238 -6.676524 3.932214 3.323162 -1.643124 -0.634320 -0.103778 0.446924 2.481842 3.450188 -2.536273 -2.292968 0.478966 -1.402049 0.051902 -0.995498 2.524742 -2.073198 0.840909 -2.810290 -1.876385 1.966218 1.771768 0.402658 1.179909 1.352672 0.325050 1.793655 3.372855 2.431723 -0.268189 -3.794710 -7.884148 2.536834 1.505839 -0.554165 0.441360 -1.770738 -2.942415 0.718480 -1.417149 3.607617 0.959305 -1.137115 3.206906 -3.865528 -3.617742 -2.079672 -0.577135 0.146432 -0.578728 1.050735 -1.627568 1.203421 0.631115 -0.313072 -0.267390 -1.771849 -0.925426 0.449549 2.786501 1.601488 0.953640 3.793258 1.261066 -2.447742 -0.570972 0.396987 -0.592257 -0.726723 -4.034845 -1.798183 -0.951693 0.918447 -1.464118 1.184108 -0.336126 0.403577 0.782268 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.190969 0.611965 2.069495 0.028938 0.813661 -0.844582 1.010230 2.522727 -0.732357 -2.577029 -3.589207 -0.807407 -0.794451 -0.696051 1.466524 -1.225945 0.509597 0.360094 -5.104004 0.724110 1.530479 1.077178 0.885966 -0.642510 0.705549 -0.497140 -3.436863 1.573300 -0.007408 1.459645 -0.881087 -0.699635 1.005334 1.074950 0.667244 1.771651 -0.541941 -0.443897 2.469561 -0.229288 2.691089 1.162271 -0.202184 1.437763 1.888243 1.523256 -1.639547 1.213245 -0.287955 -0.934318 1.441641 -4.258064 -1.634681 0.437959 -0.787008 0.822563 3.002498 1.315020 -0.993419 1.521945 -0.639684 -0.341044 -0.058442 -2.946990 0.975396 1.795629 -0.308029 -0.250842 2.119490 -0.858489 -0.890594 1.125488 1.387181 0.370542 -3.274558 -1.422300 0.889546 -4.667770 0.524007 -4.956147 -1.194347 -1.019527 3.023233 -0.849012 1.187962 1.876132 -1.363846 0.281757 -0.486093 -0.962972 -1.116100 0.386017 -0.164364 0.657496 -0.728368 -0.332364 1.227310 0.129653 1.370213 2.093222 -1.557560 0.271949 -4.060549 -4.819012 0.102284 0.608691 0.549689 -0.560658 -1.183645 -0.730831 1.855509 0.698879 -1.430279 -1.116987 1.664700 1.172739 -4.883081 1.502771 -2.695234 -1.404954 -0.261416 0.528728 1.277727 -1.040596 -0.292105 -2.339422 -0.626017 0.018962 0.698042 -0.648491 -0.402845 -1.681409 -0.258834 -0.534743 -0.781775 -0.983752 -0.744243 0.662216 1.059121 -1.170655 1.326881 -2.231209 1.070478 -1.203322 -0.602768 0.269241 2.542892 2.188553 -0.427499 1.544238 0.150842 -0.684129 -0.391906 -0.778654 1.119088 -0.300852 3.464416 -1.396302 0.013418 -0.109378 0.023764 -1.409554 -1.824733 -0.320188 0.600055 -1.419506 2.546982 -0.488522 -0.435019 -1.945312 1.102064 2.473526 -2.845273 -1.274208 -1.213880 1.169120 -0.211139 -2.025352 1.100090 0.087071 -0.043499 -0.258541 1.675905 -0.937957 0.988019 -0.953452 -0.217349 -0.179384 -2.448897 -1.337215 -0.341537 -0.448246 -0.121089 0.326571 -0.134538 -0.732061 2.167406 3.183345 0.823026 0.641405 0.121006 -1.535578 -2.035513 -2.104141 0.371276 1.025845 1.716954 -0.009967 -1.982222 -0.102319 -1.018817 2.537645 0.461640 -0.583557 -1.623791 -0.850765 2.389946 0.098314 0.018927 -1.800220 0.306445 1.107888 -5.088088 0.981474 0.638059 -0.958873 -1.768408 -2.956961 -0.585648 1.715785 2.562363 0.022599 0.071798 0.462476 -1.340042 -0.147769 -1.865308 1.670111 -0.006355 1.597162 -1.549209 -1.455351 1.135988 1.184884 0.036449 2.272076 0.953329 3.513297 1.651762 1.961457 -0.222411 -2.005437 -0.779780 -3.689931 1.154054 5.757903 0.867799 0.533515 -1.014256 -2.603565 -0.697789 0.784159 1.704102 3.522118 0.920736 1.232958 1.061440 -1.087124 -0.133425 1.408518 0.430633 -1.585736 -0.249826 -0.279288 0.428911 1.072865 -0.292850 2.821602 -1.546773 -5.285784 -1.224444 1.361412 1.210466 0.067102 1.593395 -0.181980 -1.552303 0.263922 -0.089731 1.743371 0.320176 0.600760 -0.975634 -1.658712 -0.377215 -0.189081 1.570626 0.769201 0.234622 1.226411 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/coin-change.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.218084 1.338417 -3.405550 9.540456 -0.832981 -1.919156 0.127513 2.255982 -2.461027 -15.103036 -8.788471 6.701708 1.883977 3.255131 1.868886 2.845050 -0.946719 1.229672 -15.288183 3.160689 6.382869 3.140387 1.202379 -0.663303 1.987638 -3.075231 3.517540 0.742929 2.823447 9.086714 -4.332362 4.841051 7.738994 -1.980902 2.679318 5.781061 -0.826755 1.486803 -3.461549 -1.062371 10.155196 4.479456 0.235048 4.410234 -0.456704 8.598793 1.048308 5.667209 -0.236769 -7.479780 2.417792 2.899949 -4.327792 -1.830204 -3.841005 4.201185 5.904319 5.672619 -3.688041 2.261845 -1.080470 -1.390961 2.294501 -0.618179 7.820232 3.864514 6.259593 6.386543 8.232820 -5.202676 -0.471120 3.743709 0.607160 -0.059264 6.245175 -5.367393 -7.850543 -1.304037 -1.866258 -12.556899 -6.276767 0.428152 12.652607 -9.002759 0.525473 0.597747 0.304605 8.234064 -3.320635 1.030701 -6.289008 -1.727386 -3.013990 9.609902 1.341762 -0.233633 -0.298492 3.281298 3.045877 5.134046 -0.110006 -6.033819 -2.921104 -9.716313 -2.856902 -3.535660 4.370207 7.009165 -10.244945 -2.481269 -3.486198 9.259313 -13.121769 0.240208 5.535294 5.861115 6.836185 0.802281 -6.072947 1.247745 1.889713 -0.471806 6.471126 -4.215534 1.285187 -0.663131 0.683827 -0.223334 1.886936 1.361422 -9.737915 -6.825497 -0.919844 -1.943764 0.738117 2.357554 5.771871 -3.716363 6.032307 -4.169754 6.203025 -10.512159 -1.392523 -1.772328 -7.453413 -3.084450 5.723765 6.605155 5.087272 -4.723645 -5.120137 -2.410366 -10.481353 -9.514414 1.865835 1.981042 2.367337 4.789448 -1.518488 5.376118 -4.835702 2.020095 3.782492 -2.330388 -1.810272 -0.293625 6.158389 0.191892 -0.718928 -5.568372 -2.592723 -3.654473 0.013196 8.266592 -1.683843 -10.235988 -13.870055 -5.394211 7.560328 -2.830136 0.652295 -5.057213 -1.640792 -6.508147 -0.034973 -8.528426 -0.006004 0.050514 -5.197340 -8.817762 1.488656 -1.247375 -3.611286 1.214728 -5.979379 -2.031668 7.192311 2.719157 3.627587 -0.611455 0.597239 -7.717728 -5.274865 2.770561 -6.451620 6.646984 3.666593 -1.857904 -7.339444 -3.045036 -7.629971 6.022417 -2.494409 2.526940 -3.027174 -0.035883 7.841428 -5.545276 0.408347 -6.702836 1.996449 3.839232 -14.322010 9.241716 5.379372 -1.687181 0.937886 2.450029 1.198403 5.124653 3.787159 -5.271758 -6.563346 0.635272 -2.608931 0.744727 -3.035916 4.729639 -6.532994 0.567057 -4.347757 -2.435781 4.299651 3.569251 0.603311 2.656763 3.810549 -2.360142 3.174165 5.740178 6.785271 -1.696654 -5.750326 -13.434294 5.903037 -1.496359 -1.851378 -1.776012 -3.412640 -4.516719 3.429534 -2.183652 7.374554 1.020957 -3.299502 6.864053 -10.756436 -7.920691 -4.882842 -0.684692 0.422846 0.177067 -0.258223 -2.821830 4.038705 3.742157 -1.691520 -0.791598 -5.658194 -0.203919 0.983995 7.391467 1.018384 3.206871 8.710016 2.779961 -4.208736 -1.015082 1.809201 -1.518027 -3.380118 -8.177537 -2.970462 0.137624 2.194904 -3.977424 1.290687 -2.996829 -1.995439 2.375087 -PE-benchmarks/coin-change.cpp__main = 0.563969 -0.006992 0.324182 0.430152 0.278870 -0.508219 0.396080 0.706700 0.031009 -1.301575 -0.813077 0.087238 -0.072770 -0.327479 0.296451 -0.033189 0.072997 0.663215 -1.136616 0.361382 0.507472 0.609414 0.142384 -0.543778 0.170517 -0.122582 -0.836060 0.270222 0.215869 0.857080 -0.497158 -0.261731 0.639902 0.081720 -0.069924 0.802697 0.674723 0.049082 0.426413 0.010194 1.180772 0.341636 -0.048537 0.701987 0.508694 0.780592 -0.340431 1.060008 -0.234527 -0.478575 0.471901 -1.186610 -0.592412 -0.081902 -0.483386 0.701846 1.255555 0.909304 -0.453257 0.678949 -0.091912 0.052873 0.229797 -0.713142 0.388153 1.010313 -0.152099 0.331035 1.399714 -0.527590 -0.250261 0.362578 0.666363 0.068521 0.141328 -0.615701 -0.090086 -1.645890 -0.117033 -1.248098 -0.143710 -0.250848 1.555415 -0.920837 0.533398 1.101676 0.067489 0.453710 -0.282738 -0.227893 -0.573159 0.241895 -0.155945 1.239989 -0.055393 0.112368 -0.247094 0.200740 0.448940 0.617695 -0.013220 -0.218472 -1.357872 -1.742869 -0.549960 -0.175119 -0.141206 -0.048539 -1.033184 -0.376284 0.953039 0.573214 -1.294782 -0.135101 0.714954 0.556884 -0.262629 0.288356 -0.851486 0.027629 -0.138151 -0.130663 0.054413 -0.674605 -0.320202 -0.578453 -0.253754 -0.003651 0.139518 -0.349047 -0.680048 -0.420681 -0.305225 -0.067847 -0.056858 -0.159344 -0.057522 -0.721787 0.429621 -0.670199 0.489000 -1.075702 -0.151231 -0.141531 -0.835671 -0.128809 1.543141 0.097763 0.496044 0.138842 -0.557684 -0.753956 -0.559652 -1.050752 0.466367 -0.223773 0.947741 0.025150 -0.040392 -0.219168 -0.188976 -0.464836 -0.166352 -0.376911 0.144967 -0.192975 1.223156 -0.586457 -0.142963 -1.160282 0.121386 1.047347 -0.234915 -0.189477 -0.478148 -0.079973 -0.572906 -0.788438 0.662033 -0.141268 0.204147 -0.240098 0.228076 -0.732792 0.346801 -0.499275 0.261265 0.003990 -0.873846 -0.924067 0.170177 -0.238674 -0.210704 0.225298 -0.503571 -0.010693 0.117221 0.636200 0.114645 0.056672 0.145902 -1.322532 -1.170597 -0.585859 -0.014706 0.662925 0.502213 0.344638 -0.569838 -0.167240 -0.719689 0.859550 -0.836420 -0.084585 -0.274395 -0.044739 1.098088 -0.299692 -0.239596 -1.269320 0.331391 0.308068 -1.006676 1.096393 0.423861 -0.524369 -0.423557 -0.682280 -0.009238 0.736066 1.175973 -0.500628 -0.442266 0.541061 -0.476866 -0.141021 -0.739966 0.611017 -0.352122 0.861029 -0.670508 -0.375632 0.173710 0.873579 -0.215312 0.610078 0.435922 0.495374 0.034723 0.869845 0.308670 -0.380017 -0.562719 -1.303406 0.536045 0.756933 0.274250 0.139869 -0.717798 -0.551338 0.344297 0.552686 0.829409 1.025702 0.481646 0.666044 -0.674154 -0.788978 0.347701 0.272996 0.460929 -0.680163 0.222179 -0.345343 0.124950 0.306882 0.075596 0.490120 -0.584565 -1.150136 -0.215096 0.832057 0.284308 -0.216099 0.951500 -0.008795 -0.591516 0.349079 -0.209173 0.670713 -0.135114 0.104194 -0.077661 -0.391792 0.077178 -0.383004 1.157451 -0.164443 -0.269131 0.496158 -PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 3.178238 2.824024 -6.047574 14.027410 -2.092012 -2.440330 -0.459383 1.574756 -4.568318 -20.433045 -11.550993 6.366205 3.421899 4.542473 3.046053 4.704398 -2.125560 1.400996 -20.416960 3.921499 9.624001 3.818091 1.645895 -0.464386 2.475101 -4.280333 4.754735 0.224874 3.372946 12.426398 -5.399337 8.388848 10.560924 -3.284399 3.116118 7.080648 -3.198612 2.997336 -4.336379 0.174746 12.764177 5.287493 0.627363 4.143645 -1.774448 11.408273 0.916949 6.166859 -3.183422 -10.257508 4.121223 7.184865 -4.323706 -2.273613 -4.430216 4.897391 8.927173 8.335114 -4.089631 2.536084 -2.895263 -1.494659 3.383430 0.545263 11.542821 5.705773 9.493373 9.404275 10.473479 -6.225883 0.509170 3.740969 -1.617660 -2.546679 8.872573 -6.867672 -11.031422 -0.071704 -3.539072 -16.950810 -7.862991 2.053440 17.024396 -11.851121 -0.423204 -0.570745 2.135836 12.025098 -4.696714 2.007522 -7.611006 -2.632654 -5.997015 13.815419 2.162239 0.091828 -1.118942 4.662448 3.778782 5.810419 -0.747585 -8.048964 -2.881835 -11.974004 -5.349659 -4.771322 6.833314 10.604155 -14.976249 -3.147502 -5.431343 10.341663 -18.481224 1.069155 6.696580 9.110634 10.532821 0.605371 -9.740021 1.809037 2.243556 -0.141219 9.012641 -4.642395 2.637407 -2.410491 0.597390 -0.275452 2.264113 1.813865 -13.510996 -8.563556 -2.096321 -4.624247 1.761997 4.808872 9.250639 -4.077891 8.036579 -5.919906 8.589240 -15.326494 -1.864207 -2.838368 -11.368555 -4.191351 4.103464 9.617409 5.529538 -7.934253 -7.958616 -2.441729 -15.811039 -11.945774 0.834363 3.140858 2.476880 6.900631 -2.497437 7.587068 -6.934622 4.401792 7.006773 -2.884597 -2.751265 -0.516251 10.500680 1.358097 -1.539635 -6.924788 -4.648547 -7.112610 0.042990 12.888847 -1.305560 -11.684077 -21.022457 -6.552790 10.273683 -4.073546 0.629182 -8.167831 -2.325426 -10.125258 0.034480 -11.790688 -0.964707 0.721908 -5.462414 -11.772206 2.094260 -0.999331 -5.727040 0.884834 -8.424107 -3.077781 11.685990 2.251888 5.506704 -1.204644 0.616493 -9.118452 -6.534981 5.157478 -9.579050 7.245138 5.666674 -2.763188 -9.134607 -3.963463 -10.517261 7.116409 -0.198145 3.721652 -3.784297 0.634806 9.820355 -8.237830 0.520423 -8.500665 1.293521 3.864702 -18.686714 12.497787 6.122184 -1.820297 2.367744 3.883103 2.685400 5.423338 3.068261 -6.634087 -8.583549 -0.104658 -3.155036 1.175509 -3.436127 5.687288 -10.034043 -0.716702 -4.970828 -2.228375 6.574200 4.648214 0.631055 3.266529 4.473845 -5.316292 5.012863 6.228843 9.960243 -3.042576 -6.579373 -16.699362 7.167430 -6.868833 -3.134923 -4.577269 -2.857703 -5.664675 4.715359 -1.896587 9.803471 1.886496 -5.776070 9.037491 -14.928299 -10.711033 -7.936832 -0.173796 0.316282 0.172160 -2.725472 -3.803217 5.815105 6.061723 -1.824616 -0.735049 -9.364802 0.719328 1.458276 11.021142 -0.326913 3.859161 11.646613 4.488667 -4.708997 -2.384871 3.107833 -3.298416 -4.291275 -10.879044 -4.152358 1.028827 3.230232 -5.624862 0.946196 -4.996780 -2.880474 3.992020 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.372645 0.107032 0.506774 0.407704 0.089953 -0.327882 0.408773 0.802828 -0.123138 -1.376649 -0.829368 -0.568620 -0.093897 -0.144746 0.519046 -0.144037 -0.009439 0.580689 -1.856419 0.215783 0.880994 0.659566 0.618599 -0.480664 0.299381 -0.152957 -1.205480 0.214677 0.212289 0.983262 -0.560813 -0.039468 0.702603 0.239327 -0.053806 0.676823 0.299670 0.085087 0.617830 0.116778 1.041135 0.412839 -0.274352 0.325196 0.249012 0.795006 -0.501236 0.595271 -0.460728 -0.608558 0.403948 -1.563189 -0.475581 0.160846 -0.229377 0.547238 1.340425 1.280654 -0.252638 0.643843 -0.441763 0.144081 0.182202 -0.891629 0.442056 0.971398 -0.127449 0.325858 1.140908 -0.510088 -0.021025 0.006179 0.134559 -0.383450 -0.262615 -0.451104 0.131117 -2.442748 -0.025599 -1.661657 -0.379764 -0.042726 1.135393 -0.875730 0.685338 1.122817 0.113410 0.568806 -0.319130 -0.052197 -0.585796 0.193243 -0.087932 1.172213 -0.035469 -0.031959 -0.077979 0.268862 0.541801 0.463237 0.025595 -0.035897 -1.440288 -1.696892 -0.410310 -0.066419 0.138059 0.184879 -1.005210 -0.194795 1.324896 0.361239 -1.346289 -0.060857 0.560281 0.849774 -0.864231 0.182983 -0.813949 -0.041207 -0.306574 -0.044388 0.261735 -0.903054 -0.077665 -0.831586 -0.414000 0.122535 0.253450 -0.357369 -0.416257 -0.452372 -0.227800 -0.407758 -0.052824 0.134345 0.108616 -0.237987 0.480300 -0.904208 0.589277 -0.873464 0.201404 -0.087741 -0.675508 -0.149363 1.407465 0.355880 -0.271977 0.219766 -0.678610 -0.527266 -0.505261 -0.840714 0.321800 0.076123 1.183214 0.033399 -0.151720 -0.100962 -0.292076 -0.198554 -0.421971 -0.325349 0.091614 -0.167927 1.059912 -0.376937 -0.233533 -1.049522 0.228273 1.042394 -0.760632 -0.087286 -0.386815 0.700098 -0.749658 -0.825133 0.742111 -0.160462 0.120484 -0.467367 0.507916 -0.749065 0.474359 -0.489428 0.158945 0.198172 -0.809301 -0.960991 0.162794 -0.227039 -0.177605 0.312070 -0.427041 -0.130672 0.238083 0.588759 0.209382 -0.004588 0.280283 -0.969568 -1.029240 -0.612015 -0.211991 0.239886 0.332550 0.140164 -0.543860 -0.233429 -0.463626 0.995670 -0.157172 -0.007037 -0.614701 -0.140480 0.969358 -0.189506 -0.355352 -1.154031 0.175347 0.320478 -0.614302 0.966105 0.146482 -0.400601 -0.343897 -0.904598 0.126432 0.677260 1.018347 -0.360029 -0.362393 0.298279 -0.559385 -0.062035 -0.657819 0.576702 -0.481440 0.553026 -0.504964 -0.247842 0.327532 0.741540 -0.162744 0.902395 0.710047 0.628838 0.306504 0.657424 0.296718 -0.655348 -0.386820 -0.991070 0.537034 1.078219 0.483263 -0.264558 -0.702249 -0.599741 0.269792 0.980147 0.765477 1.796112 0.389924 0.657475 -0.475656 -0.687500 0.110997 0.443563 0.312687 -0.715079 -0.253039 -0.159642 0.287710 0.618724 0.090703 0.890883 -0.800057 -1.487434 -0.274813 0.855683 0.157984 -0.237922 0.950066 0.134703 -0.623040 0.252133 -0.171040 0.475870 -0.198123 0.562058 -0.061381 -0.204876 0.040959 -0.440237 0.921449 -0.128407 -0.468806 0.486637 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = 5.364649 2.581166 -6.152632 14.620241 -2.244421 -4.284291 1.182323 1.588824 -5.631806 -23.271991 -13.312159 7.120515 4.292656 4.651107 1.438679 6.505342 -3.776499 3.026354 -23.543701 4.433719 10.777875 4.718936 2.649445 -2.486985 2.488915 -4.721025 3.844681 1.429561 3.380878 14.723948 -6.315914 7.261634 12.732127 -2.953391 2.032024 10.013501 -1.079195 4.087747 -3.868017 0.496377 14.263831 5.944369 1.056473 3.513574 -2.268361 13.412599 3.283967 10.689506 -5.321242 -11.640141 5.769876 2.856776 -7.436794 -2.773698 -4.896304 5.637731 11.957026 11.687959 -4.570124 4.580748 -1.986798 -0.879301 4.407055 0.602261 12.680400 7.218687 9.265927 8.658239 13.650305 -8.473605 0.180683 4.805749 -0.824250 -4.567892 10.839289 -11.667904 -12.626692 -0.139052 -1.666653 -21.849625 -8.796270 4.023572 20.987817 -14.416117 -0.381374 1.647292 2.500003 13.543202 -5.576102 1.707452 -8.547816 -1.464210 -7.440883 20.781161 2.326768 0.441567 -1.672850 5.577410 6.210052 7.204153 -1.423703 -8.636103 -5.779494 -15.742865 -5.175712 -5.993436 5.862359 11.505681 -17.646582 -6.418225 -5.164671 11.977653 -22.502647 1.513962 10.339250 11.079398 12.021979 1.241103 -10.362690 3.763923 1.394814 -0.469727 10.619303 -6.348127 1.668642 -1.276534 1.703861 -0.126727 1.488939 0.962463 -19.147779 -8.977497 -2.105158 -6.541384 2.562676 4.698136 9.179499 -4.739742 8.811345 -8.717786 9.205168 -19.255354 -0.808993 -2.119386 -16.245226 -4.570978 4.967995 9.846040 5.618634 -9.719115 -8.155845 -3.702218 -17.542070 -16.939086 1.430480 3.344152 4.340360 6.561671 -2.779025 6.869913 -7.956868 3.531243 7.950876 -3.344056 -3.193995 -1.053368 15.874974 0.911146 -2.802598 -7.460997 -4.916432 -6.497675 0.730142 13.974568 -2.411804 -15.317075 -23.404153 -9.234585 12.316129 -4.242609 0.249744 -9.774992 -2.811479 -13.839760 0.877643 -12.860508 0.789466 2.195320 -6.835749 -14.307329 2.147053 -1.285049 -6.237331 1.380676 -9.915107 -4.135502 12.790715 1.643033 5.998424 -1.274190 1.847320 -11.699781 -8.471267 5.332018 -9.792754 8.248080 7.206003 -0.862721 -9.984167 -4.080693 -12.587330 7.658036 -1.084514 3.580507 -5.519255 2.531235 13.499773 -9.275777 3.268054 -9.450067 2.262610 4.634244 -21.683019 17.096185 9.099467 -2.229849 1.613414 4.536041 1.623505 7.427812 5.426904 -9.007796 -11.309185 1.115129 -5.664437 0.662346 -2.990212 6.982293 -11.873644 1.130236 -5.805972 -2.452145 5.401808 6.907134 0.226295 4.959651 4.751921 -5.572011 4.530525 8.103429 8.491922 -4.209232 -7.934939 -23.840331 8.989896 -7.453539 -3.713994 -3.928362 -2.935570 -6.010409 7.137803 -1.481232 12.231982 5.078589 -7.449165 10.639949 -17.472618 -13.151908 -8.176290 -0.044919 1.474056 -0.530385 -3.834153 -4.398233 6.629355 6.786210 -2.414935 0.410267 -11.078373 -0.390375 1.167739 14.851631 -0.528012 2.861916 14.645523 2.587370 -3.531324 -2.598095 2.277928 -0.349403 -3.306209 -10.322673 -4.726362 0.364126 4.683443 -6.383779 3.548603 -5.807497 -4.193997 6.357282 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/karatsuba.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = 3.548867 0.079755 -0.849604 4.200185 0.782076 -1.072221 0.319640 2.122963 -0.743940 -8.286473 -5.704056 5.256524 0.183248 0.823378 1.335858 1.356924 0.843675 0.380864 -8.942765 2.025103 2.520843 0.704448 0.050847 -0.257871 1.191246 -2.213433 0.874651 0.979097 1.279234 4.566596 -2.959194 2.036033 3.833854 0.106356 2.449165 3.362518 -0.896259 -0.457096 -0.829974 -1.887043 6.637673 2.858194 0.529578 3.314173 1.184266 4.673926 -0.907962 5.856164 2.553230 -3.400944 2.398806 -1.222054 -3.429691 0.709426 -3.511792 2.674986 2.473240 1.127290 -2.405595 1.649560 -0.988566 0.094053 0.860693 -1.963284 4.691659 2.249020 2.894071 2.542155 4.937224 -2.928596 -0.777399 2.915048 2.382362 1.531789 2.149343 -2.829363 -2.977475 -1.642370 0.041901 -6.537628 -2.476817 -1.399596 8.395644 -4.503328 0.172268 1.199245 -0.195246 4.316411 -1.941116 0.626268 -4.077875 0.302496 -0.836574 4.800983 0.493580 0.612931 -0.256320 0.979607 1.196237 3.521948 -0.776527 -2.967239 -3.347643 -7.339241 -1.398264 -1.717815 2.077920 2.022622 -5.575324 -0.173224 -0.298410 6.491394 -6.062359 -0.751092 2.931180 1.868681 1.660004 3.087692 -3.248171 -0.910172 1.051795 0.895824 2.680204 -2.148576 0.108227 -1.854994 0.464942 -0.227934 2.175807 0.073195 -5.028195 -3.238396 0.243965 -0.351262 -0.185009 0.463233 2.364452 -2.018782 3.255492 -1.490178 2.879310 -5.290369 -1.064271 -2.310328 -3.454148 -1.335994 6.496367 5.000501 4.201798 0.033250 -0.900680 -2.174396 -5.354308 -5.591850 1.076673 -0.346041 2.304544 1.408982 -0.187099 2.311605 -2.295774 -0.095105 0.446503 -2.312889 -0.922586 -1.212518 3.265898 -0.818925 -0.500625 -3.863210 -0.754215 0.075492 -1.837091 2.767961 -1.146691 -7.193472 -6.088063 -3.943192 3.826509 -1.729056 1.057823 -2.063569 0.330831 -2.203583 -0.370924 -3.771305 0.015992 -0.142490 -4.006668 -4.753429 0.264695 -0.954929 -1.601768 0.514533 -3.335219 -0.412238 4.283251 2.966071 1.846591 0.992258 -0.437511 -4.826765 -3.774822 0.058767 -2.605678 4.028879 3.244620 -1.237886 -4.281264 -2.141108 -4.669469 3.934716 -4.258864 1.032465 -1.623019 -1.283482 4.168231 -2.665567 -0.232252 -3.620052 1.708338 1.826524 -9.895355 4.700129 3.436558 -2.289379 -0.920732 -1.587458 0.988289 3.167372 4.486760 -2.525180 -2.067722 0.541319 -1.443879 -0.018239 -1.057024 3.482043 -2.529513 1.173435 -3.490639 -2.379483 2.531290 2.462556 0.282057 1.389779 2.150568 1.296134 3.514589 4.019884 2.723263 -1.271386 -3.991942 -10.820688 2.811624 3.356632 -0.984160 0.991874 -3.048446 -3.508908 0.671718 -2.445379 4.462330 -0.286007 0.213472 3.759562 -4.399238 -4.218547 -1.764153 -0.363935 -0.056893 -0.699571 1.398550 -1.759525 0.993419 1.118000 -0.195590 -0.046870 -2.685773 -2.503865 0.329490 3.718431 2.166184 1.577276 4.490833 1.907976 -2.802977 -0.362851 0.245040 0.347168 -1.148859 -4.984586 -1.822993 -1.019678 0.400390 -1.984978 1.673424 0.179494 0.089766 0.775159 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 2.716642 0.153794 0.162644 2.204544 1.255812 -2.013032 -0.126959 2.686106 -0.832952 -3.763975 -3.500315 1.245638 -0.360703 -0.153992 2.530647 0.474260 0.149256 0.153297 -4.945723 2.249348 0.456454 0.750867 -0.654617 -1.637083 1.079725 0.397871 -1.263669 1.064281 0.490995 1.668244 -2.438912 0.125519 1.260547 0.447249 1.906365 0.331176 0.917524 -0.370473 -0.158920 -0.669900 4.688309 1.538526 0.252582 2.800393 2.098505 2.041290 -1.407910 4.086760 -0.014586 -1.095249 2.517010 -3.460887 -1.737510 0.926656 -2.362027 2.759567 3.290678 0.877497 -1.926275 1.575792 -0.064460 0.100450 0.551372 -2.640850 3.298905 2.098894 1.768827 0.911034 3.730585 -0.995434 -0.951110 1.525070 3.555280 0.747663 -0.705969 -3.249710 -0.081031 -4.796760 0.746057 -4.280214 -0.313197 -1.729275 4.659064 -2.652641 1.338134 2.516964 -0.937249 1.702723 -2.250992 0.323766 -1.709165 0.096397 -0.716731 3.205447 -0.727848 -0.008953 0.736844 0.766076 1.457108 2.953702 -0.669559 -0.130230 -3.152286 -4.965261 -1.921681 2.014412 0.348462 -0.670953 -2.510612 -0.546493 1.269976 1.642370 -2.535024 -1.607586 2.086935 0.988619 -0.550723 1.847649 -2.615145 -1.070837 0.092590 1.225536 1.022117 -1.550252 0.181152 -2.610144 -0.220474 0.426767 2.312750 -0.312778 -1.710497 -1.677128 -0.824115 -0.047168 -0.937843 -1.704685 -0.440427 -2.120143 2.205384 -0.471877 1.526175 -3.696385 -0.991623 -1.785705 -1.665762 0.597888 4.955548 1.301531 2.264241 2.191331 -1.193368 -1.581775 -2.368999 -2.982007 1.525294 0.269567 2.083704 -0.045589 0.282279 0.441650 0.038452 -2.212112 0.605684 -2.216886 -1.196256 -2.252678 2.469530 -1.138593 -0.528402 -3.692980 1.228696 2.877624 -1.788603 -0.177358 -0.520789 -2.618477 -1.502639 -2.320558 1.688923 -0.011415 1.148247 -0.093660 1.661950 -2.834535 0.629958 -2.782255 1.121436 0.096701 -3.440347 -2.036439 -0.314642 -0.274924 0.242797 -0.448059 -1.329388 0.317105 1.162351 3.671650 -0.035581 1.306700 0.718093 -4.396374 -4.758013 -1.907257 0.249467 2.948425 0.671590 0.433147 -2.015526 -0.476703 -2.248702 2.974639 -3.077748 -0.585853 -1.299643 -0.420881 2.790891 -1.341350 -1.437603 -3.221015 0.849108 0.993312 -4.491487 2.770741 1.513185 -1.838550 -1.680058 -3.168745 0.894677 2.085490 5.081258 -0.930015 -0.285810 0.536898 0.281215 -0.733970 -2.423264 2.900638 -0.839762 1.166468 -2.290064 -2.323473 0.564456 2.236517 0.524220 1.798503 0.926471 2.364307 -0.100127 3.361599 0.752781 -1.501156 -1.562744 -5.431559 0.853851 4.765754 -0.122642 0.769783 -2.665018 -2.805369 -0.888809 0.522467 2.578593 2.683467 2.221629 1.771952 -1.620494 -2.172621 0.052837 1.701446 -0.428795 -1.888046 0.484218 -1.479965 -0.004697 1.177359 -0.154982 0.703778 -0.994487 -4.729501 -2.061462 1.456774 0.886148 0.276308 2.745384 1.549846 -2.050496 0.427578 -0.134858 1.363460 0.327693 -1.113206 -1.477658 -2.057377 -0.894870 -0.884956 1.793939 0.622583 -0.137524 0.765889 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.547954 0.990651 -1.616887 5.567892 0.703616 -1.641130 0.114950 2.498843 -0.983715 -9.602232 -6.508139 4.079872 0.620885 1.742908 2.858820 2.110272 -0.358514 0.564131 -8.776391 2.393763 3.214269 1.285633 0.556931 -0.785883 1.627579 -0.945567 0.124477 0.747565 1.828825 5.505065 -3.640314 2.486487 4.637059 -0.422007 2.143184 2.417136 0.637038 0.283791 -2.148250 -0.987873 7.539381 2.752999 0.538715 3.844563 0.547193 5.442572 -0.385722 7.270144 1.744955 -4.075990 3.431591 -2.796817 -3.376627 0.634711 -2.959559 4.174967 4.450961 3.259867 -2.676323 2.145418 0.065840 -0.299777 1.026298 -2.805375 5.523703 4.116359 3.507282 3.527773 6.076221 -3.085108 -1.102926 2.164499 2.274615 0.250823 2.261465 -5.459600 -2.568365 -3.199449 0.529871 -7.760538 -3.158279 -1.600453 9.386942 -6.614803 1.093527 2.272970 -0.279242 4.783375 -2.841891 1.058947 -4.253388 -0.460329 -1.086870 6.847888 0.029836 -0.354993 -0.083626 1.357703 2.564389 4.089951 0.418183 -2.095231 -4.812877 -6.519593 -2.765682 0.276095 2.434825 2.964300 -5.718791 -1.589772 -0.594766 3.274822 -7.849218 -1.293911 4.742794 3.684135 2.599134 4.180212 -4.702930 -0.157354 1.813452 0.622397 3.384581 -2.567253 0.580098 -2.625255 -0.293220 -0.191214 2.689889 -0.174341 -6.294655 -3.985570 -1.690479 -0.666155 -0.047368 -0.722126 2.097089 -2.930475 4.585699 -1.607089 3.519542 -7.202629 -1.882608 -2.032823 -3.812955 -1.175937 8.268447 3.934220 5.029682 -0.265208 -3.382441 -2.931035 -6.305069 -5.576799 1.569247 0.748661 2.795924 2.698257 -0.649053 2.864243 -2.177698 -0.387618 2.181023 -2.710689 -1.917535 -1.418227 4.030468 -1.289948 -0.917752 -6.070868 -0.500499 0.219391 -2.211472 3.182667 -0.695991 -6.918852 -7.118174 -4.466239 4.600605 -1.515680 2.008530 -2.575294 0.989664 -4.909180 -0.757137 -5.779560 0.674166 1.163141 -5.520680 -5.482097 0.908233 -0.627087 -1.725216 0.749322 -3.820330 -0.902955 4.024939 5.129205 1.831722 0.604420 0.234745 -6.833530 -5.919053 -0.481919 -3.404252 4.258243 2.224504 -0.389844 -4.376249 -1.759243 -5.366241 4.177004 -4.661157 0.602460 -2.713036 0.572210 5.200136 -3.555171 -1.211885 -5.461677 1.403060 2.596441 -10.030544 5.182196 3.212855 -1.460282 -0.752477 -1.103177 1.197180 3.933251 5.462541 -3.064398 -3.539859 0.307049 -1.241435 -0.108952 -2.083943 4.421669 -3.991722 0.683979 -3.560293 -2.459623 2.144630 3.720601 0.649367 2.860430 3.195173 1.097695 2.308474 4.426896 3.371543 -2.333398 -2.653254 -10.158941 3.037483 3.312503 -1.107333 0.122914 -4.118055 -3.249084 1.033889 -0.925830 5.038850 1.060789 0.920558 4.439006 -5.514695 -4.989697 -1.524199 0.572908 0.012965 -1.400982 -0.416913 -1.704038 1.579398 2.854532 -1.318531 0.447933 -3.477323 -3.374878 -1.150760 4.847244 0.138013 2.597744 5.713790 2.302703 -3.012390 0.164565 0.107532 0.785563 -1.042254 -4.792385 -1.860995 -1.051490 -0.041019 -2.275961 1.486435 -1.363066 -1.980674 1.340707 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.163933 0.183464 -0.085809 0.814044 -0.046911 -0.257503 0.139751 0.060056 -0.453669 -1.546164 -0.812180 -0.074606 0.182672 0.337911 0.185863 0.176636 -0.116590 0.404652 -1.510548 0.163995 0.817140 0.586374 0.358567 0.000939 0.208884 -0.132481 -0.287768 0.051945 0.285686 1.001166 -0.516300 0.446046 0.852546 -0.278991 -0.174692 0.624062 0.343062 0.254565 0.041847 0.243774 0.999983 -0.188768 0.385930 0.361062 -0.098829 0.847108 -0.051674 1.036307 0.047532 -0.802688 0.699085 -0.419166 -0.264242 -0.128302 -0.278152 0.469159 0.972888 1.139950 -0.320127 0.359798 0.163000 -0.041967 0.271137 -0.314359 0.621798 0.902595 0.232441 0.470419 1.062455 -0.425750 0.031540 0.113543 -0.130115 -0.232429 0.306764 -0.946975 -0.231183 -0.705196 -0.297168 -1.365783 -0.399773 0.109488 1.213819 -0.932172 0.137203 0.372562 0.009513 0.779681 -0.123420 0.110037 -0.596283 -0.059148 -0.259202 0.956147 -0.024403 -0.092006 -0.191354 0.131453 0.322695 0.394510 -0.172973 -0.411735 -0.775071 -1.119304 -0.765053 -0.228992 0.182667 0.638007 -1.382906 -0.399481 -0.319556 0.296186 -1.601240 -0.071216 0.516647 0.924588 0.142972 0.565972 -1.016022 -0.122083 0.087177 0.002217 0.478292 -0.357345 0.154469 -0.796046 -0.318073 0.024572 0.016573 -0.198603 -0.738423 -0.687110 -0.460986 -0.383633 0.124896 0.167249 0.520974 -0.143913 0.584004 -0.596770 0.461905 -1.219469 -0.415296 -0.048558 -1.085042 -0.317089 0.735242 0.305837 0.321626 -0.452482 -1.014233 -0.411868 -1.012518 -0.802479 0.027684 -0.094776 0.609593 0.643674 -0.253664 0.280266 -0.393124 -0.105453 0.351892 -0.116720 -0.201701 -0.277563 0.675227 -0.152792 -0.071108 -0.879540 -0.114006 -0.031982 -0.274672 0.637923 -0.251255 -0.272562 -1.337944 -0.604845 0.777119 -0.231004 0.173029 -0.586294 0.028401 -1.101107 0.123813 -0.794064 -0.487308 0.092622 -0.651198 -0.957902 0.301849 -0.170800 -0.498531 0.207772 -0.694967 -0.178053 0.712989 0.634293 0.506825 -0.254523 -0.071252 -0.969919 -0.847824 -0.071166 -0.553765 0.284812 0.347487 0.135169 -0.662532 -0.319704 -0.680826 0.557246 -0.188075 0.139006 -0.081841 0.325678 0.854560 -0.587584 0.254048 -0.701181 0.053593 0.338528 -1.799913 1.066946 0.183793 -0.269943 0.005040 -0.096668 0.176019 0.468860 0.344836 -0.433351 -0.568937 0.246042 -0.201758 0.037042 -0.769850 0.431675 -0.657507 0.217065 -0.427858 -0.243065 0.341360 0.634878 -0.141636 0.254778 0.513368 -0.079666 0.273260 0.587686 0.409977 -0.379348 -0.027555 -1.312309 0.523900 0.222792 0.059096 -0.092327 -0.579738 -0.188260 0.589242 0.115560 0.831076 0.487328 0.156992 0.709774 -0.931244 -0.790378 -0.215186 0.099699 0.267067 -0.142750 -0.335851 -0.373892 0.367945 0.558435 -0.061997 0.232531 -0.829247 -0.514292 -0.001436 0.940471 -0.237370 0.300372 0.991088 0.073891 -0.255677 0.085804 0.102194 0.350740 -0.326973 -0.249925 -0.140583 0.050756 0.170088 -0.484999 0.508826 -0.750668 -0.387129 0.472390 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 11.638307 -0.621551 2.338627 12.579147 3.234320 -7.734351 -2.363470 12.327419 -5.957181 -19.429656 -18.440361 4.733627 -2.789613 3.811297 14.472499 -0.527893 -0.848051 -2.278202 -30.599946 9.936767 3.336159 2.415929 -0.071839 -6.685210 7.004742 4.212356 1.887310 5.449493 3.660519 8.937962 -13.091764 2.814276 5.768617 2.877245 9.325082 -0.746907 -1.059424 -1.778135 -4.994829 -7.482011 21.434776 6.720481 0.390114 13.963633 6.666461 7.583209 -2.660036 13.096262 5.992388 -7.194107 10.995101 -12.752270 -6.575370 3.847649 -10.226729 10.111397 15.836738 5.584224 -7.719344 4.387924 0.768477 0.815478 2.579485 -12.374244 16.369908 6.626301 13.044801 5.020731 13.908374 -7.625246 -1.346131 6.832420 13.928045 3.670749 -5.651591 -16.150133 -0.668880 -22.568413 3.198769 -23.237361 -5.753489 -6.836893 14.683106 -9.882029 6.357490 6.228327 -7.934258 9.679757 -11.590274 5.778437 -6.672993 -1.140016 -3.009081 10.525066 -4.099327 -2.432931 8.529313 3.388298 6.274006 15.592348 -2.444849 -0.309670 -6.686872 -22.240492 -5.949873 12.249877 4.851902 0.567270 -9.961696 1.003509 0.203790 4.588093 -9.013058 -10.592974 7.261353 7.590670 -6.964364 3.436480 -10.278285 -7.664758 0.567501 8.704432 9.759913 -8.742807 6.585372 -11.114579 -1.339078 4.527416 13.527378 2.954534 -2.104979 -13.102409 -2.253572 1.371969 -6.280053 -5.349646 2.353172 -2.326813 11.040874 -1.188325 8.357191 -16.330941 -2.574897 -7.817536 -1.879794 2.342399 17.421848 6.504331 5.931879 9.620314 -6.373595 -3.068044 -8.985458 -11.009627 7.417539 7.457495 7.092551 3.216576 1.138321 8.228961 -1.387731 -10.435743 3.117372 -8.887256 -8.635954 -11.801922 3.210929 -1.652832 -1.538160 -14.292073 9.409977 7.989666 -11.765634 4.222957 -0.055680 -11.270205 -10.000331 -10.080220 9.627233 -0.466555 0.597779 0.087749 7.975226 -12.412808 2.930963 -14.165093 1.893040 2.024536 -17.938324 -9.577117 -2.800290 -0.210939 2.064233 -0.656426 -7.465327 -0.567989 6.664458 19.210101 0.641750 7.736535 5.757391 -18.006328 -22.223233 -7.661338 0.125201 11.979139 -0.619672 -2.087183 -11.927844 -4.635657 -5.002883 14.421471 -9.725781 0.419388 -9.512832 -0.372728 11.315802 -5.763262 -5.375639 -10.981684 2.440199 8.769773 -23.683062 12.248262 5.690388 -6.216225 -5.631806 -13.873005 5.791054 8.357446 20.682461 -5.432699 -2.226518 0.385698 3.978073 -1.933328 -11.971600 13.676617 -3.369282 -2.333023 -7.624396 -12.622669 3.097934 6.216417 5.674026 8.847860 7.629060 11.087329 0.279922 17.567201 3.893395 -7.605958 -6.411720 -24.945819 5.600296 27.253039 -0.229008 2.707148 -14.670624 -15.816108 -3.776867 2.484307 10.213982 14.505923 9.621658 8.242985 -6.248525 -8.443482 -5.083424 7.966524 -4.206318 -5.405660 -1.155175 -6.672643 1.933221 6.959479 -2.901477 0.752632 -1.477721 -21.237830 -11.594001 5.813592 2.307635 4.995037 12.816804 11.346955 -12.238235 0.206583 0.943684 0.277530 -0.246061 -4.619710 -7.666705 -5.845409 -3.408819 -5.804167 3.007715 3.716466 -0.831368 -0.566240 -PE-benchmarks/karatsuba.cpp__main = 15.859189 0.159814 7.796393 8.532351 5.902972 -9.426909 -2.509797 19.623060 -8.675737 -18.182955 -22.533843 -1.408413 -5.878133 1.985402 20.921336 -2.172930 0.700174 -4.071744 -37.678712 11.768410 2.080337 1.411397 0.423424 -9.620504 9.117587 6.996764 -5.870010 7.654551 2.698340 7.501923 -16.485631 0.171118 2.902792 7.064666 13.212593 -4.252628 -2.557434 -4.853322 -0.315942 -8.917797 24.964410 8.031940 -1.333336 15.990585 11.988316 5.777270 -7.861878 13.273430 2.663878 -4.343941 14.324296 -25.336594 -7.813507 9.462401 -11.910796 11.104664 20.962407 5.318011 -8.464383 6.645199 -0.251921 2.488011 1.219329 -20.062096 18.432332 7.236836 13.686070 1.643483 14.482494 -7.006285 -1.636524 6.756754 19.043304 3.636738 -17.573404 -18.359593 7.840176 -37.547246 7.479185 -30.312230 -3.921879 -10.494948 15.129390 -7.658152 9.897398 11.403276 -12.001795 7.804629 -14.714285 6.121805 -5.816304 -0.114012 -2.552234 8.947841 -7.179868 -2.696363 13.220045 3.580890 8.272525 18.781565 -4.572731 4.444745 -12.902809 -26.724047 -6.194925 20.723032 4.062000 -5.100803 -7.300413 3.205367 8.671788 1.133112 -4.155369 -14.428838 6.801366 7.543838 -20.214064 6.786477 -13.800289 -12.454902 -2.828209 13.529106 8.867561 -10.300057 7.878507 -18.391467 -2.875616 6.706673 18.978867 2.240632 1.696354 -13.355417 -1.460805 -0.448379 -10.478041 -9.242706 -1.912409 -0.347200 11.879263 -0.576141 8.368045 -16.962794 -0.466022 -11.020541 1.284962 6.020364 21.095651 7.909578 1.221948 20.173024 -4.188914 -2.275643 -5.077978 -8.148223 9.642485 8.882116 12.074436 -1.405889 2.689307 6.973959 1.278674 -17.055513 -1.013398 -11.694468 -9.826458 -18.592530 6.030951 -2.755058 -2.556883 -16.683857 15.516659 17.723468 -19.339378 -1.731962 -0.469274 -3.377457 -4.136212 -12.239405 8.755808 1.195814 0.904078 3.522831 15.544439 -14.035692 5.963955 -13.840091 3.625155 2.506762 -22.576523 -7.568645 -5.029105 0.402973 4.617275 -2.020031 -5.050770 0.250032 6.585260 26.040785 -1.335713 11.158149 7.839407 -19.721762 -29.503527 -14.406977 5.203000 11.860620 -2.106774 -2.565762 -13.073056 -3.906169 -2.367724 19.150030 -9.197807 -1.775688 -13.817663 -1.629992 11.538873 -3.244081 -9.394671 -12.142853 2.443740 9.131235 -24.487604 11.497238 3.843997 -8.808702 -10.347129 -25.633035 7.850092 9.007164 28.271480 -2.298999 2.751296 -0.169675 6.082310 -3.295529 -15.559847 17.801520 -0.147870 -1.501014 -9.297464 -16.736270 3.232519 7.556731 7.417054 14.420368 9.050511 21.114872 -0.318396 21.687047 -0.068892 -11.874555 -4.960810 -25.783580 2.831806 43.121198 2.370172 4.035097 -17.123521 -21.397904 -10.465264 6.746083 10.339175 24.359576 15.651412 7.286000 1.110643 -7.279895 -3.773206 14.156397 -6.152245 -10.357094 -2.756681 -6.902527 -0.288966 8.679883 -1.806761 6.702144 -1.000343 -35.443146 -18.748536 4.551942 4.088519 3.458802 12.631777 14.001904 -14.957707 1.258852 -0.171476 4.064755 3.991069 1.740851 -10.068802 -10.138800 -6.989222 -5.679868 4.534084 9.527537 0.908684 -1.142059 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = 0.319747 -0.177676 0.285472 0.254091 0.412316 -0.218629 0.127458 0.182457 0.009878 -0.669922 -0.326917 0.010197 -0.124449 -0.215940 0.175838 0.045262 0.217714 0.222309 -0.385352 0.235607 0.121382 0.190492 0.045253 -0.217433 0.126780 -0.187723 -0.133985 0.191333 0.067695 0.328460 -0.362152 -0.061936 0.259499 0.140799 0.185276 0.350662 0.379712 -0.123344 0.115243 0.006684 0.793902 0.002702 0.110323 0.391762 0.431410 0.380111 -0.108815 0.604117 0.242792 -0.122402 0.306623 -0.531474 -0.195982 0.028140 -0.529404 0.416941 0.448860 0.217443 -0.357835 0.236782 0.005114 0.094623 0.073149 -0.288440 0.338878 0.335035 0.007681 0.155493 0.760130 -0.233649 -0.204054 0.318598 0.572077 0.248486 0.151140 -0.287562 0.019605 -0.829650 -0.107498 -0.313129 0.147493 -0.250171 0.628792 -0.321592 0.128519 0.561431 -0.065224 0.255059 -0.087096 -0.125161 -0.419648 0.239268 0.041369 0.458115 -0.064807 0.092580 -0.133911 0.048611 0.089151 0.393923 0.058496 -0.188087 -0.565157 -0.974404 -0.438286 -0.119603 -0.039407 -0.267738 -0.578982 0.013041 0.386827 0.365115 -0.510183 -0.107287 0.243586 0.196715 -0.125929 -0.057650 -0.293315 -0.212554 0.010564 0.114260 -0.157829 -0.202513 -0.168567 -0.516791 0.007461 0.003473 0.227628 -0.296114 -0.064342 -0.182102 -0.170948 0.146772 -0.097929 -0.183007 -0.039191 -0.488240 0.208237 -0.183484 0.225540 -0.445580 -0.140008 -0.305683 -0.318458 -0.040996 1.002677 -0.054705 0.451222 0.290001 -0.282582 -0.362901 -0.298557 -0.590306 0.139152 -0.299584 0.339282 0.104814 0.008363 -0.081770 -0.054850 -0.378383 0.000560 -0.304747 -0.015968 -0.257514 0.123722 -0.360761 -0.049403 -0.615269 0.100547 0.699599 -0.129043 -0.105169 -0.246592 -0.208092 -0.214392 -0.505067 0.245180 -0.135986 0.202831 -0.064148 0.156278 -0.386457 0.249307 -0.251354 0.094551 -0.130087 -0.504118 -0.409195 0.026247 -0.196547 -0.010056 0.072217 -0.298954 0.150003 -0.119367 0.297854 0.062677 0.089054 -0.105466 -0.757111 -0.704395 -0.336732 0.144224 0.367569 0.119551 0.151424 -0.284265 -0.214018 -0.342023 0.402439 -0.622774 -0.068371 0.137415 -0.186331 0.419708 -0.172261 -0.100561 -0.488576 0.198642 0.061558 -0.528695 0.552446 0.264131 -0.472305 -0.364305 -0.529478 0.110548 0.252330 0.761418 -0.180809 0.037928 0.258951 0.007489 -0.121877 -0.394285 0.360148 -0.050642 0.488835 -0.541122 -0.450255 0.061377 0.547429 -0.152322 0.125433 0.185751 0.342694 -0.068589 0.582709 0.121711 0.057430 -0.314801 -0.726015 0.084961 0.482878 0.160680 0.304734 -0.432419 -0.291187 0.028004 0.167390 0.539585 0.349887 0.425696 0.364454 -0.255017 -0.385587 0.240819 -0.019746 0.139824 -0.408872 0.272066 -0.320498 -0.157978 -0.077997 0.134465 0.063401 -0.150886 -0.481826 -0.100095 0.318887 0.278856 -0.066598 0.408884 0.137150 -0.286455 0.159866 -0.000585 0.371284 0.117503 -0.065353 -0.146820 -0.281129 -0.086464 -0.146523 0.580627 -0.104051 0.099643 0.098208 -PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.319747 -0.177676 0.285472 0.254091 0.412316 -0.218629 0.127458 0.182457 0.009878 -0.669922 -0.326917 0.010197 -0.124449 -0.215940 0.175838 0.045262 0.217714 0.222309 -0.385352 0.235607 0.121382 0.190492 0.045253 -0.217433 0.126780 -0.187723 -0.133985 0.191333 0.067695 0.328460 -0.362152 -0.061936 0.259499 0.140799 0.185276 0.350662 0.379712 -0.123344 0.115243 0.006684 0.793902 0.002702 0.110323 0.391762 0.431410 0.380111 -0.108815 0.604117 0.242792 -0.122402 0.306623 -0.531474 -0.195982 0.028140 -0.529404 0.416941 0.448860 0.217443 -0.357835 0.236782 0.005114 0.094623 0.073149 -0.288440 0.338878 0.335035 0.007681 0.155493 0.760130 -0.233649 -0.204054 0.318598 0.572077 0.248486 0.151140 -0.287562 0.019605 -0.829650 -0.107498 -0.313129 0.147493 -0.250171 0.628792 -0.321592 0.128519 0.561431 -0.065224 0.255059 -0.087096 -0.125161 -0.419648 0.239268 0.041369 0.458115 -0.064807 0.092580 -0.133911 0.048611 0.089151 0.393923 0.058496 -0.188087 -0.565157 -0.974404 -0.438286 -0.119603 -0.039407 -0.267738 -0.578982 0.013041 0.386827 0.365115 -0.510183 -0.107287 0.243586 0.196715 -0.125929 -0.057650 -0.293315 -0.212554 0.010564 0.114260 -0.157829 -0.202513 -0.168567 -0.516791 0.007461 0.003473 0.227628 -0.296114 -0.064342 -0.182102 -0.170948 0.146772 -0.097929 -0.183007 -0.039191 -0.488240 0.208237 -0.183484 0.225540 -0.445580 -0.140008 -0.305683 -0.318458 -0.040996 1.002677 -0.054705 0.451222 0.290001 -0.282582 -0.362901 -0.298557 -0.590306 0.139152 -0.299584 0.339282 0.104814 0.008363 -0.081770 -0.054850 -0.378383 0.000560 -0.304747 -0.015968 -0.257514 0.123722 -0.360761 -0.049403 -0.615269 0.100547 0.699599 -0.129043 -0.105169 -0.246592 -0.208092 -0.214392 -0.505067 0.245180 -0.135986 0.202831 -0.064148 0.156278 -0.386457 0.249307 -0.251354 0.094551 -0.130087 -0.504118 -0.409195 0.026247 -0.196547 -0.010056 0.072217 -0.298954 0.150003 -0.119367 0.297854 0.062677 0.089054 -0.105466 -0.757111 -0.704395 -0.336732 0.144224 0.367569 0.119551 0.151424 -0.284265 -0.214018 -0.342023 0.402439 -0.622774 -0.068371 0.137415 -0.186331 0.419708 -0.172261 -0.100561 -0.488576 0.198642 0.061558 -0.528695 0.552446 0.264131 -0.472305 -0.364305 -0.529478 0.110548 0.252330 0.761418 -0.180809 0.037928 0.258951 0.007489 -0.121877 -0.394285 0.360148 -0.050642 0.488835 -0.541122 -0.450255 0.061377 0.547429 -0.152322 0.125433 0.185751 0.342694 -0.068589 0.582709 0.121711 0.057430 -0.314801 -0.726015 0.084961 0.482878 0.160680 0.304734 -0.432419 -0.291187 0.028004 0.167390 0.539585 0.349887 0.425696 0.364454 -0.255017 -0.385587 0.240819 -0.019746 0.139824 -0.408872 0.272066 -0.320498 -0.157978 -0.077997 0.134465 0.063401 -0.150886 -0.481826 -0.100095 0.318887 0.278856 -0.066598 0.408884 0.137150 -0.286455 0.159866 -0.000585 0.371284 0.117503 -0.065353 -0.146820 -0.281129 -0.086464 -0.146523 0.580627 -0.104051 0.099643 0.098208 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/karatsuba.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/karatsuba.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/karatsuba.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/karatsuba.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/karatsuba.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 3.576912 0.697002 -3.319153 7.883601 -0.498434 -1.562128 -0.020506 1.180090 -1.980172 -12.591841 -7.739735 6.154551 1.556231 1.837100 1.880992 3.274116 -0.452308 0.707513 -11.985232 2.674469 4.774566 1.257237 0.439194 -0.450990 1.509033 -3.192300 2.572534 0.597815 1.852217 7.298406 -3.692292 4.446160 6.255999 -1.147127 2.370634 4.612133 -2.320128 1.120267 -2.186266 -1.098304 8.632980 3.366958 0.885455 3.298667 -0.048059 6.981222 -0.503953 6.994351 1.013712 -5.645490 4.243781 2.595386 -3.689453 -0.086457 -4.017165 3.457838 4.923711 3.036267 -2.864203 1.865147 -1.950864 0.071169 1.774923 -0.650653 7.501978 3.918941 5.543432 5.075426 6.823658 -4.179140 -0.201168 3.251368 0.964871 -0.371246 5.368508 -4.803033 -6.129186 0.218539 -1.226299 -9.436232 -3.792476 0.056558 12.170296 -7.209498 -0.860096 0.459544 1.228754 7.384761 -2.872233 1.560196 -5.087205 -0.340231 -3.034641 8.892219 1.284166 0.767020 -1.214115 2.212532 1.860408 4.221181 -0.732800 -4.682955 -3.340120 -9.048695 -3.517768 -3.029417 4.130817 5.019084 -9.514761 -1.024797 -1.594604 7.121960 -10.640482 0.118328 4.540937 4.577700 5.780387 2.478340 -5.722145 0.181210 1.570977 0.941891 4.681461 -2.501806 0.915204 -2.329036 0.796232 -0.255352 2.265641 0.359683 -8.703034 -4.812479 -0.811284 -1.808175 0.768878 2.202608 5.094092 -2.742012 4.906253 -2.723347 4.806165 -9.619784 -1.493636 -3.078762 -6.420458 -2.331161 5.428294 6.702944 5.425391 -3.030534 -3.281124 -2.505411 -9.607889 -8.047906 0.420693 0.640339 2.131476 3.268376 -0.917405 4.185634 -3.863694 1.979556 3.037252 -2.883682 -1.641211 -1.014513 6.622675 -0.203335 -1.299770 -4.955178 -2.576785 -2.911594 -1.302075 6.578029 -0.682112 -9.426059 -11.726903 -5.025453 6.118370 -2.737191 1.170326 -4.384593 -0.619756 -5.297846 -0.406365 -6.569601 -0.082789 0.650790 -4.458048 -7.291103 0.878344 -0.714055 -3.044838 0.407719 -5.541331 -1.306332 6.860209 2.231490 3.301251 0.735839 -0.185299 -6.777921 -4.962178 1.963152 -5.271617 4.784558 4.891344 -1.591284 -5.659689 -2.979236 -7.171209 4.268376 -3.530778 1.991579 -2.272076 -0.572971 6.024627 -4.995656 0.257558 -5.381247 1.326529 2.138863 -13.231595 7.764107 4.537568 -2.130909 0.372227 0.383945 1.783465 3.605750 4.124074 -4.111137 -4.152558 0.094845 -2.116644 0.331997 -0.986025 4.487503 -5.490426 0.411680 -3.913958 -2.109998 3.925829 3.510306 0.400810 2.010818 2.759485 -1.425829 4.241362 4.507518 5.218396 -2.129420 -5.014217 -14.165993 4.112963 -1.438495 -2.351318 -0.518593 -2.847630 -4.228321 2.228974 -1.906952 6.504773 -0.379032 -1.779440 5.595348 -8.238613 -6.657387 -3.944383 -0.488116 -0.057678 -0.569319 -0.257193 -2.382212 2.298310 2.869347 -0.705687 -0.475330 -5.008027 -1.085853 0.784556 7.072580 1.306597 2.204434 6.979957 3.018057 -3.368169 -1.371014 1.025364 -1.087704 -1.833640 -7.339811 -2.586294 -0.188910 1.446295 -3.377076 1.428972 -1.562260 -0.942286 1.771036 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = 2.341069 -0.452616 -1.694062 5.212266 0.158064 -1.294136 0.159661 0.678371 -0.816443 -7.677423 -4.436404 3.481350 0.845764 0.680395 1.019646 1.926301 -0.115054 0.363233 -7.280660 2.009292 2.591571 0.788530 0.031176 -0.664006 0.812094 -2.223778 2.634155 1.023402 0.922425 4.379509 -2.200400 2.355773 3.815838 -0.583301 1.876210 3.291324 -0.846270 0.651900 -1.718697 -0.303320 5.771943 2.423566 0.265045 2.121130 0.497182 4.514778 0.853907 4.073220 0.896513 -3.227076 2.357611 1.812278 -2.365217 -0.827123 -3.130135 2.078602 3.353511 1.907153 -2.198536 1.362816 -1.275773 -0.149488 1.271855 0.261388 4.920309 1.817792 3.729723 3.144904 4.753373 -2.829326 -0.477030 2.525530 1.564169 0.212775 3.874822 -3.372912 -4.608367 -0.536181 -0.860932 -5.554896 -2.151907 0.070618 6.838593 -4.274066 -0.517882 0.461643 0.332368 4.402562 -2.016449 0.406317 -3.401979 -0.114578 -1.696719 5.989326 0.677114 0.482031 -0.309744 1.653568 1.280186 3.007801 0.046254 -3.443510 -1.518184 -6.300952 -2.076701 -2.173198 2.257564 2.439241 -5.671544 -0.799136 -1.359820 4.222988 -6.453150 0.078993 3.052979 2.599274 4.225595 -0.399993 -2.725529 0.286392 1.127334 0.747131 3.060299 -1.928762 0.341859 -1.075663 1.279435 0.088590 1.339439 0.153268 -4.754287 -2.863381 -0.441493 -0.356316 0.374419 0.980999 2.674158 -2.475305 2.918094 -1.954437 3.461219 -6.042790 -0.667168 -2.104601 -3.724579 -1.374033 3.819221 3.373786 3.713541 -1.931098 -2.157999 -1.209495 -5.799406 -5.892720 0.525610 0.371078 0.910008 1.869193 -0.532048 2.395829 -2.270882 0.869724 2.158793 -1.825333 -0.983600 -0.461539 2.921604 -0.001243 -0.820606 -2.877777 -1.368519 -1.176740 0.232328 4.203521 -0.724945 -7.026812 -6.909929 -3.265676 3.753552 -1.678959 0.419304 -2.495470 -0.910295 -3.609363 0.349556 -4.208155 0.482878 0.015507 -2.904176 -4.551261 0.414676 -0.736113 -0.921402 0.247635 -3.409824 -0.748730 3.379147 1.397261 1.818477 0.626351 0.049630 -4.714008 -3.314368 1.236207 -2.621136 4.053753 2.135441 -0.684786 -3.298321 -1.707132 -4.356185 2.681627 -2.220943 1.078964 -1.000555 -0.867938 4.043077 -2.915432 0.386534 -3.425451 1.107441 1.407258 -7.384681 5.352120 3.693072 -1.692386 -0.208525 0.583298 0.846421 2.246050 2.997979 -2.787629 -2.777273 0.376275 -1.017869 0.040667 -0.869766 2.649866 -3.091875 0.535910 -2.934596 -1.850654 2.170975 2.421401 0.163428 0.835856 1.313208 -1.017537 1.382250 3.436762 3.087634 -0.417522 -3.675797 -8.937890 2.562114 -0.825830 -1.344663 0.060943 -1.770074 -2.722750 1.376854 -0.984957 4.307349 0.814221 -1.459412 3.663267 -5.267846 -4.366807 -2.622220 -0.657161 0.088849 -0.542015 0.309306 -1.997494 1.316178 1.037595 -0.405933 -0.799438 -2.533639 -0.000314 0.558840 4.078733 1.091872 0.947710 4.449222 1.663149 -2.039255 -1.013732 0.929106 -0.927470 -0.455356 -4.364715 -1.850337 -0.527503 1.199345 -1.870449 1.151858 -1.075030 0.020850 1.094792 -PE-benchmarks/kmp-algorithm.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = 0.862950 0.121054 -0.122627 1.066507 0.150997 -0.962304 0.263271 0.690704 -0.454570 -1.828620 -1.316551 1.812848 -0.077786 -0.442402 0.168331 0.114611 -0.043377 0.170685 -2.496660 1.014178 0.520933 0.303635 -0.360108 -0.534923 0.239733 -0.566656 0.303154 0.860781 -0.017782 1.056361 -0.703806 0.113728 0.825467 0.221409 0.827669 1.095667 -0.245413 -0.124622 0.085625 -0.177672 1.772263 0.998640 -0.039355 0.831995 0.888625 1.218742 0.119510 0.805988 0.679254 -0.665123 0.201154 0.583752 -1.013826 -0.198477 -0.963877 0.515627 0.595869 0.139375 -0.776673 0.603574 -0.511015 -0.330288 0.330797 -0.227826 1.440155 0.446077 0.670697 0.566818 1.677413 -0.608435 -0.369639 0.921132 1.261184 0.263852 0.564855 -0.372960 -1.333765 -0.891856 -0.061111 -2.329446 -0.819761 -0.063866 2.126262 -1.032773 0.147170 0.317982 0.087312 0.993464 -0.805833 -0.331686 -1.009218 0.053489 -0.464812 1.634140 0.126829 0.237485 0.112176 0.449947 0.601054 1.192596 -0.529424 -0.878663 -0.613410 -2.523766 -0.167489 -0.394502 0.042223 -0.062676 -1.398153 -0.308275 0.426307 2.153920 -1.571476 -0.334412 1.066254 0.096271 -0.030661 -0.118128 -0.803563 0.111467 0.100152 0.193515 0.877507 -0.448056 -0.263896 0.053438 0.379257 -0.032917 0.477520 0.083543 -1.421717 -0.839582 0.251098 -0.000252 -0.186911 -0.229174 0.070322 -0.606996 0.674915 -0.623662 0.990872 -1.440722 0.270449 -0.723697 -0.615553 -0.075578 0.987374 1.419140 0.837175 -0.205220 0.106034 -0.324972 -1.341117 -1.799199 0.757451 -0.315941 0.465064 -0.302047 0.020855 0.194173 -0.349736 -0.310217 0.399232 -0.669430 -0.024902 -0.438685 1.124236 0.004902 -0.157343 -0.835310 -0.279239 0.257823 0.172945 0.365328 -0.552459 -2.295036 -1.307621 -1.085111 0.899674 -0.140628 -0.148723 -0.525606 -0.128192 -0.404530 0.323867 -0.894745 0.301280 -0.332403 -0.798883 -1.073401 -0.256249 -0.238940 -0.395601 -0.399833 -0.655858 -0.251455 0.915258 0.353038 0.372345 0.244703 0.076878 -1.124954 -0.904847 0.123808 -0.041214 1.073941 1.021047 0.143776 -1.543012 -0.234497 -1.368330 1.087289 -1.094476 0.103063 -0.260760 -0.926859 1.722454 -0.553505 -0.131723 -0.545522 0.582850 0.337055 -2.613146 1.587607 1.401454 -0.718692 -0.485914 -0.171190 -0.072710 1.156593 1.489837 -0.885132 -0.445757 0.220244 -0.390852 -0.122197 -0.059981 1.035457 -0.631024 0.835019 -0.959811 -0.803963 0.625137 0.797240 0.140242 0.319872 -0.191520 0.268773 0.457138 1.138096 0.530864 -0.027476 -1.229453 -2.635018 0.712146 0.434087 -0.145569 0.613823 -0.440669 -1.254543 0.002439 -0.729833 1.388171 -0.359902 -0.723113 0.840379 -1.106279 -1.237416 -0.603397 -0.012876 -0.083875 -0.355388 0.981840 -0.537255 0.131401 0.159484 -0.002551 -0.021543 -0.345183 -0.653127 -0.045894 0.562153 1.047441 -0.185700 1.198862 0.194239 -0.814439 -0.297486 0.015728 0.135926 -0.145876 -1.241794 -0.639196 -0.797039 0.389028 -0.308248 0.880288 0.190316 0.484899 0.397711 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = 3.875769 0.370802 -1.048848 3.536295 0.728645 -4.007877 1.079534 2.854105 -1.206011 -5.948681 -4.198325 5.431282 0.143903 -2.504584 0.565632 0.928720 -0.425430 0.798464 -7.923600 3.771884 1.639633 1.014242 -2.295511 -2.384976 0.597594 -1.806191 -0.091079 2.684169 -0.488640 3.552963 -2.173161 0.222209 2.686589 0.464127 2.508857 3.818196 -0.727547 -0.327642 1.350854 0.141687 5.995768 3.898519 -0.531844 2.644397 3.345221 4.027534 -0.487243 4.068058 -0.610863 -1.848841 1.253321 1.733458 -3.585034 -0.434333 -3.309922 1.999456 3.603058 0.496035 -2.510339 2.437023 -2.188012 -0.779370 1.524936 -0.068092 5.196783 2.646636 2.213155 2.084551 6.719200 -1.605241 -0.902271 2.855135 4.457692 0.076483 2.485982 -1.303264 -4.555555 -2.452124 0.110860 -7.497376 -1.948650 -0.465059 7.894741 -3.718858 0.569841 1.554338 1.861735 3.668872 -3.347167 -1.252236 -2.929285 0.536979 -2.602885 7.587794 -0.094882 2.086358 -0.648546 1.793557 1.966574 3.607107 -1.964633 -2.924719 -2.718092 -8.636164 -1.339404 -1.365155 -0.843999 -0.524959 -5.582472 -1.300591 1.832475 6.517204 -5.818288 -0.766235 3.429602 0.266060 1.869136 0.791992 -3.671839 0.671010 -0.250219 0.379790 1.774630 -1.245637 -1.228597 -0.910906 1.367031 0.214295 1.139915 0.021179 -6.512786 -1.421645 0.825735 -0.962166 -0.326573 -0.176526 0.209561 -3.439634 1.908516 -2.771979 3.061378 -5.964384 0.125033 -2.665652 -3.779510 0.018332 2.727953 4.456549 2.910486 -0.600916 0.259306 -1.637774 -5.322874 -6.993893 2.014967 -1.683739 1.597286 -1.741105 0.176592 -0.458333 -1.282734 -1.173148 1.996559 -2.558005 0.083749 -2.049905 7.076052 -0.249408 -0.740076 -2.569917 -1.523170 1.426461 1.329325 1.297121 -1.755474 -7.265192 -5.032755 -3.504667 3.011441 -0.290657 -0.448466 -2.213016 -0.303889 -2.739240 1.147876 -2.592620 1.660873 -1.173057 -2.074208 -3.685628 -0.810533 -0.427265 -1.371502 -1.995659 -2.379043 -0.609263 3.467380 0.933320 0.920442 0.907560 0.182458 -4.209247 -3.847349 0.679858 0.483673 4.369451 4.000710 0.889972 -3.732283 -0.365603 -5.496608 3.842302 -4.150494 0.221601 -0.418512 -2.690388 6.213054 -2.208840 -1.613937 -2.963409 1.905077 -0.070186 -6.521797 6.424570 4.372256 -2.961100 -1.679541 -1.287897 0.260240 3.715596 5.387212 -2.991638 -1.648291 1.076562 -1.249702 -0.840370 -0.272798 3.423079 -2.523132 3.720989 -3.288924 -2.372907 2.147732 3.428090 -0.165656 1.170750 -1.601237 -0.020159 1.234639 3.756006 1.895923 -0.488519 -4.284069 -8.663188 1.804222 -1.339413 -0.888033 0.877106 -1.320579 -4.336494 -0.015352 -1.536421 5.012170 -0.293922 -2.192982 2.695521 -4.611062 -4.606023 -1.743116 0.799511 0.025535 -1.724879 2.766671 -1.950388 0.412231 0.816339 0.846571 0.339206 -2.653577 -2.623903 -0.339706 2.430584 2.593711 -2.072006 4.283857 0.756450 -1.873329 -1.086492 -0.152134 0.941356 -0.122236 -3.639192 -2.022836 -3.099651 1.354765 -1.302524 4.378078 0.905228 1.873613 2.093369 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = 2.102966 0.476029 -0.803264 1.591062 0.305716 -2.065463 0.371872 1.313047 -0.952023 -3.000838 -2.026102 2.543135 0.139354 -1.453482 0.420997 0.913708 -0.118964 0.451671 -3.420469 1.946562 0.813691 0.318598 -1.433569 -1.024054 0.277446 -0.924833 -0.569804 0.964669 -0.300471 1.705202 -1.195748 0.372505 1.295436 0.066791 1.117156 1.706809 -0.651961 -0.288796 1.102051 0.216659 3.014324 1.467174 0.165800 1.151665 1.737493 1.893558 -1.009634 2.592304 -0.574005 -0.844900 1.299497 0.944993 -1.654103 0.309182 -1.720104 1.022692 1.639384 0.127063 -1.163106 1.167963 -1.408592 -0.078828 0.756238 -0.090885 2.820642 1.778033 1.096827 1.116489 3.403934 -0.472891 -0.278295 1.327905 1.993568 -0.121776 1.197232 -0.570069 -1.616075 -1.060145 -0.079686 -3.419033 -0.439368 -0.312574 4.890529 -1.860497 0.060049 0.844259 1.427967 2.020545 -1.653015 -0.383086 -1.345699 0.461544 -1.507624 3.674908 -0.178978 1.300753 -0.856278 0.677109 0.650199 1.571425 -1.312084 -1.293232 -1.917644 -3.975837 -1.374282 -0.577772 -0.503425 -0.356797 -3.345253 -0.380953 1.435922 3.057435 -3.016210 -0.281056 1.485585 0.143873 1.224283 1.785025 -2.600959 -0.012374 -0.255004 0.536087 0.415332 -0.102663 -0.591824 -1.347167 0.469188 0.015402 0.668202 -0.247591 -3.792147 -0.437179 0.276181 -0.994792 -0.117254 0.127800 0.330347 -1.739351 0.920044 -1.145720 1.272390 -3.309370 -0.454429 -1.674456 -2.290700 0.068714 1.609903 2.729996 1.645988 -0.035606 0.012066 -1.082666 -3.041886 -2.926327 0.479227 -1.366378 0.851693 -0.837544 0.177801 -0.407870 -0.441503 -0.553848 0.989612 -1.484245 0.036863 -1.406590 4.295405 -0.302428 -0.437787 -1.685388 -1.014604 0.723517 0.357994 0.482640 -0.724103 -3.192007 -2.773787 -1.738048 1.413735 -0.214095 0.118584 -1.184266 0.085274 -1.353048 0.417463 -1.173214 0.528771 -0.531870 -0.923732 -1.789222 -0.231379 -0.063011 -1.332323 -1.334842 -1.243398 -0.125749 2.043940 0.362466 0.553072 0.446018 -0.326711 -2.246278 -2.227942 0.286511 0.215891 1.812733 2.725662 0.472798 -1.845847 -0.229431 -3.037651 1.804161 -2.420861 0.081589 0.120375 -1.217839 2.921653 -1.349188 -0.822751 -1.582577 0.833342 -0.515861 -4.028470 3.204342 1.904594 -1.742318 -0.777442 -1.222788 0.548681 1.668704 2.610174 -1.112839 -0.310697 0.478772 -0.404895 -0.496711 0.033102 1.772721 -1.418308 1.926552 -1.647621 -1.080648 1.262806 1.940139 -0.225067 0.343023 -1.002595 -0.045750 1.049398 1.649737 1.006602 -0.551421 -1.814760 -4.559253 0.569769 -1.023194 -0.601204 0.491964 -0.613526 -2.057665 -0.189674 -0.907294 2.545491 -0.856883 -0.631282 1.200688 -2.299685 -2.330498 -0.663108 0.731108 -0.060426 -1.032095 1.306751 -0.980105 -0.132262 0.546179 0.781139 0.242773 -1.667572 -1.676192 -0.205134 1.545277 1.354107 -1.207343 2.039801 0.603337 -0.755218 -0.551683 -0.067292 0.775941 0.018874 -1.889463 -0.975298 -1.534608 0.491658 -0.776782 2.440975 0.523787 0.953068 1.121085 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.576243 -0.087932 0.051367 0.377986 0.366668 -0.472297 0.155973 0.319585 -0.083200 -0.867700 -0.551389 0.175851 -0.054605 -0.459703 0.259678 0.204981 0.178147 0.261310 -0.605497 0.454116 0.178269 0.158919 -0.274591 -0.257178 0.108697 -0.262290 -0.435231 0.218174 -0.040851 0.461845 -0.412167 0.037479 0.353325 0.083464 0.258860 0.482098 0.173664 -0.140077 0.421499 0.137926 1.012220 0.147953 0.151127 0.430034 0.593262 0.518988 -0.406624 1.022508 -0.084843 -0.155409 0.604691 -0.487728 -0.318272 0.179765 -0.661243 0.471463 0.676666 0.126758 -0.427240 0.371797 -0.250575 0.135249 0.176655 -0.261584 0.689988 0.643140 0.112379 0.280241 1.081399 -0.147752 -0.120771 0.362633 0.705562 0.099023 0.200844 -0.284128 -0.059316 -0.759312 -0.086491 -0.573620 0.210518 -0.292174 1.226400 -0.498181 0.084520 0.600432 0.221638 0.483453 -0.312358 -0.137268 -0.466368 0.284301 -0.207413 0.809987 -0.133704 0.335327 -0.345498 0.108401 0.075304 0.419128 -0.225663 -0.281479 -0.867373 -1.327180 -0.679535 -0.123326 -0.180677 -0.326425 -1.006340 -0.034411 0.533577 0.549548 -0.821748 -0.091719 0.317561 0.148329 0.070548 0.465421 -0.736166 -0.242404 -0.052650 0.230017 -0.185396 -0.072181 -0.194197 -0.899789 0.039554 0.047501 0.248409 -0.317346 -0.568346 -0.071672 -0.123317 -0.074905 -0.102109 -0.059798 0.017771 -0.644856 0.267482 -0.300603 0.293768 -0.889242 -0.288473 -0.555825 -0.707346 0.015195 1.101144 0.353114 0.638353 0.306697 -0.265144 -0.470394 -0.727182 -0.852587 0.083245 -0.555911 0.440765 -0.099033 0.052213 -0.233691 -0.072829 -0.368125 0.138226 -0.469784 0.004434 -0.476329 0.860411 -0.348587 -0.146651 -0.744352 -0.092908 0.738933 -0.126575 -0.071772 -0.260849 -0.414821 -0.532296 -0.581182 0.354288 -0.109576 0.261199 -0.217491 0.215390 -0.619346 0.234379 -0.303519 0.091709 -0.179493 -0.472115 -0.541439 -0.028825 -0.111341 -0.198330 -0.193935 -0.383929 0.154764 0.286552 0.365746 0.121552 0.188523 -0.183757 -0.882322 -0.928642 -0.274356 0.174526 0.557697 0.579839 0.202735 -0.326226 -0.169035 -0.744787 0.570435 -0.878905 -0.067407 0.216696 -0.281505 0.690201 -0.361206 -0.303890 -0.660775 0.229641 -0.156661 -0.976259 0.802898 0.377849 -0.677966 -0.386364 -0.771745 0.264427 0.359518 0.980137 -0.186807 0.121119 0.270130 -0.007466 -0.185941 -0.377691 0.510032 -0.235635 0.680782 -0.637776 -0.448110 0.292933 0.727381 -0.207036 0.112737 -0.062660 0.294057 0.143544 0.634432 0.199063 -0.130170 -0.439876 -1.190043 0.041807 0.225527 0.019999 0.290055 -0.439955 -0.455456 -0.065973 0.013279 0.771719 0.216376 0.394371 0.427431 -0.470665 -0.619617 0.139237 0.196275 0.103577 -0.531527 0.347321 -0.380066 -0.171703 0.046236 0.335198 0.171601 -0.490020 -0.789465 -0.123720 0.501588 0.293667 -0.293862 0.575200 0.188585 -0.245927 0.045089 -0.024469 0.452496 0.147928 -0.269837 -0.255896 -0.459972 -0.031333 -0.269896 0.893849 -0.029773 0.266816 0.294409 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = 0.933626 0.071620 -0.034576 0.754280 0.152748 -0.910767 0.215271 0.781279 -0.397967 -1.640832 -1.267757 0.701747 -0.055739 -0.600117 0.474913 0.288426 0.052800 0.198905 -2.414211 0.924099 0.613318 0.270206 -0.341260 -0.448871 0.265663 -0.537344 -0.511430 0.573177 -0.134476 0.933688 -0.733680 0.219917 0.700720 0.198496 0.688591 0.884128 -0.437026 -0.212123 0.671501 0.221161 1.636255 0.848630 -0.098441 0.510326 0.916553 1.035014 -0.394111 0.922497 -0.088489 -0.510605 0.567290 -0.174508 -0.854494 0.211893 -0.877019 0.461906 1.032989 0.294433 -0.621593 0.666794 -0.706238 -0.011572 0.315681 -0.385579 1.490542 0.670405 0.635547 0.433141 1.590591 -0.265349 -0.094704 0.528678 1.017666 -0.076551 0.191726 -0.360112 -0.629620 -1.457134 -0.003526 -2.150483 -0.313540 -0.147428 1.928119 -0.899502 0.221301 0.573276 0.270143 0.992419 -0.777882 -0.283904 -0.778346 0.240110 -0.502225 1.582473 -0.100122 0.401553 -0.125552 0.461545 0.460541 0.824518 -0.523631 -0.616253 -1.139497 -2.423071 -0.530967 -0.206725 -0.068358 -0.197828 -1.572982 -0.101534 0.797805 1.439879 -1.471225 -0.158230 0.748938 0.205074 -0.225233 0.255513 -1.151584 -0.161141 -0.210757 0.500757 0.425788 -0.364149 -0.171033 -0.912150 0.262964 0.149997 0.498867 -0.158471 -1.208179 -0.412464 0.159818 -0.302106 -0.214863 0.098476 0.152463 -0.573273 0.567886 -0.745150 0.810067 -1.549376 0.120418 -0.870665 -0.803447 0.045086 1.055605 1.392550 0.407232 0.185856 -0.091122 -0.347093 -1.393226 -1.537266 0.368249 -0.475384 0.725814 -0.426807 0.036684 -0.119934 -0.207759 -0.332401 0.206803 -0.738450 0.036961 -0.741076 1.551402 -0.057721 -0.306296 -0.862510 -0.254990 0.746481 -0.232685 0.139086 -0.443005 -1.127027 -1.252523 -0.993034 0.771826 -0.142949 0.078880 -0.579599 0.274580 -0.827281 0.466704 -0.661085 0.148260 -0.233187 -0.694254 -0.953419 -0.289222 -0.131651 -0.335663 -0.530911 -0.596927 -0.129949 0.985193 0.479077 0.356842 0.265983 -0.017764 -1.053003 -1.166430 -0.101856 0.014872 0.960414 1.030701 0.077567 -1.090047 -0.107694 -1.289877 1.179423 -0.841467 0.013453 -0.209262 -0.773697 1.441434 -0.475457 -0.418461 -0.735178 0.406174 -0.098719 -2.034115 1.524258 1.007148 -0.910460 -0.490142 -0.875773 0.326025 0.857879 1.425498 -0.496391 -0.064557 0.135626 -0.315249 -0.191601 -0.268482 0.982281 -0.626125 0.830227 -0.891787 -0.624280 0.703807 0.889952 -0.032221 0.441145 -0.227996 0.417822 0.493354 0.907674 0.357721 -0.353929 -0.918221 -2.240027 0.355862 0.484065 -0.028636 0.294469 -0.443337 -1.124057 -0.249368 -0.229726 1.288062 0.475933 -0.209561 0.692840 -0.856538 -1.119915 -0.458126 0.369823 -0.091212 -0.582646 0.560562 -0.448391 0.002725 0.345152 0.394328 0.397031 -0.861340 -1.249853 -0.165132 0.743232 0.745785 -0.535482 1.056492 0.268059 -0.568083 -0.277125 -0.017349 0.316598 0.107673 -0.558326 -0.625920 -0.802563 0.192911 -0.409858 1.114084 0.181099 0.528373 0.484464 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 2.051188 -0.723719 -0.560043 1.793799 0.590748 -1.935547 0.503813 1.094069 -0.232480 -2.823874 -1.492369 1.833218 0.108355 -1.443572 0.426326 0.726624 -0.055962 0.257609 -3.069495 1.841008 0.540465 0.267249 -1.347845 -0.986216 0.208725 -1.035472 0.009250 1.278860 -0.349347 1.610402 -1.064477 0.167927 1.265284 0.026621 1.026515 1.795984 0.133697 -0.138168 0.669810 0.664297 3.031947 1.453698 -0.243904 1.064942 1.694841 1.913531 -0.391708 3.127525 -0.185737 -0.694582 1.530981 0.324344 -1.457807 -0.170038 -1.970200 1.040052 2.162102 0.271267 -1.307291 1.189179 -1.310184 -0.040233 0.804235 0.452361 2.748842 1.587333 1.267231 1.052362 3.521876 -0.691835 -0.419936 1.417316 2.294747 0.082458 1.588115 -0.948094 -1.950227 -1.750451 0.048480 -2.329657 -0.424437 -0.453102 3.365995 -1.753248 -0.031477 1.112057 1.113253 1.900226 -1.675154 -0.336004 -1.466576 0.502635 -0.901720 4.058804 -0.275341 1.292520 -0.686770 0.792596 0.665754 1.616584 -0.498752 -1.519270 -1.698809 -4.096779 -1.535990 -0.765021 -0.633701 -0.561195 -3.259173 -0.363667 1.154708 2.078734 -2.802287 -0.133511 1.437255 0.286205 2.190061 0.740667 -1.789612 0.099157 0.025836 0.433975 0.374589 -0.456694 -0.547192 -1.544124 1.052855 0.374609 0.424601 -0.431064 -2.978552 -0.112011 0.297386 -0.252047 -0.031686 0.011771 0.150270 -2.288349 0.809211 -1.316850 1.399317 -3.199124 -0.590675 -1.550913 -2.045850 0.044431 2.371088 1.632914 1.921931 0.040504 -0.646879 -0.923120 -2.774106 -3.864977 0.312571 -1.202147 0.616324 -0.688158 0.072108 -0.441503 -0.421251 -0.616768 0.990318 -1.407968 -0.036937 -1.117309 2.763738 -0.315945 -0.386566 -1.404712 -0.775662 1.159627 0.796335 0.823651 -0.666921 -3.667341 -2.428243 -1.715903 1.352978 -0.223977 0.029572 -1.018212 -0.200542 -2.187756 0.716167 -1.100156 0.768383 -0.605898 -1.157211 -1.807882 -0.149094 -0.232657 -0.244326 -1.004356 -1.395007 -0.069281 0.907305 0.589543 0.515005 0.583481 -0.226300 -2.643012 -2.517855 0.135152 0.383551 2.621840 1.510559 0.558713 -0.838092 -0.276483 -2.813444 1.738635 -2.767935 0.022494 0.457960 -1.364881 2.796066 -1.145585 -1.155408 -1.821955 0.938570 -0.396005 -1.964314 3.564253 2.058105 -1.833248 -0.943427 -0.961757 0.419720 1.549147 2.794485 -1.293132 -0.554836 0.638677 0.035726 -0.559698 -0.203257 1.578050 -1.199463 1.896829 -1.796668 -1.311236 0.843823 2.143604 -0.349015 0.147560 -0.928338 -0.197697 -0.003288 1.889723 0.775360 -0.078675 -1.821494 -4.286682 0.571363 -0.982907 -0.637979 0.533920 -1.281985 -1.758609 0.024482 -0.216548 2.552739 0.333666 -0.292058 1.335360 -2.434723 -2.311920 -0.672707 0.314606 -0.028628 -1.048694 1.320194 -1.126326 -0.040901 0.224362 0.732012 -0.083800 -1.395245 -1.188905 -0.168317 1.196323 0.903343 -1.315557 2.044188 0.516662 -0.629196 -0.604143 0.024764 0.448017 0.454112 -1.303143 -0.855853 -1.510812 0.576454 -0.696991 2.401489 0.250781 0.976950 0.955999 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 1.090432 0.082895 0.980309 0.133350 0.738976 -0.387253 0.492504 1.229561 -0.581164 -1.718834 -1.822066 -0.974766 -0.356304 -0.613096 1.008986 -0.100489 0.625062 0.024602 -2.408852 0.341927 0.691066 0.167532 0.006518 -0.152986 0.313992 -0.642976 -2.060232 0.852689 -0.205305 0.839062 -0.619157 -0.060511 0.598202 0.483497 0.463699 0.916965 -0.284375 -0.404237 1.538203 0.230718 1.976038 0.262393 -0.027974 0.603716 1.269239 0.985050 -1.513980 1.665096 -0.785982 -0.329015 1.680397 -2.432662 -0.771878 0.629752 -1.022703 0.499893 2.065815 0.651316 -0.690321 0.957110 -0.892644 0.294740 0.043015 -1.206144 1.137440 1.407080 0.301462 0.084212 1.523919 -0.445916 -0.384645 0.718630 0.746953 0.133179 -1.674962 -0.804101 0.988776 -2.862290 0.382076 -2.152760 -0.004005 -0.796068 2.288326 -0.405070 0.129148 1.338265 -0.240473 0.513186 -0.542699 -0.230610 -0.801885 0.508735 -0.193873 0.993240 -0.570301 0.300848 0.194180 0.101733 0.482657 1.096004 -0.834827 0.030700 -2.784126 -2.778203 -1.028886 0.227947 0.203572 -0.614413 -1.371495 -0.042976 1.723720 -0.065056 -0.955268 -0.393231 0.626540 0.829902 -1.593742 1.842332 -2.169233 -1.172918 -0.217233 0.690340 0.189768 -0.128330 0.045662 -2.532481 -0.075627 0.137172 0.568681 -0.671241 -0.972206 -0.356669 -0.107651 -0.797523 -0.377505 -0.276259 -0.181956 -0.122022 0.618642 -0.670900 0.738599 -1.927064 0.077411 -1.244520 -1.044091 0.203043 1.916410 1.570385 0.140116 1.387884 -0.343707 -0.541210 -0.861953 -0.810963 -0.135061 -0.497089 1.833649 -0.775204 -0.022074 -0.233577 -0.040321 -0.792027 -0.683909 -0.543265 0.174353 -1.264479 2.139159 -0.394967 -0.464450 -1.300929 0.512507 1.714376 -1.626047 -0.433317 -0.569713 0.661586 -0.621735 -1.279462 0.609618 -0.140224 0.254100 -0.185742 0.996637 -1.312791 0.683452 -0.439445 -0.117360 -0.178908 -1.460438 -0.904732 0.117221 -0.187440 -0.417137 -0.017825 -0.419298 -0.107453 1.180131 1.524116 0.575693 0.433969 -0.334397 -1.258232 -1.853259 -1.173359 0.300855 0.853062 1.377162 -0.042150 -0.491171 -0.230542 -1.048082 1.476826 -0.234108 -0.289198 -0.301654 -0.630620 1.065234 -0.313888 -0.376645 -1.296362 0.191718 0.040831 -2.470194 1.233936 0.401459 -1.180126 -1.249349 -2.392969 0.271099 0.573969 1.733583 0.158577 0.508790 0.285194 -0.186629 -0.252982 -0.844748 1.036129 0.020486 0.944373 -1.325017 -1.061123 0.869562 1.235571 -0.285794 1.040400 0.378803 1.755506 0.883616 1.294203 -0.078809 -1.162082 -0.232884 -2.455467 0.215156 2.172908 0.090144 0.212518 -0.807142 -1.456156 -0.615706 0.592574 1.264375 1.856502 0.936553 0.820809 0.350203 -0.844591 -0.074768 0.840767 0.135341 -1.297269 -0.175832 -0.389129 -0.117410 0.464860 0.357168 1.455285 -1.364612 -3.130970 -0.756611 1.089602 0.512090 -0.398363 1.007868 0.239296 -0.544765 -0.048307 0.094603 1.152014 0.904817 0.285327 -0.639149 -1.053443 -0.323826 -0.309447 1.188523 0.567412 0.397574 0.867410 -PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = 3.506610 0.161678 -1.176499 5.915090 0.529172 -3.172947 0.674743 2.563332 -0.915849 -9.587784 -6.536348 3.405854 0.556968 -0.943231 2.291068 1.219460 -0.220160 1.130883 -11.788617 3.419095 3.998110 1.865472 -0.245549 -2.003749 1.461781 -2.361080 -0.099368 1.740649 0.682808 5.747361 -3.372215 2.238761 4.512647 0.154987 2.925132 4.433144 -1.917267 0.700062 0.814003 0.302747 7.922071 4.278559 -0.321585 3.100301 2.400234 5.670247 -0.933744 4.679952 -0.459734 -3.833221 2.808014 0.911611 -3.165308 -0.131968 -3.731363 3.137706 6.493398 2.509978 -3.053311 2.556684 -1.916730 -0.093861 1.687355 -1.104129 6.561320 3.674187 3.375216 3.495465 7.343321 -2.504748 -0.311534 2.105312 3.140664 -0.936479 3.164376 -3.254238 -5.237196 -3.360242 -0.874020 -9.337553 -2.343546 -0.277735 8.280275 -5.614392 1.073912 1.826154 1.295328 5.522973 -2.940147 -0.716532 -3.924440 0.300838 -3.140797 8.894449 0.315002 1.535567 -0.468046 2.461316 2.231241 3.969312 -1.034880 -3.702684 -3.423540 -10.865520 -2.645986 -1.978727 1.935378 1.885043 -7.673767 -1.136566 0.316773 5.469076 -8.584707 -0.386170 3.756434 2.882639 1.223002 -1.090316 -4.701662 0.115098 -0.188930 0.841182 2.793265 -2.738807 -0.430242 -3.134880 0.399081 0.512332 2.047805 -0.322738 -5.284197 -2.926651 -0.687337 -0.913586 -0.272967 1.260434 2.414066 -3.132944 3.468451 -3.677552 4.379636 -7.771968 -0.096635 -3.310096 -4.734736 -1.010558 3.639935 4.132760 2.965774 -1.509697 -2.002730 -1.985697 -7.504713 -8.161704 1.797115 -0.398400 2.997499 0.508205 -0.533628 1.346898 -2.751682 -0.118017 2.225423 -2.938092 -0.574368 -2.048801 6.978045 -0.476343 -1.373924 -3.851134 -1.554859 0.967291 -1.016598 3.397086 -1.532320 -5.555178 -8.300071 -4.531689 4.776208 -1.567082 0.484035 -3.511743 0.603792 -5.154265 1.214928 -4.872021 0.828644 -0.537427 -3.172630 -5.699673 -0.711881 -0.817978 -0.415666 -0.698658 -4.171957 -0.851305 5.179068 2.540455 1.983723 1.126766 0.637792 -5.716713 -4.998238 0.623270 -2.030683 4.211650 3.479095 -0.317161 -4.142827 -1.524327 -5.885298 4.546228 -2.680118 0.883296 -1.611972 -1.982744 6.500441 -3.043230 -1.724273 -4.926685 1.154918 0.984433 -7.651892 7.089783 3.461121 -2.948945 -0.904599 -1.702510 1.421460 3.491837 5.431450 -3.427824 -2.828092 0.615268 -2.396672 -0.302199 -2.014042 4.164454 -3.954540 2.716629 -3.884180 -2.287283 3.296800 3.743059 -0.014043 2.782267 0.908811 -0.135798 2.589784 4.474662 3.532605 -1.446424 -4.913587 -10.398641 2.826886 -0.531279 -0.306324 -0.923985 -2.139929 -4.891728 0.672963 0.839865 6.033083 3.535310 -1.132157 4.420458 -6.085573 -5.790161 -2.729121 0.779109 0.379997 -2.075723 -0.055986 -2.271967 1.639596 2.254324 0.732954 1.465110 -4.657387 -3.543945 -0.107917 4.899291 1.300376 -0.559434 5.923638 2.042102 -3.221493 -0.843971 0.243657 0.034845 -0.912095 -3.857193 -2.642612 -2.120589 1.127838 -2.571337 3.720878 -0.859040 0.825908 2.151134 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 2.527702 -0.406152 -0.700745 4.158087 0.526837 -1.579259 0.479713 1.611396 -0.303731 -6.772910 -4.490237 3.293302 0.338934 -0.010028 1.126850 1.020598 0.220780 0.647261 -7.534263 2.092828 2.258160 1.025784 -0.040105 -1.065475 0.812356 -1.868998 1.371351 1.388813 0.742137 3.903895 -2.155606 1.392599 3.263120 0.011102 2.006075 3.298703 -0.583641 0.163425 -0.735696 -0.534283 5.586287 2.896464 -0.147547 2.509165 1.300928 4.116359 0.504428 3.433949 1.054043 -2.705692 1.579801 0.342663 -2.658144 -0.654191 -3.009018 2.056306 3.410413 1.574596 -2.214587 1.711554 -0.973907 -0.257289 1.106961 -0.733277 4.246428 1.671258 2.752495 2.417883 4.753239 -2.504030 -0.669815 2.319958 2.453041 0.635276 2.604257 -2.749277 -3.838182 -1.984628 -0.518310 -5.940720 -1.924138 -0.454525 6.037100 -3.813561 0.356107 1.074356 -0.102175 3.587375 -1.906268 -0.308008 -3.172107 0.111665 -1.298214 5.275908 0.433287 0.498400 0.075885 1.525682 1.430980 3.053810 -0.149204 -2.968254 -2.025036 -6.986331 -1.271243 -1.725087 1.504592 1.417070 -4.683669 -0.768892 -0.508491 4.455757 -5.549753 -0.388865 2.910257 1.794088 1.855562 -0.818794 -2.362559 0.084032 0.638702 0.679717 2.547738 -2.267369 -0.155956 -0.958593 0.900759 0.148028 1.421857 0.084515 -3.600739 -2.617962 -0.155717 0.165118 -0.075980 0.429092 1.654332 -2.305818 2.527075 -2.064914 3.198102 -5.084827 -0.173788 -1.944996 -2.803112 -1.016074 4.027145 2.975411 3.058629 -0.971203 -1.248739 -1.253961 -4.663770 -5.626344 1.358348 0.081396 1.581689 0.886304 -0.308460 1.556867 -1.862164 -0.014080 1.221318 -1.839970 -0.545090 -0.675771 2.903951 -0.290124 -0.710929 -2.798641 -0.732665 0.362650 -0.136234 2.665021 -1.163983 -5.844924 -5.278859 -3.208150 3.346767 -1.326044 0.293812 -1.927207 -0.335349 -2.828625 0.616080 -3.510969 0.674719 -0.277370 -2.963147 -4.099047 -0.068712 -0.858332 -0.327986 0.219290 -2.861622 -0.569462 2.965722 1.989592 1.316397 0.804161 0.297933 -4.328410 -3.242412 0.377175 -1.689578 4.007680 1.942708 -0.423658 -3.390605 -1.279693 -3.818303 3.156392 -2.424407 0.741102 -1.234143 -1.303101 4.157091 -2.132303 -0.157321 -3.342764 1.320116 1.425773 -6.640557 4.735402 3.464284 -1.905957 -0.770346 -0.427570 0.547903 2.526874 3.690978 -2.579019 -2.370790 0.678231 -1.364074 -0.119163 -1.333416 2.681443 -2.296835 1.278685 -2.989176 -1.949848 1.968954 2.283746 0.151800 1.306186 1.148488 0.209149 1.310280 3.561130 2.425273 -0.449974 -3.777572 -8.138337 2.433517 1.126940 -0.551123 0.407147 -1.875965 -3.047719 0.825601 -0.745333 3.984678 1.662486 -0.916828 3.301503 -4.173576 -3.934343 -1.946686 -0.275608 0.327545 -0.890454 0.909191 -1.813278 1.081682 0.789591 -0.137286 -0.078593 -2.217709 -1.321250 0.295492 3.295084 1.539156 0.418678 4.076168 1.215243 -2.329372 -0.574072 0.392473 -0.314591 -0.457145 -3.433841 -1.753334 -1.131716 0.976834 -1.593027 1.854101 -0.478113 0.428542 1.031664 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.762146 0.273438 1.437067 0.019922 0.645606 -0.269120 0.599448 1.452003 -0.468838 -1.731957 -2.172892 -0.783055 -0.523532 -0.309413 0.982079 -0.705821 0.617734 0.191234 -3.072547 0.193458 0.875627 0.448789 0.535273 -0.231054 0.355753 -0.453808 -2.008146 1.045302 0.031109 0.930992 -0.584746 -0.323157 0.653226 0.714614 0.473980 1.116723 -0.206581 -0.354117 1.363836 -0.183655 1.847405 0.521960 -0.098454 0.862836 1.174017 1.037942 -1.045144 0.809091 -0.117130 -0.550395 1.042653 -2.775943 -0.958847 0.286860 -0.750815 0.423475 1.871023 0.890119 -0.678450 1.041245 -0.434086 0.000210 -0.066453 -1.792050 0.673228 1.016928 -0.060678 -0.147796 1.219843 -0.701247 -0.599072 0.714613 0.755102 0.392433 -2.170696 -0.859673 0.856694 -3.116933 0.338595 -2.845919 -0.552968 -0.709294 1.827770 -0.405790 0.563356 1.263030 -0.970199 0.170513 -0.256857 -0.527799 -0.833428 0.296612 0.066790 0.381197 -0.360913 -0.207363 0.833142 0.027296 0.786547 1.345190 -0.821816 0.066945 -2.608279 -2.987713 -0.182111 0.272106 0.436298 -0.404988 -0.678950 -0.333345 1.314415 0.268711 -0.765230 -0.693678 0.891912 0.812913 -2.965027 0.925680 -1.699224 -1.036150 -0.150272 0.479599 0.770375 -0.652945 -0.061557 -1.659264 -0.356036 -0.043525 0.576084 -0.452536 -0.185857 -0.968438 -0.105134 -0.372988 -0.483308 -0.587322 -0.411393 0.472106 0.662178 -0.698672 0.893943 -1.379635 0.608805 -0.818689 -0.389914 0.087088 1.782872 1.380951 -0.194539 1.194312 -0.038159 -0.357232 -0.244486 -0.603099 0.544910 -0.040530 2.157877 -0.730996 -0.070400 0.021230 -0.084242 -0.902834 -1.103227 -0.265624 0.269608 -0.884005 1.366982 -0.312575 -0.353943 -1.264888 0.888591 1.663498 -1.856039 -0.676921 -0.810056 0.834234 -0.153453 -1.315127 0.703179 -0.141267 -0.003448 0.005588 0.966917 -0.710610 0.644795 -0.571201 -0.187153 -0.121032 -1.668670 -0.938991 -0.026838 -0.377516 -0.085090 0.425597 -0.274257 -0.345745 1.239555 1.865057 0.529286 0.402256 0.001112 -0.946208 -1.386333 -1.364966 0.163035 0.626933 1.048988 -0.071810 -1.094708 -0.173021 -0.566339 1.586829 0.304752 -0.276899 -0.876799 -0.576258 1.214690 0.052237 0.021932 -1.092580 0.246830 0.760344 -3.025060 0.674671 0.426868 -0.796679 -1.253865 -2.023003 -0.233102 0.869696 1.629856 0.017682 0.096355 0.367064 -0.682051 -0.090777 -1.113570 0.959284 0.234675 0.808396 -1.211975 -1.026045 0.728952 0.824903 -0.010643 1.390714 0.793558 2.264631 1.021191 1.379797 -0.165427 -1.156642 -0.362511 -2.352297 0.739448 3.551034 0.510121 0.330199 -0.740593 -1.561833 -0.456738 0.492558 1.004443 2.279608 0.694071 0.885750 0.752478 -0.682277 -0.130150 0.738650 0.355512 -1.089029 -0.178883 -0.253016 0.208564 0.479535 -0.091673 1.687875 -0.953997 -3.245028 -0.702587 0.921200 0.708436 0.073942 1.026723 -0.077373 -0.971119 0.159170 -0.032710 1.091486 0.525350 0.301221 -0.649814 -0.974242 -0.220769 -0.154869 0.858293 0.508654 0.145936 0.789403 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 1.796514 -0.227913 -0.920845 3.807661 0.164553 -0.988837 0.144956 0.772530 -0.386770 -6.103870 -3.445315 3.669132 0.414231 0.702465 0.708563 1.075495 0.126255 0.563542 -6.127754 1.501754 2.036986 0.935332 0.313786 -0.658066 0.813124 -1.493874 2.072900 0.741879 1.072783 3.535684 -2.066277 1.561186 3.004231 -0.277687 1.621531 2.586079 -0.311845 0.400970 -1.511873 -0.838837 4.684096 1.938368 0.281042 2.227125 0.551103 3.563013 0.608460 2.962226 1.927457 -2.680422 1.305229 1.242416 -1.985310 -0.607609 -2.411274 1.891730 2.212234 1.452967 -1.917777 1.101627 -0.184248 -0.138748 0.872825 -0.331201 3.441560 1.354898 2.346918 2.346125 3.683792 -2.294912 -0.481848 1.760898 1.513554 0.554669 2.988397 -2.441173 -3.415371 -0.681183 -0.665224 -4.538768 -1.873773 -0.161452 4.899675 -3.565350 0.215359 0.589486 -0.054801 3.295569 -1.212529 0.143342 -2.840446 -0.141911 -0.901441 4.406736 0.627133 0.201730 -0.054558 1.204794 1.069993 2.502648 0.289073 -2.705277 -1.039789 -5.074308 -1.252334 -1.722624 1.726443 1.927443 -4.097414 -0.564538 -0.909962 3.984101 -5.027538 -0.214042 2.352614 1.787565 2.175627 -0.726101 -1.630504 0.273858 0.681955 0.291081 2.151190 -1.863592 0.010781 -0.229066 0.439947 -0.027771 1.305358 0.184639 -3.247578 -2.578126 -0.292694 0.256110 0.019775 0.529504 1.897812 -1.792931 2.327661 -1.491827 2.578398 -3.988653 -0.502864 -1.349230 -2.215382 -1.217404 3.085037 2.075959 2.840987 -1.357191 -1.462460 -1.168217 -4.120429 -4.611052 1.123729 0.331655 0.946088 1.706496 -0.433806 1.894382 -1.893016 0.268499 1.288257 -1.550692 -0.785656 -0.355260 1.633883 -0.362214 -0.469746 -2.369789 -0.748383 -0.551151 -0.096149 2.807484 -0.825919 -5.211569 -5.037651 -2.660930 3.014367 -1.367885 0.430313 -1.661857 -0.524419 -2.217521 0.098031 -3.326443 0.412757 -0.173891 -2.371650 -3.656512 0.263492 -0.806934 -0.493918 0.480695 -2.803934 -0.430047 2.111612 1.189438 1.232558 0.394473 0.254764 -3.762122 -2.496251 0.719969 -2.070820 2.666400 1.402453 -0.472736 -3.022200 -1.493844 -3.098772 2.176801 -2.418951 0.960073 -0.890727 -0.796927 3.257009 -2.021620 0.139342 -2.601120 1.075299 1.595331 -5.549643 3.979432 2.560041 -1.316670 -0.171633 0.430952 0.542369 2.086701 2.637658 -2.436689 -2.380660 0.485109 -1.162732 0.114597 -0.882822 2.257594 -2.150607 0.776717 -2.377513 -1.481410 1.564742 1.786591 0.282618 1.031758 1.492159 -0.485363 1.197225 2.899835 2.407889 -0.028920 -3.007277 -6.672441 2.298713 0.219710 -0.470169 0.267808 -1.769847 -2.194627 1.174949 -0.641451 3.257649 0.165619 -0.748469 2.896608 -4.146248 -3.362187 -1.635731 -0.782154 0.242038 -0.298213 0.530846 -1.392845 1.033906 0.783360 -0.335764 -0.541365 -1.506340 -0.162394 0.533907 2.887678 1.138679 1.012402 3.526225 1.216872 -2.149935 -0.282931 0.323387 -0.440974 -0.936326 -3.481351 -1.311000 -0.396658 0.845709 -1.559790 1.018073 -0.858150 -0.152123 0.474281 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = 2.757663 -0.136848 -1.685724 5.306458 -0.096760 -1.638813 0.262491 1.359430 -0.917617 -8.499948 -5.326994 5.076755 0.712978 0.627352 1.282980 1.710267 -0.149286 0.328010 -8.944665 2.350105 2.935942 0.893155 -0.067525 -0.727193 1.007292 -2.375792 2.256382 1.365581 1.009841 4.916502 -2.544306 2.488588 4.166178 -0.310556 2.334885 3.691389 -1.404892 0.455526 -1.485329 -0.754022 6.425691 3.065353 0.126994 2.718038 0.865427 5.023203 0.265543 4.188327 1.524888 -3.653537 2.426052 1.863425 -3.022427 -0.665615 -3.274171 2.195802 3.215820 1.469284 -2.428965 1.658637 -1.215137 -0.296974 1.249310 -0.237583 5.487426 2.097532 3.826568 3.303603 5.075312 -2.992829 -0.570307 2.679432 1.868376 0.350533 3.523734 -2.975667 -4.837903 -0.581838 -0.646710 -6.745964 -3.076733 -0.237918 7.347155 -4.765205 -0.259198 0.426863 0.254149 4.836659 -2.159185 0.366843 -3.770247 -0.293030 -1.513771 6.176501 0.748557 0.631498 -0.152876 1.707300 1.604989 3.540618 -0.311716 -3.719198 -2.048304 -7.081199 -1.698091 -2.195363 2.388729 2.675033 -6.122739 -0.852457 -1.074861 5.610419 -6.932692 -0.274761 3.433320 2.455422 3.418349 0.069839 -3.100730 0.331806 1.145306 0.745326 3.411192 -2.114244 0.272627 -0.953877 1.125386 -0.013272 1.702326 0.414224 -5.582822 -3.428371 0.111173 -0.300625 0.185267 1.059739 2.738311 -2.117000 3.158603 -2.158077 3.796927 -6.319776 -0.507030 -2.367637 -3.436271 -1.413159 3.915201 4.364429 3.848344 -1.775555 -1.754821 -1.280866 -6.220837 -6.661331 1.151438 0.342408 1.448856 1.562172 -0.533496 2.582342 -2.523227 0.840383 1.902286 -2.179469 -0.947202 -0.797652 3.286884 0.083320 -0.896102 -2.930675 -1.414460 -1.284288 -0.266329 4.192016 -0.897544 -7.475143 -7.420344 -3.714195 4.181542 -1.729687 0.285331 -2.622331 -0.704158 -3.544571 0.087990 -4.469506 0.607752 -0.091572 -3.216764 -5.000315 0.186407 -0.750069 -1.063723 0.094939 -3.687235 -1.002696 3.942463 1.487873 2.029618 0.866341 0.096244 -4.547961 -3.436095 1.288116 -2.903085 4.082767 2.840748 -0.807956 -4.145949 -1.802899 -4.928280 3.421258 -3.023311 1.327736 -1.377576 -1.362246 4.814284 -2.964144 -0.227250 -3.457809 1.449780 1.779366 -8.427049 5.480286 3.817516 -1.887292 -0.340186 0.359029 0.766358 3.043816 3.648041 -3.099879 -2.992861 0.339875 -1.361351 0.107772 -0.736002 3.255651 -3.278266 0.971627 -3.186081 -2.002897 2.632479 2.491405 0.452910 1.498851 1.377915 -0.545771 2.168276 3.659357 3.339943 -0.760220 -4.119380 -9.775460 3.096792 -0.135931 -1.311603 0.218050 -2.269971 -3.484119 1.221967 -1.539034 4.685322 -0.051878 -1.697465 3.920621 -5.548537 -4.811358 -3.009997 -0.571672 -0.080531 -0.390964 0.742744 -1.618906 1.588773 1.576539 -0.423157 -0.373773 -2.832147 -0.800683 0.551970 4.188397 1.522907 1.081023 4.905013 1.747906 -2.669210 -1.102681 0.628115 -0.895966 -0.938254 -5.311574 -2.189661 -0.867528 1.314457 -2.101412 1.337804 -0.667113 0.057943 1.040112 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = 1.834292 -0.544393 0.132727 2.112888 0.449014 -1.020763 0.430929 1.361467 -0.082524 -4.168437 -2.798089 2.091881 -0.065238 -0.234031 0.852662 0.475642 0.461974 0.308627 -5.019702 1.365080 1.300346 0.673444 0.033496 -0.624677 0.607268 -1.218850 0.417320 1.103698 0.390787 2.339756 -1.482112 0.633986 1.961337 0.192404 1.393597 2.141536 -0.327570 -0.239267 -0.066429 -0.380944 3.770503 1.623633 -0.022194 1.759433 1.230135 2.580698 -0.033236 2.459526 1.471199 -1.561932 1.428675 -0.663702 -1.846801 -0.220976 -2.114401 1.219849 1.999576 0.803101 -1.561491 1.239990 -0.476718 -0.055812 0.592067 -0.753371 2.705529 1.179871 1.527584 1.306986 3.030655 -1.500797 -0.512998 1.498898 1.840944 0.752046 1.011856 -1.877712 -1.698513 -2.208394 -0.109856 -3.670088 -1.140956 -0.698833 3.525552 -2.219874 0.430956 0.997765 -0.420890 2.095886 -1.038699 -0.276640 -2.133412 0.196936 -0.180390 2.832605 -0.131311 0.292515 0.261400 0.780811 0.802097 2.057992 -0.033378 -1.796615 -1.873824 -4.488035 -0.841647 -0.937550 0.765080 0.440384 -2.926320 -0.229285 0.183754 2.505872 -3.228074 -0.468207 1.742916 0.967364 0.413267 -0.005176 -1.452903 -0.421411 0.339809 0.787898 1.316427 -1.425318 -0.120748 -1.177738 0.492637 0.277140 1.077561 -0.160662 -2.041320 -1.681172 0.119428 0.376861 -0.308411 0.093298 0.722126 -1.246631 1.508139 -1.281806 2.008304 -3.058777 -0.240579 -1.510638 -1.161089 -0.551817 3.255935 1.863209 1.854818 0.113911 -0.750257 -0.740824 -2.604408 -3.327945 0.876636 -0.319054 1.359988 0.351530 -0.132036 0.756479 -0.901452 -0.410767 0.058452 -1.284546 -0.291160 -0.832888 1.039961 -0.302421 -0.453482 -1.821104 -0.064603 0.946913 -0.543949 1.182132 -0.857049 -3.362700 -2.834642 -2.207179 2.011718 -0.778839 0.259297 -0.909702 0.097044 -1.662438 0.490737 -2.048914 0.377641 -0.353556 -2.171047 -2.525160 0.035838 -0.668573 0.077982 0.123773 -1.693038 -0.268127 1.333759 1.708346 0.814808 0.666009 -0.001584 -2.910318 -2.369310 -0.263021 -0.727044 2.565800 1.130652 -0.180091 -2.162496 -0.842323 -2.228457 2.200615 -2.060360 0.406442 -0.572344 -1.192539 2.632517 -1.113580 -0.124726 -2.130636 1.004736 0.968584 -4.407824 2.891668 2.061942 -1.560699 -0.872100 -0.980105 0.362357 1.724455 2.680009 -1.315373 -1.140619 0.542826 -0.646730 -0.139082 -1.048426 1.836090 -1.050640 1.148501 -2.166451 -1.530959 1.328011 1.568550 0.073878 0.922644 0.787932 0.809677 0.717498 2.474092 1.188928 -0.248165 -2.240444 -5.286040 1.465534 2.180890 -0.029646 0.748649 -1.704181 -2.079508 0.251358 -0.331354 2.561057 1.103455 0.053555 2.024654 -2.192857 -2.441043 -1.074837 -0.111082 0.146354 -0.630196 0.754594 -1.006466 0.438084 0.454375 0.103488 0.237677 -1.198065 -1.594469 0.089579 1.928937 1.309575 0.141884 2.498252 0.696914 -1.588443 -0.258579 0.170200 0.123444 -0.058609 -1.829103 -1.138347 -0.959943 0.485836 -1.008863 1.400228 -0.027220 0.494306 0.384424 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 1.262583 0.215909 -0.233174 1.338232 0.036756 -0.953840 0.228389 1.112985 -0.523418 -2.844962 -2.254677 0.592201 0.092267 -0.396878 0.905163 0.624157 0.027017 0.338048 -3.674957 1.138204 1.270624 0.517440 -0.060508 -0.441887 0.478853 -0.788199 -0.897916 0.391935 0.075330 1.648936 -1.060565 0.683720 1.318084 0.085433 0.810467 1.289343 -0.846734 -0.142393 0.827587 0.195690 2.372579 1.215266 -0.040867 0.724995 0.815508 1.647416 -0.701540 1.529314 -0.462372 -1.097050 1.142262 -0.779611 -1.206336 0.426447 -1.087075 0.806210 1.739229 0.800305 -0.784554 0.884957 -1.010245 0.073573 0.450553 -0.834722 2.122222 1.168435 1.072997 0.879986 2.118402 -0.562401 0.016598 0.697693 0.881544 -0.257165 0.303610 -0.964959 -0.799170 -1.852170 -0.113148 -3.211091 -0.577989 -0.205561 3.226929 -1.612250 0.338540 0.776119 0.250481 1.647249 -0.981229 -0.133111 -1.160557 0.234761 -0.759031 2.046875 -0.129234 0.358798 -0.241545 0.663561 0.601680 1.055818 -0.643854 -0.847545 -1.936303 -3.241515 -0.815442 -0.329864 0.448759 0.372891 -2.469104 -0.182821 0.722755 1.780803 -2.497412 -0.073398 1.144580 0.805596 -0.104935 0.787945 -1.904708 -0.323566 -0.142430 0.751057 0.848946 -0.735649 -0.007215 -1.587445 0.185998 0.200965 0.720117 -0.204935 -1.794814 -0.906799 -0.030826 -0.604099 -0.183275 0.472171 0.710280 -0.679006 1.080310 -1.063763 1.248748 -2.531753 -0.004836 -1.189935 -1.483356 -0.158791 1.939032 2.144732 0.673090 0.083131 -0.488028 -0.609494 -2.224187 -1.883832 0.305658 -0.410760 1.277743 -0.133636 -0.012762 0.239138 -0.479571 -0.061719 0.108544 -0.939875 -0.028351 -0.861942 2.301789 -0.108275 -0.501935 -1.489926 -0.425571 0.702453 -0.802275 0.588915 -0.468123 -1.262907 -2.290251 -1.450125 1.362874 -0.390708 0.351043 -1.045985 0.521322 -1.375385 0.461273 -1.299397 0.049015 -0.027227 -1.205687 -1.639456 -0.220063 -0.155044 -0.597323 -0.421454 -0.936128 -0.285838 1.863506 1.066756 0.680465 0.393180 -0.029105 -1.683590 -1.702797 -0.157814 -0.598046 1.442572 1.523192 -0.208961 -1.607821 -0.328706 -1.842003 1.753847 -0.792956 0.131809 -0.688937 -0.632725 1.928567 -0.892443 -0.330132 -1.530682 0.419979 0.071614 -3.601519 1.933206 1.243254 -1.053927 -0.401417 -1.224398 0.598961 1.150310 1.728421 -0.560021 -0.327029 0.079170 -0.661205 -0.132018 -0.683482 1.381713 -1.210674 0.778831 -1.158070 -0.678854 1.201539 1.118219 -0.026662 0.810663 0.224293 0.620356 1.064613 1.223069 0.835575 -0.923198 -1.349036 -3.526579 0.709463 1.125226 -0.099125 0.088934 -0.690323 -1.493746 -0.142380 -0.199853 1.818710 1.204137 -0.070101 1.205080 -1.388369 -1.672772 -0.766408 0.643219 -0.068552 -0.722193 0.195770 -0.574269 0.285084 0.832972 0.363389 0.740060 -1.623355 -1.900806 -0.175215 1.655724 0.792373 -0.282244 1.677218 0.569353 -0.869560 -0.333217 0.131226 0.280475 -0.099172 -0.887061 -0.888614 -0.750564 0.199033 -0.793629 1.260054 0.015838 0.317158 0.698257 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.351507 0.299297 0.612610 0.115137 0.227471 -0.429217 0.463074 0.786065 -0.181091 -0.964091 -0.731947 -0.459999 -0.130006 -0.354619 0.301854 -0.196052 0.014247 0.667330 -1.217997 0.190518 0.594733 0.634725 0.376643 -0.621190 0.156929 -0.047187 -1.195576 0.346152 0.089870 0.704582 -0.368450 -0.344533 0.477666 0.286577 -0.134128 0.679438 0.490072 -0.010336 0.686678 0.064081 0.875144 0.294708 -0.186380 0.418013 0.460462 0.603869 -0.350765 0.251578 -0.737218 -0.335687 0.149140 -1.318275 -0.520458 -0.045884 -0.223819 0.456267 1.202594 1.054115 -0.246225 0.687556 -0.184239 0.030015 0.167032 -0.846451 0.186100 0.851218 -0.322758 0.144545 1.116249 -0.437343 -0.178378 0.142673 0.367779 -0.195799 -0.404814 -0.354332 0.240209 -1.992163 -0.039813 -1.579783 -0.165053 -0.077406 1.208139 -0.599175 0.617573 1.089460 0.036923 0.236946 -0.226783 -0.331823 -0.390838 0.231415 -0.203230 0.963168 -0.075877 0.002214 -0.060984 0.195494 0.551381 0.490189 -0.139621 0.047358 -1.329261 -1.531095 -0.274290 -0.004939 -0.163694 -0.143292 -0.647646 -0.387172 1.226988 0.400918 -1.007179 -0.176281 0.600955 0.589129 -1.033047 0.019102 -0.830648 0.017945 -0.341186 -0.119515 0.070266 -0.672387 -0.251118 -0.465381 -0.395337 -0.019871 0.125545 -0.319273 -0.488139 -0.384543 -0.235658 -0.370672 -0.073145 -0.135467 -0.205486 -0.276960 0.274631 -0.783899 0.458747 -0.792560 0.278914 -0.023782 -0.654177 -0.033058 0.891547 0.163508 -0.234982 0.241218 -0.341555 -0.504653 -0.202867 -0.625348 0.483742 -0.036736 1.068407 -0.208669 -0.077979 -0.338921 -0.138967 -0.459579 -0.282109 -0.225560 0.209514 -0.218662 1.397291 -0.411942 -0.203586 -0.908214 0.291248 1.134126 -0.393785 -0.406283 -0.505147 0.786273 -0.311810 -0.711623 0.521830 -0.046564 -0.001691 -0.238899 0.368933 -0.544178 0.508620 -0.293452 0.273094 0.094452 -0.699519 -0.724049 0.118855 -0.197950 -0.302159 0.237110 -0.244034 -0.085708 0.170103 0.401730 0.039292 -0.056672 0.246442 -0.802108 -0.901317 -0.639501 0.157315 0.223299 0.479980 0.373783 -0.621550 -0.034975 -0.376134 0.862310 -0.059916 -0.123183 -0.461177 -0.029068 0.940404 -0.109883 -0.145274 -0.966526 0.214803 0.245021 -0.743525 0.824376 0.233405 -0.402229 -0.500261 -0.827420 -0.075148 0.599921 0.973036 -0.330060 -0.296805 0.460695 -0.539284 -0.134170 -0.687907 0.463029 -0.200854 0.759159 -0.521799 -0.290755 0.167213 0.716272 -0.216348 0.823113 0.430147 0.667318 0.056890 0.675276 0.130349 -0.506625 -0.322379 -0.667351 0.422259 0.818789 0.476487 -0.067746 -0.367474 -0.575562 0.221721 0.742532 0.642723 1.407718 0.223009 0.499518 -0.213637 -0.559598 0.309319 0.452845 0.469191 -0.739832 -0.020995 -0.192452 0.129697 0.382977 0.061358 0.817202 -0.624338 -1.371006 -0.325032 0.752672 0.261375 -0.368278 0.786438 -0.118468 -0.466785 0.316606 -0.209753 0.725949 -0.016628 0.512052 -0.073873 -0.375270 0.063429 -0.266085 1.059821 -0.041793 -0.298810 0.580620 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = 5.019391 0.718207 -4.921328 9.491193 -0.254936 -2.257839 0.125810 1.586785 -2.094501 -14.627438 -8.512044 8.725252 1.400088 1.489802 2.097229 4.319090 -0.907522 0.418994 -11.559072 3.572732 4.796901 0.713846 -1.106425 0.054249 1.312592 -3.816848 2.721933 1.219489 1.795359 7.705231 -3.759356 4.465248 7.340374 -1.544976 1.937638 5.414974 -1.624667 1.480607 -2.665755 -1.221781 10.036131 4.003233 0.270620 4.234903 0.145377 8.097085 -1.304815 10.636430 -0.689910 -6.457686 5.100427 2.339919 -4.556089 -0.321281 -4.474539 3.802044 5.088739 2.619257 -3.607208 2.150855 -3.106991 -0.042938 2.219943 0.333232 8.881046 5.283966 6.900329 6.288645 8.335402 -4.849350 -0.734336 5.046886 1.464683 0.545143 6.482275 -4.335359 -7.404397 1.815989 -0.646667 -8.612690 -5.683626 -0.512247 15.446627 -8.414322 -2.060114 -0.009970 2.148788 8.834720 -4.007732 2.813062 -6.021289 -0.240204 -3.206843 10.950544 1.464522 1.282692 -2.701835 2.131853 2.203358 5.256180 -1.759700 -5.442372 -4.997985 -9.669390 -3.933278 -3.560366 3.950273 5.915666 -12.054741 -2.021169 -1.604733 9.923593 -12.060652 -0.091138 5.562412 4.690447 10.205916 6.467178 -7.616483 0.425096 2.946939 0.100365 5.502719 -1.617124 0.828178 -3.261597 2.556852 -0.724929 1.781368 0.965948 -13.036420 -4.854889 0.312069 -2.984341 1.702141 2.812169 5.872437 -4.325411 5.500577 -2.613770 5.035822 -12.083999 -2.374107 -3.084632 -8.959401 -2.373011 8.084280 10.065409 7.843576 -3.079529 -3.825254 -4.036526 -11.519726 -10.951123 -0.653516 0.010057 2.023267 2.987541 -0.845837 4.675959 -4.251548 2.771313 3.934524 -3.035001 -1.665377 -1.583207 8.913829 -0.062520 -1.308036 -5.539278 -3.879388 -4.247658 -0.953591 8.257518 -0.396679 -13.556141 -13.863651 -6.066214 6.888218 -2.935227 1.138762 -5.507026 -1.481155 -7.348413 -0.737524 -6.840549 0.673861 0.731765 -5.036848 -8.368851 1.322490 -0.491826 -4.554469 -0.353778 -6.203651 -1.853509 8.176176 1.312696 4.076310 1.539166 -1.357293 -7.859131 -5.735311 2.841850 -6.013237 7.656920 7.213579 -1.609920 -6.070690 -3.241722 -10.034586 6.184388 -6.183261 2.193327 -1.979469 -0.079764 7.896205 -5.662634 -1.104386 -6.375066 2.414387 1.947476 -15.576630 8.985064 6.612210 -2.641047 0.149737 0.823762 1.689843 5.128569 5.009390 -5.275440 -4.760771 0.531208 -1.580114 0.116495 -0.088982 5.109175 -6.531565 1.057488 -4.541164 -2.253780 4.283539 4.109501 -0.058056 0.970202 2.080288 -2.116754 5.396771 5.017480 5.980599 -3.012942 -5.696183 -17.738556 4.821842 -3.356857 -4.514364 -0.053219 -3.872755 -4.792918 2.521871 -4.904945 8.033227 -2.940026 -2.429845 6.372075 -10.337157 -7.986355 -4.605037 -0.585406 -0.744737 -0.441311 1.755309 -1.821345 2.108801 3.464029 -1.266521 -1.361978 -6.660028 -1.222095 0.565729 7.944974 1.177603 1.844971 7.669491 3.268796 -3.347635 -2.250385 1.473838 -0.925436 -1.754865 -10.472165 -3.158691 -0.721248 1.592316 -3.812237 2.002409 -1.141449 -1.324466 2.569866 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 4.377569 0.344553 -2.908350 7.927896 -0.213487 -2.654855 0.407629 2.364410 -1.465601 -12.752926 -8.411137 6.191236 1.263501 0.310583 2.510309 2.927637 -0.389290 0.827191 -12.859930 3.718113 4.806099 1.523278 -0.225263 -1.190164 1.567082 -3.394147 1.509144 1.254479 1.349422 7.423639 -3.670317 4.008957 6.224127 -0.657431 2.986567 5.322562 -2.837124 0.826590 -0.857179 -0.674575 9.451707 4.510337 0.497215 3.877598 1.258208 7.295752 -1.101787 7.165431 0.462820 -5.391661 4.720702 1.861715 -4.236942 -0.109813 -4.571318 3.606892 5.814320 2.401175 -3.222813 2.541914 -2.756686 -0.069575 1.964732 -0.965112 8.316304 4.487936 5.403185 5.201176 7.999969 -3.900968 -0.381489 3.661141 2.348508 -0.296094 4.925510 -4.585647 -6.541547 -0.971512 -1.292621 -10.014694 -3.738747 -0.552914 12.747565 -7.334606 -0.282512 0.995264 1.370966 7.456045 -3.380205 0.754922 -5.160773 -0.071997 -3.177033 9.300417 0.730978 1.453053 -1.194791 2.355745 2.036783 4.710091 -1.135177 -4.894527 -4.309428 -10.695666 -3.373689 -2.873676 3.615923 3.981534 -10.037360 -1.061113 -0.968514 7.417470 -10.898370 -0.211643 4.918215 4.066656 5.091569 2.119118 -6.112062 -0.003216 1.477180 1.409016 4.417031 -2.836815 0.387209 -3.339640 1.007024 0.046560 2.449203 0.121066 -8.677113 -4.650692 -0.563272 -1.393077 0.455209 2.144205 4.432187 -3.402170 4.750509 -3.285068 5.403704 -10.314440 -1.408129 -4.032110 -6.313087 -1.930496 6.506607 7.042057 5.832541 -2.413065 -2.874027 -2.603299 -9.887420 -8.912624 0.980113 -0.233895 2.843459 2.078660 -0.579723 3.297185 -3.587328 1.553843 2.599672 -3.334873 -1.109963 -1.559410 7.219525 -0.269904 -1.562771 -5.228989 -2.573761 -1.586435 -1.245196 5.848036 -0.960376 -9.586616 -11.519064 -5.444614 6.228711 -2.483910 0.997273 -4.470753 -0.211888 -5.539445 0.014006 -6.561502 0.617264 0.278692 -4.653023 -7.461916 0.311583 -0.723674 -2.182725 -0.287579 -5.250377 -1.390655 7.096160 2.941192 3.109463 1.566624 -0.201164 -7.147086 -5.689709 1.505039 -4.353368 5.861361 5.324786 -1.229283 -5.795849 -2.583490 -7.845275 5.198158 -4.167653 1.681798 -2.179968 -1.489703 7.176775 -4.795920 -0.651183 -6.295695 1.586344 1.742393 -13.511566 7.818958 4.905598 -2.930508 -0.332160 -0.764740 1.769909 4.239913 5.434272 -3.882250 -3.844212 0.389670 -2.234945 0.023564 -1.539911 4.897285 -5.519447 1.616470 -4.453798 -2.506390 4.469248 3.987167 0.234295 2.274341 1.924489 -0.661399 4.185946 4.966362 5.335574 -2.324605 -6.034892 -14.870629 4.040799 -0.297417 -2.017669 -0.323573 -3.128536 -5.281241 1.644660 -1.617251 7.133459 0.833905 -1.589696 5.710097 -8.119978 -7.220975 -4.015458 0.288182 -0.008827 -1.266327 0.219768 -2.448990 2.227326 3.045484 -0.128949 0.333421 -5.518109 -2.567279 0.503983 7.174918 1.851040 1.211862 7.298711 3.071829 -3.698950 -1.543135 0.987676 -0.990905 -1.591262 -7.355051 -3.085697 -1.304513 1.543753 -3.397254 2.799088 -0.971730 -0.046008 2.054679 -PE-benchmarks/tug-of-war.cpp__main = 0.374488 0.007439 0.444362 0.267536 0.357175 -0.327909 0.336603 0.492816 -0.028228 -0.910993 -0.532295 0.003104 -0.132407 -0.255549 0.176018 -0.127136 0.176265 0.490882 -0.728287 0.190367 0.293988 0.424202 0.116091 -0.429489 0.104630 -0.116829 -0.525749 0.340053 0.145578 0.584277 -0.363741 -0.289982 0.423276 0.168620 0.041433 0.627262 0.657952 -0.002026 0.254349 -0.053939 0.954662 0.173558 -0.018970 0.563983 0.490063 0.581254 -0.148626 0.600353 -0.135624 -0.282101 0.230122 -0.903479 -0.401354 -0.138228 -0.464242 0.493485 0.872501 0.677857 -0.416184 0.541642 0.000657 0.037376 0.137289 -0.512774 0.217873 0.628150 -0.190298 0.196073 1.026191 -0.467887 -0.289691 0.338544 0.576969 0.163111 -0.029222 -0.390016 0.008855 -1.326002 -0.076332 -0.887536 -0.060115 -0.193767 1.039089 -0.549807 0.389795 0.884558 -0.083627 0.208620 -0.166129 -0.277663 -0.487557 0.195586 -0.057695 0.838801 -0.018984 0.045077 -0.048247 0.130655 0.367463 0.556817 0.001508 -0.173346 -0.925989 -1.351977 -0.372894 -0.141634 -0.121584 -0.192635 -0.570220 -0.311127 0.768622 0.460090 -0.818809 -0.160341 0.506304 0.383388 -0.427710 -0.032326 -0.523581 -0.015839 -0.112093 -0.125418 0.027484 -0.493933 -0.257677 -0.322338 -0.188242 -0.050787 0.157368 -0.270752 -0.379267 -0.327978 -0.212283 -0.017807 -0.105399 -0.263508 -0.185256 -0.508947 0.289119 -0.493702 0.395913 -0.665184 0.006188 -0.112530 -0.561054 -0.085495 1.091378 -0.055526 0.336769 0.197925 -0.360771 -0.504028 -0.259718 -0.800868 0.435386 -0.113963 0.700614 0.000569 -0.049306 -0.179990 -0.169574 -0.483505 -0.090159 -0.260339 0.094603 -0.155758 0.749387 -0.452368 -0.115537 -0.832986 0.250058 0.909060 -0.129591 -0.215974 -0.463910 0.003715 -0.262971 -0.623306 0.443986 -0.113771 0.087702 -0.046121 0.128646 -0.481295 0.339143 -0.351353 0.267336 -0.088605 -0.673075 -0.658740 0.148875 -0.252742 -0.118200 0.254845 -0.345620 0.034283 -0.052078 0.371459 0.032539 0.023351 0.129554 -0.918564 -0.848493 -0.482864 0.132793 0.413274 0.302051 0.311010 -0.429490 -0.147265 -0.424716 0.616722 -0.518420 -0.080348 -0.120615 -0.109779 0.765988 -0.161917 -0.106778 -0.828164 0.283656 0.311906 -0.658073 0.775276 0.347208 -0.455254 -0.469372 -0.537478 -0.076102 0.502974 0.949543 -0.386696 -0.285922 0.476731 -0.322809 -0.113490 -0.566136 0.415743 -0.067977 0.685683 -0.626200 -0.414260 0.089852 0.674672 -0.171679 0.467125 0.364283 0.459271 -0.073446 0.787058 0.165628 -0.128183 -0.403749 -0.841586 0.396549 0.600766 0.286049 0.162618 -0.476523 -0.441253 0.225669 0.420070 0.603798 0.790317 0.305554 0.524193 -0.363595 -0.550334 0.301969 0.115037 0.400389 -0.596319 0.214604 -0.309388 0.049043 0.069697 0.045336 0.360076 -0.280603 -0.835382 -0.190750 0.524189 0.272863 -0.153619 0.694115 -0.066194 -0.455277 0.303519 -0.125054 0.593133 0.049269 0.057556 -0.105947 -0.364133 0.058108 -0.225057 0.847295 -0.095380 -0.132844 0.400126 -PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = 2.331957 0.508895 -2.170237 4.736825 -0.011912 -1.356153 0.120302 0.745761 -1.328675 -7.350596 -4.320089 2.939054 1.110592 0.704816 0.925003 2.399136 -0.478501 0.693588 -6.060719 1.889030 2.720099 0.856382 -0.148711 -0.672882 0.746522 -1.916564 1.386556 0.273063 0.934326 4.295221 -2.064808 2.420195 3.705118 -0.752248 1.424427 2.990838 -0.693660 0.691927 -1.137151 -0.218114 5.180156 2.164009 0.440892 1.700825 0.121338 4.158971 0.100511 4.062287 -1.477319 -3.180175 2.240309 1.114646 -2.257217 -0.279882 -2.498292 2.182128 3.180784 2.162203 -1.791221 1.288941 -1.436724 0.001928 1.264163 0.098239 4.530535 2.238879 3.227323 3.132733 4.572794 -2.449065 -0.194936 2.253856 0.772884 -0.490211 3.673611 -2.788498 -3.823539 0.330233 -0.753371 -5.379695 -1.933715 0.302958 7.861027 -4.369591 -0.476676 0.672343 1.059290 4.349206 -2.018224 0.580428 -2.947833 -0.100506 -2.255765 5.832282 0.678448 0.721357 -1.076357 1.570165 1.253634 2.449351 -0.522943 -2.874729 -2.151932 -5.251216 -2.167235 -1.893628 1.915387 2.736505 -5.774899 -1.196539 -0.939356 4.572068 -6.558179 0.464585 2.897167 2.717592 4.597767 1.228522 -3.496919 0.584457 0.804809 0.334132 2.528336 -1.482552 0.298356 -1.262910 0.919419 -0.208661 1.062011 0.139313 -5.950447 -2.435916 -0.499153 -1.571412 0.562634 1.353388 2.851674 -2.561118 2.779902 -1.955129 2.868663 -6.095855 -0.861900 -1.741009 -5.026420 -1.253621 3.409167 3.738200 3.354386 -2.007920 -2.116162 -1.617173 -5.863795 -5.273994 0.221022 0.222030 1.072938 1.798028 -0.443793 2.045239 -2.273352 1.071380 2.373961 -1.696242 -0.869460 -0.543428 4.905673 -0.185874 -0.875334 -2.997322 -1.776845 -1.433187 0.176448 3.968276 -0.630431 -5.631886 -7.086236 -2.999201 3.589527 -1.506543 0.666082 -2.716997 -0.674649 -3.722394 0.058483 -3.924335 0.640236 0.270549 -2.351019 -4.351114 0.530586 -0.370921 -2.065997 0.024818 -3.014546 -0.712152 4.002816 0.609658 1.668630 0.300503 -0.048022 -4.120871 -3.158154 1.460015 -2.722550 3.417274 2.962655 -0.601638 -3.039974 -1.502824 -4.563287 2.680244 -1.831383 1.006011 -1.104627 0.043115 3.918489 -3.143843 0.205756 -3.534305 0.957063 0.891666 -7.326810 4.882370 3.138655 -1.443805 0.136607 0.387577 1.018311 2.189865 2.600770 -2.379299 -2.535589 0.347022 -1.209113 0.008402 -0.747848 2.472662 -3.481533 0.690905 -2.424317 -1.252638 2.106430 2.415220 -0.054494 0.973256 1.122610 -1.283525 1.826897 2.831433 3.183279 -1.091768 -3.284154 -8.055353 2.286551 -2.124997 -1.533967 -0.638841 -1.164996 -2.298744 1.414197 -1.243755 4.049999 0.440880 -1.523158 3.361383 -5.364594 -4.206359 -2.145111 0.015008 0.163252 -0.680351 -0.112936 -1.668743 1.378428 1.526188 -0.253343 -0.365972 -3.294350 -0.344065 0.351983 4.473994 0.636250 0.795216 4.297157 1.573383 -1.436462 -0.833247 0.906755 -0.265613 -0.726892 -4.360468 -1.764314 -0.363052 1.008141 -1.980649 1.428126 -1.086389 -0.536546 1.652314 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = 3.615154 -1.615215 -2.120228 7.366959 -0.049307 -1.297263 0.262045 1.579479 -1.373596 -12.225694 -6.339203 2.410438 1.398901 2.217638 2.137204 3.742793 -0.595061 -0.055096 -10.726955 2.916897 4.777946 1.623638 1.607192 -0.478710 1.772226 -3.510899 3.068052 0.531265 1.953073 6.922322 -3.446945 3.712984 6.255038 -1.283859 2.387873 4.963069 -0.358891 1.098291 -2.651823 0.181151 8.442555 3.412680 0.051223 2.080738 -0.327268 6.842400 1.241620 7.077039 -0.795237 -5.677178 4.755491 -1.781539 -3.756164 -0.903295 -3.917562 3.217144 5.134893 4.786739 -3.050803 1.852800 -2.652921 -0.016796 1.639686 0.464709 7.081080 2.632654 5.893050 4.708413 6.514376 -4.541280 -0.786671 4.262395 0.634420 -0.040729 5.413746 -6.333481 -5.630785 -2.898612 -0.672986 -7.262958 -4.374823 0.223808 10.040696 -6.885909 -0.371572 1.672669 -0.328682 6.673181 -2.790915 1.510283 -5.198162 -0.362044 -1.142483 8.208473 0.188637 -0.018568 -0.189107 2.507532 2.261725 4.385564 1.160193 -4.656117 -4.349058 -7.121289 -2.770119 -3.043161 4.266080 5.028507 -8.834215 -1.534942 -1.817864 4.895040 -9.849180 1.305042 4.910362 5.554364 8.693446 1.427302 -3.782104 0.412318 2.144717 1.077194 5.039862 -3.809945 1.071345 -2.815161 2.743192 0.480866 1.588787 -0.276737 -7.957069 -4.498006 -0.501669 -1.461926 0.794250 2.158169 4.670189 -4.070745 4.737033 -3.234759 5.182168 -9.301891 -1.376262 -2.578229 -6.490519 -2.249283 9.259708 5.136173 4.907332 -2.501017 -5.176427 -1.867830 -8.177266 -8.132468 -0.539176 1.229460 2.124936 3.890651 -0.828381 4.369007 -3.081437 2.058652 1.477776 -2.105437 -1.435788 -0.256641 2.113924 -0.043050 -1.149407 -4.711631 -1.867544 -1.781159 -0.592420 7.111220 -0.760765 -9.471526 -10.808174 -5.263880 5.838279 -2.586348 1.076402 -3.976561 -1.069613 -6.685344 0.619968 -6.811913 1.381394 0.670941 -5.134325 -7.052017 1.592832 -1.162192 -1.152483 1.116028 -4.299367 -1.827101 3.863404 2.352667 3.147676 0.703207 -0.076569 -7.683857 -5.593460 1.600414 -4.978662 6.985861 1.692977 -1.798317 -3.719602 -2.761918 -6.129751 4.611668 -2.415992 1.452663 -2.326440 -0.061879 5.940996 -4.100667 1.256376 -6.536526 1.763300 2.691872 -10.091845 7.566727 5.269388 -1.951778 0.010949 0.987293 1.051467 3.880139 3.688616 -2.892058 -4.516646 0.277985 -1.239235 0.284772 -1.724450 3.723519 -5.508674 0.308208 -3.961089 -2.608105 2.721541 3.653988 0.186290 1.513869 3.077233 -1.100119 1.357078 4.885089 4.680323 -1.501342 -5.098902 -13.213553 4.363922 1.073059 -2.151775 -0.940820 -3.609848 -3.334189 2.439722 -0.450631 6.194395 4.469419 -1.258533 5.624751 -8.256597 -6.492571 -3.962533 -0.392957 -0.311518 -0.560629 -1.289818 -2.254921 2.754962 2.635007 -1.303843 -0.494784 -4.386622 -0.550571 0.363192 7.001363 1.122047 2.224828 6.759508 2.634456 -2.394512 -1.473959 2.545843 -1.138379 -0.562605 -5.197058 -2.877037 -0.103412 1.378048 -2.870866 0.850492 -1.829810 -1.758702 1.675203 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = 0.958547 -0.086134 -0.224374 1.461202 0.260631 -0.510652 0.097447 0.598190 -0.161301 -2.637426 -1.738491 1.177988 0.070796 0.067586 0.521586 0.501457 0.216043 0.319653 -2.643618 0.803759 0.869086 0.405730 0.071502 -0.297766 0.383200 -0.702374 0.326018 0.292989 0.387790 1.468571 -0.970196 0.592362 1.241256 0.000000 0.798483 1.158585 -0.168993 -0.066178 -0.220756 -0.297853 2.195022 0.910728 0.128535 0.987467 0.503147 1.524010 -0.008868 1.415899 0.560358 -1.054452 0.681285 -0.263404 -0.959326 0.010385 -1.189104 0.907221 1.042150 0.586656 -0.879586 0.576007 -0.324269 0.008240 0.353208 -0.547216 1.580482 0.630290 0.943688 0.920077 1.740440 -0.874496 -0.233589 0.878671 0.921183 0.359456 0.920762 -0.994417 -1.080687 -0.922994 -0.256394 -2.103107 -0.560275 -0.267136 2.541473 -1.503771 0.204155 0.553822 -0.129602 1.376766 -0.606458 -0.045995 -1.274505 0.108626 -0.348085 1.590063 0.149238 0.098249 -0.096536 0.494828 0.404204 1.096133 -0.072921 -1.042470 -1.024991 -2.564083 -0.607636 -0.593601 0.622464 0.514090 -1.856505 -0.161815 -0.021694 1.867184 -2.099024 -0.108242 1.018864 0.666190 0.485007 0.037862 -0.973368 -0.147714 0.227118 0.379667 0.798173 -0.808038 -0.062875 -0.613211 0.230843 0.001679 0.679014 -0.067542 -1.218022 -1.058834 -0.121994 0.079858 -0.116437 0.161493 0.702909 -0.882127 1.028486 -0.618815 1.093227 -1.811509 -0.194740 -0.802066 -1.064794 -0.405979 2.052320 1.214036 1.265907 -0.150447 -0.534757 -0.618642 -1.751892 -1.850536 0.466234 -0.131676 0.696393 0.507097 -0.062933 0.626240 -0.616543 -0.062697 0.269407 -0.781361 -0.225651 -0.325237 0.886298 -0.281222 -0.244028 -1.345733 -0.261481 0.320209 -0.327887 0.823610 -0.454524 -1.952670 -1.923602 -1.268175 1.241732 -0.556456 0.373773 -0.672683 0.052521 -0.916007 0.183672 -1.356119 0.140587 -0.116792 -1.213794 -1.550498 -0.009026 -0.354678 -0.304995 0.102507 -1.044763 -0.085765 1.084052 0.831227 0.498027 0.291799 -0.010870 -1.743733 -1.326301 -0.010977 -0.719602 1.400080 0.827314 -0.234779 -1.445280 -0.584904 -1.412783 1.252194 -1.137641 0.261209 -0.430730 -0.443776 1.453989 -0.839014 -0.004871 -1.303717 0.526962 0.528379 -2.968267 1.586838 1.229183 -0.795112 -0.264872 -0.432100 0.348605 0.959626 1.461743 -0.792843 -0.651287 0.237665 -0.492796 -0.032163 -0.616383 1.088505 -0.872798 0.503249 -1.165703 -0.760351 0.769226 0.875559 0.053930 0.449147 0.588976 0.311728 0.647144 1.350790 0.937569 -0.216061 -1.399534 -3.119856 0.859159 0.931736 -0.106976 0.334260 -0.805048 -1.050193 0.215603 -0.425833 1.502465 0.469480 0.004777 1.247547 -1.503449 -1.446207 -0.522192 -0.065707 0.081999 -0.385376 0.438498 -0.686583 0.270226 0.287057 0.017602 -0.021555 -0.795194 -0.709118 0.107968 1.302854 0.745205 0.312412 1.484504 0.546664 -0.962039 -0.078032 0.163658 0.048688 -0.258660 -1.328389 -0.681314 -0.379508 0.203151 -0.662759 0.716901 -0.227885 0.107398 0.284458 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.524094 0.142778 0.441430 0.371213 0.306090 -0.427206 0.445780 0.647463 -0.319855 -1.336111 -0.834823 -0.033881 -0.067013 -0.138518 0.191988 -0.059339 0.056380 0.502898 -1.385100 0.198160 0.546713 0.491113 0.182973 -0.451658 0.139726 -0.209185 -0.785115 0.508427 0.147020 0.875900 -0.470032 -0.241337 0.658056 0.169196 -0.000649 0.849857 0.715797 0.047853 0.363789 0.027518 1.192967 0.257445 -0.099348 0.507243 0.466085 0.840246 -0.206265 0.868592 -0.575245 -0.505281 0.380352 -1.211870 -0.646342 -0.147962 -0.468302 0.514508 1.229599 1.067028 -0.458883 0.724892 -0.116180 0.010357 0.199932 -0.553680 0.425339 0.840735 -0.050296 0.214662 1.279407 -0.658456 -0.321173 0.436366 0.445865 -0.029121 -0.174153 -0.574311 -0.013368 -1.636544 0.101725 -1.573784 -0.391533 -0.083545 1.441485 -0.760243 0.359547 1.032972 -0.033612 0.415212 -0.343158 -0.220223 -0.633934 0.168059 -0.178155 1.361713 -0.009270 0.053004 -0.007549 0.237706 0.642228 0.751509 -0.170528 -0.222351 -1.332435 -1.680035 -0.433202 -0.172924 -0.116207 0.013561 -0.886810 -0.556173 0.946390 0.657044 -1.195502 -0.139580 0.759619 0.683147 -0.363642 0.348045 -0.916967 0.059800 -0.163253 -0.201539 0.318796 -0.577770 -0.183671 -0.422516 -0.117592 -0.063221 0.114002 -0.264228 -1.034584 -0.443001 -0.122784 -0.425788 -0.043816 -0.219495 -0.102653 -0.449802 0.436071 -0.771603 0.539569 -1.105490 0.121841 -0.068724 -1.018010 -0.106929 1.076558 0.352972 0.168090 0.127308 -0.505424 -0.542397 -0.517091 -1.197705 0.413076 0.027483 0.959986 -0.065467 -0.142390 -0.110165 -0.304443 -0.491777 -0.007419 -0.266512 0.058007 -0.274657 1.387593 -0.374694 -0.190156 -0.909174 0.231590 0.851694 -0.230925 -0.001748 -0.571631 -0.087038 -0.659436 -0.855179 0.668753 -0.126348 -0.014382 -0.230033 0.121977 -0.917824 0.423508 -0.486901 0.277702 -0.015987 -0.861143 -0.919645 0.234772 -0.247636 -0.397679 0.284989 -0.492474 -0.144045 0.270160 0.353786 0.208161 -0.082740 0.179169 -1.003339 -1.056200 -0.438341 -0.002826 0.523860 0.553517 0.323905 -0.552494 -0.162112 -0.692221 0.888433 -0.395682 -0.045345 -0.321841 -0.035317 1.097559 -0.286588 -0.096474 -0.926785 0.356131 0.411077 -0.991032 1.235999 0.526499 -0.494573 -0.550570 -0.563854 -0.135670 0.731951 1.083063 -0.554422 -0.493112 0.503619 -0.436616 -0.118501 -0.542883 0.574779 -0.257994 0.755551 -0.730205 -0.484445 0.148969 0.881220 -0.175286 0.722624 0.429847 0.495462 0.055650 0.938510 0.152391 -0.400931 -0.361925 -1.292737 0.611837 0.477518 0.161674 0.011005 -0.553976 -0.610441 0.329543 0.405286 0.838754 1.036138 0.072083 0.703738 -0.575037 -0.776774 0.106927 0.225690 0.414439 -0.656683 0.088176 -0.306206 0.232233 0.307326 -0.037852 0.571344 -0.637100 -1.139541 -0.294480 0.788043 0.204303 -0.190743 1.006350 -0.141903 -0.426005 0.205478 -0.114259 0.783960 0.114558 0.038258 -0.204676 -0.433944 0.154845 -0.306277 0.944943 -0.088040 -0.297796 0.700658 -PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 2.158471 0.625680 -0.901433 1.610883 -0.232140 -1.155305 0.241067 1.835188 -1.208835 -4.617653 -4.094775 0.777839 0.334647 -0.099250 1.661299 1.230838 -0.173155 0.284912 -5.491832 1.352553 2.096924 0.512032 -0.288002 0.064616 0.748116 -1.107938 -2.946699 0.179923 0.232559 2.612496 -1.623415 1.211334 2.087240 -0.322833 0.405165 1.622911 -1.320734 -0.120530 1.838016 0.412077 3.339432 1.331250 0.031709 0.967967 0.885494 2.354633 -2.639503 4.263643 -1.565521 -1.931982 3.001957 -2.449674 -1.974581 1.417991 -1.124405 1.415453 3.280963 1.334428 -0.877084 1.292729 -1.710247 0.319866 0.484050 -1.834948 3.040417 2.886135 1.742731 1.062825 2.968048 -0.698571 0.075490 1.053803 0.586704 -0.612628 -0.388795 -1.570138 -0.128665 -2.563626 0.365694 -4.871964 -1.176681 -0.673847 6.007748 -2.707365 -0.031214 1.403370 0.729302 2.646751 -1.534305 0.648730 -1.467983 0.378558 -1.230004 3.232595 -0.235405 0.664652 -0.991792 0.737643 0.979264 1.484236 -1.613456 -0.613507 -4.678919 -4.592436 -1.976052 -0.083641 0.753235 1.168789 -4.473476 -0.399774 1.826904 2.181984 -3.844144 0.072122 1.831913 1.769324 0.353603 4.604539 -4.577196 -0.792579 -0.111638 0.886190 1.262532 -0.379087 0.274985 -3.642633 0.171362 0.104313 0.751986 -0.479411 -4.097756 -1.175745 -0.086312 -1.851535 -0.034728 0.810609 1.493757 -0.742177 1.883374 -1.232263 1.251020 -4.721092 -0.656076 -1.647937 -3.225218 -0.110980 3.360420 4.445129 1.205729 0.488416 -1.128644 -1.592310 -3.758789 -2.603145 -0.353533 -0.685827 2.621006 -0.381448 -0.050345 0.543754 -0.552514 0.070167 -0.161598 -1.327135 0.054428 -1.677747 5.455227 -0.441152 -0.708013 -2.722643 -0.983807 0.637313 -2.341729 0.865753 -0.353659 -1.271120 -3.734477 -2.161155 2.044606 -0.497245 0.989585 -1.675205 1.255743 -2.941870 0.190874 -1.684119 -0.624503 0.377734 -2.308052 -2.462634 -0.030863 0.213343 -2.063109 -0.675967 -1.622797 -0.673679 3.767993 2.168501 1.645980 0.459698 -0.463402 -2.659345 -3.094644 -0.585092 -1.626135 2.122994 3.468730 -0.669638 -1.923937 -0.494209 -3.494789 2.874408 -1.799328 0.076348 -1.392843 -0.233912 2.790823 -1.631312 -1.060065 -2.692881 0.443786 -0.071377 -6.209227 3.178057 1.377473 -1.321958 -0.403175 -2.398498 0.984909 1.910202 2.429299 -0.652175 -0.251451 -0.147554 -0.989666 -0.143376 -0.777110 2.475493 -2.202880 1.044144 -1.361157 -0.682839 1.791876 1.951925 -0.054500 1.642854 0.525009 1.351613 2.623726 1.354986 1.037038 -2.859145 -1.068395 -6.035211 1.126052 1.579844 -1.043101 -0.047432 -1.627543 -2.156432 -0.279755 -0.540479 2.646194 1.068264 0.724733 1.698732 -1.968522 -2.362382 -0.901245 1.444011 -0.322549 -1.082515 0.041875 -0.402508 0.549465 2.106177 0.344191 1.627368 -3.476181 -4.144484 -0.705517 2.885494 0.613418 -0.060622 2.509341 0.864816 -1.138540 -0.512617 -0.069289 1.090700 -0.259194 -1.226538 -1.079445 -1.014037 -0.147031 -1.316847 1.770208 0.242905 -0.251249 1.481480 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.204586 -0.149056 0.280455 0.277535 0.234421 -0.124126 0.242796 0.211117 0.056889 -0.656323 -0.338969 0.127208 -0.097821 -0.097887 0.102131 -0.123482 0.196873 0.312830 -0.331887 0.054747 0.109817 0.205954 0.031581 -0.159645 0.012095 -0.124878 -0.181881 0.302982 0.126496 0.421767 -0.201293 -0.166799 0.326573 0.078793 0.007085 0.473128 0.575145 0.037018 -0.009240 -0.070599 0.688581 0.015127 0.051323 0.448232 0.278889 0.451738 -0.014738 0.599281 0.262696 -0.214074 0.292610 -0.629721 -0.232072 -0.175746 -0.414947 0.303257 0.490756 0.398040 -0.330225 0.386712 0.015550 0.035994 0.087042 -0.300275 0.154886 0.407762 -0.093863 0.170522 0.648978 -0.426607 -0.244146 0.306623 0.412827 0.254030 0.012634 -0.302665 -0.040492 -0.830296 -0.081513 -0.362581 -0.076143 -0.167264 0.662490 -0.377530 0.143624 0.566625 -0.194392 0.123984 -0.087047 -0.125940 -0.422716 0.094642 0.122449 0.440683 0.060284 -0.024235 0.001468 0.028037 0.203527 0.418566 0.047472 -0.209520 -0.594998 -0.936302 -0.323624 -0.155955 -0.046192 -0.128913 -0.373846 -0.216666 0.425474 0.273104 -0.537027 -0.139150 0.354117 0.251476 -0.171138 0.017223 -0.270117 -0.031350 0.088452 -0.062593 0.143838 -0.330194 -0.116756 -0.216826 -0.070321 -0.051908 0.104909 -0.166255 -0.149929 -0.283313 -0.128973 0.162630 -0.061486 -0.240237 -0.129711 -0.306462 0.229958 -0.260544 0.318574 -0.445479 -0.081643 -0.082082 -0.326550 -0.111425 1.029369 -0.058582 0.499161 0.118572 -0.348806 -0.320548 -0.174511 -0.670183 0.294699 -0.059613 0.429114 0.090265 -0.054209 -0.034274 -0.143914 -0.288873 -0.048694 -0.162334 0.024367 0.004008 0.107564 -0.294645 -0.081944 -0.618146 0.227936 0.542111 -0.056875 -0.054520 -0.310704 -0.299601 -0.136152 -0.407208 0.325994 -0.117221 0.068408 0.064636 -0.038285 -0.337225 0.170396 -0.274326 0.118826 -0.066512 -0.561257 -0.501890 0.169998 -0.211966 -0.014978 0.281013 -0.299472 0.029893 -0.116884 0.322644 0.069347 0.081074 0.057866 -0.656229 -0.572232 -0.350320 0.011259 0.371643 0.170826 0.215920 -0.257286 -0.163421 -0.299522 0.369044 -0.534571 -0.021322 0.012078 -0.127111 0.469295 -0.138279 -0.031866 -0.528931 0.234405 0.338665 -0.615407 0.467028 0.326926 -0.321524 -0.339527 -0.262622 -0.092209 0.337502 0.664581 -0.309754 -0.215681 0.364954 -0.134799 -0.043643 -0.376033 0.247583 0.031618 0.358156 -0.480450 -0.324294 0.073156 0.445644 -0.089868 0.195323 0.321328 0.338936 -0.073659 0.597458 0.105930 -0.017326 -0.264888 -0.751092 0.355237 0.575920 0.119045 0.293011 -0.482130 -0.216780 0.228600 0.122071 0.387270 0.360684 0.246142 0.428900 -0.238136 -0.386265 0.157656 -0.070478 0.282884 -0.369669 0.272141 -0.239158 0.058464 -0.043513 -0.023428 0.108844 -0.042928 -0.448421 -0.065855 0.308669 0.170245 0.039899 0.494467 -0.085085 -0.360024 0.188417 -0.075086 0.314269 0.078258 -0.146822 -0.063249 -0.208181 0.100845 -0.164518 0.471271 -0.125502 -0.096698 0.246541 -PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = 7.120802 1.164225 -4.987523 11.158861 0.120149 -6.223973 0.803620 3.960273 -3.306230 -17.591330 -12.230164 5.620636 2.265376 -2.457320 4.242518 4.891835 -1.529458 1.500710 -18.957258 6.597284 7.149407 2.145096 -2.498681 -3.109771 2.014572 -4.922482 -1.348879 2.543652 0.199231 10.282831 -5.304710 5.285367 8.287175 -1.113461 3.931178 7.560145 -5.042494 1.405343 2.478210 2.184561 13.876417 6.822928 -0.304503 4.158346 3.846077 10.134559 -3.723620 10.897225 -5.489031 -6.553227 7.940264 4.091952 -5.710468 0.468440 -6.656919 5.331293 12.876693 3.983691 -4.722742 4.382144 -5.948034 0.182240 3.536359 -0.364139 13.563634 8.669951 8.226646 7.237238 13.883537 -3.856846 0.069422 4.433993 4.355741 -3.236439 6.586165 -6.003457 -9.175256 -3.509461 -1.568178 -16.516333 -3.371742 -0.174873 19.551701 -10.278616 -0.729306 2.649671 5.170528 11.351742 -6.655664 0.167588 -6.218392 0.791510 -7.786295 17.974576 0.241810 4.078389 -3.308889 4.619465 3.435123 6.436645 -3.417588 -6.372343 -8.139137 -18.330791 -7.650347 -3.427548 3.119870 3.831336 -16.776383 -2.069703 1.976889 8.592561 -16.583863 0.374395 7.073809 6.020715 7.613994 3.417935 -12.694451 0.215752 -0.041801 2.215029 4.637067 -2.253850 -0.068466 -8.103983 2.017428 0.790212 2.789594 -0.804309 -14.729446 -4.008440 -1.338160 -4.620450 0.701405 3.451943 5.735240 -6.602519 6.251055 -6.181873 7.599299 -18.003715 -1.523722 -7.205067 -11.832787 -1.317425 5.287785 10.880787 6.407386 -3.189825 -4.328284 -4.057306 -16.282179 -14.252855 0.343376 -1.762972 4.597609 0.027437 -0.814040 2.186434 -4.330001 1.318692 5.788694 -5.640959 -0.940555 -4.584298 18.911252 -0.339588 -3.020691 -7.307584 -5.035942 -0.211176 -1.045920 7.513674 -1.533145 -10.638624 -17.416844 -7.875896 8.514211 -2.664049 1.239146 -7.577430 0.666922 -11.525793 1.958034 -8.503690 1.102841 -0.179485 -5.330996 -10.213015 -0.523690 -0.036066 -4.177641 -3.092019 -7.832917 -1.781868 11.694326 3.353594 4.487364 1.896900 -0.276178 -10.814912 -10.187957 2.183448 -4.137845 8.696152 9.904524 -0.544201 -6.699012 -2.321213 -13.176547 7.970501 -5.035345 1.490416 -2.187643 -2.702894 11.731648 -7.442996 -3.429070 -9.689473 1.555267 -0.704245 -16.198021 14.723936 6.931495 -5.537211 -1.060668 -3.389789 3.557018 5.553175 8.889418 -5.618797 -4.129093 0.439139 -2.979320 -0.961424 -2.088345 7.806878 -8.788403 4.517669 -6.570038 -3.527604 6.708585 7.869897 -0.649263 4.135291 -0.378492 -1.979052 5.185844 6.828730 6.963916 -4.611040 -7.790836 -20.306408 3.902333 -6.751776 -3.484207 -2.089232 -2.880920 -8.704898 0.912519 0.394125 11.643565 3.524799 -2.851878 7.612869 -12.057820 -11.074789 -5.647805 2.699295 -0.054935 -3.997205 -0.219225 -4.164293 2.318297 5.064685 1.698284 2.121619 -10.929911 -6.380100 -0.611976 10.798655 1.700348 -2.261385 10.751438 4.330907 -4.089459 -3.070563 1.025263 -0.011501 -0.393642 -7.788090 -4.798564 -3.768872 2.102946 -4.918818 7.106098 -1.084414 1.524909 5.156034 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 3.629656 0.180612 -2.368662 6.547421 -0.167013 -3.727602 0.036653 3.283325 -1.404778 -8.828980 -6.867189 4.170778 1.210031 0.308301 3.281446 1.848374 -1.250667 0.619737 -10.781249 3.914830 3.043291 1.541430 -1.407168 -2.409004 1.250377 -1.213724 0.293236 1.748410 0.826095 5.077656 -3.421752 2.321058 3.838359 -0.890855 2.390262 3.155830 -1.119003 0.439117 -0.898375 -0.469412 7.824561 3.700333 0.051178 3.449197 1.441520 5.230192 -0.902734 5.594568 -1.622865 -4.179967 3.346781 0.819596 -3.654811 -0.434422 -3.457636 3.891125 5.956991 2.918703 -2.865013 2.777380 -2.209743 -0.520965 1.994670 -1.090466 7.253224 3.390550 4.744605 3.845620 6.975083 -2.807788 -0.380823 2.783096 3.321950 -0.682564 3.354979 -4.479472 -4.420933 -4.315429 0.180755 -9.305597 -2.490301 -0.082589 10.416280 -6.182622 0.845522 2.178161 1.223121 5.926728 -4.276615 0.930080 -3.202073 -0.490992 -3.240623 8.373923 0.149147 0.524221 0.060916 2.700270 2.305634 4.678888 -1.416003 -2.513616 -3.508771 -10.024211 -3.266432 -0.167905 1.685711 2.033258 -7.360395 -1.714843 0.712764 4.509636 -7.849662 -1.046790 4.663502 3.264443 2.276676 1.037811 -4.794229 -0.110841 0.478470 1.346437 3.960155 -2.490712 0.901139 -2.278065 0.976807 0.748226 2.513785 0.515713 -6.401610 -3.605046 -0.757187 -1.331120 0.054185 0.375018 2.857472 -3.146464 4.150579 -3.047889 4.464659 -8.877746 -0.483437 -3.212093 -4.718673 -0.481816 4.416403 4.399784 3.558813 -1.278153 -2.968985 -1.785068 -7.554437 -7.335021 1.732712 1.280077 2.227516 0.793821 -0.307237 1.867165 -1.656408 -0.442863 3.145112 -3.461582 -1.579489 -2.000284 6.453403 0.257582 -1.435030 -5.435848 -0.470768 0.054203 -1.212980 3.710583 -0.479666 -6.877223 -7.979183 -4.108771 4.833676 -0.518546 0.851154 -2.847704 -0.577739 -5.087310 1.005346 -5.559357 1.402548 0.366510 -4.234223 -5.634159 -0.664027 0.149236 -2.144072 -0.890099 -4.203735 -0.785136 5.088621 2.593004 1.180765 1.508587 1.359162 -6.696459 -6.008672 0.283127 -2.318445 5.180686 4.022759 -0.143330 -4.113268 -1.084440 -5.464529 4.739941 -3.787215 0.921861 -2.172985 -1.240426 6.275089 -4.289916 -1.644457 -5.523874 1.235398 1.330384 -10.047521 7.544746 4.316600 -2.508823 -0.616190 -1.437299 1.348724 3.497417 6.182340 -3.843800 -2.652711 0.352550 -1.150963 -0.574266 -2.388134 4.174640 -4.104808 0.844449 -3.223851 -2.350748 2.530424 3.632151 0.918283 2.683526 1.086692 -0.154296 1.543980 4.715633 3.818213 -2.745309 -4.466957 -10.855566 3.952921 0.941166 -2.003522 -0.315386 -3.045651 -4.665111 0.636001 0.174748 4.991131 3.257415 -0.332016 4.274876 -6.365762 -5.764072 -3.046161 1.688948 -0.515605 -1.658674 0.328703 -2.572199 1.757194 2.526849 -0.136065 -0.431757 -3.533637 -4.462954 -1.045671 4.993585 1.254306 0.252432 6.473616 2.402021 -2.900221 -1.295401 0.084967 -0.457920 -0.963095 -3.749049 -2.683912 -1.911747 1.002424 -2.878461 2.650708 -0.134455 -0.318620 2.557608 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/tarjan-algorithm.cpp__main = 3.524439 1.725749 7.275138 -1.725925 2.837765 -0.569840 3.459649 7.183968 -3.318019 -6.135287 -9.008081 -6.942092 -2.307644 -1.958660 4.590698 -3.493855 2.434649 -0.142692 -11.862740 -0.528844 3.687030 1.265609 2.147898 -0.661380 1.074658 -1.893060 -12.279286 5.394154 -0.869727 3.232593 -1.003381 -2.354252 2.052842 3.155378 0.191805 4.430116 -0.973243 -1.224523 8.156457 0.240705 6.784994 0.927189 -0.995257 2.471894 5.148601 3.617499 -7.296861 4.920931 -4.897318 -1.487762 7.189370 -14.521306 -3.902458 1.628412 -2.100021 0.744990 10.425176 4.800420 -1.857341 5.088864 -3.878673 0.334024 -0.677671 -7.483528 1.789967 6.788699 -0.723946 -1.523599 4.694714 -2.989338 -2.942899 3.278398 1.176067 0.560081 -13.182503 -4.006987 6.559713 -15.218759 2.784936 -11.743630 -2.489120 -3.490974 8.894345 -0.025083 1.267983 6.318086 -3.206941 -0.573212 -1.384144 -1.532262 -2.299886 1.581105 -0.080219 2.191555 -2.779150 -0.277302 3.731274 -0.684844 3.862312 5.764253 -4.701118 2.389253 -14.401428 -11.159349 -1.800486 2.347397 1.660717 -2.333855 -2.410816 -1.781392 8.884169 -3.686698 -1.782164 -2.992449 3.665185 5.031804 -12.513085 9.543565 -10.255565 -5.433707 -0.764155 1.639952 2.985405 -1.355400 0.391323 -9.786471 -1.755742 -0.191476 1.290956 -2.773759 -3.448547 -2.786129 -0.493008 -4.721243 -1.470932 -2.848435 -2.715015 3.175578 2.123458 -3.213280 3.342130 -7.437653 2.554899 -3.618042 -3.015040 1.203595 6.680604 7.178644 -2.543920 6.654248 -0.622495 -1.592621 0.165127 -0.439823 0.061944 0.108025 10.833433 -5.137114 -0.473976 -0.841309 0.287547 -3.869636 -5.987109 -0.015155 1.913298 -4.614827 10.064022 -1.192290 -1.889999 -5.095192 4.604632 7.381667 -9.456820 -3.554724 -2.985408 7.099418 0.287490 -5.386284 2.171202 0.145879 -0.876772 0.390623 4.825429 -4.327171 3.079644 -0.940536 -0.722369 0.242553 -7.588150 -3.156061 1.450691 -0.861380 -1.672429 1.956360 -0.138601 -2.352502 5.730600 8.412188 2.842829 1.667166 -0.621926 -3.413149 -6.764140 -7.086199 1.702076 1.946925 6.050417 -0.007492 -1.914862 -0.135162 -2.383668 6.555972 3.694085 -1.975183 -3.960194 -1.749637 4.555917 0.567853 -0.094611 -5.618176 0.162378 2.534154 -11.400175 3.068018 0.319748 -3.135502 -6.667778 -10.543567 -1.739240 3.015888 6.184434 1.471439 1.176449 1.613305 -2.201240 -0.659719 -3.986853 3.532066 1.769858 3.470682 -4.849419 -4.354637 3.142668 4.301179 -0.806568 6.918468 3.122099 10.689011 4.763588 5.238158 -1.840953 -7.474262 1.052757 -9.248759 2.550803 14.267789 1.064662 -0.098203 -3.019324 -7.260069 -2.264433 4.434115 3.643323 11.617517 3.569669 3.064367 5.541290 -2.022993 -0.339280 4.864327 1.708138 -5.929111 -3.061435 -0.179968 0.970030 3.178826 -0.757059 9.574974 -5.717606 -16.918917 -4.696805 4.516960 1.668029 -0.774609 3.867083 -0.767721 -2.687812 0.223959 0.169553 6.111741 4.342724 3.841014 -2.060819 -4.629552 -1.417238 0.032602 3.776985 3.907068 -0.286628 5.093553 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.045932 0.162297 0.095910 0.341111 0.035258 -0.203629 -0.125979 0.109671 -0.447767 -0.234534 -0.262507 -0.163653 -0.144298 0.136905 0.408513 -0.122534 -0.047514 -0.194360 -0.267876 0.151548 -0.100003 -0.132700 -0.030862 -0.162921 0.108911 0.452743 -0.193901 0.097356 0.064071 0.107566 -0.383610 0.116618 -0.138570 0.280667 0.320625 -0.438211 0.048550 0.008282 -0.221965 -0.182641 0.245207 -0.062319 -0.132012 0.112299 0.134968 0.018321 -0.139542 0.036127 -0.188610 0.161162 0.256105 -0.439056 0.130723 0.285826 -0.106234 0.124105 0.359112 0.192937 0.052414 -0.032949 -0.193664 0.146400 -0.023667 -0.274669 0.412860 0.155597 0.160292 0.110401 -0.016393 -0.178787 -0.018497 -0.094804 0.445530 -0.083598 -0.765928 -0.054058 0.252454 -0.836491 -0.055194 -0.459206 0.007496 -0.026383 0.210285 -0.036164 0.157687 0.071152 -0.381971 -0.103822 -0.411226 0.381884 -0.143253 -0.083795 -0.117539 -0.100927 -0.080371 -0.201850 0.188807 0.027320 0.232339 0.270309 -0.230043 0.168352 -0.112336 -0.348895 -0.216639 0.706048 -0.071929 -0.194983 -0.001917 -0.014503 0.427032 0.086074 0.074989 -0.433537 -0.128237 0.108807 -0.500380 0.156038 -0.356577 0.021612 -0.140682 0.273325 0.420821 0.032294 0.243457 -0.441275 -0.270175 0.059548 0.546934 0.268189 0.063877 -0.174749 -0.055267 -0.179430 -0.267903 -0.384523 -0.325648 0.284623 0.126384 0.155120 0.187242 -0.164240 0.077702 -0.274477 -0.066867 0.413549 0.294797 0.305656 -0.040370 0.519049 -0.064252 0.096499 -0.003106 -0.056851 0.271758 0.362546 0.103137 -0.147189 0.066854 0.251376 0.028767 -0.362095 0.357615 -0.340648 -0.405287 -0.452336 -0.050223 -0.021935 -0.148388 -0.311574 0.406083 0.386005 -0.448846 0.010486 -0.100345 0.109321 -0.128597 -0.131107 0.089397 -0.013284 -0.027863 0.274538 0.467321 -0.400323 0.183986 -0.207653 0.192866 0.169611 -0.373666 -0.109710 -0.138110 0.029368 -0.014713 -0.035295 0.082817 0.040687 0.065193 0.359067 -0.089639 0.361367 0.322217 -0.120439 -0.566119 -0.287652 0.226127 0.046719 -0.070317 0.051590 -0.374197 -0.157748 -0.099426 0.438191 -0.016570 -0.035244 -0.260381 0.145508 0.081930 -0.090274 -0.247283 0.075097 0.077039 0.350030 -0.494137 0.040787 0.074216 -0.115349 -0.185202 -0.636055 0.276100 0.052384 0.668203 -0.129855 0.203178 -0.040813 0.332931 -0.121707 -0.285717 0.305770 0.063560 -0.278711 -0.084658 -0.290550 -0.102219 -0.058579 0.333531 0.119465 0.094061 0.294366 -0.205343 0.379896 0.043705 -0.224317 0.105986 -0.073165 -0.027445 0.677881 0.120017 0.203660 -0.289472 -0.343075 -0.379213 -0.012385 0.118550 0.206458 0.003618 0.150905 0.118426 0.111793 -0.079172 0.333924 -0.223015 -0.422357 0.124922 -0.157607 -0.117325 0.357408 -0.071130 0.139887 0.222003 -0.695877 -0.500116 -0.028573 -0.011131 0.129956 0.071369 0.311571 -0.412580 0.016762 0.181154 -0.010658 0.012585 -0.226262 -0.180284 -0.137297 -0.077771 -0.061408 -0.107203 0.229247 -0.200700 -0.052368 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.392683 0.096793 0.242136 0.124632 0.276006 -0.378382 0.150170 0.401234 -0.125534 -0.690190 -0.539684 -0.212767 -0.101853 -0.373213 0.313666 0.090202 0.155853 0.348295 -0.663477 0.338626 0.297772 0.294764 0.002472 -0.276327 0.162573 -0.121594 -0.769538 0.077413 0.014185 0.389627 -0.405945 -0.039368 0.277724 0.131019 0.151962 0.364932 0.113386 -0.146076 0.592077 0.119782 0.787381 0.084592 0.128109 0.317053 0.504124 0.376533 -0.461166 0.577429 -0.223444 -0.156455 0.416794 -0.805157 -0.253857 0.262165 -0.401294 0.415766 0.652765 0.335488 -0.310251 0.342961 -0.148199 0.137265 0.107113 -0.530148 0.428710 0.579730 -0.101102 0.145100 0.838089 -0.049749 -0.050812 0.140259 0.482771 -0.025386 -0.124396 -0.249234 0.263436 -1.072194 -0.092633 -0.759951 0.228250 -0.208705 1.009647 -0.415137 0.306649 0.664868 0.094069 0.316375 -0.156588 -0.195474 -0.324727 0.261111 -0.162962 0.472388 -0.164426 0.151751 -0.235946 0.089694 0.108863 0.282620 -0.222464 -0.059947 -0.950167 -1.137542 -0.497316 0.015371 -0.128770 -0.270096 -0.751256 -0.040690 0.665241 0.364195 -0.683658 -0.083420 0.248024 0.206664 -0.563105 0.342302 -0.698886 -0.268400 -0.217561 0.218580 -0.214097 -0.163916 -0.185574 -0.850575 -0.186252 0.042987 0.244037 -0.328488 -0.243871 -0.133518 -0.197247 -0.148229 -0.160507 -0.040341 -0.027540 -0.365398 0.228524 -0.318446 0.205664 -0.634099 -0.106846 -0.394701 -0.506764 0.031054 0.902936 0.249773 0.184713 0.355135 -0.220240 -0.413896 -0.443943 -0.392112 0.148671 -0.438041 0.613923 -0.095279 0.042906 -0.263578 0.010185 -0.387907 -0.119698 -0.354821 0.068086 -0.446806 0.817817 -0.356819 -0.140018 -0.729338 0.032709 0.856937 -0.382541 -0.312994 -0.279866 0.325469 -0.305132 -0.503561 0.285289 -0.066774 0.276101 -0.175955 0.397122 -0.421473 0.282138 -0.237896 0.014369 -0.103495 -0.409856 -0.424545 -0.055047 -0.108557 -0.202014 -0.112875 -0.215430 0.126380 0.254145 0.413926 0.068035 0.087241 -0.081981 -0.698346 -0.779372 -0.414274 0.156204 0.230759 0.476951 0.173315 -0.409340 -0.098079 -0.443078 0.552648 -0.461119 -0.107749 0.009092 -0.150221 0.564722 -0.198167 -0.183060 -0.599094 0.132814 -0.098280 -0.922631 0.518875 0.141372 -0.521343 -0.318675 -0.866126 0.234736 0.310220 0.787255 -0.027128 0.175667 0.219195 -0.171295 -0.137852 -0.502279 0.438563 -0.180369 0.612861 -0.469146 -0.303471 0.248766 0.563341 -0.172222 0.297393 0.089782 0.476012 0.185118 0.481820 0.102626 -0.255327 -0.275723 -0.758401 0.031778 0.636845 0.262710 0.173072 -0.296816 -0.381222 -0.107835 0.245680 0.579573 0.571321 0.474648 0.312873 -0.197389 -0.436898 0.249516 0.331978 0.148895 -0.526566 0.123877 -0.247591 -0.146366 0.154972 0.299002 0.423076 -0.470414 -1.019154 -0.178830 0.489004 0.284848 -0.256693 0.450453 0.108829 -0.274097 0.171040 -0.067228 0.540439 0.045518 0.113778 -0.193752 -0.365242 -0.110701 -0.240692 0.811267 -0.059340 0.120921 0.261498 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 1.097823 0.051751 0.094173 1.009497 0.263941 -1.620288 0.533990 1.144180 -0.665592 -1.864350 -0.932163 0.490340 0.004483 -1.093399 0.282627 0.239937 -0.388125 0.398928 -3.050030 1.303321 0.829634 0.545115 -0.443839 -1.261030 0.231460 -0.633412 -0.416621 1.205759 -0.345909 1.223970 -0.812909 -0.187799 0.854222 0.387203 0.786531 1.353914 0.101106 -0.053895 0.777315 0.708801 1.947280 1.409340 -0.788331 0.252452 1.272310 1.365523 0.123394 0.359810 -1.437190 -0.529044 -0.014193 0.289331 -1.135315 -0.387392 -0.953725 0.493589 1.806910 1.067656 -0.794397 1.032626 -1.164568 -0.242555 0.592591 0.236245 1.789505 0.712368 0.727675 0.570315 2.449901 -0.536357 -0.286277 0.691714 1.322685 -0.620611 0.646840 -0.175672 -1.392887 -2.633669 0.136609 -3.045685 -0.748447 0.347965 1.842834 -1.120328 0.497652 1.088178 0.837062 1.192670 -1.359183 -0.652646 -0.916759 0.237273 -0.913426 3.341865 -0.049675 0.639764 -0.028693 0.981376 1.103892 1.226683 -0.352068 -0.868248 -1.108151 -3.091777 -0.487310 -0.430706 -0.551985 -0.388034 -1.830969 -0.626152 1.748207 1.807313 -2.014123 0.018962 1.216808 0.437656 0.419696 -0.993454 -1.140322 0.627021 -0.601548 0.000730 0.587387 -0.775514 -0.467660 -0.256232 0.694490 0.242891 0.274958 -0.168313 -2.149412 -0.168651 0.407839 -0.789661 -0.093709 0.030059 -0.180476 -1.280590 0.459275 -1.587133 1.265631 -1.966191 0.763971 -0.664154 -1.305449 0.160564 0.372163 1.188993 -0.240025 -0.183328 -0.293320 -0.238606 -1.557286 -2.739485 0.682918 -0.187643 0.675982 -0.880433 -0.105637 -0.476655 -0.328474 -0.496178 0.733718 -0.858367 0.127928 -0.687654 2.646083 0.088119 -0.389187 -0.659011 -0.350926 1.137610 0.724818 0.362327 -0.807110 -1.297074 -1.648236 -1.333050 1.005561 -0.006756 -0.515840 -0.886744 -0.096212 -1.523654 1.138723 -0.733996 1.002489 -0.392032 -0.522631 -1.244580 -0.268625 -0.210833 -0.329373 -0.726442 -0.711157 -0.325898 0.458515 -0.455062 0.183803 -0.027911 0.427247 -1.279378 -1.479848 0.217497 0.522891 1.299693 0.846010 0.570989 -0.996985 0.106327 -1.579872 1.537816 -0.549437 -0.015768 -0.268577 -1.091136 2.325807 -0.466046 -0.826010 -0.963640 0.680887 -0.172977 -0.320276 2.801571 1.555445 -1.081033 -0.752240 -0.490981 0.015816 1.299903 1.890538 -1.089586 -0.622661 0.408390 -0.403814 -0.392306 -0.020243 1.071524 -0.908266 1.483964 -1.121503 -0.832280 0.427883 1.481338 -0.151822 0.822906 -0.701010 -0.138294 -0.388832 1.262247 0.425778 -0.084476 -1.224753 -1.830938 0.577713 -1.221981 0.048130 -0.253406 -0.229987 -1.494653 -0.046399 0.558951 1.752932 1.466966 -1.225747 0.858682 -1.573482 -1.590863 -0.661528 0.517894 0.060740 -0.964429 0.655836 -0.615592 0.198303 0.391661 0.404488 0.503612 -1.044282 -1.057814 -0.357203 0.756160 0.798785 -1.462507 1.547572 0.079836 -0.505411 -0.459025 -0.006305 0.427761 0.395740 -0.076331 -0.724214 -1.177719 0.612072 -0.353754 1.770807 0.262660 0.455487 1.027939 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 1.373709 0.617027 0.459782 1.240464 0.135511 -2.427905 0.705814 2.033473 -1.284852 -2.212828 -1.331790 0.095868 -0.127841 -1.340687 0.634636 -0.101100 -0.724070 0.516374 -4.723842 1.745414 1.145362 0.899059 -0.426206 -2.166900 0.410596 -0.049226 -1.196128 1.637546 -0.395166 1.615911 -1.301305 -0.505591 0.832015 0.839174 1.262162 1.318631 0.114437 0.034444 1.129817 0.721488 2.358816 2.186638 -1.537006 0.266380 1.739763 1.623209 0.192695 -0.483426 -2.938945 -0.489194 -0.512881 -0.218054 -1.457493 -0.363360 -0.834291 0.564788 3.002902 2.062467 -0.831367 1.477063 -1.519827 -0.301901 0.786961 -0.044525 2.288026 0.943715 0.722733 0.642178 2.966836 -0.762116 -0.237050 0.352935 1.913096 -1.298067 -0.288165 -0.224924 -1.491946 -4.615066 0.314714 -5.178867 -1.084367 0.714789 2.128378 -1.414702 1.426876 1.550461 0.741670 1.118339 -2.176653 -0.852565 -1.011571 0.075771 -1.542919 4.454704 -0.259450 0.536640 0.506497 1.528815 1.945549 1.661701 -0.668821 -0.757619 -1.343496 -4.154066 -0.201583 0.270930 -1.007801 -0.606736 -1.719129 -1.145948 2.843529 2.214351 -2.415367 -0.370060 1.433190 0.599850 -0.725567 -1.761974 -1.603578 1.199588 -1.467193 -0.033261 1.206562 -1.339347 -0.479255 -0.091299 0.309052 0.490118 0.734192 0.265223 -2.715448 -0.265469 0.558004 -1.497330 -0.493960 -0.252769 -0.845660 -1.146036 0.553209 -2.335837 1.815817 -2.364097 1.563617 -0.690558 -1.594786 0.679374 -0.341080 1.501031 -1.414305 0.093796 -0.107504 0.011570 -1.580884 -3.263554 1.559171 0.520661 1.164624 -1.610062 -0.113857 -0.660823 -0.433151 -1.098641 1.091522 -1.221838 -0.082807 -1.247666 4.099660 0.241489 -0.682696 -0.712265 0.152394 2.037754 0.617219 0.169035 -1.342168 -0.616861 -1.996180 -1.621256 1.357108 0.170616 -1.002614 -0.830327 0.416936 -2.115345 1.815936 -1.027447 1.783631 -0.352753 -0.628767 -1.570637 -0.558282 -0.225032 -0.239528 -0.942888 -0.531411 -0.514738 0.628740 -0.375484 -0.162434 0.086602 1.385542 -1.385078 -2.099200 0.051605 1.107019 1.425603 0.784908 0.891050 -1.603573 0.333416 -1.708545 2.430827 0.195155 -0.068663 -1.051118 -1.113487 3.200883 -0.355940 -1.257563 -1.167311 0.895635 0.216554 0.039052 3.592345 1.851658 -1.241860 -1.047466 -1.117803 0.100274 1.764542 2.808205 -1.550768 -0.962330 0.548329 -0.715402 -0.599474 -0.421541 1.476822 -1.007413 1.749757 -1.257650 -1.011632 0.383494 1.557097 0.183329 1.657162 -0.842328 -0.002097 -0.916216 1.880248 0.430867 -0.375428 -1.464461 -1.548273 0.821895 -1.035363 0.614480 -0.754273 -0.066547 -2.329639 -0.430013 1.336846 2.072429 3.063611 -2.017563 1.059431 -1.806775 -1.803445 -0.950145 1.313533 0.083569 -1.636508 0.500516 -0.744972 0.403979 1.012303 0.466361 1.281575 -1.185397 -2.245731 -1.021728 0.835065 0.881330 -2.151892 2.021141 0.073132 -0.980664 -0.422107 0.009548 0.650819 0.382054 0.405591 -1.012623 -1.662845 0.870016 -0.479566 2.274651 0.698076 0.270360 1.450641 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 1.273200 0.685082 0.599349 0.880287 -0.001279 -2.884929 1.264812 2.429780 -1.284584 -2.118976 -0.927537 -1.163443 0.093334 -2.055965 0.409853 -0.038916 -1.205547 1.148819 -4.938938 1.795323 1.736531 1.426015 -0.348684 -2.709875 0.257631 -0.504965 -2.262653 1.990394 -0.757267 1.865958 -0.924151 -1.009440 1.116710 0.747038 0.655418 2.137680 0.584952 0.287406 2.178192 1.835994 2.218516 2.576332 -2.183794 -0.437845 1.873503 1.847199 0.218490 -1.164879 -5.212238 -0.677920 -0.975366 -0.431369 -1.686743 -0.914716 -0.476600 0.407444 3.951590 3.116859 -0.852024 2.080451 -2.166524 -0.491442 1.051996 0.387898 2.083830 1.291874 0.418068 0.587011 3.726346 -0.653680 -0.178435 0.233868 1.307807 -2.322436 0.165209 0.227212 -1.729010 -5.888601 0.509659 -5.836651 -1.376421 1.360447 2.013497 -1.608158 1.649975 2.432014 1.759273 1.338428 -2.357863 -1.550129 -0.796308 0.196945 -1.898727 6.065700 -0.159761 0.900503 0.190298 2.046319 2.453315 1.490285 -0.550759 -0.742956 -2.133093 -4.593727 -0.275731 -0.350836 -1.491575 -0.610787 -2.139652 -1.796824 4.197096 1.960598 -3.142601 0.417667 1.967630 1.060305 -0.333342 -2.596607 -1.920404 1.898078 -1.960773 -0.718189 0.899002 -1.729207 -0.863187 0.151479 0.754171 0.563960 -0.120719 -0.198160 -3.616059 0.291544 0.714228 -2.299539 -0.130385 0.281660 -0.863603 -1.793391 0.335322 -3.563658 2.022049 -2.863754 2.276433 -0.174811 -2.423891 0.517239 -1.111492 1.269129 -2.543859 -0.579229 -0.607301 -0.045330 -1.728405 -4.139521 1.432171 0.465905 1.608895 -2.150217 -0.362978 -1.543375 -0.457782 -0.801989 1.026310 -0.931649 0.601111 -0.836909 5.982538 0.378903 -0.853522 -0.498560 -0.277654 2.460733 1.438925 0.039882 -1.591184 0.661325 -2.156272 -1.758631 1.482648 0.432114 -1.410180 -1.472655 -0.024019 -2.876016 2.501141 -0.745489 2.273029 -0.452592 -0.110310 -1.743406 -0.400094 -0.172612 -0.526298 -1.122814 -0.545379 -0.829495 0.319234 -1.601692 -0.143524 -0.599346 1.580171 -1.230657 -2.042022 0.296108 1.279813 1.394359 1.043812 1.381193 -0.961531 0.883738 -1.889436 2.592668 1.014393 -0.201259 -1.059905 -1.361836 3.962801 -0.219018 -1.702624 -1.674181 0.897143 -0.402414 2.191573 4.580509 1.996396 -1.274439 -1.117814 -0.693538 -0.325193 2.094415 2.575373 -1.688923 -1.365909 0.796117 -1.283120 -0.653325 -0.159076 1.261748 -1.453360 2.656171 -1.196812 -0.630740 0.374703 2.289648 -0.372321 2.294040 -1.297720 -0.458437 -1.400428 1.560608 0.300853 -0.571225 -1.447739 -0.607087 0.979158 -3.125300 0.683073 -1.752492 0.462627 -2.221307 0.032926 2.545245 2.302666 4.707761 -2.775864 1.017263 -2.244653 -2.281752 -0.928888 1.646120 0.511402 -1.979076 0.119813 -0.517928 0.802316 1.155935 0.712699 1.962306 -2.135887 -2.355251 -0.985068 1.146265 0.637692 -3.400717 2.438022 -0.584203 -0.437029 -0.565434 -0.236637 1.063687 0.780976 1.747289 -0.923696 -1.912155 1.273679 -0.494921 3.263491 0.423835 0.129882 2.454630 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.601582 0.061887 0.210944 0.602614 0.332721 -0.680826 0.066699 0.548807 -0.416483 -0.906645 -0.633984 0.041820 -0.175817 -0.266922 0.519204 -0.029646 -0.012801 0.036427 -0.981476 0.556169 0.085807 0.146340 -0.169431 -0.582141 0.229039 0.324200 -0.477122 0.308479 0.055842 0.492641 -0.697167 -0.036873 0.145607 0.341385 0.461154 0.005055 0.286059 -0.054389 0.104481 -0.103749 1.008776 0.262494 -0.173802 0.510978 0.624734 0.426437 -0.336197 0.806975 -0.400959 0.018893 0.553848 -0.793724 -0.261193 0.277152 -0.522404 0.545576 1.116760 0.462237 -0.261172 0.305942 -0.292108 0.171391 0.153202 -0.417425 0.827549 0.711367 0.196337 0.292113 0.973748 -0.347786 -0.161980 0.196922 1.066189 -0.027533 -0.472476 -0.445243 0.017582 -1.525079 -0.052510 -1.097141 0.059881 -0.255060 1.081406 -0.487118 0.405815 0.606238 -0.128253 0.236333 -0.686987 0.190956 -0.443247 0.146080 -0.357594 0.917255 -0.272970 0.109670 -0.014774 0.182383 0.426670 0.656138 -0.258695 -0.038637 -0.716070 -1.376053 -0.564388 0.579472 -0.281303 -0.398279 -0.716722 -0.123917 0.821948 0.435934 -0.622865 -0.514529 0.223799 0.268742 -0.272222 0.329822 -0.813099 -0.023151 -0.269126 0.272759 0.234816 -0.221085 -0.020877 -0.874262 -0.255444 0.148447 0.638379 0.032075 -0.538571 -0.205238 -0.165595 -0.246810 -0.305019 -0.455747 -0.386050 -0.394806 0.293714 -0.233742 0.429155 -0.872416 -0.116013 -0.552152 -0.604599 0.422560 0.965161 0.341667 0.303599 0.661194 -0.226254 -0.328815 -0.468572 -0.787200 0.430290 0.020140 0.463084 -0.272136 0.104884 -0.003171 -0.050101 -0.726317 0.408550 -0.653993 -0.343906 -0.786075 0.855280 -0.340260 -0.202447 -0.796839 0.347954 1.018137 -0.379506 -0.053746 -0.336800 -0.281768 -0.549296 -0.610107 0.398172 -0.055676 0.059651 0.058633 0.604520 -0.890404 0.411665 -0.435569 0.450666 0.046062 -0.738757 -0.551407 -0.128164 -0.077444 -0.027486 -0.153050 -0.209125 0.094181 0.136179 0.681126 -0.071166 0.445878 0.302023 -0.969567 -1.322019 -0.490275 0.453257 0.600498 0.191082 0.266491 -0.551775 -0.224415 -0.648516 0.899190 -0.652079 -0.113640 -0.227190 0.002674 0.772794 -0.292299 -0.477693 -0.638423 0.278803 0.271838 -0.780151 0.897005 0.360703 -0.573286 -0.497337 -1.106479 0.358195 0.429994 1.435687 -0.401095 0.020309 0.247438 0.198590 -0.299954 -0.610081 0.699440 -0.163159 0.397729 -0.552320 -0.622499 -0.002497 0.543167 0.140979 0.333194 0.043632 0.397013 -0.272592 0.925742 0.211153 -0.288947 -0.334272 -0.923778 0.076384 0.700334 0.197224 0.235147 -0.630378 -0.793554 -0.312089 0.312378 0.733748 0.689239 0.253217 0.464999 -0.398300 -0.404485 0.083184 0.511264 -0.051623 -0.808749 0.277440 -0.450030 -0.175081 0.438794 0.122974 0.315021 -0.186730 -1.234496 -0.630672 0.379736 0.188142 -0.228315 0.579423 0.424094 -0.591062 0.113605 0.117366 0.379788 0.047474 -0.197886 -0.283122 -0.518691 -0.070442 -0.235842 0.713578 0.271239 -0.076615 0.181431 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = 4.294452 0.584000 -4.227926 10.077675 -0.348632 -1.864044 -0.252015 1.542800 -2.038090 -15.173557 -9.609169 7.794340 1.895215 2.062155 2.344475 4.195559 -0.432257 0.478790 -14.346310 3.641901 5.416365 1.104488 0.110656 -0.856666 1.664355 -4.390785 4.822711 1.138317 2.059968 8.585720 -4.214002 5.427783 7.422597 -1.136738 3.897895 5.757169 -3.288432 1.023946 -3.593322 -1.503444 10.722033 5.323972 0.195145 4.013051 0.286381 8.629965 0.703422 6.314686 0.412807 -6.561841 3.689289 4.723682 -4.698517 -0.892934 -5.438246 3.963512 5.518676 2.878602 -3.760950 2.121294 -2.848148 -0.343996 2.201962 -0.140845 9.618141 3.054036 7.847514 6.515583 8.021091 -5.360650 -0.573860 4.701354 1.928196 0.154311 7.154524 -5.063722 -8.758912 0.756235 -1.652270 -11.564864 -4.784069 0.183454 14.393170 -8.420421 -1.302227 0.022733 0.955264 8.910664 -3.953793 1.326744 -6.339933 -0.665477 -3.804531 10.513661 1.965288 0.743061 -0.858812 3.375314 2.366519 5.500047 -0.407550 -6.381393 -2.822907 -11.215057 -3.350593 -4.022522 5.355841 5.829699 -10.657366 -1.238476 -2.452664 9.884741 -12.286766 0.375047 5.745125 4.944438 7.869140 -0.001711 -5.997438 0.808579 2.168655 1.306953 6.274912 -3.330066 1.069522 -1.202289 2.247346 -0.402891 3.024478 1.118617 -10.179717 -6.026716 -0.392126 -1.486788 0.800677 2.610656 6.111085 -4.013415 5.928032 -3.166814 6.575285 -11.525993 -0.729245 -4.031950 -7.118175 -2.754278 6.017388 8.485057 6.774232 -3.866113 -3.227935 -2.232495 -11.628392 -10.410637 1.050271 1.534453 1.632209 3.639316 -0.981469 5.549214 -4.710119 2.820950 4.257250 -3.630887 -1.913195 -0.599130 7.340136 0.363730 -1.667153 -5.339801 -3.260079 -3.740280 -0.314850 8.444213 -0.975366 -12.683128 -14.111025 -6.026228 7.340875 -3.470731 0.992056 -5.098413 -1.495760 -6.031434 -0.064461 -8.271487 0.914715 0.433420 -5.272915 -8.705782 0.556681 -0.939995 -3.213470 0.389715 -6.458354 -1.602239 8.156219 1.792141 3.621887 1.123821 0.118584 -7.784103 -5.444574 3.078344 -6.253484 7.213618 5.486005 -2.367926 -7.379721 -3.351884 -8.640364 5.526428 -3.499170 2.524845 -3.022666 -1.410823 7.238388 -5.965415 0.266422 -6.288752 1.998129 2.682661 -15.482432 9.284385 6.892278 -2.568989 0.386595 1.353985 1.956751 4.262083 5.090679 -5.214893 -5.185312 -0.076171 -2.441691 0.400328 -0.892416 5.342816 -6.444574 0.126558 -5.083877 -2.894394 4.808236 3.797424 0.812291 2.296553 2.864547 -1.961235 4.259751 5.769848 6.816260 -1.705507 -7.297824 -16.683091 5.066383 -2.529810 -3.151249 -0.570201 -2.540734 -5.554175 2.134210 -3.124215 7.867196 -0.199129 -3.679902 6.926688 -10.111512 -8.169459 -5.531994 -1.018006 -0.320553 -0.542705 0.622507 -3.145353 2.793791 2.662369 -1.115637 -1.454584 -5.459204 0.057549 1.180187 8.210672 2.373475 2.539484 8.305774 3.800226 -4.331669 -2.182779 1.745799 -2.488813 -1.656514 -9.840611 -3.828571 -0.468809 2.058556 -3.765107 1.028834 -1.474334 -0.397994 1.895192 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.556544 0.123042 0.455957 0.168391 0.149247 -0.571434 0.387948 0.867334 -0.137330 -1.136128 -0.927338 -0.435931 -0.127531 -0.460342 0.499056 -0.035572 0.058892 0.573671 -1.491918 0.414976 0.640363 0.628556 0.194458 -0.495475 0.245339 -0.108095 -1.418545 0.226971 0.062900 0.753954 -0.510517 -0.231304 0.526728 0.144575 -0.043288 0.682154 0.260193 -0.025950 0.939457 0.247331 1.068063 0.350605 -0.086365 0.465522 0.625835 0.657229 -0.643959 0.826515 -0.552461 -0.411593 0.608759 -1.514889 -0.572620 0.197338 -0.324127 0.537376 1.388101 0.943512 -0.348596 0.719389 -0.318478 0.110731 0.180471 -0.889770 0.486609 1.055491 -0.154684 0.162768 1.258702 -0.239960 -0.088370 0.145366 0.538613 -0.193648 -0.368323 -0.558225 0.277078 -2.115482 -0.040557 -1.596721 -0.048653 -0.207642 1.479357 -0.761171 0.622791 1.115540 0.063753 0.401939 -0.307456 -0.287799 -0.404674 0.292288 -0.223213 1.034507 -0.238175 0.118503 -0.182004 0.229100 0.469393 0.474192 -0.239674 0.001059 -1.651531 -1.790159 -0.531115 0.052233 -0.157496 -0.166857 -1.040706 -0.271818 1.215816 0.296334 -1.171181 -0.108106 0.605478 0.550433 -0.884036 0.509453 -1.103478 -0.176833 -0.359351 0.143778 0.020918 -0.580460 -0.234657 -1.059264 -0.324617 0.121796 0.194409 -0.418083 -0.544585 -0.324265 -0.277180 -0.314790 -0.172837 -0.025745 -0.100518 -0.397541 0.394692 -0.759340 0.450786 -1.117072 0.009654 -0.299496 -0.738441 0.027043 1.340257 0.419358 -0.015109 0.351267 -0.467174 -0.616459 -0.545680 -0.688322 0.344469 -0.313563 1.188951 -0.252217 -0.002302 -0.387560 -0.031630 -0.490099 -0.396183 -0.361197 0.247781 -0.470246 1.461875 -0.461224 -0.245715 -1.095949 0.154135 1.250240 -0.611086 -0.441593 -0.441533 0.575871 -0.483732 -0.747903 0.565000 -0.032857 0.226138 -0.292787 0.543344 -0.762690 0.485317 -0.378208 0.109341 0.031778 -0.781647 -0.759091 0.020045 -0.145778 -0.223406 -0.013656 -0.300542 -0.088945 0.369502 0.779283 0.177318 0.084938 0.136083 -1.090185 -1.177344 -0.713257 0.066490 0.464196 0.630222 0.270500 -0.584427 -0.008950 -0.651072 0.960961 -0.424864 -0.183527 -0.391894 -0.125069 1.063749 -0.164891 -0.272716 -1.156289 0.190945 0.087857 -1.184842 0.958717 0.268689 -0.569272 -0.461031 -1.092418 0.128132 0.671640 1.098610 -0.202519 -0.118231 0.364535 -0.528859 -0.144318 -0.783761 0.658723 -0.362061 0.849601 -0.559520 -0.289691 0.340484 0.803036 -0.209678 0.745260 0.306557 0.743843 0.212103 0.677615 0.120648 -0.657479 -0.375074 -1.166696 0.350303 1.163251 0.388220 0.045492 -0.565253 -0.657911 0.051180 0.708793 0.779728 1.445530 0.547199 0.505905 -0.327014 -0.682605 0.266466 0.582691 0.322744 -0.773115 -0.004500 -0.208993 0.071281 0.514527 0.249622 0.890061 -0.816177 -1.708850 -0.363141 0.829924 0.307944 -0.419096 0.825876 -0.027019 -0.502338 0.261128 -0.188450 0.764291 -0.015864 0.510199 -0.165973 -0.517817 -0.019653 -0.369995 1.211451 -0.049109 -0.120453 0.555437 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/edit-distance.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.428786 -0.221739 0.227366 0.296183 0.298339 -0.422644 0.115776 0.422021 0.077277 -0.954664 -0.529452 -0.030381 -0.116818 -0.242003 0.330676 0.081286 0.161290 0.379239 -0.813052 0.443823 0.333590 0.437067 0.085923 -0.306952 0.247811 -0.115014 -0.475218 0.033911 0.212479 0.526699 -0.572644 -0.128185 0.411286 -0.004490 0.175376 0.474083 0.440142 -0.042643 0.327835 0.107924 0.988991 0.173685 0.090743 0.497923 0.532628 0.505797 -0.262715 0.909225 0.217523 -0.347365 0.457640 -0.916390 -0.315258 0.104166 -0.476833 0.628058 0.807331 0.541724 -0.500678 0.343734 0.035588 0.093368 0.118341 -0.499432 0.410741 0.566128 -0.041655 0.201907 0.995866 -0.175695 -0.175402 0.259946 0.688467 0.173543 0.246206 -0.545846 0.013140 -1.320363 -0.142167 -0.657429 0.098029 -0.245267 0.920776 -0.695907 0.466459 0.822822 -0.076485 0.376947 -0.126873 -0.197405 -0.458135 0.224553 0.000248 0.715119 -0.143491 0.043795 -0.171088 0.177854 0.184503 0.446149 0.088575 -0.219178 -0.971444 -1.309241 -0.547389 -0.102802 -0.045979 -0.123152 -0.868911 -0.111146 0.575169 0.371486 -0.867659 -0.002818 0.414814 0.302185 -0.193420 0.065757 -0.507229 -0.149105 -0.151125 0.092470 -0.129381 -0.406148 -0.285687 -0.711330 -0.082239 0.085089 0.226130 -0.367846 -0.120192 -0.261525 -0.291328 0.186255 -0.199515 -0.138175 0.010949 -0.699241 0.369224 -0.324559 0.274494 -0.688199 -0.241025 -0.291276 -0.430051 -0.059315 1.410369 -0.066690 0.451627 0.227490 -0.508863 -0.560849 -0.492282 -0.685083 0.272345 -0.364518 0.610507 0.158293 0.028920 -0.112066 0.016664 -0.463202 -0.208793 -0.390612 0.062513 -0.314062 0.371589 -0.519053 -0.046206 -0.923982 0.032665 0.939013 -0.287217 -0.216582 -0.342324 -0.090211 -0.365393 -0.594548 0.409013 -0.129067 0.384591 -0.118053 0.300031 -0.566711 0.300144 -0.451450 0.083999 -0.178416 -0.609042 -0.575964 -0.009568 -0.221709 0.057208 0.014760 -0.375506 0.110440 -0.100502 0.609878 0.100233 0.064154 0.016236 -1.181579 -0.974282 -0.460611 0.000000 0.532206 0.149245 0.144651 -0.386153 -0.167786 -0.495845 0.577514 -0.850433 -0.114564 -0.022892 -0.142477 0.735862 -0.170194 -0.189996 -0.880110 0.237995 0.150157 -0.716274 0.780764 0.276259 -0.495747 -0.244542 -0.612171 0.145390 0.504982 0.893484 -0.205263 -0.092928 0.294625 -0.252280 -0.105441 -0.638203 0.547618 -0.280089 0.708601 -0.539015 -0.366116 0.086647 0.651919 -0.109728 0.308345 0.251013 0.406840 -0.064895 0.670889 0.184380 -0.093291 -0.437540 -0.976784 0.258133 0.856198 0.292581 0.243835 -0.597386 -0.348555 0.039104 0.450532 0.649874 0.777666 0.672604 0.442766 -0.534676 -0.561674 0.328973 0.161882 0.187193 -0.477800 0.208441 -0.320936 -0.063491 0.124402 0.186157 0.253046 -0.291258 -0.857547 -0.146351 0.474154 0.336663 -0.108323 0.583285 0.106771 -0.492678 0.299425 -0.067958 0.518907 -0.094352 0.153330 -0.161528 -0.345470 -0.105251 -0.281434 0.813935 -0.225739 -0.021138 0.154619 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 7.116290 0.212866 0.024224 7.358570 1.251656 -4.278571 -1.331537 6.643304 -4.483167 -12.633584 -11.576675 4.527586 -0.857177 3.366705 7.537200 1.157418 -0.869209 -1.376097 -19.277693 5.497540 2.605430 1.097480 0.223515 -3.096894 3.854176 1.569292 0.692537 3.040162 2.338622 6.148545 -7.916220 2.387792 4.379696 1.148149 5.360210 0.303762 -0.443775 -0.753971 -3.203613 -3.933916 12.606318 3.896265 0.686337 7.292280 3.056516 5.552643 -1.516470 9.748943 3.192821 -5.012489 7.091150 -7.718336 -5.016028 2.694170 -5.736793 5.916859 8.500588 3.642442 -4.419830 3.019963 0.567390 0.328092 1.405300 -7.102726 10.180293 3.825253 8.031871 2.562496 8.017087 -4.758759 -1.076226 4.261652 7.209941 1.490358 -2.653398 -10.266630 -0.982101 -11.526874 2.713459 -15.369758 -4.434429 -3.186068 10.735070 -7.036132 2.656255 3.633351 -4.509399 6.486469 -6.695105 3.724650 -4.677139 -0.927728 -1.822062 7.812557 -1.434477 -1.496413 4.487624 2.215952 4.438873 9.075998 -2.026530 -0.837112 -5.446180 -12.763249 -3.562665 6.234384 3.178158 1.728001 -7.180866 -0.522780 0.004192 4.801082 -6.842661 -5.285614 5.502804 4.832398 -2.492293 4.507965 -6.827186 -3.516773 0.604416 4.728483 6.839860 -4.901230 3.575252 -5.848956 -0.077060 1.964393 7.421060 1.519532 -4.575611 -7.756703 -0.849689 -0.650890 -2.912901 -3.074531 1.884295 -1.229717 7.081319 -0.954323 4.804874 -10.623608 -1.500637 -4.139741 -3.010614 0.902451 10.346939 5.879890 3.977015 4.595479 -3.642070 -2.025819 -6.671993 -7.911449 3.917356 4.252206 4.562966 2.040776 0.311401 5.375755 -1.250057 -5.237597 2.139403 -5.339215 -5.175099 -6.631001 3.598563 -0.730909 -1.093400 -8.317627 4.190952 3.167408 -6.758425 3.522968 -0.278787 -9.055022 -7.229577 -6.587428 6.206994 -0.647327 0.986256 -0.761161 4.172205 -8.183520 1.137189 -8.762707 0.785953 1.618292 -10.619399 -6.294728 -1.257135 -0.176277 -0.085123 -0.362703 -4.922138 -0.896380 5.478742 10.477480 1.401753 3.774469 2.967634 -10.500691 -12.567926 -3.584550 -1.692741 6.926119 0.847064 -1.322131 -7.737467 -2.766845 -4.559216 8.396087 -6.227692 0.361163 -6.190850 0.187759 7.292204 -3.957250 -2.287903 -5.866757 1.873681 5.262870 -16.319993 8.314767 4.377523 -3.303908 -2.886592 -6.709184 2.924323 5.741693 11.755147 -3.682173 -2.153775 -0.103521 1.471148 -0.900737 -5.704672 8.571116 -3.155947 -1.195601 -4.617828 -6.827374 1.803574 4.102149 3.509097 5.454857 4.584068 6.136579 1.308682 9.727813 1.968014 -5.113444 -3.490245 -17.312585 3.951638 14.907511 -1.289514 1.987273 -8.226541 -8.584894 -1.701676 -0.417820 6.583069 6.483215 4.224969 5.295074 -4.682394 -5.814624 -3.583253 4.061773 -2.658717 -2.528957 -0.525282 -3.612089 1.575677 4.639308 -2.208818 0.671177 -1.894198 -11.720590 -6.118825 4.452155 1.555052 3.694400 8.186862 5.737011 -6.542527 -0.323847 0.240573 1.004927 -0.181772 -4.024599 -4.738063 -3.290983 -1.561414 -3.430483 1.113141 1.774116 -1.270222 0.460886 -PE-benchmarks/edit-distance.cpp__main = 3.657363 -0.148297 1.430758 2.910761 1.459539 -2.583612 -0.654547 4.419576 -1.794316 -4.898290 -5.337324 0.304467 -1.183467 0.656076 4.932223 -0.550400 -0.029289 -0.803717 -9.109213 3.098372 0.609255 0.605732 -0.189231 -2.331517 2.126414 1.454667 -1.422087 1.893819 0.745396 1.975758 -4.145602 0.329867 1.084944 1.413475 3.235215 -0.875704 -0.057603 -0.910643 -0.498086 -2.011203 6.440340 2.033587 0.025629 3.951290 2.701173 1.894096 -2.099936 4.195447 1.029876 -1.600973 3.627068 -5.964863 -1.851312 2.085840 -3.090781 3.493698 4.786478 1.334133 -2.326497 1.732654 -0.315310 0.500961 0.508296 -4.663510 4.939963 2.120732 3.219350 0.811986 3.983726 -1.635994 -0.680838 1.773009 4.730158 0.765912 -3.265370 -4.388794 1.181204 -9.012296 1.742911 -6.869755 -0.994363 -2.434446 4.111749 -2.639416 2.394240 3.038326 -2.357953 2.316628 -3.719623 1.585112 -1.883640 -0.064371 -0.661634 3.003765 -1.437033 -0.719411 2.869168 0.957384 2.107472 4.725862 -1.180391 0.957107 -3.256306 -7.089521 -2.009452 4.671596 1.145561 -1.060971 -2.474023 0.447815 2.192881 0.955662 -1.764364 -3.327646 2.002439 1.830241 -4.067962 1.749602 -3.047057 -2.776967 -0.356345 2.810218 2.303593 -2.596546 1.817836 -4.371234 -0.680964 1.418520 4.576623 0.312946 -0.072005 -3.158500 -0.741345 0.007659 -2.228365 -2.335681 -0.349494 -0.705757 3.236425 -0.280740 2.170311 -4.239360 -0.363674 -2.846952 -0.213674 1.396724 6.228340 1.861958 1.128818 4.430094 -1.569634 -1.045596 -2.115940 -3.051888 2.298082 2.152076 3.009328 -0.117994 0.494748 1.608585 0.251343 -3.823724 0.243008 -3.218772 -2.562235 -4.049273 1.269378 -0.844947 -0.708170 -4.757950 3.544499 4.121144 -4.764631 -0.185619 -0.071056 -1.756222 -1.513280 -3.142323 2.259133 0.343817 0.678521 0.501367 3.322269 -3.557830 1.327087 -3.874771 1.079615 0.521210 -5.485394 -2.329883 -1.198087 -0.036277 1.072835 -0.553915 -1.660511 0.253809 1.550124 6.111889 -0.202079 2.621312 1.965180 -5.263420 -7.104134 -3.395648 0.805891 2.910884 -0.125421 -0.290735 -2.836728 -1.124470 -1.257087 4.504640 -3.087838 -0.530005 -2.945436 -0.825803 3.096124 -1.347469 -2.563711 -3.404380 0.633858 2.198386 -5.731630 3.179800 1.082925 -2.304495 -2.474057 -5.890977 1.810242 2.544136 7.446127 -0.937364 0.532893 -0.012454 1.306948 -0.924146 -3.639872 4.362754 -0.462657 -0.222983 -2.463104 -4.008560 0.668748 2.189967 1.739251 3.238755 2.181041 4.700273 0.176634 5.134331 0.464704 -2.821219 -1.584288 -6.903645 1.229389 9.681541 0.322741 0.784619 -4.550065 -4.993158 -2.164945 1.793556 2.841056 5.654685 3.943145 2.072162 -0.730319 -2.147494 -0.769544 3.168039 -1.621774 -2.597000 -0.445717 -1.870778 0.123166 2.112476 -0.542049 1.206177 -0.318143 -8.572051 -4.165719 1.049714 0.972401 0.991475 3.508924 3.400176 -3.666208 0.320714 -0.132142 0.919250 0.396612 -0.118286 -2.416391 -2.588769 -1.763821 -1.385710 1.271519 1.905184 -0.223010 0.148843 -PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/edit-distance.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/edit-distance.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/edit-distance.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/edit-distance.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/edit-distance.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = 3.049473 0.679106 -2.913386 7.069387 -0.523879 -0.950964 -0.229016 0.808282 -1.870520 -11.334248 -7.022549 6.910372 1.322722 2.646351 1.017162 2.976006 -0.091684 0.461093 -10.897098 2.281481 3.955337 1.002184 0.595524 -0.045948 1.284066 -2.918482 4.170667 0.587693 2.094990 6.444914 -3.361834 3.901406 5.718928 -1.099256 2.688922 4.364758 -1.695915 0.741189 -3.385442 -1.966666 7.728133 3.239520 1.104002 3.204773 -0.400505 6.416298 1.296962 5.347467 2.460057 -5.373113 2.521549 2.616974 -3.806167 -0.646906 -3.768940 2.797513 2.646384 2.635267 -2.844471 1.489597 -0.900260 -0.380438 1.476858 -0.529740 6.400727 1.793993 5.230790 4.333894 5.343727 -4.286639 -0.568682 3.564439 1.060496 0.833065 5.145191 -4.675246 -6.042641 1.277791 -1.010166 -8.832736 -4.012445 0.320286 10.881147 -6.419289 -0.731527 -0.294082 -0.315125 6.265172 -2.302899 1.134684 -4.988925 -0.720884 -2.110904 6.703466 1.532594 -0.190430 -0.082214 1.979168 1.757584 4.138358 -0.452956 -4.799821 -1.822458 -7.470564 -1.769736 -3.058753 3.994776 4.924952 -7.327981 -1.276765 -3.102157 7.986451 -9.047789 -0.003995 4.393329 3.540555 5.154444 1.245964 -3.756193 0.418236 1.841519 0.882332 5.312443 -2.690146 0.874397 0.092957 1.187152 -0.562285 2.193274 1.029743 -7.493503 -5.216932 -0.266263 -0.900432 0.474071 1.498484 4.521024 -2.070885 4.624147 -1.977594 4.460280 -7.725348 -0.915216 -2.194547 -5.081288 -2.437734 5.204361 6.244702 5.233464 -3.166014 -2.265591 -1.714976 -8.040392 -6.949418 1.093817 1.219236 1.269335 3.574530 -0.767403 4.619015 -3.559475 1.714250 2.594655 -2.243523 -1.726601 -0.213857 3.707523 0.197400 -0.866120 -4.150413 -1.978647 -3.439032 -0.519756 6.204122 -1.016610 -10.591726 -10.113949 -4.429602 5.549852 -2.646331 0.867063 -3.370862 -1.391241 -3.416655 -0.688261 -6.331045 -0.076352 0.356814 -4.193567 -6.522661 0.795334 -1.027930 -2.688464 0.886927 -4.732110 -1.307638 6.079279 1.919623 2.818153 0.433311 0.047114 -5.776991 -3.467323 2.240170 -5.149106 4.766134 3.779494 -1.787335 -6.244404 -2.735848 -5.883769 3.670584 -2.918866 2.010995 -2.402437 -0.419218 5.217845 -4.271102 1.811163 -3.905078 1.703298 3.006595 -13.901488 6.352926 5.201951 -1.504227 0.514891 1.745808 1.010030 3.502600 3.190269 -3.896246 -4.315520 0.141718 -2.151930 0.580687 -0.743949 3.761609 -4.512002 -0.340831 -3.606105 -2.084148 3.236422 2.273800 0.904755 1.229480 2.850895 -1.155500 3.615646 4.459998 4.567760 -0.994090 -5.027243 -13.434358 4.408165 0.375311 -2.096827 0.381769 -2.156696 -3.461601 2.182855 -3.604097 5.430410 -1.332006 -2.525585 5.153698 -7.407539 -5.845703 -3.963418 -1.289994 -0.073192 0.420621 0.525969 -2.314584 2.272778 1.740514 -1.337434 -1.465082 -3.136496 0.489719 1.232652 5.895310 2.017378 3.067172 6.160999 2.223850 -3.175308 -1.188986 1.232939 -1.270306 -1.846196 -7.752178 -2.619664 0.119533 1.634682 -2.764639 0.115200 -1.456788 -0.807675 1.150984 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = 1.700418 -0.352869 -0.590733 2.970572 0.436123 -0.636165 0.152390 0.883813 -0.146463 -4.930768 -3.128267 2.770292 0.224090 0.506651 0.730684 0.891355 0.337979 0.340401 -4.754486 1.257537 1.461654 0.558204 0.179188 -0.400885 0.612414 -1.378625 1.505073 0.662933 0.811051 2.726042 -1.582381 1.177194 2.353388 -0.075533 1.406363 2.140762 -0.226114 0.006516 -1.153222 -0.845132 3.909254 1.771635 0.128958 1.920414 0.579467 2.867712 0.425978 2.658349 1.452422 -2.027191 1.096620 0.129616 -1.828595 -0.346980 -2.180065 1.575376 1.671769 0.902734 -1.531317 0.920800 -0.478762 -0.121581 0.626554 -0.651973 2.784895 0.902740 2.040369 1.784807 2.968435 -1.965199 -0.582352 1.872416 1.541352 0.941648 2.064743 -1.925469 -2.542541 -0.866132 -0.419652 -3.530124 -1.435663 -0.504683 4.435472 -2.722125 0.028737 0.614806 -0.366832 2.528705 -1.098698 0.144892 -2.402616 0.040387 -0.519404 3.017152 0.480413 0.111189 -0.010150 0.862572 0.786542 2.148649 0.143385 -2.098833 -1.299134 -4.316846 -0.831712 -1.300596 1.424258 1.290538 -3.155381 -0.310032 -0.659589 3.502565 -3.716994 -0.242094 1.967848 1.292077 1.754458 -0.126689 -1.375216 -0.075722 0.827199 0.456154 1.829358 -1.568758 0.017628 -0.421153 0.667796 -0.101365 1.135986 0.118728 -2.427463 -2.118114 -0.109544 0.356041 0.003974 0.246826 1.441189 -1.607814 1.916399 -0.972104 2.089991 -3.247923 -0.390871 -1.245306 -1.816446 -0.906895 3.608526 2.170925 2.688338 -0.592896 -0.938572 -1.032736 -3.139977 -3.628016 0.810636 0.169597 0.900513 1.174889 -0.187527 1.571119 -1.358942 0.172854 0.690481 -1.261268 -0.525498 -0.196870 1.118489 -0.361740 -0.337733 -2.187512 -0.499609 -0.115095 -0.266280 2.050990 -0.679375 -4.578220 -3.677199 -2.257048 2.334057 -1.127162 0.465496 -1.203375 -0.333086 -1.568422 0.087575 -2.562088 0.353173 -0.082441 -2.348668 -2.900053 0.158793 -0.670924 -0.460131 0.489064 -2.051464 -0.302656 1.909366 1.403587 0.990451 0.553193 -0.001326 -3.123942 -2.145098 0.268347 -1.600969 2.825628 1.254028 -0.598464 -2.542764 -1.202000 -2.573819 2.103744 -2.100980 0.627765 -0.894242 -0.717966 2.504138 -1.591290 0.160605 -2.305803 1.011394 1.274487 -5.217966 2.930131 2.453166 -1.177880 -0.400064 -0.081172 0.394542 1.728141 2.429714 -1.750498 -1.645060 0.407682 -0.804699 0.029396 -0.822075 1.860256 -1.571042 0.519998 -2.088339 -1.421247 1.274312 1.417552 0.198457 0.673199 1.263070 0.248396 1.127294 2.483784 1.882738 -0.215383 -2.666714 -5.924048 1.813411 1.292354 -0.561965 0.584164 -1.569716 -1.883867 0.699162 -1.078058 2.635027 0.382786 -0.345331 2.380919 -2.940744 -2.612660 -1.211408 -0.559676 0.127441 -0.359745 0.852812 -1.245292 0.696522 0.401845 -0.362987 -0.508500 -1.208164 -0.460104 0.353153 2.312468 1.243254 0.962932 2.733921 1.053551 -1.756522 -0.277464 0.381951 -0.343401 -0.529339 -2.934809 -1.147645 -0.451096 0.507966 -1.112845 0.784633 -0.364736 0.016500 0.369537 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 2.611673 0.052584 -1.275445 4.123941 0.237724 -1.192061 0.351553 1.462784 -0.563106 -7.263207 -4.206523 3.016647 0.643853 0.492416 1.273677 1.743509 -0.021382 0.866070 -6.467316 1.799185 2.702295 1.177947 0.353353 -0.735949 1.020048 -1.696016 0.405911 0.171410 1.157268 4.287005 -2.335313 1.997819 3.594216 -0.380699 1.366172 2.901599 -0.373133 0.373043 -0.621828 -0.666918 5.343876 2.165304 0.360637 2.290630 0.413576 4.035608 -0.780967 4.802826 0.014556 -3.114760 2.537048 -0.771089 -2.350515 0.253269 -2.504960 2.526097 3.140946 2.046048 -1.802608 1.427650 -1.163230 0.273325 1.049381 -0.919241 4.021381 2.779927 2.369271 2.894122 4.657897 -2.399949 -0.226242 1.959553 1.127534 -0.007641 2.997010 -2.712619 -2.873356 -1.326208 -0.565870 -4.851314 -1.856588 -0.538973 7.210195 -4.417650 0.325673 1.426404 0.807722 4.084464 -1.646783 0.677032 -3.106065 0.177448 -1.280776 5.181968 0.311776 0.749899 -1.061591 1.164340 1.059977 2.425683 -0.082040 -2.472336 -2.948314 -5.475710 -2.030523 -1.646303 1.815425 2.335704 -5.614874 -0.569405 -0.014094 4.251501 -6.284382 0.082283 2.573522 2.565429 3.204855 1.972882 -3.061293 -0.004761 0.712515 0.360222 1.801998 -2.036905 0.098286 -2.030282 0.194586 0.011697 1.365870 -0.256543 -4.879960 -2.434580 -0.478898 -0.889132 0.284279 1.198803 2.497130 -2.479180 2.704908 -1.934464 2.619641 -5.262646 -1.269054 -1.731827 -4.054713 -1.278142 5.189631 3.104083 3.369007 -0.935969 -2.135521 -2.095540 -5.106462 -4.924664 0.468963 -0.196713 1.859649 1.794735 -0.331775 1.696258 -2.129035 0.598001 0.994741 -1.882887 -0.716425 -0.693826 3.668519 -0.840659 -0.701962 -3.465562 -1.164788 -0.163667 -0.911559 3.012589 -0.663084 -4.698709 -6.215851 -3.196896 3.526154 -1.487006 1.006098 -2.397916 0.118949 -3.137013 -0.076073 -3.571514 0.596952 0.275017 -2.860586 -4.378197 0.620699 -0.604174 -1.362302 0.408159 -2.926881 -0.434481 3.077173 1.645454 1.487563 0.616750 -0.120901 -4.540224 -3.579663 0.431366 -2.485765 3.175643 2.460962 -0.612787 -2.808668 -1.760313 -4.124178 3.029707 -3.003215 0.922031 -1.183203 -0.282957 3.794666 -2.672248 -0.433975 -4.135229 1.083405 1.129949 -6.558369 4.359273 2.330258 -1.708770 -0.207028 -0.813172 1.111671 2.470427 3.305678 -2.108407 -2.257105 0.572603 -1.274223 -0.032607 -1.247880 2.658486 -3.059726 1.171332 -2.556677 -1.388184 2.086933 2.503632 -0.161204 1.344779 1.824669 -0.214539 2.116729 2.984437 2.988028 -1.246557 -3.298260 -7.915948 2.283280 0.383173 -0.761150 -0.335012 -2.368510 -2.437248 1.322362 -0.431978 3.924021 1.041370 0.086969 3.300612 -4.820829 -3.965356 -1.349477 0.104837 0.266906 -0.902130 -0.014153 -1.385770 1.195804 1.668318 -0.010327 0.220916 -3.064286 -1.578918 0.240853 4.153090 0.847461 0.857145 4.176298 1.770566 -1.983404 -0.221588 0.450201 0.102865 -1.173718 -3.572391 -1.340333 -0.415530 0.568319 -2.095852 1.931444 -0.746294 -0.722060 1.076069 -PE-benchmarks/finite-automata-algorithm.cpp__main = 0.529331 -0.249358 0.269544 0.383946 0.482862 -0.407271 0.227003 0.316675 0.106327 -0.891042 -0.414900 0.270031 -0.119078 -0.375648 0.147762 0.053161 0.241865 0.372212 -0.500607 0.372507 0.123461 0.305707 -0.089477 -0.366117 0.121295 -0.193968 -0.172650 0.267062 0.091554 0.486329 -0.432175 -0.159917 0.380968 0.107124 0.184356 0.562116 0.580000 -0.096420 0.166066 -0.010488 1.056754 0.109046 0.151284 0.626112 0.583616 0.545797 -0.129013 1.023498 0.313482 -0.184480 0.439242 -0.621962 -0.346027 -0.044610 -0.694076 0.576697 0.679658 0.291964 -0.491584 0.401709 0.040153 0.094300 0.164943 -0.305646 0.436194 0.591824 -0.051541 0.251907 1.150049 -0.331192 -0.262944 0.432456 0.843042 0.328530 0.360540 -0.471628 -0.142409 -0.917718 -0.139112 -0.424143 0.177544 -0.346590 1.004845 -0.540731 0.233116 0.743633 0.023119 0.349169 -0.172432 -0.210007 -0.537338 0.297114 -0.021954 0.833190 -0.111803 0.221254 -0.237536 0.070683 0.133108 0.520541 0.058585 -0.318181 -0.729865 -1.329443 -0.568924 -0.208842 -0.182457 -0.336678 -0.820557 -0.087304 0.436429 0.502513 -0.807887 -0.160973 0.391598 0.194498 0.065698 0.064561 -0.401418 -0.172038 0.011436 0.064540 -0.213492 -0.317858 -0.295657 -0.578645 -0.030313 0.025338 0.217244 -0.353647 -0.304574 -0.196932 -0.226137 0.219323 -0.101056 -0.235707 -0.096313 -0.777647 0.262843 -0.317636 0.310217 -0.695094 -0.317549 -0.355809 -0.535337 -0.073509 1.346471 -0.141447 0.756821 0.262652 -0.356585 -0.562007 -0.465763 -0.914053 0.265972 -0.459141 0.438222 0.095524 0.029209 -0.205749 -0.108410 -0.516739 0.040875 -0.405266 0.009853 -0.301115 0.390479 -0.508615 -0.059094 -0.824024 0.084244 0.888637 0.007474 -0.127009 -0.349716 -0.544461 -0.338358 -0.629279 0.378930 -0.147367 0.237450 -0.089830 0.114658 -0.511105 0.256942 -0.344592 0.195212 -0.187452 -0.627776 -0.604305 0.071856 -0.248805 0.021716 0.065163 -0.428467 0.184560 -0.133026 0.456655 0.037988 0.145809 -0.092578 -1.116293 -0.958731 -0.401806 0.217148 0.612616 0.226946 0.295507 -0.328127 -0.233818 -0.566676 0.510896 -1.020179 -0.080264 0.207640 -0.211991 0.702149 -0.265286 -0.156964 -0.792069 0.302778 0.091191 -0.705042 0.834746 0.392150 -0.632057 -0.452364 -0.597509 0.102074 0.418047 1.043813 -0.335475 -0.114092 0.442023 -0.067199 -0.177358 -0.535436 0.462104 -0.109341 0.751492 -0.707875 -0.529320 0.095492 0.750300 -0.225827 0.125740 0.166934 0.316111 -0.119330 0.807290 0.197812 0.088195 -0.514901 -1.112655 0.183590 0.493024 0.178358 0.385004 -0.610296 -0.390055 0.150027 0.209687 0.733388 0.379542 0.532574 0.496850 -0.515405 -0.602156 0.331496 -0.004330 0.270872 -0.517803 0.397394 -0.443692 -0.148210 -0.090634 0.201847 0.055754 -0.222015 -0.581130 -0.089498 0.455482 0.324079 -0.168370 0.622064 0.113394 -0.364169 0.236777 -0.067384 0.505935 0.071494 -0.161365 -0.135882 -0.404172 -0.016233 -0.236936 0.922861 -0.132083 0.130076 0.192958 -PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 4.863832 1.530933 -2.177683 8.162337 0.499600 -3.226942 0.462856 4.123244 -2.315468 -12.821163 -9.067548 6.982784 0.730792 1.166831 3.122518 2.313496 -0.388291 0.751588 -15.050293 4.151746 4.300766 1.898207 -0.193168 -2.367259 1.870850 -2.186306 1.544613 2.462105 1.814574 7.470217 -4.512368 2.863576 6.113886 0.147811 4.499955 4.640135 -0.551879 0.704246 -2.411781 -1.392414 10.721026 5.844372 -0.452750 4.967880 2.059064 7.897245 0.263454 6.396017 -0.004096 -5.339143 2.854696 -0.259000 -5.215620 -0.365823 -4.730504 4.363986 6.231720 3.706415 -4.139252 3.469472 -1.893761 -0.994965 1.889251 -2.603896 8.391334 3.494167 5.699334 4.655426 8.445395 -4.613243 -1.603465 3.857042 4.276898 0.287104 3.218799 -5.902583 -6.546924 -4.981204 0.056756 -13.258475 -4.966519 -0.611263 12.972808 -8.100635 1.353757 2.314721 -0.701336 6.509910 -4.734076 0.039611 -5.880719 -0.989158 -2.910714 10.269049 0.975560 0.036423 1.066858 3.125692 4.071337 6.288593 -0.955455 -4.475071 -4.485817 -11.679643 -2.156607 -0.846707 3.259459 3.398597 -7.590936 -2.564531 -0.235024 9.029921 -10.544688 -1.368547 6.447750 3.728533 3.319937 0.790036 -5.425561 1.007983 1.283891 0.846222 6.261494 -4.434958 0.255590 -0.943498 0.923698 -0.193728 3.615448 0.903765 -8.431265 -5.646813 -0.389100 -1.376973 -0.431618 -0.476325 2.332234 -3.979229 5.794888 -3.369682 6.077599 -9.787638 -0.089776 -2.906127 -5.829217 -1.361239 7.369886 6.942943 5.233939 -1.318984 -2.469488 -2.442275 -8.751729 -9.827859 3.466929 1.813206 3.331947 1.679291 -0.652166 3.687944 -3.422324 -0.079432 3.135820 -3.677854 -1.944474 -1.738471 7.154441 -0.349158 -1.558913 -6.102972 -0.840243 0.052181 -0.876073 4.858854 -2.007926 -11.266989 -9.877375 -5.936700 6.486576 -1.954633 0.875133 -3.394931 0.229376 -5.649548 0.480267 -7.819090 2.285161 0.329814 -6.045824 -7.481067 0.274145 -1.207954 -1.654485 0.158982 -4.660345 -1.562847 6.384593 4.005014 2.062873 1.328780 1.534521 -7.897227 -6.607108 0.663195 -3.733083 6.960693 3.474326 -0.651343 -7.422928 -1.882334 -7.490305 6.560993 -3.714276 1.062651 -4.011004 -1.497136 8.212476 -4.223848 -0.742246 -6.382627 2.462234 3.515857 -13.509405 8.110990 6.312032 -2.499382 -1.379348 -0.529634 0.912394 5.660004 7.627767 -4.796476 -4.917111 0.669208 -2.533264 -0.088480 -2.229393 5.786041 -4.962853 1.570875 -5.235476 -3.487315 3.594452 4.149224 1.244406 3.727484 2.659613 0.783438 2.492119 6.625304 4.711942 -2.126093 -6.043134 -15.072434 4.727353 3.265551 -1.475181 -0.033849 -3.368271 -6.155423 0.831021 -2.026973 7.162232 2.835725 -2.367536 6.132696 -7.829239 -7.322932 -3.868861 0.770479 -0.094237 -2.000533 1.027096 -2.759114 2.758540 3.038375 -1.365218 0.662835 -4.053265 -3.753318 -1.052754 5.801491 2.378648 1.689722 8.023335 2.526779 -4.819055 -0.846325 0.747566 0.004433 -0.986177 -7.472694 -3.706533 -2.498654 1.319017 -2.830201 2.198019 -0.440581 -0.767993 2.602234 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/snake-ladder.cpp__main = 2.360074 -1.799344 0.911902 2.581375 0.845013 -1.606522 0.912314 2.181321 0.239256 -5.286810 -2.728933 0.517731 -0.143703 -0.583926 1.253368 0.444273 0.236919 0.425375 -7.071536 1.813553 1.966541 1.343091 0.682942 -1.503812 0.946070 -1.591009 0.144862 1.859656 0.368021 3.086156 -2.050537 0.128970 2.532601 0.322140 1.411842 2.886218 0.717475 -0.087964 0.171640 0.621188 4.889616 2.338829 -1.246407 1.571542 1.752313 3.365893 0.439297 3.068680 0.577356 -1.908195 1.715110 -2.152722 -2.339745 -0.801639 -2.567865 1.697909 4.302376 2.603133 -2.064621 1.862540 -1.050666 -0.029431 0.911261 -0.443951 3.326545 1.660563 2.071171 1.482346 4.544463 -2.125476 -0.764964 1.711352 2.446343 0.326393 1.495357 -2.881253 -2.195512 -6.147311 0.243852 -4.820447 -1.615671 -0.594530 2.821752 -2.910612 1.103627 2.519195 -0.307235 2.649202 -1.723577 -0.446552 -2.723549 0.462390 0.094308 5.472469 -0.527434 0.329604 0.548987 1.638849 1.660017 2.744981 1.127742 -2.135972 -2.973406 -6.230727 -1.403689 -1.239338 0.574362 0.308453 -3.932708 -0.448076 1.822539 1.658645 -4.338282 -0.075068 2.439064 2.053215 1.356834 -1.618237 -1.449729 -0.030077 -0.107546 0.581988 1.452115 -2.692367 -0.274020 -1.825068 1.262020 0.993006 0.955644 -0.719315 -2.346323 -1.512742 0.128917 0.358951 -0.283551 0.111695 0.550464 -2.575688 1.778014 -2.661887 2.857417 -4.145084 0.230909 -1.477983 -1.503585 -0.534076 4.499305 1.100831 1.057689 0.341132 -2.119137 -0.858691 -2.913780 -5.292363 0.860369 0.120592 1.993493 0.219550 -0.421569 0.517831 -0.921714 -0.810838 -0.221358 -1.607018 -0.217715 -0.952965 1.208479 -0.505543 -0.590532 -2.163046 0.235562 2.619404 -0.271280 1.571399 -1.265255 -3.216027 -3.436228 -3.135479 2.621077 -0.828137 0.007502 -1.346762 0.174812 -3.661242 1.810822 -2.451837 1.254755 -0.421652 -3.032655 -3.359784 0.279272 -1.034533 1.009433 0.369855 -2.239658 -0.469729 -0.156461 1.961656 0.914111 0.458345 0.547013 -4.618875 -3.925860 -0.745051 -0.411947 4.009184 -0.107004 0.093765 -1.543581 -0.879124 -2.506927 3.199622 -2.198351 0.253177 -0.899056 -1.709492 3.760976 -0.986992 -0.843898 -3.551401 1.392475 1.127580 -1.585824 5.314387 2.754107 -2.109745 -1.439240 -1.357377 0.276844 2.356107 3.810561 -1.989219 -1.917808 0.895415 -0.633061 -0.413226 -1.600882 2.352630 -1.482376 1.979520 -2.879148 -2.183637 0.936088 2.787109 -0.212514 1.810099 1.073390 0.808887 -0.896918 3.455097 1.137100 -0.157221 -2.638660 -5.569985 1.867652 2.122034 0.335156 0.165890 -2.748108 -2.643047 0.520372 2.044301 3.538109 4.679228 0.231385 2.656786 -3.199738 -3.234219 -1.179659 0.003902 0.292664 -1.370479 0.456962 -1.371604 0.686547 0.714231 0.156032 0.678380 -1.741231 -2.294408 -0.340130 2.334562 1.262976 -0.915702 3.458074 0.752548 -1.882729 -0.298623 0.260986 0.281236 0.595419 0.080039 -1.159641 -1.364669 0.673685 -1.197915 2.386379 -0.178158 0.194876 0.711219 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = 0.627096 -0.218758 0.164316 0.454208 0.494681 -0.521736 0.238052 0.339928 0.058727 -0.962995 -0.486580 0.401034 -0.091021 -0.480730 0.155819 0.114236 0.196261 0.368680 -0.510067 0.471098 0.121704 0.278822 -0.225440 -0.395233 0.107821 -0.229571 -0.216305 0.299632 0.039943 0.523125 -0.435155 -0.128318 0.405917 0.099011 0.199200 0.611099 0.525797 -0.098195 0.241637 0.032846 1.128785 0.157060 0.176781 0.655918 0.651510 0.587635 -0.220903 1.198657 0.195869 -0.183783 0.543694 -0.516757 -0.396809 -0.019637 -0.747147 0.609237 0.733769 0.206262 -0.502187 0.430737 -0.060245 0.086257 0.199256 -0.261367 0.564466 0.706199 -0.003478 0.295770 1.294592 -0.308488 -0.270738 0.506421 0.922266 0.297246 0.429524 -0.443705 -0.237024 -0.781649 -0.145782 -0.463659 0.173176 -0.370926 1.244642 -0.590652 0.162662 0.731537 0.157988 0.434196 -0.258100 -0.202124 -0.544512 0.325464 -0.134200 0.991588 -0.119161 0.339295 -0.345233 0.068947 0.139641 0.562026 -0.056015 -0.350421 -0.806487 -1.439087 -0.650780 -0.217696 -0.237751 -0.368457 -0.995386 -0.109707 0.451461 0.621809 -0.906548 -0.170211 0.443761 0.173851 0.239973 0.256628 -0.560125 -0.163755 0.038841 0.075520 -0.230000 -0.239534 -0.327257 -0.678975 0.015969 0.006951 0.205323 -0.368264 -0.535388 -0.159965 -0.212446 0.142887 -0.067765 -0.219505 -0.078239 -0.871525 0.268074 -0.330869 0.322487 -0.866874 -0.384970 -0.444218 -0.702367 -0.043642 1.367399 0.008197 0.892121 0.242175 -0.333294 -0.625881 -0.622331 -1.047899 0.233826 -0.571439 0.436609 0.016206 0.054217 -0.254585 -0.114490 -0.511533 0.145392 -0.460159 0.025038 -0.371822 0.669512 -0.512241 -0.075002 -0.869413 -0.022228 0.848224 0.064897 -0.093330 -0.335457 -0.725077 -0.461079 -0.671338 0.404046 -0.133958 0.235531 -0.163254 0.104583 -0.596204 0.235049 -0.349174 0.213961 -0.193314 -0.624520 -0.639503 0.045182 -0.208235 -0.071447 -0.047229 -0.462512 0.171087 0.016559 0.434441 0.071315 0.189598 -0.152724 -1.156630 -1.037184 -0.354068 0.245911 0.691968 0.406987 0.330901 -0.344804 -0.222440 -0.752553 0.558686 -1.154895 -0.092146 0.256208 -0.233111 0.819658 -0.344943 -0.239220 -0.840733 0.315838 -0.004198 -0.860184 0.935117 0.451326 -0.695906 -0.475868 -0.636843 0.125267 0.472851 1.135150 -0.363133 -0.093216 0.449075 -0.041462 -0.212051 -0.486689 0.521446 -0.195625 0.840528 -0.738203 -0.551652 0.142621 0.839844 -0.254538 0.088810 0.038264 0.270082 -0.043143 0.814185 0.244148 0.029006 -0.569667 -1.297423 0.161289 0.287784 0.076093 0.395877 -0.612854 -0.464130 0.138339 0.103855 0.834659 0.224637 0.490106 0.512826 -0.607222 -0.687061 0.307494 0.052134 0.249177 -0.557164 0.464514 -0.471840 -0.163467 -0.049427 0.243052 0.050085 -0.340857 -0.623900 -0.108077 0.514945 0.332507 -0.237650 0.676648 0.148343 -0.334168 0.177852 -0.066387 0.533339 0.076504 -0.301834 -0.172980 -0.483612 -0.002378 -0.250772 1.043110 -0.095296 0.184986 0.269041 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.320528 0.065144 0.219541 0.157185 0.304598 -0.305961 0.131753 0.283069 -0.090789 -0.622883 -0.422062 -0.075501 -0.095917 -0.297101 0.220597 0.071167 0.156174 0.326099 -0.429129 0.272925 0.209120 0.250428 0.001288 -0.255423 0.127707 -0.113174 -0.509290 0.085622 0.043354 0.342171 -0.357119 -0.052633 0.247502 0.127027 0.137597 0.331302 0.228864 -0.119696 0.378752 0.043477 0.716574 0.035489 0.140605 0.339532 0.436802 0.341130 -0.312078 0.500791 -0.104674 -0.131282 0.296256 -0.609657 -0.206838 0.160274 -0.400485 0.403700 0.496327 0.266554 -0.296846 0.281907 -0.058696 0.108554 0.089172 -0.426704 0.333049 0.462103 -0.104264 0.148610 0.755252 -0.107379 -0.102756 0.187617 0.473740 0.063058 0.001070 -0.192282 0.161478 -0.822267 -0.118649 -0.546635 0.199849 -0.191477 0.874257 -0.364499 0.231132 0.585174 0.059079 0.260283 -0.108315 -0.172962 -0.322194 0.232448 -0.119742 0.417345 -0.086896 0.125879 -0.221314 0.059620 0.095642 0.290043 -0.139023 -0.088561 -0.730654 -0.977048 -0.435470 -0.033431 -0.108096 -0.247232 -0.622625 -0.049984 0.525672 0.419758 -0.587474 -0.088354 0.231950 0.173353 -0.392977 0.179515 -0.523653 -0.195546 -0.131697 0.127596 -0.202919 -0.150196 -0.189704 -0.613576 -0.146810 -0.013781 0.217707 -0.283517 -0.195569 -0.147947 -0.191460 -0.058408 -0.121995 -0.094712 -0.034792 -0.389922 0.198526 -0.239170 0.176971 -0.502025 -0.110081 -0.307634 -0.451743 0.000220 0.828500 0.113213 0.283571 0.276016 -0.202011 -0.397456 -0.356559 -0.415199 0.171247 -0.364839 0.468167 -0.008683 0.032610 -0.197122 -0.026996 -0.361676 -0.027221 -0.310713 0.041092 -0.332082 0.604607 -0.355992 -0.097122 -0.661092 0.038369 0.722395 -0.236119 -0.244178 -0.261174 0.153761 -0.248564 -0.456682 0.247788 -0.084457 0.236509 -0.121809 0.274211 -0.338580 0.229787 -0.222487 0.055646 -0.102833 -0.384026 -0.387890 -0.025251 -0.125421 -0.183650 -0.039716 -0.221895 0.137428 0.131363 0.281675 0.040215 0.064652 -0.077672 -0.638779 -0.671383 -0.341931 0.142987 0.205731 0.370735 0.178969 -0.374033 -0.127182 -0.384258 0.448092 -0.486715 -0.085324 0.057028 -0.114495 0.479330 -0.189496 -0.137555 -0.508120 0.146944 -0.037971 -0.759773 0.456678 0.160014 -0.454075 -0.298404 -0.664430 0.167888 0.272359 0.718599 -0.091822 0.111209 0.236028 -0.124934 -0.121410 -0.427311 0.371748 -0.127767 0.546347 -0.447127 -0.309572 0.158477 0.514122 -0.158466 0.217533 0.113328 0.374862 0.105835 0.469955 0.125182 -0.126534 -0.275827 -0.642514 0.050527 0.451520 0.215522 0.200779 -0.277799 -0.305639 -0.032353 0.160048 0.512496 0.365557 0.397563 0.303615 -0.215170 -0.385668 0.269436 0.191330 0.161955 -0.458734 0.187627 -0.254003 -0.141720 0.061845 0.219460 0.263231 -0.323252 -0.735919 -0.135303 0.406608 0.263485 -0.163615 0.404360 0.098167 -0.260325 0.182876 -0.054846 0.475385 0.030687 -0.008560 -0.158647 -0.305338 -0.091594 -0.194449 0.697288 -0.086439 0.082845 0.210570 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 1.402161 0.654048 0.472796 1.268315 0.120697 -2.537921 0.739334 2.120088 -1.331508 -2.270479 -1.323770 0.026574 -0.114782 -1.404591 0.635663 -0.087599 -0.785822 0.568316 -4.925450 1.814579 1.222439 0.967316 -0.418817 -2.292889 0.427894 -0.057410 -1.249229 1.687252 -0.417093 1.680022 -1.348074 -0.541245 0.867797 0.863354 1.300767 1.378606 0.134068 0.046676 1.191658 0.798542 2.416398 2.306778 -1.652754 0.213961 1.790032 1.681358 0.245335 -0.626124 -3.186733 -0.513670 -0.632911 -0.185331 -1.509226 -0.403895 -0.829314 0.575911 3.139482 2.211947 -0.858451 1.538755 -1.587506 -0.321728 0.832921 -0.001497 2.357685 0.941532 0.744649 0.669317 3.086775 -0.773948 -0.219647 0.321078 1.940372 -1.422240 -0.236945 -0.193189 -1.574730 -4.856311 0.335416 -5.421303 -1.130861 0.806304 2.133983 -1.479529 1.522671 1.637986 0.826700 1.175354 -2.269731 -0.921603 -1.032162 0.072481 -1.627102 4.711355 -0.257594 0.558939 0.519895 1.642593 2.042762 1.688954 -0.650803 -0.791554 -1.359951 -4.290474 -0.185222 0.249130 -1.069321 -0.610734 -1.772444 -1.211933 3.009190 2.305843 -2.536307 -0.324720 1.489864 0.634148 -0.727762 -1.975565 -1.624096 1.312813 -1.584088 -0.076338 1.227195 -1.428545 -0.512963 -0.018892 0.341350 0.525527 0.731695 0.275359 -2.837796 -0.237483 0.595018 -1.594221 -0.503678 -0.215127 -0.867262 -1.228452 0.559130 -2.492968 1.889959 -2.429705 1.687458 -0.667113 -1.667896 0.694979 -0.470956 1.508448 -1.588070 0.045229 -0.127159 0.035158 -1.638912 -3.415367 1.627098 0.573731 1.189964 -1.675952 -0.135026 -0.718964 -0.457151 -1.116214 1.148676 -1.259520 -0.069747 -1.263973 4.325288 0.269861 -0.713147 -0.689917 0.133277 2.130862 0.708036 0.181825 -1.405949 -0.541165 -2.088898 -1.670982 1.411232 0.186846 -1.062171 -0.897429 0.409918 -2.216626 1.931149 -1.057890 1.896468 -0.376024 -0.584266 -1.626923 -0.584296 -0.232899 -0.249027 -0.990794 -0.546807 -0.536318 0.600078 -0.500420 -0.194325 0.030923 1.480024 -1.410609 -2.145399 0.098485 1.153657 1.456728 0.772948 0.937096 -1.637674 0.375654 -1.744567 2.519474 0.283861 -0.063575 -1.104608 -1.162746 3.336810 -0.354282 -1.327930 -1.209091 0.930050 0.191159 0.254571 3.783206 1.922950 -1.273777 -1.057049 -1.106399 0.101834 1.829931 2.874896 -1.625115 -1.031220 0.565706 -0.777726 -0.621616 -0.416826 1.511557 -1.073921 1.840897 -1.282473 -1.011930 0.381649 1.623897 0.175422 1.757960 -0.893748 -0.070977 -1.014597 1.922873 0.448079 -0.361137 -1.526899 -1.471997 0.849305 -1.237294 0.668264 -0.867234 -0.007300 -2.393302 -0.431247 1.475073 2.145282 3.284757 -2.165607 1.085179 -1.924161 -1.882902 -0.991526 1.370241 0.097863 -1.695568 0.487478 -0.760251 0.438185 1.050213 0.503271 1.342183 -1.254220 -2.278237 -1.046252 0.861800 0.901815 -2.307867 2.104093 0.052583 -0.989089 -0.439472 0.000000 0.669055 0.398394 0.515598 -1.044458 -1.712962 0.925900 -0.503006 2.383445 0.700587 0.269202 1.526761 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 1.244748 0.648060 0.586336 0.852435 0.013535 -2.774914 1.231292 2.343165 -1.237929 -2.061325 -0.935557 -1.094150 0.080275 -1.992061 0.408826 -0.052417 -1.143795 1.096876 -4.737330 1.726158 1.659454 1.357758 -0.356073 -2.583886 0.240333 -0.496781 -2.209553 1.940687 -0.735340 1.801847 -0.877382 -0.973786 1.080928 0.722858 0.616813 2.077704 0.565320 0.275174 2.116352 1.758941 2.160934 2.456191 -2.068046 -0.385426 1.823234 1.789050 0.165850 -1.022181 -4.964451 -0.653445 -0.855335 -0.464091 -1.635011 -0.874181 -0.481576 0.396321 3.815010 2.967378 -0.824940 2.018759 -2.098845 -0.471616 1.006035 0.344871 2.014171 1.294057 0.396153 0.559871 3.606407 -0.641848 -0.195838 0.265726 1.280531 -2.198263 0.113990 0.195477 -1.646226 -5.647357 0.488957 -5.594214 -1.329927 1.268931 2.007892 -1.543330 1.554179 2.344489 1.674243 1.281413 -2.264785 -1.481091 -0.775717 0.200235 -1.814544 5.809049 -0.161617 0.878205 0.176901 1.932542 2.356101 1.463032 -0.568777 -0.709021 -2.116638 -4.457319 -0.292092 -0.329036 -1.430055 -0.606789 -2.086338 -1.730840 4.031435 1.869106 -3.021661 0.372327 1.910957 1.026007 -0.331148 -2.383015 -1.899886 1.784853 -1.843878 -0.675112 0.878369 -1.640009 -0.829479 0.079072 0.721872 0.528552 -0.118222 -0.208296 -3.493711 0.263559 0.677214 -2.202648 -0.120667 0.244018 -0.842001 -1.710975 0.329401 -3.406528 1.947907 -2.798146 2.152592 -0.198256 -2.350781 0.501634 -0.981616 1.261712 -2.370094 -0.530662 -0.587647 -0.068918 -1.670377 -3.987708 1.364244 0.412835 1.583555 -2.084327 -0.341809 -1.485234 -0.433783 -0.784417 0.969156 -0.893967 0.588051 -0.820601 5.756911 0.350531 -0.823072 -0.520908 -0.258536 2.367625 1.348109 0.027091 -1.527403 0.585629 -2.063554 -1.708905 1.428524 0.415883 -1.350623 -1.405552 -0.017001 -2.774735 2.385928 -0.715046 2.160192 -0.429321 -0.154811 -1.687120 -0.374080 -0.164744 -0.516798 -1.074907 -0.529983 -0.807914 0.347897 -1.476756 -0.111634 -0.543667 1.485689 -1.205126 -1.995822 0.249229 1.233174 1.363235 1.055772 1.335147 -0.927430 0.841499 -1.853414 2.504021 0.925686 -0.206348 -1.006415 -1.312576 3.826875 -0.220676 -1.632256 -1.632401 0.862729 -0.377019 1.976053 4.389648 1.925104 -1.242523 -1.108231 -0.704942 -0.326753 2.029026 2.508681 -1.614576 -1.297019 0.778741 -1.220796 -0.631183 -0.163791 1.227013 -1.386852 2.565031 -1.171989 -0.630443 0.376548 2.222848 -0.364414 2.193241 -1.246300 -0.389557 -1.302048 1.517983 0.283641 -0.585516 -1.385301 -0.683363 0.951748 -2.923370 0.629290 -1.639531 0.403379 -2.157644 0.034160 2.407019 2.229813 4.486615 -2.627820 0.991514 -2.127267 -2.202295 -0.887508 1.589412 0.497108 -1.920016 0.132851 -0.502649 0.768110 1.118025 0.675788 1.901698 -2.067064 -2.322745 -0.960544 1.119529 0.617207 -3.244742 2.355070 -0.563655 -0.428604 -0.548069 -0.227011 1.045451 0.764636 1.637282 -0.891862 -1.862038 1.217796 -0.471481 3.154698 0.421323 0.131041 2.378510 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 1.549478 -0.310480 -0.535269 3.134180 0.448810 -0.861754 0.149504 0.784441 -0.064188 -4.927947 -2.856734 2.955032 0.179894 0.392764 0.641125 0.639396 0.329072 0.576458 -4.911857 1.335565 1.526342 0.819469 0.192064 -0.655734 0.682103 -1.185142 1.690260 0.635800 0.934026 2.814982 -1.760190 1.041813 2.356325 -0.095990 1.505214 2.170220 -0.022728 0.261168 -1.188401 -0.831871 3.996606 1.792803 0.216597 2.085734 0.731647 2.884194 0.552509 2.492961 1.835904 -2.101699 0.827762 0.680757 -1.612849 -0.470780 -2.151821 1.747616 1.873015 1.124659 -1.712357 0.951866 -0.164905 -0.126662 0.683929 -0.541303 2.662745 1.001878 1.694753 1.838407 3.181629 -1.885100 -0.550933 1.575742 1.722691 0.774904 2.426987 -1.929078 -2.871750 -0.912842 -0.629074 -3.584864 -1.301894 -0.316522 4.085361 -2.900862 0.413741 0.703666 -0.202139 2.503194 -1.008687 -0.108385 -2.401547 0.012596 -0.741007 3.492384 0.558246 0.167508 0.034595 0.954482 0.851304 2.166188 0.263217 -2.200178 -0.825137 -4.631149 -0.913223 -1.390882 1.348484 1.260182 -3.118784 -0.406959 -0.681542 3.470323 -3.949544 -0.270292 1.908350 1.238563 1.392638 -0.928000 -1.118214 0.127521 0.547318 0.194827 1.666576 -1.724653 -0.208945 -0.158532 0.302293 -0.064632 1.174303 0.074797 -2.053322 -2.069400 -0.369851 0.543371 -0.125072 0.171770 1.319138 -1.768173 1.923196 -1.144472 2.095133 -3.002477 -0.390421 -1.131773 -1.717794 -0.959283 3.126204 1.453415 2.577383 -0.914500 -1.034449 -1.141239 -3.175644 -3.806361 1.173719 0.160158 0.863048 1.326881 -0.248445 1.426243 -1.504459 -0.050686 0.908958 -1.319742 -0.543081 -0.197655 1.141243 -0.536944 -0.302914 -2.224053 -0.470638 0.020928 -0.092062 1.942166 -0.832441 -4.423181 -3.726623 -2.210864 2.400672 -1.116398 0.459742 -1.188466 -0.336378 -1.493132 0.150563 -2.694060 0.406902 -0.291956 -2.058826 -2.953343 0.069355 -0.788771 -0.138076 0.467511 -2.215963 -0.203461 1.649233 1.305792 0.854437 0.448354 0.272709 -3.305895 -2.117914 0.336898 -1.480217 2.373665 0.994765 -0.385042 -2.496970 -1.221326 -2.472316 1.855902 -2.175548 0.639072 -0.739080 -0.803521 2.691413 -1.506290 0.037312 -2.311866 0.935153 1.372509 -4.519916 3.108250 2.188599 -1.191291 -0.300434 0.128861 0.396118 1.757699 2.495334 -2.012001 -1.858567 0.531445 -1.082984 0.049182 -0.935501 1.865978 -1.587580 0.802417 -2.090237 -1.351190 1.203567 1.479206 0.206163 0.758457 1.273041 -0.105421 0.997089 2.598591 1.960619 0.136298 -2.753710 -5.573691 1.872492 0.782451 -0.191575 0.368791 -1.488204 -1.890592 0.850101 -0.493147 2.659634 0.514273 -0.328651 2.405891 -3.241005 -2.698334 -1.042411 -0.656239 0.316404 -0.480352 0.695498 -1.356001 0.748044 0.351578 -0.217331 -0.469971 -1.003033 -0.285948 0.404222 2.143077 1.143183 0.833100 2.836485 1.012537 -1.969268 -0.029056 0.221554 -0.256469 -0.802198 -2.776341 -1.059099 -0.503392 0.575363 -1.187294 1.041149 -0.636765 0.041149 0.378869 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = 2.531159 -0.553477 -0.958380 3.893030 0.444695 -1.111855 0.213381 1.381106 -0.229057 -6.670063 -4.413235 4.269087 0.291703 0.441625 1.097746 1.216728 0.357831 0.236322 -6.641118 1.903899 1.908360 0.626677 -0.125243 -0.466902 0.825958 -1.916679 1.761658 1.077319 0.938712 3.653947 -2.104720 1.585204 3.140743 -0.142203 1.930703 2.932389 -0.629323 -0.049405 -1.247776 -1.016660 5.353847 2.466674 0.150640 2.695879 1.047356 3.882662 0.101883 4.042889 2.077199 -2.707849 1.978195 0.373650 -2.642187 -0.392378 -2.961507 2.054077 2.339579 0.757412 -2.110064 1.306492 -0.735404 -0.214441 0.828203 -0.776895 4.039784 1.525654 2.891720 2.369807 4.100214 -2.478090 -0.826788 2.630005 2.238603 1.283232 2.588752 -2.512582 -3.424840 -0.910779 -0.406445 -4.773682 -2.157581 -0.901854 6.079072 -3.681108 -0.122993 0.713027 -0.352870 3.509465 -1.573620 0.248727 -3.156539 0.020550 -0.653918 4.199382 0.474488 0.401359 -0.087734 1.110720 1.078350 3.038769 -0.052018 -2.854339 -2.118805 -5.882998 -1.243091 -1.662109 1.798685 1.658506 -4.575408 -0.407341 -0.758681 4.674797 -4.980007 -0.416313 2.747035 1.604701 2.550266 0.534923 -2.252798 -0.176063 1.182854 0.707837 2.416103 -1.794637 -0.003050 -0.918100 1.041786 -0.091367 1.484599 0.162651 -3.817389 -2.786439 0.083485 0.467821 -0.016261 0.341779 1.892575 -2.116540 2.534173 -1.246616 2.806203 -4.738950 -0.714561 -1.954854 -2.351177 -1.082052 4.724310 3.341759 3.815676 -0.664129 -1.165828 -1.398007 -4.457255 -5.111669 1.016560 -0.039350 1.312750 1.220591 -0.199753 2.026550 -1.695340 0.210358 0.862524 -1.813865 -0.619965 -0.595966 1.839944 -0.410415 -0.479332 -2.811270 -0.836873 -0.273261 -0.451827 2.733875 -0.822291 -6.425944 -5.045733 -3.080247 3.123431 -1.413901 0.572349 -1.619197 -0.390698 -2.357588 -0.009045 -3.369580 0.455654 -0.197609 -3.193556 -3.858110 0.139214 -0.760781 -0.633254 0.324285 -2.815514 -0.541958 2.727056 1.989854 1.494284 0.921038 -0.177649 -4.178531 -3.059641 0.384517 -2.100766 3.962513 2.080501 -0.781147 -3.350037 -1.518795 -3.842061 2.955462 -3.345106 0.837218 -1.076548 -1.170719 3.629616 -2.165442 -0.159012 -3.109770 1.413610 1.581048 -7.198700 4.085869 3.273814 -1.703572 -0.611598 -0.244889 0.498597 2.538130 3.411404 -2.311171 -2.108990 0.478014 -0.947794 -0.001024 -0.919172 2.723818 -2.173524 0.965163 -2.825649 -1.955558 1.852281 2.030704 0.324511 0.991013 1.333196 0.405373 1.673700 3.260846 2.476778 -0.513622 -3.516383 -8.292750 2.437039 1.621273 -1.016552 0.913019 -2.349578 -2.800560 0.753806 -1.615053 3.663264 -0.092942 -0.418057 3.122063 -3.984590 -3.629759 -1.799596 -0.613772 -0.010250 -0.404806 1.307927 -1.462250 0.923526 0.789308 -0.417536 -0.545112 -1.833297 -0.988037 0.380385 3.075127 1.701020 1.148796 3.689847 1.421363 -2.379810 -0.563804 0.427453 -0.424823 -0.669508 -4.204208 -1.647448 -0.867850 0.687757 -1.502082 1.185355 -0.236071 0.191647 0.498507 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = 1.388905 -0.296917 0.384241 1.944105 0.367674 -0.700030 0.433840 1.316201 -0.027000 -4.040397 -2.601810 1.881817 -0.085668 0.207464 0.706343 0.255701 0.359396 0.558795 -4.783353 1.003304 1.433518 0.948812 0.633286 -0.749830 0.647835 -0.971719 0.542639 0.888121 0.692931 2.342388 -1.450182 0.434259 1.947793 0.233775 1.107412 2.007413 0.098897 -0.102139 -0.471399 -0.674524 3.394251 1.544714 -0.168886 1.749065 0.847031 2.444377 0.339736 1.574970 1.375343 -1.681499 0.684961 -0.785279 -1.756247 -0.468388 -1.687993 1.272280 1.828911 1.308643 -1.386595 1.132972 -0.038823 -0.149781 0.487158 -1.022057 2.018941 0.891752 1.202724 1.221631 2.640115 -1.708118 -0.579520 1.300834 1.453464 0.746215 1.011351 -1.776447 -1.592860 -2.369890 -0.206208 -3.741004 -1.355977 -0.474389 3.049444 -2.230863 0.738219 1.109677 -0.685723 1.806249 -0.722933 -0.300085 -2.016454 0.065314 -0.042488 2.539146 0.117186 -0.129709 0.441309 0.801275 0.991209 1.965826 0.350396 -1.573851 -1.574777 -3.993398 -0.398929 -0.939080 0.960313 0.787966 -2.314640 -0.392499 0.224368 2.554819 -3.083070 -0.417803 1.779391 1.191899 -0.023028 -0.813305 -0.996747 -0.080954 0.256460 0.339305 1.394593 -1.808996 -0.159984 -0.275153 0.192997 0.093810 0.992995 -0.045790 -1.606807 -1.961702 -0.039584 0.454078 -0.252704 0.004155 0.709928 -1.050963 1.490557 -1.286734 1.913173 -2.469202 0.106408 -0.861266 -0.870274 -0.700629 2.901167 1.276221 1.374649 -0.142527 -0.800468 -0.758361 -2.006900 -2.920366 1.184639 0.257295 1.381877 0.713633 -0.233471 0.962368 -0.989793 -0.355357 -0.095472 -1.019887 -0.253261 -0.350801 0.708614 -0.420372 -0.333841 -1.803439 0.153015 0.859352 -0.527089 1.073854 -0.923413 -2.615282 -2.537572 -2.099385 1.997215 -0.822887 0.182271 -0.790446 0.027569 -1.287622 0.493622 -2.058789 0.504869 -0.157574 -2.172432 -2.485549 0.157249 -0.760890 0.036614 0.614822 -1.591004 -0.324219 0.895967 1.408107 0.658349 0.349327 0.324075 -2.721079 -2.001315 -0.321331 -0.945236 2.110261 0.665428 -0.198546 -2.331103 -0.856717 -1.679734 2.070386 -1.508830 0.443708 -0.992667 -0.794758 2.407493 -0.897011 0.132397 -2.095788 0.967729 1.386023 -3.776805 2.578397 1.836714 -1.094724 -0.681465 -0.498982 0.090649 1.713906 2.322921 -1.463036 -1.517040 0.598595 -0.971413 -0.008031 -1.150772 1.645886 -0.970220 0.936630 -1.899068 -1.307950 0.971823 1.299243 0.158775 1.238960 1.318662 0.786468 0.500886 2.340699 1.247575 -0.171805 -2.119996 -4.371712 1.714170 2.242781 0.275878 0.500513 -1.538728 -1.821233 0.571977 0.029941 2.191324 1.419539 -0.068006 1.982938 -2.090321 -2.168463 -0.794974 -0.284677 0.373357 -0.505250 0.554669 -0.842628 0.619298 0.488475 -0.266070 0.249651 -0.883183 -1.228841 0.103098 1.891365 1.239767 0.466076 2.409410 0.544897 -1.759778 0.075098 0.074979 0.129761 -0.393602 -1.483095 -0.902405 -0.592257 0.461757 -0.935725 1.074263 -0.226528 -0.082420 0.278063 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.746963 0.026718 -0.131020 1.384574 0.139454 -0.152445 0.123053 0.517917 -0.235490 -2.554315 -1.806039 0.793799 0.102371 0.305086 0.577960 0.460800 0.169014 0.229549 -2.720693 0.479871 0.976473 0.289782 0.407086 -0.132036 0.342631 -0.751491 0.198472 0.307841 0.335875 1.446802 -0.795572 0.773369 1.233779 0.110808 0.585793 1.009892 -0.417695 -0.104403 -0.278688 -0.344743 1.908975 0.783761 -0.002234 0.744433 0.142301 1.459681 -0.043600 1.038553 0.430635 -1.025907 0.649684 -0.411896 -0.896770 0.063980 -0.998330 0.687361 0.945114 0.637433 -0.577400 0.500117 -0.483382 0.048036 0.288563 -0.702685 1.474733 0.558972 1.053072 0.885169 1.370879 -0.984055 -0.121590 0.741054 0.437358 0.211780 0.546640 -0.864323 -0.832124 -1.040721 -0.190752 -2.193418 -0.706030 -0.215612 2.290891 -1.284266 -0.009736 0.404848 -0.196374 1.359924 -0.549649 0.201559 -1.213823 0.077123 -0.221430 1.234578 0.240565 -0.062229 -0.040353 0.415329 0.393358 0.937067 -0.053074 -0.848975 -1.037698 -2.269409 -0.480563 -0.518702 0.843125 0.681857 -1.686611 -0.004013 0.056123 1.633222 -1.928702 -0.148499 0.914232 0.876622 0.206916 0.116515 -0.986733 -0.244821 0.334075 0.462035 0.976655 -0.823541 0.213301 -0.640774 0.187119 -0.017843 0.671191 -0.006243 -1.071884 -1.154980 -0.048545 -0.103211 0.034318 0.309985 0.848121 -0.376158 0.988537 -0.599787 1.106771 -1.695746 0.030605 -0.696403 -0.897509 -0.443166 1.834849 1.482242 0.904236 -0.067637 -0.507154 -0.415391 -1.562050 -1.547357 0.249611 0.150737 0.747238 0.514563 -0.147492 0.793733 -0.669216 0.233573 0.152993 -0.639309 -0.270713 -0.178589 0.746279 -0.078117 -0.299043 -1.182018 -0.158614 0.102981 -0.626436 0.955770 -0.280422 -1.489508 -1.896946 -1.219319 1.213400 -0.596297 0.254839 -0.766166 0.117680 -0.852615 0.170056 -1.215454 -0.023047 0.184793 -1.298511 -1.509344 0.077408 -0.287158 -0.468806 0.310705 -0.979977 -0.174507 1.232441 0.776918 0.591122 0.268104 -0.047262 -1.330146 -1.104383 -0.062209 -0.901620 1.187058 0.823876 -0.385082 -1.468390 -0.638879 -1.174645 1.275158 -0.607603 0.337583 -0.679414 -0.357202 1.122565 -0.828075 0.078649 -1.111096 0.405202 0.541628 -2.995265 1.327212 1.104754 -0.604212 -0.249467 -0.500044 0.364099 0.761797 1.208393 -0.700315 -0.582728 0.079581 -0.397339 0.025455 -0.504436 0.960278 -0.818773 0.058420 -1.010896 -0.670050 0.829409 0.695656 0.062778 0.565346 0.839828 0.476245 0.832985 1.110152 0.894204 -0.485542 -1.146179 -2.893783 0.821144 1.123935 -0.168648 0.249238 -0.773854 -0.979553 0.248024 -0.455144 1.346167 0.600066 -0.114987 1.213426 -1.130964 -1.239731 -0.684963 -0.072310 0.015610 -0.290250 0.243751 -0.529630 0.326619 0.418090 -0.139518 0.084719 -0.911690 -0.737769 0.107931 1.386340 0.610020 0.458664 1.379851 0.604154 -0.878847 -0.210201 0.179572 -0.183300 -0.191141 -1.180035 -0.590012 -0.116474 0.185151 -0.628069 0.357150 -0.158811 -0.079107 0.228552 -PE-benchmarks/m-coloring-problem.cpp__main = 0.339283 0.026596 0.356037 0.299870 0.258985 -0.328068 0.336355 0.478762 0.003963 -0.919879 -0.530802 -0.000345 -0.082885 -0.233612 0.174216 -0.085212 0.080309 0.544756 -0.743779 0.191898 0.354356 0.462182 0.182386 -0.443017 0.101512 -0.090454 -0.566819 0.267091 0.153077 0.623486 -0.343234 -0.233328 0.458697 0.140048 -0.067640 0.605459 0.612260 0.023113 0.250037 -0.027491 0.857651 0.190170 -0.045822 0.513692 0.362143 0.576067 -0.143030 0.581705 -0.164421 -0.314177 0.216319 -0.881847 -0.408547 -0.130502 -0.374935 0.491291 0.860141 0.720146 -0.319936 0.520581 -0.031638 0.036565 0.163214 -0.544655 0.214209 0.677389 -0.180342 0.232642 1.017998 -0.459471 -0.215401 0.265069 0.481661 0.066795 0.063324 -0.380245 -0.033747 -1.309468 -0.111705 -0.915566 -0.098403 -0.148934 1.045086 -0.612014 0.393010 0.855291 -0.000563 0.275870 -0.173279 -0.203819 -0.452437 0.188706 -0.069287 0.855051 0.011800 0.036384 -0.145438 0.132347 0.357921 0.467635 0.030259 -0.149812 -0.924636 -1.284022 -0.362757 -0.145777 -0.122713 -0.096575 -0.652410 -0.291105 0.762769 0.471615 -0.912806 -0.137947 0.517756 0.424737 -0.346140 -0.014757 -0.526325 0.045927 -0.097738 -0.129153 0.040417 -0.543641 -0.235171 -0.303532 -0.216996 -0.038790 0.117492 -0.259292 -0.396401 -0.345201 -0.224095 -0.033762 -0.033562 -0.167905 -0.102561 -0.478784 0.282842 -0.524103 0.385692 -0.680956 -0.010297 -0.046495 -0.572086 -0.109465 1.092658 -0.028652 0.303155 0.114577 -0.399697 -0.519325 -0.293720 -0.784036 0.405972 -0.106379 0.689494 0.038313 -0.054829 -0.176956 -0.171698 -0.373604 -0.088956 -0.255010 0.096933 -0.084716 0.779894 -0.432091 -0.114678 -0.843900 0.177075 0.833459 -0.123316 -0.170304 -0.396948 0.043547 -0.336224 -0.600820 0.475523 -0.115239 0.091752 -0.144292 0.131196 -0.484779 0.310841 -0.338460 0.234387 0.016848 -0.657458 -0.686656 0.148403 -0.216548 -0.166599 0.253266 -0.356983 0.013034 -0.022091 0.352623 0.042977 0.010190 0.136485 -0.896693 -0.816660 -0.459441 0.049289 0.398703 0.307564 0.314405 -0.468805 -0.143742 -0.431717 0.627873 -0.521548 -0.054923 -0.190233 -0.043623 0.770599 -0.195606 -0.126313 -0.859028 0.262354 0.273676 -0.658250 0.766407 0.325943 -0.389915 -0.378358 -0.488395 -0.047875 0.513924 0.891355 -0.407105 -0.330342 0.448864 -0.336451 -0.107049 -0.557619 0.402202 -0.175092 0.623350 -0.528854 -0.317756 0.088302 0.649153 -0.178679 0.465682 0.383830 0.399697 -0.049039 0.677847 0.208524 -0.206264 -0.398422 -0.811673 0.401499 0.555417 0.274324 0.136556 -0.500458 -0.380340 0.301051 0.418590 0.594626 0.786175 0.286870 0.509480 -0.419240 -0.551048 0.292755 0.141156 0.393402 -0.540298 0.201269 -0.271976 0.077447 0.159991 0.029276 0.349444 -0.348710 -0.784045 -0.154374 0.590268 0.227514 -0.155858 0.703515 -0.043655 -0.441823 0.286133 -0.160124 0.510504 -0.057250 0.097517 -0.044877 -0.271274 0.082084 -0.259135 0.852949 -0.144790 -0.221366 0.375111 -PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 3.341685 11.525388 -19.972913 39.418606 -8.240704 -6.517151 -2.091580 3.543374 -14.377634 -51.921757 -26.480116 9.087387 11.579582 12.461484 9.046602 12.496031 -9.674270 4.274700 -48.021465 9.616813 28.228231 12.685856 3.974638 -0.949752 5.773137 -9.157665 10.317508 -2.620660 8.668638 32.964702 -11.153448 24.795668 27.273927 -12.483762 3.500941 16.050802 -7.465893 10.760270 -11.248085 5.779914 29.051938 12.072448 -0.295332 7.981337 -8.528249 28.540386 0.191925 9.584112 -23.437151 -27.636697 8.378447 27.393394 -6.675433 -8.835634 -6.294167 12.406466 26.416856 27.013779 -7.433316 4.936683 -11.424091 -6.518503 9.950646 5.597236 28.564227 18.367878 25.584266 28.660553 27.296381 -13.920976 3.466258 6.842661 -11.911771 -12.155009 24.989824 -12.988447 -29.916680 0.285268 -13.447108 -41.794954 -22.322043 7.994629 44.256890 -31.244235 -1.404103 -3.252290 11.476119 32.166553 -13.443894 6.937919 -16.718797 -10.072936 -19.648384 36.078971 5.737657 0.716517 -6.362375 13.033894 9.674299 11.462811 -1.638076 -19.670964 -5.226397 -23.211351 -17.369953 -11.421630 17.381523 32.123246 -41.162525 -9.583048 -14.721454 21.771684 -50.998333 5.357788 15.252501 27.906867 36.361799 3.056820 -30.674475 7.839942 6.423885 -4.793841 22.990629 -10.329809 8.977955 -7.389564 -0.505393 -1.092670 1.765389 5.937322 -37.697336 -21.172598 -8.173331 -18.089034 7.876191 16.150681 27.103591 -12.846780 20.173818 -17.238139 22.527952 -41.553320 -6.945827 -3.797719 -34.522412 -10.974263 2.766924 23.875086 10.653208 -26.211737 -27.531435 -6.023323 -43.059524 -26.969525 -1.041790 10.090852 3.879125 20.216300 -7.900894 19.793942 -18.586900 16.113594 23.441609 -4.479777 -6.132371 1.248525 33.217743 5.297973 -2.737329 -18.370548 -15.734706 -24.290034 4.816284 37.764815 -1.237015 -21.315586 -59.834899 -12.796988 26.528384 -9.402824 0.366485 -24.659943 -8.313457 -29.956829 0.198367 -30.966099 -3.669526 2.867406 -10.229856 -29.928823 8.051427 -0.272822 -20.449856 1.219804 -20.573146 -9.466974 32.016882 1.271741 14.849771 -7.218788 1.328712 -20.779615 -15.811912 17.066362 -26.853473 17.654369 14.117667 -7.029476 -20.689297 -8.530449 -27.852290 18.546259 7.112257 10.074450 -8.614313 5.787543 24.861427 -23.489499 -2.747051 -25.276905 0.551686 7.202145 -40.530992 32.491018 11.310720 -1.366533 10.229071 14.953121 7.732861 12.467930 0.772542 -16.505895 -24.155145 -1.033815 -5.563817 3.587429 -10.848625 11.372552 -30.340808 -4.079937 -8.743384 -2.014674 17.847146 11.883103 -0.018070 7.515015 10.090773 -21.773414 10.798514 11.269581 31.114368 -10.152483 -12.802491 -28.519679 17.533602 -34.259735 -9.808718 -20.602951 -4.772260 -11.955251 14.727056 -1.219457 23.951978 6.070824 -18.401298 22.319803 -42.526855 -27.359742 -21.422045 2.716523 1.290099 0.882373 -11.114798 -9.182021 18.200100 20.513848 -5.351280 -2.167919 -29.675971 6.426990 3.134725 29.275887 -7.150021 8.989610 30.103224 13.118194 -9.636466 -6.811827 10.685881 -11.937080 -14.387882 -26.333649 -8.437172 5.812165 9.074866 -15.090147 1.808023 -16.657021 -11.773098 13.553802 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.570825 0.277876 0.576972 0.429972 0.194481 -0.749307 0.555142 1.093977 -0.247725 -1.552149 -0.966619 -0.377071 -0.129500 -0.458791 0.495663 -0.230087 -0.121053 0.774373 -2.032049 0.476470 0.955480 0.877315 0.442760 -0.818869 0.320777 -0.094367 -1.493795 0.378478 0.190627 1.120174 -0.643822 -0.317965 0.760803 0.292134 -0.033566 0.941030 0.535061 0.150766 0.899419 0.178208 1.291184 0.624388 -0.289128 0.536025 0.603895 0.917813 -0.594398 0.731303 -0.900065 -0.664284 0.362141 -1.604896 -0.686426 0.038685 -0.263299 0.726987 1.702868 1.466812 -0.395445 0.873383 -0.475378 0.032947 0.254770 -0.946679 0.478613 1.263577 -0.329526 0.320108 1.640027 -0.529129 -0.196610 0.185871 0.476019 -0.432805 -0.226539 -0.474375 -0.061785 -2.636407 -0.048821 -2.088953 -0.469450 -0.031794 1.667656 -1.070827 0.906195 1.408132 0.285552 0.557535 -0.453101 -0.323593 -0.589134 0.252313 -0.375586 1.727916 -0.083745 0.140412 -0.130831 0.333023 0.799787 0.726747 -0.175947 -0.047732 -1.733514 -2.154751 -0.416689 -0.062436 -0.097157 0.038015 -1.186849 -0.507660 1.605013 0.670202 -1.615794 -0.116545 0.849457 0.856209 -0.912305 0.212263 -1.104229 0.140363 -0.442164 -0.262430 0.218466 -0.979720 -0.363479 -0.747706 -0.472340 0.035472 0.181821 -0.434096 -0.871283 -0.459222 -0.296050 -0.566330 -0.085932 -0.039805 -0.114163 -0.563844 0.488254 -1.124959 0.662536 -1.162082 0.236594 -0.081302 -1.035568 -0.065218 1.407975 0.336211 -0.202762 0.127172 -0.635343 -0.772935 -0.599718 -1.155694 0.593981 -0.067843 1.410950 -0.200113 -0.104727 -0.348888 -0.287010 -0.476539 -0.324536 -0.381709 0.252998 -0.295432 1.867105 -0.544571 -0.236267 -1.273265 0.172734 1.290508 -0.556765 -0.295453 -0.601691 0.611980 -0.814636 -1.002297 0.832494 -0.068252 0.032647 -0.509968 0.504210 -0.876379 0.586212 -0.554380 0.413416 0.085597 -0.846662 -1.079425 0.113946 -0.246118 -0.279434 0.166587 -0.431548 -0.215670 0.327807 0.544984 0.165269 -0.025169 0.373652 -1.223721 -1.277268 -0.657492 0.023581 0.329965 0.592551 0.392233 -0.678097 -0.110267 -0.759564 1.173350 -0.317079 -0.131638 -0.643981 -0.134957 1.494849 -0.188459 -0.464179 -1.438831 0.268426 0.327299 -0.712258 1.296165 0.266070 -0.514808 -0.508984 -0.943870 -0.048968 1.002560 1.349728 -0.525189 -0.531041 0.505342 -0.788385 -0.148054 -0.748950 0.734543 -0.598654 1.067275 -0.627876 -0.331613 0.272145 1.021939 -0.225833 1.075858 0.504685 0.632426 0.260786 0.861852 0.348439 -0.714411 -0.576562 -1.170797 0.672894 0.803858 0.539567 -0.345221 -0.646216 -0.867827 0.330103 1.128022 0.979184 1.933098 0.276389 0.718923 -0.693841 -0.910919 0.269325 0.644747 0.478980 -0.963637 -0.161820 -0.232073 0.336367 0.716103 0.115536 1.099723 -0.949443 -1.784305 -0.435419 0.965527 0.269262 -0.485949 1.174639 0.011491 -0.705303 0.351884 -0.237216 0.840035 -0.253413 0.549954 -0.126532 -0.527639 0.097336 -0.425022 1.426873 -0.073492 -0.476282 0.801030 -PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 3.412487 -1.108487 -0.256373 3.573009 0.553249 -1.247805 0.566850 2.468831 -0.091283 -7.306433 -4.985952 2.560638 0.119609 0.111159 1.688551 1.345409 0.625746 0.078981 -8.181952 2.092238 2.428113 1.001477 0.289285 -0.537907 1.177067 -1.906776 -0.360452 0.882674 0.807646 3.964720 -2.483456 1.365584 3.233023 -0.166807 1.704122 3.006834 -0.791003 -0.303998 0.166784 -0.519818 5.866044 2.669708 -0.288209 2.567868 1.478105 4.117105 -1.108219 5.981021 1.349440 -2.695520 3.380606 -2.625797 -3.124579 0.514312 -2.923028 2.319814 4.173326 1.940734 -1.958051 1.766503 -1.663787 0.237658 0.776207 -1.484800 4.321591 2.861221 2.823804 2.193221 4.817008 -2.412093 -0.628602 2.446568 2.473623 1.124135 1.495673 -3.718187 -2.308074 -4.003269 -0.025693 -5.740174 -1.730879 -1.480585 7.203488 -4.017156 0.485240 1.802594 -0.290009 3.573790 -1.915283 0.538776 -3.267730 0.585656 -0.550918 4.904512 -0.621013 0.592748 -0.315611 1.199673 1.259680 2.964676 -0.011418 -2.347424 -4.358010 -6.865499 -1.840345 -1.249981 1.556983 1.359037 -5.509286 -0.025559 0.762709 3.261919 -5.460517 -0.362637 2.723901 2.323014 2.254455 2.839249 -3.345888 -0.984550 0.692362 1.305575 2.168935 -2.210236 0.044708 -3.355459 0.769822 0.554224 1.605181 -0.487921 -4.275321 -2.370406 -0.202935 -0.197396 -0.191467 0.500736 1.718271 -2.329875 2.772876 -1.913266 2.930742 -5.813850 -1.201022 -2.507223 -2.929286 -0.717827 6.955431 4.016662 3.297055 0.532064 -1.726849 -1.963106 -4.642056 -4.628780 0.308380 -0.539728 2.610394 0.696184 -0.055237 1.458716 -1.375850 -0.275794 -0.453832 -2.005338 -0.343234 -1.451459 2.909211 -0.893481 -0.686757 -3.676657 -0.492375 1.440337 -1.896627 2.132165 -0.952406 -5.484525 -5.275227 -3.617321 3.340278 -1.326768 1.082880 -1.835344 0.794506 -3.185079 0.539420 -3.190188 0.386805 0.092032 -4.128638 -4.228832 0.437000 -0.753453 -0.518897 0.336997 -2.626864 -0.620965 2.845790 3.877781 1.750552 1.217501 -0.325831 -5.627454 -4.481942 -0.847749 -1.920333 4.939152 2.133326 -1.029349 -2.846487 -1.521950 -4.316075 3.894356 -3.469198 0.467053 -1.585352 -1.058276 3.949954 -2.069778 -0.215193 -4.635225 1.374351 1.291132 -7.673448 5.056202 3.145424 -2.298359 -1.130353 -2.311779 1.036617 2.631436 4.166559 -1.865332 -1.799247 0.536707 -1.114500 -0.251204 -1.772726 3.213910 -2.409351 1.386298 -3.157020 -2.089677 2.131387 2.574671 -0.063808 1.383033 1.754453 1.333464 1.769049 3.614979 2.254365 -1.592051 -3.384078 -9.574144 2.269018 4.030060 -0.719841 0.747022 -3.339816 -3.314687 0.357573 -0.191206 4.113727 2.561569 1.002214 3.279741 -3.734991 -3.725603 -1.434936 0.237201 -0.037597 -1.218370 0.653458 -1.580640 0.682306 1.522676 0.064626 0.640460 -2.824779 -3.293996 -0.159689 3.818967 1.772790 0.506024 3.955227 1.640857 -2.373019 -0.432319 0.575452 0.311271 -0.378119 -2.410061 -1.358988 -1.231837 0.306362 -1.807899 2.125595 0.322583 0.069444 0.693452 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.457301 -0.079259 0.423677 0.357727 0.346406 -0.418226 0.362499 0.583241 0.113497 -1.105644 -0.576903 0.086319 -0.112559 -0.268447 0.188450 -0.088939 0.139938 0.650048 -0.887022 0.285754 0.387758 0.602984 0.204857 -0.549152 0.161745 -0.074939 -0.554345 0.247820 0.247273 0.727250 -0.477816 -0.327862 0.544027 0.105622 -0.027707 0.718849 0.809483 0.030404 0.241447 -0.062547 1.076072 0.253736 -0.023199 0.694794 0.481303 0.677960 -0.116673 0.823841 0.000499 -0.393426 0.252585 -1.063262 -0.490871 -0.164343 -0.484277 0.668787 1.037714 0.858947 -0.464643 0.592409 0.101957 0.046860 0.196081 -0.618781 0.223444 0.779881 -0.236326 0.273895 1.253755 -0.519471 -0.274432 0.321342 0.691570 0.178830 0.230513 -0.587470 -0.086438 -1.541326 -0.142975 -0.984820 -0.052217 -0.228864 1.176735 -0.794071 0.570770 1.048651 -0.045272 0.319467 -0.164223 -0.282874 -0.553628 0.232748 -0.041990 1.060138 -0.042892 0.041853 -0.155913 0.177543 0.388735 0.568390 0.149844 -0.230124 -1.039099 -1.525571 -0.437834 -0.203772 -0.155198 -0.113694 -0.773271 -0.328754 0.793410 0.521670 -1.096105 -0.140872 0.606727 0.457786 -0.304024 -0.094312 -0.509284 0.046702 -0.142960 -0.168316 -0.037675 -0.697519 -0.344432 -0.333708 -0.260928 -0.001989 0.150069 -0.330368 -0.381513 -0.396592 -0.314834 0.106159 -0.091856 -0.230381 -0.128682 -0.724959 0.357733 -0.594047 0.425668 -0.766257 -0.121238 -0.051159 -0.617327 -0.151193 1.419245 -0.233665 0.451407 0.131858 -0.510277 -0.676104 -0.346387 -0.936375 0.522775 -0.174769 0.780952 0.135409 -0.043937 -0.208503 -0.181037 -0.526691 -0.158788 -0.328108 0.105987 -0.115530 0.767366 -0.600112 -0.086973 -1.029569 0.213826 1.065073 -0.104331 -0.228653 -0.494356 -0.068991 -0.371704 -0.708199 0.565546 -0.148145 0.186787 -0.122045 0.159410 -0.556254 0.353411 -0.453739 0.299653 -0.057020 -0.782405 -0.814412 0.172840 -0.299454 -0.052683 0.304320 -0.452286 0.065603 -0.172682 0.530342 0.011629 0.008730 0.179094 -1.254095 -1.026103 -0.560810 0.068340 0.559647 0.217134 0.362003 -0.508303 -0.185289 -0.491875 0.701541 -0.788565 -0.075989 -0.177761 -0.043804 0.928470 -0.205447 -0.128858 -1.111675 0.336474 0.360447 -0.663197 0.963845 0.373879 -0.484535 -0.413960 -0.543672 -0.044363 0.628886 1.077325 -0.493379 -0.445217 0.564407 -0.426841 -0.128888 -0.741316 0.499014 -0.201918 0.816109 -0.655714 -0.394282 0.052060 0.775187 -0.206039 0.515265 0.475138 0.427703 -0.156124 0.874685 0.254822 -0.125324 -0.543133 -0.998960 0.484597 0.755418 0.383729 0.182911 -0.659411 -0.427238 0.363963 0.589462 0.710007 0.978325 0.488581 0.607353 -0.606712 -0.673717 0.424773 0.118421 0.484301 -0.608924 0.241287 -0.365635 0.070269 0.129489 0.059880 0.344025 -0.326494 -0.863630 -0.154838 0.662207 0.296668 -0.165475 0.831699 -0.039825 -0.564657 0.420651 -0.194049 0.634424 -0.123498 0.160298 -0.035183 -0.329166 0.065125 -0.322477 1.045918 -0.214609 -0.236927 0.356404 -PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 2.837962 1.168268 -1.604600 6.264289 0.031875 -2.408365 0.090568 2.518575 -1.698797 -9.353453 -6.034537 4.471833 0.598986 0.912711 2.898685 1.701311 -0.654710 0.651118 -10.561459 2.839307 3.399077 1.786443 0.403214 -2.077477 1.604521 -1.028394 1.096376 1.539393 1.517287 5.516707 -3.479978 2.395048 4.458972 -0.064964 2.909829 2.654311 -0.318076 1.181485 -2.091181 -0.396495 7.785755 3.295835 -0.092129 3.735846 1.372948 5.643396 -0.341462 4.321824 0.498400 -3.886266 3.089983 1.016395 -2.901305 -0.443437 -3.100161 3.470321 5.422339 3.040871 -3.013613 2.399190 -0.596386 -0.503263 1.338395 -1.737689 6.180553 3.523108 4.107414 3.791086 6.111259 -3.034773 -1.003501 1.767189 2.639855 -0.639621 2.560703 -4.968220 -4.430277 -4.045170 -0.504026 -8.976021 -3.340460 -0.345131 8.090144 -6.160045 1.192021 1.859682 -0.279611 4.857358 -2.957042 0.278453 -3.890067 -0.987126 -2.074579 7.992430 0.505753 -0.092280 0.625377 2.266803 3.022192 4.424394 0.114631 -2.938897 -3.059645 -7.721592 -2.818500 -0.085495 2.852691 2.737350 -5.885907 -1.731006 0.092990 4.355938 -8.090550 -1.157676 4.586894 3.543635 2.386781 -0.515199 -4.190004 0.861441 0.806660 0.606440 3.896091 -3.073069 0.318911 -1.425518 -0.223044 0.049235 2.841270 0.246386 -5.440635 -4.260800 -1.218005 -0.747291 -0.268487 -0.349606 1.760014 -2.745671 4.249167 -2.407983 4.501537 -7.377033 -0.573232 -2.193692 -3.465782 -0.984564 4.037624 3.314814 3.508815 -1.193193 -3.067257 -1.812134 -6.479020 -6.762041 2.453616 1.574754 2.433346 1.959852 -0.797658 2.753083 -2.410218 -0.005412 2.779244 -2.878187 -1.731771 -1.688070 4.706359 -0.539520 -1.355706 -4.560249 -0.447375 0.031257 -0.932916 3.687502 -0.978871 -6.285328 -7.513265 -4.216391 4.761635 -1.481510 0.879844 -2.518753 0.609442 -5.205843 0.391278 -6.184298 1.730432 0.562138 -4.284950 -5.427008 0.538413 -0.791505 -0.528645 0.137667 -3.857712 -1.078593 3.422539 2.776977 1.494821 0.909036 1.320805 -6.253677 -5.450743 0.254395 -2.865689 3.779651 1.662894 0.060650 -4.968835 -1.459484 -5.095431 4.135307 -2.619880 0.802747 -2.558157 -0.719917 5.782167 -3.139063 -1.077309 -5.048778 1.219825 2.583589 -7.861688 5.931577 3.161818 -1.593770 -0.763108 -0.268395 1.008568 3.725481 5.348671 -3.498151 -3.773651 0.363408 -1.478578 -0.012908 -2.047466 4.372338 -3.829960 1.204674 -3.639569 -2.338911 2.479950 3.407433 0.935018 3.410408 2.320391 -0.104887 0.905642 4.503442 3.748686 -1.516918 -3.409797 -9.322112 3.126200 1.204237 -0.619042 -0.586902 -2.889988 -4.332935 0.847657 0.712716 5.157092 2.220103 -0.925692 4.406300 -5.928272 -5.341677 -2.575683 0.658911 0.015440 -1.670465 -0.495561 -1.618320 1.997748 3.071837 -0.995398 0.903190 -2.979046 -2.731783 -1.152330 4.562307 0.774153 1.256719 5.922758 2.239668 -3.889746 -0.277928 0.354875 -0.130687 -0.798832 -4.809738 -2.469842 -1.562088 0.722729 -2.305955 1.501320 -1.145130 -1.215944 1.505259 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.247620 0.000113 0.350509 0.180782 0.268914 -0.234365 0.229148 0.317840 -0.199845 -0.620111 -0.432495 -0.222864 -0.121997 -0.240366 0.226166 -0.078803 0.150271 0.179849 -0.646057 0.148853 0.210831 0.138029 0.005421 -0.203589 0.058370 -0.211981 -0.457126 0.403306 -0.039602 0.366334 -0.236079 -0.110036 0.255795 0.204893 0.160089 0.426718 0.256427 -0.060251 0.310335 0.116214 0.721054 0.095488 -0.065351 0.219427 0.439622 0.422170 -0.187905 0.308842 -0.257948 -0.136306 0.286540 -0.618172 -0.238883 -0.024406 -0.404664 0.201048 0.619461 0.385261 -0.305223 0.390940 -0.262538 0.041783 0.072403 -0.280725 0.364981 0.357064 0.028896 0.100821 0.656344 -0.280568 -0.200783 0.277866 0.366445 0.026625 -0.293908 -0.125884 0.090277 -1.121417 0.020759 -0.718190 -0.076235 -0.092769 0.660708 -0.226395 0.102389 0.568444 -0.076753 0.175026 -0.221893 -0.181980 -0.370534 0.137689 -0.044058 0.532562 -0.021904 0.052207 0.058832 0.117898 0.279172 0.443200 -0.159279 -0.120368 -0.743191 -1.064516 -0.331127 -0.042865 -0.052070 -0.253422 -0.437748 -0.172840 0.701621 0.278821 -0.460425 -0.103215 0.316795 0.273516 -0.441385 0.019119 -0.512668 -0.118379 -0.076425 0.072105 0.139043 -0.190092 -0.072998 -0.474865 0.034880 -0.012007 0.167826 -0.198244 -0.294235 -0.170819 -0.021717 -0.165897 -0.108848 -0.172846 -0.151519 -0.194689 0.195723 -0.354688 0.357389 -0.557154 0.169932 -0.267971 -0.393766 0.027308 0.653928 0.294386 0.089847 0.271686 -0.227316 -0.171958 -0.259355 -0.625829 0.177383 -0.076919 0.509417 -0.185533 -0.051541 -0.112388 -0.082060 -0.302572 -0.011971 -0.208784 0.050407 -0.243594 0.534139 -0.146662 -0.160699 -0.485118 0.186254 0.637754 -0.196858 -0.102344 -0.319197 0.063164 -0.210407 -0.476536 0.268731 -0.058889 -0.014044 -0.047455 0.124461 -0.477632 0.349825 -0.207785 0.141640 -0.105637 -0.458477 -0.407126 0.043016 -0.143633 -0.131554 0.056849 -0.201672 -0.023824 0.110275 0.167461 0.114507 0.062702 0.027146 -0.439575 -0.601156 -0.308277 0.154919 0.276794 0.331421 0.166207 -0.273173 -0.080516 -0.348576 0.505906 -0.155981 -0.070413 -0.033006 -0.272512 0.514951 -0.109338 -0.149003 -0.375676 0.178359 0.121757 -0.543360 0.558672 0.325963 -0.410948 -0.439121 -0.527733 -0.012663 0.302689 0.699388 -0.172710 0.016880 0.224431 -0.086270 -0.091227 -0.265004 0.319472 -0.007053 0.414458 -0.501433 -0.391183 0.169570 0.505058 -0.095459 0.328118 0.113485 0.432387 0.013911 0.538554 0.026836 -0.155296 -0.187514 -0.633373 0.196659 0.388897 0.110565 0.129743 -0.260491 -0.413366 -0.041599 0.199267 0.477333 0.605659 0.056746 0.359645 -0.078820 -0.379751 0.007019 0.141793 0.139454 -0.494814 0.157742 -0.203630 0.001481 0.051683 0.084112 0.340061 -0.271317 -0.757931 -0.205599 0.302516 0.224236 -0.196953 0.454923 -0.026628 -0.258368 0.024375 0.005604 0.372066 0.283082 0.018534 -0.222581 -0.367636 0.043992 -0.109979 0.506586 0.036989 0.065052 0.365832 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = 1.551598 0.083330 -1.033425 3.345462 0.214173 -1.056979 0.119190 0.647853 -0.587551 -4.974220 -3.047467 2.713015 0.399144 0.162896 0.764158 0.940759 0.027429 0.410889 -4.881771 1.431612 1.675206 0.550112 -0.200237 -0.575559 0.563698 -1.346323 1.317115 0.710758 0.608589 2.868371 -1.566902 1.414953 2.376104 -0.163759 1.448752 2.131293 -0.666070 0.392789 -0.800414 -0.410848 3.897692 1.773094 0.210005 1.666648 0.685332 2.912748 0.110972 2.478051 0.651080 -2.059421 1.254533 1.384065 -1.504023 -0.311933 -2.060680 1.513941 2.133947 0.979124 -1.525014 0.968881 -0.868682 -0.101865 0.776735 -0.182420 3.165100 1.331447 2.054072 2.018384 3.235822 -1.692708 -0.356604 1.545846 1.324586 0.137622 2.282207 -1.606621 -2.993703 -0.368832 -0.636265 -3.864944 -1.341113 -0.049088 4.719644 -2.821733 -0.088580 0.411161 0.409030 2.794776 -1.351821 0.052602 -2.218522 -0.029576 -1.349836 3.903801 0.602376 0.486274 -0.263987 1.029686 0.881729 2.065446 -0.323142 -2.145853 -1.009781 -4.621842 -1.292501 -1.309169 1.363303 1.340572 -3.606569 -0.502850 -0.456400 3.374463 -4.165315 -0.132115 1.919435 1.396566 1.847338 -0.259818 -1.949844 0.187352 0.528220 0.321296 1.825986 -1.188626 -0.010143 -0.657764 0.465921 -0.113030 1.070941 0.118894 -2.953112 -1.829719 -0.295644 -0.249521 0.063327 0.490469 1.538435 -1.583675 1.897353 -1.240642 2.182367 -3.681458 -0.307132 -1.460038 -2.383737 -0.800500 2.299390 2.326977 2.431668 -1.128020 -1.029857 -0.996897 -3.784720 -3.895130 0.745621 0.082275 0.804520 0.942559 -0.278960 1.358664 -1.553792 0.340742 1.448752 -1.354740 -0.528836 -0.434054 2.505552 -0.185975 -0.530099 -2.069833 -0.890034 -0.525159 -0.054331 2.289700 -0.629226 -4.283677 -4.341183 -2.151097 2.416002 -1.037699 0.304941 -1.554780 -0.362475 -1.961720 0.159210 -2.656349 0.340219 -0.170015 -1.743117 -2.927563 0.021396 -0.480806 -0.719187 0.003332 -2.214432 -0.386199 2.500287 0.841305 1.080850 0.486689 0.118819 -2.870549 -2.101932 0.714879 -1.532551 2.205802 1.806248 -0.377584 -2.384448 -1.089041 -2.967203 1.856348 -1.683854 0.657099 -0.663684 -0.818292 2.809463 -1.819277 -0.199592 -2.149800 0.722101 0.881894 -4.883191 3.283902 2.202438 -1.214990 -0.229728 0.065983 0.571380 1.622988 2.315814 -1.906318 -1.614495 0.287165 -0.934111 0.010373 -0.514752 1.890020 -1.937814 0.683884 -1.957811 -1.200057 1.542575 1.606778 0.151311 0.741459 0.756927 -0.451717 1.382038 2.268818 2.085955 -0.323702 -2.545320 -5.690973 1.660061 -0.602143 -0.675441 0.008821 -1.043938 -2.057274 0.687651 -0.699052 2.822631 0.155990 -0.914805 2.347597 -3.306736 -2.837480 -1.483486 -0.288830 0.113548 -0.619507 0.452705 -1.281146 0.800320 0.694240 -0.084008 -0.266412 -1.641810 -0.445871 0.276912 2.423958 0.890519 0.513223 2.891587 1.124611 -1.640390 -0.487615 0.363374 -0.382478 -0.551235 -3.083480 -1.247929 -0.610224 0.687298 -1.221246 1.059736 -0.522546 0.162448 0.829234 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = 5.523289 0.913108 -3.943215 13.472450 -0.498146 -3.408235 0.629324 3.403182 -2.969622 -20.882900 -13.851785 8.983422 2.039375 2.267291 3.581400 3.646654 -1.063378 1.154652 -23.270456 4.957506 8.421146 2.650426 1.258931 -2.191433 2.508798 -5.539154 4.557996 3.088497 2.612408 12.270831 -5.872192 6.078571 10.223041 -0.700157 4.853989 8.684609 -4.048860 2.040805 -3.364192 -1.358861 14.767660 8.191106 -0.785341 5.548327 1.203029 12.099224 1.096482 7.665488 0.362818 -9.311286 4.428883 4.737476 -6.900223 -1.915457 -6.637708 5.265157 10.193448 5.986514 -5.085691 4.008266 -4.070818 -1.001422 3.024377 -1.417208 12.525620 4.945111 9.632164 7.869427 11.834048 -7.626741 -1.203114 5.864843 3.087017 -0.680977 7.691455 -7.345274 -12.293353 -3.204905 -1.916466 -19.122538 -7.740607 0.764759 18.237741 -11.504840 -0.374857 1.160069 0.805965 11.482887 -5.653500 0.768852 -8.465731 -0.836650 -5.562249 16.173956 2.673825 0.669204 0.225708 4.899422 4.950126 8.402791 -0.968303 -8.063810 -4.822403 -18.214504 -3.655377 -5.000171 6.979518 7.555965 -14.022924 -2.637022 -1.867052 12.515932 -17.086175 -0.200590 8.741784 7.511445 6.716056 -2.044112 -8.478598 1.437736 2.087774 1.066639 9.731124 -6.006661 0.983676 -1.524039 2.304351 -0.315352 3.750934 1.202968 -12.563288 -8.606834 -0.868163 -2.235105 0.873103 2.754418 7.059520 -4.445154 8.075755 -5.941560 9.616159 -15.771445 0.745837 -4.710873 -9.179075 -3.399241 7.150126 11.030399 6.868663 -5.449244 -4.427965 -2.932342 -14.882904 -15.140892 2.732473 2.941797 4.184618 3.602697 -1.679559 6.820543 -6.463485 2.788990 5.023798 -4.438623 -1.916027 -0.911770 11.234073 0.584729 -2.377030 -7.427368 -3.418311 -3.545831 -1.290615 10.427096 -2.151712 -15.547111 -18.428467 -8.801486 10.370333 -4.213093 0.201683 -7.133068 -1.403180 -8.825415 1.119384 -11.098023 1.183786 0.739314 -7.806331 -12.148033 0.250351 -1.604613 -3.241399 0.885017 -8.754770 -3.148522 11.331473 3.666068 5.170382 1.354100 1.403460 -10.591794 -7.746760 3.049932 -7.812947 9.202390 6.851501 -2.547606 -10.308679 -3.934784 -11.337150 8.353692 -2.962731 2.866830 -5.548520 -2.407639 11.455087 -6.970085 -0.035138 -8.833998 2.477995 4.515451 -19.770987 13.677725 9.209664 -3.244514 -0.361345 1.382970 1.530659 6.817553 7.779767 -7.935100 -7.985310 0.261881 -4.739042 0.513693 -1.933387 7.609270 -8.625093 1.012062 -6.878679 -4.097277 6.202966 5.604664 1.202352 4.897792 4.195925 -1.439956 5.778057 8.317368 8.383791 -3.184655 -9.645613 -22.613968 7.833024 -1.572739 -3.113392 -1.529918 -3.678038 -8.781196 3.177637 -1.788516 10.936988 3.871396 -5.477622 9.607897 -12.832669 -11.169483 -7.613641 -0.674161 0.239468 -1.689424 0.028896 -4.186212 4.653895 4.450501 -1.908646 0.129697 -7.859022 -2.317607 0.732035 10.823049 3.000499 2.628668 12.006661 4.220692 -6.702701 -2.719943 1.693814 -2.631713 -2.309909 -10.845017 -5.019780 -1.538273 3.114160 -4.753103 2.453017 -1.935711 -0.908467 3.698527 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.194463 0.086158 0.518998 0.082805 0.264172 -0.271454 0.330317 0.433128 -0.112614 -0.586390 -0.395140 -0.204691 -0.162046 -0.251047 0.150496 -0.239155 0.136895 0.406583 -0.583031 0.099435 0.243359 0.356691 0.144105 -0.361857 0.059282 -0.057334 -0.597761 0.378232 0.063194 0.410375 -0.226806 -0.330242 0.272602 0.219867 0.007693 0.511670 0.538667 0.005800 0.331764 0.008035 0.673789 0.093660 -0.039736 0.374254 0.438806 0.413305 -0.108704 0.211235 -0.211288 -0.177689 0.118468 -0.852279 -0.291852 -0.148476 -0.289174 0.279401 0.687897 0.618738 -0.299697 0.491900 -0.043124 -0.002430 0.078119 -0.470901 0.080732 0.459156 -0.275502 0.053093 0.729366 -0.353497 -0.259759 0.228349 0.406627 0.069464 -0.316604 -0.222646 0.136729 -1.288866 -0.041633 -0.819578 -0.091483 -0.082994 0.695871 -0.309965 0.358688 0.744291 -0.160023 0.020452 -0.104565 -0.314990 -0.333748 0.136429 -0.017475 0.524216 -0.018556 -0.031488 0.094705 0.078146 0.370292 0.457716 -0.090296 -0.047629 -0.793783 -1.080472 -0.196376 -0.036775 -0.138885 -0.247683 -0.278568 -0.324233 0.756907 0.270043 -0.523039 -0.170656 0.407232 0.302109 -0.735191 -0.128009 -0.416904 -0.011795 -0.142027 -0.103389 0.097247 -0.396872 -0.205606 -0.225427 -0.198573 -0.061702 0.101700 -0.220050 -0.176701 -0.273690 -0.144806 -0.078431 -0.122941 -0.282929 -0.292545 -0.209296 0.172750 -0.442676 0.334904 -0.427903 0.180675 -0.046329 -0.357459 -0.016290 0.730058 -0.033667 0.043996 0.196142 -0.237663 -0.301157 -0.028834 -0.522137 0.414364 -0.037150 0.661510 -0.130930 -0.051522 -0.214887 -0.086892 -0.440977 -0.149366 -0.128446 0.132682 -0.123438 0.559528 -0.298394 -0.121171 -0.616754 0.315222 0.805442 -0.157348 -0.311778 -0.432371 0.282652 -0.025842 -0.474881 0.298957 -0.031127 -0.033721 0.032104 0.124679 -0.316018 0.351547 -0.211198 0.213984 -0.076028 -0.507097 -0.452108 0.101767 -0.209884 -0.081713 0.214930 -0.157508 -0.033097 -0.056773 0.253963 0.012121 0.000886 0.158641 -0.545840 -0.592385 -0.455328 0.206848 0.168993 0.242006 0.312991 -0.365546 -0.041795 -0.215918 0.493851 -0.152120 -0.110102 -0.137087 -0.125339 0.618071 -0.016386 -0.030743 -0.535815 0.202050 0.294977 -0.523142 0.487418 0.242613 -0.331702 -0.454666 -0.466991 -0.159437 0.407463 0.722929 -0.244710 -0.172389 0.393142 -0.294983 -0.080860 -0.455859 0.274147 0.048778 0.554463 -0.468719 -0.325705 0.060635 0.496893 -0.119482 0.442431 0.265430 0.500666 -0.076772 0.598507 0.017715 -0.140375 -0.215903 -0.483160 0.333505 0.649018 0.321321 0.126249 -0.283771 -0.370486 0.139197 0.391008 0.402484 0.796191 0.146260 0.367893 -0.066718 -0.362786 0.227990 0.161892 0.349154 -0.537472 0.126457 -0.189995 0.063172 0.068333 0.013549 0.446841 -0.169387 -0.823248 -0.217225 0.342075 0.233007 -0.170836 0.507238 -0.173597 -0.354866 0.240473 -0.101675 0.541031 0.116602 0.188864 -0.103692 -0.348782 0.074004 -0.113616 0.667303 -0.041337 -0.108499 0.405929 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 0.767251 0.343808 0.638862 0.312157 0.639813 -0.620260 0.089536 0.835445 -0.590796 -1.070500 -1.056309 -0.389832 -0.339623 -0.342773 0.766176 -0.098086 0.217978 0.067246 -1.255994 0.524079 0.234488 0.257697 0.055285 -0.613004 0.391667 0.324063 -1.160888 0.236504 0.079149 0.475157 -0.864406 -0.103978 0.107013 0.535982 0.528357 -0.022051 0.117551 -0.270301 0.599192 -0.251029 1.272776 0.131201 0.007586 0.694114 0.918214 0.391367 -0.878282 0.910028 -0.596299 0.053197 0.782784 -1.551366 -0.335713 0.640589 -0.589990 0.735479 1.390097 0.502762 -0.306547 0.352189 -0.211563 0.281294 0.029373 -1.018392 0.756162 0.976667 -0.006793 0.141359 1.085917 -0.268251 -0.248063 0.257201 1.142765 0.091973 -1.117991 -0.595759 0.676970 -1.954642 -0.011848 -1.477468 0.303869 -0.563348 1.561920 -0.384360 0.554891 0.897668 -0.273005 0.144684 -0.524844 0.097061 -0.446131 0.355661 -0.425946 0.610384 -0.502085 0.107897 0.006486 0.040701 0.414732 0.781607 -0.500603 0.262079 -1.348534 -1.666838 -0.661864 0.799849 -0.141597 -0.588593 -0.759824 0.011360 1.095270 0.331062 -0.536437 -0.678541 0.188780 0.417861 -1.212084 0.882996 -1.296898 -0.527122 -0.410998 0.444540 -0.060396 -0.136293 -0.075809 -1.505293 -0.572075 0.079358 0.837273 -0.208348 -0.418386 -0.319952 -0.373690 -0.461703 -0.450749 -0.583453 -0.443831 -0.261151 0.358281 -0.158134 0.321309 -0.973302 -0.125146 -0.797435 -0.681255 0.503678 1.203401 0.507417 0.136956 1.177028 -0.078825 -0.559314 -0.349204 -0.271955 0.370268 -0.185113 0.966114 -0.363756 0.168795 -0.085214 0.041011 -1.051159 0.039764 -0.696404 -0.263297 -1.198610 1.366666 -0.607457 -0.221945 -1.122522 0.546032 1.508467 -1.068588 -0.491889 -0.422880 0.556859 -0.391545 -0.843228 0.345970 -0.077824 0.267242 0.090688 1.117451 -0.818628 0.477880 -0.410524 0.300870 0.043188 -1.015210 -0.522592 -0.152627 -0.106160 -0.211137 -0.109636 -0.119666 0.170417 0.450000 1.135565 -0.023187 0.485637 0.120052 -1.127606 -1.619892 -0.928955 0.604450 0.388257 0.478921 0.180469 -0.745636 -0.292968 -0.604088 1.112964 -0.467447 -0.265681 -0.357225 0.101491 0.725661 -0.248089 -0.377583 -0.859801 0.180044 0.214819 -1.487580 0.735085 0.062965 -0.744002 -0.772174 -1.908536 0.460845 0.389625 1.666009 -0.100577 0.355563 0.260867 0.084627 -0.353089 -0.949831 0.891559 -0.028616 0.629168 -0.742173 -0.825445 0.111065 0.679713 0.040335 0.633979 0.272287 1.023820 0.122974 1.081678 0.139889 -0.616821 -0.237923 -1.096684 -0.076807 1.559863 0.418216 0.247708 -0.623655 -1.080626 -0.569088 0.524459 0.845441 1.049072 0.805553 0.478243 0.046563 -0.329873 0.393868 0.792493 0.014578 -1.099645 0.035380 -0.470537 -0.361757 0.541909 0.198587 0.791786 -0.473478 -2.114566 -0.875001 0.628904 0.345298 -0.156834 0.558313 0.553017 -0.679065 0.315609 0.128877 0.875640 0.126737 0.053726 -0.363300 -0.690173 -0.426894 -0.219514 0.924893 0.433945 -0.027796 0.223882 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.518095 -0.411422 0.355232 0.400781 0.573194 -0.416654 0.199472 0.279826 0.313736 -0.906504 -0.237600 0.322178 -0.144744 -0.337194 0.073377 0.060777 0.262052 0.494234 -0.428223 0.419580 0.112044 0.477189 0.088778 -0.499512 0.195252 -0.118741 0.085224 0.135723 0.217999 0.487459 -0.553541 -0.243294 0.397828 0.085493 0.172879 0.545641 0.830623 -0.108013 -0.016049 -0.079413 1.086210 0.096972 0.176064 0.738181 0.564656 0.526665 0.104314 1.010373 0.675648 -0.202611 0.250332 -0.651127 -0.332792 -0.121230 -0.721962 0.743892 0.627480 0.397647 -0.542913 0.332061 0.325518 0.100965 0.180145 -0.330314 0.302228 0.505919 -0.155968 0.264834 1.247732 -0.350327 -0.277219 0.390646 0.998807 0.455022 0.723180 -0.638578 -0.225903 -1.036115 -0.237242 -0.256719 0.289885 -0.377149 0.761246 -0.647061 0.435676 0.854048 -0.033299 0.350162 -0.047804 -0.255049 -0.579262 0.352546 0.096007 0.875439 -0.138421 0.160040 -0.278555 0.090824 0.087418 0.490996 0.373488 -0.367763 -0.536869 -1.288194 -0.535217 -0.287659 -0.208713 -0.332244 -0.806197 -0.015956 0.299441 0.528232 -0.878292 -0.144709 0.378972 0.184213 0.160869 -0.384734 -0.061171 -0.122852 -0.020731 0.005934 -0.410444 -0.524640 -0.413352 -0.397678 -0.090345 0.074058 0.236390 -0.422970 0.003763 -0.240726 -0.351559 0.508371 -0.115307 -0.269365 -0.086340 -1.020005 0.258799 -0.320870 0.259508 -0.494255 -0.416444 -0.234513 -0.370946 -0.148294 1.554375 -0.635588 0.815795 0.217849 -0.453749 -0.671548 -0.352218 -0.916396 0.372130 -0.499931 0.346544 0.346387 0.040488 -0.214612 -0.093330 -0.628321 -0.018482 -0.440446 -0.019056 -0.221614 -0.044473 -0.683665 0.037039 -0.898723 0.113882 1.074380 0.133758 -0.181101 -0.374602 -0.584857 -0.262742 -0.662742 0.390339 -0.193596 0.337473 -0.081084 0.115564 -0.425121 0.290888 -0.396438 0.257703 -0.208683 -0.658275 -0.634305 0.074882 -0.349985 0.233657 0.166849 -0.483817 0.297292 -0.537317 0.507873 -0.071778 0.083294 -0.045521 -1.400276 -1.018019 -0.459923 0.245417 0.653396 -0.152337 0.344311 -0.358052 -0.303122 -0.416706 0.451944 -1.245397 -0.081008 0.246726 -0.142301 0.688423 -0.218358 -0.079978 -0.916686 0.348921 0.150779 -0.359556 0.904344 0.355368 -0.631265 -0.394520 -0.505600 0.120128 0.430704 1.086567 -0.414902 -0.237489 0.526350 -0.094617 -0.192823 -0.708916 0.460178 -0.119830 0.851537 -0.724424 -0.554350 -0.078861 0.774377 -0.260059 0.079204 0.305996 0.231680 -0.380861 0.886874 0.240881 0.335441 -0.634537 -0.965604 0.180595 0.638278 0.379630 0.447186 -0.735537 -0.273603 0.280393 0.427220 0.748366 0.523211 0.754832 0.510766 -0.683180 -0.603370 0.548106 -0.146369 0.347780 -0.464599 0.437721 -0.526157 -0.214324 -0.196257 0.203491 -0.109036 -0.038982 -0.333881 -0.011218 0.435016 0.378216 -0.129430 0.624343 0.156088 -0.439453 0.416627 -0.104402 0.518836 -0.089214 0.015356 -0.033455 -0.313815 -0.064574 -0.260428 1.015533 -0.294654 0.068572 -0.016257 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.362602 -0.094329 0.343983 0.295731 0.356251 -0.468228 0.246186 0.390858 -0.086690 -0.765176 -0.318855 -0.109008 -0.106547 -0.370898 0.160866 0.003390 0.063101 0.350280 -0.784741 0.363682 0.274733 0.350883 0.055102 -0.492089 0.136150 -0.180540 -0.296009 0.354243 0.013305 0.468370 -0.407195 -0.197469 0.333387 0.199329 0.202060 0.519202 0.472478 -0.061387 0.265632 0.167676 0.880124 0.251567 -0.130822 0.308883 0.538824 0.503024 0.006172 0.328179 -0.261182 -0.178215 0.082052 -0.509410 -0.328161 -0.116588 -0.480646 0.411906 0.757975 0.554722 -0.394238 0.412011 -0.145250 0.020578 0.167878 -0.218086 0.428945 0.383351 -0.005553 0.184750 1.018507 -0.288832 -0.205448 0.278164 0.628709 -0.002338 0.188936 -0.233175 -0.170616 -1.344989 -0.063338 -0.832718 -0.014756 -0.056147 0.662509 -0.447473 0.330289 0.754287 0.086728 0.318061 -0.276011 -0.288178 -0.440222 0.218182 -0.122526 0.989860 -0.054023 0.131333 -0.076487 0.250079 0.337229 0.482395 0.059042 -0.236125 -0.643272 -1.269318 -0.362914 -0.152336 -0.195139 -0.284764 -0.651531 -0.189880 0.745327 0.515328 -0.750431 -0.050848 0.413005 0.276881 -0.174134 -0.451700 -0.351645 0.052315 -0.198083 -0.018597 -0.053784 -0.407747 -0.256002 -0.321821 0.053428 0.053735 0.172553 -0.272047 -0.339061 -0.149660 -0.096432 -0.050176 -0.099527 -0.152660 -0.145074 -0.613342 0.202831 -0.528286 0.393094 -0.593703 0.127457 -0.211640 -0.469515 -0.002005 0.752884 -0.042693 0.110356 0.157838 -0.320844 -0.321786 -0.360404 -0.913830 0.319322 -0.176937 0.441466 -0.079878 -0.036423 -0.228228 -0.097058 -0.426521 0.090343 -0.336540 0.049742 -0.251107 0.603847 -0.296966 -0.110926 -0.582859 0.090302 0.876193 0.077666 -0.109967 -0.393605 -0.082152 -0.350229 -0.601784 0.359380 -0.075478 0.024505 -0.179236 0.108275 -0.578028 0.477092 -0.294656 0.335716 -0.156001 -0.441219 -0.528610 -0.006646 -0.212110 -0.022276 -0.001764 -0.306462 0.053854 -0.173093 0.071529 0.006177 -0.011704 0.108539 -0.789426 -0.785096 -0.271776 0.258588 0.428051 0.120219 0.296451 -0.353877 -0.096204 -0.420505 0.583391 -0.427206 -0.077950 0.001157 -0.273202 0.754661 -0.140409 -0.224641 -0.590737 0.271977 0.060561 -0.137499 0.919502 0.419649 -0.505922 -0.414363 -0.463755 0.030144 0.435539 0.900172 -0.354142 -0.154532 0.333185 -0.150275 -0.163526 -0.385023 0.411624 -0.170333 0.694678 -0.573133 -0.438842 0.040500 0.685479 -0.166309 0.345452 0.072457 0.233046 -0.269813 0.667657 0.133454 0.047051 -0.424354 -0.594815 0.198772 0.126981 0.263356 0.089837 -0.329043 -0.434652 0.075844 0.449193 0.666433 0.815567 0.088492 0.415286 -0.455798 -0.545327 0.158247 0.112925 0.208960 -0.540031 0.252151 -0.329523 -0.045684 0.025178 0.163872 0.230212 -0.275950 -0.585957 -0.170423 0.368250 0.307286 -0.383269 0.594738 0.030466 -0.312075 0.127935 -0.040043 0.430608 0.143724 0.164793 -0.189086 -0.406835 0.065388 -0.170748 0.828300 -0.086284 0.057301 0.308819 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 1.160730 0.764614 0.302271 0.993894 0.027712 -2.227452 0.905252 1.907384 -1.216379 -2.222088 -1.231360 -0.065866 0.068504 -1.441141 0.352489 0.079860 -0.836527 0.842471 -4.324954 1.501545 1.442663 1.012386 -0.347379 -2.005359 0.252993 -0.579453 -1.444723 1.617665 -0.478165 1.704321 -0.901543 -0.548619 1.091160 0.610469 0.756217 1.820841 0.192208 0.133437 1.456317 1.063679 2.155625 2.124170 -1.502498 -0.021735 1.529892 1.727316 0.093728 -0.691323 -3.563135 -0.760121 -0.697975 0.100650 -1.550721 -0.642398 -0.635069 0.448283 2.839849 2.198834 -0.808530 1.620855 -1.711107 -0.437142 0.808287 0.117855 1.947265 1.006607 0.600947 0.638144 3.052444 -0.723217 -0.265766 0.509763 1.171549 -1.520123 0.242865 0.169543 -1.599735 -4.152369 0.325042 -5.010800 -1.302952 0.951423 2.409840 -1.471421 1.095715 1.710507 1.290524 1.316563 -1.905652 -1.117960 -0.904081 0.125623 -1.587640 4.730076 0.056285 0.686083 0.156933 1.558097 1.934074 1.475979 -0.658325 -0.794074 -1.696826 -3.954603 -0.225089 -0.389903 -0.876867 -0.299296 -1.936756 -1.348123 3.100276 2.339216 -2.713214 0.173038 1.737250 0.824896 -0.264598 -1.685275 -1.775870 1.363386 -1.324648 -0.465220 0.999077 -1.286115 -0.641434 0.252766 0.600056 0.235545 0.146333 -0.032119 -3.230399 -0.169379 0.609283 -1.796607 -0.114908 0.156967 -0.454457 -1.333138 0.509312 -2.610612 1.735766 -2.506772 1.737774 -0.345739 -1.987092 0.297064 -0.644203 1.644570 -1.512785 -0.496348 -0.281259 -0.158506 -1.721126 -3.384441 1.230846 0.353901 1.276254 -1.548193 -0.265568 -0.859998 -0.519917 -0.572466 0.928904 -0.879225 0.383235 -0.711566 4.860926 0.288738 -0.658509 -0.661246 -0.328404 1.581922 0.970388 0.228601 -1.282748 -0.257095 -2.091859 -1.612824 1.368529 0.176394 -1.037086 -1.224101 -0.072284 -2.030806 1.757261 -0.852910 1.651442 -0.366680 -0.359849 -1.611190 -0.325798 -0.172384 -0.787038 -0.870016 -0.651431 -0.687946 0.787397 -1.165445 0.070128 -0.389531 1.097883 -1.098186 -1.643023 0.338821 0.723284 1.185313 1.309643 0.904072 -1.359922 0.493575 -1.828675 2.193971 0.478214 -0.045055 -0.944646 -1.181903 3.265493 -0.406074 -1.188646 -1.282269 0.810438 -0.127225 0.350931 3.676837 1.859633 -1.074073 -0.905773 -0.506394 -0.232994 1.826406 2.212788 -1.500448 -1.117746 0.574979 -1.083456 -0.461524 0.007140 1.250582 -1.252820 2.005606 -1.155654 -0.682892 0.519247 1.816745 -0.165768 1.783129 -0.882333 -0.232105 -0.573587 1.429670 0.492863 -0.511737 -1.396810 -1.349443 0.976166 -2.246129 0.328516 -1.102067 0.306245 -2.025408 0.009068 1.337534 2.036650 2.866770 -2.315346 1.014857 -1.929636 -1.995730 -0.900959 1.138925 0.322174 -1.472377 0.394819 -0.506424 0.624533 0.903320 0.426548 1.351434 -1.682371 -1.821381 -0.696810 1.091457 0.837300 -2.307202 2.113524 -0.277056 -0.618234 -0.512041 -0.154417 0.786080 0.458127 0.558575 -0.895603 -1.533704 0.994691 -0.450984 2.418040 0.433407 0.160026 1.886177 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 1.460640 -0.467167 -0.197049 1.303241 0.426885 -1.991174 0.697644 1.107907 -0.336792 -1.928358 -0.706005 0.631868 0.121048 -1.552482 0.208028 0.397153 -0.470232 0.488266 -2.512007 1.559514 0.592768 0.516272 -0.987670 -1.411372 0.090259 -0.698090 -0.388263 1.358245 -0.508392 1.307027 -0.722829 -0.294272 0.928275 0.216829 0.635745 1.595216 0.578907 0.075878 0.859403 1.077131 2.174156 1.442799 -0.796652 0.403499 1.465285 1.495280 0.062112 1.523965 -1.654326 -0.410545 0.560430 0.229474 -1.166146 -0.554047 -1.269148 0.685808 2.303839 0.943765 -0.928280 1.224426 -1.344341 -0.172658 0.799646 0.703153 2.053663 1.243862 0.758111 0.753237 3.132076 -0.555090 -0.325066 0.895749 1.773300 -0.632028 1.263342 -0.382605 -1.784469 -2.463080 0.123436 -2.369447 -0.523794 0.162307 2.077186 -1.339325 0.326567 1.333524 1.281575 1.374622 -1.625822 -0.628769 -0.976007 0.387611 -0.999159 4.176515 -0.189094 1.119893 -0.492486 0.992034 1.030840 1.258890 -0.271242 -1.096217 -1.310444 -3.421785 -1.027121 -0.595667 -1.011844 -0.660853 -2.429606 -0.751366 1.750281 1.546498 -2.375029 0.088003 1.319535 0.391062 1.699811 -0.611331 -1.280337 0.761565 -0.435783 -0.087823 0.279701 -0.699854 -0.630123 -0.739296 0.969840 0.398621 0.035668 -0.368590 -2.627433 0.250676 0.357811 -0.649718 0.066351 0.039613 -0.274588 -2.069628 0.379751 -1.765055 1.290637 -2.513957 0.199656 -0.833365 -1.907562 0.207898 1.019965 0.839190 0.544187 -0.244389 -0.662651 -0.540496 -1.952403 -3.620038 0.511498 -0.646093 0.547570 -0.999665 -0.056821 -0.856786 -0.338948 -0.585532 1.081794 -1.025504 0.155061 -0.749144 2.981530 -0.096311 -0.420849 -0.799966 -0.576566 1.368762 1.290735 0.539606 -0.765493 -2.094821 -1.839327 -1.377832 1.067775 0.053633 -0.468569 -0.981415 -0.316571 -2.213387 1.156061 -0.681299 1.233770 -0.474714 -0.557418 -1.420022 -0.177280 -0.169914 -0.110258 -0.912959 -0.924479 -0.219994 0.202221 -0.376084 0.158162 0.171022 0.290174 -1.828525 -1.994694 0.238223 0.782880 1.968265 0.881220 0.907977 -0.393723 0.129758 -2.108078 1.551112 -1.470199 -0.087145 0.238501 -1.125449 2.668051 -0.693987 -1.260034 -1.463493 0.799916 -0.478424 0.302012 3.364252 1.736965 -1.409062 -0.879267 -0.528748 0.080955 1.395213 2.316364 -1.283432 -0.731260 0.686620 -0.121177 -0.570699 -0.093929 1.098002 -1.058585 1.912532 -1.306943 -0.925367 0.367105 1.961856 -0.417043 0.502470 -1.091749 -0.512795 -0.789992 1.448594 0.478485 0.021544 -1.407635 -2.269878 0.477084 -2.024131 -0.241427 -0.172039 -0.650253 -1.429419 0.170465 0.681793 2.069876 1.466865 -0.987676 0.975189 -2.103163 -1.916447 -0.531960 0.524701 0.166417 -1.167349 0.892742 -0.833345 0.152632 0.316409 0.642891 0.286834 -1.276573 -0.929763 -0.347110 0.849909 0.513998 -1.861561 1.773822 0.077255 -0.286448 -0.528315 -0.045545 0.495789 0.573752 -0.177817 -0.644784 -1.398912 0.751288 -0.460658 2.408676 0.158205 0.603992 1.240954 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 1.459277 -0.325271 0.061369 1.197816 0.812221 -1.067897 0.249671 0.785002 0.017850 -2.254731 -1.406662 1.716191 -0.143047 -0.737555 0.299234 0.349070 0.433087 0.373814 -2.387783 1.187783 0.374581 0.376329 -0.533424 -0.697978 0.333608 -0.683015 0.341959 0.701884 0.078710 1.160313 -1.070011 0.116667 0.933669 0.241015 1.058622 1.262431 0.154360 -0.384537 0.183941 -0.245855 2.510455 0.950493 0.213834 1.342968 1.324440 1.403021 -0.104468 1.921824 0.982705 -0.562407 0.640017 -0.045867 -1.104732 0.020716 -1.671531 1.060505 1.082091 0.000675 -1.135579 0.727385 -0.138746 0.015575 0.430487 -0.376657 1.689492 0.787612 0.620725 0.692054 2.429390 -0.632338 -0.432736 1.074507 1.978878 0.719929 1.071857 -0.865513 -1.118686 -1.031965 -0.152019 -1.830642 -0.024270 -0.662755 2.465557 -1.262670 0.300430 0.818116 0.178058 1.230177 -0.733623 -0.445720 -1.303547 0.469605 -0.414610 2.079042 -0.150265 0.637224 -0.281073 0.395154 0.297610 1.293601 -0.203984 -1.125032 -0.945681 -3.154317 -0.787023 -0.586836 -0.142574 -0.454095 -1.953977 -0.011899 0.235721 2.108908 -1.872703 -0.411783 0.920328 0.044795 0.387502 -0.012002 -0.865011 -0.344586 0.039628 0.441027 0.041288 -0.567473 -0.513727 -0.823578 0.299162 0.099127 0.730099 -0.316398 -1.243119 -0.589304 -0.027854 0.381109 -0.273391 -0.241342 0.131794 -1.496432 0.727219 -0.641240 0.913126 -1.723235 -0.444274 -1.138051 -0.985644 -0.158937 2.063246 0.768709 1.610106 0.320008 -0.095552 -0.841172 -1.663188 -2.294630 0.658689 -0.909761 0.571536 -0.010240 0.110844 -0.077100 -0.421001 -0.819044 0.424175 -1.081287 -0.143491 -0.856136 1.182212 -0.579791 -0.145233 -1.293751 -0.210504 1.156063 0.134943 0.236842 -0.670229 -2.467532 -1.429866 -1.411668 0.991110 -0.385218 0.327173 -0.501462 0.127539 -0.837705 0.365386 -0.980086 0.356996 -0.544481 -1.122208 -1.357731 -0.219814 -0.438596 -0.036236 -0.321547 -1.060883 0.243984 0.650959 0.884891 0.222768 0.436981 -0.217649 -2.075723 -1.711958 -0.212821 0.231673 1.628127 0.860761 0.225651 -1.282119 -0.488688 -1.619919 1.274336 -2.121831 0.062951 0.225687 -0.891040 1.733565 -0.742196 -0.356325 -1.242385 0.735136 0.089534 -2.413203 2.036667 1.329704 -1.393724 -0.780019 -0.987066 0.378136 1.032295 2.195156 -0.899096 -0.332329 0.568135 -0.220465 -0.337629 -0.652124 1.236109 -0.512407 1.371461 -1.566198 -1.192969 0.615193 1.325770 -0.193067 0.184105 -0.044053 0.397743 0.301005 1.716567 0.642881 0.265968 -1.596071 -3.240777 0.448951 0.690021 0.050394 0.781900 -0.956146 -1.323208 -0.027253 -0.426011 1.814237 0.027133 0.327533 1.103262 -1.461056 -1.537906 -0.089545 -0.079968 0.163619 -0.680562 1.078473 -0.984401 -0.229981 -0.174976 0.469016 -0.159829 -0.619029 -0.886749 0.028368 0.895165 1.047187 -0.350782 1.420398 0.508002 -0.841845 0.017170 -0.045363 0.538883 0.018268 -1.233057 -0.671017 -0.984104 0.124173 -0.527541 1.609205 0.066035 0.805597 0.243023 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.936835 0.041812 0.346271 0.696341 0.689515 -0.706091 0.074156 0.713431 -0.354465 -1.371754 -0.978011 0.257855 -0.252296 -0.309641 0.626875 0.044231 0.240978 0.128977 -1.106338 0.647988 0.106487 0.245667 -0.191543 -0.642772 0.348058 0.250973 -0.573796 0.249171 0.198932 0.655776 -0.947766 -0.073027 0.284838 0.355091 0.591318 0.152340 0.467828 -0.169609 0.157930 -0.333060 1.552049 0.239638 0.039843 0.960610 0.911107 0.609484 -0.625738 1.496478 -0.195042 -0.069088 0.849132 -1.184068 -0.414963 0.430091 -0.865432 0.943477 1.404333 0.440762 -0.514580 0.382368 -0.088065 0.270238 0.143370 -0.718120 0.916648 1.029535 0.159851 0.382307 1.406852 -0.472449 -0.328453 0.464586 1.440387 0.321097 -0.389614 -0.768663 0.159550 -1.575541 -0.089435 -1.159791 0.273183 -0.625695 1.772763 -0.709261 0.483197 0.909750 -0.185162 0.353372 -0.632948 0.153263 -0.666140 0.326895 -0.400235 1.091183 -0.390697 0.222563 -0.152360 0.121306 0.376066 0.911185 -0.259896 -0.093759 -1.125109 -1.847322 -0.854359 0.531244 -0.198878 -0.490503 -1.032971 -0.057848 0.837751 0.634845 -0.865355 -0.621357 0.322221 0.366201 -0.276587 0.769003 -1.120811 -0.319111 -0.232875 0.301145 -0.036891 -0.240362 -0.158950 -1.265383 -0.389562 0.087946 0.816417 -0.156752 -0.693634 -0.331175 -0.378841 -0.155301 -0.392708 -0.608018 -0.342458 -0.782137 0.472303 -0.157993 0.419806 -1.173959 -0.443757 -0.785302 -0.883027 0.368154 1.641983 0.282567 0.811792 0.940327 -0.283616 -0.744013 -0.661709 -0.899872 0.463401 -0.233002 0.708375 -0.109841 0.161089 0.014346 -0.111215 -1.031736 0.323045 -0.835642 -0.359992 -1.036098 1.190765 -0.732504 -0.170053 -1.255549 0.402136 1.382901 -0.624910 -0.175456 -0.451220 -0.435887 -0.679355 -0.899031 0.518432 -0.179887 0.345039 0.092470 0.803889 -0.999200 0.367202 -0.613549 0.452056 -0.057832 -1.108120 -0.770977 -0.059247 -0.181624 -0.103188 -0.052828 -0.412871 0.256854 0.231221 1.104371 -0.037854 0.529838 0.136207 -1.584809 -1.799673 -0.753134 0.480419 0.839614 0.388467 0.237645 -0.679700 -0.418398 -0.900243 1.079466 -1.185591 -0.168637 -0.152174 0.062104 0.909390 -0.445364 -0.476697 -1.106281 0.359879 0.326133 -1.368688 1.127591 0.357795 -0.847181 -0.698289 -1.545172 0.468051 0.523034 1.869383 -0.438601 0.046076 0.416178 0.137604 -0.365906 -0.928324 0.962263 -0.146042 0.724746 -0.912068 -0.902932 0.057250 0.839668 0.028872 0.420325 0.273960 0.659230 -0.094468 1.328006 0.352784 -0.318632 -0.549089 -1.544485 0.091474 1.102155 0.235559 0.387597 -0.904522 -1.014311 -0.326618 0.361790 1.024484 0.663155 0.807254 0.680141 -0.547214 -0.596063 0.393356 0.500762 0.075241 -1.025628 0.344378 -0.657273 -0.317389 0.373576 0.187973 0.346108 -0.336160 -1.600356 -0.705781 0.659875 0.341265 -0.088065 0.780671 0.601740 -0.778945 0.342471 0.108443 0.745485 0.028219 -0.389855 -0.336176 -0.669882 -0.284861 -0.338192 1.031311 0.285336 -0.026255 0.172801 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.622539 0.236202 0.054369 0.641677 0.300642 -0.720738 0.023000 0.582994 -0.564773 -0.811352 -0.539548 0.231392 -0.183101 -0.263623 0.605680 0.064456 -0.039462 0.017948 -0.907212 0.598185 -0.005309 0.093035 -0.181692 -0.650429 0.255489 0.511748 -0.382211 0.284665 0.096497 0.509607 -0.713779 -0.042813 0.097024 0.381000 0.572997 -0.169905 0.438738 0.077789 -0.073235 -0.046798 0.993578 0.294722 -0.230065 0.562550 0.666264 0.426108 -0.260889 0.801081 -0.391725 0.146042 0.552387 -0.672726 -0.215747 0.332123 -0.469049 0.475139 1.099730 0.453020 -0.273049 0.329567 -0.185677 0.133937 0.113075 -0.442360 0.822556 0.695730 0.223702 0.273808 0.955793 -0.320939 -0.185405 0.065850 1.167874 -0.076235 -0.531548 -0.568664 -0.065138 -1.561209 -0.061469 -1.151572 -0.029164 -0.248812 1.071531 -0.551031 0.458418 0.614117 -0.243470 0.149588 -0.769544 0.200739 -0.413862 -0.004474 -0.364899 0.985676 -0.193968 0.108550 0.035548 0.185992 0.543903 0.653686 -0.175218 -0.062909 -0.609938 -1.125274 -0.557249 0.809064 -0.312264 -0.396855 -0.523141 -0.219713 0.752150 0.434872 -0.634265 -0.589054 0.275256 0.211540 -0.111332 0.344283 -0.831957 0.180229 -0.229376 0.263456 0.327533 -0.285660 -0.086236 -0.731812 -0.336320 0.120654 0.708963 0.089069 -0.503096 -0.209953 -0.159732 -0.259338 -0.337380 -0.657007 -0.575475 -0.473041 0.328235 -0.147557 0.436433 -0.822188 -0.223131 -0.380805 -0.607908 0.443748 0.887787 0.258116 0.385448 0.670265 -0.237863 -0.300783 -0.394987 -0.772304 0.621083 0.050086 0.369597 -0.218567 0.117921 0.037160 -0.087424 -0.764782 0.560017 -0.651093 -0.418120 -0.814887 0.804665 -0.348214 -0.189558 -0.796563 0.318671 0.999140 -0.137777 -0.062010 -0.334066 -0.554649 -0.448938 -0.539772 0.421086 -0.054933 0.082909 0.137412 0.710907 -0.992184 0.306386 -0.518439 0.569190 0.120825 -0.706683 -0.458888 -0.069582 -0.076343 0.094961 -0.183675 -0.118386 0.062728 0.042024 0.712504 -0.165373 0.462650 0.375480 -0.972964 -1.404943 -0.438843 0.464500 0.596816 -0.106370 0.350354 -0.674580 -0.130676 -0.664284 0.900057 -0.690139 -0.152348 -0.329403 0.123476 0.831504 -0.193899 -0.587668 -0.571174 0.315762 0.344654 -0.676519 0.759870 0.373421 -0.469149 -0.473808 -0.931601 0.360276 0.492164 1.470228 -0.426545 -0.111188 0.239074 0.269642 -0.264845 -0.589748 0.759723 -0.203094 0.399778 -0.527379 -0.572013 -0.019013 0.540966 0.222275 0.386483 0.019321 0.327111 -0.472048 0.949597 0.175856 -0.232150 -0.205476 -0.793649 -0.061501 0.772222 0.204173 0.274790 -0.604401 -0.748229 -0.353837 0.182930 0.696878 0.539305 0.121344 0.440425 -0.374370 -0.400523 0.070899 0.565520 -0.060151 -0.838617 0.301219 -0.418832 -0.149735 0.548868 0.085239 0.378652 -0.078055 -1.048023 -0.782668 0.275249 0.099234 -0.191397 0.572381 0.423791 -0.657635 0.162894 0.098981 0.405747 0.138727 -0.386429 -0.284256 -0.562567 -0.041994 -0.212110 0.606516 0.240009 -0.126833 0.146637 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = 0.051697 0.017584 0.029838 0.757318 -0.058184 -0.047270 0.118534 0.203214 -0.141673 -1.194383 -0.863947 1.007880 -0.028339 0.316432 0.152422 -0.249912 -0.044931 0.084613 -1.104703 0.145693 0.454379 0.153227 0.070557 0.088113 0.276112 -0.226305 0.283225 0.412455 0.306832 0.512102 -0.429889 0.033529 0.641478 0.064144 0.330015 0.509242 -0.033203 0.085712 -0.420817 -0.492651 0.759746 0.485435 -0.075757 0.552225 0.006614 0.748559 0.235608 0.298791 0.755751 -0.669932 -0.068667 -0.075345 -0.360376 -0.276760 -0.216985 0.338853 0.184623 0.428659 -0.390986 0.175991 -0.118189 -0.217744 0.012202 -0.364693 0.378751 0.252360 0.410773 0.357596 0.545805 -0.641155 -0.240788 0.559402 0.249679 0.390384 0.164171 -0.187335 -0.598514 -0.442695 -0.022670 -1.078674 -0.854988 0.128067 1.038329 -0.706738 0.153673 0.086678 -0.325100 0.445771 -0.143504 0.073913 -0.706964 -0.192070 0.026737 0.278024 0.341046 -0.354627 0.339012 0.346098 0.335042 0.687632 -0.018882 -0.486255 -0.282719 -1.103454 -0.020793 -0.190291 0.323747 0.411264 -0.502079 -0.229136 0.185620 1.177114 -0.783269 -0.166809 0.526791 0.347053 -0.277236 -0.151558 -0.134514 0.016978 0.427588 -0.273163 0.839375 -0.413650 0.106505 0.380124 0.023617 -0.144360 0.201090 0.262274 -0.394539 -0.914623 -0.009518 0.273860 -0.096853 -0.112781 0.057871 -0.060521 0.580852 -0.189156 0.652067 -0.630927 0.189639 -0.033575 -0.252792 -0.249360 0.853333 0.678914 0.530874 -0.284718 -0.131740 -0.188803 -0.431710 -0.702281 0.387715 0.256480 0.469091 0.240082 -0.141086 0.550537 -0.426625 0.086814 -0.106075 -0.129520 -0.077167 0.250662 -0.042088 -0.154780 0.013762 -0.655911 0.067025 -0.122282 -0.318138 0.382882 -0.283774 -1.052009 -0.663413 -0.560146 0.570677 -0.127507 -0.031181 -0.171224 -0.082254 -0.050635 0.054460 -0.663491 0.017111 -0.043096 -0.620207 -0.714119 0.105415 -0.245163 -0.230353 0.279810 -0.360416 -0.223712 0.403810 0.345016 0.312719 0.086144 0.181124 -0.549940 -0.280422 0.034999 -0.520175 0.451249 0.430171 -0.128455 -1.063424 -0.292538 -0.580641 0.612671 -0.424304 0.165313 -0.528809 -0.295934 0.730021 -0.297144 0.225679 -0.433674 0.283606 0.740012 -1.775448 0.425443 0.643619 -0.053437 -0.085089 0.289193 -0.204115 0.693987 0.517277 -0.664645 -0.488165 0.019008 -0.409004 0.243507 -0.129352 0.422722 -0.351586 0.059018 -0.377607 -0.381764 0.338309 0.091309 0.209398 0.252449 0.424994 0.307670 0.388698 0.609052 0.449911 -0.068921 -0.572883 -1.261889 0.743968 0.898271 -0.028320 0.394574 -0.500782 -0.423437 0.073972 -0.486867 0.447312 -0.247554 -0.400145 0.610435 -0.545804 -0.350606 -0.320465 -0.314761 0.015604 -0.004235 0.528129 -0.010735 0.156803 0.218255 -0.442780 -0.083420 0.017790 -0.205592 0.039810 0.189226 0.384379 0.440191 0.692686 -0.011251 -0.622806 0.001722 0.064621 -0.037970 -0.405514 -0.841596 -0.234730 -0.012822 0.205528 -0.148061 -0.056314 -0.112037 -0.206586 0.055026 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.391903 -0.146028 0.308066 0.221538 0.383724 -0.291051 0.145874 0.300621 -0.024866 -0.737229 -0.444539 -0.127069 -0.130385 -0.292052 0.268907 0.064297 0.217393 0.244506 -0.619700 0.301308 0.210035 0.234828 0.046438 -0.238337 0.161645 -0.196144 -0.394234 0.183124 0.038526 0.375916 -0.410977 -0.048671 0.289721 0.144791 0.199641 0.384291 0.264234 -0.149724 0.328569 0.082989 0.864709 0.051805 0.097826 0.369283 0.498732 0.415514 -0.257903 0.680756 0.124021 -0.147574 0.427161 -0.726974 -0.243001 0.130030 -0.530214 0.429006 0.605299 0.286377 -0.371239 0.297837 -0.084390 0.123333 0.091090 -0.391884 0.434539 0.452662 0.010843 0.151983 0.842968 -0.176019 -0.152109 0.271239 0.581108 0.160042 0.025673 -0.344514 0.121563 -1.079576 -0.081483 -0.526445 0.175893 -0.267400 0.764183 -0.372230 0.204036 0.641124 -0.030234 0.311151 -0.135369 -0.147673 -0.422180 0.267931 -0.001850 0.513157 -0.142338 0.118451 -0.148543 0.078685 0.102372 0.386499 -0.024945 -0.159473 -0.784669 -1.134898 -0.500132 -0.070802 -0.060081 -0.290602 -0.707612 0.022334 0.526395 0.309552 -0.606366 -0.102354 0.259660 0.230025 -0.296057 0.105137 -0.468548 -0.285408 -0.075300 0.205244 -0.169007 -0.216234 -0.164436 -0.753790 -0.031981 0.060241 0.253958 -0.341086 -0.112644 -0.167673 -0.176735 0.056951 -0.136441 -0.128635 -0.031939 -0.463716 0.238234 -0.262760 0.254232 -0.577654 -0.136773 -0.392750 -0.373480 -0.010162 1.077113 0.081854 0.352363 0.369120 -0.300811 -0.379341 -0.385941 -0.567219 0.116576 -0.372786 0.485039 0.018218 0.018659 -0.148226 -0.017670 -0.404613 -0.091917 -0.348855 0.011026 -0.372238 0.336932 -0.361588 -0.092299 -0.683515 0.094887 0.834142 -0.275465 -0.173985 -0.265283 -0.036385 -0.270960 -0.551946 0.282681 -0.118304 0.242423 -0.118293 0.279189 -0.469350 0.301657 -0.266764 0.053273 -0.130749 -0.529949 -0.445851 -0.003549 -0.179683 -0.028419 -0.000942 -0.292490 0.138954 0.003415 0.430105 0.090498 0.111643 -0.109775 -0.816679 -0.812384 -0.409075 0.157440 0.392597 0.225767 0.145770 -0.319572 -0.184915 -0.400843 0.506994 -0.597177 -0.090796 0.089479 -0.222057 0.505101 -0.180932 -0.146066 -0.579551 0.184512 0.001249 -0.691554 0.614644 0.245489 -0.539573 -0.384577 -0.731174 0.177395 0.290191 0.830074 -0.116115 0.102385 0.242118 -0.038873 -0.138319 -0.469252 0.426964 -0.103245 0.555348 -0.563141 -0.444154 0.151666 0.596649 -0.166077 0.205294 0.162205 0.443843 0.010694 0.594574 0.099155 -0.071363 -0.314697 -0.841902 0.066213 0.668203 0.207868 0.277027 -0.451436 -0.366770 -0.047478 0.253022 0.606662 0.555650 0.502781 0.373712 -0.237236 -0.436816 0.220898 0.120902 0.126764 -0.476704 0.208315 -0.314087 -0.162624 0.015129 0.214007 0.223246 -0.298047 -0.765061 -0.143622 0.401284 0.300219 -0.159677 0.454977 0.147812 -0.300227 0.148030 -0.012966 0.436338 0.132335 0.056985 -0.181925 -0.341033 -0.105571 -0.192766 0.694605 -0.076952 0.137720 0.149136 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.314152 -0.179228 0.262349 0.262052 0.391970 -0.194787 0.121459 0.168686 0.028311 -0.663205 -0.308663 0.030654 -0.114616 -0.194684 0.163166 0.054529 0.243696 0.234244 -0.368791 0.213421 0.107257 0.179422 0.020702 -0.197738 0.113780 -0.185194 -0.110828 0.176288 0.079617 0.334628 -0.359766 -0.050459 0.266353 0.118248 0.200042 0.350582 0.388631 -0.116745 0.086137 -0.009182 0.795627 0.002762 0.111476 0.392332 0.410781 0.390011 -0.091285 0.599834 0.255973 -0.127016 0.290936 -0.517056 -0.182836 0.028034 -0.541848 0.405629 0.430432 0.223336 -0.375233 0.244735 0.022420 0.108624 0.081619 -0.267569 0.338331 0.315900 0.010386 0.175759 0.734803 -0.242220 -0.180591 0.290329 0.555081 0.249260 0.169741 -0.285292 0.023780 -0.805587 -0.103333 -0.297201 0.169174 -0.238223 0.620105 -0.334647 0.139215 0.553181 -0.074157 0.256183 -0.089922 -0.127840 -0.434568 0.219103 0.050833 0.448132 -0.053133 0.082977 -0.124691 0.065205 0.069083 0.368752 0.072737 -0.216850 -0.529887 -0.960902 -0.446132 -0.137012 -0.044411 -0.253872 -0.553517 0.007071 0.375385 0.365817 -0.519213 -0.092733 0.220374 0.176514 -0.116901 -0.069575 -0.268418 -0.199335 -0.005515 0.115667 -0.149515 -0.208811 -0.151847 -0.489460 -0.003054 0.015490 0.236774 -0.269627 -0.061379 -0.171069 -0.157930 0.157280 -0.114053 -0.164791 -0.032410 -0.484932 0.217630 -0.189173 0.233037 -0.429594 -0.148437 -0.298811 -0.318361 -0.058185 0.993765 -0.068720 0.458917 0.279267 -0.288039 -0.344553 -0.312611 -0.599144 0.154633 -0.278849 0.318759 0.125507 0.000133 -0.075666 -0.076351 -0.365344 0.011115 -0.310318 -0.034449 -0.238853 0.106429 -0.350635 -0.060670 -0.600298 0.113122 0.692408 -0.112022 -0.087741 -0.258634 -0.216695 -0.222340 -0.477627 0.255868 -0.145032 0.214138 -0.040323 0.134452 -0.376357 0.237560 -0.265150 0.095020 -0.148597 -0.478457 -0.421791 0.040282 -0.202946 -0.001847 0.088112 -0.310629 0.171381 -0.127384 0.287889 0.044877 0.083705 -0.082311 -0.749596 -0.684071 -0.317111 0.124004 0.370767 0.116546 0.144512 -0.270915 -0.217457 -0.328118 0.386369 -0.628922 -0.044794 0.152455 -0.194935 0.394749 -0.182740 -0.097217 -0.480525 0.208146 0.077992 -0.515905 0.546203 0.271135 -0.477652 -0.341695 -0.510429 0.130870 0.232190 0.745112 -0.188497 0.026419 0.265905 -0.002545 -0.110995 -0.397251 0.342340 -0.030554 0.462516 -0.548111 -0.429902 0.084882 0.523251 -0.144090 0.116084 0.201989 0.313830 -0.078351 0.595744 0.125329 0.087216 -0.322624 -0.715317 0.095060 0.466780 0.169011 0.300375 -0.424120 -0.261456 0.030445 0.153351 0.520843 0.335155 0.413959 0.375337 -0.279914 -0.392082 0.223990 -0.038523 0.149926 -0.396922 0.274449 -0.325340 -0.147260 -0.103651 0.153856 0.043247 -0.128029 -0.451258 -0.071565 0.309576 0.267152 -0.064411 0.414412 0.122589 -0.289306 0.167320 -0.007333 0.351959 0.120290 -0.088295 -0.146707 -0.261159 -0.063199 -0.171251 0.560000 -0.117248 0.109281 0.094762 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 0.627235 0.167240 -0.073322 0.957907 0.497498 -0.931913 -0.190177 0.700224 -0.323144 -0.955593 -1.043090 0.419872 -0.003955 0.056456 0.802240 0.079611 -0.172215 0.071369 -1.301405 0.861710 -0.119717 0.272041 -0.615984 -0.719881 0.197560 0.191086 -0.512193 0.619401 -0.010942 0.162919 -0.815651 0.036272 0.284061 0.071203 0.670572 -0.197050 0.640532 -0.189219 -0.352100 -0.142225 1.583032 0.398544 0.225250 0.834044 0.683913 0.658411 -0.457552 1.117597 -0.337392 -0.378020 0.589253 -0.880775 -0.478206 0.078466 -0.885024 1.325857 0.815012 0.128548 -0.746046 0.580724 -0.030850 -0.108598 0.313150 -0.835416 1.390782 0.549644 0.693642 0.321837 1.233259 -0.132458 -0.538482 0.562631 1.405320 0.147386 -0.149126 -0.887237 -0.033096 -1.757882 0.419864 -1.363913 0.156528 -0.442208 1.442149 -0.932049 0.357269 0.976570 -0.144992 0.544069 -0.990099 0.091494 -0.583880 -0.034557 -0.378540 1.258465 -0.117624 -0.273024 0.333929 0.412815 0.621691 1.132299 -0.482652 0.237766 -0.925884 -1.891064 -0.906447 0.921888 -0.016972 -0.538283 -0.748883 -0.455984 0.712458 0.753276 -0.672348 -0.623716 0.853961 0.121343 -0.298727 0.157520 -0.691040 -0.280614 0.039901 0.289208 0.403519 -0.307383 0.198350 -0.527997 0.060044 0.018438 0.874099 -0.073045 -0.700718 -0.454914 -0.467548 -0.038444 -0.229756 -0.925121 -0.375463 -0.820215 0.820626 -0.081894 0.507578 -1.204056 -0.046188 -0.756168 -0.539345 0.477652 1.437765 0.358383 0.749151 0.759772 -0.447460 -0.491129 -1.008093 -1.343986 0.579458 0.441597 0.575970 -0.261129 0.016691 -0.040291 0.319933 -0.835825 0.782105 -1.029017 -0.643996 -0.668769 0.966999 -0.268854 -0.313931 -1.448004 0.629364 1.068024 -0.618397 -0.235412 -0.119211 -0.802455 -0.252343 -0.706926 0.322866 0.268546 0.503776 0.038811 0.257373 -1.012608 0.422462 -1.109037 0.611201 -0.028459 -1.110968 -0.621844 -0.299532 -0.030886 -0.110666 -0.373649 -0.515424 0.345718 0.228913 0.856963 -0.185142 0.320563 0.470714 -1.399599 -1.500484 -0.715683 0.221649 0.884359 0.520684 0.520233 -0.525142 -0.019150 -0.811116 0.867296 -1.064825 -0.383473 -0.201772 -0.435485 0.825272 -0.775394 -0.610062 -0.914066 0.254823 0.187786 -1.174873 1.095259 0.676874 -0.710350 -0.728819 -1.065405 0.212450 0.667014 2.136920 -0.448963 0.189576 0.118899 0.276273 -0.458065 -0.764833 0.944216 -0.147523 0.257741 -0.823889 -0.882179 -0.114745 0.837558 0.265896 0.560279 0.037182 0.755786 -0.330144 1.011151 0.237638 -0.490198 -0.462765 -1.520850 0.429052 0.988911 -0.232723 0.238462 -0.773292 -0.865954 -0.428720 0.262903 0.838148 0.773990 0.651239 0.521007 -0.672961 -0.667548 0.104996 0.599167 -0.368474 -0.728465 0.431298 -0.639912 -0.105967 0.215270 -0.206109 -0.150376 -0.113047 -1.849267 -0.717166 0.162138 0.349919 -0.013011 0.965661 0.415341 -0.552470 0.055673 -0.144480 0.456823 0.125924 -0.366421 -0.619431 -0.930477 -0.455244 -0.100094 0.527867 0.177833 -0.177919 0.569630 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 4.900731 0.252592 0.106218 5.540296 0.339890 -7.561063 2.069634 6.648493 -2.813730 -8.346642 -4.646423 0.129689 0.473271 -2.938438 2.613434 0.558181 -3.472898 1.388915 -14.091234 5.844203 3.831248 3.191717 -1.803797 -6.361179 1.682256 -0.261840 -3.752845 4.711902 -0.709272 5.228153 -4.371674 -1.128092 3.811292 1.294876 2.885533 4.014567 1.531618 0.519959 2.260378 2.458950 7.706373 7.178254 -4.860543 1.299722 3.857631 5.797083 0.151115 2.730804 -10.247964 -3.081368 0.455557 -3.015351 -4.849413 -1.612779 -2.398600 3.625128 10.853250 7.529451 -2.711042 4.579164 -4.962753 -0.912693 2.753119 0.076292 7.659359 4.757685 3.850476 2.841357 10.604387 -2.854847 -0.867136 2.285249 5.256140 -3.851298 1.407110 -2.753272 -5.223498 -14.077458 1.710899 -14.551483 -4.238709 1.844689 8.051867 -6.441508 4.178755 5.731877 3.486368 5.051212 -7.178428 -0.984539 -3.438500 0.061144 -4.671267 15.796346 -0.906272 1.541381 0.865356 5.286315 6.229349 5.670688 -0.936410 -2.063698 -5.711759 -12.480380 -2.234774 1.024629 -2.749634 -0.318723 -7.425159 -3.907535 8.319483 5.628099 -9.010785 -0.547115 5.417089 3.646791 2.649179 -3.013181 -5.156182 3.588974 -2.688914 -1.083251 3.690616 -4.934245 -0.674830 -1.250345 1.959212 1.790309 1.490453 0.460804 -10.370156 -1.024552 0.735570 -4.366122 -0.375033 -0.138764 -1.396249 -5.899205 2.848637 -7.458483 5.795109 -9.858571 2.980985 -1.671194 -7.074536 1.754961 2.575626 4.035807 -2.164089 -0.312622 -2.891009 -1.529849 -6.267794 -11.736183 3.125145 2.099736 4.182288 -3.535863 -0.511433 -1.405674 -1.599905 -2.399326 3.410428 -4.031920 -0.746724 -2.893660 13.250575 -0.058764 -1.778304 -4.092953 0.119145 5.614227 1.455863 2.194507 -2.949761 -3.649655 -7.704219 -5.591620 4.771420 0.922203 -2.226587 -3.530966 0.737285 -8.949247 5.186568 -4.389812 5.876743 -0.134880 -3.367904 -6.017017 -0.637450 -0.361403 -1.010400 -2.464351 -2.699291 -1.713250 1.613996 0.031120 -0.000885 0.378381 4.083689 -6.931186 -8.299254 0.087057 1.763278 6.598445 2.352061 2.628569 -3.238339 0.729779 -6.780578 8.047233 -1.567786 -0.275523 -3.612889 -2.279978 10.448920 -2.577118 -4.508846 -6.843474 2.662006 0.675675 0.928427 12.453423 5.675340 -3.660389 -2.771629 -2.729665 0.243739 6.228672 9.214015 -5.424592 -4.236567 1.538018 -1.764140 -1.679891 -1.921622 4.853139 -4.781110 5.037449 -3.721447 -3.238244 0.730788 5.713444 0.134009 5.157220 -1.960134 -0.640508 -3.206515 5.753755 2.349276 -2.337051 -4.709708 -6.779341 3.542041 -3.667187 0.236912 -3.230547 -2.710747 -6.564614 -0.232621 5.137241 6.940572 10.869402 -4.522184 3.935089 -7.996153 -6.107634 -2.544772 4.122796 -0.019808 -4.596278 0.881430 -1.979180 1.892283 4.243261 0.470621 2.906815 -5.141652 -7.280844 -3.364465 3.701696 1.233501 -6.039432 7.642220 0.770492 -2.292971 -1.411284 -0.002831 1.779030 0.462626 1.285279 -2.600699 -4.507911 2.191930 -1.959041 6.948126 1.511619 -1.046771 4.895791 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.474296 -0.304962 0.605963 0.378050 0.389852 -0.573219 0.389793 0.644143 -0.228028 -1.018448 -0.475633 -0.544649 -0.165698 -0.456809 0.330026 -0.095743 0.045917 0.172599 -1.646671 0.430172 0.457616 0.334608 0.139973 -0.578420 0.178528 -0.393226 -0.437385 0.794222 -0.132228 0.625831 -0.462239 -0.252665 0.441885 0.340597 0.355013 0.736997 0.403894 -0.071464 0.437951 0.445707 1.173875 0.492773 -0.504130 0.132082 0.738357 0.738792 0.065689 0.249691 -0.561301 -0.241132 0.211691 -0.790749 -0.493909 -0.238221 -0.617347 0.282700 1.283550 0.886615 -0.508981 0.625844 -0.541772 -0.019335 0.207056 -0.110725 0.752859 0.377110 0.293618 0.156208 1.226170 -0.460533 -0.288845 0.389448 0.681045 -0.153939 -0.141967 -0.341954 -0.254408 -2.400257 0.154409 -1.438406 -0.319939 0.023479 0.477315 -0.421395 0.329977 0.960074 -0.000410 0.421168 -0.553790 -0.348309 -0.607055 0.211697 -0.068051 1.513343 -0.135359 0.110927 0.250661 0.467724 0.631166 0.760027 0.090945 -0.325318 -0.958459 -1.813992 -0.382198 -0.160165 -0.151942 -0.370537 -0.776089 -0.255664 1.225081 0.315798 -0.851182 -0.026869 0.593486 0.515739 -0.285064 -0.741921 -0.497559 0.047561 -0.285666 0.073412 0.291839 -0.596883 -0.150316 -0.540325 0.362634 0.219969 0.198650 -0.307564 -0.513403 -0.149110 0.106000 -0.237944 -0.141853 -0.168450 -0.248741 -0.572968 0.274884 -0.882841 0.736476 -0.929676 0.506390 -0.351161 -0.459086 0.074439 0.775418 0.266522 -0.298226 0.305412 -0.477899 -0.086341 -0.451044 -1.386419 0.278498 0.053916 0.665456 -0.376550 -0.135944 -0.210210 -0.111010 -0.460698 0.007284 -0.370758 0.067731 -0.371978 0.707399 -0.079340 -0.231450 -0.484036 0.243360 1.142952 -0.007584 0.043797 -0.516442 -0.094164 -0.500603 -0.842317 0.493178 -0.054823 -0.221800 -0.255997 0.118206 -1.047618 0.849630 -0.365081 0.482681 -0.202456 -0.655533 -0.682731 0.003910 -0.269274 0.145590 -0.014300 -0.365733 -0.133385 -0.221790 0.111252 0.140843 0.000296 0.235751 -0.870110 -1.036230 -0.335949 0.354503 0.739819 0.020904 0.271327 -0.280612 -0.049159 -0.506936 0.907549 -0.095560 -0.099545 -0.158252 -0.620986 1.030782 -0.062488 -0.372146 -0.661230 0.349490 0.132473 0.206925 1.446096 0.710253 -0.657239 -0.678272 -0.624602 -0.051053 0.580876 1.141406 -0.448969 -0.223270 0.301528 -0.107644 -0.201037 -0.331859 0.542919 -0.170959 0.743982 -0.792121 -0.675590 0.118313 0.896917 -0.141720 0.624596 0.035514 0.406630 -0.463980 0.902481 0.011458 -0.051348 -0.437082 -0.824694 0.329657 0.256552 0.245831 -0.046772 -0.445880 -0.764421 -0.052838 0.816609 0.893538 1.675708 -0.185769 0.565868 -0.433218 -0.714336 -0.197275 0.199466 0.122124 -0.726402 0.160702 -0.354028 0.073513 0.111313 0.142338 0.484867 -0.443941 -0.963861 -0.334979 0.379333 0.364595 -0.661549 0.809458 -0.007215 -0.364979 -0.103467 0.057131 0.379432 0.529381 0.507653 -0.354053 -0.622083 0.180467 -0.140879 0.863270 0.083066 0.141677 0.503957 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.500510 -0.757762 0.609665 0.536436 0.481382 -0.674701 0.370985 0.511912 -0.020761 -1.033318 -0.249896 -0.409939 -0.183738 -0.501973 0.268653 -0.079006 -0.052926 0.059626 -1.627297 0.599195 0.380238 0.358762 0.221483 -0.650413 0.224097 -0.448618 0.085275 0.882474 -0.144264 0.586440 -0.507675 -0.279496 0.445593 0.335708 0.350171 0.752870 0.572503 -0.064634 0.180150 0.571061 1.195354 0.510849 -0.550371 0.144809 0.753642 0.738123 0.400096 0.465500 0.018737 -0.220896 0.255402 -0.590491 -0.503862 -0.429675 -0.717028 0.348930 1.222552 0.797561 -0.525355 0.509980 -0.494706 -0.086343 0.230194 0.128771 0.832345 0.257314 0.434063 0.144652 1.384068 -0.486205 -0.385808 0.537894 0.938564 0.001437 0.319211 -0.525479 -0.629414 -2.474045 0.091180 -1.072932 -0.398117 -0.019668 0.029761 -0.436874 0.257611 0.917588 -0.019263 0.501547 -0.548780 -0.281927 -0.656823 0.279971 0.125360 1.707504 -0.175140 0.139200 0.225482 0.453528 0.619046 0.849922 0.408840 -0.451956 -0.709977 -1.812527 -0.384515 -0.263669 -0.172939 -0.427642 -0.937839 -0.123492 0.974278 0.236624 -0.850393 -0.028097 0.662892 0.510250 0.286688 -1.185229 -0.111309 0.092434 -0.089571 0.095612 0.255728 -0.711362 -0.227300 -0.478899 0.636162 0.312285 0.134690 -0.412003 -0.269867 -0.147874 0.090509 0.140467 -0.045775 -0.236033 -0.235582 -0.852987 0.225735 -0.845077 0.759245 -0.878559 0.384570 -0.346534 -0.224777 0.064271 1.092695 -0.064340 -0.066285 0.220002 -0.641367 -0.092647 -0.427003 -1.679191 0.200793 -0.053651 0.430199 -0.242833 -0.116214 -0.164836 -0.023624 -0.478562 0.042442 -0.400152 0.042002 -0.296353 -0.066076 -0.104373 -0.109771 -0.440417 0.158075 1.142952 0.261785 0.200346 -0.415353 -0.719862 -0.487359 -0.927685 0.471641 -0.067549 -0.260160 -0.335422 -0.011441 -1.159521 0.913940 -0.369024 0.532213 -0.192798 -0.762418 -0.670960 -0.035463 -0.331954 0.492085 -0.044741 -0.448303 -0.149197 -0.672063 0.156602 0.176645 0.051954 0.156408 -1.148699 -1.140030 -0.307313 0.422294 1.025834 -0.445182 0.320486 -0.175409 -0.111750 -0.515191 0.846295 -0.465877 -0.134135 -0.018704 -0.714935 1.105997 -0.015650 -0.383088 -0.681944 0.405167 0.112851 0.665380 1.668041 0.854587 -0.672833 -0.693118 -0.388202 -0.117576 0.652721 1.220305 -0.567007 -0.326080 0.303474 0.115966 -0.251728 -0.294901 0.566556 -0.263723 0.796415 -0.804299 -0.822921 -0.113372 1.005597 -0.162150 0.395148 -0.053532 0.256585 -0.816004 0.927348 0.010155 0.208189 -0.542801 -0.937798 0.305342 0.258751 0.196525 0.138553 -0.726132 -0.719627 0.070242 0.906303 1.007075 1.701965 -0.093564 0.563329 -0.615118 -0.747917 -0.188318 -0.019385 0.028901 -0.605306 0.329267 -0.444483 0.004654 0.015523 0.067503 0.167061 -0.247971 -0.545334 -0.279459 0.250103 0.410602 -0.659332 0.793633 0.091524 -0.359165 -0.170818 0.113477 0.189465 0.509069 0.588972 -0.290776 -0.613674 0.180873 -0.053914 0.883200 -0.014877 0.176019 0.271450 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.915821 0.186918 -0.129259 1.066847 0.638930 -1.088743 -0.200818 0.888344 -0.218472 -1.384730 -1.362032 0.647320 -0.004076 -0.029076 0.919586 0.216210 -0.109412 0.276896 -1.467109 1.064152 0.003628 0.482234 -0.621314 -0.833702 0.325383 0.213005 -0.768313 0.404876 0.144648 0.372003 -1.064385 0.036114 0.457417 -0.012406 0.658641 -0.071536 0.741973 -0.230283 -0.191579 -0.251227 1.958439 0.450242 0.417187 1.192947 0.847272 0.808017 -0.766933 1.792058 -0.218648 -0.533427 0.870465 -1.231442 -0.641090 0.259584 -1.040009 1.729337 1.106955 0.195154 -0.893254 0.643898 0.123285 -0.035547 0.356905 -1.166597 1.487389 0.962311 0.612122 0.444027 1.682428 -0.135847 -0.572375 0.674872 1.692909 0.291504 0.099275 -1.198285 0.014971 -1.809948 0.312335 -1.506692 0.324200 -0.695125 2.162998 -1.307804 0.546470 1.254010 -0.047112 0.747309 -0.963715 0.088833 -0.701299 0.112695 -0.489555 1.491460 -0.223573 -0.157862 0.045947 0.387606 0.572263 1.234382 -0.497538 0.212809 -1.369533 -2.286310 -1.177220 0.896390 -0.012970 -0.499069 -1.219694 -0.430152 0.737293 0.971511 -1.090524 -0.654722 0.992083 0.212625 -0.210132 0.631688 -1.031644 -0.425748 0.018835 0.304968 0.141923 -0.390791 0.026156 -0.904015 -0.129783 -0.000265 0.961668 -0.247233 -0.888191 -0.564726 -0.709568 0.034382 -0.261527 -0.931488 -0.250517 -1.211788 0.986092 -0.074772 0.461223 -1.540992 -0.418563 -0.889749 -0.846130 0.422816 2.094216 0.321454 1.177568 0.852400 -0.570532 -0.942586 -1.290615 -1.420510 0.628331 0.128344 0.825372 -0.095071 0.092901 -0.091271 0.319870 -1.016741 0.677699 -1.212936 -0.611853 -0.846997 1.419740 -0.638231 -0.275015 -1.941875 0.518746 1.352139 -0.816128 -0.369422 -0.165150 -0.877842 -0.475311 -0.920867 0.482049 0.192363 0.820462 -0.064934 0.475139 -1.125898 0.342708 -1.286360 0.569393 -0.037674 -1.364572 -0.850026 -0.291108 -0.064945 -0.217139 -0.389414 -0.694675 0.458411 0.376644 1.269093 -0.154685 0.378243 0.358718 -2.010267 -1.933321 -0.921507 0.148665 1.091110 0.747161 0.534705 -0.710247 -0.131362 -1.110875 1.051151 -1.647570 -0.434101 -0.215167 -0.287628 1.073123 -0.942968 -0.670284 -1.443628 0.303174 0.159588 -1.767008 1.313746 0.633522 -0.882789 -0.733416 -1.397081 0.356193 0.846192 2.469920 -0.486193 0.153697 0.244083 0.124584 -0.513006 -1.090532 1.204103 -0.348561 0.588949 -0.984251 -0.952989 -0.061240 1.087394 0.170725 0.635343 0.179092 0.887117 -0.139343 1.215244 0.422213 -0.635412 -0.685925 -2.070057 0.463656 1.319449 -0.171748 0.333399 -1.038662 -0.985801 -0.368496 0.342672 1.101813 0.772560 1.176188 0.667158 -0.967279 -0.884987 0.414554 0.711873 -0.258982 -0.864120 0.480215 -0.772274 -0.188599 0.325695 -0.112207 -0.085826 -0.357594 -2.204149 -0.748261 0.497854 0.452749 0.051533 1.172217 0.570057 -0.731072 0.277304 -0.222819 0.745934 -0.113158 -0.447343 -0.602910 -1.005017 -0.615684 -0.261233 0.934907 0.089095 -0.232728 0.559068 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 2.799374 -0.462619 -0.234637 2.986624 1.227288 -2.729859 -0.414316 2.024501 -0.664439 -3.449298 -3.063151 2.735750 -0.347887 -0.458839 1.898912 0.258171 -0.058714 -0.484353 -4.964513 2.877505 -0.222237 0.243616 -1.656142 -1.827825 0.875205 0.581221 0.300152 1.450225 0.068622 1.269208 -2.656497 0.427752 0.729540 0.600669 2.687407 -0.019192 0.151157 -0.734501 -0.783183 -1.019980 4.525270 1.818709 0.137741 2.721862 2.335835 1.862398 -0.648371 3.863587 1.126822 -0.578679 1.949028 -1.163738 -1.595187 0.718985 -2.786004 2.648052 2.612513 -0.210535 -1.774250 1.022138 -0.296734 0.043585 0.753186 -1.322114 4.215661 1.490645 2.122015 1.171866 3.708587 -0.871151 -0.781939 1.567896 4.753052 1.008131 0.059973 -2.531679 -1.361477 -3.387714 0.496987 -3.939066 0.079180 -1.513147 3.871076 -2.301591 1.050229 1.262200 -0.539524 1.844858 -2.765352 0.565233 -1.837158 0.215361 -1.144361 3.437308 -0.953102 0.331638 0.641102 0.907904 1.140680 3.029619 -1.009490 -0.699221 -1.287502 -5.498774 -1.701972 1.879787 -0.420265 -1.312214 -2.789558 -0.117533 0.493612 2.643762 -2.063927 -2.103003 1.452541 0.000288 0.008388 0.663231 -1.700228 -0.859731 -0.060153 1.566428 1.187695 -0.848637 0.222171 -2.169554 0.163277 0.684815 2.713746 0.377013 -1.872758 -1.254516 -0.414749 0.505397 -1.085822 -1.762213 -0.642007 -1.980015 1.784256 -0.276207 1.676914 -3.389863 -0.872997 -2.699320 -1.100633 1.213539 3.790760 1.516557 2.601914 2.027147 -0.298904 -1.008173 -2.846840 -3.725368 1.663953 0.074223 0.804253 -0.627915 0.484562 0.401177 0.068209 -2.512809 1.839008 -2.846075 -1.735347 -2.738662 1.644478 -0.663653 -0.517124 -2.819564 1.080926 2.501532 -1.189261 0.314110 -0.566908 -4.491649 -2.069387 -2.201206 1.469046 0.082306 0.659033 -0.038202 1.241410 -2.434107 0.820357 -2.514972 1.360305 -0.331765 -2.864017 -1.961362 -1.101798 -0.172320 0.534326 -1.162194 -1.476621 0.627378 1.139836 3.241281 -0.270393 1.854157 0.839693 -4.110762 -4.364894 -1.258526 1.024018 3.333895 0.755882 0.516039 -2.125312 -0.732606 -2.667725 2.832526 -3.843751 -0.271941 -0.500762 -1.075978 2.788267 -1.696265 -1.524129 -2.112410 1.075132 0.761525 -4.282978 3.426350 2.102831 -2.310518 -1.633767 -3.137783 1.294961 1.748638 5.579309 -1.626935 0.028084 0.399887 0.940774 -1.100623 -1.966485 2.893906 -0.679357 0.950402 -2.320570 -2.675542 0.301561 1.770029 0.858027 0.639973 -0.207854 1.352253 -0.531294 3.488083 1.010829 -0.527420 -2.235491 -5.649914 0.732528 3.270843 -0.265924 1.340070 -2.623014 -3.169563 -1.353305 -0.250988 2.806743 1.065278 1.271309 1.650628 -2.222207 -2.024314 -0.526739 1.212664 -1.001664 -1.619910 1.565306 -2.005236 -0.560067 0.708514 0.198154 -0.552667 -0.120853 -3.798028 -1.614284 0.700191 1.274187 -0.164570 2.436488 1.932101 -2.029743 -0.183263 0.129763 0.428835 -0.102994 -2.051277 -1.613805 -2.262514 -0.507622 -0.834749 1.804058 1.127199 0.753701 0.167096 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = 0.980684 -0.471049 0.073941 0.894746 0.405923 -1.176529 0.424236 0.773503 -0.152765 -1.557521 -0.616196 0.117703 0.010994 -0.881761 0.313445 0.292715 -0.169735 0.336798 -1.980072 1.003636 0.533907 0.429534 -0.349202 -0.890592 0.195248 -0.538437 -0.309458 0.825820 -0.215292 0.973227 -0.685745 -0.124886 0.722312 0.180327 0.478430 1.055707 0.433635 -0.035511 0.538372 0.689472 1.679473 0.887957 -0.533967 0.321585 0.981726 1.090351 0.003998 1.116939 -0.800966 -0.375030 0.487266 -0.313863 -0.775714 -0.253333 -0.967188 0.613270 1.679826 0.821737 -0.709336 0.785431 -0.814385 -0.020556 0.488166 0.207983 1.415941 0.817774 0.584248 0.520540 2.128272 -0.452327 -0.226568 0.594072 1.207530 -0.305270 0.789100 -0.472984 -0.965343 -2.240584 0.062686 -1.671666 -0.287268 -0.005445 1.308685 -0.986433 0.318549 1.099835 0.635340 1.011532 -0.992951 -0.348511 -0.814972 0.333408 -0.459035 2.673233 -0.171174 0.587074 -0.277688 0.691991 0.659252 0.896169 0.034307 -0.723854 -1.112922 -2.498003 -0.818805 -0.400350 -0.471745 -0.395955 -1.749077 -0.330482 1.289830 0.933500 -1.676495 0.076998 0.870640 0.459721 0.883862 -0.537471 -0.845369 0.296349 -0.300898 0.082407 0.145237 -0.635522 -0.362138 -0.791855 0.621308 0.334261 0.178762 -0.377873 -1.406597 0.015011 0.132681 -0.288256 -0.026641 0.030797 -0.064150 -1.405140 0.391579 -1.171373 0.912628 -1.689289 0.127873 -0.628985 -1.135469 0.072734 1.177096 0.482013 0.321751 0.054866 -0.655516 -0.424717 -1.299832 -2.371518 0.287322 -0.396601 0.536594 -0.445904 -0.068818 -0.425526 -0.206691 -0.454186 0.486791 -0.762655 0.045673 -0.557025 1.598220 -0.195578 -0.275100 -0.756407 -0.257503 1.212470 0.513638 0.340679 -0.530648 -1.137504 -1.251330 -1.093864 0.791500 -0.078386 -0.125143 -0.663382 -0.014083 -1.593094 0.884565 -0.579683 0.717620 -0.293019 -0.651390 -1.068552 -0.089748 -0.215440 0.025846 -0.438260 -0.723585 -0.070881 -0.028612 0.026481 0.171490 0.104309 0.161780 -1.519571 -1.563390 -0.071468 0.399050 1.390250 0.382191 0.470631 -0.359851 -0.067765 -1.304256 1.182559 -1.036152 -0.057585 0.069756 -0.774575 1.702153 -0.457650 -0.799876 -1.149401 0.546687 -0.215575 0.100624 2.327130 1.131901 -1.023007 -0.631577 -0.624044 0.175529 0.917502 1.679581 -0.808078 -0.418628 0.430488 -0.069530 -0.366582 -0.299113 0.861279 -0.702609 1.238119 -1.011550 -0.756670 0.246506 1.388788 -0.281605 0.464555 -0.399582 -0.075067 -0.547121 1.118592 0.332232 -0.007717 -0.949703 -1.647961 0.334853 -0.702903 -0.003595 -0.026811 -0.679495 -0.971807 0.069822 0.692595 1.482997 1.409266 -0.284799 0.776002 -1.364574 -1.295700 -0.266423 0.295826 0.091883 -0.843361 0.530830 -0.616469 0.038087 0.215645 0.422373 0.243110 -0.865481 -0.850104 -0.254332 0.687818 0.434041 -1.094197 1.244800 0.185993 -0.363274 -0.249084 0.002206 0.368815 0.397437 0.111289 -0.447535 -0.861787 0.350350 -0.377143 1.566887 0.008775 0.337000 0.668592 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.215003 0.030562 0.126760 0.210056 0.079989 -0.336363 0.159363 0.306163 -0.153934 -0.604187 -0.399433 -0.230834 -0.037422 -0.256028 0.252867 0.052793 -0.009596 0.268739 -0.690726 0.269731 0.314297 0.225018 0.027132 -0.234102 0.092400 -0.140385 -0.560751 0.184590 -0.016566 0.400594 -0.282709 -0.009815 0.287597 0.097407 0.078419 0.356358 0.122596 -0.023586 0.390700 0.229639 0.582131 0.161457 -0.077410 0.106740 0.309731 0.382114 -0.217453 0.284343 -0.336722 -0.196869 0.256979 -0.535116 -0.219282 0.067430 -0.255427 0.233909 0.587875 0.435024 -0.216787 0.325843 -0.297439 0.050379 0.123183 -0.295511 0.421740 0.398883 0.040928 0.157839 0.653909 -0.127776 -0.032003 0.099162 0.277756 -0.175408 -0.063726 -0.104427 0.021029 -1.090171 -0.052602 -0.763604 -0.052602 0.013957 0.667691 -0.383782 0.204028 0.524566 0.096145 0.312256 -0.246789 -0.122007 -0.285668 0.118633 -0.116903 0.573187 -0.017198 0.060319 -0.122192 0.179852 0.226697 0.256272 -0.137474 -0.110034 -0.732597 -0.966395 -0.354580 -0.031002 -0.097800 -0.112955 -0.626389 -0.142126 0.683474 0.330915 -0.637742 0.006849 0.300424 0.255769 -0.304608 0.020972 -0.528266 -0.005972 -0.158885 0.106183 0.086374 -0.227385 -0.087099 -0.509917 -0.002201 0.050346 0.127436 -0.187399 -0.296621 -0.131164 -0.050978 -0.181415 -0.070766 0.017994 -0.007486 -0.238662 0.199848 -0.392775 0.301114 -0.575640 0.105518 -0.215555 -0.417287 0.019096 0.623599 0.319379 0.003407 0.120209 -0.294072 -0.202157 -0.402948 -0.569783 0.148830 -0.153538 0.462025 -0.128856 -0.029087 -0.150708 -0.026799 -0.165075 -0.006346 -0.254625 0.059045 -0.210821 0.622525 -0.130845 -0.153555 -0.507993 -0.006536 0.566728 -0.174262 -0.084264 -0.231265 0.167348 -0.352915 -0.404290 0.301703 -0.038908 0.076467 -0.204153 0.176825 -0.493117 0.317175 -0.224713 0.082951 -0.031585 -0.316616 -0.408896 -0.036613 -0.073685 -0.169103 -0.080970 -0.200462 -0.020817 0.159366 0.132799 0.104371 0.025820 0.055924 -0.453748 -0.568037 -0.222439 0.033685 0.246195 0.335926 0.156590 -0.328944 -0.032083 -0.390169 0.505825 -0.223367 -0.046288 -0.092141 -0.195733 0.563107 -0.152382 -0.226877 -0.418779 0.141128 -0.010530 -0.507116 0.561240 0.272584 -0.339708 -0.211874 -0.463631 0.104748 0.336397 0.593322 -0.147796 0.009914 0.141392 -0.143859 -0.082852 -0.272292 0.334529 -0.238533 0.395085 -0.319682 -0.193568 0.180514 0.453945 -0.080349 0.297631 0.035522 0.273387 0.031051 0.340685 0.092461 -0.231864 -0.211178 -0.540521 0.157181 0.269650 0.138095 0.061205 -0.236599 -0.296319 -0.017154 0.224273 0.469119 0.606924 0.068775 0.291319 -0.258215 -0.404787 0.006216 0.245745 0.081534 -0.400550 0.133559 -0.150284 0.017275 0.199972 0.157430 0.327929 -0.379017 -0.707833 -0.140305 0.362202 0.186484 -0.267937 0.440280 0.016029 -0.240317 0.014341 -0.043606 0.272628 0.069714 0.119449 -0.174409 -0.265512 0.057887 -0.191423 0.565805 -0.078589 0.000000 0.305528 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.113403 0.035122 0.077077 0.093794 -0.001062 0.067617 0.021727 -0.042790 -0.133745 -0.234652 -0.169328 -0.233502 -0.034357 0.072631 0.152990 -0.003545 0.064735 0.080609 -0.104479 -0.051535 0.117836 -0.012991 0.101721 0.089528 0.007108 -0.100701 -0.190334 0.069022 0.029247 0.149339 -0.088073 0.101396 0.114994 0.062894 0.025688 0.075433 0.062743 -0.004418 0.019851 0.065163 0.179868 -0.109718 0.007356 -0.040594 0.002114 0.145983 -0.060894 -0.072816 -0.018691 -0.097802 0.100223 -0.274703 0.041449 0.046784 -0.100407 0.014700 0.045182 0.173032 -0.068463 0.079998 -0.148186 0.052624 -0.014169 -0.183996 0.133385 0.014719 0.051951 0.065816 0.019810 -0.108930 -0.013634 0.019623 -0.062468 -0.042526 -0.193998 0.104854 0.159894 -0.479232 -0.057995 -0.182339 -0.055829 0.065483 0.144521 -0.073401 -0.045399 0.167548 -0.139138 0.081772 -0.027133 0.036560 -0.164392 -0.012169 0.094986 -0.124327 0.132357 -0.138652 0.016421 0.034074 0.058996 0.076464 -0.061402 -0.022229 -0.283984 -0.298498 -0.172823 0.001851 0.101090 0.006066 -0.134901 -0.032505 0.319348 0.142607 -0.140160 0.022250 0.061275 0.155761 -0.327766 -0.057717 -0.183262 -0.041211 0.023414 0.087457 0.180601 -0.035136 0.092999 -0.203733 0.012373 -0.049939 0.107241 -0.040158 0.105175 -0.148447 -0.000736 -0.047822 -0.042738 -0.007356 0.046209 0.135118 0.119486 -0.048864 0.138232 -0.104925 0.149017 -0.064488 -0.074501 -0.025317 0.322400 0.232703 -0.010848 0.078024 -0.192576 0.023465 -0.091334 -0.144935 0.029778 0.075876 0.176693 0.047848 -0.056745 0.094986 -0.026525 0.036664 -0.002493 -0.061673 -0.023996 0.020645 -0.103221 0.013243 -0.093363 -0.229540 0.073688 0.130846 -0.208592 0.013267 -0.079477 0.226383 -0.070760 -0.127223 0.100680 -0.065508 0.054821 0.000000 0.041918 -0.158599 0.117163 -0.104422 -0.080586 0.023006 -0.173357 -0.149458 0.011226 -0.043135 -0.153206 0.089855 -0.073725 -0.006483 0.064670 -0.041474 0.101170 -0.003242 0.011694 0.014937 -0.113016 -0.107060 -0.128990 -0.049493 0.140559 -0.015242 -0.189677 -0.073833 -0.046084 0.173857 0.056515 0.020216 -0.045498 -0.096471 0.040979 -0.059036 -0.039585 0.024271 0.037967 0.103306 -0.377772 0.006061 0.112389 -0.076357 -0.064186 -0.145753 0.043697 0.053364 0.145652 -0.011172 0.116008 -0.008575 0.002890 0.034295 -0.066906 0.086410 -0.013885 -0.066083 -0.111249 -0.073596 0.096371 0.088922 0.032195 0.107178 0.156554 0.224030 0.079134 0.087532 0.017600 -0.108036 0.043271 -0.103550 0.099584 0.267894 0.033662 0.118397 -0.089914 -0.006810 -0.032425 -0.067286 0.088472 0.132590 -0.011178 0.145351 0.068980 -0.070935 -0.056723 0.005046 -0.010270 -0.147349 0.092866 -0.017137 0.021324 0.043942 -0.009829 0.097613 -0.039899 -0.251211 -0.036431 0.095798 0.069735 0.084902 0.119086 -0.012246 -0.150494 -0.017061 0.021601 0.027463 0.086896 -0.057702 -0.107480 -0.005244 0.017450 -0.069457 -0.025411 -0.100190 -0.068179 0.106023 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 1.524686 0.489618 0.353229 1.272627 0.234431 -2.640277 0.998891 2.103504 -1.015785 -2.577471 -1.297133 0.364929 0.032023 -1.750383 0.301937 0.110733 -0.792866 0.983491 -4.889063 1.899951 1.457677 1.209477 -0.499154 -2.351378 0.328178 -0.669300 -1.139238 1.823474 -0.491003 1.914933 -1.152502 -0.662610 1.258470 0.663996 1.044675 2.154900 0.384868 0.065793 1.453243 1.101545 2.683740 2.480361 -1.547663 0.283166 1.898044 2.016184 0.373711 -0.356026 -3.214916 -0.820660 -0.768661 0.214814 -1.815974 -0.801100 -1.029961 0.694124 3.109481 2.230463 -1.111446 1.804465 -1.612672 -0.483213 0.978201 0.228828 2.303514 1.063939 0.667023 0.767638 3.735945 -0.815495 -0.344836 0.683727 1.833760 -1.368444 0.785173 -0.101729 -2.104685 -4.474069 0.279309 -5.338586 -1.252128 0.856766 2.560404 -1.775793 1.347522 1.919915 1.369705 1.564274 -2.094414 -1.372587 -1.176686 0.245933 -1.652274 5.433782 -0.046718 0.887406 0.130463 1.733239 2.017211 1.731249 -0.505952 -1.159408 -1.617809 -4.696630 -0.281326 -0.594378 -1.109136 -0.514757 -2.314483 -1.380547 3.001529 2.781106 -3.155333 0.096560 1.938538 0.693842 -0.017460 -2.244139 -1.604025 1.439219 -1.403158 -0.414467 0.898596 -1.582458 -0.883380 0.286133 0.734490 0.384402 0.247616 -0.104902 -3.332504 -0.185789 0.624574 -1.493000 -0.196226 0.094849 -0.545530 -1.894664 0.577830 -2.895544 1.958717 -2.748738 1.641383 -0.522466 -2.075304 0.268725 -0.270097 1.398696 -1.211276 -0.532326 -0.297229 -0.294493 -2.020554 -4.108318 1.517175 0.091752 1.255726 -1.563745 -0.226549 -1.036971 -0.593158 -0.861527 1.074185 -1.140174 0.355783 -0.863717 4.850650 0.158979 -0.648431 -0.795233 -0.374495 2.002088 1.332888 0.258385 -1.485227 -1.007168 -2.322802 -1.892465 1.573652 0.139267 -1.038944 -1.341254 -0.136475 -2.228733 1.937745 -1.048713 1.887857 -0.581759 -0.472299 -1.887998 -0.449882 -0.329111 -0.459853 -1.002544 -0.877060 -0.589198 0.598270 -1.013404 -0.022630 -0.306014 1.162203 -1.665120 -2.009792 0.356122 0.963545 1.685499 1.146800 1.088797 -1.538485 0.454491 -2.103546 2.425787 -0.108843 -0.041651 -0.791929 -1.453655 3.764711 -0.478703 -1.298771 -1.569683 1.035458 -0.144173 0.412166 4.279635 2.217777 -1.427447 -1.066681 -0.569917 -0.180020 2.093026 2.754040 -1.800103 -1.332522 0.788627 -1.136057 -0.584569 -0.204719 1.466028 -1.357094 2.470701 -1.503788 -0.949482 0.530934 2.127525 -0.239658 1.739475 -1.033864 -0.340285 -0.860581 1.866826 0.588285 -0.170287 -1.899037 -1.892347 1.049126 -2.221415 0.489702 -0.943404 0.081049 -2.269454 0.070089 1.434635 2.462966 3.118790 -2.297089 1.223053 -2.428181 -2.381929 -0.890299 1.057230 0.406836 -1.577459 0.690735 -0.793898 0.566820 0.747731 0.613953 1.204867 -1.679759 -1.766492 -0.617967 1.147247 1.065130 -2.588885 2.435402 -0.229333 -0.759281 -0.477147 -0.199077 0.849637 0.430871 0.476164 -1.005470 -1.800809 1.113625 -0.554373 2.948744 0.375341 0.448568 1.858883 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.712098 0.528825 0.972488 1.306733 0.162931 -3.078031 1.408074 2.964793 -1.465323 -3.303805 -1.763863 -1.214892 -0.026162 -2.017068 0.705782 -0.055036 -1.070343 1.002134 -6.691243 2.053125 2.264267 1.629215 0.008844 -2.881567 0.530894 -0.695563 -2.744581 2.248354 -0.669694 2.467233 -1.444645 -0.913451 1.460660 0.918774 1.012867 2.480999 0.351912 0.125520 2.438837 1.779809 3.109626 2.943240 -2.533928 -0.212961 2.280290 2.485570 -0.116053 -0.472018 -5.100587 -0.945205 -0.503329 -1.153006 -2.163405 -0.726199 -0.772300 0.721611 4.987068 3.808188 -1.055264 2.309949 -2.558812 -0.446876 1.020513 0.055101 2.683929 1.829925 0.691583 0.797870 4.395018 -1.074543 -0.354203 0.446907 1.755938 -2.180528 -0.208517 -0.363729 -1.804279 -7.475685 0.546632 -7.242695 -1.671663 1.158129 2.941899 -2.115286 1.924107 2.857620 1.589034 1.704160 -2.629910 -1.442950 -1.331974 0.348787 -1.954238 6.845233 -0.473465 0.837742 0.310660 2.292351 2.846540 2.050331 -0.541239 -0.943294 -3.136625 -5.880628 -0.512767 -0.399737 -1.305561 -0.543263 -2.921888 -1.751298 4.925879 2.184259 -3.814834 0.245724 2.305627 1.631168 -0.676558 -2.214921 -2.586001 1.685597 -2.115016 -0.524884 1.319967 -2.041359 -0.926979 -0.617411 0.716968 0.682752 0.234122 -0.332944 -4.218596 -0.034121 0.656657 -2.533373 -0.262443 0.144057 -0.851851 -1.859053 0.715812 -3.985618 2.574527 -3.715881 2.398108 -0.676456 -2.645969 0.627120 -0.248258 2.025234 -2.626144 -0.190489 -0.816252 -0.254273 -2.196840 -4.541768 1.474038 0.485318 2.260654 -2.308531 -0.410550 -1.341173 -0.573391 -1.095637 0.725712 -1.265209 0.564397 -1.327389 6.546651 0.204597 -0.978991 -1.030605 -0.148508 3.115911 0.698816 0.146340 -1.942802 0.458716 -2.916236 -2.510341 1.971769 0.241828 -1.314809 -1.709531 0.443142 -3.418218 2.894365 -1.109314 2.399228 -0.441300 -0.891341 -2.391146 -0.327668 -0.334184 -0.624692 -0.948414 -0.844678 -0.976552 0.598154 -0.802958 0.154054 -0.450295 1.591956 -2.202602 -2.850629 -0.140590 1.167909 2.052182 1.245674 1.164929 -1.466569 0.603118 -2.499186 3.421684 0.886191 -0.169417 -1.495655 -1.568870 4.584157 -0.379916 -1.668439 -2.352639 1.116739 -0.069683 1.221115 5.603154 2.384473 -1.669609 -1.479950 -1.494388 -0.172458 2.431102 3.349030 -2.014294 -1.577316 0.838712 -1.504332 -0.757345 -0.543530 1.877434 -1.721298 2.977167 -1.773290 -1.061725 0.583958 2.696180 -0.342665 2.767616 -0.922329 -0.024979 -1.284065 2.203523 0.593133 -0.921229 -1.763832 -1.841196 1.348124 -2.117076 0.839456 -1.692895 -0.107192 -2.971547 -0.167958 3.042528 2.969469 5.631812 -2.664666 1.526578 -2.528226 -2.667791 -1.116130 1.769956 0.479621 -2.405665 0.109108 -0.754026 0.762656 1.571876 0.703427 2.414919 -2.523497 -3.373499 -1.170616 1.713127 1.056110 -3.468083 2.971739 -0.325128 -0.971106 -0.615676 -0.062331 1.275323 0.768822 1.890548 -1.051689 -2.192751 1.255908 -0.720645 3.564541 0.729055 0.048033 2.513675 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 0.539086 0.377582 -0.283704 1.563265 -0.184944 -1.192394 0.482401 0.843052 -0.806499 -2.746248 -1.040551 0.653962 0.041663 0.051774 -0.054018 0.612370 -0.553303 0.522535 -3.025645 0.907311 1.471723 0.887071 0.299401 -0.783643 0.574103 -0.453041 -0.262043 0.753014 0.249849 1.744516 -0.950303 0.252154 1.508055 0.075411 0.200010 1.480846 0.468005 0.631374 0.397159 0.237476 1.551670 1.067119 -0.829214 0.199652 0.321687 1.779209 0.487209 0.526932 -1.837782 -1.361566 -0.379881 -0.233692 -1.215695 -0.605162 -0.431196 0.823594 1.506446 2.265363 -0.751977 0.895741 -0.799885 -0.197968 0.669929 -0.043197 1.551276 1.034525 0.787523 1.036513 2.320131 -0.981912 -0.156846 0.699398 0.540576 -0.633081 0.711558 -0.562164 -1.371378 -1.972376 -0.112865 -3.418704 -1.476499 0.756046 2.496701 -1.812830 0.449364 0.593109 0.423658 1.629673 -1.249942 -0.046478 -1.282510 -0.040318 -0.634523 3.317094 0.348964 0.072156 -0.104705 1.228677 1.251007 1.144207 -0.338991 -0.720444 -1.307722 -2.324118 -0.173092 -0.679342 0.115661 0.921135 -2.340925 -1.060496 1.083188 2.231507 -2.983438 0.125829 1.484621 1.080806 0.939363 -0.169643 -1.081826 1.099165 -0.465443 -0.670495 0.984788 -1.050473 -0.148837 0.251887 0.162886 -0.111354 0.130924 0.351130 -3.178620 -0.625380 0.172572 -1.311543 0.313313 0.654106 0.486602 -0.790273 0.873690 -1.795695 1.282688 -2.316606 0.416784 0.264136 -2.065265 -0.353745 0.755218 1.622479 -0.179004 -1.125678 -0.732389 -0.862426 -2.017284 -2.634833 0.694526 0.499779 0.895711 0.225165 -0.376858 0.222589 -0.864811 -0.041807 0.865756 -0.606496 -0.094683 -0.376153 2.741761 0.164033 -0.058315 -1.080576 -0.660165 0.382798 0.123200 0.907997 -0.818407 -1.312251 -2.677072 -1.300850 1.329129 -0.266622 -0.358396 -1.207825 -0.301761 -1.798223 0.860190 -1.243896 0.674882 0.014044 -0.668784 -1.820693 0.461605 -0.290460 -0.889923 -0.089442 -0.824729 -0.576293 0.736608 -0.574982 0.554574 -0.332119 0.516833 -1.163745 -1.184619 0.741335 -0.518350 0.920627 0.898911 0.130869 -1.318337 -0.340773 -1.690370 1.903543 -0.088185 0.379325 -0.619587 0.144347 2.489357 -0.735709 -0.049799 -1.252594 0.767038 0.547797 -1.527473 2.346126 1.521358 -0.621328 -0.176602 0.270088 -0.020747 1.630820 1.155947 -1.420427 -1.523313 0.467485 -0.851623 -0.112490 -0.054444 0.885819 -1.356603 1.152262 -0.893002 -0.292832 0.386417 1.069789 -0.135630 1.082779 0.047220 -0.691648 0.099818 1.147159 0.922818 -0.384602 -1.234968 -2.188653 1.008936 -1.162796 0.031537 -0.627468 -0.476166 -0.942041 0.763747 0.039515 1.692884 1.160284 -1.730075 1.231183 -2.441151 -1.691549 -0.480060 0.359966 0.185264 -0.469620 0.392813 -0.270279 0.669353 1.025001 -0.012009 0.305425 -1.511093 -0.606950 -0.125215 1.646483 0.068827 -0.670086 1.878201 -0.293473 -0.573988 -0.357753 0.283031 0.375378 -0.395074 -0.915093 -0.629668 -0.467641 0.817446 -0.900147 1.462014 -0.144152 -0.551356 1.142569 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.443992 0.700324 -1.712253 3.253982 -0.756682 -2.058335 0.523016 0.546074 -1.259080 -4.504331 -1.092704 1.272770 0.239509 0.116904 -0.396857 1.865628 -1.240700 0.544527 -3.191119 1.600373 2.562183 1.391149 0.074261 -0.570177 1.165848 -0.526059 -0.417122 0.557758 0.269956 2.700177 -1.217055 1.409419 2.632894 -0.483055 -0.490913 2.019448 0.143178 1.724887 1.181946 0.732474 1.589074 0.791100 -0.957567 0.084078 -0.117509 2.781799 0.151597 1.944429 -3.719548 -2.316202 0.180009 0.790416 -1.375553 -0.874801 -0.295908 1.544355 1.975437 3.408387 -0.888312 0.905991 -1.465930 -0.103273 1.364694 0.602634 2.959231 2.972871 1.518891 2.525546 4.016859 -0.915019 0.363990 0.930578 0.324337 -1.360440 1.633596 -0.835118 -2.232942 -0.621517 -0.932913 -4.079676 -2.120974 1.178167 4.675178 -3.119344 -0.155998 -0.466716 1.539380 3.429710 -2.079453 0.834864 -1.899589 -0.081712 -1.179172 5.200618 0.345249 0.655534 -1.406204 1.914665 1.208176 1.081425 -1.101191 -0.895136 -1.984479 -2.141070 -1.037495 -1.157052 0.289738 2.133086 -5.470947 -1.432844 0.425268 2.891438 -5.725587 0.190555 1.893142 1.805518 3.597194 2.045630 -2.363000 1.719430 -0.377192 -1.257478 0.609794 -0.562486 0.125036 -0.916654 -0.319119 -0.274442 -0.195869 0.864236 -6.627480 -0.405387 -0.163554 -2.788833 1.260937 2.310566 1.635603 -1.159544 1.256307 -2.746335 1.655636 -4.718260 -1.051241 0.441040 -4.388490 -0.739991 0.901365 3.144043 0.618796 -2.731807 -1.602835 -2.220913 -4.598058 -3.731998 0.077438 -0.034658 0.944910 1.098040 -0.650462 0.267930 -1.585937 0.611344 2.302887 -0.980667 -0.332836 -1.189416 5.138413 0.494090 0.342278 -1.818934 -2.316578 -0.473241 -0.047740 2.049343 -0.593565 -2.224113 -5.767166 -1.516475 1.880772 -0.425686 -0.257283 -2.714902 -0.546535 -3.638194 0.833755 -1.961083 0.293334 0.273573 -0.344085 -2.943309 1.432248 -0.040987 -2.001605 -0.731012 -1.290060 -0.849766 1.779907 -1.069903 1.358882 -0.365346 -0.090634 -1.483509 -1.810179 2.164378 -1.179799 1.051515 2.098109 0.018992 -1.475716 -0.896469 -3.515772 3.038017 -0.474522 0.943226 0.181881 1.439361 3.948716 -1.892756 -0.032719 -2.277952 0.894726 0.046902 -3.392310 2.948053 1.657555 -1.077700 0.409882 0.580155 0.693374 2.330122 0.810939 -1.982350 -2.417992 0.635333 -0.667430 -0.211782 0.067146 1.008042 -2.856775 1.958106 -1.004527 0.251679 1.041936 1.520610 -0.743728 0.936905 -0.648903 -2.627808 0.765476 0.967948 2.220586 -0.905480 -1.667600 -3.464724 0.696299 -3.840367 -0.467349 -1.371873 -1.022389 -0.799206 1.703167 -0.747931 2.899996 -0.168367 -2.877379 1.814629 -4.950774 -2.787871 -0.476103 0.863848 0.026005 -0.205809 0.461635 -0.073510 0.888217 2.495696 0.469976 -0.048001 -3.695044 -0.261673 0.117641 3.549237 -1.330194 -1.107049 2.825062 -0.382253 -0.147397 -1.020121 0.987613 0.185696 -1.313163 -2.838996 -0.830293 -0.276955 1.371443 -2.124419 2.822270 -0.557403 -0.945765 1.770281 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 5.706146 2.709101 -1.680530 7.892064 -1.174800 -9.880371 3.739883 8.268409 -4.366286 -13.556102 -6.821166 3.217984 1.465853 -4.285967 1.296768 1.647258 -5.132285 3.534335 -20.721262 7.347698 8.139306 5.204825 -1.425878 -7.890136 2.115417 -2.674253 -4.494046 5.757371 -0.705548 9.550025 -4.685366 -0.499556 7.337610 1.177401 3.032468 8.942150 0.560679 2.060696 4.506272 3.668222 9.968840 11.118604 -6.817440 0.885676 4.205391 9.562056 1.075776 0.934307 -15.889239 -6.107420 -2.527689 0.460439 -7.688900 -3.301516 -2.178973 3.614937 12.715217 10.905903 -3.666579 6.612810 -7.538603 -2.255835 4.263041 1.276593 9.888256 6.220632 4.388714 5.152405 15.014244 -4.344855 -0.458629 3.109298 4.117690 -6.753213 4.859070 -0.787581 -10.420376 -14.031773 1.124682 -22.158334 -8.569952 4.488880 13.400071 -9.982421 4.810444 5.907733 6.583098 8.687082 -9.058923 -2.910696 -5.373417 -0.383048 -7.249548 22.983142 0.795332 3.205525 -0.550995 7.884094 8.523905 6.583815 -2.203243 -5.051145 -7.134948 -16.715101 -0.833826 -2.908796 -2.608720 2.712617 -12.044238 -6.628855 9.786480 12.964667 -16.022700 1.406137 8.612680 5.041106 5.117071 -4.580615 -7.504602 7.252833 -3.957516 -3.755806 5.750307 -6.908437 -2.091584 1.620627 2.674966 1.078486 0.037289 1.207158 -18.107539 -2.041074 2.451445 -7.963689 0.775655 3.056435 0.558635 -7.478533 3.841659 -12.240873 8.421148 -13.570348 5.085405 -0.482081 -12.017259 -0.131252 0.153502 8.492517 -3.610100 -5.197121 -2.850327 -2.421249 -10.864987 -17.566685 4.890895 1.999799 5.452905 -4.083577 -1.514320 -1.800408 -4.407862 -0.231257 4.990566 -3.942030 0.895362 -1.931641 21.727330 1.147810 -2.182949 -3.877855 -3.609362 3.647771 4.329131 4.677650 -4.812640 -6.133921 -14.102530 -7.499593 7.958416 0.206405 -3.923318 -7.642608 -1.136476 -10.770465 5.990519 -5.946850 7.269306 -0.731528 -1.947931 -9.479436 -0.393946 -0.661881 -3.775085 -3.283544 -4.093197 -3.794481 5.385364 -4.249737 1.398280 -1.419159 4.755393 -6.377016 -7.487565 3.830274 -0.121978 7.551824 5.930939 2.689486 -6.398854 0.954799 -10.731865 10.971769 -0.101142 1.047061 -5.140686 -3.142708 16.204070 -3.688618 -5.207059 -8.372032 3.998422 0.505237 -0.965520 16.795722 8.711088 -3.917799 -1.869778 0.496891 -0.556493 9.810633 9.131358 -8.281583 -8.049613 2.253076 -5.531749 -1.305455 -0.178639 5.809967 -8.735972 8.297035 -4.545867 -2.045628 3.084139 7.561177 -0.724482 7.354832 -2.939952 -3.736233 -0.992875 6.288569 4.942785 -2.932016 -8.239661 -9.588193 5.874672 -11.253295 0.032325 -6.168389 -0.755555 -8.334667 2.049894 3.941874 10.079111 11.219919 -11.070286 6.018479 -13.392975 -10.273971 -4.936140 4.399646 1.077626 -4.583302 1.414052 -1.712923 4.412012 6.128777 0.932803 4.511222 -9.625909 -5.732108 -1.945310 6.802456 1.714742 -8.323720 11.287626 -0.502012 -2.707589 -2.640132 0.086508 1.887434 -1.215650 -1.385438 -3.877838 -5.093398 5.113006 -3.556287 10.356524 0.645158 -1.211688 8.089863 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.219749 0.120835 0.198813 0.304139 0.058049 -0.647398 0.299194 0.496786 -0.280846 -0.696501 -0.283983 -0.302524 -0.010359 -0.420035 0.158525 -0.003880 -0.251621 0.414522 -1.073936 0.423456 0.470199 0.420401 0.067737 -0.633539 0.097202 -0.135494 -0.538784 0.420460 -0.075635 0.550991 -0.328081 -0.205745 0.360192 0.198676 0.104678 0.551324 0.341553 0.070384 0.418710 0.407244 0.653403 0.481299 -0.422960 -0.006648 0.420721 0.517874 0.081733 -0.206648 -0.982893 -0.247371 -0.192473 -0.299247 -0.369321 -0.219617 -0.188440 0.239243 0.895560 0.846957 -0.249472 0.493757 -0.443284 -0.086203 0.237461 -0.099556 0.486352 0.346524 0.043743 0.197480 0.974714 -0.243851 -0.091402 0.102499 0.369629 -0.462734 0.132154 0.036378 -0.358110 -1.620891 -0.017920 -1.328242 -0.311426 0.304776 0.580309 -0.510797 0.415380 0.733503 0.307070 0.375056 -0.477682 -0.328871 -0.309381 0.085759 -0.331226 1.316523 0.061298 0.105103 -0.045958 0.448429 0.578835 0.404591 -0.049710 -0.191858 -0.642925 -1.250725 -0.193155 -0.116928 -0.289374 -0.124982 -0.649087 -0.414356 1.079509 0.627481 -0.893717 0.089139 0.533655 0.357124 -0.193908 -0.737532 -0.456779 0.431756 -0.382484 -0.162142 0.213916 -0.501798 -0.229093 -0.032872 0.126021 0.067232 0.034387 -0.134710 -0.648348 -0.096198 0.053322 -0.395941 -0.027446 0.013396 -0.149005 -0.474012 0.160972 -0.809744 0.506620 -0.673283 0.502018 -0.017872 -0.586529 0.060047 0.178407 0.216264 -0.420060 -0.128906 -0.328302 -0.139362 -0.421386 -1.059369 0.404022 0.074645 0.464316 -0.313535 -0.097107 -0.294955 -0.108687 -0.217593 0.222513 -0.274420 0.129302 -0.124658 1.132361 -0.047978 -0.191366 -0.399959 -0.042813 0.709079 0.252664 -0.024884 -0.411326 0.205879 -0.516954 -0.531295 0.421838 0.029194 -0.212315 -0.356024 0.020719 -0.713176 0.619570 -0.269253 0.477762 -0.061598 -0.209047 -0.535347 -0.079760 -0.107580 -0.180668 -0.145594 -0.218155 -0.148876 -0.037789 -0.340747 0.005959 -0.147858 0.345566 -0.459542 -0.607272 -0.057882 0.201691 0.309576 0.221424 0.360228 -0.410701 0.102304 -0.459757 0.686939 0.041459 -0.051930 -0.248993 -0.287534 0.973553 -0.099721 -0.379164 -0.479797 0.253503 0.006952 0.249668 1.063203 0.511032 -0.332625 -0.273853 -0.203857 -0.061266 0.567274 0.746417 -0.452483 -0.304384 0.242881 -0.307552 -0.141083 -0.180381 0.371733 -0.392219 0.651874 -0.347507 -0.208907 0.043998 0.633753 -0.096720 0.547936 -0.121883 0.022574 -0.338074 0.443358 0.140354 -0.128945 -0.375450 -0.227856 0.307051 -0.457405 0.239036 -0.234589 -0.063257 -0.457595 0.102494 0.572711 0.620485 1.102718 -0.481821 0.347758 -0.569266 -0.586259 -0.080987 0.313254 0.167922 -0.534887 0.161973 -0.176157 0.157702 0.273584 0.124815 0.415657 -0.448599 -0.591803 -0.220161 0.365216 0.225740 -0.649692 0.657465 -0.107303 -0.257738 -0.030574 -0.073560 0.304459 0.094658 0.360205 -0.213517 -0.401402 0.261464 -0.168117 0.828920 -0.072212 -0.091306 0.544778 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.320528 0.065144 0.219541 0.157185 0.304598 -0.305961 0.131753 0.283069 -0.090789 -0.622883 -0.422062 -0.075501 -0.095917 -0.297101 0.220597 0.071167 0.156174 0.326099 -0.429129 0.272925 0.209120 0.250428 0.001288 -0.255423 0.127707 -0.113174 -0.509290 0.085622 0.043354 0.342171 -0.357119 -0.052633 0.247502 0.127027 0.137597 0.331302 0.228864 -0.119696 0.378752 0.043477 0.716574 0.035489 0.140605 0.339532 0.436802 0.341130 -0.312078 0.500791 -0.104674 -0.131282 0.296256 -0.609657 -0.206838 0.160274 -0.400485 0.403700 0.496327 0.266554 -0.296846 0.281907 -0.058696 0.108554 0.089172 -0.426704 0.333049 0.462103 -0.104264 0.148610 0.755252 -0.107379 -0.102756 0.187617 0.473740 0.063058 0.001070 -0.192282 0.161478 -0.822267 -0.118649 -0.546635 0.199849 -0.191477 0.874257 -0.364499 0.231132 0.585174 0.059079 0.260283 -0.108315 -0.172962 -0.322194 0.232448 -0.119742 0.417345 -0.086896 0.125879 -0.221314 0.059620 0.095642 0.290043 -0.139023 -0.088561 -0.730654 -0.977048 -0.435470 -0.033431 -0.108096 -0.247232 -0.622625 -0.049984 0.525672 0.419758 -0.587474 -0.088354 0.231950 0.173353 -0.392977 0.179515 -0.523653 -0.195546 -0.131697 0.127596 -0.202919 -0.150196 -0.189704 -0.613576 -0.146810 -0.013781 0.217707 -0.283517 -0.195569 -0.147947 -0.191460 -0.058408 -0.121995 -0.094712 -0.034792 -0.389922 0.198526 -0.239170 0.176971 -0.502025 -0.110081 -0.307634 -0.451743 0.000220 0.828500 0.113213 0.283571 0.276016 -0.202011 -0.397456 -0.356559 -0.415199 0.171247 -0.364839 0.468167 -0.008683 0.032610 -0.197122 -0.026996 -0.361676 -0.027221 -0.310713 0.041092 -0.332082 0.604607 -0.355992 -0.097122 -0.661092 0.038369 0.722395 -0.236119 -0.244178 -0.261174 0.153761 -0.248564 -0.456682 0.247788 -0.084457 0.236509 -0.121809 0.274211 -0.338580 0.229787 -0.222487 0.055646 -0.102833 -0.384026 -0.387890 -0.025251 -0.125421 -0.183650 -0.039716 -0.221895 0.137428 0.131363 0.281675 0.040215 0.064652 -0.077672 -0.638779 -0.671383 -0.341931 0.142987 0.205731 0.370735 0.178969 -0.374033 -0.127182 -0.384258 0.448092 -0.486715 -0.085324 0.057028 -0.114495 0.479330 -0.189496 -0.137555 -0.508120 0.146944 -0.037971 -0.759773 0.456678 0.160014 -0.454075 -0.298404 -0.664430 0.167888 0.272359 0.718599 -0.091822 0.111209 0.236028 -0.124934 -0.121410 -0.427311 0.371748 -0.127767 0.546347 -0.447127 -0.309572 0.158477 0.514122 -0.158466 0.217533 0.113328 0.374862 0.105835 0.469955 0.125182 -0.126534 -0.275827 -0.642514 0.050527 0.451520 0.215522 0.200779 -0.277799 -0.305639 -0.032353 0.160048 0.512496 0.365557 0.397563 0.303615 -0.215170 -0.385668 0.269436 0.191330 0.161955 -0.458734 0.187627 -0.254003 -0.141720 0.061845 0.219460 0.263231 -0.323252 -0.735919 -0.135303 0.406608 0.263485 -0.163615 0.404360 0.098167 -0.260325 0.182876 -0.054846 0.475385 0.030687 -0.008560 -0.158647 -0.305338 -0.091594 -0.194449 0.697288 -0.086439 0.082845 0.210570 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 1.402161 0.654048 0.472796 1.268315 0.120697 -2.537921 0.739334 2.120088 -1.331508 -2.270479 -1.323770 0.026574 -0.114782 -1.404591 0.635663 -0.087599 -0.785822 0.568316 -4.925450 1.814579 1.222439 0.967316 -0.418817 -2.292889 0.427894 -0.057410 -1.249229 1.687252 -0.417093 1.680022 -1.348074 -0.541245 0.867797 0.863354 1.300767 1.378606 0.134068 0.046676 1.191658 0.798542 2.416398 2.306778 -1.652754 0.213961 1.790032 1.681358 0.245335 -0.626124 -3.186733 -0.513670 -0.632911 -0.185331 -1.509226 -0.403895 -0.829314 0.575911 3.139482 2.211947 -0.858451 1.538755 -1.587506 -0.321728 0.832921 -0.001497 2.357685 0.941532 0.744649 0.669317 3.086775 -0.773948 -0.219647 0.321078 1.940372 -1.422240 -0.236945 -0.193189 -1.574730 -4.856311 0.335416 -5.421303 -1.130861 0.806304 2.133983 -1.479529 1.522671 1.637986 0.826700 1.175354 -2.269731 -0.921603 -1.032162 0.072481 -1.627102 4.711355 -0.257594 0.558939 0.519895 1.642593 2.042762 1.688954 -0.650803 -0.791554 -1.359951 -4.290474 -0.185222 0.249130 -1.069321 -0.610734 -1.772444 -1.211933 3.009190 2.305843 -2.536307 -0.324720 1.489864 0.634148 -0.727762 -1.975565 -1.624096 1.312813 -1.584088 -0.076338 1.227195 -1.428545 -0.512963 -0.018892 0.341350 0.525527 0.731695 0.275359 -2.837796 -0.237483 0.595018 -1.594221 -0.503678 -0.215127 -0.867262 -1.228452 0.559130 -2.492968 1.889959 -2.429705 1.687458 -0.667113 -1.667896 0.694979 -0.470956 1.508448 -1.588070 0.045229 -0.127159 0.035158 -1.638912 -3.415367 1.627098 0.573731 1.189964 -1.675952 -0.135026 -0.718964 -0.457151 -1.116214 1.148676 -1.259520 -0.069747 -1.263973 4.325288 0.269861 -0.713147 -0.689917 0.133277 2.130862 0.708036 0.181825 -1.405949 -0.541165 -2.088898 -1.670982 1.411232 0.186846 -1.062171 -0.897429 0.409918 -2.216626 1.931149 -1.057890 1.896468 -0.376024 -0.584266 -1.626923 -0.584296 -0.232899 -0.249027 -0.990794 -0.546807 -0.536318 0.600078 -0.500420 -0.194325 0.030923 1.480024 -1.410609 -2.145399 0.098485 1.153657 1.456728 0.772948 0.937096 -1.637674 0.375654 -1.744567 2.519474 0.283861 -0.063575 -1.104608 -1.162746 3.336810 -0.354282 -1.327930 -1.209091 0.930050 0.191159 0.254571 3.783206 1.922950 -1.273777 -1.057049 -1.106399 0.101834 1.829931 2.874896 -1.625115 -1.031220 0.565706 -0.777726 -0.621616 -0.416826 1.511557 -1.073921 1.840897 -1.282473 -1.011930 0.381649 1.623897 0.175422 1.757960 -0.893748 -0.070977 -1.014597 1.922873 0.448079 -0.361137 -1.526899 -1.471997 0.849305 -1.237294 0.668264 -0.867234 -0.007300 -2.393302 -0.431247 1.475073 2.145282 3.284757 -2.165607 1.085179 -1.924161 -1.882902 -0.991526 1.370241 0.097863 -1.695568 0.487478 -0.760251 0.438185 1.050213 0.503271 1.342183 -1.254220 -2.278237 -1.046252 0.861800 0.901815 -2.307867 2.104093 0.052583 -0.989089 -0.439472 0.000000 0.669055 0.398394 0.515598 -1.044458 -1.712962 0.925900 -0.503006 2.383445 0.700587 0.269202 1.526761 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 1.244748 0.648060 0.586336 0.852435 0.013535 -2.774914 1.231292 2.343165 -1.237929 -2.061325 -0.935557 -1.094150 0.080275 -1.992061 0.408826 -0.052417 -1.143795 1.096876 -4.737330 1.726158 1.659454 1.357758 -0.356073 -2.583886 0.240333 -0.496781 -2.209553 1.940687 -0.735340 1.801847 -0.877382 -0.973786 1.080928 0.722858 0.616813 2.077704 0.565320 0.275174 2.116352 1.758941 2.160934 2.456191 -2.068046 -0.385426 1.823234 1.789050 0.165850 -1.022181 -4.964451 -0.653445 -0.855335 -0.464091 -1.635011 -0.874181 -0.481576 0.396321 3.815010 2.967378 -0.824940 2.018759 -2.098845 -0.471616 1.006035 0.344871 2.014171 1.294057 0.396153 0.559871 3.606407 -0.641848 -0.195838 0.265726 1.280531 -2.198263 0.113990 0.195477 -1.646226 -5.647357 0.488957 -5.594214 -1.329927 1.268931 2.007892 -1.543330 1.554179 2.344489 1.674243 1.281413 -2.264785 -1.481091 -0.775717 0.200235 -1.814544 5.809049 -0.161617 0.878205 0.176901 1.932542 2.356101 1.463032 -0.568777 -0.709021 -2.116638 -4.457319 -0.292092 -0.329036 -1.430055 -0.606789 -2.086338 -1.730840 4.031435 1.869106 -3.021661 0.372327 1.910957 1.026007 -0.331148 -2.383015 -1.899886 1.784853 -1.843878 -0.675112 0.878369 -1.640009 -0.829479 0.079072 0.721872 0.528552 -0.118222 -0.208296 -3.493711 0.263559 0.677214 -2.202648 -0.120667 0.244018 -0.842001 -1.710975 0.329401 -3.406528 1.947907 -2.798146 2.152592 -0.198256 -2.350781 0.501634 -0.981616 1.261712 -2.370094 -0.530662 -0.587647 -0.068918 -1.670377 -3.987708 1.364244 0.412835 1.583555 -2.084327 -0.341809 -1.485234 -0.433783 -0.784417 0.969156 -0.893967 0.588051 -0.820601 5.756911 0.350531 -0.823072 -0.520908 -0.258536 2.367625 1.348109 0.027091 -1.527403 0.585629 -2.063554 -1.708905 1.428524 0.415883 -1.350623 -1.405552 -0.017001 -2.774735 2.385928 -0.715046 2.160192 -0.429321 -0.154811 -1.687120 -0.374080 -0.164744 -0.516798 -1.074907 -0.529983 -0.807914 0.347897 -1.476756 -0.111634 -0.543667 1.485689 -1.205126 -1.995822 0.249229 1.233174 1.363235 1.055772 1.335147 -0.927430 0.841499 -1.853414 2.504021 0.925686 -0.206348 -1.006415 -1.312576 3.826875 -0.220676 -1.632256 -1.632401 0.862729 -0.377019 1.976053 4.389648 1.925104 -1.242523 -1.108231 -0.704942 -0.326753 2.029026 2.508681 -1.614576 -1.297019 0.778741 -1.220796 -0.631183 -0.163791 1.227013 -1.386852 2.565031 -1.171989 -0.630443 0.376548 2.222848 -0.364414 2.193241 -1.246300 -0.389557 -1.302048 1.517983 0.283641 -0.585516 -1.385301 -0.683363 0.951748 -2.923370 0.629290 -1.639531 0.403379 -2.157644 0.034160 2.407019 2.229813 4.486615 -2.627820 0.991514 -2.127267 -2.202295 -0.887508 1.589412 0.497108 -1.920016 0.132851 -0.502649 0.768110 1.118025 0.675788 1.901698 -2.067064 -2.322745 -0.960544 1.119529 0.617207 -3.244742 2.355070 -0.563655 -0.428604 -0.548069 -0.227011 1.045451 0.764636 1.637282 -0.891862 -1.862038 1.217796 -0.471481 3.154698 0.421323 0.131041 2.378510 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 12.995789 2.328743 -7.649853 22.634014 -4.025294 -11.142528 5.602827 13.794733 -9.131127 -36.722790 -17.588427 5.921762 6.026972 1.625351 4.187178 11.902964 -9.191636 3.150705 -38.697157 13.020059 18.328075 7.345978 3.210616 -10.181864 3.595415 -11.090416 3.595267 5.952691 2.614231 24.472998 -7.627748 7.807104 20.429933 -0.215349 8.052708 20.317426 0.263498 3.736072 -4.247342 3.151539 23.279722 22.911245 -10.199370 0.245566 -1.540310 23.585145 8.590915 6.134178 -31.591698 -17.957349 1.107315 -6.461337 -17.883442 -6.771095 -7.477144 6.144776 15.984378 22.612641 -6.032690 11.105998 -20.630410 -3.748803 8.069533 5.089159 23.572368 5.312510 17.559398 16.217898 24.317173 -16.461791 -1.902212 14.261835 -0.663392 -9.492445 16.592219 -8.768587 -24.672004 -18.602614 1.107591 -36.861384 -22.954657 8.652083 37.537752 -23.064264 3.477913 8.400788 6.518676 21.362428 -17.691578 0.930033 -15.405456 -3.149060 -9.250967 36.802676 3.058489 2.205124 0.076194 13.257572 15.266099 14.051692 0.539718 -14.530290 -14.288686 -21.973099 1.960207 -9.972174 6.842810 16.092177 -24.622864 -12.513074 6.806614 29.940317 -34.693569 7.100317 20.380101 16.602534 31.690029 -1.891642 -10.873388 13.806251 2.343131 -2.631942 21.930362 -18.768848 1.546598 4.975752 12.619046 0.517218 1.982600 3.746142 -41.184993 -11.517364 6.638548 -16.686039 4.809451 10.145185 10.843133 -15.233528 12.344589 -20.788299 21.088520 -29.475976 7.351832 -2.184233 -28.666353 -5.149156 22.564571 25.114649 3.534436 -12.507952 -11.625459 -2.481786 -24.622535 -33.354012 3.667228 9.826546 7.217373 2.905797 -2.508252 8.534117 -11.847953 10.450134 7.599517 -5.633464 -1.233255 4.511323 24.261339 5.625848 -5.721193 -10.660974 -7.967992 -5.686971 8.980866 22.962434 -5.879275 -29.004442 -37.002211 -17.113143 20.463396 -4.876080 -5.590213 -16.964608 -7.791779 -19.827465 6.431031 -19.423339 17.003830 3.966675 -10.547383 -23.925208 4.296163 -2.161324 -9.661999 0.409105 -7.542295 -10.548915 14.325592 -8.168036 5.814406 -0.327352 6.508214 -14.786740 -13.084144 11.416906 -12.012987 24.505961 8.971092 -2.132839 -14.490360 -3.038684 -21.854488 21.907168 3.356536 4.927161 -14.731253 -1.777952 27.916521 -11.681545 -0.162597 -21.025278 9.360194 6.860668 -20.124028 27.369027 24.264834 -4.353871 -0.734629 8.283492 -1.089869 19.076511 13.382480 -12.234721 -19.780926 2.357902 -8.317846 -0.301279 0.993083 9.454562 -22.026656 3.956484 -9.854839 -4.751593 8.453727 11.690878 0.345897 9.037244 3.318520 -7.719879 1.045627 13.435059 16.655263 -7.142127 -21.898296 -33.310527 17.391698 -11.586597 -6.818218 -12.248477 -3.093393 -13.703506 9.029778 -3.005482 19.920881 24.135705 -23.525225 17.041643 -30.531541 -23.525083 -17.073759 5.294425 -0.349534 -4.285832 -1.932702 -4.507616 14.130502 11.872875 -4.646943 2.868237 -17.940580 -0.856319 -0.481604 22.171708 5.631625 -3.538558 24.837423 4.408492 -4.246028 -8.416650 8.476783 -4.646988 -1.831993 -15.051937 -10.694967 -3.117882 11.039141 -8.072975 7.854250 0.031818 -8.818558 14.181710 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.436250 0.639607 0.840344 0.184599 -0.391647 -0.663534 0.865130 1.784425 -0.674474 -1.932731 -1.940194 -1.801797 -0.034033 -0.357896 1.058126 -0.337239 -0.617589 0.795728 -3.641235 0.262835 1.772655 1.056945 1.147906 -0.822010 0.348663 -0.208442 -3.185187 0.699154 -0.038706 1.503165 -0.422721 -0.234218 1.039342 0.449101 -0.724178 1.119440 -0.174138 0.170062 1.806356 0.694599 1.040662 0.906618 -1.006606 -0.057763 0.259033 1.130453 -1.150167 0.211247 -2.344775 -0.937243 0.791134 -2.892834 -1.129677 0.119306 0.361424 0.340507 2.841534 2.396769 0.154113 1.258510 -1.367453 -0.062367 0.263847 -1.759939 0.653122 1.820928 0.049877 0.162010 1.535156 -0.720598 -0.010957 -0.023345 -0.376369 -1.241469 -1.630005 -0.617184 0.530212 -4.602815 0.263558 -3.960480 -1.255629 0.197645 2.049341 -1.111460 0.867497 1.717701 0.218322 0.733617 -0.770906 -0.050916 -0.387061 0.183788 -0.428896 1.890177 -0.135875 -0.218627 0.061518 0.523286 1.385822 0.727748 -0.541646 0.489356 -3.277604 -2.662704 -0.292689 0.319028 0.163186 0.466918 -1.539557 -0.700485 2.811571 -0.017241 -1.950604 -0.101535 1.339055 1.733570 -1.965182 0.861579 -2.299365 0.114597 -0.577675 -0.027040 1.060796 -1.312275 0.072319 -1.422801 -0.427342 0.151426 -0.053704 -0.445789 -1.353392 -0.814699 -0.128323 -1.452516 0.177929 0.306587 0.053755 0.424909 0.609022 -1.721465 1.064883 -2.080383 1.059799 0.060395 -1.130352 0.076201 1.214626 1.722674 -1.529141 0.296177 -0.870020 -0.485087 -0.589943 -0.922951 0.294917 0.526042 2.441797 -0.880206 -0.281982 -0.279166 -0.089286 0.009562 -0.981649 -0.145652 0.549003 -0.286738 3.237012 -0.063199 -0.540771 -1.380879 0.272292 1.415337 -1.523409 -0.304764 -0.477717 2.154573 -1.060027 -1.257586 1.109959 0.053470 -0.327341 -0.991674 0.937425 -1.578666 1.028773 -0.446793 0.139914 0.816720 -1.441951 -1.323056 0.174411 0.019803 -0.831405 0.277971 -0.292712 -0.869672 1.166037 0.971901 0.628729 -0.096875 0.544166 -0.869331 -1.498937 -1.128327 -0.385792 0.476108 1.193738 0.227607 -1.065760 0.193552 -0.823579 1.999317 1.033169 -0.207632 -1.813071 -0.009257 1.830329 -0.123940 -0.559609 -1.781527 0.088127 0.357129 -1.487962 1.587388 0.384008 -0.189050 -0.609330 -1.514359 -0.213686 1.265903 1.216198 -0.380221 -0.599457 0.214000 -1.066693 -0.103795 -0.840864 0.933182 -0.976467 0.666333 -0.322340 -0.077001 0.552715 1.070571 -0.164482 2.055962 0.773606 1.459580 0.644749 0.468883 0.140591 -2.174569 -0.082800 -1.369277 0.984408 1.807655 0.405897 -0.715628 -0.708726 -1.272207 0.263543 1.642115 1.047306 3.599852 -0.098891 0.774984 -0.058230 -0.904007 -0.275430 1.420549 0.398940 -1.131105 -0.688693 0.225814 0.737624 1.707669 -0.243030 2.206283 -1.992437 -3.302941 -0.853188 1.660661 0.136581 -0.737194 1.435315 -0.165372 -0.767390 -0.058834 -0.317585 0.738706 -0.033347 1.627755 -0.119980 -0.443842 0.195996 -0.449770 1.338683 0.199421 -1.046582 1.306806 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.981650 0.272893 -1.879247 4.676019 -0.331592 -1.272508 0.188722 0.576047 -1.333158 -7.861720 -4.086482 2.137550 1.301355 1.418456 0.839065 2.537042 -0.878589 0.964646 -6.971400 1.568108 3.379416 1.542859 0.871371 -0.856224 1.028314 -1.725814 1.334269 0.093704 1.285689 4.785222 -2.441130 2.476593 4.161814 -0.968596 1.013508 3.101559 -0.006138 1.018045 -1.421541 0.194380 5.194606 1.780174 0.218148 1.397530 -0.421741 4.412594 0.638569 3.734518 -1.782574 -3.684748 2.188329 0.450652 -2.258085 -0.670174 -2.090303 2.324112 3.934279 3.475156 -1.868120 1.339975 -0.339896 0.068889 1.358455 0.283892 4.361955 2.356734 3.185618 3.150491 4.625705 -2.677810 0.037601 1.603693 0.046473 -1.163305 4.029453 -3.618301 -3.581854 -0.468174 -0.598043 -5.974754 -2.399692 0.771301 6.360698 -4.883915 0.022058 1.103770 0.802230 4.656125 -1.609207 0.653902 -3.024929 -0.320829 -1.840669 6.634266 0.515500 0.311865 -0.936737 1.976734 1.682042 2.327758 0.343575 -2.980243 -2.267018 -4.891625 -2.300479 -2.073308 1.999599 3.559309 -6.137705 -1.645183 -1.169611 3.824949 -7.337265 0.788807 3.080462 3.657846 4.646548 0.032867 -3.184898 1.053984 0.389525 -0.022192 2.453364 -2.045143 0.466621 -1.087359 0.753533 0.130425 0.834880 0.026081 -6.076763 -2.723016 -0.641692 -1.645052 0.629930 1.734250 3.188777 -2.422764 2.898758 -2.692274 2.950561 -6.235285 -0.711272 -1.094991 -5.073305 -1.534738 2.553898 2.486296 2.259614 -2.496176 -3.180970 -1.455808 -5.843569 -5.867976 0.311053 0.835953 1.325118 2.571715 -0.870201 2.248754 -2.521569 1.026072 2.412017 -1.573897 -1.145870 -0.628863 4.410371 -0.188609 -0.942247 -2.593867 -1.584371 -1.321889 0.136215 4.517410 -0.739457 -4.252529 -7.682130 -3.222923 3.980846 -1.616723 0.634490 -2.991622 -0.647990 -5.090631 0.400740 -4.314925 0.734311 0.435555 -2.388416 -4.772361 0.789975 -0.522824 -1.679886 0.513509 -3.464527 -0.870742 3.007508 0.243102 1.770654 -0.316103 0.387333 -4.410660 -3.431436 1.552905 -3.163701 3.054827 1.893159 -0.417315 -2.816493 -1.618340 -4.123021 2.739229 -1.396931 1.263859 -1.292440 0.678246 4.135040 -3.110368 0.321058 -3.662720 0.973587 1.323390 -5.575127 5.692998 2.676304 -1.206281 0.465202 0.917438 1.010120 2.305767 2.239060 -2.723785 -3.352638 0.428387 -1.411632 0.122625 -1.312307 2.532177 -3.779630 0.834344 -2.312344 -1.076772 1.700298 2.631798 -0.072402 1.813368 1.788896 -1.774486 0.841803 2.905508 3.060503 -0.973041 -2.793218 -7.062635 2.642995 -2.628354 -1.013639 -1.261836 -1.570622 -1.871357 2.052160 0.133166 4.181409 1.722897 -1.474201 3.598593 -6.090004 -4.431471 -2.213086 -0.184530 0.370471 -0.352008 -1.091203 -1.358688 1.814855 2.110021 -0.412863 -0.028212 -3.635964 -0.175281 0.377725 4.967183 -0.100942 0.847194 4.753096 1.292760 -1.354720 -0.571988 0.805144 -0.029804 -0.909023 -3.339296 -1.689402 0.107677 1.156017 -2.344416 1.376786 -1.975289 -1.326048 1.546469 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.156966 -0.006542 0.256000 0.062296 -0.005391 -0.155796 0.160064 0.323669 -0.076907 -0.522927 -0.445025 -0.400663 -0.090382 -0.146510 0.327957 -0.015958 0.128648 0.252885 -0.707006 0.121046 0.304389 0.239638 0.122085 -0.072046 0.110042 -0.092800 -0.751639 0.094248 0.023597 0.352878 -0.256913 -0.021721 0.251337 0.059111 0.009875 0.281540 0.075493 -0.021085 0.457438 0.186704 0.509911 0.046065 -0.003891 0.139173 0.261701 0.321031 -0.322946 0.336489 -0.081057 -0.204869 0.392390 -0.893254 -0.176241 0.174891 -0.189009 0.164249 0.574974 0.464901 -0.185671 0.357925 -0.210542 0.123617 0.055966 -0.479683 0.288775 0.423985 -0.029779 0.068057 0.439499 -0.087455 0.031028 -0.024221 0.173945 -0.102200 -0.340495 -0.226113 0.307130 -1.242950 -0.038405 -0.705133 0.035754 -0.063175 0.570446 -0.319020 0.260333 0.533785 -0.131113 0.176224 -0.115844 -0.103687 -0.239626 0.112371 0.040892 0.219895 -0.083419 -0.051162 -0.026741 0.112665 0.167695 0.151160 -0.116853 -0.006438 -0.843139 -0.884786 -0.336629 0.054826 -0.018348 -0.103395 -0.466742 -0.063824 0.655587 0.041105 -0.509739 -0.019129 0.202790 0.260591 -0.668156 0.222341 -0.508621 -0.179065 -0.169241 0.232463 0.100968 -0.258560 0.010964 -0.692823 -0.150843 0.106119 0.169257 -0.199017 -0.001368 -0.181648 -0.108562 -0.088318 -0.159754 0.031823 -0.027374 0.003916 0.233053 -0.340489 0.252703 -0.478216 0.045078 -0.203217 -0.235551 0.006732 0.813661 0.293231 -0.052265 0.250333 -0.321421 -0.183200 -0.264677 -0.271035 0.132185 -0.121478 0.609063 -0.080905 -0.023049 -0.143829 0.006448 -0.187683 -0.261844 -0.179905 0.090966 -0.222819 0.341950 -0.152675 -0.184884 -0.557089 0.159433 0.657185 -0.452837 -0.228941 -0.211236 0.422085 -0.170362 -0.314531 0.263262 -0.036484 0.175560 -0.064069 0.295641 -0.382331 0.270160 -0.194580 -0.081755 0.007342 -0.400152 -0.357867 -0.000380 -0.085753 -0.070681 0.017987 -0.130992 -0.022314 0.162003 0.423664 0.133526 0.071055 0.070863 -0.425537 -0.540057 -0.403608 -0.056599 0.159988 0.280554 0.070263 -0.296803 -0.018854 -0.231479 0.462467 -0.142767 -0.068740 -0.154144 -0.154133 0.382589 -0.054600 -0.106231 -0.428478 0.074709 0.074841 -0.751913 0.323504 0.143589 -0.310500 -0.211815 -0.612159 0.149212 0.247794 0.491331 -0.006696 0.098936 0.113991 -0.210467 -0.019786 -0.411044 0.300331 -0.099670 0.250896 -0.276530 -0.120935 0.262161 0.313934 -0.057337 0.322712 0.225441 0.478663 0.128448 0.301238 -0.015426 -0.322313 -0.086941 -0.548489 0.156810 0.889308 0.227412 0.140812 -0.320558 -0.225082 -0.055051 0.271362 0.313781 0.754496 0.321901 0.257268 -0.015337 -0.284600 0.050888 0.246094 0.096071 -0.381757 0.018703 -0.073691 0.022432 0.226462 0.177747 0.454404 -0.322432 -0.917713 -0.150104 0.348800 0.157482 -0.138089 0.358885 -0.047361 -0.278213 0.096670 -0.069057 0.303242 0.081333 0.271584 -0.128608 -0.215695 0.001183 -0.221809 0.460654 -0.090974 -0.008349 0.236538 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = 2.184775 0.427130 -0.179860 2.767377 0.577011 -2.162890 0.584036 1.996783 -0.678670 -5.178078 -3.789476 0.891895 0.173796 -1.072188 1.433460 0.611877 -0.050235 1.055617 -6.708987 2.079192 2.351276 1.381347 -0.158797 -1.567509 0.871596 -1.154531 -1.378812 0.988596 0.234974 3.136934 -2.032064 0.759870 2.378914 0.264004 1.543029 2.580457 -0.799026 0.183853 1.457281 0.458971 4.579407 2.449265 -0.308645 1.679677 1.878259 3.070791 -0.947509 2.453732 -1.482082 -1.924654 1.439398 -0.637909 -1.916091 0.184378 -2.050816 1.933222 4.358344 1.931354 -1.779758 1.767519 -1.174447 0.032651 0.993425 -1.174573 3.512197 2.414659 1.400462 1.687247 4.587715 -1.151305 -0.171464 1.029510 2.084640 -0.772534 1.131728 -1.816121 -2.173575 -3.275281 -0.380603 -5.980291 -0.797620 -0.201904 5.133516 -3.111663 1.140699 1.819926 0.872558 2.864739 -1.759844 -0.854801 -2.054394 0.459025 -2.052367 5.230912 -0.121584 0.949625 -0.382659 1.509629 1.424482 2.184811 -0.875744 -1.697090 -2.842252 -6.720123 -1.648390 -0.824004 0.543578 0.489574 -4.326423 -0.836190 1.223001 2.927790 -4.869956 -0.199812 2.155240 1.610887 -0.389254 -0.448003 -3.229220 -0.059128 -0.730904 0.502392 1.067109 -1.610057 -0.539866 -2.299403 -0.037637 0.356825 1.129225 -0.487742 -2.975954 -1.347430 -0.549047 -0.950837 -0.363657 0.550586 0.920681 -2.015808 1.840984 -2.427482 2.337287 -4.537745 0.185860 -1.889674 -3.052898 -0.311167 2.118543 2.237560 1.004567 -0.347721 -1.023787 -1.366134 -3.996957 -4.322805 1.173853 -0.537020 2.291230 -0.243841 -0.207934 0.065513 -1.250254 -0.655228 0.951457 -1.741540 -0.055671 -1.566264 5.291544 -0.581527 -0.867269 -2.521737 -0.679618 1.743014 -0.789155 1.038356 -1.217576 -1.713429 -4.206854 -2.691607 2.571341 -0.682930 0.390929 -1.923461 0.828254 -3.067847 1.169076 -2.500402 0.609108 -0.421841 -1.798795 -3.122088 -0.518029 -0.462539 -0.461243 -0.583386 -2.085174 -0.325105 2.917849 1.604201 0.875753 0.479975 0.468456 -3.448724 -3.274489 -0.183407 -0.543597 2.323532 2.249104 0.135802 -2.381368 -0.562253 -3.263765 2.935760 -1.224254 0.185183 -1.006092 -1.052332 3.933683 -1.551430 -1.099318 -3.136486 0.670129 0.223820 -4.189554 4.238435 1.854549 -1.966167 -0.839195 -1.898411 0.870894 2.041430 3.486959 -1.695882 -1.249131 0.586411 -1.613876 -0.368921 -1.620432 2.464360 -2.099008 2.195512 -2.326308 -1.332362 1.795950 2.455612 -0.247551 1.966840 0.338125 0.454972 1.272507 2.692511 1.670615 -1.110445 -2.671914 -5.458590 1.346643 0.116502 0.285869 -0.630916 -0.958501 -2.914883 0.078464 1.077276 3.520214 3.134386 -0.285149 2.374690 -3.085526 -3.252750 -0.994689 1.063634 0.475565 -1.771679 -0.075937 -1.384302 0.683281 1.306789 0.761308 1.505726 -3.000640 -3.158106 -0.413321 2.903013 0.896529 -0.988563 3.362908 0.912040 -1.736926 -0.185530 -0.019440 0.836860 -0.263281 -1.166960 -1.501495 -1.600253 0.455255 -1.442079 2.953011 -0.359856 0.577792 1.621096 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 3.718524 -0.515049 -0.605312 6.255035 0.142804 -1.851112 0.644418 2.944141 -0.978052 -11.202506 -7.058385 5.938870 0.332015 0.997683 1.872056 1.462738 0.344362 0.388180 -13.828360 2.928374 4.088219 1.556778 0.961749 -1.381526 1.622988 -3.191848 2.764601 2.432790 1.512850 6.453737 -3.694474 2.417270 5.408643 0.217845 3.517514 5.076170 -1.533838 0.067959 -1.885700 -1.457313 8.828399 4.752909 -0.810796 3.640010 1.600397 6.773305 0.939247 4.080107 2.848930 -4.836489 2.021880 0.787752 -4.574696 -1.062911 -4.376715 2.724143 4.423168 2.941925 -3.433325 2.542494 -1.651957 -0.543202 1.442219 -1.201924 6.740803 1.874172 4.914611 3.827797 6.486434 -4.461620 -1.114952 3.575885 2.868881 1.089113 3.447487 -4.119411 -5.756643 -4.495698 -0.317080 -10.451718 -4.541191 -0.449882 8.657678 -5.996897 0.752958 1.419811 -0.807216 5.810055 -2.883543 0.009362 -5.386113 -0.334098 -1.039185 7.862123 0.783946 0.011235 1.199131 2.583710 2.662681 5.182470 0.370300 -4.735720 -3.081401 -10.096958 -1.126805 -2.767163 3.300114 3.111636 -6.823066 -0.841150 0.098738 7.415638 -8.508790 -0.584669 4.688363 3.257377 2.313604 -1.468222 -3.134630 0.233848 0.958042 1.086562 4.987479 -4.089933 0.303878 -0.418287 1.522099 0.279969 2.661393 0.592027 -6.139165 -4.962820 0.611298 0.031045 -0.284303 0.873412 2.904820 -2.437854 4.251985 -3.324367 5.494188 -7.388606 0.596512 -2.746617 -2.904384 -1.858503 5.981648 5.651067 3.496226 -1.360778 -1.951273 -1.228768 -6.884899 -8.353897 2.234350 1.318941 2.604618 1.706283 -0.773842 3.492398 -3.078147 0.490201 0.933929 -2.796132 -1.063598 -0.831710 2.941781 0.126974 -1.063421 -3.874365 -0.682647 -0.109138 -0.978886 4.680832 -1.820171 -9.068731 -8.643765 -5.323125 5.559341 -2.282510 0.012390 -2.908948 -0.572220 -3.760428 0.961926 -5.817004 1.214097 -0.296772 -5.005770 -6.637537 0.322940 -1.536463 -0.659608 0.804804 -4.506223 -1.406598 3.971516 2.597490 2.364640 0.927559 0.784472 -6.319762 -4.603990 0.803833 -3.432125 5.739448 2.587615 -1.332569 -6.058093 -2.316766 -5.395389 5.258164 -3.192458 1.643851 -2.820058 -2.626640 6.376393 -2.993825 0.041480 -4.704189 2.336793 3.215934 -10.270826 7.528475 5.525301 -2.553040 -1.093183 -0.120687 0.568009 4.394415 5.300470 -4.128231 -4.149271 0.584866 -2.226611 0.169050 -1.280888 4.416576 -3.544324 1.297147 -4.637758 -3.164878 3.235781 3.089211 0.858245 2.826805 2.674076 0.622030 2.233457 5.547450 3.878150 -0.719218 -5.701090 -12.543966 4.566471 2.940337 -0.688863 0.462911 -3.307676 -5.166078 1.215295 -0.987170 5.993373 2.339740 -2.147030 5.254084 -6.475094 -6.074803 -3.916576 -0.834546 -0.014157 -0.728837 1.196946 -2.119597 2.087884 1.690097 -0.837917 0.011952 -2.871223 -1.971204 0.505520 4.951576 3.076697 1.204832 6.466277 2.058692 -4.270162 -1.130498 0.735869 -1.081792 -0.910468 -5.350711 -2.815967 -1.320328 1.671823 -2.500805 1.564022 -0.169973 0.031893 0.962646 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.287779 0.079764 0.077500 0.476136 0.186153 -0.395605 -0.091967 0.218673 -0.383298 -0.499159 -0.375033 0.026192 -0.146269 -0.024590 0.431320 -0.029858 -0.028663 -0.104455 -0.421994 0.348203 -0.068468 -0.031160 -0.109095 -0.316981 0.167266 0.406114 -0.195146 0.107929 0.079891 0.235565 -0.531147 0.092021 -0.034293 0.276838 0.380811 -0.299480 0.150747 -0.034231 -0.152990 -0.178409 0.548023 0.031028 -0.078885 0.312573 0.318117 0.154286 -0.209360 0.449887 -0.131684 0.118606 0.396865 -0.493311 -0.002542 0.308774 -0.304228 0.347407 0.572831 0.198197 -0.073186 0.038305 -0.170727 0.169662 0.046975 -0.310066 0.585146 0.371636 0.181257 0.203817 0.396430 -0.211912 -0.070013 0.040670 0.747368 -0.001384 -0.496767 -0.229038 0.119068 -0.923408 -0.099275 -0.550002 0.098077 -0.163188 0.569952 -0.234855 0.225622 0.243144 -0.248599 0.064583 -0.486770 0.339809 -0.262014 0.036139 -0.206497 0.266451 -0.161324 -0.045206 0.020800 0.055333 0.235954 0.396322 -0.205202 0.066036 -0.279777 -0.697792 -0.395560 0.635326 -0.155931 -0.278114 -0.345540 0.003518 0.458750 0.271224 -0.207102 -0.464971 -0.017907 0.129636 -0.261084 0.252398 -0.488536 -0.021940 -0.145366 0.290848 0.254359 -0.030198 0.112956 -0.633023 -0.258977 0.088212 0.593376 0.151989 -0.137246 -0.176350 -0.137223 -0.123146 -0.265539 -0.406251 -0.302315 -0.070996 0.188076 0.078156 0.228020 -0.420368 -0.112656 -0.409076 -0.276685 0.403740 0.641477 0.251178 0.239845 0.565710 -0.128911 -0.130211 -0.223518 -0.333075 0.301143 0.136756 0.165870 -0.118495 0.107834 0.160455 0.009522 -0.507037 0.413610 -0.495382 -0.401890 -0.591791 0.207817 -0.200619 -0.134612 -0.531843 0.322647 0.603860 -0.383986 -0.000640 -0.150209 -0.171666 -0.311065 -0.314303 0.192844 -0.048644 0.072960 0.172530 0.520302 -0.561658 0.219076 -0.299676 0.269353 0.118324 -0.509492 -0.269365 -0.149275 -0.010351 -0.009526 -0.106888 -0.058273 0.111970 0.062169 0.502480 -0.089649 0.412917 0.251233 -0.522773 -0.878649 -0.348766 0.307859 0.288021 0.006207 0.130094 -0.442646 -0.220678 -0.342231 0.573298 -0.428909 -0.064656 -0.176321 0.119584 0.319640 -0.205142 -0.335358 -0.216597 0.155408 0.272104 -0.636301 0.357575 0.168827 -0.309730 -0.272143 -0.806556 0.352266 0.179736 0.975153 -0.232187 0.156196 0.069127 0.327983 -0.202903 -0.420683 0.470333 -0.055304 0.001240 -0.263885 -0.428334 -0.089333 0.185975 0.240822 0.110837 0.058450 0.283341 -0.229863 0.578861 0.146591 -0.194681 -0.101451 -0.449173 -0.037502 0.648279 0.128369 0.276111 -0.461270 -0.477200 -0.337534 0.049966 0.378124 0.230492 0.195645 0.262531 -0.143154 -0.090547 0.044879 0.358012 -0.172992 -0.535627 0.236242 -0.303420 -0.194816 0.355045 0.024091 0.104155 0.086288 -0.797639 -0.514660 0.132808 0.076309 0.030891 0.243569 0.415321 -0.471435 0.074565 0.158161 0.128365 -0.029308 -0.291589 -0.201676 -0.262073 -0.114195 -0.136346 0.231153 0.208494 -0.129505 -0.038282 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = 1.667001 -0.151022 -0.204383 2.914058 -0.261051 -0.647294 0.326140 1.512207 -0.287512 -5.686290 -3.503783 3.769428 0.155705 0.895245 0.960772 0.846031 0.237753 0.203098 -6.711638 1.310944 2.171680 0.986670 0.922259 -0.511541 0.867317 -1.578697 1.637254 1.071571 1.054743 3.412137 -1.804313 1.320125 2.812467 -0.009936 1.592960 2.701921 -0.670645 -0.055041 -1.405295 -1.109435 4.398029 2.116511 -0.158021 1.955083 0.464830 3.538161 0.755600 1.894570 2.293136 -2.718355 0.880903 0.439370 -2.637865 -0.729036 -2.059007 1.337029 1.426306 1.669607 -1.698974 1.276818 -0.399947 -0.410998 0.619904 -0.675187 3.238227 0.810666 2.294404 2.116561 2.923105 -2.487752 -0.561978 1.795382 1.113653 0.806880 1.802006 -2.169793 -2.442835 -2.150374 -0.085719 -5.248363 -2.644029 -0.280682 4.828524 -3.264194 0.537016 0.686255 -0.790521 2.953777 -1.136019 0.227217 -2.902269 -0.361409 0.162457 3.113616 0.366972 -0.421523 0.736874 1.092950 1.161324 2.613052 0.642138 -2.391167 -1.695544 -4.468149 -0.275009 -1.485984 1.925117 1.984077 -3.185098 -0.443031 -0.045859 3.523415 -4.392895 -0.389586 2.520944 1.720861 0.762325 -0.086232 -1.309504 0.087513 0.807799 0.677910 2.647727 -2.138053 0.270931 0.252500 0.546047 0.104684 1.428004 0.455999 -3.168435 -3.021620 0.334225 0.174585 -0.075572 0.457052 1.616070 -0.872453 2.241683 -1.615868 2.881014 -3.391810 0.195873 -1.179444 -0.732136 -1.190593 3.483038 2.946562 1.895450 -0.767573 -1.122313 -0.539947 -3.256526 -3.624675 1.271246 0.730574 1.333393 1.357800 -0.432624 2.096509 -1.567243 0.481685 0.082845 -1.356370 -0.597407 -0.143430 -0.025749 0.087219 -0.504894 -2.338273 -0.155090 -0.363646 -0.743231 2.404865 -0.893252 -4.785969 -4.390877 -2.695051 2.969649 -1.271396 0.268861 -1.309003 -0.488285 -1.291310 0.110364 -3.089524 0.526210 0.018999 -2.799344 -3.537776 0.376503 -0.830815 -0.701405 0.758525 -2.223606 -0.805214 1.634908 1.339478 1.206144 0.422293 0.320562 -3.134508 -2.152954 0.376010 -2.138305 2.761925 1.366517 -0.707457 -3.646447 -1.297628 -2.436911 2.670562 -2.168388 1.064185 -1.509257 -1.173922 3.151251 -1.533666 0.190031 -2.292741 1.395657 2.124540 -6.575724 3.455991 2.912571 -1.118929 -0.392326 0.296037 0.157971 2.434255 2.409613 -2.118083 -2.300582 0.318962 -1.192248 0.239964 -0.697143 2.115981 -1.758512 0.393902 -2.292283 -1.497717 1.731779 1.326847 0.628391 1.542407 1.867952 0.498268 1.306315 2.783427 2.079385 -0.337632 -2.727520 -6.066706 2.688847 2.674387 -0.241463 0.782927 -1.907538 -2.267755 0.871609 -1.009479 2.839032 0.465886 -0.902308 2.725019 -3.218022 -3.062580 -1.997189 -0.687059 0.000552 0.060991 0.717372 -0.818879 1.089683 0.979560 -0.654075 -0.217822 -1.117565 -0.736300 0.492393 2.805564 1.787301 1.199902 3.306866 0.926848 -2.207937 -0.423518 0.302973 -0.621169 -0.780024 -2.996161 -1.187577 -0.288189 0.973690 -1.392292 0.431891 -0.223968 -0.377954 0.093299 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = 0.856055 0.154172 0.259835 0.826017 0.184685 -0.453672 0.079419 0.870933 -0.273161 -2.178036 -1.840430 1.183937 -0.199619 0.008943 0.586686 0.105708 0.396093 0.231386 -3.263288 0.731535 0.834830 0.398141 0.263147 -0.226352 0.460777 -0.561122 -0.157316 0.427771 0.302040 1.162921 -1.023868 0.371782 0.945769 0.262443 0.900999 0.947583 -0.615674 -0.373648 0.230962 -0.489259 1.956040 0.878541 0.114948 0.949411 0.738766 1.254888 -0.233025 0.773991 1.306380 -0.877328 0.383283 -0.506495 -1.036912 0.285893 -0.989891 0.640834 0.675211 0.374899 -0.781743 0.554218 -0.166969 -0.043855 0.171016 -1.111121 1.340090 0.366640 0.663983 0.458256 1.304991 -0.601986 -0.207317 0.612968 0.995092 0.507260 -0.004943 -0.769776 -0.470967 -1.606934 -0.078138 -2.682541 -0.549794 -0.367864 2.065683 -1.106356 0.474463 0.474028 -0.481585 1.033917 -0.422973 -0.219114 -1.128792 0.138720 -0.097938 0.817385 0.029512 -0.134585 0.317272 0.351057 0.391840 1.059072 -0.327708 -0.732622 -1.119753 -2.633686 -0.177179 -0.280953 0.549620 0.197139 -1.325619 0.101661 0.337360 1.851012 -1.511591 -0.405456 0.834960 0.311834 -1.218472 0.069558 -0.901045 -0.510123 -0.054178 0.651556 0.795722 -0.752152 -0.077537 -0.582705 -0.058608 0.030333 0.858073 -0.032725 -0.538600 -1.161459 0.058161 0.192229 -0.388413 -0.049413 0.389994 -0.130119 0.899800 -0.468237 0.932709 -1.232552 0.191554 -0.816711 -0.155647 -0.251144 1.628884 1.504525 0.538161 0.316250 0.047251 -0.366942 -1.208744 -1.081762 0.683004 -0.191072 0.974890 0.109206 -0.004112 0.499848 -0.319226 -0.365771 -0.346516 -0.733752 -0.120015 -0.582549 0.563332 -0.179564 -0.177292 -1.174276 0.064042 0.678415 -0.924779 0.129026 -0.551698 -1.257969 -1.219003 -1.201798 1.001550 -0.420385 0.296105 -0.427621 0.443983 -0.187904 0.251822 -1.040852 -0.215238 -0.194926 -1.203045 -1.197853 -0.241147 -0.381962 -0.244697 0.000809 -0.771687 -0.090839 1.138101 1.182701 0.452957 0.271147 0.007225 -1.311348 -1.040475 -0.369778 -0.475673 0.891795 0.864475 -0.311732 -1.862617 -0.440815 -0.950692 1.305967 -0.860484 0.177818 -0.657921 -0.763086 1.265518 -0.432379 0.121121 -0.761402 0.483638 0.582381 -3.428028 1.162982 1.022396 -0.765651 -0.411307 -0.907970 0.281090 0.959043 1.407466 -0.531774 -0.253027 0.091021 -0.618585 -0.004478 -0.595428 1.141127 -0.471438 0.482224 -1.060440 -0.778438 0.815829 0.565502 0.230116 0.651414 0.584093 1.002838 0.959928 1.204491 0.494289 -0.325038 -1.120326 -2.869326 0.754521 2.290496 0.284260 0.653103 -0.699110 -1.229264 -0.213296 -0.499352 1.240055 0.398329 0.160380 0.946469 -0.679029 -1.075155 -0.473810 0.072278 -0.031914 -0.300384 0.578961 -0.487953 0.070282 0.254050 0.068138 0.331719 -0.501421 -1.375160 0.027571 0.872959 1.150942 0.268688 1.140859 0.398904 -1.145106 -0.012498 -0.050135 0.207834 -0.286065 -0.848806 -0.650870 -0.506200 0.045203 -0.486146 0.587797 0.115319 0.352157 0.029519 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 5.231863 4.206378 0.948015 2.788261 1.813489 -3.087386 -0.191559 7.632943 -6.386859 -4.201258 -6.406523 2.323159 -2.348717 0.260205 8.239139 -0.109808 0.808088 -1.812446 -11.124648 3.134990 -0.965360 -0.829046 -0.254981 -3.627817 2.625674 4.874479 -2.983000 4.283453 1.055788 3.026714 -4.165283 -1.119728 0.348807 3.533064 5.978684 -3.148716 3.361509 1.614974 -2.192432 -0.848208 8.377024 2.915299 -1.832668 6.137606 5.722903 3.128509 -2.305934 5.266043 -0.194936 1.227900 6.070499 -8.177646 -2.317719 3.182462 -2.930405 1.280219 7.949721 2.349443 -3.446194 4.447821 0.968869 -0.439964 -0.825722 -7.446374 5.125028 3.447797 3.927517 -0.587557 4.440921 -2.566778 -2.723567 0.406856 7.611408 0.668189 -10.522240 -8.705508 1.819576 -14.838142 2.994034 -12.129486 -4.089572 -3.686151 6.372552 -3.159279 3.353536 5.052262 -7.299105 -0.793640 -6.078141 0.913660 -2.012615 -3.253523 -0.374453 4.606810 -0.544445 -1.159300 6.438561 0.738955 6.353636 7.087488 -1.069827 1.074325 -5.564000 -5.157855 -2.020081 10.782836 0.961054 -2.365339 2.565366 -2.758264 3.368016 -1.068464 -1.420651 -6.425431 4.520405 1.927615 -5.252558 5.127425 -6.835594 -0.171528 0.639536 3.288080 6.283602 -4.232113 0.823555 -3.780789 -2.607794 0.630572 6.520166 1.117033 -0.364314 -4.324193 -0.261086 -1.619251 -3.701757 -8.637564 -6.403299 -0.608144 4.616903 0.777686 3.817982 -5.645241 -1.385524 -0.170158 -0.728755 2.420566 6.033602 2.696021 2.206197 7.303423 -1.525069 -0.149352 0.405838 -2.917552 6.916156 3.590283 4.524817 -1.317799 0.514718 2.388622 -0.516836 -6.319640 1.617773 -2.681200 -3.534356 -6.164214 2.988008 -0.876497 -1.259311 -5.752665 5.340503 6.106562 -2.156013 -1.633553 -1.358956 -6.247325 1.920639 -3.089103 3.238935 0.510382 0.271117 3.478032 6.768273 -7.289631 0.092050 -5.845599 3.611155 2.038157 -7.730754 -0.991419 0.902908 -0.412162 3.609212 -0.121807 0.609185 -1.522273 1.299992 9.902968 -1.357433 3.750481 3.583573 -5.815500 -10.921311 -4.815904 1.987138 4.052823 -4.842174 1.612282 -6.044438 1.291391 -2.056982 6.613978 -1.899265 -2.134392 -6.557382 0.964591 5.552964 1.468472 -4.523564 -3.090670 1.717555 5.379440 -7.755791 0.816104 2.182203 -1.003298 -4.944957 -5.179209 0.600280 4.673472 10.169088 -1.064786 -2.133689 0.555697 2.396446 -0.233594 -4.360371 6.606381 0.513566 0.505449 -3.985738 -4.744116 1.467547 3.236609 3.529191 6.836983 2.669570 7.344157 -3.224433 7.969829 -1.671461 -3.814583 2.100288 -7.255367 -0.782763 16.914041 0.429714 2.231538 -4.746417 -6.626296 -4.150089 -0.366374 2.749524 6.002872 1.415821 2.607435 2.845347 -2.427876 -1.754251 5.593796 -1.064222 -5.258800 -0.594711 -1.176564 1.158883 5.007899 -2.061262 5.859864 0.924338 -10.024691 -9.371202 -0.338935 -0.438417 1.759827 4.471854 2.331650 -5.983951 1.227067 -0.365469 3.552307 5.240786 -3.505886 -3.399248 -5.548254 -1.221553 -0.429515 -0.681690 3.076006 -0.941489 1.389299 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = 0.696130 0.407387 0.318673 0.727157 0.073046 -0.879235 0.253294 0.981666 -0.874213 -1.936341 -1.280709 0.861455 -0.165299 -0.285043 0.361888 0.132533 -0.146353 0.177390 -3.189054 0.919388 0.964471 0.558698 0.289354 -0.728795 0.473777 -0.537140 -0.238719 0.770224 0.053310 1.106507 -0.928519 0.015276 0.835832 0.335170 0.742635 0.945732 -0.364687 -0.181488 0.394751 -0.026761 1.729397 0.931451 -0.330900 0.428339 0.870157 1.169618 -0.053093 0.032375 0.041154 -0.777332 -0.020347 0.141961 -1.020861 -0.033679 -0.640093 0.490293 0.924061 0.941211 -0.674808 0.581181 -0.713907 -0.289860 0.235296 -0.513390 1.300892 0.417053 0.675565 0.439754 1.541562 -0.586561 -0.326552 0.687521 0.806387 -0.123440 0.079036 -0.429932 -0.763280 -2.374190 0.049072 -3.146921 -0.954504 0.196881 2.015580 -0.987072 0.484560 0.708061 0.085862 0.972933 -0.776803 -0.308304 -0.940640 0.088237 -0.472578 1.773945 -0.004944 -0.071041 0.347473 0.644160 0.866054 1.198339 -0.360962 -0.518853 -1.061814 -2.404742 -0.135157 -0.209931 0.271277 0.084155 -1.322865 -0.225300 1.422651 1.794321 -1.592577 -0.155783 1.094022 0.579325 -0.725595 -0.329328 -1.040699 0.075497 -0.350094 0.188935 0.882459 -0.662174 -0.185833 -0.025451 0.234505 0.035516 0.561186 -0.067438 -1.442457 -0.941042 0.187465 -0.549556 -0.263230 -0.152075 0.107575 -0.360340 0.736302 -0.870728 1.041178 -1.394451 0.790014 -0.571717 -0.423234 -0.020845 0.643955 1.552874 -0.320401 -0.003170 -0.089666 -0.228732 -1.084302 -1.185760 0.625205 0.052690 0.821975 -0.312000 -0.082796 0.259957 -0.196017 -0.346144 -0.037389 -0.609096 0.045442 -0.569496 1.498693 0.004250 -0.184054 -0.919515 -0.096093 0.625781 -0.319045 0.156703 -0.628639 -0.952385 -1.334341 -1.268541 0.912977 -0.127218 -0.187989 -0.640674 0.234635 -0.436391 0.742929 -0.912850 0.361533 -0.207764 -0.880329 -1.042655 -0.129602 -0.267495 -0.660444 -0.329936 -0.514146 -0.377529 0.639662 0.166489 0.412884 -0.114803 0.258848 -1.189741 -1.041120 -0.094010 -0.066367 0.622345 0.856160 0.029348 -1.720266 -0.207290 -1.012141 1.270364 -0.232036 0.033550 -0.721747 -0.893825 1.693218 -0.360494 0.010121 -0.636788 0.476903 0.371794 -2.146431 1.876758 1.195462 -0.590570 -0.510527 -0.468359 -0.060656 1.169601 1.317027 -0.711860 -0.379826 0.055398 -0.565010 -0.102476 -0.063779 1.141930 -0.732196 0.824518 -0.877740 -0.798385 0.528910 0.872409 0.166026 0.876488 0.113480 0.500820 0.330479 1.064422 0.441923 -0.296303 -0.909059 -2.016303 0.709647 0.681828 0.196478 0.199474 -0.253420 -1.400615 -0.144213 0.162250 1.363825 0.651274 -0.732627 0.758811 -0.898627 -1.115335 -0.540624 0.271465 -0.145513 -0.542888 0.483394 -0.378967 0.110004 0.463822 -0.088694 0.465840 -0.485103 -1.184414 -0.324691 0.726676 1.224312 -0.376963 1.186977 0.255799 -0.910341 -0.209650 0.087962 0.361573 -0.061538 -0.239740 -0.593536 -0.707241 0.213293 -0.271699 0.791644 0.289332 0.132250 0.417460 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 2.074297 0.153914 0.112729 1.533266 0.653734 -2.304730 0.507145 1.801522 -0.787016 -2.752329 -1.848081 1.176496 -0.161221 -1.454543 0.784517 0.293641 -0.156571 0.440830 -3.974807 1.964340 0.746150 0.674303 -0.913666 -1.704069 0.484805 -0.203591 -0.978858 1.205302 -0.223431 1.636355 -1.533924 -0.154170 0.966616 0.571397 1.336633 1.324485 0.060427 -0.243318 1.065374 0.256525 3.055615 1.710117 -0.536456 1.210231 2.000342 1.721079 -0.588190 1.981502 -1.217897 -0.473559 0.904303 -0.591845 -1.510453 0.211263 -1.612526 1.208423 2.789336 0.975313 -1.121427 1.295153 -1.092741 0.020929 0.750615 -0.424910 2.613439 1.702683 0.777155 0.871132 3.489385 -0.676765 -0.344578 0.889238 2.661824 -0.295904 0.257069 -0.980605 -1.255765 -3.179500 0.065266 -3.907172 -0.294200 -0.358442 3.483512 -1.702366 0.981995 1.469900 0.716798 1.445481 -1.890022 -0.480780 -1.309094 0.476883 -1.354291 3.916106 -0.575774 0.974354 -0.231921 0.933663 1.154973 1.756565 -0.822506 -0.946684 -1.853148 -4.442384 -1.084088 0.182784 -0.871108 -0.827637 -2.654981 -0.554583 1.858564 2.244355 -2.639444 -0.691020 1.281955 0.356955 0.104636 0.291629 -2.089131 0.193816 -0.807391 0.497086 0.465835 -0.816469 -0.582080 -1.503965 0.119800 0.433514 1.007970 -0.140151 -2.687576 -0.346385 0.099265 -0.780222 -0.499191 -0.388819 -0.484755 -1.755006 0.786116 -1.530577 1.453707 -2.903757 0.006508 -1.484059 -1.926977 0.538177 1.661781 1.534067 0.692224 0.652733 -0.176781 -0.849855 -2.203350 -3.136961 1.097082 -0.676252 1.180759 -1.087218 0.171550 -0.578318 -0.364978 -1.372882 0.939917 -1.603337 -0.236683 -1.739860 3.691444 -0.477815 -0.519886 -1.579800 -0.080486 2.126550 0.100536 0.108837 -1.056672 -1.986232 -2.172092 -1.833480 1.374333 -0.087195 -0.122834 -0.751399 0.723313 -2.044563 1.113892 -1.178167 1.178873 -0.436714 -1.254187 -1.754974 -0.452745 -0.251137 -0.254539 -0.992935 -0.944441 -0.030732 1.063224 0.974125 0.057596 0.665440 0.478662 -2.518841 -2.856412 -0.382426 0.975437 2.048260 1.338558 0.733845 -1.580029 -0.170882 -2.378132 2.314269 -1.817605 -0.126463 -0.334838 -0.946572 2.995902 -0.874722 -1.171924 -1.837518 0.910523 -0.020544 -2.115943 3.372516 1.678591 -1.794072 -1.170815 -1.957391 0.594147 1.642471 3.365234 -1.286404 -0.488219 0.708377 -0.295030 -0.710512 -0.894312 1.827090 -0.997056 1.992875 -1.721337 -1.396085 0.668781 1.882711 -0.059959 0.912939 -0.677043 0.373349 -0.168237 2.237086 0.687698 -0.426741 -1.750822 -3.446761 0.500616 0.149189 0.240305 0.207359 -0.970672 -2.322624 -0.451646 0.485970 2.481586 1.559275 -0.344096 1.272952 -1.969526 -2.008646 -0.383021 1.100739 0.068306 -1.614687 0.927020 -1.144017 -0.121506 0.756185 0.739191 0.775447 -1.327088 -2.499095 -0.838287 1.252147 1.013743 -1.505981 2.044412 0.628525 -1.077427 -0.179737 0.006631 0.940441 0.179883 -0.662592 -0.957926 -1.727578 0.373973 -0.708548 2.655386 0.623413 0.673992 0.989172 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.585655 0.024872 0.221453 0.593421 0.398858 -0.720082 0.070010 0.466186 -0.383223 -0.772644 -0.473478 0.181595 -0.191657 -0.326547 0.410748 -0.058758 -0.007018 0.031771 -0.739429 0.574004 -0.036066 0.124963 -0.245385 -0.627969 0.194180 0.348015 -0.266974 0.350395 0.030368 0.405451 -0.656558 -0.103518 0.075843 0.362260 0.488001 -0.005515 0.393368 -0.056096 0.008440 -0.129713 0.961636 0.226901 -0.127791 0.544570 0.668675 0.368950 -0.199476 0.750696 -0.287745 0.101308 0.446729 -0.586861 -0.224790 0.187856 -0.556964 0.531416 0.971009 0.345336 -0.274278 0.274353 -0.206141 0.140138 0.155202 -0.286635 0.766486 0.621650 0.131641 0.266325 0.981581 -0.332722 -0.212045 0.241291 1.171658 0.050252 -0.346628 -0.393630 -0.085711 -1.300871 -0.083742 -0.890736 0.112375 -0.251916 0.953776 -0.408385 0.377822 0.550020 -0.115199 0.161602 -0.655520 0.131387 -0.420587 0.158030 -0.353649 0.905023 -0.264290 0.154275 -0.015976 0.144407 0.399826 0.665301 -0.227975 -0.072613 -0.496521 -1.279448 -0.512792 0.547399 -0.366936 -0.499727 -0.614598 -0.134266 0.690941 0.487301 -0.522033 -0.546657 0.195770 0.154781 -0.161251 0.155788 -0.638250 0.023415 -0.233959 0.222733 0.157610 -0.179093 -0.086716 -0.704770 -0.225651 0.121444 0.611969 0.038036 -0.485862 -0.155947 -0.161268 -0.150822 -0.297808 -0.533051 -0.470475 -0.471991 0.218432 -0.186094 0.387729 -0.743203 -0.143548 -0.526612 -0.555703 0.433934 0.867173 0.158473 0.397593 0.616219 -0.155032 -0.317867 -0.384769 -0.816618 0.476709 -0.034899 0.320433 -0.267651 0.125122 -0.056430 -0.045346 -0.789463 0.508368 -0.638297 -0.347905 -0.759826 0.692958 -0.354016 -0.162676 -0.717659 0.347917 0.990640 -0.178960 -0.074433 -0.348475 -0.464128 -0.446016 -0.570559 0.329777 -0.035121 0.010766 0.112820 0.508797 -0.793469 0.395063 -0.385823 0.515549 -0.010497 -0.657113 -0.480370 -0.142606 -0.097568 0.040761 -0.175504 -0.180243 0.130510 -0.002340 0.564827 -0.137215 0.447025 0.287590 -0.932093 -1.250128 -0.431889 0.575609 0.575689 0.098340 0.345719 -0.507622 -0.214417 -0.609798 0.790800 -0.729863 -0.126804 -0.096627 -0.011688 0.752235 -0.263443 -0.440883 -0.538743 0.299199 0.253725 -0.611736 0.857494 0.376364 -0.582194 -0.526690 -0.985747 0.304502 0.403834 1.431062 -0.433823 0.010894 0.297576 0.257794 -0.321197 -0.562769 0.637783 -0.092576 0.453626 -0.559037 -0.657476 -0.085612 0.536544 0.122454 0.210662 -0.051048 0.297370 -0.389484 0.937325 0.192301 -0.112925 -0.361791 -0.814776 0.032130 0.517560 0.201992 0.294576 -0.582108 -0.751596 -0.278958 0.245996 0.706187 0.498652 0.197127 0.421951 -0.405680 -0.374543 0.136348 0.422781 -0.029673 -0.783392 0.366747 -0.487703 -0.223079 0.316287 0.126257 0.186055 -0.041211 -1.010320 -0.599634 0.267295 0.202659 -0.249332 0.524180 0.395218 -0.538586 0.127652 0.123385 0.382330 0.060870 -0.277185 -0.267041 -0.548241 -0.048598 -0.177824 0.737336 0.264232 -0.009514 0.146945 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.212741 0.075008 -0.004509 0.402056 0.085799 -0.516958 0.220464 0.270132 -0.208551 -0.640086 -0.205563 0.066263 0.034350 -0.329014 0.055656 0.077631 -0.167635 0.348677 -0.616231 0.347935 0.274862 0.246845 -0.123438 -0.465033 0.018178 -0.161209 -0.194865 0.349694 -0.047039 0.482713 -0.254943 -0.096692 0.331683 0.112204 0.126296 0.482248 0.374282 0.077209 0.147549 0.262046 0.614966 0.355898 -0.262087 0.088215 0.326328 0.482652 0.116497 0.021275 -0.703387 -0.202824 -0.127647 0.019263 -0.280702 -0.224383 -0.289968 0.239612 0.601820 0.535467 -0.263264 0.390021 -0.344384 -0.057932 0.223408 0.054732 0.472835 0.280843 0.100671 0.270755 0.856576 -0.268327 -0.103517 0.187502 0.377514 -0.278613 0.344909 0.098600 -0.451221 -0.929101 -0.064354 -0.862791 -0.219708 0.224554 0.650481 -0.473251 0.189916 0.528785 0.313107 0.374739 -0.426271 -0.222326 -0.333576 0.055659 -0.299377 1.134041 0.149428 0.158689 -0.149296 0.349073 0.407973 0.358922 -0.052660 -0.286219 -0.390436 -1.025413 -0.266542 -0.193034 -0.256135 -0.097650 -0.608081 -0.356531 0.752840 0.728636 -0.794130 0.075858 0.438609 0.222682 0.192653 -0.535076 -0.361292 0.406897 -0.197051 -0.172904 0.173191 -0.319732 -0.187666 0.060973 0.167732 -0.009021 0.041966 -0.063415 -0.687575 -0.067815 0.061578 -0.263067 0.012908 -0.003515 -0.071679 -0.523248 0.157695 -0.582677 0.421416 -0.606957 0.280772 -0.052493 -0.622816 0.005207 0.231971 0.195313 0.000000 -0.183889 -0.278565 -0.170659 -0.487753 -1.072215 0.335328 0.015697 0.224808 -0.172525 -0.076462 -0.191899 -0.173844 -0.136011 0.395724 -0.280451 0.047676 -0.046523 0.923535 -0.062421 -0.156151 -0.363365 -0.113354 0.431444 0.387198 0.114865 -0.328953 -0.226619 -0.531084 -0.423234 0.373729 -0.023424 -0.142049 -0.270109 -0.131916 -0.599395 0.407941 -0.264365 0.418144 -0.090862 -0.160087 -0.499374 -0.032121 -0.088891 -0.232941 -0.116046 -0.278260 -0.060470 -0.000157 -0.401980 0.004116 -0.086977 0.229036 -0.409123 -0.496738 0.068964 0.119615 0.340054 0.288905 0.314938 -0.330564 0.018795 -0.519763 0.507558 -0.228933 0.010556 -0.054281 -0.246700 0.788275 -0.207592 -0.347186 -0.370303 0.263033 0.005238 0.087365 0.905362 0.525098 -0.323091 -0.206836 -0.036258 -0.024073 0.452332 0.667110 -0.473544 -0.274753 0.243556 -0.176639 -0.116745 -0.067230 0.302905 -0.325878 0.518836 -0.353790 -0.202340 0.058287 0.556696 -0.088218 0.302439 -0.137885 -0.127509 -0.260082 0.421983 0.210612 0.005420 -0.391190 -0.340942 0.266790 -0.702218 0.054906 -0.097279 -0.081889 -0.324892 0.147250 0.212266 0.553770 0.479745 -0.456247 0.350827 -0.628268 -0.553056 -0.077440 0.125179 0.144923 -0.416938 0.307567 -0.215887 0.112380 0.118769 0.110556 0.126430 -0.312036 -0.238136 -0.102988 0.298979 0.175181 -0.463184 0.584085 -0.058798 -0.206858 -0.046789 -0.053950 0.198497 0.077300 -0.063559 -0.194151 -0.318143 0.265029 -0.173055 0.670100 -0.097802 -0.034026 0.457734 -PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 4.383940 0.561892 -1.061536 7.695796 0.119041 -3.066581 0.809239 3.777235 -1.271955 -13.604733 -8.889743 5.785322 0.680046 0.420918 2.716024 1.840400 -0.062991 1.477806 -16.723164 3.923497 5.763722 2.770051 1.166320 -2.461403 2.195811 -3.281735 1.317817 1.994311 1.799114 8.159608 -4.704538 3.162307 6.609330 0.271965 4.140475 6.081897 -2.359783 0.566625 -0.687265 -1.134562 10.609646 5.984571 -0.685625 4.358013 2.110992 8.045582 0.034276 4.398373 0.641160 -5.926087 2.358131 0.736842 -4.989954 -0.642829 -4.721111 3.935845 6.805158 4.096077 -4.025429 3.257841 -1.783547 -0.360047 2.018097 -1.960316 8.196952 3.477087 4.893127 4.969124 8.627487 -4.494085 -0.588010 3.118127 3.162702 -0.363352 4.318717 -4.642991 -6.777361 -4.813740 -0.968493 -13.376319 -4.539815 -0.172695 11.012040 -7.850980 1.924616 2.183809 0.272618 7.361820 -3.381920 -0.613260 -5.910128 -0.223220 -2.828982 10.364283 0.750592 0.710318 0.446536 3.407998 3.228077 5.535632 -0.227340 -5.299690 -4.051523 -12.853385 -1.891001 -3.056407 3.679068 3.884583 -9.053097 -1.482040 0.056336 8.785111 -11.451687 -0.462258 5.376112 4.229763 1.478364 -2.252615 -4.821935 0.547284 0.088435 0.997744 4.840097 -4.909206 -0.083378 -1.685704 0.501972 0.419386 3.188928 0.370039 -7.373186 -5.482415 -0.210038 -0.895614 -0.434619 1.864230 3.739581 -3.299483 5.062395 -4.819797 6.357862 -9.339083 0.577083 -3.478046 -5.020545 -2.099477 5.638420 5.914170 3.407816 -2.175167 -2.518961 -2.104266 -9.107796 -9.985400 3.038263 1.000583 3.877595 1.961671 -0.909085 3.232105 -4.077621 0.482018 1.844023 -3.601595 -1.085939 -1.657247 6.694057 -0.315786 -1.661068 -4.963948 -1.377559 0.446776 -1.546813 5.149164 -2.258716 -7.868248 -11.260012 -6.293404 6.896028 -2.596971 0.457972 -4.327465 0.283713 -5.366056 1.262781 -7.204026 1.596361 -0.337489 -4.921743 -8.146237 -0.211869 -1.549810 -0.890840 0.388083 -5.411569 -1.438380 6.013387 2.886875 2.519263 1.037821 1.296147 -7.392906 -5.785891 1.085306 -3.922811 5.657732 3.797724 -1.160668 -7.075780 -2.515450 -6.811190 6.413732 -2.934230 1.856575 -3.396648 -2.361788 8.245107 -3.886903 -0.808649 -6.429736 2.169023 2.964194 -11.541988 8.777163 5.223947 -3.204995 -0.843285 -1.043023 1.425640 5.098167 6.504577 -4.725864 -4.856936 0.775535 -3.639615 0.086408 -2.559768 5.400538 -5.078700 2.539545 -5.212537 -3.026139 4.354027 4.008637 0.586166 4.211788 2.930448 0.169001 3.300938 6.264060 5.191582 -1.499577 -7.032511 -13.774142 4.959363 1.641723 0.018044 -1.003647 -3.042231 -6.301317 1.464952 0.287019 7.524853 4.311376 -2.260454 6.279537 -8.334983 -7.648899 -4.114584 0.202338 0.498954 -1.658088 0.000114 -2.508623 2.722703 2.976516 -0.085423 1.424082 -5.096839 -3.564530 0.385801 6.878408 2.693367 0.663677 8.108583 2.659337 -4.942963 -0.846195 0.597102 -0.582756 -1.863673 -5.863770 -3.537248 -1.773755 1.792142 -3.575081 3.327147 -0.978590 -0.013340 1.931316 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/vertex-cover-problem.cpp__main = 0.522203 0.181967 1.294027 -0.122870 0.622397 -0.075483 0.614146 1.054988 -0.466974 -1.182767 -1.393574 -0.983599 -0.425198 -0.289497 0.682642 -0.611638 0.530103 0.170426 -1.710985 -0.113145 0.537746 0.270903 0.379512 -0.170816 0.150627 -0.342598 -1.747628 0.959490 -0.030514 0.646884 -0.265351 -0.445582 0.436900 0.554077 0.085941 0.867904 0.280781 -0.186743 1.064377 -0.061573 1.353369 0.038801 -0.075875 0.596018 0.897115 0.740613 -0.954971 0.840968 -0.471127 -0.288743 1.065465 -2.410456 -0.606095 0.104827 -0.576646 0.268133 1.622080 0.898440 -0.484207 0.903547 -0.462599 0.075249 -0.080202 -1.244144 0.268881 1.055539 -0.217058 -0.141061 0.952916 -0.696039 -0.599397 0.646507 0.399554 0.289582 -1.915378 -0.657537 0.990937 -2.653138 0.323083 -1.773828 -0.344515 -0.570490 1.496748 -0.129970 0.256256 1.234392 -0.664886 -0.084494 -0.174983 -0.326429 -0.603392 0.275463 0.126944 0.388425 -0.311709 -0.126869 0.595810 -0.104439 0.639792 1.071730 -0.605407 0.221539 -2.280536 -2.065928 -0.417343 0.236805 0.232356 -0.467257 -0.411540 -0.366573 1.507826 -0.325621 -0.445272 -0.520661 0.667385 0.835458 -2.049063 1.146979 -1.491224 -0.810577 -0.056988 0.184415 0.480354 -0.362270 -0.011777 -1.417750 -0.303628 -0.103751 0.289103 -0.491671 -0.391582 -0.582628 -0.148593 -0.527769 -0.278731 -0.615205 -0.504922 0.321389 0.411274 -0.547688 0.644545 -1.140133 0.396177 -0.542294 -0.529601 0.094898 1.494278 0.872637 -0.111595 1.058388 -0.268126 -0.357208 0.044776 -0.383121 0.218912 0.022407 1.736858 -0.618407 -0.114338 -0.105207 -0.045700 -0.761975 -0.856826 -0.082409 0.249862 -0.622871 1.262354 -0.348851 -0.303759 -1.057236 0.866637 1.402870 -1.369373 -0.574227 -0.647725 0.957522 0.081470 -0.996806 0.447861 -0.070142 -0.089724 0.171627 0.644399 -0.718781 0.566718 -0.281990 -0.027127 -0.049712 -1.380135 -0.694856 0.307901 -0.291609 -0.239769 0.513322 -0.168282 -0.259406 0.629177 1.272318 0.399779 0.247383 -0.054135 -0.777732 -1.219599 -1.220148 0.296674 0.370892 0.873725 0.133613 -0.447995 -0.152874 -0.380811 1.093389 0.302002 -0.285315 -0.496694 -0.342776 0.812573 0.033815 0.031069 -0.971528 0.168317 0.607575 -1.904995 0.593163 0.213828 -0.633286 -1.178381 -1.636949 -0.319907 0.558214 1.247567 0.051182 0.103462 0.455424 -0.349360 -0.109928 -0.789548 0.595220 0.381309 0.671799 -1.004643 -0.861614 0.440424 0.838876 -0.156471 1.077514 0.682611 1.759607 0.575619 1.125604 -0.226962 -0.950869 0.032098 -1.565509 0.545852 2.389965 0.294564 0.203452 -0.647576 -1.103336 -0.212831 0.676056 0.695675 1.816803 0.634018 0.682861 0.749225 -0.447042 0.087257 0.574283 0.424010 -1.072435 -0.245631 -0.187273 0.127274 0.312318 -0.138830 1.376193 -0.698425 -2.581165 -0.691885 0.742849 0.372369 -0.027217 0.781041 -0.172013 -0.604243 0.181709 0.005266 1.070374 0.711271 0.442771 -0.350027 -0.754413 -0.164961 -0.053766 0.727983 0.450900 -0.085717 0.829127 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 5.384105 0.907887 -2.822046 5.660866 -0.576530 -5.235783 1.381200 4.299097 -2.527374 -9.636466 -6.010806 5.507125 1.129292 -2.531745 1.391610 2.842729 -1.510580 1.056771 -12.106643 5.091291 3.727238 1.258857 -2.674895 -2.921623 0.762482 -2.998099 -0.991139 2.811023 -0.466501 6.117733 -2.915091 1.665477 4.806566 -0.099590 2.962454 5.561726 -1.775683 0.085997 1.801835 1.155392 8.004304 6.055967 -1.636814 1.835914 2.885661 6.368188 -0.912759 5.399123 -4.867501 -3.723854 2.464637 1.371277 -5.275649 -0.313288 -3.802265 2.170592 5.548143 2.883678 -2.781846 3.695602 -5.356607 -0.672793 2.500659 0.638999 8.295433 3.900754 4.511270 3.915529 8.889530 -2.691663 -0.349876 3.563039 3.463328 -1.845572 3.876597 -1.859610 -6.288741 -4.650939 0.372097 -11.436157 -3.906719 0.670621 12.604781 -6.258972 0.576985 2.258525 3.552348 6.402398 -5.610395 -0.571521 -4.159415 0.156534 -3.928365 11.750385 0.167674 2.687297 -1.294603 3.246620 3.168190 4.326363 -2.447132 -4.294161 -5.145855 -10.498088 -2.177951 -2.219273 -0.350435 1.434290 -9.028203 -2.280168 3.741452 8.784831 -9.707699 0.409724 5.120122 1.985356 5.772387 2.770442 -6.204354 1.973530 -0.507398 0.710724 3.949754 -2.521221 -0.656104 -1.790867 2.588706 0.490030 1.283841 0.418383 -11.878135 -1.850762 1.791592 -3.745099 0.295670 1.763860 1.876235 -4.588714 3.160503 -4.964612 5.074026 -9.826698 0.425141 -3.250798 -7.203917 -0.393450 4.640652 8.520380 2.814306 -1.761205 -1.235719 -1.762685 -8.837542 -10.040774 1.477617 -0.925552 2.446187 -1.865133 -0.121948 0.176452 -2.247440 0.558599 2.743035 -3.444928 -0.058838 -1.956611 11.374904 0.697582 -1.659466 -3.714237 -2.898475 0.503383 1.742301 3.821729 -1.979833 -9.388463 -9.585555 -4.861090 5.163580 -0.806688 -0.753352 -4.232859 -0.874898 -5.284728 1.623762 -4.314622 2.791563 -0.545035 -2.666180 -6.149410 -0.184283 -0.177342 -3.204324 -2.649889 -3.379981 -1.683633 5.819059 -0.092744 1.782244 0.840876 0.636296 -5.450828 -5.405535 2.089240 -1.256510 6.620077 6.166219 0.479877 -4.804706 -0.412667 -8.295952 6.100512 -3.914247 0.920458 -1.848555 -2.958951 8.840620 -3.748036 -2.287706 -5.165765 2.646239 -0.176142 -8.875718 9.604541 6.589802 -3.594445 -1.226024 -1.062644 0.932681 5.390361 6.258408 -3.826299 -3.152760 0.916170 -1.926982 -0.868759 0.461624 4.410231 -5.247500 3.693289 -3.927077 -2.124054 3.619402 4.675274 -0.100313 2.040626 -1.804366 -1.199081 2.048469 4.363619 3.551657 -2.150875 -5.833876 -12.312562 3.303536 -3.606143 -2.106676 -0.811650 -1.557606 -5.507631 0.493200 -1.859591 6.883040 1.727464 -4.519979 4.156961 -7.940797 -7.128347 -3.997397 2.099467 -0.325998 -2.164756 2.275818 -2.092939 1.800356 2.641166 1.043346 0.988941 -5.435917 -3.466290 -0.306482 5.070577 2.827697 -3.150604 6.752578 1.337727 -2.002740 -2.424209 0.494572 0.246699 -0.116276 -4.884007 -3.026117 -3.221171 2.634018 -2.529507 5.234719 1.144329 0.955485 3.859101 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 1.124762 -0.644425 0.196373 0.944146 0.444078 -1.191514 0.561887 0.916112 -0.144577 -1.744425 -0.886049 0.208710 -0.056973 -0.940396 0.415295 0.123252 -0.069537 0.234705 -2.177009 0.989127 0.500959 0.362749 -0.477084 -0.765610 0.147713 -0.625835 -0.498345 1.112678 -0.251515 1.068872 -0.609060 -0.224877 0.801864 0.181458 0.432428 1.275763 0.502979 0.016099 0.653286 0.699570 1.901106 0.876944 -0.482451 0.516705 1.145260 1.240841 -0.182022 1.713778 -0.538527 -0.441690 0.994355 -0.702913 -0.913133 -0.327578 -1.105737 0.583192 1.953881 0.801833 -0.814495 0.984835 -0.954184 -0.051105 0.467405 0.118915 1.492472 1.104275 0.611752 0.475055 2.271125 -0.613034 -0.410483 0.854196 1.345926 -0.103530 0.437747 -0.715394 -0.940976 -2.435811 0.151525 -1.715148 -0.469408 -0.200270 1.613270 -0.997515 0.191218 1.186819 0.436489 0.945930 -1.048019 -0.338079 -0.912420 0.331778 -0.338681 2.712115 -0.242402 0.612344 -0.126514 0.570162 0.752577 1.163602 -0.135930 -0.751897 -1.548351 -2.846442 -0.923312 -0.373365 -0.433827 -0.474937 -1.847812 -0.443078 1.346878 0.690597 -1.684079 -0.070012 1.055417 0.548569 0.842289 0.037750 -1.127540 0.121690 -0.090375 0.129166 0.402936 -0.613135 -0.334766 -1.115308 0.682683 0.319845 0.130785 -0.439741 -1.554821 -0.087358 0.146047 -0.231464 -0.039738 -0.159460 -0.201147 -1.320871 0.469805 -1.165622 1.044970 -2.019261 0.004861 -0.769197 -1.203401 0.095366 1.694186 0.726720 0.666913 0.188565 -0.745985 -0.489548 -1.328982 -2.561517 0.264001 -0.452202 0.814267 -0.612707 -0.066886 -0.401526 -0.186202 -0.547043 0.305416 -0.713891 0.119694 -0.613146 1.585081 -0.208415 -0.309497 -0.936719 -0.118775 1.257734 0.326328 0.333067 -0.582399 -1.526392 -1.192907 -1.207847 0.862787 -0.059047 -0.183086 -0.541028 -0.042712 -1.758060 0.844564 -0.621782 0.636166 -0.309044 -0.988468 -1.181665 0.017652 -0.243216 0.106108 -0.358546 -0.772168 -0.213912 0.133000 0.473438 0.346644 0.289238 0.080829 -1.707865 -1.784951 -0.286348 0.399821 1.662621 0.587213 0.496052 -0.283680 -0.073303 -1.507824 1.292753 -1.240813 -0.127982 0.070530 -0.879452 1.889793 -0.450443 -0.784239 -1.344284 0.586829 -0.024189 -0.476792 2.392740 1.256671 -1.111571 -0.863397 -0.763549 0.001887 1.077112 1.878321 -0.814147 -0.459400 0.529383 -0.050346 -0.362456 -0.356323 0.944510 -0.601267 1.295822 -1.177782 -0.918435 0.345276 1.515369 -0.270784 0.484480 -0.367947 0.231460 -0.398363 1.317236 0.246859 -0.211067 -0.920564 -2.300665 0.527206 -0.133616 -0.166682 0.168623 -0.976328 -1.164900 0.089092 0.611380 1.566999 1.473473 -0.134315 0.902976 -1.220970 -1.390499 -0.357794 0.326506 0.137484 -0.950181 0.576568 -0.629400 0.129677 0.260852 0.320142 0.393078 -0.907105 -1.251814 -0.359430 0.739945 0.440227 -0.992281 1.378269 0.086146 -0.459842 -0.306296 0.016394 0.468255 0.564284 -0.026849 -0.488907 -1.046561 0.392040 -0.346561 1.615882 0.133990 0.358924 0.838290 -PE-benchmarks/largest-independent-set-problem.cpp__main = 3.001208 -0.282551 -0.240667 1.735770 -0.120729 -3.976405 1.541781 3.227700 -0.926991 -3.628533 -2.373389 -0.305382 0.253416 -3.257376 1.183680 0.585146 -0.928760 1.072600 -6.739427 2.986461 1.908152 1.262763 -1.820816 -2.438418 0.266725 -1.104040 -3.651273 2.377931 -1.195381 2.730650 -1.299951 -0.506459 1.878411 0.241429 0.923627 3.142705 -0.267300 0.152367 3.685212 2.603432 3.937151 3.096581 -1.703124 0.280051 2.838059 2.881774 -1.385513 3.114129 -4.396943 -1.037270 2.139214 -1.659636 -2.494566 -0.140267 -1.734418 0.827150 5.588404 2.557618 -1.530379 2.952951 -3.357883 -0.112303 1.571614 0.249325 4.163913 3.384764 1.190153 1.182537 5.697385 -0.472381 0.099059 0.784865 2.565918 -2.248135 0.346733 -1.152457 -2.001206 -6.611710 0.674224 -6.458596 -1.006605 0.369607 4.794086 -2.736466 1.368901 2.867062 2.435671 2.618139 -3.344008 -1.311718 -1.474879 0.601401 -2.129781 7.564609 -0.999090 2.010980 -0.647866 2.017452 2.061108 1.897307 -1.515135 -1.514865 -4.454567 -7.114950 -2.021389 -0.458761 -2.001383 -1.066375 -4.914576 -1.588757 4.466311 1.618465 -4.889216 0.215710 2.460902 0.980603 0.950552 0.984113 -4.006923 0.885469 -1.656998 0.552832 0.956984 -1.420096 -0.831975 -3.192407 1.107426 1.273229 0.038453 -0.728628 -5.243912 0.598306 0.778089 -2.258050 -0.246431 0.704601 -0.563876 -2.675418 0.896988 -3.999622 2.598375 -5.590511 0.591962 -1.928766 -3.750448 0.636922 1.945007 3.073545 -0.432549 0.069256 -1.236951 -0.768219 -3.992621 -5.777332 0.799327 -1.362860 2.547547 -2.877031 -0.094823 -2.143640 -0.293064 -0.961270 0.742492 -1.859295 0.640186 -2.066403 7.558903 0.198534 -1.270912 -1.715706 -0.867443 3.244199 0.768191 0.292773 -1.526222 -1.684978 -3.550781 -2.426381 2.245793 0.420119 -0.735507 -2.018477 0.430665 -4.460903 2.333109 -1.225409 1.667127 -0.703390 -1.000811 -2.761095 -0.418375 -0.010331 -0.376119 -2.133945 -1.327618 -0.782677 1.858883 0.713829 0.542133 0.496723 0.803106 -3.165445 -4.020570 -0.211523 1.254960 3.484658 2.776354 1.515626 -0.810005 0.791615 -4.028605 3.568965 -1.660150 -0.277692 -0.387406 -2.206166 5.395664 -1.128378 -2.526482 -3.298162 1.166873 -1.107754 -1.118900 6.067249 2.747634 -2.715680 -1.530704 -2.500445 0.515202 2.792683 4.170058 -1.562654 -0.944357 1.018395 -0.970588 -0.975718 -0.726980 2.235886 -2.190889 3.555149 -2.128174 -1.069298 1.701920 3.440134 -0.681685 1.823992 -2.087701 0.052101 -0.432183 2.354559 0.429708 -1.560123 -2.154564 -4.850706 0.984486 -1.558360 -0.043989 -0.847701 -1.107423 -3.068815 -0.313529 1.980185 3.757174 4.722610 -1.434448 1.674973 -3.216433 -3.669861 -1.489013 2.453677 0.289287 -2.500283 0.625610 -1.048515 0.663380 1.667041 1.725953 2.387146 -3.614867 -4.532649 -0.981925 2.161548 0.779443 -4.126933 3.481928 -0.222240 -0.565568 -1.126052 -0.330649 1.290055 1.117901 0.990361 -1.322998 -2.856901 1.468187 -1.265762 4.925337 0.670428 1.180966 2.946150 -PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 2.258532 0.702086 -0.701089 3.465944 0.513278 -1.306261 -0.223195 1.889116 -1.063452 -6.011557 -5.249558 1.801052 0.294092 0.677703 2.292004 1.141227 0.104941 0.243843 -6.738463 1.921181 2.024475 0.913124 -0.068013 -0.670799 1.055893 -1.050692 -0.975483 0.609526 0.739243 2.876069 -2.347359 1.686757 2.604023 -0.171661 1.693601 1.538314 -1.088096 -0.121491 -0.145000 -0.751601 5.203586 1.826170 0.775599 2.451225 1.122478 3.246224 -1.640632 3.964702 -0.018758 -2.579919 2.875262 -1.676536 -2.137599 0.731824 -2.402013 2.805078 3.292461 1.191375 -1.847188 1.426661 -0.892567 0.024367 0.721641 -2.474933 4.205439 2.381824 2.717908 1.933710 3.687956 -1.472365 -0.683274 1.932468 1.933685 0.379643 0.396606 -3.230608 -1.277705 -2.581274 -0.025968 -5.798197 -0.973831 -1.090055 7.012764 -3.530311 0.346124 1.430747 -0.419640 3.094699 -1.823224 0.489740 -2.391991 0.079637 -1.511635 3.441320 -0.095138 -0.214749 0.167818 1.035372 1.256992 2.878383 -1.265409 -1.005555 -3.582013 -6.014972 -2.129304 0.299725 2.079884 1.183752 -4.297537 -0.553710 0.214777 2.956153 -4.409726 -0.848029 2.627625 2.018256 -0.039629 2.176445 -3.777408 -1.261909 0.578320 1.332043 2.157191 -1.290878 0.592464 -2.771338 -0.051169 -0.071062 2.079129 -0.210541 -3.239968 -2.703583 -1.136433 -0.724112 -0.296855 -0.203812 1.531140 -1.334909 2.937527 -0.854989 2.311532 -5.216258 -0.599181 -2.492851 -2.716974 -0.233303 4.515601 3.680311 2.661724 0.528802 -1.356348 -1.676042 -4.461266 -3.162456 0.660825 0.418120 2.488642 0.660275 -0.102628 1.575297 -0.781461 -0.388934 0.787756 -2.075975 -0.932265 -1.594584 3.917807 -0.608881 -0.905590 -3.999617 0.006853 0.735274 -2.679812 1.414232 -0.403919 -3.115582 -4.247660 -2.843762 2.579986 -0.779767 1.419467 -1.475862 1.016342 -2.719278 0.295992 -3.674443 0.066868 0.328937 -3.511153 -3.282486 -0.202168 -0.276474 -1.229855 -0.174099 -2.254582 -0.233775 3.850590 3.317311 1.293078 0.986583 0.143582 -4.239067 -3.786927 -0.923670 -1.852009 2.874227 2.907221 -0.575747 -3.167016 -1.065482 -3.447360 3.021767 -1.849935 0.026341 -1.708593 -0.549019 2.998421 -2.442176 -0.197604 -3.567368 0.501474 1.045385 -8.457043 3.270245 2.095690 -1.642381 -0.912498 -2.356941 1.043802 2.015809 3.921252 -1.210866 -0.750963 -0.027235 -0.931202 -0.297400 -1.967348 2.995569 -2.042963 0.425990 -2.460470 -1.832819 1.843429 2.004375 0.447056 1.814627 1.526575 1.732595 2.223741 2.828654 2.076041 -2.234501 -2.382586 -7.728673 1.885654 3.356013 -0.834875 0.251842 -1.892631 -3.046788 -0.251093 -0.354785 3.292679 1.804908 1.078910 2.641372 -2.693402 -2.982850 -1.146409 1.085349 -0.396686 -1.292760 -0.090748 -1.462787 0.615969 1.625247 -0.448362 0.656164 -2.539690 -4.169227 -0.813301 3.318193 1.240892 1.187007 3.462021 1.720812 -2.183587 -0.249774 0.337985 0.501313 -0.489453 -2.693485 -1.848532 -1.305808 -0.514427 -1.340740 1.125819 -0.050438 -0.326391 1.219029 -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.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 2.205492 -0.273791 0.599519 2.122490 0.997485 -1.685023 -0.366416 2.353494 -0.911267 -3.237237 -3.130500 0.689913 -0.491111 0.607588 2.597453 -0.166800 -0.130947 -0.290085 -5.095208 1.881841 0.245679 0.508762 -0.383421 -1.426924 1.116324 0.730782 -0.603516 1.248258 0.504335 1.240502 -2.522056 0.203045 0.906536 0.543920 1.722739 -0.317409 0.698320 -0.492936 -0.761565 -1.204096 4.120292 1.043791 0.290617 2.511324 1.453647 1.432847 -1.052677 3.301161 0.712215 -1.226239 2.245496 -3.502578 -1.278540 0.869139 -2.096251 2.579525 2.765979 0.912774 -1.596485 1.156990 0.054556 0.213133 0.496105 -2.548984 3.117394 1.459030 1.974736 0.665652 2.790945 -1.151729 -0.673495 1.377969 3.007397 0.635611 -1.194201 -2.918430 0.389745 -5.013622 1.102596 -3.849504 -0.519367 -1.439366 2.903207 -2.007349 1.239305 2.031367 -1.206501 1.599034 -2.276482 1.005331 -1.412696 -0.004379 -0.387080 2.427620 -0.743263 -0.505894 1.455056 0.637170 1.331820 3.006407 -0.675034 0.425592 -2.066088 -4.504465 -1.588695 2.483298 0.538563 -0.558862 -1.919032 -0.105614 1.152232 0.961722 -1.502077 -1.914062 1.545830 1.149053 -1.504254 1.194124 -1.727488 -1.483627 0.023097 1.358000 1.384707 -1.513559 1.045017 -2.304580 -0.206857 0.698572 2.566309 0.091670 -0.751989 -1.897098 -0.652360 0.100214 -1.072581 -1.574144 -0.146342 -0.950183 2.102574 -0.234302 1.308375 -2.880316 -0.471516 -1.672796 -0.657382 0.760928 4.239737 0.906025 1.344306 2.350938 -1.289207 -0.966893 -1.720113 -2.599497 1.316042 1.310816 1.708816 0.140125 0.185789 0.906900 0.155197 -2.310752 0.604899 -2.099879 -1.695139 -2.191441 0.902211 -0.668056 -0.434375 -3.206788 2.057747 2.371182 -2.551291 0.113282 -0.100367 -1.854160 -1.163201 -2.028770 1.431546 0.222959 0.620343 0.209480 1.469160 -2.454941 0.772229 -2.580900 0.780633 0.264643 -3.483220 -1.743454 -0.556075 -0.104920 0.372033 -0.239217 -1.377086 0.313952 0.733570 3.472809 -0.079815 1.376395 1.151694 -3.665524 -4.381620 -1.984337 0.312111 2.101926 0.207264 0.156151 -1.542305 -0.770316 -1.169848 2.595295 -2.545281 -0.351043 -1.411961 -0.463503 2.022951 -1.272492 -1.376409 -2.318481 0.546926 1.358206 -3.545929 2.517155 1.009440 -1.525592 -1.543300 -3.186750 0.926579 1.691546 4.784672 -0.953048 0.069493 0.215153 0.808051 -0.691463 -2.215650 2.620167 -0.383720 0.004468 -1.713323 -2.503888 0.117388 1.645094 0.924257 1.717378 1.297246 2.494544 -0.131032 3.214186 0.428118 -1.546853 -1.101135 -4.670981 1.103814 5.075341 -0.123132 0.608476 -2.992574 -2.746718 -0.883486 0.938260 1.949900 2.953435 2.424089 1.470606 -1.142796 -1.560181 -0.273423 1.579112 -0.891259 -1.485504 0.061550 -1.362207 0.095015 1.064126 -0.501560 0.173219 -0.191390 -4.872703 -2.245229 0.774380 0.557461 0.693948 2.441128 1.849608 -2.029539 0.234591 -0.150459 0.725674 0.098174 -0.397331 -1.395474 -1.581535 -1.017985 -0.841025 0.950635 0.835555 -0.414568 0.370783 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/permutations-of-a-given-string.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -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) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/permutations-of-a-given-string.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/permutations-of-a-given-string.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/permutations-of-a-given-string.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/permutations-of-a-given-string.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = 1.039347 -0.058716 -0.180468 1.410626 0.205821 -0.563626 0.122872 0.721748 -0.195333 -2.702510 -1.862009 1.039719 0.053226 0.000438 0.626946 0.532452 0.236503 0.328232 -2.889440 0.850143 0.949024 0.460853 0.064897 -0.299172 0.430279 -0.712881 0.043128 0.268220 0.347760 1.509749 -1.020782 0.597035 1.257711 -0.004673 0.798834 1.168513 -0.286338 -0.078565 -0.000853 -0.207976 2.265162 0.959137 0.115474 0.985738 0.590471 1.549707 -0.175993 1.500060 0.441642 -1.078186 0.809061 -0.476344 -1.017587 0.134219 -1.177741 0.906176 1.220390 0.655260 -0.877641 0.664932 -0.415252 0.056804 0.356390 -0.657102 1.670621 0.760380 0.968786 0.893543 1.806588 -0.798975 -0.166312 0.814025 0.939827 0.277673 0.777917 -1.054173 -0.963834 -1.188585 -0.233709 -2.325159 -0.509831 -0.294533 2.687063 -1.542589 0.270013 0.637815 -0.118974 1.407166 -0.650052 -0.073681 -1.251611 0.154843 -0.398419 1.652582 0.062305 0.139632 -0.119918 0.536131 0.442191 1.067950 -0.145379 -0.986202 -1.241277 -2.730979 -0.668658 -0.526451 0.606453 0.478521 -1.967506 -0.130456 0.128966 1.803845 -2.182407 -0.095552 1.025244 0.699078 0.306420 0.213063 -1.149199 -0.231728 0.130780 0.495797 0.777187 -0.830369 -0.036831 -0.876448 0.180610 0.072735 0.722309 -0.112026 -1.263883 -1.043633 -0.142134 -0.009297 -0.174647 0.233419 0.704052 -0.839017 1.072074 -0.715934 1.114096 -1.959006 -0.200223 -0.885140 -1.120877 -0.359573 2.137367 1.360376 1.160744 -0.061120 -0.553536 -0.655289 -1.841266 -1.818660 0.447731 -0.187834 0.861930 0.415605 -0.043601 0.535128 -0.594770 -0.104213 0.177289 -0.815431 -0.166800 -0.462421 1.113243 -0.291959 -0.310139 -1.426700 -0.247671 0.475365 -0.487781 0.723163 -0.462251 -1.781524 -1.973339 -1.299010 1.268866 -0.529370 0.429691 -0.706510 0.193052 -1.007197 0.243045 -1.356008 0.099252 -0.098802 -1.262185 -1.574936 -0.049083 -0.327730 -0.320833 0.014354 -1.024701 -0.117199 1.213829 0.973134 0.542778 0.325192 0.002730 -1.798280 -1.449146 -0.102748 -0.724809 1.422035 0.930735 -0.259222 -1.476564 -0.531288 -1.486677 1.359512 -1.105977 0.218265 -0.498058 -0.469776 1.520316 -0.823018 -0.048521 -1.402610 0.496262 0.451634 -3.145557 1.653911 1.217185 -0.871430 -0.305063 -0.649065 0.439261 0.985141 1.531403 -0.733741 -0.571431 0.207997 -0.569400 -0.038132 -0.698621 1.175190 -0.913476 0.553772 -1.179530 -0.736705 0.881247 0.913846 0.031180 0.538235 0.587794 0.416902 0.734342 1.347979 0.900954 -0.361714 -1.392339 -3.236339 0.824301 1.136342 -0.072026 0.310625 -0.833057 -1.138357 0.137188 -0.334986 1.549422 0.686329 0.099687 1.244670 -1.461873 -1.483474 -0.526168 0.056963 0.058758 -0.470433 0.372260 -0.659343 0.261672 0.404642 0.118850 0.157216 -0.955423 -1.005282 0.037175 1.387018 0.763089 0.217178 1.525142 0.545030 -0.971121 -0.080848 0.146429 0.132841 -0.225248 -1.188839 -0.715261 -0.466481 0.172879 -0.717021 0.846375 -0.194146 0.163267 0.341931 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 2.745557 0.107498 -1.327408 4.921235 0.271840 -0.915227 0.108755 1.571489 -0.681598 -8.543119 -5.502291 3.504811 0.660129 0.800998 1.831845 1.768542 0.227751 0.566693 -8.253736 1.966192 3.172722 1.199699 0.438394 -0.503311 1.179520 -2.176920 1.066625 0.574016 1.376912 4.817816 -2.708566 2.526440 4.137987 -0.288097 1.982448 3.203509 -1.111862 0.211607 -1.081706 -1.026108 6.449850 2.728724 0.225639 2.739883 0.800517 4.755584 -0.508663 4.535700 0.631377 -3.672108 2.534507 -0.213344 -2.569200 0.087774 -3.039912 2.692058 3.564395 2.036560 -2.450799 1.479592 -1.283263 0.169435 1.067873 -1.147397 4.826095 2.474534 3.520103 3.133594 4.787853 -2.873678 -0.396402 2.371552 1.392083 0.381775 2.972684 -2.974057 -3.393839 -1.718513 -0.638593 -6.325747 -2.411592 -0.577427 7.900640 -4.786281 0.221732 1.311831 0.186126 4.638790 -1.935305 0.593163 -3.747456 -0.003228 -1.310074 5.288879 0.447627 0.196936 -0.523663 1.609860 1.231493 3.003806 0.084284 -3.077085 -3.109239 -6.695130 -2.185411 -1.902656 2.706174 2.609025 -6.044279 -0.430485 -0.212609 4.914906 -6.748102 -0.078570 3.085611 2.830409 2.852160 1.189510 -3.459615 -0.225556 0.889864 0.837574 2.750475 -2.158611 0.454197 -1.971938 0.553163 0.154680 1.717090 0.073425 -4.818861 -3.272106 -0.326019 -0.584956 -0.127020 1.170891 2.962705 -2.325738 3.359297 -1.898200 3.455157 -6.049267 -0.837076 -2.190025 -3.730518 -1.476322 5.326732 4.239967 3.576239 -0.915541 -2.188146 -1.816623 -5.787671 -5.378747 0.580484 0.326051 2.016897 1.863114 -0.386826 2.595513 -2.371146 0.839516 1.150909 -2.071537 -0.886451 -0.698181 3.622232 -0.743761 -0.872095 -3.556232 -1.124382 -0.406930 -1.470350 3.661963 -0.785208 -5.509400 -7.071504 -3.480770 4.048420 -1.893060 1.059224 -2.524867 0.089008 -3.328792 0.138755 -4.353066 0.366996 0.077816 -3.672144 -4.936723 0.496941 -0.817467 -1.345977 0.544782 -3.439249 -0.595198 3.943829 2.206873 1.938256 0.750486 -0.043144 -5.095041 -3.830292 0.387065 -3.134290 4.066192 2.774861 -1.260241 -3.851646 -2.004878 -4.505143 3.583980 -2.743265 1.071896 -1.689106 -0.891969 3.995028 -2.961188 -0.295018 -4.251346 1.093166 1.658584 -8.207454 4.871766 3.156653 -1.904753 -0.258536 -0.800599 1.261619 2.660472 3.571422 -2.540096 -2.489575 0.110844 -1.553466 0.141431 -1.367022 3.143977 -3.302837 0.786027 -3.168734 -1.891551 2.685551 2.480794 0.183160 1.685776 2.272276 0.157088 2.527095 3.630917 3.331425 -1.264474 -3.797732 -9.186132 2.772467 1.232224 -0.927985 -0.222721 -2.301037 -3.107236 0.739214 -0.802687 4.315847 1.280463 -0.328944 3.896637 -5.135672 -4.428499 -2.177432 -0.094298 -0.035712 -0.747509 0.257912 -1.505689 1.408852 1.633265 -0.316351 0.041440 -3.235842 -1.799583 0.280734 4.540021 1.326322 1.202941 4.651014 2.070450 -2.781432 -0.335354 0.601659 -0.373823 -1.065311 -4.421271 -1.950039 -0.477306 0.609420 -2.263473 1.332598 -0.736004 -0.409745 0.786491 -PE-benchmarks/reservoir-sampling.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = 1.717932 0.292871 -0.111225 1.137908 0.618689 -1.350221 0.295588 1.160226 -0.524505 -2.610391 -1.921756 1.788453 -0.090319 -0.965282 0.494510 0.534749 0.320644 0.460826 -2.947622 1.381189 0.684910 0.414821 -0.736976 -0.765787 0.379320 -0.727568 -0.550579 0.678509 -0.018175 1.387893 -1.170193 0.218286 1.070197 0.219172 1.035175 1.382993 -0.342172 -0.420424 0.849095 -0.183084 2.736696 1.046918 0.309437 1.309391 1.523147 1.557997 -0.846780 2.143160 0.181723 -0.712044 1.023924 -0.099232 -1.340756 0.385764 -1.593403 1.080399 1.393169 0.156158 -1.108394 0.935692 -0.624394 0.047921 0.477134 -0.676341 2.023472 1.355371 0.660071 0.786546 2.712421 -0.515011 -0.347074 1.100999 1.817253 0.364583 0.635108 -0.787666 -0.834151 -1.255914 -0.099398 -2.768280 -0.102954 -0.618119 3.795836 -1.468955 0.312772 0.945697 0.582388 1.465738 -0.984351 -0.425148 -1.272242 0.506234 -0.896025 2.394645 -0.241763 0.814061 -0.480564 0.421369 0.426232 1.383231 -0.847548 -0.966546 -1.739478 -3.500772 -1.042443 -0.423627 -0.158959 -0.389741 -2.456997 -0.125099 0.940835 2.387271 -2.287189 -0.420076 1.107518 0.193829 0.052398 1.204355 -1.912770 -0.457498 -0.195117 0.560222 0.128395 -0.324234 -0.508147 -1.325195 0.081203 0.000762 0.798899 -0.352660 -2.239393 -0.636708 -0.014978 -0.390618 -0.296603 -0.102161 0.223414 -1.328902 0.865895 -0.786386 0.980141 -2.385186 -0.420572 -1.407197 -1.537655 -0.049367 1.922426 1.778438 1.420428 0.406691 0.029830 -1.031961 -2.127957 -2.061778 0.560075 -1.108945 1.017576 -0.376014 0.153984 -0.207912 -0.383961 -0.788975 0.370991 -1.210907 -0.017035 -1.232731 2.816224 -0.568766 -0.298210 -1.642159 -0.412440 1.130687 -0.266725 0.076962 -0.725566 -2.092100 -1.885888 -1.582234 1.147727 -0.323120 0.370707 -0.732021 0.402424 -0.899034 0.354651 -1.049560 0.265671 -0.483976 -1.148258 -1.510274 -0.189976 -0.267761 -0.784132 -0.664896 -1.044828 0.100012 1.499231 0.920418 0.395331 0.421337 -0.309154 -2.108259 -1.969693 -0.246684 0.174056 1.439524 1.886569 0.234559 -1.670169 -0.395351 -2.108407 1.571647 -1.993081 0.021754 0.004884 -0.899709 2.119259 -0.961575 -0.430356 -1.468365 0.681487 -0.123474 -3.649050 2.277728 1.329625 -1.521489 -0.826509 -1.479063 0.502134 1.250019 2.332907 -0.772370 -0.150621 0.499661 -0.450164 -0.372798 -0.534702 1.513583 -0.812726 1.590403 -1.596817 -1.117843 1.001993 1.529354 -0.209085 0.467803 -0.226209 0.577797 0.946007 1.671254 0.752745 -0.365063 -1.538142 -3.794634 0.475443 0.556370 -0.085149 0.621558 -0.745487 -1.707648 -0.219863 -0.542871 2.050625 -0.191897 0.200072 1.121498 -1.496656 -1.765114 -0.186972 0.456246 0.121054 -0.933864 0.958716 -0.904878 -0.225525 0.255620 0.602901 0.341016 -1.204208 -1.754495 -0.182121 1.325173 1.225942 -0.587601 1.633549 0.561394 -0.878227 -0.083821 -0.079132 0.883119 -0.012721 -1.352050 -0.801225 -1.204359 0.105613 -0.654991 1.942773 0.333569 0.783236 0.649966 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = 2.987666 -0.925010 -0.483982 2.515565 1.046573 -2.807757 0.717249 1.672733 -0.235720 -4.071241 -2.161044 3.103178 0.027984 -2.032745 0.431544 0.876433 0.001523 0.449674 -4.789796 2.715821 0.779619 0.596418 -1.637339 -1.685446 0.422150 -1.407787 0.501621 1.864115 -0.387608 2.272464 -1.673118 0.088184 1.785269 0.245146 1.677034 2.616263 0.197344 -0.358311 0.738723 0.548551 4.442422 2.266611 -0.280641 1.825646 2.548910 2.735113 -0.152606 3.975125 0.388538 -0.990880 1.590000 0.753752 -2.272645 -0.378788 -2.880550 1.606282 2.792965 0.305373 -1.918989 1.629848 -1.403315 -0.186986 1.123250 0.449692 3.760410 1.944727 1.654531 1.412911 5.126266 -1.072222 -0.727113 2.098805 3.610853 0.440209 2.467537 -1.480329 -3.016736 -2.371663 -0.011110 -3.684537 -0.629677 -0.727921 4.631787 -2.472948 0.245507 1.502599 1.378709 2.636753 -2.208467 -0.719522 -2.172433 0.788256 -1.265439 5.708726 -0.412748 1.757929 -0.763750 1.100667 0.999712 2.470186 -0.535955 -2.239921 -1.934731 -5.946769 -1.714218 -1.167643 -0.854426 -0.870938 -4.363318 -0.413749 1.226804 3.475862 -3.936222 -0.430215 2.105708 0.237481 2.622117 0.271082 -2.054152 0.108354 -0.012181 0.584702 0.432208 -0.940581 -0.984197 -1.584987 1.331768 0.474851 0.766181 -0.567640 -3.899749 -0.442611 0.374434 -0.032578 -0.118887 -0.160521 0.119592 -3.285257 1.124296 -1.863917 2.004202 -4.163312 -0.692293 -2.113561 -2.492937 -0.010740 3.160771 1.970966 2.650969 0.037359 -0.524758 -1.340724 -3.679684 -5.360159 0.821262 -1.708874 0.801852 -0.834906 0.149745 -0.586078 -0.661808 -1.146641 1.327771 -2.018989 -0.074048 -1.597828 3.536262 -0.560517 -0.403772 -1.940274 -0.968744 1.773778 1.242645 1.002727 -1.080253 -5.479004 -3.312118 -2.594554 1.938569 -0.375627 -0.037608 -1.442509 -0.253044 -2.570329 1.028029 -1.629210 1.191675 -0.926470 -1.704817 -2.572514 -0.341744 -0.503177 -0.141606 -1.321496 -1.977312 -0.036507 1.136137 0.918930 0.570685 0.781667 -0.258579 -3.866870 -3.437107 0.169982 0.720971 3.641792 1.826262 0.817007 -1.676496 -0.468175 -3.760064 2.480774 -3.936323 0.046066 0.520690 -1.971401 4.052364 -1.492864 -1.318500 -2.495208 1.419947 -0.385753 -2.965888 5.034026 2.975855 -2.605051 -1.436934 -1.277190 0.486569 2.291885 4.090679 -1.994931 -0.985526 1.002183 -0.130075 -0.818267 -0.432957 2.295057 -1.586565 2.855597 -2.671049 -2.046683 1.069276 2.949394 -0.465547 0.252416 -1.169815 -0.193727 -0.047422 2.892501 1.153585 0.242839 -2.908344 -6.113563 0.859679 -0.934963 -0.568441 0.897713 -1.732197 -2.685418 0.100386 -0.345171 3.691832 0.407835 -0.449895 1.910209 -3.453222 -3.270582 -0.808771 0.248357 0.063461 -1.358615 1.994611 -1.720892 -0.152448 0.121864 0.950470 -0.255409 -1.688311 -1.418718 -0.145825 1.633079 1.622567 -1.754040 2.912034 0.792299 -1.065107 -0.674846 -0.013816 0.685251 0.401015 -1.906850 -1.208941 -2.169617 0.765770 -0.901239 3.474375 0.394919 1.499854 1.068556 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 3.382730 -0.583020 -0.708526 2.961683 0.938598 -2.982341 0.635628 2.025443 -0.594221 -5.021839 -3.289071 3.949587 0.031548 -1.957329 0.742996 1.010781 0.066067 0.274625 -6.510335 3.071128 1.175799 0.487267 -1.751795 -1.567712 0.575234 -1.767640 0.466998 2.091886 -0.390153 2.748468 -2.003628 0.544516 2.170386 0.370656 2.232284 2.947532 -0.729064 -0.559988 0.886392 0.287679 5.173881 2.855913 -0.261300 2.095731 2.785241 3.273150 -0.421269 4.134069 0.697032 -1.393914 1.759683 1.065972 -2.789166 -0.109671 -3.230816 1.669313 2.869193 0.050382 -2.131900 1.774717 -1.758565 -0.286688 1.170219 0.047438 4.621754 1.956902 2.269121 1.626494 5.432620 -1.231062 -0.732182 2.414211 3.848416 0.536475 2.257209 -1.513792 -3.409480 -2.334125 0.056247 -5.147792 -1.112236 -0.828202 5.758956 -2.843248 0.132149 1.226807 1.271878 3.219157 -2.552893 -0.700157 -2.581105 0.725280 -1.550171 5.921771 -0.288099 1.785340 -0.582696 1.262438 1.166933 2.924700 -1.084465 -2.583052 -2.290104 -7.013308 -1.605828 -1.228649 -0.446757 -0.613431 -4.951835 -0.342113 1.092615 4.625832 -4.471600 -0.628905 2.455088 0.243672 2.121577 0.673609 -2.712803 -0.133243 0.063781 0.987405 1.094839 -0.975067 -0.851306 -1.799594 1.463675 0.399836 1.177778 -0.341937 -4.510932 -0.971720 0.637185 -0.225329 -0.237835 -0.026461 0.468288 -2.992148 1.542045 -1.931105 2.434512 -4.844342 -0.455090 -2.636630 -2.626842 -0.052957 3.288163 3.422454 2.837724 0.079009 -0.142024 -1.285112 -4.474320 -5.799105 1.002672 -1.705166 1.114359 -1.030117 0.168754 -0.178134 -0.866242 -1.011375 1.375323 -2.324399 -0.153740 -1.925956 4.230489 -0.299970 -0.537575 -2.172661 -1.171671 1.477210 0.736769 1.294936 -1.173673 -6.335125 -4.106292 -3.026978 2.359566 -0.539116 -0.032040 -1.766391 -0.087162 -2.566381 0.947655 -2.064046 0.958850 -0.961090 -2.066449 -2.996669 -0.619991 -0.491955 -0.516782 -1.558666 -2.264295 -0.236386 2.383867 1.299341 0.922590 0.992178 -0.344658 -3.915696 -3.582825 0.325820 0.326894 3.996734 2.658459 0.439576 -2.642306 -0.591370 -4.394242 3.091440 -4.017529 0.204087 0.085409 -2.387245 4.562658 -1.776531 -1.346484 -2.472440 1.554279 -0.258457 -5.048662 5.351298 3.515087 -2.826685 -1.504074 -1.569015 0.645650 2.680951 4.508121 -2.166726 -0.978730 0.763805 -0.385488 -0.767254 -0.328213 2.826726 -1.911347 2.782684 -2.995682 -2.290989 1.667577 2.972209 -0.219497 0.512589 -1.166388 0.195733 0.878545 3.174334 1.428546 -0.149523 -3.394825 -7.616655 1.160269 -0.279671 -0.793766 1.080642 -1.741498 -3.398634 -0.217480 -1.161890 4.197860 0.021487 -0.848772 2.250968 -3.646809 -3.711448 -1.443838 0.371559 -0.197146 -1.304368 2.259633 -1.804742 -0.028697 0.373029 0.931005 -0.101757 -2.129885 -1.999222 -0.113699 1.981404 2.119651 -1.550811 3.326303 1.051749 -1.473141 -1.008306 0.030146 0.513857 0.278437 -2.796016 -1.678680 -2.414997 0.823636 -1.062061 3.392257 0.676154 1.816151 1.155072 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = 0.852826 0.044202 -0.078483 0.804857 0.207559 -0.857794 0.189846 0.657722 -0.363934 -1.575748 -1.144239 0.840016 -0.038169 -0.532969 0.369553 0.257431 0.032340 0.190326 -2.168389 0.877715 0.533379 0.215083 -0.334655 -0.447465 0.218584 -0.526837 -0.228540 0.597947 -0.094446 0.892511 -0.683093 0.215243 0.684265 0.203260 0.688240 0.874201 -0.319681 -0.199735 0.451597 0.131284 1.566114 0.800221 -0.085380 0.512055 0.829230 1.009317 -0.226985 0.838336 0.030228 -0.486871 0.439515 0.038432 -0.796234 0.088060 -0.888381 0.462950 0.854748 0.225830 -0.623538 0.577868 -0.615255 -0.060135 0.312499 -0.275693 1.400404 0.540315 0.610449 0.459675 1.524443 -0.340870 -0.161981 0.593324 0.999022 0.005231 0.334571 -0.300356 -0.746473 -1.191544 -0.026211 -1.928431 -0.363984 -0.120031 1.782529 -0.860684 0.155443 0.489282 0.259515 0.962018 -0.734287 -0.256218 -0.801241 0.193893 -0.451892 1.519953 -0.013189 0.360171 -0.102170 0.420242 0.422554 0.852702 -0.451173 -0.672521 -0.923210 -2.256175 -0.469945 -0.273874 -0.052347 -0.162258 -1.461982 -0.132893 0.647145 1.503218 -1.387842 -0.170921 0.742558 0.172186 -0.046646 0.080311 -0.975752 -0.077126 -0.114419 0.384628 0.446773 -0.341818 -0.197077 -0.648913 0.313197 0.078942 0.455572 -0.113987 -1.162318 -0.427666 0.179958 -0.212951 -0.156653 0.026550 0.151321 -0.616382 0.524298 -0.648031 0.789198 -1.401879 0.125901 -0.787591 -0.747365 -0.001319 0.970558 1.246210 0.512395 0.096529 -0.072343 -0.310447 -1.303852 -1.569142 0.386752 -0.419226 0.560277 -0.335314 0.017352 -0.028821 -0.229533 -0.290886 0.298921 -0.704381 -0.021890 -0.603892 1.324457 -0.046985 -0.240186 -0.781543 -0.268800 0.591326 -0.072791 0.239533 -0.435279 -1.298174 -1.202785 -0.962199 0.744692 -0.170036 0.022962 -0.545772 0.134048 -0.736091 0.407331 -0.661196 0.189594 -0.251177 -0.645863 -0.928980 -0.249165 -0.158599 -0.319824 -0.442758 -0.616989 -0.098515 0.855416 0.337170 0.312092 0.232590 -0.031363 -0.998455 -1.043585 -0.010084 0.020080 0.938459 0.927280 0.102010 -1.058763 -0.161310 -1.215983 1.072105 -0.873132 0.056396 -0.141934 -0.747696 1.375107 -0.491453 -0.374810 -0.636285 0.436875 -0.021974 -1.856826 1.457184 1.019146 -0.834142 -0.449950 -0.658807 0.235369 0.832365 1.355839 -0.555492 -0.144414 0.165294 -0.238644 -0.185633 -0.186243 0.895596 -0.585446 0.779703 -0.877959 -0.647926 0.591787 0.851665 -0.009471 0.352057 -0.226815 0.312648 0.406156 0.910486 0.394336 -0.208277 -0.925416 -2.123544 0.390721 0.279459 -0.063585 0.318104 -0.415327 -1.035893 -0.170954 -0.320573 1.241105 0.259085 -0.304471 0.695718 -0.898114 -1.082648 -0.454150 0.247152 -0.067971 -0.497589 0.626800 -0.475631 0.011278 0.227568 0.293080 0.218259 -0.701111 -0.953689 -0.094339 0.659068 0.727900 -0.440248 1.015854 0.269693 -0.559000 -0.274309 -0.000121 0.232445 0.074262 -0.697875 -0.591974 -0.715590 0.223182 -0.355596 0.984610 0.147359 0.472504 0.426991 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 1.241190 -0.602238 -0.015318 0.989100 0.531218 -1.101115 0.451052 0.771620 -0.012596 -1.786016 -0.947651 0.610244 -0.022711 -0.909470 0.379419 0.283203 0.094671 0.302101 -1.708044 0.984951 0.349976 0.297359 -0.659418 -0.622710 0.136759 -0.591619 -0.406308 0.832750 -0.152634 1.035553 -0.652925 -0.094949 0.803742 0.056232 0.443318 1.192805 0.494878 -0.045145 0.563842 0.471567 1.973014 0.705230 -0.143094 0.771246 1.117806 1.199308 -0.385944 2.214945 -0.179960 -0.421369 1.197406 -0.633079 -0.851764 -0.129870 -1.247648 0.763599 1.712658 0.461777 -0.864094 0.880835 -0.720577 0.059425 0.458340 0.020086 1.472106 1.243168 0.536254 0.576372 2.287201 -0.539478 -0.364324 0.889944 1.449772 0.134073 0.681712 -0.787988 -0.835875 -1.701955 0.034448 -1.274689 -0.149260 -0.431279 2.031919 -1.088705 0.105870 1.093504 0.489356 1.002715 -0.913245 -0.247784 -0.940461 0.396986 -0.362708 2.431971 -0.255348 0.718457 -0.406276 0.410830 0.461248 1.054343 -0.197231 -0.792789 -1.513121 -2.715569 -1.128635 -0.408800 -0.420119 -0.469939 -1.982969 -0.306394 0.996489 0.837143 -1.725090 -0.114776 0.922192 0.392159 1.050925 0.578689 -1.206477 -0.070430 0.025033 0.204711 0.115145 -0.416950 -0.369659 -1.307150 0.512054 0.248258 0.214343 -0.469465 -1.558223 -0.079610 0.000887 -0.072575 -0.053576 -0.141180 -0.061220 -1.470979 0.515981 -0.885571 0.855928 -2.019665 -0.443128 -0.898981 -1.340232 0.022571 2.024222 0.663559 1.234591 0.252817 -0.684496 -0.738793 -1.486272 -2.379873 0.198849 -0.751221 0.716898 -0.384836 0.016371 -0.382679 -0.215568 -0.574834 0.357432 -0.809832 0.050485 -0.681531 1.596084 -0.425043 -0.261555 -1.137032 -0.223336 1.172865 0.257867 0.291402 -0.505224 -1.760378 -1.233040 -1.144181 0.838516 -0.139159 0.112764 -0.483813 0.009642 -1.576854 0.556505 -0.653816 0.474800 -0.343522 -0.989946 -1.189137 0.045748 -0.225908 -0.015298 -0.363142 -0.858506 -0.005252 0.295616 0.674816 0.317251 0.383856 -0.125747 -1.884953 -1.835133 -0.306031 0.312297 1.662970 0.802026 0.448904 -0.310276 -0.203192 -1.627752 1.155866 -1.750554 -0.095190 0.288477 -0.728151 1.716861 -0.626686 -0.733034 -1.446284 0.573302 -0.107471 -1.052792 2.172019 1.124296 -1.197530 -0.768888 -0.894930 0.189595 0.963142 1.902430 -0.734230 -0.328115 0.572907 -0.003660 -0.363330 -0.464543 0.966764 -0.584785 1.308290 -1.222963 -0.892343 0.432861 1.490989 -0.325431 0.249374 -0.306666 0.203373 -0.146043 1.332704 0.371266 -0.166651 -0.995225 -2.587090 0.407850 -0.056200 -0.236690 0.371004 -1.061267 -1.034966 0.102939 0.270876 1.568073 0.812271 0.266222 0.915441 -1.309496 -1.394942 -0.136290 0.250796 0.173767 -0.890424 0.691882 -0.715788 -0.017768 0.150721 0.430191 0.190212 -0.897248 -1.159165 -0.238266 0.838665 0.439094 -0.774240 1.325055 0.217812 -0.458879 -0.166808 -0.022518 0.548350 0.400096 -0.433750 -0.444528 -0.969994 0.264270 -0.448412 1.667995 0.059588 0.436862 0.696305 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.958374 -0.112231 1.310594 0.068117 0.876917 -0.216821 0.532641 1.199583 -0.360842 -1.686964 -1.628164 -1.041738 -0.454559 -0.431639 0.910197 -0.288215 0.723957 0.115059 -2.312977 0.189041 0.652543 0.340336 0.354612 -0.241166 0.365677 -0.553355 -1.749242 0.852304 -0.027943 0.814737 -0.662817 -0.268870 0.592881 0.532735 0.389799 0.923786 0.140495 -0.384150 1.222952 0.051393 1.961287 0.171119 -0.049644 0.758439 1.208889 0.956815 -1.166863 1.490481 -0.279026 -0.350737 1.418438 -2.664829 -0.747641 0.412339 -1.009424 0.597539 2.015145 0.877173 -0.735548 0.924120 -0.511320 0.265029 -0.012883 -1.307507 0.780547 1.234184 0.115306 0.004261 1.464104 -0.627731 -0.524387 0.731116 0.821166 0.394435 -1.570530 -1.017252 1.008448 -3.164402 0.330580 -1.962338 -0.019661 -0.843593 1.824409 -0.386531 0.332413 1.492909 -0.555873 0.318266 -0.312898 -0.296081 -0.861065 0.520616 0.092132 0.858807 -0.556254 0.081258 0.385306 0.062201 0.527168 1.164119 -0.432476 0.045085 -2.582663 -2.673275 -0.849900 0.163260 0.278437 -0.602240 -1.053386 -0.032021 1.609391 -0.215703 -0.834531 -0.450682 0.643591 0.911134 -1.759986 1.244763 -1.692030 -1.143264 -0.177043 0.535828 0.138475 -0.432615 -0.030908 -2.163415 -0.171948 0.131657 0.565330 -0.721311 -0.465571 -0.518164 -0.237425 -0.435784 -0.402536 -0.464119 -0.289556 -0.184108 0.608003 -0.653740 0.725645 -1.568670 0.114292 -0.986542 -0.702730 0.097769 2.144742 0.941606 0.112258 1.392564 -0.453504 -0.584266 -0.457018 -0.719795 0.042174 -0.317011 1.827491 -0.495566 -0.060630 -0.147815 -0.051218 -0.952388 -0.884069 -0.440069 0.163272 -1.056730 1.393054 -0.565020 -0.349407 -1.344039 0.769562 1.916495 -1.578981 -0.524470 -0.651071 0.733890 -0.321928 -1.314309 0.595481 -0.196403 0.250568 -0.018041 0.944788 -1.135047 0.740974 -0.470931 -0.040820 -0.172809 -1.631964 -0.916383 0.220973 -0.359162 -0.115525 0.326853 -0.429759 -0.059068 0.617186 1.635431 0.472962 0.347514 -0.218748 -1.468755 -1.831068 -1.353768 0.324390 0.826315 0.834938 -0.004329 -0.489040 -0.319934 -0.694779 1.383736 -0.243596 -0.303872 -0.359680 -0.537206 0.953083 -0.142099 -0.159134 -1.377744 0.240036 0.342741 -2.036704 1.178991 0.343113 -1.080129 -1.299010 -2.219904 0.106993 0.571619 1.719541 0.057573 0.291552 0.423341 -0.245508 -0.221906 -1.048188 0.955664 0.206312 0.940585 -1.366615 -1.146359 0.610081 1.190900 -0.285020 1.090470 0.726057 1.838396 0.556549 1.447284 -0.118675 -0.894831 -0.252981 -2.193332 0.339646 2.637762 0.344883 0.295440 -0.975665 -1.338344 -0.415613 0.906179 1.152943 2.177611 1.149520 0.863701 0.405182 -0.735318 0.158227 0.592848 0.293956 -1.249613 -0.198343 -0.430533 -0.111319 0.298758 0.185427 1.342463 -1.006911 -2.890874 -0.721700 0.995398 0.552048 -0.203418 0.984646 0.176513 -0.685773 0.193452 0.067542 1.185947 0.823816 0.552144 -0.492851 -0.925438 -0.365886 -0.249249 1.102869 0.435140 0.216299 0.664138 -PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = 3.461930 2.122001 -5.066522 13.337235 -1.775265 -2.440658 -0.163600 2.138788 -3.940353 -20.233951 -10.898542 8.364985 2.814189 4.897296 2.618968 3.646779 -1.803778 1.215278 -21.296233 3.859854 9.222512 4.044886 1.963386 -0.453522 2.775104 -4.032292 5.118852 0.753112 3.745847 12.415028 -5.889456 7.594341 10.437909 -2.733554 3.627582 7.173673 -1.912598 2.651497 -4.844853 -0.747925 12.970567 5.553189 0.319530 4.904092 -1.439374 11.416149 1.127967 6.735013 -0.603553 -10.368729 3.256681 5.752465 -4.780773 -2.269960 -4.466924 5.120964 7.734479 7.946720 -4.486870 2.588195 -1.729836 -1.674580 3.082267 0.238590 10.850230 5.213193 8.518425 8.810677 10.366628 -6.519046 0.057459 3.782799 -0.851938 -1.584458 8.586646 -6.300425 -10.901708 -0.971299 -2.700563 -16.451612 -8.988352 1.459976 14.914884 -11.927285 0.453271 -0.112372 1.385142 11.597597 -4.363868 1.963466 -8.183575 -2.758033 -4.386879 13.515547 2.127764 -0.020439 -0.434057 4.402227 4.107163 6.332130 -0.126455 -8.147872 -2.569412 -11.939104 -4.162752 -4.799079 6.328718 10.347160 -14.127935 -3.073356 -5.210776 11.712879 -17.858749 0.578603 6.597139 8.410109 9.468800 0.525839 -7.951872 1.974123 2.286725 -0.924057 8.826722 -5.341584 2.289257 -1.281409 0.437296 -0.186117 2.491847 1.947920 -12.974295 -8.735504 -1.173496 -3.539663 1.307583 4.128701 8.480630 -3.987358 7.933021 -5.962187 8.248629 -13.513539 -1.827519 -2.141964 -10.050611 -4.275620 5.245015 8.648341 5.506317 -7.231790 -7.585453 -2.575712 -14.642031 -13.026800 1.892815 3.193346 2.691162 6.959324 -2.522677 7.557476 -7.149032 3.530630 6.053134 -2.972488 -2.892273 -0.493882 7.809384 0.983433 -1.033483 -6.468126 -3.876938 -6.410529 -0.168781 12.307174 -1.748265 -12.611442 -19.917210 -6.830993 10.221220 -3.898787 0.426190 -7.506729 -2.241544 -9.423564 -0.282633 -11.442012 -0.531720 0.207888 -5.756773 -11.743339 2.020078 -1.481983 -4.719377 1.389328 -8.416341 -2.993002 9.955097 2.331310 5.240313 -1.222831 0.899858 -8.910254 -6.321486 4.822077 -9.252433 6.998819 4.376234 -2.676574 -8.972576 -4.290200 -10.006995 7.455597 -2.129124 3.877645 -3.696025 -0.022877 10.110818 -7.457282 -0.264803 -7.904064 2.036254 4.849931 -16.629529 12.311579 5.839340 -1.895201 1.962256 4.036404 2.078313 6.408896 3.953048 -7.138786 -8.958183 0.227391 -3.191335 1.241947 -3.264528 5.934584 -9.329882 0.039163 -5.160474 -2.686110 5.953829 4.561509 0.913043 3.613690 5.004914 -4.632611 4.803917 6.729418 9.392180 -2.230945 -6.735018 -16.335025 7.738350 -4.914495 -2.458043 -4.009820 -4.331271 -5.727467 4.853717 -2.073392 9.634694 1.147249 -5.213757 9.010454 -14.930949 -10.507079 -7.451169 -0.966525 0.174264 0.624735 -1.814755 -3.316498 5.994756 5.839662 -1.990697 -0.797440 -8.181437 0.608018 1.505751 9.560419 0.018594 4.261937 11.623286 4.169347 -5.258566 -1.815184 2.529677 -2.811012 -4.969260 -10.969740 -3.917802 0.784681 3.135230 -5.516575 0.979614 -4.586461 -3.086397 3.263874 -PE-benchmarks/subset-sum-problem.cpp__main = 0.674748 0.114445 0.450089 0.716410 0.150149 -0.325297 0.374426 0.921833 -0.002878 -2.138700 -1.522256 0.745228 -0.101833 0.048677 0.481958 0.004670 0.188791 0.632239 -2.436736 0.356614 0.895539 0.727358 0.569503 -0.497633 0.358979 -0.349048 -0.548330 0.370737 0.428445 1.321388 -0.773207 0.072825 1.051409 0.208705 0.228565 1.057482 0.224886 -0.096850 0.124009 -0.423663 1.724775 0.615496 -0.073192 1.048198 0.429189 1.251779 -0.268262 0.806013 0.492718 -0.889781 0.449976 -1.102217 -0.972120 -0.106597 -0.700302 0.781260 1.177945 0.927424 -0.603396 0.753373 0.129810 0.011718 0.220604 -1.096408 0.775510 0.915134 0.233237 0.587947 1.450539 -0.909980 -0.260491 0.477217 0.617285 0.284293 0.102062 -0.855582 -0.244080 -1.776007 -0.129136 -2.196041 -0.645136 -0.376433 1.832418 -1.252933 0.615331 0.971778 -0.335802 0.854169 -0.213583 -0.150134 -0.983633 0.112938 0.070866 1.138831 0.026375 -0.129364 0.036417 0.308695 0.569271 0.935273 0.120336 -0.523142 -1.446952 -2.161957 -0.320698 -0.340232 0.390117 0.382434 -1.266670 -0.248474 0.711944 1.226843 -1.739673 -0.325100 0.960443 0.797419 -0.760772 -0.017257 -0.883988 -0.108368 -0.013217 0.093733 0.477898 -1.030444 -0.133188 -0.388967 -0.335603 -0.017939 0.506814 -0.159847 -0.832019 -1.129544 -0.148999 0.114888 -0.129921 -0.003043 0.291466 -0.352976 0.752505 -0.776443 0.899585 -1.307945 0.043529 -0.308257 -0.480692 -0.368418 1.688468 0.593084 0.514203 0.153186 -0.495097 -0.642128 -0.836106 -1.261351 0.737895 0.070057 1.191975 0.320045 -0.141101 0.296615 -0.464863 -0.306663 -0.363183 -0.537620 -0.009270 -0.239472 0.858218 -0.466326 -0.223958 -1.244026 0.240322 0.858741 -0.673280 0.145238 -0.541227 -0.338049 -1.126135 -1.168618 1.077909 -0.403192 0.199873 -0.387544 0.307467 -0.673100 0.272889 -0.948797 0.199501 0.092116 -1.321115 -1.386401 0.181338 -0.375841 -0.242645 0.490806 -0.815098 -0.129431 0.423897 0.872622 0.308745 0.125962 0.185490 -1.448397 -1.227133 -0.571269 -0.487163 0.791375 0.615303 0.054962 -1.375149 -0.437806 -0.792971 1.272001 -0.859246 0.193311 -0.688434 -0.213599 1.292472 -0.444847 -0.056298 -1.357542 0.488074 0.760301 -2.148631 1.208827 0.636543 -0.570153 -0.434697 -0.708398 0.052909 0.977277 1.356361 -0.706048 -0.730169 0.456443 -0.680717 -0.017985 -0.889749 0.932668 -0.451739 0.689879 -0.952993 -0.569916 0.523349 0.790128 -0.015691 1.027057 0.970806 0.799114 0.400662 1.168458 0.608455 -0.462994 -0.904971 -2.006858 0.932950 1.637366 0.392310 0.287533 -0.985248 -0.935576 0.390582 0.307728 1.105163 0.894315 0.350370 1.032478 -0.854965 -1.077677 -0.049974 0.076575 0.404517 -0.449333 0.234371 -0.272095 0.296615 0.516126 -0.115033 0.552649 -0.681885 -1.300415 -0.068914 1.234477 0.608074 0.210227 1.319626 0.190115 -1.055928 0.301701 -0.206153 0.421154 -0.359357 -0.431075 -0.308298 -0.267145 0.141577 -0.599419 0.877275 -0.142357 -0.336931 0.225966 -PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.757252 0.104959 -1.438893 5.277944 -0.185007 -0.452669 -0.008886 1.532621 -1.030832 -9.225694 -6.153875 4.443359 0.580154 1.849200 1.775366 1.888786 0.372245 0.097254 -9.686817 1.896727 3.481370 0.844870 1.127199 0.203698 1.389136 -2.499297 1.854668 0.373642 1.635649 5.174481 -2.838373 3.176652 4.495694 -0.314158 2.353292 3.368642 -1.998158 0.179610 -1.719803 -1.669102 6.422557 2.920786 0.658641 2.695831 -0.049701 5.072625 -0.185411 4.849699 2.579283 -4.282049 2.801850 -0.474924 -3.115960 0.438212 -3.043496 2.350338 2.294967 1.920627 -2.064388 1.296810 -1.637719 0.014393 0.881126 -1.682123 5.183778 1.848429 3.907594 3.265692 4.161286 -3.262816 -0.388459 2.805117 0.904581 0.884198 2.722243 -3.559361 -3.811082 -1.180536 -0.627702 -6.893840 -3.258445 -0.573911 8.601690 -4.945932 -0.139031 0.332877 -0.633741 4.919009 -1.792316 1.184433 -4.136732 -0.217908 -0.914230 4.210950 0.792687 -0.149499 0.090933 1.193975 1.232801 3.303578 -0.359578 -3.242565 -2.801913 -6.509147 -1.206510 -1.951574 3.665053 3.567155 -5.919377 -0.130169 -1.508686 5.906461 -6.835409 -0.255043 3.200045 2.960249 2.546691 2.205201 -3.069618 -0.713472 1.636923 1.345860 4.086743 -2.664458 0.867183 -1.727696 0.619509 -0.177330 2.238504 0.355737 -4.713153 -4.234634 -0.147790 -0.514406 0.139781 1.347249 3.537412 -1.207716 3.797012 -1.541356 3.613190 -5.789023 -0.797684 -2.294631 -3.363724 -1.797120 6.658059 5.635749 4.007257 -1.161463 -1.811249 -1.582533 -5.978312 -4.887441 0.572854 0.622015 2.111771 2.533357 -0.398156 3.581868 -2.613284 1.385679 0.462494 -1.914362 -1.105952 -0.402754 1.776014 -0.097020 -0.740491 -3.964592 -1.090747 -1.618273 -2.197256 4.214903 -0.592871 -7.409220 -7.506449 -3.870829 4.374522 -2.114593 1.051114 -2.715143 0.025555 -2.297126 -0.516197 -4.791459 -0.283286 0.560113 -4.090786 -5.188005 0.502007 -0.894571 -1.541034 0.872047 -3.342527 -1.066830 4.975718 2.956875 2.425382 1.029561 -0.254702 -4.677531 -3.219697 0.700063 -4.107162 3.909374 2.848619 -1.961810 -4.822422 -2.397759 -4.475155 3.688538 -2.487344 1.361933 -2.431365 -0.847785 3.949998 -2.966092 0.851821 -3.809050 1.231903 2.357268 -11.486354 4.107139 3.584117 -1.486350 -0.057243 -0.382268 1.108627 2.961050 3.219774 -2.278233 -2.622802 -0.130728 -1.672738 0.455763 -1.025116 3.246763 -3.482406 -0.336377 -2.972013 -1.879647 3.035809 1.773629 0.649040 1.292078 2.913778 0.692462 3.857161 3.491860 3.558506 -1.633780 -4.146870 -11.257731 3.345802 3.702726 -1.218437 0.407371 -2.681341 -3.264765 1.161425 -2.363822 4.326393 0.600071 -0.567143 4.105762 -4.822704 -4.386844 -2.912277 -0.473208 -0.369514 -0.137587 0.158416 -1.560313 1.721430 1.825722 -0.843861 -0.158620 -2.854032 -1.525039 0.636065 4.666234 1.922443 2.606302 4.723666 2.330692 -2.966125 -0.845932 1.022211 -1.034491 -1.552542 -5.432760 -2.060469 -0.084147 0.689847 -2.210582 0.245971 -0.533359 -0.633310 0.586260 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/optimized-naive-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/optimized-naive-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/optimized-naive-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/optimized-naive-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = 0.621988 0.384859 -0.340454 1.390962 -0.649342 -0.391412 0.169199 0.809704 -0.756194 -2.964624 -1.724395 3.008386 -0.000309 0.688065 0.120932 0.192278 -0.071398 0.331069 -3.423779 0.630399 1.050621 0.568512 0.347603 -0.184717 0.383339 -0.529564 0.740898 0.570951 0.785895 1.789586 -0.982657 0.230427 1.504521 -0.313730 0.341175 1.291938 -0.030509 0.245995 -0.878319 -0.943493 1.992563 0.814289 0.110355 1.187587 0.161995 1.747884 0.144748 1.236015 2.207256 -1.655934 0.453967 0.767166 -1.384682 -0.409368 -0.630176 0.644512 0.308937 1.217386 -0.837260 0.655596 -0.398550 -0.436931 0.235789 -0.717876 1.129425 0.749511 0.948463 0.937820 1.328641 -1.417426 -0.544703 1.107123 0.463883 0.634080 0.793792 -1.121510 -1.374674 -1.526296 -0.196878 -3.197032 -1.834438 0.170697 3.496056 -1.899241 0.296654 0.370130 -0.378601 1.233477 -0.622588 0.286476 -1.415727 -0.382809 -0.040294 1.624947 0.536547 -0.621028 0.461011 0.420609 0.869771 1.550022 -0.138674 -0.995440 -1.083800 -2.177308 -0.178968 -0.639840 0.936906 1.215790 -1.530426 -0.442416 1.031784 2.380959 -2.319604 -0.258729 1.669693 0.849838 0.284593 0.970057 -1.119889 0.360829 0.369503 -0.121034 2.000328 -1.006714 0.013609 1.022878 -0.027484 -0.318686 0.543984 0.361737 -2.199109 -1.966814 0.100502 -0.032599 -0.104644 -0.294692 0.612275 -0.108746 1.354464 -0.439569 1.318609 -1.758135 0.138466 -0.109140 -0.246811 -0.624227 1.994661 2.134454 1.110086 -0.771110 -0.517533 -0.633763 -1.441184 -1.172094 0.919620 0.546690 0.792615 0.624597 -0.189609 1.266647 -0.506300 0.176475 -0.334099 -0.494439 -0.086781 0.301004 0.721475 -0.141607 -0.004726 -1.729114 -0.136502 -0.640185 -0.380780 0.805997 -0.588372 -3.054727 -1.945453 -1.260607 1.532115 -0.468700 -0.000383 -0.382719 -0.468006 0.269408 -0.097389 -1.614936 -0.031176 0.052394 -1.620080 -1.755172 0.569391 -0.415763 -1.173552 0.365257 -1.086838 -0.659595 0.808906 0.753257 0.804308 -0.116518 0.356450 -1.999607 -0.928929 0.008340 -1.367871 0.912491 1.342454 -0.228153 -2.519930 -0.617357 -1.390819 1.050809 -1.404909 0.415328 -1.146355 -0.671209 1.879710 -0.744714 0.716515 -1.109832 0.739801 1.575521 -4.614728 1.955209 1.703963 -0.096157 -0.000597 0.744877 -0.442983 1.721291 1.004385 -1.335970 -1.369492 0.208849 -0.977866 0.287439 0.194359 1.289584 -0.991989 0.147555 -0.841281 -0.556382 0.702644 0.576501 0.603127 0.661975 1.027922 0.301737 0.938326 1.292383 0.998954 -0.423359 -1.128507 -3.784400 1.876501 1.620206 -0.305105 0.854499 -1.024557 -1.197083 0.707793 -0.775156 1.202711 -1.154075 -0.714102 1.233218 -1.683344 -1.441185 -0.775522 -0.398989 0.029765 0.087946 0.960036 -0.321295 0.596224 0.588384 -0.849143 -0.267621 0.195786 -0.452780 0.121396 1.087169 1.536313 0.869775 1.668542 0.156231 -1.716600 -0.013479 -0.075101 -0.076568 -0.898181 -1.595073 -0.247747 -0.092472 0.604962 -0.572941 0.038043 0.083190 -0.706241 0.192041 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 10.701603 3.190641 -13.085487 20.910565 -3.107186 -6.201914 1.006852 4.760007 -7.239033 -32.343543 -20.771697 11.174960 6.378703 2.927640 5.557301 12.209479 -5.744043 1.480600 -24.920358 8.880114 13.400539 2.695183 -1.249590 -1.523254 2.767494 -8.781045 0.898989 0.102668 2.946932 19.348652 -6.462508 12.127289 16.731132 -4.330889 2.908769 12.748949 -5.959074 4.033907 -2.458590 1.086540 19.513628 10.608817 0.592479 4.759169 -2.340515 17.711526 -3.718034 21.309972 -14.615000 -14.771140 14.182126 1.592067 -10.849765 0.171525 -7.493676 8.369366 14.571885 9.234957 -4.437706 5.451644 -12.644706 -0.552015 5.483701 0.455242 20.678039 13.236019 15.787215 14.340963 19.010956 -10.164966 -0.149278 11.135712 -0.970910 -5.290865 14.156508 -10.817311 -16.754519 3.328567 -2.331863 -22.727439 -12.320371 1.577304 39.759649 -19.705783 -4.828945 1.876284 7.629919 20.169352 -10.861436 6.031470 -10.849807 -1.041989 -10.870423 25.157602 2.735480 4.223953 -7.335796 5.958076 6.157290 9.619963 -5.037816 -10.187255 -14.788643 -19.042718 -9.234621 -6.768844 9.193644 14.854745 -28.210290 -6.030077 -2.119141 18.698942 -29.409315 3.457569 14.206356 14.077044 26.878920 16.706551 -20.103426 3.527381 6.051934 1.067629 13.564114 -5.105779 2.799377 -8.799732 5.813467 -1.445100 2.182420 0.796693 -32.817101 -10.099138 -1.031184 -11.530776 5.122531 8.309599 14.360273 -10.109053 12.098224 -8.339169 12.228648 -30.631080 -4.709828 -7.358163 -26.080705 -4.609010 18.198651 23.691469 15.300933 -9.655817 -10.366516 -7.767095 -27.218458 -21.812191 -2.957468 0.968667 6.063826 5.618423 -1.362690 9.422666 -9.019142 9.348398 9.134913 -6.056281 -2.300236 -1.067693 26.988296 0.839348 -4.196909 -13.717358 -10.854629 -10.921653 -0.707980 19.287093 0.173048 -25.122466 -33.396631 -12.487716 15.804968 -5.453465 2.304397 -14.531956 -2.761601 -18.149854 -1.551045 -16.110678 2.888340 4.635837 -10.775274 -18.762010 3.174396 1.029177 -12.845714 -1.423057 -11.130280 -6.169192 22.162894 2.569056 9.453929 2.464649 -1.709482 -15.773818 -13.620783 7.170045 -14.507013 16.743660 17.239687 -3.819151 -11.503203 -5.473053 -23.250482 13.202118 -6.740979 3.845873 -7.558152 2.358448 18.167253 -14.873894 -0.878013 -17.753156 3.196746 2.081666 -35.310808 19.567796 13.609280 -3.860545 1.986744 2.086092 3.675010 11.113907 9.371662 -8.346036 -10.777312 -0.356734 -4.515686 0.200409 -0.544764 10.633484 -19.180198 1.079630 -7.217152 -2.974787 10.116716 10.298734 -0.361003 4.101102 3.285638 -5.575207 11.445167 8.120828 15.030790 -11.304870 -13.110625 -37.409606 10.372457 -10.885843 -11.313323 -4.917950 -5.585171 -10.119145 6.641426 -7.769209 17.197333 1.417519 -8.105523 13.706008 -23.239162 -18.205121 -11.158900 3.590866 -1.212541 -2.450144 -1.964302 -4.591644 7.997674 11.427556 -2.849210 0.388751 -18.946692 -3.911549 0.107642 21.856035 0.920140 3.708884 18.521521 7.589535 -4.195101 -6.331653 5.026278 -2.713527 -4.031050 -19.977946 -7.214623 -0.845882 4.437714 -8.348132 5.237659 -2.810509 -5.537681 9.522385 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 0.265006 0.181768 0.342404 0.198386 0.131678 -0.532583 0.383817 0.561443 -0.195646 -0.724690 -0.480815 -0.139067 -0.080887 -0.397774 0.169935 -0.167250 -0.097225 0.508788 -0.824737 0.286699 0.393282 0.459491 0.071118 -0.531377 0.061391 -0.050734 -0.788680 0.405317 0.011999 0.556883 -0.248461 -0.327460 0.367902 0.191204 -0.068107 0.622548 0.490308 0.082827 0.491977 0.174782 0.692302 0.296599 -0.162999 0.311415 0.453582 0.505971 -0.155601 0.232866 -0.628286 -0.264926 0.104733 -0.729094 -0.414544 -0.188022 -0.199939 0.318916 0.902621 0.766752 -0.253447 0.583208 -0.250542 -0.066124 0.172383 -0.430796 0.240766 0.640551 -0.227158 0.132099 0.978457 -0.329809 -0.214631 0.220015 0.422109 -0.184545 -0.155443 -0.159808 -0.101366 -1.410440 -0.060998 -1.163462 -0.251078 0.049609 0.967734 -0.507153 0.415918 0.807974 0.108661 0.188837 -0.288702 -0.328720 -0.301076 0.127231 -0.230950 0.961606 0.013956 0.076628 -0.056170 0.190731 0.518299 0.478671 -0.192224 -0.071743 -0.944421 -1.274368 -0.221898 -0.050290 -0.255601 -0.167033 -0.566432 -0.464703 0.957146 0.475854 -0.827477 -0.107443 0.581537 0.368882 -0.513474 -0.103888 -0.633478 0.210870 -0.214216 -0.186333 0.177853 -0.464217 -0.275489 -0.200634 -0.147080 -0.054950 0.012473 -0.209050 -0.564764 -0.249815 -0.114022 -0.271020 -0.038777 -0.176243 -0.251539 -0.343169 0.186662 -0.643967 0.415067 -0.698003 0.241036 -0.010604 -0.611181 0.020348 0.632137 0.163393 -0.032440 0.004626 -0.290125 -0.369032 -0.252199 -0.792086 0.460522 -0.064428 0.721753 -0.270003 -0.050057 -0.314394 -0.093767 -0.359419 -0.018356 -0.183379 0.202579 -0.120137 1.120454 -0.256461 -0.157384 -0.676471 0.117789 0.763075 -0.008306 -0.250611 -0.436174 0.213999 -0.282317 -0.537861 0.410737 0.021953 -0.110161 -0.179589 0.097121 -0.511221 0.413901 -0.247374 0.319679 -0.009642 -0.455251 -0.562212 0.043502 -0.137205 -0.225418 0.047413 -0.194895 -0.142963 0.104170 0.110035 0.043784 -0.028038 0.230201 -0.592758 -0.680892 -0.349427 0.185045 0.260695 0.431694 0.409227 -0.456718 0.051544 -0.461953 0.643858 -0.184501 -0.118583 -0.249688 -0.116336 0.938746 -0.092223 -0.202973 -0.674790 0.227531 0.188837 -0.493659 0.757046 0.357315 -0.320870 -0.391513 -0.388998 -0.176240 0.601161 0.809433 -0.371036 -0.300333 0.395402 -0.394884 -0.117471 -0.390899 0.364084 -0.225462 0.700468 -0.397497 -0.233257 0.078864 0.622920 -0.134694 0.535488 0.086899 0.348049 -0.071174 0.530548 0.110290 -0.301026 -0.311999 -0.568485 0.404317 0.236961 0.251571 -0.012764 -0.249030 -0.463890 0.208760 0.438650 0.543255 0.886230 -0.083983 0.386243 -0.324379 -0.526601 0.154187 0.329601 0.343845 -0.586539 0.160638 -0.167163 0.154862 0.276467 0.032802 0.535947 -0.408927 -0.898350 -0.256983 0.473687 0.218416 -0.380351 0.659213 -0.187068 -0.350960 0.157133 -0.148559 0.535669 0.009303 0.208942 -0.117680 -0.418007 0.177773 -0.162484 0.897486 -0.050530 -0.184753 0.579853 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp___GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 2.732751 0.596047 -1.740218 8.357472 -0.748235 -1.542842 0.538160 1.976767 -1.823637 -12.891266 -8.508068 6.556872 1.036178 2.123327 1.754606 1.810861 -0.451516 0.673081 -14.760714 2.763775 5.204531 1.976939 1.660118 -1.326621 1.572994 -3.420759 4.392536 2.333983 1.940516 7.649315 -3.378274 3.534978 6.528800 -0.322694 3.305454 5.733392 -2.458512 1.278820 -3.291185 -1.713914 9.096913 4.993823 -0.270264 3.784253 0.361824 7.744116 2.314861 2.864847 2.363684 -6.060737 1.879007 3.496492 -4.455819 -2.166309 -4.064609 2.726046 4.913623 3.897742 -3.376629 2.449039 -1.739548 -1.157424 1.756065 -0.884057 7.279091 1.914578 5.923047 5.011875 6.501148 -5.452610 -1.025251 3.941492 1.715122 0.347014 4.586102 -5.169529 -8.037231 -1.926466 -1.414781 -12.417961 -5.636614 0.830534 10.664406 -6.935090 0.089767 0.128667 -1.090914 6.594399 -2.935539 0.096033 -5.645019 -1.116026 -2.504239 8.355844 1.718653 -0.767597 1.508093 3.008744 3.175888 5.550396 -0.084430 -5.425067 -1.810648 -10.587059 -0.947862 -3.337434 4.980625 5.013784 -7.328320 -1.873478 -2.176994 8.023205 -10.317958 -0.477635 5.779248 4.582978 2.951529 -3.089208 -3.768083 1.039769 1.754763 0.789121 7.208429 -4.389829 0.871838 1.094258 1.338422 -0.226478 2.505810 1.333083 -6.877439 -6.733038 -0.350138 -0.392256 0.233893 1.269630 4.087746 -1.672096 5.164827 -3.569144 6.642811 -8.910571 1.232626 -2.567638 -4.030671 -2.516987 4.351037 6.439451 4.081001 -3.883615 -2.463638 -0.928192 -8.227599 -8.415668 2.596440 2.608010 2.324256 2.848896 -1.153093 5.019109 -4.083597 1.897171 2.458785 -2.230073 -1.313228 0.211318 3.921707 0.875980 -1.412937 -4.212477 -1.312287 -2.819773 -0.514644 6.630771 -1.652997 -10.471093 -10.884852 -5.402293 6.605824 -2.674925 -0.368109 -3.840730 -1.532714 -3.976149 0.683639 -7.506189 0.914797 0.359852 -5.105102 -7.615178 0.465671 -1.445735 -1.483910 1.322544 -4.989315 -2.260096 6.194061 2.401186 3.062347 0.771634 1.315693 -6.300201 -3.799004 1.953385 -5.059313 5.553962 3.385997 -1.606718 -7.668764 -2.600754 -5.912626 4.831949 -0.891377 2.063724 -3.820671 -1.786104 6.993770 -4.010277 1.774082 -4.844678 1.781407 4.199892 -14.144397 7.530325 6.308893 -1.462462 -0.213536 2.138550 0.170868 4.375780 4.186485 -4.956904 -5.580989 0.267126 -3.204895 0.709280 -1.434671 4.365468 -4.733717 -0.032420 -4.350201 -2.752931 3.990782 2.538308 1.251093 2.955958 3.389897 -0.588510 2.979641 5.587426 5.230486 -1.076828 -6.344106 -13.982386 5.642039 1.409078 -1.299960 -0.080814 -2.027175 -5.355534 2.377897 -1.673010 6.396460 2.021947 -4.303405 6.167296 -7.522514 -6.792606 -5.294096 -1.220610 0.273603 -0.302605 0.156131 -2.466073 3.200402 2.294326 -2.033408 -0.349970 -3.225078 -0.408500 0.870594 6.506919 2.707787 2.630463 7.446058 2.118995 -4.675877 -1.582764 1.410053 -2.277896 -1.626167 -7.269596 -3.239020 -0.542143 2.451070 -2.804557 0.347708 -1.373704 -0.648260 1.619903 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 1.233541 0.004938 -0.228253 2.395321 0.178895 -0.288474 0.171519 0.851461 -0.311848 -4.208744 -2.920688 1.825932 0.158998 0.619759 0.767917 0.656718 0.307725 0.299889 -4.697676 0.855054 1.543625 0.522430 0.623671 -0.269408 0.566999 -1.203478 0.945232 0.580780 0.651613 2.385179 -1.300511 1.189399 2.053095 0.133532 1.195205 1.780974 -0.679633 -0.091605 -0.800158 -0.782683 3.182747 1.524257 0.028565 1.387056 0.256056 2.465301 0.382097 1.474233 1.127878 -1.786593 0.753186 -0.211854 -1.572705 -0.164426 -1.669302 1.072563 1.332770 0.999818 -1.092353 0.815245 -0.544239 -0.079462 0.488614 -0.929850 2.373452 0.590226 1.761943 1.466225 2.180176 -1.718356 -0.301677 1.328073 0.858364 0.557386 1.148287 -1.594708 -1.825346 -1.246489 -0.328937 -3.703416 -1.355274 -0.268687 3.611812 -2.151540 0.117221 0.411551 -0.550294 2.147102 -0.862442 0.139860 -2.046369 -0.025315 -0.369933 2.065918 0.423557 -0.184761 0.269993 0.742285 0.717876 1.690127 0.015411 -1.636254 -1.169214 -3.650754 -0.403420 -0.988936 1.473248 1.243211 -2.457872 -0.150189 -0.481173 2.902599 -3.122390 -0.292526 1.596239 1.272079 0.456883 -0.329746 -1.186952 -0.240128 0.593186 0.657196 1.857372 -1.521569 0.274531 -0.408020 0.356924 -0.042473 1.111296 0.192638 -1.724532 -2.060548 -0.019679 0.073956 -0.024983 0.408392 1.324356 -0.641305 1.657965 -0.979254 1.934314 -2.605035 0.115237 -1.045206 -1.254624 -0.812870 2.761616 2.237760 1.582583 -0.399098 -0.648410 -0.541375 -2.498384 -2.606020 0.694908 0.423428 1.024825 0.958229 -0.237778 1.461692 -1.207944 0.345691 0.304989 -0.962112 -0.479598 -0.147517 0.798769 -0.025329 -0.420223 -1.734599 -0.206202 -0.113419 -0.718800 1.717165 -0.567840 -3.121615 -3.133519 -1.943294 2.048307 -0.997196 0.273673 -1.138921 -0.062452 -1.099090 0.183447 -2.183356 0.099249 0.145944 -2.029146 -2.488383 0.101925 -0.577166 -0.478346 0.568058 -1.594367 -0.367353 1.971348 1.280162 0.893915 0.437225 0.089450 -2.192185 -1.555201 0.130463 -1.507100 2.049104 1.096298 -0.669348 -2.539948 -1.024893 -1.834349 1.944411 -0.912603 0.619896 -1.157027 -0.638875 1.947517 -1.266640 0.421961 -1.716335 0.740490 1.180315 -4.999790 2.138843 1.989244 -0.884960 -0.340848 -0.318297 0.405725 1.342408 1.849633 -1.295430 -1.294014 0.175854 -0.823071 0.112811 -0.785600 1.502663 -1.275521 0.056432 -1.687689 -1.120801 1.331060 0.930442 0.245305 0.836109 1.368759 0.567491 1.258871 1.975098 1.530783 -0.448703 -2.139500 -4.889608 1.567020 1.893047 -0.222635 0.395002 -1.119970 -1.667946 0.498274 -0.896282 2.136248 0.863385 -0.505039 2.030459 -2.044095 -2.091068 -1.305144 -0.326573 0.072847 -0.255340 0.399275 -0.919446 0.686588 0.516503 -0.361454 -0.065334 -1.157699 -0.743733 0.314255 2.124598 1.114019 0.907680 2.300425 0.891123 -1.525000 -0.328797 0.362365 -0.454433 -0.431638 -2.236407 -1.040469 -0.204214 0.458454 -0.974745 0.381485 -0.263771 -0.041908 0.283330 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 5.087458 1.528679 -5.652828 13.741558 -1.142343 -1.158497 -0.201534 1.771044 -3.295792 -20.657213 -12.659777 10.402858 2.800924 4.055798 3.168787 4.262874 -1.016676 0.269341 -19.443736 3.927516 8.053377 2.468857 0.699878 0.837408 2.033583 -5.065577 5.619618 1.416730 3.353476 11.929888 -5.083250 8.170023 10.578679 -1.928967 3.273122 7.188688 -3.060091 1.426932 -5.222276 -2.519084 13.600370 5.665142 1.425496 5.663521 -0.891126 11.539110 0.649081 10.668267 1.924269 -9.941456 5.412103 3.753482 -5.402339 -1.165833 -5.694536 4.941482 5.752447 5.129636 -4.548128 2.521080 -3.872400 -0.901868 2.857776 -0.572318 11.478282 5.470687 9.988617 8.004007 9.989102 -7.335421 -0.519252 5.937380 0.156226 0.468909 8.231029 -6.370279 -10.470795 0.850061 -2.159487 -14.878564 -8.720908 0.124176 19.327611 -11.248697 -1.653186 -0.252646 1.056165 11.736147 -5.121706 3.167750 -8.877077 -1.600899 -3.520408 11.436555 2.008289 -0.311674 -1.328210 3.071052 2.903958 6.418707 -0.622434 -8.049337 -4.463681 -12.244731 -4.581398 -4.954420 7.035636 8.837832 -14.814759 -1.567030 -4.859719 12.754483 -16.667630 -0.432033 7.419265 7.324618 11.260947 5.748740 -8.329967 0.358971 4.420890 1.203714 9.734465 -4.146325 2.908185 -2.585651 1.672819 -0.157742 2.401665 1.843855 -13.544565 -8.921250 -0.255836 -2.878530 1.122517 3.522620 8.739700 -3.628722 8.227528 -3.944130 8.437084 -14.481833 -2.974549 -3.349392 -10.158140 -4.257591 10.795139 12.793081 9.237341 -5.293040 -6.107606 -3.224157 -14.649694 -12.163060 -0.130559 1.889391 2.631801 5.757632 -1.353157 8.189281 -6.618311 4.526981 5.135787 -3.075098 -2.806982 0.251079 7.005724 0.120334 -1.292752 -7.225595 -4.024230 -7.004839 -1.771083 12.346188 -0.668649 -17.671802 -19.354361 -6.658358 9.995336 -4.496801 1.080943 -7.332182 -2.269276 -7.214373 -1.372293 -10.674674 -1.230278 1.151889 -8.283991 -11.805611 2.342648 -1.448050 -5.544741 1.398228 -8.170086 -2.873533 12.257371 4.402481 6.030089 0.770376 -0.885404 -9.877972 -6.627301 3.362658 -9.653791 9.700861 6.874392 -3.673481 -9.902189 -4.903167 -11.334591 7.581450 -4.692095 3.292178 -3.999982 -0.908600 8.921996 -8.177756 0.834906 -8.008035 1.880598 4.488390 -22.905855 10.842853 8.063498 -2.639436 1.008494 2.353694 2.349852 6.332828 5.016030 -6.809962 -7.564407 -0.807654 -2.560016 1.078994 -1.635725 5.954578 -9.421186 -1.343998 -5.911174 -3.606822 6.794409 4.456971 0.782374 1.391377 5.127211 -2.416041 7.430751 6.948308 8.850566 -3.307399 -7.538742 -22.211980 7.493253 -0.214238 -4.525595 -1.384800 -4.813961 -5.958156 3.278851 -6.143685 9.407951 -1.437648 -4.164254 9.184897 -13.510547 -10.329324 -7.680460 -1.006711 -0.922659 0.924533 0.575343 -3.259024 5.069391 4.703836 -2.544406 -2.200320 -7.995267 -0.004545 1.595502 10.317260 1.460925 4.789476 11.119830 4.879807 -5.317184 -2.077572 2.426086 -3.182065 -4.105727 -13.837853 -4.122540 0.760199 2.671856 -5.090589 0.300310 -2.788536 -2.251359 2.158616 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.523315 0.177890 0.656996 0.236445 0.440274 -0.576043 0.507942 0.827272 -0.118231 -1.135591 -0.737588 -0.091927 -0.179318 -0.453936 0.224366 -0.234100 0.108996 0.705064 -1.118946 0.310605 0.476956 0.678265 0.193207 -0.733349 0.159326 -0.073454 -0.953350 0.472370 0.148856 0.764320 -0.453446 -0.509501 0.523464 0.273703 -0.014856 0.854280 0.821013 0.015168 0.557997 -0.026951 1.177330 0.344866 -0.103736 0.712672 0.711551 0.720692 -0.267953 0.615610 -0.546542 -0.360422 0.190867 -1.242306 -0.613709 -0.196197 -0.455329 0.642791 1.308180 1.015149 -0.475497 0.774340 -0.036747 -0.012830 0.191748 -0.748823 0.206983 0.927559 -0.372330 0.184091 1.431154 -0.556444 -0.389537 0.405385 0.744229 0.068474 -0.168043 -0.490994 0.021222 -1.870984 -0.067014 -1.464564 -0.147979 -0.203780 1.449450 -0.716422 0.651235 1.229200 0.000000 0.216713 -0.249351 -0.466798 -0.521487 0.274771 -0.231131 1.264582 -0.087643 0.105624 -0.052019 0.194143 0.611876 0.746017 -0.097690 -0.107425 -1.324789 -1.800799 -0.358188 -0.111012 -0.246016 -0.269901 -0.715477 -0.512014 1.152537 0.597920 -1.098144 -0.232892 0.742597 0.532656 -0.750007 -0.032175 -0.802984 0.057300 -0.274924 -0.258299 0.005300 -0.697930 -0.428628 -0.352617 -0.334105 -0.080499 0.134707 -0.369555 -0.653640 -0.407938 -0.294862 -0.202992 -0.122555 -0.354185 -0.334820 -0.651834 0.322409 -0.772670 0.502157 -0.910247 0.123695 -0.072247 -0.802812 -0.047892 1.168326 -0.056704 0.184373 0.224736 -0.371166 -0.696598 -0.263611 -0.961400 0.642547 -0.143552 1.049367 -0.168496 -0.048076 -0.370970 -0.186547 -0.697627 -0.168412 -0.292987 0.224226 -0.256991 1.434515 -0.599515 -0.150063 -1.066254 0.314165 1.261575 -0.164692 -0.422997 -0.646293 0.268854 -0.315391 -0.835300 0.570905 -0.068251 0.018178 -0.128202 0.244629 -0.608878 0.503927 -0.402004 0.439081 -0.079755 -0.824047 -0.825852 0.156455 -0.293259 -0.211255 0.261426 -0.356840 -0.040808 0.018127 0.455593 0.006652 -0.018471 0.238804 -1.152778 -1.107208 -0.658612 0.285958 0.452254 0.470158 0.485502 -0.603808 -0.081102 -0.559567 0.869891 -0.475039 -0.169009 -0.297223 -0.074976 1.157330 -0.142753 -0.156707 -1.155299 0.339667 0.359839 -0.760501 1.061523 0.386892 -0.543660 -0.645555 -0.747962 -0.185280 0.747092 1.242561 -0.500597 -0.438182 0.647732 -0.560490 -0.179385 -0.756491 0.556912 -0.147585 1.048554 -0.745497 -0.486213 0.080768 0.910373 -0.250751 0.766559 0.391557 0.621776 -0.079930 0.976205 0.191304 -0.297482 -0.519626 -0.964107 0.526349 0.697556 0.445717 0.048764 -0.493592 -0.689932 0.298198 0.726094 0.792040 1.255035 0.303293 0.618489 -0.438068 -0.715643 0.446565 0.329435 0.578715 -0.842529 0.166307 -0.347316 0.105444 0.223940 0.047480 0.679701 -0.499405 -1.281023 -0.347565 0.733546 0.356672 -0.354217 0.923689 -0.145685 -0.563686 0.422821 -0.205332 0.906275 0.010591 0.277133 -0.116541 -0.558293 0.075497 -0.251615 1.268450 -0.046141 -0.229028 0.641268 -PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = 2.213162 1.529922 -3.015051 5.496306 -0.825623 -1.499037 -0.137902 0.550763 -2.454730 -8.408388 -5.249945 4.222617 1.428879 1.203909 0.912500 2.791329 -0.854006 0.528211 -8.066760 2.031017 3.407245 0.669345 -0.248428 -0.468480 0.791569 -2.229275 1.884513 0.462935 0.957593 4.968600 -2.335446 3.265658 4.260288 -0.946794 1.755734 3.189882 -2.056459 0.906115 -1.410816 -0.370176 5.543896 2.476469 0.547988 1.464829 -0.180461 4.780410 0.131748 3.399869 -1.400245 -3.868154 2.135257 3.344827 -2.573771 -0.250287 -2.434174 1.864256 3.021222 2.343028 -1.820097 1.300212 -1.876110 -0.213872 1.415451 0.280102 5.537862 2.169101 4.192285 3.578519 4.507758 -2.659884 0.062701 2.197079 0.141567 -1.105618 3.833044 -2.688982 -4.662779 1.124701 -0.845889 -7.610146 -2.787993 1.068120 9.215903 -4.861101 -0.925232 -0.209573 1.397583 5.213851 -2.460995 0.813079 -3.222252 -0.533425 -3.109191 6.604783 1.208012 0.550444 -0.859619 1.950760 1.596168 2.747153 -1.299478 -3.348776 -1.788273 -5.816762 -2.208628 -2.108531 2.550293 3.669369 -6.470765 -1.385849 -1.034676 5.805340 -7.516606 0.461371 3.330924 3.010347 4.415763 1.390659 -4.479371 0.877656 0.674708 0.543336 3.792247 -1.202629 0.712101 -0.632565 0.929529 -0.431985 1.341468 0.726119 -7.426383 -3.150325 -0.235827 -2.464076 0.637447 1.769126 3.586139 -1.652149 3.293582 -2.131286 3.431557 -7.022509 -0.264390 -1.972790 -5.317924 -1.432479 1.633439 5.679936 2.918005 -2.926964 -1.836786 -1.191094 -7.117860 -5.506157 0.320158 0.772683 0.949355 1.809636 -0.681726 2.823979 -2.705040 1.727545 3.152526 -1.863736 -1.138197 -0.689792 6.454523 0.569421 -1.115193 -2.886100 -2.320873 -2.943917 0.030470 4.903135 -0.627629 -6.537120 -8.697448 -3.201334 4.193126 -1.703269 0.346173 -3.318342 -0.963121 -3.690300 -0.084167 -4.591192 0.174225 0.385625 -2.181008 -4.850320 0.434763 -0.193991 -3.214601 -0.373716 -3.544886 -1.180975 5.684044 0.026016 2.226473 0.031030 0.118778 -3.700529 -2.768076 2.357566 -3.606299 2.918728 4.259166 -0.934095 -4.410702 -1.584996 -5.249993 2.810076 -1.085764 1.452266 -1.668075 -0.249275 4.438820 -3.709498 0.579313 -2.848589 0.885247 1.086890 -9.748087 5.633568 3.741386 -1.234533 0.584204 1.106049 1.149936 2.444671 2.201434 -2.918663 -2.894094 -0.160697 -1.637867 0.244904 0.050924 2.902106 -4.175965 0.092513 -2.381055 -1.087475 2.831666 2.233340 0.421844 1.283785 0.998782 -1.846790 2.889692 2.724265 3.637208 -1.498040 -3.347274 -9.267502 2.793688 -3.364083 -2.032089 -0.836939 -0.479424 -2.853210 1.390926 -2.159061 4.446876 -0.966985 -3.098021 3.652715 -6.009913 -4.732312 -3.387183 0.003271 -0.181089 -0.294231 -0.168668 -1.629259 1.738126 2.046172 -0.480167 -0.432018 -3.708630 -0.107524 0.546553 4.977903 0.969374 1.014726 4.833118 1.711972 -1.764834 -1.464429 0.954721 -0.783315 -1.009501 -5.548540 -2.184672 -0.223733 1.478158 -2.233340 0.794207 -1.066694 -0.515115 1.951492 -PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.101070 0.117789 0.122536 1.436263 0.321545 -0.623416 0.380700 1.034291 -0.283109 -2.994072 -2.125581 0.987544 0.006290 -0.039471 0.620189 0.274325 0.201775 0.539493 -3.226760 0.754374 1.115898 0.644967 0.239675 -0.541793 0.397381 -0.701956 -0.281842 0.577596 0.402390 1.758612 -0.982492 0.343172 1.424004 0.150835 0.642283 1.493237 0.037320 -0.014710 0.091858 -0.340859 2.479524 1.076916 -0.025529 1.187485 0.668914 1.772317 -0.202535 1.498462 0.090986 -1.198177 0.764710 -0.899481 -1.250445 -0.106162 -1.179197 0.997039 1.660332 1.077586 -0.917614 0.944129 -0.442734 -0.040509 0.392091 -0.925980 1.520435 1.060383 0.769917 0.908677 2.124984 -1.162580 -0.390598 1.001384 0.961438 0.291044 0.472417 -1.165508 -0.958858 -1.715685 -0.170934 -2.887945 -0.810134 -0.319246 3.092296 -1.663220 0.416041 0.978850 -0.175929 1.339705 -0.708986 -0.189310 -1.375155 0.153366 -0.450279 2.012161 0.116723 0.081941 0.024576 0.526539 0.751980 1.382711 -0.217142 -0.938306 -1.662515 -3.148272 -0.576133 -0.553454 0.590568 0.498705 -1.937891 -0.439967 0.521258 1.881009 -2.403268 -0.256020 1.343869 0.979885 -0.038255 0.248971 -1.407161 -0.120141 0.135000 0.213700 0.989892 -1.099580 -0.134679 -0.681637 0.034369 -0.059926 0.642344 -0.141408 -1.586913 -1.257461 -0.177947 -0.194412 -0.105335 0.026163 0.520536 -0.830655 1.118802 -0.973974 1.313718 -2.183990 0.009586 -0.719679 -1.347698 -0.404915 2.259912 1.381096 1.086701 -0.056293 -0.592954 -0.794973 -1.689842 -2.049600 0.685912 0.015221 1.255048 0.282394 -0.120599 0.505800 -0.711366 -0.241226 0.072943 -0.740535 -0.077228 -0.356769 1.687446 -0.392974 -0.336498 -1.643535 -0.036968 0.678832 -0.537759 0.651913 -0.677694 -1.603576 -1.968396 -1.539302 1.452252 -0.533940 0.218768 -0.707482 0.158620 -1.107433 0.355020 -1.422908 0.289150 -0.017864 -1.573098 -1.834230 0.125325 -0.415050 -0.462159 0.305510 -1.085830 -0.253051 1.269254 1.061066 0.548243 0.277804 0.139164 -1.953114 -1.626170 -0.316708 -0.650190 1.481329 1.110753 -0.080479 -1.635353 -0.543749 -1.544295 1.612574 -0.940213 0.190832 -0.762620 -0.402189 1.860485 -0.821295 -0.013271 -1.728843 0.592516 0.754710 -3.302583 1.880248 1.305257 -0.855646 -0.556217 -0.716370 0.140736 1.239438 1.796329 -0.951664 -0.897776 0.460135 -0.788884 -0.065233 -0.841379 1.226931 -0.865209 0.764507 -1.352044 -0.866077 0.837080 1.123747 -0.018669 0.909231 0.814224 0.672552 0.750593 1.629743 0.940305 -0.572072 -1.451402 -3.424973 1.146734 1.317063 0.012110 0.210119 -0.925034 -1.383371 0.358686 -0.088604 1.679710 1.128036 -0.024959 1.448723 -1.437697 -1.624458 -0.455810 0.159817 0.339958 -0.696277 0.320287 -0.686080 0.441834 0.507515 -0.097938 0.453975 -1.084484 -1.386247 -0.101553 1.617622 0.782656 0.199044 1.818839 0.395780 -1.139142 0.030125 0.064547 0.379624 -0.207557 -1.103278 -0.673576 -0.558885 0.272126 -0.702041 1.070192 -0.105925 -0.109654 0.650300 -PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = 0.128425 0.294267 -0.195579 0.854593 -0.188474 -0.009800 0.083609 0.294688 -0.451351 -1.614109 -1.126941 1.013441 0.066660 0.647512 0.171346 -0.031946 -0.034069 0.134578 -1.841061 0.136356 0.670642 0.326328 0.240558 0.224639 0.196398 -0.274724 0.094858 0.271505 0.386196 1.007502 -0.470559 0.409573 0.837497 -0.163869 0.161258 0.601936 0.144757 0.101084 -0.424195 -0.318051 1.028429 0.292082 0.035136 0.573093 -0.124828 0.943526 0.030286 0.618787 0.561962 -0.913952 0.128510 -0.127262 -0.514568 -0.162561 -0.278757 0.373591 0.310630 0.689939 -0.390876 0.271795 -0.049830 -0.302828 0.121463 -0.496091 0.596635 0.371752 0.512717 0.507691 0.635645 -0.695371 -0.171055 0.458679 -0.012797 0.227127 0.065891 -0.334061 -0.543585 -0.625673 -0.067556 -1.666078 -1.083293 0.016855 1.358723 -0.930094 0.037203 0.111239 -0.358911 0.700009 -0.317120 0.221184 -0.819753 -0.331880 0.022466 0.456421 0.329486 -0.370743 0.189137 0.225719 0.453784 0.674408 -0.253693 -0.506286 -0.577569 -1.187489 -0.140010 -0.228870 0.449692 0.786664 -0.861356 -0.357780 -0.068579 1.359991 -1.245649 -0.147020 0.669576 0.600332 -0.077519 0.592368 -0.759822 0.064766 0.339219 -0.185784 1.112663 -0.424400 0.268409 0.121062 -0.028686 -0.161716 0.198783 0.270735 -0.861913 -1.050494 0.049265 -0.150652 -0.012523 -0.049992 0.469242 0.091383 0.769334 -0.307058 0.619473 -0.875638 0.047585 0.054184 -0.555326 -0.333250 0.939234 1.133529 0.482860 -0.368401 -0.515037 -0.236238 -0.839623 -0.904294 0.412496 0.361714 0.490104 0.446942 -0.215257 0.749567 -0.464854 0.128017 0.142315 -0.114740 -0.174562 0.094726 0.287563 0.060448 0.025637 -0.776217 -0.058902 -0.420689 -0.343094 0.667661 -0.308324 -1.113545 -1.125293 -0.572506 0.805481 -0.213841 0.029653 -0.336823 -0.165985 -0.416545 -0.066590 -0.843784 -0.333649 0.006163 -0.847783 -0.930121 0.200023 -0.172485 -0.717833 0.323090 -0.568918 -0.320908 0.855483 0.518182 0.541151 -0.176543 0.089847 -0.592096 -0.415458 0.053754 -0.846979 0.561141 0.558646 -0.252659 -1.145411 -0.361227 -0.725102 0.814170 -0.375791 0.262074 -0.512136 -0.121376 0.835565 -0.503221 0.075595 -0.387375 0.313108 0.780464 -2.304734 0.785023 0.675382 -0.021824 0.031485 0.283597 -0.115401 0.787627 0.446424 -0.639780 -0.614195 0.051592 -0.313787 0.191383 -0.307168 0.588509 -0.513587 -0.099234 -0.406548 -0.315257 0.457498 0.249685 0.229434 0.372570 0.654277 0.247601 0.607301 0.630106 0.518830 -0.378120 -0.339977 -1.534112 0.887482 0.774201 -0.206324 0.213319 -0.617407 -0.443063 0.358529 -0.729646 0.666796 -0.350783 -0.370904 0.754381 -0.787979 -0.681477 -0.506311 -0.182119 -0.017732 0.099620 0.385146 -0.184017 0.516413 0.434021 -0.443278 -0.035326 -0.333560 -0.374456 0.034801 0.463175 0.280667 0.704920 0.908567 0.068909 -0.694855 -0.045327 0.070152 -0.036782 -0.503118 -0.966578 -0.247134 0.034448 0.228690 -0.363066 -0.113584 -0.277270 -0.386680 0.290859 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = 1.373500 -0.068525 -0.994690 3.193948 0.139846 -0.614556 0.045283 0.477825 -0.344173 -4.875223 -2.817456 2.346345 0.474754 0.618018 0.641332 1.221877 0.096370 0.521856 -3.949288 1.196861 1.622774 0.697591 0.229694 -0.412208 0.564487 -1.233937 1.632522 0.192477 0.905189 2.780234 -1.436384 1.417939 2.436559 -0.403185 1.164477 2.049135 -0.246397 0.384781 -1.279464 -0.629264 3.607442 1.454211 0.451952 1.644496 0.175654 2.784816 0.544406 2.413362 0.734931 -2.149411 1.240370 0.652056 -1.452558 -0.435864 -1.894801 1.545405 1.635482 1.257286 -1.408284 0.796202 -0.502900 -0.060789 0.715352 -0.263235 2.689052 1.056196 1.955501 2.078080 2.823554 -1.843308 -0.355583 1.641555 0.942754 0.449075 2.545574 -2.107150 -2.658448 -0.054529 -0.784854 -3.138704 -1.214764 -0.070521 4.758809 -2.865514 -0.005482 0.430609 -0.069129 2.585229 -0.958861 0.193523 -2.174811 -0.097296 -0.908174 3.014239 0.502952 0.082589 -0.269278 0.881898 0.658063 1.803160 0.151834 -2.085253 -0.990543 -3.587916 -1.085810 -1.369799 1.585391 1.684036 -3.275770 -0.538961 -1.043453 3.037926 -4.050928 0.063862 1.900179 1.574534 2.415435 -0.151693 -1.470961 0.177285 0.796072 0.358504 1.782062 -1.432212 0.086974 -0.377502 0.444642 -0.150879 0.955665 0.112474 -2.659862 -2.080524 -0.492532 0.004200 0.146012 0.562774 1.719523 -1.648733 1.920418 -0.998413 2.054703 -3.403139 -0.611111 -1.131455 -2.322021 -1.020697 3.168809 1.833285 2.693941 -1.210454 -1.336006 -1.043662 -3.370062 -3.157079 0.590650 0.217154 0.669722 1.602304 -0.229242 1.614871 -1.449373 0.536941 1.050505 -1.088622 -0.563743 -0.000516 1.383969 -0.327668 -0.429464 -2.232539 -0.756043 -0.676010 0.017555 2.372719 -0.532623 -4.177005 -4.119414 -1.995447 2.372916 -1.152764 0.561884 -1.372783 -0.514466 -1.656981 -0.031937 -2.797624 0.383329 0.044348 -1.900970 -2.903493 0.359183 -0.565811 -0.670742 0.451407 -1.968311 -0.336446 2.015572 0.992178 0.962113 0.401971 0.054626 -3.082195 -1.949308 0.622701 -1.842041 2.392625 1.306389 -0.496272 -2.367975 -1.180333 -2.525817 1.638456 -1.534060 0.676475 -0.752353 -0.220024 2.388859 -1.807883 0.553766 -2.433508 0.744807 1.168454 -5.292250 2.685597 2.166374 -0.927087 0.015055 0.406187 0.504116 1.467046 1.817875 -1.579670 -1.787950 0.375874 -0.898999 0.120481 -0.859050 1.573012 -1.902520 0.318419 -1.793904 -1.030384 1.332765 1.302515 0.124962 0.467291 1.245551 -0.442398 1.030719 2.192019 2.179411 -0.195862 -2.537437 -5.479315 1.757439 0.266744 -0.581917 0.148345 -1.091932 -1.489878 1.008619 -0.829067 2.488463 0.361935 -0.551896 2.340367 -3.291233 -2.654785 -1.225714 -0.438477 0.251912 -0.320938 0.228720 -1.232495 0.841142 0.578563 -0.353911 -0.548838 -1.320216 0.071842 0.448492 2.701700 0.869813 1.042278 2.736679 1.057365 -1.490558 -0.234689 0.603934 -0.439542 -0.691028 -3.012461 -1.099373 -0.136491 0.623707 -1.242773 0.671878 -0.814546 -0.272891 0.543617 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 1.809003 -0.256752 -1.197056 3.225349 0.200564 -0.351489 0.186020 0.793835 -0.358798 -5.447513 -2.914502 2.605549 0.383256 1.010727 0.813635 1.211729 0.008877 0.286845 -4.370038 0.943544 1.777844 0.516241 0.197981 0.256220 0.599775 -1.299612 0.703390 0.288816 0.968431 2.985633 -1.558820 1.544525 2.750752 -0.524107 0.483002 1.930168 0.349393 0.296483 -1.163260 -0.625153 3.730773 1.189611 0.065749 1.731734 -0.220158 2.980809 -0.487674 4.510314 0.586678 -2.458335 1.872164 -0.938764 -1.662501 0.027001 -1.694391 1.681048 1.809915 1.503530 -1.238496 0.808558 -0.859356 0.071278 0.699360 -0.512697 2.725435 1.991081 2.125896 2.116680 3.065090 -2.043883 -0.333567 1.769406 0.470943 0.646346 2.082325 -1.782970 -2.017337 -0.824406 -0.129165 -2.734764 -2.098627 -0.629848 5.004339 -3.156226 -0.379665 0.649570 0.321375 3.047551 -1.256005 1.272197 -2.521981 -0.022789 -0.286230 3.404298 0.451908 0.209969 -0.893305 0.553899 0.724256 1.832430 -0.045322 -1.829847 -2.252436 -3.456256 -1.475795 -1.240606 1.345602 2.158808 -4.228715 -0.424657 -0.387898 3.377160 -4.329790 -0.086850 1.801574 1.965188 3.432150 2.811373 -2.314855 -0.162491 1.241547 -0.083756 1.835173 -1.222317 0.444112 -1.540430 0.636641 -0.140744 0.677681 0.088519 -3.835282 -1.884731 0.020355 -0.662190 0.585110 0.822171 2.087039 -1.682638 2.094823 -0.999990 1.680157 -3.775065 -1.261639 -0.708367 -3.049616 -1.058708 4.707272 3.009708 2.939338 -0.568959 -1.963263 -1.694788 -3.622937 -3.933733 -0.221723 0.061876 1.089761 1.603372 -0.377570 1.763198 -1.570346 0.723874 0.727969 -1.032094 -0.694817 -0.261442 1.771008 -0.428311 -0.191672 -2.514456 -0.895860 -0.799675 -0.762526 2.784616 -0.252002 -4.572044 -4.539238 -2.280140 2.545933 -1.141981 0.675769 -1.777409 -0.317084 -2.596478 -0.307464 -2.378693 -0.065284 0.363707 -2.498677 -3.216987 0.824701 -0.444104 -1.428771 0.589267 -2.293458 -0.463133 2.219885 1.305394 1.459638 0.369982 -0.532481 -3.244308 -2.448397 0.371630 -2.310726 2.996407 1.723572 -0.717914 -1.916321 -1.476774 -3.196443 2.518870 -2.778023 0.783242 -0.785293 0.063963 2.525739 -1.936325 -0.506082 -2.726243 1.024886 1.094466 -5.079641 3.186983 2.076325 -1.010418 -0.093369 -0.141905 0.630123 1.959923 2.088782 -1.826226 -1.788078 0.410325 -0.351622 0.067725 -0.643501 1.791768 -2.139336 0.258158 -1.762446 -1.039910 1.289258 1.635088 -0.136316 0.381636 1.595742 -0.146054 1.757527 2.067867 2.047744 -1.084578 -1.866009 -6.215874 1.896755 0.537571 -1.255337 0.139780 -2.441476 -1.373265 1.202880 -1.470211 2.783188 -0.224363 0.151114 2.474472 -3.573475 -2.698447 -1.152144 -0.397251 -0.098017 -0.169172 0.699721 -0.813187 0.881817 1.176301 -0.528642 -0.504887 -2.215120 -0.732474 0.232954 2.627706 0.313210 1.135275 2.872742 1.243498 -1.363119 -0.369933 0.435882 -0.152505 -0.890774 -3.115073 -0.738635 0.044214 0.351580 -1.445420 0.758890 -0.589093 -0.938435 0.681655 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.232018 0.131839 0.408485 0.088812 0.145737 -0.336173 0.280133 0.516982 -0.131249 -0.692464 -0.522811 -0.367116 -0.115615 -0.264174 0.279458 -0.119480 0.056473 0.446444 -0.853757 0.200027 0.407819 0.426639 0.208271 -0.363161 0.130273 -0.050694 -0.868439 0.219586 0.072172 0.485899 -0.320279 -0.213801 0.333908 0.163872 -0.016553 0.474336 0.329147 -0.010250 0.527830 0.120373 0.676909 0.164671 -0.070772 0.278611 0.392427 0.431465 -0.280001 0.262857 -0.369058 -0.256025 0.217616 -0.997452 -0.315977 0.024917 -0.210862 0.328240 0.814435 0.714432 -0.255811 0.475775 -0.149459 0.042044 0.105840 -0.597996 0.212373 0.566965 -0.208377 0.095120 0.769064 -0.235774 -0.117996 0.095627 0.321522 -0.113815 -0.304149 -0.262793 0.214970 -1.505916 -0.053151 -1.042751 -0.067923 -0.051289 0.823963 -0.448703 0.450825 0.785530 -0.049085 0.179431 -0.154091 -0.252665 -0.306754 0.152593 -0.084447 0.573936 -0.068682 -0.029076 -0.022445 0.147894 0.347295 0.351561 -0.125849 -0.006701 -1.003049 -1.155663 -0.282225 0.012865 -0.110422 -0.140577 -0.518038 -0.260595 0.875253 0.258660 -0.706506 -0.087250 0.404668 0.371186 -0.789958 0.030724 -0.603547 -0.041121 -0.248305 0.006804 0.068379 -0.426807 -0.176021 -0.484942 -0.237159 0.015629 0.128341 -0.255235 -0.214869 -0.265044 -0.171246 -0.182766 -0.127619 -0.108311 -0.146741 -0.201947 0.231379 -0.507068 0.328443 -0.567330 0.158176 -0.103437 -0.418808 -0.005962 0.800582 0.147124 -0.102830 0.205331 -0.313561 -0.336094 -0.206301 -0.453494 0.335691 -0.103163 0.766528 -0.132021 -0.039927 -0.228609 -0.035194 -0.353793 -0.235716 -0.200269 0.141942 -0.206379 0.785698 -0.292611 -0.152988 -0.703248 0.195735 0.859356 -0.340582 -0.320327 -0.376167 0.528804 -0.197845 -0.497059 0.360071 -0.032074 0.079725 -0.121883 0.288075 -0.424221 0.376893 -0.254134 0.123580 -0.012113 -0.489683 -0.497120 0.037690 -0.153303 -0.151286 0.101804 -0.173917 -0.039478 0.100631 0.354118 0.059248 -0.009461 0.153993 -0.614578 -0.681776 -0.473183 0.091230 0.177896 0.332946 0.242731 -0.439132 -0.022976 -0.289217 0.606488 -0.140126 -0.104580 -0.248786 -0.099153 0.676054 -0.065698 -0.120837 -0.647419 0.159167 0.174621 -0.657131 0.550012 0.188804 -0.337696 -0.332360 -0.627135 -0.008860 0.440182 0.712005 -0.167379 -0.105841 0.294919 -0.354986 -0.081030 -0.519076 0.363813 -0.145261 0.551462 -0.390817 -0.222540 0.149650 0.509123 -0.114572 0.523847 0.259124 0.521938 0.036999 0.493347 0.058207 -0.326479 -0.217674 -0.543852 0.291972 0.757511 0.354576 0.045079 -0.302059 -0.377529 0.070739 0.483863 0.464495 0.990669 0.245288 0.354773 -0.148381 -0.412229 0.199366 0.328194 0.277365 -0.536390 0.033565 -0.149626 0.065445 0.249443 0.100849 0.572460 -0.387296 -1.047629 -0.225486 0.476047 0.229676 -0.241093 0.537846 -0.092424 -0.373153 0.217388 -0.122004 0.520805 0.012473 0.346545 -0.115957 -0.310146 0.028802 -0.205432 0.737292 -0.081847 -0.140390 0.391021 -PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 0.628851 0.521933 -0.686493 1.905539 -0.629747 -0.637898 0.177585 0.629696 -0.871058 -3.327538 -1.918493 2.599954 0.237018 0.491388 0.229196 0.463413 -0.330005 0.487842 -3.503836 0.779852 1.322005 0.672638 0.255111 -0.416820 0.373787 -0.625529 0.699588 0.524898 0.671046 2.057373 -0.988779 0.532212 1.708992 -0.391867 0.300913 1.423862 -0.220271 0.487848 -0.750982 -0.552050 2.191646 0.911330 0.091423 1.076838 0.125181 1.946823 0.123516 1.246881 1.193937 -1.731837 0.645029 1.325921 -1.255505 -0.502156 -0.713982 0.805043 1.026314 1.408674 -0.837680 0.711682 -0.599283 -0.385947 0.436411 -0.431143 1.547912 1.110174 1.191072 1.278830 1.805882 -1.401471 -0.375170 1.017610 0.379281 0.080245 1.273050 -1.219053 -1.832812 -1.136657 -0.435178 -3.462569 -1.661901 0.393680 3.842387 -2.139181 0.142623 0.361562 0.125891 1.636288 -0.822736 0.248228 -1.386097 -0.335990 -0.673312 2.456576 0.587023 -0.337890 0.090254 0.653271 0.936840 1.497087 -0.232767 -1.140393 -1.023199 -2.590562 -0.629761 -0.766549 0.987564 1.362011 -2.149687 -0.608666 0.838291 2.270943 -2.947280 -0.104191 1.771262 1.192792 0.831774 0.519903 -1.574281 0.547827 0.292650 -0.149757 1.916262 -0.934561 0.027103 0.664659 0.003181 -0.272049 0.473701 0.283434 -2.593078 -1.854314 -0.178557 -0.372718 0.078510 0.021234 0.898526 -0.438751 1.418732 -0.762992 1.511517 -2.438439 0.117026 -0.313293 -0.991929 -0.632595 1.405483 2.061278 1.151169 -1.180628 -0.811391 -0.711989 -2.090258 -1.687920 0.773730 0.509174 0.742530 0.667998 -0.271541 1.182758 -0.738125 0.380722 0.355690 -0.610307 -0.136960 0.181444 1.804267 -0.094189 -0.198951 -1.756547 -0.485771 -0.795626 -0.121808 1.236691 -0.506460 -2.851181 -2.690400 -1.356896 1.735823 -0.529473 -0.007999 -0.840087 -0.493395 -0.492330 0.062215 -1.843896 0.076329 0.141869 -1.433998 -1.999093 0.481229 -0.298946 -1.286568 0.181933 -1.340751 -0.669591 1.263759 0.474699 0.879272 -0.120335 0.386175 -2.130694 -1.166291 0.291562 -1.416733 0.976550 1.582350 -0.102922 -2.406612 -0.617047 -1.782151 1.086524 -1.072964 0.450072 -1.053268 -0.495609 2.140410 -1.098392 0.504733 -1.395370 0.563983 1.231343 -4.387563 2.407324 1.689237 -0.196130 0.100458 0.777622 -0.204150 1.583712 1.064629 -1.512489 -1.499464 0.193874 -1.015362 0.215298 0.060499 1.353213 -1.414580 0.260244 -0.891535 -0.491518 0.871528 0.872054 0.423036 0.767744 0.836181 -0.216801 0.889158 1.290425 1.321654 -0.545841 -1.270791 -3.799993 1.742129 0.216383 -0.442043 0.390633 -0.751391 -1.295791 0.849587 -0.417009 1.568347 -0.754792 -1.005743 1.421409 -2.167216 -1.769290 -0.942842 -0.228905 0.117616 -0.140541 0.585978 -0.500423 0.690805 0.811868 -0.689828 -0.175367 -0.442988 -0.339164 0.098487 1.592616 1.146157 0.594716 1.970874 0.332053 -1.556517 -0.169480 0.019253 -0.174838 -0.833308 -1.695896 -0.387312 -0.115925 0.703172 -0.750479 0.360664 -0.239080 -0.662256 0.524467 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/the-knights-tour.cpp__solveKT() = 1.947672 0.041018 1.067432 2.727708 0.520048 -1.317016 0.956495 2.419340 -0.444738 -5.727803 -3.972216 2.183054 -0.238941 0.093239 0.913907 -0.162755 0.361389 0.939930 -8.077673 1.499801 2.351617 1.604263 1.105541 -1.541271 0.883319 -1.337188 0.419548 1.866650 0.817974 3.473555 -1.967493 0.178310 2.786034 0.700180 1.711608 3.259985 0.092448 -0.049273 -0.274703 -0.911747 4.850803 2.858628 -0.668268 2.309012 1.445818 3.648559 0.980532 1.196660 1.113482 -2.462404 0.157425 -1.325456 -2.849585 -1.001765 -2.194944 1.527690 3.101045 2.633475 -1.931213 2.038784 -0.504081 -0.529983 0.778800 -1.668076 2.770484 1.022086 1.521620 1.463731 3.980217 -2.661613 -0.988010 1.907538 2.156734 0.748404 0.749684 -2.495064 -2.645531 -4.527582 -0.127270 -6.982879 -2.387030 -0.207537 4.533226 -3.041001 1.487153 1.737858 -1.115689 2.290692 -1.392766 -0.978090 -2.864710 0.039018 -0.533211 4.197645 0.267998 -0.352215 1.330263 1.379106 2.069278 3.139228 0.098902 -2.156724 -2.202980 -6.520927 0.201694 -1.253840 1.232988 0.967673 -2.734553 -1.056558 0.714958 3.975727 -4.421045 -0.768354 2.917374 1.755781 -1.241435 -2.031117 -1.416479 0.180280 0.001594 0.280150 2.752718 -3.127682 -0.361419 0.331672 0.228724 0.084311 1.333503 0.111949 -2.321851 -2.941754 0.064173 0.139159 -0.433190 -0.249730 0.523327 -1.143425 2.109587 -2.460284 3.124854 -3.484583 1.148276 -0.932517 -1.352705 -0.872285 3.443882 2.205080 0.942675 -0.418825 -0.676596 -0.772974 -2.528964 -4.269284 2.223353 0.871019 2.377493 0.379730 -0.389657 1.166033 -1.512690 -0.728582 -0.193296 -1.193273 -0.141566 -0.348460 1.893105 -0.263533 -0.562412 -2.454751 0.535313 1.481364 -0.609188 1.284169 -1.758487 -3.615331 -3.441433 -3.138784 2.972027 -0.986915 -0.374448 -1.212970 -0.026566 -1.529795 1.177473 -2.932112 0.976614 -0.226928 -3.067342 -3.602344 0.058433 -1.200478 0.066511 0.912682 -1.963965 -0.843718 1.789540 1.989286 0.841886 0.345472 0.993749 -3.526074 -2.580377 -0.482162 -0.987037 2.944703 0.987926 -0.119093 -3.761981 -0.880684 -2.221887 3.269176 -0.816585 0.476040 -2.085001 -1.348330 3.989825 -0.944457 0.532720 -2.842720 1.399470 2.249556 -5.576606 3.935048 3.067764 -1.434166 -1.296801 -0.617186 -0.344215 2.748689 3.432983 -2.324210 -2.531372 0.969818 -1.974864 -0.028645 -1.609990 2.259357 -1.309046 1.405792 -2.737993 -1.923715 1.393207 1.774840 0.309046 2.166101 1.768242 1.390883 0.766563 3.572624 1.559260 -0.388668 -3.232296 -6.310844 2.792455 3.547507 0.703971 0.328694 -1.560409 -3.096587 0.801227 0.278370 3.151672 3.419182 -1.088882 2.878345 -2.661244 -3.141333 -1.454328 -0.075417 0.760012 -1.023467 0.612512 -1.330871 1.213981 0.700334 -0.569589 0.908778 -1.288110 -2.187008 -0.070288 2.585585 2.011784 0.262944 3.665165 0.372992 -2.570650 0.004128 0.121292 0.330256 -0.402444 -1.589023 -1.410360 -1.185567 0.970854 -1.088932 1.712789 -0.031338 -0.069958 1.006462 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 3.499709 -0.280134 -2.119268 6.184705 0.493006 -1.968316 0.331480 1.698761 -0.586862 -9.703380 -6.061562 5.091637 0.915253 0.405889 1.436068 2.269226 -0.065752 0.906559 -8.734781 2.859976 3.119126 1.258810 -0.309521 -1.165446 1.075490 -2.541163 2.236930 0.973589 1.339925 5.528442 -2.873906 2.446770 4.712803 -0.621818 2.264925 4.258908 -0.665089 0.556665 -1.595034 -0.866015 7.429718 3.588549 0.268464 3.433947 1.082731 5.590674 0.238915 5.834497 0.618968 -4.011970 2.772007 1.118657 -3.439070 -0.685148 -3.889433 3.234859 4.332602 2.048059 -2.796727 1.922647 -1.509908 -0.224785 1.545195 -0.605966 5.791082 2.832007 4.045825 3.876908 6.480002 -3.444241 -0.834070 3.468322 2.689224 0.741245 4.745190 -3.821268 -5.504232 -0.694724 -1.033039 -6.940057 -2.599027 -0.594253 9.803444 -5.761077 -0.103509 1.207177 0.609197 5.351292 -2.574682 0.315771 -4.187263 0.083643 -2.214808 7.392652 0.804283 0.918601 -0.907713 1.911358 1.639323 3.900377 -0.197371 -4.015861 -2.873847 -8.333975 -2.373721 -2.530428 2.422558 2.795485 -7.173775 -1.116320 -1.121633 6.319160 -8.128198 -0.056663 4.050516 2.858514 5.037727 0.618684 -3.836710 0.404514 1.363524 0.550373 3.248380 -2.607590 -0.136697 -1.386262 1.262708 -0.163358 1.696094 0.105956 -6.307226 -3.542696 -0.585645 -0.289918 0.376637 0.985906 3.076626 -3.836691 3.661597 -2.301393 4.006846 -7.554998 -1.215730 -2.531339 -5.037013 -1.603567 6.059595 4.350702 5.359079 -1.943118 -2.249518 -2.411633 -7.097547 -7.421126 1.160804 -0.022123 1.699682 1.992356 -0.343658 2.567567 -2.700255 0.691351 2.205171 -2.501514 -0.834427 -0.590703 4.882436 -0.725343 -0.854510 -4.344678 -1.827266 -0.731717 0.094913 4.366627 -1.080597 -8.660368 -8.180933 -4.216916 4.681982 -1.992791 0.900408 -2.978861 -0.745795 -4.072823 0.131497 -5.068114 0.950076 -0.006551 -3.951621 -5.756601 0.347832 -0.861550 -1.444976 0.263008 -4.096120 -0.772316 4.460745 2.227414 2.005682 1.005518 0.003003 -6.320250 -4.531513 1.042939 -3.109304 5.525949 3.301924 -0.789922 -4.358793 -2.010835 -5.908100 3.927943 -3.964189 1.119148 -1.549878 -0.866022 5.489451 -3.597258 -0.175891 -5.182430 1.654633 1.705683 -9.659217 6.397387 4.536959 -2.239025 -0.394963 0.073156 0.959752 3.384154 4.519664 -3.480482 -3.436502 0.803203 -1.713121 -0.086315 -1.451840 3.640224 -3.937740 1.467600 -3.710011 -2.239669 2.624757 3.219567 0.088244 1.324481 1.651564 -0.629667 2.204342 4.411592 4.071258 -0.977579 -5.141292 -11.452247 3.313065 -0.250347 -1.609180 0.220424 -2.554888 -3.682946 1.619626 -1.534834 5.427528 0.772594 -1.064059 4.545279 -6.641412 -5.519273 -2.397590 -0.392829 0.361808 -0.994085 1.041225 -2.419308 1.556448 1.441745 -0.421554 -0.701042 -3.446968 -0.912848 0.502783 5.187274 1.705741 1.139943 5.612439 2.107073 -2.908871 -0.752290 0.770163 -0.522726 -1.146613 -5.695935 -2.185368 -1.015067 1.174251 -2.381105 2.289438 -0.941050 -0.143578 1.489246 -PE-benchmarks/the-knights-tour.cpp__main = 0.024480 -0.074440 0.185554 0.160291 0.109320 0.006089 0.107043 0.049446 0.012837 -0.390726 -0.180377 -0.132491 -0.057397 -0.003572 0.117371 -0.021393 0.139316 0.222189 -0.211690 -0.009017 0.121563 0.116731 0.138214 -0.048848 0.026694 -0.097885 -0.155407 0.109456 0.077951 0.257853 -0.165089 0.010156 0.205512 0.076041 0.015335 0.214261 0.276412 -0.023748 -0.002903 0.000611 0.383052 -0.069621 0.027827 0.153315 0.082522 0.262065 0.006512 0.167872 0.179230 -0.124581 0.128431 -0.448441 -0.057976 -0.019123 -0.247586 0.155182 0.203902 0.285417 -0.161900 0.186296 -0.023009 0.081357 0.046777 -0.251032 0.137209 0.156305 -0.026448 0.126666 0.297710 -0.225007 -0.049422 0.064752 0.141979 0.070264 -0.020594 -0.102814 0.106413 -0.694499 -0.089082 -0.235865 0.027355 -0.039140 0.269000 -0.209332 0.090283 0.352575 -0.142452 0.130637 -0.025734 -0.027071 -0.285304 0.064870 0.139899 0.096244 0.073815 -0.094885 -0.029341 0.042436 0.062685 0.145368 0.073142 -0.109848 -0.348425 -0.541597 -0.243595 -0.082407 0.017111 -0.065328 -0.249580 -0.032373 0.339961 0.176508 -0.339333 -0.041470 0.126320 0.182620 -0.287507 -0.143724 -0.122952 -0.061588 0.010016 0.072462 0.069584 -0.215745 0.007871 -0.226498 -0.062835 0.000562 0.134563 -0.113583 0.110561 -0.187423 -0.074526 0.093964 -0.051786 -0.051712 0.002394 -0.075977 0.150431 -0.163568 0.199170 -0.181707 0.026900 -0.067730 -0.121897 -0.085644 0.644431 -0.002794 0.156114 0.121010 -0.267240 -0.117823 -0.113151 -0.324876 0.133473 -0.016485 0.250133 0.128793 -0.055826 0.009304 -0.077834 -0.103960 -0.045385 -0.134041 -0.034202 0.009816 -0.123963 -0.138021 -0.085165 -0.382115 0.150143 0.386949 -0.141048 -0.028707 -0.163575 0.082797 -0.096273 -0.243136 0.197623 -0.106162 0.099065 -0.003103 0.045213 -0.202910 0.161102 -0.165239 -0.006201 0.000000 -0.314405 -0.306070 0.074579 -0.133346 -0.043835 0.184938 -0.180936 0.073733 -0.100591 0.127448 0.041166 0.018945 0.031281 -0.308501 -0.313534 -0.227355 -0.050908 0.117208 0.054823 0.088958 -0.229134 -0.137773 -0.081629 0.248174 -0.216783 0.023741 -0.000821 -0.105633 0.168241 -0.097774 -0.017005 -0.220943 0.120232 0.159020 -0.381049 0.206969 0.168730 -0.208172 -0.156577 -0.250338 0.061492 0.121863 0.366352 -0.126581 -0.009868 0.154792 -0.037830 -0.011158 -0.256819 0.137431 0.007946 0.105695 -0.269711 -0.169256 0.085357 0.231224 -0.049238 0.123132 0.268158 0.250474 -0.041417 0.300451 0.057616 -0.010196 -0.110022 -0.309375 0.149663 0.458916 0.154819 0.203016 -0.275519 -0.044756 0.091743 0.078155 0.223927 0.303942 0.170953 0.259549 -0.081880 -0.197364 0.073991 -0.045643 0.123293 -0.222201 0.155258 -0.136189 -0.008706 -0.022971 0.039758 0.070989 -0.031274 -0.287151 -0.002754 0.202906 0.116390 0.032243 0.267114 -0.005979 -0.224233 0.100985 -0.036261 0.122408 0.055222 -0.000884 -0.053432 -0.036290 0.040508 -0.143792 0.221714 -0.152731 -0.060811 0.081401 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = 6.387152 0.535613 -4.592637 15.756701 -1.009378 -3.739271 0.749855 3.310057 -4.249948 -24.454570 -15.807888 9.715639 2.727497 3.565915 3.528763 5.037135 -1.581739 0.615832 -28.194584 5.661247 10.030292 2.827852 2.037625 -2.058420 2.837388 -6.922556 6.768467 4.088493 2.759288 14.356980 -6.691235 7.657336 12.317086 -1.010223 5.825578 10.486744 -4.837135 2.194968 -4.689188 -1.012637 17.005494 9.145296 -0.782040 5.190451 0.510822 14.441657 3.268285 8.515043 0.450590 -11.108476 5.309784 5.192605 -8.468204 -2.829286 -7.816125 5.084262 11.002236 7.715622 -5.840432 4.569457 -4.627741 -1.389490 3.736167 -0.385020 15.322414 4.443758 12.313135 8.949420 13.273310 -9.279218 -1.210477 7.127295 2.672353 -1.065906 9.081523 -9.942248 -14.541865 -3.515380 -1.625919 -23.040753 -9.828939 1.789781 20.184353 -13.060764 -1.108864 0.509630 0.068125 13.744513 -6.693256 1.133593 -10.234657 -1.325041 -5.810782 18.680120 2.730677 0.164718 1.180591 5.917688 5.952959 9.773479 -0.938903 -10.084466 -5.001411 -20.032913 -3.625725 -6.171801 8.181472 9.431015 -16.394225 -3.500093 -4.031524 14.235772 -20.041441 0.053251 10.454242 9.188612 9.156918 -2.748690 -9.032861 1.707251 2.780776 2.033369 12.634313 -7.112311 1.942504 -1.328213 3.953035 0.080542 4.049480 1.702521 -15.494290 -10.373319 -0.231725 -3.121108 1.287778 3.597425 8.610998 -4.296443 9.401889 -7.384851 11.655037 -18.713104 1.308313 -5.335599 -10.874484 -4.176162 7.816100 13.472976 7.091075 -6.883066 -5.543060 -1.995342 -17.462317 -17.944256 2.431238 3.899121 4.189241 4.648107 -2.245357 8.589404 -7.537843 3.676404 6.094641 -4.693127 -2.883359 -1.116218 10.898422 2.008051 -2.881362 -7.380033 -3.867428 -5.241439 -0.799006 13.670770 -2.509417 -19.703849 -22.217043 -10.433020 12.290539 -4.972222 -0.422114 -8.683876 -2.477966 -11.124010 1.629128 -13.288681 1.157799 1.026357 -9.055020 -14.275957 0.631419 -2.018428 -3.642292 1.109101 -10.047449 -4.195756 13.125286 3.831080 6.397952 1.162454 1.467995 -11.789551 -8.535016 4.454497 -9.346873 11.408931 6.990294 -3.070419 -12.184171 -4.590207 -12.780114 9.636352 -2.003709 3.683950 -6.384571 -2.572153 13.307631 -8.261140 1.834192 -9.028147 3.142421 5.537656 -24.138266 16.487612 11.836441 -3.663750 -0.342269 2.733098 1.583160 7.822075 8.033194 -9.013137 -9.765284 0.044934 -4.792870 0.684456 -1.959356 8.379300 -10.184617 0.202939 -8.060428 -5.076757 7.107437 6.211907 1.562489 5.024461 4.677657 -2.184238 5.764207 9.804607 9.106930 -3.204606 -10.828608 -27.238600 9.335802 -1.288580 -3.970235 -1.520906 -3.993177 -9.644407 4.026108 -3.189677 12.937980 5.122103 -7.844897 11.340427 -15.194437 -13.236291 -10.422099 -1.185265 -0.175577 -0.876733 -0.557131 -4.956566 5.768804 5.001789 -2.632493 -0.432119 -9.027494 -1.415978 1.265969 12.883911 3.361247 3.279974 14.188762 4.421326 -6.608959 -4.133937 2.851899 -3.536306 -1.792421 -12.621265 -6.372623 -1.344788 4.319504 -5.431402 1.740065 -2.657224 -0.951595 4.256093 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.084075 0.182237 0.390334 0.038204 0.198317 -0.158651 0.209978 0.290806 -0.236601 -0.440530 -0.356593 -0.322756 -0.125418 -0.161590 0.182471 -0.142275 0.108675 0.253039 -0.462587 0.044067 0.225798 0.191583 0.120785 -0.211255 0.050905 -0.095938 -0.551684 0.288279 0.004914 0.289625 -0.181626 -0.157073 0.181775 0.217793 0.068435 0.324826 0.266343 -0.035046 0.314053 0.049233 0.499164 0.031098 -0.049222 0.159300 0.330426 0.296049 -0.167719 -0.041999 -0.382211 -0.116097 0.066870 -0.620478 -0.165084 -0.019030 -0.209421 0.154513 0.474806 0.445248 -0.202830 0.338031 -0.153752 0.021046 0.027703 -0.380695 0.135766 0.271266 -0.136980 0.033319 0.449412 -0.226062 -0.167099 0.148547 0.196849 -0.039849 -0.406097 -0.003845 0.220631 -1.024240 -0.013902 -0.714794 -0.069591 -0.004458 0.539673 -0.155689 0.189242 0.532839 -0.113376 0.038007 -0.106344 -0.212471 -0.248455 0.094021 -0.059169 0.288335 0.029221 -0.048802 0.084539 0.083974 0.285976 0.330430 -0.172998 0.011547 -0.647824 -0.810525 -0.176764 0.020768 -0.039786 -0.192140 -0.203397 -0.216786 0.697307 0.269028 -0.333842 -0.094532 0.260135 0.257692 -0.721608 -0.086645 -0.433963 -0.050019 -0.144146 -0.017929 0.113326 -0.196081 -0.083386 -0.261651 -0.115717 -0.079659 0.134349 -0.152545 -0.149309 -0.199094 -0.063151 -0.215328 -0.111568 -0.173342 -0.179227 -0.030325 0.141391 -0.312176 0.260360 -0.325731 0.272474 -0.101318 -0.305095 0.025011 0.393300 0.190115 -0.121940 0.209793 -0.146349 -0.144548 -0.059353 -0.331125 0.248720 0.022590 0.514682 -0.153809 -0.054367 -0.118552 -0.063807 -0.277880 -0.062347 -0.110178 0.083769 -0.151393 0.540075 -0.147566 -0.138346 -0.432275 0.223632 0.573612 -0.231957 -0.223643 -0.317305 0.442528 -0.057343 -0.366654 0.198034 -0.029406 -0.029346 -0.001372 0.151383 -0.271864 0.311594 -0.145130 0.124795 -0.053349 -0.341470 -0.301371 0.033952 -0.123542 -0.201829 0.114571 -0.085357 -0.033255 0.096654 0.051210 0.048697 -0.022730 0.096241 -0.228853 -0.402027 -0.308493 0.131923 0.007379 0.299353 0.170923 -0.324307 -0.030724 -0.160018 0.415284 0.095345 -0.076636 -0.129066 -0.135227 0.396630 -0.027765 -0.061580 -0.263633 0.118225 0.161492 -0.469227 0.306579 0.174307 -0.256253 -0.352054 -0.440703 -0.065686 0.250194 0.512881 -0.113071 0.016337 0.204334 -0.188035 -0.050507 -0.268844 0.222723 0.034620 0.342740 -0.348101 -0.254623 0.105747 0.357164 -0.067369 0.386635 0.177042 0.438299 0.042626 0.394006 0.002910 -0.181064 -0.086054 -0.259915 0.193176 0.393552 0.212154 0.046980 -0.092595 -0.307892 -0.017227 0.226165 0.300637 0.585203 0.005733 0.262689 0.059960 -0.237203 0.096388 0.174534 0.186239 -0.449433 0.067551 -0.110557 0.026924 0.082846 0.028970 0.405869 -0.200535 -0.716586 -0.207231 0.257688 0.190778 -0.133798 0.344195 -0.096660 -0.245616 0.110691 -0.030525 0.403033 0.173638 0.116399 -0.162317 -0.272472 0.020850 -0.073096 0.409647 0.003912 -0.054371 0.354629 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp___GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/union-find.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/union-find.cpp__createGraph(int, int) = 1.178993 -0.322628 -0.472648 1.692812 -0.091683 -1.567077 0.410313 1.475989 -0.437103 -2.450638 -1.671906 0.467982 0.315196 -0.485509 1.147930 0.232631 -0.510006 0.342187 -3.181571 1.284559 1.012331 0.659444 -0.735446 -0.855036 0.289634 -0.273625 -0.867043 0.860071 0.044049 1.693678 -0.911773 0.254059 1.028590 -0.384379 0.265374 1.298998 0.297703 0.211302 0.556992 0.586203 2.333373 0.977620 -0.424590 0.884132 0.774622 1.545674 -0.679906 2.160692 -1.429010 -1.162648 1.315872 -0.407747 -1.082224 -0.309105 -0.867811 0.978921 2.688151 1.603909 -0.857378 1.235841 -1.228038 -0.219830 0.705651 -0.003365 2.031732 1.664255 1.067184 1.092812 2.683290 -0.795962 -0.040923 0.751209 1.004820 -0.518120 0.679409 -0.987239 -0.993277 -2.928796 0.161487 -2.700106 -0.956780 0.035526 2.988292 -1.835932 0.481579 1.331216 0.823402 1.736718 -1.579538 0.217789 -0.804070 -0.121966 -0.859077 3.061916 -0.218784 0.521523 -0.199343 0.877326 0.849978 1.411604 -0.465474 -0.687061 -1.845602 -3.413275 -1.418578 -0.030712 -0.303911 0.271623 -2.632250 -0.742981 1.362193 0.608705 -2.526546 -0.186377 1.392135 1.245181 0.782385 0.960578 -1.980273 0.081059 -0.088600 0.121045 0.991271 -0.743863 0.169258 -1.438680 0.398954 0.508131 0.276292 -0.074798 -2.166095 -0.623351 -0.001484 -0.753571 0.048456 0.174329 0.613650 -1.270421 1.006148 -1.549568 1.404214 -3.016207 -0.274721 -0.762612 -1.827276 -0.015246 1.599920 1.107733 0.674868 -0.295179 -1.587388 -0.605671 -2.111335 -2.649450 0.416796 0.053779 0.986729 -0.205962 -0.137815 -0.061158 -0.354221 -0.449160 0.767011 -0.906476 -0.106237 -0.769019 2.388392 0.074765 -0.367560 -1.791563 -0.105143 0.644556 -0.047676 0.908649 -0.334167 -1.381675 -2.285859 -1.218573 1.514371 0.154955 -0.035492 -0.847400 -0.299306 -2.235989 0.703229 -1.204943 0.438438 -0.077997 -1.250074 -1.744436 -0.024070 0.154833 -0.829599 -0.400984 -1.219394 -0.413702 1.085550 0.654833 0.363995 0.334763 0.400979 -2.170873 -2.369171 -0.129394 -0.238529 1.828725 1.195029 0.269675 -0.564602 -0.052654 -1.774169 1.835580 -1.465472 0.219733 -0.318968 -0.509302 2.430609 -1.121088 -1.290283 -2.061315 0.489248 0.173975 -1.880963 2.956802 1.190741 -0.998467 -0.361219 -0.709654 0.273084 1.308952 2.012914 -1.253014 -0.799507 0.433242 -0.124645 -0.253907 -0.932484 1.165644 -1.281917 0.847625 -0.929484 -0.682284 0.720929 1.639089 0.015735 0.914742 -0.020340 -0.119130 -0.020750 1.518746 0.947860 -1.074079 -0.956992 -2.594668 1.278767 -0.096754 -0.583834 -0.288865 -1.426585 -1.384336 0.310562 0.714240 1.524048 1.827365 0.086188 1.257133 -1.964503 -1.907458 -0.805140 0.905038 0.047277 -0.892011 0.219857 -0.719526 0.674892 1.001129 0.330995 0.254545 -1.419231 -1.964731 -0.601961 1.343428 0.045360 -0.666888 2.147567 0.413761 -0.709035 -0.424487 -0.092355 0.215593 -0.059212 -0.160984 -0.580317 -0.831350 0.577396 -1.020960 1.629450 -0.005510 -0.112675 1.288468 -PE-benchmarks/union-find.cpp__find(int*, int) = 0.919112 0.015822 -0.755637 1.860615 0.155375 -0.611773 0.025141 0.312658 -0.295437 -2.854892 -1.780511 1.489445 0.283109 0.034480 0.481713 0.710066 -0.002647 0.345632 -2.429217 0.806659 0.882758 0.270155 -0.252139 -0.301189 0.279579 -0.769553 0.510778 0.309157 0.337219 1.616136 -0.927850 0.804346 1.345673 -0.204388 0.620661 1.134551 -0.233514 0.172064 -0.382720 -0.118946 2.233975 0.846729 0.096396 0.961415 0.412326 1.626630 -0.169812 1.719105 0.180581 -1.104843 0.885095 0.742779 -0.837359 -0.095005 -1.220793 1.001272 1.403985 0.519528 -0.861383 0.537368 -0.477626 0.019055 0.462000 -0.193096 1.822729 0.971604 1.242466 1.178804 1.959145 -0.913293 -0.182448 0.875654 0.830803 0.084428 1.405165 -0.859330 -1.503147 -0.298556 -0.382181 -2.063102 -0.553146 -0.125655 2.916794 -1.692731 -0.187500 0.414390 0.393220 1.676768 -0.806140 0.145274 -1.228108 0.069272 -0.795762 2.335078 0.380945 0.328777 -0.480263 0.616522 0.426589 1.099359 -0.171802 -1.155982 -0.904378 -2.727504 -1.120281 -0.723110 0.633952 0.698225 -2.326622 -0.248014 0.087702 1.876985 -2.452741 0.003163 1.104394 0.830851 1.300592 0.138544 -1.457349 0.108325 0.275300 0.181157 0.806018 -0.495479 -0.026531 -0.620747 0.325599 -0.085729 0.557840 -0.022528 -1.834867 -0.929447 -0.236723 -0.146469 0.091358 0.277685 0.946429 -1.124489 1.089643 -0.617184 1.123512 -2.344232 -0.328759 -0.855260 -1.526214 -0.417729 1.432119 1.367432 1.560002 -0.535049 -0.731983 -0.759967 -2.295480 -2.310751 0.297722 -0.086749 0.462155 0.514064 -0.150779 0.693536 -0.765369 0.167982 0.916952 -0.891850 -0.278248 -0.309956 1.887642 -0.264114 -0.306642 -1.370139 -0.638501 -0.125394 -0.025796 1.215466 -0.310183 -2.235211 -2.462625 -1.229469 1.346220 -0.599788 0.355012 -0.889494 -0.159009 -1.392267 0.126673 -1.427487 0.112972 -0.055183 -1.098783 -1.682698 0.032580 -0.191801 -0.676293 -0.056404 -1.396750 -0.099445 1.358219 0.452904 0.641515 0.226120 -0.035560 -1.847759 -1.450502 0.287710 -0.901998 1.402272 1.256373 -0.163111 -1.315722 -0.611337 -1.866404 1.123586 -1.339523 0.340211 -0.286141 -0.384418 1.559072 -1.174869 -0.343079 -1.370043 0.437929 0.316625 -2.735104 2.104514 1.285016 -0.766594 -0.101248 -0.133034 0.444918 0.885861 1.433161 -1.133058 -0.781887 0.187088 -0.420077 -0.053171 -0.334056 1.193211 -1.156729 0.483826 -1.127330 -0.659635 0.811514 1.105234 0.012424 0.447662 0.380607 -0.239942 0.690507 1.248037 1.179363 -0.323302 -1.326295 -3.204001 0.834181 -0.658983 -0.532042 0.150280 -0.726073 -1.070019 0.362080 -0.398504 1.674873 -0.155642 -0.282333 1.327878 -1.953985 -1.631020 -0.641465 -0.133024 0.071886 -0.440554 0.496506 -0.757114 0.297726 0.411166 0.017283 -0.240587 -1.085971 -0.376971 0.115324 1.483265 0.478879 0.194797 1.642189 0.662304 -0.940207 -0.239814 0.089221 -0.100040 -0.256104 -1.666437 -0.635107 -0.337292 0.306717 -0.758888 0.774156 -0.358130 0.047891 0.490047 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = 1.200126 -0.238514 -0.619485 1.722934 0.306646 -0.673092 0.093016 0.587551 -0.066602 -3.035392 -1.790468 1.491609 0.210051 -0.037299 0.557135 0.743041 0.099583 0.475686 -2.401052 0.895814 0.869309 0.436134 -0.207724 -0.371697 0.372674 -0.719759 0.161671 0.187896 0.472375 1.694427 -1.103285 0.587387 1.413571 -0.276984 0.478647 1.203417 0.181843 0.086577 -0.235636 -0.160525 2.452950 0.819748 0.097639 1.199606 0.553341 1.670956 -0.452180 2.503713 0.381805 -1.158030 1.182250 -0.085288 -0.999172 0.043593 -1.310036 1.306761 1.656364 0.705699 -0.967531 0.629292 -0.389977 0.113798 0.457099 -0.465215 1.708673 1.327805 1.077277 1.149753 2.277180 -0.956289 -0.275823 0.984500 1.085121 0.317776 1.478374 -1.144847 -1.213974 -0.933484 -0.303130 -1.884123 -0.448636 -0.434161 3.218400 -1.933842 0.042837 0.884933 0.395613 1.690981 -0.784150 0.218082 -1.325106 0.226438 -0.562638 2.499153 0.198681 0.374834 -0.666876 0.558654 0.401349 1.168472 0.026058 -1.074399 -1.499864 -2.889610 -1.340451 -0.701261 0.490243 0.615697 -2.582592 -0.183845 0.492258 1.769264 -2.604217 0.020982 1.185358 0.907631 1.509918 0.756525 -1.578801 -0.017244 0.254856 0.127005 0.507177 -0.664423 -0.175237 -0.981322 0.260158 -0.016686 0.544884 -0.248774 -1.918636 -0.881596 -0.331644 -0.005492 0.055357 0.175655 0.889978 -1.540896 1.158547 -0.623153 1.009821 -2.465879 -0.686325 -0.826186 -1.619716 -0.432575 2.432611 1.168379 1.842162 -0.225730 -0.972935 -1.159151 -2.245036 -2.368185 0.261992 -0.324385 0.727423 0.595628 -0.085785 0.560674 -0.634556 -0.073286 0.523293 -1.002215 -0.205532 -0.385203 1.901832 -0.649730 -0.212216 -1.788170 -0.571348 0.394805 -0.206462 0.958518 -0.364352 -2.226737 -2.328907 -1.388600 1.394422 -0.606222 0.613810 -0.816113 0.023737 -1.510230 0.129271 -1.408484 0.160166 -0.062462 -1.435961 -1.808501 0.179819 -0.260440 -0.635651 0.039343 -1.467271 0.009093 0.991387 0.875744 0.619933 0.246889 -0.115599 -2.476953 -1.922523 -0.082554 -0.865197 1.720858 1.186421 -0.116836 -1.186631 -0.683995 -1.978950 1.309814 -2.044778 0.241579 -0.277487 -0.310201 1.690998 -1.164279 -0.490219 -1.911996 0.569382 0.350301 -2.645195 2.354400 1.241461 -0.918431 -0.198612 -0.492605 0.473797 1.089232 1.765738 -1.115491 -0.799052 0.364303 -0.426723 -0.124464 -0.584908 1.360275 -1.183633 0.804839 -1.253655 -0.751172 0.680290 1.370661 -0.097757 0.507492 0.567519 0.012627 0.585551 1.438156 1.151016 -0.427729 -1.377034 -3.501266 0.879960 -0.033414 -0.452416 0.306101 -1.230243 -1.059301 0.425611 -0.119602 1.786958 0.099657 0.393616 1.385230 -2.095926 -1.708088 -0.234698 -0.063157 0.158859 -0.577712 0.627514 -0.799446 0.197053 0.448611 0.070471 -0.182928 -1.131344 -0.777627 0.026928 1.582859 0.571928 0.164295 1.736868 0.702775 -1.063022 0.010557 -0.019740 0.224380 -0.346386 -1.350581 -0.473498 -0.394439 0.142003 -0.840014 1.137951 -0.324466 -0.117036 0.420885 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = 2.744535 0.777175 -2.258525 4.884796 -0.401907 -2.622903 0.545173 2.421087 -1.401718 -7.202223 -4.999732 3.597299 1.085005 -0.255902 1.720912 1.389891 -0.916939 0.907287 -7.881304 2.534659 2.790254 1.121586 -1.406548 -1.348787 0.576023 -1.433570 -0.286402 1.348373 0.493341 4.599996 -2.040338 1.879993 3.387590 -0.803891 1.190321 3.265372 -0.778859 0.560694 0.023235 0.094302 5.615945 2.998238 -0.493159 2.371966 0.973814 4.348693 -1.085892 4.212661 -2.596869 -3.206888 2.111539 1.625214 -2.804506 -0.556773 -2.336012 2.235843 4.734614 2.508419 -1.832116 2.249997 -2.429630 -0.535839 1.616789 -0.234759 5.070632 3.355069 3.241318 3.288304 5.728251 -2.364869 -0.077712 2.085159 1.595083 -0.846772 2.705590 -1.828711 -3.896513 -2.264712 -0.348047 -7.251828 -2.629664 0.107370 8.697181 -4.697813 0.144857 1.325621 1.969528 4.646872 -3.280736 0.510133 -2.639422 -0.431299 -2.822143 6.994088 0.563731 1.223390 -0.954668 1.956178 1.786981 3.042769 -1.421297 -2.607040 -2.998521 -7.324847 -2.524413 -1.182597 0.699308 2.078279 -6.264659 -1.521805 1.047981 4.585710 -6.849847 -0.272497 3.280712 2.558947 3.136610 2.078496 -4.871117 0.680750 0.360716 0.063478 2.938563 -1.569178 0.377900 -1.641685 0.671535 0.155063 0.976617 0.556536 -6.578635 -2.315890 0.017210 -1.996806 0.470692 1.083469 2.405615 -2.592341 2.781611 -2.879331 3.402196 -7.056890 -0.579273 -1.805050 -4.936658 -0.765156 2.648740 4.535406 2.757053 -1.751336 -2.213828 -1.611008 -6.157064 -6.215851 1.058342 0.341119 1.695840 0.314370 -0.437801 1.176450 -2.035581 0.407983 2.635006 -2.077402 -0.515060 -1.043003 7.151271 0.230821 -0.900235 -3.596838 -1.455906 -0.704937 0.219820 3.360215 -0.795199 -5.231736 -7.035812 -2.940176 3.940511 -0.703976 0.016768 -2.706566 -0.845958 -4.088328 0.493912 -3.550742 0.679091 0.066419 -2.607415 -4.612339 0.129913 0.121501 -2.810968 -0.629596 -3.272186 -0.976185 4.701399 0.977161 1.419647 0.516035 0.494846 -4.203740 -4.029491 1.033730 -2.038754 4.023114 4.072970 -0.157498 -3.166201 -0.797870 -5.124150 3.945563 -2.686276 1.048645 -1.347457 -0.848478 5.226008 -3.281707 -1.841586 -4.166945 1.166967 0.680243 -7.223087 6.162468 3.327733 -1.847894 -0.219905 -0.410111 0.873729 2.944235 3.787257 -3.224580 -2.591900 0.630236 -1.143349 -0.228946 -1.128018 2.885187 -3.514399 1.251757 -2.395054 -1.282256 2.538884 2.985658 0.121254 1.790951 0.399013 -0.984672 1.896423 3.172987 3.294169 -2.136373 -3.227557 -7.719391 2.921823 -2.207007 -1.796028 -0.836708 -1.942639 -3.370299 1.081769 -0.815289 4.108601 0.930933 -1.644172 3.380057 -5.416771 -4.679154 -2.506511 1.086486 0.189030 -1.230233 0.795359 -1.692629 1.736069 2.180488 0.171468 0.073358 -3.841997 -2.379528 -0.300564 3.966290 0.594337 -0.364716 5.019330 1.422350 -1.975931 -1.135353 0.091024 -0.288307 -0.953929 -3.671140 -1.639208 -1.209445 1.467384 -2.331539 2.658757 -0.236296 -0.249725 2.572024 -PE-benchmarks/union-find.cpp__main = 2.859768 -0.288771 -0.174378 2.430259 0.167209 -3.863182 1.505790 3.015606 -0.768148 -4.300824 -2.128814 1.199477 0.259663 -2.659205 0.587547 0.506131 -0.933402 1.323856 -7.081856 2.937023 1.889844 1.519925 -1.428088 -2.948589 0.330796 -1.191344 -1.578163 2.607971 -0.691806 3.129585 -1.630041 -0.664756 2.218695 0.375270 1.328526 3.460910 0.650712 0.251581 2.031132 1.790164 4.411880 3.595235 -2.005039 0.835855 2.673724 3.345319 0.121902 2.088485 -3.586086 -1.394502 0.507485 -0.183359 -2.793369 -1.054845 -2.062297 1.207715 5.069804 2.908613 -1.884049 2.858196 -2.570291 -0.444154 1.657850 0.632811 3.960614 2.450631 1.418456 1.533089 5.984064 -1.342160 -0.345203 1.220766 3.008431 -1.643437 1.800480 -1.063681 -3.363850 -6.152014 0.465784 -6.861869 -1.619088 0.676734 4.483126 -3.177035 1.591210 2.811358 2.149153 2.781858 -3.320735 -1.523105 -2.044040 0.396640 -2.083692 8.422361 -0.324115 1.682253 -0.282832 2.403132 2.484765 2.476334 -0.608111 -2.199420 -2.983020 -7.311499 -1.342465 -1.132838 -1.726765 -0.626237 -4.433412 -1.844105 3.929688 3.320420 -5.262736 0.182692 2.887958 1.006228 1.719308 -1.496772 -2.743994 1.765457 -1.518708 -0.227646 1.355676 -2.232596 -1.097241 -0.823513 1.331349 0.948453 0.232663 -0.286131 -5.348534 -0.051035 0.875219 -1.635473 -0.170355 0.377836 -0.471895 -3.350563 1.114356 -4.145018 2.989053 -5.038092 1.105337 -1.249753 -3.478948 0.206089 1.512853 2.228481 -0.136437 -0.699047 -1.118043 -0.807468 -3.850261 -6.827519 1.719043 -0.474825 1.842991 -2.078415 -0.278200 -1.499363 -0.908207 -1.032211 1.443336 -1.932984 0.377574 -1.301890 6.752439 0.071447 -1.018058 -1.610821 -0.775702 2.849306 1.918203 0.918330 -1.904753 -3.206168 -3.927336 -2.740241 2.629135 0.077019 -1.065820 -1.967242 -0.386630 -4.010696 2.399176 -1.759436 2.406521 -0.856470 -1.165420 -3.245239 -0.322086 -0.438224 -0.272482 -1.487479 -1.819684 -0.725858 1.003095 -0.269278 0.256785 0.087889 1.339392 -3.530573 -3.693416 0.367391 1.010366 3.723340 1.939407 1.536027 -1.572480 0.448617 -3.864840 3.560534 -1.898828 0.058369 -0.645248 -2.251227 5.663362 -1.186316 -2.210199 -3.187497 1.648221 -0.269873 -0.215780 6.769355 3.507201 -2.496844 -1.454951 -1.056705 0.088337 3.132962 4.385913 -2.704948 -2.084040 1.323820 -1.296469 -0.884443 -0.522349 2.294585 -2.187568 3.548554 -2.477968 -1.396268 1.185815 3.421716 -0.478928 1.954487 -1.521441 -0.667258 -1.140336 3.016424 0.988784 -0.431767 -2.995065 -4.645929 1.659220 -2.677772 0.116283 -0.862149 -1.030628 -3.142389 0.348500 1.802558 3.931647 4.191252 -2.413807 2.135379 -4.239989 -3.971786 -1.494450 1.414994 0.567078 -2.187633 1.254118 -1.389017 0.887404 1.096035 1.162414 1.364095 -2.735365 -2.714002 -0.620010 2.005821 1.217289 -3.682301 3.922121 -0.188136 -1.109981 -0.855581 -0.355729 0.936474 0.688039 0.169692 -1.315331 -2.593320 1.798168 -1.234267 4.593454 0.412404 0.846724 2.633765 -PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 3.628150 1.314288 -4.120708 12.450276 -1.003309 -2.002862 -0.234931 2.801787 -3.285360 -19.170086 -10.832020 6.707252 2.355131 4.375145 3.002713 3.426493 -0.965914 0.812349 -20.442934 3.852841 8.417118 3.623712 1.747234 -0.352724 2.560979 -4.259300 5.052925 1.110757 3.399807 11.354341 -5.477264 6.865447 9.653432 -2.517123 3.784096 6.904278 -1.808616 1.696792 -4.579705 -0.618930 12.853298 5.788181 -0.359262 4.885252 -0.659313 10.879894 1.407238 5.833104 -0.650549 -9.435183 2.828556 4.622147 -4.899928 -2.466747 -4.962681 4.788989 7.757052 7.490606 -4.498800 2.571947 -2.317068 -1.812108 2.851394 -0.260451 10.440313 4.176406 8.978097 8.240382 9.936678 -6.367817 -0.439245 4.465418 0.116894 -0.169500 7.447210 -6.216972 -9.919653 -3.173820 -2.617921 -15.820045 -8.091350 0.601267 14.463449 -10.772169 0.384076 0.256167 0.331564 10.619071 -4.467473 1.525085 -7.992765 -2.422025 -3.633391 11.854180 1.687650 -0.435099 0.213716 4.362195 3.742241 6.409411 0.343498 -7.857767 -3.101284 -11.986628 -3.884056 -4.434032 6.070877 9.020700 -12.895268 -2.365001 -4.476899 10.722959 -16.084565 0.468855 6.312404 7.752811 9.022510 -0.144785 -7.702451 1.131751 2.439562 -0.128922 8.573601 -5.425413 2.247946 -1.625101 1.314571 -0.031647 2.549895 1.815682 -11.202245 -8.424786 -0.984113 -2.666502 1.028886 3.433840 7.736438 -4.461901 7.579775 -5.343843 8.300870 -13.084720 -1.480039 -2.463213 -8.676077 -3.876485 6.683610 8.807366 5.410763 -5.732056 -7.080767 -2.154164 -13.388558 -11.786898 1.611148 3.128019 2.583081 6.191006 -2.178814 7.302148 -6.067869 3.021181 4.910591 -2.831950 -2.424608 -0.328212 6.532497 0.973181 -0.802197 -6.622815 -3.201176 -4.824264 -0.082552 11.216688 -1.891809 -12.252285 -17.957341 -6.604568 9.441671 -3.811926 0.462980 -6.590150 -2.150664 -8.620510 0.434493 -10.779874 -0.537835 -0.066806 -6.495768 -10.967646 1.971230 -1.634642 -4.204203 1.498526 -7.650775 -2.679973 9.085888 3.395209 4.862319 -1.001275 0.573753 -9.251106 -6.580030 3.786558 -8.358532 8.691513 3.680775 -3.035518 -8.856539 -3.822692 -9.241211 7.901083 -1.686316 3.343901 -3.742229 -0.633483 9.235187 -6.782989 -0.008254 -8.215732 2.260933 4.610807 -16.549947 11.870095 6.642464 -2.231122 1.220483 3.021448 1.938924 5.903689 4.092966 -6.333494 -8.064187 0.312113 -2.473077 1.004505 -3.777599 5.646204 -8.197081 -0.238571 -5.574300 -3.293466 5.664555 4.340955 0.834614 3.129611 4.771684 -3.228504 3.767848 7.012909 8.837689 -1.979411 -6.782874 -15.786893 7.203743 -2.374943 -2.384698 -3.131595 -4.281119 -5.850540 3.812231 -2.209403 9.149581 2.616435 -4.480902 8.632859 -13.351601 -9.790413 -7.081049 -0.828305 0.127633 0.325548 -0.772356 -3.720622 5.223468 4.723097 -2.014617 -1.164728 -7.455157 0.160826 1.285638 8.832021 1.014839 3.877848 10.753650 4.114177 -5.310277 -1.861248 2.868943 -3.042882 -3.774874 -9.724450 -3.904694 0.406828 2.712626 -4.831701 0.763274 -3.734828 -2.272728 2.813614 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.461027 -0.102771 -0.162797 0.726879 0.145211 -0.156120 0.204322 0.310973 0.031172 -1.417851 -0.878530 0.418619 0.091123 0.032800 0.302385 0.227045 0.021944 0.389536 -0.787476 0.186798 0.420139 0.232266 0.050447 -0.128100 0.087835 -0.298113 -0.343445 0.130947 0.241265 0.863115 -0.374490 0.187354 0.703401 -0.070394 -0.132387 0.605121 0.413692 0.083316 -0.062597 -0.081752 1.029060 0.211886 -0.013138 0.579916 0.088738 0.786625 -0.367213 1.335182 -0.036743 -0.538022 0.687591 -0.671196 -0.464287 -0.011784 -0.508512 0.623528 0.896049 0.515823 -0.297026 0.412234 -0.262456 0.098434 0.189005 -0.483971 0.561947 0.881436 0.311014 0.514427 1.053596 -0.623299 -0.174431 0.469512 0.327791 0.132790 0.417640 -0.443079 -0.286081 -0.759167 -0.128800 -0.728755 -0.293132 -0.274295 1.600840 -0.903177 -0.045806 0.662044 0.143652 0.685855 -0.320745 0.239879 -0.614053 0.137862 -0.090951 1.015685 0.189737 0.106685 -0.445732 0.128994 0.251557 0.507003 0.017053 -0.312637 -1.111384 -1.330418 -0.698292 -0.272072 0.178991 0.299357 -1.188960 -0.174441 0.573138 0.685978 -1.226030 -0.035834 0.616081 0.622483 0.586686 0.706492 -0.887280 0.016518 0.257286 -0.076342 0.268263 -0.399132 -0.026973 -0.582479 0.013151 -0.100037 0.139321 -0.191051 -0.880731 -0.456888 -0.195543 -0.062820 0.157074 0.034611 0.359751 -0.604375 0.515592 -0.331873 0.443664 -1.173114 -0.332782 -0.192000 -0.909559 -0.227359 1.582853 0.537612 0.933626 0.000989 -0.636531 -0.681746 -0.842223 -1.138907 0.090269 -0.070906 0.585082 0.266374 -0.079352 0.207660 -0.310900 0.024269 0.107958 -0.373771 -0.024317 0.013845 0.949403 -0.406325 -0.129210 -1.045946 -0.138294 0.314713 -0.246348 0.351764 -0.152589 -0.674944 -0.905533 -0.670958 0.669313 -0.276524 0.275814 -0.346263 0.028238 -0.816799 0.044078 -0.524169 0.056420 0.193835 -0.910991 -0.930617 0.242602 -0.104534 -0.465802 0.281432 -0.666579 -0.032696 0.393176 0.459464 0.323522 0.129384 -0.068340 -1.097932 -0.979278 -0.294650 -0.472588 0.782115 0.652975 0.042190 -0.468389 -0.344041 -0.896274 0.728944 -0.994201 0.080739 -0.240153 0.029681 0.741144 -0.549825 -0.323040 -1.065316 0.276143 0.260211 -1.233200 0.954473 0.505436 -0.355936 -0.188788 -0.362004 0.114562 0.550255 0.905864 -0.538660 -0.393702 0.291332 -0.183092 -0.054805 -0.369249 0.572468 -0.498114 0.318931 -0.538882 -0.294635 0.248938 0.720377 -0.132546 0.352729 0.502512 0.257346 0.310554 0.619224 0.498802 -0.482378 -0.474428 -1.544395 0.509291 0.241628 -0.247047 0.201038 -0.811448 -0.371151 0.391055 -0.022766 0.758650 0.204129 0.348212 0.702517 -0.779811 -0.724798 0.071499 0.015015 0.213634 -0.397056 0.335307 -0.283165 0.162852 0.323803 -0.091405 0.064674 -0.631320 -0.611824 -0.064116 0.859686 0.113302 0.165698 0.857951 0.227415 -0.509625 0.088902 -0.107981 0.208716 -0.154981 -0.508009 -0.067476 -0.088327 0.066010 -0.405876 0.603763 -0.181730 -0.366829 0.343748 -PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = 4.268618 2.121193 -5.155973 12.836823 -1.257961 -2.180549 -0.107872 2.854011 -3.490803 -20.037067 -11.898954 8.956457 2.684088 4.501632 2.677168 4.188732 -1.366198 1.278918 -19.776609 4.108655 8.453734 3.598185 1.409488 -0.482331 2.527046 -4.311623 4.744341 0.632837 3.659190 11.933620 -5.500333 7.008555 10.188085 -2.652874 3.519645 7.300246 -1.905902 1.837235 -4.753394 -1.573389 13.105536 6.078911 0.241899 5.514426 -1.043217 11.249719 0.918602 7.424648 -1.031078 -9.874107 3.286428 4.385599 -5.668181 -2.014837 -4.956583 5.406689 7.267266 6.945669 -4.426983 2.658849 -2.308122 -1.768037 2.944887 -0.818416 10.597791 4.965187 8.857465 8.668894 10.412811 -6.825962 -0.497890 5.165817 0.243846 -0.144597 8.270363 -6.437794 -10.436025 -0.773837 -2.523083 -16.252205 -8.414979 0.515889 17.598268 -11.753039 0.012896 0.247185 0.827504 11.156104 -4.631320 1.940611 -8.178967 -2.301031 -4.271940 12.250558 2.082059 -0.169982 -0.778587 4.194235 3.783983 6.580226 -0.450976 -7.819018 -3.872582 -12.210991 -3.766724 -4.617138 6.241155 9.629285 -13.685700 -2.885646 -4.594509 12.714087 -17.109332 0.476766 7.158223 7.759694 9.954993 2.115785 -8.476035 1.556261 2.884775 -0.452355 8.777724 -5.197020 2.004571 -1.028310 1.172562 -0.585013 2.576971 1.998926 -13.414742 -8.951389 -1.025411 -3.101372 1.306523 3.502971 8.187914 -4.757944 8.014154 -5.039748 8.109747 -14.040585 -1.898129 -2.517713 -10.164191 -4.065236 7.696068 10.018116 7.020589 -6.212099 -6.485368 -3.181190 -14.202740 -12.137922 1.849575 2.756918 2.827173 6.299509 -1.904526 7.524755 -6.434419 3.446536 5.169171 -3.093441 -2.403962 -0.135981 8.715151 0.506572 -0.958318 -7.414689 -3.911110 -5.726699 -0.192412 11.350170 -1.752109 -13.871293 -18.769579 -6.982763 9.909874 -3.882665 0.931448 -6.975513 -2.194415 -8.252997 -0.439269 -11.141663 -0.153187 0.458111 -6.824519 -11.535452 1.983578 -1.341809 -5.543914 1.454678 -7.796424 -2.777520 10.433788 3.243789 4.995121 -0.654890 0.424264 -9.651892 -6.650611 4.018607 -9.033576 8.857766 5.542185 -2.994358 -9.778898 -4.104758 -10.421841 8.021986 -3.033792 3.437371 -4.285405 0.068214 9.898661 -7.613913 0.352849 -8.775415 2.487895 4.709026 -19.648757 11.734512 7.196050 -2.000063 1.501278 3.243064 1.823985 6.550963 4.643991 -6.712811 -8.350450 0.400553 -3.193536 1.034207 -3.346371 6.183298 -8.981303 0.026042 -5.461634 -2.999130 5.926532 4.457303 0.863001 3.222597 4.945946 -3.208599 5.045085 7.025350 9.381224 -2.784651 -7.621661 -18.013148 7.622743 -2.619670 -3.168331 -2.569440 -4.219760 -5.993936 4.312993 -3.774553 9.582179 0.499320 -4.670477 8.956786 -14.093295 -10.297208 -6.755858 -0.755949 0.180997 0.379937 -0.248523 -3.600401 5.316444 5.120725 -2.375914 -1.308464 -7.866775 0.029272 1.346505 9.951965 1.381248 4.517240 11.256873 4.180181 -5.407469 -1.754350 2.608096 -2.567922 -4.529375 -11.559724 -3.959766 0.473362 2.747050 -5.175254 1.110916 -3.556504 -2.775861 3.134398 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 1.297386 -0.434978 -0.509173 2.139957 0.452132 -0.473462 0.109280 0.563434 0.045675 -3.532691 -1.948661 1.881741 0.198257 0.332807 0.463882 0.824876 0.262266 0.375959 -2.680483 0.938714 0.929680 0.462114 0.052229 -0.331678 0.432851 -0.944569 1.101830 0.247089 0.681794 1.947847 -1.174523 0.764021 1.702269 -0.180427 0.904474 1.524754 0.348670 0.035790 -0.940713 -0.558224 2.837698 1.117748 0.175831 1.424257 0.381852 2.020888 0.294190 2.348742 0.808526 -1.431180 0.896923 -0.270251 -1.227645 -0.234783 -1.631478 1.349659 1.168735 0.754428 -1.162049 0.633102 -0.285671 0.011583 0.476814 -0.341728 1.872272 0.771056 1.320035 1.378199 2.294615 -1.418258 -0.454566 1.430749 1.170417 0.752357 1.873569 -1.434336 -1.733348 -0.579783 -0.357929 -1.879930 -0.820603 -0.436444 3.331893 -2.099321 0.069835 0.717883 -0.137451 1.809273 -0.751982 0.169719 -1.754572 0.105573 -0.276130 2.246604 0.297807 0.165299 -0.301111 0.590316 0.459965 1.457909 0.324200 -1.509041 -1.063266 -2.836040 -0.831811 -1.000651 0.873551 0.895293 -2.400273 -0.269761 -0.384216 2.477889 -2.764229 0.000946 1.379035 0.964991 1.961028 0.148447 -0.889742 0.039548 0.643055 0.177001 0.986018 -1.144886 -0.093656 -0.409237 0.522570 -0.081084 0.735970 -0.057834 -1.868793 -1.346826 -0.188888 0.302012 0.046505 0.177816 1.045384 -1.658331 1.361070 -0.657325 1.361121 -2.317058 -0.619655 -0.806639 -1.636807 -0.688793 3.233628 1.157747 2.294818 -0.397312 -0.975906 -1.012182 -2.250615 -2.708746 0.479437 -0.042425 0.554717 1.078707 -0.089412 1.023057 -0.950238 0.072766 0.525903 -0.949132 -0.381012 -0.050566 0.682350 -0.530660 -0.187560 -1.794334 -0.423297 0.099819 0.031600 1.461893 -0.486262 -3.330797 -2.613563 -1.610182 1.648388 -0.827818 0.542514 -0.811069 -0.302919 -1.282839 0.024267 -1.842541 0.448079 -0.087540 -1.690505 -2.120404 0.269680 -0.508568 -0.348819 0.413989 -1.470562 -0.065296 0.955116 0.884093 0.602503 0.363042 -0.067020 -2.566413 -1.755729 0.158915 -1.117979 2.193762 0.747830 -0.329123 -1.521570 -0.928344 -1.915266 1.451897 -1.952556 0.406599 -0.412126 -0.310575 1.767898 -1.222464 0.035001 -1.971355 0.806020 0.846342 -3.296379 2.145490 1.715674 -0.915689 -0.246289 -0.038917 0.339337 1.250644 1.831962 -1.217821 -1.192241 0.447829 -0.464895 -0.027382 -0.698355 1.281878 -1.194851 0.552449 -1.528733 -1.007878 0.736669 1.192408 0.002599 0.309410 0.946432 0.010228 0.528614 1.840298 1.439147 -0.022040 -1.963253 -4.106690 1.244276 0.669316 -0.424702 0.412579 -1.307149 -1.094205 0.652627 -0.665920 1.903700 0.284988 0.076959 1.732282 -2.391403 -1.921982 -0.533421 -0.434064 0.173393 -0.352101 0.670586 -0.962079 0.434273 0.205788 -0.192117 -0.536265 -0.829066 -0.144166 0.257916 1.722864 0.797919 0.680630 1.976670 0.786944 -1.157076 -0.022672 0.318684 -0.073250 -0.409616 -2.080227 -0.728211 -0.271378 0.297201 -0.861926 0.770223 -0.408334 -0.155216 0.273094 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.624571 0.266075 0.624684 0.187877 0.287156 -0.766594 0.533861 1.078233 -0.193301 -1.295642 -1.009113 -0.392693 -0.156872 -0.591581 0.442044 -0.173531 -0.028837 0.779273 -1.636756 0.488829 0.743391 0.827496 0.278179 -0.797928 0.252957 -0.054213 -1.563256 0.384057 0.106207 0.892820 -0.549635 -0.455497 0.610461 0.254422 -0.099929 0.899244 0.540599 0.003632 1.023202 0.184442 1.220590 0.473504 -0.158070 0.615940 0.759999 0.770969 -0.596161 0.757612 -0.844662 -0.466180 0.441729 -1.640777 -0.726713 0.015535 -0.326577 0.687726 1.645539 1.212201 -0.409853 0.863161 -0.264898 0.011962 0.231748 -1.015934 0.385582 1.224811 -0.361814 0.177320 1.597517 -0.404038 -0.255493 0.276854 0.687230 -0.206503 -0.364299 -0.599447 0.172592 -2.394874 -0.053925 -1.951697 -0.186961 -0.190259 1.744128 -0.888968 0.818373 1.376189 0.136727 0.379631 -0.347083 -0.449247 -0.461499 0.325257 -0.346316 1.397768 -0.219901 0.137667 -0.162394 0.251286 0.675820 0.691576 -0.266414 0.010711 -1.834043 -2.072085 -0.455387 0.015705 -0.265916 -0.208553 -1.074963 -0.504064 1.449071 0.497503 -1.367133 -0.193348 0.835391 0.666813 -1.027746 0.334403 -1.207050 -0.019679 -0.425843 -0.105233 0.019720 -0.762126 -0.431651 -0.826306 -0.420247 0.021028 0.128454 -0.472403 -0.773097 -0.419426 -0.339620 -0.410821 -0.131783 -0.188348 -0.251224 -0.583538 0.384394 -0.941189 0.536160 -1.214639 0.132643 -0.176140 -0.924116 0.018239 1.332157 0.271840 -0.062342 0.288751 -0.458790 -0.772383 -0.460200 -0.880729 0.570133 -0.286994 1.372168 -0.329790 -0.020404 -0.487428 -0.070377 -0.662706 -0.382318 -0.359775 0.318552 -0.434295 1.920058 -0.597634 -0.214130 -1.248251 0.204432 1.447600 -0.486293 -0.548169 -0.616189 0.669864 -0.486415 -0.929062 0.664785 -0.014424 0.100696 -0.341042 0.518794 -0.799083 0.590729 -0.428970 0.322421 0.022637 -0.884229 -0.901765 0.067683 -0.213242 -0.300622 0.081078 -0.331825 -0.132603 0.309930 0.721509 0.106680 0.009723 0.231734 -1.269852 -1.313213 -0.797234 0.224863 0.481221 0.694907 0.469435 -0.727461 0.003597 -0.712029 1.106812 -0.413147 -0.229245 -0.501174 -0.064265 1.388764 -0.161722 -0.278995 -1.384530 0.277656 0.212535 -1.109980 1.177890 0.320371 -0.581361 -0.597022 -1.085937 -0.071702 0.890244 1.321969 -0.375521 -0.350349 0.565203 -0.689935 -0.204245 -0.891877 0.713208 -0.400990 1.161949 -0.664990 -0.385291 0.219379 1.000450 -0.266000 0.955606 0.335013 0.801174 0.118422 0.869573 0.182940 -0.681126 -0.498146 -1.172734 0.514962 1.055436 0.512939 -0.044727 -0.554313 -0.818427 0.202124 0.923970 0.921013 1.693398 0.450028 0.603079 -0.443062 -0.810646 0.415038 0.674419 0.524311 -0.934267 0.013442 -0.274160 0.136235 0.551186 0.150517 1.030914 -0.874750 -1.858327 -0.449164 0.955117 0.373868 -0.524460 1.014811 -0.104877 -0.601663 0.383246 -0.251499 0.993280 -0.087954 0.590226 -0.142620 -0.625004 0.028007 -0.342291 1.503132 -0.033609 -0.272506 0.739106 -PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 1.192092 -0.631424 -0.177281 1.033459 0.500383 -1.094043 0.353919 0.623332 0.056836 -1.694088 -0.774952 0.735626 0.027756 -0.871280 0.302697 0.398435 0.061888 0.315001 -1.487727 1.020619 0.290187 0.278585 -0.694478 -0.617904 0.137639 -0.561988 -0.155521 0.677435 -0.122771 0.976756 -0.678825 -0.014831 0.770754 -0.010516 0.476533 1.086897 0.490312 -0.048670 0.408081 0.462327 1.874383 0.687311 -0.109645 0.721264 1.023979 1.131171 -0.258756 2.124637 -0.088366 -0.393301 1.045465 -0.339780 -0.764966 -0.115940 -1.234932 0.788542 1.500601 0.358370 -0.846190 0.754096 -0.626633 0.075134 0.477186 0.155945 1.471101 1.098157 0.566759 0.628897 2.217318 -0.457132 -0.283007 0.809041 1.443070 0.119038 0.996403 -0.712758 -0.946385 -1.404382 -0.031531 -1.044856 -0.045295 -0.372748 1.877050 -1.113015 0.100103 0.981677 0.578479 1.057509 -0.884476 -0.212725 -0.913498 0.383525 -0.375287 2.395213 -0.211125 0.732922 -0.516092 0.442165 0.351292 0.922621 -0.086638 -0.853130 -1.225453 -2.509109 -1.130213 -0.462878 -0.445271 -0.423035 -1.983259 -0.232891 0.819228 0.949776 -1.721387 -0.036757 0.824278 0.287979 1.308193 0.372109 -1.009493 0.013673 0.011135 0.198653 -0.002827 -0.384051 -0.383316 -1.157921 0.541503 0.264113 0.222431 -0.429129 -1.477406 -0.013306 -0.002664 0.020991 -0.037574 -0.057553 0.031027 -1.581898 0.487348 -0.813456 0.777210 -1.873366 -0.514718 -0.860188 -1.295149 -0.007641 1.908430 0.511994 1.284981 0.144692 -0.676924 -0.724965 -1.533711 -2.362623 0.182495 -0.786589 0.487234 -0.247698 0.030904 -0.362013 -0.220691 -0.505030 0.486194 -0.849207 -0.009524 -0.624348 1.414994 -0.425587 -0.221661 -1.054985 -0.338621 1.062360 0.426084 0.363599 -0.444320 -1.864169 -1.277943 -1.053859 0.801446 -0.160301 0.178646 -0.515200 -0.050439 -1.500623 0.502472 -0.654183 0.483279 -0.364329 -0.826344 -1.135632 0.001492 -0.212801 0.006558 -0.420584 -0.875814 0.083617 0.181904 0.504682 0.249067 0.341418 -0.129884 -1.858508 -1.730169 -0.159134 0.275051 1.626117 0.678709 0.430145 -0.290347 -0.223586 -1.586388 1.037659 -1.857164 -0.046952 0.384955 -0.695029 1.612384 -0.663220 -0.745796 -1.349881 0.572195 -0.194094 -0.822796 2.133995 1.105326 -1.165618 -0.617608 -0.735055 0.281715 0.885484 1.799233 -0.749690 -0.319608 0.528869 0.048426 -0.358736 -0.408362 0.919146 -0.642214 1.256572 -1.145566 -0.815906 0.380571 1.420973 -0.317971 0.109837 -0.362642 -0.019069 -0.235977 1.240448 0.430421 0.001328 -1.040103 -2.401519 0.321416 -0.355886 -0.235079 0.367097 -0.996411 -0.886669 0.120382 0.195003 1.526134 0.583973 0.240896 0.861232 -1.458214 -1.369295 -0.108753 0.159563 0.126815 -0.777683 0.751350 -0.735111 -0.070069 0.076866 0.482829 -0.015931 -0.805912 -0.826006 -0.132791 0.770543 0.423483 -0.767887 1.249880 0.277679 -0.409385 -0.157956 -0.021091 0.434861 0.300548 -0.505715 -0.416196 -0.868297 0.263241 -0.472023 1.612095 -0.034597 0.463648 0.563352 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = 0.772855 0.048128 -0.096973 0.896058 0.188996 -0.614869 0.185720 0.570574 -0.340721 -1.696188 -1.209222 0.819197 0.006294 -0.310547 0.371661 0.288633 0.025941 0.167555 -2.166230 0.686619 0.584671 0.157217 -0.144078 -0.354598 0.203538 -0.584630 -0.101133 0.573534 -0.037305 0.964716 -0.635727 0.345935 0.760524 0.218565 0.570976 0.829306 -0.322566 -0.195528 0.218619 0.013529 1.516291 0.745380 -0.150890 0.491086 0.585142 1.054468 -0.183585 0.795723 0.065363 -0.540840 0.412563 0.030655 -0.790889 0.062739 -0.862439 0.455077 0.814970 0.270293 -0.510731 0.519534 -0.626400 -0.033418 0.290820 -0.336315 1.350970 0.516385 0.736929 0.530115 1.401320 -0.518007 -0.147860 0.604787 0.780515 0.027769 0.353743 -0.287848 -0.736440 -1.131153 -0.021138 -1.897452 -0.475825 -0.133999 1.757272 -0.859581 0.002529 0.433344 0.222810 1.028955 -0.704125 -0.061480 -0.856602 0.173083 -0.367428 1.450576 0.105451 0.270040 -0.130322 0.395660 0.415918 0.825561 -0.327267 -0.650258 -0.885929 -2.132399 -0.458619 -0.321619 0.130125 0.022737 -1.445292 -0.051558 0.617845 1.511140 -1.404798 -0.174761 0.737718 0.341711 0.082691 0.091709 -0.947964 -0.078132 0.022307 0.348826 0.550914 -0.405375 -0.056235 -0.558897 0.321045 0.031372 0.466369 -0.066697 -1.168585 -0.541957 0.186569 -0.232347 -0.037597 0.094786 0.312531 -0.499155 0.570152 -0.608578 0.818495 -1.395170 0.161863 -0.693563 -0.734946 -0.091037 1.017041 1.324421 0.529807 0.082195 -0.137477 -0.299291 -1.278890 -1.565296 0.288318 -0.215705 0.530820 -0.181478 -0.044233 0.165459 -0.336768 -0.106211 0.312886 -0.663041 -0.088455 -0.445129 1.217329 -0.014714 -0.241866 -0.779145 -0.244270 0.413727 -0.162037 0.432674 -0.339468 -1.286588 -1.303095 -0.984879 0.799738 -0.259238 0.009057 -0.604574 0.093561 -0.752608 0.350272 -0.670404 0.143290 -0.077732 -0.786202 -1.010583 -0.145377 -0.153070 -0.435733 -0.234316 -0.699557 -0.116313 0.878435 0.294662 0.374052 0.208812 -0.052577 -0.937194 -0.988636 -0.006319 -0.182349 0.941465 0.895740 -0.008093 -1.089060 -0.275135 -1.161852 1.094663 -0.777967 0.138467 -0.275386 -0.653723 1.208241 -0.564506 -0.343968 -0.645015 0.420729 0.062480 -1.859139 1.428858 1.020040 -0.728745 -0.414653 -0.586693 0.244782 0.756425 1.276127 -0.628551 -0.226650 0.119810 -0.188069 -0.146076 -0.134097 0.866294 -0.599501 0.528436 -0.853919 -0.635665 0.587756 0.804695 -0.008127 0.403909 0.018924 0.322881 0.479903 0.866786 0.478593 -0.296138 -0.879005 -2.128334 0.444111 0.257494 -0.161629 0.291770 -0.501224 -0.981353 -0.052591 -0.373139 1.210316 0.210971 -0.333746 0.769074 -0.874400 -1.036927 -0.505208 0.124016 -0.073463 -0.424296 0.592597 -0.444426 0.061055 0.261893 0.149231 0.132652 -0.740565 -0.802934 -0.053113 0.765692 0.651614 -0.254926 1.038495 0.355916 -0.580076 -0.304059 0.005519 0.076177 0.052825 -0.772041 -0.520385 -0.517070 0.214419 -0.376738 0.768873 0.131281 0.295452 0.362451 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = 0.862950 0.121054 -0.122627 1.066507 0.150997 -0.962304 0.263271 0.690704 -0.454570 -1.828620 -1.316551 1.812848 -0.077786 -0.442402 0.168331 0.114611 -0.043377 0.170685 -2.496660 1.014178 0.520933 0.303635 -0.360108 -0.534923 0.239733 -0.566656 0.303154 0.860781 -0.017782 1.056361 -0.703806 0.113728 0.825467 0.221409 0.827669 1.095667 -0.245413 -0.124622 0.085625 -0.177672 1.772263 0.998640 -0.039355 0.831995 0.888625 1.218742 0.119510 0.805988 0.679254 -0.665123 0.201154 0.583752 -1.013826 -0.198477 -0.963877 0.515627 0.595869 0.139375 -0.776673 0.603574 -0.511015 -0.330288 0.330797 -0.227826 1.440155 0.446077 0.670697 0.566818 1.677413 -0.608435 -0.369639 0.921132 1.261184 0.263852 0.564855 -0.372960 -1.333765 -0.891856 -0.061111 -2.329446 -0.819761 -0.063866 2.126262 -1.032773 0.147170 0.317982 0.087312 0.993464 -0.805833 -0.331686 -1.009218 0.053489 -0.464812 1.634140 0.126829 0.237485 0.112176 0.449947 0.601054 1.192596 -0.529424 -0.878663 -0.613410 -2.523766 -0.167489 -0.394502 0.042223 -0.062676 -1.398153 -0.308275 0.426307 2.153920 -1.571476 -0.334412 1.066254 0.096271 -0.030661 -0.118128 -0.803563 0.111467 0.100152 0.193515 0.877507 -0.448056 -0.263896 0.053438 0.379257 -0.032917 0.477520 0.083543 -1.421717 -0.839582 0.251098 -0.000252 -0.186911 -0.229174 0.070322 -0.606996 0.674915 -0.623662 0.990872 -1.440722 0.270449 -0.723697 -0.615553 -0.075578 0.987374 1.419140 0.837175 -0.205220 0.106034 -0.324972 -1.341117 -1.799199 0.757451 -0.315941 0.465064 -0.302047 0.020855 0.194173 -0.349736 -0.310217 0.399232 -0.669430 -0.024902 -0.438685 1.124236 0.004902 -0.157343 -0.835310 -0.279239 0.257823 0.172945 0.365328 -0.552459 -2.295036 -1.307621 -1.085111 0.899674 -0.140628 -0.148723 -0.525606 -0.128192 -0.404530 0.323867 -0.894745 0.301280 -0.332403 -0.798883 -1.073401 -0.256249 -0.238940 -0.395601 -0.399833 -0.655858 -0.251455 0.915258 0.353038 0.372345 0.244703 0.076878 -1.124954 -0.904847 0.123808 -0.041214 1.073941 1.021047 0.143776 -1.543012 -0.234497 -1.368330 1.087289 -1.094476 0.103063 -0.260760 -0.926859 1.722454 -0.553505 -0.131723 -0.545522 0.582850 0.337055 -2.613146 1.587607 1.401454 -0.718692 -0.485914 -0.171190 -0.072710 1.156593 1.489837 -0.885132 -0.445757 0.220244 -0.390852 -0.122197 -0.059981 1.035457 -0.631024 0.835019 -0.959811 -0.803963 0.625137 0.797240 0.140242 0.319872 -0.191520 0.268773 0.457138 1.138096 0.530864 -0.027476 -1.229453 -2.635018 0.712146 0.434087 -0.145569 0.613823 -0.440669 -1.254543 0.002439 -0.729833 1.388171 -0.359902 -0.723113 0.840379 -1.106279 -1.237416 -0.603397 -0.012876 -0.083875 -0.355388 0.981840 -0.537255 0.131401 0.159484 -0.002551 -0.021543 -0.345183 -0.653127 -0.045894 0.562153 1.047441 -0.185700 1.198862 0.194239 -0.814439 -0.297486 0.015728 0.135926 -0.145876 -1.241794 -0.639196 -0.797039 0.389028 -0.308248 0.880288 0.190316 0.484899 0.397711 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = 5.723349 -1.400854 -1.420238 4.897802 1.746091 -4.880092 1.031976 2.991162 -0.513056 -7.957626 -4.634570 7.050316 0.146673 -3.311506 0.799557 1.861105 0.153944 0.565333 -9.202141 4.997855 1.435907 0.817271 -3.182712 -2.653264 0.827277 -2.715575 1.424298 3.144279 -0.507329 4.310699 -3.162147 0.654064 3.458810 0.259327 3.291857 4.729650 -0.393351 -0.777984 0.970850 0.344862 8.342996 4.272444 -0.105459 3.758369 4.469403 5.167135 -0.574240 7.872758 1.685036 -2.096614 3.179712 2.104794 -4.405826 -0.386691 -5.417344 3.029538 4.534398 -0.122111 -3.526900 2.757789 -2.439881 -0.367659 1.986360 0.595363 7.168879 3.560121 3.455227 2.793067 9.162553 -2.045245 -1.309521 4.114189 6.555047 1.266314 4.712487 -2.867458 -5.766986 -2.873295 -0.058761 -6.945525 -1.348164 -1.632395 9.526665 -4.751631 0.093096 2.088162 2.442670 5.157073 -3.991003 -0.976548 -4.135414 1.334752 -2.435784 10.024080 -0.620915 3.223963 -1.466247 1.821689 1.561745 4.636062 -1.300414 -4.301487 -3.383309 -10.778785 -3.048220 -2.225764 -1.049501 -1.111054 -8.217794 -0.481917 1.432673 7.101547 -7.324517 -0.972279 3.894452 0.268510 5.080392 1.623707 -4.073868 -0.123266 0.349406 1.296719 1.091485 -1.447587 -1.636435 -2.799569 2.343730 0.657955 1.659802 -0.757094 -7.628579 -1.246967 0.740252 0.025086 -0.191616 -0.190479 0.723182 -5.744013 2.358182 -2.877799 3.622843 -7.856993 -1.676299 -4.141484 -4.513920 -0.203292 5.937239 4.544315 5.633100 -0.018808 -0.529537 -2.607803 -7.236594 -9.485037 1.411796 -3.208744 1.325407 -1.246090 0.364972 -0.493364 -1.382815 -1.803824 2.426847 -3.800081 -0.294250 -2.980153 6.614042 -0.984277 -0.647758 -3.707015 -2.054050 2.356401 1.889555 2.176003 -1.759051 -11.191262 -6.583477 -4.766440 3.714913 -0.897139 0.174533 -2.713435 -0.469800 -4.139894 1.236473 -3.255056 1.751309 -1.620986 -3.322855 -4.844098 -0.628084 -0.836629 -0.697157 -2.450230 -3.848427 -0.092030 3.055112 2.131403 1.303785 1.619875 -0.784704 -7.136451 -6.098651 0.548100 0.720152 6.776606 4.019766 1.014421 -3.670123 -1.109776 -7.267352 4.500411 -7.698266 0.294422 0.771008 -3.553449 7.280004 -3.063497 -2.130837 -4.500789 2.592905 -0.550086 -7.442013 8.953449 5.562441 -4.667602 -2.375404 -2.214297 1.044913 4.234925 7.330637 -3.672480 -1.833151 1.592870 -0.325223 -1.360579 -0.545796 4.430808 -3.072038 4.817104 -4.905842 -3.729899 2.345035 5.089929 -0.627275 0.253472 -1.956121 -0.312702 0.907929 5.262407 2.459636 0.230642 -5.570123 -12.432265 1.727071 -1.282112 -1.481551 1.946938 -3.222720 -5.120448 0.115289 -1.715100 6.803409 -0.769719 -0.761203 3.602783 -6.479386 -6.070063 -1.756112 0.264484 -0.096474 -2.041717 3.847700 -3.147180 -0.275408 0.279173 1.565196 -0.825048 -3.132558 -2.402309 -0.030701 3.211111 3.242283 -2.518277 5.351105 1.787801 -2.175546 -1.347655 -0.007564 0.978607 0.322080 -4.676325 -2.301634 -3.786084 1.297698 -1.755303 5.854311 0.927394 2.836598 1.655075 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = 4.709034 -0.815634 -0.881190 3.486600 1.326025 -4.310230 0.911348 2.836943 -0.704880 -6.256237 -3.999220 4.763728 0.021597 -3.139275 1.000425 1.468802 -0.031168 0.562464 -7.876711 4.301326 1.481143 0.904906 -2.428753 -2.311022 0.820084 -2.060764 -0.209926 2.427871 -0.626549 3.395221 -2.634055 0.425670 2.665797 0.343416 2.511893 3.754524 -0.794037 -0.754906 1.926694 0.711064 6.630117 3.403965 -0.026319 2.769651 3.916781 3.982427 -1.183018 6.286316 0.655009 -1.601402 2.968482 0.843397 -3.593769 0.158774 -4.079819 2.416207 4.099978 0.114869 -2.674859 2.347486 -2.321600 -0.230785 1.575608 -0.049535 5.871179 3.352975 2.477588 1.998071 7.560226 -1.154687 -0.883387 3.049937 5.226579 0.537688 3.016845 -2.343167 -3.959806 -3.292306 -0.023894 -6.243096 -0.874337 -1.330450 8.009016 -3.746685 0.396304 2.000340 2.180142 4.121850 -3.232471 -0.938385 -3.039134 1.281455 -2.186070 7.926255 -0.894638 2.700248 -1.319013 1.400750 1.313791 3.591694 -1.535527 -2.999956 -3.649815 -8.953395 -2.588755 -1.381003 -1.040764 -1.174149 -6.961418 -0.336315 1.820970 5.278557 -5.960651 -0.813118 3.129182 0.314492 3.020227 2.007648 -4.001039 -0.441659 -0.102901 1.377060 0.595018 -1.037825 -1.419700 -3.270362 1.595727 0.656931 1.324768 -0.941267 -6.090564 -0.865778 0.448193 -0.461580 -0.261764 -0.042013 0.443226 -4.350443 1.803321 -2.511607 2.790784 -6.586166 -1.259376 -3.597245 -3.737004 0.111862 4.789733 4.053183 3.849216 0.355554 -0.376643 -2.189567 -5.817626 -7.019499 0.965717 -3.052246 1.696252 -1.496619 0.408619 -0.869116 -0.731069 -1.657087 1.482183 -3.092936 0.019225 -2.933313 6.182909 -0.848287 -0.622511 -3.225964 -1.696499 2.489356 0.867631 1.120992 -1.412089 -7.712694 -5.154179 -3.944940 2.881697 -0.507171 0.245708 -2.406215 0.272784 -3.447507 1.241121 -2.424136 1.193467 -1.218257 -2.625902 -3.725507 -0.715457 -0.525242 -0.724358 -2.404803 -2.781661 -0.170103 2.867090 2.106250 1.123420 1.343542 -0.755475 -5.705147 -5.203073 0.033253 0.880807 5.116679 3.643853 0.935513 -3.072395 -0.648771 -5.888828 3.893677 -5.811285 -0.029797 0.455878 -2.840559 6.114808 -2.321710 -1.814329 -3.791621 1.875720 -0.874196 -6.512606 7.089841 4.103634 -3.892874 -2.033939 -2.684300 0.993164 3.504697 6.004293 -2.448382 -0.970730 1.170108 -0.395074 -1.203520 -0.711355 3.732799 -2.659172 4.259673 -3.796505 -2.906040 2.051037 4.258757 -0.621273 0.485889 -1.851185 0.275360 1.047091 3.979708 1.737534 -0.439549 -4.213775 -9.925386 1.099693 -0.274409 -0.894721 1.449296 -2.460969 -4.353707 -0.266184 -0.924822 5.583542 0.163011 -0.223008 2.660949 -4.748056 -4.829836 -1.236331 0.964753 -0.143906 -1.970208 2.733965 -2.379679 -0.373691 0.693677 1.548209 0.157967 -3.082879 -3.193966 -0.354028 2.808674 2.691100 -2.469741 4.219728 1.431887 -1.648252 -1.077858 -0.049042 1.250099 0.278070 -2.949806 -1.910874 -3.333413 0.812373 -1.402412 5.251095 0.876562 2.368811 1.547446 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.702479 -0.114557 -0.287387 0.523808 0.224145 -0.679881 0.136200 0.289171 -0.174682 -0.881894 -0.611023 0.355401 0.043218 -0.652220 0.296002 0.363321 0.045472 0.150333 -0.663973 0.650543 0.156313 -0.000505 -0.622454 -0.192459 0.041377 -0.358150 -0.492023 0.287740 -0.214251 0.484494 -0.351275 0.201469 0.372523 0.005583 0.307168 0.519534 -0.113396 -0.118731 0.584219 0.361292 1.018591 0.254794 0.144169 0.298997 0.635468 0.566700 -0.552963 1.305696 -0.288307 -0.135636 0.876591 -0.166338 -0.349303 0.253549 -0.713923 0.369503 0.696163 -0.106049 -0.402974 0.397667 -0.593661 0.126664 0.258934 -0.020943 1.048865 0.766945 0.330017 0.366045 1.196047 -0.015266 -0.021466 0.399427 0.736174 -0.085243 0.306422 -0.166147 -0.278718 -0.482638 -0.058294 -0.583449 0.167661 -0.240056 1.470389 -0.541211 -0.131247 0.425526 0.500630 0.681977 -0.545964 -0.061331 -0.438997 0.265430 -0.379163 1.040358 -0.144825 0.550267 -0.512413 0.146162 0.034871 0.383677 -0.474322 -0.387454 -0.925594 -1.427695 -0.839461 -0.128353 -0.298067 -0.353122 -1.341568 -0.041448 0.525725 0.637082 -0.954411 -0.038730 0.342448 0.042730 0.503347 0.848299 -0.995867 -0.200978 0.000000 0.362709 -0.092603 0.145289 -0.146053 -1.159530 0.242896 0.101783 0.195941 -0.276918 -0.971287 0.089342 0.018603 -0.234052 -0.039846 0.087892 0.095114 -0.688020 0.254700 -0.330319 0.343804 -1.210779 -0.384070 -0.765818 -0.935035 0.095438 1.025551 0.793324 0.798721 0.216941 -0.244482 -0.407515 -1.100521 -1.118321 -0.076384 -0.746288 0.337136 -0.320459 0.086451 -0.310244 -0.046146 -0.206884 0.353403 -0.563355 0.004621 -0.589009 1.215490 -0.170572 -0.218222 -0.666190 -0.352752 0.518810 0.005382 0.101013 -0.161598 -0.831965 -0.800204 -0.545806 0.378153 -0.052294 0.218103 -0.374830 0.144203 -0.829648 0.189412 -0.281510 0.052256 -0.193057 -0.335116 -0.547928 -0.116859 0.019571 -0.309298 -0.513616 -0.414802 0.090799 0.615035 0.279818 0.220944 0.300735 -0.285564 -0.785760 -0.963474 -0.071799 0.170372 0.730923 0.902953 0.218827 -0.256785 -0.091092 -1.086190 0.611539 -1.050183 -0.049480 0.345098 -0.426063 0.849845 -0.503895 -0.509363 -0.591623 0.226797 -0.406385 -1.191218 0.948449 0.528569 -0.771120 -0.333381 -0.765850 0.363113 0.406904 1.013198 -0.174833 0.228679 0.173000 0.123332 -0.224063 -0.160347 0.562107 -0.427717 0.688980 -0.599524 -0.397004 0.458938 0.793461 -0.204308 -0.052264 -0.437922 0.113934 0.276609 0.513111 0.226693 -0.252195 -0.472883 -1.508697 -0.035447 -0.226403 -0.250565 0.301526 -0.410448 -0.518378 -0.163134 -0.272527 0.897663 -0.096159 0.179063 0.399097 -0.628446 -0.756044 -0.114381 0.321043 -0.056085 -0.510491 0.462310 -0.375000 -0.163236 0.146478 0.465297 0.129484 -0.706015 -0.803785 -0.104034 0.514128 0.249753 -0.487959 0.613763 0.229704 -0.112868 -0.217063 0.005486 0.311731 0.218109 -0.522808 -0.354334 -0.572920 0.075889 -0.306713 0.981094 0.043289 0.449700 0.420038 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.998261 0.053847 1.108659 0.055126 0.747504 -0.296631 0.487455 1.220079 -0.551997 -1.653598 -1.768641 -1.126226 -0.394194 -0.529270 1.013600 -0.170832 0.644685 0.016200 -2.415953 0.265523 0.706949 0.205487 0.167033 -0.143565 0.340466 -0.609903 -2.039734 0.835165 -0.165616 0.796097 -0.618562 -0.103586 0.566400 0.514160 0.434090 0.868062 -0.239090 -0.409060 1.491738 0.203250 1.902283 0.214318 -0.054625 0.573341 1.221974 0.933313 -1.439619 1.494220 -0.681550 -0.325097 1.591632 -2.552285 -0.734242 0.604885 -0.957188 0.478665 2.030131 0.731125 -0.662321 0.920130 -0.809551 0.288782 0.000232 -1.271295 1.009716 1.311840 0.250694 0.020083 1.404703 -0.460049 -0.400314 0.672933 0.684725 0.163689 -1.762547 -0.834294 1.079215 -3.022422 0.384580 -2.129173 -0.021318 -0.783680 2.057218 -0.342094 0.188906 1.358611 -0.366409 0.427035 -0.454204 -0.235812 -0.779791 0.500550 -0.091092 0.844825 -0.574618 0.192410 0.292658 0.086875 0.496191 1.079689 -0.734468 0.091703 -2.742774 -2.682062 -0.939185 0.254209 0.263870 -0.596501 -1.222131 -0.014604 1.720129 -0.185053 -0.847577 -0.398548 0.597589 0.870750 -1.777044 1.662190 -2.035424 -1.194420 -0.228558 0.677953 0.197962 -0.200356 0.060543 -2.459482 -0.111395 0.143542 0.571455 -0.683112 -0.744355 -0.404669 -0.134361 -0.731595 -0.394671 -0.310678 -0.206811 -0.031452 0.604018 -0.651978 0.718831 -1.771270 0.153261 -1.162982 -0.877158 0.190364 1.904394 1.434755 -0.002879 1.419095 -0.361540 -0.495684 -0.691332 -0.668279 -0.118395 -0.405526 1.855786 -0.716579 -0.038851 -0.190845 -0.012741 -0.810271 -0.798980 -0.482801 0.177649 -1.212434 1.877420 -0.401467 -0.437274 -1.270510 0.606404 1.761980 -1.700491 -0.484423 -0.571930 0.850804 -0.491066 -1.264844 0.573815 -0.144588 0.244712 -0.136143 1.028537 -1.237793 0.717091 -0.421067 -0.136578 -0.154536 -1.489355 -0.856938 0.129860 -0.221611 -0.332182 0.078671 -0.373578 -0.115358 1.038563 1.556296 0.560166 0.395529 -0.297406 -1.225411 -1.795130 -1.240719 0.292312 0.770512 1.200125 -0.070633 -0.487844 -0.238482 -0.876110 1.445105 -0.093244 -0.300892 -0.365262 -0.600896 0.972684 -0.223751 -0.297733 -1.255750 0.169153 0.119786 -2.327842 1.139809 0.335279 -1.110930 -1.248455 -2.372683 0.227583 0.539305 1.658551 0.193922 0.499423 0.271189 -0.202332 -0.229171 -0.890528 0.994595 0.086681 0.881656 -1.287699 -1.059145 0.798929 1.170205 -0.265315 1.086679 0.491235 1.830399 0.817191 1.274274 -0.128764 -1.132678 -0.170295 -2.281396 0.227359 2.394246 0.184079 0.206004 -0.812883 -1.411813 -0.606459 0.712446 1.181846 2.026140 0.990758 0.793950 0.466917 -0.753191 -0.033937 0.803081 0.146934 -1.269857 -0.245335 -0.356139 -0.112871 0.449306 0.296572 1.481108 -1.268625 -3.118769 -0.766562 1.039450 0.515366 -0.331271 0.947757 0.218910 -0.571915 0.003164 0.100354 1.143935 0.897020 0.448739 -0.602164 -0.993974 -0.360945 -0.270882 1.088901 0.543823 0.333026 0.794774 -PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 1.664717 -0.471327 -0.122284 1.334573 0.823396 -1.287013 0.315717 0.813751 -0.031615 -2.372045 -1.401560 1.782078 -0.080485 -0.976685 0.326335 0.484289 0.324626 0.318916 -2.308756 1.358337 0.343227 0.305802 -0.805377 -0.735294 0.286825 -0.776167 0.232375 0.823543 -0.054713 1.225918 -1.035143 0.130656 0.987735 0.165585 0.975626 1.369486 0.184720 -0.335463 0.338685 -0.010161 2.639200 0.953622 0.206963 1.322202 1.442725 1.486823 -0.302910 2.512970 0.757189 -0.541165 1.070971 0.019259 -1.167678 0.018458 -1.785782 1.096803 1.340590 -0.051767 -1.154329 0.814877 -0.446605 0.033743 0.512384 -0.156106 1.944083 1.130333 0.755588 0.778790 2.759554 -0.617784 -0.462454 1.237107 2.097969 0.627348 1.227772 -0.934383 -1.264091 -1.043053 -0.124645 -1.706751 -0.032587 -0.718081 2.831494 -1.350006 0.105854 0.895600 0.482420 1.390506 -0.939518 -0.350599 -1.315845 0.544162 -0.533571 2.539976 -0.235556 0.887197 -0.509705 0.387867 0.312243 1.372068 -0.316913 -1.175903 -1.224637 -3.318252 -1.107275 -0.612332 -0.293587 -0.548305 -2.383488 -0.044477 0.439722 1.989755 -2.074350 -0.373542 1.029673 0.106720 1.026482 0.506166 -1.193376 -0.333602 0.130266 0.462928 -0.002032 -0.416768 -0.540628 -1.195602 0.482648 0.143879 0.622524 -0.430265 -1.744172 -0.418761 -0.009014 0.227574 -0.164693 -0.213965 0.138391 -1.765921 0.717940 -0.711289 0.955875 -2.164678 -0.665917 -1.310634 -1.330836 -0.088757 2.312755 0.970806 1.900806 0.316315 -0.262649 -0.969944 -1.957702 -2.627024 0.445277 -1.141690 0.571806 -0.172589 0.136232 -0.211352 -0.376223 -0.793940 0.567585 -1.168825 -0.104343 -0.977890 1.606254 -0.596033 -0.181478 -1.401104 -0.392732 1.147628 0.283348 0.358067 -0.603269 -2.859551 -1.654430 -1.494885 1.031866 -0.338974 0.309459 -0.629137 0.066040 -1.196180 0.386780 -0.954130 0.414405 -0.534991 -1.180938 -1.437593 -0.155436 -0.359358 -0.138497 -0.522436 -1.148119 0.195480 0.715189 0.888508 0.327036 0.528001 -0.356935 -2.306878 -2.004069 -0.182989 0.316815 1.898147 1.103928 0.343198 -1.078589 -0.467827 -1.995824 1.334626 -2.474472 0.010925 0.401574 -0.956889 1.962730 -0.890935 -0.559307 -1.453925 0.759592 -0.116870 -2.413400 2.393698 1.451159 -1.544764 -0.865342 -1.070502 0.405400 1.128526 2.374819 -0.940488 -0.305491 0.609969 -0.049465 -0.425867 -0.534732 1.326017 -0.682986 1.550496 -1.636027 -1.260001 0.654107 1.605833 -0.296226 0.066742 -0.307003 0.263542 0.268964 1.740533 0.676454 0.137782 -1.600624 -3.619214 0.398354 0.247238 -0.210494 0.803631 -1.122978 -1.413572 0.004287 -0.419578 2.024172 -0.093443 0.348164 1.136692 -1.672379 -1.716305 -0.135019 0.026110 0.113011 -0.800905 1.161650 -1.040915 -0.261680 -0.081010 0.548456 -0.181278 -0.846592 -0.982294 -0.046492 1.008710 0.983118 -0.569993 1.540677 0.561226 -0.727310 -0.131856 -0.016515 0.581886 0.151389 -1.305292 -0.672089 -1.133659 0.172900 -0.551494 1.876584 0.129778 0.857837 0.412347 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = 3.653591 0.238257 -1.974784 3.763933 0.187475 -3.889573 0.915081 2.298728 -1.321040 -5.604039 -3.508429 5.372114 0.535732 -2.388415 0.393365 1.413633 -0.759899 0.612584 -6.887377 3.568727 1.430574 0.480218 -2.862306 -2.038333 0.245994 -1.883949 0.275206 2.515785 -0.648977 3.462279 -1.799032 0.619541 2.643275 0.032095 2.145865 3.559988 -0.771679 -0.025523 0.964972 0.614882 5.380185 3.679592 -0.731524 1.934915 2.743242 3.901223 -0.481682 4.231619 -1.443651 -1.773341 1.517148 2.770061 -3.244382 -0.538013 -3.089669 1.569651 3.342492 0.428271 -2.193472 2.308006 -2.821832 -0.634162 1.653714 0.928827 5.397890 2.622842 2.683820 2.339719 6.291677 -1.516985 -0.597991 2.623551 3.700702 -0.473537 3.071412 -0.796995 -4.814074 -1.622909 0.137242 -6.527602 -1.991800 -0.009049 7.722044 -3.676904 -0.101588 1.141251 2.573887 3.889320 -3.662533 -0.732967 -2.685749 0.306892 -2.737623 8.030011 0.215487 2.317799 -1.087829 1.884674 1.797079 3.135735 -1.887355 -3.068707 -2.360647 -7.629345 -1.805954 -1.540432 -0.996834 -0.161296 -5.797017 -1.352706 2.044288 6.103765 -5.803655 -0.288949 3.202269 0.281582 3.777468 1.310066 -3.785073 1.212750 -0.131140 0.259832 1.935234 -0.814017 -0.913304 -0.796862 1.813836 0.216530 0.792539 0.241710 -7.374619 -0.820401 1.132637 -1.449865 0.057601 0.318675 0.555965 -3.508158 1.737568 -2.718855 2.986365 -6.178654 -0.108618 -2.477667 -4.229738 -0.004760 2.155125 4.808766 3.012500 -1.104176 -0.143478 -1.365179 -5.755940 -7.327725 1.388859 -1.432837 0.904583 -1.718702 0.058201 -0.387662 -1.341957 -0.414345 2.642270 -2.519108 -0.042858 -1.654965 7.405470 0.174072 -0.852737 -2.148730 -2.008484 0.489341 2.015141 2.039948 -1.381300 -7.670893 -5.519193 -3.019947 2.943153 -0.304558 -0.604053 -2.329733 -0.905834 -3.195252 0.940917 -2.387162 1.703598 -0.983897 -1.516061 -3.600256 -0.524896 -0.129614 -1.765317 -2.215517 -2.514077 -0.681796 3.400738 -0.083821 0.993957 0.787164 0.150640 -3.712322 -3.555004 1.377307 0.111660 4.366549 4.217434 0.886251 -2.972781 -0.241480 -5.764347 3.436390 -4.170230 0.446070 -0.093075 -2.587194 5.871905 -2.473080 -2.007120 -2.682629 1.844143 -0.443970 -5.365036 6.628211 4.460337 -2.761448 -1.208294 -0.539651 0.427578 3.419165 4.741709 -3.068346 -1.725763 0.884496 -0.809519 -0.795106 0.571252 3.051297 -2.810372 3.146735 -2.887427 -1.868907 2.114922 3.361187 -0.150423 0.718941 -2.065667 -1.048301 1.018502 3.151386 2.009312 -0.527908 -3.880197 -8.183645 1.720132 -3.550148 -1.617172 0.478298 -1.158279 -3.772518 0.166654 -1.796469 4.704727 -1.086851 -2.841925 2.520994 -5.100426 -4.593065 -2.199550 0.732817 -0.179331 -1.478439 2.759487 -1.765730 0.565783 0.900030 0.927003 -0.156684 -2.788112 -1.651568 -0.127980 2.349233 2.035737 -2.349363 4.150535 0.739672 -1.390763 -1.549527 -0.098207 0.347719 0.094385 -3.930077 -1.865003 -2.729382 1.718113 -1.375768 3.969208 0.845486 1.632599 2.301060 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = 0.967115 -0.065693 -0.147173 1.022946 0.334026 -0.834905 0.220224 0.601915 -0.227093 -1.813187 -1.148242 1.197096 -0.001331 -0.488832 0.272824 0.326136 0.071730 0.276594 -2.060324 0.874714 0.480317 0.238687 -0.358076 -0.515982 0.202437 -0.578373 0.100991 0.613704 -0.008273 1.024254 -0.730295 0.227830 0.807892 0.174350 0.667365 0.981030 -0.063319 -0.185119 0.160451 -0.020023 1.761328 0.821427 -0.055606 0.736156 0.795508 1.150612 -0.094867 1.152456 0.239065 -0.541591 0.430474 0.175726 -0.874446 -0.035531 -1.071857 0.639641 0.882476 0.212385 -0.696545 0.596752 -0.489931 -0.048419 0.368470 -0.214501 1.426866 0.624399 0.667017 0.609708 1.764126 -0.548809 -0.241286 0.751125 1.158121 0.187080 0.734366 -0.413266 -0.982864 -0.978670 -0.086144 -1.783888 -0.359833 -0.223172 1.992399 -1.025881 0.092538 0.550140 0.317091 1.083972 -0.752096 -0.194902 -0.957227 0.237259 -0.438967 1.791847 0.063756 0.428552 -0.240477 0.417738 0.406354 0.951793 -0.277321 -0.825548 -0.822194 -2.373485 -0.571801 -0.437950 -0.048291 -0.113742 -1.613393 -0.127928 0.521071 1.732559 -1.594957 -0.204497 0.827611 0.219952 0.419080 0.018263 -0.889883 -0.009288 0.023577 0.272023 0.387421 -0.445234 -0.246217 -0.492580 0.342675 0.034800 0.469762 -0.119942 -1.328839 -0.496058 0.126865 -0.062365 -0.071515 -0.010575 0.226840 -0.913085 0.584385 -0.649796 0.836812 -1.507053 -0.052463 -0.754225 -0.898224 -0.108713 1.257655 1.071845 0.915048 0.023289 -0.159002 -0.490648 -1.418376 -1.889736 0.434875 -0.430696 0.457491 -0.138523 0.003675 0.037920 -0.368932 -0.304199 0.457944 -0.780907 -0.086695 -0.501740 1.304217 -0.189990 -0.201565 -0.916052 -0.301455 0.570240 0.131938 0.404745 -0.446334 -1.770704 -1.365964 -1.067328 0.857168 -0.267224 0.064595 -0.577739 -0.005848 -0.802145 0.342600 -0.754314 0.292656 -0.232531 -0.800587 -1.115096 -0.148020 -0.221929 -0.338526 -0.302212 -0.811698 -0.019510 0.730894 0.323902 0.292181 0.246940 -0.061392 -1.289944 -1.184318 0.018059 -0.032404 1.160149 0.889604 0.147216 -1.087732 -0.298745 -1.355264 1.091661 -1.263630 0.115931 -0.068743 -0.697990 1.438103 -0.635628 -0.388614 -0.838594 0.537809 0.052184 -1.838024 1.680913 1.149818 -0.901469 -0.480502 -0.541524 0.238117 0.879891 1.532504 -0.782900 -0.341574 0.299498 -0.203551 -0.212969 -0.224702 0.942983 -0.621940 0.839810 -1.024813 -0.749147 0.539033 0.989471 -0.074491 0.284681 -0.096881 0.176351 0.322351 1.095137 0.555994 -0.068581 -1.113825 -2.380689 0.470752 0.053384 -0.141392 0.404068 -0.606167 -1.030636 0.034205 -0.388521 1.380665 0.042896 -0.242330 0.850757 -1.185968 -1.221054 -0.360856 0.050486 0.027792 -0.494977 0.791425 -0.608747 0.001340 0.124438 0.243714 -0.027555 -0.668816 -0.670545 -0.012587 0.775343 0.732009 -0.352653 1.171548 0.351256 -0.623284 -0.206964 -0.028139 0.210718 0.007769 -0.951970 -0.531596 -0.663982 0.256423 -0.420627 1.085223 0.078044 0.411541 0.381895 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 1.192092 -0.631424 -0.177281 1.033459 0.500383 -1.094043 0.353919 0.623332 0.056836 -1.694088 -0.774952 0.735626 0.027756 -0.871280 0.302697 0.398435 0.061888 0.315001 -1.487727 1.020619 0.290187 0.278585 -0.694478 -0.617904 0.137639 -0.561988 -0.155521 0.677435 -0.122771 0.976756 -0.678825 -0.014831 0.770754 -0.010516 0.476533 1.086897 0.490312 -0.048670 0.408081 0.462327 1.874383 0.687311 -0.109645 0.721264 1.023979 1.131171 -0.258756 2.124637 -0.088366 -0.393301 1.045465 -0.339780 -0.764966 -0.115940 -1.234932 0.788542 1.500601 0.358370 -0.846190 0.754096 -0.626633 0.075134 0.477186 0.155945 1.471101 1.098157 0.566759 0.628897 2.217318 -0.457132 -0.283007 0.809041 1.443070 0.119038 0.996403 -0.712758 -0.946385 -1.404382 -0.031531 -1.044856 -0.045295 -0.372748 1.877050 -1.113015 0.100103 0.981677 0.578479 1.057509 -0.884476 -0.212725 -0.913498 0.383525 -0.375287 2.395213 -0.211125 0.732922 -0.516092 0.442165 0.351292 0.922621 -0.086638 -0.853130 -1.225453 -2.509109 -1.130213 -0.462878 -0.445271 -0.423035 -1.983259 -0.232891 0.819228 0.949776 -1.721387 -0.036757 0.824278 0.287979 1.308193 0.372109 -1.009493 0.013673 0.011135 0.198653 -0.002827 -0.384051 -0.383316 -1.157921 0.541503 0.264113 0.222431 -0.429129 -1.477406 -0.013306 -0.002664 0.020991 -0.037574 -0.057553 0.031027 -1.581898 0.487348 -0.813456 0.777210 -1.873366 -0.514718 -0.860188 -1.295149 -0.007641 1.908430 0.511994 1.284981 0.144692 -0.676924 -0.724965 -1.533711 -2.362623 0.182495 -0.786589 0.487234 -0.247698 0.030904 -0.362013 -0.220691 -0.505030 0.486194 -0.849207 -0.009524 -0.624348 1.414994 -0.425587 -0.221661 -1.054985 -0.338621 1.062360 0.426084 0.363599 -0.444320 -1.864169 -1.277943 -1.053859 0.801446 -0.160301 0.178646 -0.515200 -0.050439 -1.500623 0.502472 -0.654183 0.483279 -0.364329 -0.826344 -1.135632 0.001492 -0.212801 0.006558 -0.420584 -0.875814 0.083617 0.181904 0.504682 0.249067 0.341418 -0.129884 -1.858508 -1.730169 -0.159134 0.275051 1.626117 0.678709 0.430145 -0.290347 -0.223586 -1.586388 1.037659 -1.857164 -0.046952 0.384955 -0.695029 1.612384 -0.663220 -0.745796 -1.349881 0.572195 -0.194094 -0.822796 2.133995 1.105326 -1.165618 -0.617608 -0.735055 0.281715 0.885484 1.799233 -0.749690 -0.319608 0.528869 0.048426 -0.358736 -0.408362 0.919146 -0.642214 1.256572 -1.145566 -0.815906 0.380571 1.420973 -0.317971 0.109837 -0.362642 -0.019069 -0.235977 1.240448 0.430421 0.001328 -1.040103 -2.401519 0.321416 -0.355886 -0.235079 0.367097 -0.996411 -0.886669 0.120382 0.195003 1.526134 0.583973 0.240896 0.861232 -1.458214 -1.369295 -0.108753 0.159563 0.126815 -0.777683 0.751350 -0.735111 -0.070069 0.076866 0.482829 -0.015931 -0.805912 -0.826006 -0.132791 0.770543 0.423483 -0.767887 1.249880 0.277679 -0.409385 -0.157956 -0.021091 0.434861 0.300548 -0.505715 -0.416196 -0.868297 0.263241 -0.472023 1.612095 -0.034597 0.463648 0.563352 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.912695 0.056221 1.067047 0.154289 0.708595 -0.029863 0.477330 1.119161 -0.510352 -1.767321 -1.815369 -1.126587 -0.339898 -0.285591 1.003036 -0.130363 0.664266 0.005363 -2.397233 0.052241 0.744116 0.136551 0.333059 -0.031003 0.312419 -0.665165 -1.889170 0.795707 -0.096553 0.874471 -0.568811 0.038582 0.649512 0.506915 0.331591 0.823087 -0.233056 -0.398254 1.229653 0.069629 1.854184 0.159538 -0.118982 0.552941 0.957258 0.988364 -1.378690 1.447323 -0.633234 -0.383680 1.548993 -2.545644 -0.715752 0.579458 -0.943690 0.459480 1.971925 0.781482 -0.566912 0.869749 -0.803391 0.329500 -0.012976 -1.311045 0.959735 1.268774 0.379879 0.110788 1.256254 -0.645757 -0.362729 0.656128 0.449222 0.187000 -1.724773 -0.819516 1.093424 -2.937968 0.393818 -2.082266 -0.111478 -0.785700 2.023272 -0.354047 0.046690 1.294423 -0.412047 0.495096 -0.426869 -0.043754 -0.850073 0.459574 0.002837 0.765466 -0.444303 0.092676 0.273726 0.078888 0.469487 1.027378 -0.596321 0.085204 -2.670222 -2.544782 -0.935705 0.189056 0.441337 -0.397639 -1.179976 0.060762 1.679387 -0.176430 -0.873563 -0.387834 0.569537 1.020075 -1.638680 1.661663 -1.982738 -1.182207 -0.107912 0.643558 0.310417 -0.270211 0.218105 -2.342135 -0.114061 0.107989 0.591399 -0.609334 -0.747658 -0.507928 -0.114732 -0.740483 -0.291739 -0.224226 -0.038819 0.089083 0.659265 -0.618214 0.755625 -1.748576 0.180794 -1.062083 -0.864642 0.083458 1.941965 1.498952 0.022228 1.394027 -0.432132 -0.466180 -0.680424 -0.673270 -0.201349 -0.181270 1.805805 -0.542050 -0.108667 0.009539 -0.141477 -0.612558 -0.774462 -0.447033 0.092603 -1.035009 1.752998 -0.359070 -0.450221 -1.253141 0.643509 1.577190 -1.772717 -0.273854 -0.488162 0.853787 -0.599324 -1.260083 0.639548 -0.242836 0.242114 -0.171120 0.966225 -1.244209 0.648285 -0.444071 -0.182413 0.000399 -1.604033 -0.951136 0.247683 -0.222482 -0.439883 0.303009 -0.467822 -0.111778 1.053566 1.503823 0.604326 0.366402 -0.295465 -1.156633 -1.719858 -1.217332 0.069663 0.776716 1.165579 -0.187647 -0.504789 -0.355746 -0.808074 1.451593 -0.004228 -0.195245 -0.483674 -0.515526 0.780858 -0.307284 -0.263546 -1.256428 0.162511 0.220674 -2.317365 1.105240 0.343177 -1.010880 -1.190548 -2.281520 0.257319 0.443225 1.562533 0.113176 0.405678 0.232659 -0.161791 -0.178732 -0.841348 0.947484 0.092715 0.604070 -1.270648 -1.026530 0.818402 1.099057 -0.255740 1.129181 0.753212 1.811768 0.881175 1.243609 -0.040889 -1.190754 -0.131708 -2.275489 0.290848 2.356183 0.094365 0.175311 -0.890481 -1.327541 -0.485654 0.645841 1.132315 1.963294 0.949746 0.878189 0.465734 -0.713965 -0.101824 0.661168 0.151544 -1.184615 -0.277156 -0.329776 -0.052376 0.457977 0.172113 1.375346 -1.285223 -2.937446 -0.696805 1.136763 0.427376 -0.143761 0.975926 0.290571 -0.595843 -0.019132 0.099245 0.968342 0.878370 0.351631 -0.530462 -0.775483 -0.346444 -0.316751 0.852538 0.514546 0.165612 0.726788 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = 1.838713 0.470998 -1.629122 4.288433 -0.181169 -0.821969 0.271378 0.819180 -1.000764 -6.814349 -4.342936 4.413134 0.710538 1.301079 0.622184 1.287702 -0.367178 0.326319 -6.448572 1.465529 2.374613 0.813539 0.242704 -0.194773 0.967864 -1.699914 1.753459 0.826399 1.122440 4.037791 -1.709150 1.882747 3.502052 -0.379636 1.190496 2.770376 -0.265135 0.477542 -1.814443 -0.992361 4.680365 2.402403 -0.285412 1.909324 -0.033716 3.956826 0.569351 3.398936 1.153553 -3.227248 1.161941 0.688579 -2.613215 -0.713331 -2.079297 1.761754 2.266153 1.861900 -1.819423 0.750133 -0.908402 -0.496913 0.966598 -0.467302 3.569190 1.709564 3.039628 2.661188 3.822391 -2.780233 -0.627434 2.240330 0.938190 0.627294 2.849150 -2.266809 -3.751092 -0.676495 -0.360085 -5.406994 -3.294061 -0.138021 6.173644 -4.008738 -0.262936 0.442284 0.069011 3.612467 -1.874627 0.674106 -3.049641 -0.416005 -0.926318 4.431505 0.781992 -0.108304 -0.381907 1.334605 1.491454 2.798089 -0.098598 -2.601236 -1.898138 -5.317632 -0.914721 -1.712523 1.953013 2.793621 -4.066381 -1.126662 -0.959925 5.046411 -5.570389 -0.066166 3.086594 2.251765 3.622556 1.128550 -2.616622 0.786645 1.347987 -0.217819 3.396932 -1.659784 0.410552 0.462149 0.976657 -0.356326 0.894119 0.646664 -4.798057 -3.088546 0.222740 -0.218523 0.275919 0.521901 2.313313 -1.606717 2.780841 -1.446448 2.731132 -4.826679 -0.242284 -0.808745 -3.296342 -1.272761 3.592496 4.195537 3.048179 -1.724180 -1.546715 -1.420433 -4.688474 -5.014794 0.976851 0.790857 1.104278 1.595967 -0.517519 2.515935 -2.110788 1.077465 1.525063 -1.136985 -0.758212 0.166200 2.954323 -0.033389 -0.470375 -2.670991 -1.204490 -1.495778 -0.084970 3.232067 -0.774405 -6.365132 -5.783758 -2.701392 3.416939 -1.281197 0.251030 -2.103065 -0.664459 -2.620407 -0.476584 -3.480459 0.362380 0.316880 -2.937155 -4.046966 0.566817 -0.521186 -2.110981 0.685419 -2.792367 -1.025435 3.009980 1.096376 1.686016 -0.001786 0.158012 -3.362910 -2.343373 1.100964 -2.826481 3.759110 2.411570 -0.859419 -3.514476 -1.393839 -3.933590 2.942243 -2.264003 1.056801 -1.609160 -0.515381 3.713524 -2.580487 0.255386 -2.619220 1.336756 1.883705 -7.056246 4.261573 3.648654 -0.729134 0.024358 0.975115 0.156373 2.739023 2.599538 -2.794213 -2.791286 0.121303 -1.364976 0.265503 -0.184461 2.458131 -2.803540 0.271605 -2.130965 -1.369325 1.758982 1.800888 0.387085 1.349297 1.383114 -0.476038 1.726463 2.748144 2.694957 -0.963228 -2.924405 -7.644823 2.870687 0.150375 -1.484338 0.118311 -2.040519 -2.361264 1.492549 -2.146593 3.523259 -0.480860 -1.749794 3.182203 -4.584131 -3.249501 -2.145925 -0.693269 -0.053400 0.078381 1.154656 -1.086553 1.730694 1.380612 -1.008526 -0.698047 -2.132240 -0.248285 0.373251 3.022749 1.111787 1.317294 3.915128 1.049822 -2.038125 -0.748309 0.688777 -0.532623 -1.012046 -4.660098 -1.251175 -0.204786 0.958783 -1.462203 0.547638 -0.710833 -0.839731 1.071371 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = 0.827399 0.202696 -0.799776 1.917363 0.143463 -0.802566 0.137732 0.207512 -0.233436 -2.957097 -1.743825 1.480670 0.316987 -0.186487 0.513122 0.759717 -0.105749 0.367851 -2.006489 0.912516 0.975199 0.361878 -0.340262 -0.309345 0.161169 -0.742262 0.328758 0.296581 0.335143 1.721907 -0.849869 0.821876 1.253323 -0.197179 0.592436 1.268684 -0.234199 0.244714 -0.229043 0.036277 2.320397 0.933288 0.092893 0.849327 0.470118 1.681562 -0.268697 1.971615 -0.124001 -1.154982 0.999204 0.787782 -0.801021 -0.293860 -1.152140 1.149392 1.576842 0.729744 -0.868791 0.666441 -0.450654 0.081615 0.537349 -0.061089 1.962970 1.429023 0.999878 1.385954 2.254614 -0.937114 -0.228982 0.832270 0.690311 -0.147917 1.333019 -0.666789 -1.538708 -0.123813 -0.365482 -2.211865 -0.717451 -0.252476 3.404752 -1.686255 -0.115443 0.375691 0.650360 1.730998 -0.887613 0.118230 -1.263731 0.141043 -0.724484 2.657703 0.234289 0.308540 -0.673833 0.570557 0.520537 1.166983 -0.148578 -1.083105 -1.263596 -2.657942 -1.259751 -0.733474 0.421585 0.592781 -2.619103 -0.430199 0.418478 1.480694 -2.722181 -0.051334 1.345088 0.925381 1.476866 0.711830 -1.806135 0.146051 0.314076 0.050991 0.645676 -0.331231 -0.078422 -0.785754 0.453747 -0.119210 0.458823 -0.103352 -2.427142 -0.641230 -0.348143 -0.423527 0.155151 0.232766 0.852078 -1.198527 1.076088 -0.885180 1.131985 -2.678095 -0.511134 -0.783476 -1.585714 -0.423374 1.579736 1.695711 1.658960 -0.684666 -0.844291 -0.896867 -2.591366 -2.401599 0.290014 -0.208844 0.539114 0.298775 -0.012471 0.401920 -0.802969 0.213182 1.120215 -0.775620 -0.206250 -0.459936 2.282526 -0.338332 -0.199425 -1.647681 -0.720542 -0.257777 -0.110681 1.263315 -0.379132 -2.359100 -2.717281 -1.339648 1.412909 -0.542635 0.272008 -1.105079 -0.286376 -1.592668 0.146660 -1.419856 0.198553 -0.041483 -1.117995 -1.780591 0.186916 -0.158931 -0.930540 -0.292095 -1.453824 -0.225356 1.390076 0.513225 0.809822 0.191287 -0.124286 -1.929622 -1.624006 0.321798 -0.787404 1.469765 1.619293 0.039028 -1.282541 -0.629711 -2.111995 1.046333 -1.586455 0.224775 -0.072259 -0.245277 1.707383 -1.345852 -0.681027 -1.359213 0.360170 0.222743 -2.948378 2.292646 1.302571 -0.908151 -0.180542 -0.082121 0.414034 1.037942 1.612477 -1.214247 -0.903966 0.362158 -0.386617 -0.186624 -0.181207 1.143496 -1.196961 0.659334 -1.174563 -0.674921 0.806728 1.368488 -0.118516 0.490440 0.241634 -0.365646 0.623195 1.249523 1.237020 -0.395037 -1.132339 -3.118431 0.862692 -1.225127 -0.578044 0.095958 -0.690414 -1.105880 0.520388 -0.495073 1.811797 -0.388492 -0.381285 1.366746 -2.177411 -1.778946 -0.656380 -0.023907 0.060812 -0.545173 0.434294 -0.664560 0.267981 0.514866 0.076180 -0.222451 -1.327428 -0.534197 0.042934 1.669710 0.196432 0.063656 1.775895 0.439249 -0.821789 -0.147078 0.015700 -0.058170 -0.201821 -1.676172 -0.506023 -0.437799 0.386264 -0.832808 1.033525 -0.484982 -0.029233 0.680169 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.770298 -0.017397 -0.212648 1.136354 0.365184 -0.479394 0.185246 0.533474 -0.166512 -2.101629 -1.278570 0.521812 0.093307 -0.134245 0.501911 0.269501 0.183922 0.426185 -1.502173 0.514995 0.656014 0.453289 -0.230783 -0.170645 0.220649 -0.402570 -0.448421 0.204569 0.287302 1.201008 -0.680591 0.345198 0.960236 -0.237095 0.157190 0.881632 0.409218 0.088285 0.174507 0.067304 1.802946 0.291271 0.197605 0.981066 0.528503 1.162085 -0.681248 1.941880 -0.137519 -0.775554 1.072946 -0.480134 -0.524449 0.005065 -0.896953 0.948292 1.507899 0.720661 -0.698223 0.581440 -0.286385 0.039530 0.321444 -0.473835 1.043796 1.364539 0.484194 0.810817 1.781780 -0.599777 -0.240099 0.659781 0.666540 0.232721 0.535067 -0.758573 -0.453823 -0.994938 -0.316378 -1.248812 -0.222832 -0.481249 2.382217 -1.253032 0.090162 0.813082 0.275132 1.015895 -0.502553 0.065056 -0.902261 0.135431 -0.420256 1.537336 -0.027502 0.322812 -0.499115 0.237660 0.277044 0.822072 -0.205037 -0.616301 -1.408566 -2.078653 -1.234016 -0.333375 0.168183 0.284564 -1.868331 -0.245081 0.407127 0.823615 -1.847585 -0.110943 0.705711 0.790845 0.746841 1.096827 -1.575696 -0.253873 0.204747 -0.019210 0.217283 -0.336226 -0.075920 -1.260331 -0.112678 -0.039331 0.257658 -0.301215 -1.263881 -0.579596 -0.433246 -0.211185 0.023455 0.012045 0.469844 -1.058712 0.782981 -0.519569 0.676073 -1.847604 -0.725119 -0.572629 -1.431376 -0.253254 1.852579 0.703129 1.298549 0.004496 -0.971673 -0.929927 -1.495421 -1.473969 0.120897 -0.395885 0.792665 0.368826 -0.103814 0.190843 -0.433672 -0.266725 0.359137 -0.556409 -0.058731 -0.425354 1.599524 -0.560089 -0.113965 -1.482598 -0.238689 0.514030 -0.271648 0.504322 -0.357110 -0.939610 -1.522355 -0.910880 0.929820 -0.334423 0.425138 -0.499222 0.115978 -1.282999 0.132011 -0.926261 -0.106860 -0.142793 -1.088881 -1.260605 0.301045 -0.187478 -0.594310 0.089471 -0.951516 0.020701 0.832245 0.930999 0.484402 0.098014 -0.213766 -1.736294 -1.555984 -0.304761 -0.429700 1.142812 0.934055 0.056921 -0.636550 -0.431800 -1.403487 1.029582 -1.263017 0.065596 0.030223 -0.094638 1.205858 -0.830396 -0.470206 -1.553220 0.303626 0.218430 -1.988588 1.546233 0.543850 -0.755061 -0.321414 -0.680047 0.320786 0.722416 1.239997 -0.614782 -0.449448 0.434725 -0.168335 -0.111651 -0.825417 0.858615 -0.685286 0.722935 -0.965253 -0.600340 0.585504 1.116779 -0.245690 0.352331 0.428049 0.176869 0.447798 1.091648 0.798494 -0.474475 -0.644777 -2.135245 0.556724 0.095168 -0.221082 0.068454 -0.983728 -0.738037 0.327478 0.078201 1.258793 0.302708 0.569476 0.997867 -1.272896 -1.169108 0.008298 0.178240 0.295327 -0.631515 0.277029 -0.620421 0.191076 0.421666 0.126744 0.159491 -1.051984 -1.010733 -0.140678 1.096450 0.128041 0.095934 1.266006 0.413132 -0.673581 0.140980 0.045811 0.450054 -0.188715 -0.782013 -0.273230 -0.388176 0.027842 -0.599230 1.050073 -0.337883 -0.115731 0.585077 -PE-benchmarks/dfa-based-division.cpp__main = 0.767368 -0.108377 0.072423 1.016154 0.225787 -0.170699 0.230975 0.653981 0.087193 -2.226398 -1.511971 1.027098 -0.017475 0.197206 0.423012 0.182748 0.289647 0.489202 -2.200939 0.349741 0.707983 0.439382 0.316971 -0.228339 0.284126 -0.474528 -0.096945 0.280379 0.458839 1.299528 -0.782336 0.281641 1.075702 0.040790 0.265443 0.963544 0.230669 -0.092158 -0.213250 -0.492730 1.767801 0.597769 0.008738 1.048421 0.281558 1.277613 -0.202846 1.452521 0.891279 -0.894622 0.592457 -0.828893 -0.899191 0.003226 -0.904604 0.851934 1.023822 0.703528 -0.622823 0.600463 -0.063401 0.071125 0.243668 -0.937814 0.921809 0.827433 0.534853 0.676672 1.433698 -0.969306 -0.250470 0.645075 0.713494 0.499982 0.493134 -0.891754 -0.506788 -1.369801 -0.137619 -1.789133 -0.507583 -0.446248 2.121758 -1.309447 0.271706 0.781166 -0.235605 1.010100 -0.372680 0.116507 -1.109008 0.152783 0.020837 1.219182 0.197864 -0.071733 -0.134868 0.273230 0.367938 0.898694 0.119242 -0.666197 -1.244299 -2.240572 -0.552457 -0.455134 0.465783 0.440721 -1.429206 -0.065480 0.473354 1.381642 -1.732629 -0.254140 0.881468 0.691541 -0.026916 0.385484 -0.873963 -0.191292 0.220147 0.157236 0.598026 -0.887930 -0.038119 -0.471933 -0.098195 -0.041837 0.525972 -0.117611 -0.834033 -1.008818 -0.162246 0.228209 -0.037944 -0.010631 0.498840 -0.587591 0.870324 -0.510140 0.826129 -1.392975 -0.226017 -0.384382 -0.673057 -0.426978 2.156295 0.851520 1.071660 0.113376 -0.529938 -0.746826 -1.121014 -1.440735 0.485316 0.009418 0.884190 0.471945 -0.108911 0.495609 -0.509206 -0.152372 -0.150567 -0.610622 -0.136713 -0.095676 0.736125 -0.478370 -0.146885 -1.384589 0.051849 0.586898 -0.576065 0.419149 -0.406128 -1.256176 -1.270254 -1.098544 1.077472 -0.495837 0.365450 -0.411699 0.148642 -0.638675 0.107010 -0.964370 -0.013361 0.100887 -1.400191 -1.410714 0.204816 -0.353285 -0.356684 0.479986 -0.985355 -0.013939 0.628771 1.024384 0.403387 0.196075 0.033443 -1.646287 -1.246548 -0.451287 -0.686385 1.127294 0.691104 -0.134931 -1.248818 -0.573787 -1.014142 1.155291 -1.272714 0.224447 -0.564106 -0.267177 1.094189 -0.637604 -0.080644 -1.327901 0.500029 0.673891 -2.430560 1.346770 0.892202 -0.595120 -0.322742 -0.588867 0.192509 0.858586 1.366496 -0.812077 -0.658771 0.369835 -0.494454 -0.014856 -0.675220 0.936701 -0.526747 0.389465 -0.979766 -0.605822 0.528947 0.783697 -0.002446 0.614147 0.947445 0.635574 0.580534 1.182504 0.679397 -0.399462 -0.986243 -2.590759 0.873176 1.447538 0.022262 0.480707 -1.107728 -0.799268 0.388961 -0.149621 1.140292 0.441344 0.437623 1.093531 -1.031570 -1.082312 -0.108562 -0.139143 0.273320 -0.371779 0.523121 -0.497094 0.211831 0.276623 -0.125119 0.079549 -0.594175 -0.915635 0.063119 1.126145 0.607630 0.388717 1.279365 0.361894 -1.023351 0.184707 -0.157872 0.191455 -0.336319 -0.779951 -0.243682 -0.156300 0.111932 -0.600568 0.679456 -0.147264 -0.236961 0.159505 -PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 1.799415 -0.572429 -0.714712 3.543623 -0.821511 -2.358047 0.121571 2.900261 -1.192031 -5.183532 -4.132619 1.335845 0.583735 0.759550 2.751534 0.533562 -1.250686 -0.009283 -8.147361 2.454072 2.456414 1.020083 0.017685 -1.519785 1.203912 -0.408560 0.039378 1.266352 0.680990 3.310394 -2.447203 0.984344 2.024379 -0.633480 1.346648 1.883740 -0.913812 0.115279 -0.359495 -0.251482 4.341922 2.373132 -0.957010 1.528142 0.578821 2.868303 -0.077713 1.852542 -0.719609 -3.003488 1.435054 -0.523197 -2.300032 -0.372401 -1.209216 1.754396 3.818268 3.280777 -1.604418 1.741465 -1.804119 -0.570347 0.979626 -0.551540 4.036525 1.174266 3.075727 2.052230 3.618588 -2.002478 0.101969 1.464219 1.280691 -0.743297 1.332677 -2.616582 -2.184313 -5.737666 0.680882 -6.576363 -2.888277 0.683159 4.739551 -3.649254 1.353024 1.788117 0.276967 3.675884 -2.799673 0.927059 -1.500241 -0.764276 -1.265739 4.508859 -0.125126 -0.424022 1.209982 2.137618 1.883301 3.198113 -0.320230 -1.109459 -2.190025 -5.928860 -1.107333 0.291507 1.068934 1.605306 -3.869790 -1.006915 1.658279 1.520501 -4.184171 -0.480094 3.082389 2.873583 -0.479219 -0.406072 -2.239977 -0.075440 -0.121406 0.884018 3.422381 -2.191566 1.108724 -0.855221 1.002144 1.112781 1.512471 0.594425 -3.068102 -2.737848 0.285387 -0.686579 -0.346943 0.383277 2.158559 -0.794862 2.607799 -2.496737 3.150477 -5.051515 0.879678 -1.477157 -1.513215 -0.327344 2.546102 2.283808 0.108936 -0.922408 -2.610406 -0.138298 -3.509316 -3.557814 1.363331 1.890233 1.526500 0.591728 -0.282453 1.548950 -0.668424 -0.583055 0.844537 -1.705526 -0.758185 -1.048036 2.043039 0.993943 -0.674055 -3.140701 0.397976 0.002017 -1.310108 2.254240 -0.168590 -2.665333 -4.594302 -2.608172 3.272777 0.225755 -0.193390 -1.536980 -0.622019 -2.905029 1.292289 -3.234171 0.885897 0.334285 -2.780016 -3.296794 -0.647864 0.357048 -1.296531 -0.244354 -2.330709 -1.208451 2.242891 1.365030 0.650027 0.664646 1.542785 -3.908640 -3.667718 0.084620 -1.577403 2.607199 1.415525 -0.729020 -2.286256 -0.425277 -1.969291 3.283372 -1.439395 0.909930 -2.326994 -0.983974 4.157334 -2.006866 -1.086422 -3.118391 0.758660 1.524279 -5.035732 4.802421 2.623737 -0.956819 0.021609 -0.470873 0.384932 2.393617 3.273193 -2.473719 -1.829035 -0.226551 -0.779055 -0.008240 -1.446808 2.547966 -2.624111 -0.092334 -1.239127 -1.326923 1.306454 1.930889 1.206735 2.524686 1.231732 0.223279 0.325989 2.973826 2.065800 -2.077001 -2.431181 -5.249371 3.403537 2.311476 -0.907008 -0.542953 -2.474995 -3.019981 0.316421 1.454553 2.191189 3.975280 -0.400582 2.493063 -3.351806 -3.359112 -2.584282 1.334824 -0.697028 -0.719832 -0.384427 -1.074181 1.606602 1.967640 -0.287376 -0.060750 -1.361576 -3.418128 -1.153329 2.675865 0.929638 0.245488 4.116560 1.338590 -2.119411 -1.084429 0.024895 -0.763516 -0.634652 -0.267711 -1.732653 -0.813058 0.968220 -2.065126 0.916838 0.308051 -0.617059 1.390793 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = 1.390454 0.033135 -0.407876 2.849171 -0.050256 -0.878805 0.224085 1.055043 -0.515610 -4.894997 -3.172731 2.528136 0.228404 0.393395 0.809504 0.711636 0.081897 0.407325 -5.854707 1.279176 1.862813 0.781182 0.407581 -0.672422 0.664101 -1.324647 1.207233 0.961084 0.660995 2.861128 -1.606229 1.173867 2.397829 0.032497 1.476541 2.219016 -0.790023 0.129622 -0.802433 -0.544934 3.817465 1.930040 -0.177039 1.588767 0.660957 2.967079 0.517358 1.345211 1.123038 -2.122451 0.782782 0.858031 -1.846142 -0.554951 -1.882007 1.192943 1.974496 1.309716 -1.507550 1.107473 -0.524188 -0.244052 0.693924 -0.556367 2.991096 0.836040 2.102783 1.783544 2.842251 -1.858786 -0.367476 1.372800 1.202696 0.280288 1.648416 -1.773208 -2.582712 -1.599887 -0.416065 -4.760599 -1.766670 0.005087 3.876498 -2.681641 0.327474 0.513130 -0.317818 2.591818 -1.156495 -0.145648 -2.273401 -0.191758 -0.709592 3.350651 0.459689 -0.057104 0.402061 1.194407 1.117106 2.141273 0.048057 -2.126514 -1.156211 -4.518881 -0.648663 -1.235961 1.442193 1.395861 -3.064874 -0.486513 -0.156068 3.274608 -3.923820 -0.251337 2.057166 1.434288 0.684547 -1.172077 -1.520698 0.199676 0.318168 0.537001 2.145621 -1.678590 0.113758 -0.103841 0.485516 0.062155 1.172635 0.294405 -2.514190 -2.282158 0.056850 0.042244 -0.134088 0.455933 1.349685 -0.947058 1.862302 -1.475530 2.442991 -3.336919 0.335136 -1.229876 -1.332297 -0.842605 2.037486 2.326572 1.490252 -0.881697 -0.874484 -0.487529 -3.173078 -3.559499 1.122042 0.543830 1.080262 0.842664 -0.372971 1.488270 -1.370190 0.253916 0.727633 -1.244415 -0.478470 -0.373475 1.565500 0.085429 -0.561145 -1.726758 -0.399294 -0.145182 -0.311203 2.036377 -0.824221 -3.582833 -3.906695 -2.248670 2.467821 -1.026081 0.049871 -1.336431 -0.284651 -1.691273 0.463564 -2.662516 0.409003 -0.126856 -2.003153 -2.929641 0.029506 -0.636978 -0.412543 0.281067 -2.044697 -0.559152 1.937619 0.961196 1.005468 0.339261 0.405270 -2.661879 -1.912937 0.448432 -1.545769 2.238052 1.316297 -0.446599 -2.927379 -0.960175 -2.341468 2.173212 -1.150673 0.756294 -1.158506 -1.032642 2.802828 -1.429024 0.153483 -1.929819 0.916491 1.340517 -4.889905 3.203666 2.370107 -1.088886 -0.332511 0.066827 0.340925 1.786939 2.184621 -1.851020 -1.793877 0.262639 -1.093237 0.101138 -0.726560 1.907721 -1.612794 0.558445 -1.977243 -1.249923 1.507672 1.306442 0.378686 1.260230 1.106121 0.101501 0.947578 2.350056 1.788776 -0.266363 -2.470539 -5.247625 1.949290 0.877435 -0.187301 0.228622 -1.134617 -2.159250 0.583834 -0.455375 2.636650 0.838584 -1.110624 2.315468 -2.876709 -2.707830 -1.722153 -0.344373 0.111675 -0.334481 0.479445 -0.979828 0.886964 0.757263 -0.296786 0.004780 -1.307524 -0.742167 0.304541 2.347642 1.285744 0.517030 2.863158 0.828427 -1.900783 -0.459656 0.279003 -0.497327 -0.471648 -2.455861 -1.300864 -0.520676 0.814819 -1.182498 0.748547 -0.381085 0.075689 0.482560 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 5.812151 0.136136 -1.277941 10.032881 0.423963 -3.368427 0.552872 4.873464 -1.673221 -17.100901 -11.374701 9.347333 0.670900 1.893020 3.360724 2.284477 0.190449 0.865857 -21.104132 4.914584 6.034876 2.797033 1.086732 -2.744959 2.632555 -4.072117 3.586825 3.363547 2.503567 9.544880 -6.084243 3.790259 8.151305 0.210818 5.647837 6.915029 -2.009368 0.105965 -3.262931 -2.791452 13.906316 7.372623 -0.593232 6.256102 2.442079 10.264269 0.877282 6.491944 3.502807 -7.588569 3.035855 0.703631 -6.972877 -1.296992 -6.696895 5.390907 6.836837 4.376102 -5.432520 3.995158 -1.873099 -0.902369 2.376958 -2.813505 10.674133 3.253727 7.449247 6.026994 10.192949 -6.446577 -1.854376 5.336664 4.954920 1.510159 5.157073 -6.933278 -8.462961 -6.640020 -0.303049 -16.533411 -6.324107 -0.964831 14.295482 -9.798173 1.772605 2.545039 -1.173365 8.921333 -4.772523 0.111928 -8.068837 -0.685089 -2.325746 12.160023 1.083711 -0.324033 1.924365 4.037749 4.285736 8.204578 0.001486 -6.460156 -4.740559 -15.639080 -2.043934 -3.077494 5.131952 4.643848 -10.275213 -1.728442 -0.201704 11.684084 -13.129671 -1.451913 7.448558 4.843897 2.851261 -1.893485 -5.035859 0.184429 1.333326 1.613719 7.458693 -6.329980 0.619283 -0.539024 1.532896 0.245472 4.726698 1.035401 -9.551873 -7.866736 0.063026 -0.161804 -0.565438 0.700510 4.216973 -4.076622 7.005774 -4.739234 8.183392 -11.496309 0.610461 -4.396894 -4.883774 -2.439717 9.283619 8.208440 5.700202 -1.748370 -2.938886 -2.432918 -10.928626 -12.495373 3.977441 2.524923 4.248604 2.727322 -1.062514 5.212133 -4.436028 0.193664 2.176922 -4.851285 -2.231922 -1.640328 5.668901 -0.175100 -1.778890 -6.944654 -0.540889 0.160716 -2.173135 6.622431 -2.574154 -13.394316 -13.057948 -8.076831 8.417470 -3.116846 0.694780 -4.345248 -0.450218 -5.743776 1.257780 -9.709651 2.282352 -0.231820 -7.883836 -10.166839 0.160740 -2.157009 -1.224711 0.961426 -6.890740 -1.668210 6.602964 4.610063 3.057143 1.552202 1.735748 -10.204063 -7.534226 0.770146 -5.175005 8.499167 4.332208 -1.618633 -9.525634 -3.415405 -8.332283 8.088351 -5.080492 2.153712 -4.633236 -3.500496 9.752064 -5.192612 -0.109053 -7.808008 3.334987 4.933608 -16.509549 11.163166 8.019596 -3.904424 -1.734502 -0.846099 1.144869 6.804473 9.110318 -6.282117 -6.151751 0.863066 -3.494112 -0.038338 -2.794864 7.085710 -5.509729 1.831837 -7.071940 -4.896801 4.692470 4.729291 1.553651 4.717742 4.266908 1.233034 3.501784 8.647362 6.266107 -1.635698 -8.852352 -19.238853 7.057420 4.982434 -1.013316 0.323062 -4.983019 -8.118870 1.610447 -1.230045 9.143028 3.823153 -2.479763 8.002819 -10.206787 -9.287515 -5.408078 -0.512262 -0.188632 -1.416511 1.446192 -3.536514 3.152567 2.910971 -1.519119 -0.049355 -4.414547 -4.252513 0.242251 7.668323 4.505685 2.216323 10.196856 3.530220 -6.669501 -1.265992 0.892066 -1.212850 -1.984527 -8.463254 -4.538034 -2.354449 1.870352 -3.857448 2.489634 -0.291306 -0.475791 1.804145 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.287779 0.079764 0.077500 0.476136 0.186153 -0.395605 -0.091967 0.218673 -0.383298 -0.499159 -0.375033 0.026192 -0.146269 -0.024590 0.431320 -0.029858 -0.028663 -0.104455 -0.421994 0.348203 -0.068468 -0.031160 -0.109095 -0.316981 0.167266 0.406114 -0.195146 0.107929 0.079891 0.235565 -0.531147 0.092021 -0.034293 0.276838 0.380811 -0.299480 0.150747 -0.034231 -0.152990 -0.178409 0.548023 0.031028 -0.078885 0.312573 0.318117 0.154286 -0.209360 0.449887 -0.131684 0.118606 0.396865 -0.493311 -0.002542 0.308774 -0.304228 0.347407 0.572831 0.198197 -0.073186 0.038305 -0.170727 0.169662 0.046975 -0.310066 0.585146 0.371636 0.181257 0.203817 0.396430 -0.211912 -0.070013 0.040670 0.747368 -0.001384 -0.496767 -0.229038 0.119068 -0.923408 -0.099275 -0.550002 0.098077 -0.163188 0.569952 -0.234855 0.225622 0.243144 -0.248599 0.064583 -0.486770 0.339809 -0.262014 0.036139 -0.206497 0.266451 -0.161324 -0.045206 0.020800 0.055333 0.235954 0.396322 -0.205202 0.066036 -0.279777 -0.697792 -0.395560 0.635326 -0.155931 -0.278114 -0.345540 0.003518 0.458750 0.271224 -0.207102 -0.464971 -0.017907 0.129636 -0.261084 0.252398 -0.488536 -0.021940 -0.145366 0.290848 0.254359 -0.030198 0.112956 -0.633023 -0.258977 0.088212 0.593376 0.151989 -0.137246 -0.176350 -0.137223 -0.123146 -0.265539 -0.406251 -0.302315 -0.070996 0.188076 0.078156 0.228020 -0.420368 -0.112656 -0.409076 -0.276685 0.403740 0.641477 0.251178 0.239845 0.565710 -0.128911 -0.130211 -0.223518 -0.333075 0.301143 0.136756 0.165870 -0.118495 0.107834 0.160455 0.009522 -0.507037 0.413610 -0.495382 -0.401890 -0.591791 0.207817 -0.200619 -0.134612 -0.531843 0.322647 0.603860 -0.383986 -0.000640 -0.150209 -0.171666 -0.311065 -0.314303 0.192844 -0.048644 0.072960 0.172530 0.520302 -0.561658 0.219076 -0.299676 0.269353 0.118324 -0.509492 -0.269365 -0.149275 -0.010351 -0.009526 -0.106888 -0.058273 0.111970 0.062169 0.502480 -0.089649 0.412917 0.251233 -0.522773 -0.878649 -0.348766 0.307859 0.288021 0.006207 0.130094 -0.442646 -0.220678 -0.342231 0.573298 -0.428909 -0.064656 -0.176321 0.119584 0.319640 -0.205142 -0.335358 -0.216597 0.155408 0.272104 -0.636301 0.357575 0.168827 -0.309730 -0.272143 -0.806556 0.352266 0.179736 0.975153 -0.232187 0.156196 0.069127 0.327983 -0.202903 -0.420683 0.470333 -0.055304 0.001240 -0.263885 -0.428334 -0.089333 0.185975 0.240822 0.110837 0.058450 0.283341 -0.229863 0.578861 0.146591 -0.194681 -0.101451 -0.449173 -0.037502 0.648279 0.128369 0.276111 -0.461270 -0.477200 -0.337534 0.049966 0.378124 0.230492 0.195645 0.262531 -0.143154 -0.090547 0.044879 0.358012 -0.172992 -0.535627 0.236242 -0.303420 -0.194816 0.355045 0.024091 0.104155 0.086288 -0.797639 -0.514660 0.132808 0.076309 0.030891 0.243569 0.415321 -0.471435 0.074565 0.158161 0.128365 -0.029308 -0.291589 -0.201676 -0.262073 -0.114195 -0.136346 0.231153 0.208494 -0.129505 -0.038282 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = 2.184775 0.427130 -0.179860 2.767377 0.577011 -2.162890 0.584036 1.996783 -0.678670 -5.178078 -3.789476 0.891895 0.173796 -1.072188 1.433460 0.611877 -0.050235 1.055617 -6.708987 2.079192 2.351276 1.381347 -0.158797 -1.567509 0.871596 -1.154531 -1.378812 0.988596 0.234974 3.136934 -2.032064 0.759870 2.378914 0.264004 1.543029 2.580457 -0.799026 0.183853 1.457281 0.458971 4.579407 2.449265 -0.308645 1.679677 1.878259 3.070791 -0.947509 2.453732 -1.482082 -1.924654 1.439398 -0.637909 -1.916091 0.184378 -2.050816 1.933222 4.358344 1.931354 -1.779758 1.767519 -1.174447 0.032651 0.993425 -1.174573 3.512197 2.414659 1.400462 1.687247 4.587715 -1.151305 -0.171464 1.029510 2.084640 -0.772534 1.131728 -1.816121 -2.173575 -3.275281 -0.380603 -5.980291 -0.797620 -0.201904 5.133516 -3.111663 1.140699 1.819926 0.872558 2.864739 -1.759844 -0.854801 -2.054394 0.459025 -2.052367 5.230912 -0.121584 0.949625 -0.382659 1.509629 1.424482 2.184811 -0.875744 -1.697090 -2.842252 -6.720123 -1.648390 -0.824004 0.543578 0.489574 -4.326423 -0.836190 1.223001 2.927790 -4.869956 -0.199812 2.155240 1.610887 -0.389254 -0.448003 -3.229220 -0.059128 -0.730904 0.502392 1.067109 -1.610057 -0.539866 -2.299403 -0.037637 0.356825 1.129225 -0.487742 -2.975954 -1.347430 -0.549047 -0.950837 -0.363657 0.550586 0.920681 -2.015808 1.840984 -2.427482 2.337287 -4.537745 0.185860 -1.889674 -3.052898 -0.311167 2.118543 2.237560 1.004567 -0.347721 -1.023787 -1.366134 -3.996957 -4.322805 1.173853 -0.537020 2.291230 -0.243841 -0.207934 0.065513 -1.250254 -0.655228 0.951457 -1.741540 -0.055671 -1.566264 5.291544 -0.581527 -0.867269 -2.521737 -0.679618 1.743014 -0.789155 1.038356 -1.217576 -1.713429 -4.206854 -2.691607 2.571341 -0.682930 0.390929 -1.923461 0.828254 -3.067847 1.169076 -2.500402 0.609108 -0.421841 -1.798795 -3.122088 -0.518029 -0.462539 -0.461243 -0.583386 -2.085174 -0.325105 2.917849 1.604201 0.875753 0.479975 0.468456 -3.448724 -3.274489 -0.183407 -0.543597 2.323532 2.249104 0.135802 -2.381368 -0.562253 -3.263765 2.935760 -1.224254 0.185183 -1.006092 -1.052332 3.933683 -1.551430 -1.099318 -3.136486 0.670129 0.223820 -4.189554 4.238435 1.854549 -1.966167 -0.839195 -1.898411 0.870894 2.041430 3.486959 -1.695882 -1.249131 0.586411 -1.613876 -0.368921 -1.620432 2.464360 -2.099008 2.195512 -2.326308 -1.332362 1.795950 2.455612 -0.247551 1.966840 0.338125 0.454972 1.272507 2.692511 1.670615 -1.110445 -2.671914 -5.458590 1.346643 0.116502 0.285869 -0.630916 -0.958501 -2.914883 0.078464 1.077276 3.520214 3.134386 -0.285149 2.374690 -3.085526 -3.252750 -0.994689 1.063634 0.475565 -1.771679 -0.075937 -1.384302 0.683281 1.306789 0.761308 1.505726 -3.000640 -3.158106 -0.413321 2.903013 0.896529 -0.988563 3.362908 0.912040 -1.736926 -0.185530 -0.019440 0.836860 -0.263281 -1.166960 -1.501495 -1.600253 0.455255 -1.442079 2.953011 -0.359856 0.577792 1.621096 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = 3.343033 0.537212 -0.217815 4.435345 1.051657 -3.210902 0.543388 3.343938 -1.080093 -7.506712 -5.808223 2.067331 0.278125 -0.622287 2.251634 0.907533 -0.341972 1.047045 -10.093486 3.283430 2.798553 1.899575 -0.363183 -2.621031 1.237668 -1.406019 -1.060270 2.044108 0.457405 4.089427 -3.116834 0.945805 3.399972 0.425587 2.688882 3.194022 -0.325425 -0.117844 0.496440 -0.102339 7.082779 3.919537 -0.549730 2.847932 2.501367 4.632013 -0.557243 3.404199 -1.920821 -2.975765 1.650838 -1.588556 -3.377647 -0.279193 -3.325667 3.408751 5.528636 2.652947 -2.830395 2.655942 -1.382440 -0.426349 1.511900 -2.065310 5.569822 2.608094 2.949801 2.417098 6.438481 -2.164206 -1.005734 2.351937 3.720200 -0.303931 1.439703 -3.453817 -3.253478 -5.533117 0.221820 -9.127894 -1.710852 -0.580582 7.545467 -4.718073 1.675914 2.793143 0.279362 4.017258 -3.188091 -0.852162 -3.316973 0.227484 -2.440966 7.394965 -0.156565 0.406061 0.541444 2.383091 2.615040 4.103676 -1.076457 -2.149499 -3.908889 -9.454172 -1.869213 -0.349200 1.046991 0.621535 -5.416465 -1.630509 1.481044 4.889326 -6.425574 -0.863882 3.882048 2.180285 -0.009752 -1.004691 -3.839326 -0.025366 -0.440413 0.798088 2.567439 -2.853652 -0.274501 -1.915679 0.593457 0.380944 2.176767 -0.192363 -4.718943 -2.671776 -0.643528 -1.017248 -0.495739 -0.291035 0.887576 -3.129851 3.150865 -3.040796 3.721795 -6.547210 0.635322 -2.638528 -3.810178 -0.144734 4.155085 3.437208 1.861747 0.066676 -1.421484 -1.699748 -5.492465 -6.633980 2.160950 0.570935 3.038932 -0.313898 -0.287787 0.725587 -1.326002 -1.255682 1.657176 -2.860947 -0.819620 -1.954512 6.355293 -0.538694 -1.217328 -4.070470 -0.042161 2.510871 -1.145465 1.652578 -1.632450 -4.132653 -5.468799 -4.094083 3.643092 -0.703752 0.544189 -2.270636 0.700276 -4.290523 1.761269 -4.405886 1.733891 -0.349514 -3.644791 -4.579198 -0.699477 -0.743786 -0.570704 -0.598469 -2.916548 -0.399237 3.587848 2.686961 0.866041 0.801808 1.212470 -5.476407 -5.003122 -0.591538 -0.803985 4.474941 2.705218 0.336628 -3.887686 -0.750941 -4.489899 4.631485 -2.031083 0.064028 -2.067796 -1.633523 5.612774 -2.568195 -1.192890 -4.647437 1.400646 1.126537 -6.638446 6.244756 3.687041 -2.682409 -1.684664 -2.435795 0.773704 3.402304 6.009927 -2.714975 -2.080300 0.792318 -1.722534 -0.779247 -2.481428 3.766878 -2.680233 2.357800 -3.660177 -2.631401 1.879219 3.384235 0.239421 2.951013 0.797294 1.290879 0.893289 4.461562 2.404759 -1.606962 -4.130322 -8.546021 2.634243 1.821141 -0.096728 -0.482186 -1.880069 -4.472821 -0.065462 0.953032 4.980129 4.730079 -0.533995 3.570368 -4.584360 -4.639390 -1.676498 1.501032 0.134673 -2.242334 0.465429 -2.247743 1.083622 1.632259 0.017901 1.194091 -3.327524 -4.772945 -0.987262 3.738653 1.808507 -0.730685 5.146004 1.436265 -2.685547 -0.405549 0.127382 0.897706 -0.217681 -2.175455 -2.524645 -2.543397 0.385555 -1.663458 3.276718 0.012318 0.220291 2.257425 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = 0.989180 0.562649 0.438346 0.939506 0.105629 -1.087681 0.297938 1.333678 -1.128936 -2.572195 -1.814303 1.250944 -0.232642 -0.325780 0.496373 0.150300 -0.079813 0.152026 -4.418427 1.172296 1.248399 0.648958 0.336687 -0.878249 0.615633 -0.742805 -0.241295 1.037545 0.071813 1.441489 -1.223030 0.081674 1.093181 0.467222 1.099045 1.252921 -0.669851 -0.305543 0.506815 -0.154472 2.324295 1.305564 -0.408951 0.620260 1.169381 1.561082 -0.086777 0.026475 0.207905 -1.025537 -0.030846 0.232179 -1.404545 0.002083 -0.908520 0.580921 1.155910 1.102588 -0.908265 0.776768 -0.892248 -0.363671 0.291113 -0.718109 1.765784 0.452476 0.959104 0.546742 1.936901 -0.779270 -0.422514 0.909730 1.073468 -0.055727 -0.015807 -0.596026 -0.984147 -2.948801 0.115365 -4.240275 -1.247885 0.182175 2.656004 -1.241487 0.616966 0.800459 0.013782 1.275657 -1.006724 -0.429672 -1.260703 0.100889 -0.614139 2.227093 -0.016736 -0.083059 0.577242 0.822419 1.100029 1.604013 -0.528588 -0.741067 -1.330642 -3.194856 -0.078880 -0.286695 0.430359 0.125180 -1.645610 -0.236403 1.673090 2.406520 -2.001325 -0.276892 1.389501 0.674787 -1.103465 -0.382669 -1.354067 -0.014534 -0.456463 0.352387 1.221430 -0.865494 -0.205003 -0.033514 0.291841 0.043699 0.817587 -0.018674 -1.862693 -1.265462 0.316119 -0.692998 -0.388488 -0.181961 0.165112 -0.345865 0.981623 -1.097614 1.390954 -1.804887 1.038015 -0.827326 -0.457900 -0.046736 0.757234 2.180127 -0.410573 0.067769 0.047886 -0.224086 -1.443887 -1.513970 0.838710 0.101592 1.088276 -0.437172 -0.102501 0.406371 -0.302792 -0.463396 -0.094989 -0.810479 0.025446 -0.803513 1.937226 0.070906 -0.253459 -1.122183 -0.073109 0.759836 -0.517469 0.231462 -0.836412 -1.367380 -1.763982 -1.658153 1.208123 -0.214291 -0.261119 -0.794818 0.325456 -0.463725 0.901689 -1.210328 0.403934 -0.305841 -1.168508 -1.368738 -0.200331 -0.368065 -0.806511 -0.415299 -0.700765 -0.491562 1.032261 0.343434 0.550534 -0.092707 0.317476 -1.477714 -1.297672 -0.099163 -0.121495 0.847245 1.172856 -0.065081 -2.316605 -0.279820 -1.310820 1.685036 -0.248264 0.088807 -0.986040 -1.224300 2.155041 -0.452456 0.068600 -0.764257 0.632005 0.531516 -3.052875 2.384460 1.582208 -0.812342 -0.694225 -0.679155 -0.045231 1.491409 1.707324 -0.906280 -0.497514 0.044603 -0.771951 -0.116522 -0.070187 1.495987 -0.870051 0.994001 -1.212049 -1.074108 0.788137 1.049117 0.265858 1.153276 0.172973 0.736062 0.599043 1.441119 0.565377 -0.384403 -1.238738 -2.830087 0.950474 1.101625 0.249608 0.267328 -0.297694 -1.921473 -0.275568 0.062978 1.758771 0.799878 -0.972863 1.010006 -1.099103 -1.456192 -0.823540 0.337390 -0.200840 -0.644604 0.609361 -0.503215 0.155445 0.556907 -0.093522 0.621091 -0.646878 -1.589294 -0.374666 0.943323 1.643882 -0.433605 1.542873 0.356294 -1.215330 -0.310970 0.113928 0.423327 -0.048551 -0.455395 -0.840787 -0.941713 0.280372 -0.354922 0.933974 0.477579 0.286763 0.502990 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 1.478452 1.684419 -0.143449 1.248586 0.715014 -1.266134 -0.094742 2.243848 -1.826445 -1.660037 -2.333751 1.318109 -0.494759 0.024890 2.406947 0.188899 0.140449 -0.192684 -3.563742 1.255345 -0.091283 0.097754 -0.162743 -1.232413 0.738733 1.274273 -1.405300 1.290819 0.358621 1.026535 -1.344183 -0.183437 0.431365 0.944291 1.911885 -0.746196 1.366104 0.555396 -0.669813 0.051814 2.897402 1.147285 -0.337382 1.977479 1.859500 1.474682 -0.869714 1.991035 -0.093463 0.127610 1.699810 -2.365644 -0.983378 0.829532 -0.983882 1.033422 2.276806 0.626004 -1.299565 1.536334 0.440052 -0.439040 -0.150677 -2.622476 1.879880 1.280101 1.045717 -0.036698 1.855340 -0.523576 -1.246412 0.180645 2.685214 0.216216 -2.687659 -2.798054 0.061198 -4.419099 0.766339 -4.151983 -1.211120 -1.158951 2.795794 -1.686076 1.094657 1.857490 -2.042733 -0.029149 -1.808822 -0.083398 -0.976245 -1.036137 -0.270865 1.893404 0.133676 -0.512955 1.586222 0.358028 2.176944 2.265612 -0.518021 0.183537 -2.337657 -2.207045 -0.856334 3.059284 0.364236 -0.671678 0.308504 -1.369910 0.937733 0.651713 -1.195073 -1.867321 2.002442 0.418192 -1.440256 1.498716 -2.320014 0.270050 0.419883 0.699363 1.968957 -1.322302 -0.234040 -0.920139 -0.827252 -0.215127 1.888391 0.053205 -0.526643 -1.391273 -0.470878 -0.404984 -0.837886 -3.005623 -2.113550 -0.803256 1.690727 0.201566 1.273707 -2.007108 -0.472375 -0.110482 -0.687270 0.710528 2.351622 1.094436 1.274794 1.919088 -0.487776 -0.503215 -0.566579 -1.488921 2.356860 0.752660 1.692600 -0.459030 0.069345 0.530171 -0.017300 -1.755470 0.818561 -1.109694 -1.016169 -1.638755 1.522045 -0.496020 -0.451609 -2.380214 1.154467 2.021393 -0.560544 -0.739739 -0.598864 -2.458029 0.435756 -1.204518 1.065619 0.140560 0.677445 0.673961 1.995702 -2.371463 -0.055220 -2.227029 1.207145 0.588188 -2.413599 -0.591181 0.173220 -0.279589 0.902318 -0.181382 0.003584 -0.327429 0.754239 3.074210 -0.337639 0.898473 0.950446 -2.165372 -3.243217 -1.498860 0.254056 1.508777 -1.008746 0.874029 -2.319408 0.556529 -1.375527 2.182063 -1.004030 -0.919748 -1.946713 0.109645 2.146071 0.104370 -1.396562 -1.308883 0.662180 1.492873 -3.130067 0.395189 1.039660 -0.383172 -1.551218 -1.368100 -0.022150 1.843753 3.583010 -0.518312 -0.807082 0.198760 0.312338 -0.196572 -1.472372 2.232302 -0.254253 0.683639 -1.538723 -1.323631 0.406542 1.337062 0.988665 2.173013 0.622400 2.258642 -0.807688 2.243712 -0.223098 -1.236914 0.363600 -2.750907 -0.017914 5.010754 0.061378 0.809853 -1.308324 -1.893635 -1.204900 -0.438301 1.277593 1.485077 0.321221 1.024924 0.357210 -1.078374 -0.263865 1.645546 -0.259739 -1.682703 0.284608 -0.488131 0.350730 1.607761 -0.761279 1.813301 -0.115949 -3.171036 -2.539362 0.099288 0.154014 0.597986 1.660681 0.437904 -1.891520 0.478544 -0.271958 1.406737 1.279422 -1.643144 -1.136128 -2.002732 -0.514298 0.033227 0.043767 0.513653 -0.500941 0.816827 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = 0.774496 -0.056557 -0.322410 1.386150 0.238824 -0.887660 0.247132 0.471997 -0.312347 -2.164890 -1.029693 0.199242 0.228420 -0.379578 0.390422 0.592776 -0.181908 0.516516 -1.741201 0.844543 0.851914 0.559383 -0.137090 -0.709494 0.249103 -0.529790 -0.049905 0.310819 0.150189 1.331907 -0.737369 0.314566 1.071172 -0.113358 0.428252 1.113650 0.305817 0.276400 0.121334 0.416934 1.833127 0.737243 -0.102169 0.505735 0.547605 1.308150 0.010341 1.150469 -1.071629 -0.808293 0.666825 -0.018384 -0.621891 -0.256376 -0.901283 0.848752 1.690655 1.095840 -0.758484 0.677426 -0.607740 0.031697 0.501950 0.105506 1.414629 0.968702 0.692510 0.945290 2.012605 -0.656073 -0.150513 0.629554 0.702030 -0.386880 1.178682 -0.820899 -1.142316 -1.154310 -0.321000 -1.708050 -0.293189 0.160497 2.226746 -1.404634 0.244879 0.886218 0.546480 1.237742 -0.774381 -0.214461 -0.891598 0.149886 -0.804108 2.473810 0.043638 0.391899 -0.417915 0.689700 0.578440 0.855481 -0.009183 -0.849273 -1.011455 -2.242652 -0.994619 -0.555344 0.147409 0.314993 -1.948889 -0.546447 0.565375 1.069045 -2.209186 0.233260 0.987630 0.890656 1.230622 -0.366990 -1.147538 0.355259 -0.110870 -0.014641 0.397276 -0.650074 -0.221765 -0.693061 0.299488 0.095865 0.251650 -0.266969 -1.646865 -0.437417 -0.311847 -0.463011 0.054289 0.264813 0.467088 -1.361683 0.731489 -1.027806 1.011071 -2.029114 -0.121486 -0.596157 -1.703867 -0.217298 1.220636 0.523479 0.781826 -0.486265 -0.964560 -0.635697 -1.730722 -2.054712 0.265780 -0.143510 0.554259 0.255851 -0.131301 0.077711 -0.538167 -0.074869 0.762929 -0.665703 -0.076266 -0.317968 1.901649 -0.298248 -0.352380 -1.137852 -0.438496 0.503606 0.350499 0.816330 -0.456381 -1.093840 -1.951161 -1.071295 1.082684 -0.329052 0.160495 -0.806168 -0.108951 -1.604914 0.548395 -1.144385 0.590189 -0.129389 -0.677656 -1.383512 0.102111 -0.205068 -0.334101 -0.149105 -0.898733 -0.116191 0.598286 0.048391 0.313504 0.051781 0.182597 -1.688993 -1.462079 0.175517 -0.281851 1.170929 0.692586 0.247713 -0.658856 -0.289462 -1.438483 0.991377 -0.655763 0.096125 -0.113560 -0.206306 1.617272 -0.826751 -0.318854 -1.484812 0.363321 0.079066 -1.115183 2.005987 0.988650 -0.761420 -0.239871 -0.219301 0.288502 0.801571 1.287969 -0.804780 -0.723428 0.385860 -0.403241 -0.171067 -0.533587 0.831555 -1.043229 0.880650 -0.954146 -0.529670 0.484435 1.218929 -0.222699 0.494263 0.089173 -0.386735 -0.107292 1.127296 0.876527 -0.166351 -1.094655 -1.976687 0.595985 -0.998579 -0.111833 -0.317291 -0.409432 -0.821447 0.393677 0.526584 1.473683 1.172480 -0.318830 1.057488 -1.768034 -1.467782 -0.329122 0.243649 0.260615 -0.755061 0.012889 -0.672348 0.306543 0.418005 0.207323 0.181873 -1.070222 -0.522992 -0.115269 1.338159 0.218813 -0.432052 1.473945 0.345135 -0.494754 -0.095276 0.210077 0.270278 0.034499 -0.591077 -0.546208 -0.489369 0.347130 -0.614335 1.209129 -0.433088 -0.054519 0.779170 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 2.074297 0.153914 0.112729 1.533266 0.653734 -2.304730 0.507145 1.801522 -0.787016 -2.752329 -1.848081 1.176496 -0.161221 -1.454543 0.784517 0.293641 -0.156571 0.440830 -3.974807 1.964340 0.746150 0.674303 -0.913666 -1.704069 0.484805 -0.203591 -0.978858 1.205302 -0.223431 1.636355 -1.533924 -0.154170 0.966616 0.571397 1.336633 1.324485 0.060427 -0.243318 1.065374 0.256525 3.055615 1.710117 -0.536456 1.210231 2.000342 1.721079 -0.588190 1.981502 -1.217897 -0.473559 0.904303 -0.591845 -1.510453 0.211263 -1.612526 1.208423 2.789336 0.975313 -1.121427 1.295153 -1.092741 0.020929 0.750615 -0.424910 2.613439 1.702683 0.777155 0.871132 3.489385 -0.676765 -0.344578 0.889238 2.661824 -0.295904 0.257069 -0.980605 -1.255765 -3.179500 0.065266 -3.907172 -0.294200 -0.358442 3.483512 -1.702366 0.981995 1.469900 0.716798 1.445481 -1.890022 -0.480780 -1.309094 0.476883 -1.354291 3.916106 -0.575774 0.974354 -0.231921 0.933663 1.154973 1.756565 -0.822506 -0.946684 -1.853148 -4.442384 -1.084088 0.182784 -0.871108 -0.827637 -2.654981 -0.554583 1.858564 2.244355 -2.639444 -0.691020 1.281955 0.356955 0.104636 0.291629 -2.089131 0.193816 -0.807391 0.497086 0.465835 -0.816469 -0.582080 -1.503965 0.119800 0.433514 1.007970 -0.140151 -2.687576 -0.346385 0.099265 -0.780222 -0.499191 -0.388819 -0.484755 -1.755006 0.786116 -1.530577 1.453707 -2.903757 0.006508 -1.484059 -1.926977 0.538177 1.661781 1.534067 0.692224 0.652733 -0.176781 -0.849855 -2.203350 -3.136961 1.097082 -0.676252 1.180759 -1.087218 0.171550 -0.578318 -0.364978 -1.372882 0.939917 -1.603337 -0.236683 -1.739860 3.691444 -0.477815 -0.519886 -1.579800 -0.080486 2.126550 0.100536 0.108837 -1.056672 -1.986232 -2.172092 -1.833480 1.374333 -0.087195 -0.122834 -0.751399 0.723313 -2.044563 1.113892 -1.178167 1.178873 -0.436714 -1.254187 -1.754974 -0.452745 -0.251137 -0.254539 -0.992935 -0.944441 -0.030732 1.063224 0.974125 0.057596 0.665440 0.478662 -2.518841 -2.856412 -0.382426 0.975437 2.048260 1.338558 0.733845 -1.580029 -0.170882 -2.378132 2.314269 -1.817605 -0.126463 -0.334838 -0.946572 2.995902 -0.874722 -1.171924 -1.837518 0.910523 -0.020544 -2.115943 3.372516 1.678591 -1.794072 -1.170815 -1.957391 0.594147 1.642471 3.365234 -1.286404 -0.488219 0.708377 -0.295030 -0.710512 -0.894312 1.827090 -0.997056 1.992875 -1.721337 -1.396085 0.668781 1.882711 -0.059959 0.912939 -0.677043 0.373349 -0.168237 2.237086 0.687698 -0.426741 -1.750822 -3.446761 0.500616 0.149189 0.240305 0.207359 -0.970672 -2.322624 -0.451646 0.485970 2.481586 1.559275 -0.344096 1.272952 -1.969526 -2.008646 -0.383021 1.100739 0.068306 -1.614687 0.927020 -1.144017 -0.121506 0.756185 0.739191 0.775447 -1.327088 -2.499095 -0.838287 1.252147 1.013743 -1.505981 2.044412 0.628525 -1.077427 -0.179737 0.006631 0.940441 0.179883 -0.662592 -0.957926 -1.727578 0.373973 -0.708548 2.655386 0.623413 0.673992 0.989172 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.585655 0.024872 0.221453 0.593421 0.398858 -0.720082 0.070010 0.466186 -0.383223 -0.772644 -0.473478 0.181595 -0.191657 -0.326547 0.410748 -0.058758 -0.007018 0.031771 -0.739429 0.574004 -0.036066 0.124963 -0.245385 -0.627969 0.194180 0.348015 -0.266974 0.350395 0.030368 0.405451 -0.656558 -0.103518 0.075843 0.362260 0.488001 -0.005515 0.393368 -0.056096 0.008440 -0.129713 0.961636 0.226901 -0.127791 0.544570 0.668675 0.368950 -0.199476 0.750696 -0.287745 0.101308 0.446729 -0.586861 -0.224790 0.187856 -0.556964 0.531416 0.971009 0.345336 -0.274278 0.274353 -0.206141 0.140138 0.155202 -0.286635 0.766486 0.621650 0.131641 0.266325 0.981581 -0.332722 -0.212045 0.241291 1.171658 0.050252 -0.346628 -0.393630 -0.085711 -1.300871 -0.083742 -0.890736 0.112375 -0.251916 0.953776 -0.408385 0.377822 0.550020 -0.115199 0.161602 -0.655520 0.131387 -0.420587 0.158030 -0.353649 0.905023 -0.264290 0.154275 -0.015976 0.144407 0.399826 0.665301 -0.227975 -0.072613 -0.496521 -1.279448 -0.512792 0.547399 -0.366936 -0.499727 -0.614598 -0.134266 0.690941 0.487301 -0.522033 -0.546657 0.195770 0.154781 -0.161251 0.155788 -0.638250 0.023415 -0.233959 0.222733 0.157610 -0.179093 -0.086716 -0.704770 -0.225651 0.121444 0.611969 0.038036 -0.485862 -0.155947 -0.161268 -0.150822 -0.297808 -0.533051 -0.470475 -0.471991 0.218432 -0.186094 0.387729 -0.743203 -0.143548 -0.526612 -0.555703 0.433934 0.867173 0.158473 0.397593 0.616219 -0.155032 -0.317867 -0.384769 -0.816618 0.476709 -0.034899 0.320433 -0.267651 0.125122 -0.056430 -0.045346 -0.789463 0.508368 -0.638297 -0.347905 -0.759826 0.692958 -0.354016 -0.162676 -0.717659 0.347917 0.990640 -0.178960 -0.074433 -0.348475 -0.464128 -0.446016 -0.570559 0.329777 -0.035121 0.010766 0.112820 0.508797 -0.793469 0.395063 -0.385823 0.515549 -0.010497 -0.657113 -0.480370 -0.142606 -0.097568 0.040761 -0.175504 -0.180243 0.130510 -0.002340 0.564827 -0.137215 0.447025 0.287590 -0.932093 -1.250128 -0.431889 0.575609 0.575689 0.098340 0.345719 -0.507622 -0.214417 -0.609798 0.790800 -0.729863 -0.126804 -0.096627 -0.011688 0.752235 -0.263443 -0.440883 -0.538743 0.299199 0.253725 -0.611736 0.857494 0.376364 -0.582194 -0.526690 -0.985747 0.304502 0.403834 1.431062 -0.433823 0.010894 0.297576 0.257794 -0.321197 -0.562769 0.637783 -0.092576 0.453626 -0.559037 -0.657476 -0.085612 0.536544 0.122454 0.210662 -0.051048 0.297370 -0.389484 0.937325 0.192301 -0.112925 -0.361791 -0.814776 0.032130 0.517560 0.201992 0.294576 -0.582108 -0.751596 -0.278958 0.245996 0.706187 0.498652 0.197127 0.421951 -0.405680 -0.374543 0.136348 0.422781 -0.029673 -0.783392 0.366747 -0.487703 -0.223079 0.316287 0.126257 0.186055 -0.041211 -1.010320 -0.599634 0.267295 0.202659 -0.249332 0.524180 0.395218 -0.538586 0.127652 0.123385 0.382330 0.060870 -0.277185 -0.267041 -0.548241 -0.048598 -0.177824 0.737336 0.264232 -0.009514 0.146945 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.212741 0.075008 -0.004509 0.402056 0.085799 -0.516958 0.220464 0.270132 -0.208551 -0.640086 -0.205563 0.066263 0.034350 -0.329014 0.055656 0.077631 -0.167635 0.348677 -0.616231 0.347935 0.274862 0.246845 -0.123438 -0.465033 0.018178 -0.161209 -0.194865 0.349694 -0.047039 0.482713 -0.254943 -0.096692 0.331683 0.112204 0.126296 0.482248 0.374282 0.077209 0.147549 0.262046 0.614966 0.355898 -0.262087 0.088215 0.326328 0.482652 0.116497 0.021275 -0.703387 -0.202824 -0.127647 0.019263 -0.280702 -0.224383 -0.289968 0.239612 0.601820 0.535467 -0.263264 0.390021 -0.344384 -0.057932 0.223408 0.054732 0.472835 0.280843 0.100671 0.270755 0.856576 -0.268327 -0.103517 0.187502 0.377514 -0.278613 0.344909 0.098600 -0.451221 -0.929101 -0.064354 -0.862791 -0.219708 0.224554 0.650481 -0.473251 0.189916 0.528785 0.313107 0.374739 -0.426271 -0.222326 -0.333576 0.055659 -0.299377 1.134041 0.149428 0.158689 -0.149296 0.349073 0.407973 0.358922 -0.052660 -0.286219 -0.390436 -1.025413 -0.266542 -0.193034 -0.256135 -0.097650 -0.608081 -0.356531 0.752840 0.728636 -0.794130 0.075858 0.438609 0.222682 0.192653 -0.535076 -0.361292 0.406897 -0.197051 -0.172904 0.173191 -0.319732 -0.187666 0.060973 0.167732 -0.009021 0.041966 -0.063415 -0.687575 -0.067815 0.061578 -0.263067 0.012908 -0.003515 -0.071679 -0.523248 0.157695 -0.582677 0.421416 -0.606957 0.280772 -0.052493 -0.622816 0.005207 0.231971 0.195313 0.000000 -0.183889 -0.278565 -0.170659 -0.487753 -1.072215 0.335328 0.015697 0.224808 -0.172525 -0.076462 -0.191899 -0.173844 -0.136011 0.395724 -0.280451 0.047676 -0.046523 0.923535 -0.062421 -0.156151 -0.363365 -0.113354 0.431444 0.387198 0.114865 -0.328953 -0.226619 -0.531084 -0.423234 0.373729 -0.023424 -0.142049 -0.270109 -0.131916 -0.599395 0.407941 -0.264365 0.418144 -0.090862 -0.160087 -0.499374 -0.032121 -0.088891 -0.232941 -0.116046 -0.278260 -0.060470 -0.000157 -0.401980 0.004116 -0.086977 0.229036 -0.409123 -0.496738 0.068964 0.119615 0.340054 0.288905 0.314938 -0.330564 0.018795 -0.519763 0.507558 -0.228933 0.010556 -0.054281 -0.246700 0.788275 -0.207592 -0.347186 -0.370303 0.263033 0.005238 0.087365 0.905362 0.525098 -0.323091 -0.206836 -0.036258 -0.024073 0.452332 0.667110 -0.473544 -0.274753 0.243556 -0.176639 -0.116745 -0.067230 0.302905 -0.325878 0.518836 -0.353790 -0.202340 0.058287 0.556696 -0.088218 0.302439 -0.137885 -0.127509 -0.260082 0.421983 0.210612 0.005420 -0.391190 -0.340942 0.266790 -0.702218 0.054906 -0.097279 -0.081889 -0.324892 0.147250 0.212266 0.553770 0.479745 -0.456247 0.350827 -0.628268 -0.553056 -0.077440 0.125179 0.144923 -0.416938 0.307567 -0.215887 0.112380 0.118769 0.110556 0.126430 -0.312036 -0.238136 -0.102988 0.298979 0.175181 -0.463184 0.584085 -0.058798 -0.206858 -0.046789 -0.053950 0.198497 0.077300 -0.063559 -0.194151 -0.318143 0.265029 -0.173055 0.670100 -0.097802 -0.034026 0.457734 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = 2.892775 0.518977 -2.963772 4.605018 -0.622897 -0.695818 -0.049248 0.688673 -2.106843 -8.624262 -5.214801 5.138458 1.358389 2.529317 0.534100 2.962094 -0.741928 0.067437 -7.559923 1.432340 2.946813 0.308432 0.082824 0.704449 0.848723 -2.182415 1.421166 0.189010 1.465232 4.947434 -2.531918 3.013283 4.432975 -1.236844 0.844976 3.012367 -0.307348 0.417079 -2.031197 -0.991851 5.240005 1.717369 0.689652 1.646252 -1.011862 4.651125 -0.304907 6.857366 0.084290 -4.194494 3.089817 -0.349551 -3.357301 0.341508 -2.219995 2.178949 2.039690 2.349417 -1.549441 1.095483 -1.134195 -0.063717 1.048673 -0.405509 4.718392 2.399281 4.015157 2.757076 4.077178 -3.160491 -0.369026 2.906143 -0.130865 0.138878 3.403538 -3.289361 -3.299544 0.956177 0.403053 -6.163499 -3.778662 0.072704 9.062283 -5.126170 -1.419757 0.335082 0.638533 5.093982 -2.164304 2.168006 -3.601706 -0.391149 -1.232422 5.808160 1.083102 0.269074 -1.222347 1.159375 1.578602 2.853727 -0.955073 -2.915997 -3.509807 -4.572375 -2.018775 -1.964518 2.174247 4.260102 -6.711696 -1.346704 -1.183890 6.253025 -6.977326 0.445425 3.496377 3.197399 6.046420 5.553591 -4.270663 0.474435 1.618928 0.101519 3.829114 -1.225993 0.971055 -1.072119 1.489570 -0.588486 0.883333 0.510358 -8.396065 -3.178454 0.474288 -2.262524 1.009427 1.334903 3.763506 -1.694392 3.450681 -1.413925 2.360413 -6.625072 -1.508316 -0.986829 -5.726557 -1.613024 5.057954 6.183982 4.030438 -1.902459 -2.362698 -2.026400 -6.390881 -6.005916 -0.447284 0.603041 1.343651 2.376309 -0.629311 3.324211 -2.451584 1.460634 1.889249 -1.608031 -1.372018 -0.512568 4.687238 -0.003499 -0.458429 -3.286754 -2.097336 -3.028435 -0.810544 4.966918 -0.381660 -8.130493 -7.961485 -3.468459 4.088741 -1.707165 0.890279 -2.932938 -0.925748 -4.123858 -0.992201 -3.971534 -0.422787 0.884338 -3.575696 -4.909585 1.125325 -0.230990 -3.753796 0.471356 -3.676970 -1.275450 4.931569 1.039494 2.724245 -0.122358 -0.639518 -4.170329 -3.276755 1.659268 -4.368798 3.915902 3.835439 -1.356227 -3.684810 -2.040335 -5.460567 3.291521 -3.608345 1.421362 -1.860033 0.654330 4.044035 -3.624429 0.488217 -2.935115 1.544167 1.709673 -10.043341 5.669422 3.819226 -0.976368 0.490631 0.974170 0.724479 3.213117 2.428744 -2.883101 -3.050797 -0.012851 -0.969887 0.275665 0.275932 3.102800 -4.057345 -0.145197 -2.183647 -1.283100 1.825904 2.418966 0.421009 0.952053 1.886626 -0.775980 3.217710 2.675242 2.800605 -2.218967 -2.497755 -10.746718 3.279719 -0.748871 -2.927104 0.203926 -2.693329 -1.966022 1.914971 -3.686936 4.172595 -2.188719 -1.427940 3.627382 -5.931763 -4.317131 -2.652193 -0.517875 -0.520208 0.539620 0.675188 -1.151914 1.821247 2.220375 -1.194356 -0.953809 -3.617696 -0.488004 0.466459 4.609142 0.694104 2.260864 4.695476 1.446178 -1.374466 -1.181812 0.655938 0.094447 -1.319509 -5.606852 -1.562304 0.254471 0.958449 -2.139527 0.303844 -0.797537 -1.723704 1.551936 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 1.165775 0.314334 -1.102346 2.246887 0.066268 -0.613184 0.129768 0.405489 -0.523438 -3.707022 -2.124002 0.829927 0.638785 0.136749 0.712187 1.188738 -0.407809 0.644465 -2.257900 0.880765 1.489126 0.756766 -0.055346 -0.327324 0.344696 -0.746211 -0.235588 -0.104250 0.569816 2.200577 -1.011857 1.124056 1.927079 -0.413369 0.091166 1.357479 0.237273 0.375280 -0.204051 0.053509 2.537823 0.759099 0.293214 0.892011 0.106001 1.973825 -0.447450 2.735534 -1.482233 -1.630269 1.467937 -0.580909 -0.862128 0.049041 -0.977185 1.419448 1.973871 1.435334 -0.898046 0.683021 -0.795509 0.198049 0.648040 -0.220385 1.919911 1.835941 1.322784 1.432285 2.493248 -1.130986 -0.041917 0.973244 0.185405 -0.477193 1.782865 -1.240503 -1.291680 -0.364749 -0.402668 -2.248078 -0.855563 0.057512 4.277524 -2.376403 -0.061938 1.034718 0.855126 2.158784 -1.004458 0.465384 -1.386105 0.118860 -1.006168 2.890851 0.154121 0.266498 -1.143512 0.678303 0.559854 0.910012 -0.075876 -1.088431 -1.985207 -2.423169 -1.666719 -0.810225 0.726454 1.234924 -3.344313 -0.646659 0.245368 1.874368 -3.481648 0.308374 1.521415 1.627398 2.582674 1.589540 -2.179193 0.322453 0.382938 -0.006438 0.835928 -0.602032 0.150299 -1.296395 0.212418 0.026792 0.145174 -0.212892 -3.046482 -1.014301 -0.440326 -0.988170 0.235189 0.707147 1.450834 -1.592878 1.388366 -0.996926 1.233031 -3.227421 -0.851553 -0.585972 -3.029274 -0.598221 2.560551 1.720599 1.785399 -0.761795 -1.638438 -1.292607 -2.810923 -2.492332 -0.266317 -0.150119 0.882345 0.866591 -0.130735 0.763704 -0.993263 0.554283 1.072832 -0.762487 -0.301022 -0.168705 2.971588 -0.685457 -0.432768 -1.843033 -0.952162 -0.302209 -0.254559 1.760097 -0.189128 -1.919039 -3.477138 -1.315735 1.769432 -0.720391 0.637891 -1.463987 -0.080231 -2.233003 0.055191 -1.769091 0.252747 0.303852 -1.475737 -2.233824 0.496065 -0.135439 -1.302752 0.085359 -1.475740 -0.260219 1.862037 0.471633 0.891511 0.080073 -0.163951 -2.463366 -2.006535 0.214305 -1.407879 1.829399 1.631632 -0.171679 -1.197669 -0.753605 -2.420564 1.466586 -1.326098 0.280405 -0.502874 0.361379 1.890831 -1.680238 -0.302791 -2.293310 0.290580 0.252576 -3.149821 2.388336 1.231474 -0.759119 0.110857 -0.238605 0.639591 1.175535 1.396516 -1.136319 -1.154239 0.123844 -0.607503 -0.048675 -0.637042 1.190029 -2.045132 0.591929 -1.099315 -0.493971 0.935582 1.528423 -0.300112 0.514429 0.742868 -0.498929 0.896549 1.273306 1.525383 -0.954312 -1.282516 -3.639626 1.044738 -1.004195 -0.747427 -0.532034 -0.846592 -0.806293 0.628960 -0.216709 1.919658 0.608652 -0.090880 1.650042 -2.786660 -2.064395 -0.535212 0.380787 0.124953 -0.531366 -0.081414 -0.604811 0.695276 1.054301 -0.091320 0.035354 -2.102411 -0.727250 -0.057373 2.488815 -0.081678 0.171342 2.169913 0.776294 -0.679552 0.024701 0.248987 0.320104 -0.546934 -1.770600 -0.659341 -0.060456 0.276263 -1.118250 1.135757 -0.769941 -0.723592 0.861415 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = 2.235958 0.391443 -2.104193 4.586220 0.149558 -1.373518 0.046312 0.679725 -1.100502 -6.954553 -4.235201 3.082394 0.980545 0.400479 1.006443 2.118204 -0.346121 0.641678 -5.827435 1.844388 2.427799 0.688518 -0.412726 -0.704621 0.687327 -1.859552 1.336933 0.446924 0.797540 3.990090 -2.019472 2.238735 3.387647 -0.667731 1.401790 2.736381 -0.836050 0.624274 -0.994888 -0.182999 5.084084 2.095636 0.295731 1.856256 0.465865 3.915455 -0.212352 3.952554 -0.989488 -2.843821 2.182262 1.778028 -2.042201 -0.256004 -2.575069 2.212109 3.397988 1.654070 -1.810277 1.198509 -1.339519 0.019338 1.184960 0.021013 4.415139 2.308887 3.183971 2.980615 4.519749 -2.233068 -0.253163 2.107134 1.167193 -0.334144 3.522207 -2.418307 -3.762781 0.236125 -0.803650 -5.106660 -1.586827 0.067143 7.357836 -4.083360 -0.588346 0.652271 1.190985 4.166810 -1.986603 0.501566 -2.765375 0.011620 -2.316169 5.849245 0.745506 0.854425 -1.143664 1.544881 1.124888 2.443808 -0.516192 -2.736347 -1.986525 -5.612659 -2.420811 -1.779776 1.781237 2.292487 -5.612000 -0.899915 -0.525390 4.249856 -6.122329 0.295829 2.691433 2.421291 4.102862 0.828469 -3.589583 0.448650 0.692548 0.323816 2.161380 -1.175096 0.171199 -1.368641 0.856323 -0.201194 1.108677 0.077420 -5.368219 -2.191687 -0.576575 -1.197518 0.474894 1.113868 2.630443 -2.596028 2.624266 -1.705607 2.714183 -5.928649 -0.811821 -1.898956 -4.466598 -1.086684 2.822184 3.493343 3.369032 -1.753215 -1.868444 -1.651459 -5.716040 -5.233628 0.286674 0.089959 0.973371 1.456999 -0.419186 1.854983 -2.090053 0.854652 2.445140 -1.828003 -0.771035 -0.688392 5.140261 -0.316122 -0.822228 -2.904825 -1.752446 -1.122498 0.119892 3.574588 -0.566501 -5.309758 -6.609265 -2.858107 3.330980 -1.439649 0.680715 -2.509610 -0.534343 -3.614180 0.146466 -3.614776 0.485756 0.120347 -2.297422 -4.067929 0.317521 -0.310466 -1.893659 -0.129657 -3.130008 -0.522585 3.793457 0.702550 1.606308 0.380766 -0.079875 -4.106055 -3.200875 1.235086 -2.425273 3.274315 3.020485 -0.544782 -2.875363 -1.426537 -4.501848 2.532795 -2.152930 0.908779 -0.901624 -0.299787 3.702962 -3.007444 -0.303500 -3.368994 0.855822 0.668008 -6.601985 4.954232 2.945551 -1.529591 0.019171 0.125672 1.063772 1.976088 2.771432 -2.485564 -2.222691 0.301892 -1.083419 -0.064470 -0.654417 2.573516 -3.172008 0.834102 -2.439865 -1.320437 2.029428 2.471750 -0.049509 1.043000 0.904435 -1.166033 1.763175 2.751856 3.035311 -1.002010 -3.119430 -7.623823 2.007728 -2.478724 -1.529763 -0.442624 -1.198463 -2.443465 1.121086 -0.947579 3.961489 0.051604 -1.252892 3.174766 -5.007746 -3.981958 -1.921906 -0.079306 0.140786 -0.831912 0.239014 -1.693688 1.074240 1.326602 -0.117842 -0.430629 -3.115796 -0.482113 0.272555 4.063827 0.687110 0.559780 4.025452 1.636712 -1.649613 -0.791537 0.626939 -0.318137 -0.604858 -4.119323 -1.624061 -0.536822 0.845055 -1.850994 1.529433 -0.922566 -0.208730 1.470106 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.658189 0.068677 0.362806 0.383752 0.202807 -0.613471 0.461386 0.805843 -0.154851 -1.492443 -0.980215 -0.021906 -0.043785 -0.263526 0.299942 0.006080 -0.024264 0.691609 -1.601428 0.398256 0.693843 0.718420 0.248817 -0.536044 0.225315 -0.113527 -1.137209 0.305046 0.214440 1.002241 -0.590533 -0.244728 0.767110 0.061061 -0.151854 0.915782 0.683511 0.061407 0.629104 0.111420 1.254640 0.310587 0.005002 0.627901 0.478816 0.881493 -0.400908 1.316217 -0.363061 -0.620088 0.650900 -1.581565 -0.747583 -0.011211 -0.411564 0.698151 1.431413 1.184683 -0.445119 0.779151 -0.072080 0.047207 0.263234 -0.818164 0.478239 1.183048 -0.169713 0.253050 1.535902 -0.539306 -0.215875 0.338591 0.564665 -0.085648 -0.017444 -0.858071 0.026376 -1.886242 0.000403 -1.693431 -0.301949 -0.181544 1.731887 -1.046547 0.594568 1.192062 0.060585 0.558354 -0.317265 -0.201093 -0.611686 0.250781 -0.180043 1.437371 -0.146938 0.094529 -0.230970 0.206578 0.583318 0.665378 -0.163975 -0.189797 -1.683524 -1.878401 -0.567952 -0.136027 -0.198839 0.070268 -1.268443 -0.516183 0.959603 0.578783 -1.529046 -0.143481 0.844922 0.723244 -0.395502 0.680271 -1.086473 -0.008077 -0.209056 -0.096914 0.178533 -0.720659 -0.288861 -0.783160 -0.289439 0.036710 0.085684 -0.404382 -0.978268 -0.490766 -0.289763 -0.306264 -0.038697 -0.117260 -0.018525 -0.588978 0.494861 -0.841376 0.495256 -1.300148 -0.156442 -0.102279 -1.073486 -0.127915 1.591231 0.298750 0.311467 0.118114 -0.657135 -0.784550 -0.672572 -1.138984 0.422024 -0.264137 1.174610 -0.000853 -0.076172 -0.244151 -0.192481 -0.532577 -0.236736 -0.353262 0.128178 -0.350517 1.485872 -0.552557 -0.166705 -1.215950 0.117279 1.065935 -0.400516 -0.155648 -0.531908 -0.025391 -0.751144 -0.917120 0.772361 -0.111615 0.189200 -0.373682 0.316375 -0.974672 0.381016 -0.549860 0.145872 0.066191 -0.967850 -1.036503 0.195573 -0.232986 -0.335574 0.195464 -0.541521 -0.125232 0.323485 0.777257 0.235320 -0.017690 0.135880 -1.385423 -1.301401 -0.623781 -0.072880 0.646464 0.609561 0.385102 -0.663356 -0.151115 -0.823197 0.997067 -0.776573 -0.095899 -0.383844 0.067663 1.310031 -0.332370 -0.130320 -1.290015 0.342423 0.336030 -1.379950 1.304319 0.438022 -0.543894 -0.443787 -0.779646 -0.025283 0.889324 1.202629 -0.502098 -0.516608 0.548483 -0.558599 -0.146978 -0.813820 0.700147 -0.488160 0.937811 -0.668096 -0.377871 0.192023 0.974209 -0.227282 0.727133 0.457136 0.583667 0.143050 0.901498 0.200775 -0.590200 -0.452735 -1.615315 0.626933 0.993109 0.285891 0.105837 -0.800264 -0.589568 0.408569 0.553906 0.954781 1.236045 0.482061 0.713574 -0.738041 -0.892255 0.275920 0.410090 0.461706 -0.664660 0.066723 -0.316532 0.212764 0.508295 0.065493 0.696778 -0.821137 -1.457843 -0.276074 0.999143 0.227631 -0.235697 1.102388 -0.097617 -0.515313 0.321902 -0.220523 0.877237 -0.156911 0.241844 -0.111964 -0.425152 0.103597 -0.437643 1.272586 -0.217455 -0.367459 0.640722 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 3.562888 0.977784 -3.985512 6.906152 -0.617715 -2.064972 0.031944 1.261036 -2.052571 -10.860202 -6.725528 4.331561 1.909872 1.029488 1.642467 3.899485 -1.097127 0.962230 -9.231608 2.862632 4.248058 1.086428 -0.485033 -0.695754 1.076141 -2.782184 1.028097 0.000619 1.263823 6.422256 -2.981854 3.954563 5.516766 -1.436365 1.653480 4.120499 -1.767457 1.052548 -1.098592 -0.005219 7.231148 3.304525 0.450466 2.131433 -0.184051 6.025969 -0.807964 6.659873 -2.871443 -4.798433 3.885310 1.583709 -3.392793 0.165807 -3.234254 3.155227 4.978328 3.057756 -2.239117 1.818346 -2.703630 0.122158 1.915509 -0.066325 6.967758 3.917044 5.070266 4.694822 6.584875 -3.233812 0.165391 2.943863 0.606233 -1.325918 5.268648 -3.843607 -5.368060 0.575976 -0.933763 -8.208986 -2.966112 0.451348 12.190204 -6.719774 -0.934382 0.837956 2.246807 6.834499 -3.283342 1.407452 -4.040416 -0.193481 -3.596864 8.797109 1.012987 1.270047 -2.199332 2.365277 1.721319 3.159526 -1.176073 -3.952743 -3.930082 -7.583484 -3.584621 -2.561203 2.762492 4.451197 -9.223233 -1.593058 -0.804163 6.574743 -9.960028 0.917508 4.211833 4.092897 7.220217 3.456784 -6.127732 0.887629 1.077293 0.622502 3.739644 -1.823222 0.672684 -2.612913 1.341777 -0.204681 1.390677 0.268268 -9.547114 -3.304678 -0.588293 -2.885077 1.042318 2.537638 4.668996 -3.561020 4.163552 -2.832927 3.992073 -9.573527 -1.530834 -2.624596 -7.762373 -1.736083 4.898281 6.598875 4.769832 -2.965482 -3.198295 -2.536306 -9.240669 -7.613388 -0.188672 0.172159 1.759288 2.320215 -0.623557 2.971403 -3.178674 2.126478 3.393991 -2.627366 -1.202851 -0.931211 8.640181 -0.124240 -1.367992 -4.491570 -3.186269 -2.509255 -0.232101 5.939328 -0.512027 -7.889833 -10.912526 -4.211128 5.343762 -2.115813 1.204800 -4.411866 -0.687273 -5.845987 -0.173951 -5.570679 0.521905 0.759618 -3.343905 -6.393398 0.714707 -0.110708 -3.692705 -0.398269 -4.523105 -1.175758 6.702837 1.049286 2.733264 0.464105 -0.224865 -5.901204 -4.750643 2.223921 -4.509195 5.075896 5.202056 -1.131154 -4.350501 -2.058655 -7.234941 4.155947 -2.977909 1.538949 -1.936916 0.207272 5.772574 -4.896878 -0.345682 -5.384832 1.236388 0.797192 -11.105061 7.344332 4.414905 -1.952463 0.664168 0.261366 1.856748 3.279194 3.600040 -3.356113 -3.495345 0.122553 -1.779558 0.025484 -0.766097 3.843903 -5.697997 0.772975 -3.074459 -1.298737 3.386109 3.527923 -0.037642 1.576830 1.392291 -1.977796 3.358077 3.486749 4.739960 -2.557017 -4.501292 -12.117530 3.226342 -3.596889 -2.763559 -1.177372 -1.851852 -3.320160 1.902912 -2.010057 5.931184 0.218873 -2.110827 4.742372 -8.042742 -6.190004 -3.349770 0.535803 -0.085179 -0.856572 -0.211066 -2.111733 2.093319 2.925347 -0.222963 -0.281074 -5.655011 -1.119130 0.467002 6.835454 0.658381 0.957934 6.267138 2.490907 -1.999913 -1.514038 1.092260 -0.585530 -1.352633 -6.278664 -2.428035 -0.348759 1.414923 -3.131547 2.115367 -1.432104 -1.009257 2.542509 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp___GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 1.546184 -0.626445 -0.432943 3.218911 0.437110 -0.594972 0.124687 0.643024 -0.145343 -5.051606 -3.156604 2.288343 0.212120 0.517926 0.854912 0.841585 0.414785 0.196774 -5.137123 1.255732 1.586531 0.592003 0.368099 -0.344020 0.666072 -1.483807 1.837055 0.807895 0.754710 2.763930 -1.593726 1.342833 2.424978 -0.105566 1.527592 2.211923 -0.489053 0.149190 -1.191706 -0.589676 4.073734 1.617764 0.267143 1.833905 0.620038 2.966791 0.684694 2.561011 1.927257 -2.072301 1.455561 0.404095 -1.626594 -0.506370 -2.334417 1.458194 1.986801 1.030550 -1.654648 0.909578 -0.448019 -0.096350 0.656270 -0.442793 3.021039 0.862104 2.246708 1.839805 2.976975 -1.967622 -0.537594 1.798045 1.513679 0.854922 2.061538 -2.426516 -2.709319 -1.034565 -0.588693 -3.588764 -1.311098 -0.395859 4.014014 -2.625250 -0.041947 0.451915 -0.601313 2.587794 -1.001251 0.052920 -2.455661 0.024577 -0.523703 3.045560 0.342509 0.007631 0.273224 0.905006 0.737652 2.209972 0.259763 -2.260529 -1.056759 -4.558769 -1.031868 -1.358289 1.700490 1.279527 -3.257435 -0.228413 -1.100785 2.770059 -3.807301 -0.275910 1.937098 1.505818 1.559630 -0.781424 -1.285259 -0.312120 0.871457 0.770238 2.005162 -1.592684 0.154062 -0.792720 0.698153 0.091605 1.194274 0.007744 -1.891312 -2.236331 -0.339489 0.556468 -0.054852 0.281241 1.505416 -1.411276 1.978114 -1.055360 2.334450 -3.440014 -0.360988 -1.520434 -1.579542 -0.948368 3.402312 1.898576 2.601427 -0.720482 -1.203183 -0.762651 -3.273944 -3.578338 0.677017 0.189962 0.881975 1.329516 -0.273407 1.693590 -1.369993 0.186349 0.745741 -1.210681 -0.617202 -0.320392 0.492294 -0.198138 -0.436483 -2.090414 -0.381702 -0.146742 -0.370909 2.294566 -0.643359 -4.579622 -3.847472 -2.301379 2.394366 -1.196465 0.420167 -1.253749 -0.331229 -1.832059 0.275839 -2.794401 0.151214 -0.140830 -2.375958 -2.944271 0.145619 -0.761947 0.008527 0.507447 -2.156893 -0.354681 1.886901 1.719810 1.130865 0.641527 -0.001125 -3.295455 -2.216053 0.254975 -1.593977 2.797870 0.925751 -0.610628 -2.469675 -1.265321 -2.418583 1.909695 -1.656835 0.628424 -0.746513 -0.859213 2.464314 -1.580523 0.484004 -2.255175 0.827294 1.334687 -5.381795 3.016350 2.418270 -1.251931 -0.444257 -0.059706 0.467034 1.501323 2.288610 -1.671572 -1.641991 0.333572 -0.721007 0.067103 -1.033780 1.816850 -1.532236 0.358902 -2.215556 -1.562997 1.418068 1.417152 0.208261 0.598537 1.310870 0.179751 0.954393 2.615316 1.848611 -0.042509 -2.609535 -6.123409 1.768597 1.540213 -0.429648 0.589621 -1.534962 -1.944739 0.694278 -0.663691 2.748802 0.955807 -0.311419 2.490172 -2.861994 -2.683712 -1.507304 -0.651610 0.119085 -0.375392 0.436515 -1.395604 0.713086 0.352342 -0.332597 -0.463291 -1.159447 -0.397228 0.391805 2.420843 1.135636 1.006675 2.791437 1.105112 -1.766963 -0.401117 0.578832 -0.562936 -0.292347 -2.742463 -1.269889 -0.446613 0.564827 -1.124580 0.631186 -0.616495 0.240653 0.294007 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.949725 1.531396 -3.007263 7.921248 -0.633692 -1.999297 0.093323 2.698236 -2.516532 -13.154580 -9.348473 5.262323 1.533325 2.624676 2.857660 3.103045 -1.138319 0.837887 -13.252695 3.225070 5.279906 2.143082 1.010130 -0.808551 1.936018 -2.472396 0.055242 0.397349 2.123000 7.434140 -4.040262 4.189767 6.563386 -1.113732 2.143907 4.269225 -1.697287 1.043820 -1.748610 -1.523786 9.044104 3.868166 1.190475 3.728795 -0.375835 7.185552 -1.377376 8.111124 -0.670460 -6.461134 4.891207 -1.856299 -4.520768 0.558218 -3.393216 4.606111 5.315746 4.126318 -2.741009 2.409757 -2.319705 -0.303905 1.770765 -2.871939 7.665565 4.713830 5.349875 4.850779 7.090318 -4.225469 -0.599007 3.781640 1.040229 -0.555114 3.599467 -6.146792 -5.028179 -2.073250 -0.413236 -11.302762 -4.579026 -0.311981 14.398040 -8.174223 0.144127 1.623790 0.327271 7.229735 -3.501467 1.987548 -5.130998 -0.574389 -3.002968 8.181703 0.780954 -0.277464 -0.620334 2.147415 2.797551 4.856627 -1.755955 -3.231323 -5.687405 -9.490238 -2.966215 -1.333903 4.477680 5.355684 -9.477170 -1.991524 -1.148991 7.540682 -11.007276 -0.366552 5.692296 5.258463 4.352604 5.164029 -6.532457 -0.234522 1.903633 0.980958 5.828123 -3.401462 1.385332 -2.973791 0.305586 -0.358348 2.626926 0.326200 -9.361483 -5.857496 -1.401520 -2.651636 0.668466 1.425016 4.706669 -2.449008 5.848349 -2.789093 4.847015 -10.334451 -1.368051 -2.897513 -7.377766 -1.812628 8.567929 7.857305 5.327793 -2.180819 -3.677983 -3.228434 -9.462847 -7.354873 0.822715 1.406325 3.877610 3.006941 -0.670616 4.281165 -3.231484 1.609726 2.082970 -2.909194 -1.806354 -1.106803 7.326295 -0.446593 -1.455898 -6.817546 -1.682405 -2.185867 -3.255364 5.718051 -0.577479 -8.867178 -11.245972 -5.475843 6.335954 -2.032676 1.814002 -4.472225 0.300294 -5.441426 -0.451087 -7.504020 0.307464 1.516898 -5.936539 -7.595489 0.786122 -0.504542 -3.633976 0.531093 -4.688999 -1.705250 7.944954 4.236211 3.282862 1.023330 0.385052 -7.488862 -5.824865 0.604257 -5.677012 5.404183 5.411622 -1.512484 -6.345698 -2.708040 -7.370551 5.474480 -3.119009 1.225590 -3.971281 0.278496 6.755021 -5.309920 0.674191 -6.784114 1.273485 2.838086 -16.392610 6.974216 4.654454 -1.704251 -0.016251 -0.834264 1.385491 4.762740 5.378757 -3.482332 -4.018439 -0.039193 -2.593959 0.173922 -2.274792 5.068905 -6.036771 0.068288 -3.620427 -2.215044 3.743541 3.457309 0.748301 2.884788 3.617143 0.537936 4.879706 4.680835 5.168624 -4.177530 -5.091431 -15.671435 4.943786 3.030161 -2.414433 -0.643607 -3.545018 -4.679722 2.081687 -2.010513 6.558165 1.977068 -0.707840 5.750940 -7.838681 -6.634936 -3.491521 1.059173 -0.471341 -0.992643 -0.875350 -2.218690 2.896105 4.132810 -1.713244 0.578736 -5.513018 -4.285547 -0.364557 7.611684 1.451201 3.148584 7.601793 3.004674 -3.545311 -1.001907 1.158372 -0.163968 -2.541479 -6.828625 -2.891878 -0.642547 0.639983 -3.287699 1.420078 -1.218558 -2.388678 2.646231 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/boyer-moore-algorithm.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/boyer-moore-algorithm.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/boyer-moore-algorithm.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/boyer-moore-algorithm.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.487003 0.486787 -3.466012 7.475800 -0.797088 -2.220445 -0.041464 1.855346 -1.884047 -11.006515 -7.204225 6.120148 1.577175 1.355500 2.050045 3.021427 -0.801632 0.452592 -11.311143 3.157132 4.006995 0.916819 -0.592611 -0.969820 1.170394 -2.780422 2.832591 1.110029 1.411490 6.513344 -3.261711 3.764118 5.308792 -1.172073 2.631415 4.360604 -2.270860 0.795785 -2.210277 -0.985338 7.975502 3.988067 0.117937 2.951782 0.251818 6.371179 0.225501 5.395323 -0.286611 -5.092781 3.009667 3.262415 -3.885162 -0.604587 -3.751775 2.903861 4.466936 2.827847 -2.771721 2.092683 -2.642293 -0.400993 1.886476 0.011156 7.467556 2.669910 5.774081 4.793179 6.387920 -3.938334 -0.156892 3.385496 1.579928 -0.347682 5.149286 -3.931774 -6.275009 -0.718635 -0.723267 -9.457616 -3.853999 0.551255 11.685849 -6.635819 -0.584290 0.439910 1.213113 6.912817 -3.669995 1.277992 -4.396722 -0.700034 -3.125358 8.416347 1.283399 0.637180 -0.545503 2.676777 1.973191 4.304232 -0.915474 -4.453513 -2.563989 -8.939803 -2.692843 -2.490032 3.199449 4.204627 -8.265988 -1.356267 -0.920529 7.093677 -9.367748 0.062700 4.635769 3.732638 5.378580 1.291753 -4.896961 0.675612 1.290265 1.069785 5.131975 -2.481907 0.991256 -1.000062 1.650702 0.037196 2.177207 1.037955 -8.305637 -4.396999 0.007236 -1.689481 0.564753 1.861937 4.524743 -2.808873 4.502867 -2.869178 4.985462 -9.143569 -0.558131 -2.886849 -5.641499 -1.823145 4.429226 6.670722 4.638838 -3.004538 -2.718715 -1.602052 -8.820702 -7.890055 1.009230 1.229480 1.376508 2.253906 -0.646535 3.695412 -3.215175 1.684146 3.279556 -2.876458 -1.472159 -0.766829 6.177894 0.638043 -1.302599 -4.500500 -2.179817 -2.751584 -0.249083 6.098539 -0.688433 -9.717296 -10.587510 -4.415781 5.729691 -1.989155 0.562366 -3.762498 -1.446340 -4.569526 0.066344 -6.055281 0.701439 0.407932 -3.922141 -6.607410 0.264162 -0.312414 -3.115974 -0.141516 -4.846889 -1.397355 6.395006 1.298233 2.457364 0.935635 0.490698 -6.029496 -4.542660 2.230039 -4.425317 5.401069 4.686167 -1.448392 -5.449911 -2.106094 -6.518216 4.443426 -3.217570 1.956999 -2.383967 -1.104401 6.116745 -4.663583 -0.183232 -4.805776 1.598554 1.946479 -12.349093 7.647568 5.394005 -2.002997 0.389087 0.848944 1.399332 3.580629 4.208343 -4.238490 -3.874298 0.039863 -1.797942 0.206472 -0.698984 4.049605 -5.060271 0.084857 -3.459810 -1.963159 3.577240 3.061758 0.853107 1.841827 1.760577 -1.556164 3.138403 4.445719 4.881033 -1.930331 -5.245446 -12.820739 4.334566 -1.416079 -2.658296 -0.324610 -2.278142 -4.257631 1.622318 -2.313499 5.637818 0.188392 -2.678944 5.076900 -7.750645 -6.386047 -4.376120 -0.042478 -0.368040 -0.495682 0.612902 -2.381455 2.307628 2.342487 -0.580413 -1.123919 -4.016026 -0.969295 0.510672 6.070558 1.724278 1.431120 6.655184 2.578880 -3.087762 -1.845670 0.923089 -1.614832 -1.368813 -6.725423 -2.786293 -0.588917 1.915813 -3.161614 1.276484 -0.752403 -0.410859 2.019179 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp___GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = 0.380148 0.067546 -0.310612 1.407912 0.129076 0.009117 -0.036393 0.038119 -0.056527 -2.089612 -1.145398 1.364560 -0.045744 0.259050 0.428285 0.145481 0.096921 0.170592 -1.491007 0.328530 0.632436 0.301356 0.042498 0.134946 0.171356 -0.429368 0.680772 0.406559 0.470260 0.974380 -0.618536 0.448928 1.060297 -0.009962 0.187687 0.656770 0.186942 0.158835 -0.747275 -0.511886 1.594230 0.359868 0.048322 0.948966 0.257710 1.156411 0.155718 1.126601 0.900724 -0.981290 0.234813 0.229488 -0.320492 -0.279523 -0.641254 0.594765 0.425201 0.434529 -0.859254 0.235459 -0.068885 -0.011210 0.223259 -0.179472 0.887333 0.524404 0.887699 0.699580 0.959899 -0.844287 -0.275750 0.654924 0.387510 0.528411 0.782352 -0.329312 -0.878163 -0.340042 -0.221673 -1.070592 -0.960876 -0.079515 1.654363 -1.091149 -0.059940 0.184405 -0.183494 1.030517 -0.365224 0.300038 -1.088703 -0.046760 0.036746 0.970546 0.310871 -0.431637 -0.166803 0.247249 0.274089 0.795952 0.145080 -0.810579 -0.551998 -1.533208 -0.540104 -0.552955 0.690985 0.591939 -1.405527 -0.181321 -0.017035 1.534924 -1.447078 -0.310465 0.814074 0.531508 0.648049 0.192128 -0.645559 -0.013275 0.503888 -0.033791 0.915634 -0.268007 0.150993 -0.123940 0.226068 -0.035476 0.223504 0.231554 -0.852512 -1.002834 0.067117 0.149758 -0.084100 0.078507 0.668172 -0.413869 0.862393 -0.156474 0.828754 -1.189995 -0.140526 -0.129840 -0.548588 -0.437774 1.483474 1.219933 1.090682 -0.244051 -0.660895 -0.568714 -1.135583 -1.401533 0.075865 0.165890 0.292391 0.534498 -0.117867 0.867652 -0.554238 0.264599 0.422358 -0.287593 -0.255040 0.035940 0.175739 -0.304120 -0.097649 -0.782774 -0.197430 -0.337976 -0.428476 0.986573 -0.162094 -1.789821 -1.533220 -0.713067 0.944269 -0.539956 0.188377 -0.529208 -0.246180 -0.635437 0.062729 -0.963751 -0.084313 -0.058373 -1.054616 -1.184318 0.224721 -0.351072 -0.393918 0.245816 -0.941066 -0.148899 0.720155 0.315960 0.579035 0.200014 -0.136331 -1.291738 -0.665752 -0.012899 -0.884420 1.108632 0.697537 -0.257386 -1.265375 -0.583890 -1.057149 0.909358 -1.023037 0.251624 -0.262750 -0.270695 0.895822 -0.559367 -0.131631 -0.643157 0.319995 0.693107 -2.144910 0.975472 1.061637 -0.377619 -0.067482 0.180864 0.142320 0.767457 0.739719 -1.033825 -0.676255 -0.010061 -0.307384 0.119126 -0.157914 0.637867 -0.661321 0.053582 -0.804520 -0.492754 0.525255 0.416509 0.058028 0.030481 0.707936 0.021073 0.667954 0.929836 0.683098 -0.068206 -0.678359 -2.202789 0.853686 0.438261 -0.307930 0.323838 -0.639077 -0.537521 0.105372 -0.735389 0.923302 -0.471144 -0.161206 0.978664 -1.256002 -0.968161 -0.502309 -0.391486 -0.139936 0.037954 0.751608 -0.111672 0.196188 0.189031 -0.398641 -0.431817 -0.439738 -0.128832 0.095890 0.786937 0.325871 0.370679 0.956633 0.349734 -0.979142 0.087538 0.037545 -0.134285 -0.364364 -1.528582 -0.421452 0.006602 0.143043 -0.496093 0.041999 -0.359811 -0.221581 -0.081289 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.326629 -0.343825 -0.197045 0.905178 -0.263823 0.065680 0.135120 0.408375 -0.163519 -1.767852 -1.103836 0.399557 0.141838 0.420160 0.732989 0.372315 -0.074360 -0.160834 -1.811660 0.125642 0.819696 0.147594 0.406753 0.190133 0.218999 -0.595164 -0.242527 0.317429 0.270435 1.134951 -0.373377 0.583805 0.845588 -0.208307 -0.088679 0.701536 -0.065310 0.162438 -0.245123 0.195512 1.184782 0.135669 -0.263113 0.241455 -0.137099 1.075525 -0.560829 1.383336 0.093540 -0.896234 1.212350 -0.453515 -0.691689 -0.078655 -0.430684 0.386534 1.048124 0.815552 -0.312654 0.398616 -0.716488 -0.013990 0.119678 -0.162501 1.046244 0.795230 0.970006 0.690200 0.756048 -0.814836 -0.138213 0.495415 -0.179512 -0.082145 0.155064 -0.701573 -0.177182 -1.593580 0.105986 -1.051773 -0.990015 -0.123534 1.538593 -1.011006 -0.287984 0.548326 -0.132961 1.032994 -0.409173 0.677341 -0.794109 -0.109887 0.326092 0.961721 0.111473 -0.157705 -0.088455 0.244906 0.312571 0.715687 0.237404 -0.430145 -1.526987 -1.302882 -0.834385 -0.307296 0.762438 0.816668 -1.490687 -0.077610 0.793863 0.059433 -1.395157 0.096658 0.801740 1.123954 0.702465 1.154893 -1.098082 -0.094670 0.495713 0.240940 0.916667 -0.325286 0.389213 -0.920882 0.319344 0.118383 0.198451 -0.091315 -1.113452 -0.779625 0.106146 -0.281584 0.269370 0.283489 0.736418 -0.171353 0.749281 -0.487490 0.842620 -1.543042 -0.115690 -0.381839 -0.565453 -0.292863 1.451897 1.166461 0.543171 -0.027443 -1.106483 -0.258347 -1.115860 -1.150339 -0.296125 0.309730 0.694454 0.385828 -0.251921 0.761647 -0.323391 0.526545 -0.116294 -0.370053 -0.125549 -0.070485 0.002790 0.012254 -0.254827 -1.005652 -0.118823 -0.178179 -0.719133 0.976400 0.064298 -0.819402 -1.479285 -0.810575 0.916644 -0.379588 0.307928 -0.475143 -0.050235 -1.260506 0.068885 -0.787132 -0.056005 0.342395 -1.227085 -1.148541 0.322500 -0.029051 -0.552457 0.345696 -0.805280 -0.411091 0.478669 0.349043 0.749309 0.202415 -0.110474 -1.026705 -1.107371 -0.160991 -1.008970 0.939897 0.640344 -0.325771 -0.520967 -0.439486 -0.948789 1.004848 -0.875932 0.279828 -0.463925 -0.208317 0.798379 -0.600085 -0.448217 -1.098017 0.294657 0.531989 -1.702838 1.270394 0.682780 -0.253742 -0.107271 -0.173650 0.099746 0.685947 0.689018 -0.561112 -0.450668 -0.082599 0.009451 0.095013 -0.147366 0.678671 -0.731697 -0.119636 -0.548502 -0.357218 0.514020 0.689930 0.134654 0.701556 0.738965 0.286051 0.457876 0.546323 0.555673 -0.836387 -0.251379 -1.724322 0.822501 0.876407 -0.577690 0.227130 -1.161860 -0.525660 0.261443 0.138219 0.839289 0.524820 0.253340 0.862325 -0.769272 -0.870611 -0.625581 -0.033343 -0.173840 -0.154635 0.079429 0.014372 0.451497 0.800898 -0.299313 0.156376 -0.841596 -0.761267 -0.104951 1.183419 0.130250 0.426672 1.016135 0.347530 -0.559876 -0.300845 0.118365 -0.194411 0.033489 -0.486920 -0.173375 0.071323 0.176863 -0.494828 -0.017181 -0.086806 -0.576318 0.241681 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = 0.962995 -0.276812 -0.185153 1.593230 0.141912 -0.115431 0.095568 0.623400 -0.126417 -2.981296 -1.797105 1.696829 0.042457 0.599434 0.441014 0.519400 0.342961 0.141528 -2.823072 0.615640 0.868888 0.294081 0.325578 -0.021040 0.390718 -0.851302 0.907045 0.334794 0.640076 1.645005 -0.972844 0.669088 1.455194 -0.049086 0.845129 1.276010 0.034899 -0.096704 -0.883098 -0.724377 2.298272 0.961156 0.093458 1.100584 0.173868 1.740060 0.318071 1.577365 1.279504 -1.337054 0.646528 -0.550627 -1.180532 -0.136246 -1.253719 0.834171 0.506801 0.713073 -0.912340 0.550584 -0.364096 -0.056846 0.270474 -0.571953 1.503554 0.315221 1.183688 1.015815 1.450263 -1.336588 -0.411951 1.221915 0.709056 0.810348 0.976214 -1.162739 -1.183360 -1.002233 -0.140146 -2.006158 -1.100546 -0.316681 2.711761 -1.629254 0.095946 0.457525 -0.590240 1.390596 -0.572886 0.237708 -1.588358 -0.067220 0.165244 1.231199 0.308566 -0.239536 0.220778 0.417345 0.459662 1.308625 0.210935 -1.217405 -0.996745 -2.217188 -0.277134 -0.757511 0.990850 0.902066 -1.632193 -0.137158 -0.155449 2.220574 -2.059148 -0.105342 1.186197 0.794137 0.934627 0.346126 -0.595167 -0.111923 0.613134 0.333146 1.358460 -1.116099 0.137790 -0.091247 0.427968 -0.099148 0.755485 0.128237 -1.386769 -1.472646 0.120337 0.256467 -0.070684 0.092151 0.850042 -0.723279 1.232051 -0.464985 1.271368 -1.650353 -0.196244 -0.591227 -0.824529 -0.632027 2.945906 1.547745 1.587030 -0.165308 -0.640104 -0.544859 -1.588621 -1.852969 0.481167 0.269891 0.635342 0.875134 -0.106014 1.158241 -0.742542 0.182529 -0.069475 -0.666805 -0.331463 0.096706 -0.161219 -0.192938 -0.150834 -1.455382 -0.078429 -0.072810 -0.394226 1.170941 -0.457127 -2.840732 -1.987709 -1.362798 1.413486 -0.716416 0.328731 -0.511430 -0.238212 -0.564742 -0.028942 -1.563334 0.190505 -0.001581 -1.622305 -1.762204 0.304548 -0.498865 -0.361442 0.533139 -1.071477 -0.236513 0.879618 0.919839 0.616445 0.300064 0.002592 -1.838152 -1.181088 0.027483 -1.165970 1.702979 0.627067 -0.512058 -1.670665 -0.805087 -1.324509 1.332465 -1.309282 0.420400 -0.701294 -0.466878 1.350930 -0.835858 0.365615 -1.336373 0.747503 1.094345 -3.562500 1.461038 1.585063 -0.611692 -0.235429 -0.006687 0.127720 1.166802 1.355232 -0.888603 -0.967010 0.233339 -0.465411 0.119373 -0.419963 1.053541 -0.823971 0.068546 -1.236517 -0.858857 0.746652 0.671553 0.244268 0.349145 1.076866 0.461814 0.727358 1.513129 1.056975 -0.147116 -1.536467 -3.668792 1.307540 1.787638 -0.280971 0.571446 -1.155096 -0.981717 0.433587 -0.905971 1.384810 0.194021 -0.107393 1.441011 -1.594629 -1.459200 -0.737924 -0.419006 0.004219 -0.087686 0.626589 -0.616917 0.474861 0.203816 -0.385270 -0.343521 -0.389492 -0.332163 0.249183 1.290371 0.991080 0.874106 1.580784 0.555662 -1.163718 -0.104175 0.305446 -0.218601 -0.353000 -1.769628 -0.651338 -0.116822 0.307353 -0.653352 0.144152 -0.109879 -0.228469 0.087095 -PE-benchmarks/ugly-numbers.cpp__main = 0.241350 -0.072454 0.157805 0.349221 0.082050 -0.003559 0.181059 0.308402 0.028352 -0.960168 -0.645256 -0.202993 -0.008755 0.048872 0.334783 0.080866 0.125283 0.340074 -0.836716 0.035071 0.414623 0.250434 0.289974 -0.077647 0.115518 -0.196226 -0.557490 0.079966 0.168715 0.611107 -0.320473 0.125710 0.493197 0.037010 -0.089848 0.400234 0.220511 -0.019951 0.153819 -0.003154 0.727156 0.076108 -0.052896 0.298163 0.052307 0.547144 -0.296576 0.680200 0.025489 -0.368120 0.477599 -0.956481 -0.283515 0.106046 -0.330905 0.369929 0.715976 0.587973 -0.195819 0.347384 -0.183931 0.153092 0.109622 -0.583585 0.357380 0.582925 0.131436 0.291989 0.639141 -0.412632 -0.018216 0.126365 0.117205 0.006083 -0.048884 -0.382713 0.162066 -1.220456 -0.063321 -0.750734 -0.101393 -0.172251 0.889461 -0.567690 0.153275 0.622716 -0.076115 0.431507 -0.153304 0.121081 -0.463920 0.125911 0.094486 0.466847 0.047732 -0.083161 -0.173781 0.116322 0.160289 0.260865 0.070129 -0.127630 -0.963893 -1.037161 -0.481320 -0.110692 0.160415 0.144839 -0.742295 -0.026923 0.640500 0.230466 -0.834449 -0.037531 0.334752 0.517602 -0.244787 0.333573 -0.595558 -0.153745 0.020465 0.126134 0.176542 -0.423987 0.067811 -0.648401 -0.131186 0.044900 0.193717 -0.201019 -0.227653 -0.362765 -0.154833 -0.049338 0.005462 0.079457 0.215895 -0.177228 0.373061 -0.349488 0.360467 -0.701817 -0.074837 -0.155806 -0.428084 -0.163872 1.215833 0.338392 0.267557 0.210060 -0.508591 -0.357738 -0.441505 -0.564658 0.072858 -0.003560 0.624680 0.182870 -0.092679 0.094917 -0.165166 -0.036748 -0.201293 -0.258711 -0.025739 -0.054404 0.425380 -0.260943 -0.158026 -0.764345 0.113324 0.557780 -0.488316 0.076446 -0.167656 0.142570 -0.489831 -0.500312 0.476679 -0.203711 0.237147 -0.211856 0.224518 -0.550333 0.192353 -0.350672 -0.066905 0.159873 -0.696962 -0.661739 0.170345 -0.133079 -0.222214 0.292254 -0.403627 0.021160 0.184523 0.500769 0.202615 0.064239 0.015175 -0.732646 -0.720512 -0.422350 -0.304116 0.409465 0.324148 0.003436 -0.395770 -0.245992 -0.374290 0.606964 -0.410894 0.053725 -0.266370 -0.048502 0.414255 -0.283584 -0.144950 -0.730939 0.158993 0.217557 -0.894647 0.570826 0.248901 -0.304498 -0.186750 -0.573805 0.176389 0.305927 0.639915 -0.228468 -0.139572 0.184673 -0.174031 -0.022016 -0.461987 0.383758 -0.235741 0.158620 -0.409344 -0.208770 0.257022 0.457900 -0.098283 0.399241 0.542441 0.457533 0.195374 0.460614 0.219462 -0.400604 -0.227805 -0.921785 0.318850 0.823792 0.103889 0.152288 -0.597772 -0.236797 0.177870 0.245317 0.494998 0.701118 0.413539 0.498727 -0.295300 -0.440803 0.057959 0.103709 0.172268 -0.356606 0.078215 -0.171940 0.083927 0.251371 0.021771 0.285902 -0.453745 -0.785723 -0.065776 0.633716 0.118261 0.064246 0.583833 0.125767 -0.408774 0.122346 -0.092053 0.191403 -0.029248 0.053966 -0.049732 -0.018192 0.007731 -0.335045 0.424458 -0.161364 -0.247552 0.188836 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = 1.996749 0.827617 -2.422496 4.147434 -0.813792 -1.012460 0.020655 0.723672 -1.859681 -7.147744 -4.601182 3.680898 1.116311 1.402193 0.848696 2.108589 -0.805446 0.363148 -6.928128 1.398469 2.812187 0.516788 -0.006011 0.045651 0.675095 -1.751326 0.706570 0.452873 0.978105 4.227688 -1.996102 2.436572 3.632957 -0.946794 0.697684 2.596968 -1.065546 0.715733 -1.056101 -0.332145 4.431326 1.748006 0.273316 1.330954 -0.388799 3.940873 -0.519535 4.414616 -0.447770 -3.415117 2.494489 1.182041 -2.474645 -0.000311 -1.724944 1.699669 2.803514 2.200883 -1.321972 1.161843 -1.450621 -0.149485 1.010201 -0.396907 4.195063 2.419550 3.373551 2.554931 3.675803 -2.407268 -0.150149 1.953019 -0.001276 -0.594612 2.613449 -2.490116 -3.195150 -0.032824 -0.211513 -6.164187 -2.878607 0.450433 7.627507 -4.256527 -0.916144 0.299441 0.942232 4.259489 -1.992736 1.293579 -2.695133 -0.381411 -1.856533 5.479732 1.009322 0.276956 -0.889508 1.325425 1.511727 2.407225 -1.017323 -2.378641 -2.782834 -4.866734 -2.044956 -1.538284 1.959705 3.286098 -5.687156 -1.161600 -0.122348 4.475715 -6.142316 0.299581 3.020190 2.807259 3.816418 3.037482 -4.194444 0.585287 0.848518 0.189290 3.308515 -1.037492 0.674915 -1.017699 0.842960 -0.392750 0.800516 0.405331 -6.452080 -2.678357 -0.046637 -1.949341 0.714133 1.192852 2.959644 -1.200653 2.844958 -1.575787 2.480719 -6.014682 -0.612018 -1.182482 -4.364540 -1.174873 2.683993 5.085724 2.666329 -1.984119 -1.947752 -1.461587 -5.615236 -4.806295 -0.010735 0.656832 1.367406 1.425609 -0.610228 2.460639 -1.968799 1.312773 1.861872 -1.445434 -0.834441 -0.499410 5.247521 0.164237 -0.694703 -2.825138 -1.810942 -2.248908 -0.679707 3.843360 -0.389338 -5.540908 -6.805636 -2.796073 3.500098 -1.331658 0.465594 -2.610178 -0.607310 -3.489708 -0.293797 -3.468968 -0.319700 0.667227 -2.644410 -4.111774 0.641683 -0.090293 -2.940830 0.028325 -3.145936 -1.181609 4.446288 0.798326 2.236048 -0.028699 -0.094463 -3.476939 -2.771040 1.300436 -3.389975 2.773600 3.627706 -0.860890 -3.378677 -1.379299 -4.561243 2.669700 -2.008530 1.088162 -1.726853 0.041312 3.736206 -2.961205 0.074744 -2.670467 0.897390 1.208149 -8.135261 5.002154 3.029985 -0.825052 0.415474 0.664572 0.664069 2.500703 2.040358 -2.559732 -2.498292 -0.091521 -1.246603 0.223036 0.094311 2.690942 -3.487285 0.062755 -1.784912 -0.873921 1.945380 2.097503 0.396311 1.322333 1.237806 -0.826877 2.617867 2.128961 2.583696 -2.016944 -2.163146 -8.334138 2.669221 -1.540049 -2.073693 -0.246429 -1.574778 -2.195869 1.370652 -1.861405 3.585241 -0.996059 -1.685996 3.007421 -4.774716 -3.744599 -2.455473 -0.013169 -0.227560 -0.100930 0.235372 -1.027044 1.533631 2.098269 -0.778255 -0.213230 -3.223305 -0.910232 0.222128 4.021898 0.642018 1.189461 4.032592 1.220740 -1.633271 -1.083849 0.391374 -0.263014 -1.010270 -4.102449 -1.368447 -0.068447 1.009626 -1.823575 0.633233 -0.734220 -1.114585 1.595309 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 1.151056 0.034599 -0.741249 2.337105 0.074458 -0.268547 0.039048 0.760840 -0.266433 -4.028018 -2.958911 3.734722 0.085014 0.886698 0.464437 0.393693 0.200696 0.127014 -3.981551 0.870922 1.039391 0.328932 0.044461 0.027814 0.516510 -1.025557 1.284504 0.649095 0.873312 2.212461 -1.276412 0.798404 1.880193 -0.158832 1.057418 1.562810 -0.202018 0.042087 -1.329868 -1.297554 3.025266 1.485649 0.024137 1.940998 0.366127 2.292317 0.103017 2.251005 2.163222 -1.845894 0.564674 0.555417 -1.626097 -0.245667 -1.486209 1.359494 0.823778 0.322093 -1.284505 0.551021 -0.179123 -0.436706 0.289502 -0.962345 1.912018 0.664605 1.674065 1.357999 1.952366 -1.768357 -0.702891 1.748310 1.299848 1.191605 1.348455 -1.107979 -2.202374 -0.295332 -0.140619 -3.238080 -1.889847 -0.506998 3.949157 -2.342897 -0.145439 0.246994 -0.612709 1.893217 -0.892307 0.374012 -2.024327 -0.275575 -0.242961 1.935190 0.799001 -0.300808 0.167313 0.657337 0.790106 2.002910 -0.203752 -1.540422 -1.065627 -3.599877 -0.333533 -0.906319 1.370100 1.337637 -2.196735 -0.349776 -0.205329 3.718166 -2.763778 -0.361633 1.847440 0.837467 0.866663 0.615019 -1.295791 0.111490 0.926855 -0.088210 2.055511 -1.003172 0.079402 0.549344 0.505845 -0.380790 0.925613 0.497099 -2.180886 -2.225592 0.121823 0.533334 -0.120193 -0.257084 1.114875 -0.879772 1.827014 -0.273366 1.544792 -2.411808 -0.061963 -0.715377 -0.993976 -0.732594 2.804142 2.485956 2.469891 -0.576874 -0.374887 -0.980102 -2.370764 -2.777133 1.073869 0.463803 0.755014 0.825380 -0.147301 1.766575 -1.068655 0.224061 0.378803 -0.926322 -0.360802 0.113446 1.019028 -0.315070 -0.057085 -1.894537 -0.448692 -0.677398 -0.538453 1.476922 -0.552031 -4.351197 -2.658021 -1.717472 1.877527 -0.773982 0.399549 -0.685943 -0.351338 -0.625190 -0.293376 -2.092198 0.033624 -0.101234 -2.182428 -2.243128 0.057504 -0.441230 -0.958435 0.499146 -1.658458 -0.419594 1.799727 1.283487 1.014680 0.359740 0.117893 -2.338995 -1.360963 0.158248 -1.732046 2.157304 1.548660 -0.749956 -2.644407 -1.037623 -2.225744 1.728981 -2.246807 0.547113 -1.146523 -0.768291 2.059652 -1.290571 -0.017928 -1.481899 0.933606 1.555276 -5.233845 2.181554 2.193000 -0.469658 -0.145570 0.428908 -0.103009 1.799031 1.957337 -1.764590 -1.369703 0.120038 -0.897387 0.234461 -0.249731 1.837934 -1.198161 0.220118 -1.445409 -1.094966 1.021228 0.818896 0.567818 0.774961 1.245624 0.554326 1.451977 1.909191 1.508673 -0.435258 -2.059113 -5.076660 1.872034 1.513368 -0.817771 1.010374 -1.444492 -1.663013 0.494462 -1.683716 1.936879 -1.300809 -0.502968 1.885616 -2.196039 -1.891696 -0.961411 -0.776101 -0.141443 0.011824 1.461790 -0.729721 0.671815 0.406870 -0.852552 -0.638153 -0.448799 -0.462599 0.204328 1.367059 1.392084 1.438280 2.096483 0.705603 -1.982164 -0.156063 0.034645 -0.332037 -0.914550 -3.016318 -0.797848 -0.320701 0.336310 -0.794085 0.042295 -0.034656 -0.219570 0.143048 -PE-benchmarks/min-cost-path.cpp__main = 0.180780 0.143882 0.443286 0.116370 0.120192 -0.256199 0.332758 0.515465 -0.132117 -0.735996 -0.572407 -0.368371 -0.106516 -0.190741 0.269822 -0.177387 0.009174 0.453178 -0.857132 0.105317 0.439725 0.427118 0.310906 -0.349251 0.104023 -0.057304 -0.872136 0.278399 0.084245 0.530606 -0.249294 -0.218419 0.370934 0.192971 -0.142993 0.500517 0.376748 0.026048 0.452601 0.076313 0.622193 0.145805 -0.113752 0.289800 0.287574 0.455705 -0.257358 0.253149 -0.366480 -0.287565 0.227472 -1.051929 -0.348592 -0.051348 -0.152863 0.302678 0.839715 0.772034 -0.172944 0.494477 -0.178691 0.014010 0.093573 -0.654443 0.138679 0.617248 -0.203555 0.095185 0.738666 -0.351575 -0.158867 0.138773 0.222845 -0.105412 -0.368506 -0.266758 0.193246 -1.520602 -0.049940 -1.069942 -0.203946 -0.053254 0.838186 -0.437850 0.379200 0.779492 -0.081079 0.161308 -0.140356 -0.178897 -0.306368 0.137764 -0.042476 0.562681 -0.008126 -0.075183 -0.010503 0.101220 0.407663 0.384542 -0.106506 0.038643 -1.047249 -1.122625 -0.229990 0.008564 -0.049377 -0.064041 -0.488347 -0.287894 0.893503 0.229499 -0.708839 -0.130688 0.469926 0.477619 -0.773619 0.075519 -0.619395 -0.009814 -0.146759 -0.058504 0.179073 -0.482275 -0.133979 -0.403444 -0.246606 -0.034720 0.079087 -0.241038 -0.249507 -0.351236 -0.173962 -0.200883 -0.042191 -0.128238 -0.132205 -0.105256 0.232361 -0.515037 0.358612 -0.588874 0.200155 -0.012705 -0.417484 -0.034445 0.838239 0.190415 -0.091307 0.168503 -0.342353 -0.345750 -0.132584 -0.467050 0.323050 0.004738 0.813564 -0.118363 -0.069054 -0.164697 -0.072270 -0.280968 -0.258536 -0.133242 0.157491 -0.097306 0.769651 -0.274488 -0.148816 -0.721820 0.229702 0.764530 -0.368640 -0.262850 -0.341692 0.513446 -0.194427 -0.519383 0.388202 -0.044106 0.007906 -0.144080 0.244778 -0.426539 0.351595 -0.234257 0.115684 0.104493 -0.598786 -0.538465 0.101702 -0.147166 -0.206567 0.219910 -0.186079 -0.112052 0.119748 0.361392 0.106408 -0.008073 0.156850 -0.568957 -0.652765 -0.509914 0.021212 0.176034 0.343266 0.244070 -0.462365 -0.044831 -0.275542 0.629461 -0.071316 -0.095089 -0.352309 -0.036217 0.668200 -0.068450 -0.090432 -0.674411 0.150848 0.258426 -0.704525 0.524303 0.198683 -0.252109 -0.356908 -0.557688 -0.097839 0.464713 0.685672 -0.224703 -0.195885 0.308182 -0.357797 -0.064058 -0.491688 0.340072 -0.149007 0.462551 -0.357668 -0.214577 0.118695 0.502175 -0.116189 0.572869 0.363420 0.569600 0.074289 0.464677 0.075845 -0.424264 -0.175235 -0.572947 0.372610 0.802541 0.296499 0.045117 -0.364275 -0.381261 0.179007 0.469950 0.439614 0.997368 0.195403 0.385345 -0.090085 -0.386947 0.182440 0.295271 0.310115 -0.518758 0.021432 -0.110069 0.128856 0.306788 -0.025185 0.585329 -0.405869 -1.026656 -0.240418 0.529906 0.184845 -0.154246 0.566352 -0.107620 -0.391036 0.201585 -0.136015 0.475186 -0.006098 0.331065 -0.058816 -0.246344 0.052872 -0.180984 0.669824 -0.070543 -0.273760 0.418846 -PE-benchmarks/magic-square.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/magic-square.cpp__generateSquare(int) = 4.389385 0.758880 -2.987207 10.182398 -0.920950 -1.407142 0.089563 3.660366 -3.022856 -17.600131 -10.618020 7.240384 1.205769 3.908970 3.297085 2.739204 -0.201697 -0.170182 -19.575280 3.428357 7.323111 2.607265 1.404077 1.024693 2.418404 -4.119637 2.713485 1.735672 2.855885 9.801577 -4.972596 5.740522 8.748823 -1.988570 2.898729 6.231624 -2.032544 0.725104 -3.081539 -1.187224 11.988494 4.747026 -0.264238 5.001172 -0.141507 9.865642 -0.678515 8.461582 1.878791 -8.620202 4.464756 0.784128 -5.371632 -1.105536 -4.518276 3.781276 6.080507 5.900810 -4.064259 2.599880 -2.832036 -1.440293 2.140184 -1.553628 9.566809 4.784400 8.214502 6.743173 8.618347 -5.772256 -0.793712 4.897773 0.295166 1.457866 4.130197 -5.807157 -6.926869 -4.684940 -1.129975 -14.022757 -8.478123 -0.985661 14.294855 -9.314450 -0.180883 0.199441 -0.598349 9.459527 -4.045061 2.552450 -7.678318 -1.795391 -1.452633 9.018921 0.734284 -0.674862 0.328838 2.750397 3.173543 6.360029 -0.774590 -6.428373 -5.656957 -10.883082 -3.247309 -3.319245 5.408232 7.790302 -12.241302 -1.462327 -2.790847 9.826041 -13.612152 -0.613298 5.765299 6.621844 7.106156 5.635995 -8.202096 -0.860225 3.128815 0.710367 8.270208 -4.225687 2.431552 -3.795215 1.537992 0.012960 2.431592 1.504262 -11.037428 -7.947164 0.281324 -2.612088 0.901322 2.785687 6.694453 -2.689366 7.012348 -3.995461 7.059743 -12.163393 -2.069595 -2.617754 -6.948395 -3.220724 9.771268 11.163050 5.539756 -2.919627 -5.969350 -2.543007 -11.558498 -9.904060 0.365115 1.782233 3.671666 4.635652 -1.678424 6.710195 -4.664121 2.444747 1.982873 -2.406035 -1.942909 -1.380857 4.695820 0.911094 -0.499358 -6.609467 -2.324741 -3.918785 -2.577006 9.306299 -1.414455 -12.442690 -15.290481 -6.620957 8.351529 -3.269755 0.625011 -5.647423 -1.120940 -7.297695 -0.090719 -8.857510 -1.548642 0.207249 -7.423367 -9.798207 2.242731 -1.462556 -4.392740 1.167718 -6.548092 -2.854829 8.754046 5.096688 5.266691 0.015655 -0.871216 -8.640294 -6.505302 2.016785 -7.666253 8.865895 4.737332 -3.217974 -8.506654 -3.656716 -8.953760 8.482342 -3.634943 2.786431 -3.618286 -1.065989 8.513037 -5.532805 -0.175097 -7.353863 2.609085 4.439190 -18.850737 10.068892 6.450232 -2.496936 0.125662 0.743016 1.550399 6.293583 4.329810 -5.030710 -6.212744 0.231197 -1.533410 0.868216 -2.983785 5.650564 -6.738972 -0.260688 -5.343796 -3.461896 5.594584 3.776047 0.758105 2.324095 4.607169 -0.431537 5.322824 6.388372 6.898634 -3.323470 -5.262252 -17.475471 6.732115 3.210725 -2.865252 -0.910659 -5.888554 -5.873091 2.697274 -4.099769 8.429480 0.784754 -2.293313 7.605746 -10.521321 -8.531537 -6.456613 -0.459435 -0.755138 0.598669 0.671782 -2.394480 4.043978 4.738466 -2.144978 -0.480260 -6.974408 -2.688712 0.675058 7.644751 1.800732 3.860748 9.241815 3.642706 -5.077930 -2.042451 2.452618 -2.002917 -3.069580 -9.125363 -3.404179 -0.114987 1.822822 -4.217978 0.538559 -1.875030 -2.015768 2.113602 -PE-benchmarks/magic-square.cpp__main = 0.225660 -0.163012 0.231728 0.298627 0.274077 -0.079776 0.165265 0.158359 0.061775 -0.686395 -0.327003 0.098134 -0.085497 -0.057161 0.127670 -0.020171 0.243535 0.276701 -0.337627 0.070129 0.111021 0.170139 0.038975 -0.125630 0.049934 -0.160203 -0.098148 0.207736 0.142300 0.404233 -0.274036 -0.070462 0.323088 0.063536 0.097723 0.400245 0.494891 -0.019221 -0.049300 -0.080927 0.731995 0.002250 0.065796 0.415295 0.268575 0.441816 -0.029299 0.585095 0.275294 -0.203780 0.269377 -0.564652 -0.189000 -0.080259 -0.473156 0.344179 0.436823 0.340564 -0.356871 0.308944 0.038060 0.087582 0.082830 -0.276724 0.228762 0.328740 -0.008266 0.208055 0.621228 -0.379331 -0.189845 0.271702 0.409708 0.257749 0.109598 -0.289038 -0.003513 -0.781020 -0.085649 -0.310508 0.027749 -0.183753 0.628729 -0.383192 0.128354 0.539915 -0.167229 0.200528 -0.082908 -0.088529 -0.453627 0.116401 0.115742 0.413020 0.049675 -0.015470 -0.044474 0.067166 0.123049 0.367618 0.100706 -0.239267 -0.527190 -0.903154 -0.387599 -0.172256 0.002848 -0.115370 -0.424964 -0.110239 0.384707 0.322260 -0.539474 -0.087789 0.270010 0.234120 -0.105413 -0.032477 -0.244177 -0.088979 0.050737 0.007464 0.049667 -0.289936 -0.086727 -0.292059 -0.042378 -0.021075 0.180028 -0.171948 -0.104894 -0.248018 -0.129703 0.167379 -0.088242 -0.172832 -0.035693 -0.366059 0.255829 -0.214733 0.289669 -0.420120 -0.111319 -0.152812 -0.319296 -0.123097 1.014431 -0.054348 0.489165 0.171114 -0.350376 -0.311457 -0.255824 -0.640336 0.228225 -0.084374 0.351860 0.169634 -0.050536 0.010991 -0.152601 -0.269383 -0.011906 -0.227691 -0.035020 -0.054525 0.064259 -0.305222 -0.081012 -0.599717 0.185952 0.556545 -0.094489 -0.008951 -0.281528 -0.261424 -0.210550 -0.411311 0.317066 -0.159291 0.157226 0.035961 0.012664 -0.353711 0.174358 -0.300701 0.095590 -0.097454 -0.522102 -0.491627 0.141294 -0.212226 -0.025146 0.248264 -0.334399 0.109374 -0.122283 0.287325 0.058427 0.065172 0.020303 -0.684350 -0.589779 -0.307115 -0.020373 0.374293 0.133944 0.136517 -0.255172 -0.213428 -0.289864 0.363554 -0.561802 0.008313 0.055993 -0.144583 0.374646 -0.181082 -0.056849 -0.501029 0.227646 0.263973 -0.555645 0.489028 0.307525 -0.366847 -0.293189 -0.326994 0.033076 0.258855 0.656525 -0.272796 -0.133661 0.305731 -0.085127 -0.047595 -0.375781 0.274574 0.011630 0.322811 -0.506902 -0.342306 0.098937 0.438971 -0.092608 0.167691 0.337009 0.296766 -0.066962 0.597911 0.139952 0.041116 -0.287872 -0.719065 0.266749 0.503976 0.126380 0.276473 -0.459453 -0.192574 0.153139 0.114046 0.415556 0.325600 0.307816 0.429898 -0.289122 -0.385026 0.157373 -0.099361 0.222063 -0.350109 0.262900 -0.271460 -0.007358 -0.084547 0.043192 0.040451 -0.061802 -0.389741 -0.033935 0.314833 0.189055 0.046980 0.464542 0.013297 -0.346869 0.184217 -0.044777 0.279991 0.087947 -0.162020 -0.095353 -0.169972 0.040719 -0.198500 0.426140 -0.144619 -0.036660 0.158984 -PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/box-stacking.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/box-stacking.cpp__max(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = 0.655700 0.446780 -0.771771 1.316865 -0.036461 -0.944972 0.271409 0.542500 -0.669049 -1.907819 -0.783848 0.937099 0.375885 -0.203526 0.063950 0.374295 -0.452985 0.483865 -1.728162 0.701178 0.769478 0.480154 -0.620798 -0.387814 0.029266 -0.335836 -0.254082 0.436759 0.032392 1.323057 -0.518470 0.453067 0.996941 -0.317452 0.047788 0.926750 0.566549 0.183032 0.066290 0.448850 1.400519 0.629888 -0.259595 0.467994 0.242007 1.225009 -0.247683 1.168528 -1.459357 -0.810936 0.167065 0.652342 -0.635976 -0.352244 -0.526078 0.612862 1.190611 1.009894 -0.422477 0.631492 -0.700225 -0.307953 0.578412 0.281397 1.260617 1.167390 0.652338 0.955429 1.963474 -0.530465 -0.037262 0.488243 0.294712 -0.441650 0.982872 0.106664 -1.150534 -0.740031 -0.195657 -1.846288 -0.889472 0.155705 2.182188 -1.333210 0.006177 0.498832 1.050682 1.284272 -1.055247 0.091198 -0.821648 -0.173107 -0.825897 2.387612 0.236191 0.561169 -0.697331 0.541287 0.633795 0.649629 -0.449794 -0.822204 -0.787821 -1.656091 -0.931565 -0.441301 -0.472674 0.533373 -2.019806 -0.664826 0.533755 1.802889 -2.197741 0.073855 0.765701 0.655591 1.722816 0.876233 -1.577405 0.609462 0.035564 -0.530730 0.548760 -0.302635 -0.010707 -0.337587 0.189090 -0.083602 -0.117499 0.125847 -2.466553 -0.303878 0.117586 -0.984340 0.330373 0.317665 0.497003 -1.154617 0.578671 -1.044358 0.753678 -1.831760 -0.369462 -0.040155 -2.014106 -0.183724 0.545486 1.188210 0.642475 -0.687784 -0.930759 -0.600278 -1.786306 -2.226074 0.233317 -0.147444 0.270240 0.062429 -0.241245 -0.008708 -0.643877 0.049034 1.224712 -0.470202 -0.105428 -0.214646 2.512697 -0.000798 -0.053529 -0.894382 -0.699189 -0.163002 0.823146 1.016558 -0.413750 -1.377828 -2.089377 -0.703205 1.009964 -0.103779 -0.189610 -0.943539 -0.457533 -1.537420 0.224726 -0.745189 0.168003 -0.142841 -0.429145 -1.276192 0.281758 0.004031 -1.248902 -0.327939 -0.892649 -0.224429 1.013587 -0.332397 0.407075 -0.377045 0.002449 -0.937626 -1.111526 0.547215 -0.352047 1.111621 1.060483 0.325597 -0.705252 -0.132095 -1.713168 1.223286 -0.918240 0.261929 0.063283 -0.121883 1.650954 -0.981411 -0.914768 -1.000380 0.483195 -0.079594 -0.952439 2.131143 0.877789 -0.581068 -0.063756 0.180915 0.191798 1.019263 0.952253 -1.059619 -0.853716 0.410159 -0.014371 -0.160818 -0.230231 0.660630 -1.113450 0.736168 -0.627694 -0.316967 0.494118 1.137490 -0.252188 0.221143 -0.262025 -0.781021 0.148974 0.727828 0.916235 -0.370738 -0.544504 -1.282925 0.635576 -2.113000 -0.510868 -0.497989 -0.573772 -0.603482 0.575810 -0.452547 1.316660 -0.296524 -0.866322 0.855679 -1.970391 -1.350317 -0.483594 0.282581 0.161433 -0.353521 0.598406 -0.512941 0.520469 0.661694 0.137612 -0.101850 -1.339345 -0.203224 -0.043779 0.766650 -0.127314 -0.478154 1.436471 0.198039 -0.228816 -0.263410 0.034311 0.190640 -0.389152 -1.017981 -0.251423 -0.358571 0.537626 -0.584185 1.174602 -0.346156 -0.254669 1.031719 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 8.528099 3.768360 -11.490797 24.738128 -3.300782 -8.777461 1.224069 5.102587 -7.502256 -35.127832 -20.658624 9.558656 6.465647 1.444924 5.927353 10.019658 -6.348742 3.509020 -35.872479 9.573314 16.221375 5.308624 -0.145509 -6.428419 3.302546 -9.219872 4.899244 3.984437 2.663553 21.906075 -8.663745 11.575869 17.953212 -3.428789 5.553029 14.450745 -6.826456 5.900229 -3.644360 3.585275 23.121608 14.348967 -4.242048 4.780243 0.477549 20.619075 0.910342 10.103714 -16.253531 -15.545380 7.445444 14.063040 -10.098060 -4.572305 -8.960171 8.591147 22.726759 14.244045 -7.115732 7.257769 -11.328306 -1.593501 7.226047 3.163303 23.469100 11.623985 18.330583 16.356343 22.721854 -11.494338 0.415524 7.656221 1.273969 -9.046556 17.457577 -10.036174 -23.045261 -5.242430 -4.150789 -33.403626 -12.537450 5.543617 33.050541 -21.191294 -1.602319 2.957060 9.088011 22.216186 -12.858670 1.795555 -12.072844 -2.118672 -14.932349 36.322473 4.666535 3.740770 -4.129039 11.607415 9.578613 11.581765 -1.742055 -13.606606 -8.679894 -28.437823 -10.482088 -8.941992 9.395124 14.538415 -28.352006 -7.092518 1.688726 18.574292 -33.630873 3.631930 15.192994 15.663274 21.576809 -4.769303 -19.213766 7.534975 0.885309 -0.484119 14.905785 -8.585459 2.036523 -3.373209 5.423939 0.274087 3.499061 2.101864 -30.014136 -10.706137 -1.871072 -10.575788 3.812039 8.719530 13.780718 -11.547950 12.764690 -14.008167 17.063326 -32.275179 1.892989 -7.193173 -22.922740 -4.962103 3.704986 18.848902 7.750998 -13.567710 -11.476050 -4.707514 -29.786086 -28.640521 1.979815 5.872013 5.130231 4.772913 -3.780505 9.128312 -11.399794 8.046032 14.489112 -7.866512 -2.812853 -1.386787 32.578637 2.504969 -5.618460 -11.093623 -10.017930 -7.892179 3.387074 21.112364 -2.640695 -20.579497 -37.179968 -13.635339 18.255528 -6.201300 -0.918720 -15.854482 -4.090811 -22.244127 4.213074 -18.852326 5.176511 2.205446 -8.766816 -21.233544 1.366356 -0.386285 -9.538836 -1.677912 -15.226129 -5.992667 19.479830 -1.740376 8.340983 -0.144281 3.670353 -17.276715 -14.406500 9.227883 -13.087589 15.638886 13.989186 -2.185630 -13.898852 -4.631928 -22.254156 14.145058 -0.898172 5.196387 -8.449476 -2.060205 21.496917 -14.483782 -3.889990 -17.321830 3.156640 2.932522 -22.932997 28.756970 15.347982 -5.053558 1.805519 4.827723 4.184632 10.653912 10.994468 -14.365942 -14.829953 0.106161 -7.306313 0.063975 -1.590377 12.068633 -19.179432 2.916187 -9.657344 -3.929085 10.675121 12.109289 0.321214 9.411124 2.966318 -10.158375 5.715908 11.312116 16.521752 -7.023931 -15.056490 -31.100496 11.648087 -22.856656 -7.454954 -9.224946 -2.410468 -13.660066 6.641746 1.927581 19.802030 9.379627 -14.727301 15.785414 -27.361804 -21.018895 -14.265773 2.080370 0.553569 -4.521996 -2.905955 -6.671913 9.009131 10.734761 -1.585795 0.964399 -18.929490 -1.566225 0.409500 21.423018 0.998214 -1.520898 21.853390 7.288070 -7.924046 -6.592726 3.589795 -5.325984 -2.799141 -15.659345 -8.322454 -2.089243 7.253988 -9.409065 7.084779 -5.028133 -3.346938 10.368040 -PE-benchmarks/box-stacking.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.991885 -0.223644 -0.202852 1.532954 0.325322 -0.379117 0.068343 0.580511 -0.003626 -2.832235 -1.835496 1.331437 0.049839 0.232392 0.550181 0.494305 0.331963 0.355462 -2.592952 0.744913 0.858631 0.455316 0.161355 -0.211180 0.426128 -0.694070 0.441693 0.190304 0.558555 1.547957 -1.049792 0.586862 1.330347 -0.083382 0.758599 1.188941 0.016768 -0.043031 -0.408472 -0.460303 2.332194 0.840644 0.233392 1.209875 0.460774 1.589839 -0.022784 1.780372 0.978623 -1.166467 0.824163 -0.488904 -0.979301 0.004485 -1.268054 1.075688 1.072456 0.623943 -0.970699 0.556678 -0.119458 0.040904 0.320173 -0.691716 1.485460 0.707055 0.927323 0.963489 1.765588 -0.995357 -0.311902 0.969790 0.989316 0.606322 1.036351 -1.228037 -1.049258 -0.887889 -0.303148 -1.923013 -0.548490 -0.424498 2.659756 -1.649096 0.238595 0.636181 -0.307384 1.381986 -0.487517 0.026070 -1.375234 0.115345 -0.197331 1.495688 0.161541 0.010944 -0.104574 0.434148 0.351428 1.167895 0.081368 -1.083485 -1.123034 -2.605335 -0.688824 -0.646524 0.757807 0.625281 -1.897546 -0.132424 -0.165275 1.829943 -2.166032 -0.129313 1.063116 0.745591 0.588474 0.183146 -0.935424 -0.233875 0.349488 0.342622 0.787832 -0.900988 -0.076720 -0.648288 0.164261 -0.026694 0.714168 -0.109742 -1.085193 -1.201931 -0.248286 0.310504 -0.133711 0.084306 0.775564 -0.993225 1.142741 -0.500001 1.071795 -1.828339 -0.405221 -0.768648 -1.030799 -0.505521 2.532335 1.048241 1.592787 -0.118743 -0.678675 -0.793516 -1.742951 -1.844730 0.491267 -0.124894 0.759405 0.752194 -0.061406 0.772549 -0.643819 -0.108836 0.135080 -0.788366 -0.252651 -0.251269 0.597255 -0.463033 -0.182747 -1.564683 -0.199915 0.351670 -0.453843 0.841974 -0.457784 -2.130252 -1.913078 -1.318497 1.308525 -0.643831 0.537658 -0.583376 0.060565 -0.900243 0.075280 -1.475291 0.069411 -0.110169 -1.439055 -1.656348 0.085664 -0.426457 -0.231463 0.297080 -1.160016 -0.036896 0.977860 1.117930 0.536797 0.322282 -0.044000 -2.053510 -1.453446 -0.145268 -0.882758 1.529680 0.735372 -0.306801 -1.459522 -0.707790 -1.416817 1.241050 -1.441178 0.270643 -0.447395 -0.344610 1.411100 -0.870697 0.071648 -1.523290 0.560399 0.718967 -3.194291 1.570728 1.208809 -0.781639 -0.241266 -0.417817 0.337403 0.997499 1.516991 -0.836736 -0.752315 0.302526 -0.533704 0.005823 -0.777140 1.145423 -0.851096 0.482457 -1.239005 -0.807704 0.727656 0.892195 0.066757 0.440602 0.849931 0.407109 0.676049 1.481556 1.008064 -0.196642 -1.454392 -3.376533 0.977850 1.331116 -0.103311 0.461854 -1.052501 -0.999802 0.322099 -0.412439 1.505476 0.425308 0.333537 1.353461 -1.583935 -1.468133 -0.382036 -0.197315 0.149714 -0.352468 0.465996 -0.733701 0.281485 0.248026 -0.071528 -0.118461 -0.702513 -0.697137 0.144516 1.378102 0.757992 0.572866 1.538886 0.589256 -1.115152 0.071641 0.145722 0.086777 -0.369476 -1.418653 -0.620761 -0.297829 0.127571 -0.714435 0.663340 -0.320307 -0.012183 0.173189 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = 5.195133 1.242315 -4.124788 13.316285 -0.584850 -2.322238 -0.227139 3.394610 -3.331281 -21.134672 -13.357830 7.928308 2.307383 4.818378 4.127106 4.029610 -0.752093 0.790324 -21.680202 4.453841 8.466217 3.589970 1.825784 -0.453871 2.981378 -4.277212 3.648470 1.072504 3.779155 11.960626 -6.337159 7.263966 10.512743 -2.322456 4.089027 7.129684 -2.074625 1.666781 -4.506159 -1.896313 14.794978 5.632519 1.502218 6.332198 -0.489789 11.768086 -0.236422 10.526857 1.162055 -10.339548 6.359867 0.748167 -6.038414 -1.105580 -6.068461 6.465971 8.310452 6.958523 -5.056460 3.308734 -2.214135 -1.068267 2.866374 -2.467360 11.881976 6.024206 9.183115 8.347978 10.976788 -6.976762 -1.033829 5.642094 1.239490 0.422686 6.761070 -9.321235 -9.074959 -2.995692 -1.905562 -16.534408 -7.660301 -0.634639 18.609688 -12.200812 0.261116 1.256042 -0.446413 11.367232 -4.676252 2.436399 -8.735949 -1.798418 -3.655935 12.201464 1.179750 -0.619020 0.192059 3.600472 3.874206 7.734853 -0.812111 -7.129864 -5.926888 -13.958519 -4.858804 -3.455288 7.302913 9.012651 -14.412039 -2.563523 -4.765466 10.747657 -17.152889 -0.575594 7.711285 8.419641 8.239103 4.005645 -8.897380 -0.485730 3.371531 1.184871 9.158346 -5.695788 2.503545 -3.965358 0.679556 -0.221723 3.827734 1.027721 -12.444467 -9.574700 -2.052912 -2.595576 0.932935 2.602174 7.903830 -4.248932 8.888998 -4.659212 8.460621 -15.168588 -2.777265 -4.097489 -9.874833 -3.741998 11.398978 10.054586 8.163947 -4.392521 -7.186300 -3.689440 -14.670999 -12.113205 1.428664 2.692538 4.499204 6.471986 -1.776920 7.720447 -5.874148 2.458095 4.115016 -3.904320 -3.154703 -1.331316 7.136594 -0.028294 -1.495897 -9.233277 -2.390068 -4.240731 -3.096342 10.835506 -1.435292 -14.298128 -18.469580 -8.032825 10.150363 -3.960366 1.953808 -6.625919 -0.962811 -9.060956 -0.428762 -12.239404 -0.463676 0.927728 -8.810133 -12.115631 1.982077 -1.646475 -4.143145 1.721308 -8.259121 -2.539592 10.805271 6.398586 5.313921 0.632898 0.277259 -11.607079 -8.574237 2.116795 -9.050799 9.180625 5.546573 -2.879633 -9.531526 -4.617134 -10.523227 8.310069 -3.958301 2.835309 -4.549764 -0.154222 9.933668 -7.901638 1.001509 -10.053784 2.189515 5.300364 -22.609709 11.578160 6.882658 -2.938307 0.299656 0.686853 2.243081 6.683194 6.649525 -5.973440 -7.610759 0.376305 -2.900905 0.692528 -4.580817 6.979597 -8.609879 -0.301110 -6.488745 -4.120563 6.059311 5.104713 1.083133 3.613011 5.997424 -0.971793 5.800769 8.128786 8.905723 -3.885810 -7.605304 -21.730050 7.965229 2.759748 -3.005652 -1.806600 -5.947406 -6.881469 3.800208 -2.636631 10.145321 3.003741 -1.797673 9.524045 -13.282496 -10.594971 -6.607749 -0.032954 -0.160519 -0.425160 -1.500903 -4.088745 5.054308 5.458206 -2.505202 -0.491479 -7.951108 -3.310691 0.576681 10.798858 1.506537 5.369389 11.935751 4.848492 -5.891640 -1.573950 2.662913 -1.843081 -3.889570 -11.135259 -4.523012 -0.277076 1.743445 -5.234039 1.173927 -3.252181 -2.943512 3.152854 -PE-benchmarks/longest-palindrome-substring.cpp__main = 2.163641 0.186645 0.334553 1.806502 0.854349 -1.906211 -0.513093 2.567284 -1.172044 -2.502399 -2.939345 0.575034 -0.552062 0.233971 2.914990 0.035179 -0.218194 -0.320727 -4.662649 2.102944 -0.041729 0.381365 -0.556118 -1.661891 1.124799 1.195755 -0.889113 1.139210 0.360961 0.914784 -2.397990 0.046832 0.502763 0.657158 1.911998 -0.857146 0.593610 -0.398264 -0.604795 -0.838208 3.779876 1.152999 0.069585 2.418609 1.766711 1.121614 -1.083844 2.664929 0.297246 -0.654713 2.154594 -3.194366 -1.113643 1.078017 -1.835245 2.258700 2.770088 0.632606 -1.496621 1.168664 0.125959 0.105261 0.384779 -2.737447 3.060032 1.315989 1.990552 0.454139 2.556564 -0.690504 -0.614135 0.948573 3.322572 0.427121 -1.691430 -2.952781 0.551006 -5.315567 1.029249 -4.020032 -0.338943 -1.444327 2.729268 -1.827026 1.422254 2.010141 -1.424417 1.200275 -2.428916 0.796099 -1.004860 -0.246139 -0.509706 2.102965 -0.763380 -0.512339 1.538674 0.688268 1.445100 2.775376 -0.672558 0.606818 -1.999602 -3.909849 -1.520770 3.185872 0.283141 -0.914573 -1.322912 -0.189376 1.287023 0.598742 -1.136927 -2.039846 1.527072 0.760284 -1.730547 0.994007 -1.942300 -1.180123 -0.120495 1.618214 1.320702 -1.421974 0.840135 -2.223021 -0.335692 0.724480 2.668564 0.178777 -0.308860 -1.714096 -0.640176 0.105322 -1.246723 -1.960763 -0.715207 -0.993490 1.962677 0.033662 1.227801 -2.732239 -0.487108 -1.502017 -0.303135 1.032917 3.628736 0.832795 1.116418 2.582564 -1.021116 -0.725980 -1.371341 -1.988970 1.670455 1.170106 1.539477 -0.188637 0.337478 0.679596 0.472646 -2.439735 0.716737 -2.090158 -1.635555 -2.411189 1.098095 -0.590225 -0.462560 -3.062827 1.957304 2.652018 -2.102840 -0.382787 -0.048050 -1.628252 -0.507436 -1.682616 1.199335 0.387299 0.680998 0.458271 1.888381 -2.471030 0.747711 -2.496692 0.977157 0.370394 -3.199285 -1.190466 -0.682033 0.039392 0.654841 -0.635227 -0.871844 0.294392 0.577765 3.582746 -0.403414 1.463942 1.270691 -3.434812 -4.454553 -2.033099 0.643107 2.078973 -0.252183 0.366107 -1.836868 -0.269360 -1.026808 2.593842 -2.269494 -0.589776 -1.623404 -0.323540 2.010238 -0.902325 -1.645398 -2.078349 0.507587 1.146584 -3.342222 1.943389 0.968725 -1.325518 -1.494949 -3.159237 0.997617 1.637124 4.716139 -0.647778 0.221349 0.082383 0.982953 -0.687169 -2.264368 2.688699 -0.339708 0.087993 -1.498620 -2.271180 0.129421 1.495446 1.086780 1.842591 0.856147 2.573053 -0.681757 2.985558 0.172196 -1.551857 -0.735887 -3.864002 0.502706 5.414741 0.011218 0.773952 -2.567415 -2.681761 -1.368166 0.778459 1.702558 2.857210 2.193521 1.112454 -0.622769 -1.335205 -0.227479 2.019119 -0.975379 -1.616806 0.182695 -1.204208 -0.085053 1.268059 -0.401579 0.500804 -0.002017 -4.844189 -2.643944 0.456157 0.545021 0.407795 2.093550 1.767107 -2.076856 0.270321 -0.212474 0.766025 0.456295 -0.322454 -1.445889 -1.822033 -1.052590 -0.670193 0.846074 0.928704 -0.213178 0.245283 -PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/longest-palindrome-substring.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/longest-palindrome-substring.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/longest-palindrome-substring.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/longest-palindrome-substring.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = 4.152646 -0.648391 -1.309242 3.607513 0.767220 -4.328310 1.058678 2.629407 -1.130048 -5.696397 -3.402871 4.018185 0.322098 -3.071006 0.810210 1.422204 -0.656117 0.350855 -7.597356 3.993560 1.508449 0.544755 -2.728333 -2.338227 0.443303 -2.141413 -0.166517 2.915806 -1.007609 3.347145 -2.055237 0.440136 2.548137 0.324171 2.298047 3.704407 -0.736105 -0.313627 1.731899 1.408600 5.870342 3.711036 -0.975613 1.722463 3.442838 3.925139 -0.696260 4.932637 -1.525642 -1.488752 2.301222 1.714081 -3.348255 -0.406394 -3.540157 1.677266 4.334446 0.583400 -2.331256 2.474310 -3.218479 -0.433551 1.699456 1.012228 5.916211 2.902015 2.876548 2.051209 7.042737 -1.282065 -0.723586 2.770659 4.341807 -0.506258 2.847973 -1.335766 -4.510612 -3.431034 0.302241 -6.421921 -1.600372 -0.385836 7.030286 -3.436057 -0.022419 1.752709 2.662542 4.030182 -3.827125 -0.868023 -2.738095 0.821514 -2.509689 8.753271 -0.417506 2.699196 -1.085204 1.908696 1.849073 3.382147 -1.596129 -3.013739 -3.137077 -8.413296 -2.313045 -1.431020 -1.266108 -0.899004 -6.469373 -0.956860 2.541604 5.070552 -5.747588 -0.322150 3.177536 0.503519 3.893424 1.051775 -3.916551 0.638963 -0.280061 0.809547 1.377134 -0.951946 -1.074577 -2.329091 2.264223 0.666805 0.832943 -0.450023 -6.925441 -0.346203 1.075161 -1.344148 0.032110 0.275788 0.323226 -4.053098 1.550867 -3.070734 3.094328 -6.620888 -0.248532 -3.060807 -4.142987 0.277223 2.990682 4.460586 2.731698 -0.329259 -0.544467 -1.384195 -5.793547 -7.833475 0.868204 -2.015721 1.250833 -2.107204 0.117482 -0.884067 -0.950741 -0.937187 2.286768 -2.774333 0.052616 -2.354981 7.031473 0.027188 -0.888824 -2.225479 -1.869633 1.722412 1.775622 1.819450 -1.372910 -7.351990 -5.384032 -3.513086 2.828034 -0.270115 -0.593597 -2.536203 -0.435167 -4.164155 1.603477 -2.166590 1.771000 -1.087891 -1.901811 -3.568665 -0.664374 -0.245487 -0.974329 -2.522544 -2.585252 -0.623250 2.803135 0.488512 1.098703 1.015943 -0.174170 -4.424955 -4.528330 0.847721 0.815971 4.990241 3.602578 1.046398 -2.359066 -0.202379 -5.861320 3.832204 -4.412623 0.124499 0.245070 -2.980354 6.139375 -2.237415 -2.392445 -3.132388 1.846888 -0.980488 -4.200310 7.418699 4.446725 -3.432148 -1.826584 -1.618574 0.651011 3.413810 5.412918 -2.780520 -1.321770 0.949219 -0.293216 -1.125350 0.216688 3.280364 -2.793139 3.755495 -3.329904 -2.454242 1.924380 4.087606 -0.483801 0.740261 -2.414206 -0.605620 0.432091 3.456863 1.628611 -0.530243 -3.821721 -8.488959 1.268754 -2.911746 -1.408584 0.501446 -1.737831 -4.149392 -0.185018 -0.732425 5.228755 0.659265 -2.037603 2.515463 -4.900334 -4.747646 -2.085039 1.046631 -0.303569 -1.957216 2.539614 -2.013690 0.195954 0.898622 1.347652 0.220148 -3.247815 -2.481352 -0.453513 2.415271 2.055214 -3.101907 4.202303 0.993090 -1.174520 -1.719789 0.055140 0.636452 0.802184 -2.742135 -1.989779 -3.241754 1.440910 -1.244808 4.723606 0.988818 2.076240 2.259916 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 1.981278 -0.360377 -0.191093 1.364071 0.564601 -1.689540 0.322756 1.245793 -0.366317 -2.806437 -1.945684 1.655301 -0.089042 -1.258629 0.687338 0.645515 0.179753 0.215250 -3.634618 1.802704 0.765152 0.391445 -0.822312 -0.780006 0.462100 -0.931252 -0.474407 0.916591 -0.220433 1.468856 -1.279018 0.322226 1.171974 0.175349 1.124359 1.531862 -0.575255 -0.454516 1.068265 0.317867 2.967792 1.242635 0.158146 1.157047 1.712756 1.711697 -0.805971 2.804969 0.662864 -0.742798 1.614808 -0.212798 -1.475516 0.384830 -1.804637 1.047926 1.737382 0.096851 -1.182220 0.980632 -1.032220 0.035376 0.587444 -0.420403 2.601750 1.497158 1.062989 0.800774 3.103067 -0.400038 -0.300504 1.212819 2.152630 0.285831 0.874228 -1.151812 -1.182271 -1.962685 -0.037186 -2.796919 -0.221407 -0.689697 3.524435 -1.584661 0.224124 0.964643 0.679271 1.797152 -1.252261 -0.322918 -1.382213 0.612843 -0.728429 2.875896 -0.492275 0.980628 -0.506139 0.512842 0.427142 1.494782 -0.734261 -1.170687 -1.988237 -3.980066 -1.289861 -0.457638 -0.251733 -0.535375 -3.104353 0.077869 0.960595 2.038620 -2.530845 -0.380330 1.237543 0.232466 0.617432 1.219620 -1.931524 -0.595842 -0.076591 0.940398 0.244529 -0.406466 -0.481867 -2.012315 0.538423 0.343028 0.758265 -0.547671 -2.196674 -0.514057 0.101153 -0.160784 -0.254105 0.014097 0.281859 -1.563086 0.889812 -0.962514 1.184957 -2.832056 -0.580899 -1.759826 -1.398202 0.046018 2.545645 1.978490 1.551844 0.485830 -0.271001 -0.929307 -2.497733 -2.602233 0.277222 -1.440687 1.014439 -0.557153 0.188360 -0.289359 -0.177230 -0.752700 0.254897 -1.383551 -0.014044 -1.449172 2.291973 -0.415882 -0.313473 -1.640048 -0.591902 1.326996 -0.242474 0.289990 -0.590703 -2.813783 -2.128561 -1.777823 1.237810 -0.276433 0.346660 -0.990577 0.445482 -1.427200 0.571135 -1.093216 0.179818 -0.500944 -1.332035 -1.604485 -0.319030 -0.260546 -0.333549 -0.999253 -1.170251 -0.013357 1.347273 1.326759 0.606764 0.638888 -0.458358 -2.537610 -2.381002 -0.289460 0.260359 2.055453 1.643313 0.246377 -1.495706 -0.374234 -2.409632 1.773549 -2.450155 -0.043227 0.146210 -1.290285 2.464715 -0.972281 -0.655708 -1.633944 0.732822 -0.353933 -3.527830 2.819880 1.620162 -1.771316 -0.907031 -1.646112 0.612546 1.434215 2.605003 -0.758000 -0.073997 0.389592 -0.144712 -0.475396 -0.521107 1.709802 -1.085309 1.715810 -1.691648 -1.308112 1.054356 1.797761 -0.232285 0.266976 -0.565289 0.578995 0.712054 1.716103 0.650254 -0.390257 -1.653102 -4.483461 0.403861 0.923193 -0.218477 0.833830 -1.212903 -1.872069 -0.323191 -0.366237 2.407728 0.290046 0.358269 1.162929 -1.714028 -2.004237 -0.495916 0.526196 -0.151173 -0.912525 1.071418 -0.998614 -0.278915 0.372079 0.748381 0.289264 -1.368217 -1.922690 -0.194348 1.306433 1.292799 -0.894779 1.754480 0.704478 -0.841187 -0.411517 0.013185 0.627470 0.160218 -1.067947 -0.882076 -1.397698 0.167238 -0.670483 2.170017 0.341956 1.056568 0.536614 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = 2.478330 -0.083110 -0.698116 2.259646 0.474039 -2.912076 0.856611 1.783378 -0.609644 -3.556808 -2.042582 3.031386 0.163806 -1.987909 0.217942 0.651636 -0.486265 0.768007 -4.466311 2.542392 0.950911 0.817292 -1.630509 -1.867161 0.274625 -1.044593 -0.160608 1.779109 -0.424852 2.252034 -1.318298 -0.142077 1.677350 0.199101 1.314064 2.538582 0.182393 -0.029743 0.979558 0.583765 3.710246 2.407366 -0.515732 1.489813 2.204719 2.526124 -0.125066 2.785425 -0.934939 -1.035144 0.840428 1.039257 -2.175860 -0.545824 -2.083877 1.317403 2.667610 0.711340 -1.598224 1.719461 -1.531536 -0.448956 1.142907 0.400055 3.249843 1.946816 1.196589 1.373215 4.703378 -0.967550 -0.548232 1.700026 2.973044 -0.264521 2.069669 -0.839208 -3.050296 -2.117534 0.004233 -4.321479 -1.043697 -0.102331 4.729098 -2.470171 0.509754 1.400467 1.610110 2.317057 -2.279747 -0.900060 -1.765861 0.436373 -1.690885 5.579717 -0.142060 1.549521 -0.708212 1.257994 1.335267 2.168939 -0.966611 -1.897587 -1.780110 -5.463530 -1.179240 -0.964553 -1.057082 -0.574942 -3.785610 -1.029342 1.652871 3.731126 -3.936694 -0.286981 2.224467 0.223820 1.962874 0.138818 -2.201923 0.817059 -0.326138 0.020861 0.803205 -0.925680 -0.984639 -0.625758 0.992329 0.288498 0.438730 -0.192721 -4.320421 -0.474773 0.458940 -0.647264 -0.082709 -0.079418 -0.084874 -2.767833 1.009076 -2.120090 1.945167 -3.904660 -0.061319 -1.508759 -2.717342 0.074442 1.865396 2.160183 1.811458 -0.557271 -0.279383 -1.154956 -3.373741 -4.939957 1.242068 -1.236701 0.895330 -1.185294 0.087071 -0.758462 -0.721315 -0.854077 1.486440 -1.668755 0.140121 -1.205270 4.661565 -0.284750 -0.493369 -1.660120 -1.049970 1.309807 1.484708 0.787544 -1.177009 -4.511772 -3.155554 -2.186162 1.892641 -0.069306 -0.381198 -1.464552 -0.399373 -2.223185 1.005051 -1.505336 1.407721 -0.778010 -1.120586 -2.383950 -0.390748 -0.280252 -0.682551 -1.385836 -1.539627 -0.325770 1.477473 0.201257 0.405189 0.470699 0.243516 -2.978815 -2.735577 0.448984 0.647196 2.931422 2.235815 1.019842 -1.860325 -0.083162 -3.564917 2.364735 -2.930680 0.050950 0.063933 -1.679569 4.209522 -1.384064 -1.309265 -2.174084 1.287316 -0.282835 -2.773048 4.585713 2.812455 -2.018082 -1.099241 -0.677589 0.133241 2.425091 3.566872 -2.052780 -1.209689 0.949170 -0.656647 -0.676396 -0.203730 2.039942 -1.720934 2.758447 -2.067311 -1.427721 1.079699 2.550161 -0.327450 0.623900 -1.326955 -0.466227 0.038139 2.391156 1.141973 -0.093848 -2.681131 -5.008041 1.067949 -1.782568 -0.484340 0.396757 -0.967400 -2.514449 0.253918 -0.356540 3.266443 0.322323 -1.401054 1.665852 -3.328407 -3.073487 -0.878396 0.590458 0.192986 -1.324109 1.795578 -1.325400 0.238766 0.492745 0.737366 0.159204 -1.707286 -1.442614 -0.250878 1.519327 1.415077 -1.899575 2.830486 0.314487 -0.973627 -0.638199 -0.165184 0.724379 0.058076 -1.767866 -1.103408 -2.054397 1.050578 -0.863074 3.354872 0.371376 1.082643 1.541502 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = 2.601009 -0.985770 -0.475737 2.186768 0.824934 -2.342999 0.705714 1.476772 -0.305724 -3.525457 -2.059448 2.133260 0.056714 -1.801436 0.619822 0.724100 0.000000 0.137066 -4.152511 2.227425 0.673590 0.245320 -1.631842 -1.157301 0.255145 -1.378449 -0.067671 1.850985 -0.526943 1.976944 -1.243424 0.166771 1.547417 0.170777 1.344358 2.307125 0.033965 -0.219756 0.928470 0.825257 3.838482 1.886350 -0.394424 1.344651 2.211533 2.414769 -0.519971 3.900572 -0.183620 -0.829849 2.031028 0.158170 -1.898210 -0.251980 -2.504313 1.178648 2.848814 0.257655 -1.626751 1.550795 -1.723417 -0.096206 0.946515 0.490875 3.460399 1.945400 1.657760 1.185185 4.335242 -0.941624 -0.630438 1.891199 2.895942 0.199504 1.560017 -1.244344 -2.386217 -2.354485 0.197024 -3.065685 -0.686187 -0.679349 4.034424 -2.001560 -0.137325 1.342601 1.175229 2.271073 -2.109023 -0.450245 -1.846890 0.631612 -1.038515 4.969179 -0.405108 1.593252 -0.606032 0.937943 0.924667 2.177512 -0.716171 -1.853624 -2.243797 -5.292573 -1.774103 -0.887579 -0.694183 -0.788183 -3.926783 -0.448527 1.375256 2.411242 -3.291691 -0.297748 1.836089 0.400704 2.427992 0.961970 -2.274466 -0.046020 0.131397 0.619009 0.655116 -0.575423 -0.609119 -2.066400 1.408461 0.483021 0.538953 -0.536420 -3.610059 -0.196677 0.458266 -0.307222 -0.057405 -0.090853 0.079635 -2.634784 0.999858 -1.654900 1.836828 -4.040308 -0.587856 -2.030174 -2.423855 0.111663 2.950109 2.213091 2.312006 0.224184 -0.696826 -1.018979 -3.335060 -4.864509 0.360796 -1.409130 0.924063 -1.056253 0.075292 -0.501519 -0.524531 -0.818946 1.100383 -1.675200 -0.014661 -1.466703 3.332833 -0.278403 -0.508897 -1.633621 -0.806932 1.480848 0.798729 1.026466 -0.843135 -4.612008 -2.898579 -2.211203 1.661003 -0.257386 -0.106605 -1.216057 -0.199034 -2.793404 0.944034 -1.321938 0.918385 -0.747300 -1.613855 -2.219718 -0.216284 -0.305431 -0.150351 -1.185944 -1.687932 -0.204245 1.279773 0.968956 0.736196 0.839043 -0.314083 -3.165441 -3.139827 0.053002 0.550113 3.381784 1.862629 0.622459 -0.990367 -0.324555 -3.472694 2.272376 -3.219083 -0.017059 0.473103 -1.815259 3.485344 -1.323672 -1.423501 -2.208707 1.151159 -0.404997 -2.563910 4.384704 2.606162 -2.302258 -1.380676 -1.342685 0.403506 1.935629 3.548582 -1.561810 -0.658863 0.765178 0.084003 -0.697990 -0.260304 1.979243 -1.342312 2.303759 -2.325084 -1.783627 1.100387 2.651752 -0.409318 0.283620 -1.135532 0.037250 0.091834 2.434734 0.837996 -0.214001 -2.225265 -5.539499 0.750543 -0.802752 -0.847437 0.688554 -1.652984 -2.390647 -0.074362 -0.281851 3.190107 0.693364 -0.396682 1.693161 -2.733158 -2.830410 -0.995244 0.409206 -0.070075 -1.340008 1.573101 -1.374908 0.003625 0.284099 0.820878 0.061391 -1.788145 -1.738285 -0.305529 1.436251 1.119903 -1.593606 2.537808 0.611988 -0.785820 -0.862786 0.081786 0.540823 0.765987 -1.590398 -1.148647 -2.002887 0.698594 -0.763804 2.880832 0.482479 1.315192 1.243340 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = 2.244769 0.009827 -0.281929 1.649894 0.402750 -2.141439 0.459547 1.772595 -0.746210 -3.440405 -2.702979 1.698898 -0.030309 -1.471113 0.949295 0.657165 -0.078005 0.260543 -5.167181 2.163154 1.259225 0.506845 -0.897398 -1.052616 0.542028 -1.138559 -1.020713 1.277973 -0.376242 1.924796 -1.454331 0.445836 1.470166 0.359910 1.399426 1.926128 -1.095574 -0.467538 1.549455 0.521469 3.417116 1.960536 -0.246882 1.085926 1.968834 2.152410 -0.970255 2.498341 -0.295518 -1.022414 1.490242 -0.189313 -1.929584 0.410393 -1.847440 1.037548 2.376543 0.395080 -1.261633 1.321391 -1.598597 -0.116727 0.736525 -0.610410 3.253764 1.655666 1.419962 0.930626 3.598297 -0.503033 -0.262880 1.299400 2.256955 -0.169284 0.598008 -0.974281 -1.591277 -2.653574 0.109878 -4.399686 -0.756836 -0.474192 4.208409 -1.920603 0.361701 1.075533 0.895397 2.223461 -1.766400 -0.503190 -1.554924 0.550427 -1.202981 3.718359 -0.400771 1.101466 -0.385353 0.890491 0.906091 1.826511 -1.185653 -1.328323 -2.486142 -5.033135 -1.141556 -0.452160 -0.235414 -0.400170 -3.591518 -0.206340 1.440904 2.812637 -3.135090 -0.386245 1.667303 0.410553 0.197781 1.056194 -2.589410 -0.372622 -0.319291 0.988642 0.791767 -0.634444 -0.477713 -2.080712 0.713938 0.363316 0.861197 -0.395112 -2.975803 -0.695905 0.374084 -0.703314 -0.277628 0.204300 0.356241 -1.486642 1.096539 -1.513036 1.642915 -3.535821 -0.006424 -1.955595 -1.837479 0.143404 2.169937 2.996563 1.078957 0.363616 -0.106029 -0.819196 -3.076297 -3.338581 0.539867 -1.250716 1.437945 -1.075038 0.134872 -0.302249 -0.341369 -0.659810 0.437086 -1.571572 0.076783 -1.664845 3.662995 -0.114561 -0.528611 -1.683536 -0.777575 1.381691 -0.359360 0.453787 -0.790063 -2.852457 -2.786315 -2.135934 1.609515 -0.243715 0.080335 -1.411605 0.557396 -1.881876 0.857314 -1.329390 0.354738 -0.480940 -1.429801 -1.972032 -0.590817 -0.186846 -0.627333 -1.290223 -1.291573 -0.322265 2.211284 1.222354 0.783081 0.657674 -0.231635 -2.425173 -2.574403 -0.121871 0.175972 2.342766 2.249590 0.199697 -2.035567 -0.215445 -2.947704 2.460235 -2.038471 -0.001800 -0.364896 -1.591387 3.217877 -1.096072 -1.005896 -1.764580 0.843567 -0.392855 -4.104789 3.429829 2.076249 -1.910300 -1.018140 -1.838991 0.608238 1.887043 3.021104 -1.021935 -0.249410 0.288340 -0.501092 -0.513062 -0.444394 2.082782 -1.494266 1.927792 -1.842854 -1.368670 1.406242 2.007489 -0.132473 0.811651 -0.792523 0.723053 1.073401 1.870808 0.796497 -0.854600 -1.999293 -5.074611 0.679093 0.690733 -0.294186 0.510837 -1.021655 -2.505180 -0.509368 -0.438191 2.861475 0.894401 -0.376041 1.398482 -1.986073 -2.441638 -1.024202 0.929941 -0.242154 -1.124011 1.099551 -0.984400 -0.000257 0.794985 0.787150 0.779190 -2.031210 -2.611624 -0.354988 1.620433 1.473299 -1.269707 2.224281 0.703141 -1.028959 -0.728024 -0.012105 0.611507 0.183545 -1.201458 -1.249645 -1.743476 0.379366 -0.782175 2.472314 0.558745 1.157283 1.007665 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.992439 -0.167903 1.100190 0.135716 0.742922 -0.333783 0.507818 1.159686 -0.423158 -1.635922 -1.634373 -1.013648 -0.394627 -0.540330 0.951136 -0.200218 0.610905 -0.004321 -2.378554 0.309064 0.646469 0.218866 0.167264 -0.167026 0.324831 -0.616142 -1.785535 0.904346 -0.161654 0.794422 -0.601330 -0.147955 0.580276 0.485518 0.408498 0.912320 -0.101281 -0.367627 1.339208 0.247292 1.893902 0.229885 -0.083251 0.597027 1.203830 0.952788 -1.238841 1.602793 -0.378058 -0.327047 1.601573 -2.463063 -0.741036 0.461256 -0.996589 0.474352 1.998957 0.724177 -0.683282 0.913010 -0.771314 0.250486 0.026613 -1.132016 1.011700 1.262750 0.282176 0.025937 1.459537 -0.509379 -0.440751 0.722214 0.789550 0.240678 -1.552539 -0.929465 0.879486 -3.047860 0.361281 -1.948580 -0.079832 -0.779087 1.837289 -0.366585 0.176403 1.338349 -0.402816 0.430639 -0.458009 -0.225346 -0.811601 0.493560 0.023163 0.940763 -0.571692 0.187760 0.316870 0.085104 0.500268 1.112354 -0.580777 0.000114 -2.599531 -2.677649 -0.920125 0.184495 0.221345 -0.611025 -1.239249 -0.010685 1.597948 -0.248166 -0.859504 -0.403010 0.639528 0.846383 -1.510489 1.447499 -1.817923 -1.123340 -0.135773 0.656134 0.239463 -0.287172 0.032116 -2.350156 -0.004374 0.192309 0.515636 -0.692754 -0.640660 -0.405149 -0.122214 -0.529002 -0.357440 -0.350847 -0.237069 -0.136701 0.580598 -0.664534 0.755914 -1.734413 0.094545 -1.114997 -0.763485 0.165334 2.057133 1.246186 0.129631 1.334019 -0.450675 -0.475861 -0.659736 -0.842845 -0.100789 -0.415826 1.745999 -0.658366 -0.043168 -0.181635 0.003044 -0.809391 -0.783964 -0.473176 0.166756 -1.117364 1.486394 -0.393505 -0.393801 -1.235458 0.603616 1.743975 -1.521468 -0.402791 -0.554037 0.505963 -0.459167 -1.264315 0.583542 -0.143485 0.198083 -0.125781 0.905501 -1.270350 0.729645 -0.430544 -0.099491 -0.162001 -1.523883 -0.875078 0.145578 -0.262420 -0.141538 0.103668 -0.414912 -0.130938 0.804101 1.581682 0.556827 0.421286 -0.283564 -1.339371 -1.807771 -1.218571 0.311693 0.916992 0.981015 -0.016720 -0.416273 -0.249932 -0.864209 1.393119 -0.274011 -0.297640 -0.294886 -0.652040 1.020177 -0.194651 -0.285696 -1.267980 0.214627 0.171971 -2.109310 1.230416 0.427653 -1.104086 -1.245133 -2.193724 0.162164 0.584341 1.677570 0.104893 0.389745 0.312205 -0.130414 -0.236218 -0.876625 0.966205 0.080426 0.886067 -1.291046 -1.093274 0.705453 1.191614 -0.261813 0.971747 0.463228 1.733166 0.623188 1.306033 -0.140999 -0.987452 -0.223397 -2.337915 0.274594 2.407170 0.168254 0.300397 -0.951899 -1.356923 -0.503526 0.740246 1.196358 2.034713 0.988418 0.808507 0.364115 -0.780344 -0.054560 0.679930 0.145887 -1.201165 -0.152857 -0.392478 -0.098312 0.383447 0.254929 1.326169 -1.126919 -2.892992 -0.711966 0.957786 0.511409 -0.330421 0.963098 0.197245 -0.579864 -0.017231 0.103249 1.037103 0.886199 0.462583 -0.554304 -0.978918 -0.295782 -0.247501 1.090492 0.484613 0.334635 0.717130 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 2.964451 0.937997 -2.834596 9.760932 -0.663128 -1.824690 0.273648 1.510935 -2.265604 -14.186162 -9.087015 5.509743 1.679890 2.120639 2.117011 2.899176 -0.814828 0.855581 -14.996424 3.098223 5.910309 1.872277 1.419638 -1.501472 1.549263 -3.885053 4.746941 1.837515 1.924029 8.396778 -3.584879 4.662401 7.177016 -0.614272 3.523873 6.040489 -3.003601 1.691556 -3.419548 -1.042739 9.733636 5.386637 -0.187366 3.328284 0.002120 8.361268 2.375734 3.123937 -0.215418 -6.507607 2.299811 4.484483 -4.295986 -2.103510 -4.462815 3.084247 6.037266 4.482747 -3.379919 2.485532 -2.621548 -0.851113 2.178261 -0.196959 8.502792 2.236563 6.918349 5.901457 7.345818 -5.570176 -0.665575 4.031530 1.223900 -0.662395 5.940543 -5.384677 -9.049706 -0.781354 -1.960623 -12.832186 -5.265538 1.392391 12.213784 -7.638478 -0.440488 -0.028862 -0.038910 7.754508 -3.511092 0.278804 -5.802324 -1.012813 -3.928839 10.064597 2.062984 -0.185358 0.683801 3.504260 3.222398 5.464521 -0.249402 -5.984474 -1.746947 -11.152104 -1.908405 -3.814726 5.488436 5.769162 -8.813202 -2.128632 -2.914495 8.396283 -11.747038 0.144412 5.961589 5.413496 5.122187 -3.549561 -4.776859 1.386991 1.742533 0.954491 7.357257 -4.383528 1.039409 0.262131 1.706709 -0.338376 2.566759 1.252364 -8.109228 -6.489601 -0.819058 -1.487544 0.736605 2.245886 5.200884 -2.589659 5.518580 -4.081577 7.116718 -10.450560 1.003177 -3.042892 -6.178240 -2.717049 3.967584 7.015908 4.501820 -4.780257 -3.179889 -1.128984 -10.016949 -9.547698 1.924866 2.752247 2.043567 3.378776 -1.287239 5.303618 -4.740348 2.677129 4.005164 -2.562725 -1.584779 0.175558 6.104606 1.054998 -1.825767 -4.566355 -2.255624 -3.581276 -0.005463 8.063608 -1.441427 -10.739837 -13.048306 -5.699042 7.204011 -3.149356 -0.176756 -4.921546 -1.759750 -5.501997 0.800838 -8.247891 1.114036 0.653891 -4.798806 -8.353465 0.421999 -1.253496 -2.056781 1.043906 -5.643343 -2.281293 7.695317 1.605112 3.321405 0.756295 1.217441 -6.614719 -4.283908 2.909520 -5.710266 6.007869 4.025402 -1.809991 -7.524277 -2.757376 -6.971594 5.044978 -0.047020 2.271421 -3.806470 -1.197730 7.334566 -4.933838 1.580995 -5.573615 1.514663 3.519570 -14.353667 8.419862 6.632001 -1.730929 0.197303 2.322159 0.931278 4.049598 4.129405 -5.189705 -5.924974 0.109147 -3.268263 0.619378 -1.442810 4.416173 -5.912690 -0.304349 -4.564447 -2.582053 4.404293 3.077542 0.955349 2.846930 3.159732 -1.826035 3.330691 5.610272 6.232934 -1.391981 -6.901664 -14.728328 5.527626 -1.601489 -1.919882 -1.329052 -1.313972 -5.441941 2.633787 -1.583208 7.129483 2.958467 -5.040137 6.741192 -8.909611 -7.627777 -5.909375 -0.853574 0.352036 -0.692045 -0.727648 -3.017954 3.508242 2.660727 -1.700517 -0.473811 -4.771152 0.240162 1.009733 7.884115 1.994413 2.373787 8.169552 2.783541 -4.249831 -2.058256 1.931646 -2.680948 -1.448270 -8.087035 -3.757164 -0.365663 2.638390 -3.233890 0.620265 -1.995791 -0.740861 2.416348 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.838601 0.451643 -0.544438 3.145549 -0.048417 -1.169796 0.194123 1.456322 -0.860879 -5.632946 -4.237983 2.274979 0.254663 0.193762 1.263506 0.962680 0.147491 0.458044 -7.121169 1.716806 2.360643 0.907234 0.362613 -0.646948 0.866911 -1.510666 0.403268 0.788084 0.591754 3.228904 -1.902505 1.560701 2.685863 0.071251 1.785465 2.463366 -1.658881 0.012549 -0.029765 -0.468177 4.398302 2.339220 0.110581 1.703789 0.929917 3.290201 -0.038432 1.872767 0.687574 -2.415707 1.296139 0.274187 -2.165472 0.040910 -2.074695 1.391624 2.481026 1.403638 -1.578483 1.306410 -1.068020 -0.165224 0.779068 -1.199409 3.684552 1.249936 2.352144 1.897863 3.339256 -1.682801 -0.185656 1.493047 1.377463 0.076805 1.305283 -2.151904 -2.562242 -1.852487 -0.518139 -6.022537 -1.622752 -0.094277 5.440423 -3.032651 0.440653 0.536229 -0.235271 3.036945 -1.438445 -0.236161 -2.421467 -0.000979 -1.315097 3.464497 0.287214 0.100181 0.270707 1.249599 1.144910 2.255499 -0.681984 -2.123981 -1.926224 -5.579616 -0.804875 -1.085634 1.696995 1.463331 -3.819418 -0.417558 -0.301798 3.766847 -4.568350 -0.322868 2.259909 1.571907 0.013845 -0.244873 -2.474321 -0.305814 0.208163 1.112773 2.407300 -1.713270 0.157472 -1.167925 0.315494 0.099914 1.474308 0.173574 -2.800878 -2.521121 -0.161409 -0.431720 -0.257913 0.712229 1.658749 -0.844619 2.231129 -1.644544 2.646359 -4.158046 0.270145 -1.825524 -2.022201 -0.776533 2.673633 3.494187 1.591844 -0.734647 -0.692992 -0.726401 -3.959042 -3.420435 1.024253 0.139737 1.684240 0.646124 -0.224798 1.469186 -1.410498 0.249511 0.609931 -1.451362 -0.400353 -0.870291 2.761196 0.089063 -0.753912 -2.346026 -0.633353 0.016644 -1.050726 1.954013 -0.865813 -3.672768 -4.570914 -2.586377 2.765480 -1.082557 0.354223 -1.790876 0.254553 -1.788074 0.483782 -3.000880 0.034964 -0.042168 -2.259395 -3.226523 -0.271713 -0.559537 -0.767454 -0.093167 -2.051759 -0.663749 3.430407 1.791078 1.288231 0.596106 0.230474 -2.959576 -2.302823 0.300485 -1.740802 2.486169 2.171444 -0.713579 -3.584021 -0.956055 -2.930295 2.691389 -0.891123 0.637136 -1.539236 -1.053829 3.248248 -1.696546 0.330381 -2.335051 0.774137 1.076400 -7.211058 3.277317 2.570627 -1.388187 -0.396040 -0.781694 0.730258 1.963873 2.543791 -1.590539 -1.487832 0.082363 -1.470532 0.070355 -1.083433 2.310167 -2.080740 0.623694 -2.160138 -1.313931 2.136490 1.424226 0.345896 1.352381 1.065229 0.593201 1.959195 2.493689 1.978874 -0.945577 -2.855565 -6.706931 1.902960 1.912710 -0.205228 0.201997 -0.959054 -2.688462 0.251736 -0.836662 3.120329 1.421926 -0.930978 2.529094 -2.874104 -3.060879 -1.941233 0.240615 0.004424 -0.629181 0.241723 -1.208354 0.893154 1.121701 -0.036231 0.540542 -2.126383 -1.832434 0.174081 2.985084 1.552463 0.517721 3.183112 1.101091 -2.000340 -0.598827 0.425854 -0.288654 -0.573911 -2.693581 -1.669553 -0.817597 0.658122 -1.379566 1.140374 -0.298516 0.397492 0.812051 -PE-benchmarks/floyd-warshall.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 0.983494 0.871377 0.266025 1.712049 -0.763419 -2.316573 1.219133 2.639777 -1.117270 -3.605183 -1.776979 1.354498 0.257349 -0.693657 0.614948 0.053624 -1.345538 1.171360 -6.170593 1.541645 2.503297 2.082795 0.656908 -2.490185 0.558231 -0.547483 -1.249693 1.718476 0.286145 3.018160 -1.143136 -0.616821 1.909782 0.180260 0.303354 2.733936 0.921342 0.759839 0.614634 0.834632 2.836366 2.495701 -1.962255 0.519515 1.027840 2.761914 0.335272 -0.547638 -3.483107 -2.020073 -0.859087 0.391808 -2.550129 -1.559029 -0.246510 0.965817 3.638338 3.920378 -1.106506 2.098105 -1.469920 -0.998584 0.976615 0.134983 1.992336 1.549793 0.786401 1.412848 3.647855 -1.794841 -0.483143 0.642868 0.784279 -1.764887 1.044837 -0.730884 -2.275213 -5.709017 0.325316 -6.523662 -2.970901 1.383920 3.611598 -2.950775 1.844974 2.395785 0.930010 1.945982 -1.927443 -0.829201 -1.482750 -0.438887 -1.180954 5.819945 0.264895 0.042863 0.453406 2.001769 2.613227 2.170333 0.216908 -1.209271 -2.436816 -4.583271 -0.072135 -0.863095 -0.199635 1.154925 -2.526874 -2.159334 3.630505 2.542661 -4.416876 0.299756 2.945907 1.991690 -0.021531 -1.760643 -1.879377 2.297537 -1.092923 -1.165322 2.098262 -2.298080 -0.649210 1.491622 0.264220 0.311128 -0.005030 0.298386 -4.300354 -1.473576 0.593150 -1.822139 0.183665 0.278512 0.013365 -1.579062 1.205529 -3.551866 2.628487 -3.237667 2.011589 0.389675 -2.042809 -0.250987 -0.429403 1.404637 -1.649487 -1.546634 -1.373217 -0.439619 -2.074111 -4.095696 1.971149 1.301103 1.863826 -0.708848 -0.618233 -0.075415 -1.036376 -0.061550 0.688125 -0.860770 0.426998 -0.108844 4.275077 0.159536 -0.697967 -1.536167 -0.249283 1.055537 0.996311 1.048689 -1.489066 -0.804554 -3.366500 -2.127480 2.479692 -0.034919 -0.908274 -1.507189 -0.596304 -2.488028 1.674851 -1.892701 2.254151 -0.012581 -1.218472 -2.845386 0.078531 -0.324862 -1.206181 -0.079320 -1.217917 -1.354185 0.403923 -1.480053 0.362560 -0.641393 1.805720 -2.105805 -2.127434 0.443518 -0.409818 1.591500 1.261199 0.938557 -2.319429 0.279016 -2.119111 2.942735 -0.211782 0.381201 -1.889686 -0.873286 4.505744 -0.680223 -1.252120 -2.626753 1.259307 1.234094 -0.621879 4.847063 2.378261 -0.581167 -0.541384 0.745181 -0.836804 2.994299 2.396729 -2.662197 -2.714271 0.797739 -1.935110 -0.158933 -0.400966 1.615416 -2.071523 2.159963 -1.230708 -0.515173 0.604122 2.062841 0.206345 3.048462 0.284207 -0.628822 -0.758597 1.929957 1.266401 -0.914236 -1.898425 -1.600809 2.513538 -1.384055 0.351240 -1.172722 -0.549883 -2.263289 1.001649 2.165478 2.424032 3.572670 -2.557119 1.796485 -3.204984 -2.844383 -1.207933 0.879380 0.623689 -1.186797 0.283561 -0.150394 1.631753 1.947182 -0.347829 1.459032 -1.853583 -1.704450 -0.641613 2.303106 0.998576 -1.659794 3.273309 -0.501662 -1.403485 -0.201019 -0.297994 0.688337 -0.458905 0.404145 -0.612591 -1.113273 1.562472 -0.984578 2.361368 0.007539 -1.189700 2.009854 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 7.616781 1.882172 -4.344766 18.354032 -0.865825 -7.494535 1.814858 6.985852 -4.906989 -28.447616 -17.182946 8.762579 3.049026 2.037824 4.857160 5.018312 -3.610367 3.093969 -33.920926 8.126802 12.623171 6.432398 2.084776 -6.588304 3.779896 -6.323262 3.901360 5.432886 3.106193 17.118539 -8.735378 6.132648 14.334014 -1.146211 5.978705 12.224764 -2.034094 3.412864 -3.689442 0.570384 20.910190 12.432953 -3.704992 6.649317 2.484682 17.168783 2.910907 7.508306 -7.046889 -13.011497 3.542731 4.837767 -10.085812 -4.685875 -8.064018 8.196364 17.798702 13.111814 -7.668598 7.111765 -5.506341 -2.254181 5.382969 -0.799143 17.474328 7.682427 12.944492 11.209557 19.045451 -10.381640 -1.702320 7.037412 4.708071 -3.763512 11.086623 -10.869200 -16.995104 -11.928295 -1.626601 -30.194916 -11.385927 2.854624 23.480224 -17.177771 2.547090 4.868436 2.493651 15.884810 -9.623529 -0.342372 -11.368698 -1.635822 -8.648276 27.764081 2.435458 0.377812 0.856437 9.275153 9.444156 12.006696 -0.125009 -10.434294 -7.663252 -25.821048 -5.278680 -5.896144 7.040464 9.845103 -19.641962 -6.344328 1.537036 16.255864 -25.608618 0.456491 13.461289 11.723530 10.051707 -7.177575 -11.781615 4.699548 0.236680 -0.494285 12.893389 -10.283720 0.901149 -0.431831 3.528827 0.815781 4.267979 1.629523 -20.146248 -11.013890 -1.293264 -5.336284 1.154544 3.576215 7.982669 -8.782540 10.995985 -11.849628 14.280040 -23.094568 3.107512 -4.730219 -14.200155 -3.735133 7.232492 12.379962 4.755965 -8.033846 -8.420014 -3.861784 -20.238383 -23.270426 5.157799 5.879900 6.460053 3.766991 -2.986538 7.148891 -8.253440 2.342182 8.164980 -6.375180 -2.616612 -1.829450 19.617849 0.984482 -3.743064 -10.011574 -3.773862 -1.476518 0.737108 13.794418 -4.227689 -17.205304 -25.693990 -12.641120 14.735606 -4.360396 -0.907222 -10.552762 -2.293255 -15.908845 4.840629 -16.016127 5.104327 0.649081 -10.059977 -17.359878 0.721269 -2.296234 -4.308321 0.408544 -11.598646 -4.555971 11.868331 2.556737 5.566937 -0.087174 4.555154 -16.250264 -12.607116 4.051724 -8.641226 13.755007 7.427745 -0.956767 -13.416869 -3.806164 -15.257533 13.281856 -1.942815 3.300177 -8.213107 -2.976489 18.601941 -9.401921 -1.472339 -14.178223 4.125520 5.863955 -19.312315 23.180571 13.361761 -4.779167 -1.118315 2.255153 1.501009 10.827069 12.141153 -12.219310 -12.806889 1.521402 -6.841278 -0.213639 -4.358272 10.649794 -12.631768 3.856627 -9.624983 -5.647418 6.991836 9.499652 1.045160 9.155866 4.831897 -3.681044 2.532611 12.446974 11.244071 -4.071702 -12.997981 -26.215054 11.292671 -6.347582 -2.675517 -4.996199 -4.550646 -12.403601 4.955160 2.836626 16.094609 12.038179 -9.386530 13.240187 -20.310963 -16.550434 -9.996560 0.953399 0.862373 -3.726224 -0.954573 -5.750190 7.033839 7.373982 -2.573813 1.446475 -11.795525 -4.770966 -0.593681 15.021005 3.328741 -0.243251 18.188067 4.532362 -8.556760 -3.245782 2.215193 -2.063457 -2.560768 -10.007644 -6.958566 -3.299961 4.976616 -6.805545 6.166999 -3.334314 -2.776930 7.085890 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 0.990978 -0.190947 0.210770 0.605352 0.574136 -1.020948 0.383364 0.757909 -0.006489 -1.400204 -0.704677 0.324717 -0.076919 -0.859718 0.265236 0.218512 0.075732 0.596710 -1.299836 0.866655 0.395644 0.573151 -0.290175 -0.833515 0.223025 -0.289213 -0.611912 0.433158 -0.022528 0.832646 -0.700808 -0.243072 0.613140 0.152619 0.320748 0.927705 0.578530 -0.123878 0.660973 0.270933 1.603101 0.544084 -0.018909 0.739854 1.005958 0.878608 -0.329676 1.408390 -0.365750 -0.303894 0.572675 -0.722758 -0.694915 -0.007697 -0.916594 0.853209 1.395065 0.598576 -0.686477 0.712351 -0.269673 0.081381 0.381164 -0.322004 0.947105 1.061839 0.035947 0.427444 2.039380 -0.323407 -0.253604 0.542463 1.288727 0.041431 0.643336 -0.616708 -0.446347 -1.617406 -0.121065 -1.270002 0.164540 -0.336433 1.762162 -0.967748 0.502794 1.167176 0.487356 0.747209 -0.569453 -0.417260 -0.696683 0.460228 -0.432507 1.936532 -0.270397 0.563485 -0.485763 0.341546 0.377730 0.752105 -0.096323 -0.482077 -1.248953 -2.232342 -0.837500 -0.277783 -0.481813 -0.486962 -1.557227 -0.249838 0.967659 0.917994 -1.525885 -0.123151 0.711548 0.302371 0.282844 0.105159 -0.917000 -0.034501 -0.272926 0.074521 -0.334985 -0.507561 -0.531053 -0.937830 0.043007 0.152923 0.248060 -0.507266 -1.044520 -0.102931 -0.225917 -0.086014 -0.114430 -0.134045 -0.122198 -1.347587 0.362980 -0.816641 0.549877 -1.394745 -0.314521 -0.595417 -1.115845 0.012484 1.533743 0.103702 0.729280 0.253306 -0.454968 -0.824885 -1.019077 -1.614611 0.398646 -0.756037 0.721531 -0.199931 0.061931 -0.543332 -0.141658 -0.724347 0.210955 -0.712578 0.101344 -0.639105 1.606451 -0.631482 -0.165335 -1.119376 -0.135563 1.382026 0.177506 -0.162881 -0.541300 -0.695690 -0.860751 -0.999498 0.656217 -0.105151 0.227226 -0.444053 0.249456 -1.037497 0.551595 -0.508700 0.482590 -0.281491 -0.710226 -0.951807 -0.038240 -0.246739 -0.100234 -0.276877 -0.616287 0.161666 0.080792 0.472006 0.038985 0.157680 -0.026533 -1.660220 -1.544253 -0.408167 0.444681 1.019664 0.578101 0.522312 -0.517468 -0.155121 -1.129440 0.977471 -1.355147 -0.143684 0.170713 -0.387457 1.446163 -0.450898 -0.505208 -1.316262 0.451161 -0.168328 -0.754089 1.688491 0.676346 -1.006280 -0.617692 -0.964775 0.229639 0.795058 1.646826 -0.561785 -0.240860 0.596677 -0.233978 -0.352656 -0.687276 0.813297 -0.493445 1.381054 -0.980276 -0.677926 0.233512 1.269443 -0.375902 0.370850 -0.128961 0.236502 -0.187373 1.110113 0.347561 -0.061050 -0.894215 -1.647442 0.216798 0.063628 0.236754 0.220211 -0.692733 -0.809233 0.127223 0.530967 1.297587 0.908421 0.442573 0.684875 -1.068798 -1.099957 0.328958 0.339914 0.335001 -0.862906 0.489088 -0.631033 -0.155252 0.130835 0.469428 0.318212 -0.755089 -1.093468 -0.225836 0.810140 0.476011 -0.744104 1.070818 0.188864 -0.428030 0.190490 -0.131117 0.785314 0.078893 -0.019743 -0.282445 -0.781261 0.073900 -0.407506 1.728075 -0.077556 0.271928 0.515481 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 1.760357 0.323017 0.302130 1.298577 0.414393 -2.559843 0.924915 2.053240 -0.844465 -2.746475 -1.547352 0.615698 -0.010952 -1.782702 0.423245 0.216377 -0.573526 0.927722 -4.674620 1.959940 1.347034 1.138643 -0.595905 -2.137034 0.382117 -0.711575 -1.213518 1.644971 -0.433305 1.892211 -1.232805 -0.534866 1.284460 0.586534 1.033625 2.123040 0.285941 -0.058543 1.536668 0.947480 2.899088 2.258098 -1.154964 0.607238 1.994270 2.009798 -0.007969 0.557738 -2.529198 -0.811531 -0.155017 -0.111418 -1.826704 -0.522826 -1.263096 0.909762 3.051922 1.837055 -1.178081 1.725775 -1.468699 -0.354565 0.927498 -0.031245 2.387110 1.377812 0.653935 0.788637 3.862540 -0.739734 -0.378516 0.855774 2.061760 -1.000917 0.807531 -0.424326 -1.875434 -4.070754 0.197760 -4.898030 -0.959034 0.422690 3.027395 -1.832526 1.198498 1.900123 1.292031 1.643240 -1.937618 -1.217590 -1.246510 0.411654 -1.534138 5.077026 -0.214305 1.005948 -0.107684 1.463038 1.715580 1.751095 -0.600860 -1.141220 -1.932794 -4.785748 -0.592501 -0.556332 -1.012906 -0.604241 -2.643833 -1.119802 2.662243 2.652604 -3.171605 -0.048840 1.866885 0.639301 0.080200 -1.360783 -1.841015 0.963929 -1.155592 -0.153377 0.627669 -1.377657 -0.898616 -0.384914 0.618667 0.373885 0.352921 -0.298380 -3.199875 -0.245154 0.425545 -1.234280 -0.212139 0.037035 -0.418798 -1.998375 0.660379 -2.565121 1.796127 -2.931660 1.072845 -0.838042 -2.118395 0.239045 0.535667 1.459936 -0.511956 -0.243330 -0.321677 -0.605376 -2.181371 -3.896067 1.298044 -0.374703 1.362443 -1.397521 -0.110543 -1.004838 -0.506119 -0.973486 0.878502 -1.247755 0.327200 -1.088485 4.630581 -0.109173 -0.585888 -1.144649 -0.420234 2.079972 0.966339 0.155261 -1.352713 -1.330811 -2.308484 -1.974729 1.549252 0.058873 -0.690252 -1.305657 0.077454 -2.174614 1.680866 -1.073608 1.576809 -0.574209 -0.754406 -1.912027 -0.422368 -0.328449 -0.447920 -1.014493 -0.977139 -0.437728 0.802216 -0.374707 0.097212 -0.070136 0.790943 -2.059802 -2.297562 0.096429 0.908035 1.859338 1.353126 0.997043 -1.539232 0.277281 -2.293887 2.397680 -0.770783 -0.098875 -0.580696 -1.373351 3.648485 -0.621484 -1.229575 -1.817712 0.994200 -0.231119 -0.519494 4.093370 2.073403 -1.608455 -1.129699 -0.997784 0.000000 2.035856 2.926886 -1.602380 -1.081037 0.809866 -0.983836 -0.617100 -0.428714 1.602199 -1.335698 2.531963 -1.639382 -1.086277 0.648238 2.218673 -0.323314 1.499101 -0.933534 -0.057575 -0.508446 1.949933 0.628319 -0.292837 -1.926717 -2.602393 0.908596 -1.483882 0.386337 -0.565289 -0.279948 -2.280102 0.014835 1.165263 2.580486 2.673456 -1.563287 1.267025 -2.336818 -2.396714 -0.662122 1.042216 0.380642 -1.574862 0.774339 -0.898229 0.360125 0.711088 0.700191 1.124360 -1.762457 -2.034411 -0.591826 1.312872 1.118748 -2.310744 2.394864 -0.020483 -0.802249 -0.380483 -0.195470 0.987580 0.358018 0.198089 -0.977165 -1.822402 0.870401 -0.616562 3.059656 0.367780 0.581327 1.666350 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 0.759997 0.331201 0.220522 0.619625 0.255838 -1.137010 0.222517 0.894814 -0.783777 -1.004158 -0.762595 -0.236157 -0.142584 -0.654079 0.593954 -0.016102 -0.238764 0.075839 -1.667545 0.822312 0.309361 0.213659 -0.375738 -0.913143 0.219984 0.237287 -0.967555 0.637689 -0.202948 0.637942 -0.726710 -0.125317 0.189696 0.482973 0.614892 0.224596 0.077243 -0.040785 0.618509 0.262543 1.174008 0.648439 -0.513465 0.252196 0.926393 0.588033 -0.441501 0.416650 -1.525226 0.025454 0.411774 -0.669449 -0.453387 0.244868 -0.502515 0.420967 1.607792 0.751138 -0.300207 0.582177 -0.801352 0.088703 0.287353 -0.257201 1.205637 0.837770 0.302272 0.311041 1.351880 -0.282884 -0.117081 0.168440 1.123749 -0.537976 -0.699678 -0.190696 -0.152787 -2.180197 0.098342 -2.014714 -0.132727 0.024012 1.358268 -0.534120 0.527469 0.790124 0.240232 0.386623 -1.104829 -0.050519 -0.428047 0.141555 -0.776842 1.697754 -0.321310 0.317857 0.041385 0.479078 0.770445 0.794354 -0.586507 -0.067458 -0.993666 -1.903918 -0.551416 0.627026 -0.540910 -0.552887 -0.942995 -0.388305 1.475922 0.679792 -0.901599 -0.436522 0.417705 0.321471 -0.442161 0.139020 -1.240184 0.227830 -0.622262 0.241687 0.396966 -0.247328 -0.082734 -0.932845 -0.097652 0.223701 0.602514 0.066307 -1.212506 -0.024800 0.056390 -0.830872 -0.335100 -0.350310 -0.544784 -0.455665 0.260843 -0.727839 0.682059 -1.288928 0.338533 -0.671511 -0.994544 0.603557 0.352989 0.825439 -0.289228 0.605173 -0.129604 -0.172350 -0.745728 -1.237790 0.536276 0.071163 0.654412 -0.823472 0.068863 -0.294549 -0.073744 -0.769866 0.636157 -0.754700 -0.234341 -1.021634 2.035296 -0.104803 -0.381790 -0.659134 0.242693 1.225956 -0.196239 -0.068212 -0.521582 -0.016334 -0.848405 -0.760595 0.507553 0.086529 -0.239643 -0.175203 0.631574 -1.276287 0.770853 -0.426920 0.749823 -0.041230 -0.544603 -0.643289 -0.267506 0.003272 -0.226251 -0.509963 -0.152943 -0.079390 0.446763 0.281018 -0.077499 0.370440 0.496515 -0.791786 -1.457752 -0.325098 0.720692 0.650113 0.550964 0.436312 -0.628659 0.014143 -0.940557 1.236316 -0.206780 -0.156796 -0.359159 -0.256278 1.284092 -0.303588 -0.777822 -0.638491 0.332667 0.041207 -0.486312 1.428920 0.601376 -0.740656 -0.656164 -1.264189 0.337653 0.645345 1.673345 -0.505056 0.003588 0.241592 0.061911 -0.399481 -0.447144 0.828537 -0.354303 0.719835 -0.631986 -0.647591 0.149989 0.786266 0.110979 0.648803 -0.384154 0.305173 -0.334049 0.984446 0.174693 -0.475877 -0.421541 -0.859584 0.088506 -0.032061 0.200927 -0.129837 -0.306441 -1.164354 -0.490948 0.542815 0.995588 1.238916 -0.380440 0.483655 -0.547386 -0.656434 -0.207496 0.894370 -0.086861 -1.093556 0.221173 -0.439823 -0.069712 0.654421 0.295494 0.712667 -0.600731 -1.668890 -0.823542 0.459676 0.243045 -0.851462 0.811321 0.316103 -0.499497 -0.123583 0.125891 0.508515 0.282643 0.021394 -0.500189 -0.868824 0.125023 -0.246167 1.105649 0.474633 0.076953 0.638895 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = 6.172425 0.390650 -2.366329 10.933389 0.337961 -2.670216 -0.281662 4.504132 -2.749151 -17.581088 -13.318991 6.641899 0.921241 3.067456 5.579990 3.171489 -0.180694 0.109436 -18.971629 4.886155 5.849341 2.152124 1.161475 -1.525148 3.014474 -2.814238 2.052629 1.749890 2.892358 9.396718 -6.093008 5.097546 8.049307 -0.607671 4.530032 5.128120 -2.718726 0.752832 -3.227401 -3.018264 13.868722 5.319857 1.622306 6.852236 1.273127 9.357705 -1.272960 10.877497 2.825739 -7.787135 7.880658 -2.986720 -5.818869 0.667462 -6.427137 6.158609 8.206485 4.315990 -4.696068 3.370594 -2.422430 -0.111747 2.103411 -4.770209 11.103112 5.521677 8.362076 6.231339 9.656744 -6.237594 -1.361248 5.878368 4.098400 1.361771 3.159355 -10.052888 -6.206370 -5.278309 -0.625593 -14.832762 -5.265628 -2.076268 17.750898 -9.876825 0.579626 2.238271 -2.096148 9.039990 -5.017699 2.523029 -7.071248 -0.669884 -3.077921 9.536026 0.197334 -0.724794 1.397522 2.580124 3.403306 8.129017 -1.534321 -4.529512 -6.728143 -14.311037 -4.242111 -0.284017 6.594121 5.367939 -11.412410 -1.283736 -2.283573 7.788719 -12.815598 -2.268826 7.262181 6.615594 3.648296 4.578070 -8.035541 -2.241681 2.934571 3.398961 8.070233 -5.203890 2.321730 -5.318735 0.554604 0.351897 5.303369 0.564171 -8.719871 -8.774914 -2.084814 -1.025014 -0.454516 0.359895 5.326686 -3.119055 8.058161 -2.618681 7.337150 -13.832735 -2.158511 -5.388060 -6.861302 -1.979373 13.115832 9.112747 8.218218 -0.589637 -4.730782 -3.499002 -11.468192 -9.356353 1.984964 2.293914 5.052993 4.042491 -0.453006 6.459998 -3.731322 0.248963 2.079138 -4.522871 -3.104842 -2.741967 5.885203 -0.750034 -1.890057 -9.578631 -0.089601 -0.975829 -5.203074 7.104472 -0.728271 -12.980169 -13.325362 -7.684290 8.378636 -2.932188 2.147718 -4.208174 1.268155 -7.142612 -0.037658 -10.670543 0.430838 1.560547 -9.810603 -9.790245 0.606687 -1.106614 -2.035371 1.010980 -6.424655 -1.825595 9.324641 8.770236 3.842115 3.136652 0.800823 -11.675213 -9.777427 -0.829733 -6.119546 8.669722 5.129666 -2.374036 -8.900362 -3.972403 -8.534044 7.712598 -4.962767 1.435862 -5.324907 -0.643711 8.593445 -6.331780 0.802713 -9.383870 1.793541 4.929339 -22.853122 8.874915 6.479797 -3.245188 -1.373353 -2.999387 2.292946 5.871875 8.961635 -4.310579 -4.690503 0.173366 -1.989971 0.052550 -4.580642 7.469177 -6.278004 -0.520964 -6.074778 -5.008092 5.101398 4.541438 1.745945 3.885940 5.429624 2.831458 5.175222 8.526597 6.400113 -4.724289 -7.258790 -22.286851 6.178555 9.418898 -2.531064 0.807510 -6.194831 -7.878146 1.397108 -1.885491 8.764280 4.517020 1.120402 7.952994 -8.717761 -8.662991 -5.013997 1.501594 -0.854286 -1.973671 -0.924800 -3.949280 3.090600 4.484375 -2.304235 0.363379 -5.331252 -7.049211 -1.643567 9.354688 2.690606 4.739099 10.023445 5.218804 -6.371102 -1.192901 1.839128 -0.996466 -1.879537 -8.892730 -4.604268 -1.715495 0.337425 -4.253273 1.397595 -0.642394 -1.609357 1.990781 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.004164 0.091448 -0.151951 0.901820 -0.031506 -0.785716 0.297450 0.244227 -0.312815 -1.230648 -0.159082 0.074303 -0.099952 -0.175613 -0.149782 0.306120 -0.349357 0.333387 -1.003634 0.508709 0.730874 0.524571 0.118327 -0.460762 0.363243 -0.130823 -0.225958 0.481891 0.028051 0.765318 -0.441369 0.066616 0.706032 0.101033 -0.119592 0.708249 0.433749 0.551765 0.470793 0.334222 0.519680 0.333021 -0.592833 -0.008611 0.247417 0.845307 0.301624 0.141533 -1.220000 -0.576414 -0.380577 0.058065 -0.413108 -0.462734 -0.148486 0.522159 0.847270 1.298863 -0.385497 0.419679 -0.450365 -0.055655 0.418362 0.085717 0.767930 0.752597 0.262862 0.607920 1.403005 -0.353696 -0.043813 0.267627 0.470543 -0.422300 0.361481 -0.042969 -0.711676 -1.096009 -0.270771 -1.458252 -0.598709 0.486730 0.981124 -0.865170 0.158749 0.210560 0.358554 0.864463 -0.706759 -0.011351 -0.629190 0.081785 -0.302535 1.895646 0.237618 0.116633 -0.268737 0.751585 0.602763 0.487477 -0.213663 -0.204223 -0.621396 -1.188902 -0.222986 -0.353349 -0.112800 0.288977 -1.449544 -0.553057 0.736670 0.966944 -1.638958 0.022202 0.679586 0.489992 0.506727 -0.348989 -0.469036 0.731421 -0.345309 -0.551336 0.139825 -0.387244 -0.162165 -0.004173 -0.040305 -0.091756 -0.042201 0.197026 -1.619583 -0.022846 -0.040366 -0.695010 0.294416 0.462748 0.141072 -0.470322 0.298729 -1.050868 0.590189 -1.236187 0.121049 0.281952 -1.148668 -0.132060 0.188170 0.614706 -0.141103 -0.753730 -0.435787 -0.679239 -1.119516 -1.497936 0.351439 0.127062 0.401633 0.105157 -0.234599 -0.139857 -0.422832 -0.112284 0.718975 -0.356181 -0.002114 -0.311048 1.555926 0.069194 0.101071 -0.586637 -0.514243 0.464198 0.105504 0.278616 -0.423129 -0.355217 -1.366892 -0.574046 0.506614 -0.071215 -0.223195 -0.701410 -0.159375 -1.174323 0.652122 -0.478206 0.322351 -0.021644 -0.141759 -0.877233 0.311025 -0.136882 -0.380771 -0.160491 -0.373360 -0.214678 0.068452 -0.548160 0.274367 -0.169085 0.224113 -0.469178 -0.626827 0.479246 -0.027522 0.260280 0.391315 0.211577 -0.461964 -0.191838 -0.911006 1.061981 -0.051777 0.177233 0.021619 0.224154 1.376368 -0.342835 -0.176098 -0.616083 0.380830 0.089647 -0.241847 1.110013 0.683638 -0.423340 -0.109487 0.105251 0.046609 0.815064 0.582476 -0.829865 -0.745473 0.339064 -0.322170 -0.135966 -0.003496 0.341749 -0.676042 0.885173 -0.430469 -0.051220 0.069505 0.617638 -0.243823 0.517138 -0.246063 -0.633172 -0.158494 0.475922 0.482013 -0.075841 -0.580750 -0.677509 0.232166 -1.174712 0.132881 -0.342794 -0.284677 -0.323218 0.473156 0.168219 0.921715 0.540207 -1.025631 0.569024 -1.372483 -0.814571 0.063968 0.215272 0.127449 -0.355451 0.408969 -0.091862 0.187950 0.580070 0.171254 0.078651 -0.910867 -0.222412 -0.083859 0.864984 -0.278669 -0.649803 0.880094 -0.328801 -0.213914 -0.216491 0.174013 0.216062 -0.219835 -0.432448 -0.257815 -0.295535 0.466796 -0.554579 1.140294 -0.148698 -0.234604 0.644137 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = 1.397263 -0.001154 -0.447914 1.561434 0.795751 -1.376791 -0.143149 1.017383 -0.211106 -2.096208 -1.783576 1.203736 0.092934 -0.221613 1.024467 0.480224 -0.166651 0.263509 -1.837102 1.390575 0.082719 0.442470 -0.939762 -0.916201 0.351627 -0.039888 -0.690023 0.559950 0.116748 0.735615 -1.231655 0.196400 0.765861 -0.090009 0.727531 0.245230 0.768938 -0.226630 -0.196394 -0.190585 2.565404 0.681280 0.433326 1.501713 1.056317 1.201255 -1.011129 2.870987 -0.265769 -0.712714 1.420706 -1.117396 -0.942840 0.270083 -1.449248 2.054802 1.570156 0.084112 -1.080549 0.793109 -0.163790 -0.019746 0.502393 -1.076008 2.051612 1.463418 0.989623 0.738757 2.419176 -0.339219 -0.695022 1.105215 2.094827 0.397703 0.585509 -1.433320 -0.447653 -1.686892 0.301391 -1.683454 0.202983 -0.935247 3.119025 -1.731347 0.296682 1.399366 0.287479 1.234549 -1.293911 0.244707 -0.986439 0.244520 -0.707110 2.343460 -0.229128 0.191999 -0.316178 0.448830 0.636215 1.569640 -0.600479 -0.065262 -1.808260 -2.991756 -1.632390 0.716304 -0.023575 -0.462929 -2.077273 -0.446358 0.799856 1.397052 -1.705002 -0.676045 1.315343 0.375068 0.754341 1.257005 -1.567597 -0.449309 0.250647 0.329217 0.176322 -0.360607 -0.043748 -1.349547 0.134558 -0.010531 0.992864 -0.358444 -1.719694 -0.603322 -0.719541 -0.026692 -0.118339 -0.896920 -0.040320 -1.794341 1.194521 -0.172731 0.658674 -2.374832 -0.787812 -1.221188 -1.468845 0.394513 2.795466 0.762393 1.953229 0.834198 -0.775038 -1.316503 -1.989897 -2.256417 0.496557 -0.156815 0.899153 -0.118971 0.124431 -0.049358 0.189237 -1.003709 0.966158 -1.497453 -0.637642 -1.023607 2.142570 -0.790572 -0.309469 -2.333775 0.210375 1.334409 -0.697031 -0.028077 -0.137381 -1.890846 -1.124911 -1.282033 0.771190 0.091885 0.921729 -0.350398 0.409690 -1.685787 0.299427 -1.510084 0.660758 -0.028217 -1.735573 -1.258016 -0.248513 -0.037009 -0.424380 -0.541372 -1.079220 0.435124 0.719682 1.464197 0.057865 0.560631 0.148352 -2.650435 -2.523840 -0.873417 0.050326 1.759211 1.201183 0.558602 -0.779312 -0.282861 -1.877006 1.381959 -2.467214 -0.419754 -0.117806 -0.387079 1.566055 -1.324823 -0.984576 -1.971407 0.457517 0.032889 -2.324625 2.030662 1.010568 -1.192102 -0.870628 -1.549895 0.463698 1.138462 3.020675 -0.779731 0.011585 0.341352 0.230631 -0.627623 -1.068938 1.564786 -0.710962 0.885647 -1.311177 -1.208240 0.086786 1.575961 0.057979 0.588893 0.053812 0.789166 0.032781 1.525498 0.713174 -0.812327 -1.041862 -3.185964 0.567980 0.893591 -0.575872 0.452427 -1.449537 -1.314366 -0.264709 0.130635 1.652160 0.488581 1.271744 0.974941 -1.555079 -1.357525 0.334839 0.721445 -0.296642 -1.023065 0.767931 -0.994166 -0.194819 0.447023 -0.067288 -0.237663 -0.792201 -2.334236 -0.783995 0.881026 0.512471 -0.023417 1.592587 0.817370 -0.824470 0.127918 -0.205066 0.785032 -0.095271 -0.972484 -0.710012 -1.217664 -0.586689 -0.412949 1.350269 0.141182 -0.162659 0.732821 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.442574 -0.009549 -0.074582 0.544238 0.211476 -0.692013 0.205968 0.362693 -0.143359 -0.917851 -0.315366 0.264546 0.040948 -0.441781 0.094973 0.203853 -0.122501 0.426351 -0.772760 0.550636 0.307309 0.336885 -0.232000 -0.577608 0.090162 -0.204847 -0.170224 0.299495 0.006083 0.611583 -0.441001 -0.095403 0.439638 0.059494 0.241497 0.596033 0.463799 0.045232 0.187822 0.263439 0.934360 0.458893 -0.204319 0.277165 0.506505 0.619769 0.041256 0.429112 -0.647681 -0.274513 -0.002418 -0.013568 -0.385093 -0.169593 -0.491189 0.476929 0.797550 0.550248 -0.436338 0.439030 -0.296181 -0.021289 0.287780 0.040585 0.659592 0.445029 0.149815 0.380893 1.218376 -0.274105 -0.134141 0.294460 0.664567 -0.195382 0.645725 -0.071617 -0.573874 -0.992038 -0.105050 -0.936844 -0.108630 0.109295 0.999418 -0.709003 0.287041 0.692242 0.421376 0.554391 -0.500123 -0.268558 -0.462548 0.142557 -0.388796 1.479084 0.080306 0.288042 -0.298096 0.418618 0.391670 0.467197 -0.012185 -0.418602 -0.536316 -1.354508 -0.466124 -0.270750 -0.311221 -0.137519 -0.937850 -0.345632 0.771336 0.930757 -1.077722 0.097936 0.523671 0.223512 0.452859 -0.455697 -0.485664 0.377536 -0.240012 -0.154384 0.015810 -0.368446 -0.308509 -0.119688 0.188710 0.029949 0.112702 -0.152903 -0.873478 -0.058709 -0.015956 -0.196415 -0.029934 -0.004853 -0.017047 -0.903032 0.255064 -0.635315 0.454393 -0.847131 0.082626 -0.192720 -0.830251 -0.014436 0.569526 0.142768 0.276808 -0.152057 -0.366901 -0.385251 -0.751196 -1.338501 0.375669 -0.181499 0.263150 -0.101834 -0.038113 -0.242105 -0.195053 -0.270899 0.454935 -0.452014 0.032325 -0.187065 1.161170 -0.241119 -0.143733 -0.582138 -0.211065 0.632269 0.438530 0.120575 -0.392651 -0.494321 -0.738884 -0.575408 0.482915 -0.070967 0.010280 -0.340403 -0.079810 -0.766959 0.431260 -0.401810 0.486668 -0.191221 -0.255675 -0.655486 -0.053493 -0.131400 -0.218967 -0.199217 -0.430893 0.031613 -0.004762 -0.270021 -0.001187 -0.055250 0.186458 -0.825610 -0.796332 0.044136 0.146341 0.582117 0.353929 0.344996 -0.385331 -0.044712 -0.759360 0.625356 -0.648818 -0.002636 0.036036 -0.279649 1.000556 -0.325625 -0.448643 -0.653012 0.345707 -0.053174 -0.032883 1.217838 0.619277 -0.511775 -0.235050 -0.173785 0.086155 0.569668 0.939047 -0.562838 -0.314073 0.326669 -0.208177 -0.175912 -0.202013 0.477053 -0.452313 0.777067 -0.528614 -0.313206 0.086360 0.767825 -0.146116 0.296670 -0.164793 -0.173646 -0.286516 0.626018 0.325928 0.066131 -0.605990 -0.691645 0.268594 -0.755420 0.066936 -0.051075 -0.228282 -0.429726 0.148166 0.271955 0.789278 0.493600 -0.255888 0.465340 -0.941548 -0.759804 0.030387 0.139654 0.173579 -0.511886 0.408544 -0.359229 0.046063 0.102120 0.226780 0.069748 -0.421245 -0.321371 -0.100752 0.434492 0.265302 -0.537361 0.746903 0.045568 -0.290920 0.026005 -0.066671 0.326969 0.022521 -0.151378 -0.242958 -0.430003 0.221840 -0.272888 0.953231 -0.143578 0.045349 0.456738 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = 0.983856 -0.088486 -0.026295 1.264967 0.187352 -0.450192 0.128563 0.761401 -0.155885 -2.636907 -1.938215 0.829978 -0.007767 0.058481 0.715089 0.433207 0.302002 0.302127 -2.927368 0.765148 0.976081 0.486825 0.216742 -0.196004 0.461707 -0.668270 -0.171432 0.224529 0.374939 1.455974 -0.997997 0.570768 1.221509 0.010889 0.714773 1.117558 -0.349411 -0.103255 0.117521 -0.232750 2.190160 0.844318 0.187251 0.996282 0.563697 1.478530 -0.298507 1.553249 0.670891 -1.078397 0.968608 -0.845879 -0.989595 0.219948 -1.098609 0.872249 1.222543 0.673681 -0.827079 0.653238 -0.361488 0.082186 0.286992 -0.876574 1.544273 0.811290 0.870732 0.786254 1.659522 -0.759404 -0.165540 0.764467 0.860394 0.342671 0.481324 -1.177596 -0.700979 -1.373824 -0.224513 -2.289809 -0.486880 -0.385393 2.596994 -1.463536 0.314584 0.659234 -0.304004 1.294577 -0.518134 -0.044829 -1.201155 0.171358 -0.252438 1.311779 -0.017863 0.031846 -0.034156 0.424527 0.398558 1.033941 -0.164223 -0.852734 -1.425586 -2.669973 -0.635839 -0.424154 0.691250 0.473053 -1.876418 -0.062281 0.112872 1.520408 -2.049144 -0.158396 0.983730 0.744723 -0.066724 0.425867 -1.178752 -0.420099 0.163057 0.594119 0.784961 -0.840338 0.005878 -1.087777 0.063789 0.090187 0.728872 -0.177106 -0.976998 -1.116954 -0.211401 0.062119 -0.211689 0.193262 0.676711 -0.621640 1.072903 -0.634427 1.058514 -1.878130 -0.235087 -0.890537 -0.938274 -0.353132 2.334643 1.352477 1.095988 0.080264 -0.569421 -0.652820 -1.672897 -1.511026 0.396052 -0.214289 1.030234 0.427067 -0.030139 0.554457 -0.503114 -0.137612 -0.099676 -0.739607 -0.129774 -0.489281 0.853521 -0.324133 -0.295719 -1.493018 -0.126321 0.559591 -0.786926 0.575261 -0.429103 -1.509020 -1.781721 -1.280177 1.219416 -0.518259 0.489845 -0.634395 0.337898 -0.908316 0.212500 -1.313805 -0.066335 -0.041506 -1.374485 -1.510931 -0.030658 -0.337083 -0.241353 0.096514 -0.945478 -0.141065 1.225505 1.274273 0.590603 0.370322 -0.046550 -1.790121 -1.446957 -0.303732 -0.756230 1.332505 0.884168 -0.312936 -1.475147 -0.535693 -1.340723 1.345530 -1.019148 0.169179 -0.570750 -0.420695 1.408782 -0.728943 0.063581 -1.420493 0.427406 0.520573 -3.401503 1.423786 1.067538 -0.822478 -0.330304 -0.820422 0.419271 0.949164 1.461021 -0.571673 -0.474791 0.179523 -0.585698 -0.007304 -0.824169 1.156739 -0.826713 0.478211 -1.130591 -0.722324 0.894153 0.833124 0.046724 0.572787 0.722874 0.675882 0.843348 1.297139 0.799890 -0.494875 -1.259546 -3.265107 0.819842 1.768917 0.012868 0.394878 -0.924621 -1.114002 0.097341 -0.265034 1.451689 0.852279 0.358463 1.200987 -1.192996 -1.364259 -0.463783 0.112844 0.063271 -0.458314 0.255125 -0.593896 0.249301 0.457983 0.078679 0.305073 -0.931484 -1.263369 -0.002419 1.390471 0.760974 0.344807 1.438146 0.523059 -1.008004 -0.022447 0.139322 0.183007 -0.237784 -1.008031 -0.670845 -0.429535 0.080812 -0.689931 0.766982 -0.186776 0.117941 0.273288 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 6.332308 -0.543697 1.960812 4.731082 2.133106 -4.558413 -1.286266 7.323848 -3.233707 -7.313753 -8.154023 1.063139 -2.066123 0.901815 8.265112 -0.729856 -0.365327 -1.720693 -14.315913 5.435074 0.269937 0.491006 -0.757740 -4.129251 3.524852 3.135368 -0.934907 3.196052 1.172466 3.012748 -6.797052 0.292754 1.274101 2.386766 5.512869 -2.037216 -0.009433 -1.347781 -1.527608 -3.412711 10.199464 3.358956 -0.254369 6.670677 4.546163 2.515900 -2.603239 6.628539 2.037607 -2.012875 5.996978 -8.840907 -2.838021 3.335774 -5.038253 5.089613 7.769225 1.782048 -3.680210 2.606894 -0.232166 0.797316 0.829403 -7.050569 8.121511 2.995275 5.826379 1.201594 6.328847 -2.774297 -0.847083 2.892378 8.321333 1.340841 -5.249396 -7.464898 1.567681 -14.310849 2.897974 -10.794768 -1.857130 -3.943040 5.873145 -3.896360 3.855032 4.429757 -4.212437 3.575831 -6.584928 2.947566 -2.556897 -0.425715 -1.085952 4.843673 -2.483060 -0.936582 5.054929 1.538805 3.444367 7.823363 -1.587136 1.430765 -4.035572 -10.568632 -3.030561 8.446095 1.356031 -1.963150 -3.439427 0.923895 2.960248 1.016366 -2.179731 -5.827044 3.052245 2.663505 -5.621185 2.423236 -4.612836 -4.159622 -0.534658 4.984628 3.959262 -4.261492 3.162201 -6.639860 -0.786822 2.708250 7.672396 1.084769 0.228370 -5.159793 -0.748322 0.390005 -3.941664 -4.082674 -0.859699 -1.212799 5.024839 -0.043024 3.463637 -6.822031 -0.948554 -4.317427 0.216651 2.505463 9.443481 2.450192 2.005029 7.309823 -2.464678 -1.176251 -2.848528 -4.889691 4.134947 3.731723 3.889119 -0.117842 1.081021 2.879904 0.487627 -6.666184 0.901413 -5.186750 -4.516511 -6.957276 1.190519 -1.090113 -0.933630 -7.131806 5.931714 6.370173 -6.641628 0.041444 0.179270 -4.093736 -2.103890 -4.702841 3.635890 0.716422 0.478511 1.343101 5.388405 -6.033660 2.029868 -6.190677 2.070451 0.979158 -8.854730 -3.256897 -2.055011 0.209104 2.347306 -1.251763 -2.443849 0.248022 1.826595 9.977511 -0.746241 4.715852 3.524531 -8.545162 -12.057207 -5.194101 1.928301 5.139074 -1.379176 -0.428146 -4.677339 -1.646440 -1.615335 7.213695 -5.476229 -0.725234 -4.909257 -0.926873 5.112042 -1.828525 -4.502300 -4.983961 1.159119 3.767500 -8.606521 5.094368 1.939309 -3.505960 -3.839127 -9.042386 3.092317 4.111788 12.045345 -1.655623 0.636571 -0.020213 3.024608 -1.469248 -5.771238 7.193631 -0.633200 -0.749616 -3.581791 -6.709994 0.791831 3.303710 3.245294 4.949672 3.095021 7.221227 -0.862811 8.706511 0.440436 -4.163603 -2.363428 -10.801281 1.499544 15.739226 0.321512 1.693386 -7.608512 -8.222900 -3.687397 2.456050 4.300572 8.623282 6.086942 3.019352 -1.083258 -3.343498 -1.637959 5.348722 -2.895598 -3.976432 -0.495990 -3.079609 0.125278 3.457114 -0.930257 1.408129 0.393048 -13.030318 -7.432500 1.129337 1.288039 1.516759 5.467138 5.876406 -6.066752 0.343084 -0.137401 0.982972 1.038961 -0.401475 -3.980963 -4.190578 -2.562740 -2.307016 1.782365 3.417136 -0.032964 -0.384239 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = 1.791665 0.548782 -0.458398 1.766855 0.676496 -2.220470 0.035867 1.714576 -0.804981 -2.457157 -2.247582 1.788907 0.002772 -0.771671 1.196994 0.483484 -0.451466 0.331901 -3.545415 2.124063 0.419384 0.732839 -1.054040 -1.563480 0.562270 0.009751 -1.001967 1.066176 -0.109250 1.103462 -1.534688 0.051242 0.923270 0.235950 1.340168 0.549261 0.382467 -0.214501 0.303900 0.059575 3.132162 1.492264 0.096692 1.599215 1.713446 1.609300 -0.878452 2.376574 -0.677416 -0.750554 1.097521 -0.721723 -1.438076 0.303681 -1.529460 1.990321 1.994226 0.303918 -1.334791 1.176319 -0.501274 -0.349557 0.659461 -1.223551 2.746281 1.548924 1.159049 0.782732 3.180071 -0.266369 -0.713961 1.099275 2.750406 -0.037357 0.355607 -1.538237 -1.098040 -2.714570 0.410804 -3.649386 -0.326572 -0.679429 3.772012 -2.082676 0.788114 1.553717 0.385910 1.497166 -1.904407 -0.232128 -1.180067 0.104654 -1.212489 3.303338 -0.316682 0.336472 0.000381 0.858986 1.230420 1.995427 -1.032983 -0.297809 -1.949271 -4.012207 -1.304948 0.985549 -0.293235 -0.700596 -2.328447 -0.786009 1.249620 2.342870 -2.364345 -0.899974 1.841763 0.224079 0.051283 0.781187 -1.978171 -0.087073 -0.122834 0.469905 0.665360 -0.683552 -0.306567 -1.099540 0.157371 0.129557 1.234995 -0.214798 -2.342256 -0.841245 -0.450791 -0.408730 -0.370400 -1.108360 -0.456399 -1.891381 1.372008 -0.739024 1.162244 -2.870647 -0.238278 -1.391426 -1.602451 0.603265 2.244768 1.475292 1.425006 0.750758 -0.385023 -1.134966 -2.378255 -2.796560 1.203952 -0.293422 1.172396 -0.740990 0.177433 -0.288333 0.138355 -1.289247 1.186855 -1.743517 -0.578136 -1.504916 3.206189 -0.531882 -0.447216 -2.338247 0.061405 1.693885 -0.377044 -0.200383 -0.493081 -2.477903 -1.483660 -1.655314 1.105829 0.288931 0.608269 -0.676841 0.695833 -1.861560 0.660738 -1.845711 1.064836 -0.177670 -1.670278 -1.428124 -0.587417 -0.058834 -0.412493 -1.135561 -0.927921 0.152543 1.201857 1.497923 -0.002936 0.588077 0.484212 -2.757347 -2.819464 -0.712148 0.438981 1.971314 1.372593 0.831914 -1.733179 0.019068 -2.336031 2.006542 -2.242171 -0.514703 -0.551677 -0.875740 2.664449 -1.250838 -1.187314 -1.906867 0.669451 0.002416 -3.057928 2.638980 1.585016 -1.384612 -1.106739 -1.645953 0.394027 1.794397 3.668142 -1.044103 -0.191995 0.312043 -0.083936 -0.707298 -1.063587 2.084886 -1.088574 1.502394 -1.539075 -1.410174 0.444568 1.832286 0.216697 1.057663 -0.449617 0.887190 -0.042080 1.891899 0.698710 -0.869526 -1.450251 -3.713811 0.579982 1.140478 -0.313114 0.463497 -1.130970 -2.074432 -0.583309 0.020047 2.251315 0.854181 0.360021 1.092330 -1.799339 -1.856356 -0.110366 1.190005 -0.428569 -1.296028 0.996850 -1.075084 -0.089216 0.821253 0.061872 0.304983 -1.008826 -2.882665 -1.115359 0.884363 1.000619 -0.615285 2.043178 0.752574 -1.104412 -0.074792 -0.230652 0.967697 -0.032179 -1.104830 -1.103446 -1.859058 -0.317894 -0.441336 1.880768 0.384257 0.239007 1.026338 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 2.863013 0.164515 0.006602 2.068537 0.725226 -3.632619 0.368273 3.182458 -1.023605 -3.376512 -2.939477 0.373437 -0.072150 -1.647679 2.132202 0.410163 -0.934147 0.690683 -5.830886 3.136858 0.959482 1.304083 -1.396895 -2.749132 0.856300 0.240310 -2.539609 1.660339 -0.381774 1.729472 -2.305060 -0.358050 1.232579 0.412442 1.448588 1.008510 0.493700 -0.343278 1.559724 0.678788 4.339510 2.306088 -0.541319 1.761598 2.562410 2.034300 -1.483525 3.160099 -2.624748 -1.058431 1.923706 -2.510082 -2.052811 0.469946 -1.975049 2.561307 4.403384 1.634165 -1.681075 2.090281 -1.392696 -0.089681 1.200131 -1.629307 3.968319 2.684481 1.559650 0.971460 4.925948 -0.401985 -0.466807 1.160043 3.631818 -0.922605 -0.049993 -2.236455 -0.817509 -6.156859 0.860007 -5.646203 -0.272485 -0.696578 4.569151 -2.771813 1.774129 2.928633 1.014813 2.238972 -3.138088 -0.308611 -1.249810 0.445105 -1.852259 5.585778 -1.052340 0.786046 0.118199 1.518194 1.902372 2.692307 -1.303092 -0.103118 -3.441414 -6.208232 -2.081372 1.620747 -1.057892 -1.230521 -3.711037 -1.019121 3.129384 1.812404 -3.394788 -1.082273 2.339027 0.873408 -0.351589 0.784705 -3.123032 -0.216493 -1.085157 0.920555 0.634989 -1.494750 -0.185972 -2.661966 0.258160 0.907792 1.585592 -0.456916 -3.274817 -0.650735 -0.429695 -1.138898 -0.692592 -0.851776 -0.601291 -2.613078 1.614871 -2.035460 1.789002 -4.527558 -0.027629 -1.982738 -2.437841 1.086606 3.086138 1.634105 0.555251 1.426684 -1.160055 -1.371302 -3.123069 -4.222757 1.419536 -0.146405 2.179739 -1.558752 0.236025 -1.032843 0.373068 -2.184300 1.165322 -2.493477 -0.649941 -2.527005 5.386462 -0.629411 -0.839924 -3.132684 0.567191 3.463402 -0.830795 -0.397556 -0.756302 -1.484451 -2.223387 -2.396917 1.708914 0.612757 0.297234 -1.041748 1.256254 -3.566635 1.761595 -2.197265 1.714923 -0.174370 -2.341652 -2.180033 -0.874739 0.079678 -0.219413 -1.729258 -1.328306 0.077002 1.213233 2.147815 -0.175002 0.918527 1.181127 -4.084057 -4.799721 -1.386211 1.233601 2.899067 1.697936 1.303543 -1.541137 0.231628 -2.865064 3.307495 -2.598508 -0.679586 -0.984938 -1.171687 4.100914 -1.495213 -2.280257 -3.321060 0.849354 -0.267861 -2.312994 4.640511 1.870663 -2.301770 -1.668581 -3.323833 0.868668 2.498418 5.335638 -1.337379 -0.234535 0.670620 -0.056353 -1.189363 -1.915194 2.835725 -1.565389 2.297602 -1.954683 -1.952357 0.517967 2.915464 0.116050 1.995642 -0.756159 1.340504 -0.674941 2.869046 0.630800 -1.721424 -1.900265 -4.563416 0.857485 1.483992 0.013910 -0.186958 -1.952077 -3.202963 -0.836326 1.839833 3.137132 3.980985 0.916092 1.421284 -2.563294 -2.738229 -0.266505 2.575287 -0.417528 -2.322108 0.560638 -1.468498 0.046476 1.535050 0.625368 1.159955 -2.006200 -5.354142 -2.020106 1.545934 0.918448 -2.042302 3.116032 1.095811 -1.381088 -0.188024 -0.426463 1.443637 0.288438 0.510724 -1.477537 -2.668873 -0.220084 -0.975780 3.600634 0.794876 0.262159 1.780696 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.402113 -0.589816 0.468762 0.459224 0.409942 -0.540969 0.291501 0.376389 -0.019967 -0.864628 -0.213195 -0.278310 -0.148387 -0.408288 0.215156 -0.041933 -0.010857 0.089168 -1.220470 0.484588 0.288521 0.283097 0.146858 -0.510476 0.172474 -0.366710 0.074388 0.688472 -0.100320 0.488909 -0.428910 -0.204214 0.373284 0.266128 0.294500 0.615531 0.499669 -0.058985 0.126032 0.435187 1.005833 0.370160 -0.385867 0.157067 0.617375 0.612182 0.305957 0.419221 0.055210 -0.181311 0.221096 -0.469788 -0.388463 -0.327174 -0.624122 0.314830 0.940595 0.614992 -0.450158 0.414389 -0.376524 -0.050098 0.189382 0.079645 0.685274 0.223462 0.328278 0.146916 1.141836 -0.398545 -0.312294 0.446220 0.785884 0.030640 0.294311 -0.398170 -0.490213 -1.935003 0.036099 -0.817399 -0.271356 -0.028808 0.114288 -0.379259 0.194518 0.756959 -0.014858 0.420303 -0.430094 -0.228387 -0.561470 0.234866 0.098879 1.335837 -0.113415 0.117649 0.133219 0.350322 0.468209 0.684058 0.308730 -0.385788 -0.581634 -1.493717 -0.365385 -0.227340 -0.148092 -0.361892 -0.791113 -0.100320 0.782863 0.272424 -0.720407 -0.027763 0.527260 0.393295 0.222898 -0.925751 -0.112350 0.063081 -0.057723 0.085799 0.178107 -0.549005 -0.192130 -0.408839 0.487834 0.225149 0.135123 -0.339980 -0.212469 -0.133337 0.051545 0.134090 -0.046653 -0.199067 -0.178711 -0.713335 0.198123 -0.654774 0.605704 -0.712883 0.269101 -0.301569 -0.227414 0.037968 0.960066 -0.053001 0.043050 0.182246 -0.528893 -0.112973 -0.380751 -1.374247 0.180861 -0.086293 0.341712 -0.156695 -0.088099 -0.134399 -0.033347 -0.398518 0.072800 -0.351684 0.020731 -0.240740 -0.055756 -0.120547 -0.095099 -0.419227 0.119253 0.935717 0.214798 0.149980 -0.349779 -0.601288 -0.404993 -0.756621 0.390336 -0.073001 -0.165603 -0.257569 -0.014243 -0.922865 0.716431 -0.316891 0.414472 -0.170436 -0.622282 -0.565888 -0.026684 -0.276310 0.351173 -0.030630 -0.385629 -0.081271 -0.525270 0.111370 0.136812 0.049992 0.104664 -0.947126 -0.938355 -0.253026 0.330439 0.811925 -0.303553 0.274259 -0.181713 -0.116363 -0.445460 0.680847 -0.459347 -0.100297 0.032013 -0.572541 0.887791 -0.050620 -0.309193 -0.551381 0.340434 0.090563 0.414352 1.320305 0.698356 -0.575873 -0.559306 -0.335270 -0.066559 0.523144 1.023147 -0.463736 -0.232534 0.267220 0.098752 -0.203111 -0.260557 0.467794 -0.208312 0.658173 -0.679270 -0.673692 -0.072617 0.829866 -0.139314 0.288028 -0.029524 0.213563 -0.630013 0.773290 0.033930 0.187993 -0.456978 -0.793313 0.242850 0.203918 0.161172 0.165394 -0.595884 -0.557032 0.063889 0.658388 0.830742 1.264300 -0.041918 0.478700 -0.517558 -0.623394 -0.115322 -0.034070 0.039627 -0.509808 0.320919 -0.384728 -0.019871 -0.015003 0.077643 0.103486 -0.187788 -0.433557 -0.207446 0.221434 0.347949 -0.502748 0.655617 0.080660 -0.309305 -0.112553 0.084577 0.179524 0.397098 0.385411 -0.246252 -0.495155 0.142188 -0.068212 0.741420 -0.046445 0.151953 0.224131 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*) = 0.706828 -0.125371 0.146367 0.461648 0.567849 -0.599372 0.221050 0.390539 0.106502 -1.051345 -0.500961 0.501754 -0.082473 -0.528617 0.130772 0.187144 0.215051 0.531668 -0.466068 0.545907 0.154482 0.410908 -0.210395 -0.525925 0.158325 -0.169403 -0.261040 0.148385 0.117469 0.574740 -0.550101 -0.156364 0.441865 0.080445 0.212711 0.623564 0.620077 -0.127651 0.271871 -0.049210 1.225906 0.181785 0.252014 0.785656 0.701396 0.604072 -0.257860 1.252565 0.145912 -0.207313 0.441352 -0.537210 -0.428772 0.040410 -0.781744 0.788333 0.766428 0.258243 -0.551674 0.431111 0.096287 0.119980 0.232263 -0.368013 0.531615 0.790963 -0.117151 0.354461 1.465906 -0.279919 -0.247006 0.472668 1.036472 0.315000 0.637420 -0.489834 -0.223554 -0.730901 -0.221737 -0.517772 0.326712 -0.412969 1.463333 -0.733579 0.323056 0.850771 0.254859 0.492221 -0.219541 -0.264900 -0.566416 0.388818 -0.231040 1.095535 -0.140851 0.388248 -0.493628 0.092674 0.103166 0.533114 -0.012907 -0.359501 -0.820688 -1.509440 -0.704509 -0.247627 -0.298126 -0.371925 -1.096232 -0.106126 0.453835 0.814253 -1.071901 -0.161287 0.446182 0.152870 0.229982 0.218733 -0.579835 -0.144937 -0.062216 0.027767 -0.445256 -0.300893 -0.441416 -0.655256 -0.124630 -0.009743 0.252474 -0.414176 -0.573610 -0.167043 -0.323061 0.161832 -0.093163 -0.201043 -0.044493 -1.079338 0.293451 -0.355740 0.264099 -0.867140 -0.491107 -0.428869 -0.821000 -0.076827 1.439559 -0.163155 0.964912 0.233723 -0.322967 -0.803802 -0.683898 -1.028308 0.327870 -0.685238 0.458332 0.123774 0.085366 -0.330478 -0.139878 -0.612248 0.173827 -0.543643 0.023521 -0.419926 0.901760 -0.685227 -0.049830 -1.015726 -0.069705 0.999556 0.099141 -0.193139 -0.385745 -0.622576 -0.523231 -0.718579 0.444507 -0.162903 0.361966 -0.204912 0.179643 -0.547165 0.221482 -0.401129 0.266327 -0.221138 -0.604627 -0.702579 0.029420 -0.234348 -0.131716 -0.056121 -0.510605 0.280810 -0.009902 0.439865 -0.015946 0.145067 -0.143980 -1.350100 -1.136110 -0.381375 0.273885 0.667935 0.436144 0.380742 -0.450332 -0.255685 -0.789676 0.585271 -1.331133 -0.094326 0.273886 -0.136178 0.882538 -0.402985 -0.244855 -1.003032 0.341325 -0.050853 -0.895504 1.000902 0.394818 -0.756047 -0.437686 -0.722723 0.210495 0.501352 1.236603 -0.401195 -0.124909 0.526133 -0.141652 -0.242962 -0.628376 0.580448 -0.259390 1.010660 -0.779905 -0.538526 0.123783 0.910102 -0.311838 0.120139 0.087673 0.222048 -0.046478 0.881788 0.338067 0.082141 -0.691130 -1.278599 0.128352 0.222757 0.196810 0.375693 -0.600898 -0.454979 0.181679 0.176390 0.908224 0.201789 0.639941 0.538712 -0.771914 -0.752935 0.503990 0.080559 0.335812 -0.606584 0.484946 -0.540188 -0.226738 -0.059959 0.324728 0.037210 -0.389226 -0.634189 -0.085083 0.624242 0.381055 -0.269013 0.733672 0.200293 -0.378738 0.328026 -0.122154 0.672578 -0.068817 -0.297303 -0.144697 -0.480517 -0.058722 -0.324884 1.248857 -0.168695 0.166409 0.239292 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = 0.841808 -0.338084 0.116243 0.878574 0.514516 -0.432841 0.142812 0.529598 0.169828 -1.754438 -1.269448 0.864942 -0.112669 -0.175752 0.419826 0.137614 0.382403 0.270846 -1.804939 0.610469 0.394555 0.278822 -0.083326 -0.242707 0.272146 -0.485908 0.052407 0.379426 0.224618 0.922448 -0.763220 0.189706 0.757674 0.142736 0.641847 0.857608 0.151422 -0.213768 0.017917 -0.234416 1.744491 0.624316 0.090672 0.973275 0.703062 1.036343 -0.127234 1.386968 0.834575 -0.560753 0.554058 -0.656638 -0.714459 0.061557 -1.089302 0.794255 0.894722 0.157579 -0.776075 0.491343 -0.001825 0.053528 0.215418 -0.610960 1.056701 0.515327 0.472626 0.471685 1.444367 -0.572604 -0.294774 0.689005 1.174345 0.579121 0.480623 -0.691166 -0.580231 -0.976707 -0.104237 -1.262795 -0.154118 -0.534243 1.517156 -0.970731 0.228645 0.643730 -0.250591 0.835171 -0.377909 -0.179215 -0.974496 0.247315 -0.040782 1.058737 0.015555 0.176700 -0.084180 0.266567 0.226658 0.884877 -0.023594 -0.722263 -0.917014 -2.288536 -0.524582 -0.368535 0.193536 -0.063735 -1.281615 -0.016180 0.069200 1.307676 -1.285078 -0.256225 0.658322 0.248932 -0.067363 -0.039618 -0.612384 -0.325030 0.155805 0.314002 0.258922 -0.566219 -0.203911 -0.732107 0.161180 0.052842 0.542942 -0.200757 -0.414162 -0.625538 -0.093051 0.447183 -0.209673 -0.140735 0.234995 -0.817625 0.661291 -0.377942 0.671049 -1.159578 -0.256267 -0.686980 -0.581465 -0.202673 1.866487 0.550874 1.141608 0.288632 -0.283487 -0.586167 -1.072261 -1.580733 0.472180 -0.370984 0.633597 0.190554 0.014382 0.211196 -0.338234 -0.439530 0.060534 -0.673977 -0.118319 -0.415673 0.404199 -0.428341 -0.120617 -1.047443 -0.009444 0.814791 -0.326992 0.223142 -0.434614 -1.382610 -0.926619 -0.984486 0.772749 -0.360838 0.368324 -0.283223 0.196226 -0.724286 0.205338 -0.790686 0.058041 -0.249154 -1.051485 -1.043271 -0.143719 -0.337462 0.085132 0.092582 -0.796953 0.123915 0.531415 0.947572 0.276027 0.343841 -0.090989 -1.426415 -1.188063 -0.344770 -0.200069 1.199238 0.462852 -0.061024 -0.895361 -0.423232 -0.996585 1.011893 -1.346066 0.073128 -0.100439 -0.491008 1.043569 -0.475017 -0.274524 -0.974863 0.472834 0.333959 -1.857136 1.155994 0.848166 -0.820174 -0.458232 -0.729662 0.254345 0.709072 1.471931 -0.587953 -0.269999 0.325200 -0.255223 -0.121362 -0.682441 0.878507 -0.333776 0.673087 -1.042172 -0.766289 0.445938 0.788771 -0.042935 0.321066 0.383357 0.593246 0.352358 1.180385 0.453559 -0.037612 -1.034317 -2.295941 0.493822 1.197591 0.058068 0.555418 -0.889100 -0.817736 0.009973 -0.261427 1.145955 0.430624 0.479181 0.893093 -0.848120 -0.983620 -0.079600 -0.108402 0.129105 -0.435941 0.635775 -0.594995 0.001807 -0.012726 0.161149 0.011250 -0.477344 -0.847058 0.019057 0.699248 0.591770 0.128360 1.006346 0.342453 -0.778748 0.089918 -0.046522 0.273161 -0.062456 -0.800615 -0.470353 -0.507116 0.005077 -0.426846 0.824609 -0.104515 0.326918 0.120628 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct_aux(char const*, char const*, std::__false_type) = 0.827004 0.076905 0.129192 0.464327 0.620619 -0.766094 0.278425 0.534565 0.232401 -1.174516 -0.509168 0.782875 -0.062143 -0.636179 0.021280 0.213745 0.242378 0.929683 -0.337292 0.630642 0.190182 0.700695 -0.239266 -0.793272 0.182880 0.003094 -0.415840 -0.057205 0.275292 0.713684 -0.678232 -0.317950 0.532115 0.018552 0.148415 0.745510 0.933478 -0.098379 0.327538 -0.231285 1.365712 0.248525 0.385490 1.090186 0.773665 0.669972 -0.277302 1.370729 0.055564 -0.277326 0.236271 -0.636038 -0.523837 0.032978 -0.798212 1.069340 0.866800 0.450625 -0.649914 0.551454 0.413951 0.146644 0.320834 -0.570964 0.366319 1.027583 -0.453215 0.462330 1.794880 -0.302957 -0.225018 0.395184 1.235053 0.347097 0.961128 -0.595719 -0.237569 -0.646981 -0.359804 -0.663574 0.538624 -0.451172 1.928354 -1.037994 0.685599 1.108354 0.394517 0.508462 -0.153596 -0.445692 -0.598852 0.446186 -0.396850 1.320348 -0.146738 0.455262 -0.710720 0.121143 0.097384 0.492878 0.030812 -0.395523 -0.868960 -1.667339 -0.742358 -0.320572 -0.494273 -0.369185 -1.178838 -0.252804 0.490054 1.135004 -1.417405 -0.182813 0.516742 0.093649 0.140424 0.185361 -0.604045 -0.004023 -0.246201 -0.158335 -0.733578 -0.489884 -0.676333 -0.452846 -0.464115 -0.060208 0.264911 -0.445434 -0.704173 -0.206194 -0.517281 0.214405 -0.140530 -0.217561 -0.088796 -1.408886 0.328496 -0.477939 0.200855 -0.869510 -0.680672 -0.290122 -1.067744 -0.162010 1.585972 -0.539534 1.139209 0.125296 -0.311133 -1.135071 -0.726722 -1.046598 0.635553 -0.838349 0.563737 0.274470 0.126305 -0.530412 -0.222075 -0.813588 0.202756 -0.634609 0.062706 -0.400769 1.389406 -0.996844 -0.023261 -1.302980 -0.083531 1.268592 0.251823 -0.418658 -0.549307 -0.485681 -0.564234 -0.752710 0.558710 -0.182792 0.519024 -0.202343 0.218179 -0.406906 0.165572 -0.497462 0.402979 -0.272550 -0.565723 -0.867605 0.064238 -0.299027 -0.222281 0.001552 -0.583571 0.437037 -0.071660 0.477875 -0.211506 0.066510 -0.030097 -1.684515 -1.269920 -0.454350 0.331567 0.622732 0.537622 0.572470 -0.637504 -0.262377 -0.848989 0.613622 -1.659599 -0.091045 0.280771 0.063777 1.084578 -0.482960 -0.216125 -1.348730 0.420318 -0.011706 -1.020247 1.090650 0.321677 -0.826592 -0.377887 -0.770553 0.254549 0.622934 1.417637 -0.541973 -0.320672 0.773121 -0.428328 -0.277753 -0.918021 0.626846 -0.320093 1.345413 -0.842018 -0.447552 0.098743 1.011158 -0.406322 0.200942 0.198059 0.124478 -0.081602 1.042458 0.487777 0.170060 -0.919056 -1.262261 0.200660 0.156432 0.445124 0.348657 -0.590623 -0.409492 0.373854 0.304081 0.980155 0.173410 0.833904 0.610922 -1.083110 -0.899326 0.863704 0.138364 0.610383 -0.707604 0.542899 -0.643499 -0.244080 -0.077619 0.438033 0.062339 -0.415086 -0.671869 -0.024592 0.815992 0.429664 -0.336805 0.898676 0.143894 -0.491123 0.648882 -0.287598 0.958110 -0.366804 -0.313861 -0.045098 -0.485329 -0.044712 -0.477253 1.679273 -0.316401 0.068479 0.289645 -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) = 3.228631 0.499398 -0.322687 3.210234 1.140456 -2.631703 -0.397220 2.752445 -1.585416 -4.744362 -4.608331 2.561556 -0.360325 -0.184505 2.642276 0.504579 0.060153 -0.651042 -6.388102 2.829819 0.471624 0.171335 -1.433822 -1.620653 1.133162 0.602270 -1.440962 1.304327 0.235326 1.982529 -3.048359 0.835979 1.060009 0.708440 2.846942 -0.056986 -0.530278 -0.738497 -0.093595 -1.201228 5.256925 1.937442 -0.015594 2.934100 2.577486 2.421796 -2.184139 4.845672 -0.058192 -0.859675 3.031363 -2.313606 -1.979417 1.614783 -2.673093 2.886893 3.828749 0.421243 -1.724134 1.298071 -0.983292 0.213855 0.513104 -2.353786 4.725000 2.672490 2.371999 1.400887 3.964668 -1.148562 -0.863216 1.603356 4.512638 0.790974 -1.426830 -2.902078 -0.597252 -4.419020 0.613402 -5.794536 -0.316416 -1.833415 6.289199 -2.876002 1.039701 1.667812 -0.617264 2.124933 -3.096276 1.020614 -2.104326 0.155205 -1.659064 3.704474 -1.089742 0.284228 0.490856 0.937269 1.609849 3.446781 -1.789166 -0.386503 -3.273644 -6.292540 -2.255033 2.425576 0.095681 -0.866606 -3.540198 -0.286999 1.679737 2.834635 -2.740067 -2.313067 1.804554 0.846678 -0.762119 3.195608 -3.823098 -1.194936 -0.183440 1.742405 1.797185 -0.615100 0.364131 -3.560333 -0.406286 0.405310 3.165176 0.341103 -3.303196 -1.672793 -0.593982 -0.741240 -1.194600 -1.918914 -0.513771 -1.499280 2.389761 -0.309416 1.995679 -4.731125 -0.949863 -3.176595 -2.101974 1.421208 4.391112 3.448777 2.558914 2.668138 -0.385245 -1.480756 -3.514354 -3.270142 1.521595 0.187052 1.969966 -0.947766 0.468368 0.806954 -0.121921 -2.532328 1.552718 -3.072257 -1.722684 -3.478221 4.077718 -0.898269 -0.808617 -3.760259 1.031989 2.687655 -2.686805 0.249567 -0.757020 -3.766394 -2.988216 -2.789027 1.976928 -0.108098 1.048907 -0.242885 2.249026 -3.092372 0.716981 -2.907519 1.201242 0.049793 -3.707575 -2.490695 -0.822010 0.010277 -0.596568 -1.032387 -1.558566 0.310878 2.695577 4.204905 0.233672 2.030451 0.680671 -4.609915 -5.248255 -1.800583 0.437142 3.441425 2.055265 0.064598 -2.886495 -0.898233 -3.650212 3.816588 -3.489474 -0.311074 -1.432973 -0.677991 3.226522 -2.040622 -1.704638 -2.884610 1.038730 1.041123 -6.773472 3.733513 2.036259 -2.397900 -1.862714 -4.378143 1.600170 2.032720 6.114833 -1.549796 0.106476 0.199477 0.544852 -1.055365 -2.225505 3.691402 -1.131845 0.994562 -2.652040 -2.728066 0.943697 2.073739 0.988554 1.576770 0.348960 2.185931 0.612517 3.774869 1.407048 -1.960584 -1.937731 -6.982745 0.943569 4.309751 -0.523209 1.110433 -2.842387 -4.003367 -1.849552 -0.307390 3.254179 1.263705 1.423432 2.090277 -1.997368 -2.253051 -0.676617 1.978273 -1.071892 -2.295505 1.156203 -1.880075 -0.470317 1.810175 0.072644 0.638253 -1.195154 -5.730640 -2.248078 1.702374 1.380776 0.152854 2.904091 2.271513 -2.597094 -0.187424 0.263639 1.056082 -0.080262 -2.495802 -1.811248 -2.510378 -0.783839 -1.145445 1.770501 1.667752 0.255912 0.687148 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__is_null_pointer(char const*) = 0.131955 -0.019217 0.054198 0.233889 0.096319 -0.176677 0.050312 0.019458 -0.184957 -0.501324 -0.093696 0.221594 -0.042621 -0.106488 0.046045 0.149943 0.036829 0.160756 -0.253564 0.195024 0.132422 0.105601 0.055374 -0.142088 0.073952 -0.151012 0.067746 0.113345 0.046792 0.269080 -0.264401 0.049137 0.225342 0.041583 0.059876 0.208845 0.180896 -0.057250 -0.036302 0.020381 0.471462 -0.096355 0.121001 0.137341 0.177733 0.284930 -0.015872 0.283199 0.329464 -0.144843 0.192763 0.053408 -0.127889 0.001862 -0.301068 0.198511 0.043297 0.219291 -0.175351 0.113175 -0.153410 0.043169 0.071972 -0.084696 0.314382 0.210733 0.097192 0.188748 0.475265 -0.175675 -0.095274 0.205903 0.236013 0.071060 0.269408 -0.116496 -0.065867 -0.597258 -0.148861 -0.298148 -0.010104 0.008013 0.617713 -0.268634 -0.002280 0.287799 0.095396 0.282881 -0.106110 0.037205 -0.306928 0.119051 0.016298 0.351911 0.040705 0.007159 -0.154293 0.030821 0.058868 0.240858 0.025964 -0.156945 -0.297581 -0.484244 -0.356531 -0.122999 -0.002246 -0.081988 -0.517380 0.054341 0.470043 0.396803 -0.468015 -0.030021 0.207368 0.167772 0.108809 0.055378 -0.233482 -0.043690 0.023770 0.109978 0.016593 -0.089055 -0.065164 -0.182693 0.023802 -0.038298 0.157811 -0.166044 -0.277365 -0.201133 -0.068187 -0.023434 -0.000449 -0.064837 0.066883 -0.232720 0.156089 -0.105940 0.194792 -0.326584 -0.062781 -0.171515 -0.163718 -0.060539 0.608664 0.195484 0.256961 0.042961 -0.245668 -0.199248 -0.294388 -0.292394 0.029461 -0.188548 0.102097 0.140740 -0.013803 0.022180 -0.007046 -0.107844 0.059446 -0.227500 -0.037724 -0.099836 0.035846 -0.158255 -0.028533 -0.466831 -0.040398 0.242376 0.008143 0.030220 -0.117656 -0.324070 -0.314029 -0.345880 0.206425 -0.104419 0.088201 -0.126622 -0.005968 -0.112105 0.158511 -0.200296 0.024395 -0.019064 -0.291354 -0.309706 0.101970 -0.109321 -0.264032 -0.031693 -0.225949 0.049166 -0.125094 -0.051521 0.097253 -0.026224 -0.091432 -0.493481 -0.408112 -0.101167 -0.001669 0.090396 0.207953 0.136665 -0.401084 -0.174287 -0.274614 0.203766 -0.451316 0.012430 0.092172 -0.186018 0.317632 -0.192146 0.049281 -0.201666 0.148723 0.030614 -0.619393 0.476319 0.282182 -0.264882 -0.149990 -0.168039 0.079080 0.220035 0.396708 -0.170708 0.017453 0.115657 0.058989 -0.058878 -0.031703 0.250912 -0.168906 0.227536 -0.291502 -0.251864 0.060632 0.369474 -0.055339 -0.015852 0.081183 0.068742 -0.026099 0.286166 0.149845 0.051062 -0.153815 -0.534629 0.099744 0.100542 0.043037 0.288875 -0.251850 -0.146920 0.094649 -0.014581 0.378060 -0.168397 0.074368 0.218513 -0.291612 -0.297746 0.065590 -0.051906 0.013766 -0.196868 0.286226 -0.189433 -0.134368 0.001983 0.045147 -0.094864 0.001315 -0.116501 -0.014767 0.244180 0.326714 -0.054110 0.294099 0.122692 -0.212637 0.022105 0.017175 0.144582 0.006722 -0.132801 -0.053369 -0.092899 0.032630 -0.113564 0.314030 -0.079976 -0.025051 0.032523 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::difference_type std::distance(char const*, char const*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::difference_type std::__distance(char const*, char const*, std::random_access_iterator_tag) = 0.106660 -0.223998 -0.043968 0.619703 0.293571 -0.390518 0.110742 0.021714 0.048498 -1.081476 -0.256660 0.345371 -0.060458 0.098635 -0.218124 0.369760 0.067844 0.298413 -0.313612 0.341556 0.377688 0.439164 0.225661 -0.217644 0.438381 -0.089903 0.057297 -0.010014 0.267074 0.656915 -0.548666 0.219841 0.524490 0.027394 -0.008693 0.479830 0.567142 0.220435 0.218178 -0.119170 0.511599 -0.052432 0.051738 0.361803 0.199670 0.604437 0.152637 0.808314 0.048964 -0.411233 0.018889 -0.380900 -0.365649 -0.105599 -0.454172 0.904934 0.372482 0.698930 -0.334131 0.150831 0.166594 0.104032 0.217876 -0.396448 0.441096 0.645076 0.013711 0.404429 1.206746 -0.295769 -0.131055 0.393111 0.760984 0.193806 0.530164 -0.442100 -0.261294 -0.374438 -0.425153 -0.631946 0.095315 -0.090387 1.036780 -0.780631 0.087063 0.315434 0.000000 0.648940 -0.252288 0.047859 -0.625264 0.252489 0.043786 0.923791 0.142727 0.175976 -0.387871 0.392322 0.113465 0.357701 0.074280 -0.109716 -0.561381 -0.868265 -0.425952 -0.313661 0.028047 0.094650 -1.223151 -0.041993 0.096685 0.750976 -1.262479 -0.030798 0.426715 0.304697 0.424613 0.111280 -0.121645 0.243774 -0.104564 -0.264487 -0.442610 -0.340521 -0.212251 -0.216287 -0.365458 -0.169342 0.178435 -0.095240 -0.799061 -0.111844 -0.422746 0.037650 0.146055 0.147269 0.209591 -0.624006 0.311953 -0.440137 0.199519 -0.792865 -0.601038 0.060229 -0.847009 -0.244149 1.088726 -0.111570 0.730184 -0.381006 -0.312207 -0.920436 -0.859206 -0.852503 0.350403 -0.252549 0.326852 0.606071 -0.057206 -0.026389 -0.312174 -0.409719 0.389882 -0.490692 -0.096825 -0.239399 0.576029 -0.460526 0.317988 -0.965452 -0.370389 0.681792 -0.148649 -0.079361 -0.314638 -0.487006 -0.850801 -0.457590 0.296463 -0.205101 0.331247 -0.293275 0.084038 -0.575656 0.174001 -0.458479 -0.056558 -0.028829 -0.513647 -0.710233 0.335926 -0.204291 -0.207127 0.168451 -0.410933 0.179952 -0.141202 0.265540 0.197716 -0.094683 -0.056556 -0.812579 -0.809810 0.077415 -0.080906 0.155124 0.068031 0.000000 -0.324008 -0.470402 -0.640733 0.618229 -0.825466 0.110710 0.251045 0.388511 0.716448 -0.486078 0.170603 -0.772164 0.284105 0.141185 -0.776153 0.596900 0.230183 -0.481479 -0.091468 -0.244165 0.209569 0.504675 0.690224 -0.458208 -0.437273 0.341559 -0.151959 -0.127365 -0.362583 0.388052 -0.425367 0.796071 -0.502320 -0.259416 -0.082370 0.619056 -0.230415 0.307942 0.136888 -0.207836 -0.049634 0.546350 0.488898 0.113611 -0.636727 -0.873719 -0.001054 -0.047346 0.228889 0.154489 -0.683130 -0.055091 0.471530 0.015277 0.687441 -0.024776 0.072077 0.513534 -1.043762 -0.536260 0.673508 -0.035039 0.241751 -0.233405 0.417350 -0.390691 -0.014231 0.228288 0.245963 -0.236225 -0.487085 -0.063039 0.077875 0.817963 -0.130474 0.070985 0.681428 -0.078380 -0.246814 0.184779 0.089315 0.377468 -0.435075 -0.553630 -0.061711 -0.109177 0.081098 -0.508704 1.021403 -0.213534 -0.150912 0.138168 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(char const* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::char_traits::length(char const*) = 0.730993 -0.260055 0.101529 1.143049 0.404874 -0.334951 0.256486 0.577649 0.229800 -2.079318 -1.267231 0.736412 -0.063088 0.072532 0.386357 0.188702 0.160533 0.227844 -1.859162 0.545030 0.676307 0.383746 0.040704 -0.220614 0.246489 -0.534814 0.321554 0.382385 0.356997 1.214882 -0.725158 0.338348 1.019534 0.156997 0.680298 1.007615 0.266706 -0.240515 -0.326802 -0.181031 1.769769 0.781959 -0.070740 0.914704 0.330019 1.244865 0.301653 1.148837 0.481199 -0.841441 0.254909 -0.714540 -0.820974 -0.136609 -0.892065 0.808976 0.841717 0.626704 -0.712353 0.492054 -0.259569 -0.134417 0.291646 -0.480048 1.089385 0.477674 0.623168 0.774587 1.439629 -0.814098 -0.322671 0.703734 0.827833 0.355859 0.729859 -0.727915 -0.767428 -1.145941 -0.048409 -1.372077 -0.655636 -0.235788 1.525630 -1.206267 0.334778 0.492281 -0.260417 0.964841 -0.474847 -0.218738 -1.127418 0.114874 0.068724 1.172647 -0.027960 -0.032888 0.001414 0.374726 0.445763 0.897181 0.186422 -0.814497 -0.889699 -1.992741 -0.295778 -0.457671 0.302584 0.338682 -1.216899 -0.199372 -0.076648 1.479366 -1.570852 -0.167215 0.985307 0.554609 0.438407 -0.254974 -0.358296 0.006141 0.343280 0.099366 0.619121 -0.724108 -0.066448 -0.441960 0.320924 -0.013258 0.529873 -0.056509 -0.696937 -0.884991 -0.027472 0.309397 -0.148856 0.050701 0.424089 -0.832199 0.807145 -0.552996 0.903218 -1.187243 0.015485 -0.547607 -0.612312 -0.324954 2.049722 0.724084 1.059771 -0.034913 -0.546921 -0.529479 -1.083668 -1.712216 0.450451 -0.006484 0.509132 0.465265 -0.098112 0.481896 -0.465116 -0.079215 0.231153 -0.562798 -0.192794 -0.210496 0.167943 -0.297761 -0.183016 -1.009145 -0.031512 0.416417 -0.192431 0.607823 -0.466290 -1.550152 -1.332020 -1.114597 0.939815 -0.399806 0.206779 -0.524076 -0.051659 -0.720838 0.161578 -1.006875 0.324705 -0.072863 -1.153185 -1.274075 0.051099 -0.343680 -0.161011 0.261646 -0.766674 -0.164099 0.557989 0.627766 0.317736 0.236882 0.010164 -1.315029 -1.032192 -0.091778 -0.454456 1.313888 0.278169 -0.156825 -1.059264 -0.453224 -1.052803 1.154010 -0.945715 0.238270 -0.284414 -0.295917 1.195898 -0.590628 -0.030445 -1.153659 0.520718 0.563162 -1.783157 1.128167 0.953129 -0.499460 -0.306765 -0.257128 0.149218 0.909408 1.293536 -0.721366 -0.646319 0.267860 -0.344271 -0.010609 -0.509068 0.791342 -0.686739 0.415901 -0.996303 -0.746718 0.412277 0.797032 0.008451 0.327922 0.610245 0.327829 0.264796 1.094469 0.752319 -0.010644 -1.073322 -2.257217 0.782600 0.993519 0.028703 0.279707 -0.934943 -0.793954 0.146965 -0.365291 1.165747 0.689836 0.129203 1.069800 -1.182010 -1.148629 -0.259729 -0.185688 0.159423 -0.372675 0.463728 -0.375013 0.363724 0.153053 -0.126573 -0.059762 -0.520530 -0.471993 0.042703 0.809080 0.394138 0.345599 1.127409 0.325969 -0.790585 0.039191 0.157034 0.080122 -0.216916 -0.989180 -0.546448 -0.317993 0.148963 -0.465853 0.650648 -0.321031 -0.042091 0.200811 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::char_traits::eq(char const&, char const&) = 0.258451 0.051796 -0.381633 0.940901 0.026825 -0.289515 0.031272 -0.140240 -0.223964 -1.293206 -0.570239 0.555199 0.174908 -0.058902 0.141891 0.420648 -0.037321 0.342789 -0.559501 0.315986 0.404725 0.218742 -0.053908 -0.182409 0.085241 -0.285158 0.293863 0.033123 0.172327 0.758200 -0.380545 0.404581 0.652004 -0.204811 0.026099 0.505569 0.056141 0.226543 -0.215076 0.049868 0.970931 -0.045409 0.361745 0.430703 0.096466 0.715498 -0.077160 0.918938 0.278910 -0.490761 0.695071 0.618847 -0.168466 -0.115552 -0.555141 0.489562 0.613970 0.394436 -0.350688 0.228500 -0.175140 0.087062 0.256212 0.010137 0.759377 0.733441 0.408559 0.664525 1.002939 -0.409669 -0.043756 0.333599 0.248814 -0.065293 0.882924 -0.588107 -0.615600 -0.010558 -0.457610 -0.617081 0.007004 0.049578 1.580730 -0.801297 -0.171642 0.231951 0.338942 0.773999 -0.220990 0.121618 -0.516538 0.091393 -0.436233 1.057499 0.154563 0.151269 -0.446242 0.142980 0.064758 0.395758 -0.047212 -0.490939 -0.374840 -1.053579 -0.888805 -0.373372 0.276888 0.293740 -1.269867 -0.102081 0.079509 0.479717 -1.326095 0.001020 0.480433 0.542102 0.767177 0.168600 -0.776124 0.012327 0.180369 0.119452 0.199894 -0.108057 -0.026491 -0.455814 -0.072122 -0.076386 0.190317 -0.184218 -0.809698 -0.454477 -0.418723 -0.090338 0.135602 0.127812 0.474577 -0.527293 0.464302 -0.243509 0.483521 -1.180734 -0.403372 -0.408554 -0.817078 -0.253748 0.717874 0.317860 0.912698 -0.422269 -0.622709 -0.475614 -1.097177 -0.779904 -0.004954 -0.236787 0.149564 0.477929 -0.089078 0.234339 -0.313853 0.095678 0.542892 -0.379376 -0.139963 -0.114468 0.792588 -0.252318 -0.163115 -0.867309 -0.326843 -0.117257 0.086416 0.558428 -0.078745 -0.877033 -1.210986 -0.535811 0.615665 -0.301969 0.240735 -0.444468 -0.136450 -0.621947 0.048556 -0.698413 -0.059866 0.058059 -0.464313 -0.809864 0.207906 -0.096103 -0.449916 -0.006861 -0.693584 0.019732 0.443951 0.140084 0.310527 0.058415 -0.119808 -1.064866 -0.761969 0.078885 -0.384438 0.337166 0.644423 0.156597 -0.603907 -0.358630 -0.827886 0.228496 -0.671898 0.134776 0.125586 -0.020044 0.665592 -0.671197 0.110510 -0.718164 0.080295 0.078526 -1.537973 0.956781 0.429776 -0.365517 -0.007290 -0.008835 0.256104 0.267073 0.529558 -0.478741 -0.323415 0.190470 -0.102452 -0.033113 -0.230408 0.452831 -0.587771 0.241369 -0.494193 -0.256107 0.362674 0.633744 -0.117510 0.003907 0.213833 -0.316479 0.211300 0.525188 0.620026 -0.084033 -0.441790 -1.418486 0.300139 -0.565186 -0.184884 0.179542 -0.325767 -0.294366 0.407033 0.013106 0.792037 -0.318814 0.036654 0.609924 -0.957826 -0.776157 -0.116404 -0.087619 0.167741 -0.289135 0.096515 -0.435442 0.025117 0.191515 0.041757 -0.190869 -0.421775 0.004420 0.088541 0.893028 0.146189 0.103290 0.777082 0.315945 -0.373123 -0.017784 0.071304 0.030488 -0.144355 -0.713985 -0.148196 -0.033199 0.171236 -0.404840 0.500417 -0.425854 -0.090262 0.242460 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.352978 0.543431 -0.152779 1.645177 0.473807 -1.681125 0.614589 1.405801 -0.728520 -3.285771 -1.896460 1.228939 -0.158639 -0.818068 0.342816 0.473090 -0.124434 0.690463 -3.218539 1.372692 1.382192 1.016797 -0.376341 -0.875786 0.657991 -0.504708 -1.299419 0.883775 0.082502 1.865744 -1.159348 0.195792 1.533210 0.131756 0.224094 1.717409 0.268190 0.275495 1.409481 0.131251 2.496915 0.954957 -0.240969 1.267666 1.308180 1.958178 -0.943366 2.325154 -1.394158 -1.199919 0.773330 -0.551451 -1.443740 -0.115589 -1.086156 1.457628 2.287372 1.558995 -1.025271 1.169372 -0.868331 -0.117136 0.723850 -0.809767 1.956465 2.440962 0.534908 1.174200 3.541770 -0.724773 -0.373945 1.148672 1.569790 -0.029577 0.327883 -0.789817 -0.964732 -1.958040 -0.374286 -3.531222 -0.824071 -0.360115 4.293308 -1.972391 0.400561 0.969046 0.851379 1.833726 -1.333031 -0.173589 -1.429879 0.436658 -1.027064 3.446059 -0.148895 0.799615 -0.765306 0.772613 0.924587 1.524853 -1.081247 -0.622660 -2.471704 -3.606152 -1.122909 -0.454721 -0.217773 0.179645 -3.411935 -0.689902 1.280418 2.302972 -3.384924 -0.492482 1.492403 0.913472 0.509662 1.856493 -2.551081 0.087462 -0.288164 -0.353599 0.140932 -0.540108 -0.479415 -1.517801 -0.382502 -0.195068 0.328905 -0.153275 -3.511382 -0.606739 -0.306356 -1.242334 0.224365 0.326151 0.342610 -1.378556 0.966505 -1.566288 1.153235 -3.263609 -0.654532 -0.627282 -2.600676 -0.170166 1.901838 2.055631 1.083666 -0.320459 -0.590433 -1.793686 -2.605999 -2.575634 0.577359 -0.820647 1.558170 -0.167976 -0.117490 -0.326969 -0.699527 -0.763692 0.744481 -1.013709 0.133936 -1.308908 4.252243 -0.547557 0.032535 -2.117005 -0.779629 1.214646 -0.464494 0.224974 -0.866883 -1.486142 -2.763640 -1.692300 1.355186 -0.235618 0.094578 -1.291218 0.334716 -1.914114 0.665295 -1.168357 0.187316 -0.227189 -1.289431 -2.011526 0.427246 -0.240772 -1.269310 -0.496096 -1.089299 -0.263846 1.620810 0.814788 0.735506 0.111372 -0.244376 -2.156808 -2.289122 -0.015878 0.015049 1.382508 2.049199 0.342244 -1.560704 -0.472902 -2.604219 2.381197 -1.505273 0.088667 -0.081171 -0.031664 2.956266 -1.110700 -0.581213 -2.200248 0.727839 0.033372 -3.468451 2.625510 1.206539 -1.426902 -0.785934 -1.285948 0.324076 1.806084 2.180216 -1.242425 -0.947106 0.817543 -0.639874 -0.406661 -0.773790 1.442784 -1.306272 2.106951 -1.518202 -0.830911 0.890341 1.814264 -0.556104 0.954140 -0.204805 0.041523 0.947136 1.633436 1.148862 -0.894226 -1.401132 -3.534522 0.628686 -0.377565 -0.044662 -0.105238 -1.127867 -1.674173 0.471969 -0.164096 2.387876 0.401767 -0.374890 1.387304 -2.300068 -2.030820 0.164511 0.838013 0.385723 -1.074556 0.837951 -0.686525 0.165965 1.132907 0.463530 0.650700 -2.270098 -2.065949 -0.404086 2.027882 0.304496 -0.845162 2.123673 0.135126 -0.829133 -0.113658 0.103287 1.125003 -0.480986 -1.347868 -0.615299 -1.148054 0.346507 -1.031477 2.712266 0.146101 0.042997 1.313305 -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.361970 0.104217 0.097853 0.288782 0.296630 -0.448961 0.177750 0.278588 -0.133496 -0.668439 -0.353834 0.153623 -0.043140 -0.382295 0.115428 0.101538 0.059566 0.376290 -0.387373 0.347666 0.181260 0.248333 -0.155487 -0.381268 0.071052 -0.134235 -0.350552 0.192811 0.005639 0.407636 -0.331410 -0.090590 0.286027 0.121637 0.161233 0.430846 0.345441 -0.057513 0.287086 0.075136 0.762634 0.158893 0.059180 0.350947 0.470452 0.418921 -0.179857 0.457059 -0.342322 -0.137934 0.152197 -0.283501 -0.263544 0.010886 -0.440811 0.410346 0.530130 0.286450 -0.329644 0.345447 -0.127466 0.048779 0.161378 -0.222932 0.410146 0.463873 -0.063275 0.230877 0.920818 -0.178468 -0.139728 0.260456 0.555252 -0.004419 0.233020 -0.077943 -0.126030 -0.669879 -0.125087 -0.616702 0.107637 -0.089623 0.986833 -0.439778 0.196741 0.581562 0.226001 0.321843 -0.242993 -0.226755 -0.352043 0.201427 -0.261252 0.776591 0.000344 0.227823 -0.276447 0.145137 0.192926 0.358017 -0.155668 -0.202197 -0.591551 -1.060152 -0.425639 -0.124861 -0.225586 -0.250793 -0.679634 -0.189111 0.568945 0.670424 -0.719106 -0.059751 0.329535 0.139279 -0.063649 -0.000155 -0.511393 0.031245 -0.138831 -0.017430 -0.147912 -0.167066 -0.252433 -0.352092 -0.048617 -0.051788 0.161065 -0.214640 -0.512477 -0.098155 -0.121705 -0.132989 -0.067115 -0.099492 -0.070130 -0.567567 0.180450 -0.351217 0.251823 -0.599806 -0.055433 -0.255084 -0.639182 0.001560 0.641183 0.118290 0.354991 0.099604 -0.185079 -0.405986 -0.470720 -0.742732 0.267243 -0.321877 0.351366 -0.073058 0.016699 -0.246627 -0.112861 -0.341271 0.225218 -0.342965 0.043657 -0.266201 0.893200 -0.316767 -0.112163 -0.607058 -0.054992 0.628545 0.088102 -0.126655 -0.313773 -0.144194 -0.390584 -0.472779 0.303190 -0.067521 0.117143 -0.174807 0.095398 -0.426471 0.257691 -0.247106 0.236724 -0.139501 -0.297829 -0.458737 -0.024540 -0.115896 -0.256352 -0.100044 -0.277833 0.108307 0.123285 0.004082 -0.000330 0.030124 -0.003351 -0.628191 -0.661874 -0.169751 0.195496 0.293494 0.441890 0.285618 -0.376858 -0.089439 -0.536651 0.465734 -0.555391 -0.055994 0.100443 -0.151929 0.653963 -0.255036 -0.233002 -0.508838 0.220305 -0.057115 -0.543669 0.672136 0.322594 -0.472811 -0.304055 -0.450158 0.104355 0.360767 0.794351 -0.278529 -0.040111 0.303983 -0.141751 -0.149603 -0.301932 0.372205 -0.201205 0.645471 -0.478431 -0.311944 0.128384 0.599292 -0.172184 0.201403 -0.032205 0.143995 -0.007636 0.520493 0.203565 -0.032334 -0.393298 -0.635098 0.113978 -0.133092 0.125738 0.127550 -0.201354 -0.346131 0.057802 0.095446 0.591371 0.222997 0.097670 0.346633 -0.450056 -0.505709 0.207240 0.154704 0.197990 -0.483894 0.310923 -0.297916 -0.085467 0.035860 0.215218 0.160969 -0.334610 -0.516951 -0.116989 0.399045 0.253061 -0.295964 0.511306 0.054550 -0.232213 0.127275 -0.067945 0.448072 0.036763 -0.179236 -0.181660 -0.367756 0.040557 -0.198883 0.806769 -0.081064 0.088145 0.337584 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 2.612323 0.273104 -0.197217 2.539923 0.870866 -2.499472 0.908692 2.183625 -0.717832 -5.151006 -3.188289 2.597738 -0.187106 -1.296299 0.575648 0.879936 -0.019963 0.915302 -5.109033 2.291472 1.785840 1.288233 -0.640016 -1.500647 0.911763 -1.062485 -1.154349 1.390956 0.199808 2.871604 -1.839407 0.164854 2.374859 0.299124 0.885009 2.862925 0.277081 0.166887 1.542809 -0.150245 4.289947 1.953760 -0.181046 2.186404 2.134345 3.093193 -0.989064 4.028364 -1.057717 -1.802136 1.519676 -1.036750 -2.585894 -0.146949 -2.149307 2.214080 3.258193 1.732164 -1.779167 1.833478 -1.215288 -0.104909 1.030946 -1.101946 3.186751 3.123231 1.069578 1.664673 5.296110 -1.420126 -0.799128 2.191202 2.878602 0.381760 1.138415 -1.800636 -1.994561 -2.541383 -0.305419 -5.083649 -1.189643 -0.738923 6.672372 -3.098486 0.603025 1.635835 0.937225 2.749556 -1.944206 -0.422306 -2.317617 0.778866 -1.404871 5.299648 -0.258020 1.239659 -0.888763 1.089469 1.378059 2.633973 -1.248129 -1.378110 -3.557903 -5.843738 -1.405338 -0.927195 -0.080955 0.137502 -4.850401 -0.965329 1.543250 3.802627 -4.886485 -0.673179 2.577246 1.168438 1.220614 2.219035 -3.227716 0.060331 -0.155602 -0.096040 0.529792 -1.170274 -0.909258 -1.885676 0.015114 -0.178681 0.758490 -0.367533 -5.046206 -1.159227 -0.265541 -1.153504 0.134060 0.199943 0.479412 -2.461235 1.583870 -2.118555 1.937847 -4.874826 -0.857349 -1.400728 -3.570797 -0.310234 3.759574 2.919865 2.361740 -0.260600 -0.595150 -2.500813 -3.835928 -4.323675 1.026481 -1.260865 2.198032 -0.274419 0.018054 -0.250773 -1.028813 -1.132005 0.788699 -1.717575 0.144988 -1.742391 5.495540 -0.949755 -0.183022 -3.114324 -0.993109 1.803926 -0.453832 0.530663 -1.297541 -3.690790 -3.969327 -2.867426 2.230157 -0.525904 0.261346 -1.725441 0.367483 -2.561275 0.831164 -2.014747 0.793231 -0.363165 -2.285548 -3.145127 0.348785 -0.504480 -1.273057 -0.637531 -1.776583 -0.384680 2.271194 1.486764 0.979128 0.596634 -0.268974 -3.819037 -3.553254 -0.140951 -0.043645 2.779599 2.882530 0.445881 -2.474828 -0.780850 -3.961434 3.336428 -2.934246 0.093217 -0.373261 -0.475948 4.484156 -1.636760 -0.573578 -3.449100 1.294845 0.306282 -5.588318 4.125743 2.410904 -2.231394 -1.328467 -1.786699 0.343202 2.806631 3.777589 -1.911132 -1.508603 1.211368 -1.128292 -0.614487 -1.016939 2.402057 -1.919073 3.070814 -2.558347 -1.574491 1.290940 2.756269 -0.611298 1.298181 -0.149021 0.393932 1.311813 2.865148 1.654999 -1.040236 -2.804426 -6.585502 1.268577 0.360876 -0.235231 0.353369 -1.782090 -2.785838 0.612644 -0.410581 3.700363 0.791529 -0.326096 2.260860 -3.467431 -3.271589 -0.028561 0.910283 0.520109 -1.564285 1.357217 -1.232753 0.226215 1.234823 0.536256 0.736356 -2.822834 -2.835892 -0.471225 3.076225 1.129621 -1.010548 3.301457 0.421709 -1.436879 -0.184878 0.117434 1.532699 -0.458100 -2.323553 -1.150813 -1.867778 0.531364 -1.391686 3.796951 0.399011 0.320270 1.652592 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = -0.043632 0.013273 -0.088389 0.602862 -0.081621 0.010077 0.041955 -0.146502 -0.243090 -0.958162 -0.372740 0.015821 0.074422 0.353094 0.170475 0.068865 -0.033736 0.174829 -0.751233 -0.003556 0.478796 0.190430 0.312310 0.114376 0.139688 -0.146973 -0.002330 -0.014293 0.259685 0.643026 -0.344706 0.362855 0.528351 -0.075420 0.029250 0.315744 0.192830 0.280127 -0.197067 0.037478 0.557199 -0.109719 0.214687 0.102310 -0.198088 0.517376 -0.020951 0.591676 0.269261 -0.554006 0.425812 -0.305879 -0.006317 0.035639 -0.165108 0.262470 0.334336 0.628701 -0.206139 0.148144 -0.071327 0.095920 0.081655 -0.139673 0.368581 0.364570 0.110677 0.318758 0.378374 -0.351352 0.020073 0.029937 -0.224855 -0.216814 0.238165 -0.342428 -0.222993 -0.378109 -0.155145 -0.481336 -0.347015 0.199916 0.532074 -0.582755 0.025933 0.216343 -0.040767 0.475237 -0.050263 0.202718 -0.441914 -0.069779 -0.032828 0.499672 0.215364 -0.123053 -0.050520 0.068431 0.195031 0.243538 -0.018915 -0.248680 -0.326206 -0.625631 -0.396700 -0.194738 0.364207 0.486141 -0.690191 -0.189035 -0.009961 0.303915 -0.869317 0.059921 0.260497 0.574481 0.047966 0.161605 -0.307842 0.031601 0.112852 -0.051803 0.451174 -0.276449 0.142360 -0.354899 -0.156173 -0.044712 0.141458 -0.099515 -0.245856 -0.402155 -0.206296 -0.173420 0.041434 0.137631 0.369123 0.045749 0.413774 -0.273529 0.301046 -0.461619 -0.100299 -0.022988 -0.565195 -0.242782 0.683034 0.199989 0.259081 -0.307717 -0.642530 -0.206555 -0.579427 -0.624375 0.031701 0.144192 0.329813 0.502577 -0.176725 0.352999 -0.364623 0.133888 0.184580 -0.108142 -0.187614 0.037523 -0.057591 -0.077985 -0.109393 -0.527435 -0.035071 -0.174580 -0.336561 0.491724 -0.099044 -0.260112 -0.807171 -0.366384 0.489308 -0.215871 0.142143 -0.293158 -0.000202 -0.538581 -0.007051 -0.524842 -0.179898 0.098999 -0.329417 -0.598809 0.156077 -0.135949 -0.169949 0.245928 -0.437323 -0.114918 0.315707 0.120831 0.325009 -0.045862 0.068229 -0.398565 -0.338826 0.037273 -0.531639 -0.109741 0.137374 -0.036731 -0.267881 -0.329351 -0.339903 0.204644 -0.135739 0.146098 -0.112115 0.071471 0.380674 -0.299347 0.049628 -0.264388 0.018339 0.357443 -0.770096 0.395288 0.077845 -0.074055 0.074934 0.076141 0.101556 0.272942 0.231796 -0.287494 -0.294605 0.036639 -0.194549 0.109653 -0.169193 0.238374 -0.407361 -0.064029 -0.201940 -0.085776 0.195655 0.282262 0.032196 0.175789 0.479340 -0.052934 0.343417 0.291000 0.284288 -0.176870 -0.082802 -0.811341 0.415771 0.125662 0.013685 -0.094365 -0.378085 -0.045141 0.353504 0.089924 0.387699 0.265649 0.031098 0.472750 -0.538515 -0.421923 -0.192404 -0.090410 0.060245 -0.131117 -0.251817 -0.126120 0.300106 0.307612 -0.083627 0.123832 -0.279158 -0.182403 0.032056 0.457528 -0.147088 0.359835 0.557458 0.112024 -0.282676 0.035658 0.063344 0.054933 -0.220694 -0.340905 -0.120913 0.122792 0.108019 -0.301508 0.033164 -0.437946 -0.360587 0.239068 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.821959 0.687635 0.142977 1.663874 0.731025 -2.228260 0.879716 1.890620 -0.833170 -3.651924 -2.272666 1.330834 -0.246175 -1.344226 0.366737 0.487807 -0.132208 0.960556 -3.982009 1.729398 1.515696 1.198747 -0.495827 -1.531057 0.720622 -0.634498 -1.660583 1.286552 -0.045462 2.119624 -1.393107 -0.179495 1.670711 0.473849 0.578264 2.208310 0.319537 0.219038 1.859801 0.135753 3.092816 1.527259 -0.474740 1.431994 1.918391 2.279891 -0.886362 2.231518 -2.111380 -1.196247 0.591461 -0.843692 -1.921039 -0.164714 -1.412044 1.654626 2.956943 1.789132 -1.334670 1.617724 -1.002036 -0.083831 0.860300 -0.938298 2.296140 2.569184 0.444208 1.147069 4.275329 -0.909057 -0.541135 1.357887 2.219562 -0.212217 0.332391 -0.920645 -1.229252 -2.618802 -0.190142 -4.603743 -0.776128 -0.272006 4.944722 -2.211085 0.749924 1.512095 0.997920 1.951337 -1.641157 -0.674906 -1.605474 0.667103 -1.444828 4.539562 -0.195363 1.045213 -0.673289 1.094727 1.339099 1.952007 -1.255458 -0.751312 -2.892837 -4.763986 -1.010267 -0.556250 -0.446652 -0.201321 -3.591357 -1.026675 1.965811 2.901927 -3.791392 -0.538443 1.939889 0.888777 0.002918 1.200234 -2.738772 0.313461 -0.718349 -0.370647 0.105531 -0.846985 -0.852393 -1.359495 -0.284054 -0.171565 0.502567 -0.255963 -4.103036 -0.562609 -0.208897 -1.457893 0.053354 0.189279 0.013574 -1.766571 1.015823 -2.092927 1.464483 -3.729476 -0.158995 -0.871240 -3.002758 -0.050702 1.770326 2.142183 0.877780 -0.212247 -0.244584 -1.934175 -2.812511 -3.349782 1.051184 -0.866263 1.955444 -0.674708 -0.069933 -0.698729 -0.806655 -1.167602 0.837742 -1.315428 0.256392 -1.609212 5.530694 -0.683617 -0.210542 -2.229581 -0.699512 1.942124 -0.328436 -0.062073 -1.269222 -1.526878 -2.904797 -2.169804 1.582212 -0.216309 -0.048920 -1.382185 0.464631 -2.187232 1.075984 -1.301691 0.818599 -0.377487 -1.377178 -2.310531 0.192695 -0.343742 -1.177871 -0.659909 -1.183662 -0.281669 1.738371 0.607070 0.567344 0.220130 0.060955 -2.499027 -2.692999 -0.101981 0.447377 1.596175 2.413289 0.632889 -1.857940 -0.358456 -2.935702 2.775171 -1.525058 -0.011285 -0.300704 -0.306209 3.679893 -1.096551 -0.685173 -2.505965 0.951633 0.004907 -3.439460 3.308185 1.662491 -1.808564 -1.193438 -1.674608 0.236897 2.155422 2.979661 -1.547441 -1.099195 1.058328 -1.107245 -0.578245 -0.811056 1.784233 -1.350814 2.822618 -1.946584 -1.088072 0.935793 2.243666 -0.619013 1.478359 -0.405019 0.244769 0.833475 2.158313 1.093657 -0.882691 -1.976714 -4.109955 0.764218 -0.554309 0.181296 -0.170826 -0.893229 -2.260386 0.348013 0.218403 2.857210 1.198378 -0.713358 1.609960 -2.517048 -2.458485 0.201181 1.071153 0.585079 -1.580090 0.925376 -0.851413 0.131178 1.089177 0.656720 1.076306 -2.502390 -2.670693 -0.595230 2.359761 0.672949 -1.439466 2.544824 -0.002025 -0.982054 -0.081785 -0.037051 1.591743 -0.197769 -1.232604 -0.917939 -1.691207 0.480358 -1.085532 3.454049 0.401745 0.297039 1.697514 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.311925 -0.017386 0.274334 0.703252 0.807987 -1.263513 0.518620 1.012036 -0.173208 -1.775773 -1.100471 0.534105 -0.108874 -1.112144 0.346379 0.223677 0.074326 0.668617 -1.501430 1.034051 0.470762 0.631871 -0.448640 -1.008164 0.248181 -0.377171 -0.952617 0.617437 -0.080167 1.010134 -0.771970 -0.328674 0.725565 0.259711 0.328812 1.167816 0.626591 -0.167546 0.942946 0.226700 1.997957 0.642924 0.061411 1.029118 1.325716 1.063078 -0.682937 1.911418 -0.720132 -0.345517 0.862780 -0.894937 -0.939449 0.036310 -1.108319 1.074026 1.786095 0.572820 -0.779939 0.903406 -0.414622 0.059279 0.415883 -0.513537 1.126946 1.514203 0.008588 0.477078 2.563535 -0.431665 -0.447301 0.870793 1.580669 0.116838 0.531325 -0.693685 -0.482567 -1.630950 -0.111339 -1.630711 0.120591 -0.549920 2.620975 -1.101978 0.437420 1.396620 0.667770 0.859511 -0.705909 -0.484256 -0.790013 0.613214 -0.699396 2.367288 -0.336463 0.809166 -0.655137 0.278547 0.527429 1.068237 -0.398912 -0.454638 -1.762286 -2.765813 -1.024741 -0.259527 -0.544099 -0.629768 -1.938065 -0.370441 1.199314 1.211395 -1.792385 -0.273989 0.965191 0.423774 0.311784 0.680561 -1.480462 -0.146109 -0.214577 0.015160 -0.407228 -0.431213 -0.681931 -1.253718 0.004660 0.019515 0.269797 -0.648394 -1.630643 -0.170616 -0.309762 -0.324593 -0.068454 -0.278084 -0.188153 -1.588883 0.433942 -0.896703 0.618006 -1.898173 -0.426908 -0.801431 -1.598942 0.078031 1.803861 0.415046 1.056390 0.386792 -0.390564 -1.154061 -1.251672 -1.891562 0.423885 -0.987738 1.022620 -0.406459 0.114415 -0.667701 -0.190430 -0.928071 0.297347 -0.820990 0.202110 -0.885946 2.534159 -0.826985 -0.196981 -1.455001 -0.200318 1.555817 0.094489 -0.257961 -0.634695 -0.884492 -1.063622 -1.294797 0.766910 -0.101676 0.226372 -0.558581 0.357410 -1.249317 0.564347 -0.557463 0.580812 -0.280883 -0.984754 -1.136195 -0.022212 -0.228565 -0.387166 -0.360238 -0.715927 0.109365 0.462562 0.627439 0.137443 0.257761 -0.173693 -1.953949 -1.934044 -0.552267 0.590588 1.201582 1.086177 0.640089 -0.672843 -0.183825 -1.569690 1.243906 -1.625196 -0.247497 0.154741 -0.366327 1.829482 -0.604572 -0.624325 -1.667172 0.505102 -0.238434 -1.369776 1.989780 0.774833 -1.215543 -0.900523 -1.309341 0.173367 1.018330 2.079627 -0.656611 -0.246083 0.746311 -0.297356 -0.459216 -0.765729 1.055206 -0.595730 1.768933 -1.226056 -0.900799 0.316906 1.629330 -0.501845 0.518459 -0.207176 0.440894 0.076477 1.351420 0.457462 -0.324282 -1.043058 -2.242756 0.261784 -0.029697 0.099091 0.250627 -0.789770 -1.182836 0.135034 0.466641 1.628093 0.817937 0.533892 0.831656 -1.146565 -1.328384 0.458935 0.522607 0.434557 -1.147608 0.580029 -0.740135 -0.194387 0.255601 0.473719 0.521001 -1.112093 -1.563827 -0.414675 1.105633 0.575517 -0.831122 1.315790 0.260466 -0.486192 0.206691 -0.148407 1.137760 0.131531 -0.261749 -0.371433 -1.075033 0.003081 -0.413753 2.162682 0.084344 0.301911 0.797949 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.691743 0.555306 -0.352229 1.848917 0.585372 -2.584581 0.857848 1.592649 -0.639650 -3.279928 -1.462968 0.955437 -0.165917 -1.751775 0.284926 0.779747 -0.615888 1.134262 -2.895012 1.953746 1.478724 1.314246 -0.723767 -1.706956 0.633681 -0.418543 -1.731461 1.053865 -0.201201 1.847804 -1.227197 -0.290585 1.611417 0.223623 0.031258 1.991927 0.635925 0.577390 1.968604 0.739373 2.643827 1.336576 -0.688327 1.099981 1.723465 2.034956 -0.877709 2.473400 -3.009966 -1.065705 0.566738 -0.432538 -1.520822 -0.315682 -1.026630 1.628479 3.110984 1.949373 -1.196446 1.452383 -1.186423 -0.020691 1.060195 -0.241857 2.251541 2.945433 0.368073 1.381153 4.480640 -0.537990 -0.290461 1.065940 2.030792 -0.698575 1.099230 -0.678018 -1.500876 -2.329639 -0.341219 -3.595241 -0.667959 0.015272 4.553850 -2.300757 0.704167 1.413467 1.763441 2.129120 -1.733350 -0.444523 -1.290619 0.753709 -1.658261 5.171903 -0.289720 1.256388 -1.402281 1.139063 1.222211 1.518844 -1.132568 -0.659299 -2.708454 -4.173674 -1.326958 -0.591144 -0.864311 -0.127930 -4.118304 -1.186630 2.051436 2.510163 -4.030704 -0.303503 1.791587 0.898634 1.304351 1.198392 -2.750337 0.690069 -0.754267 -0.690434 -0.356355 -0.570814 -0.997423 -1.644058 -0.068316 -0.027054 0.055452 -0.323240 -4.432952 -0.003293 -0.282257 -1.712977 0.407358 0.618046 0.129655 -2.314930 0.757316 -2.225908 1.206455 -3.872856 -0.430547 -0.585906 -3.428261 0.045495 1.512324 1.778822 0.796137 -0.588235 -0.721130 -2.194279 -3.000639 -3.600614 0.575443 -1.194761 1.549195 -0.660519 -0.073730 -1.089158 -0.658802 -0.874473 1.262317 -1.226285 0.318058 -1.638471 5.879978 -0.670252 -0.191939 -2.025015 -1.202268 1.780942 0.214119 0.161793 -0.964842 -1.350827 -3.152084 -1.975292 1.454699 -0.070159 -0.060301 -1.814858 0.299347 -2.817311 1.231141 -1.046668 1.052470 -0.270324 -0.762898 -2.162928 0.220935 -0.165485 -1.156741 -1.099995 -1.130135 -0.257100 1.267733 -0.114943 0.465324 0.199214 -0.069250 -2.592100 -2.666760 0.219768 0.599318 1.684496 2.301157 0.999447 -1.303947 -0.191277 -3.137139 2.669708 -1.753524 -0.066729 0.121535 0.062157 3.852189 -1.077296 -1.162861 -2.629385 0.881762 -0.578625 -2.038380 3.475613 1.550226 -1.730087 -0.881210 -1.337445 0.387783 2.098666 2.664803 -1.645618 -1.129518 1.120832 -0.843567 -0.699377 -0.665454 1.534195 -1.738983 3.053039 -1.567138 -0.652671 0.686031 2.329450 -0.935716 1.017200 -0.920643 -0.636393 0.369241 1.690934 1.151499 -0.821854 -1.756284 -3.395435 0.430888 -2.190294 0.022722 -0.480232 -0.804754 -1.815701 0.575477 0.523152 2.930788 1.156249 -0.765671 1.369936 -3.069443 -2.494277 0.366038 1.202301 0.489688 -1.564809 0.945829 -0.629867 -0.063842 1.293089 0.813592 0.864017 -2.833768 -2.190851 -0.605362 2.376045 0.144529 -2.089678 2.341186 0.001263 -0.582438 -0.186698 -0.000256 1.494619 -0.284937 -0.920638 -0.701883 -1.571638 0.524502 -1.165914 3.848066 0.047649 0.118922 1.762568 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.195953 -0.210226 0.042255 1.649730 1.120671 -1.731242 0.399692 1.398172 -0.208851 -3.307196 -2.443053 2.240599 -0.183562 -1.209670 0.631898 0.458611 0.380528 0.417291 -3.842998 1.846055 0.745454 0.542453 -0.796947 -1.052591 0.524766 -0.998647 -0.105879 1.088053 -0.032950 1.692481 -1.472138 0.182785 1.319723 0.443230 1.456394 1.836173 -0.172974 -0.545386 0.741925 -0.182613 3.543810 1.598074 0.171102 1.826385 2.015455 1.984754 -0.554323 2.755326 0.636185 -0.836880 1.082207 -0.246805 -1.740964 0.165731 -2.184696 1.499300 1.924749 -0.043615 -1.473478 1.092423 -0.526209 -0.077543 0.586065 -0.733374 2.551519 1.371595 0.960427 0.877360 3.569237 -0.769195 -0.654166 1.625763 2.761626 0.772356 1.101772 -1.115724 -1.594644 -1.478859 -0.107477 -3.133955 -0.290622 -0.972620 3.869035 -1.778022 0.357677 1.143706 0.425670 1.809768 -1.199892 -0.640550 -1.677877 0.700849 -0.906048 3.146672 -0.278512 1.054653 -0.444345 0.566393 0.639038 1.962373 -0.698962 -1.385437 -1.817451 -4.727323 -1.023727 -0.640243 -0.160082 -0.600948 -2.990498 -0.136179 0.476881 3.057314 -2.687196 -0.622749 1.492371 0.194994 0.351207 0.450756 -1.792829 -0.523123 0.039156 0.611395 0.184778 -0.679734 -0.759105 -1.493754 0.482260 0.069894 0.952493 -0.480946 -2.168592 -0.835169 -0.007085 0.139871 -0.312336 -0.301914 0.199790 -2.003172 1.032978 -0.989651 1.299583 -2.824236 -0.464854 -1.729684 -1.687498 -0.054031 2.657196 1.664145 2.063402 0.493066 0.029251 -1.253055 -2.504412 -3.278955 0.842701 -1.326565 1.121995 -0.418087 0.203640 -0.170793 -0.530508 -1.116872 0.581732 -1.497598 -0.037356 -1.426469 2.622138 -0.733112 -0.250242 -1.841501 -0.476981 1.550236 -0.074173 0.272279 -0.884633 -3.242200 -2.177974 -2.114087 1.408548 -0.436123 0.354944 -0.941779 0.400549 -1.429207 0.543112 -1.324721 0.491225 -0.648942 -1.647567 -1.878905 -0.489502 -0.451995 -0.268665 -0.690102 -1.398879 0.099296 1.552293 1.355948 0.488008 0.694086 -0.375100 -2.753794 -2.510502 -0.323883 0.341417 2.343969 1.644503 0.254316 -1.878061 -0.536882 -2.592366 2.074931 -2.696813 -0.037201 0.029219 -1.194421 2.735600 -1.044391 -0.729080 -1.858091 0.936083 -0.049088 -3.730932 2.919826 1.839686 -1.912281 -1.182077 -1.630937 0.454169 1.638378 3.182575 -1.183217 -0.396489 0.665970 -0.428383 -0.521610 -0.857356 1.917904 -0.959137 2.076035 -2.109578 -1.665712 0.951083 1.964879 -0.272319 0.530066 -0.291691 0.774814 0.805188 2.267095 0.910340 -0.149176 -2.221941 -4.787802 0.624101 0.879764 -0.121114 0.864512 -1.219650 -2.217616 -0.207867 -0.620156 2.688079 0.270871 0.315523 1.503516 -1.916051 -2.207369 -0.244097 0.269975 0.130876 -1.080390 1.363890 -1.258984 -0.224555 0.128400 0.601686 0.188361 -1.393411 -1.826666 -0.205750 1.431002 1.430353 -0.614028 2.048240 0.761847 -1.138230 -0.146523 -0.048820 0.885773 0.026074 -1.711311 -1.078996 -1.612000 0.081181 -0.658695 2.406228 0.312100 1.120265 0.621912 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.893541 -0.258685 -0.138620 1.498505 0.517180 -0.970042 0.233537 0.498768 -0.174973 -2.488975 -1.174407 1.375866 -0.247027 -0.293654 0.103069 0.542470 0.163497 0.173006 -2.192153 1.021005 0.769627 0.469475 -0.112638 -0.379506 0.613466 -0.583326 0.264334 0.680750 0.163947 1.218616 -1.014879 0.370233 1.146569 0.165139 0.514131 1.174418 0.123307 0.173751 0.373482 -0.155080 1.891421 0.582638 -0.096702 0.953379 0.876425 1.483076 -0.020928 1.814912 0.412381 -0.869362 0.475657 -0.024736 -0.977467 -0.170628 -1.181517 1.117850 1.027186 0.700441 -0.967340 0.532438 -0.314727 0.028822 0.472033 -0.330386 1.655494 1.145739 0.774149 0.897824 2.363229 -0.650430 -0.339763 1.046577 1.530477 0.502018 0.769849 -0.828708 -1.065768 -0.910248 -0.341545 -1.916296 -0.499659 -0.318775 2.423141 -1.363541 -0.010833 0.269566 0.125905 1.500184 -0.824948 0.045498 -1.353750 0.395849 -0.250579 2.233640 0.028644 0.401719 -0.374366 0.617201 0.406581 1.207739 -0.360166 -0.750444 -1.125083 -2.573820 -0.681650 -0.600416 0.211856 0.124117 -2.477336 -0.130637 0.193970 1.857897 -2.279125 -0.390858 0.997132 0.433208 0.733875 0.513616 -0.943350 -0.057244 0.066173 0.011970 0.110199 -0.405741 -0.281417 -0.865173 0.083541 -0.085437 0.504722 -0.021202 -1.957279 -0.527674 -0.146203 -0.160775 0.133872 0.251122 0.429918 -1.010404 0.775545 -0.816096 0.878898 -2.081174 -0.567783 -0.609341 -1.307291 -0.279598 1.802012 1.260832 1.289056 -0.270683 -0.321005 -1.209259 -1.976976 -2.152253 0.368438 -0.575536 0.653875 0.346970 -0.081173 0.170108 -0.562360 -0.511918 0.618869 -0.902657 -0.178037 -0.911613 1.436711 -0.324107 0.156962 -1.356813 -0.594659 0.762649 -0.359786 0.450202 -0.522265 -2.169570 -2.019683 -1.311119 0.914936 -0.399756 0.219554 -0.838631 0.080043 -1.262860 0.454705 -1.002598 0.053660 -0.259452 -1.038569 -1.460905 0.239531 -0.364356 -0.332205 -0.235278 -0.971655 -0.019436 0.680449 0.610248 0.596598 0.297162 -0.308725 -1.699694 -1.514092 0.197089 -0.126669 1.192331 0.897615 -0.028078 -1.176032 -0.684916 -1.735076 1.559196 -1.541312 0.215778 0.218844 -0.196798 1.863341 -0.779498 -0.074746 -1.211732 0.661630 0.201745 -2.577988 1.742704 1.209003 -1.143516 -0.525602 -0.643579 0.351864 1.167366 1.601909 -1.024784 -0.659103 0.464315 -0.214885 -0.253051 -0.359577 1.057924 -0.791305 1.291652 -1.299919 -0.835746 0.506339 1.119295 -0.280424 0.327665 -0.039717 -0.082166 0.507579 1.352225 0.814348 -0.021822 -1.336344 -3.090982 0.349007 0.197854 -0.054527 0.470961 -1.073494 -1.044261 0.312969 -0.527994 1.798550 -0.152815 -0.230152 1.117269 -1.801627 -1.433468 0.037314 -0.022182 0.030059 -0.450730 0.970973 -0.615166 -0.114799 0.388031 0.303484 -0.218623 -1.107914 -0.711145 0.005359 1.335082 0.379523 -0.254696 1.394369 0.215968 -0.708566 -0.216675 0.247007 0.393958 -0.261988 -1.487814 -0.587767 -0.686569 0.228861 -0.768894 1.555868 0.020821 0.328460 0.353336 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.866299 0.675311 -0.545395 3.426331 0.489698 -1.824126 0.824479 1.698707 -0.725875 -6.280984 -3.273956 3.089611 -0.295302 0.069779 0.221963 1.119094 -0.135818 1.076268 -5.289674 1.665294 2.491229 1.611066 0.304518 -0.959986 1.246829 -0.900759 -0.526069 1.138217 0.901836 3.377495 -2.016614 0.589825 3.175599 0.059023 0.166885 2.932894 0.729962 0.993612 0.679849 -0.866349 4.006158 1.583274 -0.510415 2.338783 1.033498 3.646913 -0.388964 3.915434 -1.103721 -2.750597 0.670551 -1.002277 -2.549933 -0.628528 -1.607181 2.510012 2.987117 3.015653 -1.849556 1.608445 -0.584050 -0.070615 1.133685 -1.309577 2.883250 3.360886 1.338477 2.331507 5.086800 -2.126521 -0.695455 2.129000 2.015743 0.574409 1.355205 -2.015608 -2.219047 -1.831536 -0.569054 -5.489543 -2.219410 -0.289419 6.934503 -3.808150 0.451816 0.876958 0.437285 3.331886 -1.769398 0.374245 -2.871309 0.461988 -1.050800 5.509407 0.392049 0.412662 -0.941770 1.397834 1.588077 2.656435 -1.057048 -1.349592 -3.351588 -5.247800 -0.989744 -1.341386 0.819658 1.701491 -5.340660 -1.396268 0.786113 4.513432 -5.920808 -0.776380 2.815317 1.904194 1.633267 2.409682 -3.046126 0.568401 0.081424 -1.022790 1.108120 -1.466549 -0.504882 -1.025209 -0.470470 -0.595692 0.657728 0.400970 -5.949108 -1.824531 -0.422682 -1.572039 0.676890 0.910964 1.312511 -1.833170 2.086038 -2.309919 2.048989 -5.149459 -0.929453 -0.212609 -4.058211 -0.966496 3.694193 3.430619 2.291144 -1.300820 -1.057499 -3.176501 -4.287282 -4.538325 1.053582 -0.222819 2.263726 1.024385 -0.427389 0.743891 -1.793601 -0.530090 1.141994 -1.394557 -0.213077 -1.381258 5.466919 -0.775022 0.163214 -3.350917 -1.239981 0.823220 -1.136360 1.399332 -1.271748 -3.829316 -5.193766 -2.952034 2.675802 -0.947030 0.281823 -2.185106 0.016279 -2.967365 0.666985 -2.557743 0.444853 0.090594 -2.460168 -3.875217 1.123901 -0.688853 -1.833743 0.206920 -2.182883 -0.625830 2.445839 1.065082 1.398212 0.277368 -0.156957 -3.702170 -3.044909 0.490574 -1.281248 2.438305 2.880916 -0.046252 -3.075584 -1.392304 -4.007735 3.874181 -2.408740 0.666146 -0.805177 0.782924 4.615533 -1.829068 0.059432 -3.544452 1.462265 1.237123 -6.550017 3.814242 2.558709 -1.683820 -0.737752 -0.758704 0.299613 3.096699 2.962865 -2.730905 -2.661021 1.308824 -1.597532 -0.278472 -0.972122 2.206966 -2.234356 2.536644 -2.423850 -1.028550 1.234548 2.178354 -0.609792 1.590300 0.910919 -0.336974 1.861617 2.853298 2.243319 -1.187544 -2.774185 -6.893059 1.832529 0.044475 -0.271618 0.009203 -2.065756 -2.272966 1.549569 -1.027716 3.746455 0.212384 -1.053882 2.792533 -4.467994 -3.379172 0.014142 0.353224 0.627520 -0.939944 1.352813 -0.760395 0.598587 1.789190 -0.111742 0.285277 -3.261148 -2.064609 -0.157339 3.935775 0.307413 -0.174025 3.627882 0.096577 -1.771734 -0.106271 0.338279 1.237439 -1.285922 -3.404454 -1.010845 -0.967656 0.755712 -2.005399 3.222722 -0.129585 -0.786484 1.589708 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 1.437752 0.756441 0.070545 0.988505 0.369038 -1.637383 0.850607 1.673398 -0.587770 -2.655553 -1.686357 0.860502 0.095952 -1.102985 0.348653 0.220161 -0.387096 1.323332 -2.494572 1.100738 1.144508 1.136717 -0.288499 -1.531745 0.227541 -0.272939 -1.830024 0.722764 0.140774 1.818473 -0.869874 -0.503675 1.296353 0.166223 -0.112495 1.737840 0.891737 0.157699 1.196830 0.128393 2.294551 1.135682 -0.289646 1.178931 1.159448 1.629905 -0.949194 1.856819 -2.038594 -0.927690 0.671181 -1.057951 -1.484433 -0.210975 -0.779853 1.306753 2.626277 1.732823 -0.743752 1.446474 -0.788721 -0.106376 0.654985 -0.933430 1.151727 2.328032 -0.130369 0.852192 3.243970 -0.949796 -0.476739 0.887475 1.227229 -0.464227 0.558121 -0.726472 -0.761191 -2.490789 -0.118129 -3.339899 -0.611923 -0.154882 4.244973 -1.946734 0.876361 1.965025 1.167375 1.216127 -1.108552 -0.511359 -0.943378 0.431833 -1.255856 3.628966 -0.047103 0.744606 -0.822179 0.584833 1.176970 1.355564 -0.663994 -0.455700 -2.658392 -3.432772 -1.037354 -0.378745 -0.605187 -0.015925 -2.454966 -1.088322 2.358455 1.919660 -2.964982 -0.202835 1.702672 1.036082 0.286098 1.172921 -2.437178 0.568744 -0.517048 -0.595792 0.165648 -0.978130 -0.817191 -0.670818 -0.375334 -0.207669 0.080729 -0.487519 -3.162640 -0.575093 -0.335958 -1.174270 0.136767 -0.145012 -0.087818 -1.692151 0.728184 -1.608924 1.035520 -2.751870 -0.081143 -0.332333 -2.490875 -0.082529 1.714784 1.079646 0.717192 -0.165161 -0.643974 -1.552848 -1.663149 -2.372559 0.890683 -0.517043 1.689115 -0.552038 -0.045205 -0.680655 -0.485338 -0.731508 0.344005 -0.849218 0.388041 -0.576080 4.777658 -0.916856 -0.344513 -2.060039 -0.342391 1.481117 0.158143 -0.149947 -0.952464 -0.547061 -1.856315 -1.621542 1.400446 -0.108965 -0.015637 -0.939025 0.233347 -1.513903 0.660914 -0.918109 0.946423 0.021144 -1.235372 -1.864972 0.302787 -0.183609 -1.292274 -0.167696 -0.969328 -0.249599 1.006475 0.346039 0.202620 -0.055630 0.304169 -2.318721 -2.233151 -0.524582 0.199126 1.205863 1.988455 0.910502 -1.332311 -0.088114 -2.109909 1.813978 -1.419755 -0.130221 -0.636702 -0.094062 2.788706 -0.902879 -0.752049 -2.478069 0.685371 0.143448 -2.027202 2.812205 1.068828 -1.018117 -0.788837 -1.079628 -0.114973 1.726068 2.333853 -1.243931 -1.077647 1.036245 -1.062103 -0.426626 -0.768092 1.318858 -1.190060 2.082262 -1.210787 -0.607420 0.470216 1.978548 -0.482358 1.326820 0.078500 0.312593 0.353869 1.530752 0.889343 -1.036235 -1.270319 -2.662284 1.025881 -0.679206 0.097385 -0.283447 -0.737401 -1.533219 0.667798 0.825831 1.931342 1.232883 -0.132851 1.200662 -1.878345 -1.880016 0.394352 0.978979 0.847516 -1.432834 0.480582 -0.642562 0.330160 0.923226 0.197111 1.060915 -1.726229 -2.157646 -0.556671 1.876564 0.626183 -1.069396 2.094081 0.032782 -0.874732 0.336252 -0.424684 1.429532 -0.325897 -0.250826 -0.253286 -1.043151 0.399150 -0.711905 2.690358 0.101830 -0.502561 1.533140 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.555517 0.497926 0.172026 1.409980 0.785162 -1.811934 0.941032 1.610160 -0.435262 -3.242818 -1.928089 0.973162 -0.214584 -1.142696 0.277207 0.359828 -0.121255 1.148432 -2.408098 1.260089 1.254080 1.251065 -0.328580 -1.306481 0.586998 -0.329925 -1.948937 0.903783 0.151167 1.907138 -1.057183 -0.393164 1.527730 0.257007 -0.192271 1.972235 1.031755 0.440428 1.691837 0.032464 2.553367 0.877424 -0.193520 1.595110 1.506582 1.920764 -1.147104 2.944242 -1.983217 -1.077965 1.031155 -1.602745 -1.595341 -0.217843 -1.082793 1.807156 2.948547 1.821800 -1.055520 1.492487 -0.616523 0.037923 0.730266 -1.143757 1.458133 3.035316 -0.096042 1.037956 3.974688 -0.948600 -0.627585 1.308266 1.885844 0.004528 0.295194 -1.119984 -0.712353 -2.079333 -0.331273 -3.232191 -0.508224 -0.551396 4.809864 -2.111641 0.613431 1.693531 0.915812 1.520211 -1.180370 -0.379755 -1.297074 0.728987 -1.132445 3.923148 -0.205291 0.966931 -1.046358 0.648254 1.103886 1.650843 -1.011752 -0.326287 -3.158632 -3.922792 -1.248043 -0.443773 -0.466485 -0.102142 -3.347536 -1.071537 1.788669 1.963404 -3.476506 -0.540118 1.798104 1.094799 0.420012 2.046268 -2.690438 0.241188 -0.362815 -0.714183 -0.303531 -0.730752 -0.877510 -1.561408 -0.633160 -0.330939 0.144497 -0.482665 -3.706612 -0.463546 -0.646922 -1.206183 0.287772 0.029924 -0.032857 -1.821177 0.864987 -1.709356 1.003081 -3.476610 -0.785566 -0.455892 -3.112869 -0.133398 2.460498 1.313403 1.446132 -0.185179 -0.641857 -2.376177 -2.264312 -2.779012 0.782614 -0.952106 2.032386 -0.305767 -0.042487 -0.764921 -0.691387 -1.132019 0.569230 -0.994487 0.367694 -1.239979 5.125726 -1.128295 -0.057936 -2.524264 -0.578415 1.881268 -0.452933 -0.279540 -1.023050 -1.006265 -2.334525 -1.871952 1.350341 -0.190359 0.205288 -1.112266 0.456213 -2.139972 0.713843 -1.031458 0.649991 -0.072288 -1.556553 -2.130845 0.558622 -0.281408 -1.165551 -0.196186 -1.076724 -0.193369 1.275636 0.934177 0.533569 0.245291 -0.119593 -2.649690 -2.706800 -0.507055 0.321296 1.401961 2.210461 0.766058 -1.221356 -0.426483 -2.671317 2.350350 -1.868491 -0.149489 -0.150649 0.391996 3.192091 -1.049699 -0.592536 -2.892817 0.765090 0.113663 -3.058189 2.676181 1.067042 -1.480365 -1.088951 -1.594312 0.063888 1.925719 2.658056 -1.356589 -1.138468 1.265653 -0.990477 -0.535429 -1.075796 1.469054 -1.177455 2.692422 -1.632874 -0.822893 0.567301 2.192747 -0.810847 1.290198 -0.013178 0.313597 0.736571 1.873470 1.039199 -1.096854 -1.521928 -3.645178 0.717027 -0.325995 0.082043 -0.086269 -1.267150 -1.679168 0.788864 0.466500 2.415014 1.010479 0.141044 1.470094 -2.218075 -2.077282 0.885565 0.986001 0.878037 -1.566536 0.714642 -0.703764 0.124235 1.123739 0.421605 1.019705 -2.375325 -2.555230 -0.639509 2.432154 0.159055 -1.004040 2.276032 -0.114248 -0.836416 0.308308 -0.150810 1.803518 -0.383590 -0.990106 -0.424918 -1.334689 0.262303 -1.029832 3.393735 0.144534 -0.276723 1.637661 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = 4.028234 0.979408 -1.456901 5.297164 0.352576 -2.638396 1.119608 3.232599 -2.054458 -10.545650 -6.066854 4.363102 0.612597 0.533505 1.358046 1.943597 -0.852071 1.134655 -10.580072 2.713968 4.145303 1.965081 -0.027184 -1.267621 1.218064 -2.260142 -0.691418 1.904330 1.228437 6.033935 -3.180150 1.483977 5.275279 -0.523607 1.000796 4.734464 0.888465 0.600190 -0.233257 -0.293607 7.690052 3.510066 -0.898347 2.974277 1.187541 6.076409 -0.778549 6.795979 -2.743366 -4.711382 2.309234 -1.638403 -4.380368 -0.711285 -2.760007 3.053834 5.538632 4.654549 -2.717081 2.775702 -2.036348 -0.570000 1.674954 -0.914239 5.491785 4.440619 3.538620 3.541488 7.482906 -3.773498 -1.080446 3.519987 1.577519 -0.040841 2.798450 -3.142153 -3.971845 -4.027455 0.453972 -9.539311 -4.790821 -0.336584 10.983294 -6.257098 0.462173 2.417961 1.462947 5.595055 -3.406314 0.850088 -4.471569 -0.007261 -2.085564 9.499729 0.384473 0.739708 -1.057001 2.024756 3.154660 4.490947 -1.084393 -3.176480 -5.675762 -8.392752 -2.187755 -2.027491 1.237071 3.430702 -8.092840 -2.509163 1.746422 6.949080 -9.040031 -0.221076 4.741266 3.977997 4.787412 4.551073 -6.115436 0.771644 0.745512 -0.925868 3.747764 -2.603193 -0.030950 -1.973076 1.328856 -0.301600 0.834453 0.190356 -10.080136 -3.358198 0.310770 -3.282413 0.827261 1.035198 2.677504 -3.587152 3.770346 -3.714739 3.835687 -8.561386 -0.608665 -1.063191 -6.712497 -1.315582 6.160646 6.637311 3.087322 -1.398116 -3.094888 -3.126201 -6.984560 -8.376456 0.736359 0.370453 3.232562 1.003941 -0.820359 2.034747 -2.726900 0.156813 1.764441 -1.965056 -0.560435 -1.436257 8.365637 -0.529024 -0.689351 -4.664904 -1.640998 -0.189842 -0.624723 4.250888 -1.728973 -7.231494 -8.868009 -5.054662 5.114784 -1.454856 0.089291 -3.733668 -0.536924 -5.834964 0.829921 -4.463104 1.094212 0.194589 -4.412727 -6.294399 1.261640 -0.755849 -3.687602 0.124652 -3.990526 -1.681296 4.645611 1.546791 2.519496 -0.133889 -0.066556 -6.201958 -5.303201 0.777692 -2.949345 5.698334 4.516492 -0.219907 -4.552391 -1.608837 -6.754618 5.874087 -3.689752 0.997517 -2.290763 -0.175093 7.171280 -3.277417 -1.398396 -5.356414 2.318464 1.870455 -9.168208 8.376822 4.839534 -2.253216 -1.032391 -0.486397 0.301960 4.985577 4.741401 -4.127407 -4.143758 1.322445 -1.873128 -0.287078 -1.142505 3.990390 -4.365469 2.500568 -3.690432 -2.199084 2.289131 4.140826 -0.360110 2.447701 1.687832 -0.190090 2.577599 4.581674 3.387966 -2.579833 -3.514645 -11.068757 4.074003 -1.087985 -1.844816 -0.800972 -3.176199 -4.043212 1.997021 -1.530426 6.084555 1.498846 -1.815407 4.611605 -7.155265 -5.895126 -2.391582 0.625456 0.324211 -1.331381 1.097187 -1.507109 1.897860 2.899090 -0.883491 0.710872 -5.254775 -3.266093 -0.564441 5.315669 1.130000 -0.001808 6.327190 1.265183 -2.433427 -0.825491 0.513870 1.338401 -1.055790 -4.359215 -1.860564 -1.451935 1.263450 -2.474957 3.323466 -0.466258 -1.636067 3.023262 -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.548145 -0.262636 0.062573 0.539799 0.347831 -0.671843 0.250804 0.331844 -0.014556 -0.887994 -0.287448 0.296800 -0.027092 -0.536035 0.097685 0.149126 0.005630 0.334521 -0.735052 0.565158 0.182889 0.276416 -0.263232 -0.523053 0.080180 -0.264701 -0.054897 0.426725 -0.056841 0.546780 -0.415400 -0.123576 0.409706 0.104275 0.265900 0.636971 0.492966 -0.029053 0.192678 0.263212 1.033726 0.358990 -0.101323 0.382341 0.611773 0.622667 0.053376 0.773776 -0.162355 -0.184568 0.261779 -0.159251 -0.395869 -0.178654 -0.670479 0.463690 0.780191 0.368995 -0.480082 0.452929 -0.265694 0.011394 0.278420 0.059343 0.711003 0.498398 0.155998 0.331372 1.302522 -0.294135 -0.196447 0.407198 0.856949 0.014873 0.606437 -0.263417 -0.538898 -1.033738 -0.093023 -0.681943 -0.004014 -0.081825 0.893544 -0.599803 0.193180 0.684429 0.311246 0.519481 -0.455425 -0.254837 -0.526523 0.234815 -0.216069 1.373407 -0.046000 0.346481 -0.264545 0.291067 0.287413 0.530706 0.029761 -0.459637 -0.560131 -1.446139 -0.544582 -0.280008 -0.341914 -0.330597 -0.984418 -0.207231 0.616739 0.708595 -0.978555 -0.027555 0.484808 0.165033 0.480934 -0.322674 -0.393115 0.147190 -0.095219 0.007708 -0.060062 -0.337090 -0.304180 -0.383573 0.241299 0.100039 0.136224 -0.259846 -0.676056 -0.042375 -0.031111 0.022143 -0.036882 -0.101523 -0.094283 -0.919597 0.217282 -0.563415 0.460077 -0.859980 -0.092850 -0.350307 -0.687290 -0.005569 0.924675 0.041408 0.525523 0.027853 -0.374835 -0.389986 -0.697154 -1.363816 0.281439 -0.378615 0.261654 -0.112460 -0.005962 -0.289395 -0.139328 -0.382656 0.347765 -0.469628 0.012462 -0.279640 0.721865 -0.279529 -0.121494 -0.602501 -0.114276 0.767791 0.393041 0.089067 -0.361553 -0.792703 -0.604465 -0.631859 0.437738 -0.079670 0.026259 -0.277630 -0.061577 -0.766076 0.423689 -0.349681 0.403494 -0.222524 -0.404861 -0.638918 -0.025773 -0.184663 -0.004932 -0.180676 -0.450878 0.080578 -0.126218 0.020784 0.030252 0.085632 0.035879 -0.978404 -0.919844 -0.100507 0.284512 0.740514 0.242888 0.380861 -0.288255 -0.108443 -0.749329 0.593016 -0.898777 -0.041430 0.213389 -0.389618 0.955704 -0.305850 -0.378756 -0.674891 0.360327 -0.070061 -0.183751 1.205696 0.637916 -0.652578 -0.397382 -0.346824 0.093517 0.523687 1.066569 -0.501544 -0.218136 0.382472 -0.030392 -0.219512 -0.279474 0.475299 -0.315642 0.812741 -0.659932 -0.482932 0.096885 0.835395 -0.204679 0.128753 -0.175188 -0.028030 -0.328734 0.739425 0.232468 0.152950 -0.610297 -0.988800 0.192106 -0.326754 0.062107 0.191745 -0.449019 -0.460379 0.135128 0.234575 0.855432 0.473172 -0.001700 0.483895 -0.809025 -0.754868 0.055868 0.055520 0.164452 -0.519643 0.480554 -0.442608 -0.062146 -0.023253 0.265628 0.000831 -0.332508 -0.365025 -0.085285 0.388945 0.303048 -0.514245 0.720327 0.082369 -0.261338 0.003200 -0.038548 0.328508 0.151727 -0.153250 -0.225899 -0.497981 0.184746 -0.235825 1.014091 -0.104687 0.208019 0.347263 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = 2.149472 0.039396 -0.296377 2.791728 0.574258 -1.683031 0.701909 1.770111 -0.576681 -5.337482 -3.119676 2.391306 -0.129323 -0.273249 0.846599 0.594065 -0.241219 0.780108 -5.578074 1.666623 1.921922 1.209050 -0.069712 -1.017765 0.731808 -1.066316 -0.435994 1.385233 0.594233 2.845572 -1.844820 0.060135 2.607021 -0.040346 0.620215 2.552672 0.810432 0.444704 0.112754 -0.113667 4.361684 1.891707 -0.689676 2.045994 1.331441 3.121574 -0.404477 3.762626 -0.571129 -2.248070 1.140382 -1.113510 -2.168543 -0.517696 -1.665790 1.820797 3.461012 2.217211 -1.934949 1.547619 -0.679849 -0.261507 0.873836 -0.663637 2.726459 2.390700 1.581106 1.672907 4.253030 -1.888660 -0.803922 1.861147 1.857561 0.365396 1.447507 -1.878048 -2.269858 -2.967899 0.201636 -4.713757 -2.235396 -0.343939 5.018124 -3.222530 0.593508 1.598710 0.381055 2.679951 -1.624218 0.056045 -2.390566 0.269182 -0.959125 5.269430 0.102579 0.267037 -0.448918 1.163129 1.712397 2.645134 -0.509075 -1.672199 -3.021652 -5.543694 -1.189122 -1.036410 0.477093 1.147963 -4.194820 -1.375214 1.264602 3.575235 -4.548873 -0.388295 2.597207 1.759633 1.537518 1.118343 -2.863689 0.284929 0.189332 -0.548676 1.695333 -1.394197 -0.468952 -1.179797 0.774709 0.019611 0.515526 -0.071738 -4.235920 -1.718865 0.060529 -0.869549 0.137042 0.136919 0.887842 -2.194313 1.948074 -1.907681 1.994573 -4.390658 -0.019174 -0.705209 -2.984167 -0.512895 3.346971 2.713974 1.699776 -0.419383 -1.478851 -1.915101 -3.339466 -4.843061 0.778388 -0.094823 1.895431 0.189624 -0.353125 0.731529 -1.172713 -0.488100 0.681461 -1.157105 -0.134649 -1.112431 4.074515 -0.621248 -0.392866 -2.428761 -0.611089 0.860305 -0.480463 1.610429 -1.095320 -3.706329 -3.932260 -2.873288 2.559928 -0.664243 0.141118 -1.721853 -0.029002 -3.251104 0.928822 -2.266329 0.830775 -0.238284 -2.380007 -3.189122 0.255234 -0.601551 -1.013923 -0.064948 -2.159915 -0.690615 1.765313 1.046744 1.157849 0.305747 0.124157 -3.878388 -3.023120 -0.100266 -1.001803 3.204413 2.079701 0.192209 -2.397423 -0.798321 -3.443169 3.190669 -2.486045 0.268917 -1.017521 -0.468610 4.102641 -1.280036 -0.912862 -2.937971 1.317337 1.055404 -4.177057 4.505212 2.707153 -1.426063 -0.877256 -0.602824 0.016620 2.732579 3.141048 -2.454472 -1.976858 0.917860 -1.190829 -0.253743 -0.952935 2.345595 -1.884804 1.994800 -2.211268 -1.375920 0.990447 2.260991 -0.248302 1.374641 0.785931 0.259344 0.914490 2.803606 1.400325 -0.994307 -2.153662 -6.057097 2.046333 0.228434 -0.566654 0.165522 -1.876871 -2.410431 0.776173 -0.160510 3.431815 1.347311 -0.418000 2.435804 -3.515102 -3.096717 -0.837692 0.138397 0.230859 -1.068767 1.119159 -0.780583 0.589374 1.187991 -0.379123 0.489663 -2.329411 -2.249243 -0.481640 2.481057 0.889182 -0.417314 3.170165 0.464111 -1.787703 -0.177277 0.048955 1.000977 -0.350818 -1.855563 -1.075641 -1.237778 0.485191 -1.243007 2.230785 -0.286086 -0.409724 1.377530 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 1.437752 0.756441 0.070545 0.988505 0.369038 -1.637383 0.850607 1.673398 -0.587770 -2.655553 -1.686357 0.860502 0.095952 -1.102985 0.348653 0.220161 -0.387096 1.323332 -2.494572 1.100738 1.144508 1.136717 -0.288499 -1.531745 0.227541 -0.272939 -1.830024 0.722764 0.140774 1.818473 -0.869874 -0.503675 1.296353 0.166223 -0.112495 1.737840 0.891737 0.157699 1.196830 0.128393 2.294551 1.135682 -0.289646 1.178931 1.159448 1.629905 -0.949194 1.856819 -2.038594 -0.927690 0.671181 -1.057951 -1.484433 -0.210975 -0.779853 1.306753 2.626277 1.732823 -0.743752 1.446474 -0.788721 -0.106376 0.654985 -0.933430 1.151727 2.328032 -0.130369 0.852192 3.243970 -0.949796 -0.476739 0.887475 1.227229 -0.464227 0.558121 -0.726472 -0.761191 -2.490789 -0.118129 -3.339899 -0.611923 -0.154882 4.244973 -1.946734 0.876361 1.965025 1.167375 1.216127 -1.108552 -0.511359 -0.943378 0.431833 -1.255856 3.628966 -0.047103 0.744606 -0.822179 0.584833 1.176970 1.355564 -0.663994 -0.455700 -2.658392 -3.432772 -1.037354 -0.378745 -0.605187 -0.015925 -2.454966 -1.088322 2.358455 1.919660 -2.964982 -0.202835 1.702672 1.036082 0.286098 1.172921 -2.437178 0.568744 -0.517048 -0.595792 0.165648 -0.978130 -0.817191 -0.670818 -0.375334 -0.207669 0.080729 -0.487519 -3.162640 -0.575093 -0.335958 -1.174270 0.136767 -0.145012 -0.087818 -1.692151 0.728184 -1.608924 1.035520 -2.751870 -0.081143 -0.332333 -2.490875 -0.082529 1.714784 1.079646 0.717192 -0.165161 -0.643974 -1.552848 -1.663149 -2.372559 0.890683 -0.517043 1.689115 -0.552038 -0.045205 -0.680655 -0.485338 -0.731508 0.344005 -0.849218 0.388041 -0.576080 4.777658 -0.916856 -0.344513 -2.060039 -0.342391 1.481117 0.158143 -0.149947 -0.952464 -0.547061 -1.856315 -1.621542 1.400446 -0.108965 -0.015637 -0.939025 0.233347 -1.513903 0.660914 -0.918109 0.946423 0.021144 -1.235372 -1.864972 0.302787 -0.183609 -1.292274 -0.167696 -0.969328 -0.249599 1.006475 0.346039 0.202620 -0.055630 0.304169 -2.318721 -2.233151 -0.524582 0.199126 1.205863 1.988455 0.910502 -1.332311 -0.088114 -2.109909 1.813978 -1.419755 -0.130221 -0.636702 -0.094062 2.788706 -0.902879 -0.752049 -2.478069 0.685371 0.143448 -2.027202 2.812205 1.068828 -1.018117 -0.788837 -1.079628 -0.114973 1.726068 2.333853 -1.243931 -1.077647 1.036245 -1.062103 -0.426626 -0.768092 1.318858 -1.190060 2.082262 -1.210787 -0.607420 0.470216 1.978548 -0.482358 1.326820 0.078500 0.312593 0.353869 1.530752 0.889343 -1.036235 -1.270319 -2.662284 1.025881 -0.679206 0.097385 -0.283447 -0.737401 -1.533219 0.667798 0.825831 1.931342 1.232883 -0.132851 1.200662 -1.878345 -1.880016 0.394352 0.978979 0.847516 -1.432834 0.480582 -0.642562 0.330160 0.923226 0.197111 1.060915 -1.726229 -2.157646 -0.556671 1.876564 0.626183 -1.069396 2.094081 0.032782 -0.874732 0.336252 -0.424684 1.429532 -0.325897 -0.250826 -0.253286 -1.043151 0.399150 -0.711905 2.690358 0.101830 -0.502561 1.533140 -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) = 3.895781 0.449500 -0.334211 2.857819 1.791368 -2.513782 0.407637 2.623376 -0.719080 -5.961899 -5.998295 4.065397 -0.285127 -1.683124 1.742625 0.666190 0.980938 0.111299 -7.671854 2.967029 1.446632 0.225734 -1.840573 -0.859971 0.864730 -2.010475 -1.088397 1.857132 -0.206870 2.919596 -2.347163 1.094227 2.245947 0.944670 3.157804 3.042482 -2.058939 -1.190252 1.853051 -0.747970 6.208756 3.260445 0.434365 3.259018 3.483317 3.485631 -1.997234 4.641391 0.410577 -1.583829 2.236633 -0.778623 -3.139508 1.083785 -3.767178 2.263981 3.239247 -1.260666 -2.478075 1.833322 -1.230784 -0.148471 0.748545 -2.080229 4.940966 2.129479 2.187983 1.378128 5.279661 -1.089386 -0.966459 2.892735 4.386369 1.401519 0.220697 -1.317193 -2.364810 -0.865772 0.168911 -6.358712 -0.824511 -2.065882 7.448031 -2.768646 0.036736 1.048228 0.172352 3.195304 -2.172501 -1.029500 -2.826741 0.925747 -1.979587 4.049606 -0.256337 1.826028 -0.382597 0.864383 0.997390 3.460424 -2.576104 -2.283009 -3.631413 -8.696348 -1.301666 -0.703480 0.474712 -0.682952 -4.893523 -0.237105 -0.208286 5.997582 -4.093962 -1.339130 2.410890 0.044182 -1.010456 2.184938 -4.200750 -1.609197 0.319958 1.577716 1.124761 -0.466378 -0.788453 -3.370178 0.818260 -0.171703 2.037978 -0.281198 -3.803531 -1.747484 0.379291 -0.211375 -0.788990 -0.283845 0.730518 -2.173376 2.108774 -1.187009 2.259585 -5.235814 -0.446171 -3.679692 -3.165316 0.061345 3.874014 4.986963 3.659950 1.266123 1.078503 -1.770844 -4.863682 -5.366008 1.407477 -2.057068 2.470041 -1.352131 0.431839 0.288306 -1.178590 -1.499578 0.999844 -2.531518 -0.100887 -2.903866 5.696003 -0.668261 -0.717971 -2.847754 -0.928826 1.791654 -1.514951 0.606939 -1.376896 -5.328805 -3.995349 -3.483978 2.427639 -0.814822 0.738518 -1.601095 1.203514 -2.377315 0.329328 -2.377944 0.108303 -1.118991 -2.878965 -3.079776 -1.470767 -0.427191 -0.899257 -1.375636 -2.261364 -0.079254 5.321567 3.080289 1.302348 1.725678 -0.900928 -3.350330 -3.730644 -0.395160 -0.071761 4.023518 4.257512 -0.511658 -3.671759 -0.832003 -4.899139 4.055659 -3.706431 0.052623 -0.554394 -2.123978 4.365718 -1.943504 -1.541786 -2.570295 1.341662 -0.065838 -9.081347 3.756932 3.069662 -3.178397 -1.981925 -3.502766 1.013401 2.637784 5.319184 -1.522543 -0.034616 0.497994 -1.057169 -0.657979 -1.394539 3.534066 -1.511520 2.830058 -3.581057 -2.743857 2.608674 2.653094 -0.055090 1.309306 -0.542903 2.322952 3.367052 3.633686 1.576071 -1.342424 -3.835017 -9.285638 1.095264 2.565679 -0.814588 1.341627 -1.528781 -4.424700 -1.312656 -2.721568 4.451761 -0.145557 0.218695 2.659390 -2.324460 -3.613887 -1.295365 0.902506 -0.194197 -1.687603 2.135743 -1.836880 -0.053926 0.571841 1.000342 1.020978 -3.283503 -4.410376 -0.442546 2.553562 2.311934 -0.297395 3.339271 1.444498 -2.054627 -0.744726 0.013126 1.283499 0.144472 -4.390040 -2.618237 -3.001891 -0.117014 -1.140975 3.218579 1.081165 2.484639 1.393735 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.638350 -0.537926 0.084962 2.232957 1.251087 -2.154306 0.452376 1.786988 -0.252198 -4.185584 -3.092513 2.587475 -0.224336 -1.351590 0.877742 0.489772 0.379055 0.216079 -5.755452 2.373770 1.075349 0.573367 -0.862234 -1.280290 0.701707 -1.433371 0.284469 1.657205 -0.134792 2.164124 -1.876643 0.358060 1.692723 0.650918 2.161738 2.340391 -0.538098 -0.681750 0.735879 -0.017011 4.444581 2.438919 -0.271570 1.949462 2.470148 2.614916 -0.201521 2.780396 0.791241 -1.131639 0.984422 -0.054683 -2.241795 0.015236 -2.737014 1.605135 2.491253 0.048366 -1.895228 1.346687 -0.880823 -0.227338 0.755400 -0.623024 3.514051 1.125332 1.678718 1.060397 4.254354 -1.031225 -0.760420 1.962125 3.403845 0.797252 1.332169 -1.297613 -2.430682 -2.378786 0.060630 -4.424689 -0.792919 -0.947991 3.946961 -2.149310 0.456846 1.209700 0.299951 2.390677 -1.731350 -0.855311 -2.207483 0.693289 -1.009722 4.165378 -0.254720 1.148219 -0.071202 1.049519 1.020207 2.552929 -0.674614 -1.973646 -1.886863 -6.152874 -0.913368 -0.876147 -0.030847 -0.615013 -3.562525 -0.164232 0.480393 3.897157 -3.267049 -0.661661 1.909600 0.249779 0.383168 -0.520604 -1.832323 -0.457272 -0.021730 0.869906 0.762961 -1.110387 -0.763316 -1.544350 1.066052 0.295364 1.249202 -0.370741 -2.454913 -1.078722 0.351987 0.266702 -0.456044 -0.242383 0.298357 -2.309399 1.342184 -1.483087 1.947200 -3.442091 -0.005904 -2.157419 -1.710970 -0.046698 2.846429 2.304308 2.001001 0.492315 0.063406 -1.020276 -3.185636 -4.589647 1.136597 -1.185616 1.243766 -0.673257 0.140433 0.032530 -0.732319 -1.193665 0.788590 -1.862945 -0.137216 -1.682398 2.704241 -0.442323 -0.375244 -1.792703 -0.556329 1.807680 0.015332 0.718374 -1.134970 -4.317592 -2.871489 -2.663087 1.846216 -0.551987 0.146748 -1.270461 0.361255 -2.030657 0.954797 -1.765380 0.718099 -0.886131 -1.978741 -2.360182 -0.827938 -0.609474 0.088284 -0.903614 -1.771794 -0.067561 1.881223 1.512909 0.677803 0.841534 -0.199764 -3.126448 -2.910888 -0.126835 0.318191 3.207958 1.581847 0.086129 -2.347261 -0.588199 -3.101872 2.776200 -2.823702 0.065713 -0.211769 -1.887381 3.485375 -1.137290 -1.044177 -1.965719 1.236372 0.065502 -3.951827 3.902591 2.650770 -2.316349 -1.427191 -1.710483 0.516299 2.094366 3.893818 -1.625724 -0.651722 0.587058 -0.518491 -0.589164 -0.867763 2.405033 -1.232997 2.302766 -2.629936 -2.141492 1.217168 2.273948 -0.123408 0.819156 -0.453979 0.878994 0.747423 2.847228 1.045240 -0.017129 -2.900850 -5.858376 0.918334 1.072145 -0.157587 0.882472 -1.429522 -2.919900 -0.446902 -0.691919 3.379935 1.025956 -0.229419 1.933826 -2.447378 -2.796912 -0.921227 0.210007 -0.089372 -1.166803 1.672814 -1.522720 -0.062854 0.143944 0.673512 0.197842 -1.666907 -2.054857 -0.201420 1.509237 1.816058 -0.884863 2.595074 0.927221 -1.474998 -0.523094 0.057319 0.607458 0.230179 -1.977911 -1.574290 -2.030324 0.293782 -0.759940 2.593005 0.449998 1.569739 0.702475 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -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.765731 0.072084 0.262005 0.385461 0.515479 -0.635688 0.377557 0.607033 -0.190401 -1.124505 -0.873204 0.313459 -0.121215 -0.640092 0.286038 0.020591 0.186111 0.396855 -0.773417 0.480225 0.239413 0.281208 -0.331503 -0.428370 0.083876 -0.265015 -0.820768 0.481833 -0.056029 0.632083 -0.380973 -0.196694 0.452301 0.196460 0.145995 0.770322 0.391852 -0.100386 0.652207 0.048263 1.278885 0.216010 0.187807 0.733977 0.838251 0.684749 -0.631051 1.365009 -0.325228 -0.216067 0.805635 -0.837452 -0.556309 0.071378 -0.734727 0.593866 1.067068 0.269232 -0.491969 0.645468 -0.307832 0.066408 0.191148 -0.507926 0.642508 1.067356 -0.074467 0.256233 1.472684 -0.350318 -0.355612 0.635290 0.905445 0.201529 -0.090835 -0.404926 -0.046052 -0.950564 -0.060415 -0.948316 0.054096 -0.447392 1.881744 -0.587998 0.120657 0.869336 0.222033 0.409795 -0.371492 -0.264708 -0.526231 0.359759 -0.343649 1.109248 -0.166594 0.441678 -0.336699 0.011561 0.305706 0.736535 -0.470390 -0.210900 -1.359225 -1.781701 -0.707467 -0.091891 -0.258060 -0.441644 -1.118727 -0.280483 0.793114 0.658813 -0.995353 -0.287245 0.607971 0.293320 -0.153392 0.903099 -1.150610 -0.272236 0.012501 0.067673 -0.107255 -0.134132 -0.336794 -0.987706 -0.092847 -0.096613 0.191055 -0.409779 -0.980739 -0.212352 -0.206862 -0.232872 -0.069871 -0.291697 -0.184834 -0.709504 0.308110 -0.434202 0.395663 -1.238716 -0.302301 -0.572252 -1.032988 0.049249 1.361339 0.495154 0.851185 0.379871 -0.227395 -0.729468 -0.708846 -1.044326 0.244744 -0.621562 0.825949 -0.311376 0.066561 -0.363473 -0.125440 -0.590004 0.081605 -0.441730 0.150716 -0.555759 1.549531 -0.516235 -0.174899 -1.044187 0.017362 0.926699 -0.199843 -0.243861 -0.419447 -0.482512 -0.521197 -0.801511 0.462457 -0.072463 0.155146 -0.196536 0.243660 -0.713985 0.251995 -0.326328 0.202633 -0.150277 -0.776443 -0.716908 0.066183 -0.139791 -0.370333 -0.105343 -0.414629 0.031338 0.517917 0.580519 0.183444 0.260670 -0.197534 -1.090704 -1.196261 -0.504178 0.313626 0.659927 0.954044 0.384077 -0.454391 -0.145880 -0.998133 0.780330 -0.984080 -0.175275 0.108643 -0.224562 1.057250 -0.388632 -0.304095 -0.992171 0.289038 -0.015356 -1.503696 0.968238 0.450033 -0.768296 -0.684866 -0.972098 0.038237 0.612708 1.316036 -0.310940 -0.025849 0.498631 -0.172844 -0.241657 -0.508194 0.638803 -0.204898 1.000433 -0.824946 -0.604282 0.318329 0.982443 -0.292384 0.324771 -0.016877 0.571842 0.312517 0.881274 0.220884 -0.382349 -0.511131 -1.632594 0.237178 0.417269 -0.016850 0.327290 -0.556371 -0.757529 0.056583 0.051445 0.944499 0.312845 0.434189 0.567789 -0.413530 -0.771286 0.276766 0.342237 0.316027 -0.790999 0.385847 -0.422792 -0.097099 0.158851 0.228848 0.451094 -0.680160 -1.264725 -0.308008 0.720086 0.347963 -0.318853 0.811015 0.079500 -0.354483 0.133270 -0.089917 0.803917 0.185424 -0.374052 -0.264868 -0.705278 -0.012574 -0.241725 1.247755 0.107631 0.171476 0.614092 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 3.304395 0.528068 0.049738 2.205531 1.098583 -3.144486 0.915189 2.804038 -0.769469 -4.865101 -3.769287 3.042659 -0.154687 -2.186736 0.891647 0.534631 0.166182 1.101313 -6.687671 2.885952 1.573299 1.223944 -1.323171 -2.129505 0.701419 -1.233688 -1.359072 1.789082 -0.197521 2.825216 -2.105189 -0.075816 2.076110 0.669669 2.010331 3.063656 -0.436630 -0.591357 1.951627 -0.001320 5.120734 2.962879 -0.202165 2.415689 3.105618 3.114707 -1.021734 3.191400 -0.831636 -1.403809 1.089906 -0.432506 -2.918943 0.152229 -2.731282 1.971773 3.537522 0.845916 -2.093780 2.193917 -1.226574 -0.261102 1.099530 -1.195355 3.788665 2.430758 1.079631 1.327041 5.587862 -1.075160 -0.717105 1.950827 3.763027 0.211146 1.132960 -1.383892 -2.365692 -3.164060 0.016275 -6.380553 -0.768138 -0.838297 6.418088 -2.933943 1.210689 2.041310 1.139704 2.666292 -2.216249 -1.407027 -2.273355 0.835343 -2.009361 5.598741 -0.434432 1.631025 -0.513543 1.261098 1.504468 2.821813 -1.538369 -1.930884 -3.156392 -7.412476 -1.200944 -0.827502 -0.710255 -0.777258 -4.366430 -0.879068 1.805267 4.761688 -4.561710 -0.804343 2.521873 0.363999 -0.314272 0.653386 -3.280989 -0.132165 -0.735314 0.591603 0.613351 -1.341682 -1.256717 -1.743387 0.332066 0.172278 1.214560 -0.467244 -4.265329 -1.119168 0.198948 -0.768958 -0.551248 -0.198665 -0.007342 -2.723092 1.491855 -2.345241 2.214721 -4.561561 -0.016933 -2.239736 -3.009321 0.042427 2.780948 2.969257 1.845023 0.353585 0.245339 -1.713184 -3.834119 -4.921532 1.767533 -1.646869 2.195575 -1.329078 0.216695 -0.786438 -0.876548 -1.651652 0.855600 -2.161049 0.214812 -2.144123 6.058250 -0.815148 -0.641884 -2.624952 -0.706145 2.525422 0.082393 0.092464 -1.701418 -3.762897 -3.504869 -3.067244 2.351902 -0.373330 0.093653 -1.595370 0.624570 -2.172934 1.129762 -1.970913 1.131652 -0.956764 -1.977426 -2.982174 -0.733974 -0.543252 -0.850198 -1.303902 -1.854284 -0.160058 2.811825 1.548100 0.522979 0.731638 0.084910 -3.726349 -3.609821 -0.324544 0.678476 3.135522 3.104443 0.736031 -3.088481 -0.292613 -3.973086 3.431913 -3.065122 -0.041098 -0.514198 -1.794458 4.809553 -1.467458 -1.237311 -2.952198 1.423697 -0.097388 -5.386559 4.777325 2.806042 -2.747010 -1.680238 -2.421588 0.513586 2.823861 4.691907 -1.924469 -0.985575 1.134871 -1.386100 -0.781888 -1.219886 2.834695 -1.673774 3.459170 -2.929932 -1.999985 1.690260 2.934662 -0.371881 1.491527 -0.745216 0.957599 1.235190 3.284197 1.312929 -0.687279 -3.332453 -6.648314 1.245659 0.603373 0.146522 0.537376 -1.153863 -3.591803 -0.276497 -0.380256 3.982778 1.307982 -0.483946 2.176704 -3.072252 -3.551188 -0.614025 1.137999 0.475423 -1.892886 1.676935 -1.642734 0.077145 0.701587 1.070908 1.140628 -2.573116 -3.484183 -0.480512 2.367599 2.105747 -1.752815 3.408108 0.636306 -1.678486 -0.230124 -0.321590 1.623232 -0.073999 -1.953262 -1.632667 -2.632571 0.582350 -1.145255 4.157191 0.662978 1.472153 1.684153 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.876005 -0.108185 0.464302 1.262326 0.888141 -1.831302 0.660326 1.639789 -0.122878 -2.865448 -1.744063 1.394079 -0.193346 -1.293222 0.411757 0.204765 0.208460 0.919562 -3.738058 1.636584 0.894993 1.044608 -0.409637 -1.551312 0.483440 -0.634007 -0.551270 1.065064 0.045319 1.700894 -1.394030 -0.369719 1.262252 0.424704 1.071770 1.889849 0.533162 -0.316180 0.904149 0.047401 3.151299 1.593888 -0.221186 1.526874 1.872437 1.869564 -0.155948 1.838861 -0.119424 -0.800918 0.412808 -0.713829 -1.646070 -0.186413 -1.728251 1.380133 2.297039 1.028835 -1.386414 1.360082 -0.358061 -0.088875 0.691185 -0.677275 1.928205 1.385990 0.369079 0.777755 3.556960 -0.826196 -0.521090 1.078220 2.446776 0.273643 1.050722 -1.147037 -1.336615 -2.815232 -0.082313 -3.453081 -0.245107 -0.493987 3.184320 -1.828680 1.094220 1.716480 0.505093 1.447853 -1.142574 -0.967001 -1.487075 0.609990 -0.842121 3.565700 -0.338664 0.807851 -0.249117 0.824221 0.931201 1.684424 -0.249866 -1.191477 -1.759317 -4.442803 -0.804692 -0.630356 -0.571339 -0.621762 -2.462978 -0.508894 1.315787 2.466664 -2.800237 -0.419503 1.489814 0.374684 -0.125089 -0.531202 -1.364144 0.033599 -0.557633 0.184440 0.053744 -1.253576 -0.903890 -0.837410 0.127895 0.250366 0.693626 -0.497270 -1.960228 -0.645474 -0.086834 -0.047675 -0.369587 -0.274307 -0.188642 -2.041016 0.839627 -1.601377 1.345033 -2.399370 -0.043810 -1.059513 -1.554118 -0.084986 2.161759 0.702560 1.003493 0.266585 -0.274454 -1.136028 -1.898029 -3.078526 1.212699 -0.913082 1.288895 -0.440691 0.061708 -0.605295 -0.495877 -1.275211 0.337888 -1.289357 0.101217 -1.093060 2.776883 -0.793477 -0.296832 -1.712702 -0.117818 2.154275 0.300478 -0.088760 -1.177714 -1.963474 -1.785505 -1.927947 1.418825 -0.275045 0.114194 -0.805521 0.318675 -1.396177 0.968115 -1.203544 0.915165 -0.628784 -1.331135 -1.881095 -0.252257 -0.572194 -0.056037 -0.431484 -1.183978 0.093260 0.604532 0.929222 0.092455 0.274326 0.233138 -2.763083 -2.407619 -0.467109 0.612895 1.947123 1.041857 0.674697 -1.635288 -0.277778 -1.977555 1.976566 -2.034198 -0.066335 -0.167348 -1.029853 2.839519 -0.715349 -0.632025 -2.058015 0.964086 0.134456 -2.085846 3.138535 1.632929 -1.720596 -1.107834 -1.391321 0.246735 1.667711 2.966954 -1.302983 -0.815529 0.963239 -0.798429 -0.516744 -1.090317 1.599723 -0.829983 2.285990 -1.902601 -1.330796 0.645749 1.950821 -0.361728 0.921590 -0.106197 0.517123 -0.040735 2.249954 0.712442 0.051437 -2.029007 -3.473604 0.782560 0.621810 0.527767 0.380725 -1.005667 -1.901055 0.122516 0.545169 2.389961 1.572039 0.098752 1.389266 -1.996584 -2.118397 0.042592 0.432559 0.534683 -1.259822 0.986219 -1.141194 -0.039360 0.171611 0.646010 0.542436 -1.160314 -1.819804 -0.255539 1.351513 1.256044 -1.149422 2.107962 0.300592 -1.098549 0.202322 -0.238052 1.109785 -0.013594 -0.488658 -0.753595 -1.464829 0.343260 -0.711181 2.728375 0.104657 0.689886 0.814754 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 1.838685 -0.360895 0.324627 1.264641 0.990337 -1.564241 0.606446 1.385392 -0.221841 -2.696024 -1.992096 1.045646 -0.188343 -1.248273 0.662276 0.182946 0.209518 0.359022 -3.223884 1.464173 0.690410 0.507089 -0.654159 -0.998110 0.363172 -0.858232 -0.727353 1.260017 -0.207706 1.455318 -1.057632 -0.119133 1.091790 0.455124 0.953342 1.706894 0.181484 -0.320026 1.015444 0.274903 2.955950 1.309481 -0.156563 1.337389 1.820963 1.696817 -0.636963 2.483067 -0.265527 -0.623310 1.245762 -0.941934 -1.461249 -0.022178 -1.748820 1.153900 2.327180 0.389436 -1.193426 1.198006 -0.810916 -0.060615 0.517233 -0.559952 2.078889 1.512556 0.703311 0.617441 3.197874 -0.738241 -0.654010 1.397468 2.237266 0.374604 0.432178 -0.984083 -1.132967 -2.185829 0.078841 -2.689992 -0.375371 -0.779239 3.073670 -1.382278 0.291007 1.379043 0.408804 1.357747 -1.168474 -0.590797 -1.327493 0.633880 -0.724905 3.057865 -0.356288 0.952110 -0.297452 0.517641 0.810594 1.752323 -0.621553 -0.975639 -2.127808 -4.221149 -1.035227 -0.424016 -0.326970 -0.700651 -2.552537 -0.368399 1.052356 1.875619 -2.241752 -0.476282 1.395937 0.473295 0.274167 0.523106 -1.809711 -0.369309 -0.016450 0.378270 0.239470 -0.644344 -0.619950 -1.671358 0.530175 0.151943 0.560639 -0.586928 -1.980938 -0.488446 0.005543 -0.163473 -0.191562 -0.343045 -0.113773 -1.709929 0.774563 -1.166915 1.215825 -2.686903 -0.219899 -1.396386 -1.688209 0.097045 2.380653 1.327569 1.434122 0.560089 -0.306839 -1.027813 -1.940022 -3.058562 0.581617 -1.009123 1.301237 -0.725614 0.095790 -0.411495 -0.366698 -1.021279 0.376206 -1.132062 0.132843 -1.218488 2.607835 -0.585895 -0.328151 -1.563363 -0.220045 1.689946 -0.091411 0.141462 -0.816156 -2.196703 -1.657467 -1.849283 1.169204 -0.224496 0.080795 -0.771269 0.360334 -1.799434 0.766001 -0.955247 0.592749 -0.475097 -1.539616 -1.606198 -0.277002 -0.349245 -0.118029 -0.516991 -1.086460 -0.095295 1.104097 1.172225 0.474729 0.597447 -0.220176 -2.334808 -2.405123 -0.528517 0.519874 2.122724 1.347793 0.427052 -1.097095 -0.291285 -2.220489 1.917809 -1.963751 -0.191304 -0.012136 -1.023614 2.504430 -0.754390 -0.864836 -1.828256 0.760233 -0.065385 -2.394057 2.722974 1.528485 -1.656887 -1.278644 -1.591855 0.183774 1.455861 2.835716 -0.970309 -0.362676 0.690691 -0.299199 -0.510891 -0.795966 1.562018 -0.745341 1.927817 -1.811482 -1.454399 0.709605 1.940180 -0.365059 0.699210 -0.323080 0.830384 0.371832 1.958488 0.548738 -0.418198 -1.614804 -3.825523 0.575429 0.644892 -0.140494 0.504930 -1.177253 -1.950433 -0.128224 0.074426 2.298711 1.189392 0.256159 1.291537 -1.411117 -1.876061 -0.203802 0.478143 0.221079 -1.256055 0.925064 -0.986978 -0.053335 0.284734 0.479683 0.589588 -1.435264 -2.072366 -0.456821 1.248671 0.932587 -0.863452 1.832006 0.427455 -0.828455 -0.195471 -0.030193 0.944541 0.410301 -0.839809 -0.868377 -1.554289 0.142063 -0.483072 2.287394 0.334994 0.791464 0.931862 -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.291227 0.116843 0.255459 0.231378 0.277126 -0.483138 0.232065 0.373307 -0.152613 -0.650830 -0.296377 -0.057440 -0.072079 -0.375948 0.112556 0.010260 0.001883 0.431874 -0.594169 0.335299 0.273818 0.366484 0.009952 -0.509176 0.102211 -0.097570 -0.411065 0.256741 0.018133 0.434626 -0.353337 -0.201431 0.291168 0.181565 0.140016 0.466213 0.437109 -0.031359 0.315815 0.128163 0.731989 0.235251 -0.088043 0.279132 0.476894 0.428640 -0.048003 0.148214 -0.489877 -0.161924 -0.048853 -0.392092 -0.291998 -0.086345 -0.350917 0.386600 0.649004 0.534899 -0.319845 0.396082 -0.119556 0.005799 0.165960 -0.252905 0.327455 0.392792 -0.120660 0.181377 0.930791 -0.220192 -0.156095 0.194542 0.521340 -0.099322 0.164333 -0.080943 -0.130701 -1.087680 -0.100503 -0.852909 0.009200 0.019776 0.772582 -0.439743 0.357385 0.698336 0.176041 0.267193 -0.248956 -0.313467 -0.340237 0.182699 -0.240418 0.894048 0.001419 0.138761 -0.149258 0.231014 0.330499 0.385938 -0.055036 -0.165213 -0.589257 -1.111468 -0.298252 -0.114965 -0.243154 -0.241394 -0.566544 -0.262198 0.744604 0.625533 -0.731539 -0.036849 0.385295 0.220210 -0.271054 -0.377322 -0.406750 0.142177 -0.254479 -0.096245 -0.087695 -0.341709 -0.281271 -0.181607 -0.061401 -0.020287 0.136302 -0.214477 -0.421985 -0.129934 -0.111157 -0.165535 -0.085080 -0.118737 -0.147927 -0.539548 0.163123 -0.504697 0.315832 -0.518074 0.154149 -0.126525 -0.547777 0.008377 0.504271 -0.011334 0.041563 0.064734 -0.222043 -0.339902 -0.331022 -0.761810 0.373993 -0.168990 0.424594 -0.106779 -0.022471 -0.277124 -0.106385 -0.383584 0.155038 -0.298397 0.079808 -0.210952 0.871523 -0.291370 -0.115749 -0.560435 0.033783 0.764446 0.117012 -0.180161 -0.389496 0.107994 -0.327834 -0.506520 0.324486 -0.041631 0.018591 -0.182753 0.103297 -0.447258 0.405222 -0.250379 0.338089 -0.128086 -0.295296 -0.470650 -0.028348 -0.157848 -0.177507 -0.040538 -0.235867 0.052328 -0.045146 -0.076901 -0.044107 -0.058695 0.140643 -0.611526 -0.644095 -0.204632 0.244135 0.241185 0.265187 0.329649 -0.408338 -0.038472 -0.403920 0.524490 -0.316744 -0.072478 -0.031294 -0.165641 0.728890 -0.148973 -0.216130 -0.519306 0.234408 0.021341 -0.205718 0.761536 0.334173 -0.420423 -0.328190 -0.397011 0.020637 0.417707 0.788697 -0.329850 -0.145708 0.327095 -0.236336 -0.146617 -0.343082 0.356409 -0.194856 0.685677 -0.457119 -0.304260 0.047311 0.602951 -0.158698 0.357691 0.023581 0.164065 -0.174673 0.543038 0.159482 -0.008120 -0.385485 -0.395428 0.183087 -0.089702 0.271010 0.013588 -0.155406 -0.373520 0.090969 0.356220 0.572267 0.625474 -0.016726 0.345189 -0.433732 -0.494179 0.206785 0.183353 0.244151 -0.522062 0.231462 -0.269439 -0.024781 0.071894 0.169326 0.270197 -0.301155 -0.556815 -0.162104 0.373574 0.270552 -0.387207 0.544121 -0.019179 -0.272173 0.162780 -0.081923 0.469654 0.042077 0.099248 -0.165808 -0.371140 0.079364 -0.172431 0.830983 -0.095770 0.002426 0.370253 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 1.437752 0.756441 0.070545 0.988505 0.369038 -1.637383 0.850607 1.673398 -0.587770 -2.655553 -1.686357 0.860502 0.095952 -1.102985 0.348653 0.220161 -0.387096 1.323332 -2.494572 1.100738 1.144508 1.136717 -0.288499 -1.531745 0.227541 -0.272939 -1.830024 0.722764 0.140774 1.818473 -0.869874 -0.503675 1.296353 0.166223 -0.112495 1.737840 0.891737 0.157699 1.196830 0.128393 2.294551 1.135682 -0.289646 1.178931 1.159448 1.629905 -0.949194 1.856819 -2.038594 -0.927690 0.671181 -1.057951 -1.484433 -0.210975 -0.779853 1.306753 2.626277 1.732823 -0.743752 1.446474 -0.788721 -0.106376 0.654985 -0.933430 1.151727 2.328032 -0.130369 0.852192 3.243970 -0.949796 -0.476739 0.887475 1.227229 -0.464227 0.558121 -0.726472 -0.761191 -2.490789 -0.118129 -3.339899 -0.611923 -0.154882 4.244973 -1.946734 0.876361 1.965025 1.167375 1.216127 -1.108552 -0.511359 -0.943378 0.431833 -1.255856 3.628966 -0.047103 0.744606 -0.822179 0.584833 1.176970 1.355564 -0.663994 -0.455700 -2.658392 -3.432772 -1.037354 -0.378745 -0.605187 -0.015925 -2.454966 -1.088322 2.358455 1.919660 -2.964982 -0.202835 1.702672 1.036082 0.286098 1.172921 -2.437178 0.568744 -0.517048 -0.595792 0.165648 -0.978130 -0.817191 -0.670818 -0.375334 -0.207669 0.080729 -0.487519 -3.162640 -0.575093 -0.335958 -1.174270 0.136767 -0.145012 -0.087818 -1.692151 0.728184 -1.608924 1.035520 -2.751870 -0.081143 -0.332333 -2.490875 -0.082529 1.714784 1.079646 0.717192 -0.165161 -0.643974 -1.552848 -1.663149 -2.372559 0.890683 -0.517043 1.689115 -0.552038 -0.045205 -0.680655 -0.485338 -0.731508 0.344005 -0.849218 0.388041 -0.576080 4.777658 -0.916856 -0.344513 -2.060039 -0.342391 1.481117 0.158143 -0.149947 -0.952464 -0.547061 -1.856315 -1.621542 1.400446 -0.108965 -0.015637 -0.939025 0.233347 -1.513903 0.660914 -0.918109 0.946423 0.021144 -1.235372 -1.864972 0.302787 -0.183609 -1.292274 -0.167696 -0.969328 -0.249599 1.006475 0.346039 0.202620 -0.055630 0.304169 -2.318721 -2.233151 -0.524582 0.199126 1.205863 1.988455 0.910502 -1.332311 -0.088114 -2.109909 1.813978 -1.419755 -0.130221 -0.636702 -0.094062 2.788706 -0.902879 -0.752049 -2.478069 0.685371 0.143448 -2.027202 2.812205 1.068828 -1.018117 -0.788837 -1.079628 -0.114973 1.726068 2.333853 -1.243931 -1.077647 1.036245 -1.062103 -0.426626 -0.768092 1.318858 -1.190060 2.082262 -1.210787 -0.607420 0.470216 1.978548 -0.482358 1.326820 0.078500 0.312593 0.353869 1.530752 0.889343 -1.036235 -1.270319 -2.662284 1.025881 -0.679206 0.097385 -0.283447 -0.737401 -1.533219 0.667798 0.825831 1.931342 1.232883 -0.132851 1.200662 -1.878345 -1.880016 0.394352 0.978979 0.847516 -1.432834 0.480582 -0.642562 0.330160 0.923226 0.197111 1.060915 -1.726229 -2.157646 -0.556671 1.876564 0.626183 -1.069396 2.094081 0.032782 -0.874732 0.336252 -0.424684 1.429532 -0.325897 -0.250826 -0.253286 -1.043151 0.399150 -0.711905 2.690358 0.101830 -0.502561 1.533140 -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.548145 -0.262636 0.062573 0.539799 0.347831 -0.671843 0.250804 0.331844 -0.014556 -0.887994 -0.287448 0.296800 -0.027092 -0.536035 0.097685 0.149126 0.005630 0.334521 -0.735052 0.565158 0.182889 0.276416 -0.263232 -0.523053 0.080180 -0.264701 -0.054897 0.426725 -0.056841 0.546780 -0.415400 -0.123576 0.409706 0.104275 0.265900 0.636971 0.492966 -0.029053 0.192678 0.263212 1.033726 0.358990 -0.101323 0.382341 0.611773 0.622667 0.053376 0.773776 -0.162355 -0.184568 0.261779 -0.159251 -0.395869 -0.178654 -0.670479 0.463690 0.780191 0.368995 -0.480082 0.452929 -0.265694 0.011394 0.278420 0.059343 0.711003 0.498398 0.155998 0.331372 1.302522 -0.294135 -0.196447 0.407198 0.856949 0.014873 0.606437 -0.263417 -0.538898 -1.033738 -0.093023 -0.681943 -0.004014 -0.081825 0.893544 -0.599803 0.193180 0.684429 0.311246 0.519481 -0.455425 -0.254837 -0.526523 0.234815 -0.216069 1.373407 -0.046000 0.346481 -0.264545 0.291067 0.287413 0.530706 0.029761 -0.459637 -0.560131 -1.446139 -0.544582 -0.280008 -0.341914 -0.330597 -0.984418 -0.207231 0.616739 0.708595 -0.978555 -0.027555 0.484808 0.165033 0.480934 -0.322674 -0.393115 0.147190 -0.095219 0.007708 -0.060062 -0.337090 -0.304180 -0.383573 0.241299 0.100039 0.136224 -0.259846 -0.676056 -0.042375 -0.031111 0.022143 -0.036882 -0.101523 -0.094283 -0.919597 0.217282 -0.563415 0.460077 -0.859980 -0.092850 -0.350307 -0.687290 -0.005569 0.924675 0.041408 0.525523 0.027853 -0.374835 -0.389986 -0.697154 -1.363816 0.281439 -0.378615 0.261654 -0.112460 -0.005962 -0.289395 -0.139328 -0.382656 0.347765 -0.469628 0.012462 -0.279640 0.721865 -0.279529 -0.121494 -0.602501 -0.114276 0.767791 0.393041 0.089067 -0.361553 -0.792703 -0.604465 -0.631859 0.437738 -0.079670 0.026259 -0.277630 -0.061577 -0.766076 0.423689 -0.349681 0.403494 -0.222524 -0.404861 -0.638918 -0.025773 -0.184663 -0.004932 -0.180676 -0.450878 0.080578 -0.126218 0.020784 0.030252 0.085632 0.035879 -0.978404 -0.919844 -0.100507 0.284512 0.740514 0.242888 0.380861 -0.288255 -0.108443 -0.749329 0.593016 -0.898777 -0.041430 0.213389 -0.389618 0.955704 -0.305850 -0.378756 -0.674891 0.360327 -0.070061 -0.183751 1.205696 0.637916 -0.652578 -0.397382 -0.346824 0.093517 0.523687 1.066569 -0.501544 -0.218136 0.382472 -0.030392 -0.219512 -0.279474 0.475299 -0.315642 0.812741 -0.659932 -0.482932 0.096885 0.835395 -0.204679 0.128753 -0.175188 -0.028030 -0.328734 0.739425 0.232468 0.152950 -0.610297 -0.988800 0.192106 -0.326754 0.062107 0.191745 -0.449019 -0.460379 0.135128 0.234575 0.855432 0.473172 -0.001700 0.483895 -0.809025 -0.754868 0.055868 0.055520 0.164452 -0.519643 0.480554 -0.442608 -0.062146 -0.023253 0.265628 0.000831 -0.332508 -0.365025 -0.085285 0.388945 0.303048 -0.514245 0.720327 0.082369 -0.261338 0.003200 -0.038548 0.328508 0.151727 -0.153250 -0.225899 -0.497981 0.184746 -0.235825 1.014091 -0.104687 0.208019 0.347263 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.548975 -0.257109 0.260181 0.390046 0.529646 -0.401546 0.181314 0.295274 0.091151 -0.917807 -0.425178 0.230191 -0.120695 -0.369754 0.177460 0.112768 0.246992 0.336192 -0.520996 0.404948 0.138390 0.292900 -0.059996 -0.363136 0.159522 -0.220048 -0.139985 0.218610 0.090168 0.468472 -0.483055 -0.107169 0.371791 0.119504 0.230016 0.513608 0.517579 -0.140512 0.168466 -0.001507 1.083972 0.100401 0.159779 0.603585 0.597368 0.529283 -0.156250 1.018323 0.308700 -0.173003 0.439440 -0.593001 -0.330459 0.019153 -0.720439 0.615290 0.662130 0.247754 -0.491951 0.341911 0.037853 0.114691 0.153665 -0.310817 0.485992 0.558279 0.002818 0.256664 1.156877 -0.291104 -0.250207 0.437444 0.857959 0.330235 0.406581 -0.464814 -0.121932 -0.908930 -0.146035 -0.405355 0.225125 -0.369531 0.991026 -0.531451 0.212240 0.734076 0.050161 0.399074 -0.166846 -0.182386 -0.543025 0.331785 -0.035889 0.824731 -0.130550 0.236699 -0.277384 0.080175 0.099523 0.511747 0.079834 -0.309250 -0.719930 -1.320847 -0.603729 -0.202300 -0.144759 -0.341516 -0.880100 -0.010383 0.420692 0.534582 -0.800488 -0.141287 0.358739 0.203128 0.100487 0.043352 -0.409023 -0.223677 0.002373 0.109838 -0.284587 -0.284722 -0.292357 -0.656131 -0.001170 0.033876 0.258177 -0.383930 -0.277514 -0.184435 -0.239642 0.211981 -0.102769 -0.208987 -0.040415 -0.820686 0.270697 -0.281407 0.283450 -0.694175 -0.328904 -0.409833 -0.530598 -0.064102 1.345425 -0.124610 0.742463 0.308414 -0.352174 -0.574294 -0.505918 -0.885317 0.206175 -0.496385 0.407243 0.127745 0.039889 -0.181676 -0.092701 -0.516783 0.054846 -0.443266 -0.011256 -0.358798 0.378903 -0.525793 -0.047205 -0.826709 0.043680 0.905451 -0.034624 -0.114057 -0.318223 -0.510407 -0.380009 -0.659455 0.362291 -0.166369 0.285355 -0.132772 0.170449 -0.532196 0.271329 -0.348380 0.179252 -0.189570 -0.627334 -0.584867 0.038685 -0.242579 0.006729 0.027435 -0.440077 0.216170 -0.128608 0.443074 0.048508 0.140556 -0.140775 -1.142556 -0.990753 -0.392625 0.216281 0.611185 0.205364 0.249484 -0.340068 -0.263718 -0.574142 0.523306 -1.032184 -0.084084 0.221876 -0.215035 0.664009 -0.283341 -0.176964 -0.781520 0.288768 0.024962 -0.677990 0.855657 0.372212 -0.656925 -0.444082 -0.659473 0.165275 0.385757 1.054748 -0.303149 -0.047903 0.395587 -0.024051 -0.190875 -0.532301 0.497906 -0.142755 0.754248 -0.718520 -0.561682 0.089175 0.770029 -0.235885 0.116667 0.161151 0.316861 -0.105104 0.794558 0.216875 0.097371 -0.522400 -1.102001 0.114499 0.461159 0.174918 0.378338 -0.603477 -0.403649 0.097279 0.218377 0.770987 0.370884 0.585427 0.486631 -0.524499 -0.594835 0.348136 -0.004807 0.220222 -0.516713 0.388850 -0.460385 -0.202810 -0.092336 0.226870 0.030313 -0.257453 -0.572579 -0.096749 0.468902 0.348322 -0.165837 0.596587 0.193544 -0.352547 0.226523 -0.040429 0.502408 0.075167 -0.148555 -0.157398 -0.398670 -0.079581 -0.234862 0.913400 -0.131630 0.160463 0.138033 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 0.465891 0.404705 0.075894 1.235327 0.073516 -1.471268 0.378088 0.923602 -0.948380 -1.689361 -0.633313 -0.212564 -0.231273 -0.443789 0.295863 0.161557 -0.580239 0.148784 -2.227688 0.961924 0.863291 0.584482 -0.050539 -1.095893 0.539546 0.267882 -0.850324 0.907298 -0.098436 1.052735 -0.901136 -0.057427 0.647254 0.501473 0.330211 0.562449 0.353124 0.550196 0.761532 0.369065 1.070470 0.811815 -1.106373 0.083857 0.776312 1.060282 0.020069 0.163971 -2.421485 -0.436019 -0.199684 -0.424444 -0.660337 -0.252697 -0.276096 0.688508 1.995232 1.830845 -0.418928 0.696545 -0.964656 -0.009231 0.539153 -0.079763 1.460541 1.212303 0.509601 0.710271 1.983176 -0.553761 -0.112595 0.258479 1.149878 -0.833384 -0.520225 -0.215586 -0.704085 -2.586800 -0.084712 -2.909538 -0.783271 0.511524 1.579475 -1.029378 0.575031 0.561586 0.354598 0.901896 -1.509152 0.102033 -0.761833 0.077320 -0.861402 2.893250 -0.075954 0.218206 0.009834 1.060886 1.213716 1.017065 -0.610801 -0.056752 -1.083264 -2.137937 -0.360394 0.368448 -0.426326 -0.036111 -1.701871 -0.795991 1.670123 1.128071 -1.895141 -0.411479 0.823982 0.716288 0.052993 -0.220483 -1.230640 0.916366 -0.842606 -0.401545 0.567208 -0.534625 -0.087090 -0.498515 -0.210632 0.104694 0.437022 0.434799 -2.375338 -0.025538 0.036211 -1.376110 0.014625 0.114861 -0.367996 -0.499705 0.411758 -1.429929 1.002427 -1.931346 0.467342 -0.094429 -1.610304 0.432239 0.008513 1.166920 -0.667396 -0.210094 -0.359850 -0.617883 -1.348373 -2.003791 0.731289 0.506618 0.784559 -0.561774 -0.174888 -0.202794 -0.444057 -0.678671 1.134325 -0.789701 -0.268410 -1.076554 2.883714 0.106016 -0.140069 -0.792683 -0.157085 1.193715 -0.178926 0.249058 -0.713713 -0.180046 -1.810194 -0.953914 0.748032 0.043326 -0.529415 -0.667489 0.406013 -1.973935 1.154721 -0.702990 0.912869 0.059956 -0.493360 -1.138289 0.116781 -0.073886 -0.417821 -0.459617 -0.297361 -0.343979 0.354600 -0.239690 0.146659 0.141249 0.728649 -0.802495 -1.524455 0.236440 0.539134 0.605574 0.534354 0.410056 -0.803210 -0.146880 -1.331360 1.870971 0.192534 0.058317 -0.454210 0.213518 2.056911 -0.418492 -0.676613 -0.904163 0.531662 0.263350 -0.267026 1.915743 0.937056 -0.731077 -0.538976 -0.774295 0.247930 1.141725 1.594778 -1.131370 -0.779091 0.394860 -0.207865 -0.406225 -0.271524 0.846883 -0.789536 1.103090 -0.689922 -0.462283 0.042869 0.893442 -0.012578 1.046331 -0.463853 -0.412793 -0.475359 1.088020 0.521802 -0.485953 -0.693344 -0.942180 0.249444 -1.048330 0.282434 -0.594265 -0.416089 -1.196937 0.000631 0.675689 1.383788 1.544118 -1.385108 0.777216 -1.520564 -1.005173 -0.161983 0.924320 -0.031028 -1.052922 0.340852 -0.299972 0.175441 1.155150 0.223233 0.640974 -1.175824 -1.415003 -0.818726 1.022692 -0.239619 -1.147577 1.256241 -0.053032 -0.557106 -0.315592 0.333140 0.452755 -0.031329 -0.282726 -0.551989 -0.822563 0.495012 -0.617447 1.571800 0.394315 -0.309222 0.968539 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.151809 -0.223507 0.277463 0.207095 0.330008 -0.141443 0.096808 0.063674 0.122023 -0.475971 -0.094504 0.033650 -0.114362 -0.113393 0.065519 -0.003892 0.183873 0.274871 -0.149835 0.157302 0.062146 0.234418 0.138762 -0.217527 0.103294 -0.087164 0.076724 0.098694 0.133364 0.250399 -0.312329 -0.109753 0.205047 0.097420 0.113009 0.268653 0.509604 -0.068854 -0.076029 -0.035563 0.579827 -0.050353 0.103802 0.344913 0.280003 0.280058 0.124824 0.352837 0.439401 -0.105325 0.073463 -0.408450 -0.101474 -0.078390 -0.405408 0.368423 0.236625 0.257215 -0.302682 0.158783 0.176947 0.066787 0.061895 -0.220410 0.135725 0.154671 -0.095474 0.126622 0.573455 -0.221284 -0.169243 0.198651 0.489271 0.261015 0.299883 -0.253881 -0.033269 -0.717423 -0.162672 -0.095854 0.151934 -0.150815 0.267888 -0.290320 0.208476 0.488410 -0.138132 0.148283 0.023202 -0.135395 -0.354601 0.175698 0.147742 0.290622 -0.002619 -0.019761 -0.090087 0.042553 0.053138 0.271663 0.230455 -0.186440 -0.268674 -0.691449 -0.294034 -0.148526 -0.058306 -0.202600 -0.353324 0.002520 0.235301 0.309297 -0.405373 -0.071392 0.177616 0.130538 -0.108660 -0.406597 0.036435 -0.079105 0.006977 0.027165 -0.165123 -0.288196 -0.180652 -0.191999 -0.037316 0.006882 0.172518 -0.235468 0.202255 -0.188059 -0.187461 0.312024 -0.088460 -0.182988 -0.059036 -0.445683 0.148502 -0.143947 0.163456 -0.152861 -0.114502 -0.107750 -0.113600 -0.089403 0.880896 -0.360149 0.376308 0.149812 -0.296730 -0.294289 -0.108116 -0.469057 0.221418 -0.197893 0.188486 0.241901 -0.005786 -0.057532 -0.045208 -0.333275 -0.011983 -0.223872 -0.031775 -0.071093 -0.293096 -0.347102 0.005467 -0.506261 0.133718 0.615072 0.019364 -0.112219 -0.229123 -0.169445 -0.062176 -0.368584 0.191922 -0.128468 0.181813 0.006564 0.055321 -0.208642 0.213204 -0.220764 0.107518 -0.114089 -0.382926 -0.330756 0.037368 -0.223751 0.115132 0.159915 -0.247291 0.172863 -0.377266 0.185253 -0.027912 0.018729 -0.011895 -0.662209 -0.503432 -0.280777 0.109846 0.248714 -0.146926 0.176673 -0.249773 -0.195783 -0.124441 0.241930 -0.567439 -0.037886 0.141411 -0.114617 0.292372 -0.086334 -0.006085 -0.371411 0.191233 0.145015 -0.203320 0.392050 0.205386 -0.331220 -0.235860 -0.265897 0.054189 0.198514 0.574939 -0.205569 -0.056462 0.267084 -0.015834 -0.078639 -0.387103 0.226197 -0.001799 0.383427 -0.406944 -0.333475 -0.063822 0.394543 -0.113412 0.050459 0.242764 0.208451 -0.241406 0.483106 0.100508 0.226156 -0.281929 -0.387703 0.109316 0.460377 0.257220 0.306492 -0.387681 -0.093022 0.132596 0.205374 0.368089 0.311578 0.381164 0.293271 -0.260931 -0.276274 0.292642 -0.138560 0.175390 -0.276329 0.273656 -0.279372 -0.129200 -0.152027 0.079278 -0.068681 0.078167 -0.164577 -0.007961 0.185138 0.236007 0.001954 0.309050 0.063687 -0.280118 0.231842 -0.030464 0.264668 0.003255 0.018350 -0.049285 -0.138202 -0.041221 -0.122315 0.449608 -0.215907 0.011480 -0.023271 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.794350 -0.078485 0.092868 0.737795 0.427576 -0.647923 0.173015 0.540609 -0.146047 -1.573425 -0.913867 0.920760 -0.095599 -0.347219 0.241127 0.212716 0.193750 0.338597 -1.541968 0.694114 0.393299 0.350797 -0.149105 -0.474037 0.251953 -0.396988 0.028913 0.395701 0.157796 0.845435 -0.739761 0.021762 0.668969 0.123290 0.527435 0.813043 0.256140 -0.156257 0.107767 -0.134534 1.587297 0.517918 0.092505 0.796811 0.770176 0.930914 -0.128276 1.089906 0.436972 -0.492545 0.383480 -0.180977 -0.696063 -0.014250 -0.919468 0.724950 0.779267 0.354144 -0.703541 0.491768 -0.148151 -0.004315 0.242045 -0.372892 0.959522 0.588665 0.340507 0.456015 1.522180 -0.487146 -0.326033 0.673749 1.072434 0.358346 0.597400 -0.535821 -0.585159 -1.065903 -0.138274 -1.354170 -0.167579 -0.292426 1.742901 -0.917705 0.270450 0.706153 0.092709 0.769447 -0.440686 -0.232768 -0.832425 0.256664 -0.254521 1.371258 -0.010649 0.247733 -0.168830 0.285295 0.331086 0.875637 -0.094423 -0.609088 -0.846598 -1.974651 -0.555995 -0.343982 0.003713 -0.135852 -1.269445 -0.118356 0.541476 1.334336 -1.307081 -0.181389 0.707296 0.257556 0.146594 0.036029 -0.710729 -0.104004 -0.027784 0.144841 0.142930 -0.444989 -0.325454 -0.436391 0.114069 -0.021044 0.434959 -0.236132 -0.896980 -0.505655 -0.093991 0.083538 -0.156963 -0.185596 0.110556 -0.903049 0.539083 -0.454539 0.610251 -1.145090 -0.163832 -0.564852 -0.688374 -0.126818 1.398187 0.543645 0.852846 0.131722 -0.258335 -0.614205 -1.000542 -1.353651 0.446923 -0.405298 0.517777 0.078675 0.021660 0.036645 -0.242996 -0.485582 0.177350 -0.640192 -0.038637 -0.440909 0.901827 -0.434637 -0.092101 -1.026729 -0.107693 0.745267 -0.024907 0.112158 -0.473203 -1.236776 -0.950121 -0.956978 0.694020 -0.255502 0.218562 -0.321822 0.095119 -0.566688 0.301362 -0.695399 0.248295 -0.264910 -0.816437 -0.937166 -0.030671 -0.288657 -0.238184 -0.100062 -0.678369 0.067078 0.321216 0.447358 0.198797 0.141647 -0.049198 -1.398987 -1.148363 -0.210506 0.004269 0.875593 0.602988 0.155540 -0.931137 -0.318265 -1.006902 0.861405 -1.208790 0.019825 -0.032295 -0.467149 1.174800 -0.457773 -0.184880 -0.898173 0.462874 0.200197 -1.572907 1.369373 0.827581 -0.768330 -0.453436 -0.549960 0.149873 0.767856 1.344881 -0.608891 -0.292949 0.366635 -0.258830 -0.170037 -0.406278 0.832126 -0.423224 0.864045 -0.937352 -0.703488 0.316880 0.899141 -0.086561 0.299365 0.142019 0.303242 0.176481 1.066911 0.454295 0.023984 -0.901026 -1.925495 0.439438 0.445806 0.069334 0.417240 -0.619537 -0.819643 0.073881 -0.073813 1.123968 0.157707 0.182502 0.734940 -0.959629 -0.979725 0.019665 0.003080 0.147087 -0.510331 0.617825 -0.555304 -0.073347 0.037906 0.165236 0.013113 -0.393422 -0.687725 -0.073119 0.672849 0.702429 -0.155864 0.971560 0.276509 -0.659492 0.093508 -0.035817 0.445634 -0.060416 -0.621911 -0.379000 -0.559461 0.070989 -0.346893 0.987289 -0.020407 0.219622 0.251911 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 4.514876 -0.839980 0.073693 3.347219 1.248092 -5.513848 1.899931 4.349895 -0.937236 -7.012855 -3.758074 0.210952 -0.020066 -3.916989 1.564353 1.435935 -1.290866 1.504411 -9.472665 4.577202 3.277836 2.559431 -1.053031 -3.854489 1.442329 -1.674298 -3.874456 2.783982 -0.856977 4.273494 -2.915705 -0.511301 3.257785 0.608599 0.994162 4.406046 0.559044 0.226635 4.451941 2.767299 6.403852 3.964460 -2.204103 1.527502 4.102495 4.446061 -1.784839 5.794204 -5.176016 -2.038596 2.740913 -2.650513 -3.901338 -0.271151 -2.879131 3.116670 8.192411 4.093928 -2.408885 3.364214 -3.572675 -0.083993 2.097460 -0.530628 5.753475 5.451482 1.946684 2.094025 9.542688 -1.210506 -0.622047 2.276933 4.691478 -1.873483 2.019733 -2.716757 -3.217997 -8.923628 0.243581 -8.739138 -1.467717 -0.409489 7.712555 -4.661875 1.790941 4.289987 3.304415 4.595253 -4.204335 -1.142317 -2.774045 1.703548 -2.779460 11.599546 -1.423520 2.825647 -1.827682 2.787515 2.917843 3.544815 -1.136444 -1.798876 -6.638076 -10.309126 -3.146551 -1.027202 -1.774330 -0.923852 -8.614352 -1.530497 5.403717 3.361375 -7.953600 -0.038720 4.008819 2.408168 2.827968 1.264472 -5.451833 0.836378 -1.736944 0.067409 -0.039650 -2.383678 -1.734109 -4.760576 1.274149 1.225729 0.379076 -1.619662 -7.737991 0.104211 -0.086115 -2.659542 0.298994 0.881355 0.102267 -5.298043 1.719868 -5.206825 3.277003 -8.447939 -0.276978 -2.428972 -5.824414 0.466815 4.615863 3.416750 0.745545 0.063735 -2.196258 -3.142017 -6.067541 -8.395572 0.807536 -2.294922 3.700141 -2.278923 -0.087954 -2.233878 -0.674523 -1.976843 1.215863 -3.018171 0.721969 -3.385518 10.415747 -1.125881 -0.801210 -3.878076 -1.842657 5.089553 0.317169 0.568319 -1.910254 -3.131848 -6.062271 -4.656296 3.311716 -0.036752 -0.224249 -3.670816 1.189507 -6.811004 3.324236 -2.271532 2.313321 -0.570848 -2.815661 -4.524589 -0.160426 -0.405988 -0.761224 -2.356537 -2.596098 -0.801107 1.813540 1.566320 1.201703 0.553886 0.257173 -6.527554 -6.931858 -0.580985 1.456130 5.274338 3.105485 1.655329 -1.813997 -0.097328 -6.215496 5.766275 -3.780910 -0.491701 -0.563697 -1.743082 7.972990 -1.998186 -3.120536 -6.095997 1.801413 -1.393522 -1.978855 9.244365 3.659797 -4.005112 -2.367531 -3.821198 0.887343 4.406042 6.612740 -2.865087 -1.965835 1.680896 -1.206625 -1.631844 -1.677216 3.945288 -3.822739 5.996368 -3.609103 -2.370966 1.396129 5.723483 -1.524939 2.825172 -1.863811 0.015168 -0.509363 3.962520 1.638629 -1.987599 -3.798454 -7.892880 1.075817 -2.019948 0.045215 -0.977204 -2.823441 -4.638944 0.352405 3.231715 6.421667 6.253997 -0.585403 2.928440 -5.748769 -5.404644 -0.364299 2.788456 0.476675 -3.521206 1.195389 -1.911432 0.255673 2.629610 1.867413 2.462014 -5.717822 -5.743829 -1.581276 4.351433 1.143856 -4.798349 5.267013 0.695030 -1.322391 -0.916370 -0.077256 2.450017 0.552234 0.837696 -1.603656 -3.725086 0.973378 -1.961143 7.692035 0.602095 0.845021 3.246660 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 1.407794 0.245802 -0.054271 1.716268 -0.039299 -0.394453 0.180310 1.468611 -0.732466 -4.454517 -3.310321 1.111787 0.050418 0.754422 1.084766 0.717372 0.129657 0.235995 -5.175837 0.898239 1.983888 0.832527 0.994548 -0.118464 0.906519 -0.819377 -1.222219 0.049879 0.807030 2.472336 -1.724587 0.934697 1.942878 -0.073728 0.697810 1.382495 -0.668692 -0.217256 0.309746 -0.581173 3.038386 1.143096 -0.169942 1.144230 0.390642 2.291312 -1.125138 2.728067 0.460388 -1.871975 1.607672 -2.142827 -1.712552 0.777292 -0.964088 1.438153 2.203833 1.873774 -0.856989 0.734017 -0.840060 0.085145 0.199758 -1.753101 2.066448 1.734630 1.285999 1.166910 2.183223 -1.390372 -0.237957 0.998634 0.613558 0.267490 0.015176 -1.882429 -0.455686 -3.088262 -0.003380 -4.427953 -1.401559 -0.491438 4.581245 -2.534381 0.582769 1.197914 -0.359260 2.037628 -0.837217 0.644716 -1.860846 0.151276 -0.307053 2.053326 -0.167958 -0.368250 -0.173304 0.701612 0.925305 1.567748 -0.332178 -0.807717 -3.221812 -3.685400 -0.924236 -0.383459 1.244813 1.389929 -3.119691 -0.137403 1.312469 2.262744 -3.271977 -0.136814 1.613027 1.847380 -0.238750 2.316441 -2.550471 -0.525257 0.067713 0.518103 1.589616 -1.167916 0.169191 -1.805652 -0.142424 0.037790 1.031923 -0.200319 -2.530920 -1.888052 -0.257169 -0.762612 -0.188012 0.248369 1.221657 -0.447466 1.847429 -0.961067 1.488484 -3.099654 -0.153009 -1.068566 -1.619737 -0.409835 3.632515 3.021177 0.892399 0.335405 -1.041237 -1.202324 -2.425240 -1.578992 0.249969 0.085561 2.031578 0.588599 -0.153515 1.268907 -0.673396 -0.027408 -0.710740 -1.034499 -0.237896 -0.834423 2.253207 -0.589738 -0.336193 -2.475403 -0.259567 0.691710 -2.179292 0.914207 -0.652281 -1.476998 -3.103526 -2.187510 2.012529 -0.761372 0.854289 -1.177868 1.001145 -1.495156 0.319066 -1.920298 -0.198305 0.342944 -2.497324 -2.454032 0.302747 -0.346107 -1.327493 0.463888 -1.351367 -0.484688 2.022083 2.178646 1.201969 0.225803 -0.061169 -2.943736 -2.330481 -0.757076 -1.662488 1.870416 1.681133 -0.860246 -2.455786 -1.021473 -2.217223 2.470831 -1.253166 0.332451 -1.659787 -0.181137 2.143520 -1.215367 0.169898 -2.377368 0.666916 1.109796 -5.506551 2.596864 1.412498 -0.800558 -0.284344 -1.532906 0.563167 1.644999 2.031785 -0.948431 -0.872568 -0.003576 -1.069935 0.041341 -1.075429 2.072803 -1.648431 0.528863 -1.412218 -0.894919 1.169896 1.205599 0.227511 1.443553 1.629155 1.265250 1.598234 1.725224 1.324618 -1.615546 -1.369581 -4.976058 1.548209 3.090117 -0.114528 0.343388 -1.719699 -1.787695 0.092645 -0.052108 2.182132 1.310258 0.534894 1.833656 -1.790982 -1.811581 -0.638262 0.409762 -0.131990 -0.661249 0.139658 -0.559598 0.446479 1.477479 -0.338224 0.901757 -1.701907 -2.695313 -0.270465 2.414054 1.215392 0.800025 2.184053 0.905060 -1.732029 -0.003687 0.250522 0.530754 -0.807536 -0.988272 -0.647571 -0.291301 -0.077100 -1.126559 0.729280 0.096100 -0.748117 0.385126 -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.291994 -0.091382 -0.249076 0.889389 0.140769 -0.614278 0.150684 0.176569 -0.107894 -1.422638 -0.508712 0.258175 -0.143874 -0.171734 0.067922 0.495439 -0.011496 0.235720 -0.809196 0.553302 0.618485 0.394869 -0.004250 -0.098960 0.446976 -0.194356 -0.428407 0.166931 0.100967 0.720420 -0.569838 0.318981 0.730992 -0.029339 -0.079691 0.601374 0.155128 0.357923 0.649889 0.156658 0.778919 0.031196 -0.086081 0.324012 0.333191 0.819459 -0.273962 1.260892 -0.383686 -0.565733 0.442458 -0.438591 -0.377264 0.021516 -0.438655 0.754709 0.755186 0.792484 -0.473614 0.296458 -0.295905 0.169923 0.345303 -0.284256 0.926232 1.114463 0.290791 0.643557 1.448672 -0.185525 0.016712 0.372623 0.661223 -0.015792 0.290397 -0.442899 -0.268855 -0.644463 -0.345599 -0.937931 -0.139779 -0.055135 1.546706 -0.924542 -0.010036 0.156880 0.240016 0.994658 -0.505226 0.212433 -0.716483 0.273800 -0.138442 1.308856 -0.004753 0.234989 -0.556322 0.440361 0.143421 0.413510 -0.360300 -0.172081 -1.058964 -1.266505 -0.662865 -0.272978 0.051964 0.203522 -1.862824 -0.152053 0.332671 0.724860 -1.641134 -0.114809 0.488050 0.402692 0.489297 0.865687 -0.818549 0.044853 -0.107936 -0.108075 -0.217380 -0.086426 -0.102823 -1.007450 -0.219754 -0.048340 0.151158 -0.028870 -1.379922 -0.061205 -0.269666 -0.415546 0.215747 0.484817 0.366118 -0.503517 0.431996 -0.617737 0.370376 -1.452684 -0.596307 -0.184418 -1.168738 -0.171481 1.179375 0.793896 0.634153 -0.312754 -0.465315 -1.005741 -1.377950 -1.099726 0.012970 -0.461436 0.556740 0.324280 -0.092910 -0.079760 -0.301905 -0.206870 0.408742 -0.519331 -0.074835 -0.654593 1.277276 -0.225081 0.140523 -0.999391 -0.561939 0.585947 -0.506338 0.141692 -0.238116 -0.565998 -1.373970 -0.628758 0.470328 -0.187249 0.295164 -0.648147 0.196624 -1.102707 0.323275 -0.519447 -0.157834 -0.030623 -0.442434 -0.887385 0.329657 -0.118061 -0.376273 -0.203629 -0.486538 0.021689 0.412228 0.314213 0.428840 0.129112 -0.247824 -0.909127 -0.967760 0.148756 -0.157760 0.432987 0.688223 0.008277 -0.449157 -0.418959 -1.103802 1.030054 -0.801130 0.135827 0.282724 0.297740 1.121548 -0.534961 -0.095351 -0.886653 0.296026 -0.065572 -1.499251 0.803506 0.443400 -0.675264 -0.129690 -0.559581 0.395838 0.657794 0.735610 -0.476150 -0.317470 0.293566 -0.130905 -0.154549 -0.309971 0.510186 -0.633977 0.871927 -0.587883 -0.173271 0.319635 0.662579 -0.326923 0.228056 -0.091168 -0.237410 0.366007 0.541605 0.508578 -0.272728 -0.569034 -1.547669 -0.003416 -0.113986 0.036143 0.105192 -0.700522 -0.299917 0.295786 -0.173137 1.033576 0.041370 -0.037321 0.608053 -1.204840 -0.806797 0.296588 0.246164 0.043456 -0.336637 0.438082 -0.200877 -0.090761 0.545634 0.363928 0.031631 -1.061629 -0.671372 -0.026910 1.081067 -0.223337 -0.301857 0.788275 -0.037715 -0.256311 -0.109643 0.188322 0.358647 -0.284951 -0.731266 -0.254070 -0.281473 0.131761 -0.686954 1.205678 -0.157613 -0.012947 0.364596 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.518303 0.065259 0.096241 0.677140 0.148119 -0.601145 0.236841 0.584806 -0.195707 -1.389715 -1.020970 0.964440 -0.103732 -0.211739 0.219718 -0.023506 0.001401 0.321756 -1.702266 0.635814 0.484123 0.450021 0.009318 -0.414812 0.248939 -0.285130 -0.133057 0.459789 0.153532 0.833924 -0.576280 -0.054451 0.646894 0.129111 0.420505 0.794670 0.129178 -0.023902 0.133966 -0.154588 1.289324 0.616264 -0.014190 0.714126 0.591672 0.867014 -0.004375 0.664706 0.465382 -0.572228 0.175312 -0.244902 -0.681162 -0.116717 -0.580399 0.564870 0.665129 0.419428 -0.588973 0.470486 -0.164600 -0.205746 0.195305 -0.505453 0.763503 0.487816 0.234320 0.380250 1.225985 -0.485486 -0.291645 0.581793 0.870304 0.213177 0.283539 -0.435460 -0.694014 -1.084562 -0.097755 -1.662526 -0.543431 -0.106558 1.514080 -0.886818 0.357625 0.545021 -0.122889 0.607648 -0.418909 -0.263146 -0.726707 0.056296 -0.206355 1.014763 0.067226 -0.004781 0.061193 0.313873 0.474553 0.830203 -0.243652 -0.479272 -0.761735 -1.894986 -0.168773 -0.215988 0.083064 0.026461 -0.965508 -0.307121 0.466105 1.347140 -1.218736 -0.207392 0.815972 0.259666 -0.376715 -0.099333 -0.606534 0.060832 0.023269 0.014620 0.543927 -0.511261 -0.239972 -0.076416 0.060324 -0.023600 0.316434 -0.054457 -0.702306 -0.723128 -0.037943 0.114804 -0.189803 -0.235596 0.020297 -0.484205 0.565315 -0.479240 0.655515 -0.978521 0.159349 -0.359626 -0.457248 -0.099225 1.126878 0.685967 0.566435 -0.083918 -0.159329 -0.429145 -0.781252 -1.143924 0.652214 -0.176515 0.612683 -0.051682 0.000753 0.130639 -0.214786 -0.326772 0.029760 -0.423752 0.045428 -0.233199 0.717479 -0.233457 -0.089435 -0.877849 -0.060856 0.491282 -0.125567 0.053873 -0.462471 -1.099668 -0.762504 -0.812352 0.684589 -0.102825 0.066572 -0.305009 0.074777 -0.357556 0.277682 -0.707267 0.191485 -0.185112 -0.753653 -0.835802 -0.127513 -0.228599 -0.221210 -0.062049 -0.449008 -0.147906 0.463712 0.520856 0.245322 0.122664 0.147953 -1.042879 -0.794880 -0.202063 -0.115312 0.722331 0.583996 0.122166 -1.095945 -0.201274 -0.839702 0.845048 -0.795911 0.003384 -0.326789 -0.465788 1.238017 -0.334798 -0.075441 -0.686225 0.393120 0.412839 -1.833811 1.030660 0.828716 -0.435976 -0.325446 -0.253334 -0.094303 0.887761 1.123739 -0.596856 -0.369925 0.247157 -0.453389 -0.052763 -0.390132 0.776194 -0.445270 0.684335 -0.658847 -0.525699 0.356398 0.603273 0.069945 0.431897 0.182621 0.422257 0.257302 0.874887 0.373546 -0.140358 -0.831023 -1.723538 0.605336 0.850799 0.107186 0.430988 -0.483642 -0.796813 0.104290 -0.178690 0.947167 0.216627 -0.134883 0.661495 -0.732668 -0.839631 -0.139247 0.044351 0.084909 -0.368044 0.578179 -0.355908 0.143241 0.206835 -0.072156 0.176134 -0.250152 -0.772940 -0.112561 0.509190 0.686746 0.013319 0.900803 0.074548 -0.735497 0.049040 -0.051677 0.297651 -0.246511 -0.566015 -0.361519 -0.499763 0.163788 -0.281309 0.721378 -0.042339 0.097005 0.289516 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.949228 -0.185282 0.076679 0.572395 0.626789 -0.939674 0.285720 0.553532 0.180710 -1.257971 -0.592619 0.698023 -0.066178 -0.803588 0.148546 0.267071 0.112600 0.692908 -0.643125 0.845607 0.227400 0.596833 -0.307810 -0.761132 0.214972 -0.150252 -0.406548 0.137474 0.100987 0.708606 -0.677759 -0.227503 0.541167 0.056752 0.184861 0.787274 0.700317 -0.131682 0.480931 0.051722 1.441290 0.323426 0.305643 0.956816 0.892422 0.710632 -0.347694 1.675855 0.145684 -0.256086 0.597372 -0.594844 -0.592832 0.051970 -0.877776 1.005393 1.014868 0.299771 -0.619848 0.532417 0.076345 0.104876 0.336838 -0.423266 0.700603 1.104115 -0.179355 0.426582 1.954011 -0.227534 -0.261125 0.554710 1.361794 0.288001 0.947919 -0.666974 -0.418972 -0.859936 -0.304432 -0.677411 0.389456 -0.498434 1.857224 -0.986613 0.470404 1.034494 0.485060 0.668330 -0.317282 -0.341631 -0.604612 0.515108 -0.376319 1.528064 -0.252642 0.583145 -0.734046 0.113329 0.137416 0.613082 -0.046134 -0.425117 -1.045654 -1.870071 -0.853708 -0.284483 -0.488338 -0.462939 -1.526081 -0.141242 0.513659 0.990231 -1.434181 -0.192805 0.610026 0.146171 0.459758 0.349492 -0.749527 -0.113619 -0.100295 0.035401 -0.623621 -0.391585 -0.638201 -0.861795 -0.150168 0.038416 0.224029 -0.553907 -0.805228 -0.146003 -0.426399 0.205022 -0.061508 -0.192861 -0.053799 -1.445197 0.312618 -0.495257 0.285894 -1.158840 -0.701825 -0.524305 -1.050527 -0.053262 1.773714 -0.224270 1.202291 0.192056 -0.390732 -1.063592 -0.916661 -1.295153 0.391475 -1.007318 0.560687 0.076492 0.154507 -0.533645 -0.093984 -0.752642 0.206502 -0.689145 0.091566 -0.557541 1.266952 -0.861306 -0.029032 -1.261737 -0.230682 1.229394 0.218927 -0.279070 -0.420256 -0.877948 -0.700025 -0.880302 0.549601 -0.136585 0.438531 -0.378043 0.249346 -0.703282 0.261353 -0.459965 0.340527 -0.234127 -0.680549 -0.846472 -0.031561 -0.237351 -0.117688 -0.230545 -0.604294 0.302561 0.011358 0.602451 -0.023957 0.203321 -0.196482 -1.755578 -1.448594 -0.445160 0.393982 0.890681 0.547747 0.547616 -0.550329 -0.239791 -1.076719 0.730114 -1.782031 -0.161015 0.332896 -0.132807 1.252322 -0.495508 -0.361231 -1.334552 0.403966 -0.192557 -1.063004 1.318772 0.470681 -0.920006 -0.478013 -0.868264 0.258259 0.713908 1.536058 -0.495883 -0.196778 0.647212 -0.197071 -0.341620 -0.779499 0.746029 -0.481722 1.378852 -0.861494 -0.590110 0.116789 1.166935 -0.415420 0.098027 -0.064605 0.174821 -0.080817 0.986723 0.428571 0.043253 -0.904873 -1.638324 0.120997 0.190820 0.235849 0.442940 -0.765390 -0.578396 0.263493 0.273239 1.173962 0.264799 0.813232 0.593174 -1.071552 -0.976014 0.652865 0.211350 0.396816 -0.712974 0.601922 -0.651004 -0.284130 0.037316 0.443911 0.066524 -0.578458 -0.794834 -0.108770 0.800991 0.460871 -0.466434 0.911161 0.257957 -0.416561 0.380991 -0.189765 0.828194 -0.211133 -0.269050 -0.130168 -0.634415 -0.058378 -0.399638 1.726092 -0.217849 0.212776 0.291541 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.526718 -0.304310 0.033317 0.518979 0.375864 -0.547043 0.191440 0.227643 0.033729 -0.840367 -0.291480 0.356402 -0.036042 -0.458556 0.105172 0.170062 0.082936 0.270536 -0.535358 0.501121 0.106214 0.196220 -0.268156 -0.385725 0.075495 -0.268292 0.026115 0.345270 -0.029647 0.476824 -0.392879 -0.055809 0.372762 0.075009 0.257508 0.552702 0.446583 -0.060032 0.117484 0.182716 0.990615 0.234558 0.019249 0.423781 0.558065 0.561210 -0.004118 0.911745 0.089632 -0.156661 0.374064 -0.170284 -0.329779 -0.106290 -0.694859 0.466208 0.625634 0.200356 -0.461880 0.365315 -0.190512 0.048417 0.231055 0.024166 0.665970 0.474240 0.162615 0.316744 1.173333 -0.266544 -0.195750 0.427415 0.828633 0.140285 0.587539 -0.290611 -0.443788 -0.776069 -0.115103 -0.422148 0.077111 -0.178837 0.876685 -0.536863 0.092295 0.588001 0.235271 0.487980 -0.360967 -0.173328 -0.516236 0.245358 -0.134122 1.107535 -0.051392 0.327104 -0.293257 0.190333 0.163374 0.486470 0.029488 -0.435618 -0.521073 -1.298682 -0.582268 -0.263642 -0.264047 -0.322084 -0.948143 -0.105771 0.437489 0.633489 -0.858431 -0.055775 0.400099 0.124950 0.505037 -0.125649 -0.363949 0.014755 0.009104 0.074137 -0.112085 -0.234473 -0.260462 -0.481057 0.218315 0.074908 0.163762 -0.271880 -0.538697 -0.058596 -0.068368 0.120617 -0.036083 -0.116697 -0.041341 -0.857046 0.219985 -0.391014 0.376300 -0.785919 -0.226583 -0.397328 -0.611762 -0.025065 1.049571 0.035402 0.695957 0.093935 -0.355704 -0.410543 -0.666230 -1.202054 0.191354 -0.439938 0.210563 -0.020113 0.016431 -0.216166 -0.118224 -0.358587 0.302874 -0.453732 -0.020393 -0.282843 0.481803 -0.311426 -0.090733 -0.618706 -0.109154 0.679494 0.289686 0.091466 -0.288046 -0.855673 -0.536547 -0.583501 0.380638 -0.109924 0.115422 -0.220086 -0.037576 -0.670291 0.309796 -0.328029 0.282911 -0.209568 -0.436311 -0.579210 -0.009326 -0.176882 0.001178 -0.143686 -0.447124 0.128652 -0.099356 0.133947 0.058502 0.136011 -0.071124 -0.962247 -0.879494 -0.132986 0.227330 0.710272 0.242554 0.308348 -0.253449 -0.167350 -0.710088 0.502540 -0.996560 -0.036640 0.281518 -0.346182 0.788228 -0.321776 -0.316716 -0.623810 0.323659 -0.069562 -0.379350 1.022168 0.560157 -0.635769 -0.372353 -0.379685 0.133719 0.432082 0.997192 -0.414878 -0.121906 0.345355 0.048489 -0.198687 -0.284105 0.449561 -0.255797 0.709819 -0.643927 -0.488638 0.107324 0.766371 -0.197685 0.018744 -0.118541 0.026794 -0.228122 0.696951 0.226597 0.158140 -0.555521 -1.054399 0.135201 -0.148805 0.010769 0.299193 -0.500707 -0.388646 0.111208 0.093674 0.792008 0.240332 0.166901 0.458479 -0.708634 -0.674998 0.097154 -0.010815 0.129884 -0.454063 0.490512 -0.438095 -0.118293 -0.074840 0.250925 -0.082575 -0.269976 -0.312959 -0.050121 0.364263 0.288832 -0.355910 0.627400 0.135711 -0.248528 0.019165 -0.018819 0.298846 0.138617 -0.268323 -0.204766 -0.435128 0.108820 -0.223712 0.890255 -0.113570 0.229190 0.241957 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.949228 -0.185282 0.076679 0.572395 0.626789 -0.939674 0.285720 0.553532 0.180710 -1.257971 -0.592619 0.698023 -0.066178 -0.803588 0.148546 0.267071 0.112600 0.692908 -0.643125 0.845607 0.227400 0.596833 -0.307810 -0.761132 0.214972 -0.150252 -0.406548 0.137474 0.100987 0.708606 -0.677759 -0.227503 0.541167 0.056752 0.184861 0.787274 0.700317 -0.131682 0.480931 0.051722 1.441290 0.323426 0.305643 0.956816 0.892422 0.710632 -0.347694 1.675855 0.145684 -0.256086 0.597372 -0.594844 -0.592832 0.051970 -0.877776 1.005393 1.014868 0.299771 -0.619848 0.532417 0.076345 0.104876 0.336838 -0.423266 0.700603 1.104115 -0.179355 0.426582 1.954011 -0.227534 -0.261125 0.554710 1.361794 0.288001 0.947919 -0.666974 -0.418972 -0.859936 -0.304432 -0.677411 0.389456 -0.498434 1.857224 -0.986613 0.470404 1.034494 0.485060 0.668330 -0.317282 -0.341631 -0.604612 0.515108 -0.376319 1.528064 -0.252642 0.583145 -0.734046 0.113329 0.137416 0.613082 -0.046134 -0.425117 -1.045654 -1.870071 -0.853708 -0.284483 -0.488338 -0.462939 -1.526081 -0.141242 0.513659 0.990231 -1.434181 -0.192805 0.610026 0.146171 0.459758 0.349492 -0.749527 -0.113619 -0.100295 0.035401 -0.623621 -0.391585 -0.638201 -0.861795 -0.150168 0.038416 0.224029 -0.553907 -0.805228 -0.146003 -0.426399 0.205022 -0.061508 -0.192861 -0.053799 -1.445197 0.312618 -0.495257 0.285894 -1.158840 -0.701825 -0.524305 -1.050527 -0.053262 1.773714 -0.224270 1.202291 0.192056 -0.390732 -1.063592 -0.916661 -1.295153 0.391475 -1.007318 0.560687 0.076492 0.154507 -0.533645 -0.093984 -0.752642 0.206502 -0.689145 0.091566 -0.557541 1.266952 -0.861306 -0.029032 -1.261737 -0.230682 1.229394 0.218927 -0.279070 -0.420256 -0.877948 -0.700025 -0.880302 0.549601 -0.136585 0.438531 -0.378043 0.249346 -0.703282 0.261353 -0.459965 0.340527 -0.234127 -0.680549 -0.846472 -0.031561 -0.237351 -0.117688 -0.230545 -0.604294 0.302561 0.011358 0.602451 -0.023957 0.203321 -0.196482 -1.755578 -1.448594 -0.445160 0.393982 0.890681 0.547747 0.547616 -0.550329 -0.239791 -1.076719 0.730114 -1.782031 -0.161015 0.332896 -0.132807 1.252322 -0.495508 -0.361231 -1.334552 0.403966 -0.192557 -1.063004 1.318772 0.470681 -0.920006 -0.478013 -0.868264 0.258259 0.713908 1.536058 -0.495883 -0.196778 0.647212 -0.197071 -0.341620 -0.779499 0.746029 -0.481722 1.378852 -0.861494 -0.590110 0.116789 1.166935 -0.415420 0.098027 -0.064605 0.174821 -0.080817 0.986723 0.428571 0.043253 -0.904873 -1.638324 0.120997 0.190820 0.235849 0.442940 -0.765390 -0.578396 0.263493 0.273239 1.173962 0.264799 0.813232 0.593174 -1.071552 -0.976014 0.652865 0.211350 0.396816 -0.712974 0.601922 -0.651004 -0.284130 0.037316 0.443911 0.066524 -0.578458 -0.794834 -0.108770 0.800991 0.460871 -0.466434 0.911161 0.257957 -0.416561 0.380991 -0.189765 0.828194 -0.211133 -0.269050 -0.130168 -0.634415 -0.058378 -0.399638 1.726092 -0.217849 0.212776 0.291541 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 1.105607 -0.191475 0.153050 0.473398 0.514628 -1.073578 0.312282 0.836012 0.013526 -1.398306 -0.941381 0.145665 -0.094152 -0.978141 0.482498 0.310876 0.097973 0.560489 -1.410557 1.000341 0.475508 0.584949 -0.289821 -0.690170 0.307292 -0.261761 -1.109893 0.215643 -0.065430 0.781502 -0.760171 -0.106915 0.586706 0.099674 0.260104 0.827189 0.197181 -0.225459 1.093074 0.371676 1.583807 0.437366 0.201415 0.737114 1.058255 0.783889 -0.785238 1.846689 -0.165454 -0.296596 1.061526 -1.131931 -0.686357 0.361358 -0.871970 0.901085 1.433996 0.410383 -0.610941 0.655408 -0.350998 0.177675 0.346376 -0.632123 1.070235 1.338685 -0.001837 0.362118 2.038037 -0.043124 -0.116287 0.451376 1.289596 0.006619 0.409666 -0.784888 -0.106091 -1.651675 -0.157354 -1.244457 0.368701 -0.531019 2.030885 -0.986317 0.515686 1.144784 0.520200 0.828486 -0.495076 -0.318773 -0.595991 0.572413 -0.423071 1.580784 -0.482289 0.627252 -0.669396 0.189318 0.179971 0.610931 -0.318316 -0.321264 -1.680056 -2.272604 -1.020321 -0.101605 -0.452288 -0.532900 -1.870669 -0.040022 0.914255 0.663167 -1.549978 -0.167241 0.622969 0.275712 -0.005846 0.854540 -1.263121 -0.402638 -0.265895 0.401404 -0.512995 -0.338251 -0.508350 -1.673997 -0.098750 0.233953 0.296802 -0.673194 -0.884852 -0.083141 -0.346651 -0.090727 -0.153362 -0.021487 -0.009892 -1.206849 0.385087 -0.671985 0.403593 -1.553875 -0.597338 -0.854879 -1.092219 0.081833 1.923814 0.373598 0.818567 0.483626 -0.451338 -0.947277 -1.157399 -1.216748 0.169906 -1.150367 0.945254 -0.258644 0.164923 -0.633047 0.058656 -0.730664 -0.085392 -0.775986 0.152955 -0.911291 1.662757 -0.707979 -0.171004 -1.322849 -0.240748 1.498503 -0.296680 -0.372757 -0.394549 -0.431273 -0.849225 -1.003874 0.605003 -0.073594 0.478778 -0.541762 0.598812 -1.022090 0.446359 -0.458028 0.148369 -0.210406 -0.777493 -0.873924 -0.138357 -0.154419 -0.127497 -0.478857 -0.548418 0.191301 0.410585 0.980199 0.157285 0.310368 -0.266350 -1.767073 -1.705656 -0.625701 0.404790 0.988368 0.815656 0.434792 -0.562664 -0.149135 -1.223522 1.029606 -1.541010 -0.229930 0.185647 -0.339963 1.407479 -0.481535 -0.512111 -1.434626 0.322082 -0.393058 -1.489208 1.460489 0.451326 -1.086540 -0.568727 -1.449437 0.436775 0.766700 1.651510 -0.231411 0.094476 0.473220 -0.192817 -0.373551 -0.859580 0.923275 -0.609178 1.411017 -0.896494 -0.617293 0.400174 1.264066 -0.409444 0.297208 -0.190437 0.527055 0.174594 0.941982 0.286046 -0.387086 -0.790597 -1.994154 0.028597 0.779957 0.253255 0.373339 -0.827578 -0.827889 -0.059042 0.466290 1.339229 0.896280 0.947506 0.584843 -0.862611 -1.056507 0.413246 0.604392 0.220350 -0.865959 0.381695 -0.580115 -0.289397 0.325526 0.625883 0.533493 -1.007012 -1.625700 -0.269595 0.952304 0.500657 -0.711773 0.966937 0.318142 -0.401684 0.185057 -0.144188 0.880591 -0.017646 0.106243 -0.285283 -0.811721 -0.122704 -0.462183 1.852820 -0.062700 0.375971 0.419150 -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.890313 -0.108676 -0.317265 1.805684 0.459394 -0.929702 0.277956 0.639811 -0.167042 -3.015485 -1.276109 1.539852 -0.121238 -0.048568 0.103266 0.553700 0.057104 0.448009 -2.291905 0.952794 1.030598 0.792092 0.006888 -0.396632 0.648140 -0.481226 0.153282 0.484321 0.432162 1.604570 -1.107263 0.449343 1.449570 -0.103563 0.153502 1.280879 0.606447 0.322745 0.159174 -0.224879 2.076512 0.534280 -0.114682 1.255641 0.634700 1.721249 -0.186570 2.246066 0.186103 -1.200348 0.486330 -0.074339 -1.025464 -0.325729 -1.081521 1.446945 1.363882 1.245338 -0.951900 0.597359 -0.227663 -0.059925 0.570069 -0.481960 1.521836 1.668237 0.750988 1.221089 2.742162 -0.887055 -0.357921 1.077249 1.316508 0.536239 1.108495 -0.933903 -1.157558 -1.117504 -0.537402 -2.062373 -0.752447 -0.408842 3.000598 -1.831177 0.123091 0.494675 0.342084 1.720403 -0.865594 0.253743 -1.500250 0.285473 -0.307687 2.584310 0.109734 0.371884 -0.668368 0.627267 0.495188 1.240013 -0.192498 -0.801300 -1.378943 -2.555245 -0.979658 -0.696344 0.220674 0.563113 -2.893731 -0.261593 0.272771 2.013686 -2.883066 -0.360536 1.128348 0.832321 1.353863 1.040453 -1.341408 0.100091 0.186891 -0.395243 0.128706 -0.634818 -0.249971 -0.847450 -0.190864 -0.180634 0.353218 -0.009756 -2.402302 -0.754345 -0.379533 -0.311529 0.324208 0.325583 0.685191 -1.365916 0.972418 -0.959676 0.924457 -2.388758 -0.960487 -0.270353 -1.768604 -0.476088 2.257192 1.176570 1.567933 -0.520484 -0.858774 -1.617063 -2.202032 -2.296879 0.388754 -0.469743 0.780753 0.759105 -0.184511 0.307398 -0.748453 -0.429929 0.719042 -0.856681 -0.176309 -0.693439 1.892623 -0.569303 0.302793 -1.841678 -0.702230 0.638164 -0.259227 0.691268 -0.543096 -2.156549 -2.474723 -1.362650 1.188499 -0.478108 0.317180 -1.014558 -0.029624 -1.502908 0.332484 -1.214851 -0.037858 -0.141127 -1.310935 -1.826334 0.590234 -0.385464 -0.759188 0.026855 -1.225764 -0.043075 0.696021 0.766709 0.688207 0.047662 -0.310310 -2.169662 -1.809195 0.158343 -0.471308 1.396612 0.956868 -0.005402 -1.274936 -0.814079 -1.980136 1.780107 -1.848005 0.299991 0.121779 0.146712 2.067097 -1.036069 -0.243397 -1.827353 0.713059 0.385357 -2.670797 2.115333 1.103647 -1.045688 -0.365085 -0.455955 0.351502 1.385773 1.588853 -1.298964 -1.099769 0.658195 -0.267314 -0.217266 -0.666027 1.118084 -1.087301 1.333459 -1.301794 -0.755844 0.498865 1.328844 -0.394656 0.416430 0.329519 -0.320013 0.520678 1.447654 1.218526 -0.214260 -1.301385 -3.061969 0.623780 -0.147398 -0.116609 0.220517 -1.456114 -0.957441 0.755536 -0.386663 1.927746 -0.236455 -0.040158 1.338746 -2.359541 -1.634888 0.234529 -0.018981 0.245392 -0.442208 0.971446 -0.689396 0.105112 0.666341 0.142496 -0.310790 -1.401028 -0.631533 0.018491 1.611998 0.161370 -0.053529 1.726443 0.312602 -0.880398 0.007399 0.203384 0.449193 -0.700013 -1.564963 -0.333735 -0.454638 0.249751 -0.967715 1.736791 -0.244243 -0.182872 0.490916 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.610818 0.061157 0.306710 0.675384 0.453753 -0.145234 0.113114 0.499257 -0.292748 -1.771478 -1.240763 0.282145 -0.138096 0.090876 0.406438 0.156093 0.414733 0.094164 -1.534977 0.263348 0.547078 0.199837 0.208202 -0.117364 0.303724 -0.315455 -0.593174 0.149113 0.271407 0.875837 -0.778939 0.230668 0.563230 0.168280 0.511480 0.503947 0.028463 -0.232439 0.174808 -0.327991 1.485261 0.212757 -0.041230 0.646616 0.589220 0.915945 -0.651749 1.214808 0.101901 -0.416705 0.681434 -0.918133 -0.515935 0.373181 -0.705957 0.712954 1.102101 0.661055 -0.491594 0.327948 -0.279517 0.189704 -0.025494 -0.654993 0.777233 0.812515 0.252716 0.463912 1.035670 -0.622125 -0.301232 0.469851 0.687654 0.410978 -0.245491 -0.563318 0.090613 -1.408923 -0.120846 -1.448209 -0.068591 -0.420254 1.950131 -0.822223 0.203541 0.723522 -0.185906 0.570373 -0.259754 0.118263 -0.867750 0.251615 -0.173392 0.807492 -0.153646 -0.005206 -0.163514 0.214383 0.321238 0.776684 -0.152094 -0.335074 -1.406506 -1.809913 -0.692194 -0.155813 0.293233 0.048069 -1.160706 -0.001387 0.902204 0.868031 -1.057345 -0.210463 0.431611 0.667268 -0.387901 0.826392 -1.136706 -0.371424 -0.082436 0.177661 0.275856 -0.207659 -0.126417 -1.057277 -0.199767 -0.106514 0.608950 -0.224769 -0.896924 -0.523955 -0.241007 -0.269521 -0.217404 -0.242575 0.154424 -0.375733 0.641501 -0.301549 0.593037 -1.182248 -0.127765 -0.725343 -0.762667 0.001305 1.537531 0.947535 0.592484 0.549244 -0.330007 -0.626500 -0.847921 -0.672494 0.158662 -0.155785 0.842703 0.100047 -0.034685 0.310725 -0.301732 -0.455457 -0.093536 -0.582453 -0.115296 -0.617874 1.080854 -0.533782 -0.186497 -1.138928 0.110838 0.854513 -0.929409 0.080361 -0.522815 -0.297001 -1.045237 -1.014259 0.681182 -0.382544 0.440375 -0.187758 0.543816 -0.666327 0.297638 -0.627505 0.102595 -0.094215 -1.084366 -0.979121 0.152491 -0.243804 -0.544305 0.307344 -0.581676 0.074432 0.575549 0.845907 0.348043 0.187978 -0.132281 -1.369463 -1.193942 -0.565748 -0.263622 0.722183 0.740294 -0.226398 -0.831064 -0.531974 -0.987004 1.033514 -0.676421 0.070108 -0.297461 -0.144939 0.723808 -0.487775 -0.034284 -0.982901 0.345015 0.424004 -1.951769 1.134347 0.497442 -0.682306 -0.483669 -1.139549 0.335533 0.415707 1.228915 -0.445166 -0.100067 0.214721 -0.296781 -0.116572 -0.609796 0.875611 -0.289395 0.531031 -0.962567 -0.644162 0.384629 0.699170 -0.042051 0.535425 0.645974 0.631760 0.448374 1.029343 0.565009 -0.394240 -0.526948 -1.795788 0.455104 1.014513 0.105688 0.278543 -0.719624 -0.847636 -0.189189 0.164217 0.957983 0.438637 0.426369 0.828529 -0.517829 -0.643657 0.076912 0.057441 0.111300 -0.713958 0.260967 -0.455404 -0.150856 0.324475 0.074003 0.392679 -0.534404 -1.285016 -0.196119 0.908621 0.574467 0.184381 0.813007 0.402787 -0.790097 0.162827 0.155088 0.556116 -0.047178 -0.485714 -0.277717 -0.368194 -0.141316 -0.427590 0.546030 0.186561 -0.098421 0.206948 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = 1.028638 0.014819 -0.162423 1.262797 0.710087 -1.216834 -0.140700 0.901414 -0.195256 -1.544631 -1.316281 0.824875 0.014233 -0.109219 0.862726 0.239711 -0.144801 0.245494 -1.615925 1.167275 -0.023317 0.464539 -0.732939 -0.942460 0.302666 0.108974 -0.494519 0.609566 0.102106 0.471211 -1.092534 0.002119 0.538160 0.000000 0.744322 0.080996 0.893919 -0.198129 -0.333429 -0.180056 2.152634 0.589962 0.292983 1.234113 0.942853 0.960192 -0.580536 1.928292 -0.227601 -0.556370 0.857311 -1.022603 -0.733960 0.079953 -1.210064 1.761289 1.249730 0.234872 -1.000445 0.723367 0.028821 -0.080543 0.431029 -0.928007 1.665976 0.954640 0.768219 0.529667 1.935711 -0.275574 -0.658701 0.831333 1.881790 0.321011 0.355828 -1.236178 -0.312452 -1.914869 0.343062 -1.556568 0.208032 -0.669195 2.165500 -1.390813 0.484984 1.306350 0.030497 0.859736 -1.125448 0.060328 -0.831133 0.117157 -0.513173 1.946517 -0.191776 -0.063347 0.063584 0.492189 0.676278 1.398812 -0.400104 0.028261 -1.284445 -2.527264 -1.232051 0.767589 -0.082445 -0.546000 -1.361689 -0.496960 0.781289 1.111972 -1.241048 -0.640119 1.117379 0.235222 0.216116 0.377640 -0.964280 -0.288820 0.068097 0.237589 0.230841 -0.473699 -0.011304 -0.782745 0.083240 0.035751 0.941277 -0.235926 -1.122174 -0.534659 -0.625090 0.075159 -0.221094 -0.970190 -0.283003 -1.463227 1.007723 -0.210409 0.613337 -1.714403 -0.390607 -0.922314 -0.955307 0.413774 2.155513 0.295171 1.317781 0.769093 -0.652401 -0.933000 -1.434158 -1.900063 0.669655 0.163360 0.725442 -0.132546 0.063038 -0.091880 0.243333 -1.039272 0.865443 -1.283330 -0.639354 -0.821271 1.440656 -0.604603 -0.285233 -1.910266 0.481904 1.370036 -0.531252 -0.181706 -0.221858 -1.365944 -0.639726 -1.032229 0.572345 0.175451 0.707009 -0.114416 0.301305 -1.344558 0.442481 -1.355257 0.748098 -0.102256 -1.424299 -0.978834 -0.268695 -0.109681 -0.134610 -0.410968 -0.821208 0.430816 0.240619 1.139930 -0.144946 0.390706 0.400935 -2.177578 -2.064812 -0.816470 0.215626 1.365738 0.673347 0.608156 -0.658612 -0.151351 -1.279854 1.127695 -1.826708 -0.410243 -0.139301 -0.432623 1.273528 -0.999944 -0.774243 -1.515777 0.414105 0.179664 -1.482684 1.687170 0.881578 -0.987023 -0.825241 -1.249553 0.302166 0.952431 2.657148 -0.697193 -0.006448 0.318129 0.193829 -0.558109 -1.007094 1.259775 -0.397477 0.697075 -1.131569 -1.089944 -0.098145 1.255093 0.149397 0.606975 0.082435 0.725232 -0.347954 1.390401 0.474567 -0.486041 -0.842265 -2.262028 0.542794 0.951519 -0.269187 0.336419 -1.135853 -1.087425 -0.293466 0.371043 1.274856 0.820092 0.981514 0.780272 -1.224231 -1.056176 0.303820 0.604819 -0.258139 -0.907249 0.624199 -0.876271 -0.153250 0.252994 -0.121903 -0.228073 -0.343746 -2.014324 -0.738265 0.484968 0.479059 -0.076878 1.329779 0.576084 -0.742862 0.186858 -0.194038 0.679574 -0.005435 -0.552474 -0.649202 -1.103130 -0.497510 -0.263985 1.041704 0.103956 -0.172553 0.624648 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.906055 -0.182776 0.141827 0.670277 0.336970 -1.206915 0.433828 0.896304 -0.154060 -1.455709 -0.711803 0.077305 -0.020570 -0.889908 0.331875 0.194215 -0.193025 0.567237 -1.796662 0.977917 0.606661 0.638577 -0.240633 -0.947427 0.232033 -0.314900 -0.764812 0.582899 -0.096184 0.949558 -0.692212 -0.265089 0.680151 0.148485 0.295446 1.012245 0.488128 0.000549 0.777627 0.566483 1.524898 0.804012 -0.355162 0.453160 0.970879 0.962401 -0.218039 1.056617 -0.877367 -0.417292 0.436957 -0.644597 -0.770865 -0.140851 -0.725498 0.717540 1.660037 0.933422 -0.637298 0.805752 -0.592944 -0.028438 0.439328 -0.176125 1.096395 1.009195 0.197290 0.427492 2.066857 -0.326907 -0.209583 0.461812 1.140266 -0.322978 0.591889 -0.501437 -0.679524 -2.167126 -0.037884 -1.761878 -0.191900 -0.036338 1.579101 -1.060922 0.584373 1.210961 0.593160 0.839681 -0.795040 -0.446611 -0.650815 0.343163 -0.531006 2.355876 -0.206824 0.509217 -0.357163 0.570857 0.653041 0.795174 -0.107350 -0.500111 -1.338933 -2.376350 -0.723893 -0.263897 -0.510459 -0.345669 -1.634341 -0.438623 1.314373 0.919826 -1.679718 0.024674 0.885888 0.445272 0.349965 -0.243541 -0.992988 0.275258 -0.410556 -0.015136 -0.001218 -0.660994 -0.495947 -0.780262 0.241410 0.228453 0.136253 -0.425376 -1.273638 -0.081284 -0.069792 -0.318144 -0.076960 -0.022207 -0.130099 -1.289658 0.378490 -1.106943 0.735002 -1.558441 0.043882 -0.475687 -1.154729 0.075399 1.212645 0.345835 0.259966 0.038056 -0.578923 -0.633606 -1.111313 -1.903343 0.446308 -0.496289 0.783137 -0.411840 -0.008330 -0.541640 -0.121527 -0.567837 0.258830 -0.678074 0.170366 -0.553049 1.878614 -0.394706 -0.231353 -0.978518 -0.225014 1.312010 0.295147 -0.023386 -0.574648 -0.588645 -1.042455 -1.019322 0.751597 -0.023441 0.006912 -0.599878 0.170846 -1.314249 0.764598 -0.550409 0.621576 -0.235251 -0.622452 -1.003786 -0.104325 -0.192776 -0.099428 -0.398490 -0.586800 -0.066608 0.096384 0.218445 0.105199 0.059344 0.196162 -1.520530 -1.508967 -0.259154 0.377992 1.084734 0.538137 0.537824 -0.520204 0.005185 -1.199194 1.140511 -0.989265 -0.140370 -0.070408 -0.501948 1.721906 -0.380064 -0.676640 -1.285120 0.467309 -0.154739 -0.309499 1.984756 0.852236 -0.892331 -0.542684 -0.736238 0.119714 0.980964 1.588524 -0.676010 -0.407706 0.498422 -0.338307 -0.334657 -0.521510 0.847018 -0.711805 1.363633 -0.850455 -0.570004 0.213288 1.293222 -0.286431 0.582516 -0.287186 0.102820 -0.345157 1.002318 0.325905 -0.200066 -0.876059 -1.475939 0.372021 -0.287594 0.197681 -0.044340 -0.591037 -0.901818 0.120696 0.761510 1.331053 1.401911 -0.023011 0.679114 -1.214140 -1.190364 0.041885 0.488606 0.247576 -0.875878 0.409952 -0.519673 0.049628 0.357570 0.404323 0.485674 -0.892592 -1.160059 -0.306283 0.783171 0.439313 -0.986249 1.179228 0.083124 -0.440335 0.006071 -0.115837 0.640319 0.112571 0.246730 -0.346980 -0.831314 0.246012 -0.392033 1.706456 -0.059450 0.156725 0.707556 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.243980 -0.194459 0.149113 0.285319 0.321480 -0.232066 0.101857 0.073156 0.092857 -0.541206 -0.147929 0.185110 -0.076472 -0.197219 0.060905 0.066450 0.164251 0.283273 -0.142734 0.233706 0.046263 0.196464 -0.021752 -0.226947 0.076820 -0.120238 0.056225 0.116219 0.093675 0.293364 -0.312924 -0.066678 0.236849 0.066756 0.142618 0.317556 0.464319 -0.064030 -0.029564 -0.008094 0.653582 -0.002279 0.130453 0.375288 0.327269 0.331795 0.050464 0.523713 0.334969 -0.109242 0.162228 -0.288827 -0.139110 -0.053523 -0.470923 0.389651 0.272309 0.177405 -0.330682 0.195763 0.093855 0.072745 0.104678 -0.155260 0.263450 0.249910 -0.044706 0.190751 0.692670 -0.207151 -0.153574 0.244347 0.551498 0.230506 0.387468 -0.223688 -0.123708 -0.557291 -0.165176 -0.119441 0.169246 -0.163203 0.498996 -0.353296 0.148718 0.468064 -0.012197 0.234434 -0.065292 -0.130192 -0.376695 0.183883 0.044960 0.439038 0.001698 0.088677 -0.188564 0.057411 0.039605 0.287977 0.130096 -0.247443 -0.310026 -0.787590 -0.383735 -0.174788 -0.118604 -0.220511 -0.502689 -0.025853 0.238892 0.429294 -0.513063 -0.066075 0.206566 0.089691 0.074642 -0.226454 -0.097374 -0.057602 0.018302 0.039552 -0.173317 -0.216169 -0.195532 -0.264998 -0.001548 0.000512 0.169743 -0.223598 -0.025597 -0.140059 -0.160751 0.246096 -0.071294 -0.148569 -0.034181 -0.536254 0.163126 -0.162868 0.183223 -0.308655 -0.190352 -0.189288 -0.280533 -0.076724 0.892911 -0.224519 0.519302 0.118600 -0.278897 -0.339815 -0.278737 -0.611741 0.204752 -0.289455 0.166349 0.183275 0.010991 -0.100265 -0.072788 -0.315031 0.103089 -0.284336 -0.035071 -0.123139 -0.031356 -0.340602 -0.021709 -0.536679 0.039820 0.567468 0.093809 -0.061112 -0.226906 -0.358663 -0.192845 -0.383202 0.227726 -0.124104 0.191202 -0.043035 0.023421 -0.283640 0.179565 -0.239141 0.126736 -0.138461 -0.354009 -0.378550 0.024730 -0.189580 0.030177 0.063419 -0.293011 0.180768 -0.235698 0.153073 -0.012385 0.057169 -0.048886 -0.695030 -0.561561 -0.213418 0.118389 0.331264 0.030110 0.205156 -0.253099 -0.187843 -0.296413 0.273651 -0.708303 -0.026192 0.205019 -0.144341 0.384922 -0.176471 -0.084996 -0.412023 0.213798 0.066060 -0.345672 0.486178 0.271566 -0.400417 -0.236754 -0.286182 0.097705 0.233178 0.649970 -0.240915 -0.047095 0.281089 -0.000131 -0.102449 -0.341323 0.267731 -0.067995 0.446144 -0.444262 -0.335453 0.006811 0.459908 -0.133891 0.004181 0.130332 0.133558 -0.174981 0.503035 0.150462 0.196752 -0.344518 -0.561773 0.097114 0.239039 0.163286 0.313006 -0.381941 -0.137365 0.123349 0.085502 0.450617 0.141941 0.326958 0.320131 -0.377645 -0.367675 0.251811 -0.100874 0.163797 -0.303741 0.343159 -0.312362 -0.133739 -0.136473 0.139874 -0.094504 -0.017820 -0.176779 0.001990 0.235290 0.232731 -0.065139 0.369162 0.084073 -0.252968 0.180372 -0.036215 0.272747 0.011052 -0.145061 -0.086271 -0.197671 -0.004102 -0.160880 0.549230 -0.192317 0.076028 0.049366 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.482090 -0.133397 0.270358 0.309048 0.474278 -0.271974 0.152108 0.287469 -0.083834 -0.857157 -0.541076 0.007201 -0.124702 -0.297231 0.273485 0.103683 0.277536 0.181682 -0.604308 0.291726 0.166493 0.135496 -0.072807 -0.197644 0.137266 -0.285752 -0.321538 0.268927 0.013948 0.412688 -0.409589 -0.002642 0.320805 0.161627 0.272309 0.432591 0.258739 -0.171235 0.277409 0.033065 1.009702 0.055817 0.117997 0.439182 0.562187 0.490064 -0.324924 0.851114 0.059364 -0.144093 0.524096 -0.640080 -0.277344 0.134564 -0.665844 0.454148 0.642668 0.183563 -0.430385 0.322734 -0.149413 0.136459 0.092873 -0.335599 0.541484 0.496264 0.113542 0.204630 0.921479 -0.254585 -0.215401 0.410277 0.637887 0.236731 0.020998 -0.318973 0.076654 -0.917814 -0.048159 -0.514476 0.164733 -0.337578 0.981009 -0.365920 0.059258 0.626201 -0.001248 0.362959 -0.200220 -0.117606 -0.499615 0.282673 -0.055539 0.615625 -0.115322 0.195318 -0.168516 0.071263 0.105096 0.491012 -0.099221 -0.218496 -0.826369 -1.243857 -0.590385 -0.108089 -0.025512 -0.319010 -0.779174 0.017592 0.526911 0.421635 -0.624023 -0.128628 0.286344 0.242690 -0.134170 0.279371 -0.598168 -0.332785 -0.001928 0.202762 -0.142222 -0.123128 -0.139762 -0.814253 0.041723 0.012081 0.291885 -0.330274 -0.327976 -0.165112 -0.141417 -0.007973 -0.123522 -0.164811 -0.012565 -0.527489 0.277365 -0.228710 0.295121 -0.722314 -0.173943 -0.496744 -0.523219 -0.009778 1.115546 0.236723 0.533831 0.419456 -0.273891 -0.413165 -0.503052 -0.720393 0.072367 -0.380540 0.469555 -0.011580 0.014282 -0.099904 -0.085993 -0.410452 0.023657 -0.391194 -0.018641 -0.425274 0.523247 -0.364294 -0.115540 -0.709306 0.079951 0.776935 -0.260429 -0.080692 -0.276103 -0.255342 -0.374556 -0.614110 0.309126 -0.152550 0.235155 -0.111035 0.235409 -0.554172 0.273663 -0.295740 0.082053 -0.164595 -0.599649 -0.500231 0.029161 -0.175743 -0.127035 0.000414 -0.362292 0.148520 0.130515 0.400490 0.135467 0.154030 -0.175882 -0.844499 -0.885034 -0.373066 0.158382 0.489622 0.383023 0.119263 -0.305407 -0.235691 -0.545701 0.546877 -0.684257 -0.075279 0.148459 -0.266649 0.522086 -0.268667 -0.191694 -0.597690 0.215554 -0.005465 -0.841281 0.706599 0.329880 -0.618736 -0.470141 -0.774011 0.187229 0.286005 0.931591 -0.163738 0.120808 0.257772 0.020778 -0.154234 -0.404433 0.476291 -0.079397 0.567923 -0.682289 -0.546682 0.210082 0.676138 -0.183000 0.191059 0.144976 0.448072 0.094467 0.695348 0.146532 -0.081510 -0.355496 -1.053629 0.070705 0.489281 0.072470 0.298616 -0.468858 -0.459621 -0.074147 0.115367 0.692339 0.373464 0.458491 0.446520 -0.274000 -0.501395 0.172167 0.080291 0.114360 -0.529465 0.272859 -0.366465 -0.176038 -0.029622 0.209043 0.175330 -0.357082 -0.768507 -0.163699 0.443325 0.310001 -0.132963 0.514246 0.196053 -0.295643 0.095344 0.022546 0.458575 0.234538 -0.171997 -0.244242 -0.404086 -0.108442 -0.195460 0.691019 -0.005392 0.197444 0.216240 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 1.045171 -0.209911 0.227198 1.045617 0.202441 -1.859197 0.748027 1.391850 -0.478757 -1.926528 -0.672666 -0.265206 0.071270 -1.218258 0.317259 0.157751 -0.680268 0.679114 -3.219558 1.349615 1.055943 0.910328 -0.228578 -1.657072 0.250368 -0.522574 -0.793768 1.281910 -0.315628 1.427072 -0.831702 -0.507287 0.974650 0.332359 0.482841 1.537775 0.716337 0.194533 0.915118 1.154442 1.913129 1.634864 -1.293404 0.060351 1.234430 1.465833 0.325700 0.276137 -2.339111 -0.623048 -0.176278 -0.288134 -1.173409 -0.699886 -0.744480 0.623258 2.633328 1.898436 -0.795832 1.269426 -1.278789 -0.271965 0.730605 0.363359 1.642485 0.947569 0.600317 0.601288 2.821613 -0.661841 -0.276766 0.515422 1.283171 -1.048855 0.864237 -0.308803 -1.544615 -3.801456 0.196818 -3.255994 -0.912404 0.593856 1.419973 -1.401234 0.889223 1.671797 1.026859 1.202661 -1.536925 -0.766750 -0.866891 0.229576 -0.928600 4.232508 -0.077952 0.621851 -0.073501 1.299599 1.464154 1.209433 0.058075 -0.825232 -1.418886 -3.337109 -0.566084 -0.482019 -0.810059 -0.311706 -1.960255 -0.968848 2.380021 1.387516 -2.384512 0.280793 1.440044 0.807059 0.779350 -1.684939 -1.070831 1.124206 -0.869689 -0.382292 0.569601 -1.266542 -0.596527 -0.157936 0.790355 0.431276 -0.005421 -0.291021 -2.240877 0.025493 0.336318 -0.897499 -0.004174 0.106261 -0.318232 -1.738699 0.428914 -2.153719 1.414862 -2.155267 0.973532 -0.281124 -1.582741 0.175934 0.464950 0.593236 -0.711368 -0.386642 -0.835534 -0.323488 -1.469611 -3.318094 0.806141 0.094959 0.882446 -0.943715 -0.221105 -0.731765 -0.331318 -0.531743 0.718643 -0.813522 0.257818 -0.468229 3.016325 -0.006353 -0.435679 -0.704700 -0.307970 1.627747 1.044608 0.382577 -0.940798 -0.731267 -1.690189 -1.399174 1.152334 0.084832 -0.651543 -1.015068 -0.159484 -2.202782 1.542575 -0.752966 1.416356 -0.315277 -0.542645 -1.435864 -0.172897 -0.248774 -0.064940 -0.597041 -0.758004 -0.433056 -0.157802 -0.648197 0.074165 -0.225525 0.817156 -1.614232 -1.791257 0.119998 0.602549 1.564960 0.377527 0.823982 -0.591256 0.269545 -1.547421 1.745912 -0.383436 -0.091543 -0.460106 -0.969094 2.698215 -0.350217 -1.175163 -1.481008 0.747977 -0.128601 1.245071 3.406452 1.593463 -1.016183 -0.734065 -0.329576 -0.127181 1.511909 2.032096 -1.343947 -1.047710 0.598890 -0.578743 -0.452263 -0.237640 1.046753 -1.120749 1.775938 -1.051648 -0.701338 0.136284 1.777496 -0.272026 1.198052 -0.650237 -0.368842 -1.097807 1.328836 0.402722 -0.134061 -1.235004 -1.254243 0.760448 -1.740568 0.237048 -0.715241 -0.397371 -1.406817 0.235201 1.546846 1.828016 2.822109 -1.306156 0.943076 -1.962230 -1.745465 -0.529854 0.679242 0.269104 -1.206461 0.433497 -0.589360 0.439290 0.605250 0.387784 0.754819 -1.251947 -1.165609 -0.503748 0.856650 0.503270 -1.911958 1.801048 -0.118900 -0.502726 -0.345606 -0.096140 0.518717 0.426183 0.787144 -0.572248 -1.189212 0.769915 -0.425705 2.173242 0.049729 0.073686 1.304981 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = 0.716108 -0.309027 0.121971 0.542664 0.512605 -0.628035 0.201594 0.423867 0.165938 -1.194244 -0.560985 0.442081 -0.078161 -0.473837 0.218619 0.201881 0.149808 0.479704 -0.706250 0.622031 0.245039 0.456306 -0.115436 -0.501464 0.217179 -0.201525 -0.237418 0.144968 0.160364 0.648788 -0.616770 -0.131155 0.515478 0.027149 0.185755 0.653606 0.620060 -0.087172 0.244894 0.049689 1.277795 0.242473 0.179711 0.763288 0.677597 0.662387 -0.234285 1.420059 0.308609 -0.311582 0.574256 -0.662263 -0.469385 0.018131 -0.764925 0.834819 0.899870 0.365930 -0.572206 0.417432 0.039212 0.098314 0.233432 -0.380015 0.610227 0.818008 0.001795 0.362294 1.512537 -0.299825 -0.263413 0.505600 1.055035 0.313672 0.716032 -0.636394 -0.317607 -1.004693 -0.218749 -0.558698 0.192840 -0.413870 1.377679 -0.847755 0.346344 0.894691 0.198161 0.579555 -0.247468 -0.193662 -0.601258 0.377172 -0.140120 1.201335 -0.158122 0.330907 -0.467447 0.137222 0.154305 0.589221 0.097217 -0.389656 -0.945973 -1.608836 -0.742014 -0.257444 -0.216094 -0.269472 -1.252550 -0.087042 0.472322 0.715341 -1.168101 -0.109219 0.537306 0.262866 0.388422 0.184943 -0.579391 -0.132671 -0.010715 0.054159 -0.334096 -0.403327 -0.427784 -0.758998 -0.016593 0.052298 0.229065 -0.456040 -0.513330 -0.228172 -0.336854 0.257788 -0.076101 -0.179952 0.027410 -1.138183 0.362203 -0.380241 0.319812 -0.975513 -0.513216 -0.425794 -0.754033 -0.088689 1.698987 -0.138568 0.984711 0.200260 -0.496086 -0.819504 -0.751027 -1.145843 0.279051 -0.653375 0.507853 0.178114 0.074640 -0.239501 -0.087811 -0.564244 0.071133 -0.555400 0.034841 -0.389514 0.687239 -0.683778 -0.024951 -1.088301 -0.111880 1.006402 0.030048 -0.108840 -0.345927 -0.754568 -0.604048 -0.781457 0.506994 -0.176448 0.393113 -0.264674 0.195107 -0.703088 0.262361 -0.478183 0.229631 -0.184095 -0.731884 -0.763020 0.021303 -0.245026 -0.016950 -0.052038 -0.569013 0.206946 -0.091393 0.590029 0.077072 0.160551 -0.133608 -1.530719 -1.248352 -0.420570 0.156346 0.833589 0.304288 0.320805 -0.435932 -0.270833 -0.841094 0.656504 -1.429365 -0.108842 0.189876 -0.162778 0.975079 -0.384945 -0.289698 -1.122061 0.351700 0.006092 -0.849053 1.139195 0.457091 -0.723904 -0.391503 -0.669618 0.192185 0.602812 1.257845 -0.429082 -0.194492 0.476273 -0.135460 -0.228501 -0.655669 0.658917 -0.383977 0.990091 -0.758153 -0.551466 0.081601 0.953066 -0.271463 0.149298 0.130575 0.247074 -0.105978 0.880964 0.349877 0.022849 -0.708429 -1.440211 0.211503 0.427052 0.163233 0.393128 -0.779377 -0.472219 0.205834 0.295989 0.963715 0.420233 0.725498 0.577437 -0.869242 -0.801450 0.447637 0.073832 0.271244 -0.568826 0.473006 -0.526701 -0.174444 0.033709 0.262024 0.030595 -0.412245 -0.675199 -0.101807 0.647773 0.388669 -0.226633 0.783819 0.237245 -0.458666 0.293667 -0.101509 0.591304 -0.111492 -0.180768 -0.140558 -0.462935 -0.068697 -0.334959 1.212716 -0.219525 0.089820 0.187944 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = 0.703488 -0.305928 0.115091 0.543594 0.479040 -0.618976 0.221438 0.427682 0.182743 -1.177503 -0.546719 0.472230 -0.072436 -0.466156 0.197434 0.176711 0.160236 0.503681 -0.687775 0.594717 0.230512 0.457174 -0.142452 -0.493107 0.191566 -0.187220 -0.242172 0.161672 0.167018 0.660801 -0.590137 -0.151790 0.523493 0.009684 0.170308 0.677820 0.655730 -0.061827 0.229140 0.037265 1.265048 0.246826 0.176040 0.774836 0.660407 0.675593 -0.211902 1.420505 0.317590 -0.319628 0.566313 -0.669535 -0.470597 -0.013804 -0.757965 0.809867 0.899420 0.390982 -0.580722 0.451307 0.049015 0.095120 0.243306 -0.366995 0.585055 0.825213 -0.024032 0.370049 1.496460 -0.324154 -0.258050 0.488971 1.039079 0.313207 0.702312 -0.638666 -0.325759 -0.997055 -0.213205 -0.560128 0.179890 -0.396426 1.380245 -0.858923 0.362131 0.895345 0.180173 0.555165 -0.251675 -0.208812 -0.605874 0.349754 -0.128420 1.200574 -0.142911 0.318383 -0.442913 0.140773 0.161064 0.581032 0.093713 -0.408503 -0.933306 -1.606383 -0.728535 -0.269419 -0.237445 -0.260120 -1.210046 -0.128487 0.474470 0.699658 -1.176315 -0.111784 0.542129 0.248451 0.375541 0.189586 -0.563140 -0.100242 -0.014223 0.032213 -0.294393 -0.423044 -0.421074 -0.706590 -0.036422 0.054037 0.213172 -0.427655 -0.525378 -0.228905 -0.323593 0.266713 -0.083306 -0.184204 0.002852 -1.115010 0.362973 -0.401199 0.336944 -0.967980 -0.511753 -0.395347 -0.756354 -0.101987 1.695054 -0.153994 0.995738 0.172012 -0.501020 -0.804187 -0.737977 -1.164630 0.316690 -0.624386 0.513081 0.172350 0.065185 -0.248486 -0.106416 -0.557703 0.069425 -0.539186 0.036155 -0.351343 0.684380 -0.670126 -0.036529 -1.079472 -0.085310 0.994399 0.059608 -0.106601 -0.367695 -0.775896 -0.587196 -0.752648 0.520658 -0.171470 0.374814 -0.231290 0.156298 -0.687492 0.249294 -0.483187 0.237846 -0.192291 -0.719274 -0.779037 0.044907 -0.251338 -0.005352 -0.025226 -0.569046 0.201830 -0.097611 0.591836 0.062913 0.160503 -0.097932 -1.513830 -1.222179 -0.415350 0.146670 0.835904 0.313577 0.340360 -0.423286 -0.257602 -0.830409 0.642265 -1.426437 -0.095143 0.190278 -0.165557 0.981670 -0.381158 -0.278026 -1.123310 0.363457 0.047423 -0.856183 1.125618 0.470562 -0.714144 -0.384339 -0.629112 0.170746 0.608888 1.244224 -0.449089 -0.233341 0.502969 -0.162051 -0.216302 -0.658720 0.632111 -0.357226 0.975554 -0.756325 -0.525109 0.096512 0.931112 -0.262319 0.149159 0.141585 0.232267 -0.117972 0.893847 0.342154 0.033154 -0.708591 -1.440189 0.251099 0.434935 0.169119 0.394282 -0.778637 -0.450556 0.233429 0.284624 0.935545 0.417196 0.693202 0.587988 -0.877144 -0.808358 0.430903 0.064682 0.301620 -0.563396 0.478469 -0.520775 -0.141786 0.021733 0.259208 0.033238 -0.383098 -0.664191 -0.083916 0.636406 0.370695 -0.226805 0.799322 0.189889 -0.465902 0.302521 -0.118361 0.583405 -0.111935 -0.198644 -0.129744 -0.455701 -0.025391 -0.348360 1.207133 -0.226351 0.079445 0.213684 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = 0.579050 -0.200546 0.018911 0.484932 0.386748 -0.535741 0.152787 0.320532 0.055499 -1.011596 -0.516150 0.373547 -0.044025 -0.403849 0.212383 0.204717 0.100907 0.374223 -0.563505 0.529094 0.212149 0.315943 -0.170701 -0.365181 0.157963 -0.202273 -0.251917 0.135216 0.098202 0.551740 -0.496461 -0.042847 0.434988 0.017781 0.170625 0.539564 0.436908 -0.065181 0.238136 0.085348 1.061481 0.192848 0.156905 0.581841 0.558904 0.564952 -0.261210 1.176729 0.138269 -0.264898 0.530204 -0.481113 -0.372544 0.051984 -0.639406 0.657699 0.722284 0.255809 -0.466091 0.349283 -0.076620 0.084204 0.195698 -0.292488 0.590838 0.690004 0.057426 0.325252 1.235006 -0.228237 -0.201590 0.432450 0.831380 0.201414 0.548177 -0.428949 -0.266510 -0.765281 -0.182717 -0.490059 0.132521 -0.306897 1.246555 -0.700872 0.202865 0.701699 0.208712 0.521691 -0.256213 -0.131234 -0.499974 0.292840 -0.165643 0.983135 -0.088062 0.295225 -0.422451 0.120516 0.130399 0.487711 -0.024479 -0.329496 -0.832552 -1.358534 -0.666273 -0.201009 -0.171039 -0.213606 -1.100796 -0.091990 0.442048 0.665873 -0.985487 -0.069902 0.451103 0.215605 0.345308 0.264083 -0.597492 -0.100047 0.008801 0.070968 -0.215533 -0.249091 -0.318874 -0.692658 0.027805 0.015525 0.195742 -0.356354 -0.528009 -0.177839 -0.241451 0.126651 -0.054094 -0.119553 0.053490 -0.896308 0.314366 -0.301240 0.281670 -0.882713 -0.400170 -0.403182 -0.708827 -0.052904 1.368255 0.066966 0.836465 0.150636 -0.408660 -0.653638 -0.714287 -0.993516 0.195362 -0.548137 0.417755 0.096558 0.059891 -0.182328 -0.077540 -0.407599 0.131919 -0.477346 0.026833 -0.340277 0.693798 -0.512246 -0.054325 -0.907279 -0.148911 0.752946 0.010074 -0.048845 -0.272079 -0.641471 -0.569099 -0.641686 0.425687 -0.141701 0.319977 -0.245649 0.149035 -0.632347 0.206699 -0.399535 0.164147 -0.148984 -0.579751 -0.635142 -0.003773 -0.164823 -0.118690 -0.103753 -0.473610 0.148684 0.059416 0.412629 0.106769 0.147489 -0.135291 -1.178096 -1.020123 -0.297318 0.092832 0.672523 0.395512 0.251227 -0.383456 -0.213193 -0.780947 0.567358 -1.160818 -0.081434 0.169023 -0.163797 0.823329 -0.364002 -0.292208 -0.869730 0.284138 -0.036268 -0.842111 0.930112 0.415190 -0.608480 -0.312620 -0.559909 0.180973 0.504049 1.039547 -0.342088 -0.099295 0.353643 -0.088217 -0.183314 -0.471872 0.562693 -0.358059 0.787395 -0.618073 -0.442018 0.124437 0.795832 -0.208379 0.111786 0.042743 0.198013 -0.003038 0.689044 0.304667 -0.046495 -0.563420 -1.238296 0.169763 0.227433 0.055061 0.326038 -0.602579 -0.404100 0.127312 0.125130 0.814841 0.229598 0.511561 0.482119 -0.716475 -0.683602 0.299490 0.096580 0.179252 -0.488397 0.425724 -0.419803 -0.134152 0.063601 0.230216 0.037861 -0.401664 -0.596648 -0.095202 0.547910 0.315926 -0.194487 0.656228 0.201238 -0.365423 0.175539 -0.067416 0.468260 -0.061359 -0.260976 -0.166966 -0.404863 -0.038461 -0.285185 0.979565 -0.168357 0.093547 0.220755 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 0.785326 0.053975 0.104464 0.473538 0.443871 -0.625928 0.226452 0.642708 0.083593 -1.390767 -0.845596 0.360437 -0.045998 -0.449252 0.313609 0.248510 0.201896 0.727865 -0.902834 0.575708 0.430715 0.610065 -0.081164 -0.557491 0.254337 -0.118548 -0.783918 -0.052220 0.267441 0.819139 -0.712043 -0.121569 0.624506 -0.013495 0.136904 0.705106 0.567312 -0.086917 0.505546 -0.071850 1.390472 0.300223 0.225394 0.869823 0.670744 0.746555 -0.559122 1.427293 -0.144289 -0.435099 0.560951 -1.015033 -0.547738 0.215405 -0.692238 0.968843 1.126531 0.611022 -0.595775 0.550188 0.083644 0.178001 0.259211 -0.738539 0.561486 1.082331 -0.158850 0.443918 1.598280 -0.301407 -0.156554 0.356580 0.928074 0.174480 0.528311 -0.648051 -0.029743 -1.153865 -0.227708 -1.020026 0.291866 -0.423266 1.960314 -1.065372 0.583898 1.100617 0.273356 0.634413 -0.246365 -0.250105 -0.612943 0.373478 -0.329525 1.229274 -0.157460 0.311935 -0.574468 0.194756 0.180940 0.519087 -0.068839 -0.300949 -1.320233 -1.786349 -0.818116 -0.204104 -0.207361 -0.142779 -1.336355 -0.195395 0.745767 0.871779 -1.437972 -0.085956 0.563500 0.357168 -0.046764 0.561624 -0.967595 -0.147431 -0.234169 0.011006 -0.402848 -0.472716 -0.444266 -0.884202 -0.342980 0.007041 0.301620 -0.439602 -0.747063 -0.297291 -0.437176 -0.005581 -0.151431 -0.074990 0.095383 -1.097350 0.479197 -0.497392 0.309666 -1.135236 -0.520284 -0.399499 -1.042294 -0.130922 1.713510 0.029581 0.856381 0.247850 -0.477190 -1.000592 -0.874788 -0.969790 0.406506 -0.635603 0.818220 0.185001 0.069734 -0.304404 -0.168054 -0.596107 -0.030945 -0.609991 0.070640 -0.463083 1.481552 -0.820141 -0.106488 -1.337332 -0.089397 1.174419 -0.243620 -0.280306 -0.455694 -0.180248 -0.742877 -0.809790 0.636428 -0.203073 0.548857 -0.294556 0.394326 -0.681740 0.225387 -0.571623 0.204202 -0.153973 -0.746939 -0.914446 0.061040 -0.222745 -0.309525 0.001067 -0.593077 0.259194 0.244492 0.701754 0.034520 0.094321 -0.040400 -1.604550 -1.348334 -0.532372 0.033778 0.691632 0.676169 0.303084 -0.632595 -0.259496 -0.910684 0.816816 -1.332120 -0.083591 -0.007220 0.000000 1.055755 -0.479101 -0.312508 -1.383609 0.337083 0.032924 -1.305501 1.119396 0.325957 -0.747353 -0.328409 -0.952718 0.311886 0.650804 1.320348 -0.397719 -0.212129 0.535308 -0.436512 -0.205408 -0.864757 0.745357 -0.451904 1.082622 -0.777318 -0.410515 0.260582 0.966854 -0.294538 0.427024 0.319465 0.380359 0.175361 0.930840 0.448096 -0.244135 -0.741933 -1.484503 0.284271 0.571622 0.304333 0.226943 -0.682753 -0.524660 0.193453 0.387051 0.984558 0.585021 0.848615 0.652584 -0.922559 -0.884343 0.578219 0.305217 0.418003 -0.707956 0.325660 -0.498418 -0.117017 0.201269 0.354221 0.329707 -0.683254 -1.132983 -0.139305 0.926387 0.384439 -0.240533 0.921725 0.212231 -0.566622 0.469296 -0.209997 0.830462 -0.263504 -0.141468 -0.143885 -0.443613 -0.105392 -0.505943 1.396992 -0.233986 -0.038231 0.350990 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = 1.519398 -0.109469 -0.327352 1.422912 0.671901 -1.176249 0.236270 0.841709 -0.111303 -2.613618 -1.533615 1.855219 0.035549 -0.672420 0.320838 0.597639 0.188807 0.550695 -2.315950 1.246425 0.566465 0.464378 -0.612024 -0.798414 0.334685 -0.675158 0.144601 0.509401 0.189756 1.427649 -1.135009 0.205433 1.133864 0.057590 0.852097 1.319188 0.292923 -0.215712 0.142848 -0.189230 2.575150 1.055523 0.107348 1.335517 1.168255 1.547838 -0.322400 2.186222 0.228822 -0.772555 0.685339 0.100074 -1.181990 0.030549 -1.550947 1.279686 1.387209 0.296558 -1.098168 0.768346 -0.320988 0.022671 0.516273 -0.344052 1.766000 1.132250 0.730267 0.933087 2.674630 -0.730333 -0.398274 1.108235 1.791833 0.454925 1.441873 -0.782574 -1.295251 -0.915594 -0.200815 -2.019302 -0.180086 -0.535338 3.151791 -1.656436 0.270149 0.984599 0.584279 1.495205 -0.913425 -0.275403 -1.303728 0.426780 -0.722355 2.673200 0.010298 0.733837 -0.644668 0.541906 0.434097 1.293151 -0.228053 -1.123308 -1.237698 -3.180245 -1.040722 -0.661027 -0.127002 -0.114587 -2.367714 -0.212662 0.593157 2.396368 -2.347353 -0.201858 1.122902 0.311303 1.084822 0.374307 -1.313513 -0.012652 -0.001617 0.147815 0.066744 -0.579445 -0.545707 -0.747908 0.299441 -0.012714 0.621272 -0.289312 -2.003640 -0.581377 -0.101308 0.014043 -0.111619 -0.075437 0.372379 -1.831983 0.863044 -0.760075 0.926905 -2.154825 -0.538084 -0.991068 -1.582594 -0.211335 2.081851 0.992671 1.737941 0.042151 -0.349848 -1.135177 -2.039045 -2.579406 0.608022 -0.793637 0.614564 0.083371 0.072938 -0.015614 -0.538313 -0.610642 0.676245 -1.156085 -0.112191 -0.736959 2.190467 -0.697919 -0.172604 -1.555064 -0.511608 0.944536 0.267372 0.453582 -0.633648 -2.450090 -1.919627 -1.469645 1.182270 -0.421670 0.408894 -0.724094 0.051506 -1.170613 0.307966 -1.118095 0.510481 -0.406756 -1.136538 -1.589420 -0.100874 -0.325602 -0.509179 -0.347728 -1.235278 0.179184 0.843457 0.582998 0.288434 0.300416 -0.147607 -2.293993 -1.901436 -0.052141 -0.053975 1.714397 1.229474 0.236493 -1.299586 -0.498875 -2.005993 1.403049 -2.287301 0.108840 0.062006 -0.643987 1.972344 -0.994853 -0.609111 -1.621059 0.760177 0.035104 -2.328887 2.418918 1.388440 -1.296641 -0.581026 -0.799956 0.415195 1.205823 2.223373 -1.116095 -0.570545 0.584353 -0.369682 -0.336492 -0.543731 1.367459 -0.912720 1.451913 -1.480123 -1.013392 0.601805 1.525552 -0.229490 0.360541 -0.015971 0.080936 0.380833 1.647682 0.935309 -0.009840 -1.655288 -3.300142 0.597405 -0.227576 -0.191305 0.482695 -0.956349 -1.314587 0.170520 -0.345488 1.943120 -0.114521 0.181263 1.211271 -1.973399 -1.744955 -0.030396 0.043965 0.211267 -0.764139 1.062037 -0.952594 -0.089514 0.106269 0.403428 -0.164198 -0.974122 -0.850370 -0.024629 1.221587 0.915889 -0.398641 1.652553 0.580012 -0.883256 0.038099 -0.097783 0.595821 -0.182822 -1.379901 -0.612114 -0.896413 0.168219 -0.674891 1.761040 -0.016323 0.446221 0.488373 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = 0.037250 -0.076432 0.000653 0.261497 0.139988 -0.049801 0.014659 -0.050808 -0.035437 -0.435086 -0.165498 0.111739 -0.025930 0.022401 0.090726 0.069205 0.094636 0.148130 -0.024747 0.080338 0.061229 0.044652 -0.010490 -0.013481 0.031614 -0.124144 0.066644 0.058781 0.106269 0.236598 -0.201057 0.057307 0.193890 0.011277 0.096312 0.179883 0.294489 0.008732 -0.139847 -0.006307 0.413984 -0.051534 0.072797 0.181815 0.118407 0.251005 0.017807 0.263111 0.151586 -0.147751 0.112659 -0.133723 -0.030281 -0.032146 -0.281415 0.226312 0.102451 0.138038 -0.219250 0.093876 -0.017983 0.043361 0.033665 -0.102549 0.199855 0.087619 0.069400 0.166953 0.308022 -0.188098 -0.114302 0.185580 0.216594 0.127910 0.199963 -0.012953 -0.077043 -0.308669 -0.123328 -0.060434 -0.007782 -0.027051 0.369322 -0.256628 -0.018702 0.260214 -0.074914 0.179818 -0.054092 0.000370 -0.280528 0.038813 0.051021 0.174895 0.144302 -0.038092 -0.102434 0.060502 0.056297 0.209145 0.044769 -0.173310 -0.232953 -0.478148 -0.289235 -0.119232 0.050332 -0.015453 -0.318999 -0.066375 0.211865 0.383906 -0.326753 0.022274 0.158298 0.129067 0.080660 -0.124558 -0.141049 0.021491 0.078889 -0.008358 0.065788 -0.083549 -0.041984 -0.122318 0.063479 -0.078016 0.126607 -0.082777 -0.047438 -0.165535 -0.072239 0.107068 -0.038149 -0.085533 0.062250 -0.249325 0.178234 -0.037496 0.152151 -0.221479 -0.042471 -0.094071 -0.229333 -0.071903 0.590499 0.042187 0.368230 0.013223 -0.262159 -0.177717 -0.240289 -0.444256 0.114853 -0.039864 0.095030 0.178678 -0.029916 0.096148 -0.082020 -0.078490 0.136932 -0.167342 -0.046546 0.014337 -0.064361 -0.161103 -0.038359 -0.386209 -0.004369 0.192316 0.001700 0.072603 -0.134210 -0.225753 -0.197193 -0.231150 0.175341 -0.116710 0.137951 -0.006606 -0.045871 -0.237775 0.086810 -0.217665 0.036961 -0.066377 -0.256165 -0.272335 0.029218 -0.102422 -0.117479 0.090760 -0.221179 0.070155 -0.060918 -0.029993 0.071688 0.011197 -0.014054 -0.332609 -0.298771 -0.073946 -0.104938 0.166658 0.111661 0.046937 -0.209841 -0.149774 -0.230080 0.188929 -0.379889 0.019571 0.078116 -0.087870 0.199417 -0.154130 -0.087209 -0.176765 0.137023 0.130100 -0.355083 0.249006 0.231677 -0.182665 -0.087575 -0.060126 0.045317 0.159054 0.351619 -0.177479 -0.015109 0.111112 0.001156 -0.007113 -0.126805 0.184746 -0.081055 0.137416 -0.255236 -0.184559 0.025563 0.253055 -0.011034 0.030760 0.147965 0.090800 -0.028815 0.279552 0.144132 0.061988 -0.163972 -0.349042 0.149633 0.053349 -0.003941 0.197819 -0.224849 -0.044131 0.069127 -0.090554 0.247475 -0.047624 0.091538 0.250273 -0.245087 -0.226867 0.071120 -0.111500 0.051720 -0.180985 0.260673 -0.156123 -0.018406 -0.052157 0.004646 -0.096116 0.004344 -0.070771 -0.001307 0.146860 0.132222 0.101443 0.245787 0.048665 -0.225169 0.068968 0.011158 0.102308 0.014056 -0.262793 -0.110480 -0.069936 0.013410 -0.111720 0.158785 -0.166693 -0.046893 0.083284 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -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&) = 1.348024 -0.540941 -0.029549 1.368927 0.745768 -0.866911 0.200737 0.635936 0.151287 -2.380468 -1.354174 1.814061 -0.095818 -0.463569 0.276058 0.374274 0.403938 0.306169 -2.367696 1.069378 0.380943 0.331853 -0.381188 -0.576636 0.330573 -0.731818 0.724269 0.671902 0.197227 1.232260 -1.060593 0.211172 1.025471 0.157554 0.980818 1.236277 0.281757 -0.305676 -0.216511 -0.305937 2.469212 0.934748 0.123003 1.333449 1.080332 1.463358 0.116190 1.984948 1.301510 -0.675409 0.615378 0.042319 -1.075935 -0.116274 -1.659597 1.074021 1.011565 0.070499 -1.112400 0.635414 -0.085931 -0.000440 0.415581 -0.284219 1.646905 0.656362 0.803807 0.769016 2.293631 -0.811298 -0.458832 1.118126 1.853662 0.819477 1.313425 -0.945462 -1.303418 -0.989541 -0.166262 -1.618871 -0.209942 -0.635489 2.218853 -1.345240 0.187789 0.741998 0.054618 1.296574 -0.702435 -0.258619 -1.385917 0.388642 -0.224043 2.080137 -0.013173 0.494542 -0.240506 0.422229 0.302108 1.305804 0.072895 -1.215813 -0.779908 -3.011076 -0.768789 -0.695439 0.043862 -0.215482 -1.935123 0.029605 0.082827 2.070572 -1.894743 -0.344736 0.958139 0.175942 0.794280 -0.220767 -0.638093 -0.240140 0.221236 0.360644 0.228166 -0.697412 -0.408726 -0.604316 0.434793 0.098640 0.699478 -0.249914 -1.133225 -0.705459 -0.013028 0.572949 -0.182474 -0.213180 0.287222 -1.516227 0.802991 -0.575272 0.966041 -1.672201 -0.464280 -0.990589 -0.857301 -0.272275 2.258111 0.674820 1.749012 0.184159 -0.291195 -0.807335 -1.651534 -2.446585 0.606450 -0.671832 0.429786 0.238652 0.046684 0.186628 -0.491983 -0.632915 0.436771 -1.036623 -0.220169 -0.603628 0.674977 -0.546189 -0.095199 -1.274424 -0.215892 0.928779 0.193181 0.512669 -0.581878 -2.778342 -1.516192 -1.397846 1.059651 -0.474614 0.328736 -0.500743 -0.032890 -0.903842 0.307765 -1.067028 0.339130 -0.447819 -1.255312 -1.441212 -0.125188 -0.472971 0.051252 -0.116241 -1.184553 0.204336 0.446170 0.866601 0.292246 0.409964 -0.178843 -2.154870 -1.658251 -0.148359 -0.030626 1.775052 0.602411 0.105948 -1.227534 -0.595009 -1.564594 1.228188 -2.207299 0.147260 0.145447 -0.847832 1.619841 -0.767731 -0.335225 -1.262727 0.765823 0.273666 -2.185865 2.089235 1.421572 -1.249635 -0.662001 -0.667634 0.328169 1.027715 2.083427 -1.039738 -0.524752 0.522797 -0.157675 -0.270623 -0.582825 1.206399 -0.561286 1.119267 -1.520892 -1.175350 0.515964 1.259762 -0.125918 0.145305 0.169620 0.283440 0.184452 1.701580 0.724803 0.336217 -1.602004 -3.272851 0.592695 0.673861 -0.066897 0.807337 -1.146108 -1.192997 0.135228 -0.439386 1.759143 -0.006341 0.303761 1.185733 -1.601654 -1.522073 -0.176749 -0.317077 0.124518 -0.520402 1.116756 -0.968984 -0.132076 -0.195753 0.283932 -0.399323 -0.480330 -0.523294 0.118580 0.875645 0.977739 -0.119380 1.444065 0.555562 -0.922815 -0.009048 -0.019639 0.285433 -0.045777 -1.310355 -0.595810 -0.777403 0.163820 -0.539036 1.320277 -0.039729 0.616862 0.103308 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = 0.319747 -0.177676 0.285472 0.254091 0.412316 -0.218629 0.127458 0.182457 0.009878 -0.669922 -0.326917 0.010197 -0.124449 -0.215940 0.175838 0.045262 0.217714 0.222309 -0.385352 0.235607 0.121382 0.190492 0.045253 -0.217433 0.126780 -0.187723 -0.133985 0.191333 0.067695 0.328460 -0.362152 -0.061936 0.259499 0.140799 0.185276 0.350662 0.379712 -0.123344 0.115243 0.006684 0.793902 0.002702 0.110323 0.391762 0.431410 0.380111 -0.108815 0.604117 0.242792 -0.122402 0.306623 -0.531474 -0.195982 0.028140 -0.529404 0.416941 0.448860 0.217443 -0.357835 0.236782 0.005114 0.094623 0.073149 -0.288440 0.338878 0.335035 0.007681 0.155493 0.760130 -0.233649 -0.204054 0.318598 0.572077 0.248486 0.151140 -0.287562 0.019605 -0.829650 -0.107498 -0.313129 0.147493 -0.250171 0.628792 -0.321592 0.128519 0.561431 -0.065224 0.255059 -0.087096 -0.125161 -0.419648 0.239268 0.041369 0.458115 -0.064807 0.092580 -0.133911 0.048611 0.089151 0.393923 0.058496 -0.188087 -0.565157 -0.974404 -0.438286 -0.119603 -0.039407 -0.267738 -0.578982 0.013041 0.386827 0.365115 -0.510183 -0.107287 0.243586 0.196715 -0.125929 -0.057650 -0.293315 -0.212554 0.010564 0.114260 -0.157829 -0.202513 -0.168567 -0.516791 0.007461 0.003473 0.227628 -0.296114 -0.064342 -0.182102 -0.170948 0.146772 -0.097929 -0.183007 -0.039191 -0.488240 0.208237 -0.183484 0.225540 -0.445580 -0.140008 -0.305683 -0.318458 -0.040996 1.002677 -0.054705 0.451222 0.290001 -0.282582 -0.362901 -0.298557 -0.590306 0.139152 -0.299584 0.339282 0.104814 0.008363 -0.081770 -0.054850 -0.378383 0.000560 -0.304747 -0.015968 -0.257514 0.123722 -0.360761 -0.049403 -0.615269 0.100547 0.699599 -0.129043 -0.105169 -0.246592 -0.208092 -0.214392 -0.505067 0.245180 -0.135986 0.202831 -0.064148 0.156278 -0.386457 0.249307 -0.251354 0.094551 -0.130087 -0.504118 -0.409195 0.026247 -0.196547 -0.010056 0.072217 -0.298954 0.150003 -0.119367 0.297854 0.062677 0.089054 -0.105466 -0.757111 -0.704395 -0.336732 0.144224 0.367569 0.119551 0.151424 -0.284265 -0.214018 -0.342023 0.402439 -0.622774 -0.068371 0.137415 -0.186331 0.419708 -0.172261 -0.100561 -0.488576 0.198642 0.061558 -0.528695 0.552446 0.264131 -0.472305 -0.364305 -0.529478 0.110548 0.252330 0.761418 -0.180809 0.037928 0.258951 0.007489 -0.121877 -0.394285 0.360148 -0.050642 0.488835 -0.541122 -0.450255 0.061377 0.547429 -0.152322 0.125433 0.185751 0.342694 -0.068589 0.582709 0.121711 0.057430 -0.314801 -0.726015 0.084961 0.482878 0.160680 0.304734 -0.432419 -0.291187 0.028004 0.167390 0.539585 0.349887 0.425696 0.364454 -0.255017 -0.385587 0.240819 -0.019746 0.139824 -0.408872 0.272066 -0.320498 -0.157978 -0.077997 0.134465 0.063401 -0.150886 -0.481826 -0.100095 0.318887 0.278856 -0.066598 0.408884 0.137150 -0.286455 0.159866 -0.000585 0.371284 0.117503 -0.065353 -0.146820 -0.281129 -0.086464 -0.146523 0.580627 -0.104051 0.099643 0.098208 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = 1.120696 0.104123 0.628029 0.496174 0.658025 -1.440030 0.695391 1.308040 -0.074350 -1.655449 -0.882848 0.158109 -0.160653 -1.153946 0.251613 -0.044570 -0.092648 1.077634 -1.845638 1.028826 0.702342 1.125203 -0.042434 -1.441327 0.308931 -0.101904 -1.256405 0.605152 0.049697 1.114673 -0.830396 -0.729928 0.759064 0.319406 0.135902 1.299731 1.034544 -0.034998 1.076999 0.282661 1.834360 0.833644 -0.194961 0.990382 1.297527 1.057430 -0.334692 1.187626 -0.990977 -0.443459 0.261006 -1.277388 -1.025115 -0.230165 -0.774772 1.103303 2.054187 1.312934 -0.749950 1.099748 -0.172646 -0.046865 0.478828 -0.726073 0.722173 1.480293 -0.431273 0.374609 2.662630 -0.488155 -0.418486 0.556199 1.540442 -0.135314 0.514438 -0.784983 -0.474487 -2.595144 -0.157604 -2.206783 -0.006747 -0.257105 2.221978 -1.269705 1.105633 1.783441 0.581651 0.656619 -0.625598 -0.805763 -0.699496 0.555028 -0.673008 2.620601 -0.345526 0.572238 -0.449483 0.462465 0.830544 1.008244 -0.122761 -0.348589 -1.750069 -2.847031 -0.663836 -0.245463 -0.749576 -0.576354 -1.622083 -0.662134 1.583964 1.137836 -1.979744 -0.232359 1.118164 0.534731 -0.344480 -0.243485 -1.146056 0.245228 -0.602174 -0.278337 -0.386646 -1.001238 -0.885038 -0.673595 -0.293496 0.096907 0.147629 -0.644227 -1.326670 -0.268808 -0.407589 -0.291133 -0.139274 -0.315378 -0.441170 -1.590806 0.369825 -1.335040 0.700281 -1.592153 -0.054002 -0.316920 -1.394503 0.039283 1.565856 -0.204097 0.349574 0.166739 -0.489907 -1.141415 -0.836423 -1.814426 0.895234 -0.713523 1.268241 -0.400975 0.050242 -0.901056 -0.165962 -1.107484 0.041907 -0.696999 0.344782 -0.655150 2.559889 -0.912116 -0.179516 -1.476904 0.025820 2.002529 0.255710 -0.583976 -0.888597 -0.126765 -0.813376 -1.287004 0.856798 -0.006593 0.067160 -0.537504 0.380464 -1.114848 0.845062 -0.579412 0.839048 -0.247793 -0.890979 -1.207592 -0.011958 -0.354975 -0.161155 -0.176017 -0.587066 0.034344 -0.036697 0.527672 -0.103379 0.003711 0.285539 -2.033745 -1.860720 -0.703708 0.716634 0.978770 0.647838 0.896546 -0.831611 -0.004561 -1.181560 1.323300 -1.213050 -0.290522 -0.178506 -0.246137 2.101509 -0.326644 -0.510588 -1.853367 0.555773 0.010995 -0.633570 2.100590 0.696968 -1.042009 -0.841613 -1.122161 -0.045075 1.229479 2.046383 -0.814345 -0.639771 0.946810 -0.732663 -0.441208 -1.060805 0.961684 -0.603817 2.001389 -1.084694 -0.705052 0.090143 1.587958 -0.495135 0.894744 -0.017400 0.427269 -0.373158 1.388803 0.377711 -0.230923 -1.093097 -1.554172 0.500754 0.234707 0.652631 -0.005739 -0.682135 -1.108426 0.376873 1.180998 1.502574 1.799547 0.393518 0.802284 -1.223658 -1.321262 0.669973 0.649896 0.727220 -1.222783 0.394085 -0.665764 -0.013671 0.365292 0.418528 0.825379 -0.963640 -1.667500 -0.447332 1.095103 0.600779 -1.076749 1.430131 -0.043582 -0.638510 0.501070 -0.321551 1.304982 -0.112711 0.503112 -0.206097 -1.026655 0.153920 -0.436413 2.439366 -0.090934 -0.008604 0.876286 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.319747 -0.177676 0.285472 0.254091 0.412316 -0.218629 0.127458 0.182457 0.009878 -0.669922 -0.326917 0.010197 -0.124449 -0.215940 0.175838 0.045262 0.217714 0.222309 -0.385352 0.235607 0.121382 0.190492 0.045253 -0.217433 0.126780 -0.187723 -0.133985 0.191333 0.067695 0.328460 -0.362152 -0.061936 0.259499 0.140799 0.185276 0.350662 0.379712 -0.123344 0.115243 0.006684 0.793902 0.002702 0.110323 0.391762 0.431410 0.380111 -0.108815 0.604117 0.242792 -0.122402 0.306623 -0.531474 -0.195982 0.028140 -0.529404 0.416941 0.448860 0.217443 -0.357835 0.236782 0.005114 0.094623 0.073149 -0.288440 0.338878 0.335035 0.007681 0.155493 0.760130 -0.233649 -0.204054 0.318598 0.572077 0.248486 0.151140 -0.287562 0.019605 -0.829650 -0.107498 -0.313129 0.147493 -0.250171 0.628792 -0.321592 0.128519 0.561431 -0.065224 0.255059 -0.087096 -0.125161 -0.419648 0.239268 0.041369 0.458115 -0.064807 0.092580 -0.133911 0.048611 0.089151 0.393923 0.058496 -0.188087 -0.565157 -0.974404 -0.438286 -0.119603 -0.039407 -0.267738 -0.578982 0.013041 0.386827 0.365115 -0.510183 -0.107287 0.243586 0.196715 -0.125929 -0.057650 -0.293315 -0.212554 0.010564 0.114260 -0.157829 -0.202513 -0.168567 -0.516791 0.007461 0.003473 0.227628 -0.296114 -0.064342 -0.182102 -0.170948 0.146772 -0.097929 -0.183007 -0.039191 -0.488240 0.208237 -0.183484 0.225540 -0.445580 -0.140008 -0.305683 -0.318458 -0.040996 1.002677 -0.054705 0.451222 0.290001 -0.282582 -0.362901 -0.298557 -0.590306 0.139152 -0.299584 0.339282 0.104814 0.008363 -0.081770 -0.054850 -0.378383 0.000560 -0.304747 -0.015968 -0.257514 0.123722 -0.360761 -0.049403 -0.615269 0.100547 0.699599 -0.129043 -0.105169 -0.246592 -0.208092 -0.214392 -0.505067 0.245180 -0.135986 0.202831 -0.064148 0.156278 -0.386457 0.249307 -0.251354 0.094551 -0.130087 -0.504118 -0.409195 0.026247 -0.196547 -0.010056 0.072217 -0.298954 0.150003 -0.119367 0.297854 0.062677 0.089054 -0.105466 -0.757111 -0.704395 -0.336732 0.144224 0.367569 0.119551 0.151424 -0.284265 -0.214018 -0.342023 0.402439 -0.622774 -0.068371 0.137415 -0.186331 0.419708 -0.172261 -0.100561 -0.488576 0.198642 0.061558 -0.528695 0.552446 0.264131 -0.472305 -0.364305 -0.529478 0.110548 0.252330 0.761418 -0.180809 0.037928 0.258951 0.007489 -0.121877 -0.394285 0.360148 -0.050642 0.488835 -0.541122 -0.450255 0.061377 0.547429 -0.152322 0.125433 0.185751 0.342694 -0.068589 0.582709 0.121711 0.057430 -0.314801 -0.726015 0.084961 0.482878 0.160680 0.304734 -0.432419 -0.291187 0.028004 0.167390 0.539585 0.349887 0.425696 0.364454 -0.255017 -0.385587 0.240819 -0.019746 0.139824 -0.408872 0.272066 -0.320498 -0.157978 -0.077997 0.134465 0.063401 -0.150886 -0.481826 -0.100095 0.318887 0.278856 -0.066598 0.408884 0.137150 -0.286455 0.159866 -0.000585 0.371284 0.117503 -0.065353 -0.146820 -0.281129 -0.086464 -0.146523 0.580627 -0.104051 0.099643 0.098208 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = 1.108076 0.107223 0.621149 0.497104 0.624460 -1.430971 0.715236 1.311855 -0.057546 -1.638708 -0.868582 0.188258 -0.154928 -1.146265 0.230428 -0.069740 -0.082220 1.101612 -1.827163 1.001512 0.687815 1.126072 -0.069450 -1.432970 0.283318 -0.087599 -1.261159 0.621856 0.056351 1.126686 -0.803763 -0.750563 0.767079 0.301941 0.120455 1.323945 1.070214 -0.009653 1.061246 0.270238 1.821613 0.837997 -0.198632 1.001930 1.280337 1.070637 -0.312309 1.188072 -0.981995 -0.451505 0.253063 -1.284660 -1.026327 -0.262100 -0.767812 1.078351 2.053737 1.337985 -0.758465 1.133623 -0.162844 -0.050060 0.488702 -0.713053 0.697000 1.487498 -0.457100 0.382363 2.646553 -0.512484 -0.413124 0.539570 1.524485 -0.135779 0.500718 -0.787255 -0.482638 -2.587507 -0.152060 -2.208212 -0.019697 -0.239660 2.224544 -1.280873 1.121420 1.784095 0.563664 0.632229 -0.629804 -0.820913 -0.704113 0.527610 -0.661309 2.619840 -0.330316 0.559714 -0.424949 0.466017 0.837302 1.000056 -0.126265 -0.367436 -1.737402 -2.844577 -0.650357 -0.257437 -0.770927 -0.567001 -1.579579 -0.703579 1.586111 1.122152 -1.987958 -0.234924 1.122988 0.520316 -0.357361 -0.238843 -1.129805 0.277657 -0.605683 -0.300283 -0.346942 -1.020955 -0.878328 -0.621186 -0.313325 0.098646 0.131736 -0.615842 -1.338718 -0.269540 -0.394328 -0.282208 -0.146479 -0.319630 -0.465729 -1.567632 0.370595 -1.355999 0.717413 -1.584620 -0.052539 -0.286472 -1.396825 0.025985 1.561923 -0.219523 0.360600 0.138491 -0.494841 -1.126097 -0.823372 -1.833213 0.932873 -0.684534 1.273469 -0.406739 0.040787 -0.910041 -0.184567 -1.100943 0.040198 -0.680784 0.346096 -0.616979 2.557030 -0.898464 -0.191094 -1.468076 0.052389 1.990526 0.285269 -0.581738 -0.910364 -0.148093 -0.796524 -1.258195 0.870462 -0.001615 0.048861 -0.504120 0.341655 -1.099252 0.831995 -0.584415 0.847262 -0.255989 -0.878370 -1.223609 0.011645 -0.361288 -0.149558 -0.149205 -0.587098 0.029228 -0.042914 0.529480 -0.117539 0.003663 0.321215 -2.016856 -1.834548 -0.698488 0.706958 0.981084 0.657127 0.916102 -0.818965 0.008670 -1.170875 1.309060 -1.210122 -0.276823 -0.178104 -0.248916 2.108100 -0.322856 -0.498916 -1.854616 0.567530 0.052327 -0.640700 2.087012 0.710439 -1.032249 -0.834449 -1.081655 -0.066514 1.235554 2.032762 -0.834352 -0.678619 0.973506 -0.759254 -0.429008 -1.063855 0.934879 -0.577066 1.986852 -1.082866 -0.678695 0.105054 1.566004 -0.485990 0.894606 -0.006389 0.412462 -0.385152 1.401686 0.369988 -0.220618 -1.093259 -1.554151 0.540350 0.242590 0.658517 -0.004585 -0.681395 -1.086764 0.404468 1.169633 1.474404 1.796510 0.361223 0.812835 -1.231559 -1.328171 0.653239 0.640746 0.757596 -1.217353 0.399549 -0.659839 0.018987 0.353316 0.415711 0.828022 -0.934493 -1.656492 -0.429441 1.083737 0.582806 -1.076922 1.445633 -0.090938 -0.645747 0.509924 -0.338403 1.297083 -0.113155 0.485236 -0.195283 -1.019421 0.197227 -0.449814 2.433783 -0.097759 -0.018979 0.902026 -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.983638 0.212605 0.524969 0.438442 0.532168 -1.347736 0.646584 1.204705 -0.184790 -1.472801 -0.838013 0.089575 -0.126517 -1.083959 0.245377 -0.041734 -0.141548 0.972154 -1.702893 0.935889 0.669452 0.984841 -0.097700 -1.305044 0.249715 -0.102653 -1.270904 0.595400 -0.012465 1.017625 -0.710087 -0.641620 0.678575 0.310038 0.120772 1.185689 0.851392 -0.013007 1.070242 0.318321 1.618046 0.784018 -0.217767 0.808935 1.178834 0.959996 -0.361617 0.944296 -1.161316 -0.396775 0.216954 -1.096238 -0.928274 -0.196311 -0.649252 0.926183 1.876601 1.202813 -0.643834 1.031599 -0.288478 -0.060976 0.441095 -0.638546 0.702784 1.352289 -0.375642 0.337567 2.385100 -0.416567 -0.356664 0.483049 1.316787 -0.247572 0.346582 -0.577538 -0.423389 -2.355732 -0.121571 -2.138144 -0.067066 -0.150131 2.090854 -1.122823 0.962154 1.590449 0.592202 0.598755 -0.634342 -0.743335 -0.598213 0.470696 -0.698531 2.402401 -0.275467 0.536556 -0.404488 0.445759 0.806637 0.906735 -0.244457 -0.288429 -1.636648 -2.596729 -0.588095 -0.189027 -0.704521 -0.520487 -1.470329 -0.667082 1.553689 1.088367 -1.797130 -0.193041 1.031961 0.487470 -0.387594 -0.164345 -1.164157 0.277853 -0.582658 -0.261528 -0.268083 -0.847003 -0.776128 -0.607255 -0.249098 0.060134 0.114306 -0.544541 -1.341349 -0.218474 -0.312185 -0.422270 -0.117267 -0.254979 -0.415091 -1.348930 0.321988 -1.256039 0.662138 -1.499352 0.059044 -0.294307 -1.349297 0.075067 1.235124 0.001437 0.201327 0.117115 -0.402481 -0.975549 -0.799683 -1.662099 0.811545 -0.608286 1.178144 -0.482531 0.035493 -0.843882 -0.155691 -0.950839 0.102692 -0.618944 0.336774 -0.605912 2.566447 -0.740584 -0.208890 -1.295882 -0.011211 1.749073 0.235736 -0.523982 -0.814748 -0.013668 -0.778427 -1.147233 0.775491 0.028153 -0.005975 -0.518479 0.334392 -1.044107 0.789401 -0.500763 0.773564 -0.212682 -0.738847 -1.079714 -0.037034 -0.274773 -0.262896 -0.227732 -0.491662 -0.023918 0.114112 0.350272 -0.073683 -0.009351 0.283856 -1.681122 -1.632491 -0.580456 0.653120 0.817703 0.739062 0.826969 -0.779135 0.053079 -1.121413 1.234153 -0.944503 -0.263114 -0.199360 -0.247156 1.949759 -0.305700 -0.513098 -1.601036 0.488212 -0.031364 -0.626627 1.891506 0.655067 -0.926585 -0.762730 -1.012452 -0.056286 1.130716 1.828084 -0.727351 -0.544573 0.824180 -0.685420 -0.396021 -0.877008 0.865461 -0.577899 1.798692 -0.944613 -0.595604 0.132979 1.430723 -0.432051 0.857232 -0.105232 0.378209 -0.270218 1.196883 0.332501 -0.300268 -0.948088 -1.352257 0.459013 0.035088 0.544459 -0.072829 -0.505336 -1.040307 0.298352 1.010139 1.353700 1.608912 0.179581 0.706966 -1.070890 -1.203414 0.521826 0.672644 0.635228 -1.142354 0.346804 -0.558866 0.026621 0.395184 0.386719 0.832644 -0.953059 -1.588950 -0.440727 0.995240 0.528037 -1.044604 1.302540 -0.079589 -0.545267 0.382942 -0.287458 1.181937 -0.062578 0.422904 -0.232505 -0.968583 0.184157 -0.386639 2.206215 -0.039765 -0.004876 0.909097 -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.672115 0.283728 0.636602 0.728529 0.597512 -2.357610 1.028585 2.083471 -0.284870 -2.293690 -1.253651 0.016622 -0.095080 -1.853723 0.404814 0.047606 -0.392860 1.500254 -3.241653 1.662121 1.187475 1.599112 -0.286132 -2.187571 0.403670 -0.169777 -2.127447 0.959356 -0.134635 1.672383 -1.139632 -0.976623 1.111375 0.392493 0.272550 1.915917 1.081701 0.023811 1.904114 0.776533 2.512241 1.575355 -0.626137 1.021862 1.860225 1.574969 -0.524690 1.374111 -2.274990 -0.659949 0.274520 -1.566163 -1.555624 -0.299958 -0.935421 1.336941 3.234247 2.075863 -1.011682 1.714423 -0.702735 -0.111507 0.827467 -0.749479 1.368467 2.130660 -0.405510 0.591401 3.861022 -0.526580 -0.347872 0.545156 2.019876 -0.762612 0.682124 -0.937173 -0.882990 -4.044824 -0.058293 -3.788406 -0.179499 -0.035263 3.153534 -1.895575 1.684172 2.480842 1.196854 1.124972 -1.268221 -1.228846 -0.891181 0.670883 -1.267277 4.309206 -0.540445 0.954046 -0.605850 0.971973 1.349982 1.304480 -0.367571 -0.569604 -2.541450 -4.200431 -0.891927 -0.322285 -1.268041 -0.747822 -2.474926 -1.101184 2.617558 1.616599 -3.050602 -0.138295 1.633254 0.727251 -0.371428 -0.424865 -1.862699 0.639639 -1.188064 -0.354122 -0.335865 -1.449330 -1.190319 -0.969992 -0.253308 0.335000 0.117915 -0.761980 -2.413733 -0.129400 -0.312118 -0.865390 -0.207170 -0.137500 -0.614803 -2.214976 0.496093 -2.300040 1.170451 -2.556933 0.222653 -0.488657 -2.185732 0.168507 1.569904 0.158772 -0.095640 0.047853 -0.654650 -1.348983 -1.512865 -2.852996 1.260780 -0.902994 1.809945 -0.979246 0.029563 -1.469523 -0.241447 -1.376379 0.205876 -1.047782 0.531605 -1.025114 4.463477 -0.944711 -0.413332 -1.790436 -0.156753 2.783049 0.545147 -0.688986 -1.289421 -0.023002 -1.494468 -1.743202 1.313114 0.123770 -0.118395 -0.994193 0.512555 -1.884512 1.393718 -0.812239 1.342742 -0.384799 -0.911142 -1.743198 -0.137536 -0.364233 -0.290495 -0.611573 -0.775994 -0.105979 0.233743 0.452564 -0.159381 -0.062682 0.632632 -2.635775 -2.582588 -0.707015 1.052395 1.475957 1.124454 1.301836 -1.100580 0.247514 -1.860255 2.046904 -1.320998 -0.358548 -0.398822 -0.549759 3.279049 -0.481501 -1.005073 -2.573192 0.786877 -0.227167 -0.468539 3.356432 1.144982 -1.497598 -1.062942 -1.544387 0.026056 1.839710 2.829565 -1.189307 -0.972239 1.212257 -1.156749 -0.650199 -1.284452 1.377558 -1.106712 2.874234 -1.407469 -0.783428 0.327395 2.250462 -0.654663 1.439458 -0.428114 0.309548 -0.587131 1.814205 0.501201 -0.498731 -1.582185 -2.073604 0.708216 -0.349496 0.872662 -0.410828 -0.678732 -1.703326 0.381615 1.846983 2.204358 2.993797 -0.021192 1.071501 -1.975854 -2.043850 0.531474 1.249159 0.908176 -1.756017 0.413042 -0.843867 0.152252 0.759111 0.789425 1.419778 -1.710646 -2.545188 -0.661743 1.558788 0.766558 -2.062578 2.141836 -0.158847 -0.756237 0.428724 -0.470828 1.692941 -0.065147 0.961466 -0.408402 -1.574886 0.463410 -0.704253 3.595067 -0.005191 0.108233 1.511828 -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*) = 1.277855 0.340750 0.638469 0.300270 0.438146 -1.661264 0.726248 1.691133 -0.342201 -1.748745 -1.326755 -0.479946 -0.160095 -1.409660 0.630325 0.025140 -0.168815 1.049005 -2.656847 1.220878 1.038188 1.173255 -0.068410 -1.408356 0.402178 -0.138864 -2.335055 0.577610 -0.141062 1.201280 -0.907776 -0.600036 0.792606 0.348556 0.163466 1.320286 0.380561 -0.125127 1.952650 0.639407 1.899549 0.980371 -0.268907 0.718450 1.468752 1.091706 -0.975499 1.255134 -1.649580 -0.492850 0.714792 -1.892658 -1.129495 0.211358 -0.640045 0.985755 2.520782 1.472657 -0.680054 1.267863 -0.663800 0.039865 0.504389 -1.073193 1.085975 1.841931 -0.365699 0.303261 2.741778 -0.177474 -0.172350 0.321883 1.369907 -0.602124 -0.173884 -0.807617 -0.019733 -3.379500 -0.021676 -3.007335 0.024855 -0.230995 2.641104 -1.312317 1.253527 1.917475 0.741094 0.821999 -0.824611 -0.830706 -0.593422 0.605513 -0.880873 2.632552 -0.597263 0.649645 -0.472236 0.549462 0.879590 0.902213 -0.592462 -0.145210 -2.549969 -3.252207 -0.827633 0.023587 -0.782215 -0.625809 -2.010315 -0.623938 2.123405 0.865414 -2.172833 -0.187861 1.119471 0.640911 -1.077133 0.498728 -1.889988 -0.026781 -0.910036 0.101002 -0.321110 -0.895588 -0.776325 -1.582582 -0.396350 0.275190 0.210481 -0.750915 -1.537521 -0.171791 -0.348353 -0.792062 -0.255193 -0.055708 -0.392864 -1.254140 0.432584 -1.567454 0.769411 -2.043633 0.080413 -0.649446 -1.569481 0.215593 1.541779 0.561689 -0.201801 0.444324 -0.469942 -1.059655 -1.135163 -1.560914 0.705760 -0.921828 1.781693 -0.849608 0.084906 -1.115810 0.014533 -1.068800 -0.277769 -0.789805 0.463231 -1.083468 3.436578 -0.754020 -0.369207 -1.583840 -0.046424 2.294434 -0.366973 -0.816673 -0.877472 0.681763 -0.996748 -1.362190 0.914808 0.107928 0.141085 -0.758884 0.847864 -1.385779 1.010549 -0.548607 0.607984 -0.196818 -0.867831 -1.213739 -0.170252 -0.200917 -0.344559 -0.536262 -0.454129 -0.089490 0.613259 0.889242 0.055401 0.086356 0.243465 -1.926907 -2.084771 -0.889448 0.726205 0.914618 1.166930 0.811267 -0.933714 0.172931 -1.370598 1.668444 -0.835970 -0.376390 -0.406142 -0.381456 2.316288 -0.329906 -0.698462 -1.972984 0.422191 -0.289034 -1.290850 2.146538 0.573496 -1.190313 -0.866425 -1.838285 0.190781 1.302300 2.119015 -0.460886 -0.275235 0.749896 -0.860832 -0.472671 -1.173913 1.150531 -0.808397 2.091066 -1.025699 -0.591552 0.470628 1.651781 -0.495304 1.186024 -0.215654 0.811671 0.056676 1.231308 0.238657 -0.845226 -0.939848 -1.826503 0.373921 0.792486 0.724880 -0.179295 -0.589702 -1.372370 -0.006019 1.366707 1.640752 2.446699 0.499660 0.733114 -0.974869 -1.401836 0.458972 1.254014 0.572885 -1.425630 0.089420 -0.528380 -0.002681 0.793345 0.685495 1.492178 -1.564561 -2.752458 -0.643365 1.334137 0.625194 -1.419105 1.481383 -0.022381 -0.597504 0.328146 -0.330236 1.461479 -0.006040 0.935198 -0.373038 -1.228170 0.084464 -0.546883 2.682756 0.081827 0.137792 1.116256 -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.277177 0.126146 0.287943 0.217316 0.250689 -0.512705 0.283753 0.408479 -0.155871 -0.630783 -0.304355 -0.038057 -0.080295 -0.403098 0.095530 -0.058614 -0.029226 0.455960 -0.590343 0.325044 0.273015 0.390360 0.005023 -0.531852 0.076985 -0.074020 -0.466887 0.320238 0.007597 0.446315 -0.304842 -0.265656 0.293492 0.191736 0.079591 0.514801 0.490611 0.006134 0.342522 0.135048 0.703047 0.243836 -0.097691 0.301090 0.483770 0.435255 -0.038295 0.157672 -0.498276 -0.168786 -0.033364 -0.435471 -0.320713 -0.150002 -0.312111 0.359319 0.684959 0.573217 -0.302081 0.447927 -0.134562 -0.028593 0.168768 -0.268606 0.278204 0.445473 -0.177724 0.156355 0.949291 -0.251710 -0.192295 0.217823 0.523420 -0.101801 0.099690 -0.090027 -0.155354 -1.120531 -0.097745 -0.887625 -0.060061 0.030768 0.795090 -0.435968 0.367565 0.716143 0.157932 0.216164 -0.251716 -0.338408 -0.319629 0.168193 -0.235947 0.912490 0.008491 0.132919 -0.118630 0.204927 0.384151 0.419904 -0.090525 -0.145382 -0.634462 -1.133567 -0.255602 -0.104098 -0.275847 -0.250423 -0.532466 -0.333149 0.771783 0.592762 -0.729908 -0.071089 0.441366 0.231781 -0.314871 -0.344189 -0.424043 0.180597 -0.229336 -0.142950 -0.024914 -0.368548 -0.301290 -0.131452 -0.080030 -0.040842 0.086222 -0.210681 -0.452009 -0.153464 -0.110670 -0.168701 -0.067243 -0.163673 -0.210606 -0.499816 0.145876 -0.535237 0.335102 -0.534979 0.173933 -0.079371 -0.552614 0.016159 0.514230 -0.014156 0.048227 0.029706 -0.220997 -0.345962 -0.276814 -0.781708 0.418309 -0.152483 0.476097 -0.159692 -0.024920 -0.307300 -0.100594 -0.396577 0.130513 -0.254826 0.119399 -0.171930 0.900392 -0.284319 -0.116370 -0.572720 0.061772 0.754823 0.142088 -0.210540 -0.408947 0.082543 -0.278235 -0.503784 0.330438 -0.013584 -0.040621 -0.163636 0.069331 -0.436267 0.402581 -0.232795 0.353580 -0.107457 -0.321400 -0.477492 -0.009212 -0.157675 -0.170728 -0.018706 -0.212582 -0.000659 -0.041547 -0.053355 -0.036826 -0.048094 0.165685 -0.592779 -0.632398 -0.233435 0.265222 0.239419 0.289775 0.382584 -0.409747 -0.005134 -0.410358 0.528149 -0.298591 -0.092234 -0.060571 -0.153993 0.791989 -0.120438 -0.199474 -0.537907 0.238915 0.071135 -0.245560 0.746869 0.347107 -0.390208 -0.359082 -0.354096 -0.062886 0.470138 0.794067 -0.354488 -0.200388 0.366577 -0.269451 -0.143982 -0.343250 0.338415 -0.181530 0.709240 -0.439484 -0.292251 0.030124 0.607400 -0.156872 0.376112 0.013127 0.192179 -0.179137 0.542736 0.136801 -0.047081 -0.370163 -0.416779 0.242079 -0.041739 0.266120 0.024613 -0.170524 -0.389658 0.141277 0.361569 0.553409 0.648864 -0.057842 0.344524 -0.399742 -0.495006 0.206974 0.202608 0.284699 -0.535102 0.237623 -0.247904 0.019101 0.099249 0.124912 0.315792 -0.288573 -0.595934 -0.183384 0.369465 0.258012 -0.391927 0.564071 -0.084767 -0.280944 0.165580 -0.102129 0.492507 0.035618 0.109379 -0.144405 -0.396613 0.119449 -0.149776 0.861070 -0.083026 -0.037600 0.428624 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.526718 -0.304310 0.033317 0.518979 0.375864 -0.547043 0.191440 0.227643 0.033729 -0.840367 -0.291480 0.356402 -0.036042 -0.458556 0.105172 0.170062 0.082936 0.270536 -0.535358 0.501121 0.106214 0.196220 -0.268156 -0.385725 0.075495 -0.268292 0.026115 0.345270 -0.029647 0.476824 -0.392879 -0.055809 0.372762 0.075009 0.257508 0.552702 0.446583 -0.060032 0.117484 0.182716 0.990615 0.234558 0.019249 0.423781 0.558065 0.561210 -0.004118 0.911745 0.089632 -0.156661 0.374064 -0.170284 -0.329779 -0.106290 -0.694859 0.466208 0.625634 0.200356 -0.461880 0.365315 -0.190512 0.048417 0.231055 0.024166 0.665970 0.474240 0.162615 0.316744 1.173333 -0.266544 -0.195750 0.427415 0.828633 0.140285 0.587539 -0.290611 -0.443788 -0.776069 -0.115103 -0.422148 0.077111 -0.178837 0.876685 -0.536863 0.092295 0.588001 0.235271 0.487980 -0.360967 -0.173328 -0.516236 0.245358 -0.134122 1.107535 -0.051392 0.327104 -0.293257 0.190333 0.163374 0.486470 0.029488 -0.435618 -0.521073 -1.298682 -0.582268 -0.263642 -0.264047 -0.322084 -0.948143 -0.105771 0.437489 0.633489 -0.858431 -0.055775 0.400099 0.124950 0.505037 -0.125649 -0.363949 0.014755 0.009104 0.074137 -0.112085 -0.234473 -0.260462 -0.481057 0.218315 0.074908 0.163762 -0.271880 -0.538697 -0.058596 -0.068368 0.120617 -0.036083 -0.116697 -0.041341 -0.857046 0.219985 -0.391014 0.376300 -0.785919 -0.226583 -0.397328 -0.611762 -0.025065 1.049571 0.035402 0.695957 0.093935 -0.355704 -0.410543 -0.666230 -1.202054 0.191354 -0.439938 0.210563 -0.020113 0.016431 -0.216166 -0.118224 -0.358587 0.302874 -0.453732 -0.020393 -0.282843 0.481803 -0.311426 -0.090733 -0.618706 -0.109154 0.679494 0.289686 0.091466 -0.288046 -0.855673 -0.536547 -0.583501 0.380638 -0.109924 0.115422 -0.220086 -0.037576 -0.670291 0.309796 -0.328029 0.282911 -0.209568 -0.436311 -0.579210 -0.009326 -0.176882 0.001178 -0.143686 -0.447124 0.128652 -0.099356 0.133947 0.058502 0.136011 -0.071124 -0.962247 -0.879494 -0.132986 0.227330 0.710272 0.242554 0.308348 -0.253449 -0.167350 -0.710088 0.502540 -0.996560 -0.036640 0.281518 -0.346182 0.788228 -0.321776 -0.316716 -0.623810 0.323659 -0.069562 -0.379350 1.022168 0.560157 -0.635769 -0.372353 -0.379685 0.133719 0.432082 0.997192 -0.414878 -0.121906 0.345355 0.048489 -0.198687 -0.284105 0.449561 -0.255797 0.709819 -0.643927 -0.488638 0.107324 0.766371 -0.197685 0.018744 -0.118541 0.026794 -0.228122 0.696951 0.226597 0.158140 -0.555521 -1.054399 0.135201 -0.148805 0.010769 0.299193 -0.500707 -0.388646 0.111208 0.093674 0.792008 0.240332 0.166901 0.458479 -0.708634 -0.674998 0.097154 -0.010815 0.129884 -0.454063 0.490512 -0.438095 -0.118293 -0.074840 0.250925 -0.082575 -0.269976 -0.312959 -0.050121 0.364263 0.288832 -0.355910 0.627400 0.135711 -0.248528 0.019165 -0.018819 0.298846 0.138617 -0.268323 -0.204766 -0.435128 0.108820 -0.223712 0.890255 -0.113570 0.229190 0.241957 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/program-wish-womens-day.cpp__main = 5.923025 2.072617 -3.278079 8.414092 -1.125359 -0.486213 -0.086202 5.274312 -3.176884 -17.438416 -12.491581 11.308291 0.704285 4.210469 3.094199 3.537818 1.334198 -0.101434 -20.511615 3.907239 6.682803 0.969265 0.851551 2.016883 3.169180 -4.527776 2.381533 1.115671 2.361257 9.540779 -4.512752 5.310675 8.563034 -1.815483 4.987350 7.191728 -3.072621 0.154242 -3.235491 -3.761050 12.411123 5.977240 0.712418 5.454065 -0.364729 9.575401 -0.561999 8.006875 4.784671 -7.714228 2.207149 0.276696 -7.121174 0.857343 -5.915286 2.858143 1.970094 2.459224 -4.757215 3.184384 -2.001517 -1.257670 1.304424 -2.494220 9.663620 1.852063 7.459993 6.224547 7.673386 -5.670219 -0.634993 5.827096 1.087220 2.383702 3.721766 -4.651091 -6.956520 -1.497801 0.371309 -15.148614 -8.722502 -2.048657 17.292894 -9.505327 0.137278 -0.398876 -2.724442 9.727293 -3.606806 2.806777 -8.038937 -2.092752 -1.123032 6.505335 2.399229 0.239698 1.553327 1.533651 2.330665 6.255751 -1.918838 -7.064677 -5.125569 -11.341082 0.008481 -3.617590 5.244892 8.072107 -10.496804 -2.475077 -3.740260 14.575129 -12.142566 -0.575236 5.708523 4.373027 3.673747 6.460589 -7.472564 -1.023450 3.908849 1.793595 9.910394 -4.180858 1.319043 -1.068352 2.560246 -0.166215 3.520730 1.848630 -10.796703 -9.210963 2.346041 -1.988750 -0.103457 2.390431 6.361993 -1.381379 6.979284 -1.979596 6.517653 -10.070623 -1.085032 -2.397018 -6.282401 -3.313073 10.452620 12.625439 6.119002 -2.194397 -1.780824 -1.759519 -11.301534 -9.530788 2.432924 1.937485 2.931578 3.600844 -1.245683 7.942309 -4.817142 2.447189 0.353647 -2.406292 -1.921959 -0.174234 3.876560 1.449602 -0.613319 -5.992864 -3.244345 -4.859978 -3.193864 8.251955 -1.759194 -14.960563 -13.505452 -7.063966 8.886440 -3.416528 1.320201 -4.532901 -0.583598 -3.297367 -1.881377 -8.988359 -1.520144 0.394952 -7.542975 -9.229838 -0.609564 -1.491151 -4.686025 1.367771 -6.531377 -2.173149 10.818676 4.520287 4.183490 -0.027648 -1.420807 -6.799695 -4.291028 1.911153 -8.061105 8.421400 6.168109 -3.940370 -10.415430 -3.199437 -7.660025 8.438745 -4.757674 3.567188 -5.644700 -2.062580 8.856998 -4.699982 0.517526 -5.475383 3.757191 5.207475 -24.091974 7.235803 8.517097 -1.532776 -0.443943 1.488093 0.465864 6.731916 5.476146 -4.702415 -5.257972 0.437393 -2.450355 1.087533 -1.051315 6.376091 -6.414004 -0.217311 -6.304344 -2.967448 6.755790 2.499835 1.762604 2.327421 5.610612 1.857223 8.166003 7.097771 6.409221 -3.777413 -7.109288 -20.353939 7.430356 7.426174 -3.226475 1.120585 -4.317942 -5.568526 1.752608 -8.744739 8.427149 -1.947489 -2.310578 7.163155 -8.275743 -9.056893 -6.863525 -0.903063 -1.053709 2.107940 2.625779 -2.676066 3.552238 2.217583 -2.521782 -0.670534 -5.426506 -2.564209 1.415059 6.999582 5.070200 4.929832 8.374074 3.687242 -5.704620 -1.349945 0.794281 -0.816086 -3.426136 -11.401786 -4.881603 -0.736095 2.585189 -4.026781 -0.000948 0.162889 -0.963920 1.580791 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.126689 -0.034112 -0.041703 0.102937 0.036615 0.030235 -0.121438 0.183304 -0.095216 -0.525150 -0.352777 0.007729 -0.026629 0.013622 0.299617 0.276795 0.261361 0.118124 -0.280317 0.167011 0.173015 0.033047 -0.058036 0.190353 0.254045 -0.158946 -0.284211 -0.062655 0.085409 0.340548 -0.067643 0.126612 0.236088 -0.053878 0.259069 0.257590 0.169038 0.133571 0.059095 0.189222 0.532536 -0.058273 0.125978 -0.079108 0.067223 0.344752 -0.253425 0.238911 0.168447 -0.086729 0.219865 -0.136271 -0.006857 0.073808 -0.425107 0.100418 0.117138 0.124192 -0.344561 0.220212 -0.062754 0.181506 -0.012032 -0.102970 0.313624 0.117504 0.117765 0.187288 0.408102 -0.036086 -0.014136 0.239668 0.071526 -0.109716 0.066676 -0.090343 0.003339 -0.505259 -0.093659 -0.242024 -0.021401 -0.146127 0.703668 -0.280099 0.054380 0.466918 -0.240373 0.333802 -0.053469 0.131726 -0.301194 -0.031355 -0.055516 0.334701 0.227970 0.160626 0.060506 -0.050802 0.040312 0.137749 0.020004 -0.222771 -0.508212 -0.584101 -0.213996 -0.131506 0.005664 0.095044 -0.369167 -0.232964 0.348721 0.296991 -0.338621 0.174632 0.105428 0.262721 -0.058200 0.083136 -0.404156 0.029700 0.098595 0.100008 0.210680 -0.092950 -0.062939 -0.252599 0.222777 0.057585 0.062768 -0.232830 -0.033588 -0.299266 0.043478 0.071324 -0.158103 -0.044660 0.081504 -0.211698 0.177431 0.098105 0.148063 -0.367908 -0.034270 0.054683 -0.361811 -0.049185 0.618045 -0.003206 0.261028 0.092609 -0.220311 -0.033547 -0.403318 -0.569798 0.173475 0.031295 0.204780 0.134152 -0.081400 0.246711 -0.114521 0.030607 0.004929 -0.117482 0.031098 0.113451 0.061080 -0.091431 -0.082050 -0.354898 -0.208591 0.077009 -0.122241 0.095556 -0.155185 -0.197580 -0.255155 -0.264608 0.293518 -0.125666 0.198939 0.155687 0.068182 -0.203009 0.084661 -0.273352 -0.085553 -0.049013 -0.352348 -0.329559 -0.283644 -0.192118 -0.070347 0.027118 -0.344026 0.128649 0.019727 -0.164853 0.010047 -0.088868 -0.179613 -0.235777 -0.323451 -0.250375 -0.184135 0.079139 0.131046 -0.021609 -0.098292 0.025896 -0.082424 0.248170 -0.205963 0.077036 -0.147866 -0.232880 0.308679 -0.101605 -0.093841 -0.404071 0.162929 0.130614 -0.491268 0.108916 0.408195 -0.093138 -0.179382 0.022921 -0.059521 0.170638 0.480036 -0.082766 0.045083 0.148892 0.067552 0.033850 0.075296 0.229380 -0.213456 0.223993 -0.463898 -0.078193 0.220798 0.304831 0.007964 0.036588 0.263132 0.239035 0.199830 0.365037 0.157661 -0.122359 -0.168626 -0.422912 0.195998 0.277040 0.051890 0.083583 -0.089954 0.045930 -0.006938 -0.183621 0.330841 0.286719 0.299099 0.239075 -0.054858 -0.390843 -0.046574 0.089902 0.068080 -0.039058 0.146619 -0.184948 -0.002737 -0.158219 0.005796 -0.035462 -0.214766 -0.280815 -0.057055 0.222978 0.360505 -0.121742 0.279408 0.087769 -0.238699 0.270863 -0.122100 0.313184 0.116716 -0.082320 -0.265637 -0.154895 0.156784 -0.175398 0.254529 -0.157696 -0.014003 0.146538 -PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = 5.810462 1.050537 -6.291220 11.960297 -0.848265 -3.749616 -0.060124 1.943404 -3.349284 -17.676208 -11.197175 8.776196 3.035567 1.960809 2.668472 5.671601 -1.733130 1.001633 -16.808458 4.837264 6.505924 1.509384 -1.222363 -1.425160 1.758759 -4.447447 3.764745 1.219393 1.960046 10.429590 -5.145824 6.396263 8.701150 -2.226403 3.406955 6.820244 -3.116734 1.640346 -2.880987 -0.550317 12.432771 5.514244 0.716523 4.156728 0.112573 10.019983 -0.165517 10.413684 -2.477002 -7.875122 5.741968 5.066951 -5.780531 -0.588250 -5.871983 5.009337 8.219036 4.569450 -4.158210 3.082015 -3.603706 -0.239197 3.243405 0.633667 11.963155 5.501034 8.987579 7.557630 10.952147 -5.745927 0.063398 5.017585 2.034902 -1.574640 8.997016 -6.725977 -9.884805 1.110162 -1.187896 -14.350882 -5.265109 0.919044 18.731066 -10.717954 -1.703436 0.711829 3.203061 11.422845 -5.675265 2.207688 -6.727517 -0.625859 -5.971201 15.065397 1.820940 1.960611 -2.416928 4.145041 3.015686 6.154357 -1.850546 -6.996015 -4.526537 -13.799897 -5.586286 -4.195228 4.477647 6.914886 -14.614701 -2.553182 -2.424017 10.735752 -15.824429 0.588069 7.118808 6.422401 10.649033 3.458822 -9.041836 1.225961 1.859525 1.247632 6.883899 -2.966872 1.369799 -3.045188 2.545173 -0.015791 2.716308 1.003697 -14.770969 -5.947413 -0.650495 -3.775667 1.489850 3.461534 7.575242 -5.305308 6.917746 -4.744088 7.062585 -15.593512 -1.944727 -4.544489 -11.369570 -2.830520 5.876373 10.065034 7.705543 -5.216408 -4.854500 -3.327882 -15.091264 -13.437007 0.499941 0.976822 2.090915 3.760817 -1.191568 5.264931 -5.422680 2.676400 6.551621 -4.537053 -2.516302 -1.948007 12.703780 0.513082 -2.135569 -6.770768 -4.514807 -4.622725 0.083464 10.254250 -0.875171 -14.801889 -17.858736 -7.031983 8.961668 -3.257332 1.273147 -6.869729 -1.962619 -9.406332 -0.052028 -9.347907 0.711611 0.823274 -5.647263 -10.509389 0.581947 -0.232506 -5.477595 -0.654136 -8.172831 -1.969445 10.859847 1.679602 4.292778 0.988647 0.100677 -9.730073 -7.729313 3.986159 -6.937363 8.340882 7.915972 -1.794129 -7.506631 -3.421550 -11.366050 6.608081 -5.254312 2.910659 -2.910015 -0.494595 9.717275 -8.058108 -0.557333 -7.743289 2.138556 1.868190 -18.304598 13.076958 7.811300 -3.386254 0.796831 1.146871 2.756139 5.231807 6.393105 -6.704801 -6.140596 0.180834 -2.585089 0.032782 -1.190481 6.458998 -8.715779 0.881619 -5.402601 -2.868636 5.387818 5.721046 0.505029 2.670821 2.151883 -3.591070 4.991187 6.601305 7.567928 -3.350309 -7.563502 -20.321104 5.860149 -5.881123 -4.720486 -1.310470 -3.306298 -6.127808 3.063578 -3.405803 9.694205 -0.199298 -4.007839 7.999386 -13.177605 -10.347150 -6.390892 0.100511 -0.329480 -0.963652 0.120474 -3.966544 3.462924 4.127396 -0.489280 -1.521962 -8.145530 -1.182851 0.789311 10.440534 1.253323 1.752360 10.655479 4.092508 -3.635614 -2.906176 1.477009 -1.573561 -1.963224 -10.622003 -4.251624 -0.874104 2.754264 -5.139010 2.979019 -2.130556 -0.777865 3.850311 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp___GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/bfs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = 4.284982 1.229536 -0.815118 5.818992 0.939104 -3.761840 0.471397 4.251023 -1.758872 -9.810500 -7.939273 2.378173 0.272912 -0.742939 3.790130 1.435611 -0.206372 0.906767 -13.687866 4.042690 3.932251 2.066411 -0.427337 -2.651730 1.834380 -1.491960 -2.037505 2.173348 0.682012 5.613791 -4.127811 1.966317 4.402380 0.525330 3.812668 3.472038 -1.475052 0.216026 1.060712 0.478304 9.133528 4.794859 -0.593618 3.671923 3.220578 5.985704 -1.624687 5.178186 -1.776126 -3.666297 3.360540 -1.889351 -3.831046 0.717960 -3.923454 3.917263 7.797696 3.271774 -3.553690 3.321040 -1.924008 -0.336556 1.673337 -3.139533 7.502190 4.115778 4.094940 3.181223 7.850954 -2.249632 -0.792201 1.938558 4.357583 -1.032097 0.861847 -5.019818 -3.684446 -7.259904 0.167182 -12.057280 -2.265325 -0.874853 9.702814 -6.211995 2.093497 3.068568 0.085305 5.245071 -4.078250 -0.888071 -4.103209 -0.037252 -3.222612 9.137971 -0.360609 0.645833 0.652181 2.891291 3.282992 4.792588 -1.545894 -2.730395 -5.461292 -11.799064 -3.066138 0.325937 1.831088 1.176856 -7.042744 -1.712497 1.509656 5.012644 -8.533313 -1.295037 4.761095 3.031218 -0.576910 0.157140 -6.025427 -0.336890 -0.504801 1.681378 3.537841 -3.192288 -0.110349 -4.189024 0.088562 0.677448 3.212366 -0.314251 -5.321973 -3.453449 -1.074595 -1.534727 -0.984376 -0.250691 1.245780 -3.301114 4.415694 -3.512009 4.757944 -8.780474 0.215980 -3.667780 -4.654280 -0.193814 4.975372 5.118828 2.431213 0.334591 -2.116102 -2.079466 -7.460218 -7.681207 2.561489 0.353589 4.146462 -0.180802 -0.424718 1.293618 -1.877430 -1.272305 2.148235 -3.625048 -1.205031 -3.337848 8.367201 -0.626350 -1.778066 -5.239514 -0.380254 2.861773 -2.283870 2.209150 -1.790150 -4.998616 -7.389965 -5.025512 4.841235 -1.081445 1.168831 -3.051827 2.017382 -6.092854 1.671641 -5.867825 1.395817 -0.132981 -4.628024 -5.633230 -0.787419 -0.739385 -0.484522 -1.063278 -3.690428 -0.821151 5.662849 4.610644 1.517694 1.356213 1.283227 -6.845540 -6.765500 -0.796374 -1.585360 5.202017 3.190984 -0.019776 -5.247071 -0.850983 -6.057821 5.928843 -2.261406 0.130171 -2.915195 -1.804388 7.028729 -3.086030 -1.958918 -5.826953 1.311616 1.329782 -9.503735 7.215113 3.898370 -3.108092 -1.789089 -3.516994 1.698525 4.128719 7.277996 -3.010788 -2.448392 0.415004 -2.169782 -0.617283 -3.175985 5.237265 -3.872384 2.606769 -4.519800 -2.997670 3.281211 4.246859 0.531082 4.056811 1.232785 1.771053 1.917044 5.334035 3.003559 -2.641394 -4.305813 -11.316458 2.617648 3.373409 -0.088431 -0.670995 -2.557285 -5.818211 -0.768504 1.056524 6.352748 5.789241 -0.224407 4.562189 -5.288284 -5.919939 -2.552483 2.335513 -0.039061 -3.065649 -0.203698 -2.405198 1.542141 3.002399 0.339064 2.545798 -4.852591 -6.603286 -1.722780 4.835429 1.523548 -0.549861 6.368673 2.171101 -3.805062 -0.547333 0.170798 1.088255 -0.016546 -3.178422 -3.333468 -3.227069 0.304442 -2.406995 3.702825 -0.323095 0.509577 2.644985 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.331263 0.218198 0.072128 0.416215 -0.052372 -0.891296 0.352181 0.549944 -0.455545 -0.804694 -0.126963 0.075042 0.040022 -0.577708 0.004000 0.115606 -0.369326 0.489086 -1.244934 0.591615 0.499917 0.468625 -0.080519 -0.838149 0.070903 -0.166127 -0.357812 0.538145 -0.128871 0.661822 -0.377603 -0.246623 0.441862 0.157246 0.131446 0.679097 0.367526 0.102466 0.386134 0.450329 0.760772 0.573883 -0.455210 -0.039483 0.493534 0.643948 0.197235 -0.235769 -1.034902 -0.288294 -0.279900 0.228193 -0.495973 -0.335090 -0.244686 0.207151 0.851769 0.982680 -0.294360 0.588227 -0.612412 -0.135984 0.351577 0.156340 0.667274 0.426761 0.114876 0.326019 1.240423 -0.299497 -0.083092 0.150515 0.439820 -0.586510 0.451484 0.049664 -0.631860 -1.725475 -0.040963 -1.620708 -0.398413 0.480684 0.933112 -0.646311 0.442388 0.749595 0.601210 0.526536 -0.666892 -0.365136 -0.380459 0.074520 -0.496221 1.829689 0.071982 0.212481 -0.109210 0.549350 0.665530 0.478352 -0.073029 -0.338043 -0.534221 -1.317670 -0.257802 -0.231093 -0.451876 -0.142464 -0.848119 -0.481333 1.369885 0.892332 -1.176325 0.116394 0.659865 0.327341 0.171599 -0.749604 -0.513116 0.639985 -0.486523 -0.209781 0.268512 -0.530114 -0.298633 0.231733 0.174488 0.080987 0.017350 -0.094004 -1.192012 -0.072029 0.144811 -0.581732 0.012721 0.045450 -0.172972 -0.636044 0.157199 -0.986867 0.633444 -0.852684 0.530032 -0.017946 -0.708293 0.049618 -0.003803 0.361145 -0.452209 -0.318657 -0.323490 -0.141987 -0.619626 -1.243889 0.463221 0.026508 0.335418 -0.379616 -0.108991 -0.386698 -0.140146 -0.209946 0.398975 -0.367444 0.123255 -0.135865 1.497897 0.007732 -0.209517 -0.416224 -0.159908 0.636256 0.599359 0.069331 -0.482973 -0.198436 -0.784289 -0.602290 0.527728 0.051216 -0.348226 -0.463942 -0.157873 -0.666029 0.694335 -0.326929 0.646526 -0.108221 -0.105191 -0.656038 0.007099 -0.114056 -0.379538 -0.313140 -0.290438 -0.183301 -0.117840 -0.649513 -0.028471 -0.239677 0.406591 -0.607089 -0.667994 0.128583 0.292785 0.324152 0.386659 0.527714 -0.578441 0.128188 -0.642791 0.687869 -0.103262 0.000177 -0.184863 -0.432920 1.247562 -0.202654 -0.339831 -0.497679 0.354626 -0.050834 0.216247 1.488084 0.737157 -0.418121 -0.276029 -0.024016 -0.078413 0.712722 0.818625 -0.639385 -0.454329 0.315249 -0.319716 -0.186812 0.037232 0.421135 -0.534329 0.804862 -0.408847 -0.225308 0.079071 0.779964 -0.110787 0.487916 -0.314485 -0.280270 -0.462735 0.518464 0.229157 -0.004290 -0.490289 -0.380701 0.372069 -1.010540 0.205793 -0.241854 0.012332 -0.549925 0.205001 0.570054 0.777710 0.826168 -0.822846 0.372453 -0.910280 -0.788496 -0.181671 0.317458 0.175012 -0.552178 0.305942 -0.244983 0.141825 0.275475 0.179260 0.296339 -0.407332 -0.389031 -0.180635 0.417739 0.394515 -0.912878 0.818844 -0.123633 -0.249537 -0.109193 -0.087222 0.300971 0.080071 0.279152 -0.196020 -0.466633 0.449377 -0.212691 1.032836 -0.011969 -0.066358 0.631689 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.415313 -0.087937 0.246680 0.233072 0.256610 -0.525551 0.204053 0.427456 -0.043350 -0.730164 -0.397396 -0.169482 -0.089227 -0.448177 0.252229 0.074317 0.060320 0.379717 -0.827685 0.451331 0.314369 0.376402 0.010092 -0.425778 0.164236 -0.136017 -0.568440 0.196301 -0.003779 0.452063 -0.435482 -0.119391 0.327382 0.126556 0.164975 0.469165 0.270827 -0.092411 0.501388 0.240878 0.836582 0.220300 -0.016266 0.288321 0.536249 0.454157 -0.207748 0.543305 -0.167740 -0.182879 0.306705 -0.683213 -0.312383 0.078000 -0.435719 0.422576 0.758171 0.478021 -0.358295 0.397534 -0.177641 0.079143 0.179454 -0.347842 0.500353 0.528456 -0.047705 0.178093 1.012861 -0.110911 -0.073846 0.157682 0.614872 -0.072569 0.136832 -0.312669 -0.019078 -1.338876 -0.095230 -0.821795 0.123242 -0.112597 0.795323 -0.504455 0.389942 0.732130 0.142691 0.376995 -0.253471 -0.254047 -0.377127 0.250830 -0.132890 0.824977 -0.159645 0.169399 -0.198337 0.201700 0.210154 0.342538 -0.050754 -0.185471 -0.823380 -1.269537 -0.461895 -0.076143 -0.232815 -0.288618 -0.821689 -0.102757 0.708721 0.392574 -0.816524 -0.042542 0.346636 0.216595 -0.298744 -0.085980 -0.501903 -0.084095 -0.241671 0.153684 -0.151965 -0.339930 -0.247708 -0.668842 -0.046933 0.127163 0.185720 -0.327995 -0.262523 -0.106013 -0.148086 -0.042527 -0.132994 -0.042868 -0.079400 -0.553063 0.211024 -0.488133 0.316888 -0.662849 -0.041721 -0.323271 -0.466202 0.021628 0.925799 0.068621 0.143458 0.221491 -0.329029 -0.370485 -0.470374 -0.718492 0.234204 -0.395270 0.529477 -0.102955 0.017420 -0.312509 0.001970 -0.404600 -0.047528 -0.382877 0.070252 -0.368044 0.652418 -0.320485 -0.126996 -0.671938 0.010804 0.932041 -0.112701 -0.218571 -0.325754 0.056324 -0.365950 -0.552759 0.349140 -0.049440 0.169915 -0.232694 0.267068 -0.555311 0.409905 -0.277816 0.164294 -0.134231 -0.399883 -0.498972 -0.065343 -0.157234 -0.020869 -0.135784 -0.272160 0.089219 -0.008979 0.314378 0.032806 0.057318 0.026344 -0.837838 -0.838213 -0.345247 0.222224 0.408363 0.245881 0.273274 -0.371871 -0.067291 -0.467199 0.589308 -0.553178 -0.099407 0.025979 -0.250625 0.748142 -0.167409 -0.241391 -0.653104 0.212703 -0.071490 -0.488580 0.800343 0.305037 -0.546416 -0.324935 -0.675762 0.170876 0.420645 0.872966 -0.190505 -0.002901 0.277587 -0.161701 -0.167040 -0.483661 0.444908 -0.253133 0.708412 -0.497315 -0.337897 0.153444 0.651551 -0.176627 0.283260 0.010355 0.309898 -0.107265 0.556204 0.107602 -0.095810 -0.391264 -0.738645 0.106423 0.447839 0.300669 0.154504 -0.376585 -0.389995 -0.006137 0.411707 0.666938 0.801040 0.324264 0.353179 -0.417577 -0.543508 0.187513 0.265535 0.162142 -0.516934 0.203317 -0.299210 -0.097602 0.127022 0.294270 0.328745 -0.397531 -0.825883 -0.148758 0.434075 0.301377 -0.411819 0.548746 0.066616 -0.290470 0.133281 -0.073959 0.451843 0.051038 0.237630 -0.177727 -0.400303 0.010345 -0.240751 0.921651 -0.116039 0.121372 0.259974 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.526928 -0.033633 0.238228 0.341403 0.319131 -0.631273 0.269651 0.518505 -0.150602 -0.897718 -0.489901 -0.094814 -0.074594 -0.530835 0.249320 0.092768 0.043157 0.380879 -1.011987 0.505786 0.347503 0.357265 -0.104228 -0.522414 0.144541 -0.222034 -0.576756 0.363559 -0.055552 0.558791 -0.456615 -0.141130 0.395410 0.172658 0.246035 0.601734 0.311715 -0.082944 0.525422 0.271449 1.024686 0.348745 -0.116668 0.316779 0.653412 0.590164 -0.217276 0.575694 -0.484385 -0.207305 0.291355 -0.585287 -0.412816 0.010170 -0.546969 0.445199 0.950098 0.543847 -0.435643 0.510045 -0.317846 0.055247 0.228602 -0.256380 0.652331 0.596216 0.048377 0.245369 1.220561 -0.217068 -0.137835 0.276502 0.699967 -0.121292 0.151055 -0.259934 -0.159098 -1.434784 -0.039826 -1.069621 0.030957 -0.085764 1.029008 -0.561086 0.346049 0.813635 0.247653 0.460304 -0.412779 -0.305488 -0.464849 0.255030 -0.268527 1.193317 -0.127237 0.265643 -0.189597 0.295012 0.336917 0.491286 -0.124757 -0.268514 -0.904137 -1.525953 -0.514462 -0.129797 -0.276112 -0.325539 -0.929526 -0.208959 0.888487 0.579762 -0.954305 -0.040597 0.458030 0.269344 -0.160960 -0.108771 -0.660687 0.000963 -0.272622 0.084773 -0.073156 -0.349441 -0.266752 -0.631820 0.049754 0.104133 0.196109 -0.305148 -0.615214 -0.087231 -0.075511 -0.205925 -0.120874 -0.063869 -0.112968 -0.679387 0.247452 -0.626484 0.441554 -0.881571 0.054842 -0.380245 -0.691470 0.041508 0.839335 0.229496 0.154492 0.205746 -0.321240 -0.383752 -0.618408 -1.033427 0.280080 -0.341701 0.565085 -0.225099 -0.009350 -0.337416 -0.087457 -0.434507 0.112938 -0.441112 0.073440 -0.417877 1.078796 -0.291293 -0.180998 -0.681524 -0.009255 0.963131 0.005689 -0.127677 -0.410080 -0.099662 -0.537464 -0.663281 0.432685 -0.053432 0.073485 -0.282980 0.199287 -0.735918 0.495804 -0.328444 0.313656 -0.181035 -0.438133 -0.613060 -0.049080 -0.161075 -0.125595 -0.171419 -0.345717 0.050710 0.091258 0.171600 0.049525 0.049326 0.067239 -0.881815 -0.951214 -0.276759 0.280347 0.535629 0.403471 0.319280 -0.392511 -0.059161 -0.651297 0.719667 -0.542474 -0.088680 0.016830 -0.338652 0.932603 -0.239218 -0.349058 -0.722323 0.280412 -0.078703 -0.442709 1.075826 0.467187 -0.642387 -0.435528 -0.685737 0.140507 0.508064 1.043860 -0.324794 -0.080708 0.330359 -0.180933 -0.203779 -0.414210 0.519973 -0.289131 0.823909 -0.632469 -0.434719 0.201422 0.800065 -0.200544 0.379034 -0.063522 0.259303 -0.124105 0.699451 0.160852 -0.111146 -0.486840 -0.884773 0.167821 0.090967 0.216609 0.068644 -0.342319 -0.554578 -0.008885 0.414954 0.816040 0.851694 0.111372 0.451404 -0.554732 -0.687957 0.097496 0.291260 0.184306 -0.635275 0.257904 -0.356101 -0.054870 0.133858 0.304009 0.364234 -0.519098 -0.881394 -0.203999 0.500798 0.325374 -0.543440 0.700942 0.061514 -0.298697 0.064629 -0.058176 0.503741 0.166352 0.123720 -0.261177 -0.526208 0.083399 -0.255556 1.041901 -0.035596 0.159926 0.432384 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp__main = 0.670678 0.253021 1.401702 -0.210928 0.592687 -0.282795 0.688821 1.336443 -0.574958 -1.320791 -1.669315 -1.289355 -0.460845 -0.497807 0.885612 -0.626539 0.461944 0.202993 -2.210891 0.057502 0.742901 0.393653 0.428519 -0.263353 0.233745 -0.352723 -2.342350 1.004911 -0.117964 0.735302 -0.343526 -0.474118 0.484797 0.612248 0.054927 0.959617 0.058739 -0.233955 1.562595 0.126211 1.477063 0.141179 -0.107999 0.560901 1.076455 0.794926 -1.283352 1.007540 -0.739229 -0.333291 1.345659 -2.851983 -0.740781 0.276991 -0.533975 0.301247 1.989790 1.043681 -0.467338 1.035673 -0.683722 0.087471 -0.059857 -1.500623 0.436672 1.355404 -0.244677 -0.201123 1.178495 -0.579397 -0.560535 0.619968 0.452647 0.109905 -2.235835 -0.780524 1.174176 -3.217541 0.368162 -2.249674 -0.365706 -0.623348 1.796158 -0.203247 0.390987 1.419183 -0.586095 0.000000 -0.267258 -0.378566 -0.568312 0.365866 0.023812 0.527695 -0.486582 -0.058841 0.563420 -0.090522 0.733195 1.124208 -0.818516 0.346209 -2.812704 -2.424971 -0.504019 0.374658 0.184668 -0.545232 -0.702691 -0.371522 1.823435 -0.454535 -0.618763 -0.557023 0.773994 0.948265 -2.429283 1.512970 -1.900133 -0.963514 -0.183985 0.340218 0.472760 -0.390534 -0.046966 -1.921332 -0.370796 -0.024526 0.298431 -0.632691 -0.509124 -0.587601 -0.185960 -0.730009 -0.314589 -0.565362 -0.535321 0.383688 0.443858 -0.710133 0.696570 -1.444705 0.429396 -0.706594 -0.642256 0.194834 1.665954 1.172373 -0.321370 1.220579 -0.293147 -0.429813 -0.074780 -0.329221 0.164956 -0.157214 2.095169 -0.859441 -0.078511 -0.265414 0.074559 -0.847009 -1.075151 -0.137697 0.360608 -0.870130 1.737795 -0.367233 -0.367327 -1.229814 0.844164 1.681526 -1.683721 -0.761904 -0.670749 1.305415 0.009030 -1.144077 0.504464 -0.002664 -0.062761 0.025245 0.916889 -0.899272 0.693592 -0.276427 -0.102875 -0.003701 -1.496171 -0.746395 0.229807 -0.244997 -0.289524 0.346130 -0.120360 -0.350752 0.892575 1.568523 0.494661 0.308560 -0.096543 -0.902525 -1.470375 -1.418478 0.374090 0.413669 1.104461 0.162598 -0.546015 -0.071121 -0.529480 1.336469 0.374568 -0.387196 -0.637284 -0.391197 1.064825 0.051699 -0.058302 -1.178881 0.123304 0.478986 -2.276213 0.722711 0.169004 -0.742022 -1.279589 -2.056982 -0.268619 0.700431 1.420176 0.183627 0.228053 0.427591 -0.438573 -0.163259 -0.933635 0.755471 0.242590 0.869246 -1.025884 -0.884114 0.565398 0.987896 -0.199532 1.265144 0.597816 2.033691 0.751477 1.123113 -0.290652 -1.287508 0.055614 -1.829354 0.517653 2.816794 0.369833 0.162270 -0.709766 -1.322033 -0.343524 0.878073 0.857885 2.269488 0.791105 0.679277 0.851576 -0.536923 0.081168 0.902761 0.397959 -1.238517 -0.374818 -0.154001 0.118488 0.563558 -0.040734 1.758989 -1.032169 -3.228331 -0.846640 0.924211 0.432233 -0.220109 0.872146 -0.154361 -0.630469 0.144529 -0.016103 1.250559 0.732131 0.738397 -0.409761 -0.926898 -0.229662 -0.085469 1.012236 0.537865 -0.048853 0.967062 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/bfs.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 2.074297 0.153914 0.112729 1.533266 0.653734 -2.304730 0.507145 1.801522 -0.787016 -2.752329 -1.848081 1.176496 -0.161221 -1.454543 0.784517 0.293641 -0.156571 0.440830 -3.974807 1.964340 0.746150 0.674303 -0.913666 -1.704069 0.484805 -0.203591 -0.978858 1.205302 -0.223431 1.636355 -1.533924 -0.154170 0.966616 0.571397 1.336633 1.324485 0.060427 -0.243318 1.065374 0.256525 3.055615 1.710117 -0.536456 1.210231 2.000342 1.721079 -0.588190 1.981502 -1.217897 -0.473559 0.904303 -0.591845 -1.510453 0.211263 -1.612526 1.208423 2.789336 0.975313 -1.121427 1.295153 -1.092741 0.020929 0.750615 -0.424910 2.613439 1.702683 0.777155 0.871132 3.489385 -0.676765 -0.344578 0.889238 2.661824 -0.295904 0.257069 -0.980605 -1.255765 -3.179500 0.065266 -3.907172 -0.294200 -0.358442 3.483512 -1.702366 0.981995 1.469900 0.716798 1.445481 -1.890022 -0.480780 -1.309094 0.476883 -1.354291 3.916106 -0.575774 0.974354 -0.231921 0.933663 1.154973 1.756565 -0.822506 -0.946684 -1.853148 -4.442384 -1.084088 0.182784 -0.871108 -0.827637 -2.654981 -0.554583 1.858564 2.244355 -2.639444 -0.691020 1.281955 0.356955 0.104636 0.291629 -2.089131 0.193816 -0.807391 0.497086 0.465835 -0.816469 -0.582080 -1.503965 0.119800 0.433514 1.007970 -0.140151 -2.687576 -0.346385 0.099265 -0.780222 -0.499191 -0.388819 -0.484755 -1.755006 0.786116 -1.530577 1.453707 -2.903757 0.006508 -1.484059 -1.926977 0.538177 1.661781 1.534067 0.692224 0.652733 -0.176781 -0.849855 -2.203350 -3.136961 1.097082 -0.676252 1.180759 -1.087218 0.171550 -0.578318 -0.364978 -1.372882 0.939917 -1.603337 -0.236683 -1.739860 3.691444 -0.477815 -0.519886 -1.579800 -0.080486 2.126550 0.100536 0.108837 -1.056672 -1.986232 -2.172092 -1.833480 1.374333 -0.087195 -0.122834 -0.751399 0.723313 -2.044563 1.113892 -1.178167 1.178873 -0.436714 -1.254187 -1.754974 -0.452745 -0.251137 -0.254539 -0.992935 -0.944441 -0.030732 1.063224 0.974125 0.057596 0.665440 0.478662 -2.518841 -2.856412 -0.382426 0.975437 2.048260 1.338558 0.733845 -1.580029 -0.170882 -2.378132 2.314269 -1.817605 -0.126463 -0.334838 -0.946572 2.995902 -0.874722 -1.171924 -1.837518 0.910523 -0.020544 -2.115943 3.372516 1.678591 -1.794072 -1.170815 -1.957391 0.594147 1.642471 3.365234 -1.286404 -0.488219 0.708377 -0.295030 -0.710512 -0.894312 1.827090 -0.997056 1.992875 -1.721337 -1.396085 0.668781 1.882711 -0.059959 0.912939 -0.677043 0.373349 -0.168237 2.237086 0.687698 -0.426741 -1.750822 -3.446761 0.500616 0.149189 0.240305 0.207359 -0.970672 -2.322624 -0.451646 0.485970 2.481586 1.559275 -0.344096 1.272952 -1.969526 -2.008646 -0.383021 1.100739 0.068306 -1.614687 0.927020 -1.144017 -0.121506 0.756185 0.739191 0.775447 -1.327088 -2.499095 -0.838287 1.252147 1.013743 -1.505981 2.044412 0.628525 -1.077427 -0.179737 0.006631 0.940441 0.179883 -0.662592 -0.957926 -1.727578 0.373973 -0.708548 2.655386 0.623413 0.673992 0.989172 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/bfs.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.585655 0.024872 0.221453 0.593421 0.398858 -0.720082 0.070010 0.466186 -0.383223 -0.772644 -0.473478 0.181595 -0.191657 -0.326547 0.410748 -0.058758 -0.007018 0.031771 -0.739429 0.574004 -0.036066 0.124963 -0.245385 -0.627969 0.194180 0.348015 -0.266974 0.350395 0.030368 0.405451 -0.656558 -0.103518 0.075843 0.362260 0.488001 -0.005515 0.393368 -0.056096 0.008440 -0.129713 0.961636 0.226901 -0.127791 0.544570 0.668675 0.368950 -0.199476 0.750696 -0.287745 0.101308 0.446729 -0.586861 -0.224790 0.187856 -0.556964 0.531416 0.971009 0.345336 -0.274278 0.274353 -0.206141 0.140138 0.155202 -0.286635 0.766486 0.621650 0.131641 0.266325 0.981581 -0.332722 -0.212045 0.241291 1.171658 0.050252 -0.346628 -0.393630 -0.085711 -1.300871 -0.083742 -0.890736 0.112375 -0.251916 0.953776 -0.408385 0.377822 0.550020 -0.115199 0.161602 -0.655520 0.131387 -0.420587 0.158030 -0.353649 0.905023 -0.264290 0.154275 -0.015976 0.144407 0.399826 0.665301 -0.227975 -0.072613 -0.496521 -1.279448 -0.512792 0.547399 -0.366936 -0.499727 -0.614598 -0.134266 0.690941 0.487301 -0.522033 -0.546657 0.195770 0.154781 -0.161251 0.155788 -0.638250 0.023415 -0.233959 0.222733 0.157610 -0.179093 -0.086716 -0.704770 -0.225651 0.121444 0.611969 0.038036 -0.485862 -0.155947 -0.161268 -0.150822 -0.297808 -0.533051 -0.470475 -0.471991 0.218432 -0.186094 0.387729 -0.743203 -0.143548 -0.526612 -0.555703 0.433934 0.867173 0.158473 0.397593 0.616219 -0.155032 -0.317867 -0.384769 -0.816618 0.476709 -0.034899 0.320433 -0.267651 0.125122 -0.056430 -0.045346 -0.789463 0.508368 -0.638297 -0.347905 -0.759826 0.692958 -0.354016 -0.162676 -0.717659 0.347917 0.990640 -0.178960 -0.074433 -0.348475 -0.464128 -0.446016 -0.570559 0.329777 -0.035121 0.010766 0.112820 0.508797 -0.793469 0.395063 -0.385823 0.515549 -0.010497 -0.657113 -0.480370 -0.142606 -0.097568 0.040761 -0.175504 -0.180243 0.130510 -0.002340 0.564827 -0.137215 0.447025 0.287590 -0.932093 -1.250128 -0.431889 0.575609 0.575689 0.098340 0.345719 -0.507622 -0.214417 -0.609798 0.790800 -0.729863 -0.126804 -0.096627 -0.011688 0.752235 -0.263443 -0.440883 -0.538743 0.299199 0.253725 -0.611736 0.857494 0.376364 -0.582194 -0.526690 -0.985747 0.304502 0.403834 1.431062 -0.433823 0.010894 0.297576 0.257794 -0.321197 -0.562769 0.637783 -0.092576 0.453626 -0.559037 -0.657476 -0.085612 0.536544 0.122454 0.210662 -0.051048 0.297370 -0.389484 0.937325 0.192301 -0.112925 -0.361791 -0.814776 0.032130 0.517560 0.201992 0.294576 -0.582108 -0.751596 -0.278958 0.245996 0.706187 0.498652 0.197127 0.421951 -0.405680 -0.374543 0.136348 0.422781 -0.029673 -0.783392 0.366747 -0.487703 -0.223079 0.316287 0.126257 0.186055 -0.041211 -1.010320 -0.599634 0.267295 0.202659 -0.249332 0.524180 0.395218 -0.538586 0.127652 0.123385 0.382330 0.060870 -0.277185 -0.267041 -0.548241 -0.048598 -0.177824 0.737336 0.264232 -0.009514 0.146945 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 1.663913 0.045604 0.145366 0.623686 0.767592 -1.364656 0.426920 1.250602 -0.241526 -2.035030 -1.624469 0.236324 -0.104414 -1.318307 0.746037 0.480906 0.239139 0.613747 -2.036159 1.255438 0.656942 0.586993 -0.609335 -0.803868 0.377027 -0.474660 -1.796263 0.375720 -0.171604 1.091323 -0.971320 -0.032780 0.802042 0.176314 0.459522 1.134108 -0.026875 -0.367694 1.665618 0.391513 2.297661 0.629961 0.288868 1.030498 1.527979 1.126898 -1.478345 2.655329 -0.787274 -0.387447 1.642779 -1.536000 -1.004267 0.677126 -1.264635 1.175832 2.102461 0.393151 -0.842917 0.957529 -0.690359 0.288515 0.432893 -0.916817 1.596498 1.978953 0.142302 0.522932 2.737224 -0.100308 -0.186260 0.744208 1.620309 -0.014146 0.143892 -0.936603 0.049698 -1.922333 -0.056701 -1.953256 0.483015 -0.836239 3.337422 -1.245397 0.467781 1.484386 0.799822 1.158057 -0.795823 -0.381146 -0.822269 0.771643 -0.815630 2.185685 -0.660124 0.988179 -0.900195 0.238320 0.265050 0.932421 -0.798091 -0.372978 -2.558368 -3.186917 -1.479849 -0.068718 -0.498669 -0.713080 -2.563480 -0.087767 1.375500 0.991700 -2.046191 -0.271134 0.832948 0.424429 -0.093404 1.872768 -2.239579 -0.719311 -0.363206 0.571044 -0.626961 -0.181997 -0.572834 -2.519839 -0.144678 0.210511 0.477498 -0.844275 -1.746960 -0.073812 -0.381205 -0.549691 -0.221577 -0.011589 0.034273 -1.495986 0.591208 -0.857385 0.565721 -2.417234 -0.777067 -1.372433 -1.830069 0.167273 2.353453 1.087723 1.138153 0.839246 -0.408433 -1.300400 -1.764188 -1.598477 0.092430 -1.511262 1.429822 -0.573863 0.219609 -0.799623 -0.032869 -0.953618 -0.022745 -1.069666 0.201489 -1.442315 3.139741 -0.894638 -0.333597 -1.778530 -0.334599 1.879412 -0.648539 -0.446940 -0.540779 -0.487369 -1.334322 -1.402949 0.832566 -0.115138 0.631666 -0.728789 0.899125 -1.475307 0.514966 -0.611762 0.178263 -0.302616 -1.095955 -1.204353 -0.140276 -0.111548 -0.540134 -0.697221 -0.751565 0.222211 1.145387 1.327043 0.313473 0.476715 -0.466968 -2.211473 -2.355126 -0.810432 0.516545 1.325529 1.662820 0.447996 -0.746377 -0.210624 -1.892022 1.509236 -1.877395 -0.296167 0.192142 -0.463731 1.865550 -0.789781 -0.777832 -1.950919 0.393307 -0.607422 -2.514916 1.980307 0.597994 -1.550412 -0.901553 -2.245048 0.648200 0.968798 2.285159 -0.235208 0.268253 0.579270 -0.276220 -0.509780 -1.028913 1.330519 -0.765969 1.868298 -1.337072 -0.901794 0.786758 1.749077 -0.565185 0.553183 -0.290046 0.852134 0.665723 1.334163 0.428129 -0.819517 -1.011001 -2.990223 0.001784 0.798200 0.096122 0.350187 -0.948355 -1.369909 -0.274290 0.402144 1.870940 0.982285 1.166348 0.845380 -1.025364 -1.464135 0.420806 0.970959 0.261039 -1.302148 0.408285 -0.759988 -0.373685 0.513130 0.867488 0.922152 -1.684243 -2.565719 -0.487223 1.440117 0.641804 -0.949137 1.354469 0.495772 -0.479740 0.137010 -0.144021 1.323879 0.178891 -0.176086 -0.527975 -1.222939 -0.228164 -0.635720 2.440458 0.185818 0.601133 0.805316 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 1.402501 0.197423 0.405995 0.784598 0.617698 -1.390692 0.354328 1.343058 -0.738411 -1.753580 -1.406225 -0.173052 -0.230360 -0.968843 0.893762 0.100601 0.040112 0.175799 -2.423687 1.116960 0.476939 0.360471 -0.507532 -1.041045 0.376955 0.042489 -1.520809 0.754466 -0.193361 0.983839 -1.064259 -0.134426 0.467726 0.523178 0.794978 0.590192 0.066490 -0.219163 1.107840 0.243239 2.051460 0.782884 -0.349254 0.739868 1.442388 0.980061 -1.021598 1.616641 -1.422386 -0.111993 1.175391 -1.477184 -0.805081 0.532435 -1.032218 0.850564 2.370437 0.823075 -0.643860 0.889740 -0.900568 0.249134 0.374249 -0.673045 1.675629 1.536046 0.383978 0.452749 2.192538 -0.398468 -0.228879 0.482594 1.684433 -0.301243 -0.800935 -0.757095 0.043857 -2.844031 0.150268 -2.525565 0.097285 -0.473493 2.454737 -0.902350 0.655628 1.297817 0.297041 0.717227 -1.268785 -0.113740 -0.772489 0.428983 -0.878649 2.247566 -0.641844 0.598270 -0.145845 0.474092 0.766155 1.156873 -0.760008 -0.186048 -1.945990 -2.967514 -1.085302 0.607786 -0.562384 -0.786029 -1.722205 -0.294026 1.790546 0.744715 -1.469752 -0.598243 0.635027 0.506957 -0.540350 1.031163 -1.968401 -0.263959 -0.655249 0.519131 0.159243 -0.321552 -0.205106 -1.969855 -0.189664 0.335822 0.826503 -0.256492 -1.636368 -0.105044 -0.118158 -0.871016 -0.459094 -0.417984 -0.514837 -0.910973 0.518849 -0.898437 0.852057 -2.094461 -0.076034 -1.209371 -1.476390 0.609653 1.444502 1.126370 0.247389 1.091018 -0.285649 -0.644638 -1.257554 -1.627718 0.479581 -0.427496 1.215569 -0.913854 0.141661 -0.453480 -0.095391 -1.155953 0.411149 -1.090127 -0.209739 -1.554047 2.808809 -0.484131 -0.467761 -1.299847 0.289021 1.928974 -0.656300 -0.220852 -0.683210 -0.241015 -1.202479 -1.255374 0.781436 -0.014640 0.070426 -0.294068 1.011909 -1.734812 0.868026 -0.657955 0.701680 -0.157860 -1.110261 -1.061485 -0.215307 -0.090793 -0.265594 -0.575391 -0.448564 0.044700 0.796355 1.098277 0.068398 0.604786 0.260256 -1.705842 -2.337278 -0.763492 0.842614 1.210255 1.013636 0.459445 -0.777101 -0.157618 -1.491005 1.719396 -0.929951 -0.252942 -0.289808 -0.401341 1.741814 -0.548616 -0.930206 -1.410575 0.453070 -0.043034 -1.503744 2.026727 0.726743 -1.299719 -1.036290 -2.185772 0.578726 0.882694 2.452253 -0.505858 0.112302 0.450287 0.009966 -0.548868 -0.914717 1.285349 -0.449741 1.258780 -1.191677 -1.052944 0.453859 1.340571 -0.082396 0.834139 -0.262168 0.784082 -0.036154 1.562802 0.274986 -0.758152 -0.730409 -2.110806 0.097318 0.767238 0.234257 0.077363 -0.811179 -1.649379 -0.612455 0.727891 1.593069 1.651958 0.338153 0.821933 -0.755719 -1.095517 -0.027044 1.132888 0.018841 -1.504372 0.266610 -0.723862 -0.225270 0.746604 0.550899 1.021229 -1.112624 -2.650083 -0.982962 0.963939 0.451699 -0.985586 1.240367 0.537132 -0.709707 -0.010841 0.101210 0.976004 0.414937 -0.019147 -0.645489 -1.240669 -0.054397 -0.466390 1.797922 0.594201 0.304335 0.784147 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = 0.474191 -0.172887 -0.026253 0.644451 0.185240 -0.574415 0.239252 0.311908 -0.208634 -1.215736 -0.411989 0.259049 0.073011 -0.139674 0.056420 0.236561 -0.137702 0.345349 -1.184934 0.444470 0.425037 0.351927 -0.031384 -0.445456 0.131026 -0.283207 -0.022813 0.391277 0.095561 0.788936 -0.528806 -0.022847 0.625241 0.005190 0.180800 0.705338 0.640523 0.088595 -0.019386 0.261666 1.063613 0.381608 -0.213424 0.244765 0.339343 0.791634 0.213937 0.764005 -0.410011 -0.469001 0.157842 -0.327285 -0.505646 -0.243737 -0.525360 0.477257 0.896826 0.830376 -0.480076 0.472596 -0.191697 -0.024343 0.293723 0.067352 0.720362 0.443651 0.308386 0.359355 1.243445 -0.493356 -0.179469 0.376174 0.529710 -0.152689 0.655242 -0.401657 -0.593774 -1.189993 0.032918 -1.125832 -0.378439 0.145938 0.913977 -0.832956 0.208770 0.727159 0.233193 0.673574 -0.499452 -0.114555 -0.633577 0.097485 -0.203045 1.664443 0.091375 0.156824 -0.169515 0.437943 0.513113 0.591849 0.101542 -0.512854 -0.661236 -1.410004 -0.484529 -0.351967 -0.198862 0.098960 -1.077494 -0.427420 0.619050 0.886582 -1.248373 0.112372 0.654016 0.473684 0.655219 -0.301626 -0.465031 0.364328 -0.134039 -0.173523 0.281717 -0.501386 -0.177601 -0.132773 0.306430 0.069815 0.078015 -0.155337 -1.041914 -0.215635 0.034496 -0.225311 0.027470 -0.009916 0.101505 -0.812573 0.384692 -0.724867 0.529449 -0.996286 0.063360 -0.083118 -0.928558 -0.114155 0.806434 0.208457 0.272441 -0.203678 -0.605372 -0.357450 -0.816586 -1.604348 0.290868 -0.007631 0.337506 0.088463 -0.136905 -0.025918 -0.289849 -0.252931 0.415545 -0.399558 -0.082999 -0.162903 0.874821 -0.187280 -0.127898 -0.587947 -0.134721 0.513825 0.342903 0.400344 -0.413505 -0.799543 -0.937611 -0.717703 0.632218 -0.140127 -0.017744 -0.392543 -0.158457 -1.060657 0.437500 -0.529394 0.387045 -0.117564 -0.499924 -0.836204 0.081675 -0.199978 -0.211917 -0.005610 -0.592925 -0.074254 -0.041508 -0.138703 0.162380 -0.134295 0.190538 -0.977225 -0.903725 0.044992 -0.066385 0.730472 0.193616 0.277430 -0.384576 -0.157963 -0.786627 0.704984 -0.678991 0.062169 -0.060614 -0.197599 1.063085 -0.371732 -0.290333 -0.654818 0.411674 0.169173 -0.167846 1.492602 0.747540 -0.478700 -0.248947 -0.036185 0.019938 0.671057 0.928186 -0.692949 -0.528247 0.330663 -0.180365 -0.133769 -0.218151 0.531617 -0.509119 0.647608 -0.598450 -0.406899 0.023905 0.834989 -0.111430 0.354948 0.063308 -0.147892 -0.324765 0.760012 0.259588 0.022469 -0.515387 -1.069471 0.467017 -0.506536 -0.019891 -0.017233 -0.486323 -0.390148 0.317587 0.247227 0.883481 0.658365 -0.260072 0.618383 -1.080580 -0.848208 -0.120083 -0.005271 0.153436 -0.392097 0.314352 -0.370493 0.180980 0.167416 0.068248 0.025543 -0.460951 -0.285358 -0.085503 0.534591 0.176412 -0.343659 0.916993 -0.000618 -0.282402 -0.018940 -0.024145 0.342472 0.062099 -0.136502 -0.246298 -0.329729 0.273917 -0.316105 0.793340 -0.247492 -0.131720 0.469052 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 10.012303 3.345118 -11.961620 21.938931 -2.648886 -8.878545 0.515385 5.344313 -6.125353 -30.615829 -20.148261 15.077947 5.610169 0.384404 5.712468 9.236791 -4.480506 2.706763 -30.985199 9.860439 12.118246 3.018978 -3.898410 -5.005034 2.567361 -7.732668 4.503249 3.494853 2.211142 18.768843 -8.232369 10.464067 14.936587 -3.478699 6.000280 12.550747 -7.487722 3.696040 -2.908983 0.507041 21.770245 12.568363 -1.391211 6.939152 1.725716 17.920961 -1.530920 14.346079 -9.661614 -13.328663 8.588858 13.486245 -10.260265 -2.037409 -9.700294 8.408347 17.671499 8.408200 -6.998839 6.707580 -9.808156 -1.075292 6.464983 1.705824 22.217616 10.989440 16.255832 14.443558 20.847453 -9.667224 0.501808 8.085856 4.294947 -5.387392 15.770145 -8.902866 -19.739829 -0.875398 -2.817085 -28.589039 -9.584206 2.860256 34.629132 -19.193797 -2.192304 1.825827 8.605282 20.473653 -12.242273 2.565004 -10.746921 -1.412835 -13.528687 30.314152 3.909687 4.651263 -4.633967 8.994011 6.546652 11.050378 -4.218113 -12.146404 -8.057742 -27.312768 -10.094830 -7.106484 7.019951 11.155516 -26.054875 -5.159684 0.632351 19.078724 -28.880559 1.254942 13.373520 11.028404 17.804467 2.508205 -18.043471 4.356680 1.640843 1.431982 12.588102 -5.542843 1.691049 -4.228677 4.451116 0.112732 4.539623 2.436065 -27.557493 -9.516875 -0.859528 -8.061118 2.717696 6.684206 12.459469 -10.203541 11.713670 -10.271689 14.144242 -29.309798 -0.930187 -8.560214 -20.070243 -4.046733 5.992873 19.152552 11.485902 -10.336043 -7.717625 -5.400246 -27.681976 -24.949146 2.297843 2.563761 4.005889 3.358806 -2.081208 7.587878 -9.445413 5.566798 12.921364 -8.687231 -3.049461 -3.005851 29.448108 1.773234 -4.728934 -11.823357 -8.874003 -7.391769 1.820947 17.277940 -1.766332 -23.748544 -32.215063 -12.008103 16.138083 -4.938489 0.628355 -12.903845 -3.733860 -16.774735 1.503803 -16.178050 3.311536 1.376187 -8.485173 -18.673943 0.050875 0.468617 -10.255601 -2.959653 -14.198819 -4.110127 20.174386 0.711397 6.827759 2.060501 1.944877 -16.401711 -13.717266 7.609845 -11.013863 14.749903 16.326283 -2.172076 -13.612169 -4.387766 -21.268136 12.640643 -7.331947 4.940142 -6.212631 -2.843272 19.249219 -14.199842 -4.117757 -14.950238 3.465424 1.940499 -28.906273 24.786957 14.486955 -6.025448 1.346105 1.980374 4.665184 9.735657 12.255049 -12.987688 -11.129541 0.260167 -5.776217 -0.317103 -1.049691 11.741725 -16.279114 2.720901 -9.112958 -4.086071 10.584071 10.690619 0.970450 6.558007 1.518244 -7.561416 8.312609 11.020706 14.556581 -6.959863 -14.563403 -33.312132 10.445360 -16.107506 -8.359018 -4.409740 -3.737739 -12.970830 4.587833 -3.299433 17.412209 1.608936 -10.288043 13.827007 -23.777618 -19.090131 -12.212901 2.141887 -0.268214 -3.603621 0.760025 -6.760977 6.546636 8.314852 -0.109296 -1.201851 -15.586483 -3.422091 0.601819 18.491748 2.655841 -0.497339 19.420330 7.210006 -7.481874 -6.034362 1.802841 -4.105983 -3.233500 -17.623311 -7.635095 -2.933491 6.073333 -9.127861 7.257780 -2.399131 -0.699655 8.593249 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 0.995289 0.565100 -1.417088 2.597527 -0.273447 -1.391206 0.168481 0.495235 -0.958344 -3.578547 -2.074768 1.195300 0.686737 -0.364248 0.580000 1.120664 -0.747133 0.622784 -3.429936 1.266876 1.563606 0.517282 -0.535102 -0.909256 0.247977 -0.936465 0.138836 0.544391 0.094119 2.272387 -0.999441 1.066478 1.792387 -0.341869 0.584070 1.568366 -0.584345 0.634314 0.012711 0.644625 2.549714 1.457885 -0.396008 0.495340 0.445634 2.149106 -0.182425 1.260868 -2.073517 -1.453566 0.821776 1.900834 -1.010086 -0.384592 -1.088090 1.017206 2.589664 1.367076 -0.868554 0.905224 -1.370777 -0.114801 0.866793 0.413794 2.673371 1.520400 1.760166 1.722037 2.825274 -0.988907 0.054174 0.755727 0.543439 -1.182081 1.996809 -0.677010 -2.470792 -0.642535 -0.510273 -3.603946 -0.980674 0.688036 3.913466 -2.311112 -0.198165 0.556088 1.453652 2.415311 -1.581669 0.010302 -1.219073 -0.075571 -1.957438 4.380844 0.588542 0.703481 -0.823200 1.303533 1.029518 1.230800 -0.535393 -1.434696 -1.107654 -3.551632 -1.553104 -0.918458 0.505356 1.101034 -3.341574 -0.874827 0.853157 2.279563 -3.728234 0.402692 1.644206 1.402949 2.200268 -0.435251 -2.458760 0.961846 -0.175363 -0.105157 1.264576 -0.583885 -0.043015 -0.540216 0.566178 -0.031844 0.349368 0.098344 -3.492697 -0.794005 -0.222996 -1.280977 0.351342 0.807434 1.241996 -1.541549 1.255311 -1.555697 1.711535 -3.648424 0.197543 -0.926077 -2.784537 -0.343478 0.107313 2.071236 0.940180 -1.435051 -1.127313 -0.701129 -3.439358 -3.424500 0.330453 0.220015 0.528051 0.120793 -0.343539 0.518575 -1.089599 0.603081 1.936818 -1.091498 -0.208672 -0.390831 4.475832 0.117719 -0.674034 -1.358939 -1.283711 -0.491484 0.636690 1.905476 -0.413327 -2.103254 -3.901595 -1.466434 1.866273 -0.536643 -0.051696 -1.701148 -0.414669 -2.541218 0.603330 -1.834763 0.614393 0.051334 -0.693517 -2.213735 -0.040478 0.046742 -1.311609 -0.597398 -1.713527 -0.475576 2.123551 -0.552605 0.796895 -0.033157 0.383089 -1.902549 -1.758728 0.985918 -1.029379 1.507867 2.020641 0.130028 -1.492506 -0.349442 -2.730670 1.503709 -0.579788 0.442505 -0.565629 -0.427397 2.579852 -1.648291 -0.831323 -1.748158 0.386180 -0.072091 -2.298328 3.429402 1.732350 -0.813528 0.098244 0.279508 0.542475 1.211724 1.555333 -1.679566 -1.296387 0.128727 -0.771676 -0.139166 -0.017392 1.439867 -2.091891 0.799060 -1.101316 -0.417944 1.116240 1.636364 -0.062553 0.957040 -0.202796 -1.207129 0.559703 1.212319 1.664809 -0.724865 -1.586327 -3.252748 1.041273 -3.341464 -0.829569 -0.823315 -0.106444 -1.507561 0.561048 0.178237 2.298944 0.527976 -1.643092 1.597851 -3.041729 -2.373338 -1.290484 0.393381 0.103613 -0.825181 0.122224 -0.834762 0.715340 1.064379 0.157253 0.126253 -2.103332 -0.409321 -0.048857 2.180142 0.201661 -0.679793 2.366196 0.672569 -0.831769 -0.697769 0.159995 -0.238188 -0.190771 -1.676482 -0.914789 -0.556481 0.820153 -1.028871 1.358693 -0.529541 -0.103273 1.387339 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 2.598520 0.712934 -2.859986 5.742634 -0.370613 -2.811830 0.390967 1.356233 -1.605485 -8.104602 -4.769262 3.015601 1.406032 -0.563032 1.269781 2.402087 -1.319857 1.109023 -8.069431 2.798417 3.332851 1.135358 -0.997614 -1.865946 0.661368 -2.172454 0.818639 1.212306 0.371595 5.029439 -2.265522 2.310755 4.047849 -0.725693 1.556942 3.603790 -1.249807 1.183205 -0.303940 0.986877 5.904809 3.520273 -0.867284 1.484783 0.976065 4.867509 -0.136307 3.408607 -3.607568 -3.294548 1.928081 3.439925 -2.554750 -0.860447 -2.678406 2.344607 5.559782 2.792556 -2.063368 1.978364 -2.714837 -0.259957 1.859770 0.787404 5.863402 3.113685 4.021263 3.743322 6.220466 -2.426844 -0.021615 1.983148 1.507521 -1.927250 4.473684 -2.111240 -5.549307 -1.339666 -0.904186 -7.716403 -2.290331 1.025283 8.432288 -5.131071 -0.298202 1.150119 2.662133 5.293252 -3.373157 0.065305 -2.945734 -0.127037 -3.812128 9.360274 1.035075 1.485810 -1.468636 2.761086 2.142344 2.898365 -0.800376 -3.373157 -2.367545 -7.808458 -2.997461 -2.142183 1.335963 2.498384 -7.158384 -1.698504 1.083246 5.011921 -8.050925 0.724484 3.633205 2.982781 5.117872 -0.775137 -4.832239 1.769399 -0.082319 -0.056835 2.861993 -1.687591 -0.059949 -1.176160 1.395395 0.097316 0.901139 0.254455 -7.396817 -1.947232 -0.364194 -2.262841 0.693682 1.702780 2.765925 -3.552634 2.876485 -3.311753 3.835464 -7.869573 0.125455 -2.116134 -5.771805 -0.910939 1.281954 4.385158 2.534886 -2.841171 -2.348464 -1.566963 -7.384097 -7.590957 0.745764 0.479800 1.190737 0.511471 -0.675786 1.391697 -2.476718 1.216046 3.729729 -2.376347 -0.557501 -0.814708 8.712232 0.177469 -1.339175 -2.939374 -2.560931 -0.964948 1.224827 4.331129 -0.904037 -5.579714 -8.459531 -3.366092 4.192798 -1.308987 -0.014130 -3.593839 -0.890049 -5.356346 1.122946 -4.173392 1.393995 0.064721 -1.954360 -4.988757 -0.004629 -0.095776 -2.262147 -0.987317 -3.780660 -1.011967 4.500050 -0.393265 1.733164 0.178206 0.741014 -4.603891 -3.958487 1.996884 -2.346449 4.034524 3.892367 -0.020062 -3.207878 -0.960617 -5.874684 3.447939 -1.693441 1.023605 -1.360623 -0.980378 5.578732 -3.516862 -1.543497 -4.166804 1.027941 0.179532 -5.345104 7.419675 3.965861 -1.874690 0.079098 0.520705 1.146187 2.749748 3.582471 -3.630301 -3.091389 0.358783 -1.659937 -0.286628 -0.311691 3.182585 -4.400229 1.650715 -2.671685 -1.186943 2.466419 3.438911 -0.105066 1.962532 -0.068551 -2.328586 1.245446 3.037442 3.655279 -1.389027 -3.891424 -7.966055 2.448265 -5.873642 -1.779470 -1.584944 -0.731731 -3.429878 1.264164 0.200876 5.087745 1.528042 -3.131996 3.676784 -6.700394 -5.248538 -2.887207 0.604944 0.210665 -1.538095 0.266560 -1.933272 1.630758 2.112374 0.220967 0.081956 -4.419247 -0.814351 0.042075 4.768234 0.596374 -1.108558 5.241563 1.612852 -1.908577 -1.455893 0.467222 -0.668414 -0.462265 -3.848787 -2.019960 -1.178707 1.705421 -2.255542 2.781944 -0.977796 -0.107091 2.643933 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = 1.096906 -0.532374 -0.521781 1.516465 -0.034768 -1.354165 0.237693 1.125821 -0.204899 -2.111413 -1.440709 0.495393 0.297642 -0.394438 1.072684 0.434104 -0.427791 0.265813 -2.509780 1.203587 0.765193 0.463281 -0.623424 -0.789758 0.307468 -0.264683 -0.492524 0.582924 0.093947 1.404780 -0.916823 0.269865 0.846982 -0.344820 0.336124 1.040162 0.186785 0.155420 0.321727 0.426349 2.069327 0.812466 -0.276157 0.751454 0.648236 1.277183 -0.499014 2.083231 -0.958460 -0.980305 1.281574 -0.375643 -0.931018 -0.132983 -0.880013 0.983369 2.240731 1.205372 -0.809654 0.968172 -0.969176 -0.034613 0.594303 0.041132 1.874576 1.270516 1.035157 0.953931 2.270056 -0.679906 0.009183 0.679170 1.049443 -0.408989 0.953585 -1.050858 -0.883269 -2.344213 0.173708 -2.016975 -0.579667 0.043166 2.581999 -1.668584 0.370124 1.202530 0.686376 1.624368 -1.324001 0.291431 -0.676634 0.006626 -0.705688 2.669861 -0.169512 0.447652 -0.269668 0.809482 0.597407 1.211944 -0.229646 -0.602481 -1.522316 -3.018270 -1.321263 -0.056620 -0.146306 0.195980 -2.356244 -0.514965 1.132088 0.480317 -2.136280 -0.076670 1.231340 1.042569 0.816935 0.577796 -1.456121 0.030721 -0.079291 0.298725 0.712964 -0.626705 0.114234 -1.278162 0.501060 0.510044 0.389963 -0.138157 -1.679979 -0.501632 -0.046640 -0.407310 0.003031 0.183391 0.672229 -1.246364 0.914947 -1.200038 1.157199 -2.619439 -0.275410 -0.826456 -1.482722 -0.022151 1.600326 0.744212 0.799388 -0.211303 -1.367888 -0.572424 -1.901199 -2.353348 0.308472 0.005112 0.714498 -0.030917 -0.046924 0.014858 -0.241608 -0.388414 0.672589 -0.964487 -0.186202 -0.704467 1.749737 -0.023245 -0.377108 -1.616255 -0.125471 0.616915 -0.123105 0.801943 -0.167094 -1.384861 -1.969023 -1.123289 1.309010 0.079846 0.188673 -0.704735 -0.227638 -1.949868 0.596108 -1.103033 0.494451 -0.017492 -1.103266 -1.502220 -0.168999 0.159139 -0.558812 -0.373767 -1.153609 -0.231932 0.755892 0.497725 0.238951 0.456627 0.360553 -2.108837 -2.156293 -0.117442 -0.259608 1.614098 0.952991 0.167758 -0.427133 -0.135037 -1.490157 1.456927 -1.608920 0.209483 -0.250026 -0.429657 1.999915 -1.029755 -1.074371 -1.799093 0.427806 0.088826 -1.603532 2.566664 1.110792 -0.911998 -0.227454 -0.658574 0.372030 1.028593 1.885557 -1.094996 -0.568042 0.292402 -0.100269 -0.238826 -0.752280 1.096696 -1.163088 0.686834 -0.807135 -0.603286 0.522726 1.435053 0.075430 0.760579 0.027065 -0.120598 -0.098364 1.350139 0.812288 -0.841925 -1.006945 -2.497034 1.056182 0.044792 -0.557935 -0.049531 -1.287334 -1.128101 0.203187 0.683617 1.315917 1.597692 0.331783 1.098771 -1.767305 -1.671742 -0.620626 0.685432 -0.059471 -0.766758 0.208798 -0.666095 0.431843 0.742691 0.355814 0.017208 -1.057919 -1.601771 -0.489153 1.280199 0.135110 -0.513725 1.824399 0.488388 -0.635924 -0.364461 -0.116729 0.134696 0.001455 -0.144083 -0.566126 -0.673032 0.416535 -0.954753 1.359711 -0.028104 -0.033332 0.911965 -PE-benchmarks/boruvkas-algorithm.cpp__main = 5.492986 -0.701056 -1.019221 4.821633 0.098966 -8.532148 3.330183 5.720970 -1.869520 -7.121602 -2.446510 1.496211 0.956195 -6.244317 0.480194 1.174628 -2.868430 2.428684 -12.480816 5.985390 3.254152 2.644444 -4.014632 -6.588632 0.063339 -2.312018 -2.882861 5.905869 -2.279391 5.720390 -2.371390 -1.824228 3.868399 0.668650 2.326735 6.815067 1.949292 1.055211 4.191477 4.971149 7.719479 7.523978 -5.154051 0.309061 5.323727 6.234357 0.912989 3.091683 -10.752245 -2.008523 0.223538 1.409129 -5.154257 -3.004778 -3.615560 1.644545 10.687276 6.029087 -3.378099 5.867705 -6.251304 -1.123800 3.686920 3.599649 7.940023 4.693936 2.970067 3.056403 12.121832 -2.372257 -0.551797 2.192137 5.628600 -4.761850 4.309332 -0.853682 -7.787504 -11.831031 1.345867 -12.814242 -3.394668 2.434939 7.532844 -5.717294 2.669545 5.518483 5.898714 5.302854 -7.586505 -3.288367 -3.338269 0.585590 -5.043181 19.021591 -0.546428 4.238912 -0.885633 5.419994 5.474174 4.537982 -1.192386 -4.412336 -4.887266 -13.591242 -2.713851 -2.385061 -4.731283 -1.736964 -8.500381 -4.514333 8.781867 5.920072 -10.139771 1.078630 5.652469 1.795079 6.082802 -4.217400 -5.159211 5.118106 -3.497107 -1.427706 2.508607 -3.957310 -2.313159 -0.621529 3.730994 2.106585 -0.536150 -0.317551 -12.371780 1.560318 2.427563 -4.478573 0.166105 1.036576 -1.578993 -7.572697 1.360109 -9.153040 5.978462 -10.195990 2.890401 -1.969977 -8.027715 0.925151 0.272209 3.856407 -1.366776 -2.278037 -2.368163 -0.917193 -7.678144 -15.051005 3.071800 -0.521183 2.544280 -5.326272 -0.722597 -3.994494 -1.867332 -1.669378 4.486418 -3.600025 0.926806 -2.283389 15.391231 0.928449 -2.243901 -1.627605 -2.113411 5.212367 6.200442 2.456895 -3.725774 -6.391486 -7.932562 -4.801902 4.789661 0.758060 -3.300427 -4.170624 -1.842616 -9.258448 5.427737 -2.725496 6.175016 -1.882500 -0.769350 -5.907500 -0.603523 -0.423038 -0.551596 -3.785768 -3.233322 -1.724427 1.118558 -3.125420 0.048575 -0.236638 3.200485 -5.863567 -6.903192 1.983458 3.058211 7.525792 3.562195 3.899484 -1.260805 1.716876 -7.969826 6.622092 -2.776349 0.033403 -0.591052 -4.641553 11.614847 -2.276828 -5.524959 -5.784338 3.280272 -1.568988 4.512075 14.579667 7.281183 -4.826828 -2.884548 -0.817216 -0.206538 6.007682 8.295541 -5.821820 -4.504945 2.730422 -2.011622 -2.068105 0.253484 3.835203 -4.547589 7.457525 -4.426139 -2.345455 1.776142 7.198023 -1.283554 3.660391 -4.811688 -3.320338 -3.987238 5.388346 1.710219 -0.362593 -5.593578 -6.851649 2.829536 -10.730308 -0.475000 -3.126270 -0.963761 -5.942743 0.855809 4.424099 7.638948 8.809978 -6.972151 3.717936 -9.153712 -7.937256 -3.491922 3.087900 1.061064 -4.640650 2.357571 -2.596784 2.049774 2.110271 2.600235 2.504819 -5.729629 -3.961134 -1.477541 3.260613 1.399631 -9.211636 7.649455 -0.921963 -0.896392 -2.480355 -0.572743 1.542582 2.335229 1.015068 -2.531618 -5.536129 4.373246 -2.098645 9.604048 1.063349 1.804735 6.298663 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = 0.422767 0.249665 -0.517917 1.327252 0.129601 -0.549630 0.080365 0.054933 -0.308295 -1.772602 -0.854433 0.399442 0.096911 -0.263831 0.391093 0.496973 -0.135444 0.417053 -0.975967 0.518870 0.673200 0.298524 -0.230672 -0.286163 0.129827 -0.372115 -0.036750 0.210246 0.119802 0.903074 -0.500819 0.379273 0.889921 -0.173447 0.081419 0.696496 0.028695 0.411870 0.014268 0.249092 1.390041 0.254760 0.023169 0.523150 0.311212 0.996942 -0.280388 1.051350 -0.744966 -0.678851 0.615140 0.552951 -0.193881 -0.165480 -0.589036 0.582951 1.243750 0.653956 -0.620671 0.389544 -0.408077 0.097669 0.394380 0.136721 1.121108 1.029122 0.631363 0.946324 1.415925 -0.440135 -0.034311 0.392557 0.317905 -0.254538 0.880050 -0.420260 -0.851212 -0.220303 -0.385594 -1.007325 -0.265455 0.126294 1.939868 -1.059750 -0.115109 0.282325 0.561549 1.096026 -0.491935 0.101242 -0.667411 0.107465 -0.775561 1.801773 0.169582 0.220343 -0.609735 0.386437 0.293267 0.591412 -0.302802 -0.615728 -0.706282 -1.668222 -1.002441 -0.427463 0.295518 0.442316 -1.763131 -0.434969 0.271252 0.862377 -1.766445 0.003273 0.636551 0.709612 0.919989 0.133147 -1.311715 0.101391 0.077341 -0.085043 0.329859 -0.040815 -0.073475 -0.823195 0.135662 -0.063570 0.170068 -0.069280 -1.388654 -0.401280 -0.317920 -0.518061 0.189275 0.377012 0.590719 -0.800398 0.619432 -0.548174 0.679068 -1.755694 -0.184483 -0.462651 -1.397252 -0.203170 0.572573 0.824220 0.775138 -0.465445 -0.783058 -0.678687 -1.570444 -1.478924 -0.063026 -0.189112 0.346733 0.283903 -0.167072 0.208065 -0.486871 0.168094 0.853851 -0.433329 -0.118595 -0.419797 1.823084 -0.164596 -0.316769 -0.879311 -0.508604 -0.055374 -0.008867 0.823783 -0.166887 -0.788057 -1.765372 -0.794492 0.838920 -0.331095 0.182863 -0.791835 -0.093884 -1.375323 0.319776 -0.857188 0.179366 -0.037206 -0.373125 -1.070033 0.108168 -0.079120 -0.563491 -0.221972 -0.850502 -0.081024 0.856553 -0.143918 0.402264 0.155796 -0.107107 -1.195537 -0.949084 0.245649 -0.423690 0.712559 1.053574 0.181543 -0.685446 -0.312386 -1.297462 0.765109 -0.534474 0.154127 0.067133 0.023813 1.176171 -0.704756 -0.366203 -0.956269 0.178431 -0.026510 -1.471139 1.331701 0.701407 -0.533061 -0.073700 -0.138363 0.355783 0.482061 0.755132 -0.751808 -0.438030 0.254314 -0.253694 -0.081153 -0.305216 0.613865 -0.802842 0.515499 -0.680671 -0.237484 0.557567 0.777967 -0.241977 0.174439 0.085404 -0.474090 0.381717 0.709593 0.775079 -0.289250 -0.593260 -1.678638 0.384794 -1.258620 -0.301637 -0.155419 -0.206451 -0.586968 0.299819 0.022371 1.200411 0.098699 -0.245524 0.828511 -1.359879 -1.109562 -0.328381 0.094440 0.114668 -0.525439 0.140074 -0.327343 0.044026 0.417887 0.090836 0.042445 -1.040904 -0.402628 -0.072402 1.149696 -0.036547 -0.274802 1.000555 0.339753 -0.459664 -0.154189 0.156416 0.132857 -0.025535 -0.939093 -0.423504 -0.263290 0.190691 -0.570666 0.776847 -0.477760 -0.057209 0.592571 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = 0.596671 0.067326 0.230061 0.319688 0.506701 -0.414853 0.203484 0.417724 0.060499 -0.973611 -0.531028 0.308779 -0.094540 -0.383537 0.151321 0.139552 0.330844 0.591631 -0.458970 0.354275 0.188067 0.414213 -0.126230 -0.445296 0.148821 -0.110726 -0.453180 0.048292 0.183693 0.557801 -0.535334 -0.152752 0.417908 0.077184 0.222778 0.554457 0.581059 -0.135365 0.303970 -0.164875 1.151233 0.122617 0.252626 0.744281 0.613827 0.565864 -0.326836 0.964995 -0.017804 -0.218719 0.303328 -0.724490 -0.359264 0.127026 -0.694755 0.723842 0.724612 0.381839 -0.546024 0.451030 0.185557 0.177126 0.189915 -0.517680 0.375640 0.713749 -0.219817 0.332764 1.225126 -0.286193 -0.169949 0.304525 0.819472 0.269602 0.363308 -0.422588 0.066815 -0.809832 -0.182061 -0.644350 0.398325 -0.363834 1.437343 -0.683390 0.432497 0.875534 0.129477 0.380324 -0.137101 -0.301078 -0.546971 0.319876 -0.211885 0.830455 -0.109534 0.252729 -0.376388 0.116327 0.079246 0.425604 -0.041262 -0.283281 -0.839371 -1.388253 -0.636080 -0.198442 -0.226663 -0.302404 -0.836316 -0.135055 0.551688 0.743087 -0.978557 -0.135598 0.333692 0.163269 -0.214700 0.234075 -0.597481 -0.178652 -0.201993 0.018066 -0.422230 -0.318417 -0.357959 -0.584512 -0.308277 -0.026367 0.313468 -0.335045 -0.455576 -0.193230 -0.322620 0.055107 -0.187014 -0.163113 -0.050086 -0.853729 0.321803 -0.356598 0.239375 -0.708699 -0.371937 -0.351126 -0.769867 -0.112149 1.253047 -0.153670 0.715823 0.300295 -0.267514 -0.726086 -0.559930 -0.747521 0.395531 -0.512916 0.554436 0.159809 0.046991 -0.293734 -0.189690 -0.598754 0.063140 -0.487731 0.002062 -0.387456 0.993600 -0.665784 -0.100239 -0.981589 0.078700 1.038779 -0.090725 -0.288783 -0.451707 -0.127049 -0.423506 -0.620800 0.434016 -0.181484 0.403521 -0.084641 0.252120 -0.403813 0.206007 -0.405869 0.219174 -0.234517 -0.535083 -0.677853 0.078014 -0.246821 -0.209391 0.073981 -0.446934 0.326124 0.060741 0.428535 -0.077894 0.070124 -0.038845 -1.171397 -0.998520 -0.426419 0.195845 0.447616 0.481496 0.304079 -0.479228 -0.245822 -0.591109 0.559159 -1.018871 -0.048422 0.170384 -0.075297 0.699167 -0.359121 -0.159620 -0.935335 0.304051 0.050116 -0.953233 0.790104 0.263743 -0.694628 -0.387732 -0.802792 0.251605 0.387448 1.096320 -0.312203 -0.086464 0.511715 -0.275932 -0.178142 -0.697043 0.504881 -0.120011 0.876357 -0.751391 -0.435354 0.208546 0.753017 -0.269253 0.262512 0.271598 0.321639 0.049581 0.869052 0.299861 0.036195 -0.591246 -1.026593 0.153112 0.406857 0.329116 0.267222 -0.450285 -0.384402 0.120470 0.229018 0.745528 0.330353 0.640717 0.529614 -0.610093 -0.654281 0.515052 0.119318 0.399033 -0.618536 0.333195 -0.474617 -0.182662 -0.072937 0.341739 0.180305 -0.360086 -0.775619 -0.074678 0.625764 0.346907 -0.198567 0.684778 0.125092 -0.410880 0.423654 -0.149647 0.724782 -0.060663 -0.211497 -0.144531 -0.388928 -0.071168 -0.372557 1.100809 -0.166296 0.109153 0.263147 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = 5.168446 1.610596 -5.326472 11.545063 -1.448215 -1.778226 0.355973 2.225982 -3.627435 -19.379556 -11.315783 9.125872 2.386057 4.384469 2.266497 4.844198 -1.747579 0.978730 -17.877297 3.308727 7.760272 2.562135 1.128166 0.519798 2.040976 -4.192472 2.819328 1.129826 3.250963 11.036042 -5.079923 6.090072 10.197554 -2.527557 1.324299 7.008246 -0.940434 2.023845 -3.971112 -1.554861 12.122174 4.404436 0.462007 4.668283 -1.588737 10.709444 -0.184201 12.015440 -0.779170 -9.605260 5.559769 0.607169 -6.070379 -1.028392 -4.205561 4.662909 6.901382 6.868053 -4.051837 2.858777 -2.483537 -0.682245 2.795938 -0.711195 9.977977 6.426140 8.499509 7.303218 9.792838 -6.957959 -0.533139 5.335206 -0.531229 -0.185200 7.122184 -7.216683 -8.296504 -0.443460 -0.603971 -14.410536 -8.840592 0.450881 18.316048 -11.332698 -1.374814 0.625149 1.246952 11.037526 -4.530343 3.684334 -7.883276 -1.304356 -3.177014 13.030455 1.704736 -0.303374 -2.013625 3.061044 3.748734 6.214061 -1.287761 -6.641191 -6.708087 -11.127522 -4.291275 -4.346059 5.409428 9.438938 -14.679519 -3.328744 -2.908619 11.550491 -16.384851 0.136444 7.561081 7.852584 11.144497 7.992965 -9.401535 0.993057 3.301309 -0.344700 8.670950 -3.703308 2.159310 -2.802709 2.026924 -0.500600 1.519720 1.491185 -15.942638 -7.815376 -0.010317 -4.446833 2.008749 3.559021 7.989365 -3.651097 7.621094 -4.461959 6.715277 -14.830724 -2.515441 -1.795562 -11.270033 -3.762703 9.582102 12.004863 7.244034 -4.959887 -6.470146 -4.234759 -13.635271 -12.514042 -0.396882 1.899197 3.552313 5.277920 -1.781636 6.984517 -5.752065 3.556602 4.140791 -2.655508 -2.492037 -0.954634 9.851982 0.185199 -1.251591 -6.987706 -3.921604 -5.907990 -1.908853 11.131431 -1.002999 -14.889932 -18.035100 -7.321745 9.507437 -3.718697 1.106965 -7.155354 -1.922650 -9.509386 -0.778674 -9.477000 -0.577838 1.589388 -7.437046 -11.270593 2.680452 -1.006678 -6.429918 1.278590 -7.870838 -3.122614 10.345687 2.996534 5.707003 -0.012309 -0.709597 -9.847099 -6.963600 3.139352 -9.096805 8.936565 7.260710 -2.434977 -8.625723 -4.166852 -11.112346 7.971861 -5.115966 3.069872 -4.180756 1.178157 9.750748 -7.223718 0.588749 -7.954176 2.689553 4.236595 -20.484237 11.947714 7.700384 -2.041193 0.990693 2.258063 1.554649 6.866969 4.664808 -6.831038 -7.750747 0.391877 -2.807431 0.774670 -1.572149 6.088010 -8.816182 0.023543 -5.032848 -2.517161 5.069109 4.766168 0.346715 2.490613 4.783120 -2.376579 6.166245 6.341949 7.183856 -4.414063 -5.748412 -21.064071 7.458760 -1.483419 -4.628679 -1.147566 -5.271594 -5.044508 4.371366 -5.104400 9.448277 -0.990448 -3.491474 8.438873 -13.250351 -9.860553 -6.293891 -0.650302 -0.424852 0.635589 0.329971 -2.171701 4.395027 5.477203 -2.759708 -1.024656 -8.579411 -1.606899 0.822849 10.498916 0.646367 3.788940 10.602119 3.237370 -4.202495 -2.053072 1.845039 -0.878120 -3.396578 -11.071706 -3.381529 0.594711 2.441478 -5.091861 1.296652 -2.859904 -3.687523 3.318455 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = 3.142592 0.616877 -2.915288 6.535072 0.064082 -1.646367 -0.098583 1.056605 -1.733379 -9.996380 -6.465174 4.906420 1.269112 0.918805 1.561700 2.866010 -0.316549 0.394570 -9.254328 2.576231 3.483826 0.636232 -0.476401 -0.634510 1.040712 -2.887067 2.387785 0.877620 1.120262 5.612410 -2.875260 3.443164 4.793830 -0.770831 2.472103 3.825201 -2.003154 0.661574 -1.679808 -0.633069 7.279138 3.297504 0.302768 2.609950 0.640157 5.641815 -0.172841 5.048735 -0.576751 -4.149711 2.893595 2.926100 -3.092309 -0.277881 -3.724771 2.798810 4.240491 1.888032 -2.576058 1.555932 -2.100487 -0.125773 1.513943 -0.103058 6.532605 2.623542 5.021688 4.132141 5.843495 -3.273716 -0.434890 3.189282 1.573895 -0.133106 4.481925 -3.258381 -5.488372 0.457889 -0.954771 -7.801620 -2.766807 0.043398 10.267220 -5.542824 -1.052358 0.345371 1.165695 5.931472 -2.864896 0.803215 -4.085388 -0.179400 -3.051529 7.636753 1.184261 0.931491 -0.994577 2.186623 1.623817 3.716253 -0.898071 -4.016850 -2.518602 -7.999522 -2.854514 -2.488465 3.052808 3.425387 -7.564487 -1.002021 -1.075689 6.500065 -8.249253 0.240603 3.819698 3.241999 5.218825 1.070420 -4.896031 0.375772 1.192823 0.797879 3.762899 -1.654408 0.520373 -1.600071 1.470671 -0.338084 1.876951 0.453204 -7.396613 -3.513127 -0.400267 -1.563681 0.530650 1.543831 3.851299 -2.984150 3.871317 -2.143330 4.079477 -8.178738 -0.704387 -2.908177 -5.593303 -1.557292 3.797584 5.906504 4.591445 -2.330459 -2.123372 -1.854431 -8.055235 -7.174262 0.463122 0.493498 1.311145 1.934160 -0.592351 3.190224 -2.992607 1.446143 3.187962 -2.551693 -1.179158 -0.954123 6.523568 0.009740 -1.148861 -3.799259 -2.363977 -2.102674 -0.251668 5.272866 -0.751438 -8.176951 -9.376197 -4.093089 4.736979 -2.130614 0.773030 -3.462747 -0.770054 -4.550901 0.079280 -5.234465 0.462882 0.135315 -3.422534 -5.679490 0.278190 -0.470157 -2.632392 -0.169668 -4.358119 -0.958334 5.881754 1.191672 2.486390 0.690750 -0.144044 -5.328546 -4.091065 1.903778 -3.730972 4.706487 4.353266 -1.291867 -4.599928 -2.088100 -6.258268 3.732512 -2.641663 1.428712 -1.661299 -0.879110 5.064454 -4.121385 -0.196892 -4.215218 1.256172 1.262733 -10.370870 6.675764 4.492460 -2.036447 0.000802 0.297837 1.414363 2.843758 3.759714 -3.441771 -3.045904 0.055461 -1.533645 0.064660 -0.549036 3.746306 -4.332933 0.628491 -3.498530 -2.038602 3.156505 3.041615 0.303943 1.510726 1.385902 -1.250429 3.036735 3.889659 4.275359 -1.454195 -4.543482 -11.345947 3.037383 -2.526796 -2.327327 -0.406928 -1.587771 -3.826807 1.204371 -2.057924 5.502018 -0.330102 -2.221178 4.510996 -6.682274 -5.514054 -3.361857 -0.300636 -0.173717 -0.826041 0.507421 -2.268563 1.610791 1.812838 -0.422978 -0.696904 -4.138015 -0.665419 0.471127 5.482612 1.415206 1.213864 5.563565 2.447035 -2.595530 -1.458097 1.039167 -0.942316 -0.802353 -6.365809 -2.575233 -0.753542 1.204568 -2.467052 1.360078 -0.888213 -0.038734 1.793470 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.658189 0.068677 0.362806 0.383752 0.202807 -0.613471 0.461386 0.805843 -0.154851 -1.492443 -0.980215 -0.021906 -0.043785 -0.263526 0.299942 0.006080 -0.024264 0.691609 -1.601428 0.398256 0.693843 0.718420 0.248817 -0.536044 0.225315 -0.113527 -1.137209 0.305046 0.214440 1.002241 -0.590533 -0.244728 0.767110 0.061061 -0.151854 0.915782 0.683511 0.061407 0.629104 0.111420 1.254640 0.310587 0.005002 0.627901 0.478816 0.881493 -0.400908 1.316217 -0.363061 -0.620088 0.650900 -1.581565 -0.747583 -0.011211 -0.411564 0.698151 1.431413 1.184683 -0.445119 0.779151 -0.072080 0.047207 0.263234 -0.818164 0.478239 1.183048 -0.169713 0.253050 1.535902 -0.539306 -0.215875 0.338591 0.564665 -0.085648 -0.017444 -0.858071 0.026376 -1.886242 0.000403 -1.693431 -0.301949 -0.181544 1.731887 -1.046547 0.594568 1.192062 0.060585 0.558354 -0.317265 -0.201093 -0.611686 0.250781 -0.180043 1.437371 -0.146938 0.094529 -0.230970 0.206578 0.583318 0.665378 -0.163975 -0.189797 -1.683524 -1.878401 -0.567952 -0.136027 -0.198839 0.070268 -1.268443 -0.516183 0.959603 0.578783 -1.529046 -0.143481 0.844922 0.723244 -0.395502 0.680271 -1.086473 -0.008077 -0.209056 -0.096914 0.178533 -0.720659 -0.288861 -0.783160 -0.289439 0.036710 0.085684 -0.404382 -0.978268 -0.490766 -0.289763 -0.306264 -0.038697 -0.117260 -0.018525 -0.588978 0.494861 -0.841376 0.495256 -1.300148 -0.156442 -0.102279 -1.073486 -0.127915 1.591231 0.298750 0.311467 0.118114 -0.657135 -0.784550 -0.672572 -1.138984 0.422024 -0.264137 1.174610 -0.000853 -0.076172 -0.244151 -0.192481 -0.532577 -0.236736 -0.353262 0.128178 -0.350517 1.485872 -0.552557 -0.166705 -1.215950 0.117279 1.065935 -0.400516 -0.155648 -0.531908 -0.025391 -0.751144 -0.917120 0.772361 -0.111615 0.189200 -0.373682 0.316375 -0.974672 0.381016 -0.549860 0.145872 0.066191 -0.967850 -1.036503 0.195573 -0.232986 -0.335574 0.195464 -0.541521 -0.125232 0.323485 0.777257 0.235320 -0.017690 0.135880 -1.385423 -1.301401 -0.623781 -0.072880 0.646464 0.609561 0.385102 -0.663356 -0.151115 -0.823197 0.997067 -0.776573 -0.095899 -0.383844 0.067663 1.310031 -0.332370 -0.130320 -1.290015 0.342423 0.336030 -1.379950 1.304319 0.438022 -0.543894 -0.443787 -0.779646 -0.025283 0.889324 1.202629 -0.502098 -0.516608 0.548483 -0.558599 -0.146978 -0.813820 0.700147 -0.488160 0.937811 -0.668096 -0.377871 0.192023 0.974209 -0.227282 0.727133 0.457136 0.583667 0.143050 0.901498 0.200775 -0.590200 -0.452735 -1.615315 0.626933 0.993109 0.285891 0.105837 -0.800264 -0.589568 0.408569 0.553906 0.954781 1.236045 0.482061 0.713574 -0.738041 -0.892255 0.275920 0.410090 0.461706 -0.664660 0.066723 -0.316532 0.212764 0.508295 0.065493 0.696778 -0.821137 -1.457843 -0.276074 0.999143 0.227631 -0.235697 1.102388 -0.097617 -0.515313 0.321902 -0.220523 0.877237 -0.156911 0.241844 -0.111964 -0.425152 0.103597 -0.437643 1.272586 -0.217455 -0.367459 0.640722 -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.892761 0.514655 -0.479424 1.476378 0.305996 -1.036602 0.239704 0.726426 -0.363486 -2.660584 -1.350532 1.528828 -0.084918 -0.267518 0.092361 0.610009 0.118746 0.672852 -1.915819 0.949537 0.992006 0.798701 -0.313041 -0.376636 0.574479 -0.270907 -0.568905 0.184500 0.357092 1.461141 -1.028113 0.462376 1.287171 -0.148556 0.157488 1.150174 0.273205 0.266378 0.710803 -0.295609 1.854354 0.442244 0.173243 1.226326 0.706676 1.515788 -0.669571 2.024770 -0.417334 -1.065870 0.434922 -0.091168 -0.923427 0.045684 -0.896515 1.363465 1.163062 1.053843 -0.873689 0.654769 -0.191494 0.034269 0.577126 -0.720045 1.410428 1.854432 0.355587 1.180040 2.580155 -0.511304 -0.110088 0.754438 1.156715 0.282016 0.729162 -0.626825 -0.683402 -0.565378 -0.581060 -2.220261 -0.344295 -0.362658 3.559919 -1.760009 0.296646 0.417407 0.576365 1.580235 -0.804968 0.067023 -1.254914 0.274181 -0.666918 2.150813 0.035627 0.507108 -0.870161 0.541184 0.306208 0.907725 -0.738525 -0.602350 -1.511331 -2.355314 -0.991638 -0.500056 -0.019612 0.438488 -2.758573 -0.354887 0.350210 2.143867 -2.826391 -0.379205 0.896843 0.520456 0.634303 1.722013 -1.749909 0.009739 -0.137290 -0.308524 -0.164255 -0.302801 -0.307501 -1.038774 -0.650123 -0.260504 0.392643 0.061355 -2.580098 -0.567433 -0.427800 -0.693911 0.176100 0.459113 0.604594 -1.101536 0.878111 -0.902405 0.684427 -2.298588 -1.042880 -0.361060 -2.032675 -0.382214 1.737696 1.421687 1.386101 -0.457843 -0.481001 -1.669086 -2.253544 -1.682549 0.484119 -0.764097 0.921853 0.524240 -0.084450 -0.029040 -0.702341 -0.493231 0.730131 -0.869985 -0.100803 -0.927580 2.856475 -0.594056 0.197178 -1.855696 -0.772692 0.666625 -0.437486 0.260922 -0.604540 -1.382515 -2.356099 -1.102143 1.062636 -0.360725 0.466465 -0.947436 0.202285 -1.132037 0.149584 -1.074500 -0.175698 -0.225193 -0.866281 -1.641668 0.480959 -0.237116 -1.144766 -0.244481 -0.985711 0.094679 1.282300 0.703657 0.520833 0.037617 -0.326756 -1.755578 -1.587569 0.182212 -0.342540 0.880335 1.602020 0.081795 -1.398891 -0.632413 -1.980154 1.674322 -1.632244 0.279719 0.202430 0.300527 1.972317 -1.083699 -0.220906 -1.679888 0.584950 0.112277 -3.354659 1.606773 0.765440 -1.085281 -0.238170 -0.819307 0.550472 1.240526 1.427992 -0.981438 -0.763536 0.658265 -0.499807 -0.213423 -0.739941 1.025015 -1.019958 1.452286 -1.142055 -0.442844 0.782958 1.137457 -0.428651 0.421511 0.099906 -0.274292 0.978120 1.221897 1.171086 -0.429096 -1.186302 -2.780516 0.403307 -0.249626 0.036832 0.109248 -0.964687 -0.880046 0.531226 -0.656624 1.741933 -0.654437 -0.016347 1.132575 -2.131329 -1.539270 0.389689 0.376963 0.337554 -0.532833 0.845143 -0.588245 0.020375 0.745127 0.461497 0.024651 -1.606198 -1.076168 0.022146 1.671947 0.129386 -0.220987 1.571293 0.186071 -0.729141 0.129800 0.081001 0.758152 -0.829182 -1.680317 -0.376019 -0.527088 0.212818 -1.067900 1.959347 -0.178830 -0.015726 0.688783 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.122306 -0.006545 0.071344 0.091632 0.078293 0.043145 -0.000806 -0.142996 -0.098856 -0.110673 -0.004833 -0.103419 -0.046089 0.026582 0.053047 0.001780 0.086072 0.063910 0.135655 -0.028572 -0.003635 -0.046307 0.028231 0.055038 -0.015138 -0.088662 0.047725 0.079189 0.009040 0.056305 -0.071711 0.066863 0.044068 0.078683 0.082748 0.040569 0.143300 -0.024871 -0.089544 0.035756 0.147199 -0.149604 0.058191 -0.017981 0.042616 0.085189 0.070974 -0.133824 0.098721 -0.011957 -0.014640 -0.046150 0.092208 -0.010683 -0.154370 0.014181 -0.118547 0.036973 -0.090451 0.022486 -0.054717 0.038567 -0.013572 -0.045356 0.096947 -0.101338 0.015787 0.052538 0.018393 -0.078108 -0.045598 0.052352 0.041962 0.036500 -0.035829 0.161009 0.068927 -0.238599 -0.090606 0.041424 0.031295 0.063131 0.005638 0.003445 -0.078482 0.102426 -0.117030 0.032555 0.005714 -0.010539 -0.152035 0.007034 0.096696 -0.145779 0.137501 -0.091125 0.000000 0.009140 0.005325 0.068644 -0.012938 -0.066120 -0.041832 -0.190844 -0.142552 -0.035656 0.031804 -0.090867 -0.049816 -0.007378 0.174752 0.210359 -0.040144 0.007242 0.005210 0.036016 -0.194887 -0.248317 0.000233 -0.013855 0.046010 0.060784 0.072005 0.020275 0.037168 -0.059318 0.051481 -0.066664 0.105871 -0.036096 0.172895 -0.087392 0.003347 0.049750 -0.044447 -0.062191 -0.006876 0.038068 0.052828 0.014055 0.087171 0.032740 0.111590 -0.062524 -0.023188 -0.017833 0.219432 0.050920 0.079815 0.050563 -0.121877 0.037443 -0.034636 -0.164403 0.054040 0.012583 0.008291 0.078789 -0.035283 0.056816 -0.024666 -0.019985 0.109588 -0.067763 -0.047790 0.027383 -0.279979 -0.004038 -0.053281 -0.144217 0.059655 0.108160 -0.020584 0.007770 -0.081427 0.056749 0.007721 -0.089043 0.029308 -0.058976 0.035542 0.044614 -0.036822 -0.067160 0.101881 -0.063467 -0.023449 -0.043867 -0.078661 -0.075001 -0.012784 -0.063346 -0.088348 0.056485 -0.056485 0.056340 -0.075648 -0.169547 0.031481 -0.007396 -0.015260 0.043037 -0.046974 -0.034272 -0.017182 -0.073419 0.035522 0.037518 -0.144820 -0.080504 -0.004147 0.063637 -0.030345 0.016930 0.099704 -0.116656 -0.011129 -0.044448 -0.011103 0.133252 0.056110 0.060296 -0.189435 -0.026116 0.121583 -0.100372 -0.078093 -0.046479 0.031766 0.000988 0.138342 -0.031582 0.133933 0.021823 0.078652 0.011735 -0.019509 0.033750 0.050036 -0.021967 -0.126783 -0.114578 0.021850 0.080074 0.012757 -0.024564 0.067100 0.110330 -0.035526 0.099267 0.010089 0.087467 0.008090 0.016128 0.025835 0.061139 0.040875 0.172312 -0.034085 0.043216 -0.024447 -0.136343 0.070341 -0.069692 -0.046710 0.102635 0.044603 -0.040579 -0.003653 -0.093064 -0.008594 -0.115471 0.179093 -0.065577 -0.048615 -0.092243 0.015660 -0.054150 0.099329 -0.007475 0.005248 -0.014588 0.090522 0.066245 0.053869 -0.008328 -0.093633 -0.004414 0.037723 0.018579 0.103522 -0.142067 -0.102101 -0.022058 0.019252 -0.022767 -0.016695 -0.113570 0.018936 0.042351 -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.971197 0.145968 -0.616733 2.325331 0.654869 -1.599553 0.386107 1.232325 -0.170678 -4.297571 -2.387748 2.981758 -0.094200 -0.517317 0.226713 1.066778 0.323773 0.874115 -3.358368 1.714042 1.246420 0.998922 -0.507752 -0.821890 0.812307 -0.752737 -0.053136 0.439044 0.589719 2.313466 -1.681937 0.527089 2.041954 -0.086554 0.812935 2.080743 0.321022 0.150388 0.521851 -0.722598 3.420866 1.255035 0.358019 2.118265 1.300222 2.492578 -0.531302 3.600929 0.389283 -1.620855 1.029218 -0.406677 -1.863124 0.043709 -1.911298 2.089886 1.712707 1.065720 -1.589392 1.109368 -0.259123 0.104076 0.831266 -0.942800 2.441230 2.260363 0.853489 1.672300 3.974804 -1.143753 -0.440101 1.645688 2.335330 0.834548 1.752784 -1.619802 -1.642166 -0.721912 -0.588039 -3.244974 -0.533360 -0.738167 5.530025 -2.808720 0.478699 0.888691 0.522502 2.409942 -1.211455 -0.088158 -2.102845 0.557702 -0.851411 3.542612 -0.012099 0.811674 -0.999915 0.793929 0.525910 1.791212 -0.683991 -1.380729 -2.181514 -4.126887 -1.217997 -1.013363 0.203863 0.492892 -3.943722 -0.474393 0.243646 3.546070 -4.113678 -0.503431 1.751723 0.637391 1.439470 1.887576 -2.025438 -0.041577 0.054784 -0.023520 0.110822 -0.895491 -0.668972 -1.202165 -0.312153 -0.233268 0.853881 -0.081598 -3.677980 -1.107536 -0.428226 -0.327681 0.062101 0.380905 0.843953 -2.115531 1.465084 -1.217881 1.311405 -3.510132 -1.382137 -1.023876 -2.717477 -0.615154 3.579676 1.963279 2.760725 -0.447798 -0.487240 -2.303749 -3.330370 -3.136519 0.896587 -1.159719 1.287801 0.720835 0.053556 0.180902 -1.028172 -0.766336 0.751994 -1.526222 -0.196485 -1.198206 3.396728 -1.011417 0.056607 -2.732954 -0.963294 1.085512 -0.389826 0.609767 -0.936813 -3.594637 -3.399198 -2.067722 1.831986 -0.710840 0.771898 -1.248694 0.170238 -1.506487 0.156353 -1.900027 0.307579 -0.371353 -1.720891 -2.642876 0.424965 -0.526818 -1.015786 -0.267164 -1.652538 0.119145 1.690032 1.342683 0.677036 0.486983 -0.366672 -3.317979 -2.601763 0.129039 -0.534100 2.133294 2.140947 0.078321 -2.228956 -1.017810 -3.060202 2.358840 -3.127967 0.362877 0.026781 -0.048860 3.117336 -1.578773 -0.070066 -2.733842 1.112877 0.435782 -5.292117 2.771506 1.827371 -1.767444 -0.573727 -1.113203 0.657287 2.023082 2.747834 -1.571288 -1.280020 0.990577 -0.909586 -0.348939 -0.983338 1.824783 -1.517308 2.157938 -2.056642 -1.067005 1.109487 1.828924 -0.431537 0.552798 0.296041 -0.058279 1.265294 2.324868 1.676447 -0.332443 -2.525093 -5.526734 0.961754 0.580201 -0.095314 0.661677 -1.602444 -1.675944 0.704708 -1.025416 2.819616 -0.573945 0.185895 1.921080 -3.263103 -2.596525 0.272708 0.226051 0.442493 -0.799451 1.372180 -1.115212 0.020093 0.668417 0.528136 -0.170931 -1.857076 -1.407108 0.132117 2.556656 0.898284 -0.152578 2.541894 0.503559 -1.311821 0.151177 0.098455 0.987393 -0.924408 -2.720446 -0.814155 -0.995589 0.350172 -1.439171 2.738464 -0.072601 0.244219 0.739468 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = -0.043632 0.013273 -0.088389 0.602862 -0.081621 0.010077 0.041955 -0.146502 -0.243090 -0.958162 -0.372740 0.015821 0.074422 0.353094 0.170475 0.068865 -0.033736 0.174829 -0.751233 -0.003556 0.478796 0.190430 0.312310 0.114376 0.139688 -0.146973 -0.002330 -0.014293 0.259685 0.643026 -0.344706 0.362855 0.528351 -0.075420 0.029250 0.315744 0.192830 0.280127 -0.197067 0.037478 0.557199 -0.109719 0.214687 0.102310 -0.198088 0.517376 -0.020951 0.591676 0.269261 -0.554006 0.425812 -0.305879 -0.006317 0.035639 -0.165108 0.262470 0.334336 0.628701 -0.206139 0.148144 -0.071327 0.095920 0.081655 -0.139673 0.368581 0.364570 0.110677 0.318758 0.378374 -0.351352 0.020073 0.029937 -0.224855 -0.216814 0.238165 -0.342428 -0.222993 -0.378109 -0.155145 -0.481336 -0.347015 0.199916 0.532074 -0.582755 0.025933 0.216343 -0.040767 0.475237 -0.050263 0.202718 -0.441914 -0.069779 -0.032828 0.499672 0.215364 -0.123053 -0.050520 0.068431 0.195031 0.243538 -0.018915 -0.248680 -0.326206 -0.625631 -0.396700 -0.194738 0.364207 0.486141 -0.690191 -0.189035 -0.009961 0.303915 -0.869317 0.059921 0.260497 0.574481 0.047966 0.161605 -0.307842 0.031601 0.112852 -0.051803 0.451174 -0.276449 0.142360 -0.354899 -0.156173 -0.044712 0.141458 -0.099515 -0.245856 -0.402155 -0.206296 -0.173420 0.041434 0.137631 0.369123 0.045749 0.413774 -0.273529 0.301046 -0.461619 -0.100299 -0.022988 -0.565195 -0.242782 0.683034 0.199989 0.259081 -0.307717 -0.642530 -0.206555 -0.579427 -0.624375 0.031701 0.144192 0.329813 0.502577 -0.176725 0.352999 -0.364623 0.133888 0.184580 -0.108142 -0.187614 0.037523 -0.057591 -0.077985 -0.109393 -0.527435 -0.035071 -0.174580 -0.336561 0.491724 -0.099044 -0.260112 -0.807171 -0.366384 0.489308 -0.215871 0.142143 -0.293158 -0.000202 -0.538581 -0.007051 -0.524842 -0.179898 0.098999 -0.329417 -0.598809 0.156077 -0.135949 -0.169949 0.245928 -0.437323 -0.114918 0.315707 0.120831 0.325009 -0.045862 0.068229 -0.398565 -0.338826 0.037273 -0.531639 -0.109741 0.137374 -0.036731 -0.267881 -0.329351 -0.339903 0.204644 -0.135739 0.146098 -0.112115 0.071471 0.380674 -0.299347 0.049628 -0.264388 0.018339 0.357443 -0.770096 0.395288 0.077845 -0.074055 0.074934 0.076141 0.101556 0.272942 0.231796 -0.287494 -0.294605 0.036639 -0.194549 0.109653 -0.169193 0.238374 -0.407361 -0.064029 -0.201940 -0.085776 0.195655 0.282262 0.032196 0.175789 0.479340 -0.052934 0.343417 0.291000 0.284288 -0.176870 -0.082802 -0.811341 0.415771 0.125662 0.013685 -0.094365 -0.378085 -0.045141 0.353504 0.089924 0.387699 0.265649 0.031098 0.472750 -0.538515 -0.421923 -0.192404 -0.090410 0.060245 -0.131117 -0.251817 -0.126120 0.300106 0.307612 -0.083627 0.123832 -0.279158 -0.182403 0.032056 0.457528 -0.147088 0.359835 0.557458 0.112024 -0.282676 0.035658 0.063344 0.054933 -0.220694 -0.340905 -0.120913 0.122792 0.108019 -0.301508 0.033164 -0.437946 -0.360587 0.239068 -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.180833 0.560498 -0.276540 1.449282 0.515027 -1.328340 0.357131 0.939319 -0.286016 -2.798488 -1.472126 1.714854 -0.153268 -0.565244 0.017802 0.674649 0.211527 0.919369 -2.231344 1.151968 0.976276 0.909435 -0.363564 -0.852300 0.621166 -0.324751 -0.559370 0.334641 0.344449 1.561486 -1.235637 0.182740 1.337806 0.088171 0.506190 1.426128 0.363477 0.202539 0.838843 -0.436601 2.223735 0.828534 0.064326 1.363855 1.084268 1.679276 -0.428600 1.804082 -0.664381 -1.014965 0.101003 -0.213619 -1.198269 0.025945 -1.174035 1.530432 1.411456 1.122688 -1.144895 0.893614 -0.045871 0.125154 0.660620 -0.779152 1.550620 1.706316 0.228119 1.154696 2.954023 -0.632684 -0.182108 0.812373 1.676290 0.240571 0.946760 -0.739811 -0.876857 -0.799331 -0.472762 -2.765068 -0.119844 -0.271249 3.802374 -1.921319 0.625598 0.764951 0.583198 1.611724 -0.908405 -0.340758 -1.390703 0.445939 -0.891369 2.782526 0.050558 0.617228 -0.784440 0.799186 0.486950 1.109246 -0.691320 -0.753930 -1.516448 -3.047134 -0.822926 -0.642417 -0.161834 0.154069 -2.684678 -0.535739 0.666207 2.645370 -3.018586 -0.368695 1.114366 0.357730 0.221774 0.868775 -1.536494 0.211553 -0.507963 -0.298127 -0.313439 -0.572202 -0.612107 -0.675984 -0.611321 -0.226151 0.597958 0.029971 -2.734810 -0.510918 -0.371581 -0.632071 -0.018605 0.370240 0.378115 -1.420867 0.897037 -1.192253 0.838042 -2.364783 -0.683783 -0.494389 -2.149438 -0.355623 1.590427 1.185598 1.276765 -0.399445 -0.136674 -1.737111 -2.306953 -2.162626 0.921290 -0.765118 1.045214 0.320546 -0.034431 -0.267054 -0.806014 -0.801934 0.801038 -1.124075 -0.085081 -1.065026 3.431882 -0.745279 0.029086 -1.848212 -0.669697 1.223710 -0.264430 0.017032 -0.908494 -1.430725 -2.334668 -1.370100 1.184040 -0.401245 0.461632 -0.905438 0.267385 -1.132443 0.401172 -1.186971 0.332948 -0.385675 -0.812521 -1.808279 0.268875 -0.366079 -0.920600 -0.289543 -1.059617 0.222156 1.157209 0.462989 0.265252 0.110478 -0.036743 -1.997968 -1.741508 0.168010 -0.043078 0.949871 1.671706 0.265329 -1.612067 -0.595415 -2.034469 1.797583 -1.718779 0.258374 0.099339 0.120880 2.313073 -1.038564 -0.181661 -1.790707 0.769665 0.134407 -3.143259 1.953948 1.078958 -1.344614 -0.438697 -1.001112 0.550982 1.371873 1.949905 -1.207598 -0.870612 0.837538 -0.888539 -0.312697 -0.777455 1.206959 -0.949049 1.909741 -1.444879 -0.580586 0.754340 1.316320 -0.439252 0.732976 0.040044 -0.207442 0.786956 1.618033 1.115106 -0.174899 -1.697380 -3.051187 0.457396 -0.334984 0.321214 0.137482 -0.713583 -1.150492 0.440076 -0.396432 1.976462 -0.167096 -0.201367 1.270180 -2.312720 -1.783421 0.502451 0.386920 0.507463 -0.815256 0.940339 -0.733871 -0.074944 0.522770 0.648600 0.169019 -1.536631 -1.241909 0.008111 1.840192 0.441612 -0.581495 1.785261 0.079825 -0.856996 0.254270 -0.056030 1.046438 -0.664078 -1.629497 -0.581281 -0.819018 0.299166 -1.133016 2.395561 -0.069867 0.220988 0.784390 -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) = 1.032618 0.052199 0.040560 0.580246 0.688361 -0.874385 0.291436 0.604588 0.009707 -1.378835 -0.809157 0.749864 -0.054338 -0.790027 0.194403 0.310673 0.216951 0.674582 -0.646657 0.765170 0.229811 0.484990 -0.454302 -0.688621 0.180614 -0.219316 -0.592804 0.170799 0.079100 0.759068 -0.666970 -0.157741 0.566391 0.084765 0.267673 0.815529 0.592682 -0.169280 0.566548 -0.054667 1.581916 0.316224 0.350769 1.014577 0.956831 0.778913 -0.593110 1.738086 -0.213484 -0.258700 0.676423 -0.604443 -0.621594 0.168197 -0.967045 1.009895 1.082961 0.228959 -0.666549 0.598309 -0.017112 0.153104 0.322115 -0.493239 0.780391 1.204013 -0.133965 0.481130 1.961611 -0.281100 -0.278616 0.627839 1.297792 0.287235 0.719515 -0.548534 -0.272302 -0.665099 -0.242266 -0.847464 0.423859 -0.555761 2.296544 -0.966980 0.353916 1.040486 0.532466 0.692144 -0.382534 -0.337180 -0.654854 0.509423 -0.532563 1.533832 -0.213340 0.652137 -0.753696 0.111230 0.142821 0.676741 -0.277606 -0.411399 -1.217928 -1.980989 -0.949541 -0.264030 -0.432595 -0.467472 -1.538021 -0.191347 0.638503 1.149743 -1.448125 -0.217183 0.599595 0.168788 0.342209 0.743060 -1.080397 -0.199647 -0.123216 0.032791 -0.598631 -0.231381 -0.578390 -0.979174 -0.203314 -0.056771 0.301882 -0.505068 -1.136303 -0.143694 -0.389966 -0.053570 -0.093026 -0.193120 -0.028725 -1.380547 0.375939 -0.469610 0.306832 -1.332825 -0.678816 -0.645837 -1.316260 -0.041145 1.655475 0.103743 1.262275 0.299221 -0.279611 -1.101923 -1.052318 -1.292547 0.367299 -0.975784 0.660218 -0.017282 0.144992 -0.503518 -0.196698 -0.752819 0.305351 -0.724894 0.074106 -0.667475 1.841434 -0.858321 -0.107324 -1.313751 -0.216261 1.178189 0.084499 -0.265170 -0.470736 -0.773392 -0.818669 -0.914187 0.579982 -0.166956 0.459593 -0.347764 0.289793 -0.739950 0.207738 -0.484468 0.340434 -0.268704 -0.703112 -0.898730 0.009034 -0.198915 -0.395350 -0.227375 -0.632796 0.322591 0.366703 0.549257 0.010190 0.219903 -0.240756 -1.652548 -1.482431 -0.426079 0.365866 0.843541 0.933402 0.486751 -0.595088 -0.265888 -1.222792 0.807744 -1.685416 -0.135052 0.321900 -0.129035 1.228404 -0.608556 -0.407223 -1.341710 0.401291 -0.210126 -1.438394 1.306543 0.476169 -0.996253 -0.559735 -1.049554 0.312074 0.670762 1.604936 -0.474482 -0.107525 0.648545 -0.235930 -0.338289 -0.731633 0.796940 -0.424868 1.372479 -0.975468 -0.632151 0.283592 1.203061 -0.426701 0.198585 -0.042817 0.261476 0.184965 1.068621 0.480461 -0.101814 -0.892732 -1.793510 0.117849 0.006856 0.122162 0.371290 -0.643056 -0.704475 0.161486 0.096419 1.216956 0.071003 0.738987 0.661976 -1.013416 -1.020348 0.608022 0.284739 0.415836 -0.828998 0.579452 -0.661117 -0.279444 0.046448 0.477773 0.176189 -0.750051 -1.013048 -0.165552 0.913331 0.456635 -0.440742 0.970592 0.280506 -0.411266 0.357553 -0.174000 0.949364 -0.098552 -0.529754 -0.229530 -0.705290 -0.083106 -0.439113 1.715332 -0.093905 0.260517 0.462029 -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.231526 0.526530 -0.678874 1.680118 0.417560 -1.940058 0.482963 0.913274 -0.274616 -2.654741 -0.917041 1.255326 -0.092196 -1.201225 0.034471 0.916666 -0.372708 1.116651 -1.592293 1.530590 1.088539 1.096150 -0.660466 -1.207806 0.550169 -0.184742 -1.000947 0.354591 0.073388 1.443202 -1.095962 -0.024001 1.365377 -0.056689 -0.035348 1.424693 0.640940 0.568273 1.269926 0.312513 2.001266 0.823864 -0.274116 1.058641 1.121960 1.592566 -0.603914 2.173017 -2.033142 -0.931656 0.228330 0.027745 -1.000509 -0.154409 -0.836989 1.534316 1.986673 1.444221 -1.044863 0.937779 -0.509585 0.130714 0.913470 -0.152136 1.705504 2.358904 0.188752 1.386993 3.519026 -0.324521 -0.026605 0.671706 1.617717 -0.386983 1.500509 -0.515026 -1.219546 -0.936978 -0.547993 -2.284280 -0.188183 0.012729 3.820461 -2.088375 0.600252 0.861828 1.488427 1.875630 -1.205288 -0.203910 -1.115653 0.591232 -1.298115 3.876657 -0.105198 0.963881 -1.507136 0.907634 0.603833 0.901716 -0.789847 -0.638988 -1.748080 -2.922836 -1.195687 -0.636479 -0.666150 0.130913 -3.464942 -0.851615 1.121228 2.351058 -3.472171 -0.190226 1.196027 0.505618 1.428992 1.063912 -1.949166 0.612346 -0.603394 -0.645359 -0.661542 -0.333506 -0.825509 -1.165030 -0.335937 -0.092491 0.119190 -0.108609 -3.501669 0.036013 -0.403701 -1.164554 0.359093 0.751008 0.391639 -2.037910 0.668922 -1.562024 0.737647 -2.907835 -0.818895 -0.319683 -2.860260 -0.166553 1.348182 1.144878 1.098572 -0.725619 -0.611698 -2.069678 -2.648183 -2.707528 0.482203 -1.138211 0.912879 0.031696 -0.040691 -0.791229 -0.661616 -0.604012 1.247967 -1.082560 0.083319 -1.257143 4.484209 -0.716751 -0.027296 -1.763705 -1.195332 1.232920 0.241127 0.197740 -0.702499 -1.247200 -2.744543 -1.385134 1.162149 -0.195267 0.311586 -1.471076 0.166916 -2.035234 0.715430 -0.952810 0.689455 -0.268329 -0.339747 -1.793069 0.274648 -0.161829 -1.032198 -0.848380 -1.026546 0.101425 0.929223 -0.226074 0.250651 0.125459 -0.151630 -2.190870 -1.965207 0.417857 0.241729 1.182323 1.853978 0.738999 -1.142133 -0.350788 -2.513073 1.962833 -1.880494 0.124323 0.405136 0.394347 2.868240 -1.050294 -0.802554 -2.109025 0.738872 -0.499721 -1.924588 2.456876 1.109127 -1.388467 -0.333445 -0.870804 0.614179 1.533108 1.912580 -1.384632 -0.945948 0.961554 -0.703500 -0.506140 -0.631605 1.116426 -1.452669 2.398374 -1.190991 -0.264604 0.578647 1.652643 -0.808263 0.484572 -0.615932 -0.952208 0.400226 1.279395 1.173723 -0.356725 -1.541454 -2.641428 0.205509 -2.062355 0.104216 -0.265747 -0.641574 -1.021574 0.634735 0.030623 2.284846 0.100045 -0.407128 1.115206 -2.900704 -2.002728 0.591216 0.741251 0.441519 -1.023087 0.953021 -0.531587 -0.209432 0.905309 0.811558 0.237967 -2.169868 -1.201070 -0.179130 2.020109 -0.030580 -1.465502 1.788806 0.052209 -0.482447 0.056760 -0.022541 1.127768 -0.633133 -1.253087 -0.462603 -0.950672 0.390812 -1.202336 3.095147 -0.277281 0.060200 1.138046 -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) = 2.097556 -0.042280 -0.098648 1.572517 1.049231 -1.597509 0.320208 1.262649 -0.208057 -3.138506 -2.406352 2.372228 -0.148212 -1.115984 0.578402 0.495684 0.422597 0.446833 -3.436171 1.731448 0.653737 0.466788 -0.871572 -0.912654 0.473143 -0.916740 -0.116766 0.894051 0.010994 1.594950 -1.393373 0.258066 1.247415 0.373650 1.400723 1.698834 -0.245808 -0.539737 0.687807 -0.318487 3.354289 1.457386 0.335606 1.838643 1.879189 1.858814 -0.648463 2.709046 0.672658 -0.797296 1.047901 -0.126102 -1.625566 0.268233 -2.091790 1.465200 1.642792 -0.226184 -1.398281 0.996831 -0.408027 -0.041298 0.545252 -0.782500 2.404448 1.337743 0.854642 0.879624 3.327004 -0.681535 -0.580652 1.534089 2.608946 0.801559 1.076872 -0.988415 -1.455443 -0.939817 -0.162558 -2.878423 -0.163861 -0.981761 3.953563 -1.720406 0.294584 0.983077 0.430074 1.728523 -1.081206 -0.587009 -1.582524 0.655744 -0.932529 2.775005 -0.216788 1.033101 -0.536608 0.463187 0.488201 1.796509 -0.799072 -1.319269 -1.689109 -4.408513 -1.004597 -0.603914 -0.135234 -0.535199 -2.843772 -0.113007 0.285466 3.093114 -2.557210 -0.622414 1.356739 0.078039 0.287417 0.710234 -1.793870 -0.552476 0.071003 0.601582 0.107157 -0.517377 -0.723936 -1.423693 0.333932 -0.017242 0.952925 -0.408923 -2.111194 -0.820632 -0.046049 0.133494 -0.313214 -0.264949 0.256660 -1.863520 1.005366 -0.799348 1.146042 -2.658560 -0.580323 -1.684719 -1.690136 -0.080334 2.524567 1.675484 2.172737 0.455310 0.141725 -1.273381 -2.458160 -2.974011 0.822768 -1.359206 1.033508 -0.331949 0.231754 -0.140357 -0.540231 -1.036828 0.612091 -1.449131 -0.058626 -1.370856 2.632458 -0.749286 -0.235570 -1.820311 -0.515802 1.343001 -0.121160 0.221913 -0.819059 -3.123627 -2.095608 -1.943024 1.327242 -0.441575 0.449501 -0.863926 0.397747 -1.192552 0.345603 -1.272588 0.373485 -0.626580 -1.507432 -1.773834 -0.480723 -0.396350 -0.409577 -0.675991 -1.336206 0.167222 1.699087 1.310716 0.448175 0.692124 -0.426844 -2.552221 -2.308828 -0.269596 0.249563 2.130060 1.786132 0.208089 -1.884365 -0.541495 -2.522634 1.909484 -2.690283 -0.003363 0.079936 -1.052027 2.517394 -1.079360 -0.655184 -1.727528 0.871351 -0.071375 -3.981960 2.572089 1.683455 -1.815321 -1.048266 -1.578005 0.505186 1.508802 2.985417 -1.079946 -0.302943 0.629717 -0.445596 -0.472994 -0.823013 1.819142 -0.903726 1.937793 -1.984548 -1.516483 0.991838 1.789149 -0.249484 0.422947 -0.267683 0.731792 0.991178 2.113036 0.934114 -0.169371 -2.136118 -4.643317 0.561609 0.824931 -0.156467 0.891353 -1.089403 -2.055021 -0.214221 -0.868071 2.511747 -0.166794 0.367169 1.418887 -1.818491 -2.082846 -0.171102 0.255290 0.141602 -0.984891 1.355542 -1.199229 -0.249080 0.097874 0.611826 0.124786 -1.333228 -1.714890 -0.133737 1.402333 1.367700 -0.457443 1.910225 0.750982 -1.088370 -0.088258 -0.077719 0.875833 -0.085897 -1.914871 -1.034471 -1.493481 0.042496 -0.672993 2.264448 0.280532 1.096199 0.574594 -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.893541 -0.258685 -0.138620 1.498505 0.517180 -0.970042 0.233537 0.498768 -0.174973 -2.488975 -1.174407 1.375866 -0.247027 -0.293654 0.103069 0.542470 0.163497 0.173006 -2.192153 1.021005 0.769627 0.469475 -0.112638 -0.379506 0.613466 -0.583326 0.264334 0.680750 0.163947 1.218616 -1.014879 0.370233 1.146569 0.165139 0.514131 1.174418 0.123307 0.173751 0.373482 -0.155080 1.891421 0.582638 -0.096702 0.953379 0.876425 1.483076 -0.020928 1.814912 0.412381 -0.869362 0.475657 -0.024736 -0.977467 -0.170628 -1.181517 1.117850 1.027186 0.700441 -0.967340 0.532438 -0.314727 0.028822 0.472033 -0.330386 1.655494 1.145739 0.774149 0.897824 2.363229 -0.650430 -0.339763 1.046577 1.530477 0.502018 0.769849 -0.828708 -1.065768 -0.910248 -0.341545 -1.916296 -0.499659 -0.318775 2.423141 -1.363541 -0.010833 0.269566 0.125905 1.500184 -0.824948 0.045498 -1.353750 0.395849 -0.250579 2.233640 0.028644 0.401719 -0.374366 0.617201 0.406581 1.207739 -0.360166 -0.750444 -1.125083 -2.573820 -0.681650 -0.600416 0.211856 0.124117 -2.477336 -0.130637 0.193970 1.857897 -2.279125 -0.390858 0.997132 0.433208 0.733875 0.513616 -0.943350 -0.057244 0.066173 0.011970 0.110199 -0.405741 -0.281417 -0.865173 0.083541 -0.085437 0.504722 -0.021202 -1.957279 -0.527674 -0.146203 -0.160775 0.133872 0.251122 0.429918 -1.010404 0.775545 -0.816096 0.878898 -2.081174 -0.567783 -0.609341 -1.307291 -0.279598 1.802012 1.260832 1.289056 -0.270683 -0.321005 -1.209259 -1.976976 -2.152253 0.368438 -0.575536 0.653875 0.346970 -0.081173 0.170108 -0.562360 -0.511918 0.618869 -0.902657 -0.178037 -0.911613 1.436711 -0.324107 0.156962 -1.356813 -0.594659 0.762649 -0.359786 0.450202 -0.522265 -2.169570 -2.019683 -1.311119 0.914936 -0.399756 0.219554 -0.838631 0.080043 -1.262860 0.454705 -1.002598 0.053660 -0.259452 -1.038569 -1.460905 0.239531 -0.364356 -0.332205 -0.235278 -0.971655 -0.019436 0.680449 0.610248 0.596598 0.297162 -0.308725 -1.699694 -1.514092 0.197089 -0.126669 1.192331 0.897615 -0.028078 -1.176032 -0.684916 -1.735076 1.559196 -1.541312 0.215778 0.218844 -0.196798 1.863341 -0.779498 -0.074746 -1.211732 0.661630 0.201745 -2.577988 1.742704 1.209003 -1.143516 -0.525602 -0.643579 0.351864 1.167366 1.601909 -1.024784 -0.659103 0.464315 -0.214885 -0.253051 -0.359577 1.057924 -0.791305 1.291652 -1.299919 -0.835746 0.506339 1.119295 -0.280424 0.327665 -0.039717 -0.082166 0.507579 1.352225 0.814348 -0.021822 -1.336344 -3.090982 0.349007 0.197854 -0.054527 0.470961 -1.073494 -1.044261 0.312969 -0.527994 1.798550 -0.152815 -0.230152 1.117269 -1.801627 -1.433468 0.037314 -0.022182 0.030059 -0.450730 0.970973 -0.615166 -0.114799 0.388031 0.303484 -0.218623 -1.107914 -0.711145 0.005359 1.335082 0.379523 -0.254696 1.394369 0.215968 -0.708566 -0.216675 0.247007 0.393958 -0.261988 -1.487814 -0.587767 -0.686569 0.228861 -0.768894 1.555868 0.020821 0.328460 0.353336 -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.408581 0.001894 -1.097607 3.536440 0.330734 -1.089107 0.282933 0.658488 -0.248456 -5.622650 -2.480779 3.426850 -0.180238 0.703395 0.002533 1.447603 0.086176 0.555745 -4.045311 1.351653 1.930910 1.020359 0.251425 -0.181803 1.156698 -0.955657 1.014609 0.609928 1.018448 2.838495 -1.868864 1.165007 2.891895 -0.277858 0.324277 2.235367 0.491401 0.930435 -0.413213 -1.016237 3.367612 1.057276 -0.231337 2.004786 0.350074 3.209467 0.202345 3.856535 0.491199 -2.533764 0.599405 -0.014960 -1.899634 -0.531241 -1.661807 2.229289 1.627903 2.109458 -1.722947 0.840703 -0.186476 0.086667 0.985509 -0.626095 2.781953 2.376752 1.780147 2.380380 3.969594 -1.879987 -0.410191 1.886665 1.669726 0.984813 2.134307 -1.879626 -2.339642 -0.314987 -0.695135 -3.591035 -1.843477 -0.289937 5.459822 -3.414634 -0.129945 -0.046555 0.130061 3.308600 -1.395105 0.896607 -2.811442 0.279866 -0.412529 4.274312 0.571409 0.169808 -0.971472 1.227508 0.809147 2.059291 -0.444551 -1.596937 -1.962193 -3.860084 -1.000154 -1.512068 1.166698 1.937721 -4.890530 -0.722257 -0.502620 4.125661 -5.153208 -0.542463 2.093811 1.446105 2.695328 1.959934 -1.867669 0.398168 0.537749 -0.682751 0.977720 -1.061339 -0.109726 -0.753406 -0.092910 -0.457834 0.744854 0.628058 -4.817652 -1.628445 -0.300365 -0.727435 0.714108 1.149335 1.771175 -1.646865 1.982124 -1.476249 1.679548 -4.213428 -1.380868 -0.212161 -3.168545 -1.154088 3.671254 2.940012 2.807306 -1.426057 -1.123477 -2.708330 -4.162056 -4.059073 0.538257 -0.174842 1.125787 1.782444 -0.419799 1.307969 -1.727601 0.000695 1.317396 -1.331794 -0.630855 -0.998058 2.976583 -0.508632 0.362923 -2.725812 -1.402661 -0.048582 -0.904771 1.966308 -0.749486 -4.665128 -4.960888 -2.349513 2.306452 -1.129818 0.590420 -1.930117 -0.330761 -2.498631 0.206577 -2.457636 -0.007893 0.042814 -2.037750 -3.403880 1.104187 -0.668482 -1.342638 0.288863 -2.204571 -0.287825 1.830933 0.863899 1.366108 0.340318 -0.437650 -3.283510 -2.328052 0.959702 -1.712476 2.362144 1.997312 -0.520926 -2.582556 -1.660097 -3.453211 3.055725 -2.764101 0.931387 -0.236268 0.748204 3.427782 -1.839634 0.286204 -2.687664 1.340377 1.152913 -5.897247 3.025098 2.402876 -1.417809 -0.151359 -0.035342 0.645201 2.377000 2.126566 -2.468632 -2.327636 0.880149 -0.911906 -0.096252 -0.574537 1.781532 -2.006022 1.548075 -2.082506 -0.837719 1.087448 1.495329 -0.406810 0.645462 0.968159 -0.908920 1.619537 2.365442 2.209360 -0.432400 -2.546190 -6.378445 1.440134 -0.100641 -0.549351 0.412948 -2.139788 -1.410476 1.462346 -1.728255 3.196707 -1.038099 -0.824840 2.523563 -4.412350 -2.884460 -0.203036 -0.432010 0.169448 -0.148110 1.538030 -0.729075 0.363270 1.220838 -0.116529 -0.838387 -2.421710 -0.480438 0.391386 3.287240 0.110125 0.466710 2.941442 0.377743 -1.521793 -0.284327 0.542094 0.310914 -1.330596 -3.886462 -0.876637 -0.294817 0.655204 -1.949219 2.051930 -0.439873 -0.559434 0.657067 -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.662296 -0.109256 -0.319289 0.745739 0.238832 -0.500401 0.124670 0.192969 -0.077775 -1.260953 -0.482834 0.959486 0.084220 -0.310294 0.070835 0.445792 0.045216 0.370245 -0.526047 0.519442 0.201112 0.188591 -0.326612 -0.318870 0.086474 -0.312598 0.114950 0.135534 0.121648 0.714502 -0.490965 0.151582 0.592617 -0.112067 0.126149 0.586424 0.382399 -0.025764 -0.071496 -0.041746 1.151778 0.168174 0.206185 0.599509 0.381654 0.730917 -0.234730 1.412644 0.263531 -0.368365 0.609089 0.146876 -0.450881 0.008435 -0.743427 0.641855 0.519829 0.216227 -0.446562 0.338463 -0.247041 0.100305 0.278686 -0.053841 0.794862 0.791879 0.312071 0.577943 1.325846 -0.407706 -0.160001 0.540967 0.703230 0.194856 0.954700 -0.399934 -0.527148 -0.384117 -0.220508 -0.515953 0.017996 -0.227314 1.788874 -0.870494 -0.049403 0.545446 0.481950 0.780491 -0.408986 0.097323 -0.638128 0.239229 -0.265233 1.296352 0.055556 0.371322 -0.606524 0.139468 0.079793 0.505655 -0.026635 -0.510553 -0.689903 -1.241633 -0.846318 -0.374373 -0.120933 -0.016745 -1.365334 -0.047142 0.527832 0.984123 -1.273303 -0.032997 0.519483 0.260203 1.046559 0.640160 -0.731745 0.029644 0.131431 0.043988 -0.076543 -0.165963 -0.219087 -0.472357 0.097371 -0.049764 0.213519 -0.239911 -1.168223 -0.237240 -0.149235 -0.037206 0.086806 -0.002096 0.268490 -0.973432 0.400827 -0.276374 0.375615 -1.129638 -0.543671 -0.419839 -0.909611 -0.165811 1.365295 0.420205 1.135161 -0.050923 -0.455172 -0.702103 -1.043190 -1.155122 0.082490 -0.508791 0.187533 0.233574 0.021735 -0.023667 -0.221778 -0.169406 0.383479 -0.568642 -0.080883 -0.229546 0.967913 -0.446151 -0.072238 -0.972416 -0.330532 0.344781 0.237623 0.293662 -0.195752 -1.285830 -1.000026 -0.669230 0.574043 -0.232931 0.290612 -0.363152 -0.095800 -0.581664 0.063782 -0.499777 0.185024 -0.072334 -0.591580 -0.825400 0.190044 -0.126522 -0.500139 -0.123024 -0.670327 0.146747 0.171033 0.142658 0.176424 0.106188 -0.198546 -1.285825 -1.024889 -0.050321 -0.111606 0.742291 0.706704 0.242601 -0.537034 -0.336009 -1.042592 0.516610 -1.447491 0.075571 0.223056 -0.202699 0.861665 -0.634948 -0.243957 -0.886190 0.361570 -0.043644 -1.213801 1.225621 0.636666 -0.620163 -0.212082 -0.306670 0.249257 0.532816 1.005369 -0.550009 -0.245558 0.350329 0.001631 -0.169126 -0.160864 0.599177 -0.521483 0.638973 -0.663463 -0.420920 0.243146 0.860213 -0.198865 -0.040600 0.043570 -0.135722 0.108940 0.702825 0.522898 -0.022321 -0.639362 -1.620973 0.260419 -0.390675 -0.220268 0.385667 -0.640989 -0.393278 0.299405 -0.190852 0.926888 -0.496028 0.243431 0.584168 -1.084804 -0.856469 0.132075 -0.050987 0.133596 -0.382425 0.607686 -0.472663 -0.127824 0.063173 0.185499 -0.274445 -0.400510 -0.204292 0.036806 0.704604 0.387334 -0.158581 0.808027 0.312683 -0.367929 0.048056 -0.061291 0.287796 -0.118812 -0.712106 -0.110446 -0.268011 0.115159 -0.390920 0.903346 -0.128137 0.015330 0.224562 -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.148994 -0.376783 -0.598835 1.741741 0.615199 -1.048663 0.325640 0.430729 0.148201 -2.728809 -1.084988 1.542857 -0.027961 -0.427504 0.031626 0.842681 0.088537 0.562121 -1.132674 0.998238 0.651823 0.577010 -0.459793 -0.460432 0.492590 -0.474854 -0.040727 0.333247 0.302501 1.431627 -0.957322 0.330441 1.325763 -0.179302 0.018564 1.271926 0.813635 0.395355 0.335365 -0.106582 1.999943 0.388681 0.064540 1.271124 0.730701 1.566693 -0.431572 3.130246 -0.171082 -0.913946 1.022063 -0.352876 -0.935784 -0.156426 -1.265175 1.586364 1.529223 0.819336 -0.978008 0.647373 -0.237756 0.216998 0.627101 -0.259642 1.525822 1.990399 0.575009 1.223643 2.913109 -0.762679 -0.314668 1.128976 1.589259 0.475790 1.468473 -1.030013 -1.084803 -0.353095 -0.482076 -1.117694 -0.150495 -0.562113 3.304841 -1.839350 -0.103386 0.679224 0.677235 1.681863 -0.877431 0.277769 -1.342150 0.529206 -0.450133 2.861932 0.039554 0.766152 -1.180433 0.538046 0.248646 1.049990 -0.239966 -0.750610 -1.599576 -2.529767 -1.382821 -0.743459 -0.066921 0.239507 -3.088502 -0.314499 0.332016 1.685870 -2.835620 -0.226790 1.075333 0.634789 2.056812 1.523518 -1.401964 0.132195 0.210602 -0.354480 -0.406412 -0.328344 -0.433923 -1.261005 -0.075222 -0.149618 0.248227 -0.220030 -2.658682 -0.248365 -0.485018 -0.226333 0.383933 0.352881 0.591597 -1.837629 0.823432 -0.829725 0.674320 -2.631297 -1.376921 -0.498200 -2.263083 -0.387223 2.610928 0.820725 2.232667 -0.408306 -0.833699 -1.919126 -2.355842 -2.580832 0.177912 -0.902511 0.682164 0.613360 -0.049298 -0.069385 -0.687803 -0.473244 0.904167 -1.019508 -0.146654 -0.783813 2.411912 -0.843437 0.162127 -1.887030 -0.874068 0.851246 -0.059614 0.555246 -0.421136 -2.327306 -2.321527 -1.280293 1.048489 -0.447988 0.574756 -0.925230 -0.022002 -1.809322 0.200563 -1.019918 0.206710 -0.125627 -1.156404 -1.749560 0.557521 -0.264675 -0.628809 -0.122879 -1.255739 0.191162 0.578174 0.674932 0.540960 0.332798 -0.442255 -2.383840 -2.042162 0.108741 -0.249207 1.557261 1.234429 0.220802 -0.666815 -0.786894 -2.247105 1.509973 -2.520525 0.195923 0.513532 0.309024 1.984901 -1.184287 -0.448926 -2.069676 0.698214 0.006414 -2.275034 2.071085 1.053342 -1.245852 -0.404166 -0.695684 0.499702 1.195374 1.843720 -1.213699 -0.878416 0.799472 -0.180400 -0.350333 -0.590619 1.078597 -1.059540 1.613224 -1.329911 -0.657305 0.415966 1.547227 -0.595302 0.199189 0.037530 -0.474152 0.411219 1.414307 1.118388 -0.214675 -1.405194 -3.322242 0.334178 -0.754022 -0.350069 0.370123 -1.481033 -0.748298 0.762216 -0.353385 1.951076 -0.451329 0.354219 1.277329 -2.443334 -1.678597 0.573406 0.034254 0.337613 -0.671388 1.027041 -0.742812 -0.114242 0.493427 0.419568 -0.383992 -1.507399 -0.639746 0.018171 1.788316 -0.062537 -0.308372 1.644270 0.282238 -0.592821 0.051977 0.086819 0.676366 -0.449825 -1.679916 -0.292916 -0.578599 0.201213 -1.034593 2.141287 -0.240582 -0.028655 0.596013 -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) = 3.536127 0.467011 -2.602498 5.552599 0.069641 -1.700418 0.372962 1.790460 -1.497667 -9.756380 -5.202511 5.329385 0.903350 1.317088 0.992860 2.571830 -0.588492 0.616017 -8.483394 2.298390 3.343219 1.101302 -0.435367 -0.181265 0.992918 -2.289096 1.176545 0.992338 1.395936 5.399612 -2.909081 2.407447 4.955658 -1.085945 1.105097 3.809033 0.465320 0.541955 -1.636151 -0.677537 6.829234 2.774079 -0.284445 2.705526 0.185926 5.517736 -0.325088 7.061496 -0.957297 -4.439547 2.328080 -0.027239 -3.542166 -0.420011 -2.838267 2.785695 3.591089 3.178457 -2.478583 1.772707 -1.522073 -0.308663 1.537813 -0.076626 5.403211 3.448749 4.049223 3.791620 6.097851 -3.409711 -0.607623 3.219923 1.051546 0.458540 4.010183 -2.767592 -4.154739 -1.070556 0.185740 -6.936721 -4.148123 -0.405011 9.877911 -5.897378 -0.474869 1.061681 1.393272 5.694637 -2.954809 1.636523 -4.348125 -0.248777 -1.560768 7.856709 0.741716 0.634478 -1.508600 1.694505 1.977304 3.575437 -0.611075 -3.509318 -3.900330 -6.467002 -2.374637 -2.279222 1.613463 3.847191 -7.720611 -1.691555 -0.089837 6.862558 -8.246178 0.061847 3.773412 3.257442 6.480932 4.727836 -4.961792 0.592048 1.419654 -0.551049 3.440977 -1.804402 0.468448 -1.641716 1.625440 -0.300950 0.937020 0.580297 -9.145471 -3.064885 0.416790 -2.390030 0.975120 1.468583 3.440594 -3.410570 3.661138 -2.482481 3.217779 -7.548013 -1.508913 -1.115056 -6.034885 -1.603390 6.061979 6.302419 4.235517 -1.695623 -3.020795 -2.764416 -7.138281 -7.711060 0.042012 0.226354 1.681868 2.021180 -0.750308 2.722796 -2.771274 0.990362 2.284211 -1.958563 -1.121666 -0.939333 5.940172 -0.273524 -0.465451 -4.011061 -2.107912 -1.660096 -0.249944 5.034402 -0.970135 -8.505164 -8.820416 -4.167886 4.677408 -1.720865 0.635361 -3.481797 -1.034785 -5.105268 -0.098924 -4.329046 0.434887 0.200358 -3.730577 -5.750887 1.266098 -0.590953 -3.529815 0.130346 -4.090013 -1.147316 4.383086 1.164582 2.464399 0.002657 -0.570623 -5.561004 -4.312129 1.547538 -3.650551 5.508488 3.999959 -0.807156 -4.026762 -1.986627 -6.362904 4.750014 -4.471119 1.415957 -1.453157 -0.001801 5.614106 -3.583184 -1.180853 -4.312443 2.138130 1.595265 -9.031456 7.182024 4.573518 -1.914784 -0.124158 0.443379 0.891024 4.014542 3.640108 -3.814039 -3.667569 0.804849 -1.038627 -0.051908 -0.542960 3.443354 -4.202017 1.217540 -3.187949 -1.769939 2.283346 3.240411 -0.155097 1.084103 1.670647 -1.117722 2.694799 3.829404 3.563570 -1.779043 -3.289153 -10.645550 3.512609 -1.847397 -2.442800 -0.263650 -3.141692 -2.852716 1.964029 -2.966026 5.383974 -1.009444 -1.540918 4.273887 -7.267413 -5.333975 -2.582451 -0.317988 -0.205262 -0.284451 1.469659 -1.472875 1.572679 2.223889 -0.803447 -0.847644 -4.395266 -1.138224 0.241077 4.692568 0.783415 0.917407 5.478915 1.692504 -2.033370 -1.033153 0.687780 0.198572 -1.322055 -5.602129 -1.659784 -0.518456 1.148833 -2.533311 1.927262 -0.872269 -1.359751 1.945510 -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.167010 0.015160 0.037467 0.228927 0.222007 -0.223133 0.081738 0.041834 0.045367 -0.420143 -0.107197 0.257136 -0.032171 -0.181013 0.000000 0.082587 0.129013 0.376800 0.064399 0.183137 0.031222 0.200995 -0.091453 -0.224338 0.029881 -0.034738 -0.035674 0.003672 0.110425 0.265789 -0.256680 -0.059163 0.201485 0.026442 0.095340 0.264487 0.437868 -0.027403 -0.008488 -0.063473 0.507172 -0.018535 0.174385 0.346106 0.244709 0.267311 0.013818 0.339465 0.119455 -0.097565 0.015636 -0.157091 -0.089801 -0.023386 -0.353637 0.353033 0.144909 0.163476 -0.273687 0.187787 0.136855 0.071968 0.111230 -0.169209 0.161412 0.240215 -0.157108 0.207643 0.579626 -0.147081 -0.080757 0.132456 0.427134 0.134297 0.381467 -0.069186 -0.079618 -0.275919 -0.198176 -0.123703 0.214883 -0.075332 0.600382 -0.358621 0.186510 0.403864 0.068183 0.184691 -0.041064 -0.158160 -0.291630 0.128235 -0.063468 0.333243 0.068815 0.086502 -0.252115 0.054940 0.012807 0.166350 0.030259 -0.205295 -0.220741 -0.616237 -0.326919 -0.154826 -0.171622 -0.163275 -0.392237 -0.104141 0.226727 0.540201 -0.503201 -0.037520 0.155643 0.012819 -0.013250 -0.164001 -0.127580 0.045479 -0.054174 -0.036690 -0.198914 -0.156429 -0.204080 -0.097453 -0.126892 -0.061494 0.142638 -0.139541 -0.105558 -0.109301 -0.162458 0.141245 -0.072971 -0.096430 -0.030252 -0.459152 0.132811 -0.144967 0.113459 -0.217040 -0.172089 -0.097302 -0.358699 -0.083531 0.635386 -0.207174 0.458205 0.014763 -0.185553 -0.339583 -0.263409 -0.468559 0.274905 -0.260773 0.128954 0.177067 0.016712 -0.143057 -0.103615 -0.259056 0.178338 -0.251765 -0.023486 -0.064322 0.219026 -0.324878 -0.037799 -0.499284 -0.004124 0.448529 0.150176 -0.113878 -0.234839 -0.177119 -0.178397 -0.260497 0.203520 -0.099302 0.196595 -0.022726 -0.003382 -0.142769 0.095949 -0.208660 0.129578 -0.129056 -0.182425 -0.333185 0.017063 -0.141717 -0.116845 0.040540 -0.234091 0.200620 -0.115768 -0.005322 -0.080469 0.004828 0.006373 -0.509615 -0.400237 -0.126653 0.083716 0.147596 0.172073 0.231442 -0.294209 -0.133550 -0.265922 0.198680 -0.603989 0.002857 0.187607 -0.045383 0.334191 -0.195515 -0.073141 -0.332541 0.185733 0.043275 -0.401101 0.321968 0.193094 -0.320265 -0.127971 -0.200388 0.108520 0.195206 0.522189 -0.224310 -0.049779 0.281953 -0.096226 -0.074658 -0.302348 0.194707 -0.072429 0.410823 -0.335238 -0.180517 0.037127 0.353202 -0.118049 0.007070 0.097692 0.035713 -0.089603 0.391450 0.180108 0.171367 -0.313472 -0.351689 0.091527 0.006257 0.179271 0.232398 -0.200005 -0.046502 0.140915 -0.021511 0.337709 -0.062883 0.210003 0.260918 -0.380476 -0.323022 0.283520 -0.049223 0.209090 -0.273822 0.324854 -0.257119 -0.102117 -0.115412 0.164718 -0.074674 -0.020169 -0.117068 0.038840 0.231302 0.184293 -0.066890 0.324073 0.019866 -0.215918 0.222671 -0.084844 0.292469 -0.087809 -0.233549 -0.062879 -0.142005 0.033139 -0.187291 0.531287 -0.215002 0.030791 0.107353 -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.029271 -0.366769 -1.028670 3.180822 0.456503 -1.270638 0.332059 1.034334 -0.291324 -5.236444 -2.794823 3.044290 0.081760 0.125565 0.697125 1.038413 -0.192995 0.452146 -4.734528 1.556628 1.576976 0.723256 -0.320346 -0.488080 0.628919 -1.225143 0.694654 1.018489 0.660387 2.682093 -1.760239 0.646533 2.586305 -0.347522 0.688152 2.183485 0.592428 0.433486 -0.727377 -0.239583 4.115908 1.640219 -0.483413 1.929361 0.808936 3.008589 -0.147804 4.196372 0.302931 -2.198616 1.292913 -0.143029 -1.849935 -0.428873 -1.841043 1.768190 2.641593 1.470238 -1.842643 1.052955 -0.596949 -0.141658 0.864981 -0.109718 2.938951 1.980521 2.113764 1.936304 3.784190 -1.836690 -0.601509 1.873868 1.667225 0.610401 2.331848 -1.744275 -2.649315 -1.496116 0.078866 -3.464531 -2.064726 -0.402455 4.639770 -3.192519 -0.046114 0.919731 0.482243 2.973632 -1.562503 0.588351 -2.456340 0.170029 -0.735325 4.842837 0.336891 0.308906 -0.789896 1.071586 1.177686 2.308580 -0.203539 -1.976994 -2.189414 -4.787699 -1.426249 -1.269744 0.723856 1.449202 -4.341386 -0.936532 0.364508 3.692391 -4.383263 -0.207535 2.243197 1.523981 2.937474 1.244004 -2.389129 0.258298 0.659980 -0.365329 1.646150 -1.027507 -0.182337 -1.085753 1.143051 0.037070 0.563426 0.115084 -4.074374 -1.596153 0.165636 -0.439541 0.323618 0.417594 1.419115 -2.316294 1.975443 -1.349858 1.806816 -4.184836 -0.525706 -0.810859 -2.824869 -0.686133 3.497190 2.735841 2.494553 -0.636652 -1.579097 -1.792532 -3.692853 -4.930881 0.323946 -0.152225 1.052786 0.730731 -0.342955 1.184131 -1.269728 0.045451 1.107633 -1.250944 -0.461247 -0.846737 2.976014 -0.466976 -0.290023 -2.160370 -0.992256 0.013149 -0.184921 2.283632 -0.652456 -4.815308 -4.228753 -2.571786 2.467294 -0.857690 0.393735 -1.762922 -0.370452 -3.172400 0.485623 -2.290254 0.559968 -0.178623 -2.186286 -3.084569 0.280264 -0.503562 -0.990889 -0.089923 -2.389101 -0.470232 1.684588 0.810899 1.242346 0.414594 -0.184856 -3.750956 -2.706277 0.381599 -1.460690 3.411370 1.870576 -0.140783 -2.132713 -1.066987 -3.513103 2.759760 -3.111624 0.521840 -0.606309 -0.447719 3.473053 -1.582838 -0.953654 -2.555304 1.290557 0.878260 -4.079672 4.257213 2.782465 -1.319151 -0.436369 -0.062356 0.344645 2.341530 2.743433 -2.469099 -1.846530 0.635724 -0.668279 -0.167710 -0.550185 2.192835 -1.989803 1.348685 -2.049935 -1.258500 1.001718 1.979950 -0.165224 0.673023 0.749887 -0.327871 0.954327 2.499833 1.620015 -0.632512 -2.166958 -6.198772 1.821678 -0.473293 -1.079996 0.436604 -2.035401 -1.913350 0.831609 -0.939115 3.291096 0.035497 -0.371862 2.395851 -3.845273 -2.987624 -1.066296 -0.404947 -0.110456 -0.544183 1.418354 -0.832033 0.458295 0.905567 -0.383813 -0.435295 -2.049104 -1.058734 -0.069572 2.289659 0.709406 0.025019 2.905812 0.810115 -1.609684 -0.418711 0.174544 0.295089 -0.453906 -2.653935 -1.008333 -0.778748 0.471412 -1.314333 1.565348 -0.484700 -0.293375 0.860397 -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.662296 -0.109256 -0.319289 0.745739 0.238832 -0.500401 0.124670 0.192969 -0.077775 -1.260953 -0.482834 0.959486 0.084220 -0.310294 0.070835 0.445792 0.045216 0.370245 -0.526047 0.519442 0.201112 0.188591 -0.326612 -0.318870 0.086474 -0.312598 0.114950 0.135534 0.121648 0.714502 -0.490965 0.151582 0.592617 -0.112067 0.126149 0.586424 0.382399 -0.025764 -0.071496 -0.041746 1.151778 0.168174 0.206185 0.599509 0.381654 0.730917 -0.234730 1.412644 0.263531 -0.368365 0.609089 0.146876 -0.450881 0.008435 -0.743427 0.641855 0.519829 0.216227 -0.446562 0.338463 -0.247041 0.100305 0.278686 -0.053841 0.794862 0.791879 0.312071 0.577943 1.325846 -0.407706 -0.160001 0.540967 0.703230 0.194856 0.954700 -0.399934 -0.527148 -0.384117 -0.220508 -0.515953 0.017996 -0.227314 1.788874 -0.870494 -0.049403 0.545446 0.481950 0.780491 -0.408986 0.097323 -0.638128 0.239229 -0.265233 1.296352 0.055556 0.371322 -0.606524 0.139468 0.079793 0.505655 -0.026635 -0.510553 -0.689903 -1.241633 -0.846318 -0.374373 -0.120933 -0.016745 -1.365334 -0.047142 0.527832 0.984123 -1.273303 -0.032997 0.519483 0.260203 1.046559 0.640160 -0.731745 0.029644 0.131431 0.043988 -0.076543 -0.165963 -0.219087 -0.472357 0.097371 -0.049764 0.213519 -0.239911 -1.168223 -0.237240 -0.149235 -0.037206 0.086806 -0.002096 0.268490 -0.973432 0.400827 -0.276374 0.375615 -1.129638 -0.543671 -0.419839 -0.909611 -0.165811 1.365295 0.420205 1.135161 -0.050923 -0.455172 -0.702103 -1.043190 -1.155122 0.082490 -0.508791 0.187533 0.233574 0.021735 -0.023667 -0.221778 -0.169406 0.383479 -0.568642 -0.080883 -0.229546 0.967913 -0.446151 -0.072238 -0.972416 -0.330532 0.344781 0.237623 0.293662 -0.195752 -1.285830 -1.000026 -0.669230 0.574043 -0.232931 0.290612 -0.363152 -0.095800 -0.581664 0.063782 -0.499777 0.185024 -0.072334 -0.591580 -0.825400 0.190044 -0.126522 -0.500139 -0.123024 -0.670327 0.146747 0.171033 0.142658 0.176424 0.106188 -0.198546 -1.285825 -1.024889 -0.050321 -0.111606 0.742291 0.706704 0.242601 -0.537034 -0.336009 -1.042592 0.516610 -1.447491 0.075571 0.223056 -0.202699 0.861665 -0.634948 -0.243957 -0.886190 0.361570 -0.043644 -1.213801 1.225621 0.636666 -0.620163 -0.212082 -0.306670 0.249257 0.532816 1.005369 -0.550009 -0.245558 0.350329 0.001631 -0.169126 -0.160864 0.599177 -0.521483 0.638973 -0.663463 -0.420920 0.243146 0.860213 -0.198865 -0.040600 0.043570 -0.135722 0.108940 0.702825 0.522898 -0.022321 -0.639362 -1.620973 0.260419 -0.390675 -0.220268 0.385667 -0.640989 -0.393278 0.299405 -0.190852 0.926888 -0.496028 0.243431 0.584168 -1.084804 -0.856469 0.132075 -0.050987 0.133596 -0.382425 0.607686 -0.472663 -0.127824 0.063173 0.185499 -0.274445 -0.400510 -0.204292 0.036806 0.704604 0.387334 -0.158581 0.808027 0.312683 -0.367929 0.048056 -0.061291 0.287796 -0.118812 -0.712106 -0.110446 -0.268011 0.115159 -0.390920 0.903346 -0.128137 0.015330 0.224562 -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.797384 0.617446 -0.475113 2.780607 1.719928 -2.380050 0.328154 2.487853 -0.718285 -5.793209 -5.961594 4.197025 -0.249776 -1.589438 1.689129 0.703263 1.023007 0.140841 -7.265027 2.852423 1.354915 0.150069 -1.915199 -0.720034 0.813106 -1.928567 -1.099284 1.663130 -0.162925 2.822065 -2.268398 1.169509 2.173639 0.875090 3.102134 2.905143 -2.131773 -1.184603 1.798933 -0.883844 6.019234 3.119756 0.598869 3.271276 3.347051 3.359691 -2.091373 4.595112 0.447050 -1.544245 2.202327 -0.657920 -3.024109 1.186287 -3.674271 2.229881 2.957289 -1.443236 -2.402878 1.737731 -1.112601 -0.112226 0.707733 -2.129355 4.793895 2.095627 2.082199 1.380392 5.037429 -1.001725 -0.892945 2.801061 4.233689 1.430722 0.195797 -1.189884 -2.225609 -0.326730 0.113831 -6.103179 -0.697750 -2.075022 7.532559 -2.711031 -0.026357 0.887599 0.176756 3.114060 -2.053815 -0.975960 -2.731388 0.880642 -2.006068 3.677939 -0.194612 1.804476 -0.474860 0.761177 0.846553 3.294561 -2.676214 -2.216841 -3.503070 -8.377538 -1.282536 -0.667151 0.499559 -0.617203 -4.746797 -0.213933 -0.399701 6.033382 -3.963976 -1.338795 2.275257 -0.072773 -1.074246 2.444416 -4.201792 -1.638550 0.351806 1.567903 1.047141 -0.304021 -0.753283 -3.300117 0.669932 -0.258840 2.038411 -0.209175 -3.746133 -1.732947 0.340327 -0.217752 -0.789868 -0.246880 0.787388 -2.033724 2.081163 -0.996706 2.106044 -5.070137 -0.561640 -3.634727 -3.167954 0.035042 3.741385 4.998302 3.769286 1.228367 1.190977 -1.791169 -4.817431 -5.061064 1.387544 -2.089710 2.381554 -1.265993 0.459953 0.318742 -1.188313 -1.419534 1.030202 -2.483051 -0.122157 -2.848253 5.706322 -0.684436 -0.703299 -2.826564 -0.967648 1.584419 -1.561938 0.556573 -1.311322 -5.210231 -3.912984 -3.312914 2.346333 -0.820274 0.833075 -1.523242 1.200711 -2.140660 0.131819 -2.325811 -0.009437 -1.096629 -2.738829 -2.974704 -1.461987 -0.371547 -1.040170 -1.361525 -2.198690 -0.011329 5.468361 3.035057 1.262515 1.723717 -0.952672 -3.148757 -3.528970 -0.340873 -0.163616 3.809609 4.399141 -0.557885 -3.678063 -0.836617 -4.829408 3.890211 -3.699901 0.086461 -0.503677 -1.981585 4.147511 -1.978474 -1.467890 -2.439732 1.276930 -0.088125 -9.332374 3.409195 2.913431 -3.081437 -1.848113 -3.449834 1.064418 2.508207 5.122026 -1.419272 0.058929 0.461741 -1.074382 -0.609363 -1.360196 3.435304 -1.456109 2.691816 -3.456028 -2.594628 2.649429 2.477364 -0.032254 1.202186 -0.518895 2.279930 3.553043 3.479628 1.599845 -1.362619 -3.749194 -9.141153 1.032772 2.510846 -0.849941 1.368468 -1.398534 -4.262105 -1.319009 -2.969483 4.275428 -0.583222 0.270341 2.574761 -2.226900 -3.489365 -1.222370 0.887820 -0.183471 -1.592104 2.127396 -1.777125 -0.078451 0.541315 1.010482 0.957403 -3.223320 -4.298600 -0.370532 2.524893 2.249280 -0.140810 3.201256 1.433633 -2.004767 -0.686460 -0.015773 1.273559 0.032501 -4.593600 -2.573713 -2.883372 -0.155698 -1.155273 3.076799 1.049597 2.460573 1.346417 -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) = 2.539953 -0.369980 -0.055941 2.155744 1.179647 -2.020573 0.372892 1.651465 -0.251403 -4.016894 -3.055813 2.719103 -0.188986 -1.257904 0.824246 0.526845 0.421124 0.245621 -5.348625 2.259163 0.983633 0.497702 -0.936859 -1.140353 0.650083 -1.351463 0.273582 1.463203 -0.090847 2.066594 -1.797878 0.433341 1.620414 0.581338 2.106068 2.203052 -0.610932 -0.676101 0.681761 -0.152885 4.255059 2.298231 -0.107065 1.961720 2.333881 2.488975 -0.295660 2.734116 0.827715 -1.092055 0.950116 0.066021 -2.126397 0.117737 -2.644108 1.571035 2.209295 -0.134203 -1.820031 1.251096 -0.762641 -0.191094 0.714587 -0.672150 3.366980 1.091480 1.572933 1.062662 4.012122 -0.943564 -0.686906 1.870451 3.251165 0.826455 1.307270 -1.170305 -2.291481 -1.839744 0.005550 -4.169157 -0.666158 -0.957132 4.031488 -2.091694 0.393753 1.049070 0.304355 2.309433 -1.612664 -0.801770 -2.112130 0.648184 -1.036202 3.793711 -0.192995 1.126668 -0.163465 0.946313 0.869370 2.387065 -0.774725 -1.907478 -1.758520 -5.834064 -0.894237 -0.839818 -0.006000 -0.549264 -3.415798 -0.141059 0.288978 3.932957 -3.137063 -0.661326 1.773967 0.132824 0.319378 -0.261125 -1.833364 -0.486625 0.010117 0.860093 0.685341 -0.948030 -0.728147 -1.474290 0.917724 0.208227 1.249634 -0.298718 -2.397515 -1.064185 0.313022 0.260325 -0.456922 -0.205417 0.355227 -2.169747 1.314573 -1.292785 1.793659 -3.276414 -0.121373 -2.112454 -1.713608 -0.073000 2.713800 2.315647 2.110336 0.454559 0.175880 -1.040602 -3.139384 -4.284703 1.116665 -1.218257 1.155279 -0.587119 0.168547 0.062967 -0.742042 -1.113621 0.818948 -1.814477 -0.158487 -1.626784 2.714560 -0.458497 -0.360572 -1.771513 -0.595151 1.600445 -0.031656 0.668008 -1.069396 -4.199019 -2.789123 -2.492024 1.764910 -0.557439 0.241305 -1.192607 0.358453 -1.794001 0.757288 -1.713247 0.600358 -0.863769 -1.838606 -2.255110 -0.819159 -0.553830 -0.052628 -0.889502 -1.709120 0.000365 2.028017 1.467677 0.637969 0.839572 -0.251508 -2.924875 -2.709213 -0.072548 0.226336 2.994049 1.723476 0.039902 -2.353564 -0.592812 -3.032141 2.610752 -2.817172 0.099551 -0.161051 -1.744988 3.267169 -1.172259 -0.970281 -1.835156 1.171640 0.043215 -4.202855 3.554854 2.494540 -2.219389 -1.293379 -1.657550 0.567317 1.964790 3.696660 -1.522452 -0.558176 0.550804 -0.535704 -0.540547 -0.833420 2.306271 -1.177586 2.164524 -2.504906 -1.992263 1.257922 2.098218 -0.100572 0.712036 -0.429971 0.835972 0.933413 2.693170 1.069014 -0.037324 -2.815027 -5.713891 0.855841 1.017312 -0.192940 0.909313 -1.299275 -2.757305 -0.453256 -0.939834 3.203602 0.588291 -0.177773 1.849197 -2.349818 -2.672389 -0.848232 0.195322 -0.078646 -1.071304 1.664467 -1.462966 -0.087379 0.113418 0.683652 0.134267 -1.606724 -1.943081 -0.129407 1.480568 1.753404 -0.728278 2.457059 0.916356 -1.425138 -0.464828 0.028420 0.597518 0.118208 -2.181471 -1.529766 -1.911805 0.255097 -0.774238 2.451224 0.418430 1.545673 0.655157 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -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.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -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) = 2.967992 0.375462 -0.604211 2.368158 1.027199 -2.299516 0.420290 1.904567 -0.244640 -4.584820 -3.320990 3.906930 0.019266 -1.400356 0.587745 0.909593 0.542811 1.072572 -5.082115 2.399800 1.072028 0.864906 -1.401824 -1.451410 0.596837 -1.112266 -0.134618 0.915406 0.247961 2.560126 -2.053781 0.425574 1.990617 0.221686 1.988082 2.495584 -0.298183 -0.592135 0.773735 -0.689136 4.711413 2.386861 0.364995 2.636850 2.346276 2.823822 -0.745585 3.482969 0.510116 -1.383435 0.906814 0.305414 -2.394540 0.338218 -2.802271 2.107799 2.275411 0.117199 -2.054848 1.569932 -0.396016 -0.021881 0.976578 -1.012714 3.356279 1.893292 1.132508 1.590945 4.705013 -1.057493 -0.479075 1.743141 3.412637 0.812406 2.066316 -1.316166 -2.291686 -1.074600 -0.267794 -4.647830 -0.211541 -1.023245 6.079074 -2.953838 0.859802 1.392840 0.908134 2.644806 -1.680153 -0.927991 -2.306826 0.668563 -1.620547 4.383565 -0.096893 1.401114 -0.864167 1.003766 0.699196 2.239395 -1.036327 -2.135205 -2.053170 -6.132892 -1.330653 -1.075963 -0.338900 -0.307210 -3.954248 -0.436592 0.537953 4.914368 -4.204824 -0.649717 1.914258 -0.007317 0.585476 0.811723 -2.481975 -0.231714 -0.330948 0.586281 0.254670 -1.034221 -1.023729 -1.224996 0.135449 0.022016 1.366665 -0.194906 -3.565233 -1.157722 0.019502 -0.031620 -0.519233 -0.017793 0.547770 -2.762164 1.570460 -1.458420 1.724816 -3.756180 -0.786605 -2.036386 -2.672657 -0.339765 3.050263 2.340550 2.861744 0.146373 0.227883 -1.814228 -3.802438 -4.303744 1.580619 -1.606094 1.329997 -0.255787 0.243286 -0.215752 -1.072032 -1.246265 1.078589 -2.148622 -0.182421 -1.648015 4.578193 -1.019007 -0.432956 -2.548071 -0.843211 1.701150 0.205030 0.468657 -1.348149 -4.347326 -3.420100 -2.511488 2.184191 -0.685961 0.696129 -1.253498 0.333265 -1.461889 0.355591 -2.055451 0.731021 -0.949703 -1.714057 -2.813935 -0.550844 -0.560591 -0.867688 -0.898129 -2.045902 0.355466 2.529579 1.465507 0.361468 0.712191 -0.136866 -3.634704 -3.023594 0.001213 0.018644 2.908773 2.759024 0.328269 -2.918614 -0.696874 -3.594503 2.670534 -3.785675 0.287662 -0.087402 -1.361610 3.691860 -1.728311 -0.920694 -2.614099 1.363424 0.050257 -5.555637 3.873251 2.480118 -2.458339 -1.015093 -1.798329 0.889116 2.200956 4.020274 -1.846177 -0.913608 1.006810 -1.139232 -0.560576 -1.155423 2.493531 -1.462518 2.668494 -2.697630 -1.671033 1.627802 2.313756 -0.256756 0.771555 -0.234201 0.434742 1.387334 3.016537 1.606072 -0.103340 -3.301454 -6.348257 1.076569 0.411713 -0.040897 0.888306 -1.223760 -2.694045 -0.068814 -1.226093 3.441346 -0.403939 0.059029 2.115467 -3.286787 -3.192283 -0.344659 0.380227 0.426326 -1.243067 1.889231 -1.683083 -0.097194 0.176058 1.025786 0.084910 -1.888519 -2.074250 0.112496 2.159639 1.890324 -0.808458 2.968400 0.894168 -1.662343 0.056553 -0.331178 1.123499 -0.531884 -2.888886 -1.367952 -1.841506 0.413550 -1.321157 3.272664 0.231952 1.361200 0.921156 -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) = 1.437214 0.141793 0.247651 0.981651 0.838757 -1.042838 0.313118 1.018743 0.189864 -2.296518 -1.395616 1.793437 -0.162509 -0.669994 0.160160 0.271039 0.609493 1.022397 -2.194624 1.046850 0.477598 0.852267 -0.332052 -1.008948 0.387411 -0.332521 -0.061882 0.275882 0.421358 1.308826 -1.246844 -0.165176 1.013285 0.175579 0.942635 1.327340 0.630730 -0.353167 0.253076 -0.662100 2.571735 0.943360 0.388010 1.728013 1.298008 1.411927 -0.128245 1.640625 0.787898 -0.674915 0.105608 -0.501013 -1.140185 0.071316 -1.543729 1.396295 1.155150 0.492655 -1.249289 0.890841 0.510113 0.106760 0.478213 -0.895901 1.157847 0.970088 -0.036806 0.768032 2.562856 -0.687301 -0.338366 0.744443 1.997522 0.753187 1.195723 -0.987289 -0.758900 -1.145149 -0.316938 -2.152337 0.347898 -0.658538 2.905990 -1.606127 1.013444 1.249599 0.136227 1.056491 -0.463771 -0.758289 -1.310661 0.478528 -0.541389 2.002766 -0.132095 0.493789 -0.390994 0.446654 0.278550 1.109422 -0.066402 -1.041842 -0.995420 -3.173836 -0.685668 -0.620807 -0.305033 -0.362552 -1.668606 -0.232473 0.384312 2.398871 -2.189925 -0.423698 0.884727 0.007210 -0.374820 -0.226860 -0.785165 -0.188432 -0.387452 0.139787 -0.359976 -0.940510 -0.767765 -0.376218 -0.429480 0.013176 0.812521 -0.296025 -1.093079 -0.722217 -0.345454 0.419171 -0.455459 -0.262607 0.034891 -1.674575 0.793515 -0.806476 0.773769 -1.412556 -0.533601 -0.770650 -1.137694 -0.334713 2.084337 0.077995 1.479468 0.255151 -0.040182 -1.214832 -1.432836 -1.898594 1.204540 -0.875543 0.847884 0.310464 0.117100 -0.297523 -0.566528 -1.125805 0.241809 -1.101361 -0.102877 -0.742885 1.743782 -1.034274 -0.128614 -1.660077 0.011061 1.646443 0.099655 -0.248188 -0.983751 -1.577446 -1.260976 -1.350468 1.116119 -0.437995 0.594927 -0.327741 0.289720 -0.408966 0.299685 -1.110948 0.495605 -0.610605 -1.023226 -1.532751 -0.106355 -0.582258 -0.164802 -0.008440 -1.060941 0.515733 0.487398 0.962754 -0.148047 0.205763 0.095300 -2.365820 -1.716954 -0.434688 0.231614 1.257453 0.881294 0.408098 -1.588447 -0.496802 -1.338350 1.259029 -2.161405 0.102082 0.068903 -0.500502 1.760704 -0.728156 -0.149082 -1.652622 0.793788 0.328179 -2.515694 1.866365 1.022739 -1.368927 -0.639472 -1.118595 0.441812 1.066101 2.251393 -0.985923 -0.596896 0.910193 -0.800462 -0.301182 -1.201038 1.188607 -0.397888 1.676572 -1.593537 -0.951357 0.591761 1.254904 -0.271729 0.493961 0.417883 0.425874 0.277954 1.924908 0.779287 0.381305 -1.775487 -2.790192 0.594377 0.995972 0.649106 0.626362 -0.795862 -1.140056 0.209050 -0.061975 1.676909 0.282766 0.673459 1.175619 -1.649314 -1.567437 0.501918 0.007811 0.650291 -0.816632 0.944149 -1.040806 -0.207378 -0.229998 0.595389 0.046783 -0.532693 -1.072497 0.119558 1.134161 1.089229 -0.314931 1.558898 0.327816 -1.069714 0.645552 -0.315271 1.011306 -0.428356 -1.008677 -0.484469 -0.840265 0.095623 -0.765203 2.007159 -0.176713 0.536899 0.269771 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -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.893872 -0.796827 -0.472223 1.852382 0.885898 -1.345750 0.305425 0.832233 0.097084 -2.960308 -1.805621 1.874643 0.061683 -0.909862 0.530323 0.683051 0.214980 0.191200 -2.723873 1.504939 0.472879 0.181379 -0.963142 -0.654576 0.298720 -1.046420 0.364359 0.939274 -0.059597 1.548256 -1.122534 0.401419 1.264694 0.087258 1.058000 1.561212 0.169970 -0.260064 0.171096 0.171555 3.021794 1.280557 -0.055113 1.379680 1.407327 1.821002 -0.358433 3.171495 0.422592 -0.742170 1.397619 -0.033575 -1.318074 -0.027287 -2.039182 1.299594 1.864889 -0.081939 -1.265518 0.870300 -0.749158 0.041007 0.611450 -0.007178 2.438777 1.296357 1.285670 1.030146 3.122525 -0.832423 -0.497535 1.494931 2.232883 0.586382 1.589810 -0.994807 -1.749329 -1.017722 -0.050405 -1.786491 -0.303221 -0.818977 3.067170 -1.688336 -0.177252 0.946031 0.619152 1.831316 -1.263848 -0.131770 -1.546968 0.535798 -0.619263 3.207836 -0.098109 1.056786 -0.702835 0.594787 0.430827 1.575334 -0.243796 -1.440406 -1.490477 -3.886413 -1.389196 -0.774701 -0.144549 -0.318645 -2.979097 -0.096144 0.357183 2.242130 -2.491905 -0.237715 1.256512 0.350577 1.934595 0.563577 -1.480700 -0.214940 0.366675 0.427452 0.244407 -0.490393 -0.439486 -1.515498 0.922984 0.195198 0.610885 -0.408265 -2.174121 -0.416624 0.085338 0.235887 -0.015611 -0.052322 0.440465 -2.178546 0.934029 -0.838732 1.184322 -2.793376 -0.755188 -1.479690 -1.810487 -0.127955 2.768130 1.332695 2.354577 0.228664 -0.571956 -1.081500 -2.544039 -3.596835 0.293553 -1.036911 0.575900 -0.156270 0.080703 0.013312 -0.563671 -0.557264 0.885169 -1.346947 -0.178136 -0.943976 1.947721 -0.546663 -0.252415 -1.505789 -0.657784 1.008052 0.346791 0.894526 -0.511624 -3.533815 -2.234741 -1.710805 1.290391 -0.454470 0.357966 -0.897277 -0.035991 -1.977030 0.409879 -1.168815 0.503404 -0.469412 -1.466289 -1.771282 -0.212381 -0.304513 -0.122028 -0.528787 -1.495769 0.112207 1.003223 0.952805 0.553382 0.669158 -0.397825 -2.591663 -2.360105 -0.034225 0.010194 2.603197 1.212137 0.169081 -0.918860 -0.573753 -2.541691 1.686599 -2.847239 0.083048 0.324399 -1.025976 2.227905 -1.161429 -1.040428 -1.798633 0.860537 -0.156789 -2.253931 2.927381 1.798654 -1.654424 -0.849658 -1.013123 0.505471 1.294343 2.704448 -1.225188 -0.489129 0.541915 0.056940 -0.453648 -0.498847 1.568183 -1.021187 1.517688 -1.801597 -1.380900 0.737654 1.876966 -0.304534 0.153577 -0.318670 0.139952 0.308006 1.890508 0.911960 -0.057287 -1.862762 -4.256071 0.541577 -0.258672 -0.638984 0.689711 -1.466560 -1.582700 0.047148 -0.531528 2.379808 0.117755 0.260206 1.435523 -2.156266 -2.039622 -0.415747 -0.036079 -0.015253 -0.850614 1.298264 -1.138328 -0.087341 0.068329 0.498072 -0.314086 -1.289617 -0.966650 -0.057941 1.234090 0.797022 -0.542068 1.858025 0.762548 -0.797634 -0.372033 0.042352 0.332720 0.233646 -1.666777 -0.830469 -1.186019 0.221633 -0.680191 1.900648 0.078943 0.830451 0.557522 -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.062218 0.094594 0.062757 0.092971 0.104678 -0.040216 0.027881 -0.070983 -0.035906 -0.172259 -0.008937 0.037142 -0.035924 -0.027199 -0.001699 0.015081 0.099735 0.262918 0.200043 0.013796 0.014215 0.098586 0.013796 -0.078635 -0.002860 -0.002413 -0.029674 -0.023605 0.087952 0.125777 -0.135776 -0.013930 0.089193 0.047737 0.050600 0.101542 0.300001 -0.010235 -0.061710 -0.055282 0.217102 -0.116234 0.124929 0.134284 0.078751 0.118139 0.061253 -0.074742 0.053547 -0.046963 -0.117181 -0.095564 0.044676 -0.014399 -0.162603 0.154684 -0.068361 0.133164 -0.139571 0.082658 0.104115 0.051900 0.030713 -0.146832 0.014299 0.016972 -0.152245 0.106473 0.182880 -0.089626 -0.034604 0.013610 0.141252 0.052548 0.126025 0.108066 0.061919 -0.196639 -0.159640 -0.031477 0.137251 0.044029 0.238149 -0.148762 0.102789 0.231218 -0.047201 0.040676 0.038686 -0.100935 -0.168253 0.035718 0.013791 -0.033373 0.134557 -0.057618 -0.108642 0.023375 0.002434 0.048526 0.008921 -0.084131 -0.065968 -0.269794 -0.161477 -0.072128 -0.066270 -0.089497 -0.091119 -0.080717 0.192862 0.370735 -0.212896 -0.003521 0.040490 0.006405 -0.239666 -0.265003 -0.011873 0.056602 -0.045983 -0.032267 -0.072157 -0.074220 -0.080290 0.041887 -0.118261 -0.091897 0.112089 -0.051725 0.107613 -0.106967 -0.093764 0.076036 -0.068130 -0.070450 -0.029028 -0.126706 0.070350 -0.047045 0.055549 0.031555 0.016807 0.006849 -0.146560 -0.060425 0.292638 -0.137269 0.166964 -0.003650 -0.115961 -0.128191 -0.056048 -0.173548 0.207881 -0.063973 0.060993 0.154137 -0.014813 -0.043151 -0.065764 -0.120655 0.124052 -0.113246 -0.028198 0.036962 -0.036155 -0.159847 -0.039997 -0.287844 0.052742 0.242678 0.055757 -0.104990 -0.163208 0.125196 -0.012780 -0.106109 0.086409 -0.068920 0.114071 0.045898 -0.017554 0.002970 0.073926 -0.111634 0.044877 -0.069573 -0.059209 -0.157514 0.004625 -0.095685 -0.133630 0.085321 -0.092968 0.134453 -0.106527 -0.150542 -0.066299 -0.046674 0.041681 -0.124170 -0.113879 -0.070760 0.011659 -0.096021 0.086261 0.133382 -0.238406 -0.083850 -0.033803 0.077813 -0.194578 0.018570 0.103146 -0.016679 0.089891 -0.084435 0.003262 -0.039597 0.095607 0.079870 -0.251807 0.018758 0.085013 -0.135645 -0.048194 -0.070394 0.053793 0.061779 0.228859 -0.101970 0.036052 0.145317 -0.064686 -0.005660 -0.164332 0.056950 0.019684 0.145410 -0.157839 -0.069091 0.009330 0.130602 -0.034485 0.015837 0.122293 0.061545 -0.053088 0.179602 0.084944 0.131426 -0.105873 0.024297 0.061989 0.027976 0.165033 0.158794 -0.028948 0.065960 0.071641 -0.072498 0.106306 -0.083881 0.050271 0.138740 -0.110994 -0.113774 0.176204 -0.064162 0.128692 -0.165981 0.208070 -0.117232 -0.057285 -0.101073 0.072313 -0.041585 0.086399 -0.026315 0.035493 0.081287 0.114826 0.032349 0.136371 -0.036528 -0.149825 0.156014 -0.045000 0.161345 -0.045472 -0.150346 -0.052302 -0.024464 0.026257 -0.098952 0.198513 -0.187423 -0.030029 0.067528 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -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.662296 -0.109256 -0.319289 0.745739 0.238832 -0.500401 0.124670 0.192969 -0.077775 -1.260953 -0.482834 0.959486 0.084220 -0.310294 0.070835 0.445792 0.045216 0.370245 -0.526047 0.519442 0.201112 0.188591 -0.326612 -0.318870 0.086474 -0.312598 0.114950 0.135534 0.121648 0.714502 -0.490965 0.151582 0.592617 -0.112067 0.126149 0.586424 0.382399 -0.025764 -0.071496 -0.041746 1.151778 0.168174 0.206185 0.599509 0.381654 0.730917 -0.234730 1.412644 0.263531 -0.368365 0.609089 0.146876 -0.450881 0.008435 -0.743427 0.641855 0.519829 0.216227 -0.446562 0.338463 -0.247041 0.100305 0.278686 -0.053841 0.794862 0.791879 0.312071 0.577943 1.325846 -0.407706 -0.160001 0.540967 0.703230 0.194856 0.954700 -0.399934 -0.527148 -0.384117 -0.220508 -0.515953 0.017996 -0.227314 1.788874 -0.870494 -0.049403 0.545446 0.481950 0.780491 -0.408986 0.097323 -0.638128 0.239229 -0.265233 1.296352 0.055556 0.371322 -0.606524 0.139468 0.079793 0.505655 -0.026635 -0.510553 -0.689903 -1.241633 -0.846318 -0.374373 -0.120933 -0.016745 -1.365334 -0.047142 0.527832 0.984123 -1.273303 -0.032997 0.519483 0.260203 1.046559 0.640160 -0.731745 0.029644 0.131431 0.043988 -0.076543 -0.165963 -0.219087 -0.472357 0.097371 -0.049764 0.213519 -0.239911 -1.168223 -0.237240 -0.149235 -0.037206 0.086806 -0.002096 0.268490 -0.973432 0.400827 -0.276374 0.375615 -1.129638 -0.543671 -0.419839 -0.909611 -0.165811 1.365295 0.420205 1.135161 -0.050923 -0.455172 -0.702103 -1.043190 -1.155122 0.082490 -0.508791 0.187533 0.233574 0.021735 -0.023667 -0.221778 -0.169406 0.383479 -0.568642 -0.080883 -0.229546 0.967913 -0.446151 -0.072238 -0.972416 -0.330532 0.344781 0.237623 0.293662 -0.195752 -1.285830 -1.000026 -0.669230 0.574043 -0.232931 0.290612 -0.363152 -0.095800 -0.581664 0.063782 -0.499777 0.185024 -0.072334 -0.591580 -0.825400 0.190044 -0.126522 -0.500139 -0.123024 -0.670327 0.146747 0.171033 0.142658 0.176424 0.106188 -0.198546 -1.285825 -1.024889 -0.050321 -0.111606 0.742291 0.706704 0.242601 -0.537034 -0.336009 -1.042592 0.516610 -1.447491 0.075571 0.223056 -0.202699 0.861665 -0.634948 -0.243957 -0.886190 0.361570 -0.043644 -1.213801 1.225621 0.636666 -0.620163 -0.212082 -0.306670 0.249257 0.532816 1.005369 -0.550009 -0.245558 0.350329 0.001631 -0.169126 -0.160864 0.599177 -0.521483 0.638973 -0.663463 -0.420920 0.243146 0.860213 -0.198865 -0.040600 0.043570 -0.135722 0.108940 0.702825 0.522898 -0.022321 -0.639362 -1.620973 0.260419 -0.390675 -0.220268 0.385667 -0.640989 -0.393278 0.299405 -0.190852 0.926888 -0.496028 0.243431 0.584168 -1.084804 -0.856469 0.132075 -0.050987 0.133596 -0.382425 0.607686 -0.472663 -0.127824 0.063173 0.185499 -0.274445 -0.400510 -0.204292 0.036806 0.704604 0.387334 -0.158581 0.808027 0.312683 -0.367929 0.048056 -0.061291 0.287796 -0.118812 -0.712106 -0.110446 -0.268011 0.115159 -0.390920 0.903346 -0.128137 0.015330 0.224562 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = 2.735211 0.315206 -1.394588 5.558437 0.051066 -0.769019 0.042683 1.940266 -0.833012 -9.515773 -6.125478 5.352162 0.533089 1.707430 1.744299 1.433462 0.467683 0.286913 -9.962466 2.049455 3.462268 1.171492 0.651962 -0.083704 1.370321 -2.415000 2.196849 0.726249 1.759371 5.430834 -2.949452 3.055438 4.585044 -0.308264 2.790987 3.629866 -1.423335 0.103968 -2.026169 -1.807452 6.991901 3.349445 0.249072 3.438990 0.430500 5.401941 -0.151192 4.049770 2.123850 -4.365112 1.911730 0.545686 -3.122358 -0.208146 -3.303123 2.626091 2.491241 1.772000 -2.540758 1.471871 -1.040893 -0.380660 1.008294 -1.388515 5.243280 1.844451 3.826528 3.713092 4.686908 -3.383758 -0.603841 2.843130 1.344051 1.196866 2.966975 -2.704284 -4.301234 -1.027469 -0.793964 -7.082439 -3.720849 -0.858896 7.995983 -5.191745 0.293242 0.413870 -0.569066 4.983856 -1.893461 0.704059 -4.423999 -0.639546 -0.872926 4.539940 0.881479 0.057651 0.220340 1.507355 1.438813 3.666287 -0.129934 -3.792043 -2.289012 -6.788445 -1.144464 -2.146919 3.286207 3.545433 -5.834953 -0.467329 -1.683070 6.840061 -7.093988 -0.433593 3.149439 2.723375 2.657372 1.056247 -3.036284 -0.250674 1.550616 0.618911 3.837013 -2.791824 0.678479 -1.006331 0.487944 -0.268788 2.254070 0.750531 -4.998852 -4.378841 0.129554 -0.203038 -0.034688 1.224776 3.329866 -1.847296 3.771149 -1.863933 3.922819 -5.642611 -0.810193 -2.121742 -3.274613 -1.872657 5.791264 5.029195 4.136122 -1.316108 -1.934493 -1.539984 -6.094191 -5.913817 1.414615 0.812116 1.927309 2.553790 -0.566258 3.528055 -2.989842 1.067195 1.081972 -2.061604 -1.122661 -0.430074 1.990275 -0.133245 -0.572190 -3.691275 -1.036695 -1.469345 -1.373796 4.382779 -1.023025 -7.220108 -7.738602 -3.833710 4.555074 -2.100903 0.745767 -2.537028 -0.345316 -2.648742 -0.469600 -5.028371 0.176980 -0.102460 -3.893714 -5.437702 0.504490 -1.037850 -1.439897 0.930825 -3.623762 -0.925319 4.559708 2.428713 2.154776 0.763076 -0.031152 -4.535496 -3.275855 1.043749 -3.873608 4.252409 2.615203 -1.768806 -4.923571 -2.347489 -4.668649 4.186081 -2.915277 1.625829 -2.019468 -1.158318 4.418892 -3.027308 -0.177151 -3.991120 1.606528 2.640565 -10.058904 4.452954 3.469148 -1.714154 -0.139459 0.027426 0.975921 3.311819 3.556740 -2.810777 -3.144505 0.254986 -1.575423 0.443100 -1.471240 3.324706 -3.266799 0.333372 -3.370834 -2.119683 3.132068 1.951547 0.653144 1.673323 2.776868 0.254585 3.283744 3.965352 4.084818 -1.015525 -4.445986 -9.932494 3.634015 2.309359 -0.962811 -0.045685 -2.866565 -3.564236 1.206899 -2.317322 4.519281 0.040630 -1.020690 4.358666 -5.548803 -4.734898 -2.955603 -0.667056 -0.110526 -0.094995 0.677662 -1.571374 2.022161 1.786503 -0.753235 -0.311369 -2.895563 -1.179320 0.719196 4.219695 1.763391 2.438802 5.075202 2.283671 -3.367927 -0.625769 0.916237 -1.102115 -1.874523 -6.136714 -2.241565 -0.352748 0.906096 -2.364946 0.571938 -0.656578 -0.501710 0.665841 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.575654 -0.001578 0.251332 0.246478 0.148457 -0.400486 0.247259 0.651660 -0.159472 -1.105481 -0.954459 -0.364353 -0.090708 -0.364502 0.561027 0.120546 0.160002 0.306928 -1.336775 0.373043 0.516632 0.330566 0.023833 -0.191522 0.214129 -0.252029 -1.201653 0.187293 -0.006047 0.651971 -0.470634 0.036033 0.480992 0.082871 0.085268 0.537145 -0.032760 -0.097635 0.827080 0.262590 1.059471 0.232353 0.004921 0.363683 0.555754 0.617844 -0.758271 1.062537 -0.338152 -0.350348 0.881174 -1.299086 -0.454773 0.361837 -0.457037 0.436588 1.164658 0.566447 -0.344436 0.564690 -0.452908 0.188772 0.137266 -0.721751 0.700652 0.936446 0.130504 0.203621 1.040415 -0.163769 -0.023334 0.198472 0.454159 -0.111541 -0.378246 -0.490928 0.317585 -1.682727 0.005299 -1.236968 0.034770 -0.296984 1.429902 -0.625828 0.281393 0.843918 0.053060 0.500621 -0.334533 -0.088430 -0.435790 0.276674 -0.156149 0.776218 -0.231704 0.170297 -0.222055 0.171669 0.260992 0.407252 -0.312435 -0.066509 -1.549214 -1.624292 -0.690074 0.050534 -0.014165 -0.154731 -1.121107 -0.060409 0.983427 0.214322 -0.996656 -0.071450 0.435155 0.467341 -0.579008 0.858248 -1.153825 -0.383423 -0.192933 0.363755 0.050396 -0.290780 -0.051621 -1.353778 -0.133976 0.148099 0.272179 -0.379926 -0.536808 -0.238348 -0.178087 -0.294857 -0.165149 0.064911 0.068890 -0.297210 0.421137 -0.519909 0.406626 -1.164728 -0.133359 -0.537711 -0.701541 0.037847 1.385091 0.725979 0.212201 0.464645 -0.442630 -0.492500 -0.732228 -0.649039 0.055042 -0.385666 0.990994 -0.220238 0.010618 -0.220817 -0.024299 -0.321084 -0.305388 -0.409424 0.133965 -0.555434 1.193565 -0.327737 -0.266059 -0.971689 0.056859 0.982253 -0.724392 -0.227521 -0.276620 0.272085 -0.583527 -0.672392 0.491339 -0.085895 0.316680 -0.281418 0.528318 -0.812922 0.356634 -0.358148 -0.075372 0.006930 -0.751866 -0.670418 0.001344 -0.078058 -0.255539 -0.107935 -0.340984 -0.036714 0.557196 0.807750 0.293795 0.197084 -0.066738 -0.950874 -1.119592 -0.593464 -0.052297 0.544071 0.728592 0.070758 -0.444602 -0.093348 -0.733803 0.868301 -0.523580 -0.125350 -0.219282 -0.231586 0.799744 -0.269982 -0.317264 -0.946319 0.142343 -0.043534 -1.407789 0.832865 0.287750 -0.621949 -0.413293 -1.145516 0.293668 0.481337 0.992071 -0.063859 0.128419 0.185402 -0.267855 -0.121662 -0.600587 0.651505 -0.331296 0.592138 -0.574400 -0.334518 0.474769 0.720222 -0.169517 0.520801 0.222270 0.715581 0.391405 0.588072 0.116175 -0.656906 -0.292070 -1.382487 0.196147 1.088962 0.132011 0.157588 -0.592921 -0.607397 -0.125941 0.364786 0.762982 1.019121 0.593992 0.482793 -0.246627 -0.626608 0.070046 0.487107 0.108851 -0.659448 0.042207 -0.212190 -0.013899 0.434314 0.302666 0.702519 -0.826428 -1.580458 -0.298461 0.754317 0.266984 -0.287050 0.696136 0.125935 -0.400267 0.069849 -0.078293 0.557765 0.137062 0.206920 -0.252914 -0.466583 -0.082285 -0.367645 0.921314 0.013508 0.063895 0.435773 -PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/find-parity.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = 0.530595 -0.211348 -0.237530 1.218000 -0.116348 -0.013811 0.128057 0.200751 0.013642 -2.528766 -1.255445 1.595585 0.096804 0.689148 0.261295 0.458110 -0.008348 -0.032958 -2.002806 0.263493 0.840347 0.218058 0.248580 0.224112 0.265414 -0.681528 0.874199 0.420096 0.538084 1.487491 -0.765535 0.741596 1.332576 -0.123482 0.430703 0.972536 0.035253 -0.111453 -0.949349 -0.354259 1.746383 0.409541 0.069377 0.771621 -0.163393 1.464800 0.467919 1.379284 1.428478 -1.227388 0.595497 0.144461 -0.897152 -0.291238 -0.755455 0.623262 0.389223 0.750715 -0.652776 0.354331 -0.009325 -0.143949 0.218938 -0.148641 1.289209 0.624153 1.012575 1.017455 1.071990 -1.094098 -0.256455 0.672573 0.123523 0.297264 0.934372 -0.813019 -0.706238 -0.506986 0.131976 -1.587854 -1.269743 -0.107960 1.718893 -1.460333 -0.092014 0.098488 -0.188810 1.325696 -0.404328 0.341989 -1.310851 -0.168408 0.422523 1.285288 0.117111 -0.301416 0.059765 0.326190 0.466584 0.975476 0.481297 -0.923556 -0.847641 -1.331581 -0.474759 -0.615413 0.718594 1.042221 -1.452757 -0.156221 0.013037 1.132231 -1.845344 -0.128338 1.133546 0.932072 0.977786 0.585218 -0.599119 0.084830 0.629397 0.083997 1.005712 -0.483893 0.325239 -0.142741 0.407221 -0.067697 0.533375 0.132904 -1.625939 -1.246531 0.055302 0.096247 0.018598 0.205503 0.858966 -0.298290 1.012740 -0.418119 1.027432 -1.453728 -0.119961 -0.439208 -0.125566 -0.566043 1.811800 1.366796 1.146950 -0.367311 -0.913154 -0.364010 -1.429173 -1.669057 0.186302 0.333240 0.322863 0.892386 -0.329286 1.093834 -0.611930 0.365277 0.302022 -0.542518 -0.432895 -0.059108 -0.287450 -0.028282 -0.192106 -1.003570 -0.137811 -0.513981 -0.422804 1.235711 -0.266746 -2.117741 -1.979611 -1.169416 1.178116 -0.557096 0.160003 -0.605120 -0.363075 -0.797142 -0.174691 -1.226051 -0.011471 0.130269 -1.346245 -1.510516 0.481029 -0.278657 -0.730532 0.421489 -1.149997 -0.409032 0.379310 0.499457 0.701562 -0.008681 -0.105312 -1.293710 -0.929740 0.217218 -1.134420 1.040910 0.574796 -0.298671 -1.334189 -0.692296 -1.168005 0.915880 -1.297705 0.576263 -0.326310 -0.279919 1.115041 -0.846179 -0.020048 -0.740937 0.569274 0.919723 -2.486167 1.518970 1.053126 -0.253713 -0.023854 0.386022 0.109292 1.010381 0.803534 -0.973517 -0.985504 0.057687 -0.206989 0.172114 0.069116 0.908121 -0.881589 -0.079932 -0.894957 -0.662485 0.529428 0.761392 0.245763 0.437867 0.933364 0.037072 0.492176 0.952769 0.882110 -0.100856 -0.527619 -2.463541 1.136823 0.430286 -0.342081 0.443137 -1.194326 -0.602448 0.476759 -0.726473 1.156357 -0.691219 -0.198108 1.175888 -1.537967 -1.242929 -0.734136 -0.598388 -0.066436 0.141064 0.339321 -0.104188 0.443368 0.429864 -0.470601 -0.389454 -0.401277 0.005592 0.211510 0.975400 0.298731 0.821596 1.281881 0.375696 -0.850422 -0.186044 0.085475 -0.245185 -0.336818 -1.428496 -0.368279 0.115293 0.344232 -0.612499 -0.020286 -0.456496 -0.479616 -0.071925 -PE-benchmarks/find-parity.cpp__main = 0.553133 0.180484 0.112570 0.370534 -0.210923 -0.504934 0.261264 0.885528 -0.279185 -1.419230 -1.126958 -0.117070 0.039536 -0.290502 0.809538 0.346127 -0.113356 0.297595 -2.055410 0.498101 1.000339 0.599685 0.398038 -0.326129 0.344165 -0.293597 -1.430314 0.089334 0.078768 1.009317 -0.527829 0.311888 0.663158 -0.024593 -0.085368 0.704564 -0.349536 -0.060065 0.903251 0.392700 1.142720 0.205139 -0.057536 0.229212 0.319855 0.858571 -1.035481 1.045024 -0.559465 -0.665379 1.085841 -1.004680 -0.775467 0.348065 -0.263494 0.488317 1.285132 0.950976 -0.243825 0.594787 -0.643263 0.075853 0.215077 -0.675966 1.000101 1.204806 0.291345 0.498008 1.182915 -0.245333 0.134117 0.054475 0.091094 -0.504089 -0.216356 -0.694011 0.404889 -2.192176 0.012522 -1.749525 -0.364465 -0.139116 1.942695 -0.994756 0.404905 0.920351 0.247189 0.940360 -0.355014 0.188291 -0.514041 0.174986 -0.081808 0.929828 -0.335023 0.099572 -0.352492 0.219018 0.240988 0.422260 -0.189672 -0.099460 -1.971495 -1.606295 -0.815098 -0.010934 0.209233 0.306299 -1.651068 -0.059033 1.228384 0.048350 -1.584960 -0.029260 0.662496 0.856882 -0.603958 1.337751 -1.460602 -0.316424 -0.165836 0.496020 0.190277 -0.333714 0.037257 -1.496757 -0.290813 0.267712 0.267959 -0.367525 -0.986555 -0.531938 -0.106856 -0.613355 0.054239 0.394721 0.434675 -0.175600 0.530135 -0.815474 0.629146 -1.487141 -0.116881 -0.569517 -0.696148 -0.074607 1.131274 0.994648 -0.115958 0.268204 -0.736091 -0.452561 -1.036097 -0.506220 -0.082508 -0.390581 1.153154 -0.041775 -0.073920 -0.049953 -0.056352 0.044942 -0.408029 -0.517779 0.092044 -0.650442 1.084731 -0.220246 -0.334067 -1.183020 -0.118174 0.713168 -0.958857 0.083670 -0.124668 0.504620 -1.225045 -0.845354 0.797892 -0.156293 0.452871 -0.645620 0.570044 -0.980874 0.293337 -0.563194 -0.065838 0.247283 -0.856127 -0.985388 0.037583 0.021580 -0.624979 -0.132460 -0.471838 -0.219489 0.721916 0.571921 0.446481 0.173431 -0.110134 -1.048735 -1.293648 -0.485730 -0.376357 0.456436 0.973309 0.047884 -0.811908 -0.165054 -0.851738 1.163406 -0.690688 0.066463 -0.419858 -0.150544 1.102928 -0.472944 -0.436850 -1.265645 0.178946 -0.002200 -2.047437 1.126377 0.250045 -0.557960 -0.218221 -1.104229 0.367810 0.717302 0.927900 -0.167079 -0.042057 0.058120 -0.305720 -0.090334 -0.635423 0.746269 -0.776095 0.589804 -0.497970 -0.213665 0.677413 0.820668 -0.100070 0.885324 0.381227 0.572560 0.597912 0.457414 0.369875 -1.025654 -0.287692 -1.352344 0.401729 1.370010 0.101458 0.122299 -0.781542 -0.679524 -0.008663 0.584381 0.967009 1.121296 0.629099 0.592687 -0.516945 -0.887074 -0.161705 0.672366 0.015033 -0.498339 -0.152632 -0.004959 0.159090 0.990116 0.263798 0.854318 -1.239192 -1.742173 -0.249504 1.376604 0.314969 -0.256870 0.957721 0.268337 -0.409112 -0.030026 -0.079341 0.451233 -0.138300 0.264424 -0.172436 -0.253171 0.024571 -0.584398 0.947312 -0.040593 -0.265495 0.376428 -PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.297346 0.179357 -0.200210 -0.604251 -0.308303 0.156717 -0.355720 0.339386 -0.400785 -0.665766 -0.683481 -0.209722 0.091344 -0.116503 0.472778 0.298356 0.341453 0.412177 -1.106661 0.223812 0.353459 -0.140927 -0.175399 0.563281 0.401979 -0.155024 -1.210259 -0.261065 -0.132671 0.624902 0.419631 -0.162585 0.509173 -0.938366 0.300103 0.779727 0.463961 0.413993 0.601718 0.286126 0.707629 -0.034281 0.263228 -0.470625 -0.052383 0.570437 -0.504735 0.726946 -0.234195 0.225119 0.405260 -0.880606 -0.261215 0.663019 -0.857489 -0.235826 0.248542 0.019388 -0.664470 0.449506 0.112483 0.082223 -0.019728 -0.127038 0.579611 -0.255283 -0.122612 0.170490 0.664925 0.205906 0.144428 0.407924 -0.402423 -0.580869 -0.240063 -0.186409 0.943162 -0.871702 0.224680 -0.919193 0.002032 -0.357349 1.099691 -0.524264 0.015086 0.712858 -0.736454 0.669441 -0.208483 0.218246 0.072279 -0.284751 -0.001198 0.058962 0.277755 0.466148 0.367656 -0.402543 0.017211 -0.001612 -0.812308 -0.327494 -1.089908 -0.735817 -0.289230 -0.150322 -0.111126 0.303316 -0.458026 -0.862482 0.956201 0.284497 -0.292721 0.727866 0.220851 0.891704 -0.667271 0.714496 -1.367676 0.026674 0.196646 0.415452 0.687407 0.127167 -0.381970 -0.277571 0.404806 0.274733 -0.163767 -0.657566 -0.060790 -0.765859 0.351841 -0.065705 -0.456352 0.112393 0.020417 -0.180982 0.214355 -0.085626 0.319618 -0.590334 -0.454280 0.021688 -0.246504 0.011513 1.068718 0.235553 -0.367801 -0.218855 -0.358507 0.287530 -0.344551 -0.476747 0.409771 0.224878 0.358388 -0.063828 -0.208205 0.633533 -0.093559 0.277898 -0.395158 -0.307869 -0.079910 0.518243 0.397493 0.166895 -0.280959 -0.545626 -0.707704 -0.053293 -0.484917 -0.265843 -0.242551 0.480953 0.124836 -0.168904 0.637982 -0.055706 0.363175 0.263454 0.153188 -0.767838 -0.046596 -0.440866 -0.244970 0.069614 -0.593173 -0.175367 -0.682089 0.107447 -0.103365 -0.045502 -0.596343 -0.040011 0.066844 0.109068 -0.119451 -0.474881 -0.522707 -0.474237 -0.501102 -0.221852 -0.269671 0.438990 0.219011 -0.044918 -0.279723 0.391584 0.333506 0.176536 -0.202091 0.236568 -0.362039 -0.511627 0.630072 -0.144744 -0.429958 0.053810 0.279688 0.058792 -1.058329 0.518744 0.652861 0.187857 -0.468738 0.314730 -0.661054 0.283618 0.369375 -0.087245 -0.038229 0.131512 -0.270033 0.133295 0.166189 0.622351 -0.544985 0.453523 -0.807061 0.316132 0.674623 0.304739 0.033288 0.478264 0.535020 0.578092 0.480091 0.731108 0.026202 -0.986126 0.012056 -0.910485 0.241053 0.812147 -0.429985 0.093217 0.527929 0.041557 -0.403004 0.037114 0.584831 0.754949 0.654665 0.125642 0.377285 -0.616215 -0.337655 0.663412 0.121459 0.279491 -0.157082 -0.372218 -0.219512 -0.595935 -0.017217 0.549094 -0.344533 -0.715508 -0.224190 0.319856 0.582468 0.025714 0.386371 0.176422 -0.119275 0.193097 -0.154125 0.788825 0.365134 0.176275 -0.478142 -0.236335 0.700190 -0.164689 0.548116 0.007498 0.322276 0.387318 -PE-benchmarks/birthday-paradox.cpp__main = -0.048272 0.071422 0.115914 0.054210 -0.042873 -0.019588 0.065987 0.092961 -0.170118 -0.291935 -0.290938 -0.361077 -0.044401 -0.017055 0.237546 -0.018947 0.048860 0.114848 -0.336914 0.009038 0.206087 0.043283 0.100441 0.057286 0.029361 -0.097347 -0.478493 0.092562 -0.005190 0.202640 -0.112651 0.082549 0.146377 0.071971 0.009841 0.133356 -0.025984 -0.012052 0.246530 0.144910 0.236204 -0.056323 -0.009965 -0.052094 0.072874 0.184693 -0.205128 0.008552 -0.141661 -0.126406 0.228506 -0.491893 -0.019927 0.116846 -0.081813 0.013125 0.219598 0.261125 -0.072985 0.166975 -0.245194 0.064139 0.005176 -0.295291 0.204420 0.158686 0.026580 0.049795 0.111897 -0.067059 0.020210 -0.016095 -0.052398 -0.132210 -0.351786 0.043360 0.249525 -0.745584 -0.030601 -0.413013 -0.062059 0.053750 0.291166 -0.122151 0.035209 0.256145 -0.113203 0.112350 -0.076787 0.001577 -0.156621 0.009241 0.054002 -0.060063 0.058363 -0.115702 0.017103 0.051105 0.099043 0.086023 -0.162588 0.016301 -0.526099 -0.470041 -0.213344 0.056087 0.064069 -0.021312 -0.246492 -0.058687 0.472506 0.070659 -0.235528 0.010063 0.105384 0.194857 -0.519802 0.121637 -0.367142 -0.094855 -0.049878 0.155089 0.200813 -0.062276 0.087120 -0.415654 -0.036383 -0.003449 0.108532 -0.083233 0.041861 -0.145783 -0.006280 -0.139225 -0.072332 0.024547 0.022122 0.179508 0.140859 -0.143410 0.176559 -0.245452 0.162144 -0.127978 -0.131941 0.009408 0.401815 0.367851 -0.106375 0.139629 -0.210282 0.003995 -0.151613 -0.131797 0.029360 0.010928 0.348200 -0.065205 -0.047675 0.013442 0.013551 0.003936 -0.107232 -0.083995 0.022793 -0.074569 0.124423 0.015941 -0.136570 -0.303929 0.082023 0.260577 -0.342476 -0.070738 -0.107894 0.385364 -0.102528 -0.172735 0.141157 -0.033802 0.064806 -0.044602 0.147846 -0.235997 0.168193 -0.111039 -0.114118 0.032659 -0.212239 -0.189534 -0.009001 -0.026185 -0.168180 0.027613 -0.055618 -0.044026 0.189252 0.102549 0.132632 0.024648 0.019906 -0.035257 -0.215156 -0.193804 -0.105230 -0.025348 0.259068 0.005572 -0.225689 -0.028060 -0.108123 0.280242 0.091188 -0.012087 -0.108072 -0.126373 0.157921 -0.053440 -0.076762 -0.076004 0.026091 0.067895 -0.560551 0.060924 0.100215 -0.128518 -0.099904 -0.325991 0.068783 0.117441 0.216994 0.041203 0.153126 -0.005666 -0.060029 0.019170 -0.141958 0.144229 -0.059824 0.012213 -0.124450 -0.061491 0.178066 0.140366 0.019353 0.196250 0.127780 0.339236 0.156184 0.099246 -0.016297 -0.256310 0.051036 -0.230113 0.110332 0.477200 0.078405 0.096203 -0.116490 -0.090462 -0.082753 0.021020 0.146121 0.350049 0.045350 0.154276 0.103756 -0.122577 -0.076549 0.155322 -0.003056 -0.221700 0.032196 0.000000 0.038619 0.150746 0.047506 0.280255 -0.180770 -0.554006 -0.090597 0.176139 0.084828 -0.010537 0.175154 -0.034378 -0.168651 -0.027497 -0.000884 0.103944 0.098497 0.069702 -0.131884 -0.077884 0.018385 -0.104373 0.103612 -0.066720 -0.050115 0.186137 -PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = 1.105176 -0.139693 -0.465640 2.698441 0.293278 -0.559936 0.082443 0.384542 -0.185231 -4.095350 -2.537424 2.242070 0.221764 0.397267 0.527065 0.647627 0.298423 0.460495 -4.000905 0.978709 1.299189 0.617519 0.253508 -0.450622 0.494351 -1.057378 1.612125 0.567215 0.694230 2.304341 -1.319624 1.065826 1.987670 -0.119036 1.173539 1.800246 -0.343018 0.227107 -1.070694 -0.644674 3.272298 1.246878 0.377358 1.655687 0.481955 2.412657 0.651392 1.722620 1.622412 -1.703611 0.839918 1.007870 -1.248954 -0.520231 -1.840971 1.268394 1.540046 0.871446 -1.355220 0.750889 -0.063664 -0.110792 0.590330 -0.411094 2.316452 0.762275 1.615103 1.593901 2.491994 -1.600476 -0.388709 1.295280 1.251853 0.614307 1.935428 -1.851763 -2.361434 -0.375357 -0.703932 -3.132952 -0.915685 -0.165044 3.488389 -2.243759 0.073632 0.298702 -0.329904 2.097355 -0.718566 -0.107076 -1.946307 -0.016373 -0.721616 2.594178 0.459931 0.004707 0.096104 0.757136 0.597787 1.735051 0.132487 -1.878012 -0.511367 -3.773682 -0.866140 -1.177455 1.310548 1.083934 -2.587650 -0.305513 -0.968243 2.555517 -3.289425 -0.298512 1.584620 1.142847 0.975193 -1.035150 -1.074481 -0.059475 0.561517 0.452869 1.527411 -1.266678 -0.001307 -0.197415 0.235916 -0.066494 0.989017 0.095229 -1.553746 -1.917665 -0.458055 0.460891 -0.046305 0.198251 1.222405 -1.127080 1.598898 -0.872281 1.863916 -2.714881 -0.258355 -1.100599 -1.334672 -0.842535 2.137672 1.302078 2.128197 -0.894837 -0.841138 -0.722521 -2.715088 -2.827978 0.844471 0.167254 0.622189 1.193482 -0.250627 1.311788 -1.236233 0.093443 0.916377 -1.011215 -0.512193 -0.193173 0.877189 -0.257324 -0.359106 -1.762515 -0.371300 -0.238135 -0.087320 1.774447 -0.612481 -3.564875 -3.204571 -1.794165 1.995098 -0.997641 0.336507 -1.027286 -0.355612 -1.243929 0.160591 -2.335187 0.106144 -0.139649 -1.728625 -2.443668 0.085569 -0.627311 -0.204112 0.419621 -1.864682 -0.194626 1.640462 1.146106 0.798971 0.389861 0.128498 -2.638059 -1.644726 0.321134 -1.292296 1.889251 0.958099 -0.318755 -2.316324 -1.021107 -1.945856 1.378449 -1.320605 0.574264 -0.572910 -0.584007 2.054221 -1.377398 0.489202 -1.741863 0.632671 1.115191 -4.568839 2.451530 1.881413 -0.955823 -0.237357 0.165061 0.384746 1.177768 1.800906 -1.578224 -1.475747 0.376798 -0.817027 0.075272 -0.878139 1.457615 -1.253203 0.379936 -1.760970 -1.136049 1.163330 1.114647 0.169989 0.535549 1.079963 -0.106541 0.828937 2.120191 1.641768 0.105334 -2.172878 -4.738620 1.472062 0.675592 -0.203204 0.459246 -0.970308 -1.533885 0.726273 -0.558118 2.212104 0.300300 -0.442892 2.031686 -2.480409 -2.220873 -1.082965 -0.598771 0.298284 -0.313690 0.417281 -1.201207 0.558858 0.238069 -0.242921 -0.455256 -0.854816 -0.075608 0.418735 2.038954 0.934869 0.814847 2.330277 0.828881 -1.548493 -0.160381 0.308046 -0.386431 -0.479176 -2.424678 -0.961152 -0.299336 0.548137 -0.985282 0.648333 -0.680414 0.168411 0.282800 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 3.886006 0.896220 -2.281315 6.980493 -0.404266 -2.537466 0.755079 2.713591 -2.162981 -11.954100 -7.869681 3.090504 1.363048 0.768483 2.385354 2.786187 -1.008496 1.070808 -12.929788 3.191708 5.372336 1.986153 0.705639 -1.354953 1.601418 -2.958305 -0.300734 0.973350 1.240074 7.260568 -3.455641 3.491932 6.006940 -0.494926 2.235218 5.087124 -1.929063 1.075355 -0.016841 0.149238 8.283080 4.493395 -0.216769 2.422341 0.562426 6.804679 -0.730400 6.001012 -3.000779 -5.401642 3.710416 -0.959266 -4.174660 0.078258 -3.274652 3.196736 6.460488 4.446194 -2.510374 2.755435 -3.221035 -0.078320 1.898376 -1.232044 7.315876 4.138535 4.713230 4.356579 7.442077 -3.723103 -0.110111 3.001359 1.037058 -1.627361 3.674027 -4.400228 -5.485871 -2.990955 -0.626201 -10.943083 -4.086650 0.451318 11.837814 -6.996069 0.336611 1.797289 1.340279 6.803043 -3.533106 0.649026 -4.567671 -0.075421 -3.384299 9.510051 0.667986 1.008581 -0.916730 2.654161 2.886162 4.089154 -1.289240 -3.869521 -5.054889 -9.873928 -2.544080 -2.341634 3.126754 4.296079 -9.171282 -1.932769 -0.112033 6.798155 -10.576606 0.440922 4.901354 4.792704 4.306881 2.156699 -6.030804 0.613007 0.686447 0.782871 4.751918 -3.438955 0.568346 -3.180827 1.004906 0.133821 1.789663 0.015411 -8.749724 -4.078318 -0.491986 -3.027545 0.616266 2.378957 4.095427 -2.907350 4.517907 -4.219050 4.981839 -9.739871 -0.307737 -2.714622 -7.484619 -1.651990 5.967351 6.902492 3.349697 -2.497078 -3.239998 -2.346238 -8.879230 -8.450967 0.735861 0.688729 3.520272 1.710939 -0.747434 2.791699 -3.505561 1.523522 2.268294 -2.536093 -0.854876 -1.252086 8.293787 0.014158 -1.646944 -4.862456 -2.228345 -1.066544 -1.433009 5.480204 -1.201242 -7.057820 -10.953484 -5.204230 5.979787 -2.036555 0.630369 -4.717415 0.099720 -6.203028 0.696385 -6.000592 0.885831 0.806179 -4.246321 -7.072393 0.357475 -0.586350 -2.586310 -0.013705 -4.324560 -1.871312 7.098022 2.243570 2.959102 0.752783 0.471996 -6.065497 -5.287338 1.383854 -4.241450 5.235702 4.590971 -1.153769 -5.020343 -1.972625 -7.051309 5.494309 -1.666891 1.294359 -3.166448 -0.436573 7.070275 -4.169912 -0.376860 -6.033802 1.344950 1.621007 -11.456343 7.673278 4.599074 -2.260783 -0.259311 -0.767863 1.421578 4.252608 4.721995 -3.482658 -3.977623 0.298473 -2.761361 0.047360 -1.668632 4.320951 -5.723963 1.345865 -3.620181 -1.863996 3.758462 3.805969 0.034809 2.907456 2.115224 -0.485505 3.735931 4.340594 4.513435 -3.123167 -5.130343 -13.026402 4.019006 -0.359865 -1.647976 -1.691458 -2.340369 -4.629720 1.815997 -0.690708 6.525452 4.020138 -2.227559 5.312747 -7.517101 -6.635259 -3.780704 1.123143 0.133586 -1.588499 -1.004927 -2.055932 2.798985 3.615271 -0.320375 1.482255 -6.214232 -3.292418 -0.092932 7.101268 1.014614 0.713567 7.113839 2.293958 -2.716842 -1.425756 1.144816 -0.172763 -1.313660 -5.132869 -2.904159 -1.113364 1.511986 -3.130589 2.798331 -1.146274 -1.051014 3.090661 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/dfs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = 0.522029 -0.101036 0.033221 0.723566 0.350080 -0.606109 0.172578 0.348305 -0.082544 -1.318057 -0.619065 0.164210 0.011400 -0.347812 0.255294 0.230321 0.067250 0.461842 -1.026915 0.543111 0.435339 0.446730 -0.088272 -0.521827 0.198425 -0.260322 -0.157335 0.221271 0.149991 0.778511 -0.605146 -0.002069 0.603368 -0.009725 0.302805 0.699225 0.444755 0.086400 0.174559 0.188512 1.306325 0.345127 0.022409 0.538260 0.595855 0.785297 -0.076563 0.845588 -0.269126 -0.430128 0.384240 -0.229023 -0.371085 -0.115999 -0.697209 0.695949 1.132395 0.670601 -0.626515 0.469798 -0.106519 0.065318 0.279245 -0.160227 0.754489 0.671757 0.201353 0.486403 1.403998 -0.371291 -0.184445 0.372671 0.765477 -0.028381 0.668122 -0.550351 -0.498960 -1.067383 -0.234377 -1.020740 0.051927 -0.063902 1.312362 -0.879801 0.335153 0.803866 0.224919 0.656997 -0.367116 -0.280218 -0.612219 0.204702 -0.397808 1.491275 -0.017977 0.230468 -0.265006 0.388412 0.325592 0.608453 0.050149 -0.495075 -0.751436 -1.701107 -0.745249 -0.315449 -0.045412 -0.061132 -1.176090 -0.288077 0.551991 0.674758 -1.318595 0.040143 0.579792 0.447457 0.301051 -0.366626 -0.690546 0.089924 -0.184354 -0.015483 -0.015665 -0.424500 -0.295965 -0.533210 0.031227 0.058487 0.243521 -0.298104 -0.684336 -0.267117 -0.310223 -0.040797 -0.108211 -0.046761 0.113976 -0.978489 0.450130 -0.591691 0.543314 -1.129156 -0.144431 -0.400363 -0.897594 -0.112642 0.969526 0.001423 0.569496 -0.084496 -0.586058 -0.559776 -0.937487 -1.276377 0.342057 -0.263004 0.470922 0.163482 -0.055330 -0.096775 -0.251814 -0.386889 0.355087 -0.509824 -0.018037 -0.329901 1.086293 -0.436670 -0.168567 -0.900798 -0.122478 0.772433 0.119935 0.165936 -0.425592 -0.474620 -0.924230 -0.739338 0.623347 -0.204765 0.233738 -0.332870 0.070197 -0.928376 0.421331 -0.669277 0.319541 -0.226813 -0.534492 -0.846843 0.018094 -0.227699 -0.097462 -0.050788 -0.622250 0.092445 0.111663 0.227000 0.112945 0.022070 0.110354 -1.303663 -1.099653 -0.156746 0.013437 0.671568 0.361367 0.265466 -0.469176 -0.210940 -0.820689 0.637642 -0.751147 -0.015769 0.057569 -0.210013 1.024891 -0.431325 -0.262336 -0.985539 0.281932 0.088814 -0.640395 1.308959 0.539619 -0.631808 -0.288058 -0.402251 0.193821 0.525880 1.059542 -0.535563 -0.341049 0.378300 -0.289911 -0.151965 -0.550051 0.618442 -0.461054 0.817182 -0.747382 -0.463194 0.212290 0.886242 -0.177786 0.366018 0.127650 -0.013839 -0.163435 0.890198 0.437368 0.031839 -0.679044 -1.184824 0.327361 -0.247844 0.155537 0.023837 -0.409021 -0.535758 0.182705 0.497246 0.959735 0.745230 0.177902 0.666970 -1.002150 -0.891479 0.105290 0.102087 0.273311 -0.615389 0.192616 -0.512687 0.023271 0.109855 0.230994 0.143919 -0.510622 -0.564390 -0.112066 0.725255 0.268822 -0.306598 0.905789 0.171084 -0.472926 0.163846 -0.005610 0.437347 0.018459 -0.189444 -0.296731 -0.429895 0.101337 -0.385619 0.998056 -0.309860 0.061827 0.406983 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = 2.376218 0.527946 -0.249880 2.806319 0.514447 -2.334363 0.616189 2.234591 -0.812707 -5.458056 -4.157538 0.725399 0.201925 -1.215012 1.655716 0.711832 -0.127925 1.067003 -7.211403 2.247835 2.574169 1.431245 -0.193070 -1.591395 0.940847 -1.224900 -1.916021 0.986086 0.167747 3.302207 -2.126865 0.859902 2.496996 0.261559 1.530624 2.673720 -1.084935 0.150806 1.871326 0.620441 4.767661 2.581915 -0.342809 1.652843 1.990163 3.195619 -1.342737 2.766092 -1.844860 -2.026930 1.787194 -0.949486 -2.063439 0.400644 -2.057693 2.003299 4.733072 2.025593 -1.773260 1.881237 -1.467621 0.070569 1.035208 -1.385398 3.797740 2.755513 1.513677 1.733123 4.832589 -1.077465 -0.100711 1.040016 2.084420 -0.970822 0.930796 -1.899033 -2.067114 -3.637408 -0.334190 -6.455456 -0.847763 -0.258561 5.645020 -3.277899 1.163058 1.951991 1.038296 3.079465 -1.922427 -0.807183 -2.071840 0.524253 -2.221242 5.466566 -0.226826 1.058535 -0.513006 1.559349 1.491149 2.234882 -1.118745 -1.637977 -3.393205 -7.100368 -1.835842 -0.734574 0.558247 0.522513 -4.757470 -0.832981 1.520051 2.939455 -5.156603 -0.186543 2.274718 1.757711 -0.505106 0.092809 -3.762905 -0.183484 -0.808451 0.652975 1.108315 -1.581147 -0.518216 -2.833555 -0.050076 0.410192 1.160897 -0.579778 -3.310743 -1.356357 -0.558487 -1.223589 -0.359966 0.680248 1.023651 -2.011285 1.942100 -2.561951 2.412179 -4.986797 0.157639 -2.097561 -3.323942 -0.244651 2.320808 2.720973 0.939319 -0.233371 -1.084491 -1.475743 -4.310656 -4.395308 1.057230 -0.688216 2.598547 -0.434932 -0.184638 -0.002624 -1.202406 -0.626145 0.853124 -1.850667 0.008988 -1.796605 5.963402 -0.582352 -0.954577 -2.729525 -0.804287 1.871833 -1.095720 1.006477 -1.198292 -1.531375 -4.481474 -2.847534 2.691666 -0.663349 0.466180 -2.129043 1.058640 -3.342874 1.227883 -2.556345 0.521228 -0.353296 -1.928676 -3.252382 -0.574091 -0.378582 -0.649225 -0.762378 -2.129961 -0.407333 3.336752 1.840503 1.020749 0.550556 0.395279 -3.593618 -3.553144 -0.286019 -0.603750 2.449524 2.631109 0.093227 -2.490855 -0.528330 -3.561085 3.212565 -1.249441 0.140464 -1.151063 -1.086213 4.182102 -1.658134 -1.267233 -3.383856 0.639160 0.069801 -4.688761 4.446758 1.872418 -2.083030 -0.876226 -2.279222 0.994305 2.180396 3.667884 -1.618429 -1.142874 0.519537 -1.683671 -0.409695 -1.690998 2.669983 -2.328565 2.321482 -2.364949 -1.333969 1.992977 2.625178 -0.279724 2.141653 0.264352 0.638600 1.554631 2.686653 1.709628 -1.504236 -2.691234 -5.878945 1.339747 0.295459 0.217693 -0.702818 -1.036644 -3.136229 -0.044279 1.137497 3.734864 3.390563 -0.182704 2.432088 -3.127284 -3.412332 -1.074947 1.368006 0.408757 -1.916179 -0.164258 -1.363525 0.700657 1.589284 0.859382 1.809022 -3.435020 -3.738855 -0.534997 3.166625 0.923506 -1.132092 3.513299 1.001089 -1.770320 -0.277792 -0.030094 0.946102 -0.259622 -1.082850 -1.589891 -1.730017 0.404893 -1.535448 3.184106 -0.275765 0.594039 1.786038 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = 1.333801 -0.200887 -0.329364 2.069159 0.384946 -0.888925 0.279782 0.805136 -0.231410 -3.476812 -2.140833 1.427976 0.166444 -0.154190 0.599723 0.626770 0.144803 0.463208 -3.437062 1.090658 1.124064 0.570902 -0.102475 -0.618993 0.411531 -0.939229 0.433895 0.644480 0.372730 1.999410 -1.161985 0.629812 1.659084 -0.035537 0.925248 1.682542 -0.013045 0.096299 -0.221134 -0.133183 2.954670 1.258537 0.005058 1.267808 0.781732 2.089034 0.043766 2.019987 0.223900 -1.324766 1.009860 -0.041497 -1.263896 -0.255082 -1.608855 1.183692 1.907555 0.962832 -1.195373 0.928212 -0.567349 -0.023114 0.585421 -0.357379 2.150414 1.112083 1.272980 1.281316 2.636504 -1.238367 -0.363047 1.195808 1.292343 0.253762 1.380643 -1.395695 -1.713694 -1.296596 -0.314009 -2.813475 -0.744901 -0.252616 3.355820 -2.000445 0.196322 0.855008 0.132433 1.834495 -0.985973 -0.152533 -1.628690 0.162942 -0.710436 2.865410 0.159189 0.347635 -0.188710 0.766758 0.696694 1.538918 -0.076237 -1.438107 -1.337439 -3.594745 -1.014711 -0.862094 0.619860 0.571748 -2.595368 -0.422558 0.173300 2.129079 -2.949197 -0.110676 1.464822 1.011851 1.116093 -0.132653 -1.444035 0.021574 0.235015 0.301148 1.022577 -1.050230 -0.152937 -0.800071 0.403752 0.063683 0.704604 -0.141329 -2.012911 -1.183160 -0.206808 -0.069086 -0.045038 0.182609 0.791148 -1.438439 1.278632 -1.086173 1.561885 -2.739745 -0.245989 -1.044151 -1.722495 -0.481251 2.320531 1.374382 1.652121 -0.380092 -0.867693 -0.840146 -2.438203 -2.880463 0.585986 -0.138995 0.883430 0.473111 -0.149147 0.618038 -0.887182 -0.133547 0.666672 -1.017046 -0.248642 -0.450470 1.805459 -0.351751 -0.390472 -1.673639 -0.387805 0.469641 -0.046604 1.226769 -0.642551 -2.676197 -2.691917 -1.693112 1.683421 -0.663984 0.282017 -0.960673 -0.109422 -1.645464 0.410046 -1.761454 0.416125 -0.185334 -1.527657 -2.123589 0.081249 -0.436883 -0.341761 0.069598 -1.485405 -0.178949 1.311180 0.903902 0.639971 0.353791 0.085604 -2.450809 -1.934912 0.070524 -0.734655 1.988762 1.113704 -0.063994 -1.576284 -0.675951 -2.048623 1.606561 -1.445536 0.305112 -0.431256 -0.608341 2.159378 -1.167132 -0.182348 -1.909469 0.682010 0.590443 -3.212437 2.588317 1.688872 -1.120910 -0.470651 -0.439895 0.361656 1.272930 2.029265 -1.265597 -1.074838 0.459110 -0.617895 -0.126935 -0.752687 1.405365 -1.192945 0.882074 -1.614102 -1.037879 0.956279 1.421284 -0.056545 0.657399 0.556127 0.083821 0.532762 1.886414 1.241994 -0.248474 -1.828882 -4.040368 1.137611 0.293857 -0.256639 0.204848 -1.022777 -1.485663 0.437631 -0.146700 2.122418 0.890052 -0.231047 1.697747 -2.213912 -2.065916 -0.739277 -0.044835 0.241000 -0.693840 0.470432 -0.990251 0.427468 0.400040 0.058892 0.015604 -1.212626 -0.850313 0.051932 1.786311 0.758352 0.053114 2.125560 0.629894 -1.140652 -0.182710 0.198631 0.111143 -0.128524 -1.588808 -0.851177 -0.645619 0.430940 -0.866475 1.232930 -0.309428 0.157447 0.654807 -PE-benchmarks/dfs.cpp__main = 0.592928 0.219820 1.355986 -0.170414 0.600933 -0.186531 0.664405 1.204508 -0.521780 -1.246767 -1.533439 -1.131631 -0.445076 -0.400440 0.779870 -0.636307 0.488246 0.192731 -1.959981 -0.030385 0.640123 0.338247 0.402783 -0.222754 0.185879 -0.341773 -2.058944 0.998075 -0.076873 0.694015 -0.292315 -0.475906 0.461429 0.585705 0.055328 0.925907 0.183136 -0.200975 1.320162 0.034040 1.407980 0.092136 -0.094349 0.583949 0.988504 0.769423 -1.116735 0.926618 -0.607278 -0.312733 1.209434 -2.642064 -0.680616 0.174995 -0.545609 0.277870 1.814924 0.980640 -0.471331 0.982571 -0.576912 0.072762 -0.069327 -1.376309 0.340464 1.218642 -0.245134 -0.177347 1.070330 -0.645597 -0.589016 0.639058 0.426621 0.199124 -2.091768 -0.721302 1.076393 -2.943552 0.346312 -2.020430 -0.372426 -0.594171 1.652080 -0.165665 0.326167 1.331239 -0.630017 -0.055041 -0.221810 -0.358733 -0.580700 0.317038 0.076496 0.462670 -0.397377 -0.094316 0.587272 -0.104002 0.699906 1.106460 -0.720834 0.288832 -2.557921 -2.250974 -0.450018 0.308448 0.200339 -0.508501 -0.548596 -0.386785 1.672425 -0.398271 -0.531610 -0.547402 0.734708 0.894754 -2.250127 1.338258 -1.700002 -0.877441 -0.114201 0.250640 0.492252 -0.383112 -0.034376 -1.657002 -0.341869 -0.069277 0.281247 -0.561232 -0.457859 -0.590997 -0.167155 -0.629680 -0.292200 -0.601517 -0.535791 0.362472 0.423254 -0.636546 0.675375 -1.296646 0.417732 -0.612655 -0.587137 0.146812 1.582606 1.021799 -0.214817 1.130727 -0.280375 -0.395026 -0.001450 -0.361145 0.203013 -0.063276 1.928889 -0.752153 -0.097037 -0.192854 0.015877 -0.807740 -0.972120 -0.099160 0.315133 -0.736745 1.507292 -0.356279 -0.335699 -1.146596 0.862398 1.539792 -1.520278 -0.675660 -0.664100 1.125105 0.057650 -1.069758 0.477650 -0.029391 -0.091045 0.103216 0.772152 -0.806279 0.629495 -0.274812 -0.061128 -0.021549 -1.444679 -0.722336 0.273638 -0.268260 -0.262952 0.435184 -0.138500 -0.318326 0.761776 1.426307 0.449041 0.280622 -0.069078 -0.835442 -1.342062 -1.326514 0.340654 0.391839 0.995240 0.161339 -0.497357 -0.103663 -0.456755 1.215844 0.342823 -0.341195 -0.574308 -0.364075 0.954474 0.049891 -0.009453 -1.079855 0.146937 0.555729 -2.100565 0.654271 0.194649 -0.680100 -1.236708 -1.836237 -0.315144 0.642430 1.335214 0.111245 0.152087 0.451378 -0.402245 -0.135935 -0.861633 0.670847 0.315281 0.776414 -1.010855 -0.869862 0.498614 0.914498 -0.177545 1.175935 0.637600 1.903678 0.662432 1.124283 -0.264477 -1.128929 0.047687 -1.702769 0.546501 2.615370 0.330976 0.185618 -0.682450 -1.216719 -0.265601 0.778402 0.772066 2.048992 0.702283 0.680903 0.808898 -0.492189 0.084260 0.743336 0.421121 -1.158736 -0.308684 -0.165254 0.133852 0.444777 -0.100885 1.578989 -0.862151 -2.914528 -0.774582 0.832503 0.399166 -0.124843 0.831581 -0.179584 -0.619549 0.163819 -0.010470 1.166180 0.720086 0.593117 -0.374543 -0.847024 -0.187291 -0.063954 0.877631 0.497569 -0.077292 0.912687 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/dfs.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/dfs.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 1.789583 -0.888070 -0.339753 2.607967 0.670250 -0.315853 0.182184 0.861367 0.268716 -4.545411 -2.647459 2.992309 0.063555 0.640377 0.559374 0.761381 0.618297 0.201005 -3.966601 1.033156 0.990910 0.384215 0.162420 -0.185317 0.551299 -1.332017 1.757646 0.665520 0.906415 2.425088 -1.503647 0.869835 2.146486 -0.078120 1.272469 1.979156 0.423532 -0.187700 -1.494191 -1.104800 3.744749 1.506907 0.108532 2.076546 0.543503 2.647882 0.481333 3.251321 2.296324 -1.812216 1.143306 -0.567993 -1.820347 -0.345964 -2.279460 1.599495 1.190082 0.646998 -1.535958 0.817708 -0.232067 -0.047053 0.483815 -0.655128 2.326905 0.733139 1.839499 1.558739 2.720620 -2.073463 -0.783888 2.057594 1.734385 1.571139 2.039525 -1.924377 -2.157425 -1.062641 -0.195917 -2.448853 -1.350928 -0.905361 3.903768 -2.498683 -0.028890 0.799427 -0.663987 2.185297 -0.915487 0.344778 -2.464095 0.127297 0.193201 2.515004 0.399363 0.038583 0.019561 0.601090 0.582428 2.123989 0.556837 -2.001102 -1.334242 -3.796951 -0.752933 -1.296880 1.240315 1.043816 -2.745784 -0.075383 -0.538287 3.283214 -3.133143 -0.296534 1.778172 1.052787 2.150238 0.359168 -0.808106 -0.234148 1.078934 0.353840 1.545547 -1.597139 -0.012181 -0.316214 0.810491 -0.084028 1.077962 0.032335 -2.070786 -1.948604 0.055777 0.844985 -0.011336 -0.050171 1.205355 -1.807619 1.780884 -0.628548 1.798775 -2.687861 -0.734046 -1.035359 -1.384809 -0.930291 4.607061 1.725394 3.106689 -0.125318 -0.973755 -1.163235 -2.550797 -3.519705 0.699977 0.081919 0.748768 1.303833 -0.119314 1.556942 -1.186953 -0.026575 0.234579 -1.199028 -0.541123 -0.003535 -0.062740 -0.613228 -0.115670 -2.194862 -0.215744 0.179399 -0.231574 1.815971 -0.640203 -4.979672 -2.957918 -2.159117 2.086979 -1.115662 0.584855 -0.767687 -0.422513 -1.260765 -0.071013 -2.242871 0.396080 -0.132692 -2.610858 -2.705430 0.393827 -0.785514 -0.202597 0.790551 -1.954937 -0.116044 1.036882 1.616255 0.863269 0.605599 -0.163422 -3.304078 -2.185930 -0.043397 -1.464538 3.096088 0.757015 -0.622929 -2.102140 -1.317612 -2.290059 1.979138 -2.893363 0.576310 -0.660240 -0.747744 2.102095 -1.379797 0.118421 -2.316179 1.210183 1.438570 -4.541601 2.710598 2.420864 -1.197069 -0.556728 -0.126217 0.252218 1.702260 2.517799 -1.668527 -1.550545 0.563249 -0.461554 0.004641 -0.764589 1.722855 -1.144580 0.491701 -2.134461 -1.569272 0.918584 1.383088 0.158354 0.377589 1.470923 0.515681 0.805622 2.560694 1.621971 0.055112 -2.525002 -5.802563 1.776230 2.063577 -0.603930 1.022156 -2.141016 -1.573936 0.747776 -1.214338 2.361949 0.056562 0.270951 2.263933 -2.694784 -2.321608 -0.809713 -0.896885 0.113943 -0.229982 1.268507 -1.202288 0.509144 0.033691 -0.457988 -0.871913 -0.654282 -0.245033 0.393451 1.863864 1.324287 1.164000 2.454814 0.994153 -1.726178 -0.078385 0.305849 -0.254232 -0.438227 -2.785642 -0.863800 -0.357565 0.352538 -0.974409 0.642382 -0.182546 -0.081068 0.013464 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.241350 -0.072454 0.157805 0.349221 0.082050 -0.003559 0.181059 0.308402 0.028352 -0.960168 -0.645256 -0.202993 -0.008755 0.048872 0.334783 0.080866 0.125283 0.340074 -0.836716 0.035071 0.414623 0.250434 0.289974 -0.077647 0.115518 -0.196226 -0.557490 0.079966 0.168715 0.611107 -0.320473 0.125710 0.493197 0.037010 -0.089848 0.400234 0.220511 -0.019951 0.153819 -0.003154 0.727156 0.076108 -0.052896 0.298163 0.052307 0.547144 -0.296576 0.680200 0.025489 -0.368120 0.477599 -0.956481 -0.283515 0.106046 -0.330905 0.369929 0.715976 0.587973 -0.195819 0.347384 -0.183931 0.153092 0.109622 -0.583585 0.357380 0.582925 0.131436 0.291989 0.639141 -0.412632 -0.018216 0.126365 0.117205 0.006083 -0.048884 -0.382713 0.162066 -1.220456 -0.063321 -0.750734 -0.101393 -0.172251 0.889461 -0.567690 0.153275 0.622716 -0.076115 0.431507 -0.153304 0.121081 -0.463920 0.125911 0.094486 0.466847 0.047732 -0.083161 -0.173781 0.116322 0.160289 0.260865 0.070129 -0.127630 -0.963893 -1.037161 -0.481320 -0.110692 0.160415 0.144839 -0.742295 -0.026923 0.640500 0.230466 -0.834449 -0.037531 0.334752 0.517602 -0.244787 0.333573 -0.595558 -0.153745 0.020465 0.126134 0.176542 -0.423987 0.067811 -0.648401 -0.131186 0.044900 0.193717 -0.201019 -0.227653 -0.362765 -0.154833 -0.049338 0.005462 0.079457 0.215895 -0.177228 0.373061 -0.349488 0.360467 -0.701817 -0.074837 -0.155806 -0.428084 -0.163872 1.215833 0.338392 0.267557 0.210060 -0.508591 -0.357738 -0.441505 -0.564658 0.072858 -0.003560 0.624680 0.182870 -0.092679 0.094917 -0.165166 -0.036748 -0.201293 -0.258711 -0.025739 -0.054404 0.425380 -0.260943 -0.158026 -0.764345 0.113324 0.557780 -0.488316 0.076446 -0.167656 0.142570 -0.489831 -0.500312 0.476679 -0.203711 0.237147 -0.211856 0.224518 -0.550333 0.192353 -0.350672 -0.066905 0.159873 -0.696962 -0.661739 0.170345 -0.133079 -0.222214 0.292254 -0.403627 0.021160 0.184523 0.500769 0.202615 0.064239 0.015175 -0.732646 -0.720512 -0.422350 -0.304116 0.409465 0.324148 0.003436 -0.395770 -0.245992 -0.374290 0.606964 -0.410894 0.053725 -0.266370 -0.048502 0.414255 -0.283584 -0.144950 -0.730939 0.158993 0.217557 -0.894647 0.570826 0.248901 -0.304498 -0.186750 -0.573805 0.176389 0.305927 0.639915 -0.228468 -0.139572 0.184673 -0.174031 -0.022016 -0.461987 0.383758 -0.235741 0.158620 -0.409344 -0.208770 0.257022 0.457900 -0.098283 0.399241 0.542441 0.457533 0.195374 0.460614 0.219462 -0.400604 -0.227805 -0.921785 0.318850 0.823792 0.103889 0.152288 -0.597772 -0.236797 0.177870 0.245317 0.494998 0.701118 0.413539 0.498727 -0.295300 -0.440803 0.057959 0.103709 0.172268 -0.356606 0.078215 -0.171940 0.083927 0.251371 0.021771 0.285902 -0.453745 -0.785723 -0.065776 0.633716 0.118261 0.064246 0.583833 0.125767 -0.408774 0.122346 -0.092053 0.191403 -0.029248 0.053966 -0.049732 -0.018192 0.007731 -0.335045 0.424458 -0.161364 -0.247552 0.188836 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = 3.812624 1.815858 -5.036713 15.597907 -1.682147 -2.103609 -0.029664 2.374709 -3.561413 -22.864051 -12.087744 9.518214 2.216388 5.055431 3.554225 3.509135 -1.593677 0.885726 -23.494401 4.204196 10.169442 4.250329 2.399918 -0.016369 2.969289 -4.768083 6.457554 1.872148 4.096873 13.188848 -6.146231 7.972921 11.898189 -2.521416 3.723956 8.089629 -2.290498 3.197250 -5.976471 -1.343163 14.929137 6.287298 -0.337612 6.090424 -1.293151 12.990091 1.647113 7.714885 0.681359 -11.661640 3.544895 5.900995 -4.979311 -3.151559 -5.051924 5.080685 8.258463 8.518523 -5.612828 2.865847 -2.495995 -1.773686 3.395054 0.558956 12.105438 5.744195 10.136303 10.117705 11.141212 -7.799622 -0.317679 4.814492 -0.770562 -0.527489 8.974965 -6.843024 -12.389973 -1.863809 -2.884332 -17.084754 -11.069631 1.278852 16.143693 -12.792480 0.203984 -0.791173 0.643908 12.854333 -4.803977 2.677279 -9.662045 -2.900299 -3.820235 14.319672 2.201415 -1.004064 -0.082157 4.527075 4.437309 7.513341 0.124695 -9.242356 -2.948522 -13.490622 -4.011069 -5.529429 7.868587 11.378931 -15.646351 -3.250663 -5.815176 12.838151 -19.275594 -0.247527 7.482310 9.216515 10.440578 0.445511 -8.344720 1.461253 3.561142 -0.817177 10.757317 -5.814581 2.814271 -1.896936 1.294082 0.011931 2.687785 2.629487 -13.637098 -10.217057 -0.672123 -3.349680 1.537666 4.740500 9.360757 -3.904900 8.943216 -6.233322 9.802645 -15.051966 -1.521806 -2.329446 -9.907059 -4.859699 7.546887 10.978839 6.487113 -7.348427 -8.490060 -2.932570 -15.713488 -14.580281 1.348035 3.730222 3.026562 7.471923 -2.783656 8.997448 -7.862949 4.568739 5.959810 -2.749318 -3.142581 -0.499166 6.446623 1.418758 -1.292561 -6.814691 -3.823803 -7.318609 -1.178428 14.207392 -1.593496 -15.393096 -21.938645 -7.908065 11.438550 -4.632938 0.067747 -8.506193 -2.735996 -10.331570 0.141208 -12.612431 -0.365245 0.317809 -6.987596 -13.202518 2.508324 -2.061306 -4.302105 1.744180 -9.206455 -3.662650 10.741593 2.825789 6.132938 -0.237963 0.447567 -10.282091 -6.562899 4.915729 -10.373473 9.160062 4.894292 -3.214887 -10.501258 -5.031132 -11.050992 9.104657 -2.349033 4.289831 -4.180153 -0.502230 11.331747 -7.503133 -0.252081 -8.734526 2.484265 5.968735 -19.523605 12.761723 7.618313 -2.224912 1.610805 4.408774 2.052874 7.312301 4.324257 -8.319614 -9.963925 0.222590 -3.284286 1.484364 -3.381294 6.247271 -9.816521 -0.489820 -6.216621 -3.235382 7.023971 4.323662 0.842404 3.112299 6.043082 -4.554893 5.817751 7.863276 10.279814 -2.352283 -7.650870 -19.577830 8.931061 -3.206204 -2.929113 -3.648145 -5.161049 -6.727379 4.946293 -3.143525 10.882061 1.556160 -5.796064 10.313679 -16.058641 -11.648410 -8.967333 -1.605326 -0.343470 0.882656 -1.052232 -2.868330 6.130207 6.159277 -2.931832 -1.231840 -8.811057 0.437390 1.600276 10.548189 0.289807 4.516469 12.445978 4.702427 -6.534669 -2.321042 3.220925 -3.902044 -4.949450 -13.033038 -4.617030 0.870178 3.418581 -6.027784 0.354942 -4.748042 -3.238048 2.912842 -PE-benchmarks/partition-problem.cpp__main = 0.538145 0.216696 0.494029 0.562768 0.035535 -0.178312 0.329806 0.894679 -0.097929 -1.958313 -1.518109 0.380605 -0.102043 0.126057 0.561248 0.000795 0.189998 0.540632 -2.520295 0.234996 0.952948 0.645839 0.686645 -0.371947 0.359700 -0.349156 -0.749486 0.317481 0.361960 1.222440 -0.708718 0.181138 0.970190 0.250151 0.218367 0.904444 -0.060363 -0.147494 0.257000 -0.359078 1.519601 0.548727 -0.128985 0.803831 0.306019 1.140143 -0.356670 0.460628 0.330839 -0.832970 0.422052 -1.199818 -0.871676 0.035990 -0.558100 0.596929 1.084720 0.924100 -0.470373 0.687650 0.014613 0.055373 0.169962 -1.162155 0.758290 0.789553 0.272852 0.511832 1.143827 -0.799295 -0.123622 0.287980 0.336143 0.116336 -0.227256 -0.728690 0.017509 -1.913720 -0.066561 -2.283229 -0.623922 -0.294892 1.585110 -1.073480 0.578454 0.861305 -0.381918 0.807152 -0.183865 -0.089003 -0.888104 0.076462 0.110360 0.821167 0.007358 -0.224081 0.124643 0.308353 0.518318 0.768627 0.049655 -0.391893 -1.452777 -1.960209 -0.246937 -0.230015 0.473568 0.412982 -1.116650 -0.143653 0.792249 1.018315 -1.554711 -0.290884 0.807348 0.812543 -1.125382 0.016451 -0.908908 -0.209490 -0.093835 0.236253 0.529930 -0.955193 0.021814 -0.520538 -0.368080 0.030692 0.537527 -0.121024 -0.649383 -1.088926 -0.077983 -0.036836 -0.152348 0.120071 0.338104 -0.008264 0.711005 -0.757271 0.866396 -1.174485 0.215234 -0.325827 -0.321024 -0.329613 1.410409 0.786423 0.128461 0.253016 -0.426560 -0.434885 -0.741360 -0.942131 0.608505 0.169289 1.222135 0.242128 -0.165481 0.325630 -0.415159 -0.178515 -0.478083 -0.475522 -0.026311 -0.272186 0.790488 -0.299031 -0.278340 -1.075071 0.290389 0.806893 -0.908648 0.116282 -0.467044 0.139538 -1.049300 -1.067427 0.997296 -0.380037 0.175954 -0.400070 0.429222 -0.604915 0.305883 -0.853138 0.066464 0.160870 -1.212203 -1.256682 0.144211 -0.316727 -0.285150 0.468069 -0.690929 -0.153082 0.545886 0.837595 0.330947 0.100921 0.186197 -1.119599 -1.053076 -0.575580 -0.532303 0.576991 0.619612 -0.060152 -1.353576 -0.395203 -0.602537 1.253269 -0.440994 0.213713 -0.782770 -0.233847 1.070935 -0.378288 -0.025330 -1.137905 0.384512 0.683713 -2.131478 0.980549 0.504322 -0.494061 -0.380416 -0.836940 0.134813 0.819156 1.145025 -0.515103 -0.544372 0.297274 -0.645868 0.020788 -0.829682 0.852325 -0.397894 0.462816 -0.826641 -0.470961 0.611344 0.621546 0.025711 1.085054 0.989849 0.904230 0.513076 0.976741 0.504604 -0.594057 -0.713051 -1.740015 0.823910 1.803948 0.434804 0.197085 -0.835194 -0.882118 0.238723 0.325646 0.965018 1.051140 0.288770 0.928220 -0.574889 -0.920918 -0.178006 0.173866 0.301980 -0.402657 0.060403 -0.154644 0.292464 0.584868 -0.085094 0.700783 -0.738711 -1.441736 -0.082757 1.187524 0.558127 0.198406 1.172976 0.194792 -0.972482 0.212872 -0.175504 0.323458 -0.280058 -0.236115 -0.326700 -0.176980 0.105533 -0.579811 0.662992 -0.088598 -0.318191 0.190333 -PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 2.243126 0.584412 -2.688955 5.453492 -1.047185 -0.838350 0.003378 0.849380 -1.431249 -8.767471 -4.626246 5.314232 1.009286 1.748486 1.240109 2.419238 -0.750860 0.229449 -7.421878 1.758837 3.406418 0.747474 0.476419 0.100523 1.045337 -2.162824 2.013215 0.176970 1.531826 5.100664 -2.329031 3.220901 4.551525 -0.846373 1.394639 3.080630 -1.324328 1.016379 -2.182593 -1.085665 5.454391 2.282145 0.349704 2.077835 -0.800578 4.846470 -0.497658 4.726306 0.514170 -4.339520 2.796327 1.481792 -2.537664 -0.136554 -2.105464 2.009660 1.820925 2.011013 -1.744172 1.090212 -1.726529 -0.015294 1.099389 0.099163 4.994931 2.585952 3.751978 3.916552 3.954715 -3.076704 -0.115719 2.359295 -0.408861 -0.298908 3.877823 -2.339137 -4.256117 0.833756 -0.621306 -5.210017 -4.098182 0.245195 8.105267 -5.208100 -0.669332 -0.094161 0.933624 5.238092 -1.870991 1.852017 -3.617464 -0.713150 -1.164717 5.424931 1.072746 0.303963 -1.005538 1.251067 1.370849 2.803998 -0.297246 -3.233555 -2.321919 -4.271739 -1.679186 -2.181331 3.113581 4.387037 -6.521977 -0.938953 -0.898455 5.832762 -7.296470 0.278790 3.136552 3.223625 5.425261 2.978994 -3.345574 0.728131 1.686752 0.063072 3.681490 -1.764510 0.879424 -0.926370 0.810676 -0.408362 1.380778 0.709804 -7.231093 -3.556778 0.314627 -1.639596 0.850009 2.088155 3.824331 -1.520671 3.331208 -1.751812 3.270855 -6.023480 -1.133651 -1.480899 -4.311054 -1.809535 4.669953 5.368711 3.854183 -2.345140 -2.633764 -1.709310 -6.364177 -5.663942 0.060165 0.811427 1.234799 2.660389 -0.683903 3.384171 -2.865256 2.320238 1.697156 -1.697121 -1.167399 -0.159225 3.032046 0.215395 -0.815228 -3.059361 -1.990273 -3.249043 -0.871905 5.208592 -0.125731 -7.026497 -8.488264 -3.381741 4.336922 -1.886448 0.548895 -3.147369 -0.888615 -3.387594 -0.866750 -4.502755 0.568796 0.736212 -2.763888 -5.117603 1.096273 -0.405913 -2.433605 0.393825 -3.459936 -1.361120 4.082750 0.213297 2.378073 0.608588 -0.256264 -3.826546 -2.699752 1.993007 -4.355891 3.049739 3.364838 -1.251633 -3.812331 -2.225461 -5.024821 3.172861 -2.921411 1.752631 -1.672890 -0.143016 4.266011 -3.262138 -0.208059 -3.487400 1.279734 1.943189 -8.586496 4.374079 3.045409 -0.951793 0.676374 1.270731 0.909415 3.131243 2.259165 -2.758784 -3.224594 -0.043975 -1.223863 0.492119 0.192045 2.795035 -4.138596 -0.040014 -2.178049 -0.947896 2.678622 1.906090 0.459506 1.144715 2.121379 -1.432451 3.213683 2.491234 3.980311 -1.596062 -3.337908 -9.226924 3.397886 -1.243067 -1.984994 -0.599620 -2.439615 -2.496232 1.950150 -2.215780 4.117151 -1.645497 -1.793148 3.759982 -6.195445 -4.569778 -3.083076 -0.515714 -0.506095 0.264390 0.011434 -0.566445 2.013070 2.627128 -0.969972 -0.494484 -3.249489 -0.088898 0.665572 4.715701 0.748994 1.947571 4.666526 2.083064 -2.291571 -1.142796 0.942236 -1.199266 -1.872292 -6.164942 -1.752411 0.346760 1.216795 -2.447678 0.244801 -0.896576 -1.651641 1.003277 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.492213 0.138093 0.404957 0.213082 0.136241 -0.527448 0.403412 0.710984 -0.235980 -1.187888 -0.835082 -0.249083 -0.065207 -0.231873 0.291445 -0.037065 -0.032526 0.583223 -1.459999 0.317578 0.644017 0.627033 0.281760 -0.445735 0.205193 -0.077583 -1.153399 0.279728 0.142592 0.816651 -0.502094 -0.220764 0.614113 0.102137 -0.125168 0.751601 0.510723 0.031741 0.679812 0.166509 1.002708 0.222105 -0.006116 0.416213 0.420683 0.706929 -0.370694 0.917642 -0.430327 -0.508813 0.523758 -1.486986 -0.609366 0.042199 -0.275302 0.511348 1.210853 1.087247 -0.346396 0.677564 -0.100854 0.041793 0.201255 -0.760591 0.390349 0.961373 -0.197852 0.135092 1.220577 -0.393398 -0.149742 0.205115 0.392244 -0.176816 -0.240183 -0.681616 0.178903 -1.816255 0.032344 -1.590757 -0.264055 -0.081764 1.366161 -0.810480 0.553282 1.033989 0.002298 0.421215 -0.252942 -0.213479 -0.478484 0.206130 -0.144294 1.104345 -0.153582 0.023807 -0.118646 0.180155 0.532496 0.532311 -0.220289 -0.083911 -1.506113 -1.584798 -0.434085 -0.042035 -0.183448 0.024249 -1.010870 -0.458338 0.920710 0.421506 -1.234908 -0.119555 0.689779 0.630395 -0.659166 0.551455 -0.962503 -0.042452 -0.264133 -0.028180 0.185516 -0.596760 -0.216771 -0.736405 -0.281142 0.046350 0.080096 -0.357476 -0.745678 -0.412947 -0.222774 -0.363723 -0.074077 -0.091744 -0.063134 -0.329058 0.395740 -0.759811 0.414977 -1.045962 -0.001739 -0.083232 -0.865055 -0.066492 1.219952 0.323431 0.012030 0.151358 -0.535073 -0.575619 -0.495896 -0.840355 0.356686 -0.203832 1.084004 -0.079439 -0.075940 -0.248872 -0.115590 -0.477055 -0.271418 -0.264941 0.126666 -0.357218 1.267143 -0.405634 -0.171717 -0.987433 0.154453 0.971940 -0.453349 -0.221073 -0.480918 0.278997 -0.563613 -0.771430 0.621380 -0.057018 0.126989 -0.314575 0.346375 -0.820386 0.396062 -0.427289 0.077030 0.058139 -0.775768 -0.823029 0.129330 -0.190301 -0.305865 0.133717 -0.376694 -0.139624 0.315191 0.636215 0.207621 -0.050756 0.139925 -1.031446 -1.056990 -0.567443 -0.019913 0.403950 0.524928 0.334148 -0.598003 -0.078983 -0.607961 0.870536 -0.428426 -0.105896 -0.371040 0.040456 1.099015 -0.215373 -0.070940 -0.979064 0.256311 0.269306 -1.205177 1.031128 0.320493 -0.450557 -0.398188 -0.752073 -0.025094 0.741383 0.970645 -0.335474 -0.348395 0.425412 -0.497660 -0.116982 -0.703375 0.576545 -0.384729 0.783028 -0.528250 -0.301325 0.179993 0.791981 -0.176912 0.684017 0.368737 0.596949 0.144188 0.713249 0.075543 -0.563431 -0.280212 -1.235538 0.504897 0.993398 0.326054 0.058442 -0.592395 -0.502664 0.271790 0.519494 0.772325 1.218529 0.363883 0.557939 -0.475155 -0.703881 0.201752 0.437689 0.369923 -0.592773 -0.027584 -0.218673 0.183012 0.479575 0.078119 0.737948 -0.722502 -1.406590 -0.281269 0.821138 0.200315 -0.248194 0.895561 -0.139432 -0.406132 0.256056 -0.176938 0.802283 -0.083118 0.363019 -0.131113 -0.384329 0.079409 -0.348857 1.062506 -0.176158 -0.303088 0.588154 -PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = 4.127147 0.433632 -3.990549 9.536252 -0.698152 -2.322411 -0.105218 2.201334 -2.111701 -13.752631 -9.031826 7.648896 1.787796 1.899247 2.534077 3.409353 -0.678920 0.226558 -14.253458 3.786612 4.924952 1.027584 -0.486563 -0.926693 1.459966 -3.711873 4.377315 1.594460 1.772498 8.003543 -3.876534 4.876551 6.608263 -1.209507 3.689295 5.445560 -3.004429 0.836953 -3.268773 -1.465483 9.998542 5.225879 0.020721 3.868833 0.307881 8.007248 0.776976 5.950610 0.333002 -6.281917 3.253947 4.365057 -4.707874 -1.058206 -4.890277 3.438529 5.056168 3.064701 -3.471981 2.382255 -3.256123 -0.732850 2.217258 0.026820 9.233271 2.678220 7.418555 6.024572 7.627307 -5.068164 -0.429711 4.504502 2.028919 0.166844 6.223137 -4.609435 -8.233980 -0.547542 -1.123503 -11.462237 -5.092932 0.398339 13.749224 -7.869411 -0.886121 0.036014 0.895988 8.385301 -4.393090 1.434236 -5.732777 -1.008275 -3.518463 9.623723 1.697643 0.603558 -0.198613 3.206683 2.384452 5.498554 -0.886859 -5.827538 -2.477754 -10.928910 -2.779238 -3.251267 4.422919 5.241999 -9.729418 -1.407439 -2.104725 9.164392 -11.215265 -0.103107 5.562410 4.466347 6.647893 0.663064 -5.476964 0.644180 2.091683 1.363907 6.701854 -3.299566 1.354523 -0.902363 2.234235 -0.068574 2.828410 1.487115 -9.465577 -5.790249 0.118439 -1.564359 0.679718 2.206767 5.580659 -3.350029 5.585028 -3.323067 6.439848 -10.806600 -0.526088 -3.631946 -6.409714 -2.380889 5.738768 8.326344 5.991564 -3.651904 -3.135862 -1.645870 -10.662932 -9.754418 1.352279 1.743767 1.468166 2.983572 -0.831230 5.023392 -4.183942 2.288473 4.000413 -3.347889 -1.850237 -0.619945 6.230179 0.999601 -1.453587 -5.260259 -2.558393 -3.675328 -0.189100 7.862493 -0.882676 -12.630386 -12.978688 -5.445281 7.022518 -2.662305 0.472378 -4.580838 -1.926624 -5.242741 0.013901 -7.629060 0.791853 0.362400 -5.023384 -8.119660 0.311181 -0.623749 -3.341084 0.128232 -5.853838 -1.786146 7.954358 1.882659 3.136191 1.258576 0.456907 -7.080930 -5.175375 2.876307 -5.558417 7.065631 5.195495 -2.148716 -6.959724 -2.769898 -7.848604 5.604333 -3.468620 2.476660 -2.967811 -1.657789 7.267302 -5.584085 -0.051079 -5.720898 2.016652 2.723980 -15.353400 8.868062 6.822588 -2.407183 0.319652 1.337410 1.585256 4.339445 5.030175 -5.144137 -4.884934 -0.028455 -2.012754 0.361247 -0.971432 4.834267 -5.975708 -0.262828 -4.496805 -2.747510 4.569827 3.420953 1.112901 2.001749 2.390273 -1.724986 3.942260 5.619429 6.265387 -1.945795 -6.780569 -15.743411 5.370122 -1.150545 -3.207740 -0.370088 -2.794064 -5.422706 1.925141 -3.370201 6.963190 0.231467 -3.627356 6.413949 -9.312574 -7.745290 -5.731651 -0.476391 -0.525568 -0.375483 0.924262 -3.044679 2.974610 2.590055 -1.003543 -1.638529 -4.701804 -0.562329 0.839601 7.141923 2.281717 2.256761 8.065269 3.381465 -4.002852 -2.391487 1.513962 -2.585567 -1.686066 -8.933153 -3.608508 -0.664573 2.333517 -3.651570 0.986517 -0.904969 -0.262850 2.168344 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 6.911989 0.899662 -5.518660 20.005607 -1.496567 -4.038172 0.518653 4.153243 -4.762767 -30.736436 -18.046955 12.831811 3.210085 5.072371 4.294072 5.415691 -1.128547 1.582718 -33.270189 6.654971 12.594082 5.159192 2.789748 -2.119605 3.774453 -7.435482 9.321647 3.661010 4.822668 18.055673 -8.511266 9.386980 15.482866 -3.012169 6.138114 12.508083 -4.124546 3.248975 -6.966105 -1.818584 21.439128 9.508994 0.398294 8.446640 0.428703 17.840800 3.291279 11.156005 3.778830 -14.498024 6.884349 8.465825 -9.101838 -4.426779 -9.356887 7.262489 13.302991 11.037083 -7.725220 5.243992 -4.219405 -2.214053 4.644724 -0.606920 17.289651 7.288054 14.134830 12.434167 16.869588 -11.337635 -1.634392 8.360047 2.696235 0.290910 12.375343 -13.145587 -17.328942 -5.190208 -4.124524 -26.416653 -11.655084 1.246392 25.745841 -16.975956 -0.002554 0.795796 0.024204 16.514732 -7.055619 1.563377 -12.844322 -2.442911 -6.441004 21.336231 2.677107 -0.476762 1.212175 6.528751 6.272614 11.759370 0.234276 -12.711126 -5.369253 -22.598922 -6.206234 -7.714468 10.324804 12.499648 -20.467046 -3.684454 -5.597101 15.496993 -25.717513 -0.286537 11.982950 11.961143 12.490911 -1.781526 -11.636111 1.372116 3.906853 1.504098 14.510317 -9.038336 2.406994 -1.883643 2.369300 0.022665 4.702525 1.910993 -17.754213 -13.907259 -2.260130 -2.696302 1.415550 4.030142 10.957494 -6.420959 12.032609 -8.401427 14.257780 -22.466862 -1.396514 -5.716473 -12.291506 -6.049529 11.474887 13.960919 10.313574 -9.161881 -9.372166 -3.696320 -21.174054 -18.985569 3.162508 4.228063 4.841999 8.424233 -2.979772 11.028405 -9.142808 4.052959 6.770000 -5.188708 -3.431555 -0.723544 10.931569 1.068723 -2.321793 -11.291931 -4.336033 -6.667760 -0.532873 16.643989 -3.210359 -23.420050 -27.605925 -11.906382 15.349849 -6.330168 0.329375 -9.910441 -3.516213 -12.094918 1.222925 -17.374202 0.051711 0.467989 -11.555673 -17.946857 2.836957 -3.064348 -4.926081 2.295294 -12.730150 -4.573013 14.163901 6.723905 7.779389 0.341124 1.354234 -17.152542 -11.230827 4.757131 -12.094027 13.620291 7.398667 -3.565113 -15.263102 -6.243365 -15.031692 11.011951 -3.862702 4.719459 -6.466774 -2.505043 15.899271 -10.496386 2.855243 -13.400711 3.559118 7.936596 -30.677713 20.066038 12.623762 -4.259191 0.399556 4.229087 2.108151 9.515578 8.429975 -10.891832 -12.987105 1.044299 -5.394286 1.256659 -4.614117 9.769975 -12.344055 0.369275 -10.007664 -6.108360 9.057896 7.626291 1.574021 5.049492 7.310998 -3.890421 6.300541 12.541666 12.947887 -2.860628 -12.459279 -31.405589 11.981873 -0.775201 -3.741019 -2.079503 -6.422831 -10.989052 6.324853 -2.334222 15.388563 4.454689 -7.103950 14.123295 -20.042884 -16.288496 -11.326156 -1.917424 0.847221 -0.671001 -0.960059 -6.676433 7.177681 6.243590 -3.434134 -1.595875 -9.910754 -0.549708 2.007150 15.568974 3.949568 5.375962 17.614056 5.994267 -9.415519 -3.279978 3.827522 -4.440839 -4.324342 -15.322890 -6.287774 -0.554570 5.030755 -7.243982 2.293852 -4.732097 -2.313775 4.304693 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.691325 0.425271 1.011043 0.300188 -0.178368 -0.845985 0.940081 1.992239 -0.454500 -2.301145 -2.031130 -1.646599 -0.097844 -0.462718 1.078596 -0.343802 -0.509059 1.006500 -3.927223 0.449628 1.838947 1.338110 1.225642 -1.064428 0.468111 -0.192178 -3.158214 0.689635 0.117651 1.703975 -0.677612 -0.417060 1.205162 0.424044 -0.669115 1.346873 0.206237 0.155362 1.804523 0.623884 1.475396 1.019810 -0.961177 0.304786 0.496886 1.329781 -1.096886 0.696712 -2.009515 -1.063175 0.871451 -3.255400 -1.308843 0.051612 0.126562 0.695124 3.196694 2.645692 -0.096709 1.398486 -1.118026 -0.037963 0.334447 -1.921592 0.681746 2.051425 -0.061737 0.240304 2.048444 -0.852186 -0.131810 0.106077 0.057195 -1.017176 -1.294960 -1.031854 0.426423 -5.074085 0.196256 -4.098372 -1.149124 0.010741 2.312114 -1.440400 1.188736 2.104054 0.163062 0.835078 -0.753105 -0.192399 -0.589536 0.312162 -0.376076 2.313465 -0.260626 -0.177476 0.006047 0.585189 1.440543 0.930012 -0.300365 0.348885 -3.505488 -3.154556 -0.443507 0.204598 0.085646 0.393933 -1.812172 -0.733185 2.872487 0.082282 -2.316517 -0.143776 1.514229 1.813880 -1.879953 0.702885 -2.264223 0.082747 -0.642414 -0.083013 0.864140 -1.620388 -0.145853 -1.519317 -0.515673 0.225000 0.012196 -0.616551 -1.323824 -0.916423 -0.314465 -1.181456 0.097628 0.183712 0.001554 -0.063141 0.731750 -1.870411 1.143002 -2.258484 0.835813 0.033118 -1.220799 -0.001312 1.871944 1.312127 -1.232643 0.363082 -1.068026 -0.807732 -0.679350 -1.227616 0.495410 0.352415 2.623353 -0.701554 -0.256341 -0.367887 -0.108896 -0.300170 -1.112266 -0.296805 0.566065 -0.366790 3.217925 -0.402752 -0.483692 -1.747570 0.346074 1.900407 -1.484450 -0.423107 -0.648973 1.928937 -1.130456 -1.504736 1.281289 -0.014182 -0.159170 -0.988452 1.011711 -1.720881 1.127004 -0.640720 0.270664 0.707741 -1.719030 -1.578689 0.223924 -0.143306 -0.615749 0.380740 -0.483418 -0.758841 0.864637 1.327020 0.567684 -0.085273 0.588457 -1.579356 -1.936609 -1.352948 -0.303228 0.798118 1.012085 0.344783 -1.157735 0.094365 -0.943884 2.162131 0.497605 -0.256106 -1.779745 -0.008418 2.139951 -0.154725 -0.559644 -2.286505 0.229807 0.486260 -1.499851 1.993909 0.473846 -0.399094 -0.723816 -1.679345 -0.198963 1.479629 1.620467 -0.553489 -0.809530 0.452174 -1.204325 -0.170821 -1.208359 1.126218 -1.029211 1.061789 -0.589281 -0.262976 0.473636 1.353839 -0.254927 2.143056 0.952746 1.536647 0.434723 0.857641 0.232098 -2.024285 -0.372520 -1.758479 1.109247 2.207275 0.623473 -0.602183 -1.044478 -1.387224 0.404976 1.983845 1.311560 3.982636 0.316757 0.968174 -0.398469 -1.144524 0.004736 1.375067 0.581831 -1.280160 -0.601394 0.025257 0.690153 1.647276 -0.180617 2.193599 -1.980802 -3.461077 -0.860256 1.832463 0.278477 -0.778956 1.691090 -0.125535 -0.983467 0.193813 -0.385603 0.985671 -0.149729 1.770745 -0.083878 -0.559807 0.148801 -0.562886 1.764804 0.078434 -1.065870 1.255288 -PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = 3.726108 2.218087 -5.531910 12.808950 -1.352947 -2.209992 -0.309487 2.143158 -3.856374 -19.248454 -10.627829 7.022254 3.050305 4.402423 2.564056 4.453496 -1.641495 1.224377 -18.579355 3.814535 8.473143 3.521083 1.108210 -0.260364 2.276325 -4.085021 4.648275 0.267874 3.329324 11.571886 -5.172233 7.495070 9.879951 -3.078483 3.028003 6.765790 -1.671097 2.074897 -4.523959 -0.385012 12.329546 5.218705 0.313216 4.527129 -1.482080 10.786296 0.881208 6.892935 -2.874560 -9.518081 3.359581 5.291178 -4.693589 -2.153387 -4.571385 4.963917 7.529156 7.457815 -3.996708 2.419993 -2.496911 -1.607445 3.138896 0.343546 10.556983 5.116995 8.857817 8.758013 10.231419 -6.141081 0.032467 4.338035 -0.821979 -1.107245 8.498387 -5.986104 -10.019795 -0.405454 -2.846430 -15.080657 -7.765043 0.998156 16.278735 -11.226803 -0.310871 -0.068955 1.755055 11.170715 -4.619631 2.088436 -7.627200 -2.418104 -4.669894 12.485585 1.864699 0.243828 -1.287219 4.166927 3.462067 5.709673 -0.354751 -7.739053 -3.195186 -10.763114 -4.645506 -4.549128 5.671165 9.680312 -13.951234 -2.862821 -5.063904 11.183914 -17.006543 0.889591 6.266345 8.029961 11.288251 2.053446 -8.755475 1.645044 2.599235 -0.545051 8.067241 -4.595492 2.331150 -1.923417 1.074799 -0.388993 2.040623 1.832706 -13.393713 -7.947321 -1.262466 -3.999615 1.696876 4.140448 8.441016 -4.888195 7.492939 -5.320834 7.757767 -13.936947 -2.439425 -2.254207 -10.908613 -3.971220 6.071369 9.210094 6.173375 -6.606034 -7.398486 -2.772301 -14.403289 -11.855330 0.895000 2.618344 2.147161 6.559608 -2.151970 7.050969 -6.425317 3.679063 6.177295 -2.798588 -2.581150 -0.323664 9.001296 0.878330 -0.927290 -6.775620 -4.231743 -6.115642 0.604915 11.921993 -1.461834 -12.346829 -19.190965 -6.299056 9.539318 -3.783532 0.728155 -7.300207 -2.463372 -9.279603 -0.257401 -10.727572 -0.551940 0.409851 -5.771247 -11.122225 2.298028 -1.108530 -5.729432 1.100803 -7.761894 -2.618635 10.212300 2.296781 4.928366 -1.236932 0.150328 -8.918017 -6.512656 4.630970 -8.762649 8.250260 4.974246 -2.703016 -8.485732 -3.838348 -10.158558 7.498211 -1.950379 3.497313 -3.292585 0.613806 9.267418 -7.731651 -0.038285 -8.390181 2.026494 3.779452 -17.218020 11.867667 6.277700 -2.043498 1.855683 3.467453 2.336788 5.693829 3.542404 -6.313650 -8.152988 0.361205 -2.334408 0.929618 -3.409639 5.394713 -9.107491 -0.251994 -5.053517 -2.579688 5.767839 4.594591 0.413302 2.608640 4.287867 -4.540545 4.322293 6.314893 9.364881 -2.555663 -6.493208 -15.804640 6.864797 -5.505582 -3.231265 -3.745781 -3.745569 -5.146823 4.471648 -3.093891 9.271994 0.887815 -4.870756 8.553874 -14.351998 -10.068215 -6.884312 -0.440513 0.246603 0.429293 -1.171009 -3.666155 5.335687 5.266095 -1.820023 -1.416112 -8.569226 0.887258 1.420537 9.767363 0.075383 3.828385 10.943170 4.218883 -4.316525 -1.985576 2.925214 -2.722891 -4.186984 -10.778616 -3.736186 0.830955 2.848495 -5.192176 1.187829 -4.214227 -2.828094 3.517688 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.505116 0.128459 0.413839 0.235996 0.156011 -0.457498 0.375876 0.811481 -0.117219 -1.195212 -0.944806 -0.435109 -0.088750 -0.347466 0.481483 -0.027297 0.047902 0.581870 -1.471084 0.327651 0.667660 0.583301 0.285261 -0.458691 0.219103 -0.133640 -1.320621 0.223803 0.108292 0.799420 -0.483880 -0.151628 0.582050 0.149708 -0.080523 0.683368 0.265077 -0.034540 0.801836 0.166949 1.044680 0.323909 -0.117979 0.434572 0.473476 0.694459 -0.595457 0.795545 -0.528357 -0.442322 0.580202 -1.494129 -0.552133 0.162681 -0.329550 0.540893 1.337196 0.969022 -0.316240 0.666327 -0.313919 0.111237 0.188626 -0.903203 0.467142 1.021495 -0.112027 0.231144 1.201167 -0.350704 -0.084911 0.154251 0.411248 -0.188654 -0.332057 -0.548032 0.269286 -2.057591 -0.032608 -1.564531 -0.115777 -0.198484 1.452185 -0.778966 0.561342 1.079146 0.065296 0.461661 -0.298467 -0.186596 -0.465242 0.254247 -0.169135 0.987350 -0.163615 0.053125 -0.182720 0.213878 0.431275 0.468797 -0.181584 -0.029846 -1.618480 -1.715117 -0.530199 0.001308 -0.073425 -0.054721 -1.037259 -0.256200 1.184354 0.308421 -1.196974 -0.110505 0.601146 0.625518 -0.806394 0.496775 -1.076537 -0.159566 -0.288554 0.101435 0.086953 -0.606777 -0.177789 -0.974353 -0.315158 0.089732 0.187416 -0.381683 -0.548677 -0.376667 -0.253014 -0.319900 -0.101673 0.000000 -0.010413 -0.355859 0.408725 -0.724614 0.477006 -1.090302 0.032138 -0.253040 -0.731122 -0.041982 1.348430 0.441675 0.003749 0.328524 -0.501920 -0.581500 -0.538236 -0.699607 0.298920 -0.218479 1.144180 -0.160056 -0.046246 -0.262712 -0.080591 -0.375958 -0.384282 -0.353351 0.173400 -0.359073 1.385928 -0.430116 -0.228974 -1.074545 0.153219 1.137233 -0.633727 -0.304677 -0.410614 0.577924 -0.544690 -0.761566 0.608233 -0.091385 0.208513 -0.330594 0.494568 -0.757601 0.443891 -0.405231 0.086480 0.090593 -0.816426 -0.818407 0.089219 -0.156297 -0.279782 0.113508 -0.361261 -0.066770 0.370009 0.743390 0.182468 0.059570 0.119145 -1.060816 -1.124851 -0.682135 -0.026410 0.470371 0.615743 0.230782 -0.596923 -0.092094 -0.601980 0.961443 -0.386424 -0.110185 -0.431707 -0.092109 0.986902 -0.231325 -0.257477 -1.148709 0.204195 0.154737 -1.165172 0.936555 0.265994 -0.510198 -0.412158 -1.031567 0.119191 0.635946 1.049598 -0.237300 -0.180503 0.358106 -0.478344 -0.129572 -0.751900 0.615298 -0.370968 0.726799 -0.559185 -0.290929 0.328489 0.778394 -0.195897 0.757284 0.415181 0.730504 0.236181 0.676958 0.178644 -0.669658 -0.362872 -1.163147 0.398157 1.124939 0.355602 0.026074 -0.595060 -0.603195 0.114514 0.670276 0.775083 1.403022 0.508869 0.560161 -0.351400 -0.676954 0.216578 0.529712 0.335230 -0.713268 -0.017922 -0.216639 0.105435 0.494405 0.165686 0.818253 -0.811409 -1.605260 -0.300997 0.876813 0.267428 -0.323185 0.845415 0.021107 -0.518991 0.240960 -0.184158 0.657396 -0.043770 0.444434 -0.131281 -0.381502 -0.001238 -0.384911 1.077774 -0.070388 -0.221953 0.514899 -PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 3.849980 0.803079 -1.159058 4.990891 0.822781 -2.694485 -0.249887 3.422793 -1.880741 -7.546403 -5.646301 3.234957 0.159055 0.518272 3.354417 1.849311 -0.179100 -0.028018 -9.074072 3.367265 1.947802 1.137504 -0.274787 -2.262129 1.726381 -0.016350 0.140320 1.167270 1.163534 4.077686 -3.587286 1.540646 3.033888 0.259174 3.514533 1.338476 0.203591 0.405593 -1.513135 -0.765315 7.322110 3.280528 -0.197642 3.680153 2.231144 4.393787 -0.774747 5.184974 -0.648978 -2.451444 3.433234 -2.142088 -2.861579 0.746023 -3.264048 3.374046 5.120874 2.269250 -2.841558 2.198882 -0.575966 -0.143313 0.959378 -2.311573 5.818633 2.830617 3.806680 2.674796 5.583820 -2.354832 -1.057526 2.071154 4.071679 0.306657 0.715154 -5.394409 -2.714685 -5.051079 0.289691 -7.958013 -2.030557 -1.382129 8.068871 -5.102966 1.627113 2.426590 -1.207202 3.620831 -3.473042 0.579542 -3.210545 -0.707778 -1.803072 6.284514 -0.487865 0.049563 1.027251 1.906539 2.670381 4.315079 -0.295263 -1.948525 -3.533907 -6.708766 -2.355433 1.665528 1.733327 1.136279 -4.542968 -1.396784 0.217359 3.600359 -5.866229 -1.612368 3.679036 2.452706 2.022000 1.516259 -4.005687 -0.019784 0.468140 1.524550 3.193255 -2.846613 0.265401 -2.509468 -0.012236 0.478872 3.305714 0.282743 -4.606521 -3.235879 -0.907659 -0.824873 -0.933541 -1.441267 0.460840 -3.163659 3.804860 -1.496499 3.590829 -6.628232 -1.287668 -2.406193 -3.517427 0.068949 5.796432 3.094260 3.513421 1.053929 -2.169016 -1.716720 -5.063697 -5.244667 2.377443 1.060369 2.336829 1.021294 0.016520 2.043308 -1.403821 -1.551490 1.963666 -3.000318 -1.937965 -2.665397 4.083397 -0.848123 -1.066112 -4.637320 0.436556 1.861279 -1.249053 2.237382 -0.955121 -6.210109 -5.311661 -3.720526 3.805988 -0.895441 1.287059 -1.255604 1.744946 -4.915822 0.522045 -5.383593 2.196142 0.420211 -4.491039 -4.124704 0.129571 -0.554193 0.176139 -0.313343 -2.422038 -0.442583 2.837602 4.315381 0.541566 1.651330 1.250350 -6.472927 -6.309825 -0.823657 -1.313304 4.896491 0.694643 -0.050126 -4.117968 -1.011042 -4.418112 4.516315 -3.078688 0.050765 -2.649202 -0.174761 4.998328 -2.448986 -1.244411 -4.881957 1.445937 2.168359 -7.732158 4.842156 3.182607 -2.084150 -1.424533 -2.238349 1.407491 3.278790 6.186377 -2.237740 -2.431323 0.446507 -0.386572 -0.501175 -2.872724 4.337838 -2.763936 1.224641 -3.499149 -2.766700 1.812371 2.942998 1.039179 2.780077 1.674478 1.288315 -0.052176 4.982605 2.621229 -1.704316 -3.147631 -8.966462 1.929089 4.425106 -0.548800 0.113660 -3.010621 -4.264823 -0.522377 0.111685 4.459526 3.358311 0.413496 3.552082 -4.351057 -4.276656 -1.773925 1.794042 -0.513881 -2.111866 -0.117093 -2.067855 1.025998 2.601907 -0.559844 0.986629 -2.160776 -4.222409 -2.221503 3.568140 1.097610 0.887490 4.931283 2.476763 -3.272984 -0.052874 0.680072 0.695239 0.109139 -3.838220 -2.543736 -2.269381 -0.074933 -1.888397 1.552870 0.257950 -0.569899 1.137275 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = 3.187965 0.567557 0.385390 2.085518 1.192349 -4.514329 1.124450 3.759326 -0.606371 -3.962011 -2.373872 0.888271 0.000809 -2.617586 1.258576 0.440910 -0.984861 2.141483 -6.051371 3.480035 1.474353 2.623069 -1.077616 -4.158223 0.864913 0.246707 -2.971810 1.735360 -0.143520 2.493613 -2.500514 -1.384632 1.780632 0.487357 1.212027 2.243834 2.239948 0.016210 2.012979 1.081987 4.944277 3.045460 -0.967037 2.228363 3.249447 2.801672 -0.807522 2.982694 -3.691607 -1.171912 0.594003 -2.402072 -2.721487 -0.389899 -2.012868 3.215012 5.454542 3.093480 -2.140377 2.887280 -0.764895 -0.362182 1.575162 -1.493624 3.340547 3.400354 0.289295 1.208691 6.794680 -0.698474 -0.875796 1.010847 4.439163 -1.153507 1.518250 -2.509729 -1.865532 -7.230122 0.393626 -6.764933 -0.153405 -0.376629 5.486754 -3.841949 3.036747 4.341601 1.804926 2.213930 -2.983554 -1.661286 -1.674372 0.745260 -2.358282 8.072491 -0.943207 1.247615 -0.574181 2.033665 2.618110 2.776080 -0.539670 -0.735366 -3.859535 -7.275783 -1.965107 0.562454 -2.001000 -1.420598 -4.104241 -2.035071 4.026293 3.011526 -5.143131 -0.707358 3.158818 0.953641 0.182983 -0.931827 -2.917823 1.143174 -1.820766 -0.362576 -0.223844 -2.620987 -1.675803 -1.319071 -0.253212 0.696706 0.988811 -0.992001 -4.290754 -0.382303 -0.846499 -1.200524 -0.484748 -1.073458 -1.310657 -4.500448 1.466874 -3.417587 2.094191 -4.688653 0.055871 -1.109060 -3.557524 0.710691 3.060204 0.069202 0.471283 0.538933 -1.320356 -2.350285 -3.193794 -5.499769 2.546424 -0.782068 2.650728 -1.517147 0.095916 -2.171147 -0.077898 -2.740948 1.352360 -2.562194 -0.011233 -2.101091 7.384498 -1.578137 -0.772244 -3.605711 0.119848 4.871411 0.894346 -1.013866 -1.835410 -1.455992 -2.503068 -2.967822 2.214402 0.485334 0.318845 -1.493684 0.986168 -3.800638 2.290894 -2.341199 2.884959 -0.537076 -2.014480 -2.938994 -0.505206 -0.505646 -0.097101 -1.463460 -1.563065 0.211599 0.154031 1.361016 -0.699342 0.121120 1.601500 -5.345492 -5.156766 -1.325907 1.771109 3.216303 1.355550 2.426243 -1.969140 0.518914 -3.428505 3.633451 -3.085009 -0.858449 -0.890596 -1.027001 5.594669 -1.340783 -2.252770 -4.630903 1.424454 -0.273345 -0.583695 6.118899 2.302300 -2.632370 -1.914431 -2.697610 0.350647 3.319457 5.990922 -2.315583 -1.656948 1.775152 -1.343932 -1.397558 -2.461770 2.903733 -1.997021 4.421676 -2.609807 -1.754135 0.166530 3.952236 -0.601762 2.578866 -0.812254 0.487838 -1.756661 3.484807 1.014009 -0.847961 -2.810609 -4.026003 1.184620 -0.229622 1.044709 -0.666260 -1.599775 -3.159756 0.161477 3.112570 3.926835 5.053184 0.339888 1.876883 -4.003202 -3.620812 0.808447 2.383390 0.854735 -2.976888 0.907263 -1.825842 0.159475 1.393636 0.977257 1.659028 -2.441986 -4.662417 -1.657185 2.182023 1.249795 -3.211407 3.959656 0.297281 -1.523781 0.696478 -0.867844 2.638782 -0.101790 1.100920 -1.055568 -3.087305 0.297034 -1.112644 5.599068 0.126440 -0.031531 2.440731 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 0.759997 0.331201 0.220522 0.619625 0.255838 -1.137010 0.222517 0.894814 -0.783777 -1.004158 -0.762595 -0.236157 -0.142584 -0.654079 0.593954 -0.016102 -0.238764 0.075839 -1.667545 0.822312 0.309361 0.213659 -0.375738 -0.913143 0.219984 0.237287 -0.967555 0.637689 -0.202948 0.637942 -0.726710 -0.125317 0.189696 0.482973 0.614892 0.224596 0.077243 -0.040785 0.618509 0.262543 1.174008 0.648439 -0.513465 0.252196 0.926393 0.588033 -0.441501 0.416650 -1.525226 0.025454 0.411774 -0.669449 -0.453387 0.244868 -0.502515 0.420967 1.607792 0.751138 -0.300207 0.582177 -0.801352 0.088703 0.287353 -0.257201 1.205637 0.837770 0.302272 0.311041 1.351880 -0.282884 -0.117081 0.168440 1.123749 -0.537976 -0.699678 -0.190696 -0.152787 -2.180197 0.098342 -2.014714 -0.132727 0.024012 1.358268 -0.534120 0.527469 0.790124 0.240232 0.386623 -1.104829 -0.050519 -0.428047 0.141555 -0.776842 1.697754 -0.321310 0.317857 0.041385 0.479078 0.770445 0.794354 -0.586507 -0.067458 -0.993666 -1.903918 -0.551416 0.627026 -0.540910 -0.552887 -0.942995 -0.388305 1.475922 0.679792 -0.901599 -0.436522 0.417705 0.321471 -0.442161 0.139020 -1.240184 0.227830 -0.622262 0.241687 0.396966 -0.247328 -0.082734 -0.932845 -0.097652 0.223701 0.602514 0.066307 -1.212506 -0.024800 0.056390 -0.830872 -0.335100 -0.350310 -0.544784 -0.455665 0.260843 -0.727839 0.682059 -1.288928 0.338533 -0.671511 -0.994544 0.603557 0.352989 0.825439 -0.289228 0.605173 -0.129604 -0.172350 -0.745728 -1.237790 0.536276 0.071163 0.654412 -0.823472 0.068863 -0.294549 -0.073744 -0.769866 0.636157 -0.754700 -0.234341 -1.021634 2.035296 -0.104803 -0.381790 -0.659134 0.242693 1.225956 -0.196239 -0.068212 -0.521582 -0.016334 -0.848405 -0.760595 0.507553 0.086529 -0.239643 -0.175203 0.631574 -1.276287 0.770853 -0.426920 0.749823 -0.041230 -0.544603 -0.643289 -0.267506 0.003272 -0.226251 -0.509963 -0.152943 -0.079390 0.446763 0.281018 -0.077499 0.370440 0.496515 -0.791786 -1.457752 -0.325098 0.720692 0.650113 0.550964 0.436312 -0.628659 0.014143 -0.940557 1.236316 -0.206780 -0.156796 -0.359159 -0.256278 1.284092 -0.303588 -0.777822 -0.638491 0.332667 0.041207 -0.486312 1.428920 0.601376 -0.740656 -0.656164 -1.264189 0.337653 0.645345 1.673345 -0.505056 0.003588 0.241592 0.061911 -0.399481 -0.447144 0.828537 -0.354303 0.719835 -0.631986 -0.647591 0.149989 0.786266 0.110979 0.648803 -0.384154 0.305173 -0.334049 0.984446 0.174693 -0.475877 -0.421541 -0.859584 0.088506 -0.032061 0.200927 -0.129837 -0.306441 -1.164354 -0.490948 0.542815 0.995588 1.238916 -0.380440 0.483655 -0.547386 -0.656434 -0.207496 0.894370 -0.086861 -1.093556 0.221173 -0.439823 -0.069712 0.654421 0.295494 0.712667 -0.600731 -1.668890 -0.823542 0.459676 0.243045 -0.851462 0.811321 0.316103 -0.499497 -0.123583 0.125891 0.508515 0.282643 0.021394 -0.500189 -0.868824 0.125023 -0.246167 1.105649 0.474633 0.076953 0.638895 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 1.087136 0.284991 0.515717 0.547800 0.336548 -1.681489 0.746397 1.542233 -0.395375 -1.682255 -0.846432 -0.383595 -0.051052 -1.276879 0.346610 0.055075 -0.298616 1.050849 -2.741814 1.147134 0.992060 1.113035 -0.150729 -1.617453 0.289496 -0.219937 -1.573529 0.828631 -0.160564 1.276728 -0.872381 -0.644274 0.834213 0.351492 0.380768 1.397926 0.693413 0.021300 1.386670 0.730415 1.856174 1.280555 -0.755380 0.426792 1.328583 1.234641 -0.220308 0.373930 -2.173339 -0.503298 -0.102837 -1.053763 -1.082108 -0.253268 -0.671695 0.796990 2.455461 1.797052 -0.786045 1.311059 -0.738305 -0.068897 0.632474 -0.384923 1.157540 1.266332 -0.105963 0.469742 2.681896 -0.429027 -0.152251 0.233929 1.267649 -0.845658 0.338545 -0.445525 -0.628860 -3.516345 0.072944 -3.184592 -0.243873 0.265596 1.981400 -1.332782 1.282368 1.858453 0.861751 0.879285 -1.099206 -0.962323 -0.726572 0.376855 -0.957721 3.331711 -0.295932 0.579702 -0.220103 0.983085 1.131334 0.927759 -0.220721 -0.492596 -1.756765 -3.169893 -0.596956 -0.260587 -0.893218 -0.505248 -1.669055 -0.872266 2.292024 1.241201 -2.240437 0.062235 1.146601 0.606781 -0.485609 -0.886937 -1.309768 0.640319 -1.108429 -0.244176 -0.019317 -1.148211 -0.722492 -0.546506 -0.031663 0.331836 0.161013 -0.427391 -1.801906 -0.028396 -0.020736 -0.883912 -0.235465 0.031084 -0.444972 -1.476066 0.395719 -1.925492 1.049010 -1.828731 0.618709 -0.329484 -1.573000 0.142159 0.681199 0.299797 -0.648961 0.013242 -0.527074 -0.658611 -1.153979 -2.272472 0.968760 -0.309709 1.290464 -0.825262 -0.092277 -1.018522 -0.259412 -0.894537 0.266586 -0.790581 0.322490 -0.720801 3.369168 -0.431608 -0.431942 -1.071226 -0.036127 2.092764 0.444322 -0.359164 -1.054952 0.357968 -1.217154 -1.266190 1.015138 0.084522 -0.237912 -0.747018 0.322663 -1.561849 1.283573 -0.644961 1.117187 -0.354762 -0.503479 -1.309386 -0.132155 -0.282636 -0.241142 -0.457770 -0.557000 -0.113892 0.121057 -0.076084 -0.146843 -0.191597 0.693155 -1.645543 -1.777080 -0.350307 0.743170 1.002623 0.734678 0.881988 -0.803859 0.240726 -1.239044 1.614842 -0.424440 -0.172517 -0.404537 -0.614313 2.378001 -0.309672 -0.841061 -1.654073 0.610260 -0.147093 0.186124 2.647299 0.986179 -1.107635 -0.760793 -1.068419 0.076064 1.288782 2.007768 -0.920408 -0.703828 0.781176 -0.877876 -0.440107 -0.800159 0.976781 -0.785830 1.957115 -1.062824 -0.554766 0.322425 1.599904 -0.397267 1.262489 -0.324702 0.137165 -0.605942 1.351051 0.318410 -0.296713 -1.115065 -1.128421 0.554146 -0.618541 0.715945 -0.556299 -0.259306 -1.274364 0.131610 1.528675 1.601257 2.654523 -0.479439 0.826648 -1.466643 -1.525257 0.089212 0.936111 0.582467 -1.348116 0.211460 -0.581283 0.210340 0.546164 0.634810 1.141738 -1.271159 -1.861095 -0.498472 1.051458 0.560222 -1.718935 1.620048 -0.181168 -0.547953 0.171035 -0.282618 1.099868 0.177754 0.901780 -0.444296 -1.146665 0.474636 -0.549370 2.457653 0.018442 0.116084 1.225546 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.321958 0.207110 0.513549 0.675794 0.474224 -1.888249 0.806252 1.668821 -0.332534 -1.936856 -0.962947 -0.184059 -0.057131 -1.451949 0.360904 0.113313 -0.295319 1.152797 -2.894019 1.338662 1.023194 1.226513 -0.231427 -1.782852 0.335238 -0.254791 -1.602685 0.870953 -0.150013 1.410572 -0.995671 -0.700983 0.939651 0.352748 0.410742 1.560952 0.822362 -0.002466 1.468999 0.738089 2.144519 1.378195 -0.707078 0.638045 1.515170 1.373914 -0.285273 0.792419 -2.120612 -0.549286 0.045667 -1.129708 -1.229730 -0.262149 -0.850286 1.006651 2.687158 1.821470 -0.902763 1.408235 -0.722871 -0.062830 0.704520 -0.428170 1.305200 1.508712 -0.113531 0.550647 3.103969 -0.477912 -0.221867 0.381043 1.570526 -0.764684 0.575385 -0.625047 -0.774572 -3.619688 0.030242 -3.292746 -0.187922 0.134287 2.352321 -1.529585 1.355392 2.039349 0.986069 1.022176 -1.176130 -1.016869 -0.835029 0.489537 -1.044444 3.708310 -0.373349 0.733424 -0.372796 0.998055 1.161774 1.070753 -0.213625 -0.584996 -1.946808 -3.529839 -0.754552 -0.325876 -0.993567 -0.592893 -1.995638 -0.889721 2.337332 1.409966 -2.521713 0.013680 1.284967 0.633395 -0.268221 -0.774010 -1.450373 0.615977 -1.100541 -0.250005 -0.154388 -1.224122 -0.863002 -0.713176 -0.029780 0.350223 0.182415 -0.541694 -2.018041 -0.041762 -0.102448 -0.829210 -0.224181 -0.013111 -0.452978 -1.811820 0.448787 -2.017727 1.099423 -2.093311 0.438242 -0.440506 -1.785236 0.136242 1.032859 0.243907 -0.365414 0.042389 -0.591210 -0.888352 -1.347287 -2.558645 1.020302 -0.527245 1.378949 -0.823024 -0.052521 -1.124531 -0.275763 -1.045976 0.310317 -0.923528 0.345683 -0.840745 3.641643 -0.606766 -0.418477 -1.297638 -0.105569 2.305808 0.521720 -0.385480 -1.114541 0.064255 -1.374824 -1.448019 1.121561 0.063185 -0.166695 -0.839467 0.358660 -1.717688 1.317342 -0.728191 1.201419 -0.395735 -0.652357 -1.472462 -0.133753 -0.322269 -0.232566 -0.518447 -0.686447 -0.069103 0.119833 0.079102 -0.143213 -0.134746 0.634691 -2.038504 -2.083761 -0.425821 0.835446 1.243041 0.823495 0.986960 -0.873013 0.194465 -1.485068 1.751778 -0.827702 -0.211808 -0.335115 -0.634413 2.647260 -0.410272 -0.920808 -1.955068 0.690883 -0.200122 0.024039 2.956754 1.087257 -1.286908 -0.863180 -1.217463 0.110469 1.442349 2.317403 -1.035060 -0.778150 0.910858 -0.899382 -0.519987 -0.935209 1.132347 -0.898031 2.248847 -1.233233 -0.686546 0.326718 1.846682 -0.489061 1.263072 -0.365540 0.140197 -0.632695 1.549865 0.409956 -0.286558 -1.314841 -1.515105 0.573585 -0.624162 0.721852 -0.478336 -0.438663 -1.416557 0.198444 1.593702 1.851401 2.690252 -0.307970 0.937942 -1.711227 -1.728010 0.213358 0.969827 0.652764 -1.467907 0.325861 -0.716328 0.154790 0.557479 0.707824 1.128804 -1.400583 -1.982416 -0.523656 1.210785 0.641392 -1.820361 1.802223 -0.110212 -0.611194 0.230238 -0.315714 1.250317 0.132631 0.841519 -0.454986 -1.284177 0.458255 -0.612981 2.811053 0.004060 0.167267 1.268817 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.149872 -0.005738 0.087923 0.249639 0.121800 -0.249158 0.115103 0.170413 -0.117560 -0.546903 -0.277823 -0.103259 -0.027377 -0.166342 0.168311 0.068195 0.006279 0.234500 -0.458292 0.209157 0.226046 0.168744 0.028413 -0.201860 0.070148 -0.143739 -0.272591 0.161050 0.017871 0.347293 -0.258131 0.009032 0.256215 0.088329 0.094267 0.298434 0.211323 -0.015952 0.164021 0.149891 0.525795 0.108061 -0.060090 0.118240 0.238970 0.343405 -0.073218 0.202976 -0.213752 -0.168265 0.128697 -0.317926 -0.157906 -0.002632 -0.274021 0.235484 0.413459 0.346931 -0.212265 0.238866 -0.200432 0.038864 0.103838 -0.184217 0.350704 0.254916 0.066298 0.173860 0.561822 -0.169648 -0.065847 0.134881 0.267685 -0.085724 0.094061 -0.042932 -0.068603 -0.823819 -0.079996 -0.532930 -0.046372 0.025689 0.521047 -0.335031 0.123421 0.435968 0.070209 0.281678 -0.197135 -0.087024 -0.293440 0.097223 -0.075920 0.508923 0.056796 0.037369 -0.122874 0.162821 0.186650 0.246712 -0.036288 -0.148564 -0.490482 -0.794852 -0.314059 -0.085237 -0.060778 -0.085577 -0.514798 -0.115944 0.530316 0.402864 -0.542375 0.019035 0.256314 0.216673 -0.112573 -0.158382 -0.344386 0.047672 -0.085593 0.038551 0.066162 -0.200245 -0.081220 -0.297996 0.046555 0.003856 0.126146 -0.144325 -0.233307 -0.133828 -0.045434 -0.090011 -0.041173 -0.013910 0.016601 -0.283052 0.178474 -0.298229 0.262787 -0.435114 0.092391 -0.152065 -0.359848 -0.015629 0.544184 0.184231 0.098934 0.058604 -0.276366 -0.182687 -0.342669 -0.582921 0.149248 -0.088590 0.290517 -0.015804 -0.038158 -0.069164 -0.066875 -0.132348 0.098393 -0.232303 0.012256 -0.115607 0.394881 -0.133544 -0.110348 -0.433603 -0.014871 0.436997 -0.040378 -0.000258 -0.202848 0.008366 -0.321147 -0.358778 0.261226 -0.070614 0.066481 -0.159567 0.070897 -0.415719 0.266145 -0.218095 0.116483 -0.041238 -0.277733 -0.368820 -0.016386 -0.090635 -0.154129 -0.018728 -0.218568 0.016725 0.034784 -0.011224 0.072910 -0.002070 0.047713 -0.403554 -0.465897 -0.135695 0.009925 0.222050 0.217416 0.135776 -0.292932 -0.077856 -0.328130 0.399440 -0.258040 -0.013985 -0.029567 -0.165831 0.446165 -0.157978 -0.189700 -0.318504 0.153004 0.024881 -0.324337 0.506376 0.284759 -0.287546 -0.176156 -0.283392 0.079662 0.272321 0.521980 -0.200171 -0.027203 0.138483 -0.080940 -0.067727 -0.197240 0.276711 -0.192594 0.316789 -0.306480 -0.205674 0.098819 0.402500 -0.067507 0.208559 0.064296 0.158181 -0.045999 0.328971 0.126358 -0.083590 -0.218943 -0.413958 0.146433 0.060343 0.093353 0.083398 -0.210023 -0.212667 0.033175 0.135967 0.411470 0.389465 0.012247 0.282393 -0.292991 -0.353144 0.026042 0.095470 0.074320 -0.326199 0.194229 -0.167462 0.000000 0.093167 0.100095 0.145287 -0.238146 -0.405038 -0.086139 0.281861 0.171390 -0.172499 0.384213 0.038162 -0.222159 0.024777 -0.021122 0.196148 0.058113 -0.007955 -0.150005 -0.192872 0.056952 -0.156508 0.436783 -0.112060 -0.018155 0.225414 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = 1.039347 -0.058716 -0.180468 1.410626 0.205821 -0.563626 0.122872 0.721748 -0.195333 -2.702510 -1.862009 1.039719 0.053226 0.000438 0.626946 0.532452 0.236503 0.328232 -2.889440 0.850143 0.949024 0.460853 0.064897 -0.299172 0.430279 -0.712881 0.043128 0.268220 0.347760 1.509749 -1.020782 0.597035 1.257711 -0.004673 0.798834 1.168513 -0.286338 -0.078565 -0.000853 -0.207976 2.265162 0.959137 0.115474 0.985738 0.590471 1.549707 -0.175993 1.500060 0.441642 -1.078186 0.809061 -0.476344 -1.017587 0.134219 -1.177741 0.906176 1.220390 0.655260 -0.877641 0.664932 -0.415252 0.056804 0.356390 -0.657102 1.670621 0.760380 0.968786 0.893543 1.806588 -0.798975 -0.166312 0.814025 0.939827 0.277673 0.777917 -1.054173 -0.963834 -1.188585 -0.233709 -2.325159 -0.509831 -0.294533 2.687063 -1.542589 0.270013 0.637815 -0.118974 1.407166 -0.650052 -0.073681 -1.251611 0.154843 -0.398419 1.652582 0.062305 0.139632 -0.119918 0.536131 0.442191 1.067950 -0.145379 -0.986202 -1.241277 -2.730979 -0.668658 -0.526451 0.606453 0.478521 -1.967506 -0.130456 0.128966 1.803845 -2.182407 -0.095552 1.025244 0.699078 0.306420 0.213063 -1.149199 -0.231728 0.130780 0.495797 0.777187 -0.830369 -0.036831 -0.876448 0.180610 0.072735 0.722309 -0.112026 -1.263883 -1.043633 -0.142134 -0.009297 -0.174647 0.233419 0.704052 -0.839017 1.072074 -0.715934 1.114096 -1.959006 -0.200223 -0.885140 -1.120877 -0.359573 2.137367 1.360376 1.160744 -0.061120 -0.553536 -0.655289 -1.841266 -1.818660 0.447731 -0.187834 0.861930 0.415605 -0.043601 0.535128 -0.594770 -0.104213 0.177289 -0.815431 -0.166800 -0.462421 1.113243 -0.291959 -0.310139 -1.426700 -0.247671 0.475365 -0.487781 0.723163 -0.462251 -1.781524 -1.973339 -1.299010 1.268866 -0.529370 0.429691 -0.706510 0.193052 -1.007197 0.243045 -1.356008 0.099252 -0.098802 -1.262185 -1.574936 -0.049083 -0.327730 -0.320833 0.014354 -1.024701 -0.117199 1.213829 0.973134 0.542778 0.325192 0.002730 -1.798280 -1.449146 -0.102748 -0.724809 1.422035 0.930735 -0.259222 -1.476564 -0.531288 -1.486677 1.359512 -1.105977 0.218265 -0.498058 -0.469776 1.520316 -0.823018 -0.048521 -1.402610 0.496262 0.451634 -3.145557 1.653911 1.217185 -0.871430 -0.305063 -0.649065 0.439261 0.985141 1.531403 -0.733741 -0.571431 0.207997 -0.569400 -0.038132 -0.698621 1.175190 -0.913476 0.553772 -1.179530 -0.736705 0.881247 0.913846 0.031180 0.538235 0.587794 0.416902 0.734342 1.347979 0.900954 -0.361714 -1.392339 -3.236339 0.824301 1.136342 -0.072026 0.310625 -0.833057 -1.138357 0.137188 -0.334986 1.549422 0.686329 0.099687 1.244670 -1.461873 -1.483474 -0.526168 0.056963 0.058758 -0.470433 0.372260 -0.659343 0.261672 0.404642 0.118850 0.157216 -0.955423 -1.005282 0.037175 1.387018 0.763089 0.217178 1.525142 0.545030 -0.971121 -0.080848 0.146429 0.132841 -0.225248 -1.188839 -0.715261 -0.466481 0.172879 -0.717021 0.846375 -0.194146 0.163267 0.341931 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.716145 0.083252 0.363763 0.539588 0.334038 -0.600664 0.487031 0.892996 -0.127031 -1.606732 -1.083077 -0.016455 -0.056591 -0.406922 0.406674 0.005996 0.013341 0.657287 -1.579028 0.419270 0.676093 0.622285 0.161364 -0.644427 0.197664 -0.249710 -1.075656 0.439633 0.145614 1.038114 -0.547013 -0.222073 0.766001 0.173292 -0.055280 0.946569 0.585312 0.024375 0.590943 0.081992 1.412184 0.491673 -0.195921 0.696628 0.602078 0.959728 -0.503640 1.154154 -0.672146 -0.548236 0.587143 -1.309700 -0.756910 -0.060344 -0.563810 0.749566 1.611672 1.057456 -0.461509 0.811419 -0.353152 0.050044 0.273341 -0.786741 0.611896 1.212438 0.006326 0.399622 1.666681 -0.651830 -0.290439 0.482174 0.676729 -0.058539 0.011769 -0.617069 -0.129393 -1.997622 -0.039325 -1.717643 -0.296036 -0.266150 1.924893 -1.007971 0.472521 1.247280 0.202488 0.624893 -0.470999 -0.200459 -0.668713 0.294599 -0.306765 1.643657 -0.058706 0.203821 -0.280892 0.286944 0.615707 0.783206 -0.130073 -0.218625 -1.692407 -2.118145 -0.646941 -0.177730 -0.106435 -0.036626 -1.299504 -0.423571 1.274886 0.707749 -1.523680 -0.151975 0.874821 0.758006 -0.243845 0.451938 -1.208956 0.019501 -0.162484 -0.128600 0.161643 -0.720170 -0.289774 -0.774418 -0.176812 -0.011722 0.167917 -0.387258 -1.088619 -0.461165 -0.254658 -0.346525 0.000464 -0.119179 -0.013404 -0.769935 0.504884 -0.859567 0.645761 -1.447121 -0.020809 -0.248864 -1.109896 -0.097171 1.567724 0.455325 0.405384 0.211150 -0.592506 -0.805607 -0.761509 -1.327420 0.417229 -0.172749 1.145162 -0.137711 -0.075314 -0.222546 -0.262589 -0.448194 -0.107213 -0.450227 0.169587 -0.306142 1.835119 -0.557147 -0.223800 -1.259372 0.089070 1.134967 -0.333102 -0.096970 -0.515197 -0.045556 -0.839221 -0.998340 0.794570 -0.158611 0.123395 -0.409668 0.295701 -1.019702 0.474140 -0.549224 0.345493 0.071013 -1.046589 -1.096718 0.187486 -0.213288 -0.404061 0.196883 -0.594434 -0.101215 0.363775 0.619368 0.216864 0.067404 0.137149 -1.406719 -1.394597 -0.617264 -0.014251 0.811925 0.754756 0.340306 -0.660960 -0.181761 -0.956399 1.129848 -0.743315 -0.090611 -0.420765 -0.108600 1.321947 -0.400979 -0.382364 -1.445956 0.362642 0.258122 -1.144006 1.429275 0.557311 -0.626890 -0.570687 -0.886468 0.001464 0.853587 1.400126 -0.595220 -0.479471 0.543826 -0.502121 -0.190747 -0.714960 0.764958 -0.477882 0.956884 -0.805176 -0.490752 0.274704 1.084094 -0.264660 0.825662 0.437012 0.594341 0.148683 0.983555 0.376064 -0.612756 -0.623252 -1.583861 0.590241 0.598553 0.175861 0.019674 -0.757945 -0.808831 0.321586 0.636341 1.058305 1.280159 0.348807 0.793879 -0.744325 -0.952053 0.237478 0.405966 0.452134 -0.847614 0.192338 -0.372958 0.171848 0.462488 0.063867 0.672881 -0.907305 -1.459357 -0.336047 1.048456 0.309081 -0.351419 1.152817 0.061720 -0.619775 0.242535 -0.192829 0.738519 -0.019867 0.109953 -0.160591 -0.508298 0.091847 -0.417531 1.314752 -0.045143 -0.295484 0.692395 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.247267 -0.055516 0.272526 0.181054 0.336602 -0.065214 0.092253 0.160881 -0.146674 -0.602555 -0.424561 -0.192336 -0.118623 -0.122162 0.259191 0.045444 0.274240 0.079734 -0.452103 0.100198 0.135359 0.022018 0.007890 -0.032246 0.091524 -0.250898 -0.292381 0.226605 0.003397 0.278845 -0.286300 0.054067 0.215367 0.160371 0.242335 0.269565 0.129790 -0.147469 0.195080 0.025390 0.721357 -0.041822 0.069694 0.227929 0.375600 0.350792 -0.259960 0.432625 0.006637 -0.098105 0.375592 -0.564135 -0.129722 0.143444 -0.487253 0.244487 0.410970 0.159145 -0.313667 0.225558 -0.164846 0.130393 0.020827 -0.292352 0.393823 0.253885 0.121110 0.123725 0.499406 -0.205700 -0.145785 0.263162 0.335010 0.155756 -0.215842 -0.139451 0.222366 -0.814472 -0.005458 -0.406322 0.108782 -0.206269 0.610088 -0.169116 -0.013767 0.445305 -0.125566 0.220068 -0.123296 -0.063060 -0.391158 0.169991 0.031183 0.239026 -0.037905 0.041595 -0.015823 0.056293 0.074655 0.348017 -0.106318 -0.126096 -0.636326 -0.883911 -0.432789 -0.042800 0.074837 -0.231366 -0.452591 0.035047 0.481603 0.252870 -0.342748 -0.080073 0.147979 0.216076 -0.351558 0.166444 -0.457563 -0.308443 -0.009816 0.208590 -0.007150 -0.047217 0.000748 -0.647583 0.039839 -0.006305 0.270483 -0.215971 -0.111841 -0.151745 -0.059705 -0.062675 -0.134806 -0.120615 -0.004559 -0.191735 0.224297 -0.136476 0.244708 -0.457734 0.006524 -0.385722 -0.310983 -0.003860 0.763886 0.292613 0.250284 0.390309 -0.209755 -0.183425 -0.309745 -0.434220 0.020824 -0.163004 0.381071 -0.013818 -0.025474 0.006106 -0.069643 -0.259013 -0.020074 -0.258246 -0.041834 -0.305330 0.250772 -0.189136 -0.129006 -0.482894 0.149392 0.563892 -0.337827 -0.054376 -0.216513 0.038371 -0.216887 -0.432281 0.202704 -0.131213 0.163938 -0.018586 0.199412 -0.398333 0.239894 -0.212510 -0.002179 -0.123622 -0.450771 -0.337155 0.030759 -0.136111 -0.135611 0.061091 -0.232845 0.103731 0.131740 0.245305 0.131837 0.097178 -0.117419 -0.451538 -0.578353 -0.297551 0.066105 0.249203 0.294205 0.014291 -0.236253 -0.189430 -0.299677 0.409941 -0.280994 -0.035989 0.079038 -0.246548 0.252826 -0.168066 -0.111947 -0.296694 0.134932 0.047564 -0.679196 0.397145 0.228803 -0.439463 -0.367754 -0.624967 0.152824 0.132438 0.621956 -0.049086 0.195130 0.128090 0.042283 -0.074354 -0.269383 0.320725 0.032804 0.276191 -0.511880 -0.414902 0.205789 0.429360 -0.091206 0.190476 0.185814 0.445041 0.121220 0.496534 0.054987 -0.091665 -0.155720 -0.666945 0.051266 0.494901 0.066563 0.220653 -0.289502 -0.317428 -0.140980 0.050341 0.442194 0.337735 0.287022 0.335226 -0.029415 -0.298642 0.048022 0.046575 0.044064 -0.409675 0.158458 -0.231419 -0.120489 -0.040938 0.136029 0.188264 -0.227658 -0.647186 -0.138515 0.283998 0.228831 -0.031537 0.332071 0.125097 -0.232402 0.036141 0.055642 0.308126 0.279661 -0.111737 -0.233552 -0.266574 -0.092060 -0.131849 0.337619 0.008989 0.146262 0.172969 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.402113 -0.589816 0.468762 0.459224 0.409942 -0.540969 0.291501 0.376389 -0.019967 -0.864628 -0.213195 -0.278310 -0.148387 -0.408288 0.215156 -0.041933 -0.010857 0.089168 -1.220470 0.484588 0.288521 0.283097 0.146858 -0.510476 0.172474 -0.366710 0.074388 0.688472 -0.100320 0.488909 -0.428910 -0.204214 0.373284 0.266128 0.294500 0.615531 0.499669 -0.058985 0.126032 0.435187 1.005833 0.370160 -0.385867 0.157067 0.617375 0.612182 0.305957 0.419221 0.055210 -0.181311 0.221096 -0.469788 -0.388463 -0.327174 -0.624122 0.314830 0.940595 0.614992 -0.450158 0.414389 -0.376524 -0.050098 0.189382 0.079645 0.685274 0.223462 0.328278 0.146916 1.141836 -0.398545 -0.312294 0.446220 0.785884 0.030640 0.294311 -0.398170 -0.490213 -1.935003 0.036099 -0.817399 -0.271356 -0.028808 0.114288 -0.379259 0.194518 0.756959 -0.014858 0.420303 -0.430094 -0.228387 -0.561470 0.234866 0.098879 1.335837 -0.113415 0.117649 0.133219 0.350322 0.468209 0.684058 0.308730 -0.385788 -0.581634 -1.493717 -0.365385 -0.227340 -0.148092 -0.361892 -0.791113 -0.100320 0.782863 0.272424 -0.720407 -0.027763 0.527260 0.393295 0.222898 -0.925751 -0.112350 0.063081 -0.057723 0.085799 0.178107 -0.549005 -0.192130 -0.408839 0.487834 0.225149 0.135123 -0.339980 -0.212469 -0.133337 0.051545 0.134090 -0.046653 -0.199067 -0.178711 -0.713335 0.198123 -0.654774 0.605704 -0.712883 0.269101 -0.301569 -0.227414 0.037968 0.960066 -0.053001 0.043050 0.182246 -0.528893 -0.112973 -0.380751 -1.374247 0.180861 -0.086293 0.341712 -0.156695 -0.088099 -0.134399 -0.033347 -0.398518 0.072800 -0.351684 0.020731 -0.240740 -0.055756 -0.120547 -0.095099 -0.419227 0.119253 0.935717 0.214798 0.149980 -0.349779 -0.601288 -0.404993 -0.756621 0.390336 -0.073001 -0.165603 -0.257569 -0.014243 -0.922865 0.716431 -0.316891 0.414472 -0.170436 -0.622282 -0.565888 -0.026684 -0.276310 0.351173 -0.030630 -0.385629 -0.081271 -0.525270 0.111370 0.136812 0.049992 0.104664 -0.947126 -0.938355 -0.253026 0.330439 0.811925 -0.303553 0.274259 -0.181713 -0.116363 -0.445460 0.680847 -0.459347 -0.100297 0.032013 -0.572541 0.887791 -0.050620 -0.309193 -0.551381 0.340434 0.090563 0.414352 1.320305 0.698356 -0.575873 -0.559306 -0.335270 -0.066559 0.523144 1.023147 -0.463736 -0.232534 0.267220 0.098752 -0.203111 -0.260557 0.467794 -0.208312 0.658173 -0.679270 -0.673692 -0.072617 0.829866 -0.139314 0.288028 -0.029524 0.213563 -0.630013 0.773290 0.033930 0.187993 -0.456978 -0.793313 0.242850 0.203918 0.161172 0.165394 -0.595884 -0.557032 0.063889 0.658388 0.830742 1.264300 -0.041918 0.478700 -0.517558 -0.623394 -0.115322 -0.034070 0.039627 -0.509808 0.320919 -0.384728 -0.019871 -0.015003 0.077643 0.103486 -0.187788 -0.433557 -0.207446 0.221434 0.347949 -0.502748 0.655617 0.080660 -0.309305 -0.112553 0.084577 0.179524 0.397098 0.385411 -0.246252 -0.495155 0.142188 -0.068212 0.741420 -0.046445 0.151953 0.224131 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.548975 -0.257109 0.260181 0.390046 0.529646 -0.401546 0.181314 0.295274 0.091151 -0.917807 -0.425178 0.230191 -0.120695 -0.369754 0.177460 0.112768 0.246992 0.336192 -0.520996 0.404948 0.138390 0.292900 -0.059996 -0.363136 0.159522 -0.220048 -0.139985 0.218610 0.090168 0.468472 -0.483055 -0.107169 0.371791 0.119504 0.230016 0.513608 0.517579 -0.140512 0.168466 -0.001507 1.083972 0.100401 0.159779 0.603585 0.597368 0.529283 -0.156250 1.018323 0.308700 -0.173003 0.439440 -0.593001 -0.330459 0.019153 -0.720439 0.615290 0.662130 0.247754 -0.491951 0.341911 0.037853 0.114691 0.153665 -0.310817 0.485992 0.558279 0.002818 0.256664 1.156877 -0.291104 -0.250207 0.437444 0.857959 0.330235 0.406581 -0.464814 -0.121932 -0.908930 -0.146035 -0.405355 0.225125 -0.369531 0.991026 -0.531451 0.212240 0.734076 0.050161 0.399074 -0.166846 -0.182386 -0.543025 0.331785 -0.035889 0.824731 -0.130550 0.236699 -0.277384 0.080175 0.099523 0.511747 0.079834 -0.309250 -0.719930 -1.320847 -0.603729 -0.202300 -0.144759 -0.341516 -0.880100 -0.010383 0.420692 0.534582 -0.800488 -0.141287 0.358739 0.203128 0.100487 0.043352 -0.409023 -0.223677 0.002373 0.109838 -0.284587 -0.284722 -0.292357 -0.656131 -0.001170 0.033876 0.258177 -0.383930 -0.277514 -0.184435 -0.239642 0.211981 -0.102769 -0.208987 -0.040415 -0.820686 0.270697 -0.281407 0.283450 -0.694175 -0.328904 -0.409833 -0.530598 -0.064102 1.345425 -0.124610 0.742463 0.308414 -0.352174 -0.574294 -0.505918 -0.885317 0.206175 -0.496385 0.407243 0.127745 0.039889 -0.181676 -0.092701 -0.516783 0.054846 -0.443266 -0.011256 -0.358798 0.378903 -0.525793 -0.047205 -0.826709 0.043680 0.905451 -0.034624 -0.114057 -0.318223 -0.510407 -0.380009 -0.659455 0.362291 -0.166369 0.285355 -0.132772 0.170449 -0.532196 0.271329 -0.348380 0.179252 -0.189570 -0.627334 -0.584867 0.038685 -0.242579 0.006729 0.027435 -0.440077 0.216170 -0.128608 0.443074 0.048508 0.140556 -0.140775 -1.142556 -0.990753 -0.392625 0.216281 0.611185 0.205364 0.249484 -0.340068 -0.263718 -0.574142 0.523306 -1.032184 -0.084084 0.221876 -0.215035 0.664009 -0.283341 -0.176964 -0.781520 0.288768 0.024962 -0.677990 0.855657 0.372212 -0.656925 -0.444082 -0.659473 0.165275 0.385757 1.054748 -0.303149 -0.047903 0.395587 -0.024051 -0.190875 -0.532301 0.497906 -0.142755 0.754248 -0.718520 -0.561682 0.089175 0.770029 -0.235885 0.116667 0.161151 0.316861 -0.105104 0.794558 0.216875 0.097371 -0.522400 -1.102001 0.114499 0.461159 0.174918 0.378338 -0.603477 -0.403649 0.097279 0.218377 0.770987 0.370884 0.585427 0.486631 -0.524499 -0.594835 0.348136 -0.004807 0.220222 -0.516713 0.388850 -0.460385 -0.202810 -0.092336 0.226870 0.030313 -0.257453 -0.572579 -0.096749 0.468902 0.348322 -0.165837 0.596587 0.193544 -0.352547 0.226523 -0.040429 0.502408 0.075167 -0.148555 -0.157398 -0.398670 -0.079581 -0.234862 0.913400 -0.131630 0.160463 0.138033 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 0.465891 0.404705 0.075894 1.235327 0.073516 -1.471268 0.378088 0.923602 -0.948380 -1.689361 -0.633313 -0.212564 -0.231273 -0.443789 0.295863 0.161557 -0.580239 0.148784 -2.227688 0.961924 0.863291 0.584482 -0.050539 -1.095893 0.539546 0.267882 -0.850324 0.907298 -0.098436 1.052735 -0.901136 -0.057427 0.647254 0.501473 0.330211 0.562449 0.353124 0.550196 0.761532 0.369065 1.070470 0.811815 -1.106373 0.083857 0.776312 1.060282 0.020069 0.163971 -2.421485 -0.436019 -0.199684 -0.424444 -0.660337 -0.252697 -0.276096 0.688508 1.995232 1.830845 -0.418928 0.696545 -0.964656 -0.009231 0.539153 -0.079763 1.460541 1.212303 0.509601 0.710271 1.983176 -0.553761 -0.112595 0.258479 1.149878 -0.833384 -0.520225 -0.215586 -0.704085 -2.586800 -0.084712 -2.909538 -0.783271 0.511524 1.579475 -1.029378 0.575031 0.561586 0.354598 0.901896 -1.509152 0.102033 -0.761833 0.077320 -0.861402 2.893250 -0.075954 0.218206 0.009834 1.060886 1.213716 1.017065 -0.610801 -0.056752 -1.083264 -2.137937 -0.360394 0.368448 -0.426326 -0.036111 -1.701871 -0.795991 1.670123 1.128071 -1.895141 -0.411479 0.823982 0.716288 0.052993 -0.220483 -1.230640 0.916366 -0.842606 -0.401545 0.567208 -0.534625 -0.087090 -0.498515 -0.210632 0.104694 0.437022 0.434799 -2.375338 -0.025538 0.036211 -1.376110 0.014625 0.114861 -0.367996 -0.499705 0.411758 -1.429929 1.002427 -1.931346 0.467342 -0.094429 -1.610304 0.432239 0.008513 1.166920 -0.667396 -0.210094 -0.359850 -0.617883 -1.348373 -2.003791 0.731289 0.506618 0.784559 -0.561774 -0.174888 -0.202794 -0.444057 -0.678671 1.134325 -0.789701 -0.268410 -1.076554 2.883714 0.106016 -0.140069 -0.792683 -0.157085 1.193715 -0.178926 0.249058 -0.713713 -0.180046 -1.810194 -0.953914 0.748032 0.043326 -0.529415 -0.667489 0.406013 -1.973935 1.154721 -0.702990 0.912869 0.059956 -0.493360 -1.138289 0.116781 -0.073886 -0.417821 -0.459617 -0.297361 -0.343979 0.354600 -0.239690 0.146659 0.141249 0.728649 -0.802495 -1.524455 0.236440 0.539134 0.605574 0.534354 0.410056 -0.803210 -0.146880 -1.331360 1.870971 0.192534 0.058317 -0.454210 0.213518 2.056911 -0.418492 -0.676613 -0.904163 0.531662 0.263350 -0.267026 1.915743 0.937056 -0.731077 -0.538976 -0.774295 0.247930 1.141725 1.594778 -1.131370 -0.779091 0.394860 -0.207865 -0.406225 -0.271524 0.846883 -0.789536 1.103090 -0.689922 -0.462283 0.042869 0.893442 -0.012578 1.046331 -0.463853 -0.412793 -0.475359 1.088020 0.521802 -0.485953 -0.693344 -0.942180 0.249444 -1.048330 0.282434 -0.594265 -0.416089 -1.196937 0.000631 0.675689 1.383788 1.544118 -1.385108 0.777216 -1.520564 -1.005173 -0.161983 0.924320 -0.031028 -1.052922 0.340852 -0.299972 0.175441 1.155150 0.223233 0.640974 -1.175824 -1.415003 -0.818726 1.022692 -0.239619 -1.147577 1.256241 -0.053032 -0.557106 -0.315592 0.333140 0.452755 -0.031329 -0.282726 -0.551989 -0.822563 0.495012 -0.617447 1.571800 0.394315 -0.309222 0.968539 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.151809 -0.223507 0.277463 0.207095 0.330008 -0.141443 0.096808 0.063674 0.122023 -0.475971 -0.094504 0.033650 -0.114362 -0.113393 0.065519 -0.003892 0.183873 0.274871 -0.149835 0.157302 0.062146 0.234418 0.138762 -0.217527 0.103294 -0.087164 0.076724 0.098694 0.133364 0.250399 -0.312329 -0.109753 0.205047 0.097420 0.113009 0.268653 0.509604 -0.068854 -0.076029 -0.035563 0.579827 -0.050353 0.103802 0.344913 0.280003 0.280058 0.124824 0.352837 0.439401 -0.105325 0.073463 -0.408450 -0.101474 -0.078390 -0.405408 0.368423 0.236625 0.257215 -0.302682 0.158783 0.176947 0.066787 0.061895 -0.220410 0.135725 0.154671 -0.095474 0.126622 0.573455 -0.221284 -0.169243 0.198651 0.489271 0.261015 0.299883 -0.253881 -0.033269 -0.717423 -0.162672 -0.095854 0.151934 -0.150815 0.267888 -0.290320 0.208476 0.488410 -0.138132 0.148283 0.023202 -0.135395 -0.354601 0.175698 0.147742 0.290622 -0.002619 -0.019761 -0.090087 0.042553 0.053138 0.271663 0.230455 -0.186440 -0.268674 -0.691449 -0.294034 -0.148526 -0.058306 -0.202600 -0.353324 0.002520 0.235301 0.309297 -0.405373 -0.071392 0.177616 0.130538 -0.108660 -0.406597 0.036435 -0.079105 0.006977 0.027165 -0.165123 -0.288196 -0.180652 -0.191999 -0.037316 0.006882 0.172518 -0.235468 0.202255 -0.188059 -0.187461 0.312024 -0.088460 -0.182988 -0.059036 -0.445683 0.148502 -0.143947 0.163456 -0.152861 -0.114502 -0.107750 -0.113600 -0.089403 0.880896 -0.360149 0.376308 0.149812 -0.296730 -0.294289 -0.108116 -0.469057 0.221418 -0.197893 0.188486 0.241901 -0.005786 -0.057532 -0.045208 -0.333275 -0.011983 -0.223872 -0.031775 -0.071093 -0.293096 -0.347102 0.005467 -0.506261 0.133718 0.615072 0.019364 -0.112219 -0.229123 -0.169445 -0.062176 -0.368584 0.191922 -0.128468 0.181813 0.006564 0.055321 -0.208642 0.213204 -0.220764 0.107518 -0.114089 -0.382926 -0.330756 0.037368 -0.223751 0.115132 0.159915 -0.247291 0.172863 -0.377266 0.185253 -0.027912 0.018729 -0.011895 -0.662209 -0.503432 -0.280777 0.109846 0.248714 -0.146926 0.176673 -0.249773 -0.195783 -0.124441 0.241930 -0.567439 -0.037886 0.141411 -0.114617 0.292372 -0.086334 -0.006085 -0.371411 0.191233 0.145015 -0.203320 0.392050 0.205386 -0.331220 -0.235860 -0.265897 0.054189 0.198514 0.574939 -0.205569 -0.056462 0.267084 -0.015834 -0.078639 -0.387103 0.226197 -0.001799 0.383427 -0.406944 -0.333475 -0.063822 0.394543 -0.113412 0.050459 0.242764 0.208451 -0.241406 0.483106 0.100508 0.226156 -0.281929 -0.387703 0.109316 0.460377 0.257220 0.306492 -0.387681 -0.093022 0.132596 0.205374 0.368089 0.311578 0.381164 0.293271 -0.260931 -0.276274 0.292642 -0.138560 0.175390 -0.276329 0.273656 -0.279372 -0.129200 -0.152027 0.079278 -0.068681 0.078167 -0.164577 -0.007961 0.185138 0.236007 0.001954 0.309050 0.063687 -0.280118 0.231842 -0.030464 0.264668 0.003255 0.018350 -0.049285 -0.138202 -0.041221 -0.122315 0.449608 -0.215907 0.011480 -0.023271 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.794350 -0.078485 0.092868 0.737795 0.427576 -0.647923 0.173015 0.540609 -0.146047 -1.573425 -0.913867 0.920760 -0.095599 -0.347219 0.241127 0.212716 0.193750 0.338597 -1.541968 0.694114 0.393299 0.350797 -0.149105 -0.474037 0.251953 -0.396988 0.028913 0.395701 0.157796 0.845435 -0.739761 0.021762 0.668969 0.123290 0.527435 0.813043 0.256140 -0.156257 0.107767 -0.134534 1.587297 0.517918 0.092505 0.796811 0.770176 0.930914 -0.128276 1.089906 0.436972 -0.492545 0.383480 -0.180977 -0.696063 -0.014250 -0.919468 0.724950 0.779267 0.354144 -0.703541 0.491768 -0.148151 -0.004315 0.242045 -0.372892 0.959522 0.588665 0.340507 0.456015 1.522180 -0.487146 -0.326033 0.673749 1.072434 0.358346 0.597400 -0.535821 -0.585159 -1.065903 -0.138274 -1.354170 -0.167579 -0.292426 1.742901 -0.917705 0.270450 0.706153 0.092709 0.769447 -0.440686 -0.232768 -0.832425 0.256664 -0.254521 1.371258 -0.010649 0.247733 -0.168830 0.285295 0.331086 0.875637 -0.094423 -0.609088 -0.846598 -1.974651 -0.555995 -0.343982 0.003713 -0.135852 -1.269445 -0.118356 0.541476 1.334336 -1.307081 -0.181389 0.707296 0.257556 0.146594 0.036029 -0.710729 -0.104004 -0.027784 0.144841 0.142930 -0.444989 -0.325454 -0.436391 0.114069 -0.021044 0.434959 -0.236132 -0.896980 -0.505655 -0.093991 0.083538 -0.156963 -0.185596 0.110556 -0.903049 0.539083 -0.454539 0.610251 -1.145090 -0.163832 -0.564852 -0.688374 -0.126818 1.398187 0.543645 0.852846 0.131722 -0.258335 -0.614205 -1.000542 -1.353651 0.446923 -0.405298 0.517777 0.078675 0.021660 0.036645 -0.242996 -0.485582 0.177350 -0.640192 -0.038637 -0.440909 0.901827 -0.434637 -0.092101 -1.026729 -0.107693 0.745267 -0.024907 0.112158 -0.473203 -1.236776 -0.950121 -0.956978 0.694020 -0.255502 0.218562 -0.321822 0.095119 -0.566688 0.301362 -0.695399 0.248295 -0.264910 -0.816437 -0.937166 -0.030671 -0.288657 -0.238184 -0.100062 -0.678369 0.067078 0.321216 0.447358 0.198797 0.141647 -0.049198 -1.398987 -1.148363 -0.210506 0.004269 0.875593 0.602988 0.155540 -0.931137 -0.318265 -1.006902 0.861405 -1.208790 0.019825 -0.032295 -0.467149 1.174800 -0.457773 -0.184880 -0.898173 0.462874 0.200197 -1.572907 1.369373 0.827581 -0.768330 -0.453436 -0.549960 0.149873 0.767856 1.344881 -0.608891 -0.292949 0.366635 -0.258830 -0.170037 -0.406278 0.832126 -0.423224 0.864045 -0.937352 -0.703488 0.316880 0.899141 -0.086561 0.299365 0.142019 0.303242 0.176481 1.066911 0.454295 0.023984 -0.901026 -1.925495 0.439438 0.445806 0.069334 0.417240 -0.619537 -0.819643 0.073881 -0.073813 1.123968 0.157707 0.182502 0.734940 -0.959629 -0.979725 0.019665 0.003080 0.147087 -0.510331 0.617825 -0.555304 -0.073347 0.037906 0.165236 0.013113 -0.393422 -0.687725 -0.073119 0.672849 0.702429 -0.155864 0.971560 0.276509 -0.659492 0.093508 -0.035817 0.445634 -0.060416 -0.621911 -0.379000 -0.559461 0.070989 -0.346893 0.987289 -0.020407 0.219622 0.251911 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = 2.498555 -0.221411 0.740300 1.235341 1.008025 -2.825026 1.133123 2.656626 0.080460 -3.609354 -1.921914 0.177104 -0.117715 -2.129404 0.764017 0.379277 -0.287806 1.836409 -4.546424 2.268908 1.636794 2.135682 -0.072027 -2.639911 0.778593 -0.377077 -2.416610 0.863240 0.105596 2.358667 -1.855046 -0.962005 1.693740 0.319599 0.392922 2.424631 1.379110 -0.121482 2.180220 0.841152 3.725230 1.970711 -0.627612 1.674706 2.324258 2.213884 -0.851953 2.955799 -1.857189 -1.072714 0.967896 -2.517689 -2.101911 -0.101917 -1.563935 2.228185 4.387431 2.587006 -1.466003 1.995157 -0.639656 0.056287 1.051917 -1.245739 2.011414 2.978920 -0.166381 0.952803 5.270640 -0.774683 -0.433953 0.871924 2.873154 -0.527091 1.466988 -1.940674 -1.109003 -5.370331 -0.156423 -4.509754 -0.011482 -0.556097 4.273005 -2.840018 2.152509 3.340742 1.403024 1.880727 -1.493061 -1.208588 -1.447051 1.078501 -1.307898 5.595315 -0.887867 1.218600 -1.059198 1.196104 1.429226 1.738923 0.026031 -0.885201 -3.586039 -5.664584 -1.593110 -0.548985 -1.257736 -0.736319 -3.865754 -0.907885 2.983056 1.917078 -4.287851 -0.151068 2.091449 1.183789 0.183731 -0.120789 -2.396416 0.347819 -1.270816 -0.155786 -0.735282 -2.049020 -1.486738 -1.987883 -0.263611 0.614466 0.366827 -1.253455 -2.798977 -0.357360 -0.681417 -0.581677 -0.241486 -0.060822 -0.310040 -3.346566 0.934051 -2.715973 1.453251 -3.596195 -0.381512 -0.909316 -2.721637 0.023684 3.365407 0.018007 0.594118 0.353548 -1.257733 -2.156412 -2.314239 -3.757726 1.283320 -1.455728 2.377040 -0.655309 0.087893 -1.557565 -0.286146 -1.782785 -0.061910 -1.610608 0.514614 -1.463372 5.036369 -1.616617 -0.390672 -2.792049 -0.306796 3.811784 0.237567 -0.659394 -1.442708 -0.562151 -2.273694 -2.538795 1.877919 -0.110031 0.407061 -1.440957 0.947567 -2.698613 1.653290 -1.324876 1.445419 -0.407816 -1.753027 -2.526652 -0.093409 -0.578373 -0.109113 -0.607614 -1.400213 0.086646 0.109790 1.443121 -0.017107 0.078305 0.490453 -4.407706 -3.930289 -1.205175 0.983802 2.501054 1.120296 1.341739 -1.414554 -0.081637 -2.574658 2.779174 -2.651268 -0.423384 -0.481433 -0.616496 4.097450 -0.842912 -1.302923 -3.952666 1.046760 -0.282902 -1.006494 4.645558 1.436990 -2.123617 -1.279480 -2.371463 0.401434 2.356951 3.921208 -1.514158 -1.244501 1.501822 -1.307120 -0.861118 -2.046792 2.100509 -1.654354 3.667220 -2.048743 -1.245456 0.425640 3.112823 -0.918144 1.731605 -0.068195 0.574010 -0.668920 2.580402 0.872116 -0.654955 -2.272784 -3.591646 0.852993 0.495938 1.074589 -0.227819 -1.645370 -2.184319 0.547655 2.546364 3.165474 3.983118 1.030078 1.619206 -2.911297 -2.793472 0.912301 1.384032 1.054383 -2.143186 0.543177 -1.300069 -0.001304 0.980883 1.039223 1.517504 -2.339819 -3.324452 -0.739170 2.352411 1.069929 -2.256206 2.887034 0.298576 -1.209802 0.706397 -0.563105 2.087666 -0.293305 1.250717 -0.430970 -1.818634 0.246330 -1.113603 4.643894 -0.193141 0.093872 1.416078 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = 0.598873 -0.272661 0.055911 0.486426 0.347271 -0.619465 0.209856 0.345807 -0.001016 -0.907674 -0.409101 0.219136 -0.041979 -0.534667 0.198240 0.189097 0.082615 0.292732 -0.769706 0.566821 0.194866 0.240556 -0.266971 -0.406629 0.110360 -0.276713 -0.234133 0.337061 -0.058815 0.524280 -0.441704 -0.042544 0.402983 0.079001 0.271873 0.586331 0.331105 -0.086412 0.330809 0.259021 1.061422 0.283661 0.006752 0.401301 0.625387 0.596613 -0.153206 0.988384 -0.029139 -0.181834 0.494602 -0.365784 -0.376798 -0.004400 -0.695668 0.478273 0.782072 0.269290 -0.475284 0.426369 -0.280016 0.077127 0.248996 -0.079278 0.761631 0.591867 0.165777 0.313234 1.256171 -0.208914 -0.143806 0.380056 0.837664 0.051840 0.462073 -0.347563 -0.341830 -1.025995 -0.089088 -0.635464 0.105511 -0.196066 1.012076 -0.587500 0.167813 0.667695 0.270260 0.544072 -0.409241 -0.195840 -0.518768 0.274021 -0.177341 1.162577 -0.128922 0.352976 -0.307889 0.220407 0.176595 0.479046 -0.053953 -0.407004 -0.740586 -1.459176 -0.644114 -0.214840 -0.284722 -0.344948 -1.076773 -0.096477 0.577057 0.577926 -0.954614 -0.050841 0.416173 0.158260 0.334909 0.037139 -0.539183 -0.058099 -0.076760 0.165121 -0.123263 -0.248194 -0.256331 -0.718056 0.178874 0.131676 0.190092 -0.316852 -0.586998 -0.044167 -0.074156 0.030796 -0.074596 -0.062325 -0.034089 -0.832522 0.249982 -0.470290 0.404992 -0.917993 -0.223348 -0.484395 -0.666784 0.005770 1.124007 0.171962 0.597098 0.173053 -0.373934 -0.426983 -0.753614 -1.178967 0.168778 -0.513140 0.356319 -0.106709 0.026727 -0.282622 -0.081043 -0.384818 0.210397 -0.497840 0.006601 -0.397567 0.695012 -0.312253 -0.133629 -0.686952 -0.114813 0.814037 0.143264 0.022650 -0.306737 -0.683965 -0.593114 -0.630380 0.418139 -0.092241 0.155014 -0.274231 0.085336 -0.753184 0.362147 -0.343439 0.241634 -0.210229 -0.462141 -0.615865 -0.039122 -0.160018 -0.017185 -0.216844 -0.440659 0.117603 0.023427 0.266198 0.086323 0.158600 -0.075433 -1.021814 -0.987483 -0.205328 0.240546 0.735301 0.348770 0.302694 -0.288756 -0.138247 -0.768908 0.607095 -0.970964 -0.059065 0.233582 -0.381908 0.873620 -0.330447 -0.362221 -0.714785 0.309530 -0.129871 -0.542208 1.084366 0.541515 -0.703038 -0.392624 -0.581381 0.200567 0.469943 1.065848 -0.350183 -0.057449 0.328522 0.002128 -0.215129 -0.359073 0.516376 -0.308399 0.776333 -0.665945 -0.482537 0.197612 0.815590 -0.211441 0.098604 -0.142088 0.127943 -0.148839 0.708816 0.204040 0.029347 -0.555417 -1.170287 0.116452 0.036520 0.057957 0.271487 -0.519724 -0.464229 0.035726 0.179306 0.859085 0.446095 0.243987 0.467737 -0.690853 -0.726227 0.077234 0.129833 0.116824 -0.521895 0.426762 -0.431684 -0.122939 0.018286 0.330466 0.077270 -0.417137 -0.596194 -0.093647 0.446660 0.310196 -0.448988 0.673493 0.146373 -0.262300 0.007330 -0.031200 0.363900 0.153448 -0.145985 -0.239871 -0.495032 0.089713 -0.269955 1.004233 -0.086472 0.267267 0.292885 -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.997268 0.592713 0.705253 0.300486 0.643219 -1.244081 0.693576 1.367052 -0.153126 -1.579647 -0.937654 0.140074 -0.160294 -0.989051 0.178299 -0.102947 0.055356 1.346973 -1.575291 0.765193 0.725203 1.227623 0.023415 -1.461344 0.279861 0.069455 -1.547806 0.373041 0.214771 1.127271 -0.823853 -0.808118 0.737297 0.314935 0.094835 1.238004 1.156647 -0.024382 1.089490 -0.040946 1.752692 0.747468 -0.091312 1.111044 1.200352 1.000603 -0.460224 0.778656 -1.388787 -0.466182 -0.102293 -1.429494 -0.963684 -0.137356 -0.636403 1.157923 1.955271 1.489895 -0.750173 1.151827 0.119219 0.016002 0.437848 -1.020900 0.361279 1.479193 -0.765147 0.391991 2.457916 -0.530007 -0.360042 0.359032 1.309916 -0.154448 0.285318 -0.623099 -0.105680 -2.373176 -0.188298 -2.390896 0.166304 -0.208939 2.524290 -1.294708 1.338420 1.886467 0.518462 0.467632 -0.459487 -0.932761 -0.651623 0.485843 -0.805559 2.326169 -0.239012 0.446084 -0.435055 0.459008 0.813260 0.872358 -0.217252 -0.217489 -1.739221 -2.659760 -0.550221 -0.206405 -0.729333 -0.472590 -1.240682 -0.813090 1.696128 1.329336 -1.950227 -0.235024 1.010977 0.512362 -0.952278 -0.176358 -1.226723 0.302954 -0.828294 -0.473606 -0.506714 -1.026141 -0.904754 -0.348895 -0.723779 -0.060761 0.219291 -0.524213 -1.344322 -0.340284 -0.510374 -0.485925 -0.246608 -0.322377 -0.477249 -1.429380 0.400499 -1.320437 0.587795 -1.348134 0.035759 -0.107145 -1.527812 -0.040544 1.230355 -0.332203 0.157314 0.167541 -0.320650 -1.235746 -0.650976 -1.401253 1.143864 -0.526002 1.406829 -0.287666 0.025133 -0.922120 -0.306943 -1.175807 0.010881 -0.630302 0.346610 -0.573937 3.087803 -1.052091 -0.217529 -1.559343 0.189754 2.054921 0.122121 -0.820386 -1.045266 0.597616 -0.684685 -1.158572 0.859156 -0.039880 0.164676 -0.362608 0.455350 -0.780420 0.735407 -0.598640 0.872157 -0.268437 -0.754678 -1.214006 0.077690 -0.375756 -0.453003 0.041999 -0.513366 0.157907 0.116547 0.389482 -0.283949 -0.153555 0.450602 -1.839348 -1.663556 -0.749447 0.645381 0.563458 0.869117 0.893955 -0.991062 0.000972 -0.968950 1.260623 -0.900775 -0.233683 -0.315647 0.007416 1.917823 -0.328928 -0.369192 -1.864615 0.528905 0.164559 -0.829264 1.774528 0.462058 -0.940331 -0.760256 -1.181952 -0.025127 1.119685 1.911627 -0.783725 -0.681327 1.051444 -1.052396 -0.368976 -1.213314 0.861895 -0.429269 1.975320 -1.053054 -0.522361 0.156979 1.412996 -0.488626 1.121801 0.268045 0.488217 -0.182173 1.412628 0.437812 -0.268823 -1.046517 -1.132266 0.562678 0.211377 0.875286 -0.188902 -0.375911 -1.002481 0.409456 1.186714 1.284826 1.711279 0.395972 0.805142 -1.115418 -1.217833 0.901530 0.709687 0.962108 -1.292625 0.245664 -0.611153 0.033762 0.329894 0.432086 0.998930 -0.935684 -1.789871 -0.428391 1.189715 0.567259 -0.950330 1.412279 -0.168774 -0.709509 0.790755 -0.432383 1.553156 -0.260792 0.449522 -0.158185 -0.905361 0.122466 -0.526081 2.406000 -0.123903 -0.174523 0.981219 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = 0.454772 -0.065281 0.215634 0.373955 0.347723 -0.558851 0.251235 0.400340 -0.115857 -0.830412 -0.372279 0.042452 -0.068657 -0.454724 0.156252 0.073732 0.043479 0.358683 -0.777639 0.440086 0.258850 0.312929 -0.105413 -0.501510 0.109675 -0.213613 -0.316508 0.371768 -0.026383 0.511335 -0.407789 -0.154395 0.365189 0.168666 0.231670 0.568105 0.427193 -0.056563 0.312097 0.195144 0.953880 0.299641 -0.104171 0.339258 0.586089 0.554761 -0.068188 0.499055 -0.365614 -0.182133 0.170817 -0.389786 -0.365797 -0.091721 -0.546160 0.433134 0.793659 0.474912 -0.422239 0.448991 -0.228342 0.026536 0.210661 -0.152936 0.556670 0.478590 0.045215 0.248879 1.137723 -0.274698 -0.189779 0.323861 0.690936 -0.032848 0.276521 -0.202982 -0.261055 -1.184857 -0.065842 -0.856306 0.002557 -0.068535 0.893617 -0.510449 0.270531 0.733941 0.212664 0.404211 -0.364505 -0.282976 -0.462316 0.226367 -0.225307 1.138275 -0.049706 0.239771 -0.174965 0.264937 0.323696 0.498709 -0.041316 -0.297128 -0.684624 -1.365459 -0.452616 -0.178598 -0.255438 -0.302676 -0.800895 -0.218253 0.748918 0.635325 -0.858122 -0.045531 0.441955 0.236033 0.009168 -0.271558 -0.485454 0.073817 -0.186758 -0.006211 -0.061978 -0.335721 -0.270883 -0.394821 0.089196 0.047365 0.169779 -0.260176 -0.566912 -0.101660 -0.069723 -0.116104 -0.082361 -0.118241 -0.120219 -0.703912 0.217455 -0.547208 0.412861 -0.749497 0.051607 -0.293178 -0.636448 0.010674 0.764900 0.092937 0.253350 0.126627 -0.303010 -0.367312 -0.531025 -1.056514 0.302656 -0.268499 0.419329 -0.138503 -0.019646 -0.270960 -0.124638 -0.408277 0.205414 -0.397004 0.046446 -0.303153 0.865586 -0.290466 -0.138102 -0.613277 -0.003596 0.828589 0.152111 -0.058861 -0.391388 -0.271370 -0.480897 -0.616402 0.395183 -0.071114 0.033893 -0.228835 0.076376 -0.653026 0.443453 -0.313034 0.354934 -0.180373 -0.412303 -0.576405 -0.019284 -0.177939 -0.107231 -0.098260 -0.352182 0.061759 -0.031525 0.039349 0.021704 0.026736 0.071548 -0.822248 -0.843225 -0.204416 0.267131 0.510601 0.297255 0.324933 -0.357204 -0.088264 -0.592477 0.615112 -0.568070 -0.066255 0.064766 -0.302926 0.847211 -0.230546 -0.303553 -0.631349 0.294542 -0.018394 -0.279851 1.013629 0.485829 -0.575118 -0.415257 -0.484041 0.073660 0.470203 0.975204 -0.389488 -0.145165 0.347191 -0.134571 -0.187337 -0.339242 0.453158 -0.236529 0.757395 -0.610450 -0.440820 0.111133 0.750845 -0.186788 0.299174 -0.039976 0.158153 -0.203388 0.687586 0.183408 0.017647 -0.486944 -0.768885 0.186570 -0.094358 0.169421 0.096351 -0.323302 -0.478995 0.066597 0.329322 0.748962 0.645930 0.034287 0.442146 -0.572513 -0.636727 0.117416 0.150612 0.197366 -0.567443 0.321654 -0.362512 -0.050224 0.040731 0.224468 0.204389 -0.371936 -0.598159 -0.160472 0.418402 0.304010 -0.450361 0.654849 0.050852 -0.284925 0.076464 -0.045794 0.438687 0.151521 0.001382 -0.226072 -0.466304 0.102506 -0.209313 0.927922 -0.062694 0.121849 0.381456 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = 0.579855 -0.102797 0.165130 0.379310 0.486097 -0.386439 0.163157 0.310721 -0.131434 -0.929110 -0.612755 0.138204 -0.096645 -0.402313 0.281543 0.164758 0.231932 0.178150 -0.613768 0.390317 0.164736 0.108611 -0.208770 -0.226760 0.123791 -0.321355 -0.365193 0.301497 -0.037663 0.449484 -0.412570 0.028956 0.345754 0.153514 0.287152 0.481574 0.204535 -0.173010 0.352980 0.076399 1.081733 0.103831 0.143494 0.468988 0.630081 0.531902 -0.416814 1.026273 -0.058249 -0.143396 0.628548 -0.534875 -0.328125 0.159537 -0.718915 0.486688 0.696780 0.097861 -0.440988 0.351761 -0.249811 0.128416 0.127185 -0.291320 0.669756 0.610639 0.161604 0.248494 1.066021 -0.231881 -0.223195 0.484242 0.717110 0.205447 0.089982 -0.291050 -0.017960 -0.781745 -0.054829 -0.553992 0.160364 -0.361913 1.220806 -0.415841 -0.011197 0.614104 0.133621 0.447985 -0.285888 -0.109724 -0.506788 0.311023 -0.167785 0.774023 -0.122679 0.313359 -0.276213 0.069526 0.111629 0.532497 -0.213821 -0.250736 -0.902991 -1.353501 -0.672240 -0.116942 -0.080806 -0.350789 -0.954003 -0.004811 0.541943 0.540931 -0.722684 -0.137865 0.338507 0.222043 0.040104 0.471438 -0.756874 -0.324502 0.025476 0.213742 -0.158730 -0.044804 -0.171362 -0.914584 0.088005 -0.006306 0.279964 -0.344890 -0.558790 -0.128144 -0.127725 -0.084409 -0.090232 -0.148608 0.005509 -0.621367 0.282596 -0.241944 0.307392 -0.894094 -0.241363 -0.585153 -0.690250 0.020089 1.136474 0.386368 0.669131 0.398979 -0.250600 -0.477040 -0.659619 -0.854239 0.040220 -0.492838 0.467942 -0.090898 0.039289 -0.148740 -0.092072 -0.405246 0.128174 -0.446087 -0.003456 -0.495981 0.802280 -0.367920 -0.131449 -0.754696 -0.026522 0.736522 -0.203005 -0.047013 -0.261844 -0.435958 -0.497277 -0.656169 0.334242 -0.139141 0.233237 -0.184459 0.225335 -0.639271 0.251771 -0.300323 0.100801 -0.170458 -0.596393 -0.535430 0.002487 -0.135173 -0.220198 -0.111978 -0.396337 0.135048 0.280100 0.378276 0.168793 0.197819 -0.236028 -0.884836 -0.963487 -0.325328 0.187144 0.568974 0.563064 0.154657 -0.322085 -0.224313 -0.731578 0.594667 -0.818972 -0.087161 0.197027 -0.287769 0.639595 -0.348324 -0.273950 -0.646354 0.228615 -0.100855 -0.996424 0.806969 0.389056 -0.682585 -0.493644 -0.813346 0.210422 0.340809 1.022929 -0.191396 0.141684 0.264824 0.046515 -0.188926 -0.355686 0.535633 -0.165680 0.656959 -0.712617 -0.569014 0.257211 0.765682 -0.211711 0.154129 0.016306 0.402043 0.170654 0.702242 0.192869 -0.140699 -0.410263 -1.238397 0.048403 0.284041 -0.029795 0.309489 -0.471416 -0.533695 -0.085835 0.009535 0.793609 0.218558 0.416023 0.462496 -0.365818 -0.586300 0.148165 0.136755 0.092664 -0.568826 0.339979 -0.394613 -0.191295 0.011586 0.250249 0.169661 -0.475925 -0.811277 -0.182279 0.502789 0.318428 -0.202243 0.568830 0.231001 -0.265642 0.036419 0.023543 0.485979 0.239548 -0.312466 -0.281340 -0.483526 -0.094588 -0.209296 0.811267 0.031395 0.252354 0.292323 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = 1.728177 -0.815685 -0.072849 1.515069 0.589270 -2.224463 0.802297 1.284234 -0.319264 -2.283346 -0.836862 0.579674 0.079286 -1.746200 0.317892 0.414286 -0.496687 0.373600 -3.118866 1.801094 0.683642 0.549452 -1.003858 -1.563339 0.162347 -0.898570 -0.305975 1.682319 -0.608775 1.475097 -0.858433 -0.333993 1.067750 0.296061 0.768303 1.834528 0.632907 0.038425 0.938909 1.295852 2.583844 1.647817 -0.978438 0.450798 1.731376 1.737442 0.118537 1.925368 -1.579717 -0.465725 0.830094 0.096658 -1.368488 -0.661819 -1.544854 0.777754 2.748880 1.060454 -1.088473 1.364975 -1.588616 -0.202167 0.876689 0.831378 2.430496 1.382647 1.027065 0.798209 3.606568 -0.688687 -0.455727 1.145011 2.112571 -0.595531 1.381829 -0.634223 -2.058199 -3.123362 0.209013 -2.644305 -0.678879 0.071189 2.122381 -1.454591 0.292110 1.538007 1.322726 1.591760 -1.857231 -0.649139 -1.178519 0.496549 -0.967031 4.802391 -0.313618 1.252057 -0.435150 1.112569 1.194941 1.562696 -0.171653 -1.265537 -1.569424 -4.008089 -1.192769 -0.678221 -1.043971 -0.801750 -2.836148 -0.724623 1.957452 1.519789 -2.622568 0.064431 1.535040 0.544041 2.034796 -0.753121 -1.382898 0.709338 -0.383829 0.010618 0.374724 -0.849925 -0.671624 -1.049901 1.279280 0.541393 0.059566 -0.512800 -2.832720 0.253381 0.425191 -0.604418 0.086073 -0.015073 -0.310531 -2.376952 0.452301 -1.992181 1.533710 -2.927042 0.221012 -1.051854 -1.993691 0.253686 1.422135 0.946136 0.638944 -0.134005 -0.850634 -0.565929 -2.184603 -4.210848 0.444613 -0.733697 0.651315 -1.138220 -0.073879 -0.887162 -0.325978 -0.703307 1.091258 -1.167007 0.161451 -0.915620 2.982568 -0.089359 -0.446607 -0.888970 -0.587698 1.647331 1.355800 0.693843 -0.820917 -2.584156 -2.066808 -1.686218 1.209090 0.038648 -0.559131 -1.129176 -0.318865 -2.665911 1.403547 -0.782291 1.367885 -0.530854 -0.840221 -1.618252 -0.191030 -0.239250 0.092721 -1.000688 -1.091792 -0.299867 0.077065 -0.204636 0.281606 0.263764 0.249669 -2.248335 -2.415822 0.164531 0.917950 2.448392 0.774664 0.956400 -0.349637 0.088018 -2.380272 1.823251 -1.721907 -0.138337 0.268803 -1.396525 3.029538 -0.730111 -1.424697 -1.714151 0.915278 -0.512305 0.466116 3.970325 2.037847 -1.655369 -1.122755 -0.687760 0.062638 1.597425 2.716335 -1.438655 -0.812755 0.736016 0.007835 -0.670917 -0.121467 1.311322 -1.175758 2.148811 -1.578314 -1.231510 0.366668 2.309659 -0.476200 0.560422 -1.195550 -0.446821 -0.994936 1.734166 0.475019 0.037721 -1.587094 -2.798519 0.532961 -1.957855 -0.315993 -0.111758 -0.956695 -1.727221 0.150006 0.916850 2.441646 1.939717 -0.976572 1.145891 -2.314607 -2.177023 -0.677495 0.525423 0.098804 -1.320178 0.988897 -0.981331 0.140996 0.341427 0.668502 0.304756 -1.430394 -1.113452 -0.446022 0.932718 0.621814 -2.083488 2.017037 0.172713 -0.346209 -0.680351 0.026232 0.494087 0.792381 -0.049180 -0.749685 -1.632566 0.789850 -0.458515 2.668022 0.236046 0.737843 1.302921 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.243980 -0.194459 0.149113 0.285319 0.321480 -0.232066 0.101857 0.073156 0.092857 -0.541206 -0.147929 0.185110 -0.076472 -0.197219 0.060905 0.066450 0.164251 0.283273 -0.142734 0.233706 0.046263 0.196464 -0.021752 -0.226947 0.076820 -0.120238 0.056225 0.116219 0.093675 0.293364 -0.312924 -0.066678 0.236849 0.066756 0.142618 0.317556 0.464319 -0.064030 -0.029564 -0.008094 0.653582 -0.002279 0.130453 0.375288 0.327269 0.331795 0.050464 0.523713 0.334969 -0.109242 0.162228 -0.288827 -0.139110 -0.053523 -0.470923 0.389651 0.272309 0.177405 -0.330682 0.195763 0.093855 0.072745 0.104678 -0.155260 0.263450 0.249910 -0.044706 0.190751 0.692670 -0.207151 -0.153574 0.244347 0.551498 0.230506 0.387468 -0.223688 -0.123708 -0.557291 -0.165176 -0.119441 0.169246 -0.163203 0.498996 -0.353296 0.148718 0.468064 -0.012197 0.234434 -0.065292 -0.130192 -0.376695 0.183883 0.044960 0.439038 0.001698 0.088677 -0.188564 0.057411 0.039605 0.287977 0.130096 -0.247443 -0.310026 -0.787590 -0.383735 -0.174788 -0.118604 -0.220511 -0.502689 -0.025853 0.238892 0.429294 -0.513063 -0.066075 0.206566 0.089691 0.074642 -0.226454 -0.097374 -0.057602 0.018302 0.039552 -0.173317 -0.216169 -0.195532 -0.264998 -0.001548 0.000512 0.169743 -0.223598 -0.025597 -0.140059 -0.160751 0.246096 -0.071294 -0.148569 -0.034181 -0.536254 0.163126 -0.162868 0.183223 -0.308655 -0.190352 -0.189288 -0.280533 -0.076724 0.892911 -0.224519 0.519302 0.118600 -0.278897 -0.339815 -0.278737 -0.611741 0.204752 -0.289455 0.166349 0.183275 0.010991 -0.100265 -0.072788 -0.315031 0.103089 -0.284336 -0.035071 -0.123139 -0.031356 -0.340602 -0.021709 -0.536679 0.039820 0.567468 0.093809 -0.061112 -0.226906 -0.358663 -0.192845 -0.383202 0.227726 -0.124104 0.191202 -0.043035 0.023421 -0.283640 0.179565 -0.239141 0.126736 -0.138461 -0.354009 -0.378550 0.024730 -0.189580 0.030177 0.063419 -0.293011 0.180768 -0.235698 0.153073 -0.012385 0.057169 -0.048886 -0.695030 -0.561561 -0.213418 0.118389 0.331264 0.030110 0.205156 -0.253099 -0.187843 -0.296413 0.273651 -0.708303 -0.026192 0.205019 -0.144341 0.384922 -0.176471 -0.084996 -0.412023 0.213798 0.066060 -0.345672 0.486178 0.271566 -0.400417 -0.236754 -0.286182 0.097705 0.233178 0.649970 -0.240915 -0.047095 0.281089 -0.000131 -0.102449 -0.341323 0.267731 -0.067995 0.446144 -0.444262 -0.335453 0.006811 0.459908 -0.133891 0.004181 0.130332 0.133558 -0.174981 0.503035 0.150462 0.196752 -0.344518 -0.561773 0.097114 0.239039 0.163286 0.313006 -0.381941 -0.137365 0.123349 0.085502 0.450617 0.141941 0.326958 0.320131 -0.377645 -0.367675 0.251811 -0.100874 0.163797 -0.303741 0.343159 -0.312362 -0.133739 -0.136473 0.139874 -0.094504 -0.017820 -0.176779 0.001990 0.235290 0.232731 -0.065139 0.369162 0.084073 -0.252968 0.180372 -0.036215 0.272747 0.011052 -0.145061 -0.086271 -0.197671 -0.004102 -0.160880 0.549230 -0.192317 0.076028 0.049366 -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.291994 -0.091382 -0.249076 0.889389 0.140769 -0.614278 0.150684 0.176569 -0.107894 -1.422638 -0.508712 0.258175 -0.143874 -0.171734 0.067922 0.495439 -0.011496 0.235720 -0.809196 0.553302 0.618485 0.394869 -0.004250 -0.098960 0.446976 -0.194356 -0.428407 0.166931 0.100967 0.720420 -0.569838 0.318981 0.730992 -0.029339 -0.079691 0.601374 0.155128 0.357923 0.649889 0.156658 0.778919 0.031196 -0.086081 0.324012 0.333191 0.819459 -0.273962 1.260892 -0.383686 -0.565733 0.442458 -0.438591 -0.377264 0.021516 -0.438655 0.754709 0.755186 0.792484 -0.473614 0.296458 -0.295905 0.169923 0.345303 -0.284256 0.926232 1.114463 0.290791 0.643557 1.448672 -0.185525 0.016712 0.372623 0.661223 -0.015792 0.290397 -0.442899 -0.268855 -0.644463 -0.345599 -0.937931 -0.139779 -0.055135 1.546706 -0.924542 -0.010036 0.156880 0.240016 0.994658 -0.505226 0.212433 -0.716483 0.273800 -0.138442 1.308856 -0.004753 0.234989 -0.556322 0.440361 0.143421 0.413510 -0.360300 -0.172081 -1.058964 -1.266505 -0.662865 -0.272978 0.051964 0.203522 -1.862824 -0.152053 0.332671 0.724860 -1.641134 -0.114809 0.488050 0.402692 0.489297 0.865687 -0.818549 0.044853 -0.107936 -0.108075 -0.217380 -0.086426 -0.102823 -1.007450 -0.219754 -0.048340 0.151158 -0.028870 -1.379922 -0.061205 -0.269666 -0.415546 0.215747 0.484817 0.366118 -0.503517 0.431996 -0.617737 0.370376 -1.452684 -0.596307 -0.184418 -1.168738 -0.171481 1.179375 0.793896 0.634153 -0.312754 -0.465315 -1.005741 -1.377950 -1.099726 0.012970 -0.461436 0.556740 0.324280 -0.092910 -0.079760 -0.301905 -0.206870 0.408742 -0.519331 -0.074835 -0.654593 1.277276 -0.225081 0.140523 -0.999391 -0.561939 0.585947 -0.506338 0.141692 -0.238116 -0.565998 -1.373970 -0.628758 0.470328 -0.187249 0.295164 -0.648147 0.196624 -1.102707 0.323275 -0.519447 -0.157834 -0.030623 -0.442434 -0.887385 0.329657 -0.118061 -0.376273 -0.203629 -0.486538 0.021689 0.412228 0.314213 0.428840 0.129112 -0.247824 -0.909127 -0.967760 0.148756 -0.157760 0.432987 0.688223 0.008277 -0.449157 -0.418959 -1.103802 1.030054 -0.801130 0.135827 0.282724 0.297740 1.121548 -0.534961 -0.095351 -0.886653 0.296026 -0.065572 -1.499251 0.803506 0.443400 -0.675264 -0.129690 -0.559581 0.395838 0.657794 0.735610 -0.476150 -0.317470 0.293566 -0.130905 -0.154549 -0.309971 0.510186 -0.633977 0.871927 -0.587883 -0.173271 0.319635 0.662579 -0.326923 0.228056 -0.091168 -0.237410 0.366007 0.541605 0.508578 -0.272728 -0.569034 -1.547669 -0.003416 -0.113986 0.036143 0.105192 -0.700522 -0.299917 0.295786 -0.173137 1.033576 0.041370 -0.037321 0.608053 -1.204840 -0.806797 0.296588 0.246164 0.043456 -0.336637 0.438082 -0.200877 -0.090761 0.545634 0.363928 0.031631 -1.061629 -0.671372 -0.026910 1.081067 -0.223337 -0.301857 0.788275 -0.037715 -0.256311 -0.109643 0.188322 0.358647 -0.284951 -0.731266 -0.254070 -0.281473 0.131761 -0.686954 1.205678 -0.157613 -0.012947 0.364596 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = 1.356747 0.325965 0.450440 0.568084 0.889889 -1.368027 0.611273 1.253583 0.173791 -1.878210 -0.973526 0.834341 -0.124328 -1.117105 0.111279 0.154731 0.220188 1.471710 -1.224958 1.006341 0.545676 1.265213 -0.234456 -1.484626 0.324241 0.039028 -1.174906 0.141118 0.338701 1.214431 -1.022270 -0.715044 0.856167 0.152152 0.170532 1.313741 1.361801 -0.105453 0.903138 -0.224117 2.133507 0.680376 0.277369 1.578565 1.334465 1.111204 -0.538041 1.797428 -0.665603 -0.486935 0.243715 -1.303003 -1.028017 -0.028500 -1.035111 1.570959 1.878616 1.128990 -0.955215 1.086039 0.421503 0.128696 0.524402 -1.007999 0.539809 1.758694 -0.759667 0.605089 2.932398 -0.523147 -0.387737 0.567895 1.819385 0.243599 1.040774 -0.961302 -0.321368 -1.735250 -0.374133 -1.843284 0.553151 -0.577656 3.071424 -1.610967 1.303415 1.935978 0.677348 0.721940 -0.402683 -0.861605 -0.840537 0.671248 -0.806524 2.500119 -0.333522 0.707113 -0.873927 0.338959 0.502797 0.904794 -0.082275 -0.462202 -1.705586 -2.862322 -0.936731 -0.387710 -0.825805 -0.560731 -1.753619 -0.618990 1.241687 1.614304 -2.286071 -0.298564 1.001985 0.346627 -0.215882 0.229684 -1.211470 0.119153 -0.637357 -0.379004 -0.950856 -0.965844 -1.088565 -0.648237 -0.766874 -0.044640 0.318511 -0.681678 -1.430141 -0.322852 -0.725586 -0.066576 -0.229769 -0.343525 -0.312906 -2.060223 0.493570 -1.114635 0.466978 -1.559355 -0.671197 -0.347119 -1.758370 -0.152070 2.054830 -0.637001 1.134384 0.210892 -0.413478 -1.688848 -1.024186 -1.660450 1.103545 -1.069364 1.236655 0.053569 0.146279 -0.969896 -0.342664 -1.341163 0.146170 -0.893137 0.250110 -0.706218 2.951386 -1.442966 -0.112027 -1.938730 -0.015025 2.174713 0.285006 -0.776356 -0.990337 -0.249471 -0.900186 -1.278942 0.945083 -0.168272 0.544326 -0.406596 0.454632 -0.798601 0.496313 -0.740965 0.816619 -0.371982 -0.913458 -1.395851 0.100770 -0.439063 -0.381967 -0.020110 -0.793770 0.448764 0.039877 0.747886 -0.320331 0.013070 0.174363 -2.542104 -2.044759 -0.793693 0.648428 0.952471 0.929050 0.952757 -1.013832 -0.219966 -1.316562 1.205027 -2.012697 -0.217172 0.071374 0.075824 1.998544 -0.605206 -0.402352 -2.261239 0.636967 0.030639 -1.308975 1.968536 0.510200 -1.228935 -0.733918 -1.326332 0.215089 1.151887 2.259021 -0.882850 -0.679361 1.226184 -0.922182 -0.459411 -1.442512 1.029319 -0.544569 2.260368 -1.289626 -0.674187 0.172567 1.652355 -0.633392 0.753923 0.270935 0.337814 -0.146144 1.658971 0.664211 -0.030064 -1.389378 -1.840542 0.451004 0.248133 0.800251 0.174809 -0.764105 -0.943712 0.542762 0.933686 1.569415 1.070990 1.006754 0.944123 -1.585322 -1.451356 1.226367 0.525288 1.027091 -1.270926 0.561696 -0.890459 -0.198556 0.137865 0.617919 0.582597 -0.926127 -1.553647 -0.256535 1.370206 0.655880 -0.828145 1.536631 0.077771 -0.770965 0.966252 -0.481290 1.654015 -0.474464 -0.013927 -0.098040 -0.925778 0.003392 -0.690818 2.783017 -0.284641 -0.003768 0.746491 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = 0.807657 0.028939 0.027899 0.650305 0.446026 -0.944855 0.314112 0.656823 -0.082114 -1.356037 -0.596718 0.450188 0.006890 -0.668096 0.156783 0.263471 -0.026097 0.678278 -1.086634 0.764246 0.417286 0.578215 -0.284680 -0.847470 0.185142 -0.218409 -0.443834 0.299092 0.081487 0.856163 -0.675198 -0.216687 0.619705 0.081296 0.296746 0.853057 0.673760 -0.016613 0.413686 0.178989 1.434652 0.594944 -0.108255 0.657727 0.812739 0.850207 -0.175179 0.982805 -0.719124 -0.373280 0.172253 -0.367156 -0.623974 -0.100632 -0.748938 0.843072 1.237557 0.716788 -0.646727 0.645350 -0.193350 0.033988 0.381053 -0.216447 0.799486 0.871708 0.029307 0.500741 1.847070 -0.369578 -0.219779 0.448815 1.070318 -0.079605 0.826693 -0.365686 -0.579105 -1.301717 -0.154943 -1.295660 0.053204 -0.116135 1.723959 -1.039365 0.531834 1.087046 0.553562 0.727151 -0.568704 -0.411148 -0.645096 0.319142 -0.552551 1.977184 -0.054885 0.469572 -0.495462 0.455617 0.448698 0.670848 -0.040587 -0.498419 -0.970355 -1.966715 -0.705042 -0.334735 -0.435450 -0.257154 -1.356564 -0.403501 0.971245 1.196420 -1.537899 0.011961 0.711124 0.307339 0.433925 -0.202577 -0.809419 0.281918 -0.347934 -0.177149 -0.239621 -0.531494 -0.522793 -0.409616 0.019346 0.038081 0.207354 -0.328864 -1.190676 -0.122661 -0.191957 -0.204244 -0.085094 -0.073529 -0.045434 -1.352239 0.380159 -0.814953 0.522998 -1.233837 -0.150708 -0.343892 -1.203687 -0.044406 1.095246 0.054487 0.587118 -0.016458 -0.434262 -0.785363 -0.999789 -1.621222 0.530933 -0.464984 0.556746 -0.082017 0.011254 -0.423483 -0.256065 -0.573321 0.421156 -0.656427 0.075733 -0.413146 1.815253 -0.582119 -0.155945 -1.015796 -0.214117 1.104770 0.386438 -0.045130 -0.565749 -0.577618 -0.946550 -0.868727 0.674581 -0.123176 0.182963 -0.428856 0.086486 -0.945386 0.495069 -0.559215 0.607511 -0.268036 -0.509548 -0.944316 -0.022129 -0.216739 -0.287697 -0.206364 -0.614442 0.145128 0.071449 0.038985 -0.038074 -0.011141 0.151510 -1.440343 -1.292428 -0.171559 0.273074 0.839437 0.579922 0.485189 -0.565885 -0.123933 -1.066746 0.889186 -1.136933 -0.058888 0.056336 -0.250366 1.380663 -0.472482 -0.526245 -1.195358 0.460174 -0.074698 -0.427572 1.632191 0.683353 -0.803556 -0.412479 -0.570991 0.175752 0.783038 1.434342 -0.695460 -0.412763 0.564661 -0.375435 -0.281732 -0.537813 0.730427 -0.557425 1.252548 -0.833929 -0.493947 0.156204 1.128475 -0.295352 0.449558 -0.078781 -0.039127 -0.234200 0.997876 0.467196 0.010710 -0.897835 -1.223702 0.322134 -0.566462 0.202725 0.000738 -0.444681 -0.673266 0.218184 0.468675 1.145614 0.708354 0.099563 0.667946 -1.244000 -1.060160 0.306569 0.264622 0.367290 -0.775367 0.483211 -0.558908 -0.031679 0.137427 0.370428 0.207130 -0.673808 -0.736011 -0.169246 0.763980 0.405198 -0.671954 1.056830 0.126840 -0.446692 0.232584 -0.153607 0.699396 -0.062358 -0.163151 -0.264286 -0.633409 0.153365 -0.423055 1.532610 -0.156743 0.080820 0.570582 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.526718 -0.304310 0.033317 0.518979 0.375864 -0.547043 0.191440 0.227643 0.033729 -0.840367 -0.291480 0.356402 -0.036042 -0.458556 0.105172 0.170062 0.082936 0.270536 -0.535358 0.501121 0.106214 0.196220 -0.268156 -0.385725 0.075495 -0.268292 0.026115 0.345270 -0.029647 0.476824 -0.392879 -0.055809 0.372762 0.075009 0.257508 0.552702 0.446583 -0.060032 0.117484 0.182716 0.990615 0.234558 0.019249 0.423781 0.558065 0.561210 -0.004118 0.911745 0.089632 -0.156661 0.374064 -0.170284 -0.329779 -0.106290 -0.694859 0.466208 0.625634 0.200356 -0.461880 0.365315 -0.190512 0.048417 0.231055 0.024166 0.665970 0.474240 0.162615 0.316744 1.173333 -0.266544 -0.195750 0.427415 0.828633 0.140285 0.587539 -0.290611 -0.443788 -0.776069 -0.115103 -0.422148 0.077111 -0.178837 0.876685 -0.536863 0.092295 0.588001 0.235271 0.487980 -0.360967 -0.173328 -0.516236 0.245358 -0.134122 1.107535 -0.051392 0.327104 -0.293257 0.190333 0.163374 0.486470 0.029488 -0.435618 -0.521073 -1.298682 -0.582268 -0.263642 -0.264047 -0.322084 -0.948143 -0.105771 0.437489 0.633489 -0.858431 -0.055775 0.400099 0.124950 0.505037 -0.125649 -0.363949 0.014755 0.009104 0.074137 -0.112085 -0.234473 -0.260462 -0.481057 0.218315 0.074908 0.163762 -0.271880 -0.538697 -0.058596 -0.068368 0.120617 -0.036083 -0.116697 -0.041341 -0.857046 0.219985 -0.391014 0.376300 -0.785919 -0.226583 -0.397328 -0.611762 -0.025065 1.049571 0.035402 0.695957 0.093935 -0.355704 -0.410543 -0.666230 -1.202054 0.191354 -0.439938 0.210563 -0.020113 0.016431 -0.216166 -0.118224 -0.358587 0.302874 -0.453732 -0.020393 -0.282843 0.481803 -0.311426 -0.090733 -0.618706 -0.109154 0.679494 0.289686 0.091466 -0.288046 -0.855673 -0.536547 -0.583501 0.380638 -0.109924 0.115422 -0.220086 -0.037576 -0.670291 0.309796 -0.328029 0.282911 -0.209568 -0.436311 -0.579210 -0.009326 -0.176882 0.001178 -0.143686 -0.447124 0.128652 -0.099356 0.133947 0.058502 0.136011 -0.071124 -0.962247 -0.879494 -0.132986 0.227330 0.710272 0.242554 0.308348 -0.253449 -0.167350 -0.710088 0.502540 -0.996560 -0.036640 0.281518 -0.346182 0.788228 -0.321776 -0.316716 -0.623810 0.323659 -0.069562 -0.379350 1.022168 0.560157 -0.635769 -0.372353 -0.379685 0.133719 0.432082 0.997192 -0.414878 -0.121906 0.345355 0.048489 -0.198687 -0.284105 0.449561 -0.255797 0.709819 -0.643927 -0.488638 0.107324 0.766371 -0.197685 0.018744 -0.118541 0.026794 -0.228122 0.696951 0.226597 0.158140 -0.555521 -1.054399 0.135201 -0.148805 0.010769 0.299193 -0.500707 -0.388646 0.111208 0.093674 0.792008 0.240332 0.166901 0.458479 -0.708634 -0.674998 0.097154 -0.010815 0.129884 -0.454063 0.490512 -0.438095 -0.118293 -0.074840 0.250925 -0.082575 -0.269976 -0.312959 -0.050121 0.364263 0.288832 -0.355910 0.627400 0.135711 -0.248528 0.019165 -0.018819 0.298846 0.138617 -0.268323 -0.204766 -0.435128 0.108820 -0.223712 0.890255 -0.113570 0.229190 0.241957 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = 12.471436 3.011025 -3.269710 10.296950 0.849348 -16.474456 3.779922 12.879247 -6.569861 -18.371777 -12.309046 5.020218 0.895198 -9.071108 5.201801 4.397898 -5.452049 3.348577 -28.311102 13.346582 8.278547 5.622597 -5.401640 -11.156228 3.502728 -1.874483 -10.898261 7.457458 -2.383302 11.725249 -8.361352 -0.059103 8.097392 1.743313 4.951217 9.272472 -0.700615 1.132461 10.138492 5.904874 16.867521 12.706239 -6.102096 4.168772 10.392638 11.929205 -5.254579 12.765174 -18.058103 -5.447811 5.800291 -3.404640 -11.002139 0.640335 -6.309900 7.546633 20.756633 10.102383 -5.828505 9.398718 -9.966091 -1.153526 5.799588 -2.024600 17.662742 13.730295 6.822298 5.988529 23.867797 -2.849196 -0.930995 4.664197 12.405295 -7.406250 2.900849 -6.193171 -9.781320 -20.945862 1.874739 -29.476475 -5.994535 0.595811 24.233675 -13.582702 5.352049 9.421800 8.948245 12.366056 -14.229177 -2.230497 -6.554878 1.879994 -10.835854 31.637930 -2.591209 6.977509 -3.352989 8.341371 9.864265 10.066790 -6.575693 -4.398765 -15.718725 -26.525455 -6.967675 1.012209 -5.245302 -1.223714 -20.944315 -6.436346 13.903344 13.350987 -21.185257 -1.640903 11.433164 5.114384 6.048602 5.518112 -16.970237 4.671354 -5.582549 0.414120 4.052128 -5.639071 -3.399082 -9.238056 2.231044 2.517112 2.964477 -0.921566 -24.874862 -0.832314 1.078611 -10.478379 -0.101484 1.054785 -0.680876 -11.689810 5.715240 -13.225754 9.341126 -23.314012 0.795409 -6.150366 -16.994570 2.793612 6.419056 13.737663 0.628440 -0.450244 -3.406220 -6.572022 -17.668825 -22.320689 5.047449 -3.030441 8.984253 -7.887814 -0.003465 -4.720095 -2.431045 -5.085993 7.122011 -8.986400 -0.011268 -10.104582 33.762908 -0.827896 -3.226112 -9.683196 -4.779877 10.169940 1.438989 2.396969 -5.082204 -10.596953 -17.688093 -11.276207 9.640003 0.871775 -1.553436 -9.358639 3.633063 -17.868864 7.376068 -7.812865 7.560091 -0.628445 -6.208632 -11.705066 -1.812999 0.395006 -4.691519 -8.278601 -6.111504 -3.004601 9.801380 2.975532 2.130544 1.844538 3.311682 -14.393825 -17.630429 0.449007 3.179674 12.825422 10.789345 4.673692 -8.321195 1.205129 -17.949882 16.238796 -8.046760 -0.877332 -4.546512 -3.800487 22.433273 -6.364230 -9.531006 -13.582339 4.908589 -2.695443 -9.975932 23.803111 10.742577 -9.191829 -5.210018 -8.935316 2.825507 12.751980 18.463643 -8.667953 -5.892965 3.136822 -3.657936 -4.177000 -3.106065 11.710964 -11.249335 13.582840 -8.212063 -5.213118 4.654939 13.373777 -1.361663 8.907708 -6.410650 -0.854426 -0.073157 10.259041 4.902859 -7.284839 -9.584401 -21.207153 3.600416 -7.410734 -1.310783 -3.824259 -4.858065 -13.935641 -0.912659 4.498204 16.326629 12.732052 -6.395463 7.391705 -15.843967 -14.534406 -3.937600 9.933768 -0.243975 -9.092985 3.235490 -4.606628 2.059523 9.406419 4.036883 7.157853 -14.872954 -16.487166 -5.991550 10.624825 2.828761 -12.230358 14.770148 2.224072 -4.256322 -3.436550 -0.631621 5.862889 0.573093 -2.178535 -5.864140 -10.741959 3.462417 -5.380675 18.031416 3.227953 1.469520 10.169990 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.014752 -0.115026 0.174403 0.149363 0.204150 -0.049149 0.048001 -0.039661 0.011583 -0.293322 -0.049669 -0.034884 -0.080225 -0.043406 0.059283 -0.001056 0.134973 0.169390 -0.007090 0.064365 0.029255 0.094056 0.083497 -0.081244 0.044078 -0.087913 0.062225 0.088942 0.071202 0.153352 -0.192020 -0.021445 0.124557 0.088051 0.097879 0.154611 0.326452 -0.046863 -0.082786 0.000000 0.363513 -0.099979 0.080997 0.163466 0.161310 0.182624 0.097899 0.109506 0.269061 -0.058641 0.029411 -0.227300 -0.004633 -0.044537 -0.279889 0.191302 0.059039 0.147094 -0.196567 0.090635 0.061115 0.052677 0.024162 -0.132883 0.116336 0.026666 -0.039844 0.089580 0.295924 -0.149696 -0.107421 0.125501 0.265616 0.148758 0.132027 -0.046436 0.017829 -0.478011 -0.126639 -0.027215 0.091615 -0.043842 0.136763 -0.143437 0.064997 0.295418 -0.127581 0.090419 0.014458 -0.072967 -0.253318 0.091366 0.122219 0.072422 0.067441 -0.055443 -0.045091 0.025847 0.029232 0.170154 0.108758 -0.126280 -0.155253 -0.441147 -0.218293 -0.092091 -0.013251 -0.146733 -0.201570 -0.002429 0.205027 0.259828 -0.222758 -0.032075 0.091413 0.083277 -0.151774 -0.327457 0.018334 -0.046480 0.026493 0.043974 -0.046559 -0.133960 -0.071742 -0.125659 0.007083 -0.029891 0.139194 -0.135782 0.187575 -0.137725 -0.092057 0.180887 -0.066453 -0.122589 -0.032956 -0.203808 0.100665 -0.064946 0.125313 -0.060060 -0.001456 -0.085137 -0.068394 -0.053618 0.550164 -0.154614 0.228061 0.100187 -0.209304 -0.128423 -0.071376 -0.316730 0.137729 -0.092655 0.098388 0.160345 -0.020534 -0.000358 -0.034937 -0.176630 0.048803 -0.145818 -0.039783 -0.021855 -0.286537 -0.175570 -0.023907 -0.325239 0.096687 0.361616 -0.000610 -0.052224 -0.155275 -0.056348 -0.027228 -0.228813 0.110615 -0.093722 0.108678 0.025589 0.009249 -0.137901 0.157542 -0.142115 0.042034 -0.078978 -0.230793 -0.202878 0.012292 -0.143548 0.013392 0.108200 -0.151888 0.114601 -0.226457 0.007853 0.001785 0.005667 -0.013577 -0.309586 -0.275203 -0.157525 0.046332 0.087647 -0.055702 0.107095 -0.197296 -0.138144 -0.064294 0.152784 -0.298892 -0.010478 0.120557 -0.115637 0.140621 -0.065391 -0.008594 -0.119080 0.123672 0.102656 -0.196378 0.182967 0.163485 -0.215796 -0.156977 -0.156188 0.042978 0.099751 0.356640 -0.118575 0.038736 0.144453 0.031409 -0.033452 -0.203306 0.129974 0.024118 0.180730 -0.266864 -0.224026 -0.020986 0.237308 -0.050327 0.012947 0.154932 0.159391 -0.138466 0.291186 0.055298 0.156811 -0.136919 -0.185787 0.067575 0.260758 0.149048 0.239402 -0.210883 -0.024903 0.054075 0.034516 0.219215 0.120943 0.167227 0.197953 -0.108164 -0.158426 0.144494 -0.115812 0.083398 -0.195900 0.226374 -0.172475 -0.088907 -0.122135 0.047469 -0.061416 0.088748 -0.086026 -0.001356 0.085275 0.163264 0.034099 0.181459 0.027679 -0.186875 0.113714 0.003629 0.141623 0.053388 -0.061859 -0.075693 -0.080130 -0.010984 -0.072541 0.216456 -0.164738 0.015208 0.009540 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.553615 0.092215 0.152561 0.336225 0.410768 -0.460561 0.192570 0.432356 0.054918 -0.999048 -0.567310 0.282545 -0.060221 -0.368960 0.182861 0.162050 0.193654 0.621448 -0.508084 0.401098 0.277197 0.474771 -0.043626 -0.468067 0.172720 -0.074645 -0.542589 -0.023603 0.199382 0.591390 -0.533872 -0.125278 0.444463 0.049919 0.108976 0.532162 0.531602 -0.094140 0.342524 -0.106092 1.052880 0.153049 0.223285 0.692506 0.527631 0.545337 -0.356867 0.953719 -0.078383 -0.274132 0.313114 -0.731960 -0.378230 0.134977 -0.564384 0.744647 0.749095 0.441023 -0.453572 0.417743 0.136413 0.144497 0.194032 -0.577902 0.362916 0.775747 -0.215625 0.333013 1.225814 -0.249048 -0.139794 0.270711 0.744411 0.171514 0.417985 -0.417137 0.014269 -0.833869 -0.221001 -0.704852 0.302542 -0.315855 1.461239 -0.754661 0.448600 0.863135 0.196249 0.431058 -0.138286 -0.238502 -0.481918 0.313035 -0.240632 0.853557 -0.086731 0.233030 -0.457498 0.113320 0.116747 0.386009 -0.043105 -0.222373 -0.909599 -1.338551 -0.609588 -0.169329 -0.205214 -0.195329 -0.938541 -0.145692 0.569086 0.753795 -1.055180 -0.105922 0.394337 0.230806 -0.152183 0.275078 -0.651081 -0.109924 -0.181184 -0.010836 -0.385453 -0.355171 -0.369244 -0.584204 -0.315536 -0.038376 0.254553 -0.347949 -0.478429 -0.233576 -0.355803 0.026921 -0.119217 -0.106019 0.019005 -0.834481 0.323794 -0.366566 0.215993 -0.748943 -0.369458 -0.280885 -0.781128 -0.107686 1.268007 -0.098246 0.666825 0.206072 -0.318679 -0.768991 -0.581751 -0.713024 0.368269 -0.509954 0.585724 0.171708 0.054072 -0.277280 -0.147881 -0.511371 0.034187 -0.466303 0.042401 -0.335313 1.052724 -0.662249 -0.078514 -1.027093 -0.019713 0.955720 -0.119483 -0.276323 -0.384220 -0.069454 -0.481395 -0.620805 0.452894 -0.163021 0.406856 -0.189191 0.280463 -0.428232 0.188107 -0.402016 0.185069 -0.130802 -0.543604 -0.680456 0.048833 -0.200533 -0.262030 0.039951 -0.434847 0.256428 0.106979 0.429949 -0.033507 0.053139 -0.037297 -1.169337 -0.988548 -0.420355 0.108317 0.426527 0.493814 0.299319 -0.532267 -0.219329 -0.625931 0.586969 -1.008172 -0.063807 0.062304 0.006866 0.759817 -0.360747 -0.190897 -0.982618 0.270299 0.023429 -0.976996 0.782077 0.234505 -0.597791 -0.298656 -0.737375 0.231488 0.454877 1.038415 -0.316516 -0.127545 0.462852 -0.312654 -0.170118 -0.682494 0.527546 -0.268211 0.856725 -0.626847 -0.346635 0.166581 0.744653 -0.256992 0.291839 0.262147 0.298739 0.089367 0.738691 0.336610 -0.089862 -0.569974 -1.003446 0.179221 0.394087 0.301962 0.229143 -0.472972 -0.361731 0.175361 0.255630 0.740347 0.357189 0.633281 0.495688 -0.650650 -0.646825 0.523366 0.183005 0.370749 -0.574611 0.307831 -0.414284 -0.142579 0.068056 0.285693 0.211828 -0.441108 -0.786452 -0.089223 0.682542 0.321375 -0.182653 0.683715 0.144576 -0.421314 0.407750 -0.171051 0.681679 -0.188870 -0.143080 -0.100401 -0.335831 -0.080443 -0.370747 1.107533 -0.207962 -0.010478 0.259129 -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.291994 -0.091382 -0.249076 0.889389 0.140769 -0.614278 0.150684 0.176569 -0.107894 -1.422638 -0.508712 0.258175 -0.143874 -0.171734 0.067922 0.495439 -0.011496 0.235720 -0.809196 0.553302 0.618485 0.394869 -0.004250 -0.098960 0.446976 -0.194356 -0.428407 0.166931 0.100967 0.720420 -0.569838 0.318981 0.730992 -0.029339 -0.079691 0.601374 0.155128 0.357923 0.649889 0.156658 0.778919 0.031196 -0.086081 0.324012 0.333191 0.819459 -0.273962 1.260892 -0.383686 -0.565733 0.442458 -0.438591 -0.377264 0.021516 -0.438655 0.754709 0.755186 0.792484 -0.473614 0.296458 -0.295905 0.169923 0.345303 -0.284256 0.926232 1.114463 0.290791 0.643557 1.448672 -0.185525 0.016712 0.372623 0.661223 -0.015792 0.290397 -0.442899 -0.268855 -0.644463 -0.345599 -0.937931 -0.139779 -0.055135 1.546706 -0.924542 -0.010036 0.156880 0.240016 0.994658 -0.505226 0.212433 -0.716483 0.273800 -0.138442 1.308856 -0.004753 0.234989 -0.556322 0.440361 0.143421 0.413510 -0.360300 -0.172081 -1.058964 -1.266505 -0.662865 -0.272978 0.051964 0.203522 -1.862824 -0.152053 0.332671 0.724860 -1.641134 -0.114809 0.488050 0.402692 0.489297 0.865687 -0.818549 0.044853 -0.107936 -0.108075 -0.217380 -0.086426 -0.102823 -1.007450 -0.219754 -0.048340 0.151158 -0.028870 -1.379922 -0.061205 -0.269666 -0.415546 0.215747 0.484817 0.366118 -0.503517 0.431996 -0.617737 0.370376 -1.452684 -0.596307 -0.184418 -1.168738 -0.171481 1.179375 0.793896 0.634153 -0.312754 -0.465315 -1.005741 -1.377950 -1.099726 0.012970 -0.461436 0.556740 0.324280 -0.092910 -0.079760 -0.301905 -0.206870 0.408742 -0.519331 -0.074835 -0.654593 1.277276 -0.225081 0.140523 -0.999391 -0.561939 0.585947 -0.506338 0.141692 -0.238116 -0.565998 -1.373970 -0.628758 0.470328 -0.187249 0.295164 -0.648147 0.196624 -1.102707 0.323275 -0.519447 -0.157834 -0.030623 -0.442434 -0.887385 0.329657 -0.118061 -0.376273 -0.203629 -0.486538 0.021689 0.412228 0.314213 0.428840 0.129112 -0.247824 -0.909127 -0.967760 0.148756 -0.157760 0.432987 0.688223 0.008277 -0.449157 -0.418959 -1.103802 1.030054 -0.801130 0.135827 0.282724 0.297740 1.121548 -0.534961 -0.095351 -0.886653 0.296026 -0.065572 -1.499251 0.803506 0.443400 -0.675264 -0.129690 -0.559581 0.395838 0.657794 0.735610 -0.476150 -0.317470 0.293566 -0.130905 -0.154549 -0.309971 0.510186 -0.633977 0.871927 -0.587883 -0.173271 0.319635 0.662579 -0.326923 0.228056 -0.091168 -0.237410 0.366007 0.541605 0.508578 -0.272728 -0.569034 -1.547669 -0.003416 -0.113986 0.036143 0.105192 -0.700522 -0.299917 0.295786 -0.173137 1.033576 0.041370 -0.037321 0.608053 -1.204840 -0.806797 0.296588 0.246164 0.043456 -0.336637 0.438082 -0.200877 -0.090761 0.545634 0.363928 0.031631 -1.061629 -0.671372 -0.026910 1.081067 -0.223337 -0.301857 0.788275 -0.037715 -0.256311 -0.109643 0.188322 0.358647 -0.284951 -0.731266 -0.254070 -0.281473 0.131761 -0.686954 1.205678 -0.157613 -0.012947 0.364596 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = 1.577617 -0.215297 0.196899 0.861142 0.665749 -1.866187 0.639035 1.360285 0.017679 -2.017275 -1.004154 0.484510 -0.044906 -1.519572 0.362728 0.343110 -0.152375 1.022000 -2.246273 1.529472 0.727574 1.066212 -0.481807 -1.509984 0.356649 -0.303624 -1.185691 0.604225 -0.100095 1.293892 -1.043239 -0.481714 0.928843 0.170153 0.368787 1.456529 0.773925 -0.109500 1.286970 0.600972 2.265582 1.081393 -0.169465 1.017478 1.537679 1.292655 -0.501046 2.046588 -0.922815 -0.484253 0.757479 -1.015355 -1.172649 -0.047961 -1.155711 1.275648 2.322328 1.076630 -0.938575 1.155069 -0.496743 0.041012 0.678925 -0.432723 1.448935 1.764176 -0.041191 0.626482 3.265446 -0.326029 -0.263326 0.655559 1.965593 -0.243087 1.121607 -0.973666 -0.871566 -2.590988 -0.172121 -2.254772 0.171067 -0.364464 2.687394 -1.607158 1.011152 1.796095 1.019882 1.186427 -0.984133 -0.736746 -0.881362 0.686612 -0.862159 3.322463 -0.514676 0.967127 -0.826862 0.625309 0.683652 1.030945 -0.191107 -0.688281 -1.926320 -3.394824 -1.138615 -0.381267 -0.953785 -0.691644 -2.489375 -0.502005 1.559418 1.358088 -2.514900 -0.127296 1.176038 0.415562 0.520703 0.105658 -1.435963 0.177709 -0.613708 0.035858 -0.547241 -0.899417 -0.934932 -1.325737 0.015365 0.338515 0.221419 -0.755718 -1.812329 -0.037353 -0.329222 -0.264384 -0.127727 -0.067123 -0.231361 -2.146468 0.469200 -1.478158 0.825828 -2.215235 -0.443435 -0.788028 -1.763590 0.082769 2.035287 0.121254 0.818175 0.177008 -0.648818 -1.271393 -1.608431 -2.476905 0.686869 -1.225471 1.139786 -0.495571 0.128107 -1.059320 -0.138642 -1.077512 0.295222 -1.072500 0.266805 -0.986321 2.920158 -0.909625 -0.246758 -1.612663 -0.369311 2.128852 0.451997 -0.331314 -0.813147 -0.955729 -1.395565 -1.459206 1.030122 -0.031024 0.247582 -0.855041 0.408240 -1.613816 0.893625 -0.723274 0.841380 -0.380538 -0.872297 -1.427443 -0.149471 -0.294471 -0.100005 -0.643222 -0.852143 0.142386 0.161868 0.685738 -0.011876 0.189268 0.095353 -2.543024 -2.331785 -0.535232 0.764416 1.571537 0.882400 0.926619 -0.778187 -0.042009 -1.785904 1.528690 -1.994293 -0.258090 0.129992 -0.535388 2.480592 -0.631322 -0.867571 -2.133860 0.663134 -0.407933 -0.842545 2.738823 0.997166 -1.455746 -0.808125 -1.376283 0.318575 1.362111 2.447022 -0.887450 -0.526562 0.911795 -0.525061 -0.578403 -1.042121 1.234926 -0.980183 2.287018 -1.293293 -0.823421 0.323725 1.936145 -0.590791 0.639851 -0.442680 0.154946 -0.380168 1.523709 0.522416 -0.199170 -1.425007 -2.367840 0.334045 -0.160601 0.439895 0.118459 -0.943923 -1.264159 0.250669 1.046238 1.988654 1.663873 0.515477 0.921605 -1.820918 -1.743254 0.482656 0.758963 0.532479 -1.276128 0.639184 -0.884349 -0.149829 0.410073 0.789964 0.641093 -1.323114 -1.732233 -0.360030 1.268663 0.675088 -1.450512 1.667956 0.206899 -0.571338 0.266345 -0.290413 1.196432 -0.064708 0.277791 -0.355865 -1.238311 0.213870 -0.641068 2.899736 -0.109422 0.374850 0.869095 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 1.235372 0.069243 0.384613 0.553243 0.501528 -1.576003 0.631298 1.337365 -0.149720 -1.685044 -0.980448 0.050008 -0.088608 -1.290342 0.389975 0.140604 -0.148931 0.968299 -2.132829 1.202617 0.771599 1.013124 -0.248220 -1.345719 0.315177 -0.194131 -1.473968 0.570443 -0.090724 1.136293 -0.863844 -0.520047 0.781211 0.243459 0.244158 1.273225 0.632706 -0.075751 1.350767 0.532114 1.868448 0.932989 -0.230264 0.785101 1.332285 1.092091 -0.547937 1.362836 -1.187200 -0.442693 0.533502 -1.213324 -1.023670 -0.015805 -0.813995 1.008150 2.140054 1.196447 -0.746250 1.105800 -0.489831 0.015695 0.541928 -0.617455 1.097690 1.554669 -0.201471 0.438062 2.697074 -0.289225 -0.223243 0.448388 1.498782 -0.374261 0.490208 -0.742793 -0.472663 -2.671615 -0.099480 -2.355696 0.052425 -0.208872 2.339054 -1.317226 1.025658 1.682519 0.778873 0.877238 -0.819050 -0.735280 -0.688092 0.550976 -0.780203 2.729175 -0.433893 0.700852 -0.553961 0.558123 0.743146 0.889919 -0.304771 -0.413541 -1.905975 -2.976297 -0.846403 -0.203701 -0.799653 -0.585107 -1.945191 -0.566522 1.673469 1.083282 -2.111561 -0.130957 1.050891 0.471519 -0.212267 0.076980 -1.404991 0.167098 -0.687991 -0.018936 -0.351305 -0.848975 -0.781144 -1.120160 -0.157250 0.246900 0.183492 -0.637950 -1.517074 -0.106802 -0.285635 -0.460499 -0.166651 -0.084582 -0.311971 -1.555298 0.399058 -1.400257 0.747469 -1.857077 -0.098727 -0.572724 -1.505347 0.112711 1.533811 0.225850 0.269120 0.211607 -0.511811 -1.025040 -1.194787 -1.903329 0.700860 -0.881312 1.260479 -0.576766 0.072217 -0.965052 -0.101811 -0.964687 0.084615 -0.823356 0.317187 -0.850868 2.820275 -0.738353 -0.277453 -1.409314 -0.161200 1.966983 0.158746 -0.483306 -0.802845 -0.166135 -1.064729 -1.259184 0.887096 0.026915 0.124787 -0.694681 0.476229 -1.333934 0.876979 -0.585813 0.724078 -0.276785 -0.756964 -1.208696 -0.122250 -0.247942 -0.204102 -0.478297 -0.600714 0.025791 0.261385 0.572664 -0.016773 0.084122 0.214527 -1.975160 -1.936787 -0.592429 0.675846 1.099439 0.872538 0.818655 -0.779391 0.057769 -1.389467 1.417509 -1.242171 -0.263382 -0.117330 -0.416948 2.165938 -0.426882 -0.695966 -1.807925 0.521233 -0.253443 -0.816402 2.222635 0.756936 -1.168798 -0.754505 -1.321542 0.180789 1.207491 2.051391 -0.685380 -0.433949 0.786314 -0.640849 -0.463714 -0.967007 1.039226 -0.775543 1.963503 -1.055768 -0.637521 0.316494 1.609265 -0.479279 0.828111 -0.277083 0.366211 -0.232534 1.272754 0.359129 -0.383589 -1.086555 -1.782594 0.368061 0.125378 0.536411 -0.043873 -0.653968 -1.156720 0.165611 1.081307 1.613182 1.824292 0.338880 0.767896 -1.305831 -1.423187 0.420248 0.839594 0.535645 -1.217177 0.372044 -0.647674 -0.038475 0.490097 0.631376 0.903180 -1.220536 -1.883166 -0.431314 1.134685 0.582341 -1.289923 1.440253 0.038838 -0.540454 0.283207 -0.284769 1.179014 -0.026250 0.502816 -0.323945 -1.094595 0.188097 -0.528291 2.490254 -0.040304 0.197472 0.918389 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = 0.792168 0.031853 -0.002083 0.609523 0.522324 -0.486744 0.202272 0.483851 0.096236 -1.429953 -0.788001 0.672889 -0.014714 -0.335808 0.199774 0.287395 0.314324 0.666713 -0.619970 0.456053 0.270269 0.444258 -0.250696 -0.456503 0.169092 -0.194677 -0.404660 0.011701 0.295876 0.820793 -0.657058 -0.065852 0.639076 -0.045752 0.224739 0.719615 0.695132 -0.068850 0.182847 -0.229810 1.468106 0.255253 0.260368 0.963339 0.625619 0.805502 -0.441996 1.512446 -0.063813 -0.415673 0.505974 -0.703802 -0.508771 0.117836 -0.851946 0.959296 0.970606 0.451061 -0.676312 0.529936 0.142736 0.190419 0.259993 -0.537069 0.571675 0.970036 -0.053902 0.540606 1.543299 -0.454744 -0.224863 0.486438 0.941831 0.341162 0.686304 -0.561017 -0.168259 -0.694052 -0.212069 -0.762885 0.295666 -0.452319 2.024373 -1.034535 0.384995 0.989499 0.249486 0.632377 -0.268594 -0.202884 -0.717686 0.319227 -0.321067 1.256734 -0.029564 0.343724 -0.561369 0.190448 0.130308 0.580680 -0.031192 -0.446112 -1.071880 -1.707808 -0.862214 -0.325009 -0.162125 -0.120590 -1.228358 -0.221370 0.583830 1.040827 -1.377505 -0.088054 0.527684 0.296122 0.303306 0.549222 -0.872186 -0.095516 -0.107092 -0.079648 -0.348257 -0.378486 -0.390283 -0.653004 -0.250864 -0.073854 0.331509 -0.330843 -0.908166 -0.287093 -0.370035 0.040331 -0.132248 -0.129105 0.121068 -1.179032 0.507117 -0.395444 0.336857 -1.115851 -0.577547 -0.402684 -1.136818 -0.195749 1.659682 0.019861 1.152097 0.197600 -0.442955 -0.981281 -0.932623 -1.163727 0.415835 -0.528684 0.615933 0.283184 0.038600 -0.177419 -0.316560 -0.549639 0.198214 -0.619363 -0.022984 -0.364074 1.420070 -0.801766 -0.109368 -1.264933 -0.073525 0.968286 -0.048120 -0.083342 -0.471906 -0.588116 -0.805801 -0.770194 0.646748 -0.273092 0.524612 -0.185502 0.183984 -0.663468 0.121549 -0.612781 0.275198 -0.224178 -0.739485 -0.957364 0.151616 -0.248467 -0.373360 0.107372 -0.692694 0.322564 0.232776 0.519957 0.016068 0.103420 -0.055888 -1.557771 -1.272348 -0.384777 -0.018936 0.770024 0.721199 0.268406 -0.556421 -0.346254 -0.968912 0.720005 -1.457092 0.001504 0.129776 -0.026147 0.937430 -0.579124 -0.305941 -1.294671 0.401262 0.119387 -1.266790 1.136667 0.442997 -0.769941 -0.348482 -0.755760 0.295517 0.568477 1.320597 -0.525412 -0.281181 0.581703 -0.350567 -0.183116 -0.730902 0.692252 -0.335278 0.976046 -0.888426 -0.478437 0.275719 0.948767 -0.281243 0.314230 0.358257 0.225710 0.160327 1.045818 0.525267 -0.065916 -0.798483 -1.558948 0.327710 0.175178 0.138409 0.267520 -0.664561 -0.482465 0.247148 0.135685 0.965674 0.167608 0.703765 0.737902 -1.026898 -0.910683 0.515751 0.086403 0.438863 -0.668987 0.458721 -0.566891 -0.104350 0.012083 0.308496 0.081637 -0.549415 -0.792057 -0.058794 0.867409 0.349450 -0.116366 0.945957 0.220686 -0.553970 0.443354 -0.175601 0.748994 -0.170559 -0.538673 -0.170872 -0.406821 -0.042628 -0.511849 1.238174 -0.215920 0.002694 0.360274 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = 0.791375 -0.317020 0.190494 0.500793 0.588586 -0.741848 0.245984 0.458266 0.165359 -1.124433 -0.516836 0.426460 -0.104400 -0.644725 0.195234 0.192695 0.144541 0.497432 -0.698053 0.704648 0.211308 0.478825 -0.157412 -0.598342 0.216169 -0.200897 -0.285492 0.207699 0.073687 0.602338 -0.610714 -0.178308 0.471094 0.095810 0.202166 0.677317 0.597819 -0.144543 0.377526 0.099426 1.299355 0.242042 0.213408 0.774745 0.788394 0.635843 -0.246083 1.441614 0.308471 -0.221776 0.595461 -0.650635 -0.494519 0.030713 -0.816471 0.832349 0.910570 0.289283 -0.560125 0.443218 0.017912 0.099587 0.258240 -0.366070 0.654980 0.871430 -0.059386 0.328785 1.644981 -0.238719 -0.264325 0.519487 1.183280 0.303236 0.717080 -0.641955 -0.317350 -1.037965 -0.228730 -0.564994 0.287868 -0.454997 1.384917 -0.784485 0.359588 0.917799 0.280362 0.575183 -0.264587 -0.259117 -0.581221 0.458074 -0.181168 1.257260 -0.242341 0.431597 -0.517802 0.100831 0.133774 0.591715 0.046607 -0.374866 -0.944896 -1.681478 -0.752928 -0.239156 -0.334971 -0.432531 -1.309950 -0.045499 0.480517 0.710560 -1.162768 -0.172805 0.522583 0.196429 0.330263 0.174112 -0.578715 -0.192359 -0.035707 0.117472 -0.462952 -0.375414 -0.489142 -0.862669 -0.026707 0.082036 0.229732 -0.523662 -0.509131 -0.163395 -0.342980 0.255171 -0.071115 -0.200805 -0.049722 -1.186544 0.289865 -0.420924 0.305245 -0.985874 -0.539622 -0.505270 -0.760124 -0.040537 1.679579 -0.185725 0.979842 0.266747 -0.419940 -0.834084 -0.738682 -1.152162 0.269780 -0.818464 0.509598 0.080462 0.109029 -0.384843 -0.046807 -0.657178 0.087521 -0.588769 0.056789 -0.496413 0.744096 -0.701871 -0.026407 -1.072720 -0.117297 1.135289 0.085162 -0.199988 -0.352734 -0.765779 -0.556803 -0.821179 0.467384 -0.140050 0.361921 -0.305903 0.240152 -0.688312 0.311200 -0.407216 0.253453 -0.202559 -0.703256 -0.728760 -0.022296 -0.245581 0.020758 -0.146989 -0.533767 0.237920 -0.107348 0.605660 0.040496 0.198810 -0.193277 -1.548034 -1.303236 -0.456411 0.336378 0.833931 0.316967 0.416358 -0.440065 -0.247824 -0.861185 0.668149 -1.483083 -0.150773 0.280886 -0.211664 1.033792 -0.375864 -0.293340 -1.113040 0.351409 -0.116742 -0.845490 1.173527 0.448075 -0.820885 -0.484409 -0.805015 0.213039 0.598313 1.354204 -0.397836 -0.119772 0.516666 -0.079470 -0.289532 -0.683424 0.663487 -0.365087 1.122440 -0.800109 -0.613265 0.082180 1.026863 -0.339467 0.094555 0.008872 0.269635 -0.139442 0.899493 0.307379 0.058483 -0.736143 -1.461725 0.107144 0.429222 0.213957 0.445585 -0.767969 -0.527066 0.179093 0.315226 1.036726 0.433894 0.758719 0.541093 -0.824137 -0.817914 0.497010 0.125984 0.281226 -0.623103 0.505826 -0.571201 -0.260202 0.004939 0.346053 0.059627 -0.446685 -0.733224 -0.120435 0.645652 0.428138 -0.363257 0.774076 0.251208 -0.390370 0.279488 -0.108040 0.658024 -0.067149 -0.120302 -0.142869 -0.552569 -0.079237 -0.309617 1.390636 -0.180783 0.206831 0.190282 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 1.407794 0.245802 -0.054271 1.716268 -0.039299 -0.394453 0.180310 1.468611 -0.732466 -4.454517 -3.310321 1.111787 0.050418 0.754422 1.084766 0.717372 0.129657 0.235995 -5.175837 0.898239 1.983888 0.832527 0.994548 -0.118464 0.906519 -0.819377 -1.222219 0.049879 0.807030 2.472336 -1.724587 0.934697 1.942878 -0.073728 0.697810 1.382495 -0.668692 -0.217256 0.309746 -0.581173 3.038386 1.143096 -0.169942 1.144230 0.390642 2.291312 -1.125138 2.728067 0.460388 -1.871975 1.607672 -2.142827 -1.712552 0.777292 -0.964088 1.438153 2.203833 1.873774 -0.856989 0.734017 -0.840060 0.085145 0.199758 -1.753101 2.066448 1.734630 1.285999 1.166910 2.183223 -1.390372 -0.237957 0.998634 0.613558 0.267490 0.015176 -1.882429 -0.455686 -3.088262 -0.003380 -4.427953 -1.401559 -0.491438 4.581245 -2.534381 0.582769 1.197914 -0.359260 2.037628 -0.837217 0.644716 -1.860846 0.151276 -0.307053 2.053326 -0.167958 -0.368250 -0.173304 0.701612 0.925305 1.567748 -0.332178 -0.807717 -3.221812 -3.685400 -0.924236 -0.383459 1.244813 1.389929 -3.119691 -0.137403 1.312469 2.262744 -3.271977 -0.136814 1.613027 1.847380 -0.238750 2.316441 -2.550471 -0.525257 0.067713 0.518103 1.589616 -1.167916 0.169191 -1.805652 -0.142424 0.037790 1.031923 -0.200319 -2.530920 -1.888052 -0.257169 -0.762612 -0.188012 0.248369 1.221657 -0.447466 1.847429 -0.961067 1.488484 -3.099654 -0.153009 -1.068566 -1.619737 -0.409835 3.632515 3.021177 0.892399 0.335405 -1.041237 -1.202324 -2.425240 -1.578992 0.249969 0.085561 2.031578 0.588599 -0.153515 1.268907 -0.673396 -0.027408 -0.710740 -1.034499 -0.237896 -0.834423 2.253207 -0.589738 -0.336193 -2.475403 -0.259567 0.691710 -2.179292 0.914207 -0.652281 -1.476998 -3.103526 -2.187510 2.012529 -0.761372 0.854289 -1.177868 1.001145 -1.495156 0.319066 -1.920298 -0.198305 0.342944 -2.497324 -2.454032 0.302747 -0.346107 -1.327493 0.463888 -1.351367 -0.484688 2.022083 2.178646 1.201969 0.225803 -0.061169 -2.943736 -2.330481 -0.757076 -1.662488 1.870416 1.681133 -0.860246 -2.455786 -1.021473 -2.217223 2.470831 -1.253166 0.332451 -1.659787 -0.181137 2.143520 -1.215367 0.169898 -2.377368 0.666916 1.109796 -5.506551 2.596864 1.412498 -0.800558 -0.284344 -1.532906 0.563167 1.644999 2.031785 -0.948431 -0.872568 -0.003576 -1.069935 0.041341 -1.075429 2.072803 -1.648431 0.528863 -1.412218 -0.894919 1.169896 1.205599 0.227511 1.443553 1.629155 1.265250 1.598234 1.725224 1.324618 -1.615546 -1.369581 -4.976058 1.548209 3.090117 -0.114528 0.343388 -1.719699 -1.787695 0.092645 -0.052108 2.182132 1.310258 0.534894 1.833656 -1.790982 -1.811581 -0.638262 0.409762 -0.131990 -0.661249 0.139658 -0.559598 0.446479 1.477479 -0.338224 0.901757 -1.701907 -2.695313 -0.270465 2.414054 1.215392 0.800025 2.184053 0.905060 -1.732029 -0.003687 0.250522 0.530754 -0.807536 -0.988272 -0.647571 -0.291301 -0.077100 -1.126559 0.729280 0.096100 -0.748117 0.385126 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.518303 0.065259 0.096241 0.677140 0.148119 -0.601145 0.236841 0.584806 -0.195707 -1.389715 -1.020970 0.964440 -0.103732 -0.211739 0.219718 -0.023506 0.001401 0.321756 -1.702266 0.635814 0.484123 0.450021 0.009318 -0.414812 0.248939 -0.285130 -0.133057 0.459789 0.153532 0.833924 -0.576280 -0.054451 0.646894 0.129111 0.420505 0.794670 0.129178 -0.023902 0.133966 -0.154588 1.289324 0.616264 -0.014190 0.714126 0.591672 0.867014 -0.004375 0.664706 0.465382 -0.572228 0.175312 -0.244902 -0.681162 -0.116717 -0.580399 0.564870 0.665129 0.419428 -0.588973 0.470486 -0.164600 -0.205746 0.195305 -0.505453 0.763503 0.487816 0.234320 0.380250 1.225985 -0.485486 -0.291645 0.581793 0.870304 0.213177 0.283539 -0.435460 -0.694014 -1.084562 -0.097755 -1.662526 -0.543431 -0.106558 1.514080 -0.886818 0.357625 0.545021 -0.122889 0.607648 -0.418909 -0.263146 -0.726707 0.056296 -0.206355 1.014763 0.067226 -0.004781 0.061193 0.313873 0.474553 0.830203 -0.243652 -0.479272 -0.761735 -1.894986 -0.168773 -0.215988 0.083064 0.026461 -0.965508 -0.307121 0.466105 1.347140 -1.218736 -0.207392 0.815972 0.259666 -0.376715 -0.099333 -0.606534 0.060832 0.023269 0.014620 0.543927 -0.511261 -0.239972 -0.076416 0.060324 -0.023600 0.316434 -0.054457 -0.702306 -0.723128 -0.037943 0.114804 -0.189803 -0.235596 0.020297 -0.484205 0.565315 -0.479240 0.655515 -0.978521 0.159349 -0.359626 -0.457248 -0.099225 1.126878 0.685967 0.566435 -0.083918 -0.159329 -0.429145 -0.781252 -1.143924 0.652214 -0.176515 0.612683 -0.051682 0.000753 0.130639 -0.214786 -0.326772 0.029760 -0.423752 0.045428 -0.233199 0.717479 -0.233457 -0.089435 -0.877849 -0.060856 0.491282 -0.125567 0.053873 -0.462471 -1.099668 -0.762504 -0.812352 0.684589 -0.102825 0.066572 -0.305009 0.074777 -0.357556 0.277682 -0.707267 0.191485 -0.185112 -0.753653 -0.835802 -0.127513 -0.228599 -0.221210 -0.062049 -0.449008 -0.147906 0.463712 0.520856 0.245322 0.122664 0.147953 -1.042879 -0.794880 -0.202063 -0.115312 0.722331 0.583996 0.122166 -1.095945 -0.201274 -0.839702 0.845048 -0.795911 0.003384 -0.326789 -0.465788 1.238017 -0.334798 -0.075441 -0.686225 0.393120 0.412839 -1.833811 1.030660 0.828716 -0.435976 -0.325446 -0.253334 -0.094303 0.887761 1.123739 -0.596856 -0.369925 0.247157 -0.453389 -0.052763 -0.390132 0.776194 -0.445270 0.684335 -0.658847 -0.525699 0.356398 0.603273 0.069945 0.431897 0.182621 0.422257 0.257302 0.874887 0.373546 -0.140358 -0.831023 -1.723538 0.605336 0.850799 0.107186 0.430988 -0.483642 -0.796813 0.104290 -0.178690 0.947167 0.216627 -0.134883 0.661495 -0.732668 -0.839631 -0.139247 0.044351 0.084909 -0.368044 0.578179 -0.355908 0.143241 0.206835 -0.072156 0.176134 -0.250152 -0.772940 -0.112561 0.509190 0.686746 0.013319 0.900803 0.074548 -0.735497 0.049040 -0.051677 0.297651 -0.246511 -0.566015 -0.361519 -0.499763 0.163788 -0.281309 0.721378 -0.042339 0.097005 0.289516 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = 1.577617 -0.215297 0.196899 0.861142 0.665749 -1.866187 0.639035 1.360285 0.017679 -2.017275 -1.004154 0.484510 -0.044906 -1.519572 0.362728 0.343110 -0.152375 1.022000 -2.246273 1.529472 0.727574 1.066212 -0.481807 -1.509984 0.356649 -0.303624 -1.185691 0.604225 -0.100095 1.293892 -1.043239 -0.481714 0.928843 0.170153 0.368787 1.456529 0.773925 -0.109500 1.286970 0.600972 2.265582 1.081393 -0.169465 1.017478 1.537679 1.292655 -0.501046 2.046588 -0.922815 -0.484253 0.757479 -1.015355 -1.172649 -0.047961 -1.155711 1.275648 2.322328 1.076630 -0.938575 1.155069 -0.496743 0.041012 0.678925 -0.432723 1.448935 1.764176 -0.041191 0.626482 3.265446 -0.326029 -0.263326 0.655559 1.965593 -0.243087 1.121607 -0.973666 -0.871566 -2.590988 -0.172121 -2.254772 0.171067 -0.364464 2.687394 -1.607158 1.011152 1.796095 1.019882 1.186427 -0.984133 -0.736746 -0.881362 0.686612 -0.862159 3.322463 -0.514676 0.967127 -0.826862 0.625309 0.683652 1.030945 -0.191107 -0.688281 -1.926320 -3.394824 -1.138615 -0.381267 -0.953785 -0.691644 -2.489375 -0.502005 1.559418 1.358088 -2.514900 -0.127296 1.176038 0.415562 0.520703 0.105658 -1.435963 0.177709 -0.613708 0.035858 -0.547241 -0.899417 -0.934932 -1.325737 0.015365 0.338515 0.221419 -0.755718 -1.812329 -0.037353 -0.329222 -0.264384 -0.127727 -0.067123 -0.231361 -2.146468 0.469200 -1.478158 0.825828 -2.215235 -0.443435 -0.788028 -1.763590 0.082769 2.035287 0.121254 0.818175 0.177008 -0.648818 -1.271393 -1.608431 -2.476905 0.686869 -1.225471 1.139786 -0.495571 0.128107 -1.059320 -0.138642 -1.077512 0.295222 -1.072500 0.266805 -0.986321 2.920158 -0.909625 -0.246758 -1.612663 -0.369311 2.128852 0.451997 -0.331314 -0.813147 -0.955729 -1.395565 -1.459206 1.030122 -0.031024 0.247582 -0.855041 0.408240 -1.613816 0.893625 -0.723274 0.841380 -0.380538 -0.872297 -1.427443 -0.149471 -0.294471 -0.100005 -0.643222 -0.852143 0.142386 0.161868 0.685738 -0.011876 0.189268 0.095353 -2.543024 -2.331785 -0.535232 0.764416 1.571537 0.882400 0.926619 -0.778187 -0.042009 -1.785904 1.528690 -1.994293 -0.258090 0.129992 -0.535388 2.480592 -0.631322 -0.867571 -2.133860 0.663134 -0.407933 -0.842545 2.738823 0.997166 -1.455746 -0.808125 -1.376283 0.318575 1.362111 2.447022 -0.887450 -0.526562 0.911795 -0.525061 -0.578403 -1.042121 1.234926 -0.980183 2.287018 -1.293293 -0.823421 0.323725 1.936145 -0.590791 0.639851 -0.442680 0.154946 -0.380168 1.523709 0.522416 -0.199170 -1.425007 -2.367840 0.334045 -0.160601 0.439895 0.118459 -0.943923 -1.264159 0.250669 1.046238 1.988654 1.663873 0.515477 0.921605 -1.820918 -1.743254 0.482656 0.758963 0.532479 -1.276128 0.639184 -0.884349 -0.149829 0.410073 0.789964 0.641093 -1.323114 -1.732233 -0.360030 1.268663 0.675088 -1.450512 1.667956 0.206899 -0.571338 0.266345 -0.290413 1.196432 -0.064708 0.277791 -0.355865 -1.238311 0.213870 -0.641068 2.899736 -0.109422 0.374850 0.869095 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = 0.023430 -0.111637 -0.046153 0.799386 0.241394 -0.371550 0.132440 -0.006710 0.082878 -1.219139 -0.170722 0.370346 -0.197616 0.094359 -0.163733 0.329985 0.042056 0.373531 -0.290315 0.311460 0.490795 0.526998 0.299974 -0.171985 0.442471 -0.025120 0.055687 0.045504 0.317593 0.609051 -0.535062 0.125508 0.652069 -0.006942 -0.199788 0.497283 0.633355 0.415672 0.158143 -0.141927 0.559698 -0.129789 -0.047650 0.460485 0.140151 0.678130 0.163215 0.824944 0.017545 -0.542560 -0.078687 -0.336251 -0.255488 -0.235715 -0.314242 0.828625 0.421128 0.910426 -0.439925 0.160562 0.208119 0.113918 0.268141 -0.309144 0.396813 0.807042 0.014898 0.576254 1.209053 -0.340572 -0.107521 0.337205 0.617997 0.238165 0.528013 -0.442324 -0.298899 -0.422914 -0.461654 -0.537026 -0.125249 -0.015005 1.046218 -0.849523 0.139716 0.166976 -0.012006 0.718293 -0.198717 0.156657 -0.683449 0.228788 0.070654 1.014348 0.138730 -0.000123 -0.438649 0.364731 0.141155 0.375610 0.029159 -0.125314 -0.561370 -0.832184 -0.378695 -0.354529 0.115836 0.286443 -1.348138 -0.187234 0.064462 0.756366 -1.406139 -0.146074 0.433281 0.388157 0.418169 0.163143 -0.212571 0.218013 -0.050849 -0.407866 -0.322796 -0.297533 -0.198782 -0.286248 -0.382149 -0.174369 0.110265 0.021704 -0.892897 -0.205639 -0.408619 -0.077762 0.234756 0.298977 0.279753 -0.536199 0.360276 -0.482442 0.241834 -0.878134 -0.545860 0.222165 -0.848200 -0.301098 1.079679 0.061328 0.633029 -0.462782 -0.458605 -1.047443 -0.883354 -0.869676 0.245295 -0.208464 0.362203 0.690071 -0.126585 0.038651 -0.362206 -0.291567 0.378016 -0.355670 -0.102638 -0.311475 0.571202 -0.392237 0.293951 -0.945688 -0.369737 0.546589 -0.286043 0.064352 -0.286948 -0.462530 -1.020000 -0.522830 0.380820 -0.241286 0.275733 -0.439375 0.033869 -0.716796 0.257897 -0.500039 -0.045388 -0.006261 -0.429154 -0.800999 0.431934 -0.252470 -0.214917 0.164518 -0.444511 0.106090 -0.147353 0.133074 0.244365 -0.032226 -0.108283 -0.891557 -0.702429 0.122234 -0.172438 0.195229 0.172458 0.058483 -0.465476 -0.496392 -0.671874 0.771677 -0.734828 0.158928 0.254821 0.528618 0.866684 -0.377332 0.167848 -0.796330 0.318653 0.232529 -0.951201 0.535732 0.311753 -0.437607 -0.057460 -0.139534 0.197139 0.573536 0.538752 -0.605236 -0.563000 0.422713 -0.212927 -0.091438 -0.396419 0.316687 -0.426734 0.780842 -0.500268 -0.136030 -0.014729 0.483936 -0.305695 0.201293 0.235983 -0.338708 0.057029 0.558353 0.528638 0.087626 -0.558026 -0.959584 0.094641 -0.075122 0.253794 0.134059 -0.668832 -0.037321 0.561333 -0.040812 0.770329 -0.045073 0.013900 0.571923 -1.162571 -0.594733 0.597947 -0.081602 0.230048 -0.196660 0.455553 -0.199377 -0.081061 0.319443 0.140306 -0.223848 -0.588263 -0.099338 0.070486 0.911845 -0.235208 -0.015411 0.658369 -0.128011 -0.339259 0.177397 0.141866 0.355146 -0.479201 -0.657399 -0.060090 -0.045132 0.102743 -0.593522 0.993684 -0.332842 -0.267161 0.142642 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = 1.120696 0.104123 0.628029 0.496174 0.658025 -1.440030 0.695391 1.308040 -0.074350 -1.655449 -0.882848 0.158109 -0.160653 -1.153946 0.251613 -0.044570 -0.092648 1.077634 -1.845638 1.028826 0.702342 1.125203 -0.042434 -1.441327 0.308931 -0.101904 -1.256405 0.605152 0.049697 1.114673 -0.830396 -0.729928 0.759064 0.319406 0.135902 1.299731 1.034544 -0.034998 1.076999 0.282661 1.834360 0.833644 -0.194961 0.990382 1.297527 1.057430 -0.334692 1.187626 -0.990977 -0.443459 0.261006 -1.277388 -1.025115 -0.230165 -0.774772 1.103303 2.054187 1.312934 -0.749950 1.099748 -0.172646 -0.046865 0.478828 -0.726073 0.722173 1.480293 -0.431273 0.374609 2.662630 -0.488155 -0.418486 0.556199 1.540442 -0.135314 0.514438 -0.784983 -0.474487 -2.595144 -0.157604 -2.206783 -0.006747 -0.257105 2.221978 -1.269705 1.105633 1.783441 0.581651 0.656619 -0.625598 -0.805763 -0.699496 0.555028 -0.673008 2.620601 -0.345526 0.572238 -0.449483 0.462465 0.830544 1.008244 -0.122761 -0.348589 -1.750069 -2.847031 -0.663836 -0.245463 -0.749576 -0.576354 -1.622083 -0.662134 1.583964 1.137836 -1.979744 -0.232359 1.118164 0.534731 -0.344480 -0.243485 -1.146056 0.245228 -0.602174 -0.278337 -0.386646 -1.001238 -0.885038 -0.673595 -0.293496 0.096907 0.147629 -0.644227 -1.326670 -0.268808 -0.407589 -0.291133 -0.139274 -0.315378 -0.441170 -1.590806 0.369825 -1.335040 0.700281 -1.592153 -0.054002 -0.316920 -1.394503 0.039283 1.565856 -0.204097 0.349574 0.166739 -0.489907 -1.141415 -0.836423 -1.814426 0.895234 -0.713523 1.268241 -0.400975 0.050242 -0.901056 -0.165962 -1.107484 0.041907 -0.696999 0.344782 -0.655150 2.559889 -0.912116 -0.179516 -1.476904 0.025820 2.002529 0.255710 -0.583976 -0.888597 -0.126765 -0.813376 -1.287004 0.856798 -0.006593 0.067160 -0.537504 0.380464 -1.114848 0.845062 -0.579412 0.839048 -0.247793 -0.890979 -1.207592 -0.011958 -0.354975 -0.161155 -0.176017 -0.587066 0.034344 -0.036697 0.527672 -0.103379 0.003711 0.285539 -2.033745 -1.860720 -0.703708 0.716634 0.978770 0.647838 0.896546 -0.831611 -0.004561 -1.181560 1.323300 -1.213050 -0.290522 -0.178506 -0.246137 2.101509 -0.326644 -0.510588 -1.853367 0.555773 0.010995 -0.633570 2.100590 0.696968 -1.042009 -0.841613 -1.122161 -0.045075 1.229479 2.046383 -0.814345 -0.639771 0.946810 -0.732663 -0.441208 -1.060805 0.961684 -0.603817 2.001389 -1.084694 -0.705052 0.090143 1.587958 -0.495135 0.894744 -0.017400 0.427269 -0.373158 1.388803 0.377711 -0.230923 -1.093097 -1.554172 0.500754 0.234707 0.652631 -0.005739 -0.682135 -1.108426 0.376873 1.180998 1.502574 1.799547 0.393518 0.802284 -1.223658 -1.321262 0.669973 0.649896 0.727220 -1.222783 0.394085 -0.665764 -0.013671 0.365292 0.418528 0.825379 -0.963640 -1.667500 -0.447332 1.095103 0.600779 -1.076749 1.430131 -0.043582 -0.638510 0.501070 -0.321551 1.304982 -0.112711 0.503112 -0.206097 -1.026655 0.153920 -0.436413 2.439366 -0.090934 -0.008604 0.876286 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = 0.361970 0.104217 0.097853 0.288782 0.296630 -0.448961 0.177750 0.278588 -0.133496 -0.668439 -0.353834 0.153623 -0.043140 -0.382295 0.115428 0.101538 0.059566 0.376290 -0.387373 0.347666 0.181260 0.248333 -0.155487 -0.381268 0.071052 -0.134235 -0.350552 0.192811 0.005639 0.407636 -0.331410 -0.090590 0.286027 0.121637 0.161233 0.430846 0.345441 -0.057513 0.287086 0.075136 0.762634 0.158893 0.059180 0.350947 0.470452 0.418921 -0.179857 0.457059 -0.342322 -0.137934 0.152197 -0.283501 -0.263544 0.010886 -0.440811 0.410346 0.530130 0.286450 -0.329644 0.345447 -0.127466 0.048779 0.161378 -0.222932 0.410146 0.463873 -0.063275 0.230877 0.920818 -0.178468 -0.139728 0.260456 0.555252 -0.004419 0.233020 -0.077943 -0.126030 -0.669879 -0.125087 -0.616702 0.107637 -0.089623 0.986833 -0.439778 0.196741 0.581562 0.226001 0.321843 -0.242993 -0.226755 -0.352043 0.201427 -0.261252 0.776591 0.000344 0.227823 -0.276447 0.145137 0.192926 0.358017 -0.155668 -0.202197 -0.591551 -1.060152 -0.425639 -0.124861 -0.225586 -0.250793 -0.679634 -0.189111 0.568945 0.670424 -0.719106 -0.059751 0.329535 0.139279 -0.063649 -0.000155 -0.511393 0.031245 -0.138831 -0.017430 -0.147912 -0.167066 -0.252433 -0.352092 -0.048617 -0.051788 0.161065 -0.214640 -0.512477 -0.098155 -0.121705 -0.132989 -0.067115 -0.099492 -0.070130 -0.567567 0.180450 -0.351217 0.251823 -0.599806 -0.055433 -0.255084 -0.639182 0.001560 0.641183 0.118290 0.354991 0.099604 -0.185079 -0.405986 -0.470720 -0.742732 0.267243 -0.321877 0.351366 -0.073058 0.016699 -0.246627 -0.112861 -0.341271 0.225218 -0.342965 0.043657 -0.266201 0.893200 -0.316767 -0.112163 -0.607058 -0.054992 0.628545 0.088102 -0.126655 -0.313773 -0.144194 -0.390584 -0.472779 0.303190 -0.067521 0.117143 -0.174807 0.095398 -0.426471 0.257691 -0.247106 0.236724 -0.139501 -0.297829 -0.458737 -0.024540 -0.115896 -0.256352 -0.100044 -0.277833 0.108307 0.123285 0.004082 -0.000330 0.030124 -0.003351 -0.628191 -0.661874 -0.169751 0.195496 0.293494 0.441890 0.285618 -0.376858 -0.089439 -0.536651 0.465734 -0.555391 -0.055994 0.100443 -0.151929 0.653963 -0.255036 -0.233002 -0.508838 0.220305 -0.057115 -0.543669 0.672136 0.322594 -0.472811 -0.304055 -0.450158 0.104355 0.360767 0.794351 -0.278529 -0.040111 0.303983 -0.141751 -0.149603 -0.301932 0.372205 -0.201205 0.645471 -0.478431 -0.311944 0.128384 0.599292 -0.172184 0.201403 -0.032205 0.143995 -0.007636 0.520493 0.203565 -0.032334 -0.393298 -0.635098 0.113978 -0.133092 0.125738 0.127550 -0.201354 -0.346131 0.057802 0.095446 0.591371 0.222997 0.097670 0.346633 -0.450056 -0.505709 0.207240 0.154704 0.197990 -0.483894 0.310923 -0.297916 -0.085467 0.035860 0.215218 0.160969 -0.334610 -0.516951 -0.116989 0.399045 0.253061 -0.295964 0.511306 0.054550 -0.232213 0.127275 -0.067945 0.448072 0.036763 -0.179236 -0.181660 -0.367756 0.040557 -0.198883 0.806769 -0.081064 0.088145 0.337584 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = 1.108076 0.107223 0.621149 0.497104 0.624460 -1.430971 0.715236 1.311855 -0.057546 -1.638708 -0.868582 0.188258 -0.154928 -1.146265 0.230428 -0.069740 -0.082220 1.101612 -1.827163 1.001512 0.687815 1.126072 -0.069450 -1.432970 0.283318 -0.087599 -1.261159 0.621856 0.056351 1.126686 -0.803763 -0.750563 0.767079 0.301941 0.120455 1.323945 1.070214 -0.009653 1.061246 0.270238 1.821613 0.837997 -0.198632 1.001930 1.280337 1.070637 -0.312309 1.188072 -0.981995 -0.451505 0.253063 -1.284660 -1.026327 -0.262100 -0.767812 1.078351 2.053737 1.337985 -0.758465 1.133623 -0.162844 -0.050060 0.488702 -0.713053 0.697000 1.487498 -0.457100 0.382363 2.646553 -0.512484 -0.413124 0.539570 1.524485 -0.135779 0.500718 -0.787255 -0.482638 -2.587507 -0.152060 -2.208212 -0.019697 -0.239660 2.224544 -1.280873 1.121420 1.784095 0.563664 0.632229 -0.629804 -0.820913 -0.704113 0.527610 -0.661309 2.619840 -0.330316 0.559714 -0.424949 0.466017 0.837302 1.000056 -0.126265 -0.367436 -1.737402 -2.844577 -0.650357 -0.257437 -0.770927 -0.567001 -1.579579 -0.703579 1.586111 1.122152 -1.987958 -0.234924 1.122988 0.520316 -0.357361 -0.238843 -1.129805 0.277657 -0.605683 -0.300283 -0.346942 -1.020955 -0.878328 -0.621186 -0.313325 0.098646 0.131736 -0.615842 -1.338718 -0.269540 -0.394328 -0.282208 -0.146479 -0.319630 -0.465729 -1.567632 0.370595 -1.355999 0.717413 -1.584620 -0.052539 -0.286472 -1.396825 0.025985 1.561923 -0.219523 0.360600 0.138491 -0.494841 -1.126097 -0.823372 -1.833213 0.932873 -0.684534 1.273469 -0.406739 0.040787 -0.910041 -0.184567 -1.100943 0.040198 -0.680784 0.346096 -0.616979 2.557030 -0.898464 -0.191094 -1.468076 0.052389 1.990526 0.285269 -0.581738 -0.910364 -0.148093 -0.796524 -1.258195 0.870462 -0.001615 0.048861 -0.504120 0.341655 -1.099252 0.831995 -0.584415 0.847262 -0.255989 -0.878370 -1.223609 0.011645 -0.361288 -0.149558 -0.149205 -0.587098 0.029228 -0.042914 0.529480 -0.117539 0.003663 0.321215 -2.016856 -1.834548 -0.698488 0.706958 0.981084 0.657127 0.916102 -0.818965 0.008670 -1.170875 1.309060 -1.210122 -0.276823 -0.178104 -0.248916 2.108100 -0.322856 -0.498916 -1.854616 0.567530 0.052327 -0.640700 2.087012 0.710439 -1.032249 -0.834449 -1.081655 -0.066514 1.235554 2.032762 -0.834352 -0.678619 0.973506 -0.759254 -0.429008 -1.063855 0.934879 -0.577066 1.986852 -1.082866 -0.678695 0.105054 1.566004 -0.485990 0.894606 -0.006389 0.412462 -0.385152 1.401686 0.369988 -0.220618 -1.093259 -1.554151 0.540350 0.242590 0.658517 -0.004585 -0.681395 -1.086764 0.404468 1.169633 1.474404 1.796510 0.361223 0.812835 -1.231559 -1.328171 0.653239 0.640746 0.757596 -1.217353 0.399549 -0.659839 0.018987 0.353316 0.415711 0.828022 -0.934493 -1.656492 -0.429441 1.083737 0.582806 -1.076922 1.445633 -0.090938 -0.645747 0.509924 -0.338403 1.297083 -0.113155 0.485236 -0.195283 -1.019421 0.197227 -0.449814 2.433783 -0.097759 -0.018979 0.902026 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.983638 0.212605 0.524969 0.438442 0.532168 -1.347736 0.646584 1.204705 -0.184790 -1.472801 -0.838013 0.089575 -0.126517 -1.083959 0.245377 -0.041734 -0.141548 0.972154 -1.702893 0.935889 0.669452 0.984841 -0.097700 -1.305044 0.249715 -0.102653 -1.270904 0.595400 -0.012465 1.017625 -0.710087 -0.641620 0.678575 0.310038 0.120772 1.185689 0.851392 -0.013007 1.070242 0.318321 1.618046 0.784018 -0.217767 0.808935 1.178834 0.959996 -0.361617 0.944296 -1.161316 -0.396775 0.216954 -1.096238 -0.928274 -0.196311 -0.649252 0.926183 1.876601 1.202813 -0.643834 1.031599 -0.288478 -0.060976 0.441095 -0.638546 0.702784 1.352289 -0.375642 0.337567 2.385100 -0.416567 -0.356664 0.483049 1.316787 -0.247572 0.346582 -0.577538 -0.423389 -2.355732 -0.121571 -2.138144 -0.067066 -0.150131 2.090854 -1.122823 0.962154 1.590449 0.592202 0.598755 -0.634342 -0.743335 -0.598213 0.470696 -0.698531 2.402401 -0.275467 0.536556 -0.404488 0.445759 0.806637 0.906735 -0.244457 -0.288429 -1.636648 -2.596729 -0.588095 -0.189027 -0.704521 -0.520487 -1.470329 -0.667082 1.553689 1.088367 -1.797130 -0.193041 1.031961 0.487470 -0.387594 -0.164345 -1.164157 0.277853 -0.582658 -0.261528 -0.268083 -0.847003 -0.776128 -0.607255 -0.249098 0.060134 0.114306 -0.544541 -1.341349 -0.218474 -0.312185 -0.422270 -0.117267 -0.254979 -0.415091 -1.348930 0.321988 -1.256039 0.662138 -1.499352 0.059044 -0.294307 -1.349297 0.075067 1.235124 0.001437 0.201327 0.117115 -0.402481 -0.975549 -0.799683 -1.662099 0.811545 -0.608286 1.178144 -0.482531 0.035493 -0.843882 -0.155691 -0.950839 0.102692 -0.618944 0.336774 -0.605912 2.566447 -0.740584 -0.208890 -1.295882 -0.011211 1.749073 0.235736 -0.523982 -0.814748 -0.013668 -0.778427 -1.147233 0.775491 0.028153 -0.005975 -0.518479 0.334392 -1.044107 0.789401 -0.500763 0.773564 -0.212682 -0.738847 -1.079714 -0.037034 -0.274773 -0.262896 -0.227732 -0.491662 -0.023918 0.114112 0.350272 -0.073683 -0.009351 0.283856 -1.681122 -1.632491 -0.580456 0.653120 0.817703 0.739062 0.826969 -0.779135 0.053079 -1.121413 1.234153 -0.944503 -0.263114 -0.199360 -0.247156 1.949759 -0.305700 -0.513098 -1.601036 0.488212 -0.031364 -0.626627 1.891506 0.655067 -0.926585 -0.762730 -1.012452 -0.056286 1.130716 1.828084 -0.727351 -0.544573 0.824180 -0.685420 -0.396021 -0.877008 0.865461 -0.577899 1.798692 -0.944613 -0.595604 0.132979 1.430723 -0.432051 0.857232 -0.105232 0.378209 -0.270218 1.196883 0.332501 -0.300268 -0.948088 -1.352257 0.459013 0.035088 0.544459 -0.072829 -0.505336 -1.040307 0.298352 1.010139 1.353700 1.608912 0.179581 0.706966 -1.070890 -1.203414 0.521826 0.672644 0.635228 -1.142354 0.346804 -0.558866 0.026621 0.395184 0.386719 0.832644 -0.953059 -1.588950 -0.440727 0.995240 0.528037 -1.044604 1.302540 -0.079589 -0.545267 0.382942 -0.287458 1.181937 -0.062578 0.422904 -0.232505 -0.968583 0.184157 -0.386639 2.206215 -0.039765 -0.004876 0.909097 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = 1.127949 0.275901 0.570158 0.373337 0.474984 -1.492579 0.683416 1.441034 -0.254279 -1.607414 -1.073256 -0.184957 -0.138390 -1.236181 0.431515 -0.003664 -0.142191 1.016547 -2.171589 1.067290 0.846757 1.073513 -0.095331 -1.346852 0.319447 -0.119494 -1.791401 0.578983 -0.070802 1.112537 -0.807739 -0.615090 0.739017 0.318022 0.149502 1.252947 0.620436 -0.065768 1.496893 0.470931 1.759660 0.882225 -0.242760 0.763977 1.313478 1.030801 -0.659793 1.097574 -1.398858 -0.447120 0.458029 -1.487239 -1.022312 0.007470 -0.650870 0.950313 2.189478 1.340681 -0.670643 1.153707 -0.467486 -0.003555 0.476977 -0.845434 0.894106 1.587542 -0.369318 0.330547 2.550775 -0.301305 -0.252776 0.388332 1.334849 -0.424461 0.095650 -0.691442 -0.219473 -2.855585 -0.069541 -2.564775 -0.010265 -0.184589 2.361635 -1.224097 1.113189 1.749837 0.662182 0.710939 -0.730890 -0.788360 -0.603278 0.528022 -0.784970 2.512485 -0.430527 0.588299 -0.433752 0.505908 0.833080 0.891888 -0.411339 -0.231201 -2.075673 -2.917717 -0.711787 -0.091424 -0.745870 -0.566215 -1.727590 -0.648495 1.832826 0.977241 -1.989496 -0.183174 1.064110 0.554090 -0.727849 0.161229 -1.514624 0.132145 -0.754387 -0.079560 -0.290440 -0.874444 -0.767867 -1.081253 -0.327981 0.173670 0.166967 -0.634485 -1.437953 -0.189616 -0.323760 -0.601912 -0.194292 -0.146236 -0.400587 -1.299881 0.381983 -1.414591 0.719523 -1.763500 0.065514 -0.468441 -1.459341 0.136736 1.383995 0.274556 0.003610 0.275353 -0.438940 -1.008428 -0.974450 -1.615926 0.766393 -0.754689 1.469656 -0.655723 0.056084 -0.976794 -0.081330 -1.003301 -0.082261 -0.707160 0.390762 -0.835360 2.992866 -0.742239 -0.294682 -1.432375 -0.022530 2.018158 -0.057108 -0.661613 -0.852131 0.329747 -0.891562 -1.240991 0.850493 0.063518 0.073208 -0.626769 0.580215 -1.209893 0.894102 -0.531583 0.691009 -0.214005 -0.790508 -1.153025 -0.096625 -0.241045 -0.299623 -0.374049 -0.478733 -0.046015 0.359677 0.614774 -0.018041 0.035828 0.275238 -1.800257 -1.848469 -0.725141 0.679553 0.867760 0.951493 0.815662 -0.849749 0.111286 -1.239053 1.443264 -0.893311 -0.307963 -0.295231 -0.318608 2.120544 -0.323043 -0.604108 -1.782984 0.459953 -0.151982 -0.952344 2.015900 0.617784 -1.061123 -0.803272 -1.415844 0.077409 1.206438 1.965397 -0.597962 -0.415659 0.790515 -0.778143 -0.428905 -1.026944 0.999091 -0.683104 1.931720 -0.988651 -0.583401 0.313556 1.529163 -0.459562 1.016954 -0.152324 0.580508 -0.111652 1.220613 0.287388 -0.557854 -0.947880 -1.584031 0.421517 0.405738 0.638835 -0.128242 -0.543370 -1.191473 0.147387 1.181403 1.487855 2.020440 0.333752 0.725482 -1.035328 -1.305873 0.481984 0.953940 0.609108 -1.278017 0.219304 -0.546044 0.017329 0.581437 0.545802 1.152334 -1.247382 -2.155420 -0.527781 1.160033 0.570764 -1.230760 1.394725 -0.058266 -0.572811 0.359271 -0.312221 1.312046 -0.032916 0.667580 -0.302715 -1.088391 0.145942 -0.479125 2.434172 0.014432 0.071277 1.010954 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = 0.186085 -0.008503 0.271971 0.097117 0.139280 -0.342634 0.150196 0.314639 -0.124623 -0.482280 -0.299136 -0.389476 -0.092980 -0.294363 0.250607 0.006811 0.031042 0.265834 -0.692042 0.281990 0.297362 0.273993 0.115341 -0.280076 0.131494 -0.103692 -0.562441 0.169024 -0.026252 0.312051 -0.314578 -0.074158 0.215090 0.147851 0.120235 0.306220 0.132960 -0.075244 0.448166 0.249069 0.546513 0.122600 -0.065722 0.076499 0.370291 0.304985 -0.160313 0.129098 -0.233648 -0.132278 0.173889 -0.621686 -0.177906 0.086987 -0.244685 0.224226 0.544901 0.447709 -0.224179 0.292405 -0.210381 0.059075 0.098938 -0.325465 0.353239 0.305213 -0.042842 0.076923 0.616115 -0.053456 -0.027693 0.038836 0.328990 -0.154318 -0.118609 -0.135417 0.122459 -1.259596 -0.056694 -0.729569 0.045610 0.006763 0.433090 -0.294597 0.306221 0.559485 0.027307 0.232980 -0.173721 -0.196821 -0.253750 0.158314 -0.055631 0.458361 -0.093902 0.025279 -0.054864 0.170136 0.199781 0.224714 -0.072091 -0.064308 -0.668607 -0.923094 -0.296453 0.006554 -0.127462 -0.214840 -0.520570 -0.079333 0.674856 0.223107 -0.526219 -0.008543 0.231483 0.210181 -0.525160 -0.186983 -0.386195 -0.072972 -0.233479 0.158107 -0.025207 -0.257721 -0.123918 -0.529502 -0.038302 0.096759 0.155171 -0.240179 -0.049352 -0.103679 -0.079392 -0.107737 -0.128153 -0.016888 -0.078175 -0.220618 0.148563 -0.390210 0.258978 -0.414255 0.147175 -0.219121 -0.254062 0.044735 0.583051 0.138525 -0.147783 0.203078 -0.259436 -0.159092 -0.263013 -0.423481 0.167181 -0.198470 0.461516 -0.125886 -0.014106 -0.212603 0.039821 -0.266199 -0.101814 -0.244359 0.065541 -0.266760 0.397237 -0.155454 -0.129194 -0.460498 0.067670 0.726189 -0.207121 -0.209683 -0.254123 0.358639 -0.200333 -0.398371 0.232029 -0.019058 0.087391 -0.164071 0.252896 -0.409572 0.387883 -0.180790 0.079592 -0.074748 -0.276667 -0.323300 -0.077781 -0.111202 -0.037654 -0.091003 -0.131038 0.023052 0.000262 0.169158 0.046976 0.005816 0.061652 -0.452393 -0.551855 -0.289354 0.150167 0.164747 0.160069 0.175214 -0.316067 -0.017591 -0.235080 0.468441 -0.143768 -0.083694 -0.058483 -0.221921 0.503841 -0.056328 -0.164988 -0.360160 0.122577 -0.034894 -0.339286 0.497133 0.196956 -0.361795 -0.245158 -0.545767 0.116148 0.287218 0.579636 -0.068165 0.082929 0.140951 -0.130162 -0.098043 -0.345644 0.307151 -0.161020 0.442998 -0.319917 -0.226471 0.125647 0.428951 -0.093063 0.292027 0.034955 0.335730 -0.070751 0.344355 0.012439 -0.135751 -0.183665 -0.362659 0.076885 0.469558 0.286431 0.080900 -0.205527 -0.277533 -0.075411 0.360721 0.435536 0.780042 0.164533 0.231001 -0.148095 -0.334260 0.080196 0.250597 0.081744 -0.409093 0.086533 -0.159323 -0.052770 0.141360 0.201865 0.361834 -0.290963 -0.735130 -0.152105 0.284060 0.231910 -0.312580 0.361044 0.010222 -0.224378 0.066623 -0.034115 0.320719 0.093375 0.320832 -0.167149 -0.282761 0.003463 -0.152412 0.588877 -0.088460 0.060552 0.220149 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = 0.249575 -0.192907 0.172236 0.277357 0.341826 -0.255908 0.107857 0.086927 0.074424 -0.547924 -0.166184 0.164652 -0.086305 -0.218475 0.073577 0.057183 0.138269 0.271339 -0.159295 0.255892 0.060389 0.207534 0.002799 -0.246642 0.089820 -0.122767 0.033068 0.131264 0.081753 0.287195 -0.315309 -0.078154 0.229996 0.089307 0.127853 0.317637 0.455401 -0.070629 -0.000457 0.007771 0.651858 -0.002340 0.129299 0.374719 0.347897 0.321896 0.032934 0.527996 0.321788 -0.104628 0.177915 -0.303245 -0.152255 -0.053417 -0.458480 0.400963 0.290737 0.171512 -0.313285 0.187811 0.076549 0.058744 0.096207 -0.176131 0.263997 0.269045 -0.047412 0.170485 0.717997 -0.198580 -0.177037 0.272616 0.568494 0.229732 0.368867 -0.225958 -0.127883 -0.581354 -0.169341 -0.135369 0.147566 -0.175151 0.507684 -0.340241 0.138021 0.476314 -0.003264 0.233310 -0.062466 -0.127513 -0.361775 0.204048 0.035496 0.449020 -0.009976 0.098280 -0.197784 0.040817 0.059672 0.313148 0.115855 -0.218680 -0.345297 -0.801092 -0.375889 -0.157380 -0.113599 -0.234378 -0.528153 -0.019884 0.250334 0.428593 -0.504034 -0.080630 0.229778 0.109891 0.065614 -0.214530 -0.122271 -0.070822 0.034382 0.038146 -0.181630 -0.209871 -0.212252 -0.292329 0.008967 -0.011505 0.160597 -0.250085 -0.028560 -0.151091 -0.173769 0.235589 -0.055170 -0.166785 -0.040962 -0.539561 0.153732 -0.157180 0.175726 -0.324640 -0.181923 -0.196159 -0.280630 -0.059536 0.901824 -0.210504 0.511608 0.129334 -0.273439 -0.358163 -0.264684 -0.602903 0.189271 -0.310191 0.186873 0.162583 0.019222 -0.106368 -0.051287 -0.328069 0.092534 -0.278765 -0.016590 -0.141800 -0.014063 -0.350728 -0.010442 -0.551650 0.027245 0.574659 0.076788 -0.078540 -0.214864 -0.350061 -0.184897 -0.410642 0.217038 -0.115059 0.179895 -0.066860 0.045246 -0.293740 0.191312 -0.225346 0.126266 -0.119951 -0.379671 -0.365954 0.010695 -0.183180 0.021969 0.047523 -0.281336 0.159391 -0.227682 0.163039 0.005415 0.062518 -0.072041 -0.702546 -0.581884 -0.233039 0.138609 0.328066 0.033116 0.212067 -0.266450 -0.184405 -0.310318 0.289720 -0.702154 -0.049768 0.189978 -0.135737 0.409881 -0.165991 -0.088341 -0.420075 0.204294 0.049626 -0.358462 0.492421 0.264562 -0.395070 -0.259364 -0.305231 0.077382 0.253318 0.666276 -0.233227 -0.035586 0.274135 0.009903 -0.113331 -0.338356 0.285540 -0.088083 0.472462 -0.437273 -0.355806 -0.016693 0.484087 -0.142122 0.013530 0.114094 0.162422 -0.165219 0.490000 0.146844 0.166966 -0.336695 -0.572471 0.087015 0.255138 0.154955 0.317365 -0.390240 -0.167096 0.120908 0.099542 0.469359 0.156672 0.338695 0.309247 -0.352748 -0.361179 0.268640 -0.082096 0.153694 -0.315690 0.340775 -0.307520 -0.144457 -0.110819 0.120483 -0.074350 -0.040676 -0.207347 -0.026540 0.244602 0.244435 -0.067327 0.363634 0.098635 -0.250116 0.172917 -0.029467 0.292072 0.008265 -0.122119 -0.086383 -0.217642 -0.027366 -0.136152 0.569857 -0.179120 0.066390 0.052811 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = 0.112517 -0.084425 0.069176 0.219626 0.215969 -0.163614 0.059049 -0.016408 -0.036016 -0.365275 -0.121348 0.096118 -0.052168 -0.148488 0.067341 0.060019 0.089369 0.165859 -0.016550 0.162956 0.027498 0.067171 -0.052466 -0.110360 0.030604 -0.123516 0.018569 0.121512 0.019591 0.190148 -0.195000 0.010154 0.149506 0.079938 0.112722 0.203594 0.272249 -0.048638 -0.007215 0.043430 0.435544 -0.051965 0.106494 0.193272 0.229204 0.224461 0.006009 0.284666 0.151448 -0.057944 0.133863 -0.122095 -0.055414 -0.019564 -0.332960 0.223842 0.113151 0.061391 -0.207169 0.119662 -0.039283 0.044634 0.058474 -0.088604 0.244608 0.141041 0.008219 0.133443 0.440466 -0.126992 -0.115215 0.199467 0.344839 0.117474 0.201011 -0.018513 -0.076786 -0.341942 -0.133308 -0.066730 0.087246 -0.068178 0.376559 -0.193358 -0.005458 0.283322 0.007287 0.175446 -0.071210 -0.065085 -0.260492 0.119716 0.009973 0.230819 0.060084 0.062598 -0.152789 0.024110 0.035766 0.211639 -0.005842 -0.158520 -0.231875 -0.550790 -0.300148 -0.100945 -0.068545 -0.178512 -0.376399 -0.024832 0.220059 0.379124 -0.321419 -0.041313 0.143576 0.062629 0.022501 -0.135390 -0.140373 -0.038197 0.053898 0.054955 -0.063067 -0.055636 -0.103342 -0.225989 0.053365 -0.048278 0.127273 -0.150399 -0.043240 -0.100758 -0.078365 0.104451 -0.033163 -0.106387 -0.014882 -0.297686 0.105896 -0.078179 0.137584 -0.231840 -0.068877 -0.173546 -0.235424 -0.023751 0.571092 -0.004970 0.363361 0.079710 -0.186013 -0.192297 -0.227943 -0.450576 0.105582 -0.204953 0.096775 0.081027 0.004473 -0.049194 -0.041016 -0.171424 0.153320 -0.200711 -0.024598 -0.092562 -0.007504 -0.179196 -0.039816 -0.370628 -0.009786 0.321203 0.056814 -0.018546 -0.141016 -0.236964 -0.149948 -0.270872 0.135731 -0.080312 0.106759 -0.047835 -0.000825 -0.222999 0.135650 -0.146698 0.060783 -0.084840 -0.227538 -0.238076 -0.014381 -0.102978 -0.079772 -0.004192 -0.185933 0.101129 -0.076872 -0.014361 0.035111 0.049456 -0.073723 -0.349923 -0.353656 -0.109787 0.075095 0.166999 0.124340 0.142490 -0.213974 -0.126765 -0.250171 0.200574 -0.433607 -0.022360 0.169125 -0.136757 0.258130 -0.145048 -0.090850 -0.167744 0.136732 0.007267 -0.351520 0.283338 0.222661 -0.279645 -0.180480 -0.195522 0.066171 0.154555 0.447978 -0.146233 0.059612 0.151505 0.057146 -0.068145 -0.154559 0.189316 -0.062165 0.269766 -0.297192 -0.246358 0.026143 0.326852 -0.079038 -0.023982 0.026262 0.113361 -0.062279 0.298081 0.101635 0.097622 -0.191686 -0.370555 0.045274 0.055518 0.046783 0.250275 -0.213441 -0.098977 0.042386 -0.071317 0.320485 -0.033963 0.124758 0.213929 -0.199981 -0.243331 0.120492 -0.059348 0.061703 -0.235261 0.293494 -0.200623 -0.104164 -0.080927 0.088674 -0.067084 -0.030095 -0.128796 -0.019936 0.144739 0.171692 -0.035181 0.236043 0.062628 -0.156874 0.054789 0.004627 0.169028 0.058399 -0.202328 -0.112791 -0.159570 0.002870 -0.086378 0.336705 -0.127951 0.070118 0.085623 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 0.877259 0.143774 -0.608555 1.897134 0.197018 -0.923837 0.256239 0.492459 -0.630731 -3.292893 -1.388375 1.598603 0.077624 0.351536 -0.057460 0.803504 -0.199868 0.373532 -2.801473 0.857432 1.274637 0.741529 0.066607 -0.218042 0.644445 -0.536472 0.140370 0.483866 0.446235 1.838379 -1.185557 0.713740 1.673552 -0.231391 0.078187 1.338604 0.583008 0.417649 0.053001 -0.111390 2.019129 0.466239 -0.112404 0.905455 0.276934 1.886758 -0.042659 2.351227 -0.324648 -1.466299 0.475597 -0.071628 -1.167462 -0.287157 -0.906560 1.302360 1.314350 1.614162 -0.875318 0.606899 -0.232243 -0.088524 0.636387 -0.272336 1.727411 1.617438 0.987589 1.213462 2.666737 -0.985848 -0.222258 1.004482 0.826283 0.153003 1.128016 -1.014128 -1.208187 -0.841000 -0.295084 -2.648879 -1.170547 -0.040132 3.138140 -2.009055 -0.065144 0.331810 0.450001 1.999117 -1.010298 0.467774 -1.579600 0.127464 -0.439900 2.975401 0.227854 0.308202 -0.667828 0.754348 0.710354 1.214426 -0.410965 -0.889103 -1.432566 -2.377028 -0.951121 -0.757827 0.220336 1.032131 -3.157059 -0.557771 0.084968 2.352024 -3.221369 -0.204079 1.260190 1.087704 1.700276 1.494020 -1.582122 0.323615 0.127657 -0.493090 0.532831 -0.556731 -0.026771 -0.697514 -0.043811 -0.208099 0.238639 0.151016 -3.223424 -0.814445 -0.164160 -0.893587 0.455431 0.542018 0.955988 -1.084088 1.096160 -1.168781 0.926679 -2.657899 -0.830145 -0.055528 -2.315550 -0.542969 1.755611 1.690861 1.220042 -0.841917 -0.995630 -1.468513 -2.536798 -2.634348 0.237956 -0.213107 0.755202 0.856394 -0.330892 0.517728 -0.943256 -0.233727 1.036239 -0.783774 -0.362980 -0.749586 2.374076 -0.279313 0.246891 -1.621105 -0.872883 0.098502 -0.227014 1.172949 -0.553450 -2.350998 -3.035561 -1.420162 1.375428 -0.488178 0.194218 -1.276006 -0.181901 -1.946847 0.278594 -1.329882 -0.165887 -0.020167 -1.212730 -1.990813 0.666458 -0.304710 -1.220237 -0.003855 -1.362256 -0.246415 1.129021 0.388570 0.896755 -0.221531 -0.261594 -1.880552 -1.692051 0.541459 -0.809842 1.271870 1.162074 -0.068104 -1.369691 -0.824766 -2.173695 1.859526 -1.544305 0.455205 -0.035658 0.386977 2.212484 -1.225084 -0.098567 -1.489608 0.749278 0.435353 -2.944522 2.475766 1.255407 -0.910381 -0.178023 -0.110825 0.352034 1.507371 1.339886 -1.456689 -1.326221 0.529882 -0.310642 -0.152446 -0.404565 1.146782 -1.378838 1.121082 -1.179697 -0.634136 0.508650 1.333150 -0.318617 0.513516 0.317500 -0.611102 0.684294 1.347904 1.148855 -0.420498 -1.065034 -3.300283 0.801131 -0.759180 -0.372316 -0.018291 -1.339504 -0.835060 0.915372 -0.749306 2.020871 -0.431413 -0.580742 1.418251 -2.690495 -1.775963 -0.149907 -0.008773 0.124164 -0.207598 0.764802 -0.591848 0.357529 0.928962 0.032091 -0.294539 -1.728453 -0.498327 0.048560 1.785300 -0.079019 0.025873 1.936260 0.179500 -0.616881 -0.209205 0.254086 0.514204 -0.714751 -1.749131 -0.440327 -0.305429 0.424444 -1.067223 1.510872 -0.379602 -0.424065 0.752310 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 1.620681 0.332038 0.514086 0.535270 0.518915 -2.059603 0.844518 1.917633 -0.338379 -2.109492 -1.474408 -0.168094 -0.109501 -1.724778 0.619846 0.142052 -0.236466 1.235275 -2.985083 1.530660 1.115988 1.317905 -0.329250 -1.700807 0.413130 -0.200671 -2.442564 0.703867 -0.185472 1.454213 -1.051796 -0.669961 0.973644 0.325863 0.246208 1.616405 0.519526 -0.106493 2.127531 0.739181 2.306484 1.250578 -0.313372 0.919207 1.735683 1.354071 -1.039801 1.702248 -1.940091 -0.575276 0.824088 -1.823529 -1.367697 0.154874 -0.872215 1.202815 2.924293 1.591798 -0.860372 1.497587 -0.789334 0.028869 0.675052 -0.995243 1.405847 2.184571 -0.326411 0.483189 3.386928 -0.248386 -0.203532 0.466209 1.746332 -0.676297 0.188040 -0.927482 -0.346820 -3.556318 -0.040636 -3.382943 0.038675 -0.265731 3.251304 -1.648091 1.378376 2.166203 1.058390 1.083666 -1.087313 -0.964237 -0.749180 0.695672 -1.142860 3.413455 -0.653296 0.921580 -0.685475 0.696619 1.000468 1.080587 -0.671210 -0.351395 -2.785152 -3.842248 -1.045090 -0.101739 -1.025732 -0.726011 -2.497072 -0.777195 2.340111 1.229984 -2.690952 -0.188323 1.348283 0.646560 -0.691517 0.582848 -2.168669 0.116033 -1.011226 0.042536 -0.404039 -1.008387 -0.958714 -1.697436 -0.346229 0.324354 0.210718 -0.814827 -2.115902 -0.109904 -0.353081 -0.891254 -0.243667 -0.032096 -0.422176 -1.739707 0.506966 -1.856699 0.930866 -2.522083 -0.050600 -0.788113 -2.024082 0.224661 1.771646 0.633421 0.062001 0.365445 -0.540832 -1.296016 -1.544068 -2.160371 0.846203 -1.148867 1.878608 -0.977649 0.110815 -1.331678 -0.072002 -1.213026 -0.063520 -1.004684 0.497502 -1.233595 4.193561 -0.880653 -0.424946 -1.809493 -0.202311 2.540979 -0.094755 -0.776854 -1.020393 0.253201 -1.360952 -1.579555 1.124821 0.112164 0.143834 -0.934651 0.806135 -1.702302 1.112826 -0.685661 0.832486 -0.293631 -0.930681 -1.496912 -0.186899 -0.220559 -0.418840 -0.714530 -0.644725 -0.063493 0.718723 0.889120 0.028508 0.125919 0.278169 -2.361330 -2.469608 -0.845504 0.863987 1.271026 1.430113 1.010323 -1.027650 0.190078 -1.813930 1.911509 -1.288461 -0.385198 -0.326200 -0.483320 2.820614 -0.515198 -0.915816 -2.357620 0.571549 -0.405083 -1.386899 2.727404 0.825516 -1.460938 -0.972125 -1.955704 0.248822 1.561995 2.556753 -0.705237 -0.447929 0.937655 -0.955549 -0.586304 -1.261517 1.355560 -1.026550 2.522118 -1.256420 -0.699250 0.558620 2.008771 -0.606340 1.240988 -0.409335 0.656122 -0.014026 1.505560 0.389646 -0.839879 -1.264814 -2.310960 0.448162 0.371480 0.696521 -0.206626 -0.703331 -1.600908 0.077928 1.438723 2.018108 2.530900 0.436584 0.907567 -1.461456 -1.782355 0.484172 1.372974 0.676258 -1.626463 0.265750 -0.705768 0.004094 0.846147 0.853198 1.516672 -1.829647 -2.907479 -0.665231 1.558986 0.705600 -1.743771 1.822123 0.001057 -0.649256 0.327367 -0.395561 1.630344 -0.027469 0.803657 -0.441734 -1.468033 0.204390 -0.685899 3.238988 0.086722 0.241989 1.334024 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = 0.549991 0.066559 0.282734 0.900266 0.274156 -1.238481 0.543872 0.917481 -0.203144 -1.907530 -0.693321 -0.098589 -0.235959 -0.588720 0.104662 0.252489 -0.242161 0.738936 -1.948786 0.882184 1.080252 1.067836 0.303418 -0.941666 0.601417 -0.106384 -1.064046 0.535840 0.124511 1.164412 -0.846822 -0.235222 0.990698 0.203572 -0.125283 1.146340 0.685775 0.441238 1.139414 0.362006 1.273477 0.577353 -0.536408 0.499453 0.787230 1.188963 -0.119523 0.934698 -1.275793 -0.770541 0.021634 -1.045095 -0.847093 -0.312265 -0.416609 1.052355 1.796439 1.825626 -0.665648 0.823168 -0.359930 0.016803 0.536807 -0.567451 0.942108 1.519111 -0.017491 0.648373 2.399516 -0.442577 -0.162718 0.406267 1.074859 -0.343898 0.288541 -0.699935 -0.502478 -2.361998 -0.303569 -2.339395 -0.428010 0.131300 1.907657 -1.363884 0.757297 1.004146 0.415058 1.068967 -0.774581 -0.288859 -0.860464 0.397503 -0.429417 2.602040 -0.131613 0.280910 -0.420476 0.807901 0.797393 0.820613 -0.236623 -0.177374 -1.647005 -2.311859 -0.521141 -0.321628 -0.290823 0.062764 -2.119296 -0.624000 1.281020 1.017480 -2.355764 -0.147335 1.035724 0.760320 -0.045496 0.015482 -1.033538 0.461169 -0.614578 -0.469438 -0.193866 -0.824537 -0.498957 -0.738615 -0.376833 0.040484 0.081983 -0.203128 -1.823842 -0.190836 -0.362585 -0.699089 0.157021 0.344845 0.006794 -0.985362 0.490390 -1.473988 0.746325 -1.856938 -0.114799 0.055854 -1.515353 -0.123855 1.200349 0.469572 -0.024290 -0.403351 -0.638363 -1.256978 -1.340734 -1.755186 0.590741 -0.320730 1.171003 0.018358 -0.160888 -0.504869 -0.364882 -0.668089 0.289306 -0.617258 0.164656 -0.743408 2.414293 -0.454568 0.070263 -1.334648 -0.382271 1.504413 -0.285847 -0.183628 -0.717084 -0.035828 -1.534426 -1.110981 0.814050 -0.090077 0.021899 -0.872287 0.318574 -1.513389 0.919038 -0.695322 0.421926 -0.071383 -0.680108 -1.313703 0.325612 -0.296295 -0.300963 -0.159807 -0.558704 -0.147268 0.109466 0.268437 0.272979 -0.089224 0.221107 -1.511615 -1.517626 -0.120171 0.221922 0.641208 0.589072 0.441405 -0.777043 -0.241654 -1.244551 1.612077 -0.592081 -0.006305 -0.141024 0.232980 2.074519 -0.398826 -0.249978 -1.578749 0.507037 0.102180 -0.879474 1.755293 0.692081 -0.860324 -0.458950 -0.760904 0.133751 1.240826 1.380026 -0.901697 -0.862985 0.684543 -0.668178 -0.304294 -0.716011 0.783258 -0.852844 1.683544 -0.857960 -0.335575 0.165764 1.197222 -0.469580 0.941308 -0.033570 -0.115423 -0.111679 1.030164 0.547123 -0.358848 -0.931661 -1.501235 0.351045 -0.130085 0.551932 -0.270432 -0.745065 -0.787569 0.527844 0.846322 1.478436 1.564881 -0.277246 0.847056 -1.616537 -1.238164 0.506304 0.599135 0.429071 -0.832603 0.337692 -0.326251 0.098327 0.809195 0.381395 0.620029 -1.382622 -1.339558 -0.305773 1.414177 -0.020864 -0.942514 1.364108 -0.261612 -0.523541 0.131361 0.020515 0.875740 -0.342228 0.077148 -0.264670 -0.662795 0.309572 -0.761058 2.131873 -0.156481 -0.240920 0.816207 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.753256 -0.000195 -0.420324 1.747953 0.333537 -0.837408 0.229149 0.536476 -0.277482 -2.832836 -1.231274 1.471318 -0.087101 0.021419 0.097030 0.556537 0.008204 0.342528 -2.149160 0.859857 0.997707 0.651730 -0.048377 -0.260350 0.588924 -0.481975 0.138782 0.474569 0.370000 1.507523 -0.986954 0.537651 1.369081 -0.112932 0.138372 1.166837 0.423295 0.344736 0.152416 -0.189220 1.860198 0.484655 -0.137488 1.074194 0.516007 1.623814 -0.213495 2.002736 0.015763 -1.153664 0.442278 0.106811 -0.928623 -0.291876 -0.956001 1.269825 1.186296 1.135218 -0.845785 0.529210 -0.343495 -0.074035 0.532335 -0.394433 1.502447 1.540233 0.806619 1.184047 2.464631 -0.815467 -0.296099 1.004100 1.092854 0.423981 0.940640 -0.726458 -1.106461 -0.878092 -0.501369 -1.993734 -0.812766 -0.301869 2.869473 -1.684294 -0.020388 0.301683 0.352635 1.662540 -0.874338 0.316171 -1.398966 0.201141 -0.333210 2.366110 0.179793 0.336202 -0.623372 0.610561 0.471281 1.138504 -0.314194 -0.741140 -1.265522 -2.304943 -0.903917 -0.639909 0.265729 0.618979 -2.741977 -0.266541 0.242496 1.964217 -2.700452 -0.321219 1.042145 0.785060 1.310750 1.119593 -1.359510 0.132715 0.206407 -0.378434 0.247270 -0.480583 -0.141061 -0.781110 -0.146465 -0.217407 0.319895 0.089930 -2.416982 -0.704011 -0.284130 -0.442666 0.346215 0.385981 0.711271 -1.124041 0.924581 -0.880675 0.886315 -2.295957 -0.847441 -0.247740 -1.723397 -0.440303 1.926460 1.382104 1.419686 -0.570108 -0.771348 -1.451197 -2.165292 -2.144552 0.305065 -0.364506 0.690656 0.677549 -0.199259 0.364572 -0.738182 -0.273284 0.779827 -0.778626 -0.184316 -0.644201 1.899182 -0.397771 0.273419 -1.660656 -0.739262 0.384708 -0.279201 0.751262 -0.469248 -2.043452 -2.439774 -1.222880 1.107192 -0.443362 0.244044 -0.995533 -0.075696 -1.432167 0.276823 -1.136203 -0.103342 -0.106016 -1.158803 -1.698456 0.565158 -0.305261 -0.860928 -0.024860 -1.130361 -0.101337 0.846830 0.589309 0.717903 0.034599 -0.311993 -1.817039 -1.580966 0.281596 -0.534822 1.235545 1.048092 -0.074980 -1.222460 -0.756439 -1.919989 1.690961 -1.579458 0.327399 0.100926 0.145693 1.915346 -1.015126 -0.245906 -1.575022 0.645498 0.342997 -2.663855 1.906249 1.061746 -0.930264 -0.286202 -0.346246 0.340290 1.287010 1.370555 -1.211970 -1.004571 0.535565 -0.220071 -0.172079 -0.482230 1.021860 -1.061383 1.130763 -1.161713 -0.646396 0.541701 1.171610 -0.331572 0.378919 0.241687 -0.369074 0.623618 1.255734 1.173317 -0.283604 -1.156376 -2.860054 0.582039 -0.347017 -0.224781 0.153427 -1.279316 -0.889323 0.677014 -0.557522 1.778872 -0.427090 -0.254095 1.243428 -2.206774 -1.517040 0.086381 0.003767 0.153400 -0.361780 0.924164 -0.582498 0.145404 0.696233 0.110688 -0.303524 -1.390447 -0.552982 0.025096 1.512135 0.088627 -0.021384 1.598852 0.276595 -0.787156 -0.110729 0.237477 0.326148 -0.649880 -1.645172 -0.360143 -0.396566 0.279987 -0.917941 1.503639 -0.193074 -0.179144 0.523727 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = 1.659336 -0.067230 -0.545743 2.067555 0.358477 -1.025493 0.083877 1.085745 -0.329583 -3.711012 -2.656022 2.729896 0.046361 -0.100695 0.646593 0.599087 0.325602 0.202265 -4.507028 1.386439 1.016187 0.265642 -0.517918 -0.441004 0.482196 -1.131220 0.679259 0.860166 0.365904 2.024645 -1.479159 0.748619 1.648267 0.099861 1.563444 1.689561 -0.557201 -0.287209 -0.283239 -0.531002 3.310439 1.817992 -0.168417 1.505679 1.135512 2.252367 -0.081306 1.969436 1.006212 -1.404162 0.577895 0.483033 -1.672513 0.027067 -1.891386 1.174295 1.382515 0.283760 -1.434840 0.889212 -0.603232 -0.154852 0.524232 -0.584956 2.616408 0.625486 1.668007 1.189023 2.570994 -1.178745 -0.428789 1.385494 1.824307 0.666958 1.257656 -0.873121 -1.965268 -1.190967 -0.028685 -3.589057 -1.087890 -0.436251 3.577881 -2.096094 0.171621 0.560490 -0.011874 2.066762 -1.271536 -0.188233 -1.907671 0.077309 -0.654543 2.796348 0.375697 0.369997 0.035246 0.922544 0.738644 1.840639 -0.405851 -1.722270 -1.235379 -4.239696 -0.663312 -0.875736 0.608477 0.500778 -2.590394 -0.219204 0.272557 3.521483 -2.794876 -0.273788 1.522021 0.414979 0.625223 -0.016218 -1.482265 -0.035512 0.162279 0.476288 1.341824 -0.935425 -0.184069 -0.411017 0.688091 -0.011418 1.076266 0.212695 -2.244560 -1.336694 0.369081 0.126757 -0.309731 0.070674 0.817625 -1.313572 1.455596 -0.868863 1.617741 -2.617612 0.033865 -1.286304 -1.288502 -0.411168 2.200968 2.416832 1.749169 -0.119513 -0.157851 -0.709364 -2.742778 -3.322830 0.957019 -0.150025 0.791354 0.119535 -0.064262 0.856495 -0.892113 -0.242245 0.652278 -1.355969 -0.323086 -0.676212 1.926062 -0.164593 -0.313020 -1.545418 -0.520705 0.379351 -0.209421 1.139822 -0.789950 -3.651382 -2.743404 -1.823806 1.746506 -0.696448 0.288550 -0.875182 -0.065064 -1.216284 0.276339 -1.785237 0.287476 -0.487648 -1.597960 -2.131932 -0.327735 -0.441560 -0.537612 -0.249949 -1.642144 -0.150214 1.827806 0.929839 0.709266 0.438080 0.078579 -2.226262 -1.783995 0.261719 -0.852437 2.272887 1.561984 -0.411101 -2.253179 -0.678147 -2.385733 2.014764 -2.081725 0.443070 -0.620872 -1.239434 2.349948 -1.151196 -0.563604 -1.400495 0.994674 0.664614 -4.010561 2.772029 2.203084 -1.298248 -0.485929 -0.529290 0.429562 1.621935 2.422893 -1.501631 -0.897869 0.231740 -0.706561 -0.103293 -0.339690 1.826364 -1.135287 0.906086 -1.797802 -1.230828 1.170876 1.262377 0.288764 0.734235 0.317655 0.406619 1.078244 2.032853 1.200294 -0.183350 -2.185149 -4.743597 1.278474 0.721426 -0.433207 0.619000 -1.072956 -1.921412 -0.088977 -1.154561 2.264946 -0.149324 -0.565629 1.713550 -2.265048 -2.164272 -1.083431 -0.189601 -0.128769 -0.455375 1.329824 -0.972116 0.334761 0.246774 0.124592 -0.214577 -1.045929 -1.026496 0.156856 1.331902 1.387837 0.112319 2.123554 0.719618 -1.529821 -0.384772 0.008809 -0.030144 -0.264136 -2.319250 -1.148569 -0.926320 0.422234 -0.850001 1.036653 0.160264 0.624344 0.436871 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = 0.778756 -0.313921 0.183614 0.501723 0.555021 -0.732789 0.265829 0.462082 0.182163 -1.107692 -0.502570 0.456609 -0.098675 -0.637044 0.174049 0.167526 0.154968 0.521409 -0.679578 0.677334 0.196781 0.479694 -0.184428 -0.589985 0.190556 -0.186592 -0.290247 0.224403 0.080341 0.614351 -0.584081 -0.198944 0.479109 0.078345 0.186719 0.701531 0.633489 -0.119197 0.361773 0.087003 1.286608 0.246395 0.209737 0.786294 0.771204 0.649050 -0.223700 1.442060 0.317452 -0.229821 0.587518 -0.657907 -0.495730 -0.001222 -0.809511 0.807397 0.910120 0.314335 -0.568641 0.477093 0.027714 0.096393 0.268115 -0.353049 0.629807 0.878635 -0.085213 0.336539 1.628904 -0.263048 -0.258962 0.502858 1.167324 0.302771 0.703360 -0.644227 -0.325501 -1.030328 -0.223186 -0.566424 0.274918 -0.437552 1.387483 -0.795653 0.375374 0.918452 0.262374 0.550793 -0.268793 -0.274267 -0.585838 0.430656 -0.169468 1.256498 -0.227130 0.419072 -0.493268 0.104382 0.140532 0.583526 0.043103 -0.393714 -0.932228 -1.679025 -0.739449 -0.251131 -0.356322 -0.423179 -1.267446 -0.086944 0.482664 0.694876 -1.170982 -0.175371 0.527407 0.182014 0.317382 0.178754 -0.562464 -0.159930 -0.039215 0.095526 -0.423248 -0.395131 -0.482432 -0.810261 -0.046536 0.083775 0.213838 -0.495277 -0.521180 -0.164127 -0.329719 0.264096 -0.078320 -0.205057 -0.074280 -1.163371 0.290634 -0.441883 0.322377 -0.978341 -0.538159 -0.474822 -0.762446 -0.053835 1.675646 -0.201150 0.990869 0.238499 -0.424874 -0.818766 -0.725631 -1.170950 0.307419 -0.789475 0.514826 0.074698 0.099574 -0.393828 -0.065412 -0.650637 0.085813 -0.572554 0.058103 -0.458241 0.741237 -0.688219 -0.037985 -1.063892 -0.090728 1.123286 0.114721 -0.197750 -0.374501 -0.787107 -0.539951 -0.792370 0.481048 -0.135072 0.343622 -0.272519 0.201344 -0.672716 0.298133 -0.412220 0.261667 -0.210755 -0.690646 -0.744777 0.001307 -0.251894 0.032355 -0.120178 -0.533799 0.232804 -0.113565 0.607468 0.026336 0.198762 -0.157601 -1.531144 -1.277064 -0.451191 0.326702 0.836245 0.326255 0.435913 -0.427419 -0.234593 -0.850500 0.653909 -1.480154 -0.137075 0.281288 -0.214444 1.040383 -0.372076 -0.281668 -1.114289 0.363166 -0.075410 -0.852621 1.159949 0.461546 -0.811124 -0.477245 -0.764508 0.191600 0.604388 1.340583 -0.417843 -0.158621 0.543362 -0.106061 -0.277333 -0.686474 0.636682 -0.338336 1.107903 -0.798281 -0.586908 0.097091 1.004909 -0.330323 0.094417 0.019882 0.254828 -0.151436 0.912377 0.299657 0.068788 -0.736305 -1.461703 0.146740 0.437105 0.219842 0.446739 -0.767229 -0.505403 0.206688 0.303862 1.008555 0.430858 0.726423 0.551644 -0.832038 -0.824823 0.480276 0.116834 0.311603 -0.617673 0.511290 -0.565275 -0.227543 -0.007038 0.343236 0.062270 -0.417537 -0.722216 -0.102544 0.634285 0.410165 -0.363430 0.789578 0.203852 -0.397607 0.288342 -0.124892 0.650125 -0.067592 -0.138178 -0.132055 -0.545335 -0.035931 -0.323018 1.385053 -0.187609 0.196456 0.216022 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = 0.654318 -0.208539 0.087435 0.443061 0.462729 -0.649554 0.197177 0.354931 0.054919 -0.941785 -0.472000 0.357926 -0.070263 -0.574738 0.188998 0.195532 0.095640 0.391952 -0.555308 0.611711 0.178417 0.338463 -0.212677 -0.462060 0.156953 -0.201645 -0.299992 0.197947 0.011525 0.505290 -0.490405 -0.090000 0.390604 0.086442 0.187035 0.563275 0.414668 -0.122551 0.370769 0.135085 1.083041 0.192417 0.190602 0.593298 0.669701 0.538409 -0.273008 1.198283 0.138131 -0.175092 0.551409 -0.469485 -0.397678 0.064566 -0.690951 0.655229 0.732984 0.179162 -0.454010 0.375069 -0.097920 0.085477 0.220507 -0.278543 0.635591 0.743426 -0.003755 0.291743 1.367451 -0.167131 -0.202503 0.446337 0.959626 0.190978 0.549225 -0.434510 -0.266252 -0.798553 -0.192697 -0.496355 0.227549 -0.348024 1.253792 -0.637602 0.216109 0.724807 0.290913 0.517319 -0.273331 -0.196689 -0.479938 0.373743 -0.206691 1.039059 -0.172281 0.395915 -0.472807 0.084125 0.109867 0.490206 -0.075090 -0.314706 -0.831475 -1.431176 -0.677187 -0.182721 -0.289916 -0.376665 -1.158195 -0.050448 0.450242 0.661091 -0.980153 -0.133488 0.436381 0.149167 0.287149 0.253251 -0.596816 -0.159734 -0.016190 0.134281 -0.344388 -0.221178 -0.380232 -0.796329 0.017691 0.045263 0.196408 -0.423976 -0.523811 -0.113061 -0.247577 0.124034 -0.049108 -0.140407 -0.023642 -0.944669 0.242028 -0.341923 0.267102 -0.893074 -0.426576 -0.482657 -0.714918 -0.004752 1.348848 0.019810 0.831596 0.217123 -0.332514 -0.668218 -0.701942 -0.999835 0.186091 -0.713227 0.419500 -0.001094 0.094281 -0.327669 -0.036536 -0.500533 0.148306 -0.510714 0.048781 -0.447175 0.750654 -0.530340 -0.055781 -0.891698 -0.154328 0.881833 0.065188 -0.139994 -0.278886 -0.652682 -0.521854 -0.681408 0.386077 -0.105304 0.288785 -0.286878 0.194080 -0.617571 0.255539 -0.328568 0.187969 -0.167448 -0.551123 -0.600883 -0.047372 -0.165379 -0.080982 -0.198704 -0.438363 0.179658 0.043461 0.428261 0.070193 0.185748 -0.194960 -1.195411 -1.075008 -0.333158 0.272864 0.672864 0.408190 0.346780 -0.387589 -0.190184 -0.801038 0.579003 -1.214536 -0.123365 0.260032 -0.212684 0.882042 -0.354920 -0.295849 -0.860708 0.283847 -0.159101 -0.838548 0.964443 0.406174 -0.705461 -0.405525 -0.695306 0.201828 0.499550 1.135906 -0.310842 -0.024575 0.394036 -0.032227 -0.244346 -0.499627 0.567264 -0.339170 0.919744 -0.660029 -0.503817 0.125017 0.869628 -0.276383 0.057044 -0.078960 0.220574 -0.036502 0.707574 0.262170 -0.010861 -0.591133 -1.259809 0.065404 0.229603 0.105785 0.378495 -0.591171 -0.458947 0.100571 0.144368 0.887852 0.243260 0.544782 0.445775 -0.671370 -0.700066 0.348862 0.148732 0.189235 -0.542674 0.458545 -0.464303 -0.219910 0.034831 0.314244 0.066893 -0.436104 -0.654673 -0.113831 0.545789 0.355396 -0.331112 0.646485 0.215201 -0.297128 0.161360 -0.073947 0.534980 -0.017016 -0.200510 -0.169277 -0.494497 -0.049001 -0.259843 1.157484 -0.129615 0.210559 0.223093 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.798629 -0.145242 0.132624 0.377956 0.405544 -0.794397 0.234010 0.591260 -0.014570 -1.076398 -0.707244 0.083394 -0.082136 -0.726960 0.375135 0.233602 0.094998 0.436344 -1.024004 0.743113 0.355723 0.427135 -0.210308 -0.503868 0.226684 -0.218486 -0.820488 0.181529 -0.046813 0.600202 -0.588056 -0.063470 0.451047 0.094426 0.215765 0.630534 0.183711 -0.175312 0.797420 0.287696 1.224655 0.290623 0.165609 0.548340 0.804345 0.609214 -0.571185 1.351561 -0.099410 -0.225436 0.792485 -0.860486 -0.491715 0.268348 -0.692570 0.679359 1.045861 0.317031 -0.480818 0.497177 -0.276928 0.142898 0.256389 -0.485431 0.826913 0.978679 0.002569 0.284723 1.533126 -0.051870 -0.098615 0.351620 0.977688 0.014089 0.298292 -0.548414 -0.062337 -1.298406 -0.140667 -0.922987 0.284350 -0.382482 1.524573 -0.738877 0.367144 0.884195 0.360892 0.629503 -0.369879 -0.241714 -0.485002 0.431068 -0.293130 1.149143 -0.327342 0.447658 -0.502071 0.144274 0.136309 0.475359 -0.241971 -0.257478 -1.270500 -1.752164 -0.800879 -0.085118 -0.331265 -0.422392 -1.415456 -0.031861 0.729379 0.549965 -1.172520 -0.123620 0.468529 0.215788 -0.053106 0.578826 -0.947283 -0.305442 -0.187919 0.316249 -0.366745 -0.248620 -0.371970 -1.270327 -0.061192 0.158799 0.249069 -0.513920 -0.620415 -0.084203 -0.259152 -0.055608 -0.126133 -0.031663 -0.009138 -0.895620 0.302023 -0.500475 0.324487 -1.157222 -0.420106 -0.656791 -0.824962 0.056916 1.497719 0.292928 0.633879 0.375360 -0.368973 -0.701097 -0.876708 -0.953662 0.140939 -0.859630 0.711013 -0.174286 0.114872 -0.460582 0.037826 -0.552994 -0.036647 -0.598930 0.102769 -0.676622 1.177073 -0.531994 -0.141573 -1.028191 -0.165647 1.150917 -0.227656 -0.277625 -0.316269 -0.309267 -0.634989 -0.775166 0.461079 -0.069939 0.367969 -0.395168 0.439904 -0.783357 0.360240 -0.359388 0.105414 -0.168771 -0.602785 -0.674193 -0.106963 -0.131651 -0.117710 -0.345021 -0.425434 0.157561 0.289026 0.692763 0.125834 0.230927 -0.203578 -1.314545 -1.290986 -0.477844 0.299297 0.722921 0.620622 0.335473 -0.458203 -0.131977 -0.918679 0.788114 -1.163343 -0.168215 0.164161 -0.284136 1.052827 -0.372263 -0.386859 -1.042657 0.255589 -0.279719 -1.164265 1.088837 0.368890 -0.839998 -0.446068 -1.098697 0.335523 0.575272 1.273218 -0.181453 0.104340 0.360371 -0.124950 -0.277230 -0.649562 0.700894 -0.444374 1.052771 -0.704066 -0.491614 0.305593 0.968068 -0.303894 0.216765 -0.126053 0.422874 0.122064 0.731303 0.217056 -0.268448 -0.590926 -1.491584 0.027907 0.600253 0.200160 0.323082 -0.629204 -0.610113 -0.050393 0.315632 1.022007 0.654787 0.698952 0.464291 -0.635807 -0.802525 0.309021 0.430028 0.163114 -0.678337 0.331045 -0.451480 -0.229202 0.221084 0.473327 0.386582 -0.730427 -1.221144 -0.200884 0.710581 0.398123 -0.517268 0.738670 0.236524 -0.324672 0.137689 -0.098710 0.665088 0.012646 0.044166 -0.239487 -0.614305 -0.087215 -0.352329 1.385441 -0.075418 0.286712 0.324950 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.948535 -0.080393 0.200935 0.304890 0.368706 -0.963083 0.276842 0.841359 -0.102492 -1.217729 -0.960742 -0.211596 -0.103842 -0.900439 0.573945 0.262405 0.068374 0.468803 -1.509262 0.896700 0.547153 0.526877 -0.183388 -0.565371 0.309415 -0.237857 -1.364142 0.180157 -0.117072 0.688945 -0.688093 -0.048417 0.504636 0.124961 0.229730 0.697872 -0.056164 -0.234671 1.253177 0.456172 1.364544 0.388769 0.139463 0.502813 0.959619 0.670119 -0.886890 1.509122 -0.350133 -0.271167 1.049248 -1.265905 -0.598899 0.472235 -0.681745 0.714802 1.377165 0.449006 -0.490229 0.611333 -0.473242 0.186318 0.283801 -0.713190 1.018782 1.233068 0.006187 0.257438 1.724129 0.071962 -0.018189 0.285172 1.012745 -0.163574 0.028758 -0.664589 0.137403 -1.822321 -0.092802 -1.365546 0.319470 -0.428888 1.804043 -0.827096 0.507482 1.051833 0.439805 0.740563 -0.463600 -0.284060 -0.475146 0.508559 -0.389032 1.269210 -0.494077 0.509004 -0.540555 0.187828 0.182819 0.485683 -0.423094 -0.171487 -1.744795 -2.086654 -0.916725 0.029893 -0.367610 -0.481986 -1.698181 -0.007304 1.019958 0.438138 -1.355856 -0.128307 0.523890 0.302609 -0.402390 0.916325 -1.322647 -0.464369 -0.343568 0.496810 -0.397415 -0.269763 -0.380429 -1.771656 -0.129561 0.260318 0.292583 -0.630350 -0.719982 -0.066378 -0.283745 -0.245758 -0.187034 0.058864 -0.001415 -0.849879 0.352624 -0.653338 0.374375 -1.437355 -0.405207 -0.837796 -0.935102 0.135773 1.655502 0.580062 0.428467 0.544332 -0.399974 -0.752324 -1.037422 -0.898650 0.080306 -1.026769 1.023049 -0.368170 0.143693 -0.599597 0.133688 -0.618494 -0.232155 -0.681575 0.175238 -0.924731 1.620785 -0.543775 -0.216098 -1.179655 -0.189541 1.427194 -0.537521 -0.432685 -0.341610 0.042749 -0.740175 -0.896365 0.525393 -0.025529 0.435845 -0.527284 0.707552 -0.959244 0.476687 -0.376411 0.022390 -0.151584 -0.680108 -0.734908 -0.180590 -0.091524 -0.162646 -0.507234 -0.400830 0.114086 0.542608 0.967230 0.199276 0.281455 -0.235351 -1.441195 -1.527287 -0.642151 0.345950 0.769780 0.836059 0.331079 -0.542168 -0.070332 -1.050224 1.013294 -1.106003 -0.236641 0.053250 -0.346984 1.248571 -0.379126 -0.481213 -1.232657 0.217826 -0.416771 -1.502771 1.219475 0.324603 -0.969189 -0.509221 -1.521139 0.448895 0.671134 1.426836 -0.044377 0.244763 0.319752 -0.207639 -0.320996 -0.796532 0.852333 -0.569667 1.212118 -0.741114 -0.499765 0.462665 1.090686 -0.339636 0.385835 -0.189383 0.654037 0.290392 0.741999 0.168325 -0.555820 -0.582894 -1.734055 -0.019689 0.987001 0.286205 0.272029 -0.675537 -0.791010 -0.203799 0.500935 1.174903 1.081046 0.864860 0.471923 -0.575348 -0.898488 0.286009 0.730101 0.126892 -0.825950 0.201161 -0.433816 -0.249212 0.432991 0.613020 0.726426 -1.047606 -1.818182 -0.316469 0.884685 0.452553 -0.705613 0.825327 0.272409 -0.349364 0.106564 -0.116725 0.814521 0.039522 0.311784 -0.309810 -0.754084 -0.148694 -0.420087 1.634025 -0.008023 0.353227 0.430253 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = 0.200600 -0.015763 0.081261 0.196266 0.121240 -0.196780 0.074155 0.184376 -0.104021 -0.566583 -0.399476 -0.180922 -0.042264 -0.164974 0.268866 0.108166 0.083264 0.192711 -0.492946 0.210821 0.238023 0.132884 0.024673 -0.085436 0.100328 -0.155751 -0.451828 0.071387 0.015897 0.324794 -0.284435 0.090064 0.249492 0.063056 0.100240 0.247794 0.049462 -0.073311 0.302152 0.145700 0.553491 0.032732 0.047986 0.137201 0.252585 0.317351 -0.279800 0.417583 -0.080536 -0.165531 0.361521 -0.524458 -0.138835 0.171623 -0.299210 0.250067 0.415340 0.247226 -0.207467 0.212306 -0.214754 0.104597 0.074415 -0.322838 0.401332 0.348385 0.076077 0.155722 0.515471 -0.084426 -0.013206 0.107739 0.248400 -0.048756 -0.050303 -0.127078 0.128466 -0.816076 -0.076061 -0.486451 0.063153 -0.088551 0.639579 -0.322728 0.098053 0.419234 0.029223 0.306269 -0.150951 -0.028028 -0.285685 0.136429 -0.037191 0.298093 -0.026126 0.043864 -0.166218 0.092161 0.075831 0.195053 -0.120002 -0.095931 -0.670937 -0.807889 -0.413591 -0.020070 -0.003586 -0.099928 -0.607153 -0.005190 0.490635 0.272195 -0.518434 -0.004251 0.187678 0.209900 -0.258598 0.201431 -0.490454 -0.157617 -0.067134 0.195964 0.002961 -0.111348 -0.033371 -0.632480 -0.015870 0.035493 0.180013 -0.201331 -0.144250 -0.135620 -0.088479 -0.081358 -0.078886 0.025288 0.076795 -0.195977 0.211174 -0.205104 0.207703 -0.493126 -0.038107 -0.286153 -0.339341 -0.004291 0.743516 0.314784 0.170508 0.203804 -0.275464 -0.219684 -0.399129 -0.398072 0.036587 -0.223115 0.385182 -0.010054 -0.005469 -0.062391 -0.008590 -0.134509 -0.038975 -0.260515 0.006395 -0.233535 0.368028 -0.166268 -0.122483 -0.518055 -0.015408 0.483243 -0.290154 -0.066675 -0.148033 0.117103 -0.309796 -0.357299 0.241628 -0.083186 0.195236 -0.156168 0.217810 -0.402827 0.204603 -0.211854 -0.045377 -0.028943 -0.335013 -0.345768 -0.029735 -0.065990 -0.166382 -0.054896 -0.208350 0.053751 0.184429 0.234189 0.128981 0.070898 -0.063599 -0.446964 -0.533535 -0.240516 -0.034041 0.216837 0.323298 0.057609 -0.293433 -0.107660 -0.347709 0.413519 -0.330228 -0.031620 -0.009374 -0.158121 0.364082 -0.182575 -0.173165 -0.358398 0.102207 -0.034929 -0.682794 0.385046 0.188358 -0.338007 -0.171398 -0.517950 0.186711 0.218577 0.521259 -0.048810 0.133484 0.084534 -0.048420 -0.063344 -0.276839 0.317788 -0.185350 0.280382 -0.312494 -0.205279 0.199546 0.382695 -0.074269 0.178411 0.097396 0.314154 0.133896 0.298362 0.097930 -0.207194 -0.164062 -0.595445 0.070779 0.423617 0.089203 0.163141 -0.280728 -0.216518 -0.066227 0.080697 0.415123 0.362389 0.257934 0.266235 -0.174819 -0.324504 0.047408 0.169782 0.026692 -0.328451 0.140436 -0.156538 -0.060813 0.134706 0.164934 0.221726 -0.322776 -0.636207 -0.094501 0.339576 0.178538 -0.107242 0.337379 0.102166 -0.223121 0.028907 -0.013774 0.231540 0.059834 -0.000690 -0.163977 -0.189923 -0.038081 -0.190638 0.426925 -0.093845 0.041093 0.171037 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.004164 0.091448 -0.151951 0.901820 -0.031506 -0.785716 0.297450 0.244227 -0.312815 -1.230648 -0.159082 0.074303 -0.099952 -0.175613 -0.149782 0.306120 -0.349357 0.333387 -1.003634 0.508709 0.730874 0.524571 0.118327 -0.460762 0.363243 -0.130823 -0.225958 0.481891 0.028051 0.765318 -0.441369 0.066616 0.706032 0.101033 -0.119592 0.708249 0.433749 0.551765 0.470793 0.334222 0.519680 0.333021 -0.592833 -0.008611 0.247417 0.845307 0.301624 0.141533 -1.220000 -0.576414 -0.380577 0.058065 -0.413108 -0.462734 -0.148486 0.522159 0.847270 1.298863 -0.385497 0.419679 -0.450365 -0.055655 0.418362 0.085717 0.767930 0.752597 0.262862 0.607920 1.403005 -0.353696 -0.043813 0.267627 0.470543 -0.422300 0.361481 -0.042969 -0.711676 -1.096009 -0.270771 -1.458252 -0.598709 0.486730 0.981124 -0.865170 0.158749 0.210560 0.358554 0.864463 -0.706759 -0.011351 -0.629190 0.081785 -0.302535 1.895646 0.237618 0.116633 -0.268737 0.751585 0.602763 0.487477 -0.213663 -0.204223 -0.621396 -1.188902 -0.222986 -0.353349 -0.112800 0.288977 -1.449544 -0.553057 0.736670 0.966944 -1.638958 0.022202 0.679586 0.489992 0.506727 -0.348989 -0.469036 0.731421 -0.345309 -0.551336 0.139825 -0.387244 -0.162165 -0.004173 -0.040305 -0.091756 -0.042201 0.197026 -1.619583 -0.022846 -0.040366 -0.695010 0.294416 0.462748 0.141072 -0.470322 0.298729 -1.050868 0.590189 -1.236187 0.121049 0.281952 -1.148668 -0.132060 0.188170 0.614706 -0.141103 -0.753730 -0.435787 -0.679239 -1.119516 -1.497936 0.351439 0.127062 0.401633 0.105157 -0.234599 -0.139857 -0.422832 -0.112284 0.718975 -0.356181 -0.002114 -0.311048 1.555926 0.069194 0.101071 -0.586637 -0.514243 0.464198 0.105504 0.278616 -0.423129 -0.355217 -1.366892 -0.574046 0.506614 -0.071215 -0.223195 -0.701410 -0.159375 -1.174323 0.652122 -0.478206 0.322351 -0.021644 -0.141759 -0.877233 0.311025 -0.136882 -0.380771 -0.160491 -0.373360 -0.214678 0.068452 -0.548160 0.274367 -0.169085 0.224113 -0.469178 -0.626827 0.479246 -0.027522 0.260280 0.391315 0.211577 -0.461964 -0.191838 -0.911006 1.061981 -0.051777 0.177233 0.021619 0.224154 1.376368 -0.342835 -0.176098 -0.616083 0.380830 0.089647 -0.241847 1.110013 0.683638 -0.423340 -0.109487 0.105251 0.046609 0.815064 0.582476 -0.829865 -0.745473 0.339064 -0.322170 -0.135966 -0.003496 0.341749 -0.676042 0.885173 -0.430469 -0.051220 0.069505 0.617638 -0.243823 0.517138 -0.246063 -0.633172 -0.158494 0.475922 0.482013 -0.075841 -0.580750 -0.677509 0.232166 -1.174712 0.132881 -0.342794 -0.284677 -0.323218 0.473156 0.168219 0.921715 0.540207 -1.025631 0.569024 -1.372483 -0.814571 0.063968 0.215272 0.127449 -0.355451 0.408969 -0.091862 0.187950 0.580070 0.171254 0.078651 -0.910867 -0.222412 -0.083859 0.864984 -0.278669 -0.649803 0.880094 -0.328801 -0.213914 -0.216491 0.174013 0.216062 -0.219835 -0.432448 -0.257815 -0.295535 0.466796 -0.554579 1.140294 -0.148698 -0.234604 0.644137 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.662968 -0.066484 0.161003 0.671984 0.349984 -0.646343 0.033230 0.535031 -0.226474 -1.053670 -0.682623 0.184637 -0.164919 -0.202341 0.539122 0.029486 0.028178 0.131607 -0.940517 0.587518 0.102901 0.244926 -0.085589 -0.564476 0.281469 0.362498 -0.424706 0.134791 0.184732 0.565658 -0.788721 -0.006987 0.229414 0.249122 0.383621 0.012372 0.391208 -0.052937 0.016385 -0.192853 1.087075 0.218239 -0.057458 0.683229 0.562266 0.461687 -0.361738 1.168432 -0.012849 -0.064525 0.688597 -0.964540 -0.284620 0.323402 -0.566818 0.723396 1.127415 0.474688 -0.291429 0.269095 -0.115626 0.217897 0.164629 -0.558610 0.788087 0.838941 0.156927 0.355306 1.072124 -0.371778 -0.146024 0.199936 1.152475 0.113597 -0.231638 -0.669890 0.017400 -1.482733 -0.141233 -0.934630 0.148904 -0.387170 1.202193 -0.668441 0.485905 0.673903 -0.165873 0.315679 -0.590623 0.267254 -0.499031 0.193785 -0.259942 0.872720 -0.302270 0.087069 -0.151152 0.128537 0.323904 0.623475 -0.110632 -0.071395 -0.790122 -1.402191 -0.667015 0.533701 -0.237052 -0.310825 -0.883497 -0.040084 0.667486 0.422407 -0.780037 -0.523280 0.239513 0.303056 -0.124434 0.464862 -0.769637 -0.093044 -0.195669 0.296289 0.117634 -0.322053 -0.063914 -0.983117 -0.351115 0.172113 0.658618 -0.039575 -0.403458 -0.290073 -0.305403 -0.024370 -0.290677 -0.437794 -0.276533 -0.548267 0.365031 -0.161687 0.375133 -0.899428 -0.377171 -0.537803 -0.585344 0.337366 1.417924 0.157522 0.588669 0.661209 -0.356629 -0.521448 -0.524317 -0.760945 0.427594 -0.101989 0.492331 -0.044949 0.132645 0.041545 -0.040459 -0.745434 0.295030 -0.705866 -0.365377 -0.749051 0.633196 -0.519901 -0.143121 -1.009628 0.316844 1.085854 -0.457601 -0.064025 -0.293739 -0.417444 -0.590112 -0.646642 0.462633 -0.120305 0.247899 0.040253 0.659285 -0.869578 0.312042 -0.516304 0.362401 0.090603 -0.879537 -0.647371 -0.087751 -0.116374 0.044141 -0.066585 -0.312038 0.173575 0.042437 0.953172 -0.063826 0.481636 0.244561 -1.288940 -1.459277 -0.600699 0.331622 0.716630 0.105832 0.244972 -0.595782 -0.321346 -0.676434 0.893531 -1.020007 -0.104491 -0.216208 0.112085 0.767799 -0.351754 -0.437733 -0.870853 0.294952 0.320878 -0.980874 0.902046 0.309615 -0.585759 -0.416896 -1.145534 0.430136 0.464302 1.494092 -0.421111 -0.042757 0.297996 0.173439 -0.294528 -0.789892 0.756974 -0.237254 0.425233 -0.565830 -0.608228 -0.029851 0.574657 0.113613 0.271325 0.211135 0.420269 -0.254658 0.970895 0.294475 -0.280899 -0.418880 -1.146752 0.107527 1.032935 0.243566 0.362889 -0.864954 -0.707806 -0.197715 0.340868 0.776532 0.644407 0.604846 0.522743 -0.541026 -0.447998 0.247274 0.448313 -0.002278 -0.755775 0.314080 -0.501765 -0.210002 0.446999 0.122815 0.215564 -0.170089 -1.210678 -0.559596 0.493072 0.197731 -0.081836 0.624080 0.503805 -0.687631 0.246703 0.068101 0.391418 -0.138404 -0.210218 -0.191225 -0.420872 -0.139350 -0.321149 0.788363 0.143126 -0.159527 0.032403 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.128445 -0.047411 0.058667 0.228819 0.149832 -0.124358 0.055739 0.066212 -0.069276 -0.499277 -0.281854 -0.043656 -0.036328 -0.088863 0.175797 0.089131 0.083586 0.170514 -0.258597 0.145120 0.149371 0.088548 0.023488 -0.064532 0.065463 -0.147331 -0.191579 0.079595 0.045066 0.277338 -0.235609 0.076799 0.219271 0.059064 0.085875 0.214164 0.164940 -0.046931 0.088827 0.069395 0.482684 -0.016371 0.060483 0.159680 0.185263 0.281949 -0.130712 0.340944 0.038235 -0.140359 0.240983 -0.328958 -0.091817 0.069732 -0.298401 0.238002 0.258902 0.178292 -0.194063 0.151252 -0.125250 0.075887 0.056473 -0.219394 0.305671 0.230758 0.072915 0.159232 0.432633 -0.142056 -0.065150 0.155098 0.239370 0.039688 0.075163 -0.070126 0.026508 -0.566150 -0.102076 -0.273136 0.034752 -0.071322 0.504189 -0.272091 0.022535 0.339540 -0.005766 0.250177 -0.102677 -0.005515 -0.283152 0.107766 0.006028 0.243051 0.051404 0.017993 -0.151586 0.062086 0.062610 0.202476 -0.036561 -0.124545 -0.451424 -0.647395 -0.351745 -0.068871 0.017088 -0.077064 -0.478523 -0.014484 0.351066 0.327757 -0.422251 -0.009184 0.171604 0.176590 -0.088470 0.038643 -0.315221 -0.084763 0.018731 0.104980 0.014139 -0.097628 -0.037502 -0.395481 0.023571 -0.021275 0.153683 -0.156359 -0.095948 -0.150049 -0.082692 0.008463 -0.040373 -0.029083 0.069543 -0.220501 0.181177 -0.125828 0.179010 -0.361053 -0.041341 -0.199086 -0.284319 -0.035125 0.669080 0.178224 0.269367 0.124685 -0.257235 -0.203245 -0.311746 -0.421158 0.059163 -0.149914 0.239426 0.076542 -0.015765 0.004065 -0.045771 -0.108279 0.053502 -0.216407 -0.020599 -0.118811 0.154818 -0.165441 -0.079587 -0.449808 -0.009748 0.348700 -0.143732 0.002141 -0.129341 -0.054604 -0.253228 -0.310420 0.204127 -0.100868 0.155644 -0.102023 0.094898 -0.319934 0.152252 -0.196444 -0.004099 -0.028281 -0.309183 -0.309113 0.000000 -0.082854 -0.148019 0.018262 -0.214815 0.064799 0.061646 0.101938 0.101160 0.048308 -0.059290 -0.387397 -0.425546 -0.168173 -0.047257 0.191809 0.217082 0.063262 -0.258126 -0.136763 -0.288889 0.308964 -0.355824 -0.009195 0.038562 -0.122395 0.278689 -0.173903 -0.127660 -0.267424 0.116336 0.025380 -0.519936 0.322849 0.207000 -0.270738 -0.151127 -0.316254 0.119864 0.180716 0.452603 -0.113505 0.069027 0.101366 -0.002058 -0.046902 -0.201871 0.250973 -0.132748 0.213868 -0.290475 -0.211380 0.109258 0.333476 -0.060513 0.098550 0.120943 0.213005 0.054613 0.286497 0.120487 -0.078400 -0.164166 -0.479558 0.089528 0.238292 0.042015 0.190847 -0.261711 -0.140935 0.009255 -0.004935 0.348045 0.156625 0.180849 0.256977 -0.192600 -0.273274 0.067328 0.029134 0.039753 -0.260619 0.204186 -0.162950 -0.056167 0.041580 0.085392 0.061882 -0.175614 -0.352972 -0.050975 0.257179 0.157175 -0.014164 0.291286 0.091504 -0.209349 0.040742 -0.001392 0.166486 0.045003 -0.123028 -0.128872 -0.130019 -0.018974 -0.144395 0.312946 -0.120944 0.003016 0.120108 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = 0.361970 0.104217 0.097853 0.288782 0.296630 -0.448961 0.177750 0.278588 -0.133496 -0.668439 -0.353834 0.153623 -0.043140 -0.382295 0.115428 0.101538 0.059566 0.376290 -0.387373 0.347666 0.181260 0.248333 -0.155487 -0.381268 0.071052 -0.134235 -0.350552 0.192811 0.005639 0.407636 -0.331410 -0.090590 0.286027 0.121637 0.161233 0.430846 0.345441 -0.057513 0.287086 0.075136 0.762634 0.158893 0.059180 0.350947 0.470452 0.418921 -0.179857 0.457059 -0.342322 -0.137934 0.152197 -0.283501 -0.263544 0.010886 -0.440811 0.410346 0.530130 0.286450 -0.329644 0.345447 -0.127466 0.048779 0.161378 -0.222932 0.410146 0.463873 -0.063275 0.230877 0.920818 -0.178468 -0.139728 0.260456 0.555252 -0.004419 0.233020 -0.077943 -0.126030 -0.669879 -0.125087 -0.616702 0.107637 -0.089623 0.986833 -0.439778 0.196741 0.581562 0.226001 0.321843 -0.242993 -0.226755 -0.352043 0.201427 -0.261252 0.776591 0.000344 0.227823 -0.276447 0.145137 0.192926 0.358017 -0.155668 -0.202197 -0.591551 -1.060152 -0.425639 -0.124861 -0.225586 -0.250793 -0.679634 -0.189111 0.568945 0.670424 -0.719106 -0.059751 0.329535 0.139279 -0.063649 -0.000155 -0.511393 0.031245 -0.138831 -0.017430 -0.147912 -0.167066 -0.252433 -0.352092 -0.048617 -0.051788 0.161065 -0.214640 -0.512477 -0.098155 -0.121705 -0.132989 -0.067115 -0.099492 -0.070130 -0.567567 0.180450 -0.351217 0.251823 -0.599806 -0.055433 -0.255084 -0.639182 0.001560 0.641183 0.118290 0.354991 0.099604 -0.185079 -0.405986 -0.470720 -0.742732 0.267243 -0.321877 0.351366 -0.073058 0.016699 -0.246627 -0.112861 -0.341271 0.225218 -0.342965 0.043657 -0.266201 0.893200 -0.316767 -0.112163 -0.607058 -0.054992 0.628545 0.088102 -0.126655 -0.313773 -0.144194 -0.390584 -0.472779 0.303190 -0.067521 0.117143 -0.174807 0.095398 -0.426471 0.257691 -0.247106 0.236724 -0.139501 -0.297829 -0.458737 -0.024540 -0.115896 -0.256352 -0.100044 -0.277833 0.108307 0.123285 0.004082 -0.000330 0.030124 -0.003351 -0.628191 -0.661874 -0.169751 0.195496 0.293494 0.441890 0.285618 -0.376858 -0.089439 -0.536651 0.465734 -0.555391 -0.055994 0.100443 -0.151929 0.653963 -0.255036 -0.233002 -0.508838 0.220305 -0.057115 -0.543669 0.672136 0.322594 -0.472811 -0.304055 -0.450158 0.104355 0.360767 0.794351 -0.278529 -0.040111 0.303983 -0.141751 -0.149603 -0.301932 0.372205 -0.201205 0.645471 -0.478431 -0.311944 0.128384 0.599292 -0.172184 0.201403 -0.032205 0.143995 -0.007636 0.520493 0.203565 -0.032334 -0.393298 -0.635098 0.113978 -0.133092 0.125738 0.127550 -0.201354 -0.346131 0.057802 0.095446 0.591371 0.222997 0.097670 0.346633 -0.450056 -0.505709 0.207240 0.154704 0.197990 -0.483894 0.310923 -0.297916 -0.085467 0.035860 0.215218 0.160969 -0.334610 -0.516951 -0.116989 0.399045 0.253061 -0.295964 0.511306 0.054550 -0.232213 0.127275 -0.067945 0.448072 0.036763 -0.179236 -0.181660 -0.367756 0.040557 -0.198883 0.806769 -0.081064 0.088145 0.337584 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.526718 -0.304310 0.033317 0.518979 0.375864 -0.547043 0.191440 0.227643 0.033729 -0.840367 -0.291480 0.356402 -0.036042 -0.458556 0.105172 0.170062 0.082936 0.270536 -0.535358 0.501121 0.106214 0.196220 -0.268156 -0.385725 0.075495 -0.268292 0.026115 0.345270 -0.029647 0.476824 -0.392879 -0.055809 0.372762 0.075009 0.257508 0.552702 0.446583 -0.060032 0.117484 0.182716 0.990615 0.234558 0.019249 0.423781 0.558065 0.561210 -0.004118 0.911745 0.089632 -0.156661 0.374064 -0.170284 -0.329779 -0.106290 -0.694859 0.466208 0.625634 0.200356 -0.461880 0.365315 -0.190512 0.048417 0.231055 0.024166 0.665970 0.474240 0.162615 0.316744 1.173333 -0.266544 -0.195750 0.427415 0.828633 0.140285 0.587539 -0.290611 -0.443788 -0.776069 -0.115103 -0.422148 0.077111 -0.178837 0.876685 -0.536863 0.092295 0.588001 0.235271 0.487980 -0.360967 -0.173328 -0.516236 0.245358 -0.134122 1.107535 -0.051392 0.327104 -0.293257 0.190333 0.163374 0.486470 0.029488 -0.435618 -0.521073 -1.298682 -0.582268 -0.263642 -0.264047 -0.322084 -0.948143 -0.105771 0.437489 0.633489 -0.858431 -0.055775 0.400099 0.124950 0.505037 -0.125649 -0.363949 0.014755 0.009104 0.074137 -0.112085 -0.234473 -0.260462 -0.481057 0.218315 0.074908 0.163762 -0.271880 -0.538697 -0.058596 -0.068368 0.120617 -0.036083 -0.116697 -0.041341 -0.857046 0.219985 -0.391014 0.376300 -0.785919 -0.226583 -0.397328 -0.611762 -0.025065 1.049571 0.035402 0.695957 0.093935 -0.355704 -0.410543 -0.666230 -1.202054 0.191354 -0.439938 0.210563 -0.020113 0.016431 -0.216166 -0.118224 -0.358587 0.302874 -0.453732 -0.020393 -0.282843 0.481803 -0.311426 -0.090733 -0.618706 -0.109154 0.679494 0.289686 0.091466 -0.288046 -0.855673 -0.536547 -0.583501 0.380638 -0.109924 0.115422 -0.220086 -0.037576 -0.670291 0.309796 -0.328029 0.282911 -0.209568 -0.436311 -0.579210 -0.009326 -0.176882 0.001178 -0.143686 -0.447124 0.128652 -0.099356 0.133947 0.058502 0.136011 -0.071124 -0.962247 -0.879494 -0.132986 0.227330 0.710272 0.242554 0.308348 -0.253449 -0.167350 -0.710088 0.502540 -0.996560 -0.036640 0.281518 -0.346182 0.788228 -0.321776 -0.316716 -0.623810 0.323659 -0.069562 -0.379350 1.022168 0.560157 -0.635769 -0.372353 -0.379685 0.133719 0.432082 0.997192 -0.414878 -0.121906 0.345355 0.048489 -0.198687 -0.284105 0.449561 -0.255797 0.709819 -0.643927 -0.488638 0.107324 0.766371 -0.197685 0.018744 -0.118541 0.026794 -0.228122 0.696951 0.226597 0.158140 -0.555521 -1.054399 0.135201 -0.148805 0.010769 0.299193 -0.500707 -0.388646 0.111208 0.093674 0.792008 0.240332 0.166901 0.458479 -0.708634 -0.674998 0.097154 -0.010815 0.129884 -0.454063 0.490512 -0.438095 -0.118293 -0.074840 0.250925 -0.082575 -0.269976 -0.312959 -0.050121 0.364263 0.288832 -0.355910 0.627400 0.135711 -0.248528 0.019165 -0.018819 0.298846 0.138617 -0.268323 -0.204766 -0.435128 0.108820 -0.223712 0.890255 -0.113570 0.229190 0.241957 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.188438 0.056833 0.066723 0.249747 0.193975 -0.347932 0.141102 0.146035 -0.002918 -0.467770 -0.103166 0.197534 -0.023220 -0.258492 -0.007564 0.061651 0.051707 0.440786 -0.135295 0.247174 0.107898 0.281190 -0.086529 -0.361666 0.034566 -0.031147 -0.116686 0.085127 0.083230 0.335744 -0.279201 -0.126930 0.238428 0.055707 0.103732 0.348757 0.484251 0.003575 0.066707 0.017023 0.550283 0.105898 0.053813 0.304666 0.298416 0.328767 0.071312 0.201496 -0.132532 -0.125471 -0.096650 -0.146058 -0.155891 -0.095750 -0.329258 0.350516 0.299467 0.332115 -0.291889 0.275401 0.061673 0.034945 0.158594 -0.134032 0.206446 0.264373 -0.163724 0.222271 0.708815 -0.174672 -0.081455 0.112239 0.455450 0.008885 0.400365 -0.041993 -0.174728 -0.533589 -0.176096 -0.383498 0.133759 0.021680 0.617240 -0.421561 0.287396 0.500292 0.144159 0.216192 -0.135522 -0.239669 -0.301917 0.117691 -0.145415 0.599116 0.074207 0.105879 -0.223403 0.155674 0.136846 0.210586 0.030532 -0.229314 -0.259799 -0.763694 -0.289233 -0.171192 -0.249489 -0.171788 -0.428512 -0.205601 0.405977 0.615307 -0.623325 -0.009301 0.240353 0.052902 -0.037353 -0.361026 -0.156745 0.177914 -0.158498 -0.103119 -0.146892 -0.259046 -0.247798 0.000000 -0.103908 -0.036363 0.115101 -0.127507 -0.242917 -0.093080 -0.125200 0.042771 -0.073770 -0.081256 -0.083194 -0.521703 0.130108 -0.317368 0.197236 -0.291101 -0.038356 -0.050280 -0.434227 -0.064035 0.510489 -0.201168 0.287772 -0.051319 -0.204685 -0.319026 -0.294332 -0.630321 0.364990 -0.199449 0.180046 0.084721 -0.005681 -0.216286 -0.124719 -0.283125 0.223230 -0.267661 0.009369 -0.061119 0.459088 -0.292981 -0.068560 -0.483079 -0.009247 0.536826 0.253530 -0.116277 -0.308346 -0.114149 -0.246316 -0.308855 0.260620 -0.069048 0.107432 -0.080270 -0.027383 -0.238554 0.209841 -0.230311 0.250161 -0.142013 -0.150975 -0.392893 0.000616 -0.149498 -0.122956 0.003550 -0.237845 0.152545 -0.142631 -0.118484 -0.108719 -0.045551 0.113376 -0.525772 -0.440588 -0.094174 0.140898 0.177837 0.172407 0.303956 -0.329015 -0.074643 -0.305163 0.289156 -0.506205 -0.001933 0.119479 -0.088819 0.501667 -0.179590 -0.135181 -0.383621 0.222401 0.042776 -0.205503 0.505496 0.270853 -0.337074 -0.153000 -0.167527 0.068319 0.286811 0.591566 -0.310976 -0.146008 0.319070 -0.175108 -0.095482 -0.297717 0.220445 -0.132274 0.513745 -0.351243 -0.174811 0.026688 0.422227 -0.125043 0.117080 0.041045 -0.019111 -0.190215 0.433924 0.185980 0.166177 -0.368249 -0.286089 0.148433 -0.171692 0.230609 0.124950 -0.148317 -0.118235 0.164835 0.119391 0.401133 0.169957 0.041401 0.286334 -0.480867 -0.402892 0.242234 0.017112 0.243658 -0.339402 0.314896 -0.261631 -0.045971 -0.063824 0.179421 0.008732 -0.082701 -0.169134 0.003676 0.255983 0.198508 -0.225225 0.417000 -0.033476 -0.228728 0.206706 -0.104573 0.322131 -0.074698 -0.118476 -0.084012 -0.204858 0.109065 -0.199403 0.655123 -0.206118 0.009620 0.212659 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__make_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = 2.262704 0.274071 0.329871 2.214639 0.631695 -1.478575 0.780052 2.202519 -0.372034 -5.208140 -3.331153 1.985813 -0.168534 -0.328943 0.917722 0.493992 0.144874 1.200781 -5.812910 1.536599 2.031344 1.524173 0.487952 -1.290686 0.830612 -0.915314 -0.964864 0.945166 0.768345 2.943432 -1.944254 0.048147 2.517570 0.200892 0.684135 2.579673 0.591633 -0.010480 0.492717 -0.580047 4.312280 1.895975 -0.284612 2.241593 1.328922 3.004898 -0.561002 3.220262 -0.008042 -2.134423 1.067836 -2.053109 -2.410991 -0.148402 -1.738979 1.949167 3.154090 2.330582 -1.660560 1.702726 -0.441611 -0.066012 0.786286 -1.665612 2.357342 2.351700 0.987530 1.477630 4.179477 -1.872601 -0.679631 1.608095 1.879022 0.538156 1.056954 -2.198837 -1.468925 -3.638467 -0.050095 -5.146507 -1.557811 -0.651912 5.439190 -3.157367 1.211658 2.030287 0.097960 2.404469 -1.238546 -0.250769 -2.327241 0.485592 -0.750562 4.299443 -0.109232 0.207649 -0.322916 0.903774 1.454446 2.390245 -0.288460 -1.425997 -3.303531 -5.420125 -0.937242 -0.914396 0.516087 0.880414 -3.749743 -0.905731 1.422144 3.424103 -4.452485 -0.554606 2.423011 1.674498 0.163936 1.078390 -2.585077 -0.127881 -0.084178 -0.034624 1.224400 -1.999701 -0.584090 -1.237604 -0.057965 0.011238 0.875926 -0.350087 -3.374175 -1.970212 -0.250948 -0.589155 -0.071652 0.098132 0.775555 -1.893706 1.847712 -1.923787 1.950321 -3.836711 -0.183204 -0.807910 -2.472899 -0.645972 4.067240 2.236070 1.516606 0.047922 -1.105931 -1.950111 -2.797879 -3.656662 1.124469 -0.303073 2.361252 0.394697 -0.185566 0.477228 -1.058801 -0.775834 -0.165833 -1.277358 -0.027594 -0.984415 3.648352 -1.001945 -0.387445 -2.928601 -0.157049 1.646129 -0.941836 0.811369 -1.239355 -2.641256 -3.396981 -2.880587 2.538570 -0.791553 0.411773 -1.473286 0.464300 -2.127754 0.780757 -2.215613 0.678817 -0.035100 -2.669764 -3.216954 0.329252 -0.759623 -0.916206 0.321510 -1.920692 -0.414563 1.703632 1.792522 0.829147 0.307733 0.175223 -3.986773 -3.113550 -0.721943 -0.857327 2.724743 1.906086 0.170909 -2.864358 -0.858147 -2.814444 3.126335 -2.299486 0.232753 -1.340099 -0.395246 3.714458 -1.199737 -0.282434 -3.343760 1.235168 1.146675 -5.065672 3.854823 2.216740 -1.555971 -0.991591 -1.429552 0.207379 2.552443 3.272682 -1.920219 -1.801675 1.071757 -1.502427 -0.271567 -1.545179 2.261086 -1.638509 1.986698 -2.283270 -1.379334 1.117274 2.163856 -0.282324 1.618769 1.334419 1.018181 1.129570 2.862233 1.443108 -1.064584 -2.390694 -5.926325 1.965894 2.190141 0.217729 0.315189 -1.903628 -2.402681 0.785907 0.209098 3.142347 2.029113 0.350396 2.367010 -2.915949 -2.907852 -0.309228 0.432745 0.642547 -1.192293 0.769718 -0.975614 0.500667 1.093626 -0.122406 0.889248 -2.135001 -2.754530 -0.328085 2.826993 1.359270 -0.210259 3.156423 0.578847 -1.945284 0.313354 -0.137424 1.230163 -0.646015 -1.286108 -0.865350 -1.059259 0.329283 -1.295836 2.530442 -0.139899 -0.450285 1.068649 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -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 >) = 4.780071 0.266570 -0.740901 5.206226 0.386971 -3.332481 1.460639 4.340262 -1.383159 -11.450008 -6.671001 3.463985 0.408089 -0.068592 1.957904 1.867479 -0.719310 1.788900 -12.742921 3.415855 4.880947 3.031672 0.626875 -1.888546 1.707884 -2.127313 -2.185118 1.759124 1.415540 6.675168 -3.919046 1.110575 5.793431 -0.582309 0.859576 5.344352 1.057114 0.447360 1.013428 0.162509 8.648604 3.933312 -0.950288 3.451768 1.769984 6.579963 -1.235859 8.203377 -1.877335 -5.123915 3.262072 -4.064228 -4.978236 -0.356984 -3.014294 3.721722 7.143150 5.824688 -3.095531 3.390665 -1.901571 -0.341686 1.941611 -2.020073 5.876614 5.581743 3.167746 3.550092 8.853593 -3.668387 -0.851929 3.187061 2.400269 -0.132118 2.780474 -4.723517 -3.493865 -7.203875 0.400849 -10.879169 -4.424215 -0.803510 11.457601 -7.213724 1.824119 3.709934 1.309169 6.046438 -3.447228 0.523108 -4.817703 0.442939 -1.738245 10.344319 -0.478322 0.723644 -1.156304 2.230996 3.248421 4.590820 -0.647046 -3.209262 -7.373643 -10.134025 -2.686150 -1.941571 0.921466 3.196657 -9.328289 -2.313073 2.539756 6.129902 -10.330099 -0.328560 5.127141 4.406057 3.692403 4.784865 -6.528836 0.212256 0.165664 -0.310953 3.305318 -3.733513 -0.388946 -3.655846 0.802623 0.460433 0.999393 -0.539319 -9.430316 -3.567498 -0.191119 -2.763590 0.500448 1.205720 2.594902 -4.181676 4.093809 -4.591871 4.159299 -9.369872 -1.119253 -1.400357 -6.562593 -1.375099 8.431470 6.080381 2.853570 -0.809232 -3.866406 -3.743530 -7.300074 -8.579481 0.974520 -0.440855 4.526907 1.040127 -0.727086 1.394361 -2.355214 -0.548412 0.429251 -2.399538 -0.344358 -2.040889 8.320666 -1.190328 -0.753287 -5.772724 -1.343142 1.821631 -1.543020 3.498117 -2.046832 -6.476908 -9.011188 -5.740417 5.673874 -1.455470 0.661724 -4.080297 0.419271 -6.477775 1.411677 -4.843455 0.896253 0.200020 -5.250043 -6.998300 1.224798 -1.070696 -2.788623 0.092805 -4.261198 -1.555204 4.181872 3.547122 2.533147 0.063094 0.067911 -8.144122 -6.771548 -0.399487 -2.749080 6.536675 4.072525 0.053626 -4.874989 -1.626932 -6.885646 6.735946 -4.653101 0.757272 -2.621919 -0.359641 8.179680 -3.156872 -1.455679 -6.992860 2.465502 1.887782 -9.824593 9.385941 4.760923 -2.925500 -1.263119 -1.981188 0.699755 5.619801 5.779189 -3.999016 -4.302799 1.712033 -2.378187 -0.487372 -2.611191 4.609934 -4.767605 3.493632 -4.129797 -2.385977 2.515673 4.833488 -0.631090 2.992486 2.151322 0.703213 2.286744 5.254273 3.241790 -2.995890 -3.982121 -12.381632 4.242697 1.972807 -0.785967 -0.520759 -4.373462 -4.423332 2.067371 0.091913 6.847283 4.188316 -0.121365 4.961385 -7.555450 -6.524435 -1.887434 1.301291 0.650494 -1.806373 0.767652 -1.788796 1.799424 3.395559 -0.336443 1.641346 -5.864393 -5.210788 -0.693853 6.077968 1.473521 -0.607909 7.010490 1.328770 -2.982413 -0.309081 0.204432 1.951540 -1.394840 -2.609990 -1.699823 -1.761200 1.106536 -2.990907 4.825449 -0.776444 -1.610432 2.849491 -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.622343 -0.072952 0.443987 0.325715 0.300959 -0.875872 0.380276 0.849354 -0.099605 -1.155503 -0.631184 -0.400843 -0.109287 -0.656010 0.377294 0.040187 -0.103138 0.593956 -1.644989 0.698880 0.650735 0.720672 0.200263 -0.830279 0.293681 -0.156959 -0.972427 0.357137 0.005624 0.763873 -0.646214 -0.299540 0.537816 0.218682 0.140510 0.762478 0.421599 -0.063936 0.812789 0.423906 1.182809 0.554263 -0.282922 0.352157 0.759674 0.712192 -0.237616 0.575542 -0.640950 -0.358563 0.264680 -1.077998 -0.604097 -0.011073 -0.453033 0.631444 1.427478 1.030535 -0.452912 0.656596 -0.332752 0.022458 0.292976 -0.537546 0.671967 0.832764 -0.057284 0.229649 1.591590 -0.235605 -0.133924 0.202566 0.823680 -0.290470 0.179434 -0.521880 -0.165454 -2.365961 -0.064200 -1.648285 -0.074543 -0.052588 1.105170 -0.829841 0.741791 1.190697 0.288904 0.570343 -0.459456 -0.414564 -0.491805 0.342456 -0.294135 1.607120 -0.250949 0.218435 -0.203145 0.424662 0.549118 0.573699 0.012287 -0.202168 -1.305005 -1.938363 -0.498169 -0.098421 -0.337961 -0.287796 -1.199046 -0.278441 1.251386 0.539485 -1.322158 -0.022402 0.676712 0.498384 -0.432862 -0.361287 -0.766776 0.075145 -0.472842 0.051231 -0.105904 -0.728795 -0.411654 -0.764366 -0.054128 0.217167 0.172085 -0.462547 -0.581197 -0.195261 -0.199336 -0.225342 -0.131561 -0.032047 -0.140500 -0.849472 0.309950 -0.948208 0.549016 -1.064956 0.157092 -0.291124 -0.711553 0.047838 1.122551 0.086322 -0.158546 0.205395 -0.515025 -0.542879 -0.624656 -1.147249 0.420682 -0.364293 0.905456 -0.251962 -0.016395 -0.475089 -0.012263 -0.572313 -0.139457 -0.497279 0.184931 -0.474446 1.322894 -0.434720 -0.176381 -0.929673 0.012478 1.403971 -0.120606 -0.297533 -0.510857 0.268732 -0.624119 -0.883675 0.591666 -0.026143 0.090996 -0.468645 0.404511 -0.934759 0.733447 -0.421922 0.405122 -0.101677 -0.622085 -0.792108 -0.086788 -0.220077 -0.016013 -0.167386 -0.380603 -0.027752 -0.058962 0.401682 0.048258 -0.020826 0.210155 -1.275280 -1.259680 -0.501172 0.318189 0.648326 0.254079 0.422475 -0.564813 -0.010237 -0.672355 0.999936 -0.536078 -0.170383 -0.250069 -0.304907 1.305322 -0.164396 -0.406460 -1.123380 0.314196 -0.044883 -0.298322 1.428480 0.472787 -0.675855 -0.469743 -0.878577 0.114732 0.769058 1.267255 -0.402727 -0.258126 0.410405 -0.405845 -0.254398 -0.699575 0.689881 -0.509501 1.113692 -0.648712 -0.441662 0.125836 1.001814 -0.251637 0.682021 0.047098 0.406682 -0.275014 0.795419 0.176170 -0.272438 -0.602661 -0.939758 0.286031 0.506531 0.490088 -0.044014 -0.514874 -0.702998 0.082212 0.958830 1.007705 1.677406 0.280563 0.520610 -0.713951 -0.838048 0.233581 0.501496 0.281115 -0.777778 0.136609 -0.367777 0.000961 0.374120 0.313422 0.657564 -0.724408 -1.293878 -0.313790 0.714365 0.411440 -0.743992 0.906377 0.053939 -0.456105 0.190522 -0.140032 0.670320 0.008157 0.673167 -0.209891 -0.594471 0.063588 -0.323311 1.419970 -0.116037 -0.011076 0.479152 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = 0.379005 -0.082065 0.079276 0.405183 0.256887 -0.572287 0.225635 0.291040 -0.032879 -0.701695 -0.193291 0.217365 -0.020681 -0.436003 0.041318 0.094921 -0.009985 0.419646 -0.535021 0.438185 0.183731 0.318901 -0.172418 -0.511024 0.059716 -0.146128 -0.126297 0.296653 -0.000403 0.476240 -0.358562 -0.159137 0.342539 0.094623 0.189012 0.534999 0.511800 0.002750 0.167289 0.180366 0.813560 0.294661 -0.084041 0.322784 0.481948 0.506445 0.091091 0.418651 -0.273437 -0.168973 0.026421 -0.147139 -0.308924 -0.173384 -0.487679 0.405844 0.617108 0.434875 -0.395086 0.407972 -0.139602 0.004659 0.242189 -0.019756 0.481241 0.393464 -0.007172 0.284136 1.070263 -0.248200 -0.139300 0.249610 0.670357 -0.050827 0.512850 -0.139108 -0.404369 -0.912499 -0.123519 -0.662618 0.024310 0.018433 0.763821 -0.542152 0.290731 0.640575 0.265690 0.383587 -0.342702 -0.288007 -0.419364 0.170981 -0.221716 1.119197 0.016799 0.235868 -0.229618 0.273737 0.274149 0.392764 0.030283 -0.356485 -0.429494 -1.178645 -0.398064 -0.233783 -0.334635 -0.255449 -0.724602 -0.257146 0.600983 0.699504 -0.861002 -0.004318 0.404935 0.129009 0.209740 -0.440362 -0.289512 0.228769 -0.179020 -0.080920 -0.077466 -0.349377 -0.297848 -0.143028 0.080187 0.044404 0.111894 -0.187659 -0.528166 -0.059617 -0.059527 -0.016780 -0.055726 -0.083803 -0.115209 -0.751925 0.172344 -0.526592 0.370545 -0.612571 0.001263 -0.176783 -0.598523 -0.025054 0.655134 -0.076876 0.321431 -0.044773 -0.299325 -0.344227 -0.511205 -1.077950 0.368257 -0.258370 0.246396 -0.060042 -0.017018 -0.289455 -0.142575 -0.344925 0.307943 -0.376593 0.027343 -0.168778 0.710508 -0.270306 -0.110408 -0.534687 -0.064323 0.696457 0.374963 -0.014804 -0.371703 -0.421940 -0.459350 -0.494537 0.377729 -0.059232 0.022264 -0.207722 -0.056481 -0.550208 0.373712 -0.300821 0.387119 -0.188747 -0.262194 -0.545759 -0.020801 -0.170971 -0.066999 -0.107058 -0.346238 0.092524 -0.147856 -0.105431 -0.053359 -0.005149 0.128129 -0.760167 -0.700391 -0.081102 0.241296 0.474296 0.207815 0.378665 -0.326038 -0.062089 -0.546867 0.486324 -0.653599 -0.024076 0.132370 -0.260936 0.812424 -0.234757 -0.287988 -0.554796 0.309698 -0.013891 -0.096828 0.947360 0.493264 -0.503230 -0.287705 -0.240744 0.060817 0.451051 0.863756 -0.449593 -0.230187 0.369330 -0.142191 -0.167909 -0.286280 0.360741 -0.253881 0.714704 -0.513590 -0.326018 0.056567 0.663324 -0.168358 0.177921 -0.095395 -0.050982 -0.309781 0.607911 0.212160 0.156969 -0.516661 -0.604644 0.198722 -0.338197 0.172027 0.104623 -0.272824 -0.325173 0.161942 0.247434 0.659995 0.437985 -0.064451 0.397822 -0.695141 -0.618815 0.128408 0.069484 0.221339 -0.462312 0.392747 -0.354376 -0.025985 -0.017745 0.229876 0.046484 -0.238870 -0.293112 -0.058386 0.334805 0.257886 -0.448902 0.615126 -0.002225 -0.251438 0.096970 -0.081425 0.340150 0.045070 -0.078326 -0.165522 -0.382846 0.184868 -0.223670 0.896526 -0.150961 0.098234 0.332614 -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 >&) = 2.792736 -0.545738 0.115229 2.934601 0.623559 -2.242764 0.966532 2.595467 -0.114875 -6.257544 -3.661090 1.861509 -0.224972 -0.699246 1.304319 0.631920 -0.219819 1.228550 -7.351331 2.246123 2.526896 1.964820 0.380681 -1.516638 1.097730 -1.080488 -1.392904 1.364361 0.727385 3.460247 -2.432533 -0.135501 3.107584 -0.090898 0.535484 3.091244 0.959319 0.358315 0.910752 0.258043 5.225996 2.321425 -0.839355 2.411621 1.748091 3.640303 -0.706823 4.955430 -0.071379 -2.633070 1.883975 -2.746454 -2.700561 -0.325012 -1.948256 2.383286 4.792891 3.123239 -2.242282 2.024600 -0.721261 -0.113730 1.119117 -1.371831 3.196026 3.289246 1.519577 1.796683 5.448908 -1.943282 -0.678395 1.750553 2.503329 0.271108 1.641475 -3.045251 -2.157516 -5.330387 0.179545 -5.819988 -2.115877 -0.675793 5.542425 -4.056365 1.478191 2.574679 0.386677 3.198165 -1.799913 -0.097338 -2.751063 0.604332 -0.773434 6.261203 -0.459940 0.322802 -0.596932 1.401483 1.869146 2.838044 -0.141176 -1.803039 -4.314567 -7.007251 -1.647060 -1.064352 0.293305 1.066285 -5.336958 -1.253289 1.919026 3.160464 -5.697652 -0.426742 3.007381 2.195191 1.145656 1.265014 -3.269434 -0.028137 -0.161184 -0.152512 1.473398 -2.269162 -0.711935 -2.395517 0.553518 0.568692 0.633962 -0.594824 -4.065027 -1.902163 -0.260157 -0.555564 -0.015742 0.303949 0.934394 -2.806591 2.258503 -2.630990 2.345561 -5.228916 -0.381097 -0.983508 -3.060447 -0.581350 5.095163 2.463452 1.652334 -0.062965 -2.143985 -2.417622 -3.784649 -5.353646 0.908101 -0.622221 2.808075 0.230315 -0.316807 0.351275 -0.986851 -0.919588 -0.136379 -1.548032 -0.006299 -1.528125 4.252631 -1.086396 -0.455281 -3.287660 -0.500343 2.249685 -1.046298 1.282310 -1.310156 -3.473956 -4.309955 -3.500941 3.085625 -0.713297 0.520080 -2.107861 0.586046 -3.958227 1.392861 -2.630548 0.778434 -0.193982 -3.103897 -3.856065 0.253564 -0.823708 -0.442716 -0.092334 -2.502671 -0.646339 1.476794 2.410650 1.244347 0.451297 0.216854 -5.437279 -4.234637 -0.870144 -0.941034 4.036599 1.817102 0.369274 -2.655037 -0.866475 -3.753750 3.948664 -3.315868 0.131545 -1.302632 -0.644830 4.987502 -1.310909 -1.082874 -4.256178 1.485565 1.060581 -4.588561 5.554932 2.828292 -1.956897 -1.064747 -1.614825 0.312379 3.290551 4.032361 -2.530062 -2.215400 1.198563 -1.519111 -0.423231 -1.938900 2.900336 -2.329494 2.737016 -2.613907 -1.588205 1.160864 2.913171 -0.459092 1.814636 1.118578 0.803907 0.679191 3.374517 1.414110 -1.334700 -2.606763 -7.249639 2.243791 2.122429 0.047926 0.320682 -2.850029 -2.789892 0.894131 1.006560 4.159968 3.306532 0.684433 2.809522 -4.046549 -3.706465 -0.572474 0.585229 0.432198 -1.441804 0.957447 -1.038665 0.566041 1.603822 -0.029823 1.081214 -2.908332 -3.579587 -0.585978 3.148354 1.138021 -0.889386 3.824141 0.598579 -2.221210 0.104632 -0.151529 1.369142 -0.573627 -0.715829 -0.994137 -1.479552 0.417550 -1.655041 3.364960 -0.501708 -0.437840 1.311838 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = 0.662296 -0.109256 -0.319289 0.745739 0.238832 -0.500401 0.124670 0.192969 -0.077775 -1.260953 -0.482834 0.959486 0.084220 -0.310294 0.070835 0.445792 0.045216 0.370245 -0.526047 0.519442 0.201112 0.188591 -0.326612 -0.318870 0.086474 -0.312598 0.114950 0.135534 0.121648 0.714502 -0.490965 0.151582 0.592617 -0.112067 0.126149 0.586424 0.382399 -0.025764 -0.071496 -0.041746 1.151778 0.168174 0.206185 0.599509 0.381654 0.730917 -0.234730 1.412644 0.263531 -0.368365 0.609089 0.146876 -0.450881 0.008435 -0.743427 0.641855 0.519829 0.216227 -0.446562 0.338463 -0.247041 0.100305 0.278686 -0.053841 0.794862 0.791879 0.312071 0.577943 1.325846 -0.407706 -0.160001 0.540967 0.703230 0.194856 0.954700 -0.399934 -0.527148 -0.384117 -0.220508 -0.515953 0.017996 -0.227314 1.788874 -0.870494 -0.049403 0.545446 0.481950 0.780491 -0.408986 0.097323 -0.638128 0.239229 -0.265233 1.296352 0.055556 0.371322 -0.606524 0.139468 0.079793 0.505655 -0.026635 -0.510553 -0.689903 -1.241633 -0.846318 -0.374373 -0.120933 -0.016745 -1.365334 -0.047142 0.527832 0.984123 -1.273303 -0.032997 0.519483 0.260203 1.046559 0.640160 -0.731745 0.029644 0.131431 0.043988 -0.076543 -0.165963 -0.219087 -0.472357 0.097371 -0.049764 0.213519 -0.239911 -1.168223 -0.237240 -0.149235 -0.037206 0.086806 -0.002096 0.268490 -0.973432 0.400827 -0.276374 0.375615 -1.129638 -0.543671 -0.419839 -0.909611 -0.165811 1.365295 0.420205 1.135161 -0.050923 -0.455172 -0.702103 -1.043190 -1.155122 0.082490 -0.508791 0.187533 0.233574 0.021735 -0.023667 -0.221778 -0.169406 0.383479 -0.568642 -0.080883 -0.229546 0.967913 -0.446151 -0.072238 -0.972416 -0.330532 0.344781 0.237623 0.293662 -0.195752 -1.285830 -1.000026 -0.669230 0.574043 -0.232931 0.290612 -0.363152 -0.095800 -0.581664 0.063782 -0.499777 0.185024 -0.072334 -0.591580 -0.825400 0.190044 -0.126522 -0.500139 -0.123024 -0.670327 0.146747 0.171033 0.142658 0.176424 0.106188 -0.198546 -1.285825 -1.024889 -0.050321 -0.111606 0.742291 0.706704 0.242601 -0.537034 -0.336009 -1.042592 0.516610 -1.447491 0.075571 0.223056 -0.202699 0.861665 -0.634948 -0.243957 -0.886190 0.361570 -0.043644 -1.213801 1.225621 0.636666 -0.620163 -0.212082 -0.306670 0.249257 0.532816 1.005369 -0.550009 -0.245558 0.350329 0.001631 -0.169126 -0.160864 0.599177 -0.521483 0.638973 -0.663463 -0.420920 0.243146 0.860213 -0.198865 -0.040600 0.043570 -0.135722 0.108940 0.702825 0.522898 -0.022321 -0.639362 -1.620973 0.260419 -0.390675 -0.220268 0.385667 -0.640989 -0.393278 0.299405 -0.190852 0.926888 -0.496028 0.243431 0.584168 -1.084804 -0.856469 0.132075 -0.050987 0.133596 -0.382425 0.607686 -0.472663 -0.127824 0.063173 0.185499 -0.274445 -0.400510 -0.204292 0.036806 0.704604 0.387334 -0.158581 0.808027 0.312683 -0.367929 0.048056 -0.061291 0.287796 -0.118812 -0.712106 -0.110446 -0.268011 0.115159 -0.390920 0.903346 -0.128137 0.015330 0.224562 -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.620930 -0.117226 0.263787 0.415671 0.349055 -0.769274 0.307545 0.636471 -0.045742 -1.105804 -0.571018 -0.052514 -0.074412 -0.586245 0.287097 0.112430 -0.045133 0.516176 -1.203845 0.645546 0.469524 0.558186 0.033640 -0.681467 0.227656 -0.185204 -0.651665 0.301416 0.022298 0.689427 -0.575462 -0.201964 0.502454 0.154761 0.147363 0.693482 0.445409 -0.063711 0.570734 0.294573 1.142647 0.428802 -0.123203 0.446451 0.685909 0.667071 -0.220382 0.807748 -0.374624 -0.309402 0.345192 -0.773907 -0.528624 -0.015733 -0.542118 0.643125 1.152166 0.713151 -0.449307 0.544907 -0.251158 0.036728 0.270453 -0.404128 0.658996 0.786219 -0.003061 0.282660 1.498779 -0.251511 -0.169502 0.315838 0.848560 -0.107122 0.373587 -0.461928 -0.262741 -1.698233 -0.114800 -1.198762 -0.004506 -0.144758 1.184029 -0.779240 0.505630 0.994228 0.303875 0.568901 -0.405219 -0.305340 -0.501079 0.332521 -0.271750 1.434620 -0.174494 0.281625 -0.315703 0.308711 0.398324 0.553200 -0.004904 -0.267766 -1.087787 -1.726553 -0.563710 -0.157118 -0.299718 -0.274331 -1.183505 -0.214647 0.936159 0.639939 -1.213542 -0.050238 0.604878 0.384142 -0.055329 -0.146907 -0.696186 0.037066 -0.271329 0.039062 -0.154943 -0.540431 -0.386947 -0.697852 -0.001903 0.128897 0.170518 -0.417738 -0.623387 -0.177910 -0.204097 -0.102975 -0.075083 -0.067174 -0.069955 -0.902015 0.297280 -0.715453 0.456314 -1.014615 -0.055725 -0.332616 -0.747937 0.010187 1.185027 0.079386 0.253740 0.161146 -0.459831 -0.592524 -0.676970 -1.151258 0.336507 -0.443977 0.686471 -0.131645 0.012480 -0.378136 -0.055919 -0.503770 0.023200 -0.497739 0.121786 -0.414971 1.131362 -0.459290 -0.129899 -0.908050 -0.070638 1.133528 -0.003094 -0.175212 -0.416441 -0.155164 -0.630302 -0.803056 0.532869 -0.069715 0.149956 -0.406555 0.273701 -0.831079 0.533565 -0.403239 0.345035 -0.112430 -0.598786 -0.743540 -0.053184 -0.194988 -0.076495 -0.153734 -0.429033 0.039275 -0.013314 0.350414 0.064214 0.045403 0.070470 -1.232377 -1.169470 -0.393948 0.256333 0.675607 0.324565 0.384097 -0.498026 -0.090308 -0.746266 0.836625 -0.800322 -0.131474 -0.070396 -0.255470 1.145003 -0.261787 -0.377827 -1.021937 0.314222 -0.063030 -0.473414 1.276882 0.479850 -0.660974 -0.425337 -0.730028 0.131601 0.674256 1.204253 -0.416101 -0.216986 0.404126 -0.264898 -0.240942 -0.583458 0.638862 -0.463248 1.006973 -0.648005 -0.455448 0.116620 0.948936 -0.251367 0.445872 0.014859 0.285463 -0.187260 0.761009 0.242810 -0.167859 -0.610578 -1.063541 0.235671 0.277817 0.297628 0.097655 -0.541805 -0.600026 0.124527 0.612424 0.959732 1.069165 0.317874 0.512796 -0.748056 -0.798349 0.253957 0.332199 0.248014 -0.671779 0.279820 -0.402665 -0.055079 0.244959 0.279772 0.388492 -0.610701 -0.970779 -0.225148 0.657440 0.372585 -0.559672 0.827469 0.117006 -0.402373 0.166852 -0.113673 0.583683 -0.011988 0.272346 -0.190638 -0.531183 0.043888 -0.303520 1.281777 -0.128430 0.036567 0.395554 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.415313 -0.087937 0.246680 0.233072 0.256610 -0.525551 0.204053 0.427456 -0.043350 -0.730164 -0.397396 -0.169482 -0.089227 -0.448177 0.252229 0.074317 0.060320 0.379717 -0.827685 0.451331 0.314369 0.376402 0.010092 -0.425778 0.164236 -0.136017 -0.568440 0.196301 -0.003779 0.452063 -0.435482 -0.119391 0.327382 0.126556 0.164975 0.469165 0.270827 -0.092411 0.501388 0.240878 0.836582 0.220300 -0.016266 0.288321 0.536249 0.454157 -0.207748 0.543305 -0.167740 -0.182879 0.306705 -0.683213 -0.312383 0.078000 -0.435719 0.422576 0.758171 0.478021 -0.358295 0.397534 -0.177641 0.079143 0.179454 -0.347842 0.500353 0.528456 -0.047705 0.178093 1.012861 -0.110911 -0.073846 0.157682 0.614872 -0.072569 0.136832 -0.312669 -0.019078 -1.338876 -0.095230 -0.821795 0.123242 -0.112597 0.795323 -0.504455 0.389942 0.732130 0.142691 0.376995 -0.253471 -0.254047 -0.377127 0.250830 -0.132890 0.824977 -0.159645 0.169399 -0.198337 0.201700 0.210154 0.342538 -0.050754 -0.185471 -0.823380 -1.269537 -0.461895 -0.076143 -0.232815 -0.288618 -0.821689 -0.102757 0.708721 0.392574 -0.816524 -0.042542 0.346636 0.216595 -0.298744 -0.085980 -0.501903 -0.084095 -0.241671 0.153684 -0.151965 -0.339930 -0.247708 -0.668842 -0.046933 0.127163 0.185720 -0.327995 -0.262523 -0.106013 -0.148086 -0.042527 -0.132994 -0.042868 -0.079400 -0.553063 0.211024 -0.488133 0.316888 -0.662849 -0.041721 -0.323271 -0.466202 0.021628 0.925799 0.068621 0.143458 0.221491 -0.329029 -0.370485 -0.470374 -0.718492 0.234204 -0.395270 0.529477 -0.102955 0.017420 -0.312509 0.001970 -0.404600 -0.047528 -0.382877 0.070252 -0.368044 0.652418 -0.320485 -0.126996 -0.671938 0.010804 0.932041 -0.112701 -0.218571 -0.325754 0.056324 -0.365950 -0.552759 0.349140 -0.049440 0.169915 -0.232694 0.267068 -0.555311 0.409905 -0.277816 0.164294 -0.134231 -0.399883 -0.498972 -0.065343 -0.157234 -0.020869 -0.135784 -0.272160 0.089219 -0.008979 0.314378 0.032806 0.057318 0.026344 -0.837838 -0.838213 -0.345247 0.222224 0.408363 0.245881 0.273274 -0.371871 -0.067291 -0.467199 0.589308 -0.553178 -0.099407 0.025979 -0.250625 0.748142 -0.167409 -0.241391 -0.653104 0.212703 -0.071490 -0.488580 0.800343 0.305037 -0.546416 -0.324935 -0.675762 0.170876 0.420645 0.872966 -0.190505 -0.002901 0.277587 -0.161701 -0.167040 -0.483661 0.444908 -0.253133 0.708412 -0.497315 -0.337897 0.153444 0.651551 -0.176627 0.283260 0.010355 0.309898 -0.107265 0.556204 0.107602 -0.095810 -0.391264 -0.738645 0.106423 0.447839 0.300669 0.154504 -0.376585 -0.389995 -0.006137 0.411707 0.666938 0.801040 0.324264 0.353179 -0.417577 -0.543508 0.187513 0.265535 0.162142 -0.516934 0.203317 -0.299210 -0.097602 0.127022 0.294270 0.328745 -0.397531 -0.825883 -0.148758 0.434075 0.301377 -0.411819 0.548746 0.066616 -0.290470 0.133281 -0.073959 0.451843 0.051038 0.237630 -0.177727 -0.400303 0.010345 -0.240751 0.921651 -0.116039 0.121372 0.259974 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.226115 -0.013704 -0.029918 0.318670 0.179408 -0.379036 0.123463 0.097275 -0.113467 -0.478137 -0.170742 0.187976 -0.005328 -0.309792 0.055240 0.109425 -0.007561 0.238246 -0.209143 0.303397 0.088291 0.109412 -0.208056 -0.257109 0.008814 -0.152998 -0.082941 0.220491 -0.047292 0.303068 -0.218117 -0.014538 0.218252 0.078540 0.150724 0.336767 0.273347 -0.012836 0.114444 0.151395 0.552411 0.120542 0.012572 0.182208 0.330176 0.337655 -0.010857 0.317573 -0.204971 -0.089768 0.110343 0.008561 -0.159139 -0.067061 -0.374096 0.242553 0.303392 0.150221 -0.253371 0.244257 -0.197558 0.013570 0.148621 0.011723 0.417366 0.260438 0.052370 0.212200 0.688870 -0.140450 -0.100243 0.224947 0.435382 -0.038447 0.307495 0.038873 -0.262336 -0.439479 -0.113732 -0.350112 0.023435 0.016447 0.624526 -0.319274 0.035670 0.359404 0.209199 0.293098 -0.254162 -0.141391 -0.292873 0.117358 -0.174756 0.645107 0.069793 0.190413 -0.222554 0.139703 0.146271 0.272189 -0.105927 -0.243543 -0.312285 -0.794388 -0.352163 -0.143573 -0.206709 -0.204936 -0.562038 -0.154665 0.402901 0.574228 -0.549234 -0.007776 0.257235 0.061865 0.181701 -0.152273 -0.303346 0.115740 -0.039101 0.000912 -0.019238 -0.086226 -0.161940 -0.201504 0.112116 -0.029517 0.096962 -0.126494 -0.408450 -0.036537 -0.014398 -0.059951 -0.016796 -0.056794 -0.042969 -0.450807 0.117817 -0.269502 0.241129 -0.461695 -0.010994 -0.208063 -0.477886 0.008423 0.458211 0.136666 0.335923 -0.017582 -0.187311 -0.217266 -0.429487 -0.755022 0.179001 -0.235192 0.125730 -0.069945 -0.001143 -0.165156 -0.089700 -0.177249 0.313283 -0.277071 0.004961 -0.141404 0.494298 -0.140799 -0.097753 -0.384842 -0.108806 0.361896 0.234613 0.030161 -0.212306 -0.363212 -0.348535 -0.333848 0.228634 -0.045694 0.026984 -0.154978 -0.056726 -0.393782 0.215904 -0.186726 0.200583 -0.122169 -0.167172 -0.345578 -0.043466 -0.076588 -0.170837 -0.137678 -0.235406 0.060959 0.037833 -0.159703 0.022388 0.037517 -0.003712 -0.398902 -0.452135 -0.009949 0.140820 0.279790 0.301710 0.243486 -0.252107 -0.059918 -0.461384 0.322771 -0.476687 -0.015455 0.164604 -0.209917 0.518156 -0.219259 -0.231802 -0.259436 0.195965 -0.072187 -0.298274 0.560993 0.366600 -0.365650 -0.206403 -0.182946 0.069485 0.280824 0.592386 -0.268246 -0.027251 0.202628 -0.006032 -0.112780 -0.104148 0.256588 -0.188206 0.435404 -0.350515 -0.242629 0.086338 0.461243 -0.106511 0.039749 -0.142817 -0.016356 -0.096467 0.360483 0.157461 0.063028 -0.309052 -0.479026 0.089977 -0.343769 0.004186 0.149341 -0.156013 -0.215053 0.057059 -0.050287 0.466438 0.029241 -0.098049 0.266205 -0.417086 -0.414602 0.038375 0.044674 0.084677 -0.328253 0.353039 -0.238124 -0.052557 -0.013786 0.163974 -0.009501 -0.188614 -0.193064 -0.045149 0.219572 0.182631 -0.260609 0.389081 0.029672 -0.142534 -0.012647 -0.020854 0.206769 0.079306 -0.250666 -0.170910 -0.281892 0.115914 -0.137055 0.560164 -0.095478 0.113495 0.263565 -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.428604 0.934836 0.923396 0.453799 0.608496 -1.661090 0.871543 2.072161 -0.454657 -2.461758 -1.801954 0.381241 -0.239558 -1.183294 0.459369 -0.145578 0.030831 1.559730 -3.244053 1.137325 1.264553 1.586444 0.175159 -1.792953 0.491879 -0.051931 -2.228226 0.612779 0.268843 1.671566 -1.203892 -0.861893 1.129534 0.459516 0.286445 1.723409 0.847814 -0.115433 1.637028 -0.115366 2.488578 1.252404 -0.177911 1.430958 1.610663 1.508030 -0.809935 0.987508 -1.538154 -0.858046 0.066933 -1.884959 -1.547683 -0.009398 -0.796218 1.396982 2.630284 1.978987 -0.971607 1.562093 -0.132882 -0.064103 0.541163 -1.626620 0.827466 1.957562 -0.672792 0.497127 3.171150 -0.721805 -0.444227 0.542230 1.616959 -0.242183 -0.033153 -0.968868 -0.173632 -3.477363 -0.137985 -4.060803 -0.192467 -0.270528 3.711383 -1.798929 1.749485 2.286777 0.528850 0.830508 -0.734663 -1.139520 -0.952345 0.562463 -1.089412 3.006626 -0.352697 0.459281 -0.299759 0.647234 1.205023 1.342618 -0.558895 -0.307851 -2.609594 -3.846076 -0.546644 -0.187648 -0.642398 -0.392888 -1.835294 -0.972378 2.298903 1.944422 -2.708235 -0.410304 1.516371 0.783240 -1.739806 0.163984 -1.978013 0.195151 -1.077814 -0.335065 -0.168332 -1.407332 -1.034880 -0.641673 -0.912334 -0.048907 0.441238 -0.589292 -1.981812 -0.776501 -0.514249 -0.814653 -0.382268 -0.332685 -0.457767 -1.424989 0.723964 -1.769781 0.989978 -2.078372 0.266282 -0.348999 -1.797214 -0.043517 1.622029 0.450409 -0.043956 0.277287 -0.254147 -1.469908 -1.093739 -1.698275 1.477727 -0.588527 2.132541 -0.549326 0.028743 -0.946341 -0.370702 -1.402380 -0.282446 -0.860474 0.473548 -0.918138 4.223583 -1.137993 -0.334714 -2.101435 0.217038 2.485482 -0.343357 -0.986940 -1.346930 0.584162 -1.204381 -1.702454 1.304852 -0.079611 0.147119 -0.642776 0.776775 -0.921168 0.954696 -0.955474 0.899022 -0.268360 -1.221358 -1.715365 0.009650 -0.458621 -0.737211 -0.064275 -0.700608 -0.047627 0.761000 0.889232 -0.103689 -0.122695 0.567547 -2.378479 -2.189993 -1.004263 0.582030 0.806548 1.478404 0.903736 -1.789262 0.001085 -1.432292 1.940045 -0.938329 -0.262834 -0.828993 -0.209766 2.731185 -0.434642 -0.360369 -2.399593 0.676730 0.343481 -2.214697 2.419299 0.783324 -1.199720 -0.996530 -1.712817 -0.033065 1.685232 2.506390 -0.972692 -0.882027 1.142486 -1.537844 -0.413430 -1.481143 1.376250 -0.740849 2.410778 -1.393290 -0.734212 0.504298 1.751105 -0.444990 1.687714 0.405708 0.975366 0.277832 1.843419 0.591158 -0.735793 -1.423906 -2.216192 0.933456 1.070252 1.070996 -0.196444 -0.521608 -1.701803 0.336155 1.339405 1.819573 2.306591 0.347694 1.121983 -1.345550 -1.701307 0.759325 1.100084 1.049674 -1.581498 0.252024 -0.700989 0.158271 0.722125 0.454767 1.564258 -1.429909 -2.840819 -0.611667 1.709534 1.022577 -1.124386 1.970882 -0.126200 -1.144391 0.813271 -0.524351 1.893117 -0.410626 0.488307 -0.374945 -1.250743 0.169196 -0.706311 2.940142 0.070108 -0.177315 1.271789 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.579589 0.024670 0.196653 0.541152 0.213899 -1.050527 0.439209 0.737027 -0.399482 -1.034593 -0.401486 -0.194749 -0.001022 -0.781109 0.184952 0.081468 -0.283479 0.411976 -1.635616 0.735399 0.532221 0.438926 -0.229330 -0.915231 0.102277 -0.330343 -0.555743 0.786158 -0.248495 0.758805 -0.458653 -0.269482 0.498479 0.280924 0.357208 0.868820 0.383988 0.038792 0.618151 0.632191 1.144646 0.807785 -0.621724 0.040630 0.808611 0.816066 0.092293 0.054245 -1.428620 -0.259239 -0.094765 -0.154930 -0.605901 -0.320765 -0.525327 0.317430 1.379410 0.954312 -0.482808 0.750334 -0.763491 -0.111731 0.397212 0.162249 0.971802 0.525809 0.266081 0.330098 1.599955 -0.343652 -0.169793 0.315792 0.766097 -0.579814 0.310166 -0.006530 -0.712604 -2.080939 0.087630 -1.828812 -0.375953 0.320730 0.948394 -0.674865 0.427953 0.961614 0.581727 0.633760 -0.862423 -0.500942 -0.519645 0.170949 -0.575209 2.228552 -0.024414 0.395130 -0.065362 0.681540 0.782384 0.695103 -0.144697 -0.446113 -0.835468 -1.961430 -0.393973 -0.239287 -0.512781 -0.351494 -1.071095 -0.543652 1.437811 0.911758 -1.274371 0.100548 0.746428 0.379344 0.162748 -0.879396 -0.715171 0.535391 -0.513306 -0.143138 0.250689 -0.566248 -0.333166 -0.204163 0.395956 0.177029 0.075676 -0.186439 -1.263906 0.042564 0.202884 -0.600633 -0.053627 0.007600 -0.253641 -0.899777 0.212368 -1.179364 0.789724 -1.191898 0.595578 -0.279580 -0.979704 0.140037 0.199143 0.442192 -0.375868 -0.097182 -0.368141 -0.161944 -0.831031 -1.827152 0.470331 -0.046465 0.523105 -0.615405 -0.111686 -0.491554 -0.198431 -0.379142 0.497850 -0.497355 0.135182 -0.371475 1.829317 -0.004093 -0.301298 -0.429106 -0.125065 1.004466 0.551094 0.110598 -0.591692 -0.264428 -0.887536 -0.808757 0.599309 0.050188 -0.362294 -0.519453 -0.053813 -1.186789 0.894660 -0.378642 0.780411 -0.241181 -0.263989 -0.777095 -0.124685 -0.142640 -0.174735 -0.382470 -0.388076 -0.174253 0.031671 -0.476258 0.018370 -0.102361 0.393107 -0.761865 -1.001700 0.043744 0.465017 0.737601 0.412594 0.521138 -0.405465 0.141981 -0.888537 0.992733 -0.162643 -0.065480 -0.132944 -0.612194 1.477095 -0.231261 -0.653318 -0.694133 0.422028 -0.143813 0.442482 1.804326 0.893148 -0.691383 -0.530720 -0.370422 -0.023897 0.784278 1.234541 -0.688792 -0.395496 0.366431 -0.274500 -0.278368 -0.130031 0.583441 -0.518417 1.052640 -0.689550 -0.471463 0.161126 1.039557 -0.188914 0.643320 -0.428962 -0.101307 -0.519619 0.797226 0.193334 -0.056994 -0.662339 -0.678050 0.336339 -1.018311 0.159127 -0.318925 -0.108387 -0.824943 0.031788 0.706536 1.058651 1.410150 -0.770749 0.534897 -0.952187 -0.973999 -0.268510 0.415110 0.166485 -0.800143 0.319270 -0.372662 0.156553 0.257788 0.309431 0.476825 -0.711413 -0.780224 -0.310782 0.473459 0.339561 -1.114539 0.994190 -0.081136 -0.248437 -0.200696 -0.037638 0.411222 0.363983 0.301475 -0.408090 -0.762043 0.416281 -0.231471 1.292640 0.063910 0.170690 0.820954 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = 0.331536 -0.186302 0.094743 0.402913 0.264067 -0.497985 0.177103 0.215211 -0.112633 -0.656851 -0.203454 0.046656 -0.036570 -0.389903 0.117249 0.106790 -0.034075 0.196662 -0.617883 0.423131 0.180408 0.173139 -0.130967 -0.385707 0.073051 -0.246681 -0.044143 0.382745 -0.085969 0.394754 -0.321129 -0.057708 0.289399 0.143035 0.236607 0.449812 0.319429 -0.037231 0.155209 0.283826 0.756403 0.256938 -0.147109 0.158970 0.463005 0.460288 0.078428 0.359123 -0.237244 -0.125921 0.136905 -0.090453 -0.260180 -0.137733 -0.486405 0.290293 0.567372 0.313632 -0.337450 0.313925 -0.308237 -0.005479 0.188029 0.068700 0.589062 0.267949 0.186688 0.222447 0.921853 -0.212352 -0.155656 0.304980 0.587023 -0.066411 0.364716 -0.083893 -0.389210 -0.962096 -0.060030 -0.588287 -0.068696 0.020091 0.528745 -0.378777 0.093673 0.511130 0.213849 0.399856 -0.371468 -0.182461 -0.398529 0.169716 -0.150511 1.007553 0.004532 0.214885 -0.145606 0.255951 0.270282 0.421070 0.011928 -0.319627 -0.418025 -1.102149 -0.392619 -0.185336 -0.215210 -0.266171 -0.725803 -0.142362 0.580727 0.554813 -0.680036 0.009010 0.364832 0.173035 0.267399 -0.428318 -0.293658 0.125883 -0.083520 0.034077 0.026991 -0.235164 -0.187100 -0.296641 0.269759 0.067897 0.121569 -0.200415 -0.450836 -0.039309 0.024322 -0.051991 -0.024837 -0.071292 -0.068499 -0.610325 0.154052 -0.444534 0.385035 -0.618919 0.094583 -0.276604 -0.472830 0.030835 0.585860 0.126739 0.223256 0.037688 -0.300308 -0.193910 -0.502843 -1.050017 0.176776 -0.210804 0.188466 -0.129626 -0.028032 -0.180504 -0.082872 -0.250797 0.295187 -0.347324 0.006436 -0.216528 0.469543 -0.128150 -0.112114 -0.399889 -0.083979 0.573942 0.269062 0.095717 -0.268154 -0.469060 -0.455700 -0.506279 0.306964 -0.054265 -0.037966 -0.242390 -0.036940 -0.635933 0.414733 -0.247651 0.310578 -0.154845 -0.294255 -0.447229 -0.061813 -0.132319 -0.033314 -0.162706 -0.309722 0.019527 -0.110760 -0.126244 0.058581 0.034178 0.035512 -0.609849 -0.659659 -0.049835 0.222131 0.494583 0.147787 0.263245 -0.245099 -0.071974 -0.527896 0.486389 -0.492294 -0.039415 0.128526 -0.358134 0.704813 -0.198557 -0.314025 -0.380698 0.258444 -0.074796 -0.027326 0.916063 0.516363 -0.477718 -0.324769 -0.257336 0.060229 0.384185 0.786860 -0.359198 -0.093457 0.219141 0.027738 -0.162714 -0.138407 0.364347 -0.250280 0.561864 -0.484362 -0.397863 0.054176 0.634749 -0.130260 0.137658 -0.161598 0.012609 -0.280225 0.514693 0.145027 0.102704 -0.402536 -0.612835 0.122973 -0.312918 0.041984 0.116987 -0.278701 -0.369579 0.038259 0.194953 0.652200 0.455211 -0.129137 0.351166 -0.531642 -0.538711 -0.034714 0.049732 0.053677 -0.417232 0.358306 -0.308646 -0.049973 0.003062 0.176040 0.031276 -0.255088 -0.285280 -0.106522 0.250296 0.251555 -0.414834 0.517122 0.073331 -0.188009 -0.072312 0.018149 0.205283 0.194507 -0.052171 -0.226135 -0.387674 0.134557 -0.134085 0.686901 -0.070282 0.157574 0.281698 -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.573766 -0.019590 0.650884 0.805771 0.687616 -1.470562 0.788203 1.787095 -0.139223 -2.670307 -1.764389 -0.109060 -0.136265 -1.104222 0.744109 0.128194 -0.006675 1.065833 -3.139298 1.162685 1.177938 1.221196 0.104127 -1.376971 0.491055 -0.392822 -1.966314 0.694864 0.127473 1.673637 -1.144343 -0.502176 1.218025 0.276849 0.162985 1.630620 0.790883 -0.084730 1.455504 0.387224 2.589921 1.098279 -0.358135 1.177894 1.437175 1.578892 -0.954535 2.186283 -1.231265 -0.835346 1.073572 -2.232898 -1.403210 0.060600 -1.061079 1.406410 3.033206 1.741121 -0.938899 1.390032 -0.599299 0.094922 0.547978 -1.209226 1.297896 2.142042 0.009216 0.602175 3.228848 -0.760260 -0.418588 0.760136 1.586627 -0.193049 0.235494 -1.302187 -0.304175 -3.707291 -0.003508 -3.125756 -0.230519 -0.541597 3.221424 -1.780974 1.123846 2.239139 0.584373 1.175595 -0.921676 -0.579146 -1.065713 0.662883 -0.709073 3.253627 -0.482551 0.614057 -0.529253 0.627940 1.004643 1.332539 -0.216485 -0.425105 -2.936624 -3.871253 -1.161407 -0.251681 -0.441156 -0.334500 -2.496674 -0.606093 2.168125 1.086626 -2.700080 -0.209794 1.451074 1.092308 -0.334078 0.682000 -2.069217 -0.083407 -0.592615 -0.032251 -0.120807 -1.231469 -0.722256 -1.693834 -0.231569 0.238889 0.323809 -0.827229 -1.901056 -0.508266 -0.456320 -0.571532 -0.149440 -0.142926 -0.120587 -1.735522 0.794233 -1.622680 1.044183 -2.602325 -0.178296 -0.695635 -1.876216 -0.018238 2.601495 0.594888 0.510733 0.501713 -0.910286 -1.433685 -1.484329 -2.298070 0.684377 -0.718349 1.954467 -0.446029 -0.010508 -0.711899 -0.257433 -1.061614 -0.275018 -0.951426 0.344033 -0.953773 3.414727 -1.037028 -0.343863 -2.074394 0.012106 2.375290 -0.480847 -0.379248 -0.926140 -0.112868 -1.485357 -1.783085 1.301118 -0.164223 0.302957 -0.826369 0.743570 -1.868525 0.987796 -0.926089 0.697903 -0.113978 -1.595110 -1.770575 0.108194 -0.364348 -0.365562 -0.095832 -0.960797 -0.081586 0.517106 1.278643 0.263340 0.150653 0.199118 -2.772945 -2.662765 -1.058304 0.345440 1.601434 1.132209 0.651370 -1.009454 -0.182654 -1.747118 1.994410 -1.493644 -0.276987 -0.554544 -0.355120 2.527311 -0.607569 -0.783385 -2.651955 0.625674 0.087820 -1.570745 2.810674 0.911734 -1.335206 -1.013770 -1.842255 0.181681 1.527550 2.590197 -0.882317 -0.694173 0.917424 -0.861832 -0.467624 -1.362309 1.459423 -0.943316 2.102888 -1.454580 -0.928029 0.469906 2.025470 -0.536452 1.368192 0.346904 0.916141 0.054058 1.766525 0.554673 -0.899313 -1.254804 -2.798655 0.746883 1.021923 0.493970 -0.062139 -1.253187 -1.580499 0.294542 1.469545 2.033375 2.617227 0.829719 1.228343 -1.480554 -1.759926 0.484288 0.936131 0.682394 -1.521254 0.239569 -0.751814 0.110392 0.788845 0.445788 1.263203 -1.702680 -2.737673 -0.635706 1.738857 0.664127 -1.065814 1.953137 0.207971 -0.951357 0.417953 -0.311434 1.439880 -0.010797 0.601678 -0.356004 -1.157449 0.053357 -0.721777 2.706506 0.010134 -0.131242 1.092356 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.411917 -0.148628 0.157122 0.332315 0.403788 -0.309252 0.132507 0.191939 -0.019289 -0.735158 -0.380342 0.161657 -0.086559 -0.299766 0.171224 0.115604 0.198091 0.230712 -0.378251 0.312011 0.105499 0.152538 -0.115261 -0.226854 0.100306 -0.220797 -0.154484 0.208858 0.028006 0.371424 -0.362747 -0.018861 0.291302 0.110135 0.214885 0.399565 0.334427 -0.118520 0.161708 0.034152 0.867658 0.050776 0.136973 0.422138 0.478675 0.431849 -0.183175 0.774993 0.138360 -0.126319 0.395388 -0.411851 -0.233618 0.053007 -0.594919 0.438169 0.484544 0.137633 -0.385835 0.273762 -0.077978 0.100581 0.115931 -0.223290 0.466603 0.430274 0.058449 0.219622 0.879346 -0.219516 -0.188384 0.364295 0.634304 0.217977 0.238725 -0.257369 -0.070834 -0.669518 -0.110002 -0.336716 0.164805 -0.262558 0.859901 -0.384568 0.068761 0.541084 0.060712 0.341210 -0.175590 -0.119958 -0.441742 0.247453 -0.061412 0.606530 -0.060490 0.201018 -0.232389 0.063469 0.075617 0.410237 -0.041863 -0.249090 -0.606509 -1.070545 -0.527988 -0.145865 -0.099705 -0.285650 -0.728346 -0.015332 0.390418 0.485113 -0.617874 -0.101970 0.272536 0.155867 0.057373 0.122492 -0.427124 -0.191052 0.021889 0.126647 -0.166023 -0.130486 -0.183447 -0.589791 0.043228 -0.002897 0.224854 -0.284244 -0.292193 -0.134102 -0.144238 0.080844 -0.080763 -0.148589 -0.014336 -0.578810 0.222861 -0.202406 0.245308 -0.601374 -0.215858 -0.387220 -0.485391 -0.028318 1.014693 0.080924 0.594217 0.258790 -0.264748 -0.408428 -0.469178 -0.732990 0.122486 -0.391147 0.317146 0.046189 0.025140 -0.124502 -0.082430 -0.360138 0.115632 -0.365211 -0.019264 -0.309560 0.385462 -0.354261 -0.076579 -0.645687 0.006649 0.651995 -0.054598 -0.054063 -0.244375 -0.397310 -0.345061 -0.519685 0.280984 -0.131622 0.212219 -0.113747 0.124378 -0.461455 0.215668 -0.269732 0.113768 -0.154459 -0.475201 -0.456990 0.013609 -0.162376 -0.095011 -0.024280 -0.344674 0.157908 0.022201 0.265675 0.078204 0.127494 -0.142457 -0.789933 -0.762524 -0.269373 0.152767 0.450119 0.296587 0.179906 -0.287592 -0.206078 -0.513995 0.434159 -0.763637 -0.056676 0.201023 -0.216055 0.512258 -0.262398 -0.179473 -0.529188 0.221206 -0.017397 -0.671048 0.646573 0.330311 -0.541501 -0.365199 -0.549764 0.154063 0.286994 0.836450 -0.216155 0.047295 0.272957 0.023192 -0.145688 -0.348504 0.401682 -0.116837 0.551551 -0.578439 -0.452233 0.132011 0.612795 -0.172801 0.079155 0.073319 0.267801 -0.002164 0.602638 0.171666 0.028027 -0.377390 -0.900085 0.072758 0.261540 0.066745 0.311248 -0.426679 -0.335530 0.018757 0.047519 0.622113 0.180249 0.371491 0.391313 -0.371732 -0.476987 0.199988 0.017941 0.128230 -0.436284 0.341569 -0.353487 -0.162517 -0.062444 0.195061 0.037579 -0.246872 -0.494028 -0.090144 0.369040 0.275580 -0.133691 0.468996 0.157537 -0.259305 0.108395 -0.006336 0.379363 0.125300 -0.228764 -0.183805 -0.340598 -0.049345 -0.185088 0.680249 -0.080461 0.164191 0.170844 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.336150 -0.165411 0.020764 0.363543 0.312952 -0.322688 0.106907 0.082638 0.063690 -0.606442 -0.201354 0.336570 -0.038582 -0.281045 0.056290 0.136792 0.144628 0.291675 -0.135632 0.310110 0.030380 0.158510 -0.182267 -0.236368 0.050346 -0.153311 0.035727 0.133743 0.053987 0.336329 -0.313519 -0.023603 0.268652 0.036093 0.172228 0.366459 0.419034 -0.059207 0.016901 0.019374 0.727338 0.045795 0.157103 0.405663 0.374534 0.383533 -0.023897 0.694589 0.230537 -0.113160 0.250993 -0.169203 -0.176745 -0.028656 -0.536438 0.410879 0.307993 0.097596 -0.358683 0.232744 0.010762 0.078703 0.147460 -0.090110 0.391174 0.345149 0.006062 0.254879 0.811885 -0.193017 -0.137905 0.290044 0.613725 0.199997 0.475054 -0.193495 -0.214147 -0.397159 -0.167680 -0.143028 0.186559 -0.175590 0.730105 -0.416272 0.088960 0.447718 0.113739 0.320585 -0.153787 -0.124990 -0.398789 0.192068 -0.057821 0.587453 0.006015 0.197115 -0.287042 0.072269 0.026071 0.304292 0.029737 -0.308447 -0.351378 -0.883731 -0.473436 -0.201050 -0.178902 -0.238423 -0.652053 -0.054226 0.242483 0.549292 -0.620754 -0.060758 0.235516 0.048843 0.257945 -0.046312 -0.231182 -0.036100 0.029627 0.051938 -0.181511 -0.144142 -0.210412 -0.337998 0.034220 -0.005858 0.166969 -0.211727 -0.253448 -0.092059 -0.134042 0.180168 -0.054128 -0.114150 -0.009326 -0.626824 0.177749 -0.181790 0.202991 -0.464449 -0.266202 -0.270826 -0.447467 -0.064046 0.904927 -0.088889 0.662297 0.087389 -0.261063 -0.385342 -0.449358 -0.754425 0.188087 -0.381018 0.144212 0.124650 0.027769 -0.142997 -0.100367 -0.296787 0.218160 -0.344800 -0.038367 -0.175184 0.230383 -0.334101 -0.048885 -0.567098 -0.054078 0.519863 0.168254 -0.010006 -0.224689 -0.547881 -0.323513 -0.397819 0.263529 -0.119740 0.200590 -0.092634 -0.008478 -0.358638 0.145926 -0.257519 0.145953 -0.162833 -0.325092 -0.426344 0.012091 -0.155409 -0.054778 -0.033078 -0.338730 0.188673 -0.094130 0.120894 0.003142 0.095609 -0.085877 -0.727852 -0.619690 -0.146058 0.126932 0.413813 0.207147 0.233638 -0.256426 -0.179903 -0.468385 0.305372 -0.849166 -0.014497 0.268627 -0.174065 0.477471 -0.266608 -0.163908 -0.452635 0.236362 -0.012895 -0.488025 0.580305 0.337746 -0.469613 -0.237647 -0.306467 0.141221 0.267842 0.725002 -0.276261 -0.037727 0.295095 0.015573 -0.126260 -0.295542 0.309265 -0.134190 0.508860 -0.481580 -0.337431 0.077445 0.525274 -0.154370 -0.042098 0.017899 0.058665 -0.108556 0.522964 0.200417 0.167348 -0.407108 -0.735844 0.084911 0.017701 0.069351 0.319520 -0.376200 -0.181708 0.114102 -0.034369 0.533146 -0.027696 0.272753 0.346990 -0.494360 -0.459075 0.210980 -0.063187 0.152203 -0.331153 0.412662 -0.345351 -0.138278 -0.120920 0.200469 -0.120327 -0.113806 -0.188981 0.011942 0.285442 0.229455 -0.132232 0.429273 0.104460 -0.225818 0.128901 -0.041967 0.280826 0.018849 -0.308472 -0.123256 -0.257140 0.033017 -0.199445 0.648852 -0.168728 0.140576 0.122002 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 1.760357 0.323017 0.302130 1.298577 0.414393 -2.559843 0.924915 2.053240 -0.844465 -2.746475 -1.547352 0.615698 -0.010952 -1.782702 0.423245 0.216377 -0.573526 0.927722 -4.674620 1.959940 1.347034 1.138643 -0.595905 -2.137034 0.382117 -0.711575 -1.213518 1.644971 -0.433305 1.892211 -1.232805 -0.534866 1.284460 0.586534 1.033625 2.123040 0.285941 -0.058543 1.536668 0.947480 2.899088 2.258098 -1.154964 0.607238 1.994270 2.009798 -0.007969 0.557738 -2.529198 -0.811531 -0.155017 -0.111418 -1.826704 -0.522826 -1.263096 0.909762 3.051922 1.837055 -1.178081 1.725775 -1.468699 -0.354565 0.927498 -0.031245 2.387110 1.377812 0.653935 0.788637 3.862540 -0.739734 -0.378516 0.855774 2.061760 -1.000917 0.807531 -0.424326 -1.875434 -4.070754 0.197760 -4.898030 -0.959034 0.422690 3.027395 -1.832526 1.198498 1.900123 1.292031 1.643240 -1.937618 -1.217590 -1.246510 0.411654 -1.534138 5.077026 -0.214305 1.005948 -0.107684 1.463038 1.715580 1.751095 -0.600860 -1.141220 -1.932794 -4.785748 -0.592501 -0.556332 -1.012906 -0.604241 -2.643833 -1.119802 2.662243 2.652604 -3.171605 -0.048840 1.866885 0.639301 0.080200 -1.360783 -1.841015 0.963929 -1.155592 -0.153377 0.627669 -1.377657 -0.898616 -0.384914 0.618667 0.373885 0.352921 -0.298380 -3.199875 -0.245154 0.425545 -1.234280 -0.212139 0.037035 -0.418798 -1.998375 0.660379 -2.565121 1.796127 -2.931660 1.072845 -0.838042 -2.118395 0.239045 0.535667 1.459936 -0.511956 -0.243330 -0.321677 -0.605376 -2.181371 -3.896067 1.298044 -0.374703 1.362443 -1.397521 -0.110543 -1.004838 -0.506119 -0.973486 0.878502 -1.247755 0.327200 -1.088485 4.630581 -0.109173 -0.585888 -1.144649 -0.420234 2.079972 0.966339 0.155261 -1.352713 -1.330811 -2.308484 -1.974729 1.549252 0.058873 -0.690252 -1.305657 0.077454 -2.174614 1.680866 -1.073608 1.576809 -0.574209 -0.754406 -1.912027 -0.422368 -0.328449 -0.447920 -1.014493 -0.977139 -0.437728 0.802216 -0.374707 0.097212 -0.070136 0.790943 -2.059802 -2.297562 0.096429 0.908035 1.859338 1.353126 0.997043 -1.539232 0.277281 -2.293887 2.397680 -0.770783 -0.098875 -0.580696 -1.373351 3.648485 -0.621484 -1.229575 -1.817712 0.994200 -0.231119 -0.519494 4.093370 2.073403 -1.608455 -1.129699 -0.997784 0.000000 2.035856 2.926886 -1.602380 -1.081037 0.809866 -0.983836 -0.617100 -0.428714 1.602199 -1.335698 2.531963 -1.639382 -1.086277 0.648238 2.218673 -0.323314 1.499101 -0.933534 -0.057575 -0.508446 1.949933 0.628319 -0.292837 -1.926717 -2.602393 0.908596 -1.483882 0.386337 -0.565289 -0.279948 -2.280102 0.014835 1.165263 2.580486 2.673456 -1.563287 1.267025 -2.336818 -2.396714 -0.662122 1.042216 0.380642 -1.574862 0.774339 -0.898229 0.360125 0.711088 0.700191 1.124360 -1.762457 -2.034411 -0.591826 1.312872 1.118748 -2.310744 2.394864 -0.020483 -0.802249 -0.380483 -0.195470 0.987580 0.358018 0.198089 -0.977165 -1.822402 0.870401 -0.616562 3.059656 0.367780 0.581327 1.666350 -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.310166 0.438842 0.646634 0.536863 0.556869 -1.373488 0.759065 1.626915 -0.209085 -2.362185 -1.442958 0.041604 -0.076147 -0.829092 0.382946 0.102349 -0.058307 1.424480 -2.650530 0.928183 1.159995 1.459406 0.280990 -1.461404 0.459703 -0.049158 -1.938289 0.338331 0.343985 1.607025 -1.144781 -0.641297 1.160569 0.190103 -0.017195 1.507865 1.172242 -0.000383 1.270071 0.106700 2.206080 0.878719 -0.133985 1.171641 1.132896 1.390695 -0.655672 1.644668 -1.373574 -0.870839 0.420483 -2.192881 -1.306745 0.010481 -0.716890 1.417271 2.576511 2.026193 -0.844755 1.323956 0.039332 0.077547 0.542962 -1.303117 0.737789 1.944059 -0.510856 0.506662 2.946173 -0.711243 -0.301258 0.422411 1.288401 -0.293085 0.385960 -1.228962 -0.102085 -3.132157 -0.071938 -3.134975 -0.111118 -0.269548 3.076746 -1.831048 1.458394 2.208639 0.543426 0.937902 -0.618111 -0.723879 -0.916474 0.550414 -0.775212 2.959298 -0.360629 0.423474 -0.559801 0.587984 0.995817 1.041670 -0.180446 -0.319321 -2.505601 -3.258047 -0.842343 -0.265764 -0.619573 -0.119716 -2.031464 -0.873822 1.852092 1.374790 -2.685636 -0.170728 1.333189 0.977969 -0.720177 0.439973 -1.716833 0.208722 -0.843307 -0.361708 -0.296150 -1.320338 -0.828941 -0.932580 -0.681871 0.091547 0.234018 -0.680197 -1.834781 -0.562986 -0.572156 -0.662025 -0.180889 -0.142183 -0.167812 -1.570276 0.708481 -1.629534 0.757863 -2.038960 -0.149046 -0.167637 -1.951018 -0.143336 1.992414 0.040170 0.199004 0.181718 -0.769853 -1.486600 -1.143839 -1.865161 1.007671 -0.572389 1.843089 -0.127163 -0.043769 -0.787493 -0.368249 -1.165445 -0.183207 -0.776527 0.287533 -0.759399 3.476856 -1.150345 -0.260127 -1.963379 0.091201 2.226120 -0.267350 -0.569985 -1.067556 0.414468 -1.291565 -1.543055 1.247368 -0.137857 0.340593 -0.705813 0.654836 -1.429600 0.816044 -0.893345 0.709225 -0.104965 -1.225087 -1.677269 0.171194 -0.407176 -0.571808 0.095173 -0.838494 0.027625 0.376300 0.904212 0.000000 -0.181942 0.418525 -2.480760 -2.233063 -0.914748 0.297505 0.985062 0.993598 0.808340 -1.177904 -0.133050 -1.357477 1.700044 -1.235357 -0.199359 -0.599775 0.115736 2.359704 -0.539536 -0.409205 -2.388001 0.614467 0.256530 -1.448637 2.453518 0.628394 -1.068509 -0.740327 -1.452815 0.105568 1.459736 2.206787 -0.930747 -0.921199 1.056499 -1.181854 -0.384324 -1.475115 1.214349 -0.856235 2.090475 -1.199863 -0.603687 0.262352 1.748016 -0.521386 1.393820 0.538455 0.651974 -0.018744 1.628541 0.511020 -0.683937 -1.122279 -2.077146 0.812758 0.769889 0.820408 -0.212182 -0.887423 -1.162165 0.569275 1.388924 1.709316 2.308534 0.697819 1.099075 -1.556321 -1.588790 0.793510 0.862891 0.938795 -1.323421 0.086754 -0.668654 0.185342 0.723801 0.408378 1.219172 -1.461952 -2.343296 -0.488266 1.693499 0.535421 -0.909654 1.860369 -0.066750 -0.839380 0.769281 -0.459403 1.707766 -0.387092 0.646184 -0.189860 -0.887149 0.111157 -0.771414 2.660784 -0.269328 -0.419415 1.085568 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 4.514876 -0.839980 0.073693 3.347219 1.248092 -5.513848 1.899931 4.349895 -0.937236 -7.012855 -3.758074 0.210952 -0.020066 -3.916989 1.564353 1.435935 -1.290866 1.504411 -9.472665 4.577202 3.277836 2.559431 -1.053031 -3.854489 1.442329 -1.674298 -3.874456 2.783982 -0.856977 4.273494 -2.915705 -0.511301 3.257785 0.608599 0.994162 4.406046 0.559044 0.226635 4.451941 2.767299 6.403852 3.964460 -2.204103 1.527502 4.102495 4.446061 -1.784839 5.794204 -5.176016 -2.038596 2.740913 -2.650513 -3.901338 -0.271151 -2.879131 3.116670 8.192411 4.093928 -2.408885 3.364214 -3.572675 -0.083993 2.097460 -0.530628 5.753475 5.451482 1.946684 2.094025 9.542688 -1.210506 -0.622047 2.276933 4.691478 -1.873483 2.019733 -2.716757 -3.217997 -8.923628 0.243581 -8.739138 -1.467717 -0.409489 7.712555 -4.661875 1.790941 4.289987 3.304415 4.595253 -4.204335 -1.142317 -2.774045 1.703548 -2.779460 11.599546 -1.423520 2.825647 -1.827682 2.787515 2.917843 3.544815 -1.136444 -1.798876 -6.638076 -10.309126 -3.146551 -1.027202 -1.774330 -0.923852 -8.614352 -1.530497 5.403717 3.361375 -7.953600 -0.038720 4.008819 2.408168 2.827968 1.264472 -5.451833 0.836378 -1.736944 0.067409 -0.039650 -2.383678 -1.734109 -4.760576 1.274149 1.225729 0.379076 -1.619662 -7.737991 0.104211 -0.086115 -2.659542 0.298994 0.881355 0.102267 -5.298043 1.719868 -5.206825 3.277003 -8.447939 -0.276978 -2.428972 -5.824414 0.466815 4.615863 3.416750 0.745545 0.063735 -2.196258 -3.142017 -6.067541 -8.395572 0.807536 -2.294922 3.700141 -2.278923 -0.087954 -2.233878 -0.674523 -1.976843 1.215863 -3.018171 0.721969 -3.385518 10.415747 -1.125881 -0.801210 -3.878076 -1.842657 5.089553 0.317169 0.568319 -1.910254 -3.131848 -6.062271 -4.656296 3.311716 -0.036752 -0.224249 -3.670816 1.189507 -6.811004 3.324236 -2.271532 2.313321 -0.570848 -2.815661 -4.524589 -0.160426 -0.405988 -0.761224 -2.356537 -2.596098 -0.801107 1.813540 1.566320 1.201703 0.553886 0.257173 -6.527554 -6.931858 -0.580985 1.456130 5.274338 3.105485 1.655329 -1.813997 -0.097328 -6.215496 5.766275 -3.780910 -0.491701 -0.563697 -1.743082 7.972990 -1.998186 -3.120536 -6.095997 1.801413 -1.393522 -1.978855 9.244365 3.659797 -4.005112 -2.367531 -3.821198 0.887343 4.406042 6.612740 -2.865087 -1.965835 1.680896 -1.206625 -1.631844 -1.677216 3.945288 -3.822739 5.996368 -3.609103 -2.370966 1.396129 5.723483 -1.524939 2.825172 -1.863811 0.015168 -0.509363 3.962520 1.638629 -1.987599 -3.798454 -7.892880 1.075817 -2.019948 0.045215 -0.977204 -2.823441 -4.638944 0.352405 3.231715 6.421667 6.253997 -0.585403 2.928440 -5.748769 -5.404644 -0.364299 2.788456 0.476675 -3.521206 1.195389 -1.911432 0.255673 2.629610 1.867413 2.462014 -5.717822 -5.743829 -1.581276 4.351433 1.143856 -4.798349 5.267013 0.695030 -1.322391 -0.916370 -0.077256 2.450017 0.552234 0.837696 -1.603656 -3.725086 0.973378 -1.961143 7.692035 0.602095 0.845021 3.246660 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.949228 -0.185282 0.076679 0.572395 0.626789 -0.939674 0.285720 0.553532 0.180710 -1.257971 -0.592619 0.698023 -0.066178 -0.803588 0.148546 0.267071 0.112600 0.692908 -0.643125 0.845607 0.227400 0.596833 -0.307810 -0.761132 0.214972 -0.150252 -0.406548 0.137474 0.100987 0.708606 -0.677759 -0.227503 0.541167 0.056752 0.184861 0.787274 0.700317 -0.131682 0.480931 0.051722 1.441290 0.323426 0.305643 0.956816 0.892422 0.710632 -0.347694 1.675855 0.145684 -0.256086 0.597372 -0.594844 -0.592832 0.051970 -0.877776 1.005393 1.014868 0.299771 -0.619848 0.532417 0.076345 0.104876 0.336838 -0.423266 0.700603 1.104115 -0.179355 0.426582 1.954011 -0.227534 -0.261125 0.554710 1.361794 0.288001 0.947919 -0.666974 -0.418972 -0.859936 -0.304432 -0.677411 0.389456 -0.498434 1.857224 -0.986613 0.470404 1.034494 0.485060 0.668330 -0.317282 -0.341631 -0.604612 0.515108 -0.376319 1.528064 -0.252642 0.583145 -0.734046 0.113329 0.137416 0.613082 -0.046134 -0.425117 -1.045654 -1.870071 -0.853708 -0.284483 -0.488338 -0.462939 -1.526081 -0.141242 0.513659 0.990231 -1.434181 -0.192805 0.610026 0.146171 0.459758 0.349492 -0.749527 -0.113619 -0.100295 0.035401 -0.623621 -0.391585 -0.638201 -0.861795 -0.150168 0.038416 0.224029 -0.553907 -0.805228 -0.146003 -0.426399 0.205022 -0.061508 -0.192861 -0.053799 -1.445197 0.312618 -0.495257 0.285894 -1.158840 -0.701825 -0.524305 -1.050527 -0.053262 1.773714 -0.224270 1.202291 0.192056 -0.390732 -1.063592 -0.916661 -1.295153 0.391475 -1.007318 0.560687 0.076492 0.154507 -0.533645 -0.093984 -0.752642 0.206502 -0.689145 0.091566 -0.557541 1.266952 -0.861306 -0.029032 -1.261737 -0.230682 1.229394 0.218927 -0.279070 -0.420256 -0.877948 -0.700025 -0.880302 0.549601 -0.136585 0.438531 -0.378043 0.249346 -0.703282 0.261353 -0.459965 0.340527 -0.234127 -0.680549 -0.846472 -0.031561 -0.237351 -0.117688 -0.230545 -0.604294 0.302561 0.011358 0.602451 -0.023957 0.203321 -0.196482 -1.755578 -1.448594 -0.445160 0.393982 0.890681 0.547747 0.547616 -0.550329 -0.239791 -1.076719 0.730114 -1.782031 -0.161015 0.332896 -0.132807 1.252322 -0.495508 -0.361231 -1.334552 0.403966 -0.192557 -1.063004 1.318772 0.470681 -0.920006 -0.478013 -0.868264 0.258259 0.713908 1.536058 -0.495883 -0.196778 0.647212 -0.197071 -0.341620 -0.779499 0.746029 -0.481722 1.378852 -0.861494 -0.590110 0.116789 1.166935 -0.415420 0.098027 -0.064605 0.174821 -0.080817 0.986723 0.428571 0.043253 -0.904873 -1.638324 0.120997 0.190820 0.235849 0.442940 -0.765390 -0.578396 0.263493 0.273239 1.173962 0.264799 0.813232 0.593174 -1.071552 -0.976014 0.652865 0.211350 0.396816 -0.712974 0.601922 -0.651004 -0.284130 0.037316 0.443911 0.066524 -0.578458 -0.794834 -0.108770 0.800991 0.460871 -0.466434 0.911161 0.257957 -0.416561 0.380991 -0.189765 0.828194 -0.211133 -0.269050 -0.130168 -0.634415 -0.058378 -0.399638 1.726092 -0.217849 0.212776 0.291541 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.949228 -0.185282 0.076679 0.572395 0.626789 -0.939674 0.285720 0.553532 0.180710 -1.257971 -0.592619 0.698023 -0.066178 -0.803588 0.148546 0.267071 0.112600 0.692908 -0.643125 0.845607 0.227400 0.596833 -0.307810 -0.761132 0.214972 -0.150252 -0.406548 0.137474 0.100987 0.708606 -0.677759 -0.227503 0.541167 0.056752 0.184861 0.787274 0.700317 -0.131682 0.480931 0.051722 1.441290 0.323426 0.305643 0.956816 0.892422 0.710632 -0.347694 1.675855 0.145684 -0.256086 0.597372 -0.594844 -0.592832 0.051970 -0.877776 1.005393 1.014868 0.299771 -0.619848 0.532417 0.076345 0.104876 0.336838 -0.423266 0.700603 1.104115 -0.179355 0.426582 1.954011 -0.227534 -0.261125 0.554710 1.361794 0.288001 0.947919 -0.666974 -0.418972 -0.859936 -0.304432 -0.677411 0.389456 -0.498434 1.857224 -0.986613 0.470404 1.034494 0.485060 0.668330 -0.317282 -0.341631 -0.604612 0.515108 -0.376319 1.528064 -0.252642 0.583145 -0.734046 0.113329 0.137416 0.613082 -0.046134 -0.425117 -1.045654 -1.870071 -0.853708 -0.284483 -0.488338 -0.462939 -1.526081 -0.141242 0.513659 0.990231 -1.434181 -0.192805 0.610026 0.146171 0.459758 0.349492 -0.749527 -0.113619 -0.100295 0.035401 -0.623621 -0.391585 -0.638201 -0.861795 -0.150168 0.038416 0.224029 -0.553907 -0.805228 -0.146003 -0.426399 0.205022 -0.061508 -0.192861 -0.053799 -1.445197 0.312618 -0.495257 0.285894 -1.158840 -0.701825 -0.524305 -1.050527 -0.053262 1.773714 -0.224270 1.202291 0.192056 -0.390732 -1.063592 -0.916661 -1.295153 0.391475 -1.007318 0.560687 0.076492 0.154507 -0.533645 -0.093984 -0.752642 0.206502 -0.689145 0.091566 -0.557541 1.266952 -0.861306 -0.029032 -1.261737 -0.230682 1.229394 0.218927 -0.279070 -0.420256 -0.877948 -0.700025 -0.880302 0.549601 -0.136585 0.438531 -0.378043 0.249346 -0.703282 0.261353 -0.459965 0.340527 -0.234127 -0.680549 -0.846472 -0.031561 -0.237351 -0.117688 -0.230545 -0.604294 0.302561 0.011358 0.602451 -0.023957 0.203321 -0.196482 -1.755578 -1.448594 -0.445160 0.393982 0.890681 0.547747 0.547616 -0.550329 -0.239791 -1.076719 0.730114 -1.782031 -0.161015 0.332896 -0.132807 1.252322 -0.495508 -0.361231 -1.334552 0.403966 -0.192557 -1.063004 1.318772 0.470681 -0.920006 -0.478013 -0.868264 0.258259 0.713908 1.536058 -0.495883 -0.196778 0.647212 -0.197071 -0.341620 -0.779499 0.746029 -0.481722 1.378852 -0.861494 -0.590110 0.116789 1.166935 -0.415420 0.098027 -0.064605 0.174821 -0.080817 0.986723 0.428571 0.043253 -0.904873 -1.638324 0.120997 0.190820 0.235849 0.442940 -0.765390 -0.578396 0.263493 0.273239 1.173962 0.264799 0.813232 0.593174 -1.071552 -0.976014 0.652865 0.211350 0.396816 -0.712974 0.601922 -0.651004 -0.284130 0.037316 0.443911 0.066524 -0.578458 -0.794834 -0.108770 0.800991 0.460871 -0.466434 0.911161 0.257957 -0.416561 0.380991 -0.189765 0.828194 -0.211133 -0.269050 -0.130168 -0.634415 -0.058378 -0.399638 1.726092 -0.217849 0.212776 0.291541 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 1.105607 -0.191475 0.153050 0.473398 0.514628 -1.073578 0.312282 0.836012 0.013526 -1.398306 -0.941381 0.145665 -0.094152 -0.978141 0.482498 0.310876 0.097973 0.560489 -1.410557 1.000341 0.475508 0.584949 -0.289821 -0.690170 0.307292 -0.261761 -1.109893 0.215643 -0.065430 0.781502 -0.760171 -0.106915 0.586706 0.099674 0.260104 0.827189 0.197181 -0.225459 1.093074 0.371676 1.583807 0.437366 0.201415 0.737114 1.058255 0.783889 -0.785238 1.846689 -0.165454 -0.296596 1.061526 -1.131931 -0.686357 0.361358 -0.871970 0.901085 1.433996 0.410383 -0.610941 0.655408 -0.350998 0.177675 0.346376 -0.632123 1.070235 1.338685 -0.001837 0.362118 2.038037 -0.043124 -0.116287 0.451376 1.289596 0.006619 0.409666 -0.784888 -0.106091 -1.651675 -0.157354 -1.244457 0.368701 -0.531019 2.030885 -0.986317 0.515686 1.144784 0.520200 0.828486 -0.495076 -0.318773 -0.595991 0.572413 -0.423071 1.580784 -0.482289 0.627252 -0.669396 0.189318 0.179971 0.610931 -0.318316 -0.321264 -1.680056 -2.272604 -1.020321 -0.101605 -0.452288 -0.532900 -1.870669 -0.040022 0.914255 0.663167 -1.549978 -0.167241 0.622969 0.275712 -0.005846 0.854540 -1.263121 -0.402638 -0.265895 0.401404 -0.512995 -0.338251 -0.508350 -1.673997 -0.098750 0.233953 0.296802 -0.673194 -0.884852 -0.083141 -0.346651 -0.090727 -0.153362 -0.021487 -0.009892 -1.206849 0.385087 -0.671985 0.403593 -1.553875 -0.597338 -0.854879 -1.092219 0.081833 1.923814 0.373598 0.818567 0.483626 -0.451338 -0.947277 -1.157399 -1.216748 0.169906 -1.150367 0.945254 -0.258644 0.164923 -0.633047 0.058656 -0.730664 -0.085392 -0.775986 0.152955 -0.911291 1.662757 -0.707979 -0.171004 -1.322849 -0.240748 1.498503 -0.296680 -0.372757 -0.394549 -0.431273 -0.849225 -1.003874 0.605003 -0.073594 0.478778 -0.541762 0.598812 -1.022090 0.446359 -0.458028 0.148369 -0.210406 -0.777493 -0.873924 -0.138357 -0.154419 -0.127497 -0.478857 -0.548418 0.191301 0.410585 0.980199 0.157285 0.310368 -0.266350 -1.767073 -1.705656 -0.625701 0.404790 0.988368 0.815656 0.434792 -0.562664 -0.149135 -1.223522 1.029606 -1.541010 -0.229930 0.185647 -0.339963 1.407479 -0.481535 -0.512111 -1.434626 0.322082 -0.393058 -1.489208 1.460489 0.451326 -1.086540 -0.568727 -1.449437 0.436775 0.766700 1.651510 -0.231411 0.094476 0.473220 -0.192817 -0.373551 -0.859580 0.923275 -0.609178 1.411017 -0.896494 -0.617293 0.400174 1.264066 -0.409444 0.297208 -0.190437 0.527055 0.174594 0.941982 0.286046 -0.387086 -0.790597 -1.994154 0.028597 0.779957 0.253255 0.373339 -0.827578 -0.827889 -0.059042 0.466290 1.339229 0.896280 0.947506 0.584843 -0.862611 -1.056507 0.413246 0.604392 0.220350 -0.865959 0.381695 -0.580115 -0.289397 0.325526 0.625883 0.533493 -1.007012 -1.625700 -0.269595 0.952304 0.500657 -0.711773 0.966937 0.318142 -0.401684 0.185057 -0.144188 0.880591 -0.017646 0.106243 -0.285283 -0.811721 -0.122704 -0.462183 1.852820 -0.062700 0.375971 0.419150 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = 0.890313 -0.108676 -0.317265 1.805684 0.459394 -0.929702 0.277956 0.639811 -0.167042 -3.015485 -1.276109 1.539852 -0.121238 -0.048568 0.103266 0.553700 0.057104 0.448009 -2.291905 0.952794 1.030598 0.792092 0.006888 -0.396632 0.648140 -0.481226 0.153282 0.484321 0.432162 1.604570 -1.107263 0.449343 1.449570 -0.103563 0.153502 1.280879 0.606447 0.322745 0.159174 -0.224879 2.076512 0.534280 -0.114682 1.255641 0.634700 1.721249 -0.186570 2.246066 0.186103 -1.200348 0.486330 -0.074339 -1.025464 -0.325729 -1.081521 1.446945 1.363882 1.245338 -0.951900 0.597359 -0.227663 -0.059925 0.570069 -0.481960 1.521836 1.668237 0.750988 1.221089 2.742162 -0.887055 -0.357921 1.077249 1.316508 0.536239 1.108495 -0.933903 -1.157558 -1.117504 -0.537402 -2.062373 -0.752447 -0.408842 3.000598 -1.831177 0.123091 0.494675 0.342084 1.720403 -0.865594 0.253743 -1.500250 0.285473 -0.307687 2.584310 0.109734 0.371884 -0.668368 0.627267 0.495188 1.240013 -0.192498 -0.801300 -1.378943 -2.555245 -0.979658 -0.696344 0.220674 0.563113 -2.893731 -0.261593 0.272771 2.013686 -2.883066 -0.360536 1.128348 0.832321 1.353863 1.040453 -1.341408 0.100091 0.186891 -0.395243 0.128706 -0.634818 -0.249971 -0.847450 -0.190864 -0.180634 0.353218 -0.009756 -2.402302 -0.754345 -0.379533 -0.311529 0.324208 0.325583 0.685191 -1.365916 0.972418 -0.959676 0.924457 -2.388758 -0.960487 -0.270353 -1.768604 -0.476088 2.257192 1.176570 1.567933 -0.520484 -0.858774 -1.617063 -2.202032 -2.296879 0.388754 -0.469743 0.780753 0.759105 -0.184511 0.307398 -0.748453 -0.429929 0.719042 -0.856681 -0.176309 -0.693439 1.892623 -0.569303 0.302793 -1.841678 -0.702230 0.638164 -0.259227 0.691268 -0.543096 -2.156549 -2.474723 -1.362650 1.188499 -0.478108 0.317180 -1.014558 -0.029624 -1.502908 0.332484 -1.214851 -0.037858 -0.141127 -1.310935 -1.826334 0.590234 -0.385464 -0.759188 0.026855 -1.225764 -0.043075 0.696021 0.766709 0.688207 0.047662 -0.310310 -2.169662 -1.809195 0.158343 -0.471308 1.396612 0.956868 -0.005402 -1.274936 -0.814079 -1.980136 1.780107 -1.848005 0.299991 0.121779 0.146712 2.067097 -1.036069 -0.243397 -1.827353 0.713059 0.385357 -2.670797 2.115333 1.103647 -1.045688 -0.365085 -0.455955 0.351502 1.385773 1.588853 -1.298964 -1.099769 0.658195 -0.267314 -0.217266 -0.666027 1.118084 -1.087301 1.333459 -1.301794 -0.755844 0.498865 1.328844 -0.394656 0.416430 0.329519 -0.320013 0.520678 1.447654 1.218526 -0.214260 -1.301385 -3.061969 0.623780 -0.147398 -0.116609 0.220517 -1.456114 -0.957441 0.755536 -0.386663 1.927746 -0.236455 -0.040158 1.338746 -2.359541 -1.634888 0.234529 -0.018981 0.245392 -0.442208 0.971446 -0.689396 0.105112 0.666341 0.142496 -0.310790 -1.401028 -0.631533 0.018491 1.611998 0.161370 -0.053529 1.726443 0.312602 -0.880398 0.007399 0.203384 0.449193 -0.700013 -1.564963 -0.333735 -0.454638 0.249751 -0.967715 1.736791 -0.244243 -0.182872 0.490916 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.188438 0.056833 0.066723 0.249747 0.193975 -0.347932 0.141102 0.146035 -0.002918 -0.467770 -0.103166 0.197534 -0.023220 -0.258492 -0.007564 0.061651 0.051707 0.440786 -0.135295 0.247174 0.107898 0.281190 -0.086529 -0.361666 0.034566 -0.031147 -0.116686 0.085127 0.083230 0.335744 -0.279201 -0.126930 0.238428 0.055707 0.103732 0.348757 0.484251 0.003575 0.066707 0.017023 0.550283 0.105898 0.053813 0.304666 0.298416 0.328767 0.071312 0.201496 -0.132532 -0.125471 -0.096650 -0.146058 -0.155891 -0.095750 -0.329258 0.350516 0.299467 0.332115 -0.291889 0.275401 0.061673 0.034945 0.158594 -0.134032 0.206446 0.264373 -0.163724 0.222271 0.708815 -0.174672 -0.081455 0.112239 0.455450 0.008885 0.400365 -0.041993 -0.174728 -0.533589 -0.176096 -0.383498 0.133759 0.021680 0.617240 -0.421561 0.287396 0.500292 0.144159 0.216192 -0.135522 -0.239669 -0.301917 0.117691 -0.145415 0.599116 0.074207 0.105879 -0.223403 0.155674 0.136846 0.210586 0.030532 -0.229314 -0.259799 -0.763694 -0.289233 -0.171192 -0.249489 -0.171788 -0.428512 -0.205601 0.405977 0.615307 -0.623325 -0.009301 0.240353 0.052902 -0.037353 -0.361026 -0.156745 0.177914 -0.158498 -0.103119 -0.146892 -0.259046 -0.247798 0.000000 -0.103908 -0.036363 0.115101 -0.127507 -0.242917 -0.093080 -0.125200 0.042771 -0.073770 -0.081256 -0.083194 -0.521703 0.130108 -0.317368 0.197236 -0.291101 -0.038356 -0.050280 -0.434227 -0.064035 0.510489 -0.201168 0.287772 -0.051319 -0.204685 -0.319026 -0.294332 -0.630321 0.364990 -0.199449 0.180046 0.084721 -0.005681 -0.216286 -0.124719 -0.283125 0.223230 -0.267661 0.009369 -0.061119 0.459088 -0.292981 -0.068560 -0.483079 -0.009247 0.536826 0.253530 -0.116277 -0.308346 -0.114149 -0.246316 -0.308855 0.260620 -0.069048 0.107432 -0.080270 -0.027383 -0.238554 0.209841 -0.230311 0.250161 -0.142013 -0.150975 -0.392893 0.000616 -0.149498 -0.122956 0.003550 -0.237845 0.152545 -0.142631 -0.118484 -0.108719 -0.045551 0.113376 -0.525772 -0.440588 -0.094174 0.140898 0.177837 0.172407 0.303956 -0.329015 -0.074643 -0.305163 0.289156 -0.506205 -0.001933 0.119479 -0.088819 0.501667 -0.179590 -0.135181 -0.383621 0.222401 0.042776 -0.205503 0.505496 0.270853 -0.337074 -0.153000 -0.167527 0.068319 0.286811 0.591566 -0.310976 -0.146008 0.319070 -0.175108 -0.095482 -0.297717 0.220445 -0.132274 0.513745 -0.351243 -0.174811 0.026688 0.422227 -0.125043 0.117080 0.041045 -0.019111 -0.190215 0.433924 0.185980 0.166177 -0.368249 -0.286089 0.148433 -0.171692 0.230609 0.124950 -0.148317 -0.118235 0.164835 0.119391 0.401133 0.169957 0.041401 0.286334 -0.480867 -0.402892 0.242234 0.017112 0.243658 -0.339402 0.314896 -0.261631 -0.045971 -0.063824 0.179421 0.008732 -0.082701 -0.169134 0.003676 0.255983 0.198508 -0.225225 0.417000 -0.033476 -0.228728 0.206706 -0.104573 0.322131 -0.074698 -0.118476 -0.084012 -0.204858 0.109065 -0.199403 0.655123 -0.206118 0.009620 0.212659 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = 0.831152 0.066755 0.004564 0.651450 0.391428 -0.939059 0.329158 0.606445 -0.213168 -1.482905 -0.623991 0.489076 0.055753 -0.493200 0.063045 0.327410 -0.081500 0.684366 -1.302451 0.718361 0.501280 0.619877 -0.201518 -0.787798 0.204687 -0.210179 -0.433667 0.295330 0.126418 0.954193 -0.741609 -0.169361 0.722384 0.029009 0.245430 0.908138 0.780193 0.009944 0.360591 0.184602 1.453909 0.510560 -0.036242 0.595710 0.691472 0.922297 -0.073893 1.153364 -0.711508 -0.490803 0.207283 -0.530503 -0.704624 -0.100109 -0.708153 0.829640 1.220571 0.909968 -0.651464 0.666528 -0.059206 0.030809 0.403615 -0.189304 0.817989 0.881340 0.039769 0.459043 1.865843 -0.431736 -0.195774 0.432277 0.941554 -0.143315 0.844309 -0.544291 -0.548100 -1.251656 -0.060735 -1.494390 -0.077123 -0.023150 1.745099 -1.129380 0.523093 1.080584 0.511790 0.802342 -0.556404 -0.352045 -0.706314 0.286454 -0.526201 2.100321 -0.060762 0.419180 -0.470801 0.461018 0.522961 0.683801 -0.075915 -0.537037 -1.018622 -1.917201 -0.690359 -0.367286 -0.461066 -0.097103 -1.454768 -0.523187 0.813210 1.274639 -1.685825 0.030323 0.773769 0.414404 0.502115 -0.001940 -0.835628 0.313075 -0.361626 -0.209625 -0.127400 -0.556706 -0.468853 -0.375071 0.021902 0.043968 0.161376 -0.314638 -1.422619 -0.184377 -0.157934 -0.340748 -0.053463 -0.045133 0.024433 -1.260512 0.433419 -0.897272 0.498424 -1.301770 -0.177475 -0.234279 -1.383965 -0.095425 1.055009 0.106312 0.505762 -0.109525 -0.521464 -0.778139 -1.066483 -1.731431 0.502489 -0.419664 0.591585 0.025725 -0.041828 -0.360819 -0.321147 -0.595296 0.466066 -0.616027 -0.006327 -0.456813 1.833031 -0.540791 -0.147747 -0.982104 -0.213984 0.986437 0.371742 0.090133 -0.603135 -0.690620 -1.100968 -0.924457 0.755120 -0.134273 0.169338 -0.494028 0.047032 -1.099768 0.466508 -0.616978 0.526120 -0.233998 -0.539008 -1.029272 0.037530 -0.234401 -0.389384 -0.158060 -0.682174 0.089509 0.145115 0.026052 0.033340 -0.118742 0.156431 -1.445525 -1.300769 -0.103115 0.170920 0.802028 0.565755 0.497927 -0.610041 -0.157019 -1.094310 0.904248 -1.117907 -0.014322 0.024500 -0.116666 1.450705 -0.521236 -0.376448 -1.107726 0.492586 0.005110 -0.605276 1.779010 0.716692 -0.776266 -0.374382 -0.469068 0.154944 0.852080 1.373351 -0.756994 -0.535730 0.576129 -0.404284 -0.261682 -0.539582 0.743930 -0.627435 1.224717 -0.825304 -0.487939 0.116326 1.153483 -0.286249 0.468192 -0.012557 -0.094905 -0.212686 1.030850 0.396816 -0.021413 -0.803439 -1.398351 0.412373 -0.555692 0.177954 -0.015459 -0.492273 -0.598114 0.335225 0.367549 1.194596 0.686508 0.031714 0.717434 -1.367561 -1.118290 0.237785 0.232663 0.370954 -0.673563 0.390808 -0.552116 0.049558 0.206381 0.322381 0.210991 -0.746653 -0.710355 -0.147526 0.841413 0.321724 -0.593926 1.157178 0.045588 -0.355183 0.223297 -0.149221 0.810115 -0.092970 -0.175848 -0.274073 -0.574158 0.202114 -0.467507 1.498095 -0.256425 -0.025933 0.631586 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.595320 -0.116178 0.391609 0.312856 0.308644 -0.727231 0.314913 0.731383 -0.032887 -1.101159 -0.616961 -0.320783 -0.108405 -0.557275 0.372108 0.070390 0.000150 0.541904 -1.428734 0.612656 0.559934 0.629407 0.170788 -0.673256 0.275996 -0.158021 -0.868258 0.260637 0.044741 0.700087 -0.621307 -0.220297 0.507726 0.166866 0.146884 0.678128 0.384135 -0.088316 0.708488 0.327544 1.141423 0.429891 -0.161197 0.394166 0.685338 0.660636 -0.277580 0.709228 -0.375782 -0.335271 0.361278 -1.074612 -0.524861 0.061185 -0.489856 0.622650 1.254493 0.867788 -0.452108 0.576934 -0.240264 0.073482 0.254082 -0.551852 0.626386 0.789471 -0.047962 0.235286 1.437074 -0.216584 -0.109764 0.194514 0.778368 -0.164283 0.179137 -0.546804 -0.066169 -2.084228 -0.082116 -1.372562 0.028262 -0.137651 1.079624 -0.779956 0.651603 1.086018 0.203996 0.539967 -0.367825 -0.335735 -0.496438 0.332834 -0.202724 1.331264 -0.244667 0.189456 -0.222637 0.340522 0.405012 0.504292 0.026255 -0.206912 -1.230677 -1.777404 -0.543701 -0.099463 -0.265099 -0.265416 -1.137307 -0.182950 1.060694 0.465080 -1.211064 -0.036066 0.568790 0.438100 -0.399732 -0.176187 -0.712713 -0.044070 -0.384598 0.119066 -0.149613 -0.632476 -0.351216 -0.834520 -0.087626 0.204053 0.208769 -0.448094 -0.440874 -0.200449 -0.223576 -0.116360 -0.146886 -0.029005 -0.080777 -0.783613 0.322046 -0.781495 0.472736 -0.974909 0.014930 -0.331274 -0.635928 0.011154 1.238535 0.066301 0.019582 0.260743 -0.501351 -0.545089 -0.607786 -0.994325 0.346078 -0.404881 0.833840 -0.138923 -0.002233 -0.395756 -0.012659 -0.535206 -0.173794 -0.486953 0.133595 -0.458989 1.065538 -0.456491 -0.156887 -0.930907 0.030175 1.308483 -0.206940 -0.277706 -0.449392 0.197159 -0.564149 -0.807876 0.545254 -0.065442 0.191466 -0.387276 0.406687 -0.828873 0.607808 -0.414066 0.285009 -0.107230 -0.627872 -0.744997 -0.056306 -0.218695 -0.001695 -0.114501 -0.388524 0.041699 -0.040116 0.504879 0.058709 0.024203 0.126307 -1.251607 -1.199006 -0.514029 0.240787 0.621283 0.250740 0.343049 -0.516656 -0.072583 -0.619209 0.893390 -0.640010 -0.142017 -0.166900 -0.270075 1.112887 -0.190802 -0.341075 -1.064248 0.287032 -0.027950 -0.481130 1.238709 0.402032 -0.664393 -0.422104 -0.892390 0.175256 0.657313 1.181572 -0.323749 -0.173405 0.380242 -0.336997 -0.222691 -0.707172 0.646335 -0.429567 0.984451 -0.639695 -0.427015 0.159780 0.908611 -0.236411 0.562662 0.119982 0.432642 -0.184164 0.765979 0.173917 -0.237463 -0.555708 -0.994660 0.239225 0.668382 0.447081 0.059076 -0.558263 -0.601534 0.060733 0.803889 0.925539 1.429834 0.437427 0.506078 -0.638457 -0.764673 0.258039 0.416383 0.256650 -0.700249 0.148950 -0.368106 -0.044468 0.296878 0.318109 0.554005 -0.639019 -1.211244 -0.250096 0.680372 0.385521 -0.583470 0.818978 0.092719 -0.446147 0.213942 -0.127052 0.621333 -0.002167 0.535153 -0.188645 -0.511648 0.010926 -0.335927 1.275507 -0.138118 0.019733 0.370400 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = 0.689835 0.022742 -0.182603 0.461188 0.139407 -0.685682 0.151100 0.387568 -0.231506 -1.014293 -0.534049 0.469977 0.025040 -0.580175 0.224575 0.396204 0.026218 0.335835 -0.843701 0.648575 0.294970 0.220773 -0.368535 -0.348440 0.123477 -0.266325 -0.499747 0.159254 -0.068449 0.589934 -0.484146 0.116584 0.461681 -0.033055 0.192565 0.536855 -0.002763 -0.117531 0.536501 0.219737 1.050656 0.195700 0.198765 0.364955 0.572866 0.608381 -0.510205 1.192435 -0.051034 -0.253624 0.744185 -0.159873 -0.431675 0.246392 -0.624749 0.463447 0.640811 0.227852 -0.392276 0.414372 -0.465863 0.132573 0.273935 -0.183661 0.908266 0.859708 0.200190 0.411156 1.276117 -0.089601 -0.006201 0.321425 0.664411 -0.085099 0.449088 -0.347266 -0.184367 -0.856127 -0.140375 -0.864180 0.158954 -0.170580 1.712944 -0.705719 0.112960 0.579140 0.532632 0.711382 -0.459396 -0.054640 -0.479558 0.285263 -0.352961 1.125442 -0.171464 0.419898 -0.523985 0.152250 0.068616 0.376464 -0.320298 -0.342886 -0.974083 -1.343957 -0.825068 -0.160617 -0.269544 -0.237317 -1.374488 -0.007241 0.790227 0.695139 -1.166067 -0.043518 0.412570 0.159110 0.361574 0.842239 -0.967273 -0.157516 -0.133501 0.312295 -0.148910 -0.054653 -0.210453 -0.942029 0.007823 0.092901 0.235472 -0.320063 -1.042843 -0.078609 -0.095038 -0.269722 -0.047982 0.086764 0.129872 -0.697258 0.307792 -0.400257 0.349623 -1.150914 -0.396907 -0.612876 -0.819768 0.003380 1.124314 0.669958 0.636475 0.157189 -0.316053 -0.534573 -1.017758 -0.826600 0.018002 -0.714876 0.417297 -0.126772 0.071868 -0.296104 -0.025694 -0.262218 0.158922 -0.575163 0.014383 -0.534659 1.240924 -0.311940 -0.166479 -0.875602 -0.296379 0.622105 -0.041393 -0.014087 -0.222237 -0.661406 -0.854117 -0.623261 0.470145 -0.090708 0.268685 -0.402734 0.190228 -0.573626 0.217956 -0.364897 0.064977 -0.128615 -0.408398 -0.654277 0.029539 -0.053282 -0.453885 -0.415784 -0.445582 0.109044 0.394366 0.293843 0.169779 0.147338 -0.209340 -1.063703 -1.026706 -0.167027 0.113907 0.549168 0.860269 0.280383 -0.534155 -0.149900 -0.968317 0.597185 -1.091262 -0.024744 0.207980 -0.345622 0.917817 -0.500843 -0.275955 -0.757782 0.255719 -0.284510 -1.379109 1.092178 0.485340 -0.722433 -0.272097 -0.741996 0.354533 0.498512 0.977414 -0.234350 0.079272 0.246640 -0.033866 -0.208382 -0.228094 0.605368 -0.498614 0.751411 -0.587573 -0.355044 0.410273 0.821246 -0.207372 0.042546 -0.215376 0.095422 0.228802 0.561602 0.299805 -0.225391 -0.486385 -1.490531 0.067380 0.006797 -0.036219 0.320094 -0.449460 -0.499234 -0.005536 -0.032074 0.908675 -0.075146 0.279860 0.412926 -0.758960 -0.792253 0.051404 0.319701 0.044857 -0.495196 0.414516 -0.382476 -0.197571 0.205004 0.417826 0.140092 -0.591549 -0.798128 -0.078571 0.659293 0.432356 -0.473691 0.694209 0.241182 -0.251973 -0.037849 -0.058936 0.421972 0.009641 -0.298150 -0.208128 -0.449186 0.075536 -0.371518 1.074005 -0.006179 0.241019 0.319478 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = 1.096906 -0.532374 -0.521781 1.516465 -0.034768 -1.354165 0.237693 1.125821 -0.204899 -2.111413 -1.440709 0.495393 0.297642 -0.394438 1.072684 0.434104 -0.427791 0.265813 -2.509780 1.203587 0.765193 0.463281 -0.623424 -0.789758 0.307468 -0.264683 -0.492524 0.582924 0.093947 1.404780 -0.916823 0.269865 0.846982 -0.344820 0.336124 1.040162 0.186785 0.155420 0.321727 0.426349 2.069327 0.812466 -0.276157 0.751454 0.648236 1.277183 -0.499014 2.083231 -0.958460 -0.980305 1.281574 -0.375643 -0.931018 -0.132983 -0.880013 0.983369 2.240731 1.205372 -0.809654 0.968172 -0.969176 -0.034613 0.594303 0.041132 1.874576 1.270516 1.035157 0.953931 2.270056 -0.679906 0.009183 0.679170 1.049443 -0.408989 0.953585 -1.050858 -0.883269 -2.344213 0.173708 -2.016975 -0.579667 0.043166 2.581999 -1.668584 0.370124 1.202530 0.686376 1.624368 -1.324001 0.291431 -0.676634 0.006626 -0.705688 2.669861 -0.169512 0.447652 -0.269668 0.809482 0.597407 1.211944 -0.229646 -0.602481 -1.522316 -3.018270 -1.321263 -0.056620 -0.146306 0.195980 -2.356244 -0.514965 1.132088 0.480317 -2.136280 -0.076670 1.231340 1.042569 0.816935 0.577796 -1.456121 0.030721 -0.079291 0.298725 0.712964 -0.626705 0.114234 -1.278162 0.501060 0.510044 0.389963 -0.138157 -1.679979 -0.501632 -0.046640 -0.407310 0.003031 0.183391 0.672229 -1.246364 0.914947 -1.200038 1.157199 -2.619439 -0.275410 -0.826456 -1.482722 -0.022151 1.600326 0.744212 0.799388 -0.211303 -1.367888 -0.572424 -1.901199 -2.353348 0.308472 0.005112 0.714498 -0.030917 -0.046924 0.014858 -0.241608 -0.388414 0.672589 -0.964487 -0.186202 -0.704467 1.749737 -0.023245 -0.377108 -1.616255 -0.125471 0.616915 -0.123105 0.801943 -0.167094 -1.384861 -1.969023 -1.123289 1.309010 0.079846 0.188673 -0.704735 -0.227638 -1.949868 0.596108 -1.103033 0.494451 -0.017492 -1.103266 -1.502220 -0.168999 0.159139 -0.558812 -0.373767 -1.153609 -0.231932 0.755892 0.497725 0.238951 0.456627 0.360553 -2.108837 -2.156293 -0.117442 -0.259608 1.614098 0.952991 0.167758 -0.427133 -0.135037 -1.490157 1.456927 -1.608920 0.209483 -0.250026 -0.429657 1.999915 -1.029755 -1.074371 -1.799093 0.427806 0.088826 -1.603532 2.566664 1.110792 -0.911998 -0.227454 -0.658574 0.372030 1.028593 1.885557 -1.094996 -0.568042 0.292402 -0.100269 -0.238826 -0.752280 1.096696 -1.163088 0.686834 -0.807135 -0.603286 0.522726 1.435053 0.075430 0.760579 0.027065 -0.120598 -0.098364 1.350139 0.812288 -0.841925 -1.006945 -2.497034 1.056182 0.044792 -0.557935 -0.049531 -1.287334 -1.128101 0.203187 0.683617 1.315917 1.597692 0.331783 1.098771 -1.767305 -1.671742 -0.620626 0.685432 -0.059471 -0.766758 0.208798 -0.666095 0.431843 0.742691 0.355814 0.017208 -1.057919 -1.601771 -0.489153 1.280199 0.135110 -0.513725 1.824399 0.488388 -0.635924 -0.364461 -0.116729 0.134696 0.001455 -0.144083 -0.566126 -0.673032 0.416535 -0.954753 1.359711 -0.028104 -0.033332 0.911965 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = 0.920113 -0.046242 -0.381195 1.664411 0.216342 -0.270515 0.082643 0.498752 -0.184203 -2.896513 -1.918037 1.285663 0.165093 0.320663 0.547139 0.603810 0.158577 0.275810 -2.658618 0.627717 0.951840 0.298020 0.200887 -0.167282 0.354672 -0.811164 0.459869 0.267439 0.447963 1.617306 -0.917593 0.808032 1.382008 -0.017583 0.654850 1.139615 -0.217912 -0.035658 -0.495447 -0.422615 2.193563 0.890391 0.055007 0.985191 0.215691 1.633084 -0.044990 1.528084 0.483438 -1.164966 0.745367 -0.177339 -0.994146 -0.002558 -1.180865 0.933982 1.045795 0.593383 -0.750871 0.517236 -0.432276 0.029456 0.345900 -0.590904 1.624722 0.692824 1.179765 1.063678 1.671189 -1.101624 -0.229140 0.967089 0.667397 0.361369 1.008537 -0.948646 -1.163933 -0.700815 -0.252773 -2.104733 -0.757379 -0.291355 2.748250 -1.580685 -0.066737 0.462311 -0.079481 1.547369 -0.645157 0.238707 -1.357169 0.075552 -0.336593 1.636273 0.329372 0.055683 -0.216550 0.476412 0.417725 1.108739 -0.010893 -1.047085 -1.064367 -2.486061 -0.667916 -0.666927 0.855950 0.791618 -1.988138 -0.101828 -0.044522 1.998599 -2.219290 -0.094126 1.078141 0.895717 0.847776 0.252572 -1.103901 -0.114148 0.441946 0.313887 0.974190 -0.821542 0.108075 -0.556019 0.294621 -0.094044 0.677969 0.004144 -1.459509 -1.199878 -0.100231 -0.022140 0.067212 0.268863 0.959367 -0.806118 1.124855 -0.560968 1.147528 -1.973718 -0.201898 -0.734920 -1.213279 -0.508038 2.143284 1.488527 1.423483 -0.219402 -0.629593 -0.665869 -1.879917 -1.974204 0.311810 0.087788 0.662217 0.663727 -0.130045 0.891400 -0.771794 0.216560 0.380547 -0.766503 -0.300025 -0.148706 1.007316 -0.237995 -0.258491 -1.399658 -0.337726 -0.004847 -0.413834 1.139932 -0.314089 -2.111048 -2.193345 -1.325582 1.352788 -0.670487 0.367243 -0.804952 -0.025229 -1.031664 0.068972 -1.404246 0.089427 0.108011 -1.406692 -1.701679 0.112326 -0.305319 -0.563951 0.294169 -1.196723 -0.142316 1.272393 0.750554 0.631542 0.288074 -0.073487 -1.700715 -1.313706 0.054483 -1.028837 1.482219 0.962341 -0.383062 -1.501099 -0.726451 -1.524427 1.326376 -1.125005 0.366987 -0.598242 -0.320835 1.339798 -1.011908 -0.047589 -1.369817 0.517610 0.595866 -3.131281 1.636196 1.292234 -0.677388 -0.203453 -0.318356 0.368057 0.926791 1.409337 -0.925526 -0.767690 0.165926 -0.429327 0.010386 -0.487833 1.113386 -0.991116 0.218605 -1.143255 -0.741546 0.805151 0.875536 0.058843 0.506741 0.824272 0.274425 0.834687 1.290537 1.109570 -0.410342 -1.380475 -3.302529 0.953250 0.701980 -0.359241 0.287076 -0.922756 -1.036101 0.364629 -0.603482 1.533429 0.251284 -0.087961 1.370670 -1.581953 -1.464104 -0.630495 -0.184544 0.045921 -0.308970 0.445857 -0.652264 0.357389 0.391970 -0.167866 -0.143710 -0.951850 -0.542074 0.143103 1.498987 0.641465 0.542550 1.570879 0.686050 -0.991817 -0.168918 0.176658 -0.147772 -0.303313 -1.586062 -0.627799 -0.170972 0.205505 -0.709511 0.483675 -0.227268 -0.119923 0.279558 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = 7.151681 1.440103 -5.754751 13.885647 -0.480738 -5.437695 1.008122 4.035608 -2.929861 -21.290318 -12.539345 10.160625 2.948572 0.434558 2.626945 5.717447 -1.813771 2.814733 -20.952514 6.327926 8.133645 3.335616 -0.875541 -4.057589 2.114676 -5.359983 3.936895 2.358572 2.353193 12.932343 -6.159309 5.603438 10.730450 -1.603845 4.554476 9.492801 -2.251325 2.058670 -2.742020 -0.542862 15.586589 8.822958 -1.030858 5.640813 1.747630 12.667094 0.874699 9.254764 -4.307937 -9.052773 4.170851 5.757223 -7.568567 -2.122847 -7.291796 6.311063 11.158472 6.784660 -5.601541 4.828706 -4.489076 -0.658488 4.204596 0.322876 13.446571 6.582317 9.380665 9.301624 14.723137 -7.430859 -0.649067 5.914593 4.017150 -1.885337 11.169380 -7.093983 -13.087862 -2.491518 -2.052207 -18.896470 -6.373801 1.182945 21.690939 -13.245116 0.307423 2.720662 3.929281 12.714592 -6.993775 0.298431 -8.593225 -0.461308 -7.181030 20.208898 2.242933 2.453869 -2.366307 5.947018 4.818962 7.790801 -0.757433 -8.948597 -5.501078 -18.139963 -5.365111 -5.829586 4.489000 7.107889 -16.293258 -3.700714 0.071024 14.249375 -19.732648 0.927035 9.172836 7.111438 11.711515 -0.919595 -9.620087 3.314274 0.865014 0.178367 7.553691 -5.906587 -0.060033 -1.174800 2.595365 -0.035350 3.162714 1.045473 -17.355113 -6.930164 -0.692891 -3.747727 1.251570 3.704152 7.097994 -8.252803 7.790480 -7.399902 9.574225 -17.780322 -0.643579 -4.684510 -12.719840 -3.388849 7.290834 10.258527 7.960696 -6.227124 -5.132493 -4.298361 -16.874365 -17.355894 2.867285 1.497405 3.341355 3.387715 -1.454660 4.871797 -6.695816 2.550141 6.908346 -5.606988 -1.873771 -1.272383 16.619676 -0.303499 -2.700487 -8.030061 -4.893345 -2.429832 1.976595 10.637058 -2.688787 -16.226912 -20.297649 -8.927794 10.950475 -4.020171 0.617086 -7.913441 -2.245532 -10.454605 1.461404 -11.243184 3.390711 0.227725 -6.530781 -13.128401 0.869716 -1.289704 -4.852875 -0.388305 -9.241832 -2.227912 10.366850 1.175316 3.989626 0.742717 1.600349 -12.477302 -9.359180 4.183559 -6.786314 10.703881 8.307425 -0.936777 -9.698191 -3.516445 -13.328621 8.803875 -5.593989 3.071545 -4.161437 -1.845869 13.186839 -8.434007 -1.275917 -10.946657 3.432485 2.794207 -17.443304 16.564258 10.099716 -4.503124 0.001897 1.452327 2.412232 7.402614 8.982270 -8.757659 -8.727910 1.530778 -4.699397 -0.256568 -1.954845 7.792229 -9.921801 3.439464 -7.420949 -3.610881 6.179192 7.392007 0.120993 4.531146 2.516629 -4.140117 3.853935 8.905732 9.412396 -2.506137 -10.924035 -22.153371 7.355562 -7.728972 -3.395397 -2.395852 -3.259675 -8.305508 3.943186 -1.348997 12.210160 2.941674 -6.137397 9.841696 -16.432214 -12.926993 -6.610783 0.179765 0.999121 -2.500752 0.967817 -4.851064 4.251303 4.403966 -0.395024 -0.593411 -9.182713 -1.367563 0.995794 12.194186 2.860391 -0.061845 13.229303 4.116728 -5.655283 -2.394098 1.369346 -1.482560 -2.379646 -11.185286 -4.854917 -2.011385 3.942948 -5.821977 5.715698 -2.224412 -0.898496 4.840713 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 8.365941 -0.948910 -1.726640 7.363963 -0.112502 -13.413539 5.176830 8.880617 -3.106520 -10.600856 -3.505593 2.158806 1.565559 -9.813239 0.621283 1.779258 -4.773495 3.585239 -19.457964 9.339988 5.046336 3.998086 -6.367055 -10.323622 0.006131 -3.545318 -4.431565 9.329865 -3.776765 8.692094 -3.450653 -2.875041 5.819442 1.071831 3.614478 10.471802 2.731579 1.726946 6.619793 7.998021 11.529813 11.900135 -8.319629 0.015682 8.185408 9.497705 1.619258 4.066713 -17.381610 -2.982571 -0.024520 2.782671 -7.955940 -4.815014 -5.284736 2.172794 16.501365 9.343351 -5.034208 9.068223 -10.015632 -1.900340 5.754516 6.027658 12.343755 7.001868 4.712671 4.623530 18.554500 -3.496332 -0.750864 3.233060 8.480574 -7.825533 6.585222 -0.950615 -12.354961 -18.237948 2.232833 -20.088912 -5.523633 4.153472 11.168556 -8.617930 4.079034 8.268279 9.404029 8.136388 -11.974635 -5.180329 -4.903284 0.760351 -8.042563 29.743145 -0.818577 6.644192 -1.212756 8.565811 8.667025 6.911102 -1.982513 -6.787200 -7.194896 -20.734820 -3.871584 -3.630578 -7.503258 -2.684061 -12.916199 -7.149080 13.706356 9.099665 -15.490759 1.793156 8.738158 2.657897 9.581852 -6.947350 -7.867932 8.291328 -5.589854 -2.322856 4.102313 -6.039256 -3.543978 -0.540276 6.019525 3.326384 -1.028377 -0.295199 -19.450485 2.672989 4.047049 -7.287435 0.332415 1.738027 -2.566694 -11.536110 1.899105 -14.376036 9.301243 -15.689052 4.905542 -2.910541 -12.369830 1.590208 -0.641222 6.176265 -2.772101 -3.803614 -3.452382 -1.021606 -11.821580 -23.365023 4.734231 -0.576830 3.702890 -8.659224 -1.152011 -6.315888 -2.846738 -2.383781 7.175254 -5.439071 1.503766 -3.475613 24.189578 1.859846 -3.520534 -1.945558 -3.419214 7.740415 9.989440 3.928580 -5.717259 -9.821252 -12.295141 -7.226715 7.292838 1.362872 -5.515222 -6.575891 -3.037018 -14.366045 8.542848 -4.030577 9.763056 -2.911958 -0.726073 -8.904964 -1.070177 -0.506328 -0.845304 -6.161555 -4.781342 -2.892907 1.791760 -5.412401 0.021495 -0.476719 5.147313 -8.482330 -10.302137 3.454145 4.896522 11.509112 5.465443 6.097716 -1.771011 2.947364 -12.277318 10.167872 -3.656824 0.055462 -1.008150 -7.311577 18.066091 -3.377959 -8.688725 -8.546704 5.016836 -2.625759 7.824940 22.643558 11.347665 -7.280573 -4.367422 -0.874335 -0.464899 9.291656 12.525254 -9.028992 -7.041304 4.059252 -3.100771 -3.209832 0.825016 5.765679 -7.127570 11.458108 -6.565307 -3.432218 2.695802 10.983250 -1.908595 5.696696 -7.930285 -5.513764 -6.366613 8.015278 2.522336 -0.554927 -8.541330 -10.018886 4.317008 -17.544888 -0.851031 -5.218378 -1.035139 -9.235944 1.224221 6.910188 11.674993 13.765732 -11.573687 5.518183 -14.146718 -12.199696 -5.778343 4.933092 1.489267 -7.072958 3.529050 -3.842411 3.317829 3.376334 4.016663 3.954886 -8.912617 -5.868384 -2.333354 4.779777 2.048819 -14.661273 11.706003 -1.581235 -1.117064 -4.150099 -0.842139 2.148883 3.741148 1.775611 -3.966754 -8.637599 6.985626 -3.093384 14.731737 1.819568 2.868844 9.925662 -PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = 0.871551 -0.077557 -0.226622 1.545372 0.228850 -0.282511 0.119165 0.528629 -0.139716 -2.747842 -1.807463 1.166861 0.111151 0.276434 0.515181 0.498222 0.194089 0.308925 -2.639545 0.607535 0.919976 0.359802 0.259615 -0.216237 0.355540 -0.748392 0.425514 0.300325 0.439662 1.546621 -0.898582 0.690941 1.318677 0.020482 0.651007 1.137985 -0.145126 -0.043224 -0.440381 -0.412166 2.130727 0.860179 0.058201 0.977477 0.262498 1.572468 0.039387 1.378014 0.591294 -1.111852 0.662078 -0.292871 -0.968339 -0.046765 -1.143759 0.885707 1.020349 0.650279 -0.757897 0.543596 -0.342918 0.017762 0.332934 -0.615688 1.506423 0.632700 1.041635 0.978006 1.626567 -1.067392 -0.237568 0.901774 0.703715 0.380754 0.907613 -0.986451 -1.082981 -0.879029 -0.249942 -2.089486 -0.706747 -0.275608 2.527469 -1.500781 0.056332 0.506786 -0.175361 1.418188 -0.577675 0.136272 -1.319563 0.080562 -0.261386 1.529907 0.271414 0.005197 -0.109373 0.457203 0.424393 1.085976 0.033241 -1.010291 -1.010312 -2.451356 -0.574985 -0.635912 0.788589 0.694571 -1.822776 -0.115956 -0.037404 1.858721 -2.115165 -0.129203 1.042060 0.841500 0.592436 0.065826 -0.954226 -0.129509 0.376416 0.320514 0.933704 -0.885014 0.067957 -0.498117 0.229377 -0.056169 0.664771 -0.018354 -1.239300 -1.184890 -0.115140 0.058880 0.011538 0.207260 0.832781 -0.745034 1.065716 -0.594632 1.132159 -1.813253 -0.148886 -0.684461 -1.054794 -0.491806 2.103783 1.290836 1.286651 -0.182295 -0.599368 -0.610517 -1.699827 -1.856639 0.389958 0.080099 0.692688 0.634477 -0.125743 0.805433 -0.720883 0.115481 0.271109 -0.718236 -0.272420 -0.146963 0.793605 -0.245426 -0.246019 -1.349477 -0.222957 0.137799 -0.404596 1.001562 -0.368439 -1.953810 -1.999112 -1.289487 1.299753 -0.631635 0.330262 -0.721927 -0.004949 -0.927028 0.125292 -1.356535 0.102028 0.066967 -1.367185 -1.635521 0.104330 -0.349063 -0.417515 0.321865 -1.115689 -0.130056 1.108871 0.800492 0.563627 0.273322 -0.019563 -1.673097 -1.265503 -0.021612 -0.911487 1.402202 0.808067 -0.318414 -1.476281 -0.682060 -1.361871 1.276581 -1.033400 0.333402 -0.578820 -0.343978 1.318673 -0.897799 0.034300 -1.321748 0.513069 0.637730 -2.990502 1.551178 1.236545 -0.674608 -0.245020 -0.338528 0.316257 0.909902 1.384716 -0.878221 -0.760864 0.211922 -0.458778 0.008711 -0.564320 1.050205 -0.880190 0.263763 -1.132845 -0.742086 0.756602 0.830813 0.056187 0.510210 0.829488 0.336018 0.718659 1.306939 1.010485 -0.323404 -1.345462 -3.135322 0.942045 0.933753 -0.207465 0.313438 -0.898504 -1.003721 0.359119 -0.475724 1.462247 0.433061 -0.045055 1.320571 -1.462740 -1.400899 -0.573155 -0.179215 0.096781 -0.318603 0.407375 -0.644610 0.341943 0.335060 -0.148454 -0.084365 -0.828358 -0.577923 0.138554 1.407424 0.662648 0.495374 1.517120 0.600093 -0.987500 -0.106382 0.159195 -0.096154 -0.283326 -1.397488 -0.599024 -0.193723 0.214430 -0.672573 0.516208 -0.237592 -0.089667 0.249104 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = 0.864613 -0.174419 -0.376271 0.902750 0.251483 -0.663810 0.172091 0.304164 0.040073 -1.649768 -0.641795 1.338621 0.125891 -0.401672 0.123509 0.590919 0.013657 0.488253 -0.667329 0.676277 0.304399 0.354519 -0.348117 -0.471361 0.158627 -0.361534 0.135712 0.113285 0.190599 0.952606 -0.620485 0.210179 0.796755 -0.149671 0.167458 0.782100 0.451424 -0.027587 -0.090439 -0.073396 1.490921 0.230987 0.266401 0.881822 0.485081 0.949996 -0.342845 1.713730 0.301205 -0.500193 0.849112 0.171805 -0.609957 -0.061609 -0.912441 0.855302 0.697549 0.173682 -0.593635 0.439032 -0.044272 0.128281 0.356625 -0.031551 1.012755 1.085213 0.353893 0.806001 1.694416 -0.497418 -0.174034 0.623903 0.861745 0.227336 1.281553 -0.578685 -0.651825 -0.216395 -0.294651 -0.555980 -0.042586 -0.382372 2.037914 -1.173195 0.034720 0.677659 0.567703 1.026802 -0.378222 0.077413 -0.773007 0.252358 -0.229982 1.596229 -0.048415 0.518471 -0.794441 0.188639 0.091240 0.626689 0.107175 -0.697262 -0.879997 -1.388948 -1.021506 -0.497797 -0.125551 0.071521 -1.781595 -0.096391 0.448148 1.158114 -1.689581 -0.054254 0.668542 0.370293 1.380420 0.653832 -0.851719 0.078042 0.173313 0.033584 -0.267742 -0.247116 -0.298968 -0.603109 0.054143 -0.013265 0.266356 -0.295567 -1.557806 -0.373145 -0.174182 0.076306 0.098199 0.106274 0.380651 -1.249378 0.470439 -0.409534 0.496386 -1.462791 -0.788242 -0.557652 -1.054545 -0.245616 1.574049 0.266052 1.457610 -0.089863 -0.631815 -0.880511 -1.318515 -1.526412 0.182122 -0.667980 0.274661 0.381505 0.015307 -0.040898 -0.326113 -0.202417 0.447522 -0.738099 -0.104444 -0.368433 1.092498 -0.591484 -0.120048 -1.088723 -0.414976 0.421311 0.313524 0.421681 -0.216739 -1.396782 -1.350867 -0.863482 0.768686 -0.309637 0.376275 -0.467671 -0.089063 -0.893167 0.015533 -0.700861 0.367084 -0.100343 -0.716335 -1.089280 0.245664 -0.153535 -0.452405 -0.129515 -0.875833 0.174645 0.058529 0.143085 0.189113 0.177216 -0.249028 -1.620760 -1.325731 -0.030690 -0.163810 0.933539 0.787516 0.342368 -0.635022 -0.432415 -1.296480 0.677345 -1.926565 0.160966 0.327572 -0.162277 1.145050 -0.803542 -0.387353 -1.240659 0.474384 -0.016903 -1.294290 1.462850 0.622623 -0.787528 -0.231662 -0.353111 0.325173 0.705645 1.252152 -0.666349 -0.425564 0.479647 -0.009979 -0.203679 -0.357012 0.778514 -0.673337 0.951555 -0.845047 -0.500492 0.335009 1.080494 -0.264316 0.103757 0.098239 -0.235395 0.013928 0.883327 0.745760 0.009680 -0.857348 -1.837521 0.353172 -0.551417 -0.187589 0.400984 -0.904619 -0.512653 0.440059 -0.081886 1.188559 -0.651038 0.393444 0.756732 -1.485307 -1.147354 0.170210 -0.067657 0.207788 -0.383864 0.616806 -0.455135 -0.099075 0.219723 0.253808 -0.254574 -0.598111 -0.249588 0.074678 1.023163 0.379570 -0.176038 1.067003 0.404560 -0.471689 0.115715 -0.095262 0.358813 -0.239289 -0.975757 -0.184673 -0.320308 0.149562 -0.577277 1.190332 -0.231022 -0.022262 0.172728 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 5.125737 2.048234 -6.578526 10.110352 -1.154923 -2.194210 -0.262090 1.537389 -3.627741 -15.533356 -9.745218 8.704123 2.813922 2.343591 1.909012 5.974411 -1.562067 0.385300 -11.693571 3.901824 5.462168 0.385979 -1.318894 -0.074156 1.216192 -4.451889 3.208876 -0.010469 1.938363 8.939184 -3.638003 6.184821 7.808911 -2.002299 2.878754 5.742036 -3.030027 1.251653 -3.133638 -1.350974 9.902704 5.004635 0.906475 3.100786 -0.937008 8.575565 -0.910494 9.183610 -3.978548 -7.023143 5.071460 3.546653 -5.226732 0.185391 -4.586012 3.928650 4.256004 2.860726 -2.856923 2.076327 -4.787952 -0.244158 2.363801 0.479480 9.947676 4.370043 7.981557 6.976983 8.090691 -5.196972 -0.346598 5.661562 0.190570 -0.820781 7.547994 -4.183323 -8.350390 4.020139 -1.117982 -10.569469 -5.634707 0.571039 19.083276 -9.176200 -2.655045 -0.217933 2.878949 9.592266 -4.876104 2.766514 -5.972503 -0.822983 -4.816182 10.812152 2.183079 1.670890 -2.859241 2.809028 2.345495 4.955877 -2.290229 -5.850761 -4.810062 -8.713873 -3.814716 -3.828450 4.782387 7.074399 -12.210076 -2.287073 -2.051219 11.761288 -13.164234 1.298706 6.208675 5.273493 12.402725 7.011948 -8.313162 1.559929 2.949318 0.615891 6.636547 -1.972428 1.365679 -1.849256 2.793516 -1.300654 2.112336 1.328855 -15.439244 -5.329625 0.234434 -4.576428 1.838337 3.462641 7.027363 -4.567585 6.044974 -2.787201 5.696033 -13.085661 -2.138041 -3.623393 -11.202777 -2.633425 7.761729 11.769971 8.281514 -4.489572 -3.488802 -3.330731 -13.016239 -10.315791 -0.523154 0.858717 1.522065 3.471872 -0.630907 5.528862 -4.833151 4.163764 5.019807 -3.374189 -1.800840 -0.361821 11.279897 0.472602 -1.694917 -6.120862 -4.949376 -6.135530 0.165238 9.407414 -0.354717 -14.345089 -15.787721 -5.771265 7.448941 -3.178531 1.312468 -5.955014 -2.050210 -6.528160 -1.505160 -7.990366 1.176962 1.300727 -4.824357 -8.857962 1.398875 0.055574 -6.619781 -0.428024 -5.841284 -2.197400 10.560402 0.254180 4.143761 0.956332 -0.859953 -6.976172 -5.400084 4.290781 -7.280989 7.492291 8.454108 -2.460978 -6.858113 -3.189312 -10.787272 5.763726 -4.347939 2.516600 -3.086167 0.316495 7.714920 -7.233483 0.158344 -6.758359 2.150776 1.740373 -18.343742 8.908222 7.228032 -2.092194 1.119186 1.881560 1.977775 5.007864 4.416493 -4.583121 -5.028729 -0.249112 -2.113899 0.362422 0.686982 5.157732 -8.140514 -0.112744 -4.120949 -1.888230 4.996014 4.100515 0.502285 1.288053 1.891901 -2.939404 6.078954 4.541543 7.423270 -3.679820 -6.865189 -18.281642 5.170029 -5.449683 -5.451334 -1.274572 -2.160383 -4.785088 2.682397 -6.147888 7.847016 -3.260386 -4.571061 6.674684 -11.331173 -8.542590 -5.570668 0.186318 -0.805398 -0.340542 0.692104 -2.565414 3.312557 3.902615 -1.348471 -1.573186 -7.223700 0.096965 0.920304 9.351510 1.705818 2.815433 8.511790 3.816743 -2.704767 -2.824289 2.251668 -1.674891 -2.138453 -12.089386 -3.813255 -0.190495 2.181210 -3.966723 1.176557 -0.954181 -1.799796 3.529635 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = 2.321272 0.275651 -1.437648 3.821891 0.168776 -1.102507 0.245010 1.284323 -0.887829 -6.377508 -4.177655 3.489195 0.551157 0.321688 1.063448 1.386662 0.137677 0.434053 -5.719845 1.624199 2.010652 0.597115 -0.565876 -0.298365 0.600555 -1.690186 0.718518 0.747924 0.767788 3.610618 -1.762760 1.717960 3.026379 -0.527670 1.260506 2.644698 -0.602712 0.252335 -0.686290 -0.602332 4.880414 1.958555 0.320773 2.310877 0.779052 3.648730 -0.741229 4.256893 0.247724 -2.622345 2.293234 0.689959 -2.223244 -0.135918 -2.474747 1.915876 2.751907 1.256464 -1.718594 1.377659 -1.398165 -0.137324 0.912581 -0.630142 3.802709 2.385500 2.684328 2.523717 4.096707 -2.179638 -0.540740 2.306983 1.392165 0.572108 2.216522 -2.095630 -2.903387 -0.671711 -0.568389 -4.726513 -1.832358 -0.625528 7.240904 -3.588962 -0.406723 0.741494 0.545878 3.426932 -1.811192 0.489534 -2.732460 -0.036727 -1.449177 4.430425 0.487924 0.672285 -0.686720 0.999905 1.018149 2.556328 -0.724497 -2.380496 -2.524051 -5.305045 -1.961087 -1.395175 1.503277 1.788974 -4.824762 -0.621951 -0.060363 4.067165 -5.188598 -0.201271 2.480330 1.911087 3.018289 2.296902 -3.509027 -0.125758 0.976998 0.400857 2.243947 -1.178749 0.208490 -1.525321 0.568077 -0.263384 1.104997 0.125200 -4.786976 -2.319613 -0.254543 -0.792098 0.236830 0.581275 1.996822 -2.039872 2.466749 -1.321543 2.517962 -5.225960 -1.053370 -1.761013 -3.508924 -0.952510 4.043897 3.873378 3.544048 -0.899321 -1.499167 -1.670112 -4.758853 -4.367642 0.462090 -0.129441 1.395459 1.026333 -0.255103 1.668784 -1.712755 0.454901 1.320070 -1.559611 -0.464308 -0.643874 3.992316 -0.410875 -0.554818 -3.123722 -1.129618 -0.669485 -0.400579 2.695612 -0.679455 -5.383674 -5.373616 -2.638662 2.992380 -1.208552 0.589269 -1.802587 -0.383997 -2.552057 -0.112097 -3.102563 0.132656 -0.011491 -2.772891 -3.710180 0.539601 -0.402836 -1.821340 0.064107 -2.633162 -0.588665 3.510364 1.659740 1.588647 0.573911 -0.304462 -3.868874 -3.079140 0.495240 -2.135232 3.393164 3.030842 -0.616793 -2.925854 -1.290116 -4.154053 2.738947 -2.675920 0.723656 -0.918605 -0.662828 3.448242 -2.490599 -0.322066 -3.306569 1.025212 1.037862 -7.404259 4.128457 2.788631 -1.552114 -0.420826 -0.407813 0.694689 2.219692 2.857131 -2.083589 -1.872531 0.475572 -0.892724 -0.012015 -0.771316 2.452535 -2.414940 0.805572 -2.448044 -1.473564 2.093692 2.161793 0.035537 0.842053 1.070318 -0.093243 2.091749 2.765871 2.614929 -1.191033 -2.779854 -7.647851 2.139260 -0.055451 -1.391179 0.233377 -1.841535 -2.541789 0.869310 -1.506226 3.459837 -0.452935 -0.574156 2.898924 -3.969514 -3.505161 -1.622741 -0.028639 0.135226 -0.753612 0.863929 -1.439264 0.982285 1.184856 -0.242149 -0.234764 -2.529199 -1.285338 0.132736 3.301852 1.113787 0.822785 3.630468 1.363769 -1.900193 -0.581004 0.473262 -0.102882 -0.649026 -3.977444 -1.336175 -0.754628 0.688551 -1.579591 1.431413 -0.281295 -0.131875 1.263796 -PE-benchmarks/subset-sum.cpp__main = 0.616967 0.008378 0.288791 0.559281 0.370316 -0.379601 0.403251 0.656860 -0.025569 -1.485081 -0.951232 0.200871 -0.049772 -0.232075 0.308419 0.017164 0.116950 0.583039 -1.128425 0.267345 0.496639 0.486684 0.130704 -0.466500 0.145114 -0.242352 -0.711239 0.351341 0.213900 0.926871 -0.473280 -0.156094 0.705689 0.117484 -0.063271 0.828589 0.663326 0.026376 0.273317 -0.090675 1.299991 0.318197 -0.061698 0.761117 0.460420 0.872768 -0.394516 1.211201 -0.288207 -0.499771 0.563204 -1.110813 -0.630656 -0.089977 -0.599824 0.728707 1.282249 0.825775 -0.447301 0.670703 -0.171160 0.072357 0.216505 -0.697603 0.470654 1.051518 0.012487 0.408769 1.429327 -0.690440 -0.318223 0.521481 0.622387 0.156092 0.136939 -0.585041 -0.132065 -1.465963 -0.083255 -1.228605 -0.221632 -0.333984 1.763956 -0.907449 0.306815 1.062908 0.082589 0.538424 -0.331094 -0.099117 -0.670814 0.256314 -0.172134 1.312759 0.025107 0.148970 -0.285752 0.172730 0.458379 0.721223 -0.032664 -0.251983 -1.398566 -1.796691 -0.630627 -0.227574 -0.012899 0.008617 -1.109134 -0.337374 0.944626 0.688907 -1.316403 -0.170573 0.750824 0.664412 -0.040587 0.474251 -0.979659 -0.026860 0.011624 -0.151749 0.129112 -0.610130 -0.233467 -0.607573 -0.170869 -0.081605 0.178270 -0.327833 -0.899994 -0.480782 -0.273110 -0.147723 0.023652 -0.170509 0.039067 -0.728600 0.486982 -0.613579 0.540789 -1.225000 -0.166205 -0.201948 -0.979249 -0.164690 1.609272 0.298745 0.682370 0.187378 -0.560602 -0.791377 -0.657256 -1.197583 0.365201 -0.140135 0.927791 0.061924 -0.071447 -0.076757 -0.300167 -0.384856 -0.049073 -0.395794 0.091257 -0.175961 1.364554 -0.578090 -0.161410 -1.192359 0.112426 0.904936 -0.273013 -0.008327 -0.435041 -0.288836 -0.722683 -0.875662 0.710657 -0.215593 0.184273 -0.274153 0.174965 -0.830923 0.296150 -0.525958 0.266657 0.066121 -1.026546 -1.012951 0.247763 -0.228770 -0.371379 0.322927 -0.608820 -0.020714 0.259839 0.590315 0.199494 0.089845 0.057611 -1.323479 -1.225934 -0.557778 -0.104869 0.759854 0.645201 0.266534 -0.577496 -0.273210 -0.844434 0.918747 -0.872843 -0.039821 -0.289661 -0.038042 1.044119 -0.418713 -0.271474 -1.295850 0.349608 0.335364 -1.163956 1.177307 0.505197 -0.548160 -0.502777 -0.698584 -0.004860 0.703981 1.245787 -0.580936 -0.459207 0.530496 -0.386911 -0.142598 -0.647589 0.654597 -0.345346 0.761129 -0.774142 -0.482206 0.218359 0.941672 -0.235679 0.626443 0.533443 0.519151 0.160250 0.942251 0.396367 -0.448987 -0.576402 -1.522877 0.562183 0.575078 0.085665 0.150470 -0.782318 -0.631785 0.375590 0.395768 0.909062 0.826824 0.428587 0.770089 -0.686613 -0.827449 0.281856 0.180205 0.440728 -0.702253 0.268429 -0.379698 0.131065 0.292120 -0.010987 0.409477 -0.674755 -1.093488 -0.228825 0.932067 0.261798 -0.097817 1.019326 0.089838 -0.596045 0.277791 -0.167467 0.624478 -0.045022 -0.150400 -0.104240 -0.365570 0.058292 -0.383904 1.056310 -0.094323 -0.302752 0.532715 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 5.321011 -2.399403 -2.301005 7.887284 1.189310 -1.886380 0.386910 2.112614 -0.230247 -12.393583 -7.505640 8.197647 0.687286 0.727674 1.762241 2.692663 0.837622 -0.489072 -12.069074 3.593873 2.853111 0.184642 -1.046663 -0.420392 1.243651 -4.232016 4.750532 2.669231 1.304553 6.591763 -3.672768 3.178890 5.797788 -0.496247 3.732343 5.438450 -0.957248 -0.172465 -3.088943 -1.488835 10.201678 4.614837 -0.107741 4.589034 1.892424 7.385028 0.603975 9.444070 4.532253 -4.697600 4.523412 1.374056 -4.918430 -0.881391 -6.322901 3.543552 4.421263 0.929976 -3.996550 2.286999 -2.522711 -0.269521 1.703335 -0.023028 8.270223 2.676989 6.583013 4.543110 7.939666 -4.975601 -1.699340 5.638583 4.529740 2.815303 5.670430 -4.982917 -7.203793 -1.799371 -0.263804 -7.570989 -3.971275 -1.900808 11.176217 -6.512127 -1.449924 1.025620 -0.154320 6.907623 -3.763002 1.199741 -6.278331 0.247337 -0.975289 9.049374 0.835868 1.256781 -0.264901 2.094871 1.723568 5.854341 0.281152 -5.816433 -3.507683 -11.022945 -3.020543 -3.481509 3.180004 2.711934 -9.013533 -0.187992 -1.320557 8.080162 -8.986257 -0.575583 4.961240 2.882307 7.785847 1.956476 -3.911467 -0.535909 2.863546 1.585748 4.805526 -2.985852 0.381010 -2.216453 3.318927 0.199169 2.580906 0.229177 -7.853287 -4.360611 0.661935 0.908392 0.357225 0.567477 3.639688 -4.798083 4.693828 -2.130068 5.386308 -9.396520 -1.860949 -4.078080 -4.697379 -1.957480 9.903504 6.800741 8.116067 -0.964360 -2.513955 -2.395529 -8.850808 -10.687928 0.735549 -0.194650 1.464582 2.073442 -0.394291 3.963107 -3.159564 0.707113 2.091024 -3.537148 -1.480583 -0.985120 2.715905 -0.408858 -0.790414 -4.906760 -1.794201 -0.877979 -0.030966 6.155371 -1.146900 -14.902997 -9.733614 -5.764604 5.708861 -2.698132 0.843456 -3.084623 -1.440464 -5.041284 0.078311 -5.991717 0.890639 -0.443704 -6.244244 -7.189557 0.665190 -1.395424 -0.956156 0.418018 -5.610344 -0.924182 4.613595 3.749619 3.058594 1.977747 -0.803108 -8.402868 -6.144401 1.070981 -3.720434 8.870622 3.516285 -1.667007 -5.008031 -3.080236 -7.750096 5.293284 -7.227488 1.590008 -1.290293 -2.918317 6.447438 -4.358188 -0.590365 -5.740141 2.841657 2.483744 -12.243233 8.919898 7.084554 -3.599588 -1.471531 -0.230320 1.071066 4.421845 6.612385 -4.605985 -3.821370 0.775434 -0.564484 -0.220070 -0.692782 4.966584 -3.992064 1.269649 -5.664755 -4.223692 3.329830 4.246203 0.421321 0.717451 1.938673 0.114040 2.600189 6.363080 4.426380 -0.516163 -6.570622 -16.879014 4.218825 1.859088 -3.089999 2.057336 -5.060417 -5.175167 1.365098 -3.442242 7.175375 -0.556875 -0.942698 5.931515 -7.864841 -6.913332 -3.962725 -1.752000 -0.548072 -0.697878 3.068963 -3.281572 1.446306 0.742316 -0.735662 -2.219248 -3.179703 -0.740249 0.829967 5.210410 3.083837 1.762024 6.849622 3.039363 -3.861115 -1.867086 1.170103 -1.528262 -0.216852 -8.043215 -2.895169 -1.678234 1.469505 -2.583134 1.888315 0.070197 0.891908 0.851470 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = 4.714964 0.337522 -0.823966 5.085584 0.320830 -2.666517 0.931496 4.096156 -0.869864 -10.794057 -7.983723 3.734140 0.440119 -0.389058 2.633464 2.031552 0.161364 1.489544 -12.498665 3.463274 4.373102 2.288354 0.451153 -1.685706 1.736595 -2.484126 -1.863716 0.978414 1.222173 6.262654 -3.691107 1.955395 5.124726 -0.126352 2.107411 4.813671 -1.560337 -0.162137 1.294047 -0.644575 8.465425 4.423014 -0.104537 3.792773 2.111790 6.075403 -1.900026 6.807860 -0.238467 -4.445433 3.796409 -3.101986 -4.778252 0.752400 -3.699038 3.632260 6.224227 3.321090 -2.764759 3.035517 -2.306054 0.083005 1.543183 -3.224043 6.278598 4.523696 3.531877 3.378005 7.661449 -3.112361 -0.516881 3.087626 3.111535 0.299492 2.337035 -4.609238 -3.485971 -5.405041 -0.439633 -10.525662 -2.658950 -1.359089 11.971465 -6.457299 1.440739 2.939094 0.477994 5.653808 -2.944552 -0.010002 -4.341700 0.721988 -2.172171 7.685971 -0.254363 0.959565 -0.894600 2.032706 2.231875 4.114857 -1.056471 -3.120717 -6.545401 -10.679788 -2.406556 -1.678244 2.101721 2.365604 -8.331509 -0.850966 1.537222 6.344858 -9.163514 -0.442628 4.571953 3.372247 1.479029 3.269214 -5.929976 -0.744086 0.250100 1.514195 3.042318 -3.553160 -0.277915 -3.977287 0.268688 0.370352 2.205393 -0.576974 -6.779204 -3.931484 -0.584600 -1.256351 -0.199363 1.259656 2.786143 -3.253243 4.109461 -3.424294 4.247217 -8.772920 -0.953745 -3.103142 -5.220522 -1.235435 8.275049 6.211547 3.822310 -0.219337 -2.079189 -3.160162 -7.267862 -6.706069 1.413584 -0.775641 4.423446 0.789139 -0.104836 1.598604 -2.169073 -0.186506 -0.090565 -2.956593 -0.151186 -1.958407 7.467429 -1.259240 -1.215217 -5.822516 -1.261230 1.886738 -2.463731 2.551711 -1.570525 -6.064201 -8.119075 -5.229397 5.210061 -1.740541 1.409143 -3.414671 1.272438 -4.314500 0.813672 -4.968731 0.540471 0.338524 -5.240371 -6.365178 0.112710 -0.856324 -1.909140 -0.096221 -3.802245 -1.046311 5.671148 4.559683 2.294420 1.245130 0.053563 -7.363668 -6.151672 -0.801650 -2.889040 5.861291 4.578423 -0.890090 -5.562678 -1.678285 -6.368395 5.922266 -4.033525 0.646729 -3.007965 -1.168021 6.730024 -3.262484 -0.568631 -6.798523 1.760070 1.467773 -12.417191 7.054989 4.329910 -3.038187 -1.174896 -3.135094 1.437362 4.434279 5.974547 -2.800075 -2.808168 0.885492 -2.786369 -0.305189 -2.757371 4.790989 -4.275756 2.595198 -4.101044 -2.356190 3.520764 3.875819 -0.128291 2.961016 2.219870 1.870432 3.519526 4.817942 3.571878 -3.049799 -5.249530 -13.195735 3.451506 4.496801 -0.560494 0.305777 -3.463318 -5.006401 0.845777 -0.418459 6.175351 3.791253 0.568282 4.684216 -5.796597 -5.943874 -1.915061 1.391720 0.450339 -1.988387 0.662978 -2.103880 1.444317 2.814077 0.245197 1.792720 -5.161591 -5.458188 -0.339647 6.294726 2.602762 0.239697 6.287134 2.088332 -3.568736 -0.348887 0.224404 0.968212 -1.327677 -3.588870 -2.288504 -1.875865 0.639118 -2.862115 4.102812 -0.101166 -0.165799 1.959010 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = 2.411473 -0.303265 -1.168495 4.616446 0.113179 -1.057712 0.298224 1.344184 -0.730076 -7.933756 -4.737473 3.708264 0.657901 1.228426 1.046171 1.696046 -0.079713 0.532185 -7.942398 1.817459 2.840598 1.219295 0.675637 -0.687362 1.084659 -2.033360 1.921990 0.877286 1.331133 4.590018 -2.502533 1.951038 3.969649 -0.465623 1.802033 3.346010 -0.244167 0.429701 -1.715082 -0.815828 5.853537 2.598922 -0.061428 2.395698 0.389968 4.595211 0.704748 3.952690 0.895550 -3.553943 1.855814 0.071399 -2.828870 -0.679865 -2.787776 2.353575 3.228060 2.437152 -2.288886 1.458556 -0.665200 -0.251967 1.083295 -0.561094 4.355375 1.734329 3.334214 2.910878 4.556622 -3.099539 -0.625759 2.515629 1.439077 0.486912 3.280774 -3.385777 -3.897843 -1.620274 -0.384886 -6.227088 -2.822956 -0.145602 6.643126 -4.607297 0.167202 1.078869 -0.288310 4.214792 -1.789158 0.434042 -3.602417 -0.255244 -1.001588 5.551633 0.604761 -0.005856 -0.010461 1.749269 1.637681 3.168222 0.332672 -3.170407 -2.303543 -6.157226 -1.436763 -2.009866 2.281565 2.791977 -5.279973 -1.035198 -0.773476 4.865144 -6.443334 0.091580 3.290329 2.784745 3.303314 -0.012871 -2.526113 0.420903 0.936860 0.313702 3.119966 -2.471689 0.304580 -0.552691 1.062289 0.058396 1.402030 0.261242 -4.902042 -3.322381 -0.152072 -0.306050 0.138724 0.809865 2.546686 -2.316039 3.121615 -2.091791 3.325908 -5.598984 -0.370728 -1.525908 -3.444031 -1.466547 4.532195 3.325647 3.177281 -1.519285 -2.169517 -1.423903 -5.179615 -5.799631 1.033423 0.788175 1.544583 2.011447 -0.574513 2.584221 -2.268582 0.599610 1.270013 -1.741301 -0.919809 -0.375756 2.629838 -0.289573 -0.668292 -3.024066 -0.954060 -0.660289 -0.373606 3.770425 -1.017171 -6.219818 -6.498886 -3.496878 3.896173 -1.622542 0.564129 -2.250959 -0.579813 -3.468008 0.328323 -4.260518 0.718515 0.049721 -3.380901 -4.703140 0.531493 -0.877501 -1.057249 0.753217 -3.248603 -0.838141 2.861801 1.613583 1.743061 0.347975 0.342067 -4.795520 -3.381929 0.801556 -2.891340 4.077436 1.847105 -0.868964 -3.651107 -1.773371 -4.032316 3.255751 -2.462922 1.114706 -1.674746 -0.632109 4.200819 -2.636651 0.310240 -3.669372 1.446699 2.060967 -7.224593 5.231808 3.580264 -1.448130 -0.225460 0.437956 0.545998 2.818762 3.217097 -2.829243 -3.060271 0.472843 -1.446866 0.160130 -1.217427 2.915140 -2.976700 0.782960 -2.894461 -1.847615 1.929711 2.304585 0.331172 1.630974 2.068592 -0.271943 1.340585 3.630372 2.920952 -0.684151 -3.654961 -8.592433 3.041455 0.756603 -0.944986 0.093532 -2.277249 -2.727113 1.432007 -0.857154 4.171490 1.244678 -1.095337 3.743605 -5.191191 -4.256582 -2.238749 -0.648537 0.133605 -0.384989 0.413413 -1.572928 1.556021 1.343839 -0.748999 -0.373666 -2.416802 -0.738106 0.381370 4.020247 1.326754 1.342053 4.566305 1.408588 -2.409210 -0.541241 0.700875 -0.402363 -0.881421 -3.955516 -1.771705 -0.425338 0.999783 -1.963586 1.052069 -0.943753 -0.617294 0.922061 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.248985 -0.069488 -0.101902 0.515285 0.082111 -0.097706 0.056285 0.182208 -0.053838 -1.028088 -0.515475 0.096008 0.050662 0.142566 0.243011 0.274237 0.058928 0.259917 -0.435931 0.216676 0.352120 0.220088 0.117169 -0.050139 0.133050 -0.216062 -0.104858 -0.088594 0.274899 0.607631 -0.360474 0.181464 0.520873 -0.093118 0.120005 0.429456 0.356348 0.064591 -0.138694 -0.042768 0.766317 0.158509 0.077965 0.301312 0.038625 0.560020 -0.066292 0.685911 -0.156486 -0.475375 0.358586 -0.678176 -0.256354 0.023487 -0.355905 0.444327 0.369091 0.513480 -0.323046 0.231483 -0.182890 0.072291 0.107223 -0.265491 0.412273 0.326473 0.204154 0.404063 0.606953 -0.390072 -0.115830 0.356068 0.152984 0.095357 0.376801 -0.334319 -0.165601 -0.580924 -0.146781 -0.405850 -0.207633 -0.048963 1.101660 -0.693543 0.129278 0.487487 -0.090812 0.455414 -0.167324 0.080728 -0.492302 0.018924 0.018428 0.437751 0.111834 -0.071001 -0.182246 0.159781 0.161355 0.336778 0.086044 -0.296406 -0.702193 -0.706092 -0.368067 -0.211386 0.234377 0.303392 -0.722655 -0.203492 0.252019 0.628082 -0.858156 0.144631 0.410960 0.430696 0.458593 0.272942 -0.397741 0.062596 0.139578 -0.006078 0.264145 -0.370486 -0.018689 -0.319217 0.075953 -0.069042 0.173409 -0.111584 -0.495622 -0.384226 -0.130452 -0.050296 -0.011007 0.073989 0.291484 -0.487941 0.430109 -0.220296 0.348085 -0.654547 -0.180653 -0.126991 -0.674144 -0.195306 1.373165 0.313165 0.596006 -0.059961 -0.553921 -0.390295 -0.570275 -0.659771 0.110643 0.006104 0.356784 0.390726 -0.030551 0.252535 -0.203237 0.045502 0.006414 -0.236938 -0.049485 0.069357 0.187396 -0.259952 -0.093860 -0.770476 -0.080621 0.207793 -0.140936 0.287335 -0.188590 -0.430457 -0.666664 -0.455487 0.478774 -0.222898 0.288742 -0.183120 -0.009622 -0.482241 0.058631 -0.547507 0.150424 0.025755 -0.527384 -0.639821 0.162366 -0.142771 -0.250183 0.200574 -0.323158 -0.019333 0.160177 0.185880 0.173397 0.042311 0.015050 -0.750545 -0.596928 -0.093764 -0.412607 0.521728 0.258712 -0.057670 -0.379242 -0.250642 -0.511667 0.488805 -0.500390 0.061711 -0.159619 0.059879 0.503264 -0.336489 -0.020394 -0.712933 0.231954 0.289942 -0.962706 0.454299 0.405992 -0.226802 -0.028033 -0.114514 0.100234 0.415649 0.514685 -0.206749 -0.249701 0.167093 -0.183967 0.021692 -0.327243 0.340220 -0.402486 0.183219 -0.373510 -0.188667 0.170831 0.391891 -0.023344 0.164428 0.399485 0.140057 0.115892 0.471555 0.406201 -0.168331 -0.438075 -0.951654 0.411976 0.399811 -0.043243 0.073887 -0.423353 -0.138650 0.217606 -0.075908 0.471933 0.370592 0.184667 0.509525 -0.644040 -0.526233 0.015518 0.021683 0.099484 -0.246977 0.123172 -0.199919 0.171275 0.175752 -0.053377 0.021281 -0.289014 -0.302046 -0.010047 0.587115 0.175712 0.236363 0.578625 0.143495 -0.348360 0.112092 0.116289 0.154398 -0.134517 -0.418445 -0.200173 -0.031004 0.042893 -0.301292 0.277111 -0.244880 -0.290355 0.219305 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.377953 -0.174704 0.113865 0.502863 0.196663 -0.150544 0.225679 0.335555 0.123402 -1.140555 -0.649404 0.161631 -0.008545 -0.028508 0.255493 0.084742 0.124076 0.431681 -0.753157 0.156689 0.357214 0.331953 0.172833 -0.203333 0.114797 -0.196118 -0.356334 0.133222 0.235200 0.710055 -0.384963 0.017396 0.574416 -0.004435 -0.079649 0.553272 0.505760 0.030692 0.020828 -0.067738 0.932331 0.142877 0.002897 0.542529 0.175477 0.658780 -0.208168 1.025584 0.187368 -0.424931 0.505523 -0.858881 -0.383958 -0.036541 -0.473107 0.554259 0.809201 0.591296 -0.328842 0.413108 -0.068734 0.109437 0.160263 -0.517838 0.374599 0.708506 0.091820 0.368104 0.945854 -0.523317 -0.155085 0.315602 0.398347 0.174040 0.280434 -0.509605 -0.099524 -1.082743 -0.125896 -0.663545 -0.122607 -0.253792 1.136769 -0.747144 0.190153 0.733189 -0.029999 0.478523 -0.183022 0.059950 -0.559449 0.162387 0.054992 0.784511 0.066750 0.011557 -0.262007 0.116663 0.211242 0.427511 0.140810 -0.258880 -0.958067 -1.238910 -0.555081 -0.220908 0.076964 0.114291 -0.892315 -0.131745 0.560195 0.438994 -1.019411 -0.071748 0.487847 0.502478 0.119823 0.299865 -0.570637 -0.052623 0.101083 -0.016385 0.124510 -0.499238 -0.087191 -0.516831 -0.098709 -0.003732 0.163004 -0.239842 -0.410289 -0.403383 -0.225849 0.102386 0.027889 -0.043657 0.169256 -0.521939 0.414561 -0.368660 0.393656 -0.835276 -0.246542 -0.138235 -0.587752 -0.202676 1.493891 0.145054 0.653299 0.110230 -0.577128 -0.564981 -0.536251 -0.883878 0.202249 -0.102792 0.594520 0.260787 -0.068300 0.065901 -0.214870 -0.164895 -0.086394 -0.320808 -0.008698 -0.021691 0.493111 -0.428238 -0.103644 -0.933300 0.063257 0.609628 -0.252948 0.105402 -0.241839 -0.335018 -0.566666 -0.601503 0.557293 -0.226866 0.261065 -0.199330 0.102763 -0.618517 0.159359 -0.446331 0.066132 0.091118 -0.805873 -0.791458 0.207473 -0.192193 -0.179709 0.314991 -0.527797 0.044811 0.062534 0.535796 0.180413 0.089280 0.014468 -1.061445 -0.894569 -0.418039 -0.258976 0.623849 0.319838 0.118550 -0.417343 -0.288596 -0.564724 0.625695 -0.829145 0.033324 -0.172033 -0.028253 0.635792 -0.350143 -0.175918 -0.950576 0.262556 0.294145 -0.911800 0.799104 0.381123 -0.380591 -0.241030 -0.445264 0.094485 0.464048 0.851252 -0.419413 -0.325369 0.343841 -0.208880 -0.060789 -0.522054 0.464100 -0.289586 0.385683 -0.535696 -0.307724 0.169027 0.626482 -0.139685 0.341245 0.523399 0.352417 0.082961 0.652331 0.323313 -0.269541 -0.419725 -1.188628 0.427890 0.657210 0.061394 0.242736 -0.747826 -0.290254 0.329729 0.227399 0.635143 0.544293 0.475138 0.602985 -0.575376 -0.597561 0.185991 0.006418 0.274806 -0.403281 0.252182 -0.289392 0.088079 0.182628 -0.008167 0.137768 -0.396918 -0.644402 -0.051933 0.680669 0.168208 0.076067 0.730484 0.121089 -0.492220 0.211175 -0.122701 0.289099 -0.108547 -0.140994 -0.031329 -0.108356 0.043775 -0.354653 0.638741 -0.215122 -0.266292 0.224469 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 4.735935 2.538525 -7.095126 18.022225 -2.780103 -2.739139 -0.358328 2.307738 -4.717165 -26.920073 -15.229134 11.406221 3.866469 5.843695 4.019789 6.042963 -2.312996 1.317467 -26.681900 5.222986 11.978762 4.456021 2.836139 -0.936941 3.514990 -6.156339 7.752517 0.784539 4.646202 16.244037 -7.148724 10.613632 13.876475 -3.178299 5.155979 9.636994 -4.913753 3.532636 -6.747416 -1.532456 17.150318 7.657856 0.740103 6.290752 -2.053795 15.152109 1.515417 8.005587 -0.440115 -13.343925 5.765572 8.894051 -6.504584 -2.860124 -6.498952 6.346844 9.682438 8.792466 -5.669365 3.297952 -3.342678 -1.556084 3.954434 0.465407 15.260999 6.544030 12.300789 12.318039 12.923069 -9.016249 0.145237 5.646492 -1.186430 -2.172418 11.961861 -8.983777 -14.908767 0.867818 -4.083731 -20.850030 -11.067423 1.955352 21.404783 -15.464131 -0.513058 -0.839015 1.656045 15.626821 -5.476401 2.780965 -10.536010 -3.224972 -6.046163 17.073254 2.929497 0.021491 -0.760220 5.741870 4.802897 8.376456 0.111544 -10.852247 -3.432027 -15.432322 -5.427672 -6.692026 10.053917 13.560249 -18.656518 -3.339894 -6.738024 14.696946 -23.330088 0.936122 9.234611 11.191524 13.086252 -0.479926 -10.241998 2.379637 3.656685 0.372088 11.807821 -6.809631 3.132540 -1.702608 1.199576 -0.367656 4.025352 2.464287 -17.291993 -12.028330 -1.680246 -4.072030 1.895705 6.080230 11.763079 -4.727322 10.448544 -7.146924 11.684209 -18.877003 -1.886579 -4.489922 -12.359464 -5.734218 7.238850 12.290141 8.480420 -9.525578 -9.070512 -2.983645 -19.735768 -16.185216 1.956650 4.265841 3.291662 9.042421 -2.938278 10.539354 -9.278029 6.092776 7.566057 -4.394307 -3.672846 -0.301759 10.016099 1.571748 -2.355052 -8.465226 -5.400409 -9.220716 -0.714009 16.589817 -1.458797 -17.214420 -26.683755 -9.360667 13.567488 -5.719921 0.791893 -9.959368 -2.921337 -11.571258 -0.584497 -15.560773 0.349851 1.156403 -7.801414 -15.603775 2.491611 -1.688570 -5.715427 1.758431 -10.943117 -4.059169 13.497615 2.548032 6.907051 -0.110397 0.970708 -11.852320 -8.086619 6.466358 -12.636213 9.291787 6.978331 -3.875010 -12.462523 -5.922612 -13.298072 9.112599 -2.286534 5.254935 -5.391111 -0.360850 12.777271 -10.217041 0.891214 -10.899961 2.365298 6.157111 -24.439054 14.956230 8.406889 -2.480994 2.559337 5.115595 3.017697 7.669473 5.206705 -8.742272 -11.264616 -0.239093 -4.447325 1.695587 -3.374900 7.933286 -12.460721 -0.735056 -6.981761 -3.419511 8.656592 5.583730 1.435488 4.837162 6.684091 -5.802501 6.829254 8.571411 13.051949 -3.231520 -10.191202 -23.449347 9.976298 -5.967312 -3.789352 -4.468798 -4.750661 -8.148003 6.045575 -2.772750 12.728820 1.098418 -7.226944 12.029753 -18.993240 -14.052927 -10.497839 -1.356638 -0.029623 0.627888 -2.884583 -4.054408 7.369040 7.551585 -2.790645 -1.098587 -10.463771 1.222051 2.254022 14.437788 1.061417 5.836139 15.086273 6.214085 -7.210219 -3.098455 3.737907 -4.980707 -5.649372 -15.780032 -5.795382 1.237920 4.243606 -7.326798 0.520257 -5.341622 -3.613449 3.579324 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.194830 0.134578 0.410801 0.130432 0.146629 -0.226632 0.281070 0.480294 -0.128859 -0.756043 -0.564430 -0.387754 -0.098300 -0.163591 0.286848 -0.108513 0.040282 0.429092 -0.860958 0.115572 0.440528 0.403241 0.315836 -0.326575 0.129249 -0.080855 -0.816314 0.214902 0.094781 0.518917 -0.297789 -0.154194 0.368611 0.182800 -0.082568 0.451929 0.323246 -0.011445 0.425894 0.069428 0.651135 0.137220 -0.104104 0.267842 0.280698 0.449091 -0.267066 0.243692 -0.358082 -0.280703 0.211983 -1.008549 -0.319878 0.012310 -0.191669 0.329959 0.803759 0.733717 -0.190708 0.442632 -0.163684 0.048402 0.090765 -0.638743 0.187929 0.564567 -0.146490 0.120207 0.720166 -0.320057 -0.122666 0.115493 0.220766 -0.102933 -0.303863 -0.257674 0.217899 -1.487751 -0.052697 -1.035226 -0.134684 -0.064247 0.815678 -0.441625 0.369020 0.761685 -0.062971 0.212337 -0.137596 -0.153956 -0.326975 0.152270 -0.046947 0.544239 -0.015199 -0.069340 -0.041131 0.127306 0.354011 0.350577 -0.071016 0.018812 -1.002043 -1.100526 -0.272640 -0.002304 -0.016684 -0.055013 -0.522425 -0.216943 0.866324 0.262270 -0.710470 -0.096448 0.413854 0.466049 -0.729803 0.042385 -0.602101 -0.048233 -0.171902 -0.011800 0.116293 -0.455436 -0.113960 -0.453600 -0.227978 -0.014164 0.129167 -0.244833 -0.219484 -0.327706 -0.174449 -0.197717 -0.060029 -0.083301 -0.069526 -0.144988 0.249609 -0.484497 0.339343 -0.571968 0.180371 -0.059859 -0.412647 -0.042227 0.828280 0.193237 -0.097971 0.203531 -0.343399 -0.339690 -0.186793 -0.447151 0.278734 -0.011770 0.762061 -0.065450 -0.066604 -0.134520 -0.078061 -0.267975 -0.234011 -0.176814 0.117901 -0.136327 0.740781 -0.281539 -0.148194 -0.709535 0.201712 0.774152 -0.393716 -0.232471 -0.322241 0.538898 -0.244026 -0.522119 0.382250 -0.072153 0.067119 -0.163197 0.278744 -0.437529 0.354236 -0.251841 0.100193 0.083865 -0.572683 -0.531623 0.082566 -0.147339 -0.213345 0.198078 -0.209363 -0.059065 0.116150 0.337846 0.099128 -0.018675 0.131809 -0.587705 -0.664463 -0.481111 0.000125 0.177801 0.318678 0.191135 -0.460955 -0.078169 -0.269104 0.625801 -0.089470 -0.075332 -0.323032 -0.047865 0.605101 -0.096985 -0.107088 -0.655810 0.146342 0.208631 -0.664683 0.538971 0.185749 -0.282324 -0.326016 -0.600603 -0.014315 0.412282 0.680301 -0.200064 -0.141205 0.268699 -0.324682 -0.066692 -0.491519 0.358066 -0.162332 0.438988 -0.375303 -0.226586 0.135882 0.497727 -0.118016 0.554447 0.373874 0.541486 0.078753 0.464980 0.098526 -0.385303 -0.190557 -0.551596 0.313618 0.754578 0.301389 0.034092 -0.349157 -0.365124 0.128700 0.464600 0.458471 0.973978 0.236519 0.386010 -0.124076 -0.386121 0.182252 0.276015 0.269568 -0.505718 0.015271 -0.131603 0.084975 0.279433 0.019229 0.539734 -0.418451 -0.987536 -0.219138 0.534015 0.197384 -0.149526 0.546402 -0.042031 -0.382265 0.198785 -0.115809 0.452333 0.000361 0.320933 -0.080219 -0.220871 0.012788 -0.203639 0.639736 -0.083287 -0.233735 0.360474 -PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 0.935676 -0.350446 -0.136536 1.666728 -0.502438 -1.583853 0.083758 1.901438 -0.834102 -2.626128 -2.138015 0.300582 0.213725 0.329726 1.703113 0.099564 -0.864825 0.067348 -4.570816 1.519511 1.369383 0.668914 0.056555 -1.040638 0.791979 0.036761 -0.464763 0.746571 0.343137 1.696384 -1.559884 0.187374 0.924903 -0.355963 0.665693 0.845998 -0.279873 -0.032373 0.103005 -0.031310 2.301919 1.224488 -0.698970 0.757346 0.504721 1.368901 -0.184099 0.722930 -0.435303 -1.624167 0.663895 -0.830180 -1.193417 -0.100624 -0.438405 1.038010 2.210466 2.156266 -0.922119 1.019401 -0.997304 -0.350521 0.487916 -0.483408 2.067816 0.661353 1.496376 0.944345 2.036433 -0.935673 0.050417 0.689448 0.793876 -0.538590 0.428601 -1.363456 -0.817693 -4.284983 0.535236 -3.806114 -1.654646 0.456803 2.226734 -2.005425 1.138693 1.414292 0.195689 1.891501 -1.637200 0.468149 -0.632543 -0.437624 -0.618854 2.486255 -0.226612 -0.388791 0.833446 1.291946 1.229435 1.860695 -0.178675 -0.262975 -1.478877 -3.275568 -0.618541 0.511843 0.293795 0.622024 -1.997805 -0.620766 1.693761 0.490797 -2.103510 -0.278500 1.773931 1.664025 -0.971451 -0.355915 -1.257557 -0.048569 -0.361749 0.418458 1.810787 -1.251629 0.594125 -0.477219 0.493473 0.739182 0.851552 0.229061 -1.569658 -1.466514 0.171588 -0.352196 -0.393545 -0.012988 0.989193 -0.364524 1.418012 -1.466244 1.664308 -2.688419 0.706508 -0.745867 -0.551082 0.000861 1.510984 0.930991 -0.468923 -0.322035 -1.643042 -0.060659 -1.606821 -1.633369 0.932064 1.120935 1.009813 0.155478 -0.127685 0.624397 -0.041263 -0.746480 0.234675 -0.972699 -0.333096 -0.709150 1.157049 0.515771 -0.308031 -1.902771 0.432481 0.461040 -0.887982 0.767081 -0.128651 -0.648326 -2.145616 -1.470827 1.718388 0.417673 -0.169481 -0.700727 -0.211610 -1.612127 1.002388 -1.693714 0.586937 0.121249 -1.559016 -1.648051 -0.467968 0.279892 -0.747334 -0.273443 -1.156355 -0.689558 0.782051 0.783712 0.222642 0.206821 1.060416 -2.313740 -2.249079 -0.222909 -0.603120 1.107740 0.637398 -0.276354 -1.116423 -0.065752 -0.806816 1.861691 -0.832447 0.371872 -1.409979 -0.623923 2.460894 -0.949519 -0.778743 -1.749725 0.406577 0.847338 -2.160587 2.751057 1.306037 -0.503731 -0.026663 -0.472678 0.114492 1.460913 1.982257 -1.311294 -0.842065 -0.158065 -0.414718 -0.053884 -0.882769 1.541044 -1.411260 0.145843 -0.525731 -0.760120 0.496314 1.198691 0.759328 1.668417 0.623772 0.339239 -0.162032 1.665493 0.937042 -1.265629 -1.150597 -2.287993 1.952177 1.558548 -0.277273 -0.356261 -1.541008 -1.720248 0.029422 1.428492 1.050317 2.592605 -0.025158 1.205408 -1.677525 -1.760692 -1.224237 1.015542 -0.468100 -0.564681 -0.239126 -0.510569 0.809773 1.186000 -0.128030 0.134687 -0.501534 -2.479469 -0.957313 1.224171 0.614592 -0.083597 2.263069 0.654272 -1.272384 -0.494015 -0.125720 -0.175047 -0.351416 0.635795 -0.959518 -0.600519 0.438878 -1.138246 0.681785 0.282417 -0.461709 0.826898 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = 0.701099 0.095614 -0.114891 1.103831 0.329696 -0.892130 0.239818 0.517830 -0.366573 -1.906026 -1.042834 0.038518 0.124485 -0.498724 0.427452 0.398810 -0.100109 0.535307 -1.767355 0.757743 0.790503 0.555754 -0.144468 -0.740717 0.258780 -0.430687 -0.381344 0.374618 0.080077 1.153178 -0.748513 0.163301 0.879716 -0.007985 0.398257 0.968154 0.213897 0.200255 0.402621 0.419571 1.738540 0.615026 -0.108076 0.520473 0.744815 1.132448 -0.229378 0.926522 -1.032722 -0.639200 0.577772 0.012462 -0.535253 -0.144647 -0.830329 0.824376 1.814920 0.996315 -0.739048 0.668326 -0.458250 0.051412 0.425811 -0.104468 1.246447 1.016624 0.503749 0.736591 1.921342 -0.487021 -0.159077 0.461598 0.783290 -0.399081 0.782254 -0.670010 -0.819928 -1.353171 -0.277072 -1.852171 -0.097444 0.088288 1.993555 -1.189075 0.309548 0.945939 0.540902 1.050231 -0.678308 -0.334561 -0.746643 0.221770 -0.869647 2.351538 0.001672 0.397004 -0.365492 0.645727 0.573858 0.828929 -0.147271 -0.642244 -1.077342 -2.381827 -1.032349 -0.396556 0.047695 0.076619 -1.759525 -0.470055 0.834081 0.869582 -1.940143 0.112893 0.861278 0.786388 0.486341 -0.426829 -1.299699 0.203274 -0.316082 -0.008999 0.179609 -0.479311 -0.286785 -0.807409 0.107468 0.079634 0.285468 -0.330144 -1.358172 -0.341726 -0.373620 -0.476397 -0.050546 0.119602 0.288295 -1.170250 0.635190 -0.959625 0.861595 -1.871856 0.010327 -0.624722 -1.469379 -0.100888 0.723699 0.431856 0.471434 -0.272529 -0.759485 -0.632047 -1.527644 -1.788663 0.329445 -0.205011 0.682676 0.031052 -0.128688 -0.087365 -0.422434 -0.309217 0.685963 -0.667171 -0.011104 -0.524272 2.222440 -0.368228 -0.341461 -1.074600 -0.321247 0.767626 0.128067 0.449686 -0.503310 -0.478597 -1.619603 -1.020487 0.920230 -0.254360 0.159340 -0.686223 0.106616 -1.500904 0.633618 -0.947504 0.447298 -0.202540 -0.617215 -1.187503 -0.012342 -0.180207 -0.351192 -0.215388 -0.856287 -0.042755 0.609397 0.122888 0.271274 0.002953 0.186058 -1.550114 -1.447089 -0.020591 -0.066102 0.851051 0.782259 0.300157 -0.658732 -0.208582 -1.284796 0.943444 -0.528505 0.009377 -0.093972 -0.274303 1.500870 -0.687441 -0.432076 -1.306093 0.269388 -0.019614 -0.932165 1.945947 0.753701 -0.789385 -0.347040 -0.517474 0.294126 0.687420 1.315470 -0.744658 -0.500450 0.367054 -0.446155 -0.202988 -0.575180 0.871752 -0.826377 1.005399 -0.936862 -0.547331 0.447418 1.217743 -0.230045 0.666201 0.030185 -0.168188 -0.040659 1.075604 0.676885 -0.225608 -0.869157 -1.635218 0.433155 -0.935110 0.037154 -0.290954 -0.294992 -0.908473 0.194760 0.738105 1.386966 1.154853 -0.160639 0.913383 -1.404478 -1.287792 -0.157120 0.327769 0.293018 -0.870213 0.009319 -0.632591 0.154346 0.387293 0.292714 0.385913 -1.058439 -0.871382 -0.231799 1.171205 0.239349 -0.560968 1.313639 0.286443 -0.540458 -0.003588 0.058752 0.477151 0.108231 -0.279181 -0.500173 -0.604406 0.210459 -0.533447 1.294094 -0.338933 0.075020 0.769204 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.761750 -0.111514 0.236060 0.469397 0.456807 -0.838032 0.329507 0.645092 -0.087762 -1.152320 -0.606416 0.104723 -0.080673 -0.705905 0.263614 0.151006 0.046454 0.482827 -1.164192 0.697314 0.378636 0.470743 -0.184926 -0.687812 0.190283 -0.256888 -0.605912 0.405881 -0.045001 0.692634 -0.579905 -0.197839 0.500848 0.173914 0.276009 0.764760 0.440663 -0.106710 0.607751 0.279124 1.313031 0.446384 -0.068365 0.528032 0.839999 0.729436 -0.282241 0.994184 -0.431658 -0.253292 0.439858 -0.661232 -0.560438 0.001289 -0.725560 0.654860 1.181795 0.568265 -0.552361 0.607222 -0.302413 0.061313 0.300648 -0.299627 0.799992 0.838595 0.040809 0.326274 1.642634 -0.265952 -0.207451 0.423617 1.002845 -0.040318 0.387895 -0.439456 -0.304810 -1.538126 -0.082528 -1.177776 0.086908 -0.217072 1.399929 -0.757889 0.419073 0.994531 0.371971 0.603194 -0.489703 -0.360034 -0.573305 0.367712 -0.355249 1.569916 -0.204654 0.419365 -0.342290 0.309982 0.367357 0.634281 -0.117661 -0.360914 -1.094180 -1.885899 -0.672058 -0.195086 -0.376460 -0.413184 -1.256109 -0.226414 0.933794 0.748527 -1.235580 -0.089152 0.596395 0.295957 0.056428 0.004156 -0.801293 -0.023379 -0.264734 0.078944 -0.208228 -0.425352 -0.407262 -0.798491 0.051638 0.122520 0.217511 -0.419451 -0.831348 -0.100597 -0.157223 -0.151224 -0.109590 -0.108065 -0.120973 -1.015141 0.300520 -0.718718 0.491967 -1.146151 -0.125625 -0.491266 -0.903706 0.035591 1.190995 0.173606 0.438038 0.234893 -0.385375 -0.613493 -0.811716 -1.319600 0.331623 -0.559237 0.653570 -0.222862 0.030406 -0.443426 -0.103807 -0.585946 0.156669 -0.574060 0.096633 -0.537822 1.351270 -0.466451 -0.167533 -0.907935 -0.078697 1.176175 0.083087 -0.153993 -0.469669 -0.393375 -0.695134 -0.845110 0.539107 -0.074768 0.144702 -0.375429 0.235284 -0.891758 0.529573 -0.411674 0.397888 -0.222008 -0.587011 -0.776136 -0.050677 -0.200707 -0.117019 -0.232096 -0.475165 0.095500 0.090033 0.326786 0.053155 0.106177 0.008776 -1.274775 -1.257895 -0.352274 0.372624 0.776048 0.492289 0.424252 -0.461665 -0.105422 -0.897321 0.856604 -0.945736 -0.127970 0.086252 -0.358753 1.201863 -0.339818 -0.428805 -1.023319 0.361035 -0.131732 -0.604794 1.385280 0.568264 -0.821660 -0.537915 -0.834780 0.174912 0.661631 1.353496 -0.439445 -0.155030 0.460041 -0.202438 -0.283659 -0.549260 0.675539 -0.401332 1.115641 -0.802878 -0.566499 0.205714 1.046843 -0.292339 0.379617 -0.104360 0.262335 -0.150858 0.898265 0.252398 -0.100991 -0.686616 -1.271456 0.187260 0.085347 0.222516 0.146607 -0.521675 -0.696771 0.057948 0.479980 1.066184 0.887423 0.282841 0.562698 -0.799316 -0.890709 0.221641 0.324976 0.254602 -0.755065 0.372304 -0.491146 -0.110420 0.145174 0.377023 0.351300 -0.648522 -1.002715 -0.229183 0.660125 0.406544 -0.644866 0.883116 0.132470 -0.361938 0.123832 -0.091272 0.654190 0.121229 0.063460 -0.271867 -0.663720 0.067017 -0.319167 1.395301 -0.049977 0.211108 0.475655 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = 6.407779 1.156148 -5.709282 12.433331 -0.093065 -5.991313 0.577994 2.911452 -3.253498 -18.088928 -11.534150 6.798895 2.645788 -1.583170 3.452441 5.120382 -1.958485 1.794724 -18.203958 6.447288 7.191789 2.362189 -2.120797 -3.379206 1.896692 -4.868358 1.398566 2.306022 0.785375 10.681498 -5.274802 5.527022 8.714004 -1.521609 3.839642 7.713086 -4.183856 2.151808 0.318951 1.734930 13.715951 6.907468 -0.192191 4.275082 2.925402 10.448839 -1.752064 9.955718 -4.801809 -7.087263 6.635472 6.637098 -5.445665 -0.733098 -6.580961 5.537074 12.184026 4.620194 -4.777302 3.995083 -5.402667 -0.188318 3.739016 0.684858 13.244849 7.806910 8.582383 7.889252 13.831859 -4.638840 -0.137655 4.702822 4.074140 -3.116289 8.883987 -6.251222 -11.192888 -1.746432 -2.311526 -16.081980 -3.882009 0.755199 19.424973 -10.839678 -0.916336 2.002515 5.194904 11.586302 -6.545093 0.253312 -6.468052 0.366506 -8.170698 18.805767 1.164209 3.631048 -3.233867 4.910129 3.651521 6.582483 -2.496018 -7.112365 -5.938788 -17.663748 -7.275200 -4.246018 3.690102 4.865573 -16.457543 -2.536419 0.534851 9.525599 -17.246155 0.681840 7.479891 6.346324 9.706968 0.909838 -11.352649 1.453084 0.440476 1.337176 5.425643 -2.866208 -0.152584 -5.554025 2.228031 0.388923 2.580794 -0.308044 -14.757432 -4.631082 -1.759185 -4.121321 1.147716 3.415602 6.252888 -7.223105 6.489558 -6.137111 7.945736 -17.632852 -1.376507 -6.279605 -12.020276 -1.915830 4.552721 9.754874 7.101682 -5.025589 -4.775838 -4.033933 -16.463513 -14.862571 0.816113 -0.756180 3.329125 1.398253 -1.049711 3.098008 -4.995918 1.940770 7.059096 -5.361327 -1.269128 -3.234674 17.809647 -0.254199 -2.768202 -7.254105 -5.409749 -1.786037 0.616872 8.815529 -1.519395 -12.669972 -18.282483 -7.715513 8.907845 -3.030827 0.933586 -7.782015 -0.653427 -11.097945 1.745205 -9.275750 1.552303 -0.021780 -5.041182 -10.629352 -0.220250 -0.295500 -4.180491 -2.474540 -8.300485 -1.905909 11.093933 2.126788 4.359836 1.411031 0.267769 -11.129480 -9.425158 3.285899 -4.885581 8.635455 8.977548 -0.474936 -7.141343 -2.644165 -13.018439 7.154890 -4.714018 1.856546 -2.283864 -2.193686 11.764772 -7.768140 -2.523163 -9.534397 1.623284 0.067241 -15.617910 15.109357 7.588467 -4.784980 -0.334568 -0.876003 3.115958 5.543111 8.154884 -6.710141 -5.541359 0.582323 -3.267700 -0.704868 -1.671463 7.403761 -9.288481 3.831890 -6.351103 -3.311766 6.139756 7.570016 -0.437161 3.582172 0.067728 -3.692607 4.429671 6.942375 7.829332 -3.461982 -8.409347 -20.034523 4.594738 -9.064389 -3.704166 -2.376102 -2.368367 -8.130827 2.117649 0.168987 11.534610 2.695093 -4.204815 7.991076 -13.475217 -11.321332 -5.882721 1.571520 0.253658 -3.423566 -0.135044 -4.592642 2.790805 4.602699 0.911969 0.642118 -9.947894 -3.417350 -0.013492 10.879884 1.590316 -1.485136 11.089832 4.362468 -4.302102 -2.969047 1.291385 -0.921775 -1.077479 -8.849059 -4.575824 -2.975912 2.682411 -4.898915 6.302016 -1.987521 0.825143 4.991828 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = 0.205319 -0.253924 0.186957 0.304799 0.267062 -0.273504 0.132534 0.105344 -0.018378 -0.527248 -0.139794 -0.015053 -0.077686 -0.220917 0.108164 0.032213 0.073281 0.148251 -0.406816 0.255375 0.105089 0.131766 -0.002392 -0.230602 0.069227 -0.202894 0.052613 0.300468 -0.012431 0.293848 -0.271380 -0.053651 0.228668 0.126968 0.183159 0.340853 0.354001 -0.047688 0.017797 0.163439 0.626790 0.088784 -0.056858 0.181583 0.344842 0.360301 0.117678 0.326662 0.128156 -0.102143 0.152483 -0.228380 -0.157667 -0.122171 -0.438310 0.246630 0.376680 0.249854 -0.299764 0.223206 -0.140159 0.022391 0.107757 -0.018607 0.391132 0.155758 0.116709 0.151445 0.657372 -0.223223 -0.165266 0.262872 0.480524 0.089045 0.244512 -0.143552 -0.211811 -0.856921 -0.074063 -0.306335 -0.017834 -0.047089 0.283344 -0.264028 0.068332 0.435701 -0.006050 0.257814 -0.192722 -0.121305 -0.370765 0.144656 0.045918 0.592503 0.010034 0.074546 -0.051306 0.143910 0.166535 0.352331 0.108510 -0.253452 -0.324948 -0.856097 -0.327124 -0.154682 -0.098397 -0.230394 -0.497660 -0.053974 0.400033 0.344025 -0.460435 -0.027093 0.255995 0.159384 0.095319 -0.406793 -0.114433 0.004375 0.005971 0.066174 0.022867 -0.224291 -0.121791 -0.268718 0.191178 0.050875 0.135987 -0.195935 -0.097674 -0.104262 -0.026383 0.121336 -0.048409 -0.125136 -0.064971 -0.434030 0.142900 -0.274170 0.298622 -0.381531 0.038163 -0.211640 -0.232690 -0.014637 0.694808 -0.030323 0.261721 0.106733 -0.303944 -0.153624 -0.288248 -0.764358 0.140996 -0.151576 0.164739 0.015581 -0.031871 -0.073527 -0.052794 -0.238430 0.133516 -0.254749 -0.021809 -0.129514 -0.035117 -0.152896 -0.065755 -0.376847 0.041610 0.521247 0.120822 0.049248 -0.218632 -0.364140 -0.240262 -0.414495 0.227724 -0.083906 0.023510 -0.101863 -0.019848 -0.449554 0.321413 -0.212626 0.178992 -0.125712 -0.342012 -0.355744 -0.009126 -0.165021 0.069349 -0.002408 -0.260282 0.054580 -0.231683 0.020906 0.057145 0.046068 0.001176 -0.543980 -0.535007 -0.144452 0.146730 0.384106 -0.020295 0.181805 -0.194320 -0.125590 -0.305997 0.349952 -0.446286 -0.032621 0.133448 -0.287754 0.451378 -0.120559 -0.161401 -0.290255 0.210969 0.045988 -0.087703 0.624831 0.385895 -0.381953 -0.291682 -0.229405 0.035476 0.263991 0.628830 -0.257193 -0.045443 0.194713 0.064325 -0.105879 -0.191869 0.270270 -0.097489 0.381689 -0.429211 -0.375234 0.008893 0.478405 -0.093642 0.073789 0.018492 0.127519 -0.258032 0.465173 0.081478 0.147603 -0.285332 -0.504343 0.117865 0.094253 0.090466 0.219075 -0.335390 -0.231841 0.051181 0.162559 0.478076 0.388971 0.061375 0.309442 -0.322438 -0.374349 0.030668 -0.063440 0.061079 -0.318811 0.304225 -0.265219 -0.068921 -0.076055 0.097924 -0.023664 -0.067422 -0.210004 -0.063419 0.164096 0.222642 -0.189578 0.379586 0.058930 -0.209585 0.003978 0.026778 0.159643 0.173156 -0.021709 -0.157203 -0.258118 0.064819 -0.096808 0.457859 -0.109581 0.103822 0.129495 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.518422 0.258285 0.057271 0.429467 0.204005 -0.913982 0.360892 0.600672 -0.307515 -0.876555 -0.395164 0.126276 0.021602 -0.698557 0.088355 0.109073 -0.191976 0.576649 -0.979355 0.616182 0.395404 0.450966 -0.301228 -0.802673 0.058633 -0.156533 -0.614086 0.454700 -0.115634 0.660467 -0.399569 -0.250815 0.428660 0.178769 0.216019 0.732558 0.439305 0.040246 0.559133 0.344092 0.965722 0.580265 -0.275887 0.257003 0.678839 0.655027 -0.081736 0.214029 -1.202714 -0.225572 -0.095895 -0.130781 -0.499448 -0.181338 -0.433188 0.424021 1.029487 0.712560 -0.412250 0.645271 -0.436104 -0.056329 0.346254 -0.052251 0.672971 0.631585 -0.032357 0.338891 1.427599 -0.247108 -0.126151 0.245502 0.702427 -0.411164 0.377300 0.033830 -0.501801 -1.282756 -0.061350 -1.419673 -0.118423 0.189025 1.268516 -0.691575 0.439639 0.850501 0.579864 0.502497 -0.614860 -0.466079 -0.404999 0.177982 -0.609876 1.722623 0.020837 0.394391 -0.288789 0.462198 0.551510 0.507039 -0.255207 -0.335258 -0.750076 -1.598664 -0.402283 -0.200222 -0.519483 -0.294243 -0.937822 -0.521864 1.110287 1.015740 -1.187168 0.030225 0.612614 0.218681 0.047345 -0.411087 -0.732697 0.450051 -0.440477 -0.204331 0.000000 -0.402890 -0.398467 -0.132636 0.056102 0.017235 0.075678 -0.166668 -1.152406 -0.001492 0.016777 -0.494340 -0.052346 -0.019552 -0.204101 -0.845790 0.186965 -0.887342 0.522922 -0.977784 0.269915 -0.195558 -1.032700 0.072726 0.278509 0.271939 -0.013313 -0.129851 -0.224639 -0.389840 -0.734111 -1.370702 0.520832 -0.229468 0.482504 -0.408722 -0.033703 -0.509047 -0.203752 -0.395234 0.474964 -0.451118 0.138926 -0.308637 1.875126 -0.214574 -0.231623 -0.588862 -0.164257 0.845832 0.472610 -0.082746 -0.532076 -0.144501 -0.725007 -0.632473 0.510293 0.027606 -0.140958 -0.397039 -0.008505 -0.788824 0.565730 -0.330437 0.617690 -0.202744 -0.174564 -0.685654 -0.086518 -0.105068 -0.359638 -0.307511 -0.334814 -0.028011 0.184265 -0.367585 -0.069554 -0.082573 0.280667 -0.709484 -0.841055 -0.004957 0.375585 0.466768 0.619928 0.531641 -0.484603 0.095222 -0.826346 0.768884 -0.402904 -0.058668 -0.040335 -0.311960 1.248942 -0.297396 -0.498034 -0.702691 0.352873 -0.137566 -0.099226 1.316846 0.622051 -0.592433 -0.380036 -0.371858 0.027265 0.670244 1.077514 -0.573874 -0.319433 0.429341 -0.362693 -0.235888 -0.242259 0.490952 -0.446937 1.016953 -0.563765 -0.296803 0.167701 0.871732 -0.213644 0.485153 -0.314579 -0.095369 -0.243048 0.667843 0.271134 -0.077307 -0.620218 -0.612369 0.272492 -0.888277 0.185817 -0.188281 -0.040548 -0.605671 0.120315 0.398279 0.864173 0.751881 -0.462340 0.449741 -0.867942 -0.836720 0.042551 0.391397 0.290100 -0.708044 0.350554 -0.344442 0.078434 0.206176 0.319924 0.385362 -0.618192 -0.685350 -0.212530 0.523241 0.292431 -0.838063 0.850197 -0.085091 -0.243493 0.027909 -0.132884 0.545136 0.083891 0.002571 -0.282045 -0.615785 0.305453 -0.273786 1.277901 -0.030824 0.089180 0.726138 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.588379 0.042792 -0.169280 0.567933 0.140527 -0.790438 0.232996 0.359641 -0.258585 -0.974933 -0.290743 0.625304 0.054814 -0.582910 0.023465 0.316262 -0.127752 0.419414 -0.774393 0.645248 0.271015 0.292492 -0.361055 -0.581288 0.063115 -0.242301 -0.141275 0.338582 -0.064502 0.634933 -0.431537 -0.045480 0.475125 0.017492 0.180619 0.638136 0.320959 -0.002813 0.260238 0.228118 0.995264 0.346359 -0.017387 0.327034 0.545636 0.660489 -0.097041 0.763220 -0.317466 -0.259092 0.278538 0.253193 -0.469816 -0.102117 -0.574372 0.434281 0.637050 0.427263 -0.401871 0.467492 -0.437219 0.001108 0.332782 0.093582 0.807011 0.672770 0.180632 0.447432 1.368819 -0.260045 -0.111484 0.375708 0.702981 -0.159034 0.737817 -0.178975 -0.578504 -0.871614 -0.148245 -0.957138 -0.060095 0.057901 1.475879 -0.730325 0.163695 0.612609 0.614604 0.662199 -0.551764 -0.172632 -0.495068 0.206851 -0.430418 1.547102 -0.005619 0.406909 -0.437297 0.293569 0.290252 0.479782 -0.152870 -0.448152 -0.613173 -1.317883 -0.626004 -0.290953 -0.383928 -0.208615 -1.189777 -0.228749 0.869591 0.956477 -1.213949 0.003053 0.549840 0.172656 0.653625 0.122615 -0.675137 0.253061 -0.170419 -0.002531 -0.022508 -0.232445 -0.306150 -0.273061 0.132673 0.029626 0.127737 -0.206051 -1.220957 -0.075025 -0.008947 -0.287029 0.027444 0.008368 0.009484 -0.871408 0.242392 -0.586508 0.459792 -1.034889 -0.135911 -0.344699 -0.860781 -0.019297 0.725650 0.408852 0.493326 -0.133211 -0.317856 -0.460579 -0.904838 -1.196297 0.243324 -0.445825 0.227968 -0.138272 0.006491 -0.309649 -0.142264 -0.257895 0.433658 -0.518739 0.026105 -0.298804 1.294631 -0.246491 -0.142210 -0.706698 -0.295305 0.529613 0.458160 0.118747 -0.331867 -0.878880 -0.876819 -0.626220 0.509343 -0.065564 0.011176 -0.409532 -0.103598 -0.599411 0.341041 -0.377380 0.388697 -0.153206 -0.293838 -0.700382 0.056238 -0.102573 -0.429378 -0.343448 -0.466019 0.034993 0.095075 -0.196985 0.057637 0.001401 0.013283 -0.976883 -0.891429 0.042615 0.201838 0.559594 0.648506 0.436717 -0.533153 -0.090293 -0.929159 0.569027 -0.946887 0.010527 0.167593 -0.361042 1.081984 -0.451649 -0.309025 -0.677994 0.357314 -0.164889 -0.662195 1.334839 0.678141 -0.621513 -0.281612 -0.272881 0.140435 0.605999 0.978856 -0.537071 -0.242103 0.354539 -0.098907 -0.217147 -0.068897 0.523213 -0.513100 0.824227 -0.575547 -0.355833 0.208818 0.860856 -0.193849 0.102843 -0.281577 -0.216524 -0.130988 0.622820 0.356661 0.021816 -0.596147 -1.127557 0.218688 -0.719751 -0.027918 0.160610 -0.308050 -0.491533 0.193268 0.078465 0.901368 -0.020993 -0.211515 0.445242 -0.995304 -0.849534 0.008673 0.171076 0.140113 -0.490692 0.522102 -0.404323 -0.075986 0.121926 0.288150 -0.012787 -0.422290 -0.335789 -0.061845 0.543863 0.418060 -0.604204 0.787877 0.113175 -0.250049 -0.046109 -0.073631 0.351188 0.006200 -0.312680 -0.180184 -0.455084 0.265601 -0.303258 1.093721 -0.042609 0.122524 0.428233 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.404824 0.187564 0.156365 0.330422 0.240565 -0.698560 0.296478 0.486990 -0.230064 -0.763693 -0.345771 0.034418 -0.025239 -0.537252 0.100456 0.059667 -0.095047 0.504261 -0.786762 0.475741 0.334611 0.408725 -0.145638 -0.655924 0.080422 -0.127052 -0.512576 0.355721 -0.048751 0.547547 -0.376453 -0.226123 0.359914 0.180167 0.178017 0.599386 0.438207 0.004444 0.437474 0.236128 0.848855 0.407758 -0.181965 0.268068 0.577866 0.541834 -0.064869 0.181121 -0.846296 -0.193748 -0.072374 -0.261436 -0.395723 -0.133841 -0.392052 0.405311 0.839245 0.623729 -0.366048 0.520676 -0.277830 -0.025265 0.256107 -0.152578 0.500213 0.512189 -0.076508 0.260134 1.179195 -0.233650 -0.141123 0.220022 0.611884 -0.255243 0.270816 -0.023557 -0.316251 -1.185218 -0.080927 -1.136291 -0.054612 0.104400 1.020549 -0.565659 0.398512 0.774419 0.377952 0.384845 -0.431908 -0.389773 -0.372618 0.180340 -0.425147 1.308336 0.011128 0.266576 -0.219023 0.346606 0.441005 0.446489 -0.155121 -0.250235 -0.669667 -1.355066 -0.350267 -0.157594 -0.381319 -0.267819 -0.752183 -0.392031 0.927446 0.820637 -0.959354 -0.003312 0.498954 0.219445 -0.111854 -0.394205 -0.569723 0.296114 -0.347478 -0.150288 -0.043866 -0.372300 -0.339869 -0.157122 -0.002650 -0.001526 0.105990 -0.190572 -0.787196 -0.065713 -0.047190 -0.329937 -0.068713 -0.069144 -0.176014 -0.692669 0.175044 -0.696020 0.419377 -0.747929 0.212032 -0.161041 -0.790239 0.040552 0.391390 0.130302 0.014125 -0.032558 -0.223341 -0.364871 -0.532567 -1.066256 0.447413 -0.199229 0.453549 -0.257750 -0.028087 -0.393085 -0.155069 -0.389409 0.315001 -0.374757 0.109367 -0.259794 1.373324 -0.252972 -0.173686 -0.574648 -0.065237 0.805139 0.294811 -0.131454 -0.460786 -0.018253 -0.526420 -0.569496 0.417390 -0.007012 -0.061183 -0.289896 0.047396 -0.618041 0.485476 -0.290408 0.477890 -0.165415 -0.234930 -0.578152 -0.057433 -0.131458 -0.268572 -0.174025 -0.285340 0.012159 0.069559 -0.222243 -0.056830 -0.070634 0.210655 -0.660505 -0.742575 -0.104795 0.309860 0.353977 0.442558 0.430645 -0.446471 0.028375 -0.615133 0.646687 -0.359824 -0.065573 -0.035815 -0.238800 0.988916 -0.223184 -0.357082 -0.610998 0.293641 -0.058112 -0.152472 1.039191 0.478112 -0.506428 -0.354113 -0.384434 0.023951 0.543976 0.933105 -0.451862 -0.232570 0.378218 -0.299514 -0.191252 -0.292670 0.423680 -0.320896 0.851315 -0.510442 -0.300531 0.107506 0.737342 -0.186171 0.421422 -0.145499 0.034348 -0.208860 0.605441 0.215308 -0.042713 -0.502851 -0.503898 0.227789 -0.488990 0.228414 -0.087347 -0.097977 -0.489596 0.105642 0.377249 0.718220 0.688678 -0.239533 0.397465 -0.650837 -0.665450 0.124668 0.287375 0.267126 -0.615053 0.291008 -0.306940 0.026827 0.139035 0.244625 0.327779 -0.459674 -0.621082 -0.187317 0.448407 0.281491 -0.612635 0.697159 -0.052135 -0.257833 0.095344 -0.107404 0.507395 0.062984 0.050909 -0.223926 -0.493462 0.192409 -0.223108 1.054442 -0.063297 0.045803 0.548195 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = 0.298270 0.017944 -0.007323 0.286118 0.150816 -0.451458 0.141879 0.215439 -0.148212 -0.545444 -0.288364 0.050710 -0.011264 -0.385904 0.148309 0.128461 -0.007882 0.260443 -0.443491 0.369098 0.176943 0.153749 -0.206872 -0.278013 0.043680 -0.161418 -0.343190 0.212283 -0.076461 0.350524 -0.266943 -0.001273 0.248473 0.082532 0.165089 0.370396 0.157869 -0.039216 0.327770 0.227700 0.623218 0.169645 0.000000 0.159728 0.397498 0.373057 -0.159946 0.394212 -0.323741 -0.114941 0.230880 -0.186940 -0.206158 0.034830 -0.374905 0.254618 0.459831 0.219156 -0.266776 0.305311 -0.287061 0.042280 0.166562 -0.091721 0.513027 0.378064 0.055532 0.208690 0.771708 -0.082819 -0.048299 0.177588 0.444413 -0.126892 0.182028 -0.018079 -0.160378 -0.689406 -0.087717 -0.563428 0.051835 -0.000782 0.759916 -0.369912 0.111187 0.439098 0.244189 0.349190 -0.302436 -0.163903 -0.295405 0.146021 -0.217975 0.700149 -0.007738 0.216284 -0.237187 0.169777 0.159492 0.264766 -0.189368 -0.214929 -0.531798 -0.954882 -0.414009 -0.094772 -0.227384 -0.227800 -0.690668 -0.145372 0.542469 0.518665 -0.645417 -0.002842 0.273309 0.095175 0.011573 0.010514 -0.478579 0.042886 -0.124965 0.091896 -0.030417 -0.099947 -0.157809 -0.438502 0.072675 0.027251 0.123292 -0.171466 -0.456752 -0.022108 -0.020186 -0.149772 -0.055309 -0.002423 -0.035717 -0.426283 0.147814 -0.348778 0.269821 -0.593769 -0.007759 -0.295130 -0.532907 0.039258 0.532647 0.273226 0.237064 0.061536 -0.205540 -0.233706 -0.516871 -0.731936 0.156426 -0.308393 0.271486 -0.156541 0.009153 -0.231612 -0.052519 -0.203480 0.220806 -0.321179 0.031955 -0.256128 0.707507 -0.141626 -0.140649 -0.453088 -0.114466 0.496438 0.088191 -0.038655 -0.230997 -0.191504 -0.405102 -0.380727 0.266135 -0.028012 0.066576 -0.209123 0.066186 -0.476675 0.268254 -0.202136 0.159306 -0.122831 -0.193002 -0.382233 -0.073262 -0.059724 -0.189201 -0.210837 -0.228942 0.049910 0.160615 -0.027452 0.050209 0.060106 -0.008021 -0.458469 -0.560124 -0.082292 0.154036 0.304819 0.407925 0.237832 -0.287414 -0.030815 -0.520204 0.427326 -0.451091 -0.037880 0.116669 -0.245642 0.603549 -0.227931 -0.277307 -0.350410 0.181835 -0.132496 -0.461133 0.623190 0.347958 -0.432919 -0.226674 -0.384642 0.136332 0.318685 0.661043 -0.203551 0.037206 0.185795 -0.052394 -0.129222 -0.179116 0.323403 -0.240808 0.501918 -0.372534 -0.236528 0.176626 0.510463 -0.120266 0.119610 -0.166364 0.084794 -0.017183 0.372348 0.134904 -0.065765 -0.308948 -0.594913 0.071228 -0.158444 0.051374 0.121634 -0.175029 -0.290636 -0.018423 0.035345 0.533516 0.235005 -0.020963 0.275463 -0.399305 -0.465831 0.018455 0.185322 0.071617 -0.396085 0.289289 -0.231713 -0.057203 0.079341 0.243515 0.150343 -0.335775 -0.476299 -0.088675 0.301968 0.203995 -0.353688 0.435174 0.040334 -0.156306 -0.024482 -0.033236 0.271823 0.094137 -0.128328 -0.206015 -0.341796 0.096807 -0.183298 0.674143 -0.068379 0.151571 0.314493 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = 0.438109 -0.110929 0.011891 0.494927 0.214288 -0.728191 0.267360 0.346480 -0.191713 -0.759690 -0.256836 0.148205 0.006162 -0.564782 0.096636 0.121759 -0.146559 0.281092 -0.808563 0.558445 0.240800 0.227319 -0.289021 -0.543794 0.038648 -0.264387 -0.173565 0.513473 -0.158120 0.513519 -0.319998 -0.114512 0.359306 0.146722 0.244396 0.607279 0.347279 0.017318 0.290221 0.395233 0.858799 0.433737 -0.245855 0.158885 0.567415 0.576789 0.066415 0.396760 -0.597862 -0.161177 0.121128 0.018513 -0.378263 -0.217059 -0.508137 0.295363 0.775591 0.421621 -0.374770 0.464442 -0.474014 -0.053739 0.279580 0.161177 0.737195 0.413687 0.202307 0.288693 1.179507 -0.241568 -0.158785 0.342100 0.678606 -0.223571 0.438878 -0.031049 -0.587086 -1.076059 -0.039075 -0.889027 -0.167138 0.110211 0.787965 -0.502806 0.139890 0.596115 0.406706 0.491994 -0.555800 -0.271238 -0.420607 0.160105 -0.333004 1.431061 0.017778 0.339779 -0.200057 0.358500 0.407614 0.498603 -0.105903 -0.394733 -0.521038 -1.356796 -0.423309 -0.222531 -0.369722 -0.297110 -0.894403 -0.307671 0.777157 0.733531 -0.907035 0.025426 0.506527 0.178056 0.404691 -0.428634 -0.465279 0.299030 -0.163947 -0.043318 0.102210 -0.279174 -0.255707 -0.247078 0.319196 0.076380 0.066217 -0.174613 -0.831058 0.013147 0.088533 -0.217976 0.000449 -0.044168 -0.127926 -0.743580 0.157349 -0.651127 0.498214 -0.857227 0.162358 -0.287544 -0.717709 0.066900 0.477959 0.266964 0.199149 -0.077119 -0.301083 -0.221910 -0.677283 -1.364413 0.272353 -0.232789 0.243172 -0.307054 -0.034873 -0.311553 -0.128660 -0.263118 0.442887 -0.401899 0.055790 -0.245860 0.985780 -0.086226 -0.170362 -0.420245 -0.169005 0.609824 0.459399 0.129234 -0.349170 -0.608033 -0.629487 -0.567888 0.402843 -0.005624 -0.147347 -0.339974 -0.109824 -0.801221 0.493667 -0.278888 0.458124 -0.181860 -0.246941 -0.558152 -0.081330 -0.105843 -0.120991 -0.285276 -0.347553 -0.047136 0.005745 -0.259813 0.049498 0.027540 0.118044 -0.649454 -0.752290 0.035602 0.298399 0.606491 0.337451 0.390709 -0.283936 0.011542 -0.742328 0.610416 -0.526298 -0.042388 0.109367 -0.425470 0.996389 -0.258501 -0.446649 -0.481691 0.319930 -0.129353 0.005999 1.186384 0.666769 -0.548615 -0.366138 -0.223302 0.021782 0.536668 0.933953 -0.493529 -0.207660 0.290005 -0.051997 -0.206032 -0.088080 0.422622 -0.369658 0.739284 -0.528867 -0.388130 0.105778 0.771364 -0.156820 0.210600 -0.335905 -0.103051 -0.316644 0.576944 0.189512 0.048630 -0.512242 -0.731982 0.197172 -0.688223 -0.003058 0.021565 -0.228831 -0.493723 0.078085 0.218658 0.788724 0.530109 -0.372502 0.403110 -0.731751 -0.710395 -0.116737 0.163381 0.096926 -0.516743 0.420932 -0.335381 0.023575 0.083881 0.229132 0.111656 -0.407315 -0.369108 -0.142375 0.323075 0.256224 -0.642622 0.680135 0.007581 -0.178054 -0.138348 -0.017435 0.254450 0.212184 -0.095444 -0.273552 -0.522733 0.267643 -0.173435 0.925403 -0.031437 0.180938 0.488826 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = 4.352123 0.394027 -3.307895 8.687738 -1.307844 -4.210126 0.427399 4.077781 -1.948775 -12.656877 -9.071438 5.936692 1.773658 0.612708 4.075565 2.556729 -1.759431 0.922786 -15.218459 4.597901 5.399094 2.149110 -0.679550 -2.567000 1.832157 -2.242625 0.858993 1.704130 1.465149 8.025289 -4.228962 3.849882 5.780816 -1.173376 2.851790 5.254857 -2.917373 1.073601 -0.804497 -0.637067 9.791399 5.076639 -0.302180 3.993631 0.997055 7.319514 -1.084868 6.247394 -1.980130 -6.240360 4.236341 2.366531 -4.813586 -0.609534 -3.777574 3.930836 7.560753 4.485869 -3.246377 3.439027 -3.446571 -0.549154 2.482589 -0.635560 9.186658 4.518006 6.006993 5.690369 8.674760 -4.250939 0.342023 3.141901 2.343863 -1.707120 5.052473 -4.925050 -6.573187 -4.286481 -0.443419 -12.529162 -4.768423 0.716762 13.523600 -8.331858 1.007227 1.949323 2.091839 8.536125 -4.874851 1.419423 -4.292588 -0.912205 -4.087018 10.714377 0.586609 1.127678 -0.343555 3.499507 2.814891 5.537897 -1.413813 -4.243496 -4.194105 -12.341881 -3.454858 -1.701381 3.046737 4.394254 -10.355262 -1.947650 0.482423 6.378731 -11.443091 -0.643309 5.847360 5.191383 3.220895 1.226129 -6.278925 0.424531 0.640498 1.474740 5.645085 -3.607168 1.226303 -2.735205 1.006606 1.001946 2.812814 0.942766 -8.970691 -5.255691 -0.224635 -2.272796 0.365692 2.341932 5.166218 -2.995881 5.249582 -4.840057 6.333028 -11.521949 -0.374661 -3.756795 -6.295699 -1.625199 4.615184 6.479636 3.892870 -3.166315 -4.123262 -1.897845 -10.143847 -9.429781 2.019099 1.555109 2.961489 1.869592 -0.666912 3.191299 -3.413333 0.933077 3.452071 -3.825784 -1.505553 -2.036445 7.971897 0.889112 -1.888029 -6.130316 -1.609363 -1.760047 -1.484960 6.255955 -0.596108 -8.449745 -12.386840 -5.492224 7.228917 -1.346403 0.440194 -4.639712 -1.041893 -6.314417 0.796189 -7.099071 1.406266 0.705007 -4.750115 -8.034590 -0.485511 0.200384 -3.216180 -0.616726 -5.720698 -1.930492 7.426912 2.087856 2.260433 1.810704 1.490852 -7.583558 -6.774602 1.660071 -4.310658 5.749298 5.474328 -1.089258 -5.846043 -1.902792 -7.133585 6.247462 -3.983589 2.266283 -3.243321 -1.389087 8.585054 -5.373964 -1.963936 -6.965333 1.539759 2.104231 -13.459378 9.498952 5.127937 -2.708354 0.227091 -0.609746 1.786586 4.688829 6.291835 -5.188092 -4.441430 0.240811 -2.388242 -0.003393 -2.369183 5.115197 -6.307819 0.957092 -3.677744 -2.178884 4.373841 4.270477 1.132099 3.840251 2.067811 -1.266900 3.357789 5.573506 5.828215 -3.647876 -6.138253 -13.892322 5.729506 0.013526 -2.366135 -1.236401 -3.715624 -6.008687 1.746284 0.074649 6.473664 3.710401 -1.751113 5.964121 -8.876729 -7.992805 -5.066046 1.714230 -0.327026 -1.454871 -0.516389 -2.483825 3.211014 4.161248 0.072975 0.146520 -5.457248 -4.369992 -0.519674 7.607980 1.342422 0.662671 8.723493 3.207381 -3.966242 -2.029494 0.350109 -1.461823 -2.072966 -5.609576 -3.363699 -1.382031 2.291152 -4.501074 3.112237 -0.567592 -0.675534 3.042310 -PE-benchmarks/cut-vertices.cpp__main = 1.697398 0.810984 3.360257 -0.702020 1.439613 -0.420918 1.585728 3.335883 -1.478366 -3.033354 -4.172146 -3.163731 -1.072966 -1.012763 2.135510 -1.522695 1.155036 0.181129 -5.467819 -0.078540 1.772538 0.751531 1.032663 -0.478860 0.560305 -0.854168 -5.706467 2.377059 -0.310801 1.616186 -0.670713 -1.086984 1.049682 1.467191 0.158186 2.135373 -0.264221 -0.623179 3.805983 0.097966 3.368560 0.418947 -0.356330 1.268918 2.479306 1.770412 -3.350954 2.365148 -2.182132 -0.738397 3.258250 -6.805382 -1.813492 0.801273 -1.123746 0.591718 4.849545 2.333340 -0.994667 2.367447 -1.662174 0.202326 -0.242572 -3.593931 0.910929 3.219140 -0.457454 -0.584128 2.483782 -1.376775 -1.345996 1.502701 0.764018 0.274436 -5.785570 -1.902401 3.025785 -7.245487 1.145031 -5.492259 -0.962786 -1.629144 4.334082 -0.242064 0.790128 3.151210 -1.393506 -0.111049 -0.624257 -0.792435 -1.203217 0.818055 -0.070215 1.143512 -1.279598 -0.109319 1.537357 -0.269003 1.727349 2.681058 -2.098590 1.006322 -6.745448 -5.429469 -1.007559 1.009021 0.668954 -1.143392 -1.379352 -0.819176 4.207639 -1.408678 -1.127926 -1.365526 1.731714 2.320823 -5.840813 4.197544 -4.749268 -2.493643 -0.454083 0.765803 1.160350 -0.735923 0.029650 -4.601279 -0.913276 -0.088986 0.688434 -1.393922 -1.517960 -1.328171 -0.351707 -2.076785 -0.724036 -1.316210 -1.213831 1.167249 1.035499 -1.547788 1.554895 -3.466927 1.080328 -1.721732 -1.522562 0.502170 3.408834 3.106582 -1.031840 3.084593 -0.399075 -0.922118 -0.063889 -0.348055 0.159122 -0.157996 5.042854 -2.211974 -0.198394 -0.473279 0.135782 -1.923945 -2.716235 -0.182382 0.842932 -2.187037 4.695183 -0.756665 -0.855406 -2.624446 2.068127 3.713574 -4.319912 -1.737046 -1.487230 3.361264 0.029498 -2.632724 1.101325 0.004959 -0.233309 0.100252 2.306361 -2.038251 1.495428 -0.557311 -0.290160 0.037145 -3.531310 -1.611945 0.631907 -0.479102 -0.805289 0.887896 -0.181201 -0.916730 2.517852 3.884014 1.224584 0.729851 -0.297268 -1.896164 -3.335746 -3.337933 0.842526 0.924538 2.795030 0.113795 -1.080800 -0.151957 -1.170664 3.128538 1.379945 -0.903915 -1.727968 -0.806619 2.265396 0.157010 -0.085024 -2.778199 0.160981 1.131275 -5.374923 1.569984 0.172695 -1.609726 -3.061601 -5.021971 -0.678983 1.481675 3.105152 0.616936 0.555522 0.864536 -1.062526 -0.360062 -2.059572 1.737958 0.709259 1.858076 -2.374153 -2.079387 1.429194 2.166082 -0.438090 3.195480 1.484644 4.934812 2.115046 2.580651 -0.736252 -3.326621 0.304483 -4.333607 1.163803 6.637513 0.693618 0.051390 -1.474673 -3.322876 -1.000716 2.129133 1.878516 5.419484 1.848005 1.518279 2.310403 -1.093364 0.052050 2.268583 0.881090 -2.850225 -1.280034 -0.233611 0.343626 1.413810 -0.220064 4.373834 -2.658446 -7.868553 -2.113946 2.219612 0.894503 -0.422598 1.920545 -0.281282 -1.358279 0.259825 0.028198 2.969833 1.864960 1.779694 -0.969310 -2.153678 -0.688701 -0.101183 2.054215 1.628348 -0.127932 2.314038 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = 0.198522 -0.029074 0.188546 0.225141 0.238080 -0.227292 0.132015 0.169552 -0.130413 -0.528183 -0.259796 -0.097482 -0.071529 -0.202176 0.149444 0.036429 0.117489 0.192749 -0.425740 0.184521 0.151042 0.119256 -0.029639 -0.198784 0.059249 -0.182350 -0.206339 0.247991 -0.009740 0.307536 -0.261979 -0.029918 0.222807 0.138145 0.193304 0.320809 0.251862 -0.063775 0.154574 0.106974 0.622424 0.077569 -0.031902 0.169445 0.345795 0.354033 -0.060717 0.218535 -0.166354 -0.108238 0.134599 -0.324874 -0.152085 -0.010477 -0.391949 0.225991 0.407404 0.281855 -0.287319 0.264201 -0.168594 0.057492 0.091250 -0.144865 0.363975 0.212053 0.059400 0.153345 0.586461 -0.198223 -0.119466 0.196963 0.359742 0.011590 0.020783 -0.050653 -0.020233 -0.823845 -0.045220 -0.488357 0.027730 -0.034238 0.505838 -0.250705 0.096621 0.456617 0.012370 0.229820 -0.193124 -0.146921 -0.343572 0.124228 -0.056637 0.495804 0.022319 0.066672 -0.050984 0.149233 0.169216 0.311478 -0.048686 -0.180709 -0.455523 -0.858056 -0.332705 -0.096943 -0.077223 -0.206518 -0.438038 -0.099338 0.524361 0.391454 -0.456722 -0.025196 0.218880 0.169336 -0.184117 -0.187460 -0.315684 -0.034276 -0.090322 0.066047 0.021071 -0.157193 -0.086655 -0.325635 0.064328 0.003848 0.175914 -0.157908 -0.213418 -0.104514 -0.025269 -0.072332 -0.092846 -0.089219 -0.059272 -0.305607 0.167090 -0.282573 0.278672 -0.410855 0.098342 -0.229177 -0.348683 -0.002904 0.538136 0.142821 0.140237 0.163561 -0.219744 -0.158129 -0.306794 -0.608579 0.161029 -0.112287 0.279753 -0.048395 -0.037009 -0.091722 -0.087184 -0.232769 0.116791 -0.248160 -0.009601 -0.186412 0.353050 -0.147205 -0.120806 -0.403071 0.070968 0.527248 -0.028642 -0.030146 -0.258292 -0.040627 -0.255310 -0.386215 0.231661 -0.080031 0.051839 -0.078842 0.064380 -0.401401 0.295791 -0.208153 0.150119 -0.126443 -0.294874 -0.353621 -0.001240 -0.130525 -0.109698 -0.000593 -0.218980 0.065044 -0.003438 -0.002673 0.046324 0.020264 0.023009 -0.413130 -0.496193 -0.161380 0.117672 0.239941 0.208104 0.147448 -0.253244 -0.100910 -0.307212 0.387699 -0.262591 -0.022176 0.063473 -0.239390 0.410475 -0.145871 -0.161766 -0.279273 0.177252 0.035134 -0.313365 0.520647 0.306993 -0.379036 -0.287841 -0.367859 0.079457 0.225031 0.596191 -0.188170 0.025386 0.180392 -0.034184 -0.086633 -0.208823 0.271854 -0.064482 0.362741 -0.424036 -0.314747 0.117280 0.435042 -0.088000 0.188582 0.057510 0.209945 -0.076023 0.446298 0.085991 0.012682 -0.232391 -0.447802 0.110225 0.089211 0.112176 0.125836 -0.195634 -0.265069 -0.024157 0.123394 0.435393 0.377361 0.031420 0.305435 -0.227537 -0.354104 0.034557 0.050560 0.092502 -0.382073 0.217210 -0.222954 -0.050821 -0.022172 0.136750 0.133918 -0.179981 -0.424773 -0.100124 0.234394 0.208625 -0.190600 0.379748 0.033239 -0.208874 0.033227 0.007031 0.258576 0.183534 -0.053430 -0.194248 -0.265940 0.042963 -0.133590 0.450685 -0.057197 0.091838 0.232879 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.268694 -0.013843 0.301782 0.201874 0.308570 -0.190014 0.151617 0.265082 -0.194958 -0.650182 -0.420529 -0.251938 -0.109673 -0.199641 0.251705 0.024509 0.196934 0.143719 -0.651797 0.164236 0.212035 0.102214 0.012815 -0.169575 0.096209 -0.247306 -0.373393 0.308060 -0.023798 0.348801 -0.308821 -0.013699 0.252310 0.189637 0.250727 0.353835 0.176173 -0.116490 0.270274 0.105886 0.764468 0.082611 -0.050878 0.186489 0.429307 0.412248 -0.202466 0.294656 -0.245350 -0.126012 0.263307 -0.553103 -0.195812 0.071080 -0.462873 0.241969 0.565528 0.327785 -0.331869 0.313172 -0.240028 0.093371 0.068192 -0.257175 0.438856 0.278043 0.114493 0.138354 0.628594 -0.233292 -0.146482 0.242945 0.363325 0.030344 -0.196944 -0.112257 0.127256 -1.072141 0.016623 -0.666117 0.027657 -0.109258 0.626946 -0.232057 0.087119 0.541734 -0.049590 0.251569 -0.217754 -0.144569 -0.401445 0.159448 -0.050764 0.504899 -0.032513 0.060971 0.012889 0.157027 0.198695 0.392253 -0.106045 -0.150115 -0.675383 -1.031368 -0.395103 -0.059166 -0.003030 -0.239879 -0.488866 -0.066413 0.660854 0.327977 -0.462872 -0.051853 0.232688 0.256160 -0.375661 -0.030581 -0.486728 -0.176008 -0.114140 0.142161 0.044872 -0.149835 -0.042969 -0.550098 0.062823 0.018826 0.242945 -0.203937 -0.249200 -0.135524 -0.022448 -0.161149 -0.135605 -0.105441 -0.057501 -0.254286 0.221594 -0.308877 0.328485 -0.531795 0.140257 -0.338701 -0.386511 0.015636 0.638990 0.298619 0.079851 0.324228 -0.228886 -0.162867 -0.340668 -0.595982 0.110909 -0.101680 0.432163 -0.106164 -0.047867 -0.067123 -0.090747 -0.283082 0.024817 -0.274142 -0.008979 -0.302126 0.490835 -0.157238 -0.159767 -0.466689 0.144270 0.652188 -0.234472 -0.056775 -0.290020 0.101341 -0.284805 -0.480640 0.259804 -0.100959 0.074775 -0.076130 0.175411 -0.494118 0.353786 -0.234161 0.118404 -0.136579 -0.419322 -0.396863 0.014312 -0.143892 -0.141722 0.024101 -0.236598 0.055657 0.104877 0.132142 0.103586 0.046800 -0.010416 -0.467696 -0.618703 -0.265073 0.123287 0.279444 0.294539 0.086804 -0.271059 -0.130523 -0.338918 0.500417 -0.183211 -0.040778 0.010909 -0.289984 0.420302 -0.152140 -0.173987 -0.347775 0.171600 0.047066 -0.483598 0.580672 0.306562 -0.456271 -0.392783 -0.592106 0.112622 0.224043 0.691333 -0.135752 0.098900 0.165208 -0.036598 -0.095179 -0.264752 0.346463 -0.027041 0.379113 -0.527885 -0.409196 0.195350 0.498385 -0.098199 0.300486 0.129166 0.390217 0.020607 0.539007 0.060858 -0.096854 -0.210497 -0.601345 0.108171 0.316952 0.117901 0.113205 -0.237814 -0.389160 -0.117060 0.191242 0.505619 0.570575 0.118420 0.360642 -0.129806 -0.378512 0.006736 0.112910 0.078632 -0.475254 0.148501 -0.235932 -0.064342 0.010650 0.150733 0.271669 -0.290190 -0.699251 -0.173679 0.308680 0.243046 -0.189872 0.424998 0.071754 -0.245212 0.020175 0.035913 0.337788 0.292771 0.003336 -0.254685 -0.329427 -0.016135 -0.143961 0.461455 0.017872 0.125091 0.278275 -PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177095 -0.070747 0.159290 0.204320 0.266112 -0.102493 0.072651 0.065351 -0.082129 -0.480557 -0.263827 -0.037880 -0.080479 -0.124697 0.156930 0.057365 0.194795 0.128763 -0.226046 0.120484 0.074366 0.039060 -0.034564 -0.061456 0.054564 -0.185942 -0.125328 0.166536 0.017455 0.237581 -0.239457 0.037849 0.185863 0.108879 0.184911 0.236539 0.205479 -0.094754 0.079379 0.026478 0.579313 -0.046863 0.088670 0.210885 0.292087 0.292576 -0.118211 0.356504 0.085633 -0.080332 0.246884 -0.335906 -0.085995 0.061887 -0.416328 0.228508 0.252847 0.113215 -0.269117 0.176586 -0.093412 0.094514 0.043886 -0.180042 0.318942 0.187895 0.066017 0.138717 0.457272 -0.170631 -0.118768 0.217180 0.331427 0.137002 0.001885 -0.077847 0.074878 -0.566175 -0.067300 -0.228562 0.108854 -0.131249 0.488980 -0.187765 -0.004264 0.360189 -0.063606 0.198319 -0.098666 -0.065412 -0.333285 0.134771 0.025310 0.229931 0.016927 0.047295 -0.079696 0.048499 0.045177 0.267242 -0.048959 -0.156690 -0.416466 -0.710599 -0.370391 -0.080576 0.000644 -0.198005 -0.401763 0.002123 0.345110 0.316348 -0.336598 -0.053415 0.134171 0.129253 -0.160015 0.009565 -0.286519 -0.166710 0.014001 0.132476 -0.030952 -0.054575 -0.042937 -0.423120 0.041345 -0.021283 0.203451 -0.169941 -0.076059 -0.120735 -0.062526 0.026142 -0.092046 -0.104393 -0.006330 -0.243057 0.169793 -0.110172 0.194895 -0.336794 -0.035391 -0.276199 -0.273155 -0.022400 0.663033 0.136814 0.310670 0.229643 -0.200613 -0.178687 -0.275871 -0.446817 0.070944 -0.173611 0.228661 0.043951 -0.014616 -0.018493 -0.066080 -0.208699 0.071900 -0.232264 -0.042456 -0.189615 0.112987 -0.179103 -0.090044 -0.419276 0.076090 0.438952 -0.131996 -0.027747 -0.184786 -0.103598 -0.187391 -0.337856 0.174561 -0.110285 0.141002 -0.021298 0.088381 -0.305616 0.181899 -0.186502 0.029536 -0.113486 -0.326324 -0.293914 0.015206 -0.122744 -0.103587 0.036397 -0.215226 0.113119 0.023425 0.110489 0.074574 0.070642 -0.083994 -0.396973 -0.455842 -0.193858 0.060490 0.209700 0.207770 0.074934 -0.218438 -0.159817 -0.267972 0.297223 -0.360375 -0.017386 0.131602 -0.195954 0.242999 -0.161797 -0.099726 -0.228193 0.140584 0.035633 -0.508963 0.337119 0.229234 -0.362228 -0.262812 -0.400720 0.119659 0.133427 0.526814 -0.101504 0.121616 0.143275 0.044698 -0.065808 -0.213454 0.246116 -0.004636 0.259819 -0.408030 -0.320453 0.127718 0.366017 -0.081006 0.078573 0.114157 0.264769 0.024589 0.403824 0.080120 0.017871 -0.177615 -0.513402 0.053319 0.267160 0.060838 0.233285 -0.247322 -0.193337 -0.048076 -0.017508 0.371969 0.144520 0.200022 0.280019 -0.127147 -0.274234 0.075843 -0.015775 0.057934 -0.316493 0.227168 -0.218442 -0.106968 -0.073760 0.122047 0.050513 -0.117449 -0.372707 -0.064960 0.209713 0.194409 -0.032265 0.286821 0.086581 -0.196064 0.049192 0.026760 0.228914 0.170423 -0.168503 -0.173115 -0.203087 -0.032963 -0.121477 0.326849 -0.066080 0.113009 0.127573 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.106922 -0.085978 0.046054 0.227587 0.195622 -0.139772 0.053050 -0.030179 -0.017583 -0.358558 -0.103094 0.116576 -0.042335 -0.127232 0.054668 0.069286 0.115350 0.177793 0.000000 0.140769 0.013372 0.056101 -0.077018 -0.090665 0.017604 -0.120986 0.041726 0.106466 0.031514 0.196317 -0.192615 0.021630 0.156360 0.057388 0.127488 0.203514 0.281167 -0.042039 -0.036321 0.027565 0.437269 -0.051905 0.107647 0.193841 0.208575 0.234361 0.023539 0.280383 0.164629 -0.062558 0.118176 -0.107677 -0.042269 -0.019670 -0.345404 0.212530 0.094723 0.067284 -0.224567 0.127615 -0.021977 0.058635 0.066944 -0.067733 0.244061 0.121905 0.010924 0.153709 0.415139 -0.135562 -0.091752 0.171198 0.327844 0.118248 0.219612 -0.016243 -0.072610 -0.317879 -0.129143 -0.050802 0.108927 -0.056230 0.367871 -0.206413 0.005239 0.275072 -0.001646 0.176570 -0.074037 -0.067764 -0.275412 0.099551 0.019437 0.220837 0.071758 0.052995 -0.143569 0.040705 0.015698 0.186468 0.008399 -0.187284 -0.196605 -0.537288 -0.307994 -0.118353 -0.073549 -0.164645 -0.350934 -0.030802 0.208617 0.379826 -0.330449 -0.026758 0.120363 0.042429 0.031529 -0.147315 -0.115475 -0.024978 0.037818 0.056361 -0.054753 -0.061934 -0.086622 -0.198658 0.042850 -0.036261 0.136420 -0.123912 -0.040276 -0.089725 -0.065348 0.114959 -0.049287 -0.088171 -0.008101 -0.294378 0.115289 -0.083868 0.145081 -0.215854 -0.077306 -0.166675 -0.235327 -0.040940 0.562179 -0.018984 0.371056 0.068976 -0.191470 -0.173949 -0.241997 -0.459414 0.121063 -0.184217 0.076252 0.101720 -0.003757 -0.043091 -0.062517 -0.158386 0.163874 -0.206282 -0.043079 -0.073901 -0.024798 -0.169070 -0.051083 -0.355657 0.002789 0.314012 0.073835 -0.001118 -0.153058 -0.245566 -0.157896 -0.243431 0.146419 -0.089358 0.118066 -0.024010 -0.022650 -0.212899 0.123904 -0.160493 0.061252 -0.103350 -0.201876 -0.250672 -0.000346 -0.109377 -0.071563 0.011704 -0.197608 0.122506 -0.084889 -0.024326 0.017311 0.044107 -0.050568 -0.342408 -0.333332 -0.090165 0.054875 0.170197 0.121334 0.135578 -0.200623 -0.130204 -0.236266 0.184505 -0.439755 0.001217 0.184165 -0.145361 0.233171 -0.155528 -0.087506 -0.159692 0.146236 0.023701 -0.338730 0.277094 0.229665 -0.284993 -0.157870 -0.176473 0.086493 0.134415 0.431672 -0.153921 0.048103 0.158459 0.047112 -0.057263 -0.157526 0.171508 -0.042077 0.243447 -0.304181 -0.226005 0.049647 0.302674 -0.070807 -0.033331 0.042500 0.084497 -0.072041 0.311115 0.105253 0.127408 -0.199509 -0.359858 0.055373 0.039420 0.055113 0.245916 -0.205143 -0.069246 0.044827 -0.085356 0.301743 -0.048694 0.113021 0.224813 -0.224878 -0.249827 0.103664 -0.078126 0.071805 -0.223312 0.295877 -0.205464 -0.093446 -0.106581 0.108065 -0.087238 -0.007239 -0.098228 0.008595 0.135427 0.159988 -0.032994 0.241571 0.048066 -0.159725 0.062244 -0.002122 0.149702 0.061185 -0.225270 -0.112678 -0.139599 0.026134 -0.111106 0.316078 -0.141149 0.079756 0.082177 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.389494 -0.586717 0.461882 0.460154 0.376377 -0.531910 0.311346 0.380205 -0.003163 -0.847887 -0.198929 -0.248161 -0.142662 -0.400607 0.193971 -0.067102 -0.000429 0.113145 -1.201995 0.457275 0.273994 0.283965 0.119842 -0.502119 0.146861 -0.352405 0.069633 0.705176 -0.093666 0.500922 -0.402277 -0.224850 0.381299 0.248663 0.279053 0.639745 0.535339 -0.033640 0.110279 0.422764 0.993086 0.374513 -0.389537 0.168615 0.600184 0.625389 0.328340 0.419666 0.064192 -0.189357 0.213153 -0.477059 -0.389675 -0.359109 -0.617162 0.289878 0.940145 0.640044 -0.458674 0.448264 -0.366721 -0.053293 0.199256 0.092665 0.660101 0.230667 0.302451 0.154671 1.125759 -0.422873 -0.306931 0.429592 0.769928 0.030174 0.280591 -0.400442 -0.498364 -1.927366 0.041643 -0.818829 -0.284306 -0.011364 0.116854 -0.390427 0.210305 0.757613 -0.032846 0.395913 -0.434301 -0.243537 -0.566087 0.207448 0.110579 1.335075 -0.098205 0.105124 0.157753 0.353873 0.474967 0.675870 0.305226 -0.404635 -0.568966 -1.491264 -0.351906 -0.239315 -0.169443 -0.352540 -0.748609 -0.141765 0.785010 0.256741 -0.728621 -0.030328 0.532083 0.378880 0.210018 -0.921108 -0.096099 0.095510 -0.061231 0.063853 0.217811 -0.568722 -0.185420 -0.356430 0.468006 0.226888 0.119229 -0.311596 -0.224518 -0.134069 0.064806 0.143014 -0.053858 -0.203319 -0.203270 -0.690161 0.198892 -0.675733 0.622836 -0.705350 0.270564 -0.271122 -0.229735 0.024671 0.956133 -0.068427 0.054076 0.153998 -0.533827 -0.097655 -0.367701 -1.393034 0.218500 -0.057303 0.346940 -0.162459 -0.097555 -0.143384 -0.051952 -0.391977 0.071092 -0.335469 0.022046 -0.202569 -0.058615 -0.106895 -0.106677 -0.410399 0.145823 0.923714 0.244357 0.152219 -0.371547 -0.622616 -0.388141 -0.727813 0.403999 -0.068023 -0.183903 -0.224186 -0.053052 -0.907269 0.703364 -0.321895 0.422687 -0.178632 -0.609672 -0.581905 -0.003081 -0.282622 0.362770 -0.003818 -0.385662 -0.086387 -0.531487 0.113178 0.122652 0.049944 0.140340 -0.930237 -0.912183 -0.247806 0.320763 0.814239 -0.294264 0.293814 -0.169066 -0.103133 -0.434774 0.666608 -0.456418 -0.086599 0.032415 -0.575321 0.894381 -0.046832 -0.297521 -0.552630 0.352191 0.131894 0.407222 1.306727 0.711827 -0.566112 -0.552142 -0.294763 -0.087998 0.529220 1.009526 -0.483743 -0.271383 0.293915 0.072161 -0.190912 -0.263607 0.440988 -0.181561 0.643636 -0.677442 -0.647334 -0.057706 0.807912 -0.130169 0.287890 -0.018513 0.198756 -0.642007 0.786173 0.026207 0.198299 -0.457140 -0.793291 0.282445 0.211801 0.167058 0.166547 -0.595145 -0.535369 0.091483 0.647024 0.802571 1.261264 -0.074213 0.489251 -0.525459 -0.630303 -0.132056 -0.043220 0.070003 -0.504378 0.326383 -0.378803 0.012787 -0.026980 0.074827 0.106129 -0.158640 -0.422549 -0.189555 0.210067 0.329975 -0.502920 0.671120 0.033304 -0.316542 -0.103698 0.067725 0.171625 0.396655 0.367535 -0.235438 -0.487921 0.185495 -0.081613 0.735837 -0.053271 0.141579 0.249871 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 1.054126 -0.171065 0.340249 0.575054 0.631408 -0.998453 0.428809 0.871025 -0.072663 -1.512179 -0.869399 0.179953 -0.119171 -0.870758 0.358984 0.172154 0.139623 0.559724 -1.523979 0.841242 0.456236 0.568048 -0.250186 -0.815644 0.247372 -0.342394 -0.806876 0.524976 -0.041854 0.879755 -0.723403 -0.258966 0.643805 0.209196 0.347959 0.985025 0.529593 -0.157846 0.790027 0.273288 1.730674 0.553417 -0.042710 0.767877 1.092908 0.940131 -0.466572 1.489240 -0.448945 -0.325099 0.709128 -0.972677 -0.752998 0.042031 -0.968116 0.855547 1.571166 0.663665 -0.722145 0.787245 -0.348611 0.100064 0.359509 -0.442163 0.997361 1.154169 0.062507 0.399941 2.090763 -0.374235 -0.298721 0.600085 1.293349 0.058945 0.393288 -0.682854 -0.311185 -1.882128 -0.057844 -1.465120 0.129837 -0.405956 1.894524 -0.947212 0.498382 1.261196 0.416341 0.743443 -0.595462 -0.427378 -0.744252 0.488196 -0.424399 1.954847 -0.321692 0.554864 -0.406575 0.336297 0.434034 0.849862 -0.171427 -0.441568 -1.491416 -2.416703 -0.878572 -0.234573 -0.423967 -0.524837 -1.591017 -0.252389 1.117741 0.838131 -1.531219 -0.166929 0.753391 0.394980 0.069393 0.278605 -1.096691 -0.157024 -0.284171 0.127284 -0.279794 -0.513622 -0.497377 -1.137215 0.032187 0.157623 0.290052 -0.551398 -1.095314 -0.145706 -0.222852 -0.176414 -0.148271 -0.172735 -0.151766 -1.276400 0.408861 -0.858215 0.609325 -1.524138 -0.262714 -0.681364 -1.156091 0.034915 1.639576 0.258089 0.672226 0.396458 -0.463587 -0.832653 -1.025846 -1.611963 0.370685 -0.737177 0.899692 -0.284156 0.049848 -0.533822 -0.142326 -0.781157 0.106719 -0.716775 0.121762 -0.735309 1.758671 -0.637990 -0.204607 -1.189137 -0.048267 1.502155 -0.015787 -0.204700 -0.582753 -0.566447 -0.865446 -1.092555 0.687336 -0.112055 0.220556 -0.431782 0.343504 -1.124719 0.608270 -0.525917 0.458620 -0.281313 -0.847725 -0.998470 -0.013119 -0.260019 -0.128869 -0.241267 -0.622264 0.125785 0.190906 0.618595 0.099888 0.189516 -0.047437 -1.705411 -1.660915 -0.526261 0.460840 1.058284 0.676831 0.488136 -0.535988 -0.168066 -1.164365 1.092019 -1.266690 -0.172165 0.103511 -0.432227 1.487540 -0.442900 -0.509101 -1.394064 0.447761 -0.131499 -0.944243 1.741182 0.682382 -1.068408 -0.738080 -1.167564 0.221043 0.820285 1.744653 -0.521686 -0.194686 0.601234 -0.252950 -0.359885 -0.743289 0.878909 -0.449341 1.409208 -1.075308 -0.766370 0.302989 1.335010 -0.385188 0.491965 -0.062531 0.430831 -0.092975 1.202671 0.311088 -0.190067 -0.864660 -1.811662 0.244241 0.315350 0.240034 0.213093 -0.742472 -0.941393 0.059472 0.601490 1.358384 1.113330 0.509015 0.739750 -0.954071 -1.124778 0.301231 0.411892 0.341404 -0.962607 0.423459 -0.633244 -0.146832 0.177335 0.461203 0.478760 -0.859008 -1.387507 -0.310031 0.882372 0.504162 -0.745736 1.126043 0.194585 -0.468754 0.178838 -0.112338 0.875951 0.184901 0.042089 -0.332180 -0.857485 0.034845 -0.406550 1.753889 0.003885 0.285168 0.590063 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 2.029478 0.222035 -0.245979 1.386750 0.969738 -2.091772 0.059282 1.668158 -0.368083 -2.350464 -2.243041 0.898442 0.005412 -1.048636 1.305085 0.570446 -0.114455 0.529353 -2.687680 1.958040 0.325591 0.744882 -1.235670 -1.342836 0.490991 -0.048043 -1.907152 0.655313 -0.153480 0.899597 -1.502397 0.049303 0.832631 0.052795 0.909580 0.558929 0.410733 -0.459170 1.029889 0.139959 3.130696 0.941602 0.569821 1.667074 1.779147 1.369754 -1.738285 3.473541 -0.875117 -0.636024 1.960981 -1.841982 -1.272304 0.716341 -1.706189 2.273360 2.333967 0.174755 -1.265976 1.199158 -0.473678 0.103742 0.676447 -1.487209 2.573048 2.224214 0.749983 0.718926 3.332639 0.016284 -0.560159 1.052253 2.661264 0.104135 0.224032 -1.707041 -0.098327 -2.591648 0.345162 -2.633695 0.646516 -1.174686 4.141372 -1.947277 0.732842 1.910319 0.713474 1.476071 -1.566789 -0.132612 -1.015007 0.584891 -1.145642 2.930031 -0.748772 0.657105 -0.594469 0.507151 0.661220 1.655485 -1.156954 0.004988 -2.786266 -4.035563 -2.012519 0.906902 -0.496264 -1.006970 -2.840536 -0.441862 1.413515 1.433384 -2.256483 -0.825877 1.426184 0.283827 0.005437 2.044303 -2.435245 -0.843127 -0.221737 0.741442 -0.299704 -0.326126 -0.321505 -2.522816 -0.138143 0.220401 1.133691 -0.715281 -2.183467 -0.381436 -0.826549 -0.425403 -0.324648 -0.808800 -0.252350 -2.081780 1.198863 -0.615132 0.735179 -3.081042 -0.973403 -1.813477 -1.980484 0.625399 3.147248 1.148898 1.804120 1.292305 -0.627531 -1.625631 -2.458717 -2.336532 0.538821 -0.976238 1.547878 -0.702372 0.285393 -0.757703 0.374915 -1.499865 0.746805 -1.846327 -0.453323 -1.828468 3.601470 -1.009780 -0.487450 -2.753702 0.136502 2.300059 -1.045001 -0.610388 -0.360245 -1.378440 -1.326659 -1.630603 0.892652 0.240343 1.090273 -0.623406 0.998071 -1.999292 0.584962 -1.495430 0.663315 -0.204811 -1.774550 -1.425913 -0.463688 0.001371 -0.512468 -1.105886 -1.042033 0.538766 1.267624 2.040092 0.021104 0.745178 0.001642 -3.152749 -3.242756 -1.246641 0.604363 1.931327 1.876671 0.854958 -0.999755 -0.115920 -2.361001 1.874285 -2.768086 -0.628983 -0.005901 -0.615056 2.238969 -1.427302 -1.222235 -2.507909 0.474277 -0.491599 -3.186270 2.502228 0.961840 -1.819599 -1.222143 -2.739805 0.789789 1.385553 3.728061 -0.536099 0.386269 0.513221 0.053208 -0.873983 -1.528911 1.937270 -0.893113 1.735145 -1.641894 -1.380781 0.485257 2.086025 -0.202004 0.803765 -0.376804 1.203646 0.317204 1.806457 0.616249 -1.193380 -1.270930 -3.899052 0.293170 1.446177 -0.252056 0.469932 -1.476274 -1.838634 -0.611103 0.471130 2.212899 1.174005 1.719725 1.006077 -1.585514 -1.752759 0.518971 1.447588 -0.206340 -1.548839 0.688002 -1.174735 -0.437252 0.704072 0.532853 0.477310 -1.513391 -3.696174 -1.020070 1.295630 0.754946 -0.769916 1.885157 0.872153 -0.782612 0.171108 -0.314311 1.431488 0.015273 -0.550909 -0.903422 -1.811253 -0.687315 -0.603180 2.491826 0.339406 0.318136 1.067485 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.486949 -0.170885 -0.024272 0.718035 0.186403 -0.574426 0.253677 0.420493 -0.126140 -1.223455 -0.413523 0.129046 0.064741 -0.249850 0.156307 0.281118 -0.120787 0.362171 -0.977852 0.535619 0.445196 0.373366 -0.024119 -0.519094 0.131306 -0.324057 -0.013252 0.309989 0.096558 0.794456 -0.451856 -0.003106 0.629958 0.041362 0.269093 0.749945 0.552067 0.082585 -0.010876 0.235690 1.082764 0.542370 -0.248862 0.260076 0.348980 0.805257 0.218440 0.563033 -0.665352 -0.460894 0.134321 -0.413956 -0.492180 -0.256461 -0.548149 0.482414 0.813703 0.794673 -0.463442 0.486045 -0.441516 -0.028279 0.299481 0.065250 0.750305 0.394199 0.314368 0.497962 1.241808 -0.508118 -0.186363 0.474342 0.525702 -0.135158 0.704519 -0.318844 -0.670661 -1.218031 -0.083253 -0.964253 -0.356391 0.124368 1.133863 -0.841050 0.277716 0.746887 0.230004 0.651986 -0.533711 -0.163779 -0.632978 0.090455 -0.212368 1.471256 0.066660 0.165878 -0.172854 0.442484 0.466090 0.575192 0.151158 -0.524119 -0.671540 -1.303553 -0.379765 -0.360065 -0.093362 0.080892 -1.011639 -0.396203 0.649121 0.930359 -1.244409 0.169208 0.662916 0.461237 0.800386 -0.402555 -0.379385 0.385496 -0.057370 -0.119650 0.296863 -0.617296 -0.194933 -0.131725 0.334143 0.057251 0.123650 -0.145729 -0.985114 -0.245176 0.022172 -0.207501 0.023894 0.067249 0.107322 -0.932708 0.382620 -0.726148 0.643550 -0.977988 0.078470 -0.168565 -0.938051 -0.121094 1.160281 0.253149 0.387151 -0.191430 -0.598429 -0.351143 -0.790422 -1.459219 0.300708 -0.009575 0.335031 0.097364 -0.069586 -0.024786 -0.283875 -0.111605 0.312592 -0.394279 -0.009123 -0.024920 0.730860 -0.184148 -0.166748 -0.684733 -0.147120 0.535982 0.393224 0.394293 -0.389392 -0.791103 -0.944469 -0.704655 0.640684 -0.156927 -0.004623 -0.398478 -0.169429 -0.883191 0.436350 -0.597530 0.586371 -0.093519 -0.482532 -0.850363 0.098719 -0.203712 -0.145556 -0.000828 -0.433595 -0.085609 -0.047327 -0.165750 0.086420 -0.013025 0.199083 -0.976859 -0.869853 0.054790 -0.061792 0.858064 0.185950 0.229894 -0.400648 -0.146477 -0.775999 0.756116 -0.546756 0.043937 -0.114362 -0.226698 1.065785 -0.366800 -0.260401 -0.868921 0.413676 0.161290 -0.263702 1.236443 0.794083 -0.476742 -0.247375 -0.058116 0.028420 0.674382 0.934341 -0.547516 -0.500245 0.336026 -0.199939 -0.127409 -0.262213 0.460935 -0.558867 0.617757 -0.603612 -0.382012 0.122222 0.769212 -0.127577 0.292125 0.073058 -0.122972 -0.325175 0.750339 0.439142 0.025775 -0.739343 -1.023263 0.471070 -0.345828 0.015164 -0.091046 -0.398201 -0.430517 0.288581 0.250829 0.854263 0.885772 -0.293431 0.637459 -1.073663 -0.873214 -0.128510 0.089825 0.159172 -0.469022 0.276982 -0.368207 0.211219 0.163778 0.072568 0.052079 -0.440960 -0.254818 -0.078369 0.623525 0.276193 -0.342983 0.902322 0.089595 -0.313089 -0.025864 0.109184 0.202656 0.047000 -0.238030 -0.301744 -0.331721 0.282337 -0.314255 0.794458 -0.179882 -0.135498 0.468650 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.199075 -0.006452 0.137269 0.200863 0.146126 -0.375619 0.162673 0.223543 -0.120674 -0.470185 -0.238927 -0.091059 -0.053262 -0.315653 0.144410 0.023681 -0.003813 0.264083 -0.448679 0.287566 0.192425 0.203641 -0.048822 -0.279930 0.057541 -0.116570 -0.350602 0.226506 -0.042040 0.313404 -0.242100 -0.076461 0.217833 0.118281 0.105267 0.345788 0.229905 -0.025293 0.294659 0.203674 0.534991 0.125863 -0.031399 0.140332 0.353672 0.324627 -0.080732 0.228064 -0.223509 -0.114455 0.149860 -0.328253 -0.182880 -0.021866 -0.289987 0.219749 0.442125 0.318124 -0.229893 0.294253 -0.211472 0.019126 0.125183 -0.164721 0.360677 0.309166 -0.023768 0.132051 0.661743 -0.112712 -0.082068 0.143532 0.383226 -0.097622 0.062121 -0.052814 -0.082265 -0.865963 -0.083834 -0.557199 -0.000108 0.017101 0.540062 -0.305049 0.176035 0.468348 0.109199 0.237524 -0.215321 -0.181576 -0.263008 0.130583 -0.112958 0.560955 -0.008519 0.104925 -0.123395 0.141876 0.199852 0.265434 -0.106754 -0.144010 -0.513048 -0.869790 -0.302983 -0.063076 -0.183432 -0.214403 -0.524264 -0.152474 0.552467 0.382282 -0.536911 -0.025280 0.272395 0.141808 -0.193637 -0.153061 -0.353417 0.040594 -0.123718 0.056157 0.009168 -0.185393 -0.152939 -0.340425 0.027593 0.023343 0.101027 -0.181439 -0.243913 -0.081873 -0.046652 -0.085427 -0.063556 -0.059310 -0.091912 -0.315847 0.124566 -0.345126 0.259688 -0.446428 0.077982 -0.190015 -0.368392 0.030470 0.525611 0.136185 0.097402 0.075234 -0.222850 -0.191209 -0.319146 -0.599201 0.195249 -0.208577 0.319375 -0.124372 -0.008849 -0.203968 -0.022044 -0.228221 0.093472 -0.238929 0.055046 -0.184571 0.460202 -0.144601 -0.113784 -0.428812 -0.006573 0.539231 0.026284 -0.104950 -0.242940 -0.015012 -0.249634 -0.364742 0.233308 -0.018353 0.027582 -0.149966 0.081102 -0.396182 0.300573 -0.174966 0.147833 -0.088144 -0.234971 -0.337860 -0.051056 -0.093809 -0.100856 -0.103424 -0.171580 0.015512 0.020847 0.016500 0.038322 0.026967 0.041491 -0.416274 -0.496146 -0.164053 0.156037 0.221385 0.243183 0.235817 -0.284792 -0.022086 -0.351451 0.397436 -0.301151 -0.059453 0.038422 -0.210095 0.542548 -0.123526 -0.190067 -0.319099 0.161524 -0.028643 -0.338701 0.521729 0.288245 -0.348615 -0.241227 -0.342899 0.051055 0.310236 0.588696 -0.180525 0.000499 0.191531 -0.084654 -0.104094 -0.224980 0.272873 -0.167951 0.450983 -0.326398 -0.228546 0.097399 0.447321 -0.098874 0.175099 -0.059158 0.173744 -0.085841 0.352268 0.073609 -0.055842 -0.238697 -0.431518 0.112927 0.086876 0.142863 0.120633 -0.188329 -0.254361 0.015978 0.157892 0.441558 0.416336 0.012684 0.248271 -0.265595 -0.374844 0.059380 0.157263 0.103484 -0.375193 0.222867 -0.187956 -0.030723 0.077465 0.160713 0.198964 -0.233497 -0.483657 -0.109267 0.249761 0.201001 -0.288955 0.385037 -0.012847 -0.187841 0.028388 -0.037587 0.275170 0.083110 0.040149 -0.158328 -0.295063 0.079730 -0.133406 0.589564 -0.085597 0.067010 0.271043 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.762172 -0.580737 0.277279 0.653922 0.573161 -0.773070 0.319731 0.466501 0.143374 -1.191706 -0.373016 0.293307 -0.105529 -0.622229 0.164904 0.130152 0.089768 0.346474 -1.084930 0.708664 0.230821 0.412248 -0.138265 -0.661945 0.186334 -0.349452 0.051502 0.549024 -0.011429 0.671402 -0.591952 -0.219399 0.525560 0.153958 0.328309 0.804083 0.702569 -0.087672 0.178359 0.282931 1.396450 0.424871 -0.122450 0.592969 0.813025 0.784585 0.116947 1.201354 0.223499 -0.242930 0.452423 -0.472137 -0.542018 -0.242645 -0.913284 0.677428 1.085177 0.493046 -0.643193 0.529055 -0.192863 0.026282 0.309602 -0.014235 0.832430 0.636097 0.212769 0.351521 1.693096 -0.425793 -0.331086 0.592238 1.204967 0.223340 0.780294 -0.625365 -0.634086 -1.554522 -0.096055 -0.746319 0.010669 -0.276670 0.923283 -0.741361 0.298867 0.941622 0.220315 0.627088 -0.470909 -0.289297 -0.712872 0.374794 -0.082118 1.697402 -0.183176 0.384337 -0.245989 0.310245 0.338117 0.753842 0.251295 -0.561946 -0.762837 -1.867794 -0.677139 -0.356406 -0.333949 -0.443699 -1.246624 -0.123995 0.659178 0.647158 -1.171031 -0.095427 0.621934 0.289167 0.611940 -0.464267 -0.344807 0.011483 -0.042259 0.067141 -0.153028 -0.551066 -0.404541 -0.617458 0.322245 0.198818 0.196653 -0.443589 -0.581414 -0.123467 -0.124808 0.258131 -0.057212 -0.214061 -0.124291 -1.238574 0.295433 -0.660317 0.567983 -1.044395 -0.224160 -0.464906 -0.654331 -0.034547 1.512932 -0.181471 0.734868 0.181315 -0.555604 -0.556084 -0.749222 -1.659325 0.294975 -0.512535 0.389147 -0.024696 0.003066 -0.303776 -0.118772 -0.595276 0.211730 -0.580254 0.008884 -0.387694 0.464925 -0.466784 -0.076031 -0.820918 -0.033301 1.140185 0.356648 0.081838 -0.427468 -1.087344 -0.653861 -0.894334 0.543251 -0.139218 0.094001 -0.316964 0.011298 -0.977688 0.562967 -0.458810 0.466135 -0.267041 -0.728579 -0.812160 0.006971 -0.312729 0.243831 -0.106082 -0.605201 0.118988 -0.396958 0.356579 0.068639 0.151035 -0.017697 -1.516442 -1.309397 -0.310525 0.382698 1.085248 0.009701 0.424152 -0.299622 -0.220376 -0.839966 0.757134 -1.271638 -0.097886 0.251654 -0.487556 1.158185 -0.307750 -0.388102 -1.006705 0.455954 -0.004915 -0.135264 1.578989 0.758288 -0.848154 -0.585048 -0.542326 0.093913 0.660422 1.412649 -0.605143 -0.310649 0.504239 0.018460 -0.292490 -0.502246 0.644547 -0.337126 1.050758 -0.909037 -0.747316 0.023732 1.099335 -0.283605 0.163375 -0.054717 0.118876 -0.517052 1.042929 0.248032 0.247680 -0.786353 -1.400800 0.239434 0.105647 0.154295 0.339443 -0.807752 -0.619361 0.196084 0.512447 1.117215 0.868631 0.329192 0.638426 -0.958961 -0.917368 0.172307 -0.018878 0.211150 -0.629991 0.546140 -0.604748 -0.134060 -0.074206 0.272593 -0.026266 -0.340740 -0.503286 -0.128739 0.492795 0.424229 -0.544640 0.893006 0.182583 -0.391630 0.079028 -0.024012 0.431831 0.200455 0.015446 -0.222882 -0.611719 0.117268 -0.259188 1.265187 -0.133171 0.249528 0.256464 -PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.646740 -0.226509 0.154954 0.460309 0.541464 -0.516011 0.192363 0.318526 0.043552 -0.989759 -0.496857 0.361194 -0.092638 -0.474836 0.185518 0.173843 0.201388 0.332660 -0.530455 0.503539 0.136633 0.266015 -0.195959 -0.392252 0.146047 -0.255651 -0.183640 0.251180 0.038557 0.505267 -0.486036 -0.075570 0.396740 0.111391 0.244859 0.562591 0.463376 -0.142287 0.244037 0.041827 1.156003 0.148415 0.185276 0.633391 0.665262 0.571121 -0.248140 1.193483 0.191087 -0.172307 0.543892 -0.487796 -0.381240 0.044126 -0.773510 0.647830 0.716242 0.162051 -0.502553 0.370939 -0.062545 0.106647 0.187977 -0.266537 0.614263 0.672654 0.050881 0.300527 1.301419 -0.268400 -0.258000 0.511409 0.937182 0.298951 0.475565 -0.436891 -0.216546 -0.772860 -0.152704 -0.444871 0.220756 -0.393867 1.230822 -0.581372 0.141785 0.721980 0.185030 0.484100 -0.252514 -0.174504 -0.550199 0.360135 -0.148135 0.983129 -0.137907 0.354740 -0.385082 0.078439 0.106057 0.553232 -0.034766 -0.341490 -0.796552 -1.430491 -0.685584 -0.211154 -0.200053 -0.373295 -1.054929 -0.032787 0.435725 0.653878 -0.899149 -0.150525 0.410902 0.182480 0.274761 0.235419 -0.567729 -0.215394 0.029777 0.120818 -0.301095 -0.206397 -0.323957 -0.756462 0.045112 0.015489 0.246256 -0.398547 -0.508328 -0.147468 -0.225950 0.135545 -0.069479 -0.192784 -0.022341 -0.914564 0.275928 -0.294640 0.295721 -0.865954 -0.396325 -0.498242 -0.697628 -0.034235 1.366353 0.025034 0.877763 0.287937 -0.328884 -0.638168 -0.662486 -1.019163 0.174029 -0.608683 0.405630 0.048427 0.064897 -0.230512 -0.098780 -0.511578 0.159363 -0.498159 0.003929 -0.429504 0.657936 -0.529419 -0.063114 -0.872099 -0.062792 0.865038 0.022800 -0.080379 -0.303964 -0.691023 -0.502730 -0.701514 0.387406 -0.152959 0.283436 -0.206196 0.160375 -0.617295 0.249437 -0.352962 0.198001 -0.195433 -0.624079 -0.620065 0.012011 -0.202009 -0.086434 -0.084957 -0.474122 0.202697 0.020976 0.420860 0.081834 0.184345 -0.200921 -1.182893 -1.069205 -0.344887 0.245043 0.690537 0.385405 0.284878 -0.356746 -0.252339 -0.760019 0.571096 -1.166900 -0.095966 0.270444 -0.236155 0.781518 -0.362998 -0.259220 -0.830184 0.301828 -0.070427 -0.833133 0.956028 0.431388 -0.720774 -0.467586 -0.698807 0.188468 0.440561 1.146085 -0.330807 -0.027027 0.402639 0.001686 -0.225567 -0.483554 0.557248 -0.229038 0.843283 -0.748849 -0.584014 0.136304 0.859573 -0.264596 0.079738 0.032481 0.270832 -0.028917 0.801452 0.263211 0.038182 -0.577166 -1.286769 0.092197 0.255920 0.072652 0.389211 -0.606035 -0.477723 0.085591 0.112545 0.872258 0.215979 0.542959 0.502607 -0.616316 -0.679740 0.324134 0.051657 0.198526 -0.556074 0.455969 -0.488533 -0.218067 -0.051128 0.268075 0.024645 -0.376296 -0.615349 -0.115328 0.528366 0.356750 -0.235117 0.651170 0.228493 -0.322546 0.167598 -0.039432 0.529812 0.080177 -0.289024 -0.194496 -0.478110 -0.065727 -0.248699 1.033649 -0.094842 0.215373 0.214115 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = 0.206100 -0.011104 0.121026 0.207894 0.159344 -0.360835 0.136830 0.205957 -0.119045 -0.480209 -0.234939 -0.100750 -0.049154 -0.302078 0.152923 0.058118 0.011741 0.252040 -0.450592 0.292693 0.192826 0.191703 -0.046358 -0.268592 0.070154 -0.128345 -0.322691 0.194758 -0.036772 0.307559 -0.266348 -0.044348 0.216671 0.113196 0.135479 0.321493 0.203154 -0.044040 0.281305 0.200232 0.549462 0.121571 -0.026575 0.129353 0.350233 0.321320 -0.085585 0.223336 -0.219309 -0.111023 0.142116 -0.306563 -0.168523 0.009963 -0.309390 0.233390 0.424147 0.298965 -0.238775 0.268331 -0.203969 0.036322 0.123779 -0.156871 0.385302 0.282825 0.004764 0.144562 0.652493 -0.096953 -0.063968 0.131891 0.382186 -0.096382 0.094443 -0.048272 -0.069938 -0.849538 -0.085213 -0.539841 0.034523 0.011605 0.528808 -0.306936 0.170945 0.459444 0.118253 0.263039 -0.213942 -0.169106 -0.273311 0.137836 -0.115194 0.551734 -0.012055 0.107846 -0.138709 0.154919 0.173026 0.248452 -0.089009 -0.153926 -0.490446 -0.858741 -0.324308 -0.068510 -0.167086 -0.209888 -0.541304 -0.116999 0.538878 0.398668 -0.537726 -0.008159 0.244359 0.136023 -0.171729 -0.169628 -0.344771 0.021384 -0.136290 0.079510 -0.022223 -0.171973 -0.142929 -0.365503 0.036907 0.033621 0.126066 -0.183337 -0.228901 -0.070108 -0.046895 -0.083844 -0.072475 -0.036841 -0.060572 -0.335712 0.133190 -0.329856 0.250053 -0.437975 0.068090 -0.213592 -0.365974 0.026579 0.520631 0.137596 0.094070 0.092748 -0.223374 -0.188179 -0.346250 -0.589252 0.173091 -0.216831 0.293623 -0.097915 -0.007624 -0.188879 -0.024939 -0.221724 0.105735 -0.260715 0.035251 -0.204082 0.445768 -0.148126 -0.113474 -0.422670 -0.020568 0.544042 0.013746 -0.089761 -0.233214 -0.002286 -0.274434 -0.366109 0.230332 -0.032376 0.057188 -0.159525 0.098085 -0.401677 0.301893 -0.183758 0.140088 -0.098458 -0.221919 -0.334439 -0.060623 -0.093895 -0.104246 -0.114340 -0.183222 0.042006 0.019047 0.004727 0.034682 0.021666 0.028970 -0.425648 -0.501995 -0.149651 0.145493 0.222269 0.230889 0.209350 -0.284087 -0.038755 -0.348232 0.395606 -0.310227 -0.049574 0.053061 -0.215919 0.510999 -0.137794 -0.198395 -0.309798 0.159271 -0.053541 -0.318780 0.529063 0.281778 -0.363723 -0.225781 -0.364357 0.092817 0.284021 0.586011 -0.168205 0.027839 0.171790 -0.068097 -0.105411 -0.224896 0.281870 -0.174613 0.439201 -0.335216 -0.234550 0.105992 0.445097 -0.099787 0.165888 -0.053931 0.159687 -0.083609 0.352419 0.084950 -0.036361 -0.246358 -0.420843 0.083431 0.062894 0.145308 0.115120 -0.180770 -0.246293 -0.009176 0.155217 0.450987 0.404642 0.033242 0.248603 -0.282591 -0.374431 0.059286 0.147635 0.083210 -0.368673 0.219786 -0.198723 -0.052664 0.063787 0.182919 0.176166 -0.239788 -0.464097 -0.098627 0.251816 0.207271 -0.286595 0.375062 0.019947 -0.183456 0.026988 -0.027484 0.263744 0.086340 0.035083 -0.169029 -0.282327 0.059688 -0.144733 0.574520 -0.091969 0.087023 0.241857 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.347972 -0.360853 0.313138 0.354570 0.413266 -0.389640 0.187340 0.222449 0.073629 -0.716614 -0.202885 0.033024 -0.121655 -0.312161 0.127073 0.020110 0.096200 0.241797 -0.566122 0.370499 0.152105 0.283199 0.077424 -0.386579 0.141443 -0.204675 0.043956 0.325266 0.037809 0.384726 -0.394074 -0.153436 0.302304 0.158887 0.183523 0.454976 0.528235 -0.076278 0.053661 0.143645 0.841380 0.138349 -0.035205 0.362461 0.484164 0.447836 0.127074 0.574275 0.285315 -0.144213 0.212222 -0.423949 -0.267654 -0.155919 -0.551386 0.435063 0.572694 0.354081 -0.388482 0.283402 -0.041634 0.022499 0.137020 -0.127005 0.411068 0.302897 0.058373 0.168221 0.960229 -0.286241 -0.250551 0.364290 0.721174 0.200529 0.393766 -0.353267 -0.267084 -1.120395 -0.114260 -0.390902 0.020805 -0.166010 0.423156 -0.397856 0.201114 0.636943 -0.007668 0.314554 -0.181152 -0.181054 -0.457128 0.249153 0.061977 0.820687 -0.071701 0.119831 -0.105521 0.144022 0.210509 0.479012 0.215965 -0.284848 -0.473639 -1.119902 -0.395019 -0.193709 -0.138447 -0.300127 -0.674879 -0.043056 0.441749 0.392793 -0.634020 -0.080965 0.365411 0.226846 0.129404 -0.474009 -0.121230 -0.041469 0.002534 0.047959 -0.104010 -0.372228 -0.247421 -0.362389 0.157295 0.075632 0.160164 -0.322108 -0.085958 -0.165629 -0.134805 0.241966 -0.054291 -0.203751 -0.097832 -0.679214 0.181344 -0.347482 0.329267 -0.490317 -0.066454 -0.241124 -0.277993 -0.033233 1.034453 -0.221843 0.402272 0.167091 -0.385913 -0.337838 -0.310935 -0.907847 0.209203 -0.277549 0.275360 0.076445 -0.008892 -0.136804 -0.041564 -0.408113 0.062176 -0.327233 0.004680 -0.197413 -0.024382 -0.334554 -0.025114 -0.572840 0.066067 0.781894 0.123776 -0.028174 -0.280438 -0.468635 -0.267263 -0.581705 0.298343 -0.109607 0.085338 -0.144713 0.048049 -0.530396 0.388821 -0.277479 0.244006 -0.142313 -0.519806 -0.471026 0.001915 -0.238825 0.162881 0.033412 -0.344010 0.091465 -0.374475 0.208271 0.045248 0.064480 -0.020297 -0.904119 -0.783559 -0.287326 0.230463 0.541975 -0.108513 0.258294 -0.260147 -0.179791 -0.380049 0.455168 -0.708685 -0.083606 0.139261 -0.278131 0.628087 -0.131022 -0.162237 -0.550638 0.269026 0.071914 -0.107435 0.840158 0.420792 -0.492030 -0.393175 -0.358164 0.026365 0.382895 0.863435 -0.336499 -0.129132 0.310389 0.027116 -0.161948 -0.372700 0.384302 -0.143494 0.610704 -0.562302 -0.505036 -0.057448 0.659817 -0.164958 0.120650 0.090087 0.205444 -0.351210 0.644059 0.123070 0.187162 -0.422518 -0.716956 0.149507 0.309971 0.190308 0.290524 -0.520487 -0.329692 0.127262 0.347457 0.645692 0.594337 0.287049 0.393876 -0.450308 -0.485702 0.195644 -0.067411 0.142968 -0.411189 0.349122 -0.367275 -0.119932 -0.080293 0.110343 -0.010775 -0.100859 -0.319124 -0.098554 0.273270 0.307088 -0.223912 0.501649 0.109500 -0.299976 0.114652 -0.000567 0.302013 0.120237 0.081441 -0.130908 -0.336160 0.011318 -0.121854 0.711637 -0.147552 0.090456 0.100130 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.785072 0.344105 0.025737 0.870349 0.198533 -1.088935 0.110659 0.733016 -0.761292 -1.216712 -0.850897 0.748864 -0.139880 -0.461136 0.424634 0.023172 -0.165752 0.022344 -1.792592 0.894702 0.214771 0.134143 -0.451362 -0.817099 0.218070 0.177075 -0.218505 0.646875 -0.066116 0.715041 -0.807035 0.010276 0.291945 0.432053 0.809859 0.287779 -0.018162 -0.069642 0.119704 -0.112714 1.315043 0.718854 -0.303592 0.526936 0.866664 0.717958 -0.135202 0.458252 -0.568756 -0.114264 0.239949 0.043391 -0.571631 0.128418 -0.670083 0.447657 1.057390 0.439492 -0.403271 0.477414 -0.587154 -0.014726 0.286491 -0.191190 1.309866 0.582476 0.459869 0.430019 1.305660 -0.432232 -0.204196 0.369848 1.302044 -0.168968 -0.285117 -0.233290 -0.588519 -1.485312 -0.023683 -2.021074 -0.305063 0.000000 1.589934 -0.660482 0.417379 0.440391 0.087143 0.502364 -1.052508 -0.006210 -0.613874 0.048772 -0.711335 1.545164 -0.141482 0.240090 0.125149 0.413758 0.690921 0.949242 -0.560024 -0.350283 -0.512478 -1.889546 -0.370391 0.446665 -0.375157 -0.395901 -0.920398 -0.313075 0.957453 1.308613 -0.969831 -0.568255 0.504898 0.115393 -0.231491 0.007824 -0.961649 0.261679 -0.389994 0.272836 0.635172 -0.266127 -0.099259 -0.397545 -0.063658 0.096636 0.737704 0.256419 -1.250206 -0.334803 0.123935 -0.500986 -0.341933 -0.436725 -0.416716 -0.420083 0.373333 -0.498998 0.753094 -1.169755 0.233467 -0.684600 -0.749796 0.457463 0.435986 0.977097 0.192123 0.379575 0.077791 -0.167586 -0.875284 -1.309545 0.730064 0.078395 0.373182 -0.567582 0.095911 0.006598 -0.186970 -0.705581 0.763491 -0.812004 -0.346972 -0.877733 1.502066 -0.067397 -0.280431 -0.689900 0.161547 0.786992 -0.013728 0.135658 -0.521962 -1.034242 -1.009800 -0.788952 0.608376 -0.031902 -0.238210 -0.132154 0.386614 -0.828128 0.520420 -0.618673 0.663982 -0.100656 -0.608345 -0.742836 -0.283048 -0.078179 -0.266087 -0.470763 -0.303314 -0.072567 0.547459 0.284215 -0.039855 0.417584 0.447972 -0.861857 -1.254421 -0.110258 0.517078 0.712810 0.597195 0.343352 -1.071803 -0.132848 -1.027838 1.125805 -0.600003 -0.018632 -0.333731 -0.365748 1.312506 -0.402404 -0.513646 -0.437072 0.451625 0.279703 -1.287760 1.373742 0.865579 -0.697311 -0.552486 -0.850011 0.278864 0.754135 1.652327 -0.715680 -0.171973 0.230458 0.037333 -0.326146 -0.279040 0.888280 -0.367995 0.569679 -0.702739 -0.725573 0.198575 0.627065 0.268097 0.401766 -0.320125 0.173563 -0.148799 1.091796 0.351504 -0.195427 -0.685721 -1.381572 0.277974 0.110709 0.098628 0.207036 -0.349975 -1.196319 -0.381258 -0.070953 1.027987 0.326610 -0.566854 0.574897 -0.768226 -0.744414 -0.349013 0.553127 -0.140146 -0.804488 0.573688 -0.529577 -0.072217 0.473584 0.150936 0.268404 -0.240714 -1.126438 -0.594661 0.384627 0.526005 -0.499985 0.860274 0.388233 -0.699654 -0.146180 0.129082 0.279568 0.035659 -0.678153 -0.538382 -0.783476 0.220859 -0.251579 0.859203 0.461051 0.158851 0.397833 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.349822 -0.121112 0.044202 0.348977 0.269419 -0.352824 0.098930 0.207715 -0.025774 -0.763712 -0.417889 0.153552 -0.047779 -0.250036 0.210761 0.137211 0.071629 0.260341 -0.427862 0.359753 0.195141 0.213535 -0.065452 -0.219479 0.125221 -0.169948 -0.245917 0.107939 0.075729 0.411728 -0.375558 0.002386 0.322696 0.039076 0.125885 0.376619 0.299041 -0.048013 0.184914 0.093539 0.771412 0.095148 0.107449 0.370019 0.392945 0.415780 -0.213775 0.762522 0.072361 -0.214297 0.397388 -0.419586 -0.238067 0.060971 -0.448372 0.459349 0.509015 0.225498 -0.331975 0.244154 -0.109359 0.064136 0.115182 -0.270112 0.443724 0.466760 0.062288 0.224082 0.838260 -0.170782 -0.155437 0.313605 0.545498 0.119666 0.292735 -0.251697 -0.124973 -0.686001 -0.144180 -0.397833 0.054889 -0.187537 0.884321 -0.491014 0.119144 0.529054 0.093327 0.377676 -0.176462 -0.074008 -0.376597 0.200323 -0.088385 0.616519 -0.022320 0.151106 -0.278979 0.088952 0.120026 0.369888 -0.045817 -0.208333 -0.677779 -1.012091 -0.500831 -0.118311 -0.065687 -0.139828 -0.799677 -0.068566 0.408183 0.496406 -0.695182 -0.035902 0.335950 0.209191 0.118892 0.163080 -0.481785 -0.088924 0.016993 0.075391 -0.088775 -0.166882 -0.195084 -0.553318 0.036436 -0.014878 0.165193 -0.268538 -0.314838 -0.175505 -0.172756 0.061441 -0.049254 -0.093574 0.054715 -0.563862 0.251906 -0.203317 0.223760 -0.634119 -0.211274 -0.299031 -0.496687 -0.029798 1.025508 0.136871 0.545223 0.132223 -0.339067 -0.442245 -0.506926 -0.698504 0.128338 -0.351337 0.349795 0.073627 0.028366 -0.082421 -0.039689 -0.269198 0.077633 -0.338827 0.022122 -0.238993 0.438617 -0.347215 -0.056523 -0.695838 -0.092044 0.547094 -0.084345 -0.039957 -0.200448 -0.339156 -0.403482 -0.487298 0.308577 -0.111319 0.237453 -0.177025 0.134863 -0.486608 0.184676 -0.302509 0.079446 -0.089501 -0.456535 -0.459470 -0.016210 -0.118792 -0.135475 -0.058971 -0.332487 0.082518 0.068657 0.267409 0.120939 0.095987 -0.099982 -0.792652 -0.733765 -0.241425 0.020775 0.428907 0.309700 0.153167 -0.327653 -0.163493 -0.548828 0.446491 -0.751407 -0.065720 0.084561 -0.135093 0.579028 -0.252921 -0.215805 -0.576786 0.194012 0.000328 -0.692816 0.626901 0.307108 -0.423860 -0.232843 -0.429915 0.126246 0.370622 0.746217 -0.219749 -0.013465 0.217007 -0.056678 -0.114317 -0.333856 0.424936 -0.265946 0.521981 -0.440674 -0.330591 0.096640 0.573232 -0.124816 0.120552 0.067343 0.223846 0.033477 0.477196 0.209503 -0.086436 -0.355821 -0.862310 0.140224 0.249152 0.040823 0.252434 -0.431521 -0.291638 0.058038 0.074144 0.583438 0.208600 0.351829 0.359942 -0.446993 -0.474354 0.192173 0.081641 0.098854 -0.380556 0.308940 -0.279916 -0.089320 0.077940 0.137811 0.070949 -0.295097 -0.505895 -0.098549 0.397894 0.246459 -0.095249 0.468526 0.144844 -0.299330 0.108881 -0.027571 0.337136 -0.019022 -0.177774 -0.156389 -0.287322 -0.045343 -0.196846 0.646791 -0.140778 0.032727 0.180930 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.631971 0.007859 0.225345 1.214126 0.312719 -0.130103 0.099390 0.586169 -0.384880 -2.455598 -1.490398 0.758394 -0.111446 0.405994 0.350573 0.059896 0.511093 -0.063961 -2.443317 0.310034 0.791441 0.286056 0.254979 0.045367 0.357142 -0.296379 -0.393927 0.200315 0.421191 1.282246 -1.010500 0.518559 0.768263 0.024162 0.740934 0.591767 -0.034498 -0.256639 -0.132524 -0.473617 1.841164 0.334901 -0.226082 0.827035 0.549593 1.348265 -0.617211 1.530902 0.596591 -0.632346 0.700297 -0.618119 -0.613911 0.300387 -0.776947 0.762938 1.314847 1.094736 -0.547731 0.320296 -0.421039 0.071733 -0.020030 -0.505514 1.083288 1.029496 0.442799 0.821008 1.214828 -0.913139 -0.300421 0.434943 0.772267 0.641169 -0.236232 -0.708645 -0.254985 -1.871347 -0.305955 -2.070095 -0.413002 -0.445367 2.329409 -1.196054 0.331668 0.541035 -0.296089 0.782500 -0.420483 0.332111 -1.281212 0.050822 -0.123662 0.973610 -0.252400 -0.144912 -0.088663 0.339374 0.432555 0.945301 -0.087292 -0.721346 -1.412417 -2.146763 -0.793045 -0.294713 0.303539 0.349684 -1.539930 0.015896 0.841705 1.194163 -1.508578 -0.357126 0.399421 0.881573 -0.156439 1.141838 -1.338905 -0.320302 -0.024565 0.127878 0.788315 -0.314542 -0.023945 -1.165345 -0.356217 -0.063337 0.758846 0.011859 -1.280743 -0.779702 -0.212040 -0.308659 -0.253363 -0.281975 0.246111 -0.285418 0.880787 -0.480695 0.977283 -1.453093 -0.300643 -0.842171 -0.796083 -0.022465 1.856268 1.422638 0.731239 0.450489 -0.575354 -0.590770 -1.209387 -0.825023 0.253887 -0.042230 0.837321 0.268380 -0.136321 0.625900 -0.529141 -0.463875 0.010966 -0.681690 -0.281643 -0.688526 0.860159 -0.462568 -0.130575 -1.318901 0.115796 0.738237 -1.046707 0.481692 -0.758344 -0.924546 -1.735007 -1.181665 1.025355 -0.522759 0.423736 -0.270910 0.507973 -0.758339 0.314563 -0.906698 -0.014415 -0.189165 -1.355100 -1.413350 0.356639 -0.353966 -0.731066 0.507588 -0.798019 0.005070 0.746167 1.286929 0.521378 0.148663 -0.117867 -1.782573 -1.345200 -0.532306 -0.547870 1.162656 0.696762 -0.429724 -1.195042 -0.763247 -1.371053 1.423052 -0.815079 0.304077 -0.358026 -0.230509 0.952077 -0.697837 0.046336 -1.163183 0.531200 0.816613 -2.651522 1.654303 0.727438 -0.789622 -0.427486 -1.121911 0.468385 0.533715 1.334515 -0.816657 -0.458618 0.251571 -0.277082 -0.081055 -0.842215 1.041285 -0.445732 0.407721 -1.201564 -0.742361 0.587639 0.649050 0.067719 0.428640 0.882834 0.404082 0.440956 1.330117 0.990996 -0.323745 -0.623414 -2.238295 0.817122 1.256473 0.147510 0.303448 -1.130333 -1.040823 -0.153666 0.025224 1.189748 0.241443 0.167077 1.159060 -0.979487 -0.817999 -0.250559 -0.126253 0.079882 -0.654542 0.460181 -0.646428 -0.045315 0.545395 0.023619 0.257678 -0.502995 -1.242776 -0.029748 0.972953 0.688487 0.372389 1.097529 0.533238 -1.142332 0.096652 0.355757 0.311530 -0.397365 -0.862865 -0.201319 -0.284858 0.075107 -0.650720 0.400183 0.220066 -0.212159 0.120044 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.099897 -0.081326 0.062296 0.220556 0.182404 -0.154555 0.078894 -0.012593 -0.019212 -0.348534 -0.107082 0.126267 -0.046443 -0.140807 0.046155 0.034849 0.099796 0.189836 0.001925 0.135642 0.012971 0.068040 -0.079482 -0.102003 0.004991 -0.109211 0.013815 0.138215 0.026245 0.202161 -0.168367 -0.010482 0.157521 0.062473 0.097275 0.227808 0.307919 -0.023293 -0.022968 0.031007 0.422798 -0.047612 0.102823 0.204820 0.212013 0.237668 0.028392 0.285111 0.160430 -0.065990 0.125921 -0.129366 -0.056626 -0.051499 -0.326001 0.198890 0.112701 0.086443 -0.215685 0.153537 -0.029481 0.041439 0.068348 -0.075583 0.219435 0.148246 -0.017608 0.141198 0.424389 -0.151321 -0.109852 0.182838 0.328883 0.117009 0.187291 -0.020785 -0.084937 -0.334304 -0.127764 -0.068160 0.074297 -0.050733 0.379125 -0.204526 0.010329 0.283976 -0.010700 0.151056 -0.075416 -0.080235 -0.265108 0.092298 0.021673 0.230058 0.075294 0.050073 -0.128255 0.027662 0.042524 0.203451 -0.009346 -0.177368 -0.219208 -0.548337 -0.286669 -0.112919 -0.089896 -0.169159 -0.333895 -0.066277 0.222207 0.363440 -0.329633 -0.043878 0.148399 0.048214 0.009621 -0.130748 -0.124121 -0.005768 0.050390 0.033009 -0.023363 -0.075353 -0.096632 -0.173580 0.033536 -0.046539 0.111380 -0.122014 -0.055288 -0.101490 -0.065104 0.113376 -0.040368 -0.110639 -0.039441 -0.274512 0.106665 -0.099138 0.154716 -0.224307 -0.067414 -0.143098 -0.237745 -0.037049 0.567159 -0.020396 0.374388 0.051462 -0.190947 -0.176980 -0.214893 -0.469363 0.143221 -0.175963 0.102003 0.075263 -0.004982 -0.058179 -0.059621 -0.164883 0.151612 -0.184496 -0.023283 -0.054390 -0.010363 -0.165544 -0.051394 -0.361800 0.016783 0.309200 0.086373 -0.016308 -0.162783 -0.258292 -0.133097 -0.242063 0.149395 -0.075334 0.088460 -0.014452 -0.039634 -0.207403 0.122583 -0.151701 0.068997 -0.093036 -0.214928 -0.254093 0.009222 -0.109291 -0.068174 0.022620 -0.185965 0.096013 -0.083090 -0.012554 0.020952 0.049407 -0.038048 -0.333034 -0.327483 -0.104566 0.065419 0.169314 0.133628 0.162046 -0.201328 -0.113535 -0.239485 0.186334 -0.430679 -0.008662 0.169527 -0.139537 0.264721 -0.141261 -0.079178 -0.168992 0.148489 0.048598 -0.358651 0.269761 0.236132 -0.269885 -0.173316 -0.155016 0.044732 0.160630 0.434357 -0.166240 0.020763 0.178200 0.030555 -0.055945 -0.157610 0.162511 -0.035414 0.255228 -0.295364 -0.220000 0.041054 0.304898 -0.069893 -0.024120 0.037273 0.098554 -0.074273 0.310964 0.093912 0.107927 -0.191848 -0.370534 0.084869 0.063401 0.052668 0.251429 -0.212702 -0.077315 0.069981 -0.082681 0.292315 -0.036999 0.092463 0.224480 -0.207883 -0.250240 0.103758 -0.068498 0.092079 -0.229832 0.298958 -0.194697 -0.071506 -0.092904 0.085858 -0.064441 -0.000948 -0.117788 -0.002045 0.133372 0.153718 -0.035354 0.251546 0.015272 -0.164110 0.063643 -0.012225 0.161129 0.057955 -0.220204 -0.101977 -0.152335 0.046176 -0.099779 0.331122 -0.134777 0.059743 0.111362 -PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.678290 -0.420050 -0.054333 0.675859 0.483681 -0.493483 0.164206 0.200716 0.164771 -1.107319 -0.436655 0.633490 -0.019463 -0.399154 0.129667 0.268580 0.184059 0.302892 -0.479006 0.522888 0.079766 0.195474 -0.303559 -0.327368 0.103545 -0.319603 0.151228 0.257385 0.074665 0.586615 -0.483044 0.020105 0.487654 -0.000418 0.252643 0.608318 0.546237 -0.080091 -0.021773 0.043688 1.213907 0.194315 0.155763 0.665929 0.559053 0.671011 -0.096680 1.443560 0.413084 -0.236598 0.605748 -0.254205 -0.387550 -0.055507 -0.874903 0.669169 0.673658 0.109993 -0.551283 0.353365 -0.079054 0.108049 0.244265 -0.060733 0.733452 0.645416 0.225903 0.432584 1.350220 -0.369102 -0.243085 0.569467 0.971698 0.358104 0.823701 -0.489716 -0.488878 -0.571960 -0.170503 -0.247669 0.154972 -0.381125 1.214299 -0.711877 0.027606 0.640742 0.226636 0.619133 -0.329453 -0.066963 -0.649454 0.307805 -0.090159 1.165467 -0.053676 0.381370 -0.449607 0.129064 0.063331 0.558318 0.103274 -0.527400 -0.636825 -1.433778 -0.775146 -0.346700 -0.185226 -0.263038 -1.186481 -0.026680 0.283542 0.732045 -1.033261 -0.090800 0.442497 0.171930 0.814712 0.183625 -0.450107 -0.102515 0.155933 0.095185 -0.202481 -0.242336 -0.278825 -0.650375 0.196348 0.050415 0.221927 -0.332717 -0.618915 -0.140870 -0.172859 0.278133 -0.008822 -0.134919 0.087550 -1.074281 0.330433 -0.284909 0.363167 -0.957591 -0.524910 -0.486974 -0.742247 -0.109875 1.540768 0.006126 1.162495 0.144285 -0.459158 -0.637001 -0.839087 -1.328971 0.144449 -0.569821 0.224326 0.177275 0.039816 -0.123128 -0.176906 -0.383543 0.304927 -0.547943 -0.071531 -0.298856 0.446034 -0.493772 -0.054648 -0.857285 -0.155201 0.690004 0.226627 0.174480 -0.255804 -1.210306 -0.680959 -0.682199 0.471544 -0.208798 0.296402 -0.231207 -0.026591 -0.734287 0.182178 -0.437741 0.223426 -0.198873 -0.646790 -0.729556 0.063796 -0.211872 -0.025810 -0.055864 -0.619840 0.217612 -0.065997 0.376378 0.110811 0.214155 -0.194693 -1.309440 -1.089403 -0.207400 0.106636 0.923429 0.314559 0.260320 -0.283292 -0.315058 -0.882864 0.536765 -1.451567 -0.011975 0.351480 -0.281363 0.800219 -0.468966 -0.322383 -0.874380 0.370851 -0.027237 -0.729800 1.119165 0.593460 -0.727405 -0.377476 -0.461577 0.215494 0.462204 1.157114 -0.482517 -0.166549 0.411568 0.082989 -0.209175 -0.399097 0.556422 -0.306044 0.749899 -0.776584 -0.576895 0.138386 0.877349 -0.241975 -0.057361 0.031732 0.054279 -0.126415 0.842878 0.357297 0.156042 -0.680928 -1.489100 0.170835 0.004874 -0.078286 0.448524 -0.752706 -0.395750 0.198914 -0.015491 0.920469 0.013313 0.474240 0.589031 -0.888125 -0.783089 0.212514 -0.114378 0.166824 -0.453850 0.591696 -0.542209 -0.166628 -0.111387 0.245802 -0.229948 -0.312369 -0.292587 0.000878 0.519642 0.308203 -0.182717 0.731326 0.263662 -0.340514 0.099577 -0.032571 0.332712 0.054943 -0.509637 -0.175186 -0.400362 0.037040 -0.311713 0.961454 -0.170124 0.206003 0.160033 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.184673 -0.052777 0.091770 0.187073 0.187377 -0.236036 0.077466 0.101756 -0.070761 -0.432582 -0.238970 -0.041148 -0.058105 -0.224599 0.160410 0.079054 0.089047 0.188055 -0.250898 0.228656 0.116151 0.111507 -0.051282 -0.131264 0.065469 -0.131936 -0.241679 0.113303 -0.009577 0.237604 -0.243826 0.023419 0.179728 0.083930 0.127087 0.237224 0.156771 -0.075018 0.206111 0.119736 0.506351 -0.002862 0.093997 0.170793 0.296526 0.259864 -0.143079 0.361304 0.032678 -0.083117 0.254401 -0.317595 -0.102433 0.082327 -0.333770 0.235907 0.269589 0.130326 -0.220573 0.180716 -0.128787 0.073344 0.076415 -0.192048 0.340269 0.258668 0.011381 0.129933 0.523304 -0.069362 -0.063270 0.152108 0.353870 0.029030 0.075545 -0.075465 0.025172 -0.591868 -0.107293 -0.280046 0.115647 -0.085407 0.511950 -0.243995 0.070060 0.363016 0.042277 0.231538 -0.119484 -0.087597 -0.263024 0.148379 -0.033246 0.285862 -0.017447 0.088469 -0.167421 0.054185 0.048987 0.204216 -0.089283 -0.129906 -0.451388 -0.711284 -0.361994 -0.052143 -0.089219 -0.201375 -0.505029 -0.015539 0.359628 0.323561 -0.417603 -0.036379 0.159650 0.095940 -0.147627 0.027397 -0.315606 -0.111051 -0.031966 0.145939 -0.074245 -0.069356 -0.099211 -0.462988 0.013923 0.008490 0.153604 -0.195371 -0.091542 -0.086329 -0.084153 0.014630 -0.071676 -0.052015 -0.007630 -0.273162 0.135893 -0.157455 0.166276 -0.363914 -0.065642 -0.260613 -0.290446 0.007083 0.645528 0.131590 0.264503 0.158829 -0.204243 -0.208737 -0.315327 -0.427490 0.083006 -0.278155 0.242531 -0.005569 0.014769 -0.115650 -0.003835 -0.197655 0.060843 -0.244819 0.002396 -0.207285 0.205705 -0.180024 -0.082712 -0.438875 -0.015446 0.455746 -0.089608 -0.087362 -0.159707 -0.065257 -0.206516 -0.317751 0.173232 -0.062630 0.146351 -0.101980 0.122086 -0.305892 0.188000 -0.162107 0.019505 -0.085502 -0.253369 -0.274731 -0.044177 -0.086114 -0.098135 -0.077350 -0.179468 0.090080 0.045910 0.117890 0.062932 0.072045 -0.078032 -0.409490 -0.461645 -0.182129 0.088311 0.192028 0.230555 0.136836 -0.249281 -0.097662 -0.308991 0.305129 -0.408011 -0.044785 0.121190 -0.172483 0.343523 -0.153720 -0.136355 -0.258718 0.122603 -0.053042 -0.514379 0.345535 0.204019 -0.346914 -0.200752 -0.397218 0.133018 0.192416 0.516634 -0.081539 0.124069 0.134672 0.010785 -0.084587 -0.229527 0.256132 -0.114768 0.336279 -0.319211 -0.240257 0.116431 0.376072 -0.092793 0.055879 0.002716 0.214511 0.017004 0.309946 0.079078 -0.031171 -0.191582 -0.486442 0.026525 0.240843 0.093970 0.222569 -0.232458 -0.174560 -0.033096 0.014315 0.387563 0.171801 0.201844 0.223187 -0.182200 -0.294561 0.100572 0.081300 0.048642 -0.303093 0.229744 -0.194211 -0.108810 0.012199 0.168216 0.092761 -0.177256 -0.412031 -0.063463 0.227135 0.193055 -0.128260 0.282136 0.073289 -0.170646 0.042954 -0.007755 0.234082 0.073230 -0.079990 -0.147896 -0.219474 -0.016237 -0.132621 0.450684 -0.100853 0.108194 0.136551 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.133944 -0.042752 0.098432 0.240446 0.187937 -0.288413 0.118413 0.087792 -0.084300 -0.412902 -0.117317 0.036516 -0.043218 -0.225967 0.059855 0.039083 0.012062 0.229844 -0.216244 0.226993 0.104174 0.147367 -0.047542 -0.247688 0.035289 -0.119924 -0.062443 0.202966 -0.007603 0.260103 -0.217522 -0.057613 0.186450 0.109204 0.121114 0.287864 0.318632 -0.017659 0.067980 0.123926 0.478655 0.072468 -0.014079 0.151832 0.282911 0.285918 0.063503 0.146697 -0.100539 -0.085851 0.021578 -0.111063 -0.121504 -0.091928 -0.308581 0.221324 0.267708 0.230031 -0.225371 0.207277 -0.114465 0.007612 0.105838 -0.053427 0.289641 0.165199 0.001602 0.148072 0.569655 -0.154583 -0.115912 0.179250 0.373155 -0.007938 0.219909 0.008680 -0.171896 -0.599611 -0.111228 -0.326525 0.006122 0.028834 0.393417 -0.256298 0.095428 0.379750 0.083263 0.206947 -0.165668 -0.146593 -0.270779 0.109173 -0.071974 0.496692 0.065476 0.081975 -0.124077 0.124845 0.159805 0.255875 -0.005569 -0.182540 -0.270933 -0.698247 -0.262462 -0.117311 -0.146411 -0.187024 -0.412674 -0.126293 0.399310 0.454230 -0.441543 -0.013093 0.228285 0.102713 -0.001602 -0.332415 -0.169538 0.094238 -0.050426 -0.011474 -0.011044 -0.158253 -0.147060 -0.128504 0.076349 -0.023147 0.099736 -0.138365 -0.180599 -0.084537 -0.041108 0.005977 -0.033962 -0.091213 -0.067824 -0.360237 0.103193 -0.250580 0.221361 -0.305901 0.064855 -0.126525 -0.310952 -0.004255 0.446195 0.001036 0.192928 0.013629 -0.205144 -0.171740 -0.258867 -0.612338 0.195667 -0.143629 0.147867 -0.011319 -0.017920 -0.122423 -0.062120 -0.195493 0.198211 -0.216607 0.008257 -0.089358 0.232558 -0.147299 -0.070578 -0.354423 -0.014908 0.409500 0.160168 -0.020945 -0.214523 -0.173994 -0.217867 -0.319230 0.192831 -0.050058 0.017596 -0.105379 -0.024826 -0.318784 0.249543 -0.168349 0.181365 -0.097797 -0.196089 -0.297784 -0.030828 -0.110759 -0.085882 -0.041182 -0.189686 0.053054 -0.103735 -0.127524 0.006861 -0.000923 0.033279 -0.366081 -0.394006 -0.077308 0.132277 0.197241 0.124673 0.215003 -0.248780 -0.067858 -0.289412 0.291050 -0.335823 -0.027149 0.100996 -0.180193 0.425606 -0.129122 -0.152890 -0.218824 0.173400 0.006768 -0.155922 0.466865 0.300420 -0.296454 -0.205509 -0.162661 0.025969 0.246160 0.517355 -0.232900 -0.036618 0.188622 -0.021736 -0.088969 -0.149928 0.215054 -0.122011 0.372687 -0.313197 -0.240651 0.015704 0.395877 -0.086032 0.086027 -0.030385 0.058538 -0.162892 0.340554 0.107506 0.092432 -0.246462 -0.304956 0.102179 -0.122431 0.098121 0.142827 -0.161753 -0.170710 0.066306 0.069585 0.383910 0.198878 -0.043843 0.239345 -0.300372 -0.323202 0.079206 0.006987 0.096271 -0.300841 0.283536 -0.205135 -0.048018 -0.029339 0.103378 0.016321 -0.092627 -0.180862 -0.055100 0.169420 0.185907 -0.193516 0.328970 0.009285 -0.169684 0.038824 -0.015103 0.198690 0.071509 -0.087255 -0.133924 -0.222423 0.078795 -0.098490 0.460542 -0.119068 0.048947 0.190929 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.571472 -0.218516 0.086431 0.502180 0.465483 -0.402198 0.147972 0.284127 0.044131 -1.059571 -0.541007 0.376815 -0.066399 -0.303947 0.208903 0.183028 0.206655 0.314932 -0.538653 0.420921 0.170364 0.243496 -0.153983 -0.295373 0.147057 -0.256279 -0.135565 0.188449 0.125235 0.551717 -0.492093 -0.028416 0.441124 0.042730 0.228449 0.538880 0.485616 -0.084917 0.111405 -0.007910 1.134443 0.148847 0.151579 0.621933 0.554465 0.597664 -0.236342 1.171928 0.191225 -0.262113 0.522687 -0.499424 -0.356106 0.031545 -0.721965 0.650300 0.705542 0.238698 -0.514634 0.345153 -0.041244 0.105374 0.163169 -0.280483 0.569511 0.619232 0.112062 0.334036 1.168975 -0.329506 -0.257088 0.497522 0.808936 0.309387 0.474517 -0.431330 -0.216804 -0.739588 -0.142724 -0.438575 0.125728 -0.352740 1.223585 -0.644642 0.128541 0.698872 0.102829 0.488472 -0.235395 -0.109049 -0.570235 0.279232 -0.107087 0.927204 -0.053689 0.254051 -0.334726 0.114830 0.126589 0.550738 0.015844 -0.356279 -0.797630 -1.357849 -0.674670 -0.229442 -0.081176 -0.210236 -0.997529 -0.074329 0.427530 0.658659 -0.904483 -0.086938 0.425624 0.248918 0.332920 0.246251 -0.568405 -0.155706 0.054769 0.057505 -0.172239 -0.234310 -0.262600 -0.652791 0.055226 -0.014248 0.245590 -0.330925 -0.512526 -0.212245 -0.219824 0.138163 -0.074465 -0.171931 0.054790 -0.866203 0.348267 -0.253957 0.310288 -0.855593 -0.369919 -0.418767 -0.691536 -0.082387 1.385760 0.072191 0.882632 0.221450 -0.405030 -0.623588 -0.674831 -1.012843 0.183299 -0.443593 0.403885 0.146078 0.030507 -0.085170 -0.139784 -0.418643 0.142976 -0.464791 -0.018019 -0.322606 0.601080 -0.511325 -0.061657 -0.887680 -0.057375 0.736152 -0.032314 0.010770 -0.297158 -0.679812 -0.549975 -0.661792 0.427017 -0.189357 0.314628 -0.164966 0.115329 -0.632070 0.200597 -0.423929 0.174179 -0.176969 -0.652706 -0.654324 0.055611 -0.201453 -0.124142 0.009995 -0.509368 0.171723 0.036931 0.405228 0.118411 0.146086 -0.141252 -1.165579 -1.014321 -0.309046 0.065011 0.690196 0.372727 0.189325 -0.352613 -0.275348 -0.739928 0.559451 -1.113182 -0.054035 0.179435 -0.187269 0.722805 -0.372079 -0.255579 -0.839205 0.302119 0.052407 -0.836695 0.921696 0.440404 -0.623793 -0.374680 -0.563411 0.167614 0.445060 1.049726 -0.362053 -0.101747 0.362246 -0.054304 -0.164536 -0.455799 0.552678 -0.247928 0.710934 -0.706892 -0.522215 0.135724 0.785776 -0.196592 0.134480 0.154183 0.248271 0.004547 0.782923 0.305709 0.002548 -0.549453 -1.265255 0.196556 0.253750 0.021929 0.336754 -0.617443 -0.422877 0.112332 0.093307 0.799247 0.202317 0.509738 0.538952 -0.661422 -0.663275 0.274761 -0.000495 0.188544 -0.501797 0.423148 -0.444034 -0.132309 -0.022358 0.184047 -0.004387 -0.341857 -0.557324 -0.096700 0.530487 0.317280 -0.098493 0.660914 0.214530 -0.390841 0.181777 -0.032901 0.463092 0.035835 -0.349490 -0.192185 -0.388476 -0.055187 -0.274041 0.855729 -0.133584 0.098362 0.211777 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.092570 -0.027587 0.211086 0.109814 0.131364 0.055697 0.032502 0.104564 -0.059661 -0.294069 -0.308938 -0.264154 -0.070727 0.049529 0.084623 -0.067427 0.205650 -0.179310 -0.404761 -0.046889 0.102281 -0.059334 0.073031 0.068865 0.055134 0.018106 -0.409113 0.014925 -0.021302 0.110078 -0.153797 0.097729 -0.057300 0.119101 0.268373 -0.041726 -0.199588 -0.131176 0.187847 -0.066149 0.218960 0.019207 -0.173016 -0.004649 0.183204 0.157688 -0.277929 0.241957 -0.166948 0.115796 0.204379 -0.452169 -0.013258 0.243349 -0.071829 0.040989 0.443545 0.199612 -0.002483 0.007029 -0.159804 0.114099 -0.114014 -0.064105 0.164544 0.207428 -0.056151 0.058540 0.019381 -0.098732 -0.008667 -0.094433 0.169317 0.080155 -0.500379 -0.101206 0.208257 -0.467453 0.003888 -0.377454 0.135757 -0.124098 0.245685 -0.032024 0.094033 0.066165 -0.149894 -0.053380 -0.034760 0.064280 -0.176214 0.064289 -0.046066 -0.026229 -0.241255 -0.019743 0.023321 0.066579 0.062585 0.073529 -0.097460 -0.026606 -0.390036 -0.401926 -0.105619 0.062292 -0.020349 -0.104500 -0.126700 0.043066 0.253857 -0.094464 -0.004305 -0.110548 -0.144519 0.156531 -0.411535 0.315959 -0.281264 -0.166040 -0.151771 0.117989 0.094014 0.110075 -0.005717 -0.563608 -0.153965 0.046101 0.216831 0.001152 -0.127334 0.067578 -0.037539 -0.176004 -0.142135 -0.104099 -0.129638 0.174871 0.069191 -0.099838 0.164496 -0.197639 0.038313 -0.352555 -0.125843 0.181668 0.164145 0.315504 -0.108631 0.348549 0.053300 0.009061 -0.086544 0.093327 -0.039621 -0.027384 0.243158 -0.184303 -0.002767 0.019477 -0.076875 -0.198164 -0.069741 -0.131781 -0.069328 -0.348842 0.240630 -0.068430 -0.117127 -0.060372 0.143705 0.378190 -0.495315 -0.046711 -0.218335 0.279421 -0.219598 -0.203114 0.083059 -0.077161 0.107920 0.045536 0.348640 -0.207288 0.155525 -0.006131 0.056582 -0.056180 -0.185483 -0.159925 -0.000668 -0.034845 -0.027404 0.138467 0.013455 0.046627 0.202079 0.400914 0.051597 0.145823 -0.026666 -0.197508 -0.214368 -0.243047 0.054970 0.185045 0.091454 -0.166748 -0.017873 -0.139383 -0.218148 0.312773 0.170749 0.035628 -0.065312 0.005175 -0.007141 -0.047237 0.037594 -0.120404 0.048119 0.110975 -0.325049 0.174041 -0.010411 -0.212994 -0.177328 -0.602910 0.198815 -0.146376 0.273704 -0.029290 0.101007 -0.007848 -0.047023 -0.060761 -0.259319 0.158868 0.080116 0.063578 -0.253186 -0.120687 0.120852 -0.001605 0.002337 0.121434 0.141139 0.186841 0.047998 0.230966 0.108177 -0.118370 -0.002894 -0.228842 0.013379 0.420335 0.138878 -0.009889 -0.126792 -0.245614 -0.297768 0.186197 0.141545 0.369186 0.048624 0.172345 0.123418 0.046018 -0.046902 0.057208 -0.013953 -0.277274 -0.079585 -0.101170 -0.125632 0.145169 0.124980 0.293942 -0.123141 -0.542470 -0.060681 0.159600 0.056737 -0.025749 0.036558 0.086985 -0.144090 -0.010304 0.163872 0.130017 0.061113 0.021682 -0.043316 -0.119958 -0.040356 -0.111211 0.009074 0.226533 0.059393 0.006183 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.524341 -0.256035 0.201640 0.398133 0.470863 -0.375568 0.152652 0.282648 0.108679 -0.914206 -0.408189 0.268778 -0.106400 -0.313345 0.172785 0.121144 0.283703 0.347938 -0.504932 0.383680 0.124776 0.282270 -0.117342 -0.313294 0.147539 -0.202752 -0.118853 0.174541 0.134124 0.481356 -0.494943 -0.101919 0.383485 0.053158 0.269584 0.512875 0.540569 -0.104630 0.124011 -0.016769 1.087803 0.114403 0.160750 0.603810 0.577205 0.543641 -0.139289 1.012846 0.316461 -0.210182 0.415967 -0.578848 -0.302796 0.019060 -0.716705 0.604354 0.643690 0.282328 -0.547940 0.353542 0.072923 0.124877 0.157269 -0.276546 0.475290 0.513631 0.005171 0.281140 1.089776 -0.288085 -0.223952 0.392299 0.827218 0.330786 0.424516 -0.462323 -0.119350 -0.877313 -0.137107 -0.390042 0.232672 -0.330541 0.982861 -0.579680 0.257217 0.726195 0.007070 0.385931 -0.169360 -0.201693 -0.557853 0.271330 -0.024651 0.801635 -0.103508 0.196884 -0.233644 0.125259 0.086364 0.485821 0.091963 -0.358164 -0.685701 -1.298592 -0.610911 -0.221269 -0.137194 -0.288902 -0.823742 -0.058950 0.409617 0.535869 -0.810203 -0.090340 0.338295 0.168715 0.108517 0.031013 -0.385186 -0.177058 -0.039413 0.088889 -0.235802 -0.290662 -0.275989 -0.592636 -0.011218 0.045921 0.266577 -0.328833 -0.274342 -0.174460 -0.221960 0.231273 -0.155181 -0.192849 -0.033676 -0.821677 0.307145 -0.278039 0.292781 -0.670689 -0.335228 -0.385014 -0.530536 -0.087234 1.332367 -0.138103 0.750163 0.265337 -0.380786 -0.546858 -0.535899 -0.894166 0.254770 -0.438801 0.388080 0.163977 0.027802 -0.149946 -0.113270 -0.500188 0.056355 -0.443881 -0.028690 -0.321713 0.355640 -0.512155 -0.060141 -0.816385 0.055975 0.876418 -0.018592 -0.094983 -0.353825 -0.518451 -0.388489 -0.599624 0.381694 -0.173574 0.318561 -0.067675 0.130767 -0.522829 0.246491 -0.398806 0.179504 -0.246837 -0.574486 -0.597341 0.052082 -0.251682 0.027113 0.042670 -0.451652 0.231854 -0.136407 0.433429 0.029056 0.120685 -0.076693 -1.139820 -0.951643 -0.351119 0.151597 0.614260 0.203153 0.220593 -0.313739 -0.251064 -0.560248 0.491757 -1.036802 -0.054166 0.228535 -0.224840 0.645170 -0.282718 -0.178673 -0.773783 0.304829 0.085808 -0.663205 0.837768 0.385252 -0.641468 -0.378191 -0.585992 0.177898 0.381816 1.006114 -0.310117 -0.079090 0.395455 -0.077232 -0.156646 -0.535168 0.480686 -0.123576 0.717992 -0.712289 -0.508406 0.119273 0.714651 -0.191930 0.119389 0.180864 0.266943 -0.119011 0.812512 0.221582 0.138752 -0.529925 -1.076674 0.165955 0.445442 0.184480 0.353244 -0.577333 -0.352697 0.084110 0.204350 0.718752 0.357668 0.561464 0.500069 -0.584101 -0.606152 0.315178 -0.023571 0.229232 -0.492961 0.383970 -0.451988 -0.158978 -0.118600 0.245056 0.012006 -0.201800 -0.543044 -0.062077 0.431667 0.333030 -0.141121 0.602708 0.146805 -0.384991 0.250368 -0.047010 0.483958 0.061838 -0.188924 -0.173999 -0.378520 -0.043040 -0.273158 0.852592 -0.163478 0.158268 0.148691 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.434547 -0.333357 0.161666 0.440755 0.384392 -0.456421 0.186391 0.218161 0.062895 -0.775132 -0.238055 0.204942 -0.073932 -0.374730 0.109786 0.099719 0.102559 0.262134 -0.542459 0.424717 0.122096 0.234175 -0.107642 -0.376305 0.101969 -0.235219 0.046614 0.327745 0.010042 0.433860 -0.392284 -0.098884 0.340960 0.105673 0.227898 0.503798 0.491868 -0.064855 0.071019 0.155248 0.916859 0.186483 -0.007401 0.393405 0.510800 0.509473 0.070243 0.740868 0.194064 -0.152744 0.285299 -0.289907 -0.292144 -0.131157 -0.629344 0.444979 0.589950 0.280165 -0.433880 0.328335 -0.107420 0.042459 0.188273 -0.040984 0.538245 0.379001 0.111847 0.252615 1.054118 -0.280678 -0.211419 0.381718 0.766405 0.170794 0.499953 -0.320804 -0.353348 -0.936200 -0.112599 -0.398561 0.059798 -0.166450 0.645577 -0.473887 0.152053 0.608347 0.109335 0.401829 -0.272473 -0.178530 -0.494142 0.237173 -0.031340 0.959119 -0.055709 0.218666 -0.194779 0.175475 0.176908 0.470155 0.129847 -0.374615 -0.479721 -1.202541 -0.492566 -0.237379 -0.203749 -0.304172 -0.798779 -0.077398 0.433898 0.513492 -0.750740 -0.061092 0.371148 0.165798 0.321735 -0.305791 -0.230141 -0.006747 -0.002221 0.061751 -0.103891 -0.306500 -0.245582 -0.408058 0.182548 0.081278 0.166536 -0.283750 -0.310845 -0.106596 -0.095078 0.186545 -0.053249 -0.151116 -0.066196 -0.766476 0.205361 -0.372092 0.356532 -0.630125 -0.150733 -0.315791 -0.444829 -0.037743 1.037556 -0.100228 0.552962 0.125146 -0.373537 -0.365016 -0.495609 -1.059370 0.208019 -0.348376 0.232699 0.038512 -0.000346 -0.173433 -0.090644 -0.376831 0.187802 -0.393268 -0.017097 -0.230798 0.220064 -0.317927 -0.063557 -0.588288 -0.015256 0.727098 0.215242 0.040360 -0.290263 -0.666455 -0.405879 -0.568883 0.344835 -0.114288 0.106034 -0.170487 -0.005676 -0.595293 0.343435 -0.309652 0.263694 -0.185195 -0.465228 -0.531416 0.003312 -0.211053 0.086134 -0.047189 -0.401404 0.120747 -0.240924 0.166126 0.042975 0.097571 -0.034133 -0.929425 -0.821365 -0.200345 0.218787 0.627723 0.065518 0.279865 -0.250123 -0.175290 -0.538116 0.470819 -0.855697 -0.048335 0.217910 -0.316458 0.695678 -0.231639 -0.237804 -0.583198 0.301095 0.009393 -0.236997 0.928041 0.493977 -0.566573 -0.371459 -0.359400 0.090203 0.397418 0.922160 -0.379532 -0.131273 0.331349 0.032786 -0.174876 -0.329886 0.408027 -0.189601 0.647102 -0.606609 -0.486660 0.036690 0.701005 -0.177206 0.065022 -0.006109 0.101687 -0.294547 0.677022 0.176642 0.187544 -0.492931 -0.880329 0.147403 0.072534 0.104704 0.292679 -0.506448 -0.344303 0.120456 0.213545 0.709479 0.409969 0.221107 0.431619 -0.591920 -0.583597 0.137985 -0.048502 0.141477 -0.426651 0.421009 -0.405106 -0.113753 -0.090394 0.190329 -0.056752 -0.173989 -0.300757 -0.060072 0.314111 0.292108 -0.288817 0.567289 0.115324 -0.275678 0.070636 -0.013067 0.290767 0.130820 -0.104912 -0.167780 -0.375659 0.071701 -0.185147 0.790633 -0.137160 0.164642 0.169320 -PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = 2.979576 -0.098904 -1.800776 4.651700 0.127625 -1.122793 0.129001 1.271133 -0.892935 -7.937774 -4.868685 5.497821 0.671157 1.085013 0.767789 1.990547 0.167896 0.347895 -7.538772 2.023842 2.316292 0.582673 -0.205563 -0.292288 0.856171 -2.188072 2.347218 0.853635 1.246544 4.439146 -2.485718 2.173294 3.881138 -0.544217 1.934621 3.294944 -0.590811 0.049027 -1.887355 -1.396202 5.919131 2.591621 0.452656 2.713124 0.485423 4.575800 0.303323 5.148846 2.030023 -3.432548 2.130796 0.831588 -3.183311 -0.245654 -3.174125 2.277506 2.053499 1.372518 -2.195335 1.375868 -1.037674 -0.199256 1.077550 -0.597555 4.668619 1.763538 3.522569 2.891707 4.595848 -3.039962 -0.723050 3.022072 1.846052 1.190134 3.551284 -3.002147 -4.018640 -0.292079 -0.328497 -5.821225 -2.697576 -0.544123 8.160570 -4.569798 -0.441058 0.552687 0.090990 4.394984 -2.035031 0.801409 -3.748279 -0.095863 -1.072657 5.245957 0.811253 0.397774 -0.443234 1.266299 1.221476 3.245112 -0.309558 -3.347304 -2.264623 -6.028749 -1.512656 -2.095191 2.026671 2.579828 -5.563665 -0.640246 -0.927342 6.097084 -6.236854 -0.211358 3.215941 2.017377 4.093969 2.029449 -2.848758 0.101341 1.356825 0.618782 3.152692 -1.921061 0.233720 -0.511185 1.182303 -0.292268 1.567483 0.419498 -5.769746 -3.209994 0.220690 -0.346970 0.275715 0.670111 2.656783 -2.351365 3.103594 -1.414532 3.027382 -5.626859 -1.051621 -1.815382 -3.609581 -1.466403 5.350645 4.635676 4.404776 -1.282320 -1.417574 -1.746576 -5.571118 -5.692269 0.804066 0.124541 1.151978 1.827935 -0.305227 2.623089 -2.187509 0.637181 1.375181 -2.004033 -0.984542 -0.446794 2.939854 -0.328921 -0.478342 -3.359294 -1.332659 -1.251684 -0.243905 3.710540 -0.867901 -8.262733 -6.555782 -3.457393 3.797982 -1.705960 0.706395 -2.169836 -0.814481 -2.487335 -0.362045 -3.973117 0.314174 0.040844 -3.478606 -4.646196 0.570562 -0.767047 -1.858263 0.375694 -3.362696 -0.682193 3.669571 1.733371 1.840326 0.616954 -0.261471 -4.760877 -3.267879 0.997144 -2.950087 4.318602 2.925736 -0.987083 -4.121922 -1.893235 -4.697527 3.192390 -3.852352 1.188596 -1.377876 -0.874533 4.109931 -2.936737 0.380964 -3.325673 1.690251 1.799792 -9.267750 5.101022 4.055875 -1.709127 -0.267713 0.305680 0.681576 2.968365 3.428606 -2.858540 -2.714933 0.469411 -1.140338 0.079616 -0.456695 3.020663 -2.958479 0.629465 -2.994533 -1.934733 2.123263 2.262371 0.394496 0.759906 1.626614 -0.199854 2.348145 3.546678 2.982485 -0.751108 -3.847548 -10.145965 2.966120 0.909003 -1.628675 0.911211 -2.449433 -2.796106 1.283458 -2.687959 4.194965 -1.175309 -1.040369 3.613977 -5.227517 -4.291900 -2.243605 -0.782870 -0.094890 -0.119085 1.490079 -1.753992 1.183738 0.995172 -0.629593 -1.090889 -2.214623 -0.441789 0.652634 3.815288 1.910892 1.533327 4.414182 1.620303 -2.356980 -0.765365 0.554749 -0.423635 -1.054400 -5.297439 -1.691493 -0.525568 1.000103 -1.884496 1.072106 -0.353044 -0.256849 0.801274 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.473014 -0.189341 -0.018756 0.569228 0.316530 -0.305463 0.151841 0.252115 0.076177 -1.125128 -0.586386 0.380549 0.000792 -0.159849 0.213976 0.200591 0.089683 0.363308 -0.559931 0.333789 0.263550 0.270455 -0.015383 -0.253506 0.131320 -0.233524 -0.154446 0.113529 0.182109 0.636506 -0.439121 0.049506 0.517250 -0.005623 0.047951 0.518312 0.474846 -0.012944 0.003163 -0.028361 0.999294 0.156241 0.086388 0.571508 0.318721 0.617869 -0.213525 1.137649 0.163785 -0.354863 0.503211 -0.510845 -0.367040 -0.005153 -0.577885 0.636560 0.700472 0.348112 -0.382993 0.320551 -0.077505 0.089910 0.170557 -0.347560 0.506624 0.666902 0.155020 0.387392 1.079360 -0.409544 -0.202778 0.438677 0.600167 0.222490 0.534361 -0.420762 -0.270396 -0.713761 -0.171501 -0.477053 -0.028084 -0.288326 1.233074 -0.733057 0.089322 0.655032 0.128795 0.548847 -0.227118 0.034407 -0.544940 0.224486 -0.077169 0.909865 0.049482 0.171960 -0.400769 0.111381 0.157496 0.476799 0.079571 -0.317468 -0.818915 -1.237054 -0.632959 -0.244879 0.007655 0.005622 -1.036173 -0.088728 0.426705 0.657995 -1.002313 -0.054470 0.477067 0.376702 0.451739 0.291633 -0.579411 -0.048442 0.132393 -0.010541 -0.039531 -0.325709 -0.188394 -0.541400 0.026805 -0.042295 0.180754 -0.278555 -0.549079 -0.304953 -0.229932 0.114457 0.037593 -0.075864 0.183320 -0.763514 0.378650 -0.268001 0.322435 -0.876957 -0.352211 -0.267629 -0.698861 -0.144675 1.415572 0.144288 0.857214 0.086444 -0.496424 -0.636425 -0.678148 -0.999629 0.152200 -0.299514 0.415411 0.239477 -0.006775 0.022491 -0.180948 -0.225863 0.124574 -0.409264 -0.018889 -0.143579 0.595135 -0.472939 -0.057984 -0.915670 -0.110667 0.548694 -0.067624 0.130752 -0.209554 -0.642053 -0.645141 -0.630607 0.492425 -0.215040 0.298365 -0.253621 0.073708 -0.644102 0.135227 -0.436582 0.125371 -0.003982 -0.705955 -0.720043 0.108945 -0.161912 -0.219034 0.114945 -0.544436 0.098700 0.084453 0.382214 0.170718 0.114490 -0.103057 -1.112240 -0.940540 -0.286069 -0.143517 0.674523 0.377060 0.145613 -0.401478 -0.294257 -0.730046 0.576266 -1.055046 -0.002899 0.012551 -0.065201 0.694132 -0.411685 -0.258091 -0.888076 0.276803 0.117496 -0.862350 0.882807 0.428586 -0.467171 -0.249488 -0.411906 0.140925 0.470524 0.930192 -0.426747 -0.228550 0.320813 -0.097347 -0.119093 -0.419710 0.524982 -0.366360 0.537972 -0.571994 -0.390830 0.118407 0.719885 -0.170398 0.184919 0.286730 0.201248 0.064331 0.650113 0.378672 -0.142243 -0.509050 -1.239133 0.294005 0.229831 -0.044197 0.284483 -0.678190 -0.336407 0.255219 0.075252 0.741130 0.194694 0.449502 0.557697 -0.710472 -0.643115 0.232398 -0.016914 0.192941 -0.409822 0.387337 -0.364593 -0.029320 0.110994 0.062956 -0.023102 -0.402030 -0.466487 -0.058476 0.624556 0.229780 0.011003 0.689438 0.222489 -0.420476 0.163579 -0.071710 0.324293 -0.102141 -0.347503 -0.101390 -0.218900 -0.013905 -0.308567 0.738689 -0.196714 -0.115351 0.199505 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = 3.311772 0.107652 -2.763049 5.747177 -0.085833 -1.354361 0.062901 1.062608 -1.445945 -9.441483 -5.721591 5.430017 1.226593 1.458648 0.961018 2.821597 -0.328725 0.383178 -8.743001 2.215568 3.068970 0.598338 -0.297961 -0.233801 0.943737 -2.604565 2.308690 0.761488 1.292166 5.389508 -2.829584 3.046187 4.704910 -0.919378 1.890258 3.690647 -0.861414 0.412797 -2.009876 -0.904620 6.650286 2.831085 0.356585 2.464141 0.070380 5.369065 0.139065 6.193909 0.471768 -4.119745 2.827340 1.226783 -3.429656 -0.173971 -3.391839 2.630286 3.229529 2.062521 -2.312604 1.515637 -1.479322 -0.088655 1.426049 -0.183923 5.794193 2.443748 4.514159 3.560275 5.431092 -3.393528 -0.445529 3.134633 1.358124 0.325676 4.405059 -3.479841 -4.767728 0.202966 -0.290299 -6.975908 -3.138250 -0.141226 9.458557 -5.507015 -0.958088 0.554009 0.825974 5.608855 -2.636002 1.275149 -4.139272 -0.181925 -1.910566 7.100143 1.050119 0.709598 -1.046950 1.789456 1.554854 3.414740 -0.555078 -3.826536 -2.795170 -6.861452 -2.391559 -2.451697 2.358882 3.536521 -7.207809 -1.056720 -1.165473 6.617836 -7.826445 0.217507 3.707129 2.967631 5.768766 2.617844 -4.079341 0.454722 1.389828 0.538897 3.666938 -1.862028 0.579327 -1.180647 1.577028 -0.247154 1.501560 0.463238 -7.612410 -3.323697 0.134653 -1.343991 0.669954 1.363931 3.630190 -2.802401 3.659671 -2.008211 3.444415 -7.340311 -1.210389 -2.040958 -5.395297 -1.667129 5.047645 5.601260 4.642540 -1.997479 -2.224500 -1.976601 -7.248030 -7.191989 0.326284 0.374421 1.241139 2.170124 -0.579198 3.069056 -2.790241 1.214529 2.474429 -2.302517 -1.319905 -0.686777 5.024493 -0.115430 -0.784708 -3.595139 -2.077013 -2.015871 -0.171783 5.072797 -0.744900 -8.867001 -8.588569 -3.932864 4.554698 -1.975691 0.818293 -3.132766 -0.962878 -4.290504 -0.307316 -4.674546 0.262072 0.320991 -3.652743 -5.525840 0.666799 -0.561604 -2.659139 0.217667 -4.191015 -0.919658 4.901753 1.371113 2.398408 0.432535 -0.284189 -5.241591 -3.928866 1.670092 -3.788055 4.872904 3.700295 -1.163767 -4.194357 -2.132835 -5.874861 3.683626 -3.788289 1.479636 -1.585728 -0.485399 4.790187 -3.848099 0.032153 -3.842682 1.667321 1.565452 -9.848921 6.549962 4.491199 -1.843585 0.059847 0.541825 1.121616 3.168079 3.602196 -3.432545 -3.244971 0.286327 -1.222931 0.072010 -0.375635 3.489411 -4.051524 0.525628 -3.188250 -1.896313 2.502552 2.889631 0.291111 1.112092 1.653079 -1.012435 2.713351 3.718521 3.564169 -1.370248 -4.014741 -11.397149 3.225345 -1.194579 -2.373780 0.193782 -2.512533 -2.997897 1.643866 -2.756864 5.076209 -0.946520 -1.670584 4.253538 -6.610041 -5.161364 -2.953798 -0.632394 -0.216712 -0.190587 1.001685 -1.968679 1.629647 1.685319 -0.619867 -1.074213 -3.620249 -0.409316 0.651509 4.936416 1.290195 1.494363 5.337153 1.955890 -2.168779 -1.231098 0.737279 -0.537313 -1.042666 -5.958401 -2.042826 -0.388363 1.236759 -2.405435 1.232155 -0.839851 -0.582985 1.466540 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.374488 0.007439 0.444362 0.267536 0.357175 -0.327909 0.336603 0.492816 -0.028228 -0.910993 -0.532295 0.003104 -0.132407 -0.255549 0.176018 -0.127136 0.176265 0.490882 -0.728287 0.190367 0.293988 0.424202 0.116091 -0.429489 0.104630 -0.116829 -0.525749 0.340053 0.145578 0.584277 -0.363741 -0.289982 0.423276 0.168620 0.041433 0.627262 0.657952 -0.002026 0.254349 -0.053939 0.954662 0.173558 -0.018970 0.563983 0.490063 0.581254 -0.148626 0.600353 -0.135624 -0.282101 0.230122 -0.903479 -0.401354 -0.138228 -0.464242 0.493485 0.872501 0.677857 -0.416184 0.541642 0.000657 0.037376 0.137289 -0.512774 0.217873 0.628150 -0.190298 0.196073 1.026191 -0.467887 -0.289691 0.338544 0.576969 0.163111 -0.029222 -0.390016 0.008855 -1.326002 -0.076332 -0.887536 -0.060115 -0.193767 1.039089 -0.549807 0.389795 0.884558 -0.083627 0.208620 -0.166129 -0.277663 -0.487557 0.195586 -0.057695 0.838801 -0.018984 0.045077 -0.048247 0.130655 0.367463 0.556817 0.001508 -0.173346 -0.925989 -1.351977 -0.372894 -0.141634 -0.121584 -0.192635 -0.570220 -0.311127 0.768622 0.460090 -0.818809 -0.160341 0.506304 0.383388 -0.427710 -0.032326 -0.523581 -0.015839 -0.112093 -0.125418 0.027484 -0.493933 -0.257677 -0.322338 -0.188242 -0.050787 0.157368 -0.270752 -0.379267 -0.327978 -0.212283 -0.017807 -0.105399 -0.263508 -0.185256 -0.508947 0.289119 -0.493702 0.395913 -0.665184 0.006188 -0.112530 -0.561054 -0.085495 1.091378 -0.055526 0.336769 0.197925 -0.360771 -0.504028 -0.259718 -0.800868 0.435386 -0.113963 0.700614 0.000569 -0.049306 -0.179990 -0.169574 -0.483505 -0.090159 -0.260339 0.094603 -0.155758 0.749387 -0.452368 -0.115537 -0.832986 0.250058 0.909060 -0.129591 -0.215974 -0.463910 0.003715 -0.262971 -0.623306 0.443986 -0.113771 0.087702 -0.046121 0.128646 -0.481295 0.339143 -0.351353 0.267336 -0.088605 -0.673075 -0.658740 0.148875 -0.252742 -0.118200 0.254845 -0.345620 0.034283 -0.052078 0.371459 0.032539 0.023351 0.129554 -0.918564 -0.848493 -0.482864 0.132793 0.413274 0.302051 0.311010 -0.429490 -0.147265 -0.424716 0.616722 -0.518420 -0.080348 -0.120615 -0.109779 0.765988 -0.161917 -0.106778 -0.828164 0.283656 0.311906 -0.658073 0.775276 0.347208 -0.455254 -0.469372 -0.537478 -0.076102 0.502974 0.949543 -0.386696 -0.285922 0.476731 -0.322809 -0.113490 -0.566136 0.415743 -0.067977 0.685683 -0.626200 -0.414260 0.089852 0.674672 -0.171679 0.467125 0.364283 0.459271 -0.073446 0.787058 0.165628 -0.128183 -0.403749 -0.841586 0.396549 0.600766 0.286049 0.162618 -0.476523 -0.441253 0.225669 0.420070 0.603798 0.790317 0.305554 0.524193 -0.363595 -0.550334 0.301969 0.115037 0.400389 -0.596319 0.214604 -0.309388 0.049043 0.069697 0.045336 0.360076 -0.280603 -0.835382 -0.190750 0.524189 0.272863 -0.153619 0.694115 -0.066194 -0.455277 0.303519 -0.125054 0.593133 0.049269 0.057556 -0.105947 -0.364133 0.058108 -0.225057 0.847295 -0.095380 -0.132844 0.400126 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp___GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = 3.631956 2.281424 -5.424631 12.067948 -1.587165 -1.735835 -0.266231 1.572828 -3.715944 -18.588878 -10.034328 7.347316 2.867934 4.467170 2.323365 4.512220 -1.783481 1.319854 -17.101476 3.295790 8.176548 3.361015 1.452587 0.010921 2.177278 -3.716021 4.152449 0.028641 3.473978 11.041185 -5.017718 7.039226 9.727261 -2.887236 2.103368 6.308234 -1.339690 2.272929 -4.494251 -0.906629 11.534251 4.314032 0.757805 4.276961 -1.845665 10.234272 0.615278 7.939783 -1.946760 -9.406607 3.826707 4.054938 -4.439663 -1.656466 -3.904757 4.763773 6.670274 7.313756 -3.817603 2.212092 -2.070219 -1.042694 2.902439 0.168455 9.650569 5.452795 8.155257 8.065422 9.377819 -6.095420 0.103135 4.002862 -1.370618 -1.191459 8.260379 -6.138565 -8.996777 0.225015 -2.349977 -13.875294 -7.716028 1.202863 16.165732 -10.993489 -0.442534 0.095305 1.787355 10.786014 -4.064533 2.674364 -7.315421 -2.035590 -4.091889 12.036621 1.804669 -0.192678 -1.718378 3.572134 3.239988 5.239065 -0.287922 -7.015021 -3.735445 -9.634243 -4.560307 -4.423659 5.690338 9.621507 -13.712651 -2.841762 -4.361676 10.594223 -16.417481 0.733828 6.286054 7.918248 10.921510 3.660545 -8.322035 1.565824 2.604962 -0.587396 7.747630 -4.081739 2.272134 -1.895408 0.791569 -0.386427 1.709707 1.623412 -13.498436 -7.695165 -1.135057 -4.122846 1.697274 4.081790 8.312631 -4.091251 7.274527 -4.771981 7.010513 -13.327637 -2.576363 -1.702951 -10.617016 -3.984520 6.533650 9.209886 6.080520 -6.278653 -7.180858 -3.220939 -13.572222 -11.008345 0.264584 2.403898 2.328817 6.508965 -2.000177 6.941024 -6.154424 3.817827 5.482987 -2.507781 -2.606992 -0.264259 8.612277 0.371980 -1.016277 -6.519503 -4.064731 -6.302878 -0.371030 11.449513 -1.060966 -12.037282 -18.467695 -6.100297 9.226443 -3.781727 0.991074 -7.139118 -2.187058 -8.717679 -0.613816 -10.084203 -0.631106 0.925999 -5.771090 -10.781234 2.553174 -1.080920 -5.802875 1.266450 -7.575102 -2.603819 9.691735 1.990623 4.967477 -1.000644 -0.051533 -8.866899 -6.112452 4.128007 -8.892230 7.287037 5.329321 -2.496695 -8.222485 -3.997676 -9.764038 6.818236 -2.608619 3.336024 -3.382498 1.150725 8.729815 -7.368408 0.462668 -7.829979 1.816437 3.856542 -17.230812 11.061702 5.921898 -1.705264 1.958518 3.339507 2.193642 5.620083 3.194337 -6.254084 -7.886520 0.156605 -2.617391 0.996404 -2.607296 5.155502 -8.979618 -0.381825 -4.566773 -2.111772 5.302794 4.298980 0.352106 2.378090 4.656456 -4.248101 4.870683 5.785847 8.523069 -2.877867 -5.762548 -16.241518 6.782952 -4.616666 -3.276483 -3.208672 -3.788403 -4.462448 4.471136 -3.169622 8.688217 0.015482 -4.172879 8.136412 -13.782817 -9.541427 -6.284293 -0.554814 0.060672 0.680938 -1.234060 -2.822832 4.925682 5.310141 -2.077972 -1.310195 -8.163966 0.601104 1.321619 9.887546 -0.085113 3.838266 10.362085 3.870297 -4.128488 -1.568242 2.424118 -2.060990 -4.248170 -10.500738 -3.311490 1.236276 2.580469 -5.139622 0.939258 -4.105437 -3.446599 3.037494 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 4.553966 0.502092 -4.560628 12.361120 -0.377526 -1.514518 -0.061497 1.144102 -1.803142 -18.104747 -10.533818 7.932688 2.083859 2.717205 2.818114 4.406867 -1.031956 0.533516 -15.833871 3.641446 6.915115 2.263563 0.938088 -0.526213 1.881739 -4.407017 5.365822 1.467808 2.771395 9.887467 -4.620812 6.119984 9.203143 -1.339592 3.028518 6.469442 -2.361846 1.900111 -4.689777 -1.708470 12.281174 5.266603 0.001461 4.812470 -0.143522 10.171793 1.465874 8.570105 -0.293107 -8.143197 4.330915 3.434857 -4.504831 -1.775275 -5.162412 4.518519 7.042689 4.866728 -4.736808 2.250843 -2.424807 -0.187305 2.665266 0.769184 10.228184 4.638830 8.841126 7.459223 9.129170 -6.605463 -0.554417 4.902598 1.103733 0.054432 8.299994 -6.444065 -9.786634 0.913052 -1.743754 -12.185428 -6.782202 0.561186 15.346064 -9.977675 -1.093700 0.109787 0.848312 10.303981 -4.111710 2.240270 -7.584364 -0.823112 -3.519111 12.295662 1.390521 -0.311681 -1.475441 3.654809 2.906272 5.838061 0.492858 -7.323402 -3.726135 -11.549255 -3.994043 -4.851350 6.208014 7.449747 -13.095847 -2.217206 -3.882153 10.053782 -14.702699 -0.052003 6.761426 6.726793 10.366948 0.946162 -6.556936 1.090546 3.008411 0.715959 7.539313 -3.576332 1.660152 -2.170950 2.411581 0.232552 2.192193 1.512301 -12.029224 -7.066041 -0.422394 -2.124917 1.029248 3.464712 7.296578 -4.319370 6.884614 -4.085607 7.685677 -13.500390 -1.426047 -3.304512 -8.876901 -3.419063 7.602332 9.335430 7.348054 -4.691526 -5.374088 -3.016887 -12.837866 -12.173551 -0.055061 1.990952 2.073621 4.760794 -1.342587 6.709782 -5.820200 3.697026 5.080072 -3.049904 -2.497619 -0.649002 7.186971 -0.067542 -1.918604 -5.193761 -3.512424 -4.828095 -1.168524 10.991990 -0.822578 -14.115031 -17.169737 -6.645011 8.797103 -4.203601 0.978282 -6.602795 -1.831825 -8.554608 0.195125 -9.487811 1.073343 0.835885 -6.471299 -10.506849 1.538128 -1.434012 -3.101984 1.155306 -7.483269 -2.239345 8.853370 2.213254 4.605794 1.334351 -0.206416 -9.711453 -6.148696 3.138105 -7.680802 9.196698 5.346718 -2.574861 -7.910296 -4.192555 -9.902731 6.790602 -3.598758 2.892081 -3.292043 -0.222263 8.392823 -6.605567 0.521289 -7.530738 1.970346 3.709660 -16.467512 10.462491 7.659416 -2.668414 0.631485 2.049263 2.200798 5.000146 4.923401 -6.756780 -7.088740 -0.205602 -2.810573 0.589675 -1.753293 5.365822 -7.922328 0.028708 -5.744100 -2.997100 5.236122 4.052310 0.298005 1.993615 4.233529 -3.078741 4.463127 6.707645 7.624743 -1.993133 -7.341564 -18.760683 6.250958 -2.667860 -3.444394 -1.510853 -3.398327 -5.462228 2.706119 -3.073739 8.952302 1.069493 -3.990988 8.323402 -12.503445 -9.396991 -6.495809 -1.320387 -0.518882 0.042617 0.025943 -2.481966 3.526563 3.824705 -2.016211 -1.619352 -7.167389 0.199665 1.210823 10.085606 0.932287 2.658022 9.577605 3.991115 -4.706179 -1.848827 2.280829 -2.517157 -2.347021 -11.247487 -4.145857 0.245707 2.371133 -4.734167 0.884865 -2.766200 -1.684195 1.689621 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = 0.504631 0.018542 -0.363585 0.710796 0.128719 -0.269460 0.116758 0.227447 -0.141899 -1.277248 -0.868779 0.434065 0.134031 -0.118561 0.327030 0.374924 -0.046419 0.250001 -0.668793 0.313557 0.367601 0.063232 -0.183606 -0.073346 0.065991 -0.356925 -0.391123 0.107271 0.076731 0.739427 -0.340507 0.338740 0.597979 -0.055715 -0.015589 0.490319 0.078995 0.012607 0.112547 0.053120 0.950133 0.210846 0.036387 0.405881 0.159516 0.689123 -0.530486 1.277468 -0.330836 -0.418491 0.753863 -0.322827 -0.398918 0.155229 -0.517199 0.529087 0.747757 0.208664 -0.237272 0.316856 -0.477020 0.111325 0.192843 -0.322139 0.779851 0.835830 0.436065 0.509218 1.008857 -0.400466 -0.087685 0.460687 0.311737 -0.018465 0.397512 -0.201694 -0.298130 -0.384191 -0.112955 -0.670397 -0.194714 -0.234179 1.692199 -0.770726 -0.238182 0.461971 0.373211 0.769798 -0.424998 0.268198 -0.515805 0.164417 -0.284165 0.981012 0.161305 0.277888 -0.579431 0.125184 0.160150 0.422942 -0.232971 -0.291063 -1.042011 -1.234004 -0.770785 -0.206655 0.116488 0.198810 -1.315123 -0.090452 0.537132 0.800064 -1.130846 0.003857 0.509192 0.476768 0.715387 0.928676 -1.063430 -0.039711 0.231875 0.061056 0.179450 -0.091744 0.001937 -0.786540 0.132641 -0.106616 0.159970 -0.177174 -1.079748 -0.281605 -0.101657 -0.269984 0.170436 0.137469 0.413969 -0.571943 0.444180 -0.246234 0.368657 -1.245582 -0.332704 -0.396924 -1.030352 -0.113983 1.243471 0.864404 0.898126 0.028306 -0.468934 -0.594503 -1.032890 -1.088072 -0.083679 -0.251705 0.439747 0.082065 -0.026655 0.135445 -0.251958 0.103196 0.306835 -0.438807 -0.035050 -0.173292 1.259871 -0.273706 -0.165419 -0.895923 -0.342053 0.149515 -0.209410 0.384075 -0.053630 -0.706336 -1.013042 -0.612121 0.562612 -0.223155 0.268978 -0.453120 0.072055 -0.843701 0.017981 -0.428346 0.009584 0.153431 -0.686295 -0.780698 0.103875 0.019119 -0.629199 -0.026932 -0.593126 -0.021046 0.680452 0.250449 0.355197 0.173295 -0.209628 -0.843377 -0.903470 -0.114033 -0.383182 0.700072 0.903837 0.009090 -0.434982 -0.282490 -1.046353 0.694333 -0.933638 0.066734 -0.100936 -0.051414 0.702046 -0.620677 -0.444829 -0.833092 0.211646 -0.047085 -1.328871 0.896691 0.493325 -0.420513 -0.159305 -0.456016 0.244661 0.459490 0.851184 -0.402714 -0.129058 0.142882 -0.037564 -0.096830 -0.161142 0.585544 -0.580576 0.318655 -0.477328 -0.274760 0.348353 0.712788 -0.141423 0.217332 0.167227 0.150456 0.468530 0.445066 0.488924 -0.535027 -0.426761 -1.512802 0.283659 -0.216525 -0.406524 0.164364 -0.593577 -0.416258 0.180592 -0.274192 0.797591 -0.146588 0.186213 0.579499 -0.734551 -0.705407 -0.050861 0.136288 0.037913 -0.390852 0.369078 -0.263136 0.058703 0.350144 0.048046 0.048912 -0.782953 -0.606991 -0.085190 0.804718 0.115381 0.019360 0.740342 0.321086 -0.331670 -0.097593 -0.042196 0.165718 -0.064708 -0.677903 -0.182223 -0.180911 0.029447 -0.367418 0.604094 -0.079602 -0.152612 0.384974 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = 0.958547 -0.086134 -0.224374 1.461202 0.260631 -0.510652 0.097447 0.598190 -0.161301 -2.637426 -1.738491 1.177988 0.070796 0.067586 0.521586 0.501457 0.216043 0.319653 -2.643618 0.803759 0.869086 0.405730 0.071502 -0.297766 0.383200 -0.702374 0.326018 0.292989 0.387790 1.468571 -0.970196 0.592362 1.241256 0.000000 0.798483 1.158585 -0.168993 -0.066178 -0.220756 -0.297853 2.195022 0.910728 0.128535 0.987467 0.503147 1.524010 -0.008868 1.415899 0.560358 -1.054452 0.681285 -0.263404 -0.959326 0.010385 -1.189104 0.907221 1.042150 0.586656 -0.879586 0.576007 -0.324269 0.008240 0.353208 -0.547216 1.580482 0.630290 0.943688 0.920077 1.740440 -0.874496 -0.233589 0.878671 0.921183 0.359456 0.920762 -0.994417 -1.080687 -0.922994 -0.256394 -2.103107 -0.560275 -0.267136 2.541473 -1.503771 0.204155 0.553822 -0.129602 1.376766 -0.606458 -0.045995 -1.274505 0.108626 -0.348085 1.590063 0.149238 0.098249 -0.096536 0.494828 0.404204 1.096133 -0.072921 -1.042470 -1.024991 -2.564083 -0.607636 -0.593601 0.622464 0.514090 -1.856505 -0.161815 -0.021694 1.867184 -2.099024 -0.108242 1.018864 0.666190 0.485007 0.037862 -0.973368 -0.147714 0.227118 0.379667 0.798173 -0.808038 -0.062875 -0.613211 0.230843 0.001679 0.679014 -0.067542 -1.218022 -1.058834 -0.121994 0.079858 -0.116437 0.161493 0.702909 -0.882127 1.028486 -0.618815 1.093227 -1.811509 -0.194740 -0.802066 -1.064794 -0.405979 2.052320 1.214036 1.265907 -0.150447 -0.534757 -0.618642 -1.751892 -1.850536 0.466234 -0.131676 0.696393 0.507097 -0.062933 0.626240 -0.616543 -0.062697 0.269407 -0.781361 -0.225651 -0.325237 0.886298 -0.281222 -0.244028 -1.345733 -0.261481 0.320209 -0.327887 0.823610 -0.454524 -1.952670 -1.923602 -1.268175 1.241732 -0.556456 0.373773 -0.672683 0.052521 -0.916007 0.183672 -1.356119 0.140587 -0.116792 -1.213794 -1.550498 -0.009026 -0.354678 -0.304995 0.102507 -1.044763 -0.085765 1.084052 0.831227 0.498027 0.291799 -0.010870 -1.743733 -1.326301 -0.010977 -0.719602 1.400080 0.827314 -0.234779 -1.445280 -0.584904 -1.412783 1.252194 -1.137641 0.261209 -0.430730 -0.443776 1.453989 -0.839014 -0.004871 -1.303717 0.526962 0.528379 -2.968267 1.586838 1.229183 -0.795112 -0.264872 -0.432100 0.348605 0.959626 1.461743 -0.792843 -0.651287 0.237665 -0.492796 -0.032163 -0.616383 1.088505 -0.872798 0.503249 -1.165703 -0.760351 0.769226 0.875559 0.053930 0.449147 0.588976 0.311728 0.647144 1.350790 0.937569 -0.216061 -1.399534 -3.119856 0.859159 0.931736 -0.106976 0.334260 -0.805048 -1.050193 0.215603 -0.425833 1.502465 0.469480 0.004777 1.247547 -1.503449 -1.446207 -0.522192 -0.065707 0.081999 -0.385376 0.438498 -0.686583 0.270226 0.287057 0.017602 -0.021555 -0.795194 -0.709118 0.107968 1.302854 0.745205 0.312412 1.484504 0.546664 -0.962039 -0.078032 0.163658 0.048688 -0.258660 -1.328389 -0.681314 -0.379508 0.203151 -0.662759 0.716901 -0.227885 0.107398 0.284458 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.796262 0.259582 0.544117 0.405632 0.374147 -0.701055 0.522008 1.131565 -0.452473 -1.675588 -1.346579 -0.483471 -0.122665 -0.538863 0.623942 -0.031010 0.025805 0.499174 -2.115927 0.483754 0.837809 0.561634 0.139934 -0.651692 0.256690 -0.363452 -1.575802 0.634499 -0.013045 1.042350 -0.594419 -0.219543 0.731890 0.317261 0.119524 0.981121 0.258479 -0.058833 1.037577 0.275207 1.559866 0.599600 -0.341402 0.506481 0.853666 0.999448 -0.809418 0.948099 -1.285604 -0.527669 0.717484 -1.570025 -0.821645 0.108908 -0.569470 0.636430 1.934445 1.157606 -0.501885 0.920143 -0.699918 0.053505 0.233585 -0.881801 0.837466 1.254899 0.126760 0.294118 1.692907 -0.560789 -0.307502 0.505804 0.622265 -0.269891 -0.577810 -0.510756 0.122618 -2.562336 0.132311 -2.286343 -0.379596 -0.228639 2.067250 -0.869588 0.466243 1.352390 0.205901 0.632387 -0.632922 -0.295715 -0.653705 0.318071 -0.461154 1.749959 -0.173285 0.238507 -0.094506 0.387002 0.781391 0.921826 -0.431783 -0.099200 -2.106707 -2.433016 -0.673527 -0.017557 -0.058245 -0.164776 -1.349262 -0.460369 1.715071 0.617803 -1.452281 -0.140545 0.910146 0.864228 -0.750451 0.643433 -1.640904 -0.137441 -0.351741 0.013153 0.283901 -0.599190 -0.222703 -1.170600 -0.091280 0.022629 0.247040 -0.432871 -1.298522 -0.404269 -0.139429 -0.758251 -0.108108 -0.115026 -0.096162 -0.571408 0.534960 -1.001500 0.755494 -1.689142 0.294571 -0.479175 -1.219811 0.061939 1.298950 0.961790 -0.057647 0.457559 -0.502265 -0.658728 -0.841944 -1.290378 0.327224 -0.126092 1.430738 -0.508651 -0.089809 -0.280611 -0.197576 -0.521643 -0.196036 -0.474132 0.236888 -0.612013 2.422380 -0.408634 -0.343807 -1.206895 0.148398 1.324086 -0.654830 -0.200156 -0.598428 0.434285 -0.893904 -1.126967 0.780117 -0.091320 0.026567 -0.458658 0.517655 -1.242568 0.695831 -0.527738 0.351864 0.003623 -1.067172 -1.051915 0.094554 -0.160852 -0.533707 0.018585 -0.490867 -0.223000 0.703066 0.622866 0.324915 0.071647 0.138973 -1.230662 -1.515548 -0.685833 0.111648 0.754690 1.027169 0.260906 -0.683093 -0.079039 -1.043609 1.367610 -0.265659 -0.171720 -0.556071 -0.294148 1.446650 -0.338669 -0.500120 -1.380119 0.312008 0.147352 -1.280039 1.554632 0.574886 -0.742529 -0.762834 -1.278480 0.022952 0.886416 1.503118 -0.429677 -0.247755 0.420514 -0.532268 -0.220895 -0.659928 0.894051 -0.466696 1.043184 -0.899153 -0.607159 0.438595 1.180099 -0.242900 1.100854 0.293849 0.875123 0.324273 1.021977 0.250245 -0.887629 -0.508362 -1.626409 0.529959 0.687615 0.169447 -0.165934 -0.575758 -1.124425 -0.006820 0.786748 1.166243 1.743253 0.193070 0.781720 -0.487993 -0.975595 0.043080 0.699856 0.334288 -1.067178 0.008127 -0.315635 0.178339 0.617252 0.139772 1.089292 -1.200524 -2.083500 -0.564486 1.084556 0.381364 -0.569733 1.179066 0.060926 -0.592820 0.084633 -0.103295 0.899256 0.271621 0.324780 -0.375670 -0.756534 0.029257 -0.364277 1.350742 0.186510 -0.152339 0.929558 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp___GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = 3.272690 0.469387 -1.645506 8.263966 0.022862 -1.232689 0.248468 2.876276 -1.516694 -13.508998 -7.882594 5.832003 1.002741 2.874569 1.967439 1.719355 0.387943 0.771346 -14.588402 2.817367 5.364914 2.721224 1.327915 -0.339394 1.838311 -3.019659 3.762349 1.177178 2.650353 7.906783 -3.970401 4.046960 6.754573 -1.194096 3.319243 5.471239 -0.493912 0.463330 -3.357810 -1.692845 9.796512 4.509398 0.093816 4.665920 0.213890 7.881199 1.411142 4.650692 1.794744 -6.519614 1.622543 1.044787 -4.208974 -1.741145 -4.284848 3.545696 4.369391 4.795667 -3.644756 2.276190 -1.123285 -1.334141 1.850856 -1.241625 6.864850 2.453007 5.499303 5.484731 7.240533 -5.017604 -0.903747 3.946952 1.396721 1.663711 4.584822 -4.765895 -6.543271 -3.138399 -1.651483 -10.925769 -5.626606 -0.604208 10.686907 -7.454551 1.067022 0.698968 -1.134492 6.779264 -2.839658 0.495126 -6.322492 -1.456826 -1.359274 6.819608 0.864776 -0.555672 0.920758 2.524861 2.456511 5.090016 0.417278 -5.764098 -2.483147 -9.024438 -1.616539 -3.183881 4.035401 5.480897 -8.047472 -1.456124 -3.498600 8.665585 -10.728177 -0.433737 4.546714 4.580750 4.867401 0.240586 -4.211125 0.076917 2.120891 0.244260 6.044572 -4.738526 1.186341 -0.703359 0.654527 -0.091360 2.309913 1.262769 -6.811436 -6.503877 -0.358917 -0.618889 0.192639 1.597430 4.582598 -3.238850 5.363627 -3.541778 5.998852 -8.168152 -1.286936 -1.831340 -5.176732 -2.896968 7.715254 5.932684 4.890594 -2.898624 -4.141555 -1.772036 -8.306912 -8.033757 2.086749 1.719489 2.355666 4.354493 -1.172930 4.950259 -4.208094 1.205114 2.017619 -2.036095 -1.576005 -0.049907 2.221608 0.170033 -0.326060 -5.288053 -1.182169 -2.079551 -0.353037 6.840376 -1.970467 -10.031201 -11.240924 -5.028171 6.647689 -2.766696 0.454194 -3.747690 -1.410911 -4.355301 0.071188 -7.556332 -0.081992 -0.426293 -5.494791 -7.893099 1.489056 -1.792649 -2.129840 1.739208 -4.933929 -1.577183 5.799418 3.815858 2.947292 -0.119352 0.301201 -7.047484 -4.712541 1.708279 -5.283712 6.964667 2.129882 -2.104839 -6.960817 -2.918355 -6.023443 6.073167 -2.391831 2.229938 -2.679946 -0.963833 6.609139 -4.262826 0.749402 -6.168902 2.288577 4.152300 -13.596831 7.346560 5.228585 -2.118155 -0.010866 1.312514 0.957329 4.698622 3.943916 -4.222727 -5.648656 0.935667 -1.944485 0.660550 -3.409425 3.941895 -4.725762 0.261052 -4.734604 -3.047358 4.062514 2.813564 0.605269 1.833396 4.030861 -0.671287 2.833249 6.025952 5.959102 -0.769853 -5.772629 -12.508461 5.510532 2.717359 -0.896057 -0.880495 -3.832080 -4.423269 2.606006 -2.585140 6.372535 2.049409 -2.179188 6.342767 -8.652605 -6.860297 -4.389043 -0.906109 0.478615 0.161943 0.479857 -2.921404 3.466624 2.405661 -1.450994 -0.901392 -4.097358 -0.502092 1.108685 5.795026 1.897505 3.270506 7.602317 2.649460 -4.291500 -0.688552 1.960373 -1.663136 -2.749632 -7.365872 -2.795382 -0.131460 1.829438 -3.261603 0.913463 -2.005489 -1.156011 1.491953 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.249166 -0.108028 0.153700 0.290573 0.129205 -0.174062 0.166769 0.277384 0.039883 -0.772421 -0.462652 -0.044908 -0.047282 -0.097439 0.239607 0.030629 0.132004 0.340648 -0.604527 0.160466 0.274679 0.263964 0.098212 -0.149610 0.095699 -0.130013 -0.424648 0.112587 0.140742 0.491446 -0.319013 -0.018247 0.386717 0.017713 0.013051 0.411499 0.338874 0.002221 0.173472 0.038296 0.706173 0.081846 0.025112 0.341610 0.229072 0.466591 -0.190889 0.646174 0.109125 -0.288979 0.384013 -0.753204 -0.241840 0.029476 -0.356037 0.365737 0.599316 0.474575 -0.295221 0.344664 -0.083282 0.097664 0.113359 -0.419520 0.311153 0.489229 0.001794 0.225059 0.679426 -0.293125 -0.084282 0.162261 0.326682 0.071990 0.057410 -0.338269 0.050075 -1.030920 -0.094410 -0.568397 -0.017953 -0.141055 0.779328 -0.518155 0.230671 0.598960 -0.074400 0.308478 -0.135193 -0.051144 -0.406026 0.118059 0.053241 0.481181 0.006622 -0.018901 -0.130997 0.110829 0.153704 0.295428 0.029663 -0.178508 -0.781661 -1.000444 -0.430799 -0.111749 -0.001382 -0.017292 -0.630355 -0.117552 0.530231 0.278106 -0.721309 -0.038624 0.323518 0.314767 -0.203996 0.159389 -0.448113 -0.079886 -0.030397 0.070952 0.083580 -0.346709 -0.077161 -0.501419 -0.099593 0.035701 0.156590 -0.203338 -0.173085 -0.262902 -0.155656 0.059879 -0.075082 -0.043151 0.047432 -0.318979 0.297210 -0.309665 0.302477 -0.576452 -0.114034 -0.162767 -0.385482 -0.104988 1.094914 0.123621 0.349003 0.145275 -0.425227 -0.352454 -0.379083 -0.591591 0.193868 -0.133879 0.508381 0.115630 -0.041389 -0.032908 -0.095111 -0.195192 -0.122781 -0.255942 0.013832 -0.098444 0.319299 -0.292387 -0.113450 -0.698497 0.094454 0.600836 -0.252647 -0.047880 -0.244775 -0.040723 -0.332955 -0.430754 0.384133 -0.132191 0.211460 -0.098909 0.142093 -0.450923 0.197062 -0.326054 0.020677 -0.012911 -0.530792 -0.543481 0.096353 -0.155472 -0.087941 0.156970 -0.327523 0.050006 0.038721 0.411025 0.112834 0.065428 0.040698 -0.734341 -0.667471 -0.353773 -0.114904 0.381430 0.249472 0.119191 -0.330167 -0.161271 -0.369601 0.479851 -0.531654 -0.005921 -0.084982 -0.106749 0.495729 -0.201860 -0.130288 -0.631234 0.189268 0.193412 -0.729475 0.536955 0.266649 -0.342626 -0.201775 -0.444224 0.100129 0.344006 0.650971 -0.220103 -0.121793 0.246990 -0.178245 -0.045131 -0.439166 0.346245 -0.169084 0.343374 -0.411365 -0.227132 0.170765 0.455650 -0.085870 0.267528 0.320249 0.346151 0.042345 0.492449 0.157762 -0.183949 -0.274319 -0.801108 0.284209 0.660432 0.154745 0.206329 -0.492858 -0.215754 0.134989 0.212251 0.458710 0.543468 0.365728 0.416113 -0.336794 -0.435295 0.128938 0.086197 0.190821 -0.362066 0.176169 -0.209556 0.038797 0.123919 0.086079 0.211665 -0.267129 -0.653242 -0.063476 0.444696 0.173183 -0.027997 0.515100 0.028882 -0.373926 0.163931 -0.085311 0.282617 -0.022643 0.005793 -0.086215 -0.156808 0.035601 -0.267661 0.526217 -0.172384 -0.108576 0.202448 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp___GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 2.613081 -0.255460 -1.404300 4.590958 0.241041 -1.040781 0.243939 1.250647 -0.617881 -7.896195 -4.608321 3.246080 0.806746 1.078328 1.108659 2.094871 -0.027149 0.692621 -7.126291 1.812966 2.791567 1.148927 0.507289 -0.657994 1.015098 -2.018528 1.611755 0.432480 1.312338 4.554823 -2.453303 2.174229 3.965714 -0.559072 1.664325 3.265844 -0.188220 0.358938 -1.516996 -0.704876 5.785462 2.418863 0.181258 2.305761 0.248739 4.496707 0.380234 4.422267 0.107758 -3.437690 2.195894 -0.363791 -2.715819 -0.388944 -2.860852 2.476971 3.215829 2.345508 -2.141380 1.441308 -0.762851 0.034444 1.154258 -0.521099 4.406878 2.000399 3.225018 3.047240 4.678780 -2.925204 -0.436158 2.434823 1.261282 0.350448 3.543042 -3.374254 -3.553748 -1.059735 -0.503015 -5.525503 -2.289701 -0.293001 7.091062 -4.649668 0.076056 1.183293 0.092757 4.342920 -1.738344 0.562726 -3.487818 -0.067169 -1.146181 5.478815 0.484939 0.320442 -0.566806 1.597563 1.332363 2.826247 0.317390 -3.109846 -2.554410 -5.719206 -1.786757 -2.032353 2.139185 2.778688 -5.607634 -0.937636 -0.963056 4.715979 -6.565774 0.246040 3.051019 2.804991 4.008713 0.675451 -2.738027 0.291896 0.947896 0.454326 2.566422 -2.334737 0.284007 -1.188224 0.954798 0.031661 1.373215 0.073498 -5.156281 -2.965922 -0.294357 -0.574010 0.299408 1.146045 2.769876 -2.660730 3.005215 -2.050395 3.099874 -5.739902 -0.904058 -1.644111 -4.092365 -1.494681 4.989745 3.203232 3.520587 -1.384951 -2.320597 -1.684087 -5.397247 -5.681641 0.648527 0.422879 1.502904 2.195630 -0.485571 2.347546 -2.299253 0.707816 1.402343 -1.836364 -0.954394 -0.466724 3.041169 -0.484515 -0.736261 -3.196140 -1.152108 -0.577460 -0.331449 3.815436 -0.862811 -5.864141 -6.704200 -3.427543 3.844899 -1.721795 0.848982 -2.393554 -0.471759 -3.687041 0.145439 -4.150303 0.751969 0.185464 -3.221130 -4.727099 0.640257 -0.782533 -1.227900 0.694134 -3.237195 -0.614814 3.033942 1.502938 1.631416 0.434794 0.063476 -4.833700 -3.569069 0.842497 -2.887396 4.116292 2.031978 -0.830668 -3.283542 -1.809913 -4.186340 3.220895 -2.655039 1.116698 -1.401440 -0.218850 3.978305 -2.846559 0.212677 -4.006362 1.381165 1.635488 -7.136435 4.997337 3.301472 -1.639378 -0.142305 0.061197 0.911541 2.571495 3.179444 -2.527844 -2.870081 0.566077 -1.276588 0.061126 -1.369577 2.749036 -3.120353 0.829592 -2.883046 -1.684236 1.973599 2.436635 0.063009 1.374223 2.000080 -0.453903 1.461232 3.473964 3.080340 -0.816014 -3.657428 -8.524410 2.736456 0.305955 -1.024519 -0.132438 -2.253575 -2.443259 1.488975 -0.933824 4.166945 1.290375 -0.673853 3.709222 -5.346484 -4.298529 -1.974354 -0.409317 0.242491 -0.497985 0.175171 -1.630157 1.434292 1.381064 -0.431682 -0.367490 -2.876448 -0.719949 0.455946 4.409867 1.020988 1.224824 4.526560 1.594997 -2.035817 -0.472833 0.767208 -0.252284 -0.855007 -4.057965 -1.741048 -0.305367 0.878988 -2.110199 1.360440 -1.049588 -0.674799 1.015501 -PE-benchmarks/cutting-a-rod.cpp__main = 0.390178 0.097997 0.370439 0.318130 0.165148 -0.251693 0.352398 0.642858 -0.061652 -1.184767 -0.850549 -0.298023 -0.055666 -0.149515 0.383131 -0.026098 0.058014 0.554255 -1.227376 0.155309 0.597590 0.504497 0.367090 -0.381506 0.170214 -0.152851 -0.985091 0.212283 0.171993 0.791150 -0.410179 -0.093809 0.593385 0.142094 -0.146137 0.627251 0.383572 -0.002756 0.457468 0.023834 0.949824 0.247416 -0.137661 0.446851 0.273796 0.686582 -0.415904 0.695458 -0.385429 -0.446441 0.438344 -1.295308 -0.495869 0.048077 -0.321991 0.519235 1.151654 0.925265 -0.255131 0.580082 -0.221334 0.102886 0.164081 -0.819635 0.346490 0.882335 -0.050596 0.280007 1.044104 -0.501189 -0.118062 0.193207 0.284466 -0.088554 -0.187704 -0.483691 0.174433 -1.765438 -0.054004 -1.327762 -0.189257 -0.182265 1.299822 -0.734305 0.414716 0.967358 0.007487 0.439599 -0.236526 -0.068054 -0.497850 0.205096 -0.078951 0.892628 -0.020927 -0.022614 -0.177553 0.179810 0.404702 0.450064 -0.029069 -0.061710 -1.362692 -1.485983 -0.466614 -0.080070 0.035983 0.067574 -0.887552 -0.227811 1.024415 0.368296 -1.113784 -0.110082 0.571046 0.666870 -0.567084 0.333725 -0.874961 -0.080605 -0.142366 -0.006747 0.154358 -0.627984 -0.103139 -0.678680 -0.277050 0.015187 0.171057 -0.299822 -0.502027 -0.442725 -0.237412 -0.234523 -0.011694 -0.011219 0.066331 -0.320116 0.406351 -0.628457 0.466711 -0.946881 0.042669 -0.115523 -0.669842 -0.126269 1.292780 0.337214 0.115161 0.236871 -0.518986 -0.550309 -0.445398 -0.725190 0.280019 -0.033149 0.973434 0.013804 -0.091450 -0.096064 -0.182139 -0.250870 -0.279546 -0.291359 0.103884 -0.155637 1.110508 -0.408090 -0.192551 -0.997613 0.177430 0.910295 -0.523417 -0.130577 -0.350038 0.407708 -0.542252 -0.712307 0.603599 -0.158191 0.167623 -0.293938 0.340500 -0.677916 0.357138 -0.401323 0.104840 0.168723 -0.847934 -0.828851 0.177926 -0.173596 -0.315268 0.298835 -0.414847 -0.053931 0.254728 0.584902 0.176727 0.022418 0.124425 -0.966860 -0.979226 -0.598098 -0.150951 0.448445 0.492255 0.177928 -0.570088 -0.179829 -0.509142 0.860132 -0.367512 -0.034936 -0.442977 -0.013699 0.805597 -0.264420 -0.194879 -1.058074 0.215004 0.265490 -0.997075 0.857074 0.288585 -0.392905 -0.362933 -0.784290 0.067211 0.550046 0.932933 -0.342368 -0.291833 0.355673 -0.411713 -0.087911 -0.652342 0.524927 -0.315348 0.521492 -0.528641 -0.280723 0.247938 0.693601 -0.177354 0.698675 0.569715 0.620038 0.188890 0.649761 0.245138 -0.569903 -0.343682 -1.044306 0.448650 0.920582 0.263557 0.038434 -0.614842 -0.485476 0.250399 0.551341 0.683240 1.165835 0.411277 0.593023 -0.369773 -0.606112 0.202555 0.318107 0.350595 -0.602815 0.029918 -0.209868 0.140328 0.405614 0.023915 0.605527 -0.672546 -1.231363 -0.222592 0.843073 0.202069 -0.136352 0.813407 0.046276 -0.517183 0.241648 -0.172330 0.504545 -0.067926 0.273542 -0.060325 -0.212352 0.025120 -0.361602 0.845613 -0.112124 -0.343736 0.429978 -PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = 0.428622 -0.234845 0.078878 1.159701 0.183641 -0.092758 0.087624 0.225686 -0.110919 -1.869425 -1.145948 0.886837 -0.028038 0.332729 0.282800 0.156391 0.270448 0.064700 -2.029987 0.369866 0.564030 0.182680 0.287501 -0.076586 0.230555 -0.611844 0.881631 0.481378 0.314683 1.034270 -0.606261 0.454743 0.906764 0.124257 0.723991 0.888934 -0.056516 -0.023356 -0.647843 -0.359229 1.554635 0.611500 0.041386 0.665371 0.221740 1.168500 0.555699 0.486550 1.020460 -0.792366 0.227511 0.014885 -0.634248 -0.301162 -0.935666 0.411048 0.396059 0.438340 -0.670915 0.379466 -0.148772 -0.091348 0.189802 -0.245552 1.072532 -0.053184 0.811232 0.624456 0.924657 -0.896807 -0.293139 0.734634 0.571376 0.477849 0.558099 -0.726151 -0.976536 -0.718102 -0.190247 -1.465741 -0.676535 -0.060371 1.227739 -0.869671 0.026469 0.173984 -0.569317 0.845087 -0.335514 -0.059420 -1.074264 -0.067174 0.068321 0.790593 0.268587 -0.224007 0.398335 0.342119 0.363400 0.935143 0.151880 -0.914395 -0.249966 -1.741089 -0.108746 -0.537827 0.693595 0.422603 -0.889024 -0.116711 -0.348232 1.353146 -1.251908 -0.167905 0.742963 0.493930 0.130092 -0.752390 -0.153529 -0.079814 0.374089 0.310240 1.018023 -0.757211 0.113657 0.058299 0.326802 -0.027550 0.557189 0.107113 -0.411840 -1.024450 0.047180 0.340693 -0.109276 -0.020175 0.440872 -0.281008 0.753339 -0.404272 1.001610 -0.960631 0.179421 -0.472866 -0.304458 -0.394028 1.399792 0.773668 0.830286 -0.205309 -0.361410 -0.073454 -0.973248 -1.385036 0.466823 0.285582 0.328501 0.522900 -0.140746 0.758582 -0.551172 0.042698 0.184626 -0.406922 -0.266946 0.037810 -0.480730 0.046678 -0.169950 -0.725364 0.082582 -0.001306 -0.139757 0.824169 -0.382680 -1.778231 -1.226448 -0.906915 0.902085 -0.479698 0.030684 -0.315067 -0.228960 -0.438909 0.185821 -1.066854 0.104219 -0.100317 -0.968270 -1.115421 0.043003 -0.407529 0.060732 0.363529 -0.729827 -0.161474 0.537111 0.493900 0.388198 0.214018 0.101869 -0.987528 -0.632944 0.076855 -0.597665 0.974610 0.175270 -0.253479 -1.162622 -0.507581 -0.683655 0.793622 -0.436731 0.283893 -0.360096 -0.500067 0.871143 -0.460181 0.332025 -0.552719 0.431220 0.763101 -2.145662 0.936147 1.098016 -0.451512 -0.271093 0.089981 0.041138 0.625646 0.893743 -0.663309 -0.613517 0.143928 -0.277576 0.083499 -0.342698 0.622354 -0.375527 -0.003171 -0.910772 -0.693907 0.508096 0.399613 0.188586 0.243171 0.639681 0.284614 0.292987 1.088681 0.609299 0.159996 -1.016438 -2.189760 0.816892 1.070916 -0.023211 0.399838 -0.561397 -0.714377 0.235832 -0.481832 0.945159 0.395415 -0.352103 0.989432 -0.873598 -0.943476 -0.672278 -0.408127 0.033725 -0.105051 0.358385 -0.504710 0.312392 -0.026868 -0.233936 -0.221390 -0.115184 -0.062142 0.192614 0.716291 0.624985 0.516838 1.035033 0.295491 -0.784072 -0.156455 0.252293 -0.280175 -0.038559 -1.127827 -0.565135 -0.158229 0.298621 -0.356433 0.020000 -0.202672 0.090996 0.064882 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 0.671506 0.461971 -1.089876 2.634331 -0.516085 -0.299175 -0.032144 0.189268 -1.128627 -4.248098 -2.719716 1.396795 0.612705 1.130901 0.628992 1.047239 -0.411588 0.172871 -4.452740 0.598168 1.893268 0.391991 0.540626 0.041973 0.455923 -1.102637 0.837214 0.361500 0.642579 2.536568 -1.156562 1.594037 2.190366 -0.405502 0.617626 1.528322 -0.797555 0.555317 -0.930874 -0.123626 2.580614 1.030460 0.031600 0.554802 -0.414841 2.390523 0.292255 1.407030 -0.206192 -2.105718 1.061590 0.869823 -1.186658 -0.280698 -0.974866 0.800548 1.699255 1.652529 -0.812530 0.621206 -0.766248 -0.134327 0.547472 -0.201440 2.441333 0.860344 2.125080 1.548415 1.782851 -1.573344 -0.046964 0.953147 -0.305642 -0.508256 1.357054 -1.527191 -2.017907 -0.414059 -0.311837 -3.919610 -1.793901 0.613905 3.632001 -2.326503 -0.438052 0.026375 0.047373 2.412929 -0.998136 0.578602 -1.656183 -0.391507 -1.002607 2.869354 0.748349 -0.262317 0.010664 0.965587 1.006622 1.426281 -0.315032 -1.499118 -1.104623 -2.920459 -0.931122 -0.965988 1.621088 2.102213 -2.897726 -0.710777 -0.417778 2.326135 -3.513403 0.225300 1.721288 1.915742 1.505229 0.188490 -1.986110 0.386193 0.459973 0.224195 2.359854 -0.924673 0.602515 -0.286637 0.498137 -0.174132 0.612758 0.343377 -2.873050 -1.886189 -0.141054 -0.967784 0.323144 0.764948 1.804099 -0.263981 1.743066 -1.078817 1.791790 -3.232751 0.238269 -0.636861 -2.124423 -0.798346 1.045283 2.650280 0.981576 -1.387021 -1.292435 -0.362778 -3.084654 -2.693558 0.160713 0.951150 0.767121 1.100093 -0.522593 1.772504 -1.308511 0.943986 1.148275 -0.678858 -0.589781 -0.055633 2.156484 0.389689 -0.529444 -1.408265 -0.778986 -1.398479 -0.495965 2.504095 -0.301591 -2.675069 -4.004114 -1.628956 2.122017 -0.904965 0.097762 -1.515727 -0.415577 -2.056964 0.118945 -2.304176 -0.190942 0.405755 -1.495884 -2.439983 0.291047 -0.207015 -1.300584 0.326081 -1.804460 -0.786430 2.485664 0.324726 1.316105 -0.091032 0.237856 -1.713775 -1.292170 0.844731 -2.144964 1.354042 1.542676 -0.653701 -2.147090 -0.857419 -2.144508 1.481562 -0.056393 0.725951 -1.228674 -0.059463 1.973012 -1.571477 0.400723 -1.273595 0.381414 1.034464 -4.512273 2.655438 1.781631 -0.304430 0.290071 0.682656 0.342122 1.218343 0.894386 -1.486866 -1.580073 -0.191303 -0.855189 0.277711 -0.141938 1.399044 -1.916373 -0.394976 -1.061427 -0.544812 1.194514 0.945655 0.374154 0.976028 1.074206 -0.466591 1.289397 1.307295 1.555330 -0.929918 -1.279464 -4.348293 1.686265 -0.625878 -0.876188 -0.367138 -0.588887 -1.258789 0.805791 -0.700840 1.980691 0.360837 -1.389193 1.900660 -2.559810 -2.102929 -1.791101 -0.193144 -0.100619 -0.037203 -0.297918 -0.626791 1.091712 1.144650 -0.620415 -0.030770 -1.664743 -0.255087 0.197859 2.356173 0.312540 0.917738 2.365117 0.685544 -1.104121 -0.686920 0.448810 -0.541090 -0.444024 -2.190327 -0.992492 0.149778 0.693621 -1.032044 -0.145470 -0.727937 -0.665590 0.855616 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.391494 -0.061148 0.289531 0.234754 0.171102 -0.209205 0.204786 0.491079 -0.059407 -0.961727 -0.741007 -0.336630 -0.091362 -0.171015 0.434937 0.037744 0.211128 0.313815 -1.064932 0.205881 0.424325 0.291258 0.141850 -0.141305 0.167525 -0.203389 -0.851950 0.164448 0.097515 0.580166 -0.414682 0.011237 0.446441 0.073197 0.084840 0.478154 0.147707 -0.076874 0.502498 0.113514 0.919024 0.135990 -0.006361 0.336175 0.379907 0.560209 -0.481726 0.798934 -0.088642 -0.331924 0.633259 -1.176933 -0.332586 0.212924 -0.427771 0.393781 0.913878 0.589440 -0.353176 0.454689 -0.244220 0.162254 0.108242 -0.635273 0.481695 0.672846 0.060048 0.206558 0.804397 -0.270564 -0.059355 0.160884 0.339296 0.002300 -0.285783 -0.456825 0.299521 -1.529143 -0.006551 -0.959472 0.010375 -0.233304 1.035827 -0.550144 0.296686 0.763771 -0.101371 0.386319 -0.208096 -0.071305 -0.466432 0.181942 0.015894 0.545318 -0.125740 0.001270 -0.081756 0.148697 0.196404 0.368779 -0.111136 -0.119300 -1.221034 -1.334250 -0.555042 -0.025171 0.052136 -0.073517 -0.809813 -0.075334 0.806292 0.159066 -0.823642 -0.060348 0.353400 0.434901 -0.565668 0.479055 -0.794390 -0.294472 -0.140079 0.238051 0.096203 -0.353072 -0.029345 -0.962880 -0.140540 0.107448 0.249952 -0.294339 -0.257169 -0.279484 -0.158622 -0.118759 -0.156354 -0.005001 0.056455 -0.243133 0.381712 -0.415245 0.380983 -0.829466 -0.068884 -0.359357 -0.478331 -0.055614 1.270203 0.415980 0.189759 0.385060 -0.452599 -0.373632 -0.500340 -0.555907 0.121173 -0.196474 0.806547 -0.028735 -0.041952 -0.074766 -0.061494 -0.271736 -0.307232 -0.326032 0.041448 -0.328882 0.670294 -0.303247 -0.195307 -0.830362 0.162096 0.860319 -0.604900 -0.143324 -0.295194 0.272953 -0.419017 -0.572058 0.449776 -0.135436 0.273988 -0.150342 0.376036 -0.626533 0.307407 -0.367472 -0.052316 -0.023708 -0.681070 -0.623378 0.082110 -0.151975 -0.138329 0.108505 -0.338677 0.029570 0.269818 0.678092 0.197917 0.114553 0.002964 -0.848473 -0.897971 -0.529809 -0.096072 0.445962 0.442124 0.052894 -0.383289 -0.161781 -0.460127 0.697124 -0.426678 -0.046949 -0.185481 -0.193069 0.590949 -0.216800 -0.188013 -0.790710 0.169487 0.145034 -1.062567 0.659177 0.247576 -0.487130 -0.326989 -0.870167 0.200141 0.380878 0.814769 -0.102991 0.016178 0.214973 -0.227021 -0.070118 -0.570062 0.487669 -0.184246 0.426260 -0.537233 -0.315480 0.339124 0.568212 -0.109825 0.459293 0.368359 0.627572 0.218258 0.597023 0.110072 -0.422278 -0.252321 -1.070538 0.263407 1.073498 0.207658 0.165991 -0.554055 -0.415428 -0.033398 0.365731 0.596013 0.942446 0.529814 0.480578 -0.221282 -0.510932 0.081196 0.289195 0.163890 -0.523080 0.043709 -0.216123 0.020629 0.249868 0.179602 0.509261 -0.524500 -1.210956 -0.180558 0.601378 0.228968 -0.120347 0.606442 0.078059 -0.424037 0.139045 -0.068811 0.426883 0.101427 0.184898 -0.181757 -0.280200 -0.042603 -0.324275 0.650965 -0.070216 -0.037246 0.298772 -PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = -0.002927 0.040396 0.253925 0.051447 0.115211 0.113149 0.051156 0.053174 -0.213478 -0.368052 -0.348958 -0.437239 -0.094320 0.041295 0.280730 0.022554 0.143804 -0.005826 -0.359987 -0.064741 0.184131 -0.020554 0.196196 0.099732 0.080877 -0.196815 -0.373251 0.124851 -0.034360 0.165596 -0.149036 0.135887 0.117876 0.166890 0.059742 0.061195 -0.064553 -0.097768 0.173232 0.089466 0.331886 -0.123665 -0.008332 -0.014004 0.122352 0.176828 -0.242495 0.011575 -0.101196 -0.073528 0.251898 -0.512835 -0.026826 0.182206 -0.182296 0.042146 0.225570 0.164898 -0.050557 0.119287 -0.248667 0.115366 -0.056993 -0.329169 0.238070 0.111480 0.155159 0.015834 0.103104 -0.113369 -0.033471 0.081823 -0.019572 -0.016422 -0.414717 0.042498 0.332023 -0.758384 -0.009790 -0.366791 -0.006775 -0.064192 0.272740 0.003409 -0.114629 0.255942 -0.173315 0.116487 -0.043190 0.065515 -0.192314 0.108313 0.080271 -0.093879 0.037545 -0.086104 0.012489 0.021055 0.099574 0.145421 -0.102163 0.075018 -0.512244 -0.489418 -0.248540 0.071511 0.188727 -0.088099 -0.241497 0.106527 0.464418 0.086452 -0.124610 -0.030478 0.057796 0.270790 -0.513891 0.107349 -0.370095 -0.259934 0.018337 0.233018 0.114420 -0.017030 0.152239 -0.543006 0.019439 -0.022441 0.207876 -0.142695 0.083674 -0.176895 -0.030193 -0.153682 -0.061702 0.000307 0.066471 0.186151 0.159757 -0.081110 0.161257 -0.256321 0.178647 -0.218414 -0.111034 0.028036 0.441943 0.413187 -0.088570 0.309491 -0.174180 -0.025884 -0.124323 -0.104750 -0.087022 0.037688 0.342294 -0.024593 -0.045256 0.078287 -0.027823 -0.039033 -0.083354 -0.098788 0.006122 -0.174125 0.057128 -0.023863 -0.142292 -0.310060 0.140169 0.310243 -0.456464 -0.048877 -0.054913 0.388559 -0.109745 -0.266804 0.096076 -0.083850 0.090482 -0.051640 0.227235 -0.274476 0.208339 -0.073276 -0.120356 0.078475 -0.360160 -0.164587 -0.006448 -0.037402 -0.206478 0.073404 -0.077813 -0.025446 0.185978 0.100870 0.191174 0.048668 -0.080425 -0.046719 -0.295340 -0.257286 -0.087659 -0.015254 0.214116 -0.092252 -0.229093 -0.108256 -0.103538 0.319056 0.137505 -0.038945 -0.109475 -0.133358 0.019031 -0.055527 -0.056569 -0.050586 -0.002571 0.013059 -0.557300 0.096185 0.099095 -0.193206 -0.239493 -0.480208 0.129810 0.017755 0.287746 0.054940 0.263448 -0.056203 0.039970 0.000676 -0.127154 0.207105 0.009638 -0.041226 -0.221955 -0.209780 0.174669 0.194487 -0.031868 0.216377 0.236089 0.444187 0.199818 0.147763 -0.014958 -0.256332 0.072119 -0.272340 0.000469 0.506650 0.020032 0.129417 -0.159671 -0.186365 -0.140245 0.017129 0.200241 0.338412 0.138168 0.175316 0.233112 -0.069650 -0.035736 0.058555 -0.063604 -0.274988 0.023468 -0.028451 -0.061877 0.113807 0.029881 0.249801 -0.225121 -0.548593 -0.161283 0.211141 0.122240 0.061119 0.142786 0.093508 -0.145315 -0.046338 0.062319 0.132797 0.231273 0.051579 -0.160859 -0.103214 -0.109395 -0.060878 0.046620 0.006995 0.005074 0.118119 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = 3.328490 0.038152 -2.910787 8.147037 -0.098555 -2.519679 0.337372 1.325802 -1.526098 -11.492598 -6.857756 4.900135 1.489894 0.483290 1.648191 2.836970 -0.736620 0.823276 -11.535150 3.291064 4.288856 1.364194 -0.226769 -1.668397 1.120109 -3.294127 3.516573 1.748422 1.090451 6.775726 -3.126327 3.530367 5.732733 -0.755527 2.887093 5.074671 -1.878786 1.291283 -2.103663 -0.005659 8.515853 4.458935 -0.291639 2.847163 0.901650 6.881599 1.264883 4.598732 -0.762552 -4.823539 2.747752 4.083633 -3.544534 -1.537625 -4.354726 2.984266 5.900429 3.169133 -3.150215 2.285246 -2.567891 -0.441794 2.148123 0.682221 7.706030 2.830423 5.762242 5.007125 7.450237 -4.103264 -0.491961 3.431952 2.208232 -0.719851 5.927851 -4.293522 -7.717641 -0.906039 -1.456052 -9.622728 -3.430413 0.745327 10.472998 -6.547426 -0.564744 0.629714 1.312735 6.813234 -3.572082 0.178810 -4.778340 -0.344618 -3.645771 10.191756 1.304174 1.005839 -0.546554 3.082555 2.397819 4.458435 -0.268233 -5.185308 -1.966149 -10.071399 -2.957251 -3.259876 3.246372 3.736699 -8.568065 -1.632472 -1.363450 6.698796 -10.137224 0.315772 4.804713 3.971854 6.124909 -2.014583 -4.597804 1.239065 1.122511 0.762936 4.817716 -2.993219 0.374054 -1.016384 1.910613 0.109135 1.881204 0.534627 -7.764719 -4.075795 -0.604603 -1.246718 0.654491 1.830994 3.974182 -3.825825 4.280387 -3.609705 5.600881 -9.535129 -0.113628 -3.111118 -6.026395 -1.870481 3.726441 5.395933 4.619161 -3.564560 -2.957115 -1.558109 -9.150076 -9.346531 1.193404 1.014816 1.356213 2.105208 -0.892734 3.274662 -3.624094 1.644805 4.013304 -2.811094 -1.239028 -0.601001 6.670956 0.391486 -1.526680 -3.946575 -2.452984 -1.930771 0.928058 6.424894 -1.188503 -9.685650 -10.944401 -4.788510 5.794778 -2.355775 0.120420 -4.208105 -1.466850 -5.761250 0.945542 -6.370489 1.280960 0.048065 -3.683836 -6.899238 0.248772 -0.850067 -1.646391 -0.093503 -5.083991 -1.369611 5.731902 1.124335 2.559302 0.791224 0.655205 -6.500439 -4.722455 2.390921 -3.776498 5.866368 3.740200 -0.826542 -5.122322 -2.109650 -6.840223 4.254260 -2.155495 1.652749 -1.927252 -1.479147 6.639541 -4.445753 -0.071746 -5.198352 1.500350 1.730849 -10.006318 8.507117 5.669741 -2.387222 -0.137457 1.190744 1.251961 3.433830 4.470057 -4.564427 -4.462567 0.449281 -2.034112 0.008621 -1.037636 4.001556 -5.077842 1.016889 -4.177388 -2.390123 3.500657 3.677754 0.268819 1.880358 1.370294 -2.179331 1.995464 4.890567 4.992524 -0.874041 -5.817829 -12.475223 3.860099 -3.512600 -2.004565 -0.897712 -1.664752 -4.556809 1.952661 -0.862890 6.595248 1.923487 -3.530876 5.461112 -8.269306 -6.810068 -4.369292 -0.473494 0.234775 -1.162935 0.219942 -2.915980 2.287512 1.951568 -0.465893 -0.731482 -4.434784 -0.032207 0.689677 6.301200 1.461742 0.552131 6.914937 2.435043 -3.099223 -1.811218 1.282965 -1.706903 -0.706440 -6.385264 -2.970604 -1.032688 2.169284 -2.847829 2.096844 -1.517885 0.114984 2.274435 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 2.807412 0.110464 -1.188138 3.991231 0.173776 -1.450840 0.400457 1.754965 -0.652706 -7.338737 -4.424299 2.741293 0.593199 0.227317 1.477388 1.773305 -0.011034 0.902264 -6.956847 2.017912 2.852303 1.311874 0.264919 -0.814540 1.116015 -1.687312 -0.212510 0.158161 1.053538 4.336452 -2.459601 1.944674 3.599336 -0.377848 1.432138 2.967643 -0.608973 0.328873 -0.057556 -0.433926 5.508872 2.290206 0.367258 2.276622 0.700580 4.069182 -1.127646 4.987073 -0.247089 -3.134375 2.806681 -1.182849 -2.465040 0.491707 -2.501155 2.546710 3.504728 2.158407 -1.861772 1.602821 -1.346797 0.330240 1.077109 -1.112696 4.232171 3.049176 2.332938 2.818726 4.881108 -2.173944 -0.125813 1.855951 1.272960 -0.189524 2.709812 -2.836717 -2.661648 -1.883952 -0.521789 -5.310135 -1.732663 -0.582589 7.508149 -4.501129 0.538157 1.622186 0.876159 4.136926 -1.752320 0.530804 -3.050562 0.272815 -1.421293 5.339210 0.082155 0.867020 -1.090139 1.239711 1.124537 2.416231 -0.307013 -2.384204 -3.420389 -5.871740 -2.155131 -1.497775 1.690005 2.177840 -5.875582 -0.566435 0.296505 4.128287 -6.450955 0.094551 2.610002 2.556965 2.786957 2.311134 -3.438701 -0.167735 0.469989 0.584533 1.713607 -2.038030 0.049680 -2.589191 0.106245 0.157298 1.425523 -0.382888 -4.972471 -2.353320 -0.514639 -1.063665 0.136091 1.281875 2.421528 -2.471813 2.750870 -2.127741 2.650805 -5.553564 -1.285069 -1.952418 -4.172075 -1.147449 5.330329 3.354884 3.152433 -0.754989 -2.137234 -2.163378 -5.288673 -4.867206 0.469360 -0.438201 2.195932 1.529382 -0.267240 1.438497 -2.005713 0.431399 0.797886 -1.978949 -0.588057 -1.034446 4.170884 -0.873421 -0.804495 -3.623460 -1.175190 0.218426 -1.181762 2.738041 -0.731386 -4.357347 -6.268027 -3.276991 3.557923 -1.393113 1.102906 -2.468399 0.413548 -3.307888 0.070053 -3.575311 0.537257 0.214878 -2.877469 -4.392191 0.491935 -0.559927 -1.342654 0.134679 -2.853233 -0.478754 3.322231 1.945849 1.538055 0.687296 -0.112581 -4.688728 -3.848133 0.255557 -2.366431 3.219525 2.687872 -0.584376 -2.866786 -1.618962 -4.290910 3.238336 -2.990463 0.803839 -1.239261 -0.387369 4.042298 -2.623157 -0.540224 -4.324757 1.041896 0.942451 -6.903755 4.505829 2.295669 -1.902381 -0.296444 -1.277415 1.254307 2.581842 3.492002 -1.944237 -2.065919 0.545367 -1.417460 -0.080237 -1.429677 2.835542 -3.156024 1.427162 -2.601049 -1.374744 2.279505 2.626713 -0.202497 1.492477 1.668953 0.001100 2.251218 3.008823 2.884919 -1.491964 -3.310255 -8.151272 2.197928 0.792135 -0.634155 -0.371006 -2.376737 -2.643131 1.108063 -0.222196 4.062820 1.495405 0.279470 3.264873 -4.760880 -4.073466 -1.339430 0.439112 0.228300 -1.097640 -0.128231 -1.365301 1.152358 1.874693 0.232693 0.612413 -3.363377 -2.248978 0.091655 4.270994 0.930704 0.575077 4.248944 1.743763 -1.994296 -0.225092 0.421145 0.339869 -1.116150 -3.261950 -1.445235 -0.671652 0.511689 -2.173422 2.293078 -0.670818 -0.544407 1.218463 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = -0.057728 0.007134 0.161458 0.076326 0.128436 0.104266 0.012796 -0.061237 -0.144969 -0.225955 -0.147312 -0.237417 -0.074400 0.050373 0.142636 -0.000874 0.191499 0.026815 -0.073841 -0.071044 0.043233 -0.074418 0.046134 0.103942 0.008822 -0.151088 -0.096171 0.124213 0.006904 0.103738 -0.116168 0.094558 0.080425 0.107624 0.154937 0.073514 0.076530 -0.070987 -0.002950 0.018803 0.290968 -0.144503 0.040368 -0.000368 0.105500 0.153304 -0.053246 -0.061986 0.032906 -0.034344 0.098380 -0.259961 0.061627 0.070768 -0.237737 0.018848 0.021149 0.088797 -0.152399 0.079410 -0.108845 0.088448 -0.028160 -0.136795 0.171281 -0.054484 0.073585 0.057812 0.035199 -0.121747 -0.049152 0.070065 0.028549 0.056028 -0.234955 0.101675 0.220590 -0.462833 -0.024598 -0.120408 0.052903 0.000000 0.118059 0.009039 -0.077288 0.179293 -0.187924 0.055429 -0.021743 -0.010866 -0.224828 0.022089 0.112033 -0.146667 0.094344 -0.106428 0.072997 0.033529 0.014736 0.124247 -0.056056 -0.064290 -0.226422 -0.350654 -0.212795 -0.015288 0.100992 -0.110361 -0.075180 0.019577 0.299803 0.147583 -0.055323 -0.004861 -0.004194 0.102639 -0.377403 -0.103363 -0.145913 -0.142368 0.006113 0.138304 0.104120 0.021335 0.097574 -0.256450 0.039461 -0.039669 0.182049 -0.055639 0.140076 -0.107369 0.019185 -0.028560 -0.103330 -0.060197 0.001676 0.092697 0.116725 -0.017937 0.144482 -0.072214 0.145076 -0.165177 -0.060919 -0.016482 0.311373 0.192704 0.027124 0.200496 -0.136477 0.051053 -0.082563 -0.160644 0.019401 0.043925 0.140177 0.041713 -0.054372 0.087517 -0.049730 -0.057260 0.028168 -0.099316 -0.065649 -0.069670 -0.159487 -0.003945 -0.103510 -0.192864 0.145532 0.225908 -0.209394 -0.001431 -0.125196 0.190115 -0.029722 -0.156028 0.068139 -0.088949 0.069785 0.071151 0.052384 -0.149776 0.148130 -0.103271 -0.054696 -0.072513 -0.177446 -0.130838 0.016804 -0.083112 -0.112164 0.097074 -0.085778 0.068330 0.024650 -0.044696 0.070944 0.013791 -0.025530 -0.004013 -0.149161 -0.118343 -0.031786 -0.030718 0.118952 -0.030038 -0.149284 -0.113556 -0.021948 0.160286 0.042887 0.021904 0.062180 -0.175854 -0.026261 -0.061197 -0.019979 0.072802 0.059962 0.088662 -0.346878 0.027665 0.128156 -0.182954 -0.160425 -0.251677 0.085254 -0.020140 0.217178 0.013148 0.195938 0.013593 0.066204 0.014071 -0.078404 0.090550 0.107565 -0.031913 -0.237621 -0.188673 0.123426 0.119239 0.010789 0.077990 0.154995 0.261737 0.051342 0.205010 -0.011426 0.007716 0.022161 -0.126718 0.033880 0.272781 0.054931 0.155322 -0.067966 -0.051144 -0.114910 -0.082534 0.121824 0.108791 0.028553 0.168725 0.117438 -0.071482 -0.048303 -0.049491 -0.012362 -0.196703 0.112767 -0.083396 -0.051418 -0.085075 0.049033 0.063447 0.011975 -0.251386 -0.039776 0.050386 0.113239 0.069161 0.104647 0.015626 -0.132823 -0.010011 0.059856 0.078465 0.215546 -0.108243 -0.162425 -0.065575 -0.016581 -0.057866 -0.026552 -0.051699 0.061827 0.084302 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -3.527424 2.858544 1.687900 -1.969339 5.831671 0.242151 2.053716 1.842063 -1.965856 3.771466 -5.635050 -1.480757 -1.591261 -5.118575 0.069982 -2.953725 1.000898 0.153878 -0.997435 1.170933 2.098204 -2.785680 -0.047584 -2.804466 -0.478777 -5.581014 -1.667602 0.249847 3.949548 -0.900342 0.782774 0.322909 6.615623 0.619535 4.998668 3.881297 1.742174 4.507057 0.522250 -0.751606 -0.516668 3.866690 -2.638372 -3.978598 -0.408917 -3.113401 -3.311732 -1.922124 1.357452 -2.563279 -1.043566 3.679137 -0.478677 0.618600 -3.243295 2.408063 4.758234 -0.369775 5.992376 1.424853 -2.117808 -0.837379 -3.278562 3.540670 -2.144367 0.995854 -0.549796 -3.420783 0.602812 0.382395 -1.216440 -1.755111 -1.991403 2.803185 2.305443 -3.676718 1.690138 -1.236907 -5.709338 -4.563743 -3.155890 1.210520 0.586361 4.527908 0.122848 -0.132199 1.693210 0.753850 0.393667 -5.737512 -0.801415 4.967097 -2.879174 -1.339689 -2.136093 4.084639 0.437607 1.757410 -2.879339 -2.752387 1.152088 -0.087237 0.628565 -3.705133 -0.465171 -4.728153 1.100017 0.216930 -0.422993 3.091759 2.318382 2.083206 3.128378 3.869990 -5.228887 0.891176 -4.333225 1.678555 -0.953210 -0.137805 -0.206715 1.071387 0.555511 1.343797 4.274180 -5.777599 2.557077 2.337673 -1.764629 -4.586923 -0.282279 -4.050022 -4.020046 -0.772644 1.996076 1.369669 1.023104 -2.444848 0.404907 -0.879977 -1.285674 -1.814972 0.424777 4.916338 -5.239856 -0.575538 -0.443552 -0.420165 -2.521307 3.518688 2.258286 1.933368 5.459505 2.663578 -1.904389 3.166035 -4.251173 0.595020 7.194534 2.158958 -4.634672 3.401173 -3.551972 0.090140 2.112239 2.039314 2.867150 0.117866 -4.833653 -2.338214 2.058775 -1.252725 5.537985 1.463337 1.429530 -3.302831 6.322675 -0.355907 -3.063999 6.176119 3.398268 -5.272211 2.575028 2.865673 -4.512578 -0.732175 2.739637 -3.610338 -0.877164 -3.419593 0.273776 1.471760 -2.789243 -1.081840 0.174573 -5.092218 5.818971 0.623592 1.593304 1.202935 -3.410468 -5.462073 6.234306 -0.254467 -0.452734 -2.131936 -1.828087 -3.829094 -5.455285 0.746276 0.050617 -3.173045 -1.711364 -4.573379 0.815714 3.917829 -1.578136 3.187269 -5.287049 -1.184748 1.903601 1.831631 2.388786 -2.144302 -2.998095 -0.352022 -0.771992 2.222559 -2.980268 4.233768 5.781686 -2.016867 4.318805 -1.714314 -3.285151 1.150979 2.624651 -4.363658 4.999107 -1.074272 3.894104 0.262370 3.591478 -3.438389 -1.300352 0.074242 -1.731638 -1.779583 2.349248 -3.419706 0.100978 1.280829 -3.594912 -2.722965 1.521186 -0.219975 1.145173 -0.111584 0.450841 -3.782302 -0.042996 -2.270275 0.993491 3.506759 0.226914 -3.410815 0.903753 1.036250 -0.038202 -0.678451 0.495460 0.130258 3.534535 -4.476461 -0.458557 0.224564 0.267318 -3.582271 -6.573631 0.777559 -4.241771 -3.704344 3.475133 -5.573793 0.217680 -3.449714 -0.581434 -5.620218 -1.925930 1.492051 6.438964 1.414826 -2.984505 1.458743 -0.420497 3.527831 -0.123455 1.410062 0.742220 2.331788 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -3.301552 1.409112 3.004546 -1.539313 5.411875 -0.531260 2.285941 2.056006 -0.186951 2.464132 -5.370366 -2.729670 -1.840532 -2.807928 0.370429 -2.463171 1.202141 0.590366 -1.925012 0.355066 2.289987 -0.387403 -0.532692 -2.833283 -0.108208 -2.217009 -2.543206 0.028736 2.267987 -0.568896 -0.721564 0.989157 6.000494 0.582885 5.590847 3.745131 1.942318 4.573578 -1.033003 0.118215 0.444088 3.987030 -2.453669 -4.122979 -0.032692 -3.265506 -2.630528 -2.307137 1.345773 -2.072508 1.121900 2.983128 0.061152 1.050441 -1.779236 2.002304 3.162186 1.210100 5.011517 2.087027 -2.953651 2.448829 -3.378917 2.080089 -1.586942 3.527974 -1.736435 -4.275406 -1.190647 0.287056 1.436699 -3.884011 -2.498853 1.755994 0.895025 -2.262934 2.709589 -0.467551 -0.343979 -4.405420 -3.901971 1.041837 0.061542 3.524592 -0.893827 -0.884499 -0.837572 0.117384 0.712529 -4.406715 -1.469306 3.968216 -3.432979 -0.369914 -1.454735 0.830693 -0.284923 2.100544 -2.462338 -3.252485 1.406101 0.125620 0.267057 -0.794887 1.178609 -2.277697 1.192135 1.725497 -0.251919 1.967704 1.631399 2.454794 3.418610 2.752250 -2.660631 1.620003 -3.697518 1.934830 -2.553862 -0.153529 0.329753 1.443357 1.103004 0.899419 3.234360 -4.249938 2.239221 1.952462 -2.397528 -2.573773 0.608733 -3.862637 -4.676186 -1.210348 2.237637 2.278735 0.343833 -2.177330 0.576287 -1.713599 0.209589 -0.901385 -0.542468 1.612659 -3.723761 -1.322356 -0.679068 -0.812166 -2.259319 3.584810 1.658892 1.557137 4.729230 2.455295 -2.459016 -1.267033 -4.183778 0.544897 5.556073 -1.045918 -4.062244 2.494344 -2.499466 0.800473 2.908156 1.926653 1.653907 0.505397 -2.501909 -0.936741 -0.159505 -1.277834 5.129525 1.924494 1.914131 -3.124086 3.560633 -2.771856 -3.058170 5.776732 3.233344 -5.359796 0.038222 2.450472 -1.937702 -1.852228 2.087634 -3.130032 -1.234398 -3.171039 0.493901 1.184038 -2.985562 -1.246835 2.002376 -4.719074 4.750948 0.508117 0.450003 0.427745 -3.848125 -3.505527 6.866745 0.346139 -0.445188 -1.225001 -1.423075 -0.925117 -5.148886 0.898555 0.210426 -1.257698 -2.058842 -3.602430 1.848063 3.521939 -2.178933 2.491031 -1.802211 -1.323223 1.495470 -0.938828 2.787730 -2.766230 -3.124731 -1.481203 -1.561644 2.406852 -3.034541 2.177650 5.747245 -1.855777 3.041144 1.761558 -3.110018 -0.668470 2.881638 -3.394271 4.240581 -1.144490 2.873445 -0.098472 3.365965 -3.562139 -2.023503 -0.224673 -0.141096 -2.218790 3.103108 -2.746963 0.745079 0.002531 -3.732069 -1.556891 1.960521 -0.061797 0.042665 -0.252173 0.540404 -4.514775 0.257139 -2.366070 0.611889 3.614381 -0.360721 -4.339475 0.551016 0.488507 -1.889856 -1.179677 0.489945 -0.559039 4.100415 -3.698223 -0.680591 1.132068 0.288360 -3.643534 -4.719084 -0.333735 -4.309984 -2.552282 2.639686 -3.014085 -0.892109 -2.939814 0.065905 -3.871838 -2.542690 1.639288 5.328719 2.671026 -2.742316 1.286618 0.127894 3.854658 0.689590 0.057504 0.109459 2.041008 +PE-benchmarks/channel-assignment.cpp__main = -1.214435 0.611062 -0.461590 -0.655459 1.611640 -0.859251 0.240151 0.871079 0.821460 0.273548 -2.000002 -1.137853 -0.634954 -1.846068 0.460247 0.433746 0.760454 1.534940 -0.534767 0.027831 1.327874 -0.205831 -0.241768 -1.510138 0.350921 0.230373 -0.643829 -0.248031 -0.569382 0.150226 -0.809284 1.016815 1.998921 1.166027 1.621271 1.468504 0.414218 2.677969 0.488134 1.399361 0.324610 1.476440 -0.391541 -2.823698 1.451689 -1.281529 -0.066900 -1.544197 0.259462 -1.204372 3.304601 1.010380 0.317681 -0.014843 -1.363971 -0.905523 1.696120 1.358915 1.382716 1.382370 -1.030882 1.279198 -0.551608 -0.264777 -1.117127 1.482714 1.553203 -1.660360 -0.526503 0.585148 2.806991 -2.197222 -2.217490 -0.380528 -0.502681 -0.302184 1.182926 0.202388 0.510634 -0.885843 -2.026321 0.104501 -0.891730 1.567583 -0.632397 -0.612213 -2.082630 -0.594023 1.102345 -0.705082 -1.133914 0.798041 -0.417629 1.593753 -0.674020 0.384948 0.034592 0.140856 -1.075261 -0.883359 0.709716 0.413023 0.268536 2.191155 -1.420029 -0.414112 1.949859 0.877619 -1.004960 0.397913 1.688935 0.667538 0.488444 0.088114 -0.219841 0.643802 -1.917688 0.653045 0.138818 0.080061 0.480000 0.031013 0.346304 -1.255190 0.178020 -1.066258 1.446365 1.147250 -0.758926 -0.514148 1.032401 -0.790078 -1.601075 -0.697430 1.373679 0.902316 -0.239890 0.106208 -0.394155 -0.865101 -0.904172 -1.245188 -1.231332 1.328707 -0.720267 -0.407122 -0.752484 -1.325459 -0.555751 0.157954 -0.331706 0.312695 1.289744 1.041466 -1.115914 -1.381931 -1.249910 0.546683 2.508658 1.063325 -1.581505 0.085706 0.500206 0.883039 1.196122 0.195671 0.397188 -0.111378 -0.042189 0.147260 -0.921672 -1.108580 1.334729 1.151917 1.388371 -1.605604 0.847557 0.855890 -0.595964 3.096471 0.383209 -1.366677 -0.484195 1.435396 -0.225545 -0.554281 -0.047016 0.113936 -0.400115 -0.929222 0.866257 0.108966 -1.985907 -1.504611 0.095032 -1.675375 1.191234 0.355274 0.458612 -0.313904 -2.259974 0.386997 3.105589 0.170959 -0.434638 0.075025 -0.620172 0.483996 -1.849684 0.652438 0.569106 -0.208403 -0.833533 -0.763705 0.419440 2.187612 -1.337382 -0.476073 0.737323 -0.565636 0.470070 -1.191137 0.534644 -2.793059 -1.326754 0.199866 0.577727 1.253644 0.285389 -0.031624 2.093852 -1.088393 -0.299126 3.446691 1.629331 0.078875 1.793703 -0.384439 1.092673 -1.243969 1.319133 -0.130127 1.393811 -0.954166 -0.811565 -0.010301 1.531201 -0.796489 1.485045 -1.125658 0.370102 0.838676 -0.868387 -0.406735 1.386878 0.518490 0.958244 -0.342474 -0.340802 -0.532159 0.369654 -0.023409 0.183045 1.610394 0.211117 -1.838084 -0.737681 0.450633 -1.075016 0.141338 0.779875 -0.236886 2.165684 -1.116128 0.830869 0.293553 -0.518768 -1.141403 -1.134744 0.347308 -0.875534 -0.500425 1.419778 -1.650378 -0.753637 -0.739658 1.148416 -1.270983 0.685919 -0.941262 0.993225 1.159270 0.182091 0.892279 0.476928 1.189573 0.154501 -0.568326 -0.057846 2.033667 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -4.079817 3.670005 2.891871 -2.256613 7.596029 0.291005 2.539511 3.991090 -4.266203 4.751912 -6.341017 -0.027844 -1.809767 -5.635627 -0.081663 -3.007040 1.173136 -0.248813 -0.617505 2.230349 2.503720 -3.679618 -0.190296 -3.096518 -0.772136 -6.441113 -1.396219 0.285482 5.129896 -0.212406 1.591360 0.392177 7.604065 0.378070 5.780531 4.185462 1.543654 5.086242 0.795349 -2.634327 -1.116134 4.523228 -3.387946 -4.000708 -0.405070 -3.693522 -3.569505 -2.474471 1.728660 -2.882777 -2.987357 4.592158 -0.788069 0.945600 -3.813505 3.166711 4.903472 -1.237622 7.182140 1.194932 -2.628151 -1.495254 -3.921654 4.221225 -2.045681 0.571268 -1.293281 -3.534267 1.410005 0.162051 -1.510728 -2.876649 -0.995486 3.912746 2.629530 -4.537174 2.603296 -1.447076 -5.596204 -6.166771 -3.821737 1.360658 0.310078 5.714314 0.019913 0.031870 1.864327 1.319338 0.086644 -7.256785 -0.478378 6.109742 -3.849648 -2.457292 -2.690516 5.314032 0.701234 2.337049 -3.383036 -3.703673 2.004568 -0.075608 0.839220 -5.112361 1.458095 -5.958115 0.789165 -0.052475 0.273357 4.504577 2.614531 3.325552 4.422292 5.141785 -5.379972 1.126249 -5.047792 1.822174 -1.573136 -0.052359 -0.452989 1.891817 1.609700 2.369287 5.471698 -6.952207 2.327441 2.561867 -1.560652 -5.159479 -0.552317 -5.104911 -4.526851 -1.326015 2.499883 1.430536 1.363136 -3.089890 0.473675 -0.764576 -2.416727 -2.569005 0.420056 6.572607 -8.088874 -0.635009 -0.404469 0.091700 -2.598304 4.225023 2.856808 2.609142 6.677667 3.488208 -2.369188 4.785408 -5.256752 0.637040 8.031050 2.527676 -5.728762 4.503615 -5.010316 -0.436758 2.197561 2.433170 3.900104 0.887728 -6.673076 -3.793165 3.465362 -1.000229 6.790038 1.777583 1.772134 -3.503935 7.741762 -0.589194 -4.108428 7.343213 3.310456 -6.296737 3.240541 3.202445 -5.295686 -0.417165 3.202267 -5.206272 -1.589977 -3.741845 0.188003 2.107808 -3.497664 -1.419056 0.259325 -6.052828 7.095206 0.800708 1.940900 0.635962 -3.423395 -4.580376 7.556085 -0.581809 -0.663509 -3.164656 -2.416092 -5.320641 -6.056811 0.764920 0.446732 -3.122187 -2.519013 -5.914027 0.351527 3.604058 -1.534022 3.797082 -7.078583 -1.118699 2.224466 3.062501 2.992614 -3.987723 -3.279397 -0.389478 -1.672398 2.773359 -3.948898 5.472322 7.076136 -2.590820 5.520443 -2.060029 -4.077998 1.416223 2.896733 -5.637666 6.108158 -0.746809 5.873187 0.514582 4.192775 -4.580581 -1.443088 -0.423004 -1.886690 -2.087376 2.974742 -3.691079 -0.017168 1.445818 -3.899776 -3.444840 1.307877 -0.381794 0.518116 0.000887 -0.477996 -4.681503 -0.733329 -3.036660 1.309780 4.216678 -0.817049 -4.035529 1.391197 0.857193 0.375861 -0.677829 0.597763 0.422176 3.821732 -5.533373 -0.727837 0.047486 0.741218 -4.414197 -7.609105 0.873681 -4.022101 -4.529498 4.638592 -6.877745 0.143829 -4.207855 -1.027608 -7.100637 -3.023283 1.643774 8.024290 1.038916 -4.115731 1.807982 -0.830901 4.245338 -0.092388 2.226253 -0.082615 2.378698 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.950011 0.799052 1.021562 -0.994679 2.859157 -0.014126 0.463784 1.671268 0.251459 0.709871 -2.117668 0.010298 0.134554 -0.961294 0.401792 -0.752615 -0.146896 0.562038 -1.064381 -0.524264 0.664069 0.824520 -0.218860 -1.187509 -0.154815 -1.195095 -0.839965 0.035815 -0.100123 0.813761 -0.381805 0.422645 1.493752 -0.268225 1.080359 1.080614 1.735814 1.232746 -0.723993 1.631665 1.267336 0.600942 -0.464966 -1.508384 0.189567 -1.111612 -1.523599 -0.520512 0.275912 -1.909712 1.037360 0.838706 0.448960 -0.249123 -0.021928 1.162886 0.670933 -0.267678 1.011695 1.124112 -2.050841 0.130246 -1.216922 1.758700 -0.624234 2.278403 -0.138516 -2.060773 -1.432300 1.276360 0.951921 -0.996494 -1.149845 -0.190314 0.158714 -0.444670 0.872794 -0.234646 0.886866 -0.194894 -0.449529 0.804809 -0.056840 0.939073 -0.048533 -0.371146 -0.561677 -0.406079 0.467524 -0.817915 -1.279527 1.930667 -0.996359 0.515512 -2.387318 -0.954635 0.329659 0.143890 -0.089355 -1.469978 0.696277 0.837921 -0.047433 -0.421458 -0.647241 -1.097390 0.767243 1.590084 -0.347647 0.800663 -1.393211 0.600150 0.133563 0.315959 -0.163191 1.218963 -1.532221 0.801842 -0.811472 0.208210 -0.444479 -0.356050 0.978276 0.713675 0.406087 -0.732032 1.569983 0.532404 -1.353939 -0.381022 0.556357 -0.558432 -1.521154 0.007270 0.480435 0.882228 -0.088115 0.114770 0.430906 -0.796353 -0.278488 -1.531022 -0.700191 -0.198040 -1.297343 -0.363232 -0.113200 0.097867 -0.883508 1.148404 0.629857 0.088318 1.568880 0.591456 -0.080641 -0.247269 -1.346187 0.634321 2.083772 0.502427 -1.176671 0.566402 -0.968619 0.536523 0.622745 0.118634 -0.627038 1.656487 -0.752830 -0.095968 -0.971943 -0.937668 1.582082 1.899795 0.444161 -1.979193 0.370929 -2.004395 -0.334152 1.938065 2.087775 -2.004863 -0.219661 1.497500 -0.332306 -0.999550 0.466372 -1.085049 -0.990455 -0.529936 0.279461 0.420892 -1.163692 -1.160153 0.710436 -1.252639 1.325050 0.290575 0.028483 -0.501756 -1.080397 -1.142767 2.262644 0.157741 -0.260045 0.155100 -0.104542 -0.338293 -1.670431 0.119542 1.263794 -0.552772 -0.918822 -0.796649 0.283350 1.445538 -1.611607 0.380287 -0.582477 -0.430730 0.539872 -0.751101 0.935808 -1.991071 -0.811675 -1.375400 -0.361511 0.705494 -1.202053 0.010475 1.687779 -0.494359 1.654617 1.121277 -1.527071 -0.958261 1.450306 -0.226370 1.332980 -0.032398 0.493641 0.320464 1.239592 -1.180823 -0.515009 -0.614066 -0.455200 -0.729281 1.603621 -1.428419 0.232046 0.299437 -1.185410 -0.407657 1.437547 0.750832 0.295079 -0.533802 0.140921 -0.935393 -0.183675 -0.948485 0.049408 1.007489 -0.999994 -1.770110 -0.236353 0.721813 -2.085995 -1.039256 0.483300 0.302850 1.746782 -0.992545 0.852038 0.797958 -0.222574 -2.762640 -1.081981 -0.251084 -1.355322 -1.198758 -0.320041 -1.190807 -1.395279 -0.712921 0.772207 -1.334976 -1.728166 0.734393 1.434458 0.559011 -0.115140 0.762820 0.235991 1.054139 0.337517 0.095472 0.309147 0.576708 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -12.019587 7.369631 5.987308 -5.352412 15.422466 0.360576 7.575455 5.279642 -3.228240 12.175950 -18.349735 -8.620541 -7.557403 -15.876367 -0.713289 -12.032647 4.066228 -0.339771 -4.004007 3.149918 7.908583 -7.483472 -1.240964 -8.977718 -1.342486 -15.162102 -6.906698 -0.057866 12.513847 -4.696272 2.271002 1.486162 24.456008 4.586383 20.801455 14.047653 5.791429 16.844109 0.960104 2.333846 -4.355892 15.226134 -9.876535 -13.437151 -2.054595 -11.015814 -8.790287 -6.176674 4.254375 -5.189131 2.802102 12.204832 -1.826183 5.068289 -10.314601 5.135763 12.453889 1.502613 20.897480 4.853781 -7.927764 1.504014 -11.803337 11.115997 -6.514884 5.462833 -0.805734 -9.455295 3.288817 -3.053083 -0.966001 -9.281337 -7.875852 10.946892 6.775002 -11.967416 6.450905 -3.999105 -19.266986 -14.498979 -13.000869 3.824676 2.891245 14.786589 -0.785062 -1.018332 3.085528 3.705304 0.293505 -20.490526 -1.170215 16.784156 -11.229026 -3.621790 -8.102037 12.822276 -2.522611 9.298373 -10.776606 -7.805344 4.373848 -0.264168 1.996886 -10.264432 -3.250514 -15.277238 5.757129 0.137437 -3.763381 7.324025 11.646823 7.031351 14.051638 14.628145 -15.797385 4.549567 -14.037217 6.263039 -3.016168 -0.820115 1.120345 5.624646 -0.648410 2.818593 15.209454 -19.304960 5.773990 7.660444 -7.691811 -15.882313 -1.978875 -16.679137 -15.311895 -3.952223 7.643018 6.790495 3.080693 -11.172614 0.158736 -3.534695 -2.833198 -7.661691 3.133950 12.517365 -13.341986 -3.875311 -1.961026 -2.228639 -10.055747 13.780631 7.124701 7.183125 18.284820 8.869854 -6.913926 4.504037 -14.224890 -0.721042 21.840006 4.535102 -16.892113 11.691286 -12.110100 0.651581 7.845896 8.557151 11.049743 -2.113340 -14.920355 -6.110178 6.470665 -3.086432 19.250498 4.431989 5.083171 -6.435772 20.173514 -1.176440 -13.160344 21.085526 11.046445 -16.872340 4.195946 6.463455 -10.911134 -3.338874 10.485291 -11.581636 -1.418136 -12.245915 0.505198 3.893705 -8.622092 -0.545836 3.568755 -18.216468 20.389121 1.564237 6.483103 3.787112 -15.239588 -18.912478 22.434975 -2.611029 -1.839243 -7.112548 -6.132361 -9.852760 -18.018270 3.541891 -0.555535 -7.934621 -6.135509 -15.565404 6.622822 12.796031 -4.250381 12.434212 -10.977655 -7.467409 5.916523 1.908720 9.594447 -8.260496 -11.017894 -2.178240 -0.964286 10.737476 -9.336568 13.968047 21.971632 -5.920223 13.362638 -2.603643 -9.387394 1.231519 8.516393 -16.623465 16.623344 -5.554576 8.712016 -0.989504 11.455020 -11.419976 -6.407304 1.242900 -0.770933 -5.189912 6.831772 -8.489926 1.602249 0.181635 -14.327991 -5.250202 3.725537 -3.039929 0.342794 0.722000 2.329408 -14.406769 -0.356284 -9.627511 3.269273 13.185039 3.104728 -11.124356 4.314555 -0.046268 0.422180 2.244412 0.398395 -1.332443 12.289710 -15.003309 -6.220833 1.048535 -0.179678 -9.490429 -22.496053 -0.028528 -14.715180 -11.401668 11.540992 -14.770825 1.762089 -12.252190 -3.768499 -18.382515 -6.108633 5.207460 21.802157 8.699497 -11.151858 2.805662 -1.167965 14.189875 1.119863 2.868174 3.868456 8.810213 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -1.828150 1.383730 0.426094 -0.842770 2.389113 0.524316 0.720845 0.724948 -0.628755 2.081965 -2.717693 -1.153277 -1.024785 -2.543930 -0.217183 -1.404359 0.264355 -0.113487 -0.563514 0.267982 1.185497 -1.606295 0.050043 -1.317669 -0.203148 -2.415921 -0.898962 -0.030271 2.188227 -0.663442 0.028886 -0.149844 3.260720 0.523952 2.614890 1.822467 0.882826 2.519583 0.211777 0.505469 -0.783043 2.245114 -1.517242 -2.118570 0.024207 -1.906291 -1.151698 -0.860526 0.729015 -1.013505 0.629137 1.850436 -0.405233 0.404017 -1.542012 0.841768 2.049306 0.214893 3.293032 0.542168 -1.056723 -0.572696 -1.807397 1.824112 -1.100714 0.837631 0.281611 -1.498724 0.440280 -0.500785 -0.475292 -1.033462 -1.075017 1.820512 1.049125 -1.861278 0.682488 -0.864862 -3.392164 -1.893275 -1.888723 0.448678 0.376163 2.242867 -0.007714 -0.055459 0.681556 0.664999 0.040608 -3.181394 -0.171090 2.685751 -1.425207 -0.057296 -1.159351 1.972477 -0.524907 1.286272 -1.708653 -0.598187 0.496427 0.423840 0.398491 -2.106225 -0.726760 -2.753607 1.353406 -0.140665 -0.605075 0.665412 2.087734 0.584644 1.677942 2.373192 -2.566929 0.530004 -2.124487 0.587304 0.267092 0.116802 0.065112 0.782356 -0.352716 0.033039 2.393501 -2.997575 0.988123 0.907993 -1.195439 -2.770240 -0.356457 -2.450100 -2.085824 -0.357913 0.992333 0.744366 0.328069 -1.637816 -0.100611 -0.464981 -1.312217 -1.348316 0.581154 2.328519 -2.098698 -0.433674 -0.316652 -0.426867 -1.442401 1.958602 1.130457 1.088310 2.755067 1.500908 -0.656514 1.293474 -1.910482 0.132186 3.379563 1.375631 -2.710518 1.604245 -1.949947 0.243654 1.146572 0.977687 1.766306 0.226881 -2.183659 -0.844607 1.275089 -0.420413 2.786899 0.736276 1.046242 -0.872229 3.189966 0.317019 -1.817544 3.157815 1.637282 -2.549490 1.224678 0.926790 -1.799831 0.001869 1.529062 -1.553195 0.004436 -1.728908 -0.027744 0.703138 -1.369794 -0.394626 0.140293 -2.746854 3.452071 0.233638 1.432119 0.892870 -2.411909 -2.644645 2.948375 -0.365062 -0.460776 -1.182450 -0.815845 -2.301705 -2.519558 0.581834 0.182148 -1.641923 -1.204803 -2.430523 0.777104 2.024772 -0.451948 1.788759 -1.883191 -1.069651 0.829557 0.614627 1.638161 -0.987608 -1.559954 -0.290983 -0.031487 1.869429 -1.189765 2.218472 3.220713 -0.982074 2.320897 -0.520409 -1.030186 0.354691 1.288773 -2.242496 2.433152 -0.798606 1.171295 -0.347691 1.808120 -1.581559 -0.586251 0.283863 -0.078885 -0.364355 0.987801 -1.261031 0.042122 0.135093 -2.415407 -0.730471 0.564302 -0.468632 0.603923 0.167867 0.235513 -1.738870 -0.232769 -1.279315 0.249670 1.949676 0.417430 -1.552811 0.404344 -0.339152 0.258721 0.534625 0.227328 -0.130002 1.763612 -2.263978 -0.830714 -0.013639 -0.452361 -1.585833 -3.087965 -0.350634 -1.889679 -1.742520 2.027801 -2.618763 0.544940 -1.851846 -0.645739 -2.942949 -0.608958 0.256862 3.267341 1.293451 -1.357387 0.741224 -0.093879 2.219781 0.158993 0.410393 0.753994 1.357706 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -3.850628 2.381986 2.474493 -1.938870 6.540878 0.514784 2.432411 2.652254 -1.485798 4.051307 -6.154866 -2.255583 -1.597097 -3.675108 -0.080944 -3.528120 0.565995 -0.159391 -2.058374 0.466606 2.166360 -1.147354 -0.469097 -2.723756 -0.781178 -4.190162 -2.802273 0.313855 4.089701 -1.341057 -0.230468 0.205523 7.326678 -0.030458 6.744427 4.222589 2.754689 4.473411 -0.698918 0.520379 -0.060897 4.318202 -3.363476 -3.691539 -1.185765 -3.768095 -3.913160 -1.593763 1.578680 -2.164000 0.465687 3.716263 -0.394879 1.317919 -1.919719 3.273675 3.108320 -0.115217 6.602303 1.612973 -3.904026 1.106534 -4.343655 5.158123 -1.792063 3.543182 -2.128835 -4.446028 -0.518891 -0.185509 0.082994 -3.732104 -2.358999 3.532875 1.864631 -3.594993 2.385747 -1.473640 -3.088429 -5.107034 -3.784876 1.725209 0.496001 4.152366 -0.282426 -0.393890 0.404028 1.173928 -0.243058 -6.482615 -0.896181 5.971058 -4.394300 -1.035983 -3.325295 1.725271 -0.525127 2.973396 -2.912637 -3.323505 1.601794 0.417463 0.376369 -3.866680 1.508903 -4.409271 0.842265 1.311062 -0.279020 2.543155 1.681793 2.570771 4.705899 4.640360 -3.928468 1.265972 -4.161710 2.108588 -2.170250 -0.083199 -0.123838 1.859463 1.005433 1.879203 5.058142 -5.802318 2.092046 1.659471 -3.095427 -4.634276 -0.400212 -5.095387 -5.198476 -0.986886 1.903057 2.349244 0.713205 -3.479955 0.697381 -1.363867 -0.952443 -2.260037 0.956436 2.180823 -4.932304 -1.336761 -0.273600 -0.007558 -3.145593 5.340448 3.049403 2.298090 6.222437 2.884347 -1.626846 1.116452 -5.008730 0.233097 6.660657 0.324481 -5.349073 3.984232 -4.859012 0.159564 2.735344 2.757018 2.390504 1.064769 -4.365595 -1.897090 1.399525 -0.776118 6.529962 2.165493 1.385498 -2.369910 5.309744 -2.640645 -4.221300 6.832874 4.049571 -6.110762 1.193819 2.277663 -2.366054 -1.544480 3.579349 -4.832543 -1.533729 -3.493318 -0.201317 1.651156 -2.616440 -0.451487 2.275715 -5.663574 6.817084 0.380971 0.546179 0.949182 -4.609676 -5.430452 7.162446 -0.072900 -0.538391 -1.908661 -1.541338 -2.469212 -5.758942 0.751370 0.711933 -2.203949 -2.510872 -4.958240 2.059033 3.880603 -1.817421 4.340033 -3.937845 -2.125543 1.946120 0.037460 3.573484 -3.056456 -3.188299 -2.160215 -1.418832 2.963148 -4.306319 3.880173 6.983266 -1.796464 4.939741 -0.412609 -5.008040 -0.731872 2.737816 -4.907877 5.568514 -0.779728 2.169217 -0.027945 3.676712 -4.028902 -1.981241 -0.279197 -0.522077 -1.943969 2.840022 -2.907633 0.469953 -0.567605 -4.969240 -1.785065 1.471453 -0.510161 -0.350016 0.073862 0.274626 -5.136352 -0.563018 -3.640787 0.663577 3.918635 -0.493317 -4.186663 1.707976 -0.142794 -1.285137 0.064129 0.062855 -0.131782 4.124653 -4.788137 -1.707050 1.063499 0.375902 -4.801774 -6.338412 -1.077522 -4.845203 -3.652903 2.681539 -4.001746 -0.694820 -3.872070 -1.200833 -5.519412 -3.629934 2.828337 7.413315 2.945542 -3.956667 1.221836 -0.464549 4.859269 0.878943 0.871300 0.844123 1.813384 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -7.941823 1.822466 -3.874092 -6.047823 19.134284 -2.945687 1.323582 10.352176 2.747649 4.697835 -14.678649 -5.967198 -2.362960 -13.659969 2.483952 0.731622 6.665740 4.011082 -6.998896 -0.981097 5.148154 0.472007 1.532429 -8.290060 -0.517411 -4.979257 -4.646029 1.154060 0.763520 -0.499261 -4.600818 4.517703 17.095093 2.865766 11.315683 6.890072 8.741094 12.094247 2.897081 0.004218 6.375320 6.182427 -3.158807 -13.234060 2.108200 -8.452437 -10.770131 -5.245543 3.020850 -9.846744 6.691067 8.280997 3.086136 0.170952 -7.661953 2.004149 10.795358 -0.843528 11.498411 7.080072 -11.554996 -1.118971 -3.692959 6.069220 -6.446668 7.709001 0.421834 -11.254413 -7.517141 9.677170 5.793950 -11.242049 -11.739499 -1.143045 4.035151 -5.091123 8.268595 1.699372 9.025127 -9.848910 -8.375673 5.024591 -4.689558 9.723851 -0.136202 -0.650394 -2.116387 -3.666778 4.125939 -9.126836 -4.288005 8.374582 -7.827530 2.613633 -7.503813 2.984480 -1.441510 0.138436 -7.891863 -13.099804 3.549394 0.283277 0.110906 1.144009 0.071921 -6.896293 6.600069 6.385236 -0.662135 8.461181 5.235947 3.849490 4.269752 3.961173 -5.757359 1.774323 -13.506899 4.437495 -4.905655 -1.257068 -3.107574 -0.870787 8.871724 2.437632 4.292441 -12.007625 11.851437 9.210381 -6.449404 -4.846235 3.224162 -4.856467 -10.725766 0.308395 7.385684 1.778396 2.620952 -0.453904 2.849359 -4.806974 -6.018615 -3.317430 -6.095349 7.091868 -12.256280 -1.173656 -0.614777 -3.290259 -4.601192 6.173630 3.204478 0.851677 13.192646 3.300667 -9.705151 2.664600 -10.878428 6.395574 20.309853 3.100908 -10.717437 6.199184 -7.022357 4.131198 4.506344 4.072163 2.100365 -1.213118 -4.667680 1.139021 -0.387165 -3.475629 12.528281 2.361971 7.105162 -15.456596 5.760108 -2.496930 1.498259 20.180800 6.963813 -14.862382 1.865257 13.429682 -4.394992 -1.585550 3.118552 -8.061141 -6.466835 -9.454135 5.967587 3.841370 -11.532561 -6.409328 2.700258 -10.899470 8.996745 2.808338 -3.848013 -1.191582 -10.723817 0.012899 22.366646 0.803582 1.069391 1.054754 -6.206922 0.237273 -15.991759 0.447325 4.343585 -4.612265 0.329591 -6.559805 -0.364644 14.370724 -7.421368 3.344216 -12.263252 2.939221 5.351981 -1.591969 3.287637 -11.126877 -7.334901 0.408246 -2.989368 3.278891 -9.828470 1.687838 8.235327 -6.866663 8.498152 4.775017 -3.356805 0.823855 6.857671 -4.063433 12.148404 -1.953685 13.973578 2.392618 11.418611 -7.816768 -2.122902 -5.031775 -1.707398 -9.141616 10.102916 -13.772609 -0.210213 8.499482 -0.963373 -12.010614 7.166924 5.049617 3.637918 -3.072860 -4.462062 -4.678640 1.191164 -3.018388 6.953996 7.431244 -3.507244 -11.585918 -1.645162 10.258324 -7.684590 -1.453342 4.404030 0.794882 14.982187 -9.930222 4.409752 4.319424 4.348996 -12.015807 -12.521609 3.785998 -6.840402 -1.601126 5.568840 -15.346749 -9.337386 -5.393145 5.991646 -8.448230 0.288133 2.714079 13.378596 4.419725 -5.757759 5.144271 2.251386 2.846502 -0.419573 2.066141 2.408039 5.694236 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/aho-corasick-algorithm.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = -0.319156 0.068032 -0.134641 -0.270452 1.035769 0.010298 -0.117974 0.520674 0.289096 0.355881 -0.605010 -0.188847 -0.016849 -0.432960 0.149661 0.181676 0.070391 0.184506 -0.375898 -0.352523 0.194594 0.179759 0.091581 -0.287203 -0.044892 -0.369422 -0.258812 0.094638 0.042107 0.137999 -0.480571 0.135263 0.504118 -0.114189 0.245781 0.232231 0.566108 0.400079 -0.064303 0.341169 0.452660 0.172081 -0.152976 -0.540825 0.166721 -0.413587 -0.511750 -0.175073 0.214195 -0.542271 0.508038 0.305170 0.116198 -0.143658 -0.141914 0.296881 0.195746 0.012353 0.458486 0.316746 -0.602434 -0.139695 -0.334459 0.632410 -0.344272 0.647061 -0.100422 -0.781886 -0.604807 0.526333 0.234607 -0.304291 -0.433045 -0.070592 0.083068 -0.176241 0.278902 -0.001110 0.720609 -0.157405 -0.331858 0.275319 -0.249190 0.372678 0.020824 -0.060608 -0.161079 -0.144850 0.173351 -0.323706 -0.322107 0.464046 -0.311547 0.330554 -0.419368 -0.284217 0.036493 -0.072087 -0.056084 -0.414558 0.128324 0.220307 0.039644 -0.006736 0.061842 -0.334931 0.419828 0.428516 0.068300 0.099856 -0.020137 -0.057791 -0.047377 0.137037 -0.012699 0.072302 -0.510933 0.205333 -0.105998 0.043574 -0.284713 -0.020978 0.440858 0.061034 0.220430 -0.403793 0.549487 0.152487 -0.381917 -0.086291 0.168033 -0.067988 -0.443234 0.109440 0.248974 0.057515 -0.054049 0.075408 0.223122 -0.203557 -0.464811 -0.083076 -0.303958 0.035449 -0.439422 -0.028131 -0.047728 -0.140367 -0.170328 0.313414 0.222441 0.146991 0.555157 0.255615 -0.164184 -0.070953 -0.557244 0.418449 0.805216 0.035447 -0.433467 0.196641 -0.395135 0.261058 0.237525 0.102132 -0.096080 0.435490 0.061679 0.228514 -0.279904 -0.089856 0.547419 0.403400 0.344207 -0.592422 -0.090709 -0.400202 0.159997 0.727159 0.508170 -0.742093 0.125874 0.600973 -0.153271 -0.072569 0.124589 -0.325589 -0.226064 -0.387028 0.196216 0.352866 -0.536009 -0.369922 0.161389 -0.388554 0.480792 0.075738 -0.057886 0.070710 -0.455953 0.107135 0.781062 0.106233 0.044310 0.008323 -0.210791 -0.258342 -0.597857 0.015762 0.373839 -0.292971 -0.131082 -0.313009 -0.094618 0.669531 -0.321084 0.137908 -0.415025 0.214147 0.238618 -0.140604 0.249732 -0.394095 -0.213131 -0.189800 -0.269539 0.173494 -0.485790 -0.091729 0.285219 -0.306628 0.531163 0.357295 -0.183232 -0.163847 0.319886 -0.016641 0.490751 0.032221 0.171291 0.111872 0.463813 -0.281762 0.038848 -0.269906 -0.131501 -0.270945 0.517821 -0.597873 -0.062458 0.382205 -0.290733 -0.388034 0.356759 0.358366 0.343160 -0.147546 -0.217059 -0.217114 -0.035526 -0.164072 0.191655 0.286195 -0.298982 -0.529965 -0.063004 0.323432 -0.635887 -0.396161 0.244633 0.076550 0.653866 -0.393548 0.270565 0.290620 0.121612 -0.827371 -0.258860 -0.174926 -0.187305 -0.166033 0.118426 -0.644645 -0.522630 -0.211425 0.307797 -0.340847 -0.174477 0.061875 0.528281 0.162044 -0.043262 0.345808 0.159756 0.122946 0.029771 -0.066218 0.168440 0.155484 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = -2.224255 2.298161 1.153540 -2.264100 3.965668 -0.619743 0.736829 1.234764 1.035079 1.136907 -4.606289 -1.445235 -0.606489 -3.769915 0.551642 -1.598125 0.675191 1.791215 -1.020476 0.904403 1.832581 -1.093394 -0.004094 -3.012405 0.033604 -1.879943 -1.246135 -0.077042 -0.417118 1.102527 0.531647 1.011895 3.446404 1.574888 2.662214 2.529686 0.571420 4.392343 0.367469 2.297399 1.218195 1.952642 -0.607936 -4.707539 1.537341 -2.207276 -1.748861 -2.880265 0.299905 -3.691580 2.448113 2.145757 0.634368 -0.767094 -2.674196 -0.264717 3.712250 1.662655 2.691487 2.165972 -2.125119 1.161555 -1.776516 -0.757050 -1.877151 2.198329 1.945385 -2.988315 -0.691907 2.176197 2.338889 -2.011838 -3.074803 -0.574561 0.511930 -1.168365 1.732484 -0.391319 -2.104719 -1.111517 -1.527476 0.855205 -0.319409 2.844237 -0.348909 -0.448170 -1.238565 -0.809122 1.525457 -1.794394 -2.188628 2.496250 -0.661845 0.827774 -1.288424 2.080137 1.095156 -0.298801 -1.720401 -1.784509 1.356789 0.760511 0.220114 1.496203 -3.453110 -2.694279 2.993631 2.381920 -1.727086 1.377875 0.965179 1.721177 0.781359 0.575153 -2.670050 2.356358 -3.618113 0.827810 -0.625445 -0.004950 0.000316 -0.405358 0.418028 0.000106 0.595713 -2.249480 3.674376 2.549906 -1.529661 -1.449753 1.507187 -1.230259 -2.606860 -0.418439 1.558028 1.442713 0.399926 0.318784 -0.695309 -1.763492 -0.340742 -2.162153 -1.372307 3.213831 -1.781473 -0.255755 -0.544712 -1.149589 -1.288951 0.777631 0.320919 -0.127889 3.152255 1.256275 -1.530326 -0.708057 -2.111986 1.075319 5.485187 1.713463 -2.710212 0.967975 0.381061 1.088502 1.258235 0.109902 0.571694 0.662709 -2.212500 -1.344578 -1.519285 -2.532392 2.614679 2.791749 1.618832 -4.174320 3.364006 0.051850 -0.456582 4.970758 2.186806 -2.836999 -0.509328 3.446041 -3.204369 -1.416920 0.484247 -0.262371 -0.588270 -1.321596 1.028875 -0.008387 -2.856319 -3.314416 -0.802175 -3.186903 2.535430 0.826659 1.176271 -1.199069 -2.440459 -1.743947 5.387738 0.124377 -0.905796 0.316883 -0.783708 -0.384445 -3.879550 0.457164 1.493982 -1.725614 -1.196905 -1.549072 0.654626 3.069695 -3.161138 -0.306059 -0.120410 -1.107376 1.177896 -0.686048 0.905690 -3.771530 -2.173859 -0.234402 0.193123 1.608961 -0.191015 1.104299 3.686693 -1.270657 1.484739 2.878594 0.165544 0.660409 3.392809 -0.869698 2.908321 -1.823009 3.372157 0.350761 2.791941 -1.588784 -1.113871 -0.209580 -0.706280 -1.430380 3.098755 -3.106993 0.370970 2.067031 -1.266541 -1.405992 2.952622 1.304640 1.610506 -0.869334 0.647798 -1.673370 0.403721 -0.346266 0.539060 2.264360 -0.013529 -3.549613 -1.324894 2.369452 -1.586323 -1.653155 1.274265 0.143162 3.552184 -2.282282 2.258360 0.608481 -0.997154 -3.070825 -2.464085 1.567722 -2.764861 -1.751013 1.520133 -3.690333 -1.267342 -1.503297 1.925876 -2.256341 -0.291799 -0.190158 2.726899 1.542608 -0.510423 1.316788 0.192404 1.854808 0.153223 -0.044213 0.118302 3.040475 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = -2.249101 3.090900 1.772798 -2.290840 3.662158 -0.348555 0.993580 1.066044 0.893972 1.003019 -4.890600 -1.324784 -0.575577 -3.606785 0.629919 -1.705525 0.162806 2.075483 -0.842081 0.738235 2.057630 -1.023774 -0.212095 -3.344127 0.176854 -1.805702 -1.420558 -0.419129 -0.818087 1.788345 0.669097 1.005490 3.040732 1.800992 2.314017 2.727636 0.441061 4.770571 0.200053 3.583823 1.118755 2.135059 -0.760115 -5.197075 2.138323 -2.498616 -1.170785 -3.347399 0.075948 -4.096473 3.506071 2.066675 0.715542 -1.009893 -2.562725 -0.595419 3.841599 1.951907 2.492357 2.446570 -2.010033 1.560691 -1.830511 -1.184317 -1.839012 2.975927 2.714302 -3.194119 -0.765135 1.945629 3.352307 -2.107475 -3.334199 -0.736632 -0.106343 -0.965902 1.604732 -0.572152 -2.985839 -0.561482 -1.718587 0.798422 -0.152603 3.005260 -0.407829 -0.857984 -2.057966 -0.844891 1.926548 -1.456308 -2.771048 2.850070 -0.037337 1.386214 -1.699971 1.596685 1.197281 -0.195417 -1.426921 -1.241633 1.565102 1.474896 0.264746 1.944351 -4.639882 -2.982037 3.548335 2.827828 -2.460188 0.912011 0.846290 1.634644 0.487227 0.305586 -2.516197 2.951305 -3.691544 0.884802 -0.040341 0.157654 0.271420 -0.600986 -0.184866 -0.752512 0.225370 -1.837159 3.708602 2.449029 -1.950387 -1.474995 1.755482 -1.271006 -2.774442 -0.503541 1.454799 1.917810 0.065471 0.573495 -1.173342 -2.133104 -0.261681 -3.265398 -1.555264 3.551462 -1.634106 -0.451510 -0.810286 -1.347345 -1.470288 0.685471 -0.015692 -0.141795 2.998824 1.571537 -1.103408 -1.396262 -1.848373 0.999351 5.411471 2.724734 -2.745006 0.470920 0.981504 1.285706 1.444918 -0.400889 0.203448 1.402425 -2.328008 -1.516136 -2.131555 -3.162525 2.542700 3.879634 1.931822 -4.138179 3.595611 0.133571 -0.865330 4.860485 2.452793 -2.410860 -0.937720 3.415416 -3.003685 -1.717758 0.387677 0.087577 -0.660744 -0.835509 0.681846 -0.250402 -3.027386 -3.880343 -0.994338 -3.279621 2.761721 0.981080 1.960988 -1.368214 -2.671619 -1.987357 5.118122 0.150805 -1.254050 0.328280 -0.339636 -0.437941 -3.600933 0.880091 2.132708 -1.671349 -2.001805 -1.492834 0.975048 2.966503 -3.592521 -0.744515 1.280534 -1.779100 0.969972 -1.277236 1.286185 -4.843523 -2.279073 -0.544566 0.697531 2.145258 0.636416 1.196034 4.206706 -1.310071 1.182137 4.284552 1.017453 0.269361 3.944072 -0.397730 2.471153 -2.248829 3.111571 0.138410 2.881958 -1.517854 -1.271780 0.095496 -0.183540 -0.981670 3.358708 -2.864880 0.544509 1.863898 -1.861856 -0.614695 3.389629 1.237863 1.753927 -1.095652 0.977421 -1.475251 0.458946 -0.210711 -0.043943 2.659399 0.001119 -3.889488 -1.802751 1.844585 -2.030531 -1.685838 1.463836 0.103549 3.566436 -2.136262 2.576061 0.390739 -1.795183 -3.602898 -2.041916 1.476729 -2.792613 -2.300112 1.615139 -3.369896 -1.058483 -1.612075 2.009284 -2.626491 -0.582364 -0.763403 2.176462 1.579036 0.197158 1.391797 0.405029 2.398665 0.348881 -0.438857 0.123332 3.531925 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -2.327704 0.791848 0.202504 -0.683218 4.595899 0.177208 0.940546 2.470849 -2.380711 2.536518 -2.939989 -0.579394 -1.362886 -2.889927 0.255318 0.110949 1.419346 0.028024 -0.791697 0.613166 1.474666 -1.654942 0.285515 -1.302758 -0.178272 -2.381351 -0.878963 0.318373 3.363772 -0.636669 -1.348280 0.313847 4.288447 0.109417 3.184423 2.107619 1.494293 2.578395 0.719550 -3.214431 -0.591370 2.726075 -1.945686 -2.570429 0.204753 -2.507057 -2.152111 -0.987898 1.419288 -1.128762 -0.987644 2.433242 -0.475675 0.662773 -1.874842 1.593539 2.893503 -0.471460 4.186514 0.822474 -1.458821 -1.540974 -1.729335 2.086308 -1.013395 0.539397 -1.425980 -2.636527 -0.095999 0.124008 -0.613291 -2.237735 -0.985715 2.040941 1.135241 -2.183519 1.721763 -0.237194 -0.430780 -4.332670 -3.032444 0.378059 -1.127476 3.077830 -0.322974 -0.094989 0.222876 0.275645 0.240928 -4.012563 0.017530 2.512431 -2.287096 -0.356863 -0.780305 2.099660 -0.203323 1.324142 -2.309789 -2.109393 0.544000 -0.173141 0.557357 -2.660036 2.424973 -2.119921 0.306890 -0.546265 1.287163 2.440738 2.188672 1.025577 2.208193 2.727872 -2.599202 -0.361841 -2.524842 1.116041 -1.212087 0.093480 -0.508941 1.433403 1.652698 0.394055 3.104624 -4.295896 1.307528 1.416711 -0.720320 -2.776329 0.154092 -2.717391 -2.607105 -0.502200 1.884791 0.064978 0.311675 -1.909452 1.039461 -0.429674 -2.196364 0.231959 -0.302940 3.084127 -4.570373 -0.335847 -0.528622 -0.811428 -0.877677 2.204018 1.543021 1.909209 3.426337 2.106627 -2.071299 2.370323 -3.368992 1.125692 4.619467 0.742634 -3.092127 2.138309 -2.680458 0.278886 1.957224 1.520499 2.403412 -0.133983 -1.969013 -0.705122 2.049727 0.342084 3.836293 0.331967 1.954358 -2.178791 2.808346 -0.917841 -1.546969 3.851576 1.210732 -3.986360 2.287830 1.638051 -1.672528 0.635606 1.214419 -2.841945 -0.737223 -2.891422 0.392059 1.949031 -2.500136 -0.614693 0.591434 -3.167530 3.792232 0.242724 0.339007 1.326582 -2.444640 -0.808444 4.253011 0.466038 -0.016116 -1.666211 -1.833602 -2.719370 -3.547504 0.546159 -0.597732 -1.672200 -0.981723 -3.248345 -0.484707 2.844072 0.064898 1.917344 -5.144279 0.727688 1.354055 1.011443 1.650743 -1.359128 -1.953133 0.060589 -1.525452 1.440631 -2.789494 2.361178 3.025140 -1.995494 2.414511 -0.879962 -0.867493 0.977791 1.006776 -2.858210 3.217137 -0.091776 4.039968 0.043354 2.509669 -2.349046 -0.316699 -0.456574 -0.397247 -1.379543 1.854483 -2.283606 -0.229428 1.444760 -1.948501 -2.825302 0.288963 -0.091615 0.816920 0.181592 -0.906073 -2.499600 -0.161416 -1.518632 1.093142 2.377885 -0.899205 -2.391749 0.677481 0.371670 -0.112327 -0.396900 0.564412 0.019226 2.454869 -3.076513 -0.806032 0.247825 1.169136 -1.929932 -4.105786 0.071289 -1.547708 -1.680132 3.437228 -3.919213 -0.096619 -2.208923 -0.406197 -3.899032 -0.458594 0.526557 4.328503 0.535710 -1.966836 1.340001 0.124414 1.847860 -0.429453 1.088053 0.085275 1.012959 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.538388 0.229032 0.164616 -0.440387 1.587131 0.055478 0.052863 1.087473 0.248312 0.523252 -1.027748 -0.121681 0.085528 -0.395711 0.154638 -0.003299 -0.055687 0.297424 -0.662548 -0.429681 0.343182 0.539398 -0.063244 -0.492350 -0.114147 -0.408373 -0.526684 0.076321 0.050092 0.174155 -0.566542 0.139526 0.922906 -0.217813 0.741432 0.529156 1.022575 0.586023 -0.311900 0.808578 0.618161 0.391780 -0.362413 -0.699754 0.078803 -0.692258 -0.796351 -0.185848 0.237638 -0.838201 0.974551 0.433580 0.175141 -0.016116 0.112735 0.619739 0.153840 -0.164459 0.710839 0.508672 -1.220312 0.130361 -0.653420 1.295079 -0.333259 1.308425 -0.220662 -1.211255 -0.866130 0.522161 0.725598 -0.812809 -0.657445 0.108637 0.008712 -0.265259 0.537075 -0.148679 1.135895 -0.364813 -0.436402 0.434387 -0.241877 0.447252 -0.091253 -0.171589 -0.536948 -0.126466 0.106639 -0.605444 -0.527241 0.964573 -0.727289 0.484209 -1.219005 -0.705679 -0.062873 0.237040 -0.104001 -0.763321 0.305364 0.464099 -0.005348 -0.118943 0.207593 -0.401680 0.403937 0.747206 -0.002722 0.333292 -0.453966 0.272496 0.287147 0.365620 0.151624 0.390079 -0.744193 0.453150 -0.448158 0.150571 -0.241354 -0.006062 0.664249 0.310311 0.424981 -0.486983 0.676403 0.144557 -0.764232 -0.237402 0.216788 -0.429685 -0.875342 -0.004537 0.270354 0.402295 -0.113038 -0.156274 0.301097 -0.379669 -0.494094 -0.688267 -0.311517 -0.358925 -0.700124 -0.233460 -0.048099 0.013903 -0.429858 0.787080 0.459677 0.190215 0.909124 0.370326 -0.052149 -0.341371 -0.837051 0.358834 1.036576 0.096154 -0.729957 0.388988 -0.716487 0.280958 0.484214 0.239000 -0.245330 0.793496 -0.135248 0.152418 -0.435756 -0.231384 0.969287 0.804995 0.327740 -0.819936 -0.030014 -1.008631 -0.245034 1.209017 0.958845 -1.171133 -0.129121 0.610580 0.199912 -0.335218 0.306515 -0.668072 -0.577952 -0.381418 0.155901 0.361721 -0.598655 -0.484665 0.615450 -0.710467 0.878957 0.068206 -0.162340 -0.081117 -0.820712 -0.211931 1.281618 0.164773 -0.109411 0.059539 -0.111120 -0.072511 -0.880612 0.063074 0.618176 -0.208898 -0.431613 -0.515373 0.181280 0.843410 -0.629987 0.333071 -0.462169 -0.182153 0.308507 -0.628502 0.527627 -1.087393 -0.399283 -0.788466 -0.245947 0.451298 -0.819333 -0.027066 0.932042 -0.314567 0.832837 0.839117 -0.614604 -0.616974 0.630674 -0.249374 0.778932 0.005157 0.014854 0.102217 0.632107 -0.624099 -0.228056 -0.408807 0.125671 -0.380006 0.796061 -0.662273 0.083087 0.049680 -0.751217 -0.221200 0.587847 0.315076 0.099763 -0.161406 -0.200226 -0.595844 -0.164362 -0.559447 0.028520 0.558035 -0.547863 -0.941807 0.043474 0.147664 -1.081789 -0.328292 0.184742 0.128818 0.961104 -0.594738 0.211073 0.499221 0.036961 -1.430097 -0.522827 -0.428509 -0.547341 -0.498890 -0.074512 -0.608738 -0.846409 -0.431963 0.247093 -0.673271 -0.780881 0.417288 0.930579 0.461546 -0.240193 0.416829 0.129131 0.652681 0.258411 -0.016856 0.194938 0.238572 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -1.195745 0.493886 0.215341 -0.477881 2.155496 0.045577 0.462590 0.850524 -0.339232 1.379246 -1.632830 -0.782245 -0.584493 -1.435686 0.050057 -0.434769 0.433453 0.075639 -0.517933 0.070422 0.696807 -0.599091 0.056618 -0.669366 -0.205258 -1.426278 -0.684252 0.213663 1.403026 -0.595403 -0.420815 0.142860 2.282367 0.028699 1.892345 1.207382 0.842383 1.364078 0.113399 -0.467027 -0.126392 1.303970 -1.003618 -1.261570 -0.104273 -1.119643 -1.182672 -0.565375 0.640975 -0.573596 0.145824 1.225814 -0.204646 0.368298 -0.838422 0.852514 1.134853 -0.012488 2.139258 0.437136 -0.904937 -0.110322 -1.159473 1.507700 -0.692493 0.603209 -0.654642 -1.462429 -0.182547 0.061507 -0.168295 -1.017970 -0.700035 1.106331 0.681625 -1.179313 0.712993 -0.310632 -0.507230 -1.816329 -1.438015 0.442776 -0.153857 1.434391 -0.040609 -0.014797 0.228477 0.297519 -0.035069 -2.073173 -0.063008 1.526400 -1.279755 -0.147037 -0.490685 0.821415 -0.171077 0.725704 -0.973363 -1.012722 0.329527 -0.074071 0.256883 -0.941192 0.748836 -1.215028 0.346562 0.029780 0.251763 0.787267 1.100366 0.478623 1.240695 1.462034 -1.281100 -0.031670 -1.327097 0.652828 -0.488491 0.004349 -0.185025 0.661063 0.501713 0.363807 1.631806 -2.055901 0.663256 0.558267 -0.642563 -1.393964 -0.115138 -1.401949 -1.407851 -0.274116 0.813604 0.298999 0.167566 -0.992103 0.355291 -0.235781 -0.779000 -0.149748 0.084043 1.085466 -1.722460 -0.209871 -0.181792 -0.312160 -0.743791 1.367432 0.930349 0.932664 1.891883 1.030670 -0.766944 0.597781 -1.696472 0.323244 2.221341 0.095518 -1.625551 1.238262 -1.496122 0.093111 0.903649 0.940000 0.992215 -0.001807 -1.022888 -0.307043 0.666726 0.075144 2.013676 0.237868 0.682237 -0.857130 1.419493 -0.344953 -0.982105 2.181007 0.941234 -2.037430 0.789285 0.807759 -0.954827 -0.086427 0.962247 -1.424643 -0.339390 -1.385672 0.188856 0.802498 -1.043677 -0.162070 0.519685 -1.689886 2.010462 0.083041 0.180294 0.673374 -1.417207 -1.106473 2.264618 0.063279 -0.031461 -0.756565 -0.797582 -1.026443 -1.792225 0.247686 -0.040380 -0.838074 -0.507471 -1.612037 0.233178 1.488717 -0.173165 1.240812 -1.808578 -0.091955 0.693227 0.282228 0.880752 -0.609908 -0.916596 -0.184306 -0.544449 0.723538 -1.298739 1.131966 1.793716 -0.830699 1.354245 -0.257686 -0.989721 0.178202 0.629842 -1.522798 1.754579 -0.181870 1.035854 0.036518 1.175236 -1.157779 -0.305765 -0.123921 -0.178337 -0.654785 0.814012 -1.040123 -0.058449 0.348057 -1.298250 -1.036347 0.230564 -0.003960 0.278442 0.095061 -0.248701 -1.391912 -0.075560 -0.866657 0.458234 1.186175 -0.089029 -1.142970 0.551526 0.129832 -0.179008 -0.170689 0.168406 -0.017171 1.323665 -1.577258 -0.452957 0.251493 0.432919 -1.198089 -2.021055 -0.187310 -1.211412 -0.864610 1.211616 -1.763445 -0.162211 -1.164907 -0.259401 -1.693767 -0.473276 0.530705 2.313295 0.696636 -1.132853 0.575076 -0.056644 1.125382 0.037670 0.263032 0.305895 0.632376 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.351096 -0.203914 -0.439071 -0.111294 0.876452 -0.194204 -0.179804 0.613153 0.298274 0.340213 -0.334226 -0.273323 -0.184670 -0.415949 0.153381 0.436094 0.209156 0.357868 -0.367405 -0.327443 0.315752 0.219110 0.069137 -0.152575 -0.022766 -0.052317 -0.178196 0.105633 0.055823 -0.090511 -0.661895 0.232181 0.618095 -0.057922 0.397750 0.257297 0.563773 0.488808 0.019319 0.179057 0.235565 0.317937 -0.192154 -0.574798 0.299813 -0.378563 -0.330578 -0.128899 0.312957 -0.287432 0.809143 0.310421 0.058030 0.020568 -0.126957 0.147776 0.088451 0.115732 0.504694 0.298000 -0.526802 -0.032722 -0.305291 0.669608 -0.372482 0.554153 -0.069903 -0.734313 -0.548206 0.277594 0.462899 -0.576183 -0.493529 0.039502 -0.007630 -0.157964 0.347856 0.089589 1.078839 -0.329104 -0.664632 0.118408 -0.450168 0.364650 -0.141795 -0.059051 -0.386462 -0.105891 0.124041 -0.382012 -0.146874 0.296728 -0.414526 0.535638 -0.372549 -0.341853 -0.155850 0.031516 -0.207345 -0.375080 0.099362 0.106100 0.143227 0.244887 0.290644 -0.016712 0.393361 0.161316 0.181202 0.078230 0.325681 -0.093651 0.042850 0.208099 0.225780 -0.094719 -0.504190 0.261452 -0.077664 0.121492 -0.162670 0.152635 0.510415 -0.172479 0.293142 -0.480927 0.357983 0.040539 -0.254235 -0.106173 0.212808 -0.115370 -0.407760 -0.094702 0.467359 -0.017746 -0.195692 -0.060162 0.290807 -0.059643 -0.658026 0.007220 -0.348153 -0.115253 -0.386666 -0.039107 -0.194393 -0.361761 -0.060846 0.234846 0.157047 0.320667 0.480685 0.384227 -0.262910 -0.200887 -0.636690 0.343738 0.639593 -0.036593 -0.482929 0.190713 -0.380835 0.257998 0.363266 0.243630 0.093236 0.256973 0.351739 0.386871 -0.162215 0.140069 0.569823 0.186415 0.411487 -0.410371 -0.359757 -0.181911 0.059765 0.847657 0.253422 -0.732958 0.127346 0.361114 0.160741 -0.026362 0.051071 -0.278514 -0.191344 -0.474803 0.319029 0.442277 -0.596813 -0.229123 0.335638 -0.393350 0.416984 -0.043775 -0.178358 0.237977 -0.738259 0.401933 0.790276 0.139666 0.016997 -0.122204 -0.371966 -0.100702 -0.549726 0.132502 0.165427 -0.056078 -0.160977 -0.345327 -0.117867 0.771991 -0.045062 0.117066 -0.419062 0.223864 0.238433 -0.277420 0.256461 -0.473604 -0.208190 -0.072329 -0.166210 0.258340 -0.376122 -0.230355 0.351039 -0.447403 0.232154 0.626039 0.093178 -0.146935 0.263535 -0.176870 0.454301 0.013584 0.092438 -0.010673 0.354347 -0.290761 0.033000 -0.200596 0.358771 -0.249917 0.370666 -0.362903 -0.074490 0.243570 -0.360375 -0.324913 0.155741 0.290579 0.291235 0.012953 -0.383400 -0.198361 -0.038839 -0.161541 0.173663 0.394109 -0.195960 -0.430772 0.076379 0.052813 -0.538821 -0.108112 0.218544 0.030089 0.662609 -0.422852 0.072800 0.237231 0.164435 -0.540589 -0.283578 -0.290552 -0.056249 -0.026935 0.323418 -0.546437 -0.440501 -0.204572 0.317932 -0.322215 0.071397 -0.115234 0.480993 0.280942 -0.008172 0.429666 0.184251 0.199607 0.036472 -0.178661 0.139508 0.286033 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.795653 0.614367 -0.195202 -0.559524 2.490251 -0.026829 1.178391 0.754134 -0.861557 1.648684 -2.482071 -1.921912 -1.331441 -2.345303 0.012177 -1.206959 0.973354 0.080514 -0.827759 0.477112 1.159877 -1.337508 0.058529 -1.237351 0.020934 -1.628486 -0.873465 0.071543 2.239066 -0.492165 -0.658744 0.179811 3.645854 0.375934 2.752866 1.716088 0.506997 2.257307 0.287528 -1.550039 -0.525834 2.410905 -1.406168 -1.994624 -0.443419 -1.756305 -1.385435 -0.782251 0.996903 -0.615817 -0.221057 1.620695 -0.321976 0.604051 -1.567172 0.693311 2.084460 0.679858 3.155324 0.568624 -0.743824 -0.232905 -1.430405 1.868777 -1.000278 0.483691 -0.625541 -1.703288 0.142202 -0.247278 -0.740114 -1.065602 -1.251876 1.433864 1.300833 -1.547631 1.140830 -0.279195 -1.985104 -2.225183 -2.210583 0.163219 -0.745937 2.241775 -0.431253 -0.207936 0.477584 0.289519 0.278436 -2.794254 -0.163671 2.249676 -1.445857 -0.517617 -0.456778 1.780921 0.012816 1.119167 -1.929738 -1.199399 0.304729 -0.289197 0.334533 -1.639813 0.649827 -1.709164 0.456182 0.104283 0.299281 2.028683 2.075238 1.064920 1.812235 1.889427 -2.071562 -0.249179 -1.795321 0.767463 -1.156535 -0.160083 0.156734 1.138207 0.483780 0.217157 2.240823 -2.967529 0.902967 1.254557 -0.602700 -1.914405 -0.054958 -2.163417 -2.132305 -0.501635 1.243804 0.593532 0.330164 -1.578196 0.313823 -0.245898 -0.840483 0.416113 0.173628 1.555517 -2.174823 -0.482627 -0.346027 -0.492868 -0.879725 1.839533 0.846776 1.050204 2.443073 1.404185 -1.574090 0.761952 -2.151595 0.590330 3.445209 -0.330815 -2.410197 1.421331 -1.775705 0.148898 1.247167 1.193855 1.785111 0.050100 -1.437764 -0.532488 0.317347 -0.212281 2.725585 0.487817 0.897477 -1.141744 2.681307 -0.492493 -1.427512 2.840883 1.153894 -2.413595 0.879329 0.993567 -2.334216 -0.086730 1.048080 -1.655212 -0.006712 -2.505844 0.380151 1.046569 -1.501778 -0.147158 0.386993 -2.510373 2.799508 0.146607 0.041420 0.565245 -2.163634 -1.559581 3.469563 0.119721 -0.067786 -1.123069 -1.120911 -1.867400 -2.772273 0.467123 -0.694060 -1.171831 -0.782613 -2.191940 0.295640 2.014095 -0.279884 1.698002 -2.303949 -0.043156 0.852889 1.099075 1.293146 -0.438861 -1.622452 0.103634 -0.721260 1.282623 -1.690509 1.710315 2.463248 -1.160419 1.600133 -0.562731 -1.336698 0.554321 1.005043 -2.255528 2.305367 -0.599070 1.488248 -0.211100 1.706422 -1.397012 -0.671846 0.013681 -0.451647 -1.073925 1.111919 -1.472076 0.104330 0.620150 -1.554065 -1.388534 0.445088 -0.350812 0.653921 0.201363 -0.263607 -2.329040 0.154873 -0.835372 0.501097 1.835468 0.398222 -1.593867 0.501257 -0.024766 0.142982 -0.052774 0.114956 -0.346114 1.716643 -2.124187 -0.820401 0.173681 0.501094 -0.975141 -2.937152 -0.170506 -1.480075 -1.289291 2.454561 -2.123797 0.279976 -1.668868 -0.401394 -2.341702 -0.935676 0.669005 3.086632 0.938430 -1.613279 0.622203 -0.001034 1.825008 -0.014506 0.388086 0.405413 0.956916 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.990870 0.008658 0.169521 -0.361060 1.840381 -0.327670 0.088206 0.928545 0.422858 0.629538 -1.409384 -1.012169 -0.657275 -1.145541 0.278888 -0.152902 0.597303 0.590491 -0.784328 -0.286390 0.807116 0.173491 -0.103362 -0.766166 0.065314 -0.511476 -0.759661 0.062283 0.302117 -0.163042 -0.797179 0.597158 1.977328 0.226122 1.549855 1.038200 0.989979 1.505758 -0.154583 0.240036 0.344167 1.157858 -0.612225 -1.508797 0.418773 -1.067222 -0.818781 -0.671413 0.536705 -0.621185 0.927522 0.856755 0.110371 0.279382 -0.522595 0.269685 0.806532 0.526464 1.400094 0.816950 -1.030458 0.592832 -0.884370 0.868665 -0.845719 1.231384 -0.284495 -1.532629 -0.788441 0.346908 1.011237 -1.178723 -1.166785 0.241614 0.262187 -0.474141 0.908343 0.142342 0.848510 -1.113683 -1.572614 0.262399 -0.630936 1.096632 -0.396026 -0.319064 -0.393420 -0.216119 0.392549 -1.098108 -0.496808 1.063157 -0.936257 0.533939 -0.816175 -0.202780 -0.140082 0.426054 -0.744504 -1.104153 0.422508 0.007107 0.169144 0.526958 0.345720 -0.298054 0.742973 0.493534 0.054874 0.583995 0.602047 0.358307 0.734641 0.581573 -0.354234 0.188064 -1.181158 0.659864 -0.665993 -0.005507 0.026436 0.386650 0.713928 -0.112839 0.787866 -1.232609 0.810648 0.596906 -0.752041 -0.415182 0.419574 -0.863595 -1.381406 -0.401084 0.996413 0.507585 -0.123411 -0.426376 0.287743 -0.427754 -0.541783 -0.234131 -0.640783 0.120744 -0.931232 -0.344758 -0.376290 -0.666956 -0.478857 0.810794 0.323955 0.586824 1.305570 0.838812 -0.950988 -0.647406 -1.431476 0.461720 1.854693 -0.430273 -1.289160 0.562550 -0.556325 0.470727 0.910098 0.630155 0.389146 0.208946 0.031576 0.221714 -0.790439 -0.202080 1.482810 0.796448 0.692641 -1.080317 0.326234 -0.411233 -0.542469 2.030317 0.715577 -1.506514 -0.020823 0.901178 -0.440915 -0.549951 0.290808 -0.773001 -0.430668 -1.201271 0.584706 0.593415 -1.283439 -0.422881 0.752910 -1.322775 1.178006 0.101120 -0.168364 0.180064 -1.548825 -0.647239 2.252121 0.044318 -0.018112 -0.294246 -0.675754 0.047510 -1.582907 0.330020 0.103567 -0.294155 -0.497734 -0.950262 0.297265 1.591630 -0.553716 0.526228 -0.715752 -0.054432 0.494799 -0.440288 0.737939 -1.204377 -0.909490 -0.212313 -0.458238 0.691781 -0.837554 0.055619 1.411500 -0.824928 0.584221 0.952748 -0.729458 -0.250733 0.854335 -0.768239 1.201733 -0.346652 0.479525 -0.004131 1.039947 -0.883415 -0.476916 -0.216104 0.385346 -0.818561 1.047464 -0.910651 0.155296 0.318981 -0.957918 -0.618894 0.615365 0.248655 0.427289 -0.086674 -0.339034 -1.132018 0.252279 -0.282842 0.313943 1.131132 -0.124136 -1.232518 0.092200 0.214161 -0.919105 -0.303162 0.349162 -0.190628 1.513011 -1.089339 0.044078 0.480182 0.221071 -1.076706 -1.154531 -0.342974 -0.968467 -0.396705 0.991564 -1.159467 -0.687975 -0.732580 0.422115 -0.641498 -0.342965 0.202793 1.407485 0.911849 -0.541242 0.640252 0.271444 0.906991 0.167676 -0.276399 0.129400 0.817121 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -3.701339 2.623625 2.036296 -1.659920 6.001058 0.349697 2.273968 2.829533 -2.918915 3.739871 -5.707523 -1.349500 -1.756113 -4.781853 0.088988 -2.454165 1.172846 -0.020700 -1.220898 1.122038 2.319522 -2.496506 -0.496308 -2.865668 -0.409154 -4.726368 -1.615594 0.043451 4.428250 -0.872321 -0.510287 0.547679 7.112457 0.698712 6.154710 4.305106 2.046567 4.551076 0.541395 -1.939664 -0.918395 4.415960 -2.997656 -4.137906 -0.671841 -3.616143 -3.209856 -2.207542 1.406207 -1.980991 -0.481539 3.717229 -0.565888 1.207747 -2.902454 2.473606 4.260168 -0.366405 6.355461 1.617514 -2.467061 -0.449396 -3.329573 3.967092 -1.830488 1.424541 -0.869647 -3.326067 0.917344 -0.295580 -0.430770 -2.232751 -1.625539 3.224214 2.192481 -3.627620 2.048318 -1.132787 -5.129929 -5.221693 -3.835033 1.128085 0.090598 4.691449 -0.261224 -0.352176 0.944164 0.918976 0.276098 -6.101885 -0.662560 5.534482 -3.211873 -1.428778 -3.165846 3.789060 0.154160 2.518825 -3.195128 -2.921610 1.504393 0.013664 0.564118 -4.301104 0.959922 -4.211030 1.083310 0.258353 -0.195945 3.432437 2.117600 2.245328 4.178069 4.198906 -4.261194 1.261365 -4.286362 1.793127 -1.406237 -0.246566 0.220502 1.458915 0.942904 0.985624 4.562188 -5.935265 2.056727 2.544344 -1.974529 -4.712167 -0.229973 -4.849232 -4.567866 -1.234202 2.207081 1.928654 0.903030 -3.065879 0.486957 -1.037392 -1.660746 -2.261444 0.512312 4.381664 -5.413646 -1.013672 -0.559364 -0.326971 -2.702465 4.165337 2.339316 2.196442 5.550558 2.894479 -2.100507 1.813740 -4.506626 0.343652 7.029532 1.022612 -5.005527 3.547059 -3.663747 -0.051411 2.258695 2.474608 3.035390 0.043649 -4.797401 -2.405544 1.512315 -1.111303 5.918975 1.798659 1.532801 -2.269867 6.401076 -1.060148 -4.067558 5.758479 3.383086 -5.110047 1.829529 2.408598 -3.584803 -0.917231 2.915689 -4.189409 -0.943174 -3.570051 0.243182 1.473891 -2.972098 -0.451169 0.951654 -5.404797 6.236553 0.610940 1.510024 0.657712 -3.775608 -4.861754 6.582942 -0.432787 -0.542076 -2.117326 -1.809943 -4.066569 -5.501810 0.890973 -0.207893 -2.531044 -2.247320 -4.782217 1.062656 3.781409 -1.524921 3.418381 -4.906761 -1.492336 1.873402 1.505839 2.878232 -2.592276 -3.356065 -0.743738 -0.966432 2.872644 -3.373307 4.663812 6.386771 -1.887238 4.225427 -1.007646 -3.413263 0.710490 2.659550 -4.881766 5.032182 -1.074532 3.012316 0.145994 3.652007 -3.645745 -1.865978 -0.062855 -0.810903 -1.870310 2.580339 -2.953171 0.438619 0.176820 -4.038093 -2.326078 1.334219 -0.705335 0.603317 0.023585 0.304717 -4.395087 -0.064369 -3.497069 0.843031 3.882939 -0.231991 -3.392852 1.240500 0.288866 -0.190836 0.610786 0.319308 -0.148472 3.724334 -4.586775 -1.128392 0.338933 0.609710 -3.453879 -6.577219 -0.045489 -4.278654 -3.729677 3.943875 -5.048363 -0.016426 -3.683001 -0.980269 -6.015250 -2.413688 1.825859 6.817145 1.882606 -3.215870 1.163903 -0.436757 4.134963 0.373658 1.381399 0.493268 2.260115 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.360803 -0.057523 -0.153286 -0.161301 0.741469 -0.104958 -0.136112 0.464334 0.476960 0.244826 -0.509494 -0.467308 -0.218262 -0.408802 0.148342 0.159815 0.134743 0.320495 -0.384245 -0.320293 0.360460 0.194361 0.010834 -0.304895 0.052532 -0.048580 -0.286404 0.004579 -0.062115 0.116381 -0.507216 0.217555 0.559378 0.090462 0.389660 0.292687 0.473099 0.609974 -0.133134 0.585481 0.222355 0.394700 -0.190217 -0.687551 0.363685 -0.468423 -0.235623 -0.241407 0.222006 -0.404616 0.864584 0.302341 0.094498 -0.009207 -0.109804 0.019720 0.157073 0.347401 0.448910 0.387942 -0.497759 0.150024 -0.370360 0.338982 -0.355435 0.744464 0.088811 -0.733452 -0.557409 0.233662 0.538990 -0.489828 -0.525795 -0.033956 -0.037957 -0.074831 0.384223 0.054709 0.734518 -0.127670 -0.613340 0.110266 -0.312034 0.392569 -0.171457 -0.153448 -0.378673 -0.154622 0.212936 -0.303788 -0.287295 0.340289 -0.315765 0.521628 -0.343504 -0.359491 -0.122830 0.097371 -0.183772 -0.283147 0.159600 0.230689 0.086029 0.395533 -0.110976 -0.134798 0.591429 0.340168 -0.029189 -0.026282 0.285477 -0.048491 0.010215 0.147522 0.068230 0.148411 -0.461728 0.225618 -0.085073 0.125216 -0.068022 0.086645 0.335211 -0.219858 0.170017 -0.350037 0.414966 0.156460 -0.364581 -0.058050 0.262270 -0.226455 -0.512911 -0.085666 0.408799 0.154942 -0.180060 -0.028220 0.133293 -0.215118 -0.420088 -0.107081 -0.384208 -0.117599 -0.231865 -0.127379 -0.198393 -0.355712 -0.154612 0.233149 0.064453 0.195072 0.457803 0.334693 -0.269161 -0.454910 -0.495934 0.312443 0.711112 -0.050149 -0.492118 0.074816 -0.178608 0.350533 0.367207 0.094160 0.029322 0.373369 0.287052 0.337207 -0.434591 -0.081538 0.525452 0.450008 0.443721 -0.487474 -0.186404 -0.249247 -0.035577 0.831312 0.385274 -0.632986 -0.091616 0.382977 -0.045778 -0.129867 0.017123 -0.116392 -0.096269 -0.430574 0.262933 0.290183 -0.603403 -0.369181 0.283341 -0.468239 0.442097 0.039306 0.087944 0.101222 -0.731350 0.148801 0.849034 0.103417 -0.074894 -0.052808 -0.222076 -0.055086 -0.537623 0.171129 0.235803 -0.091847 -0.259866 -0.285903 0.048227 0.726758 -0.249160 0.040127 -0.014547 0.041616 0.165398 -0.431718 0.344669 -0.536199 -0.317983 -0.179763 -0.149344 0.385409 -0.225834 -0.230232 0.481810 -0.362409 0.248281 0.760108 0.069040 -0.235554 0.406751 -0.060151 0.396970 -0.145165 0.033536 -0.063502 0.443812 -0.291787 -0.077532 -0.127476 0.253338 -0.205991 0.500072 -0.355603 0.030512 0.221163 -0.452028 -0.138295 0.330744 0.209407 0.322959 -0.063455 -0.186826 -0.305457 0.040622 -0.054837 0.084918 0.457173 -0.087903 -0.542127 -0.118898 0.034582 -0.565113 -0.259873 0.257392 -0.073692 0.707513 -0.365802 0.124596 0.258223 -0.059805 -0.566489 -0.180923 -0.292358 -0.186856 -0.106619 0.308246 -0.440507 -0.335320 -0.225000 0.314431 -0.236021 -0.045266 -0.153822 0.401739 0.387165 0.007263 0.375601 0.228495 0.326064 0.109194 -0.255008 0.138680 0.369063 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -14.700609 13.520868 13.650594 -6.174838 16.927905 6.655934 5.921713 5.408110 -9.247096 17.370091 -22.066984 -7.679337 -9.071218 -13.820992 -3.268709 -15.868274 1.682394 -4.472354 -3.432485 6.738572 8.238943 -13.452346 -0.655929 -9.707819 -2.897266 -18.211967 -9.245126 -0.206292 20.130193 -6.244943 1.250069 -2.132604 27.388891 3.581624 23.795464 16.345651 4.370384 19.636798 1.799183 -2.979449 -8.164480 18.750445 -14.524282 -12.125435 -2.326988 -16.650085 -8.250852 -6.795022 5.329108 -3.989905 -1.843716 14.799185 -4.271567 5.550976 -11.854950 9.277344 13.994123 2.952876 28.214154 2.593485 -6.773134 -1.568300 -15.653844 9.621997 -6.644460 5.912961 -5.263322 -9.704277 7.746186 -7.658712 -2.088473 -11.549271 -5.166589 17.869251 6.253728 -16.017340 6.347831 -7.708213 -29.847707 -20.688915 -14.810586 4.004663 5.631826 16.520916 -0.651143 0.034667 1.663000 8.552398 -2.039715 -27.817153 0.668883 21.624605 -12.322987 -4.800866 -6.311115 18.141476 -3.113306 12.807078 -13.966503 -3.916770 4.980033 1.227027 2.464877 -22.116346 3.647965 -21.410384 6.910037 -1.807502 -3.129435 5.456107 12.760328 10.343976 21.424253 21.396628 -21.718033 4.198183 -15.731521 3.500275 -2.042972 -1.679788 2.058549 9.451997 -6.929913 3.625806 21.814340 -24.932887 4.847308 6.663352 -10.668555 -23.521393 -3.724804 -22.359575 -17.261946 -4.355239 6.458800 7.942806 3.991045 -16.706402 -1.648766 -5.623844 -3.721738 -10.290638 8.383374 20.646641 -16.736383 -4.248674 -1.234519 -1.305465 -11.267889 18.270393 11.102713 9.455113 23.177135 11.561235 -5.449261 6.482028 -15.897753 -2.725904 22.500441 8.059997 -21.526005 15.619592 -13.792291 -1.601308 9.741027 10.339536 15.435145 0.279750 -21.250645 -13.931744 8.896361 -2.473127 23.293395 4.421531 7.038639 -1.386294 29.861937 -3.628520 -19.026934 20.347154 11.577536 -16.684138 4.666695 5.092424 -11.982765 -2.075356 14.910585 -15.167584 0.736049 -11.120986 -4.581765 5.186175 -8.227263 -0.935647 2.988691 -22.814234 29.344433 1.516947 11.106756 6.155924 -17.668075 -25.921053 21.498654 -3.815233 -3.563792 -9.593184 -5.949127 -15.455403 -20.146977 3.932787 -0.094506 -11.733772 -10.267548 -20.573945 8.649213 9.409996 -2.782203 16.072731 -15.641559 -12.223407 6.921136 2.807597 14.418346 -4.709885 -12.404424 -3.600691 -3.016241 15.423255 -11.194673 23.958446 28.210235 -5.456045 17.974074 -6.939439 -9.985255 3.014865 8.989403 -21.949303 20.402196 -6.240079 11.328528 -2.176608 13.134082 -13.269689 -6.811098 3.738858 -1.295177 -2.869373 7.509400 -7.864267 0.941937 -3.911547 -19.483469 -3.744019 1.989565 -6.568996 -2.672749 2.305447 5.845209 -17.732091 -2.848327 -12.332287 1.385705 15.071748 2.904971 -11.559294 6.422735 -4.509614 4.798953 7.267321 -0.814823 -1.668803 11.074883 -18.716422 -10.562227 -0.873878 -2.469389 -10.901381 -25.466236 -3.705310 -16.603386 -14.841409 16.435208 -18.145438 5.142443 -15.765905 -9.056500 -21.203009 -7.544782 7.570926 28.294899 12.132153 -16.991805 2.273526 -3.515950 19.924956 2.160114 3.905709 2.484021 8.590498 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.886541 1.993345 2.016929 -1.461882 3.982360 0.524616 1.145915 1.979524 -0.720747 2.012254 -3.592232 -0.356920 -0.188181 -1.951012 0.074489 -2.017784 -0.247642 0.131563 -1.117356 0.075097 1.014326 -0.230647 -0.293851 -1.706889 -0.522492 -2.588121 -1.442128 0.121298 1.516046 0.103445 0.164477 0.056712 3.328219 -0.191268 2.949206 2.194472 1.807380 2.214058 -0.499952 1.227895 0.631875 1.710561 -1.497449 -2.133194 -0.432237 -2.009599 -2.218977 -0.915690 0.525480 -2.160506 0.511223 1.778313 0.085686 0.211519 -0.748124 1.971288 1.579679 -0.429225 2.968796 1.089242 -2.606811 0.064750 -2.295621 2.828392 -0.868398 2.384016 -0.677795 -2.637534 -0.605973 0.684481 0.241690 -1.559817 -1.207311 1.327723 0.773687 -1.697181 1.106359 -0.975672 -1.750346 -1.664073 -1.070999 1.223575 0.578440 1.972189 0.080194 -0.250510 -0.040509 0.351131 0.033508 -2.900384 -1.095308 3.568062 -1.958907 -0.236445 -2.642150 0.540617 0.148486 1.154516 -0.932374 -1.753697 0.996186 0.872734 0.053267 -2.296376 -0.251863 -2.732262 0.806841 1.353124 -0.575148 1.414265 -0.498654 1.462579 1.817586 2.003972 -1.895222 1.443705 -2.493186 1.113861 -1.142836 0.092436 -0.363072 0.268861 0.474588 1.328094 2.082773 -2.468372 1.729978 0.918971 -1.874447 -2.228538 0.016342 -2.198655 -2.618649 -0.215262 0.615251 1.426910 0.336790 -1.206214 0.196492 -0.991740 -0.457691 -2.338356 0.251668 1.252164 -2.601734 -0.623953 0.009750 0.392481 -1.793638 2.638963 1.676101 0.737661 3.232255 1.266530 -0.217598 0.530969 -2.388061 0.282243 3.572316 0.898694 -2.554518 1.869280 -2.275075 0.129535 1.167002 0.916671 0.459911 1.560365 -2.672964 -1.315124 0.197568 -1.021718 3.191629 1.977824 0.612254 -1.942941 2.819334 -2.090195 -1.846810 3.357310 2.804233 -3.281819 0.382766 1.655768 -1.309016 -1.032029 1.761201 -2.401005 -1.053424 -1.160933 -0.260719 0.668433 -1.379582 -1.017224 0.894307 -2.770564 3.447281 0.345787 0.631947 -0.130885 -1.956363 -3.157861 3.659613 0.041490 -0.480258 -0.531823 -0.359148 -1.527327 -2.917376 0.233847 1.278399 -1.448558 -1.508597 -2.251593 0.962482 1.848545 -1.750346 1.783443 -1.790280 -1.370101 1.016099 -0.243080 1.753343 -2.206440 -1.510985 -1.739655 -0.531341 1.551120 -2.097825 2.013736 3.658604 -0.649566 3.174410 0.309773 -2.652011 -0.692912 1.889914 -1.933855 2.816602 -0.402460 1.172839 0.262950 1.983749 -2.086323 -0.999000 -0.385277 -0.815023 -0.877958 1.878604 -1.866276 0.284124 -0.144265 -2.563020 -0.684244 1.422249 0.197171 0.008849 -0.321350 0.557356 -2.273172 -0.482279 -2.014933 0.084465 1.868235 -0.844125 -2.523482 0.472092 0.378881 -1.449258 -0.576288 0.199794 0.332298 2.203682 -2.271431 -0.008851 0.704394 -0.242920 -3.568155 -2.927422 -0.374278 -2.675741 -2.284660 0.421910 -2.302278 -0.900928 -1.835047 -0.196300 -3.046543 -2.475131 1.572565 3.604118 1.213441 -1.526742 0.722804 -0.229878 2.472218 0.586978 0.641889 0.496449 1.005158 +PE-benchmarks/word-wrap.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -2.661729 2.092117 1.838565 -2.132047 5.540815 0.003561 0.982143 1.910323 0.787643 2.424468 -5.072217 -1.438027 -0.650630 -3.276161 0.329165 -2.232210 0.294797 1.033747 -1.797440 -0.257440 1.632153 -0.077555 -0.068956 -2.589503 -0.424293 -3.506540 -2.280164 0.258462 0.721024 -0.042941 0.301602 0.669115 4.832982 0.279907 3.502223 2.929667 2.423125 3.949028 -0.637053 2.980489 1.582121 2.302883 -1.602560 -3.641773 0.473216 -2.643129 -3.055809 -1.854245 0.828676 -3.379028 1.902883 2.536619 0.394056 -0.105764 -1.631104 1.843627 2.974101 0.060759 3.851932 1.915705 -3.412152 1.085528 -2.866586 2.937048 -2.053986 3.419500 -0.091590 -4.165685 -1.700595 1.738036 1.857965 -2.548529 -3.116879 0.811066 0.932637 -2.022102 1.656598 -0.805372 -1.182964 -2.362897 -2.157694 1.563995 0.364829 2.839309 -0.016641 -0.486130 -0.235290 -0.171977 0.739544 -3.299170 -1.922010 4.055591 -2.285088 0.661168 -3.127027 0.415193 0.165464 0.725810 -1.504431 -2.778279 1.216342 0.783477 0.211444 -0.378729 -1.511320 -3.113522 1.902236 2.190039 -1.059269 1.275632 0.164672 1.591571 1.716993 1.893188 -2.687109 1.750955 -3.730569 1.655286 -0.972789 -0.040001 -0.472214 0.076749 0.748619 1.171135 2.297581 -3.223504 3.068170 1.468375 -2.817030 -2.245562 0.478900 -2.177627 -3.557575 -0.285257 1.426415 1.672561 0.397214 -0.824564 0.187125 -1.585068 -0.583171 -2.602374 -0.674998 1.846604 -2.875783 -0.629976 -0.286057 -0.479336 -2.138324 2.753682 1.652593 0.875227 4.299714 1.771758 -1.000604 0.074716 -3.448229 0.852570 5.494726 1.651487 -3.459160 2.112744 -2.044877 0.886073 1.885433 1.158602 0.422044 1.238525 -2.479039 -0.952404 -0.806437 -1.672768 4.153457 2.746665 1.191682 -3.767690 2.928329 -1.439776 -1.432595 5.660392 3.597700 -4.389193 0.360614 3.146648 -2.123306 -1.776439 1.807359 -2.325241 -1.726508 -1.888714 0.569778 0.866198 -2.486527 -2.016462 0.975966 -3.759530 4.025534 0.559618 0.518678 0.175959 -3.257132 -4.251034 5.538291 -0.121600 -0.395799 -0.401017 -0.959130 -0.640288 -4.464316 0.460840 1.774002 -2.027877 -1.509426 -2.765907 1.325948 3.536452 -2.673046 1.788611 -1.941552 -1.445541 1.483608 -0.881494 1.938397 -3.653560 -2.162733 -1.467976 -0.470762 1.698173 -2.201148 1.486988 4.528663 -1.473731 3.262143 1.502225 -2.754097 -0.687842 2.878971 -1.988555 3.789703 -1.010396 2.021416 0.397361 2.959159 -2.544443 -1.180773 -0.498218 -0.592618 -1.745139 2.869939 -3.219735 0.273053 0.936840 -2.962500 -1.463940 2.444473 0.889969 0.787449 -0.663390 0.349931 -2.677419 -0.007405 -1.284086 0.531146 2.624626 -0.492723 -3.685015 0.083493 1.430869 -2.436924 -1.383431 0.750897 0.323431 3.712067 -3.108701 0.937416 1.076894 -0.392077 -4.655623 -3.831074 0.132653 -3.758296 -2.665664 1.087581 -3.809727 -1.803660 -2.282662 0.807833 -2.908438 -2.115484 1.365517 4.407502 1.960368 -1.654752 1.476090 0.100523 2.755671 0.349017 0.144865 0.776352 2.121006 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.395457 0.146841 -0.011853 -0.573979 1.156250 -0.271715 -0.203045 0.909449 0.502671 0.313611 -0.868124 -0.019602 0.102373 -0.814701 0.118598 -0.130092 0.249614 0.315192 -0.384905 0.085784 0.262449 0.009488 0.032055 -0.520710 -0.102984 -0.439768 -0.062766 0.125197 -0.199456 0.205027 -0.051252 0.275685 0.733778 0.234182 0.678931 0.416114 0.425150 0.665822 0.164962 0.568601 0.507375 0.105119 0.082897 -0.779912 0.100723 -0.315900 -0.674556 -0.321824 0.052883 -0.928082 0.501660 0.448423 0.196319 -0.093350 -0.413344 0.167557 0.392680 0.093104 0.471926 0.454094 -0.940277 -0.146557 -0.368476 0.238442 -0.366891 0.327367 0.298857 -0.589308 -0.223689 0.803706 0.184714 -0.322823 -0.349336 -0.197787 0.246349 -0.247354 0.481018 -0.014605 0.354728 -0.085075 0.057195 0.364165 -0.009869 0.396316 0.005814 0.127386 -0.136324 -0.237699 0.094791 -0.416808 -0.278749 0.426561 -0.534057 0.111307 -0.595289 0.425341 0.218673 -0.160550 -0.218843 -0.667159 0.310671 0.069779 -0.040694 0.033353 -0.483091 -0.478047 0.679268 0.497687 -0.127602 0.399417 -0.236359 0.378078 0.125930 0.178743 -0.315609 0.617340 -0.830997 0.196802 -0.296141 0.000682 -0.227077 -0.264580 0.559246 0.466089 0.103775 -0.440927 0.912260 0.599769 -0.205786 -0.225453 0.276005 -0.179443 -0.451363 -0.014476 0.328951 0.158602 0.223714 0.099628 0.110159 -0.301395 -0.265924 -0.411623 -0.330978 0.311932 -0.378676 0.028389 0.066289 0.010363 -0.279835 0.198283 0.254580 -0.168030 0.715859 -0.050997 -0.265310 -0.060243 -0.499853 0.249706 1.155525 0.069466 -0.498816 0.433713 -0.190640 0.196404 0.042163 0.142154 0.035110 0.101939 -0.387846 -0.159641 -0.145394 -0.321545 0.524187 0.320961 0.186098 -0.962410 0.375536 -0.351704 0.166576 1.102016 0.643872 -0.860621 -0.133562 0.832379 -0.528470 -0.172365 0.129956 -0.164750 -0.123989 -0.253773 0.379794 0.066517 -0.563651 -0.577323 0.028483 -0.568430 0.377643 0.137139 0.132978 -0.422232 -0.401042 0.041408 1.274529 0.041377 -0.094639 0.296141 -0.270134 -0.190985 -0.880136 -0.214389 0.351561 -0.315003 0.132893 -0.195566 -0.092294 0.689722 -0.692089 -0.013460 -0.526503 -0.015492 0.358054 -0.268544 -0.040726 -0.534224 -0.383608 -0.216139 -0.148066 0.220333 -0.454972 0.063399 0.555040 -0.062252 0.754280 0.321526 -0.250885 0.102812 0.556707 -0.239845 0.823761 -0.170528 0.516039 0.297732 0.566355 -0.441559 -0.196800 -0.380113 -0.386666 -0.485885 0.677706 -0.807234 0.046719 0.445982 -0.069808 -0.492432 0.572044 0.431473 0.284972 -0.159136 0.058895 -0.331576 -0.105073 -0.485919 0.400467 0.206918 -0.236708 -0.629428 -0.130867 0.842663 -0.453079 -0.390290 0.250352 0.146400 0.869279 -0.471631 0.505932 0.432045 0.031364 -0.718768 -0.503073 0.249190 -0.526971 -0.208193 -0.217956 -0.992628 -0.659272 -0.158930 0.517413 -0.449938 -0.003124 0.233468 0.824217 0.292818 -0.303024 0.277200 -0.040355 0.074999 0.098734 0.252478 0.024300 0.425959 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -2.733218 1.899902 2.174131 -1.909752 4.851456 -0.303698 1.259758 1.360593 1.063480 2.170175 -4.848628 -2.204265 -1.195396 -3.218086 0.346493 -2.569201 0.783315 1.207912 -1.646506 0.050389 1.848171 -0.344701 -0.038380 -2.555674 -0.207993 -3.108358 -2.278114 0.168783 0.836277 0.049704 0.274104 0.864765 5.006567 0.761108 3.901122 3.020258 1.840317 4.295020 -0.474238 2.333557 1.054298 2.699928 -1.617296 -4.122887 0.792698 -2.633584 -2.612220 -2.314137 0.932770 -3.104468 1.729360 2.538638 0.278931 0.148300 -1.869880 1.082579 3.158960 1.080776 3.918168 1.915104 -2.822796 1.607034 -2.790279 1.599707 -2.017590 3.020450 -0.197882 -4.060076 -1.431414 1.386584 1.781733 -2.587911 -3.084280 0.786482 1.014085 -1.856277 1.724992 -0.543033 -1.480457 -2.435851 -2.696909 1.172840 0.076830 3.015016 -0.391960 -0.561460 -0.411365 -0.218117 0.885062 -3.251429 -1.671129 3.689549 -2.107069 0.582187 -1.861300 0.761549 0.204149 0.876717 -1.778351 -2.614157 1.179029 0.397624 0.313358 0.446199 -1.620747 -2.790322 2.002718 2.042904 -1.022230 1.301908 1.024746 1.686161 1.946949 1.876922 -3.018627 1.813725 -3.685586 1.744294 -1.334788 -0.168319 0.002717 0.549196 0.404690 0.799823 2.230089 -3.361818 2.933281 1.864951 -2.407601 -2.084621 0.656173 -2.309788 -3.527559 -0.565915 1.782003 1.618409 0.321806 -1.054101 -0.078023 -1.643785 -0.093576 -1.899719 -0.872506 1.998319 -2.550780 -0.641018 -0.502673 -0.998362 -1.887851 2.412423 1.322156 0.989375 4.096335 2.026787 -1.722751 -0.474584 -3.423386 0.687995 5.415124 0.752217 -3.453756 1.895010 -1.486198 0.830080 2.124318 1.205439 0.881592 0.838328 -2.134168 -0.889212 -1.149054 -1.531552 4.021544 2.730422 1.471751 -3.775305 3.056349 -1.201949 -1.540948 5.572211 2.996139 -4.224265 0.065450 2.923300 -2.748490 -1.859853 1.500825 -2.017339 -1.224966 -2.358118 0.706927 0.845914 -2.724301 -2.034098 0.876362 -3.891885 3.759946 0.556791 0.561383 0.205618 -3.374491 -3.955004 5.946409 -0.021291 -0.432843 -0.534756 -1.310112 -0.338084 -4.544603 0.695883 1.190519 -1.841066 -1.517498 -2.769331 1.383462 3.495627 -2.327158 1.647340 -1.255147 -1.221461 1.526517 -0.729445 1.816573 -3.418877 -2.379670 -0.977974 -0.709961 1.861221 -1.726813 1.464278 4.407979 -1.619076 2.569437 1.635504 -2.480127 -0.353523 2.771174 -2.207508 3.684674 -1.309437 2.468851 0.248792 2.870457 -2.423784 -1.276151 -0.218820 -0.576072 -1.829766 2.971767 -3.092340 0.318120 1.099580 -2.832127 -1.478441 2.187940 0.797794 0.808478 -0.524351 0.455710 -3.051724 0.334219 -0.953072 0.564683 2.835159 -0.062329 -3.827738 -0.076811 1.339566 -2.014484 -1.784510 0.718381 -0.022631 3.640649 -3.024051 0.747534 0.936240 -0.443014 -3.847204 -3.779484 0.410906 -3.854888 -2.310504 1.597473 -3.591156 -1.219605 -2.308704 0.863246 -2.679005 -1.623412 1.043048 4.231973 2.141207 -1.570332 1.336499 0.204641 2.773390 0.288281 -0.123113 0.597340 2.484947 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -2.758728 2.108201 1.644776 -2.174427 5.900427 -0.050562 1.006029 2.006436 0.583445 2.505061 -5.217219 -1.378139 -0.731187 -3.659209 0.436435 -2.054012 0.478313 1.073619 -1.785423 -0.269539 1.715562 -0.275321 0.001963 -2.693200 -0.385261 -3.730183 -2.204795 0.280501 0.877399 0.021046 0.156947 0.791955 4.968485 0.320920 3.444253 2.985929 2.522226 4.107568 -0.488868 2.647185 1.627727 2.354688 -1.597402 -3.913126 0.612017 -2.734536 -3.216959 -1.934255 0.913704 -3.518427 1.742544 2.706145 0.402866 -0.193466 -1.905477 1.860714 3.294191 -0.012251 4.004319 2.025488 -3.417320 0.710714 -2.838707 2.934204 -2.173969 3.307667 -0.004822 -4.305556 -1.743657 1.974386 1.690324 -2.529326 -3.227278 0.732924 1.048371 -2.122881 1.705055 -0.713487 -1.258389 -2.498369 -2.334039 1.580041 0.216516 3.112217 0.049274 -0.482839 -0.086090 -0.285636 0.896414 -3.412269 -1.974071 4.126930 -2.268282 0.690090 -3.156663 0.650897 0.247197 0.591901 -1.639380 -2.938622 1.235716 0.752899 0.266767 -0.532131 -1.594721 -3.322803 2.026920 2.128710 -0.978112 1.437848 0.373093 1.458704 1.562112 1.889755 -2.884940 1.661100 -3.941081 1.683700 -0.863807 -0.055989 -0.617247 0.035039 0.926399 1.067086 2.342710 -3.496836 3.284662 1.645372 -2.777031 -2.359042 0.550669 -2.140850 -3.614574 -0.230203 1.614569 1.535903 0.434688 -0.702544 0.284381 -1.578009 -0.868510 -2.486903 -0.857177 2.296833 -3.233399 -0.556236 -0.350568 -0.623972 -2.136159 2.678065 1.644540 0.973040 4.433540 1.892603 -1.201392 0.499428 -3.636582 1.090369 5.922684 1.896920 -3.596292 2.148300 -2.146041 0.996186 1.894664 1.135779 0.542652 1.188446 -2.551553 -0.885285 -0.620129 -1.689632 4.280555 2.756171 1.401598 -4.057900 3.025782 -1.306009 -1.266866 5.841878 3.626719 -4.626606 0.723222 3.474802 -2.361548 -1.642142 1.776972 -2.438556 -1.747519 -2.122846 0.707545 1.029586 -2.801804 -2.134938 0.796422 -3.859839 4.109870 0.640211 0.587721 0.255832 -3.297309 -4.121985 5.764946 -0.120212 -0.320060 -0.489002 -1.155794 -0.986752 -4.678923 0.479634 1.775231 -2.232970 -1.494371 -2.907589 1.063749 3.863156 -2.691779 1.773540 -2.369139 -1.129340 1.582188 -0.582680 1.951517 -3.678369 -2.267354 -1.237205 -0.559808 1.674561 -2.315407 1.517199 4.447858 -1.684332 3.400173 1.330788 -2.627328 -0.459846 2.921238 -1.969156 3.923500 -0.953068 2.522733 0.468840 3.179094 -2.639092 -1.079496 -0.558950 -0.756633 -1.868868 3.026183 -3.524550 0.196870 1.341620 -2.861608 -1.868511 2.520256 1.044049 1.075895 -0.747082 0.205318 -2.563974 0.029054 -1.259711 0.742923 2.715045 -0.610907 -3.763121 -0.024499 1.692530 -2.477943 -1.483342 0.935130 0.363275 3.922783 -3.268653 1.097423 1.052482 -0.272996 -4.770525 -4.078286 0.304270 -3.725852 -2.694500 1.378139 -4.284523 -1.833934 -2.337022 0.975558 -3.183917 -1.928804 1.193004 4.544546 1.782853 -1.548961 1.646962 0.199317 2.590182 0.167014 0.247073 0.810857 2.202784 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -5.437411 1.969877 2.985560 -3.237519 8.591255 -0.564897 1.649871 4.619169 -1.323769 4.922896 -9.041816 -3.713938 -3.500046 -7.967206 0.168285 -4.443430 2.947341 0.147232 -2.482109 2.034293 3.516040 -1.836279 -0.080189 -4.490014 -0.680171 -5.931244 -3.497574 0.375604 4.065042 -1.631607 1.222059 1.119280 12.119201 2.286484 9.530936 6.180950 2.773891 7.883854 1.140301 -0.885311 -0.455055 6.824497 -4.057184 -6.373034 -0.883939 -5.357852 -4.805403 -3.326503 2.065256 -3.377426 -1.053300 5.307699 0.248930 1.924008 -5.439362 1.878411 5.893591 0.102844 9.139914 2.854300 -4.763515 0.559192 -4.754930 3.614363 -3.776789 2.593204 -1.140248 -3.812583 0.544863 0.525737 0.822704 -4.630676 -4.223623 3.184590 2.911601 -5.026438 4.153657 -0.921710 -3.950164 -7.586201 -5.012673 2.058383 -0.219653 6.489526 -1.086064 -0.650427 1.160577 0.495071 0.769103 -8.186629 -1.320941 6.108937 -5.302639 -2.795621 -3.552995 6.118596 -0.675862 3.169610 -4.239407 -4.859401 2.080103 -0.607925 0.657402 -2.875560 0.550482 -5.379376 2.191132 0.913201 -0.630982 5.088691 3.509283 4.318919 6.265956 5.387179 -6.471467 2.085284 -7.236465 2.751794 -3.794700 -0.819595 -0.572062 2.123751 1.960546 2.404708 5.753920 -8.359209 4.168986 4.844150 -3.050013 -5.383808 0.466430 -6.147940 -7.512132 -0.990953 3.776228 2.886037 1.609368 -4.165704 1.103620 -1.785648 -0.774969 -2.295291 0.053446 5.122188 -6.386948 -1.822450 -0.658841 -0.873004 -3.444629 5.585515 2.815772 2.193282 8.653602 2.736697 -4.772072 0.878421 -7.185064 0.628094 11.318441 -0.429055 -6.933501 5.076715 -4.169110 0.457369 3.462147 4.118053 4.484542 -1.447060 -5.815980 -2.974048 1.314541 -1.787341 8.774808 2.072361 2.718611 -5.466945 7.886899 -1.835817 -3.143017 9.730593 4.397038 -7.671312 1.222308 4.252524 -4.931592 -1.855983 3.515918 -4.385329 -1.691248 -6.023823 1.419691 2.166009 -4.471813 -1.575820 1.109504 -7.851980 7.823793 0.632522 0.735582 0.792975 -6.057841 -7.191220 11.115068 -0.317174 -0.236260 -2.079942 -3.257676 -2.249776 -9.698588 1.314883 -0.264550 -3.279970 -0.747564 -6.304703 2.377864 5.689895 -2.833886 4.466583 -7.246314 -1.888174 3.257442 0.387152 3.143468 -4.293716 -4.971287 -0.792782 -1.861699 4.155067 -5.607374 5.258456 9.039522 -2.853985 6.378474 -0.256069 -3.905388 0.417633 4.178600 -7.129620 8.168335 -2.326990 6.009115 0.154717 5.394708 -4.491702 -2.988074 -0.793420 -2.006519 -3.390208 3.672480 -5.532982 0.635208 1.698916 -4.574530 -3.552044 2.606863 -0.433307 0.200610 -0.097705 0.738335 -7.100674 0.423807 -3.418507 2.596400 5.797216 0.270453 -6.494516 1.554647 2.866668 -1.337472 -0.473006 0.051851 -0.261040 6.347451 -6.790139 -1.068306 1.325238 1.683476 -4.554012 -9.421142 1.519898 -5.879466 -4.108782 5.002233 -6.989995 -1.875694 -4.960276 -0.128692 -6.418233 -2.656385 2.866452 9.440907 3.843190 -5.708414 0.717401 -0.268223 5.053813 0.391338 1.204444 1.325334 3.583218 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/strongly-connected-components.cpp__main = -0.515875 -0.640678 0.220336 -0.020856 1.540409 -0.827854 0.110253 1.328635 1.049775 0.082763 -0.681192 -0.654156 -0.445177 -0.215075 0.439747 -0.129119 0.582061 0.805736 -0.971071 -1.020178 0.548251 1.473253 -0.284444 -0.368570 0.138935 0.084417 -0.630143 0.022556 -0.742472 0.202282 -0.982030 1.021688 1.340140 -0.025852 0.977574 0.688659 1.462510 0.888281 -0.524666 1.486079 0.942875 0.422682 -0.126781 -0.948910 0.365635 -0.464239 -0.657332 -0.034842 0.359459 -0.624517 1.654077 0.359105 0.331632 0.414525 0.348330 0.327202 -0.439617 0.344516 0.356502 0.897976 -1.662754 0.670934 -0.553479 1.389085 -0.542983 1.708008 -0.369937 -1.589524 -1.435559 0.679799 1.368197 -1.269396 -1.067547 -0.369449 -0.221693 0.129828 0.772656 0.584344 2.412077 0.138098 -1.246447 0.350106 -0.442604 0.308045 -0.316430 -0.423782 -0.986411 -0.560130 0.402766 -0.219721 -0.532080 0.845862 -1.045740 1.123829 -1.678599 -1.802736 -0.262328 0.176007 0.058373 -1.356159 0.356765 0.007024 0.036017 0.915422 -0.153941 0.403574 0.621166 0.787735 0.067049 0.257348 -0.489690 0.121583 0.072928 -0.138292 0.921964 0.414443 -0.910220 1.023978 -0.681715 -0.101223 -0.090905 -0.043194 0.831447 0.027525 0.111174 -0.316283 0.518825 0.095427 -0.850179 0.361936 0.442932 -0.212464 -1.010708 -0.398784 0.983174 0.501613 -0.334758 0.099882 0.491887 -0.368350 -0.124348 -0.542342 -1.050204 -1.337268 -0.212229 -0.371649 -0.358556 -0.485781 -0.428029 0.551959 0.051692 0.448400 0.559211 0.464147 -0.528790 -1.251576 -1.224209 0.334923 0.677077 -0.450039 -0.657438 0.203806 -0.493857 0.590165 0.625554 0.405673 -0.484590 0.656077 0.932008 0.948243 -1.246239 0.003823 0.871609 1.005140 0.378307 -0.873026 -1.355170 -1.390221 -0.136909 1.371917 0.951635 -1.320474 -0.555115 0.794006 0.740011 -0.909457 0.062505 -0.762488 -0.717186 -0.789563 0.632915 0.611031 -1.143101 -0.036646 1.497280 -0.582210 0.226285 0.039073 -0.538643 -0.039659 -1.456252 -0.259065 1.792783 0.113827 0.325206 0.147513 -0.592417 0.721042 -0.996652 0.147292 0.522577 0.457561 -0.319395 -0.257385 0.156648 1.357974 -0.546737 0.419984 0.359095 0.109071 0.336411 -1.212458 0.487245 -1.342027 -0.559840 -0.640828 -0.385312 0.423241 -0.793736 -1.065048 0.574887 -0.510355 0.545519 1.664783 -0.927034 -1.045551 0.484364 -0.106360 0.552213 -0.010439 -0.455757 0.222121 0.594681 -0.864635 -0.480596 -0.470699 0.788198 -0.969266 0.914846 -0.637358 0.246667 -0.052597 -0.760024 -0.160845 0.521045 0.551625 0.050177 -0.241906 -0.356624 -0.559827 0.056395 -0.488271 0.393691 0.686162 -0.495583 -0.846543 0.156309 0.096371 -1.925886 -0.398456 0.362090 -0.094312 1.306847 -0.520642 0.095068 0.825437 0.161599 -1.311618 -0.497259 -0.655992 -0.715778 -0.212247 -0.391671 -0.352119 -1.255885 -0.185153 0.767793 -0.244343 -0.719886 0.254481 0.662277 0.637771 0.133853 0.624415 0.507127 0.301636 0.215681 -0.397519 0.183848 0.459797 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.997786 1.566488 -0.155687 -2.045947 6.619217 0.498679 0.628547 2.978301 -1.334617 2.024020 -4.093698 0.738327 0.239883 -3.416648 0.853852 0.479459 0.253418 0.650145 -1.570428 -0.569630 1.230105 -0.280489 0.454601 -2.223836 -0.339375 -2.917343 -0.909813 0.371846 1.372940 1.141313 -1.529603 0.397011 2.698334 -0.626471 1.136894 1.608225 3.045901 2.352808 -0.238541 -0.121522 2.047069 1.110230 -0.948501 -3.353166 0.790555 -2.444375 -3.527932 -1.196073 0.974986 -3.691345 0.656179 2.238151 0.551143 -1.235440 -1.477682 2.275391 3.020701 -1.491972 2.803299 1.801910 -3.058395 -2.168868 -1.786954 3.106034 -1.387562 2.831862 0.121320 -3.801743 -2.348768 3.064292 0.420489 -1.600951 -2.349762 -0.167817 1.031129 -1.554879 1.399758 -0.506574 1.111869 -1.825547 -1.152575 1.366085 -1.079339 2.809876 0.429796 -0.222979 0.096061 -0.785983 1.123220 -2.310243 -2.038974 3.366048 -1.373170 0.780971 -3.625814 0.206186 0.635441 -0.464441 -1.247272 -2.661542 0.963141 1.516590 0.256450 -2.262449 -0.349479 -3.207676 1.518163 2.090262 0.195196 1.905824 -0.740616 0.138137 -0.309539 1.024925 -1.515559 1.038743 -3.232143 0.859074 -0.472227 0.503795 -1.738014 -0.495736 2.561732 0.729072 1.369519 -2.823169 3.605063 1.463170 -2.022715 -1.680955 0.966033 -0.728497 -2.465442 0.749837 1.160519 0.263422 0.140292 0.470207 1.243606 -1.114447 -2.776732 -1.554668 -1.348567 2.405176 -4.228967 0.021988 -0.235985 -0.296333 -1.157978 1.747194 1.462947 0.597732 3.495522 1.539593 -0.763346 2.543417 -2.912785 2.405786 5.571149 2.411534 -2.697501 1.300557 -2.529127 1.219187 1.013535 0.138126 -0.099805 2.251810 -1.969019 -0.048430 0.366994 -1.299090 3.279201 2.486067 1.862946 -4.360634 1.553349 -2.094033 0.544995 3.920878 3.219152 -4.395277 2.013368 3.751860 -1.452922 -0.165983 0.791505 -2.322655 -1.787081 -1.774869 0.875596 1.499692 -2.935280 -2.672729 -0.320996 -2.490753 3.125720 0.738966 0.115860 -0.104013 -1.630976 -0.466202 4.193223 0.329941 -0.302433 -0.264546 -0.949541 -2.689498 -3.617005 0.211394 2.047184 -2.328939 -1.356475 -2.259310 -0.957668 3.614647 -2.273001 0.595682 -4.071716 0.972916 1.390646 0.722285 1.623259 -3.033164 -1.489712 -1.065219 -0.961682 0.920559 -2.747898 0.730996 2.273258 -1.891732 3.374314 0.307339 -1.233364 -0.087028 2.355697 -0.386834 3.027848 0.521600 3.732901 0.646170 3.021970 -1.977828 0.218667 -1.351439 -1.577039 -1.259702 3.121661 -3.806165 -0.376593 2.586369 -1.236603 -3.018266 2.424220 1.836473 1.837692 -1.029181 -0.893715 -0.753433 -0.436530 -1.391994 0.950310 1.848774 -2.431876 -3.152228 -0.829115 2.376747 -2.824181 -1.620942 1.530627 0.941783 3.571574 -2.504821 2.082186 0.853829 0.441922 -4.989806 -2.868390 0.395003 -1.504257 -1.941038 1.445870 -4.463650 -2.260899 -1.598455 1.592901 -3.593618 -1.564024 0.387593 3.270155 -0.040368 0.012530 2.017597 0.594071 0.979461 -0.469681 0.880054 0.804633 0.940134 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/strongly-connected-components.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/strongly-connected-components.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = -0.358222 0.103536 -0.055112 -0.350278 1.203107 0.007452 -0.092982 0.603660 0.384731 0.383127 -0.727863 -0.195903 0.037689 -0.400632 0.159597 0.119584 0.014763 0.233000 -0.476303 -0.406550 0.205438 0.326575 0.074463 -0.342030 -0.081143 -0.372722 -0.350116 0.113481 -0.043699 0.154119 -0.502077 0.145621 0.571818 -0.172864 0.318927 0.286120 0.685881 0.445128 -0.155687 0.536581 0.600276 0.161647 -0.170226 -0.580902 0.144206 -0.456537 -0.624953 -0.198402 0.218234 -0.657966 0.672116 0.321339 0.162962 -0.167375 -0.082057 0.394616 0.158585 -0.011812 0.484852 0.374620 -0.783339 -0.008513 -0.420747 0.797177 -0.372040 0.868959 -0.145636 -0.930556 -0.748799 0.625092 0.395880 -0.425446 -0.548553 -0.101905 0.062495 -0.180871 0.321708 -0.034334 0.907788 -0.144547 -0.311461 0.354081 -0.236589 0.357097 0.017285 -0.077812 -0.265508 -0.158123 0.171937 -0.332822 -0.420358 0.585524 -0.386558 0.390273 -0.604637 -0.452499 0.038506 -0.076583 -0.031679 -0.512052 0.170536 0.282385 0.021780 0.035882 0.062337 -0.351515 0.437312 0.601782 0.028181 0.097924 -0.186028 0.007335 -0.012251 0.130799 0.067188 0.160268 -0.587570 0.255016 -0.188974 0.048774 -0.311907 -0.048200 0.486903 0.148833 0.229152 -0.383125 0.643516 0.129836 -0.516405 -0.061725 0.195219 -0.058888 -0.529407 0.118568 0.233319 0.139977 -0.067369 0.093000 0.243188 -0.265646 -0.427711 -0.207207 -0.318276 -0.109854 -0.427317 -0.054358 -0.028926 -0.099815 -0.226135 0.414877 0.284582 0.123508 0.647455 0.262908 -0.113240 -0.208292 -0.629524 0.430519 0.849216 0.011781 -0.479776 0.235575 -0.451543 0.279809 0.270241 0.127966 -0.210298 0.556039 0.049886 0.228920 -0.410877 -0.148976 0.627509 0.521985 0.320183 -0.680280 -0.143790 -0.582457 0.153862 0.836269 0.653647 -0.844509 0.015683 0.674564 -0.068300 -0.195641 0.175525 -0.389626 -0.333335 -0.356389 0.202040 0.348855 -0.546381 -0.436764 0.258478 -0.435028 0.536577 0.073331 -0.149938 0.006991 -0.522400 0.027391 0.899620 0.114305 0.027094 0.072266 -0.181175 -0.142026 -0.681124 0.004326 0.503977 -0.278957 -0.183082 -0.322605 -0.016607 0.711845 -0.450816 0.165269 -0.339212 0.131610 0.267877 -0.269536 0.298912 -0.546826 -0.220912 -0.337002 -0.269515 0.190129 -0.565000 -0.137004 0.389322 -0.301287 0.606099 0.512048 -0.322121 -0.298337 0.414071 -0.009242 0.565280 0.041331 0.092735 0.135258 0.495036 -0.327107 -0.004222 -0.320200 -0.109921 -0.313662 0.603408 -0.660760 -0.044556 0.323121 -0.360667 -0.354415 0.455265 0.427082 0.285197 -0.177664 -0.200567 -0.272347 -0.066269 -0.234397 0.163772 0.312970 -0.373120 -0.640074 -0.046414 0.361225 -0.822202 -0.429756 0.241601 0.112812 0.749024 -0.426107 0.332647 0.364540 0.107090 -1.041748 -0.264069 -0.226212 -0.289335 -0.215657 -0.007418 -0.624051 -0.685395 -0.235601 0.361961 -0.332737 -0.335525 0.174137 0.595280 0.247745 -0.063998 0.366999 0.151937 0.201336 0.084979 -0.098582 0.194057 0.165494 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -1.159024 1.624167 0.919976 -1.053928 1.913874 -0.441609 0.693321 0.564714 0.253579 0.566123 -2.499321 -0.716625 -0.245932 -1.973210 0.388505 -1.027272 0.356629 1.004782 -0.247297 0.498666 0.911580 -0.631002 -0.257414 -1.631912 0.065801 -1.333604 -0.676387 -0.118660 -0.103745 0.575639 0.369386 0.733167 1.980591 0.837649 1.584002 1.640015 0.183172 2.192473 0.475840 1.004998 0.552978 1.062149 -0.432872 -2.425515 0.593514 -1.032474 -0.745138 -1.552938 0.042197 -1.685523 1.141098 1.091048 0.286277 -0.225912 -1.515591 -0.141370 1.907073 0.917509 1.416629 1.183745 -0.918990 0.756604 -0.811508 -0.108857 -0.989297 0.943322 0.856948 -1.554322 -0.044671 1.050709 1.181668 -0.917819 -1.458518 -0.196003 0.137206 -0.708835 0.830183 -0.158764 -1.710237 -0.586918 -0.940077 0.569543 -0.058551 1.641432 -0.070954 -0.380420 -0.865025 -0.351238 0.897843 -0.943940 -1.214461 1.483173 -0.271048 0.199549 -0.508291 1.241109 0.996318 -0.044631 -0.562625 -1.050433 0.805772 0.210165 0.093730 0.763232 -1.716293 -1.440723 1.292082 1.179729 -1.037552 1.103182 0.447833 1.154129 0.654069 0.259953 -1.387157 0.956473 -1.949152 0.663835 -0.416235 -0.228858 0.169071 -0.231467 0.022151 -0.011272 0.347794 -1.216074 1.699984 1.430285 -0.634035 -0.787283 0.698374 -0.773789 -1.458171 -0.381334 0.780787 1.007657 0.261034 0.164028 -0.509412 -0.893464 0.139045 -1.342865 -0.695220 2.023022 -1.139858 -0.209382 -0.296610 -0.487917 -0.832271 0.484165 0.130026 0.109651 1.621911 0.784223 -0.818501 -0.410369 -1.210103 0.395552 2.821424 0.946155 -1.356826 0.580730 0.181121 0.295898 0.670049 0.163620 0.221493 0.320616 -1.485031 -1.021059 -0.901167 -1.491016 1.420513 1.502254 0.687412 -1.905242 2.183450 0.125193 -0.725480 2.532157 0.995539 -1.338624 -0.252997 1.861915 -1.862344 -0.899264 0.443998 -0.453534 -0.332277 -0.748855 0.333512 -0.001796 -1.540880 -1.491185 -0.375384 -1.696721 1.366518 0.538611 0.649410 -0.678128 -1.143210 -1.245139 2.933748 0.132874 -0.313312 0.032691 -0.373643 -0.261895 -1.979206 0.260030 0.754051 -0.900690 -0.673372 -0.890830 0.358173 1.535429 -1.751647 -0.004696 0.048283 -0.668673 0.610684 -0.132334 0.360066 -2.050922 -1.203797 -0.002610 0.159526 0.725581 -0.077666 0.979264 2.035234 -0.606820 0.697851 1.632470 -0.036741 0.414324 1.744625 -0.627868 1.429970 -1.050812 1.595231 0.412307 1.423705 -1.008369 -0.826342 -0.015174 -0.471986 -0.877084 1.528229 -1.580925 0.309104 1.039777 -0.697520 -0.684843 1.500273 0.606431 0.811393 -0.576878 0.393617 -0.959664 0.319547 -0.269271 0.269815 1.259819 0.111129 -1.809019 -0.519796 1.183953 -0.823207 -0.907035 0.585992 0.030640 1.708958 -1.230615 1.131803 0.258935 -0.352918 -1.682904 -1.522753 0.959972 -1.558173 -1.119589 0.676910 -1.945027 -0.589951 -0.864506 0.810600 -1.538008 -0.363808 0.064170 1.465669 0.569706 -0.337459 0.513563 0.019690 1.005519 0.126906 0.045043 -0.099858 1.630591 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = -2.164570 2.163553 1.066029 -2.187283 3.944139 -0.620520 0.717643 1.283623 0.940020 1.116428 -4.459584 -1.345294 -0.584259 -3.686296 0.558385 -1.501387 0.693288 1.710513 -1.017741 0.846249 1.778552 -1.037598 -0.007172 -2.913975 0.033707 -1.868555 -1.179363 -0.060593 -0.333257 1.053724 0.445927 0.999792 3.370564 1.473206 2.580620 2.447662 0.657406 4.214389 0.341621 2.098663 1.203032 1.893851 -0.589369 -4.538608 1.450838 -2.138897 -1.764288 -2.721561 0.323579 -3.561260 2.269057 2.099878 0.616911 -0.729655 -2.577974 -0.171716 3.596790 1.525311 2.623187 2.109968 -2.094838 1.012268 -1.726410 -0.603564 -1.823018 2.118461 1.817034 -2.909467 -0.710723 2.146043 2.164567 -1.941215 -2.951220 -0.554785 0.539267 -1.151639 1.704611 -0.355667 -1.906092 -1.121626 -1.489601 0.837113 -0.340876 2.775519 -0.332266 -0.427079 -1.129572 -0.801844 1.475253 -1.767801 -2.109864 2.432065 -0.711653 0.771840 -1.323671 1.996389 1.059804 -0.288366 -1.672666 -1.815272 1.311050 0.718284 0.213391 1.331434 -3.230034 -2.600997 2.844437 2.272742 -1.598450 1.413673 0.880983 1.645071 0.729811 0.571947 -2.555595 2.233364 -3.522026 0.816656 -0.644492 0.007962 -0.041627 -0.397567 0.519289 0.046437 0.603682 -2.222679 3.572500 2.475478 -1.464029 -1.406182 1.457384 -1.197525 -2.544251 -0.396382 1.537550 1.369263 0.392487 0.306259 -0.582146 -1.675284 -0.391476 -2.045620 -1.354356 3.079311 -1.830406 -0.247243 -0.526470 -1.093270 -1.251107 0.774170 0.335469 -0.105765 3.074125 1.221144 -1.510438 -0.552075 -2.093484 1.082605 5.353458 1.630057 -2.637847 0.963216 0.261104 1.062184 1.216236 0.129116 0.557173 0.659534 -2.139268 -1.252956 -1.395724 -2.419386 2.569549 2.656252 1.568046 -4.087726 3.209772 -0.026446 -0.421657 4.824739 2.152807 -2.841900 -0.396587 3.366118 -3.079026 -1.343649 0.467868 -0.330169 -0.594981 -1.344001 1.033452 0.043146 -2.798223 -3.172015 -0.745479 -3.085121 2.456178 0.800971 1.092739 -1.136606 -2.350461 -1.657383 5.247510 0.123417 -0.851234 0.277683 -0.794757 -0.448276 -3.791601 0.428784 1.413701 -1.684491 -1.140649 -1.529971 0.570974 3.033854 -3.048529 -0.263181 -0.308956 -0.986584 1.157218 -0.594138 0.888671 -3.605267 -2.117307 -0.237129 0.136227 1.533082 -0.301880 1.044480 3.545541 -1.261259 1.509417 2.663450 0.059354 0.636178 3.266125 -0.863767 2.847795 -1.689573 3.307956 0.359536 2.728206 -1.596474 -1.066419 -0.249315 -0.732503 -1.424300 3.006319 -3.050852 0.351906 2.030587 -1.208943 -1.445001 2.853327 1.280905 1.577482 -0.845280 0.579544 -1.615723 0.378794 -0.386375 0.564200 2.195400 -0.075885 -3.433215 -1.263694 2.329385 -1.573304 -1.609182 1.245312 0.149897 3.476758 -2.233085 2.176260 0.615915 -0.897230 -3.006150 -2.459214 1.501031 -2.662773 -1.690776 1.481036 -3.628476 -1.263673 -1.459165 1.877995 -2.247101 -0.316945 -0.153242 2.684823 1.451053 -0.500747 1.308150 0.199407 1.765040 0.124053 0.007821 0.122362 2.887403 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = -2.308786 3.225508 1.860310 -2.367658 3.683687 -0.347778 1.012765 1.017184 0.989030 1.023498 -5.037305 -1.424725 -0.597806 -3.690404 0.623175 -1.802263 0.144709 2.156185 -0.844816 0.796389 2.111659 -1.079570 -0.209016 -3.442558 0.176752 -1.817091 -1.487330 -0.435578 -0.901948 1.837148 0.754817 1.017593 3.116571 1.902675 2.395610 2.809660 0.355075 4.948526 0.225901 3.782559 1.133917 2.193851 -0.778682 -5.366006 2.224826 -2.566996 -1.155358 -3.506103 0.052273 -4.226794 3.685128 2.112555 0.733000 -1.047332 -2.658947 -0.688419 3.957059 2.089251 2.560656 2.502574 -2.040315 1.709978 -1.880616 -1.337803 -1.893144 3.055795 2.842653 -3.272967 -0.746319 1.975783 3.526629 -2.178098 -3.457783 -0.756408 -0.133681 -0.982628 1.632605 -0.607805 -3.184466 -0.551373 -1.756462 0.816513 -0.131136 3.073977 -0.424472 -0.879075 -2.166958 -0.852168 1.976752 -1.482901 -2.849812 2.914254 0.012472 1.442147 -1.664724 1.680433 1.232632 -0.205853 -1.474656 -1.210870 1.610841 1.517123 0.271469 2.109120 -4.862958 -3.075319 3.697529 2.937007 -2.588825 0.876213 0.930486 1.710750 0.538776 0.308792 -2.630653 3.074298 -3.787632 0.895956 -0.021294 0.144742 0.313364 -0.608776 -0.286126 -0.798843 0.217401 -1.863960 3.810478 2.523457 -2.016019 -1.518567 1.805285 -1.303740 -2.837051 -0.525598 1.475277 1.991260 0.072910 0.586020 -1.286504 -2.221313 -0.210947 -3.381931 -1.573215 3.685983 -1.585174 -0.460022 -0.828528 -1.403664 -1.508132 0.688932 -0.030242 -0.163919 3.076954 1.606667 -1.123296 -1.552244 -1.866874 0.992065 5.543201 2.808140 -2.817371 0.475679 1.101462 1.312025 1.486917 -0.420103 0.217969 1.405599 -2.401240 -1.607758 -2.255116 -3.275530 2.587830 4.015131 1.982608 -4.224774 3.749845 0.211867 -0.900256 5.006504 2.486792 -2.405960 -1.050462 3.495339 -3.129029 -1.791029 0.404057 0.155375 -0.654033 -0.813105 0.677269 -0.301935 -3.085482 -4.022744 -1.051034 -3.381403 2.840973 1.006768 2.044520 -1.430676 -2.761618 -2.073921 5.258350 0.151765 -1.308612 0.367480 -0.328587 -0.374110 -3.688881 0.908471 2.212989 -1.712471 -2.058061 -1.511935 1.058700 3.002343 -3.705130 -0.787393 1.469081 -1.899892 0.990650 -1.369146 1.303205 -5.009786 -2.335626 -0.541839 0.754427 2.221138 0.747281 1.255853 4.347858 -1.319469 1.157459 4.499695 1.123643 0.293592 4.070756 -0.403661 2.531679 -2.382264 3.175773 0.129635 2.945693 -1.510164 -1.319231 0.135231 -0.157316 -0.987750 3.451144 -2.921021 0.563573 1.900343 -1.919454 -0.575686 3.488925 1.261598 1.786952 -1.119707 1.045676 -1.532898 0.483873 -0.170602 -0.069084 2.728360 0.063476 -4.005887 -1.863951 1.884651 -2.043550 -1.729811 1.492790 0.096814 3.641863 -2.185460 2.658161 0.383305 -1.895107 -3.667572 -2.046787 1.543420 -2.894701 -2.360348 1.654235 -3.431753 -1.062151 -1.656207 2.057165 -2.635731 -0.557217 -0.800319 2.218538 1.670592 0.187482 1.400435 0.398026 2.488432 0.378051 -0.490891 0.119272 3.684997 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.369751 -0.248438 -0.051888 -2.370522 7.229710 -0.639092 -0.109554 4.949616 1.297561 2.879587 -5.786037 -2.975872 -1.708805 -4.746860 0.200853 -1.325069 2.378102 0.482947 -3.371340 -0.533520 1.983008 1.211753 0.465859 -2.483316 -0.711905 -1.889539 -2.907612 0.735684 1.065187 -1.776168 -1.201570 1.115908 8.458580 0.843738 6.461735 3.180663 3.907493 4.840172 0.553058 0.973516 1.691765 3.419687 -2.243043 -4.021006 -0.576393 -3.770656 -4.241909 -1.123927 1.643797 -2.676196 2.063424 3.318430 0.825587 1.328126 -2.346765 1.488383 2.060065 -0.567358 5.727357 2.244037 -5.843417 0.269063 -2.839046 4.221339 -2.684566 3.950914 -1.465386 -3.819229 -2.432660 1.969502 1.988026 -5.111045 -4.171530 1.192410 1.583909 -2.618769 3.426807 0.033892 3.639303 -4.436420 -3.488000 2.320895 -0.998708 3.272252 -0.484602 -0.180140 -0.313804 -0.326663 0.164968 -5.181141 -0.644732 3.951635 -4.806736 0.087055 -3.829328 0.942252 -2.335259 1.697916 -2.990750 -4.722463 1.379725 -0.075201 0.055488 -1.050593 1.857538 -2.719718 2.120259 1.882585 0.051050 2.674994 2.188960 2.216670 3.876697 3.281716 -2.067419 0.826908 -5.385961 2.209069 -3.055267 -0.644750 -1.261094 0.992769 2.883227 2.041708 3.415954 -5.284135 3.393997 2.883716 -3.419084 -2.705780 0.423907 -3.400912 -5.257698 -0.025478 2.792062 1.396450 1.016521 -2.294172 1.436839 -1.644046 -1.835638 -1.577488 -0.911346 0.545155 -3.967638 -1.240112 0.066338 -0.588143 -2.299691 4.406323 2.362337 1.056273 6.312672 1.102692 -3.475849 -0.447607 -5.270656 1.276243 7.158455 -0.840894 -4.811201 3.616378 -4.039635 1.058750 2.208518 3.167204 1.713753 -0.623403 -1.834641 0.189831 0.294361 -0.219402 6.081342 0.515633 2.323244 -4.067906 2.082924 -2.356495 -0.464514 7.826558 3.090121 -6.272262 0.088588 3.600725 -0.082434 -1.035527 2.407334 -3.911400 -2.410308 -3.998679 1.605615 2.012875 -3.590536 -0.972442 2.631162 -4.879144 4.872433 0.313990 -1.772853 0.366892 -5.480944 -2.452626 8.692133 0.016882 0.496686 -0.084976 -2.544483 0.649101 -6.737071 0.295335 1.371738 -1.387006 0.480544 -3.388727 1.386160 4.787683 -1.983987 3.245916 -4.912704 -0.281892 2.478216 -1.753571 2.173005 -3.493921 -2.932572 -1.064947 -1.801858 2.495867 -5.390124 1.390972 4.643668 -2.092942 5.004463 1.400395 -2.933769 -1.128065 2.154003 -3.641396 5.937534 -0.797172 3.217871 0.404880 3.935561 -3.272370 -1.538873 -1.909739 -0.097876 -3.202181 3.027453 -4.462621 0.162375 0.950760 -2.243922 -3.176976 1.850555 0.788897 -0.504330 -0.257259 -1.122659 -3.728540 -0.193300 -2.289483 2.684674 3.343179 -1.193677 -4.723090 1.079133 2.580247 -2.831100 0.660648 0.470156 0.184929 5.525979 -4.456583 -0.639363 2.142970 2.028356 -4.603679 -5.519779 -0.136148 -3.189211 -0.815810 1.505117 -4.646428 -3.750275 -2.811669 0.820207 -3.003330 -1.074950 2.627908 6.673209 3.313761 -4.175927 0.952215 0.452937 2.468826 0.646743 0.514229 1.529453 1.614903 +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.494773 0.167267 -0.388503 -0.397652 1.659746 -0.014062 -0.055231 0.824276 0.049144 0.503811 -0.948802 -0.078454 0.029429 -0.835962 0.265481 0.478395 0.217952 0.269515 -0.450804 -0.394459 0.303252 0.084098 0.114015 -0.483104 -0.036843 -0.546312 -0.288465 0.126792 0.215135 0.119351 -0.765209 0.251456 0.791880 -0.120261 0.380530 0.403013 0.828711 0.597418 0.082578 0.072042 0.601807 0.270988 -0.222983 -0.867137 0.257952 -0.612674 -0.802357 -0.277507 0.290832 -0.746454 0.661495 0.530486 0.147788 -0.209719 -0.380621 0.415738 0.542377 -0.175454 0.736000 0.494683 -0.848716 -0.392166 -0.361144 0.943333 -0.462408 0.764507 -0.028338 -1.092576 -0.740442 0.818252 0.356987 -0.581971 -0.703816 -0.086751 0.139824 -0.333290 0.427010 0.021050 0.954791 -0.483606 -0.550265 0.394375 -0.457432 0.692514 0.082728 -0.086917 -0.253194 -0.250612 0.308807 -0.550961 -0.460376 0.680333 -0.450665 0.453832 -0.701946 -0.152898 0.087042 -0.118928 -0.230200 -0.741430 0.215314 0.280454 0.066055 -0.141514 0.178131 -0.569925 0.532792 0.501928 0.122437 0.354528 0.131628 -0.063486 -0.026702 0.217457 -0.095078 -0.024212 -0.821113 0.296548 -0.081198 0.042047 -0.434405 -0.066826 0.748665 0.019780 0.355838 -0.728900 0.836368 0.351488 -0.487542 -0.266640 0.242917 -0.156865 -0.673571 0.159705 0.410696 0.036900 -0.005249 0.135854 0.339219 -0.272426 -0.875228 -0.175856 -0.482394 0.433040 -0.939427 -0.016813 -0.081202 -0.214459 -0.267423 0.429207 0.333854 0.258592 0.856500 0.408083 -0.333625 0.265114 -0.862626 0.674656 1.370302 0.355235 -0.699702 0.326276 -0.651268 0.370657 0.338990 0.159603 -0.046943 0.409044 -0.104441 0.281751 -0.073675 -0.167473 0.837909 0.447467 0.577993 -0.932669 0.062289 -0.365955 0.190119 1.160248 0.618731 -1.155060 0.430823 0.993173 -0.150763 0.042506 0.196472 -0.596345 -0.427714 -0.617962 0.330857 0.503455 -0.887985 -0.545191 0.108048 -0.609196 0.744820 0.178159 -0.105207 0.084087 -0.618308 0.289022 1.253370 0.139559 0.082514 -0.017156 -0.364561 -0.485701 -0.928561 0.023151 0.494857 -0.492663 -0.174961 -0.539177 -0.275511 1.107422 -0.481585 0.181369 -0.915114 0.427810 0.376264 -0.010430 0.315661 -0.716399 -0.379811 -0.130968 -0.314067 0.203862 -0.774189 -0.002860 0.423591 -0.533149 0.731849 0.452107 -0.066405 -0.064205 0.468113 -0.070361 0.755537 0.092919 0.672282 0.214431 0.771262 -0.504409 0.050371 -0.420842 -0.134912 -0.456610 0.782663 -0.977757 -0.098482 0.725403 -0.271471 -0.826607 0.530350 0.523225 0.554774 -0.259835 -0.464443 -0.171009 -0.055727 -0.288304 0.384699 0.451914 -0.541711 -0.763703 -0.136631 0.589738 -0.817014 -0.353135 0.415782 0.150681 1.019391 -0.643644 0.445712 0.344808 0.297678 -1.190520 -0.622582 -0.070928 -0.226974 -0.251656 0.361628 -1.188206 -0.755585 -0.354116 0.442279 -0.763339 -0.108201 0.023219 0.852511 0.087331 -0.045519 0.524714 0.231465 0.109581 -0.085208 0.071906 0.199818 0.250099 +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.405191 0.825867 -0.028717 -1.721101 4.392522 0.027140 0.258990 3.008540 -0.086983 1.328739 -3.012436 0.039314 -0.010044 -2.616197 0.482285 -0.174763 0.765456 0.659931 -1.582549 -0.424976 0.986249 0.578229 0.395285 -1.559348 -0.417928 -1.899060 -0.789312 0.300995 0.440269 0.589833 -0.975940 0.384493 3.010905 -0.078329 1.882811 1.361482 2.533354 1.916599 0.350004 0.646907 1.388556 0.999895 -0.777331 -2.429421 0.102211 -1.810900 -2.497861 -0.694623 0.708237 -2.632068 0.772334 1.497660 0.706527 -0.228954 -0.975564 1.265852 1.533318 -0.873906 2.179773 1.489184 -2.747754 -1.196454 -1.304654 2.193388 -1.292195 2.285525 -0.118851 -2.501961 -1.921638 2.031045 0.556659 -1.507750 -1.960779 -0.234774 0.756098 -1.217683 1.457985 -0.199426 1.535513 -1.366564 -0.923493 1.458219 -0.833382 2.048254 0.295884 -0.031998 -0.079922 -0.466303 0.569785 -2.006230 -1.053880 2.127562 -1.545940 0.214194 -2.709326 0.115477 -0.324725 0.107808 -0.970006 -2.548722 0.956734 0.831425 0.093576 -1.278517 -0.194292 -1.936196 1.201358 1.849246 -0.124315 1.472230 -0.227004 0.552421 0.517840 1.134861 -0.931653 0.874403 -2.899875 1.095266 -1.246581 0.090231 -1.219246 -0.135772 2.021496 1.096127 1.110997 -2.147218 2.626343 1.693842 -1.826743 -1.038305 0.804865 -0.865591 -2.221517 0.330321 1.111643 0.336283 0.412168 -0.224199 1.056277 -1.095880 -1.437864 -1.142749 -1.198940 0.662678 -2.942827 -0.280408 -0.023835 -0.175043 -0.947727 1.768002 1.022537 0.330126 2.855734 0.764095 -1.201565 1.014663 -2.413930 1.298369 4.030950 1.130073 -1.913123 1.284516 -1.793558 0.737516 0.960189 0.659366 -0.079445 1.066268 -1.323718 -0.040249 -0.202527 -0.675108 2.761231 1.511674 1.251834 -3.090277 1.039360 -1.784359 0.273714 3.336614 2.540036 -3.051578 0.617309 2.495765 -0.678919 -0.477121 0.616915 -2.030304 -1.238408 -1.509983 0.544601 1.112679 -2.077976 -1.728761 0.418716 -1.945948 2.201886 0.467851 -0.511775 -0.323127 -1.844997 -0.327542 3.788768 0.163357 -0.150218 -0.053739 -0.958188 -1.176284 -3.060317 0.159897 1.344676 -1.335205 -0.201428 -1.597516 -0.313073 2.465857 -1.587955 0.464438 -2.884897 0.403556 1.310424 -0.245958 1.134323 -2.297186 -1.146475 -0.770747 -1.007913 0.976398 -2.490167 0.533764 1.837619 -1.125679 2.593336 0.492103 -1.426805 -0.390752 1.640189 -0.837181 2.705119 -0.061595 2.211962 0.660133 2.144749 -1.675999 -0.207469 -1.323853 -1.032494 -1.215204 2.306179 -2.894782 -0.186479 1.357975 -0.843734 -2.054083 1.560934 1.243585 0.526896 -0.687434 -0.501386 -1.177824 -0.169209 -1.165492 0.934081 1.555968 -1.523144 -2.684625 -0.247596 1.963763 -1.977502 -1.105126 0.774318 0.622250 2.918671 -1.935994 1.051284 0.993656 0.696663 -3.627127 -2.547547 0.421400 -1.356231 -0.882302 0.421081 -2.904416 -2.165029 -1.171895 1.143868 -2.256571 -0.783842 1.143662 2.579114 0.254253 -0.778925 0.901527 0.435000 1.004159 0.010807 0.623207 0.518878 0.841097 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -6.479363 4.891540 4.884737 -2.089945 9.548550 0.976832 4.143118 4.717836 -6.129694 7.046905 -9.226533 -2.461791 -3.278679 -7.258979 -0.512381 -6.133322 1.768709 -1.192798 -1.665344 2.454350 3.529505 -4.475186 -0.789007 -4.210638 -1.288839 -7.756361 -3.278068 0.084767 9.358337 -3.280712 0.640435 0.025170 12.726455 0.528998 11.583513 7.335089 3.093472 6.889160 0.660996 -3.950625 -2.924694 7.775632 -6.084617 -5.523516 -2.615801 -6.064873 -4.912861 -1.537349 2.445739 -1.776990 -3.406723 6.309695 -1.504805 3.393030 -4.277089 5.300882 6.138007 -0.843760 11.747640 1.517312 -4.614452 -1.365838 -6.412261 7.618086 -2.357554 2.132255 -3.803137 -5.169388 2.403490 -2.196626 -3.640585 -4.965204 -1.696048 7.754429 3.663604 -7.102222 3.210710 -2.311815 -10.284152 -9.275088 -6.532932 2.147776 1.711136 7.229849 0.000823 0.030724 2.666975 2.933104 -0.659339 -12.329154 0.260567 9.540417 -7.331780 -3.176858 -3.731683 6.571802 -1.049330 5.911708 -5.348007 -4.697209 2.218048 -0.311294 0.878110 -10.575013 3.475942 -8.326836 0.635749 -1.472138 -0.019753 5.766821 4.617376 4.843129 8.619175 9.207165 -8.540987 0.557294 -6.917794 2.918066 -3.702898 -0.459095 0.111365 3.446979 0.307675 2.925567 9.525216 -11.294430 2.102424 3.332756 -2.941372 -9.966166 -1.621510 -9.822404 -7.719640 -2.104132 3.424531 2.957206 1.922024 -7.049322 0.765062 -1.192931 -2.314504 -3.662959 2.544027 7.414662 -10.056660 -1.853220 -0.538895 0.304609 -5.214387 8.218673 5.186300 4.622026 9.729901 4.902169 -3.428472 5.156178 -7.774017 -0.542714 10.776177 1.462104 -8.942051 7.303577 -8.475426 -1.033297 4.173555 4.603438 6.271884 0.224706 -9.465790 -5.144323 6.033497 -0.475039 10.575983 1.146873 2.424475 -2.548333 11.883375 -2.705702 -8.459998 10.298198 4.996024 -10.234153 4.739071 2.814955 -5.167695 -0.759657 6.340184 -8.860043 -1.070786 -6.402875 -1.246518 2.768059 -4.301673 0.591417 2.794071 -9.685851 11.915857 0.929496 2.545958 2.466804 -6.665263 -10.444843 11.047034 0.031079 -0.765914 -4.876929 -3.256953 -7.594334 -9.156768 1.306308 -0.780523 -4.494435 -3.686951 -9.125559 2.389596 5.414007 -1.193259 8.008035 -9.855171 -3.218265 2.973367 2.857967 5.563448 -2.543124 -5.458894 -2.079805 -2.361370 5.170418 -6.991202 9.263577 11.639329 -2.872446 9.310416 -3.840393 -7.969846 0.936225 3.340189 -9.822305 8.829637 -1.367352 6.099913 0.056838 6.057914 -7.376668 -2.985010 0.459813 -1.806608 -2.700591 3.218152 -4.114977 0.382506 -1.025029 -7.859922 -3.778136 0.587560 -2.497995 -0.121889 0.509177 0.886143 -8.137103 -0.914650 -6.357332 1.513440 6.555244 -0.255667 -5.607552 3.510683 -0.999121 0.872961 1.410646 -0.253527 -0.492110 5.199745 -8.423587 -4.394357 0.400320 1.002261 -5.667305 -12.176990 -1.011790 -7.785986 -6.198058 5.864969 -8.078908 1.687747 -6.453896 -3.707766 -10.888139 -4.983123 4.073279 12.971580 3.278722 -7.296517 1.698266 -1.379161 7.751351 0.981328 3.236993 0.458989 2.982410 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.491994 0.786860 0.091050 -1.789847 4.194335 -0.179265 0.235455 2.722511 0.197327 1.289055 -3.296077 -0.359407 -0.227210 -2.953792 0.462137 -0.621765 1.019412 0.701678 -1.413869 -0.017972 1.060235 0.265317 0.343946 -1.774263 -0.344523 -1.802221 -0.840705 0.266682 0.326730 0.589840 -0.650544 0.496108 3.271164 0.355727 2.235910 1.626433 2.006498 2.304482 0.533403 0.724655 1.252672 1.202901 -0.673872 -2.709387 0.039326 -1.803515 -2.384534 -0.960446 0.599277 -2.624849 0.744874 1.543055 0.718195 -0.149850 -1.516269 0.877957 1.816102 -0.268702 2.325450 1.530392 -2.678966 -0.890653 -1.339814 1.530274 -1.397182 1.950543 0.200986 -2.298149 -1.389792 1.964601 0.568593 -1.512505 -2.129177 -0.260775 0.853712 -1.306369 1.585718 -0.166971 0.761434 -1.295070 -0.852769 1.370819 -0.836428 2.224360 0.205096 -0.018437 -0.110301 -0.526691 0.666443 -2.045380 -1.134920 1.977988 -1.512240 0.021672 -2.341724 0.906584 -0.031247 0.086776 -1.086376 -2.429961 0.981668 0.611843 0.096071 -0.917962 -0.824950 -2.077806 1.544601 1.793007 -0.334955 1.562219 0.137210 0.898394 0.822748 1.110225 -1.411966 1.062755 -2.947085 0.972513 -1.435008 -0.107272 -1.187998 -0.065561 1.708322 1.153177 1.140067 -2.205648 2.749966 2.025237 -1.602830 -1.058843 0.886739 -0.979671 -2.339922 0.269455 1.197966 0.501076 0.592777 -0.278179 0.812147 -1.108235 -1.111972 -0.917963 -1.095352 0.970431 -2.464591 -0.325589 -0.048862 -0.261638 -0.973838 1.614339 0.899942 0.270976 2.787350 0.627429 -1.387365 0.650697 -2.480392 1.208049 4.365166 0.772708 -1.984741 1.327994 -1.352361 0.784179 0.967924 0.685864 0.226645 0.607373 -1.477906 -0.337095 -0.343940 -0.845227 2.618930 1.613329 1.163640 -3.142520 1.490159 -1.552020 0.252433 3.484073 2.406085 -2.938399 0.359345 2.619133 -1.342196 -0.514291 0.570842 -1.620800 -0.844802 -1.736734 0.646093 0.952553 -2.106690 -1.811049 0.120328 -2.080692 2.148407 0.506429 -0.294959 -0.627269 -1.827846 -0.559556 4.201662 0.084422 -0.122179 0.065591 -1.025975 -1.121712 -3.338323 0.029819 1.051607 -1.466428 0.007740 -1.627433 -0.139411 2.466987 -1.772996 0.423649 -2.488223 0.220985 1.350683 -0.160695 0.902703 -2.172375 -1.334403 -0.635505 -0.960657 1.067612 -2.309420 0.676686 2.077852 -0.940759 2.588311 0.581156 -1.217132 -0.086826 1.809955 -1.084729 2.840570 -0.439905 2.452925 0.691963 2.196774 -1.545044 -0.440378 -1.224969 -1.165154 -1.316784 2.376229 -3.005328 -0.082495 1.616270 -0.750350 -2.013845 1.672769 1.177581 0.660831 -0.693634 -0.178758 -1.510045 -0.121248 -1.138058 1.084023 1.535261 -1.153827 -2.716177 -0.263735 2.209631 -1.699224 -1.238504 0.687520 0.456948 2.959542 -2.033512 1.062130 1.017560 0.583134 -3.178279 -2.636457 0.668322 -1.569795 -0.904648 0.575974 -3.020217 -2.115310 -1.115929 1.156900 -2.060951 -0.639832 1.081628 2.689631 0.479831 -0.934182 0.673785 0.311898 0.980086 -0.067998 0.626339 0.407120 1.146489 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +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&) = -3.104872 0.485821 -1.254423 -2.594968 9.020793 0.195256 0.342654 5.042063 -1.173156 2.959587 -5.735782 -0.293229 -0.960945 -5.460233 0.932285 1.186292 2.047512 0.779091 -2.798861 -0.883105 2.135168 0.036714 1.133059 -2.950572 -0.317703 -3.162748 -1.632059 0.552260 1.949376 0.603571 -2.718236 0.714012 5.869053 0.168277 3.129749 2.300128 4.307358 4.314524 0.564739 -0.738172 2.162411 2.734858 -1.699222 -5.135657 1.080021 -4.102099 -4.576397 -1.638047 1.867947 -4.432036 1.429380 3.264495 0.860176 -0.629012 -2.737708 1.895378 4.171521 -1.647360 4.944850 2.532935 -4.769719 -2.861025 -2.252588 3.711921 -2.465860 3.733360 0.032053 -4.832375 -3.354814 3.458305 1.265047 -3.708580 -4.152403 -0.060201 1.464200 -2.344504 2.844534 -0.035030 3.571194 -3.995534 -2.984454 1.746713 -2.511427 4.321151 0.020956 -0.328784 -0.153012 -1.214865 1.544934 -4.115737 -1.976730 3.772707 -2.902714 1.120243 -4.356273 0.891192 -0.981906 0.154035 -2.738744 -4.264302 1.130416 1.465077 0.419757 -2.195173 0.441888 -3.701265 2.608781 2.143025 0.620957 2.646342 1.391239 0.346569 0.720411 2.162478 -2.219902 0.875861 -5.146484 1.679514 -1.386056 0.338136 -2.458196 0.323409 3.986713 0.730764 2.652249 -4.950792 4.764801 2.874385 -2.988528 -2.413673 1.383342 -1.844641 -4.354112 0.948454 2.638409 0.081688 0.480791 -0.575742 2.092674 -1.699397 -4.334360 -1.048050 -2.236897 2.751303 -6.005527 -0.467284 -0.462194 -1.170936 -1.433569 2.906454 1.754440 1.197990 5.362853 2.028506 -2.885242 2.865095 -4.992197 3.314373 8.492079 2.297983 -4.316800 2.106429 -3.619175 2.087158 2.351229 1.150383 1.126493 1.063859 -1.710391 0.907086 1.045593 -0.824910 5.396648 2.419159 3.617887 -6.079335 1.640646 -2.329549 1.228624 6.585266 3.689127 -6.646245 2.693491 4.843295 -1.114957 0.427685 0.813232 -3.241207 -2.374470 -3.943821 1.732554 2.666740 -4.606479 -3.134140 0.226702 -4.032695 4.694341 0.809838 -0.544696 0.544558 -3.837909 0.327114 7.298717 0.411622 0.062750 -0.532086 -2.362486 -2.844056 -6.204124 0.538731 1.744590 -2.924067 -0.555228 -3.641763 -0.972420 5.652092 -2.215587 1.240081 -6.514382 1.839089 2.329141 0.213147 2.234511 -4.347829 -2.607936 -0.675033 -1.962462 2.094512 -4.831527 0.761857 3.268850 -3.085995 4.613959 0.869858 -0.653088 -0.081842 2.756525 -1.565389 4.954961 -0.014596 6.051993 0.491693 4.551674 -2.841006 0.069570 -2.318068 -1.073509 -2.363230 4.305114 -5.711390 -0.536045 3.820799 -1.650763 -4.761655 2.754775 2.057576 2.121038 -1.018220 -1.917271 -2.021519 -0.217326 -1.729184 2.269716 3.211920 -2.966803 -5.141002 -0.822588 3.363924 -3.520694 -1.549340 1.802123 0.851579 5.625832 -4.019779 1.535915 1.508968 1.496595 -5.797164 -5.067189 0.668423 -1.782930 -1.762196 3.224634 -6.429235 -3.467984 -2.512080 2.033811 -4.840971 -0.619539 0.493574 5.185684 0.680321 -1.021183 2.343355 1.283117 1.461785 -0.812781 1.125173 1.336156 1.566160 +PE-benchmarks/z-algorithm-linear-time.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/z-algorithm-linear-time.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/z-algorithm-linear-time.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -5.427428 4.328866 4.183732 -1.943544 5.965638 0.189843 3.737508 2.359311 -4.083223 5.163235 -7.847317 -2.916898 -3.275440 -6.070335 -0.502647 -4.843714 1.354342 -0.394382 -0.851906 2.439042 3.594433 -4.492189 -1.037409 -3.980004 -0.582384 -4.495546 -2.624219 -0.335556 6.964592 -3.056893 0.311782 0.411690 9.926557 1.604355 9.922217 6.613284 1.155319 7.294937 0.825685 -2.131085 -3.092182 7.193186 -4.802940 -5.927476 -1.037045 -5.025757 -2.179460 -2.685708 1.889139 -0.927704 0.228520 5.334744 -1.349185 2.495349 -4.622357 2.846941 5.248355 1.407832 9.713079 1.706705 -2.868970 0.903031 -5.269795 3.745286 -2.235102 2.172354 -1.250494 -3.537670 3.002112 -2.652484 -1.191702 -5.072708 -1.996445 5.861214 1.857190 -5.504532 2.651446 -2.124741 -9.662901 -7.144784 -6.250344 1.228244 1.851225 6.267136 -0.582612 -0.445374 0.293389 2.489692 -0.088637 -9.579039 -0.105270 7.208606 -5.174082 -1.840713 -1.454807 6.422221 -1.205881 4.707923 -4.978796 -2.418283 2.155236 -0.003223 0.997388 -6.697794 1.286687 -6.624789 2.151444 -0.844708 -1.556420 2.986978 6.200649 4.009645 7.322932 7.050359 -6.467114 1.324753 -6.342311 1.917037 -1.498506 -0.429335 1.310350 3.107966 -1.340756 0.342742 7.210234 -8.822593 1.688616 2.953732 -2.511034 -8.268055 -0.754472 -8.201613 -6.588730 -2.413114 3.216757 3.352430 1.216106 -5.500576 -0.465185 -1.461124 -1.544752 -3.471250 2.100216 7.040033 -6.571051 -1.815434 -1.023480 -0.784450 -4.292922 6.054644 3.305491 3.539905 7.969757 4.427567 -2.772864 1.756872 -5.869741 -1.005647 8.254868 1.347817 -7.593163 5.286895 -5.286483 -0.427360 3.672706 3.678988 5.623601 -0.466686 -7.495659 -4.201773 4.861149 -1.372437 8.134432 0.550667 2.790388 -0.828967 10.374221 -0.377354 -7.550440 8.572996 3.306576 -7.542048 2.706793 2.093501 -3.383219 -1.020498 5.159532 -5.690515 0.089921 -4.626346 -0.964712 1.479852 -4.030287 -0.170233 1.410324 -8.276991 9.802663 0.731668 3.347643 1.713545 -6.540724 -7.529748 9.221742 -0.303908 -1.300387 -3.759063 -2.462355 -5.596874 -7.348626 1.758289 -0.418230 -3.150863 -3.850463 -7.128334 2.951099 4.383926 -1.495692 5.555556 -4.172871 -3.902819 2.370455 1.549963 4.851922 -2.238724 -5.028225 -0.861484 -0.696554 5.422912 -3.824262 7.744677 10.582319 -2.404152 6.218791 -0.111765 -3.465986 1.109613 3.768889 -7.985900 7.081395 -2.253411 4.572618 -0.683764 4.842753 -5.916734 -3.193233 1.359561 0.378814 -1.579435 2.455938 -2.609610 0.828207 -1.739173 -6.924599 -1.614794 1.077974 -2.166769 -0.248136 0.612463 1.589383 -6.035749 -0.785319 -5.296909 0.734771 6.015169 0.801081 -4.804933 2.103316 -1.404134 1.283283 2.743123 0.032308 -0.859903 4.702296 -6.706218 -3.519416 -0.204645 -0.447128 -3.708893 -9.374309 -0.663399 -6.261549 -4.622965 5.506491 -5.875839 2.078301 -5.425527 -2.546019 -9.212226 -2.386089 1.707094 9.808706 3.975798 -5.182683 1.212153 -1.001512 7.109632 1.140868 1.418111 0.269355 3.783833 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.846947 -0.082988 0.239988 -0.239211 1.388231 -0.373093 0.024238 0.739180 0.576852 0.539044 -1.094050 -1.048576 -0.651741 -0.841303 0.192899 -0.249328 0.533595 0.577990 -0.687566 -0.243383 0.689929 0.256285 -0.115648 -0.558943 0.029642 -0.339769 -0.716492 0.078816 0.155976 -0.270770 -0.631986 0.551028 1.811891 0.220403 1.507771 0.930383 0.766759 1.323849 -0.129611 0.327877 0.246718 1.028824 -0.551139 -1.231356 0.325689 -0.859783 -0.608015 -0.594507 0.476548 -0.399884 0.909763 0.682120 0.072040 0.366667 -0.382607 0.159080 0.505986 0.618155 1.210610 0.653102 -0.874015 0.807998 -0.797280 0.732255 -0.761464 1.041316 -0.368992 -1.306144 -0.634908 0.153855 1.005167 -1.066190 -0.989121 0.281406 0.188522 -0.385273 0.779185 0.151239 0.787873 -0.961173 -1.444941 0.204067 -0.523765 0.840641 -0.414353 -0.265192 -0.432002 -0.117340 0.254270 -0.950514 -0.330822 0.868013 -0.859720 0.475728 -0.567678 -0.263475 -0.169913 0.435074 -0.607177 -0.907560 0.348708 -0.122867 0.160329 0.693990 0.396600 -0.058142 0.599233 0.380724 0.053542 0.428014 0.567691 0.391523 0.804965 0.531917 -0.223050 0.143132 -0.974487 0.631475 -0.673682 -0.056647 0.129346 0.439247 0.502192 -0.078652 0.726015 -1.030270 0.554518 0.427736 -0.625079 -0.296282 0.331221 -0.760490 -1.169676 -0.460930 0.892238 0.481746 -0.141389 -0.477761 0.194440 -0.336435 -0.296363 -0.162356 -0.493604 -0.122938 -0.572591 -0.318943 -0.335933 -0.617692 -0.386155 0.723047 0.275774 0.560256 1.086810 0.730202 -0.832427 -0.902840 -1.264427 0.249089 1.393364 -0.645307 -1.082214 0.529856 -0.391468 0.326134 0.831738 0.671914 0.368253 0.087610 0.169194 0.167328 -0.868785 -0.066881 1.267417 0.640276 0.495204 -0.744835 0.180200 -0.320100 -0.565499 1.755178 0.512092 -1.190968 -0.228194 0.617823 -0.334912 -0.606041 0.279262 -0.638237 -0.333535 -1.020854 0.494114 0.508899 -1.019584 -0.221694 0.825344 -1.132931 0.961178 0.005852 -0.253002 0.189114 -1.443779 -0.669459 1.931978 0.036568 0.014786 -0.258287 -0.620591 0.303259 -1.333847 0.289542 0.007771 -0.108784 -0.388358 -0.785707 0.394802 1.273628 -0.372569 0.526285 -0.395756 -0.175059 0.426217 -0.533462 0.596828 -1.002729 -0.743089 -0.177029 -0.394692 0.599302 -0.642051 0.021634 1.257767 -0.661316 0.369880 0.958161 -0.721529 -0.270918 0.673227 -0.783959 1.024587 -0.381805 0.114894 -0.023399 0.766383 -0.708220 -0.478357 -0.127449 0.493240 -0.730359 0.799265 -0.627987 0.154558 0.073624 -0.904186 -0.362806 0.408587 0.158932 0.232145 0.014187 -0.245927 -1.117399 0.247457 -0.223515 0.229607 0.966492 0.045561 -1.006860 0.242810 0.041626 -0.752641 -0.225442 0.196109 -0.210073 1.217792 -0.924461 -0.102242 0.435175 0.199602 -0.776884 -0.918632 -0.383746 -0.904424 -0.279139 0.774872 -0.807589 -0.585823 -0.613500 0.307922 -0.339156 -0.284270 0.259140 1.210896 0.942381 -0.579971 0.485850 0.181333 0.847212 0.234831 -0.356244 0.080034 0.753893 +PE-benchmarks/n-queen-problem.cpp__main = -0.206038 -0.070067 -0.282667 -0.072474 0.451592 -0.095689 -0.187787 0.373774 0.223679 0.260590 -0.163591 -0.161100 -0.076314 -0.245074 0.072278 0.291757 0.071298 0.213770 -0.168520 -0.168488 0.177795 0.070909 0.042634 -0.063265 -0.040013 -0.097128 -0.073444 0.077018 0.084095 -0.083019 -0.384185 0.091529 0.345203 -0.047966 0.258058 0.159705 0.291489 0.246736 0.077721 0.102125 0.079470 0.189533 -0.139608 -0.304568 0.152691 -0.206027 -0.145187 -0.076015 0.188919 -0.132907 0.482029 0.177524 0.006937 0.012527 -0.087346 0.091749 -0.003541 0.107320 0.326742 0.136259 -0.241134 -0.035372 -0.201369 0.430703 -0.244832 0.252620 -0.062486 -0.392909 -0.251734 0.117703 0.199189 -0.253607 -0.186563 0.091210 -0.009992 -0.132041 0.188566 0.003098 0.595397 -0.192747 -0.360553 0.083785 -0.247848 0.212576 -0.076432 -0.001680 -0.235224 0.006383 0.027236 -0.261443 -0.044439 0.137069 -0.243081 0.267986 -0.074190 -0.112720 -0.039187 0.032808 -0.054172 -0.139230 0.057136 0.057241 0.101456 0.137184 0.257615 -0.014717 0.232298 0.049481 0.118175 0.034186 0.219983 -0.040332 0.060957 0.183264 0.133588 -0.107932 -0.287426 0.128707 -0.031960 0.092470 -0.083433 0.120023 0.290412 -0.087370 0.208059 -0.296809 0.180416 0.006148 -0.076819 -0.083204 0.110108 -0.083898 -0.204156 -0.071489 0.245132 -0.020023 -0.127119 -0.074668 0.166346 -0.001401 -0.414564 0.027766 -0.147923 -0.039032 -0.218041 -0.003470 -0.106220 -0.195721 -0.018777 0.135871 0.118449 0.206487 0.298573 0.237072 -0.115170 -0.143903 -0.357597 0.167663 0.347516 -0.084250 -0.271497 0.147938 -0.235222 0.087060 0.207425 0.174909 0.089660 0.181765 0.182505 0.164298 -0.079275 0.107244 0.341085 0.047397 0.218753 -0.158879 -0.146847 -0.044680 -0.012011 0.497680 0.106433 -0.402726 0.075636 0.157599 0.024330 0.018517 0.054858 -0.139403 -0.033739 -0.266026 0.152910 0.273654 -0.313537 -0.132814 0.165274 -0.236092 0.280191 -0.046102 -0.057093 0.175998 -0.412249 0.298210 0.422029 0.117209 -0.018446 -0.113426 -0.208869 -0.126174 -0.289671 0.074463 0.074016 -0.054519 -0.075551 -0.218466 -0.076423 0.407985 0.014580 0.065561 -0.296743 0.105074 0.145299 -0.145663 0.120938 -0.190279 -0.091944 -0.033383 -0.098362 0.154913 -0.196566 -0.051385 0.242895 -0.242450 0.136033 0.353034 0.091373 -0.044012 0.149532 -0.162958 0.286479 -0.009226 -0.060680 0.002362 0.171574 -0.156272 0.034920 -0.100753 0.167311 -0.091012 0.160777 -0.163044 -0.061725 0.121625 -0.244666 -0.146363 0.046487 0.154021 0.189802 0.042652 -0.212915 -0.151589 -0.035829 -0.113015 0.072152 0.224939 -0.052476 -0.229198 0.096093 0.001781 -0.235877 -0.107379 0.099803 0.017845 0.347892 -0.260023 0.024359 0.132186 0.109308 -0.283180 -0.127748 -0.195167 0.007754 -0.008166 0.174196 -0.331740 -0.218313 -0.128102 0.139568 -0.203895 0.081010 -0.062421 0.302832 0.173059 -0.058693 0.237956 0.060070 0.141731 0.071057 -0.119137 0.063689 0.176085 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -7.483743 6.491368 5.996288 -3.398730 8.513394 3.346695 2.306770 1.924464 -3.132090 8.653934 -11.372127 -4.492019 -4.650765 -7.118168 -1.651523 -7.995317 0.691300 -2.088527 -2.190410 2.762318 4.265326 -6.491045 -0.089446 -5.113186 -1.415723 -9.000921 -5.020965 -0.058367 9.707192 -3.606141 0.193407 -1.156441 13.735741 1.580927 11.338638 7.990075 2.853726 10.364365 0.484501 -0.170910 -3.508868 9.448888 -7.175901 -6.255916 -0.770033 -8.589976 -4.053522 -2.967669 2.939000 -1.883287 0.276551 7.435343 -1.929328 2.306103 -6.182112 4.640248 6.983219 2.046652 14.249607 1.400025 -3.451472 -0.683850 -8.132225 5.206555 -4.096575 3.916114 -2.305220 -5.061872 2.973802 -3.463398 -0.647408 -6.331749 -3.750645 8.477928 2.990252 -7.987137 3.135233 -3.962580 -13.940174 -9.729160 -7.596120 2.083467 2.748568 8.156663 -0.346581 0.012286 0.667278 4.226240 -0.732640 -13.687802 -0.110847 10.692424 -6.207999 -1.388611 -3.040033 8.513304 -1.991099 5.976462 -7.129122 -1.729124 2.327969 0.968761 1.316586 -10.567183 1.329380 -11.004859 4.298985 -0.610160 -2.116231 1.734958 6.852155 4.753459 10.100034 10.484028 -10.539829 1.479996 -8.329031 1.297855 -0.382577 -0.692269 0.857748 4.689488 -3.861919 1.429438 10.829895 -12.430755 3.025564 2.938318 -5.948337 -11.613387 -1.711814 -10.699045 -8.792039 -1.846706 3.306216 3.988892 1.777991 -8.005118 -0.714454 -2.894758 -2.281926 -5.120873 4.144851 9.848677 -7.651470 -2.108682 -0.696399 -1.080301 -5.684100 8.970115 5.435197 4.490185 11.818612 5.893912 -2.586533 3.427892 -7.957446 -1.037526 11.314275 4.387509 -11.123443 7.544699 -7.154885 -0.269672 5.033168 5.080389 7.420065 0.670544 -9.956048 -6.246761 4.191167 -1.449527 11.619668 1.878502 3.787519 -0.877914 14.283410 -1.410784 -8.804252 10.888070 5.890018 -8.751747 2.502967 2.962619 -5.429000 -1.106640 7.429848 -7.121269 0.578128 -5.771949 -1.986239 2.656647 -4.357763 -0.888241 1.291002 -11.459326 14.816020 0.705457 5.264558 3.516853 -9.625354 -13.190265 10.936701 -2.214774 -1.846671 -4.732544 -3.000918 -7.223157 -10.406412 2.083131 0.440837 -6.271819 -5.192239 -10.255556 4.659760 5.423265 -1.729930 7.913575 -7.529434 -6.258612 3.478531 1.314177 7.548687 -2.034749 -6.150484 -1.749970 -1.137451 7.915316 -5.675902 11.211145 14.165684 -3.095813 9.073320 -3.292226 -4.927716 1.199118 4.924958 -10.521607 10.328154 -3.087266 5.265730 -1.406858 6.712050 -6.626012 -3.178348 1.970671 -0.266636 -1.257367 3.671675 -4.216153 0.322597 -1.790871 -9.770677 -1.672843 1.465234 -2.819183 -1.008494 1.086773 2.824008 -8.139898 -1.515704 -5.446592 0.596788 7.619261 1.790144 -5.961359 2.860150 -2.126567 1.833499 3.944333 -0.204738 -0.878246 6.095439 -9.381563 -5.046322 -0.321121 -1.764530 -5.898988 -12.660118 -2.372590 -8.063829 -6.861206 8.212154 -9.269421 2.173318 -7.775117 -3.946501 -9.958250 -3.363894 3.409283 13.885643 6.807184 -8.160570 1.544271 -1.515019 10.047143 1.013297 1.291340 1.759115 4.387121 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/shortest-common-supersequence.cpp__main = -0.876439 0.294851 0.374071 -0.584661 1.587752 -0.040008 -0.161561 1.121707 0.956084 0.527979 -1.720186 -1.160020 -0.368060 -0.650502 0.136109 -0.325065 -0.020758 0.595999 -1.064701 -0.510738 0.774630 0.689122 -0.209155 -0.989048 0.092244 0.216603 -1.148002 -0.152453 -0.644338 0.219636 -0.356118 0.361722 1.467810 0.328338 1.075317 0.925171 0.689244 1.598376 -0.709532 2.585282 0.634023 1.010099 -0.537171 -1.198684 0.545382 -1.176173 -0.508437 -0.475688 0.183460 -1.153677 2.188199 0.678151 0.281937 0.104364 0.028412 0.269983 0.323438 0.624573 1.048157 0.985637 -1.673455 1.288402 -1.092995 0.885431 -0.636488 2.352710 0.411151 -1.703396 -1.137262 0.297212 2.042949 -1.525982 -1.521556 0.030039 -0.437418 -0.187512 0.946162 -0.126912 0.803730 -0.345504 -1.149819 0.455494 0.039677 0.635103 -0.440465 -0.532497 -1.011511 -0.242963 0.369704 -0.764375 -0.896345 1.010669 -0.875447 1.068653 -1.668687 -1.069243 -0.472705 0.570309 -0.471519 -0.659228 0.550837 0.724273 -0.016360 0.801843 -0.647466 -0.429928 1.313371 1.293919 -0.518636 -0.161860 0.248039 0.591397 0.505977 0.407498 0.018335 0.861206 -0.962064 0.569202 -0.371804 0.119745 0.126259 -0.052631 0.372451 -0.256476 0.438094 -0.460231 0.868222 0.340403 -1.480439 -0.335935 0.462806 -0.948113 -1.565058 -0.280574 0.590200 0.950675 -0.164577 -0.208520 -0.037444 -0.863546 -0.257790 -0.922965 -0.685882 -0.434509 -0.226292 -0.591141 -0.272971 -0.332502 -0.701713 1.006542 0.273716 0.172166 1.237971 0.366884 -0.292430 -2.008194 -0.942415 0.288763 1.573011 0.387169 -1.192909 0.286109 -0.041568 0.785979 0.826119 0.145465 -0.195154 0.850460 0.180475 0.210087 -1.388669 -0.700301 1.318124 1.396881 0.697058 -0.898443 0.140022 -0.908253 -0.645142 2.073635 1.479860 -1.102776 -0.913626 0.776141 0.289397 -0.813122 0.421251 -0.200157 -0.626825 -0.347989 0.184046 0.141047 -0.994701 -0.913687 0.939555 -1.316269 1.330654 0.195756 0.415933 -0.100032 -1.867593 -0.981059 1.798585 0.181875 -0.350167 0.189679 -0.052068 0.348804 -1.305210 0.405747 0.902630 0.006485 -0.743984 -0.582642 0.752147 1.191787 -1.127690 0.245701 0.728825 -0.851706 0.271904 -1.909269 1.051823 -1.656816 -0.908715 -0.993946 -0.128330 1.178708 -0.469864 -0.303143 1.752591 -0.371066 0.856961 2.559250 -0.039480 -1.126199 1.210161 -0.232018 0.957746 -0.607568 -0.354313 -0.161181 1.071974 -0.833283 -0.660525 -0.134047 0.805253 -0.496740 1.201282 -0.676549 0.377590 -0.241725 -1.474205 0.310562 1.086064 -0.044861 0.209275 -0.254648 0.063722 -1.095151 0.025341 -0.101628 -0.067500 1.122239 -0.040044 -1.386414 -0.293415 -0.136396 -1.366149 -0.111040 0.369030 -0.239017 1.589789 -0.824659 0.239630 0.672042 -0.511333 -1.631456 -0.307835 -0.808017 -0.935948 -0.861818 0.313344 -0.512247 -0.808831 -0.638536 0.412207 -0.209561 -0.825060 0.124753 1.117768 1.163748 -0.546698 0.529750 0.358840 1.327834 0.539351 -0.605240 0.083969 0.871369 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.758728 2.108201 1.644776 -2.174427 5.900427 -0.050562 1.006029 2.006436 0.583445 2.505061 -5.217219 -1.378139 -0.731187 -3.659209 0.436435 -2.054012 0.478313 1.073619 -1.785423 -0.269539 1.715562 -0.275321 0.001963 -2.693200 -0.385261 -3.730183 -2.204795 0.280501 0.877399 0.021046 0.156947 0.791955 4.968485 0.320920 3.444253 2.985929 2.522226 4.107568 -0.488868 2.647185 1.627727 2.354688 -1.597402 -3.913126 0.612017 -2.734536 -3.216959 -1.934255 0.913704 -3.518427 1.742544 2.706145 0.402866 -0.193466 -1.905477 1.860714 3.294191 -0.012251 4.004319 2.025488 -3.417320 0.710714 -2.838707 2.934204 -2.173969 3.307667 -0.004822 -4.305556 -1.743657 1.974386 1.690324 -2.529326 -3.227278 0.732924 1.048371 -2.122881 1.705055 -0.713487 -1.258389 -2.498369 -2.334039 1.580041 0.216516 3.112217 0.049274 -0.482839 -0.086090 -0.285636 0.896414 -3.412269 -1.974071 4.126930 -2.268282 0.690090 -3.156663 0.650897 0.247197 0.591901 -1.639380 -2.938622 1.235716 0.752899 0.266767 -0.532131 -1.594721 -3.322803 2.026920 2.128710 -0.978112 1.437848 0.373093 1.458704 1.562112 1.889755 -2.884940 1.661100 -3.941081 1.683700 -0.863807 -0.055989 -0.617247 0.035039 0.926399 1.067086 2.342710 -3.496836 3.284662 1.645372 -2.777031 -2.359042 0.550669 -2.140850 -3.614574 -0.230203 1.614569 1.535903 0.434688 -0.702544 0.284381 -1.578009 -0.868510 -2.486903 -0.857177 2.296833 -3.233399 -0.556236 -0.350568 -0.623972 -2.136159 2.678065 1.644540 0.973040 4.433540 1.892603 -1.201392 0.499428 -3.636582 1.090369 5.922684 1.896920 -3.596292 2.148300 -2.146041 0.996186 1.894664 1.135779 0.542652 1.188446 -2.551553 -0.885285 -0.620129 -1.689632 4.280555 2.756171 1.401598 -4.057900 3.025782 -1.306009 -1.266866 5.841878 3.626719 -4.626606 0.723222 3.474802 -2.361548 -1.642142 1.776972 -2.438556 -1.747519 -2.122846 0.707545 1.029586 -2.801804 -2.134938 0.796422 -3.859839 4.109870 0.640211 0.587721 0.255832 -3.297309 -4.121985 5.764946 -0.120212 -0.320060 -0.489002 -1.155794 -0.986752 -4.678923 0.479634 1.775231 -2.232970 -1.494371 -2.907589 1.063749 3.863156 -2.691779 1.773540 -2.369139 -1.129340 1.582188 -0.582680 1.951517 -3.678369 -2.267354 -1.237205 -0.559808 1.674561 -2.315407 1.517199 4.447858 -1.684332 3.400173 1.330788 -2.627328 -0.459846 2.921238 -1.969156 3.923500 -0.953068 2.522733 0.468840 3.179094 -2.639092 -1.079496 -0.558950 -0.756633 -1.868868 3.026183 -3.524550 0.196870 1.341620 -2.861608 -1.868511 2.520256 1.044049 1.075895 -0.747082 0.205318 -2.563974 0.029054 -1.259711 0.742923 2.715045 -0.610907 -3.763121 -0.024499 1.692530 -2.477943 -1.483342 0.935130 0.363275 3.922783 -3.268653 1.097423 1.052482 -0.272996 -4.770525 -4.078286 0.304270 -3.725852 -2.694500 1.378139 -4.284523 -1.833934 -2.337022 0.975558 -3.183917 -1.928804 1.193004 4.544546 1.782853 -1.548961 1.646962 0.199317 2.590182 0.167014 0.247073 0.810857 2.202784 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -3.506535 0.624341 2.230894 -2.169252 6.044552 -0.474162 0.852061 3.297312 -0.497645 3.195565 -6.022077 -2.452743 -2.374827 -5.199611 0.139230 -3.082851 2.164520 -0.081625 -1.919163 1.116249 2.261328 -0.537987 0.011844 -2.957207 -0.433503 -4.081205 -2.507836 0.308855 2.470994 -1.058832 0.664518 0.792027 8.224656 1.592790 6.450219 3.983916 2.130240 5.114575 0.489488 -0.362940 0.019258 4.463827 -2.624707 -4.123554 -0.835834 -3.582426 -3.343662 -2.025748 1.442375 -2.083188 -0.855334 3.327904 0.245496 1.380456 -3.518623 0.999727 3.328450 0.125185 5.850482 1.950505 -3.576551 0.490267 -3.288218 2.655906 -2.651310 2.052112 -0.998868 -2.489479 -0.020055 0.542311 0.739711 -3.177675 -3.026956 1.806494 1.890947 -3.124468 2.890775 -0.432899 -1.450175 -4.765094 -3.136010 1.491319 -0.414883 4.068279 -0.729576 -0.442035 0.644039 0.175069 0.580761 -5.277698 -0.982370 3.849019 -3.817742 -1.974246 -2.533046 3.769580 -0.614945 2.073215 -2.383218 -3.450511 1.350597 -0.482286 0.303065 -1.509156 0.557316 -3.400352 1.476728 0.680250 -0.259720 3.269820 1.786113 2.868776 4.103827 3.399420 -3.831469 1.269519 -4.743780 2.058204 -3.088580 -0.578048 -0.754803 1.569712 1.551573 1.932760 3.809391 -5.326143 2.833166 3.289295 -2.094860 -3.092257 0.384487 -3.992861 -5.128650 -0.413329 2.510610 1.956913 1.081001 -2.797895 0.954238 -1.262074 -0.342256 -1.224491 -0.085361 2.571036 -3.917555 -1.298622 -0.324026 -0.456809 -2.281475 3.821390 1.860325 1.469650 5.710395 1.600225 -3.422470 0.208538 -4.979761 0.525956 7.601485 -1.099969 -4.442362 3.339511 -2.860095 0.403863 2.349078 2.858452 2.837969 -1.145768 -3.464034 -1.583801 0.470053 -1.080948 5.905688 1.659250 1.912004 -3.676101 4.537368 -1.877826 -1.598568 6.171965 2.847939 -5.383298 0.692074 2.900139 -2.918570 -1.302734 2.130588 -2.798392 -1.068839 -4.357529 1.112247 1.546827 -2.950175 -0.927795 0.940297 -5.092121 5.025866 0.397801 0.238657 0.503365 -3.820246 -4.886955 7.629245 -0.189632 0.013956 -1.315050 -2.196242 -1.066785 -6.567363 0.723109 -0.349214 -2.147748 0.085328 -4.112617 1.652295 3.838228 -1.992217 3.057472 -4.748147 -1.023602 2.148581 0.011349 1.922018 -2.900313 -3.246997 -0.735971 -1.571010 2.634680 -4.277872 2.962346 5.793237 -1.824253 4.333595 -0.165808 -2.745672 -0.091242 2.707894 -4.631517 5.470304 -1.568053 3.836923 0.171481 3.604994 -2.856768 -2.042701 -0.833509 -1.587470 -2.364943 2.568940 -3.896082 0.461295 1.356421 -2.827353 -2.417871 1.806622 -0.125146 0.058830 -0.120101 0.319226 -5.048931 0.458445 -2.225906 2.080223 3.755862 -0.098135 -4.644024 1.060251 2.318980 -1.434929 -0.846585 -0.008008 -0.194727 4.315416 -4.380712 -0.830473 1.225267 1.516652 -3.031209 -6.305844 0.993736 -3.862032 -2.538582 3.004540 -4.492122 -1.683925 -3.234266 0.033548 -3.958941 -2.019635 2.171209 6.154504 2.582057 -3.785499 0.258155 -0.091211 2.994660 0.203411 0.773401 1.026810 2.112168 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/topological-sorting.cpp__main = -0.552492 -0.729807 0.302499 0.007536 1.656206 -0.957448 0.159880 1.477334 1.156034 0.046072 -0.716749 -0.713837 -0.502730 -0.195625 0.494363 -0.197765 0.657222 0.903628 -1.068715 -1.128381 0.603341 1.681422 -0.353303 -0.391468 0.161045 0.125356 -0.694999 0.014483 -0.863170 0.227870 -1.049658 1.171399 1.485781 -0.018451 1.101964 0.773340 1.620672 0.970004 -0.600174 1.676838 1.039051 0.457631 -0.124877 -1.023181 0.389131 -0.478567 -0.704322 -0.014904 0.377604 -0.660929 1.818353 0.373865 0.375379 0.503683 0.423639 0.349641 -0.532091 0.382029 0.345036 1.004850 -1.853861 0.786880 -0.599528 1.530609 -0.574869 1.885637 -0.420281 -1.737308 -1.572207 0.727788 1.538704 -1.418190 -1.167463 -0.422353 -0.263913 0.172133 0.857190 0.676421 2.659254 0.185888 -1.380008 0.378679 -0.464342 0.311598 -0.364846 -0.486318 -1.110300 -0.634174 0.439921 -0.209304 -0.584187 0.935312 -1.170763 1.240230 -1.909550 -2.041319 -0.293346 0.217210 0.082301 -1.528064 0.404208 -0.017857 0.029024 1.037284 -0.204054 0.500735 0.649673 0.856763 0.060371 0.305662 -0.595693 0.159918 0.089999 -0.181518 1.055199 0.484203 -0.989398 1.166942 -0.784698 -0.124181 -0.072834 -0.060672 0.903234 0.042198 0.094647 -0.309555 0.531092 0.094776 -0.931345 0.426134 0.487575 -0.237210 -1.117228 -0.476397 1.098124 0.585151 -0.373794 0.110240 0.536311 -0.398405 -0.061974 -0.640602 -1.171750 -1.540123 -0.204485 -0.430946 -0.402249 -0.526983 -0.487070 0.603506 0.038102 0.494803 0.576352 0.496795 -0.581102 -1.420170 -1.347403 0.327839 0.685851 -0.512989 -0.699323 0.214925 -0.525044 0.642362 0.685631 0.451878 -0.559003 0.709783 1.044233 1.049439 -1.402791 0.007318 0.940936 1.124983 0.379064 -0.944071 -1.537862 -1.573970 -0.188001 1.485621 1.049504 -1.432244 -0.657686 0.844779 0.863766 -1.051157 0.064201 -0.855595 -0.809769 -0.852341 0.698470 0.657237 -1.246730 0.009512 1.711530 -0.620678 0.195404 0.036840 -0.610566 -0.072176 -1.607220 -0.346544 1.972411 0.114670 0.374101 0.173655 -0.648963 0.861265 -1.075069 0.161426 0.564748 0.562726 -0.356758 -0.255987 0.193408 1.479573 -0.609388 0.469702 0.463242 0.092069 0.358592 -1.376657 0.528695 -1.511010 -0.619137 -0.726988 -0.409431 0.460804 -0.861948 -1.206222 0.632736 -0.539529 0.578890 1.862023 -1.075168 -1.190622 0.521716 -0.120056 0.576403 -0.014409 -0.539878 0.250892 0.626153 -0.970081 -0.573026 -0.513021 0.909850 -1.093740 0.994107 -0.661683 0.301609 -0.112908 -0.842408 -0.133173 0.565234 0.594907 0.007391 -0.268314 -0.368799 -0.621892 0.069048 -0.555771 0.428609 0.752766 -0.545152 -0.912031 0.192894 0.075496 -2.150388 -0.417178 0.382103 -0.109988 1.421259 -0.547399 0.077792 0.919919 0.170248 -1.425612 -0.556916 -0.726406 -0.820743 -0.240871 -0.488794 -0.324054 -1.387102 -0.185703 0.848863 -0.255699 -0.834470 0.304646 0.700930 0.702408 0.158605 0.669747 0.562746 0.335927 0.245472 -0.434979 0.189741 0.507440 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/topological-sorting.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/topological-sorting.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = -0.358222 0.103536 -0.055112 -0.350278 1.203107 0.007452 -0.092982 0.603660 0.384731 0.383127 -0.727863 -0.195903 0.037689 -0.400632 0.159597 0.119584 0.014763 0.233000 -0.476303 -0.406550 0.205438 0.326575 0.074463 -0.342030 -0.081143 -0.372722 -0.350116 0.113481 -0.043699 0.154119 -0.502077 0.145621 0.571818 -0.172864 0.318927 0.286120 0.685881 0.445128 -0.155687 0.536581 0.600276 0.161647 -0.170226 -0.580902 0.144206 -0.456537 -0.624953 -0.198402 0.218234 -0.657966 0.672116 0.321339 0.162962 -0.167375 -0.082057 0.394616 0.158585 -0.011812 0.484852 0.374620 -0.783339 -0.008513 -0.420747 0.797177 -0.372040 0.868959 -0.145636 -0.930556 -0.748799 0.625092 0.395880 -0.425446 -0.548553 -0.101905 0.062495 -0.180871 0.321708 -0.034334 0.907788 -0.144547 -0.311461 0.354081 -0.236589 0.357097 0.017285 -0.077812 -0.265508 -0.158123 0.171937 -0.332822 -0.420358 0.585524 -0.386558 0.390273 -0.604637 -0.452499 0.038506 -0.076583 -0.031679 -0.512052 0.170536 0.282385 0.021780 0.035882 0.062337 -0.351515 0.437312 0.601782 0.028181 0.097924 -0.186028 0.007335 -0.012251 0.130799 0.067188 0.160268 -0.587570 0.255016 -0.188974 0.048774 -0.311907 -0.048200 0.486903 0.148833 0.229152 -0.383125 0.643516 0.129836 -0.516405 -0.061725 0.195219 -0.058888 -0.529407 0.118568 0.233319 0.139977 -0.067369 0.093000 0.243188 -0.265646 -0.427711 -0.207207 -0.318276 -0.109854 -0.427317 -0.054358 -0.028926 -0.099815 -0.226135 0.414877 0.284582 0.123508 0.647455 0.262908 -0.113240 -0.208292 -0.629524 0.430519 0.849216 0.011781 -0.479776 0.235575 -0.451543 0.279809 0.270241 0.127966 -0.210298 0.556039 0.049886 0.228920 -0.410877 -0.148976 0.627509 0.521985 0.320183 -0.680280 -0.143790 -0.582457 0.153862 0.836269 0.653647 -0.844509 0.015683 0.674564 -0.068300 -0.195641 0.175525 -0.389626 -0.333335 -0.356389 0.202040 0.348855 -0.546381 -0.436764 0.258478 -0.435028 0.536577 0.073331 -0.149938 0.006991 -0.522400 0.027391 0.899620 0.114305 0.027094 0.072266 -0.181175 -0.142026 -0.681124 0.004326 0.503977 -0.278957 -0.183082 -0.322605 -0.016607 0.711845 -0.450816 0.165269 -0.339212 0.131610 0.267877 -0.269536 0.298912 -0.546826 -0.220912 -0.337002 -0.269515 0.190129 -0.565000 -0.137004 0.389322 -0.301287 0.606099 0.512048 -0.322121 -0.298337 0.414071 -0.009242 0.565280 0.041331 0.092735 0.135258 0.495036 -0.327107 -0.004222 -0.320200 -0.109921 -0.313662 0.603408 -0.660760 -0.044556 0.323121 -0.360667 -0.354415 0.455265 0.427082 0.285197 -0.177664 -0.200567 -0.272347 -0.066269 -0.234397 0.163772 0.312970 -0.373120 -0.640074 -0.046414 0.361225 -0.822202 -0.429756 0.241601 0.112812 0.749024 -0.426107 0.332647 0.364540 0.107090 -1.041748 -0.264069 -0.226212 -0.289335 -0.215657 -0.007418 -0.624051 -0.685395 -0.235601 0.361961 -0.332737 -0.335525 0.174137 0.595280 0.247745 -0.063998 0.366999 0.151937 0.201336 0.084979 -0.098582 0.194057 0.165494 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -1.159024 1.624167 0.919976 -1.053928 1.913874 -0.441609 0.693321 0.564714 0.253579 0.566123 -2.499321 -0.716625 -0.245932 -1.973210 0.388505 -1.027272 0.356629 1.004782 -0.247297 0.498666 0.911580 -0.631002 -0.257414 -1.631912 0.065801 -1.333604 -0.676387 -0.118660 -0.103745 0.575639 0.369386 0.733167 1.980591 0.837649 1.584002 1.640015 0.183172 2.192473 0.475840 1.004998 0.552978 1.062149 -0.432872 -2.425515 0.593514 -1.032474 -0.745138 -1.552938 0.042197 -1.685523 1.141098 1.091048 0.286277 -0.225912 -1.515591 -0.141370 1.907073 0.917509 1.416629 1.183745 -0.918990 0.756604 -0.811508 -0.108857 -0.989297 0.943322 0.856948 -1.554322 -0.044671 1.050709 1.181668 -0.917819 -1.458518 -0.196003 0.137206 -0.708835 0.830183 -0.158764 -1.710237 -0.586918 -0.940077 0.569543 -0.058551 1.641432 -0.070954 -0.380420 -0.865025 -0.351238 0.897843 -0.943940 -1.214461 1.483173 -0.271048 0.199549 -0.508291 1.241109 0.996318 -0.044631 -0.562625 -1.050433 0.805772 0.210165 0.093730 0.763232 -1.716293 -1.440723 1.292082 1.179729 -1.037552 1.103182 0.447833 1.154129 0.654069 0.259953 -1.387157 0.956473 -1.949152 0.663835 -0.416235 -0.228858 0.169071 -0.231467 0.022151 -0.011272 0.347794 -1.216074 1.699984 1.430285 -0.634035 -0.787283 0.698374 -0.773789 -1.458171 -0.381334 0.780787 1.007657 0.261034 0.164028 -0.509412 -0.893464 0.139045 -1.342865 -0.695220 2.023022 -1.139858 -0.209382 -0.296610 -0.487917 -0.832271 0.484165 0.130026 0.109651 1.621911 0.784223 -0.818501 -0.410369 -1.210103 0.395552 2.821424 0.946155 -1.356826 0.580730 0.181121 0.295898 0.670049 0.163620 0.221493 0.320616 -1.485031 -1.021059 -0.901167 -1.491016 1.420513 1.502254 0.687412 -1.905242 2.183450 0.125193 -0.725480 2.532157 0.995539 -1.338624 -0.252997 1.861915 -1.862344 -0.899264 0.443998 -0.453534 -0.332277 -0.748855 0.333512 -0.001796 -1.540880 -1.491185 -0.375384 -1.696721 1.366518 0.538611 0.649410 -0.678128 -1.143210 -1.245139 2.933748 0.132874 -0.313312 0.032691 -0.373643 -0.261895 -1.979206 0.260030 0.754051 -0.900690 -0.673372 -0.890830 0.358173 1.535429 -1.751647 -0.004696 0.048283 -0.668673 0.610684 -0.132334 0.360066 -2.050922 -1.203797 -0.002610 0.159526 0.725581 -0.077666 0.979264 2.035234 -0.606820 0.697851 1.632470 -0.036741 0.414324 1.744625 -0.627868 1.429970 -1.050812 1.595231 0.412307 1.423705 -1.008369 -0.826342 -0.015174 -0.471986 -0.877084 1.528229 -1.580925 0.309104 1.039777 -0.697520 -0.684843 1.500273 0.606431 0.811393 -0.576878 0.393617 -0.959664 0.319547 -0.269271 0.269815 1.259819 0.111129 -1.809019 -0.519796 1.183953 -0.823207 -0.907035 0.585992 0.030640 1.708958 -1.230615 1.131803 0.258935 -0.352918 -1.682904 -1.522753 0.959972 -1.558173 -1.119589 0.676910 -1.945027 -0.589951 -0.864506 0.810600 -1.538008 -0.363808 0.064170 1.465669 0.569706 -0.337459 0.513563 0.019690 1.005519 0.126906 0.045043 -0.099858 1.630591 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = -2.164570 2.163553 1.066029 -2.187283 3.944139 -0.620520 0.717643 1.283623 0.940020 1.116428 -4.459584 -1.345294 -0.584259 -3.686296 0.558385 -1.501387 0.693288 1.710513 -1.017741 0.846249 1.778552 -1.037598 -0.007172 -2.913975 0.033707 -1.868555 -1.179363 -0.060593 -0.333257 1.053724 0.445927 0.999792 3.370564 1.473206 2.580620 2.447662 0.657406 4.214389 0.341621 2.098663 1.203032 1.893851 -0.589369 -4.538608 1.450838 -2.138897 -1.764288 -2.721561 0.323579 -3.561260 2.269057 2.099878 0.616911 -0.729655 -2.577974 -0.171716 3.596790 1.525311 2.623187 2.109968 -2.094838 1.012268 -1.726410 -0.603564 -1.823018 2.118461 1.817034 -2.909467 -0.710723 2.146043 2.164567 -1.941215 -2.951220 -0.554785 0.539267 -1.151639 1.704611 -0.355667 -1.906092 -1.121626 -1.489601 0.837113 -0.340876 2.775519 -0.332266 -0.427079 -1.129572 -0.801844 1.475253 -1.767801 -2.109864 2.432065 -0.711653 0.771840 -1.323671 1.996389 1.059804 -0.288366 -1.672666 -1.815272 1.311050 0.718284 0.213391 1.331434 -3.230034 -2.600997 2.844437 2.272742 -1.598450 1.413673 0.880983 1.645071 0.729811 0.571947 -2.555595 2.233364 -3.522026 0.816656 -0.644492 0.007962 -0.041627 -0.397567 0.519289 0.046437 0.603682 -2.222679 3.572500 2.475478 -1.464029 -1.406182 1.457384 -1.197525 -2.544251 -0.396382 1.537550 1.369263 0.392487 0.306259 -0.582146 -1.675284 -0.391476 -2.045620 -1.354356 3.079311 -1.830406 -0.247243 -0.526470 -1.093270 -1.251107 0.774170 0.335469 -0.105765 3.074125 1.221144 -1.510438 -0.552075 -2.093484 1.082605 5.353458 1.630057 -2.637847 0.963216 0.261104 1.062184 1.216236 0.129116 0.557173 0.659534 -2.139268 -1.252956 -1.395724 -2.419386 2.569549 2.656252 1.568046 -4.087726 3.209772 -0.026446 -0.421657 4.824739 2.152807 -2.841900 -0.396587 3.366118 -3.079026 -1.343649 0.467868 -0.330169 -0.594981 -1.344001 1.033452 0.043146 -2.798223 -3.172015 -0.745479 -3.085121 2.456178 0.800971 1.092739 -1.136606 -2.350461 -1.657383 5.247510 0.123417 -0.851234 0.277683 -0.794757 -0.448276 -3.791601 0.428784 1.413701 -1.684491 -1.140649 -1.529971 0.570974 3.033854 -3.048529 -0.263181 -0.308956 -0.986584 1.157218 -0.594138 0.888671 -3.605267 -2.117307 -0.237129 0.136227 1.533082 -0.301880 1.044480 3.545541 -1.261259 1.509417 2.663450 0.059354 0.636178 3.266125 -0.863767 2.847795 -1.689573 3.307956 0.359536 2.728206 -1.596474 -1.066419 -0.249315 -0.732503 -1.424300 3.006319 -3.050852 0.351906 2.030587 -1.208943 -1.445001 2.853327 1.280905 1.577482 -0.845280 0.579544 -1.615723 0.378794 -0.386375 0.564200 2.195400 -0.075885 -3.433215 -1.263694 2.329385 -1.573304 -1.609182 1.245312 0.149897 3.476758 -2.233085 2.176260 0.615915 -0.897230 -3.006150 -2.459214 1.501031 -2.662773 -1.690776 1.481036 -3.628476 -1.263673 -1.459165 1.877995 -2.247101 -0.316945 -0.153242 2.684823 1.451053 -0.500747 1.308150 0.199407 1.765040 0.124053 0.007821 0.122362 2.887403 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = -2.308786 3.225508 1.860310 -2.367658 3.683687 -0.347778 1.012765 1.017184 0.989030 1.023498 -5.037305 -1.424725 -0.597806 -3.690404 0.623175 -1.802263 0.144709 2.156185 -0.844816 0.796389 2.111659 -1.079570 -0.209016 -3.442558 0.176752 -1.817091 -1.487330 -0.435578 -0.901948 1.837148 0.754817 1.017593 3.116571 1.902675 2.395610 2.809660 0.355075 4.948526 0.225901 3.782559 1.133917 2.193851 -0.778682 -5.366006 2.224826 -2.566996 -1.155358 -3.506103 0.052273 -4.226794 3.685128 2.112555 0.733000 -1.047332 -2.658947 -0.688419 3.957059 2.089251 2.560656 2.502574 -2.040315 1.709978 -1.880616 -1.337803 -1.893144 3.055795 2.842653 -3.272967 -0.746319 1.975783 3.526629 -2.178098 -3.457783 -0.756408 -0.133681 -0.982628 1.632605 -0.607805 -3.184466 -0.551373 -1.756462 0.816513 -0.131136 3.073977 -0.424472 -0.879075 -2.166958 -0.852168 1.976752 -1.482901 -2.849812 2.914254 0.012472 1.442147 -1.664724 1.680433 1.232632 -0.205853 -1.474656 -1.210870 1.610841 1.517123 0.271469 2.109120 -4.862958 -3.075319 3.697529 2.937007 -2.588825 0.876213 0.930486 1.710750 0.538776 0.308792 -2.630653 3.074298 -3.787632 0.895956 -0.021294 0.144742 0.313364 -0.608776 -0.286126 -0.798843 0.217401 -1.863960 3.810478 2.523457 -2.016019 -1.518567 1.805285 -1.303740 -2.837051 -0.525598 1.475277 1.991260 0.072910 0.586020 -1.286504 -2.221313 -0.210947 -3.381931 -1.573215 3.685983 -1.585174 -0.460022 -0.828528 -1.403664 -1.508132 0.688932 -0.030242 -0.163919 3.076954 1.606667 -1.123296 -1.552244 -1.866874 0.992065 5.543201 2.808140 -2.817371 0.475679 1.101462 1.312025 1.486917 -0.420103 0.217969 1.405599 -2.401240 -1.607758 -2.255116 -3.275530 2.587830 4.015131 1.982608 -4.224774 3.749845 0.211867 -0.900256 5.006504 2.486792 -2.405960 -1.050462 3.495339 -3.129029 -1.791029 0.404057 0.155375 -0.654033 -0.813105 0.677269 -0.301935 -3.085482 -4.022744 -1.051034 -3.381403 2.840973 1.006768 2.044520 -1.430676 -2.761618 -2.073921 5.258350 0.151765 -1.308612 0.367480 -0.328587 -0.374110 -3.688881 0.908471 2.212989 -1.712471 -2.058061 -1.511935 1.058700 3.002343 -3.705130 -0.787393 1.469081 -1.899892 0.990650 -1.369146 1.303205 -5.009786 -2.335626 -0.541839 0.754427 2.221138 0.747281 1.255853 4.347858 -1.319469 1.157459 4.499695 1.123643 0.293592 4.070756 -0.403661 2.531679 -2.382264 3.175773 0.129635 2.945693 -1.510164 -1.319231 0.135231 -0.157316 -0.987750 3.451144 -2.921021 0.563573 1.900343 -1.919454 -0.575686 3.488925 1.261598 1.786952 -1.119707 1.045676 -1.532898 0.483873 -0.170602 -0.069084 2.728360 0.063476 -4.005887 -1.863951 1.884651 -2.043550 -1.729811 1.492790 0.096814 3.641863 -2.185460 2.658161 0.383305 -1.895107 -3.667572 -2.046787 1.543420 -2.894701 -2.360348 1.654235 -3.431753 -1.062151 -1.656207 2.057165 -2.635731 -0.557217 -0.800319 2.218538 1.670592 0.187482 1.400435 0.398026 2.488432 0.378051 -0.490891 0.119272 3.684997 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -5.020316 3.899041 4.129464 -2.074632 6.219923 2.244713 1.516211 2.177872 -2.651886 5.861740 -7.380124 -2.790060 -3.257221 -4.424272 -1.018414 -4.755919 0.764579 -1.375911 -1.676171 1.824645 2.867650 -4.032838 0.060202 -3.221644 -0.917744 -5.753315 -3.303391 0.040796 6.623827 -1.965483 -0.381839 -0.731907 9.294257 0.904473 7.657317 5.180903 1.975316 6.717710 0.329173 -1.174942 -2.275892 6.400213 -4.875062 -4.147991 -0.459604 -5.947072 -2.947704 -2.098674 2.167211 -1.493920 -0.382186 4.901257 -1.289878 1.677713 -3.774297 3.267797 4.606961 1.117865 9.546024 0.942004 -2.531309 -0.664863 -5.333995 3.415935 -2.496896 2.599321 -2.197773 -3.750530 1.677326 -2.257356 -0.349256 -4.276105 -2.119361 5.671868 1.985293 -5.159586 2.450128 -2.362823 -7.993537 -7.088898 -5.276184 1.222038 1.194998 5.442166 -0.521617 -0.059839 0.269143 2.621319 -0.503469 -9.154513 0.039444 7.017979 -4.292413 -1.054105 -2.091695 5.244190 -1.281321 4.085986 -4.778362 -1.480317 1.493334 0.554231 0.868199 -7.099766 1.992761 -6.706213 2.463574 -0.388653 -0.564373 1.732330 4.133491 3.266358 6.841568 6.988498 -6.771625 1.117269 -5.334956 1.113663 -0.970205 -0.417225 0.447679 3.360056 -1.752902 1.117053 7.297281 -8.363227 1.926868 2.027218 -3.797614 -7.412559 -0.929314 -7.155700 -5.920756 -1.290478 2.388504 2.420679 1.070976 -5.510103 -0.091852 -1.962487 -1.693867 -2.815407 2.404267 6.177599 -5.658840 -1.445266 -0.511517 -0.747300 -3.417090 6.070453 3.647390 3.150540 7.808356 3.982678 -2.096151 1.979196 -5.616658 -0.394917 7.629951 2.229021 -7.292971 5.011849 -4.689427 -0.157062 3.623874 3.448059 5.030085 0.550717 -6.175511 -4.014498 2.451598 -0.586051 7.940245 1.571970 2.728631 -0.950630 9.007909 -1.804995 -5.673382 7.024141 3.916419 -5.961521 1.563640 1.857614 -3.614418 -0.589765 4.587688 -4.953840 0.111025 -4.057048 -1.237329 2.192148 -3.052024 -0.610531 1.245319 -7.584380 9.794057 0.365439 3.146204 2.317920 -6.301048 -7.897469 7.359223 -1.094046 -1.098946 -3.158873 -2.194743 -4.923150 -7.051773 1.356530 -0.037570 -3.906373 -3.395357 -6.880306 2.707601 3.494519 -0.834931 5.195250 -5.781269 -3.580474 2.384873 0.638837 5.006473 -1.582617 -4.123976 -1.310876 -1.468061 5.217508 -4.193368 7.312138 9.165078 -2.192837 5.976733 -2.077261 -3.278787 0.748224 3.038992 -7.060781 6.890921 -1.892417 3.917501 -0.892051 4.513850 -4.373037 -2.007399 0.953595 -0.243083 -1.122038 2.785471 -2.927344 0.178408 -1.005336 -6.489005 -1.469149 0.793017 -1.900471 -0.674076 0.817679 1.575303 -6.010375 -0.931143 -3.757449 0.475864 5.104557 0.670344 -4.242318 2.000406 -1.464871 0.970075 2.015706 -0.147757 -0.577588 4.027226 -6.282442 -3.429215 -0.023462 -0.695348 -3.892963 -8.218044 -1.659171 -5.149223 -4.661584 5.833882 -6.091604 1.205333 -5.186533 -2.621818 -6.626770 -2.467904 2.423512 9.369027 4.251780 -5.572434 1.125344 -0.879396 6.615217 0.656786 1.014521 0.885705 2.676979 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/binomial-coefficient.cpp__main = -0.684953 0.531302 0.668557 -0.614471 2.117417 0.187431 0.245597 1.523857 0.110768 0.685323 -1.452125 0.013710 0.211873 -0.433164 0.179528 -0.381760 -0.189058 0.275018 -0.830590 -0.478989 0.389188 0.747264 -0.183258 -0.681463 -0.181247 -0.747275 -0.738003 0.060636 0.105029 0.384604 -0.451415 0.144395 1.209637 -0.305177 1.052156 0.770101 1.370230 0.656833 -0.506047 1.199431 0.799589 0.461356 -0.507818 -0.808860 -0.063691 -0.892243 -1.140615 -0.203627 0.195845 -1.219620 0.953598 0.563227 0.225132 0.041330 0.287662 0.958465 0.164780 -0.378960 0.876630 0.670151 -1.727174 0.127353 -0.919148 1.754293 -0.284894 1.751877 -0.372097 -1.568146 -1.022678 0.652768 0.806845 -0.937749 -0.686627 0.234488 0.055646 -0.369253 0.677873 -0.273834 1.024762 -0.389873 -0.354702 0.648541 -0.082009 0.555727 -0.046058 -0.243717 -0.580680 -0.134803 0.065759 -0.847796 -0.714378 1.493473 -0.994288 0.418669 -1.884018 -0.926120 0.016596 0.436157 -0.029496 -1.079237 0.474119 0.654385 -0.082048 -0.466500 0.107454 -0.699695 0.380681 1.050990 -0.070328 0.602175 -0.997434 0.524444 0.489113 0.540329 0.023648 0.752512 -0.926379 0.676263 -0.744877 0.167630 -0.305288 -0.094288 0.786895 0.669519 0.566584 -0.576612 0.838354 0.234653 -1.068777 -0.398699 0.205462 -0.714621 -1.195595 -0.005237 0.218997 0.664585 -0.065702 -0.269553 0.324659 -0.559391 -0.377375 -1.206328 -0.313065 -0.471593 -1.014715 -0.360591 0.018577 0.247968 -0.704984 1.181916 0.697184 0.205709 1.216399 0.408249 0.058183 -0.347368 -1.051071 0.340356 1.337618 0.227704 -0.924229 0.587587 -0.994834 0.263993 0.562759 0.271712 -0.406549 1.166695 -0.509611 -0.046104 -0.572550 -0.409042 1.295165 1.283194 0.266961 -1.106154 0.207559 -1.624294 -0.541879 1.461997 1.455716 -1.509004 -0.250168 0.763897 0.151069 -0.556527 0.505469 -1.041289 -0.837960 -0.368921 0.037735 0.376118 -0.658421 -0.590491 0.881354 -0.960335 1.206908 0.141146 -0.082946 -0.266008 -0.908096 -0.743867 1.659046 0.190629 -0.172303 0.110195 -0.007666 -0.142867 -1.108705 0.028897 0.892366 -0.295722 -0.638061 -0.685088 0.321359 0.924668 -0.950695 0.555239 -0.593614 -0.430654 0.382687 -0.848674 0.727292 -1.535283 -0.554677 -1.272008 -0.343047 0.597604 -1.131332 0.157163 1.346407 -0.244844 1.309260 0.901113 -1.183512 -0.913217 0.835443 -0.386032 1.031752 0.015379 0.020271 0.212495 0.834944 -0.911903 -0.416464 -0.538539 -0.061517 -0.500436 1.098119 -0.846805 0.188874 -0.073426 -1.077422 -0.191785 0.807351 0.312092 -0.039193 -0.264470 -0.071587 -0.920646 -0.258452 -0.887004 -0.018237 0.710971 -0.810978 -1.255959 0.090209 0.171108 -1.435960 -0.520163 0.177368 0.203549 1.157912 -0.766008 0.244207 0.673277 -0.021731 -2.031361 -0.782212 -0.513667 -0.934715 -0.884334 -0.344781 -0.719912 -1.062829 -0.613961 0.167694 -1.013228 -1.397153 0.792310 1.314185 0.529324 -0.414501 0.431962 0.094645 0.954433 0.392101 0.149871 0.227021 0.244270 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.941400 3.868537 3.955141 -1.863527 6.647350 1.289534 3.032566 3.767436 -4.512514 4.743544 -6.183092 -0.702206 -1.659000 -4.636511 -0.195665 -4.231478 0.661031 -0.820948 -0.927324 1.850968 2.090921 -3.190435 -0.274134 -2.756713 -0.754371 -6.097251 -1.800409 0.098501 5.764756 0.008625 1.035207 -0.285039 7.429498 0.503926 6.318611 4.415969 1.784232 4.250619 0.625141 -2.303534 -1.547266 4.525522 -3.598826 -3.726943 -1.287112 -3.963831 -3.816140 -1.736656 1.244348 -3.165246 -2.926276 4.063668 -0.951818 1.287100 -2.584898 3.479621 4.439196 -1.105274 7.010170 1.135392 -2.948705 -2.332698 -4.019756 4.294771 -1.039266 1.209804 -1.849560 -3.792409 1.566475 -0.629374 -2.727816 -1.702598 -0.453751 4.499487 2.630946 -4.206492 1.908877 -1.768936 -7.959190 -4.885435 -3.017682 1.309254 0.916240 4.945284 0.113550 -0.098458 2.027208 1.402945 -0.320370 -7.358462 -0.222234 6.821632 -3.751499 -2.611362 -3.258000 4.530327 0.363796 3.236643 -3.050142 -2.694051 1.462692 0.382905 0.508116 -7.230974 0.411203 -6.028913 0.495399 0.133158 0.257757 4.586589 1.491280 3.136739 4.708113 5.450575 -6.319763 1.881790 -4.233775 2.153336 -2.238340 -0.106112 -0.271304 1.778164 0.455087 2.547153 5.550837 -6.768465 1.938847 2.582268 -2.009882 -5.911654 -0.819561 -5.833582 -4.623630 -0.973353 1.797763 1.736828 1.159447 -3.938456 0.393062 -1.053629 -1.265566 -2.990806 1.245122 5.239550 -6.979908 -1.022899 -0.231612 0.555580 -3.004322 5.130135 3.264464 2.545774 6.066866 2.919659 -1.653027 3.811271 -4.742581 0.304424 7.565753 1.966605 -5.316813 4.349338 -4.816398 -0.608980 2.305260 2.225296 3.655721 1.269920 -6.588784 -3.820318 3.033416 -0.843042 6.589360 2.878747 1.476478 -2.961228 8.085393 -2.938158 -4.762044 5.658784 4.215122 -5.857195 2.475397 2.126551 -5.227529 -0.416611 3.406261 -5.262724 -0.802313 -3.538181 -1.058154 1.934627 -2.590604 -0.708185 0.919411 -5.947756 7.451746 0.668535 2.396981 0.680164 -3.293058 -6.458743 6.785018 0.288671 -0.764165 -2.702526 -1.678005 -5.934758 -5.674358 0.717039 0.037727 -3.263274 -2.675434 -5.565492 0.814058 3.001189 -1.152822 4.399643 -6.525230 -1.721758 2.062938 1.955629 3.299541 -2.432751 -3.468390 -1.684252 -1.774678 3.231341 -4.054323 6.241353 6.961556 -1.564120 6.278136 -2.801909 -4.605150 0.800229 2.362988 -5.674509 5.688720 -1.069775 4.635612 0.265532 3.969539 -4.157416 -1.650836 -0.054166 -2.620020 -1.637146 2.815248 -3.190847 0.268117 0.299447 -4.878901 -2.545661 0.965967 -1.198930 0.250403 0.149480 0.957650 -5.416429 -0.771517 -3.948905 0.761156 3.983346 -0.807859 -3.882290 1.567181 -0.138842 0.316198 -1.047925 0.099577 0.209917 3.078080 -5.163052 -1.721698 0.226669 0.210630 -4.286110 -7.269854 0.178324 -4.778402 -5.058820 3.444986 -5.469220 1.034660 -4.266082 -2.106689 -7.592379 -3.907501 2.578942 7.944434 1.115551 -4.141208 1.078981 -0.778842 4.743456 0.438551 2.575541 0.486622 1.822006 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -6.312759 4.719213 5.966447 -1.820101 9.033559 0.895115 4.889497 4.832131 -5.907548 6.384762 -9.210857 -3.119895 -3.522143 -6.064949 -0.416965 -6.250950 2.013448 -1.110599 -1.853854 2.801018 3.562625 -4.007690 -0.734219 -4.549880 -1.003151 -6.723059 -3.217804 -0.280878 8.551055 -1.364786 0.516571 0.028750 12.110193 1.143690 11.476144 6.958759 1.940411 6.893578 0.262060 -4.229345 -2.779463 7.876998 -5.889006 -5.852524 -2.409409 -6.304415 -4.545638 -2.585648 2.142995 -2.599733 -3.411642 5.744863 -1.143810 3.425374 -3.770526 4.450281 6.398029 0.186177 11.015523 1.689443 -4.244627 -0.210200 -5.973508 5.262003 -1.557879 2.276497 -3.923617 -5.377341 2.022759 -2.146366 -2.903964 -4.754534 -1.234719 6.978694 3.390249 -6.233924 3.795607 -1.777624 -9.354355 -9.131733 -6.238636 1.679065 1.136080 7.009721 -0.604180 -0.320312 1.537743 2.350350 -0.086046 -11.330451 -0.253505 8.965223 -6.669802 -3.557043 -2.719631 5.966280 -0.458862 5.962475 -5.144200 -4.624210 2.194508 -0.120215 0.544886 -9.229363 3.118189 -7.312060 0.630130 -0.434228 0.224269 6.180011 3.697139 5.382551 8.416506 8.380749 -8.343656 1.905975 -6.132188 3.003071 -4.911825 -0.488861 0.448258 3.444909 0.601133 2.923353 8.563139 -10.390652 2.214904 3.944712 -2.591989 -8.733752 -0.996052 -9.640063 -7.665212 -2.188714 3.290359 3.188056 1.872842 -6.845421 0.516366 -1.885441 -0.881964 -2.726043 1.942194 6.774652 -9.660347 -2.084880 -0.577490 0.308681 -4.765937 7.807723 4.378159 3.919155 8.789646 4.553308 -4.079121 2.986052 -7.144772 -0.339667 10.607859 -0.011695 -8.210273 6.461500 -6.912284 -0.791186 4.451621 3.795510 5.859136 0.403383 -8.877018 -5.157674 4.163614 -0.913081 10.158804 2.502513 2.764999 -3.440813 11.625147 -4.466794 -8.098264 9.244067 5.274558 -9.505906 2.917191 2.646621 -6.251345 -1.051391 5.349636 -7.966962 -0.891305 -6.318234 -1.278732 2.392939 -4.110864 -0.093572 2.889262 -9.452169 11.106400 1.112427 2.683206 1.369442 -5.821135 -8.742247 11.173143 0.673712 -0.897415 -4.253694 -2.824677 -7.177221 -9.014555 1.275138 -1.245974 -3.748290 -3.758689 -8.447940 2.458906 4.465730 -1.614022 6.994702 -8.147117 -2.931694 2.541621 1.864420 5.292050 -3.074592 -5.572855 -2.476768 -3.050946 5.177322 -6.354850 8.812623 11.240596 -2.498847 8.267737 -2.556642 -7.242426 0.752161 3.512213 -9.003708 7.977483 -2.030501 6.651995 -0.072662 6.093821 -6.763728 -3.170207 0.216667 -2.283900 -2.966961 4.137233 -4.121576 0.673555 -0.658631 -7.444994 -3.464065 0.939831 -2.602963 -0.140942 0.256243 1.395761 -9.276046 -0.270795 -6.284975 1.169931 6.458668 -0.300137 -6.316201 2.770587 -0.892088 0.457849 -0.432893 -0.267571 -0.924511 4.925361 -7.775723 -4.064904 0.626644 0.860271 -5.093447 -10.957466 -0.523004 -7.837803 -6.481736 6.116846 -6.866786 1.802997 -6.124199 -3.402930 -10.356005 -5.672233 4.012319 12.039662 2.989766 -6.991414 1.382600 -1.123124 7.747038 1.216393 3.102052 -0.170404 2.991863 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.784587 -0.127678 -0.528997 -0.321090 1.792723 -0.094174 -0.060588 1.031657 0.112505 0.589835 -1.056233 -0.508076 -0.522419 -1.131139 0.290422 0.506804 0.450333 0.457716 -0.701844 -0.455303 0.745852 0.005244 0.161884 -0.642154 0.126262 -0.321470 -0.367831 0.011292 0.350093 0.248588 -1.015661 0.332634 1.182645 0.133668 0.601640 0.502939 0.986052 1.230016 -0.132231 0.257744 0.292591 0.882605 -0.405222 -1.428333 0.734160 -1.039862 -0.657450 -0.414991 0.548559 -0.885196 1.035004 0.742165 0.118603 -0.101506 -0.441859 0.200943 0.851481 0.199390 1.075176 0.689664 -0.888598 -0.413257 -0.614927 0.694593 -0.634156 1.116369 0.232879 -1.338691 -0.949855 0.487357 0.617828 -0.922750 -1.001556 0.006886 0.150417 -0.307759 0.731530 0.120302 1.077205 -0.658366 -1.240642 0.071339 -0.773184 1.003063 -0.295232 -0.249673 -0.329123 -0.356499 0.490744 -0.802338 -0.492553 0.771324 -0.590564 0.866146 -0.891099 -0.283703 -0.313311 0.142390 -0.719378 -0.670806 0.222176 0.450987 0.220686 0.051653 -0.110854 -0.513526 0.977893 0.364601 0.159212 0.293677 0.699113 -0.202683 -0.105438 0.399750 -0.218280 0.208778 -1.005607 0.373192 -0.042672 0.297201 -0.277709 0.183613 0.856561 -0.458072 0.500984 -1.025641 0.912306 0.419165 -0.625237 -0.424661 0.481093 -0.488537 -0.987606 -0.055882 0.886332 0.052008 -0.255244 -0.107500 0.431488 -0.326304 -1.234120 -0.127027 -0.750784 0.337692 -1.070221 -0.175750 -0.414315 -0.706327 -0.234124 0.427755 0.151062 0.437995 0.978648 0.746988 -0.666214 0.128888 -1.062018 0.819035 1.750849 0.408200 -1.093384 0.177803 -0.589772 0.738801 0.734229 0.119818 0.344121 0.573325 0.270194 0.628513 -0.166746 -0.107949 1.139696 0.761371 1.038218 -1.249235 -0.088557 -0.369274 0.092487 1.612558 0.749194 -1.464460 0.479121 0.862935 -0.203089 0.080239 -0.044199 -0.403258 -0.307863 -1.013752 0.571495 0.700589 -1.300203 -0.747705 0.269026 -0.972049 1.019510 0.111417 0.185662 0.335125 -1.330688 0.361626 1.610350 0.156331 -0.122107 -0.276862 -0.583183 -0.679590 -1.222779 0.361063 0.282716 -0.430101 -0.539517 -0.780582 -0.213535 1.566375 -0.331263 0.122006 -0.922602 0.392946 0.379330 -0.282901 0.738428 -1.053691 -0.705490 -0.150418 -0.343091 0.757119 -0.657240 -0.253493 0.854290 -0.914412 0.670077 0.830260 0.206705 -0.146738 0.732490 -0.199139 0.862746 -0.114775 0.915137 -0.174766 1.030048 -0.645724 0.018245 -0.307415 0.350091 -0.427958 1.006248 -0.934433 -0.047260 0.746178 -0.753329 -0.735921 0.609950 0.375471 0.804284 -0.114448 -0.522590 -0.447498 0.032273 -0.166997 0.283105 0.948945 -0.420527 -1.079141 -0.331649 0.179058 -0.909192 -0.351601 0.580958 -0.039308 1.381999 -0.849152 0.243759 0.326790 -0.021112 -1.069534 -0.781682 -0.323367 -0.260930 -0.364327 1.112536 -1.269054 -0.490066 -0.536865 0.591965 -0.945265 0.006329 -0.447870 0.933393 0.427956 0.112894 0.875102 0.502895 0.554026 -0.085394 -0.145754 0.302427 0.629486 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -1.190435 -0.029970 -0.505656 -0.192068 1.693632 -0.290583 0.697339 0.612274 -0.541699 0.967603 -1.439569 -1.477291 -1.043587 -1.514944 0.095498 -0.440534 1.004828 0.191033 -0.630639 0.264695 0.785762 -0.750215 0.082286 -0.706299 0.104628 -0.767450 -0.565261 0.117029 1.519394 -0.494983 -0.815860 0.281478 2.620031 0.176831 1.889252 1.066872 0.350377 1.430317 0.320902 -1.796317 -0.282455 1.685510 -0.898916 -1.297660 -0.313042 -1.126362 -0.887337 -0.399487 0.837054 -0.124260 -0.350047 0.990310 -0.205726 0.524428 -1.060595 0.373818 1.353195 0.584113 2.094492 0.360992 -0.405121 -0.093515 -0.776434 1.296882 -0.751997 0.160007 -0.796214 -1.206437 -0.073169 -0.120082 -0.505644 -0.879848 -0.896756 0.844701 0.853847 -0.920787 0.938708 0.094405 -0.346433 -1.746421 -1.760988 -0.028567 -0.980594 1.458236 -0.472971 -0.175613 0.210265 0.056216 0.266663 -1.749221 -0.019209 1.155219 -1.082949 -0.306165 0.119751 1.030760 0.036512 0.682580 -1.332290 -1.037919 0.083458 -0.501137 0.243584 -0.741565 1.185323 -0.592738 0.039306 -0.095730 0.593047 1.688555 1.575473 0.769809 1.230025 1.118574 -1.091332 -0.664793 -1.133660 0.580703 -1.164386 -0.176003 0.121648 0.941066 0.695856 0.094881 1.492501 -2.029966 0.516543 0.856270 -0.127895 -0.958319 0.083020 -1.310301 -1.416317 -0.410228 1.027434 0.234787 0.159947 -1.066524 0.427764 -0.025212 -0.640770 0.924622 -0.113328 0.738006 -1.539094 -0.323516 -0.290933 -0.495786 -0.321219 1.089881 0.443435 0.784525 1.498709 0.965360 -1.441747 0.444925 -1.605587 0.565367 2.241885 -0.829407 -1.520275 0.879618 -1.173311 0.106470 0.992710 0.942715 1.270963 -0.161236 -0.466855 -0.080002 0.079569 0.096703 1.787212 0.003454 0.649872 -0.835629 1.365742 -0.333001 -0.747611 1.969829 0.353359 -1.695677 0.688963 0.646083 -1.453621 0.043642 0.458773 -1.134632 -0.026834 -2.006341 0.466334 0.922436 -1.145148 0.047212 0.424760 -1.565537 1.620095 0.019805 -0.523015 0.487268 -1.495390 -0.485279 2.497633 0.272479 0.156417 -0.799895 -0.974037 -0.971034 -1.939420 0.284984 -0.827518 -0.616677 -0.274715 -1.410697 -0.007675 1.477471 0.033492 1.097027 -1.946418 0.422858 0.592782 0.843925 0.690787 -0.116763 -1.080772 0.318703 -0.750530 0.648503 -1.354640 0.847089 1.333731 -0.950987 0.767979 -0.341329 -0.886694 0.473742 0.480117 -1.538093 1.487941 -0.309721 1.141531 -0.113543 1.077596 -0.928883 -0.414417 -0.114673 -0.193037 -0.980482 0.691340 -1.029779 0.043863 0.610694 -0.755052 -1.207192 0.151714 -0.171042 0.533426 0.200192 -0.512796 -1.649255 0.244267 -0.308587 0.470555 1.193791 0.248842 -1.091221 0.418108 0.043802 0.044966 -0.188000 0.050832 -0.316945 1.153940 -1.391970 -0.616112 0.206296 0.715866 -0.357213 -1.918846 -0.125101 -0.728049 -0.516602 1.858312 -1.358452 0.040644 -1.009909 -0.157736 -1.306743 -0.419302 0.442429 1.985122 0.556993 -1.153350 0.472761 0.081333 1.017321 -0.090471 0.207876 0.113743 0.515731 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = -0.579407 0.178538 -0.435799 -0.183341 0.756292 0.224658 0.037614 0.368372 -0.288951 0.731042 -0.723262 -0.457126 -0.366910 -0.747241 -0.099957 -0.028024 0.076673 -0.132425 -0.307991 -0.113276 0.372202 -0.483269 0.093516 -0.318508 -0.069491 -0.328772 -0.204559 0.007747 0.917019 -0.379127 -0.603282 -0.153506 0.983370 -0.029956 0.762483 0.432676 0.338817 0.688608 0.117311 -0.230683 -0.282525 0.773034 -0.529564 -0.568742 -0.104836 -0.702814 -0.252635 0.000183 0.399872 -0.030801 0.472490 0.531402 -0.166475 0.109293 -0.455500 0.355164 0.331101 0.140230 1.172937 0.064717 -0.366123 -0.442506 -0.566440 1.022469 -0.386521 0.400650 -0.026505 -0.416767 0.036360 -0.248289 -0.343412 -0.419953 -0.335905 0.641740 0.278108 -0.597361 0.211753 -0.275021 -0.546830 -0.494624 -0.733726 0.103284 -0.145296 0.637458 -0.062729 0.024404 0.093538 0.311671 -0.029653 -1.066397 0.044146 0.801056 -0.535326 0.156885 -0.307885 0.473200 -0.376608 0.421257 -0.610137 0.022621 0.065947 0.240365 0.170251 -1.105868 0.348413 -0.822493 0.528352 -0.099198 -0.018636 0.114818 0.977154 0.014172 0.507903 0.840857 -0.355915 -0.213145 -0.667934 -0.000460 0.133664 0.073656 -0.052710 0.410967 0.012898 -0.222864 0.886406 -1.030348 0.232646 0.124507 -0.358456 -0.917709 -0.130092 -0.739005 -0.648620 -0.034126 0.334527 0.128991 0.001413 -0.596334 0.135940 -0.021084 -0.924158 -0.103838 0.283389 0.474893 -0.591129 -0.150684 -0.108834 -0.146634 -0.344025 0.706132 0.391254 0.405129 0.876506 0.510971 -0.175211 0.305671 -0.624519 0.189133 0.926950 0.125510 -0.952501 0.480390 -0.895592 0.113334 0.339169 0.372129 0.634969 0.309022 -0.376431 -0.006563 0.519156 0.080276 0.888732 -0.067001 0.473567 0.155334 0.741872 0.002316 -0.446572 0.880592 0.394677 -0.887106 0.517225 0.185321 -0.172953 0.253265 0.516867 -0.528204 0.178636 -0.697106 -0.017003 0.419016 -0.501497 0.006886 0.079592 -0.815081 1.237868 -0.004569 0.252055 0.398520 -0.972128 -0.188052 0.822676 -0.028133 -0.117493 -0.441264 -0.323893 -1.101125 -0.774109 0.202941 0.045195 -0.467744 -0.407721 -0.795202 0.107687 0.671229 0.067658 0.637195 -0.682433 -0.129599 0.264988 0.337715 0.671770 0.120200 -0.429791 -0.056526 -0.101866 0.751818 -0.610610 0.617637 0.863090 -0.373941 0.876454 -0.066661 -0.090999 0.035618 0.299142 -0.703884 0.760075 -0.079007 0.020834 -0.227458 0.536419 -0.444017 -0.045958 0.033919 0.176060 0.004694 0.171781 -0.317273 -0.075114 -0.108001 -0.778209 -0.205602 0.041697 -0.161745 0.267151 0.149334 -0.157019 -0.412179 -0.230692 -0.537768 0.079687 0.600375 0.040128 -0.379816 0.198209 -0.328324 0.050853 0.570626 0.060261 -0.082785 0.579540 -0.722185 -0.467646 0.016072 -0.020713 -0.465871 -0.760819 -0.554543 -0.152062 -0.300322 0.781116 -0.713192 0.127113 -0.538860 -0.235541 -0.948398 -0.101783 -0.030998 1.041570 0.468447 -0.393599 0.281422 0.026455 0.688750 0.125428 0.017222 0.299518 0.228478 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -4.729886 3.993864 3.360748 -2.272288 7.098481 1.178494 3.067506 2.942510 -2.698891 5.391144 -7.431795 -1.970054 -2.263930 -5.660450 -0.408855 -4.157638 0.731629 -0.441815 -1.413165 1.195841 2.891343 -3.459516 -0.253633 -3.528822 -0.684304 -6.707570 -2.482136 -0.046554 5.523465 -0.914240 0.809715 -0.121326 8.540346 1.233524 7.460444 5.177365 2.303685 6.128886 0.170726 0.774609 -1.603162 5.584557 -4.026579 -5.216352 -0.423800 -4.777248 -3.744460 -2.824084 1.548524 -3.445542 0.439931 4.848212 -0.914827 1.424823 -3.346054 3.013197 5.454767 -0.395261 8.276284 1.682058 -3.468389 -0.686207 -4.748416 4.397702 -1.961096 2.254449 -0.366361 -4.457367 1.156172 -0.978877 -0.804873 -3.036720 -1.943013 4.747591 2.535417 -4.789391 2.227740 -2.123067 -8.184415 -6.030055 -4.398623 1.480568 1.552289 5.771614 -0.003431 -0.333217 1.282017 1.499323 -0.064951 -8.290154 -0.654200 7.338860 -4.190485 -1.254301 -3.654905 4.697991 -0.731462 3.662100 -3.969152 -2.766544 1.651014 0.857080 0.715453 -5.594184 -1.167159 -6.657562 2.226823 0.249054 -1.058388 2.703957 3.399155 2.558470 5.038409 6.068580 -6.813035 2.720677 -5.352819 2.361989 -0.589572 0.096260 0.161086 1.810041 -0.211394 1.389562 6.138007 -7.537703 2.484427 2.662375 -3.168437 -6.904179 -0.874063 -6.708122 -5.740336 -1.202298 2.374755 2.386080 1.167688 -4.346840 -0.043662 -1.694860 -1.848930 -3.897166 1.278873 5.958924 -6.520460 -1.318562 -0.583082 -0.338848 -3.986749 5.627946 3.270457 2.778973 7.268493 3.683298 -1.763458 2.834498 -5.342137 0.006567 8.713186 3.266877 -6.568837 4.572203 -4.933848 0.259411 3.191947 2.620106 4.084180 0.351291 -6.598437 -2.985971 3.286198 -1.344110 7.633115 2.688647 2.375200 -3.153708 8.541529 -1.259330 -5.361874 7.775759 5.120402 -6.953102 2.433043 2.546512 -4.660210 -0.708588 4.133018 -4.905431 -1.034067 -3.953475 -0.432263 1.657423 -3.243603 -1.038500 1.135710 -7.185325 8.750910 0.751988 3.624907 1.625301 -5.255754 -7.245145 7.988995 -0.575192 -1.071888 -2.736716 -1.877446 -5.441145 -6.698952 1.228311 0.472358 -3.732999 -3.191981 -6.347963 2.127627 4.513627 -1.720705 4.746926 -5.067003 -2.915794 2.247166 0.778721 4.043289 -3.614329 -4.204032 -1.673501 -0.757488 4.383126 -3.632910 6.226945 8.750065 -2.122394 6.220203 -1.155034 -3.646918 0.541544 3.355624 -6.114463 6.469065 -1.926924 4.113917 -0.324592 4.757114 -4.687348 -2.084628 0.294802 -0.880667 -1.619456 3.263973 -3.532599 0.458378 0.093529 -6.390315 -2.147472 1.639247 -1.276372 0.558540 0.174358 1.168881 -5.620421 -0.573775 -4.426620 0.714427 5.007499 0.154020 -4.653978 1.340592 -0.418281 0.090732 0.182564 0.366580 -0.099607 4.452287 -5.902702 -1.998668 0.302401 -0.653694 -4.800456 -8.463454 -0.105027 -6.007372 -5.561953 4.456878 -6.452510 0.939856 -4.999104 -1.898529 -8.383740 -2.988553 1.833526 8.932577 2.773172 -4.041805 1.581804 -0.493511 5.889471 0.489167 1.818124 1.290432 3.196518 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -3.776073 1.643741 2.043047 -1.275432 5.675479 -0.148220 2.578351 1.991816 -2.154423 3.840442 -5.181741 -2.416981 -2.439638 -4.160198 0.033510 -2.363770 1.626739 -0.185533 -1.272390 1.071259 2.390348 -2.436575 -0.161562 -2.424249 -0.376537 -4.001715 -1.882828 0.267911 4.779010 -1.654469 -0.561843 0.513165 7.081384 0.562334 6.259061 4.041034 1.651968 4.637583 0.084372 -2.553285 -1.156037 4.717116 -3.169267 -3.964005 -0.597532 -3.417535 -2.974496 -2.050174 1.869221 -1.329930 -0.811886 3.808592 -0.731199 1.490801 -2.894821 2.536999 4.132738 0.317533 6.631320 1.339501 -2.028332 0.280507 -3.557046 3.144961 -1.708153 1.328603 -2.036514 -3.642185 0.451713 -0.694170 -1.080316 -3.125616 -1.584184 3.480776 2.051979 -3.647626 2.305321 -0.858764 -3.441795 -6.041165 -4.577583 0.836990 0.192658 4.569294 -0.490837 -0.284192 0.945308 1.006625 0.106583 -6.390927 -0.163416 4.573278 -3.845700 -1.483543 -0.896682 3.463525 -0.524573 2.654290 -3.475112 -2.942135 1.087077 -0.536890 0.728385 -3.610896 2.081327 -3.606739 0.642600 -0.227597 0.492404 2.709396 3.584189 2.115009 4.223520 4.458750 -4.464638 0.592828 -4.034266 1.873762 -1.770224 -0.159314 0.133712 2.230886 0.914392 0.953352 4.975628 -6.346856 1.656944 2.078782 -1.644137 -4.565383 -0.315960 -4.888167 -4.531463 -1.314626 2.619071 1.425602 0.750873 -3.405008 0.888710 -0.855213 -1.145844 -0.267569 0.525885 3.947878 -5.393270 -0.963860 -0.720068 -0.857327 -2.395855 4.107747 2.378195 2.636803 5.553766 3.151610 -2.752430 1.722816 -4.859418 0.417943 6.511758 -0.073167 -4.907446 3.634285 -4.052482 0.169742 2.888221 2.740998 3.600175 -0.562582 -3.925261 -1.601506 2.645624 -0.271178 6.079737 0.519126 2.091545 -2.371348 5.486824 -1.366652 -3.778325 6.013299 2.921226 -5.992200 2.253923 2.075916 -3.275598 -0.603385 2.927304 -4.187551 -0.671174 -4.200059 0.303568 1.954011 -3.020670 -0.218605 1.373224 -5.412223 6.108777 0.351542 1.149805 1.786317 -4.044352 -4.095088 6.741376 0.064486 -0.285595 -2.605266 -2.320103 -3.567500 -5.605865 1.010204 -0.920111 -2.257602 -1.948723 -5.020573 1.165153 3.874850 -0.661743 3.769778 -4.839901 -0.806787 1.908866 1.272804 2.990096 -1.349480 -3.292474 -0.387257 -1.657602 2.616219 -3.640589 4.110646 6.099465 -2.352619 3.961924 -1.175091 -3.172168 0.831612 2.151117 -5.130582 5.140595 -0.881723 3.974690 -0.213923 3.585874 -3.881668 -1.540855 0.130549 -0.681464 -2.001784 2.315415 -2.808236 0.221112 0.357486 -4.162025 -2.720149 0.740735 -0.727088 0.370390 0.362200 0.203289 -4.760108 -0.036688 -3.120848 1.155407 3.949218 0.088290 -3.579721 1.514260 0.056355 0.108658 -0.197999 0.286532 -0.431377 3.721221 -4.745296 -1.909178 0.373101 0.941531 -2.769257 -6.687446 -0.076888 -4.262258 -3.116289 4.350809 -4.671337 0.549339 -3.711185 -1.081109 -5.795149 -1.805681 1.534973 6.898259 2.114713 -3.571623 1.413291 -0.270225 3.978752 0.112895 1.028945 0.461563 2.014926 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -0.933096 0.535026 1.086779 -0.921005 2.324773 -0.116216 0.316337 1.478742 1.716880 0.373073 -2.164118 -1.087985 0.122363 -0.180931 0.307164 -0.843507 -0.409705 0.952568 -1.535888 -0.937559 0.730093 1.743017 -0.506818 -1.149592 -0.181037 0.197433 -1.573801 -0.001209 -1.146209 0.521501 -0.590835 0.551350 1.675466 -0.055813 1.665711 1.131925 1.606240 1.659180 -1.222234 3.504712 1.596461 0.756999 -0.515948 -1.549915 0.361845 -1.319072 -1.097978 -0.728095 0.091811 -1.712351 3.271933 0.461237 0.729605 0.117046 0.551858 0.538922 -0.080062 0.645826 0.846436 1.363735 -2.613548 2.100817 -1.441575 1.642019 -0.602424 3.480326 -0.018296 -2.499548 -1.982933 0.925842 2.915891 -2.172043 -1.967405 -0.376654 -0.501756 0.066915 1.209584 -0.195155 2.244790 -0.003455 -0.755968 0.862287 -0.157508 0.485748 -0.599700 -0.724947 -1.949512 -0.508850 0.304169 -0.427140 -1.641231 1.825872 -1.218191 1.458253 -2.500995 -2.214851 -0.289213 0.613334 -0.160009 -1.326341 0.805992 1.174922 -0.252881 1.413860 -0.801964 -0.210734 1.206877 2.209980 -0.917235 0.013954 -1.127140 0.915214 0.620410 0.114469 0.691308 1.520884 -1.320840 0.984918 -1.070241 0.271937 -0.013474 -0.214895 0.586039 0.369066 0.173722 -0.054934 1.332582 0.144910 -1.951275 0.151231 0.667256 -0.671467 -2.021266 -0.264371 0.394298 1.606284 -0.385867 -0.080919 -0.040137 -1.106028 0.249902 -1.959830 -0.684864 -1.661644 -0.071474 -0.857980 -0.113764 -0.063271 -1.119404 1.481579 0.573401 -0.116203 1.470669 0.439407 0.112230 -2.627549 -1.333105 0.306715 1.537040 -0.233716 -1.242540 0.300972 -0.455187 0.816160 1.082149 0.240096 -1.121120 1.647002 0.216653 0.385344 -2.283152 -0.958425 1.615165 2.259551 0.396741 -1.564543 -0.422351 -2.162810 -0.642260 2.446058 2.048401 -1.708794 -1.769310 0.943803 0.795841 -1.515670 0.522503 -0.654429 -1.215847 -0.155994 0.281707 0.093097 -0.873815 -1.154043 1.601071 -1.303880 1.245307 0.036194 -0.389841 -0.848301 -1.918606 -1.087082 2.637844 0.156396 -0.375540 0.730870 0.310853 1.445475 -1.556603 0.198405 1.632604 0.166581 -1.141757 -0.423761 1.329842 1.427670 -2.031402 0.214511 1.538738 -1.316131 0.350952 -2.497073 1.103243 -2.860278 -0.779102 -1.988519 0.008119 1.111142 -0.875419 -0.646218 2.226385 -0.216217 0.973286 3.267638 -1.137921 -1.944970 1.714258 0.013318 1.159551 -0.617197 -0.873840 -0.082458 0.960123 -0.938521 -1.085106 -0.577743 1.032309 -0.808800 1.689636 -0.817400 0.641611 -0.620801 -1.719658 0.742672 1.702764 0.642704 -0.252656 -0.430728 0.248050 -1.344960 -0.082815 -0.740246 -0.460308 1.116635 -0.644310 -2.116225 -0.143340 -0.060213 -2.611133 -0.532605 0.166521 0.084584 1.934115 -0.668126 0.479975 1.190219 -0.653083 -2.815040 -0.392862 -1.056809 -1.613255 -0.891829 -0.801872 -0.011863 -1.877550 -0.608824 0.850873 -0.357148 -1.874689 0.926400 1.165697 1.680965 -0.320868 0.499155 0.354428 1.820878 0.919092 -0.703557 0.396755 0.862275 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -10.999618 10.717661 11.037485 -5.419350 14.531755 1.012639 8.401060 6.079168 -9.230218 11.808915 -16.637634 -4.618775 -5.539257 -12.798829 -0.862128 -12.964080 2.283537 -0.944835 -1.693266 6.379278 6.261645 -9.099079 -1.296151 -7.717112 -2.466912 -14.618878 -5.040942 0.467367 14.582133 -3.752116 4.682761 0.134021 21.053820 1.579788 19.729067 13.432022 3.487581 13.313761 2.090992 -5.405668 -4.798982 13.075727 -9.701919 -10.691240 -3.767538 -9.276336 -8.500873 -6.044548 3.651826 -5.718976 -6.020180 11.305056 -2.213888 4.268981 -9.067132 8.666802 12.479108 -0.517098 19.679901 3.073120 -6.066286 -0.528564 -10.689411 8.989985 -4.340961 2.374862 -5.322906 -8.094454 5.721923 -2.761081 -6.617059 -6.369219 -2.175882 12.053091 6.544988 -12.407583 5.302884 -4.875204 -21.452619 -15.563195 -9.448254 3.750249 4.591072 13.094992 -0.121151 0.010960 4.610204 4.919057 -1.128063 -19.905363 -0.116760 16.356578 -10.373139 -8.090228 -4.266195 14.278329 0.775508 8.405229 -9.025136 -7.188941 4.300492 -1.068949 1.930317 -16.110195 1.912597 -14.777187 0.855185 -0.323740 -1.529100 10.635163 7.420129 9.533075 14.710231 14.645630 -16.774058 4.414163 -13.222022 4.964432 -5.550049 -1.229525 1.157954 5.221470 -0.592181 5.773783 14.641997 -18.703288 5.063084 6.882678 -4.589176 -16.201864 -1.879865 -15.310504 -12.570766 -4.033425 5.537275 5.736530 3.521408 -10.783213 0.288944 -2.566176 -0.225736 -6.950368 4.559925 14.856870 -16.024500 -2.618192 -1.002321 0.350842 -8.383501 12.893400 8.174946 6.446925 17.271224 8.194340 -5.286941 7.936053 -12.722736 -1.699840 18.264602 2.743497 -14.338758 12.348286 -11.743397 -2.515719 6.471591 7.774255 10.318424 0.663175 -18.223521 -11.266019 9.155679 -2.870705 17.318664 2.592716 3.208651 -6.574533 22.923422 -3.691148 -13.949758 17.221868 9.802363 -15.577557 5.434523 5.574079 -12.848745 -3.292925 10.954559 -13.571308 -1.893027 -9.052981 -2.261737 3.796360 -6.850578 -1.206732 2.282794 -16.445497 19.060675 1.325501 4.940494 2.467076 -10.193299 -18.174685 18.375890 0.100865 -2.078823 -7.403527 -5.235193 -12.069626 -16.118181 2.578500 -0.400022 -7.643297 -6.950608 -14.639121 4.756118 7.626369 -3.350653 11.799244 -14.375809 -6.702333 6.007931 5.535299 8.513619 -4.818597 -9.350845 -2.603739 -2.964147 8.391333 -9.098839 17.407502 20.503623 -4.369651 14.863258 -6.064454 -13.150793 3.310240 7.240878 -17.090673 15.958130 -3.294695 11.290625 0.436336 9.607517 -11.744225 -5.604326 1.471076 -5.414431 -4.458456 5.696123 -7.569696 0.869801 -1.518313 -12.877069 -5.542618 2.260841 -3.086759 -1.168087 0.925143 4.254003 -14.151962 -1.706522 -10.856793 1.788990 11.221841 0.753057 -10.118060 5.416116 0.145082 2.531086 0.474626 -0.611999 -0.035426 8.677614 -14.316521 -5.107766 -0.075017 0.454176 -9.763465 -20.320483 1.646775 -14.477822 -11.500978 9.159672 -13.287456 3.008911 -11.268281 -5.009112 -18.833781 -8.227603 7.085321 21.417064 5.491033 -12.092253 2.002381 -3.082365 13.631960 1.749182 4.938493 0.771812 6.691089 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.173834 1.222793 1.977878 -1.205818 3.924515 0.656231 0.669014 2.807460 0.184472 1.202152 -2.804794 0.060615 0.588077 -0.388711 0.242846 -1.353858 -0.680695 0.285961 -1.635928 -0.881648 0.563556 1.699499 -0.454780 -1.240047 -0.417621 -1.374603 -1.636199 0.073336 0.041365 0.924093 -0.432024 0.108529 2.080826 -0.665609 2.006337 1.416122 2.602139 0.978345 -1.376883 2.831491 1.593333 0.677425 -0.988238 -1.208569 -0.371180 -1.650279 -2.314031 -0.300667 0.157139 -2.443006 1.561234 0.953750 0.445729 0.134355 0.995526 1.987188 0.009480 -0.858727 1.433440 1.220543 -3.524389 0.502620 -1.881856 3.285169 -0.206016 3.676976 -0.892307 -2.988978 -1.991360 1.141958 1.560886 -1.703029 -1.181919 0.548516 0.118957 -0.585109 1.197072 -0.681653 1.535877 -0.455992 -0.261429 1.358358 0.228265 0.787586 0.012408 -0.490230 -0.978168 -0.190841 -0.082206 -1.560501 -1.387245 3.114119 -1.897097 0.605162 -4.021052 -2.149562 -0.022276 1.030290 0.092196 -2.030631 0.974081 1.405803 -0.310733 -1.103166 -0.049132 -1.489413 0.524378 2.304810 -0.258972 1.041752 -2.524989 1.147589 1.099891 1.059030 -0.078295 1.854629 -1.452285 1.326331 -1.681952 0.295105 -0.579052 -0.270382 1.239114 1.660294 1.012201 -0.778827 1.438286 0.341211 -2.335623 -0.735007 0.236864 -1.507179 -2.291117 0.076645 0.077873 1.472940 -0.056418 -0.592413 0.440302 -1.215967 -0.169264 -2.649468 -0.376923 -1.327465 -1.680018 -0.784746 0.209386 0.826665 -1.523223 2.528887 1.501103 0.258628 2.259719 0.560231 0.417759 -0.932152 -1.790393 0.426126 2.240884 0.387483 -1.627666 1.146104 -1.883310 0.415492 0.922377 0.410625 -1.056239 2.456540 -1.221385 -0.301927 -1.351949 -0.861516 2.377273 2.846087 0.217346 -1.997603 0.452431 -3.680198 -1.265308 2.431817 3.082000 -2.659889 -0.900924 1.255049 0.370601 -1.316556 1.124404 -2.105013 -1.740259 -0.354785 -0.222643 0.473992 -0.882500 -1.050428 1.914686 -1.758125 2.283682 0.301220 -0.090038 -0.774302 -1.481426 -2.143194 2.944340 0.285613 -0.404380 0.397748 0.322589 0.037436 -1.862361 -0.032498 1.936248 -0.455660 -1.340149 -1.173454 0.916702 1.332528 -1.964304 1.231905 -0.606196 -1.202076 0.620171 -1.944818 1.510485 -3.038396 -0.981008 -2.931558 -0.680220 1.115625 -2.147712 0.348167 2.627773 -0.123664 2.685621 1.584549 -2.838389 -2.131495 1.534688 -0.636699 1.867135 0.074089 -0.245100 0.421183 1.498882 -1.685805 -0.914974 -0.995599 -0.313469 -0.848627 2.162896 -1.425694 0.472528 -0.524915 -2.183701 -0.030166 1.562590 0.423293 -0.513345 -0.558442 0.160204 -1.944089 -0.574168 -1.766758 -0.200080 1.216212 -1.671504 -2.349509 0.203691 0.164897 -2.814822 -1.048280 0.205929 0.405545 1.987717 -1.302386 0.362115 1.339818 -0.224565 -4.080027 -1.300295 -1.102777 -2.083858 -1.865933 -1.183859 -0.893188 -1.998550 -1.173143 0.048653 -1.662645 -3.295243 1.935465 2.487721 1.079393 -0.941036 0.573482 0.085356 1.967756 0.885795 0.346543 0.473445 0.262427 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.789471 0.714707 -0.034458 -0.382251 1.176477 0.550687 -0.091310 0.920810 -0.945668 1.107388 -1.165687 0.271131 -0.407882 -1.121410 -0.075339 -0.157021 0.157979 -0.262979 -0.287989 0.015772 0.493271 -0.644023 0.090403 -0.540801 -0.149932 -0.963266 -0.340953 -0.035828 1.313734 0.167674 -0.369684 -0.231792 1.350863 0.007859 0.896127 0.658986 0.827178 0.919002 0.165017 -0.225213 -0.309467 0.975257 -0.792535 -0.902047 0.093290 -1.035426 -0.630207 0.050133 0.493645 -0.432888 -0.125555 0.834465 -0.150138 0.021272 -0.541565 0.757120 0.696879 -0.519111 1.487876 0.196303 -0.801846 -0.713827 -0.823609 0.649012 -0.321955 0.761445 -0.323181 -0.607154 0.114089 -0.183251 -0.299709 -0.697811 0.035751 0.828319 0.226808 -0.768659 0.602114 -0.342403 -0.789753 -0.825002 -0.807271 0.339957 -0.113750 0.910987 -0.048203 0.002959 0.337615 0.368228 0.041213 -1.420344 -0.034617 1.072872 -0.622843 -0.189681 -0.711166 0.597924 -0.184010 0.557673 -0.551881 -0.200068 0.328538 0.420629 0.177529 -1.637163 0.463085 -1.301044 0.380706 -0.073120 0.108197 0.507838 0.638150 0.096352 0.798587 1.145711 -0.853652 -0.033252 -0.588779 0.073519 -0.077774 0.142288 -0.338476 0.544725 0.599518 0.124539 1.115505 -1.390854 0.490076 0.258192 -0.509140 -1.064581 -0.081852 -1.055824 -0.928636 -0.062080 0.437304 0.117588 0.060080 -0.794132 0.305960 -0.367426 -1.052240 -0.537808 0.158277 0.656842 -1.435561 -0.260016 -0.147802 -0.128189 -0.321699 0.965460 0.540946 0.540549 1.173891 0.574850 -0.260049 0.886462 -0.923064 0.474059 1.618530 0.530191 -1.266902 0.700047 -1.006762 0.259305 0.581003 0.304973 0.839932 0.739206 -0.948948 -0.507467 0.578296 -0.020462 1.073647 0.320865 0.577601 -0.327891 1.177192 -0.144151 -0.636179 1.476201 0.502234 -1.093826 0.544659 0.437681 -0.208449 0.241004 0.379324 -0.798154 -0.112269 -0.733893 -0.270447 0.555226 -0.740015 -0.254826 0.038653 -1.144538 1.542989 0.113147 0.394973 0.145971 -1.098578 -0.070137 1.024444 -0.129579 -0.231838 -0.661729 -0.350077 -1.363379 -1.100546 0.232874 0.253812 -0.669272 -0.629885 -1.170185 0.065954 0.754935 -0.068669 0.616032 -1.891440 -0.274153 0.372125 0.162374 0.978741 -0.969602 -0.621658 -0.258097 -0.430363 0.979397 -0.978629 1.043841 1.258767 -0.621214 1.250252 -0.597209 -0.215754 -0.002561 0.494838 -0.892869 1.052116 -0.088696 0.778862 -0.126415 0.871563 -0.688352 0.029813 -0.164751 0.002861 0.027273 0.534257 -0.610365 -0.132724 0.197778 -0.918574 -0.423607 0.176076 -0.179872 0.297399 0.058910 -0.236928 -0.797121 -0.350077 -0.472573 0.094208 0.872200 -0.272471 -1.058166 0.087874 -0.158634 -0.098595 -0.276812 0.176639 -0.017897 0.706916 -1.037158 -0.430860 0.087129 -0.126602 -0.985370 -0.897289 -0.529768 0.046963 -0.758618 1.194678 -0.979570 0.157188 -0.647979 -0.298966 -1.342758 -0.428877 0.110066 1.246808 0.169529 -0.782445 0.394748 0.005952 0.955857 0.146690 0.290391 -0.005240 0.286263 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.789471 0.714707 -0.034458 -0.382251 1.176477 0.550687 -0.091310 0.920810 -0.945668 1.107388 -1.165687 0.271131 -0.407882 -1.121410 -0.075339 -0.157021 0.157979 -0.262979 -0.287989 0.015772 0.493271 -0.644023 0.090403 -0.540801 -0.149932 -0.963266 -0.340953 -0.035828 1.313734 0.167674 -0.369684 -0.231792 1.350863 0.007859 0.896127 0.658986 0.827178 0.919002 0.165017 -0.225213 -0.309467 0.975257 -0.792535 -0.902047 0.093290 -1.035426 -0.630207 0.050133 0.493645 -0.432888 -0.125555 0.834465 -0.150138 0.021272 -0.541565 0.757120 0.696879 -0.519111 1.487876 0.196303 -0.801846 -0.713827 -0.823609 0.649012 -0.321955 0.761445 -0.323181 -0.607154 0.114089 -0.183251 -0.299709 -0.697811 0.035751 0.828319 0.226808 -0.768659 0.602114 -0.342403 -0.789753 -0.825002 -0.807271 0.339957 -0.113750 0.910987 -0.048203 0.002959 0.337615 0.368228 0.041213 -1.420344 -0.034617 1.072872 -0.622843 -0.189681 -0.711166 0.597924 -0.184010 0.557673 -0.551881 -0.200068 0.328538 0.420629 0.177529 -1.637163 0.463085 -1.301044 0.380706 -0.073120 0.108197 0.507838 0.638150 0.096352 0.798587 1.145711 -0.853652 -0.033252 -0.588779 0.073519 -0.077774 0.142288 -0.338476 0.544725 0.599518 0.124539 1.115505 -1.390854 0.490076 0.258192 -0.509140 -1.064581 -0.081852 -1.055824 -0.928636 -0.062080 0.437304 0.117588 0.060080 -0.794132 0.305960 -0.367426 -1.052240 -0.537808 0.158277 0.656842 -1.435561 -0.260016 -0.147802 -0.128189 -0.321699 0.965460 0.540946 0.540549 1.173891 0.574850 -0.260049 0.886462 -0.923064 0.474059 1.618530 0.530191 -1.266902 0.700047 -1.006762 0.259305 0.581003 0.304973 0.839932 0.739206 -0.948948 -0.507467 0.578296 -0.020462 1.073647 0.320865 0.577601 -0.327891 1.177192 -0.144151 -0.636179 1.476201 0.502234 -1.093826 0.544659 0.437681 -0.208449 0.241004 0.379324 -0.798154 -0.112269 -0.733893 -0.270447 0.555226 -0.740015 -0.254826 0.038653 -1.144538 1.542989 0.113147 0.394973 0.145971 -1.098578 -0.070137 1.024444 -0.129579 -0.231838 -0.661729 -0.350077 -1.363379 -1.100546 0.232874 0.253812 -0.669272 -0.629885 -1.170185 0.065954 0.754935 -0.068669 0.616032 -1.891440 -0.274153 0.372125 0.162374 0.978741 -0.969602 -0.621658 -0.258097 -0.430363 0.979397 -0.978629 1.043841 1.258767 -0.621214 1.250252 -0.597209 -0.215754 -0.002561 0.494838 -0.892869 1.052116 -0.088696 0.778862 -0.126415 0.871563 -0.688352 0.029813 -0.164751 0.002861 0.027273 0.534257 -0.610365 -0.132724 0.197778 -0.918574 -0.423607 0.176076 -0.179872 0.297399 0.058910 -0.236928 -0.797121 -0.350077 -0.472573 0.094208 0.872200 -0.272471 -1.058166 0.087874 -0.158634 -0.098595 -0.276812 0.176639 -0.017897 0.706916 -1.037158 -0.430860 0.087129 -0.126602 -0.985370 -0.897289 -0.529768 0.046963 -0.758618 1.194678 -0.979570 0.157188 -0.647979 -0.298966 -1.342758 -0.428877 0.110066 1.246808 0.169529 -0.782445 0.394748 0.005952 0.955857 0.146690 0.290391 -0.005240 0.286263 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -10.014539 6.658184 6.396917 -5.761937 15.918068 -0.268922 5.040443 3.962666 0.075122 8.962084 -16.448554 -7.851221 -4.895100 -11.793640 0.258407 -8.407457 2.770818 2.480652 -4.694819 2.031650 6.309742 -4.060564 -0.404707 -8.189554 -1.251095 -10.734620 -7.426187 0.775302 6.504390 -3.017157 0.833431 2.001896 19.057368 2.539338 15.914113 11.230507 4.832936 14.721360 -0.490814 2.758029 0.912785 10.936344 -7.154558 -12.791456 0.576103 -9.457619 -8.764678 -7.770067 3.597541 -7.459086 3.832001 9.512374 -0.273227 1.910158 -7.750856 4.644540 11.635866 2.617591 16.062908 5.214013 -7.938348 5.341003 -9.840132 7.099118 -6.572264 7.679579 -1.863907 -12.065336 -1.505761 1.564840 4.374020 -9.256552 -9.282908 6.081981 4.500080 -8.310182 5.919249 -2.765116 -9.202749 -12.534438 -10.540517 3.655604 0.524879 11.270273 -1.158004 -1.321490 0.055548 1.256059 1.566002 -14.235852 -3.790324 13.309220 -8.147628 -0.480549 -5.460989 6.543180 -0.249184 4.856158 -8.296090 -8.169060 3.828131 0.095408 1.385819 -2.178521 -1.281609 -10.033997 5.052546 4.091313 -2.551914 5.425562 6.663782 6.508195 10.215844 9.143768 -11.737209 4.168820 -12.087675 5.228787 -4.288316 -0.849636 0.484952 3.611138 0.743703 2.655573 10.598854 -14.086078 7.735315 5.966252 -7.492781 -9.953629 0.625803 -10.535822 -12.529046 -2.837320 6.031285 5.623598 1.834666 -6.318555 -0.229353 -4.406582 -1.330695 -5.491649 -0.083446 9.077658 -10.208244 -2.475088 -1.554294 -2.852404 -6.964994 10.130145 5.732907 4.820182 15.181543 7.486613 -6.002469 -0.189125 -12.349811 1.338792 18.706497 2.014134 -13.084782 8.539465 -6.956509 1.528594 7.431421 6.182813 5.982120 -0.098531 -9.705822 -4.910213 -0.364591 -3.971282 15.260221 6.166831 4.474810 -9.361563 13.979069 -1.854508 -8.176424 18.996990 8.947228 -14.084269 1.626412 8.162536 -9.391266 -5.068713 7.126462 -8.571053 -3.631897 -8.719131 1.635404 3.085371 -8.154133 -4.220807 3.163446 -14.479326 15.256108 1.368240 1.971198 1.882249 -11.958572 -14.646501 19.750497 -0.750789 -1.433722 -3.642629 -4.668480 -3.147954 -15.702873 2.389545 1.730518 -6.467743 -5.299909 -11.325335 5.458464 11.216300 -6.086749 7.881613 -7.151774 -5.276539 5.148392 -0.431184 7.027557 -9.528442 -8.409566 -2.260515 -2.030663 6.645910 -6.923697 8.627828 17.114951 -5.571926 8.962376 2.735726 -8.566005 0.469559 8.628776 -10.760166 13.714274 -4.648433 8.216473 0.097089 9.769144 -8.588693 -4.884718 0.166597 -0.784346 -5.859499 8.215560 -9.017712 1.058950 1.773038 -10.571237 -5.375310 5.569498 0.399964 1.578969 -0.475859 1.308865 -11.803936 0.793409 -4.984827 2.005886 10.179635 0.941351 -11.485102 2.155797 2.524466 -3.106644 -1.833969 1.353810 -0.412621 11.473333 -11.865649 -0.651802 1.976189 -0.050583 -10.748789 -15.344731 0.714876 -13.361993 -8.303767 8.494419 -12.478158 -2.280315 -9.175021 0.019205 -10.754864 -5.231950 4.565526 16.875238 7.992429 -8.366645 3.811072 -0.641329 11.009006 1.143287 0.533712 1.884275 8.007223 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/graph-coloring.cpp__main = -1.492401 -4.001591 0.882963 -0.608707 3.781479 -2.458235 -1.082067 5.014346 2.641416 0.083573 -3.365697 -1.881103 -2.334239 -3.135647 0.828677 -1.573812 3.161228 -0.169488 -2.164956 -1.010975 1.475577 4.307221 -0.639930 -1.896910 0.623967 -0.244423 -2.093093 -0.252098 -2.259675 0.380218 0.388794 2.519825 6.207870 3.026229 4.335718 2.028145 3.043864 3.505687 -0.052324 3.768095 1.475824 2.581266 -0.390544 -2.551194 -0.326483 -1.959606 -1.464838 -0.032987 0.288176 -0.970790 2.156436 1.101323 1.479386 2.081590 -1.936324 -2.448657 -1.173615 0.032766 1.341939 2.463661 -5.666291 0.299525 -0.782861 1.604668 -1.693213 2.733337 0.957256 0.348247 -1.141743 1.379917 3.744763 -4.187938 -3.302611 -1.576698 -0.314403 0.121577 3.312787 1.995713 6.757887 -0.038597 -1.319708 0.880563 -1.206639 0.998894 -1.618053 -1.415152 -2.458094 -2.227650 1.350548 -0.718496 -1.410166 0.856749 -3.814955 -0.135452 -4.883969 0.212151 -1.688525 1.273899 0.776741 -3.301520 0.765546 -0.390689 -0.596807 3.056266 -2.038953 -0.135846 2.339807 0.253765 -0.597326 2.491791 -1.113913 1.973526 1.473586 -0.356013 1.290250 2.001848 -3.266740 2.525978 -3.067539 -0.763701 -1.478354 -0.092900 2.497162 1.291462 -0.195974 -1.167991 1.766455 2.829967 -1.170831 0.958983 0.983746 -1.593654 -4.261620 0.578689 2.613780 2.243154 0.240507 -0.675748 1.297607 -0.790237 0.614786 -2.309137 -1.725738 -2.291141 0.293133 -2.023350 -0.310923 -0.181171 -1.661541 1.452253 -0.484635 -0.235046 2.252903 -1.293616 -3.322099 -2.825098 -3.394568 0.467737 4.441619 -2.756980 -1.907795 0.793830 -1.168622 1.579023 0.888177 1.742645 0.679183 -1.924883 0.995705 2.222872 -0.947340 -0.760596 2.841926 1.888267 2.064598 -3.471693 -2.382986 -3.828562 2.145687 3.384899 1.033245 -3.950406 -1.939617 2.172525 2.287113 -0.944204 -0.236124 0.264232 -1.481202 -3.886262 2.848785 0.947054 -2.562415 0.326578 2.158718 -2.102188 0.231886 0.185764 -0.497641 -0.940244 -2.935493 -1.441396 6.625354 -0.105749 1.460270 1.292709 -1.638133 3.677052 -4.591331 0.120532 0.191244 0.968267 2.781805 -0.603115 1.479265 3.359467 -2.291658 1.570881 -0.763681 0.168416 1.017730 -3.638948 -0.436501 -4.453051 -2.500423 -1.564422 -0.481391 2.237584 -3.936203 -2.170027 2.258299 -0.640756 3.144623 3.482050 0.945771 -2.870392 1.323721 -1.515796 2.411828 -1.351699 2.081416 0.050645 2.120409 -1.149652 -2.564130 -2.226617 0.315099 -2.647188 1.550379 -2.857326 1.374808 1.937178 -0.169789 -0.443205 2.020093 0.473959 -0.823571 -0.646116 -0.446555 -2.569310 0.509865 -1.759812 3.603081 2.125678 -1.012634 -3.759785 0.018045 3.145228 -5.016630 -0.250711 -0.100783 -0.467422 3.767479 -1.533993 -0.786140 2.653721 1.828304 -1.111114 -3.284035 1.002034 -0.778377 -0.406749 -0.791586 -1.322702 -4.203084 -0.823393 1.723444 -1.572937 -1.662367 0.468668 2.032066 2.545999 -1.065958 -1.048954 1.397389 -0.646420 0.010550 0.094990 2.176294 0.836339 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.957245 0.689644 0.298419 -0.383392 1.434589 -0.308689 0.592408 0.306778 0.556015 0.489451 -1.873578 -1.632623 -0.458831 -1.136103 0.208698 -0.912788 0.610660 0.429087 -0.580577 0.066690 0.537395 -0.140771 -0.128606 -1.139146 0.038811 -0.575463 -0.833147 -0.103810 0.147371 0.142750 -0.348384 0.529185 2.075514 0.569880 1.713270 1.135691 0.061844 1.444727 0.195089 0.322987 0.430572 0.990203 -0.565510 -1.441389 -0.174409 -0.967433 -0.728031 -0.809081 0.128591 -0.674130 0.865138 0.682539 0.236452 0.347665 -0.899842 -0.128612 1.046938 1.079484 1.375616 0.694714 -0.822003 0.976246 -0.604149 0.493015 -0.653776 0.838491 -0.148035 -1.369862 -0.368843 0.559115 0.676966 -0.953445 -1.294294 0.148478 0.380836 -0.560636 0.798066 0.173641 -0.599138 -0.679815 -1.128263 0.514866 -0.359198 1.098549 -0.102988 -0.250257 -0.600797 -0.157501 0.610758 -1.017721 -0.693098 1.171165 -0.663092 0.070055 -0.091521 0.450740 0.439083 0.407878 -0.585544 -1.054630 0.427299 -0.125235 -0.094397 0.410539 -0.350326 -0.861166 0.810040 0.906831 -0.443445 0.989735 0.738761 0.959350 1.025412 0.474333 -0.877174 0.052346 -1.099097 0.545479 -1.023582 -0.466816 0.097549 0.181274 0.084670 0.166913 0.659197 -1.199607 0.948858 1.087837 -0.562474 -0.491840 0.204576 -0.927120 -1.349383 -0.228510 0.614295 0.748989 0.361851 -0.333954 -0.270298 -0.652219 0.254043 -0.087589 -0.337257 0.758008 -0.654740 -0.334090 -0.066109 -0.250814 -0.755899 0.872874 0.238305 0.234599 1.152953 0.484776 -1.114018 -0.991172 -1.077559 0.349925 2.118808 -0.514908 -1.191123 0.636151 -0.333138 0.201205 0.624300 0.395742 0.248803 -0.020423 -0.680437 -0.402867 -1.155857 -0.656135 1.333831 0.861213 0.494306 -0.983710 1.418389 -0.501605 -0.672369 1.924268 0.730259 -1.183164 -0.507371 1.269565 -1.491633 -0.595869 0.579246 -0.779317 -0.125888 -1.281401 0.239957 0.164661 -1.052616 -0.429996 0.419505 -1.412949 1.211575 0.444646 -0.130105 -0.420531 -1.078727 -0.857183 2.661794 0.193339 0.149196 -0.008762 -0.445537 -0.108659 -1.702310 0.042937 0.151686 -0.492489 -0.203063 -0.809827 0.455557 1.191531 -1.030391 0.639412 0.061019 -0.185237 0.352181 -0.129189 0.400433 -0.889686 -0.936109 -0.068276 -0.389068 0.484592 -0.709808 0.622081 1.288693 -0.380737 0.670905 0.983698 -0.733480 0.013385 0.850122 -0.656633 1.034178 -0.781312 0.638194 0.288227 1.181293 -0.723694 -0.656324 -0.146999 -0.354643 -1.031649 1.152654 -1.202542 0.204465 0.637549 -0.462079 -0.726628 0.742143 0.159520 0.491758 -0.426154 -0.032090 -1.346313 0.459490 -0.238326 0.455602 0.882224 0.332938 -1.234871 -0.010000 0.639813 -0.645681 -0.560728 0.216622 -0.365409 1.283246 -1.020846 0.124947 0.459316 0.266337 -0.983777 -1.161613 0.105944 -1.223806 -0.548717 0.679916 -1.147809 -0.488484 -0.631933 0.211453 -0.641127 -0.672641 0.569671 1.479305 0.657249 -0.885524 0.167831 0.052647 0.736511 0.241148 -0.044676 -0.045874 0.825482 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.317931 0.110941 -0.004202 -0.198651 0.853206 -0.235221 -0.057017 0.546806 0.342815 0.311973 -0.500779 -0.194828 -0.089005 -0.429897 0.159407 0.044943 0.176703 0.386475 -0.260526 -0.246789 0.219325 0.214239 0.008940 -0.233402 -0.057171 -0.355568 -0.217804 0.099192 -0.134993 0.071259 -0.299850 0.322508 0.665202 0.024225 0.452999 0.378772 0.409075 0.511147 0.138615 0.441389 0.384835 0.164829 -0.118444 -0.604169 0.198239 -0.273656 -0.371238 -0.263883 0.166011 -0.488330 0.648070 0.285464 0.104282 0.005229 -0.221138 0.130052 0.118264 0.146150 0.423618 0.332945 -0.607681 0.074192 -0.271491 0.535439 -0.377937 0.448315 -0.050489 -0.745935 -0.390804 0.467899 0.423193 -0.385751 -0.425304 -0.059471 -0.007510 -0.177664 0.265252 0.093354 0.491407 -0.119542 -0.442342 0.263404 -0.198148 0.352806 -0.010730 -0.058889 -0.378966 -0.133212 0.163781 -0.304595 -0.242741 0.446618 -0.314281 0.361863 -0.356191 -0.178832 0.126790 -0.070618 0.001497 -0.455433 0.170013 0.019474 0.072397 0.265557 -0.116440 -0.190511 0.398616 0.320978 -0.014848 0.187287 0.036648 0.114123 0.105481 0.098976 0.010332 0.113500 -0.610525 0.366976 -0.137783 -0.066112 -0.152900 -0.010917 0.291067 0.042408 0.200757 -0.411377 0.449194 0.172379 -0.253264 -0.094758 0.177577 -0.049492 -0.386566 -0.084850 0.371818 0.114063 -0.050983 0.057133 0.098633 -0.164280 -0.270169 -0.253682 -0.332350 0.122651 -0.324350 -0.013613 -0.098224 -0.215970 -0.172457 0.224688 0.158015 0.230448 0.494172 0.286256 -0.205539 -0.271759 -0.630019 0.232858 0.678627 0.065925 -0.395038 0.262584 -0.217797 0.135862 0.249178 0.211029 -0.041306 0.237097 0.046912 0.074349 -0.353839 -0.060975 0.511876 0.392882 0.246346 -0.491249 -0.054986 -0.224285 0.017663 0.803863 0.347587 -0.623156 -0.027309 0.563396 -0.171312 -0.231056 0.147540 -0.335180 -0.228010 -0.333867 0.202325 0.329694 -0.559219 -0.259196 0.261341 -0.390432 0.359843 0.039649 -0.087652 0.019247 -0.552339 -0.011798 0.875210 0.115558 0.106642 0.014447 -0.318193 -0.037638 -0.599369 0.015560 0.326814 -0.141570 -0.082004 -0.271383 -0.056455 0.623323 -0.278134 0.149661 -0.187649 0.084555 0.274976 -0.237837 0.093760 -0.565936 -0.211009 -0.063082 -0.153024 0.153248 -0.292005 -0.030316 0.340206 -0.269154 0.361364 0.620235 -0.105896 -0.079496 0.296552 -0.166101 0.475164 -0.115761 0.115794 0.194339 0.350768 -0.296414 -0.085391 -0.198063 0.056643 -0.374357 0.436334 -0.503359 -0.024584 0.294016 -0.293401 -0.296362 0.260967 0.368299 0.248445 -0.112246 -0.147484 -0.247436 -0.006076 -0.206707 0.226324 0.298315 -0.163840 -0.470698 0.086167 0.291221 -0.595377 -0.335462 0.188011 0.087004 0.578763 -0.407119 0.237892 0.264758 0.122698 -0.687021 -0.329533 -0.033897 -0.304770 -0.195677 -0.005833 -0.624056 -0.512629 -0.179712 0.336670 -0.358023 -0.066029 0.067513 0.523832 0.174622 -0.058330 0.294912 0.096384 0.108340 0.054348 -0.076972 0.071497 0.353927 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -2.238689 1.825289 0.382600 -2.305140 5.661046 -0.283442 0.718038 2.274979 -0.231950 1.655520 -4.546870 -0.314951 -0.213075 -4.021127 0.752905 -0.677058 0.756336 1.204775 -1.341980 0.401824 1.575949 -0.897610 0.247951 -2.742321 -0.182961 -2.709197 -0.958292 0.252225 0.708194 0.966274 -0.421659 0.825094 3.436681 0.494773 2.178480 2.201741 1.909060 3.470719 0.208831 0.483666 1.703427 1.587567 -0.715432 -4.142859 0.972077 -2.281475 -2.981012 -1.999292 0.723435 -3.747844 0.977195 2.387266 0.604681 -0.958932 -2.384693 1.174515 3.679841 -0.016841 2.953398 2.042068 -2.666352 -0.758559 -1.830419 1.270612 -1.765118 2.157743 0.891463 -3.367593 -1.393066 2.886490 0.896428 -1.754193 -2.685782 -0.386389 1.107873 -1.555899 1.724673 -0.382773 -0.515714 -1.762783 -1.285823 1.168949 -0.729291 3.012856 0.066604 -0.197914 -0.181930 -0.859332 1.313778 -2.277319 -2.041464 2.933895 -1.293420 0.457972 -2.394403 1.688654 1.040005 -0.479471 -1.689802 -2.628514 1.194301 0.842654 0.233840 -0.651860 -1.698146 -3.051020 2.125475 2.116374 -0.596482 2.112224 0.101783 1.123364 0.331187 0.902102 -2.393532 1.607204 -3.677801 0.859283 -0.829819 0.186629 -0.961883 -0.475006 1.815381 0.715782 1.116903 -2.863221 3.895061 2.306422 -1.567570 -1.676648 1.258031 -1.037866 -2.610357 0.139821 1.517653 0.766776 0.477080 0.368991 0.471200 -1.352359 -1.556262 -1.586910 -1.397004 3.065118 -3.338680 -0.039147 -0.330678 -0.665801 -1.246713 1.261231 0.997495 0.192207 3.557062 1.336909 -1.446115 1.449036 -2.716789 1.824624 5.967797 1.848681 -2.822190 1.393269 -1.304565 1.096787 1.074970 0.301764 0.444151 1.181506 -2.372100 -0.820951 -0.268360 -1.922668 3.111254 2.315322 1.663696 -4.630526 2.747057 -1.024760 0.140284 4.749989 2.742528 -3.982958 1.043708 3.888737 -2.748698 -0.762597 0.678949 -1.474961 -1.161860 -1.841352 1.179885 0.804211 -3.032723 -2.969071 -0.657235 -2.990099 2.830192 0.814470 0.472482 -0.715251 -1.947753 -1.188692 5.224170 0.204760 -0.532567 -0.016423 -1.099115 -1.710303 -4.118684 0.187260 1.523756 -2.205357 -1.021453 -2.029638 -0.333505 3.586163 -2.810896 0.250025 -2.881261 0.171572 1.439535 0.438953 1.120920 -3.143151 -1.968562 -0.475418 -0.545080 1.097773 -1.825120 1.035952 3.018082 -1.647185 2.678008 0.971550 -0.960436 0.605423 2.913148 -0.907133 3.317082 -0.552629 4.043530 0.660556 3.061978 -2.003123 -0.495299 -0.905694 -1.572690 -1.637437 3.169888 -3.786274 -0.022912 2.600684 -1.001216 -2.693116 2.741895 1.682443 1.817108 -0.950455 -0.151921 -1.336591 0.006602 -1.005455 1.036216 2.046905 -1.240059 -3.406137 -1.006957 2.847732 -2.065989 -1.758681 1.424892 0.583899 3.768861 -2.591593 2.255915 0.813145 -0.001410 -3.969831 -3.142289 1.275757 -2.319955 -1.794354 1.554568 -4.528795 -1.857400 -1.591699 1.885430 -3.094301 -0.855560 0.310046 3.362160 0.688551 -0.518968 1.724560 0.294512 1.268930 -0.278154 0.699180 0.409448 1.978453 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.930451 0.463296 -0.358509 -0.697611 2.526462 0.011445 0.075875 1.067298 -0.296858 0.880635 -1.596399 -0.107284 -0.220181 -1.673982 0.367158 0.399845 0.414416 0.419659 -0.557286 -0.201008 0.658003 -0.389090 0.249256 -0.889936 -0.034508 -1.191004 -0.364635 0.158576 0.666466 0.238374 -0.741340 0.296858 1.400448 -0.010488 0.651568 0.732747 1.069174 1.259077 0.170223 -0.280707 0.580260 0.732127 -0.448912 -1.631572 0.565431 -1.067421 -1.205456 -0.631613 0.532792 -1.286321 0.368114 1.010491 0.141850 -0.376868 -0.914743 0.583176 1.447000 -0.213147 1.378225 0.743156 -0.960098 -0.806680 -0.683331 0.938852 -0.801092 0.852334 0.105746 -1.554529 -0.828534 1.073635 0.193934 -0.731298 -1.042041 0.015846 0.434538 -0.689881 0.673941 -0.056318 0.473673 -1.024640 -0.955485 0.399083 -0.662353 1.357098 0.042111 -0.106194 0.029873 -0.332055 0.554417 -1.086306 -0.676812 1.103703 -0.577927 0.439061 -0.829204 0.410946 0.196650 -0.148377 -0.686149 -1.030248 0.327131 0.375988 0.214307 -0.428653 -0.047140 -1.144927 0.813524 0.507568 0.154453 0.749328 0.465173 -0.008214 -0.040045 0.509816 -0.818132 0.112813 -1.406469 0.382600 -0.102715 0.174306 -0.578740 0.011334 1.013757 -0.019479 0.685762 -1.432119 1.404968 0.717587 -0.597406 -0.718298 0.448925 -0.407065 -1.049247 0.152300 0.773843 -0.012829 0.017617 0.067759 0.468033 -0.381340 -1.299746 -0.249964 -0.687423 1.272452 -1.749056 0.023682 -0.249777 -0.501073 -0.364873 0.535432 0.452353 0.437022 1.447455 0.810577 -0.696900 0.996285 -1.337358 1.022087 2.468005 0.813353 -1.231544 0.529559 -0.888172 0.560173 0.625955 0.191084 0.336013 0.537298 -0.539960 0.116188 0.198935 -0.372440 1.413439 0.747644 0.988523 -1.778951 0.681582 -0.252029 0.200683 1.941453 0.920340 -1.844413 0.993751 1.514359 -0.860351 0.097438 0.211104 -0.800843 -0.509867 -1.078351 0.531399 0.758408 -1.447240 -1.045228 -0.179854 -1.165946 1.311478 0.273092 0.128009 0.255884 -0.959200 0.014193 1.967583 0.176063 -0.055082 -0.306010 -0.661700 -1.066675 -1.621239 0.190171 0.500168 -0.998352 -0.421959 -1.049518 -0.439016 1.753370 -0.673829 0.231361 -1.829157 0.570340 0.610025 0.367989 0.584533 -1.116575 -0.737281 -0.003114 -0.447077 0.439074 -0.986469 0.298841 0.954181 -1.002048 1.106805 0.212634 -0.137513 0.276131 0.904020 -0.341940 1.300256 0.001381 1.707709 0.183706 1.305145 -0.820966 0.104541 -0.442658 -0.442298 -0.611594 1.215943 -1.557001 -0.186516 1.302978 -0.518049 -1.389897 0.844748 0.692744 1.016221 -0.315425 -0.522598 -0.415543 0.005156 -0.277199 0.517963 0.915728 -0.655463 -1.312897 -0.322194 0.921062 -0.876985 -0.727444 0.680162 0.221511 1.551592 -1.159660 0.711471 0.295411 0.257662 -1.618046 -1.305870 0.226162 -0.539139 -0.599449 1.093339 -2.085051 -0.713317 -0.704702 0.674032 -1.420382 -0.072914 -0.154891 1.403460 0.104275 -0.086538 0.927475 0.316581 0.381145 -0.264532 0.221698 0.276750 0.638111 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.997786 1.566488 -0.155687 -2.045947 6.619217 0.498679 0.628547 2.978301 -1.334617 2.024020 -4.093698 0.738327 0.239883 -3.416648 0.853852 0.479459 0.253418 0.650145 -1.570428 -0.569630 1.230105 -0.280489 0.454601 -2.223836 -0.339375 -2.917343 -0.909813 0.371846 1.372940 1.141313 -1.529603 0.397011 2.698334 -0.626471 1.136894 1.608225 3.045901 2.352808 -0.238541 -0.121522 2.047069 1.110230 -0.948501 -3.353166 0.790555 -2.444375 -3.527932 -1.196073 0.974986 -3.691345 0.656179 2.238151 0.551143 -1.235440 -1.477682 2.275391 3.020701 -1.491972 2.803299 1.801910 -3.058395 -2.168868 -1.786954 3.106034 -1.387562 2.831862 0.121320 -3.801743 -2.348768 3.064292 0.420489 -1.600951 -2.349762 -0.167817 1.031129 -1.554879 1.399758 -0.506574 1.111869 -1.825547 -1.152575 1.366085 -1.079339 2.809876 0.429796 -0.222979 0.096061 -0.785983 1.123220 -2.310243 -2.038974 3.366048 -1.373170 0.780971 -3.625814 0.206186 0.635441 -0.464441 -1.247272 -2.661542 0.963141 1.516590 0.256450 -2.262449 -0.349479 -3.207676 1.518163 2.090262 0.195196 1.905824 -0.740616 0.138137 -0.309539 1.024925 -1.515559 1.038743 -3.232143 0.859074 -0.472227 0.503795 -1.738014 -0.495736 2.561732 0.729072 1.369519 -2.823169 3.605063 1.463170 -2.022715 -1.680955 0.966033 -0.728497 -2.465442 0.749837 1.160519 0.263422 0.140292 0.470207 1.243606 -1.114447 -2.776732 -1.554668 -1.348567 2.405176 -4.228967 0.021988 -0.235985 -0.296333 -1.157978 1.747194 1.462947 0.597732 3.495522 1.539593 -0.763346 2.543417 -2.912785 2.405786 5.571149 2.411534 -2.697501 1.300557 -2.529127 1.219187 1.013535 0.138126 -0.099805 2.251810 -1.969019 -0.048430 0.366994 -1.299090 3.279201 2.486067 1.862946 -4.360634 1.553349 -2.094033 0.544995 3.920878 3.219152 -4.395277 2.013368 3.751860 -1.452922 -0.165983 0.791505 -2.322655 -1.787081 -1.774869 0.875596 1.499692 -2.935280 -2.672729 -0.320996 -2.490753 3.125720 0.738966 0.115860 -0.104013 -1.630976 -0.466202 4.193223 0.329941 -0.302433 -0.264546 -0.949541 -2.689498 -3.617005 0.211394 2.047184 -2.328939 -1.356475 -2.259310 -0.957668 3.614647 -2.273001 0.595682 -4.071716 0.972916 1.390646 0.722285 1.623259 -3.033164 -1.489712 -1.065219 -0.961682 0.920559 -2.747898 0.730996 2.273258 -1.891732 3.374314 0.307339 -1.233364 -0.087028 2.355697 -0.386834 3.027848 0.521600 3.732901 0.646170 3.021970 -1.977828 0.218667 -1.351439 -1.577039 -1.259702 3.121661 -3.806165 -0.376593 2.586369 -1.236603 -3.018266 2.424220 1.836473 1.837692 -1.029181 -0.893715 -0.753433 -0.436530 -1.391994 0.950310 1.848774 -2.431876 -3.152228 -0.829115 2.376747 -2.824181 -1.620942 1.530627 0.941783 3.571574 -2.504821 2.082186 0.853829 0.441922 -4.989806 -2.868390 0.395003 -1.504257 -1.941038 1.445870 -4.463650 -2.260899 -1.598455 1.592901 -3.593618 -1.564024 0.387593 3.270155 -0.040368 0.012530 2.017597 0.594071 0.979461 -0.469681 0.880054 0.804633 0.940134 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/graph-coloring.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -2.679385 1.351749 0.594432 -2.236132 4.933583 -0.834480 1.134100 3.236449 0.997793 1.926168 -4.930910 -2.122315 -1.091453 -3.988683 0.342457 -1.843565 1.577344 1.241134 -2.156684 0.153030 1.957397 0.189065 0.023612 -2.660616 -0.399228 -2.180858 -1.686940 0.190426 0.488705 -0.212730 -0.437918 1.099317 6.092483 1.131191 4.914127 3.065242 2.428203 4.352097 0.723635 1.708834 1.069443 2.750634 -1.541109 -4.132215 -0.020134 -2.703913 -2.803008 -1.859034 0.919628 -3.006398 2.472466 2.626263 0.748533 0.685938 -2.202107 0.844829 2.615814 0.419385 4.135511 2.220324 -3.636226 0.703452 -2.183846 2.264087 -2.105987 2.860399 0.163238 -3.219028 -1.416465 1.623411 1.720398 -3.231223 -3.240921 0.470231 1.121496 -2.067936 2.507201 -0.229283 0.056410 -2.678942 -2.613335 1.755671 -0.379090 3.227951 -0.224202 -0.288681 -0.857547 -0.288680 0.701416 -3.652927 -1.115675 3.434719 -2.769359 0.054632 -2.790783 1.416859 -0.719885 1.065592 -2.341206 -3.522531 1.524519 0.242622 0.170464 -0.414907 -0.966904 -2.565939 2.115234 2.297052 -1.089024 2.252065 1.576374 2.050119 2.547338 2.185056 -2.127457 1.691750 -4.660747 1.894071 -1.875064 -0.401644 -0.265498 0.336512 1.514487 1.179437 2.094589 -3.777289 3.157591 2.854293 -2.531294 -2.208591 0.813786 -2.587186 -3.933028 -0.642750 2.201296 1.577016 0.817893 -1.300352 0.506799 -1.709848 -0.599377 -2.077530 -1.084232 1.484762 -3.192786 -0.884840 -0.265164 -0.680285 -2.002731 2.937552 1.228943 0.550211 4.631770 1.321521 -2.435701 -0.497658 -3.607004 0.708555 5.802840 0.764061 -3.578008 2.411355 -2.102141 0.743243 1.771081 1.827668 0.985911 0.065144 -2.423260 -0.713939 -0.519704 -1.342034 4.494785 1.448235 1.625625 -3.614491 3.079611 -1.428584 -1.271283 6.104834 3.182819 -4.219578 -0.504658 3.104765 -1.633454 -1.530447 1.664943 -2.692998 -1.392080 -2.579200 0.970857 0.953262 -2.972151 -1.693335 1.282114 -3.967386 3.682552 0.581862 -0.343552 -0.509764 -4.085262 -2.019080 6.918738 -0.062036 -0.278709 -0.144857 -1.635006 -0.344671 -5.098365 0.530378 1.238109 -1.249745 -0.533953 -2.537871 1.078428 3.618746 -2.397627 1.513253 -2.190935 -0.991415 1.867430 -1.078154 1.717404 -3.415955 -2.525444 -0.643522 -0.645573 2.162410 -2.745934 1.660947 4.318610 -1.503848 3.076424 1.908232 -1.956537 -0.317378 2.711701 -2.629155 4.357731 -1.375608 2.534245 0.509395 3.140154 -2.818548 -1.561438 -1.005195 -0.292457 -2.293190 2.872324 -3.477782 0.361714 0.768172 -1.983465 -2.012332 2.115432 0.851570 -0.000917 -0.537295 0.044878 -2.810573 0.097967 -1.971334 1.319728 2.974360 -0.345510 -3.881039 0.194035 2.023842 -1.905448 -0.220508 0.656469 0.160747 4.396986 -3.319924 0.403546 1.258825 0.534658 -3.895124 -4.534955 0.755580 -3.232924 -1.485769 1.148071 -3.719712 -2.234469 -2.251899 1.104484 -3.338625 -0.893132 1.719510 4.617998 2.071793 -2.367731 0.905912 0.247692 2.610604 0.590797 0.409402 0.732189 2.338615 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -1.173795 0.430131 0.024642 -0.498799 1.996966 -0.597180 0.501219 0.745540 0.075233 0.910328 -1.711858 -0.887436 -0.590849 -1.568813 0.270083 -0.151523 0.774934 0.658773 -0.447015 0.119852 0.821003 -0.388699 -0.094833 -0.913692 -0.035409 -0.939934 -0.637139 0.152356 0.685595 -0.586308 -0.534463 0.667196 2.360821 0.334917 1.933328 1.399549 0.645984 1.732633 0.422052 -0.365257 0.216049 1.253965 -0.707393 -1.705883 0.226149 -0.935486 -0.879373 -0.884670 0.538009 -0.567747 0.892985 1.122179 0.007329 0.320236 -1.187157 0.333067 1.330555 0.441759 1.843547 0.757117 -0.873966 0.575067 -0.820392 0.991450 -0.934657 0.603647 -0.252071 -1.510749 -0.240221 0.448709 0.733206 -1.466265 -1.215371 0.468234 0.305601 -0.926459 0.877652 0.042627 0.128757 -1.696610 -1.676786 0.405303 -0.427436 1.453019 -0.197111 -0.186024 -0.555957 -0.050162 0.393977 -1.516296 -0.403060 1.123507 -1.080198 0.218511 -0.198760 0.795430 0.138273 0.349798 -0.893874 -1.294774 0.441599 -0.312174 0.245500 0.303808 0.426807 -0.679485 0.556721 0.250687 -0.056593 0.917159 1.240388 0.728974 1.096591 0.832596 -0.816195 -0.121672 -1.633857 0.760765 -0.516482 -0.192889 0.040673 0.449817 0.549001 0.001555 1.128821 -1.777657 0.926970 0.811645 -0.462476 -0.918595 0.268686 -0.995753 -1.426258 -0.492156 1.079923 0.487049 0.139024 -0.510866 0.197007 -0.353757 -0.534182 -0.215911 -0.420857 1.217060 -1.439844 -0.212536 -0.331418 -0.632952 -0.625282 0.868094 0.483498 0.754543 1.667028 1.004192 -1.090346 -0.023782 -1.718400 0.367552 2.241164 0.060507 -1.476490 0.964511 -0.839612 0.202144 0.981722 0.889193 0.742052 -0.368461 -0.693658 -0.220828 0.154637 -0.292974 1.750253 0.186461 0.751741 -1.123690 1.176624 0.122742 -0.774255 2.515954 0.526013 -1.877654 0.440652 1.215484 -0.745157 -0.396281 0.663143 -1.085775 -0.444599 -1.348099 0.514649 0.615112 -1.391879 -0.412995 0.424000 -1.587401 1.486264 0.170389 -0.157557 0.325409 -1.529466 -0.597740 2.707272 0.138698 0.079708 -0.465429 -0.909157 -0.242851 -1.937722 0.262413 0.000000 -0.565421 -0.348082 -1.283333 0.219929 1.742118 -0.592433 0.729424 -1.148184 -0.038457 0.699987 0.055116 0.497053 -1.132572 -1.011723 0.213404 -0.273794 0.548553 -0.932782 0.733895 1.697212 -0.937422 0.668624 0.842096 -0.373296 0.321560 0.909632 -1.252877 1.574085 -0.460489 1.266226 0.202409 1.158005 -1.171978 -0.553267 -0.140895 0.251063 -1.003150 0.928293 -1.206827 0.078878 0.609582 -0.842526 -1.082083 0.559200 0.334841 0.444464 -0.096686 -0.331152 -1.085973 0.170752 -0.583246 0.563547 1.208542 0.038148 -1.323733 0.306578 0.562868 -0.514666 -0.161876 0.307863 -0.065395 1.576427 -1.436393 0.047316 0.310735 0.467257 -1.081939 -1.904049 0.247453 -1.183670 -0.575459 1.136038 -1.785728 -0.556832 -0.936761 0.326487 -1.468566 0.002240 0.241451 1.893455 0.723341 -0.811031 0.614707 0.039602 0.878967 -0.006338 0.036297 0.029524 1.026687 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -2.082102 1.203269 0.321742 -1.916195 4.133935 -0.592263 0.907519 2.135725 0.754950 1.412605 -4.085337 -1.595984 -0.683161 -3.407812 0.452540 -1.367837 1.235649 1.089515 -1.658896 0.073885 1.560423 0.070379 0.025043 -2.301679 -0.241638 -2.104262 -1.382211 0.158716 0.550207 -0.135185 -0.578224 0.828008 4.623445 0.667900 3.496860 2.458572 2.096735 3.315451 0.464117 1.022544 1.051674 2.156288 -1.185288 -3.373292 -0.010940 -2.135723 -2.319020 -1.420302 0.792992 -2.275972 1.575017 1.988889 0.659416 0.266459 -1.920498 0.754914 2.403765 0.452165 3.168808 1.878289 -2.491059 0.542479 -1.792378 1.951767 -1.938653 2.396555 0.088541 -2.750489 -1.413012 1.551640 1.247870 -2.303300 -2.940136 0.081319 0.944371 -1.657095 1.909625 -0.236462 0.123737 -2.093474 -2.021686 1.451581 -0.660924 2.792286 -0.070289 -0.300362 -0.460742 -0.313630 0.848209 -2.677997 -1.285788 2.531366 -1.950880 0.018579 -1.976799 1.115041 -0.179330 0.608995 -1.687947 -2.917079 1.221284 0.267003 0.165308 -0.122336 -0.681883 -2.084070 1.557164 1.985577 -0.895027 1.836623 1.141157 1.481094 1.661953 1.505713 -1.699451 0.779814 -3.635469 1.396070 -1.640253 -0.249656 -0.395656 0.292836 1.331433 0.886302 1.623831 -2.874064 2.786141 2.342537 -1.975759 -1.451701 0.850788 -1.782150 -3.166493 -0.352577 1.636605 1.216754 0.616265 -0.771327 0.559171 -1.336094 -0.552928 -1.185208 -1.071666 1.181147 -2.682233 -0.654003 -0.259123 -0.623223 -1.491945 2.167830 0.899743 0.490949 3.569545 1.213535 -2.009353 0.020299 -2.927732 0.865138 4.921006 0.550914 -2.718162 1.673391 -1.611539 0.688844 1.543460 1.287112 0.532719 0.245613 -1.863730 -0.490822 -0.736235 -1.292113 3.489514 1.353780 1.253533 -3.124722 2.459520 -0.977045 -0.857370 4.793745 2.487569 -3.392904 0.044502 2.734849 -1.621793 -1.237240 1.090307 -2.067026 -0.973560 -2.294964 0.801939 0.797432 -2.456747 -1.651279 0.601943 -3.009300 2.844045 0.569511 -0.489535 -0.364473 -2.888043 -1.732535 5.461373 -0.050874 -0.264534 -0.309958 -1.215939 -0.438184 -4.070542 0.458477 0.839394 -1.405001 -0.404180 -2.122744 0.680537 3.137171 -2.148311 0.901766 -2.032270 -0.497747 1.468594 -0.290440 1.347834 -2.581777 -1.941587 -0.401025 -0.629534 1.416407 -2.303782 1.125224 3.314479 -1.360861 2.188677 1.212297 -1.817549 -0.151950 2.382793 -1.844787 3.380599 -0.983025 2.151582 0.513061 2.552304 -2.223603 -1.129051 -0.813553 -0.613745 -1.748120 2.430335 -3.026304 0.226172 1.100216 -1.357303 -1.869539 1.937426 0.929966 0.451317 -0.629332 -0.113471 -2.153755 0.304999 -1.058411 0.925081 2.368596 -0.324830 -3.240363 -0.077714 1.923112 -1.613151 -0.765248 0.620438 0.123679 3.583846 -2.550478 0.718439 0.978971 0.531751 -3.307375 -3.681455 0.685165 -2.501004 -1.073939 1.143389 -3.125276 -1.857873 -1.733557 1.074758 -2.451000 -0.763640 1.372975 3.355394 1.323861 -1.578209 0.776633 0.253327 2.002037 0.245018 0.230399 0.460448 1.796407 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -2.569594 0.887234 0.774919 -2.510592 6.536873 -0.466517 0.395203 3.258278 1.715568 1.818908 -5.179274 -2.010011 -0.544789 -3.324549 0.647458 -1.302434 1.152919 1.495036 -2.976231 -0.853561 1.669810 1.620967 0.233131 -2.561774 -0.555478 -1.854013 -2.717866 0.581825 -0.114721 -0.376650 -1.152591 0.981917 5.627131 -0.141220 3.957382 2.632992 3.574389 3.860195 -0.550883 2.285147 2.740204 2.159077 -1.469980 -3.809269 0.195614 -2.950390 -3.694188 -1.309720 1.221430 -3.324057 2.323841 2.245371 1.140698 0.077595 -1.286793 1.812702 2.204616 0.112320 3.746637 2.459558 -4.577129 1.441952 -2.731738 3.385413 -2.481935 4.832831 -1.148584 -4.829321 -3.594925 2.759937 2.709604 -3.937596 -4.390053 -0.234799 0.748172 -1.623174 2.626263 -0.183916 3.505746 -2.696184 -2.446313 2.161782 -1.118450 2.702262 -0.274984 -0.511406 -0.875187 -0.725506 0.859814 -3.007971 -2.118138 3.267272 -3.045368 1.034608 -3.281947 -1.085172 -0.741824 0.546200 -1.765486 -4.209030 1.415075 0.746418 0.020689 0.542238 0.466509 -1.916350 1.736997 3.258406 -0.506044 1.703260 0.192772 1.744520 1.821360 1.560768 -1.238076 0.859687 -4.288961 1.906566 -2.817516 -0.149511 -1.142004 0.307534 2.397632 1.620590 2.015930 -3.109391 3.795784 1.968451 -3.394650 -1.066408 1.235902 -1.614251 -4.221666 -0.001027 1.849824 1.455488 0.395605 -0.662993 1.126368 -1.884358 -0.859634 -1.347420 -1.708980 -0.347992 -3.137891 -0.893073 -0.125463 -0.679680 -1.718363 3.135246 1.690388 0.618477 4.674468 1.367793 -2.159054 -0.890599 -4.200538 1.607883 5.839481 -0.073458 -3.351455 2.056130 -2.357396 1.317796 2.305392 1.601706 -0.310453 1.277836 -1.056701 0.158668 -1.878775 -1.191938 4.538783 2.252365 1.571593 -4.583318 1.099522 -2.615712 -0.219117 6.453136 3.460767 -5.015895 -0.194867 3.672832 -0.541716 -1.928524 1.313487 -2.897644 -2.300483 -2.531533 1.062111 1.424250 -3.066939 -2.385619 1.833281 -3.506801 3.503802 0.448301 -1.862618 -0.256922 -3.898816 -2.367356 6.804451 0.300400 -0.057578 0.124112 -1.383963 0.935949 -5.213374 0.332384 1.958026 -1.532178 -0.549342 -2.442735 1.073872 4.133002 -2.941502 1.330810 -2.685949 -0.375525 1.881248 -1.666144 1.983878 -3.857258 -2.029609 -1.547743 -1.518218 1.417873 -3.755046 0.104264 3.799213 -1.826205 3.224800 2.401842 -3.285064 -1.425410 2.872219 -1.590654 4.326769 -0.617885 2.341665 0.645592 3.167077 -2.712299 -1.122893 -1.554618 -0.381552 -2.511228 3.484481 -4.041828 0.164365 1.204413 -1.996825 -2.328761 2.715577 1.704477 0.362452 -0.879819 -0.612128 -2.829544 0.171482 -0.789765 1.060178 2.664077 -1.424327 -4.646211 0.045279 2.414408 -3.595896 -1.636343 0.800786 0.424146 4.768430 -3.088162 1.185230 1.933232 0.834892 -5.452477 -3.646252 -0.141555 -3.180062 -1.030316 0.603834 -3.435711 -3.655069 -1.927579 1.745297 -1.662700 -1.759537 2.268013 4.276762 2.129118 -2.117550 1.385044 0.565419 2.444658 0.481848 -0.188110 0.642855 1.636471 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/trie-suffixes.cpp__main = -7.256764 -1.343805 -4.351173 -6.858659 20.357718 -3.441319 -0.719483 14.111663 4.424913 4.610208 -14.178598 -4.606682 -1.834980 -13.509470 2.282594 1.048600 6.724774 2.563964 -8.176289 -1.855472 4.279476 3.756843 1.637732 -7.058639 -1.086600 -4.306209 -4.897356 2.090964 -1.141462 -1.072143 -3.280123 4.755477 17.963449 2.736751 11.792268 5.849685 11.200755 11.053288 2.770431 1.786330 8.127039 4.913696 -2.339885 -11.384267 0.790594 -7.793337 -12.493988 -3.698777 2.939418 -10.469487 6.432590 8.269044 3.851872 0.473075 -6.862519 2.298941 7.367011 -4.180994 10.485892 7.152322 -15.446910 -3.100882 -3.309563 8.134618 -6.080712 8.164935 -0.166306 -9.065329 -8.086875 11.213024 5.814595 -12.074099 -10.823683 -2.089528 4.133245 -4.429688 9.229414 2.024517 15.739881 -8.904802 -5.564057 5.938192 -3.883597 7.777292 -0.474423 -0.457399 -1.962589 -4.590409 2.477725 -8.412563 -3.426689 8.164847 -9.987018 1.320883 -10.916023 2.387129 -3.198207 -0.241828 -6.601644 -14.187913 3.360820 0.075350 -0.557640 0.861041 1.176698 -6.120037 5.840931 6.355796 0.306252 9.382717 2.022486 4.142529 4.320702 3.436680 -3.565537 3.542922 -14.314627 5.014881 -5.663380 -1.248435 -4.716125 -1.944020 11.323089 5.196950 3.124111 -11.094702 11.962962 9.055338 -6.781905 -3.717308 2.737654 -4.002051 -11.092430 1.719572 7.110441 1.889969 2.771027 -0.200229 4.345528 -4.181434 -5.764278 -5.077322 -5.574105 3.829982 -11.275897 -1.577318 0.537558 -1.467796 -4.700482 6.950478 4.033942 -0.757393 14.445764 0.542833 -9.131144 2.666692 -11.326533 6.263894 19.546271 1.401038 -10.098806 7.122996 -8.941998 4.032133 2.764042 5.477562 1.489906 -1.723033 -3.938314 2.706911 1.347889 -2.625127 12.713045 0.570227 6.589976 -16.352473 2.251558 -5.313918 4.755086 19.772781 7.300041 -15.861165 0.493022 13.277426 -0.469111 -1.286790 3.456602 -7.907138 -8.415716 -8.761497 7.376945 4.306056 -10.592695 -5.244693 3.981003 -9.955655 7.438474 1.819564 -5.506338 -1.801397 -10.629328 1.020827 22.652623 0.563108 2.109076 3.239579 -6.216548 3.680703 -16.455097 -0.582375 5.842300 -3.099111 3.070882 -4.991996 -0.120844 13.940816 -7.639886 4.365497 -14.268529 3.392183 6.064642 -3.935150 2.007272 -11.506996 -6.896673 -1.082026 -2.944725 3.070327 -12.564903 0.123146 6.990407 -5.965455 11.258222 4.143733 -3.206931 -1.180660 5.744194 -4.174749 13.485569 -0.540804 13.435841 2.530564 10.711560 -7.319349 -2.532032 -7.096260 -2.419091 -9.845989 8.917781 -14.177365 0.172735 7.994123 0.365551 -11.660200 7.354398 5.728506 0.892795 -2.532922 -4.704598 -3.909765 -0.298705 -4.872967 9.036131 6.350846 -5.362611 -11.647194 -0.741860 12.310271 -9.901645 0.127514 3.629951 2.057560 15.443616 -9.572028 4.022822 5.910844 6.059430 -12.541013 -12.383751 4.259143 -5.397306 -0.473111 1.622927 -14.456815 -12.776461 -5.064569 6.616612 -8.205332 -0.325922 4.148956 13.978354 5.610797 -7.009935 3.956827 2.343975 0.834104 -0.048975 2.801747 4.763236 3.663863 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = -1.664914 0.346195 0.099882 -1.222108 3.312867 -0.521243 0.507105 2.171220 0.511093 1.457045 -2.732840 -1.313822 -0.911591 -2.554260 0.243413 -0.791676 1.321401 0.691000 -1.432767 -0.144501 1.233284 0.224557 0.228380 -1.322515 -0.326421 -1.619701 -1.031360 0.286345 0.787435 -0.517934 -0.758186 0.634643 4.038699 0.431614 3.114672 1.825221 1.872480 2.518888 0.535438 0.381778 0.488921 1.822814 -1.139704 -2.421834 -0.094332 -1.718103 -1.873446 -0.857598 0.913875 -1.470918 0.990039 1.644829 0.376866 0.640325 -1.332742 0.746675 1.440049 0.128466 2.834131 1.268801 -2.134500 0.057817 -1.492119 1.815679 -1.509320 1.652933 -0.528062 -2.191833 -1.175078 0.841661 0.609334 -2.000060 -1.991032 0.506047 0.842097 -1.486497 1.567499 -0.023678 0.767875 -2.166693 -2.060384 1.135360 -0.614789 2.185918 -0.072061 -0.054056 -0.106725 -0.045671 0.312448 -2.647856 -0.364309 1.864552 -2.018667 -0.014901 -1.426117 0.725459 -0.816624 0.792178 -1.496565 -2.401380 0.832701 -0.059011 0.258636 -0.523060 0.275501 -1.390822 1.071251 1.020892 -0.160020 1.224286 1.438238 0.892372 1.626869 1.711025 -1.306365 0.389475 -2.873607 1.341273 -1.379087 -0.216734 -0.488404 0.662108 1.260601 0.779561 1.798850 -2.748098 1.784489 1.646225 -1.539236 -1.375111 0.457080 -1.628178 -2.478389 -0.375003 1.622597 0.552030 0.458700 -1.127075 0.791789 -0.864876 -0.779203 -0.448554 -0.789588 0.601544 -2.390128 -0.501866 -0.244166 -0.660138 -1.068362 1.985670 0.932906 0.868698 2.941549 1.090677 -1.838099 0.144567 -2.733291 0.585683 3.652581 0.102970 -2.235370 1.657549 -1.730265 0.490951 1.425804 1.438048 0.868447 -0.184778 -1.078893 -0.061093 0.002740 -0.169300 3.067597 0.590593 1.181169 -2.108090 1.422148 -0.902277 -0.672317 3.782193 1.869635 -2.963577 0.333271 1.780435 -0.855587 -0.693084 0.984417 -2.070158 -0.746331 -2.129632 0.600927 1.129090 -1.977519 -0.761071 1.004557 -2.399169 2.412996 0.231015 -0.533303 0.312333 -2.667715 -1.071699 4.231818 -0.013471 0.026794 -0.567082 -1.431935 -0.577442 -3.274784 0.392629 0.331457 -0.939207 -0.058350 -1.967655 0.392375 2.493858 -0.869059 1.150666 -2.269912 -0.055238 1.331909 -0.349331 1.191182 -1.622899 -1.435297 -0.168097 -0.945686 1.239914 -2.242008 0.895957 2.423262 -1.220091 1.995207 0.531131 -1.549083 -0.130101 1.328475 -1.926691 2.894867 -0.607817 1.662468 0.340784 1.924503 -1.849736 -0.676065 -0.754500 -0.193300 -1.438521 1.715203 -2.253583 -0.020208 0.641609 -1.345604 -1.691497 0.858774 0.578350 0.086369 -0.199623 -0.328056 -1.961341 0.125001 -1.128278 1.017441 1.924246 -0.348167 -2.398268 0.462079 1.172528 -1.056511 -0.445544 0.364384 0.093698 2.761258 -2.242300 -0.142893 0.829751 0.815467 -2.342623 -3.164029 0.227760 -1.866709 -0.650189 1.088910 -2.527034 -1.384170 -1.445673 0.569220 -2.027653 -0.236677 1.179948 3.022081 1.052726 -1.576639 0.641088 0.265598 1.513021 0.149406 0.243552 0.436291 1.252585 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/trie-suffixes.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/trie-suffixes.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -8.074307 8.323197 5.642494 -5.511931 14.411193 1.180139 5.398727 4.951968 -3.999175 8.613975 -14.297147 -2.415357 -2.418214 -11.314707 0.190344 -7.989799 0.945093 0.697419 -2.631684 2.307932 4.702990 -5.258555 -0.513593 -7.211721 -1.469131 -13.097518 -4.353551 0.348698 7.547945 -0.590061 2.416822 0.722067 14.617570 1.511421 11.622833 9.399873 4.726042 10.686618 0.548327 2.184754 0.081259 8.017395 -5.873368 -9.867298 -0.755692 -7.451279 -8.299094 -5.245600 2.245563 -7.998175 0.295799 8.440186 -0.559682 0.812139 -6.765092 5.786371 10.468796 -1.246680 13.206747 3.969294 -6.841929 -1.211498 -8.008165 8.571357 -4.467103 4.500860 0.061530 -8.820109 0.760500 1.972733 -0.738133 -4.578550 -5.299283 5.865079 4.742547 -8.196720 3.677038 -3.553556 -14.106729 -8.728219 -5.921754 3.767761 2.395075 10.178161 0.844361 -0.504111 2.273745 1.537279 0.970938 -12.761904 -3.117222 13.327532 -6.288823 -2.197695 -7.902508 8.108885 1.325378 3.897553 -5.895187 -6.451923 3.445067 1.378032 1.062589 -8.512223 -4.106749 -12.334687 3.708239 2.733815 -2.683221 6.385503 2.942761 5.148829 7.109176 8.505548 -11.645059 4.640927 -10.634556 4.235379 -1.741325 -0.266592 -0.710510 1.322574 0.511303 3.651125 9.067161 -12.279870 6.908451 5.428553 -5.720671 -10.737425 -0.499551 -9.186198 -9.644311 -1.423280 3.801885 4.336133 2.371466 -4.892038 0.011515 -3.161182 -2.369577 -7.706828 1.057201 11.028687 -11.397890 -1.515659 -0.672284 -0.158360 -6.884280 8.815059 5.613207 3.739214 12.998249 5.871601 -2.774935 5.892377 -9.517793 1.084895 16.717013 6.869040 -10.848243 7.820249 -7.946425 0.376552 4.410152 3.999058 4.915100 1.874823 -12.388928 -6.080028 3.451120 -4.258415 12.796454 5.957978 3.042198 -8.184280 14.913912 -2.424435 -7.398222 14.319889 9.731855 -12.117663 4.119669 7.410390 -9.667000 -2.876659 6.920383 -8.529353 -2.934620 -6.269513 0.046054 2.493270 -6.270301 -3.673766 0.613263 -11.920273 13.845874 1.829900 4.491016 1.053193 -7.848348 -13.659509 14.886068 -0.935319 -1.617846 -3.590129 -3.111592 -8.223084 -12.483063 1.508440 2.630294 -7.308592 -5.027607 -10.105727 2.773521 8.725036 -5.587224 7.055648 -9.226662 -4.485224 4.401140 2.510419 5.868250 -7.650267 -6.867112 -2.693089 -0.773351 5.727756 -6.319091 9.916202 14.337493 -3.800955 10.872459 -1.711785 -7.734197 1.264589 7.232880 -9.124623 11.618935 -2.862629 8.163832 0.988167 8.561329 -7.959513 -3.520883 -0.133395 -3.811104 -3.805143 6.612074 -8.255755 0.594455 2.258729 -8.988272 -5.109931 4.870254 0.196866 1.922426 -0.998689 1.999049 -8.330193 -0.734449 -6.559023 1.723712 8.045712 -0.522898 -8.654999 1.529424 2.705468 -1.889692 -1.454954 1.369518 0.934284 8.678886 -10.118185 0.099944 0.909907 -0.708397 -10.833163 -14.660466 1.781168 -10.940731 -9.705892 5.748534 -12.598415 -0.765327 -8.033708 -0.906007 -13.676462 -6.121958 4.050754 14.874256 3.697995 -6.039432 3.153782 -1.072466 8.766577 0.345922 3.290463 2.194465 5.922960 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -4.868253 3.519871 1.906640 -2.834804 6.320035 0.037290 1.783102 3.626973 -1.252491 4.306995 -7.597078 -3.497451 -2.304129 -5.930502 0.058817 -3.552099 1.273836 0.856923 -2.105519 1.448912 3.285360 -2.298359 -0.426795 -3.894370 -0.761382 -4.349250 -2.435717 0.071716 4.174956 -1.275670 0.619533 0.485844 9.485004 0.596271 8.002307 5.489512 3.607836 6.704551 0.798846 0.599776 -0.873584 5.930689 -3.752387 -5.045444 -0.287571 -4.607075 -3.905401 -2.758420 1.600824 -3.379362 1.521093 4.836089 0.141275 1.321721 -3.536951 3.285159 5.800834 -0.388759 8.160393 2.364839 -3.367638 0.727252 -3.765603 4.626141 -2.947335 3.270316 -0.870826 -3.823084 0.194158 -0.298417 0.010121 -3.797941 -3.114750 3.705324 2.343814 -4.738937 3.307620 -1.695360 -3.785956 -6.844979 -4.772268 1.755741 0.732714 5.553585 -0.884085 -0.527835 1.058228 1.172990 0.143069 -7.328794 -0.938054 6.277475 -4.442302 -1.881439 -4.125627 3.899451 -0.470195 3.184310 -4.452209 -3.755141 2.001305 0.393615 0.901986 -4.211375 0.178635 -4.879685 1.630825 1.455994 -1.342270 4.608561 3.535504 3.416806 5.446138 5.305926 -5.261864 2.058457 -6.358949 1.711813 -1.502730 -0.220990 0.788188 1.311825 1.638293 1.391156 4.817188 -7.270707 3.408621 3.198671 -3.284172 -5.242738 0.198946 -5.649106 -6.154400 -1.598338 2.919129 2.706915 0.954997 -3.676461 0.846310 -1.457277 -1.187103 -3.709239 0.474160 4.160570 -5.988997 -1.556153 -0.850549 -0.723667 -3.291186 5.096913 2.655743 1.617488 7.388503 3.030460 -2.569398 1.836821 -5.230716 0.012727 8.122369 1.186174 -6.489580 4.285136 -4.361583 0.196047 3.084316 3.157885 2.946147 1.086886 -5.561705 -2.988127 1.756055 -1.810300 7.238918 1.008068 1.733885 -4.686539 7.679546 -0.657011 -4.686845 9.441881 5.241491 -6.350008 0.459303 2.945286 -3.976811 -1.838408 4.041399 -4.853601 -2.182130 -3.779136 0.374495 1.451292 -3.692768 -1.648401 1.496130 -6.931559 7.285399 0.511284 0.513123 0.353415 -6.142310 -5.520094 8.307773 0.015098 -1.129018 -2.010783 -2.237151 -3.144836 -7.595408 1.732337 0.988579 -2.296772 -3.234169 -5.366508 2.434134 4.703937 -2.262743 3.471762 -6.198653 -2.718582 2.736825 0.556517 3.955563 -4.044498 -4.262092 -1.388193 -0.347043 4.134425 -3.694431 5.293376 8.786799 -2.468464 5.664989 0.108260 -5.259083 0.187899 4.046359 -6.192870 6.771492 -1.323230 3.119813 -0.276948 4.400226 -4.861672 -2.407159 -0.149225 -0.530451 -2.283394 2.935937 -3.744980 0.498617 -0.740304 -5.095329 -1.957431 2.130853 -0.713126 -0.230869 0.122481 0.782064 -5.125276 -0.595513 -3.628600 0.355371 5.309213 0.530944 -4.753689 1.389842 0.362475 -0.475924 1.596093 0.094185 -0.191463 5.541771 -5.975109 -0.946931 0.669228 -0.249675 -5.059563 -7.423831 -0.110200 -5.141037 -3.756487 4.200315 -5.288686 -0.902650 -4.367836 -0.513605 -6.178420 -2.846434 2.423643 8.268826 3.450895 -4.628417 1.199673 -0.403290 6.286385 1.253996 0.676568 0.819186 3.383705 +PE-benchmarks/biconnectivity.cpp__main = -2.809969 -2.446006 2.840326 -0.013896 6.762265 -3.352787 0.959786 3.790515 6.297814 -0.280598 -4.990695 -4.945648 -1.870082 -0.466675 1.659465 -2.710679 3.180625 2.608710 -4.927929 -4.063540 2.062627 6.947104 -1.300205 -3.247582 0.592973 -0.453636 -4.387725 -0.431845 -3.323589 -0.017616 -2.858289 3.984017 7.477842 0.369383 5.758202 3.248669 6.454169 4.078689 -3.661977 6.706368 4.798506 2.532768 -1.110371 -3.659472 0.351405 -2.803789 -3.473544 -0.056252 0.891151 -2.034640 5.211697 1.248749 2.202276 2.682828 1.616246 1.404267 0.245706 1.944346 2.026669 3.807558 -6.923934 6.151064 -2.517450 4.800986 -2.592545 8.063714 -3.181366 -6.973889 -7.301437 2.896325 6.494013 -6.762461 -6.057438 -1.562775 -0.132032 0.274779 4.037794 2.893405 11.178636 -1.643372 -5.277469 2.006446 -1.229456 1.075928 -1.274661 -1.886861 -3.042978 -2.470978 2.594671 -1.243706 -3.373583 3.179730 -5.682721 3.706067 -5.535455 -8.194825 -1.350651 1.835049 -0.001345 -7.867765 1.441313 -0.505662 -0.878162 5.672181 0.397472 1.908099 1.945828 3.723043 -0.712525 1.418624 -2.966596 2.076782 1.630151 -0.402269 2.151519 0.854746 -3.298004 3.958468 -5.287326 -1.032985 -0.039993 -0.374413 3.221695 1.825656 0.742350 -1.553854 2.861512 1.365907 -4.299473 2.065520 1.449552 -2.076768 -5.635208 -1.330895 3.489159 3.147151 -0.149898 -0.324901 1.781027 -2.667812 2.151611 -1.812247 -4.246019 -6.318942 -1.241623 -2.254913 -0.828498 -1.411860 -3.027794 3.080987 0.164150 0.806992 2.313404 1.283827 -4.079984 -5.440788 -4.761194 0.981727 4.117028 -4.060894 -3.129588 1.103032 -2.314065 2.662818 3.731353 1.532922 -2.725191 0.925737 2.859810 3.497601 -6.283690 -1.091719 4.360026 3.927423 1.154931 -5.741277 -4.096559 -6.292117 -1.314777 7.830270 4.277002 -6.879444 -2.852027 4.158936 1.885807 -4.776535 0.485740 -3.741209 -3.673355 -4.612952 2.735312 0.960100 -4.065976 0.067823 7.368742 -3.524603 1.248203 1.161731 -3.531055 -0.523330 -5.304471 -4.541355 9.748851 0.212946 1.685600 0.827389 -1.869906 5.851686 -5.687327 0.144868 1.171410 1.277841 -0.387341 -1.522975 2.938323 6.034449 -4.032820 2.577093 0.693244 -0.471689 0.577853 -5.479185 2.039204 -6.099896 -3.002785 -3.572172 -2.300971 0.883979 -4.719707 -4.485633 3.773917 -1.925086 2.210356 5.286709 -8.188407 -5.111181 2.522153 -0.459155 2.111652 -0.952092 -0.635249 1.052124 3.644186 -4.533899 -2.892863 -2.147439 2.115922 -5.396478 4.574770 -3.736607 1.420159 0.040065 -2.585541 -1.388513 3.007432 1.482397 0.037734 -2.011253 -1.174155 -4.291771 2.073777 -0.854512 1.662807 3.007619 -0.893405 -5.100437 0.350630 1.599146 -8.423335 -3.197190 0.929167 -1.637666 6.037353 -2.383153 0.025444 4.177479 0.930684 -5.520518 -3.473991 -2.266767 -5.704247 -0.582675 -1.335708 -1.333704 -5.543263 -0.795498 2.594856 1.011735 -4.613227 3.014241 3.392047 3.858446 -1.568533 2.091105 1.855503 2.056834 1.291087 -1.398823 0.031787 1.548006 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/biconnectivity.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -1.075544 0.528282 -0.119406 -0.576810 1.655590 -0.157018 0.307232 0.851863 0.419338 0.564253 -1.891618 -1.156830 -0.682239 -1.409502 0.210514 -0.101634 0.500786 0.763015 -0.739547 -0.164652 0.987682 -0.236733 0.020788 -1.224776 0.244288 -0.149392 -0.714545 -0.202190 -0.034414 0.523248 -0.720953 0.452335 1.776640 0.764220 1.256673 1.006274 0.377990 2.106735 0.102080 1.099568 0.294033 1.335961 -0.508836 -2.166010 0.870342 -1.412404 -0.397520 -1.123863 0.352261 -1.332756 2.081576 0.856690 0.196908 -0.059927 -0.901341 -0.377681 1.355511 0.992692 1.438064 0.955666 -1.090687 0.499493 -0.702206 0.114207 -0.781250 1.456841 0.889780 -1.571736 -0.629405 0.426219 1.532437 -1.351728 -1.579518 -0.070732 -0.057110 -0.333913 0.946291 0.028180 -0.107339 -0.571256 -1.475403 0.109498 -0.685969 1.309279 -0.479520 -0.483094 -1.125352 -0.415339 0.788312 -0.896920 -0.887884 1.172781 -0.408771 1.040681 -0.811560 0.176566 -0.115961 0.303031 -0.981239 -0.578867 0.435772 0.583065 0.137757 0.712029 -1.141465 -0.843006 1.632099 0.940850 -0.569545 0.424129 1.163787 0.464599 0.424005 0.377135 -0.615839 0.785487 -1.438587 0.503781 -0.121889 0.043996 0.172072 0.162105 0.251353 -0.713062 0.473650 -1.083310 1.216923 0.929967 -0.916339 -0.623562 0.636418 -0.889658 -1.473765 -0.259978 0.933014 0.676029 -0.098843 -0.210017 -0.241478 -0.817149 -0.792909 -0.753527 -0.768471 0.873842 -0.744294 -0.415502 -0.446943 -0.803165 -0.526617 0.603198 -0.043710 0.228076 1.259186 0.804875 -0.852382 -0.960394 -1.090300 0.653378 2.306675 0.633663 -1.463313 0.161080 0.030697 0.801423 0.970211 0.067705 0.429211 0.451589 -0.155158 0.135937 -0.905436 -0.791976 1.341168 1.397628 1.200136 -1.375690 0.914163 -0.134952 -0.363667 2.230306 0.885474 -1.298241 -0.331277 1.133745 -0.732355 -0.285686 0.081573 -0.132560 -0.247867 -0.989375 0.462196 0.333316 -1.512733 -1.179162 0.140971 -1.515531 1.452207 0.289783 0.535624 -0.202677 -1.846426 -0.029672 2.471863 0.164418 -0.292970 0.024889 -0.435346 -0.387598 -1.699028 0.453080 0.518111 -0.480894 -0.787462 -0.824561 0.340190 1.601914 -0.983944 0.030505 0.300584 -0.334244 0.410509 -0.762359 0.791420 -1.853506 -1.147872 -0.171286 -0.020392 1.277166 -0.226664 0.194994 1.615888 -0.769816 0.535560 2.116868 0.747811 -0.116796 1.303358 -0.348567 1.059870 -0.933630 0.965166 -0.215229 1.328074 -0.688281 -0.510016 -0.134731 0.644280 -0.621565 1.419909 -1.143999 0.241697 0.681844 -1.036480 -0.365412 1.111377 0.239340 0.829869 -0.252361 -0.135549 -0.920242 0.188595 -0.167069 0.123795 1.299717 -0.003350 -1.643279 -0.608111 0.189399 -0.940333 -0.241183 0.563586 -0.222107 1.664141 -1.015378 0.392538 0.341295 -0.482037 -1.210777 -0.896337 -0.074338 -0.760520 -0.759829 1.286434 -1.316904 -0.479572 -0.768753 0.628209 -1.163306 -0.069364 -0.475233 1.186535 0.897447 -0.077438 0.683198 0.461695 1.135070 0.154997 -0.299837 0.184700 1.299039 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.955913 1.238640 0.804679 -0.869162 2.977331 -0.067493 0.882554 0.947686 -0.915805 1.853635 -2.817151 -1.210873 -1.167450 -2.697856 0.079266 -1.287924 0.874779 0.323071 -0.528322 0.696980 1.251008 -1.507987 0.072962 -1.399876 -0.159907 -2.282818 -0.995479 0.171532 2.167978 -0.699649 0.020950 0.289625 3.718847 0.429562 2.939784 2.042918 0.732627 2.611433 0.479117 -1.189674 -0.413809 2.301097 -1.468689 -2.466318 0.059653 -1.810406 -1.441730 -1.141045 0.931212 -1.036836 -0.564265 1.908426 -0.296725 0.443071 -1.870067 0.884208 2.514072 0.428430 3.338294 0.732016 -0.979190 -0.184736 -1.675327 1.253133 -1.263964 0.539552 -0.652823 -1.942948 0.239668 0.064384 -0.499601 -1.386023 -1.186532 1.495619 1.072025 -1.809621 1.119947 -0.424068 -2.217785 -2.663477 -2.198164 0.415585 -0.269492 2.430580 -0.219822 -0.107181 0.541075 0.345437 0.314126 -3.059786 -0.295917 2.263340 -1.573293 -0.458588 -0.142560 2.126105 0.109789 0.954017 -1.714078 -1.413416 0.548300 -0.256810 0.421080 -1.353657 0.472147 -2.083502 0.663256 -0.102053 0.036000 1.699481 1.917032 1.193593 1.884868 2.044746 -2.666114 0.039304 -2.335800 0.849199 -0.952123 -0.104685 -0.010062 0.984358 0.361799 0.393396 2.317061 -3.239899 1.293582 1.296530 -0.658074 -2.256865 0.105195 -2.152795 -2.162714 -0.542228 1.362078 0.582597 0.371044 -1.438056 0.173549 -0.444783 -0.839423 -0.379560 0.024843 2.511031 -2.732029 -0.313456 -0.391372 -0.665834 -1.019010 1.666425 1.061584 1.206603 2.846523 1.628015 -1.528969 1.339137 -2.437893 0.457999 3.765104 0.336571 -2.536160 1.703610 -1.675841 0.089525 1.444772 1.200835 1.826846 -0.076198 -2.029191 -1.087077 0.950048 -0.385208 2.901316 0.541967 1.094487 -1.756278 3.073643 0.039374 -1.521311 3.539100 1.010532 -2.928511 1.391411 1.441786 -2.284739 -0.235452 1.172465 -1.830590 -0.260279 -2.170837 0.259048 1.004694 -1.820700 -0.660471 0.189087 -2.762477 3.022401 0.242900 0.451073 0.760956 -2.099252 -2.225282 3.705288 0.148964 -0.181695 -1.241111 -1.244263 -1.606302 -3.004951 0.476219 -0.265969 -1.555054 -0.837659 -2.435521 0.380125 2.194666 -0.536735 1.600291 -2.816431 -0.336735 1.040133 0.948337 1.222657 -1.094853 -1.654702 0.126363 -0.723910 1.220986 -1.554251 2.070006 2.971679 -1.342554 1.902333 -0.512346 -1.432774 0.823994 1.302761 -2.387535 2.658813 -0.689000 2.498458 0.020474 1.912763 -1.779667 -0.637322 0.072638 -0.608253 -1.049363 1.302984 -1.762945 -0.002278 0.846664 -1.764753 -1.600772 0.624139 -0.059454 0.733051 0.074716 -0.038747 -2.168566 0.110261 -0.809797 0.588350 1.981086 0.130165 -2.068837 0.468718 0.446353 0.056734 -0.531059 0.306642 -0.103901 1.925108 -2.433538 -0.389209 0.129615 0.304326 -1.524385 -3.267036 0.338627 -2.002678 -1.386913 2.272918 -2.882956 0.160235 -1.777300 -0.215372 -2.641724 -0.516374 0.537492 3.362470 0.983179 -1.658109 0.872328 -0.126321 1.850786 -0.042979 0.509127 0.171040 1.383770 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -4.279620 4.580369 3.478369 -2.808623 7.095668 0.849239 2.491993 3.468062 -2.619963 4.460589 -7.252966 -1.429101 -1.461347 -5.518255 0.006686 -4.421492 0.376367 0.340466 -1.414741 1.447790 2.553435 -2.588715 -0.287666 -3.540333 -0.946754 -5.702435 -2.257852 0.138454 4.292462 -0.111371 1.285681 0.137506 7.791770 0.492929 6.619333 4.906852 2.651008 5.559624 0.529472 0.668659 -0.453267 4.480590 -3.370321 -5.042121 -0.460219 -4.210941 -3.996183 -2.470330 1.229305 -4.146453 -0.161035 4.353626 -0.214095 0.718172 -3.155509 3.242919 4.960876 -0.559388 7.160001 1.941853 -3.842062 -0.972570 -4.143766 4.209653 -2.062903 2.787985 -0.699644 -4.318037 0.563525 0.487788 -1.059565 -2.662558 -2.153574 3.542008 2.249000 -4.317098 2.241208 -1.945314 -6.822131 -4.574952 -3.145775 1.925252 1.171707 5.129242 0.083452 -0.249210 1.057511 1.088561 0.124395 -6.973897 -1.234342 7.068891 -3.587569 -1.471347 -4.009460 3.979957 0.352709 2.570501 -3.208358 -3.040655 1.923400 0.993382 0.624330 -5.556383 -1.346896 -6.398563 1.783782 1.374373 -1.252803 3.917475 1.704255 3.100088 4.345304 4.940249 -5.940693 2.614808 -5.712211 1.981180 -1.574719 -0.076607 -0.236960 0.998344 0.438728 1.985228 4.762837 -6.608427 3.380238 2.777187 -2.906311 -5.772167 -0.089933 -5.123826 -5.148743 -0.872539 2.048688 2.306030 1.027799 -3.076678 0.066750 -1.580516 -1.251644 -4.341030 0.792559 5.244241 -6.132908 -1.007459 -0.395393 0.010346 -3.410112 4.860346 3.092974 1.904175 6.885504 3.015379 -1.437887 2.956451 -4.927806 0.326814 8.102439 2.723939 -5.811822 4.178119 -4.363417 -0.066016 2.389025 2.147230 2.700510 1.976282 -6.486672 -3.628166 2.073681 -1.837172 6.677669 2.886868 1.693188 -4.194674 7.870177 -1.923304 -4.199745 7.543382 4.945723 -6.337869 1.655882 3.272394 -4.630217 -1.367567 3.776716 -4.886815 -1.523660 -3.073153 -0.501423 1.538815 -3.359404 -1.984331 0.709923 -6.301952 7.406489 0.750542 1.964289 0.194895 -4.492521 -6.463734 7.630409 0.071109 -1.044179 -1.933794 -1.654402 -4.484650 -6.505317 0.981931 1.661345 -3.348160 -3.121083 -5.227183 1.545289 3.930504 -2.490432 3.713559 -5.181193 -2.520221 2.420680 1.111716 3.503741 -3.954537 -3.592418 -1.855414 -0.741532 3.608118 -3.446743 5.608048 7.761600 -1.862322 6.365706 -0.704528 -4.581207 0.429744 3.647490 -5.147381 6.197612 -1.286594 4.228137 0.284082 4.301924 -4.313057 -1.844330 -0.121023 -1.930861 -1.721417 3.355568 -3.887018 0.278711 0.323649 -4.995268 -2.150798 2.157306 -0.174929 0.394874 -0.264069 1.227420 -4.626224 -0.880480 -3.764078 0.537362 4.399012 -0.643692 -4.718050 1.046123 0.696533 -0.845651 -0.322733 0.455809 0.461727 4.365998 -5.402895 -0.471330 0.498891 -0.586336 -5.789362 -7.080357 0.356355 -5.277533 -4.665678 2.833909 -5.830479 -0.297949 -4.141724 -0.759707 -7.133840 -3.520488 2.313896 7.928425 2.132318 -3.548049 1.391973 -0.580644 5.186411 0.729137 1.663824 0.900538 2.973671 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -0.820973 0.635435 -0.138163 -0.759960 2.275067 0.019232 0.117797 0.993189 -0.033566 0.697087 -1.652270 -0.122893 -0.035968 -1.409352 0.350184 0.233664 0.205174 0.478068 -0.560184 -0.238515 0.589593 -0.160382 0.126232 -0.964145 -0.032508 -0.931287 -0.426570 0.078018 0.258059 0.417922 -0.638344 0.311983 1.165528 0.059533 0.608108 0.745287 0.937014 1.218832 0.076897 0.368055 0.732125 0.571420 -0.345214 -1.574883 0.530225 -0.986410 -1.054163 -0.706906 0.334101 -1.376965 0.874164 0.858296 0.233615 -0.421384 -0.760101 0.457563 1.191049 -0.052359 1.116228 0.807481 -1.081831 -0.404862 -0.645826 0.815739 -0.699369 1.123745 0.327507 -1.502874 -0.834871 1.115593 0.597449 -0.762250 -1.096577 -0.162009 0.217744 -0.523768 0.625147 -0.110205 0.400767 -0.610712 -0.708495 0.489437 -0.471654 1.158838 0.057205 -0.173395 -0.345797 -0.351838 0.572317 -0.806085 -0.848639 1.128002 -0.437256 0.538186 -1.000615 0.172682 0.275473 -0.173050 -0.474999 -0.905482 0.418078 0.532314 0.117856 -0.159080 -0.435860 -1.107329 0.958956 0.857685 -0.158456 0.554196 0.167520 0.119088 -0.039297 0.304649 -0.553877 0.400151 -1.341603 0.362099 -0.070990 0.120568 -0.467913 -0.160517 0.788210 -0.029302 0.424390 -1.048718 1.408293 0.696656 -0.741414 -0.549784 0.481886 -0.325633 -1.033443 0.148618 0.584960 0.237562 0.016598 0.216806 0.251801 -0.536070 -0.992072 -0.602027 -0.659930 1.037247 -1.329233 -0.045186 -0.185605 -0.357097 -0.455014 0.529864 0.371147 0.227360 1.312951 0.642264 -0.459233 0.378519 -1.109217 0.872835 2.207796 0.829822 -1.094610 0.405100 -0.613127 0.546905 0.506375 0.061682 0.021185 0.688405 -0.553213 0.024693 -0.206320 -0.616682 1.221152 0.987642 0.855763 -1.603468 0.653918 -0.407768 0.123443 1.772912 1.037186 -1.554367 0.478764 1.490809 -0.667114 -0.131802 0.242790 -0.621771 -0.519313 -0.744950 0.413529 0.498736 -1.297315 -1.132291 -0.141561 -1.067798 1.179711 0.318695 0.204260 -0.075634 -0.892753 -0.020515 1.879449 0.152813 -0.129613 -0.036768 -0.406586 -0.770048 -1.448551 0.151224 0.774793 -0.825473 -0.492455 -0.803600 -0.223705 1.514474 -0.965846 0.079525 -1.005361 0.244320 0.520804 -0.002263 0.543838 -1.312398 -0.688488 -0.219227 -0.252117 0.491097 -0.751908 0.229763 1.001679 -0.750615 1.007700 0.767078 -0.011461 0.032565 1.031567 -0.130382 1.132577 -0.130775 1.272824 0.218366 1.205140 -0.726125 -0.052663 -0.417818 -0.327299 -0.539558 1.252885 -1.429167 -0.064934 1.048262 -0.519217 -1.002231 1.013654 0.701521 0.844141 -0.410700 -0.316903 -0.347747 -0.024833 -0.348250 0.368837 0.823777 -0.621480 -1.307173 -0.418310 0.889825 -1.055631 -0.633946 0.639082 0.211723 1.500699 -0.967265 0.839051 0.352981 0.048871 -1.739271 -0.977504 0.176872 -0.593977 -0.635860 0.668497 -1.737069 -0.843325 -0.604755 0.715771 -1.242466 -0.255011 -0.084356 1.180866 0.210404 0.010632 0.761714 0.279856 0.439767 -0.090394 0.098640 0.242638 0.678374 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/weighted-job-scheduling.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.566700 1.617580 1.946144 -1.315000 3.427387 0.378585 0.650150 1.648467 -0.414789 1.207992 -3.300084 -0.557874 -0.538410 -1.999800 0.538776 -1.580074 0.201082 0.209084 -1.010875 0.114301 1.136747 -0.320115 -0.178008 -1.882696 -0.090550 -2.056998 -1.119474 -0.063231 0.988390 0.956729 -0.104314 0.521531 2.696977 0.203844 1.748764 1.587078 1.925847 2.433761 -0.406275 0.710483 0.784796 1.568723 -1.025164 -2.317718 0.529966 -1.991575 -1.588800 -0.743805 0.474435 -1.942395 0.594751 1.617720 0.269481 -0.392643 -1.138763 1.238573 1.752581 0.077786 2.237507 1.369946 -1.865220 -0.761713 -1.866870 1.612573 -1.179477 2.438034 -0.313620 -2.215829 -0.993973 1.116071 0.637653 -0.993412 -1.787129 0.347477 0.539131 -1.098500 1.390824 -0.366616 -0.735619 -0.941312 -1.406677 1.002976 -0.118199 2.103224 -0.114027 -0.383066 -0.253289 -0.199949 0.740959 -1.931800 -1.366081 2.417162 -1.365922 0.180745 -2.290808 0.372074 0.170942 0.465265 -0.982358 -1.667367 1.096274 0.741574 0.118963 -1.554274 -0.558420 -2.490439 1.578627 1.694461 -0.380650 1.500564 -0.078171 1.231381 0.865008 1.052151 -1.567791 0.871661 -2.207807 0.543584 -0.541295 -0.026376 -0.576499 0.200647 0.336463 0.587094 1.197100 -2.124643 2.112965 1.319694 -1.727405 -0.930727 0.574636 -1.433848 -2.282242 -0.216262 1.043201 1.123783 0.048477 -0.209376 0.223616 -1.015676 -0.589555 -1.674881 -0.701158 1.497469 -2.365211 -0.518807 -0.333306 -0.370421 -1.175097 1.664241 0.877975 0.513840 2.128468 1.093560 -0.798250 0.347209 -1.953074 0.986201 3.545953 0.827850 -2.327363 1.139059 -1.530500 0.637327 1.016065 0.301537 0.317534 1.530921 -1.763330 -1.010439 -0.590841 -1.229595 2.522621 2.154634 0.975480 -2.733173 2.063686 -2.001970 -0.922954 2.930692 2.079149 -2.372591 -0.284176 2.179470 -1.849501 -0.954949 0.758885 -1.584381 -0.634512 -1.465778 0.179920 0.874886 -1.894320 -1.582199 0.281843 -2.373602 2.571115 0.565376 0.755050 -0.497475 -1.626811 -2.542120 3.497370 -0.106534 -0.428784 -0.520137 -0.568670 -1.042169 -2.744588 0.383808 1.124970 -1.153163 -1.376814 -1.751656 0.220188 1.959591 -1.822375 0.658742 -1.906807 -0.641371 0.860033 -0.328476 1.381025 -1.815455 -1.576472 -0.930179 -0.713437 1.310806 -1.586300 1.165952 2.612834 -1.030986 2.567164 0.625567 -1.815839 -0.470913 1.976421 -0.838784 2.244908 -0.660200 1.740364 0.155084 2.173933 -1.867616 -0.723759 -0.311037 -1.132764 -1.009016 2.028666 -2.034764 0.251548 0.554157 -1.648952 -1.118229 1.706490 0.482347 0.709918 -0.592171 0.377902 -1.234051 -0.249585 -0.783570 0.442391 1.786816 -0.888883 -2.114048 -0.345319 0.873672 -1.632264 -1.089256 0.775910 0.081018 2.502723 -1.934412 0.736656 0.583024 -0.358836 -3.094619 -2.319088 -0.042900 -1.873198 -1.616436 1.162133 -2.581462 -0.852474 -1.389008 0.661403 -1.849410 -1.523725 0.742185 2.472060 0.668959 -0.986115 1.060797 0.223157 1.666173 0.238769 0.183214 0.323434 0.965824 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.393542 0.284128 0.026563 -0.343539 1.017732 0.009581 -0.041450 0.473235 0.168520 0.381723 -0.752097 -0.172726 -0.088797 -0.654821 0.160950 0.009723 0.081398 0.228577 -0.281501 -0.182664 0.289951 -0.063857 0.079937 -0.429048 -0.015986 -0.563031 -0.209633 0.042044 0.104960 0.279775 -0.277969 0.148865 0.562673 0.034335 0.278026 0.338941 0.434750 0.595902 0.017300 0.344075 0.334412 0.289043 -0.172513 -0.758468 0.269681 -0.475119 -0.455172 -0.335199 0.191544 -0.690339 0.365856 0.394658 0.105608 -0.192438 -0.337714 0.209965 0.465197 0.113063 0.536538 0.375831 -0.483178 -0.219616 -0.372937 0.355812 -0.396428 0.533376 0.096764 -0.740430 -0.425587 0.514097 0.142445 -0.184342 -0.409946 -0.069993 0.125284 -0.240656 0.290926 -0.038676 0.131322 -0.146151 -0.345720 0.232439 -0.182510 0.541399 0.012436 -0.077790 -0.085800 -0.150965 0.267727 -0.382948 -0.384338 0.531168 -0.203214 0.238607 -0.339658 0.049822 0.166921 -0.083022 -0.122967 -0.349841 0.183181 0.244155 0.070608 -0.055591 -0.284376 -0.532501 0.544624 0.404156 -0.059644 0.196263 0.059598 0.015052 -0.072914 0.161095 -0.302892 0.230119 -0.634508 0.189576 -0.044222 0.060652 -0.227099 -0.052784 0.334946 0.000614 0.205579 -0.497677 0.662305 0.312369 -0.320396 -0.216407 0.234756 -0.142079 -0.473169 0.062192 0.303495 0.102818 -0.024792 0.089099 0.124718 -0.247993 -0.412966 -0.206193 -0.326726 0.415278 -0.549371 -0.017263 -0.101772 -0.199204 -0.201724 0.232842 0.156554 0.125578 0.613207 0.318359 -0.220909 0.071635 -0.535542 0.408997 1.027425 0.239156 -0.500810 0.187219 -0.260191 0.263253 0.244357 0.023836 0.025756 0.452510 -0.174429 0.028689 -0.246826 -0.257251 0.582846 0.541316 0.406678 -0.750922 0.266774 -0.257050 0.084692 0.807348 0.546128 -0.729512 0.185056 0.687134 -0.509581 -0.092250 0.097051 -0.240844 -0.128043 -0.400988 0.183313 0.301932 -0.631323 -0.532461 -0.044435 -0.511009 0.560350 0.129998 0.200868 0.020287 -0.449109 -0.061765 0.863560 0.096889 -0.046254 -0.058134 -0.218202 -0.461999 -0.688368 0.074992 0.355218 -0.417784 -0.219514 -0.375724 -0.107395 0.699835 -0.417278 0.056367 -0.431699 0.129149 0.252313 -0.017464 0.268602 -0.477947 -0.317834 -0.106323 -0.211469 0.270275 -0.326399 0.089958 0.451449 -0.340683 0.555988 0.317357 -0.090446 0.006302 0.473189 -0.067244 0.540480 -0.102184 0.428186 0.101545 0.558976 -0.318711 -0.001604 -0.182115 -0.277386 -0.240622 0.588628 -0.664480 -0.042025 0.501843 -0.337745 -0.397636 0.456743 0.339604 0.469906 -0.175270 -0.074137 -0.260715 0.011117 -0.133628 0.167033 0.395274 -0.210937 -0.622788 -0.178011 0.390860 -0.522675 -0.515206 0.302955 0.067439 0.689263 -0.460020 0.372662 0.206102 -0.019078 -0.809525 -0.377951 0.014062 -0.288220 -0.316563 0.281470 -0.812317 -0.352761 -0.274630 0.349503 -0.528858 -0.135110 -0.056691 0.554128 0.123634 -0.003367 0.379478 0.149280 0.206971 0.005225 -0.017947 0.132959 0.338124 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -2.483729 2.040184 2.229547 -1.847556 5.544469 0.082330 1.483822 2.463323 -1.127072 1.811258 -4.914906 -0.864227 -0.909856 -3.504103 0.864715 -1.785594 0.790833 0.515317 -1.454596 0.207825 1.781511 -0.691246 -0.199727 -2.825282 -0.033347 -2.974234 -1.495735 -0.018782 1.745742 1.047302 -0.366472 0.944008 4.296027 0.336352 2.974542 2.537998 2.563607 3.634513 -0.402069 -0.053179 1.134183 2.509328 -1.485138 -3.880407 0.616509 -2.811646 -2.662640 -1.480998 0.883246 -2.938831 0.349237 2.545171 0.366496 -0.391203 -1.972363 1.806100 3.277233 -0.090721 3.540442 2.092912 -2.736742 -0.851360 -2.502527 2.316665 -1.676726 3.048283 -0.471943 -3.515948 -1.408356 1.809345 0.520374 -1.704066 -2.562285 0.481237 1.083965 -1.753223 2.096131 -0.324674 -0.935225 -2.161684 -2.380701 1.284600 -0.466555 3.397486 -0.191560 -0.617468 0.044445 -0.520972 1.252867 -3.021213 -1.958207 3.559157 -2.115325 -0.027585 -2.903697 0.944513 0.378119 0.639886 -1.748834 -2.942476 1.459158 0.761135 0.218215 -2.015157 -0.510157 -3.337386 1.844523 2.140628 -0.291735 2.661162 0.400435 1.655625 1.243734 1.540328 -2.515705 1.220402 -3.448286 1.131217 -1.186020 -0.043104 -0.788803 0.285423 1.226931 0.770272 1.899189 -3.470085 3.155993 2.213011 -2.098403 -1.638598 0.891808 -2.188556 -3.480017 -0.335126 1.788314 1.438894 0.248778 -0.388451 0.556440 -1.358379 -1.086647 -1.792233 -1.238766 2.556521 -4.079410 -0.699682 -0.549346 -0.631187 -1.697710 2.364956 1.229278 0.890476 3.424702 1.791072 -1.713373 1.017586 -3.204483 1.636784 5.780156 0.921753 -3.413998 1.717619 -2.351799 0.997301 1.659369 0.602263 0.769512 1.616261 -2.637915 -1.119644 -0.223361 -1.736993 3.888351 2.764859 1.654831 -4.336305 3.147336 -2.425558 -1.260441 4.685429 2.942133 -4.192011 0.545995 3.423335 -2.855760 -1.174241 1.077479 -2.562639 -1.198495 -2.597862 0.611334 1.329454 -3.110041 -2.188886 0.357668 -3.588530 3.721432 0.866206 0.740425 -0.497702 -2.345241 -3.048255 5.605383 0.120533 -0.416477 -0.866800 -1.138887 -1.905792 -4.355108 0.566117 1.205248 -1.822038 -1.796005 -2.755543 0.120084 3.377597 -2.559378 1.155517 -3.226983 -0.301930 1.361854 0.198758 1.913601 -2.798440 -2.497249 -0.973852 -1.217999 1.672601 -2.577044 1.656412 3.766641 -1.801395 3.596061 0.746863 -2.610659 -0.237900 2.803489 -1.496192 3.439658 -0.780489 3.427845 0.337499 3.362427 -2.881754 -1.048590 -0.621189 -1.652499 -1.842006 3.091641 -3.355012 0.334713 1.364598 -2.216942 -2.334729 2.472583 0.802860 1.375546 -0.881771 0.153383 -2.113893 -0.078611 -1.346774 0.905002 2.740718 -1.384773 -3.442046 -0.508626 1.647139 -2.266505 -1.761863 1.203054 0.117644 3.819048 -3.010359 1.112273 0.843729 -0.001247 -4.314786 -3.851481 0.416273 -2.903621 -2.337858 2.136179 -4.065106 -1.232372 -2.137784 1.042131 -3.406165 -2.032803 0.900358 3.918022 0.754834 -1.319866 1.672758 0.417145 2.242860 0.094199 0.568479 0.368431 1.540401 +PE-benchmarks/weighted-job-scheduling.cpp__long std::__lg(long) = -0.356449 0.103292 -0.051553 -0.105155 0.476390 0.085359 -0.159586 0.387820 0.015316 0.448082 -0.412543 -0.205864 -0.198456 -0.348445 -0.065196 -0.039057 0.027826 0.016322 -0.211588 -0.159453 0.223955 -0.098003 0.027099 -0.149790 -0.072974 -0.208324 -0.218440 0.029118 0.437878 -0.319697 -0.312010 -0.056658 0.668224 -0.067873 0.569023 0.297955 0.350317 0.420419 0.062331 0.107367 -0.097776 0.448878 -0.336615 -0.336614 -0.006588 -0.430885 -0.085423 0.062762 0.253648 -0.017557 0.346304 0.276080 -0.082118 0.129902 -0.154856 0.256011 0.033094 0.102919 0.694452 0.048156 -0.388294 -0.136162 -0.404549 0.676014 -0.312536 0.387291 -0.170820 -0.335678 -0.070377 -0.158347 -0.065171 -0.380391 -0.164451 0.410599 0.038213 -0.332087 0.165296 -0.151290 0.019481 -0.285139 -0.467855 0.107793 -0.047524 0.275934 -0.076788 0.006030 -0.050713 0.201053 -0.057584 -0.638788 0.024620 0.443698 -0.461216 0.216613 -0.135933 0.062849 -0.276510 0.293930 -0.202869 -0.048131 0.059871 0.136522 0.096577 -0.475316 0.361404 -0.357167 0.330704 -0.106723 -0.020199 -0.006956 0.441843 0.088586 0.374309 0.525223 -0.110484 -0.142827 -0.461982 0.073884 -0.026622 0.051768 -0.017889 0.262375 0.018362 -0.054057 0.548923 -0.570764 0.117520 -0.022821 -0.235763 -0.491094 -0.045254 -0.448523 -0.422421 -0.070543 0.221548 0.125053 -0.054035 -0.405426 0.083301 -0.034692 -0.525319 -0.236297 0.122167 0.084102 -0.330769 -0.120169 -0.066983 -0.103015 -0.210008 0.434390 0.269111 0.276788 0.545727 0.322573 -0.075782 0.067824 -0.451038 0.032706 0.429017 -0.046511 -0.561423 0.323711 -0.539744 0.039195 0.313284 0.281262 0.316380 0.264717 -0.120358 -0.016495 0.253475 0.100218 0.546599 -0.029663 0.257709 0.067069 0.283368 -0.021647 -0.318786 0.697616 0.149660 -0.639572 0.284716 0.068008 0.102554 0.073540 0.295797 -0.356487 0.044907 -0.361688 -0.043358 0.285379 -0.320105 0.001539 0.232817 -0.495159 0.743177 -0.044256 0.086079 0.295324 -0.680975 -0.225628 0.553282 0.042762 -0.054270 -0.259088 -0.204009 -0.405460 -0.474649 0.103707 0.099063 -0.240901 -0.215340 -0.465720 0.160398 0.399273 0.035526 0.412515 -0.452054 -0.190321 0.173171 -0.017250 0.377606 -0.071340 -0.235713 -0.149992 -0.116223 0.469700 -0.412875 0.307176 0.613643 -0.214154 0.582259 0.122951 -0.224760 -0.095298 0.181152 -0.466762 0.482003 -0.075803 -0.109559 -0.103126 0.274846 -0.355387 -0.071402 -0.012480 0.214904 -0.025075 0.087087 -0.146914 -0.029460 -0.183674 -0.588779 -0.002627 0.010024 -0.073507 0.107382 0.110286 -0.084123 -0.307277 -0.154449 -0.295304 0.003514 0.368749 -0.015381 -0.344604 0.199803 -0.250447 -0.115258 0.220672 -0.005692 -0.039362 0.346222 -0.440602 -0.306221 0.104578 -0.048892 -0.384615 -0.398672 -0.426617 -0.154542 -0.118557 0.272654 -0.390847 -0.047691 -0.295775 -0.138321 -0.467516 -0.054444 0.040811 0.649539 0.399279 -0.302172 0.198939 0.002344 0.476530 0.177854 -0.038959 0.109303 0.166255 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.887249 1.833970 2.281271 -1.627372 4.032188 0.027114 0.939556 1.620591 0.032680 1.207354 -3.986963 -1.047548 -0.755137 -2.675487 0.715442 -1.961601 0.397106 0.710646 -1.217929 0.065600 1.456056 -0.271716 -0.169730 -2.357890 -0.018175 -2.277526 -1.389267 -0.071600 0.568597 1.197063 0.185709 0.868781 3.218069 0.516050 2.165982 1.965355 1.945645 3.229150 -0.518511 1.410429 1.167252 1.824792 -0.993622 -3.338419 0.898510 -2.186731 -1.867796 -1.413681 0.523876 -2.704254 1.011006 1.890584 0.456066 -0.544255 -1.515097 1.035414 2.400005 0.473178 2.469464 1.828939 -2.270210 -0.164545 -2.129477 1.277910 -1.550016 2.917189 0.041726 -2.899581 -1.364951 1.626869 1.058024 -1.183501 -2.426398 0.000107 0.668747 -1.120218 1.607296 -0.255699 -1.005671 -0.877670 -1.763370 1.109324 -0.161875 2.523374 -0.192241 -0.554573 -0.220600 -0.530205 1.141354 -1.971474 -1.851091 2.778488 -1.377183 0.376988 -2.360780 0.363318 0.316918 0.277300 -1.157818 -2.079825 1.287440 0.772375 0.160722 -0.702813 -1.548979 -2.719564 2.101716 2.226813 -0.741206 1.613030 0.147434 1.343135 0.723859 0.869113 -1.998345 1.431160 -2.782493 0.861133 -0.715463 -0.063220 -0.567986 0.043404 0.430409 0.485548 1.086097 -2.333622 2.761510 1.732097 -1.955737 -0.894874 0.898844 -1.417102 -2.681556 -0.301464 1.407430 1.354693 0.049324 0.051756 0.048470 -1.295685 -0.418401 -1.901326 -1.170428 1.751525 -2.456491 -0.553208 -0.499734 -0.717484 -1.368070 1.640363 0.761776 0.487403 2.491596 1.321591 -1.172352 -0.063948 -2.321366 1.222422 4.435080 0.777673 -2.628823 1.130964 -1.273753 0.953311 1.248527 0.228646 0.267059 1.589524 -1.837128 -0.966526 -1.113969 -1.686012 2.828270 2.837086 1.221697 -3.690337 2.277720 -1.857708 -0.804582 3.813449 2.442870 -2.907578 -0.359666 2.856646 -2.559504 -1.428028 0.694151 -1.518881 -0.844075 -1.751922 0.499473 0.845261 -2.464308 -2.141961 0.238113 -2.799449 2.706019 0.703351 0.819355 -0.698199 -2.002395 -2.971544 4.449196 -0.019677 -0.462098 -0.424657 -0.751078 -0.834117 -3.371561 0.501124 1.409948 -1.330532 -1.537229 -1.857558 0.397193 2.583595 -2.391596 0.578891 -1.416825 -0.697314 1.021875 -0.452469 1.446979 -2.578945 -1.915116 -0.874390 -0.742184 1.420741 -1.417540 0.957503 3.018741 -1.304181 2.703674 1.352358 -2.042183 -0.447292 2.530155 -0.758812 2.582439 -1.033582 2.204902 0.223006 2.607041 -2.044855 -0.899607 -0.333155 -1.274329 -1.378780 2.584757 -2.597489 0.333480 0.979591 -1.865689 -1.349830 2.275399 0.839426 1.162610 -0.810430 0.487165 -1.533251 0.012573 -0.627518 0.560532 2.154624 -0.849354 -2.805228 -0.646325 1.371087 -2.131347 -1.783077 1.058793 0.071169 3.111647 -2.216145 1.280000 0.734838 -0.549280 -3.611491 -2.532389 0.352518 -2.532737 -1.821107 1.286363 -3.004757 -1.092008 -1.537563 1.193822 -1.987012 -1.577051 0.564887 2.700794 0.887134 -0.812494 1.356580 0.390744 1.821737 0.256415 0.001244 0.379900 1.589460 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.977368 0.740058 0.189004 -0.850811 2.878416 0.008503 0.292238 1.345476 -0.118322 0.750034 -2.057241 -0.134069 -0.111054 -1.693097 0.506634 -0.022940 0.319458 0.489521 -0.740041 -0.418183 0.720555 -0.028526 0.043466 -1.207062 0.035227 -1.291448 -0.563982 0.029497 0.292296 0.746630 -0.701116 0.528681 1.455572 0.084399 0.734341 0.944853 1.336803 1.428747 -0.099827 0.609133 0.947986 0.680842 -0.395820 -1.902536 0.589925 -1.203636 -1.383978 -0.743759 0.361176 -1.753466 0.732331 1.054807 0.321287 -0.404947 -0.768569 0.651603 1.368406 -0.122585 1.239106 1.102986 -1.477824 -0.642546 -0.821894 1.025692 -0.762941 1.493828 0.289984 -1.903949 -1.115601 1.409155 0.527780 -0.787907 -1.228128 -0.260144 0.327504 -0.558912 0.808707 -0.010984 0.350519 -0.536216 -0.862462 0.628418 -0.446147 1.433435 0.102321 -0.307784 -0.214129 -0.556567 0.752590 -0.949099 -1.083443 1.544520 -0.619175 0.574677 -1.569111 -0.018920 0.364739 -0.118437 -0.479534 -1.308861 0.568466 0.644907 0.076119 -0.401284 -0.771767 -1.414860 1.135039 1.088054 -0.177487 0.811125 -0.120811 0.118466 -0.143328 0.306039 -0.749373 0.673529 -1.591855 0.591978 -0.233590 0.101640 -0.602946 -0.303872 1.008299 0.089703 0.441010 -1.227222 1.682086 0.929271 -0.980086 -0.610692 0.575658 -0.498503 -1.363409 0.174495 0.767390 0.376645 0.049801 0.303680 0.356785 -0.703490 -0.987674 -0.827482 -0.944461 1.113036 -1.720723 -0.141771 -0.230662 -0.358922 -0.684052 0.707535 0.426704 0.289583 1.540213 0.735539 -0.616369 0.548114 -1.386387 1.070482 2.725704 0.988389 -1.306417 0.464134 -0.814388 0.739432 0.567878 -0.007098 -0.079429 0.989560 -0.703759 0.103072 -0.377364 -0.791438 1.499271 1.471732 1.004346 -2.088539 0.710846 -0.895894 0.067342 2.029848 1.501857 -1.973357 0.581098 1.888576 -0.908104 -0.275163 0.285063 -0.929704 -0.682651 -0.991902 0.491298 0.635562 -1.668269 -1.263065 0.013335 -1.297459 1.360685 0.469611 0.388170 -0.174571 -1.024232 -0.406655 2.364215 0.138405 -0.068234 -0.042594 -0.485494 -1.032519 -1.760976 0.163508 0.965410 -0.981809 -0.645079 -0.960444 -0.305115 1.893520 -1.264861 0.209494 -1.207827 0.361076 0.605617 -0.021015 0.752813 -1.611293 -0.943736 -0.414110 -0.460070 0.607451 -1.048013 0.179632 1.155998 -0.860550 1.469389 0.717523 -0.442921 -0.120336 1.210104 -0.088556 1.325976 -0.089636 1.573188 0.337471 1.561289 -1.039603 -0.161772 -0.553993 -0.611235 -0.785057 1.659994 -1.796482 0.017204 1.278890 -0.694204 -1.234124 1.289268 0.817308 1.007506 -0.605827 -0.285360 -0.508320 0.010100 -0.489814 0.531611 1.026759 -0.880590 -1.593752 -0.561784 1.096541 -1.491123 -0.966436 0.835316 0.208402 1.866156 -1.149102 0.975389 0.526805 0.038574 -2.243412 -1.291978 0.177741 -0.885762 -0.905664 0.659179 -2.089322 -1.016978 -0.728652 0.867935 -1.584368 -0.618198 -0.000163 1.452523 0.143364 0.060490 0.923137 0.442832 0.481792 -0.136895 0.222544 0.313598 0.738729 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.794457 2.482453 2.434282 -1.906168 3.915945 0.573218 0.798429 1.860698 -0.506081 1.364315 -4.247593 -0.251936 -0.177888 -2.640267 0.673559 -1.548470 -0.131236 0.386854 -0.901114 0.343189 1.316341 -0.754729 -0.152769 -2.582255 -0.076419 -2.342668 -1.135869 -0.211141 0.700878 1.600884 0.327477 0.447106 2.577658 0.674129 1.607388 1.870447 1.771268 3.111558 -0.199662 1.469409 1.003787 1.623553 -0.973664 -3.151139 1.066729 -2.313391 -1.758583 -1.519415 0.091411 -3.153950 1.244740 1.935895 0.431075 -1.025359 -1.612299 1.129272 2.662055 -0.027655 2.364287 1.785697 -2.055354 -0.856392 -2.048596 1.044833 -1.271979 2.949429 0.731023 -2.609199 -0.955203 1.648886 1.157405 -1.021655 -2.197769 0.052933 0.444558 -1.176545 1.327200 -0.688669 -1.879736 -0.549107 -1.144786 1.211509 0.139739 2.606739 0.052560 -0.475485 -0.244895 -0.370998 1.151733 -1.897694 -2.020205 2.904249 -1.051146 0.186450 -2.681348 0.894813 0.391509 0.223563 -1.050297 -1.516087 1.413676 1.390357 0.098333 -1.415242 -2.083136 -3.406847 2.469761 2.490017 -1.103585 1.422198 0.014161 1.349720 0.573981 0.950482 -2.180081 1.718761 -2.691125 0.444318 0.054624 0.107233 -0.667232 -0.225865 0.176971 0.495115 0.960811 -2.166890 2.952962 1.804453 -2.174792 -1.118523 0.783498 -1.448678 -2.517769 -0.067506 0.973584 1.411773 0.103141 0.257327 -0.132567 -1.453648 -0.854404 -2.853604 -0.963193 2.544839 -2.800846 -0.526372 -0.384389 -0.394114 -1.444990 1.637163 0.837459 0.208421 2.375887 1.110263 -0.600796 0.358056 -1.820507 1.319889 4.581835 1.838503 -2.633629 1.061143 -1.219924 0.912396 0.975012 -0.205617 0.150177 1.831394 -2.563478 -1.505398 -0.510528 -2.097270 2.670635 3.255779 1.338713 -3.630899 3.035786 -1.744082 -0.884393 3.523321 2.654710 -2.528657 -0.406021 2.905701 -2.601048 -1.053413 0.699950 -1.283255 -0.708750 -1.110386 0.037830 0.492478 -2.206611 -2.643087 -0.446095 -2.783702 3.010126 0.903231 1.519960 -1.126466 -1.498193 -2.715528 4.041136 0.004444 -0.870107 -0.327860 -0.303914 -1.642507 -3.078214 0.514981 1.886733 -1.572879 -1.825927 -1.858986 0.317376 2.271712 -2.699042 0.134163 -1.495286 -1.010859 0.918429 -0.429496 1.506988 -2.821388 -1.858041 -1.042771 -0.397796 1.627926 -1.161380 1.553450 3.239119 -1.080068 2.976513 1.389559 -1.189024 -0.395519 2.775943 -0.486247 2.493069 -1.176974 2.526405 0.193921 2.711996 -1.955520 -0.779037 -0.306973 -1.480283 -0.882772 2.577353 -2.573179 0.305149 0.944346 -1.803718 -1.171066 2.525725 0.740551 1.217581 -0.953188 0.621602 -1.022386 -0.278331 -0.804202 0.336886 2.067188 -1.079479 -2.733145 -1.024873 1.406654 -1.848503 -1.646799 1.164998 0.246382 3.034889 -2.147728 1.644818 0.500827 -0.979817 -3.880724 -2.242201 0.484999 -2.203524 -2.105431 1.209746 -3.213466 -0.898471 -1.595791 1.032156 -2.485443 -1.497399 0.273213 2.446457 0.615596 -0.715475 1.247295 0.265459 1.929169 0.396190 0.245911 0.318049 1.481765 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.608902 1.214593 0.637664 -1.278316 4.232729 -0.359815 0.779730 1.356732 -0.347390 1.215609 -3.217003 -0.436780 -0.274338 -2.817062 0.704775 -0.690532 0.908492 0.672684 -0.813665 -0.020079 0.936597 -0.490696 0.006829 -1.771051 -0.044722 -2.739595 -0.983771 0.273654 1.013917 0.195972 -0.350616 0.883978 3.018389 0.026203 1.803804 1.796676 1.750281 2.078280 0.214309 -0.604097 1.301567 1.208993 -0.741969 -2.579974 0.240124 -1.467555 -2.348748 -1.107215 0.652173 -1.990501 -0.511796 1.708622 0.327106 -0.282530 -1.683680 1.218602 2.628597 -0.261763 2.269772 1.402613 -1.663953 -0.490996 -1.213201 1.651288 -1.406766 1.213055 -0.525240 -2.638410 -1.100609 2.025266 0.027733 -1.113827 -1.749764 -0.029401 0.978990 -1.289370 1.214144 0.020108 -0.061539 -1.881974 -1.382569 0.996107 -0.556619 2.315929 0.221519 -0.300306 0.406753 -0.614889 0.975039 -1.823125 -1.333225 2.147153 -1.270583 -0.148906 -1.162028 0.989728 1.011915 -0.149497 -0.841618 -2.585116 0.738976 -0.053803 0.114566 -0.480043 -0.070165 -1.907757 0.631049 1.065274 0.003485 2.079111 0.046479 0.869287 0.558906 0.703310 -1.911279 0.134897 -2.503490 1.041317 -1.099793 -0.232150 -0.721561 -0.129487 1.454491 0.874143 1.165775 -2.393815 2.356345 1.612169 -0.924140 -1.020268 0.594039 -0.916408 -2.098610 0.048654 1.167113 0.554175 0.468124 0.084996 0.600543 -0.757796 -0.681448 -0.539679 -1.077048 2.144270 -3.011307 -0.118980 -0.183598 -0.406199 -1.018975 1.158918 0.852132 0.602497 2.590905 1.166992 -1.486820 1.673573 -2.454535 1.310951 4.253843 0.699767 -1.936521 1.241758 -1.515640 0.531022 1.013197 0.636281 0.308489 0.471318 -1.693768 -0.471746 -0.074257 -1.090809 2.480303 1.231681 0.954881 -3.259212 1.934478 -0.745250 -0.252773 3.467563 1.618926 -3.191250 1.397073 2.901591 -2.170552 -0.612857 0.697967 -1.900564 -1.091431 -1.967302 0.793117 0.952115 -2.254133 -1.365736 -0.016248 -2.115849 1.991254 0.649237 -0.217757 0.012586 -1.154666 -1.681448 4.013073 0.188868 0.227882 -0.416144 -1.035387 -0.966939 -3.068230 0.049062 0.633042 -1.739447 -0.403074 -1.760346 -0.288726 2.806096 -1.747361 0.851591 -3.052549 0.625422 1.085415 0.944568 0.664141 -1.808237 -1.470737 -0.057091 -0.913775 0.191172 -2.012118 0.899829 1.882033 -1.369157 1.985498 -0.282768 -1.894390 0.489537 1.576912 -0.986844 2.397169 -0.129572 2.968102 0.804104 2.208960 -1.835926 -0.482533 -0.706789 -1.553718 -1.698104 2.073276 -2.882630 0.015186 2.078821 -0.630209 -2.460125 1.635094 1.124293 1.277164 -0.782357 -0.413176 -1.276264 0.327809 -0.456583 1.041028 1.465894 -0.839525 -2.365710 -0.255845 2.116431 -1.533064 -1.736631 0.867173 0.278303 2.537898 -2.013359 1.231612 0.686191 0.746659 -2.840623 -2.921254 0.960551 -1.908350 -1.191969 1.155195 -3.424499 -1.367568 -1.265109 0.966821 -2.250516 -0.874395 0.750797 2.708482 0.168130 -0.814796 1.128591 0.230532 0.660073 -0.397131 0.654773 0.186758 0.992378 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.078613 1.097945 0.826788 -0.864157 2.371213 0.083779 0.441004 0.990481 -0.718888 0.950713 -2.165435 -0.261367 -0.287588 -1.781583 0.418843 -0.537539 0.412416 0.102957 -0.377841 0.336036 0.669145 -0.714711 -0.020902 -1.179185 -0.128083 -1.575220 -0.523691 0.126845 1.169036 0.033202 -0.090509 0.377175 2.070860 0.078319 1.399129 1.078895 1.159096 1.517593 0.329624 -0.881916 0.381910 1.059706 -0.718144 -1.538510 0.174394 -1.141532 -1.091958 -0.484806 0.411498 -0.865224 0.016324 1.200458 0.042088 -0.293127 -1.285771 0.864153 1.523207 -0.272596 1.801771 0.732992 -0.931268 -0.804467 -1.058760 1.438380 -0.976316 0.906987 -0.473252 -1.271220 -0.287014 0.814871 -0.021578 -0.541966 -1.193114 0.444090 0.582624 -1.053184 0.892056 -0.216025 -0.408524 -1.311916 -1.135535 0.766223 -0.316139 1.652861 0.057533 -0.056468 0.154784 0.000810 0.437901 -1.570631 -0.651992 1.289045 -1.071652 -0.254613 -0.818253 1.018968 0.154772 0.174777 -0.814403 -1.343504 0.682465 0.029546 0.171489 -1.179940 0.568222 -1.676063 0.753486 0.745782 0.049061 1.456662 0.760801 0.932871 0.851623 0.882391 -1.225650 -0.260978 -1.584488 0.258682 -0.245871 -0.187915 -0.513348 0.337788 0.387121 0.417992 1.118834 -1.925069 1.390040 1.047407 -0.708960 -0.689113 0.217384 -0.922374 -1.419698 -0.178733 0.789464 0.478376 0.186421 -0.175789 0.233941 -0.356703 -0.833589 -0.650233 -0.367832 1.679303 -2.107855 -0.175780 -0.180693 -0.312652 -0.653861 1.086646 0.730351 0.567016 1.455364 0.814724 -0.834711 0.863915 -1.521421 0.789990 2.636877 0.282815 -1.647795 1.082341 -1.437170 0.165646 0.692518 0.521771 0.601114 0.285765 -1.435684 -0.874513 0.437535 -0.600846 1.795359 0.598098 0.607911 -1.840485 1.786383 -0.530299 -0.593516 2.303598 0.712590 -1.750462 0.363999 1.630543 -1.527278 -0.298596 0.613944 -1.348596 -0.436349 -1.337188 0.232307 0.773035 -1.324719 -0.845830 -0.101899 -1.636111 1.815340 0.376348 0.105594 -0.140540 -0.853061 -1.395498 2.561361 0.008908 -0.092267 -0.624815 -0.693922 -0.814980 -2.017664 0.160023 0.396758 -0.921995 -0.553472 -1.412168 -0.158268 1.457454 -0.943383 0.569664 -2.330910 -0.024823 0.727386 0.495649 0.518464 -0.805990 -1.018434 0.016107 -0.559369 0.481996 -1.328534 1.185161 1.566737 -0.904725 1.707226 -0.018572 -1.186501 0.251685 1.098834 -0.882553 1.744692 -0.422191 1.593518 0.255534 1.473031 -1.359941 -0.363246 -0.244681 -0.950225 -0.877055 1.035021 -1.537218 0.004768 0.619127 -0.740958 -1.439116 0.880458 0.355565 0.725489 -0.322670 -0.148777 -0.622840 -0.151791 -0.484698 0.628692 1.124431 -0.562881 -1.232430 0.050221 0.914201 -0.564121 -0.583168 0.472616 0.115751 1.663646 -1.538397 0.493609 0.241651 0.345871 -1.796204 -1.979957 0.352681 -1.124324 -0.773770 1.182788 -2.284059 -0.509758 -0.994713 0.330690 -1.405684 -0.399110 0.518191 1.953818 0.131325 -1.023886 0.729775 -0.030738 0.826316 0.014174 0.322560 0.088317 0.555142 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.744721 2.067905 3.368598 -1.627745 4.781860 0.721272 1.158027 2.534072 -1.554867 2.287439 -4.887084 -1.459796 -1.611974 -3.226235 0.600212 -2.422501 0.691906 -0.151363 -1.388313 0.709610 1.986187 -1.311060 -0.110625 -2.635749 -0.111380 -2.564987 -1.789388 -0.093910 2.783095 0.582667 0.071478 0.455927 4.944667 0.623108 3.613612 2.465810 2.539543 4.175982 -0.401975 -0.719673 -0.046071 3.408671 -2.161235 -3.573060 0.832093 -3.409749 -2.016687 -1.050256 0.975432 -2.241114 0.084432 2.802292 -0.086233 -0.168663 -1.965176 1.868065 3.058860 0.102373 4.392570 1.674288 -2.396706 -1.366109 -3.250098 2.257355 -1.718824 3.384460 -1.153655 -3.150645 -0.838083 0.371717 0.243376 -1.871233 -2.542282 1.724033 1.130872 -2.049639 2.241524 -0.653578 -1.821222 -2.512295 -3.218553 1.095362 -0.347934 3.583473 -0.572994 -0.470679 0.571937 0.203089 0.770612 -4.051670 -1.261112 3.566902 -2.814933 -0.287228 -2.541912 1.286646 -0.916851 1.599624 -2.474655 -2.216876 1.540435 0.764817 0.417097 -3.141212 0.415108 -3.858566 2.300767 1.712430 -0.014737 2.506952 1.955535 2.133573 2.338762 2.685962 -3.236627 0.718894 -3.132326 0.687198 -0.899702 0.032767 -0.646982 1.404225 0.177661 0.711694 2.924196 -4.324169 2.544525 1.983657 -2.482851 -1.969766 0.459958 -3.234584 -3.754296 -0.756041 2.051471 1.498814 -0.037711 -1.415630 0.351205 -1.165914 -1.465689 -2.076615 -0.658229 2.533889 -4.327023 -1.026157 -0.755915 -0.972166 -1.659346 3.076477 1.600160 1.463798 3.246277 2.047164 -1.834796 0.835613 -3.269968 1.419025 5.570052 0.291575 -4.220000 2.198520 -3.029162 0.853189 2.137023 0.906267 1.878299 1.507068 -2.807635 -1.800828 0.600386 -1.104368 4.387095 2.771322 1.830659 -3.870604 3.856452 -2.527614 -2.191224 5.023711 2.353363 -3.970723 0.005879 2.501122 -3.175128 -0.935354 1.224790 -2.764640 -0.590543 -2.962758 0.001620 1.670259 -2.851236 -1.899506 0.692909 -4.260637 4.778043 0.653595 1.199680 -0.188807 -2.974798 -4.364369 5.692279 0.063684 -0.821225 -1.744833 -1.332704 -2.086440 -4.453226 0.950924 0.775764 -1.582324 -2.336302 -3.459443 0.586934 2.951042 -1.704725 1.645281 -3.965224 -1.062182 1.341817 -0.179246 2.510957 -2.185616 -2.751889 -1.026995 -1.564154 2.506910 -2.672809 2.495597 4.615651 -1.970084 4.271519 0.352983 -3.054979 -0.470030 2.646679 -2.295386 3.832355 -1.413064 3.267151 -0.405714 3.454328 -3.165344 -1.097461 -0.079810 -1.334723 -1.448832 2.581219 -2.582724 0.318915 0.126014 -3.208546 -1.882608 1.829815 -0.183015 1.013927 -0.310950 0.333734 -2.526410 -0.461860 -1.092625 0.709427 3.247031 -1.091451 -3.205638 -0.049294 0.317819 -1.306060 -1.375093 0.946707 -0.239197 3.699598 -3.533246 -0.047408 0.536808 -0.482463 -3.776196 -4.011822 -0.398922 -2.967886 -2.245509 3.138363 -3.882797 -0.123217 -2.605482 0.147048 -2.986142 -1.834524 0.875775 4.387626 1.346946 -2.500149 1.698117 0.252071 3.263595 0.571861 0.307755 0.338947 1.434776 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = -1.461100 1.006742 1.109231 -1.047664 3.221984 0.284003 0.485722 1.696028 0.120896 0.998232 -2.785717 -0.783780 -0.684917 -1.929859 0.420993 -0.964508 0.227581 0.609221 -1.181794 -0.404288 1.288041 -0.006183 0.009876 -1.704639 0.182149 -1.435329 -1.042202 -0.228320 0.321895 1.395709 -0.424252 0.427709 2.065985 0.492050 1.297081 1.309444 1.547401 2.377171 -0.742321 1.914027 0.661927 1.523570 -0.788256 -2.733546 1.058916 -1.989178 -1.402892 -1.151920 0.493694 -2.546393 1.134482 1.401367 0.307273 -0.316265 -0.599963 0.574158 1.761878 0.461484 1.761333 1.446672 -1.939005 -0.347354 -1.536492 0.606329 -0.866175 2.543298 0.615503 -2.495494 -1.419171 0.982321 0.949086 -1.058126 -1.545777 0.026280 0.384178 -0.571503 1.228489 -0.203645 -0.451248 -0.417284 -1.381992 0.440986 -0.340148 1.823216 -0.286837 -0.589863 -0.269413 -0.595949 0.927014 -1.454040 -1.368546 2.274801 -0.824937 0.882323 -2.253273 -0.334985 0.019965 0.454574 -0.904062 -1.194838 0.776904 1.183070 0.140430 -0.366211 -1.839761 -1.914434 1.893041 1.508925 -0.488870 0.726155 -0.093436 0.331822 0.042490 0.725959 -1.401439 1.769715 -1.871379 0.808763 -0.501808 0.398168 -0.332626 -0.101992 0.790881 -0.055852 0.672210 -1.479411 1.957615 1.171295 -1.620250 -0.974202 0.839521 -1.312975 -2.040489 -0.044168 1.082645 0.823647 -0.161407 -0.154292 0.160705 -1.177343 -0.843302 -1.468759 -1.126357 0.881506 -1.780255 -0.489933 -0.513656 -0.650048 -0.974336 1.128302 0.387916 0.347138 1.975858 1.094874 -0.778917 -0.075921 -1.555351 1.052437 3.405120 1.141473 -1.936606 0.408153 -0.648160 1.150605 1.071565 -0.200039 0.201063 1.751923 -0.826175 0.026160 -1.046266 -1.150636 2.068446 2.740864 1.434210 -2.730432 1.134535 -1.596447 -0.482829 2.679635 2.321666 -2.380450 0.090299 1.796789 -1.471001 -0.653974 0.207162 -0.772435 -0.599169 -1.242643 0.442658 0.631314 -2.042663 -1.833190 0.346901 -2.075890 2.112506 0.529114 1.215721 -0.212723 -1.902162 -1.378421 3.063274 0.150493 -0.563447 -0.208327 -0.410147 -1.237662 -2.252777 0.567008 1.115650 -1.061572 -1.405464 -1.328331 0.227419 2.175173 -1.550332 0.331347 -0.653721 -0.353349 0.596003 -0.807347 1.545265 -2.464406 -1.532897 -1.107249 -0.569714 1.587151 -0.855646 0.214647 2.275416 -1.030981 1.900361 1.331106 -0.767926 -0.592427 1.870605 -0.311631 1.650345 -0.603722 1.660031 -0.093651 2.087240 -1.345655 -0.448392 -0.361511 -0.471471 -0.671762 2.328557 -1.840278 0.243151 1.037044 -1.781685 -0.715593 1.716797 0.471819 1.083999 -0.553284 0.172630 -1.412875 0.068127 -0.500765 0.166884 1.783872 -0.752182 -2.386496 -0.921016 0.546996 -1.834717 -1.455956 0.996889 -0.051192 2.362696 -1.499652 0.816315 0.633155 -0.797502 -2.677646 -1.446113 -0.175844 -1.545669 -1.593735 1.160528 -2.050796 -0.665369 -1.176679 0.825381 -1.864160 -1.297430 -0.160459 1.855534 0.821662 -0.002405 1.212782 0.663329 1.519758 0.151073 -0.005545 0.465731 1.334200 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.639410 1.242838 1.683700 -1.276806 3.952813 0.402407 0.611294 2.186414 -0.427137 1.166272 -3.335690 -0.520434 -0.704331 -2.263234 0.686311 -1.086504 0.271047 0.343878 -1.330154 -0.400110 1.390188 -0.029087 -0.079519 -1.979999 0.071744 -1.781355 -1.087380 -0.166108 0.813935 1.406869 -0.487138 0.611336 2.531372 0.273153 1.519894 1.395197 2.383683 2.650766 -0.793876 1.317887 0.901204 1.689058 -0.959083 -2.868658 1.052473 -2.274519 -1.689949 -0.827043 0.592781 -2.503045 1.106056 1.702788 0.376728 -0.520997 -0.859737 1.171935 1.873445 -0.094073 2.148342 1.665342 -2.357030 -1.113005 -1.949733 1.611516 -1.148948 3.083139 0.139176 -2.651867 -1.644205 1.277446 0.825025 -1.068477 -1.967844 0.103807 0.522862 -0.857129 1.543502 -0.208638 -0.015144 -0.677872 -1.702158 0.866471 -0.376414 2.245530 -0.242492 -0.563310 -0.096333 -0.569758 0.978854 -1.847287 -1.580181 2.549478 -1.417727 0.757542 -3.034528 -0.359412 -0.305518 0.494562 -1.126230 -1.756207 1.113098 1.231766 0.162798 -1.424844 -1.156778 -2.499526 2.123037 1.852421 -0.323517 1.232766 0.019385 0.629309 0.214536 0.936229 -1.384948 1.403898 -2.259736 0.678766 -0.291816 0.308829 -0.769855 0.031171 0.840026 0.148102 1.000943 -2.067305 2.351460 1.328958 -1.995913 -0.857179 0.809402 -1.446169 -2.462268 -0.104798 1.333656 0.994734 -0.203519 -0.028323 0.413468 -1.122890 -1.279022 -1.844432 -1.231611 1.148308 -2.601477 -0.610655 -0.555766 -0.661534 -1.195977 1.606076 0.721405 0.549830 2.074872 1.224802 -0.864880 0.331298 -2.018101 1.401593 3.933561 1.071793 -2.478352 0.807219 -1.594294 1.217613 1.170047 -0.060280 0.236022 1.948510 -1.237029 -0.258216 -0.583574 -1.202043 2.603269 2.772854 1.483654 -3.328425 1.364868 -2.216121 -0.593343 3.165366 2.501752 -2.847992 -0.009941 2.307562 -1.586538 -0.783867 0.418099 -1.451260 -0.831796 -1.631248 0.457076 1.046800 -2.355817 -1.908623 0.441861 -2.430805 2.618668 0.616428 1.099603 -0.413337 -1.968489 -2.048018 3.627969 -0.017083 -0.530765 -0.505148 -0.624017 -1.440701 -2.790712 0.579119 1.378932 -1.108610 -1.670645 -1.753215 0.032787 2.492905 -1.846013 0.474271 -1.776564 -0.327903 0.808407 -0.681624 1.717004 -2.395916 -1.745041 -1.178159 -0.833079 1.667798 -1.582245 0.503081 2.550186 -1.312272 2.856868 1.142405 -1.580228 -0.820783 2.125930 -0.384828 2.148043 -0.598167 1.914052 -0.070776 2.498524 -1.943283 -0.541094 -0.504321 -0.840266 -0.965970 2.442157 -2.197141 0.254657 0.775716 -1.999758 -1.197705 1.958901 0.587296 1.194407 -0.683899 0.126512 -1.122130 -0.238406 -0.817409 0.457521 2.035058 -1.313001 -2.441952 -0.781417 0.746233 -2.194453 -1.355496 1.140583 0.060303 2.926785 -1.930735 0.904869 0.730284 -0.623492 -3.461222 -2.089802 -0.301186 -1.783137 -1.700867 1.414695 -2.693651 -0.932066 -1.383736 0.993183 -2.108431 -1.512040 0.150974 2.340211 0.632835 -0.382900 1.500869 0.678026 1.683933 0.206020 0.093143 0.545449 1.105439 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -4.696789 3.777556 4.941610 -2.193892 7.769644 0.726725 1.928594 4.888239 -3.239364 3.889809 -7.795460 -1.656468 -2.447012 -4.812976 0.459472 -4.128305 1.430320 0.384493 -1.883274 1.333222 3.164692 -2.021337 -0.563389 -4.100204 -0.115216 -3.765684 -3.160170 -0.357944 4.222263 0.510255 -0.155525 0.937898 8.479821 1.379991 6.796226 5.111043 2.750362 6.686117 0.226277 -0.492197 -0.485041 5.561860 -3.690951 -5.907936 0.781256 -5.591435 -3.245379 -2.254528 1.338645 -3.922442 -0.499826 4.441434 -0.282375 1.079723 -2.951264 2.541220 4.833304 0.839559 7.353410 2.685528 -4.485281 -0.984437 -4.534310 2.658903 -2.046928 4.585720 -1.429692 -5.497638 -0.172038 0.140794 0.877911 -4.941927 -3.044894 3.216631 0.911648 -3.346657 3.306961 -0.967066 -4.842983 -4.493412 -4.991150 1.266537 -0.330706 5.451748 -0.874924 -1.063973 -0.668215 0.370068 1.136280 -6.889345 -1.721995 6.795799 -4.189196 -0.136644 -3.904033 2.657021 -0.225843 3.199301 -3.569672 -3.375472 2.217168 1.206129 0.462141 -4.854694 -0.054253 -5.729550 2.881337 1.493389 -0.594117 4.020933 2.108945 3.894222 4.772303 4.618876 -5.495303 2.180577 -5.586161 2.238325 -2.847700 -0.152311 -0.011120 1.882404 0.446346 1.213606 4.874529 -6.732999 3.325054 3.176513 -3.569130 -5.133734 0.791585 -6.022651 -6.192217 -1.364151 3.130343 2.737863 0.477490 -3.267024 0.081006 -2.404758 -1.662316 -4.361949 -0.736854 4.868277 -6.952366 -1.760648 -1.002502 -0.978881 -3.034944 4.816105 2.450179 2.482238 6.457728 3.449613 -2.930753 1.841420 -5.579883 1.171670 8.685278 2.327932 -6.496095 3.578285 -3.617527 0.842344 3.622883 1.713480 3.156291 2.311445 -5.121900 -3.250934 0.917501 -1.836274 6.991217 4.866818 3.226341 -4.480986 6.992939 -3.533816 -4.577889 8.083268 3.743695 -6.699468 1.323185 3.580361 -3.629332 -1.223879 2.527678 -4.850494 -1.147830 -3.899752 -0.648568 2.083329 -4.859075 -2.588484 1.641530 -6.941510 7.825534 1.116845 2.190296 -0.086298 -5.566469 -6.132043 9.354857 0.719231 -1.046384 -2.204651 -2.010372 -3.867735 -6.995838 1.317617 1.243718 -2.871452 -3.663743 -5.517258 1.317003 4.586926 -2.689923 3.320695 -5.017433 -2.124970 2.167683 -0.343225 4.326305 -5.191424 -4.634827 -2.049862 -2.174412 4.593657 -4.069638 4.709133 8.161423 -2.526019 6.042909 1.120250 -3.559833 -0.215647 3.913210 -4.756788 5.970401 -1.961516 6.457499 -0.014870 5.269037 -5.133862 -2.376190 -0.177852 -0.801521 -2.367696 4.593405 -4.051673 0.762529 0.700489 -5.248313 -2.285049 2.545288 -0.542690 0.677551 -0.499948 0.549545 -5.281104 -0.537326 -2.604145 0.839835 5.227393 -1.576481 -5.993765 0.138212 0.060348 -1.993027 -1.299393 1.136145 -0.336854 5.165998 -5.573227 -0.821305 0.922490 -0.872505 -5.667191 -6.697957 -0.481226 -4.776909 -4.269345 4.172257 -5.865974 -0.325606 -4.256926 -0.507562 -6.769497 -3.333318 1.471632 7.614542 2.679467 -3.750037 1.958448 0.229428 5.524125 0.816077 1.371718 -0.214048 3.008238 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.554151 0.561663 -0.150730 -0.490486 1.302344 -0.096803 0.064489 0.617306 -0.125577 0.469304 -1.051734 0.004184 -0.030339 -1.084588 0.234027 0.213694 0.187346 0.401966 -0.169484 0.028276 0.426732 -0.358628 0.045311 -0.666103 -0.007435 -0.728655 -0.128633 0.029812 0.242993 0.224340 -0.309607 0.246137 0.799806 0.164556 0.464840 0.585322 0.415527 0.863127 0.329283 0.040631 0.300724 0.432889 -0.218757 -1.112351 0.382285 -0.575372 -0.507891 -0.553972 0.190239 -0.821241 0.529501 0.584749 0.107843 -0.254911 -0.720091 0.160829 0.918450 0.048863 0.771957 0.509380 -0.480439 -0.311981 -0.336008 0.378886 -0.521265 0.392420 0.370678 -0.805046 -0.228886 0.653559 0.315298 -0.396579 -0.595006 -0.065156 0.112154 -0.421922 0.384969 -0.079517 -0.115764 -0.468375 -0.489209 0.272631 -0.295050 0.856839 0.033372 -0.085675 -0.284300 -0.176218 0.410035 -0.550304 -0.501695 0.624478 -0.199779 0.249470 -0.365341 0.534636 0.348836 -0.139644 -0.289175 -0.504791 0.292718 0.240590 0.123402 -0.046261 -0.339158 -0.727701 0.636161 0.370545 -0.174661 0.487142 0.299718 0.177623 0.026864 0.218776 -0.459263 0.176075 -0.965532 0.214619 0.056262 0.057179 -0.199002 -0.101966 0.440733 -0.112001 0.275200 -0.758974 0.896726 0.559675 -0.244069 -0.448609 0.337440 -0.233414 -0.603706 -0.009766 0.427826 0.154078 0.041200 0.132793 0.085603 -0.285564 -0.665794 -0.434944 -0.407708 1.056978 -0.941429 0.014376 -0.162954 -0.281938 -0.263648 0.197463 0.161715 0.167861 0.835331 0.462330 -0.347534 0.366090 -0.689035 0.485563 1.485364 0.654780 -0.699726 0.288343 -0.275993 0.240858 0.321068 0.067704 0.165523 0.284537 -0.525122 -0.184505 0.022886 -0.465251 0.760608 0.487593 0.551867 -0.979696 0.724671 0.097334 -0.030551 1.212777 0.474936 -0.916293 0.404252 0.962049 -0.631367 -0.023807 0.142165 -0.320435 -0.205173 -0.481416 0.266048 0.285038 -0.878322 -0.752879 -0.284081 -0.727787 0.757183 0.219068 0.267475 -0.046405 -0.537761 0.084000 1.233664 0.126990 -0.116580 -0.108479 -0.311840 -0.631613 -0.943802 0.120522 0.379582 -0.580028 -0.276617 -0.548661 -0.210909 0.967070 -0.605264 -0.043144 -0.755682 0.120050 0.353165 0.163895 0.215299 -0.830568 -0.476489 0.070638 -0.045371 0.320577 -0.322098 0.368465 0.737057 -0.499874 0.522833 0.517355 0.247918 0.278757 0.713905 -0.216050 0.738605 -0.204586 0.935855 0.182097 0.751671 -0.491236 -0.076844 -0.191405 -0.221911 -0.327661 0.711008 -0.892905 -0.039527 0.753149 -0.279901 -0.662142 0.621420 0.427023 0.645314 -0.241219 -0.167913 -0.186900 0.021474 -0.232488 0.239679 0.569950 -0.244195 -0.809542 -0.256527 0.619006 -0.454217 -0.380060 0.403308 0.133232 0.916447 -0.660797 0.583871 0.128578 0.033439 -0.940611 -0.736187 0.310932 -0.345082 -0.436007 0.549972 -1.276042 -0.402882 -0.402008 0.458173 -0.990897 0.065923 -0.176601 0.755345 0.058315 -0.000484 0.474792 0.107474 0.282633 -0.066539 0.117588 0.050829 0.592052 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -2.537407 1.589985 1.684728 -1.139164 4.520711 0.029422 0.772126 2.767636 -0.933365 2.001337 -4.284306 -1.042984 -1.062968 -3.011539 0.460734 -1.243569 1.149184 0.571198 -1.194804 0.285133 1.618412 -0.825115 -0.073006 -2.418362 0.013966 -2.204595 -1.599948 -0.168861 1.724343 0.267917 -0.471730 0.671837 4.808431 0.952148 3.309043 2.553519 1.835285 3.670182 0.518124 -0.244654 0.276097 2.781682 -1.699008 -3.326595 0.750285 -2.949114 -1.954014 -1.199590 0.558663 -2.467844 0.478157 2.254474 0.140871 0.367380 -1.762213 1.055815 3.188205 0.175988 3.758034 1.562058 -2.399418 -0.641348 -1.997031 1.696199 -1.437897 2.336053 -0.318768 -3.284204 -0.728293 0.741317 0.999582 -2.791275 -2.312297 1.195309 0.665989 -1.669310 1.735824 -0.150051 -1.294468 -2.320175 -2.770170 0.743471 -0.679656 2.964582 -0.391136 -0.521979 -0.116980 -0.220432 1.084522 -3.271815 -1.254730 3.323363 -2.304720 0.357645 -2.044008 1.131713 -0.192425 1.328286 -1.844064 -2.302561 0.995560 0.589283 0.174621 -1.470419 -0.441054 -2.717789 1.845191 0.898632 -0.406021 2.353206 1.338743 1.804909 1.960103 2.062138 -2.756476 0.567405 -3.059193 1.243109 -1.242811 -0.104333 -0.234837 0.650603 0.775737 0.647680 2.349480 -3.591329 2.274997 1.871077 -1.857247 -2.173458 0.431545 -2.696049 -3.238191 -0.528931 1.829204 1.175378 0.300478 -1.284315 0.248923 -1.230029 -1.460946 -2.360667 -0.957025 2.518116 -3.967447 -0.847253 -0.551055 -0.763757 -1.563071 2.222595 1.079296 1.113913 3.060431 1.685175 -1.921009 1.197291 -2.977509 1.163710 5.265613 1.244117 -3.430262 1.709177 -1.971035 0.759849 2.054263 0.729341 1.368280 0.728483 -2.236350 -1.160812 0.392115 -1.051017 3.669255 2.612683 1.832324 -3.355082 3.280230 -1.277210 -1.710013 5.027068 1.928170 -3.917973 0.925602 2.470041 -2.194285 -0.438165 0.869611 -2.367386 -0.861820 -2.491687 0.138840 1.052241 -2.746270 -1.565862 0.791784 -3.601743 3.829575 0.763558 0.610788 -0.120284 -2.839134 -2.758169 5.580532 0.489619 -0.320951 -0.996386 -1.257915 -1.834706 -4.036313 0.593006 0.642455 -1.688479 -1.444712 -2.843711 0.541228 3.251875 -1.665049 1.429730 -3.393588 -0.572484 1.081283 -0.111989 1.810538 -3.241153 -2.401483 -0.726351 -1.006539 1.996523 -2.287954 1.941271 3.952139 -1.645162 3.001574 0.787344 -1.721373 -0.069829 2.119445 -2.055378 3.001096 -1.300496 3.657749 0.124012 3.025363 -2.617303 -1.029024 -0.454936 -0.338350 -1.707151 2.502931 -2.720173 0.250534 1.154643 -2.211873 -1.864191 1.618473 0.106263 1.143800 -0.541418 -0.341301 -2.413758 0.123111 -0.840169 0.702640 2.661106 -0.702931 -3.333708 -0.181536 0.669669 -1.457813 -1.288363 0.780558 -0.178224 3.122723 -2.950347 0.120509 0.683768 -0.242743 -3.082125 -3.585009 0.028776 -2.463063 -1.947178 2.293264 -3.738222 -0.676329 -2.023196 0.227645 -3.274714 -1.273043 0.465255 3.724439 1.206003 -1.788549 1.347709 0.337264 2.467602 0.337367 0.749937 -0.037773 1.673187 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = -1.461100 1.006742 1.109231 -1.047664 3.221984 0.284003 0.485722 1.696028 0.120896 0.998232 -2.785717 -0.783780 -0.684917 -1.929859 0.420993 -0.964508 0.227581 0.609221 -1.181794 -0.404288 1.288041 -0.006183 0.009876 -1.704639 0.182149 -1.435329 -1.042202 -0.228320 0.321895 1.395709 -0.424252 0.427709 2.065985 0.492050 1.297081 1.309444 1.547401 2.377171 -0.742321 1.914027 0.661927 1.523570 -0.788256 -2.733546 1.058916 -1.989178 -1.402892 -1.151920 0.493694 -2.546393 1.134482 1.401367 0.307273 -0.316265 -0.599963 0.574158 1.761878 0.461484 1.761333 1.446672 -1.939005 -0.347354 -1.536492 0.606329 -0.866175 2.543298 0.615503 -2.495494 -1.419171 0.982321 0.949086 -1.058126 -1.545777 0.026280 0.384178 -0.571503 1.228489 -0.203645 -0.451248 -0.417284 -1.381992 0.440986 -0.340148 1.823216 -0.286837 -0.589863 -0.269413 -0.595949 0.927014 -1.454040 -1.368546 2.274801 -0.824937 0.882323 -2.253273 -0.334985 0.019965 0.454574 -0.904062 -1.194838 0.776904 1.183070 0.140430 -0.366211 -1.839761 -1.914434 1.893041 1.508925 -0.488870 0.726155 -0.093436 0.331822 0.042490 0.725959 -1.401439 1.769715 -1.871379 0.808763 -0.501808 0.398168 -0.332626 -0.101992 0.790881 -0.055852 0.672210 -1.479411 1.957615 1.171295 -1.620250 -0.974202 0.839521 -1.312975 -2.040489 -0.044168 1.082645 0.823647 -0.161407 -0.154292 0.160705 -1.177343 -0.843302 -1.468759 -1.126357 0.881506 -1.780255 -0.489933 -0.513656 -0.650048 -0.974336 1.128302 0.387916 0.347138 1.975858 1.094874 -0.778917 -0.075921 -1.555351 1.052437 3.405120 1.141473 -1.936606 0.408153 -0.648160 1.150605 1.071565 -0.200039 0.201063 1.751923 -0.826175 0.026160 -1.046266 -1.150636 2.068446 2.740864 1.434210 -2.730432 1.134535 -1.596447 -0.482829 2.679635 2.321666 -2.380450 0.090299 1.796789 -1.471001 -0.653974 0.207162 -0.772435 -0.599169 -1.242643 0.442658 0.631314 -2.042663 -1.833190 0.346901 -2.075890 2.112506 0.529114 1.215721 -0.212723 -1.902162 -1.378421 3.063274 0.150493 -0.563447 -0.208327 -0.410147 -1.237662 -2.252777 0.567008 1.115650 -1.061572 -1.405464 -1.328331 0.227419 2.175173 -1.550332 0.331347 -0.653721 -0.353349 0.596003 -0.807347 1.545265 -2.464406 -1.532897 -1.107249 -0.569714 1.587151 -0.855646 0.214647 2.275416 -1.030981 1.900361 1.331106 -0.767926 -0.592427 1.870605 -0.311631 1.650345 -0.603722 1.660031 -0.093651 2.087240 -1.345655 -0.448392 -0.361511 -0.471471 -0.671762 2.328557 -1.840278 0.243151 1.037044 -1.781685 -0.715593 1.716797 0.471819 1.083999 -0.553284 0.172630 -1.412875 0.068127 -0.500765 0.166884 1.783872 -0.752182 -2.386496 -0.921016 0.546996 -1.834717 -1.455956 0.996889 -0.051192 2.362696 -1.499652 0.816315 0.633155 -0.797502 -2.677646 -1.446113 -0.175844 -1.545669 -1.593735 1.160528 -2.050796 -0.665369 -1.176679 0.825381 -1.864160 -1.297430 -0.160459 1.855534 0.821662 -0.002405 1.212782 0.663329 1.519758 0.151073 -0.005545 0.465731 1.334200 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.636653 1.868895 3.424294 -2.090664 7.170127 -1.045919 1.557582 2.325757 0.136138 1.950104 -5.287525 -0.474089 -0.563018 -3.928746 1.129152 -3.135670 1.564387 1.133419 -1.574192 -0.166623 1.311724 0.340522 -0.289546 -2.670410 -0.303019 -5.946654 -2.211228 0.674801 1.282520 0.074680 0.981758 1.766447 5.754936 -0.438399 3.638612 3.288925 3.760108 3.157884 -0.460259 -0.111229 2.736765 1.798898 -1.241981 -3.602362 -0.210764 -1.943882 -4.463682 -1.401108 1.085793 -3.422116 -2.805708 2.647390 0.668828 0.107211 -1.965732 2.962714 3.895219 -0.936430 3.448185 2.287403 -3.352546 0.069225 -2.534515 3.259775 -2.486558 2.166669 -2.527682 -4.683890 -2.224249 3.421189 -0.447717 -1.583404 -2.407044 0.050919 1.913421 -2.142609 2.037172 0.213130 0.203619 -3.213270 -1.886038 1.914030 0.029649 3.249742 0.348717 -0.524646 1.668263 -1.039779 1.263928 -2.989015 -2.192026 3.906118 -2.972411 -1.018353 -2.237657 0.634137 1.889920 -0.027412 -0.580292 -5.424183 1.225675 -0.863126 -0.003083 -0.492674 0.115207 -2.517396 -0.190362 1.631213 0.168537 3.872701 -2.042248 2.185833 1.302178 1.129109 -3.596006 0.665881 -4.166132 2.542296 -3.124598 -0.631303 -1.124345 -0.280941 2.355759 3.145771 2.091584 -3.721985 3.661886 2.269848 -1.654657 -1.191874 0.751663 -1.512459 -3.631319 -0.228551 1.881704 1.300432 0.908823 -0.174251 1.285239 -1.205404 0.828927 -1.385624 -1.753830 2.100824 -4.999706 -0.355145 -0.095318 -0.197815 -1.980169 2.264784 1.706899 1.016277 4.324462 1.776944 -2.428939 3.090561 -4.544273 1.433500 6.339416 0.111519 -2.795540 2.523636 -2.822913 0.441597 1.962910 1.528965 0.008454 0.855047 -3.022614 -1.191973 -0.597849 -1.680282 4.292999 2.346317 0.464900 -6.174720 2.744879 -2.436597 -0.796350 5.920038 3.179617 -5.819954 2.146437 4.619400 -3.857328 -2.281632 1.292557 -3.884954 -2.472261 -3.170183 1.209559 1.583104 -3.159243 -1.583943 1.180455 -3.408808 2.787384 0.851236 -1.084247 0.184415 -1.546147 -5.649192 6.784978 0.174926 0.791246 -0.782183 -1.751459 -0.083673 -5.329957 -0.219296 0.833862 -2.715699 -0.334894 -2.897596 0.252465 4.276647 -3.070413 2.201307 -5.704198 0.448753 1.882328 1.274034 0.876273 -3.135722 -2.326445 -0.864236 -2.068265 -0.346831 -3.945899 1.247436 3.419336 -1.949657 3.815697 -1.851467 -6.452690 0.176237 2.396604 -2.204513 4.172302 -0.059912 4.479776 1.736861 3.238741 -3.620849 -1.297530 -1.270961 -3.364382 -3.489232 3.238147 -4.741103 0.262259 2.734799 -1.485164 -3.716980 2.609190 1.885378 1.240018 -1.261175 0.073230 -3.082891 0.759911 -0.750458 1.619370 2.246222 -1.373611 -4.208175 0.370486 3.660707 -3.229641 -4.329789 0.878481 0.583465 3.795163 -3.306322 1.768734 1.612491 1.299570 -5.115144 -5.504632 1.800118 -4.662128 -2.351337 0.461085 -5.105420 -2.660728 -2.050041 1.448649 -3.062001 -2.803704 2.684279 4.766640 0.483818 -2.025655 1.721485 0.095895 1.284523 -0.484671 1.319225 0.144060 1.317589 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.039672 1.774842 1.025874 -1.598992 4.803761 -0.774391 1.050415 1.333909 -0.208361 1.392008 -4.054396 -0.665805 -0.344309 -3.562559 0.816145 -1.073518 1.279859 1.138721 -0.716801 0.374237 1.181259 -0.796196 -0.123027 -2.268069 -0.058692 -3.413254 -1.297293 0.341287 1.024512 -0.167140 0.079076 1.257384 4.073161 0.351929 2.700482 2.538621 1.732702 2.845545 0.666427 -0.725989 1.470719 1.595436 -0.909214 -3.322151 0.328103 -1.630965 -2.611275 -1.690224 0.661823 -2.253659 -0.443275 2.100118 0.371860 -0.166645 -2.422823 1.122994 3.527033 -0.037493 2.873621 1.716141 -1.827795 0.163855 -1.363122 1.581790 -1.881853 1.078771 -0.526271 -3.092382 -0.868567 2.341022 0.546704 -1.685466 -2.323527 0.024302 1.053288 -1.676656 1.510669 0.035968 -0.537421 -2.695841 -1.829808 1.214635 -0.561402 2.882930 0.209695 -0.373463 0.144510 -0.682663 1.217808 -2.251970 -1.602864 2.427277 -1.540660 -0.277859 -0.809985 1.759906 1.451009 -0.163578 -1.056868 -3.283179 0.970201 -0.460388 0.147221 0.274951 -0.169843 -2.105080 0.653157 1.126220 -0.300959 2.698166 0.398527 1.576888 1.176152 0.841156 -2.596106 0.044279 -3.253249 1.404075 -1.438008 -0.492966 -0.530783 -0.101908 1.431259 1.093219 1.452548 -2.982296 2.819759 2.146855 -0.910755 -1.289448 0.733465 -1.215726 -2.599525 -0.233172 1.482644 0.889533 0.709700 0.003606 0.382183 -0.964147 -0.372246 -0.909018 -1.258860 3.069117 -3.552225 -0.148710 -0.236141 -0.610308 -1.287391 1.276828 0.948397 0.740352 3.212316 1.463128 -2.010122 1.804524 -3.055121 1.247242 5.190124 0.882173 -2.364858 1.658655 -1.458412 0.396888 1.410827 1.012867 0.533521 -0.121915 -2.357124 -1.030624 -0.084232 -1.518716 3.011268 1.226532 0.990084 -3.969563 2.896909 -0.131264 -0.663929 4.714808 1.471822 -3.732336 1.509856 3.547114 -2.799783 -0.981960 0.919503 -2.225720 -1.383817 -2.316938 0.978668 0.896781 -2.694402 -1.650580 -0.073303 -2.735000 2.356556 0.797007 -0.401087 -0.060379 -1.478687 -2.436676 5.267057 0.220626 0.294168 -0.473696 -1.321415 -0.425438 -3.886738 0.046747 0.584777 -2.069850 -0.308333 -2.154896 -0.033168 3.377762 -2.264006 0.999977 -3.500783 0.358437 1.368719 1.055688 0.450949 -2.588949 -1.882548 0.239421 -0.817197 0.097175 -2.126328 1.420883 2.663455 -1.632424 1.914931 0.049925 -2.159740 0.914138 2.043828 -1.550328 3.014243 -0.572157 3.835469 1.098018 2.589201 -2.317499 -0.904246 -0.683026 -1.615084 -2.269828 2.388266 -3.461872 0.130070 2.495275 -0.659827 -2.938934 1.993252 1.312541 1.407949 -0.920777 -0.386829 -1.700133 0.587469 -0.371599 1.253993 1.848344 -0.599116 -3.001803 -0.163086 2.715347 -1.541525 -2.023569 0.896310 0.298307 3.025868 -2.533009 1.543624 0.742668 0.918845 -3.148179 -3.864155 1.657537 -2.686436 -1.411084 1.401148 -4.263088 -1.630473 -1.595052 1.130970 -2.671000 -0.697984 1.002749 3.386177 0.408409 -1.291828 1.204772 0.057888 0.942278 -0.444896 0.783810 -0.033322 1.613019 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.365551 0.157108 -0.244343 -0.272073 1.168030 -0.060980 -0.061861 0.636332 -0.012496 0.418680 -0.633850 0.001202 -0.014756 -0.669966 0.197524 0.306753 0.183347 0.220383 -0.256909 -0.239747 0.227393 -0.020928 0.087006 -0.319296 -0.043506 -0.556826 -0.129345 0.107180 0.215707 0.104597 -0.483134 0.206824 0.609159 -0.079139 0.289099 0.319882 0.560119 0.433378 0.163304 -0.035946 0.370946 0.200124 -0.162867 -0.638408 0.181325 -0.398387 -0.550441 -0.202023 0.231698 -0.542900 0.322497 0.399459 0.081409 -0.133775 -0.340212 0.311218 0.395823 -0.120397 0.556269 0.333916 -0.542736 -0.406207 -0.262426 0.683811 -0.376175 0.380885 -0.044000 -0.745788 -0.426505 0.582810 0.084433 -0.278866 -0.379468 -0.026584 0.135713 -0.292111 0.282004 0.028032 0.503494 -0.329951 -0.398579 0.275072 -0.305047 0.536527 0.072657 -0.029136 -0.107503 -0.150671 0.214701 -0.436014 -0.277857 0.488127 -0.315604 0.247740 -0.408986 0.036697 0.152288 -0.110406 -0.112022 -0.510883 0.150632 0.132101 0.081481 -0.188105 0.105868 -0.434301 0.364654 0.255580 0.121799 0.330752 0.092810 -0.033533 -0.033463 0.188653 -0.139632 -0.034321 -0.641930 0.241247 -0.046157 0.020898 -0.315825 -0.038245 0.532277 0.039878 0.287105 -0.593644 0.591181 0.267772 -0.233427 -0.234284 0.171484 -0.095116 -0.429167 0.074666 0.340565 -0.017085 -0.001408 0.085635 0.260674 -0.137334 -0.628697 -0.110665 -0.340031 0.434667 -0.739667 0.028381 -0.076647 -0.167713 -0.168273 0.257427 0.234336 0.232736 0.617660 0.327088 -0.251900 0.308250 -0.655373 0.459859 0.999452 0.260503 -0.487734 0.279401 -0.471425 0.201940 0.225463 0.142280 0.039478 0.301553 -0.129700 0.119160 0.004619 -0.086663 0.612813 0.293715 0.392241 -0.669092 0.119505 -0.209965 0.126710 0.819279 0.419205 -0.831833 0.395375 0.716055 -0.275726 0.040006 0.141009 -0.444635 -0.239270 -0.473910 0.231939 0.419538 -0.661349 -0.364142 0.031353 -0.440026 0.528299 0.111462 -0.014623 0.105176 -0.416418 0.184465 0.875497 0.121505 0.079410 -0.086854 -0.327858 -0.497441 -0.682064 0.013523 0.300160 -0.390984 -0.097761 -0.418235 -0.274403 0.783885 -0.284022 0.142764 -0.800338 0.342976 0.300700 0.111446 0.176401 -0.432339 -0.261561 -0.014934 -0.249348 0.132284 -0.530161 0.085023 0.294936 -0.394194 0.567012 0.202439 -0.071881 0.061529 0.313624 -0.130753 0.567594 0.056797 0.500344 0.193612 0.529125 -0.373853 0.055931 -0.284131 -0.199127 -0.332005 0.512835 -0.705558 -0.097852 0.563240 -0.207152 -0.619130 0.324260 0.391004 0.453350 -0.162644 -0.296669 -0.142344 -0.038833 -0.238642 0.300882 0.327391 -0.346325 -0.514471 -0.039828 0.444564 -0.524319 -0.350487 0.292097 0.128860 0.684143 -0.496041 0.319389 0.222717 0.235442 -0.808176 -0.500904 0.010598 -0.161759 -0.224383 0.268885 -0.942142 -0.479895 -0.254111 0.321912 -0.639768 -0.035285 -0.002084 0.639693 -0.012102 -0.034677 0.395344 0.137879 0.044060 -0.071768 0.092367 0.119031 0.216439 +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.599684 0.199492 0.178401 -0.419149 1.830855 -0.186088 0.170791 1.086076 0.009733 0.440232 -1.112990 -0.036782 -0.161062 -0.936642 0.379181 -0.063910 0.272493 0.359598 -0.568254 -0.438745 0.489778 0.275496 -0.056662 -0.660397 0.033452 -0.847638 -0.298903 0.029492 0.157846 0.482718 -0.558395 0.473444 0.991002 -0.076503 0.505976 0.601538 1.116744 0.806916 -0.195802 0.425709 0.640823 0.443790 -0.232017 -1.086136 0.302354 -0.672237 -0.876547 -0.247196 0.316102 -1.003138 0.367290 0.613250 0.226868 -0.113210 -0.277162 0.575774 0.573089 -0.123996 0.685041 0.734556 -1.036161 -0.461935 -0.575390 0.988562 -0.513852 1.008752 -0.048262 -1.227808 -0.852078 0.853545 0.199587 -0.447040 -0.631093 -0.190600 0.201621 -0.297119 0.566772 0.122115 0.667681 -0.211395 -0.632701 0.369757 -0.293954 0.810658 -0.019033 -0.226148 -0.098199 -0.386178 0.449836 -0.542564 -0.641387 0.977476 -0.588653 0.378187 -1.205382 -0.353198 0.202198 -0.023109 -0.152891 -0.976168 0.349075 0.319520 0.065714 -0.332904 -0.311677 -0.632251 0.579439 0.594245 0.032352 0.603107 -0.368965 0.042291 -0.183920 0.151930 -0.171390 0.401159 -1.006829 0.513402 -0.297911 0.099823 -0.374663 -0.178501 0.821585 0.143610 0.266157 -0.722220 0.951483 0.456173 -0.557756 -0.240428 0.386609 -0.274311 -0.867894 -0.004125 0.614150 0.251614 -0.071169 0.166269 0.445342 -0.328029 -0.558810 -0.479233 -0.692449 0.244611 -1.087299 -0.138369 -0.207424 -0.222522 -0.417778 0.452857 0.235699 0.253426 0.879399 0.487326 -0.392248 0.317258 -0.975193 0.629720 1.510805 0.350737 -0.758309 0.289932 -0.663058 0.460839 0.385664 0.074436 -0.123913 0.801545 -0.205644 0.246861 -0.321179 -0.362674 0.966805 0.914226 0.533804 -1.290681 0.054141 -0.901118 0.018718 1.203672 1.053514 -1.364765 0.368640 1.084877 -0.402795 -0.303652 0.126944 -0.696357 -0.445158 -0.720380 0.390274 0.538952 -1.074756 -0.586733 0.305000 -0.736975 0.708203 0.216106 0.118323 -0.035534 -0.719345 -0.286920 1.452472 0.107866 0.033946 -0.112061 -0.392557 -0.652599 -1.092948 0.115261 0.510169 -0.441973 -0.410277 -0.577592 -0.242164 1.242863 -0.707932 0.207987 -0.881656 0.300979 0.381370 -0.061900 0.509011 -0.910688 -0.575980 -0.374680 -0.390413 0.374866 -0.810302 -0.114419 0.682946 -0.564105 1.004250 0.370460 -0.649833 -0.259662 0.699035 -0.115154 0.788516 0.074646 0.681387 0.226545 0.886896 -0.777280 -0.147563 -0.406251 -0.341842 -0.576958 0.963879 -1.030800 0.045644 0.630551 -0.544598 -0.678411 0.732611 0.535757 0.574486 -0.335765 -0.179487 -0.380290 -0.006999 -0.448888 0.333318 0.665236 -0.602913 -0.941269 -0.207098 0.568109 -1.171803 -0.701957 0.486194 0.117757 1.175399 -0.689533 0.491385 0.442046 0.087529 -1.424040 -0.838236 -0.072248 -0.559055 -0.568107 0.242637 -1.155123 -0.721197 -0.395597 0.612622 -1.002037 -0.584493 0.079529 0.863782 0.076460 0.100768 0.652935 0.329110 0.294754 -0.035778 0.115550 0.199968 0.371605 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__bit_width(unsigned long) = -0.414384 0.048564 -0.192388 -0.146808 0.782803 0.064189 -0.220945 0.597613 -0.082498 0.427748 -0.491466 -0.171281 -0.224939 -0.475635 0.016700 0.228105 0.144235 0.147811 -0.290053 -0.166840 0.300272 -0.075222 0.105763 -0.219132 -0.031892 -0.079873 -0.238245 0.047778 0.405737 -0.188384 -0.501476 -0.005060 0.709685 -0.063557 0.502953 0.269071 0.421994 0.525841 0.103045 -0.125772 0.018338 0.487427 -0.324545 -0.562540 0.192601 -0.565706 -0.174663 -0.026730 0.326522 -0.205426 0.362324 0.319956 -0.033804 0.033499 -0.210724 0.207503 0.222183 0.103478 0.730659 0.146073 -0.490153 -0.248351 -0.367311 0.554294 -0.356256 0.507039 -0.161215 -0.549198 -0.275517 0.033815 0.102163 -0.547440 -0.327770 0.280801 0.002042 -0.274193 0.304302 -0.064666 0.471510 -0.412314 -0.588577 0.067432 -0.349238 0.376348 -0.149953 -0.034262 -0.176783 0.051497 0.073440 -0.606032 -0.079099 0.391722 -0.438100 0.378812 -0.139946 -0.023087 -0.251956 0.196066 -0.299094 -0.172672 0.068084 0.195387 0.118600 -0.312215 0.479885 -0.294957 0.400199 -0.026682 0.119711 0.143145 0.480529 0.073998 0.262874 0.443275 -0.088891 -0.171477 -0.542331 0.091965 -0.149373 0.103952 -0.109398 0.268794 0.280710 -0.142899 0.495179 -0.630172 0.305059 0.072971 -0.234720 -0.407038 0.133096 -0.370347 -0.477450 -0.028978 0.338447 0.027480 -0.110789 -0.308253 0.159702 -0.091518 -0.750548 -0.120365 -0.112194 0.157606 -0.543952 -0.097012 -0.126810 -0.242418 -0.090280 0.352063 0.230189 0.289112 0.589248 0.388489 -0.247716 0.122303 -0.563539 0.268015 0.678314 -0.017001 -0.613023 0.248224 -0.472458 0.165874 0.421591 0.211479 0.318305 0.340235 0.030282 0.086461 0.167979 0.093540 0.599259 0.101784 0.458999 -0.271018 0.143464 -0.073484 -0.115824 0.872601 0.083437 -0.785871 0.375694 0.241533 0.103603 0.159636 0.119652 -0.336874 -0.059775 -0.466007 0.071970 0.402380 -0.546019 -0.243886 0.186171 -0.529785 0.739979 -0.021800 -0.035665 0.272304 -0.744061 0.126230 0.748079 0.171878 -0.059300 -0.229739 -0.289324 -0.379954 -0.605078 0.130224 0.128286 -0.275070 -0.225801 -0.480895 -0.011224 0.581390 -0.001987 0.260927 -0.694201 0.040399 0.215801 -0.055846 0.378444 -0.319487 -0.288182 -0.109129 -0.241045 0.464287 -0.478278 0.159963 0.549858 -0.382872 0.527734 0.328216 -0.020677 -0.041743 0.255574 -0.347562 0.525421 -0.055629 0.300149 -0.098189 0.409144 -0.360655 0.011835 -0.120941 0.234272 -0.113618 0.296618 -0.337969 -0.071026 0.107176 -0.490424 -0.239455 0.115994 0.060087 0.286580 0.065296 -0.267703 -0.300647 -0.116328 -0.146331 0.061755 0.436285 -0.206947 -0.554527 0.049941 -0.106248 -0.275150 0.025005 0.123926 -0.010904 0.508426 -0.490742 -0.118479 0.145169 0.021183 -0.502480 -0.354365 -0.354360 -0.040744 -0.060326 0.477019 -0.568878 -0.191346 -0.292571 0.043944 -0.472329 0.045402 -0.088540 0.645423 0.333423 -0.211564 0.347982 0.107282 0.416950 0.102278 -0.037901 0.054262 0.223480 +PE-benchmarks/weighted-job-scheduling.cpp__int std::__countl_zero(unsigned long) = -1.371000 -0.244432 -1.312566 -0.462178 2.647281 -0.135263 -0.198106 1.263570 -0.527413 1.193008 -1.604373 -0.904014 -0.943842 -1.989768 0.219613 0.948388 0.894388 0.494990 -0.920106 -0.157389 1.075461 -0.611058 0.385905 -0.843086 0.062559 -0.311029 -0.638017 0.190722 1.293132 -0.748531 -1.424218 0.228191 2.363035 0.004781 1.307694 0.881619 1.048536 1.867921 0.194985 -1.173942 0.039295 1.680586 -0.906021 -1.794852 0.672824 -1.580564 -0.973671 -0.330577 1.072540 -0.564499 0.691140 1.282297 -0.082379 0.026016 -1.122919 0.562507 1.637168 0.105805 2.300174 0.643417 -0.983078 -0.546183 -0.962828 1.423815 -1.131924 1.069541 -0.208953 -1.711919 -0.883880 0.305209 0.471645 -1.778392 -1.611513 0.616685 0.385419 -0.949660 1.081408 0.017679 1.287957 -2.109095 -2.178960 0.030054 -1.276378 1.586981 -0.493460 -0.162007 -0.060679 -0.107995 0.468849 -1.848728 -0.297750 0.894168 -1.209013 0.846802 -0.543494 0.447862 -0.676078 0.380281 -1.617068 -0.993167 0.154567 0.172388 0.444489 -0.499069 1.338719 -0.727172 0.850607 -0.102961 0.613216 0.816054 2.032804 0.111953 0.582876 1.146829 -0.689883 -0.764479 -1.566700 0.312658 -0.337638 0.294017 -0.328853 0.762155 1.266900 -0.605064 1.483643 -2.199720 1.109019 0.552251 -0.666608 -1.174671 0.465195 -1.035690 -1.533090 -0.161999 1.337183 -0.135545 -0.164945 -0.690649 0.755767 -0.164388 -2.147741 0.535364 -0.637326 1.041752 -1.999410 -0.192935 -0.536269 -1.019417 -0.178360 0.874723 0.534890 0.923722 1.849881 1.206724 -1.308926 0.794128 -1.842424 1.114246 2.743070 0.341057 -1.908659 0.725938 -1.277593 0.749739 1.265480 0.702207 1.201267 0.148297 0.077705 0.514358 0.669832 0.165530 1.991670 -0.029507 1.461542 -1.386608 0.554807 0.225366 -0.109990 2.838071 0.426607 -2.351469 1.420254 1.088857 -0.189818 0.443112 0.267141 -0.907033 -0.439560 -1.795116 0.742803 1.172577 -1.793927 -0.764602 0.260273 -1.696755 1.981134 0.024624 -0.340058 1.004532 -2.162228 0.303513 2.417262 0.339705 -0.107378 -0.828323 -1.149872 -1.067825 -2.135191 0.545584 -0.147885 -0.825761 -0.520723 -1.592205 -0.300791 2.273713 -0.021324 0.635530 -2.610473 0.644327 0.703310 0.230744 1.094369 -0.873987 -1.063608 0.267278 -0.624003 0.994694 -1.420431 0.224293 1.499946 -1.559473 0.992712 0.606623 0.221247 0.275748 0.857255 -1.058740 1.684793 -0.052037 1.829183 -0.336182 1.482618 -1.085574 0.078629 -0.277330 0.626390 -0.690098 0.986922 -1.351895 -0.239562 0.973065 -1.006223 -1.521755 0.480987 0.200442 1.070647 0.129806 -1.082916 -0.859523 0.001392 -0.011039 0.532926 1.469441 -0.350868 -1.487018 -0.024654 0.180344 -0.509382 0.193918 0.580109 -0.093717 1.884168 -1.637958 -0.088680 0.238430 0.470097 -1.100840 -1.670743 -0.453619 -0.254049 -0.297068 2.348286 -2.116230 -0.437658 -1.007412 0.426645 -1.332891 0.385831 -0.426559 1.954094 0.731877 -0.663918 1.211432 0.434210 1.004009 -0.227297 -0.076745 0.210664 0.778447 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.657416 2.172521 2.004083 -2.271006 6.023948 -0.605437 1.482485 1.637357 0.275502 1.656702 -5.364835 -1.391718 -0.771351 -4.089384 0.962040 -2.321831 1.005009 1.390535 -1.564814 0.193934 1.805151 -0.477048 -0.118904 -3.141253 -0.038855 -3.793629 -1.887643 0.206572 0.815146 0.859147 0.151202 1.309382 4.686543 0.395693 3.018751 2.994482 2.345212 4.025681 -0.395267 0.784681 2.032008 2.260848 -1.174997 -4.514565 0.696132 -2.495363 -3.304716 -2.226613 0.916541 -3.650629 0.014777 2.585773 0.683352 -0.560613 -2.429166 1.556401 4.072576 0.557803 3.393777 2.424023 -2.658516 0.482795 -2.416883 1.647819 -2.271285 2.831004 -0.289603 -4.227455 -1.881963 2.852727 0.876316 -1.875622 -3.175796 -0.289064 1.327324 -1.728468 2.004020 -0.180115 -1.007303 -2.141917 -2.102593 1.357628 -0.494804 3.446804 -0.079274 -0.687945 0.191484 -0.951967 1.673068 -2.537458 -2.549229 3.642473 -1.700694 0.005172 -2.055891 1.126712 1.494695 -0.115883 -1.453500 -3.524096 1.335808 0.322586 0.188401 0.026971 -1.593247 -2.991459 1.580084 2.442718 -0.755321 2.736187 -0.269594 1.744413 0.853747 0.891372 -3.050210 1.393446 -4.009256 1.577546 -1.902383 -0.180116 -0.653547 -0.194226 1.529988 1.193580 1.467074 -3.229684 3.919274 2.466559 -1.926693 -1.420952 1.282163 -1.480998 -3.478724 -0.203048 1.817620 1.488301 0.473517 0.127971 0.471590 -1.568074 -0.091878 -1.460100 -1.632839 2.665348 -3.645307 -0.419661 -0.479879 -0.813925 -1.696346 1.792881 1.016036 0.547219 4.004827 1.847679 -2.082768 1.119689 -3.490044 1.691059 6.423052 0.871891 -3.099087 1.597803 -1.519852 1.035126 1.721486 0.695835 0.272879 1.430228 -2.576213 -1.018775 -1.373077 -2.323771 3.799259 2.965189 1.395518 -5.282588 3.154211 -1.669042 -0.630036 5.456322 3.116594 -4.583909 0.922894 4.270662 -3.720222 -1.873255 0.947269 -2.203306 -1.477492 -2.644260 1.154865 1.003026 -3.346768 -2.716507 0.057981 -3.550456 3.096728 0.920631 0.038380 -0.462221 -2.274389 -3.532649 6.304336 0.206800 -0.193121 -0.440849 -1.239437 -0.868242 -4.860771 0.394170 1.295351 -2.381620 -1.284211 -2.486429 0.383038 4.033763 -3.290208 0.984061 -2.802356 -0.130979 1.536418 0.594049 1.467466 -3.378474 -2.445412 -0.655407 -1.049610 0.916170 -2.270887 1.131482 3.746461 -1.946886 2.812779 0.677158 -3.098122 0.227786 3.233090 -1.389139 3.634971 -0.806934 3.972047 0.821988 3.362091 -2.650179 -1.127799 -0.691656 -2.145139 -2.353562 3.470796 -4.132238 0.295279 2.546646 -1.613477 -2.678800 3.073835 1.655464 1.709048 -1.168075 0.232581 -2.463132 0.597088 -0.535901 0.959342 2.627792 -0.829886 -4.124941 -0.726935 2.875620 -2.729323 -2.968409 1.290900 0.269671 4.052619 -2.978800 2.089146 1.054176 0.121567 -4.538312 -4.020820 1.345840 -3.576135 -2.220467 1.603465 -4.409717 -1.908757 -2.004634 1.810221 -2.958867 -2.014597 1.088350 3.809585 1.049880 -1.037004 1.739403 0.364557 1.877179 -0.188913 0.397611 0.356223 2.152351 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.639036 1.055143 0.177929 -1.308045 3.690267 -0.333159 0.531212 1.023907 0.292577 1.087938 -3.098512 -1.022819 -0.526562 -2.674596 0.592463 -0.396487 0.727539 0.996667 -0.968681 -0.040980 1.193538 -0.483796 0.150133 -1.833405 0.030038 -1.715258 -1.040678 0.153269 0.471955 0.339969 -0.608214 0.758376 2.707998 0.372524 1.636451 1.630795 1.295249 2.623678 0.072813 0.321131 1.135301 1.424208 -0.702478 -3.001652 0.851708 -1.688522 -1.806151 -1.497332 0.677657 -2.116401 1.008472 1.621212 0.374796 -0.491417 -1.704958 0.550442 2.544705 0.517287 2.217708 1.456204 -1.527126 0.145047 -1.274479 0.864639 -1.479824 1.730924 0.270642 -2.646370 -1.266379 1.737513 1.039913 -1.524148 -2.275321 -0.219833 0.616936 -1.009849 1.246013 -0.057647 0.101304 -1.486941 -1.672181 0.707649 -0.800747 2.210140 -0.109028 -0.377558 -0.349732 -0.612189 1.102589 -1.558960 -1.457704 1.892803 -0.869567 0.610023 -0.985078 0.727120 0.585503 -0.201242 -1.181877 -1.834426 0.718333 0.361084 0.241908 0.427083 -0.788070 -1.731056 1.448661 1.383028 -0.371474 1.249859 0.794089 0.647156 0.376128 0.557287 -1.551974 0.512039 -2.464003 0.765386 -0.631134 -0.004895 -0.477251 0.012263 1.057526 0.052303 0.908608 -2.105258 2.435944 1.453760 -1.170153 -0.917816 0.877887 -0.772053 -2.030609 -0.037000 1.280108 0.603852 0.141239 0.157710 0.274505 -0.931294 -0.941815 -0.587756 -1.135935 1.894799 -2.140544 -0.156247 -0.419658 -0.896267 -0.816475 0.904178 0.527006 0.465382 2.426131 1.261627 -1.374762 0.465246 -2.141981 1.329379 4.054123 0.805395 -2.046463 0.825713 -0.824267 0.874995 1.142309 0.396967 0.370780 0.634605 -1.047227 -0.175795 -0.657894 -1.181273 2.282346 1.529763 1.344351 -3.016209 1.576619 -0.359068 -0.049218 3.535034 1.517298 -2.754578 0.695132 2.631909 -1.839415 -0.653405 0.443171 -1.055906 -0.800189 -1.715345 0.891267 0.768920 -2.312625 -1.842430 -0.169330 -2.154945 1.994531 0.527829 0.038414 -0.050093 -1.761485 -0.956433 3.843787 0.193991 -0.148627 -0.241893 -0.928458 -0.649967 -2.919545 0.351901 0.836949 -1.434339 -0.751522 -1.534447 -0.001834 2.774415 -1.721202 0.344917 -1.615694 0.248065 0.958375 0.208491 0.895680 -2.146112 -1.443282 -0.030786 -0.502574 0.723335 -1.201387 0.480884 2.066834 -1.456575 1.364120 1.098950 -0.620947 0.318717 1.913406 -0.648990 2.174040 -0.543412 2.545766 0.322640 2.134837 -1.374855 -0.397169 -0.449893 -0.658639 -1.284518 2.135489 -2.530505 0.006948 1.853859 -0.864946 -1.836290 1.772763 1.108354 1.371236 -0.633782 -0.351453 -1.120390 0.318749 -0.151205 0.697475 1.651193 -0.504133 -2.452257 -0.603076 1.657629 -1.537681 -1.336665 0.985612 0.137052 2.675460 -1.861439 1.306572 0.552751 0.141129 -2.567123 -2.166690 0.651138 -1.603776 -0.999830 1.530828 -2.957229 -1.212741 -1.191565 1.249941 -1.774365 -0.408418 0.054354 2.227089 0.726070 -0.399313 1.248382 0.394734 0.986041 -0.215964 0.007267 0.308000 1.479054 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = -1.379152 1.058953 0.637575 -1.065558 3.649959 -0.541561 0.656508 1.653478 -0.183148 0.881392 -2.760014 -0.113886 -0.189301 -2.357823 0.714074 -0.418406 0.775655 0.903907 -0.738623 -0.190700 0.964420 -0.055269 -0.193248 -1.628359 0.036330 -2.086911 -0.784169 0.104651 0.410822 0.420595 -0.415115 1.039446 2.554723 0.202325 1.616023 1.686006 1.723761 1.984744 0.189460 0.280112 1.197193 1.032388 -0.542247 -2.469910 0.522334 -1.280718 -1.796403 -1.014174 0.441381 -1.925838 0.449854 1.429080 0.393589 -0.160084 -1.279681 0.868256 2.060281 -0.196290 1.731011 1.472334 -1.803579 -0.268348 -0.992314 1.446347 -1.187438 1.405780 0.005528 -2.376376 -1.041428 1.768962 0.763402 -1.297677 -1.623463 -0.230731 0.463238 -0.922760 1.160977 0.133119 0.315586 -1.308507 -1.323101 0.857125 -0.457787 1.950976 0.080084 -0.414591 -0.302433 -0.695939 0.974866 -1.356106 -1.329377 1.910142 -1.130378 0.362097 -1.659320 0.427185 0.799201 -0.075438 -0.570129 -2.303896 0.806985 0.172686 0.094711 -0.024970 -0.598053 -1.449330 0.880351 1.039398 -0.270762 1.680363 -0.213512 0.774054 0.345932 0.408861 -1.167904 0.529473 -2.332741 1.098162 -0.753127 -0.121119 -0.489509 -0.329427 1.300769 0.489823 0.729034 -1.801788 2.058989 1.377253 -0.923938 -0.790510 0.704227 -0.789355 -1.899124 -0.156896 1.175302 0.702958 0.245962 0.226356 0.443998 -0.781794 -0.679356 -1.192731 -1.231052 1.665993 -2.498540 -0.220624 -0.307415 -0.453562 -0.985179 0.887500 0.549285 0.495317 2.094723 1.028971 -1.138099 0.983666 -2.105240 1.024165 3.541781 1.037668 -1.673199 0.907383 -1.069685 0.599486 0.939136 0.420874 0.035245 0.578078 -1.283096 -0.279163 -0.271103 -1.103348 2.079690 1.436437 0.926396 -2.856509 1.332285 -0.739647 -0.371570 3.142038 1.534059 -2.730749 0.878527 2.504854 -1.308887 -0.708906 0.482554 -1.530654 -1.097002 -1.454852 0.749057 0.726088 -2.143566 -1.303930 0.231882 -1.818663 1.592693 0.589936 0.049022 -0.206809 -1.288827 -1.238315 3.578200 0.166854 0.102853 -0.194118 -0.839010 -0.629630 -2.567833 0.137982 0.829992 -1.194481 -0.559365 -1.368605 -0.198520 2.551883 -1.732254 0.482054 -2.058412 0.271929 0.892024 0.195843 0.598064 -2.298779 -1.357670 -0.275665 -0.500206 0.436793 -1.482853 0.516466 1.842144 -1.153512 1.605990 0.716841 -1.221080 0.122160 1.581808 -0.691147 1.909919 -0.261180 2.342166 0.699542 1.908181 -1.731986 -0.617081 -0.654259 -0.753924 -1.475409 1.933329 -2.361119 0.168172 1.586253 -0.750357 -1.778272 1.592219 1.027589 1.065213 -0.756334 -0.316537 -0.920150 0.223532 -0.632538 0.802411 1.404783 -0.862916 -2.149071 -0.347257 1.659606 -1.758133 -1.292816 0.852893 0.260087 2.372812 -1.646948 1.188005 0.689468 0.363969 -2.667468 -2.404223 0.741943 -1.665494 -1.172847 0.727922 -2.861353 -1.392990 -1.014132 1.065381 -2.168389 -0.753491 0.406400 2.135490 0.220904 -0.343602 1.073598 0.328520 0.691401 -0.211716 0.486131 0.101729 1.140446 +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.409655 0.262558 -0.023683 -0.321730 0.865216 -0.031725 -0.076345 0.354343 0.388087 0.311057 -0.779737 -0.401579 -0.158500 -0.644153 0.149643 0.034685 0.118839 0.314266 -0.292629 -0.189806 0.343174 -0.060682 0.067349 -0.472198 0.037781 -0.347603 -0.285435 0.000934 -0.046550 0.251987 -0.308360 0.190561 0.594029 0.183530 0.346061 0.364657 0.310240 0.749546 0.030052 0.569011 0.300231 0.366359 -0.167716 -0.874955 0.391923 -0.520797 -0.309394 -0.451313 0.164055 -0.656111 0.719389 0.379677 0.115996 -0.166454 -0.381056 -0.013866 0.481984 0.355706 0.540455 0.418524 -0.455612 0.051160 -0.350964 0.124371 -0.429290 0.621753 0.249707 -0.759298 -0.428668 0.439478 0.442794 -0.339148 -0.567882 -0.111139 0.027377 -0.171841 0.334766 -0.009232 0.163729 -0.125627 -0.479066 0.188456 -0.224566 0.544776 -0.060276 -0.131167 -0.290560 -0.179103 0.321244 -0.332407 -0.413592 0.446874 -0.151794 0.397383 -0.205061 0.021176 0.093693 -0.050636 -0.189070 -0.272299 0.194356 0.255323 0.069709 0.316643 -0.431560 -0.451773 0.720391 0.456260 -0.178477 0.053860 0.306875 0.033241 -0.016773 0.117240 -0.276717 0.256737 -0.627956 0.182174 0.007309 0.040861 -0.118975 -0.019904 0.214943 -0.175020 0.151826 -0.445971 0.648377 0.348873 -0.365966 -0.167778 0.280632 -0.182330 -0.524149 0.010057 0.348245 0.171922 -0.051166 0.085190 -0.004239 -0.320888 -0.375144 -0.210886 -0.377007 0.398044 -0.355532 -0.062209 -0.144712 -0.321554 -0.202698 0.188464 0.065624 0.107982 0.580995 0.328014 -0.290604 -0.265906 -0.496690 0.381663 1.021170 0.207489 -0.536173 0.111649 -0.070296 0.334364 0.314321 0.009908 0.047806 0.343153 -0.039773 0.089727 -0.418408 -0.303325 0.548278 0.572721 0.487203 -0.699720 0.249276 -0.081867 0.046742 0.917054 0.445237 -0.636813 -0.003179 0.661353 -0.460788 -0.120277 0.057781 -0.086664 -0.081086 -0.402283 0.214873 0.229867 -0.676176 -0.586238 -0.026515 -0.558002 0.551614 0.139862 0.247181 -0.005455 -0.602205 0.007550 0.965132 0.090613 -0.075524 0.001457 -0.205895 -0.246409 -0.688880 0.122981 0.356547 -0.348046 -0.234108 -0.329617 0.012037 0.737115 -0.449575 -0.016535 -0.073142 0.032783 0.221688 -0.221018 0.269821 -0.595747 -0.370910 -0.053996 -0.132843 0.357954 -0.163998 0.018759 0.515344 -0.347681 0.370751 0.673815 0.161451 -0.014491 0.527239 -0.026109 0.498664 -0.259844 0.364497 0.035774 0.575068 -0.271423 -0.065140 -0.122415 -0.054401 -0.242484 0.623088 -0.611678 0.004085 0.481558 -0.362788 -0.291577 0.495220 0.302358 0.482625 -0.171367 -0.075448 -0.282606 0.073648 -0.011862 0.140580 0.448977 -0.075464 -0.669226 -0.250733 0.323025 -0.502416 -0.436726 0.320016 -0.016384 0.744774 -0.438416 0.358731 0.206428 -0.110120 -0.703293 -0.282366 -0.009109 -0.293264 -0.242783 0.363039 -0.741563 -0.330620 -0.272172 0.376038 -0.394033 0.015958 -0.173632 0.491305 0.279647 0.003345 0.360281 0.188029 0.271004 0.044408 -0.155118 0.119504 0.474693 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job*, Job*, Job*) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__copy_move::__assign_one(Job*, Job*) = -0.375745 0.117923 -0.228880 -0.249543 1.121758 -0.107403 -0.033610 0.650706 -0.007987 0.360145 -0.638019 -0.018704 -0.057411 -0.681595 0.220927 0.291145 0.212360 0.237233 -0.268575 -0.247365 0.278758 -0.002962 0.039497 -0.362258 0.003120 -0.515530 -0.113727 0.065216 0.208965 0.137101 -0.503869 0.248272 0.615092 -0.043461 0.299339 0.342148 0.595998 0.471986 0.114581 -0.010163 0.335809 0.266385 -0.157723 -0.674754 0.211006 -0.411789 -0.492141 -0.184185 0.232944 -0.511794 0.339813 0.398375 0.093055 -0.105409 -0.327054 0.284208 0.413982 -0.075898 0.528006 0.381559 -0.516257 -0.382743 -0.265009 0.647513 -0.380695 0.417739 0.004212 -0.714175 -0.431991 0.534406 0.105248 -0.293631 -0.382646 -0.058893 0.114125 -0.258889 0.324927 0.057990 0.531048 -0.305533 -0.449638 0.230788 -0.310756 0.555608 0.021303 -0.074717 -0.123427 -0.183642 0.260774 -0.400645 -0.310064 0.464064 -0.330478 0.262421 -0.450442 0.006311 0.140797 -0.072580 -0.125133 -0.527644 0.167397 0.144742 0.080236 -0.151646 0.059114 -0.381162 0.384312 0.238233 0.092176 0.354420 0.085538 -0.029586 -0.070832 0.156206 -0.094851 -0.007908 -0.643415 0.245462 -0.053918 0.049209 -0.261169 -0.048810 0.554927 -0.015715 0.243160 -0.561552 0.580349 0.292652 -0.220700 -0.204062 0.211663 -0.134890 -0.471036 0.028523 0.383225 0.032884 -0.026722 0.087959 0.279704 -0.140335 -0.603400 -0.129541 -0.391496 0.382918 -0.741538 -0.014901 -0.118346 -0.195711 -0.180761 0.227019 0.168762 0.214492 0.579536 0.336520 -0.287599 0.287922 -0.630096 0.449715 0.995948 0.242066 -0.492020 0.223825 -0.442911 0.241361 0.250978 0.114318 0.040103 0.323416 -0.096481 0.164022 -0.017737 -0.133241 0.603502 0.310628 0.409642 -0.691058 0.097941 -0.230477 0.077171 0.826246 0.433750 -0.838770 0.381615 0.690179 -0.247584 0.015769 0.092377 -0.405344 -0.214985 -0.503335 0.265574 0.395594 -0.695697 -0.362499 0.053929 -0.452386 0.496402 0.121802 0.031327 0.090216 -0.449120 0.178264 0.897670 0.112037 0.051483 -0.108178 -0.315445 -0.496855 -0.680456 0.052547 0.252446 -0.349801 -0.140275 -0.406238 -0.257041 0.822102 -0.317025 0.101438 -0.759733 0.320658 0.271674 0.085921 0.211632 -0.454194 -0.314016 -0.031787 -0.226422 0.181620 -0.509311 0.030598 0.346859 -0.411110 0.530893 0.243425 -0.078469 0.027933 0.361794 -0.120961 0.528982 0.040713 0.486589 0.158452 0.544131 -0.424239 0.003775 -0.266404 -0.152894 -0.334102 0.518816 -0.669967 -0.051536 0.530619 -0.233945 -0.567071 0.362636 0.356244 0.468802 -0.168473 -0.275074 -0.147776 -0.010256 -0.236975 0.272207 0.379026 -0.321660 -0.531045 -0.088568 0.401818 -0.551126 -0.336701 0.306540 0.085658 0.719356 -0.475074 0.305439 0.227313 0.189035 -0.769125 -0.519877 -0.008252 -0.165573 -0.230283 0.309463 -0.894752 -0.443313 -0.250771 0.348556 -0.666364 -0.056191 -0.051496 0.585565 0.008091 0.010547 0.413733 0.172338 0.090973 -0.060263 0.075171 0.103833 0.239513 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = -1.461100 1.006742 1.109231 -1.047664 3.221984 0.284003 0.485722 1.696028 0.120896 0.998232 -2.785717 -0.783780 -0.684917 -1.929859 0.420993 -0.964508 0.227581 0.609221 -1.181794 -0.404288 1.288041 -0.006183 0.009876 -1.704639 0.182149 -1.435329 -1.042202 -0.228320 0.321895 1.395709 -0.424252 0.427709 2.065985 0.492050 1.297081 1.309444 1.547401 2.377171 -0.742321 1.914027 0.661927 1.523570 -0.788256 -2.733546 1.058916 -1.989178 -1.402892 -1.151920 0.493694 -2.546393 1.134482 1.401367 0.307273 -0.316265 -0.599963 0.574158 1.761878 0.461484 1.761333 1.446672 -1.939005 -0.347354 -1.536492 0.606329 -0.866175 2.543298 0.615503 -2.495494 -1.419171 0.982321 0.949086 -1.058126 -1.545777 0.026280 0.384178 -0.571503 1.228489 -0.203645 -0.451248 -0.417284 -1.381992 0.440986 -0.340148 1.823216 -0.286837 -0.589863 -0.269413 -0.595949 0.927014 -1.454040 -1.368546 2.274801 -0.824937 0.882323 -2.253273 -0.334985 0.019965 0.454574 -0.904062 -1.194838 0.776904 1.183070 0.140430 -0.366211 -1.839761 -1.914434 1.893041 1.508925 -0.488870 0.726155 -0.093436 0.331822 0.042490 0.725959 -1.401439 1.769715 -1.871379 0.808763 -0.501808 0.398168 -0.332626 -0.101992 0.790881 -0.055852 0.672210 -1.479411 1.957615 1.171295 -1.620250 -0.974202 0.839521 -1.312975 -2.040489 -0.044168 1.082645 0.823647 -0.161407 -0.154292 0.160705 -1.177343 -0.843302 -1.468759 -1.126357 0.881506 -1.780255 -0.489933 -0.513656 -0.650048 -0.974336 1.128302 0.387916 0.347138 1.975858 1.094874 -0.778917 -0.075921 -1.555351 1.052437 3.405120 1.141473 -1.936606 0.408153 -0.648160 1.150605 1.071565 -0.200039 0.201063 1.751923 -0.826175 0.026160 -1.046266 -1.150636 2.068446 2.740864 1.434210 -2.730432 1.134535 -1.596447 -0.482829 2.679635 2.321666 -2.380450 0.090299 1.796789 -1.471001 -0.653974 0.207162 -0.772435 -0.599169 -1.242643 0.442658 0.631314 -2.042663 -1.833190 0.346901 -2.075890 2.112506 0.529114 1.215721 -0.212723 -1.902162 -1.378421 3.063274 0.150493 -0.563447 -0.208327 -0.410147 -1.237662 -2.252777 0.567008 1.115650 -1.061572 -1.405464 -1.328331 0.227419 2.175173 -1.550332 0.331347 -0.653721 -0.353349 0.596003 -0.807347 1.545265 -2.464406 -1.532897 -1.107249 -0.569714 1.587151 -0.855646 0.214647 2.275416 -1.030981 1.900361 1.331106 -0.767926 -0.592427 1.870605 -0.311631 1.650345 -0.603722 1.660031 -0.093651 2.087240 -1.345655 -0.448392 -0.361511 -0.471471 -0.671762 2.328557 -1.840278 0.243151 1.037044 -1.781685 -0.715593 1.716797 0.471819 1.083999 -0.553284 0.172630 -1.412875 0.068127 -0.500765 0.166884 1.783872 -0.752182 -2.386496 -0.921016 0.546996 -1.834717 -1.455956 0.996889 -0.051192 2.362696 -1.499652 0.816315 0.633155 -0.797502 -2.677646 -1.446113 -0.175844 -1.545669 -1.593735 1.160528 -2.050796 -0.665369 -1.176679 0.825381 -1.864160 -1.297430 -0.160459 1.855534 0.821662 -0.002405 1.212782 0.663329 1.519758 0.151073 -0.005545 0.465731 1.334200 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.554151 0.561663 -0.150730 -0.490486 1.302344 -0.096803 0.064489 0.617306 -0.125577 0.469304 -1.051734 0.004184 -0.030339 -1.084588 0.234027 0.213694 0.187346 0.401966 -0.169484 0.028276 0.426732 -0.358628 0.045311 -0.666103 -0.007435 -0.728655 -0.128633 0.029812 0.242993 0.224340 -0.309607 0.246137 0.799806 0.164556 0.464840 0.585322 0.415527 0.863127 0.329283 0.040631 0.300724 0.432889 -0.218757 -1.112351 0.382285 -0.575372 -0.507891 -0.553972 0.190239 -0.821241 0.529501 0.584749 0.107843 -0.254911 -0.720091 0.160829 0.918450 0.048863 0.771957 0.509380 -0.480439 -0.311981 -0.336008 0.378886 -0.521265 0.392420 0.370678 -0.805046 -0.228886 0.653559 0.315298 -0.396579 -0.595006 -0.065156 0.112154 -0.421922 0.384969 -0.079517 -0.115764 -0.468375 -0.489209 0.272631 -0.295050 0.856839 0.033372 -0.085675 -0.284300 -0.176218 0.410035 -0.550304 -0.501695 0.624478 -0.199779 0.249470 -0.365341 0.534636 0.348836 -0.139644 -0.289175 -0.504791 0.292718 0.240590 0.123402 -0.046261 -0.339158 -0.727701 0.636161 0.370545 -0.174661 0.487142 0.299718 0.177623 0.026864 0.218776 -0.459263 0.176075 -0.965532 0.214619 0.056262 0.057179 -0.199002 -0.101966 0.440733 -0.112001 0.275200 -0.758974 0.896726 0.559675 -0.244069 -0.448609 0.337440 -0.233414 -0.603706 -0.009766 0.427826 0.154078 0.041200 0.132793 0.085603 -0.285564 -0.665794 -0.434944 -0.407708 1.056978 -0.941429 0.014376 -0.162954 -0.281938 -0.263648 0.197463 0.161715 0.167861 0.835331 0.462330 -0.347534 0.366090 -0.689035 0.485563 1.485364 0.654780 -0.699726 0.288343 -0.275993 0.240858 0.321068 0.067704 0.165523 0.284537 -0.525122 -0.184505 0.022886 -0.465251 0.760608 0.487593 0.551867 -0.979696 0.724671 0.097334 -0.030551 1.212777 0.474936 -0.916293 0.404252 0.962049 -0.631367 -0.023807 0.142165 -0.320435 -0.205173 -0.481416 0.266048 0.285038 -0.878322 -0.752879 -0.284081 -0.727787 0.757183 0.219068 0.267475 -0.046405 -0.537761 0.084000 1.233664 0.126990 -0.116580 -0.108479 -0.311840 -0.631613 -0.943802 0.120522 0.379582 -0.580028 -0.276617 -0.548661 -0.210909 0.967070 -0.605264 -0.043144 -0.755682 0.120050 0.353165 0.163895 0.215299 -0.830568 -0.476489 0.070638 -0.045371 0.320577 -0.322098 0.368465 0.737057 -0.499874 0.522833 0.517355 0.247918 0.278757 0.713905 -0.216050 0.738605 -0.204586 0.935855 0.182097 0.751671 -0.491236 -0.076844 -0.191405 -0.221911 -0.327661 0.711008 -0.892905 -0.039527 0.753149 -0.279901 -0.662142 0.621420 0.427023 0.645314 -0.241219 -0.167913 -0.186900 0.021474 -0.232488 0.239679 0.569950 -0.244195 -0.809542 -0.256527 0.619006 -0.454217 -0.380060 0.403308 0.133232 0.916447 -0.660797 0.583871 0.128578 0.033439 -0.940611 -0.736187 0.310932 -0.345082 -0.436007 0.549972 -1.276042 -0.402882 -0.402008 0.458173 -0.990897 0.065923 -0.176601 0.755345 0.058315 -0.000484 0.474792 0.107474 0.282633 -0.066539 0.117588 0.050829 0.592052 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.764219 0.234799 0.041952 -0.316448 1.275522 -0.518648 0.167097 0.680872 -0.036272 0.487156 -0.837711 -0.509071 -0.464909 -0.883846 0.152715 -0.023766 1.034155 0.174618 -0.418525 -0.510210 0.420687 -0.088533 -0.200838 -0.392011 -0.072086 -1.200834 -0.330510 -0.017449 0.119607 -0.076631 -0.134806 0.106222 1.573457 0.015150 0.927478 0.628901 0.490236 0.509215 0.224887 -0.354553 -0.154223 0.847413 -0.395349 -0.682556 -0.141081 -0.595332 -0.403371 -0.293757 0.264013 -0.492701 -0.506461 0.437894 0.199925 0.385539 -0.413334 0.455092 0.964151 0.038770 1.090687 0.115180 -0.096482 -0.268741 0.043229 0.465147 -0.841113 -0.460043 -0.323523 -0.606665 -0.322226 0.116873 -0.466527 -0.103595 -0.615757 -0.010635 0.032942 -0.823826 0.455366 0.526483 0.263177 -0.983145 -0.534163 0.098123 -0.399265 0.731334 -0.243029 -0.456138 0.291132 -0.092967 0.244143 -0.714117 -0.094458 0.433528 -0.437326 -0.020854 0.049511 0.165284 0.250775 0.129588 -0.295019 -0.938601 -0.124655 -0.512819 0.534382 -0.171976 0.370822 -0.158815 -0.010577 -0.327323 0.100003 0.949045 0.413395 0.630190 0.170304 0.285201 -1.091134 0.017385 -1.131412 0.495267 -0.481071 -0.274799 0.038067 0.095661 0.365950 0.165453 0.621239 -1.085753 0.715017 0.334491 -0.026578 -0.424445 0.147439 -0.316824 -0.782569 -0.065271 0.362933 -0.092697 -0.097239 -0.615019 0.426123 -0.375157 -0.535507 -0.072369 -0.247079 0.626616 -1.321680 -0.073562 -0.550948 0.000476 -0.195824 0.378371 -0.214631 0.030909 0.718538 0.527607 -0.689742 0.721645 -0.901455 -0.158017 0.918458 0.023737 -0.777618 0.515541 -0.532690 0.178550 0.844440 0.260845 0.191640 0.128310 -0.111432 0.163346 0.225489 0.048819 0.865464 0.273889 0.651713 -1.532834 0.402179 -0.022950 -0.009523 1.196158 0.525693 -1.223840 0.696790 0.362954 -0.857256 0.384512 -0.037940 -0.685451 -0.423356 -1.013713 0.138989 0.376451 -0.502787 -0.153760 0.039041 -0.793643 0.556780 0.138555 -0.142450 0.710707 -1.009952 -0.369332 0.954854 0.029339 0.210911 0.032366 -0.465161 -0.588905 -1.110306 0.053624 -0.206129 -0.999077 -0.174745 -0.941405 0.410815 0.662524 0.048103 0.336933 -1.618985 0.559875 0.632305 0.520527 -0.070401 -0.383799 -0.495959 -0.008215 -0.286198 0.333215 -0.641417 0.405304 0.594251 -0.314047 0.653902 -0.582533 -0.885009 0.220823 0.266237 -0.611500 0.452237 -0.227923 0.923707 0.128356 0.789716 -0.234908 -0.089856 -0.353252 -0.657537 -0.721899 0.659871 -1.073884 -0.045182 0.703735 -0.393675 -0.751622 0.467219 -0.247393 0.685278 -0.041108 -0.308301 -0.970997 0.347614 -0.108039 0.582811 0.662304 0.526201 -1.014447 -0.043086 0.079459 -0.254197 -0.890833 -0.349346 -0.466450 0.192703 -0.302040 -0.329752 0.252863 0.470988 -0.248379 -1.095023 0.219378 -0.679461 -0.636514 0.594949 -0.889464 -0.122249 -0.110079 -0.177588 -0.778473 -0.366231 -0.016713 0.817472 0.028143 -0.085476 0.391937 0.212078 0.077143 -0.124889 -0.227953 0.101210 0.339563 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -1.526485 2.240581 2.544165 -0.914094 1.363318 0.740698 0.086789 1.116619 -0.797822 1.153052 -2.593925 -0.610689 -0.892311 -1.290456 -0.255906 -2.114827 -0.072425 0.193228 -0.291028 0.867439 1.164788 -1.124516 -0.330398 -1.444708 -0.082294 -0.801602 -1.238731 -0.405524 1.123163 0.282185 0.565566 -0.182141 2.400690 0.764376 2.244337 1.780577 0.124754 2.538180 0.164513 0.970571 -0.839658 2.055603 -1.363489 -2.071291 0.653681 -2.130832 0.189339 -0.809743 0.281833 -1.078760 0.310068 1.227345 -0.183856 0.319565 -1.026723 0.235834 1.276932 1.358938 2.445724 0.616514 -1.093564 0.041799 -1.631917 -0.625659 -0.763207 1.649739 0.120840 -1.089137 0.741455 -0.785050 0.667111 -1.653531 -0.767880 1.299298 -0.390607 -1.085379 0.951233 -0.747382 -3.237604 -0.811205 -1.276932 0.231209 0.473201 1.441492 -0.491227 -0.421139 -0.984516 0.597863 0.225354 -2.217346 -0.531108 2.054742 -0.796594 0.407018 -0.384746 1.351576 -0.122113 1.269399 -1.056331 0.167001 0.837141 0.837189 0.275150 -1.553877 -0.711010 -2.286271 1.674493 0.262507 -1.063908 0.508317 0.918668 1.743367 1.911474 1.694342 -2.149608 1.128724 -1.962937 0.172606 -0.690480 -0.014606 0.529229 0.736614 -1.230050 -0.146241 1.445801 -1.826836 0.967975 0.871358 -1.166141 -2.211918 0.465236 -2.234839 -1.893656 -0.540814 0.612420 1.267667 -0.030527 -1.432045 -0.875130 -1.169363 -0.209350 -2.283790 0.335240 2.115819 -1.316096 -0.648782 -0.428259 -0.359709 -0.962522 1.317988 0.601775 0.483907 2.117559 1.139053 -0.437984 -0.217763 -1.164205 -0.388842 2.075050 1.142952 -2.179617 0.935204 -0.202188 0.071133 1.245987 0.238596 1.219361 1.382308 -1.974488 -1.989667 -0.065378 -0.976897 1.852958 1.623022 1.195809 -0.663951 3.148303 -0.604601 -1.997712 2.399227 0.704630 -1.422599 -0.194438 0.509079 -0.899626 -0.379698 0.877692 -0.793543 0.328337 -0.492181 -0.890060 0.187149 -1.333693 -1.358469 0.024412 -2.426385 2.904732 0.314011 1.672484 -0.065061 -2.246072 -2.573226 2.425458 0.136124 -0.937410 -0.567393 -0.134590 -0.986037 -1.867118 0.604873 0.783895 -1.162276 -1.642891 -1.629435 1.164359 0.578035 -0.947771 0.744122 -0.359034 -1.940069 0.569083 -0.713525 1.591058 -1.667566 -1.483611 -0.914990 -0.185875 2.347355 -0.290555 2.216860 3.373893 -0.389449 1.773781 1.183216 -0.229949 0.008394 1.650875 -1.587312 1.700187 -1.245091 1.677020 -0.362633 1.477656 -1.348663 -0.947993 0.556726 0.096735 0.083264 1.347146 -0.672897 0.357677 -0.445867 -2.191384 0.569722 0.929821 -0.673388 -0.015851 0.028546 1.075220 -1.739296 -0.362518 -0.499706 -0.393168 1.835444 0.092503 -2.148317 -0.251794 -0.749409 -0.085413 0.149568 0.109540 -0.332615 1.117213 -1.528839 -0.531636 -0.014032 -1.369603 -1.532228 -1.501767 -0.444462 -1.433866 -1.386325 1.239498 -1.391293 0.587836 -1.303727 -0.545995 -1.805708 -0.794497 0.133949 2.156320 1.522710 -1.184665 0.342046 -0.146133 2.484766 0.694914 -0.031849 -0.281563 1.533539 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.300006 0.172108 0.032652 -0.228785 0.569967 -0.158249 -0.018228 0.519788 0.286078 0.446345 -0.340536 -0.018462 -0.106281 -0.200973 0.042670 0.229206 0.243802 0.187480 -0.215314 -0.255901 0.069082 0.060232 -0.109199 -0.066126 -0.036675 -0.439018 -0.195863 0.043543 0.103160 0.008340 -0.145053 0.006245 0.625486 -0.185845 0.414666 0.290699 0.377254 0.188256 0.192433 0.045285 -0.002706 0.317367 -0.190718 -0.290993 0.118018 -0.202969 -0.184102 -0.085920 0.195428 -0.405732 0.203714 0.096525 0.051780 0.089179 -0.081361 0.329095 0.130116 -0.123136 0.546458 0.084186 -0.257878 -0.263947 -0.013572 0.603441 -0.202891 0.006605 -0.111455 -0.345914 -0.057127 0.093904 -0.091237 -0.059565 -0.257807 0.119399 -0.191709 -0.381395 0.202561 0.077759 0.412363 -0.279816 -0.213790 0.111040 -0.082063 0.249219 -0.101560 -0.188178 -0.056177 -0.011192 -0.073700 -0.298586 0.010375 0.191016 -0.164843 0.237987 -0.060073 -0.120730 -0.078856 0.033316 -0.114310 -0.205158 -0.002120 -0.062241 0.282799 -0.079065 0.201516 -0.053843 0.119100 0.060563 0.099300 0.151966 0.293324 0.074972 0.178366 0.235398 -0.223762 -0.034172 -0.512043 0.286542 0.103274 -0.087144 -0.021813 0.112226 0.173323 0.007068 0.374218 -0.431182 0.272197 -0.037883 -0.145185 -0.130661 0.037944 -0.114184 -0.347591 -0.030295 0.089061 0.006922 -0.124608 -0.209977 0.176513 -0.185883 -0.404767 -0.268333 -0.012724 0.125785 -0.476350 -0.011201 -0.248676 0.054440 -0.041823 0.277186 0.058401 0.099482 0.252221 0.284536 -0.017280 0.100427 -0.518556 -0.058823 0.245214 0.120669 -0.346328 0.279545 -0.259576 0.138890 0.235325 0.231580 -0.012414 0.370849 0.052203 -0.045215 0.102791 0.096986 0.369717 0.234684 0.285088 -0.442869 0.003199 -0.258562 -0.025039 0.430429 0.417318 -0.401518 0.165254 0.095698 0.065277 0.193403 0.179938 -0.269185 -0.284366 -0.372970 0.017834 0.276717 -0.207700 0.016951 0.038630 -0.308277 0.269908 0.011522 -0.131721 0.390679 -0.531812 0.067497 0.249844 0.020024 0.039117 0.120129 -0.180047 -0.364518 -0.418184 0.052617 0.190844 -0.301720 -0.220881 -0.413589 0.172449 0.213493 0.098298 0.240670 -0.386441 0.125879 0.360161 -0.033456 0.129316 -0.352600 -0.154100 -0.127411 -0.120448 0.286417 -0.256016 0.230704 0.311534 -0.035711 0.261205 0.288645 -0.110947 0.007179 0.121628 -0.314001 0.379223 -0.090840 -0.075812 0.029272 0.228702 0.040821 0.083522 -0.183837 -0.099333 -0.220762 0.260922 -0.409736 -0.034551 0.201642 -0.390181 -0.112571 0.209247 -0.127904 0.128475 0.072104 -0.045672 -0.321199 -0.174787 -0.306391 0.178807 0.294887 0.134940 -0.368275 0.093958 -0.125747 -0.282214 -0.304850 -0.159827 -0.166402 0.114418 -0.179686 -0.117810 0.147372 0.125311 -0.381425 -0.235503 -0.187564 -0.109116 -0.363746 0.091516 -0.282304 -0.287063 -0.002861 -0.069030 -0.421120 -0.194162 0.009509 0.306064 0.250542 -0.102788 0.136282 0.057569 0.070165 0.074980 -0.209855 0.203423 0.126678 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -2.476591 0.725923 1.447649 -1.575926 5.648211 0.456394 0.695835 2.702592 0.217401 2.122999 -4.069024 -1.531281 -1.438250 -2.130224 0.479265 -1.497916 0.649979 0.208848 -2.654920 -1.958095 1.892785 0.660135 -0.201646 -1.871584 0.002892 -2.002532 -1.955560 -0.190115 0.516918 1.635542 -1.310457 0.273007 3.950781 -0.151101 2.399449 1.884037 2.972048 3.143951 -1.883111 3.403709 0.893024 2.633308 -1.549962 -3.427834 0.974849 -3.125133 -2.520859 -1.180075 1.264953 -3.756134 1.733451 2.179053 0.467529 0.066987 -0.103823 2.045394 2.080241 0.039043 3.435745 1.663082 -3.549380 -1.148039 -2.478185 2.788749 -1.555685 3.952898 0.043855 -4.111579 -2.684637 1.024677 0.761867 -1.898286 -2.758645 0.457038 0.453252 -1.477952 1.808867 -0.096357 0.587981 -0.849683 -2.084695 0.863114 -0.206279 2.399933 -0.630705 -1.086333 0.195648 -0.596353 0.636904 -2.794714 -1.546474 4.064222 -2.150174 1.399056 -4.587318 -1.760075 -1.204456 1.124712 -1.525641 -2.059014 0.752488 1.615139 0.728944 -2.075622 -1.995933 -2.882310 2.644539 2.042163 -0.249061 0.754906 0.085524 0.325787 0.256415 1.650136 -2.432505 3.021792 -3.179052 1.621136 -0.635056 0.455719 -0.710505 0.215020 1.651290 0.168483 1.625998 -2.743463 2.764496 0.777132 -3.470407 -2.154181 0.647627 -2.151498 -3.589303 0.110604 1.426246 0.887052 -0.804986 -1.159735 1.015875 -1.887610 -1.707984 -2.058952 -1.064109 -0.204274 -2.891546 -0.919786 -1.012845 -0.447390 -1.703246 2.790543 0.741198 0.709941 3.537656 1.899004 -0.780750 0.040902 -3.165689 1.164821 4.376735 1.494220 -3.532872 1.170178 -2.422808 1.947019 2.060198 0.282922 0.036454 3.321091 -0.228620 1.213066 -1.140782 -0.667559 3.730324 4.090511 2.390535 -4.004623 0.537793 -3.479943 -0.583425 4.065484 4.841037 -4.249549 0.188522 1.954412 -1.174380 -0.670464 0.967953 -2.021982 -1.705651 -2.285295 0.511208 1.551728 -2.483798 -1.855054 1.344380 -3.238700 3.627155 0.401058 1.350579 0.610781 -4.207727 -2.577184 3.931998 0.183834 -0.454304 -0.046296 -0.779505 -2.434150 -3.613619 0.822133 2.009579 -1.574442 -2.462223 -2.721150 0.909657 3.178906 -1.420752 1.814723 -1.491494 -0.089224 1.453448 -0.946925 2.553011 -3.352320 -2.162714 -2.420809 -1.267369 2.900697 -2.239000 0.181348 3.351712 -1.390262 3.727286 0.985392 -2.399974 -1.704655 2.189167 -0.942849 2.536503 -0.333501 1.735673 -0.445159 3.117263 -1.616593 -0.495903 -0.867631 -0.734522 -1.142756 3.644819 -2.849936 0.257998 0.865400 -3.695454 -0.878019 2.353127 0.216670 1.252203 -0.404744 0.168194 -2.945027 -0.182001 -1.314118 0.544440 2.829378 -0.882709 -3.568878 -0.737446 -0.157083 -3.308449 -1.841109 0.711793 -0.458109 3.312545 -2.137518 -0.340957 1.275546 -1.023337 -4.271623 -2.537993 -1.589713 -2.790941 -2.435409 1.643075 -2.469398 -1.317264 -1.601259 0.474166 -2.964246 -3.086785 0.223840 3.397423 1.412861 0.050660 1.832541 1.234790 2.424330 0.156194 -0.606247 1.841798 1.360395 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -7.411282 5.808603 5.383320 -3.569882 10.376359 1.600083 2.877968 3.444866 -4.090678 8.139499 -10.684635 -3.471044 -4.384565 -7.083003 -0.681000 -6.119941 2.656567 -1.319861 -2.307780 1.811819 4.219857 -5.631593 -0.723814 -4.449920 -1.245633 -9.723552 -4.350423 0.203296 8.140722 -2.221364 -0.067723 -0.356288 14.067315 1.063561 10.891971 7.985013 2.998642 8.930214 1.064311 -2.120432 -3.056998 8.958860 -6.481189 -6.276826 -0.749078 -7.600852 -4.896015 -3.706086 2.998356 -3.286253 -1.642921 7.253949 -1.405040 2.517284 -5.751698 5.148161 7.967927 0.699931 13.523624 1.522456 -3.129683 -1.899957 -6.257989 5.236198 -4.314386 1.507085 -2.782806 -5.767913 2.328687 -2.039883 -1.118218 -5.334847 -3.869226 6.888724 2.454674 -8.136387 3.692480 -2.212135 -10.482208 -10.583276 -6.840416 1.998212 1.379331 8.362241 -0.711204 -0.865805 0.741942 2.947242 -0.534010 -12.484407 -0.024932 9.749844 -5.851748 -2.076043 -3.397337 7.699012 -0.501562 4.847504 -6.323396 -3.891790 1.914237 -0.614729 2.269658 -9.181541 2.049271 -9.073605 2.506641 -0.737420 -0.465476 4.491033 5.544900 5.386713 8.787561 8.928757 -11.164234 2.181939 -8.856908 2.798803 -1.511462 -1.155719 0.586873 3.976041 -1.050420 2.030771 9.658847 -12.210738 3.796352 3.300787 -4.984209 -10.358042 -1.021337 -9.223941 -8.584306 -1.890326 3.404891 2.721510 1.058556 -7.425993 0.658249 -3.138441 -2.311773 -4.006522 2.572232 9.613840 -9.782794 -1.633619 -1.617892 -0.610886 -4.669675 8.158604 4.191624 4.099188 11.351590 5.940043 -3.403132 4.510158 -8.905457 -0.898023 11.186478 4.435983 -10.270123 7.456302 -6.751634 -0.177070 5.534891 5.012354 6.245826 0.647365 -8.462859 -4.999769 3.785829 -0.867833 11.343647 2.638396 4.175758 -4.209371 12.297907 -2.172606 -7.266607 10.614110 6.479424 -8.943185 2.864921 3.248310 -6.305061 -0.372337 6.102592 -7.608259 -1.392946 -6.302567 -1.177725 3.333936 -4.409465 -1.170947 1.015137 -10.618455 12.672729 0.721062 3.917693 3.738338 -9.254148 -10.867114 10.527185 -1.255090 -0.967247 -3.525126 -3.502743 -7.058755 -10.433313 1.711411 0.043875 -6.318665 -4.598036 -10.237717 3.530793 5.424306 -1.078515 7.154628 -9.970349 -3.225679 4.540383 2.303476 5.357323 -3.419692 -5.971054 -1.433316 -1.910130 6.486405 -5.906130 10.263920 12.261910 -3.158461 7.927839 -3.927352 -5.039434 1.853468 4.240585 -10.011234 9.509662 -2.405433 7.537047 -0.360806 6.835356 -5.661156 -2.820681 0.629709 -2.109624 -2.803050 4.962367 -5.713794 0.261448 0.594009 -8.398071 -3.623413 2.019993 -2.449417 -0.051784 0.887489 1.708504 -8.984612 -0.703127 -4.939431 1.957528 7.412518 1.700958 -6.584161 2.487287 -0.944412 0.908085 0.850236 -0.735333 -1.171096 5.414960 -8.316289 -4.428577 0.151718 0.109284 -5.496218 -12.838216 -0.673585 -8.077965 -7.185681 7.972125 -9.543388 1.047055 -6.701098 -3.529618 -10.391217 -3.963496 3.261658 13.159814 4.419191 -6.737434 1.845149 -0.939960 7.895900 -0.071201 1.113768 1.810289 4.102609 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -1.480751 0.944529 -0.198830 -0.911935 2.003437 -1.083894 0.477291 1.140628 0.900256 0.296352 -2.531044 -1.259305 -0.672705 -2.169582 0.556602 0.215323 0.905677 1.860748 -0.656008 0.040549 1.590782 -0.150707 -0.474375 -1.864609 0.397983 0.101796 -0.813173 -0.341949 -0.810439 0.318537 -0.734618 1.224597 2.444604 1.367771 2.032880 1.893621 0.527218 3.157555 0.487386 1.870947 0.406128 1.762158 -0.463053 -3.366439 1.631496 -1.475039 -0.125829 -1.875230 0.235679 -1.609181 3.827679 1.202719 0.439120 0.025540 -1.536936 -0.951351 2.054764 1.534017 1.609417 1.695892 -1.322287 1.579955 -0.666126 -0.268616 -1.319422 1.790953 1.871777 -1.990538 -0.551819 0.715264 3.340086 -2.560685 -2.645168 -0.507377 -0.645981 -0.422058 1.425064 0.249838 0.347680 -0.962725 -2.217278 0.191805 -0.876384 1.862983 -0.754705 -0.855648 -2.487124 -0.727426 1.281921 -0.799936 -1.435080 1.144781 -0.501001 1.803717 -1.042968 0.418163 0.189624 0.185520 -1.205944 -1.190050 0.914327 0.466437 0.370054 2.501538 -1.900077 -0.565247 2.220260 1.158341 -1.324282 0.660358 1.688446 1.025430 0.608104 0.040668 -0.392357 1.047990 -2.420915 0.901805 0.033702 0.023507 0.644559 -0.080775 0.359143 -1.322300 0.156697 -1.197939 1.821836 1.404053 -0.972020 -0.671466 1.248774 -0.961864 -1.996595 -0.859506 1.532279 1.216768 -0.311525 0.089148 -0.512131 -1.137834 -0.832482 -1.807917 -1.432328 1.577407 -0.929706 -0.529020 -0.948593 -1.402150 -0.766205 0.277863 -0.414285 0.250244 1.589239 1.217121 -1.220382 -1.635264 -1.500219 0.465756 2.932587 1.363030 -1.877073 0.150790 0.625338 0.996147 1.426616 0.194248 0.321712 0.032620 -0.237670 -0.007844 -1.184355 -1.478246 1.609286 1.583294 1.562430 -2.075766 1.167683 0.783542 -0.836127 3.673998 0.691517 -1.659800 -0.692226 1.693647 -0.331203 -0.795728 0.009146 0.036164 -0.616573 -1.001750 0.951270 0.021564 -2.285427 -1.836431 0.105652 -2.041349 1.399011 0.457633 0.568060 -0.478968 -2.692602 0.120709 3.731061 0.183903 -0.567054 0.211892 -0.619318 0.613941 -2.219567 0.749822 0.797878 -0.312219 -1.115345 -0.922771 0.672029 2.485738 -1.751593 -0.545841 0.964581 -0.801271 0.636696 -1.414304 0.595370 -3.512463 -1.623146 0.035193 0.754645 1.520239 0.354417 0.058526 2.637161 -1.164985 -0.272775 4.105981 1.662107 0.003039 2.236350 -0.490515 1.309776 -1.507811 1.573813 -0.079192 1.668887 -1.176074 -1.103710 -0.024757 1.647643 -0.994634 1.880199 -1.411684 0.530747 0.916911 -1.098529 -0.368788 1.839226 0.554727 1.049047 -0.454310 -0.230379 -0.780306 0.424955 -0.153720 0.203859 1.961309 0.272182 -2.331606 -0.903809 0.525396 -1.389406 0.075579 0.806561 -0.300200 2.503237 -1.237844 1.000895 0.385373 -0.675908 -1.509076 -1.443892 0.516450 -1.247690 -0.810939 1.448087 -1.876734 -0.918289 -0.869939 1.303422 -1.653335 0.498761 -0.956978 1.192273 1.334134 0.266483 0.992270 0.534222 1.477352 0.250718 -0.690761 -0.075666 2.450755 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.104598 4.768973 4.482809 -2.774127 8.840154 1.787394 3.182324 4.154286 -4.195521 5.745927 -8.315984 -1.389516 -1.945033 -5.625708 -0.346971 -4.722827 0.322775 -0.676855 -1.915692 1.547912 2.856889 -3.156735 -0.062351 -3.960718 -1.135923 -6.371017 -2.835848 0.054485 6.224853 -0.349959 0.522239 -0.572932 8.788119 0.370350 7.801479 5.286085 2.667984 5.949695 -0.231110 -0.696360 -1.011077 5.560229 -4.470525 -5.467841 -0.980544 -5.523014 -4.624578 -2.488510 1.762775 -4.185824 -1.157885 4.994300 -0.696758 1.112975 -3.070331 4.233509 5.394368 -0.737778 8.830272 1.705076 -4.561438 -1.373512 -5.436845 5.009772 -1.756483 3.482914 -1.738146 -5.271558 0.503460 -0.263047 -1.669471 -3.479670 -1.902861 4.977870 2.686103 -5.084497 2.551542 -2.399061 -7.779439 -6.039060 -3.935255 1.948433 1.210846 5.778635 0.092088 -0.137354 1.384996 1.703947 -0.049394 -8.910130 -1.123983 8.323954 -4.658450 -1.676601 -4.176624 4.235053 -0.441898 3.712176 -3.972824 -3.140775 1.949715 1.490944 0.595449 -7.871614 0.335776 -7.609467 1.929987 1.070048 -0.568149 3.685543 2.051776 3.316608 5.405966 6.524090 -6.889304 2.783768 -5.777050 2.078931 -2.330725 0.193190 -0.589353 1.963066 0.424651 2.292335 6.561196 -8.046123 3.303137 2.765242 -3.511847 -7.356395 -0.516209 -6.814127 -6.092659 -0.765353 2.129477 2.410373 1.198043 -4.471170 0.311252 -1.983233 -2.136264 -3.980985 1.463186 5.860554 -7.634360 -1.280533 -0.324054 0.285129 -3.988228 6.375804 4.041655 2.737325 7.995178 3.775006 -1.773064 3.204589 -5.773442 0.545505 9.410291 2.438487 -6.991346 5.031840 -5.780576 0.035798 3.174003 2.417246 3.819382 2.155864 -7.465459 -3.945955 3.150332 -1.467218 8.251275 3.494161 2.575128 -3.843722 9.063230 -3.523951 -5.224111 7.884580 5.652989 -8.028146 2.698865 3.192430 -4.769785 -0.873510 4.423949 -5.974963 -1.289603 -4.026176 -1.028711 2.027551 -3.597690 -1.822521 1.263347 -7.595607 9.637087 0.901224 2.859212 0.985099 -4.976073 -7.314544 8.570993 0.169779 -1.305886 -2.804127 -1.794812 -6.365561 -7.373994 1.050761 1.211063 -4.115217 -3.730246 -6.743630 1.818286 4.180527 -2.247877 5.085958 -6.279695 -2.732275 2.432750 1.201145 4.752411 -3.688395 -4.167559 -2.714909 -1.829393 4.551002 -4.847891 6.755162 9.155222 -2.182122 7.802310 -1.491076 -5.151770 0.172896 3.776001 -6.143871 7.048329 -1.320290 5.265658 -0.086674 5.291240 -5.033816 -1.811601 -0.114851 -2.168013 -1.602683 4.049278 -4.220602 0.167674 0.075211 -6.481446 -2.671964 1.960146 -0.937497 0.487369 -0.092952 1.224535 -6.209640 -1.013673 -4.954375 0.628356 5.131107 -1.244651 -5.647200 1.372693 -0.005729 -0.777801 -0.562721 0.459695 0.201728 4.702789 -6.376952 -1.654338 0.555719 -0.388666 -6.415870 -8.225020 -0.527958 -6.138872 -5.733701 4.175416 -6.565649 0.415732 -5.101441 -1.836530 -8.649912 -4.614408 2.730031 9.697750 2.566511 -4.485984 1.798440 -0.690734 6.258399 0.851313 2.227047 0.902490 2.703920 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.973044 0.015247 -0.238624 -0.433763 2.199713 -0.016080 0.042516 1.246666 0.199707 0.671735 -1.475132 -0.724566 -0.644518 -1.338108 0.349411 0.250338 0.481330 0.507710 -0.897289 -0.561443 0.919456 0.072284 0.123758 -0.891391 0.186250 -0.462207 -0.595977 -0.057870 0.322327 0.512912 -1.036634 0.419179 1.472576 0.260522 0.809592 0.687288 1.195104 1.574645 -0.322801 0.721621 0.390311 1.102902 -0.516752 -1.809445 0.887703 -1.349317 -0.835886 -0.580029 0.568786 -1.255037 1.231327 0.916998 0.175505 -0.092206 -0.446953 0.220748 1.045834 0.334583 1.277018 0.928385 -1.223359 -0.371318 -0.840563 0.686518 -0.699874 1.580160 0.325079 -1.723693 -1.184539 0.587866 0.822053 -1.090861 -1.237835 -0.000374 0.182259 -0.322446 0.926457 0.119624 0.952841 -0.635294 -1.447055 0.139653 -0.771081 1.237573 -0.346084 -0.386075 -0.378569 -0.479806 0.625414 -0.980717 -0.706138 1.129418 -0.710893 1.021180 -1.276851 -0.449528 -0.358084 0.282476 -0.838204 -0.849530 0.351500 0.648046 0.196977 0.070842 -0.503789 -0.787628 1.293559 0.635018 0.040212 0.350255 0.664149 -0.151113 -0.073343 0.482078 -0.451330 0.550492 -1.202382 0.525909 -0.154953 0.328128 -0.295879 0.151488 0.899782 -0.468929 0.557394 -1.169128 1.142752 0.606904 -0.931302 -0.527393 0.583770 -0.746746 -1.334093 -0.061842 1.024018 0.237474 -0.268295 -0.143565 0.386024 -0.555090 -1.236585 -0.382642 -0.935453 0.369709 -1.243636 -0.304700 -0.476384 -0.785223 -0.430393 0.630469 0.190167 0.471540 1.222886 0.861763 -0.788822 -0.033263 -1.252955 0.942686 2.211832 0.539013 -1.363660 0.198763 -0.627929 0.947524 0.891548 0.051328 0.329628 0.828688 0.187732 0.669122 -0.443075 -0.290397 1.415169 1.272041 1.243671 -1.623279 0.048014 -0.684100 -0.035264 1.961190 1.122489 -1.757183 0.370578 1.091623 -0.403494 -0.050796 -0.011579 -0.512046 -0.401230 -1.180805 0.601660 0.748922 -1.583252 -0.978030 0.405794 -1.275499 1.307289 0.214395 0.426771 0.252070 -1.620583 0.030819 2.078750 0.155038 -0.187265 -0.254366 -0.590544 -0.762831 -1.506916 0.438275 0.471486 -0.543204 -0.759516 -0.933507 -0.105310 1.854651 -0.591412 0.198592 -0.811213 0.291039 0.427934 -0.531001 0.996195 -1.455651 -0.961838 -0.378929 -0.448855 1.022195 -0.760354 -0.266537 1.176759 -1.004263 0.956872 1.088298 0.043494 -0.326766 0.977911 -0.190257 1.051978 -0.246729 1.094181 -0.201107 1.350074 -0.840560 -0.106012 -0.350349 0.304622 -0.547523 1.394592 -1.165722 0.044516 0.849811 -1.050199 -0.764075 0.875635 0.385472 0.914409 -0.223110 -0.452981 -0.708635 0.070755 -0.203528 0.303437 1.206259 -0.518872 -1.429990 -0.501218 0.198292 -1.208811 -0.576569 0.723673 -0.097549 1.717314 -1.023747 0.305825 0.454235 -0.189414 -1.452486 -0.944779 -0.401108 -0.544254 -0.606052 1.223945 -1.471724 -0.565320 -0.702277 0.667416 -1.136001 -0.252373 -0.443321 1.182590 0.587530 0.093789 0.999478 0.636456 0.796502 -0.040305 -0.165791 0.379131 0.813430 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -3.487605 2.844159 3.488279 -1.279334 5.707398 0.962047 2.469613 3.430553 -3.784949 3.977382 -5.238477 -0.894807 -1.679252 -3.636664 -0.130144 -3.219648 0.913261 -0.806315 -0.974175 1.497966 1.878412 -2.487781 -0.181960 -2.451108 -0.589657 -4.683240 -1.620059 -0.026131 5.033303 -0.093811 0.447818 -0.206808 6.534597 0.507947 5.653015 3.683180 1.546054 3.692748 0.375517 -2.519214 -1.412764 4.154668 -3.230850 -3.166934 -1.032081 -3.648603 -3.071891 -1.396393 1.139709 -2.388483 -2.619734 3.399096 -0.715005 1.398230 -2.054083 2.930690 3.868087 -0.751158 6.118700 0.966384 -2.471655 -1.633046 -3.402050 3.268780 -0.830434 1.199734 -2.071074 -3.317839 1.014640 -0.758839 -2.143209 -2.008674 -0.367719 3.888557 2.100689 -3.520554 1.945637 -1.188789 -5.551482 -4.771601 -3.038813 0.988436 0.544577 4.164509 -0.135171 -0.118647 1.563949 1.161733 -0.090096 -6.364383 -0.176620 5.395277 -3.583311 -2.174901 -2.224588 3.482622 -0.047472 3.059423 -2.706820 -2.523466 1.187073 0.264991 0.364122 -5.948261 1.261347 -4.653242 0.417753 -0.104368 0.482394 3.814864 1.498980 2.740492 4.169022 4.741657 -5.183721 1.330501 -3.446527 1.755911 -2.322460 -0.062235 -0.206364 1.740372 0.692105 2.068717 4.831413 -5.926866 1.563888 2.222698 -1.632886 -4.867070 -0.609560 -5.185903 -4.124043 -0.915152 1.751940 1.421986 0.967011 -3.587368 0.571112 -1.002358 -1.094296 -2.029685 0.863196 4.195244 -6.227187 -1.016647 -0.283356 0.303769 -2.502680 4.375635 2.656816 2.224550 4.976931 2.520363 -1.945475 2.898739 -4.097383 0.329291 6.445922 0.932445 -4.588407 3.646899 -4.139653 -0.356292 2.351610 1.864305 3.238001 0.804534 -5.220701 -3.003625 2.676063 -0.489155 5.769097 2.219338 1.621345 -2.675369 6.576069 -2.842285 -4.085328 5.017327 3.406902 -5.367065 2.106469 1.730605 -4.153574 -0.215484 2.717674 -4.546271 -0.645884 -3.379224 -0.850839 1.695537 -2.343249 -0.500048 1.189912 -5.198270 6.370023 0.637753 1.868609 0.742829 -2.871386 -4.980324 6.033052 0.477310 -0.577762 -2.457936 -1.574958 -4.944421 -5.022273 0.665499 -0.366252 -2.558076 -2.194872 -4.867868 0.787372 2.636582 -0.841029 3.732312 -5.863116 -1.227280 1.597748 1.363474 2.947790 -1.975904 -3.060784 -1.482815 -1.944927 2.825737 -3.762234 5.101487 6.013448 -1.504196 5.254092 -2.246874 -4.008364 0.537801 1.921043 -4.840638 4.681513 -0.967912 4.340326 0.084938 3.567039 -3.736953 -1.391336 -0.142061 -2.010425 -1.567034 2.509638 -2.705718 0.210163 0.217001 -4.169003 -2.329184 0.675199 -1.220033 0.265444 0.100300 0.636915 -4.955632 -0.409611 -3.359404 0.718405 3.529428 -0.710326 -3.573475 1.329036 -0.241273 0.150527 -1.123354 0.075779 -0.133824 2.759999 -4.453035 -1.798497 0.332505 0.370439 -3.384507 -6.136332 -0.085737 -4.079422 -4.054125 3.384414 -4.521567 0.932761 -3.555963 -1.832571 -6.266313 -3.258979 2.110793 6.747452 1.083240 -3.756946 1.021638 -0.529344 4.114613 0.485731 2.130719 0.094917 1.425809 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -3.023400 2.364737 1.978207 -1.494158 5.278156 0.634570 1.798910 2.383017 -2.781812 3.445702 -4.508116 -0.665396 -1.412978 -3.749070 -0.018597 -1.838773 0.697228 -0.230465 -0.820646 1.072903 1.826394 -2.377898 0.098967 -2.117781 -0.534351 -3.847326 -1.273690 0.203498 4.042700 -0.517365 -0.059714 -0.057731 5.157392 0.279766 4.419101 3.101571 1.430706 3.589527 0.360541 -1.814170 -0.843827 3.393347 -2.544873 -3.451443 -0.211877 -3.048673 -2.646451 -1.700960 1.333691 -2.159253 -1.101655 3.165610 -0.574531 0.585026 -2.362569 2.357464 3.610664 -0.479465 5.334324 1.029589 -2.067878 -1.217115 -2.937820 2.536964 -1.219562 1.194086 -1.082239 -3.013447 0.528522 -0.074838 -1.296102 -1.987097 -0.922745 2.849460 1.630423 -3.098313 1.587599 -1.156956 -4.008747 -4.309368 -2.833973 0.887253 0.288099 3.793034 -0.024878 -0.039359 0.959468 0.872327 0.072575 -5.284707 -0.364264 4.277031 -2.653006 -1.124166 -1.541467 3.183066 -0.114918 1.859829 -2.570485 -1.955851 1.028547 0.380980 0.600247 -4.257691 0.873465 -4.063986 0.915760 0.029905 0.225767 2.340680 2.084465 1.621334 2.961000 3.757035 -4.118594 1.110681 -3.526597 1.264929 -1.057843 0.140920 -0.394143 1.376368 0.734812 0.949389 3.925501 -5.138842 1.898701 1.754137 -1.468337 -4.256001 -0.141003 -3.778384 -3.387829 -0.601659 1.718633 0.927155 0.628338 -2.480787 0.528138 -0.858239 -1.715246 -1.379790 0.522986 4.197574 -5.019731 -0.522904 -0.431194 -0.337358 -1.932438 3.272741 2.209374 1.953866 4.717668 2.506722 -1.537613 2.507938 -3.713890 0.612229 5.752012 1.400403 -4.033504 2.957582 -3.325855 0.065955 1.994116 1.646051 2.760385 0.579054 -4.066625 -2.020379 2.564370 -0.530769 4.863559 1.290939 1.862209 -2.412213 5.118405 -1.283828 -2.748525 4.696139 2.728936 -4.863561 2.330712 2.020488 -2.969834 -0.095743 2.340902 -3.430197 -0.648586 -2.748496 -0.207008 1.599976 -2.526887 -1.039180 0.359706 -4.373572 5.405663 0.433623 1.626640 1.100981 -2.858853 -3.287720 5.026008 0.204985 -0.590510 -1.991093 -1.577843 -4.030970 -4.415160 0.726609 0.142518 -2.466549 -1.923239 -4.117792 0.451866 2.861448 -0.813762 2.748298 -4.604292 -0.771662 1.626541 1.286801 2.508636 -1.745036 -2.492682 -0.709139 -1.255261 2.367188 -2.815410 3.918894 4.981156 -1.775700 4.084306 -1.167374 -2.180802 0.854030 2.008935 -3.790960 4.269945 -0.593749 3.965717 -0.011326 3.114706 -3.001079 -0.821678 -0.057970 -1.234909 -1.101145 2.227372 -2.627474 -0.065629 0.701655 -3.446819 -2.296706 0.895409 -0.345074 0.665416 0.101964 0.314643 -3.398372 -0.475036 -2.719911 0.750395 3.088018 -0.704206 -3.161302 0.829718 0.311519 -0.023544 -0.470491 0.481422 0.154781 2.875827 -3.903224 -0.866824 0.132951 0.293894 -3.186837 -5.143266 0.168320 -3.187173 -3.066025 3.247976 -4.452017 0.412199 -3.031466 -0.825809 -5.406035 -1.688067 1.050128 5.667067 1.138475 -2.483899 1.321765 -0.297036 3.194650 0.070044 1.333906 0.408692 1.686286 +PE-benchmarks/binary-insertion-sort.cpp__main = -1.346864 0.362085 0.533023 -0.459211 2.486144 -0.149849 0.518557 1.249885 -0.084308 1.237557 -1.828726 -1.080762 -0.827402 -1.485899 0.211031 -0.604590 0.609161 0.390563 -0.788245 -0.095423 0.963608 -0.200243 -0.057636 -0.846922 -0.070940 -1.168740 -0.917197 0.129119 1.068952 -0.248608 -0.556012 0.457676 2.571395 0.198136 2.127451 1.384593 1.117395 1.752451 -0.157854 0.068479 0.025444 1.535090 -1.035558 -1.724510 0.235978 -1.362037 -1.228038 -0.704477 0.692616 -0.894704 0.522875 1.304906 -0.081927 0.486353 -0.670804 0.708016 1.124921 0.320419 2.125650 0.795780 -1.322576 0.175874 -1.333401 1.330863 -0.754458 1.222271 -0.623038 -1.950776 -0.611480 0.160268 0.388955 -1.404836 -1.025500 0.923513 0.539952 -0.970915 1.054528 -0.093296 0.035002 -1.673904 -1.846115 0.396774 -0.373138 1.557721 -0.282805 -0.245649 -0.126528 0.018968 0.176121 -2.025035 -0.298983 1.693519 -1.441250 0.244234 -0.924103 0.239625 -0.244399 0.856435 -1.040080 -1.310133 0.487815 0.039873 0.256874 -0.408375 0.409969 -1.036887 0.637486 0.312297 0.233702 0.910246 0.956088 0.571055 1.188271 1.336067 -1.163003 0.332201 -1.478460 0.942367 -0.843582 0.073308 -0.119162 0.657125 0.712813 0.235064 1.491140 -2.017051 0.827967 0.698827 -0.870382 -1.199110 0.190054 -1.542905 -1.736964 -0.452499 1.152928 0.494559 -0.013293 -0.945476 0.373610 -0.442357 -0.672588 -0.335632 -0.382238 0.692725 -1.748831 -0.382958 -0.378182 -0.578917 -0.800490 1.396229 0.802957 1.005242 1.938849 1.167624 -1.031483 0.045126 -1.930062 0.449634 2.477113 -0.040701 -1.786972 1.106224 -1.305123 0.375951 1.157497 0.861057 0.883817 0.311959 -0.671595 -0.070994 0.046180 -0.021893 2.187184 0.862427 0.910162 -1.327716 1.041707 -0.825083 -1.059984 2.551052 1.158777 -2.280483 0.447544 0.951290 -0.896299 -0.380152 0.760299 -1.433039 -0.487753 -1.569434 0.363902 0.905113 -1.454456 -0.403183 0.919410 -1.890490 1.988500 0.122304 0.211599 0.527259 -1.848569 -1.201054 2.810569 0.175493 -0.078635 -0.694271 -0.888313 -0.688087 -2.009051 0.389941 0.075767 -0.628072 -0.741965 -1.601989 0.298538 1.831420 -0.386351 1.148831 -1.456902 -0.120176 0.708128 -0.288338 1.093571 -1.250135 -1.170544 -0.440207 -0.693462 0.970551 -1.283999 0.716860 2.031211 -0.996181 1.339124 0.461003 -1.095788 -0.147526 0.882744 -1.413604 1.794998 -0.323986 1.164984 -0.010696 1.403339 -1.356699 -0.492528 -0.187767 0.071409 -0.878389 1.250291 -1.136445 0.092256 0.404051 -1.552377 -0.965622 0.477861 0.075454 0.347696 0.009777 -0.260906 -1.674812 0.038078 -0.761013 0.460295 1.489805 -0.233070 -1.536085 0.369496 0.057156 -0.723472 -0.518432 0.350930 -0.125459 1.704914 -1.649171 -0.359084 0.462424 0.275288 -1.473767 -1.982594 -0.323674 -1.426939 -0.948825 1.253947 -1.717117 -0.352822 -1.204274 0.021635 -1.625206 -0.709759 0.438461 2.324703 0.905094 -1.001328 0.782124 0.182078 1.329556 0.117379 0.086997 0.268305 0.910317 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -3.516611 2.264653 1.905883 -1.129995 4.592916 0.411619 1.912893 1.959219 -2.607175 3.524875 -4.850008 -2.231212 -2.273598 -4.242903 -0.278257 -2.928821 1.260279 -0.180944 -0.953473 1.303681 2.178907 -2.747908 -0.269965 -2.231401 -0.355351 -3.490342 -1.868517 0.053401 4.686761 -1.741248 -0.130242 0.169408 6.969949 0.754842 6.173437 3.873052 1.198675 4.382583 0.643716 -2.230932 -1.715747 4.578504 -3.124828 -3.684716 -0.713708 -3.460375 -2.175569 -1.479231 1.550620 -0.886886 -0.928460 3.366287 -0.899788 1.590731 -2.759051 1.849377 3.562718 0.596978 6.385552 0.935163 -1.986277 -0.286122 -3.267674 3.123809 -1.676641 1.126479 -1.426451 -2.812202 1.316181 -1.332124 -1.200692 -2.643157 -1.484691 3.811262 1.912299 -3.451174 1.837669 -1.104489 -5.442673 -4.804637 -4.120954 0.675955 0.078326 4.104113 -0.471819 -0.208782 1.033410 1.314275 -0.104111 -6.257325 0.123423 4.785863 -3.306765 -1.147947 -1.255995 3.777986 -0.610019 2.895455 -3.369087 -2.006728 1.070939 -0.295981 0.656346 -4.199272 1.476481 -3.991187 0.978461 -0.653789 -0.061449 2.895181 3.665011 2.355401 4.565723 4.573661 -4.535564 0.236501 -3.766741 1.467436 -1.731954 -0.287733 0.460117 2.205016 -0.050297 0.661872 4.873597 -5.963036 1.192338 2.009303 -1.514670 -4.919786 -0.485848 -5.066603 -4.176504 -1.275423 2.176872 1.558028 0.745695 -3.687854 0.060835 -0.688795 -1.528442 -1.401358 1.024964 3.932952 -4.605463 -1.023245 -0.576413 -0.625834 -2.322807 3.971944 2.283362 2.458354 5.148154 2.865556 -2.268391 1.832385 -4.175337 -0.007170 5.935041 0.300699 -4.915965 3.435490 -3.634980 -0.234800 2.462256 2.536255 3.725144 -0.136365 -4.147341 -2.311940 2.203650 -0.311078 5.420777 0.808403 1.635779 -1.281816 6.136572 -0.401823 -4.165552 5.678973 1.950059 -4.872342 2.095611 1.421664 -3.139904 -0.357726 2.848932 -3.897192 -0.209094 -3.717057 -0.221317 1.590711 -2.683763 -0.009091 1.111856 -5.220774 6.196022 0.324075 1.245757 1.312043 -4.208881 -4.894410 6.191593 -0.074468 -0.479236 -2.467344 -1.929711 -3.491272 -4.977644 0.953797 -0.683633 -2.344120 -2.004690 -4.667659 1.329560 3.209060 -0.455834 3.820872 -4.413557 -1.584367 1.668083 1.477621 2.886414 -1.514690 -3.124426 -0.404759 -1.124476 3.037290 -3.054358 4.571733 6.033353 -1.836932 3.993972 -1.163456 -3.114384 0.871526 1.941686 -5.110160 4.716234 -1.227598 3.045918 -0.320029 3.186411 -3.395984 -1.631661 0.444983 -0.310184 -1.455690 1.819098 -2.137219 0.286938 -0.224927 -4.068980 -1.860720 0.458080 -1.238284 0.339517 0.504768 0.239679 -4.374331 -0.215189 -2.541285 0.710819 3.710959 0.344358 -3.107534 1.495060 -0.691755 0.723800 0.897541 0.010083 -0.477338 2.950281 -4.409971 -2.175730 0.087351 0.340277 -2.328695 -6.035261 -0.527463 -3.721793 -2.803366 4.008248 -4.222832 0.964745 -3.487985 -1.629554 -5.160993 -1.707288 1.488422 6.571926 2.268149 -3.611463 0.968340 -0.481431 4.199724 0.440279 1.081633 0.382402 2.126112 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -1.719458 0.536446 0.987566 -0.352741 2.659608 -0.115805 0.643556 1.591024 -1.487268 1.474571 -2.109644 -0.904001 -1.272422 -1.795047 0.048735 -0.859650 1.008117 0.109801 -0.661844 0.433374 1.119997 -0.819579 -0.060663 -0.937214 -0.086918 -0.901593 -1.009241 0.115300 2.304453 -0.992616 -0.645253 0.295247 3.453252 0.028335 2.990939 1.725115 0.930240 2.008538 0.254498 -2.109481 -0.557722 2.269382 -1.498089 -1.870187 -0.163201 -1.788378 -0.951395 -0.327291 1.060530 -0.206907 -0.981928 1.506223 -0.355021 0.866332 -1.102891 1.082498 1.457852 0.345669 3.036381 0.516427 -1.313062 -0.251435 -1.521229 1.432799 -0.859088 0.924383 -1.566098 -1.699903 0.060899 -0.449930 -0.633824 -1.953364 -0.702124 1.641725 0.577029 -1.423638 1.258991 -0.132704 -0.527141 -2.586933 -2.379729 0.194847 -0.562722 1.792456 -0.519734 -0.194393 0.200061 0.391846 0.091238 -2.888966 0.061960 1.845282 -2.014910 -0.253031 -0.079444 1.075215 -0.481968 1.331696 -1.529923 -1.382636 0.443440 -0.284002 0.334707 -1.894108 2.114439 -1.231537 0.184093 -0.511098 0.602511 1.697667 1.708644 1.263466 2.116991 2.031861 -1.605431 -0.452448 -1.898902 0.779654 -1.640410 -0.098405 0.040993 1.314532 0.648684 0.302956 2.321842 -2.915730 0.598440 0.826617 -0.495107 -1.978758 0.138349 -2.257642 -2.103527 -0.638882 1.380830 0.518168 0.131736 -1.745869 0.461985 -0.273979 -1.017310 -0.039315 0.000658 1.314067 -2.660158 -0.541293 -0.397922 -0.534024 -0.727290 1.749864 1.044767 1.346167 2.396246 1.484780 -1.576770 0.951069 -2.372356 0.335403 2.661850 -0.711250 -2.292055 1.529873 -1.900196 0.022978 1.569725 1.259448 1.777695 0.214991 -1.256996 -0.725774 1.209063 0.223548 2.598504 0.077280 1.139198 -0.974966 2.023701 -0.755689 -1.642813 2.969499 0.344024 -2.969446 1.417712 0.762474 -0.713335 -0.006812 0.974132 -2.124708 -0.275197 -2.101554 0.002170 1.222809 -1.758752 -0.097732 0.953380 -2.382654 2.767001 0.061772 -0.155266 0.823582 -2.181479 -1.499039 3.282317 0.484486 -0.022683 -1.287547 -1.234761 -1.300406 -2.558302 0.445128 -0.480753 -0.895951 -0.830362 -2.208212 0.306853 1.715470 0.005080 1.763108 -2.880831 -0.118173 0.856715 0.581666 1.408571 -0.692307 -1.515157 -0.213994 -1.223393 1.349560 -2.045858 1.634045 2.587819 -1.224846 1.988783 -0.257890 -1.662536 0.297484 0.760861 -2.356108 2.250913 -0.254541 2.190882 -0.126694 1.575209 -1.932369 -0.659184 -0.060224 0.011204 -0.985653 1.005260 -1.164186 0.068753 0.053114 -1.776037 -1.258034 0.116996 -0.386550 0.244655 0.267371 -0.314764 -2.140029 -0.126324 -0.957377 0.491805 1.822360 -0.438677 -1.937788 0.713553 -0.282156 -0.174699 -0.025136 0.102654 -0.265718 1.553729 -2.134264 -1.091113 0.291235 0.540643 -1.227199 -2.664074 -0.475610 -1.393697 -0.769636 1.989141 -1.921437 0.108530 -1.484176 -0.516545 -2.256472 -0.680463 0.629135 3.078523 1.010681 -1.733321 0.758501 -0.009106 1.816289 0.189681 0.481025 -0.202385 0.755562 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.553014 0.038837 -0.319685 -0.278314 1.355730 0.053197 -0.072913 0.922106 -0.065672 0.586989 -0.739330 -0.142950 -0.190665 -0.680834 0.131485 0.367404 0.160864 0.252139 -0.476159 -0.272227 0.437051 0.029784 0.110953 -0.373195 -0.034720 -0.383897 -0.256940 0.071417 0.403757 0.077254 -0.671984 0.076784 0.862253 -0.076215 0.539430 0.375201 0.760621 0.671886 -0.038553 0.095002 0.194337 0.561822 -0.374124 -0.800960 0.309300 -0.715188 -0.565679 -0.200430 0.382837 -0.623934 0.641734 0.505947 0.035748 -0.040789 -0.189832 0.373419 0.459619 -0.097022 0.843081 0.365714 -0.728405 -0.360905 -0.499160 0.882635 -0.385281 0.747243 -0.035935 -0.938561 -0.586598 0.288804 0.327313 -0.622337 -0.517772 0.217668 0.124114 -0.334663 0.477432 -0.071441 0.796549 -0.592961 -0.692076 0.147519 -0.478712 0.629010 -0.153818 -0.091862 -0.245059 -0.092926 0.157695 -0.716555 -0.264982 0.657796 -0.542489 0.468521 -0.711052 -0.175811 -0.178688 0.188474 -0.395389 -0.474055 0.154207 0.345389 0.142710 -0.260857 0.277247 -0.404629 0.475773 0.231267 0.201478 0.316676 0.258762 -0.009139 0.121093 0.469190 -0.112401 0.104150 -0.687650 0.280152 -0.136489 0.237136 -0.235672 0.171861 0.663527 -0.072550 0.520053 -0.758711 0.568341 0.188666 -0.427277 -0.413400 0.227189 -0.419476 -0.673695 -0.022099 0.467418 0.045847 -0.154291 -0.232217 0.352007 -0.178274 -0.920787 -0.228825 -0.323618 0.160701 -0.878247 -0.110133 -0.190958 -0.284130 -0.191395 0.492026 0.307465 0.337754 0.796568 0.508475 -0.281020 0.189498 -0.784395 0.481143 1.142579 0.260750 -0.766604 0.299771 -0.638423 0.331934 0.509541 0.201060 0.225819 0.498841 -0.006294 0.254201 0.040529 0.003035 0.898179 0.460880 0.582691 -0.752517 0.062144 -0.405356 -0.075205 1.125856 0.573880 -1.083467 0.357496 0.478829 -0.055611 0.089951 0.113898 -0.460651 -0.292863 -0.605353 0.263280 0.518688 -0.727745 -0.454046 0.268091 -0.692108 0.870266 0.020614 0.036638 0.248923 -0.852363 0.222305 1.054954 0.169072 -0.118952 -0.218547 -0.340543 -0.546090 -0.830054 0.183641 0.237826 -0.328101 -0.367797 -0.625758 -0.121361 0.939166 -0.183443 0.222655 -0.931649 0.158516 0.301818 -0.196640 0.495768 -0.737484 -0.405598 -0.292027 -0.257269 0.502846 -0.629147 0.048562 0.721733 -0.546310 0.625568 0.451965 -0.045717 -0.154762 0.465204 -0.320098 0.709889 -0.003665 0.467628 -0.066566 0.637629 -0.486133 0.018585 -0.277684 0.181027 -0.239876 0.619308 -0.597575 -0.064342 0.353889 -0.627078 -0.467373 0.334061 0.214594 0.410429 -0.013474 -0.371257 -0.428841 -0.103019 -0.330351 0.119316 0.610913 -0.379696 -0.752817 -0.029868 0.049343 -0.586749 -0.215584 0.271798 0.068713 0.853756 -0.643677 0.085044 0.252715 0.073521 -0.886306 -0.592562 -0.303776 -0.198047 -0.355609 0.597409 -0.865692 -0.408840 -0.433775 0.226308 -0.793144 -0.186381 -0.063205 0.835715 0.287297 -0.113728 0.547026 0.205538 0.501006 0.038436 0.015608 0.195169 0.321041 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.957245 0.689644 0.298419 -0.383392 1.434589 -0.308689 0.592408 0.306778 0.556015 0.489451 -1.873578 -1.632623 -0.458831 -1.136103 0.208698 -0.912788 0.610660 0.429087 -0.580577 0.066690 0.537395 -0.140771 -0.128606 -1.139146 0.038811 -0.575463 -0.833147 -0.103810 0.147371 0.142750 -0.348384 0.529185 2.075514 0.569880 1.713270 1.135691 0.061844 1.444727 0.195089 0.322987 0.430572 0.990203 -0.565510 -1.441389 -0.174409 -0.967433 -0.728031 -0.809081 0.128591 -0.674130 0.865138 0.682539 0.236452 0.347665 -0.899842 -0.128612 1.046938 1.079484 1.375616 0.694714 -0.822003 0.976246 -0.604149 0.493015 -0.653776 0.838491 -0.148035 -1.369862 -0.368843 0.559115 0.676966 -0.953445 -1.294294 0.148478 0.380836 -0.560636 0.798066 0.173641 -0.599138 -0.679815 -1.128263 0.514866 -0.359198 1.098549 -0.102988 -0.250257 -0.600797 -0.157501 0.610758 -1.017721 -0.693098 1.171165 -0.663092 0.070055 -0.091521 0.450740 0.439083 0.407878 -0.585544 -1.054630 0.427299 -0.125235 -0.094397 0.410539 -0.350326 -0.861166 0.810040 0.906831 -0.443445 0.989735 0.738761 0.959350 1.025412 0.474333 -0.877174 0.052346 -1.099097 0.545479 -1.023582 -0.466816 0.097549 0.181274 0.084670 0.166913 0.659197 -1.199607 0.948858 1.087837 -0.562474 -0.491840 0.204576 -0.927120 -1.349383 -0.228510 0.614295 0.748989 0.361851 -0.333954 -0.270298 -0.652219 0.254043 -0.087589 -0.337257 0.758008 -0.654740 -0.334090 -0.066109 -0.250814 -0.755899 0.872874 0.238305 0.234599 1.152953 0.484776 -1.114018 -0.991172 -1.077559 0.349925 2.118808 -0.514908 -1.191123 0.636151 -0.333138 0.201205 0.624300 0.395742 0.248803 -0.020423 -0.680437 -0.402867 -1.155857 -0.656135 1.333831 0.861213 0.494306 -0.983710 1.418389 -0.501605 -0.672369 1.924268 0.730259 -1.183164 -0.507371 1.269565 -1.491633 -0.595869 0.579246 -0.779317 -0.125888 -1.281401 0.239957 0.164661 -1.052616 -0.429996 0.419505 -1.412949 1.211575 0.444646 -0.130105 -0.420531 -1.078727 -0.857183 2.661794 0.193339 0.149196 -0.008762 -0.445537 -0.108659 -1.702310 0.042937 0.151686 -0.492489 -0.203063 -0.809827 0.455557 1.191531 -1.030391 0.639412 0.061019 -0.185237 0.352181 -0.129189 0.400433 -0.889686 -0.936109 -0.068276 -0.389068 0.484592 -0.709808 0.622081 1.288693 -0.380737 0.670905 0.983698 -0.733480 0.013385 0.850122 -0.656633 1.034178 -0.781312 0.638194 0.288227 1.181293 -0.723694 -0.656324 -0.146999 -0.354643 -1.031649 1.152654 -1.202542 0.204465 0.637549 -0.462079 -0.726628 0.742143 0.159520 0.491758 -0.426154 -0.032090 -1.346313 0.459490 -0.238326 0.455602 0.882224 0.332938 -1.234871 -0.010000 0.639813 -0.645681 -0.560728 0.216622 -0.365409 1.283246 -1.020846 0.124947 0.459316 0.266337 -0.983777 -1.161613 0.105944 -1.223806 -0.548717 0.679916 -1.147809 -0.488484 -0.631933 0.211453 -0.641127 -0.672641 0.569671 1.479305 0.657249 -0.885524 0.167831 0.052647 0.736511 0.241148 -0.044676 -0.045874 0.825482 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.990762 0.508660 -0.110891 -0.657039 2.336422 0.278872 0.120351 1.118413 -0.149378 1.108840 -1.673515 -0.335878 -0.392330 -1.417738 0.128511 0.013461 0.256246 0.253195 -0.723184 -0.343092 0.655856 -0.316823 0.306974 -0.833123 -0.083366 -1.184325 -0.544627 0.091088 0.649443 0.332071 -0.616020 0.070700 1.582450 0.086130 0.857292 0.708800 0.958081 1.433922 0.028395 0.490182 0.428638 0.901745 -0.595467 -1.562136 0.491965 -1.283773 -1.099049 -0.651592 0.528112 -1.450787 0.811793 0.969460 0.071738 -0.234441 -0.691736 0.558999 1.230412 -0.124161 1.582693 0.598635 -1.228649 -0.682508 -0.863673 1.082321 -0.713689 1.104052 0.197756 -1.595501 -0.768989 0.693472 0.317296 -0.750911 -0.993620 0.297055 0.416031 -0.713361 0.605381 -0.205462 -0.077787 -0.849097 -0.968671 0.363092 -0.425562 1.232238 -0.032461 -0.122916 -0.041602 -0.171916 0.382138 -1.306904 -0.571410 1.461575 -0.650336 0.586216 -1.153843 0.217264 -0.169158 0.157237 -0.770685 -0.719390 0.256524 0.586741 0.183002 -0.717840 -0.449051 -1.332764 1.078919 0.583348 -0.011708 0.424186 0.534585 0.026402 0.206133 0.784148 -0.947316 0.546232 -1.366943 0.452817 0.040234 0.154795 -0.458918 0.132598 0.596999 -0.016641 0.920563 -1.447543 1.218949 0.550989 -0.927047 -0.967473 0.238801 -0.700549 -1.169151 0.151323 0.675350 0.137393 0.017928 -0.298394 0.259637 -0.513295 -1.252344 -0.614213 -0.405740 0.999634 -1.436896 -0.122370 -0.197070 -0.402593 -0.522576 0.878887 0.532341 0.440904 1.515983 0.800601 -0.459880 0.555520 -1.308183 0.806627 2.310560 0.922259 -1.400167 0.589245 -0.918245 0.587796 0.729329 0.209055 0.443220 0.686202 -0.542809 0.090803 0.060128 -0.291328 1.541927 1.086351 0.990807 -1.472124 0.802050 -0.485249 -0.009508 1.895627 1.246065 -1.761411 0.650235 1.188731 -0.809824 0.063441 0.377958 -0.765256 -0.467732 -0.971246 0.299787 0.735429 -1.232576 -0.902808 0.072700 -1.323836 1.680723 0.187391 0.423909 0.302324 -1.325467 -0.376804 1.872995 0.078113 -0.107014 -0.248185 -0.555081 -1.207963 -1.641867 0.220176 0.624796 -0.963607 -0.597837 -1.132801 -0.073564 1.518833 -0.559749 0.516917 -1.304930 0.119294 0.578862 -0.026785 0.821160 -1.222964 -0.778748 -0.312265 -0.394437 0.881669 -0.922168 0.471400 1.214485 -0.799605 1.398940 0.417588 -0.169300 -0.014242 0.852595 -0.497938 1.332407 -0.247581 1.159211 -0.021535 1.266069 -0.723489 0.023239 -0.375525 -0.158288 -0.483197 1.201528 -1.380424 -0.130541 0.844296 -1.050455 -0.905792 0.754723 0.404274 0.804813 -0.180570 -0.278711 -0.737648 -0.125465 -0.514860 0.322990 0.978944 -0.511235 -1.356669 -0.207464 0.409412 -0.864536 -0.506925 0.501120 0.163459 1.407760 -1.186359 0.306096 0.322953 -0.099510 -1.653319 -1.228988 -0.135984 -0.713119 -0.920803 1.032186 -1.813187 -0.560817 -0.828030 0.366566 -1.488324 -0.332687 -0.071364 1.601287 0.412084 -0.218946 0.813054 0.314342 0.771871 -0.076974 0.167047 0.453400 0.681365 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.704423 0.394865 -0.518014 -0.401601 1.584906 -0.071454 0.034785 0.936644 -0.318792 0.661788 -1.124997 -0.061328 -0.189702 -1.224805 0.194517 0.576836 0.420386 0.425634 -0.282639 -0.063149 0.521010 -0.417768 0.139082 -0.647042 0.024500 -0.634666 -0.194246 0.046466 0.462142 0.057004 -0.644673 0.242915 1.190060 0.224077 0.709411 0.623157 0.519061 1.052540 0.510259 -0.229533 0.198465 0.674876 -0.359879 -1.264927 0.474785 -0.825263 -0.554141 -0.561835 0.333321 -0.814211 0.816670 0.690847 0.037307 -0.112925 -0.788412 0.112198 1.084152 -0.053893 1.118538 0.486554 -0.689521 -0.471213 -0.303949 0.642058 -0.561922 0.399856 0.353698 -0.999629 -0.269717 0.527384 0.517978 -0.780271 -0.760066 0.135011 0.105561 -0.514483 0.527489 -0.016242 0.241679 -0.914022 -0.875644 0.197831 -0.596544 1.009605 -0.071210 -0.109587 -0.453655 -0.193864 0.403573 -0.851610 -0.380430 0.710490 -0.407687 0.498817 -0.483425 0.537726 0.070390 0.034080 -0.572819 -0.626956 0.222060 0.235568 0.164949 -0.105342 -0.007653 -0.682013 0.712875 0.176596 0.011378 0.607371 0.750889 0.166555 0.240903 0.446006 -0.484876 0.017872 -1.083072 0.332310 0.078241 0.054325 -0.201646 0.079896 0.610565 -0.264852 0.565403 -1.084050 0.848020 0.585610 -0.310360 -0.653931 0.293891 -0.468767 -0.791382 -0.038626 0.612110 0.060848 0.035105 -0.125327 0.147662 -0.292038 -1.142620 -0.403953 -0.464074 1.160463 -1.247268 -0.049015 -0.214493 -0.423970 -0.253950 0.369597 0.227489 0.360487 0.995559 0.613420 -0.545906 0.481099 -0.958198 0.600582 1.739318 0.798213 -0.963543 0.385519 -0.478955 0.331771 0.582187 0.214966 0.431926 0.070760 -0.385176 0.001305 0.276649 -0.250601 1.016864 0.408266 0.808017 -1.016035 0.700104 0.232653 -0.077144 1.577445 0.364066 -1.187823 0.611489 0.929697 -0.407614 0.245595 0.143352 -0.492322 -0.345013 -0.744576 0.339231 0.495572 -1.065487 -0.677186 -0.112555 -0.921953 1.060797 0.183262 0.176891 0.160048 -0.927031 0.380898 1.540303 0.180605 -0.039726 -0.180383 -0.506232 -0.731482 -1.171553 0.161332 0.264235 -0.611269 -0.266797 -0.778402 -0.260995 1.228770 -0.390431 0.125569 -1.174173 0.249949 0.430509 0.075004 0.290213 -1.094657 -0.612984 0.138720 -0.119230 0.516155 -0.556444 0.428834 0.842674 -0.681538 0.579179 0.696740 0.528255 0.317151 0.620125 -0.419419 0.896301 -0.266837 1.183676 0.096960 0.898315 -0.590231 -0.057834 -0.295193 0.179295 -0.461725 0.793061 -1.002253 -0.070474 0.840452 -0.432929 -0.876007 0.509849 0.326292 0.722514 -0.149583 -0.472723 -0.322303 -0.007842 -0.303128 0.336206 0.725148 -0.328573 -0.959575 -0.181954 0.442063 -0.433589 -0.133858 0.402699 0.106173 1.053003 -0.855168 0.347337 0.158294 0.154359 -0.922216 -0.987242 0.187046 -0.262129 -0.466534 0.951526 -1.537478 -0.454265 -0.542421 0.345701 -1.261720 0.269998 -0.271093 1.068990 0.138283 -0.126887 0.580629 0.197743 0.405009 -0.126771 0.200554 0.080523 0.649374 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.799580 1.758378 1.460024 -2.113536 6.049776 -0.087328 0.901334 2.060076 1.080721 2.430792 -5.266375 -1.809398 -0.847558 -3.496976 0.469177 -1.894873 0.558015 1.155618 -2.101981 -0.627723 1.785307 0.132644 0.015512 -2.694940 -0.314955 -3.286828 -2.469813 0.274935 0.607653 -0.030030 -0.249185 0.891581 5.082770 0.323043 3.523440 2.936594 2.761383 4.252048 -0.766834 3.127741 1.845423 2.434365 -1.613474 -4.011503 0.753193 -2.899434 -3.262614 -1.916184 0.990403 -3.508201 2.427061 2.682795 0.481990 -0.131623 -1.693161 1.771676 3.077978 0.211066 4.016211 2.156940 -3.733336 1.087711 -2.918572 3.060589 -2.227536 3.884368 -0.059200 -4.641133 -2.242646 2.009618 2.228868 -2.958211 -3.621479 0.616968 0.928363 -1.948166 1.869472 -0.590105 -0.326649 -2.455157 -2.642121 1.592223 0.017183 3.037084 -0.083035 -0.604049 -0.385667 -0.420683 0.950080 -3.348502 -2.072112 4.126321 -2.433437 1.133621 -3.365467 -0.011732 -0.078902 0.672070 -1.731167 -3.057542 1.226531 0.858853 0.236539 -0.044758 -1.512136 -3.087930 2.268952 2.380218 -0.958444 1.147546 0.529065 1.319523 1.556776 1.815627 -2.544720 1.660699 -3.905946 1.767786 -0.937660 -0.043342 -0.623560 0.105146 1.035979 0.897570 2.316508 -3.411179 3.303076 1.549775 -3.100926 -2.141806 0.618998 -2.164886 -3.830257 -0.214893 1.737402 1.609841 0.311826 -0.701622 0.335201 -1.708068 -0.962544 -2.367969 -1.052611 1.704037 -2.973684 -0.684492 -0.403108 -0.795928 -2.167327 2.811835 1.620244 1.005905 4.452653 1.917691 -1.311994 -0.116858 -3.762368 1.219842 5.906065 1.617562 -3.712367 2.043916 -2.164189 1.266935 2.070298 1.168105 0.392790 1.256847 -2.009640 -0.402725 -1.034900 -1.595290 4.361655 2.900320 1.576236 -4.081579 2.454749 -1.536461 -1.166720 6.057731 3.722975 -4.777004 0.432496 3.495862 -1.928949 -1.727858 1.730435 -2.412718 -1.871890 -2.268073 0.853524 1.105734 -2.947631 -2.135094 1.171894 -3.906609 4.123647 0.618093 0.388404 0.301612 -3.689801 -3.940062 6.024363 -0.121345 -0.263577 -0.351213 -1.186656 -0.565628 -4.758934 0.528588 1.892885 -2.050731 -1.538768 -2.861558 1.228732 4.114547 -2.727090 1.815556 -1.938497 -1.088004 1.564125 -1.078063 2.124959 -3.872553 -2.332226 -1.401014 -0.648086 1.800869 -2.436218 1.055264 4.430196 -1.775120 3.331520 1.889047 -2.590659 -0.833067 2.936610 -1.800179 3.916334 -0.970901 2.232413 0.354267 3.271216 -2.644781 -1.115004 -0.647915 -0.337489 -1.985175 3.206898 -3.542466 0.247975 1.261607 -2.995477 -1.792383 2.603262 1.089484 1.046692 -0.762701 0.021102 -2.641406 0.067421 -1.151998 0.770785 2.799535 -0.659929 -3.903461 -0.083088 1.553638 -2.859742 -1.407710 1.001288 0.246542 4.189592 -3.258157 1.007247 1.249694 -0.284472 -4.908024 -3.892278 -0.059711 -3.718523 -2.511704 1.385207 -4.104756 -2.102315 -2.325840 1.089593 -2.858309 -1.949654 1.156840 4.536617 2.104486 -1.521187 1.733008 0.390320 2.659527 0.236092 -0.030590 0.926911 2.204410 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.303873 0.321617 0.031121 -0.222954 0.623043 -0.004729 -0.034215 0.409794 -0.024509 0.336682 -0.513082 -0.035510 -0.060685 -0.541108 0.091608 0.018693 0.066466 0.176087 -0.074124 -0.003762 0.228496 -0.213594 0.021561 -0.302618 -0.017381 -0.523493 -0.064232 0.013705 0.207991 0.166267 -0.114371 0.087227 0.464511 0.087047 0.306168 0.316441 0.209887 0.425611 0.188106 0.104851 0.059475 0.275715 -0.170312 -0.544621 0.167999 -0.325562 -0.219510 -0.258809 0.119979 -0.435875 0.176576 0.303251 0.015245 -0.071137 -0.321497 0.109481 0.382346 0.077487 0.455568 0.225344 -0.237406 -0.242497 -0.242494 0.245291 -0.280581 0.157136 0.111631 -0.415792 -0.060230 0.235464 -0.001361 -0.056965 -0.130463 0.083470 0.082767 -0.251116 0.202765 -0.068195 -0.197547 -0.196084 -0.256494 0.137383 -0.102655 0.447921 0.001893 -0.032405 -0.076996 -0.029854 0.153622 -0.373040 -0.189777 0.362433 -0.149066 0.067152 -0.114371 0.303314 0.198970 0.017064 -0.068362 -0.188330 0.143903 0.124448 0.074986 -0.126177 -0.157445 -0.406006 0.347281 0.119284 -0.047183 0.266875 0.130014 0.107051 0.060755 0.222382 -0.311881 0.125385 -0.478356 0.147392 -0.010387 0.048764 -0.085983 -0.001120 0.202540 -0.004292 0.218402 -0.434865 0.393478 0.273309 -0.077418 -0.275485 0.139252 -0.215084 -0.315930 -0.036764 0.222588 0.082414 0.003694 -0.040286 0.044948 -0.126740 -0.328613 -0.225122 -0.166302 0.509570 -0.504105 -0.008264 -0.084982 -0.122466 -0.146027 0.151010 0.114361 0.136993 0.449587 0.261694 -0.158782 0.163465 -0.373038 0.200537 0.749703 0.242444 -0.371636 0.195490 -0.178908 0.075271 0.190349 0.060974 0.154925 0.248103 -0.281501 -0.148191 -0.017638 -0.178074 0.441051 0.303540 0.268819 -0.449523 0.432616 -0.018325 -0.108188 0.608872 0.282668 -0.479423 0.202141 0.400471 -0.478765 0.009100 0.092922 -0.182539 -0.012966 -0.284377 0.075445 0.209227 -0.431015 -0.341364 -0.092017 -0.415699 0.467736 0.087536 0.267141 0.038600 -0.302951 -0.033740 0.612783 0.102702 -0.069676 -0.129268 -0.168220 -0.470949 -0.474701 0.065396 0.150172 -0.324718 -0.149247 -0.329672 -0.102993 0.445171 -0.231751 0.048932 -0.465239 0.024315 0.186555 0.064705 0.132971 -0.338651 -0.253862 -0.015026 -0.102256 0.236042 -0.177301 0.281775 0.437869 -0.222989 0.378871 0.179185 0.033025 0.138172 0.330476 -0.208154 0.408997 -0.144046 0.334478 0.088420 0.373129 -0.270809 -0.042728 -0.085313 -0.202576 -0.135236 0.341812 -0.404463 -0.019138 0.337182 -0.285122 -0.257780 0.249955 0.149446 0.349612 -0.076557 -0.025626 -0.244156 0.002094 -0.162248 0.092366 0.319276 -0.065958 -0.419079 -0.063432 0.212538 -0.183773 -0.336026 0.169219 0.043644 0.413667 -0.370002 0.199397 0.088692 -0.009808 -0.461051 -0.367574 0.079256 -0.193087 -0.296452 0.267215 -0.655612 -0.116987 -0.238780 0.141728 -0.560410 -0.021550 -0.060399 0.461496 0.041301 -0.079836 0.236951 0.036428 0.215183 0.030481 0.070794 0.023429 0.307291 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -9.713205 3.688896 6.526086 -5.488443 15.814100 -0.212310 3.915583 5.730342 0.107236 8.840824 -16.753927 -8.197535 -5.753594 -12.066689 -0.006220 -9.074539 3.905261 0.144634 -5.165870 2.126041 5.916286 -2.162762 -0.202241 -8.247253 -1.139738 -10.239469 -7.790452 0.509675 6.392179 -2.752360 1.431618 1.609106 20.466051 3.850861 16.826971 10.707084 4.930656 14.194959 -0.491694 2.487234 0.509295 11.610103 -7.297495 -11.532825 -1.324155 -9.931532 -8.775801 -6.502573 3.370232 -6.291364 1.999262 8.974374 0.223571 3.041776 -8.302730 3.080292 9.640962 1.851262 15.872172 4.924261 -9.419598 4.040518 -9.472231 7.193022 -6.240938 7.406265 -1.999268 -9.048411 -0.827733 1.030898 3.768772 -9.589329 -9.111053 5.731496 4.665556 -8.104186 6.770620 -2.093708 -6.393313 -12.008698 -9.044093 3.797629 0.130642 10.538181 -1.622416 -1.450685 0.195294 0.900624 1.534473 -14.148822 -3.498004 12.252087 -9.480456 -2.699475 -6.527405 7.820379 -1.538741 5.825846 -7.062261 -8.047196 3.432270 -0.015897 0.713432 -3.016470 -0.767796 -10.243894 5.080533 3.202492 -2.134774 6.276258 5.629236 7.136439 10.964108 9.203636 -10.880079 4.329328 -11.726343 5.162853 -6.206776 -1.288562 -0.947428 4.005625 1.556847 3.976404 10.452938 -13.812107 7.324279 7.111100 -7.082819 -9.187017 0.226523 -11.139267 -13.533463 -1.319821 5.796665 6.002143 2.433597 -7.287009 0.665390 -4.175469 -0.675702 -4.795922 0.706719 7.266431 -9.058534 -3.400030 -0.912010 -1.517494 -7.168892 10.795920 5.466321 4.073907 15.032052 5.407266 -7.228755 -1.014601 -12.455164 1.193852 19.370462 -1.043742 -12.730501 8.588973 -7.693794 1.598676 6.764414 6.658641 6.699761 -1.693215 -9.430908 -4.066142 0.433354 -3.552194 15.524783 5.881013 5.071612 -9.081959 12.842488 -4.576617 -6.104300 17.264743 8.594657 -14.505176 0.823323 7.636449 -8.034272 -4.046135 6.827530 -7.550325 -3.128564 -10.449213 2.132787 3.152529 -7.416211 -2.937963 3.169278 -14.230123 14.765081 1.342585 1.840570 1.425738 -11.048652 -14.327108 20.323599 -0.767597 -0.576772 -3.070656 -4.690575 -2.508466 -16.595842 2.002144 0.682833 -5.960751 -2.506006 -11.118283 5.989892 10.424767 -5.992422 8.806619 -8.029085 -4.604654 4.989042 -1.103780 6.278883 -8.835797 -8.651565 -3.136666 -2.813703 7.387287 -9.416840 8.083574 16.587363 -4.694042 10.832636 1.720129 -7.452114 -0.940519 7.791547 -11.295968 13.793342 -4.749586 8.683917 -0.233892 9.854132 -7.617470 -5.412366 -1.033025 -2.273440 -5.808260 7.568467 -9.524115 1.378990 2.475904 -9.414305 -5.121027 5.312212 -0.491688 0.434567 -0.497255 1.321047 -13.081070 0.872044 -5.981906 3.906184 9.971972 0.493608 -12.111497 2.396214 3.920948 -4.040187 -1.616781 0.346852 -0.867672 11.348155 -11.583985 -2.289686 2.877689 1.620670 -9.290668 -15.763633 1.060201 -11.967781 -7.874400 7.907289 -11.400129 -3.341999 -9.000443 -0.618671 -10.601234 -6.433569 5.180544 16.764189 8.300326 -9.313838 1.637822 -0.361077 9.589363 1.033434 1.136281 3.110486 6.409315 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.303873 0.321617 0.031121 -0.222954 0.623043 -0.004729 -0.034215 0.409794 -0.024509 0.336682 -0.513082 -0.035510 -0.060685 -0.541108 0.091608 0.018693 0.066466 0.176087 -0.074124 -0.003762 0.228496 -0.213594 0.021561 -0.302618 -0.017381 -0.523493 -0.064232 0.013705 0.207991 0.166267 -0.114371 0.087227 0.464511 0.087047 0.306168 0.316441 0.209887 0.425611 0.188106 0.104851 0.059475 0.275715 -0.170312 -0.544621 0.167999 -0.325562 -0.219510 -0.258809 0.119979 -0.435875 0.176576 0.303251 0.015245 -0.071137 -0.321497 0.109481 0.382346 0.077487 0.455568 0.225344 -0.237406 -0.242497 -0.242494 0.245291 -0.280581 0.157136 0.111631 -0.415792 -0.060230 0.235464 -0.001361 -0.056965 -0.130463 0.083470 0.082767 -0.251116 0.202765 -0.068195 -0.197547 -0.196084 -0.256494 0.137383 -0.102655 0.447921 0.001893 -0.032405 -0.076996 -0.029854 0.153622 -0.373040 -0.189777 0.362433 -0.149066 0.067152 -0.114371 0.303314 0.198970 0.017064 -0.068362 -0.188330 0.143903 0.124448 0.074986 -0.126177 -0.157445 -0.406006 0.347281 0.119284 -0.047183 0.266875 0.130014 0.107051 0.060755 0.222382 -0.311881 0.125385 -0.478356 0.147392 -0.010387 0.048764 -0.085983 -0.001120 0.202540 -0.004292 0.218402 -0.434865 0.393478 0.273309 -0.077418 -0.275485 0.139252 -0.215084 -0.315930 -0.036764 0.222588 0.082414 0.003694 -0.040286 0.044948 -0.126740 -0.328613 -0.225122 -0.166302 0.509570 -0.504105 -0.008264 -0.084982 -0.122466 -0.146027 0.151010 0.114361 0.136993 0.449587 0.261694 -0.158782 0.163465 -0.373038 0.200537 0.749703 0.242444 -0.371636 0.195490 -0.178908 0.075271 0.190349 0.060974 0.154925 0.248103 -0.281501 -0.148191 -0.017638 -0.178074 0.441051 0.303540 0.268819 -0.449523 0.432616 -0.018325 -0.108188 0.608872 0.282668 -0.479423 0.202141 0.400471 -0.478765 0.009100 0.092922 -0.182539 -0.012966 -0.284377 0.075445 0.209227 -0.431015 -0.341364 -0.092017 -0.415699 0.467736 0.087536 0.267141 0.038600 -0.302951 -0.033740 0.612783 0.102702 -0.069676 -0.129268 -0.168220 -0.470949 -0.474701 0.065396 0.150172 -0.324718 -0.149247 -0.329672 -0.102993 0.445171 -0.231751 0.048932 -0.465239 0.024315 0.186555 0.064705 0.132971 -0.338651 -0.253862 -0.015026 -0.102256 0.236042 -0.177301 0.281775 0.437869 -0.222989 0.378871 0.179185 0.033025 0.138172 0.330476 -0.208154 0.408997 -0.144046 0.334478 0.088420 0.373129 -0.270809 -0.042728 -0.085313 -0.202576 -0.135236 0.341812 -0.404463 -0.019138 0.337182 -0.285122 -0.257780 0.249955 0.149446 0.349612 -0.076557 -0.025626 -0.244156 0.002094 -0.162248 0.092366 0.319276 -0.065958 -0.419079 -0.063432 0.212538 -0.183773 -0.336026 0.169219 0.043644 0.413667 -0.370002 0.199397 0.088692 -0.009808 -0.461051 -0.367574 0.079256 -0.193087 -0.296452 0.267215 -0.655612 -0.116987 -0.238780 0.141728 -0.560410 -0.021550 -0.060399 0.461496 0.041301 -0.079836 0.236951 0.036428 0.215183 0.030481 0.070794 0.023429 0.307291 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -1.313007 -3.126204 1.193029 -0.476723 3.090955 -1.702530 -0.617943 4.328799 1.384710 -0.061584 -3.154250 -1.124553 -2.034325 -2.753873 0.784419 -1.433339 2.518770 -0.398478 -1.690424 -0.799829 1.581825 3.376215 -0.773493 -2.101629 0.919768 -0.446816 -1.599782 -0.695249 -1.350114 1.037451 0.080444 1.895396 4.783482 2.707102 3.308543 1.869610 2.764639 2.935407 -0.503502 3.249743 0.675473 2.713124 -0.490343 -2.380815 -0.107956 -2.015074 -0.809869 0.086683 0.193156 -0.819609 1.495174 0.950368 1.104163 1.640865 -1.502666 -2.018727 -0.641404 0.098103 1.029795 2.270611 -4.405963 -0.242605 -0.828867 1.197824 -1.261321 2.744724 1.397661 0.526842 -0.809592 0.596806 2.928117 -3.150035 -2.580764 -1.256976 -0.427674 0.157075 2.829600 1.461826 4.840718 0.282085 -1.170807 0.429220 -1.029626 1.191389 -1.434681 -1.503939 -1.975820 -1.878432 1.566216 -0.590669 -1.545391 0.804640 -2.998837 -0.200030 -4.702866 0.204660 -1.295891 1.461414 0.798761 -2.457917 0.786313 0.275233 -0.468938 1.872987 -2.264237 -0.536913 2.236788 0.207057 -0.723938 2.106700 -1.242798 1.517573 0.881837 -0.254659 1.064488 1.984970 -2.507673 1.953217 -2.456025 -0.309885 -1.063834 -0.061469 2.071882 0.649875 -0.216421 -0.738652 1.438622 2.636474 -1.075843 0.684163 1.061030 -1.931498 -3.867031 0.475346 2.119634 2.189422 0.058285 -0.674426 1.179818 -0.872968 0.279504 -2.222370 -1.646083 -1.838018 -0.090048 -1.974189 -0.537580 -0.107064 -1.508565 1.189476 -0.757957 -0.165106 1.602958 -0.853766 -2.712486 -2.028033 -2.489818 0.445181 3.971282 -1.843261 -1.674147 0.165297 -0.840948 1.600916 0.937090 0.901313 0.624431 -0.974498 0.518364 1.857965 -0.729092 -1.205144 2.308029 2.406124 2.047210 -2.898012 -1.552753 -3.645761 1.191448 2.355567 1.278473 -3.313076 -1.280889 1.625446 1.837341 -0.641115 -0.561947 0.518671 -0.820036 -3.449622 2.165582 0.589002 -2.339290 -0.069784 1.449151 -1.924248 0.529392 0.467050 0.646710 -0.853088 -2.269039 -1.449965 5.319475 -0.122044 0.725592 0.671950 -0.996219 1.961042 -3.655344 0.469969 -0.116500 0.587185 1.738962 -0.761592 1.201671 2.826730 -2.152822 1.009981 -0.520494 -0.092736 0.569653 -2.880706 0.166954 -3.924597 -2.524840 -1.782444 -0.375647 2.491063 -3.196973 -1.753413 2.453772 -0.564619 2.738289 2.886240 0.962469 -2.657852 1.586782 -1.153521 1.664948 -1.188454 1.848548 -0.192822 2.104183 -1.304632 -2.301399 -1.684904 0.101868 -1.682207 1.614172 -2.272150 1.377051 1.616280 -0.617355 -0.010669 2.028167 -0.091796 -0.313834 -0.718135 -0.152489 -2.320975 0.498572 -1.582121 2.613724 2.235450 -0.989901 -3.406513 -0.630798 2.222584 -4.262173 -0.465059 0.122888 -0.714009 3.246824 -1.184591 -0.660659 2.068368 0.981986 -0.987342 -2.844552 0.623669 -0.537201 -0.909865 -0.065663 -0.989785 -2.905637 -0.875370 1.196619 -2.013973 -1.959976 -0.083410 1.337390 1.856825 -0.303130 -0.829923 1.379029 -0.055072 -0.028558 0.177208 1.641038 0.736850 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.317931 0.110941 -0.004202 -0.198651 0.853206 -0.235221 -0.057017 0.546806 0.342815 0.311973 -0.500779 -0.194828 -0.089005 -0.429897 0.159407 0.044943 0.176703 0.386475 -0.260526 -0.246789 0.219325 0.214239 0.008940 -0.233402 -0.057171 -0.355568 -0.217804 0.099192 -0.134993 0.071259 -0.299850 0.322508 0.665202 0.024225 0.452999 0.378772 0.409075 0.511147 0.138615 0.441389 0.384835 0.164829 -0.118444 -0.604169 0.198239 -0.273656 -0.371238 -0.263883 0.166011 -0.488330 0.648070 0.285464 0.104282 0.005229 -0.221138 0.130052 0.118264 0.146150 0.423618 0.332945 -0.607681 0.074192 -0.271491 0.535439 -0.377937 0.448315 -0.050489 -0.745935 -0.390804 0.467899 0.423193 -0.385751 -0.425304 -0.059471 -0.007510 -0.177664 0.265252 0.093354 0.491407 -0.119542 -0.442342 0.263404 -0.198148 0.352806 -0.010730 -0.058889 -0.378966 -0.133212 0.163781 -0.304595 -0.242741 0.446618 -0.314281 0.361863 -0.356191 -0.178832 0.126790 -0.070618 0.001497 -0.455433 0.170013 0.019474 0.072397 0.265557 -0.116440 -0.190511 0.398616 0.320978 -0.014848 0.187287 0.036648 0.114123 0.105481 0.098976 0.010332 0.113500 -0.610525 0.366976 -0.137783 -0.066112 -0.152900 -0.010917 0.291067 0.042408 0.200757 -0.411377 0.449194 0.172379 -0.253264 -0.094758 0.177577 -0.049492 -0.386566 -0.084850 0.371818 0.114063 -0.050983 0.057133 0.098633 -0.164280 -0.270169 -0.253682 -0.332350 0.122651 -0.324350 -0.013613 -0.098224 -0.215970 -0.172457 0.224688 0.158015 0.230448 0.494172 0.286256 -0.205539 -0.271759 -0.630019 0.232858 0.678627 0.065925 -0.395038 0.262584 -0.217797 0.135862 0.249178 0.211029 -0.041306 0.237097 0.046912 0.074349 -0.353839 -0.060975 0.511876 0.392882 0.246346 -0.491249 -0.054986 -0.224285 0.017663 0.803863 0.347587 -0.623156 -0.027309 0.563396 -0.171312 -0.231056 0.147540 -0.335180 -0.228010 -0.333867 0.202325 0.329694 -0.559219 -0.259196 0.261341 -0.390432 0.359843 0.039649 -0.087652 0.019247 -0.552339 -0.011798 0.875210 0.115558 0.106642 0.014447 -0.318193 -0.037638 -0.599369 0.015560 0.326814 -0.141570 -0.082004 -0.271383 -0.056455 0.623323 -0.278134 0.149661 -0.187649 0.084555 0.274976 -0.237837 0.093760 -0.565936 -0.211009 -0.063082 -0.153024 0.153248 -0.292005 -0.030316 0.340206 -0.269154 0.361364 0.620235 -0.105896 -0.079496 0.296552 -0.166101 0.475164 -0.115761 0.115794 0.194339 0.350768 -0.296414 -0.085391 -0.198063 0.056643 -0.374357 0.436334 -0.503359 -0.024584 0.294016 -0.293401 -0.296362 0.260967 0.368299 0.248445 -0.112246 -0.147484 -0.247436 -0.006076 -0.206707 0.226324 0.298315 -0.163840 -0.470698 0.086167 0.291221 -0.595377 -0.335462 0.188011 0.087004 0.578763 -0.407119 0.237892 0.264758 0.122698 -0.687021 -0.329533 -0.033897 -0.304770 -0.195677 -0.005833 -0.624056 -0.512629 -0.179712 0.336670 -0.358023 -0.066029 0.067513 0.523832 0.174622 -0.058330 0.294912 0.096384 0.108340 0.054348 -0.076972 0.071497 0.353927 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -2.238689 1.825289 0.382600 -2.305140 5.661046 -0.283442 0.718038 2.274979 -0.231950 1.655520 -4.546870 -0.314951 -0.213075 -4.021127 0.752905 -0.677058 0.756336 1.204775 -1.341980 0.401824 1.575949 -0.897610 0.247951 -2.742321 -0.182961 -2.709197 -0.958292 0.252225 0.708194 0.966274 -0.421659 0.825094 3.436681 0.494773 2.178480 2.201741 1.909060 3.470719 0.208831 0.483666 1.703427 1.587567 -0.715432 -4.142859 0.972077 -2.281475 -2.981012 -1.999292 0.723435 -3.747844 0.977195 2.387266 0.604681 -0.958932 -2.384693 1.174515 3.679841 -0.016841 2.953398 2.042068 -2.666352 -0.758559 -1.830419 1.270612 -1.765118 2.157743 0.891463 -3.367593 -1.393066 2.886490 0.896428 -1.754193 -2.685782 -0.386389 1.107873 -1.555899 1.724673 -0.382773 -0.515714 -1.762783 -1.285823 1.168949 -0.729291 3.012856 0.066604 -0.197914 -0.181930 -0.859332 1.313778 -2.277319 -2.041464 2.933895 -1.293420 0.457972 -2.394403 1.688654 1.040005 -0.479471 -1.689802 -2.628514 1.194301 0.842654 0.233840 -0.651860 -1.698146 -3.051020 2.125475 2.116374 -0.596482 2.112224 0.101783 1.123364 0.331187 0.902102 -2.393532 1.607204 -3.677801 0.859283 -0.829819 0.186629 -0.961883 -0.475006 1.815381 0.715782 1.116903 -2.863221 3.895061 2.306422 -1.567570 -1.676648 1.258031 -1.037866 -2.610357 0.139821 1.517653 0.766776 0.477080 0.368991 0.471200 -1.352359 -1.556262 -1.586910 -1.397004 3.065118 -3.338680 -0.039147 -0.330678 -0.665801 -1.246713 1.261231 0.997495 0.192207 3.557062 1.336909 -1.446115 1.449036 -2.716789 1.824624 5.967797 1.848681 -2.822190 1.393269 -1.304565 1.096787 1.074970 0.301764 0.444151 1.181506 -2.372100 -0.820951 -0.268360 -1.922668 3.111254 2.315322 1.663696 -4.630526 2.747057 -1.024760 0.140284 4.749989 2.742528 -3.982958 1.043708 3.888737 -2.748698 -0.762597 0.678949 -1.474961 -1.161860 -1.841352 1.179885 0.804211 -3.032723 -2.969071 -0.657235 -2.990099 2.830192 0.814470 0.472482 -0.715251 -1.947753 -1.188692 5.224170 0.204760 -0.532567 -0.016423 -1.099115 -1.710303 -4.118684 0.187260 1.523756 -2.205357 -1.021453 -2.029638 -0.333505 3.586163 -2.810896 0.250025 -2.881261 0.171572 1.439535 0.438953 1.120920 -3.143151 -1.968562 -0.475418 -0.545080 1.097773 -1.825120 1.035952 3.018082 -1.647185 2.678008 0.971550 -0.960436 0.605423 2.913148 -0.907133 3.317082 -0.552629 4.043530 0.660556 3.061978 -2.003123 -0.495299 -0.905694 -1.572690 -1.637437 3.169888 -3.786274 -0.022912 2.600684 -1.001216 -2.693116 2.741895 1.682443 1.817108 -0.950455 -0.151921 -1.336591 0.006602 -1.005455 1.036216 2.046905 -1.240059 -3.406137 -1.006957 2.847732 -2.065989 -1.758681 1.424892 0.583899 3.768861 -2.591593 2.255915 0.813145 -0.001410 -3.969831 -3.142289 1.275757 -2.319955 -1.794354 1.554568 -4.528795 -1.857400 -1.591699 1.885430 -3.094301 -0.855560 0.310046 3.362160 0.688551 -0.518968 1.724560 0.294512 1.268930 -0.278154 0.699180 0.409448 1.978453 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.930451 0.463296 -0.358509 -0.697611 2.526462 0.011445 0.075875 1.067298 -0.296858 0.880635 -1.596399 -0.107284 -0.220181 -1.673982 0.367158 0.399845 0.414416 0.419659 -0.557286 -0.201008 0.658003 -0.389090 0.249256 -0.889936 -0.034508 -1.191004 -0.364635 0.158576 0.666466 0.238374 -0.741340 0.296858 1.400448 -0.010488 0.651568 0.732747 1.069174 1.259077 0.170223 -0.280707 0.580260 0.732127 -0.448912 -1.631572 0.565431 -1.067421 -1.205456 -0.631613 0.532792 -1.286321 0.368114 1.010491 0.141850 -0.376868 -0.914743 0.583176 1.447000 -0.213147 1.378225 0.743156 -0.960098 -0.806680 -0.683331 0.938852 -0.801092 0.852334 0.105746 -1.554529 -0.828534 1.073635 0.193934 -0.731298 -1.042041 0.015846 0.434538 -0.689881 0.673941 -0.056318 0.473673 -1.024640 -0.955485 0.399083 -0.662353 1.357098 0.042111 -0.106194 0.029873 -0.332055 0.554417 -1.086306 -0.676812 1.103703 -0.577927 0.439061 -0.829204 0.410946 0.196650 -0.148377 -0.686149 -1.030248 0.327131 0.375988 0.214307 -0.428653 -0.047140 -1.144927 0.813524 0.507568 0.154453 0.749328 0.465173 -0.008214 -0.040045 0.509816 -0.818132 0.112813 -1.406469 0.382600 -0.102715 0.174306 -0.578740 0.011334 1.013757 -0.019479 0.685762 -1.432119 1.404968 0.717587 -0.597406 -0.718298 0.448925 -0.407065 -1.049247 0.152300 0.773843 -0.012829 0.017617 0.067759 0.468033 -0.381340 -1.299746 -0.249964 -0.687423 1.272452 -1.749056 0.023682 -0.249777 -0.501073 -0.364873 0.535432 0.452353 0.437022 1.447455 0.810577 -0.696900 0.996285 -1.337358 1.022087 2.468005 0.813353 -1.231544 0.529559 -0.888172 0.560173 0.625955 0.191084 0.336013 0.537298 -0.539960 0.116188 0.198935 -0.372440 1.413439 0.747644 0.988523 -1.778951 0.681582 -0.252029 0.200683 1.941453 0.920340 -1.844413 0.993751 1.514359 -0.860351 0.097438 0.211104 -0.800843 -0.509867 -1.078351 0.531399 0.758408 -1.447240 -1.045228 -0.179854 -1.165946 1.311478 0.273092 0.128009 0.255884 -0.959200 0.014193 1.967583 0.176063 -0.055082 -0.306010 -0.661700 -1.066675 -1.621239 0.190171 0.500168 -0.998352 -0.421959 -1.049518 -0.439016 1.753370 -0.673829 0.231361 -1.829157 0.570340 0.610025 0.367989 0.584533 -1.116575 -0.737281 -0.003114 -0.447077 0.439074 -0.986469 0.298841 0.954181 -1.002048 1.106805 0.212634 -0.137513 0.276131 0.904020 -0.341940 1.300256 0.001381 1.707709 0.183706 1.305145 -0.820966 0.104541 -0.442658 -0.442298 -0.611594 1.215943 -1.557001 -0.186516 1.302978 -0.518049 -1.389897 0.844748 0.692744 1.016221 -0.315425 -0.522598 -0.415543 0.005156 -0.277199 0.517963 0.915728 -0.655463 -1.312897 -0.322194 0.921062 -0.876985 -0.727444 0.680162 0.221511 1.551592 -1.159660 0.711471 0.295411 0.257662 -1.618046 -1.305870 0.226162 -0.539139 -0.599449 1.093339 -2.085051 -0.713317 -0.704702 0.674032 -1.420382 -0.072914 -0.154891 1.403460 0.104275 -0.086538 0.927475 0.316581 0.381145 -0.264532 0.221698 0.276750 0.638111 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -1.949682 1.388261 -0.059144 -2.000160 6.500004 0.407273 0.611360 2.881077 -0.981995 1.861549 -4.052143 0.524817 0.173548 -3.247566 0.888078 0.361026 0.261929 0.692626 -1.694666 -0.741919 1.242496 -0.011918 0.403811 -2.228771 -0.279824 -2.718260 -1.002578 0.335814 1.110059 1.211705 -1.584353 0.496358 2.633845 -0.613929 1.083521 1.564473 3.118709 2.378422 -0.460687 0.257419 2.183511 1.087837 -0.876109 -3.340437 0.831432 -2.413159 -3.465537 -1.158465 0.962865 -3.662722 0.859714 2.151658 0.626779 -1.212463 -1.326847 2.211353 2.829868 -1.298852 2.634365 1.884027 -3.123263 -1.897547 -1.811460 3.024385 -1.407282 3.092223 0.103249 -3.854726 -2.573881 3.089657 0.598486 -1.642027 -2.457241 -0.344976 0.957649 -1.389880 1.436870 -0.407308 1.435357 -1.577660 -1.191500 1.353628 -1.052787 2.687509 0.360262 -0.305735 0.017832 -0.881990 1.186090 -2.106923 -2.132831 3.303805 -1.379907 0.913797 -3.684930 -0.168962 0.565518 -0.479532 -1.166959 -2.686156 0.967611 1.531552 0.218225 -1.961076 -0.501350 -3.024494 1.610302 2.251442 0.122496 1.729722 -0.859793 0.083561 -0.425528 0.848802 -1.305361 1.127510 -3.166333 0.887110 -0.530066 0.488996 -1.691275 -0.536377 2.527440 0.680718 1.208129 -2.618044 3.594443 1.406042 -2.131330 -1.442521 1.026547 -0.644108 -2.504329 0.730487 1.190496 0.359334 0.075366 0.565931 1.247838 -1.171292 -2.566615 -1.501665 -1.463688 1.998101 -3.936145 -0.047433 -0.264404 -0.347033 -1.169862 1.707111 1.351192 0.523165 3.373981 1.481394 -0.779082 2.156958 -2.859861 2.396183 5.404058 2.169451 -2.624213 1.164369 -2.407286 1.337318 1.019978 0.085290 -0.274026 2.350395 -1.684480 0.161759 0.015462 -1.338443 3.184434 2.601037 1.838368 -4.357136 1.222170 -2.282518 0.613874 3.852458 3.303409 -4.341400 1.763950 3.741746 -1.321855 -0.345405 0.716146 -2.208095 -1.776672 -1.769547 0.939590 1.454721 -2.941564 -2.646044 -0.155370 -2.416712 2.950193 0.733942 0.059280 -0.161650 -1.701341 -0.529200 4.192465 0.296360 -0.271117 -0.169101 -0.905624 -2.418833 -3.569997 0.227627 2.092522 -2.179345 -1.369705 -2.114353 -0.838947 3.628044 -2.362307 0.545915 -3.639335 0.939435 1.331959 0.495960 1.668628 -3.012089 -1.492726 -1.154534 -0.983467 0.930855 -2.696955 0.421152 2.198120 -1.855447 3.296487 0.521979 -1.361575 -0.306173 2.381383 -0.220351 2.909160 0.504299 3.447975 0.606904 2.986569 -1.954198 0.153617 -1.347443 -1.488192 -1.303760 3.156056 -3.747020 -0.306156 2.476238 -1.256211 -2.841384 2.503054 1.869881 1.793604 -1.067669 -0.829706 -0.757883 -0.374707 -1.300702 0.920182 1.835175 -2.383826 -3.156658 -0.894741 2.336151 -3.050798 -1.695244 1.546970 0.860149 3.624665 -2.387996 2.087467 0.951929 0.356712 -4.992157 -2.681476 0.258128 -1.543142 -1.846185 1.290421 -4.209339 -2.350624 -1.510171 1.710903 -3.311976 -1.658666 0.381539 3.088160 0.088030 0.110168 2.014206 0.684921 0.963613 -0.412660 0.702660 0.834622 0.923023 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = -0.358222 0.103536 -0.055112 -0.350278 1.203107 0.007452 -0.092982 0.603660 0.384731 0.383127 -0.727863 -0.195903 0.037689 -0.400632 0.159597 0.119584 0.014763 0.233000 -0.476303 -0.406550 0.205438 0.326575 0.074463 -0.342030 -0.081143 -0.372722 -0.350116 0.113481 -0.043699 0.154119 -0.502077 0.145621 0.571818 -0.172864 0.318927 0.286120 0.685881 0.445128 -0.155687 0.536581 0.600276 0.161647 -0.170226 -0.580902 0.144206 -0.456537 -0.624953 -0.198402 0.218234 -0.657966 0.672116 0.321339 0.162962 -0.167375 -0.082057 0.394616 0.158585 -0.011812 0.484852 0.374620 -0.783339 -0.008513 -0.420747 0.797177 -0.372040 0.868959 -0.145636 -0.930556 -0.748799 0.625092 0.395880 -0.425446 -0.548553 -0.101905 0.062495 -0.180871 0.321708 -0.034334 0.907788 -0.144547 -0.311461 0.354081 -0.236589 0.357097 0.017285 -0.077812 -0.265508 -0.158123 0.171937 -0.332822 -0.420358 0.585524 -0.386558 0.390273 -0.604637 -0.452499 0.038506 -0.076583 -0.031679 -0.512052 0.170536 0.282385 0.021780 0.035882 0.062337 -0.351515 0.437312 0.601782 0.028181 0.097924 -0.186028 0.007335 -0.012251 0.130799 0.067188 0.160268 -0.587570 0.255016 -0.188974 0.048774 -0.311907 -0.048200 0.486903 0.148833 0.229152 -0.383125 0.643516 0.129836 -0.516405 -0.061725 0.195219 -0.058888 -0.529407 0.118568 0.233319 0.139977 -0.067369 0.093000 0.243188 -0.265646 -0.427711 -0.207207 -0.318276 -0.109854 -0.427317 -0.054358 -0.028926 -0.099815 -0.226135 0.414877 0.284582 0.123508 0.647455 0.262908 -0.113240 -0.208292 -0.629524 0.430519 0.849216 0.011781 -0.479776 0.235575 -0.451543 0.279809 0.270241 0.127966 -0.210298 0.556039 0.049886 0.228920 -0.410877 -0.148976 0.627509 0.521985 0.320183 -0.680280 -0.143790 -0.582457 0.153862 0.836269 0.653647 -0.844509 0.015683 0.674564 -0.068300 -0.195641 0.175525 -0.389626 -0.333335 -0.356389 0.202040 0.348855 -0.546381 -0.436764 0.258478 -0.435028 0.536577 0.073331 -0.149938 0.006991 -0.522400 0.027391 0.899620 0.114305 0.027094 0.072266 -0.181175 -0.142026 -0.681124 0.004326 0.503977 -0.278957 -0.183082 -0.322605 -0.016607 0.711845 -0.450816 0.165269 -0.339212 0.131610 0.267877 -0.269536 0.298912 -0.546826 -0.220912 -0.337002 -0.269515 0.190129 -0.565000 -0.137004 0.389322 -0.301287 0.606099 0.512048 -0.322121 -0.298337 0.414071 -0.009242 0.565280 0.041331 0.092735 0.135258 0.495036 -0.327107 -0.004222 -0.320200 -0.109921 -0.313662 0.603408 -0.660760 -0.044556 0.323121 -0.360667 -0.354415 0.455265 0.427082 0.285197 -0.177664 -0.200567 -0.272347 -0.066269 -0.234397 0.163772 0.312970 -0.373120 -0.640074 -0.046414 0.361225 -0.822202 -0.429756 0.241601 0.112812 0.749024 -0.426107 0.332647 0.364540 0.107090 -1.041748 -0.264069 -0.226212 -0.289335 -0.215657 -0.007418 -0.624051 -0.685395 -0.235601 0.361961 -0.332737 -0.335525 0.174137 0.595280 0.247745 -0.063998 0.366999 0.151937 0.201336 0.084979 -0.098582 0.194057 0.165494 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -1.159024 1.624167 0.919976 -1.053928 1.913874 -0.441609 0.693321 0.564714 0.253579 0.566123 -2.499321 -0.716625 -0.245932 -1.973210 0.388505 -1.027272 0.356629 1.004782 -0.247297 0.498666 0.911580 -0.631002 -0.257414 -1.631912 0.065801 -1.333604 -0.676387 -0.118660 -0.103745 0.575639 0.369386 0.733167 1.980591 0.837649 1.584002 1.640015 0.183172 2.192473 0.475840 1.004998 0.552978 1.062149 -0.432872 -2.425515 0.593514 -1.032474 -0.745138 -1.552938 0.042197 -1.685523 1.141098 1.091048 0.286277 -0.225912 -1.515591 -0.141370 1.907073 0.917509 1.416629 1.183745 -0.918990 0.756604 -0.811508 -0.108857 -0.989297 0.943322 0.856948 -1.554322 -0.044671 1.050709 1.181668 -0.917819 -1.458518 -0.196003 0.137206 -0.708835 0.830183 -0.158764 -1.710237 -0.586918 -0.940077 0.569543 -0.058551 1.641432 -0.070954 -0.380420 -0.865025 -0.351238 0.897843 -0.943940 -1.214461 1.483173 -0.271048 0.199549 -0.508291 1.241109 0.996318 -0.044631 -0.562625 -1.050433 0.805772 0.210165 0.093730 0.763232 -1.716293 -1.440723 1.292082 1.179729 -1.037552 1.103182 0.447833 1.154129 0.654069 0.259953 -1.387157 0.956473 -1.949152 0.663835 -0.416235 -0.228858 0.169071 -0.231467 0.022151 -0.011272 0.347794 -1.216074 1.699984 1.430285 -0.634035 -0.787283 0.698374 -0.773789 -1.458171 -0.381334 0.780787 1.007657 0.261034 0.164028 -0.509412 -0.893464 0.139045 -1.342865 -0.695220 2.023022 -1.139858 -0.209382 -0.296610 -0.487917 -0.832271 0.484165 0.130026 0.109651 1.621911 0.784223 -0.818501 -0.410369 -1.210103 0.395552 2.821424 0.946155 -1.356826 0.580730 0.181121 0.295898 0.670049 0.163620 0.221493 0.320616 -1.485031 -1.021059 -0.901167 -1.491016 1.420513 1.502254 0.687412 -1.905242 2.183450 0.125193 -0.725480 2.532157 0.995539 -1.338624 -0.252997 1.861915 -1.862344 -0.899264 0.443998 -0.453534 -0.332277 -0.748855 0.333512 -0.001796 -1.540880 -1.491185 -0.375384 -1.696721 1.366518 0.538611 0.649410 -0.678128 -1.143210 -1.245139 2.933748 0.132874 -0.313312 0.032691 -0.373643 -0.261895 -1.979206 0.260030 0.754051 -0.900690 -0.673372 -0.890830 0.358173 1.535429 -1.751647 -0.004696 0.048283 -0.668673 0.610684 -0.132334 0.360066 -2.050922 -1.203797 -0.002610 0.159526 0.725581 -0.077666 0.979264 2.035234 -0.606820 0.697851 1.632470 -0.036741 0.414324 1.744625 -0.627868 1.429970 -1.050812 1.595231 0.412307 1.423705 -1.008369 -0.826342 -0.015174 -0.471986 -0.877084 1.528229 -1.580925 0.309104 1.039777 -0.697520 -0.684843 1.500273 0.606431 0.811393 -0.576878 0.393617 -0.959664 0.319547 -0.269271 0.269815 1.259819 0.111129 -1.809019 -0.519796 1.183953 -0.823207 -0.907035 0.585992 0.030640 1.708958 -1.230615 1.131803 0.258935 -0.352918 -1.682904 -1.522753 0.959972 -1.558173 -1.119589 0.676910 -1.945027 -0.589951 -0.864506 0.810600 -1.538008 -0.363808 0.064170 1.465669 0.569706 -0.337459 0.513563 0.019690 1.005519 0.126906 0.045043 -0.099858 1.630591 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = -2.164570 2.163553 1.066029 -2.187283 3.944139 -0.620520 0.717643 1.283623 0.940020 1.116428 -4.459584 -1.345294 -0.584259 -3.686296 0.558385 -1.501387 0.693288 1.710513 -1.017741 0.846249 1.778552 -1.037598 -0.007172 -2.913975 0.033707 -1.868555 -1.179363 -0.060593 -0.333257 1.053724 0.445927 0.999792 3.370564 1.473206 2.580620 2.447662 0.657406 4.214389 0.341621 2.098663 1.203032 1.893851 -0.589369 -4.538608 1.450838 -2.138897 -1.764288 -2.721561 0.323579 -3.561260 2.269057 2.099878 0.616911 -0.729655 -2.577974 -0.171716 3.596790 1.525311 2.623187 2.109968 -2.094838 1.012268 -1.726410 -0.603564 -1.823018 2.118461 1.817034 -2.909467 -0.710723 2.146043 2.164567 -1.941215 -2.951220 -0.554785 0.539267 -1.151639 1.704611 -0.355667 -1.906092 -1.121626 -1.489601 0.837113 -0.340876 2.775519 -0.332266 -0.427079 -1.129572 -0.801844 1.475253 -1.767801 -2.109864 2.432065 -0.711653 0.771840 -1.323671 1.996389 1.059804 -0.288366 -1.672666 -1.815272 1.311050 0.718284 0.213391 1.331434 -3.230034 -2.600997 2.844437 2.272742 -1.598450 1.413673 0.880983 1.645071 0.729811 0.571947 -2.555595 2.233364 -3.522026 0.816656 -0.644492 0.007962 -0.041627 -0.397567 0.519289 0.046437 0.603682 -2.222679 3.572500 2.475478 -1.464029 -1.406182 1.457384 -1.197525 -2.544251 -0.396382 1.537550 1.369263 0.392487 0.306259 -0.582146 -1.675284 -0.391476 -2.045620 -1.354356 3.079311 -1.830406 -0.247243 -0.526470 -1.093270 -1.251107 0.774170 0.335469 -0.105765 3.074125 1.221144 -1.510438 -0.552075 -2.093484 1.082605 5.353458 1.630057 -2.637847 0.963216 0.261104 1.062184 1.216236 0.129116 0.557173 0.659534 -2.139268 -1.252956 -1.395724 -2.419386 2.569549 2.656252 1.568046 -4.087726 3.209772 -0.026446 -0.421657 4.824739 2.152807 -2.841900 -0.396587 3.366118 -3.079026 -1.343649 0.467868 -0.330169 -0.594981 -1.344001 1.033452 0.043146 -2.798223 -3.172015 -0.745479 -3.085121 2.456178 0.800971 1.092739 -1.136606 -2.350461 -1.657383 5.247510 0.123417 -0.851234 0.277683 -0.794757 -0.448276 -3.791601 0.428784 1.413701 -1.684491 -1.140649 -1.529971 0.570974 3.033854 -3.048529 -0.263181 -0.308956 -0.986584 1.157218 -0.594138 0.888671 -3.605267 -2.117307 -0.237129 0.136227 1.533082 -0.301880 1.044480 3.545541 -1.261259 1.509417 2.663450 0.059354 0.636178 3.266125 -0.863767 2.847795 -1.689573 3.307956 0.359536 2.728206 -1.596474 -1.066419 -0.249315 -0.732503 -1.424300 3.006319 -3.050852 0.351906 2.030587 -1.208943 -1.445001 2.853327 1.280905 1.577482 -0.845280 0.579544 -1.615723 0.378794 -0.386375 0.564200 2.195400 -0.075885 -3.433215 -1.263694 2.329385 -1.573304 -1.609182 1.245312 0.149897 3.476758 -2.233085 2.176260 0.615915 -0.897230 -3.006150 -2.459214 1.501031 -2.662773 -1.690776 1.481036 -3.628476 -1.263673 -1.459165 1.877995 -2.247101 -0.316945 -0.153242 2.684823 1.451053 -0.500747 1.308150 0.199407 1.765040 0.124053 0.007821 0.122362 2.887403 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = -2.308786 3.225508 1.860310 -2.367658 3.683687 -0.347778 1.012765 1.017184 0.989030 1.023498 -5.037305 -1.424725 -0.597806 -3.690404 0.623175 -1.802263 0.144709 2.156185 -0.844816 0.796389 2.111659 -1.079570 -0.209016 -3.442558 0.176752 -1.817091 -1.487330 -0.435578 -0.901948 1.837148 0.754817 1.017593 3.116571 1.902675 2.395610 2.809660 0.355075 4.948526 0.225901 3.782559 1.133917 2.193851 -0.778682 -5.366006 2.224826 -2.566996 -1.155358 -3.506103 0.052273 -4.226794 3.685128 2.112555 0.733000 -1.047332 -2.658947 -0.688419 3.957059 2.089251 2.560656 2.502574 -2.040315 1.709978 -1.880616 -1.337803 -1.893144 3.055795 2.842653 -3.272967 -0.746319 1.975783 3.526629 -2.178098 -3.457783 -0.756408 -0.133681 -0.982628 1.632605 -0.607805 -3.184466 -0.551373 -1.756462 0.816513 -0.131136 3.073977 -0.424472 -0.879075 -2.166958 -0.852168 1.976752 -1.482901 -2.849812 2.914254 0.012472 1.442147 -1.664724 1.680433 1.232632 -0.205853 -1.474656 -1.210870 1.610841 1.517123 0.271469 2.109120 -4.862958 -3.075319 3.697529 2.937007 -2.588825 0.876213 0.930486 1.710750 0.538776 0.308792 -2.630653 3.074298 -3.787632 0.895956 -0.021294 0.144742 0.313364 -0.608776 -0.286126 -0.798843 0.217401 -1.863960 3.810478 2.523457 -2.016019 -1.518567 1.805285 -1.303740 -2.837051 -0.525598 1.475277 1.991260 0.072910 0.586020 -1.286504 -2.221313 -0.210947 -3.381931 -1.573215 3.685983 -1.585174 -0.460022 -0.828528 -1.403664 -1.508132 0.688932 -0.030242 -0.163919 3.076954 1.606667 -1.123296 -1.552244 -1.866874 0.992065 5.543201 2.808140 -2.817371 0.475679 1.101462 1.312025 1.486917 -0.420103 0.217969 1.405599 -2.401240 -1.607758 -2.255116 -3.275530 2.587830 4.015131 1.982608 -4.224774 3.749845 0.211867 -0.900256 5.006504 2.486792 -2.405960 -1.050462 3.495339 -3.129029 -1.791029 0.404057 0.155375 -0.654033 -0.813105 0.677269 -0.301935 -3.085482 -4.022744 -1.051034 -3.381403 2.840973 1.006768 2.044520 -1.430676 -2.761618 -2.073921 5.258350 0.151765 -1.308612 0.367480 -0.328587 -0.374110 -3.688881 0.908471 2.212989 -1.712471 -2.058061 -1.511935 1.058700 3.002343 -3.705130 -0.787393 1.469081 -1.899892 0.990650 -1.369146 1.303205 -5.009786 -2.335626 -0.541839 0.754427 2.221138 0.747281 1.255853 4.347858 -1.319469 1.157459 4.499695 1.123643 0.293592 4.070756 -0.403661 2.531679 -2.382264 3.175773 0.129635 2.945693 -1.510164 -1.319231 0.135231 -0.157316 -0.987750 3.451144 -2.921021 0.563573 1.900343 -1.919454 -0.575686 3.488925 1.261598 1.786952 -1.119707 1.045676 -1.532898 0.483873 -0.170602 -0.069084 2.728360 0.063476 -4.005887 -1.863951 1.884651 -2.043550 -1.729811 1.492790 0.096814 3.641863 -2.185460 2.658161 0.383305 -1.895107 -3.667572 -2.046787 1.543420 -2.894701 -2.360348 1.654235 -3.431753 -1.062151 -1.656207 2.057165 -2.635731 -0.557217 -0.800319 2.218538 1.670592 0.187482 1.400435 0.398026 2.488432 0.378051 -0.490891 0.119272 3.684997 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -5.552194 4.542324 3.761143 -2.582521 8.886763 0.963989 4.190133 3.499721 -4.506190 6.113170 -8.601039 -2.373408 -2.667124 -6.664697 -0.187110 -4.811522 1.373857 -0.594588 -1.598100 2.228773 3.177762 -4.300789 -0.118749 -4.197261 -0.947735 -7.457970 -2.493163 0.147735 7.133894 -0.773491 0.515440 -0.034053 10.084175 0.937802 8.723680 5.966496 1.984992 6.572241 0.531682 -2.693848 -1.610203 6.367332 -4.684148 -5.910031 -1.363422 -5.342017 -4.957852 -3.195397 2.047545 -3.720871 -1.896482 5.577441 -0.936239 1.583044 -4.349484 3.972190 6.723760 -0.366280 9.702672 1.800300 -3.461164 -1.162572 -5.260025 4.986266 -2.075956 1.755079 -1.854480 -5.207258 1.396233 -0.426402 -2.408872 -3.178780 -1.954355 5.282921 3.513805 -5.740987 2.846479 -2.040380 -9.080997 -7.575150 -4.940086 1.727854 0.912953 6.884942 -0.001466 -0.127395 1.855396 1.696402 0.188664 -9.606245 -0.777665 8.264911 -4.809072 -2.769059 -3.046449 6.168136 0.248847 3.787791 -4.747603 -3.819691 1.860394 0.258226 0.805481 -7.585440 0.617474 -7.497807 1.350274 0.467949 -0.153040 4.919164 3.512337 3.655086 5.995507 6.820792 -7.910127 2.181211 -6.127542 2.522400 -2.450463 -0.212020 -0.217039 2.388747 0.687504 2.261769 7.173038 -9.241828 3.226162 3.614820 -2.701116 -7.676353 -0.706539 -7.274809 -6.387499 -1.307765 2.844055 2.309538 1.620265 -4.822055 0.538762 -1.640801 -1.699654 -2.508826 1.432133 7.309468 -8.443610 -1.198120 -0.542214 -0.111221 -4.046742 6.377607 3.871753 3.210533 8.365126 4.214297 -2.967068 3.763964 -6.458968 0.590454 10.566951 2.047794 -7.314976 5.546045 -5.936947 -0.216378 3.407675 3.137625 4.873453 0.522765 -8.006975 -4.112333 3.611744 -1.416928 8.944131 2.623470 2.597114 -4.100407 10.320467 -2.672382 -5.675116 8.382506 5.549066 -8.264877 3.145051 3.554653 -6.679171 -0.832183 4.654174 -6.304117 -1.013138 -5.311360 -0.426922 2.309701 -3.933635 -1.214769 0.944429 -8.166987 9.742908 0.967180 2.790204 1.382699 -5.012420 -7.298428 9.607402 0.051813 -0.910467 -3.418651 -2.601660 -7.038421 -8.231730 1.150300 -0.209285 -4.308798 -3.307407 -7.408068 1.500994 4.883297 -1.934938 5.471890 -7.321918 -2.031868 2.737408 2.491752 4.362577 -2.966924 -4.703723 -1.409160 -1.920540 4.155189 -5.006105 7.526378 9.354557 -2.666919 7.168430 -2.482506 -5.033078 1.401829 3.693368 -7.237670 7.594404 -1.642014 6.182394 0.093621 5.593153 -5.322243 -2.120662 0.077338 -2.645041 -2.429478 3.944385 -4.696637 0.209041 0.925665 -6.145725 -3.822770 1.688133 -1.085780 0.844410 0.041160 1.071811 -6.984263 -0.413958 -5.148785 1.287455 5.546899 -0.254776 -5.437397 1.795948 0.525328 0.239311 -0.735202 0.403564 -0.076120 4.984663 -6.998845 -1.957182 0.292343 0.553497 -5.334217 -9.856355 0.507358 -6.647971 -6.112070 5.629847 -7.540462 1.006154 -5.578538 -1.911032 -9.596249 -4.107927 2.802644 10.470836 2.235310 -5.089876 1.761749 -0.830946 6.127632 0.322961 2.540165 0.845395 3.109378 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -1.157732 0.072981 -0.022274 -0.591686 2.664585 -0.018852 0.130824 1.427350 0.547458 0.654002 -1.972399 -1.047860 -0.711703 -1.473509 0.451178 0.066680 0.502915 0.640144 -1.209543 -0.792242 1.104039 0.351641 0.049221 -1.209132 0.266432 -0.411987 -0.914201 -0.129427 0.086715 0.744289 -1.206415 0.577230 1.748336 0.357729 1.015833 0.882326 1.513835 1.962253 -0.628264 1.413591 0.692474 1.291556 -0.578819 -2.228852 1.063940 -1.661228 -1.039681 -0.758417 0.580512 -1.627313 1.784000 1.056343 0.315965 -0.123212 -0.402226 0.233052 1.168912 0.549604 1.407525 1.261955 -1.676146 -0.056662 -1.073120 0.758251 -0.819595 2.312812 0.440136 -2.215155 -1.639267 0.814975 1.332165 -1.452321 -1.693470 -0.171879 0.123772 -0.254027 1.178643 0.153924 1.293067 -0.548541 -1.680228 0.262141 -0.814868 1.413508 -0.429369 -0.577918 -0.633403 -0.678303 0.827636 -1.019600 -1.064215 1.454376 -0.865401 1.332103 -1.751576 -0.879964 -0.430520 0.361778 -0.926141 -1.125495 0.510018 0.889840 0.140522 0.380875 -0.877572 -0.934236 1.679223 1.114108 -0.161746 0.302844 0.560256 -0.095858 -0.085552 0.423589 -0.433946 0.884146 -1.435801 0.680422 -0.295714 0.348058 -0.304702 0.065163 1.001689 -0.517676 0.507275 -1.184226 1.464261 0.770228 -1.365241 -0.462551 0.756214 -0.912264 -1.759595 -0.056136 1.161284 0.521294 -0.315047 -0.065286 0.362258 -0.853304 -1.193907 -0.651006 -1.210737 0.154361 -1.263104 -0.476149 -0.539193 -0.885891 -0.652193 0.840655 0.190907 0.427423 1.465199 0.946275 -0.910488 -0.490312 -1.453109 1.109321 2.641201 0.553343 -1.628646 0.152717 -0.632228 1.245361 1.076570 -0.019101 0.129976 1.123561 0.270508 0.862841 -0.939829 -0.563809 1.672423 1.801233 1.453515 -2.037369 -0.031582 -1.081047 -0.091628 2.401725 1.549271 -2.091033 0.088814 1.415984 -0.374963 -0.307877 0.006627 -0.573906 -0.579107 -1.329060 0.713772 0.744196 -1.901798 -1.267109 0.632697 -1.556072 1.521511 0.329668 0.505162 0.087642 -1.986331 -0.201785 2.659661 0.143502 -0.244043 -0.109468 -0.554019 -0.570340 -1.828932 0.512084 0.771071 -0.571003 -0.984399 -1.002083 0.096894 2.235146 -1.020304 0.205247 -0.435264 0.160833 0.464968 -0.958682 1.267110 -1.962796 -1.222417 -0.680534 -0.510320 1.263865 -0.895569 -0.493065 1.506905 -1.103140 1.157632 1.659701 -0.120515 -0.669494 1.321141 -0.053446 1.221890 -0.373443 1.116469 -0.223965 1.683341 -1.049503 -0.288034 -0.441815 0.398643 -0.728947 1.846280 -1.438057 0.179242 0.909761 -1.308024 -0.739826 1.279657 0.494688 0.997188 -0.391226 -0.423378 -0.912099 0.131219 -0.214832 0.310874 1.462859 -0.642104 -1.854547 -0.728166 0.286624 -1.738331 -0.756179 0.892224 -0.174004 2.191985 -1.151572 0.467406 0.672997 -0.357909 -1.962448 -1.013311 -0.552220 -0.842968 -0.747881 1.218273 -1.571845 -0.856069 -0.823306 0.880898 -1.172377 -0.548117 -0.414450 1.351652 0.872580 0.131072 1.139214 0.813484 1.040998 0.050904 -0.317042 0.472360 0.997091 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -5.072113 3.036251 2.709289 -2.099200 7.854458 0.524849 3.010090 2.646621 -3.372978 5.452077 -7.237774 -2.948596 -3.042435 -5.994420 -0.198646 -3.352542 1.827023 -0.208748 -1.596297 1.797343 2.998818 -3.838555 0.212575 -3.270072 -0.748024 -5.614376 -2.608281 0.471116 6.359683 -1.900207 -0.333119 0.196744 9.459504 0.799331 8.102023 5.234987 1.677251 6.363840 0.666181 -3.482013 -1.458994 6.034236 -4.253592 -5.580207 -0.632343 -4.886385 -4.174945 -3.110075 2.410990 -2.499866 -1.354207 5.087631 -1.028459 1.474875 -4.230869 3.157275 5.910326 0.333478 9.125440 1.509957 -2.859114 -0.235227 -4.716712 3.855966 -2.411082 1.626567 -2.305278 -4.931891 0.912719 -0.596172 -1.435284 -3.730001 -2.334560 4.751366 2.951022 -5.023852 2.716890 -1.517972 -6.221720 -7.747112 -5.590036 1.228178 0.009959 6.134826 -0.424675 -0.118226 1.496939 1.504844 0.080701 -8.702974 -0.255957 6.598355 -4.450469 -1.878531 -1.307514 5.301253 -0.476059 3.180287 -4.828216 -3.344638 1.421123 -0.396478 1.004590 -5.327576 2.182853 -5.694785 1.298534 -0.037386 0.477657 3.714732 4.796218 2.913036 5.769078 6.108113 -6.742893 0.988673 -5.563680 2.183096 -2.230100 -0.335423 -0.092091 2.932104 0.746545 1.323309 6.769293 -8.660211 2.659758 2.923663 -2.384248 -6.534559 -0.427458 -6.268951 -5.760213 -1.341766 3.134503 1.640831 1.150183 -4.501149 0.619958 -1.298128 -2.062044 -0.907981 1.015348 6.190303 -7.114913 -0.986925 -0.740120 -1.062203 -3.002052 5.482150 3.419577 3.381215 7.693452 4.161408 -3.381916 2.607910 -6.382065 0.765040 9.205329 0.590089 -6.740650 4.963668 -5.030605 0.037334 3.589386 3.464632 4.942224 -0.420768 -5.781015 -2.951585 3.125358 -0.493847 8.035242 1.387309 2.787605 -3.282312 8.193999 -1.247825 -4.595754 8.045508 3.684886 -7.511439 3.051444 3.053730 -5.170328 -0.597040 3.929587 -5.429250 -0.883563 -5.229879 0.086599 2.586261 -3.975341 -0.904005 1.084983 -7.314177 8.615616 0.489408 1.560887 2.049593 -5.315250 -5.782912 8.830514 0.083184 -0.518626 -3.228152 -3.007760 -5.111748 -7.598213 1.206730 -0.655629 -3.639312 -2.621575 -6.720981 1.409733 4.824661 -0.927447 4.957413 -6.681936 -1.267492 2.701074 2.092110 3.878438 -2.236083 -4.181182 -0.365053 -2.146299 3.598506 -4.528001 6.137560 8.005910 -3.011341 5.589366 -1.684541 -3.876987 1.565909 2.940331 -6.719720 7.083570 -1.438093 5.684692 -0.200564 4.851226 -4.524219 -1.675946 0.183793 -1.321328 -2.396640 3.296585 -4.106608 -0.012163 0.886266 -5.375900 -3.772715 1.069546 -0.802285 0.797737 0.468410 0.276523 -6.249020 -0.198989 -3.741468 1.438801 5.070836 -0.055663 -4.917120 1.869225 0.338281 0.457973 -0.253005 0.405771 -0.247952 4.683746 -6.462068 -2.052935 0.250504 1.002315 -4.034896 -8.523452 0.138665 -5.530862 -4.301738 5.954596 -6.752045 0.667483 -4.999618 -1.494691 -7.450854 -2.249572 2.061979 9.422019 2.728701 -4.826123 1.801610 -0.562206 5.270927 0.123915 1.509163 0.686839 2.929251 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.737702 0.096571 -0.103335 -0.436238 1.820602 0.050425 0.015395 1.102791 0.282079 0.569256 -1.236598 -0.466243 -0.257849 -0.816235 0.233253 0.183745 0.182449 0.384574 -0.788412 -0.503026 0.621634 0.309141 0.036417 -0.690936 0.045462 -0.333678 -0.575164 -0.000139 0.168145 0.308631 -0.841766 0.234835 1.138013 0.020992 0.745671 0.570238 1.079353 1.059494 -0.344017 0.786972 0.496500 0.750477 -0.436191 -1.220367 0.485537 -1.027098 -0.769474 -0.378818 0.394563 -0.996210 1.194407 0.645292 0.176208 -0.071794 -0.145106 0.385723 0.582697 0.117998 0.973588 0.699284 -1.181191 -0.046249 -0.731717 0.954368 -0.505002 1.479894 0.079122 -1.430024 -1.041326 0.515912 0.837425 -0.983798 -0.973407 0.046164 0.065627 -0.266244 0.729617 -0.037141 1.136775 -0.506208 -0.925249 0.270007 -0.522498 0.804946 -0.237103 -0.283704 -0.499893 -0.291424 0.359917 -0.755438 -0.623058 0.982754 -0.696998 0.779444 -1.185777 -0.606247 -0.251125 0.267775 -0.483326 -0.750020 0.312726 0.587183 0.086256 0.049176 -0.096536 -0.551236 0.861437 0.710357 -0.000479 0.269265 0.154869 0.046116 0.108883 0.410701 -0.095017 0.437804 -0.921069 0.434665 -0.277250 0.257067 -0.244495 0.085536 0.765435 -0.121296 0.469934 -0.773809 0.889849 0.351989 -0.861215 -0.348558 0.399632 -0.584994 -1.099196 -0.016394 0.604684 0.329666 -0.201043 -0.153938 0.328242 -0.476489 -0.878109 -0.497189 -0.598902 -0.054647 -0.897714 -0.281582 -0.253768 -0.384798 -0.413195 0.702211 0.308205 0.293637 1.038881 0.592987 -0.402686 -0.267551 -0.984549 0.647777 1.571948 0.275079 -1.031590 0.253725 -0.642722 0.629770 0.694562 0.130631 0.026166 0.793714 0.076482 0.447920 -0.456226 -0.270377 1.155433 0.990072 0.792535 -1.166607 -0.017452 -0.802303 -0.131568 1.566392 1.000662 -1.417316 0.075732 0.803189 -0.027079 -0.167130 0.132104 -0.522511 -0.470740 -0.753608 0.375392 0.513961 -1.046291 -0.743125 0.494994 -0.972682 1.084488 0.135887 0.115029 0.084495 -1.218111 -0.010299 1.635865 0.157535 -0.175730 -0.073649 -0.304019 -0.353599 -1.152069 0.257450 0.537411 -0.355900 -0.592681 -0.694334 0.080842 1.319662 -0.612335 0.229310 -0.555701 0.028309 0.338852 -0.624321 0.766683 -1.244628 -0.666178 -0.593632 -0.318734 0.744516 -0.764362 -0.177967 1.051879 -0.645187 0.826328 1.023368 -0.209726 -0.497490 0.808435 -0.183287 0.879800 -0.130379 0.489916 -0.089425 0.970896 -0.695076 -0.163437 -0.369150 0.275049 -0.421301 1.070996 -0.869909 0.070384 0.413839 -0.884903 -0.443124 0.738084 0.323810 0.493207 -0.181591 -0.341654 -0.632304 -0.042555 -0.341655 0.126754 0.867513 -0.502928 -1.177373 -0.256816 0.137675 -1.116269 -0.395194 0.440349 -0.007742 1.328428 -0.771501 0.246626 0.471476 -0.094973 -1.396267 -0.661094 -0.454888 -0.496761 -0.497438 0.591737 -0.965814 -0.699589 -0.554804 0.439790 -0.829520 -0.482125 -0.034334 1.004776 0.572348 -0.076446 0.686763 0.382565 0.745502 0.129644 -0.135643 0.288399 0.504701 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -3.205664 1.836815 1.748899 -1.478665 5.451574 0.305434 1.642028 2.121856 -2.016006 3.558038 -4.708392 -1.859545 -1.640898 -3.648088 -0.071969 -2.403982 0.870056 -0.180338 -1.359214 0.946973 1.763928 -1.822888 -0.035544 -2.013805 -0.633068 -3.622269 -2.005753 0.446433 3.859149 -1.521778 0.087855 0.103362 6.154477 -0.076119 5.016222 3.366747 1.490528 3.641480 -0.084410 -1.601184 -0.462189 3.654338 -2.769718 -2.818936 -0.913537 -2.947121 -3.075117 -1.163361 1.548215 -1.534733 -1.342094 3.194547 -0.534501 1.026223 -2.174038 2.823914 3.201676 -0.253515 5.708221 1.042412 -2.392175 0.024553 -3.379845 3.768727 -1.609714 1.630285 -2.100772 -3.449592 0.084103 -0.150490 -1.050920 -2.471461 -1.612517 3.075608 1.788235 -3.267153 1.861038 -1.062447 -3.221551 -4.838142 -3.269197 1.149237 0.342135 3.575188 -0.235191 -0.105010 1.301247 1.014473 -0.212335 -5.586169 -0.302345 4.228765 -3.403872 -1.345671 -1.582701 2.613684 -0.286145 2.134266 -2.733207 -2.548774 0.967992 -0.251096 0.526003 -3.789427 2.071313 -3.464135 0.270590 0.223664 0.543303 2.659168 2.246841 2.206926 3.646059 3.953476 -3.943681 0.205164 -3.418782 1.519994 -2.012934 -0.145870 -0.280442 1.668203 0.941607 1.484076 4.441033 -5.309082 1.676674 1.510374 -1.787354 -4.016841 -0.361163 -3.976010 -3.883202 -0.809809 1.794876 1.201062 0.747027 -2.823592 0.805522 -0.674317 -1.049104 -0.461194 0.653138 3.048020 -4.640868 -0.740625 -0.294528 -0.184733 -2.043113 3.892806 2.563660 2.132792 5.123183 2.336434 -1.863969 1.571399 -4.233480 0.466736 5.769713 0.219825 -4.202530 3.410219 -3.685956 -0.055790 2.194750 2.348621 2.686428 0.312574 -3.606699 -1.905857 1.772101 -0.286969 5.339100 0.730144 1.288050 -2.130783 4.819087 -1.575507 -3.014829 5.370670 2.878456 -5.035995 1.963105 1.947819 -2.853776 -0.714481 2.806292 -3.811480 -0.957726 -3.159884 -0.074925 1.748704 -2.285265 -0.437643 1.221007 -4.590264 5.502947 0.229443 0.482454 1.415338 -3.408693 -4.545754 5.444462 0.260195 -0.269958 -2.069134 -1.749193 -2.980911 -4.874232 0.657470 -0.187792 -2.192687 -1.528589 -4.251561 0.923341 3.060284 -0.836893 3.452955 -4.885095 -0.892146 1.743929 0.947354 2.629308 -1.119988 -2.527475 -0.819275 -1.592811 2.037345 -3.552059 3.582835 5.199766 -1.773052 4.145434 -1.145598 -3.513648 0.353547 1.878675 -4.332501 4.695311 -0.477844 2.967665 0.052867 3.014807 -3.203030 -1.168567 -0.026425 -1.155897 -1.676419 1.940599 -2.594277 0.053052 0.212359 -3.613183 -2.296939 0.791227 -0.565335 0.270990 0.246326 0.148343 -4.175050 -0.280662 -2.198426 0.878637 3.137679 -0.163865 -3.089355 1.511266 0.240852 -0.147790 -0.318783 0.104271 -0.045568 3.057909 -4.142940 -1.287868 0.497634 0.887739 -3.186590 -5.371027 -0.372359 -3.598278 -2.896877 3.072101 -4.026266 0.023920 -3.128279 -0.991586 -4.268017 -2.281493 2.015179 6.213258 1.680203 -3.607588 1.166577 -0.459898 3.488015 0.258825 0.952873 0.356545 1.413327 +PE-benchmarks/naive-algorithm.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -2.611193 1.439779 1.410850 -1.205219 4.517405 -0.228600 1.283754 1.460178 -0.701186 2.535060 -3.935774 -1.342763 -1.347821 -3.531454 0.216229 -1.897720 1.242501 0.386731 -0.915891 0.483534 1.581307 -1.435612 -0.046808 -1.890507 -0.230763 -4.052979 -1.528241 0.313583 2.699958 -1.038314 0.285629 0.595499 5.243696 0.384342 3.997437 2.834884 1.905813 3.301485 0.238423 -0.780463 -0.073676 2.901937 -1.908735 -3.032472 -0.050394 -2.269528 -2.515243 -1.369564 1.191891 -1.610154 -0.885206 2.612858 -0.268456 0.745474 -2.139725 1.668210 3.447296 -0.147952 4.311261 1.165662 -1.716061 -0.104327 -2.328583 2.466325 -1.789387 0.897370 -1.155102 -2.924884 -0.195383 0.401695 -0.483526 -1.843870 -1.643676 1.894257 1.625754 -2.461974 1.571668 -0.479331 -2.114502 -3.906450 -2.818499 0.814285 -0.014735 3.221829 -0.135783 -0.223896 1.115250 0.244032 0.378547 -4.059895 -0.561449 3.209862 -2.572610 -0.676892 -0.989682 2.237557 0.141393 1.332176 -1.972018 -2.746791 0.746247 -0.484603 0.431352 -1.426837 0.535210 -2.573091 0.505954 -0.105810 0.074986 2.320766 1.647353 1.496888 2.371436 2.654925 -3.600554 0.227747 -3.149089 1.584242 -1.267229 -0.128344 -0.139151 0.997086 0.893450 1.158231 3.105871 -4.236578 1.798362 1.644265 -1.182044 -2.756938 -0.047965 -2.900499 -3.130171 -0.698883 1.799996 0.911831 0.608366 -1.860126 0.574665 -0.641572 -0.766256 -0.908903 -0.185643 2.839331 -3.993643 -0.510766 -0.421883 -0.683967 -1.707218 2.449574 1.569767 1.599440 3.902664 2.103245 -1.977262 2.297496 -3.531858 0.541731 5.148532 0.686114 -3.309333 2.437309 -2.682203 0.219740 2.080945 1.768316 2.006972 -0.343081 -2.750622 -1.093016 1.314120 -0.557248 4.119771 0.820562 1.140931 -2.999506 3.682726 -0.249238 -2.084838 5.088730 1.956117 -4.407445 2.021873 2.125433 -2.892464 -0.624824 1.648166 -2.836962 -0.963633 -2.981023 0.596938 1.332342 -2.293889 -0.610250 0.774349 -3.670976 3.870672 0.368667 0.467770 1.217720 -2.655956 -3.871381 5.177189 -0.076439 -0.010410 -1.587438 -1.636183 -1.587206 -4.173554 0.489379 -0.324610 -2.153775 -0.903274 -3.339655 0.708119 3.341236 -0.988882 2.403033 -4.394466 -0.470994 1.427558 1.010442 1.514078 -1.907640 -2.256241 -0.202292 -0.985845 1.254016 -2.565967 2.433371 4.065812 -1.797692 2.748361 -1.264065 -3.040794 0.709368 1.703801 -3.211723 3.671496 -0.734252 3.163844 0.259820 2.627962 -2.781486 -1.024790 -0.188824 -0.953728 -1.809549 1.841417 -2.625453 0.124682 1.191838 -2.498966 -2.330828 1.017910 0.045114 0.826861 -0.056101 -0.083668 -3.017720 0.290202 -1.239204 0.914329 2.603655 0.060691 -2.860040 0.783952 0.897487 -0.449594 -1.160882 0.356821 -0.039867 2.796322 -3.273884 -0.452965 0.496138 0.570920 -2.503306 -5.000673 0.579056 -3.299749 -2.146240 2.527817 -4.100862 -0.277323 -2.443342 -0.250523 -3.618267 -1.107185 1.208667 4.696755 1.296281 -2.312716 1.255384 -0.116565 2.407532 -0.169255 0.895344 0.423456 1.654228 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -2.509784 1.458357 0.990014 -1.251008 4.501195 -0.721899 1.651850 1.433197 -1.685973 2.306404 -3.641467 -0.845176 -1.248204 -3.733464 0.455172 -1.462083 1.405977 0.562925 -0.576988 1.089349 1.573761 -1.823093 -0.069281 -1.908142 -0.273944 -3.680189 -0.854851 0.399182 2.954742 -0.900525 0.007816 0.804539 4.848243 0.173379 3.690514 2.851970 1.378088 3.048465 0.698685 -2.786584 -0.076787 2.699538 -1.684568 -3.063005 -0.279440 -1.840200 -2.486426 -1.430390 1.282590 -1.360294 -1.711312 2.595971 -0.231833 0.475660 -2.661785 1.800108 3.604823 -0.154686 4.092005 1.162971 -1.092533 -0.494273 -2.011706 2.248292 -1.711584 0.123390 -1.285727 -2.527885 0.233809 0.806350 -1.162938 -1.536957 -1.352169 1.525287 1.673744 -2.527744 1.527396 -0.315287 -2.185835 -3.917179 -2.630372 0.708908 -0.388596 3.356315 -0.117552 -0.074005 0.997972 0.230062 0.577569 -3.739202 -0.580879 2.846829 -2.205574 -1.289204 -0.409908 3.023763 0.897462 0.754618 -1.986427 -2.741275 0.797892 -0.838417 0.569963 -2.001232 1.201304 -2.383200 -0.033430 -0.126292 0.429246 3.089822 1.563361 1.686503 2.100731 2.262035 -3.172803 -0.193104 -3.299214 1.329240 -1.546449 -0.201131 -0.239367 0.976871 1.309846 1.061896 2.824649 -4.293967 1.988720 1.853329 -0.405769 -2.603447 0.273287 -2.283479 -2.685746 -0.799429 1.922503 0.649342 0.614630 -1.383022 0.881240 -0.294592 -0.760559 -0.101992 -0.248027 3.473194 -4.308487 -0.200628 -0.507103 -0.654937 -1.261296 1.939910 1.382076 1.540969 3.709721 2.119167 -2.162858 2.662556 -3.475129 0.765623 5.092894 0.320073 -2.974187 2.392025 -2.528496 -0.101286 1.670980 1.744760 2.073352 -0.304312 -2.994574 -1.485254 1.599839 -0.661170 3.855439 0.271760 1.058096 -2.906953 3.858875 -0.365300 -1.722849 4.445070 1.582071 -4.187629 2.296195 2.430887 -3.209615 -0.617807 1.496974 -2.828653 -0.708640 -2.981492 0.723860 1.431875 -2.448955 -0.732742 0.116313 -3.342653 3.360303 0.359160 -0.028512 0.870345 -1.999866 -2.693853 4.909373 0.215705 0.007871 -1.723369 -1.854831 -2.242369 -4.139033 0.465318 -0.620178 -1.988309 -0.837096 -3.170291 -0.048034 3.105127 -0.981333 1.938787 -4.778143 0.194642 1.524206 2.055961 1.204873 -1.206896 -2.066619 0.405648 -1.040837 0.792986 -2.490479 2.593637 3.577234 -1.935669 2.383859 -1.478026 -2.571234 1.374214 1.775101 -3.184582 3.572557 -0.348450 3.835775 0.498915 2.437319 -2.652256 -0.853786 -0.172108 -1.509430 -1.830516 1.649057 -2.721475 -0.042763 1.526479 -1.671613 -2.837972 0.964313 0.434697 0.974488 -0.096735 -0.139609 -2.592998 0.244152 -1.466138 1.084101 2.438710 -0.161355 -2.569990 0.799044 1.471717 -0.239903 -1.139234 0.460787 0.145124 2.662187 -3.205466 0.034720 0.216672 1.110985 -2.205795 -4.902459 1.149975 -2.770711 -1.925452 2.719551 -4.122374 -0.236789 -2.210446 0.206054 -3.922197 -0.973953 1.076918 4.330345 0.583498 -1.982541 1.274783 -0.284768 1.870948 -0.377257 1.046719 0.056277 1.534950 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.614029 1.628973 2.224908 -0.771221 3.280677 1.107927 0.991440 2.456080 -1.837592 2.185410 -2.989215 -0.376621 -0.975785 -2.160866 -0.172274 -2.175968 0.387790 -0.515471 -0.922937 0.500950 1.231080 -1.018486 -0.225253 -1.704300 -0.342749 -2.747840 -1.175541 -0.290234 2.371451 0.280811 0.427636 -0.327607 3.845190 0.212446 2.947135 2.023150 1.757086 2.291050 0.000000 0.110688 -0.679367 2.544617 -1.855790 -2.135254 -0.394200 -2.541586 -1.217108 -0.311977 0.240758 -1.509602 -1.306002 1.675092 -0.242122 0.858326 -0.759048 1.488035 1.826523 -0.522716 3.270715 0.691453 -1.838488 -1.101485 -2.117638 2.117908 -0.772880 1.524029 -0.848839 -1.944286 0.163583 -0.634166 -0.886653 -0.989281 -0.443557 2.114506 0.862247 -1.779571 1.036704 -0.922860 -3.064324 -1.687676 -1.609114 0.527234 0.130422 1.747874 0.099747 -0.386787 0.785977 0.661303 0.221808 -3.555577 -0.454467 2.939535 -2.241582 -0.539648 -2.021005 0.995625 -0.235118 2.044969 -1.390713 -1.276590 0.697777 0.733948 0.059605 -3.371512 0.073455 -2.955150 0.630460 0.077337 -0.081334 1.777950 0.358059 1.290266 2.104709 2.286783 -2.890375 1.013553 -1.656085 0.811588 -1.286083 0.155897 -0.317552 0.817956 0.335189 0.970907 2.635177 -2.863329 0.718133 1.110904 -1.456821 -2.411275 -0.108223 -3.212923 -2.528439 -0.378574 0.866486 1.172836 0.753190 -2.153953 0.025150 -0.777252 -0.640212 -2.295024 0.443689 1.790403 -3.498536 -0.854665 -0.220372 0.250273 -1.637619 2.548543 1.347729 0.962140 2.673155 1.364857 -0.864583 1.781842 -2.016530 -0.013280 3.766943 0.922634 -2.849929 1.740446 -2.531710 0.174742 1.281917 0.650406 1.550182 1.181041 -2.960063 -1.699767 0.733358 -0.600614 3.211674 1.578554 1.018758 -1.881775 3.230760 -1.636558 -2.437253 3.145573 2.054274 -3.109225 1.069995 0.865574 -1.902510 -0.210347 1.193931 -2.403547 -0.295221 -1.929010 -0.648402 0.748829 -1.370756 -0.208630 0.932038 -3.085431 3.687521 0.602658 1.513386 0.267424 -1.918822 -3.558265 3.434068 -0.033858 -0.528140 -1.395006 -0.566966 -2.421086 -3.032922 0.453108 -0.052865 -1.628295 -1.481617 -2.727201 0.890142 1.743530 -0.876751 1.822841 -3.135978 -1.352621 0.658657 0.167629 2.099951 -2.099766 -1.910560 -1.464858 -1.153685 2.162357 -2.275553 2.268896 3.876789 -0.495377 3.144388 -0.816069 -2.904618 -0.401131 1.494074 -2.443183 2.465748 -0.967571 1.678051 -0.201976 2.117991 -2.342327 -0.742311 -0.297286 -0.656948 -0.555619 1.349127 -1.486781 0.305115 -0.114396 -2.944807 -0.603469 0.767227 -0.945272 0.193754 -0.077276 0.248327 -2.907733 -0.307995 -1.749042 0.028497 2.169829 -0.559052 -2.276523 0.318295 -0.581812 -0.425222 -0.636279 0.047774 -0.240495 1.416101 -2.401620 -1.123811 0.416282 -0.475637 -2.421605 -3.224175 -0.628445 -2.302095 -2.200722 1.528064 -2.119733 0.490069 -1.924255 -1.049409 -3.475787 -2.271033 0.888816 3.773424 0.739060 -2.003988 0.526199 -0.113199 2.815672 0.603892 1.311349 0.016244 0.697926 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -1.767397 0.455319 -0.228932 -0.642555 2.907283 -0.226700 0.701728 0.813084 -0.572550 1.712674 -2.354998 -1.332629 -1.165660 -2.464658 0.141343 -0.366900 1.102411 0.296578 -0.686745 0.301265 1.137308 -1.246128 0.239718 -1.137546 -0.068360 -1.880451 -0.826188 0.259738 2.011199 -0.885696 -0.677130 0.338754 3.425417 0.281275 2.475486 1.630940 0.883923 2.311020 0.444982 -1.529483 -0.208155 2.108757 -1.266819 -2.161824 0.119738 -1.633841 -1.473117 -0.969648 1.064496 -0.723491 -0.110253 1.735064 -0.248119 0.380271 -1.742366 0.787317 2.358571 0.261465 3.085761 0.649391 -0.791008 -0.225851 -1.325520 1.499101 -1.260545 0.394866 -0.666425 -1.895540 -0.187938 0.199575 -0.294120 -1.456140 -1.349842 1.193561 1.062271 -1.598814 1.108232 -0.165184 -0.717234 -2.833222 -2.330750 0.281542 -0.706684 2.250810 -0.272576 -0.092789 0.451474 0.155733 0.362552 -2.694268 -0.199221 1.733079 -1.526150 -0.173488 -0.027828 1.680436 -0.130345 0.711470 -1.764158 -1.489966 0.291371 -0.380980 0.431861 -0.872775 0.994451 -1.459875 0.537939 -0.183675 0.401791 1.440866 2.172500 0.688211 1.481904 1.736146 -2.027165 -0.423468 -2.038785 0.771087 -0.665597 -0.072190 -0.135230 0.993840 0.796125 0.130221 2.149921 -3.051574 1.174412 1.082114 -0.572721 -1.785656 0.081278 -1.727555 -1.957129 -0.402036 1.420037 0.235815 0.280581 -1.226649 0.521027 -0.268058 -1.222944 0.382756 -0.177771 2.010335 -2.540299 -0.237014 -0.410533 -0.831734 -0.742822 1.444635 0.881742 1.178874 2.518265 1.529062 -1.644901 1.269420 -2.386297 0.742678 3.495669 0.103082 -2.303521 1.455998 -1.727468 0.313571 1.438350 1.228784 1.690578 -0.449332 -1.205138 -0.278286 0.963359 -0.049446 2.693986 0.045672 1.193191 -1.656801 2.128272 0.202529 -0.937237 3.294167 0.837072 -2.842688 1.485734 1.382210 -1.769461 0.059666 0.913448 -1.622387 -0.357029 -2.341757 0.620217 1.160952 -1.758985 -0.423073 0.259981 -2.378259 2.590462 0.145150 -0.014073 1.020923 -2.046908 -1.164398 3.403769 0.108836 0.053970 -1.134201 -1.370135 -1.401907 -2.828965 0.432545 -0.510589 -1.335144 -0.514339 -2.235301 0.120805 2.393956 -0.225656 1.417838 -2.940932 0.284085 0.978580 0.947778 1.031106 -0.765439 -1.452359 0.415958 -0.752166 0.914677 -1.686501 1.415191 2.279842 -1.497761 1.423231 -0.490678 -0.949499 0.785434 0.973970 -2.047820 2.387682 -0.433030 2.255457 -0.058682 1.759802 -1.520484 -0.369521 -0.127115 -0.236874 -1.144323 1.135409 -1.757614 -0.115779 1.076201 -1.361276 -1.868506 0.463545 0.089524 0.861885 0.121960 -0.537095 -1.806772 0.197559 -0.640677 0.754256 1.746887 0.117226 -1.755472 0.446521 0.502217 -0.044257 -0.338021 0.345905 -0.137280 1.948359 -2.207675 -0.408808 0.194803 0.670653 -1.173269 -3.022074 0.198292 -1.480434 -0.968937 2.470610 -2.756504 -0.101331 -1.562556 -0.018930 -2.278521 -0.070729 0.304430 2.997313 0.857149 -1.396612 0.959481 0.074674 1.383223 -0.257716 0.345936 0.311477 1.071066 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -1.767397 0.455319 -0.228932 -0.642555 2.907283 -0.226700 0.701728 0.813084 -0.572550 1.712674 -2.354998 -1.332629 -1.165660 -2.464658 0.141343 -0.366900 1.102411 0.296578 -0.686745 0.301265 1.137308 -1.246128 0.239718 -1.137546 -0.068360 -1.880451 -0.826188 0.259738 2.011199 -0.885696 -0.677130 0.338754 3.425417 0.281275 2.475486 1.630940 0.883923 2.311020 0.444982 -1.529483 -0.208155 2.108757 -1.266819 -2.161824 0.119738 -1.633841 -1.473117 -0.969648 1.064496 -0.723491 -0.110253 1.735064 -0.248119 0.380271 -1.742366 0.787317 2.358571 0.261465 3.085761 0.649391 -0.791008 -0.225851 -1.325520 1.499101 -1.260545 0.394866 -0.666425 -1.895540 -0.187938 0.199575 -0.294120 -1.456140 -1.349842 1.193561 1.062271 -1.598814 1.108232 -0.165184 -0.717234 -2.833222 -2.330750 0.281542 -0.706684 2.250810 -0.272576 -0.092789 0.451474 0.155733 0.362552 -2.694268 -0.199221 1.733079 -1.526150 -0.173488 -0.027828 1.680436 -0.130345 0.711470 -1.764158 -1.489966 0.291371 -0.380980 0.431861 -0.872775 0.994451 -1.459875 0.537939 -0.183675 0.401791 1.440866 2.172500 0.688211 1.481904 1.736146 -2.027165 -0.423468 -2.038785 0.771087 -0.665597 -0.072190 -0.135230 0.993840 0.796125 0.130221 2.149921 -3.051574 1.174412 1.082114 -0.572721 -1.785656 0.081278 -1.727555 -1.957129 -0.402036 1.420037 0.235815 0.280581 -1.226649 0.521027 -0.268058 -1.222944 0.382756 -0.177771 2.010335 -2.540299 -0.237014 -0.410533 -0.831734 -0.742822 1.444635 0.881742 1.178874 2.518265 1.529062 -1.644901 1.269420 -2.386297 0.742678 3.495669 0.103082 -2.303521 1.455998 -1.727468 0.313571 1.438350 1.228784 1.690578 -0.449332 -1.205138 -0.278286 0.963359 -0.049446 2.693986 0.045672 1.193191 -1.656801 2.128272 0.202529 -0.937237 3.294167 0.837072 -2.842688 1.485734 1.382210 -1.769461 0.059666 0.913448 -1.622387 -0.357029 -2.341757 0.620217 1.160952 -1.758985 -0.423073 0.259981 -2.378259 2.590462 0.145150 -0.014073 1.020923 -2.046908 -1.164398 3.403769 0.108836 0.053970 -1.134201 -1.370135 -1.401907 -2.828965 0.432545 -0.510589 -1.335144 -0.514339 -2.235301 0.120805 2.393956 -0.225656 1.417838 -2.940932 0.284085 0.978580 0.947778 1.031106 -0.765439 -1.452359 0.415958 -0.752166 0.914677 -1.686501 1.415191 2.279842 -1.497761 1.423231 -0.490678 -0.949499 0.785434 0.973970 -2.047820 2.387682 -0.433030 2.255457 -0.058682 1.759802 -1.520484 -0.369521 -0.127115 -0.236874 -1.144323 1.135409 -1.757614 -0.115779 1.076201 -1.361276 -1.868506 0.463545 0.089524 0.861885 0.121960 -0.537095 -1.806772 0.197559 -0.640677 0.754256 1.746887 0.117226 -1.755472 0.446521 0.502217 -0.044257 -0.338021 0.345905 -0.137280 1.948359 -2.207675 -0.408808 0.194803 0.670653 -1.173269 -3.022074 0.198292 -1.480434 -0.968937 2.470610 -2.756504 -0.101331 -1.562556 -0.018930 -2.278521 -0.070729 0.304430 2.997313 0.857149 -1.396612 0.959481 0.074674 1.383223 -0.257716 0.345936 0.311477 1.071066 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -2.613202 0.580683 0.323207 -0.825746 4.159013 -0.325287 1.348829 1.225348 -1.364081 2.543517 -3.384422 -1.871724 -1.858427 -3.149782 0.133537 -0.530184 1.649836 0.149489 -0.940112 0.702180 1.661763 -1.869468 0.312497 -1.594166 -0.142002 -2.304589 -1.214277 0.363230 3.261407 -1.378342 -1.027496 0.411686 4.916025 0.356529 3.911384 2.436787 0.954250 3.323696 0.490884 -3.027834 -0.538217 3.254003 -2.015459 -3.016401 0.000764 -2.430970 -2.031444 -1.557261 1.605317 -0.817719 -0.637999 2.568850 -0.452005 0.733239 -2.450483 1.388103 3.366986 0.392630 4.655794 0.851757 -1.063321 0.032037 -2.039774 1.697606 -1.512488 0.558019 -1.523452 -2.675065 -0.068323 -0.047695 -0.581666 -2.419757 -1.536860 1.978748 1.403361 -2.385905 1.736895 -0.245538 -0.880683 -4.714580 -3.523771 0.329193 -0.825703 3.239711 -0.516232 -0.141699 0.543598 0.394578 0.392829 -4.135506 -0.118255 2.395664 -2.422908 -0.684489 0.456932 2.526016 -0.353169 1.283747 -2.691234 -2.133141 0.454471 -0.654869 0.613913 -1.665750 2.288687 -1.931093 0.453348 -0.338801 0.855823 2.004160 3.265356 1.223939 2.570211 2.725978 -2.936070 -0.427433 -2.841474 1.086759 -1.284089 -0.151020 -0.106984 1.735380 1.162936 0.253444 3.332008 -4.563860 1.451423 1.529751 -0.765149 -2.715971 0.093776 -2.783870 -2.933744 -0.712623 2.074742 0.402288 0.450057 -2.062988 0.846371 -0.474978 -1.444880 0.968248 -0.083333 2.984646 -3.904821 -0.431543 -0.591945 -1.116536 -1.036733 2.299974 1.379550 1.820903 3.719605 2.266193 -2.531506 1.463269 -3.536095 0.913574 4.808926 -0.419058 -3.309577 2.249112 -2.521163 0.350253 2.239164 1.894706 2.685981 -0.852808 -1.906623 -0.609161 1.821966 0.072737 4.043265 -0.195326 1.884200 -2.130615 3.235166 -0.228759 -1.647670 4.459563 1.190347 -4.256590 2.063437 1.781616 -2.296086 0.073475 1.470396 -2.547679 -0.491856 -3.336316 0.661644 1.696086 -2.468519 -0.472341 0.548358 -3.543571 3.906085 0.173853 0.033893 1.533492 -2.819742 -1.444810 4.826418 0.318596 0.051660 -1.774978 -2.007814 -2.175871 -4.124116 0.668888 -0.982820 -1.700982 -0.872557 -3.385995 0.296349 3.069634 -0.155988 2.184294 -4.155260 0.396421 1.415350 1.270258 1.691828 -0.764614 -2.173330 0.516283 -1.452688 1.423380 -2.614909 2.351028 3.490544 -2.122682 2.124046 -0.690828 -1.350404 1.135254 1.311375 -3.241575 3.517519 -0.546863 3.645813 -0.173897 2.540142 -2.360885 -0.625467 -0.117639 -0.347937 -1.640708 1.647577 -2.379548 -0.128399 1.169943 -2.150358 -2.677601 0.471762 -0.113446 0.856373 0.282431 -0.558558 -2.999639 0.219643 -1.355802 1.082930 2.604524 -0.004542 -2.657852 0.805850 0.541687 0.126838 -0.456225 0.386465 -0.297243 2.708778 -3.274935 -0.953433 0.230912 1.132297 -1.514087 -4.380055 0.252921 -2.273800 -1.460328 3.787021 -3.653868 0.092585 -2.367905 -0.279288 -3.507706 -0.243356 0.566517 4.510328 1.274453 -2.310702 1.261786 0.023552 2.178454 -0.289016 0.552090 0.172512 1.369669 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -1.748412 0.655745 0.680828 -0.754229 2.882293 -0.389089 0.948264 0.776576 -0.220712 1.626073 -2.507151 -1.405565 -0.971837 -2.019304 0.170724 -0.975461 0.840710 0.331546 -0.747185 0.336741 1.059282 -0.766911 -0.059650 -1.171252 -0.226549 -1.839144 -1.085907 0.305976 1.713132 -0.969064 -0.344526 0.477779 3.461946 0.125592 2.899637 1.906472 0.948431 2.230425 0.089366 -0.983617 0.069723 1.983530 -1.309270 -1.972375 -0.209286 -1.454777 -1.583671 -1.029164 0.911267 -0.680409 -0.040123 1.666633 -0.123623 0.553627 -1.451782 1.093476 1.909592 0.380501 2.944539 0.786113 -1.066212 0.669817 -1.622551 1.638767 -1.164634 0.813387 -1.136223 -2.052171 -0.266908 0.249626 -0.015557 -1.664595 -1.258073 1.182834 0.905509 -1.576761 1.181521 -0.245413 -0.537719 -2.764250 -2.118816 0.569984 -0.228394 2.042328 -0.276015 -0.155450 0.178189 0.254046 0.186042 -2.623391 -0.381217 1.913795 -1.801641 -0.445004 -0.112740 1.290742 0.039164 0.857087 -1.428478 -1.736114 0.510800 -0.441985 0.307881 -0.643533 1.159526 -1.279663 0.254084 0.209111 0.197824 1.364076 1.491886 1.108662 1.835082 1.693314 -1.784220 -0.104208 -2.055496 0.961056 -1.128336 -0.158083 -0.036308 0.937969 0.668238 0.587922 2.093399 -2.790021 1.117387 0.955021 -0.745498 -1.606324 0.064002 -1.775689 -2.138064 -0.579021 1.264061 0.693600 0.297568 -1.235304 0.469258 -0.387469 -0.365427 0.095843 -0.027596 1.477218 -2.276079 -0.377028 -0.298016 -0.539402 -1.006407 1.732678 1.077672 1.108424 2.630907 1.425991 -1.430833 0.477507 -2.472347 0.387792 3.149898 -0.473209 -2.174601 1.650436 -1.745141 0.113695 1.426636 1.402006 1.297443 -0.282818 -1.417942 -0.571007 0.570814 -0.214231 2.792426 0.169734 0.819922 -1.524345 2.108252 -0.462184 -1.336506 3.256511 1.152543 -2.892921 0.865680 1.340882 -1.552934 -0.571108 1.234991 -1.862128 -0.518625 -2.036073 0.439357 0.959406 -1.511570 -0.307419 0.695304 -2.396445 2.499488 0.106987 -0.191789 0.728427 -1.905657 -1.791788 3.526859 0.121689 0.035795 -0.985667 -1.155861 -0.790228 -2.815019 0.345711 -0.286771 -1.055413 -0.620815 -2.139548 0.568224 2.117443 -0.628219 1.555847 -2.246806 -0.195877 0.983725 0.500081 1.074078 -0.828731 -1.395781 -0.048535 -0.785441 0.792218 -1.777773 1.464620 2.652122 -1.214691 1.514714 -0.162976 -1.702131 0.359938 1.143149 -2.173288 2.479440 -0.427237 1.727958 0.090910 1.600688 -1.712770 -0.737510 -0.104360 -0.334935 -1.258569 1.151043 -1.578512 0.079614 0.493465 -1.581109 -1.450996 0.597053 0.144624 0.325801 0.057963 -0.116736 -2.137723 0.167664 -0.993857 0.611131 1.716287 0.096777 -1.872046 0.729767 0.514257 -0.368106 -0.508003 0.148312 -0.110280 1.952762 -2.156606 -0.440894 0.399161 0.678835 -1.523533 -2.981201 0.102802 -2.027505 -1.072656 1.721086 -2.249296 -0.358734 -1.557756 -0.037481 -2.097465 -0.703547 0.898284 3.073867 1.120479 -1.676400 0.739495 -0.121050 1.636067 0.054266 0.220839 0.192721 1.015524 +PE-benchmarks/sudoku.cpp__main = -0.756029 -0.116973 0.230791 -0.297356 1.241076 -0.316722 -0.042723 0.437942 0.860592 0.424333 -1.115752 -1.162672 -0.591692 -0.712789 0.170156 -0.278274 0.455280 0.511913 -0.732484 -0.329491 0.594877 0.314136 -0.051310 -0.588116 0.046164 -0.250716 -0.763032 0.075802 -0.036641 -0.215488 -0.618344 0.479851 1.589906 0.188313 1.262911 0.781310 0.668433 1.270777 -0.240164 0.509264 0.436309 0.898518 -0.439259 -1.154117 0.310272 -0.811917 -0.570523 -0.619113 0.437628 -0.422298 0.957285 0.569272 0.141528 0.205942 -0.376703 0.112323 0.481621 0.726755 1.056399 0.623473 -0.783149 0.969818 -0.743167 0.536084 -0.794167 1.132966 -0.333771 -1.244782 -0.774276 0.288490 1.020399 -0.938422 -1.064153 0.062085 0.168740 -0.277790 0.699484 0.146097 0.896311 -0.754688 -1.252444 0.222578 -0.468196 0.705766 -0.382535 -0.268658 -0.382476 -0.166422 0.322054 -0.704197 -0.451875 0.731459 -0.693857 0.476973 -0.358426 -0.368416 -0.143407 0.260298 -0.519575 -0.796343 0.288558 -0.075864 0.103730 0.870859 0.279409 -0.028444 0.677641 0.580843 -0.048972 0.196014 0.492404 0.313160 0.629678 0.328742 -0.158916 0.149717 -0.891157 0.485157 -0.601021 -0.103595 0.101142 0.356502 0.393343 -0.087957 0.554666 -0.819292 0.648462 0.393009 -0.691019 -0.086559 0.345814 -0.540852 -1.094640 -0.316593 0.745596 0.489374 -0.112466 -0.304591 0.144929 -0.405151 -0.141327 -0.001271 -0.483994 -0.251616 -0.285354 -0.296734 -0.265195 -0.580963 -0.338018 0.625451 0.186498 0.364584 0.984360 0.599766 -0.777649 -1.085913 -1.095953 0.305314 1.280069 -0.792843 -0.949981 0.385087 -0.232054 0.397514 0.751377 0.554468 0.190812 0.124397 0.293988 0.253123 -1.092550 -0.185190 1.088614 0.629118 0.459381 -0.748367 0.075305 -0.310994 -0.310781 1.587781 0.532567 -1.047492 -0.355225 0.697884 -0.371827 -0.653103 0.216765 -0.425463 -0.281019 -0.925580 0.494766 0.401641 -0.915738 -0.308173 0.683518 -0.998137 0.818064 0.027425 -0.316632 0.118712 -1.293376 -0.620078 1.772017 -0.004967 0.042327 -0.109924 -0.504238 0.441533 -1.276764 0.234708 0.094929 -0.150072 -0.303982 -0.619605 0.471170 1.164289 -0.501027 0.405624 -0.086776 -0.153480 0.371242 -0.520858 0.544257 -0.801731 -0.660726 -0.146724 -0.400496 0.502597 -0.572864 -0.131750 1.056879 -0.579732 0.306632 0.960617 -0.705782 -0.310977 0.685091 -0.535948 0.910171 -0.391609 -0.032227 -0.036611 0.720804 -0.544132 -0.423790 -0.131686 0.358399 -0.695127 0.785782 -0.681505 0.144921 0.112445 -0.751421 -0.287779 0.524838 0.240896 0.271629 -0.052019 -0.166714 -1.004401 0.296832 -0.051369 0.193617 0.823059 0.105906 -0.995134 0.103577 0.182437 -0.818110 -0.331523 0.197190 -0.231636 1.173656 -0.776569 0.039140 0.457308 0.134571 -0.768565 -0.663238 -0.372161 -0.845577 -0.153445 0.662752 -0.655389 -0.661942 -0.505339 0.406946 -0.030395 -0.254958 0.244254 0.996684 0.971984 -0.497738 0.425626 0.204611 0.723128 0.235462 -0.478738 0.112614 0.654530 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -3.432793 1.895924 1.518715 -2.200831 6.665537 -0.389289 1.245710 2.035397 0.541407 2.979177 -5.868617 -2.203143 -1.376208 -4.448355 0.432142 -2.278249 1.247287 1.263197 -2.022835 0.013967 2.126223 -0.690579 0.066005 -2.957270 -0.332991 -4.319888 -2.677413 0.447060 1.735689 -0.878736 0.080285 0.967434 6.667481 0.432073 4.706371 3.610040 2.796923 4.917527 -0.282264 1.401623 1.393481 3.368414 -2.127575 -4.493284 0.519754 -3.224475 -3.649970 -2.144156 1.425974 -3.241856 1.140215 3.242068 0.232342 0.272256 -2.530616 2.014912 4.314403 0.192551 5.212128 2.105443 -3.421102 1.124706 -3.215691 3.386797 -2.743386 3.090589 -0.779822 -4.879522 -1.740615 1.714072 1.603820 -3.329163 -3.802153 1.332097 1.526027 -2.685149 2.262063 -0.604662 -0.960095 -4.177420 -3.476400 1.465881 -0.299824 3.828071 -0.295599 -0.543263 0.241520 -0.224354 0.953205 -4.435908 -1.817194 4.346915 -3.084583 0.448919 -2.485108 1.308581 0.109922 1.033624 -2.441157 -3.787954 1.170478 0.079475 0.419457 -0.196997 -0.401832 -3.187477 1.641861 1.606046 -0.550529 2.324063 1.438441 2.023752 2.494466 2.570684 -3.736450 0.915897 -4.503549 2.072219 -1.646281 -0.167650 -0.409127 0.716377 1.314161 1.294256 3.307224 -4.695825 3.401598 2.012927 -2.690429 -2.792087 0.532302 -2.910181 -4.386112 -0.586669 2.239588 1.581452 0.568780 -1.486100 0.549701 -1.496118 -0.985490 -1.828152 -0.916594 2.668861 -4.179355 -0.720723 -0.518094 -1.057806 -2.229387 3.155868 1.898392 1.489285 5.252388 2.472219 -2.244726 1.101537 -4.627224 1.202306 7.006751 1.253168 -4.368056 2.727917 -2.754576 0.960578 2.749658 1.908229 1.408618 0.401042 -2.721958 -0.929557 -0.219904 -1.464059 5.267235 2.222553 1.629989 -4.726929 3.706328 -0.850368 -1.762970 7.354739 3.296480 -5.699418 1.386002 3.656149 -2.977260 -1.639236 1.939504 -3.064158 -1.961020 -3.299640 1.093555 1.468420 -3.282976 -1.942303 1.176323 -4.726631 4.841356 0.555595 -0.051872 0.894399 -4.099867 -4.823539 7.218990 -0.024200 -0.149329 -1.065769 -1.808489 -0.653317 -5.799640 0.625559 0.931439 -2.581686 -1.351634 -3.764097 1.306598 4.755832 -2.476428 2.456607 -4.001186 -0.973733 1.907340 -0.153127 2.093209 -3.855013 -2.840195 -0.861194 -0.966518 1.722900 -3.095161 1.922832 5.299831 -2.349222 3.408212 0.791447 -3.460501 -0.033165 3.047159 -3.077003 4.792926 -1.180822 3.507360 0.385121 3.641170 -3.272762 -1.364965 -0.557054 -0.630716 -2.562744 3.168908 -4.007322 0.219858 1.690678 -3.184605 -2.674535 2.430636 0.859126 1.223594 -0.507227 -0.195645 -3.574462 0.366116 -1.019030 1.009182 3.359433 -0.245942 -4.439382 0.389382 1.763240 -2.177287 -1.693724 0.802511 0.146611 4.456120 -4.069391 0.616266 1.136351 0.263644 -4.598663 -5.461497 0.495378 -4.373676 -2.710838 2.531494 -5.079207 -1.782586 -2.912279 0.772264 -3.544184 -1.769282 1.538933 5.669211 2.284266 -2.499096 1.910389 0.144697 3.175280 0.015573 0.364820 0.728765 2.524008 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.912513 1.435955 1.335963 -1.280050 4.627373 -0.609956 1.385225 1.401153 -0.937147 2.663613 -4.197941 -1.766310 -1.717973 -3.908638 0.257051 -1.825744 1.550256 0.637194 -0.900244 0.949704 1.863365 -1.797548 -0.051714 -2.102527 -0.211195 -3.741033 -1.596406 0.351074 2.835495 -1.385140 0.328759 0.782406 5.779019 0.562292 4.432846 3.205925 1.393094 3.868966 0.444902 -1.486057 -0.257809 3.378245 -2.080314 -3.371329 0.024769 -2.374331 -2.423573 -1.661035 1.379112 -1.457532 -1.003304 2.889912 -0.317812 0.832827 -2.674162 1.629414 3.895471 0.253005 4.795387 1.294223 -1.510272 0.447567 -2.494544 2.149875 -2.038513 0.746562 -1.259747 -3.049116 0.052857 0.303316 -0.264598 -2.296732 -1.937091 1.992601 1.547004 -2.706004 1.848289 -0.405225 -2.296834 -4.619704 -3.407335 0.725343 -0.134623 3.551322 -0.375769 -0.254078 0.940268 0.326160 0.507638 -4.380860 -0.550502 2.999962 -2.709979 -0.872135 -0.406501 2.827501 0.234583 1.343094 -2.401625 -2.836018 0.834336 -0.829081 0.580419 -1.184432 1.040432 -2.411321 0.466468 -0.167856 0.203412 2.603823 2.416302 1.934513 2.756211 2.796982 -3.788081 -0.027131 -3.466074 1.593196 -1.545740 -0.227393 0.054804 1.269383 0.989176 0.925476 3.372062 -4.689465 1.915735 1.868325 -1.020779 -2.953143 0.159138 -3.071424 -3.363834 -1.016396 2.178340 0.966048 0.646030 -1.976158 0.618857 -0.630592 -0.673410 -0.328254 -0.284285 3.392729 -4.215462 -0.511517 -0.604127 -0.976431 -1.580678 2.430688 1.530432 1.792066 4.230424 2.305788 -2.470621 1.865745 -3.861597 0.552279 5.571993 0.418667 -3.558413 2.637497 -2.440198 0.182565 2.316954 2.029476 2.456135 -0.721131 -2.830243 -1.403657 1.357207 -0.633918 4.450209 0.462554 1.343016 -3.041830 4.130696 0.044477 -2.275409 5.593170 1.770683 -4.545594 2.040384 2.303199 -3.156128 -0.788862 1.744273 -2.795801 -0.892091 -3.229673 0.708934 1.419689 -2.608130 -0.764766 0.677369 -4.045256 4.086831 0.342547 0.322362 1.356084 -3.016042 -3.805622 5.577561 0.134370 -0.064294 -1.831030 -1.959988 -1.603970 -4.647246 0.676285 -0.658487 -2.063527 -0.919253 -3.592606 0.694783 3.508143 -0.988024 2.371213 -4.574355 -0.443027 1.580999 1.059629 1.595436 -1.758695 -2.495440 0.211477 -1.099848 1.344151 -2.533095 2.660473 4.478559 -2.080710 2.524160 -0.770989 -2.651900 1.051138 1.956052 -3.651967 4.001202 -0.911213 3.691345 0.221456 2.792173 -2.958683 -1.169670 0.009657 -0.829642 -2.016319 1.858179 -2.736432 0.121550 1.253346 -2.549973 -2.573803 1.038704 -0.032802 0.907506 0.038529 -0.075696 -3.371963 0.423744 -1.099706 1.037310 2.939658 0.351115 -3.070366 0.886370 1.026991 -0.180597 -1.070571 0.391031 -0.159274 3.061123 -3.625227 -0.431488 0.388848 0.791693 -2.258470 -5.249704 0.797093 -3.412599 -2.185435 3.198533 -4.305071 -0.122845 -2.612140 -0.108855 -3.646578 -0.842140 1.100570 4.991572 1.430236 -2.691878 1.359590 -0.198505 2.625093 -0.183975 0.730584 0.098583 1.996711 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -1.233893 -1.050014 0.930377 -0.027275 2.923567 -1.439683 0.283035 1.695854 2.642336 -0.008051 -2.089622 -2.070726 -0.822349 -0.368870 0.724745 -0.882552 1.373846 1.165938 -2.049563 -1.733517 0.935648 2.784181 -0.498746 -1.362734 0.254778 -0.246240 -1.759153 -0.149659 -1.285940 -0.035624 -1.386431 1.684633 3.183213 0.154727 2.404992 1.380869 2.730073 1.793819 -1.386013 2.676119 1.966262 1.136056 -0.489262 -1.665001 0.248514 -1.228875 -1.426163 -0.064787 0.466573 -0.865271 2.323652 0.591657 0.895311 1.073002 0.539361 0.570228 0.155250 0.862626 0.973597 1.617092 -2.849269 2.401627 -1.067247 2.102683 -1.203266 3.306908 -1.262282 -2.966751 -3.046383 1.244807 2.671591 -2.811043 -2.527979 -0.638601 -0.060974 0.052732 1.725868 1.208147 4.801629 -0.752669 -2.338190 0.820461 -0.651456 0.574051 -0.562334 -0.775234 -1.327682 -1.027459 1.115373 -0.593525 -1.394474 1.293783 -2.379313 1.630369 -2.196148 -3.291566 -0.538832 0.716249 -0.032035 -3.238230 0.594721 -0.198262 -0.297039 2.370275 0.265925 0.781881 0.933582 1.483125 -0.231038 0.608433 -1.017946 0.786202 0.623217 -0.117486 0.938646 0.246706 -1.499397 1.643090 -2.093064 -0.381501 -0.047456 -0.107003 1.461584 0.626973 0.370979 -0.783878 1.262491 0.591489 -1.716879 0.813811 0.661844 -0.849018 -2.366858 -0.572292 1.563720 1.241211 -0.118346 -0.129169 0.814890 -1.063680 0.621676 -0.658845 -1.831847 -2.490109 -0.633015 -0.906740 -0.406891 -0.703810 -1.207613 1.241524 0.062715 0.414292 1.051419 0.639833 -1.752623 -2.205294 -2.089727 0.513789 1.866115 -1.665403 -1.387661 0.477015 -1.018211 1.143471 1.608655 0.684034 -1.028836 0.426028 1.274367 1.530613 -2.544452 -0.409392 1.900061 1.558602 0.611937 -2.413357 -1.718206 -2.475053 -0.488531 3.401007 1.736127 -2.971783 -1.046196 1.793177 0.733039 -1.874148 0.176544 -1.533685 -1.459455 -2.037087 1.216996 0.535866 -1.845723 -0.042439 2.988882 -1.525350 0.609530 0.458852 -1.425644 -0.108150 -2.337204 -1.596047 4.143107 0.140881 0.693597 0.264405 -0.885381 2.228276 -2.454497 0.101567 0.465091 0.464329 -0.165902 -0.713509 1.097083 2.679750 -1.619956 1.026201 0.087403 -0.070065 0.303321 -2.205031 0.854270 -2.502833 -1.279296 -1.367845 -0.975370 0.432009 -1.989409 -1.849637 1.594826 -0.925019 0.934573 2.288726 -3.173290 -2.018948 1.092559 -0.242040 0.970579 -0.400167 -0.236240 0.425786 1.569960 -1.910429 -1.143818 -0.917412 0.924656 -2.240832 1.913292 -1.620441 0.543987 0.146001 -1.117615 -0.671136 1.252590 0.687045 0.188939 -0.802094 -0.594967 -1.756964 0.846259 -0.371906 0.732355 1.328310 -0.361844 -2.164269 0.143813 0.684548 -3.498067 -1.348920 0.448888 -0.668535 2.620903 -1.079924 0.047014 1.738713 0.437754 -2.310852 -1.481141 -0.971601 -2.243449 -0.216129 -0.381614 -0.755263 -2.325494 -0.367064 1.158639 0.268720 -1.729894 1.106072 1.477434 1.600342 -0.612494 0.979700 0.807563 0.851378 0.522846 -0.618938 0.032709 0.721455 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -6.483874 4.638765 4.700388 -2.351660 8.320627 2.113091 2.096182 2.924937 -3.432769 6.955854 -9.408332 -3.703487 -4.147454 -6.255503 -0.904518 -5.526811 1.688093 -1.282774 -2.114793 2.359191 3.771601 -4.958131 0.128636 -4.523820 -1.037336 -7.180849 -3.919236 -0.092682 8.190765 -2.414877 -0.460027 -0.507560 12.035036 1.401611 9.845050 6.501950 2.540981 8.501324 0.558490 -2.334868 -2.680917 8.114159 -5.992954 -5.839653 -0.451958 -7.423565 -3.835449 -2.655034 2.653186 -1.961945 -1.115341 6.112592 -1.265215 2.310078 -5.013962 3.732961 6.761245 1.373604 11.845888 1.439564 -3.110307 -0.704694 -6.300403 3.903274 -3.281408 2.897890 -2.740696 -4.928868 1.645010 -2.294434 -0.645402 -5.612105 -3.063528 6.698628 2.782483 -6.446857 3.397375 -2.308146 -9.115620 -9.357245 -6.988931 1.481748 0.926379 7.094611 -0.659160 -0.056061 0.736432 2.817783 0.068988 -11.334461 -0.295597 8.291179 -5.630892 -1.342632 -2.068828 6.573552 -1.422330 5.034426 -6.054377 -2.813279 1.868522 0.412391 1.000252 -8.112185 2.552327 -8.066595 2.982502 -0.812164 -0.646405 2.981096 5.368917 4.147106 8.109986 8.464234 -8.695475 0.853558 -6.790620 1.490798 -1.931664 -0.462152 0.377222 3.911902 -1.340139 1.362111 8.847139 -10.765809 2.904660 3.121534 -4.111153 -9.025711 -0.848190 -8.831191 -7.469656 -1.644216 3.429276 2.749492 1.504512 -6.599093 0.121671 -2.371233 -2.280826 -3.048935 2.291857 8.080360 -7.955581 -1.721135 -0.800175 -1.221650 -4.299034 7.077106 4.196009 3.868985 9.410987 5.014462 -3.650544 3.206834 -7.080487 -0.089629 10.475375 2.356929 -9.107955 6.116895 -5.922095 0.014841 4.775583 3.981957 6.275663 0.128108 -7.684957 -4.768188 3.322938 -0.851380 10.003704 1.812643 3.704882 -2.541116 11.234953 -1.860261 -6.777456 9.724849 4.541225 -8.311463 2.730338 2.976519 -5.178118 -0.604134 5.259253 -6.338320 -0.056892 -5.887851 -1.005506 2.622357 -4.369562 -0.971763 1.585667 -9.623738 11.831765 0.821166 3.435107 2.799747 -7.537000 -9.387309 10.144380 -0.937169 -1.185281 -4.155631 -3.093167 -6.098846 -9.289830 1.669100 -0.539965 -4.958900 -3.845703 -8.671397 3.029366 5.147879 -1.310354 6.245807 -8.222033 -3.704813 2.786682 1.288802 5.891189 -2.499817 -5.321263 -1.291459 -2.075174 6.015950 -5.445349 8.647881 11.321859 -3.209313 7.274033 -2.735802 -4.654022 1.274449 3.937473 -8.543857 8.344873 -2.463924 6.290243 -0.904838 6.139721 -5.798240 -2.389139 0.934108 -0.670545 -1.978503 3.812052 -4.243742 0.103095 -0.242563 -7.455991 -2.879582 1.157987 -2.152770 0.066935 0.607172 1.410938 -7.567061 -0.471655 -4.308393 0.981522 6.533154 0.821879 -5.800697 2.191310 -1.047020 0.942153 1.579794 0.103164 -0.944192 5.447034 -7.975569 -3.856202 0.094395 -0.422209 -4.745061 -10.676721 -1.408642 -6.741380 -5.505203 7.774303 -8.220264 1.470531 -6.214485 -2.784574 -8.335102 -2.916142 2.734364 11.582048 4.822369 -6.789488 1.819877 -0.895520 7.847899 0.654210 1.579274 0.696099 3.605933 +PE-benchmarks/coin-change.cpp__main = -0.707779 0.051381 -0.190303 -0.367141 1.645607 0.043929 -0.021238 1.012666 0.187609 0.571225 -1.085234 -0.449158 -0.332612 -0.844563 0.207550 0.235461 0.224309 0.358864 -0.691883 -0.424033 0.619716 0.153235 0.079152 -0.614825 0.057825 -0.335349 -0.469900 -0.001022 0.257547 0.276654 -0.795016 0.202810 1.076428 0.062213 0.671032 0.508183 0.942232 1.035124 -0.249408 0.578358 0.337222 0.766989 -0.424733 -1.183943 0.520295 -0.977584 -0.656115 -0.365822 0.415924 -0.895643 1.024289 0.630763 0.123310 -0.062522 -0.212290 0.301389 0.620233 0.143059 0.965248 0.617397 -0.985030 -0.175509 -0.668150 0.790914 -0.495884 1.239087 0.115362 -1.279105 -0.892274 0.404762 0.667113 -0.858558 -0.857005 0.092502 0.096149 -0.277453 0.673089 -0.019830 0.935670 -0.527883 -0.944864 0.173999 -0.542897 0.809003 -0.248843 -0.243630 -0.388507 -0.253932 0.343395 -0.758901 -0.507838 0.861016 -0.615173 0.722164 -0.980366 -0.422583 -0.262331 0.253036 -0.524989 -0.617971 0.256670 0.518837 0.127283 -0.002509 -0.091344 -0.524710 0.834905 0.521954 0.054114 0.256209 0.324256 -0.017298 0.070350 0.433449 -0.177759 0.360493 -0.861951 0.377063 -0.189602 0.269882 -0.220262 0.138483 0.708327 -0.205038 0.482011 -0.811939 0.802891 0.338977 -0.715039 -0.388246 0.379351 -0.562033 -0.982450 -0.036276 0.631085 0.220812 -0.207232 -0.185769 0.318954 -0.391992 -0.926311 -0.363672 -0.559903 0.082135 -0.892071 -0.234042 -0.283132 -0.444120 -0.327231 0.589304 0.253469 0.326338 0.955798 0.606097 -0.435010 -0.121509 -0.922732 0.625923 1.506175 0.294850 -0.987224 0.226649 -0.581810 0.595407 0.669323 0.120310 0.165481 0.690444 0.098253 0.427110 -0.314787 -0.185747 1.082546 0.863491 0.807660 -1.081112 0.022587 -0.609923 -0.098771 1.459488 0.852721 -1.313726 0.190244 0.704207 -0.125719 -0.058433 0.076164 -0.437639 -0.355393 -0.769901 0.373303 0.535217 -1.017611 -0.690414 0.386158 -0.924255 1.032172 0.106022 0.181675 0.174147 -1.171464 0.072896 1.481959 0.155280 -0.175400 -0.157930 -0.353751 -0.475002 -1.078006 0.280307 0.399614 -0.365429 -0.552113 -0.693194 0.003288 1.257939 -0.447182 0.197220 -0.649452 0.095058 0.321917 -0.482696 0.719500 -1.083404 -0.631637 -0.438407 -0.308251 0.733342 -0.658415 -0.130286 0.960648 -0.666269 0.737816 0.859040 -0.068050 -0.346304 0.722424 -0.217290 0.820380 -0.139605 0.561844 -0.132431 0.909866 -0.621648 -0.093867 -0.304407 0.267055 -0.354855 0.958604 -0.790134 0.027894 0.453428 -0.834440 -0.459305 0.618318 0.269980 0.543586 -0.119582 -0.345167 -0.582708 -0.026568 -0.272174 0.132083 0.843147 -0.415123 -1.065745 -0.244859 0.082144 -0.915985 -0.368078 0.429387 -0.022823 1.213377 -0.749456 0.185281 0.378752 -0.095591 -1.169615 -0.645737 -0.400967 -0.392657 -0.454062 0.731459 -0.974460 -0.525847 -0.530673 0.401171 -0.825270 -0.312657 -0.154606 0.934622 0.501403 -0.047772 0.684671 0.373963 0.685339 0.076572 -0.120262 0.270160 0.514019 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -8.452418 7.807923 7.537294 -3.892234 9.810340 3.635362 3.410291 2.837881 -4.513706 10.155033 -12.809590 -4.430999 -4.980169 -8.044595 -1.868848 -9.551287 0.452102 -2.456473 -2.193847 3.559346 4.767423 -7.400570 -0.406779 -5.691680 -1.829847 -10.933370 -5.309508 -0.051679 11.179211 -3.706589 1.170401 -1.303527 15.484116 1.725645 13.213104 9.396628 2.916734 11.308751 0.488079 0.002709 -4.291912 10.550936 -8.221735 -6.735224 -1.477358 -9.248377 -4.969898 -3.491076 3.068393 -2.612336 -0.402083 8.578327 -2.304057 2.888364 -6.677149 5.876174 7.771927 1.486771 16.039718 1.599586 -4.122428 -0.817367 -9.422954 6.565102 -4.089234 3.909106 -2.634914 -5.693058 4.006689 -4.083820 -1.387245 -6.468577 -3.308848 10.070504 3.611268 -9.365752 3.435900 -4.726927 -17.268069 -11.134165 -8.110089 2.579978 3.943545 9.325484 -0.168048 0.099331 1.222430 5.011921 -1.234000 -15.864098 0.082514 12.608980 -7.260905 -2.588855 -4.328180 10.018807 -1.827010 7.099174 -7.739518 -2.181475 2.868740 0.993883 1.485177 -12.896717 1.101496 -12.687700 4.135761 -0.655771 -2.250213 2.619801 6.913568 5.757472 11.643242 12.222694 -12.233791 2.572432 -9.294401 1.989721 -0.639291 -0.700897 0.997451 5.034755 -4.089965 2.303784 12.438390 -14.095661 3.112248 3.392389 -6.480062 -13.578015 -2.230744 -12.493864 -9.865522 -2.401736 3.585333 4.682712 2.196811 -9.242294 -0.701855 -3.089369 -1.997816 -6.265205 4.959254 11.383457 -9.237955 -2.363065 -0.702914 -0.551718 -6.757392 10.558830 6.494292 5.250681 13.489057 6.548350 -2.463231 3.913222 -9.034517 -1.642975 12.832221 5.319521 -12.354773 9.026809 -8.357323 -0.785108 5.359380 5.840082 8.411513 0.817049 -12.294018 -7.782820 5.273273 -1.704612 13.448953 2.470117 3.734465 -0.946555 16.843190 -2.315815 -10.740762 11.940117 7.606424 -9.894583 2.746015 3.092582 -6.756057 -1.601690 8.886770 -8.540247 0.376182 -6.106107 -2.567450 2.873710 -4.499795 -0.705863 1.684275 -13.046309 16.853030 0.797714 6.531597 3.757410 -10.329602 -15.575417 12.028502 -2.320856 -2.230757 -5.546762 -3.250751 -9.062506 -11.584891 2.322610 0.463035 -6.816103 -6.046595 -11.763745 5.141766 5.633358 -1.981044 9.270426 -8.615140 -7.398539 3.994158 1.461954 8.483757 -2.429343 -6.933466 -2.455490 -1.239313 8.848105 -6.375420 13.346191 16.457087 -3.103655 10.792151 -3.954438 -6.149420 1.270067 5.556801 -12.444003 11.834623 -3.372476 5.677140 -1.289489 7.456608 -7.776031 -3.831467 2.250908 -0.917707 -1.406488 4.055295 -4.527158 0.486081 -2.493574 -11.551250 -1.760978 1.481876 -3.500225 -1.514114 1.263423 3.680179 -9.780936 -1.896248 -7.211854 0.632732 8.652228 1.928114 -6.498575 3.724650 -2.494159 2.308047 4.123843 -0.425782 -0.748033 6.597724 -10.749408 -5.773919 -0.417892 -1.831571 -6.911345 -14.692924 -2.304426 -9.748979 -8.860571 8.695890 -10.344496 2.820192 -9.011432 -4.863017 -12.269318 -4.797654 4.383452 16.138350 7.067458 -9.482892 1.560798 -2.061261 11.577804 1.314954 2.017875 1.851114 4.955277 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.677809 0.066389 -0.089549 -0.358699 1.405235 0.025383 -0.234806 1.010028 0.570237 0.612305 -1.022311 -0.769494 -0.271527 -0.531140 0.098218 0.124977 0.017863 0.464436 -0.767328 -0.409746 0.566470 0.445018 -0.014153 -0.488413 -0.042902 0.120766 -0.749512 0.032650 -0.162342 -0.018955 -0.578810 0.192027 1.125977 0.084455 0.871815 0.604327 0.684361 1.044029 -0.367629 1.400167 0.345748 0.709717 -0.498669 -0.891345 0.443968 -0.887817 -0.536848 -0.313875 0.298896 -0.759378 1.617785 0.575740 0.105814 0.100109 0.035286 0.273627 0.136559 0.316650 0.948388 0.596395 -1.229564 0.588554 -0.828604 0.937005 -0.457033 1.570037 0.078052 -1.379944 -0.889182 0.194725 1.327934 -1.200695 -1.036349 0.269837 -0.189912 -0.252827 0.676577 -0.120753 1.017263 -0.502423 -1.000055 0.321447 -0.273041 0.536179 -0.287256 -0.244346 -0.737939 -0.071242 0.100636 -0.815637 -0.412314 0.782137 -0.752770 0.882152 -1.126602 -0.767394 -0.455312 0.434723 -0.446496 -0.475427 0.337748 0.493148 0.105414 0.431400 0.007768 -0.323289 0.862777 0.713170 -0.052388 -0.088943 0.415210 0.222169 0.446520 0.546795 0.053347 0.381568 -0.704171 0.447806 -0.270553 0.199131 -0.083466 0.182749 0.485711 -0.184936 0.563388 -0.621584 0.564693 0.115475 -0.969842 -0.388576 0.286642 -0.681309 -1.029214 -0.183330 0.536949 0.401769 -0.229917 -0.304516 0.135886 -0.455233 -0.658728 -0.484900 -0.427841 -0.311717 -0.394205 -0.304187 -0.233220 -0.368211 -0.393600 0.803458 0.403801 0.397784 1.015714 0.464854 -0.231250 -1.139825 -0.902258 0.329954 1.178668 0.209481 -0.973546 0.374051 -0.373996 0.501735 0.659822 0.286861 0.053222 0.613121 0.258596 0.286659 -0.699141 -0.106630 1.110839 0.845942 0.620601 -0.600729 -0.117555 -0.608886 -0.393259 1.587844 0.894579 -1.017300 -0.392380 0.469399 0.300537 -0.341889 0.341971 -0.369128 -0.458581 -0.432092 0.199233 0.391429 -0.792338 -0.587183 0.758214 -0.964590 1.093371 0.025796 0.116985 0.173342 -1.454003 -0.270772 1.354957 0.206730 -0.232474 -0.028322 -0.246305 0.098967 -0.936618 0.299517 0.587303 -0.032383 -0.533436 -0.600358 0.329692 1.014458 -0.439115 0.314528 0.032964 -0.350683 0.302113 -1.234604 0.770641 -1.178037 -0.538915 -0.654828 -0.195763 0.802655 -0.491248 -0.184234 1.179255 -0.459754 0.623430 1.643734 0.055557 -0.694830 0.700919 -0.330172 0.843697 -0.263790 -0.130241 -0.136058 0.749919 -0.555967 -0.241855 -0.174096 0.694004 -0.300285 0.836736 -0.471015 0.089642 -0.047225 -1.085967 -0.041900 0.510175 0.077772 0.179766 -0.036771 -0.266372 -0.773993 -0.095004 -0.187729 0.043593 0.825234 -0.190300 -0.939124 0.007222 -0.195022 -0.899083 -0.044753 0.287937 -0.070092 1.163596 -0.747896 0.035379 0.456517 -0.137843 -1.183070 -0.308682 -0.701849 -0.504430 -0.473865 0.394011 -0.584823 -0.611985 -0.528380 0.233864 -0.296603 -0.414050 0.060530 1.011042 0.823259 -0.413856 0.520538 0.241881 0.893510 0.327160 -0.401635 0.175601 0.600575 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -10.422939 9.574677 9.339457 -4.807355 11.783147 2.756426 4.815091 3.745627 -6.364100 9.788221 -15.860791 -5.667708 -6.001683 -11.999426 -1.446779 -11.249302 0.603065 -0.991517 -2.519183 3.941750 6.940214 -8.286485 -1.086676 -8.143438 -1.450095 -8.455860 -6.319155 -0.870463 12.519910 -4.994962 1.985474 -0.882163 17.646690 2.558976 17.068195 11.473103 3.378158 14.518945 -0.363059 0.307295 -5.273585 13.339764 -9.269619 -12.073799 -0.497805 -11.054842 -4.106277 -4.260203 3.545744 -3.492551 0.065375 9.963850 -2.162108 3.126727 -7.901998 5.481454 9.925416 3.246815 18.269290 3.122280 -6.551954 0.514207 -11.508287 5.856659 -5.000452 7.514570 -1.395330 -7.231295 3.798304 -4.648078 -2.502793 -9.245235 -5.165749 10.929431 3.601399 -10.032715 4.373465 -5.241011 -20.084027 -10.527318 -10.546641 2.502698 4.036991 11.128183 -0.842219 -0.625638 2.384007 4.920902 0.010001 -18.069117 -1.297487 14.690593 -9.035644 -1.552530 -3.926969 10.395308 -3.678788 8.665838 -9.468673 -2.715287 4.140555 2.623800 1.855729 -13.658765 -0.579120 -15.232108 6.646082 -0.635042 -4.558391 3.186021 10.754154 6.531933 12.295560 13.679399 -13.755454 3.478679 -12.147882 2.025100 -2.380764 0.329864 1.513412 5.440519 -4.132132 0.468682 13.270350 -16.077642 4.798176 4.759043 -6.776799 -16.301672 -0.923105 -15.181240 -12.417294 -3.078516 5.182773 6.220834 1.663366 -10.055437 -1.792338 -3.546075 -4.083385 -8.948121 4.302940 12.459684 -11.183980 -3.328820 -1.825021 -1.746623 -8.321966 11.371153 6.660694 5.825534 15.531341 8.316539 -3.896425 4.481434 -9.970682 -1.306112 16.128062 3.969718 -15.194134 9.180847 -9.880736 0.289218 6.793016 5.218385 9.899377 2.755699 -14.187379 -8.189815 8.021781 -3.328437 14.933008 3.551432 5.844160 -2.929805 19.520156 -0.713400 -13.022228 17.074460 6.909266 -14.652589 5.654167 4.220767 -6.496830 -2.004928 9.332051 -9.606512 0.671830 -7.781157 -2.597794 2.325276 -7.742168 -2.741597 1.780441 -16.000585 19.744367 1.536019 7.425479 3.258202 -13.158772 -17.484907 16.619604 -0.901717 -3.826525 -6.948250 -3.550587 -10.465536 -13.707460 3.676494 1.700135 -7.674605 -8.584906 -13.316032 6.588581 8.339976 -3.707292 10.171774 -7.250335 -8.982371 4.054583 2.283549 10.897686 -5.100467 -9.137790 -3.413151 -1.177578 11.612329 -6.512312 13.766595 20.741638 -4.634951 13.827064 -0.859406 -8.253519 0.829754 8.344500 -13.318232 13.361551 -4.369273 8.628651 -2.332137 9.825000 -10.498725 -4.887577 3.038997 -0.099280 -1.060949 5.390486 -5.106463 1.020288 -3.346519 -14.227592 -1.656226 3.237394 -3.780272 0.499377 0.856558 3.738892 -10.503796 -1.958324 -7.700875 0.102367 11.545718 0.952144 -10.306768 2.337564 -3.102670 1.411565 4.312775 0.726100 -1.427799 9.167518 -12.546022 -5.665233 -0.433305 -3.772042 -9.196152 -15.797538 -2.804459 -11.938747 -8.245568 9.838767 -11.063415 4.184715 -10.056291 -4.385711 -15.147438 -5.277439 2.464248 17.903383 8.980412 -8.954828 3.176099 -1.490025 14.514998 2.730360 1.756117 1.465645 7.527926 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -3.428245 1.413523 1.947805 -1.491013 7.030376 -0.158489 1.413944 3.250579 -2.170603 3.346154 -4.972656 -1.726151 -1.860772 -4.114459 0.403953 -2.227606 1.643080 0.452572 -1.824937 0.613985 1.958271 -1.053670 0.080379 -2.131046 -0.475630 -3.684948 -2.365155 0.629337 3.587175 -1.187342 -0.345133 0.771693 6.924451 -0.330293 5.111366 3.483185 2.478427 3.843472 -0.110342 -2.397904 0.379078 3.632590 -2.683122 -3.509222 -0.463283 -3.230135 -3.811736 -0.983112 1.907748 -2.140630 -2.284473 3.348760 -0.300228 1.021935 -2.083462 3.045498 3.481597 -0.405146 5.716433 1.527314 -3.342323 -0.478319 -3.369771 4.018168 -1.974775 2.250136 -2.965487 -4.611808 -1.048355 0.887194 -0.864156 -3.054171 -2.222358 2.561085 1.852391 -3.024990 2.447467 -0.384750 -1.101183 -5.023651 -3.857472 1.222920 -0.694974 3.792169 -0.394626 -0.293045 1.325063 0.289559 0.260527 -5.513366 -0.619073 4.349434 -3.850657 -0.842011 -2.037035 1.619865 -0.023118 1.785623 -2.678674 -3.862152 1.052023 -0.554726 0.544939 -3.241581 2.757732 -3.061151 0.069349 0.411270 1.318099 3.795178 1.567765 2.386790 3.349976 3.565281 -3.881623 -0.185064 -3.885675 2.106856 -3.292797 -0.245192 -0.757928 1.639263 2.122370 1.845447 4.330253 -5.625731 2.311788 1.843193 -1.809699 -3.459370 0.251981 -3.665695 -4.221465 -0.767066 2.478674 0.886143 0.589961 -2.459941 1.328260 -0.775267 -1.356680 -0.133251 -0.514906 2.616812 -5.606554 -0.689821 -0.477011 -0.612002 -1.730164 3.732245 2.567260 2.425499 5.328434 2.580965 -2.775403 2.168334 -5.136007 1.263267 6.593633 -0.234586 -4.348582 3.401777 -3.849260 0.266482 2.611975 2.383829 2.448931 0.781931 -2.927560 -1.482036 1.095332 -0.099219 5.630990 1.372883 1.619426 -3.723551 3.799962 -2.380097 -2.347723 6.275335 2.640061 -6.040729 2.520892 2.866902 -2.897579 -0.899282 2.211368 -4.461886 -1.653150 -3.925481 0.448068 2.475129 -3.349660 -0.876918 1.780507 -4.682110 5.213675 0.329411 -0.584654 1.388006 -3.699099 -4.477919 6.678375 0.749139 0.163383 -2.044844 -2.381441 -2.309605 -5.583214 0.565338 -0.099026 -2.273367 -1.294575 -4.322728 0.238023 3.981851 -0.974465 3.468862 -6.411816 0.162356 2.039304 0.941176 2.524115 -2.058765 -2.775234 -0.832231 -2.520238 1.628049 -4.393856 2.703457 4.750994 -2.426104 4.432346 -1.052483 -4.491890 0.283903 1.886550 -4.100084 5.007655 -0.124262 4.408070 0.489826 3.512634 -3.669296 -1.035149 -0.600181 -1.516804 -2.584167 2.765456 -3.539893 -0.048052 1.295429 -3.202618 -3.450157 1.066250 0.116769 0.770263 -0.036131 -0.593755 -4.386884 -0.049907 -1.510352 1.429249 3.328437 -1.100850 -3.909788 1.334454 1.033344 -1.341290 -1.618814 0.547650 0.078048 3.699064 -4.448338 -0.672145 0.986478 1.489345 -3.990198 -5.614419 -0.146939 -3.655327 -2.571908 3.110502 -4.788492 -0.919488 -3.035011 -0.258978 -3.970876 -2.474861 2.174457 6.481288 1.357566 -3.513055 1.780388 -0.049472 2.985462 -0.060170 1.121046 0.088504 1.439998 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = -1.296165 0.494156 -0.414486 -1.529758 3.926499 -0.077894 0.116535 2.723084 0.108362 1.159433 -2.695329 -0.161616 -0.152476 -2.478887 0.441036 0.123013 0.907465 0.664737 -1.530839 -0.477439 0.964974 0.537608 0.454818 -1.420010 -0.319323 -1.500513 -0.698968 0.272711 0.344163 0.415546 -1.145770 0.389898 2.857581 0.021069 1.717587 1.169139 2.306804 1.886627 0.433370 0.483588 1.250684 1.019702 -0.680974 -2.319697 0.202731 -1.713797 -2.166387 -0.640137 0.739335 -2.289428 0.962050 1.350912 0.676776 -0.187641 -1.007358 0.959472 1.456957 -0.662110 2.049822 1.375611 -2.442776 -1.062635 -1.088375 1.884192 -1.306313 2.070171 -0.015348 -2.246465 -1.864967 1.831016 0.647512 -1.534123 -1.981245 -0.327372 0.656113 -1.072250 1.408852 -0.065189 1.828455 -1.357628 -1.060935 1.258214 -0.984199 1.910691 0.183985 -0.039661 -0.157212 -0.489916 0.607060 -1.796903 -0.918077 1.711714 -1.413937 0.357200 -2.268385 0.106166 -0.502619 0.059906 -1.041002 -2.333016 0.808912 0.708177 0.116532 -0.908750 -0.070437 -1.581461 1.243529 1.630849 -0.086944 1.235224 0.206290 0.391407 0.424174 0.993495 -0.726428 0.615780 -2.715399 0.963351 -1.065656 0.066352 -1.095157 -0.040622 1.924394 0.783762 1.003848 -2.017167 2.426265 1.603509 -1.660882 -0.858118 0.802448 -0.734988 -2.064471 0.302529 1.156994 0.212583 0.361003 -0.214173 1.026374 -1.001774 -1.503053 -0.775783 -1.222468 0.537098 -2.628400 -0.273730 -0.078542 -0.352968 -0.763128 1.526801 0.798550 0.297278 2.578349 0.711783 -1.314531 0.830918 -2.242873 1.280307 3.728252 0.938179 -1.781779 1.083387 -1.567625 0.802283 0.984387 0.642743 0.022701 0.758055 -0.907102 0.223090 -0.186627 -0.529854 2.516787 1.171085 1.315750 -2.820611 0.755702 -1.384493 0.437100 3.177502 2.161208 -2.796856 0.598092 2.287992 -0.473109 -0.313771 0.434910 -1.727081 -1.072827 -1.546866 0.637550 1.082063 -2.015175 -1.579116 0.365451 -1.769886 1.962647 0.403602 -0.600970 -0.186863 -1.890896 0.092661 3.553716 0.140601 -0.085035 -0.049178 -1.003425 -0.991132 -2.888121 0.195970 1.101450 -1.183653 -0.049982 -1.445876 -0.315520 2.405577 -1.345062 0.325733 -2.655515 0.530266 1.214587 -0.252961 1.018660 -2.030529 -1.078368 -0.483268 -0.940138 0.949512 -2.293955 0.309888 1.562807 -1.150037 2.200021 0.606380 -0.998399 -0.295700 1.464698 -0.730929 2.465278 -0.123901 2.068288 0.520759 1.987423 -1.485470 -0.142462 -1.246424 -0.712297 -1.162829 2.085400 -2.699425 -0.201437 1.336940 -0.671038 -1.966882 1.399067 1.157139 0.577593 -0.594658 -0.617225 -1.009687 -0.078277 -0.919353 0.928952 1.466084 -1.300383 -2.489177 -0.291529 1.813852 -1.773450 -0.883191 0.737549 0.496968 2.778688 -1.768068 0.910468 0.918459 0.704293 -3.130184 -2.321792 0.366853 -1.065106 -0.577872 0.626122 -2.686244 -2.028010 -1.033633 1.153517 -1.949367 -0.355197 0.871957 2.275378 0.302919 -0.677578 0.860561 0.506758 0.860266 -0.040951 0.460175 0.490112 0.813665 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -4.113605 0.872613 1.090849 -2.089115 7.693454 0.691811 0.404789 5.351791 -2.169817 4.392529 -6.540441 -1.542843 -2.635969 -5.183839 -0.119353 -2.229213 2.005818 -0.976687 -2.494116 0.239446 2.708078 -0.785874 0.180643 -2.936408 -0.630444 -3.430580 -2.864908 0.211151 4.239893 -1.305055 -0.127019 0.317473 8.674751 0.702073 6.494569 3.637593 3.457646 5.363946 -0.276615 0.047779 -0.501447 5.217852 -3.665083 -4.126032 -0.820318 -4.872148 -3.858501 -1.004334 2.161151 -1.921069 -0.220992 4.233225 -0.157647 1.694031 -2.892636 2.483673 2.804248 -1.348067 7.452454 1.788800 -5.045444 -0.749433 -4.280584 5.586392 -2.285732 4.035930 -1.862304 -3.634599 -0.771728 -0.190863 0.130285 -5.029822 -3.207628 3.292261 1.584861 -3.792388 3.622254 -0.858238 -0.235272 -5.822321 -4.600016 1.802000 -0.928497 4.919728 -0.682922 -0.399028 0.750586 0.894616 0.066550 -7.309382 -0.471574 5.029768 -5.043937 -1.015023 -4.647196 2.643514 -2.258550 3.268999 -3.536127 -3.725853 1.723307 0.766529 0.506470 -4.754202 2.836399 -5.056127 2.262721 0.514313 0.337623 2.794600 3.520208 2.518775 4.843015 5.247813 -3.439832 1.249462 -4.909671 1.905217 -2.800867 0.106216 -1.259415 2.489904 2.616880 1.606984 5.471956 -6.693503 2.381517 2.532855 -3.649503 -4.296042 -0.198141 -5.573959 -6.060618 -0.438042 2.967079 1.702576 0.923681 -3.875277 1.502345 -1.422792 -3.369361 -1.992601 0.014923 2.482784 -6.270674 -1.673811 -0.410982 -0.362283 -2.686742 5.344348 2.718450 2.515198 7.015686 2.599174 -3.296890 2.108604 -5.913403 1.116808 7.962023 0.839903 -6.254162 4.104214 -5.505720 0.966035 3.041875 2.977404 3.604337 0.375432 -3.860920 -0.881022 2.399448 -0.071804 7.342149 1.979316 2.884923 -2.895161 4.398632 -2.270836 -2.701920 8.240329 3.564272 -7.182131 1.985679 2.781990 -1.228763 -0.079521 3.053134 -4.740158 -1.696735 -4.649502 0.447003 2.597537 -3.948456 -0.862276 2.008080 -6.116859 7.408097 0.515332 0.806200 0.979365 -5.744551 -3.156614 8.296842 -0.409182 -0.306972 -2.484486 -2.583149 -3.438618 -6.861967 1.071681 0.614772 -2.240432 -1.534746 -5.620230 1.246830 4.373927 -1.293087 4.102997 -6.379300 -0.939563 2.317245 -0.116151 4.019250 -4.489887 -3.642795 -1.634573 -2.437405 4.214539 -5.914210 3.148287 6.840496 -2.675301 6.166034 -0.391082 -3.268631 -0.965189 2.582859 -5.206019 6.289480 -0.645817 4.933453 -0.280989 4.634737 -4.301211 -1.417779 -1.349655 -0.070730 -2.030804 3.295958 -3.885704 0.169556 0.877610 -4.323102 -2.801177 1.348823 -0.691131 -0.330020 0.078632 -1.441072 -5.208759 -0.863757 -2.950692 2.063521 4.635298 -1.521659 -5.275528 1.252929 0.626104 -1.643121 0.278472 0.463284 -0.199352 5.198382 -5.439411 -2.153920 1.311732 1.302770 -4.684113 -6.750293 -1.111387 -2.699901 -2.893252 4.513035 -5.135824 -1.584507 -4.039346 -0.815938 -5.657499 -2.560465 1.993168 7.878644 2.681895 -4.502332 1.182528 0.263275 4.286530 0.391201 1.108256 0.849496 1.547808 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.698783 0.386479 0.130184 -0.325841 1.009551 0.302732 -0.237532 0.540182 -0.043341 0.696234 -1.034391 -0.332543 -0.313596 -0.651222 -0.041512 -0.316793 -0.038935 -0.096609 -0.432565 -0.179467 0.480953 -0.212986 -0.073382 -0.509255 -0.093363 -0.372397 -0.528921 -0.029186 0.850417 -0.504183 -0.641082 -0.054276 1.153359 -0.130919 0.894657 0.667206 0.878187 0.889266 -0.124220 0.250535 -0.106194 0.860808 -0.659094 -0.607105 0.055887 -0.946374 -0.258423 0.207634 0.397594 0.043048 0.589745 0.637894 -0.085851 0.136063 -0.364256 0.593222 0.184290 0.251088 1.262980 0.266240 -0.660107 -0.303466 -0.860358 1.081459 -0.566818 1.051544 -0.250883 -0.591680 -0.207874 -0.200885 0.096844 -0.966953 -0.583040 0.651931 0.004496 -0.623616 0.396584 -0.347570 -0.095184 -0.515785 -0.847391 0.275299 0.024423 0.625837 -0.088709 -0.060006 -0.239820 0.352338 0.004850 -1.167040 -0.168139 0.937562 -0.816540 0.441139 -0.603884 0.129962 -0.435863 0.542023 -0.512782 -0.162339 0.270956 0.407796 0.138153 -1.103080 0.547738 -0.954277 0.694346 -0.004061 -0.226782 -0.069215 0.582625 0.227664 0.684847 0.913900 -0.252576 -0.265628 -0.915508 -0.037296 -0.000412 0.112677 -0.053128 0.400621 -0.100854 -0.110725 0.922151 -1.034559 0.390337 0.044640 -0.725028 -0.967077 0.011229 -0.905113 -0.942317 -0.089023 0.381733 0.412254 -0.077479 -0.609090 0.167263 -0.230286 -0.804386 -0.632533 0.212923 0.348771 -0.658079 -0.279350 -0.138777 -0.178492 -0.530033 0.836268 0.520391 0.427452 1.122369 0.598326 -0.117977 0.295165 -0.776547 0.098297 0.908457 0.302159 -1.165816 0.561263 -1.005881 0.175843 0.508634 0.420831 0.438737 0.665568 -0.469890 -0.149521 0.373093 -0.088201 1.051807 0.035547 0.534880 0.068029 0.691860 -0.313973 -0.700793 1.232158 0.465021 -1.141063 0.404563 0.335318 0.369171 -0.000521 0.634220 -0.716124 0.090183 -0.599954 -0.111367 0.398311 -0.684090 -0.172893 0.321894 -1.005676 1.435196 0.053489 0.290097 0.402085 -1.249123 -0.795002 1.092087 -0.129311 -0.231496 -0.446952 -0.253154 -0.643931 -0.920101 0.250965 0.348319 -0.531432 -0.618212 -0.896669 0.357994 0.832845 -0.256181 0.661461 -0.786450 -0.504002 0.292886 -0.069368 0.950058 -0.162615 -0.552061 -0.405481 -0.101351 0.928002 -0.821688 0.594856 1.327281 -0.435481 1.077094 0.092340 -0.454164 -0.275719 0.582749 -0.739069 0.926152 -0.024113 0.107278 -0.203206 0.685034 -0.817848 -0.230377 0.065488 0.323945 0.014035 0.336918 -0.343800 0.016922 -0.318613 -0.985832 -0.017169 0.264173 -0.100307 0.035690 0.055032 -0.021971 -0.362403 -0.324383 -0.481091 0.000775 0.779818 -0.118217 -0.633998 0.160545 -0.342070 -0.327500 0.681721 0.123860 -0.100375 0.864590 -0.837707 -0.444914 0.151612 -0.228454 -0.935297 -0.920080 -0.815422 -0.345507 -0.240863 0.564182 -0.808848 -0.132067 -0.601648 -0.160458 -0.827883 -0.287150 0.146428 1.159579 0.839534 -0.537517 0.370630 0.025533 0.969427 0.243559 -0.098783 0.226271 0.277981 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -9.182308 -2.302256 -3.013810 -5.823658 18.428406 -5.569883 -0.097005 15.763939 7.806353 6.270851 -14.399796 -9.700487 -4.656495 -13.036290 0.876206 -3.140855 9.346510 2.610634 -9.671532 -1.273995 5.023679 4.273516 0.706910 -5.928502 -1.843196 -4.081899 -6.818314 2.634873 0.203347 -6.425804 -2.487596 6.220680 26.144279 3.844189 20.426595 8.783950 12.657267 13.400928 4.652290 2.210166 5.747401 7.777321 -4.669270 -10.119002 -1.546386 -8.156195 -12.874500 -2.172954 3.799989 -7.176808 7.459195 10.390896 2.802545 5.457448 -6.463489 3.408457 5.144600 -2.651482 14.982559 6.600814 -17.441544 0.500853 -4.797247 10.433645 -6.979028 7.630968 -4.801940 -9.181587 -6.416429 7.410204 5.704693 -16.641103 -10.215823 2.753876 5.403287 -6.701508 11.221994 2.587762 15.365465 -13.281082 -10.451246 6.964765 -1.369890 7.998894 -1.095125 0.426120 -1.571249 -2.067719 -0.516962 -14.073770 1.321915 10.164356 -15.810209 -0.059633 -9.665073 2.806074 -6.789500 3.948629 -9.690997 -17.369150 4.180480 -4.244775 -0.437830 0.380255 6.001877 -4.982913 4.400469 4.362001 0.670821 10.884439 6.435038 7.530926 12.242113 8.403631 -5.330762 1.959396 -16.467824 7.345662 -7.955397 -3.450272 -1.621841 0.759069 10.279816 7.826829 7.432979 -15.770826 8.902706 9.429164 -8.099967 -6.961458 0.379788 -9.350604 -13.498312 -1.870335 9.772495 3.209170 4.086103 -5.527062 4.294119 -4.250555 -2.892232 -5.995574 -3.651808 1.535891 -11.980220 -2.856367 0.818408 -1.929845 -6.668224 11.248324 6.033903 1.238807 17.981913 1.147125 -11.948503 0.535437 -14.049976 2.453692 18.286389 -2.070410 -13.344489 12.105586 -12.626047 1.868687 4.123114 10.936117 4.841044 -5.598343 -5.139338 1.197570 3.158942 0.408921 16.486959 -4.627554 5.079334 -12.988906 4.595700 -4.710692 -1.187747 25.458209 6.538546 -17.256351 -2.356961 11.270285 1.094888 -3.411670 7.298330 -13.040672 -8.843449 -10.760623 6.850522 4.982205 -10.598845 0.151917 10.621168 -13.618652 10.189399 1.017009 -8.009607 -0.015952 -16.929596 -3.828872 27.883949 -0.402047 3.284697 2.123731 -9.030937 8.218288 -19.098434 -0.592005 4.145549 -0.554892 3.922149 -7.021421 3.339871 14.639169 -4.945162 10.155708 -16.482713 0.098179 7.436115 -6.905591 3.358699 -10.107073 -8.821084 -0.432709 -3.707204 4.578120 -15.088653 3.316570 10.827376 -6.003922 12.640399 2.330540 -9.439953 -1.517772 3.787199 -10.887908 17.358071 -1.755491 10.243041 2.695383 10.936834 -11.098696 -5.319206 -6.244852 0.836395 -12.985451 7.115981 -12.531677 0.906334 2.369409 -2.227162 -11.304111 3.915571 2.905261 -4.411030 -0.410139 -4.415080 -7.812076 -0.724328 -7.306376 10.599438 8.160120 -1.778308 -10.748543 4.170087 9.462327 -7.116574 5.269438 1.764361 0.565452 16.599532 -12.880228 -2.073200 6.863681 7.502147 -10.759428 -17.172915 2.289162 -9.154723 0.807097 0.760166 -14.264613 -12.124764 -7.149619 3.361429 -8.067423 0.614922 8.613058 20.059149 10.561252 -14.813852 3.242056 0.889714 4.108983 2.317609 2.918524 4.575496 4.544981 +PE-benchmarks/karatsuba.cpp__main = -16.740030 -0.694415 -9.171248 -14.618101 47.474630 -5.524054 -0.221162 29.544987 7.003302 11.940896 -30.706659 -9.719353 -4.071195 -29.036416 5.158412 3.061706 13.406008 6.465410 -18.085714 -4.859784 9.911023 5.959356 4.459714 -14.915076 -2.466221 -11.027027 -10.903352 4.893734 0.561762 -1.696825 -9.520043 9.531713 37.571632 3.405803 23.989507 12.747312 25.494010 23.879383 4.167158 1.997317 17.380742 10.708194 -6.232824 -25.995974 3.744089 -17.999299 -29.035644 -8.655263 7.788172 -24.496674 12.990983 19.427555 6.926214 -0.428691 -13.374289 8.511306 18.316929 -9.257594 24.500797 15.229281 -32.668565 -8.260054 -8.986807 19.247974 -12.915459 19.450173 -2.211882 -24.834631 -19.849213 24.426748 10.948917 -25.486665 -23.527824 -2.276586 10.122410 -10.554211 19.007842 3.346135 31.378643 -20.803460 -14.871698 12.431859 -9.124052 18.441391 -0.034821 -0.579013 -2.178700 -9.122413 5.306130 -20.600057 -7.157934 20.505870 -20.991929 5.249311 -24.200194 2.369356 -6.462905 -0.722172 -16.287795 -30.773023 7.211248 1.124372 -0.024778 -1.176114 3.784509 -15.221250 12.550453 14.453256 2.727702 19.244577 5.446387 6.647540 8.405528 9.237788 -10.052675 7.152359 -30.343653 10.954423 -11.101566 -1.657644 -10.448217 -3.177265 24.684074 10.160874 9.141527 -26.243325 26.254107 17.869513 -16.255393 -10.170236 5.892667 -9.318831 -23.338965 3.243950 15.989759 2.161027 4.969942 -0.583414 9.823631 -9.317571 -15.515124 -9.605711 -12.805793 9.917172 -27.596789 -2.140153 0.193263 -4.819853 -9.760398 15.896105 10.366945 1.115987 32.186579 4.693697 -18.894980 8.729811 -25.683778 15.314038 43.250272 5.975267 -23.491166 15.928591 -20.930346 9.400636 7.257581 11.116439 3.602898 -0.211971 -8.547188 5.931764 2.893043 -4.478696 28.700046 3.606586 15.107585 -36.234294 5.263559 -11.827289 8.326063 43.812393 17.681451 -36.058933 4.273959 29.504073 -3.396779 -2.657714 7.995105 -19.846875 -18.679763 -19.290679 15.052098 11.126014 -24.603437 -12.732256 9.192973 -22.675460 18.885477 4.226219 -11.060792 -1.583306 -24.128951 1.111345 48.389177 1.657015 3.662483 4.778766 -14.275522 3.701125 -35.202530 -0.465015 13.326482 -8.482107 2.678684 -13.072587 -2.041931 31.780032 -14.761739 10.440297 -32.941866 8.559624 13.461817 -6.678360 7.192141 -24.820722 -14.953089 -2.660054 -8.015556 6.454456 -26.617593 0.715012 15.378674 -15.006361 24.747635 7.166204 -9.814870 -1.675160 12.495838 -8.820619 29.730481 0.487914 30.352449 5.420052 24.537112 -17.056790 -3.166219 -14.352171 -5.221929 -20.730849 21.423562 -31.115126 -1.037369 17.897049 -1.871976 -27.488479 15.190326 12.859431 4.068036 -5.341771 -11.422532 -8.627421 -1.168741 -9.749628 18.221647 14.642007 -12.966811 -24.912722 -1.753101 24.370466 -21.064452 -1.706953 9.711140 4.681352 33.930653 -22.323294 9.408340 11.812380 12.009504 -29.926375 -26.757806 7.098961 -12.997168 -2.597942 6.492476 -33.727796 -25.659117 -12.154440 13.745499 -18.634539 -1.527110 8.236001 32.125930 11.120556 -14.092710 11.958715 5.367444 3.240771 -0.885585 5.859239 9.707559 8.506972 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/karatsuba.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +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&) = -3.104872 0.485821 -1.254423 -2.594968 9.020793 0.195256 0.342654 5.042063 -1.173156 2.959587 -5.735782 -0.293229 -0.960945 -5.460233 0.932285 1.186292 2.047512 0.779091 -2.798861 -0.883105 2.135168 0.036714 1.133059 -2.950572 -0.317703 -3.162748 -1.632059 0.552260 1.949376 0.603571 -2.718236 0.714012 5.869053 0.168277 3.129749 2.300128 4.307358 4.314524 0.564739 -0.738172 2.162411 2.734858 -1.699222 -5.135657 1.080021 -4.102099 -4.576397 -1.638047 1.867947 -4.432036 1.429380 3.264495 0.860176 -0.629012 -2.737708 1.895378 4.171521 -1.647360 4.944850 2.532935 -4.769719 -2.861025 -2.252588 3.711921 -2.465860 3.733360 0.032053 -4.832375 -3.354814 3.458305 1.265047 -3.708580 -4.152403 -0.060201 1.464200 -2.344504 2.844534 -0.035030 3.571194 -3.995534 -2.984454 1.746713 -2.511427 4.321151 0.020956 -0.328784 -0.153012 -1.214865 1.544934 -4.115737 -1.976730 3.772707 -2.902714 1.120243 -4.356273 0.891192 -0.981906 0.154035 -2.738744 -4.264302 1.130416 1.465077 0.419757 -2.195173 0.441888 -3.701265 2.608781 2.143025 0.620957 2.646342 1.391239 0.346569 0.720411 2.162478 -2.219902 0.875861 -5.146484 1.679514 -1.386056 0.338136 -2.458196 0.323409 3.986713 0.730764 2.652249 -4.950792 4.764801 2.874385 -2.988528 -2.413673 1.383342 -1.844641 -4.354112 0.948454 2.638409 0.081688 0.480791 -0.575742 2.092674 -1.699397 -4.334360 -1.048050 -2.236897 2.751303 -6.005527 -0.467284 -0.462194 -1.170936 -1.433569 2.906454 1.754440 1.197990 5.362853 2.028506 -2.885242 2.865095 -4.992197 3.314373 8.492079 2.297983 -4.316800 2.106429 -3.619175 2.087158 2.351229 1.150383 1.126493 1.063859 -1.710391 0.907086 1.045593 -0.824910 5.396648 2.419159 3.617887 -6.079335 1.640646 -2.329549 1.228624 6.585266 3.689127 -6.646245 2.693491 4.843295 -1.114957 0.427685 0.813232 -3.241207 -2.374470 -3.943821 1.732554 2.666740 -4.606479 -3.134140 0.226702 -4.032695 4.694341 0.809838 -0.544696 0.544558 -3.837909 0.327114 7.298717 0.411622 0.062750 -0.532086 -2.362486 -2.844056 -6.204124 0.538731 1.744590 -2.924067 -0.555228 -3.641763 -0.972420 5.652092 -2.215587 1.240081 -6.514382 1.839089 2.329141 0.213147 2.234511 -4.347829 -2.607936 -0.675033 -1.962462 2.094512 -4.831527 0.761857 3.268850 -3.085995 4.613959 0.869858 -0.653088 -0.081842 2.756525 -1.565389 4.954961 -0.014596 6.051993 0.491693 4.551674 -2.841006 0.069570 -2.318068 -1.073509 -2.363230 4.305114 -5.711390 -0.536045 3.820799 -1.650763 -4.761655 2.754775 2.057576 2.121038 -1.018220 -1.917271 -2.021519 -0.217326 -1.729184 2.269716 3.211920 -2.966803 -5.141002 -0.822588 3.363924 -3.520694 -1.549340 1.802123 0.851579 5.625832 -4.019779 1.535915 1.508968 1.496595 -5.797164 -5.067189 0.668423 -1.782930 -1.762196 3.224634 -6.429235 -3.467984 -2.512080 2.033811 -4.840971 -0.619539 0.493574 5.185684 0.680321 -1.021183 2.343355 1.283117 1.461785 -0.812781 1.125173 1.336156 1.566160 +PE-benchmarks/karatsuba.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/karatsuba.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/karatsuba.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.190063 3.904901 3.262620 -2.461839 8.505169 1.212218 2.778687 3.614842 -4.101960 6.008323 -7.748246 -2.243912 -2.549919 -6.311344 -0.368670 -4.651536 0.882015 -0.603359 -1.869933 1.594556 2.901749 -3.529262 -0.159814 -3.358352 -1.095426 -6.533692 -2.899900 0.412589 6.666857 -1.971627 0.462798 -0.141040 9.785311 0.199415 8.195612 5.600498 2.581836 6.001804 0.129839 -1.692994 -1.452330 5.894243 -4.597882 -4.854613 -1.408150 -5.017972 -4.748202 -1.902725 2.213197 -2.810668 -1.826729 5.317156 -1.102312 1.606692 -3.555655 4.410109 5.071613 -0.713865 9.362854 1.533595 -4.050756 -1.224465 -5.555566 6.286624 -2.391194 2.568459 -2.259298 -5.001647 1.027484 -0.751415 -2.157195 -3.303342 -2.203020 5.524163 3.131628 -5.527496 2.415811 -2.218731 -8.237391 -6.745003 -4.924815 1.875756 1.110705 5.959023 0.032124 -0.020751 2.422913 2.028674 -0.495014 -9.489410 -0.282328 8.036282 -5.078442 -2.008058 -4.033072 4.866795 -0.652127 3.770522 -4.484990 -3.328676 1.775172 0.263420 0.918903 -7.815793 1.522965 -7.074395 1.273248 0.130587 0.051394 3.992644 3.459244 3.191546 5.987808 6.910153 -6.920315 1.260282 -5.771015 2.286434 -2.222683 -0.167791 -0.366382 2.474795 0.500200 2.126978 7.334679 -8.755798 2.586564 2.526668 -3.242167 -7.587765 -0.936327 -6.961448 -6.107062 -1.229622 2.681085 2.126218 1.256899 -4.843384 0.677994 -1.170569 -2.334743 -2.723198 1.654639 5.760178 -7.385125 -1.180191 -0.472298 -0.067846 -3.810008 6.524243 4.267190 3.507237 8.343452 3.937619 -2.208052 3.371196 -6.425337 0.334115 9.334185 1.877602 -7.226226 5.617701 -6.192540 -0.266660 3.035522 3.515279 4.594073 1.075203 -6.949814 -3.712028 3.339969 -0.702369 8.532329 2.069435 2.032983 -2.709340 8.885912 -2.175276 -5.543606 8.217748 5.031959 -7.740475 3.319610 2.914953 -4.804345 -0.993982 4.905081 -6.333577 -1.164370 -4.695319 -0.599948 2.529198 -3.641328 -0.596181 1.586183 -7.656767 9.586016 0.544389 2.101874 1.946552 -5.692384 -8.376680 8.436755 -0.181255 -0.823178 -3.427579 -2.566052 -6.139332 -7.531269 1.172382 0.315828 -3.953128 -3.171775 -7.072901 1.625413 4.693775 -1.313725 5.899800 -7.321563 -2.356053 2.756248 1.952733 4.668354 -2.323703 -4.187146 -1.636626 -1.837726 4.153111 -5.172863 6.730452 8.900273 -2.518046 7.494793 -2.377939 -5.651864 0.600266 3.167935 -7.162093 7.536306 -0.989237 4.294916 -0.027923 4.959472 -5.108325 -1.899755 0.260482 -1.767137 -1.982187 3.100014 -3.889965 0.085669 -0.199375 -6.429132 -3.071438 1.190785 -1.247566 0.387775 0.400380 0.693552 -6.269616 -0.900265 -4.383345 1.158869 5.207678 -0.372390 -4.593831 2.332353 -0.231131 0.106047 0.608049 0.239251 0.064850 4.675699 -6.783981 -2.320688 0.391946 0.507940 -5.430137 -8.919197 -0.835126 -5.972803 -5.297520 4.783683 -6.823706 0.638510 -5.282312 -2.106891 -7.928220 -3.937697 2.977157 10.249516 2.759841 -5.316473 1.751509 -0.861222 6.016527 0.567073 1.917136 1.035983 2.649339 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -3.327826 2.529148 1.288323 -1.576347 5.250019 0.020008 2.113556 1.868774 -2.427073 3.587703 -4.924484 -1.189502 -1.544313 -4.574805 0.040505 -2.050548 1.085187 0.115562 -0.672054 1.234879 2.011157 -2.780794 -0.124533 -2.394316 -0.529912 -4.339639 -1.288903 0.256017 4.177736 -1.414707 -0.045627 0.394075 6.158669 0.571799 5.225505 3.775581 1.419547 4.179451 0.938604 -1.890932 -0.924150 3.729541 -2.624804 -3.813815 -0.448490 -2.878767 -2.707613 -1.869880 1.371446 -1.664379 -0.342325 3.499740 -0.627199 0.853510 -3.223125 2.153896 4.071036 -0.206743 5.890498 1.182215 -1.891002 -0.712344 -2.925525 3.293757 -1.771729 0.692905 -0.718435 -2.959378 1.038405 -0.058061 -1.036704 -2.385794 -1.623299 2.998929 1.855788 -3.584962 1.572392 -1.124838 -4.854094 -4.741679 -3.438206 1.068696 0.355955 4.281891 0.085409 -0.008436 0.798927 1.010513 0.184258 -5.697200 -0.343127 4.536592 -2.907560 -1.135537 -1.459145 4.109642 0.088404 1.853785 -2.916946 -2.373132 1.132850 -0.201160 0.717256 -3.840074 0.618163 -4.260531 0.990921 -0.223992 -0.257072 2.670632 3.058386 1.915737 3.500174 3.929803 -4.297125 0.475792 -4.191350 1.480426 -0.733720 -0.196680 -0.088204 1.425484 0.423660 0.796615 4.297632 -5.757543 1.986136 2.046902 -1.372748 -4.676455 -0.338998 -3.993904 -3.690906 -0.953781 2.073848 1.214818 0.863959 -2.581282 0.374970 -0.670913 -1.713743 -1.589009 0.682232 4.913245 -5.013825 -0.521810 -0.513184 -0.550991 -2.315370 3.389013 2.232398 2.195495 5.143095 2.774495 -1.843793 2.708060 -4.155975 0.372477 6.274383 1.687920 -4.498825 3.396655 -3.641119 -0.137006 2.047777 2.248770 3.080927 -0.318294 -4.522935 -2.181045 2.850971 -0.732777 5.235733 0.593804 1.663390 -2.138339 5.878492 -0.116636 -3.248631 5.635957 2.513316 -5.099424 2.530392 2.407710 -3.232608 -0.354183 2.846411 -3.738094 -0.622023 -3.246670 0.128292 1.511677 -2.774383 -0.623231 0.302927 -4.800651 5.650433 0.489546 1.354767 1.226053 -3.416437 -3.909886 5.926027 -0.131822 -0.395833 -2.169827 -1.961193 -3.811571 -4.972448 0.760983 -0.086203 -2.623730 -1.752375 -4.462449 0.692773 3.571651 -1.014402 3.134911 -4.645258 -1.029976 1.850054 1.828951 2.302788 -1.785664 -2.763464 -0.058208 -0.644978 2.283643 -2.840426 4.340427 5.509074 -1.987745 3.845637 -1.093665 -2.239581 1.282399 2.232916 -4.469171 4.715741 -0.884731 3.790608 0.169487 3.225732 -3.344762 -1.228705 0.150257 -0.826428 -1.519257 1.947466 -2.835728 0.016487 0.745979 -3.371475 -2.582915 0.934875 -0.262081 0.731486 0.100535 0.174489 -3.290349 -0.325657 -2.892506 1.054661 3.354418 -0.009151 -2.995465 1.208811 0.577861 0.277112 0.399670 0.406559 0.095149 3.269053 -4.327962 -0.960627 0.029576 0.559402 -3.019621 -6.229251 0.500594 -3.641929 -3.045438 3.479257 -5.109021 0.331819 -3.271810 -0.769352 -5.864279 -1.254282 1.163368 6.203036 1.452860 -2.783958 1.282960 -0.498916 3.310692 -0.026907 1.309400 0.544859 2.196315 +PE-benchmarks/kmp-algorithm.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.994806 0.762726 0.412179 -0.489210 1.628864 -0.412469 0.587731 0.388849 -0.035293 0.552730 -1.802061 -0.853088 -0.395642 -1.522791 0.308119 -0.833419 0.653345 0.368046 -0.340873 0.343787 0.611843 -0.512049 -0.126574 -1.209027 0.012479 -1.385191 -0.450170 -0.058989 0.665050 0.068344 -0.012659 0.478590 1.974062 0.347586 1.446262 1.149262 0.398920 1.293236 0.246599 -0.560573 0.283156 1.031181 -0.538609 -1.397099 -0.159286 -0.818667 -0.846168 -0.624924 0.253539 -0.653650 -0.399975 0.815877 0.205199 0.193892 -1.115943 0.305744 1.585734 0.493933 1.363278 0.667183 -0.386863 0.259465 -0.619425 0.544104 -0.806621 0.265264 -0.270863 -1.036100 -0.167864 0.643697 -0.165108 -0.506570 -0.866332 0.149123 0.626298 -0.794596 0.752568 0.113251 -0.793195 -1.073757 -0.915761 0.401683 -0.256502 1.292752 -0.046891 -0.141957 0.148941 -0.140715 0.680429 -1.068265 -0.697271 0.984411 -0.709583 -0.428641 0.051318 1.024391 0.724069 0.230947 -0.523180 -1.259654 0.401399 -0.256353 0.011276 -0.153922 -0.053238 -0.914107 0.348158 0.369807 -0.252815 1.397966 0.323837 0.899761 0.647215 0.503377 -1.187993 -0.137921 -1.261309 0.421477 -0.948868 -0.229807 -0.012326 0.070370 0.467757 0.406542 0.678038 -1.395507 1.114839 1.120945 -0.129346 -0.610818 0.289868 -0.799438 -1.183997 -0.245469 0.672598 0.530693 0.379573 -0.247106 0.133806 -0.375887 0.124498 -0.054005 -0.371592 1.266591 -1.414432 -0.178882 -0.142077 -0.207667 -0.644938 0.561417 0.212413 0.213190 1.175911 0.598057 -1.148465 0.475095 -1.074207 0.396088 2.303091 -0.222098 -1.082145 0.674797 -0.596798 0.078801 0.610094 0.351434 0.411442 -0.010672 -1.129696 -0.623974 -0.313667 -0.745873 1.353869 0.468782 0.390911 -1.503433 1.696768 -0.257252 -0.584187 1.927698 0.693457 -1.506973 0.414575 1.346646 -1.808806 -0.463719 0.398173 -0.847854 -0.121007 -1.347679 0.371348 0.227963 -1.063531 -0.520003 0.002781 -1.349426 1.083931 0.435155 -0.043069 -0.153131 -0.604373 -1.078846 2.373300 0.162549 0.046382 -0.412487 -0.534964 -0.614956 -1.767525 0.085460 -0.185913 -0.815180 -0.167359 -0.988008 0.123321 1.313657 -0.994283 0.477027 -1.359258 0.039803 0.384486 0.669916 0.305647 -0.636970 -0.918765 0.107044 -0.401512 0.222847 -0.867105 0.799248 1.370627 -0.615812 0.788349 -0.190336 -1.214080 0.427005 0.963902 -0.822188 1.101695 -0.476015 1.354823 0.343181 1.176758 -0.999318 -0.511689 -0.141957 -0.923550 -0.946643 0.936543 -1.320421 0.106857 0.917121 -0.309267 -1.077175 0.771896 0.244238 0.735070 -0.407040 0.026511 -1.126387 0.495701 -0.246743 0.426552 0.922250 0.223293 -1.233617 -0.045482 0.960786 -0.427904 -0.922983 0.259076 -0.204122 1.220225 -1.088685 0.356639 0.283006 0.345797 -0.927188 -1.677691 0.550196 -1.230238 -0.657686 0.916154 -1.576329 -0.270796 -0.644109 0.336896 -1.105738 -0.605781 0.479270 1.406285 0.243907 -0.746070 0.408584 -0.035147 0.643613 0.016091 0.305853 -0.158045 0.724595 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -3.402410 3.705524 2.776792 -2.581366 6.671902 -0.818305 2.382908 1.917825 -1.057907 2.074294 -6.750793 -1.267186 -0.875635 -5.511087 1.086566 -3.464796 1.363668 1.483691 -1.146661 1.431850 2.222729 -1.742981 -0.355241 -4.362256 -0.163817 -5.385132 -1.582903 -0.130770 1.779424 1.323594 1.063391 1.441878 6.007264 1.041186 4.192449 4.033646 1.827927 4.852092 0.372435 -0.399903 1.481583 3.044429 -1.642939 -5.474296 0.257539 -2.966538 -3.572326 -2.773620 0.674397 -4.156024 -1.343007 3.162923 0.792179 -0.280887 -3.666703 1.609611 5.911463 0.654081 4.369097 2.684214 -2.279097 0.111047 -2.594220 1.418969 -2.510584 1.859594 0.063279 -4.096583 -0.758530 2.966106 -0.001598 -1.635621 -3.128730 0.150367 1.969999 -2.670438 2.311807 -0.259157 -4.187350 -2.981897 -2.216859 1.565649 -0.225891 4.585642 0.111382 -0.556490 0.566197 -0.729648 2.275115 -3.526569 -2.981562 4.470959 -1.852493 -1.148274 -1.908030 3.346312 2.609205 0.250998 -1.828465 -4.145437 1.770385 0.137258 0.147671 -1.247003 -2.333504 -4.322256 1.610661 2.181614 -1.371617 4.478322 -0.338293 2.941069 1.511857 1.511374 -4.696401 1.547035 -4.916867 1.608746 -2.542187 -0.361707 -0.466246 -0.406525 1.413996 1.645828 1.928274 -4.436583 4.680952 3.734176 -1.356965 -2.569414 1.359334 -2.360907 -3.985673 -0.541331 2.063070 1.931066 1.116764 -0.206817 0.199561 -1.750935 0.298675 -2.217882 -1.441602 5.076950 -5.235962 -0.417759 -0.520156 -0.546141 -2.348704 1.939879 1.041115 0.497370 4.571401 2.158273 -2.824779 2.439888 -3.701101 1.517034 8.301847 1.576544 -3.788259 2.226955 -1.716328 0.543978 1.807736 0.598066 0.916222 1.172004 -4.867302 -2.761030 -0.848762 -3.286272 4.651601 3.328608 1.433347 -6.305963 6.067509 -1.498123 -1.653851 6.478363 3.553396 -5.237208 1.462236 5.130891 -6.031834 -2.054993 1.345867 -2.819214 -1.197778 -3.324656 0.998605 0.629669 -3.788718 -3.119118 -0.630229 -4.656268 3.982678 1.503459 0.744544 -1.047998 -1.937689 -4.729986 7.684858 0.334879 -0.458261 -1.002547 -1.420269 -2.388453 -6.007344 0.433928 0.857045 -3.183598 -1.517704 -3.326222 0.322610 4.357617 -4.154737 1.147072 -4.221222 -0.557075 1.599142 1.849752 1.458775 -3.903156 -3.118002 -0.435687 -0.900349 1.134011 -2.392883 2.873041 5.165812 -2.074615 3.440956 -0.220230 -3.875663 1.208755 4.097838 -2.294160 4.151726 -1.459874 5.727308 1.207457 4.216066 -3.400850 -1.593758 -0.509852 -3.441369 -2.741660 3.936718 -4.921353 0.351833 3.226343 -1.596672 -3.431320 3.501816 1.418830 2.313441 -1.588717 0.768782 -3.261145 1.039381 -1.172214 1.093655 3.286667 -0.391003 -4.786086 -0.788043 3.645283 -2.184476 -3.470781 1.330065 0.146277 4.399496 -3.779466 2.384615 0.765220 0.128220 -4.779226 -5.677846 2.492932 -4.693036 -3.323308 2.467191 -5.805648 -1.258266 -2.451633 1.702278 -4.614185 -2.685394 1.424041 4.779019 0.581940 -1.620450 1.767651 -0.070521 2.484440 -0.153720 1.323885 -0.181213 2.923968 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -1.618356 1.991886 1.470555 -1.576390 3.861293 -0.111279 1.376412 1.383682 -0.911324 1.268252 -3.479870 -0.258060 -0.169916 -2.633838 0.557504 -1.870183 0.266420 0.549364 -0.763107 0.493982 0.980261 -0.678610 -0.189296 -2.033829 -0.188430 -2.844257 -0.777171 0.084922 1.053330 1.032881 0.266981 0.579836 2.736593 0.020205 1.835018 1.977370 1.220885 2.104198 -0.024533 -0.162101 1.090220 1.264361 -0.797277 -2.550556 -0.208533 -1.457218 -2.259271 -1.233923 0.449097 -2.485319 -0.749331 1.637531 0.345251 -0.447297 -1.565781 1.452246 2.415761 -0.052786 2.159212 1.371384 -1.615056 -0.542600 -1.551438 1.658723 -1.098502 1.371322 -0.192093 -2.319794 -0.560550 1.819716 -0.490557 -0.401052 -1.307597 0.058261 1.078693 -1.350529 1.043672 -0.413385 -2.164681 -0.917803 -0.657847 1.007272 -0.035766 2.252473 0.197950 -0.288345 0.366037 -0.330134 0.883150 -1.782475 -1.560312 2.869093 -0.904291 -0.750430 -1.802931 1.367707 1.510151 -0.047070 -0.713045 -1.984810 0.949197 0.365314 0.080893 -1.690336 -1.091405 -2.559860 0.658763 1.672060 -0.448451 2.424249 -0.855397 1.378356 0.610891 0.764651 -2.026815 1.121755 -2.547802 0.894228 -1.323487 -0.149985 -0.517931 -0.270567 0.922109 1.150253 1.027114 -2.104917 2.447503 1.690171 -0.977725 -1.317497 0.632907 -1.028327 -2.018749 -0.049083 0.795298 1.025167 0.472937 0.033505 0.317762 -0.844753 -0.011802 -1.209362 -0.562511 2.136076 -2.651235 -0.189841 -0.114072 0.135449 -1.184131 1.386211 0.863413 0.246921 2.599984 1.040407 -0.858788 1.213711 -2.016981 0.969685 4.079930 0.795431 -1.877899 1.236494 -1.302824 0.206337 0.581952 0.345197 0.170768 1.521144 -2.573716 -1.378900 -0.587521 -1.666703 2.424458 2.070392 0.536489 -2.944240 2.869380 -1.745967 -0.686240 2.704795 2.428450 -2.666638 0.644703 2.660239 -2.926978 -1.125339 0.918768 -1.733662 -0.716142 -1.437865 0.310803 0.610979 -1.840467 -1.617314 -0.327373 -2.195842 2.196802 0.643118 0.307200 -0.737331 -0.882079 -2.281742 3.601771 0.209533 -0.242728 -0.355570 -0.562158 -1.840851 -2.935684 0.118393 0.937450 -1.653333 -1.020556 -1.632981 -0.093257 1.991460 -2.188840 0.769196 -2.051010 -0.165220 1.004278 1.098304 0.970498 -1.674179 -1.457566 -0.640480 -0.639794 0.638205 -1.586088 1.516856 2.398277 -0.865657 2.406238 -0.227455 -2.213524 0.300296 2.059839 -1.091997 2.351311 -0.290720 2.319238 0.725791 2.040667 -1.663412 -0.724185 -0.451254 -2.179339 -1.255410 2.085719 -2.582794 0.168901 1.403698 -1.001261 -1.618376 1.895116 0.940999 0.959191 -0.774549 0.488057 -1.597945 0.052782 -1.100164 0.501225 1.523468 -0.757420 -2.327143 -0.298710 1.821890 -1.489136 -1.745521 0.681149 0.383117 2.203411 -1.893108 1.339301 0.506887 0.138685 -3.115392 -2.632114 0.927948 -2.143062 -1.964742 0.689826 -2.756797 -0.960886 -1.332925 0.858262 -2.682644 -2.040190 1.071374 2.600702 0.095978 -0.685394 0.851067 -0.057495 1.232141 -0.019326 0.741213 0.195197 1.078202 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.453285 0.329197 -0.019325 -0.439260 1.486276 -0.044955 0.031336 0.796537 -0.039115 0.507804 -0.877853 0.113105 0.065929 -0.737739 0.223725 0.115158 0.086688 0.272315 -0.354754 -0.232287 0.264724 0.075900 0.061800 -0.450884 -0.110313 -0.766294 -0.203810 0.129702 0.194179 0.213559 -0.398898 0.208313 0.724310 -0.167488 0.380924 0.441212 0.736356 0.522041 0.060653 0.146159 0.550337 0.204295 -0.200908 -0.749101 0.137910 -0.470740 -0.764845 -0.259023 0.240174 -0.807590 0.320755 0.475946 0.141065 -0.206732 -0.326656 0.526279 0.466415 -0.227611 0.632886 0.428922 -0.768248 -0.384782 -0.422083 0.908383 -0.427473 0.612700 -0.089700 -0.938632 -0.551343 0.762141 0.130086 -0.323221 -0.462212 -0.052682 0.174916 -0.365671 0.330303 -0.055311 0.473416 -0.315299 -0.308240 0.393767 -0.231778 0.595827 0.099510 -0.036844 -0.124125 -0.159569 0.233011 -0.504580 -0.441722 0.746052 -0.399663 0.211956 -0.714333 -0.034385 0.257135 -0.138810 -0.075806 -0.663537 0.235790 0.231558 0.070617 -0.334722 0.007094 -0.598325 0.365393 0.477247 0.057066 0.447258 -0.239798 0.091484 -0.021615 0.213252 -0.177985 0.163227 -0.821949 0.311593 -0.165498 0.047133 -0.381871 -0.111420 0.608390 0.229183 0.319638 -0.635438 0.795598 0.295486 -0.381613 -0.286808 0.222686 -0.098385 -0.547902 0.090800 0.321967 0.094708 0.006428 0.120823 0.306050 -0.216238 -0.566036 -0.356075 -0.347752 0.415244 -0.873405 0.016947 -0.053997 -0.075130 -0.267194 0.391526 0.340071 0.195604 0.801238 0.364573 -0.168998 0.342307 -0.772368 0.486905 1.179685 0.342691 -0.573189 0.370876 -0.583513 0.195610 0.242971 0.148848 -0.081956 0.545565 -0.332772 -0.010662 -0.089512 -0.236003 0.767945 0.524849 0.347179 -0.905730 0.227375 -0.499362 0.098829 0.968185 0.706845 -1.025517 0.353797 0.882411 -0.350820 -0.140429 0.223279 -0.575409 -0.374645 -0.434285 0.218444 0.424085 -0.702139 -0.518786 0.065116 -0.547468 0.656123 0.130048 -0.046481 -0.002743 -0.436118 -0.054259 1.043797 0.132079 0.022939 -0.053964 -0.293294 -0.532591 -0.851964 0.001990 0.485393 -0.467240 -0.212679 -0.487040 -0.223492 0.843868 -0.510567 0.179487 -0.874234 0.224854 0.366750 0.081396 0.258997 -0.644460 -0.299046 -0.220162 -0.259591 0.161787 -0.650482 0.143554 0.502257 -0.399711 0.784449 0.236370 -0.359771 -0.044736 0.504529 -0.165525 0.725160 0.082090 0.542800 0.256415 0.615495 -0.483990 0.002867 -0.345527 -0.351191 -0.379988 0.659388 -0.859592 -0.083839 0.544575 -0.323037 -0.626531 0.502772 0.503320 0.423418 -0.223634 -0.199815 -0.236049 -0.092891 -0.389792 0.259975 0.395241 -0.481248 -0.702826 -0.036086 0.568886 -0.757316 -0.499641 0.308178 0.220609 0.816823 -0.588918 0.470527 0.291177 0.188835 -1.173933 -0.616055 0.039750 -0.362740 -0.410974 0.120858 -1.030463 -0.650179 -0.323208 0.410745 -0.789023 -0.332707 0.165498 0.784526 0.019239 -0.049189 0.453564 0.101537 0.171640 -0.020820 0.136541 0.146444 0.254488 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.834656 0.831255 0.591175 -0.743780 1.898664 -0.264651 0.462067 0.685371 0.150360 0.603503 -1.714763 -0.400993 -0.037531 -1.202059 0.301880 -0.688116 0.217974 0.504756 -0.449771 0.078707 0.487697 -0.059461 -0.169030 -0.947076 -0.124220 -1.230139 -0.610587 0.132696 0.263616 0.096922 -0.001394 0.441903 1.613667 0.020758 1.225016 1.083092 0.725296 1.139687 0.057230 0.235943 0.711300 0.650058 -0.420393 -1.275411 -0.039566 -0.699784 -1.051891 -0.657128 0.234735 -1.019246 0.240939 0.752973 0.234384 -0.051105 -0.738661 0.582058 1.038865 0.160394 1.123365 0.748009 -0.942429 0.362438 -0.780154 0.979319 -0.724684 0.831653 -0.264845 -1.354469 -0.460805 0.910635 0.369031 -0.665775 -0.906339 0.011701 0.336545 -0.626091 0.659193 -0.121483 -0.164509 -0.746104 -0.565264 0.595073 -0.131696 1.037036 -0.018827 -0.195977 -0.231754 -0.189598 0.381694 -0.851089 -0.806774 1.212151 -0.687071 -0.091249 -0.606251 0.402576 0.642044 0.047900 -0.275251 -1.191346 0.482483 0.038673 0.013986 0.022455 -0.139367 -0.827644 0.322509 0.801167 -0.264176 1.050269 -0.214216 0.803042 0.545695 0.357466 -0.731601 0.276835 -1.319044 0.588822 -0.762483 -0.114452 -0.163637 -0.051686 0.527259 0.554316 0.549461 -1.002681 1.153154 0.730108 -0.510727 -0.447497 0.330454 -0.500901 -1.154351 -0.151909 0.468039 0.630424 0.178653 -0.046765 0.130021 -0.427530 0.044152 -0.591921 -0.360740 0.739382 -1.151774 -0.175097 -0.055374 -0.064661 -0.624072 0.731610 0.469537 0.191428 1.351764 0.543198 -0.526529 0.106912 -1.201691 0.396532 1.935200 0.066445 -0.955964 0.678625 -0.623323 0.105308 0.539045 0.414955 -0.011731 0.452362 -0.929926 -0.498788 -0.487161 -0.713083 1.294034 0.778965 0.239423 -1.425019 1.114504 -0.577994 -0.418572 1.814640 0.934321 -1.444333 0.117773 1.276249 -1.059934 -0.655802 0.494485 -0.871797 -0.511553 -0.755406 0.275821 0.316626 -0.922880 -0.711917 0.162225 -1.121784 1.033108 0.230861 -0.187612 -0.258887 -0.694782 -1.028611 2.098514 0.146633 -0.016985 -0.087012 -0.328979 -0.160686 -1.535343 0.023768 0.453339 -0.676970 -0.337125 -0.789677 0.195588 1.191593 -1.132482 0.395970 -0.889168 -0.180112 0.529951 0.117421 0.331751 -1.079671 -0.698411 -0.303066 -0.271044 0.217994 -0.856316 0.566326 1.327197 -0.475350 0.904966 0.426374 -1.061700 0.015826 1.016926 -0.625771 1.241063 -0.277252 0.865189 0.384861 0.931171 -0.889971 -0.512323 -0.286407 -0.615635 -0.816395 0.980965 -1.217356 0.150036 0.601451 -0.544690 -0.727325 0.932784 0.542326 0.390151 -0.342533 0.067167 -0.894219 0.125812 -0.408319 0.253013 0.773431 -0.230475 -1.285526 0.035981 0.870732 -0.869345 -0.825160 0.236186 0.148131 1.224249 -0.953709 0.584888 0.426241 0.211975 -1.535147 -1.314391 0.344214 -1.157892 -0.714888 0.208259 -1.315853 -0.785791 -0.638658 0.474324 -1.040052 -0.762222 0.638211 1.352315 0.369400 -0.555350 0.406796 -0.041013 0.695913 0.108540 0.160215 0.043711 0.636678 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.589145 1.976070 0.620243 -1.486000 3.896779 -0.372934 1.050079 1.848553 -1.345327 1.263938 -3.194046 0.597013 0.057327 -2.953415 0.635934 -0.555454 0.495745 0.925758 -0.391532 0.593173 1.067715 -0.930247 -0.168062 -1.965698 -0.160940 -2.658385 -0.363365 0.093484 1.016572 0.644369 -0.029969 0.737481 2.627529 0.211265 1.733451 1.996043 1.285514 2.169968 0.734992 -0.579161 0.884353 1.179575 -0.683043 -2.762267 0.321955 -1.364787 -1.909932 -1.332519 0.402217 -2.347788 0.027368 1.684587 0.295126 -0.467250 -1.893249 1.113235 2.760979 -0.533227 2.143026 1.384156 -1.539812 -0.897291 -1.066472 1.596070 -1.171300 0.828959 0.463489 -2.094193 -0.223265 1.824484 0.243192 -0.965398 -1.382753 0.030595 0.660207 -1.416471 1.035033 -0.323043 -1.467400 -1.531451 -0.910999 0.890133 -0.361887 2.375293 0.209885 -0.222195 -0.282217 -0.396280 0.974272 -1.745056 -1.423749 2.372919 -0.846494 -0.211918 -1.782191 1.780544 1.380975 -0.201946 -0.793656 -2.031772 0.951214 0.351788 0.217529 -1.197004 -0.847389 -2.243965 0.770775 1.039582 -0.465468 2.382044 -0.295424 1.226712 0.522753 0.719305 -1.681505 0.767810 -2.794938 0.886457 -0.605536 -0.025403 -0.481563 -0.393002 1.210044 0.612609 0.955309 -2.214268 2.421408 1.682433 -0.634311 -1.511278 0.744865 -0.889451 -1.805156 -0.184100 1.008512 0.747296 0.409998 0.162454 0.326639 -0.707419 -0.964523 -1.714417 -0.809097 2.968077 -3.144025 -0.039146 -0.271902 -0.167233 -1.012148 0.934236 0.716195 0.402134 2.481604 1.182746 -0.862609 1.826805 -2.057748 0.981901 4.110321 1.863937 -1.885812 1.186607 -1.169603 0.202289 0.737380 0.376271 0.369882 0.815891 -2.522691 -1.295958 0.383976 -1.544897 2.307541 1.493282 0.858482 -2.953964 2.757883 -0.531629 -0.627656 3.163665 1.716147 -2.708066 1.221223 2.679561 -2.055156 -0.589735 0.710172 -1.609821 -0.964851 -1.224861 0.509543 0.608963 -2.089936 -1.743252 -0.590132 -2.100224 2.102484 0.639825 0.373127 -0.519956 -1.009360 -1.183893 3.550770 0.254561 -0.271943 -0.382789 -0.758736 -1.746362 -2.817121 0.180670 0.909964 -1.603164 -0.869827 -1.671718 -0.445694 2.316940 -1.975615 0.338234 -2.692376 -0.022176 1.047229 1.002099 0.583897 -2.437289 -1.406926 -0.178108 -0.141148 0.613396 -1.326576 1.575578 2.407250 -1.136356 1.874158 0.418863 -0.832611 0.731139 2.033768 -1.110106 2.250179 -0.345834 2.994306 0.778977 1.995594 -1.760521 -0.604424 -0.537101 -1.258621 -1.197603 1.907425 -2.548583 0.065290 1.702212 -0.747768 -1.920886 1.764712 1.043790 1.191060 -0.730259 -0.038946 -0.888369 -0.022707 -1.163661 0.608695 1.553766 -0.924495 -2.265648 -0.353469 1.884801 -1.264599 -1.072380 0.813224 0.566206 2.276669 -1.928985 1.533372 0.310383 0.249606 -2.892432 -2.851115 1.298443 -1.684437 -1.783112 1.030220 -3.370558 -1.095570 -1.263276 1.006359 -3.238264 -0.938559 0.425217 2.464169 -0.140994 -0.356485 1.060897 -0.036705 1.012460 -0.222415 0.935025 -0.010531 1.398588 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.712993 -0.122055 0.581222 -0.399202 2.626147 -0.792474 0.304839 1.870104 0.784552 0.483082 -1.235016 -0.242053 -0.133117 -0.528566 0.534062 -0.372831 0.455641 0.947077 -1.097833 -1.017074 0.481422 1.617020 -0.271051 -0.515630 -0.154988 -0.627550 -0.803770 0.238906 -0.712914 0.295029 -0.821230 1.121576 1.790726 -0.299236 1.288964 1.009943 1.837690 1.004025 -0.388755 1.586643 1.494164 0.206590 -0.222837 -1.181867 0.175981 -0.567083 -1.411029 -0.205221 0.366861 -1.287034 1.574158 0.599226 0.453296 0.294372 0.214313 0.875625 -0.281612 -0.144939 0.677910 1.068159 -2.379578 0.475897 -0.821678 2.190865 -0.662620 1.949016 -0.656061 -2.232436 -1.632674 1.366231 1.412057 -1.434260 -1.266010 -0.341238 -0.065638 -0.190448 0.814611 0.451154 2.294391 -0.053370 -1.044063 0.827531 -0.351361 0.538327 -0.063205 -0.332262 -1.040041 -0.575745 0.330431 -0.564566 -0.791991 1.577905 -1.297771 1.035103 -2.371157 -1.766398 0.082237 0.012727 0.161981 -1.905709 0.551421 0.075230 0.008165 0.433318 -0.179561 -0.120773 0.513624 1.194427 0.073874 0.700684 -1.122255 0.411140 0.263800 0.017995 0.677821 0.647065 -1.447634 1.347272 -0.942193 -0.207463 -0.473866 -0.224012 1.077669 0.614272 0.366477 -0.679990 1.013408 0.181196 -1.128808 0.081367 0.421748 -0.123299 -1.233177 -0.281868 0.961651 0.587041 -0.191545 0.202783 0.570481 -0.478210 -0.180859 -1.101955 -1.032768 -0.968918 -0.800545 -0.272874 -0.195097 -0.225000 -0.692583 0.960246 0.536593 0.560798 1.146960 0.567388 -0.359288 -0.904039 -1.795479 0.484891 1.297371 -0.057097 -0.897699 0.682156 -0.958027 0.441763 0.606923 0.595984 -0.719249 0.965533 0.324747 0.541104 -1.238100 -0.107636 1.365912 1.423136 0.267547 -1.414025 -1.029075 -1.896064 -0.091565 1.848840 1.486492 -1.886042 -0.426232 1.401975 0.501938 -1.170574 0.456300 -1.428712 -1.215003 -0.740108 0.565430 0.827319 -1.317693 -0.268267 1.582939 -0.819959 0.607381 0.075820 -0.802819 -0.241719 -1.444885 -0.724652 2.342146 0.179186 0.445736 0.267608 -0.702949 0.563235 -1.489777 -0.047088 1.077722 0.138788 -0.377419 -0.528846 0.051069 1.603614 -0.963344 0.699515 -0.211507 0.101413 0.652866 -1.107595 0.475024 -1.903573 -0.538311 -0.911497 -0.508637 0.268686 -1.280154 -0.699453 0.829575 -0.539385 1.219400 1.628353 -1.512539 -1.077142 0.691579 -0.288270 1.104157 0.119701 -0.076461 0.604256 0.814497 -1.091106 -0.504662 -0.754121 0.360141 -1.286686 1.278868 -1.217321 0.156551 0.177480 -0.875883 -0.581418 0.776290 0.996678 0.011877 -0.418205 -0.344133 -0.706727 -0.135088 -0.938453 0.576880 0.707518 -0.988699 -1.213338 0.407189 0.610170 -2.421320 -0.712540 0.394686 0.298352 1.589616 -0.882166 0.460502 1.010384 0.397283 -2.322941 -0.972458 -0.438461 -1.186179 -0.640313 -0.826865 -0.979281 -1.859501 -0.362918 0.939142 -0.767323 -1.222676 0.801864 1.311544 0.486721 -0.054943 0.727718 0.362448 0.325872 0.202655 -0.097858 0.266504 0.517241 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -4.508126 3.422995 2.426866 -3.095407 8.181933 -0.058223 1.610611 2.609880 -0.383109 4.388658 -7.835992 -2.114306 -1.604961 -6.192700 0.278946 -3.440587 0.965587 1.164251 -2.134889 0.636067 2.752785 -1.836220 -0.133304 -3.988427 -0.672305 -6.377481 -3.087171 0.416540 2.729218 -1.261028 1.044644 0.895805 8.470368 0.709251 6.104176 5.050695 3.030271 6.431365 -0.130890 2.304258 1.042633 4.455430 -2.974996 -5.413750 0.326127 -4.086905 -4.508178 -2.772078 1.539371 -4.166482 1.051693 4.511577 0.050561 0.324174 -3.614817 3.054598 5.703520 -0.336109 7.080329 2.566681 -4.104926 1.028619 -4.481177 4.668113 -3.466561 3.430150 -0.214656 -5.475388 -0.941850 1.618208 1.553416 -3.512134 -4.250072 2.388472 2.039432 -4.119009 2.439584 -1.434787 -4.489234 -5.411284 -4.049340 2.094241 0.863685 5.154244 -0.021931 -0.488213 1.020625 0.396775 0.884676 -6.355491 -2.124211 6.112148 -3.778586 -0.183693 -4.069199 3.056550 0.233773 1.618723 -3.209062 -4.140031 1.789640 0.339499 0.630653 -1.994781 -1.282742 -5.180463 2.296368 1.755885 -1.293879 2.718296 1.845209 2.751565 3.555698 3.961594 -5.469965 1.738735 -5.957128 2.348933 -1.125132 -0.205310 -0.339626 0.643079 0.973375 1.629668 4.663975 -6.322727 4.178776 2.608050 -3.603757 -4.757171 0.255235 -4.294183 -5.563338 -0.913420 2.560529 2.326361 1.043249 -2.165148 0.408694 -1.848694 -1.317329 -3.404099 -0.393334 4.820372 -5.535729 -0.876501 -0.581154 -0.832795 -3.328579 4.361801 2.739782 1.953411 7.130847 3.077472 -2.110519 1.734267 -5.608394 0.881332 9.145193 2.977039 -5.848788 3.989006 -3.548132 0.815748 2.979089 2.471668 2.206302 0.481276 -4.993496 -2.410839 0.530565 -2.294323 6.978092 2.793762 1.744030 -5.095369 6.445706 -0.486175 -3.176001 9.083179 4.948395 -6.746107 1.970520 4.488544 -4.215962 -2.209278 3.290556 -3.961195 -2.235013 -3.493507 0.818389 1.445468 -3.800495 -2.321723 0.925377 -6.416621 6.966670 0.816809 1.292245 1.146709 -5.121440 -7.605747 8.334234 -0.462636 -0.622216 -1.699482 -2.041915 -2.337590 -7.301150 0.952942 1.427168 -3.610312 -2.130937 -5.192940 1.845402 5.549355 -3.306066 3.380357 -5.185800 -2.260331 2.462783 0.136708 3.043576 -4.527903 -3.704182 -1.144735 -0.630973 2.729401 -3.549917 3.809321 7.675684 -2.588639 5.108877 0.515066 -4.250107 0.191600 4.190866 -4.563190 6.387059 -1.635015 3.917163 0.500295 4.668178 -4.323712 -1.927802 -0.207016 -1.095198 -2.660365 3.605743 -4.770787 0.312023 1.364651 -4.747582 -2.860624 3.053409 0.473177 1.376672 -0.581132 0.526975 -4.496343 0.146784 -2.081031 1.077922 4.463566 0.086852 -5.101104 0.744559 1.969991 -1.892694 -1.045512 0.889439 0.318076 5.444784 -5.498361 0.652401 0.979243 -0.117826 -5.934119 -7.385670 0.661537 -5.936015 -4.482124 3.335147 -6.828238 -1.525524 -4.053446 0.434593 -5.348907 -2.514828 2.016593 7.711119 2.785246 -3.543139 2.184340 -0.276430 4.587088 0.222339 0.762321 0.894151 3.464199 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -3.099405 1.788194 1.189902 -1.553418 5.312445 -0.467551 1.666620 1.736603 -1.025264 2.825924 -4.695112 -1.572924 -1.505018 -4.220505 0.362048 -1.688068 1.387831 0.755521 -1.049660 0.780402 2.026277 -1.769833 -0.081499 -2.421472 -0.263174 -3.879553 -1.590802 0.310033 2.914536 -1.058980 -0.143511 0.817426 5.854980 0.581359 4.623910 3.412324 1.857460 4.152285 0.442246 -1.135846 -0.033909 3.410249 -2.150030 -3.966437 0.183900 -2.692605 -2.761533 -1.973588 1.366590 -1.973868 -0.031626 3.113562 -0.220105 0.623830 -2.796639 1.699996 4.089557 0.160932 5.013674 1.562996 -1.968473 0.175375 -2.639002 2.560783 -2.040380 1.288039 -0.814148 -3.454517 -0.185555 0.656433 0.100032 -2.615003 -2.292636 1.925267 1.590478 -2.807687 1.924436 -0.574753 -2.261564 -4.460803 -3.441634 0.923727 -0.293539 3.896150 -0.255237 -0.294088 0.448360 0.245961 0.649195 -4.556026 -0.887739 3.672074 -2.719865 -0.499301 -1.190207 2.760133 0.265231 1.315244 -2.543637 -2.972062 1.041482 -0.339252 0.595814 -1.455059 0.497340 -3.003575 0.953002 0.297738 -0.104376 2.601407 2.308646 1.788564 2.695104 2.874010 -3.673167 0.415367 -3.904596 1.659543 -1.280680 -0.096115 -0.109317 1.132993 1.089254 0.803425 3.379155 -4.875175 2.368205 2.037499 -1.392305 -3.227094 0.267892 -3.160701 -3.628068 -0.903697 2.227538 1.145693 0.579171 -1.853611 0.580460 -0.851623 -1.181637 -1.061456 -0.333335 3.642445 -4.485191 -0.537335 -0.642212 -0.995661 -1.874843 2.682313 1.679216 1.791580 4.577394 2.548856 -2.283202 1.971146 -4.053470 0.788377 6.104751 0.972209 -3.940667 2.691735 -2.792541 0.358359 2.328568 1.942875 2.284142 -0.293105 -3.162139 -1.315721 1.391734 -0.904586 4.748690 0.998232 1.636046 -3.335380 4.304989 -0.251297 -2.322366 5.908101 2.241935 -4.982907 1.984653 2.705113 -3.035511 -0.790095 1.902737 -3.045301 -1.043280 -3.282265 0.786538 1.443890 -2.944610 -1.140965 0.595941 -4.312696 4.499074 0.469440 0.519878 1.054701 -3.263852 -3.454423 6.149547 0.042753 -0.239600 -1.687091 -1.907966 -1.980786 -4.898273 0.721090 -0.116858 -2.257092 -1.346343 -3.776790 0.685162 3.945197 -1.403483 2.338328 -4.305928 -0.551506 1.695751 1.028079 1.848713 -2.480971 -2.646813 -0.089359 -0.851954 1.653467 -2.631520 2.784090 4.848560 -2.210204 2.828854 -0.318177 -2.417886 0.907067 2.371109 -3.536504 4.251940 -0.918630 3.867565 0.235617 3.127880 -3.106481 -1.194528 -0.156990 -0.684067 -1.970993 2.320178 -3.063790 0.126010 1.398478 -2.738916 -2.686600 1.418891 0.289762 1.021478 -0.129987 -0.157126 -3.188464 0.225001 -1.676908 1.029625 3.166771 -0.055044 -3.400690 0.683749 1.152928 -0.648179 -0.855266 0.621916 0.002191 3.548728 -3.822520 -0.166369 0.449035 0.615180 -3.009337 -5.504500 0.745532 -3.550769 -2.410374 3.165797 -4.713593 -0.458378 -2.802829 0.105564 -4.411349 -1.057044 1.015023 5.257184 1.550717 -2.326682 1.543639 -0.110511 2.828721 -0.146062 0.800097 0.396725 2.228161 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -0.744004 -0.819754 0.505147 -0.072746 1.891166 -1.104878 0.181245 1.256044 1.569477 0.096334 -1.038028 -1.132656 -0.646024 -0.334328 0.505256 -0.458108 0.876935 0.972583 -1.218482 -1.128065 0.675190 1.741783 -0.357158 -0.530434 0.180312 -0.147624 -1.037058 0.096518 -0.793477 -0.153922 -0.930759 1.255167 2.037211 -0.032601 1.511596 0.978832 1.810054 1.217373 -0.719811 1.572122 1.204315 0.712499 -0.247491 -1.152237 0.321549 -0.584145 -0.910256 -0.100784 0.508025 -0.566960 1.575194 0.490972 0.398840 0.619309 0.287123 0.445465 -0.213728 0.528698 0.637574 1.075110 -1.883314 1.307988 -0.773897 1.595017 -0.855610 2.000302 -0.842759 -2.003482 -1.784204 0.778607 1.640270 -1.708904 -1.474475 -0.372307 -0.120037 0.054735 1.055433 0.722557 3.075247 -0.348738 -1.654833 0.432130 -0.511067 0.435467 -0.461712 -0.541554 -0.936981 -0.669964 0.490227 -0.393649 -0.669725 0.914340 -1.483547 1.128233 -1.511344 -2.041912 -0.294528 0.291981 -0.036027 -1.953557 0.384599 -0.299544 0.007488 1.553449 0.216298 0.667939 0.470567 0.853657 0.106669 0.457458 -0.458311 0.404409 0.382154 -0.096764 0.775478 0.221578 -1.145595 1.299573 -1.172710 -0.215619 0.003677 0.100656 0.995722 0.289861 0.313283 -0.542723 0.651425 0.191028 -1.007506 0.518260 0.494943 -0.394237 -1.429822 -0.544578 1.213095 0.707106 -0.294201 -0.052845 0.609995 -0.459624 0.232209 -0.372877 -1.234939 -1.673369 -0.337884 -0.513770 -0.391543 -0.634006 -0.562647 0.756127 0.113828 0.542885 0.847519 0.603235 -0.946953 -1.401202 -1.654152 0.335752 0.975769 -0.992176 -0.863837 0.375593 -0.656107 0.662781 1.008573 0.717244 -0.484999 0.412701 1.064023 1.083825 -1.523247 -0.033804 1.214603 0.936951 0.336794 -1.318138 -1.431882 -1.461699 -0.281124 2.076296 0.967630 -1.823706 -0.571905 1.003616 0.660578 -1.252569 0.111316 -1.011672 -0.961248 -1.206834 0.860179 0.695487 -1.326009 0.037945 1.913276 -0.866875 0.308572 0.030744 -0.979325 0.116582 -1.775252 -0.882360 2.523650 0.105705 0.480498 0.090176 -0.777767 1.429721 -1.478849 0.147367 0.340737 0.424711 -0.200196 -0.445831 0.476040 1.776105 -0.733736 0.688580 0.077506 0.066256 0.442841 -1.356774 0.513568 -1.546473 -0.787094 -0.679663 -0.598155 0.308259 -1.169676 -1.238325 0.906859 -0.709222 0.530186 1.659292 -1.714423 -1.175488 0.612365 -0.380590 0.858982 -0.105673 -0.336909 0.276748 0.763256 -1.201594 -0.736973 -0.533819 0.825692 -1.418306 1.067169 -0.890357 0.358086 -0.008045 -0.889385 -0.350204 0.671061 0.613480 -0.003291 -0.263206 -0.419317 -1.009842 0.286355 -0.288599 0.498644 0.894838 -0.356203 -1.239528 0.297401 0.273664 -2.206986 -0.739600 0.305894 -0.215824 1.639626 -0.743247 0.027639 1.059667 0.344155 -1.462774 -0.954771 -0.628027 -1.223129 -0.132091 -0.335660 -0.477449 -1.540164 -0.327681 0.850655 -0.032242 -0.860380 0.587035 1.001507 1.007940 -0.241690 0.712432 0.532421 0.501486 0.235762 -0.506390 0.150557 0.556328 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.705386 1.408797 0.479605 -1.170539 4.201844 0.133992 0.956829 1.362795 -1.545226 2.796697 -3.830255 -1.587999 -1.616556 -3.785196 -0.005986 -1.281405 1.119843 0.136550 -0.904248 0.791561 1.677322 -2.155112 0.164815 -1.835291 -0.281960 -3.071378 -1.312210 0.263901 3.194587 -1.341891 -0.328155 0.229392 5.145001 0.416420 3.892236 2.708446 1.116717 3.503660 0.561987 -1.751729 -0.645219 3.224380 -2.108134 -2.993653 -0.091334 -2.572786 -2.132393 -1.340194 1.372342 -1.143608 -0.617309 2.717101 -0.481941 0.599564 -2.535420 1.542016 3.376584 0.106570 4.812343 0.902453 -1.361886 -0.416128 -2.359986 2.428351 -1.799478 0.765656 -0.779008 -2.482216 0.342633 -0.097737 -0.602808 -1.850438 -1.709718 2.247148 1.577417 -2.677000 1.413613 -0.701558 -3.046965 -4.027667 -3.135966 0.611641 -0.288090 3.320816 -0.248823 -0.070332 1.115826 0.664177 0.269327 -4.431122 -0.254276 3.156127 -2.249155 -0.641874 -0.878878 2.923648 -0.245653 1.390779 -2.629553 -1.807720 0.693123 -0.281124 0.613864 -2.480154 1.123410 -2.888434 0.924372 -0.255009 0.183550 2.023093 2.848335 1.316531 2.641146 3.027470 -3.417895 -0.149418 -3.100845 0.960395 -0.824850 -0.131771 -0.079770 1.352818 0.642309 0.352154 3.468361 -4.596598 1.632846 1.577003 -1.203411 -3.345160 -0.093210 -3.041823 -3.018738 -0.662266 1.813813 0.713977 0.572637 -2.096612 0.468966 -0.493716 -1.690410 -0.389719 0.249249 3.412808 -3.745460 -0.442283 -0.493499 -0.802931 -1.445759 2.546542 1.614369 1.730957 4.047877 2.162609 -1.918523 1.802516 -3.354579 0.640713 5.193937 0.685085 -3.644950 2.470295 -2.559459 0.194537 1.838320 1.817230 2.608919 -0.315105 -2.714618 -1.317554 1.513014 -0.369539 4.145284 0.413159 1.464436 -1.862339 4.163448 0.278507 -2.084109 4.708055 1.681662 -3.881410 2.090835 1.866310 -2.684813 -0.188046 1.866152 -2.570503 -0.460049 -2.925050 0.396235 1.406701 -2.342649 -0.576768 0.289869 -3.811968 4.423620 0.279296 0.634688 1.306374 -3.057895 -3.127279 4.601137 -0.074597 -0.236420 -1.781721 -1.726897 -2.658443 -4.128750 0.708940 -0.401369 -2.130536 -1.147459 -3.497209 0.509694 3.063102 -0.549468 2.385195 -4.223485 -0.462047 1.435106 1.372818 1.936411 -1.117769 -2.222585 0.226596 -0.905357 1.803784 -2.376215 2.890475 4.071250 -1.848087 2.795227 -0.930999 -1.860408 0.994414 1.669857 -3.390728 3.722875 -0.719445 2.844764 -0.098637 2.629790 -2.361905 -0.767813 0.104489 -0.536070 -1.309640 1.549370 -2.329787 -0.079310 0.819358 -2.575248 -2.198585 0.724827 -0.322605 0.967815 0.200133 -0.233286 -2.834958 0.052197 -1.318929 0.848416 2.708564 0.215982 -2.442381 0.813334 0.420022 0.250788 0.166891 0.367295 -0.146684 2.700661 -3.429639 -0.745844 0.109261 0.578189 -2.032832 -4.517770 0.039964 -2.552059 -1.997994 3.472893 -4.010577 0.179629 -2.516591 -0.463445 -3.527682 -0.663425 0.755900 4.789907 1.416394 -2.434272 1.187644 -0.185750 2.586010 -0.073648 0.641923 0.382753 1.667753 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -3.724690 2.606473 2.235551 -1.792484 5.931690 -0.021045 1.914318 2.274481 -2.526785 3.670128 -5.646207 -1.502784 -1.900005 -5.028290 0.122716 -2.732567 1.365043 0.250164 -1.058865 1.423694 2.282381 -2.656779 -0.291244 -2.813630 -0.467519 -4.925748 -1.794749 0.257028 4.234477 -1.416827 0.285537 0.618715 7.226035 0.581974 5.903185 4.278431 1.761624 4.704828 0.632503 -2.186469 -0.715748 4.319768 -2.887276 -4.113938 -0.503781 -3.324742 -3.147202 -2.062578 1.550881 -1.880433 -1.533255 3.745847 -0.538566 1.037429 -3.286681 2.523440 4.615607 -0.161680 6.349507 1.525371 -2.154335 -0.158405 -3.395942 3.383983 -2.269442 1.093157 -1.322696 -3.370950 0.829089 0.009389 -0.795099 -2.310129 -1.856594 3.040785 2.154060 -3.727476 2.021047 -1.025171 -4.987431 -5.457880 -3.841064 1.120524 0.231264 4.584854 -0.246847 -0.221926 1.459453 0.894422 0.364425 -6.006976 -0.649824 4.870421 -3.251689 -1.586325 -1.900999 4.091819 0.343013 2.079686 -3.102828 -3.065016 1.361604 -0.497449 0.667249 -3.642673 1.229889 -4.021039 0.780475 -0.045647 -0.072112 3.439344 2.413759 2.511451 3.991395 4.037299 -4.787671 0.599480 -4.461357 1.707262 -1.715884 -0.329647 0.104661 1.512480 0.867485 1.224259 4.561031 -6.060749 2.294446 2.451840 -1.636569 -4.544460 -0.072543 -4.406667 -4.351719 -1.219601 2.336902 1.620105 0.962912 -2.833481 0.545564 -0.875896 -1.237559 -1.575534 0.351411 4.713996 -5.453450 -0.763938 -0.578351 -0.584091 -2.390092 3.695590 2.300947 2.213415 5.624321 2.874666 -2.438125 2.369518 -4.646012 0.390865 7.065406 0.854978 -4.819365 3.621234 -3.419280 -0.127714 2.396397 2.540858 3.164649 -0.234413 -4.693057 -2.640543 1.771634 -1.073110 5.784454 1.167205 1.444945 -2.832673 6.362706 -0.418030 -3.605342 6.291070 2.810103 -5.329345 2.405456 2.706552 -3.968036 -1.046145 2.771365 -3.986148 -0.932862 -3.628158 0.324798 1.563277 -3.056234 -0.730048 0.661804 -5.330720 5.923806 0.538159 1.052777 1.108927 -3.651458 -5.440837 6.577649 -0.185893 -0.401054 -2.324353 -2.088511 -3.410582 -5.722940 0.850182 -0.391532 -2.778618 -1.790643 -4.752647 0.984461 3.848132 -1.453712 3.329322 -5.609042 -1.261270 1.983642 1.800509 2.552365 -2.141732 -3.211641 -0.237550 -1.191418 2.338273 -3.312772 4.457079 6.190280 -2.147023 4.084666 -1.408451 -3.735547 1.153656 2.639837 -4.925484 5.181674 -1.045057 3.852010 0.278404 3.570643 -3.706064 -1.662570 0.106119 -1.283027 -2.042862 2.330229 -3.194867 0.238076 0.667313 -3.682638 -2.713527 1.312285 -0.447853 0.825115 0.041714 0.339805 -4.297026 0.117224 -2.511015 1.010576 3.772645 0.062071 -3.566950 1.274676 0.849030 0.000665 -0.173067 0.344296 -0.084485 3.643275 -4.683470 -0.788452 0.278541 0.733271 -3.280155 -6.627371 0.488365 -4.372265 -3.347600 3.932233 -5.325457 0.049230 -3.530070 -0.680108 -5.324850 -1.904479 1.772020 6.712517 1.800436 -3.482387 1.357359 -0.538499 3.818399 0.148450 1.255994 0.209679 2.359489 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -1.941388 0.716766 0.367693 -0.982435 3.866149 -0.607005 0.825502 1.564097 -0.578035 1.619966 -2.904160 -0.875452 -0.845674 -2.616061 0.444720 -0.439737 1.082502 0.774488 -0.937948 0.225331 1.277685 -0.569263 -0.092348 -1.506726 -0.177313 -2.038926 -0.992679 0.317599 1.537702 -0.727355 -0.842596 0.847575 3.818754 0.094758 2.950430 2.165454 1.579960 2.527025 0.316338 -1.257270 0.514219 1.991429 -1.228244 -2.562881 0.123149 -1.672562 -2.001602 -1.214371 1.005158 -1.168058 0.262993 1.885334 0.037328 0.341990 -1.676779 1.229894 2.312130 0.006211 3.036135 1.191382 -1.564284 0.291969 -1.552409 2.128145 -1.478916 1.128755 -0.835480 -2.479256 -0.618589 0.906036 0.593917 -1.929656 -1.733543 0.821788 0.905975 -1.614268 1.395537 -0.079678 0.164499 -2.916539 -2.367047 0.697292 -0.753508 2.373679 -0.269287 -0.230476 -0.097190 -0.061440 0.553433 -2.586299 -0.748360 2.229583 -1.823863 -0.072985 -1.123887 1.155997 0.306208 0.539433 -1.500323 -2.332318 0.731421 -0.347375 0.374059 -0.555412 1.165597 -1.311396 0.481176 0.477943 0.247166 1.899832 1.040226 1.098370 1.630964 1.457796 -1.458860 -0.037600 -2.606302 1.131193 -1.167303 -0.154546 -0.207885 0.667887 1.342916 0.479097 1.960902 -2.970919 1.697127 1.267370 -0.909339 -1.546651 0.439031 -1.577412 -2.343961 -0.601299 1.594427 0.698448 0.240441 -0.869903 0.709389 -0.500640 -1.011773 -0.421888 -0.593193 1.748186 -2.846611 -0.311784 -0.443272 -0.718547 -0.982975 1.634067 1.030797 1.147486 2.872503 1.617779 -1.628696 0.752736 -2.856067 0.778641 3.848512 -0.018974 -2.420208 1.659824 -1.763931 0.279753 1.463396 1.407963 1.089369 -0.080499 -1.443517 -0.523177 0.255629 -0.491452 3.012652 0.617471 1.003170 -2.186942 1.963038 -0.469252 -1.108706 3.773987 1.311538 -3.243893 1.089429 2.027697 -1.395931 -0.726460 1.041828 -2.095126 -0.956438 -2.189227 0.828453 1.119288 -2.133365 -0.700769 0.655933 -2.548073 2.534126 0.248193 -0.469819 0.459870 -2.117223 -1.498654 4.106677 0.114029 0.048285 -0.875544 -1.390475 -0.860973 -3.253497 0.382587 0.009659 -1.154167 -0.724894 -2.226369 0.183411 2.751437 -1.026283 1.308796 -2.930408 0.070582 1.176437 0.594721 1.058334 -1.744486 -1.584672 -0.012507 -0.746867 0.786707 -2.011906 1.269629 2.750800 -1.554983 1.585736 0.275263 -1.671992 0.395325 1.527492 -2.054735 2.700878 -0.306696 2.189653 0.350391 1.943162 -1.942304 -0.747859 -0.407790 -0.220574 -1.572032 1.610665 -2.137131 0.049122 0.939254 -1.391949 -1.964034 1.004630 0.576127 0.695879 -0.171414 -0.508424 -1.890532 0.203550 -1.117793 0.807569 1.930540 -0.423634 -2.196777 0.525241 1.052475 -1.022917 -0.460782 0.474749 0.077457 2.524688 -2.384361 0.214840 0.521180 0.875032 -2.160748 -3.239468 0.298925 -2.014059 -1.167118 1.892236 -2.957952 -1.047226 -1.590386 0.512802 -2.415153 -0.696366 0.796974 3.216406 0.966142 -1.341231 1.095405 0.016111 1.495614 -0.057933 0.331623 0.123404 1.277391 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -1.285562 1.010968 1.079091 -0.966275 2.807837 -0.075153 0.729723 1.165237 0.065307 1.196249 -2.396522 -0.624486 -0.177743 -1.331331 0.219753 -1.029132 0.145687 0.399085 -0.832794 -0.013766 0.707316 0.061550 -0.186584 -1.160177 -0.299132 -1.578064 -1.059005 0.206935 0.704405 -0.108652 -0.136263 0.350866 2.413445 -0.111428 2.071367 1.527787 1.200769 1.592278 -0.259892 0.545880 0.765136 1.118455 -0.892532 -1.577299 -0.192647 -1.213533 -1.595810 -0.829977 0.442634 -1.346635 0.563179 1.174579 0.179470 0.146576 -0.672430 1.163884 1.168141 -0.001699 1.931125 0.889709 -1.648518 0.624833 -1.423044 1.754820 -0.801638 1.550088 -0.697194 -2.045091 -0.727620 0.806788 0.579051 -1.310472 -1.141589 0.555459 0.478014 -1.035637 0.945622 -0.378666 -0.066220 -1.439000 -0.991180 0.850703 0.044197 1.372116 -0.060841 -0.224933 -0.312818 0.017446 0.191551 -1.705034 -0.863868 2.011902 -1.365483 -0.087226 -1.220003 0.216327 0.307958 0.522686 -0.599992 -1.566165 0.648495 0.231693 0.043824 -0.512714 0.252241 -1.276217 0.409985 1.055829 -0.209241 1.067235 -0.169320 1.051533 1.191492 1.031726 -1.023318 0.631597 -1.737223 0.885974 -1.042955 -0.054445 -0.238662 0.224890 0.653273 0.874889 1.249983 -1.634950 1.315876 0.716181 -1.104184 -1.012295 0.204100 -1.168704 -1.807531 -0.234882 0.622586 0.914821 0.200816 -0.578191 0.273154 -0.657419 -0.093442 -0.951541 -0.169184 0.662214 -1.669996 -0.372148 -0.048947 0.010142 -1.039971 1.572568 0.996676 0.509619 2.146736 0.881707 -0.548938 -0.078934 -1.841017 0.368738 2.512231 0.026535 -1.597779 1.213061 -1.324572 0.157846 0.944289 0.789589 0.182680 0.673922 -1.332195 -0.605249 -0.290171 -0.656487 2.157488 1.081231 0.438989 -1.619033 1.470139 -1.266695 -0.953013 2.547657 1.635222 -2.302894 0.095392 1.391604 -0.947486 -0.866763 1.021362 -1.534487 -0.832323 -1.032276 0.171060 0.545643 -1.107949 -0.733730 0.701178 -1.793455 1.955862 0.206104 -0.121715 -0.062806 -1.317064 -1.663571 2.848974 0.147478 -0.117001 -0.259597 -0.450415 -0.364018 -2.160081 0.112331 0.667526 -0.826920 -0.719998 -1.406143 0.583589 1.536924 -1.269117 1.018021 -1.194840 -0.546307 0.759789 -0.244800 0.894498 -1.495278 -1.004441 -0.857194 -0.504962 0.657169 -1.471877 0.961797 2.235148 -0.633233 1.628521 0.569993 -1.701559 -0.354561 1.286057 -1.215975 1.932090 -0.293658 0.926130 0.311382 1.326989 -1.377379 -0.708066 -0.374091 -0.487358 -0.971631 1.351694 -1.464964 0.188941 0.259270 -1.369363 -0.792772 1.040399 0.439296 0.121534 -0.272130 0.133558 -1.599743 -0.061974 -1.047880 0.256432 1.226284 -0.451920 -1.821649 0.347037 0.658894 -1.177736 -0.764043 0.187191 0.172774 1.708925 -1.523851 0.236985 0.626321 0.228603 -2.279302 -1.949969 -0.027436 -1.814425 -1.201479 0.359739 -1.613184 -0.973976 -1.133961 0.226506 -1.648045 -1.368417 1.087137 2.321162 0.862197 -1.077088 0.556238 -0.095494 1.394805 0.305239 0.211203 0.215350 0.745859 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.550636 -0.025402 0.063739 -0.276944 1.157102 -0.088832 -0.087548 0.678821 0.783989 0.303775 -0.875268 -0.800399 -0.331847 -0.507455 0.213291 -0.039452 0.125212 0.469529 -0.670384 -0.496485 0.554956 0.449212 -0.036845 -0.511254 0.083119 0.024463 -0.587656 -0.031999 -0.236956 0.288920 -0.631784 0.333303 0.847175 0.171768 0.651266 0.477932 0.751576 0.976618 -0.422734 1.245261 0.398669 0.596134 -0.304610 -1.064504 0.555281 -0.762689 -0.425667 -0.405692 0.266538 -0.735677 1.385638 0.456005 0.179578 0.011522 -0.015942 0.032717 0.188375 0.565826 0.622449 0.654728 -0.926394 0.436693 -0.655624 0.421324 -0.444418 1.412434 0.143733 -1.220841 -0.950686 0.339525 1.011506 -0.852489 -0.909889 -0.063061 -0.076385 -0.040261 0.612041 0.055469 1.001138 -0.080542 -0.892530 0.200253 -0.365191 0.546855 -0.271604 -0.293592 -0.614491 -0.268813 0.309082 -0.444034 -0.516891 0.673911 -0.496164 0.835488 -0.794049 -0.775783 -0.258380 0.238093 -0.307073 -0.471722 0.304687 0.446413 0.079349 0.662683 -0.416884 -0.268277 0.933610 0.713500 -0.150558 -0.104764 0.254466 -0.010018 0.074192 0.208266 0.050808 0.478729 -0.649524 0.399387 -0.240918 0.189957 -0.077590 0.096193 0.406175 -0.262675 0.211128 -0.427270 0.637544 0.237492 -0.761067 -0.074039 0.402717 -0.430641 -0.873371 -0.130646 0.575820 0.367146 -0.275820 -0.054306 0.110596 -0.445997 -0.421105 -0.357004 -0.586532 -0.365262 -0.233873 -0.266566 -0.285531 -0.493380 -0.334747 0.468266 0.129285 0.253119 0.711223 0.469766 -0.354709 -0.917719 -0.724184 0.420694 1.059642 -0.052874 -0.771821 0.093667 -0.213304 0.587893 0.560917 0.085612 -0.068226 0.671751 0.394107 0.488859 -0.869739 -0.207403 0.813928 0.960576 0.637754 -0.803886 -0.301069 -0.629400 -0.150485 1.252361 0.760960 -0.936553 -0.375114 0.566874 -0.014830 -0.367745 0.064399 -0.201816 -0.239877 -0.562232 0.342932 0.342725 -0.875794 -0.607029 0.569123 -0.756785 0.690153 0.087601 0.173952 0.022968 -1.153996 -0.099051 1.351999 0.114277 -0.165752 0.014016 -0.233971 0.123901 -0.802108 0.274269 0.491452 -0.070628 -0.513911 -0.397475 0.239117 1.050766 -0.507823 0.104554 0.322113 -0.120120 0.217889 -0.895908 0.638841 -1.023935 -0.525428 -0.489952 -0.215091 0.652643 -0.305195 -0.415216 0.840804 -0.476236 0.423634 1.295892 -0.081419 -0.562005 0.686457 -0.027569 0.592139 -0.259437 0.009265 -0.125642 0.710971 -0.457272 -0.208085 -0.171665 0.416749 -0.316405 0.887591 -0.509651 0.119465 0.205598 -0.792519 -0.074482 0.593523 0.276431 0.341914 -0.139725 -0.168867 -0.564508 0.057549 -0.082006 0.069422 0.727778 -0.184860 -0.899259 -0.231536 -0.012610 -0.990506 -0.409247 0.392753 -0.130160 1.109895 -0.529418 0.182040 0.435071 -0.225861 -0.999902 -0.229157 -0.500031 -0.472451 -0.251013 0.329668 -0.502025 -0.534063 -0.368741 0.454724 -0.249204 -0.321055 -0.124882 0.615338 0.700935 -0.002088 0.527548 0.366594 0.615819 0.217632 -0.423488 0.246001 0.583586 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -5.956120 5.406696 6.743874 -2.892421 10.385555 1.583941 3.699262 6.582698 -7.242604 6.832463 -9.473929 0.035001 -2.268295 -6.831869 0.137199 -5.370743 1.194263 -1.239437 -1.393097 2.766350 3.176622 -4.402610 -0.588006 -4.404198 -1.033898 -8.291461 -2.727193 0.115350 8.387893 -0.378322 1.163114 0.000641 11.086426 0.686778 8.921268 6.757004 3.433557 6.673838 1.143411 -4.587122 -1.880856 6.739711 -5.248695 -5.346431 -1.267124 -6.064065 -5.610605 -2.101827 1.622391 -4.632005 -4.961664 6.248354 -1.214320 1.539860 -3.985002 5.858211 6.738429 -2.333894 10.309569 2.132843 -4.541044 -3.917564 -6.091193 6.229399 -1.874601 2.650343 -3.150280 -5.780248 1.986239 -0.509065 -3.338259 -3.636043 -1.063554 6.251375 3.197896 -6.120339 2.907863 -2.350097 -10.233852 -7.313893 -4.885517 2.060017 1.347524 7.364818 0.069145 -0.262540 3.281069 1.908908 -0.049010 -10.644572 -0.697224 9.781548 -6.139611 -3.840210 -5.292536 6.300406 0.148850 4.536586 -4.448705 -4.389946 2.480714 0.633822 0.768407 -11.065098 1.654508 -8.664487 0.977175 0.266956 0.466745 6.763559 2.010043 4.901700 6.841420 7.780179 -8.780115 2.111062 -6.676783 2.875517 -3.090123 -0.196193 -0.623144 2.533102 1.092886 3.852898 8.141094 -10.137962 3.295202 3.721900 -3.490259 -8.312046 -0.916750 -8.351698 -7.088667 -1.579879 3.104514 2.657808 1.511342 -5.275550 1.186594 -1.614737 -2.430652 -5.305817 1.115928 7.929118 -11.341880 -1.671904 -0.572536 0.599395 -4.279317 7.383585 4.797056 3.820981 8.798384 4.223705 -2.673534 6.109799 -7.283479 0.895973 11.328452 3.019129 -8.071397 6.450930 -7.255305 -0.640730 3.559897 3.195875 5.170432 1.944445 -9.644422 -5.906908 5.220499 -1.457185 9.771618 4.423210 2.517799 -4.829101 11.574343 -4.549741 -6.876176 8.854945 5.927281 -9.048844 4.076633 3.802857 -6.577170 -0.784666 4.687251 -8.053640 -1.436622 -4.959686 -1.717229 2.901228 -4.385936 -1.419725 1.384892 -8.839199 10.959564 1.183466 3.129745 0.727724 -4.788153 -9.858859 10.287380 0.647426 -1.188298 -4.231727 -2.714460 -8.776510 -8.718159 1.234086 0.426681 -4.645570 -4.163904 -8.361887 1.009518 4.906737 -2.125126 5.994516 -11.007101 -2.354860 3.126704 2.816215 5.189505 -3.835536 -5.308833 -2.340494 -2.987544 4.745499 -6.586981 8.993229 10.543362 -2.739125 9.798235 -3.967150 -6.977275 0.868460 3.834294 -8.191913 8.543749 -1.385682 8.017442 0.511796 6.182723 -6.869481 -2.498548 -0.185528 -3.659918 -2.648971 4.091409 -4.976853 0.399207 0.154341 -6.926200 -4.072039 1.805395 -1.533010 0.404282 -0.050061 1.104524 -7.171419 -1.294457 -5.452917 1.349376 6.082682 -1.990122 -5.970087 2.071442 0.227591 -0.164206 -1.574611 0.511101 0.376098 5.177692 -7.869074 -1.996822 0.408100 0.304515 -6.854937 -10.596423 0.092436 -6.753658 -6.936583 5.123933 -8.483155 1.001265 -6.161158 -2.555044 -10.942149 -5.388646 3.438500 11.299031 1.608430 -6.298903 1.978240 -1.005370 6.873928 0.836972 3.735216 0.033991 2.366509 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -5.501804 4.100219 3.757587 -3.080813 9.927718 0.642323 3.217933 4.112893 -3.641579 5.963969 -8.830474 -1.785273 -2.197373 -6.819476 0.122979 -4.319139 1.102575 -0.064680 -2.193449 1.491521 3.205028 -3.057144 -0.402988 -4.214149 -1.029316 -7.645892 -2.963249 0.443829 6.030354 -1.355486 0.383047 0.493122 10.176897 0.270369 8.374883 6.192159 3.428193 6.570924 -0.146398 -1.231864 -0.353556 5.924943 -4.407232 -5.655556 -1.076530 -5.122494 -5.675497 -2.866467 2.149485 -3.930589 -1.352581 5.686050 -0.621878 1.233612 -3.877047 4.862344 6.189672 -1.207117 9.304294 2.426532 -4.449520 -0.442344 -5.672469 6.434778 -2.820364 3.073496 -1.983841 -5.833382 0.244498 0.490485 -0.924835 -3.519543 -2.775367 4.597980 3.191325 -5.582128 2.955832 -2.037887 -6.854871 -7.582365 -4.929375 2.261157 1.082036 6.568068 0.008346 -0.318142 2.035473 1.380481 0.159977 -9.107848 -1.347938 8.262038 -5.199797 -2.180762 -4.944529 4.696539 0.192337 3.251190 -4.288545 -4.693165 2.192615 0.274126 0.816549 -6.548418 1.150995 -6.765593 1.268148 1.130774 -0.156821 4.508194 2.106350 3.438739 5.575093 6.240491 -6.758915 2.125681 -6.495285 2.764268 -2.327076 -0.139402 -0.448932 1.800246 1.591474 2.530214 6.849539 -8.661563 3.710741 3.156777 -3.596020 -6.941742 -0.372973 -6.615386 -6.713717 -1.344541 2.943173 2.620867 1.376294 -4.076952 1.136023 -1.676539 -1.849123 -3.184698 0.748692 6.058687 -8.191894 -1.230705 -0.572058 -0.107762 -4.100634 6.440994 4.100436 3.146771 8.783445 4.052950 -2.533536 3.126571 -6.942784 0.719489 10.526393 2.150240 -7.240917 5.606359 -5.913112 0.087027 3.313376 3.495038 3.827746 0.912779 -7.297166 -3.640576 2.539352 -1.711642 9.055775 2.800651 2.069715 -4.474384 8.906601 -2.675121 -5.308373 9.021093 6.158748 -8.420315 3.008815 4.152585 -5.262522 -1.848654 4.707564 -6.398093 -2.051057 -4.751358 0.121425 2.340633 -4.138214 -1.384925 1.535706 -7.948366 9.334688 0.837842 1.990436 1.445007 -5.368607 -8.408936 9.440439 -0.319738 -0.840124 -3.060013 -2.561241 -5.627125 -8.394136 1.157370 0.589118 -4.081086 -3.221795 -7.134784 1.642296 5.565525 -2.669053 5.269349 -7.724014 -2.239524 2.979668 1.643029 4.463921 -3.661139 -4.576143 -1.843786 -1.802272 3.730485 -5.458354 6.392110 9.465442 -2.833761 7.259260 -1.764505 -6.078939 0.488110 4.148339 -6.897065 7.930434 -1.052239 4.959409 0.438332 5.513826 -5.633979 -2.314219 -0.225021 -2.202655 -2.753570 4.006066 -4.930413 0.338361 0.515191 -6.270784 -3.688771 2.353644 -0.496346 0.701118 -0.149959 0.802911 -6.499117 -0.443603 -4.776071 1.316380 5.528198 -0.729258 -5.458221 1.905913 1.125378 -1.056317 -0.463299 0.593713 0.265698 5.732558 -6.987315 -1.033702 0.799856 0.776398 -6.503904 -9.621573 0.073039 -6.884961 -5.941099 4.746906 -7.633492 -0.509795 -5.442981 -1.093473 -8.439659 -4.369860 3.251843 10.358552 2.647431 -5.028997 2.115333 -0.742251 6.001203 0.441742 1.983303 0.903979 3.024178 +PE-benchmarks/tug-of-war.cpp__main = -0.513626 -0.090252 -0.243781 -0.207881 1.150029 -0.150847 -0.085230 0.697097 0.332893 0.376614 -0.704744 -0.452901 -0.355355 -0.683993 0.207718 0.236577 0.299361 0.388335 -0.496310 -0.384229 0.486450 0.145660 0.072505 -0.415799 0.075291 -0.222519 -0.304090 0.018568 0.060282 0.184816 -0.656088 0.307336 0.840519 0.108598 0.474207 0.381218 0.658610 0.850711 -0.089281 0.453309 0.288193 0.548044 -0.245691 -0.965593 0.484996 -0.649584 -0.409248 -0.305378 0.347138 -0.613049 0.860927 0.458044 0.111278 -0.027039 -0.255698 0.095956 0.412493 0.273477 0.673191 0.497605 -0.674296 -0.090135 -0.437373 0.488783 -0.478471 0.822908 0.109697 -0.970220 -0.690227 0.375808 0.525369 -0.613768 -0.684053 -0.048794 0.044623 -0.165851 0.496900 0.123848 0.813050 -0.296901 -0.843860 0.105972 -0.466892 0.613342 -0.202804 -0.184206 -0.336581 -0.251794 0.330330 -0.475070 -0.356750 0.524160 -0.420326 0.632893 -0.556930 -0.322776 -0.157909 0.076207 -0.349729 -0.474590 0.172218 0.254615 0.133932 0.246210 -0.159285 -0.267472 0.716929 0.333951 0.050680 0.137834 0.390717 -0.086999 -0.043182 0.210451 -0.058061 0.183675 -0.704992 0.329393 -0.082541 0.138438 -0.158823 0.103309 0.516408 -0.268950 0.291200 -0.617871 0.607472 0.261894 -0.439888 -0.182885 0.334106 -0.279887 -0.671968 -0.080614 0.612437 0.104089 -0.185432 -0.037931 0.245766 -0.248860 -0.676102 -0.123932 -0.542103 0.077340 -0.554150 -0.131465 -0.272060 -0.481750 -0.182659 0.288279 0.084732 0.293968 0.639947 0.481954 -0.435340 -0.202532 -0.748176 0.494134 1.093867 0.127149 -0.696065 0.131558 -0.323178 0.477225 0.494134 0.118451 0.141050 0.422837 0.276748 0.428335 -0.348245 -0.079787 0.748389 0.581133 0.638977 -0.798962 -0.161120 -0.311026 0.050017 1.111079 0.527407 -0.951199 0.139371 0.605891 -0.154388 -0.082279 -0.006324 -0.258032 -0.195555 -0.660400 0.382954 0.471840 -0.879029 -0.472098 0.292945 -0.638447 0.622082 0.064045 0.096375 0.184333 -0.944408 0.173020 1.147370 0.119538 -0.030638 -0.126252 -0.400755 -0.296929 -0.826534 0.214661 0.252678 -0.223244 -0.322678 -0.462573 -0.075426 1.035624 -0.274866 0.099062 -0.380073 0.204446 0.266969 -0.334692 0.445785 -0.725255 -0.456372 -0.129008 -0.246701 0.492138 -0.402407 -0.234856 0.566300 -0.559129 0.442268 0.745793 0.060880 -0.175358 0.494644 -0.124366 0.573963 -0.140153 0.383340 -0.060357 0.649644 -0.427543 -0.046657 -0.211616 0.249506 -0.350317 0.683981 -0.615815 -0.004018 0.442811 -0.543585 -0.391374 0.421643 0.303827 0.507977 -0.093654 -0.292681 -0.359951 0.044412 -0.113570 0.199704 0.615462 -0.219110 -0.735899 -0.166994 0.134303 -0.728314 -0.342678 0.369490 -0.042039 0.935270 -0.550125 0.178397 0.295063 -0.022064 -0.761161 -0.441468 -0.255176 -0.246515 -0.228965 0.561333 -0.784409 -0.423041 -0.323187 0.443500 -0.519536 -0.029375 -0.239037 0.612343 0.355608 0.055969 0.558838 0.331717 0.354888 0.013395 -0.183071 0.191259 0.467761 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -3.153503 2.907175 2.683737 -1.699820 5.178153 0.807228 1.942363 2.152650 -2.555328 3.634943 -4.967573 -0.874895 -1.449819 -3.804114 -0.175847 -2.761603 0.386369 -0.343175 -0.856928 1.053104 1.837009 -2.427318 -0.005015 -2.317172 -0.658004 -4.108492 -1.534601 0.127541 3.965014 -0.537377 0.373295 -0.121444 5.401471 0.381709 4.781609 3.400029 1.334011 3.944387 0.240679 -0.766826 -0.829479 3.469633 -2.672101 -3.602074 -0.389429 -3.177926 -2.604378 -1.795416 1.211462 -2.342214 -0.748508 3.273271 -0.578189 0.612069 -2.456233 2.463203 3.435715 -0.212575 5.591258 1.054680 -2.395403 -0.931046 -3.309665 2.667764 -1.321675 1.598773 -0.914308 -3.050262 0.748157 -0.177292 -1.324040 -1.972534 -1.024241 3.041795 1.625138 -3.295258 1.406711 -1.424950 -5.392357 -3.812592 -2.726193 1.137515 0.940404 3.801587 0.133322 -0.029546 0.987066 1.117965 -0.010887 -5.564826 -0.476817 4.914419 -2.706336 -1.135518 -1.857825 3.307535 -0.193852 2.015481 -2.518063 -1.712267 1.187965 0.576682 0.559359 -4.737787 0.050441 -4.764449 1.366405 0.321469 -0.385197 1.956485 2.060500 1.817993 3.276174 3.998163 -4.442309 1.580304 -3.852258 1.272725 -0.867647 -0.026026 -0.304194 1.316075 -0.017756 1.053814 4.115466 -5.237728 1.987043 1.733494 -1.901917 -4.701303 -0.327916 -4.042697 -3.598475 -0.606777 1.590698 1.335661 0.747261 -2.619656 0.138620 -1.072407 -1.373665 -2.134429 0.896431 4.360862 -4.640892 -0.623843 -0.337061 -0.155901 -2.363821 3.638957 2.389439 1.919183 5.036788 2.522373 -1.203411 2.125818 -3.731346 0.285431 5.777253 1.628314 -4.318539 3.189314 -3.410830 -0.011984 1.884970 1.682470 2.725212 0.883452 -4.611417 -2.449525 2.420559 -0.817388 5.021818 1.650956 1.740289 -2.064154 5.739597 -1.400699 -3.141799 4.821493 3.171757 -4.893275 2.021795 2.122902 -3.131803 -0.476255 2.833657 -3.568016 -0.508859 -2.543122 -0.541176 1.403656 -2.470014 -1.019691 0.403262 -4.678314 5.881860 0.498379 2.062689 0.935998 -3.159685 -4.383562 5.178991 -0.013961 -0.674785 -1.927344 -1.436343 -4.216954 -4.584082 0.724495 0.622542 -2.645528 -2.205803 -4.239982 0.951339 2.711520 -1.145047 3.116410 -3.750227 -1.495507 1.678919 1.164796 2.803106 -1.750970 -2.597265 -0.979871 -1.056210 2.766404 -2.700736 4.362762 5.502576 -1.511401 4.692748 -1.007852 -2.595784 0.633601 2.249256 -3.983542 4.496221 -0.853314 3.447921 -0.010776 3.198474 -3.109169 -1.059957 0.156186 -1.314235 -0.979606 2.251993 -2.620513 0.023967 0.195720 -3.955197 -1.796702 1.056992 -0.432648 0.450132 0.042798 0.856688 -3.527458 -0.648275 -3.065638 0.637953 3.195750 -0.520843 -3.245957 0.926929 0.160111 -0.104676 -0.177465 0.399017 0.151080 2.912705 -4.061152 -1.004336 0.134309 -0.169261 -3.606969 -5.256486 -0.031094 -3.706744 -3.395961 2.835477 -4.408851 0.502413 -3.185244 -0.989103 -5.584282 -2.073341 1.267269 5.995986 1.523187 -2.635310 1.165718 -0.432925 3.580162 0.326456 1.247849 0.574353 1.901524 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -4.926265 3.401959 2.529439 -1.767122 7.873598 0.568625 3.245516 4.577695 -5.404470 5.491003 -7.264542 -0.814188 -2.263669 -5.058193 -0.325988 -0.987391 1.678465 -0.545772 -1.176752 1.510011 2.879791 -3.533296 -0.299738 -3.323421 -0.788929 -3.554377 -2.063755 0.059918 6.501730 -2.329624 -1.936576 0.298914 8.869021 0.915201 8.708518 5.534110 1.560479 6.117979 1.649353 -3.834238 -1.772758 5.887799 -4.351850 -5.394669 -0.691665 -5.150763 -3.050094 -2.994484 1.941734 -1.922274 1.472258 4.956982 -1.115310 1.938805 -3.989464 3.322447 4.956220 -0.753935 9.268260 1.535326 -4.133339 -0.334940 -4.007635 4.526557 -1.439155 2.120749 -1.547878 -4.375821 1.865846 -1.204685 0.304175 -5.818921 -1.662658 5.112184 1.152259 -5.075153 2.751887 -1.604747 -4.840015 -8.451220 -5.807958 1.514190 0.481641 5.824852 -0.294546 -0.273437 -1.237295 1.822050 -0.090004 -8.946646 -0.085742 6.625589 -4.995166 -0.986954 -2.498918 5.059160 -1.465681 3.836202 -4.618079 -3.086889 1.813742 0.460530 0.796383 -6.855676 3.584136 -5.550955 1.815068 -0.314698 0.014932 2.898897 5.289175 3.167323 6.715428 6.399293 -4.653669 1.390896 -6.003458 2.116578 -0.973827 -0.558595 0.156967 2.686259 0.708287 0.262243 6.902888 -8.483203 1.951005 2.648572 -2.691429 -7.497547 -0.664342 -6.984608 -6.061934 -1.535130 2.936231 2.213401 1.272418 -4.762970 0.368817 -1.755159 -3.601273 -2.927989 1.288200 7.098710 -7.791753 -1.413837 -0.627210 -0.454945 -3.494325 6.018507 3.553118 3.521865 7.628634 4.028526 -2.550223 1.544802 -6.299199 0.192520 8.168675 2.111027 -6.951484 5.110914 -5.375534 -0.077839 3.681539 3.463158 4.821304 -0.992248 -6.322339 -3.091025 5.397820 -0.495786 7.995125 0.541890 3.645175 -1.247269 8.292053 -1.341668 -5.677470 7.718725 3.330683 -7.724380 2.956458 2.740267 -1.207670 0.297526 4.635760 -6.120349 -1.443348 -3.999379 -0.780241 2.249552 -4.194343 -0.451282 1.571578 -7.308084 9.440470 0.720826 2.341082 1.573312 -5.740943 -3.087316 8.527111 0.285581 -0.538344 -2.698986 -2.668043 -6.004965 -7.139844 1.134029 0.286273 -2.787853 -3.107168 -6.779609 1.467131 4.230311 -1.056898 4.864476 -5.551207 -1.933531 2.610885 0.750011 4.096468 -3.357888 -4.341231 -0.852525 -1.499665 4.740329 -4.876186 7.102261 8.617358 -2.475044 6.131889 1.267954 -0.967250 1.011801 2.783780 -6.836318 6.759426 -1.400284 5.642984 -0.109955 4.869061 -5.287673 -2.188604 -0.170194 1.124382 -2.066872 3.175757 -3.578244 0.288500 -0.680146 -5.898150 -3.101534 0.853530 -1.338359 -0.086563 0.337650 0.018243 -5.206149 -1.229753 -6.267956 1.441975 5.090237 -1.402892 -4.914048 2.001771 -0.573672 0.152955 2.805795 0.317134 -0.105978 4.723298 -6.401030 -2.786832 0.230450 0.994723 -4.563745 -8.350885 -0.552907 -4.722152 -4.527877 5.475140 -6.560662 0.155100 -4.986637 -2.121807 -9.738721 -1.570052 1.494191 9.701663 2.590665 -4.527885 1.402635 -0.586576 5.551100 0.624636 2.069313 0.010448 2.722530 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -1.157277 0.525638 0.281673 -0.580338 2.251487 -0.049283 0.473313 0.873427 -0.322697 1.206148 -1.752044 -0.635485 -0.506718 -1.428233 0.120101 -0.372696 0.493585 0.187650 -0.553180 0.083281 0.671525 -0.503582 0.086810 -0.809726 -0.155102 -1.382906 -0.664035 0.200538 1.171075 -0.377158 -0.404529 0.202397 2.187883 0.011969 1.690649 1.149542 0.810464 1.393814 0.139315 -0.574453 0.164082 1.208608 -0.852392 -1.369231 -0.037546 -1.105151 -1.189693 -0.650172 0.617916 -0.786717 0.035464 1.128376 -0.077145 0.192027 -0.906201 0.822744 1.315077 -0.009201 1.968194 0.517893 -0.928006 -0.059206 -1.025821 1.289469 -0.755613 0.653259 -0.618723 -1.499537 -0.332841 0.371289 -0.056497 -0.989200 -0.795113 0.751767 0.601396 -1.049622 0.763348 -0.214063 -0.199808 -1.718767 -1.268305 0.431774 -0.276791 1.385470 -0.083263 -0.072248 0.120557 0.106721 0.171616 -1.762126 -0.306347 1.398141 -1.130557 -0.141986 -0.394498 0.759079 0.043512 0.470876 -0.866981 -1.136056 0.319906 -0.061930 0.200703 -0.723593 0.688866 -1.076660 0.333492 0.241790 0.219023 0.946981 0.795712 0.592418 1.020527 1.139311 -1.179806 0.021657 -1.412924 0.616752 -0.620457 -0.045177 -0.213947 0.508104 0.633218 0.402857 1.378363 -1.868624 0.909985 0.664173 -0.591473 -1.121558 0.069773 -1.123640 -1.383221 -0.194775 0.774622 0.321757 0.192499 -0.734226 0.372340 -0.330367 -0.656961 -0.110814 -0.117781 1.097278 -1.740015 -0.189317 -0.159320 -0.295037 -0.627648 1.168688 0.766061 0.709662 1.794922 0.937450 -0.841974 0.588446 -1.640909 0.467881 2.285446 0.046062 -1.481859 1.064685 -1.254363 0.155457 0.908487 0.784460 0.786920 0.086099 -0.964489 -0.324970 0.426981 -0.156140 1.870743 0.354944 0.687775 -1.206235 1.351602 -0.436264 -0.680167 2.161829 0.913415 -2.018841 0.749293 1.046230 -1.026342 -0.166565 0.742747 -1.269039 -0.435502 -1.319436 0.262234 0.746248 -1.110156 -0.410704 0.352641 -1.577739 1.798277 0.132905 -0.006534 0.468787 -1.234503 -0.901870 2.309558 0.148171 0.008424 -0.586498 -0.746064 -0.874731 -1.884492 0.186387 0.028356 -0.870695 -0.424584 -1.444329 0.155075 1.464070 -0.431379 0.978371 -1.819797 0.029822 0.685477 0.335052 0.729378 -0.746120 -0.911876 -0.140995 -0.596921 0.592847 -1.294722 0.973890 1.634591 -0.832506 1.265118 -0.106168 -0.951025 0.223939 0.755099 -1.279635 1.668480 -0.205664 1.288433 0.120546 1.193525 -1.111475 -0.310399 -0.234933 -0.349910 -0.778685 0.937844 -1.259345 -0.037683 0.565504 -1.046249 -1.119797 0.470989 0.182780 0.410590 -0.031744 -0.222545 -1.303596 0.006742 -0.708296 0.442428 1.104546 -0.210567 -1.338811 0.339355 0.441334 -0.413405 -0.471146 0.216468 0.028536 1.352861 -1.461769 -0.113467 0.306638 0.429422 -1.308333 -1.881238 0.040369 -1.156689 -0.826896 1.136793 -1.763772 -0.384265 -1.042165 0.005265 -1.587628 -0.482600 0.504873 2.098193 0.564268 -0.973546 0.601423 -0.008905 0.982923 -0.007336 0.278259 0.182478 0.612017 +PE-benchmarks/Iterative_QuickSort.cpp__main = -0.708413 0.138093 0.247113 -0.274244 1.332380 -0.189469 -0.021430 0.924607 0.258989 0.405444 -1.025084 -0.561441 -0.510941 -0.838809 0.217941 -0.197313 0.327832 0.508740 -0.578855 -0.337080 0.664720 0.203083 -0.054030 -0.605782 0.087335 -0.168468 -0.526281 -0.051975 0.087142 0.172259 -0.538016 0.424185 1.239262 0.203424 0.906019 0.678475 0.776156 1.209640 -0.150637 0.716609 0.244877 0.813291 -0.396641 -1.298088 0.551293 -0.882717 -0.360565 -0.329465 0.371305 -0.708525 0.914808 0.586205 0.119456 0.113282 -0.291397 0.119828 0.430630 0.498246 0.913766 0.654282 -1.009048 0.067421 -0.688283 0.489464 -0.578644 1.214712 0.054795 -1.175607 -0.670291 0.281475 0.670440 -0.947215 -0.840994 0.082396 -0.046431 -0.229213 0.647428 0.104034 0.488616 -0.243010 -1.095306 0.152549 -0.383905 0.734848 -0.298929 -0.282616 -0.477901 -0.228193 0.382302 -0.721775 -0.456535 0.855786 -0.638544 0.759797 -0.769737 -0.382964 -0.236479 0.294734 -0.434420 -0.580995 0.333866 0.330515 0.140128 0.129715 -0.306822 -0.471603 0.922818 0.388236 -0.140670 0.252343 0.420656 0.191357 0.234993 0.376567 -0.202396 0.355354 -0.997324 0.454782 -0.340541 0.111183 -0.054981 0.176433 0.363351 -0.273177 0.432167 -0.795333 0.689213 0.358952 -0.617339 -0.413615 0.428785 -0.596222 -0.978249 -0.229872 0.775178 0.364852 -0.215957 -0.205501 0.115295 -0.386008 -0.603763 -0.556813 -0.584295 0.104933 -0.654654 -0.275896 -0.348173 -0.544174 -0.364437 0.477289 0.148471 0.392451 0.877884 0.627511 -0.527902 -0.363603 -0.951124 0.396608 1.286725 0.113224 -0.980793 0.243134 -0.372102 0.496929 0.663835 0.172134 0.229205 0.663060 0.090006 0.217888 -0.446475 -0.209096 0.967771 0.866941 0.731013 -0.879164 0.093408 -0.482224 -0.296768 1.507760 0.582970 -1.221022 0.075769 0.680269 -0.103461 -0.294350 0.106463 -0.454792 -0.212887 -0.741251 0.287520 0.483866 -1.131804 -0.566471 0.504681 -0.950506 0.924640 0.104050 0.200882 0.095419 -1.325309 -0.360568 1.595761 0.160662 -0.111447 -0.192299 -0.444533 -0.233129 -1.076494 0.301211 0.403000 -0.242510 -0.564292 -0.620053 0.133904 1.165943 -0.455236 0.269283 -0.243303 -0.116830 0.322077 -0.522607 0.687360 -1.066298 -0.684843 -0.328023 -0.285899 0.810283 -0.470314 -0.090387 1.041548 -0.602753 0.737367 1.060592 -0.240051 -0.320087 0.721274 -0.331806 0.771969 -0.292959 0.499656 -0.081829 0.825346 -0.711805 -0.273488 -0.138754 0.371555 -0.422253 0.860622 -0.649283 0.105186 0.238151 -0.882941 -0.237816 0.550093 0.235057 0.447870 -0.115776 -0.145397 -0.592329 0.004121 -0.194668 0.149992 0.884351 -0.277055 -1.050619 -0.159200 -0.004975 -0.913479 -0.297657 0.394207 -0.099881 1.126378 -0.743740 0.084866 0.359881 -0.225091 -1.034721 -0.626990 -0.385384 -0.543652 -0.344420 0.539085 -0.836883 -0.416719 -0.456139 0.425809 -0.688863 -0.250602 -0.173305 0.880003 0.617576 -0.072656 0.615882 0.342266 0.706829 0.165691 -0.205782 0.120174 0.700592 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = -1.851997 1.627669 2.642608 -1.309137 4.908681 0.583113 1.013446 3.354643 -0.841775 1.798962 -3.626019 -0.081075 -0.077877 -1.368502 0.214275 -2.222247 -0.109168 0.278007 -1.748102 -0.531024 0.900771 1.079985 -0.434959 -1.542805 -0.508723 -2.220835 -1.976182 0.175863 1.152208 0.499776 -0.144448 0.260724 3.772433 -0.665162 3.178842 2.086153 2.790876 1.851637 -0.970476 1.505820 1.343447 1.563615 -1.527842 -1.930048 -0.592877 -2.304025 -2.677754 -0.266537 0.600484 -2.544599 0.147107 1.472361 0.313959 0.562710 0.294927 2.409413 0.865037 -0.862341 2.709732 1.281313 -3.966091 -0.070124 -2.390821 3.794592 -0.670074 3.466958 -1.685537 -3.466396 -1.603723 1.011275 0.628049 -2.118071 -1.301288 1.188534 0.561126 -1.247148 1.553520 -0.622707 0.274634 -1.413184 -1.037152 1.365796 0.055601 1.531669 -0.192337 -0.525464 -0.346996 -0.078994 -0.038188 -2.736478 -1.315619 3.993586 -2.619549 0.238974 -3.883212 -1.222518 -0.051916 1.475581 -0.558096 -2.634967 1.031765 1.051608 -0.208688 -2.381937 0.545248 -2.130760 0.364417 1.685322 -0.040168 2.193461 -1.928780 1.852258 1.920555 1.846079 -1.270149 1.525080 -2.383424 1.695858 -2.476207 0.089026 -0.609365 0.220646 1.250339 2.004488 2.029759 -2.136117 1.689116 0.720515 -2.251184 -1.693076 0.192277 -2.274097 -3.042433 -0.150818 0.639746 1.599654 0.157851 -1.356230 0.512913 -1.142884 -0.403967 -2.769799 -0.252821 -0.367050 -2.973300 -0.964136 0.132492 0.698909 -1.795588 3.104113 1.898452 0.759641 3.176839 1.101377 -0.293306 0.303328 -2.848554 0.509645 3.417971 0.257995 -2.505904 1.822056 -2.655812 0.255268 1.516507 0.914292 -0.150340 2.449561 -2.018952 -0.941113 -0.638021 -0.729531 3.366987 2.841876 0.463138 -2.581267 1.681948 -3.720110 -1.763120 3.598136 2.990119 -3.833976 0.129428 1.596532 -0.446439 -1.255973 1.467254 -3.093080 -1.829863 -1.266746 -0.316323 1.071871 -1.533856 -0.913569 2.083762 -2.649027 3.331403 0.255488 -0.288899 -0.444636 -2.204285 -3.434159 4.188230 0.426438 -0.180698 -0.208389 -0.295259 -0.703031 -3.054247 0.010990 1.592723 -1.115312 -1.499537 -2.095494 0.934395 1.925239 -1.903365 2.088584 -2.387904 -1.180553 1.024955 -1.066731 1.872920 -3.159182 -1.546563 -2.726635 -1.237970 1.543195 -3.053708 1.307495 3.483837 -0.561285 3.763482 0.685136 -3.986910 -1.653450 1.670998 -1.730130 2.798549 -0.110824 1.059542 0.444782 2.018722 -2.410383 -1.199808 -1.000490 -0.673644 -1.429653 2.367304 -2.031598 0.479770 -0.341403 -2.766925 -0.651303 1.532640 0.284957 -0.280029 -0.430340 0.209855 -2.799633 -0.574108 -1.953565 0.032735 1.817799 -1.800742 -3.117324 0.610019 0.146814 -2.674607 -1.208733 0.079121 0.428696 2.269387 -2.150673 -0.150815 1.359542 -0.035747 -4.427714 -2.716853 -0.995304 -2.753769 -2.283713 -0.378110 -1.863097 -1.789924 -1.695742 -0.173304 -2.686826 -3.557607 2.315395 3.781477 1.204134 -1.702788 0.805966 0.029275 2.600644 0.795582 0.858506 0.354384 0.533867 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.374152 -0.161574 -0.349968 -0.085259 0.790743 -0.211213 -0.094529 0.628099 0.086376 0.304575 -0.365094 -0.176551 -0.277389 -0.537708 0.166759 0.345108 0.279436 0.306886 -0.298084 -0.243851 0.380833 0.049159 0.033043 -0.238612 0.052686 -0.209124 -0.067702 0.028061 0.196380 0.034171 -0.564158 0.243483 0.635245 0.023688 0.357965 0.281635 0.530817 0.545385 0.048488 0.008628 0.092602 0.442269 -0.187366 -0.637129 0.318523 -0.407290 -0.231364 -0.113229 0.315921 -0.294680 0.504345 0.331602 0.041186 0.037244 -0.213503 0.127469 0.279116 0.100146 0.508629 0.317388 -0.377953 -0.240335 -0.272257 0.526056 -0.374647 0.386344 0.030719 -0.582256 -0.392781 0.187245 0.216790 -0.399695 -0.349586 0.027908 0.040206 -0.173228 0.365628 0.117173 0.715260 -0.325351 -0.667662 0.013065 -0.411269 0.461971 -0.184809 -0.100810 -0.217019 -0.140245 0.213738 -0.379670 -0.162206 0.284845 -0.369953 0.401271 -0.349801 -0.121584 -0.091502 0.068383 -0.239795 -0.355814 0.094904 0.100129 0.147492 0.042551 0.139173 -0.067683 0.387284 0.017243 0.153611 0.233804 0.314314 -0.072919 -0.048492 0.197523 0.074467 -0.033049 -0.532918 0.238805 -0.041069 0.148160 -0.092250 0.120840 0.505584 -0.219853 0.263325 -0.516506 0.356676 0.148903 -0.133035 -0.162706 0.242212 -0.196991 -0.426016 -0.135652 0.512760 0.004079 -0.170461 -0.080894 0.307364 -0.039644 -0.632631 -0.017400 -0.383015 0.078282 -0.543132 -0.072479 -0.242435 -0.363755 -0.065555 0.145388 0.040367 0.278018 0.423530 0.398481 -0.334899 0.077983 -0.571923 0.334138 0.725014 0.065392 -0.481873 0.121316 -0.337020 0.272883 0.372624 0.157258 0.202324 0.264028 0.222029 0.322718 -0.026463 0.039129 0.550056 0.203892 0.440110 -0.503316 -0.153909 -0.137226 -0.000727 0.787897 0.270384 -0.731345 0.285982 0.341699 -0.042067 0.029750 -0.041537 -0.222107 -0.096598 -0.539990 0.323384 0.419395 -0.640685 -0.233267 0.208743 -0.424840 0.412331 -0.005853 0.020263 0.236668 -0.674359 0.313127 0.753624 0.119128 -0.016080 -0.218856 -0.368928 -0.367139 -0.576170 0.176529 0.019320 -0.124142 -0.202135 -0.377139 -0.174032 0.774177 -0.060631 0.062509 -0.601362 0.234427 0.203332 -0.086924 0.274899 -0.412118 -0.309015 -0.007908 -0.161331 0.335646 -0.341864 -0.137645 0.405270 -0.464544 0.275842 0.400198 0.073331 -0.034209 0.309680 -0.212486 0.405555 -0.028340 0.268493 -0.047234 0.399916 -0.367608 -0.012439 -0.158303 0.232828 -0.238484 0.353656 -0.369870 -0.026780 0.294342 -0.376412 -0.321354 0.194950 0.196300 0.397997 0.003709 -0.286378 -0.214232 0.010827 -0.169248 0.143925 0.460681 -0.146685 -0.447831 -0.025114 0.037383 -0.439288 -0.169505 0.233567 -0.015306 0.628469 -0.412896 0.057234 0.175919 0.077439 -0.419276 -0.416753 -0.186260 -0.057625 -0.139363 0.488150 -0.604555 -0.251161 -0.221280 0.308602 -0.527303 0.065543 -0.221754 0.432244 0.171793 0.057848 0.448776 0.214980 0.240924 -0.007484 -0.072994 0.093471 0.309394 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -8.015279 9.097371 7.186332 -6.317147 16.255296 1.318198 5.434998 6.522383 -3.722745 8.671557 -15.093820 -1.096699 -1.346793 -10.867585 0.495726 -8.775353 0.027171 1.152003 -3.340731 1.637973 4.479451 -3.454203 -0.826073 -7.529771 -1.953797 -13.804766 -4.761404 0.516485 6.238386 0.567912 2.632039 1.024309 14.436017 0.708349 11.528321 9.712117 6.238382 10.393059 -0.263194 4.526957 1.872718 6.975644 -5.633493 -9.938526 -0.950138 -7.447252 -9.634885 -5.253146 1.916215 -9.752811 1.005233 8.366090 0.047440 0.325533 -5.729470 7.047296 9.525443 -2.290305 12.561225 4.638389 -8.945866 -1.070010 -8.609279 10.266180 -4.440022 6.467953 -0.181013 -10.070988 -0.565395 3.583598 0.377826 -4.616920 -5.620382 5.132983 4.526627 -7.993718 3.687232 -3.782534 -13.003401 -7.428298 -4.764205 4.810887 2.888081 9.729505 1.258459 -0.574379 1.668320 1.207722 0.939593 -12.275184 -4.186787 14.836271 -6.543175 -1.803892 -11.005012 6.131976 1.963583 3.414102 -4.778495 -7.431984 4.081072 2.219289 0.789070 -8.946376 -5.016730 -12.799577 3.806750 4.581229 -3.085887 6.581105 -0.493427 5.476512 6.711793 7.963976 -10.656299 6.217252 -11.251640 4.840002 -2.367098 -0.241611 -1.397646 0.312340 1.124611 4.915194 8.507537 -11.483056 7.929455 5.178867 -6.934068 -10.267124 -0.168401 -8.480230 -9.901494 -1.137528 3.385985 4.993048 2.247978 -4.040970 0.232617 -3.719903 -1.902541 -9.905717 0.665557 9.718839 -11.403885 -1.521124 -0.355106 0.696839 -7.422097 9.443159 6.220232 3.350735 13.449334 5.600291 -1.620784 5.089080 -9.921464 1.186526 16.803931 7.362601 -10.716634 8.076907 -8.247874 0.360609 3.962360 3.783037 3.112009 3.829102 -12.853562 -6.481750 1.799360 -4.961435 13.058605 8.028554 2.366500 -9.173483 14.077381 -4.837763 -7.124504 14.326088 11.595237 -12.570503 3.056474 8.399032 -9.003051 -4.299139 7.263841 -9.321743 -4.161050 -5.218919 -0.114817 2.421538 -6.297781 -4.380971 1.391352 -11.765383 13.767014 1.942446 4.031349 -0.155487 -7.582599 -14.792008 15.171439 -0.964415 -1.689664 -2.689610 -2.610389 -7.676461 -12.697017 1.143740 4.561826 -7.171475 -5.548962 -9.736563 2.894385 8.669107 -7.074954 7.012244 -8.602368 -5.127235 4.656125 1.430073 6.069997 -9.421894 -6.564751 -4.423556 -0.808395 5.557339 -6.869601 9.421484 14.636253 -3.326175 12.125520 -0.716162 -9.560283 -0.158202 7.984203 -8.448857 11.937677 -2.374199 7.167559 1.749788 8.647945 -8.211584 -3.740430 -0.853983 -4.416693 -4.078507 7.563051 -8.904018 0.706559 1.793040 -9.361270 -4.701024 5.887605 1.234824 1.407535 -1.616405 2.447202 -8.261987 -1.220997 -7.580353 1.526423 7.831299 -1.980195 -9.273798 1.596014 3.486601 -4.208469 -2.241690 1.529894 1.712858 9.214149 -10.060043 1.370984 1.662903 -0.937952 -13.500940 -14.217043 1.511612 -11.818268 -10.551942 3.437345 -12.502261 -2.656638 -7.879849 -0.104290 -13.672016 -8.202982 5.277920 15.042887 3.632207 -5.571309 3.307259 -1.160474 8.820577 0.836643 3.390928 2.377902 5.793557 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -4.555799 3.692216 1.994168 -3.410047 7.006208 -0.262114 2.230624 4.305569 -0.916119 4.111314 -7.691334 -2.551420 -1.785461 -6.346264 0.216891 -3.924492 1.513321 1.167454 -2.254274 1.372692 3.131697 -1.657422 -0.123026 -3.993237 -0.978720 -5.132126 -2.142096 0.223230 3.451249 -0.581954 0.800741 0.602925 9.349617 0.793554 7.717418 5.302939 3.866342 6.463133 1.211031 1.178809 -0.144844 5.125526 -3.317538 -5.546582 -0.496167 -4.288692 -4.342227 -2.671994 1.504880 -4.327452 1.368124 4.613631 0.520498 1.075584 -3.662366 2.972042 5.431833 -0.558092 7.558476 2.640913 -4.054934 -0.169793 -3.756431 4.448920 -2.996212 3.269266 -0.475998 -4.116377 -0.405409 0.876745 -0.188546 -3.654217 -3.442417 2.762029 2.413624 -4.596140 3.272912 -1.555780 -3.647006 -5.669493 -3.854309 2.353049 0.530283 5.652135 -0.265246 -0.238472 0.712117 0.804323 0.365161 -7.035991 -1.184570 6.233002 -4.311345 -1.787469 -4.296292 3.968246 -0.401543 2.556005 -3.925163 -4.447649 2.208129 0.565036 0.762863 -4.120254 -1.104460 -5.379284 1.882085 2.159443 -1.611675 4.571670 2.678339 3.407457 4.700429 4.947728 -5.230722 2.448941 -7.019782 2.280493 -2.095738 -0.216996 -0.040679 0.977550 1.795418 2.185344 4.446655 -7.001923 4.224632 3.803505 -3.358436 -5.016198 0.535296 -4.977170 -5.936057 -1.208390 2.906271 2.386579 1.236052 -3.153946 0.981669 -1.796509 -0.990754 -3.896187 -0.078086 4.024713 -6.351210 -1.298112 -0.591751 -0.529323 -3.317505 4.989456 2.621181 1.412591 7.478358 2.789531 -2.713845 2.464500 -5.448385 0.326711 8.674541 2.062267 -6.015827 4.317732 -4.420533 0.228899 2.888737 2.916509 2.442918 1.121475 -5.909732 -2.895439 1.705191 -1.954147 7.279432 1.650815 1.857382 -5.476858 7.331666 -1.525580 -3.722458 9.263803 5.590882 -6.688649 0.670155 3.691962 -4.106177 -1.918883 3.617150 -5.027341 -2.048996 -3.780535 0.377366 1.583763 -3.852096 -2.301149 1.150863 -6.586001 6.895693 0.685596 0.360067 -0.074472 -5.699388 -5.029866 9.015558 0.020451 -1.052638 -1.703349 -2.338151 -3.168982 -7.752291 1.365348 1.427745 -2.716909 -2.375402 -5.157531 1.850571 4.814840 -2.779157 3.032653 -6.014159 -2.297745 2.997121 0.535654 3.448283 -4.466935 -3.940072 -1.372961 -0.586272 3.760768 -4.056322 4.927235 8.144882 -2.355676 5.908205 0.012390 -4.976469 0.264145 4.212761 -5.678707 7.028711 -1.481275 4.146984 0.345065 4.530184 -4.866362 -2.185896 -0.733638 -1.434892 -2.445809 3.501986 -4.632286 0.301223 0.255669 -4.383509 -2.637872 2.499390 0.265113 -0.199970 -0.297200 0.871199 -4.790997 -0.566165 -3.783146 0.878318 5.049647 -0.138531 -5.387481 1.080967 1.681479 -1.131985 0.193384 0.356508 0.375361 5.791689 -5.798826 -0.218658 0.943355 0.052003 -5.934480 -7.973123 0.950914 -5.300870 -3.652782 2.945856 -5.857325 -1.598955 -4.153446 0.209941 -6.781912 -2.602860 2.829749 7.963304 2.635199 -4.086686 1.199921 -0.305338 5.543125 0.916462 1.234445 0.993106 3.459934 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/tarjan-algorithm.cpp__main = -2.408138 -4.092627 3.733203 0.475838 8.019859 -5.469250 1.984743 7.725575 6.056780 -0.843374 -3.328881 -3.569452 -2.612926 0.437513 2.629786 -3.042970 3.385467 4.713325 -5.829949 -6.039329 2.848661 10.522598 -2.620294 -1.769279 0.916435 1.481731 -4.118089 -0.164871 -5.853031 1.594270 -4.326346 6.797164 7.653344 -0.062280 6.117116 4.199072 8.748328 4.612206 -4.306304 10.398219 5.876671 1.829637 -0.303957 -4.541958 1.468762 -1.825162 -3.762212 0.413411 1.341426 -3.338125 9.196129 1.407455 2.232940 3.440573 3.610642 1.923262 -3.995796 1.731853 0.520504 5.501486 -10.712774 5.524497 -3.071706 7.900204 -2.095503 10.720874 -2.690048 -9.032338 -8.434344 3.559640 8.962194 -7.921436 -6.169749 -2.568490 -1.701427 1.679007 4.421131 3.995001 13.649264 2.058749 -6.765492 2.069428 -1.481841 0.636831 -1.974733 -2.941191 -6.095083 -3.675526 2.066843 -0.298589 -3.159093 5.454948 -6.437549 6.417691 -12.054463 -12.581047 -1.796777 1.630289 0.868740 -8.809187 2.389974 -0.373063 -0.288642 5.769638 -2.251018 3.383388 2.507936 5.037727 -0.126971 1.754330 -5.198442 1.492455 0.818690 -1.643738 6.132507 3.776480 -4.563862 6.913991 -5.133428 -1.069427 0.032283 -0.769054 4.105264 1.051211 -0.191137 -0.395998 1.996315 0.166309 -5.514840 2.876695 2.352370 -1.319692 -5.935023 -2.917765 5.558058 3.906643 -1.883097 0.652948 2.457411 -2.325566 1.927786 -4.658715 -6.225131 -10.046562 -0.033300 -2.735642 -1.959453 -2.133558 -3.068810 3.489316 0.069713 2.343549 2.218503 1.979321 -2.641869 -8.649788 -6.775031 0.758669 2.057895 -2.941802 -3.023933 0.950831 -2.330246 3.228880 3.274858 2.264404 -3.972210 3.732318 5.511206 5.415742 -8.425147 -0.109262 4.380721 6.945741 0.903368 -4.675516 -9.046580 -10.047202 -1.717163 6.810387 6.089985 -6.849475 -4.979104 3.884527 5.739527 -6.963132 0.456878 -4.992068 -5.071463 -3.631045 3.350606 2.751474 -5.842261 0.988326 10.495668 -2.730829 -0.077069 0.200061 -3.707882 -1.371432 -8.159993 -4.106641 10.094430 0.210702 2.246710 1.582084 -2.913006 6.504618 -4.988545 0.662386 3.282652 4.212383 -2.096768 -0.570038 1.868533 6.881252 -3.648816 2.893180 4.658359 -0.506084 1.540962 -8.490973 2.814542 -8.882041 -3.187206 -4.932082 -1.929833 2.169382 -4.337757 -7.120680 3.193067 -1.965889 2.903083 10.187985 -7.587039 -7.622344 2.436559 -0.352613 2.292520 0.015796 -3.687702 1.518841 2.707408 -5.294211 -3.909075 -2.612857 5.284412 -6.206662 5.233667 -2.721119 2.236291 -2.054264 -4.507349 0.391607 2.952018 2.794550 -1.564129 -1.630505 -1.134441 -3.482423 0.364327 -3.275685 2.055645 3.616986 -3.208096 -4.409561 1.318769 -0.137480 -12.213572 -1.812389 1.602512 -0.622123 6.915469 -2.169073 -0.035135 5.124430 0.504081 -7.621693 -2.790739 -3.927014 -5.443354 -1.613069 -4.465362 0.148270 -7.570159 -0.608423 4.277387 -0.489355 -6.125700 2.705771 3.099964 3.800198 0.949338 2.862112 2.952723 1.843017 1.492454 -2.165922 0.876304 2.347827 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = -0.147539 -0.271074 -0.150863 -0.212636 0.443939 -0.324062 -0.354570 0.746191 0.645710 0.147227 -0.212439 -0.114144 0.034812 -0.277513 -0.002620 -0.021281 0.268863 0.198015 -0.285791 0.010678 0.089486 0.200518 0.004649 -0.090819 -0.087261 0.002704 0.027891 0.130093 -0.274997 -0.055617 -0.076696 0.215488 0.485406 0.192778 0.602994 0.156859 0.220961 0.259409 0.161405 0.477425 0.239249 -0.024449 0.142565 -0.230436 -0.052594 -0.035174 -0.306360 -0.011014 0.021311 -0.360623 0.461526 0.157844 0.089597 0.174811 -0.061339 -0.006474 -0.186557 0.154056 0.183080 0.170644 -0.700739 0.020767 -0.166491 0.184569 -0.159726 0.027487 0.067121 -0.206224 -0.056715 0.343113 0.111761 -0.235837 -0.012947 -0.048028 0.128639 -0.058415 0.341471 0.091935 0.677376 0.027333 0.078959 0.188180 0.007280 -0.016081 -0.079114 0.176014 -0.156488 -0.111446 -0.156030 -0.236963 0.111263 0.024889 -0.544936 0.106677 -0.279636 0.152437 -0.033993 0.000837 -0.077001 -0.408022 0.135021 -0.147196 -0.056596 0.202321 -0.076007 0.059089 0.386967 0.126143 0.062148 0.168082 -0.125713 0.280796 0.233321 0.166339 0.040743 0.352690 -0.362953 0.168034 -0.312402 -0.035108 -0.070293 -0.095870 0.398643 0.413688 0.073576 -0.162493 0.325615 0.282088 0.020316 -0.021590 0.087415 -0.142229 -0.160924 -0.114961 0.237607 0.034730 0.151053 -0.093902 0.096796 -0.083898 -0.105108 -0.111017 -0.154211 -0.267717 0.079003 0.006120 0.095034 0.046208 -0.105824 0.105388 0.168697 -0.109239 0.292508 -0.208132 -0.176473 -0.365253 -0.262659 -0.026647 0.362111 -0.366305 -0.197099 0.341542 -0.096134 0.044715 -0.017253 0.241470 0.085692 -0.166596 0.061750 0.030210 -0.106768 0.092366 0.202576 -0.078827 -0.031061 -0.312551 -0.105111 -0.245226 0.094899 0.625439 0.228597 -0.435667 -0.316148 0.235612 -0.092816 -0.061723 0.056079 -0.035985 0.024165 -0.131316 0.289929 0.041519 -0.190089 -0.064575 0.313797 -0.236579 0.034931 -0.030165 -0.038965 -0.259626 -0.322787 0.239564 0.742896 0.036511 0.017808 0.275222 -0.237774 0.145033 -0.413641 -0.252062 0.036906 0.061921 0.334732 0.024561 -0.022815 0.288854 -0.198697 0.066719 -0.243776 -0.020714 0.207016 -0.442446 -0.194425 -0.116933 -0.157251 -0.158491 -0.142234 0.115615 -0.314373 -0.124231 0.202068 0.129924 0.404469 0.235814 -0.195824 -0.003440 0.100023 -0.276033 0.475252 -0.116825 -0.090374 0.193151 0.151750 -0.226094 -0.168266 -0.293026 -0.029385 -0.364025 0.243361 -0.272384 0.055962 0.035320 -0.002346 -0.160037 0.104501 0.165557 -0.014426 0.051032 0.001115 -0.300706 -0.112338 -0.398939 0.323661 -0.029708 -0.032387 -0.183854 0.131866 0.382954 -0.163455 -0.102644 0.015693 0.033988 0.414604 -0.195285 0.048018 0.392594 0.113252 -0.099825 -0.161165 -0.015911 -0.253392 0.088124 -0.397561 -0.395626 -0.449103 0.028900 0.228780 0.003525 0.158260 0.254620 0.522890 0.320934 -0.376424 0.064322 -0.083245 -0.049644 0.165832 0.153246 -0.030705 0.186948 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/tarjan-algorithm.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = -0.358222 0.103536 -0.055112 -0.350278 1.203107 0.007452 -0.092982 0.603660 0.384731 0.383127 -0.727863 -0.195903 0.037689 -0.400632 0.159597 0.119584 0.014763 0.233000 -0.476303 -0.406550 0.205438 0.326575 0.074463 -0.342030 -0.081143 -0.372722 -0.350116 0.113481 -0.043699 0.154119 -0.502077 0.145621 0.571818 -0.172864 0.318927 0.286120 0.685881 0.445128 -0.155687 0.536581 0.600276 0.161647 -0.170226 -0.580902 0.144206 -0.456537 -0.624953 -0.198402 0.218234 -0.657966 0.672116 0.321339 0.162962 -0.167375 -0.082057 0.394616 0.158585 -0.011812 0.484852 0.374620 -0.783339 -0.008513 -0.420747 0.797177 -0.372040 0.868959 -0.145636 -0.930556 -0.748799 0.625092 0.395880 -0.425446 -0.548553 -0.101905 0.062495 -0.180871 0.321708 -0.034334 0.907788 -0.144547 -0.311461 0.354081 -0.236589 0.357097 0.017285 -0.077812 -0.265508 -0.158123 0.171937 -0.332822 -0.420358 0.585524 -0.386558 0.390273 -0.604637 -0.452499 0.038506 -0.076583 -0.031679 -0.512052 0.170536 0.282385 0.021780 0.035882 0.062337 -0.351515 0.437312 0.601782 0.028181 0.097924 -0.186028 0.007335 -0.012251 0.130799 0.067188 0.160268 -0.587570 0.255016 -0.188974 0.048774 -0.311907 -0.048200 0.486903 0.148833 0.229152 -0.383125 0.643516 0.129836 -0.516405 -0.061725 0.195219 -0.058888 -0.529407 0.118568 0.233319 0.139977 -0.067369 0.093000 0.243188 -0.265646 -0.427711 -0.207207 -0.318276 -0.109854 -0.427317 -0.054358 -0.028926 -0.099815 -0.226135 0.414877 0.284582 0.123508 0.647455 0.262908 -0.113240 -0.208292 -0.629524 0.430519 0.849216 0.011781 -0.479776 0.235575 -0.451543 0.279809 0.270241 0.127966 -0.210298 0.556039 0.049886 0.228920 -0.410877 -0.148976 0.627509 0.521985 0.320183 -0.680280 -0.143790 -0.582457 0.153862 0.836269 0.653647 -0.844509 0.015683 0.674564 -0.068300 -0.195641 0.175525 -0.389626 -0.333335 -0.356389 0.202040 0.348855 -0.546381 -0.436764 0.258478 -0.435028 0.536577 0.073331 -0.149938 0.006991 -0.522400 0.027391 0.899620 0.114305 0.027094 0.072266 -0.181175 -0.142026 -0.681124 0.004326 0.503977 -0.278957 -0.183082 -0.322605 -0.016607 0.711845 -0.450816 0.165269 -0.339212 0.131610 0.267877 -0.269536 0.298912 -0.546826 -0.220912 -0.337002 -0.269515 0.190129 -0.565000 -0.137004 0.389322 -0.301287 0.606099 0.512048 -0.322121 -0.298337 0.414071 -0.009242 0.565280 0.041331 0.092735 0.135258 0.495036 -0.327107 -0.004222 -0.320200 -0.109921 -0.313662 0.603408 -0.660760 -0.044556 0.323121 -0.360667 -0.354415 0.455265 0.427082 0.285197 -0.177664 -0.200567 -0.272347 -0.066269 -0.234397 0.163772 0.312970 -0.373120 -0.640074 -0.046414 0.361225 -0.822202 -0.429756 0.241601 0.112812 0.749024 -0.426107 0.332647 0.364540 0.107090 -1.041748 -0.264069 -0.226212 -0.289335 -0.215657 -0.007418 -0.624051 -0.685395 -0.235601 0.361961 -0.332737 -0.335525 0.174137 0.595280 0.247745 -0.063998 0.366999 0.151937 0.201336 0.084979 -0.098582 0.194057 0.165494 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -1.159024 1.624167 0.919976 -1.053928 1.913874 -0.441609 0.693321 0.564714 0.253579 0.566123 -2.499321 -0.716625 -0.245932 -1.973210 0.388505 -1.027272 0.356629 1.004782 -0.247297 0.498666 0.911580 -0.631002 -0.257414 -1.631912 0.065801 -1.333604 -0.676387 -0.118660 -0.103745 0.575639 0.369386 0.733167 1.980591 0.837649 1.584002 1.640015 0.183172 2.192473 0.475840 1.004998 0.552978 1.062149 -0.432872 -2.425515 0.593514 -1.032474 -0.745138 -1.552938 0.042197 -1.685523 1.141098 1.091048 0.286277 -0.225912 -1.515591 -0.141370 1.907073 0.917509 1.416629 1.183745 -0.918990 0.756604 -0.811508 -0.108857 -0.989297 0.943322 0.856948 -1.554322 -0.044671 1.050709 1.181668 -0.917819 -1.458518 -0.196003 0.137206 -0.708835 0.830183 -0.158764 -1.710237 -0.586918 -0.940077 0.569543 -0.058551 1.641432 -0.070954 -0.380420 -0.865025 -0.351238 0.897843 -0.943940 -1.214461 1.483173 -0.271048 0.199549 -0.508291 1.241109 0.996318 -0.044631 -0.562625 -1.050433 0.805772 0.210165 0.093730 0.763232 -1.716293 -1.440723 1.292082 1.179729 -1.037552 1.103182 0.447833 1.154129 0.654069 0.259953 -1.387157 0.956473 -1.949152 0.663835 -0.416235 -0.228858 0.169071 -0.231467 0.022151 -0.011272 0.347794 -1.216074 1.699984 1.430285 -0.634035 -0.787283 0.698374 -0.773789 -1.458171 -0.381334 0.780787 1.007657 0.261034 0.164028 -0.509412 -0.893464 0.139045 -1.342865 -0.695220 2.023022 -1.139858 -0.209382 -0.296610 -0.487917 -0.832271 0.484165 0.130026 0.109651 1.621911 0.784223 -0.818501 -0.410369 -1.210103 0.395552 2.821424 0.946155 -1.356826 0.580730 0.181121 0.295898 0.670049 0.163620 0.221493 0.320616 -1.485031 -1.021059 -0.901167 -1.491016 1.420513 1.502254 0.687412 -1.905242 2.183450 0.125193 -0.725480 2.532157 0.995539 -1.338624 -0.252997 1.861915 -1.862344 -0.899264 0.443998 -0.453534 -0.332277 -0.748855 0.333512 -0.001796 -1.540880 -1.491185 -0.375384 -1.696721 1.366518 0.538611 0.649410 -0.678128 -1.143210 -1.245139 2.933748 0.132874 -0.313312 0.032691 -0.373643 -0.261895 -1.979206 0.260030 0.754051 -0.900690 -0.673372 -0.890830 0.358173 1.535429 -1.751647 -0.004696 0.048283 -0.668673 0.610684 -0.132334 0.360066 -2.050922 -1.203797 -0.002610 0.159526 0.725581 -0.077666 0.979264 2.035234 -0.606820 0.697851 1.632470 -0.036741 0.414324 1.744625 -0.627868 1.429970 -1.050812 1.595231 0.412307 1.423705 -1.008369 -0.826342 -0.015174 -0.471986 -0.877084 1.528229 -1.580925 0.309104 1.039777 -0.697520 -0.684843 1.500273 0.606431 0.811393 -0.576878 0.393617 -0.959664 0.319547 -0.269271 0.269815 1.259819 0.111129 -1.809019 -0.519796 1.183953 -0.823207 -0.907035 0.585992 0.030640 1.708958 -1.230615 1.131803 0.258935 -0.352918 -1.682904 -1.522753 0.959972 -1.558173 -1.119589 0.676910 -1.945027 -0.589951 -0.864506 0.810600 -1.538008 -0.363808 0.064170 1.465669 0.569706 -0.337459 0.513563 0.019690 1.005519 0.126906 0.045043 -0.099858 1.630591 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = -2.164570 2.163553 1.066029 -2.187283 3.944139 -0.620520 0.717643 1.283623 0.940020 1.116428 -4.459584 -1.345294 -0.584259 -3.686296 0.558385 -1.501387 0.693288 1.710513 -1.017741 0.846249 1.778552 -1.037598 -0.007172 -2.913975 0.033707 -1.868555 -1.179363 -0.060593 -0.333257 1.053724 0.445927 0.999792 3.370564 1.473206 2.580620 2.447662 0.657406 4.214389 0.341621 2.098663 1.203032 1.893851 -0.589369 -4.538608 1.450838 -2.138897 -1.764288 -2.721561 0.323579 -3.561260 2.269057 2.099878 0.616911 -0.729655 -2.577974 -0.171716 3.596790 1.525311 2.623187 2.109968 -2.094838 1.012268 -1.726410 -0.603564 -1.823018 2.118461 1.817034 -2.909467 -0.710723 2.146043 2.164567 -1.941215 -2.951220 -0.554785 0.539267 -1.151639 1.704611 -0.355667 -1.906092 -1.121626 -1.489601 0.837113 -0.340876 2.775519 -0.332266 -0.427079 -1.129572 -0.801844 1.475253 -1.767801 -2.109864 2.432065 -0.711653 0.771840 -1.323671 1.996389 1.059804 -0.288366 -1.672666 -1.815272 1.311050 0.718284 0.213391 1.331434 -3.230034 -2.600997 2.844437 2.272742 -1.598450 1.413673 0.880983 1.645071 0.729811 0.571947 -2.555595 2.233364 -3.522026 0.816656 -0.644492 0.007962 -0.041627 -0.397567 0.519289 0.046437 0.603682 -2.222679 3.572500 2.475478 -1.464029 -1.406182 1.457384 -1.197525 -2.544251 -0.396382 1.537550 1.369263 0.392487 0.306259 -0.582146 -1.675284 -0.391476 -2.045620 -1.354356 3.079311 -1.830406 -0.247243 -0.526470 -1.093270 -1.251107 0.774170 0.335469 -0.105765 3.074125 1.221144 -1.510438 -0.552075 -2.093484 1.082605 5.353458 1.630057 -2.637847 0.963216 0.261104 1.062184 1.216236 0.129116 0.557173 0.659534 -2.139268 -1.252956 -1.395724 -2.419386 2.569549 2.656252 1.568046 -4.087726 3.209772 -0.026446 -0.421657 4.824739 2.152807 -2.841900 -0.396587 3.366118 -3.079026 -1.343649 0.467868 -0.330169 -0.594981 -1.344001 1.033452 0.043146 -2.798223 -3.172015 -0.745479 -3.085121 2.456178 0.800971 1.092739 -1.136606 -2.350461 -1.657383 5.247510 0.123417 -0.851234 0.277683 -0.794757 -0.448276 -3.791601 0.428784 1.413701 -1.684491 -1.140649 -1.529971 0.570974 3.033854 -3.048529 -0.263181 -0.308956 -0.986584 1.157218 -0.594138 0.888671 -3.605267 -2.117307 -0.237129 0.136227 1.533082 -0.301880 1.044480 3.545541 -1.261259 1.509417 2.663450 0.059354 0.636178 3.266125 -0.863767 2.847795 -1.689573 3.307956 0.359536 2.728206 -1.596474 -1.066419 -0.249315 -0.732503 -1.424300 3.006319 -3.050852 0.351906 2.030587 -1.208943 -1.445001 2.853327 1.280905 1.577482 -0.845280 0.579544 -1.615723 0.378794 -0.386375 0.564200 2.195400 -0.075885 -3.433215 -1.263694 2.329385 -1.573304 -1.609182 1.245312 0.149897 3.476758 -2.233085 2.176260 0.615915 -0.897230 -3.006150 -2.459214 1.501031 -2.662773 -1.690776 1.481036 -3.628476 -1.263673 -1.459165 1.877995 -2.247101 -0.316945 -0.153242 2.684823 1.451053 -0.500747 1.308150 0.199407 1.765040 0.124053 0.007821 0.122362 2.887403 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = -2.308786 3.225508 1.860310 -2.367658 3.683687 -0.347778 1.012765 1.017184 0.989030 1.023498 -5.037305 -1.424725 -0.597806 -3.690404 0.623175 -1.802263 0.144709 2.156185 -0.844816 0.796389 2.111659 -1.079570 -0.209016 -3.442558 0.176752 -1.817091 -1.487330 -0.435578 -0.901948 1.837148 0.754817 1.017593 3.116571 1.902675 2.395610 2.809660 0.355075 4.948526 0.225901 3.782559 1.133917 2.193851 -0.778682 -5.366006 2.224826 -2.566996 -1.155358 -3.506103 0.052273 -4.226794 3.685128 2.112555 0.733000 -1.047332 -2.658947 -0.688419 3.957059 2.089251 2.560656 2.502574 -2.040315 1.709978 -1.880616 -1.337803 -1.893144 3.055795 2.842653 -3.272967 -0.746319 1.975783 3.526629 -2.178098 -3.457783 -0.756408 -0.133681 -0.982628 1.632605 -0.607805 -3.184466 -0.551373 -1.756462 0.816513 -0.131136 3.073977 -0.424472 -0.879075 -2.166958 -0.852168 1.976752 -1.482901 -2.849812 2.914254 0.012472 1.442147 -1.664724 1.680433 1.232632 -0.205853 -1.474656 -1.210870 1.610841 1.517123 0.271469 2.109120 -4.862958 -3.075319 3.697529 2.937007 -2.588825 0.876213 0.930486 1.710750 0.538776 0.308792 -2.630653 3.074298 -3.787632 0.895956 -0.021294 0.144742 0.313364 -0.608776 -0.286126 -0.798843 0.217401 -1.863960 3.810478 2.523457 -2.016019 -1.518567 1.805285 -1.303740 -2.837051 -0.525598 1.475277 1.991260 0.072910 0.586020 -1.286504 -2.221313 -0.210947 -3.381931 -1.573215 3.685983 -1.585174 -0.460022 -0.828528 -1.403664 -1.508132 0.688932 -0.030242 -0.163919 3.076954 1.606667 -1.123296 -1.552244 -1.866874 0.992065 5.543201 2.808140 -2.817371 0.475679 1.101462 1.312025 1.486917 -0.420103 0.217969 1.405599 -2.401240 -1.607758 -2.255116 -3.275530 2.587830 4.015131 1.982608 -4.224774 3.749845 0.211867 -0.900256 5.006504 2.486792 -2.405960 -1.050462 3.495339 -3.129029 -1.791029 0.404057 0.155375 -0.654033 -0.813105 0.677269 -0.301935 -3.085482 -4.022744 -1.051034 -3.381403 2.840973 1.006768 2.044520 -1.430676 -2.761618 -2.073921 5.258350 0.151765 -1.308612 0.367480 -0.328587 -0.374110 -3.688881 0.908471 2.212989 -1.712471 -2.058061 -1.511935 1.058700 3.002343 -3.705130 -0.787393 1.469081 -1.899892 0.990650 -1.369146 1.303205 -5.009786 -2.335626 -0.541839 0.754427 2.221138 0.747281 1.255853 4.347858 -1.319469 1.157459 4.499695 1.123643 0.293592 4.070756 -0.403661 2.531679 -2.382264 3.175773 0.129635 2.945693 -1.510164 -1.319231 0.135231 -0.157316 -0.987750 3.451144 -2.921021 0.563573 1.900343 -1.919454 -0.575686 3.488925 1.261598 1.786952 -1.119707 1.045676 -1.532898 0.483873 -0.170602 -0.069084 2.728360 0.063476 -4.005887 -1.863951 1.884651 -2.043550 -1.729811 1.492790 0.096814 3.641863 -2.185460 2.658161 0.383305 -1.895107 -3.667572 -2.046787 1.543420 -2.894701 -2.360348 1.654235 -3.431753 -1.062151 -1.656207 2.057165 -2.635731 -0.557217 -0.800319 2.218538 1.670592 0.187482 1.400435 0.398026 2.488432 0.378051 -0.490891 0.119272 3.684997 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.968778 0.463318 -0.263186 -0.713387 2.629211 0.044536 0.086575 1.197563 -0.241628 0.943615 -1.644671 -0.143504 -0.213492 -1.586609 0.339686 0.324555 0.368110 0.439193 -0.649680 -0.249698 0.667904 -0.248805 0.235761 -0.875806 -0.073336 -1.161743 -0.466193 0.173993 0.635049 0.226971 -0.751654 0.275661 1.505538 -0.050679 0.786014 0.773529 1.160517 1.281887 0.089253 -0.091774 0.621707 0.761426 -0.509510 -1.620989 0.533446 -1.128165 -1.276152 -0.622332 0.545556 -1.350726 0.514396 1.017454 0.144751 -0.320572 -0.791969 0.655316 1.345281 -0.236005 1.437910 0.750743 -1.146036 -0.695543 -0.776908 1.110624 -0.781353 1.035778 0.017052 -1.685428 -0.918371 1.039781 0.336618 -0.864441 -1.088054 0.096093 0.413153 -0.696707 0.718262 -0.092649 0.614476 -1.052190 -0.983401 0.440359 -0.654784 1.319169 0.011397 -0.117447 -0.069363 -0.304270 0.487352 -1.166900 -0.679312 1.231316 -0.692157 0.505451 -1.011421 0.226597 0.119760 -0.053764 -0.686596 -1.081215 0.347795 0.424351 0.203701 -0.426795 0.010592 -1.131579 0.805067 0.588353 0.166976 0.742848 0.365400 0.060438 0.079103 0.591097 -0.768162 0.200429 -1.420460 0.461615 -0.207701 0.188823 -0.576296 0.051762 1.028417 0.064704 0.763950 -1.440665 1.386162 0.658778 -0.718447 -0.744541 0.429604 -0.489072 -1.130948 0.128811 0.767224 0.049397 -0.009134 -0.027836 0.470672 -0.420774 -1.283602 -0.373638 -0.657774 1.077456 -1.733888 -0.022707 -0.236131 -0.464229 -0.414085 0.683049 0.538623 0.472247 1.523634 0.829951 -0.645761 0.834947 -1.415347 0.983196 2.449634 0.767429 -1.292451 0.594105 -0.964910 0.553355 0.691650 0.249976 0.300263 0.626354 -0.520895 0.116550 0.109393 -0.332785 1.512140 0.862202 0.965824 -1.776825 0.619855 -0.437529 0.113998 2.031457 1.022916 -1.920320 0.871097 1.460163 -0.745209 0.022584 0.271739 -0.889463 -0.599653 -1.059570 0.497238 0.782913 -1.419244 -1.031534 -0.001194 -1.226982 1.408617 0.240160 0.069403 0.246538 -1.079339 -0.087618 2.053534 0.195214 -0.072603 -0.280136 -0.645096 -0.958018 -1.662458 0.190311 0.570680 -0.944768 -0.479413 -1.087851 -0.341192 1.747217 -0.684238 0.325990 -1.772078 0.457990 0.628811 0.178063 0.653945 -1.268389 -0.745134 -0.174824 -0.469601 0.507550 -1.061253 0.290759 1.077453 -0.979941 1.182154 0.350090 -0.268786 0.124828 0.921947 -0.408006 1.366292 -0.009864 1.579463 0.170001 1.306707 -0.857951 0.060079 -0.474751 -0.341867 -0.630951 1.265796 -1.532786 -0.166616 1.171763 -0.664406 -1.308013 0.842603 0.669981 0.907335 -0.288247 -0.519173 -0.547928 -0.040707 -0.361421 0.473781 0.954735 -0.705738 -1.389447 -0.243159 0.819651 -0.986437 -0.717538 0.636369 0.235159 1.582635 -1.200749 0.640090 0.359695 0.237692 -1.748883 -1.310397 0.107098 -0.630765 -0.664576 1.001207 -2.013801 -0.797543 -0.750850 0.622984 -1.414458 -0.232047 -0.034713 1.512695 0.214660 -0.168009 0.926663 0.303228 0.510170 -0.190223 0.203048 0.302063 0.641911 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/tarjan-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -6.222284 5.078379 4.604436 -2.825751 9.566078 0.888167 4.371708 3.274100 -4.548252 7.223961 -9.239360 -2.926767 -3.240492 -7.711890 -0.396488 -5.877881 1.705388 -0.517044 -1.385394 2.683690 3.419655 -5.166819 -0.135469 -4.053241 -1.243786 -9.198051 -3.061277 0.574263 8.114198 -2.057800 1.349707 0.172080 11.976534 1.117153 10.447497 7.051205 2.082609 7.497546 1.094798 -3.044006 -2.137631 7.086971 -5.367711 -6.421912 -1.546636 -5.534461 -5.640128 -3.842916 2.426821 -3.593830 -2.597330 6.487620 -1.448765 2.111021 -5.219239 4.361103 7.332690 -0.376320 11.259852 1.739511 -3.602056 -0.803180 -6.065039 5.638388 -2.737396 1.092076 -2.580456 -5.772900 2.262681 -0.849342 -2.742340 -3.374528 -2.050618 6.556971 4.210978 -6.801487 2.839822 -2.403314 -11.176532 -9.121804 -5.936832 2.037719 1.401927 7.765317 0.163653 0.071215 2.702400 2.281893 -0.397719 -11.301569 -0.113603 9.281298 -5.534466 -3.385270 -2.701981 7.614955 0.228438 4.264996 -5.357331 -4.303062 2.025617 -0.667521 1.133104 -7.726990 1.002695 -8.239366 1.115334 -0.220889 -0.023895 5.228813 4.703489 4.102104 7.574887 8.090765 -9.607632 2.035938 -6.979727 3.230188 -2.503532 -0.602972 -0.043125 3.116751 0.163966 2.815224 8.663495 -10.846912 3.055586 3.810987 -2.894831 -8.894600 -1.238247 -8.277369 -6.984852 -1.809930 3.379107 2.430803 1.912280 -5.833432 0.319787 -1.494744 -1.537538 -2.765751 1.984356 8.544337 -9.120141 -1.133479 -0.578190 -0.424355 -4.520612 7.260011 4.737835 4.248063 9.785369 4.979386 -3.361039 4.343674 -7.803228 0.095770 11.535923 2.076374 -8.267307 6.880324 -6.654551 -0.743208 3.872076 4.445611 6.038291 -0.535679 -9.054494 -4.965818 4.286096 -0.974535 10.164996 2.291396 2.397987 -3.957944 11.790224 -1.574984 -6.782856 9.762745 5.476758 -8.991672 3.750575 3.700497 -7.788848 -1.207080 5.687333 -7.385049 -1.184314 -5.970976 -0.447532 2.807423 -4.212905 -0.632305 1.269360 -9.242052 10.949580 0.758104 2.924640 2.243967 -5.906608 -9.641160 10.765367 -0.335400 -0.683493 -4.114818 -3.396875 -6.954768 -9.207071 1.222864 -0.550354 -4.949891 -3.270839 -8.569277 1.988064 5.495432 -1.456409 6.830391 -8.508693 -2.555976 3.435205 3.021026 4.498291 -3.045568 -5.134772 -0.885163 -2.087848 4.247371 -5.390694 8.928661 10.537782 -3.024071 7.725099 -3.497121 -6.181834 2.094575 3.615413 -9.031117 9.049153 -1.970442 6.493038 0.310867 5.844292 -5.888005 -2.480121 0.431645 -2.728238 -2.913648 3.832952 -4.985841 0.146164 0.798788 -7.089694 -4.356583 1.218275 -1.270360 0.521561 0.474237 1.209320 -8.052728 -0.417732 -5.435553 1.727161 6.129364 0.313214 -5.598777 2.892720 0.510284 1.089221 -0.556687 0.156958 0.039503 5.252600 -8.171333 -2.617441 0.159228 0.974591 -5.413710 -11.611404 0.828784 -7.979204 -6.613716 6.207929 -8.813488 1.267930 -6.509208 -2.567982 -10.262400 -3.811601 3.505732 12.326359 2.910492 -6.411109 1.756604 -1.294726 6.751888 0.225669 2.697455 1.079822 3.787140 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.612997 0.093666 0.031110 -0.438888 1.616476 -0.015273 0.006163 0.963333 0.573499 0.432097 -1.136794 -0.502234 -0.114396 -0.541617 0.227655 0.059041 0.048625 0.420633 -0.799148 -0.566242 0.492312 0.559776 -0.049406 -0.608237 -0.021185 -0.179215 -0.639879 0.037644 -0.125449 0.257196 -0.729690 0.272049 0.996225 -0.058310 0.716426 0.524773 1.018383 0.922701 -0.426625 1.102549 0.690331 0.548894 -0.340415 -1.018761 0.357206 -0.857431 -0.720430 -0.335866 0.289507 -0.913566 1.372613 0.469795 0.268483 -0.048054 0.006315 0.371931 0.291399 0.182427 0.745957 0.690298 -1.229095 0.326683 -0.708827 0.990236 -0.467348 1.563516 -0.015062 -1.389065 -1.096976 0.583923 1.026698 -0.992276 -0.980090 -0.096851 -0.046926 -0.146513 0.671166 -0.026256 1.332318 -0.298775 -0.711114 0.362495 -0.398230 0.576328 -0.241106 -0.297311 -0.661865 -0.296814 0.282706 -0.509827 -0.704228 0.909362 -0.670583 0.782257 -1.152723 -0.844532 -0.195909 0.215137 -0.286000 -0.740502 0.324337 0.565945 0.006369 0.316062 -0.111400 -0.339375 0.757403 0.861172 -0.123590 0.141686 -0.114878 0.133650 0.117028 0.236200 0.151352 0.461231 -0.826822 0.447211 -0.355603 0.201980 -0.217621 0.001279 0.652520 -0.003448 0.311648 -0.490218 0.829046 0.211555 -0.880860 -0.125123 0.374005 -0.393199 -1.038130 -0.022032 0.455588 0.459308 -0.206230 -0.053310 0.254416 -0.470139 -0.553762 -0.568454 -0.525369 -0.390102 -0.565855 -0.310533 -0.165478 -0.259103 -0.442571 0.692670 0.310866 0.166418 0.916987 0.441469 -0.232448 -0.648821 -0.898919 0.519150 1.259790 0.051345 -0.846698 0.213567 -0.532406 0.558361 0.616335 0.144139 -0.237852 0.813535 0.182360 0.434093 -0.727971 -0.298850 1.013593 0.969737 0.569928 -1.016841 -0.211342 -0.905763 -0.092858 1.420623 0.994408 -1.235134 -0.239300 0.727109 0.157107 -0.362582 0.178406 -0.462561 -0.522499 -0.528529 0.323379 0.395457 -0.832613 -0.657015 0.607172 -0.797114 0.863326 0.076181 -0.083107 -0.072560 -1.094427 -0.092992 1.494277 0.137001 -0.121975 0.102376 -0.162623 0.039837 -1.012595 0.166845 0.656711 -0.204768 -0.524053 -0.492669 0.241649 1.135033 -0.750183 0.175670 -0.120381 -0.117555 0.293993 -0.810421 0.649911 -1.214128 -0.513080 -0.697373 -0.239826 0.604260 -0.702288 -0.299162 0.963254 -0.461921 0.711824 1.218100 -0.347597 -0.669100 0.784767 -0.063533 0.767010 -0.141453 0.090854 -0.042839 0.768536 -0.583789 -0.257771 -0.382167 0.332650 -0.443484 0.964682 -0.734755 0.133122 0.197730 -0.817138 -0.195795 0.770495 0.399741 0.306988 -0.204275 -0.222042 -0.589689 -0.041403 -0.337902 0.036994 0.701814 -0.458930 -1.101767 -0.163389 0.136052 -1.236719 -0.382152 0.315754 0.031409 1.206054 -0.593306 0.271661 0.549857 -0.104724 -1.423166 -0.450173 -0.510449 -0.549428 -0.405504 0.185327 -0.635524 -0.866978 -0.420908 0.490049 -0.537458 -0.602569 0.154724 0.825973 0.640450 -0.087391 0.541107 0.322267 0.714801 0.235753 -0.240160 0.275508 0.422737 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.486067 0.002608 -0.497210 -0.320265 1.365181 0.087732 -0.115960 0.747731 0.131653 0.506301 -0.872720 -0.201811 -0.080599 -0.604674 0.109926 0.540997 0.219003 0.181810 -0.533470 -0.427030 0.295003 0.092647 0.188344 -0.433130 0.001015 -0.306171 -0.338267 0.079224 0.232229 0.036679 -0.810220 0.054773 0.816444 -0.086619 0.392492 0.263166 0.690038 0.633069 0.039434 0.120430 0.480891 0.428244 -0.261573 -0.741660 0.239773 -0.716581 -0.579508 -0.232802 0.337010 -0.639761 0.837903 0.398914 0.109571 -0.152359 -0.268992 0.309244 0.527071 -0.110089 0.789630 0.335334 -0.783729 -0.230318 -0.315236 0.873230 -0.434719 0.781389 -0.012899 -0.947567 -0.714858 0.511381 0.477424 -0.669823 -0.687521 -0.008519 0.066424 -0.264505 0.433262 -0.015552 1.105289 -0.582759 -0.568593 0.221681 -0.520482 0.535517 -0.088652 -0.113598 -0.338958 -0.194786 0.262533 -0.520393 -0.390705 0.549099 -0.451613 0.537401 -0.537266 -0.239974 -0.166492 0.013107 -0.334257 -0.531908 0.068789 0.334686 0.042461 -0.074784 0.335013 -0.353033 0.539612 0.412078 0.125161 0.209591 0.294488 -0.019625 0.067754 0.266084 -0.014929 -0.027290 -0.690561 0.206784 -0.052017 0.070395 -0.280181 0.070427 0.627479 -0.076156 0.421508 -0.638165 0.677712 0.227931 -0.514567 -0.235315 0.186107 -0.238539 -0.686898 0.161109 0.326303 0.058403 -0.030241 -0.083029 0.289563 -0.289994 -0.909022 -0.105887 -0.352839 0.168531 -0.742483 -0.112683 -0.064706 -0.210413 -0.181391 0.468681 0.241687 0.158543 0.750524 0.360625 -0.312497 0.069447 -0.732582 0.591078 1.149956 0.212885 -0.693220 0.213016 -0.559904 0.402813 0.495585 0.154692 0.054135 0.324191 0.096524 0.380058 -0.074058 -0.106436 0.781108 0.350356 0.599891 -0.767582 0.014799 -0.290570 0.194028 1.115893 0.508084 -1.040314 0.317785 0.680635 0.043756 0.157646 0.092310 -0.384717 -0.382499 -0.588447 0.279152 0.449214 -0.692113 -0.470950 0.167705 -0.593159 0.808810 0.084804 -0.155672 0.170759 -0.756305 0.424264 1.091402 0.141029 0.044318 0.010631 -0.278305 -0.373114 -0.895585 0.052115 0.335023 -0.418714 -0.160684 -0.507206 -0.074321 0.927244 -0.341142 0.180438 -0.799893 0.271933 0.290883 -0.170550 0.346346 -0.674703 -0.376940 -0.183007 -0.281541 0.377377 -0.739401 -0.029024 0.473035 -0.471485 0.604787 0.561223 0.088997 -0.148049 0.402809 -0.111499 0.650025 -0.045592 0.450852 0.005853 0.661515 -0.386415 0.030091 -0.396767 0.160064 -0.372630 0.649543 -0.811590 -0.062945 0.494134 -0.394906 -0.566019 0.457863 0.305386 0.476873 -0.125405 -0.446984 -0.301167 -0.050879 -0.220851 0.197088 0.441605 -0.395873 -0.807098 -0.142928 0.280197 -0.694038 -0.187761 0.254615 0.059419 0.858779 -0.547476 0.204315 0.327481 0.155376 -0.934581 -0.484589 -0.239338 -0.116277 -0.227144 0.518621 -0.892817 -0.650008 -0.349458 0.283799 -0.629633 -0.049308 -0.028011 0.768451 0.269306 -0.115358 0.452781 0.243552 0.309302 -0.008632 0.004894 0.195947 0.186712 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -5.786898 -0.415152 0.517728 -3.379922 11.069405 -2.748846 0.204218 9.549543 2.417237 3.651513 -9.242587 -5.465180 -3.162402 -8.171405 0.344125 -3.669890 5.372068 1.277285 -5.353531 -0.185066 3.298470 2.233999 0.023330 -3.927975 -0.964462 -2.121520 -4.699590 1.189676 1.599425 -4.314368 -0.753139 3.186350 16.121372 2.040501 13.261356 5.914638 7.057328 8.068716 2.248726 -0.040375 2.412179 5.765092 -3.519459 -6.721939 -1.665631 -5.562810 -6.713262 -0.855985 2.475609 -3.500218 1.961510 5.855559 1.324765 3.836411 -3.847586 2.122775 3.024791 -0.937817 9.566181 3.727962 -10.664707 0.232988 -3.712629 6.545743 -4.139314 5.213948 -3.757627 -5.365323 -2.915328 3.098493 1.901731 -9.818104 -5.882475 2.581363 2.945760 -4.247104 6.593752 1.056913 6.649205 -7.566925 -6.309575 3.845177 -0.986789 4.895306 -1.004281 -0.139476 -0.466237 -0.783534 -0.223191 -9.166781 0.443426 6.669660 -9.693675 -0.493046 -5.308657 2.200078 -4.126948 3.502813 -5.446214 -9.799942 2.534518 -2.064940 -0.255091 -1.734857 4.413282 -3.694800 2.369000 1.752249 0.162564 7.212754 3.986006 5.581453 8.198580 5.763902 -3.851717 0.838773 -9.957502 4.369216 -6.865591 -1.918321 -0.853123 1.330256 5.067745 4.642309 5.333123 -9.591896 4.873538 5.748913 -4.432963 -4.989662 0.390829 -6.839769 -8.842075 -1.166319 5.537975 2.645368 2.306312 -4.464061 1.991372 -2.400101 -1.704529 -3.954704 -1.666388 0.910584 -7.486172 -2.281870 0.358807 -0.735355 -4.211400 7.241660 3.845002 1.324279 10.853910 1.223810 -7.268056 0.699657 -8.710897 1.035676 11.004407 -2.514727 -8.298594 7.086068 -7.700569 0.707134 3.278625 6.343226 3.572143 -2.256723 -3.986670 -0.395695 2.204075 -0.030620 9.977153 -1.864527 3.142362 -7.143992 4.219509 -3.351976 -2.091954 15.024196 3.057773 -11.237780 -0.014374 5.930593 0.470256 -1.923799 4.415335 -8.212025 -4.553371 -7.033116 3.075565 3.031603 -6.549364 -0.077341 6.175774 -8.637213 7.252662 0.639699 -4.387029 -0.028760 -10.007189 -4.623846 16.974741 0.404583 1.546868 0.234119 -5.000996 3.709772 -11.568280 -0.053321 1.868800 -1.107225 1.682947 -4.963928 2.521282 8.036750 -3.001473 6.708941 -9.770358 -0.749519 4.264186 -2.968349 2.704234 -5.911612 -5.701672 -1.166024 -2.910038 3.722981 -9.553354 2.935503 7.831184 -3.354299 8.808436 1.345690 -7.198032 -1.188604 2.661460 -7.389260 10.385540 -1.324475 6.775371 1.319567 6.591025 -7.220256 -3.728086 -3.269170 0.003155 -7.056984 4.277732 -7.097087 0.853564 0.684322 -2.549515 -5.894233 2.319615 0.815829 -2.327041 -0.163412 -2.065319 -5.964202 -0.450499 -4.178977 5.497012 5.534971 -1.651656 -7.638325 2.545724 4.543653 -4.074104 2.582420 0.544276 0.027130 9.214082 -7.814761 -2.080717 3.889129 4.018553 -6.625439 -10.567598 0.759947 -5.957378 0.201167 0.822291 -7.843995 -6.208787 -4.566749 0.939950 -5.444163 -1.103900 5.375122 12.348229 6.280840 -8.891677 1.468931 0.359244 3.778095 1.699383 2.037366 2.023201 2.777697 +PE-benchmarks/edit-distance.cpp__main = -3.576890 -0.313432 -2.078122 -3.247806 9.522371 -1.610254 -0.430563 7.118796 1.932723 2.658409 -6.432401 -2.318713 -1.028854 -6.172084 0.881486 0.461934 3.183431 1.709552 -4.148316 -0.907702 2.230261 1.805542 0.898553 -3.051361 -0.737421 -2.031765 -2.383436 1.074558 -0.371947 -0.988678 -1.756190 2.068172 8.930889 0.856308 5.919227 3.042673 5.308240 5.285881 1.408529 1.241294 3.439256 2.572142 -1.502586 -5.112613 0.316303 -3.713328 -5.804626 -1.430125 1.706945 -4.907571 3.162514 4.011361 1.600621 0.568148 -2.710502 1.842533 3.214288 -1.898770 5.488511 3.288382 -7.286200 -1.045901 -2.065228 4.640752 -3.133153 4.230621 -0.637575 -5.053725 -4.115002 4.677509 2.804373 -5.787868 -5.157068 -0.311913 1.803308 -2.524498 4.325458 0.726346 6.919039 -4.761648 -3.446936 3.010528 -1.690381 3.796261 -0.125580 -0.000752 -0.689625 -1.555185 0.786080 -4.801426 -1.070971 3.871548 -5.041378 0.878839 -5.319497 0.486326 -2.023753 0.311205 -3.478407 -6.840889 1.741292 -0.106163 0.030194 -0.149110 1.326632 -2.589370 2.555432 3.137532 0.419832 4.065762 1.593758 2.084164 2.572837 2.457235 -1.725062 1.277433 -6.881367 2.710766 -2.917488 -0.586096 -1.942700 -0.451828 5.317039 2.455929 2.335532 -5.654881 5.313840 3.963776 -3.719136 -2.230564 1.270752 -2.327473 -5.276343 0.189785 3.627032 0.645574 1.286253 -0.729219 2.281357 -2.055777 -2.913419 -1.986895 -2.798272 1.283755 -5.745564 -0.706979 0.087165 -0.917595 -2.082029 3.840786 2.222818 0.341557 7.115537 0.733438 -4.280529 0.742180 -5.747151 2.598970 8.898656 1.105584 -4.942393 3.813554 -4.240683 1.701126 1.830124 2.977732 0.858275 -0.532550 -1.691353 0.920842 0.299018 -0.696756 6.494709 0.184616 2.893605 -7.050196 1.201214 -2.391660 1.241781 9.863388 4.004518 -7.298480 0.281673 5.808742 -0.080203 -1.009069 1.944231 -4.427148 -3.957319 -3.939658 2.899941 2.382197 -5.009697 -2.385140 2.618306 -4.972428 4.158714 0.712584 -2.797281 -0.229276 -5.956748 -0.053484 10.352549 0.423501 0.749745 0.890968 -3.269580 1.166129 -7.784294 0.022524 2.591377 -1.321521 1.134148 -2.856661 -0.099970 6.410112 -2.943757 2.255293 -7.082537 1.222124 3.109444 -2.308450 1.573438 -5.107662 -3.159941 -0.515677 -1.817865 1.733387 -5.935116 0.327402 3.752884 -2.923244 5.307196 2.297499 -2.294245 -0.674142 2.646274 -2.672425 6.729934 -0.292989 5.390290 1.305619 4.956234 -3.961081 -1.061342 -3.102160 -0.559797 -4.560208 4.201454 -6.388019 -0.146950 2.827586 -0.769416 -5.377856 2.900380 2.337567 0.177181 -0.925498 -2.228460 -2.454707 -0.219576 -2.159893 3.825906 3.355400 -2.228139 -5.371313 0.246137 4.950902 -4.168751 0.117140 1.612502 0.937349 7.301171 -4.924369 1.502329 2.721078 2.815725 -6.263618 -5.961044 1.322141 -2.914955 -0.468417 0.970413 -6.753789 -5.707527 -2.597665 2.756520 -3.567966 -0.021638 2.467945 7.068420 2.536460 -3.927387 2.133919 0.957994 1.264896 0.249787 1.096100 1.618849 2.024033 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/edit-distance.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/edit-distance.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/edit-distance.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/edit-distance.cpp__std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)::_Guard::~_Guard() = -0.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/edit-distance.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -4.652984 2.819323 2.981460 -1.612514 6.237926 0.478890 2.999455 1.847494 -3.720937 4.880778 -6.358935 -2.967656 -3.139889 -5.430248 -0.409257 -4.384206 1.677075 -0.760526 -1.200329 2.009286 2.678727 -3.945853 -0.075270 -2.814114 -0.658319 -5.134363 -2.387298 0.327455 6.921716 -2.578686 0.221654 -0.065010 9.004137 0.428226 7.873934 4.922033 1.389863 5.456688 0.486169 -4.331933 -2.142702 5.960349 -4.175649 -4.444588 -1.513924 -4.271629 -3.295707 -1.740131 2.358966 -0.985766 -3.106510 4.557685 -1.254721 1.884805 -3.862301 3.276619 4.959872 0.586136 8.611606 0.907303 -2.084829 -0.602860 -4.578594 4.006400 -2.173077 1.010839 -3.027603 -3.619292 1.656968 -1.542385 -3.284025 -3.079775 -1.486133 5.102359 2.992245 -4.890260 2.291683 -1.544083 -7.238850 -6.787559 -5.096020 0.919065 0.506964 5.407114 -0.435279 -0.016781 2.416548 1.937413 -0.268730 -8.457207 0.306709 6.099201 -4.569058 -2.564835 -0.373786 5.440041 -0.595027 3.514019 -4.452834 -2.770930 1.150844 -0.806726 0.919068 -6.542581 2.853190 -5.483660 0.442594 -0.991806 0.452630 3.906262 4.752164 3.138839 5.839607 6.162391 -6.543133 -0.071884 -4.941981 1.716672 -2.710148 -0.413593 0.240098 3.170265 0.019120 1.563720 6.748370 -8.247268 1.693939 2.464370 -1.659475 -6.531248 -0.809405 -6.381369 -5.293451 -1.425416 2.746697 1.677313 1.171293 -4.863566 0.596137 -0.656276 -1.381858 -0.457888 1.733239 5.367754 -6.496713 -1.102464 -0.599389 -0.593069 -2.889516 5.283924 3.268613 3.246874 6.996684 3.799084 -3.156592 3.466032 -5.655267 0.136796 7.738444 -0.391266 -6.261417 4.806611 -5.408313 -0.500956 3.182181 3.463108 5.115529 -0.157544 -5.845280 -3.191331 3.851685 -0.207973 7.266067 0.229404 2.038689 -1.993435 8.266526 -1.194273 -5.047212 7.058453 2.765180 -7.025972 3.534660 2.052414 -4.823351 -0.452432 3.968482 -5.447095 -0.082473 -5.199594 -0.409868 2.364399 -3.279824 0.098134 1.130091 -6.767198 8.122598 0.330472 1.252360 2.210922 -4.838781 -6.674370 7.842830 0.076395 -0.447683 -3.663796 -2.737997 -5.164467 -6.799929 1.119657 -1.313922 -3.438116 -2.416261 -6.390671 1.568397 3.942873 -0.366943 5.380881 -6.739941 -1.499142 2.327273 3.034645 3.846067 -0.442702 -3.915414 -0.313924 -2.126556 3.428323 -4.605211 6.226021 7.606416 -2.560972 5.742544 -3.234509 -5.096376 1.539741 2.336447 -6.960056 6.489504 -1.070243 4.862095 -0.377606 4.141337 -4.598986 -1.794625 0.639199 -1.704206 -1.960184 2.127047 -3.122957 0.099287 -0.054197 -5.113018 -3.040892 0.412826 -1.434476 0.339076 0.739446 0.629807 -5.942271 -0.348874 -3.409561 1.133718 4.672268 0.407998 -4.097686 2.207838 -0.408669 1.237090 0.307359 -0.098198 -0.525564 3.656115 -5.952497 -2.962873 0.007604 0.869017 -3.011605 -8.316158 -0.324631 -5.081140 -3.625359 5.330400 -5.555771 1.607030 -4.628005 -2.177649 -6.919049 -2.554499 2.335736 8.841358 2.622906 -5.053244 1.329296 -0.817069 5.227617 0.289891 1.621605 0.505102 2.195821 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -2.088714 0.918418 0.551008 -0.782283 3.682032 -0.135890 1.085984 1.432027 -1.217636 2.132458 -2.899195 -1.101161 -1.173600 -2.734390 0.178521 -0.772533 1.135051 0.189588 -0.688235 0.509378 1.274352 -1.379578 0.084699 -1.341137 -0.184048 -2.513411 -0.999473 0.282148 2.557646 -0.850472 -0.487958 0.403296 4.050278 0.252311 3.207433 2.138814 1.155810 2.500134 0.462223 -1.809864 -0.322722 2.403558 -1.625598 -2.404915 -0.091924 -1.914803 -1.914542 -1.120062 1.098645 -1.016696 -0.617467 2.121859 -0.337007 0.629013 -1.804997 1.286977 2.615571 -0.056345 3.642325 0.807422 -1.243664 -0.381944 -1.706441 1.922374 -1.175913 0.519161 -1.087709 -2.308099 -0.003939 0.175114 -0.532534 -1.691028 -1.131510 1.687586 1.213219 -1.994927 1.343767 -0.309992 -1.260228 -3.453581 -2.528053 0.524495 -0.457219 2.669301 -0.186267 -0.114270 0.545763 0.288591 0.236964 -3.425958 -0.184563 2.394829 -2.026372 -0.566193 -0.453771 1.975007 -0.002855 1.116757 -1.851635 -1.969849 0.540338 -0.389353 0.426548 -1.622903 1.299470 -1.951358 0.340171 -0.191576 0.525563 1.974347 1.944718 1.097025 2.063207 2.279437 -2.558977 -0.117426 -2.383604 1.125225 -1.080134 -0.103506 -0.198744 1.096984 0.985805 0.579237 2.656578 -3.631121 1.250236 1.330610 -0.720780 -2.341478 -0.008853 -2.376187 -2.413712 -0.551871 1.548384 0.460243 0.427785 -1.608590 0.599928 -0.407945 -1.151596 -0.041831 -0.097681 2.492620 -3.415068 -0.350571 -0.385481 -0.625507 -1.107346 2.011909 1.309462 1.494336 3.106949 1.771398 -1.757179 1.605063 -2.900529 0.655191 4.090465 0.252154 -2.697094 1.979502 -2.245975 0.144567 1.640910 1.479917 1.921532 -0.354051 -1.994771 -0.767777 1.379925 -0.090563 3.347282 0.326248 1.261971 -1.939834 2.852170 -0.365774 -1.596560 3.741946 1.273157 -3.485496 1.698719 1.576299 -2.049589 -0.054330 1.330666 -2.376329 -0.606065 -2.539355 0.420084 1.330371 -1.986020 -0.408291 0.550867 -2.906034 3.236452 0.248047 0.251686 1.020458 -2.156922 -1.832243 4.047024 0.203871 0.019738 -1.366096 -1.486786 -1.847987 -3.266140 0.432894 -0.451859 -1.532710 -0.757297 -2.760153 0.167519 2.557392 -0.374701 1.896935 -3.633699 0.109616 1.182225 0.961105 1.296870 -1.141473 -1.768155 0.072591 -1.038265 1.104407 -2.190256 2.089221 2.977357 -1.552602 2.103140 -0.733846 -1.583044 0.772198 1.124618 -2.637921 2.927943 -0.409988 2.810146 0.128403 2.122022 -2.090573 -0.613446 -0.206384 -0.565036 -1.365335 1.473800 -2.018431 -0.037375 1.012307 -1.847815 -2.151118 0.500004 -0.036930 0.682340 0.079895 -0.401717 -2.403530 0.084900 -1.254550 0.882175 2.086368 -0.192864 -2.144393 0.704642 0.538897 -0.105695 -0.545562 0.341018 -0.067823 2.201165 -2.692266 -0.590521 0.288898 0.837177 -1.729611 -3.769119 0.278823 -2.078067 -1.528068 2.519344 -3.244940 -0.091002 -1.968518 -0.312392 -3.140195 -0.619918 0.749950 3.844107 0.833060 -1.876058 0.998307 -0.055933 1.783765 -0.182881 0.738201 0.214855 1.159398 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.108393 1.943401 1.569900 -1.649248 6.132573 0.846766 1.051751 3.121032 -2.374813 3.640663 -4.730901 -0.923324 -1.339172 -3.603648 -0.006377 -1.312056 0.512620 -0.087370 -1.559138 0.489096 1.834349 -1.520460 0.203079 -2.078808 -0.643258 -3.204632 -1.827296 0.332162 3.370655 -0.641415 -0.570997 -0.038512 5.373707 -0.057675 4.261596 3.006418 1.909475 3.689937 -0.153520 -0.694379 -0.168745 3.289308 -2.620390 -3.231434 -0.063599 -3.388896 -3.126034 -1.435290 1.454425 -2.489918 -0.219433 3.207455 -0.401242 0.484067 -1.819123 2.778380 3.060318 -0.767609 5.435186 1.266150 -3.098343 -0.771944 -3.288744 3.512498 -1.435131 2.476498 -1.217276 -3.782345 -0.469417 0.281742 -0.085003 -2.570560 -1.678176 2.721307 1.356624 -2.972140 1.800114 -1.141914 -2.474003 -4.351613 -3.091032 1.202138 0.094099 3.513845 -0.127618 -0.129303 0.758620 0.772684 -0.026800 -5.323630 -0.588001 4.436986 -2.973339 -0.398475 -2.929130 1.850571 -0.643745 1.853563 -2.635146 -2.172022 1.126647 0.725399 0.560467 -4.006906 1.400744 -3.796718 1.251098 0.713382 0.476097 1.909621 1.737399 1.485601 2.954535 3.748008 -3.409910 1.120199 -3.487914 1.341082 -1.196666 0.173140 -0.687057 1.255900 1.281549 0.901069 4.033926 -4.974028 2.110013 1.410495 -2.383692 -4.038551 -0.030280 -3.666017 -3.733246 -0.451664 1.759640 0.966185 0.473641 -2.352462 0.794763 -1.074197 -2.236878 -1.416491 0.191758 3.201217 -4.747503 -0.631452 -0.392200 -0.328481 -1.917931 3.726599 2.513426 2.028261 5.047006 2.336798 -1.363468 1.261185 -4.043089 0.909296 5.932878 1.381742 -4.261703 3.036441 -3.329081 0.445900 2.048536 1.750056 2.292597 1.057768 -3.272505 -1.585523 1.533466 -0.380713 5.183999 1.773227 1.928462 -2.386542 4.137525 -1.847082 -2.431531 5.108342 3.347059 -4.920139 1.848500 2.235326 -2.019080 -0.411222 2.480808 -3.501649 -1.260315 -2.532827 -0.101846 1.806062 -2.675543 -1.212921 1.029303 -4.453740 5.665409 0.358810 1.167029 1.164583 -3.543654 -3.461405 4.974946 0.252090 -0.555839 -1.672414 -1.575348 -3.553074 -4.618912 0.761684 0.769632 -2.200526 -1.961914 -4.070391 0.527888 3.132232 -0.986965 2.842079 -4.536817 -0.802229 1.719073 0.170212 2.930876 -2.186480 -2.423295 -1.235629 -1.515404 2.542956 -3.248110 3.202452 4.983719 -1.830883 4.439631 -0.050350 -2.269964 -0.013930 2.099497 -3.501259 4.478976 -0.367468 3.094715 -0.017952 3.286871 -2.920694 -0.724511 -0.324921 -0.678120 -1.236151 2.546016 -2.783155 -0.117558 0.397270 -3.808003 -2.202292 1.109692 -0.280067 0.611625 0.042858 -0.076174 -3.532949 -0.590447 -2.464443 0.799310 3.142087 -1.069545 -3.278831 0.903185 0.236130 -0.854171 -0.125131 0.600736 0.212578 3.364820 -4.029520 -0.669161 0.536340 0.430712 -3.976049 -4.517425 -0.691397 -3.070062 -3.097356 3.089781 -4.345303 -0.445557 -3.010701 -0.590743 -4.448546 -2.058915 1.298359 5.896985 1.516978 -2.746543 1.529113 -0.110381 3.312628 0.286117 0.877575 0.475266 1.555910 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.484186 0.073205 -0.467447 -0.316755 1.430821 -0.076325 -0.075254 0.741387 -0.039651 0.476459 -0.773097 -0.071245 -0.108213 -0.871919 0.247414 0.504128 0.275057 0.283438 -0.369816 -0.298117 0.361624 -0.062931 0.134859 -0.428671 -0.001743 -0.511659 -0.153623 0.101904 0.301391 0.104021 -0.713950 0.239213 0.742344 -0.060818 0.314641 0.355059 0.710120 0.632334 0.131687 -0.123990 0.395728 0.359839 -0.212172 -0.870713 0.334633 -0.569996 -0.630541 -0.257007 0.338838 -0.629908 0.502652 0.516512 0.100400 -0.186525 -0.441975 0.317795 0.598448 -0.104997 0.717424 0.436427 -0.610818 -0.496039 -0.322880 0.744894 -0.476460 0.541642 0.047139 -0.907795 -0.591814 0.646309 0.198451 -0.467412 -0.589696 -0.057697 0.158706 -0.327116 0.399684 0.052403 0.767314 -0.489681 -0.620156 0.236838 -0.491338 0.704129 0.004356 -0.069552 -0.150776 -0.221873 0.320423 -0.531632 -0.360393 0.534272 -0.376900 0.413671 -0.517851 0.015761 0.055152 -0.115076 -0.302233 -0.591587 0.162180 0.218482 0.128999 -0.165804 0.142256 -0.480317 0.516869 0.281040 0.161882 0.350151 0.297238 -0.121240 -0.106011 0.224267 -0.135895 -0.064455 -0.781001 0.235243 0.003361 0.101189 -0.358477 0.001280 0.703143 -0.115498 0.344771 -0.752399 0.745649 0.327694 -0.316950 -0.291229 0.269720 -0.141616 -0.568119 0.082924 0.490502 -0.048377 -0.056260 0.092107 0.359740 -0.168522 -0.909236 -0.051828 -0.470180 0.509551 -0.917907 0.008758 -0.162827 -0.320549 -0.163789 0.274447 0.220950 0.282269 0.744506 0.451027 -0.383027 0.399532 -0.785994 0.632874 1.279250 0.352673 -0.661565 0.255482 -0.557337 0.360104 0.346742 0.136833 0.118092 0.344918 -0.039472 0.285399 0.055874 -0.103912 0.762913 0.329804 0.601619 -0.871504 0.067722 -0.183960 0.200039 1.062518 0.482871 -1.057232 0.535896 0.842922 -0.234928 0.112591 0.086894 -0.451349 -0.280006 -0.649333 0.366138 0.518011 -0.875346 -0.504967 0.010043 -0.571176 0.664076 0.126362 -0.018015 0.184712 -0.624161 0.369467 1.086289 0.133652 0.038030 -0.143098 -0.421996 -0.611606 -0.862094 0.096452 0.301687 -0.456525 -0.188339 -0.534496 -0.335245 1.064509 -0.314015 0.103225 -0.986198 0.456451 0.342628 0.118364 0.305705 -0.568537 -0.370966 0.015426 -0.270151 0.247484 -0.620655 -0.007198 0.397154 -0.586889 0.593643 0.319191 0.071470 0.070082 0.438447 -0.121177 0.672614 0.067493 0.723828 0.116646 0.695432 -0.453283 0.094284 -0.323925 -0.083086 -0.368533 0.649444 -0.845502 -0.119243 0.712876 -0.267270 -0.773292 0.427700 0.449519 0.613020 -0.171764 -0.433383 -0.132482 -0.025918 -0.218001 0.338801 0.481592 -0.415575 -0.667131 -0.144866 0.473725 -0.629567 -0.318712 0.405267 0.113578 0.919661 -0.611146 0.371156 0.237877 0.235513 -0.912540 -0.616049 -0.033222 -0.124610 -0.220428 0.555807 -1.137514 -0.534284 -0.326692 0.445851 -0.773328 0.048779 -0.154475 0.725072 0.051337 0.036316 0.560111 0.240900 0.114558 -0.124639 0.053108 0.173759 0.301818 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -5.960773 2.486778 3.964241 -3.022843 9.507491 -0.845975 2.859832 4.628605 -1.340097 5.262189 -9.502207 -4.094862 -3.940615 -7.820154 0.182004 -5.076383 3.216396 0.588578 -2.734931 1.851329 4.019210 -2.071849 -0.064817 -4.911229 -0.584481 -6.364174 -3.750977 0.188561 4.546589 -1.262033 0.979918 1.342456 12.617975 2.279990 10.046784 6.486629 2.861149 8.698747 0.523525 -0.451519 -0.533505 7.336245 -4.453258 -7.213117 -0.367474 -5.842551 -4.672794 -3.483154 2.382230 -3.795185 -0.542960 5.653934 0.042079 2.251274 -5.223007 2.137420 6.413440 0.997983 9.742295 2.979732 -5.031614 1.078834 -5.447047 3.627187 -3.745743 3.328202 -1.566802 -5.423033 -0.177130 0.356782 0.789858 -5.801623 -4.533572 3.640911 2.843910 -5.176868 4.525938 -0.767655 -4.115901 -7.822593 -6.285882 1.967086 -0.133433 7.024149 -1.044277 -0.697908 0.706498 0.566767 1.120191 -9.043990 -1.478599 6.856049 -6.022516 -1.917842 -2.965520 5.337778 -0.952974 3.648190 -4.755447 -5.541612 2.274885 -0.456448 0.740028 -2.845252 0.145932 -5.947976 2.601595 0.981015 -0.698831 4.894123 4.288678 4.587011 6.304569 5.975182 -6.939118 2.029328 -7.597954 3.359078 -4.126291 -0.610572 -0.399959 2.636796 1.685448 2.344733 6.528713 -9.069238 4.249292 4.668512 -3.312915 -5.882643 0.472206 -6.964262 -7.873583 -1.553226 4.396260 2.901980 1.563806 -4.561496 0.874862 -2.234750 -0.883660 -2.255318 -0.422710 5.446926 -7.566351 -1.879205 -0.944667 -1.337748 -3.883057 5.949341 2.958993 2.907026 8.914252 3.790093 -5.246797 1.283401 -7.738908 0.790656 11.743378 0.126941 -7.658376 5.293382 -4.858222 0.805909 4.427716 3.840227 4.777786 -0.823222 -6.043514 -2.864761 1.692163 -1.674183 9.532052 2.681138 3.443658 -6.085062 8.200954 -2.421835 -4.163199 10.940774 4.837386 -9.226842 1.782714 4.568421 -5.413947 -1.941951 3.610054 -5.334343 -1.649920 -6.657766 1.157075 2.484834 -5.273973 -1.937875 1.903698 -8.682049 8.786406 0.913692 1.293883 1.180524 -6.827491 -7.510501 12.479556 -0.074505 -0.416852 -2.863355 -3.619637 -3.041280 -10.076283 1.456867 -0.261253 -3.513805 -1.652429 -7.122963 2.480003 6.393474 -2.883066 4.907527 -6.825064 -1.961307 3.143496 0.262791 3.913294 -5.079518 -5.381454 -1.009121 -2.335769 4.525021 -5.714513 5.222666 9.895375 -3.455915 6.635108 0.314809 -4.645140 0.392274 4.526148 -7.286963 8.374588 -2.703525 7.083747 0.063695 6.136824 -5.648911 -3.002642 -0.628019 -1.533475 -3.793956 4.597127 -5.785678 0.602830 1.842526 -5.512814 -3.969950 2.655423 -0.379017 0.597944 -0.219909 0.537878 -7.776207 0.529072 -3.414080 2.446503 6.442046 0.143129 -7.360534 1.410749 2.166477 -1.619989 -1.613640 0.533166 -0.502883 6.815221 -7.311211 -1.527779 1.405051 1.111129 -5.302188 -10.308696 1.166728 -6.896510 -4.691899 5.569065 -7.678890 -1.118178 -5.358585 -0.183739 -7.442134 -3.111378 2.640856 10.164580 3.772970 -5.656703 1.680142 -0.070074 5.875936 0.338534 1.380876 0.860789 4.162359 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/snake-ladder.cpp__main = -2.580375 1.377836 -0.473962 -1.352649 5.130292 -0.824783 0.815548 2.635034 -0.617646 2.002884 -4.038926 -0.955097 -0.798529 -3.666368 0.610820 0.742528 1.458120 1.755247 -1.075860 0.224030 1.871225 -0.753515 -0.103323 -2.212551 -0.110401 -1.509386 -1.338021 0.229555 1.071242 -0.780481 -1.611276 1.336227 4.897935 0.905217 3.945157 2.971701 1.662559 3.992861 1.245458 -0.326570 0.699826 2.520883 -1.475435 -4.232949 1.176237 -2.528767 -2.066265 -2.303245 0.945724 -2.095680 3.319201 2.490752 0.140552 0.323289 -2.492070 0.445488 3.251821 0.270380 3.965267 1.877282 -2.705233 0.776450 -1.508078 2.189602 -1.835646 1.923686 0.555292 -3.616015 -0.700729 1.335584 3.152854 -3.872509 -3.221752 0.829485 0.250540 -1.854597 1.963558 -0.072790 0.648043 -3.774357 -3.528640 0.941725 -1.468953 3.258082 -0.401698 -0.473702 -2.146511 -0.353511 1.007826 -3.212578 -1.219028 2.831283 -1.984008 1.443870 -2.032167 1.444208 0.049419 0.652296 -2.239439 -2.763512 1.178027 0.150461 0.509061 0.727616 0.380675 -1.773617 1.856900 0.952898 -0.370974 1.955306 2.444017 1.441025 2.270318 1.708324 -1.436791 0.357998 -3.771155 1.603993 -0.572492 -0.202169 -0.093672 0.600217 1.505916 -0.491063 2.213573 -3.695286 2.450471 1.891732 -1.556981 -2.265257 0.860125 -2.107876 -3.169821 -0.859197 2.250237 1.036310 0.197977 -0.857588 0.153068 -1.147399 -2.392604 -1.885078 -1.232157 3.174040 -3.497594 -0.444714 -0.746668 -1.427430 -1.348069 1.893126 1.104345 1.511831 3.730674 2.193207 -1.985988 -0.098123 -3.673276 1.123017 5.378414 1.726827 -3.484192 1.893002 -1.490699 0.728344 2.145930 1.553703 1.344051 -0.593659 -1.633340 -0.539732 0.257638 -0.906599 3.818132 1.311824 2.082761 -2.806781 2.530504 0.555626 -1.479161 5.806518 1.221619 -3.921210 0.813229 2.907668 -0.675428 -0.532789 1.222990 -2.253595 -1.630247 -2.310788 1.124315 1.179952 -3.322698 -1.661259 0.706745 -3.523721 3.562725 0.507930 -0.149910 0.183589 -3.615845 -0.453432 5.961782 0.279950 -0.149778 -0.499429 -1.747719 -0.513966 -4.174712 0.631725 0.845824 -1.255446 -1.144936 -2.726404 0.261752 3.994013 -1.639089 1.039508 -2.445582 -0.305429 1.544462 -0.598275 1.161971 -4.315478 -2.226725 0.123189 -0.096227 1.625214 -1.771464 1.594673 3.881567 -2.102802 1.371320 3.217551 0.564887 0.518371 2.333732 -2.227177 3.382373 -1.127155 3.315820 0.417320 2.799717 -2.344428 -1.073152 -0.616702 1.478815 -1.976608 2.608152 -2.861133 0.133380 1.542704 -1.824921 -2.426422 1.621540 0.893574 1.131303 -0.393202 -1.188891 -1.803769 0.109257 -1.437357 1.076205 2.726085 -0.741293 -3.222474 0.173611 1.229975 -1.549399 0.443716 0.971932 0.201880 3.748709 -3.127898 0.712961 0.619203 0.693472 -3.087673 -3.830905 0.558458 -2.222419 -1.524356 2.653612 -4.358021 -1.809246 -2.076877 0.943190 -3.582569 0.244557 0.092820 4.087550 1.495161 -1.232591 1.526933 0.245188 2.042074 -0.034947 0.263247 0.080147 2.591288 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::deallocate(queueEntry**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/snake-ladder.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = -2.709096 2.994922 1.261583 -2.511718 5.180348 -0.325286 1.208980 1.411469 0.162043 1.529141 -5.542561 -1.333487 -0.769504 -4.612722 0.844996 -1.436516 0.647097 1.906539 -1.098020 0.724520 2.244298 -1.482998 0.017901 -3.618781 0.149735 -2.734232 -1.483300 -0.195629 0.244423 1.533347 0.131568 1.083215 3.905171 1.452700 2.567333 2.970284 1.129662 5.005460 0.296306 1.913810 1.335402 2.518772 -1.049445 -5.636358 1.964999 -2.913607 -2.159525 -3.281188 0.561808 -4.276526 2.348258 2.657374 0.668466 -1.127083 -3.152926 0.121794 4.781067 1.418863 3.363634 2.607408 -2.163761 0.574095 -2.094178 -0.262523 -2.214793 2.848408 2.075465 -3.812194 -1.131333 2.514454 2.388967 -2.195360 -3.645080 -0.544372 0.591911 -1.528948 1.901442 -0.508059 -2.638894 -1.613189 -2.225525 0.954542 -0.670368 3.802708 -0.269267 -0.781208 -1.190880 -0.958426 2.107850 -2.245506 -2.840673 3.325304 -0.529819 1.016172 -1.810234 2.144395 1.353315 -0.297560 -1.973190 -2.086973 1.538488 1.254634 0.386119 0.928207 -3.657356 -3.558663 3.251053 2.663245 -1.811147 1.810121 1.190748 1.519075 0.500493 0.720016 -3.177051 2.286125 -4.242813 0.996885 -0.402482 0.162103 -0.233412 -0.402272 0.694796 -0.439723 0.890486 -2.953309 4.279253 2.830714 -1.957159 -1.907484 1.767188 -1.482122 -3.240337 -0.285846 1.855723 1.574235 0.242636 0.470126 -0.514862 -1.995118 -1.016465 -2.499243 -1.749891 4.292981 -3.055438 -0.338112 -0.838847 -1.462764 -1.537198 1.054054 0.389549 0.236222 3.792271 1.991655 -1.765599 0.181802 -2.702759 1.715968 6.784190 2.694653 -3.340330 0.938076 -0.072366 1.425120 1.677355 -0.078412 0.633085 1.380134 -2.725392 -1.355843 -1.408373 -3.020936 3.365125 3.589850 2.296743 -5.044683 4.008848 -0.066882 -0.613271 5.616897 2.735979 -3.618974 0.332334 4.215928 -3.706306 -1.377873 0.565189 -0.770371 -0.916320 -1.869211 1.048048 0.403774 -3.693100 -3.962374 -1.161640 -3.776045 3.390426 1.095222 1.531350 -0.918046 -2.785132 -2.053738 6.031104 0.217460 -1.013104 -0.143060 -0.907348 -1.377083 -4.527154 0.861621 1.857210 -2.393937 -1.927172 -2.245474 0.407910 3.945096 -3.567215 -0.258308 -0.915957 -0.842725 1.343618 -0.131293 1.541139 -4.546106 -2.609580 -0.231216 0.080936 1.932701 -0.496848 1.466718 4.274717 -1.987252 1.925679 2.978311 0.236482 0.730813 4.006918 -0.815576 3.254963 -1.775969 4.442399 0.311298 3.554611 -2.036059 -1.025304 -0.215915 -0.983135 -1.477693 3.743068 -3.829633 0.304543 2.796109 -1.745240 -1.996831 3.515374 1.543523 2.306737 -1.190247 0.424849 -1.711046 0.511406 -0.297408 0.503138 2.985821 -0.434730 -4.291836 -1.731909 2.526868 -2.136697 -2.074072 1.732693 0.218815 4.218596 -2.834510 2.692817 0.467974 -1.060562 -4.152938 -3.182314 1.686078 -2.933626 -2.402643 2.514760 -4.637757 -1.278061 -2.011400 2.150503 -3.410661 -0.684711 -0.551008 3.121244 1.271209 -0.126298 1.853457 0.514270 2.268253 -0.090264 -0.012822 0.292039 3.342707 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = -3.094099 3.325580 1.669514 -2.829217 5.936703 -0.584157 1.327977 2.212424 0.978393 1.597710 -6.438217 -1.784845 -0.778103 -4.741742 0.940415 -1.762192 0.683028 2.675719 -1.552759 0.556982 2.649750 -0.859025 -0.248506 -4.151638 0.154485 -2.092970 -2.045907 -0.305266 -0.694985 1.904855 -0.108993 1.531953 4.596452 1.906442 3.537471 3.681432 1.370308 6.034166 0.146631 3.996818 1.810779 2.793199 -1.091100 -6.652834 2.431336 -3.416197 -2.343128 -3.904246 0.382879 -5.228953 4.680519 2.872537 0.918360 -0.960198 -3.090516 -0.106081 4.781985 2.123922 3.689013 3.249081 -3.530835 1.695581 -2.531565 -0.197399 -2.332185 4.210476 2.763375 -4.938322 -1.527882 2.771184 4.318972 -3.462076 -4.665708 -0.652908 0.133430 -1.456877 2.432875 -0.523941 -2.310316 -1.367721 -2.702080 1.233759 -0.763829 4.056715 -0.490407 -1.039041 -2.646038 -1.224346 2.276054 -2.457009 -3.419450 4.062204 -0.904127 2.129967 -3.138291 1.420170 1.261017 -0.033813 -2.204740 -2.500492 2.001149 1.720229 0.351771 1.964131 -4.928744 -3.691968 4.361241 3.646172 -2.460295 1.585730 1.148371 2.059831 1.061321 0.764576 -2.989859 3.408917 -4.836419 1.463328 -0.635303 0.089817 -0.090336 -0.542096 0.567355 -0.561080 0.913124 -2.900822 4.794401 3.063955 -2.804513 -2.018612 2.153091 -1.900524 -3.994333 -0.637914 2.207292 2.279144 0.149599 0.443146 -0.943034 -2.627360 -1.020938 -3.729260 -2.173978 3.877496 -2.618029 -0.665582 -1.013198 -1.725165 -2.001346 1.492924 0.485860 0.315435 4.164394 2.165444 -1.643241 -1.581172 -3.248111 1.655006 7.378002 3.102189 -3.938320 1.065864 0.359724 1.859890 2.147841 -0.064314 0.314797 1.690656 -2.610961 -1.410558 -2.499080 -3.427854 3.752517 4.905420 2.494746 -5.482147 3.936786 -0.613848 -1.163129 6.828629 3.487562 -4.000324 -0.869757 4.639736 -3.329532 -2.028760 0.722133 -0.798643 -1.273753 -1.730249 1.124578 0.260124 -4.236464 -4.581518 -0.462582 -4.380947 3.871931 1.196855 1.749394 -1.644790 -3.923755 -2.244536 7.404428 0.227374 -1.227858 0.425216 -0.882757 -0.692763 -5.123222 0.875960 2.625583 -2.136702 -2.476699 -2.350077 0.986272 4.492574 -4.388653 -0.334671 0.649489 -1.729344 1.523547 -1.688012 1.844164 -6.308127 -3.059433 -1.026541 0.351383 2.672675 -0.298255 1.226731 5.365221 -1.871963 2.126634 5.312511 0.514257 0.082602 4.789033 -0.894277 3.682458 -2.430117 4.152078 0.388407 3.974529 -2.373202 -1.611305 -0.363637 0.115581 -1.831617 4.685257 -4.086640 0.621387 2.515372 -2.543466 -1.539826 4.158271 1.740980 2.198735 -1.383799 0.648365 -2.248465 0.317394 -0.801204 0.375714 3.431922 -0.602166 -5.031728 -1.831236 2.364564 -3.064988 -1.949662 1.892791 0.176809 5.072972 -3.179609 2.950985 0.929305 -1.675680 -5.100149 -3.159784 1.312336 -3.735253 -2.864212 2.129455 -4.774905 -2.085747 -2.153160 2.497682 -3.517657 -1.048661 -0.462850 3.655592 2.101074 -0.101597 2.009617 0.612894 3.025421 0.273297 -0.295939 0.203447 4.249281 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry**, queueEntry**, queueEntry**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/snake-ladder.cpp__void std::__copy_move::__assign_one(queueEntry**, queueEntry**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry**, queueEntry**, queueEntry**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = -0.319156 0.068032 -0.134641 -0.270452 1.035769 0.010298 -0.117974 0.520674 0.289096 0.355881 -0.605010 -0.188847 -0.016849 -0.432960 0.149661 0.181676 0.070391 0.184506 -0.375898 -0.352523 0.194594 0.179759 0.091581 -0.287203 -0.044892 -0.369422 -0.258812 0.094638 0.042107 0.137999 -0.480571 0.135263 0.504118 -0.114189 0.245781 0.232231 0.566108 0.400079 -0.064303 0.341169 0.452660 0.172081 -0.152976 -0.540825 0.166721 -0.413587 -0.511750 -0.175073 0.214195 -0.542271 0.508038 0.305170 0.116198 -0.143658 -0.141914 0.296881 0.195746 0.012353 0.458486 0.316746 -0.602434 -0.139695 -0.334459 0.632410 -0.344272 0.647061 -0.100422 -0.781886 -0.604807 0.526333 0.234607 -0.304291 -0.433045 -0.070592 0.083068 -0.176241 0.278902 -0.001110 0.720609 -0.157405 -0.331858 0.275319 -0.249190 0.372678 0.020824 -0.060608 -0.161079 -0.144850 0.173351 -0.323706 -0.322107 0.464046 -0.311547 0.330554 -0.419368 -0.284217 0.036493 -0.072087 -0.056084 -0.414558 0.128324 0.220307 0.039644 -0.006736 0.061842 -0.334931 0.419828 0.428516 0.068300 0.099856 -0.020137 -0.057791 -0.047377 0.137037 -0.012699 0.072302 -0.510933 0.205333 -0.105998 0.043574 -0.284713 -0.020978 0.440858 0.061034 0.220430 -0.403793 0.549487 0.152487 -0.381917 -0.086291 0.168033 -0.067988 -0.443234 0.109440 0.248974 0.057515 -0.054049 0.075408 0.223122 -0.203557 -0.464811 -0.083076 -0.303958 0.035449 -0.439422 -0.028131 -0.047728 -0.140367 -0.170328 0.313414 0.222441 0.146991 0.555157 0.255615 -0.164184 -0.070953 -0.557244 0.418449 0.805216 0.035447 -0.433467 0.196641 -0.395135 0.261058 0.237525 0.102132 -0.096080 0.435490 0.061679 0.228514 -0.279904 -0.089856 0.547419 0.403400 0.344207 -0.592422 -0.090709 -0.400202 0.159997 0.727159 0.508170 -0.742093 0.125874 0.600973 -0.153271 -0.072569 0.124589 -0.325589 -0.226064 -0.387028 0.196216 0.352866 -0.536009 -0.369922 0.161389 -0.388554 0.480792 0.075738 -0.057886 0.070710 -0.455953 0.107135 0.781062 0.106233 0.044310 0.008323 -0.210791 -0.258342 -0.597857 0.015762 0.373839 -0.292971 -0.131082 -0.313009 -0.094618 0.669531 -0.321084 0.137908 -0.415025 0.214147 0.238618 -0.140604 0.249732 -0.394095 -0.213131 -0.189800 -0.269539 0.173494 -0.485790 -0.091729 0.285219 -0.306628 0.531163 0.357295 -0.183232 -0.163847 0.319886 -0.016641 0.490751 0.032221 0.171291 0.111872 0.463813 -0.281762 0.038848 -0.269906 -0.131501 -0.270945 0.517821 -0.597873 -0.062458 0.382205 -0.290733 -0.388034 0.356759 0.358366 0.343160 -0.147546 -0.217059 -0.217114 -0.035526 -0.164072 0.191655 0.286195 -0.298982 -0.529965 -0.063004 0.323432 -0.635887 -0.396161 0.244633 0.076550 0.653866 -0.393548 0.270565 0.290620 0.121612 -0.827371 -0.258860 -0.174926 -0.187305 -0.166033 0.118426 -0.644645 -0.522630 -0.211425 0.307797 -0.340847 -0.174477 0.061875 0.528281 0.162044 -0.043262 0.345808 0.159756 0.122946 0.029771 -0.066218 0.168440 0.155484 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = -2.224255 2.298161 1.153540 -2.264100 3.965668 -0.619743 0.736829 1.234764 1.035079 1.136907 -4.606289 -1.445235 -0.606489 -3.769915 0.551642 -1.598125 0.675191 1.791215 -1.020476 0.904403 1.832581 -1.093394 -0.004094 -3.012405 0.033604 -1.879943 -1.246135 -0.077042 -0.417118 1.102527 0.531647 1.011895 3.446404 1.574888 2.662214 2.529686 0.571420 4.392343 0.367469 2.297399 1.218195 1.952642 -0.607936 -4.707539 1.537341 -2.207276 -1.748861 -2.880265 0.299905 -3.691580 2.448113 2.145757 0.634368 -0.767094 -2.674196 -0.264717 3.712250 1.662655 2.691487 2.165972 -2.125119 1.161555 -1.776516 -0.757050 -1.877151 2.198329 1.945385 -2.988315 -0.691907 2.176197 2.338889 -2.011838 -3.074803 -0.574561 0.511930 -1.168365 1.732484 -0.391319 -2.104719 -1.111517 -1.527476 0.855205 -0.319409 2.844237 -0.348909 -0.448170 -1.238565 -0.809122 1.525457 -1.794394 -2.188628 2.496250 -0.661845 0.827774 -1.288424 2.080137 1.095156 -0.298801 -1.720401 -1.784509 1.356789 0.760511 0.220114 1.496203 -3.453110 -2.694279 2.993631 2.381920 -1.727086 1.377875 0.965179 1.721177 0.781359 0.575153 -2.670050 2.356358 -3.618113 0.827810 -0.625445 -0.004950 0.000316 -0.405358 0.418028 0.000106 0.595713 -2.249480 3.674376 2.549906 -1.529661 -1.449753 1.507187 -1.230259 -2.606860 -0.418439 1.558028 1.442713 0.399926 0.318784 -0.695309 -1.763492 -0.340742 -2.162153 -1.372307 3.213831 -1.781473 -0.255755 -0.544712 -1.149589 -1.288951 0.777631 0.320919 -0.127889 3.152255 1.256275 -1.530326 -0.708057 -2.111986 1.075319 5.485187 1.713463 -2.710212 0.967975 0.381061 1.088502 1.258235 0.109902 0.571694 0.662709 -2.212500 -1.344578 -1.519285 -2.532392 2.614679 2.791749 1.618832 -4.174320 3.364006 0.051850 -0.456582 4.970758 2.186806 -2.836999 -0.509328 3.446041 -3.204369 -1.416920 0.484247 -0.262371 -0.588270 -1.321596 1.028875 -0.008387 -2.856319 -3.314416 -0.802175 -3.186903 2.535430 0.826659 1.176271 -1.199069 -2.440459 -1.743947 5.387738 0.124377 -0.905796 0.316883 -0.783708 -0.384445 -3.879550 0.457164 1.493982 -1.725614 -1.196905 -1.549072 0.654626 3.069695 -3.161138 -0.306059 -0.120410 -1.107376 1.177896 -0.686048 0.905690 -3.771530 -2.173859 -0.234402 0.193123 1.608961 -0.191015 1.104299 3.686693 -1.270657 1.484739 2.878594 0.165544 0.660409 3.392809 -0.869698 2.908321 -1.823009 3.372157 0.350761 2.791941 -1.588784 -1.113871 -0.209580 -0.706280 -1.430380 3.098755 -3.106993 0.370970 2.067031 -1.266541 -1.405992 2.952622 1.304640 1.610506 -0.869334 0.647798 -1.673370 0.403721 -0.346266 0.539060 2.264360 -0.013529 -3.549613 -1.324894 2.369452 -1.586323 -1.653155 1.274265 0.143162 3.552184 -2.282282 2.258360 0.608481 -0.997154 -3.070825 -2.464085 1.567722 -2.764861 -1.751013 1.520133 -3.690333 -1.267342 -1.503297 1.925876 -2.256341 -0.291799 -0.190158 2.726899 1.542608 -0.510423 1.316788 0.192404 1.854808 0.153223 -0.044213 0.118302 3.040475 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = -2.249101 3.090900 1.772798 -2.290840 3.662158 -0.348555 0.993580 1.066044 0.893972 1.003019 -4.890600 -1.324784 -0.575577 -3.606785 0.629919 -1.705525 0.162806 2.075483 -0.842081 0.738235 2.057630 -1.023774 -0.212095 -3.344127 0.176854 -1.805702 -1.420558 -0.419129 -0.818087 1.788345 0.669097 1.005490 3.040732 1.800992 2.314017 2.727636 0.441061 4.770571 0.200053 3.583823 1.118755 2.135059 -0.760115 -5.197075 2.138323 -2.498616 -1.170785 -3.347399 0.075948 -4.096473 3.506071 2.066675 0.715542 -1.009893 -2.562725 -0.595419 3.841599 1.951907 2.492357 2.446570 -2.010033 1.560691 -1.830511 -1.184317 -1.839012 2.975927 2.714302 -3.194119 -0.765135 1.945629 3.352307 -2.107475 -3.334199 -0.736632 -0.106343 -0.965902 1.604732 -0.572152 -2.985839 -0.561482 -1.718587 0.798422 -0.152603 3.005260 -0.407829 -0.857984 -2.057966 -0.844891 1.926548 -1.456308 -2.771048 2.850070 -0.037337 1.386214 -1.699971 1.596685 1.197281 -0.195417 -1.426921 -1.241633 1.565102 1.474896 0.264746 1.944351 -4.639882 -2.982037 3.548335 2.827828 -2.460188 0.912011 0.846290 1.634644 0.487227 0.305586 -2.516197 2.951305 -3.691544 0.884802 -0.040341 0.157654 0.271420 -0.600986 -0.184866 -0.752512 0.225370 -1.837159 3.708602 2.449029 -1.950387 -1.474995 1.755482 -1.271006 -2.774442 -0.503541 1.454799 1.917810 0.065471 0.573495 -1.173342 -2.133104 -0.261681 -3.265398 -1.555264 3.551462 -1.634106 -0.451510 -0.810286 -1.347345 -1.470288 0.685471 -0.015692 -0.141795 2.998824 1.571537 -1.103408 -1.396262 -1.848373 0.999351 5.411471 2.724734 -2.745006 0.470920 0.981504 1.285706 1.444918 -0.400889 0.203448 1.402425 -2.328008 -1.516136 -2.131555 -3.162525 2.542700 3.879634 1.931822 -4.138179 3.595611 0.133571 -0.865330 4.860485 2.452793 -2.410860 -0.937720 3.415416 -3.003685 -1.717758 0.387677 0.087577 -0.660744 -0.835509 0.681846 -0.250402 -3.027386 -3.880343 -0.994338 -3.279621 2.761721 0.981080 1.960988 -1.368214 -2.671619 -1.987357 5.118122 0.150805 -1.254050 0.328280 -0.339636 -0.437941 -3.600933 0.880091 2.132708 -1.671349 -2.001805 -1.492834 0.975048 2.966503 -3.592521 -0.744515 1.280534 -1.779100 0.969972 -1.277236 1.286185 -4.843523 -2.279073 -0.544566 0.697531 2.145258 0.636416 1.196034 4.206706 -1.310071 1.182137 4.284552 1.017453 0.269361 3.944072 -0.397730 2.471153 -2.248829 3.111571 0.138410 2.881958 -1.517854 -1.271780 0.095496 -0.183540 -0.981670 3.358708 -2.864880 0.544509 1.863898 -1.861856 -0.614695 3.389629 1.237863 1.753927 -1.095652 0.977421 -1.475251 0.458946 -0.210711 -0.043943 2.659399 0.001119 -3.889488 -1.802751 1.844585 -2.030531 -1.685838 1.463836 0.103549 3.566436 -2.136262 2.576061 0.390739 -1.795183 -3.602898 -2.041916 1.476729 -2.792613 -2.300112 1.615139 -3.369896 -1.058483 -1.612075 2.009284 -2.626491 -0.582364 -0.763403 2.176462 1.579036 0.197158 1.391797 0.405029 2.398665 0.348881 -0.438857 0.123332 3.531925 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -2.208593 0.859723 -0.041791 -0.934395 3.618657 -0.062689 0.781805 1.080771 -0.905116 2.278894 -3.108711 -1.462123 -1.361764 -3.136591 0.078383 -0.705636 1.123418 0.222371 -0.835541 0.465449 1.384148 -1.665424 0.275889 -1.499810 -0.143599 -2.587664 -1.085836 0.271915 2.453253 -1.044080 -0.376853 0.262367 4.199889 0.357126 2.922488 2.068338 0.988284 2.898287 0.445040 -1.310839 -0.311657 2.602191 -1.620401 -2.496778 0.092457 -2.062731 -1.853460 -1.104177 1.203492 -1.109772 -0.311320 2.224505 -0.328363 0.409922 -2.116764 1.187046 2.985052 0.060779 3.873190 0.795858 -1.103193 -0.363381 -1.798792 1.976790 -1.543670 0.577216 -0.603552 -2.271726 -0.078221 0.174598 -0.399740 -1.629851 -1.610178 1.604669 1.277265 -2.110896 1.277175 -0.406634 -1.701604 -3.448524 -2.664174 0.453064 -0.425277 2.764143 -0.234964 -0.101623 0.846312 0.308561 0.364985 -3.473893 -0.286073 2.291171 -1.879179 -0.339574 -0.477365 2.213733 -0.206431 0.961110 -2.154702 -1.698884 0.422205 -0.301333 0.506361 -1.510050 0.854142 -2.146052 0.743186 -0.176329 0.322071 1.663500 2.505114 0.945095 1.826544 2.294156 -2.794238 -0.278654 -2.523345 0.900273 -0.609063 -0.063726 -0.180162 1.049381 0.816109 0.264889 2.740931 -3.749412 1.478216 1.303205 -0.928650 -2.484204 -0.011389 -2.288408 -2.468173 -0.450192 1.595979 0.388867 0.456052 -1.543303 0.559901 -0.405043 -1.452733 0.112184 -0.086163 2.736789 -3.192475 -0.316152 -0.438908 -0.812936 -1.070784 1.922543 1.201581 1.390476 3.249316 1.757113 -1.766352 1.639665 -2.838542 0.784714 4.431990 0.698613 -2.898686 1.897004 -2.092730 0.375646 1.665730 1.416987 2.076482 -0.427872 -1.858374 -0.651885 1.300064 -0.245120 3.403449 0.214379 1.372321 -2.002626 3.014865 0.265778 -1.318265 4.089343 1.415580 -3.399471 1.868515 1.705403 -2.265421 0.008272 1.321104 -1.963093 -0.512771 -2.597396 0.555339 1.293155 -2.026944 -0.610324 0.224884 -3.044823 3.440211 0.232584 0.384872 1.285222 -2.526186 -2.109111 3.915082 0.061861 -0.057451 -1.412624 -1.531931 -2.020088 -3.489968 0.557667 -0.428675 -1.778223 -0.716897 -2.827290 0.246414 2.799444 -0.421390 1.817176 -3.697231 0.018628 1.193549 1.015931 1.420294 -0.962285 -1.823294 0.330840 -0.824796 1.283324 -2.029403 1.981989 3.062172 -1.696999 2.117756 -0.661598 -1.228169 0.866772 1.309059 -2.576710 3.020112 -0.575920 2.673564 -0.071028 2.238104 -1.939078 -0.491533 -0.060962 -0.443108 -1.270532 1.367341 -2.159947 -0.117380 1.154976 -1.942775 -2.120938 0.672435 -0.094329 1.028925 0.114459 -0.417290 -2.265602 0.151613 -0.802327 0.846040 2.185508 0.210262 -2.125987 0.522845 0.571870 0.045676 -0.302479 0.406321 -0.117826 2.360366 -2.786153 -0.461313 0.191464 0.599467 -1.649790 -3.757807 0.221152 -1.975156 -1.591091 2.962669 -3.480602 0.011167 -2.010994 -0.166011 -2.873120 -0.303807 0.443353 3.831907 1.011622 -1.882672 1.146931 0.015643 1.887248 -0.266154 0.513152 0.372643 1.340288 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -2.841440 1.418234 1.156466 -1.169556 5.300653 -0.177279 1.563823 2.300932 -2.085547 2.762899 -4.171209 -1.014427 -1.448506 -3.820298 0.329204 -1.253771 1.564978 0.255598 -0.989871 0.743335 1.712346 -1.727233 -0.052516 -2.014174 -0.228344 -3.763032 -1.317130 0.326563 3.448693 -0.907935 -0.559705 0.666337 5.649932 0.253496 4.407313 3.041749 1.878905 3.320641 0.592374 -2.721490 -0.217833 3.228043 -2.145852 -3.265395 -0.276571 -2.635521 -2.821614 -1.492970 1.414291 -1.558406 -1.406932 2.850795 -0.352516 0.840899 -2.383741 1.993381 3.718095 -0.461089 4.825469 1.242703 -1.873406 -0.673134 -2.275112 2.859399 -1.629401 0.748059 -1.539442 -3.080570 0.014196 0.451820 -0.721450 -2.059398 -1.447237 2.114059 1.751763 -2.685994 1.871150 -0.375459 -1.868411 -4.693775 -3.205298 0.780822 -0.633458 3.650259 -0.254107 -0.239050 0.954007 0.257005 0.443520 -4.515585 -0.483758 3.520039 -2.743739 -1.021678 -1.305062 2.654299 0.291387 1.474621 -2.388486 -3.044209 0.865646 -0.533279 0.477129 -2.521080 1.812027 -2.613229 0.235232 -0.136811 0.681226 3.204886 1.782589 1.702580 2.797916 2.915489 -3.422126 0.045187 -3.348857 1.602424 -1.745212 -0.214400 -0.248759 1.251113 1.589395 1.066370 3.471696 -4.813561 1.858016 1.997112 -1.023100 -3.064696 0.081160 -3.206966 -3.399542 -0.768724 2.035280 0.834275 0.676545 -2.079850 0.902246 -0.615334 -1.411981 -0.505152 -0.259377 3.346403 -4.922507 -0.550486 -0.466828 -0.607050 -1.581346 2.766526 1.746120 1.854916 4.217515 2.312202 -2.379356 2.432714 -3.959864 0.881129 5.715041 0.337867 -3.612255 2.677716 -3.012395 0.114881 2.138316 1.972517 2.372137 -0.319849 -3.022234 -1.308476 1.569352 -0.426949 4.554181 0.789058 1.455839 -2.911307 4.077450 -0.779079 -2.246650 4.983501 1.928083 -4.699150 2.316054 2.328344 -2.875138 -0.335781 1.718594 -3.417544 -1.075461 -3.367729 0.608738 1.698281 -2.708501 -0.551074 0.766906 -3.928913 4.299795 0.425084 0.200669 1.023197 -2.667380 -2.969301 5.550544 0.162265 0.049551 -1.755326 -1.909768 -2.522593 -4.561347 0.511369 -0.575810 -2.133194 -1.067018 -3.699478 0.195139 3.442076 -0.869595 2.522759 -5.363848 0.064521 1.608146 1.518442 1.721949 -1.879619 -2.495622 -0.079299 -1.449597 1.415760 -3.189972 2.927810 4.131328 -2.011149 3.020722 -1.296810 -2.818392 0.970429 1.684522 -3.571542 3.972477 -0.477784 3.833635 0.358441 2.928156 -2.978092 -1.036027 -0.430195 -1.050108 -2.038865 2.134132 -2.912295 0.081787 1.311837 -2.401866 -2.953264 0.927701 -0.022600 0.907629 -0.042502 -0.447946 -3.326538 0.196695 -1.852490 1.140659 2.824644 -0.526678 -3.016428 0.900298 0.971226 -0.414621 -0.790726 0.429690 -0.015128 3.007063 -3.609858 -0.549906 0.468361 1.191157 -2.612965 -5.293830 0.517269 -3.020987 -2.289546 3.265695 -4.458995 -0.399751 -2.653527 -0.330635 -4.340922 -1.293324 1.331185 5.218674 0.966634 -2.522056 1.300366 -0.115609 2.449097 -0.219628 1.237741 0.156243 1.481472 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -1.845338 0.304533 0.098725 -0.646286 3.134642 -0.384923 0.544819 1.157308 -0.155829 1.500529 -2.519989 -1.584135 -1.209454 -2.312598 0.275319 -0.281693 1.156025 0.608443 -0.967184 0.089674 1.304840 -0.669100 0.032564 -1.270990 -0.003690 -1.364828 -1.127870 0.206756 1.494020 -0.808969 -1.016280 0.664574 3.632838 0.386948 2.851780 1.849064 1.182713 2.574114 0.182741 -0.977930 0.059857 2.210804 -1.287272 -2.454956 0.376177 -1.820148 -1.492376 -1.203863 1.028494 -0.785897 0.628666 1.731357 -0.097243 0.512712 -1.484854 0.653176 2.095216 0.559467 3.003416 1.004423 -1.233286 0.546913 -1.465367 1.409677 -1.346773 1.149698 -0.694796 -2.284635 -0.602873 0.281250 0.775863 -1.973687 -1.721065 0.995859 0.797501 -1.356604 1.396268 -0.004728 0.227037 -2.845645 -2.696074 0.365838 -0.904501 2.211451 -0.491063 -0.300992 -0.119740 -0.018452 0.474770 -2.545156 -0.447159 1.815431 -1.670974 0.234421 -0.535691 0.952307 -0.238906 0.836902 -1.737309 -1.775088 0.536879 -0.293453 0.383195 -0.034909 1.120801 -1.031414 0.804565 0.229103 0.302206 1.303058 1.899722 0.786347 1.690179 1.556013 -1.516504 -0.129533 -2.102619 0.959278 -0.977941 -0.091986 0.008974 0.976631 0.998450 -0.028691 1.967380 -2.833326 1.250280 1.139640 -0.929470 -1.449394 0.354587 -1.811710 -2.283276 -0.611344 1.617568 0.574024 0.111851 -1.155026 0.479533 -0.525000 -1.094123 0.070234 -0.543804 1.404196 -2.276585 -0.429048 -0.529008 -1.021342 -0.820635 1.548450 0.822689 1.204818 2.561909 1.580873 -1.789453 0.123710 -2.560973 0.723298 3.502117 -0.359764 -2.404903 1.372953 -1.411820 0.496058 1.613581 1.309355 1.392787 -0.342394 -0.781978 -0.102956 0.053933 -0.165182 2.796458 0.531605 1.263224 -1.716939 1.649885 -0.097880 -1.126566 3.567976 0.917931 -2.831082 0.817799 1.473544 -1.270477 -0.402789 0.835830 -1.626745 -0.599380 -2.292733 0.787951 1.088121 -2.017639 -0.532845 0.773655 -2.502566 2.509935 0.169616 -0.190918 0.733664 -2.412675 -1.201149 3.822457 0.090951 0.003288 -0.908147 -1.345336 -0.641114 -2.924132 0.524996 -0.294425 -0.962509 -0.697670 -2.118297 0.389348 2.597950 -0.537277 1.285149 -2.274662 0.056129 0.971548 0.171619 1.191215 -1.448612 -1.601400 0.121869 -0.808022 1.070986 -1.652360 1.014931 2.558716 -1.529376 1.181138 0.527922 -1.063744 0.319077 1.227470 -1.928109 2.393328 -0.554652 1.848016 -0.045392 1.856747 -1.615203 -0.655121 -0.204321 0.286842 -1.335060 1.484306 -1.698521 0.073193 0.791643 -1.541056 -1.623770 0.697610 0.162888 0.712066 0.032448 -0.597413 -2.029634 0.333775 -0.643880 0.702854 1.946149 -0.030910 -2.014366 0.396443 0.440226 -0.605529 -0.261397 0.437182 -0.258256 2.326138 -2.202709 -0.284936 0.445644 0.650618 -1.438391 -2.749126 -0.104598 -1.704405 -0.842669 2.350304 -2.507386 -0.567128 -1.549842 0.219936 -1.830504 -0.240157 0.392022 2.956900 1.291197 -1.393120 0.996834 0.195991 1.588880 -0.009608 -0.003277 0.193855 1.292582 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -1.020677 0.466624 0.470319 -0.399656 1.906226 -0.074862 0.413682 0.872047 -0.158791 1.115120 -1.386495 -0.749920 -0.437633 -1.094395 0.105362 -0.510227 0.356531 0.205324 -0.452924 0.097633 0.595605 -0.277340 -0.069239 -0.541668 -0.206406 -1.112233 -0.705874 0.215000 1.041521 -0.505567 -0.299811 0.253642 2.026641 0.004865 1.841254 1.162086 0.760174 1.111429 0.044232 -0.288808 -0.030308 1.064508 -0.885480 -1.074145 -0.128780 -0.893849 -1.064940 -0.515229 0.499027 -0.481830 0.150498 1.033036 -0.147916 0.431984 -0.571199 0.743015 0.754911 0.107558 1.756118 0.461090 -0.926116 0.225295 -1.064805 1.300763 -0.545155 0.672494 -0.790980 -1.425098 -0.226716 0.095569 0.069588 -1.022006 -0.595222 0.969241 0.497790 -0.952292 0.715478 -0.224983 -0.149903 -1.544943 -1.264218 0.473603 -0.135555 1.171745 -0.062625 -0.046365 -0.021397 0.244840 -0.089459 -1.762721 -0.067184 1.324616 -1.216726 -0.144465 -0.423100 0.480753 -0.026089 0.695337 -0.689301 -1.039093 0.391359 -0.150160 0.195223 -0.504034 0.810700 -0.877145 0.168187 0.152794 0.263702 0.802466 0.723014 0.608538 1.249163 1.237299 -0.983362 0.003876 -1.104535 0.716052 -0.767901 -0.028303 -0.125105 0.591029 0.506616 0.471796 1.361676 -1.681406 0.517507 0.490021 -0.545175 -1.063720 -0.034522 -1.248097 -1.262328 -0.353859 0.723180 0.367106 0.103273 -0.857110 0.281809 -0.236959 -0.404288 -0.174901 -0.005240 0.686316 -1.431661 -0.212833 -0.154925 -0.242413 -0.660873 1.239520 0.870714 0.868079 1.642504 0.880826 -0.694429 0.139378 -1.548589 0.194051 1.818411 -0.207511 -1.341578 1.140711 -1.229856 -0.012455 0.804818 0.896906 0.728238 0.063237 -0.839893 -0.359446 0.285608 0.087431 1.763378 0.323801 0.480111 -0.753289 1.099232 -0.545105 -1.018585 1.947586 0.768622 -1.752757 0.405711 0.682052 -0.762227 -0.288963 0.865419 -1.349952 -0.375783 -1.148123 0.136474 0.685111 -0.911292 -0.131948 0.699338 -1.463167 1.633683 0.064614 0.004140 0.453578 -1.210218 -1.051047 2.131011 0.165736 -0.021324 -0.601715 -0.675712 -0.505171 -1.506641 0.187723 0.012105 -0.544585 -0.435438 -1.332687 0.259909 1.233438 -0.218647 1.094115 -1.377505 -0.151629 0.613633 -0.025483 0.711265 -0.702714 -0.780348 -0.311243 -0.556009 0.526689 -1.130172 0.915157 1.623843 -0.663610 1.082171 0.054129 -1.069110 0.017533 0.557545 -1.361919 1.539509 -0.156504 0.791036 0.143895 0.969731 -1.071487 -0.383903 -0.127281 -0.149457 -0.664075 0.783647 -0.823256 0.010822 0.207111 -1.130772 -0.838373 0.186240 0.037002 0.072576 0.062726 -0.202647 -1.378229 -0.040863 -0.747384 0.400270 1.033005 -0.128631 -1.047887 0.590330 0.124321 -0.295062 -0.333940 0.121555 -0.020941 1.166330 -1.360991 -0.366446 0.323391 0.473655 -1.130651 -1.660733 -0.179673 -1.181335 -0.700375 0.778643 -1.374443 -0.274192 -0.990511 -0.219274 -1.293142 -0.588802 0.664584 2.030240 0.662912 -1.108416 0.445758 -0.102073 1.000624 0.142299 0.171395 0.148859 0.582448 +PE-benchmarks/m-coloring-problem.cpp__main = -0.513129 -0.011045 -0.215398 -0.229829 1.121373 -0.032940 -0.098076 0.693838 0.283726 0.400268 -0.721737 -0.450037 -0.291869 -0.653996 0.181157 0.232667 0.194005 0.326820 -0.476872 -0.332997 0.485631 0.095947 0.052360 -0.421876 0.061739 -0.192698 -0.325867 0.002579 0.142012 0.180729 -0.635974 0.210463 0.768319 0.097210 0.491552 0.379231 0.650541 0.790322 -0.144467 0.477959 0.201972 0.569546 -0.300443 -0.917985 0.459541 -0.687092 -0.403724 -0.296037 0.316287 -0.589756 0.858506 0.469409 0.082831 -0.030924 -0.194202 0.118131 0.393436 0.257913 0.689739 0.477491 -0.643978 -0.083266 -0.487459 0.483710 -0.410835 0.877168 0.120853 -0.939917 -0.651727 0.281711 0.517431 -0.610264 -0.633070 0.052837 0.044843 -0.181734 0.501173 0.026792 0.734853 -0.329405 -0.788544 0.113866 -0.432036 0.614688 -0.195584 -0.178499 -0.327943 -0.188125 0.267628 -0.535439 -0.340561 0.541308 -0.424706 0.588950 -0.568808 -0.299481 -0.181095 0.168224 -0.363210 -0.398658 0.198009 0.340680 0.125265 0.178675 -0.098932 -0.334835 0.700178 0.345358 0.039258 0.110162 0.389446 -0.076468 0.020506 0.301207 -0.095726 0.203648 -0.623273 0.275421 -0.094722 0.203688 -0.144256 0.127423 0.504499 -0.253604 0.322135 -0.599052 0.565331 0.253809 -0.466407 -0.242881 0.311021 -0.388605 -0.689596 -0.069191 0.532756 0.134152 -0.195021 -0.104260 0.219949 -0.261374 -0.697567 -0.169012 -0.462740 0.067869 -0.569696 -0.152041 -0.254468 -0.427453 -0.210562 0.355606 0.144169 0.289565 0.669658 0.475787 -0.368906 -0.214772 -0.679155 0.464329 1.088296 0.138733 -0.715605 0.144979 -0.359290 0.453946 0.486023 0.100973 0.153780 0.480493 0.190271 0.371146 -0.304348 -0.092452 0.766658 0.594157 0.633584 -0.735336 -0.062059 -0.333500 -0.066435 1.089552 0.543394 -0.920848 0.107614 0.513154 -0.135277 -0.039934 0.033363 -0.254904 -0.167841 -0.608503 0.317275 0.420460 -0.810581 -0.503963 0.280732 -0.670691 0.703747 0.071777 0.180624 0.172478 -0.909887 0.152405 1.101222 0.128063 -0.124983 -0.147174 -0.310367 -0.323581 -0.753838 0.234603 0.264314 -0.233163 -0.386127 -0.487652 -0.029040 0.976885 -0.275563 0.102609 -0.371215 0.116642 0.235830 -0.386845 0.508008 -0.728437 -0.457696 -0.231533 -0.224930 0.535189 -0.390174 -0.156649 0.667582 -0.524997 0.449459 0.727824 0.071514 -0.215487 0.519775 -0.144500 0.580732 -0.130484 0.341848 -0.100945 0.657908 -0.430538 -0.050984 -0.183481 0.237882 -0.247104 0.685730 -0.534277 0.008660 0.374894 -0.601654 -0.328680 0.415612 0.222536 0.459596 -0.075129 -0.280021 -0.402865 0.015568 -0.128905 0.130401 0.636455 -0.220071 -0.732708 -0.178515 0.050176 -0.640744 -0.300571 0.355689 -0.055679 0.918725 -0.549723 0.138191 0.274791 -0.058924 -0.770497 -0.405991 -0.316729 -0.238421 -0.245936 0.572527 -0.729781 -0.347956 -0.366096 0.338957 -0.528191 -0.093627 -0.210264 0.637409 0.396073 -0.006805 0.527098 0.296652 0.454705 0.063276 -0.178433 0.195120 0.445409 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -21.169324 25.459445 24.448716 -10.437580 20.814446 16.487948 7.441189 6.344976 -12.021494 28.985264 -34.054509 -9.119259 -12.019825 -15.558579 -7.169026 -28.064929 -3.557215 -11.405382 -4.306053 10.584957 11.620843 -22.198785 -1.412612 -15.066042 -5.432157 -32.015820 -13.481466 -2.010035 30.520750 -4.336005 3.642344 -7.026614 36.254777 6.352959 31.060939 23.957015 6.542111 29.583006 0.894805 9.021376 -14.885524 27.224675 -23.005437 -13.012790 -2.989797 -26.963030 -10.467159 -9.440484 5.416027 -7.539408 4.297698 22.489485 -7.024187 7.040149 -16.245110 15.049625 17.976924 4.386874 41.993531 2.753425 -8.195824 -5.919998 -25.179390 13.704949 -7.760309 10.758916 -2.738312 -10.923867 14.775214 -15.100185 -0.783270 -15.199715 -5.164439 29.063205 6.929643 -25.091361 7.598025 -15.914502 -55.609577 -27.030644 -17.597495 7.089721 15.608395 23.855702 0.848500 0.617400 -1.954500 16.267305 -5.141049 -42.596298 0.970611 35.461455 -15.903579 -6.626398 -16.138898 28.975829 -4.803790 21.149986 -19.566268 1.428523 8.255995 7.388853 3.233900 -41.171560 -3.879246 -39.283140 14.941983 -0.885246 -9.454574 0.933418 14.537508 14.734165 32.169289 34.584880 -33.897557 12.264866 -22.133197 2.466204 5.934920 -1.473790 3.562225 12.771929 -18.146403 5.394501 32.786704 -35.319056 6.154474 7.670686 -21.061165 -38.819362 -8.064429 -35.674172 -25.012401 -5.389983 5.749034 14.231623 6.271013 -26.096370 -4.697911 -11.163918 -3.339466 -23.426868 17.639038 34.330000 -21.144191 -6.883233 -0.783381 0.957757 -19.823728 29.390225 17.649015 12.491189 34.870146 16.025515 -0.543687 8.739484 -19.563783 -7.537023 30.054528 24.294051 -32.855219 23.457009 -19.736098 -2.605698 12.369455 13.142290 21.683460 4.866566 -36.670506 -24.569542 12.884715 -5.915329 34.809347 10.194503 10.522474 3.604045 49.280558 -9.869405 -31.654136 24.076241 25.039248 -19.061486 0.354311 4.800942 -16.903533 -2.712576 25.919105 -20.228936 3.989967 -10.416786 -11.723604 5.422091 -7.852068 -2.360311 2.354081 -34.557298 47.676929 2.744342 27.434074 8.691031 -26.369487 -43.244756 24.717054 -9.721922 -8.568285 -13.395743 -4.603442 -28.610943 -26.866268 6.415148 4.060116 -18.749306 -19.382542 -31.086940 15.660106 9.065031 -5.484536 23.074295 -17.212982 -25.675649 9.256140 -1.035390 25.087910 -5.986031 -17.818727 -9.880260 0.146225 28.106815 -13.254169 40.950667 45.885764 -4.216901 29.097386 -11.356390 -8.840483 2.031343 14.958541 -32.182120 29.513915 -10.620612 10.996975 -4.983983 19.155378 -18.597060 -10.354245 7.822192 -1.596396 1.419556 11.011200 -8.731679 1.851259 -10.136161 -33.341165 1.834710 3.449049 -12.494493 -8.444909 3.523299 14.880373 -24.789008 -7.699574 -22.567248 -1.013447 22.211385 6.511491 -13.742284 8.745439 -11.217947 8.965808 16.172194 -1.859997 -2.121843 14.773935 -27.014590 -18.092108 -2.815996 -10.512948 -18.024477 -37.554329 -8.794222 -24.269454 -28.570801 22.718556 -26.267590 10.688257 -24.864884 -16.731480 -34.657078 -14.309333 11.617762 41.702064 19.499415 -25.053216 1.007098 -6.380071 33.415416 4.080190 5.688417 6.329430 12.427295 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -0.849433 0.176386 0.105359 -0.497032 1.697257 0.017289 -0.098003 1.060217 0.648997 0.571972 -1.497895 -0.939198 -0.437364 -0.837747 0.185308 -0.077111 0.139922 0.509513 -0.932056 -0.499982 0.761864 0.395968 -0.035780 -0.863215 0.104175 -0.056583 -0.870609 -0.092417 -0.218429 0.315604 -0.603340 0.308543 1.345447 0.267260 0.896537 0.741008 0.820043 1.466880 -0.513231 1.706300 0.494994 0.966253 -0.503099 -1.346421 0.640874 -1.176619 -0.599963 -0.505873 0.326292 -1.125784 1.703805 0.710142 0.214132 0.000507 -0.143339 0.221010 0.561832 0.494137 1.077748 0.862593 -1.372713 0.572782 -0.931993 0.728734 -0.614669 1.902990 0.332918 -1.601870 -1.090336 0.377593 1.429368 -1.240378 -1.299107 0.038011 -0.158563 -0.226093 0.857728 -0.053889 0.824931 -0.427202 -1.158012 0.302125 -0.291048 0.804538 -0.372360 -0.421119 -0.708079 -0.293719 0.418103 -0.802227 -0.749805 0.988615 -0.733303 0.986249 -1.335750 -0.762273 -0.409198 0.417671 -0.577331 -0.636154 0.418575 0.667785 0.068884 0.484770 -0.527727 -0.550665 1.230608 0.967751 -0.263835 -0.001422 0.407224 0.249289 0.262210 0.430199 -0.176152 0.687159 -0.968858 0.490680 -0.259555 0.203438 -0.054507 0.057993 0.522909 -0.311075 0.469043 -0.697809 0.914767 0.395900 -1.174895 -0.384469 0.466931 -0.794984 -1.348823 -0.152383 0.684346 0.593814 -0.202813 -0.190998 0.110070 -0.690879 -0.631563 -0.634545 -0.695804 -0.121205 -0.562337 -0.429134 -0.317970 -0.483968 -0.533164 0.805312 0.242014 0.269017 1.154020 0.537140 -0.439028 -1.137170 -0.983472 0.523878 1.690256 0.377164 -1.176051 0.234068 -0.267183 0.785538 0.802235 0.101334 0.024340 0.803688 0.185914 0.372218 -0.947488 -0.471812 1.260730 1.259744 0.863705 -1.100345 0.092327 -0.754926 -0.342571 1.876443 1.224468 -1.268117 -0.381180 0.816309 -0.016605 -0.443503 0.226186 -0.284602 -0.476842 -0.634653 0.315824 0.368996 -1.119575 -0.894700 0.656184 -1.205941 1.252156 0.173490 0.381671 0.051976 -1.639405 -0.484088 1.765735 0.165288 -0.276880 0.014705 -0.240586 -0.088549 -1.279356 0.383277 0.686974 -0.223492 -0.698665 -0.677065 0.392584 1.334280 -0.820228 0.213361 0.113606 -0.365520 0.313005 -1.255435 0.956320 -1.451530 -0.839698 -0.703328 -0.250002 1.041018 -0.536225 -0.255086 1.404500 -0.580730 0.827316 1.810025 0.009200 -0.739632 1.027812 -0.195148 0.933904 -0.438127 0.193715 -0.183660 1.089021 -0.733315 -0.372559 -0.209081 0.552054 -0.449016 1.190404 -0.807528 0.204458 0.191726 -1.219376 -0.104457 0.915248 0.130718 0.460473 -0.206249 -0.140232 -0.888349 0.031317 -0.123905 0.055677 1.060810 -0.213727 -1.318443 -0.346283 -0.017118 -1.192139 -0.309141 0.465300 -0.162628 1.506262 -0.839408 0.238877 0.539756 -0.365124 -1.448389 -0.486208 -0.616702 -0.707649 -0.682528 0.638999 -0.825756 -0.657262 -0.622658 0.461489 -0.518056 -0.536810 -0.096057 1.067635 0.894059 -0.272532 0.665793 0.429084 1.045215 0.294741 -0.414398 0.213039 0.782305 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = -3.029942 1.246916 0.783844 -1.495005 7.210084 -0.240290 1.892984 3.845700 -2.061270 2.904746 -4.757033 -0.694126 -0.855799 -3.455665 0.601744 -0.555651 1.380492 0.735593 -1.812442 0.171264 1.783880 -0.414986 -0.209466 -2.144092 -0.516868 -2.483359 -1.830072 0.543260 2.825095 -0.695781 -1.681344 0.950030 5.823907 -0.272600 4.872312 3.270804 2.884814 3.461554 0.044145 -1.671690 0.938248 2.899841 -2.152920 -3.635027 -0.235577 -3.056529 -3.846083 -1.405800 1.391168 -2.495532 0.799990 2.947374 0.077126 0.862999 -1.686544 2.697111 3.195240 -0.920736 4.943829 1.831142 -3.965214 -0.249884 -2.678001 4.321848 -1.229445 2.623523 -1.693528 -4.699352 -1.266794 1.331919 0.992285 -3.987557 -2.536449 1.891396 1.251947 -2.541407 2.505306 -0.373949 0.843795 -4.822461 -3.283304 1.346845 -1.181130 3.628011 -0.336925 -0.400037 -0.678199 -0.159166 0.274221 -4.669429 -1.142370 4.343737 -3.599448 0.253587 -3.518514 0.873817 -0.111218 1.619644 -2.646982 -4.014656 1.228385 0.290951 0.328797 -2.522470 2.059850 -2.531988 0.505928 1.070147 0.824710 3.238345 1.050318 1.935495 3.013865 2.922575 -2.306012 0.675246 -3.704359 2.081180 -2.351370 0.004722 -0.893239 1.046395 2.536659 1.388229 3.574464 -4.695144 2.435991 1.672176 -2.049002 -3.026388 0.386912 -3.169169 -4.118088 -0.668659 2.144244 1.149511 0.457747 -1.896750 1.248465 -0.980808 -2.136367 -1.284401 -0.648710 2.141896 -5.233687 -0.816539 -0.401673 -0.412214 -1.956557 3.623468 2.433965 2.010499 4.686099 2.338783 -1.882766 1.425436 -4.838830 1.390058 6.134807 0.754493 -4.058037 2.920624 -3.713777 0.650367 2.510150 2.004078 1.512106 0.493677 -2.588022 -0.705437 1.302225 -0.255974 5.134924 1.706203 1.700757 -3.541369 2.824963 -2.626856 -2.166532 5.882980 2.996166 -5.807128 1.632836 2.812042 -1.101612 -0.538338 2.027858 -4.236056 -2.167048 -3.113623 0.688334 2.025485 -3.101736 -1.066184 1.855754 -4.072739 4.691714 0.348199 -0.645343 0.332455 -3.436241 -1.913491 6.648812 0.472866 0.040222 -1.023697 -1.822224 -1.983918 -4.999980 0.273369 0.582437 -1.702587 -1.618053 -3.806366 0.205373 4.126518 -1.588736 2.561147 -4.808895 0.036549 1.872379 0.005144 2.175381 -3.560533 -2.490989 -1.428746 -1.530630 1.680018 -4.103914 2.171248 4.581966 -2.022502 3.686537 0.773676 -2.724080 -0.190285 2.112101 -3.252219 4.466977 -0.096955 3.991676 0.508518 3.262845 -3.383076 -1.205302 -1.194305 0.096138 -2.472200 3.150532 -3.341852 0.182597 1.112144 -2.871657 -3.129771 1.483355 0.634806 0.491751 -0.287901 -0.909654 -3.395757 -0.494734 -2.872223 1.166879 2.911881 -1.922067 -3.715734 1.046302 0.911772 -2.010913 -0.422761 0.591512 0.419316 3.962333 -3.851832 -0.310017 1.186544 1.292560 -4.397940 -5.221688 -0.292731 -3.270882 -2.516040 2.416548 -4.429515 -1.968418 -2.642153 0.149176 -4.749377 -2.216284 1.871656 5.847071 1.280531 -2.359309 1.633132 0.098413 2.850103 -0.062850 1.292263 0.276629 1.447730 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.624828 -0.075319 -0.446286 -0.286000 1.407429 0.005835 -0.125909 0.790856 0.253544 0.504850 -0.885216 -0.511915 -0.364345 -0.822022 0.191287 0.437683 0.283372 0.350250 -0.600092 -0.408053 0.566568 0.044864 0.150105 -0.509429 0.080006 -0.184060 -0.379030 0.018823 0.231652 0.163106 -0.854833 0.190485 0.927037 0.096784 0.511296 0.380661 0.759139 0.970075 -0.129585 0.376641 0.269907 0.696031 -0.351706 -1.109391 0.570581 -0.874173 -0.513211 -0.360685 0.423498 -0.712923 1.029128 0.565662 0.095558 -0.098206 -0.302669 0.138831 0.605496 0.227611 0.887471 0.524842 -0.752467 -0.186699 -0.522634 0.578800 -0.508482 1.008389 0.171460 -1.117591 -0.813787 0.369856 0.620602 -0.790747 -0.841273 0.038218 0.078502 -0.234147 0.588089 0.035725 0.984422 -0.523154 -0.960575 0.097687 -0.616078 0.750987 -0.238124 -0.196211 -0.362158 -0.245388 0.349766 -0.649120 -0.406650 0.608727 -0.477644 0.746374 -0.637202 -0.304860 -0.291724 0.144182 -0.547057 -0.468910 0.170832 0.420507 0.154674 0.157573 -0.020741 -0.407244 0.841228 0.386304 0.095491 0.117428 0.597878 -0.146101 -0.010245 0.354063 -0.134734 0.160743 -0.761356 0.267358 -0.039698 0.238189 -0.214142 0.175016 0.641210 -0.358873 0.422783 -0.774439 0.723796 0.299321 -0.574974 -0.315148 0.361473 -0.415709 -0.816676 -0.007477 0.630061 0.077878 -0.208489 -0.123172 0.292269 -0.311834 -0.991768 -0.099896 -0.545737 0.168604 -0.742714 -0.159492 -0.290339 -0.537768 -0.198503 0.412812 0.163800 0.323104 0.816616 0.572218 -0.481637 -0.112698 -0.823129 0.645127 1.368293 0.240242 -0.886974 0.149208 -0.459146 0.591985 0.613554 0.110179 0.233230 0.484273 0.263836 0.514143 -0.240445 -0.086385 0.920661 0.619932 0.833799 -0.925839 -0.078896 -0.296899 0.061091 1.328411 0.598245 -1.141909 0.255487 0.653182 -0.108534 0.071527 0.003505 -0.281093 -0.241569 -0.768610 0.413701 0.531368 -0.979708 -0.631257 0.247791 -0.794117 0.882411 0.080518 0.131706 0.261107 -1.101522 0.340239 1.299832 0.144177 -0.121548 -0.162427 -0.401626 -0.437573 -0.960161 0.272174 0.290205 -0.344850 -0.421915 -0.610107 -0.075661 1.207906 -0.288037 0.109163 -0.595063 0.238362 0.293177 -0.366194 0.601053 -0.852778 -0.541093 -0.192221 -0.276417 0.632791 -0.526209 -0.196391 0.721068 -0.684801 0.524452 0.812336 0.218304 -0.189733 0.591867 -0.140555 0.705722 -0.136616 0.569327 -0.160180 0.815848 -0.466595 0.013165 -0.255628 0.330739 -0.305456 0.817988 -0.724108 -0.035863 0.541039 -0.648206 -0.508761 0.500008 0.281410 0.609131 -0.081080 -0.426773 -0.414772 0.013567 -0.108806 0.181076 0.739657 -0.302731 -0.901142 -0.258129 0.100664 -0.732480 -0.275796 0.432850 -0.049178 1.107313 -0.669047 0.175321 0.298828 -0.035473 -0.894646 -0.511632 -0.350280 -0.198100 -0.255266 0.839366 -0.948542 -0.441416 -0.441321 0.419775 -0.648174 0.001722 -0.313407 0.771461 0.450038 0.012801 0.658360 0.382188 0.501893 0.002907 -0.186536 0.258028 0.489970 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -4.346743 1.430667 1.494451 -2.487936 7.048789 0.044337 1.086005 3.917072 -0.883507 4.415885 -7.097771 -2.902902 -2.843329 -6.411439 -0.154091 -2.845716 2.023264 -0.022001 -2.367763 0.847766 2.971966 -1.581593 0.048816 -3.493954 -0.536149 -4.765252 -2.670767 0.143485 3.222450 -1.277277 0.043539 0.687080 9.502491 1.827877 7.227768 4.673000 2.479789 6.584126 0.597306 0.843677 -0.593369 5.496605 -3.366299 -4.936550 -0.318032 -4.642603 -3.559798 -2.472207 1.776480 -2.614433 1.137166 4.361445 -0.052862 1.515872 -4.003838 1.475334 4.087383 0.052490 7.551537 2.183291 -4.096901 0.209700 -4.137703 4.036017 -3.155925 2.748594 0.129545 -3.351261 0.111622 -0.052001 1.459253 -3.889380 -3.716708 2.880482 2.247865 -4.079363 3.048015 -0.995626 -3.519183 -5.571357 -4.632401 1.711798 -0.052597 5.282890 -0.628034 -0.417215 0.863224 0.750074 0.459564 -7.002482 -0.852075 5.477281 -4.271057 -1.107261 -4.302983 4.237415 -1.575895 2.808716 -3.833773 -3.387702 1.793992 0.197595 0.641059 -2.761793 -0.259329 -4.891646 2.903113 0.835879 -0.850060 2.683795 3.673806 2.538423 4.780271 4.808950 -4.446827 1.692408 -5.714606 2.140982 -1.573296 -0.433343 -0.457135 1.817966 1.242254 1.127396 5.128794 -6.721965 3.008107 3.338679 -3.346726 -4.755999 -0.049399 -5.307303 -6.012124 -0.869024 3.103315 2.227333 1.199346 -3.523477 0.688694 -1.578086 -2.094029 -2.423282 0.087928 3.886406 -4.900074 -1.498784 -0.597371 -0.834872 -3.086692 4.920853 2.395717 2.154647 7.031334 2.533269 -3.229856 0.187663 -5.659952 0.531212 8.941557 0.885641 -6.116448 4.069846 -3.754331 0.811824 2.695084 3.198542 3.656742 -0.823470 -4.288854 -1.743446 0.926436 -1.140701 7.285061 2.026713 2.529665 -3.124068 5.977123 -0.873291 -2.909509 7.777240 4.210632 -5.994586 0.982459 3.156268 -3.124026 -1.193443 3.118704 -3.597297 -1.214246 -4.633224 1.042803 1.800516 -3.691054 -1.028279 1.187268 -6.483401 7.106770 0.554294 1.520629 0.947683 -5.761964 -5.619589 8.470573 -0.993550 -0.446603 -1.912260 -2.579801 -2.999269 -7.363835 1.238321 0.311238 -2.650762 -1.140610 -5.375954 1.983068 4.893993 -1.995222 3.771775 -4.833035 -1.891091 2.457422 -0.084853 3.301652 -3.727408 -3.905890 -0.682709 -1.084640 4.111052 -4.295972 3.988439 7.428462 -2.347587 5.337263 0.551034 -2.393627 -0.170095 3.351654 -5.502095 6.488573 -1.982894 3.195227 -0.215288 4.512625 -3.604898 -2.158160 -0.551243 -0.274154 -2.257821 3.040381 -4.075132 0.404118 0.707061 -4.465956 -2.387753 1.946323 -0.612240 0.355214 0.028674 0.090266 -5.287145 0.071871 -2.978713 1.917777 4.825810 0.275585 -4.672992 1.193516 1.276904 -0.992190 0.965914 0.340404 -0.268713 5.340937 -5.504629 -1.340280 0.977285 0.816586 -3.966248 -7.413227 -0.036864 -4.431742 -3.613627 4.464488 -5.910707 -1.280713 -4.171639 -0.329494 -5.254723 -1.915304 1.766629 7.737594 3.277124 -4.232204 0.934659 -0.003386 4.456266 0.406390 0.664081 1.402128 3.044140 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = -0.333222 0.052162 0.018993 -0.164855 0.783797 -0.304855 -0.014641 0.568368 0.349579 0.224170 -0.507032 -0.224686 -0.152987 -0.447340 0.194513 0.021531 0.220223 0.411750 -0.278025 -0.258216 0.296372 0.241189 -0.062323 -0.297845 0.012768 -0.293624 -0.194377 0.036245 -0.145106 0.120014 -0.330952 0.384681 0.674102 0.077742 0.468359 0.412171 0.462892 0.569059 0.065529 0.480064 0.332129 0.264222 -0.110728 -0.658688 0.242760 -0.293758 -0.283790 -0.237126 0.167881 -0.441671 0.674043 0.283838 0.121751 0.047778 -0.201400 0.089536 0.145502 0.212900 0.381224 0.404411 -0.567962 0.109389 -0.275365 0.480992 -0.384717 0.503595 0.021829 -0.698515 -0.399033 0.395294 0.454415 -0.407899 -0.430070 -0.107934 -0.039892 -0.127831 0.329638 0.138290 0.532738 -0.082914 -0.518931 0.196978 -0.206711 0.381428 -0.087760 -0.127261 -0.402852 -0.182668 0.232890 -0.251541 -0.291053 0.410524 -0.336592 0.383884 -0.418377 -0.224412 0.109554 -0.013879 -0.018169 -0.480574 0.195162 0.038435 0.070529 0.320247 -0.186573 -0.110803 0.428103 0.294957 -0.059282 0.222789 0.025740 0.120043 0.049429 0.050307 0.077502 0.153120 -0.612753 0.373299 -0.149425 -0.023645 -0.070916 -0.026764 0.325043 -0.040983 0.134841 -0.363239 0.432947 0.209699 -0.234173 -0.049425 0.237845 -0.109152 -0.449369 -0.154065 0.435808 0.189018 -0.088954 0.060618 0.127177 -0.168782 -0.232222 -0.281996 -0.409547 0.045027 -0.327156 -0.078536 -0.160773 -0.257966 -0.191189 0.179075 0.059653 0.203082 0.436985 0.300404 -0.259088 -0.302250 -0.592103 0.217642 0.673370 0.038268 -0.401467 0.179220 -0.175026 0.194993 0.287450 0.169086 -0.040370 0.269892 0.096740 0.141641 -0.387373 -0.130841 0.497910 0.418253 0.272447 -0.524199 -0.087332 -0.255052 -0.056647 0.814314 0.369405 -0.633562 -0.047950 0.524582 -0.129099 -0.267412 0.074592 -0.276244 -0.191582 -0.378004 0.252778 0.293778 -0.610741 -0.256732 0.295206 -0.408972 0.311998 0.055159 -0.018727 -0.003193 -0.601391 -0.021100 0.908470 0.101356 0.064751 -0.017538 -0.299573 -0.036759 -0.596958 0.074095 0.255243 -0.079796 -0.145775 -0.253387 -0.030411 0.680649 -0.327639 0.087673 -0.126741 0.051078 0.231438 -0.276125 0.146606 -0.598720 -0.289691 -0.088362 -0.118635 0.227251 -0.260730 -0.111953 0.418090 -0.294529 0.307186 0.681715 -0.115778 -0.129890 0.368807 -0.151412 0.417246 -0.139887 0.095163 0.141598 0.373278 -0.371993 -0.163625 -0.171473 0.125993 -0.377502 0.445305 -0.449973 0.044890 0.245085 -0.333590 -0.218274 0.318530 0.316157 0.271622 -0.120990 -0.115092 -0.255584 0.036790 -0.204207 0.183311 0.375768 -0.126843 -0.495559 0.013057 0.227102 -0.635587 -0.314783 0.209676 0.022201 0.631583 -0.375668 0.216966 0.271652 0.053088 -0.628445 -0.357992 -0.062172 -0.310491 -0.204527 0.055034 -0.552970 -0.457756 -0.174703 0.376636 -0.397917 -0.097388 -0.006605 0.442640 0.204913 0.009505 0.322495 0.148072 0.178709 0.071605 -0.102765 0.048699 0.388538 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -2.210076 1.541240 0.904073 -1.155108 3.625289 -0.000987 1.137830 1.205165 -1.069963 2.376039 -3.404323 -1.099055 -1.121871 -3.117674 0.060570 -1.642798 0.731837 0.166624 -0.701438 0.639391 1.330320 -1.622386 0.013243 -1.668016 -0.294987 -3.245362 -1.060731 0.201522 2.359532 -0.674636 0.307920 0.289356 4.185120 0.353542 3.119165 2.394593 1.007250 2.862818 0.339945 -0.518395 -0.267636 2.441104 -1.638674 -2.444716 -0.218327 -1.917970 -1.996381 -1.164462 0.944546 -1.488881 -0.521222 2.280422 -0.291116 0.429977 -2.025374 1.504848 2.805022 -0.092397 3.773398 0.893395 -1.344540 -0.358937 -2.056444 2.235655 -1.423912 0.660566 -0.488867 -2.214396 0.261359 0.247847 -0.657135 -1.208800 -1.281819 1.700544 1.335845 -2.266855 1.113233 -0.653984 -3.108881 -2.911721 -2.167182 0.739594 0.287408 2.766445 -0.004962 -0.084343 0.949500 0.463904 0.253044 -3.556267 -0.443745 2.914454 -1.872475 -0.744594 -1.145402 2.393675 0.192911 1.046434 -1.788292 -1.709586 0.679447 -0.167491 0.431452 -2.142487 0.002507 -2.706579 0.718125 0.124978 -0.114502 1.817504 1.634958 1.275601 1.947936 2.375959 -3.045066 0.406397 -2.712052 1.068504 -0.636722 -0.133198 -0.137447 0.752025 0.442761 0.730215 2.696877 -3.629691 1.551550 1.374089 -1.073824 -2.749279 -0.129241 -2.431491 -2.502180 -0.537186 1.374639 0.786430 0.586015 -1.506490 0.353347 -0.512653 -0.839097 -0.796505 0.169916 2.910526 -3.163363 -0.349158 -0.323514 -0.374645 -1.462509 2.158152 1.372790 1.285748 3.392060 1.669328 -1.297601 1.618906 -2.760121 0.412231 4.398399 1.078881 -2.868853 2.127139 -2.150385 0.100141 1.372593 1.359490 1.821959 0.021810 -2.692261 -1.312583 1.165131 -0.637844 3.474036 0.754835 0.963483 -1.942992 3.653875 -0.251132 -1.792732 3.878730 2.058981 -3.302677 1.548008 1.792770 -2.673102 -0.482953 1.692745 -2.204173 -0.521430 -2.199818 0.231377 1.047662 -1.822142 -0.612321 0.233470 -3.147433 3.571927 0.327107 0.856253 0.880395 -2.278783 -3.155280 3.862765 -0.067496 -0.190239 -1.350816 -1.278469 -2.334839 -3.454204 0.484850 -0.031767 -1.842233 -0.977752 -2.830121 0.454109 2.472503 -0.863679 1.985287 -3.245810 -0.592548 1.221614 1.008159 1.488726 -1.139500 -1.840295 -0.104974 -0.618441 1.378466 -1.901352 2.470605 3.491256 -1.321346 2.639472 -0.810673 -1.896880 0.688453 1.564183 -2.734937 3.124477 -0.647843 2.287910 0.156860 2.203138 -2.120561 -0.770679 0.036558 -0.946001 -1.187123 1.415756 -2.118168 0.024342 0.765957 -2.255486 -1.713846 0.863981 -0.107384 0.740844 -0.021713 0.205571 -2.404037 -0.008966 -1.358664 0.700217 2.187701 0.191526 -2.097746 0.651153 0.626576 -0.094989 -0.431273 0.315481 0.034768 2.248891 -2.814816 -0.336278 0.198258 0.294557 -2.145345 -3.948993 0.359244 -2.529742 -2.196771 2.232207 -3.415463 0.059758 -2.096265 -0.271887 -3.314242 -1.060760 0.867919 4.001397 0.924111 -1.913460 0.960005 -0.217216 2.120006 -0.057443 0.724027 0.395565 1.442253 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -8.885240 6.349056 5.843526 -3.797605 12.387492 0.069895 5.604851 3.959351 -3.492597 8.726423 -13.470063 -6.089011 -5.092566 -11.096249 -0.213870 -8.654712 2.931516 0.550346 -2.611702 2.961295 5.565447 -5.962499 -0.948524 -6.514759 -0.879287 -11.279006 -5.366739 0.239688 9.165286 -3.427273 2.145091 1.338111 17.539273 2.615054 14.872326 10.343235 3.446057 11.948550 0.638017 -0.289568 -2.535885 10.751457 -7.169589 -9.774254 -1.032966 -7.913930 -6.726113 -5.018218 3.113210 -4.599038 -0.594540 8.853975 -1.487557 3.456450 -7.090789 4.596757 10.340896 1.198353 15.108585 3.562263 -5.552532 1.497936 -8.515380 7.373283 -4.707074 3.440436 -2.082494 -8.499636 2.035773 -1.472079 -0.766208 -6.587557 -5.237887 8.066972 4.778321 -8.555422 4.823087 -2.693224 -13.825711 -11.885318 -9.627666 2.553178 1.882335 10.670966 -0.686703 -0.915955 2.433990 2.257443 0.364484 -14.729660 -1.186866 12.067575 -8.156546 -2.680205 -4.395464 8.862007 -0.466891 6.373862 -7.684420 -6.622231 3.081761 -0.830708 1.392013 -6.740260 -0.627914 -10.150816 2.827770 0.110691 -1.532992 6.654040 7.542403 6.151328 10.154993 10.264957 -12.545201 2.564716 -9.963953 4.904399 -3.462347 -0.722589 1.042262 3.872446 -0.115726 2.698082 11.082801 -14.058543 4.412931 5.488599 -4.816977 -11.343381 -1.018920 -11.906180 -10.895446 -3.244488 5.455508 4.619824 2.263623 -7.705827 -0.079418 -2.566544 -1.372755 -4.716582 1.405957 10.217142 -11.207390 -2.469565 -1.408103 -1.609664 -6.783839 9.577718 5.453704 5.462735 13.211715 6.766021 -5.387378 3.930461 -10.661325 -0.101849 16.198075 3.230041 -11.848140 8.551029 -8.040616 0.143158 6.281117 5.902394 7.747892 -1.094337 -10.903203 -5.551606 4.111955 -2.390511 13.908897 3.508051 3.537898 -6.231734 15.222361 -0.957330 -9.963984 15.825526 7.362437 -12.515255 4.036905 5.215531 -9.477290 -2.663833 7.245985 -9.012162 -1.926995 -8.602275 0.253383 3.107795 -6.581364 -1.270069 2.784316 -13.268206 14.575202 1.250181 3.999196 3.037693 -10.177219 -14.778387 16.449240 -0.683016 -1.149197 -5.271193 -4.462065 -6.582816 -13.111725 2.273878 -0.679079 -6.098874 -4.642405 -11.307392 4.087261 9.155869 -3.253223 8.832442 -9.495154 -4.706221 4.317685 1.827021 6.472791 -5.990394 -8.029757 -1.450279 -1.818775 6.554008 -6.701303 10.330008 15.727359 -4.524437 9.435621 -1.676640 -8.207634 1.658337 6.085804 -11.902200 12.088825 -3.848571 8.030008 -0.094887 8.470697 -8.890827 -4.664586 0.988924 -1.538113 -4.658458 5.565881 -6.595600 1.140786 0.805654 -10.300236 -4.849661 2.880662 -2.066221 1.044246 0.339803 1.568744 -11.067416 0.228637 -5.659825 2.053196 9.363684 1.749001 -8.506093 3.072614 0.224377 0.416694 -0.276765 0.493604 -0.812595 8.532258 -11.012850 -3.464808 0.792440 0.190291 -7.324094 -16.082605 0.653146 -11.607066 -8.639217 8.545690 -11.536012 1.369201 -8.833875 -2.699241 -12.726918 -4.827348 4.075040 16.234923 5.584230 -8.674338 2.771075 -1.050607 10.274939 0.633897 2.496229 1.435663 6.434035 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -0.371494 -0.175915 -0.166205 -0.116824 0.723852 -0.269287 -0.095015 0.481967 0.530637 0.162636 -0.496670 -0.490078 -0.324402 -0.450429 0.198307 0.148117 0.269112 0.398860 -0.415349 -0.379143 0.412645 0.262041 -0.016530 -0.341780 0.112710 -0.037106 -0.249009 -0.021397 -0.150587 0.152971 -0.548065 0.355876 0.637512 0.137528 0.382556 0.316940 0.517046 0.708971 -0.126673 0.586615 0.273438 0.439459 -0.130321 -0.771505 0.418820 -0.444317 -0.182848 -0.232910 0.254103 -0.396803 0.884320 0.289891 0.134592 0.023044 -0.158142 -0.029466 0.194288 0.407465 0.404099 0.455700 -0.501598 0.166619 -0.322856 0.307756 -0.427590 0.727057 0.125867 -0.732143 -0.601395 0.279356 0.567742 -0.508097 -0.579955 -0.167896 -0.059766 -0.025726 0.422874 0.181723 0.840270 -0.070747 -0.719716 0.058087 -0.352599 0.410304 -0.230031 -0.204737 -0.403235 -0.251263 0.321711 -0.208049 -0.335692 0.299078 -0.326259 0.580252 -0.373083 -0.413173 -0.111135 0.043179 -0.183402 -0.375840 0.150574 0.157264 0.093451 0.499528 -0.218084 -0.014296 0.627838 0.311413 -0.047390 0.025059 0.279475 -0.055075 -0.090841 0.024320 0.150675 0.154850 -0.544932 0.283806 -0.080653 0.088278 -0.027934 0.051966 0.369770 -0.290798 0.095138 -0.336765 0.446276 0.189426 -0.325334 0.032168 0.325535 -0.157510 -0.537152 -0.143231 0.531140 0.174849 -0.195784 0.040433 0.178140 -0.205605 -0.373325 -0.080877 -0.515036 -0.159877 -0.218190 -0.150084 -0.257684 -0.438005 -0.139197 0.135414 -0.060557 0.181231 0.389967 0.350293 -0.371294 -0.462997 -0.539677 0.332105 0.713178 -0.080170 -0.476864 0.005818 -0.113982 0.413233 0.400832 0.083676 0.017216 0.337576 0.406748 0.439258 -0.500844 -0.115451 0.497872 0.453898 0.466516 -0.573067 -0.307030 -0.247285 0.031334 0.859807 0.383832 -0.670273 -0.073619 0.449838 -0.036746 -0.196449 -0.071195 -0.080228 -0.099697 -0.511897 0.362247 0.317619 -0.706198 -0.335673 0.318130 -0.448354 0.328535 0.041914 0.049646 0.098116 -0.798572 0.163215 0.917354 0.085424 -0.008476 -0.053210 -0.300052 -0.027848 -0.608711 0.190210 0.176453 -0.040746 -0.238932 -0.248826 0.019202 0.823715 -0.281465 -0.004745 0.017200 0.107102 0.167511 -0.405090 0.317676 -0.554872 -0.369113 -0.094092 -0.148189 0.391694 -0.217217 -0.362864 0.432451 -0.413458 0.204972 0.819064 0.051818 -0.229021 0.429791 -0.030225 0.351590 -0.170919 0.061274 -0.058075 0.450554 -0.339178 -0.125361 -0.137884 0.311196 -0.311301 0.504304 -0.401550 0.064149 0.256460 -0.420751 -0.148931 0.375151 0.255937 0.386792 -0.087810 -0.177891 -0.267975 0.098043 -0.037836 0.125546 0.487816 -0.062277 -0.561892 -0.156117 0.075964 -0.679490 -0.288194 0.285637 -0.103254 0.759272 -0.345237 0.150851 0.283091 -0.069352 -0.518103 -0.235372 -0.249655 -0.198764 -0.095549 0.337629 -0.447744 -0.373823 -0.178752 0.445617 -0.253962 -0.001919 -0.232007 0.322545 0.366893 0.115261 0.425729 0.298019 0.273160 0.070818 -0.276842 0.119620 0.414490 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = -0.494431 -0.331219 -0.081838 -0.500954 2.006605 -0.315315 -0.281580 1.378267 1.034028 0.407329 -1.046852 -0.461039 -0.021489 -0.688347 0.255203 -0.025712 0.462576 0.386204 -0.941834 -0.628283 0.266876 0.791289 0.090886 -0.441423 -0.099256 -0.247584 -0.520823 0.240641 -0.508888 0.236983 -0.681432 0.571747 1.145806 0.054234 0.871137 0.415465 1.108861 0.765923 -0.206058 1.192122 1.101490 0.029933 0.033686 -0.917109 0.167849 -0.561101 -1.215134 -0.201060 0.215074 -1.175450 1.128737 0.535579 0.329616 0.047041 -0.045045 0.378612 -0.025040 0.074558 0.593626 0.704022 -1.845924 -0.011030 -0.560664 0.938344 -0.441083 1.214099 -0.148971 -1.459121 -1.153767 1.226785 0.683503 -0.876574 -0.872170 -0.322115 0.246951 -0.111938 0.716207 0.265080 1.788916 -0.025760 -0.390990 0.623624 -0.275386 0.377425 0.020913 0.003252 -0.344243 -0.509000 0.116770 -0.535967 -0.389626 0.815249 -0.988040 0.698354 -1.353470 -0.726690 -0.156341 -0.101846 -0.226686 -1.243750 0.338106 0.133327 -0.105853 0.288175 -0.294851 -0.388864 0.915587 0.936590 0.137760 0.233890 -0.363252 0.128512 0.132744 0.158807 0.035461 0.645710 -0.938143 0.599242 -0.586422 -0.117754 -0.547701 -0.238858 0.941556 0.573711 0.236429 -0.567566 1.049451 0.488601 -0.803046 -0.005165 0.275209 -0.184724 -0.831245 0.114893 0.593063 0.151093 0.135513 0.145288 0.342414 -0.490992 -0.469128 -0.303140 -0.716330 -0.495730 -0.381502 -0.089230 0.074777 -0.121112 -0.444259 0.620161 0.480124 0.082306 0.952616 0.022083 -0.453861 -0.611091 -1.061722 0.587774 1.388122 -0.242901 -0.744017 0.548556 -0.600809 0.557055 0.230760 0.303766 -0.274174 0.339322 0.273970 0.546927 -0.712333 -0.006707 0.872352 0.753805 0.410527 -1.232312 -0.574014 -1.143268 0.416251 1.480516 1.073133 -1.429959 -0.327914 1.194463 -0.039861 -0.342053 0.244880 -0.657697 -0.559812 -0.622788 0.579005 0.469718 -0.957021 -0.451771 0.802359 -0.675368 0.505330 0.148560 -0.284310 -0.322948 -0.938074 0.020411 1.895419 0.062172 0.246794 0.500395 -0.516011 0.188389 -1.191237 -0.292460 0.725967 -0.192199 0.155051 -0.277120 -0.088824 1.235079 -0.728711 0.381669 -0.393073 0.344297 0.503430 -0.851816 0.211396 -0.885642 -0.466417 -0.538683 -0.584780 0.244597 -1.056095 -0.560573 0.336317 -0.228426 1.175706 0.780120 -0.725156 -0.486558 0.404143 -0.055515 1.040869 0.022239 0.298259 0.403838 0.844884 -0.604636 -0.167357 -0.723803 -0.130615 -0.929753 1.143651 -1.177181 0.033035 0.554097 -0.283197 -0.783281 0.639977 0.705193 0.253627 -0.289068 -0.317173 -0.522153 -0.135508 -0.553233 0.741998 0.272644 -0.668645 -0.867661 -0.023160 0.894891 -1.327379 -0.561067 0.420144 0.134309 1.359870 -0.644113 0.413227 0.875569 0.297533 -1.382748 -0.499828 -0.262853 -0.699931 -0.112218 -0.462384 -1.120195 -1.338397 -0.194876 0.704424 -0.205540 -0.308929 0.478192 1.192981 0.518931 -0.347533 0.479073 0.267742 -0.064266 0.088060 0.079955 0.280043 0.293040 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.498198 -0.009282 -0.926227 -0.314267 1.480837 0.074818 -0.223089 0.613288 -0.056486 0.538372 -0.779978 -0.193093 -0.107384 -0.985592 0.218786 0.925636 0.317392 0.205530 -0.372098 -0.327119 0.353986 -0.271993 0.281549 -0.416708 0.025728 -0.337587 -0.159462 0.125026 0.446640 -0.031631 -0.987390 0.110979 0.670389 -0.038445 0.188364 0.224012 0.626965 0.646667 0.232345 -0.402067 0.339360 0.397661 -0.241942 -0.918131 0.443421 -0.691038 -0.620906 -0.305761 0.396750 -0.547488 0.673075 0.557931 0.057241 -0.293114 -0.578576 0.198217 0.767259 -0.089457 0.850031 0.371301 -0.484921 -0.617447 -0.238612 0.639632 -0.498159 0.496910 0.149870 -0.911707 -0.639205 0.642042 0.245805 -0.573283 -0.730490 -0.023838 0.175783 -0.352878 0.398134 0.020772 0.987588 -0.714596 -0.727837 0.191629 -0.703052 0.785740 0.020711 -0.034218 -0.148998 -0.214654 0.341129 -0.601008 -0.309971 0.378843 -0.296066 0.541584 -0.254372 0.151212 -0.093116 -0.155633 -0.497815 -0.463020 0.080417 0.285991 0.154593 -0.103523 0.369094 -0.539134 0.646712 0.221555 0.248407 0.194118 0.778162 -0.312832 -0.131577 0.288208 -0.189078 -0.310999 -0.718507 0.069315 0.195316 0.137076 -0.432043 0.089078 0.760568 -0.335517 0.418297 -0.870051 0.781222 0.348686 -0.330024 -0.350381 0.252213 -0.143288 -0.556693 0.218687 0.475027 -0.216115 -0.048409 0.082541 0.359264 -0.172247 -1.291905 0.236036 -0.458595 0.721681 -0.973925 0.055609 -0.156902 -0.437446 -0.074820 0.249138 0.235729 0.308073 0.791841 0.482293 -0.476722 0.499636 -0.763521 0.817925 1.439319 0.424271 -0.748137 0.211621 -0.589402 0.467343 0.390161 0.116897 0.252613 0.171971 0.086611 0.456212 0.238728 -0.013367 0.770753 0.124583 0.822778 -0.829761 0.072287 0.143321 0.369083 1.143083 0.294425 -1.073831 0.719814 0.877519 -0.172293 0.422851 0.053385 -0.358344 -0.232415 -0.755885 0.416731 0.568418 -0.939256 -0.591660 -0.173021 -0.592483 0.787123 0.144434 -0.030224 0.329993 -0.675182 0.803678 1.080887 0.146106 0.031823 -0.152771 -0.456833 -0.710027 -0.869477 0.114899 0.261321 -0.582628 -0.124689 -0.596486 -0.423567 1.187057 -0.186961 0.050660 -1.149164 0.660620 0.342285 0.203432 0.322915 -0.462999 -0.365675 0.198803 -0.290002 0.257457 -0.649412 -0.010032 0.273511 -0.706894 0.494097 0.328112 0.515756 0.212380 0.372854 -0.038922 0.693911 0.082177 0.930801 0.026274 0.789921 -0.340172 0.260717 -0.342470 0.025127 -0.296952 0.666652 -0.922453 -0.213417 0.934521 -0.152791 -0.983601 0.389828 0.441026 0.779577 -0.149665 -0.672858 -0.011014 -0.016163 -0.049858 0.406055 0.474070 -0.412802 -0.661002 -0.253449 0.497714 -0.450795 -0.159962 0.478863 0.080506 0.987925 -0.649629 0.364356 0.178224 0.320567 -0.802858 -0.552771 -0.070850 0.118195 -0.038734 0.907579 -1.311373 -0.497497 -0.357097 0.411863 -0.723929 0.396289 -0.354930 0.751249 0.069550 0.023172 0.605029 0.298787 0.036434 -0.216681 0.008949 0.228618 0.269113 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = -0.446446 0.250554 -0.199346 -0.315817 1.013907 -0.124721 -0.063445 0.475767 0.304384 0.339225 -0.810280 -0.337545 -0.128016 -0.748731 0.191175 0.227174 0.217198 0.395199 -0.276606 -0.192544 0.360327 -0.064566 0.053742 -0.482358 0.033470 -0.332139 -0.264109 0.028640 -0.023035 0.141863 -0.438173 0.281348 0.719321 0.189578 0.443847 0.438756 0.367562 0.784281 0.177542 0.400617 0.334360 0.369362 -0.174065 -0.941999 0.404911 -0.519145 -0.360085 -0.467922 0.181158 -0.623439 0.863745 0.429817 0.115077 -0.131046 -0.473197 -0.019119 0.537149 0.281840 0.614354 0.456435 -0.532212 0.025588 -0.291850 0.280735 -0.465429 0.567558 0.261400 -0.827697 -0.413513 0.514142 0.569512 -0.511678 -0.662577 -0.103660 -0.000326 -0.223411 0.375178 0.036803 0.351052 -0.287109 -0.595329 0.227038 -0.328492 0.618161 -0.042376 -0.126393 -0.429218 -0.202571 0.341458 -0.394382 -0.401979 0.455986 -0.221812 0.469789 -0.259870 0.076607 0.108666 -0.069543 -0.232415 -0.410958 0.215929 0.191817 0.086683 0.367127 -0.287768 -0.420286 0.699445 0.408189 -0.140482 0.164385 0.420648 0.062735 0.055542 0.131781 -0.205522 0.128497 -0.732208 0.247107 0.020539 0.002350 -0.138429 -0.018437 0.322338 -0.209884 0.203410 -0.552692 0.673713 0.391144 -0.338266 -0.214116 0.287252 -0.187989 -0.563690 -0.022597 0.427123 0.150453 -0.033000 0.095412 0.028069 -0.299938 -0.527492 -0.241329 -0.433996 0.526079 -0.497831 -0.046717 -0.158678 -0.360380 -0.213335 0.201306 0.096069 0.183894 0.644515 0.376588 -0.359333 -0.195436 -0.622384 0.420167 1.123174 0.303024 -0.597604 0.180802 -0.147316 0.319080 0.350184 0.095156 0.076361 0.206303 -0.051665 0.111007 -0.301702 -0.269031 0.618720 0.469073 0.532251 -0.715468 0.245459 0.033257 0.029064 1.078488 0.359585 -0.737702 0.087518 0.757259 -0.338206 -0.073411 0.093802 -0.203012 -0.173461 -0.467512 0.275739 0.283968 -0.781472 -0.559498 0.003866 -0.594981 0.582867 0.152185 0.138197 0.009491 -0.675864 0.164116 1.128384 0.111455 -0.018386 0.001275 -0.298296 -0.217727 -0.769719 0.109404 0.357912 -0.341776 -0.189868 -0.385231 -0.062637 0.876114 -0.445429 0.006320 -0.232932 0.114659 0.276239 -0.196780 0.212254 -0.727330 -0.397416 0.031694 -0.102363 0.320511 -0.246469 0.046432 0.525946 -0.419048 0.339037 0.794534 0.282912 0.048169 0.518443 -0.090654 0.566998 -0.242341 0.493980 0.101485 0.616455 -0.344068 -0.081136 -0.175833 0.073198 -0.340996 0.642722 -0.691102 -0.009520 0.563088 -0.303189 -0.448033 0.481220 0.360113 0.506820 -0.185710 -0.218928 -0.224597 0.062914 -0.075934 0.234952 0.475873 -0.136163 -0.685594 -0.198120 0.395423 -0.530483 -0.309087 0.345334 0.016701 0.832688 -0.513151 0.380583 0.217907 0.021273 -0.747093 -0.419676 0.044693 -0.270798 -0.213789 0.409839 -0.909550 -0.443132 -0.294114 0.409651 -0.527481 0.130475 -0.180647 0.591882 0.245563 -0.015029 0.393980 0.186855 0.221317 0.002337 -0.105436 0.093916 0.517617 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = -1.531340 2.183302 1.999688 -1.372030 1.843261 -0.543841 0.909970 0.394944 1.170213 0.507208 -3.321254 -1.622724 -0.667214 -2.189263 0.371913 -2.166577 0.254494 1.519229 -0.500530 0.630568 1.387734 -0.521250 -0.417087 -2.243456 0.185388 -1.256480 -1.236208 -0.355280 -0.851057 1.161109 0.988163 0.954255 2.522614 1.522449 2.203430 2.173620 -0.105680 3.389849 0.122257 2.947915 0.609171 1.617914 -0.563400 -3.457414 1.168598 -1.512607 -0.515216 -2.372700 -0.087171 -2.507662 2.263454 1.284736 0.453959 -0.220484 -1.675368 -0.710102 2.267233 2.032388 1.646619 1.678875 -1.295008 1.950513 -1.333631 -1.106897 -1.264858 1.903007 1.531820 -2.120987 -0.189455 0.973062 2.327813 -1.328224 -2.145733 -0.372325 -0.089050 -0.573806 1.151562 -0.238763 -2.787337 -0.111500 -1.326826 0.554162 0.221026 1.920344 -0.407652 -0.704003 -1.508137 -0.504450 1.236404 -0.977137 -1.767047 1.998998 -0.143736 0.651833 -0.708225 1.093926 1.020307 0.168825 -0.759007 -0.910962 1.135549 0.546025 0.091526 1.908528 -3.455453 -1.759431 2.289700 1.950497 -1.890511 0.794926 0.568671 1.637892 0.880844 0.202505 -1.912554 2.129703 -2.415111 0.922478 -0.568038 -0.223440 0.607405 -0.264298 -0.654039 -0.277190 0.167306 -1.131054 2.156019 1.792169 -1.213023 -0.833117 1.086998 -1.159135 -2.026115 -0.705425 1.048826 1.713088 0.139863 0.129746 -1.153037 -1.506575 0.889886 -2.205551 -0.965273 2.041052 -0.545922 -0.495113 -0.533216 -0.876283 -1.168281 0.582883 -0.119577 -0.050767 1.924625 0.989379 -0.958350 -1.878877 -1.283906 0.194483 3.357711 1.079709 -1.772949 0.435463 1.014976 0.622331 1.041724 -0.038637 0.182090 0.722078 -1.595499 -1.343709 -2.181147 -2.201735 1.693709 2.783560 0.930965 -2.478372 2.710114 -0.036790 -1.156723 3.304158 1.545489 -1.314880 -1.349089 2.084584 -2.539676 -1.704161 0.410378 0.034088 -0.238522 -0.665522 0.325895 -0.334185 -1.899274 -2.223751 -0.232383 -2.343490 1.711272 0.648615 1.327098 -1.115896 -1.940563 -2.283982 3.808520 0.095513 -0.699365 0.250485 -0.230031 0.337393 -2.457592 0.555844 1.186147 -0.848289 -1.243337 -0.902154 1.128810 1.724532 -2.491076 -0.202960 1.749608 -1.654472 0.615997 -1.159952 0.733293 -3.155168 -1.687446 -0.379732 0.403548 1.456716 0.651747 0.956044 3.073697 -0.587432 0.626186 3.120558 0.058944 0.077039 2.593019 -0.620534 1.638430 -1.938852 1.482914 0.195940 1.779135 -1.095049 -1.343545 0.290218 -0.178337 -0.945275 2.175338 -1.667084 0.632054 0.853695 -1.443683 0.043816 2.169337 0.576273 0.847836 -0.696784 1.085076 -1.630991 0.543629 -0.046872 -0.059248 1.842684 0.568390 -2.596950 -0.929716 1.034483 -1.257536 -1.399414 0.730009 -0.194707 2.203219 -1.406923 1.391756 0.377594 -1.273007 -2.069222 -1.424451 1.015633 -2.420880 -1.620596 0.718221 -1.802322 -0.515960 -1.103471 1.127557 -1.391346 -0.700578 -0.109167 1.555320 1.371455 -0.302163 0.594235 0.137415 1.833083 0.482008 -0.453524 -0.084362 2.586863 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.317802 2.064309 0.788998 -1.358035 2.667189 -0.369141 0.747206 1.216277 -0.529826 0.784696 -2.848532 0.220591 0.017330 -2.547520 0.533273 -0.581981 0.255997 1.131806 -0.145833 0.640151 1.088615 -0.923810 -0.244940 -1.940468 0.007228 -1.848800 -0.359283 -0.143459 0.165034 0.888919 0.311794 0.727256 1.914873 0.774152 1.395026 1.795709 0.570033 2.350527 0.703389 0.764970 0.614307 1.062831 -0.441147 -2.848843 0.867184 -1.217005 -1.000184 -1.673531 0.053673 -2.260418 1.112058 1.364186 0.340532 -0.540333 -1.790194 0.169783 2.476564 0.283847 1.566084 1.396902 -1.125901 -0.086896 -0.839098 0.173054 -1.053272 0.935837 1.344510 -1.660276 0.012765 1.433867 1.137229 -0.933661 -1.436224 -0.272082 0.129062 -0.943382 0.876347 -0.318418 -1.924667 -0.781695 -0.801133 0.655411 -0.107747 2.030405 0.061345 -0.346282 -0.896037 -0.435606 1.082259 -1.108641 -1.480656 1.784194 -0.230339 0.266001 -1.223548 1.649319 1.215981 -0.231242 -0.622306 -1.221093 0.981380 0.584433 0.183435 0.094970 -1.999183 -1.947987 1.454142 1.165180 -1.112474 1.430531 0.113611 1.088789 0.311559 0.319791 -1.498947 1.234084 -2.427002 0.636728 -0.045259 0.021271 -0.065964 -0.528907 0.436906 -0.064493 0.330777 -1.466054 2.192609 1.616867 -0.633836 -1.175555 0.900035 -0.736515 -1.510692 -0.304191 0.865417 0.935442 0.249851 0.393876 -0.319834 -0.929087 -0.555860 -2.037924 -0.875233 2.873801 -2.008638 -0.095246 -0.384622 -0.451818 -0.909248 0.395675 0.208364 0.098571 1.900336 0.967073 -0.644261 0.582886 -1.338194 0.646136 3.453951 2.033325 -1.560107 0.637302 -0.049349 0.367523 0.643518 -0.037860 0.221608 0.647562 -2.078142 -1.255969 -0.245767 -1.797986 1.643426 1.739649 0.944393 -2.497998 2.578762 0.177717 -0.652216 2.826254 1.325981 -1.761497 0.357325 2.284449 -1.850644 -0.696599 0.405635 -0.607739 -0.562029 -0.620073 0.394971 0.065932 -1.883256 -2.006557 -0.810105 -1.858159 1.652593 0.663963 1.016952 -0.764219 -1.056951 -0.948521 3.035799 0.164433 -0.541187 -0.063097 -0.395467 -1.054354 -2.201379 0.332294 1.075763 -1.239477 -0.952190 -1.123998 -0.044904 1.878001 -2.054640 -0.285467 -0.826399 -0.592170 0.737579 0.163780 0.444910 -2.670290 -1.311190 -0.078713 0.363107 0.872360 -0.168640 1.262740 2.352237 -0.839038 1.066993 1.597126 0.327318 0.630603 2.147924 -0.589101 1.643830 -0.903497 2.414214 0.516449 1.723567 -1.287190 -0.705461 -0.170025 -0.625697 -0.768746 1.788688 -1.958802 0.223426 1.419547 -0.744365 -1.039717 1.834140 0.855350 1.153344 -0.726974 0.319195 -0.588971 0.128942 -0.661464 0.275427 1.458528 -0.383856 -2.080795 -0.774834 1.520741 -1.018945 -0.893543 0.852979 0.331849 2.023197 -1.447649 1.632290 0.155843 -0.458238 -2.288019 -1.924364 1.290647 -1.501580 -1.531205 0.871943 -2.698308 -0.730724 -0.991990 1.087600 -2.507732 -0.345865 -0.211434 1.623616 0.195545 0.035537 0.847754 0.043439 1.053377 -0.015185 0.413025 -0.107252 1.818735 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -1.142419 0.706768 -0.078146 -0.875524 2.928813 -0.284819 0.396258 0.884698 -0.316615 0.986508 -2.048308 -0.327333 -0.257682 -2.084573 0.465100 -0.101812 0.667796 0.527862 -0.525607 0.052570 0.678029 -0.553656 0.165719 -1.110801 -0.091024 -1.792157 -0.519629 0.282470 0.873241 -0.037635 -0.479651 0.532567 2.062452 -0.048435 1.156260 1.151541 1.083883 1.463267 0.353489 -0.878694 0.792099 0.860255 -0.532186 -1.821321 0.235574 -0.999727 -1.597843 -0.786434 0.603792 -1.266582 -0.264142 1.226077 0.163283 -0.295082 -1.358508 0.810667 1.863168 -0.148312 1.717253 0.852302 -0.943911 -0.541292 -0.807139 1.209119 -1.076511 0.598394 -0.335740 -1.774413 -0.705108 1.393035 -0.108551 -0.758973 -1.238013 0.043242 0.735288 -0.993857 0.784790 -0.008426 0.093288 -1.447684 -1.079060 0.608506 -0.624416 1.662433 0.133445 -0.082108 0.276357 -0.328390 0.638933 -1.349787 -0.781664 1.341438 -0.802564 -0.044410 -0.506643 0.927058 0.663959 -0.244244 -0.736710 -1.596220 0.416509 -0.093825 0.208135 -0.408722 0.236242 -1.295099 0.462419 0.574754 0.176646 1.388419 0.441106 0.447604 0.328330 0.570258 -1.249264 -0.184323 -1.784988 0.589225 -0.597821 -0.098551 -0.575974 0.061993 1.088273 0.419157 0.926142 -1.849586 1.652685 1.030453 -0.473848 -0.794987 0.430805 -0.474008 -1.287968 0.049034 0.899395 0.132382 0.252690 0.048462 0.518398 -0.358173 -0.857704 -0.028578 -0.675597 1.666097 -2.106445 0.060687 -0.184533 -0.441039 -0.509540 0.693236 0.608684 0.526240 1.832431 0.922667 -1.063075 1.300417 -1.757878 1.026443 2.973294 0.461791 -1.386464 0.897332 -1.112690 0.335940 0.689777 0.528953 0.422847 0.258631 -1.027123 -0.262915 0.159000 -0.553817 1.737053 0.557530 0.772971 -2.126576 1.269119 -0.222883 0.036703 2.407511 0.920045 -2.207736 1.177161 1.979243 -1.533117 -0.222601 0.459262 -1.231205 -0.621925 -1.458513 0.638133 0.824502 -1.606929 -0.972015 -0.204379 -1.433652 1.419254 0.347694 -0.284751 0.203733 -0.881849 -0.649489 2.655662 0.189418 0.144067 -0.417147 -0.890082 -0.914992 -2.145254 0.079090 0.326511 -1.242708 -0.234604 -1.289851 -0.403289 2.006073 -0.943409 0.531826 -2.373786 0.654121 0.819567 0.905052 0.424792 -1.001546 -0.904173 0.232680 -0.612964 0.108696 -1.345437 0.644981 1.172182 -1.112608 1.242398 -0.245552 -0.918352 0.580302 1.033042 -0.755875 1.721725 -0.018931 2.120895 0.485989 1.466360 -1.112443 -0.111567 -0.461149 -0.984076 -1.071005 1.293699 -1.984488 -0.162149 1.570746 -0.341343 -1.866870 0.969487 0.871915 1.029571 -0.413357 -0.472881 -0.745495 0.171055 -0.280856 0.764431 1.005283 -0.524720 -1.519078 -0.091667 1.459047 -0.864422 -1.057326 0.623803 0.249415 1.741277 -1.470886 0.853161 0.357637 0.647668 -1.790575 -1.969061 0.652788 -1.036113 -0.672048 1.098121 -2.511809 -0.885866 -0.867185 0.740007 -1.575769 -0.270144 0.321338 1.876641 0.078059 -0.509109 0.889672 0.134886 0.360062 -0.349701 0.379460 0.172446 0.719934 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = -1.274381 0.393026 -0.531352 -0.906593 3.891037 0.186386 0.104212 1.750521 -0.491143 1.343263 -2.164646 -0.119319 -0.324542 -2.117830 0.476921 0.603528 0.580761 0.428663 -1.031806 -0.573126 0.814835 -0.217229 0.463657 -1.067051 -0.109234 -1.585570 -0.647168 0.296740 0.952292 0.375310 -1.262374 0.346654 1.999961 -0.234090 0.843728 0.852713 1.779910 1.597413 0.019343 -0.329345 1.008873 0.905552 -0.663341 -2.098037 0.694189 -1.588933 -1.985723 -0.683961 0.832316 -1.915527 0.486295 1.386282 0.205612 -0.486271 -0.961246 1.064067 1.767763 -0.591080 1.954191 0.973163 -1.752499 -1.344249 -1.013472 1.740444 -0.993816 1.488501 -0.160687 -2.439927 -1.523769 1.587653 0.238332 -1.140125 -1.504026 0.083954 0.681615 -0.918049 0.936052 -0.030257 1.179657 -1.423353 -1.339140 0.622442 -1.011750 1.760182 0.101096 -0.129258 0.148540 -0.507055 0.649130 -1.611307 -0.870385 1.769143 -0.986682 0.767759 -1.647913 0.031472 -0.008811 -0.150141 -0.995381 -1.581478 0.372675 0.616734 0.259068 -0.951014 0.158293 -1.613725 1.057196 0.812852 0.476240 0.976246 0.431045 -0.183759 -0.071076 0.791600 -1.021669 0.209189 -1.864843 0.645709 -0.256850 0.230680 -1.032741 0.060736 1.578330 0.140234 1.099487 -2.040247 1.910577 0.812096 -1.110069 -0.996878 0.508629 -0.551429 -1.508158 0.374390 1.059184 -0.148838 0.004743 0.012864 0.813894 -0.550221 -1.991675 -0.288593 -0.958425 1.341070 -2.502208 0.013306 -0.270461 -0.607664 -0.521115 1.011266 0.819103 0.703614 2.070159 1.100573 -0.901147 1.423567 -2.034906 1.562591 3.384350 1.087686 -1.766180 0.807276 -1.552934 0.881892 0.890897 0.303570 0.366414 0.923171 -0.524094 0.440799 0.254601 -0.240474 2.084368 1.213923 1.412113 -2.504681 0.505579 -0.869684 0.468958 2.605778 1.526006 -2.768684 1.420169 2.097138 -0.891407 0.194876 0.354550 -1.395136 -0.948946 -1.561836 0.713039 1.269729 -1.993872 -1.307085 0.076670 -1.570405 1.923938 0.325735 -0.045787 0.449043 -1.441891 0.007696 2.705609 0.242329 0.072289 -0.353026 -0.977806 -1.519322 -2.287314 0.189065 0.843918 -1.356274 -0.586036 -1.508759 -0.665347 2.468006 -0.778680 0.585100 -2.712552 0.981897 0.891622 0.368060 0.964554 -1.587497 -0.952507 -0.244180 -0.865012 0.618280 -1.730566 0.214525 1.103426 -1.397969 1.864927 0.154121 -0.493745 0.099485 1.034379 -0.402709 1.860118 0.217411 2.301222 0.247544 1.848540 -1.115363 0.283891 -0.801333 -0.568242 -0.935231 1.804588 -2.263618 -0.332993 1.760095 -0.827559 -2.051896 1.070371 0.998589 1.292941 -0.425010 -0.891156 -0.642241 -0.120276 -0.508199 0.813762 1.193663 -1.239445 -1.829482 -0.335318 1.176450 -1.511506 -0.997341 0.936656 0.380580 2.171239 -1.641233 0.825814 0.547558 0.474921 -2.521741 -1.773720 0.023090 -0.729478 -0.868065 1.398699 -2.848552 -1.214147 -0.988485 0.867638 -1.908516 -0.369830 -0.028911 2.120937 0.127644 -0.145611 1.339409 0.541965 0.457602 -0.411512 0.366228 0.547692 0.629239 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -1.020558 0.217555 -0.369896 -0.920535 2.930491 -0.183668 -0.121538 1.661510 0.149512 0.929031 -1.802280 -0.149705 -0.152821 -1.837485 0.319333 0.224662 0.616209 0.500844 -0.852046 -0.100789 0.690072 -0.179068 0.266999 -0.970113 -0.125263 -1.042158 -0.383678 0.263218 0.367798 0.222088 -0.655836 0.422205 1.744493 0.173617 1.146929 0.806207 1.227575 1.454809 0.167907 0.170082 0.815819 0.640998 -0.282400 -1.765542 0.479215 -1.093346 -1.575488 -0.629406 0.483147 -1.675950 0.657607 1.137253 0.235198 -0.239055 -0.880757 0.590061 1.328217 -0.194916 1.461221 0.871332 -1.673035 -0.750831 -0.823890 0.946013 -0.792390 0.945658 0.206012 -1.692503 -0.883683 1.376650 0.342832 -1.021131 -1.121925 -0.042290 0.596494 -0.690511 0.955225 -0.008940 0.933194 -0.994448 -0.738423 0.550891 -0.579631 1.260797 -0.008317 0.065499 -0.019071 -0.457785 0.364283 -1.273029 -0.574282 1.180101 -1.041356 0.496559 -1.304017 0.500840 0.058546 -0.127772 -0.886335 -1.416023 0.450805 0.293889 0.113144 -0.350644 -0.258313 -1.157105 1.093628 0.701008 0.179316 0.872774 0.231036 0.269864 0.193176 0.641214 -0.881694 0.604069 -1.633818 0.490673 -0.432490 0.144858 -0.660558 -0.116826 1.307693 0.443671 0.710068 -1.496608 1.698079 0.971730 -0.698881 -0.769883 0.492664 -0.553638 -1.175738 0.109355 0.898280 0.022886 0.210774 -0.018700 0.498390 -0.510685 -1.278969 -0.435550 -0.764165 0.975429 -1.617500 0.020012 -0.108817 -0.375659 -0.485491 0.675012 0.640828 0.249413 1.681489 0.522047 -0.803038 0.724579 -1.475592 0.969334 2.749085 0.595861 -1.387917 0.819006 -0.940562 0.630167 0.543727 0.338381 0.373135 0.328148 -0.584589 0.104650 0.154043 -0.318361 1.533796 0.757010 0.908451 -2.111869 0.607210 -0.591900 0.314349 2.396385 1.195743 -2.172592 0.633121 1.690695 -0.849714 0.012409 0.267536 -0.832220 -0.585920 -1.071462 0.755776 0.672731 -1.503140 -1.120115 0.103786 -1.347801 1.304093 0.261646 0.060739 -0.096201 -1.164675 0.045207 2.564116 0.136898 -0.080654 0.043262 -0.789636 -0.802028 -1.942577 -0.066463 0.582303 -0.909496 -0.150727 -0.972885 -0.388691 1.900989 -0.895522 0.303505 -1.927890 0.470908 0.760575 -0.087249 0.451299 -1.310315 -0.867172 -0.253244 -0.537981 0.527047 -1.255287 0.154851 1.109690 -0.807779 1.483038 0.320382 -0.406191 0.207145 0.977735 -0.520560 1.698034 -0.065812 1.789890 0.318834 1.439048 -0.974995 -0.052314 -0.701054 -0.468687 -0.915522 1.480369 -1.785568 -0.116662 1.267516 -0.455582 -1.528018 0.965536 0.791813 0.849735 -0.283412 -0.464210 -0.657266 -0.132252 -0.628662 0.793465 0.827834 -0.778486 -1.456129 -0.264738 1.272777 -0.992563 -0.694706 0.679774 0.279041 1.878975 -1.278348 0.751080 0.619491 0.287938 -1.708685 -1.440005 0.260541 -0.852213 -0.542195 0.675589 -2.320755 -1.098524 -0.668794 0.839291 -1.314280 -0.050659 0.154806 1.850653 0.405158 -0.431196 0.923717 0.228731 0.342232 -0.158078 0.430811 0.277013 0.744360 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.471382 0.105170 -0.112077 0.067849 0.579659 -0.028241 0.028941 0.356036 0.171196 0.499316 -0.636008 -0.687164 -0.611402 -0.424353 0.014579 -0.145183 0.502898 0.124680 -0.369937 0.065454 0.365778 -0.198425 0.015547 -0.439437 0.038234 -0.411867 -0.308950 -0.077485 0.618463 -0.225743 -0.296334 0.024107 1.267267 0.285533 0.893400 0.359930 0.330200 0.711766 0.114423 -0.349296 -0.227721 0.812293 -0.470900 -0.329944 -0.021911 -0.686435 -0.038909 0.057958 0.313137 -0.034473 -0.106418 0.357704 0.011578 0.453798 -0.363027 0.020607 0.458830 0.430489 0.890606 0.139675 -0.207833 0.069109 -0.372877 0.436031 -0.261060 0.168277 -0.419679 -0.385390 -0.113851 -0.242685 -0.129675 -0.331580 -0.170473 0.453431 0.384896 -0.390825 0.530968 0.168881 0.166048 -0.858081 -0.876644 -0.012573 -0.218818 0.590161 -0.083512 -0.038231 0.037154 0.029042 0.267688 -0.722926 -0.015514 0.193535 -0.684864 -0.108558 0.284878 0.334945 -0.142913 0.514103 -0.497584 -0.554465 0.056993 -0.106343 0.035936 -0.100166 0.497908 -0.213722 0.138148 -0.205242 0.105269 0.568563 0.652609 0.373148 0.597335 0.616502 -0.418887 -0.361729 -0.290896 0.169414 -0.622512 -0.066618 -0.034426 0.409956 0.192226 0.045168 0.698910 -0.922762 0.200411 0.435707 -0.150006 -0.213268 0.114844 -0.693056 -0.623474 -0.215651 0.484030 0.163845 0.064119 -0.611032 0.202715 -0.052073 -0.197497 0.308059 -0.078746 0.182154 -0.715862 -0.247004 -0.166382 -0.275577 -0.349560 0.462295 0.102297 0.307665 0.337709 0.276134 -0.795904 -0.015397 -0.573713 0.046631 1.055321 -0.509235 -0.638641 0.315377 -0.359282 0.173462 0.468365 0.286419 0.552839 -0.209540 -0.228335 -0.147199 -0.003343 0.072672 0.838148 -0.004609 0.135466 -0.382737 0.638973 -0.280586 -0.451550 1.029807 0.057741 -0.857180 0.275126 0.218662 -0.837052 -0.044983 0.152393 -0.464947 0.048519 -1.052361 0.247432 0.307850 -0.478643 0.239170 0.379769 -0.779506 0.767395 0.154894 -0.084138 0.279314 -0.572710 -0.232601 1.202689 0.218367 0.057448 -0.535462 -0.422209 -0.340614 -0.970670 0.107715 -0.534451 -0.187064 -0.020943 -0.616650 0.148128 0.676790 -0.018633 0.379545 -0.954824 0.000871 0.054239 -0.010618 0.348537 -0.188282 -0.472041 0.072205 -0.350721 0.355128 -0.624275 0.265893 0.671252 -0.414125 0.404075 -0.251260 -0.676940 0.066921 0.226015 -0.650177 0.475970 -0.456587 0.302354 -0.104423 0.528481 -0.536904 -0.088241 -0.008471 -0.089312 -0.458423 0.210376 -0.376662 0.001671 0.113177 -0.369956 -0.344334 0.003586 -0.336307 0.292289 -0.007601 -0.073126 -0.813955 0.251439 -0.151026 0.169792 0.563017 0.282531 -0.583420 0.231815 -0.086958 -0.033015 -0.376275 -0.028754 -0.249246 0.538815 -0.676548 -0.458898 0.151477 0.166761 -0.099337 -0.744901 -0.115166 -0.415269 -0.093077 0.958602 -0.619779 0.143279 -0.352817 -0.130246 -0.338152 -0.144950 0.233050 0.617909 0.448947 -0.731197 0.252434 0.027561 0.557681 0.165682 0.140622 -0.213806 0.265981 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.733900 0.264360 -0.786846 -0.625297 2.266711 0.150136 -0.091690 0.948532 -0.238188 0.776473 -1.308720 -0.024801 -0.031130 -1.347789 0.303508 0.827896 0.256167 0.284323 -0.564747 -0.333891 0.491747 -0.276032 0.317999 -0.712754 -0.052609 -0.744381 -0.270944 0.169956 0.578220 0.152951 -1.032736 0.116208 0.954126 -0.156370 0.315662 0.433859 0.991136 0.918614 0.132308 -0.333896 0.622107 0.503814 -0.349433 -1.291746 0.490492 -0.957564 -1.075069 -0.458921 0.490159 -1.064160 0.674393 0.811234 0.143271 -0.481984 -0.718914 0.550789 1.129693 -0.309715 1.148290 0.582320 -0.864859 -0.820998 -0.506789 1.020076 -0.650103 0.881456 0.155586 -1.344593 -0.909772 1.026238 0.278081 -0.718704 -0.988414 -0.058549 0.309394 -0.547757 0.540407 -0.102361 0.990443 -0.873480 -0.738859 0.373553 -0.741897 1.079967 0.076288 -0.050137 -0.112120 -0.281628 0.456746 -0.847432 -0.606749 0.843683 -0.442410 0.559109 -0.767347 0.171400 0.038115 -0.231205 -0.609628 -0.769332 0.217149 0.502834 0.176329 -0.444468 0.248504 -0.959696 0.772312 0.549567 0.214291 0.439782 0.487042 -0.221291 -0.174776 0.395196 -0.383860 -0.071070 -1.121974 0.158024 0.092217 0.218310 -0.631288 -0.005687 1.026028 -0.148545 0.555453 -1.147691 1.254257 0.497467 -0.599847 -0.552039 0.378583 -0.197714 -0.835650 0.306983 0.550019 -0.129860 -0.029446 0.153712 0.499207 -0.318560 -1.498416 -0.062325 -0.563082 0.963293 -1.447622 0.061314 -0.164321 -0.398899 -0.230041 0.474744 0.429838 0.315850 1.222455 0.644074 -0.475910 0.807995 -1.070666 1.052890 2.060860 0.726816 -1.040339 0.375437 -0.876099 0.570284 0.480749 0.111201 0.176856 0.543668 -0.260710 0.337942 0.244587 -0.249108 1.153136 0.495437 0.957553 -1.393262 0.323931 -0.216827 0.415663 1.565852 0.775813 -1.578418 0.896809 1.314776 -0.381128 0.296250 0.166512 -0.622693 -0.468990 -0.867619 0.480746 0.686698 -1.208418 -0.962444 -0.234725 -0.881635 1.151192 0.220846 -0.025824 0.246437 -0.803376 0.593726 1.522895 0.174980 -0.060469 -0.165516 -0.503754 -1.006306 -1.298445 0.135753 0.558550 -0.860362 -0.339158 -0.844302 -0.478417 1.526524 -0.542731 0.103260 -1.581296 0.658494 0.503755 0.292012 0.531003 -0.857347 -0.516573 -0.025260 -0.364747 0.360232 -0.948924 0.112103 0.621473 -0.883307 0.930359 0.326562 0.226018 0.159793 0.728956 -0.089474 1.063038 0.150549 1.338138 0.106306 1.112545 -0.572228 0.261671 -0.486936 -0.244360 -0.408361 1.031606 -1.360058 -0.246411 1.158027 -0.328482 -1.255683 0.734671 0.675330 0.929479 -0.276710 -0.666929 -0.122260 -0.094443 -0.262013 0.441267 0.683152 -0.716089 -1.065210 -0.347399 0.798208 -0.822882 -0.400209 0.626780 0.234481 1.378324 -0.928381 0.669528 0.270589 0.303493 -1.475687 -0.884187 0.011133 -0.142848 -0.346189 0.969834 -1.763319 -0.777247 -0.546989 0.617112 -1.149870 0.059045 -0.226999 1.116579 0.075019 0.032715 0.827555 0.318905 0.218563 -0.236504 0.124582 0.320375 0.378180 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::deallocate(int**, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -0.626922 0.230902 -0.192776 -0.911030 1.454224 -0.453716 -0.065862 1.629534 0.524533 0.483114 -1.255671 -0.247984 -0.202574 -1.461955 0.166571 -0.220557 0.771846 0.645991 -0.757671 0.009320 0.590413 0.427799 0.230595 -0.698930 -0.268530 -0.740613 -0.206195 0.160797 -0.176065 0.024392 -0.283354 0.334445 1.940583 0.322691 1.412745 0.791145 1.032956 1.177474 0.769039 0.481749 0.434021 0.616972 -0.316334 -1.277947 -0.046266 -0.692570 -0.814167 -0.386632 0.354341 -1.053322 0.629774 0.610454 0.474614 0.204295 -0.739190 0.111247 0.508246 -0.036309 1.062849 0.761199 -1.164769 -0.250962 -0.478957 0.641232 -0.937819 0.750366 0.089096 -0.772100 -0.703525 0.793172 0.419491 -0.795246 -1.030350 -0.274993 0.281374 -0.647232 0.852164 0.054178 0.846313 -0.652847 -0.569977 0.794136 -0.472343 1.009277 0.057406 0.108682 -0.253154 -0.124151 0.234801 -0.978326 -0.215062 0.514253 -0.812859 -0.095859 -0.772224 0.492807 -0.395312 0.091758 -0.492703 -1.322584 0.556560 0.045858 0.106662 -0.042995 -0.196148 -0.519138 0.687039 0.815979 -0.308549 0.721700 0.404618 0.541203 0.557952 0.614381 -0.312308 0.320816 -1.786366 0.677035 -0.855379 -0.121800 -0.393165 0.083143 0.893656 0.563353 0.475221 -1.072475 1.245091 1.167208 -0.701160 -0.356905 0.543127 -0.375412 -1.064767 -0.122806 0.798979 0.164150 0.318671 -0.302275 0.499462 -0.532224 -0.355861 -0.424775 -0.699606 0.086222 -1.155747 -0.175613 -0.048152 -0.274927 -0.332509 0.727852 0.237756 0.089258 1.378950 0.238314 -0.990892 0.017721 -1.212962 0.278606 1.790003 0.223483 -0.782318 0.713178 -0.501272 0.170748 0.552088 0.637806 0.129322 -0.051535 -0.518552 -0.152744 -0.271946 -0.220890 1.336077 0.258682 0.528491 -1.310625 0.560848 -0.383430 0.135377 1.857106 0.945750 -1.143786 -0.114057 1.029640 -0.303974 -0.421203 0.187509 -0.827103 -0.321588 -0.797545 0.315550 0.485154 -0.988235 -0.749993 0.250830 -0.923126 0.793498 0.125561 -0.532651 -0.233587 -1.219636 0.133278 2.071483 0.054085 -0.066204 -0.041662 -0.719094 -0.124775 -1.645817 0.145036 0.364199 -0.393958 0.409308 -0.651389 -0.021602 1.053391 -0.629182 -0.016962 -1.217849 0.020897 0.786324 -0.320260 0.283890 -1.000410 -0.521089 0.053061 -0.420233 0.570434 -1.052333 0.305228 0.942653 -0.474030 0.901199 0.533383 -0.490584 -0.002021 0.805194 -0.761594 1.460670 -0.424499 0.818756 0.398343 0.828615 -0.802162 -0.278404 -0.646587 -0.301605 -0.677050 0.878650 -1.326937 -0.085043 0.443782 -0.202653 -0.840866 0.566617 0.609964 -0.031584 -0.214718 -0.105432 -0.708269 0.082604 -0.498226 0.546950 0.848514 -0.276964 -1.356739 0.079137 1.120568 -0.630501 -0.422759 0.179812 0.253590 1.455201 -0.939376 0.369757 0.501837 0.489852 -1.319334 -1.411749 0.532599 -0.643606 -0.006797 0.035533 -1.243858 -1.135877 -0.465603 0.706490 -0.858467 0.285492 0.701008 1.093286 0.238507 -0.644414 0.152678 0.138757 0.536534 0.156097 0.174839 0.090073 0.731497 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.130352 6.600064 4.382019 -5.408725 8.414289 -1.128998 2.064746 5.359554 1.882825 2.884686 -11.408231 -2.836358 -1.785492 -8.068367 0.845778 -4.388142 1.736956 4.614091 -2.577581 2.758918 4.763079 -1.728815 -0.714918 -7.319516 -0.085658 -2.956471 -3.442514 -0.726473 -1.378412 2.437944 1.926189 2.282125 9.735897 4.935968 8.731563 6.835893 1.859592 11.339397 1.595646 7.528879 1.603423 5.508557 -2.224757 -11.055016 3.599256 -6.071764 -2.893570 -6.563481 0.237059 -8.833572 7.610532 5.035013 1.779807 -0.182971 -5.660246 -1.211842 7.535482 3.872271 6.929101 5.337866 -6.722271 3.624958 -4.408715 -2.090823 -3.556580 6.514938 4.778322 -6.355780 -0.604285 3.244466 7.500265 -6.710858 -6.614382 -0.166120 0.206572 -2.938523 5.172119 -1.186761 -5.542775 -3.458461 -4.304360 2.472838 0.388423 6.908196 -0.767122 -1.335449 -5.001512 -1.373224 2.993836 -5.358349 -4.409424 6.256741 -2.762446 1.891351 -4.648448 4.857755 0.774744 1.348395 -4.495451 -4.628384 4.162430 2.450524 0.351907 3.191690 -8.516612 -6.488431 7.364478 5.897355 -5.268242 3.470292 3.000062 5.590389 4.462056 2.827788 -5.890998 7.131803 -8.924880 2.838380 -2.276893 -0.343482 0.621764 -0.483593 0.302269 0.120988 2.037832 -5.421976 7.738981 6.817424 -5.022461 -4.200941 3.570835 -5.025776 -7.332304 -1.945178 3.984113 4.724741 1.172668 -1.047316 -2.320616 -4.977846 -0.185391 -8.003638 -2.933195 6.889485 -4.694162 -1.844491 -1.429032 -2.406528 -4.125573 3.424146 0.976636 -0.039204 7.611161 2.511063 -3.782536 -3.803480 -5.262640 0.948215 12.671799 5.112653 -6.904513 2.789818 1.437513 2.455213 3.401051 0.675405 1.774533 0.983799 -6.546862 -4.611016 -3.009448 -5.969606 7.085530 6.992901 3.444080 -8.656959 9.213374 -0.738582 -3.467127 12.689475 5.222163 -6.289787 -2.998009 6.906902 -5.511893 -4.019921 2.022489 -1.700014 -2.198018 -2.506489 1.485422 -0.482527 -6.751292 -7.167645 -0.266913 -8.489142 7.197755 2.184783 3.446823 -3.567315 -7.291454 -4.438084 14.004374 0.336154 -2.768822 0.727657 -1.618549 0.244670 -9.459613 1.440361 4.072134 -2.692129 -3.149370 -3.897915 2.878800 6.279426 -7.522526 -0.375110 1.159525 -5.152511 2.843206 -4.827349 3.004846 -11.480853 -5.820229 -1.598589 0.989644 5.700680 -0.617004 3.871087 10.594754 -2.358878 4.087429 9.208569 0.731373 0.407397 8.296951 -3.506990 7.458049 -5.783245 7.326264 0.638161 6.648686 -4.964384 -3.821341 -0.391314 0.485788 -3.243060 7.355947 -6.426550 1.559771 2.211828 -4.328163 -1.584313 6.611698 1.516893 1.438193 -1.915874 2.468004 -4.997600 0.264436 -2.617476 0.871176 6.373513 -0.314118 -9.171568 -2.341745 4.046353 -3.449098 -2.070497 2.350588 0.317006 8.696140 -5.940077 3.678140 1.544076 -3.103270 -7.892443 -6.544813 3.448499 -7.294392 -4.483043 3.018345 -7.766590 -2.993412 -4.173768 3.342590 -6.483800 -0.770083 0.670209 6.773860 4.945572 -2.874618 2.160142 0.224293 6.455000 1.638342 0.371830 -0.559383 7.931352 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.581812 0.422071 -0.054627 -0.361485 1.130285 -0.502385 0.094481 0.678964 0.468437 0.283461 -1.038829 -0.416423 -0.159808 -0.917166 0.284817 0.118868 0.390925 0.801364 -0.256142 -0.118007 0.509523 0.084108 -0.129671 -0.656220 0.051041 -0.271240 -0.358194 0.003369 -0.356624 0.078282 -0.369030 0.644957 1.149055 0.430180 0.915323 0.825742 0.354865 1.171016 0.410465 0.765576 0.439968 0.473655 -0.170762 -1.314088 0.530842 -0.508859 -0.309899 -0.727202 0.106288 -0.736608 1.514622 0.519575 0.184244 0.034905 -0.660442 -0.226879 0.610914 0.498553 0.701761 0.696078 -0.814021 0.515915 -0.286023 0.313797 -0.603003 0.672144 0.463349 -1.058299 -0.320077 0.623274 1.250264 -0.976297 -0.992695 -0.183485 -0.198052 -0.248698 0.529265 0.154297 0.339203 -0.354524 -0.891395 0.323522 -0.345218 0.755416 -0.112287 -0.226647 -1.022064 -0.292141 0.464900 -0.425007 -0.537192 0.609529 -0.341454 0.701398 -0.463122 0.107120 0.249003 -0.044850 -0.237362 -0.708537 0.397751 0.050692 0.100861 0.942817 -0.597282 -0.311048 0.852671 0.532815 -0.398488 0.363268 0.498744 0.407611 0.333428 0.056274 -0.098229 0.268173 -1.092743 0.546655 -0.074378 -0.143262 0.046295 -0.078211 0.258441 -0.281556 0.171330 -0.623577 0.776758 0.565628 -0.380994 -0.242582 0.413678 -0.270620 -0.767787 -0.297859 0.665581 0.417806 -0.023454 0.134040 -0.148957 -0.415417 -0.360963 -0.711305 -0.627791 0.687304 -0.483639 -0.116041 -0.253718 -0.499803 -0.362398 0.211383 0.036699 0.270195 0.770139 0.487257 -0.492679 -0.648123 -0.875894 0.277505 1.292587 0.474234 -0.741623 0.292157 0.040562 0.278703 0.490453 0.252446 0.035522 -0.000632 -0.140109 -0.047828 -0.546288 -0.450068 0.762325 0.633899 0.532500 -0.824099 0.369996 0.189704 -0.248212 1.576516 0.309835 -0.825283 -0.215983 0.968617 -0.232226 -0.391237 0.176463 -0.306733 -0.352134 -0.470309 0.373861 0.218164 -1.031103 -0.615502 0.208916 -0.796407 0.592843 0.194311 0.062284 -0.194100 -1.015255 0.025790 1.702091 0.135369 0.018265 0.109374 -0.424905 0.217480 -1.012475 0.140171 0.482616 -0.174518 -0.235888 -0.407461 0.079419 1.104685 -0.709099 -0.011184 0.157558 -0.142916 0.375737 -0.528834 0.098149 -1.380098 -0.565348 0.074750 0.113970 0.399212 -0.109386 0.093231 0.875840 -0.458175 0.165240 1.598650 0.439635 0.034630 0.747179 -0.266795 0.701081 -0.513114 0.546484 0.248733 0.684569 -0.547489 -0.390547 -0.164690 0.469393 -0.617541 0.791678 -0.776338 0.122619 0.520664 -0.381112 -0.405566 0.628866 0.470604 0.434397 -0.256646 -0.199470 -0.309587 0.119148 -0.210348 0.304848 0.659850 -0.062504 -0.887295 -0.118235 0.488461 -0.758151 -0.178051 0.368388 0.025383 1.071190 -0.651733 0.499256 0.293410 0.008038 -0.902819 -0.666861 0.233443 -0.575803 -0.323953 0.272332 -1.062768 -0.686471 -0.349267 0.585280 -0.718191 0.188214 -0.148079 0.746111 0.406752 -0.041598 0.405901 0.158366 0.353866 0.078590 -0.151118 -0.029636 0.925812 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.570024 0.546601 -0.524766 -0.340456 1.149636 -0.470796 0.098327 0.667393 0.091781 0.237733 -1.120586 -0.228937 0.012959 -1.194663 0.341056 0.648854 0.522144 0.724370 -0.034680 0.006596 0.483921 -0.285779 -0.167279 -0.759038 0.139806 -0.245333 -0.204284 -0.041899 -0.089099 -0.096815 -0.600233 0.654283 1.098911 0.533359 0.881949 0.862473 0.259045 1.072913 0.773702 0.125548 0.298155 0.490922 -0.162177 -1.343192 0.517621 -0.516694 -0.230323 -0.742537 0.029878 -0.506401 1.518878 0.583792 0.130787 0.013288 -0.953623 -0.362983 0.932301 0.339857 0.776016 0.701657 -0.591058 0.262307 -0.011408 0.285089 -0.562341 0.320504 0.686664 -0.858855 -0.039880 0.641192 1.221026 -1.058170 -0.989702 -0.156258 -0.231246 -0.339096 0.546576 0.154892 0.302604 -0.709989 -0.935738 0.328851 -0.494761 0.958276 -0.010847 -0.229013 -1.096359 -0.313104 0.553931 -0.479003 -0.508972 0.413536 -0.274199 0.628113 -0.233447 0.603423 0.351329 -0.050626 -0.339798 -0.770848 0.412691 0.011205 0.077437 0.881950 -0.296668 -0.392515 0.810398 0.318008 -0.396999 0.568158 0.916900 0.390713 0.398086 0.073609 -0.146575 -0.120170 -1.092559 0.420672 0.132392 -0.185946 0.062112 -0.133345 0.396824 -0.476192 0.179237 -0.749956 0.765435 0.795780 -0.179237 -0.372953 0.377186 -0.388290 -0.788354 -0.244887 0.625190 0.361924 0.111505 0.179974 -0.176980 -0.385133 -0.719151 -0.632144 -0.649914 1.297021 -0.839773 -0.095326 -0.225129 -0.480736 -0.374794 0.122694 0.004189 0.274191 0.778068 0.472050 -0.634924 -0.226600 -0.811590 0.382818 1.539111 0.775235 -0.781312 0.289288 -0.021844 0.249708 0.457867 0.242050 0.167107 -0.400788 -0.368452 -0.079157 -0.064705 -0.534867 0.728980 0.236274 0.673884 -0.739363 0.734524 0.726305 -0.335678 1.675806 -0.027994 -0.817450 0.136948 1.096248 -0.151355 -0.007335 0.187181 -0.356781 -0.339515 -0.562386 0.403731 0.146307 -1.140884 -0.609484 -0.089720 -0.817827 0.658859 0.335749 0.133304 -0.199412 -0.850291 0.494226 1.808641 0.143716 0.043520 0.085753 -0.417646 0.010539 -0.987298 0.109020 0.352410 -0.323988 -0.102159 -0.478118 -0.118777 1.255036 -0.731274 -0.112713 -0.255595 0.068732 0.359966 -0.228327 -0.053030 -1.363563 -0.658729 0.369101 0.226036 0.306821 -0.186839 0.342068 0.820615 -0.520710 0.021617 1.535811 0.960584 0.349613 0.702617 -0.273990 0.686126 -0.493946 0.972944 0.328730 0.816330 -0.641717 -0.395411 -0.203636 0.509876 -0.639946 0.761813 -0.883818 0.128763 0.813904 -0.078926 -0.748045 0.633832 0.402751 0.614288 -0.336933 -0.468622 -0.060676 0.159507 -0.198457 0.448400 0.650658 -0.088764 -0.818473 -0.244930 0.664096 -0.447399 0.154786 0.442646 -0.005442 1.130692 -0.684695 0.554372 0.190709 0.229335 -0.740685 -0.881071 0.445694 -0.332882 -0.198826 0.579406 -1.419630 -0.627118 -0.386905 0.483693 -1.039344 0.589801 -0.312530 0.798233 0.195331 -0.083828 0.352919 0.145733 0.201599 -0.054285 0.048322 -0.137528 0.893002 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = -1.433808 0.526162 -0.621750 -1.561352 4.060488 0.021477 0.058296 2.606822 -0.163876 1.370883 -2.752690 -0.196219 -0.322691 -2.852399 0.408352 0.253300 1.037956 0.597563 -1.438865 -0.277384 1.058005 0.053917 0.626025 -1.442815 -0.320223 -1.791910 -0.631139 0.323912 0.786036 0.275465 -1.105785 0.257890 3.025667 0.063170 1.723371 1.165074 2.212756 2.042408 0.603690 -0.144306 1.000238 1.237382 -0.802571 -2.489219 0.315785 -1.855559 -2.226113 -0.734566 0.896831 -2.277140 0.479438 1.533684 0.564545 -0.255538 -1.326951 0.956140 1.929919 -0.700817 2.377453 1.284238 -2.146977 -1.419380 -1.131228 1.694145 -1.432543 1.719426 -0.034308 -2.213377 -1.705908 1.747021 0.258219 -1.432382 -1.951965 -0.132543 0.876996 -1.280783 1.422448 -0.124052 1.469334 -1.797028 -1.237769 1.135238 -1.134548 2.183658 0.174987 0.046194 0.225392 -0.419853 0.625244 -2.096451 -0.789011 1.650117 -1.387214 0.204946 -1.851506 0.651568 -0.520818 0.051853 -1.330370 -2.263493 0.724644 0.625279 0.226075 -1.117186 0.121943 -1.782931 1.228613 1.312209 0.089195 1.358079 0.690506 0.303850 0.439219 1.228871 -1.215984 0.394883 -2.797917 0.854150 -0.979232 0.144291 -1.154783 0.135634 1.988218 0.704784 1.251805 -2.418052 2.507133 1.711960 -1.494976 -1.119290 0.794737 -0.844295 -2.057298 0.338697 1.272734 -0.022912 0.395840 -0.359892 1.094534 -0.906698 -1.809718 -0.451432 -1.172098 1.083803 -3.007969 -0.175717 -0.138112 -0.526060 -0.658033 1.469079 0.846008 0.429290 2.754779 0.887294 -1.537623 1.451133 -2.353683 1.424285 4.109664 1.058848 -1.951335 1.173699 -1.677268 0.809384 1.098647 0.692745 0.426775 0.567349 -1.062696 0.144198 0.240440 -0.425402 2.680222 0.955198 1.507239 -3.022626 1.109510 -0.976966 0.505737 3.381842 1.987766 -2.973700 1.096028 2.327754 -0.901373 -0.028219 0.393592 -1.725603 -0.951945 -1.809797 0.702106 1.232023 -2.136741 -1.679791 0.067501 -1.937527 2.188598 0.391090 -0.498792 0.107230 -1.912724 0.125183 3.613537 0.159235 -0.127925 -0.316024 -1.184736 -1.363858 -3.069537 0.268675 0.841079 -1.482229 -0.019637 -1.706293 -0.475259 2.577822 -1.119505 0.364309 -3.374609 0.741337 1.287792 0.176819 1.052539 -1.842914 -1.150644 -0.186693 -1.042621 0.960474 -2.339013 0.552747 1.624574 -1.390151 2.223017 0.090332 -0.873420 0.100370 1.450568 -0.929826 2.649988 -0.129252 2.644620 0.430973 2.127195 -1.492368 0.033642 -1.180343 -0.899609 -1.117519 2.064624 -2.841279 -0.335739 1.672102 -0.658481 -2.317181 1.304455 1.111434 0.833209 -0.499944 -0.731692 -1.075780 -0.021724 -0.739860 1.003682 1.586209 -1.210108 -2.554099 -0.317568 1.884657 -1.396725 -0.995047 0.794792 0.494094 2.808203 -1.972420 0.875290 0.761271 0.781307 -2.940115 -2.604859 0.543823 -1.009298 -0.576024 1.207472 -3.100453 -1.752163 -1.175492 1.091912 -2.138465 -0.043822 0.689635 2.474331 0.233806 -0.786564 0.998822 0.498091 0.880576 -0.209957 0.560062 0.506672 0.890367 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -1.968116 0.660497 -0.578255 -2.360378 5.163507 -1.342022 0.166738 3.494019 0.686537 1.413920 -3.872101 -0.387892 -0.159472 -4.265803 0.600505 -0.559649 2.062670 1.300182 -1.592866 0.683319 1.255712 -0.084498 0.385662 -2.108061 -0.574174 -2.408053 -0.579500 0.710971 0.345131 -0.501073 -0.288416 1.176402 4.896613 0.558220 3.656590 2.251083 2.491494 2.929437 1.541130 -0.642671 1.702517 1.270069 -0.472842 -3.269752 -0.263347 -1.520369 -3.333339 -1.146723 0.801430 -2.862413 0.158687 2.237038 0.898220 0.139198 -2.509561 1.195484 2.818729 -0.664167 3.055633 1.832549 -3.159609 -0.862807 -1.211811 1.773320 -2.057974 0.893058 -0.185480 -2.388184 -1.155622 2.953975 0.188929 -2.202594 -2.412784 -0.354916 1.574857 -1.943218 2.256272 0.140187 1.714227 -2.749917 -1.072255 1.781937 -0.866071 2.698019 0.271064 0.460169 0.331271 -0.700876 0.542232 -2.756233 -0.740608 1.812971 -2.548521 -0.615979 -1.860498 2.370924 0.246019 -0.303176 -1.855779 -4.141626 1.223137 -0.600401 0.118520 -0.511687 0.131606 -1.823200 1.125860 1.528779 -0.090453 2.984622 0.526560 1.807660 1.561836 1.407977 -2.032663 0.683880 -4.257372 1.280892 -2.156986 -0.450372 -1.122422 -0.283744 2.789926 2.189325 1.410503 -3.316115 3.590181 2.967257 -1.091095 -1.371483 1.018855 -1.061635 -2.587369 -0.165124 1.916008 0.306654 1.241449 -0.307383 1.240121 -0.975365 -1.021233 -0.740874 -1.421852 1.818617 -3.559915 -0.037716 0.124440 -0.351179 -1.065523 1.573751 1.204321 0.064725 3.807499 0.481256 -2.479809 1.816384 -3.242748 1.186554 5.482582 0.460532 -2.428541 2.388983 -1.924935 0.428837 0.961015 1.650881 0.716046 -0.811248 -2.271259 -0.798154 0.616245 -0.857079 3.268161 -0.070231 0.880980 -4.415781 2.275580 -0.677811 0.373215 5.479909 2.109964 -4.040103 0.798718 3.636481 -1.932726 -0.734843 0.865193 -2.403191 -1.337751 -2.281006 1.523780 0.992852 -2.650858 -1.776689 0.280382 -2.686238 2.009990 0.534834 -1.449982 -0.799396 -2.187171 -0.427032 6.076738 0.066831 0.158375 0.207944 -1.926785 -0.280243 -4.631142 -0.385489 0.650193 -1.598147 0.968651 -1.831211 -0.403864 3.398093 -2.119649 0.651369 -4.801779 0.588921 1.990696 0.390913 0.174248 -2.196823 -1.722567 0.203136 -1.035405 0.398577 -3.130132 1.067707 2.439164 -1.313467 2.803273 -0.298494 -2.259319 0.961503 1.991165 -2.112840 4.134267 -0.394977 3.926035 1.350403 2.596318 -2.455466 -0.760534 -1.654747 -1.628422 -2.573717 2.423588 -3.990723 -0.142256 2.155724 0.166906 -3.522798 1.803544 1.724886 0.522636 -0.643174 -0.506513 -1.596816 -0.004353 -1.478516 2.021304 1.607083 -0.969820 -3.026786 0.192295 3.802856 -1.312316 -1.041095 0.736093 0.715646 3.874745 -2.812702 1.503476 1.314222 1.561717 -3.144830 -4.222867 1.911595 -2.340823 -0.317292 0.421991 -4.541015 -2.920859 -1.257520 1.766608 -2.420246 0.345087 1.847791 3.965510 0.731533 -2.147904 0.961677 -0.097006 0.645546 -0.170424 1.304709 0.131935 1.557825 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.929265 1.214449 0.169391 -0.866883 2.061054 -0.214156 0.332363 1.019744 -0.197162 0.686116 -1.902613 0.004116 0.042047 -1.671241 0.345158 -0.012890 0.243447 0.795207 -0.230998 0.217802 0.693836 -0.466309 -0.077324 -1.185154 -0.045212 -1.084376 -0.374290 0.001752 0.125020 0.372747 -0.171757 0.489146 1.468633 0.434910 1.085099 1.182723 0.529116 1.554443 0.567490 0.501661 0.525221 0.694755 -0.375181 -1.894747 0.584341 -0.916585 -0.807255 -1.091775 0.124887 -1.463446 1.190764 0.946447 0.205157 -0.295525 -1.141633 0.137803 1.497272 0.144665 1.234654 0.906914 -1.016908 -0.015755 -0.564260 0.501761 -0.748225 0.783158 0.731507 -1.386323 -0.206520 1.021219 1.031631 -0.948605 -1.139010 -0.065052 0.042210 -0.671636 0.653628 -0.184164 -0.589085 -0.755130 -0.750491 0.537561 -0.296854 1.354185 0.054195 -0.200193 -0.834093 -0.273374 0.632361 -0.910685 -0.898532 1.224250 -0.343782 0.439931 -0.852601 0.860839 0.626257 -0.104582 -0.467933 -0.928595 0.615709 0.382236 0.133965 0.208763 -0.896362 -1.219422 1.027832 0.801126 -0.565048 0.873006 0.336019 0.651912 0.386866 0.351189 -0.818650 0.587253 -1.648757 0.516235 -0.051079 -0.023867 -0.154091 -0.230618 0.459991 -0.069437 0.416703 -1.135320 1.435436 0.993184 -0.551017 -0.807065 0.535079 -0.533688 -1.099526 -0.152281 0.634351 0.530146 0.141770 0.160052 -0.148051 -0.627672 -0.716165 -1.239868 -0.607789 1.764540 -1.392176 -0.061245 -0.223994 -0.364096 -0.600455 0.454102 0.304810 0.233681 1.418010 0.708538 -0.484691 0.192965 -1.129783 0.546271 2.380448 1.260428 -1.177136 0.559050 -0.253005 0.283197 0.551874 0.155910 0.166137 0.332715 -1.135443 -0.613666 -0.162350 -0.950773 1.266605 1.050890 0.756043 -1.572667 1.455215 0.132179 -0.378953 2.142369 0.804733 -1.367630 0.246469 1.562813 -0.925815 -0.322837 0.372346 -0.593852 -0.519794 -0.551312 0.310597 0.233803 -1.349830 -1.259429 -0.306619 -1.300148 1.275777 0.399547 0.435674 -0.360991 -0.958470 -0.292332 2.248068 0.179342 -0.242210 0.002540 -0.390554 -0.566562 -1.564601 0.175122 0.795315 -0.806189 -0.538589 -0.851031 -0.057910 1.439700 -1.226181 -0.023921 -0.695783 -0.241675 0.577507 -0.093672 0.301089 -1.891035 -0.846167 -0.062036 0.133671 0.581289 -0.354497 0.770772 1.511642 -0.647387 0.754811 1.339679 0.371270 0.331729 1.295467 -0.455234 1.239441 -0.556576 1.507584 0.373978 1.204624 -0.861384 -0.394713 -0.253366 -0.138956 -0.621317 1.255973 -1.394239 0.074914 0.997847 -0.546213 -0.867029 1.110884 0.631020 0.762850 -0.443334 -0.101120 -0.444594 0.026093 -0.483654 0.313534 0.972779 -0.365365 -1.435842 -0.363025 0.969747 -0.793563 -0.458062 0.570450 0.239857 1.482034 -1.088072 0.972151 0.222501 -0.080612 -1.660861 -1.279617 0.645723 -0.901996 -0.888245 0.616891 -1.944367 -0.741837 -0.712514 0.669559 -1.632334 -0.088775 -0.079250 1.326876 0.247061 -0.128548 0.612342 0.063792 0.666970 0.004098 0.220646 -0.005980 1.169878 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.624486 0.413756 -0.095622 -0.496885 1.662001 0.111361 0.035442 0.910229 -0.060467 0.604502 -1.163130 -0.104949 -0.035570 -0.919969 0.202314 0.201096 0.104705 0.280038 -0.461051 -0.225205 0.440370 -0.060166 0.072977 -0.638233 -0.037762 -0.660396 -0.354118 0.050160 0.325740 0.261489 -0.546710 0.135126 0.923873 -0.006003 0.572637 0.540005 0.775694 0.815049 0.004663 0.300730 0.417569 0.510991 -0.357904 -1.043862 0.317967 -0.801467 -0.752730 -0.412252 0.277433 -0.940262 0.673574 0.617516 0.116720 -0.192514 -0.386447 0.410146 0.728102 -0.091222 0.902494 0.533534 -0.870510 -0.330563 -0.544600 0.814307 -0.449981 0.895359 0.114122 -1.117714 -0.612478 0.617716 0.410907 -0.601662 -0.677593 0.078782 0.149107 -0.403828 0.507527 -0.136320 0.441264 -0.538616 -0.562987 0.339049 -0.362440 0.810446 -0.015702 -0.132440 -0.276384 -0.176571 0.301006 -0.728754 -0.523812 0.877136 -0.468079 0.400284 -0.817903 0.005446 0.077472 0.074901 -0.341573 -0.631881 0.289206 0.444871 0.080932 -0.253825 -0.072643 -0.758251 0.641653 0.544088 -0.018216 0.425162 0.106910 0.114248 0.112933 0.398633 -0.351395 0.278697 -0.895720 0.302179 -0.138052 0.153585 -0.307991 -0.016145 0.634261 0.029663 0.447975 -0.798466 0.883059 0.431723 -0.567847 -0.468107 0.286621 -0.429883 -0.823192 0.073876 0.401021 0.198071 -0.028427 -0.048516 0.230215 -0.370176 -0.815523 -0.476376 -0.401515 0.548108 -1.029591 -0.104348 -0.126810 -0.200401 -0.356934 0.546710 0.355736 0.233861 0.992579 0.491076 -0.289307 0.223128 -0.835792 0.579290 1.541737 0.502392 -0.853401 0.351463 -0.595842 0.366152 0.455408 0.110943 0.078743 0.583267 -0.364817 0.048745 -0.096662 -0.328917 0.987444 0.720026 0.620410 -1.048820 0.446665 -0.440822 -0.081773 1.317191 0.785791 -1.192929 0.326627 0.881356 -0.358329 -0.021539 0.215560 -0.536799 -0.380255 -0.575718 0.234529 0.419409 -0.875201 -0.724037 0.079159 -0.833795 1.001693 0.184297 0.177184 0.025049 -0.749823 -0.005323 1.361401 0.153473 -0.133878 -0.089994 -0.263598 -0.611389 -1.020680 0.127061 0.503519 -0.553700 -0.404708 -0.661959 -0.103356 1.061149 -0.585449 0.177381 -0.860869 0.101637 0.361812 -0.141230 0.484750 -0.967679 -0.519606 -0.330032 -0.242538 0.474035 -0.664879 0.222200 0.856398 -0.519190 0.819822 0.551322 -0.097915 -0.101984 0.692173 -0.224713 0.855231 -0.084132 0.736172 0.095183 0.860586 -0.585461 -0.064809 -0.328324 -0.132237 -0.343671 0.882884 -0.918223 -0.023718 0.593991 -0.569001 -0.622023 0.639418 0.363511 0.529709 -0.215541 -0.270104 -0.425463 -0.070597 -0.356304 0.193783 0.649854 -0.467650 -0.969002 -0.203262 0.411099 -0.738413 -0.412967 0.388168 0.119740 1.055284 -0.734086 0.401398 0.301271 0.038787 -1.261779 -0.719530 -0.077927 -0.411897 -0.512666 0.498397 -1.170355 -0.568078 -0.504058 0.340787 -0.968042 -0.303875 0.020725 0.976983 0.235345 -0.125482 0.539009 0.190351 0.487735 0.026332 0.094544 0.186273 0.427306 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = -0.095759 -0.025311 -0.044153 -0.005488 0.142658 -0.095859 -0.146457 0.282243 0.254570 0.161810 -0.054831 -0.107943 -0.025858 -0.026637 0.017733 0.078612 0.020764 0.136364 -0.083426 -0.138231 0.067318 0.130782 -0.026589 0.003488 -0.035333 -0.116881 -0.054624 0.040868 -0.007746 -0.050735 -0.172514 0.068944 0.246451 -0.031517 0.242079 0.124181 0.153903 0.086488 0.082751 0.215569 0.045136 0.095980 -0.084545 -0.085882 0.001636 -0.069992 -0.007024 -0.003939 0.083720 -0.035399 0.318315 0.038046 -0.000850 0.093295 0.027449 0.058780 -0.169493 0.112967 0.159769 0.050055 -0.173740 0.076055 -0.119509 0.349180 -0.148689 0.117607 -0.121839 -0.199149 -0.091403 0.006244 0.105547 -0.079146 0.020924 0.090354 -0.054702 -0.064611 0.104508 0.008226 0.358657 -0.030409 -0.166019 0.077647 -0.067873 0.042291 -0.059400 -0.006931 -0.206781 0.042069 -0.032961 -0.130835 0.006233 0.076104 -0.195736 0.115568 0.012961 -0.121806 0.027220 0.074845 0.122737 -0.073214 0.032011 -0.016733 0.033962 0.126170 0.192899 0.084614 0.098405 0.013487 0.049807 0.038156 0.008651 0.071369 0.119249 0.116222 0.154276 -0.050950 -0.149595 0.138975 -0.087613 0.008857 0.013969 0.072718 0.119366 0.034722 0.127458 -0.106549 0.013697 -0.030864 0.000750 0.003752 0.024355 -0.077662 -0.116134 -0.095505 0.106552 0.061241 -0.068855 -0.103038 0.069078 0.006014 -0.109741 -0.049106 -0.047820 -0.165690 -0.037385 -0.036598 -0.032280 -0.042362 -0.034417 0.113425 0.066491 0.113594 0.134653 0.099772 -0.019195 -0.254885 -0.202413 -0.012786 0.062660 -0.194736 -0.101632 0.116641 -0.120481 -0.032097 0.130670 0.153065 0.012820 0.131610 0.125444 0.042110 -0.151417 0.077942 0.180920 0.026365 0.026312 0.022493 -0.092466 -0.090856 -0.105452 0.260511 0.055770 -0.183394 -0.078173 0.005080 0.011689 -0.051547 0.060282 -0.093228 0.010432 -0.119424 0.031391 0.151701 -0.106193 0.024006 0.208817 -0.115759 0.139454 -0.051652 -0.030302 0.083113 -0.237451 0.106739 0.232315 0.094828 0.025859 -0.048176 -0.093234 -0.010957 -0.133522 0.004711 0.025282 0.026649 0.006045 -0.090404 0.024684 0.135083 0.012587 0.089205 -0.087964 -0.033632 0.075252 -0.177135 0.008221 -0.075007 -0.035213 -0.080072 -0.073854 0.096118 -0.120339 0.011678 0.169830 -0.042238 0.103585 0.265522 -0.058420 -0.085757 0.044235 -0.163479 0.143510 -0.060877 -0.300801 0.044318 0.019409 -0.109050 -0.055872 -0.066722 0.097435 -0.079453 0.028788 -0.019601 0.006008 -0.060433 -0.211171 0.059969 -0.018432 0.043725 0.043174 0.046197 -0.053847 -0.191368 -0.020794 -0.131698 0.003977 0.097192 0.040360 -0.117172 0.153445 -0.070172 -0.157328 -0.125475 -0.027712 -0.009893 0.118264 -0.117686 -0.062971 0.132798 0.063006 -0.140024 -0.031557 -0.169354 -0.031944 -0.034256 -0.071943 -0.088672 -0.148122 -0.053155 0.012473 -0.096653 -0.023129 0.065101 0.184932 0.130437 -0.113238 0.067268 -0.008748 0.118294 0.133687 -0.074517 -0.005655 0.084498 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -2.757200 3.173149 1.165040 -2.557506 5.299561 -0.233881 1.226167 1.508693 -0.190579 1.691612 -5.584116 -1.119977 -0.703169 -4.781805 0.810770 -1.318083 0.638585 1.864059 -0.973782 0.896808 2.231908 -1.751569 0.068690 -3.613846 0.090184 -2.933315 -1.390535 -0.159597 0.507304 1.462954 0.186318 0.983868 3.969661 1.440158 2.620707 3.014036 1.056855 4.979846 0.518451 1.534868 1.198960 2.541165 -1.121838 -5.649087 1.924123 -2.944823 -2.221920 -3.318795 0.573929 -4.305149 2.144723 2.743868 0.592830 -1.150060 -3.303761 0.185831 4.971899 1.225743 3.532568 2.525290 -2.098894 0.302774 -2.069672 -0.180873 -2.195072 2.588046 2.093536 -3.759211 -0.906221 2.489089 2.210969 -2.154284 -3.537601 -0.367213 0.665390 -1.693947 1.864330 -0.607325 -2.962382 -1.861075 -2.186600 0.966998 -0.696919 3.925075 -0.199733 -0.698452 -1.112650 -0.862419 2.044980 -2.448826 -2.746816 3.387547 -0.523082 0.883346 -1.751118 2.519543 1.423238 -0.282469 -2.053504 -2.062359 1.534017 1.239672 0.424343 0.626834 -3.505485 -3.741845 3.158914 2.502065 -1.738446 1.986223 1.309924 1.573651 0.616482 0.896139 -3.387249 2.197358 -4.308623 0.968850 -0.344643 0.176902 -0.280151 -0.361632 0.729088 -0.391368 1.051876 -3.158434 4.289874 2.887841 -1.848545 -2.145918 1.706674 -1.566511 -3.201451 -0.266496 1.825746 1.478322 0.307563 0.374401 -0.519095 -1.938273 -1.226582 -2.552247 -1.634770 4.700057 -3.348259 -0.268691 -0.810428 -1.412064 -1.525314 1.094137 0.501305 0.310789 3.913813 2.049854 -1.749863 0.568261 -2.755682 1.725572 6.951282 2.936736 -3.413618 1.074264 -0.194207 1.306988 1.670911 -0.025577 0.807306 1.281548 -3.009931 -1.566031 -1.056840 -2.981583 3.459893 3.474881 2.321321 -5.048181 4.340027 0.121603 -0.682151 5.685317 2.651722 -3.672852 0.581752 4.226042 -3.837373 -1.198452 0.640548 -0.884931 -0.926729 -1.874533 0.984054 0.448745 -3.686816 -3.989058 -1.327265 -3.850086 3.565953 1.100246 1.587930 -0.860408 -2.714767 -1.990740 6.031862 0.251041 -1.044420 -0.238505 -0.951266 -1.647748 -4.574162 0.845388 1.811872 -2.543531 -1.913942 -2.390431 0.289190 3.931699 -3.477910 -0.208541 -1.348338 -0.809243 1.402305 0.095031 1.495769 -4.567181 -2.606567 -0.141901 0.102721 1.922404 -0.547791 1.776563 4.349856 -2.023536 2.003505 2.763671 0.364693 0.949957 3.981231 -0.982059 3.373651 -1.758668 4.727325 0.350563 3.590012 -2.059689 -0.960254 -0.219911 -1.071983 -1.433635 3.708673 -3.888778 0.234107 2.906240 -1.725632 -2.173713 3.436541 1.510115 2.350826 -1.151759 0.360840 -1.706596 0.449583 -0.388700 0.533266 2.999419 -0.482780 -4.287406 -1.666283 2.567463 -1.910080 -1.999770 1.716350 0.300448 4.165505 -2.951335 2.687537 0.369874 -0.975353 -4.150587 -3.369228 1.822953 -2.894741 -2.497496 2.670209 -4.892068 -1.188336 -2.099684 2.032501 -3.692303 -0.590069 -0.544955 3.303239 1.142810 -0.223935 1.856848 0.423420 2.284101 -0.147285 0.164572 0.262050 3.359819 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -3.142203 3.503808 1.572971 -2.875004 6.055916 -0.492752 1.345164 2.309648 0.625771 1.760181 -6.479772 -1.571335 -0.711768 -4.910825 0.906189 -1.643759 0.674516 2.633239 -1.428521 0.729271 2.637360 -1.127596 -0.197717 -4.146703 0.094933 -2.292053 -1.953141 -0.269233 -0.432104 1.834463 -0.054243 1.432606 4.660942 1.893901 3.590844 3.725184 1.297501 6.008551 0.368776 3.617877 1.674336 2.815592 -1.163493 -6.665563 2.390459 -3.447413 -2.405523 -3.941853 0.395001 -5.257576 4.476984 2.959031 0.842723 -0.983176 -3.241351 -0.042043 4.972817 1.930801 3.857947 3.166964 -3.465967 1.424260 -2.507059 -0.115750 -2.312464 3.950114 2.781446 -4.885340 -1.302769 2.745819 4.140975 -3.421000 -4.558229 -0.475750 0.206909 -1.621877 2.395763 -0.623208 -2.633804 -1.615608 -2.663155 1.246216 -0.790380 4.179082 -0.420873 -0.956285 -2.567808 -1.128338 2.213184 -2.660329 -3.325594 4.124447 -0.897390 1.997140 -3.079174 1.795318 1.330940 -0.018722 -2.285053 -2.475878 1.996678 1.705267 0.389996 1.662758 -4.776872 -3.875150 4.269102 3.484992 -2.387595 1.761831 1.267547 2.114407 1.177311 0.940699 -3.200056 3.320150 -4.902230 1.435292 -0.577464 0.104616 -0.137076 -0.501456 0.601646 -0.512726 1.074514 -3.105947 4.805021 3.121083 -2.695898 -2.257046 2.092577 -1.984913 -3.955447 -0.618565 2.177315 2.183231 0.214525 0.347421 -0.947266 -2.570515 -1.231056 -3.782264 -2.058856 4.284572 -2.910851 -0.596161 -0.984779 -1.674465 -1.989461 1.533007 0.597615 0.390002 4.285935 2.223643 -1.627505 -1.194713 -3.301035 1.664610 7.545094 3.344272 -4.011608 1.202051 0.237883 1.741759 2.141398 -0.011479 0.489018 1.592070 -2.895500 -1.620746 -2.147548 -3.388501 3.847284 4.790450 2.519324 -5.485645 4.267965 -0.425363 -1.232009 6.897049 3.403305 -4.054202 -0.620339 4.649850 -3.460599 -1.849338 0.797492 -0.913204 -1.284162 -1.735571 1.060584 0.305094 -4.230180 -4.608203 -0.628207 -4.454988 4.047458 1.201879 1.805974 -1.587153 -3.853390 -2.181538 7.405186 0.260955 -1.259174 0.329771 -0.926675 -0.963428 -5.170229 0.859727 2.580245 -2.286296 -2.463469 -2.495034 0.867552 4.479176 -4.299347 -0.284904 0.217108 -1.695863 1.582234 -1.461688 1.798795 -6.329202 -3.056419 -0.937226 0.373168 2.662379 -0.349198 1.536576 5.440360 -1.908247 2.204460 5.097871 0.642467 0.301746 4.763347 -1.060761 3.801146 -2.412816 4.437004 0.427672 4.009929 -2.396833 -1.546256 -0.367632 0.026733 -1.787559 4.650862 -4.145785 0.550951 2.625503 -2.523858 -1.716707 4.079437 1.707572 2.242824 -1.345311 0.584356 -2.244016 0.255571 -0.892496 0.405843 3.445520 -0.650216 -5.027297 -1.765609 2.405159 -2.838370 -1.875359 1.876449 0.258443 5.019882 -3.296433 2.945704 0.831204 -1.590470 -5.097798 -3.346698 1.449211 -3.696368 -2.959065 2.284904 -5.029216 -1.996022 -2.241444 2.379680 -3.799299 -0.954018 -0.456796 3.837587 1.972675 -0.199235 2.013009 0.522045 3.041269 0.216276 -0.118544 0.173458 4.266393 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.365662 1.689623 2.013425 -0.939534 1.403464 0.202414 0.587324 0.682170 -0.365294 0.895684 -2.581905 -1.043158 -0.846453 -1.585033 0.113297 -1.562636 0.153553 0.320987 -0.340218 0.819237 1.120955 -1.002732 -0.195090 -1.569232 -0.020957 -0.792960 -0.900715 -0.239773 0.843539 0.305189 0.575669 0.217415 2.329009 0.848776 2.153233 1.485254 0.240787 2.578609 0.147292 0.490380 -0.313125 1.852771 -1.012663 -2.243400 0.632310 -1.645041 -0.118158 -1.155099 0.260672 -1.067520 1.014961 1.229173 -0.032836 -0.081440 -1.370785 0.116906 1.602028 1.015192 2.132745 0.829986 -0.879962 0.435032 -1.511741 -0.054551 -0.952417 1.528248 0.189937 -1.145954 0.284442 -0.161964 0.874430 -1.036057 -1.319199 0.757000 0.083873 -0.943038 1.074202 -0.494304 -2.097993 -0.988019 -1.524001 0.440371 0.133554 1.686533 -0.455745 -0.301697 -0.641504 0.265447 0.502927 -1.775472 -0.772827 1.483745 -0.883222 0.024206 -0.350601 1.283711 -0.207481 0.777355 -1.156987 -0.449860 0.908131 0.426300 0.212437 -0.588883 -0.602052 -1.867138 1.664869 0.975777 -0.811389 0.836413 1.474408 1.552314 1.505491 1.173263 -1.664917 0.803968 -1.750507 0.163716 -0.259256 -0.114209 0.254476 0.666654 -0.771207 -0.179046 1.144827 -1.805882 1.250661 1.179089 -1.006504 -1.093909 0.447372 -1.662573 -1.792855 -0.653119 0.883601 1.185464 0.019846 -0.705584 -0.631840 -0.847708 -0.187525 -1.465846 -0.122027 1.818531 -1.289264 -0.547442 -0.426578 -0.623498 -0.838930 1.187575 0.431869 0.440501 1.539610 0.993928 -0.802173 -0.811175 -1.205285 0.173453 2.478051 0.213400 -2.014748 0.895393 -0.462419 0.246018 1.098387 0.330650 1.031913 0.515603 -1.650013 -1.518370 -0.186493 -1.083242 1.849032 1.352083 0.910200 -1.450015 2.681644 -0.371531 -1.468293 2.611636 0.697590 -1.319808 -0.745321 1.065478 -1.713293 -0.744427 0.635086 -0.634249 0.085331 -0.964332 -0.196585 0.274718 -1.326016 -1.308196 -0.054440 -2.243016 2.360210 0.347019 1.087909 -0.445964 -1.671317 -2.082720 2.804728 0.054522 -0.703958 -0.613329 -0.391837 -0.510155 -2.095054 0.572493 0.506821 -0.647251 -1.266444 -1.435283 0.816152 0.962445 -1.188528 0.395844 -0.327407 -1.404351 0.556578 -0.554416 1.021244 -1.419993 -1.432903 -0.317201 -0.204346 1.608662 -0.310372 1.640874 2.807968 -0.673913 1.483880 1.538264 -0.486756 0.031636 1.731762 -1.182567 1.719772 -1.436049 1.274053 -0.300171 1.522488 -1.322271 -0.903429 0.367548 -0.194681 -0.449515 1.195650 -0.935393 0.346322 -0.276298 -1.713973 -0.142143 1.096035 -0.253461 0.437582 -0.122628 0.735440 -1.332545 -0.116751 -0.452073 -0.023269 1.697006 0.098555 -1.777402 -0.216484 0.005739 -0.253900 -0.342642 0.339331 -0.269146 1.627339 -1.588048 0.117287 0.060412 -0.805774 -1.470053 -1.570908 0.115026 -1.628113 -1.139909 1.500932 -1.554150 0.241362 -1.232735 0.094710 -1.340057 -0.455763 0.117228 1.907918 1.088171 -1.174174 0.548021 -0.085657 1.997525 0.585987 -0.188249 -0.129448 1.421892 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.967134 3.903886 4.916941 -2.049687 2.460390 1.564716 0.918750 1.599565 -2.385389 1.855368 -4.464099 0.124210 -0.623451 -2.127044 0.154812 -2.986800 -0.852775 -0.696307 -0.219114 1.986137 1.447581 -2.113081 -0.411503 -2.624644 -0.546106 -2.217804 -0.984666 -0.380914 2.426151 1.037276 1.549687 -0.367992 2.924998 0.680761 2.876352 2.083448 1.110025 3.457935 0.027227 -0.171223 -0.675679 2.547186 -1.869630 -2.581059 0.551166 -2.760222 -0.432065 -1.222904 0.125586 -1.667790 0.505395 2.132751 -0.172961 -0.866715 -2.065166 1.615512 2.229589 0.006879 3.440912 1.019005 -1.310266 -1.139388 -3.001723 0.949869 -1.216638 2.702334 -0.221948 -0.899081 1.050221 -0.325152 0.517628 -0.453825 -1.365209 1.758177 0.319857 -2.039610 1.472427 -1.629616 -4.577993 -1.531607 -1.326856 1.364826 1.087979 2.734019 -0.229027 -0.040470 -0.364899 1.177368 0.286984 -3.260995 -1.243138 2.821062 -1.529563 -1.092308 -2.045466 2.643296 -0.431244 1.278538 -1.654252 -0.361057 1.973636 1.289738 0.301585 -4.196906 0.019538 -4.466023 2.528082 2.067189 -1.177785 1.558547 1.033463 2.873733 2.661824 2.428851 -2.764149 1.468051 -2.618025 -0.683074 0.438918 -0.082221 -0.266298 1.029656 -1.782857 0.522971 2.153928 -3.081246 2.182607 1.717756 -2.127894 -1.943562 0.324424 -2.749076 -2.632562 -0.821904 0.678196 2.067033 0.097638 -1.011562 -0.828911 -1.271895 -0.585476 -3.600645 0.680021 3.681741 -2.938132 -0.782055 -0.363891 -0.087254 -1.540714 2.590293 1.453963 0.564707 2.299163 1.329117 -0.125106 -0.286691 -1.501189 0.187273 3.660810 0.982817 -3.407064 2.033875 -1.837705 -0.164216 1.078418 0.345142 1.471788 1.695594 -4.377838 -4.029578 0.749810 -2.000950 3.149009 2.332969 0.895636 -2.148257 5.468149 -1.933610 -2.778445 3.055210 1.751627 -1.512897 -1.685890 1.693631 -2.916943 -1.264493 1.568860 -1.666689 0.162789 -0.717324 -1.170788 0.443780 -1.357466 -2.263769 -0.701815 -3.591424 4.517359 0.660424 2.452360 -1.357367 -1.459172 -4.616787 3.298074 -0.442530 -1.671401 -1.340343 -0.088366 -1.989536 -3.063677 0.806318 1.472254 -1.206876 -2.693569 -2.646768 1.038346 0.341568 -2.197852 0.552175 -2.042453 -2.988889 0.933940 -0.467200 1.937148 -1.486088 -1.995923 -1.187817 -0.366745 2.664279 -0.996395 4.034439 4.855697 -0.671761 3.884122 0.995637 -1.834040 -0.237412 3.020646 -1.897285 3.049220 -1.939269 1.752903 -0.455168 2.449677 -2.402704 -1.265970 0.652109 -1.639843 0.013398 1.591492 -1.273850 0.417236 -1.617046 -2.996987 -0.093623 1.809974 -0.670925 0.125477 -0.258486 1.913494 -1.375778 -1.111964 -1.761533 -0.258251 2.507630 -0.805358 -2.125603 -0.094888 -0.007553 -0.097535 0.026327 0.434366 0.035080 2.356726 -2.706569 0.379483 -0.263860 -1.491351 -3.345816 -2.698465 -0.002094 -2.608032 -2.490421 2.166737 -2.756539 0.581688 -2.181327 -0.308586 -2.457298 -1.644214 0.998061 3.280714 1.060599 -2.410541 0.731639 -0.709267 3.505754 1.226341 0.181691 -0.192059 1.371546 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -7.987780 11.930001 11.588867 -6.644215 9.628273 0.494679 4.127954 3.063566 0.597949 4.528133 -16.802914 -5.489936 -3.736409 -10.073160 0.686302 -10.240041 0.486797 4.480890 -2.256725 5.023586 6.730103 -4.908031 -1.483970 -10.998119 0.171676 -6.648441 -6.080038 -1.965419 0.445917 4.199263 5.725359 1.861604 12.790743 6.741061 11.309611 10.018403 -0.120223 16.167496 0.146908 9.995800 0.262376 9.478727 -4.723233 -14.658814 4.927872 -9.377663 -2.228313 -9.844301 0.000601 -11.079279 6.533706 7.162366 1.219115 -0.642530 -7.945851 -1.017889 12.215979 6.888808 10.498340 6.613788 -5.935822 6.645010 -7.797742 -4.803221 -4.864813 8.988316 5.438189 -8.544090 0.839734 1.738407 8.888603 -6.782684 -8.397440 1.709960 0.261679 -4.632267 5.834384 -2.724713 -15.808498 -4.947566 -6.542247 2.425006 2.429858 9.843466 -1.657454 -2.588093 -4.846256 -0.462719 4.743548 -8.017920 -7.112854 9.766837 -2.430594 0.938742 -3.780899 7.551475 2.385989 3.200516 -5.799459 -3.680173 5.501332 3.701999 0.509858 2.551887 -12.019827 -10.759002 9.782117 7.276480 -7.893437 3.999304 3.814004 8.754893 6.676711 4.542647 -11.562901 9.579352 -10.715941 2.661891 -2.610115 -0.360561 2.217571 0.335599 -3.684592 -0.553260 3.905895 -7.981534 9.472051 8.289175 -6.761604 -6.764645 4.182163 -8.519284 -10.376044 -3.114847 4.309175 7.844462 1.171496 -2.260804 -4.900511 -7.093158 2.394247 -11.089752 -2.296682 12.190712 -6.304161 -2.825761 -2.266105 -3.183384 -6.162740 4.994983 1.215020 0.488509 10.029858 4.873088 -4.401371 -5.532817 -6.034498 0.238188 16.944699 6.393304 -10.089993 3.582323 2.556569 2.532438 5.631976 -0.008504 3.398368 2.878119 -11.060375 -9.150933 -5.240584 -9.655601 9.992958 11.845681 4.755244 -11.122186 16.696543 -1.167666 -7.670033 15.876218 7.319261 -7.434637 -4.196285 8.346746 -11.726146 -6.425256 3.178177 -1.544854 -1.294204 -3.256519 -0.194698 -1.413526 -7.994863 -9.992429 -1.416099 -12.890267 11.865839 3.250598 7.855448 -3.950799 -8.761446 -13.079325 16.881550 0.406998 -4.564623 -1.052367 -0.820110 -1.426462 -12.501568 3.069985 4.515191 -4.992178 -7.053199 -6.737769 5.825841 6.772886 -10.526064 0.317078 2.673308 -9.325097 2.673431 -5.028236 5.583492 -14.015275 -8.513929 -2.831869 0.980085 8.538340 1.057870 8.027504 17.115745 -3.082623 5.840446 10.852716 -1.150726 0.538725 12.158946 -5.132491 8.956109 -9.121575 9.720969 -0.377816 9.382629 -6.596539 -5.714380 1.984256 -1.485558 -3.103181 9.575620 -7.296284 2.530486 1.885410 -8.705008 -0.124226 9.161154 -0.182009 2.954779 -2.562068 5.805929 -8.775843 1.458910 -1.644418 -0.898840 9.687144 1.664252 -12.670204 -3.627715 3.004454 -3.322503 -4.785459 2.748589 -0.915469 9.951146 -8.339682 4.176089 0.680590 -6.412593 -9.903666 -8.588388 3.987967 -11.815505 -8.874976 6.783131 -9.517121 0.008736 -6.698442 2.498166 -8.207058 -4.061914 0.364428 9.406680 6.748829 -4.444811 2.887755 -0.247927 11.199712 2.656466 -0.417397 -1.312427 11.010745 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int**, int**, int**) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::__copy_move::__assign_one(int**, int**) = -0.424587 0.331633 -0.341217 -0.359382 1.305559 -0.051934 -0.002132 0.700651 -0.320203 0.486882 -0.754154 0.223971 0.056774 -0.905723 0.224109 0.422777 0.194527 0.223712 -0.152348 -0.080413 0.267309 -0.265003 0.086662 -0.426281 -0.053856 -0.747173 -0.010707 0.104673 0.417456 0.094232 -0.460311 0.180480 0.642194 -0.074487 0.291413 0.399007 0.551621 0.468611 0.326312 -0.382624 0.305536 0.249045 -0.186767 -0.738143 0.179598 -0.425211 -0.597044 -0.254402 0.236341 -0.591707 0.154073 0.494073 0.061282 -0.208399 -0.540805 0.373841 0.669372 -0.270325 0.663622 0.349729 -0.446356 -0.634019 -0.233214 0.722157 -0.408480 0.195831 0.065763 -0.678963 -0.261033 0.641655 -0.054161 -0.240567 -0.344661 0.006705 0.188418 -0.421693 0.286300 -0.038171 0.253937 -0.513011 -0.362400 0.280731 -0.332275 0.700323 0.118012 0.002088 -0.050390 -0.128692 0.263555 -0.532487 -0.311959 0.520172 -0.284522 0.122923 -0.394379 0.397525 0.289623 -0.156599 -0.180594 -0.549557 0.184474 0.143495 0.111201 -0.412258 0.153749 -0.594275 0.318114 0.169535 0.112235 0.535070 0.138597 0.021464 -0.038865 0.244811 -0.275132 -0.096325 -0.771872 0.188094 0.025931 0.054691 -0.337546 -0.075819 0.620604 0.036254 0.335083 -0.737464 0.703806 0.385939 -0.125532 -0.391688 0.197656 -0.128172 -0.436620 0.080490 0.344210 -0.042792 0.051636 0.105420 0.292898 -0.106145 -0.792560 -0.183003 -0.320341 0.839686 -1.037423 0.074681 -0.084772 -0.141303 -0.175471 0.220949 0.256389 0.230352 0.717196 0.382638 -0.272058 0.698381 -0.677310 0.510279 1.225410 0.506405 -0.550711 0.334401 -0.544423 0.148799 0.211555 0.134095 0.135855 0.256324 -0.411878 -0.046123 0.292363 -0.192663 0.679658 0.199686 0.432896 -0.784540 0.437766 -0.038746 0.088840 0.913772 0.392393 -0.919157 0.643496 0.828079 -0.408822 0.146972 0.158037 -0.495322 -0.242879 -0.496799 0.241567 0.412048 -0.727782 -0.469720 -0.193267 -0.511865 0.630575 0.157351 0.054460 0.093480 -0.325063 0.263329 0.931036 0.134538 0.020471 -0.165555 -0.346351 -0.759861 -0.769512 0.024738 0.266735 -0.538966 -0.121591 -0.522457 -0.395575 0.857171 -0.347043 0.083937 -1.173379 0.383952 0.340835 0.373240 0.146030 -0.476186 -0.310930 0.082036 -0.182090 0.119482 -0.564680 0.303250 0.402829 -0.464161 0.608308 0.046082 0.042126 0.263891 0.412367 -0.213980 0.656164 0.078369 0.821206 0.234809 0.609194 -0.456230 0.070216 -0.288602 -0.320591 -0.313405 0.520155 -0.816214 -0.123971 0.712881 -0.137913 -0.792218 0.384453 0.414315 0.563813 -0.187281 -0.326016 -0.066175 -0.056958 -0.314372 0.318635 0.380393 -0.393574 -0.560172 -0.085387 0.581619 -0.401372 -0.305900 0.330958 0.189905 0.730381 -0.583370 0.433622 0.138849 0.279693 -0.850313 -0.707472 0.196401 -0.137093 -0.309633 0.431201 -1.199719 -0.432127 -0.317084 0.335767 -0.945821 0.036537 -0.053357 0.725322 -0.144990 -0.026355 0.439128 0.087021 0.056185 -0.136385 0.238852 0.074148 0.262834 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int**, int**, int**) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = -0.479472 0.575267 0.258330 -0.401345 0.642307 -0.084408 0.034144 0.297682 0.484154 0.246470 -0.989665 -0.501235 -0.142739 -0.680977 0.115921 -0.217143 0.054866 0.465741 -0.198919 0.018792 0.443061 -0.148138 -0.075115 -0.661702 0.070443 -0.287875 -0.363222 -0.101383 -0.207384 0.300564 -0.040808 0.226604 0.715064 0.434065 0.622267 0.590527 0.086404 0.998143 0.109221 0.961656 0.179762 0.520364 -0.208963 -1.071740 0.458170 -0.570915 -0.097938 -0.687488 0.025028 -0.731748 1.075656 0.393476 0.125092 -0.100936 -0.476940 -0.243029 0.610674 0.614257 0.576160 0.509576 -0.440086 0.479578 -0.386883 -0.165967 -0.435345 0.682911 0.533249 -0.711660 -0.180218 0.283899 0.838759 -0.493023 -0.655146 -0.075875 -0.121924 -0.171321 0.401802 -0.097408 -0.333735 -0.109247 -0.497035 0.181307 -0.087089 0.603757 -0.143720 -0.213619 -0.627051 -0.143009 0.370139 -0.336854 -0.523987 0.504182 -0.094728 0.409756 -0.156147 0.228115 0.196161 0.081144 -0.201382 -0.198070 0.319378 0.301058 0.045261 0.663738 -0.802727 -0.485230 0.867628 0.560801 -0.507505 0.089601 0.369026 0.344813 0.221159 0.129746 -0.387094 0.501714 -0.724581 0.224117 -0.016172 0.018645 0.136450 -0.047332 -0.040226 -0.244440 0.092688 -0.366538 0.659428 0.496561 -0.387702 -0.244089 0.345193 -0.383539 -0.650743 -0.159273 0.324553 0.457241 -0.026926 0.015009 -0.282017 -0.463550 -0.115822 -0.615274 -0.342949 0.572846 -0.219916 -0.161055 -0.176740 -0.326127 -0.321142 0.196054 -0.016508 0.024204 0.618593 0.337931 -0.271628 -0.652409 -0.407729 0.170342 1.069175 0.339382 -0.600380 0.100938 0.218504 0.272803 0.395065 -0.009025 0.067327 0.270229 -0.281860 -0.204725 -0.600136 -0.581365 0.560320 0.749433 0.453191 -0.678972 0.661983 0.100557 -0.298328 1.124488 0.412260 -0.487451 -0.339851 0.607642 -0.553877 -0.298403 0.093720 0.061656 -0.043652 -0.253995 0.133575 -0.011104 -0.655088 -0.731011 -0.056076 -0.727042 0.637924 0.188982 0.459822 -0.216679 -0.715392 -0.226949 1.170889 0.091133 -0.236327 0.071679 -0.071671 -0.005708 -0.723565 0.186311 0.402145 -0.286513 -0.359436 -0.310909 0.278660 0.654072 -0.687422 -0.118962 0.404769 -0.402701 0.185195 -0.489819 0.250643 -0.972058 -0.507037 -0.129322 0.102605 0.535991 0.121734 0.228110 0.927223 -0.244617 0.196671 1.171245 0.349038 -0.018940 0.772074 -0.135087 0.509042 -0.575435 0.313510 0.012943 0.592728 -0.331955 -0.322893 0.006840 0.127083 -0.217801 0.679518 -0.508128 0.153906 0.317575 -0.502617 -0.005464 0.645164 0.178739 0.393453 -0.188602 0.134680 -0.436369 0.127070 -0.028079 -0.018373 0.586902 0.131089 -0.826515 -0.319252 0.237620 -0.416643 -0.358822 0.269593 -0.081771 0.770295 -0.447872 0.397060 0.171469 -0.346487 -0.671770 -0.316062 0.116695 -0.510225 -0.392421 0.327833 -0.652535 -0.239343 -0.345376 0.329289 -0.474910 -0.010564 -0.180312 0.498851 0.471565 -0.075927 0.255511 0.104233 0.565827 0.192581 -0.203021 0.004892 0.763760 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = -0.319156 0.068032 -0.134641 -0.270452 1.035769 0.010298 -0.117974 0.520674 0.289096 0.355881 -0.605010 -0.188847 -0.016849 -0.432960 0.149661 0.181676 0.070391 0.184506 -0.375898 -0.352523 0.194594 0.179759 0.091581 -0.287203 -0.044892 -0.369422 -0.258812 0.094638 0.042107 0.137999 -0.480571 0.135263 0.504118 -0.114189 0.245781 0.232231 0.566108 0.400079 -0.064303 0.341169 0.452660 0.172081 -0.152976 -0.540825 0.166721 -0.413587 -0.511750 -0.175073 0.214195 -0.542271 0.508038 0.305170 0.116198 -0.143658 -0.141914 0.296881 0.195746 0.012353 0.458486 0.316746 -0.602434 -0.139695 -0.334459 0.632410 -0.344272 0.647061 -0.100422 -0.781886 -0.604807 0.526333 0.234607 -0.304291 -0.433045 -0.070592 0.083068 -0.176241 0.278902 -0.001110 0.720609 -0.157405 -0.331858 0.275319 -0.249190 0.372678 0.020824 -0.060608 -0.161079 -0.144850 0.173351 -0.323706 -0.322107 0.464046 -0.311547 0.330554 -0.419368 -0.284217 0.036493 -0.072087 -0.056084 -0.414558 0.128324 0.220307 0.039644 -0.006736 0.061842 -0.334931 0.419828 0.428516 0.068300 0.099856 -0.020137 -0.057791 -0.047377 0.137037 -0.012699 0.072302 -0.510933 0.205333 -0.105998 0.043574 -0.284713 -0.020978 0.440858 0.061034 0.220430 -0.403793 0.549487 0.152487 -0.381917 -0.086291 0.168033 -0.067988 -0.443234 0.109440 0.248974 0.057515 -0.054049 0.075408 0.223122 -0.203557 -0.464811 -0.083076 -0.303958 0.035449 -0.439422 -0.028131 -0.047728 -0.140367 -0.170328 0.313414 0.222441 0.146991 0.555157 0.255615 -0.164184 -0.070953 -0.557244 0.418449 0.805216 0.035447 -0.433467 0.196641 -0.395135 0.261058 0.237525 0.102132 -0.096080 0.435490 0.061679 0.228514 -0.279904 -0.089856 0.547419 0.403400 0.344207 -0.592422 -0.090709 -0.400202 0.159997 0.727159 0.508170 -0.742093 0.125874 0.600973 -0.153271 -0.072569 0.124589 -0.325589 -0.226064 -0.387028 0.196216 0.352866 -0.536009 -0.369922 0.161389 -0.388554 0.480792 0.075738 -0.057886 0.070710 -0.455953 0.107135 0.781062 0.106233 0.044310 0.008323 -0.210791 -0.258342 -0.597857 0.015762 0.373839 -0.292971 -0.131082 -0.313009 -0.094618 0.669531 -0.321084 0.137908 -0.415025 0.214147 0.238618 -0.140604 0.249732 -0.394095 -0.213131 -0.189800 -0.269539 0.173494 -0.485790 -0.091729 0.285219 -0.306628 0.531163 0.357295 -0.183232 -0.163847 0.319886 -0.016641 0.490751 0.032221 0.171291 0.111872 0.463813 -0.281762 0.038848 -0.269906 -0.131501 -0.270945 0.517821 -0.597873 -0.062458 0.382205 -0.290733 -0.388034 0.356759 0.358366 0.343160 -0.147546 -0.217059 -0.217114 -0.035526 -0.164072 0.191655 0.286195 -0.298982 -0.529965 -0.063004 0.323432 -0.635887 -0.396161 0.244633 0.076550 0.653866 -0.393548 0.270565 0.290620 0.121612 -0.827371 -0.258860 -0.174926 -0.187305 -0.166033 0.118426 -0.644645 -0.522630 -0.211425 0.307797 -0.340847 -0.174477 0.061875 0.528281 0.162044 -0.043262 0.345808 0.159756 0.122946 0.029771 -0.066218 0.168440 0.155484 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = -2.224255 2.298161 1.153540 -2.264100 3.965668 -0.619743 0.736829 1.234764 1.035079 1.136907 -4.606289 -1.445235 -0.606489 -3.769915 0.551642 -1.598125 0.675191 1.791215 -1.020476 0.904403 1.832581 -1.093394 -0.004094 -3.012405 0.033604 -1.879943 -1.246135 -0.077042 -0.417118 1.102527 0.531647 1.011895 3.446404 1.574888 2.662214 2.529686 0.571420 4.392343 0.367469 2.297399 1.218195 1.952642 -0.607936 -4.707539 1.537341 -2.207276 -1.748861 -2.880265 0.299905 -3.691580 2.448113 2.145757 0.634368 -0.767094 -2.674196 -0.264717 3.712250 1.662655 2.691487 2.165972 -2.125119 1.161555 -1.776516 -0.757050 -1.877151 2.198329 1.945385 -2.988315 -0.691907 2.176197 2.338889 -2.011838 -3.074803 -0.574561 0.511930 -1.168365 1.732484 -0.391319 -2.104719 -1.111517 -1.527476 0.855205 -0.319409 2.844237 -0.348909 -0.448170 -1.238565 -0.809122 1.525457 -1.794394 -2.188628 2.496250 -0.661845 0.827774 -1.288424 2.080137 1.095156 -0.298801 -1.720401 -1.784509 1.356789 0.760511 0.220114 1.496203 -3.453110 -2.694279 2.993631 2.381920 -1.727086 1.377875 0.965179 1.721177 0.781359 0.575153 -2.670050 2.356358 -3.618113 0.827810 -0.625445 -0.004950 0.000316 -0.405358 0.418028 0.000106 0.595713 -2.249480 3.674376 2.549906 -1.529661 -1.449753 1.507187 -1.230259 -2.606860 -0.418439 1.558028 1.442713 0.399926 0.318784 -0.695309 -1.763492 -0.340742 -2.162153 -1.372307 3.213831 -1.781473 -0.255755 -0.544712 -1.149589 -1.288951 0.777631 0.320919 -0.127889 3.152255 1.256275 -1.530326 -0.708057 -2.111986 1.075319 5.485187 1.713463 -2.710212 0.967975 0.381061 1.088502 1.258235 0.109902 0.571694 0.662709 -2.212500 -1.344578 -1.519285 -2.532392 2.614679 2.791749 1.618832 -4.174320 3.364006 0.051850 -0.456582 4.970758 2.186806 -2.836999 -0.509328 3.446041 -3.204369 -1.416920 0.484247 -0.262371 -0.588270 -1.321596 1.028875 -0.008387 -2.856319 -3.314416 -0.802175 -3.186903 2.535430 0.826659 1.176271 -1.199069 -2.440459 -1.743947 5.387738 0.124377 -0.905796 0.316883 -0.783708 -0.384445 -3.879550 0.457164 1.493982 -1.725614 -1.196905 -1.549072 0.654626 3.069695 -3.161138 -0.306059 -0.120410 -1.107376 1.177896 -0.686048 0.905690 -3.771530 -2.173859 -0.234402 0.193123 1.608961 -0.191015 1.104299 3.686693 -1.270657 1.484739 2.878594 0.165544 0.660409 3.392809 -0.869698 2.908321 -1.823009 3.372157 0.350761 2.791941 -1.588784 -1.113871 -0.209580 -0.706280 -1.430380 3.098755 -3.106993 0.370970 2.067031 -1.266541 -1.405992 2.952622 1.304640 1.610506 -0.869334 0.647798 -1.673370 0.403721 -0.346266 0.539060 2.264360 -0.013529 -3.549613 -1.324894 2.369452 -1.586323 -1.653155 1.274265 0.143162 3.552184 -2.282282 2.258360 0.608481 -0.997154 -3.070825 -2.464085 1.567722 -2.764861 -1.751013 1.520133 -3.690333 -1.267342 -1.503297 1.925876 -2.256341 -0.291799 -0.190158 2.726899 1.542608 -0.510423 1.316788 0.192404 1.854808 0.153223 -0.044213 0.118302 3.040475 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = -2.249101 3.090900 1.772798 -2.290840 3.662158 -0.348555 0.993580 1.066044 0.893972 1.003019 -4.890600 -1.324784 -0.575577 -3.606785 0.629919 -1.705525 0.162806 2.075483 -0.842081 0.738235 2.057630 -1.023774 -0.212095 -3.344127 0.176854 -1.805702 -1.420558 -0.419129 -0.818087 1.788345 0.669097 1.005490 3.040732 1.800992 2.314017 2.727636 0.441061 4.770571 0.200053 3.583823 1.118755 2.135059 -0.760115 -5.197075 2.138323 -2.498616 -1.170785 -3.347399 0.075948 -4.096473 3.506071 2.066675 0.715542 -1.009893 -2.562725 -0.595419 3.841599 1.951907 2.492357 2.446570 -2.010033 1.560691 -1.830511 -1.184317 -1.839012 2.975927 2.714302 -3.194119 -0.765135 1.945629 3.352307 -2.107475 -3.334199 -0.736632 -0.106343 -0.965902 1.604732 -0.572152 -2.985839 -0.561482 -1.718587 0.798422 -0.152603 3.005260 -0.407829 -0.857984 -2.057966 -0.844891 1.926548 -1.456308 -2.771048 2.850070 -0.037337 1.386214 -1.699971 1.596685 1.197281 -0.195417 -1.426921 -1.241633 1.565102 1.474896 0.264746 1.944351 -4.639882 -2.982037 3.548335 2.827828 -2.460188 0.912011 0.846290 1.634644 0.487227 0.305586 -2.516197 2.951305 -3.691544 0.884802 -0.040341 0.157654 0.271420 -0.600986 -0.184866 -0.752512 0.225370 -1.837159 3.708602 2.449029 -1.950387 -1.474995 1.755482 -1.271006 -2.774442 -0.503541 1.454799 1.917810 0.065471 0.573495 -1.173342 -2.133104 -0.261681 -3.265398 -1.555264 3.551462 -1.634106 -0.451510 -0.810286 -1.347345 -1.470288 0.685471 -0.015692 -0.141795 2.998824 1.571537 -1.103408 -1.396262 -1.848373 0.999351 5.411471 2.724734 -2.745006 0.470920 0.981504 1.285706 1.444918 -0.400889 0.203448 1.402425 -2.328008 -1.516136 -2.131555 -3.162525 2.542700 3.879634 1.931822 -4.138179 3.595611 0.133571 -0.865330 4.860485 2.452793 -2.410860 -0.937720 3.415416 -3.003685 -1.717758 0.387677 0.087577 -0.660744 -0.835509 0.681846 -0.250402 -3.027386 -3.880343 -0.994338 -3.279621 2.761721 0.981080 1.960988 -1.368214 -2.671619 -1.987357 5.118122 0.150805 -1.254050 0.328280 -0.339636 -0.437941 -3.600933 0.880091 2.132708 -1.671349 -2.001805 -1.492834 0.975048 2.966503 -3.592521 -0.744515 1.280534 -1.779100 0.969972 -1.277236 1.286185 -4.843523 -2.279073 -0.544566 0.697531 2.145258 0.636416 1.196034 4.206706 -1.310071 1.182137 4.284552 1.017453 0.269361 3.944072 -0.397730 2.471153 -2.248829 3.111571 0.138410 2.881958 -1.517854 -1.271780 0.095496 -0.183540 -0.981670 3.358708 -2.864880 0.544509 1.863898 -1.861856 -0.614695 3.389629 1.237863 1.753927 -1.095652 0.977421 -1.475251 0.458946 -0.210711 -0.043943 2.659399 0.001119 -3.889488 -1.802751 1.844585 -2.030531 -1.685838 1.463836 0.103549 3.566436 -2.136262 2.576061 0.390739 -1.795183 -3.602898 -2.041916 1.476729 -2.792613 -2.300112 1.615139 -3.369896 -1.058483 -1.612075 2.009284 -2.626491 -0.582364 -0.763403 2.176462 1.579036 0.197158 1.391797 0.405029 2.398665 0.348881 -0.438857 0.123332 3.531925 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -17.361931 20.463787 26.999688 -8.466680 17.783384 -0.075624 16.360341 10.092283 -13.849643 13.686818 -29.105958 -8.167643 -9.984930 -15.042638 -0.525683 -14.968619 3.168410 2.453230 -0.432884 13.711977 13.521885 -14.719242 -4.208165 -17.265931 -0.650650 -8.222425 -8.529141 -3.489115 13.641846 3.080920 5.702233 2.815688 25.971155 12.304631 32.001629 23.085598 -6.878143 28.708032 2.785323 -0.674584 -9.296917 23.246930 -14.123409 -26.582278 3.791965 -17.940169 -3.034540 -22.044772 1.948310 -13.783836 7.184225 16.793323 -2.340134 5.562072 -15.395051 2.708376 21.617580 10.905831 27.461471 9.707922 -9.041963 13.822726 -15.781381 -10.654860 -2.393757 9.853332 2.057287 -14.446760 11.255105 -6.514180 9.505310 -18.828966 -4.236895 13.567044 -0.897551 -13.487040 12.223964 -6.209750 -33.260783 -23.832406 -18.211874 2.919717 7.589774 21.446558 -4.530018 -4.291299 -11.906051 4.621628 3.584728 -25.560883 -5.538597 20.166855 -10.271648 -6.618611 0.810257 21.902190 1.376894 13.938186 -14.395650 -5.478504 10.484596 3.604378 2.112615 -8.572888 -5.588320 -18.923085 11.723375 6.308853 -8.143349 7.874550 16.202762 18.334735 23.585632 17.573598 -22.662842 20.009935 -19.950964 7.517558 -6.717941 -1.264866 7.136689 7.646092 -5.394970 -1.687418 15.923666 -22.628479 9.007836 14.968610 -8.100144 -22.559252 3.781726 -26.043267 -21.708823 -9.901120 10.058018 14.552025 3.634458 -13.674258 -7.105649 -12.421964 4.204209 -14.197539 1.473415 29.781845 -20.156484 -6.561616 -4.573925 -3.964367 -12.365762 15.665937 6.317411 7.634387 23.598192 13.253662 -10.204099 -12.092405 -15.736320 -3.679945 28.288622 6.044814 -20.952587 12.914005 -1.406041 0.388959 13.688322 5.826039 15.702684 -1.537399 -26.237366 -19.525102 6.751419 -11.678305 24.294191 13.425687 13.852056 -9.629424 37.538418 -6.842746 -24.957379 24.847026 13.288525 -18.835798 -4.310933 9.063479 -15.696424 -7.118790 12.427421 -10.794171 -0.523115 -7.404607 -5.285068 0.076807 -14.670806 -11.613216 1.306102 -27.752385 29.035065 4.634613 19.607773 -2.876061 -16.971994 -15.141715 31.125402 3.340928 -8.126376 -6.764447 -4.339709 -14.406745 -23.026611 6.895663 1.950670 -6.092853 -15.886492 -19.229568 10.841843 7.952707 -11.622459 7.769661 3.645062 -16.069933 6.640166 -7.299095 14.069651 -18.838776 -18.353231 -4.916919 -3.074448 19.986966 -2.295002 26.417935 37.507293 -5.326934 13.326919 19.322872 4.197737 4.244099 18.014564 -20.718885 20.195899 -14.301489 24.228120 -1.702435 17.527150 -16.955451 -13.052816 4.801034 0.867399 -4.950104 16.420770 -9.220922 5.233349 -3.207402 -22.718206 -1.680988 9.163024 -6.301689 -1.515099 -0.710206 11.779225 -24.362663 -0.296582 -18.043700 0.004721 20.995890 0.808104 -22.904078 -0.169150 -1.396139 2.012553 -1.705093 2.570814 -3.316210 16.056072 -19.472285 -3.932594 -0.759435 -6.089763 -12.799031 -22.253052 5.737037 -23.257335 -20.437723 18.301232 -15.760058 7.172782 -17.247584 -4.356633 -30.937586 -7.508296 1.399115 27.005625 11.554404 -13.741170 2.585129 -2.575117 24.642985 5.553762 3.090337 -5.239310 18.449758 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -0.920530 0.372197 1.199142 -0.400430 1.589361 -0.075699 0.284207 1.580795 1.369414 0.267815 -1.702938 -1.385302 -0.276846 -0.163505 0.245277 -0.888757 -0.134074 0.823112 -1.185600 -0.706702 0.952640 1.405782 -0.670948 -0.979170 0.151535 0.483958 -1.430760 -0.296063 -0.748718 0.517370 -0.594388 0.604015 1.669163 0.474594 1.993381 1.263102 1.380610 1.533607 -1.119662 3.330078 0.482953 1.170562 -0.734482 -1.507780 0.569767 -1.326029 -0.519143 -0.607517 0.017047 -1.131442 3.041790 0.613731 0.305640 0.620933 0.742507 0.038831 -0.283205 0.999300 0.865939 1.259928 -2.188576 1.854899 -1.317353 1.014242 -0.250579 3.113822 0.191504 -2.089661 -1.365688 -0.082686 2.707619 -2.083917 -1.459933 0.311036 -0.536742 0.108682 1.269930 -0.120026 1.472226 -0.046499 -1.374497 0.488255 -0.113988 0.612249 -0.634048 -0.772485 -1.854386 -0.306310 0.204128 -0.843938 -0.939990 1.590595 -1.283983 1.398998 -2.309986 -1.975462 -0.571197 1.271236 -0.288200 -1.021875 0.858331 0.955415 -0.122296 1.435909 -0.842363 -0.212298 1.297166 1.526195 -0.714766 0.026639 -0.344991 0.797935 1.040120 0.576985 0.391159 1.463368 -0.822726 1.073516 -1.041121 0.310180 0.421295 0.123847 0.366251 -0.051253 0.350885 -0.214192 0.541091 0.378128 -1.683320 -0.180465 0.537115 -1.580909 -1.946926 -0.640756 0.672948 1.496144 -0.456956 -0.601811 -0.228535 -1.056447 0.158612 -1.868496 -0.754297 -1.516438 -0.085856 -0.949275 -0.379820 -0.334524 -1.088078 1.426567 0.387236 0.349878 1.178176 0.604287 -0.236728 -2.713367 -1.048436 -0.040226 1.257336 -0.187441 -1.334949 0.288718 -0.288638 0.733710 1.110706 0.265215 -0.461677 1.255990 0.242207 0.385160 -1.946554 -0.639239 1.485914 2.186967 0.611517 -0.906983 -0.212105 -1.800617 -1.560807 2.243984 1.545527 -1.345279 -1.756056 0.313166 0.752788 -1.195483 0.430479 -0.634518 -0.745364 -0.450578 0.155552 0.027828 -1.031113 -0.737560 1.884468 -1.510240 1.334905 0.191779 0.443230 -0.547387 -2.156931 -1.174747 2.616878 0.182994 -0.561893 0.291961 0.178329 1.225000 -1.067552 0.481619 1.019860 0.493693 -1.245788 -0.570423 1.254344 1.302494 -1.281148 0.454487 1.688564 -1.410535 0.157506 -2.754449 1.270211 -2.757020 -1.117105 -1.872817 -0.027521 1.474464 -0.451343 -0.458536 2.390714 -0.241678 0.648077 3.195887 -0.746265 -1.820214 1.356687 -0.387122 0.901710 -0.760012 -0.861463 -0.221788 1.059558 -1.171287 -1.165637 -0.204811 1.371269 -0.537068 1.595093 -0.207914 0.738636 -0.802441 -1.959040 0.857613 1.091263 -0.140215 -0.369763 -0.232266 0.105146 -1.605994 0.005760 -0.637626 -0.347357 1.421294 -0.286307 -1.696974 -0.157220 -0.771772 -1.862439 -0.218942 0.292389 -0.385157 1.761004 -0.757986 -0.179378 0.954551 -0.735713 -1.916917 -0.427428 -1.218506 -1.462633 -0.842036 -0.287405 0.081519 -0.940788 -0.795850 0.159028 -0.464990 -1.560510 0.506969 1.224488 1.712518 -0.494901 0.420127 0.401423 1.916299 0.939938 -0.654350 0.205535 1.074100 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -3.426388 3.108608 2.573272 -1.756266 4.955288 1.357371 0.939578 2.166679 -2.526186 3.833902 -5.219984 -1.099432 -1.703807 -4.072002 -0.506068 -2.338103 0.209330 -0.295180 -0.968449 0.986511 2.075720 -2.729158 0.105239 -2.391046 -0.719992 -3.165987 -1.968201 0.030205 4.084120 -1.398644 -0.090622 -0.426304 5.812616 0.624694 5.374632 3.535627 1.303325 4.681535 0.473073 -0.417053 -1.276928 3.987032 -3.037604 -4.097727 0.177818 -3.935008 -1.967684 -1.959024 1.329905 -1.881647 0.394377 3.387037 -0.739114 0.648409 -2.662823 2.018751 3.349733 0.244520 6.311217 0.939334 -2.677619 -0.519021 -3.593278 2.314963 -1.749507 2.337199 -0.484393 -2.911647 0.982301 -0.892554 -0.207096 -2.859925 -1.581110 3.564331 1.230885 -3.419878 1.338269 -1.747366 -5.676720 -4.127907 -3.423614 1.049839 0.742839 3.778221 -0.092504 0.000554 0.628312 1.546809 -0.129934 -6.109900 -0.325468 5.058094 -2.719206 -0.213806 -1.861110 3.377104 -1.199638 2.408502 -3.102606 -0.940142 1.303484 1.025755 0.687881 -4.625753 0.520034 -5.010684 2.430059 -0.002510 -0.887191 0.903660 3.308080 1.669341 4.049602 4.572015 -4.370513 1.384597 -4.159621 0.761168 -0.329347 0.010465 -0.032160 1.749695 -0.707909 0.134966 4.592022 -5.576341 1.898104 1.527487 -2.491855 -5.376591 -0.300539 -4.560735 -3.906960 -0.661827 1.678851 1.519407 0.567544 -3.165574 -0.415620 -1.302643 -2.497316 -3.003263 1.224837 4.612171 -4.160656 -0.786828 -0.455494 -0.626677 -2.414595 3.870562 2.534271 2.124947 5.443210 2.819538 -1.133674 1.356649 -3.759805 0.068047 5.777236 1.682251 -5.063285 3.253981 -3.184712 0.131543 2.212103 1.891129 3.227980 0.757949 -4.414747 -2.632603 2.406418 -0.690270 5.161405 1.579942 2.228454 -1.123627 6.073867 -0.076097 -3.539931 5.537178 2.384110 -4.765529 2.008053 1.805278 -2.026367 -0.265603 3.027537 -3.356155 -0.315725 -2.346623 -0.749446 1.264169 -2.744104 -1.153360 0.433141 -5.174475 6.796789 0.413060 2.282135 1.151687 -4.270235 -4.652266 5.256314 -0.289219 -1.014438 -1.978217 -1.442330 -3.892497 -4.704704 1.003388 0.996338 -2.792717 -2.598801 -4.518278 1.605400 2.823293 -0.948911 3.239077 -3.304779 -2.354034 1.678004 0.659803 3.361719 -2.251426 -2.744541 -0.924354 -0.767015 3.705092 -2.423548 4.724066 6.291039 -1.647701 4.743057 -0.027587 -1.916764 0.516634 2.466331 -4.246026 4.719806 -1.281582 2.971846 -0.491971 3.331120 -2.977667 -1.095243 0.471264 0.058640 -0.473950 2.154350 -2.242584 -0.028303 -0.587061 -4.591217 -1.186394 0.955964 -0.819920 0.454863 0.299565 0.669742 -3.385771 -0.795978 -2.839962 0.329654 3.561678 -0.421757 -3.461645 0.911760 -0.601108 0.217997 1.374450 0.380712 -0.041101 3.105761 -4.339015 -1.416644 -0.044992 -0.711941 -3.537890 -4.869343 -0.904638 -3.541726 -2.865958 3.544447 -4.482959 0.559436 -3.371706 -1.288123 -5.060600 -1.221926 0.784261 6.295307 2.649036 -2.894806 1.195423 -0.449315 4.303430 0.745661 0.713392 0.552754 2.396886 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.281080 -0.030138 -0.115396 -0.201172 0.748564 -0.107730 -0.106055 0.560331 0.421237 0.265120 -0.429369 -0.206165 0.005069 -0.166838 0.104776 0.162044 -0.017715 0.290299 -0.400100 -0.326548 0.208241 0.387816 -0.040151 -0.194996 -0.087261 -0.064669 -0.274382 0.090217 -0.097335 -0.022277 -0.441519 0.141815 0.514490 -0.144426 0.413414 0.254325 0.540148 0.374049 -0.134191 0.530993 0.390982 0.218524 -0.165550 -0.387093 0.099953 -0.333553 -0.319385 -0.093929 0.184124 -0.340597 0.834675 0.162839 0.145513 0.018852 0.052566 0.247711 -0.058963 0.079144 0.360489 0.291001 -0.616850 0.257048 -0.360461 0.755626 -0.294487 0.716587 -0.138056 -0.675332 -0.550673 0.284563 0.548551 -0.517762 -0.418769 -0.028294 -0.082034 -0.091418 0.323493 -0.017660 1.005534 -0.171583 -0.328267 0.214265 -0.237296 0.187814 -0.159370 -0.103209 -0.465723 -0.081299 0.048829 -0.221608 -0.308990 0.371354 -0.414570 0.411353 -0.473423 -0.489300 -0.070952 0.083895 -0.025182 -0.357406 0.135792 0.220480 0.022964 0.241117 0.226962 0.033840 0.272818 0.368218 -0.004892 0.064487 -0.118591 0.108346 0.100262 0.124781 0.320313 0.085546 -0.432601 0.245003 -0.209073 0.117733 -0.105237 0.041543 0.392649 0.051247 0.187677 -0.210060 0.351757 -0.036678 -0.338732 0.009977 0.172901 -0.085417 -0.456877 -0.067283 0.215694 0.221263 -0.157174 -0.054386 0.201042 -0.127170 -0.306312 -0.247596 -0.197285 -0.386096 -0.209492 -0.136062 -0.067443 -0.100692 -0.171066 0.344824 0.197623 0.106919 0.443757 0.220580 -0.028886 -0.442074 -0.502905 0.195558 0.451484 -0.161085 -0.360367 0.161662 -0.333168 0.176822 0.325254 0.193773 -0.162346 0.422470 0.212975 0.228866 -0.372638 -0.037813 0.510477 0.304853 0.178922 -0.365873 -0.266873 -0.434818 -0.030407 0.725332 0.416778 -0.616890 -0.163645 0.259633 0.232146 -0.207553 0.119644 -0.242542 -0.260907 -0.217058 0.173743 0.257934 -0.324063 -0.232333 0.394166 -0.320267 0.371505 -0.066393 -0.231202 0.013132 -0.566492 0.132907 0.672265 0.119158 -0.029071 0.041182 -0.104650 0.116134 -0.473560 0.049073 0.304758 -0.015061 -0.194166 -0.216345 0.125393 0.523519 -0.311389 0.085870 -0.119359 -0.073533 0.172013 -0.440376 0.233272 -0.525673 -0.139014 -0.352424 -0.091312 0.237477 -0.392308 -0.173430 0.473297 -0.208915 0.291827 0.699475 -0.189355 -0.363237 0.352598 -0.111099 0.394031 -0.037463 -0.246624 -0.000118 0.228676 -0.261288 -0.128376 -0.225833 0.277201 -0.221995 0.330326 -0.265951 0.043405 -0.032260 -0.423083 -0.003630 0.300793 0.260015 0.095299 -0.027399 -0.147653 -0.291533 -0.062524 -0.251697 -0.030264 0.291750 -0.191198 -0.494917 0.098806 0.010754 -0.644972 -0.154951 0.056128 0.068250 0.537778 -0.271076 0.089508 0.316826 0.039686 -0.689671 -0.166059 -0.344391 -0.201056 -0.127308 -0.052993 -0.222434 -0.545302 -0.157114 0.265363 -0.222211 -0.268917 0.157588 0.394177 0.356589 -0.087994 0.259068 0.094312 0.365121 0.196215 -0.174081 0.118238 0.174268 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -2.553952 1.900635 1.503346 -1.970543 5.104505 -0.064241 0.854964 1.605576 0.761362 2.330793 -4.722920 -1.493652 -0.778452 -3.287763 0.298901 -1.986076 0.410227 1.007847 -1.614952 -0.166275 1.602769 -0.332849 0.020978 -2.429478 -0.366436 -3.336275 -2.076221 0.256441 0.781159 -0.172214 0.278167 0.645489 4.624974 0.373537 3.272969 2.751223 2.120850 3.878913 -0.446983 2.583049 1.337959 2.281568 -1.515503 -3.548970 0.573099 -2.496904 -2.770396 -1.827193 0.858233 -3.080188 1.746261 2.456446 0.319230 -0.117993 -1.782088 1.583230 3.005980 0.192622 3.751683 1.765085 -2.970187 0.956811 -2.658794 2.543331 -2.059726 2.966422 0.024854 -3.837445 -1.475798 1.567778 1.651550 -2.362862 -2.986334 0.786966 0.934717 -1.973394 1.536533 -0.717527 -1.321540 -2.367634 -2.218551 1.369533 0.268395 2.794891 -0.043339 -0.421427 -0.105517 -0.142427 0.752430 -3.175167 -1.721706 3.669533 -2.073171 0.635439 -2.599180 0.701387 0.119120 0.621130 -1.574718 -2.505550 1.082831 0.623121 0.279240 -0.252101 -1.458902 -2.942959 1.891856 1.857313 -0.978109 1.135628 0.604044 1.401327 1.579181 1.820327 -2.704437 1.487101 -3.571598 1.490087 -0.739118 -0.044723 -0.414533 0.160946 0.635719 0.905761 2.228457 -3.208087 2.896701 1.428147 -2.524425 -2.197041 0.460830 -2.028229 -3.295989 -0.299412 1.473122 1.445757 0.377111 -0.792635 0.160667 -1.421914 -0.684182 -2.214519 -0.647565 2.043981 -2.721718 -0.529526 -0.343477 -0.646305 -1.929876 2.449079 1.475401 0.895572 4.058386 1.755705 -1.097405 0.219405 -3.274170 0.844847 5.289318 1.607430 -3.316686 1.980439 -1.847043 0.867998 1.817183 1.124169 0.629420 0.940016 -2.275075 -0.863751 -0.601834 -1.512064 3.914029 2.384982 1.241646 -3.537905 2.856102 -0.944627 -1.264706 5.425895 3.202556 -4.117254 0.533489 2.983703 -2.190690 -1.549900 1.654443 -2.064178 -1.485195 -1.918428 0.624905 0.871633 -2.437118 -1.903773 0.740051 -3.587145 3.807508 0.509419 0.558330 0.345091 -3.156893 -3.903597 5.213345 -0.139692 -0.355580 -0.500456 -1.050530 -0.723969 -4.271605 0.495075 1.502939 -1.996236 -1.359917 -2.675682 1.178126 3.443804 -2.365250 1.647801 -1.960612 -1.246647 1.423421 -0.636130 1.790383 -3.272637 -2.063875 -1.074992 -0.416982 1.611116 -1.952570 1.441352 4.223814 -1.521804 2.942207 1.311687 -2.329360 -0.396882 2.686489 -1.940927 3.596318 -1.024674 2.093950 0.309026 2.811614 -2.341154 -1.030249 -0.375833 -0.513811 -1.630342 2.619921 -3.056138 0.189964 1.047730 -2.739199 -1.503548 2.225585 0.830188 0.911098 -0.565794 0.275609 -2.462603 0.063005 -1.050404 0.571130 2.522588 -0.280193 -3.417071 0.057810 1.372485 -2.066538 -1.257140 0.750620 0.260394 3.508559 -2.995764 0.859136 0.906544 -0.355780 -4.134476 -3.691098 0.227836 -3.461541 -2.426442 1.355499 -3.768761 -1.527197 -2.167509 0.801140 -2.740390 -1.642090 1.061738 4.147122 1.848155 -1.542893 1.456882 0.117375 2.535518 0.228032 0.085374 0.738382 2.117812 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -4.932774 2.375538 1.948398 -1.925096 7.477826 -0.992045 2.637709 2.613481 -1.842840 4.260546 -7.065371 -3.711034 -3.043616 -6.220457 0.353650 -2.939190 2.680591 1.286753 -1.737135 1.691533 3.208577 -2.748798 -0.330057 -3.511112 -0.320720 -4.708607 -2.837454 0.443106 4.421774 -2.183207 -0.442995 1.547751 10.091519 1.334410 8.352979 5.664696 1.743700 6.781356 1.024570 -2.779703 -0.618204 5.891046 -3.629083 -5.960181 -0.129222 -4.283351 -3.854011 -3.319512 2.173930 -2.121851 -0.018163 4.718725 -0.559219 1.774789 -4.389251 2.028360 5.880275 1.200174 8.212013 2.275087 -2.917700 1.692718 -4.032783 3.628194 -3.092594 1.729318 -1.822769 -5.220329 0.407396 0.105018 0.964426 -4.502543 -3.726643 3.487903 2.390322 -4.283452 3.242085 -0.568495 -4.076586 -7.540531 -6.271761 1.179579 -0.907086 5.929501 -0.928539 -0.582480 0.219109 0.647876 0.773086 -7.393737 -0.829579 5.609717 -4.311589 -1.048370 -1.455178 4.474064 0.228709 2.643911 -4.523680 -4.473676 1.658177 -1.326165 0.918408 -1.715854 1.938236 -3.762129 1.196502 0.355025 0.182350 4.521466 4.543654 3.556108 5.654837 4.711123 -5.499594 0.282141 -5.699233 2.767726 -2.968355 -0.752004 0.536593 2.479262 1.338679 0.937791 5.686804 -7.780531 2.846205 3.362928 -2.064283 -4.969241 0.320245 -5.507447 -5.899828 -2.044442 3.754528 2.101427 0.996121 -3.624701 0.484118 -1.294455 -1.234715 -0.847673 -0.310194 5.209729 -6.198670 -1.119019 -1.055991 -1.719295 -2.697469 4.554083 2.538057 3.138945 7.048379 3.913314 -4.240191 0.857653 -6.532374 0.743991 9.134447 -0.088567 -6.282059 4.437871 -3.598626 0.176996 3.760601 3.704621 4.155891 -1.341671 -4.436156 -2.487628 0.877222 -0.994695 7.511389 1.420754 2.273774 -3.871539 6.993180 -0.230896 -4.400226 9.016152 2.729293 -6.780425 1.895379 3.569455 -4.769432 -1.658636 3.153274 -4.801389 -1.433735 -5.369494 1.117730 2.221602 -4.463311 -0.938856 1.653898 -6.970604 7.059745 0.542115 0.138626 1.375532 -5.715920 -5.652055 9.843330 0.141370 -0.141024 -2.604481 -3.251626 -2.303621 -7.733882 1.210939 -0.954360 -2.692683 -1.937381 -5.852808 1.477584 5.588610 -1.662453 4.082174 -5.771916 -1.165822 2.640790 1.152137 2.889138 -3.580690 -4.325620 0.269671 -1.633381 2.805386 -3.934687 4.662342 7.681133 -3.199122 3.651261 0.455109 -3.671288 1.422079 3.294667 -6.281187 6.623601 -1.925235 5.096443 0.270261 4.590477 -4.499865 -2.409773 0.069326 -0.232202 -3.475575 3.392273 -4.156618 0.433465 1.302556 -4.327202 -3.801720 1.588587 -0.298444 0.994946 0.162204 -0.312459 -6.041352 0.669583 -2.416217 1.655411 5.073284 0.563545 -4.946593 1.716467 1.072504 -0.363042 -0.347627 0.514467 -0.491214 5.198195 -6.053643 -1.108295 0.658978 1.467943 -3.537738 -8.231118 0.707395 -5.594714 -3.516200 5.551579 -6.467258 -0.487270 -4.446697 -0.373002 -5.788912 -1.657960 2.055441 8.507556 2.974528 -4.631539 1.803403 -0.378118 4.767374 0.121615 0.837647 0.112414 3.648090 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = -0.281268 -0.140242 -0.236793 -0.357015 0.942361 -0.232215 -0.318852 0.921181 0.487206 0.296256 -0.523604 -0.057832 0.071933 -0.570123 0.059966 0.090754 0.303558 0.193666 -0.370887 -0.024711 0.155308 0.099758 0.064443 -0.255080 -0.098215 -0.210298 -0.030896 0.155524 -0.122113 0.019607 -0.221154 0.220170 0.644910 0.162819 0.634837 0.242409 0.408303 0.402710 0.185158 0.363801 0.371836 0.038325 0.076335 -0.471531 0.010809 -0.229211 -0.575424 -0.105758 0.080222 -0.613030 0.461969 0.333562 0.116282 0.059160 -0.214484 0.131142 0.095831 0.017865 0.400826 0.286849 -0.883661 -0.217864 -0.250999 0.357278 -0.239462 0.180701 0.103405 -0.464322 -0.204762 0.584569 0.097016 -0.333604 -0.187433 -0.055512 0.223892 -0.180505 0.427705 0.053080 0.710459 -0.149595 0.002345 0.290795 -0.094182 0.220828 -0.009433 0.167722 -0.101983 -0.177254 -0.063824 -0.419928 -0.022516 0.244096 -0.606599 0.150207 -0.486677 0.243518 0.007329 -0.046010 -0.201217 -0.587854 0.192055 -0.029863 -0.046535 -0.001171 -0.080132 -0.233962 0.511048 0.256300 0.093102 0.300394 -0.084085 0.243633 0.200365 0.248441 -0.135221 0.371208 -0.568138 0.192208 -0.296952 -0.012279 -0.227859 -0.137902 0.587729 0.435095 0.179371 -0.396924 0.592576 0.426378 -0.119373 -0.170712 0.135590 -0.205560 -0.330785 -0.008971 0.299122 0.010599 0.194345 -0.044841 0.171070 -0.172215 -0.375826 -0.163916 -0.249925 0.027714 -0.277768 0.023587 0.096376 0.024942 -0.186038 0.223544 0.282452 -0.064428 0.549392 -0.108954 -0.259335 -0.089492 -0.454985 0.196128 0.826945 -0.132833 -0.399760 0.429813 -0.289505 0.149888 0.035593 0.227674 0.105961 -0.067123 -0.109087 0.039735 -0.006067 0.003745 0.427281 0.060431 0.148976 -0.626067 0.062487 -0.315848 0.167468 0.893611 0.417537 -0.744276 -0.095016 0.544842 -0.226961 0.018605 0.116256 -0.210040 -0.097254 -0.282308 0.346886 0.149980 -0.419596 -0.267405 0.218787 -0.414063 0.283655 0.054763 -0.000277 -0.253716 -0.395132 0.267986 1.040866 0.053729 0.012837 0.260587 -0.305350 -0.111302 -0.664309 -0.250608 0.180416 -0.164632 0.267870 -0.151992 -0.137714 0.568638 -0.346842 0.107987 -0.604377 0.122231 0.304624 -0.323747 -0.088545 -0.296725 -0.271197 -0.176922 -0.228706 0.158758 -0.530726 -0.035821 0.303877 -0.016771 0.654929 0.189415 -0.197165 0.050340 0.232961 -0.270105 0.691010 -0.065588 0.288011 0.247580 0.410308 -0.350904 -0.114669 -0.399408 -0.183512 -0.450130 0.485579 -0.590639 0.010384 0.313297 -0.029287 -0.468184 0.272904 0.290041 0.165267 -0.043999 -0.113586 -0.309893 -0.136094 -0.459932 0.436671 0.083297 -0.226750 -0.392938 0.029996 0.598236 -0.303111 -0.194150 0.154303 0.096636 0.674609 -0.381129 0.208289 0.433006 0.181129 -0.438699 -0.378091 0.043710 -0.313620 -0.023542 -0.221447 -0.794895 -0.587837 -0.093519 0.316329 -0.272221 0.120471 0.247685 0.773608 0.270209 -0.382918 0.200335 -0.027592 -0.036779 0.087172 0.250285 0.033859 0.227101 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -2.550308 0.714840 0.645372 -0.734088 3.513623 -0.403110 0.945821 1.308851 -1.429405 2.180011 -3.345462 -2.262636 -1.824366 -2.807106 0.154539 -1.214581 1.455037 0.357663 -0.964726 0.949656 1.719349 -1.510161 -0.179759 -1.654569 -0.140890 -1.717555 -1.268998 0.210179 2.924491 -1.358712 -0.788711 0.656216 5.085745 0.437406 4.581351 2.711642 0.873878 3.361256 0.388420 -2.322651 -0.705724 3.380005 -2.066036 -2.767138 -0.360512 -2.364414 -1.854919 -1.706718 1.325354 -0.364678 -0.269506 2.360963 -0.416566 1.076115 -2.171124 1.064538 2.730283 0.750545 4.415858 1.020723 -1.104595 1.101968 -2.024316 2.267111 -1.614569 1.003341 -1.485279 -2.321718 0.307491 -0.474208 0.092960 -2.215721 -1.686601 2.042464 1.184390 -2.175202 1.826678 -0.260511 -1.239714 -4.442809 -3.580174 0.394740 -1.004353 2.986610 -0.763619 -0.293040 0.104708 0.584965 0.270187 -3.928781 -0.164287 2.601328 -2.350301 -1.051044 -0.588750 2.318219 0.018867 1.634183 -2.501103 -1.998258 0.813438 -0.762095 0.527013 -1.441969 2.350360 -1.590994 0.397176 -0.005732 0.506632 2.442069 2.730454 1.744431 3.272848 2.616737 -2.276909 -0.241833 -2.612467 1.125368 -1.715501 -0.307683 0.400658 1.778682 1.054776 0.178030 3.108006 -4.137367 1.120895 1.619615 -0.912777 -2.331877 0.208644 -3.045180 -3.062508 -1.148012 1.990725 1.050904 0.370081 -2.230013 0.518540 -0.458591 -0.894735 0.251132 0.061667 2.148711 -3.099771 -0.679192 -0.615049 -0.903253 -1.159229 2.470603 1.212025 1.749485 3.514880 2.092849 -2.421185 0.384030 -3.316902 0.394454 4.330317 -1.130198 -3.325593 2.235871 -2.051225 0.015714 2.020680 2.097788 2.359143 -0.618684 -1.894395 -1.134095 0.363206 -0.175927 3.887322 0.502356 1.315578 -1.384851 3.415468 -0.098526 -2.432438 4.337080 1.090245 -3.326068 0.871425 1.396725 -2.324351 -0.656448 1.703336 -2.568903 -0.555559 -3.000498 0.544042 1.294390 -2.294127 -0.156412 0.980468 -3.564968 3.707338 0.147334 -0.296968 0.674569 -2.932874 -2.033578 4.625402 0.314076 -0.141070 -1.680913 -1.733082 -1.594324 -3.878248 0.767026 -0.970432 -1.011870 -1.210665 -3.069306 0.703543 2.615298 -0.436737 2.073337 -3.155896 -0.305940 1.292663 1.026556 1.792209 -1.436582 -2.235148 0.206246 -1.171913 1.587496 -2.290206 2.329594 3.926891 -1.691220 1.688675 -0.003121 -2.275271 0.742175 1.527337 -3.451571 3.338621 -0.740884 2.125693 -0.134188 2.263821 -2.242892 -1.206192 0.014751 0.015316 -1.615368 1.611232 -1.789965 0.209634 0.210005 -2.214437 -1.808258 0.478184 -0.435304 0.379340 0.324114 -0.584637 -3.456627 0.342737 -1.425279 0.758424 2.683678 0.181486 -2.416596 1.078357 0.085268 0.103752 0.338836 0.149264 -0.507179 2.620753 -3.091370 -1.102481 0.323001 1.049438 -1.298876 -3.881700 -0.192192 -2.342493 -1.429425 3.581939 -2.745919 -0.076463 -2.309672 -0.417782 -2.816261 -0.966563 1.070461 4.343190 1.621249 -2.560504 0.703499 -0.204002 2.631545 0.265372 0.197167 -0.167123 1.530300 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.943510 0.065859 0.130878 -0.449386 1.886272 -0.349774 0.357085 0.455122 0.511121 0.711291 -1.482916 -1.222908 -0.464930 -1.023765 0.206221 -0.575208 0.606866 0.375706 -0.746349 -0.124772 0.508442 0.106042 -0.009398 -0.666720 -0.059466 -0.889968 -0.901448 0.260359 0.596696 -0.540568 -0.482898 0.404896 2.130573 -0.119789 1.593129 0.987175 0.856039 1.103853 -0.129981 -0.421237 0.573771 0.980491 -0.630309 -1.042007 -0.236595 -0.794557 -1.167113 -0.401931 0.584585 -0.403504 0.064729 0.785228 0.072701 0.273977 -0.603067 0.624383 0.857180 0.398316 1.485084 0.538486 -0.864225 0.680807 -0.869783 1.334341 -0.835407 0.864557 -1.018111 -1.535063 -0.777566 0.544743 0.224190 -1.021943 -1.121768 0.356213 0.571966 -0.665504 0.821866 0.050250 0.872257 -1.327479 -1.194714 0.430964 -0.540350 0.971531 -0.212578 -0.167514 0.013104 -0.091638 0.216655 -1.185444 -0.405577 1.007332 -1.121150 -0.060452 -0.089516 0.048934 0.175757 0.310070 -0.619104 -1.380394 0.227700 -0.389985 0.078565 0.280824 1.000400 -0.354889 0.010038 0.518744 0.294374 1.039920 0.484616 0.711721 0.952200 0.650147 -0.655802 -0.427943 -1.075569 0.661489 -1.209195 -0.203350 -0.109481 0.502766 0.718813 0.578865 1.019453 -1.351201 0.791724 0.556729 -0.531761 -0.337143 0.158347 -0.747510 -1.307295 -0.212311 0.695550 0.410766 0.127211 -0.514523 0.405758 -0.255858 -0.045840 0.440770 -0.301313 0.007697 -1.036554 -0.245198 -0.092409 -0.302879 -0.454209 1.007742 0.580206 0.516078 1.435626 0.687215 -1.019255 -0.097461 -1.516041 0.472936 1.805279 -0.946787 -1.129845 0.832699 -1.010275 0.149419 0.856275 0.860924 0.346040 0.049017 -0.264620 0.031485 -0.521575 -0.121091 1.519696 0.223502 0.297485 -1.165728 0.599806 -0.611006 -0.429277 2.036756 0.589388 -1.712920 0.227973 0.982356 -0.881361 -0.534520 0.516326 -1.093259 -0.476305 -1.414383 0.475115 0.647237 -0.921592 -0.197000 0.696016 -1.225833 1.133783 0.063501 -0.846695 0.282239 -1.118804 -0.963323 2.373424 0.191225 0.223299 -0.331459 -0.668167 0.262542 -1.709766 0.060711 -0.127292 -0.521400 -0.086865 -1.002040 0.315091 1.401297 -0.526683 0.904238 -1.305964 0.173644 0.568603 0.146737 0.457304 -0.514408 -0.749128 -0.138824 -0.695562 0.125064 -1.325609 0.263290 1.162766 -0.724861 0.723583 0.057862 -1.525299 -0.067168 0.603182 -0.988319 1.389031 -0.139522 0.645613 0.203573 0.911080 -0.910905 -0.428732 -0.292953 -0.333478 -1.044847 0.815773 -1.128663 0.066261 0.511806 -0.588372 -0.993178 0.491930 0.324730 0.254126 -0.074693 -0.368793 -1.338617 0.256138 -0.114006 0.434695 0.842813 0.002073 -1.204983 0.388988 0.565007 -0.703565 -0.725880 0.090683 -0.117273 1.262231 -1.122472 -0.034180 0.533124 0.662273 -1.067936 -1.448844 -0.084019 -1.088250 -0.267944 0.668704 -1.121306 -0.740176 -0.744925 0.193327 -0.499001 -0.643376 0.833299 1.654428 0.735567 -1.040681 0.436978 0.022802 0.720965 0.058631 -0.057423 0.130325 0.388370 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -2.883323 -7.415974 0.938802 -0.880458 6.809343 -5.252498 -1.885871 8.780094 5.666992 0.097407 -5.583783 -4.298206 -4.403673 -5.544162 1.429995 -2.732696 6.170635 0.289862 -4.093380 -1.755309 2.535045 7.571408 -1.016852 -2.933714 0.955981 0.022626 -3.777942 -0.007702 -4.474735 -0.365137 0.913486 5.157642 11.907251 5.286530 8.475026 3.620354 5.440037 6.533149 0.299159 6.009085 3.073236 4.273079 -0.503750 -4.557436 -0.449254 -3.008683 -3.179411 -0.240973 0.714781 -1.729345 4.011411 2.394394 2.569841 4.003306 -3.446220 -4.092356 -1.826121 0.025067 2.707217 4.258394 -10.326335 1.206263 -1.046018 2.804825 -3.128965 4.142953 0.839015 0.085441 -2.233395 2.976402 6.638053 -8.106552 -5.883281 -2.584070 -0.056497 0.151131 6.105566 4.052332 12.969292 -0.941726 -3.083990 1.573759 -1.924433 1.494277 -2.920123 -2.181779 -4.115565 -4.069781 2.000685 -1.573940 -1.701625 1.633199 -7.331549 0.004259 -7.886334 0.182791 -3.145050 1.897991 0.525698 -6.825515 1.214539 -1.928133 -1.005854 6.334583 -2.654366 0.541152 3.647803 0.230091 -0.530303 4.996955 -1.269334 3.788760 3.168830 -0.595211 1.992554 3.277241 -6.203763 4.773453 -5.540510 -1.781368 -2.133388 -0.309569 4.760988 2.665689 -0.313445 -2.792145 3.062932 4.893616 -1.849805 1.588052 1.472493 -2.645849 -7.224703 0.470173 5.254115 3.565891 0.606985 -1.115995 2.244401 -1.173839 1.444261 -3.789668 -3.204229 -3.902341 0.379675 -3.208351 -0.468859 -0.718777 -2.836420 2.465979 -0.628123 -0.440965 4.459840 -2.290737 -6.495417 -4.950186 -6.320057 0.719852 7.557250 -5.325970 -3.655339 2.153667 -2.407397 2.526512 1.392635 3.872070 1.474875 -4.323241 2.057804 4.049731 -1.456025 -0.770335 5.199673 1.791277 3.289794 -6.597425 -4.520659 -5.946138 3.853621 7.366607 1.256787 -7.345239 -3.698017 4.242204 3.873670 -2.052820 0.012295 -0.272882 -3.375065 -6.895633 5.729506 1.821796 -4.800918 1.209002 4.812702 -3.975267 -0.027279 0.125281 -2.137451 -1.418910 -5.980108 -2.430630 12.654666 -0.146349 3.139823 2.628742 -3.673481 8.105861 -8.509201 -0.085795 0.361215 2.331091 5.233408 -0.765890 2.589708 6.393530 -3.610120 3.449236 -2.021243 0.610982 2.086960 -6.604829 -1.206227 -7.679191 -4.468020 -1.944758 -0.844948 3.190412 -6.890587 -3.985840 3.563207 -1.500051 5.240426 5.908936 0.726490 -4.468459 1.764794 -3.088328 4.767918 -2.193811 4.027995 0.351710 3.734407 -2.385762 -4.523316 -3.922637 1.013064 -5.845545 2.462140 -5.145275 2.302745 3.245531 0.251625 -1.632686 3.111626 1.133373 -1.900197 -0.839375 -1.237177 -4.289946 0.929779 -2.957177 6.978204 3.532063 -1.335970 -6.150014 0.673367 5.866347 -8.596503 0.244689 -0.075577 -0.752518 6.923314 -3.151970 -1.429007 4.796766 3.773242 -1.587543 -6.085601 2.136749 -1.928467 0.026555 -1.688709 -2.814886 -7.759989 -1.426742 3.342226 -2.145257 -2.100680 1.193687 4.480773 5.153483 -2.880931 -1.296558 2.276935 -1.579530 0.118159 0.180504 3.863383 1.693190 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.957245 0.689644 0.298419 -0.383392 1.434589 -0.308689 0.592408 0.306778 0.556015 0.489451 -1.873578 -1.632623 -0.458831 -1.136103 0.208698 -0.912788 0.610660 0.429087 -0.580577 0.066690 0.537395 -0.140771 -0.128606 -1.139146 0.038811 -0.575463 -0.833147 -0.103810 0.147371 0.142750 -0.348384 0.529185 2.075514 0.569880 1.713270 1.135691 0.061844 1.444727 0.195089 0.322987 0.430572 0.990203 -0.565510 -1.441389 -0.174409 -0.967433 -0.728031 -0.809081 0.128591 -0.674130 0.865138 0.682539 0.236452 0.347665 -0.899842 -0.128612 1.046938 1.079484 1.375616 0.694714 -0.822003 0.976246 -0.604149 0.493015 -0.653776 0.838491 -0.148035 -1.369862 -0.368843 0.559115 0.676966 -0.953445 -1.294294 0.148478 0.380836 -0.560636 0.798066 0.173641 -0.599138 -0.679815 -1.128263 0.514866 -0.359198 1.098549 -0.102988 -0.250257 -0.600797 -0.157501 0.610758 -1.017721 -0.693098 1.171165 -0.663092 0.070055 -0.091521 0.450740 0.439083 0.407878 -0.585544 -1.054630 0.427299 -0.125235 -0.094397 0.410539 -0.350326 -0.861166 0.810040 0.906831 -0.443445 0.989735 0.738761 0.959350 1.025412 0.474333 -0.877174 0.052346 -1.099097 0.545479 -1.023582 -0.466816 0.097549 0.181274 0.084670 0.166913 0.659197 -1.199607 0.948858 1.087837 -0.562474 -0.491840 0.204576 -0.927120 -1.349383 -0.228510 0.614295 0.748989 0.361851 -0.333954 -0.270298 -0.652219 0.254043 -0.087589 -0.337257 0.758008 -0.654740 -0.334090 -0.066109 -0.250814 -0.755899 0.872874 0.238305 0.234599 1.152953 0.484776 -1.114018 -0.991172 -1.077559 0.349925 2.118808 -0.514908 -1.191123 0.636151 -0.333138 0.201205 0.624300 0.395742 0.248803 -0.020423 -0.680437 -0.402867 -1.155857 -0.656135 1.333831 0.861213 0.494306 -0.983710 1.418389 -0.501605 -0.672369 1.924268 0.730259 -1.183164 -0.507371 1.269565 -1.491633 -0.595869 0.579246 -0.779317 -0.125888 -1.281401 0.239957 0.164661 -1.052616 -0.429996 0.419505 -1.412949 1.211575 0.444646 -0.130105 -0.420531 -1.078727 -0.857183 2.661794 0.193339 0.149196 -0.008762 -0.445537 -0.108659 -1.702310 0.042937 0.151686 -0.492489 -0.203063 -0.809827 0.455557 1.191531 -1.030391 0.639412 0.061019 -0.185237 0.352181 -0.129189 0.400433 -0.889686 -0.936109 -0.068276 -0.389068 0.484592 -0.709808 0.622081 1.288693 -0.380737 0.670905 0.983698 -0.733480 0.013385 0.850122 -0.656633 1.034178 -0.781312 0.638194 0.288227 1.181293 -0.723694 -0.656324 -0.146999 -0.354643 -1.031649 1.152654 -1.202542 0.204465 0.637549 -0.462079 -0.726628 0.742143 0.159520 0.491758 -0.426154 -0.032090 -1.346313 0.459490 -0.238326 0.455602 0.882224 0.332938 -1.234871 -0.010000 0.639813 -0.645681 -0.560728 0.216622 -0.365409 1.283246 -1.020846 0.124947 0.459316 0.266337 -0.983777 -1.161613 0.105944 -1.223806 -0.548717 0.679916 -1.147809 -0.488484 -0.631933 0.211453 -0.641127 -0.672641 0.569671 1.479305 0.657249 -0.885524 0.167831 0.052647 0.736511 0.241148 -0.044676 -0.045874 0.825482 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.317931 0.110941 -0.004202 -0.198651 0.853206 -0.235221 -0.057017 0.546806 0.342815 0.311973 -0.500779 -0.194828 -0.089005 -0.429897 0.159407 0.044943 0.176703 0.386475 -0.260526 -0.246789 0.219325 0.214239 0.008940 -0.233402 -0.057171 -0.355568 -0.217804 0.099192 -0.134993 0.071259 -0.299850 0.322508 0.665202 0.024225 0.452999 0.378772 0.409075 0.511147 0.138615 0.441389 0.384835 0.164829 -0.118444 -0.604169 0.198239 -0.273656 -0.371238 -0.263883 0.166011 -0.488330 0.648070 0.285464 0.104282 0.005229 -0.221138 0.130052 0.118264 0.146150 0.423618 0.332945 -0.607681 0.074192 -0.271491 0.535439 -0.377937 0.448315 -0.050489 -0.745935 -0.390804 0.467899 0.423193 -0.385751 -0.425304 -0.059471 -0.007510 -0.177664 0.265252 0.093354 0.491407 -0.119542 -0.442342 0.263404 -0.198148 0.352806 -0.010730 -0.058889 -0.378966 -0.133212 0.163781 -0.304595 -0.242741 0.446618 -0.314281 0.361863 -0.356191 -0.178832 0.126790 -0.070618 0.001497 -0.455433 0.170013 0.019474 0.072397 0.265557 -0.116440 -0.190511 0.398616 0.320978 -0.014848 0.187287 0.036648 0.114123 0.105481 0.098976 0.010332 0.113500 -0.610525 0.366976 -0.137783 -0.066112 -0.152900 -0.010917 0.291067 0.042408 0.200757 -0.411377 0.449194 0.172379 -0.253264 -0.094758 0.177577 -0.049492 -0.386566 -0.084850 0.371818 0.114063 -0.050983 0.057133 0.098633 -0.164280 -0.270169 -0.253682 -0.332350 0.122651 -0.324350 -0.013613 -0.098224 -0.215970 -0.172457 0.224688 0.158015 0.230448 0.494172 0.286256 -0.205539 -0.271759 -0.630019 0.232858 0.678627 0.065925 -0.395038 0.262584 -0.217797 0.135862 0.249178 0.211029 -0.041306 0.237097 0.046912 0.074349 -0.353839 -0.060975 0.511876 0.392882 0.246346 -0.491249 -0.054986 -0.224285 0.017663 0.803863 0.347587 -0.623156 -0.027309 0.563396 -0.171312 -0.231056 0.147540 -0.335180 -0.228010 -0.333867 0.202325 0.329694 -0.559219 -0.259196 0.261341 -0.390432 0.359843 0.039649 -0.087652 0.019247 -0.552339 -0.011798 0.875210 0.115558 0.106642 0.014447 -0.318193 -0.037638 -0.599369 0.015560 0.326814 -0.141570 -0.082004 -0.271383 -0.056455 0.623323 -0.278134 0.149661 -0.187649 0.084555 0.274976 -0.237837 0.093760 -0.565936 -0.211009 -0.063082 -0.153024 0.153248 -0.292005 -0.030316 0.340206 -0.269154 0.361364 0.620235 -0.105896 -0.079496 0.296552 -0.166101 0.475164 -0.115761 0.115794 0.194339 0.350768 -0.296414 -0.085391 -0.198063 0.056643 -0.374357 0.436334 -0.503359 -0.024584 0.294016 -0.293401 -0.296362 0.260967 0.368299 0.248445 -0.112246 -0.147484 -0.247436 -0.006076 -0.206707 0.226324 0.298315 -0.163840 -0.470698 0.086167 0.291221 -0.595377 -0.335462 0.188011 0.087004 0.578763 -0.407119 0.237892 0.264758 0.122698 -0.687021 -0.329533 -0.033897 -0.304770 -0.195677 -0.005833 -0.624056 -0.512629 -0.179712 0.336670 -0.358023 -0.066029 0.067513 0.523832 0.174622 -0.058330 0.294912 0.096384 0.108340 0.054348 -0.076972 0.071497 0.353927 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -2.238689 1.825289 0.382600 -2.305140 5.661046 -0.283442 0.718038 2.274979 -0.231950 1.655520 -4.546870 -0.314951 -0.213075 -4.021127 0.752905 -0.677058 0.756336 1.204775 -1.341980 0.401824 1.575949 -0.897610 0.247951 -2.742321 -0.182961 -2.709197 -0.958292 0.252225 0.708194 0.966274 -0.421659 0.825094 3.436681 0.494773 2.178480 2.201741 1.909060 3.470719 0.208831 0.483666 1.703427 1.587567 -0.715432 -4.142859 0.972077 -2.281475 -2.981012 -1.999292 0.723435 -3.747844 0.977195 2.387266 0.604681 -0.958932 -2.384693 1.174515 3.679841 -0.016841 2.953398 2.042068 -2.666352 -0.758559 -1.830419 1.270612 -1.765118 2.157743 0.891463 -3.367593 -1.393066 2.886490 0.896428 -1.754193 -2.685782 -0.386389 1.107873 -1.555899 1.724673 -0.382773 -0.515714 -1.762783 -1.285823 1.168949 -0.729291 3.012856 0.066604 -0.197914 -0.181930 -0.859332 1.313778 -2.277319 -2.041464 2.933895 -1.293420 0.457972 -2.394403 1.688654 1.040005 -0.479471 -1.689802 -2.628514 1.194301 0.842654 0.233840 -0.651860 -1.698146 -3.051020 2.125475 2.116374 -0.596482 2.112224 0.101783 1.123364 0.331187 0.902102 -2.393532 1.607204 -3.677801 0.859283 -0.829819 0.186629 -0.961883 -0.475006 1.815381 0.715782 1.116903 -2.863221 3.895061 2.306422 -1.567570 -1.676648 1.258031 -1.037866 -2.610357 0.139821 1.517653 0.766776 0.477080 0.368991 0.471200 -1.352359 -1.556262 -1.586910 -1.397004 3.065118 -3.338680 -0.039147 -0.330678 -0.665801 -1.246713 1.261231 0.997495 0.192207 3.557062 1.336909 -1.446115 1.449036 -2.716789 1.824624 5.967797 1.848681 -2.822190 1.393269 -1.304565 1.096787 1.074970 0.301764 0.444151 1.181506 -2.372100 -0.820951 -0.268360 -1.922668 3.111254 2.315322 1.663696 -4.630526 2.747057 -1.024760 0.140284 4.749989 2.742528 -3.982958 1.043708 3.888737 -2.748698 -0.762597 0.678949 -1.474961 -1.161860 -1.841352 1.179885 0.804211 -3.032723 -2.969071 -0.657235 -2.990099 2.830192 0.814470 0.472482 -0.715251 -1.947753 -1.188692 5.224170 0.204760 -0.532567 -0.016423 -1.099115 -1.710303 -4.118684 0.187260 1.523756 -2.205357 -1.021453 -2.029638 -0.333505 3.586163 -2.810896 0.250025 -2.881261 0.171572 1.439535 0.438953 1.120920 -3.143151 -1.968562 -0.475418 -0.545080 1.097773 -1.825120 1.035952 3.018082 -1.647185 2.678008 0.971550 -0.960436 0.605423 2.913148 -0.907133 3.317082 -0.552629 4.043530 0.660556 3.061978 -2.003123 -0.495299 -0.905694 -1.572690 -1.637437 3.169888 -3.786274 -0.022912 2.600684 -1.001216 -2.693116 2.741895 1.682443 1.817108 -0.950455 -0.151921 -1.336591 0.006602 -1.005455 1.036216 2.046905 -1.240059 -3.406137 -1.006957 2.847732 -2.065989 -1.758681 1.424892 0.583899 3.768861 -2.591593 2.255915 0.813145 -0.001410 -3.969831 -3.142289 1.275757 -2.319955 -1.794354 1.554568 -4.528795 -1.857400 -1.591699 1.885430 -3.094301 -0.855560 0.310046 3.362160 0.688551 -0.518968 1.724560 0.294512 1.268930 -0.278154 0.699180 0.409448 1.978453 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.930451 0.463296 -0.358509 -0.697611 2.526462 0.011445 0.075875 1.067298 -0.296858 0.880635 -1.596399 -0.107284 -0.220181 -1.673982 0.367158 0.399845 0.414416 0.419659 -0.557286 -0.201008 0.658003 -0.389090 0.249256 -0.889936 -0.034508 -1.191004 -0.364635 0.158576 0.666466 0.238374 -0.741340 0.296858 1.400448 -0.010488 0.651568 0.732747 1.069174 1.259077 0.170223 -0.280707 0.580260 0.732127 -0.448912 -1.631572 0.565431 -1.067421 -1.205456 -0.631613 0.532792 -1.286321 0.368114 1.010491 0.141850 -0.376868 -0.914743 0.583176 1.447000 -0.213147 1.378225 0.743156 -0.960098 -0.806680 -0.683331 0.938852 -0.801092 0.852334 0.105746 -1.554529 -0.828534 1.073635 0.193934 -0.731298 -1.042041 0.015846 0.434538 -0.689881 0.673941 -0.056318 0.473673 -1.024640 -0.955485 0.399083 -0.662353 1.357098 0.042111 -0.106194 0.029873 -0.332055 0.554417 -1.086306 -0.676812 1.103703 -0.577927 0.439061 -0.829204 0.410946 0.196650 -0.148377 -0.686149 -1.030248 0.327131 0.375988 0.214307 -0.428653 -0.047140 -1.144927 0.813524 0.507568 0.154453 0.749328 0.465173 -0.008214 -0.040045 0.509816 -0.818132 0.112813 -1.406469 0.382600 -0.102715 0.174306 -0.578740 0.011334 1.013757 -0.019479 0.685762 -1.432119 1.404968 0.717587 -0.597406 -0.718298 0.448925 -0.407065 -1.049247 0.152300 0.773843 -0.012829 0.017617 0.067759 0.468033 -0.381340 -1.299746 -0.249964 -0.687423 1.272452 -1.749056 0.023682 -0.249777 -0.501073 -0.364873 0.535432 0.452353 0.437022 1.447455 0.810577 -0.696900 0.996285 -1.337358 1.022087 2.468005 0.813353 -1.231544 0.529559 -0.888172 0.560173 0.625955 0.191084 0.336013 0.537298 -0.539960 0.116188 0.198935 -0.372440 1.413439 0.747644 0.988523 -1.778951 0.681582 -0.252029 0.200683 1.941453 0.920340 -1.844413 0.993751 1.514359 -0.860351 0.097438 0.211104 -0.800843 -0.509867 -1.078351 0.531399 0.758408 -1.447240 -1.045228 -0.179854 -1.165946 1.311478 0.273092 0.128009 0.255884 -0.959200 0.014193 1.967583 0.176063 -0.055082 -0.306010 -0.661700 -1.066675 -1.621239 0.190171 0.500168 -0.998352 -0.421959 -1.049518 -0.439016 1.753370 -0.673829 0.231361 -1.829157 0.570340 0.610025 0.367989 0.584533 -1.116575 -0.737281 -0.003114 -0.447077 0.439074 -0.986469 0.298841 0.954181 -1.002048 1.106805 0.212634 -0.137513 0.276131 0.904020 -0.341940 1.300256 0.001381 1.707709 0.183706 1.305145 -0.820966 0.104541 -0.442658 -0.442298 -0.611594 1.215943 -1.557001 -0.186516 1.302978 -0.518049 -1.389897 0.844748 0.692744 1.016221 -0.315425 -0.522598 -0.415543 0.005156 -0.277199 0.517963 0.915728 -0.655463 -1.312897 -0.322194 0.921062 -0.876985 -0.727444 0.680162 0.221511 1.551592 -1.159660 0.711471 0.295411 0.257662 -1.618046 -1.305870 0.226162 -0.539139 -0.599449 1.093339 -2.085051 -0.713317 -0.704702 0.674032 -1.420382 -0.072914 -0.154891 1.403460 0.104275 -0.086538 0.927475 0.316581 0.381145 -0.264532 0.221698 0.276750 0.638111 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.997786 1.566488 -0.155687 -2.045947 6.619217 0.498679 0.628547 2.978301 -1.334617 2.024020 -4.093698 0.738327 0.239883 -3.416648 0.853852 0.479459 0.253418 0.650145 -1.570428 -0.569630 1.230105 -0.280489 0.454601 -2.223836 -0.339375 -2.917343 -0.909813 0.371846 1.372940 1.141313 -1.529603 0.397011 2.698334 -0.626471 1.136894 1.608225 3.045901 2.352808 -0.238541 -0.121522 2.047069 1.110230 -0.948501 -3.353166 0.790555 -2.444375 -3.527932 -1.196073 0.974986 -3.691345 0.656179 2.238151 0.551143 -1.235440 -1.477682 2.275391 3.020701 -1.491972 2.803299 1.801910 -3.058395 -2.168868 -1.786954 3.106034 -1.387562 2.831862 0.121320 -3.801743 -2.348768 3.064292 0.420489 -1.600951 -2.349762 -0.167817 1.031129 -1.554879 1.399758 -0.506574 1.111869 -1.825547 -1.152575 1.366085 -1.079339 2.809876 0.429796 -0.222979 0.096061 -0.785983 1.123220 -2.310243 -2.038974 3.366048 -1.373170 0.780971 -3.625814 0.206186 0.635441 -0.464441 -1.247272 -2.661542 0.963141 1.516590 0.256450 -2.262449 -0.349479 -3.207676 1.518163 2.090262 0.195196 1.905824 -0.740616 0.138137 -0.309539 1.024925 -1.515559 1.038743 -3.232143 0.859074 -0.472227 0.503795 -1.738014 -0.495736 2.561732 0.729072 1.369519 -2.823169 3.605063 1.463170 -2.022715 -1.680955 0.966033 -0.728497 -2.465442 0.749837 1.160519 0.263422 0.140292 0.470207 1.243606 -1.114447 -2.776732 -1.554668 -1.348567 2.405176 -4.228967 0.021988 -0.235985 -0.296333 -1.157978 1.747194 1.462947 0.597732 3.495522 1.539593 -0.763346 2.543417 -2.912785 2.405786 5.571149 2.411534 -2.697501 1.300557 -2.529127 1.219187 1.013535 0.138126 -0.099805 2.251810 -1.969019 -0.048430 0.366994 -1.299090 3.279201 2.486067 1.862946 -4.360634 1.553349 -2.094033 0.544995 3.920878 3.219152 -4.395277 2.013368 3.751860 -1.452922 -0.165983 0.791505 -2.322655 -1.787081 -1.774869 0.875596 1.499692 -2.935280 -2.672729 -0.320996 -2.490753 3.125720 0.738966 0.115860 -0.104013 -1.630976 -0.466202 4.193223 0.329941 -0.302433 -0.264546 -0.949541 -2.689498 -3.617005 0.211394 2.047184 -2.328939 -1.356475 -2.259310 -0.957668 3.614647 -2.273001 0.595682 -4.071716 0.972916 1.390646 0.722285 1.623259 -3.033164 -1.489712 -1.065219 -0.961682 0.920559 -2.747898 0.730996 2.273258 -1.891732 3.374314 0.307339 -1.233364 -0.087028 2.355697 -0.386834 3.027848 0.521600 3.732901 0.646170 3.021970 -1.977828 0.218667 -1.351439 -1.577039 -1.259702 3.121661 -3.806165 -0.376593 2.586369 -1.236603 -3.018266 2.424220 1.836473 1.837692 -1.029181 -0.893715 -0.753433 -0.436530 -1.391994 0.950310 1.848774 -2.431876 -3.152228 -0.829115 2.376747 -2.824181 -1.620942 1.530627 0.941783 3.571574 -2.504821 2.082186 0.853829 0.441922 -4.989806 -2.868390 0.395003 -1.504257 -1.941038 1.445870 -4.463650 -2.260899 -1.598455 1.592901 -3.593618 -1.564024 0.387593 3.270155 -0.040368 0.012530 2.017597 0.594071 0.979461 -0.469681 0.880054 0.804633 0.940134 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.433436 0.551647 0.221608 -0.354058 0.619828 -0.049598 0.032406 0.326449 0.170117 0.319105 -0.810661 -0.255297 -0.147798 -0.719973 0.101525 -0.190389 0.059285 0.354341 -0.091261 0.104928 0.387919 -0.307220 -0.019791 -0.542440 0.029040 -0.504974 -0.182157 -0.061157 0.033528 0.296375 0.036333 0.152883 0.622123 0.326090 0.479594 0.502756 0.073793 0.820128 0.191077 0.528106 0.054663 0.459559 -0.202302 -0.918828 0.370685 -0.475723 -0.130356 -0.558379 0.073877 -0.665409 0.552004 0.393927 0.061806 -0.117649 -0.500783 -0.103532 0.631423 0.396675 0.563903 0.384996 -0.271490 0.079541 -0.345288 -0.097981 -0.393366 0.353726 0.416546 -0.541874 -0.028084 0.247369 0.368098 -0.212977 -0.380808 0.011609 0.006504 -0.251345 0.301434 -0.109542 -0.567247 -0.151447 -0.383304 0.129283 -0.065431 0.604437 -0.082748 -0.120167 -0.310905 -0.077379 0.300101 -0.390857 -0.379513 0.466739 -0.064323 0.193700 -0.085333 0.440425 0.258183 0.034019 -0.176943 -0.143564 0.252147 0.221543 0.087187 0.239821 -0.650351 -0.539432 0.665328 0.320294 -0.334078 0.218947 0.291135 0.263210 0.126484 0.196348 -0.496012 0.397785 -0.672016 0.173916 0.019945 0.051251 0.052560 -0.027266 0.022669 -0.152548 0.158519 -0.456374 0.586398 0.447045 -0.195955 -0.332407 0.279036 -0.320326 -0.483016 -0.127020 0.306203 0.279283 -0.006741 -0.012912 -0.162347 -0.306159 -0.201847 -0.477064 -0.253670 0.726862 -0.408111 -0.068569 -0.163164 -0.263100 -0.234203 0.127524 0.019686 0.074502 0.567722 0.341386 -0.234257 -0.168826 -0.384763 0.175821 1.009657 0.390819 -0.520652 0.149432 0.089522 0.167329 0.299862 -0.005417 0.184592 0.276316 -0.394745 -0.286573 -0.287115 -0.450662 0.522000 0.591448 0.387791 -0.644679 0.719520 0.117755 -0.227579 0.907878 0.365211 -0.476559 -0.037103 0.534441 -0.701310 -0.161679 0.077050 -0.007652 0.024739 -0.268993 0.099927 0.082216 -0.581554 -0.624523 -0.182831 -0.631621 0.594343 0.149252 0.480155 -0.101285 -0.515649 -0.213069 0.915411 0.095154 -0.206727 -0.072192 -0.133709 -0.342701 -0.648990 0.161179 0.263019 -0.365780 -0.304273 -0.355876 0.081673 0.555069 -0.489972 -0.078150 -0.047541 -0.239587 0.198885 -0.144641 0.202240 -0.693033 -0.419421 -0.026424 0.034463 0.437137 0.065280 0.346989 0.772096 -0.258701 0.293396 0.650458 0.238817 0.153038 0.632014 -0.210225 0.491438 -0.427000 0.449127 0.035709 0.515607 -0.305815 -0.189787 0.011883 -0.103896 -0.149492 0.532666 -0.481154 0.065306 0.377450 -0.427110 -0.127704 0.486921 0.162154 0.431113 -0.130496 0.132477 -0.364882 0.080526 -0.080364 0.013409 0.508833 0.083421 -0.668450 -0.234572 0.249925 -0.236617 -0.410186 0.241569 -0.013029 0.599733 -0.447430 0.349646 0.078420 -0.256063 -0.551349 -0.396289 0.193788 -0.401077 -0.422826 0.385986 -0.731935 -0.087742 -0.323703 0.264135 -0.605487 0.007836 -0.183643 0.491519 0.244606 -0.053965 0.272615 0.056881 0.441631 0.100326 -0.050470 0.000109 0.636509 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -6.168792 3.505864 3.375541 -3.267364 9.735964 -0.099657 2.308399 2.775456 -0.789101 5.843242 -9.621273 -4.613782 -3.405977 -7.493230 0.059169 -4.392467 1.994093 1.213930 -2.837116 1.410231 3.874440 -2.941228 -0.023197 -4.683466 -0.758643 -6.605989 -4.327272 0.580416 4.530115 -2.399753 0.440633 1.087289 11.841851 1.354357 9.414156 6.681920 2.679428 8.836318 -0.096304 0.428168 0.075227 6.949861 -4.536973 -7.220301 0.315214 -5.799693 -5.260963 -4.270789 2.532191 -4.000601 0.922627 5.969842 -0.425738 1.291229 -4.866924 3.253396 7.195650 1.094497 10.183161 2.912918 -4.437663 2.659752 -6.026648 4.558382 -4.245459 4.009753 -1.567401 -6.996726 -0.613148 0.540704 2.031463 -5.236002 -5.211805 4.119595 2.853692 -5.374025 3.603288 -1.572730 -5.651437 -8.564176 -6.866024 2.012325 0.261270 6.906318 -0.817238 -0.644908 1.086739 1.014941 0.784725 -9.119822 -1.750409 7.511435 -5.141293 -0.720273 -3.127374 4.454633 -0.445830 3.023880 -5.328221 -4.810270 2.140301 -0.372054 1.035685 -2.139244 0.641044 -5.763446 2.722854 1.643685 -0.723070 3.405595 4.616094 3.781765 6.280929 5.957339 -7.323305 1.775269 -7.136013 2.949538 -2.515142 -0.528840 0.213098 2.454942 0.954660 1.427978 6.973889 -9.068790 4.353409 3.486193 -4.283893 -6.331389 0.267425 -6.550905 -7.494028 -1.814709 3.926890 2.887819 1.186281 -4.136647 0.369097 -2.303536 -1.439559 -2.283272 -0.077179 5.926742 -6.737393 -1.378754 -1.041108 -1.844198 -3.819124 6.090477 3.566583 3.305176 9.330191 4.527864 -3.992037 0.288314 -7.688112 0.893815 11.498878 1.078647 -7.996148 5.428355 -4.241647 0.865123 4.517966 4.033251 4.315319 -0.499593 -5.629545 -3.079508 0.285996 -1.881455 9.467597 2.957967 2.791373 -5.263764 8.510301 -0.576027 -4.875733 11.441912 5.199318 -8.409394 1.835107 4.736876 -5.746468 -2.690674 4.319603 -5.211692 -2.116758 -5.505229 1.025290 2.276023 -5.011352 -2.175889 1.854589 -8.838967 9.469924 0.697762 1.236016 1.943697 -7.360677 -9.021581 11.219537 -0.378980 -0.736896 -2.779418 -3.266621 -2.732630 -9.639991 1.586098 0.372014 -3.983726 -2.873729 -7.200156 2.820559 6.754053 -2.923079 4.973909 -6.074173 -2.693230 3.208104 0.126979 4.405284 -4.758363 -5.101546 -0.812434 -1.763074 4.013317 -4.552708 5.404435 10.168850 -3.637432 5.657872 0.857936 -5.116189 0.659866 4.815455 -6.998517 8.471071 -2.504018 5.073302 -0.007921 5.938184 -5.238476 -2.643806 0.209640 -0.598599 -3.531704 4.535531 -5.384802 0.403040 1.057704 -6.501960 -3.676887 2.845811 -0.250383 1.242919 -0.005150 0.493109 -7.357483 0.561491 -2.649617 1.468549 6.239456 0.745222 -6.528671 1.625967 1.399435 -1.212931 -0.801884 0.791154 -0.363685 6.798993 -7.483695 -0.709015 1.025709 0.487294 -5.889477 -9.333206 0.186492 -7.636155 -5.057792 6.145803 -7.942391 -0.997652 -5.621457 -0.243772 -6.146868 -2.695185 2.599890 10.520839 4.544943 -5.654728 2.474506 -0.417543 6.514380 0.527464 0.366037 0.799763 4.590221 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/vertex-cover-problem.cpp__main = -0.522569 -0.774997 0.215531 0.076632 1.481211 -0.963945 0.123247 1.387210 1.061564 0.048040 -0.565386 -0.696753 -0.577493 -0.223954 0.468660 -0.146049 0.699083 0.877918 -0.972186 -1.049387 0.601423 1.525516 -0.310567 -0.315357 0.173408 0.123685 -0.589736 0.013599 -0.773768 0.195893 -1.002908 1.139374 1.424195 0.022769 1.027326 0.711286 1.483550 0.945634 -0.505565 1.468224 0.879772 0.474143 -0.113419 -0.986758 0.423889 -0.429052 -0.590963 -0.001908 0.398964 -0.560362 1.648235 0.359335 0.322480 0.512955 0.356455 0.265307 -0.494554 0.407089 0.336696 0.922963 -1.657699 0.657620 -0.535961 1.367155 -0.565751 1.644830 -0.384041 -1.586389 -1.423154 0.616638 1.368393 -1.292951 -1.051061 -0.376015 -0.233392 0.160924 0.800662 0.693731 2.458149 0.164213 -1.399623 0.282671 -0.484741 0.315655 -0.376586 -0.446243 -0.998915 -0.596682 0.423400 -0.212766 -0.468966 0.813574 -1.088938 1.182951 -1.704139 -1.857655 -0.304553 0.202471 0.040638 -1.396016 0.348152 -0.086202 0.070051 0.985600 -0.198862 0.527261 0.623140 0.668359 0.114964 0.292605 -0.426306 0.096504 0.051466 -0.158771 0.972457 0.406891 -0.930281 1.109340 -0.697050 -0.111366 -0.048601 -0.007725 0.846126 -0.041544 0.106725 -0.347684 0.444134 0.081764 -0.785169 0.386446 0.467295 -0.214249 -1.000482 -0.496280 1.124525 0.476297 -0.379983 0.078409 0.527024 -0.313909 -0.110177 -0.507084 -1.132752 -1.403341 -0.198842 -0.383406 -0.431613 -0.586305 -0.401105 0.490598 -0.016633 0.527504 0.493269 0.509904 -0.613426 -1.274127 -1.285586 0.305985 0.620077 -0.493219 -0.654958 0.187849 -0.464131 0.607999 0.660391 0.441557 -0.419688 0.606513 1.066005 1.028630 -1.261351 0.091947 0.868049 0.998402 0.394188 -0.858576 -1.497823 -1.381589 -0.155203 1.378717 0.901563 -1.328653 -0.543174 0.745796 0.765127 -0.942460 0.008260 -0.770723 -0.694422 -0.868634 0.696381 0.678492 -1.218050 0.062224 1.602695 -0.572250 0.143088 0.006975 -0.543920 0.017476 -1.560573 -0.263349 1.818506 0.112415 0.374431 0.089374 -0.698695 0.739862 -1.001005 0.184283 0.426950 0.553197 -0.316190 -0.254848 0.115854 1.417850 -0.444236 0.437612 0.369490 0.158817 0.341657 -1.235032 0.481512 -1.349786 -0.584596 -0.571763 -0.398947 0.449629 -0.756001 -1.158541 0.541505 -0.560612 0.490379 1.697695 -0.933492 -1.039436 0.435705 -0.154059 0.516982 -0.023635 -0.467950 0.207886 0.565124 -0.896652 -0.503456 -0.448278 0.901857 -1.027294 0.881714 -0.581907 0.259120 -0.073319 -0.791944 -0.149355 0.445468 0.541077 0.057770 -0.206305 -0.372313 -0.572295 0.085035 -0.486290 0.433938 0.728400 -0.457347 -0.800403 0.204851 0.019966 -1.950104 -0.390062 0.371141 -0.125069 1.306208 -0.525354 0.016447 0.827195 0.169630 -1.198959 -0.541559 -0.672485 -0.716639 -0.197495 -0.349072 -0.332701 -1.213360 -0.161572 0.810244 -0.251450 -0.665003 0.184374 0.630775 0.631463 0.187279 0.667655 0.554144 0.275764 0.192400 -0.419598 0.171502 0.516758 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/vertex-cover-problem.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -5.110466 6.507178 6.425856 -4.168664 8.897849 -0.444344 4.561728 3.694383 -3.141686 3.810773 -9.873433 -1.104251 -1.355585 -6.638856 0.844968 -6.022012 0.618156 1.894688 -1.369572 3.110635 3.551848 -2.838271 -1.013051 -5.897690 -0.556891 -6.530231 -2.528595 -0.246452 3.108981 2.150784 2.301710 1.325038 8.411961 1.576162 7.478715 6.642878 1.468696 7.533629 0.229790 0.338924 0.838293 5.179196 -3.125316 -7.914235 0.182237 -4.619715 -4.438589 -4.996986 0.925041 -6.507955 -0.556098 4.892498 0.416450 -0.134085 -4.580781 2.881954 7.327368 1.092412 7.043756 3.658661 -4.028401 1.310087 -4.875932 1.739704 -2.470761 3.639900 0.183722 -5.845062 0.547844 2.363263 0.905088 -3.141981 -3.195222 1.770231 1.848049 -4.081353 3.371058 -1.755940 -8.511021 -4.526625 -3.034063 2.046139 0.939193 6.478530 -0.431314 -1.027063 -0.915866 0.020747 1.947257 -6.154484 -3.691645 7.764091 -2.839841 -2.154582 -3.625046 5.210729 3.183751 1.606535 -3.009878 -4.399299 3.072031 1.022726 0.456184 -3.317696 -3.309069 -6.643137 2.196759 3.771362 -2.207678 5.850266 -0.434321 5.422190 4.133206 3.438843 -6.625588 4.804267 -7.213007 2.705425 -3.601255 -0.201348 0.297519 0.332212 0.818274 2.333147 3.649134 -6.247488 5.656884 4.765533 -2.678074 -5.068725 1.791489 -4.923842 -6.197464 -1.639154 2.556612 3.910035 1.181318 -1.709923 -0.504841 -2.948600 1.077046 -4.970990 -0.729072 7.152699 -7.050295 -1.138350 -0.826564 -0.188465 -3.603943 4.234947 2.271177 1.131342 7.548529 3.516670 -2.503307 0.990913 -5.429971 0.834759 10.651950 2.606752 -5.856772 3.816154 -2.150035 0.100654 2.886750 1.398683 2.067263 2.670841 -8.243113 -5.525693 -0.597828 -4.809180 7.276821 5.745998 2.010221 -7.091147 10.067388 -3.649501 -4.582109 8.462541 5.909588 -6.887900 0.307792 5.583505 -7.367286 -3.541286 2.952699 -4.161522 -1.687599 -3.044162 -0.007430 0.710729 -4.686632 -4.661752 -0.400695 -7.390090 7.256894 1.523843 2.541824 -1.949934 -3.717985 -7.131797 10.352567 0.732900 -1.823243 -1.436777 -1.322959 -3.951551 -8.141852 1.143236 1.904398 -3.610636 -3.925820 -5.164547 1.611051 4.384988 -5.682435 2.089755 -3.366920 -3.189606 2.596086 0.834195 3.207074 -6.426829 -4.778202 -2.111029 -0.874445 3.484962 -2.629994 5.966234 9.634483 -2.153759 5.417608 2.083138 -4.170142 0.992427 6.414772 -4.790325 6.741619 -2.583679 7.072859 1.054059 5.456519 -5.058787 -3.197350 -0.052257 -3.576729 -2.803170 5.576403 -5.508587 1.074972 1.816820 -4.686614 -2.594999 4.767977 0.946712 1.230651 -1.329958 2.628387 -6.030228 0.130953 -3.827912 0.327889 5.419240 -0.959900 -7.252959 -0.436742 3.032311 -2.446270 -3.551188 1.245321 0.520203 5.718716 -5.712933 2.278222 0.710468 -0.979062 -7.228048 -7.710273 2.838393 -7.243996 -6.333826 3.057212 -6.592077 -0.928316 -4.520244 1.152753 -8.329192 -5.007791 2.439346 7.778823 1.871482 -2.938857 1.870388 -0.744178 5.818568 0.794738 1.742142 -0.393020 4.676572 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -1.024446 1.007680 0.165036 -0.797750 2.331711 -0.513143 0.502581 1.443894 -0.380252 0.619402 -1.951387 0.188249 -0.063853 -1.769812 0.478999 0.028628 0.464961 0.930476 -0.356510 0.095620 0.848265 -0.220485 -0.237972 -1.282322 0.034628 -1.140365 -0.302280 -0.044902 0.163303 0.396857 -0.374178 0.758982 1.760626 0.387833 1.267792 1.351806 0.935934 1.653859 0.505909 0.362857 0.598216 0.860154 -0.374168 -2.009539 0.572438 -0.939396 -0.875898 -0.929897 0.217456 -1.443829 1.190892 1.003372 0.265960 -0.126639 -1.083101 0.311809 1.516543 -0.023388 1.248852 1.096585 -1.244653 -0.125711 -0.579649 0.939365 -0.815219 0.898755 0.659150 -1.486410 -0.335822 1.061335 1.081472 -1.154655 -1.183884 -0.150893 0.015250 -0.666686 0.840481 -0.001997 -0.118731 -0.846717 -0.995349 0.498515 -0.405991 1.451704 -0.072864 -0.318537 -0.931600 -0.419988 0.755948 -0.919633 -0.989081 1.343900 -0.627128 0.515277 -1.357443 0.630918 0.620536 -0.020888 -0.478030 -1.330357 0.679660 0.314103 0.145540 0.084016 -0.771650 -1.001966 0.908214 0.709613 -0.487953 1.229964 0.078558 0.735152 0.327712 0.286547 -0.529264 0.592485 -1.860469 0.736310 -0.209348 0.005771 -0.102497 -0.282696 0.793234 -0.054407 0.415488 -1.208792 1.460125 1.035308 -0.527723 -0.762502 0.640212 -0.611591 -1.298702 -0.329213 0.890851 0.646630 0.080551 0.153051 0.108276 -0.571252 -0.780183 -1.410279 -0.844338 1.543161 -1.704149 -0.178107 -0.344913 -0.396016 -0.675134 0.485182 0.223508 0.302964 1.426774 0.806012 -0.623967 0.380731 -1.352868 0.567519 2.463641 1.265592 -1.259571 0.560380 -0.460745 0.351237 0.680879 0.233591 0.126348 0.413144 -1.060184 -0.438857 -0.085746 -0.981107 1.419457 1.076568 0.764164 -1.777999 1.232633 -0.162696 -0.502303 2.330012 0.957470 -1.691755 0.386343 1.632476 -0.657497 -0.449973 0.298375 -0.818610 -0.691628 -0.751351 0.489145 0.352050 -1.570943 -1.127603 -0.024267 -1.362183 1.219601 0.397531 0.298349 -0.370155 -1.148146 -0.307982 2.519450 0.183947 -0.176721 -0.085070 -0.525600 -0.616111 -1.753217 0.230335 0.687228 -0.662016 -0.622559 -0.924013 -0.139812 1.727767 -1.314961 0.018282 -1.023792 -0.166091 0.611019 -0.092991 0.372799 -2.129944 -1.009719 -0.156845 0.121471 0.654266 -0.613410 0.592868 1.662068 -0.782990 0.850077 1.402818 0.075870 0.186423 1.394013 -0.572573 1.273719 -0.458621 1.565861 0.409281 1.275741 -1.191658 -0.569852 -0.364668 0.039531 -0.847876 1.310181 -1.459219 0.184527 0.922193 -0.643632 -0.928148 1.196609 0.662885 0.767901 -0.473332 -0.176943 -0.473179 0.035829 -0.732546 0.359116 1.144708 -0.524523 -1.543522 -0.317724 0.943086 -1.132734 -0.392853 0.599265 0.232844 1.685271 -1.152518 0.927932 0.334296 -0.003711 -1.795716 -1.618920 0.599210 -0.987554 -1.001839 0.620817 -2.000619 -0.907764 -0.728465 0.823385 -1.979116 -0.293376 -0.050861 1.384996 0.197562 -0.014049 0.760525 0.166187 0.746653 -0.012459 0.324027 -0.049854 1.183145 +PE-benchmarks/largest-independent-set-problem.cpp__main = -2.625397 3.658287 2.644578 -3.002072 5.523192 -0.934361 1.750306 2.797271 0.108210 1.347361 -5.743400 0.300899 0.262226 -3.629945 0.911051 -2.224531 -0.229249 2.609860 -1.304083 0.799740 2.188135 0.145654 -0.778098 -3.814795 -0.313539 -2.801002 -1.428713 -0.196995 -0.810944 1.754814 0.780848 1.346335 3.884515 0.813003 3.231887 3.639935 2.071576 4.649022 -0.138366 3.668882 2.188176 1.991584 -0.911450 -5.182829 1.329039 -2.369939 -2.402609 -3.000250 0.154278 -4.871305 3.525961 2.318331 1.059049 -0.965905 -2.124454 1.186983 3.654777 0.483098 2.668430 2.940873 -3.527155 1.691930 -2.470608 1.614366 -1.996361 3.933567 1.955747 -3.959295 -1.267351 2.839172 3.755362 -2.860673 -3.488158 -0.768268 -0.119440 -1.462733 1.958662 -0.887509 -1.680687 -0.933612 -1.186808 1.524956 0.129999 3.024973 -0.340514 -0.857986 -2.682218 -0.795265 1.778100 -1.749937 -3.486876 4.164165 -1.151903 1.036578 -4.182956 0.852567 1.904558 -0.218703 -0.898202 -2.805222 2.099744 1.616756 0.210130 0.783078 -3.790483 -2.985464 2.473453 3.580557 -2.485746 2.361539 -1.843074 2.751598 0.855959 0.393041 -1.485873 3.466018 -4.798899 1.600327 -1.087623 0.319544 0.050126 -1.060386 0.943995 0.695620 0.477633 -1.936772 4.405318 2.263510 -2.344067 -1.637837 1.964390 -1.205055 -3.356426 -0.836836 1.428353 2.668756 0.035431 0.647223 -0.351366 -2.091078 -0.010017 -5.034570 -1.540850 2.724200 -2.824759 -0.580744 -0.687053 -0.450716 -2.013464 1.523986 0.686673 -0.197001 3.838372 1.754103 -0.428555 -0.775751 -2.734993 0.769310 5.674230 3.009823 -2.979524 1.245269 -0.289429 0.762716 1.538733 0.142586 -0.721444 2.535417 -3.494086 -2.241532 -1.952215 -3.736584 3.429706 4.320715 1.098694 -5.019132 3.641208 -1.781623 -1.482989 5.671117 3.789843 -3.733237 -0.952722 3.981433 -2.060030 -2.896777 0.960904 -1.281748 -1.903429 -0.480261 0.742301 -0.167796 -3.007503 -4.005660 -0.155908 -3.562432 3.067792 0.877647 0.839211 -2.021844 -2.662846 -2.887145 5.972896 0.295116 -1.413317 0.398599 -0.245083 -0.237965 -4.389233 0.704913 2.851663 -1.467901 -2.497811 -1.832833 1.089042 3.261151 -4.728805 -0.399273 -0.004439 -2.464233 1.374521 -1.354345 1.425863 -6.238954 -2.306510 -1.899903 0.937468 1.943873 -0.590659 1.440910 5.481425 -1.297464 2.160248 4.499795 -1.126885 -0.564863 4.839793 -1.091506 3.273083 -1.603783 2.863593 0.757828 2.875640 -2.628921 -1.884533 -0.493911 -0.386974 -1.500749 3.614338 -3.333170 0.744760 1.064314 -2.324772 -0.616860 4.072833 1.878468 0.997022 -1.292642 1.173473 -1.742387 -0.077283 -1.875501 -0.313074 2.928900 -1.096193 -4.601925 -1.092080 2.361117 -3.592530 -1.709487 1.202780 0.838978 4.149388 -2.569954 3.165569 0.877950 -1.453120 -5.628844 -3.192983 1.562638 -3.774563 -3.261007 0.143390 -3.522791 -2.510697 -1.853510 2.449671 -3.984023 -2.572861 0.693410 2.978381 1.504442 0.064407 1.657453 -0.054800 3.099199 0.735039 0.161314 -0.008196 3.399976 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = -2.493973 0.822775 1.264402 -1.660546 5.375991 -0.193411 1.317124 3.285515 -0.020715 2.606982 -4.175893 -1.506633 -1.057199 -2.949918 0.169560 -2.004725 1.269580 0.314506 -2.191461 -0.364878 1.467748 0.533158 0.064099 -1.737743 -0.706034 -3.034635 -1.854583 0.489464 1.873358 -0.768571 -0.774425 0.576864 5.881232 -0.076858 4.773031 2.757956 3.065276 3.069150 -0.034014 0.558354 0.842517 2.567937 -1.998641 -2.720748 -0.944783 -2.553409 -3.339267 -0.830677 1.286748 -2.151669 0.577568 2.406560 0.331548 1.142158 -1.170280 2.273318 1.689021 -0.596827 4.332310 1.538633 -3.649446 0.044256 -2.695000 4.080435 -1.654532 2.731262 -1.795462 -3.520677 -1.624131 0.938918 0.192015 -2.714622 -2.206331 1.509727 1.480110 -2.380378 2.072365 -0.423451 0.461173 -3.321364 -2.534580 1.804943 -0.188541 2.869567 0.001862 -0.114083 0.316057 0.257522 -0.080201 -4.302854 -0.541139 3.800079 -3.481272 -0.515639 -3.047050 0.470866 -1.035236 1.683136 -1.893049 -3.603748 1.138745 0.082850 0.182673 -2.331093 1.074111 -2.423879 0.715606 1.477041 0.083986 2.071731 0.773654 1.595834 2.839688 2.951940 -2.076554 0.906618 -3.739057 2.135895 -2.355985 -0.288482 -0.786063 1.005120 1.693306 2.011469 3.208787 -4.043837 2.130801 1.747982 -2.536365 -2.431239 0.040550 -2.873263 -3.803227 -0.453262 1.806822 1.174651 0.716838 -2.127604 1.244504 -1.143104 -0.721228 -1.182357 -0.361085 0.385349 -3.777288 -0.910339 -0.044504 -0.092955 -2.035374 3.790315 2.085900 1.422635 4.506559 1.593203 -1.882757 0.553915 -4.137225 0.566561 4.947196 -0.089213 -3.377257 2.866818 -3.513207 0.373896 2.012735 2.240428 1.071302 0.433428 -2.249149 -0.463632 0.342868 -0.118304 4.820921 1.259964 1.125912 -2.707360 2.363804 -2.722151 -1.713974 5.028483 3.492521 -4.770068 0.580453 2.199780 -1.162232 -1.214948 2.118640 -3.852504 -1.513574 -2.869726 0.361821 1.699272 -2.232288 -0.458196 2.124885 -3.604624 4.096977 0.225022 -0.710063 0.505871 -3.492959 -3.003886 5.799360 -0.059137 0.128998 -0.918170 -1.671909 -1.285199 -4.635464 0.323335 0.659122 -1.442345 -0.606144 -3.189452 0.947545 3.164255 -1.308836 2.681468 -3.630784 -0.544213 1.843100 -0.408342 2.120947 -2.171130 -2.027451 -1.314975 -1.602621 1.769065 -3.963962 1.850898 3.956883 -1.368165 3.897205 -0.177957 -3.887547 -0.819404 1.688932 -3.192730 4.318093 -0.420522 1.756478 0.503788 2.671722 -2.964235 -1.185688 -1.120788 -0.685441 -2.088091 2.387540 -3.000322 0.123586 0.114752 -2.751290 -2.078888 1.107679 0.451187 -0.427712 -0.193748 -0.125945 -3.463399 -0.213134 -2.518325 1.162327 2.629145 -0.926143 -3.345961 1.267202 1.042665 -1.803968 -0.638789 0.123111 0.266078 3.543038 -3.339349 -0.815453 1.349716 1.141019 -4.025164 -4.855909 -0.341298 -3.338832 -1.837855 0.990251 -3.248371 -1.903764 -2.379235 0.023706 -3.456393 -2.039999 2.630559 5.108074 1.585040 -2.750081 0.800793 0.086101 2.687956 0.430631 0.773804 0.806236 1.117996 +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.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -2.237554 0.100416 -1.321219 -2.053109 5.629001 -0.904487 -0.273303 4.573820 0.631417 1.696593 -3.849455 -1.103424 -0.723595 -4.071985 0.506458 0.329342 2.024098 1.165413 -2.412991 -0.347840 1.555241 0.746107 0.613079 -1.896760 -0.497499 -1.270924 -1.180534 0.588771 0.236615 -0.636311 -1.271450 1.103321 5.527799 0.494919 3.734287 1.956251 3.248756 3.332749 1.230056 0.205899 1.632245 1.822871 -1.068316 -3.376579 0.244668 -2.417473 -3.214851 -0.764098 1.190014 -2.864984 1.638317 2.461331 0.917082 0.393088 -1.827475 1.131343 2.076209 -1.030570 3.589280 1.978780 -4.150425 -1.139803 -1.346872 2.717448 -2.062822 2.461064 -0.314029 -2.929493 -2.282467 2.529555 1.249661 -3.415053 -3.014326 -0.020161 1.072866 -1.750628 2.613297 0.314486 3.581717 -2.943691 -2.299351 1.792817 -1.235753 2.609441 -0.060829 0.102651 -0.305818 -0.708423 0.499168 -3.241279 -0.499150 2.298312 -3.003413 0.491708 -2.994806 0.705525 -1.392130 0.337272 -2.313514 -3.991786 1.167484 0.074918 0.179056 -0.772924 0.940650 -1.770334 1.672433 1.677444 0.172825 2.511105 1.444980 1.244078 1.633228 1.842725 -1.169367 0.552892 -4.484603 1.558565 -1.822882 -0.231590 -1.151980 -0.016268 3.162738 1.272911 1.671259 -3.727936 3.264698 2.565079 -2.153123 -1.707584 0.944457 -1.589437 -3.212579 -0.034352 2.358933 0.261896 0.749553 -0.711813 1.458351 -1.216758 -2.190544 -1.207330 -1.719778 1.052785 -3.925782 -0.425150 -0.084554 -0.727308 -1.159703 2.332236 1.312381 0.405622 4.399987 0.730320 -2.714389 0.956274 -3.561943 1.530820 5.499734 0.914895 -3.124637 2.332202 -2.626839 0.941641 1.306041 1.806245 0.817575 -0.116703 -1.256375 0.290931 0.535469 -0.330984 4.056983 0.029988 1.936402 -4.086757 1.163492 -1.169828 0.478874 6.056338 2.305246 -4.448633 0.608397 3.355926 -0.092406 -0.429738 1.088012 -2.855979 -2.025243 -2.492695 1.509389 1.597525 -3.239825 -1.621362 1.346312 -3.124520 2.830717 0.420409 -1.572282 -0.043596 -3.831190 0.200478 6.237184 0.307212 0.212119 0.130353 -2.124517 -0.052337 -4.778877 0.207320 1.403555 -1.017157 0.518916 -2.008465 -0.252677 3.872650 -1.562686 1.180400 -4.729757 0.697116 1.988931 -0.983161 1.202019 -2.946761 -1.943281 -0.121271 -1.191403 1.392135 -3.595477 0.572352 2.522545 -1.912143 3.300916 1.192191 -1.341157 -0.131547 1.746514 -1.900148 4.217743 -0.255414 3.490526 0.737330 3.033222 -2.594442 -0.553457 -1.793701 -0.296112 -2.485295 2.531837 -3.825922 -0.205035 1.585380 -0.648151 -3.275032 1.611670 1.358144 0.232787 -0.479400 -1.312834 -1.484312 -0.191963 -1.371615 2.120786 2.293411 -1.394974 -3.402153 0.141368 2.779596 -2.146136 0.160207 0.990114 0.590573 4.436406 -3.123444 0.781637 1.458492 1.591000 -3.813532 -3.868735 0.754888 -1.623149 -0.184589 0.951554 -4.255319 -3.140245 -1.642963 1.622162 -2.578566 0.328555 1.385203 4.283167 1.336212 -2.299409 1.352637 0.573009 1.115152 0.182872 0.751583 0.756655 1.428830 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/permutations-of-a-given-string.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +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) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/permutations-of-a-given-string.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/permutations-of-a-given-string.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -1.184899 0.569211 0.354005 -0.651515 2.427265 -0.042963 0.502117 0.963474 -0.224511 1.224432 -1.864482 -0.654205 -0.436873 -1.398809 0.147317 -0.424547 0.419024 0.230034 -0.656543 0.007361 0.667373 -0.351361 0.042515 -0.844009 -0.212542 -1.372561 -0.768213 0.236321 1.081608 -0.364245 -0.421211 0.232520 2.255036 -0.060585 1.763295 1.190620 0.926936 1.437369 0.045374 -0.366399 0.337530 1.181871 -0.866843 -1.398060 -0.070020 -1.154153 -1.308750 -0.661849 0.607141 -0.889212 0.207593 1.119947 0.003463 0.194051 -0.839179 0.907362 1.260143 -0.034260 1.981393 0.598455 -1.122129 0.080436 -1.120030 1.470066 -0.773360 0.869585 -0.680865 -1.665043 -0.482809 0.487350 0.111217 -1.118114 -0.909071 0.695545 0.571644 -1.036794 0.821848 -0.231096 -0.003931 -1.713070 -1.229374 0.527863 -0.272524 1.378971 -0.111393 -0.110906 0.009315 0.067828 0.149097 -1.748166 -0.440783 1.525768 -1.213083 -0.071851 -0.586748 0.580804 0.040463 0.489092 -0.849093 -1.242050 0.369927 0.026823 0.160052 -0.673565 0.686045 -1.064835 0.338206 0.397796 0.164360 0.955846 0.629933 0.651975 1.038963 1.118494 -1.097393 0.100321 -1.480222 0.679100 -0.708460 -0.021792 -0.263306 0.464625 0.689590 0.486959 1.372194 -1.834048 0.999547 0.621088 -0.712944 -1.082954 0.092897 -1.093996 -1.498839 -0.183939 0.749482 0.430609 0.172351 -0.709638 0.385170 -0.370273 -0.610093 -0.244010 -0.122780 0.947290 -1.745987 -0.242931 -0.127105 -0.241084 -0.712974 1.281604 0.848438 0.676936 1.884883 0.927025 -0.771482 0.447314 -1.738499 0.491139 2.350472 0.011210 -1.520453 1.094692 -1.324729 0.187461 0.949076 0.804782 0.647359 0.213044 -0.955392 -0.304858 0.285479 -0.195527 1.970109 0.478757 0.655030 -1.304330 1.282057 -0.623977 -0.672315 2.274300 1.065281 -2.124522 0.633491 1.100326 -0.931655 -0.272084 0.805288 -1.347602 -0.558834 -1.272286 0.264562 0.758020 -1.103656 -0.459376 0.462210 -1.604624 1.838765 0.105671 -0.111990 0.382989 -1.289356 -0.980959 2.420159 0.152283 0.012090 -0.504839 -0.692958 -0.749790 -1.961233 0.159256 0.176166 -0.860878 -0.482218 -1.444413 0.238616 1.529567 -0.595630 0.987213 -1.741146 -0.041016 0.711050 0.193825 0.775946 -0.907858 -0.898492 -0.296505 -0.593598 0.602371 -1.396988 0.926278 1.731738 -0.811828 1.351791 0.056280 -1.086422 0.072396 0.844455 -1.244230 1.739452 -0.202057 1.197683 0.129690 1.205261 -1.138939 -0.378185 -0.303955 -0.307765 -0.841981 1.017187 -1.302864 0.003204 0.503125 -1.128110 -1.062852 0.588268 0.271840 0.361008 -0.066102 -0.196128 -1.358389 -0.017160 -0.778611 0.398151 1.118128 -0.298737 -1.453787 0.373166 0.455305 -0.609485 -0.498803 0.190170 0.085700 1.441699 -1.467494 -0.074837 0.401587 0.420553 -1.539240 -1.895386 -0.039562 -1.260920 -0.874279 0.994664 -1.722756 -0.564291 -1.049365 0.080050 -1.587737 -0.651406 0.637489 2.155060 0.641279 -0.998559 0.607265 -0.001047 1.080862 0.052855 0.250318 0.226027 0.606398 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.307573 1.831997 1.811200 -1.628446 6.618633 0.586374 1.632231 3.134120 -2.080765 4.163629 -5.009413 -1.515650 -1.730579 -3.925473 -0.063558 -1.867451 1.109109 0.038042 -1.689730 0.631687 1.950627 -1.617730 0.201010 -2.119052 -0.805173 -4.107342 -2.124640 0.532864 3.643439 -1.092360 -0.452791 0.209644 6.795961 0.067260 5.370783 3.583657 2.191123 4.246251 0.320896 -1.117256 -0.148543 3.745872 -2.919711 -3.673328 -0.379209 -3.522999 -3.520072 -1.857362 1.500142 -2.465814 -0.279617 3.489909 -0.513586 0.966070 -2.259168 2.778628 3.400443 -0.707121 6.193637 1.260163 -3.212242 -0.291057 -3.484356 4.100089 -1.794623 2.060378 -1.861954 -4.347011 -0.311648 0.217900 -0.012475 -2.872334 -1.986712 3.164365 1.764768 -3.406392 1.911702 -1.111921 -2.678025 -5.098605 -3.744206 1.305574 -0.203175 3.769883 -0.025082 -0.155463 0.672776 0.912885 -0.074819 -6.065852 -0.385197 4.849433 -3.576357 -0.657794 -2.599908 2.201200 -0.455239 2.115886 -2.992529 -2.864135 1.065278 0.023526 0.616955 -3.602449 1.701319 -3.849728 0.849220 0.611361 0.705398 2.460192 2.225482 1.846293 3.872613 4.004271 -4.069217 0.970124 -3.789316 1.933292 -1.631533 -0.207643 -0.675411 1.750771 1.253421 1.373957 4.797938 -5.747831 1.941653 1.621870 -2.453232 -4.106647 -0.250804 -4.093165 -4.112277 -0.751527 2.145875 1.120693 0.847003 -2.940678 0.722856 -1.038767 -1.757684 -1.415713 0.380323 3.412340 -5.217539 -0.693293 -0.403216 -0.487490 -2.157920 4.258883 2.789527 2.449687 5.549113 2.748880 -1.905993 1.414220 -4.885652 0.700015 6.546485 0.922777 -4.751608 3.674758 -3.924901 0.226519 2.418399 2.496168 2.756990 0.245721 -3.648849 -1.823034 1.391409 -0.133015 5.918216 1.561604 1.824070 -2.758697 4.479913 -1.724823 -2.855775 5.925794 3.302815 -5.489014 1.764972 2.426089 -2.757597 -0.716104 2.772266 -4.218522 -1.442723 -3.350900 0.063354 2.109809 -2.781107 -0.590078 1.520650 -5.008147 6.012972 0.332662 0.696345 1.353555 -3.941995 -4.176082 6.182733 0.062935 -0.176563 -1.924757 -2.119431 -3.058760 -5.520742 0.669269 0.212968 -2.357858 -1.757469 -4.666427 0.885825 3.658671 -0.853097 3.470536 -5.045339 -0.879536 2.053064 0.406792 2.802230 -2.679967 -2.708380 -0.962360 -1.793140 2.422779 -3.772801 3.565623 5.489688 -1.926503 4.314974 -0.347771 -3.155099 0.219729 2.053457 -4.439463 5.158340 -0.823352 3.221594 0.138597 3.391823 -3.245265 -0.950579 -0.487622 -0.524118 -1.889125 2.524565 -3.191459 -0.083186 0.552501 -4.101482 -2.642813 0.916240 -0.239332 0.322220 0.194469 -0.295900 -4.433430 -0.441877 -2.845632 1.116005 3.405361 -0.784438 -3.525111 1.519462 0.330808 -0.766817 -0.413402 0.331014 0.179509 3.442499 -4.605103 -1.135298 0.674480 0.900925 -3.978461 -5.648840 -0.382267 -3.869241 -3.247291 3.279177 -4.741414 -0.598097 -3.426367 -0.805839 -4.984882 -2.162768 1.802474 6.895858 1.732899 -3.460417 1.390506 -0.293428 3.582046 0.237212 1.144486 0.547015 1.733233 +PE-benchmarks/reservoir-sampling.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -1.303353 0.958121 0.670618 -1.097328 3.417000 -0.186673 0.762167 1.169810 -0.216609 1.091012 -2.564851 -0.551731 -0.286333 -1.998043 0.490527 -0.983948 0.464716 0.496054 -0.896370 -0.074363 0.749255 -0.155294 0.036647 -1.363287 -0.156314 -2.031335 -0.829089 0.242161 0.749517 0.447763 -0.336900 0.573900 2.370123 -0.169711 1.452238 1.391578 1.359097 1.645976 -0.130838 -0.164770 1.136664 0.955080 -0.647450 -1.976337 -0.027257 -1.217086 -2.014455 -0.825441 0.597809 -1.797101 -0.274027 1.311427 0.291143 -0.281322 -1.095854 1.202937 1.682795 -0.050758 1.823862 1.076579 -1.538124 -0.346439 -1.244434 1.670037 -1.045554 1.346259 -0.570109 -2.247542 -1.050390 1.605387 -0.143951 -0.710614 -1.361917 0.013613 0.872673 -1.005829 0.927963 -0.102844 -0.257898 -1.010011 -0.947142 0.834786 -0.393280 1.704740 0.116903 -0.205595 0.282613 -0.372462 0.655157 -1.473723 -1.107309 2.094872 -1.006856 -0.164313 -1.327919 0.450572 0.806757 -0.098885 -0.647355 -1.839797 0.600656 0.141175 0.108972 -0.872954 -0.222818 -1.665389 0.551312 1.255670 0.029279 1.626637 -0.335299 0.740128 0.435479 0.619035 -1.312106 0.447835 -1.982135 0.828978 -1.098740 -0.140534 -0.632230 -0.026059 1.065429 0.844379 0.978782 -1.827832 1.911653 1.108610 -0.940547 -0.815422 0.475372 -0.657720 -1.660731 0.056596 0.856546 0.531992 0.260708 0.009070 0.528200 -0.604425 -0.380386 -0.412421 -0.664273 1.162639 -2.062804 -0.115979 -0.121289 -0.171235 -0.814489 1.173027 0.791077 0.438988 2.126940 0.921623 -0.924123 0.820067 -1.956431 1.029870 3.220474 0.224431 -1.572208 1.028844 -1.310764 0.383423 0.672588 0.499732 0.119449 1.020116 -1.289618 -0.431685 -0.545409 -0.841506 2.057436 1.384159 0.622590 -2.404301 1.401365 -1.382290 -0.162286 2.439344 1.774129 -2.469806 0.676977 2.191418 -1.863282 -0.768215 0.681977 -1.539046 -0.762548 -1.486583 0.509389 0.845697 -1.652376 -1.098962 0.148706 -1.684750 1.695065 0.399376 -0.258118 -0.167663 -1.041567 -1.440068 3.053226 0.196177 0.085287 -0.287666 -0.751001 -1.047486 -2.454202 0.060018 0.703455 -1.241575 -0.574982 -1.357908 -0.154604 1.985803 -1.414094 0.806534 -1.926860 0.335987 0.888405 0.659034 0.789001 -1.233901 -1.069516 -0.397864 -0.811747 0.345690 -1.625339 0.665829 1.546456 -0.955773 1.864925 -0.112099 -1.835967 0.074753 1.345019 -0.792021 1.961870 -0.031782 1.757351 0.552452 1.657184 -1.296650 -0.355094 -0.547570 -1.391599 -1.223078 1.692905 -2.189625 -0.012992 1.296057 -0.762494 -1.621315 1.314907 0.937443 0.834926 -0.548190 -0.092952 -1.246939 0.083831 -0.643117 0.657864 1.167674 -0.722748 -1.857114 -0.073318 1.460356 -1.473857 -1.435581 0.609468 0.274326 1.966489 -1.591364 0.910170 0.606591 0.454303 -2.513762 -2.031811 0.411558 -1.554079 -1.148692 0.661509 -2.309012 -1.127374 -1.012346 0.799540 -1.703666 -1.310859 0.827177 2.184937 0.254220 -0.608846 0.875243 0.143741 0.727405 -0.124219 0.369728 0.306777 0.706792 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -2.270400 2.601477 0.624092 -2.037675 5.395741 -0.564438 1.482087 1.962646 -1.610646 1.634075 -4.584451 0.193767 -0.120470 -4.394483 0.952745 -0.772121 0.960278 1.226496 -0.539661 0.875847 1.520883 -1.569590 -0.160146 -2.831078 -0.090858 -3.597704 -0.679718 0.150763 1.521960 0.648874 -0.142636 1.123551 3.797020 0.447802 2.429820 2.784320 1.609852 3.188404 1.003140 -1.251014 1.219796 1.781265 -0.957645 -4.019715 0.512599 -1.948379 -2.718112 -1.996973 0.621944 -2.997978 -0.205579 2.462873 0.395293 -0.677520 -2.976758 1.297767 4.211893 -0.359464 3.120200 1.985352 -1.798819 -1.008195 -1.437521 1.747627 -1.773221 1.046917 0.561240 -2.972080 -0.390672 2.615388 0.242899 -1.416776 -2.274095 -0.044001 1.108945 -1.978595 1.514917 -0.320238 -2.060280 -2.405675 -1.581386 1.197024 -0.680136 3.527433 0.306373 -0.348452 -0.107529 -0.651359 1.515297 -2.465825 -1.987493 3.069059 -1.103736 -0.376838 -1.808154 2.747529 1.919424 -0.355031 -1.398395 -2.932480 1.276428 0.244540 0.304630 -1.204137 -1.053386 -3.153215 1.130995 1.428610 -0.603873 3.274451 0.291341 1.589772 0.763568 0.942242 -2.701635 0.650924 -3.822647 1.120136 -0.913215 -0.161407 -0.667976 -0.414317 1.641576 0.676261 1.354532 -3.283482 3.450755 2.577820 -0.850711 -2.009308 1.054719 -1.275469 -2.624979 -0.186143 1.526860 0.953751 0.670469 0.295994 0.403709 -1.011041 -1.242672 -1.678029 -1.237998 4.398609 -4.331340 -0.032752 -0.406036 -0.493505 -1.376617 1.206884 0.922198 0.607396 3.522767 1.691920 -1.671223 2.569457 -2.921810 1.575109 6.064354 2.247305 -2.720967 1.609792 -1.546755 0.435895 1.078483 0.572691 0.693507 0.698572 -3.372677 -1.607345 0.446260 -2.159770 3.225074 1.796948 1.364738 -4.236894 3.957697 -0.309851 -0.742515 4.597891 2.098471 -3.810771 1.853571 3.975323 -3.249277 -0.736625 0.962825 -2.177086 -1.202732 -2.112635 0.900267 0.849745 -3.108805 -2.433064 -1.001802 -3.026992 2.883902 0.996570 0.387375 -0.584461 -1.410650 -1.708498 5.266095 0.293829 -0.257917 -0.596299 -1.200481 -2.204960 -4.078831 0.277070 1.014714 -2.400173 -1.031899 -2.389373 -0.617310 3.527324 -2.736406 0.506551 -3.766559 0.298309 1.463754 1.689399 0.801956 -3.029118 -2.095434 0.178441 -0.355371 0.656434 -1.878572 2.089132 3.171110 -1.782748 2.360163 0.322472 -1.131031 1.283679 2.781310 -1.484736 3.200325 -0.520055 4.590462 1.056522 2.982157 -2.416971 -0.805190 -0.651618 -1.929029 -1.838147 2.739660 -3.751128 0.068214 2.794220 -0.737814 -3.089406 2.489273 1.476570 1.872924 -1.083340 -0.227473 -1.262203 0.233154 -1.115902 1.092162 2.209087 -1.040797 -3.159377 -0.649049 2.899886 -1.517203 -1.587478 1.265421 0.589828 3.362007 -2.767622 2.156412 0.392028 0.558667 -3.735011 -4.096976 1.962830 -2.374016 -2.129354 1.904682 -4.900395 -1.398162 -1.802905 1.453866 -4.144526 -0.946119 0.483146 3.468737 -0.102998 -0.653605 1.479570 0.040877 1.217289 -0.503528 1.153134 0.012127 1.975259 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.613929 2.879873 1.486366 -2.236146 5.955139 -0.770197 1.906401 1.965357 -1.474995 1.835734 -5.242162 -0.241566 -0.278384 -4.670974 1.002829 -1.817335 1.152056 1.288699 -0.711710 1.069617 1.627491 -1.491272 -0.342185 -3.111688 -0.159805 -4.382839 -1.127699 0.246169 1.774768 0.442854 0.328315 1.327257 4.788821 0.384357 3.301739 3.359641 1.872323 3.503630 0.832486 -1.391343 1.419581 2.134705 -1.224105 -4.220031 0.086548 -2.064487 -3.253881 -2.112037 0.724979 -3.115616 -0.985986 2.733993 0.412473 -0.396816 -3.131108 1.717735 4.536650 -0.242279 3.607627 2.162118 -2.076835 -0.483394 -1.880764 2.203163 -2.028101 1.195185 -0.184717 -3.443800 -0.436699 2.743846 -0.023165 -1.548187 -2.449869 0.199623 1.477444 -2.298995 1.789081 -0.338661 -2.465785 -2.887097 -1.791105 1.441072 -0.489301 3.828527 0.279255 -0.419226 0.238899 -0.612602 1.498651 -2.952936 -2.129965 3.620520 -1.634766 -0.924855 -1.788159 2.922642 2.269062 -0.114231 -1.442479 -3.675149 1.432238 -0.165624 0.249249 -1.224411 -0.773465 -3.323235 0.710367 1.607885 -0.578752 4.005373 -0.056051 2.259506 1.388476 1.219314 -3.311311 0.642533 -4.191345 1.531468 -1.801564 -0.380390 -0.579061 -0.259535 1.704909 1.405493 1.774676 -3.742991 3.637831 2.864668 -0.967448 -2.132031 1.003674 -1.703003 -3.158081 -0.392015 1.667895 1.334419 0.872254 -0.016992 0.467616 -1.102890 -0.482495 -1.677511 -1.191789 4.337310 -4.735877 -0.179455 -0.339239 -0.346316 -1.702354 1.702623 1.216847 0.750749 4.079986 1.859039 -2.050513 2.655544 -3.489437 1.443479 6.623574 1.630380 -3.022729 2.094705 -1.925293 0.223550 1.346925 0.997614 0.767860 0.673288 -3.925336 -2.042434 0.144359 -2.350938 3.810028 1.967410 1.061482 -4.751248 4.589152 -0.802329 -1.251740 5.272475 2.421962 -4.403403 1.816344 4.285138 -4.005128 -1.312650 1.298722 -2.800027 -1.419950 -2.582482 0.922530 0.934027 -3.216914 -2.309011 -0.607332 -3.523671 3.214999 1.040987 0.027721 -0.626237 -1.540870 -3.068275 6.213992 0.314210 -0.128896 -0.767333 -1.358507 -1.855615 -4.746693 0.208013 0.834873 -2.604681 -1.013037 -2.768204 -0.270255 3.780401 -3.088128 1.076084 -4.293729 0.071673 1.670847 1.888427 0.882665 -3.133805 -2.413676 -0.023350 -0.689185 0.513493 -2.428822 2.453618 3.798695 -1.842871 2.755811 -0.181695 -2.616730 1.246754 3.003472 -2.113132 3.775805 -0.615164 4.800467 1.291517 3.223390 -2.919778 -1.223209 -0.669925 -2.515488 -2.373715 2.967533 -4.120276 0.224568 2.774215 -0.994310 -3.337789 2.668449 1.478326 1.677850 -1.137794 0.005572 -2.105061 0.415985 -1.198714 1.201835 2.481697 -0.904423 -3.618048 -0.311095 3.192568 -1.692467 -2.187497 1.106865 0.537777 3.622036 -3.182375 2.068947 0.611899 0.809079 -4.125327 -4.913455 2.163073 -3.274912 -2.437909 1.782970 -5.139652 -1.557477 -2.124644 1.342697 -4.278014 -1.672653 1.281144 4.204156 0.144203 -1.344748 1.435845 -0.145706 1.600354 -0.416159 1.301409 -0.060176 2.066690 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.807035 0.787682 0.518843 -0.672603 1.722886 -0.270970 0.433263 0.595324 0.052173 0.585219 -1.602325 -0.382274 -0.107377 -1.231483 0.274663 -0.636265 0.292536 0.462372 -0.346408 0.154627 0.491849 -0.211681 -0.124734 -0.912794 -0.066780 -1.240484 -0.506410 0.096913 0.353083 0.084009 0.015288 0.411780 1.546514 0.093312 1.152369 1.042014 0.608825 1.096131 0.151171 0.027888 0.537852 0.676796 -0.405942 -1.246582 -0.007091 -0.650782 -0.932834 -0.645451 0.245510 -0.916750 0.068810 0.761401 0.153777 -0.053129 -0.805684 0.497439 1.093799 0.185453 1.110166 0.667447 -0.748307 0.222795 -0.685945 0.798723 -0.706937 0.615327 -0.202703 -1.188963 -0.310837 0.794575 0.201317 -0.536860 -0.792381 0.067923 0.366298 -0.638919 0.600694 -0.104451 -0.360387 -0.751801 -0.604195 0.498984 -0.135963 1.043535 0.009303 -0.157319 -0.120512 -0.150705 0.404213 -0.865049 -0.672338 1.084524 -0.604544 -0.161384 -0.414002 0.580851 0.645094 0.029685 -0.293138 -1.085353 0.432462 -0.050081 0.054637 -0.027573 -0.136546 -0.839468 0.317794 0.645161 -0.209513 1.041404 -0.048438 0.743485 0.527260 0.378283 -0.814014 0.198171 -1.251746 0.526474 -0.674481 -0.137836 -0.114279 -0.008207 0.470887 0.470214 0.555630 -1.037258 1.063592 0.773193 -0.389256 -0.486101 0.307330 -0.530546 -1.038733 -0.162746 0.493179 0.521571 0.198801 -0.071352 0.117190 -0.387624 -0.002716 -0.458725 -0.355741 0.889369 -1.145803 -0.121483 -0.087588 -0.118615 -0.538747 0.618694 0.387160 0.224154 1.261804 0.553623 -0.597021 0.248044 -1.104100 0.373273 1.870174 0.101297 -0.917369 0.648618 -0.552958 0.073305 0.498456 0.394633 0.127830 0.325417 -0.939023 -0.518900 -0.345659 -0.673697 1.194668 0.655152 0.272168 -1.326924 1.184048 -0.390282 -0.426425 1.702169 0.782455 -1.338652 0.233574 1.222152 -1.154621 -0.550283 0.431944 -0.793234 -0.388221 -0.802556 0.273493 0.304854 -0.929379 -0.663245 0.052656 -1.094899 0.992620 0.258095 -0.082156 -0.173089 -0.639930 -0.949523 1.987914 0.142521 -0.020651 -0.168672 -0.382084 -0.285627 -1.458602 0.050900 0.305529 -0.686787 -0.279491 -0.789593 0.112047 1.126096 -0.968230 0.387127 -0.967819 -0.109274 0.504378 0.258648 0.285183 -0.917934 -0.711796 -0.147555 -0.274367 0.208470 -0.754051 0.613938 1.230050 -0.496028 0.818293 0.263926 -0.926304 0.167369 0.927571 -0.661175 1.170092 -0.280859 0.955938 0.375717 0.919435 -0.862507 -0.444536 -0.217385 -0.657779 -0.753099 0.901622 -1.173837 0.109149 0.663830 -0.462829 -0.784270 0.815505 0.453266 0.439733 -0.308176 0.040750 -0.839426 0.149714 -0.338004 0.297289 0.759849 -0.142304 -1.170550 0.002170 0.856761 -0.673265 -0.797503 0.262483 0.090967 1.135411 -0.947984 0.546258 0.331292 0.220844 -1.304240 -1.300244 0.424146 -1.053661 -0.667505 0.350387 -1.356869 -0.605766 -0.631458 0.399539 -1.039944 -0.593416 0.505595 1.295448 0.292389 -0.530337 0.400954 -0.048871 0.597974 0.048350 0.188156 0.000162 0.642297 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -1.010104 0.901114 0.049403 -0.838397 2.669343 -0.302117 0.435495 1.566527 -0.647348 0.816270 -1.877408 0.420373 -0.010553 -1.770978 0.458600 0.136505 0.380942 0.712507 -0.448244 0.004213 0.755361 -0.241917 -0.071987 -1.154033 -0.066214 -1.397294 -0.236546 0.063603 0.474326 0.420383 -0.489041 0.563888 1.649456 0.077872 1.025440 1.160611 1.167353 1.409266 0.385650 -0.032031 0.678162 0.748236 -0.413643 -1.816690 0.444651 -0.971797 -1.183110 -0.729131 0.356163 -1.529629 0.659470 1.041554 0.234733 -0.260076 -0.979475 0.694492 1.495439 -0.403108 1.320418 0.967201 -1.286378 -0.656963 -0.665919 1.301608 -0.783331 0.871756 0.360878 -1.545529 -0.521050 1.191442 0.552471 -0.915711 -1.011542 -0.063944 0.234366 -0.768655 0.760188 -0.077368 0.068879 -0.924434 -0.827324 0.536158 -0.456349 1.435664 0.032998 -0.198098 -0.490614 -0.366365 0.645591 -1.047962 -0.910797 1.449170 -0.689887 0.364731 -1.498431 0.560221 0.569286 -0.104254 -0.484837 -1.347187 0.579190 0.385312 0.172751 -0.554089 -0.415285 -1.173192 0.717097 0.656556 -0.179149 1.269702 -0.147717 0.515762 0.149896 0.413162 -0.598002 0.488153 -1.802782 0.653190 -0.228116 0.100653 -0.385074 -0.248597 1.032668 0.158233 0.571182 -1.349915 1.522973 0.892266 -0.553198 -0.838610 0.555792 -0.499899 -1.200787 -0.121824 0.811364 0.394314 0.077096 0.136037 0.379094 -0.456284 -1.047526 -1.162021 -0.746336 1.476224 -1.979119 -0.073200 -0.272546 -0.275362 -0.596220 0.591093 0.416305 0.352792 1.520432 0.817729 -0.525383 0.935722 -1.428700 0.756938 2.522970 1.247362 -1.255673 0.649272 -0.836519 0.348413 0.603303 0.231963 0.138587 0.655814 -1.085927 -0.353038 0.188658 -0.780414 1.507176 1.015577 0.762382 -1.885338 1.091060 -0.464271 -0.239341 2.142158 1.144590 -1.899990 0.764664 1.661047 -0.719015 -0.274482 0.328393 -1.009536 -0.742226 -0.823805 0.468225 0.567908 -1.507998 -1.102276 -0.082335 -1.282860 1.317402 0.343875 0.182195 -0.187440 -0.973733 -0.249896 2.280844 0.199505 -0.135552 -0.197275 -0.575518 -1.039551 -1.767163 0.172425 0.701210 -0.844808 -0.601498 -1.035661 -0.363789 1.719836 -1.138187 0.154319 -1.678177 0.127302 0.666394 0.236202 0.470970 -1.806784 -0.878079 -0.233522 -0.111186 0.544679 -0.936400 0.593203 1.444790 -0.854089 1.190575 0.745277 -0.247152 0.196068 1.250557 -0.553240 1.368918 -0.142164 1.686858 0.411472 1.290820 -1.152650 -0.300203 -0.485931 -0.313703 -0.773756 1.288300 -1.587581 0.018934 1.039381 -0.627123 -1.175040 1.099524 0.746677 0.826729 -0.436299 -0.280311 -0.430924 -0.085135 -0.813041 0.411606 1.046079 -0.780233 -1.483830 -0.243972 1.013109 -1.163541 -0.550796 0.612217 0.361441 1.631511 -1.207228 0.917578 0.335893 0.148747 -1.975940 -1.649524 0.495769 -0.858112 -1.028621 0.659118 -2.131681 -0.941278 -0.744110 0.786007 -2.051621 -0.458231 0.056444 1.498803 0.007129 -0.012165 0.865374 0.169718 0.619212 -0.114621 0.458682 0.078374 0.889810 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -0.690127 -0.495040 -0.020121 -0.200600 2.442920 -0.819505 0.115918 1.730548 0.904015 0.419128 -1.007026 -0.535410 -0.312078 -0.556831 0.529783 0.153446 0.670536 0.946336 -1.109623 -1.140581 0.526150 1.519193 -0.166150 -0.395174 -0.039175 -0.187394 -0.778230 0.228411 -0.666610 0.076396 -1.231658 1.140620 1.758343 -0.180731 1.198881 0.845215 1.737052 1.051400 -0.282092 1.316910 1.325349 0.314398 -0.215881 -1.214689 0.378762 -0.630237 -1.204673 -0.178453 0.460464 -0.975910 1.913217 0.580016 0.393915 0.349637 0.138716 0.563321 -0.266411 0.038474 0.726329 1.014709 -2.190780 0.462666 -0.647814 1.985719 -0.685816 1.849614 -0.542843 -2.173233 -1.689557 1.194029 1.585635 -1.647868 -1.424669 -0.335315 -0.130829 -0.099574 0.857035 0.594007 2.791770 -0.241755 -1.400390 0.652811 -0.668735 0.562207 -0.163075 -0.351675 -1.146535 -0.625939 0.375084 -0.549853 -0.628944 1.241710 -1.258523 1.324980 -2.033868 -1.798260 -0.216835 0.041456 -0.069704 -1.770219 0.426482 0.018454 0.060171 0.773242 0.078249 0.118106 0.672015 0.958492 0.218116 0.473303 -0.414866 0.136552 0.221365 0.014396 0.815761 0.296595 -1.302561 1.248150 -0.733089 -0.188598 -0.438948 -0.060074 1.131029 0.195882 0.389770 -0.750535 0.858487 0.150600 -1.056809 0.138924 0.424677 -0.134274 -1.199896 -0.273679 1.111797 0.389640 -0.262732 0.155310 0.589347 -0.412179 -0.562269 -0.666993 -1.136061 -0.974616 -0.698270 -0.274215 -0.286926 -0.508453 -0.539819 0.825736 0.406666 0.670234 1.018010 0.618935 -0.587426 -1.008046 -1.777029 0.620956 1.262457 -0.143752 -0.944788 0.542008 -0.890429 0.611628 0.713145 0.617218 -0.512298 0.630491 0.792716 0.944964 -1.118380 0.137965 1.290493 1.107086 0.534326 -1.220036 -1.338896 -1.463264 0.056160 1.899893 1.113083 -1.823021 -0.305866 1.282658 0.763825 -0.848073 0.312896 -1.257560 -1.104402 -0.949430 0.715625 0.924657 -1.443309 -0.167466 1.579905 -0.776519 0.559243 0.045970 -0.857522 -0.002583 -1.663325 -0.138846 2.323810 0.182991 0.514045 0.220188 -0.842806 0.635393 -1.414077 0.027959 0.862778 0.219182 -0.268903 -0.523092 -0.042265 1.787477 -0.653477 0.634555 -0.194066 0.379754 0.606466 -1.156746 0.470701 -1.757331 -0.554300 -0.609456 -0.520394 0.316846 -1.219641 -0.926798 0.595294 -0.707246 0.904154 1.811502 -0.929004 -0.973752 0.504692 -0.206648 0.987880 0.096964 -0.009570 0.442652 0.831785 -0.970414 -0.377174 -0.730281 0.778774 -1.268916 1.204968 -1.129879 0.101877 0.321672 -0.760770 -0.713188 0.602024 0.916658 0.165722 -0.332547 -0.668861 -0.561971 -0.059089 -0.686672 0.683070 0.726977 -0.874574 -1.091108 0.335625 0.449853 -2.233488 -0.422943 0.465440 0.157435 1.637326 -0.854559 0.279051 0.960247 0.499250 -1.929692 -0.853024 -0.582444 -0.847191 -0.309850 -0.390021 -1.001112 -1.754378 -0.323152 0.926258 -0.580965 -0.694362 0.451277 1.201320 0.563084 0.001727 0.788043 0.513104 0.196142 0.097344 -0.249233 0.299622 0.524995 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -8.539650 7.034322 6.830804 -3.546296 9.864957 3.319527 1.788386 3.388618 -4.880129 9.621357 -12.606923 -4.640182 -5.506164 -8.493239 -1.735185 -8.289005 1.376774 -1.971789 -2.419510 3.772960 4.923318 -7.332834 -0.139697 -5.816394 -1.537605 -9.664293 -5.557180 -0.111023 10.669100 -4.277809 0.914174 -1.031817 16.041442 1.887885 12.853252 9.090920 2.497578 11.625239 0.914132 -1.516866 -4.192330 10.912409 -8.130036 -6.739887 -0.792487 -9.640903 -4.374271 -3.032366 3.305312 -2.005371 -1.730625 8.319398 -2.115459 2.992971 -6.928766 5.337123 8.373698 1.716656 16.044263 1.656624 -3.935837 -0.506892 -8.937283 5.523040 -4.787470 3.791447 -2.996737 -5.573259 3.633927 -4.018371 -0.483303 -7.042616 -3.965316 9.595309 3.141093 -9.026547 3.937333 -3.933590 -15.457830 -12.138978 -8.960603 2.147125 2.787103 9.074817 -0.787124 -0.020122 1.558274 4.618025 -0.631404 -15.478378 0.029842 11.065085 -7.225682 -2.101260 -3.483347 9.785013 -2.098544 6.868273 -8.075510 -2.479063 2.706879 0.465889 1.482329 -11.690858 2.991751 -11.285404 4.136949 -1.384331 -1.566343 3.128254 7.508433 6.102319 11.567876 11.762379 -11.998526 1.075712 -9.100630 1.540773 -1.523751 -0.876573 1.083626 5.128807 -3.222807 1.630749 12.237375 -14.105784 3.251550 3.632388 -6.062569 -12.924667 -1.555888 -12.165987 -9.893618 -2.507963 4.095222 4.200678 2.183734 -9.077324 -0.482336 -3.040989 -2.672881 -5.084204 3.950170 11.463296 -9.540144 -2.363077 -0.929409 -1.217178 -5.858867 9.690093 5.913441 5.187931 13.063580 6.282975 -3.751085 3.553318 -9.062080 -1.173753 13.222919 4.518878 -12.261491 8.585190 -7.158476 -0.483898 5.812060 5.709864 8.714552 0.136328 -11.017732 -7.763540 4.407964 -1.518004 13.151274 1.911867 4.105268 -1.448324 16.251472 -1.053447 -9.996147 12.739971 6.071511 -9.539410 3.311635 3.322509 -6.339061 -1.326877 7.889518 -7.914306 0.178371 -6.438004 -2.154604 3.003468 -5.124234 -1.017594 1.684683 -12.968389 16.372497 0.854823 5.506297 4.049515 -10.634064 -15.234602 11.939273 -1.832527 -1.981139 -5.653315 -3.710228 -8.085509 -11.959517 2.436160 -0.272486 -6.667713 -5.270488 -11.531894 4.685708 5.885455 -1.727452 8.595960 -10.419643 -6.655905 3.826372 1.235577 8.198248 -2.512921 -7.036508 -1.587281 -1.969648 8.601444 -6.528376 12.542274 15.929057 -3.622314 10.064727 -3.365182 -5.775243 1.631896 5.400665 -12.135743 11.465837 -3.510216 6.656160 -1.312170 7.642384 -7.628420 -3.622988 2.165565 -0.443231 -1.888025 4.011817 -4.747456 0.340769 -1.879671 -10.750740 -2.391678 1.417337 -3.784258 -0.642546 1.209315 2.807157 -9.831475 -1.140047 -5.218970 0.851030 8.699018 2.031795 -6.798299 3.363641 -2.128560 2.404073 4.036152 -0.273116 -1.159059 6.679015 -10.715543 -5.383375 -0.345218 -1.307060 -6.044616 -13.920393 -2.361249 -8.938687 -7.891008 10.028555 -10.613006 2.544540 -8.511133 -4.394449 -10.256536 -3.667065 3.855904 15.649620 6.980606 -9.991145 1.876173 -1.785591 11.171096 1.210235 1.695197 0.734853 5.024849 +PE-benchmarks/subset-sum-problem.cpp__main = -0.991406 -0.075754 0.047819 -0.337794 1.932253 -0.004106 -0.040912 0.976307 0.285757 0.815129 -1.305457 -1.035198 -0.658041 -1.050997 0.183213 -0.037171 0.454691 0.367737 -0.859742 -0.328371 0.765674 0.098991 0.033515 -0.618146 0.002109 -0.490595 -0.801760 0.110265 0.597750 -0.198914 -0.911126 0.315332 1.862702 0.072453 1.454181 0.857627 1.060387 1.332181 -0.306860 0.088253 0.197542 1.184492 -0.745004 -1.334166 0.378305 -1.200601 -0.932183 -0.544808 0.625798 -0.598175 0.729418 0.882116 0.017220 0.248059 -0.337898 0.425116 0.718600 0.375130 1.525444 0.659859 -1.019333 0.319180 -1.006042 1.001400 -0.731551 1.308568 -0.462149 -1.562541 -0.884096 0.175684 0.756059 -1.103069 -1.031902 0.500607 0.382804 -0.525373 0.877678 -0.003747 0.943953 -1.243790 -1.530933 0.226467 -0.693526 1.062966 -0.382831 -0.240343 -0.143364 -0.085907 0.207354 -1.307744 -0.335838 1.107414 -0.991195 0.504899 -0.831390 -0.294894 -0.366650 0.566202 -0.855746 -0.920981 0.337458 0.161835 0.194047 0.152791 0.672491 -0.425985 0.684931 0.411506 0.286064 0.449110 0.687897 0.171162 0.760677 0.842609 -0.464378 0.129975 -0.972554 0.544702 -0.667421 0.144151 -0.103812 0.545394 0.790065 -0.064103 0.990208 -1.332419 0.704590 0.446124 -0.836159 -0.553466 0.311437 -0.991979 -1.347628 -0.267024 0.891031 0.334199 -0.176261 -0.626815 0.386360 -0.375540 -0.813726 -0.035188 -0.469732 -0.022592 -1.024846 -0.325535 -0.334428 -0.618062 -0.422225 0.985808 0.509387 0.673360 1.380607 0.866096 -0.855471 -0.466197 -1.405145 0.543038 1.839824 -0.490842 -1.354761 0.614904 -0.798645 0.490166 0.927355 0.630178 0.514632 0.368424 0.084871 0.311338 -0.602288 0.038650 1.572841 0.775857 0.767314 -0.982843 0.257578 -0.563345 -0.514458 1.911536 0.774892 -1.565190 0.125044 0.683444 -0.404358 -0.311924 0.330941 -0.831203 -0.389111 -1.234979 0.489681 0.714345 -1.158530 -0.402660 0.782119 -1.337251 1.390091 0.034537 -0.120510 0.379556 -1.546679 -0.562519 2.036333 0.073204 -0.100864 -0.405852 -0.635989 -0.194651 -1.482620 0.351617 0.070886 -0.377556 -0.560170 -1.069620 0.258922 1.513775 -0.290614 0.660177 -1.021455 0.024978 0.477936 -0.427797 0.919785 -1.001284 -0.832323 -0.363696 -0.613045 0.764764 -0.981484 0.100156 1.378569 -0.852127 0.747084 0.616399 -0.782333 -0.318823 0.713801 -0.801369 1.253391 -0.198541 0.445651 -0.145391 1.049721 -0.791752 -0.276523 -0.231331 0.322324 -0.619729 1.026057 -0.817572 0.050490 0.275835 -1.100944 -0.648767 0.450076 0.122431 0.399532 0.030083 -0.444119 -1.231719 0.149882 -0.270801 0.254378 1.119431 -0.221471 -1.182515 0.144154 -0.006984 -0.765219 -0.297018 0.324613 -0.182107 1.434102 -1.130572 -0.153875 0.452197 0.240179 -1.076495 -1.053392 -0.598917 -0.825570 -0.382180 1.156340 -1.114492 -0.545723 -0.810646 0.201517 -0.590017 -0.419090 0.229845 1.525772 0.942577 -0.656155 0.672161 0.273126 0.994035 0.173678 -0.260563 0.247730 0.631794 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.568287 1.458202 1.964202 -1.186532 5.986689 0.097015 2.089536 2.667113 -2.503976 3.922309 -4.922205 -2.286606 -2.003485 -3.521236 -0.087026 -2.312732 1.360322 -0.399417 -1.562483 0.944392 1.916475 -1.694437 -0.231627 -1.939344 -0.644830 -3.400454 -2.330142 0.518661 4.655616 -2.233529 -0.499305 0.303505 7.202491 -0.170864 6.266633 3.858580 1.736103 3.762585 -0.094922 -2.731041 -0.761877 4.285738 -3.287151 -2.759462 -1.399202 -3.235671 -3.334498 -1.065678 1.829805 -0.912305 -1.499591 3.510517 -0.741031 1.777049 -2.102613 3.261277 3.079608 -0.320743 6.525211 1.059255 -2.791521 0.467710 -3.656741 4.554733 -1.472413 1.735373 -3.170726 -3.855132 0.164102 -0.672443 -1.072110 -3.414149 -1.515338 3.829446 1.844630 -3.621756 2.329234 -0.922323 -2.373295 -6.163596 -4.192762 1.219534 0.211050 3.867878 -0.435412 -0.194873 1.066921 1.227134 -0.485894 -6.507835 0.093467 4.517731 -4.405247 -1.643489 -1.496789 2.538546 -0.686443 2.905962 -3.132014 -3.232738 1.033055 -0.695088 0.525775 -4.229427 3.792154 -3.156708 -0.278318 -0.123334 1.125751 3.146929 2.854994 2.642505 4.778757 4.667636 -3.882489 -0.213694 -3.531760 1.969094 -2.761945 -0.338454 -0.126186 2.286209 1.340287 1.714239 5.306791 -6.092644 1.193721 1.569770 -1.847985 -4.419033 -0.614196 -4.908307 -4.555111 -1.179347 2.174228 1.399707 0.848781 -3.654894 1.131969 -0.646369 -1.061453 0.035133 0.790800 2.818237 -5.367745 -1.051265 -0.322854 -0.152373 -2.300710 4.721675 2.990697 2.742481 5.644997 2.655314 -2.436474 1.265518 -5.022809 0.310189 5.955747 -0.683201 -4.689804 4.026412 -4.508964 -0.212394 2.728645 3.084371 3.211942 -0.249824 -3.675242 -1.814240 2.355158 0.232034 6.142851 0.174868 1.465283 -1.747117 4.956382 -2.168926 -3.889363 5.899752 2.825519 -5.849560 2.088750 1.732007 -2.330197 -0.668564 3.307690 -4.805511 -1.205179 -3.856359 -0.119519 2.139516 -2.503450 0.290310 2.164802 -5.136264 6.144608 0.165817 0.081170 1.786845 -3.957820 -4.576981 6.327149 0.429670 -0.012614 -2.433815 -2.145168 -2.961398 -5.376312 0.689354 -0.735039 -1.920084 -1.548878 -4.886462 1.132020 3.335532 -0.461643 4.314830 -5.563943 -0.780967 1.928360 0.778451 2.959140 -0.989049 -2.919732 -0.958593 -2.143065 2.223682 -4.508346 3.999339 5.779022 -1.964015 4.453101 -1.146048 -4.088356 0.182468 1.599224 -5.288938 5.224029 -0.358148 3.155600 0.059838 3.251700 -3.889424 -1.551131 -0.137356 -0.717931 -2.178934 2.004150 -2.567933 0.193075 -0.252640 -4.109276 -2.657649 0.367433 -0.988520 -0.226673 0.454089 -0.151830 -5.072141 -0.315852 -2.904448 1.174212 3.533404 -0.302211 -3.315781 2.177195 -0.182367 -0.067001 0.104261 -0.121694 -0.284225 3.335099 -4.675594 -2.241979 0.710338 1.586538 -3.131490 -6.218611 -0.785054 -3.991005 -2.957883 3.507073 -4.075472 0.007761 -3.559869 -1.570835 -4.862093 -2.577347 2.577573 7.237324 2.000006 -4.506125 1.093641 -0.520944 3.937597 0.374997 1.136317 0.178190 1.225237 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/optimized-naive-algorithm.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/optimized-naive-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/optimized-naive-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/optimized-naive-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -1.393197 0.014351 -0.392125 0.006591 1.474211 -0.126142 1.086985 0.787963 -0.791387 0.934990 -1.740158 -2.084738 -1.339308 -1.392198 0.010004 -0.969047 1.020624 -0.061918 -0.903499 0.346409 0.987827 -0.751607 -0.069427 -1.080907 0.205909 -0.399663 -0.604692 -0.233673 1.795266 -0.035381 -1.037032 0.134072 2.937095 0.425616 2.313531 1.161028 0.149961 1.608194 -0.004667 -1.705860 -0.676169 2.229173 -1.171094 -1.354172 -0.645232 -1.560934 -0.691469 -0.257736 0.767689 -0.043595 -0.219984 0.937376 -0.145278 0.880077 -0.855868 0.258360 1.374214 1.016878 2.313330 0.395249 -0.420340 0.033619 -0.933868 1.370840 -0.508241 0.494701 -0.691602 -1.090867 -0.005450 -0.655911 -0.657828 -0.914666 -0.881327 1.090313 0.979876 -0.914943 1.187321 0.125748 -1.017582 -1.555087 -1.951878 -0.179717 -1.021453 1.549056 -0.716849 -0.308567 0.090418 0.155821 0.423887 -1.985687 -0.138278 1.517716 -1.243668 -0.441607 -0.284580 0.933716 -0.125282 1.309277 -1.604827 -0.896477 0.145803 -0.195706 0.112062 -1.440276 0.964768 -0.794868 0.267648 0.057011 0.400553 2.006627 1.568721 1.056733 1.486703 1.388582 -1.096629 -0.396499 -0.952549 0.477275 -1.603464 -0.113056 0.386018 1.052369 0.567126 -0.023054 1.605543 -2.108055 0.391916 1.098888 -0.237708 -1.180635 0.051110 -1.952803 -1.779523 -0.539870 1.031420 0.605034 0.200964 -1.501501 0.349967 -0.181063 -0.465717 0.874610 0.061189 0.407697 -1.503732 -0.660166 -0.339391 -0.311455 -0.596773 1.452771 0.299443 0.642790 1.369457 0.929005 -1.631962 -0.113467 -1.355076 0.455682 2.439866 -1.219069 -1.799914 0.781813 -1.264650 0.183805 1.074694 0.727346 1.406310 0.223330 -0.650946 -0.176327 -0.339817 -0.097453 2.018740 0.456242 0.751060 -0.634069 1.864979 -1.134061 -1.294872 1.847901 0.829894 -1.683529 0.190513 0.349569 -1.793551 -0.001072 0.507632 -1.151794 0.308559 -2.341572 0.299169 0.725749 -1.085798 0.190145 0.716774 -1.920051 1.998474 0.166240 -0.199826 0.147408 -1.730840 -0.610866 2.763018 0.327972 -0.058346 -0.907979 -0.770565 -1.603607 -2.084619 0.428944 -1.088784 -0.436064 -0.650081 -1.542331 0.273925 1.334670 -0.124239 1.258328 -1.485957 0.084406 0.325931 0.691014 1.166757 -0.052690 -1.386789 -0.136259 -0.798029 1.245645 -1.445577 1.038251 1.836811 -0.785818 1.011896 -0.205404 -1.182887 0.112380 0.685682 -1.658050 1.297072 -0.583219 0.769297 -0.402240 1.322350 -1.036836 -0.686763 -0.025229 -0.182059 -0.912013 0.875642 -0.825756 0.239885 0.191041 -1.120539 -0.804943 0.211182 -0.713243 0.515293 0.158623 -0.275194 -2.257709 0.366604 -0.674143 0.220217 1.503274 0.493530 -1.216278 0.305514 -0.515210 0.041578 0.027158 -0.061682 -0.708515 1.202873 -1.412530 -1.113213 0.246628 0.436794 -0.209331 -1.941083 -0.608080 -0.879324 -0.875360 2.223789 -0.893286 0.476319 -1.104359 -0.457736 -1.536007 -1.220866 0.553974 2.083389 0.750173 -1.319515 0.346308 0.142628 1.621716 0.228020 0.247337 0.066973 0.516086 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -13.165779 15.447281 18.933992 -6.850394 22.548343 5.674631 11.790161 14.201826 -16.683079 15.192598 -22.624016 0.498106 -4.148566 -12.593863 -0.956594 -14.505381 -0.560255 -4.142458 -3.338374 5.599334 7.548505 -8.681086 -2.601088 -11.082960 -2.878484 -17.533869 -6.405332 -1.285054 18.295933 1.800971 3.290391 -1.474842 21.510612 1.659539 22.387612 15.660651 6.399859 14.259654 -1.445097 -1.695941 -5.110333 15.072953 -12.630843 -13.255896 -4.206506 -14.511242 -11.136835 -6.910401 2.843075 -11.416494 -5.546676 13.565005 -2.394953 4.690770 -6.223522 13.140745 12.998902 -4.125253 22.654297 5.104564 -12.884663 -4.229510 -14.869831 11.990828 -0.983840 9.115270 -4.770865 -12.216604 4.921451 -3.248419 -5.916292 -8.443835 0.383248 15.060799 5.644778 -13.738900 7.066504 -7.231397 -26.081180 -16.373476 -8.793854 5.591080 7.564867 15.580007 0.700264 -1.174394 2.754709 5.353544 -1.094028 -24.685380 -2.632190 23.860828 -13.294279 -7.936729 -14.102395 12.234314 -0.527027 12.901503 -8.903429 -8.257675 6.901424 5.242447 0.759648 -26.587029 0.356136 -21.544429 3.714091 2.639417 -2.219410 10.591972 1.601942 10.613018 16.263822 18.599728 -18.570031 12.261125 -14.456055 6.477455 -6.377314 0.612319 -0.384933 4.291256 0.491461 7.299543 17.312307 -20.418071 6.495186 8.158812 -9.222951 -21.513751 -2.142052 -21.774315 -17.109315 -3.297886 4.545367 8.906845 3.916639 -13.168095 0.305184 -6.394237 -2.748998 -14.728264 4.933815 17.376894 -22.869775 -4.796693 -0.568318 3.728502 -12.732131 18.712274 11.244531 7.293946 20.925074 9.392574 -2.874073 7.679074 -14.170337 -1.195008 23.304964 8.169985 -17.846896 14.037086 -15.545314 -1.126861 7.719604 5.550507 10.021798 6.532477 -24.618751 -13.596162 11.553069 -5.290446 22.243599 10.990951 6.493808 -8.010469 27.673699 -14.116992 -19.076984 17.321129 17.816031 -20.843815 5.807257 6.705181 -11.244577 -2.772865 13.382773 -17.842040 -3.502057 -8.024711 -5.680892 3.832821 -8.518378 -3.657834 4.467900 -20.712777 26.684287 3.359820 12.924605 0.610516 -10.740966 -21.048126 21.176381 0.560873 -4.554876 -7.692916 -2.731298 -20.701877 -17.782787 2.889455 3.569464 -9.494757 -12.149779 -18.315918 5.474177 7.753905 -7.069118 14.031522 -14.526389 -9.939128 5.766192 1.391761 13.931832 -10.517444 -12.310682 -10.352780 -5.071425 13.994577 -12.907107 21.757006 27.142729 -3.308603 23.302256 -3.713095 -14.005433 -0.884263 10.218729 -17.620428 18.038492 -3.389256 14.301906 0.303594 14.261107 -15.942263 -7.169229 0.053391 -6.800715 -3.283212 11.291684 -9.214476 2.236619 -3.525810 -19.822790 -4.585403 5.101373 -5.234245 -1.661388 -0.744034 6.601553 -18.104311 -3.888576 -18.827679 0.837080 14.248315 -5.197501 -14.822569 3.799765 -2.009390 -1.417895 -0.663618 0.725713 0.309113 11.283414 -16.587305 -6.222874 1.262374 -2.094220 -17.790205 -22.832677 -1.252072 -18.162272 -19.084002 9.022010 -15.589980 3.380601 -14.448578 -7.653470 -28.498796 -15.970682 8.430645 26.558158 5.191548 -12.432448 3.038806 -2.521202 18.507809 3.535794 8.417165 0.744775 6.358733 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -0.478564 0.145022 0.118030 -0.269915 0.829147 -0.137904 0.019106 0.527731 0.456846 0.198431 -0.840515 -0.497515 -0.279775 -0.591666 0.192382 -0.087429 0.159572 0.384351 -0.420022 -0.261350 0.507171 0.133503 -0.088672 -0.586953 0.138832 -0.194456 -0.340137 -0.109541 -0.098192 0.338095 -0.380878 0.293710 0.716919 0.250373 0.511227 0.472237 0.509216 0.888180 -0.197089 0.835294 0.236264 0.594443 -0.212882 -0.973410 0.448980 -0.621745 -0.205192 -0.388517 0.180558 -0.627199 0.917617 0.383390 0.153834 -0.025058 -0.218808 -0.022759 0.434740 0.466348 0.515352 0.569042 -0.562113 0.232691 -0.452290 0.187248 -0.423109 0.915757 0.305650 -0.795356 -0.534963 0.260414 0.647922 -0.516586 -0.623427 -0.127818 -0.058774 -0.079001 0.507858 0.044310 0.387194 -0.079922 -0.660160 0.096880 -0.234125 0.564091 -0.245051 -0.279163 -0.437570 -0.250231 0.392395 -0.306892 -0.512715 0.502298 -0.310645 0.507816 -0.511648 -0.254332 -0.017670 0.157455 -0.228850 -0.373547 0.265319 0.341611 0.055366 0.427879 -0.514093 -0.279009 0.770908 0.485003 -0.254822 0.118385 0.185285 0.113734 -0.009729 0.101182 -0.092406 0.423593 -0.646403 0.273835 -0.120961 0.140313 0.047436 -0.011170 0.297553 -0.257618 0.098181 -0.358241 0.597077 0.364704 -0.448827 -0.103355 0.381847 -0.383658 -0.731457 -0.151861 0.469607 0.384057 -0.153857 -0.003434 0.055490 -0.369326 -0.283107 -0.391189 -0.501752 0.047801 -0.345977 -0.238444 -0.256163 -0.368701 -0.289373 0.244856 -0.044828 0.088476 0.542799 0.375684 -0.346563 -0.488228 -0.498847 0.312339 0.992284 0.106253 -0.609936 0.009465 -0.061492 0.445809 0.456561 -0.015087 0.013929 0.497800 0.078948 0.224672 -0.575016 -0.403401 0.619046 0.738019 0.516706 -0.763493 0.122858 -0.328902 -0.188562 1.027959 0.591448 -0.733531 -0.167114 0.529530 -0.261219 -0.267843 -0.027480 -0.057413 -0.098017 -0.471776 0.281617 0.182541 -0.751224 -0.567616 0.219874 -0.656117 0.553064 0.137951 0.326426 -0.059682 -0.820447 -0.112865 1.117602 0.081360 -0.176826 -0.036641 -0.152051 -0.135995 -0.725275 0.240191 0.283917 -0.170913 -0.419104 -0.331957 0.161948 0.845616 -0.558993 -0.045882 0.105753 -0.146521 0.153397 -0.487520 0.444925 -0.813129 -0.536127 -0.276266 -0.086589 0.574437 -0.176232 -0.152596 0.794385 -0.376324 0.337743 0.934232 0.010413 -0.266581 0.689675 -0.062799 0.448865 -0.319341 0.194988 -0.083414 0.621650 -0.459564 -0.266070 -0.101327 0.184730 -0.268132 0.690882 -0.480690 0.162933 0.252480 -0.589521 -0.053517 0.608202 0.175313 0.420093 -0.161679 -0.007239 -0.431287 0.113517 -0.091083 0.010373 0.642889 -0.051744 -0.795499 -0.317918 0.093376 -0.692288 -0.385462 0.319552 -0.132342 0.881457 -0.416605 0.245499 0.284499 -0.269311 -0.716978 -0.343812 -0.184722 -0.396332 -0.325610 0.392641 -0.528141 -0.305099 -0.308301 0.404923 -0.467897 -0.205893 -0.201691 0.438156 0.450613 0.057545 0.414635 0.278053 0.540769 0.153232 -0.225353 0.099222 0.547715 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -5.640035 2.780279 2.649957 -1.487299 6.247566 -0.790670 3.682191 1.132445 -1.500675 5.085849 -7.648437 -5.409721 -4.037539 -6.568522 -0.176002 -4.918973 2.697185 0.223930 -1.531361 2.117558 3.640131 -4.040953 -0.576003 -4.018121 -0.435887 -5.933777 -2.886278 -0.031943 6.185708 -3.044489 0.229597 1.071167 11.308527 2.075223 10.099696 6.390484 1.268664 7.571865 0.620342 -2.279482 -2.431602 7.359161 -4.622691 -5.979101 -1.035581 -4.741362 -3.346427 -3.297076 2.174818 -0.947398 -0.146747 5.285403 -0.950333 2.891095 -4.952946 2.026249 6.470230 2.136590 9.674757 1.857718 -1.829780 2.246262 -4.907709 3.669376 -3.088120 1.027526 -1.803329 -4.358730 1.686350 -1.872365 -0.701995 -4.358144 -3.238905 5.187837 3.307020 -5.408314 3.114443 -1.027604 -7.848502 -8.301134 -7.141802 1.059184 0.576869 6.656106 -0.822734 -0.353528 1.320851 1.779945 0.514065 -9.186680 -0.219835 6.409581 -5.175712 -2.103933 -0.463460 6.142193 -0.562445 4.274229 -5.341099 -3.895616 1.632563 -1.483376 0.975286 -3.357386 1.124124 -5.165651 1.630965 -0.777981 -0.785116 3.813943 6.381062 3.660572 6.886934 6.459718 -7.188936 0.372829 -5.767390 2.526808 -2.413960 -0.715911 1.243855 3.205391 -0.297711 0.888017 7.073281 -9.202489 2.105000 3.549250 -2.062153 -6.736396 -0.735488 -7.493704 -6.547670 -2.548439 3.923588 2.708719 1.443295 -5.281417 0.127655 -1.196745 -0.475723 -0.919858 1.199065 6.113067 -6.219829 -1.538337 -1.154029 -1.643649 -3.972397 5.538092 2.768158 3.561164 7.496238 4.433382 -4.548054 1.317827 -6.368770 -0.394159 9.503503 -0.391421 -7.337512 5.229540 -4.820386 -0.094693 4.090339 4.133451 5.554953 -2.220768 -6.000314 -3.010071 2.448821 -0.921592 8.528114 0.581542 2.353079 -2.708292 9.352632 0.171132 -6.424387 9.469972 3.513016 -7.483682 2.137185 2.716929 -6.201523 -1.611503 4.415691 -5.273989 -0.123796 -6.467859 0.660405 1.739234 -3.967084 0.303789 1.936466 -8.272699 8.575139 0.729405 1.839692 2.206694 -6.346742 -7.838437 10.383211 -0.558291 -0.477647 -3.824192 -3.325243 -3.965538 -8.226008 1.599913 -2.071527 -3.133689 -2.493556 -7.102874 2.839205 5.674247 -1.262446 5.532821 -5.272798 -2.496347 2.330379 1.888957 3.879049 -2.077091 -4.959429 0.203507 -1.199979 3.884315 -3.909796 6.314775 9.586294 -3.080562 4.437377 -1.427279 -4.945378 1.597116 3.422164 -7.867915 6.958708 -2.678872 4.426541 -0.451903 5.017109 -5.223891 -2.934343 1.033596 -0.365665 -3.029940 2.769095 -3.471361 0.585607 0.149249 -5.791446 -3.122230 0.951045 -1.680293 0.685470 0.480761 0.748088 -7.219488 0.912060 -3.670630 1.469217 5.902127 2.368877 -4.619023 2.375600 -0.189631 1.178789 0.581319 0.015628 -1.369111 5.167766 -6.794661 -3.148108 0.218231 0.797944 -2.504125 -10.046485 0.176831 -7.070117 -4.278145 6.641580 -6.493655 1.595418 -5.222232 -1.781637 -7.168621 -2.167808 2.222179 9.671696 3.981557 -5.655282 1.495324 -0.754022 6.221669 0.522527 0.969919 0.585245 4.045823 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.729582 0.619266 0.727246 -0.582387 2.764424 -0.294850 0.883425 0.906617 -0.351254 1.719006 -2.265639 -1.473440 -1.025224 -1.926157 0.121823 -0.980647 0.835136 0.273535 -0.646507 0.397623 1.059390 -0.800384 -0.079984 -0.964071 -0.234701 -1.759464 -1.091916 0.304175 1.881127 -1.063084 -0.339926 0.439441 3.468026 0.179043 3.073689 1.930735 0.917709 2.065630 0.123390 -1.026823 -0.275344 2.007783 -1.440090 -1.837996 -0.214457 -1.428614 -1.537348 -0.946837 0.897505 -0.494326 -0.112828 1.725989 -0.292933 0.755312 -1.274905 1.041663 1.650158 0.387129 2.996670 0.683137 -1.056826 0.567785 -1.659146 1.648200 -0.989192 0.719465 -1.254827 -2.034358 -0.101883 -0.069460 -0.089590 -1.680861 -1.049473 1.559817 0.925121 -1.616570 1.161338 -0.282655 -0.697607 -2.831878 -2.279318 0.541378 -0.209179 2.025916 -0.225612 -0.093255 0.207265 0.411494 -0.021406 -2.887662 -0.044437 1.934936 -1.905866 -0.458803 -0.133925 1.266259 -0.099146 1.114814 -1.441760 -1.638216 0.531916 -0.515531 0.364180 -0.734263 1.338029 -1.318403 0.181648 -0.015214 0.381764 1.335007 1.692940 1.055321 2.097370 1.983046 -1.876890 -0.158188 -1.840365 1.045752 -1.191920 -0.131912 -0.001574 1.113219 0.620397 0.589120 2.277980 -2.903026 0.789709 0.906893 -0.704600 -1.787243 -0.062451 -2.072545 -2.066365 -0.679011 1.309084 0.584324 0.254912 -1.484201 0.425805 -0.319683 -0.450764 0.113299 0.058563 1.427562 -2.294362 -0.359421 -0.331602 -0.569953 -1.002680 1.853238 1.212680 1.378066 2.620496 1.493376 -1.435129 0.420501 -2.479012 0.250372 2.995221 -0.493709 -2.216750 1.794768 -1.844893 -0.002932 1.407447 1.515596 1.503617 -0.365086 -1.415886 -0.614898 0.713833 0.081129 2.830803 0.148614 0.825703 -1.209256 2.084718 -0.456969 -1.659437 3.183657 1.005190 -2.804681 0.844482 1.065947 -1.487061 -0.459177 1.335619 -2.022467 -0.440139 -2.074522 0.327839 1.029209 -1.481516 -0.101241 0.918192 -2.449718 2.598942 0.092243 -0.028507 0.879365 -1.988948 -1.855440 3.477717 0.163756 -0.002893 -1.135917 -1.224028 -0.813932 -2.602934 0.392295 -0.397957 -0.926582 -0.645505 -2.235767 0.526472 2.021836 -0.260120 1.771324 -2.277821 -0.223218 0.972159 0.339379 1.136478 -0.803967 -1.391343 -0.106091 -0.854121 0.848718 -1.720838 1.579561 2.681267 -1.196169 1.494633 -0.229651 -1.678905 0.342343 0.916533 -2.380959 2.483228 -0.383831 1.633617 0.085404 1.570887 -1.740696 -0.690885 -0.016044 -0.215267 -1.143600 1.098809 -1.327465 0.042249 0.367691 -1.719832 -1.442820 0.260849 -0.076725 0.163871 0.178287 -0.226489 -2.276740 0.103990 -1.037240 0.671489 1.759448 0.121304 -1.672500 0.912738 0.220193 -0.115801 -0.390839 0.141984 -0.177125 1.841674 -2.238243 -0.733545 0.346410 0.756197 -1.338737 -2.962111 -0.051410 -1.996311 -1.051354 1.749262 -2.213646 -0.120342 -1.642642 -0.355401 -2.081463 -0.678020 0.918186 3.233389 1.141547 -1.851714 0.695981 -0.171405 1.661160 0.090294 0.249646 0.180173 1.027101 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -7.301055 5.845800 6.956074 -3.065514 11.930102 2.347878 4.847931 5.879965 -7.875785 9.611039 -10.969724 -2.871757 -4.603575 -8.252052 -0.753312 -7.396691 2.121405 -2.162735 -2.095094 4.144609 4.604555 -6.401997 -0.837560 -4.979919 -1.850323 -9.893354 -4.319980 0.427047 11.706387 -3.489209 0.568919 -0.324774 15.611402 0.348418 13.077510 9.275438 3.919968 9.243036 1.216761 -5.829216 -3.829184 10.079145 -7.871020 -6.531440 -2.602716 -8.091200 -5.742445 -2.357327 2.731268 -2.100027 -5.075588 8.274777 -2.236484 3.643592 -5.881951 6.969129 7.197778 -0.844154 14.953550 1.967036 -4.399605 -2.045763 -8.579185 8.113479 -3.154385 2.627340 -5.566601 -6.682417 3.357507 -3.069962 -3.602359 -6.149525 -1.933897 9.752926 3.685642 -8.935235 4.082010 -3.681892 -12.553233 -11.956603 -8.373118 2.385718 1.587420 8.649916 0.187459 -0.334087 2.018823 4.182607 -1.015577 -15.656412 0.536800 10.755497 -8.827853 -4.319728 -3.795389 8.617700 -0.489179 7.046773 -7.316901 -4.822550 2.782674 -0.549303 1.400819 -13.316800 5.586315 -10.559664 0.219134 -1.150759 1.212258 6.424672 5.915630 5.983047 11.245392 10.821944 -11.125173 0.846458 -7.769490 3.106213 -4.035583 -0.624020 -0.375250 5.317280 0.185079 3.511309 12.368312 -13.978144 1.960051 3.760462 -4.486182 -11.450838 -1.459319 -12.132101 -9.458696 -2.763630 4.360623 3.679853 2.752567 -8.849624 1.076851 -1.775339 -1.745814 -3.666318 3.482870 10.245524 -12.895322 -2.221246 -0.919648 -0.008446 -5.640101 10.328971 6.691532 6.006763 12.629432 6.404648 -4.075763 5.903346 -10.041441 -0.694269 13.351979 2.605934 -11.284333 9.240417 -10.074330 -1.134060 4.979562 6.089516 8.345272 0.442501 -11.910263 -7.423494 6.248482 -0.500282 13.577875 0.902929 3.542079 -2.992201 14.262941 -4.368922 -10.357968 11.517925 6.351177 -11.373423 4.510976 3.359219 -6.530295 -1.095860 7.626645 -10.547136 -0.723988 -7.576000 -2.088982 4.094071 -5.151936 0.616689 2.803488 -12.172927 14.844364 1.042672 3.974054 3.366558 -8.146299 -12.658515 12.812242 -0.541444 -1.273073 -6.431661 -4.214841 -9.010408 -11.858732 1.937405 -1.609607 -5.607291 -5.014601 -11.772035 2.780361 6.274921 -1.185479 8.796944 -12.621634 -4.115251 4.158305 2.715338 7.620820 -2.826694 -6.875669 -2.163717 -3.870272 6.683106 -8.801209 11.619996 14.755288 -3.318800 10.236671 -4.530625 -8.056789 1.406438 4.546311 -12.655133 11.746788 -1.986655 8.005061 -0.280050 7.245806 -8.961347 -3.227639 0.621570 -2.031312 -2.782709 3.717520 -5.067270 0.458241 -1.044273 -10.087500 -4.400196 0.768047 -3.134279 -1.490355 1.107113 1.255428 -10.668594 -1.798238 -7.607930 1.818733 8.342284 -0.470805 -6.466623 4.251517 -1.462882 1.735535 1.508608 -0.270952 -0.469811 5.988649 -10.788087 -5.555835 0.196424 1.308478 -6.873543 -14.921420 -1.287434 -8.753897 -7.806634 8.161108 -9.612771 2.345730 -8.534771 -4.533860 -13.419494 -5.835206 4.730163 16.374137 3.821469 -9.943240 1.631508 -1.885455 9.961859 0.867214 3.842564 0.178658 3.031826 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.668391 -0.077708 -0.114399 -0.296708 1.439906 -0.160115 -0.033555 0.787657 0.586174 0.360849 -1.050647 -0.759110 -0.497303 -0.847722 0.283782 0.104634 0.362806 0.495059 -0.712034 -0.536035 0.669115 0.269112 0.040704 -0.657429 0.167836 -0.173971 -0.517051 -0.053872 -0.085928 0.384216 -0.779119 0.433362 1.054694 0.247026 0.605810 0.514201 0.840220 1.213949 -0.300136 0.936665 0.431077 0.753210 -0.296300 -1.348576 0.695990 -0.911980 -0.499684 -0.470770 0.380224 -0.884758 1.243482 0.582860 0.198840 -0.048773 -0.278156 0.023926 0.573108 0.513559 0.795359 0.749288 -0.930921 0.095261 -0.606363 0.397061 -0.589074 1.314752 0.260994 -1.310764 -0.995902 0.491767 0.865170 -0.849988 -1.023285 -0.173960 0.016657 -0.108641 0.692557 0.175459 0.952172 -0.231823 -1.096647 0.132452 -0.531078 0.793335 -0.297829 -0.335974 -0.480029 -0.412800 0.516031 -0.517415 -0.599607 0.727380 -0.493010 0.886536 -0.826244 -0.569548 -0.241553 0.140769 -0.479329 -0.618507 0.274681 0.428063 0.118504 0.504559 -0.527877 -0.387553 1.076060 0.624637 -0.096684 0.077367 0.456210 -0.095158 -0.093924 0.174709 -0.123419 0.440017 -0.879293 0.426304 -0.135655 0.171184 -0.143413 0.069931 0.561207 -0.401438 0.253159 -0.671099 0.842022 0.412206 -0.727650 -0.157731 0.486269 -0.422445 -0.980723 -0.094791 0.776104 0.279054 -0.238372 0.008517 0.212713 -0.462578 -0.681627 -0.258779 -0.778389 -0.001226 -0.567975 -0.255374 -0.364234 -0.641740 -0.318494 0.385557 0.030736 0.282552 0.799176 0.579576 -0.589331 -0.513538 -0.886512 0.638915 1.457463 0.161250 -0.916686 0.058436 -0.266565 0.740699 0.653916 0.037702 0.080712 0.614440 0.381295 0.601245 -0.703561 -0.268570 0.932756 0.983744 0.863946 -1.127557 -0.200677 -0.515594 0.026451 1.444711 0.806248 -1.181458 -0.027881 0.831269 -0.224496 -0.230663 -0.044059 -0.235020 -0.258085 -0.824948 0.492977 0.488369 -1.168895 -0.708466 0.411012 -0.870593 0.783988 0.149452 0.241412 0.109557 -1.263509 0.023611 1.574375 0.105747 -0.087086 -0.065634 -0.413963 -0.225840 -1.074486 0.311327 0.414465 -0.260572 -0.506994 -0.530009 0.049223 1.354397 -0.538605 0.073628 -0.097876 0.140988 0.287068 -0.620747 0.669516 -1.071175 -0.682411 -0.275389 -0.297683 0.722634 -0.431674 -0.413704 0.805214 -0.679088 0.554516 1.152867 0.038547 -0.366900 0.751864 -0.021558 0.684455 -0.276092 0.477557 -0.126221 0.921881 -0.563058 -0.159109 -0.238339 0.335534 -0.465296 1.023276 -0.808374 0.088219 0.542350 -0.750947 -0.383306 0.705899 0.359213 0.641135 -0.199762 -0.266591 -0.513819 0.120863 -0.055393 0.212471 0.847697 -0.254537 -1.048828 -0.381984 0.167105 -1.057550 -0.495173 0.527079 -0.133575 1.294891 -0.655905 0.278634 0.421100 -0.191177 -1.044471 -0.494642 -0.352367 -0.441125 -0.327418 0.695383 -0.893176 -0.540048 -0.420085 0.618363 -0.551662 -0.155651 -0.330438 0.711250 0.569713 0.121925 0.696483 0.500143 0.539221 0.051531 -0.318941 0.266249 0.660740 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -3.580153 3.706436 3.866866 -1.917174 4.763851 0.811474 2.643520 1.417206 -2.495153 3.931765 -5.708261 -1.939500 -1.905196 -4.227112 -0.423470 -5.092917 0.254586 -0.497361 -0.834002 1.710565 2.012854 -2.973454 -0.320591 -2.674038 -0.770036 -4.968131 -1.978552 0.055932 4.566158 -0.829300 1.490119 -0.204609 6.593877 0.568858 6.019624 4.197286 0.882812 4.509614 0.091990 -0.585840 -1.329049 4.191910 -3.138053 -3.736919 -1.241971 -3.288908 -2.695479 -1.847629 1.227401 -2.114878 -1.739334 3.553467 -0.767877 1.050700 -2.852973 2.655809 3.614685 0.595086 6.349764 0.973203 -2.187958 -0.276934 -4.053615 3.007414 -1.586636 1.476187 -1.351942 -2.924123 1.577971 -0.803159 -2.315092 -1.542922 -1.031029 3.783587 2.262501 -3.845010 1.383359 -1.814202 -8.440814 -3.605811 -2.815722 1.252262 1.631678 4.132208 0.082487 -0.023236 1.715732 1.653622 -0.229431 -6.383995 -0.399617 5.923335 -3.004541 -2.125705 -1.620512 4.319037 0.205421 2.608753 -2.787976 -1.647665 1.367596 0.158396 0.561026 -5.566502 -0.521732 -5.604127 1.145922 0.385524 -0.916100 2.679127 2.198909 2.804467 4.351163 4.683864 -5.621313 1.712866 -4.199936 1.429832 -1.693879 -0.335327 0.207828 1.706497 -1.026856 1.702231 4.802881 -5.830336 1.863809 2.058154 -1.955783 -5.410674 -0.651619 -4.923165 -4.097796 -1.005587 1.553024 2.058642 1.033006 -3.383819 -0.319760 -1.034635 -0.127644 -2.390588 1.694625 4.513943 -4.361014 -0.863728 -0.254920 0.154852 -2.911679 4.347236 2.683182 2.016764 5.652313 2.703274 -1.323142 1.985185 -3.934290 -0.370427 6.136636 0.894116 -4.840828 3.804507 -3.715846 -0.564369 1.876894 2.162986 3.240333 1.111837 -5.806681 -3.580712 1.970208 -1.209638 5.561203 1.887259 1.074078 -1.687973 7.510123 -1.632707 -4.329577 5.187591 3.541023 -4.918571 1.636667 1.939282 -4.710599 -1.274850 3.559726 -4.000811 0.011235 -2.973401 -0.917348 1.188694 -2.209187 -0.617241 0.526445 -5.436005 6.601976 0.486081 2.202341 0.735118 -3.507358 -6.893648 5.907253 -0.216487 -0.829120 -2.347242 -1.403613 -4.420452 -5.146132 0.795496 0.290793 -2.945860 -2.515814 -4.708110 1.758543 2.461363 -1.419593 4.043602 -3.388226 -2.546012 1.790825 1.816304 3.167553 -1.165691 -3.000478 -1.155934 -1.004074 3.110643 -2.750228 5.456228 6.649687 -1.232176 5.281374 -1.917395 -4.398536 0.728579 2.606196 -5.099685 5.103669 -1.327765 2.832475 -0.040512 3.253323 -3.431746 -1.727929 0.712465 -2.103411 -1.089214 2.057454 -2.473068 0.286338 -0.510551 -4.607201 -1.276638 1.069546 -0.936394 0.045757 0.208127 1.743683 -4.659356 -0.556710 -3.229055 0.398087 3.603456 0.392388 -3.351818 1.446215 -0.158291 0.472280 -0.193894 -0.045254 -0.095499 2.768919 -4.518240 -1.590715 0.022013 -0.466907 -3.525181 -6.123898 -0.050608 -4.830382 -3.954982 2.760415 -4.180898 1.208159 -3.668478 -1.580259 -5.743590 -3.169414 2.182932 6.841168 2.125771 -3.595608 0.767434 -0.912244 4.544340 0.693314 1.280196 0.652543 2.228200 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.363999 0.384253 0.509356 -0.575962 2.561649 -0.215671 0.563122 1.160863 0.000631 1.171838 -2.006180 -1.031079 -0.795274 -1.547394 0.237366 -0.604501 0.630089 0.425715 -0.852100 -0.129738 0.970558 -0.178500 -0.034500 -1.005834 -0.043416 -1.229299 -0.909261 0.113040 0.958197 -0.178505 -0.570709 0.477280 2.565669 0.177573 2.012247 1.379680 1.145860 1.856418 -0.179908 0.093255 0.242155 1.527765 -0.948279 -1.820377 0.241985 -1.377633 -1.255069 -0.763685 0.703199 -1.022516 0.567991 1.281186 0.010429 0.339551 -0.791056 0.746835 1.309601 0.316297 2.093665 0.857309 -1.325107 0.237614 -1.296151 1.313583 -0.871883 1.294904 -0.529692 -1.952177 -0.719200 0.365588 0.437029 -1.390180 -1.165898 0.683788 0.529681 -0.950734 1.062095 -0.073958 0.140437 -1.621105 -1.751731 0.410042 -0.377793 1.566448 -0.294920 -0.280434 -0.143689 -0.076991 0.334468 -1.860046 -0.505036 1.675412 -1.369027 0.245676 -0.912039 0.257482 -0.145753 0.675888 -1.021128 -1.381249 0.473146 0.073209 0.226812 -0.349806 0.291282 -1.033314 0.697305 0.478400 0.115947 0.927424 0.820812 0.609758 1.025675 1.147129 -1.101955 0.370837 -1.622266 0.880098 -0.799399 0.037733 -0.126555 0.542555 0.741510 0.235378 1.371079 -1.945167 1.047040 0.756422 -0.910221 -1.082816 0.274761 -1.369385 -1.775324 -0.383394 1.125653 0.558613 0.026200 -0.779463 0.403810 -0.509805 -0.618508 -0.344356 -0.454117 0.731792 -1.730507 -0.383543 -0.361212 -0.561227 -0.793347 1.312035 0.696992 0.828570 1.944276 1.127712 -1.047858 0.082758 -1.905258 0.537049 2.573472 -0.018280 -1.763368 1.012002 -1.230819 0.450072 1.162549 0.783835 0.754897 0.356781 -0.690218 -0.048070 -0.045635 -0.240458 2.146348 0.875688 0.915089 -1.530163 1.072720 -0.828296 -0.862910 2.596646 1.253574 -2.337525 0.463976 1.156041 -0.942136 -0.461684 0.687146 -1.323408 -0.532062 -1.559590 0.439334 0.842307 -1.491843 -0.548039 0.766414 -1.868686 1.931240 0.159443 0.120148 0.432709 -1.794171 -1.160207 2.860418 0.148150 -0.061135 -0.599136 -0.851823 -0.676339 -2.151723 0.365542 0.140663 -0.712657 -0.717938 -1.541366 0.322534 1.886171 -0.620544 1.019101 -1.432137 -0.104486 0.714188 -0.177238 1.053048 -1.263471 -1.196533 -0.398972 -0.653377 0.935805 -1.315498 0.640989 2.012127 -1.013507 1.349212 0.503515 -1.114530 -0.129993 1.034316 -1.284960 1.789808 -0.349216 1.238216 0.009010 1.446134 -1.359364 -0.515967 -0.238975 -0.026608 -0.949224 1.298211 -1.322351 0.110038 0.496595 -1.445454 -0.992436 0.696567 0.204495 0.452590 -0.078243 -0.198681 -1.580549 0.080886 -0.731817 0.438504 1.469023 -0.244623 -1.666377 0.226519 0.274992 -0.889821 -0.598340 0.375323 -0.101891 1.789816 -1.609131 -0.148594 0.489840 0.224991 -1.590036 -1.992745 -0.202646 -1.446959 -0.962438 1.241394 -1.758480 -0.503902 -1.158986 0.214653 -1.634515 -0.724412 0.414294 2.226162 0.891924 -0.884248 0.815000 0.210670 1.293719 0.089327 0.070505 0.262255 0.906575 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.712362 0.204638 0.425546 0.045577 0.699653 0.067483 -0.090029 0.573592 -0.026853 0.583784 -0.820018 -0.730496 -0.594644 -0.419684 -0.061911 -0.652312 0.409735 -0.047455 -0.381803 0.116435 0.424214 -0.170579 -0.036584 -0.472284 -0.055554 -0.542360 -0.503087 -0.096518 0.824007 -0.268187 -0.286760 0.025203 1.564568 0.131393 1.212210 0.619394 0.433515 0.780321 0.037639 -0.340708 -0.324603 1.004513 -0.712667 -0.434721 -0.145335 -0.891524 -0.170013 0.164629 0.332215 0.147573 -0.285361 0.424233 -0.044748 0.582666 -0.274795 0.268052 0.425537 0.492265 1.198813 0.102114 -0.334620 -0.004024 -0.611324 0.554880 -0.439351 0.381073 -0.726521 -0.516375 -0.062970 -0.418240 -0.100674 -0.760023 -0.309055 0.742691 0.212605 -0.550199 0.590198 0.038100 -0.128460 -0.905864 -0.951472 0.072914 -0.222302 0.548962 -0.276557 -0.033181 -0.107299 0.274997 0.107869 -1.138074 0.003054 0.608967 -0.882582 0.021562 0.066766 0.252563 -0.175394 0.774836 -0.454962 -0.460708 0.122343 -0.084489 0.032218 -0.656016 0.819001 -0.417141 0.236149 -0.329467 0.094341 0.605503 0.393284 0.664910 0.943288 0.905148 -0.632759 -0.416541 -0.560438 0.170407 -0.805957 -0.054208 0.119329 0.544924 0.017109 0.229820 0.930166 -1.097496 0.152452 0.299596 -0.217359 -0.684595 -0.011273 -1.029838 -0.846116 -0.288827 0.480472 0.298413 0.082921 -0.898321 0.143708 -0.185624 -0.146537 -0.070969 0.101164 0.243781 -0.804006 -0.305905 -0.120500 -0.174658 -0.375317 0.684983 0.303701 0.414868 0.718230 0.481233 -0.711428 0.166000 -0.731595 -0.041456 0.927409 -0.402764 -0.928179 0.565857 -0.672337 -0.036527 0.713124 0.426491 0.628137 0.176617 -0.375863 -0.379691 -0.063900 0.110186 1.042946 0.098724 0.360505 -0.287620 0.845143 -0.514172 -0.789314 1.195414 0.184253 -0.966650 0.161709 0.120211 -0.485975 -0.040854 0.334612 -0.707431 0.156584 -0.970161 -0.074572 0.375718 -0.493735 0.098665 0.609327 -1.003195 1.104181 0.080762 0.019777 0.339193 -0.937392 -0.894037 1.293096 0.111280 -0.019054 -0.546045 -0.399495 -0.351338 -1.017063 0.144636 -0.381897 -0.347477 -0.228258 -0.863696 0.339723 0.567975 -0.016834 0.705167 -1.216452 -0.298843 0.141445 -0.056574 0.577693 -0.156652 -0.565676 -0.266115 -0.468549 0.639238 -0.807681 0.643124 1.160406 -0.358777 0.679078 -0.300861 -0.939817 -0.054606 0.288813 -0.933227 0.662940 -0.323669 0.437540 -0.109426 0.616779 -0.718627 -0.308333 0.020771 0.001728 -0.368005 0.348760 -0.316590 0.035532 -0.061934 -0.720957 -0.216856 -0.046757 -0.368884 0.073861 0.071856 -0.012855 -1.076668 0.142474 -0.187475 0.063499 0.710452 0.250247 -0.687364 0.339724 -0.324564 -0.076044 -0.109293 -0.106510 -0.342494 0.511188 -0.774256 -0.692194 0.206185 0.057409 -0.274041 -1.015696 -0.486087 -0.581200 -0.313573 0.804412 -0.646457 0.128309 -0.478643 -0.343172 -0.464982 -0.466868 0.427602 1.115177 0.606648 -0.927994 0.214931 -0.040700 0.884975 0.235950 0.112709 -0.145275 0.274563 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -2.083290 1.053931 0.558173 -0.837822 3.315086 0.233154 1.208705 1.142188 -1.417301 2.417526 -2.898326 -1.050460 -1.212287 -2.546496 -0.063628 -0.863089 0.735694 -0.252151 -0.659177 0.521134 1.251264 -1.714045 0.168581 -1.325436 -0.295283 -2.469250 -0.829392 0.196723 2.885406 -0.829268 -0.520254 -0.006480 3.690625 0.218607 3.068730 2.021560 0.870837 2.515258 0.296550 -1.524421 -0.651191 2.490737 -1.741701 -2.211788 -0.261995 -2.004351 -1.719379 -1.143044 1.095603 -0.962159 -0.295952 2.162037 -0.452201 0.507285 -1.810824 1.477487 2.457146 -0.097580 3.828971 0.584046 -1.048422 -0.544283 -1.900857 1.961342 -1.009781 0.546268 -0.790673 -1.933796 0.308903 -0.231465 -0.902364 -1.428510 -0.815518 1.959766 1.238958 -2.179080 1.069954 -0.662662 -2.220189 -3.272099 -2.322225 0.494097 0.033198 2.624476 -0.095441 0.001745 0.691649 0.650168 0.048320 -3.639153 -0.063896 2.610186 -1.895106 -0.729295 -0.539750 2.266162 -0.321644 1.250824 -1.987255 -1.282204 0.487534 -0.029486 0.468770 -2.576262 1.010953 -2.439778 0.631650 -0.166022 0.283540 1.305694 2.206836 0.834800 2.059058 2.583196 -2.582729 0.265846 -2.326647 0.788414 -0.427740 0.000729 -0.170557 1.164473 0.506240 0.370432 2.852716 -3.675798 1.112119 1.098621 -0.926273 -2.792492 -0.262970 -2.528225 -2.322823 -0.440472 1.311901 0.511332 0.446989 -1.799991 0.521616 -0.422318 -1.307056 -0.165892 0.449217 2.684398 -3.137920 -0.360557 -0.332267 -0.435851 -1.251850 2.235395 1.399279 1.419297 3.176448 1.762807 -1.283941 1.468656 -2.609791 0.463361 3.832839 0.514884 -2.801801 2.016018 -2.412835 0.139502 1.450754 1.388086 2.093386 -0.162508 -2.305432 -0.869777 1.846049 -0.113661 3.366067 0.220416 1.340017 -1.259749 3.223939 -0.454218 -1.729581 3.228054 1.717601 -3.317450 1.637731 1.276501 -1.950594 0.086892 1.657437 -2.211443 -0.265952 -2.261118 0.118544 1.197411 -1.670075 -0.310088 0.294224 -2.957896 3.644237 0.198483 0.866529 1.125298 -2.178229 -1.786102 3.427423 -0.000872 -0.204365 -1.456357 -1.285798 -2.726702 -3.101984 0.526312 -0.311912 -1.603562 -1.072498 -2.872592 0.374567 2.175486 -0.256378 2.011291 -3.061396 -0.257538 1.113495 1.063373 1.665453 -0.557770 -1.691538 -0.060928 -0.826856 1.539575 -2.017812 2.487792 3.186161 -1.351295 2.457448 -0.900135 -1.216971 0.695815 1.162835 -2.711748 2.908025 -0.412216 2.280613 -0.158883 2.050848 -1.931247 -0.507665 0.003871 -0.522520 -0.859659 1.238702 -1.743029 -0.094976 0.472029 -2.261878 -1.681559 0.405282 -0.293403 0.522958 0.211170 -0.014167 -2.301690 -0.194289 -1.820253 0.661210 2.085806 -0.051194 -1.887187 0.729229 0.123924 0.215423 0.050060 0.246268 -0.077156 2.028537 -2.682620 -0.910946 0.077140 0.470112 -1.668702 -3.624584 -0.052726 -2.000138 -1.806911 2.627775 -2.989365 0.333913 -2.073552 -0.588758 -3.517036 -0.717236 0.586800 3.871208 0.970019 -1.788425 0.884828 -0.142743 2.059715 -0.046741 0.672486 0.447303 1.054670 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.156317 1.422097 1.520969 -0.814638 4.161902 0.694722 0.540043 3.088663 -2.605813 2.567343 -3.008155 0.048246 -0.872615 -2.198764 0.067331 -0.748203 0.576866 -0.279457 -0.750326 0.681537 1.223813 -1.214244 -0.030395 -1.245967 -0.377234 -2.105444 -1.153937 0.162662 3.050430 -0.490848 -0.548437 -0.031473 3.962805 -0.036882 3.056771 2.174364 1.602386 2.249030 0.455193 -1.871738 -0.672471 2.451158 -2.052690 -1.766511 -0.057741 -2.500573 -1.893125 -0.301895 0.902479 -1.299369 -1.124476 2.228633 -0.493314 0.686307 -1.106188 2.096428 1.917450 -0.843396 3.868659 0.719948 -2.035824 -1.650548 -2.139059 2.561148 -0.688891 1.396139 -1.489670 -2.432553 0.166768 -0.278933 -0.480040 -2.247139 -0.622949 2.425706 0.647743 -2.087419 1.409445 -0.698014 -1.470292 -3.201505 -2.304977 0.675951 -0.216435 2.473778 -0.188759 -0.087801 0.328220 0.677855 -0.169128 -4.013540 0.002538 3.009393 -2.525988 -0.464075 -1.903884 1.498226 -0.454891 1.765586 -1.733056 -1.587626 0.803570 0.383525 0.379006 -3.713546 2.005072 -2.594633 0.414534 -0.225987 0.808379 2.177295 1.143900 1.558026 2.541363 2.999852 -2.441615 0.044908 -2.273753 0.985354 -1.257730 0.141371 -0.444135 1.219834 0.974229 0.963869 3.125213 -3.754362 0.995237 0.974085 -1.326544 -2.972817 -0.122694 -3.039020 -2.594996 -0.526222 1.341960 0.563600 0.246902 -2.072101 0.744572 -0.549598 -1.845898 -1.396452 0.124764 2.446562 -4.262694 -0.586302 -0.316083 -0.114854 -1.185692 2.668244 1.890274 1.741600 3.275394 1.665348 -1.108020 1.955871 -2.919593 0.600683 3.880858 1.178285 -3.043042 2.294453 -2.763701 -0.023582 1.636870 1.295341 1.961949 0.844654 -2.524512 -1.553232 1.967185 0.134810 3.653576 1.111267 1.426443 -1.506526 3.110384 -1.719852 -2.247390 3.520954 1.608578 -3.498350 1.652012 1.150899 -1.026444 0.265383 1.542062 -2.982783 -0.720390 -1.887303 -0.520800 1.551453 -1.914667 -0.595233 0.961439 -3.125112 4.092924 0.261231 0.751787 0.810907 -2.357328 -2.302890 3.649802 0.537992 -0.384032 -1.557768 -1.211832 -2.750473 -3.037403 0.513852 0.184083 -1.439688 -1.401307 -3.081050 0.004977 2.018454 -0.224162 2.089871 -4.629250 -0.410040 1.173821 0.228532 2.024793 -1.569000 -1.796468 -0.936654 -1.358342 1.863138 -2.733673 2.738547 3.580588 -1.325604 3.305196 -0.621475 -1.574578 0.099635 1.099978 -2.869097 3.093909 -0.163965 3.062345 0.056542 2.260609 -2.511719 -0.579759 -0.278146 -0.419640 -0.883174 1.572295 -1.664196 -0.044712 0.201327 -2.536775 -1.689280 0.316428 -0.547269 0.135434 0.162058 -0.341171 -2.443226 -0.667609 -1.662393 0.597474 2.255401 -1.117964 -2.218003 0.840501 -0.294376 -0.277158 -0.125527 0.310581 0.125647 2.054536 -2.917859 -0.983841 0.310831 0.441873 -2.521783 -3.468194 -0.620712 -1.651954 -2.023903 2.206978 -3.174199 0.001953 -2.154384 -0.920947 -3.590781 -1.406366 0.993186 4.191301 0.728422 -2.371402 1.006760 -0.153000 2.409347 0.230300 1.136060 -0.106883 0.725830 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.403127 -0.041574 -0.066077 -0.230087 0.885800 -0.100107 -0.097309 0.553657 0.574077 0.260339 -0.660749 -0.483701 -0.185397 -0.354177 0.141922 0.089757 0.105785 0.346213 -0.506629 -0.398624 0.369375 0.350063 -0.003901 -0.380863 0.039411 -0.047114 -0.390975 0.002977 -0.150708 0.147958 -0.537501 0.216993 0.658546 0.048717 0.467250 0.335095 0.587348 0.674428 -0.226743 0.793402 0.377988 0.417297 -0.204281 -0.723075 0.328582 -0.540247 -0.319912 -0.256563 0.227362 -0.525364 1.036444 0.296625 0.146644 -0.019089 -0.043493 0.104568 0.147506 0.322034 0.483589 0.438300 -0.692591 0.291070 -0.433951 0.501458 -0.385084 0.973679 0.051277 -0.866176 -0.703637 0.308663 0.710230 -0.617685 -0.642455 -0.081084 -0.069453 -0.063647 0.439189 0.036005 0.935001 -0.124412 -0.594456 0.166798 -0.302894 0.364765 -0.200589 -0.193529 -0.489968 -0.186927 0.234012 -0.295599 -0.401306 0.458978 -0.397290 0.587520 -0.529759 -0.542602 -0.145800 0.111328 -0.166114 -0.386949 0.179852 0.298854 0.048811 0.431208 -0.115432 -0.124635 0.617406 0.511573 -0.082781 -0.016679 0.116318 0.038656 0.049769 0.126079 0.150152 0.250018 -0.538862 0.277458 -0.170304 0.112938 -0.067795 0.056926 0.369752 -0.137546 0.177776 -0.313910 0.502160 0.144279 -0.511386 -0.018584 0.281850 -0.237732 -0.629079 -0.069225 0.383171 0.262391 -0.177309 -0.033688 0.145643 -0.299480 -0.371353 -0.239809 -0.402839 -0.288800 -0.216410 -0.184716 -0.170981 -0.300637 -0.215332 0.344391 0.094038 0.137351 0.532088 0.323910 -0.235518 -0.601784 -0.556290 0.322152 0.751806 -0.082914 -0.540250 0.086321 -0.220446 0.388582 0.431690 0.106684 -0.083435 0.476197 0.291816 0.359233 -0.575273 -0.163920 0.600133 0.575194 0.427935 -0.585390 -0.226104 -0.441417 -0.037056 0.943010 0.536480 -0.738001 -0.208215 0.443853 0.053280 -0.238300 0.043684 -0.160614 -0.212248 -0.414044 0.264620 0.274663 -0.603254 -0.420850 0.391376 -0.519349 0.508871 0.041079 -0.003684 0.031634 -0.814390 0.065688 0.977583 0.105988 -0.075222 0.030802 -0.177170 0.061989 -0.645575 0.153359 0.342592 -0.082798 -0.299591 -0.289696 0.157820 0.757686 -0.394375 0.072255 0.063884 -0.054994 0.181051 -0.572441 0.392821 -0.698928 -0.352210 -0.334867 -0.157079 0.433782 -0.329736 -0.277453 0.589103 -0.341094 0.335461 0.923608 -0.072998 -0.386439 0.496377 -0.048592 0.452857 -0.168968 -0.054781 -0.057545 0.481674 -0.344145 -0.146963 -0.192397 0.297968 -0.272629 0.587288 -0.432786 0.071597 0.145968 -0.535188 -0.078536 0.448582 0.243722 0.270312 -0.096234 -0.158777 -0.387891 0.023541 -0.124038 0.041117 0.484585 -0.150788 -0.684583 -0.125624 0.050957 -0.764724 -0.286682 0.232793 -0.058849 0.790954 -0.381614 0.158091 0.345617 -0.097354 -0.761599 -0.195600 -0.352225 -0.289529 -0.175428 0.202897 -0.395912 -0.500574 -0.248481 0.352119 -0.240931 -0.215935 -0.041723 0.463282 0.483586 -0.019637 0.381676 0.237649 0.428058 0.168408 -0.273412 0.157279 0.361329 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.573231 0.639425 -0.001222 -0.306031 1.776280 0.135408 1.142117 0.761009 -0.759723 1.320105 -2.217502 -1.904611 -1.201275 -1.771703 -0.058171 -1.360708 0.689105 -0.124231 -0.822856 0.403357 1.068117 -1.049877 -0.085073 -1.311052 0.050424 -1.139689 -0.686506 -0.245102 1.911915 0.009257 -0.617640 0.014678 3.054104 0.530732 2.483975 1.443824 0.285907 1.921628 -0.012656 -0.819954 -0.726643 2.262219 -1.322646 -1.630886 -0.556760 -1.721065 -0.904583 -0.524763 0.659557 -0.489856 0.088386 1.242286 -0.176573 0.742351 -1.067359 0.449377 1.638270 0.847785 2.632129 0.491366 -0.620283 -0.095966 -1.275659 1.521896 -0.620078 0.661278 -0.279219 -1.231014 0.176561 -0.590364 -0.642787 -0.824456 -0.933760 1.334264 1.086965 -1.254249 1.045109 -0.234875 -2.205231 -1.524085 -1.825809 0.085774 -0.475015 1.832141 -0.451973 -0.229977 0.259431 0.348189 0.350967 -2.399744 -0.258486 2.074479 -1.259081 -0.458758 -0.736901 1.335827 -0.110825 1.378785 -1.623714 -0.787747 0.333447 0.101753 0.154518 -1.825034 0.130521 -1.620936 0.683749 0.192076 -0.056642 1.684226 1.552327 1.009251 1.574297 1.733673 -1.657433 0.103456 -1.306606 0.500487 -1.093621 -0.042445 0.301315 0.886579 0.209925 0.073726 1.823307 -2.380562 0.659314 1.163844 -0.590707 -1.745714 -0.090481 -2.207479 -1.931156 -0.485226 0.951078 0.777467 0.301366 -1.545193 0.140546 -0.350791 -0.554158 0.058830 0.292404 1.075084 -1.674957 -0.619730 -0.303976 -0.224763 -0.998283 1.707517 0.567933 0.700936 1.815253 1.069424 -1.288322 0.165233 -1.440199 0.318143 2.882886 -0.379688 -2.122697 1.065554 -1.466429 0.174961 1.010625 0.713942 1.451345 0.369911 -1.374542 -0.553584 -0.039275 -0.366435 2.329540 0.792964 0.794249 -0.743702 2.560082 -0.938387 -1.594245 2.192356 1.373554 -1.902601 0.292103 0.588970 -2.112962 -0.115873 0.917902 -1.292426 0.282615 -2.145363 0.131240 0.601057 -1.122708 -0.049963 0.512047 -2.275101 2.537134 0.273655 0.480071 0.179229 -1.860698 -1.396824 2.897112 0.101376 -0.265814 -0.966900 -0.681727 -2.037067 -2.260926 0.476822 -0.634302 -0.827027 -0.929949 -1.837352 0.491697 1.484070 -0.413334 1.429310 -1.385859 -0.411773 0.436773 0.656997 1.387571 -0.379339 -1.485044 -0.332515 -0.514673 1.510755 -1.315611 1.546073 2.420043 -0.746066 1.520673 -0.290580 -1.255161 0.126769 1.007942 -1.828729 1.639178 -0.733167 0.796715 -0.362866 1.559717 -1.204081 -0.723777 0.094593 -0.354902 -0.718524 1.024894 -0.989197 0.215568 0.146012 -1.576714 -0.709159 0.421279 -0.683146 0.543611 0.077086 0.042687 -2.239690 0.213700 -1.023695 0.182661 1.686232 0.540109 -1.340266 0.295887 -0.434823 0.082297 0.108276 0.029572 -0.565312 1.411937 -1.696106 -0.985247 0.170297 0.080319 -0.743244 -2.318196 -0.514935 -1.351822 -1.357359 2.116451 -1.399915 0.566041 -1.370500 -0.541461 -2.080927 -1.340371 0.569332 2.497463 0.898016 -1.356325 0.411002 0.025556 1.917520 0.288937 0.337872 0.293563 0.826534 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/the-knights-tour.cpp__solveKT() = -2.756240 0.399457 0.639880 -0.881595 3.762657 -1.240215 1.288203 0.817149 0.904800 1.616754 -3.848028 -3.392806 -2.178086 -3.292017 0.506474 -1.354543 1.912037 1.335635 -1.393458 0.264631 2.199113 -0.776743 -0.248655 -2.183920 0.282871 -1.469721 -1.954456 0.084715 1.433314 -1.158531 -0.891742 1.431973 5.469457 1.148593 4.463957 3.017215 1.282822 4.423380 -0.077003 -0.205127 0.056498 3.555233 -1.736849 -4.042279 0.815287 -2.462701 -1.621149 -2.027129 1.341994 -1.024551 1.665754 2.479513 0.003536 0.965621 -2.339677 0.245034 3.176232 2.013924 4.106081 1.811352 -1.557078 2.164670 -2.215286 1.004481 -2.083115 2.001806 -0.631183 -3.385728 -0.921366 0.223855 1.746191 -3.386499 -3.108882 1.057667 0.864042 -1.671231 2.276304 0.240295 0.016197 -3.648507 -4.328404 0.353540 -1.002089 3.234856 -1.010599 -0.758033 -0.738165 -0.273255 1.044115 -3.308090 -0.954103 2.329554 -2.416002 0.578474 -0.069129 1.233752 -0.296743 1.302724 -2.588009 -2.646712 0.887211 -0.664813 0.526555 1.499363 0.383176 -1.184753 1.490950 0.614733 -0.235802 1.671627 3.298892 1.557683 2.436881 1.846433 -2.325285 0.073574 -3.163652 1.608203 -1.631019 -0.231917 0.556246 1.409496 0.822230 -0.337536 2.431389 -3.786465 1.830975 1.864831 -1.344241 -1.744386 0.773141 -2.737289 -3.578650 -1.296831 2.657403 1.349250 0.090284 -1.517467 0.284817 -0.977376 -0.407578 0.165710 -1.091431 1.747617 -2.519648 -0.861380 -1.014535 -1.892774 -1.375308 1.939723 0.678297 1.579293 3.498735 2.314322 -2.983055 -0.824004 -3.570771 0.752953 4.941594 -0.788100 -3.452631 1.672031 -1.378525 0.958581 2.599249 1.776952 1.947100 -0.743991 -0.866311 0.003242 -0.527189 -0.716613 3.878961 0.881567 1.861372 -2.756982 2.374521 0.007317 -1.952357 5.646234 1.247457 -4.032220 0.440109 2.165704 -2.094487 -1.215642 1.070840 -1.832461 -0.616568 -3.465349 1.319146 1.180661 -3.095604 -0.940095 1.302168 -3.806372 3.225619 0.328182 -0.116352 0.890976 -3.924144 -2.331017 6.196933 0.150512 -0.080310 -1.226363 -1.910172 0.155108 -4.347430 0.975336 -0.576713 -1.022168 -1.119141 -2.813531 1.164760 3.958988 -1.219575 1.650017 -1.606243 -0.407844 1.258926 -0.365736 1.708983 -2.322618 -2.652543 0.276790 -0.830677 1.675378 -1.727495 0.984440 4.117432 -2.235702 1.059847 1.787498 -1.425830 0.307420 2.197140 -2.701253 3.280668 -1.385939 2.703932 -0.232352 2.720087 -2.545121 -1.474241 0.102560 0.766878 -2.161678 2.236692 -2.280101 0.461082 1.063165 -2.319038 -1.855056 1.360620 0.199302 0.925896 -0.050353 -0.395970 -3.140441 0.826107 -0.418650 0.922760 3.116298 0.711577 -3.197116 0.275990 0.580240 -1.014269 -0.716160 0.689781 -0.749119 3.621166 -3.059453 -0.405825 0.695583 0.429201 -1.717789 -4.040089 0.138878 -3.012027 -1.113747 3.253776 -3.109054 -0.521692 -2.193369 0.638904 -2.294826 -0.292945 0.313933 3.887151 2.373476 -1.906559 1.407409 0.420337 2.584797 0.065734 -0.482939 0.199699 2.458703 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -4.234858 2.875594 2.042367 -2.075922 7.586352 0.468076 2.610145 3.017935 -3.078405 4.494493 -6.520258 -1.399389 -1.996665 -5.584052 0.186174 -2.390024 1.463434 -0.024066 -1.376471 1.153371 2.588239 -3.038344 0.091654 -3.184700 -0.488093 -5.716439 -1.926824 0.287126 5.164480 -0.790030 -0.249134 0.336656 7.615762 0.581599 6.069265 4.362190 2.399620 5.197677 0.485519 -2.199094 -0.662941 4.747576 -3.299001 -4.991921 -0.187958 -4.155799 -3.998968 -2.446678 1.851850 -3.071142 -1.095750 4.397172 -0.597580 0.823709 -3.486242 2.976471 5.569417 -0.659055 7.260327 1.732701 -2.871343 -1.342562 -3.778408 3.822168 -2.046984 1.618154 -1.224039 -4.466660 0.234538 0.381420 -1.229833 -2.882940 -2.058111 3.409300 2.474478 -4.146294 2.406757 -1.242190 -4.714360 -6.176427 -4.195564 1.234652 0.008905 5.460055 -0.087680 -0.262230 1.357793 0.704488 0.495885 -6.964421 -0.844194 5.777169 -3.709563 -1.295475 -2.385181 4.195693 0.017835 2.337617 -3.671113 -3.471279 1.337421 0.208734 0.737740 -4.682410 0.798945 -5.220630 1.244942 0.217693 0.221955 3.612499 2.923135 2.175828 3.802447 4.719933 -5.683927 1.216607 -4.993509 2.038843 -1.457929 0.043330 -0.478978 1.647375 1.400602 1.318660 5.180485 -7.043689 2.930193 2.743088 -2.118599 -5.357898 -0.116173 -5.023618 -4.957737 -0.818644 2.591947 1.359746 0.988187 -3.113901 0.860745 -1.236052 -2.236394 -1.685378 0.194743 5.593971 -6.956414 -0.799051 -0.635763 -0.692028 -2.758367 4.353683 2.757298 2.541128 6.459033 3.416280 -2.606917 3.642140 -5.331395 1.141546 8.504228 2.034109 -5.593245 3.899936 -4.524084 0.407216 2.939532 2.343895 3.550511 0.219737 -5.223097 -2.174462 3.000300 -0.995453 6.772512 1.779737 2.501108 -4.103882 6.749888 -1.343768 -3.474706 7.111914 3.836193 -6.891267 3.240010 3.282703 -4.382177 -0.286933 2.961904 -4.647690 -1.266942 -4.312175 0.338551 2.168228 -3.713054 -1.399512 0.588679 -6.050853 7.088053 0.725083 1.759919 1.513924 -4.085106 -4.699043 7.643917 0.067143 -0.508158 -2.537403 -2.321908 -4.808189 -6.479370 0.940819 -0.034231 -3.497353 -2.275730 -5.601144 0.643656 4.736083 -1.495092 3.693419 -6.619053 -0.716108 2.265145 1.824467 3.136534 -2.866814 -3.665873 -0.673361 -1.575654 2.877872 -4.071024 4.810133 6.667195 -2.696101 5.159052 -1.601762 -3.249624 1.198522 2.877719 -5.017049 5.893645 -0.955678 5.596926 0.123004 4.512719 -4.243906 -1.322505 -0.302069 -1.598065 -2.149107 3.284351 -4.135023 0.054992 1.635200 -4.336019 -3.662285 1.622740 -0.227245 1.270098 -0.081297 0.048037 -4.639492 -0.208960 -3.240401 1.299022 4.301044 -0.697630 -4.503569 0.919736 0.972464 -0.400384 -0.898234 0.776866 0.109761 4.412292 -5.360485 -0.856624 0.406049 0.657958 -4.377618 -7.609767 0.602957 -4.617661 -4.133630 4.661550 -6.541075 0.080068 -4.160383 -0.739005 -7.217525 -2.152930 1.488489 7.749526 1.589018 -3.334412 1.945165 -0.177114 4.149079 -0.203436 1.808774 0.735126 2.441034 +PE-benchmarks/the-knights-tour.cpp__main = -0.206038 -0.070067 -0.282667 -0.072474 0.451592 -0.095689 -0.187787 0.373774 0.223679 0.260590 -0.163591 -0.161100 -0.076314 -0.245074 0.072278 0.291757 0.071298 0.213770 -0.168520 -0.168488 0.177795 0.070909 0.042634 -0.063265 -0.040013 -0.097128 -0.073444 0.077018 0.084095 -0.083019 -0.384185 0.091529 0.345203 -0.047966 0.258058 0.159705 0.291489 0.246736 0.077721 0.102125 0.079470 0.189533 -0.139608 -0.304568 0.152691 -0.206027 -0.145187 -0.076015 0.188919 -0.132907 0.482029 0.177524 0.006937 0.012527 -0.087346 0.091749 -0.003541 0.107320 0.326742 0.136259 -0.241134 -0.035372 -0.201369 0.430703 -0.244832 0.252620 -0.062486 -0.392909 -0.251734 0.117703 0.199189 -0.253607 -0.186563 0.091210 -0.009992 -0.132041 0.188566 0.003098 0.595397 -0.192747 -0.360553 0.083785 -0.247848 0.212576 -0.076432 -0.001680 -0.235224 0.006383 0.027236 -0.261443 -0.044439 0.137069 -0.243081 0.267986 -0.074190 -0.112720 -0.039187 0.032808 -0.054172 -0.139230 0.057136 0.057241 0.101456 0.137184 0.257615 -0.014717 0.232298 0.049481 0.118175 0.034186 0.219983 -0.040332 0.060957 0.183264 0.133588 -0.107932 -0.287426 0.128707 -0.031960 0.092470 -0.083433 0.120023 0.290412 -0.087370 0.208059 -0.296809 0.180416 0.006148 -0.076819 -0.083204 0.110108 -0.083898 -0.204156 -0.071489 0.245132 -0.020023 -0.127119 -0.074668 0.166346 -0.001401 -0.414564 0.027766 -0.147923 -0.039032 -0.218041 -0.003470 -0.106220 -0.195721 -0.018777 0.135871 0.118449 0.206487 0.298573 0.237072 -0.115170 -0.143903 -0.357597 0.167663 0.347516 -0.084250 -0.271497 0.147938 -0.235222 0.087060 0.207425 0.174909 0.089660 0.181765 0.182505 0.164298 -0.079275 0.107244 0.341085 0.047397 0.218753 -0.158879 -0.146847 -0.044680 -0.012011 0.497680 0.106433 -0.402726 0.075636 0.157599 0.024330 0.018517 0.054858 -0.139403 -0.033739 -0.266026 0.152910 0.273654 -0.313537 -0.132814 0.165274 -0.236092 0.280191 -0.046102 -0.057093 0.175998 -0.412249 0.298210 0.422029 0.117209 -0.018446 -0.113426 -0.208869 -0.126174 -0.289671 0.074463 0.074016 -0.054519 -0.075551 -0.218466 -0.076423 0.407985 0.014580 0.065561 -0.296743 0.105074 0.145299 -0.145663 0.120938 -0.190279 -0.091944 -0.033383 -0.098362 0.154913 -0.196566 -0.051385 0.242895 -0.242450 0.136033 0.353034 0.091373 -0.044012 0.149532 -0.162958 0.286479 -0.009226 -0.060680 0.002362 0.171574 -0.156272 0.034920 -0.100753 0.167311 -0.091012 0.160777 -0.163044 -0.061725 0.121625 -0.244666 -0.146363 0.046487 0.154021 0.189802 0.042652 -0.212915 -0.151589 -0.035829 -0.113015 0.072152 0.224939 -0.052476 -0.229198 0.096093 0.001781 -0.235877 -0.107379 0.099803 0.017845 0.347892 -0.260023 0.024359 0.132186 0.109308 -0.283180 -0.127748 -0.195167 0.007754 -0.008166 0.174196 -0.331740 -0.218313 -0.128102 0.139568 -0.203895 0.081010 -0.062421 0.302832 0.173059 -0.058693 0.237956 0.060070 0.141731 0.071057 -0.119137 0.063689 0.176085 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -10.395736 8.109973 7.825111 -4.266032 13.029516 -0.712745 7.102675 3.617633 -4.879521 9.565741 -15.518575 -6.816582 -5.913125 -12.774366 -0.283863 -10.505245 3.554009 0.793498 -1.987984 4.539980 6.572300 -7.648375 -1.714445 -7.699036 -1.113446 -11.743097 -5.925657 0.149822 11.433733 -5.539772 2.387686 1.908530 20.470092 3.206608 18.821311 12.907329 3.183028 14.069815 1.652805 -2.769774 -3.830791 12.799519 -8.507225 -11.784817 -1.668582 -8.735316 -6.494085 -6.012992 3.509557 -3.391977 -0.834693 10.302571 -2.004693 4.477496 -9.213692 4.975645 11.641590 2.539818 17.870438 3.917853 -5.599153 2.885444 -9.766987 7.441492 -5.453115 3.342238 -2.986064 -8.667706 4.071436 -2.542617 -1.269416 -8.818964 -5.665579 9.877778 4.966788 -10.303977 5.398667 -3.261974 -17.079673 -14.108650 -11.642537 2.937561 2.571133 12.387968 -0.764683 -0.872699 1.730111 3.417980 0.350554 -17.422238 -0.967304 13.685789 -9.671138 -3.706532 -2.724763 11.837249 -0.314130 7.612909 -8.962453 -7.322088 3.979230 -1.693281 1.767616 -8.134225 0.833813 -11.782084 2.955370 -0.692440 -2.528294 7.673571 10.079033 8.097869 13.317049 12.192534 -14.067582 2.016953 -12.248664 5.181807 -4.416768 -1.319975 1.983430 5.184667 -1.367442 2.672687 13.094227 -16.735073 4.580175 6.515144 -4.646694 -13.848424 -1.119369 -14.231528 -12.530069 -4.480729 6.480445 5.959938 2.710843 -9.322821 -0.726888 -2.764396 -1.016568 -5.823122 2.480417 12.944244 -12.706166 -2.867713 -1.751464 -2.007269 -8.002725 10.884741 6.296000 6.624745 15.410786 8.306937 -6.534666 4.352167 -12.292261 -1.136545 17.659962 2.380418 -13.911665 10.348937 -9.414814 -0.806997 7.242990 7.507585 9.640152 -2.097171 -13.778818 -7.709226 6.305112 -2.943346 15.770035 2.243688 4.031780 -5.416524 19.014197 0.036257 -12.952434 18.353454 6.484903 -14.609952 4.861398 5.811098 -9.882961 -3.360390 9.062293 -10.979937 -1.344698 -9.881066 -0.214101 3.060126 -7.846340 -0.920038 2.930933 -15.608988 16.996290 1.501096 4.222970 3.146810 -11.726343 -16.855656 19.678860 -0.724237 -1.496237 -6.551187 -5.351960 -7.089725 -15.075402 2.715907 -1.129883 -6.720857 -5.657646 -13.250539 5.332432 10.025375 -3.749604 10.471361 -9.843210 -6.291747 5.041141 3.185265 7.373806 -6.147207 -9.428730 -0.938798 -1.625758 7.686947 -7.408434 13.299149 19.128971 -5.170388 10.398146 -1.563754 -9.383194 2.734848 7.249658 -14.838311 14.115766 -4.598495 9.832545 0.003080 9.424326 -10.939066 -6.076846 1.892333 -1.147733 -5.112180 5.636338 -6.863351 1.465824 -0.282569 -11.556155 -5.218499 2.849784 -2.499012 0.347471 0.572146 2.253075 -12.323941 0.016953 -7.452225 2.328534 11.029035 2.255343 -9.747376 4.113406 0.081450 1.451905 1.380063 0.274794 -1.183705 9.599661 -12.953715 -4.630875 0.357552 0.369397 -7.669128 -19.090190 1.066215 -13.636520 -8.806214 9.695482 -12.880665 2.192899 -10.235262 -3.505858 -15.410453 -4.761255 4.698663 18.886171 7.109631 -10.351793 2.675915 -1.915536 12.197442 1.171953 2.792124 0.868957 7.847204 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -0.247762 -0.072419 0.049167 -0.083408 0.484198 -0.230731 -0.095747 0.369724 0.555536 0.134124 -0.355339 -0.407679 -0.209618 -0.242662 0.136715 -0.041454 0.162895 0.327379 -0.296609 -0.316964 0.252731 0.295061 -0.040629 -0.210924 0.047634 -0.102921 -0.232541 0.004861 -0.232900 0.137296 -0.306881 0.302762 0.501360 0.101368 0.351894 0.270631 0.349107 0.490710 -0.070694 0.661767 0.266225 0.246613 -0.083588 -0.521027 0.250672 -0.266007 -0.131897 -0.186846 0.146340 -0.325348 0.695507 0.173381 0.109777 0.061611 -0.062958 -0.022537 -0.017415 0.369815 0.257075 0.329368 -0.446756 0.244718 -0.261110 0.264823 -0.325046 0.547873 0.010622 -0.585943 -0.433342 0.240058 0.443317 -0.312168 -0.368139 -0.120628 -0.071965 -0.007332 0.283732 0.142373 0.562673 0.076773 -0.472608 0.118463 -0.163454 0.233161 -0.136053 -0.141530 -0.352000 -0.163575 0.192953 -0.130117 -0.237052 0.264965 -0.257525 0.406980 -0.243490 -0.377043 -0.008254 0.028936 0.013364 -0.286755 0.130643 0.064563 0.046555 0.458997 -0.231095 0.005150 0.465794 0.294627 -0.072662 -0.006174 0.078684 0.030659 0.000391 0.004929 0.124548 0.171778 -0.405119 0.287702 -0.126291 -0.006169 -0.012610 0.017723 0.187579 -0.107625 0.059444 -0.194056 0.297223 0.117064 -0.248175 0.074002 0.207209 -0.091124 -0.377265 -0.128418 0.359872 0.181156 -0.128276 0.032799 0.069559 -0.172916 -0.105435 -0.130276 -0.359155 -0.208887 -0.039015 -0.108821 -0.150655 -0.271171 -0.137437 0.133598 -0.014384 0.140819 0.282184 0.221638 -0.222317 -0.544115 -0.421695 0.164162 0.435133 -0.163121 -0.300890 0.057526 -0.042327 0.235359 0.266796 0.103104 -0.061709 0.283280 0.299912 0.250589 -0.540921 -0.074914 0.352427 0.409352 0.248437 -0.359671 -0.244465 -0.263034 -0.017224 0.613084 0.312893 -0.441405 -0.207260 0.335909 -0.091616 -0.256915 0.007236 -0.093160 -0.071104 -0.321761 0.211230 0.231118 -0.475028 -0.195670 0.328152 -0.311025 0.208706 0.021843 0.030063 0.026060 -0.574479 -0.018686 0.695476 0.078012 0.046868 0.013696 -0.212121 0.086024 -0.429484 0.087770 0.198783 0.004204 -0.127097 -0.138564 0.071363 0.523981 -0.234971 0.055456 0.182758 0.004786 0.140096 -0.399244 0.170757 -0.407746 -0.233481 -0.116025 -0.138849 0.251826 -0.137148 -0.243431 0.304271 -0.212304 0.196400 0.681818 -0.088239 -0.220776 0.280883 -0.044698 0.265875 -0.173573 -0.155333 0.036471 0.276744 -0.234556 -0.137636 -0.106953 0.172038 -0.273725 0.364704 -0.279402 0.062383 0.123135 -0.347237 -0.020798 0.252523 0.214803 0.219396 -0.075775 -0.051974 -0.275121 0.070840 -0.059310 0.101966 0.307798 -0.005360 -0.400945 -0.026709 0.068176 -0.560839 -0.326862 0.165245 -0.066371 0.506148 -0.240616 0.106060 0.265634 -0.046220 -0.433264 -0.110740 -0.196410 -0.234006 -0.096554 0.030418 -0.276068 -0.337725 -0.107840 0.308356 -0.107104 -0.075531 -0.054910 0.264229 0.293357 0.021656 0.251768 0.177769 0.179206 0.117936 -0.228985 0.072491 0.317574 +PE-benchmarks/union-find.cpp__createGraph(int, int) = -1.491387 1.506366 0.581912 -1.149234 2.429102 -0.068347 0.366386 2.011852 -0.265809 1.157884 -2.651179 -0.311686 -0.348056 -1.845462 0.255395 -0.814731 0.253681 0.745512 -0.748872 0.235008 1.156110 -0.270880 -0.232355 -1.564649 -0.177298 -1.410774 -0.612480 -0.117820 0.643589 0.504281 -0.067318 0.393855 2.691471 0.231048 1.997371 1.756330 1.683035 2.292162 0.432751 1.221670 0.268884 1.582236 -0.924588 -1.968307 0.450683 -1.621012 -1.159032 -0.852589 0.331668 -1.888552 1.534745 1.428462 0.354251 0.070649 -1.027888 0.948357 1.787823 -0.221622 2.151891 1.145275 -1.618263 -0.330489 -0.992276 1.545835 -0.993516 1.615884 0.417608 -1.487761 -0.339592 0.574469 0.847143 -1.492592 -1.249057 0.515980 0.185141 -1.214701 1.233919 -0.451371 -0.408857 -1.391338 -1.181058 0.677424 0.019226 1.738758 -0.297153 -0.333003 -0.801637 -0.024721 0.441880 -1.762478 -0.888781 2.137484 -1.177666 0.184595 -2.278299 0.723472 0.250726 0.637459 -0.977281 -1.319467 0.839711 0.712547 0.232921 -1.148032 -0.894265 -1.662436 1.068474 0.975168 -0.796628 1.640726 0.116876 1.201682 1.090224 1.150474 -1.065488 1.142946 -2.465341 0.635870 -0.216100 0.082094 0.109636 -0.130425 0.738647 0.321447 0.893967 -1.847228 1.665014 1.105738 -1.232690 -1.377136 0.539256 -1.350114 -1.950752 -0.427374 0.956947 1.029110 0.106419 -0.564887 0.268274 -0.769359 -0.666269 -2.305098 -0.402164 1.394969 -2.046062 -0.502052 -0.358623 -0.236193 -1.038840 1.262180 0.574697 0.183159 2.197482 0.909102 -0.467702 0.664919 -1.580183 0.252857 2.679409 1.556153 -1.982267 0.992787 -1.067578 0.293061 0.965932 0.516953 0.286099 1.225790 -1.695240 -0.930861 0.095370 -1.082086 2.116055 1.104496 0.776273 -2.167279 2.051182 -0.749490 -1.125371 3.140568 2.009208 -2.027732 -0.197959 1.405520 -0.786979 -0.650277 0.906695 -1.317370 -0.939561 -0.769435 0.165152 0.456965 -1.549468 -1.285966 0.331468 -2.048342 2.096787 0.299878 0.387151 -0.418645 -2.054064 -1.046526 2.815635 0.131065 -0.509213 -0.207761 -0.523343 -0.958944 -2.425914 0.530136 1.072986 -0.709622 -1.281667 -1.390825 0.460372 1.687474 -1.372256 0.392814 -1.781178 -0.956920 0.881837 -0.420067 1.150202 -2.421808 -1.368087 -0.831100 0.240832 1.541908 -0.986336 1.340877 2.811016 -0.782660 1.846615 1.110619 -0.903846 -0.199936 1.779566 -1.349752 1.961301 -0.488925 1.270290 0.100259 1.523329 -1.663332 -0.797503 -0.349331 0.040783 -0.724111 1.407166 -1.508873 0.235379 0.131441 -1.490211 -0.432531 1.275905 0.285164 0.123871 -0.282695 0.282551 -1.039322 -0.405247 -1.268260 -0.031954 1.710643 -0.355497 -1.891901 -0.073371 0.396405 -1.091220 0.265364 0.324463 0.209168 2.070662 -1.710945 0.444712 0.397365 -0.537881 -2.436019 -2.120106 0.100379 -1.309295 -1.462139 0.786609 -1.967797 -0.940693 -1.175898 0.486324 -2.418586 -1.012336 0.469082 2.198986 0.850973 -0.729275 0.637164 0.084540 1.924069 0.405592 0.297794 0.210826 1.319879 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.255987 1.035614 0.458264 -0.722222 2.410520 0.239229 0.574454 1.061453 -0.709043 1.484914 -1.982394 -0.373142 -0.454565 -1.820744 0.050976 -0.833185 0.297640 0.098947 -0.444125 0.227958 0.714680 -0.864985 0.080802 -0.920460 -0.222229 -2.113853 -0.578248 0.146287 1.449720 -0.089908 0.016627 0.048875 2.335297 0.100142 1.717385 1.282377 0.868687 1.481393 0.262660 -0.222649 -0.063328 1.268517 -0.961691 -1.486960 -0.080770 -1.230694 -1.345061 -0.653524 0.539298 -1.176371 -0.234796 1.291450 -0.160014 0.150583 -1.006662 0.920614 1.552068 -0.257497 2.156364 0.496708 -1.008238 -0.702212 -1.173396 1.561400 -0.746203 0.485207 -0.266291 -1.462157 -0.003928 0.310931 -0.478182 -0.548948 -0.631766 1.024132 0.851734 -1.281001 0.628112 -0.454559 -1.626471 -1.486351 -1.052889 0.494363 -0.039991 1.619095 0.080546 -0.011012 0.496219 0.221617 0.102481 -2.087280 -0.289514 1.940190 -1.045671 -0.288522 -0.972876 1.220812 0.188462 0.596962 -0.901034 -1.003064 0.392805 0.144596 0.230002 -1.461572 -0.088045 -1.773806 0.485684 0.158844 0.019392 1.202201 0.610097 0.618255 1.015246 1.437122 -1.768369 0.356673 -1.567122 0.674285 -0.402128 0.032890 -0.264864 0.379957 0.424267 0.559498 1.552299 -2.093286 1.004659 0.798283 -0.658025 -1.610620 -0.068810 -1.383635 -1.404478 -0.153178 0.693806 0.357902 0.279258 -0.871174 0.222357 -0.321552 -0.815003 -0.755902 0.074812 1.616582 -2.033215 -0.160822 -0.129615 -0.127765 -0.846383 1.326927 0.916171 0.748184 1.993377 1.002180 -0.593505 1.247667 -1.623317 0.399639 2.673486 0.806161 -1.685998 1.227764 -1.442212 0.053230 0.773282 0.689356 0.943058 0.381522 -1.600453 -0.720893 0.627254 -0.303124 2.043579 0.790536 0.602650 -1.334235 2.038234 -0.386242 -0.928909 2.227417 1.280544 -2.024976 0.970440 1.067838 -1.622951 -0.096753 0.904850 -1.408385 -0.376174 -1.271841 0.093652 0.735843 -1.086149 -0.500802 0.132574 -1.787938 2.170210 0.198213 0.525733 0.413844 -1.243281 -1.584176 2.307163 0.026762 -0.141406 -0.712614 -0.676229 -1.553135 -1.942352 0.205298 0.192350 -1.217535 -0.626824 -1.655223 0.096934 1.477375 -0.492575 1.146032 -2.158254 -0.237553 0.734246 0.599683 0.843036 -0.974401 -0.999866 -0.287900 -0.416242 0.824783 -1.215883 1.461285 1.934070 -0.753966 1.733328 -0.577957 -1.151557 0.342378 0.875482 -1.464828 1.834892 -0.305236 1.360317 0.149738 1.326187 -1.169791 -0.307504 -0.167833 -0.687580 -0.622249 1.001204 -1.338829 -0.050810 0.638323 -1.326143 -1.078372 0.524100 0.069193 0.535522 -0.044486 -0.023968 -1.366284 -0.113536 -0.894418 0.368687 1.215959 -0.189052 -1.323678 0.327357 0.364506 -0.234300 -0.489003 0.232282 0.153562 1.292927 -1.624587 -0.096091 0.187565 0.150554 -1.556897 -2.224300 0.141693 -1.351635 -1.339547 1.138856 -2.147765 -0.121149 -1.229759 -0.183473 -2.133288 -0.762194 0.549446 2.387389 0.413147 -0.971907 0.620769 -0.091384 1.197353 -0.021660 0.575114 0.355515 0.774025 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -1.338168 0.869716 0.070079 -0.755767 3.070125 0.417445 0.484306 1.654283 -1.002014 1.594368 -2.120750 -0.208152 -0.403654 -1.862613 0.111517 -0.258451 0.369939 0.111386 -0.716189 -0.008048 0.768329 -0.675897 0.220690 -0.959765 -0.200669 -1.847123 -0.644943 0.170069 1.531791 0.110047 -0.556972 -0.008683 2.389273 -0.039759 1.617362 1.154586 1.201907 1.489914 0.221041 -0.445600 0.150845 1.303578 -1.018771 -1.653169 0.077953 -1.557888 -1.607242 -0.605408 0.669800 -1.482368 0.058595 1.346571 -0.109300 0.047190 -0.858551 1.053021 1.619994 -0.533820 2.294119 0.585912 -1.457488 -1.091388 -1.155422 1.906661 -0.680957 0.905248 -0.300669 -1.864307 -0.449776 0.536728 -0.213768 -0.903845 -0.845260 0.972075 0.790678 -1.218275 0.825036 -0.402566 -0.674120 -1.680126 -1.195361 0.502391 -0.497307 1.700802 0.013274 -0.067553 0.250096 0.050096 0.176103 -2.173295 -0.398928 2.082781 -1.167723 0.077674 -1.467982 0.798067 -0.015172 0.603391 -1.065666 -1.186842 0.373407 0.438795 0.219277 -1.673615 0.282094 -1.783087 0.606422 0.341646 0.310612 1.344259 0.568526 0.480725 0.902394 1.470101 -1.531272 0.354943 -1.625926 0.716412 -0.500122 0.151140 -0.500571 0.396693 0.915553 0.466457 1.619298 -2.201398 1.198597 0.806110 -0.879400 -1.609036 0.055411 -1.399145 -1.575910 0.020532 0.768506 0.216549 0.190060 -0.860465 0.431371 -0.427750 -1.451961 -0.732449 -0.162251 1.474099 -2.430355 -0.198502 -0.144191 -0.168321 -0.765916 1.488334 1.014191 0.800078 2.126953 1.069695 -0.664578 1.334884 -1.828856 0.792133 2.997429 0.971901 -1.861101 1.173880 -1.669179 0.290465 0.931823 0.605639 0.882866 0.659345 -1.342180 -0.394158 0.641559 -0.187526 2.236821 1.039971 0.943610 -1.650063 1.682623 -0.780795 -0.667676 2.412848 1.418696 -2.366508 1.120315 1.226263 -1.238706 0.180495 0.772344 -1.573870 -0.655823 -1.408035 0.177411 0.989885 -1.349536 -0.731671 0.261056 -1.848934 2.390306 0.215243 0.344433 0.413448 -1.451085 -0.918326 2.529388 0.192017 -0.130875 -0.618786 -0.733503 -1.749396 -2.106294 0.209705 0.378127 -1.251195 -0.720257 -1.751218 -0.148116 1.743378 -0.483437 1.105995 -2.593554 0.097983 0.792632 0.404709 1.010526 -1.379652 -1.061166 -0.488719 -0.632442 0.969521 -1.585256 1.250814 1.841983 -0.941165 1.941756 -0.254590 -0.870335 0.166509 0.884771 -1.285869 1.928448 -0.146068 1.706590 0.108276 1.560378 -1.211661 -0.145106 -0.458601 -0.495643 -0.700604 1.339004 -1.606762 -0.119615 0.881934 -1.359570 -1.379809 0.630624 0.179379 0.696386 -0.091143 -0.412972 -1.357600 -0.226013 -0.966245 0.436616 1.296703 -0.686979 -1.603964 0.175732 0.366957 -0.610496 -0.489435 0.383167 0.230806 1.553857 -1.716677 -0.013758 0.326966 0.276976 -1.950306 -2.152938 -0.075570 -1.085524 -1.355504 1.364438 -2.358869 -0.451613 -1.279977 -0.081744 -2.329448 -0.824929 0.462204 2.542614 0.337672 -0.865197 0.829142 0.104535 1.196413 -0.080130 0.656563 0.408726 0.656993 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = -3.605539 3.699586 3.336408 -2.395613 5.659186 0.515545 1.810669 3.070219 -1.481424 3.408526 -6.024557 -1.250072 -1.493744 -4.331973 0.189003 -4.099521 0.402303 0.632028 -1.359411 1.335506 2.474739 -1.817131 -0.384316 -3.214971 -0.570953 -5.073812 -1.860723 -0.066875 3.059055 0.757345 1.209651 0.365539 6.466048 0.611617 5.067926 4.153065 2.696718 4.998122 0.088984 1.366816 -0.330784 3.979549 -2.717521 -4.236025 0.218274 -3.662613 -3.170420 -2.061749 1.036587 -3.790794 -0.082930 3.615098 0.029795 0.521653 -2.455125 2.565975 4.311944 -0.043405 5.574698 1.978345 -2.828793 -0.799162 -3.500406 2.824824 -1.935193 2.614220 -0.369140 -3.565734 0.103801 0.420535 -0.219062 -2.159708 -1.929539 2.477340 1.661230 -3.292297 2.298131 -1.430937 -5.024517 -3.581419 -2.690026 1.320982 0.825984 4.314110 -0.340147 -0.441483 0.374077 0.612986 0.451497 -5.297332 -1.368421 5.598199 -2.795461 -1.015557 -3.765325 2.938113 0.719830 2.047338 -2.547570 -2.638284 1.715901 0.902466 0.575537 -3.857671 -1.799294 -4.869586 1.616157 1.362987 -1.109970 3.503826 0.412755 2.802044 3.164980 3.687733 -4.814812 2.620703 -4.782546 1.679087 -1.433140 0.176215 0.080432 0.681585 0.520249 1.672574 3.409347 -5.096953 3.077312 2.433199 -2.504591 -4.177546 0.465554 -4.090007 -4.341371 -1.021029 1.985078 2.112999 0.566657 -2.318014 0.304529 -1.521200 -0.368680 -3.827076 0.105841 3.947397 -4.945020 -0.947378 -0.636969 -0.321384 -2.622033 3.557396 2.065524 1.299619 5.449578 2.539696 -1.345029 2.316493 -3.924934 0.253953 6.639160 2.623475 -4.681783 3.043737 -2.920135 0.173235 2.196207 1.523054 1.955668 2.219935 -5.008310 -3.008848 0.613032 -1.922258 5.457504 3.016414 1.394969 -4.302089 6.137178 -2.258837 -3.415719 6.220047 4.541760 -4.861645 0.592873 2.690201 -4.169739 -1.626636 2.534421 -3.479587 -1.185410 -2.491359 -0.127265 1.243710 -2.910419 -2.161576 0.650453 -5.211148 5.635162 0.613158 1.891443 0.007339 -3.883622 -5.596015 6.290245 -0.057488 -1.160094 -1.587295 -1.311736 -3.154228 -5.465367 1.075981 1.203267 -2.537661 -2.852243 -4.113592 1.281982 3.340604 -2.375819 2.365801 -4.420455 -2.320025 1.924297 0.283181 3.001449 -3.770332 -3.165496 -1.792249 -0.479698 3.155581 -2.456128 4.141677 6.717379 -1.703965 4.659823 -0.455397 -3.817108 0.162442 3.533628 -4.062998 4.928639 -1.215992 3.598311 0.114653 3.575275 -3.677251 -1.707823 -0.028156 -1.640228 -1.451878 3.079433 -3.166205 0.414480 0.454980 -4.128589 -1.387962 2.177525 -0.058691 0.242849 -0.264755 1.397423 -3.964127 -0.513461 -2.633451 0.134594 3.930900 -0.251433 -4.072600 0.470026 0.586547 -1.140124 -0.928601 0.514547 0.257568 3.855840 -4.316110 -0.014806 0.491460 -0.985545 -4.733121 -5.847680 0.425409 -4.368107 -4.139609 2.505847 -4.693530 -0.333713 -3.353443 -0.101281 -5.513710 -3.196594 1.803041 5.991530 1.911185 -2.654514 1.367891 -0.300469 4.566241 0.557189 1.116285 0.639603 2.750559 +PE-benchmarks/union-find.cpp__main = -2.950791 3.691991 2.125484 -2.753065 4.959042 -0.872172 1.668237 1.869247 -0.003965 1.561995 -5.830862 -0.900609 -0.656278 -4.607599 0.791582 -2.202543 0.470817 2.570049 -0.899327 1.381605 2.523621 -1.343488 -0.438516 -3.906882 -0.022089 -2.908289 -1.444601 -0.272713 -0.081075 1.446038 0.951821 1.314665 4.521258 1.678444 3.554407 3.745235 0.968716 5.505940 0.570512 2.526523 1.150886 2.819313 -1.178993 -5.942856 1.863696 -2.760881 -1.895765 -3.627402 0.378311 -4.500133 2.954146 2.707953 0.701420 -0.814877 -3.237328 0.131249 4.835500 1.518270 3.483845 2.780411 -2.424145 1.516632 -2.336360 -0.021325 -2.302988 2.828061 2.353171 -3.742724 -0.454145 2.203455 3.242353 -2.700067 -3.661201 -0.319080 0.262383 -1.739021 2.053548 -0.736672 -3.508592 -1.739494 -2.194831 0.999174 -0.299788 3.817295 -0.530327 -0.838688 -2.120390 -0.721836 2.016413 -2.390258 -3.007837 3.734433 -0.765275 0.883674 -2.306685 2.525965 1.773371 -0.031221 -1.842625 -2.273232 1.889493 1.126220 0.452234 1.303797 -4.099845 -3.351818 3.010843 2.728377 -2.386269 2.413406 0.563092 2.613059 1.217831 0.853222 -3.027582 2.914272 -4.818083 1.399959 -0.782194 0.173621 0.354918 -0.439150 0.389108 -0.140993 0.944752 -2.894425 4.275790 2.892121 -1.823361 -2.197610 1.941745 -1.776029 -3.427516 -0.987889 1.953062 2.261690 0.192797 0.187534 -0.822785 -2.034901 -0.327789 -3.891265 -1.554384 4.378691 -3.033469 -0.487223 -0.965350 -1.307093 -1.777059 1.171421 0.390490 0.204683 3.998461 2.162205 -1.479523 -0.373944 -2.844464 0.954378 6.604777 3.014501 -3.451209 1.248312 0.231627 0.908067 1.891740 0.228025 0.624913 1.416057 -3.515051 -2.365234 -1.553190 -3.508774 3.604453 3.886586 1.803935 -5.049076 4.788645 -0.070044 -1.589349 6.207796 2.822584 -3.556233 -0.353309 3.960856 -3.597783 -2.190028 0.776655 -0.839438 -1.135330 -1.375419 0.901678 0.018510 -3.514864 -4.082874 -0.884866 -4.124240 3.503165 0.964770 1.503219 -1.406106 -3.109289 -2.833190 6.480464 0.296656 -1.386019 -0.150159 -0.794037 -0.761450 -4.755987 0.989284 1.927881 -1.992192 -2.304499 -2.309284 0.949903 3.668021 -4.040289 -0.335054 -0.403941 -2.055867 1.433873 -0.639753 1.396774 -5.697617 -2.756778 -0.626445 0.760705 2.222041 -0.041595 2.048864 5.529161 -1.788305 1.636000 4.024591 0.010926 0.638402 4.657499 -1.557064 3.483216 -2.277629 4.144885 0.416396 3.282395 -2.412676 -1.722201 0.004096 -0.427326 -1.535891 3.616015 -3.468266 0.605677 1.981112 -2.239391 -1.243455 3.706886 1.441978 1.738958 -1.058327 0.990688 -2.138015 0.408318 -0.919737 0.024412 3.338737 -0.165572 -4.631098 -1.336486 2.271427 -2.210443 -1.806416 1.389718 0.382110 4.169873 -2.992751 2.768312 0.404847 -1.444746 -4.341453 -3.650798 2.056247 -3.662585 -3.024882 1.982804 -4.351903 -1.348483 -2.181516 2.165480 -4.004616 -1.196675 -0.162361 3.315376 1.620552 -0.317638 1.727626 0.072360 3.117339 0.340547 0.068384 -0.066589 4.042589 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -7.885493 6.152806 5.998847 -3.082741 9.741841 2.437311 2.846230 3.259851 -3.945984 8.867396 -11.520943 -4.374450 -5.001820 -7.361232 -1.238910 -7.085566 2.045675 -1.435293 -2.088762 3.327300 4.534660 -6.461220 -0.194333 -5.131706 -1.274010 -9.388322 -5.022255 0.167451 9.994824 -3.543094 -0.314826 -0.260591 15.190786 1.923688 12.439001 8.675304 2.863077 10.719281 1.468457 -2.498202 -3.472901 9.917261 -7.411358 -6.722439 -0.581358 -8.729461 -4.632567 -3.626980 3.188060 -2.023213 -0.304994 7.829841 -1.979734 3.013483 -6.656094 4.520961 7.895933 1.837110 14.824845 1.768605 -3.618413 -0.471746 -7.692471 5.086576 -4.056496 2.925474 -3.297241 -5.980799 3.099157 -3.111349 0.261494 -7.421352 -3.792257 8.603118 2.921979 -8.180131 4.124900 -3.168626 -12.048932 -12.010455 -8.759779 1.987037 1.600463 8.930099 -0.737600 -0.171678 -0.464455 3.743232 -0.503422 -14.182165 0.112952 10.400416 -6.845244 -1.684137 -2.571798 9.017641 -1.238695 6.144268 -7.456252 -3.365887 2.439070 -0.156817 1.383154 -9.413861 3.101867 -9.861506 3.270920 -1.033112 -0.870236 3.681886 6.983565 5.744274 11.052222 10.551993 -10.764045 1.012703 -8.681558 2.378956 -1.671163 -1.066860 0.962965 5.112886 -2.501452 1.839468 11.243976 -13.336113 3.000121 3.717648 -5.253439 -11.348008 -1.358269 -11.075860 -9.266009 -2.511691 4.219084 3.779746 1.949372 -8.322125 -0.228823 -2.949337 -2.091077 -4.244468 3.215229 10.704446 -9.377264 -2.124896 -0.919694 -1.507288 -5.354700 8.997567 5.457842 5.188141 12.131179 6.323832 -4.020635 3.519562 -9.246243 -0.738160 12.304431 4.111232 -11.241966 8.070133 -7.014273 -0.514785 5.891295 5.812439 7.967521 -0.680015 -9.860629 -6.437192 4.174773 -1.010996 12.455466 1.708887 4.146197 -2.048303 14.329811 -1.795780 -9.125505 11.846313 5.314963 -9.374976 2.535847 3.440218 -5.870025 -1.015824 7.115892 -7.997306 -0.227160 -6.689453 -1.460404 3.383469 -5.124392 -0.776389 1.962579 -11.885536 14.671403 0.730022 4.409097 3.612052 -9.751674 -12.066868 12.554321 -1.613277 -1.275291 -4.892222 -3.923560 -6.521727 -11.308610 1.984699 -0.593318 -5.915029 -4.648342 -10.767260 3.927922 6.075130 -1.441299 7.933439 -9.538938 -5.208526 3.920906 1.049319 6.856977 -3.224354 -6.642925 -1.151176 -1.908076 7.343474 -6.402658 11.507871 14.247545 -3.705901 8.216258 -2.780933 -4.438438 1.939587 4.672022 -11.400863 10.866434 -3.237233 7.373563 -0.807578 7.078122 -7.254795 -3.539196 1.443069 -0.045131 -2.639302 4.351990 -4.936583 0.411003 -0.639851 -9.288319 -3.208520 1.187492 -2.654779 -1.064626 1.099148 2.034243 -9.222627 -1.052532 -5.570037 1.358839 8.003988 1.442608 -6.583866 3.338353 -1.487176 1.750605 3.006684 -0.170443 -0.865059 6.520577 -9.990358 -5.040148 -0.059721 -0.357484 -5.607544 -13.931939 -1.323683 -8.336900 -7.179401 9.166199 -10.355125 1.597986 -8.101388 -3.808513 -10.758757 -3.001481 3.836497 14.764731 6.223352 -8.921546 1.712723 -1.492225 9.785798 0.532217 1.912326 0.981820 4.692390 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.617453 0.254172 0.033313 -0.239736 1.509759 0.219081 0.041734 1.233460 -0.436373 0.742033 -0.815019 -0.013275 -0.199572 -0.750196 0.115452 0.107894 0.121402 0.126560 -0.413400 -0.183839 0.462357 -0.071398 0.026417 -0.362555 -0.055023 -0.688406 -0.282640 0.035067 0.687482 0.212482 -0.493874 0.040302 1.019504 -0.044674 0.760717 0.506742 0.845822 0.610953 -0.037292 0.076041 -0.033654 0.658969 -0.531565 -0.783805 0.214955 -0.818193 -0.669944 -0.147113 0.340375 -0.717621 0.267048 0.615935 -0.057034 0.130268 -0.078156 0.503965 0.452727 -0.260686 0.981145 0.368675 -0.864563 -0.656188 -0.622298 1.021612 -0.231994 0.701129 -0.148103 -0.996287 -0.398772 0.113035 0.057458 -0.510252 -0.245292 0.533521 0.222302 -0.447407 0.521973 -0.147773 0.251377 -0.674546 -0.697973 0.188891 -0.345616 0.758522 -0.103126 -0.100754 -0.067875 -0.014628 0.031501 -1.029458 -0.144106 0.952663 -0.692171 0.284043 -1.001488 -0.060925 -0.157165 0.477238 -0.387799 -0.542148 0.238951 0.391717 0.128351 -0.727469 0.238305 -0.666292 0.383115 0.097899 0.280224 0.573340 0.116463 0.094060 0.332402 0.759099 -0.432102 0.276660 -0.653419 0.431073 -0.287012 0.270590 -0.243002 0.208225 0.674204 0.112931 0.714642 -0.934349 0.436232 0.277433 -0.437082 -0.689537 0.122590 -0.793342 -0.787136 -0.080984 0.466382 0.097989 -0.109817 -0.470806 0.325727 -0.188891 -0.910859 -0.489569 -0.248251 0.314845 -1.217335 -0.173860 -0.175652 -0.149399 -0.343400 0.720309 0.477373 0.493158 0.921142 0.561969 -0.255079 0.443714 -0.871490 0.389925 1.296556 0.426474 -0.881031 0.473542 -0.838853 0.232599 0.523866 0.228472 0.370044 0.617170 -0.342770 0.033202 0.216823 0.065654 1.087896 0.691280 0.563047 -0.762976 0.383851 -0.649839 -0.444984 1.138923 0.731168 -1.187397 0.450777 0.369894 -0.258312 0.148364 0.245055 -0.750191 -0.312135 -0.651883 0.097617 0.581133 -0.738918 -0.360825 0.410440 -0.858953 1.117011 0.063663 0.333159 0.251713 -0.843953 -0.168841 1.152668 0.195365 -0.164604 -0.353513 -0.324622 -0.857495 -0.824878 0.190244 0.215461 -0.398418 -0.487976 -0.810820 -0.149074 0.898716 -0.109881 0.452600 -1.236074 0.059350 0.320609 -0.208152 0.618333 -0.868999 -0.519056 -0.497770 -0.369205 0.635985 -0.753608 0.362478 0.943871 -0.486476 0.940285 0.178411 -0.326082 -0.182443 0.409904 -0.549177 0.823800 0.000894 0.590229 -0.022724 0.741719 -0.667873 -0.058712 -0.274000 0.006481 -0.227590 0.712830 -0.554936 -0.015543 0.292932 -0.876613 -0.483071 0.236570 0.017099 0.331159 0.003653 -0.300225 -0.693126 -0.164405 -0.532277 0.127943 0.721895 -0.481924 -0.780845 0.069449 -0.120587 -0.478131 -0.303551 0.251295 0.069727 0.807851 -0.775104 -0.110864 0.255820 0.061452 -0.994545 -0.831380 -0.345559 -0.370313 -0.638123 0.592043 -0.991399 -0.218700 -0.590087 -0.050156 -1.138485 -0.469021 0.095371 1.133016 0.197636 -0.301135 0.512889 0.164184 0.673010 0.076803 0.246818 0.182733 0.318254 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -8.317754 6.453778 7.120347 -3.023951 10.813154 3.075701 3.352987 4.034997 -5.125115 9.309208 -12.171311 -4.546707 -5.235651 -7.715224 -1.273731 -7.954916 1.931260 -2.119218 -2.497131 3.387172 4.686220 -6.579889 -0.014979 -5.607358 -1.442922 -9.952079 -5.123674 -0.070711 11.097328 -2.752942 0.042959 -0.827101 15.538596 1.728276 13.011859 8.598977 3.081629 10.541675 0.609538 -3.152355 -3.807626 10.423153 -7.974595 -7.067791 -1.126797 -9.459770 -5.302933 -3.447813 3.272003 -2.740380 -2.439188 8.036879 -1.891086 3.259951 -6.141643 5.287405 8.478199 1.402768 15.385127 1.721463 -4.108957 -1.200613 -8.363814 5.218671 -3.631179 3.424258 -4.099100 -6.426410 2.656033 -3.280423 -1.601205 -6.787407 -3.095794 9.266526 3.797812 -8.518650 4.368492 -3.255658 -13.027664 -12.243725 -8.631925 2.061958 1.786541 9.251861 -0.659849 -0.066400 1.234676 3.867285 -0.406968 -15.112049 -0.033130 11.246282 -7.457716 -2.602096 -2.914799 8.804147 -1.523043 6.960628 -7.631267 -3.699594 2.513015 0.425353 1.207394 -11.450000 3.321045 -10.844985 3.173235 -1.017952 -0.511438 4.355106 6.366798 5.743525 11.017115 11.403193 -11.900178 1.658644 -8.453193 2.320423 -2.904971 -0.673970 0.489070 5.171820 -1.867833 2.520195 11.777550 -14.021616 3.294038 4.099325 -5.289434 -12.015789 -1.468762 -12.003244 -9.712971 -2.201946 4.145513 3.692039 2.136302 -8.953734 0.097087 -3.087692 -2.213576 -4.035073 3.360210 10.603316 -10.705029 -2.300094 -0.828338 -1.011599 -5.790384 9.722002 5.869236 5.223574 12.382210 6.408361 -4.436593 4.346515 -9.251245 -0.435646 13.422162 3.154061 -11.656697 8.332226 -7.977842 -0.387572 6.033436 5.299702 8.258931 0.303305 -10.740728 -6.746656 4.618158 -0.965021 13.184363 2.670710 4.455675 -3.082416 15.180213 -3.388736 -9.472792 11.995724 6.383726 -10.644085 3.320230 3.496084 -7.264018 -0.822706 7.227990 -8.769136 -0.141278 -7.425962 -1.816912 3.473447 -5.245428 -0.935182 2.289368 -12.538697 15.567086 1.055310 4.937267 3.537949 -9.292445 -12.884193 12.974455 -1.126709 -1.532413 -5.479335 -3.814613 -8.342927 -11.788504 2.027437 -0.781821 -6.399595 -5.093300 -11.418918 3.905642 6.059034 -1.514317 8.597885 -10.770859 -4.971169 3.689747 1.622913 7.683525 -3.027654 -6.941586 -2.125561 -2.997966 7.732170 -7.264368 11.940721 14.814340 -3.751704 9.898982 -4.250535 -6.562719 1.601636 4.785309 -11.538327 11.021235 -3.060554 8.215825 -0.972831 7.872293 -7.696147 -3.287921 1.234516 -1.583804 -2.555238 4.999712 -5.312959 0.275353 -0.562397 -10.007267 -3.662735 1.215097 -3.154105 -0.526699 0.880727 2.255971 -10.466262 -0.850311 -6.141818 1.282618 8.395641 0.897061 -7.355677 3.200823 -1.603382 1.590330 1.613799 -0.087449 -1.115337 6.639825 -10.412622 -5.409319 0.114599 -0.404048 -6.254705 -14.165525 -1.676121 -9.118603 -7.841101 9.628910 -10.466636 2.305655 -8.358536 -4.305022 -11.424600 -4.602170 4.221787 15.516592 5.886659 -9.309857 1.988388 -1.403952 10.342203 0.860915 2.539337 0.896176 4.361130 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.512436 0.681929 0.153670 -0.598036 2.942166 0.140522 0.648107 1.398478 -1.270625 1.726041 -2.090501 -0.437674 -0.782796 -1.993406 0.106751 -0.007517 0.757719 0.025806 -0.512521 0.285878 0.914271 -1.129197 0.241865 -0.947455 -0.163676 -1.725329 -0.571611 0.206521 2.018693 -0.391564 -0.684125 0.114513 2.694216 0.115470 2.055271 1.363648 0.836359 1.766422 0.459464 -1.542526 -0.243444 1.690306 -1.194258 -1.816124 0.101577 -1.577600 -1.399344 -0.856977 0.857406 -0.987300 -0.315106 1.567981 -0.264385 0.269543 -1.311233 1.014045 1.959022 -0.293922 2.727957 0.530282 -1.014261 -0.801892 -1.170362 1.375546 -0.751067 0.411123 -0.648524 -1.729135 -0.066787 0.214616 -0.438381 -1.222289 -0.666475 1.230000 0.786921 -1.464946 0.958415 -0.279670 -0.672169 -2.584836 -1.774566 0.353897 -0.480557 1.985855 -0.098924 -0.032670 0.290974 0.200066 0.189500 -2.546621 -0.123349 1.738360 -1.371728 -0.256957 -0.429795 1.449607 -0.128061 0.731623 -1.389764 -1.232747 0.344132 0.010073 0.340742 -1.622948 1.082847 -1.585071 0.449535 -0.138950 0.544594 1.294152 1.488694 0.566138 1.303625 1.722481 -1.780083 0.029785 -1.756553 0.690402 -0.509070 0.036908 -0.345764 0.778526 0.902878 0.239036 1.962034 -2.714647 1.014582 0.926990 -0.558274 -1.840626 0.033734 -1.659255 -1.676222 -0.217182 1.090353 0.120290 0.269525 -1.126404 0.524919 -0.350303 -1.404620 -0.030302 -0.105611 2.093590 -2.761474 -0.185622 -0.274970 -0.452502 -0.689681 1.448588 0.992225 1.094025 2.288312 1.315747 -1.165504 1.353529 -2.094612 0.705550 3.090279 0.524801 -1.999009 1.378923 -1.692775 0.219847 1.191860 0.909537 1.457575 -0.071984 -1.412896 -0.469798 1.318561 0.025978 2.455286 0.312419 1.234815 -1.444299 2.002905 -0.359488 -0.899356 2.579218 1.001871 -2.623901 1.463791 1.199107 -1.302638 0.332377 0.891315 -1.691437 -0.459857 -1.751767 0.230133 1.119540 -1.550659 -0.512663 0.205150 -2.079471 2.545517 0.190572 0.396757 0.803696 -1.539994 -0.621660 2.730016 0.258002 -0.034153 -0.970562 -1.086530 -1.911276 -2.349860 0.318462 -0.161077 -1.226957 -0.627718 -2.064317 -0.148670 1.829736 -0.156580 1.239775 -2.908547 0.312141 0.884806 0.697589 1.026860 -0.878335 -1.234669 0.035511 -0.860231 0.969630 -1.661145 1.590059 2.017923 -1.190492 1.742865 -0.412983 -0.557270 0.624611 0.775230 -1.753981 2.121357 -0.203613 2.330571 0.038389 1.644873 -1.429941 -0.193490 -0.286389 -0.379336 -0.830662 1.193119 -1.589169 -0.158885 0.902849 -1.381465 -1.702298 0.353112 0.022183 0.678327 0.055923 -0.428573 -1.579410 -0.101794 -1.095389 0.658174 1.492214 -0.470712 -1.633572 0.366316 0.375207 -0.115215 -0.358736 0.364742 0.054357 1.616519 -1.980792 -0.355841 0.172284 0.593127 -1.418605 -2.551219 0.125895 -1.171125 -1.191255 2.046620 -2.569187 -0.094176 -1.433849 -0.205429 -2.604438 -0.273915 0.275499 2.810467 0.407391 -1.174408 0.847285 0.052411 1.211402 -0.187070 0.639736 0.171213 0.756913 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -0.740141 0.062637 0.088160 -0.456538 1.730575 -0.030861 0.029034 0.963846 0.728594 0.398049 -1.370259 -0.789723 -0.326189 -0.734770 0.276503 -0.021050 0.186632 0.484973 -0.911510 -0.642128 0.679128 0.531006 -0.036911 -0.815585 0.128800 -0.141012 -0.748662 -0.070579 -0.182193 0.443683 -0.836040 0.367952 1.143247 0.152672 0.775382 0.616676 1.083521 1.242384 -0.543539 1.377850 0.659768 0.780798 -0.376574 -1.372916 0.600675 -1.070826 -0.691809 -0.489581 0.333369 -1.082780 1.583040 0.603040 0.275437 -0.071811 -0.083165 0.215283 0.506948 0.447567 0.854926 0.861419 -1.291597 0.372436 -0.783608 0.717919 -0.560205 1.839034 0.198377 -1.564103 -1.252683 0.583821 1.198785 -1.099582 -1.205364 -0.165795 -0.045139 -0.102131 0.808324 0.042388 1.275562 -0.239394 -1.002832 0.292887 -0.466683 0.762820 -0.308001 -0.410422 -0.694072 -0.418927 0.490925 -0.566133 -0.812649 0.984955 -0.660740 0.965765 -1.229787 -0.913028 -0.276503 0.261484 -0.433488 -0.778425 0.376780 0.650639 0.031592 0.524383 -0.477171 -0.471280 1.111820 0.995853 -0.216291 0.072354 0.116394 0.065934 0.047850 0.221275 0.003580 0.638910 -0.933826 0.481774 -0.320714 0.211340 -0.152851 0.011379 0.640947 -0.220038 0.279775 -0.578023 0.974034 0.404952 -1.047151 -0.138573 0.503044 -0.565401 -1.231266 -0.047045 0.644394 0.525421 -0.239022 -0.031449 0.208533 -0.643951 -0.606154 -0.570105 -0.756655 -0.318680 -0.573708 -0.380828 -0.289866 -0.473046 -0.493081 0.677033 0.174493 0.187728 0.986255 0.549515 -0.456930 -0.818695 -0.939665 0.640672 1.558360 0.120298 -1.028724 0.110438 -0.405427 0.789831 0.735528 0.043068 -0.158629 0.878194 0.277811 0.586891 -0.941785 -0.448245 1.098593 1.248534 0.827642 -1.247341 -0.181354 -0.922618 -0.124277 1.641785 1.121383 -1.359713 -0.290750 0.898390 -0.007688 -0.405448 0.078130 -0.360987 -0.461697 -0.740228 0.431074 0.400213 -1.128979 -0.844711 0.615670 -1.002376 0.984744 0.188823 0.167387 -0.061537 -1.358675 -0.163312 1.810682 0.119098 -0.182089 0.081335 -0.228936 -0.014015 -1.183806 0.290642 0.670688 -0.251913 -0.650735 -0.560021 0.282757 1.388308 -0.849670 0.141393 0.083165 -0.110175 0.288518 -0.955249 0.827075 -1.398311 -0.752503 -0.688242 -0.294130 0.825232 -0.629290 -0.430398 1.105021 -0.602558 0.737398 1.462727 -0.234534 -0.709100 0.952631 0.003870 0.806530 -0.281000 0.275819 -0.117847 1.029037 -0.691840 -0.302437 -0.339868 0.376533 -0.495167 1.224634 -0.883795 0.184471 0.359648 -0.942639 -0.244671 0.937472 0.366067 0.489728 -0.276025 -0.222369 -0.688763 0.058951 -0.209409 0.094037 0.920466 -0.406187 -1.299721 -0.412189 0.154882 -1.369875 -0.506990 0.499641 -0.117291 1.476837 -0.693360 0.333268 0.580946 -0.264967 -1.475569 -0.489200 -0.527708 -0.639808 -0.456574 0.461506 -0.785307 -0.803959 -0.510605 0.590127 -0.569476 -0.560040 -0.069294 0.868013 0.777545 0.003578 0.672910 0.482834 0.801195 0.213699 -0.348088 0.306949 0.621335 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.968389 1.009836 -0.040492 -0.878054 2.576683 -0.149311 0.371743 1.410641 -0.755862 0.882229 -1.839766 0.490007 0.068328 -1.784613 0.392282 0.212956 0.291274 0.606191 -0.344767 0.116225 0.674588 -0.459070 0.020627 -1.109654 -0.111637 -1.458881 -0.179500 0.092658 0.598394 0.378544 -0.411046 0.393453 1.500849 0.052633 0.895929 1.064796 0.991252 1.308239 0.485520 -0.235681 0.599555 0.680156 -0.418119 -1.724246 0.406315 -0.950768 -1.165269 -0.757988 0.337396 -1.508770 0.486536 1.027336 0.185163 -0.363416 -1.061363 0.685559 1.578834 -0.462871 1.346016 0.836506 -1.108511 -0.784641 -0.618578 1.178233 -0.749186 0.675700 0.387116 -1.413552 -0.381658 1.167655 0.371556 -0.759534 -0.910038 0.005114 0.287381 -0.827570 0.654193 -0.184424 -0.192074 -0.984434 -0.668233 0.529728 -0.431757 1.422571 0.107091 -0.112772 -0.358762 -0.275837 0.585400 -1.076064 -0.842587 1.371751 -0.557427 0.240989 -1.246752 0.813998 0.606049 -0.164370 -0.502210 -1.166902 0.523364 0.403871 0.180366 -0.694181 -0.341795 -1.296922 0.678761 0.596201 -0.157659 1.209554 -0.038078 0.475454 0.151509 0.472611 -0.753628 0.405186 -1.722862 0.508118 -0.121252 0.109455 -0.430473 -0.225836 0.949556 0.171356 0.609681 -1.372689 1.516121 0.880478 -0.478395 -0.917919 0.491059 -0.455266 -1.073332 -0.021139 0.675084 0.285792 0.128788 0.124518 0.325155 -0.424728 -1.122549 -1.054324 -0.599057 1.704952 -1.985928 0.007739 -0.208004 -0.220162 -0.530935 0.554751 0.462682 0.315510 1.522353 0.780365 -0.455222 1.114479 -1.318144 0.769094 2.515948 1.319531 -1.211644 0.665942 -0.819589 0.276506 0.530469 0.199739 0.212687 0.591177 -1.214762 -0.476665 0.356387 -0.760620 1.442504 0.887277 0.752925 -1.803309 1.284534 -0.270267 -0.163479 2.024971 1.039450 -1.784751 0.874116 1.623212 -0.856841 -0.120663 0.351012 -0.936075 -0.661784 -0.746314 0.385852 0.533674 -1.387195 -1.149256 -0.307874 -1.238212 1.364231 0.340938 0.231142 -0.147443 -0.806414 -0.159316 2.090130 0.203396 -0.170484 -0.212756 -0.525179 -1.180066 -1.689550 0.138779 0.682896 -0.970564 -0.542878 -1.043057 -0.409230 1.579129 -1.059034 0.125263 -1.802627 0.155463 0.658726 0.413165 0.411904 -1.626873 -0.792555 -0.138936 -0.098530 0.482448 -0.878613 0.761589 1.360979 -0.816455 1.175263 0.527543 -0.095724 0.357937 1.189121 -0.544440 1.364033 -0.130152 1.777856 0.400282 1.251845 -1.022011 -0.181696 -0.452472 -0.458472 -0.648234 1.206049 -1.581052 -0.059166 1.116003 -0.531343 -1.228741 1.036147 0.720774 0.861788 -0.406976 -0.278932 -0.366143 -0.112076 -0.746374 0.391026 0.953658 -0.742996 -1.410056 -0.256187 1.055356 -0.925636 -0.538967 0.584982 0.398717 1.499493 -1.190954 0.941830 0.239114 0.163301 -1.881472 -1.580380 0.575609 -0.751240 -0.997047 0.735952 -2.183441 -0.828352 -0.745230 0.691616 -2.026966 -0.333194 0.030984 1.487214 -0.067605 -0.059529 0.810848 0.096869 0.561464 -0.150164 0.504739 0.080080 0.830630 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.789899 0.765513 0.542511 -0.555852 1.647381 -0.205148 0.388699 0.684345 -0.032766 0.650938 -1.424870 -0.431957 -0.139504 -1.169988 0.248327 -0.636354 0.271609 0.427220 -0.282553 0.188942 0.484899 -0.233424 -0.147870 -0.753882 -0.094304 -1.179925 -0.514345 0.112993 0.463838 0.013906 0.029986 0.392176 1.552241 0.113875 1.267573 1.046927 0.580359 0.992164 0.173225 0.003112 0.321141 0.684122 -0.493221 -1.150715 -0.013097 -0.635187 -0.905802 -0.586243 0.234927 -0.788938 0.023694 0.785120 0.061421 0.093673 -0.685431 0.458620 0.909119 0.189575 1.142151 0.605918 -0.745775 0.161055 -0.723195 0.816002 -0.589512 0.542694 -0.296049 -1.187562 -0.203118 0.589254 0.153243 -0.551515 -0.651983 0.307647 0.376569 -0.659100 0.593127 -0.123789 -0.465822 -0.804600 -0.698580 0.485716 -0.131308 1.034808 0.021418 -0.122535 -0.103351 -0.054747 0.245866 -1.030038 -0.466285 1.102631 -0.676767 -0.162826 -0.426065 0.562994 0.546448 0.210232 -0.312091 -1.014236 0.447131 -0.083417 0.084699 -0.086142 -0.017859 -0.843042 0.257975 0.479058 -0.091758 1.024227 0.086838 0.704782 0.689856 0.567221 -0.875062 0.159534 -1.107940 0.588742 -0.718664 -0.102261 -0.106886 0.106364 0.442190 0.469900 0.675690 -1.109142 0.844519 0.715598 -0.349417 -0.602396 0.222622 -0.704066 -1.000373 -0.231851 0.520453 0.457517 0.159308 -0.237366 0.086991 -0.320176 -0.056796 -0.450002 -0.283862 0.850302 -1.164126 -0.120899 -0.104558 -0.136304 -0.545889 0.702887 0.493124 0.400826 1.256376 0.593535 -0.580647 0.210412 -1.128905 0.285858 1.773816 0.078875 -0.940973 0.742840 -0.627262 -0.000816 0.493404 0.471856 0.256749 0.280595 -0.920399 -0.541824 -0.253844 -0.455131 1.235505 0.641891 0.267241 -1.124477 1.153036 -0.387069 -0.623499 1.656576 0.687657 -1.281610 0.217143 1.017402 -1.108784 -0.468752 0.505097 -0.902865 -0.343912 -0.812400 0.198061 0.367660 -0.891992 -0.518390 0.205652 -1.116704 1.049881 0.220957 0.009295 -0.078538 -0.694327 -0.990370 1.938065 0.169865 -0.038150 -0.263807 -0.418574 -0.297375 -1.315930 0.075299 0.240633 -0.602203 -0.303518 -0.850216 0.088051 1.071344 -0.734037 0.516857 -0.992584 -0.124964 0.498318 0.147548 0.325707 -0.904598 -0.685807 -0.188791 -0.314452 0.243216 -0.722552 0.689809 1.249134 -0.478703 0.808205 0.221414 -0.907562 0.149836 0.775999 -0.789820 1.175282 -0.255629 0.882706 0.356011 0.876641 -0.859843 -0.421097 -0.166177 -0.559763 -0.682264 0.853702 -0.987931 0.091366 0.571286 -0.569753 -0.757456 0.596798 0.324225 0.334839 -0.220156 -0.021476 -0.933689 0.106906 -0.367200 0.319081 0.780630 -0.130752 -1.040258 0.145147 0.638925 -0.506916 -0.717595 0.238090 0.067399 1.050509 -0.988024 0.335768 0.303876 0.271141 -1.187971 -1.290093 0.303118 -1.033642 -0.653892 0.362941 -1.315506 -0.454686 -0.676746 0.206521 -1.030635 -0.578764 0.529762 1.393989 0.305559 -0.647418 0.368078 -0.077463 0.633812 0.076402 0.204648 0.006211 0.646039 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.994806 0.762726 0.412179 -0.489210 1.628864 -0.412469 0.587731 0.388849 -0.035293 0.552730 -1.802061 -0.853088 -0.395642 -1.522791 0.308119 -0.833419 0.653345 0.368046 -0.340873 0.343787 0.611843 -0.512049 -0.126574 -1.209027 0.012479 -1.385191 -0.450170 -0.058989 0.665050 0.068344 -0.012659 0.478590 1.974062 0.347586 1.446262 1.149262 0.398920 1.293236 0.246599 -0.560573 0.283156 1.031181 -0.538609 -1.397099 -0.159286 -0.818667 -0.846168 -0.624924 0.253539 -0.653650 -0.399975 0.815877 0.205199 0.193892 -1.115943 0.305744 1.585734 0.493933 1.363278 0.667183 -0.386863 0.259465 -0.619425 0.544104 -0.806621 0.265264 -0.270863 -1.036100 -0.167864 0.643697 -0.165108 -0.506570 -0.866332 0.149123 0.626298 -0.794596 0.752568 0.113251 -0.793195 -1.073757 -0.915761 0.401683 -0.256502 1.292752 -0.046891 -0.141957 0.148941 -0.140715 0.680429 -1.068265 -0.697271 0.984411 -0.709583 -0.428641 0.051318 1.024391 0.724069 0.230947 -0.523180 -1.259654 0.401399 -0.256353 0.011276 -0.153922 -0.053238 -0.914107 0.348158 0.369807 -0.252815 1.397966 0.323837 0.899761 0.647215 0.503377 -1.187993 -0.137921 -1.261309 0.421477 -0.948868 -0.229807 -0.012326 0.070370 0.467757 0.406542 0.678038 -1.395507 1.114839 1.120945 -0.129346 -0.610818 0.289868 -0.799438 -1.183997 -0.245469 0.672598 0.530693 0.379573 -0.247106 0.133806 -0.375887 0.124498 -0.054005 -0.371592 1.266591 -1.414432 -0.178882 -0.142077 -0.207667 -0.644938 0.561417 0.212413 0.213190 1.175911 0.598057 -1.148465 0.475095 -1.074207 0.396088 2.303091 -0.222098 -1.082145 0.674797 -0.596798 0.078801 0.610094 0.351434 0.411442 -0.010672 -1.129696 -0.623974 -0.313667 -0.745873 1.353869 0.468782 0.390911 -1.503433 1.696768 -0.257252 -0.584187 1.927698 0.693457 -1.506973 0.414575 1.346646 -1.808806 -0.463719 0.398173 -0.847854 -0.121007 -1.347679 0.371348 0.227963 -1.063531 -0.520003 0.002781 -1.349426 1.083931 0.435155 -0.043069 -0.153131 -0.604373 -1.078846 2.373300 0.162549 0.046382 -0.412487 -0.534964 -0.614956 -1.767525 0.085460 -0.185913 -0.815180 -0.167359 -0.988008 0.123321 1.313657 -0.994283 0.477027 -1.359258 0.039803 0.384486 0.669916 0.305647 -0.636970 -0.918765 0.107044 -0.401512 0.222847 -0.867105 0.799248 1.370627 -0.615812 0.788349 -0.190336 -1.214080 0.427005 0.963902 -0.822188 1.101695 -0.476015 1.354823 0.343181 1.176758 -0.999318 -0.511689 -0.141957 -0.923550 -0.946643 0.936543 -1.320421 0.106857 0.917121 -0.309267 -1.077175 0.771896 0.244238 0.735070 -0.407040 0.026511 -1.126387 0.495701 -0.246743 0.426552 0.922250 0.223293 -1.233617 -0.045482 0.960786 -0.427904 -0.922983 0.259076 -0.204122 1.220225 -1.088685 0.356639 0.283006 0.345797 -0.927188 -1.677691 0.550196 -1.230238 -0.657686 0.916154 -1.576329 -0.270796 -0.644109 0.336896 -1.105738 -0.605781 0.479270 1.406285 0.243907 -0.746070 0.408584 -0.035147 0.643613 0.016091 0.305853 -0.158045 0.724595 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -4.208004 4.648352 1.554775 -3.636099 10.089098 -0.849975 3.119594 3.494755 -3.567871 3.162569 -8.378617 0.280111 -0.383994 -7.977646 1.657790 -2.120928 1.847632 1.772041 -1.067177 1.791629 2.648298 -2.984983 -0.278279 -5.018903 -0.245732 -7.067164 -1.339752 0.375907 3.509450 1.026877 0.013760 1.874090 7.295607 0.484629 4.672482 5.095846 3.069184 5.487881 1.553019 -3.327532 2.071498 3.387544 -1.962996 -6.901996 0.293846 -3.539063 -5.448852 -3.282463 1.294794 -5.236356 -1.965086 4.586889 0.577144 -1.004975 -5.287828 2.947985 7.756300 -1.031367 5.950417 3.394822 -3.206085 -2.206611 -2.833746 3.684946 -3.062116 1.622416 0.131717 -5.385704 -0.607741 4.578813 -0.683089 -2.237293 -3.806583 0.347616 2.587775 -3.850668 2.754712 -0.632350 -4.321327 -4.773984 -2.790105 2.176309 -1.138476 6.485216 0.619995 -0.547996 0.756154 -1.026510 2.507071 -4.936953 -3.354836 5.951737 -2.347092 -1.472826 -3.360982 5.187552 3.540445 -0.376973 -2.731364 -5.669450 2.215787 0.120640 0.513143 -3.285323 -1.217658 -5.940411 1.266448 2.369752 -0.617780 6.614862 0.209640 3.089815 1.722401 2.087944 -5.466219 0.952978 -6.771429 2.134680 -2.340306 -0.378767 -1.331200 -0.496961 3.124641 1.899404 2.934414 -6.365733 6.063759 4.699604 -1.475867 -3.883149 1.626274 -2.644021 -4.885158 -0.289614 2.700382 1.649476 1.407946 0.122464 1.020996 -1.633245 -1.893551 -2.534147 -1.918489 7.825765 -8.359407 -0.092357 -0.591652 -0.561513 -2.572873 2.634620 2.011280 1.266158 6.610729 3.087280 -3.217454 5.496452 -5.537291 2.837905 11.139887 3.545515 -5.017298 3.273678 -3.456877 0.545689 1.931018 1.293191 1.515355 1.296854 -6.563455 -3.144984 1.142472 -3.673219 6.160064 3.112915 2.158919 -7.763692 7.558309 -1.224355 -1.573171 8.120263 4.024939 -7.222089 3.784231 7.082768 -6.448633 -1.366582 1.981232 -4.582342 -2.239309 -4.239807 1.508900 1.752476 -5.418412 -3.953267 -1.613806 -5.608484 5.439632 1.760817 0.361744 -0.898323 -2.282578 -4.009153 9.602984 0.506487 -0.311211 -1.405996 -2.282036 -4.367905 -7.597177 0.403441 1.404169 -4.541890 -1.818444 -4.656060 -1.162304 6.261655 -4.712603 1.558324 -7.855957 0.748240 2.726489 3.776316 1.631053 -4.860412 -3.859334 0.193097 -1.120384 0.969780 -4.073183 4.137921 5.743026 -3.225408 4.784976 -0.891732 -3.407880 2.384630 4.758825 -3.168553 6.070947 -0.600401 8.611964 1.964074 5.444006 -4.583133 -1.469956 -1.203961 -4.254428 -3.522137 4.878536 -6.896228 0.095702 4.993613 -1.374760 -5.968792 4.256239 2.444857 3.144913 -1.862030 -0.345365 -2.821537 0.418828 -2.155344 2.087632 3.994747 -1.985727 -5.649670 -0.818730 5.234418 -2.499962 -3.117716 2.080993 1.065419 5.888486 -5.216109 3.486805 0.701726 1.385228 -6.738292 -8.013973 3.547893 -4.626868 -4.059497 3.569916 -8.858013 -2.281974 -3.471321 2.217064 -7.645837 -2.439512 1.543542 6.784631 -0.371609 -1.706737 2.572356 -0.070035 2.294619 -1.037503 2.471212 0.077525 3.124310 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -3.323835 3.801152 1.533286 -3.147096 8.469334 -0.602085 2.537083 2.958225 -2.247571 2.358050 -7.146894 0.114925 0.079532 -6.031654 1.418372 -1.850255 1.183320 1.428479 -1.239392 0.993672 2.021847 -1.650304 -0.395574 -4.261311 -0.212997 -5.442239 -1.440894 0.266933 2.267507 1.049756 -0.242087 1.566186 5.711657 0.175717 3.739264 4.131769 2.923286 4.285284 0.740027 -1.619376 2.369923 2.474372 -1.491034 -5.468321 0.058223 -2.913881 -4.660460 -2.583351 0.880114 -4.491343 -0.798189 3.557403 0.718594 -0.935542 -3.820408 2.634034 5.807687 -0.827145 4.519268 2.997516 -3.218664 -1.183056 -2.432248 3.468602 -2.422219 2.323040 0.020406 -4.736646 -1.162026 4.120321 0.090652 -2.081893 -3.413646 -0.085386 1.868036 -2.870218 2.330888 -0.567035 -2.490846 -3.382694 -1.937692 2.111864 -0.756844 4.967379 0.564708 -0.607421 0.158740 -0.990562 2.083591 -3.639448 -3.186851 5.053735 -2.041114 -0.937275 -3.389047 3.217368 2.880156 -0.342449 -1.839815 -4.860932 1.949714 0.451695 0.192892 -2.338039 -1.072499 -4.746949 1.172296 2.766727 -0.779276 5.087072 -0.644403 2.580451 1.314665 1.380187 -3.796254 1.072841 -5.450696 1.784863 -2.113748 -0.348986 -1.160912 -0.700223 2.645833 1.786695 2.073476 -4.627783 5.139680 3.714145 -1.756367 -2.712359 1.381185 -2.016630 -4.229868 -0.055524 1.896886 1.758722 1.120984 0.383523 0.834856 -1.646758 -1.207552 -2.427200 -1.670211 5.443193 -6.368155 -0.260921 -0.308057 -0.139611 -2.341507 2.434326 1.712372 0.714366 5.393655 2.257175 -2.304914 3.563443 -4.414944 2.353232 8.869954 2.581225 -3.984154 2.537916 -2.862555 0.614989 1.496325 0.931391 0.458167 1.570538 -5.135579 -2.295925 0.150746 -3.320735 4.959969 2.959110 1.598233 -6.354818 5.651635 -1.815296 -1.225935 6.571529 3.809715 -5.939117 2.394534 5.980873 -4.654831 -1.528488 1.728623 -3.777430 -2.122351 -3.172939 1.179793 1.208933 -4.298391 -3.353205 -0.926536 -4.458572 4.338459 1.531816 0.051818 -1.157507 -1.827284 -3.345577 7.971346 0.387656 -0.251723 -0.669194 -1.468321 -2.964499 -6.133300 0.195268 1.731106 -3.511065 -1.566676 -3.502438 -0.600897 5.064258 -4.465130 1.226665 -5.512941 0.352345 2.139397 2.402290 1.454740 -4.250337 -3.103247 -0.494593 -0.914584 0.760829 -3.562130 2.923525 4.706382 -2.355933 4.089666 -0.018706 -3.203388 1.190548 4.092930 -2.129598 4.863455 -0.395989 6.235969 1.711982 4.471626 -3.791555 -1.402321 -1.210168 -3.430549 -2.955413 4.256541 -5.708155 0.259846 3.745905 -1.176664 -4.506576 3.904901 2.180111 2.306292 -1.772893 -0.189898 -2.285974 0.276659 -1.918686 1.575797 3.126464 -1.890817 -4.808177 -0.809603 4.390895 -2.837183 -2.608228 1.699211 0.867423 5.048623 -4.033481 3.082353 0.947883 1.036432 -6.196506 -6.103181 2.508460 -3.931541 -3.272362 2.101750 -6.754162 -2.518882 -2.716880 1.967217 -5.847811 -2.626400 1.656327 5.390158 -0.035539 -1.333903 1.978181 0.009869 1.937471 -0.567327 1.788904 0.154350 2.307858 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.491615 0.720529 0.347387 -0.626544 1.632987 -0.050961 0.225906 0.930381 -0.341776 0.548815 -1.107082 0.500319 0.268946 -0.850943 0.250025 -0.173396 -0.061489 0.281371 -0.246796 -0.014742 0.259106 -0.011377 -0.059112 -0.623044 -0.182607 -1.169981 -0.119741 0.113029 0.281975 0.345236 -0.081756 0.192519 0.745244 -0.233829 0.459763 0.628757 0.789972 0.485588 0.103902 0.095413 0.604399 0.163934 -0.208400 -0.763571 -0.030858 -0.411708 -0.887453 -0.295582 0.147400 -1.002972 -0.012250 0.528911 0.173250 -0.273197 -0.398773 0.770375 0.626090 -0.455653 0.627437 0.484874 -0.802819 -0.477873 -0.494657 1.073921 -0.415311 0.535557 -0.068563 -0.871030 -0.350884 0.888415 -0.056059 -0.155497 -0.303098 -0.046686 0.222242 -0.500585 0.308144 -0.199269 -0.042486 -0.299559 -0.011204 0.512071 -0.005154 0.670402 0.188666 -0.018494 -0.056287 -0.108257 0.240525 -0.538632 -0.589360 0.965814 -0.406217 -0.099896 -0.937665 0.245911 0.584963 -0.170911 0.068940 -0.790920 0.360008 0.268670 0.040708 -0.691333 -0.126942 -0.823169 0.187036 0.570062 -0.086937 0.772352 -0.738319 0.363153 0.020011 0.225949 -0.310795 0.355318 -0.994324 0.339007 -0.270030 0.055182 -0.372330 -0.272261 0.624614 0.514646 0.298540 -0.630205 0.947341 0.406324 -0.325655 -0.409568 0.242002 -0.127983 -0.577007 0.058357 0.199738 0.262056 0.096847 0.171647 0.303614 -0.235766 -0.361401 -0.751534 -0.257098 0.674206 -1.128529 0.028153 0.005010 0.168702 -0.390285 0.441718 0.415670 0.088312 0.919381 0.343101 -0.010826 0.654885 -0.755401 0.381212 1.302572 0.560175 -0.552075 0.485694 -0.654172 0.017397 0.150808 0.124714 -0.185002 0.722847 -0.875030 -0.427146 0.030491 -0.520672 0.830511 0.642779 0.150793 -1.077371 0.683724 -0.664057 -0.089790 0.975312 0.918552 -1.088062 0.406059 1.008049 -0.571667 -0.310719 0.328061 -0.710866 -0.448608 -0.271550 0.114014 0.298727 -0.629713 -0.636541 -0.081855 -0.607959 0.718550 0.189963 0.040087 -0.216856 -0.189421 -0.405322 1.079016 0.134070 -0.079018 -0.064854 -0.170672 -0.715411 -0.927675 -0.042233 0.587961 -0.584755 -0.303365 -0.531809 -0.215549 0.734730 -0.803143 0.155597 -1.094704 0.011914 0.401983 0.280697 0.217149 -0.786086 -0.328950 -0.375634 -0.158847 0.112624 -0.693978 0.458109 0.767175 -0.299417 0.980431 0.038180 -0.683593 0.009214 0.717523 -0.283308 0.827663 0.102174 0.668881 0.402219 0.630633 -0.647460 -0.126421 -0.353873 -0.694527 -0.374940 0.682632 -0.948747 -0.028237 0.493294 -0.336356 -0.600800 0.676414 0.545670 0.359731 -0.305972 0.026002 -0.268880 -0.149411 -0.635646 0.170226 0.413526 -0.569504 -0.800797 -0.021604 0.758357 -0.788924 -0.622197 0.264393 0.345481 0.795435 -0.633052 0.670180 0.265204 0.140001 -1.438412 -0.841602 0.279674 -0.580018 -0.692670 -0.111198 -1.133598 -0.681724 -0.379358 0.416137 -1.137367 -0.663277 0.384786 0.875481 -0.125554 -0.081149 0.409189 -0.054225 0.287762 0.029888 0.349265 0.059048 0.276627 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.664323 -0.258640 0.435732 -0.311841 2.475239 -0.811346 0.236634 1.792885 0.906806 0.421205 -1.113866 -0.361012 -0.159264 -0.428465 0.517796 -0.243328 0.496673 0.943638 -1.100394 -1.078561 0.454934 1.667008 -0.262963 -0.438869 -0.124433 -0.421381 -0.820608 0.235227 -0.777193 0.202186 -0.926973 1.130444 1.743276 -0.269562 1.270285 0.942502 1.781227 0.960411 -0.377488 1.599951 1.462390 0.191985 -0.202045 -1.111250 0.196881 -0.537681 -1.309827 -0.171550 0.362423 -1.138039 1.739978 0.538908 0.440403 0.343613 0.260614 0.758299 -0.389365 -0.061890 0.627659 1.031026 -2.334971 0.585655 -0.748309 2.131060 -0.639089 1.939099 -0.655576 -2.188263 -1.651828 1.285659 1.527677 -1.511060 -1.298774 -0.346454 -0.125413 -0.121518 0.809117 0.501272 2.511648 -0.055164 -1.114004 0.787598 -0.412030 0.463446 -0.093597 -0.341757 -1.127847 -0.580120 0.310708 -0.505117 -0.726377 1.441458 -1.288723 1.130606 -2.251079 -1.863599 -0.020597 0.036635 0.150169 -1.850549 0.508474 0.037851 0.001166 0.622553 -0.080291 0.026667 0.530368 1.146026 0.098488 0.582245 -0.955538 0.351250 0.287077 -0.012842 0.796061 0.537483 -1.344252 1.326608 -0.905828 -0.228498 -0.435014 -0.178058 1.047601 0.512766 0.342665 -0.617528 0.903020 0.130832 -1.115109 0.158456 0.397731 -0.110930 -1.200614 -0.288874 0.964593 0.557710 -0.212701 0.185187 0.545171 -0.461395 -0.206420 -0.980677 -1.039366 -1.094798 -0.654703 -0.287667 -0.198945 -0.277032 -0.649468 0.927611 0.493000 0.574447 1.055680 0.537197 -0.391246 -1.075435 -1.750764 0.469915 1.161139 -0.162952 -0.858554 0.629614 -0.902348 0.466845 0.622131 0.615251 -0.712033 0.842070 0.516026 0.671333 -1.274944 -0.017416 1.290869 1.310587 0.288586 -1.265245 -1.190025 -1.788922 -0.069820 1.809044 1.344329 -1.794774 -0.494845 1.309209 0.662004 -1.113211 0.424965 -1.361975 -1.186899 -0.749094 0.584749 0.818759 -1.287276 -0.180465 1.646266 -0.758991 0.535341 0.054826 -0.863013 -0.197519 -1.491632 -0.565672 2.292404 0.176684 0.484991 0.298660 -0.707898 0.714701 -1.403143 -0.046991 1.022627 0.229058 -0.314500 -0.469637 0.078169 1.585945 -0.866530 0.690154 -0.061798 0.136998 0.616076 -1.206476 0.441608 -1.844182 -0.508607 -0.853471 -0.498371 0.255817 -1.239043 -0.803258 0.726357 -0.528526 1.076900 1.749175 -1.363539 -1.105367 0.594860 -0.246100 1.021120 0.103519 -0.197474 0.564840 0.759351 -1.026314 -0.494669 -0.743019 0.533786 -1.281420 1.217902 -1.126173 0.160440 0.137060 -0.829933 -0.540397 0.696284 0.953078 -0.016155 -0.387333 -0.424495 -0.668255 -0.111773 -0.857629 0.589906 0.666443 -0.927915 -1.135091 0.420036 0.523642 -2.374640 -0.596980 0.375573 0.242865 1.552094 -0.821848 0.371447 1.015845 0.429368 -2.171560 -0.862516 -0.518898 -1.087228 -0.503346 -0.804681 -0.870366 -1.851982 -0.317998 0.904474 -0.609959 -1.086302 0.746544 1.233710 0.541082 -0.061166 0.690690 0.390971 0.276681 0.206915 -0.174397 0.264708 0.489202 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.220647 1.016438 0.028362 -1.018565 3.318962 -0.258197 0.581348 1.281831 -0.765461 1.062601 -2.319707 0.083279 -0.096608 -2.318625 0.551812 -0.102831 0.607837 0.551208 -0.496848 0.118468 0.740048 -0.618240 0.068480 -1.312415 -0.108884 -2.058741 -0.407949 0.232583 0.990700 0.216899 -0.487953 0.591189 2.113124 -0.067973 1.195094 1.323694 1.265626 1.502328 0.439324 -0.926613 0.858479 0.858251 -0.550830 -1.994335 0.203427 -1.083209 -1.769970 -0.818274 0.544996 -1.561670 -0.294586 1.349679 0.204026 -0.363233 -1.436643 1.008129 2.035951 -0.430155 1.775820 1.004474 -1.166490 -0.898320 -0.837963 1.495427 -1.031490 0.666382 -0.154352 -1.858451 -0.627123 1.589938 -0.166711 -0.737513 -1.189900 0.021180 0.741053 -1.102719 0.833669 -0.075555 -0.215028 -1.416352 -0.966178 0.724054 -0.570374 1.856304 0.223280 -0.112300 0.201792 -0.375844 0.722395 -1.446381 -0.949357 1.663099 -0.833747 -0.112213 -1.048300 1.083171 0.867794 -0.249854 -0.701389 -1.769213 0.565380 0.079439 0.193034 -0.891379 0.027399 -1.611066 0.495487 0.696348 0.089706 1.714864 0.109455 0.554972 0.278456 0.598022 -1.279683 0.038218 -2.019959 0.663949 -0.571316 -0.062546 -0.653288 -0.124509 1.254760 0.502269 0.915343 -1.940712 1.856582 1.198093 -0.519259 -0.992815 0.490181 -0.561489 -1.404736 0.056115 0.902640 0.243264 0.303068 0.136767 0.564846 -0.421541 -1.016569 -0.474906 -0.738161 2.006937 -2.519473 0.046972 -0.183266 -0.287800 -0.658846 0.783312 0.677231 0.505292 1.985436 0.961981 -0.961024 1.629370 -1.837300 1.092748 3.289008 0.914647 -1.494065 0.973578 -1.270255 0.315567 0.619745 0.446460 0.346298 0.503213 -1.446584 -0.468433 0.328914 -0.782995 1.881278 0.809044 0.806284 -2.337809 1.582731 -0.458076 -0.091501 2.483106 1.214210 -2.391461 1.312260 2.213795 -1.586557 -0.233425 0.538562 -1.444227 -0.750964 -1.403340 0.595586 0.821872 -1.761845 -1.133482 -0.305362 -1.548615 1.589433 0.456798 -0.095895 -0.003801 -0.817658 -0.675679 2.823665 0.207628 0.069854 -0.407700 -0.846427 -1.341257 -2.271673 0.072901 0.530783 -1.358305 -0.404703 -1.391017 -0.555781 2.113487 -1.208971 0.499569 -2.630227 0.617163 0.878974 1.022514 0.490502 -1.320978 -1.016675 0.078908 -0.540561 0.206278 -1.471563 0.870226 1.377234 -1.112790 1.547497 -0.214214 -0.933666 0.586174 1.237387 -0.779017 1.837161 0.037789 2.380185 0.613138 1.637174 -1.320928 -0.187682 -0.557376 -1.152027 -1.100327 1.479842 -2.178020 -0.120765 1.654770 -0.396909 -1.980714 1.171473 0.946324 1.099324 -0.542223 -0.427883 -0.681163 0.064462 -0.621478 0.782131 1.105923 -0.793389 -1.650290 -0.175871 1.610999 -1.040792 -1.030439 0.718644 0.372173 1.893968 -1.576025 1.050115 0.365846 0.621426 -2.183319 -2.212878 0.778398 -1.113831 -0.982856 1.026739 -2.797656 -0.989625 -0.951808 0.807174 -2.137069 -0.522931 0.363708 2.036887 -0.126966 -0.401521 0.953334 0.122920 0.427862 -0.356450 0.620134 0.151222 0.772465 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -3.251702 4.414438 3.258241 -2.773962 6.137526 -0.567925 2.664191 2.206117 -2.176310 2.237326 -6.466410 -0.230722 -0.646735 -5.473027 0.901986 -3.804434 0.810473 1.440987 -0.618200 2.079151 2.214579 -2.325311 -0.508605 -4.166561 -0.271774 -5.656631 -1.079098 -0.165983 2.106847 1.693292 1.783046 1.119432 5.493895 1.022397 4.018952 4.133517 1.343711 4.650185 0.712946 -0.562846 0.865286 2.975449 -1.632849 -5.300447 0.166849 -2.710284 -3.231550 -2.864488 0.533595 -4.411418 -1.777399 3.158065 0.515827 -0.450199 -3.661784 1.753212 5.760564 0.266836 4.224729 2.465542 -2.005259 -0.567011 -2.628065 1.341119 -2.150976 1.275334 0.560223 -3.472725 0.312745 2.498576 -0.533296 -0.939927 -2.247000 0.506201 1.855007 -2.791669 1.985159 -0.776219 -6.139721 -2.559372 -1.553984 1.380974 0.209489 4.557476 0.123709 -0.473993 0.554430 -0.393117 1.896228 -3.580593 -2.724700 4.777200 -1.422880 -1.646358 -2.290496 4.211520 2.972590 0.289783 -1.695758 -3.405413 1.874397 0.354893 0.289497 -2.319220 -2.899846 -4.704687 1.330256 1.973929 -1.496313 4.795770 -0.770846 3.220663 1.590401 1.709739 -4.885377 2.239001 -4.930502 1.555908 -2.183415 -0.159745 -0.229771 -0.443814 1.021692 1.715387 1.917993 -4.238141 4.383779 3.623943 -1.024905 -3.073179 1.310282 -2.464547 -3.597854 -0.737875 1.759032 2.022108 1.034171 -0.357049 -0.048777 -1.546131 0.328687 -3.068953 -0.950297 5.657887 -5.307294 -0.330122 -0.525864 -0.178811 -2.228785 1.878936 1.112160 0.454878 4.558805 2.160903 -2.041049 2.901490 -3.354047 1.081929 7.842936 2.432280 -3.590007 2.280299 -1.497219 0.060512 1.461589 0.507608 1.172599 1.643671 -5.713984 -3.647820 -0.261266 -3.469848 4.422801 3.556281 1.087217 -5.779024 6.888254 -1.441275 -2.131593 5.744477 3.603944 -4.591177 1.451199 4.541662 -6.202790 -2.001550 1.422993 -2.636672 -0.982089 -2.530224 0.524193 0.488263 -3.373661 -3.242576 -1.171787 -4.520717 4.094643 1.316449 1.435889 -1.309318 -1.619588 -4.875437 6.830728 0.352758 -0.902948 -1.122166 -1.111343 -3.196634 -5.510605 0.530419 0.968921 -3.145379 -1.944515 -3.265937 0.163450 3.551072 -3.993247 0.956255 -4.101534 -1.162953 1.647908 2.121445 1.424038 -3.971177 -2.999395 -0.591685 -0.435766 1.449792 -1.799402 3.699090 5.495311 -1.722227 3.538174 -0.345808 -3.335823 1.493178 4.214329 -2.648080 4.148644 -1.480683 5.566824 1.150593 3.785682 -3.264499 -1.675766 -0.235922 -3.572159 -2.132831 3.571222 -4.378236 0.425164 2.689888 -1.909469 -2.783301 3.370293 1.163780 1.970010 -1.306471 1.323499 -3.129753 0.560314 -1.701641 0.624781 3.258758 -0.480133 -4.490155 -0.687729 3.183158 -1.568147 -3.114345 1.135980 0.488253 3.779007 -3.657240 2.402739 0.346640 -0.331780 -4.653613 -5.590141 2.762878 -4.484647 -3.951472 2.193430 -5.525370 -0.686066 -2.581392 1.377273 -5.449693 -2.897604 1.346530 4.664713 0.232252 -1.412405 1.553769 -0.404978 2.835114 -0.050880 1.656368 -0.248350 3.044399 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.911941 0.837804 0.361791 -0.683609 1.981596 -0.180592 0.418371 0.728318 -0.240432 0.754416 -1.661228 -0.338656 -0.192522 -1.525488 0.302196 -0.485551 0.366250 0.434553 -0.310818 0.224063 0.582423 -0.474781 -0.044718 -0.932326 -0.067765 -1.406716 -0.449112 0.117498 0.649173 0.100529 -0.072817 0.384526 1.653320 0.123966 1.171550 1.075016 0.654078 1.192722 0.257809 -0.300447 0.379404 0.795914 -0.504677 -1.423320 0.109028 -0.790927 -1.045795 -0.693843 0.333812 -0.996695 -0.117785 0.934727 0.084140 -0.079146 -0.962972 0.524507 1.330650 0.099082 1.330448 0.682816 -0.712933 -0.163272 -0.738162 0.799124 -0.730428 0.500389 -0.157233 -1.278511 -0.256185 0.791824 -0.001890 -0.522056 -0.781408 0.217998 0.491388 -0.773617 0.641216 -0.128642 -0.574312 -0.969004 -0.772754 0.468194 -0.262250 1.283917 0.039985 -0.119499 0.049475 -0.135418 0.414793 -1.122575 -0.595489 1.178885 -0.624524 -0.167295 -0.432322 0.839166 0.615544 0.067668 -0.483678 -1.088681 0.442236 -0.014575 0.131714 -0.298336 -0.096669 -1.076238 0.390738 0.487620 -0.072662 1.156411 0.228327 0.626387 0.516681 0.569633 -1.082282 0.138594 -1.335414 0.522328 -0.595019 -0.061242 -0.218067 0.067574 0.594309 0.381954 0.721961 -1.338445 1.132178 0.870283 -0.350641 -0.725509 0.316412 -0.661532 -1.078315 -0.139641 0.621434 0.368347 0.193746 -0.143087 0.181981 -0.348017 -0.341579 -0.378490 -0.389910 1.271913 -1.498154 -0.067168 -0.150226 -0.231432 -0.527733 0.645113 0.470078 0.385490 1.418436 0.700783 -0.712559 0.645220 -1.239604 0.520522 2.208416 0.332162 -1.090581 0.735065 -0.706059 0.118959 0.540032 0.402903 0.364733 0.318781 -1.057178 -0.529417 -0.063556 -0.578940 1.365849 0.665658 0.469117 -1.465886 1.358876 -0.272109 -0.431034 1.845228 0.782096 -1.518031 0.556283 1.304391 -1.357249 -0.339799 0.445939 -0.907170 -0.355957 -0.982302 0.309330 0.462623 -1.119532 -0.747180 -0.069277 -1.240061 1.203444 0.283623 0.079176 -0.024764 -0.719076 -0.859705 2.100466 0.169330 -0.056449 -0.335986 -0.521488 -0.671489 -1.567669 0.112632 0.251108 -0.857744 -0.344771 -0.993547 -0.083494 1.326186 -0.832917 0.438144 -1.423220 0.073521 0.573670 0.457007 0.382755 -0.936515 -0.791054 -0.035794 -0.353681 0.285209 -0.824914 0.761954 1.282567 -0.671473 0.950350 0.047648 -0.778498 0.355119 0.926884 -0.761979 1.317273 -0.234333 1.359445 0.349898 1.088166 -0.923707 -0.322479 -0.217333 -0.740981 -0.726525 0.997074 -1.293124 0.023054 0.909066 -0.515899 -1.060443 0.763346 0.449461 0.621291 -0.284157 -0.091291 -0.851683 0.127453 -0.343704 0.400911 0.885901 -0.223920 -1.210388 -0.026350 0.877353 -0.535882 -0.818286 0.378158 0.115739 1.245575 -1.126577 0.533334 0.258168 0.282477 -1.332663 -1.501149 0.469067 -1.000646 -0.735062 0.699729 -1.714433 -0.471438 -0.750743 0.373055 -1.313905 -0.460655 0.361761 1.496640 0.194779 -0.540117 0.537181 -0.007098 0.601165 -0.062536 0.291733 0.045602 0.714840 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.968389 1.009836 -0.040492 -0.878054 2.576683 -0.149311 0.371743 1.410641 -0.755862 0.882229 -1.839766 0.490007 0.068328 -1.784613 0.392282 0.212956 0.291274 0.606191 -0.344767 0.116225 0.674588 -0.459070 0.020627 -1.109654 -0.111637 -1.458881 -0.179500 0.092658 0.598394 0.378544 -0.411046 0.393453 1.500849 0.052633 0.895929 1.064796 0.991252 1.308239 0.485520 -0.235681 0.599555 0.680156 -0.418119 -1.724246 0.406315 -0.950768 -1.165269 -0.757988 0.337396 -1.508770 0.486536 1.027336 0.185163 -0.363416 -1.061363 0.685559 1.578834 -0.462871 1.346016 0.836506 -1.108511 -0.784641 -0.618578 1.178233 -0.749186 0.675700 0.387116 -1.413552 -0.381658 1.167655 0.371556 -0.759534 -0.910038 0.005114 0.287381 -0.827570 0.654193 -0.184424 -0.192074 -0.984434 -0.668233 0.529728 -0.431757 1.422571 0.107091 -0.112772 -0.358762 -0.275837 0.585400 -1.076064 -0.842587 1.371751 -0.557427 0.240989 -1.246752 0.813998 0.606049 -0.164370 -0.502210 -1.166902 0.523364 0.403871 0.180366 -0.694181 -0.341795 -1.296922 0.678761 0.596201 -0.157659 1.209554 -0.038078 0.475454 0.151509 0.472611 -0.753628 0.405186 -1.722862 0.508118 -0.121252 0.109455 -0.430473 -0.225836 0.949556 0.171356 0.609681 -1.372689 1.516121 0.880478 -0.478395 -0.917919 0.491059 -0.455266 -1.073332 -0.021139 0.675084 0.285792 0.128788 0.124518 0.325155 -0.424728 -1.122549 -1.054324 -0.599057 1.704952 -1.985928 0.007739 -0.208004 -0.220162 -0.530935 0.554751 0.462682 0.315510 1.522353 0.780365 -0.455222 1.114479 -1.318144 0.769094 2.515948 1.319531 -1.211644 0.665942 -0.819589 0.276506 0.530469 0.199739 0.212687 0.591177 -1.214762 -0.476665 0.356387 -0.760620 1.442504 0.887277 0.752925 -1.803309 1.284534 -0.270267 -0.163479 2.024971 1.039450 -1.784751 0.874116 1.623212 -0.856841 -0.120663 0.351012 -0.936075 -0.661784 -0.746314 0.385852 0.533674 -1.387195 -1.149256 -0.307874 -1.238212 1.364231 0.340938 0.231142 -0.147443 -0.806414 -0.159316 2.090130 0.203396 -0.170484 -0.212756 -0.525179 -1.180066 -1.689550 0.138779 0.682896 -0.970564 -0.542878 -1.043057 -0.409230 1.579129 -1.059034 0.125263 -1.802627 0.155463 0.658726 0.413165 0.411904 -1.626873 -0.792555 -0.138936 -0.098530 0.482448 -0.878613 0.761589 1.360979 -0.816455 1.175263 0.527543 -0.095724 0.357937 1.189121 -0.544440 1.364033 -0.130152 1.777856 0.400282 1.251845 -1.022011 -0.181696 -0.452472 -0.458472 -0.648234 1.206049 -1.581052 -0.059166 1.116003 -0.531343 -1.228741 1.036147 0.720774 0.861788 -0.406976 -0.278932 -0.366143 -0.112076 -0.746374 0.391026 0.953658 -0.742996 -1.410056 -0.256187 1.055356 -0.925636 -0.538967 0.584982 0.398717 1.499493 -1.190954 0.941830 0.239114 0.163301 -1.881472 -1.580380 0.575609 -0.751240 -0.997047 0.735952 -2.183441 -0.828352 -0.745230 0.691616 -2.026966 -0.333194 0.030984 1.487214 -0.067605 -0.059529 0.810848 0.096869 0.561464 -0.150164 0.504739 0.080080 0.830630 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.656330 -0.290495 0.451960 -0.205820 2.392075 -0.754866 0.180428 1.874768 0.823032 0.516139 -0.907902 -0.400666 -0.211616 -0.362970 0.475693 -0.253793 0.461977 0.931270 -1.040415 -1.019280 0.456909 1.636175 -0.260482 -0.258673 -0.175845 -0.365793 -0.814584 0.269265 -0.662842 0.116226 -0.887032 1.089173 1.755118 -0.266454 1.383998 0.939250 1.735414 0.877123 -0.352210 1.561973 1.234016 0.205388 -0.295115 -1.019036 0.203116 -0.515521 -1.282639 -0.122676 0.377239 -1.025354 1.688821 0.564266 0.341912 0.475970 0.373539 0.732881 -0.573668 -0.056872 0.677671 0.945484 -2.317182 0.525837 -0.808280 2.149653 -0.540314 1.847556 -0.757897 -2.184613 -1.539048 1.067949 1.470563 -1.521631 -1.157481 -0.091705 -0.105193 -0.157537 0.787827 0.466019 2.392288 -0.116780 -1.207605 0.757085 -0.415173 0.443195 -0.096762 -0.284101 -1.103729 -0.459943 0.134426 -0.682684 -0.503354 1.459305 -1.354131 1.131602 -2.243001 -1.866074 -0.128437 0.197947 0.113958 -1.744878 0.509299 -0.001753 0.054391 0.554918 0.044084 0.033037 0.461500 0.964785 0.230718 0.550079 -0.816766 0.314259 0.446265 0.192605 0.732159 0.509502 -1.217966 1.380958 -0.945339 -0.174907 -0.430582 -0.037762 1.007840 0.516509 0.483525 -0.706874 0.691018 0.037574 -1.063582 0.027039 0.319929 -0.252389 -1.131680 -0.368735 1.002612 0.467263 -0.271702 0.004935 0.525751 -0.371539 -0.271604 -0.962568 -0.942806 -1.142387 -0.655280 -0.265770 -0.226477 -0.313493 -0.626453 1.000360 0.606370 0.760338 1.059467 0.597511 -0.356251 -1.104363 -1.786031 0.372716 1.043008 -0.189269 -0.884102 0.735694 -0.972149 0.377113 0.624556 0.707986 -0.558018 0.814528 0.544628 0.628005 -1.172663 0.226659 1.338909 1.289332 0.274760 -1.065162 -1.234080 -1.775583 -0.240232 1.765657 1.247067 -1.736558 -0.506955 1.079066 0.694173 -1.046055 0.493113 -1.450772 -1.134514 -0.744591 0.513053 0.898809 -1.231581 -0.049740 1.787516 -0.778842 0.596071 -0.014585 -0.796968 -0.077035 -1.565829 -0.603068 2.207208 0.209844 0.450605 0.183187 -0.764504 0.697865 -1.269675 -0.011171 0.950073 0.318127 -0.349959 -0.538717 0.054630 1.511785 -0.596916 0.815155 -0.104501 0.105518 0.622340 -1.304883 0.484128 -1.822353 -0.455859 -0.886684 -0.527949 0.296024 -1.180808 -0.724981 0.758312 -0.526943 1.053237 1.697088 -1.342011 -1.106205 0.451462 -0.401349 1.041418 0.128633 -0.277334 0.525516 0.686749 -0.995566 -0.444731 -0.677363 0.645389 -1.186856 1.143175 -0.923378 0.118070 0.025021 -0.956326 -0.496146 0.456318 0.838922 -0.128633 -0.267422 -0.473742 -0.768156 -0.169336 -0.887670 0.589145 0.689634 -0.902696 -1.003280 0.591560 0.288069 -2.194321 -0.523550 0.337184 0.240477 1.447299 -0.872402 0.161695 0.969625 0.464525 -2.043014 -0.842217 -0.637290 -1.065135 -0.495981 -0.778249 -0.817055 -1.689925 -0.363332 0.727003 -0.588291 -1.063230 0.762702 1.329095 0.569009 -0.170310 0.676913 0.345957 0.330745 0.237103 -0.174888 0.278135 0.512271 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -2.937007 2.006441 1.829018 -0.801934 4.068311 0.362506 1.712003 2.113656 -2.445825 2.887705 -4.140979 -1.318448 -1.814970 -3.456378 -0.087149 -2.280439 1.216560 -0.140684 -0.831370 1.244582 1.754169 -2.080995 -0.085982 -2.190858 -0.383804 -3.428532 -1.402383 -0.156308 3.808530 -0.302702 0.158561 0.013956 5.692880 0.739276 4.959732 2.982720 1.080811 3.382800 0.715321 -1.681506 -1.278435 3.645920 -2.606771 -2.989641 -0.366419 -3.046473 -1.912168 -0.860231 1.104657 -1.199683 -1.695047 2.659274 -0.429096 1.281758 -2.115972 1.483152 3.343688 0.382971 5.027959 0.797472 -1.774921 -0.359955 -2.553729 1.501938 -1.272040 0.938533 -1.333132 -2.270931 0.689679 -0.775339 -1.062993 -2.323580 -0.781879 2.939324 1.586782 -2.797279 1.871162 -0.550879 -3.902998 -4.214726 -3.177646 0.647372 -0.074325 3.424663 -0.334157 -0.053801 1.137059 0.959480 0.376137 -5.053864 -0.188296 3.553074 -2.938521 -1.277353 -0.587181 2.700300 -0.087286 2.443999 -2.349717 -2.098386 1.117720 -0.079850 0.342749 -3.180717 1.033145 -3.417225 0.583164 -0.560542 0.001900 2.859619 1.982423 2.011553 3.457610 3.714207 -4.115263 0.022356 -2.762744 1.114808 -1.785280 -0.146970 0.047689 1.596500 0.913247 0.890895 3.787690 -4.944620 1.340100 1.892079 -0.890030 -3.938336 -0.056684 -4.113965 -3.352167 -0.861959 1.792384 1.061068 0.773212 -2.953030 0.339657 -0.878827 -1.065350 -1.055824 0.582219 3.291855 -4.698251 -0.802306 -0.432726 -0.464155 -1.855500 3.042060 1.673921 1.815592 3.872825 2.206833 -2.237686 2.242090 -3.218820 0.183040 5.540155 0.108145 -3.903160 2.741006 -2.989472 -0.096796 2.095561 1.482439 2.879904 0.236606 -3.665170 -2.263785 1.997924 -0.333036 4.519860 1.220299 1.505503 -2.117935 5.089838 -0.845288 -3.161640 4.995583 1.588302 -4.183226 1.887163 1.528290 -2.902361 -0.213324 1.796613 -3.258573 -0.286703 -3.214276 -0.444283 1.199692 -2.293706 -0.282518 0.961021 -4.328497 4.966562 0.599055 0.991329 0.885727 -2.925254 -3.441040 5.135110 0.323419 -0.384073 -2.039685 -1.571224 -2.822065 -4.270542 0.637590 -0.509514 -1.978485 -1.440091 -3.900318 0.890837 2.760472 -0.619661 2.927050 -4.850430 -1.034508 1.095410 0.869657 2.273088 -2.061386 -2.529300 -0.605458 -1.415443 2.280324 -2.742901 3.669199 4.899849 -1.617247 3.333950 -1.543358 -2.979565 0.737821 1.649492 -3.794450 3.527285 -1.064124 3.306061 -0.079491 2.980850 -2.826769 -1.099888 0.047762 -0.941867 -1.350431 1.935134 -2.119736 0.056932 0.571828 -3.061820 -2.006941 0.451354 -0.957393 0.713598 0.024404 0.131800 -3.975583 0.160103 -1.990955 0.701923 3.002772 0.135451 -3.097572 0.918334 -0.047970 0.261547 -0.584769 0.159213 -0.550033 2.425729 -3.643655 -1.572411 0.322005 0.242852 -2.171667 -4.817600 -0.146313 -3.059554 -2.582898 3.389757 -3.628590 0.871981 -2.616172 -1.184882 -4.252075 -1.693163 1.245438 5.162039 1.324373 -3.041443 1.028990 -0.322788 3.251084 0.411032 1.275907 -0.207917 1.690439 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -1.362049 1.284414 0.399179 -0.849173 2.406578 0.199303 0.404724 1.125035 -1.102380 1.579595 -2.258519 -0.209330 -0.477938 -1.907257 0.096562 -1.152434 0.259502 -0.033468 -0.450836 0.305753 0.839327 -0.940038 -0.034388 -1.157024 -0.241610 -2.086695 -0.464385 0.043528 1.584120 -0.009861 -0.022208 0.125815 2.306057 0.152414 1.843924 1.383186 0.992847 1.740726 0.068370 0.093330 -0.064035 1.399687 -1.056812 -1.741218 -0.174235 -1.302156 -1.498025 -0.821816 0.564959 -1.312843 -0.319862 1.460306 -0.082909 0.091937 -1.130793 1.143779 1.605611 -0.515318 2.253218 0.671125 -1.255310 -0.732185 -1.344470 1.664486 -0.796918 0.790380 -0.159276 -1.392583 0.095944 0.341086 -0.352322 -0.677185 -0.560156 0.982309 0.729984 -1.358722 0.768610 -0.509188 -2.002535 -1.400528 -1.102131 0.660270 0.064271 1.709590 0.128994 -0.057041 0.262834 0.259181 0.200979 -2.138323 -0.432746 2.190686 -1.042449 -0.516359 -1.589048 1.365200 0.261722 0.607262 -0.865450 -0.998858 0.553584 0.322542 0.252901 -2.103502 -0.216131 -2.091807 0.612384 0.404025 -0.093490 1.054879 0.579023 0.599374 1.053379 1.477523 -1.710835 0.565297 -1.644239 0.605820 -0.211106 0.071523 -0.398420 0.367389 0.367453 0.613593 1.542776 -2.193902 1.215828 0.859808 -0.808887 -1.745285 -0.079257 -1.479825 -1.570184 -0.250843 0.771951 0.497838 0.295036 -0.828301 0.279633 -0.447504 -0.800188 -1.134027 0.010094 1.653192 -2.183393 -0.264380 -0.208099 -0.042789 -0.951016 1.474515 0.803108 0.734359 2.070452 0.969329 -0.511661 1.533320 -1.676028 0.538832 2.953732 1.390731 -1.890553 1.274954 -1.493067 0.230461 0.764010 0.602820 0.944573 0.714506 -1.920585 -0.964076 0.508083 -0.545247 1.994713 1.002541 0.740026 -1.242021 2.279150 -0.424247 -1.089164 2.396203 1.501380 -1.921054 0.901623 1.254588 -1.693828 -0.285550 0.998419 -1.455660 -0.469679 -1.261663 0.146127 0.685170 -1.212903 -0.669584 0.031924 -1.940979 2.188084 0.293532 0.642206 0.139365 -1.404508 -1.398509 2.286557 -0.117945 -0.262778 -0.854993 -0.614875 -1.936820 -2.081575 0.280460 0.362172 -1.137999 -0.917756 -1.775685 0.074184 1.435356 -0.735581 1.024136 -1.953984 -0.412832 0.760978 0.807944 1.154141 -1.343702 -1.108047 -0.368270 -0.413009 1.077565 -1.295274 1.510704 2.192053 -0.806998 1.994349 -0.572902 -1.265577 0.177671 1.148477 -1.493398 1.953593 -0.302622 1.437724 0.151236 1.479622 -1.381864 -0.413242 -0.186625 -0.656628 -0.479681 1.112601 -1.414936 -0.030500 0.474543 -1.427669 -0.929730 0.720735 0.082809 0.512636 -0.139681 -0.013909 -1.307629 -0.248628 -1.154116 0.354749 1.411556 -0.302258 -1.526494 0.234115 0.361128 -0.403330 -0.439743 0.327262 0.154988 1.485826 -1.725111 -0.027276 0.160031 -0.047653 -1.818852 -2.248037 0.088416 -1.237988 -1.594400 1.330639 -2.121591 -0.137463 -1.190697 -0.078741 -2.548216 -1.112317 0.436627 2.309402 0.379818 -0.985385 0.630945 -0.095068 1.377405 0.068852 0.568640 0.248807 0.839789 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.945024 0.473026 0.128270 -0.532241 2.338965 0.292367 0.087734 1.450311 -0.412444 1.150927 -1.480988 0.033124 -0.319474 -1.099625 0.145513 -0.150439 0.216518 0.093515 -0.698582 -0.308579 0.597289 -0.116668 0.114212 -0.682134 -0.149023 -1.389458 -0.493353 0.101734 0.896003 0.247186 -0.716563 0.127367 1.655133 -0.149045 0.912896 0.803701 1.346151 1.127908 -0.020899 0.236460 0.328712 0.858871 -0.699100 -1.068995 0.236237 -1.215785 -1.152906 -0.189664 0.534068 -1.093877 0.436281 0.957328 0.018548 0.008064 -0.438855 0.939695 0.816704 -0.387494 1.539807 0.546849 -1.258710 -0.996316 -0.926646 1.619188 -0.601675 1.044864 -0.243083 -1.436051 -0.652074 0.508989 0.163585 -0.832057 -0.693331 0.522703 0.349709 -0.793100 0.657568 -0.207919 0.156700 -0.941031 -0.917471 0.427183 -0.305840 1.121302 -0.013289 -0.093070 -0.166901 -0.017915 0.181354 -1.432946 -0.402914 1.555819 -0.936328 0.440539 -1.584742 0.074402 -0.087463 0.366086 -0.598369 -0.885846 0.316883 0.480241 0.165838 -1.323073 0.120584 -1.238402 0.670310 0.336960 0.188232 0.672495 -0.051267 0.207614 0.427074 0.943804 -0.687639 0.328257 -1.295458 0.523110 -0.146105 0.152194 -0.453739 0.191727 0.662829 0.297749 1.063592 -1.465795 0.941667 0.373533 -0.906694 -1.029803 0.130966 -0.850695 -1.171535 0.015588 0.656504 0.209749 -0.003507 -0.480123 0.502757 -0.390092 -1.103384 -0.799097 -0.262062 0.756296 -1.634552 -0.181496 -0.165291 -0.183168 -0.587209 1.045327 0.695248 0.577843 1.502362 0.789726 -0.308876 0.872408 -1.395633 0.592840 1.945277 0.994491 -1.363830 0.775544 -1.254645 0.358632 0.682879 0.400138 0.384604 0.855629 -0.678635 -0.072407 0.207178 -0.112670 1.628141 0.900418 0.751430 -1.150463 0.694379 -1.027811 -0.348968 1.631288 1.314658 -1.733983 0.621895 0.963063 -0.400504 -0.002041 0.530276 -1.141637 -0.495536 -0.916721 0.163207 0.849977 -1.081475 -0.541402 0.401414 -1.254223 1.662717 0.128536 0.338565 0.360274 -1.269187 -0.671800 1.697745 -0.009059 -0.067181 -0.386335 -0.553622 -1.212652 -1.515932 0.174247 0.512865 -0.819064 -0.637666 -1.211380 -0.139114 1.364550 -0.434349 0.709249 -1.826392 0.020267 0.584299 -0.059922 0.897779 -1.042261 -0.727597 -0.555286 -0.430347 0.845864 -1.245205 0.617681 1.306840 -0.710184 1.516470 -0.042097 -0.601272 -0.184678 0.710366 -0.762473 1.338642 0.026999 0.954141 0.077041 1.118781 -0.972318 -0.091869 -0.396458 -0.150210 -0.484346 1.031716 -1.156862 -0.081758 0.516348 -1.099348 -0.795492 0.539092 0.285106 0.391446 -0.115102 -0.227019 -0.747392 -0.290367 -0.810319 0.306461 0.950039 -0.636631 -1.098270 0.108422 0.191022 -0.907344 -0.236050 0.358148 0.203353 1.275111 -1.192956 0.004579 0.362824 0.044502 -1.690456 -1.502938 -0.371140 -0.668536 -1.015901 0.774580 -1.713926 -0.609096 -0.838971 0.161314 -1.622573 -0.689697 0.308011 1.701241 0.348198 -0.418293 0.730029 0.198021 0.840787 -0.055004 0.340037 0.384542 0.410803 +PE-benchmarks/dfa-based-division.cpp__main = -0.970937 0.062671 -0.159582 -0.322962 2.063831 0.022580 0.142851 1.141987 -0.169976 0.980471 -1.187274 -0.716234 -0.525149 -1.129979 0.163118 -0.015590 0.449978 0.300774 -0.689127 -0.157511 0.674848 -0.109314 0.105484 -0.491495 -0.074326 -0.770917 -0.633587 0.184724 0.946278 -0.226732 -0.730224 0.183517 1.841844 -0.066610 1.366038 0.806765 1.023433 1.073635 -0.082961 -0.359172 0.063236 1.083261 -0.781013 -1.158678 0.189059 -1.072963 -1.055531 -0.313486 0.644623 -0.645322 0.288390 0.916675 -0.080787 0.263475 -0.375374 0.601549 0.800901 0.033211 1.584932 0.487648 -0.993752 -0.253958 -0.924383 1.338602 -0.572046 0.903400 -0.590968 -1.526070 -0.685074 0.192730 0.182209 -1.023051 -0.805437 0.719582 0.486657 -0.689249 0.815273 -0.081788 0.699244 -1.338539 -1.336724 0.234315 -0.696620 1.106795 -0.248979 -0.118028 -0.017149 -0.010073 0.071623 -1.502940 -0.152332 1.148990 -1.083967 0.313020 -0.738999 0.008471 -0.239028 0.575875 -0.828318 -0.975747 0.242810 0.099388 0.226034 -0.394205 0.798194 -0.645195 0.329104 0.150973 0.501742 0.854441 0.697655 0.275085 0.743940 1.031291 -0.697701 -0.100593 -0.966689 0.615593 -0.739772 0.199928 -0.254012 0.569960 0.895311 0.190576 1.162537 -1.524407 0.634452 0.413604 -0.570826 -0.801785 0.174882 -1.023675 -1.194820 -0.200198 0.820623 0.109049 -0.108027 -0.723696 0.485490 -0.186017 -0.968870 0.026695 -0.324587 0.277028 -1.463659 -0.213663 -0.266331 -0.446430 -0.383536 1.021792 0.672449 0.779340 1.420076 0.878198 -0.773589 0.360215 -1.456852 0.579652 1.889513 -0.101751 -1.317373 0.776472 -1.168208 0.303134 0.886425 0.643486 0.666022 0.396792 -0.228294 0.161617 0.072250 0.206420 1.625764 0.539373 0.716069 -1.091330 0.463725 -0.627972 -0.521599 1.917467 0.703739 -1.760251 0.569797 0.625353 -0.548445 -0.002179 0.400312 -1.075990 -0.424744 -1.285543 0.367429 0.866700 -1.069144 -0.356293 0.665820 -1.292871 1.467932 0.008676 -0.171754 0.516396 -1.362608 -0.415083 1.996515 0.253450 -0.064480 -0.556390 -0.696798 -0.565036 -1.439338 0.268751 -0.016263 -0.517574 -0.465537 -1.196971 -0.028326 1.456583 -0.073643 0.805473 -1.695728 0.226653 0.534630 -0.092928 0.782989 -0.897480 -0.747335 -0.342761 -0.624915 0.617087 -1.158227 0.349568 1.275428 -0.873729 0.943855 0.155998 -0.758109 -0.098507 0.534244 -0.970265 1.331502 -0.038655 0.910945 -0.054321 1.011818 -0.884314 -0.129048 -0.290137 0.063178 -0.598311 0.904929 -0.875886 -0.061609 0.507183 -1.003467 -0.934454 0.259599 0.120770 0.403156 0.085507 -0.560199 -1.169676 -0.019001 -0.369852 0.329150 1.038000 -0.343747 -1.120325 0.280696 0.014703 -0.546554 -0.433153 0.273528 -0.021755 1.246762 -1.208533 -0.234146 0.367881 0.390050 -1.103055 -1.342410 -0.387447 -0.694153 -0.522613 1.082911 -1.336923 -0.382990 -0.856479 0.023190 -1.070401 -0.468617 0.308147 1.701548 0.570111 -0.726511 0.699067 0.177239 0.895057 0.022271 0.096023 0.256884 0.494957 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -2.834859 2.229953 0.264766 -1.464112 2.531645 -0.437651 1.074975 2.369496 0.652878 1.967287 -4.618797 -3.055058 -1.334565 -3.060278 -0.011873 -1.946918 1.256542 0.963350 -1.339008 0.612552 1.870748 -0.687705 -0.370843 -2.520921 -0.369829 -1.119686 -1.662667 -0.229999 1.398608 -0.648350 0.322266 0.570569 6.220767 0.887146 5.290386 3.340942 1.924344 4.180090 1.259528 1.371341 -0.364399 3.570257 -2.092444 -3.087863 -0.316062 -2.700711 -1.695777 -1.603748 0.544487 -1.878582 3.104229 2.477699 0.571148 1.299354 -2.083193 1.111710 3.285179 0.288001 4.730351 1.453828 -2.265637 1.569027 -1.337577 2.365069 -1.531093 2.162119 -0.310378 -2.033188 0.077202 -0.245838 1.011869 -3.260249 -2.419547 1.857033 0.859777 -2.561682 2.420057 -0.565475 -0.998054 -3.798559 -3.001685 1.210157 0.198517 3.036450 -0.811144 -0.484368 -0.809604 0.523807 0.305243 -3.864664 -0.583770 3.227900 -2.579658 -0.595028 -1.924243 1.844059 -0.435840 2.134420 -2.644892 -2.472149 1.151569 0.144076 0.299621 -1.245104 -0.176237 -2.213868 1.337542 1.370214 -1.549959 3.152736 2.894966 2.757622 3.899378 2.840564 -2.522774 1.313031 -3.905632 1.017866 -1.320456 -0.639931 1.061282 0.557369 0.867233 0.628938 2.243089 -3.974946 1.930755 2.299567 -2.037190 -2.498813 0.123323 -3.307286 -3.884672 -1.130657 1.753372 2.015006 0.756244 -2.224756 0.067861 -1.215106 -0.172410 -2.658228 0.121534 1.831139 -2.828040 -1.276935 -0.409714 -0.485296 -2.000590 2.924808 1.035492 0.320644 3.969869 1.326319 -1.946754 -0.428202 -2.769961 -0.323700 4.209114 0.355716 -3.795682 2.315699 -2.105017 0.065394 2.041518 1.904137 1.328703 0.184090 -2.903519 -1.560250 0.366444 -1.242414 3.931046 0.036242 0.842729 -2.796546 4.461993 -0.112076 -2.873391 6.584519 2.783659 -3.337747 -1.373321 1.690687 -1.761008 -1.153627 2.376284 -2.712363 -1.473137 -2.164775 0.140263 0.428825 -2.137558 -0.830539 1.432494 -4.056842 3.857062 0.432326 -0.511623 -0.671883 -4.376256 -1.642009 5.859185 0.186516 -0.374743 -0.394450 -1.281138 -0.494298 -4.715411 0.956588 0.861564 -0.595401 -1.639842 -2.618396 2.029303 2.522649 -1.600996 1.756552 -2.547706 -2.018914 1.544187 -0.805935 1.893313 -3.287435 -2.638035 -0.794736 0.267067 2.726496 -1.893628 3.054321 5.144784 -1.155992 2.768163 1.675173 -2.429883 -0.193774 2.305670 -3.573619 3.596394 -1.403076 1.558127 -0.067257 2.457902 -2.824318 -1.784173 -0.349733 0.717594 -1.846122 1.683472 -2.166440 0.508126 -0.661358 -2.479456 -0.706210 1.246366 -0.536361 -0.703962 -0.116819 0.367729 -2.978754 -0.332892 -2.097513 0.108461 3.081416 0.971034 -3.045247 0.790945 0.118588 -0.493395 1.438714 -0.308881 -0.460566 3.372401 -3.337552 -0.734200 0.651678 -0.252609 -2.755215 -3.887037 -0.020985 -2.641127 -1.577552 1.941292 -2.328835 -1.140261 -2.203586 -0.245814 -3.203041 -1.242506 1.643047 4.616076 2.454373 -3.110269 0.174267 -0.153921 3.899901 1.221335 0.157291 0.234663 2.257734 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -2.200332 1.127755 0.845188 -0.945861 3.146595 -0.314302 1.069306 0.817026 -0.407285 1.996053 -3.171246 -1.806854 -1.327759 -2.813785 0.092678 -1.498983 0.999055 0.481338 -0.770291 0.658745 1.419323 -1.339463 -0.106957 -1.578523 -0.191977 -2.435744 -1.248707 0.211281 2.068043 -1.025789 -0.161835 0.533810 4.400921 0.549613 3.674912 2.482571 0.878367 3.019567 0.356201 -0.916337 -0.311183 2.630532 -1.636951 -2.650045 -0.098299 -1.902237 -1.702137 -1.510097 0.996467 -0.905804 0.098093 2.102370 -0.264477 0.678109 -1.998299 0.928549 2.583919 0.673497 3.699926 0.940755 -1.081484 0.741726 -1.935512 1.689557 -1.525040 0.768130 -0.736003 -2.207223 0.175219 -0.008238 0.172143 -1.682068 -1.594799 1.600280 1.232056 -1.982689 1.303562 -0.423405 -2.100638 -3.147688 -2.656200 0.555378 -0.257481 2.647838 -0.346720 -0.187752 0.335097 0.420234 0.296634 -3.307580 -0.390647 2.572614 -1.843694 -0.527369 -0.449931 2.108681 0.117647 1.142174 -1.935437 -1.764894 0.700385 -0.502190 0.436960 -0.784758 0.638018 -1.873520 0.694658 0.172940 -0.103992 1.713733 2.037026 1.389386 2.417965 2.174400 -2.546305 0.147765 -2.550328 1.085031 -1.080364 -0.253290 0.243054 1.122306 0.387637 0.440162 2.561121 -3.458029 1.323065 1.415918 -0.951014 -2.236641 0.060009 -2.413247 -2.572256 -0.835609 1.558235 0.965309 0.412397 -1.637460 0.188832 -0.537270 -0.534660 -0.411953 0.067925 2.244299 -2.521772 -0.462768 -0.444438 -0.763369 -1.275491 2.036108 1.153267 1.325968 3.185365 1.790471 -1.721748 0.470687 -2.792702 0.277915 4.026343 -0.165654 -2.827145 1.973824 -1.718243 0.064052 1.613983 1.659168 1.838333 -0.454573 -2.033921 -1.073912 0.344111 -0.496081 3.329806 0.592923 0.929726 -1.623204 3.222014 0.061482 -1.940749 3.966894 1.330064 -3.006593 0.852518 1.531822 -2.391830 -0.769065 1.475592 -2.003100 -0.404863 -2.418573 0.507619 0.932720 -1.849959 -0.415426 0.583326 -3.115028 3.219197 0.208478 0.222775 0.707187 -2.508747 -2.711250 4.268797 -0.098463 -0.152939 -1.227224 -1.361793 -1.155269 -3.402638 0.551392 -0.397903 -1.385662 -0.908683 -2.632818 0.820559 2.501326 -0.765288 1.851012 -2.436643 -0.672487 1.155014 0.708799 1.339654 -1.305144 -1.859261 0.100970 -0.611861 1.282301 -1.657975 2.138052 3.508659 -1.394814 1.680581 -0.151415 -1.857238 0.644387 1.549199 -2.801233 2.981685 -0.889597 1.845273 0.034656 1.992501 -1.909338 -1.013121 0.116800 -0.278660 -1.354871 1.390916 -1.790824 0.154296 0.507657 -2.037364 -1.508620 0.739762 -0.090440 0.513145 0.114820 0.006669 -2.652618 0.302819 -1.097052 0.614884 2.241411 0.478953 -2.131803 0.770287 0.446445 -0.069738 -0.220602 0.191902 -0.236151 2.296024 -2.677418 -0.509300 0.262713 0.487788 -1.568686 -3.650329 0.211237 -2.555861 -1.518431 2.419302 -2.867228 -0.116553 -2.007713 -0.190979 -2.526640 -0.732861 0.907674 3.749260 1.511227 -2.010388 0.799805 -0.222420 2.208546 0.128952 0.244670 0.258554 1.633468 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -7.660312 3.395139 3.053174 -3.617044 11.712210 -1.283741 3.721726 4.537836 -2.048665 6.747867 -11.261031 -6.112298 -4.900806 -9.954805 0.330832 -5.061934 4.291100 1.801679 -3.426594 2.490892 5.090907 -3.706612 -0.023056 -5.524246 -0.800614 -7.305345 -4.579387 0.787505 6.476381 -3.346481 -0.478980 1.984239 16.122228 2.122852 13.162065 8.570866 3.216408 10.836875 1.451067 -3.243794 -0.808184 9.231110 -5.725640 -9.300978 -0.411062 -6.967227 -6.356241 -5.000897 3.548748 -3.840785 -0.099460 7.393051 -0.491088 2.732637 -6.719968 3.264821 8.855937 1.717641 12.985318 3.674105 -5.028468 2.453224 -6.660596 5.359508 -5.149795 3.463149 -2.834781 -7.998947 -0.164328 0.309355 1.303193 -7.016697 -6.245687 5.131791 3.982529 -6.838752 5.278013 -1.058875 -5.815131 -11.608713 -9.456528 2.320623 -1.224986 9.266688 -1.288074 -0.636550 1.011708 1.137351 1.001903 -11.851099 -1.124617 8.542389 -6.973709 -1.950719 -2.648729 6.784543 -0.756748 4.190928 -7.378405 -7.155282 2.732195 -1.719236 1.412165 -3.079660 2.622594 -6.172114 2.327283 1.273296 0.021393 6.346815 7.236226 5.329066 8.772642 7.750214 -8.767500 0.956527 -9.400897 4.267767 -4.965048 -1.086832 0.376645 3.942081 2.268519 1.970681 8.949000 -12.232690 4.987425 5.614673 -4.093768 -7.726343 0.657721 -8.550776 -9.489966 -2.851799 5.898354 3.080760 1.789288 -5.896395 1.151402 -2.417789 -1.751973 -1.078191 -0.590982 7.181618 -9.561880 -1.841224 -1.462920 -2.646968 -4.228241 7.581562 4.066465 4.559348 11.523474 5.729379 -6.891315 1.092895 -10.263414 1.159193 14.531204 -0.218407 -9.828385 7.084808 -5.726023 0.556398 5.896475 5.891921 6.352189 -2.009693 -6.856458 -3.658028 1.159051 -1.408380 12.112513 2.188592 3.744261 -6.424331 10.658542 -0.922507 -6.204534 14.253963 5.203377 -10.635882 2.540526 5.609083 -7.223704 -2.799786 4.932934 -7.504945 -2.154042 -8.365257 1.631459 3.523115 -6.842026 -1.871833 2.647641 -10.958679 11.190016 0.784346 -0.020988 2.155630 -9.384614 -8.922766 15.403920 -0.016968 -0.436780 -3.960290 -5.172450 -3.547108 -12.523659 2.004667 -1.176855 -4.315731 -2.533790 -9.156808 2.576903 8.581140 -2.631575 6.201216 -9.117086 -1.953295 4.409555 1.268052 4.969571 -5.238070 -6.627712 0.226850 -2.966993 4.784394 -6.638730 7.018212 11.995575 -4.918051 6.366828 0.317676 -6.240851 1.783445 5.307040 -9.809215 10.921514 -3.081445 7.820115 0.311508 7.333222 -6.975982 -3.536018 -0.205458 -0.812793 -5.222405 5.506975 -6.908200 0.463420 1.762983 -6.815379 -5.917911 2.590722 -0.327860 1.033455 0.246826 -0.163685 -9.674297 1.004965 -3.721765 2.707768 8.075297 0.826894 -8.189034 2.578592 2.143370 -0.634496 -0.722086 0.748683 -0.640595 8.603843 -9.569312 -1.784222 1.262778 2.272688 -6.028112 -12.963047 1.101107 -8.858140 -5.091755 8.318998 -9.904948 -1.184173 -6.968107 -0.313557 -8.489513 -2.369553 3.751246 13.307827 4.878813 -7.623948 2.585262 -0.432478 7.676435 0.348918 1.139661 0.505031 5.622643 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = -0.281268 -0.140242 -0.236793 -0.357015 0.942361 -0.232215 -0.318852 0.921181 0.487206 0.296256 -0.523604 -0.057832 0.071933 -0.570123 0.059966 0.090754 0.303558 0.193666 -0.370887 -0.024711 0.155308 0.099758 0.064443 -0.255080 -0.098215 -0.210298 -0.030896 0.155524 -0.122113 0.019607 -0.221154 0.220170 0.644910 0.162819 0.634837 0.242409 0.408303 0.402710 0.185158 0.363801 0.371836 0.038325 0.076335 -0.471531 0.010809 -0.229211 -0.575424 -0.105758 0.080222 -0.613030 0.461969 0.333562 0.116282 0.059160 -0.214484 0.131142 0.095831 0.017865 0.400826 0.286849 -0.883661 -0.217864 -0.250999 0.357278 -0.239462 0.180701 0.103405 -0.464322 -0.204762 0.584569 0.097016 -0.333604 -0.187433 -0.055512 0.223892 -0.180505 0.427705 0.053080 0.710459 -0.149595 0.002345 0.290795 -0.094182 0.220828 -0.009433 0.167722 -0.101983 -0.177254 -0.063824 -0.419928 -0.022516 0.244096 -0.606599 0.150207 -0.486677 0.243518 0.007329 -0.046010 -0.201217 -0.587854 0.192055 -0.029863 -0.046535 -0.001171 -0.080132 -0.233962 0.511048 0.256300 0.093102 0.300394 -0.084085 0.243633 0.200365 0.248441 -0.135221 0.371208 -0.568138 0.192208 -0.296952 -0.012279 -0.227859 -0.137902 0.587729 0.435095 0.179371 -0.396924 0.592576 0.426378 -0.119373 -0.170712 0.135590 -0.205560 -0.330785 -0.008971 0.299122 0.010599 0.194345 -0.044841 0.171070 -0.172215 -0.375826 -0.163916 -0.249925 0.027714 -0.277768 0.023587 0.096376 0.024942 -0.186038 0.223544 0.282452 -0.064428 0.549392 -0.108954 -0.259335 -0.089492 -0.454985 0.196128 0.826945 -0.132833 -0.399760 0.429813 -0.289505 0.149888 0.035593 0.227674 0.105961 -0.067123 -0.109087 0.039735 -0.006067 0.003745 0.427281 0.060431 0.148976 -0.626067 0.062487 -0.315848 0.167468 0.893611 0.417537 -0.744276 -0.095016 0.544842 -0.226961 0.018605 0.116256 -0.210040 -0.097254 -0.282308 0.346886 0.149980 -0.419596 -0.267405 0.218787 -0.414063 0.283655 0.054763 -0.000277 -0.253716 -0.395132 0.267986 1.040866 0.053729 0.012837 0.260587 -0.305350 -0.111302 -0.664309 -0.250608 0.180416 -0.164632 0.267870 -0.151992 -0.137714 0.568638 -0.346842 0.107987 -0.604377 0.122231 0.304624 -0.323747 -0.088545 -0.296725 -0.271197 -0.176922 -0.228706 0.158758 -0.530726 -0.035821 0.303877 -0.016771 0.654929 0.189415 -0.197165 0.050340 0.232961 -0.270105 0.691010 -0.065588 0.288011 0.247580 0.410308 -0.350904 -0.114669 -0.399408 -0.183512 -0.450130 0.485579 -0.590639 0.010384 0.313297 -0.029287 -0.468184 0.272904 0.290041 0.165267 -0.043999 -0.113586 -0.309893 -0.136094 -0.459932 0.436671 0.083297 -0.226750 -0.392938 0.029996 0.598236 -0.303111 -0.194150 0.154303 0.096636 0.674609 -0.381129 0.208289 0.433006 0.181129 -0.438699 -0.378091 0.043710 -0.313620 -0.023542 -0.221447 -0.794895 -0.587837 -0.093519 0.316329 -0.272221 0.120471 0.247685 0.773608 0.270209 -0.382918 0.200335 -0.027592 -0.036779 0.087172 0.250285 0.033859 0.227101 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -2.553952 1.900635 1.503346 -1.970543 5.104505 -0.064241 0.854964 1.605576 0.761362 2.330793 -4.722920 -1.493652 -0.778452 -3.287763 0.298901 -1.986076 0.410227 1.007847 -1.614952 -0.166275 1.602769 -0.332849 0.020978 -2.429478 -0.366436 -3.336275 -2.076221 0.256441 0.781159 -0.172214 0.278167 0.645489 4.624974 0.373537 3.272969 2.751223 2.120850 3.878913 -0.446983 2.583049 1.337959 2.281568 -1.515503 -3.548970 0.573099 -2.496904 -2.770396 -1.827193 0.858233 -3.080188 1.746261 2.456446 0.319230 -0.117993 -1.782088 1.583230 3.005980 0.192622 3.751683 1.765085 -2.970187 0.956811 -2.658794 2.543331 -2.059726 2.966422 0.024854 -3.837445 -1.475798 1.567778 1.651550 -2.362862 -2.986334 0.786966 0.934717 -1.973394 1.536533 -0.717527 -1.321540 -2.367634 -2.218551 1.369533 0.268395 2.794891 -0.043339 -0.421427 -0.105517 -0.142427 0.752430 -3.175167 -1.721706 3.669533 -2.073171 0.635439 -2.599180 0.701387 0.119120 0.621130 -1.574718 -2.505550 1.082831 0.623121 0.279240 -0.252101 -1.458902 -2.942959 1.891856 1.857313 -0.978109 1.135628 0.604044 1.401327 1.579181 1.820327 -2.704437 1.487101 -3.571598 1.490087 -0.739118 -0.044723 -0.414533 0.160946 0.635719 0.905761 2.228457 -3.208087 2.896701 1.428147 -2.524425 -2.197041 0.460830 -2.028229 -3.295989 -0.299412 1.473122 1.445757 0.377111 -0.792635 0.160667 -1.421914 -0.684182 -2.214519 -0.647565 2.043981 -2.721718 -0.529526 -0.343477 -0.646305 -1.929876 2.449079 1.475401 0.895572 4.058386 1.755705 -1.097405 0.219405 -3.274170 0.844847 5.289318 1.607430 -3.316686 1.980439 -1.847043 0.867998 1.817183 1.124169 0.629420 0.940016 -2.275075 -0.863751 -0.601834 -1.512064 3.914029 2.384982 1.241646 -3.537905 2.856102 -0.944627 -1.264706 5.425895 3.202556 -4.117254 0.533489 2.983703 -2.190690 -1.549900 1.654443 -2.064178 -1.485195 -1.918428 0.624905 0.871633 -2.437118 -1.903773 0.740051 -3.587145 3.807508 0.509419 0.558330 0.345091 -3.156893 -3.903597 5.213345 -0.139692 -0.355580 -0.500456 -1.050530 -0.723969 -4.271605 0.495075 1.502939 -1.996236 -1.359917 -2.675682 1.178126 3.443804 -2.365250 1.647801 -1.960612 -1.246647 1.423421 -0.636130 1.790383 -3.272637 -2.063875 -1.074992 -0.416982 1.611116 -1.952570 1.441352 4.223814 -1.521804 2.942207 1.311687 -2.329360 -0.396882 2.686489 -1.940927 3.596318 -1.024674 2.093950 0.309026 2.811614 -2.341154 -1.030249 -0.375833 -0.513811 -1.630342 2.619921 -3.056138 0.189964 1.047730 -2.739199 -1.503548 2.225585 0.830188 0.911098 -0.565794 0.275609 -2.462603 0.063005 -1.050404 0.571130 2.522588 -0.280193 -3.417071 0.057810 1.372485 -2.066538 -1.257140 0.750620 0.260394 3.508559 -2.995764 0.859136 0.906544 -0.355780 -4.134476 -3.691098 0.227836 -3.461541 -2.426442 1.355499 -3.768761 -1.527197 -2.167509 0.801140 -2.740390 -1.642090 1.061738 4.147122 1.848155 -1.542893 1.456882 0.117375 2.535518 0.228032 0.085374 0.738382 2.117812 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -3.755927 2.367246 2.127108 -2.857151 6.824563 -0.828300 1.646369 2.968387 0.967249 2.958625 -6.684910 -2.544440 -1.649302 -5.223866 0.487342 -2.843668 1.810302 1.771031 -2.288792 0.441839 2.677158 -0.465916 0.102672 -3.567413 -0.480953 -4.103420 -2.633166 0.317859 1.256865 -0.464830 0.063825 1.291231 7.722827 1.287050 6.114103 4.341177 2.868554 6.027022 0.457578 2.064940 1.222884 3.859604 -2.301655 -5.803373 0.633096 -3.646062 -3.626769 -3.029876 1.381948 -3.981528 2.212641 3.622723 0.603729 0.561506 -3.184890 1.396001 4.450501 0.875426 5.739592 2.762962 -3.998855 1.528437 -3.433499 2.312312 -3.050037 3.635229 -0.193025 -4.973103 -1.726101 1.894700 2.292164 -4.060313 -4.340536 1.032321 1.428910 -2.979661 2.873595 -0.578752 -1.256747 -4.242813 -3.871246 1.997647 -0.322668 4.588970 -0.241309 -0.477334 -0.638922 -0.197919 1.167571 -5.016723 -1.836475 4.574548 -3.298589 0.202357 -2.576479 2.052872 -0.320872 1.267418 -2.867939 -4.313300 1.856719 0.214272 0.489847 0.097080 -1.412555 -3.673668 2.596224 2.508258 -1.340362 2.341473 2.150661 2.548508 3.230486 2.970908 -3.952237 1.993099 -5.838902 2.513148 -2.193327 -0.379956 -0.357381 0.860560 1.284604 1.355137 3.296729 -5.221263 4.151594 3.248264 -3.207458 -3.108525 1.092027 -3.389290 -5.063504 -0.917220 2.861077 1.963646 0.846754 -1.740268 0.403744 -2.241235 -0.582949 -2.457376 -1.365945 2.982715 -4.462628 -0.925773 -0.641739 -1.392198 -2.541801 3.551509 1.759788 1.426350 6.034191 2.592988 -3.046931 0.037606 -5.106236 0.960607 7.879306 1.325704 -4.781358 3.093785 -2.392672 1.009220 3.009748 2.211358 1.591400 0.070376 -3.401332 -1.395960 -0.549919 -1.849448 5.954211 2.635535 2.231683 -5.173696 4.510546 -1.174288 -2.055153 8.172401 3.877569 -5.924509 0.384203 4.186274 -3.123311 -2.188035 2.083034 -3.368789 -1.739399 -3.506717 1.037803 1.372729 -3.991106 -2.644450 1.206963 -5.420020 5.242855 0.779455 0.169757 0.173849 -4.942627 -4.276445 8.749664 -0.060525 -0.482754 -0.916228 -2.195622 -0.608413 -6.701681 0.891286 1.288873 -2.444677 -1.255347 -3.996069 1.599206 4.941676 -3.011319 2.080453 -3.095289 -1.456427 2.399755 -0.838869 2.359313 -4.731042 -3.307610 -0.740371 -1.049906 2.532124 -3.085679 2.444819 6.183066 -2.394056 3.636450 2.008797 -2.984469 0.034783 3.795124 -3.595908 5.648111 -1.943125 4.196979 0.599900 4.174413 -3.729362 -1.814354 -0.753041 -0.610787 -2.750018 3.951231 -4.612796 0.302496 1.576190 -3.296697 -2.775220 2.789042 1.163386 0.694552 -0.701286 0.290304 -4.098133 0.431630 -1.803944 1.334879 4.092861 -0.291983 -5.433073 0.228113 2.456020 -2.300974 -1.706561 0.974303 0.164309 5.445248 -4.584368 0.776340 1.291273 0.256809 -5.171930 -6.192340 1.200631 -4.999513 -2.580614 2.389295 -5.429209 -2.215852 -3.219305 1.251207 -4.311040 -1.254368 1.821550 6.094713 2.618444 -2.757607 1.621471 0.204392 3.695993 0.340949 0.327976 0.625877 3.473523 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -1.240999 0.812630 0.539609 -0.516406 1.851127 -0.520099 0.868702 0.277463 0.751992 0.594499 -2.386599 -2.158304 -0.673326 -1.466737 0.282674 -1.387906 0.845773 0.607080 -0.757351 0.136684 0.705637 -0.135407 -0.199084 -1.408522 0.055402 -0.794613 -1.137447 -0.069551 0.177593 0.060926 -0.308155 0.768082 2.787491 0.682075 2.286280 1.534460 0.114781 1.906134 0.184095 0.309781 0.598635 1.299509 -0.712607 -1.850369 -0.263293 -1.150462 -1.014855 -1.050824 0.227763 -0.816520 0.893520 0.911704 0.280339 0.474377 -1.178802 -0.094299 1.345573 1.407316 1.772258 0.912258 -1.047101 1.398836 -0.840938 0.651185 -0.894230 1.055216 -0.361583 -1.804696 -0.473647 0.729415 0.820148 -1.246102 -1.711217 0.178308 0.547588 -0.724229 1.035441 0.244506 -0.786199 -0.929419 -1.505737 0.640857 -0.435058 1.413258 -0.173258 -0.344035 -0.663061 -0.221754 0.742560 -1.306716 -0.860507 1.532715 -0.905771 -0.006828 -0.080682 0.574432 0.602370 0.484085 -0.792548 -1.474803 0.546137 -0.335804 -0.091701 0.637194 -0.392685 -1.003361 0.859396 1.159944 -0.508830 1.367615 0.915154 1.311900 1.383170 0.573014 -1.181428 0.051995 -1.461661 0.800283 -1.453545 -0.646309 0.167848 0.298557 0.096972 0.322871 0.881555 -1.564965 1.192314 1.369706 -0.716546 -0.574885 0.273443 -1.156370 -1.759267 -0.369050 0.856652 0.989125 0.453429 -0.438575 -0.309380 -0.785264 0.540445 -0.015047 -0.443345 0.858870 -0.801916 -0.429159 -0.105344 -0.360820 -0.942415 1.134310 0.327098 0.351975 1.543388 0.663224 -1.485370 -1.241474 -1.505735 0.406695 2.666766 -0.817337 -1.513681 0.869244 -0.435624 0.218488 0.830284 0.636498 0.345287 -0.087026 -0.852601 -0.528859 -1.524422 -0.820511 1.735342 1.054755 0.521031 -1.315198 1.763956 -0.668530 -0.880999 2.502761 0.904568 -1.552280 -0.645269 1.629151 -1.955236 -0.932682 0.757944 -1.064859 -0.223259 -1.686774 0.365660 0.257096 -1.350075 -0.480627 0.606708 -1.810405 1.471775 0.505945 -0.346316 -0.497686 -1.419608 -1.384703 3.482667 0.216028 0.241309 -0.044916 -0.645485 0.090348 -2.246322 0.062529 0.118692 -0.592797 -0.244098 -1.045628 0.631919 1.552615 -1.300888 0.904990 0.058211 -0.243015 0.517318 -0.091751 0.496060 -1.092930 -1.219490 -0.036260 -0.535705 0.524687 -0.944157 0.747152 1.662226 -0.529497 0.805805 1.139156 -1.207157 0.034620 1.083524 -0.958023 1.420267 -0.959554 0.849666 0.389469 1.452147 -0.974345 -0.910842 -0.149034 -0.488516 -1.425458 1.434171 -1.543281 0.292799 0.771783 -0.591483 -0.955309 0.943486 0.250491 0.518327 -0.496216 0.006179 -1.799741 0.602252 -0.235146 0.607622 1.148175 0.455164 -1.587683 0.079718 0.859526 -0.838440 -0.780006 0.240066 -0.443300 1.643366 -1.337858 0.150536 0.592348 0.398187 -1.233575 -1.614044 0.215430 -1.700190 -0.679966 0.822176 -1.411643 -0.653553 -0.843012 0.309947 -0.736213 -0.916705 0.846518 1.937394 0.896135 -1.194383 0.212650 0.042127 0.951536 0.261973 -0.090047 -0.046782 1.066007 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.083729 -2.030461 0.564740 -0.649600 2.525832 -1.306004 -0.588241 2.834332 1.555034 0.294756 -2.386444 -1.200727 -1.385096 -2.217477 0.464512 -0.991366 2.014537 0.019460 -1.374247 -0.492063 1.028370 2.248059 -0.202815 -1.350505 0.318887 -0.738511 -1.355258 -0.099660 -0.869004 0.000602 0.074411 1.258100 4.061668 1.633363 2.805569 1.418481 2.013281 2.255440 0.096925 1.818787 0.796859 1.846117 -0.478416 -1.783584 -0.241745 -1.406945 -1.031043 -0.143001 0.399785 -0.643682 0.861877 0.801953 0.841676 1.157610 -1.369441 -1.159483 -0.114856 0.119317 1.281622 1.492033 -3.057892 0.239485 -0.727071 1.044688 -1.388211 1.726406 0.269158 -0.155030 -0.903997 0.785465 1.947325 -2.428321 -2.205859 -0.779281 0.016332 -0.287730 2.042640 0.965055 3.824233 -0.655140 -1.053782 0.670454 -0.919313 1.038102 -0.842326 -0.750946 -1.077145 -1.121714 0.888367 -0.875905 -0.882763 0.466495 -2.337795 -0.278222 -2.353339 0.397530 -0.997588 0.821619 0.235861 -2.239975 0.517245 -0.257711 -0.245557 1.706521 -0.742532 -0.254610 1.305992 0.286796 -0.339275 1.501307 -0.253705 1.240583 1.081160 0.172518 0.278088 0.777361 -2.224147 1.511143 -2.104832 -0.423790 -0.894216 0.248633 1.585293 0.917419 0.341153 -1.103522 1.341354 1.929952 -0.867428 0.413531 0.702526 -1.163347 -2.775317 0.308054 1.593957 1.236142 0.269317 -0.673781 0.944432 -0.634358 0.241808 -0.923629 -1.132512 -1.187405 -0.410648 -1.179251 -0.211590 -0.264737 -0.950810 1.091146 -0.166732 0.050089 1.702656 -0.414897 -2.293986 -1.211751 -2.305757 0.385577 3.136186 -1.643607 -1.321270 0.629440 -0.838244 0.916611 0.983345 1.183221 0.540621 -1.170609 0.321419 1.118682 -0.553687 -0.510549 2.060083 1.053290 1.312101 -2.357223 -0.841114 -1.981053 1.016108 2.527959 0.752730 -2.646141 -0.688455 1.450004 0.860011 -0.582495 -0.148873 -0.139585 -0.760001 -2.648121 1.547456 0.697069 -1.665912 -0.131304 1.100846 -1.535740 0.606132 0.187723 -0.471815 -0.274363 -1.868074 -1.095343 4.263914 -0.043774 0.704558 0.373675 -1.102234 1.849492 -3.108548 0.186643 -0.147660 0.061771 1.655200 -0.820856 0.902379 2.221131 -1.364451 0.891076 -1.218943 0.128509 0.785997 -1.736866 -0.045369 -2.492325 -1.590421 -0.772506 -0.622150 1.320436 -2.631038 -0.963271 1.700897 -0.630206 1.854380 1.594051 -0.017867 -1.436213 1.027296 -1.229063 1.830005 -0.899458 1.539752 0.111593 1.490370 -0.992273 -1.434521 -1.323218 -0.123476 -1.570910 1.151180 -2.061044 0.677141 1.330375 -0.272794 -0.653065 1.261754 0.317522 -0.279860 -0.409626 -0.318136 -1.918172 0.489860 -0.770609 1.981275 1.535405 -0.491705 -2.664827 -0.004541 2.031201 -2.680747 -0.688164 -0.050841 -0.313907 2.477617 -1.209527 -0.382676 1.538118 1.188538 -0.948845 -2.458163 0.701897 -0.759043 -0.207198 0.010459 -1.205510 -2.425502 -0.728730 0.946286 -1.015109 -0.792443 0.555926 1.494155 1.437621 -0.916987 -0.515529 0.769899 0.027054 -0.046376 0.068982 1.055048 0.632539 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -1.097370 1.045828 0.356228 -0.783124 2.034228 0.156593 0.445125 0.908129 -0.338964 1.194305 -1.937873 -0.256806 -0.328019 -1.536146 0.074782 -0.321425 0.122874 0.267502 -0.409227 0.077188 0.739781 -0.695778 0.081204 -1.050474 -0.149508 -1.343892 -0.459901 0.004710 0.764358 0.178989 -0.228153 0.118199 1.686399 0.328527 1.312312 1.129901 0.557141 1.678336 0.253175 0.572076 0.134080 1.059505 -0.701977 -1.705869 0.357712 -1.197198 -0.869547 -0.982881 0.352339 -1.345918 1.015043 1.122114 0.003988 -0.134615 -1.033712 0.520513 1.396156 0.048209 1.775134 0.646183 -1.021584 -0.242999 -0.966858 0.829364 -0.684212 0.858941 0.452404 -1.335503 -0.114023 0.456057 0.406488 -0.828495 -0.829747 0.511648 0.304136 -0.970898 0.552956 -0.416128 -1.219432 -1.030845 -0.952778 0.465136 0.073746 1.419595 0.040494 -0.104331 -0.300069 0.083787 0.339496 -1.530703 -0.578994 1.599763 -0.638092 0.235482 -0.916464 0.943767 0.052010 0.304124 -0.776187 -0.580979 0.466729 0.515607 0.203180 -0.824998 -0.719636 -1.613567 1.127243 0.561329 -0.440050 0.391871 0.744231 0.400219 0.638869 0.971090 -1.171220 0.805308 -1.606178 0.441644 0.227984 0.055368 -0.177991 0.119524 0.165044 -0.043138 1.022375 -1.576428 1.168867 0.724611 -0.836994 -1.350641 0.167062 -0.998952 -1.257337 -0.101336 0.631451 0.483330 0.161960 -0.413437 -0.025891 -0.592409 -0.879455 -1.056887 -0.113178 1.680439 -1.436488 -0.158319 -0.202577 -0.290822 -0.782540 0.962982 0.569290 0.449514 1.702175 0.869430 -0.343548 0.308749 -1.253414 0.402466 2.331581 1.146221 -1.500705 0.814922 -0.790156 0.327839 0.676245 0.329729 0.609102 0.406271 -1.263786 -0.517195 0.378212 -0.615469 1.647815 0.931147 0.897074 -1.125311 1.673160 -0.182148 -0.618906 1.978102 1.285887 -1.652258 0.452414 1.182735 -0.976661 -0.154730 0.737786 -0.797133 -0.307367 -0.741967 0.090084 0.428223 -1.154220 -0.891169 -0.117852 -1.575513 1.913371 0.267400 0.862383 0.130825 -1.282563 -0.725232 1.986000 -0.002499 -0.283496 -0.323224 -0.461957 -1.361622 -1.695445 0.279222 0.643095 -0.955553 -0.771474 -1.267139 0.208047 1.319324 -0.802889 0.544482 -0.811632 -0.431729 0.606597 0.006918 0.817949 -1.255288 -0.912970 -0.247644 -0.062746 1.041155 -0.626605 1.126773 1.813239 -0.637691 1.368284 0.680344 0.048600 0.186619 1.121083 -0.875964 1.474910 -0.511098 1.150618 0.040695 1.264862 -0.918140 -0.293661 -0.116974 -0.130671 -0.383415 1.092162 -1.231201 -0.002800 0.504127 -1.242028 -0.647716 0.810602 0.245922 0.579608 -0.187018 0.136467 -0.831000 -0.167838 -0.962124 0.238456 1.131111 -0.228634 -1.346738 -0.090334 0.398790 -0.509679 -0.159929 0.408823 0.140531 1.394346 -1.324886 0.259355 0.150757 -0.247987 -1.587123 -1.533444 0.134411 -1.080555 -1.200547 0.980203 -1.854325 -0.288807 -0.992216 0.201994 -1.984935 -0.320187 -0.017837 1.793192 0.530254 -0.403267 0.615927 0.054369 1.074297 0.079375 0.221504 0.294745 0.986404 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.317931 0.110941 -0.004202 -0.198651 0.853206 -0.235221 -0.057017 0.546806 0.342815 0.311973 -0.500779 -0.194828 -0.089005 -0.429897 0.159407 0.044943 0.176703 0.386475 -0.260526 -0.246789 0.219325 0.214239 0.008940 -0.233402 -0.057171 -0.355568 -0.217804 0.099192 -0.134993 0.071259 -0.299850 0.322508 0.665202 0.024225 0.452999 0.378772 0.409075 0.511147 0.138615 0.441389 0.384835 0.164829 -0.118444 -0.604169 0.198239 -0.273656 -0.371238 -0.263883 0.166011 -0.488330 0.648070 0.285464 0.104282 0.005229 -0.221138 0.130052 0.118264 0.146150 0.423618 0.332945 -0.607681 0.074192 -0.271491 0.535439 -0.377937 0.448315 -0.050489 -0.745935 -0.390804 0.467899 0.423193 -0.385751 -0.425304 -0.059471 -0.007510 -0.177664 0.265252 0.093354 0.491407 -0.119542 -0.442342 0.263404 -0.198148 0.352806 -0.010730 -0.058889 -0.378966 -0.133212 0.163781 -0.304595 -0.242741 0.446618 -0.314281 0.361863 -0.356191 -0.178832 0.126790 -0.070618 0.001497 -0.455433 0.170013 0.019474 0.072397 0.265557 -0.116440 -0.190511 0.398616 0.320978 -0.014848 0.187287 0.036648 0.114123 0.105481 0.098976 0.010332 0.113500 -0.610525 0.366976 -0.137783 -0.066112 -0.152900 -0.010917 0.291067 0.042408 0.200757 -0.411377 0.449194 0.172379 -0.253264 -0.094758 0.177577 -0.049492 -0.386566 -0.084850 0.371818 0.114063 -0.050983 0.057133 0.098633 -0.164280 -0.270169 -0.253682 -0.332350 0.122651 -0.324350 -0.013613 -0.098224 -0.215970 -0.172457 0.224688 0.158015 0.230448 0.494172 0.286256 -0.205539 -0.271759 -0.630019 0.232858 0.678627 0.065925 -0.395038 0.262584 -0.217797 0.135862 0.249178 0.211029 -0.041306 0.237097 0.046912 0.074349 -0.353839 -0.060975 0.511876 0.392882 0.246346 -0.491249 -0.054986 -0.224285 0.017663 0.803863 0.347587 -0.623156 -0.027309 0.563396 -0.171312 -0.231056 0.147540 -0.335180 -0.228010 -0.333867 0.202325 0.329694 -0.559219 -0.259196 0.261341 -0.390432 0.359843 0.039649 -0.087652 0.019247 -0.552339 -0.011798 0.875210 0.115558 0.106642 0.014447 -0.318193 -0.037638 -0.599369 0.015560 0.326814 -0.141570 -0.082004 -0.271383 -0.056455 0.623323 -0.278134 0.149661 -0.187649 0.084555 0.274976 -0.237837 0.093760 -0.565936 -0.211009 -0.063082 -0.153024 0.153248 -0.292005 -0.030316 0.340206 -0.269154 0.361364 0.620235 -0.105896 -0.079496 0.296552 -0.166101 0.475164 -0.115761 0.115794 0.194339 0.350768 -0.296414 -0.085391 -0.198063 0.056643 -0.374357 0.436334 -0.503359 -0.024584 0.294016 -0.293401 -0.296362 0.260967 0.368299 0.248445 -0.112246 -0.147484 -0.247436 -0.006076 -0.206707 0.226324 0.298315 -0.163840 -0.470698 0.086167 0.291221 -0.595377 -0.335462 0.188011 0.087004 0.578763 -0.407119 0.237892 0.264758 0.122698 -0.687021 -0.329533 -0.033897 -0.304770 -0.195677 -0.005833 -0.624056 -0.512629 -0.179712 0.336670 -0.358023 -0.066029 0.067513 0.523832 0.174622 -0.058330 0.294912 0.096384 0.108340 0.054348 -0.076972 0.071497 0.353927 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -2.238689 1.825289 0.382600 -2.305140 5.661046 -0.283442 0.718038 2.274979 -0.231950 1.655520 -4.546870 -0.314951 -0.213075 -4.021127 0.752905 -0.677058 0.756336 1.204775 -1.341980 0.401824 1.575949 -0.897610 0.247951 -2.742321 -0.182961 -2.709197 -0.958292 0.252225 0.708194 0.966274 -0.421659 0.825094 3.436681 0.494773 2.178480 2.201741 1.909060 3.470719 0.208831 0.483666 1.703427 1.587567 -0.715432 -4.142859 0.972077 -2.281475 -2.981012 -1.999292 0.723435 -3.747844 0.977195 2.387266 0.604681 -0.958932 -2.384693 1.174515 3.679841 -0.016841 2.953398 2.042068 -2.666352 -0.758559 -1.830419 1.270612 -1.765118 2.157743 0.891463 -3.367593 -1.393066 2.886490 0.896428 -1.754193 -2.685782 -0.386389 1.107873 -1.555899 1.724673 -0.382773 -0.515714 -1.762783 -1.285823 1.168949 -0.729291 3.012856 0.066604 -0.197914 -0.181930 -0.859332 1.313778 -2.277319 -2.041464 2.933895 -1.293420 0.457972 -2.394403 1.688654 1.040005 -0.479471 -1.689802 -2.628514 1.194301 0.842654 0.233840 -0.651860 -1.698146 -3.051020 2.125475 2.116374 -0.596482 2.112224 0.101783 1.123364 0.331187 0.902102 -2.393532 1.607204 -3.677801 0.859283 -0.829819 0.186629 -0.961883 -0.475006 1.815381 0.715782 1.116903 -2.863221 3.895061 2.306422 -1.567570 -1.676648 1.258031 -1.037866 -2.610357 0.139821 1.517653 0.766776 0.477080 0.368991 0.471200 -1.352359 -1.556262 -1.586910 -1.397004 3.065118 -3.338680 -0.039147 -0.330678 -0.665801 -1.246713 1.261231 0.997495 0.192207 3.557062 1.336909 -1.446115 1.449036 -2.716789 1.824624 5.967797 1.848681 -2.822190 1.393269 -1.304565 1.096787 1.074970 0.301764 0.444151 1.181506 -2.372100 -0.820951 -0.268360 -1.922668 3.111254 2.315322 1.663696 -4.630526 2.747057 -1.024760 0.140284 4.749989 2.742528 -3.982958 1.043708 3.888737 -2.748698 -0.762597 0.678949 -1.474961 -1.161860 -1.841352 1.179885 0.804211 -3.032723 -2.969071 -0.657235 -2.990099 2.830192 0.814470 0.472482 -0.715251 -1.947753 -1.188692 5.224170 0.204760 -0.532567 -0.016423 -1.099115 -1.710303 -4.118684 0.187260 1.523756 -2.205357 -1.021453 -2.029638 -0.333505 3.586163 -2.810896 0.250025 -2.881261 0.171572 1.439535 0.438953 1.120920 -3.143151 -1.968562 -0.475418 -0.545080 1.097773 -1.825120 1.035952 3.018082 -1.647185 2.678008 0.971550 -0.960436 0.605423 2.913148 -0.907133 3.317082 -0.552629 4.043530 0.660556 3.061978 -2.003123 -0.495299 -0.905694 -1.572690 -1.637437 3.169888 -3.786274 -0.022912 2.600684 -1.001216 -2.693116 2.741895 1.682443 1.817108 -0.950455 -0.151921 -1.336591 0.006602 -1.005455 1.036216 2.046905 -1.240059 -3.406137 -1.006957 2.847732 -2.065989 -1.758681 1.424892 0.583899 3.768861 -2.591593 2.255915 0.813145 -0.001410 -3.969831 -3.142289 1.275757 -2.319955 -1.794354 1.554568 -4.528795 -1.857400 -1.591699 1.885430 -3.094301 -0.855560 0.310046 3.362160 0.688551 -0.518968 1.724560 0.294512 1.268930 -0.278154 0.699180 0.409448 1.978453 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.930451 0.463296 -0.358509 -0.697611 2.526462 0.011445 0.075875 1.067298 -0.296858 0.880635 -1.596399 -0.107284 -0.220181 -1.673982 0.367158 0.399845 0.414416 0.419659 -0.557286 -0.201008 0.658003 -0.389090 0.249256 -0.889936 -0.034508 -1.191004 -0.364635 0.158576 0.666466 0.238374 -0.741340 0.296858 1.400448 -0.010488 0.651568 0.732747 1.069174 1.259077 0.170223 -0.280707 0.580260 0.732127 -0.448912 -1.631572 0.565431 -1.067421 -1.205456 -0.631613 0.532792 -1.286321 0.368114 1.010491 0.141850 -0.376868 -0.914743 0.583176 1.447000 -0.213147 1.378225 0.743156 -0.960098 -0.806680 -0.683331 0.938852 -0.801092 0.852334 0.105746 -1.554529 -0.828534 1.073635 0.193934 -0.731298 -1.042041 0.015846 0.434538 -0.689881 0.673941 -0.056318 0.473673 -1.024640 -0.955485 0.399083 -0.662353 1.357098 0.042111 -0.106194 0.029873 -0.332055 0.554417 -1.086306 -0.676812 1.103703 -0.577927 0.439061 -0.829204 0.410946 0.196650 -0.148377 -0.686149 -1.030248 0.327131 0.375988 0.214307 -0.428653 -0.047140 -1.144927 0.813524 0.507568 0.154453 0.749328 0.465173 -0.008214 -0.040045 0.509816 -0.818132 0.112813 -1.406469 0.382600 -0.102715 0.174306 -0.578740 0.011334 1.013757 -0.019479 0.685762 -1.432119 1.404968 0.717587 -0.597406 -0.718298 0.448925 -0.407065 -1.049247 0.152300 0.773843 -0.012829 0.017617 0.067759 0.468033 -0.381340 -1.299746 -0.249964 -0.687423 1.272452 -1.749056 0.023682 -0.249777 -0.501073 -0.364873 0.535432 0.452353 0.437022 1.447455 0.810577 -0.696900 0.996285 -1.337358 1.022087 2.468005 0.813353 -1.231544 0.529559 -0.888172 0.560173 0.625955 0.191084 0.336013 0.537298 -0.539960 0.116188 0.198935 -0.372440 1.413439 0.747644 0.988523 -1.778951 0.681582 -0.252029 0.200683 1.941453 0.920340 -1.844413 0.993751 1.514359 -0.860351 0.097438 0.211104 -0.800843 -0.509867 -1.078351 0.531399 0.758408 -1.447240 -1.045228 -0.179854 -1.165946 1.311478 0.273092 0.128009 0.255884 -0.959200 0.014193 1.967583 0.176063 -0.055082 -0.306010 -0.661700 -1.066675 -1.621239 0.190171 0.500168 -0.998352 -0.421959 -1.049518 -0.439016 1.753370 -0.673829 0.231361 -1.829157 0.570340 0.610025 0.367989 0.584533 -1.116575 -0.737281 -0.003114 -0.447077 0.439074 -0.986469 0.298841 0.954181 -1.002048 1.106805 0.212634 -0.137513 0.276131 0.904020 -0.341940 1.300256 0.001381 1.707709 0.183706 1.305145 -0.820966 0.104541 -0.442658 -0.442298 -0.611594 1.215943 -1.557001 -0.186516 1.302978 -0.518049 -1.389897 0.844748 0.692744 1.016221 -0.315425 -0.522598 -0.415543 0.005156 -0.277199 0.517963 0.915728 -0.655463 -1.312897 -0.322194 0.921062 -0.876985 -0.727444 0.680162 0.221511 1.551592 -1.159660 0.711471 0.295411 0.257662 -1.618046 -1.305870 0.226162 -0.539139 -0.599449 1.093339 -2.085051 -0.713317 -0.704702 0.674032 -1.420382 -0.072914 -0.154891 1.403460 0.104275 -0.086538 0.927475 0.316581 0.381145 -0.264532 0.221698 0.276750 0.638111 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.997786 1.566488 -0.155687 -2.045947 6.619217 0.498679 0.628547 2.978301 -1.334617 2.024020 -4.093698 0.738327 0.239883 -3.416648 0.853852 0.479459 0.253418 0.650145 -1.570428 -0.569630 1.230105 -0.280489 0.454601 -2.223836 -0.339375 -2.917343 -0.909813 0.371846 1.372940 1.141313 -1.529603 0.397011 2.698334 -0.626471 1.136894 1.608225 3.045901 2.352808 -0.238541 -0.121522 2.047069 1.110230 -0.948501 -3.353166 0.790555 -2.444375 -3.527932 -1.196073 0.974986 -3.691345 0.656179 2.238151 0.551143 -1.235440 -1.477682 2.275391 3.020701 -1.491972 2.803299 1.801910 -3.058395 -2.168868 -1.786954 3.106034 -1.387562 2.831862 0.121320 -3.801743 -2.348768 3.064292 0.420489 -1.600951 -2.349762 -0.167817 1.031129 -1.554879 1.399758 -0.506574 1.111869 -1.825547 -1.152575 1.366085 -1.079339 2.809876 0.429796 -0.222979 0.096061 -0.785983 1.123220 -2.310243 -2.038974 3.366048 -1.373170 0.780971 -3.625814 0.206186 0.635441 -0.464441 -1.247272 -2.661542 0.963141 1.516590 0.256450 -2.262449 -0.349479 -3.207676 1.518163 2.090262 0.195196 1.905824 -0.740616 0.138137 -0.309539 1.024925 -1.515559 1.038743 -3.232143 0.859074 -0.472227 0.503795 -1.738014 -0.495736 2.561732 0.729072 1.369519 -2.823169 3.605063 1.463170 -2.022715 -1.680955 0.966033 -0.728497 -2.465442 0.749837 1.160519 0.263422 0.140292 0.470207 1.243606 -1.114447 -2.776732 -1.554668 -1.348567 2.405176 -4.228967 0.021988 -0.235985 -0.296333 -1.157978 1.747194 1.462947 0.597732 3.495522 1.539593 -0.763346 2.543417 -2.912785 2.405786 5.571149 2.411534 -2.697501 1.300557 -2.529127 1.219187 1.013535 0.138126 -0.099805 2.251810 -1.969019 -0.048430 0.366994 -1.299090 3.279201 2.486067 1.862946 -4.360634 1.553349 -2.094033 0.544995 3.920878 3.219152 -4.395277 2.013368 3.751860 -1.452922 -0.165983 0.791505 -2.322655 -1.787081 -1.774869 0.875596 1.499692 -2.935280 -2.672729 -0.320996 -2.490753 3.125720 0.738966 0.115860 -0.104013 -1.630976 -0.466202 4.193223 0.329941 -0.302433 -0.264546 -0.949541 -2.689498 -3.617005 0.211394 2.047184 -2.328939 -1.356475 -2.259310 -0.957668 3.614647 -2.273001 0.595682 -4.071716 0.972916 1.390646 0.722285 1.623259 -3.033164 -1.489712 -1.065219 -0.961682 0.920559 -2.747898 0.730996 2.273258 -1.891732 3.374314 0.307339 -1.233364 -0.087028 2.355697 -0.386834 3.027848 0.521600 3.732901 0.646170 3.021970 -1.977828 0.218667 -1.351439 -1.577039 -1.259702 3.121661 -3.806165 -0.376593 2.586369 -1.236603 -3.018266 2.424220 1.836473 1.837692 -1.029181 -0.893715 -0.753433 -0.436530 -1.391994 0.950310 1.848774 -2.431876 -3.152228 -0.829115 2.376747 -2.824181 -1.620942 1.530627 0.941783 3.571574 -2.504821 2.082186 0.853829 0.441922 -4.989806 -2.868390 0.395003 -1.504257 -1.941038 1.445870 -4.463650 -2.260899 -1.598455 1.592901 -3.593618 -1.564024 0.387593 3.270155 -0.040368 0.012530 2.017597 0.594071 0.979461 -0.469681 0.880054 0.804633 0.940134 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.433436 0.551647 0.221608 -0.354058 0.619828 -0.049598 0.032406 0.326449 0.170117 0.319105 -0.810661 -0.255297 -0.147798 -0.719973 0.101525 -0.190389 0.059285 0.354341 -0.091261 0.104928 0.387919 -0.307220 -0.019791 -0.542440 0.029040 -0.504974 -0.182157 -0.061157 0.033528 0.296375 0.036333 0.152883 0.622123 0.326090 0.479594 0.502756 0.073793 0.820128 0.191077 0.528106 0.054663 0.459559 -0.202302 -0.918828 0.370685 -0.475723 -0.130356 -0.558379 0.073877 -0.665409 0.552004 0.393927 0.061806 -0.117649 -0.500783 -0.103532 0.631423 0.396675 0.563903 0.384996 -0.271490 0.079541 -0.345288 -0.097981 -0.393366 0.353726 0.416546 -0.541874 -0.028084 0.247369 0.368098 -0.212977 -0.380808 0.011609 0.006504 -0.251345 0.301434 -0.109542 -0.567247 -0.151447 -0.383304 0.129283 -0.065431 0.604437 -0.082748 -0.120167 -0.310905 -0.077379 0.300101 -0.390857 -0.379513 0.466739 -0.064323 0.193700 -0.085333 0.440425 0.258183 0.034019 -0.176943 -0.143564 0.252147 0.221543 0.087187 0.239821 -0.650351 -0.539432 0.665328 0.320294 -0.334078 0.218947 0.291135 0.263210 0.126484 0.196348 -0.496012 0.397785 -0.672016 0.173916 0.019945 0.051251 0.052560 -0.027266 0.022669 -0.152548 0.158519 -0.456374 0.586398 0.447045 -0.195955 -0.332407 0.279036 -0.320326 -0.483016 -0.127020 0.306203 0.279283 -0.006741 -0.012912 -0.162347 -0.306159 -0.201847 -0.477064 -0.253670 0.726862 -0.408111 -0.068569 -0.163164 -0.263100 -0.234203 0.127524 0.019686 0.074502 0.567722 0.341386 -0.234257 -0.168826 -0.384763 0.175821 1.009657 0.390819 -0.520652 0.149432 0.089522 0.167329 0.299862 -0.005417 0.184592 0.276316 -0.394745 -0.286573 -0.287115 -0.450662 0.522000 0.591448 0.387791 -0.644679 0.719520 0.117755 -0.227579 0.907878 0.365211 -0.476559 -0.037103 0.534441 -0.701310 -0.161679 0.077050 -0.007652 0.024739 -0.268993 0.099927 0.082216 -0.581554 -0.624523 -0.182831 -0.631621 0.594343 0.149252 0.480155 -0.101285 -0.515649 -0.213069 0.915411 0.095154 -0.206727 -0.072192 -0.133709 -0.342701 -0.648990 0.161179 0.263019 -0.365780 -0.304273 -0.355876 0.081673 0.555069 -0.489972 -0.078150 -0.047541 -0.239587 0.198885 -0.144641 0.202240 -0.693033 -0.419421 -0.026424 0.034463 0.437137 0.065280 0.346989 0.772096 -0.258701 0.293396 0.650458 0.238817 0.153038 0.632014 -0.210225 0.491438 -0.427000 0.449127 0.035709 0.515607 -0.305815 -0.189787 0.011883 -0.103896 -0.149492 0.532666 -0.481154 0.065306 0.377450 -0.427110 -0.127704 0.486921 0.162154 0.431113 -0.130496 0.132477 -0.364882 0.080526 -0.080364 0.013409 0.508833 0.083421 -0.668450 -0.234572 0.249925 -0.236617 -0.410186 0.241569 -0.013029 0.599733 -0.447430 0.349646 0.078420 -0.256063 -0.551349 -0.396289 0.193788 -0.401077 -0.422826 0.385986 -0.731935 -0.087742 -0.323703 0.264135 -0.605487 0.007836 -0.183643 0.491519 0.244606 -0.053965 0.272615 0.056881 0.441631 0.100326 -0.050470 0.000109 0.636509 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -3.377327 3.170475 4.113338 -1.205733 5.412246 1.272790 1.802065 3.756862 -4.941887 3.365226 -4.962602 -0.413160 -1.798378 -3.598998 -0.289493 -3.714632 0.720530 -0.733403 -0.871789 1.585250 1.916402 -2.337498 -0.402303 -2.165012 -0.513044 -2.995051 -2.037202 -0.079976 5.472525 -0.936105 0.336815 -0.346942 6.410911 -0.101388 5.984096 3.668107 1.684127 3.436796 0.301979 -3.454674 -1.700983 4.280119 -3.364124 -3.318265 -1.113160 -3.899075 -2.134884 -0.310215 1.471533 -1.317226 -3.751412 3.099069 -0.930868 1.582189 -1.732645 2.970295 2.795097 -0.241201 6.136191 0.744257 -3.168948 -1.979674 -3.578027 3.126697 -0.869019 2.063472 -2.874344 -2.885797 1.287847 -1.323108 -2.820392 -2.707875 -0.182458 4.226953 1.434002 -3.260802 1.978711 -1.335459 -5.465288 -4.066493 -3.120885 0.814737 0.282125 3.556019 -0.400164 -0.238486 1.383431 1.411772 -0.365204 -6.495671 0.085545 5.343509 -3.777379 -1.576741 -1.772826 2.986118 -0.559141 3.352226 -2.660159 -2.046747 1.304719 0.474620 0.390596 -7.069818 2.812637 -4.691492 0.277518 -0.762190 0.494811 3.936134 1.724695 3.161251 4.703843 4.926901 -4.648938 0.472296 -3.666386 1.317705 -3.424066 -0.068842 -0.070351 2.180450 0.278374 1.634725 4.935446 -5.750806 1.125433 1.837222 -1.426773 -5.345319 -0.239442 -5.510298 -4.224705 -0.893442 1.650487 1.590102 0.670650 -3.978193 0.189676 -0.856463 -1.639597 -2.349994 1.114679 3.615393 -5.934117 -1.209385 -0.282243 0.333126 -2.220686 4.372426 2.840625 2.392467 5.190243 2.631572 -1.838460 3.210292 -4.063341 0.072522 5.465577 0.098964 -4.759273 3.494658 -4.291792 -0.603804 2.402085 1.906006 3.471405 1.978951 -5.032377 -3.377190 3.078983 -0.252041 5.263923 1.575670 1.696357 -1.593339 6.390097 -2.663982 -4.486177 5.048946 1.737534 -5.589587 2.927434 1.199057 -2.287573 0.011075 2.718365 -4.925404 -0.404776 -3.131197 -1.434075 1.880599 -2.812469 -0.468062 1.406371 -5.092604 6.656269 0.452293 1.255674 0.770645 -3.505692 -5.385045 5.856146 0.840834 -0.708028 -2.592159 -1.447139 -4.352465 -4.649242 0.709271 0.019866 -2.553280 -2.514591 -4.674795 0.869420 2.136991 -0.547691 4.100776 -5.870398 -1.617022 1.575215 1.581467 3.423042 -1.668591 -3.089261 -1.791573 -2.279189 3.389567 -4.094519 5.126220 6.102163 -1.448772 5.896976 -1.893577 -4.591944 0.331335 1.766879 -4.975250 4.667733 -0.484513 4.445395 -0.092214 3.315651 -4.084781 -1.525863 0.106387 -1.484801 -1.079656 2.194598 -2.099029 0.302502 -0.693142 -4.348183 -1.704484 0.424222 -1.492214 -0.054831 0.339154 0.557073 -4.573857 -0.967645 -2.842224 0.365626 3.576237 -1.506412 -3.904741 1.322648 -1.034020 0.137816 0.055798 -0.024944 -0.173675 2.339806 -4.321982 -2.315116 0.280787 0.082890 -3.562507 -5.481490 -1.013681 -3.390972 -2.938683 2.947294 -3.773276 1.061160 -3.356683 -2.189801 -5.744752 -3.204385 2.099945 6.787825 1.550865 -3.821969 0.946574 -0.553429 4.470180 0.804485 2.014671 -0.359246 1.230114 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.356590 1.366452 1.271644 -0.923238 3.201884 0.993587 0.674094 2.068041 -1.537724 2.101967 -2.415941 0.080936 -0.490101 -1.653774 -0.114780 -0.727615 -0.053546 -0.333316 -0.733421 0.179796 0.912581 -0.858720 0.116087 -1.127312 -0.451366 -1.818330 -0.814854 0.037885 1.835075 0.224654 -0.302860 -0.348234 2.435048 -0.054884 2.012470 1.466080 1.244810 1.839845 0.061057 0.154418 -0.208878 1.619172 -1.409812 -1.865597 0.035083 -2.000651 -1.344931 -0.763326 0.432955 -1.680187 0.145575 1.577133 -0.240313 0.137195 -0.745999 1.450043 1.287411 -0.637185 2.752725 0.583627 -1.806103 -1.027954 -1.762100 1.761157 -0.492739 1.526005 -0.399193 -1.949927 -0.117062 0.011404 -0.239893 -1.120490 -0.438775 1.562404 0.474859 -1.509849 0.713693 -0.935533 -1.736945 -1.573387 -1.224102 0.658928 0.151365 1.594468 0.218373 -0.117505 0.069920 0.554877 -0.036145 -2.867763 -0.352279 2.533822 -1.508358 -0.056495 -1.758708 0.790872 -0.369271 1.129609 -1.167828 -0.694690 0.616363 0.948381 0.229028 -2.802458 0.187718 -2.602573 0.941120 0.533389 0.071256 0.646687 0.638156 0.544706 1.450029 1.932052 -1.854574 1.175860 -1.669998 0.586251 -0.253500 0.227892 -0.597248 0.618894 0.414584 0.447470 2.112018 -2.408035 0.954563 0.630626 -1.456951 -2.195588 -0.048024 -2.086879 -1.844010 -0.041582 0.662755 0.606383 0.352327 -1.328798 0.156202 -0.734012 -1.322122 -1.640347 0.352302 1.846793 -2.690630 -0.386452 -0.149732 0.061875 -1.152218 2.100162 1.389322 0.951733 2.550186 1.243656 -0.227747 0.936108 -1.868309 0.369280 2.993784 1.260735 -2.297312 1.508389 -2.021292 0.278788 0.913179 0.580902 1.125954 1.102581 -2.145480 -1.049268 1.039605 -0.287251 2.649244 1.289351 1.240511 -1.218048 2.213579 -1.364485 -1.388499 2.312996 1.957369 -2.602399 0.868218 1.026057 -0.888402 0.051594 1.261906 -1.882287 -0.464752 -1.058964 -0.493336 0.889638 -1.298526 -0.691828 0.414565 -2.337471 3.212830 0.323815 1.314667 0.368547 -1.665987 -1.516338 2.424314 0.080116 -0.480459 -0.839988 -0.551326 -2.404342 -2.285012 0.366013 0.735379 -1.309275 -1.365343 -2.179642 0.348652 1.402385 -0.593088 1.323370 -1.995658 -0.734582 0.823216 -0.096647 1.749666 -1.601297 -1.250191 -1.073955 -0.818417 1.756270 -1.672977 1.875881 2.785824 -0.608414 2.687974 0.151376 -0.926117 -0.224834 1.193269 -1.674538 2.259903 -0.393469 1.510331 -0.111261 1.726705 -1.561124 -0.211848 -0.326075 -0.301033 -0.208936 1.353938 -1.391471 -0.047928 0.051535 -2.379475 -0.745368 0.644607 -0.207354 0.176443 -0.020818 0.085239 -1.764644 -0.683532 -1.878356 0.202363 1.616098 -0.976394 -1.809409 0.258546 -0.205588 -0.554233 -0.157488 0.328037 0.211602 1.476434 -2.037266 -0.477821 0.265375 -0.235340 -2.487013 -2.152712 -0.536230 -1.466001 -1.803938 1.219252 -2.091404 -0.059587 -1.614941 -0.524332 -3.097152 -1.293054 0.413901 3.110106 0.594967 -1.179250 0.663968 -0.042002 1.926894 0.339839 0.767280 0.314824 0.648795 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -2.981910 2.823050 2.160887 -1.694175 5.258835 0.779319 1.792016 2.153987 -2.206842 3.534994 -4.783741 -0.795828 -1.233742 -3.962045 -0.087501 -2.685542 0.427915 -0.163561 -0.866295 0.860276 1.683743 -2.266413 0.061287 -2.200085 -0.626802 -4.610696 -1.446471 0.201445 3.612187 -0.303737 0.514088 -0.034722 5.320619 0.373467 4.356676 3.201496 1.564930 3.677012 0.363204 -0.351510 -0.553591 3.106074 -2.434376 -3.452582 -0.342074 -2.947870 -2.879610 -1.684917 1.110947 -2.606155 -0.731011 3.141603 -0.497195 0.496580 -2.362080 2.295410 3.487020 -0.484094 5.227737 1.065213 -2.395456 -1.289026 -3.036955 3.018968 -1.399054 1.320948 -0.641584 -3.124690 0.534140 0.208978 -1.274495 -1.513268 -1.191427 2.769445 1.843528 -3.153475 1.286158 -1.308790 -5.280416 -3.457267 -2.434347 1.182851 0.711331 3.736585 0.276968 -0.001299 1.204066 0.871428 0.040489 -5.231096 -0.532191 4.886993 -2.476773 -0.985544 -2.288702 3.145387 0.086522 1.738082 -2.309697 -1.925799 1.082809 0.490271 0.519804 -4.277076 -0.530822 -4.678855 1.268305 0.369646 -0.338519 2.243430 1.639764 1.613945 2.852325 3.699947 -4.483510 1.462814 -3.697296 1.434071 -0.757617 -0.029593 -0.453258 1.017834 0.190419 1.243542 3.848357 -5.003385 2.090675 1.773695 -1.826873 -4.371511 -0.366695 -3.672859 -3.365693 -0.461313 1.507741 1.132614 0.772665 -2.324554 0.166516 -0.948852 -1.428294 -2.221862 0.676732 4.191996 -4.558902 -0.487160 -0.270064 -0.126111 -2.288787 3.413400 2.303780 1.812189 4.807233 2.362314 -1.125879 2.558388 -3.650633 0.457060 5.899240 2.038287 -4.095406 3.062838 -3.336374 0.010112 1.699551 1.583168 2.437382 0.846470 -4.410388 -2.224912 2.005804 -0.807052 4.824027 1.896513 1.465387 -2.465209 5.417483 -1.165837 -2.752508 4.813279 3.218501 -4.643601 2.052761 2.264153 -3.516715 -0.442357 2.600323 -3.455399 -0.700846 -2.565616 -0.295593 1.427872 -2.366140 -1.018172 0.326666 -4.401650 5.473541 0.511675 1.853496 0.867644 -2.940564 -4.472638 5.110779 -0.112633 -0.515937 -1.745144 -1.424285 -3.958015 -4.441970 0.582068 0.660259 -2.748531 -1.901696 -4.019838 0.688219 2.906145 -1.167785 2.984544 -4.070287 -1.224249 1.668296 1.269179 2.417739 -2.040286 -2.431419 -0.885063 -0.892330 2.369965 -2.611512 4.015349 5.012453 -1.488659 4.467538 -1.313595 -2.729404 0.685237 2.103742 -3.684470 4.337850 -0.814698 3.276193 0.180324 3.104072 -2.864896 -0.917246 -0.021611 -1.513073 -1.135871 2.263875 -2.794251 -0.028709 0.706143 -3.578693 -2.027103 1.108095 -0.205549 0.694983 -0.056242 0.599066 -3.295185 -0.511009 -2.666924 0.736918 2.954786 -0.459247 -3.028783 0.860832 0.451936 -0.236397 -0.520623 0.445264 0.292257 2.835202 -3.885794 -0.660771 0.205465 -0.064815 -3.632080 -5.249538 0.214333 -3.598547 -3.413265 2.574099 -4.635680 0.243878 -3.034423 -0.812471 -5.307203 -2.047463 1.330310 5.775186 1.212892 -2.419429 1.200119 -0.371109 3.184669 0.119828 1.360481 0.770575 1.872261 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.802496 0.149057 0.056894 -0.430329 1.748515 0.053257 -0.041046 1.106012 0.172937 0.516635 -1.301679 -0.504879 -0.353501 -0.863641 0.212679 0.039762 0.186304 0.383115 -0.790859 -0.451493 0.699846 0.270600 -0.018012 -0.751983 0.068055 -0.119893 -0.650541 -0.049437 0.281119 0.156760 -0.843845 0.229350 1.239520 0.018309 0.895149 0.649421 1.097282 1.177354 -0.375996 0.680256 0.387011 0.906854 -0.509557 -1.311530 0.499286 -1.130463 -0.601227 -0.264493 0.437119 -0.826824 1.091188 0.662798 0.153840 -0.014225 -0.177256 0.388324 0.544108 0.272798 1.077655 0.706046 -1.216418 -0.010469 -0.829828 0.883366 -0.564041 1.642254 0.005309 -1.364321 -0.974549 0.358886 0.773243 -1.165937 -1.009801 0.132127 -0.015676 -0.283287 0.768469 -0.061091 1.027277 -0.468210 -1.051632 0.228086 -0.505529 0.799666 -0.312342 -0.313854 -0.502334 -0.224201 0.375560 -0.849934 -0.621243 1.005871 -0.792357 0.832623 -1.086442 -0.592546 -0.372898 0.380010 -0.554983 -0.680475 0.354332 0.622126 0.101003 -0.114790 0.053460 -0.605224 0.933091 0.606705 -0.084878 0.254213 0.307073 0.150302 0.235600 0.498768 -0.090440 0.331359 -1.015662 0.350129 -0.392146 0.267500 -0.167086 0.182676 0.643431 -0.215495 0.540945 -0.840939 0.861550 0.337843 -0.873565 -0.472029 0.449350 -0.728198 -1.198615 -0.074198 0.657978 0.422939 -0.239862 -0.261877 0.278919 -0.480305 -0.921937 -0.594510 -0.553212 -0.069303 -0.895303 -0.353164 -0.298051 -0.430795 -0.437655 0.730778 0.306982 0.322880 1.096538 0.653612 -0.454429 -0.252903 -0.993202 0.585750 1.526915 0.143986 -1.152412 0.255339 -0.685648 0.625710 0.764650 0.145063 0.128368 0.913298 0.037755 0.360197 -0.353331 -0.296510 1.169252 0.912480 0.852545 -1.043720 0.089406 -0.757791 -0.288148 1.688349 0.829903 -1.517807 0.168735 0.743562 0.155734 -0.181579 0.156460 -0.562164 -0.371361 -0.791580 0.298838 0.499511 -1.144159 -0.747299 0.530474 -1.073188 1.212802 0.134866 0.111854 0.098840 -1.387252 -0.188447 1.723004 0.184357 -0.242163 -0.166917 -0.308146 -0.339523 -1.199479 0.320941 0.538299 -0.363434 -0.704992 -0.748622 0.186184 1.323039 -0.621034 0.290670 -0.540816 -0.116724 0.322596 -0.594082 0.915753 -1.194386 -0.748491 -0.627084 -0.335927 0.914638 -0.801076 -0.117947 1.244572 -0.680346 0.938187 1.074820 -0.327836 -0.532893 0.882828 -0.277174 0.914348 -0.149764 0.541322 -0.170415 1.003602 -0.822260 -0.238582 -0.277489 0.380719 -0.358097 1.026891 -0.784182 0.106041 0.228952 -0.994770 -0.320023 0.741621 0.233408 0.465893 -0.150697 -0.293968 -0.637700 -0.082456 -0.300652 0.059699 0.975757 -0.510743 -1.272287 -0.269828 -0.007229 -1.093531 -0.215005 0.430973 -0.076469 1.354003 -0.820345 0.126443 0.447838 -0.207536 -1.391515 -0.672166 -0.600821 -0.498132 -0.380760 0.650157 -0.890593 -0.600133 -0.574559 0.392561 -0.819640 -0.481488 -0.077802 1.041418 0.732655 -0.135087 0.703106 0.379362 0.915243 0.216027 -0.184694 0.213770 0.545851 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -4.594156 4.867595 4.766144 -2.755485 7.974043 1.800230 3.013534 3.808083 -4.252227 5.492011 -7.539186 -0.694775 -1.620528 -5.169311 -0.415272 -4.743947 -0.083901 -0.702585 -1.413491 1.689711 2.534613 -3.199866 -0.134522 -3.419903 -1.185771 -6.324630 -2.484499 0.164679 5.890022 -0.324871 1.082117 -0.642727 7.805987 0.220167 7.122398 5.001578 2.300075 5.343874 -0.074393 -0.505327 -1.120502 4.916765 -4.107856 -4.900182 -0.966886 -4.825573 -4.237599 -2.396386 1.562250 -4.008945 -1.499941 4.699159 -0.838911 0.882403 -2.863322 4.169210 4.738177 -0.937434 8.094459 1.458226 -4.149776 -1.554797 -5.181027 4.584384 -1.510137 2.932819 -1.582974 -4.653969 1.018902 -0.343848 -1.974546 -2.752702 -1.202746 4.827116 2.441899 -4.838187 2.057642 -2.561031 -8.342879 -5.326810 -3.218609 1.882201 1.655531 5.303450 0.267855 -0.031927 1.501883 1.812077 -0.390759 -8.334784 -0.829338 7.921248 -4.129517 -1.912981 -3.895429 4.370379 -0.185473 3.335336 -3.433307 -2.555361 1.893560 1.365989 0.646660 -7.792700 0.009927 -7.380061 1.597520 0.905213 -0.591953 3.299067 1.635434 3.120640 5.090387 6.170997 -6.643201 2.964217 -5.421496 1.976551 -1.862469 0.186320 -0.535053 1.789905 0.034037 2.340805 6.135002 -7.376185 2.891267 2.393442 -3.173357 -7.089681 -0.602077 -6.272482 -5.391572 -0.759332 1.774529 2.254104 1.100738 -4.136696 0.128977 -1.729050 -1.767683 -4.132845 1.670831 5.800090 -7.022353 -1.056072 -0.235582 0.471551 -3.690277 5.924066 3.957501 2.627566 7.561978 3.509681 -1.111594 3.251441 -5.308767 0.209949 8.365021 2.666706 -6.319277 4.853255 -5.317820 -0.282529 2.677158 2.330113 3.613928 2.191636 -7.428349 -4.169623 3.322991 -1.376323 7.520229 3.263431 2.107117 -3.206401 8.758800 -3.156337 -5.059143 6.895732 5.275184 -7.160256 2.586733 2.772120 -4.511662 -0.912208 4.335161 -5.584849 -1.127214 -3.199744 -1.270406 1.872578 -3.106594 -1.685630 0.900860 -6.920231 8.972261 0.709420 3.053862 0.923774 -4.361479 -7.270889 7.426135 0.082015 -1.330453 -2.655843 -1.553384 -6.151586 -6.530617 0.949211 1.364750 -3.901216 -3.593226 -6.231150 1.650411 3.431604 -1.974468 4.782303 -5.684094 -2.852046 2.396672 1.283717 4.343204 -3.246402 -3.717009 -2.540939 -1.552455 4.205825 -4.215630 6.740855 8.559999 -1.799335 7.459786 -1.666402 -4.750419 0.332644 3.453150 -5.919960 6.691026 -1.124592 4.730728 0.029268 4.623213 -4.631231 -1.688035 0.073902 -2.283292 -1.186420 3.509577 -3.678213 0.152162 -0.227647 -6.218026 -2.181298 1.698370 -0.856656 0.151119 0.057614 1.535654 -5.614620 -1.263327 -4.848463 0.467304 4.637150 -1.243986 -5.005078 1.463063 -0.081220 -0.406424 -0.486074 0.342621 0.462799 4.014446 -5.897629 -1.478434 0.327011 -0.536162 -6.044280 -7.601712 -0.291379 -5.752242 -5.573713 3.414043 -6.047561 0.600074 -4.822935 -1.886299 -8.339113 -4.295757 2.618548 9.048637 2.230727 -4.138683 1.522609 -0.874104 5.818543 0.803010 2.183812 0.873976 2.524264 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -2.136153 0.834971 0.066294 -0.794031 3.592332 -0.404316 1.158207 1.174292 -1.011174 2.212326 -2.912673 -1.155278 -1.124020 -2.893110 0.174699 -0.589356 1.185512 0.251581 -0.638497 0.438079 1.283500 -1.430042 0.000000 -1.350733 -0.245140 -2.563111 -0.909898 0.334051 2.588776 -1.403432 -0.677109 0.542708 4.241129 0.231892 3.416428 2.322395 1.242805 2.599938 0.641045 -1.768553 -0.304669 2.410267 -1.615835 -2.357468 -0.246697 -1.735349 -1.901046 -1.081497 1.123152 -0.646461 0.008686 2.212809 -0.353915 0.700209 -2.073492 1.340732 2.572463 -0.107569 3.798027 0.805333 -1.176038 -0.144850 -1.680639 2.468435 -1.369818 0.361202 -0.922899 -2.166734 0.154000 0.163492 -0.365031 -1.935192 -1.374455 1.732738 1.214897 -2.207217 1.228290 -0.342297 -1.243663 -3.620536 -2.712459 0.644698 -0.314130 2.729615 -0.079041 -0.040210 0.393039 0.431510 0.196778 -3.533790 -0.128383 2.413911 -2.172823 -0.492813 -0.509972 2.202498 -0.082567 1.057219 -1.932711 -2.047574 0.551064 -0.570197 0.488777 -1.573211 1.382650 -1.951354 0.362030 -0.316053 0.310096 1.775273 2.340792 1.033967 2.206574 2.335172 -2.283672 -0.434313 -2.627430 1.117762 -0.668922 -0.208246 -0.123632 1.088709 0.857340 0.445659 2.803755 -3.798537 1.209722 1.234120 -0.740806 -2.510748 -0.171268 -2.331649 -2.436919 -0.655334 1.628636 0.539517 0.489464 -1.595721 0.641910 -0.267260 -1.292228 -0.136609 0.081745 2.633029 -3.276328 -0.317368 -0.394601 -0.659348 -1.273353 2.071437 1.357774 1.585717 3.233181 1.847108 -1.677004 1.622337 -3.022327 0.501977 4.020641 0.407239 -2.826137 2.164814 -2.515151 0.063804 1.581502 1.768708 1.953876 -0.761339 -2.080090 -0.675381 1.736807 -0.082180 3.435087 -0.228339 1.159460 -1.533484 2.902820 0.128040 -1.728344 3.960913 1.236673 -3.579478 1.803635 1.659950 -1.693337 -0.128029 1.640141 -2.497395 -0.612901 -2.593179 0.552121 1.271939 -1.968485 -0.106316 0.560306 -2.947889 3.293322 0.218193 0.095917 1.163248 -2.364773 -1.827810 4.139503 -0.013560 0.108787 -1.414890 -1.614253 -1.799192 -3.362862 0.435422 -0.457208 -1.497275 -0.687511 -2.857522 0.288958 2.792228 -0.392367 2.052929 -3.503544 -0.010966 1.256801 1.142187 1.239478 -0.969998 -1.742267 0.315692 -0.672089 1.049918 -2.229152 2.173392 3.112534 -1.604753 2.004919 -0.649923 -1.465593 0.837754 1.155151 -2.859944 3.046964 -0.380338 2.438288 0.168517 2.047071 -2.200518 -0.707784 -0.132499 -0.189414 -1.415799 1.187504 -1.984391 -0.052128 0.808157 -1.825589 -2.165171 0.442279 0.039038 0.590650 0.112134 -0.486501 -2.109412 0.024151 -1.553073 0.992874 2.098568 0.040010 -1.895775 0.949605 0.580864 -0.026402 0.148426 0.280005 -0.041754 2.339024 -2.800216 -0.691185 0.232961 0.972587 -1.676992 -4.118624 0.258479 -2.141293 -1.427112 2.473657 -3.388725 -0.210712 -2.002620 -0.278910 -3.344572 -0.357128 0.755061 3.970254 0.994551 -1.891909 0.977562 -0.158390 1.760041 -0.198410 0.658256 0.342057 1.239210 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.504746 3.184159 4.164812 -2.502597 9.035868 1.088160 2.821019 5.484411 -3.259982 5.734773 -8.500421 -3.067284 -2.797748 -5.467941 -0.403332 -4.746963 1.468287 -0.822998 -3.191627 1.054972 3.266475 -1.610495 -0.209714 -3.951391 -1.261805 -4.809612 -3.616859 0.062591 6.178390 -1.839846 -0.495160 -0.202478 10.885864 0.382038 9.817948 5.724245 3.573332 6.358551 -0.598586 -0.648196 -1.181620 6.623554 -5.155552 -5.019446 -1.905098 -6.058673 -4.710915 -1.424364 2.228308 -2.862120 -0.790957 5.116919 -0.339448 2.679275 -2.517941 4.568387 4.236195 -0.383068 9.756153 2.089952 -5.660928 0.057769 -6.032635 6.105834 -2.149798 4.824117 -3.312735 -5.524726 -0.580849 -1.090111 -1.044576 -5.462379 -2.741331 5.402935 2.513022 -5.374622 3.752496 -1.804974 -4.514580 -7.510061 -5.501288 2.484852 0.994838 5.774188 -0.394610 -0.205046 1.259374 1.974915 -0.395877 -10.056797 -0.515246 7.710187 -6.721533 -1.840932 -4.473309 2.977605 -2.437016 5.123494 -4.685372 -4.549969 2.244160 0.951883 0.455272 -7.828034 2.959964 -6.376293 1.697062 1.084085 -0.142511 3.593095 3.272455 3.907801 6.922349 7.552579 -5.882274 1.782012 -6.177645 2.613393 -4.163673 -0.068308 -0.515793 2.803281 1.402252 2.671403 7.514385 -8.799489 2.838337 3.065354 -4.355314 -7.293118 -0.520221 -8.047160 -7.504324 -1.321549 3.010809 2.762963 1.431409 -5.768982 1.304118 -2.187108 -1.799235 -2.680590 1.108659 3.477695 -7.921311 -2.103366 -0.350183 0.161045 -4.368337 7.745207 4.336077 3.201996 8.706529 3.556994 -3.272484 1.317334 -6.794682 0.142356 9.477942 0.270114 -7.571098 5.766973 -6.729766 0.270777 4.056337 3.602139 4.104633 1.236519 -6.444512 -3.083734 2.943666 -0.509892 9.541926 2.151589 2.876174 -3.208901 8.060281 -4.718286 -5.973145 9.201568 6.058113 -9.003492 2.004118 2.721442 -2.835247 -1.324945 4.952239 -7.133108 -1.481731 -5.184418 -0.929500 2.441738 -3.904262 -0.745373 3.420577 -8.288058 10.136568 0.771405 1.466192 1.503180 -6.702038 -7.412270 9.948453 0.295615 -0.994131 -3.189495 -2.493501 -5.298173 -8.407128 1.307595 0.443465 -3.116783 -2.976693 -7.286303 2.584773 4.697560 -1.867909 5.949730 -6.882512 -2.758602 2.660913 -0.327063 5.652653 -2.988735 -4.618006 -3.066781 -2.931443 5.182934 -6.720079 6.142559 9.924937 -2.377791 8.365902 -0.830478 -6.607158 -1.078051 3.521826 -7.280678 7.854021 -1.305824 4.399135 -0.244721 5.655373 -6.135561 -2.465090 -0.513872 -1.124156 -2.389232 4.026611 -4.132591 0.373470 -1.315200 -7.057009 -2.755174 1.419549 -1.649609 -0.678888 0.099992 0.806428 -7.624962 -0.725096 -5.304866 1.183605 5.900306 -0.998657 -6.177649 2.297935 -0.439514 -1.091770 0.414781 0.020204 -0.475307 5.775159 -6.983193 -3.304182 1.382117 0.737148 -6.358092 -9.089334 -1.781780 -6.560524 -4.770592 4.306927 -5.789292 -0.251165 -5.289648 -2.137851 -7.783330 -4.702939 3.992267 10.640854 3.585290 -6.322975 1.460871 -0.442687 7.112516 1.482016 1.799937 0.576879 2.374250 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/boyer-moore-algorithm.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/boyer-moore-algorithm.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/boyer-moore-algorithm.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/boyer-moore-algorithm.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.908367 4.274198 3.519468 -2.536607 6.934082 0.437107 3.349894 2.947345 -3.285540 5.131678 -7.465986 -2.541239 -2.452562 -5.988478 -0.205437 -5.027719 1.141018 0.025004 -1.286375 2.286293 2.933164 -3.648487 -0.305042 -3.563531 -0.929269 -6.255535 -2.278942 0.236925 5.894921 -1.142711 1.338532 0.119787 9.344525 0.700858 8.172037 5.614154 2.033433 6.120909 0.826534 -1.698302 -1.572648 5.770702 -4.087152 -5.123132 -1.180988 -4.374696 -4.097315 -2.747489 1.782425 -3.161090 -1.478802 4.947050 -0.722361 1.499305 -3.945892 3.503531 5.763441 -0.109754 8.562560 1.631397 -2.934168 -0.488280 -4.549682 4.412308 -2.239242 1.607986 -1.746602 -4.134291 1.556126 -0.617915 -2.221433 -2.841408 -1.830142 4.723259 3.005087 -5.172240 2.587295 -1.968749 -8.038403 -6.500386 -4.333036 1.567192 1.110935 5.902645 -0.257671 -0.133955 1.734805 1.677051 -0.136758 -8.358978 -0.461628 7.194588 -4.332273 -2.754070 -2.571861 5.596365 0.323755 3.332649 -4.188847 -3.324939 1.765600 -0.114372 0.892587 -6.228982 0.263524 -6.302582 0.906383 0.446408 -0.584227 4.846932 3.306776 3.767064 5.752203 6.034995 -6.976649 1.901674 -5.907108 2.211427 -2.295926 -0.316143 0.308147 2.101685 0.400997 2.196835 6.086319 -8.068889 2.805873 3.138678 -2.314205 -6.586983 -0.476131 -6.276038 -5.643495 -1.531009 2.628743 2.320187 1.301629 -4.336718 0.362617 -1.198833 -0.816870 -2.837108 1.409288 5.939388 -6.891138 -1.132632 -0.578438 -0.214756 -3.456083 5.485317 3.338775 2.615001 7.558067 3.625518 -2.483577 3.303698 -5.666682 -0.040028 8.646789 1.440969 -6.439591 5.006102 -5.044678 -0.558676 2.963027 3.182055 4.194979 0.764370 -7.116736 -4.097181 3.037838 -1.360759 7.654247 1.701575 1.696465 -3.745296 9.258698 -1.645757 -5.301946 8.055675 4.660640 -6.914301 2.151053 2.819659 -5.834311 -1.325751 4.311518 -5.536662 -1.064941 -4.335812 -0.403211 1.910381 -3.368837 -1.086879 0.942408 -7.176464 8.207385 0.564621 1.750321 0.985130 -4.951267 -7.048603 8.459186 0.110445 -0.933012 -2.949839 -2.377010 -5.131858 -7.347486 1.225984 0.053451 -3.405577 -3.048787 -6.247554 1.793641 4.086477 -1.669262 4.728075 -6.432224 -2.439265 2.681308 2.160462 3.741292 -2.755625 -4.142176 -1.158345 -1.197647 3.736836 -4.002059 6.754459 8.656566 -2.278449 6.237713 -2.008081 -5.297581 1.241846 3.446633 -6.911880 6.986149 -1.478143 4.769620 0.054994 4.456488 -4.835231 -2.195214 0.298607 -2.130371 -2.130434 2.945375 -3.784136 0.296078 0.067946 -5.438989 -2.711788 1.436882 -0.922556 0.111089 0.299821 1.285508 -6.038135 -0.608428 -4.212127 0.784953 5.028210 0.280482 -4.700924 1.915458 0.293956 0.458197 -0.098440 0.026107 0.021915 4.360452 -6.233312 -1.680720 0.201172 0.153593 -4.634701 -8.601503 0.563247 -5.905623 -4.928460 4.361624 -6.092666 0.715747 -4.860753 -1.559143 -7.906353 -3.509616 2.762768 9.149552 2.470703 -4.821560 1.268937 -0.947660 5.872839 0.633965 1.860238 0.726156 3.099527 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.622334 0.128498 0.228173 -0.200077 1.304208 0.126699 0.218324 1.017396 -0.564531 1.066072 -0.914078 -0.354509 -0.481390 -0.935886 0.054491 -0.107144 0.545632 -0.108958 -0.273275 0.266459 0.443276 -0.610185 0.054349 -0.438930 -0.112416 -0.992627 -0.333648 0.106998 1.056414 -0.266598 -0.280276 0.046355 1.809074 0.139814 1.077846 0.804562 0.613673 0.988263 0.610541 -1.058540 -0.278490 1.051172 -0.699972 -0.705981 -0.043421 -0.846184 -0.566653 -0.198552 0.165188 -0.363443 -0.448228 0.778377 -0.213273 0.273240 -0.680873 0.526976 0.804175 -0.232111 1.476204 0.217732 -0.292876 -0.617202 -0.661946 1.030561 -0.512151 0.107013 -0.606369 -0.925910 0.134995 -0.139524 -0.268123 -0.556170 -0.337204 0.842155 0.367906 -0.769033 0.385274 -0.193342 -0.452234 -1.006700 -1.066593 0.127098 -0.465550 0.851540 0.006034 -0.085194 0.301608 0.254887 0.091289 -1.435599 0.086094 0.790079 -1.004031 -0.341162 -0.164748 0.715014 -0.022733 0.570741 -0.718044 -0.576814 0.120947 -0.199814 0.172810 -0.902356 0.731398 -0.784425 0.071275 -0.099667 0.470411 0.936555 0.935842 0.463641 0.957506 0.844353 -1.032808 -0.356888 -0.626495 0.388833 -0.326627 -0.092326 -0.206095 0.656686 0.402750 0.368756 1.275039 -1.465372 0.181590 0.427806 -0.385235 -0.610409 -0.111950 -1.018333 -0.866169 -0.269683 0.650206 0.138008 0.264916 -0.791634 0.289828 -0.026901 -0.558677 -0.272950 0.010076 0.877227 -1.646563 -0.216917 -0.183806 -0.211102 -0.298093 0.901507 0.534213 0.664110 0.984369 0.635128 -0.682549 0.794859 -1.135828 0.297933 1.623152 0.050514 -1.152207 0.847533 -1.135868 0.011630 0.582863 0.619063 0.905256 -0.133128 -0.764062 -0.501655 0.491456 0.141700 1.362788 0.200776 0.490865 -0.715603 0.997750 -0.248776 -0.685909 1.397498 0.350412 -1.152654 0.507362 0.451808 -0.968109 0.142659 0.320197 -0.986948 -0.019973 -1.119224 -0.066315 0.654278 -0.641521 0.118509 0.279589 -1.157054 1.298868 0.128041 0.078259 0.303627 -0.779483 -0.701133 1.608424 0.134469 0.030159 -0.739487 -0.663483 -0.942421 -1.373033 0.181166 -0.422423 -0.540177 -0.267911 -1.209028 0.011327 1.010187 0.063467 0.633283 -1.923676 0.070272 0.459111 0.374242 0.542720 -0.498106 -0.703237 0.102968 -0.653446 0.511441 -1.076002 0.839279 1.175636 -0.475191 0.830830 -0.397472 -0.624461 0.205618 0.331713 -1.195151 1.175818 -0.423458 0.900284 -0.007895 0.746885 -0.838232 -0.117600 -0.202227 -0.116980 -0.502097 0.262111 -0.715548 -0.030187 0.305077 -0.784955 -0.757686 0.036314 -0.187914 0.177050 0.129801 -0.435835 -1.047553 -0.093139 -0.412371 0.348669 0.807504 -0.079873 -0.642560 0.371858 -0.046318 0.099393 -0.418291 0.037096 -0.068706 0.630417 -1.130484 -0.437712 0.122434 0.342325 -0.536571 -1.356577 -0.096118 -0.491556 -0.491999 0.984372 -1.137002 0.084658 -0.794259 -0.301894 -1.277663 -0.225473 0.174968 1.493302 0.136599 -1.062816 0.258460 -0.052718 0.760151 0.090668 0.440269 -0.064480 0.146087 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.719657 0.333586 0.250632 -0.102194 1.426687 0.106813 0.053446 1.645389 -0.959686 0.841754 -0.895045 -0.027423 -0.217056 -0.620527 0.056529 0.049617 0.223053 0.177603 -0.384574 -0.007323 0.491105 0.011625 -0.252966 -0.356340 -0.122039 -0.499745 -0.257792 -0.006820 0.904227 -0.047310 -0.605050 0.185972 1.597207 -0.056315 1.583810 0.902021 0.899338 0.726663 0.275777 -0.135339 -0.263559 0.908418 -0.722571 -0.547262 -0.145169 -0.878241 -0.586052 -0.187384 0.249834 -0.318646 0.692689 0.612974 -0.151192 0.571001 -0.072995 0.530961 0.214577 -0.382129 1.255204 0.356484 -1.070449 -0.184169 -0.504863 1.808988 -0.237349 0.706300 -0.347034 -0.830847 0.093021 -0.295660 0.374753 -0.784569 -0.183115 0.910765 0.050054 -0.609121 0.636110 -0.153173 0.271740 -1.163283 -0.982971 0.283196 -0.354327 0.703427 -0.226900 -0.139534 -0.475674 0.231008 -0.161408 -1.336723 0.042058 1.243688 -1.042204 -0.052605 -1.632294 0.106189 -0.098862 0.891414 -0.416446 -0.669748 0.401056 0.167184 0.096281 -1.088587 0.770625 -0.486612 0.114825 -0.047417 0.224954 1.166242 0.117082 0.590046 1.182067 1.027646 -0.018375 0.136287 -0.768694 0.643813 -0.476635 0.019219 0.063757 0.381493 0.742072 0.135944 1.008169 -1.118276 0.097079 0.315341 -0.438598 -0.803838 -0.020603 -1.237652 -1.016469 -0.411688 0.517883 0.459780 -0.013747 -0.901913 0.232287 -0.145598 -0.835432 -0.983125 0.006760 0.193592 -1.219253 -0.364189 -0.143636 0.079505 -0.538970 1.110001 0.621172 0.681885 1.018187 0.560654 -0.259400 -0.004604 -1.074050 -0.008244 1.079397 0.013800 -1.083389 0.781516 -0.957246 -0.113307 0.597269 0.642300 0.433152 0.393370 -0.591945 -0.385883 0.111945 0.124666 1.298803 0.587791 0.363476 -0.210731 0.776326 -0.574604 -1.158853 1.239695 0.684548 -1.095900 -0.012112 0.118585 0.113357 -0.028709 0.672525 -1.224856 -0.561708 -0.607233 -0.107249 0.518325 -0.700233 0.129333 0.844261 -1.062439 1.370484 0.015729 0.052994 -0.078328 -1.046591 -0.388786 1.240802 0.293169 -0.110836 -0.407735 -0.371852 -0.884084 -0.944775 0.202060 0.103104 -0.025537 -0.613604 -0.928867 0.105410 0.716162 -0.071949 0.714273 -1.304134 -0.290081 0.388300 -0.273255 0.647861 -1.278421 -0.660134 -0.593230 -0.204429 0.824204 -0.961360 0.844876 1.406068 -0.276317 1.005991 0.629858 -0.688237 -0.275387 0.366395 -1.133255 0.960412 -0.106198 -0.110452 0.052155 0.643481 -0.871956 -0.480783 -0.302631 0.473421 -0.412095 0.601125 -0.330277 0.161012 -0.424025 -1.057593 -0.209362 0.024688 -0.300074 -0.081589 0.122305 -0.419037 -1.106683 -0.233055 -1.070138 0.087140 0.846262 -0.513428 -0.705267 0.545642 -0.488403 -0.361267 0.583699 -0.026069 0.009090 0.752555 -0.923556 -0.586803 0.317680 0.284536 -0.906735 -1.062917 -0.618146 -0.486063 -0.811308 0.620253 -0.772916 -0.329742 -0.730122 -0.399938 -1.370492 -0.831666 0.533095 1.532588 0.259950 -0.718138 0.113208 -0.046785 1.044033 0.359266 0.333537 -0.079729 0.364318 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -1.228927 0.180067 0.156386 -0.256112 2.054663 -0.223037 0.660938 1.076426 -0.857151 1.224939 -1.466419 -0.816999 -0.856914 -1.299802 0.093819 -0.135378 0.839344 0.121368 -0.490741 0.295666 0.777330 -0.661626 0.050874 -0.637449 -0.073733 -0.899354 -0.548897 0.178201 1.610240 -0.576623 -0.723435 0.264318 2.453700 0.080438 2.071519 1.202358 0.521516 1.387085 0.314312 -1.686445 -0.300832 1.565285 -1.022371 -1.305023 -0.157726 -1.155458 -0.954534 -0.584841 0.786707 -0.305990 -0.297673 1.147112 -0.242673 0.559127 -0.926094 0.737520 1.255304 0.147739 2.201086 0.396787 -0.714886 -0.050936 -0.941660 1.169903 -0.577519 0.296052 -1.005941 -1.363222 -0.024118 -0.119932 -0.270906 -1.237524 -0.515507 1.072690 0.573943 -1.081978 0.956929 -0.033839 0.020014 -2.248541 -1.744061 0.162568 -0.577886 1.464094 -0.339712 -0.100880 -0.021082 0.199869 0.083973 -2.022414 0.055789 1.193834 -1.344194 -0.337330 0.044661 0.956899 -0.117613 0.793135 -1.149570 -1.134152 0.245336 -0.358863 0.269984 -0.949230 1.560995 -0.674894 0.008426 -0.191583 0.659830 1.300162 1.342483 0.762823 1.422962 1.371880 -1.078300 -0.273810 -1.271914 0.691486 -0.979585 -0.085331 -0.021791 0.918904 0.798828 0.230280 1.652126 -2.151845 0.489771 0.700891 -0.247441 -1.229053 0.054185 -1.454250 -1.439996 -0.459253 1.027634 0.226877 0.151418 -1.137310 0.504739 -0.165091 -0.731917 0.480150 -0.080806 1.080929 -1.984643 -0.282155 -0.278847 -0.418566 -0.447912 1.239621 0.721415 0.983273 1.720287 1.073125 -1.225157 0.451472 -1.796191 0.399225 2.135489 -0.504950 -1.537192 1.141301 -1.320750 0.038639 1.111238 1.010265 1.262943 -0.240736 -0.780611 -0.296645 0.746053 0.215861 1.991302 -0.037674 0.838187 -0.846021 1.356761 -0.537213 -0.977322 2.042838 0.513245 -2.046880 0.828772 0.668347 -0.890937 0.057389 0.693767 -1.433424 -0.286892 -1.640463 0.248383 0.957026 -1.183322 -0.048937 0.593070 -1.659426 1.854973 0.028135 -0.161072 0.641126 -1.394515 -0.382103 2.388393 0.347746 0.080684 -0.852873 -0.986072 -1.062978 -1.904293 0.280317 -0.547372 -0.576345 -0.413160 -1.603415 0.026799 1.357881 0.054876 1.138127 -2.108531 0.264100 0.684038 0.428788 0.783201 -0.442166 -1.034425 0.064214 -0.858901 0.715037 -1.444628 1.129858 1.648628 -0.943553 1.059440 -0.104202 -0.720221 0.391923 0.491508 -1.683781 1.658003 -0.191503 1.519976 -0.008841 1.133640 -1.209522 -0.383687 -0.178261 -0.060497 -0.875235 0.796679 -1.005947 -0.009081 0.391818 -1.091708 -1.224168 0.068226 -0.137003 0.270858 0.193823 -0.388719 -1.650430 0.032652 -0.864604 0.511509 1.246586 -0.166985 -1.262195 0.576780 0.052402 -0.056502 -0.230449 0.095530 -0.150369 1.216764 -1.555487 -0.638174 0.228254 0.735195 -0.738288 -2.012267 -0.078622 -0.959011 -0.724015 1.652153 -1.562775 -0.055650 -1.116477 -0.258742 -1.779706 -0.351998 0.455404 2.245870 0.527288 -1.225123 0.547690 -0.006226 1.088492 -0.013769 0.347171 -0.044286 0.539866 +PE-benchmarks/ugly-numbers.cpp__main = -0.422618 0.005695 -0.154376 -0.172862 1.067658 0.044156 -0.130521 0.864609 0.138258 0.524511 -0.472487 -0.216960 -0.094646 -0.341818 0.082271 0.232371 0.025047 0.259156 -0.420081 -0.279235 0.315774 0.253271 0.029172 -0.152129 -0.107702 -0.182520 -0.316716 0.108339 0.224579 -0.041078 -0.550036 0.074630 0.726739 -0.121075 0.625890 0.347459 0.674488 0.432620 -0.096551 0.373161 0.145626 0.383868 -0.368426 -0.514736 0.184922 -0.523874 -0.483750 -0.109922 0.282011 -0.426676 0.766773 0.378766 0.001824 0.104013 0.074676 0.333924 0.001415 -0.027578 0.660602 0.272510 -0.760559 -0.058174 -0.505599 0.919954 -0.240223 0.763803 -0.206538 -0.879365 -0.528553 0.134193 0.462069 -0.637712 -0.385607 0.339286 0.031012 -0.252571 0.395720 -0.096087 0.877958 -0.431166 -0.590859 0.209413 -0.341454 0.382583 -0.121115 -0.049230 -0.383057 0.023262 -0.056757 -0.659009 -0.103914 0.596362 -0.580781 0.459476 -0.683081 -0.421961 -0.217056 0.293671 -0.210499 -0.384921 0.172678 0.264140 0.115672 -0.059950 0.384386 -0.224749 0.324688 0.233239 0.210666 0.161123 0.124178 0.045262 0.308523 0.498206 0.070394 0.098242 -0.458936 0.342301 -0.253998 0.199440 -0.179241 0.218431 0.511588 0.048681 0.496718 -0.560913 0.292932 0.011071 -0.420099 -0.320298 0.120916 -0.421745 -0.544822 -0.098552 0.355080 0.085044 -0.192142 -0.304598 0.255219 -0.126659 -0.660288 -0.282302 -0.187525 -0.209137 -0.546635 -0.111113 -0.133051 -0.189526 -0.198395 0.555226 0.395855 0.396450 0.671584 0.414587 -0.113955 -0.225610 -0.698259 0.253912 0.713037 0.025780 -0.613031 0.362763 -0.588454 0.173152 0.418388 0.297303 0.116062 0.467444 0.097318 0.197744 -0.128872 0.173394 0.777899 0.422056 0.363878 -0.390068 -0.146294 -0.500144 -0.247557 0.931133 0.466439 -0.840978 0.031644 0.217492 0.164697 -0.041523 0.221748 -0.495806 -0.284253 -0.406629 0.139331 0.447206 -0.493552 -0.241251 0.520786 -0.557934 0.721661 -0.051403 -0.056643 0.208498 -0.794670 0.098109 0.871476 0.179841 -0.103578 -0.155374 -0.259127 -0.173028 -0.554433 0.133130 0.274559 -0.088187 -0.317563 -0.494228 0.009920 0.676602 -0.052578 0.317263 -0.523932 -0.014739 0.254585 -0.481545 0.422132 -0.684641 -0.247677 -0.428695 -0.221745 0.404447 -0.512520 0.005575 0.659147 -0.361056 0.489239 0.596491 -0.168339 -0.326852 0.294794 -0.356995 0.605846 0.015993 0.007527 -0.025443 0.411961 -0.390063 -0.027595 -0.220765 0.316081 -0.170645 0.471317 -0.295881 -0.042372 0.048530 -0.654309 -0.216556 0.128993 0.141139 0.110934 0.056102 -0.323795 -0.480929 -0.151515 -0.355806 0.067743 0.479188 -0.310114 -0.542052 0.189315 -0.146293 -0.531085 -0.128572 0.146075 0.063394 0.652800 -0.532355 -0.076959 0.282651 0.108415 -0.780405 -0.362552 -0.451719 -0.228494 -0.252304 0.219838 -0.514461 -0.407889 -0.362144 0.062929 -0.483556 -0.284415 0.129666 0.765585 0.377261 -0.237477 0.383844 0.100969 0.486593 0.167614 -0.076838 0.170395 0.258447 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -2.948569 2.778917 3.021542 -1.296170 4.405198 0.902866 1.859418 2.546350 -2.815545 2.991379 -4.574922 -1.115639 -1.477023 -3.299667 -0.257392 -3.711413 0.374521 -0.349922 -0.978847 1.101119 1.749261 -1.857808 -0.437125 -2.128205 -0.430668 -3.387131 -1.795719 -0.106544 3.971642 -0.496527 0.604418 -0.176828 5.648600 0.255264 5.089620 3.325728 1.517596 3.352020 -0.023969 -0.890681 -1.168302 3.656214 -2.729003 -2.988280 -0.946955 -3.151640 -2.134499 -0.754856 1.079274 -1.654155 -1.632508 2.729720 -0.633853 1.212772 -1.587871 2.265349 2.594472 0.072891 5.127376 0.890824 -2.589657 -0.947392 -3.212151 3.189521 -1.033089 1.886964 -1.452766 -2.648816 0.891859 -0.923679 -1.670939 -1.864905 -0.793193 3.308615 1.555448 -2.820811 1.575644 -1.307082 -5.442889 -2.958637 -2.527906 0.850243 0.583554 3.215884 -0.268373 -0.277908 1.057342 1.109689 -0.206385 -5.306536 -0.301959 4.973151 -2.962402 -1.179951 -2.329399 2.533640 -0.218692 2.712369 -2.266630 -1.750624 1.154417 0.496054 0.332105 -4.994914 0.540242 -4.187547 0.711755 0.042252 -0.283335 3.017119 1.294659 2.513396 3.703251 3.979310 -4.044441 1.080396 -3.235413 1.370494 -2.212727 -0.023328 0.162043 1.489488 -0.087221 1.411098 3.979840 -4.642997 1.257748 1.656240 -1.653466 -4.356618 -0.340292 -4.549194 -3.718019 -0.851862 1.350726 1.736293 0.603489 -3.144697 -0.023419 -0.844097 -0.882121 -2.457585 0.993555 2.788581 -4.249541 -1.060719 -0.267168 0.251177 -2.295698 3.815473 2.251694 1.766363 4.489237 2.202274 -1.227914 2.008708 -3.335471 -0.084968 4.998814 0.663353 -4.124915 2.921525 -3.439715 -0.331257 1.896659 1.648155 2.580683 1.578675 -4.316585 -2.605327 1.615439 -0.726525 4.631198 1.925473 1.066906 -1.592385 5.561077 -2.039233 -3.852457 4.554208 2.533662 -4.408677 1.609027 1.189676 -2.786454 -0.608707 2.496274 -3.707451 -0.369200 -2.640257 -0.825995 1.248161 -2.096084 -0.462320 1.151084 -4.472239 5.568306 0.397413 1.423132 0.476931 -3.250498 -5.266194 5.190854 0.204667 -0.730021 -1.933374 -1.039501 -3.437439 -4.101809 0.679109 0.208791 -2.178492 -2.228005 -3.872221 1.210496 2.201167 -1.007196 3.395111 -3.793764 -1.933703 1.333091 0.980754 2.836808 -1.825922 -2.679391 -1.635863 -1.158844 2.910160 -2.925916 4.113527 5.541131 -1.097508 4.626460 -1.221734 -3.920755 0.024391 1.978715 -4.130806 4.027221 -0.858829 2.531009 -0.125709 2.811537 -3.219448 -1.544565 0.200951 -1.164241 -0.989049 1.946125 -1.867520 0.420197 -0.569191 -3.954609 -1.022148 0.824364 -1.102979 0.026034 0.200119 0.802903 -3.996928 -0.602749 -2.519562 0.156293 3.142544 -0.448692 -3.135163 1.065217 -0.750539 -0.100405 -0.001742 -0.039614 -0.154406 2.321631 -3.631730 -1.645919 0.315107 -0.328396 -3.181823 -4.917098 -0.706221 -3.475224 -3.090705 2.256942 -3.219876 0.732209 -2.987790 -1.568001 -4.838123 -3.043796 1.881898 5.690917 1.684725 -3.011083 0.775332 -0.481775 4.047151 0.729712 1.370302 0.303323 1.518654 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.718150 0.457895 0.407714 -0.081601 2.718470 -0.008773 0.730027 1.392121 -0.955098 1.587955 -2.175438 -1.445464 -1.230218 -1.975967 0.051631 -1.086144 1.347270 -0.056016 -0.778156 0.384865 0.903165 -0.889819 0.189906 -1.147860 -0.101196 -2.198774 -0.856954 0.000107 2.209824 -0.335632 -0.279893 0.163580 3.802475 0.367058 2.782636 1.409238 0.838884 1.695170 0.342961 -1.844589 -0.493723 2.133580 -1.460543 -1.554580 -0.477848 -1.794834 -1.460958 -0.341342 0.802389 -0.607242 -1.564467 1.317739 -0.134098 1.083716 -1.059388 0.743652 2.240654 0.106756 2.896342 0.350235 -0.880193 -0.539142 -1.109146 1.543605 -0.829246 0.024146 -1.402705 -1.707615 -0.179073 -0.186443 -1.002002 -1.041889 -0.739602 1.560113 1.374158 -1.500551 1.265949 0.200331 -0.966908 -2.807967 -2.058261 0.223390 -0.793177 1.910709 -0.303572 -0.023423 0.942584 0.173037 0.386894 -2.814139 -0.029378 1.766603 -1.862953 -0.646467 -0.139122 1.284656 -0.039947 1.401770 -1.422145 -1.871523 0.164615 -0.503836 0.099651 -1.515730 1.328054 -1.280865 0.010559 -0.623397 0.691523 2.356425 1.161552 1.178349 1.762918 1.988530 -2.422518 -0.581569 -1.371005 0.902439 -1.859421 -0.169383 -0.137603 0.954906 0.947777 0.863341 2.224582 -3.011213 0.773217 1.282772 -0.206022 -1.694108 -0.167646 -2.215100 -1.921036 -0.395578 1.211450 0.198115 0.544929 -1.774218 0.525994 -0.266355 -0.661892 0.381852 -0.109573 1.465841 -2.951158 -0.422526 -0.197130 -0.324434 -0.877619 1.619843 0.840556 1.061284 1.909128 1.169685 -2.037400 1.588664 -2.075534 0.511745 3.426898 -0.552078 -2.090900 1.491779 -1.872266 0.024606 1.508738 0.954397 1.643926 -0.362007 -1.404705 -0.647607 0.550747 0.217441 2.694393 0.490713 0.858829 -1.939650 2.380107 -0.761087 -1.305057 3.038759 0.852611 -2.798397 1.346994 0.962801 -2.488365 0.188829 0.698106 -2.023712 -0.309285 -2.710166 0.299419 1.040703 -1.350483 0.101912 0.932761 -2.367542 2.473564 0.341355 -0.133592 0.759333 -1.510939 -1.813216 3.462890 0.383765 0.255784 -1.254066 -1.224982 -1.550181 -2.738972 0.180325 -1.094534 -1.235545 -0.194521 -2.231909 0.140402 1.888976 -0.039325 1.784372 -3.827807 0.327056 0.580128 0.903814 0.887908 -0.811006 -1.426236 -0.122928 -1.308864 0.789887 -2.111409 1.579147 2.148155 -1.117947 1.757924 -1.500323 -2.386049 0.534202 0.494844 -2.123213 1.867517 -0.581048 2.309730 0.077870 1.803287 -1.586732 -0.434374 -0.337769 -0.886054 -1.405239 1.208495 -1.625771 -0.071809 1.060685 -1.250251 -1.894553 0.048096 -0.520137 0.841566 -0.019902 -0.508860 -2.656866 0.593291 -0.573741 0.697335 1.574099 0.190959 -1.774018 0.649808 0.205817 -0.001858 -1.135736 0.003446 -0.463217 1.375762 -2.046563 -0.990696 0.406177 0.827219 -0.833111 -3.062850 0.031863 -1.758675 -1.219659 2.306006 -2.422029 0.238947 -1.343285 -0.627420 -1.961417 -1.059085 0.970097 3.049201 0.454833 -1.940973 0.693475 0.008201 1.436193 -0.042897 0.935586 -0.087876 0.665330 +PE-benchmarks/min-cost-path.cpp__main = -0.400182 -0.087001 -0.035061 -0.143817 0.805603 -0.108947 -0.085520 0.616111 0.535534 0.220056 -0.590446 -0.533463 -0.234003 -0.337057 0.160041 0.079292 0.131218 0.334095 -0.484430 -0.401568 0.412802 0.361703 -0.075786 -0.355010 0.084219 0.026947 -0.386304 -0.039927 -0.103870 0.153338 -0.563509 0.259473 0.664285 0.103404 0.535838 0.363901 0.617667 0.650713 -0.266052 0.813398 0.240326 0.484183 -0.239880 -0.709660 0.349138 -0.549132 -0.248176 -0.203954 0.210617 -0.422788 1.034222 0.306581 0.115180 0.089900 0.033455 0.051447 0.073137 0.368147 0.462305 0.467186 -0.672475 0.282703 -0.443798 0.473142 -0.321566 0.983671 0.057304 -0.834986 -0.657793 0.163795 0.711528 -0.641820 -0.575880 -0.001043 -0.090880 -0.032596 0.485190 0.064250 0.916800 -0.121984 -0.693099 0.124503 -0.302376 0.385245 -0.238245 -0.233153 -0.500791 -0.184027 0.209878 -0.336434 -0.338972 0.444099 -0.451683 0.600261 -0.587318 -0.589608 -0.202018 0.249045 -0.180072 -0.385428 0.210874 0.297961 0.051015 0.442916 -0.105687 -0.078254 0.611679 0.418743 -0.060764 0.005895 0.174936 0.022396 0.095402 0.179847 0.165835 0.251786 -0.459684 0.316767 -0.202493 0.150030 -0.007962 0.090783 0.383585 -0.195326 0.183462 -0.309030 0.378257 0.158193 -0.484584 -0.038948 0.276223 -0.380297 -0.667055 -0.144543 0.434095 0.293530 -0.212615 -0.107251 0.144184 -0.279962 -0.367544 -0.259017 -0.430704 -0.355822 -0.236316 -0.238362 -0.215884 -0.328094 -0.246470 0.361801 0.077743 0.202834 0.486642 0.343097 -0.272341 -0.645280 -0.538183 0.273192 0.711009 -0.110614 -0.555366 0.071927 -0.231336 0.398748 0.450940 0.109576 -0.030899 0.467009 0.329357 0.402834 -0.556954 -0.113969 0.607639 0.589475 0.447322 -0.504951 -0.256653 -0.465385 -0.198463 0.926077 0.504859 -0.717004 -0.232352 0.328298 0.111175 -0.214584 0.034132 -0.186556 -0.169846 -0.455564 0.258672 0.273500 -0.628063 -0.339714 0.496323 -0.543588 0.503871 0.048986 0.100695 0.050983 -0.864390 0.037337 0.992505 0.107284 -0.103455 -0.027920 -0.172943 0.059244 -0.568030 0.198871 0.266260 -0.001565 -0.348402 -0.303782 0.162956 0.778232 -0.327992 0.098159 0.101076 -0.077263 0.142833 -0.659864 0.447315 -0.718363 -0.405050 -0.376350 -0.159449 0.497760 -0.306505 -0.295145 0.644133 -0.341477 0.301086 0.948127 -0.071608 -0.437149 0.464673 -0.089820 0.409286 -0.172379 -0.101837 -0.092750 0.490187 -0.407241 -0.200649 -0.156290 0.386416 -0.251173 0.582712 -0.312686 0.121315 0.076823 -0.605707 -0.021790 0.388235 0.136997 0.237109 -0.073999 -0.174784 -0.437637 0.038092 -0.136547 0.034614 0.545406 -0.127179 -0.636770 -0.117150 -0.091839 -0.715341 -0.229702 0.242037 -0.124426 0.793663 -0.375410 0.038527 0.345906 -0.111042 -0.670552 -0.214571 -0.432907 -0.284370 -0.171398 0.242812 -0.333814 -0.393940 -0.267762 0.274481 -0.269052 -0.233725 -0.075047 0.460002 0.502987 -0.036922 0.374078 0.266023 0.483776 0.192872 -0.273870 0.141417 0.376610 +PE-benchmarks/magic-square.cpp__generateSquare(int) = -6.943220 4.452069 6.219259 -2.317540 10.149515 1.343125 2.870533 5.654130 -4.848562 7.194579 -10.130997 -2.916732 -3.915753 -5.471100 -0.286021 -5.806428 2.477885 -1.135979 -2.483991 2.676734 3.853012 -3.725328 -0.995506 -4.456792 -0.985382 -7.044227 -4.681551 0.244379 8.969214 -2.889809 -1.679705 0.725706 14.271738 0.780198 11.595936 8.056187 4.271749 8.465834 1.107781 -5.038230 -2.093650 8.666730 -6.603544 -5.009737 -1.377385 -7.680161 -5.004954 -1.751097 2.748712 -1.388077 -1.835634 6.665729 -1.408500 3.352560 -4.611862 5.398512 5.780398 0.574033 12.579054 2.180333 -4.542231 -0.907052 -6.746286 6.746247 -3.045415 3.813433 -5.383742 -6.273515 1.677956 -2.098972 0.435583 -7.958685 -3.241944 7.323588 2.151479 -6.662347 4.604737 -1.922634 -6.329705 -10.690826 -8.047462 2.046068 0.187028 7.581593 -1.140381 -0.614290 -1.052420 2.702015 -0.373307 -12.168853 -0.199185 9.536027 -7.688471 -1.982340 -4.067662 5.800969 -0.685333 5.916302 -5.975270 -5.101462 2.552994 -0.586097 0.850778 -9.252510 6.058886 -7.151055 1.096697 -0.376942 0.718051 5.987255 3.810754 6.422094 10.380435 8.893047 -7.520436 -0.264028 -7.486738 2.948051 -4.225244 -1.143332 0.584797 4.665134 -0.083482 3.111530 9.882419 -11.556500 2.406099 3.323078 -4.646550 -8.675421 -0.833000 -9.909989 -8.932646 -2.686467 4.148801 3.802120 1.420904 -7.297655 1.195224 -2.345638 -1.576149 -3.867861 1.797862 7.028792 -10.007240 -2.507433 -0.792790 -0.623677 -4.555909 8.687894 5.172134 4.856194 10.322764 5.298082 -4.202766 3.097554 -9.126115 -0.068638 10.575783 1.553423 -9.739711 7.383462 -7.441908 -0.755145 5.485268 5.575342 6.080253 0.431925 -8.106831 -5.543305 3.140876 -0.513725 11.405214 2.100909 3.144766 -2.444932 11.098404 -5.005355 -8.549468 10.453999 4.597885 -9.190379 1.839038 3.223115 -3.608188 -1.430597 5.844560 -8.926843 -1.219373 -6.467203 -1.331428 3.692524 -4.939109 -0.031982 3.641345 -10.213101 12.308363 0.667352 1.473837 2.051729 -8.214819 -10.183886 12.465401 -0.414381 -0.606386 -4.307159 -3.660347 -4.993955 -10.275661 1.459635 -0.762488 -4.010842 -4.121584 -9.418861 2.767861 5.657794 -1.658156 7.249585 -10.632236 -3.573091 3.556688 0.623096 6.122998 -3.471721 -6.099007 -2.114182 -3.053408 5.815580 -7.943990 9.381975 12.353784 -3.377812 7.854822 -2.339256 -6.286780 0.416170 3.854099 -10.261493 9.663642 -1.853471 6.988763 -0.014342 6.282053 -7.661006 -3.829688 0.244109 -0.219900 -3.664324 4.218544 -4.514527 0.820448 -1.112626 -7.564688 -3.508393 1.104825 -2.119085 -1.789151 0.686561 0.802548 -8.675184 -1.122169 -5.381906 1.524013 7.097154 -0.553294 -6.226630 3.542631 -1.217420 -0.246521 1.896598 -0.297309 -0.696808 6.192155 -8.822491 -4.565098 0.896876 1.119494 -5.948350 -12.466283 -1.914134 -7.018369 -5.881795 6.936891 -8.375883 -0.101880 -6.921761 -3.179059 -9.490561 -4.630083 4.912170 13.089211 4.863044 -8.629128 1.516144 -1.181867 8.529153 0.891093 2.309975 -0.085818 2.765643 +PE-benchmarks/magic-square.cpp__main = -0.358861 -0.102796 -0.373163 -0.119054 0.860152 -0.141578 -0.136905 0.606537 0.079612 0.392378 -0.358841 -0.146693 -0.213408 -0.520265 0.131653 0.368519 0.235916 0.281611 -0.280585 -0.232424 0.303785 0.022209 0.104306 -0.174169 -0.017253 -0.271068 -0.091130 0.091007 0.206493 -0.014584 -0.533056 0.181310 0.626344 -0.029829 0.342605 0.248236 0.477000 0.487473 0.121574 -0.030047 0.145308 0.342877 -0.195082 -0.582611 0.274002 -0.387188 -0.318813 -0.139986 0.314051 -0.341339 0.478372 0.333228 0.023717 -0.005305 -0.233240 0.167985 0.251878 0.033396 0.551023 0.245922 -0.417672 -0.275531 -0.268383 0.580504 -0.367868 0.331064 -0.041600 -0.629677 -0.384552 0.259850 0.185568 -0.377548 -0.344821 0.076372 0.072588 -0.223061 0.301243 0.072237 0.673929 -0.361978 -0.591073 0.079491 -0.402706 0.433349 -0.107779 -0.032438 -0.193132 -0.090789 0.144630 -0.432724 -0.113894 0.320940 -0.347642 0.379250 -0.287616 -0.076005 -0.074266 0.011644 -0.220129 -0.330674 0.069755 0.081167 0.149360 -0.012139 0.209306 -0.147392 0.357797 0.043264 0.198045 0.198302 0.325223 -0.078840 0.007561 0.246193 0.007297 -0.072668 -0.530690 0.232482 -0.029428 0.105693 -0.174234 0.136688 0.471608 -0.136462 0.329242 -0.564643 0.372923 0.111583 -0.152126 -0.208039 0.181944 -0.137330 -0.363213 -0.066437 0.448770 -0.070876 -0.132491 -0.084380 0.278819 -0.035142 -0.670578 0.010914 -0.305818 0.155906 -0.540326 -0.007556 -0.179887 -0.321760 -0.046823 0.191000 0.138728 0.305384 0.480717 0.384333 -0.281350 0.108475 -0.609839 0.349354 0.730272 0.093049 -0.475445 0.204681 -0.379791 0.213751 0.334352 0.199201 0.201388 0.231233 0.172201 0.255426 0.007071 0.108995 0.564022 0.178522 0.414009 -0.470367 -0.121563 -0.106459 0.073583 0.777447 0.248566 -0.720939 0.306623 0.380513 -0.084280 0.066105 0.031411 -0.281043 -0.133026 -0.495852 0.272931 0.455311 -0.589163 -0.235731 0.174878 -0.406300 0.460176 -0.021363 -0.048663 0.259108 -0.625307 0.322429 0.720365 0.133330 0.025810 -0.186870 -0.387548 -0.368018 -0.578582 0.117994 0.090891 -0.185916 -0.138363 -0.395136 -0.200076 0.716851 -0.011126 0.124497 -0.662270 0.267904 0.246870 -0.048636 0.222053 -0.379334 -0.230333 0.017372 -0.195720 0.261642 -0.373139 -0.056008 0.327385 -0.439169 0.330020 0.338718 0.083213 0.016184 0.237425 -0.227174 0.463472 -0.004214 0.289124 0.005507 0.377406 -0.292029 0.065795 -0.184893 0.163478 -0.235338 0.344686 -0.423256 -0.096254 0.343272 -0.336223 -0.399442 0.137386 0.248441 0.374820 0.012453 -0.318771 -0.206084 -0.032039 -0.171748 0.186938 0.383228 -0.183683 -0.422970 0.047996 0.101502 -0.399078 -0.190184 0.211902 0.049497 0.575649 -0.444346 0.078159 0.169025 0.147049 -0.477852 -0.388293 -0.157985 -0.051904 -0.130513 0.427283 -0.675641 -0.306035 -0.226290 0.268636 -0.487409 0.096902 -0.147635 0.513436 0.141502 -0.009987 0.421193 0.163292 0.170555 -0.024741 -0.047201 0.116268 0.274782 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/box-stacking.cpp__max(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -1.017188 1.633205 1.378497 -0.813170 1.594945 0.549273 0.068030 0.973838 -0.651113 0.980420 -1.893101 0.110430 -0.330410 -1.263403 0.057269 -1.234329 -0.123095 0.122778 -0.174174 0.599385 0.748788 -0.887466 -0.104471 -1.121025 -0.113209 -1.637048 -0.532900 -0.150962 0.930582 0.664444 0.301629 -0.014038 1.494789 0.328929 0.977551 1.175314 0.592178 1.549000 0.198665 0.465759 -0.191144 1.093622 -0.801756 -1.359220 0.454018 -1.362940 -0.530943 -0.541292 0.209772 -1.194155 -0.219939 1.022812 -0.035413 -0.131416 -0.901440 0.543112 1.234845 0.372169 1.540916 0.601397 -0.625462 -0.822668 -1.097167 0.114335 -0.623004 0.832718 0.183941 -0.913292 0.264581 0.173731 0.094723 -0.542116 -0.432678 0.622716 0.116780 -0.869766 0.637249 -0.544821 -2.143093 -0.580181 -0.563545 0.346943 0.215405 1.301951 -0.049713 -0.135075 -0.350117 0.226296 0.321319 -1.433954 -0.597826 1.556257 -0.410349 0.015248 -0.849788 1.198718 0.533620 0.453856 -0.525351 -0.255689 0.619730 0.620135 0.156303 -1.405921 -0.771220 -1.877333 0.981448 0.349108 -0.505018 0.784590 -0.171132 0.916556 0.739235 1.002872 -1.568992 0.737871 -1.433141 0.163286 -0.232337 0.130143 -0.044302 0.153308 -0.282706 0.259349 0.849413 -1.352969 1.083924 0.782695 -0.715485 -1.360780 0.374937 -1.164704 -1.143472 -0.187908 0.447275 0.646453 0.095108 -0.502641 -0.178192 -0.678177 -0.295368 -1.476730 -0.012146 1.878061 -1.464984 -0.208769 -0.204256 -0.151266 -0.658447 0.737998 0.510613 0.309841 1.543494 0.779201 -0.225962 0.826771 -0.914635 0.166833 2.022406 1.453948 -1.380115 0.698666 -0.406043 0.062412 0.579169 0.077719 0.598044 1.150872 -1.676989 -1.346322 -0.075140 -0.841091 1.413499 1.296193 0.682595 -1.106451 2.173342 -0.698437 -0.962487 1.517992 1.040053 -1.077580 0.203631 0.926433 -1.301314 -0.264430 0.525463 -0.671781 0.100932 -0.442659 -0.328926 0.336888 -1.024925 -1.152999 -0.319306 -1.535891 1.829207 0.317862 1.239820 -0.102811 -1.006073 -1.657091 1.627729 -0.030060 -0.572690 -0.466325 -0.186955 -1.246214 -1.422033 0.311728 0.590138 -1.102907 -0.986754 -1.167318 0.162238 0.775203 -0.908793 0.294888 -1.286392 -0.859276 0.474871 -0.009526 0.944410 -1.123079 -0.932153 -0.529988 -0.140731 1.175863 -0.442320 1.495443 2.033868 -0.446752 1.358225 -0.012644 -0.316972 0.248530 1.262923 -0.901077 1.308725 -0.518064 1.497006 0.056471 1.167011 -0.994561 -0.412436 0.137649 -0.679447 -0.075039 1.096230 -0.933603 0.097508 0.437623 -1.143879 -0.225385 0.828995 0.020448 0.305926 -0.194395 0.629462 -0.886978 -0.222057 -0.439751 -0.083947 1.143509 -0.188559 -1.292627 -0.257026 0.205791 -0.296458 -0.455949 0.355063 0.089209 1.025992 -1.175745 0.263714 0.017438 -0.677794 -1.488319 -1.434282 0.104446 -0.927147 -1.288699 0.850800 -1.704249 0.082580 -0.929947 0.033849 -1.621144 -0.716081 0.212061 1.512422 0.480589 -0.597130 0.468959 -0.096445 1.315803 0.129866 0.344173 -0.021494 0.918410 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -15.733122 18.944404 15.720800 -9.482202 20.869554 4.373655 10.854030 7.503107 -7.857825 17.320100 -26.554942 -7.009877 -6.680339 -19.493513 -1.727074 -18.969421 0.006545 0.472169 -2.933005 7.378782 9.916015 -13.244658 -1.722694 -13.349365 -2.909699 -22.761432 -8.629978 -0.795539 14.914162 -0.319653 7.729067 -0.220347 27.570997 6.773312 25.449697 19.158942 3.479084 22.926785 1.799811 8.619960 -5.815011 17.820321 -13.014079 -19.532408 -0.152839 -15.547296 -11.012979 -13.055287 2.873537 -14.278951 4.227901 16.206547 -2.668899 3.571754 -12.911428 7.149136 18.804251 2.192906 26.618904 6.388392 -10.754595 1.097988 -16.446468 9.174863 -6.544028 7.601284 3.109820 -14.144757 7.179340 -2.918487 1.037201 -8.943641 -7.497861 15.142070 7.439322 -15.851723 6.405289 -8.657252 -38.634906 -16.194952 -12.421214 5.665277 7.620523 19.494149 0.480002 -1.042562 1.382538 5.728967 0.110259 -26.607665 -3.687641 26.245822 -10.366027 -4.391119 -12.487848 19.106083 0.668890 11.332422 -12.672033 -6.350013 7.334925 3.819630 2.386156 -15.954661 -12.467289 -25.218297 10.218924 3.799110 -8.076713 8.300211 9.985628 11.227838 18.020758 19.380673 -25.337808 13.517290 -18.902790 7.470528 -1.141135 -0.359324 2.061949 4.714553 -5.723981 4.304222 18.526969 -23.505755 9.708501 10.371888 -11.231768 -23.952098 -1.954095 -21.930195 -18.311203 -4.967804 6.814928 10.255505 4.215025 -13.160624 -4.529610 -7.328426 -2.100437 -18.348821 5.287816 23.846431 -18.012019 -3.929999 -1.910955 -1.040658 -14.094090 17.696129 10.374679 7.916629 24.422890 11.886988 -3.895122 4.808578 -15.915458 -2.135888 29.334627 14.321497 -21.738430 15.173342 -11.280217 -0.462859 8.941833 7.496539 12.800125 2.305286 -25.907514 -15.504871 6.168375 -8.023208 24.266815 13.479798 6.568557 -9.997157 33.726785 -2.490333 -19.671878 25.461552 17.628244 -18.609956 2.817427 9.259342 -19.684222 -5.634458 14.591555 -13.825706 -2.158275 -9.379250 -3.084497 2.589307 -10.095211 -6.563657 1.139305 -24.745994 29.096640 3.104805 15.276317 1.513479 -17.080891 -28.544178 26.600462 -2.601898 -5.631587 -7.462250 -4.544087 -16.382889 -21.673379 4.394940 4.476644 -12.508240 -12.398594 -19.833805 8.972599 12.437850 -8.855682 13.711009 -8.920165 -14.736510 7.450082 0.723506 12.864692 -15.518342 -13.906484 -5.794320 0.627145 15.654470 -6.441044 23.640375 31.815107 -5.097145 19.034538 0.678209 -9.575926 2.732935 14.115028 -19.969135 21.454209 -9.691840 12.935411 -0.485024 15.380067 -13.785940 -8.410177 3.126910 -3.661161 -3.944392 11.852766 -10.955583 2.155022 -0.462652 -21.478073 -3.793558 7.289294 -3.820913 0.927184 -0.111207 7.767173 -18.762474 -1.845164 -14.086788 0.799160 16.890073 2.612054 -15.661837 3.453193 -0.672848 1.379354 0.587437 1.326078 0.207045 14.110418 -19.335170 -3.818662 -0.274840 -5.687801 -16.663936 -26.413958 2.164080 -22.323239 -20.597864 12.740210 -20.932362 4.104501 -16.706529 -5.534165 -26.804088 -10.631897 6.138176 28.689459 10.283447 -12.999183 3.788544 -3.185331 21.122954 2.839313 5.028446 3.687071 14.472984 +PE-benchmarks/box-stacking.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -1.208553 0.291274 -0.020933 -0.495641 2.451426 0.024652 0.412004 1.066584 -0.488344 1.325984 -1.694238 -0.626587 -0.604814 -1.457596 0.099566 -0.084141 0.610371 0.101417 -0.665655 -0.044592 0.697492 -0.505399 0.185101 -0.729892 -0.139308 -1.330320 -0.660680 0.229805 1.398965 -0.471107 -0.697916 0.138760 2.308150 -0.071656 1.690099 1.055841 0.976618 1.373373 0.138764 -0.880988 0.110685 1.316036 -0.928437 -1.341046 -0.022478 -1.241647 -1.272100 -0.523506 0.757526 -0.728275 0.009233 1.169544 -0.125738 0.242196 -0.855529 0.910849 1.347119 -0.175540 2.130945 0.458954 -1.011247 -0.331971 -1.018179 1.545050 -0.751622 0.666158 -0.739947 -1.580592 -0.459562 0.296667 -0.146237 -1.111047 -0.810237 0.868485 0.661579 -1.087505 0.823907 -0.172584 0.202012 -1.963033 -1.450775 0.360017 -0.487332 1.430703 -0.136335 -0.062918 0.200526 0.097794 0.137899 -1.920691 -0.197922 1.407510 -1.272521 -0.033824 -0.495087 0.653886 -0.181371 0.556379 -1.027945 -1.190544 0.225443 -0.038046 0.230648 -0.950224 1.047369 -1.025855 0.299406 0.081076 0.456535 0.985496 0.986064 0.450204 1.022251 1.276479 -1.134276 -0.144592 -1.392273 0.626867 -0.606490 0.011554 -0.296140 0.631137 0.839804 0.340303 1.556447 -2.046424 0.853738 0.599098 -0.620961 -1.201062 0.023914 -1.209116 -1.443221 -0.143621 0.860486 0.171796 0.158161 -0.878849 0.540396 -0.269963 -1.022852 0.075292 -0.138859 1.013799 -1.958902 -0.208417 -0.182105 -0.352740 -0.571150 1.268587 0.824370 0.824031 1.847632 1.010832 -0.934622 0.822503 -1.772091 0.605003 2.371342 0.041908 -1.595459 1.089766 -1.494506 0.241608 1.026998 0.845939 0.930317 0.055212 -0.786833 -0.090395 0.655877 0.061708 1.998226 0.241195 0.838529 -1.220158 1.171883 -0.481205 -0.598265 2.235563 0.891367 -2.218293 0.997445 0.978549 -0.844085 0.066385 0.706209 -1.387609 -0.498456 -1.513806 0.323251 0.937206 -1.182818 -0.315062 0.457965 -1.613946 1.939043 0.085433 -0.105538 0.674251 -1.389831 -0.649539 2.335333 0.174405 0.066117 -0.679020 -0.861384 -1.060213 -1.960819 0.207154 -0.085661 -0.901690 -0.409570 -1.576421 0.044616 1.610783 -0.211921 1.095071 -2.250927 0.242522 0.711672 0.386618 0.825636 -0.703281 -0.938793 -0.128919 -0.727851 0.666410 -1.537197 0.911521 1.566095 -0.966146 1.365201 -0.254095 -0.902809 0.208649 0.624250 -1.343223 1.724451 -0.098716 1.402020 0.032995 1.258068 -1.146862 -0.200190 -0.328613 -0.204427 -0.807596 0.941932 -1.305933 -0.099273 0.623074 -1.111627 -1.290621 0.355439 0.126440 0.476177 0.043655 -0.450619 -1.335008 -0.035307 -0.742202 0.501943 1.151019 -0.331720 -1.357289 0.383386 0.312550 -0.415259 -0.358897 0.223915 0.019159 1.401908 -1.540425 -0.291902 0.328473 0.547349 -1.284269 -1.981326 -0.127650 -1.003876 -0.791492 1.398246 -1.870020 -0.395518 -1.095229 -0.067011 -1.700557 -0.410483 0.446561 2.232406 0.551360 -1.004999 0.702043 0.078100 0.990980 -0.077774 0.335904 0.249143 0.497296 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -8.658870 4.842825 5.461011 -3.675308 12.782919 1.680902 3.523034 6.379394 -5.105495 9.485445 -12.567985 -4.317238 -5.254144 -8.754356 -0.883819 -6.639947 2.833534 -1.409262 -3.817428 2.368440 5.205621 -4.741558 -0.235819 -5.498020 -1.627987 -8.845494 -5.299764 0.461936 10.793328 -4.493364 -1.523436 0.076045 17.313803 0.884226 14.494683 9.355603 5.228129 10.927329 0.626122 -3.290521 -2.789689 10.806851 -8.038757 -7.407831 -1.848965 -9.302593 -6.466479 -2.641423 4.114150 -2.531509 -0.923071 8.629657 -1.534043 3.773393 -5.995617 6.652550 7.404661 0.039099 16.115720 2.676407 -6.382489 -0.846875 -8.912718 8.737087 -4.432434 5.131691 -4.764268 -7.371063 1.179993 -2.537486 -0.855855 -8.707927 -4.434986 8.887778 3.633723 -8.968116 5.236074 -2.995849 -8.722605 -13.244004 -9.830258 2.975793 1.291034 9.638893 -0.781522 -0.199622 1.056245 3.634128 -0.775323 -15.897629 0.138572 11.480781 -9.446383 -2.335206 -5.398982 7.423724 -3.093040 7.063132 -8.215907 -5.852799 3.014260 0.070456 1.444820 -11.822254 5.488671 -9.834115 2.685646 -0.260214 0.042014 4.826665 7.048708 5.726678 11.497222 11.757513 -9.691220 1.074111 -10.163591 3.448323 -3.699117 -0.735337 0.025394 5.330389 0.390094 2.830521 12.469059 -14.712257 3.709247 4.191156 -6.355190 -11.975860 -1.140325 -12.114951 -11.048268 -2.596550 5.267414 3.891396 2.072792 -9.094315 1.767813 -2.852163 -3.412464 -3.749110 2.450013 8.361508 -11.709306 -2.734389 -0.983412 -1.062049 -6.040512 11.042105 6.471933 5.821263 13.902232 6.538007 -4.995838 3.752398 -11.124464 -0.132148 13.961990 2.452955 -12.269867 9.208247 -9.777069 -0.014046 6.442974 6.836375 7.950889 0.024196 -9.885407 -5.246673 5.499147 -0.410133 14.545120 1.305078 4.569991 -3.065736 13.312426 -4.152057 -9.373865 13.751907 7.390848 -12.502319 3.854058 4.081523 -4.139570 -1.497530 7.878934 -10.417712 -1.502174 -8.101302 -1.003544 4.417807 -6.260993 -0.380393 3.861114 -12.847648 15.891727 0.671742 2.767747 3.904043 -11.217404 -11.950435 14.510206 -1.050664 -1.155986 -5.540747 -4.812314 -7.823355 -13.075196 2.268367 -0.359116 -5.547004 -4.614686 -11.873315 3.717014 7.633727 -1.643623 9.229308 -11.934792 -4.372996 4.695156 0.984237 8.316117 -3.333361 -7.291808 -2.282605 -3.396150 7.974728 -9.513563 10.805982 15.251280 -4.444269 11.005160 -2.770249 -7.508571 0.433416 5.052433 -12.511342 12.640951 -2.079355 7.361075 -0.623688 8.127654 -9.136256 -3.788338 0.271247 -0.249569 -3.539548 5.007704 -6.040480 0.391871 -1.618861 -10.455288 -4.455657 1.446643 -2.498331 -1.372750 1.020960 1.180855 -10.397681 -1.432048 -7.467371 2.126311 9.138096 -0.258212 -7.981462 4.086848 -1.035699 0.144811 3.250783 -0.034694 -0.637744 8.487731 -11.227482 -5.590700 0.984015 1.126922 -7.867042 -15.505093 -2.301990 -9.155308 -7.127524 8.850108 -10.597297 0.194035 -8.709004 -3.470515 -12.237630 -4.475417 5.163673 16.651233 6.239810 -9.810962 2.311316 -1.047601 10.607034 1.041952 2.351000 1.199413 4.142177 +PE-benchmarks/longest-palindrome-substring.cpp__main = -2.001208 -0.251901 -1.176664 -2.069382 5.370014 -0.900619 -0.280179 4.317956 1.146620 1.420130 -3.876180 -1.088229 -0.555601 -3.864805 0.531495 0.207354 1.977386 0.859867 -2.311122 -0.392182 1.349499 1.117978 0.562787 -1.962267 -0.405308 -1.392389 -1.192925 0.526222 -0.153959 -0.264789 -1.042301 1.068557 5.223005 0.792980 3.554895 1.759620 3.198071 3.089493 1.107081 0.593187 1.849667 1.615879 -0.833640 -3.220114 0.068614 -2.263446 -3.199500 -0.939429 0.932280 -2.863137 1.783977 2.188141 1.077397 0.300895 -1.894060 0.594578 1.852120 -1.034085 3.085568 1.967487 -4.130711 -1.000406 -1.074529 2.350186 -1.900848 2.325196 -0.001147 -2.374708 -2.199443 2.713111 1.495331 -3.191909 -2.977228 -0.452211 1.074389 -1.447163 2.596415 0.382648 4.141601 -2.497320 -1.611519 1.770855 -1.265843 2.361132 -0.089777 -0.004742 -0.588051 -0.968240 0.624982 -2.636518 -0.768659 2.060261 -2.802050 0.179884 -2.962794 0.849705 -1.149766 0.189265 -1.778285 -3.866243 1.062586 0.138832 -0.024567 -0.060124 0.389807 -1.689689 1.692134 1.817350 -0.032528 2.485760 0.788620 1.231642 1.427202 1.356357 -0.919742 0.900629 -4.210252 1.506028 -1.860084 -0.273599 -1.309435 -0.204950 3.124196 1.502818 1.162602 -3.167152 3.305837 2.730012 -1.975678 -1.127961 0.918596 -1.311342 -3.167599 0.331676 2.035358 0.471054 0.792449 -0.475714 1.374444 -1.252747 -1.701297 -1.324684 -1.594454 0.721191 -3.291100 -0.513143 0.078755 -0.459802 -1.199545 2.127666 1.074094 -0.027054 4.067415 0.299089 -2.645393 0.651930 -3.258934 1.521212 5.410129 0.414066 -2.755547 2.032023 -2.402004 0.976431 1.062534 1.655466 0.536660 -0.407671 -1.181617 0.534191 0.283054 -0.603594 3.718520 0.270183 1.859841 -4.268005 0.852360 -1.494843 1.032714 5.459969 2.196968 -4.233514 0.116018 3.353651 -0.108857 -0.390277 0.843457 -2.271711 -1.973590 -2.525381 1.735380 1.305028 -2.886638 -1.596468 1.062673 -2.809757 2.311525 0.458092 -1.506119 -0.425901 -3.173352 0.439417 6.221992 0.183960 0.328147 0.558454 -1.809913 0.554393 -4.638653 0.029714 1.371715 -0.944386 0.962327 -1.638188 -0.026469 3.656082 -1.896488 0.995024 -4.122076 0.725396 1.825334 -1.110933 0.722436 -3.138805 -1.859789 -0.320102 -0.981716 1.200824 -3.571780 0.285227 2.243168 -1.614281 3.092603 1.180312 -0.937211 -0.344485 1.733866 -1.550260 3.919845 -0.378857 3.397867 0.726009 2.879708 -2.134364 -0.691141 -2.001131 -0.645112 -2.430200 2.483838 -3.885493 -0.046604 1.944159 -0.171309 -3.045794 1.853730 1.473135 0.107575 -0.611236 -1.181487 -1.453035 -0.061220 -1.458284 2.277254 2.014580 -1.392740 -3.470900 -0.075294 3.243719 -2.470066 -0.169895 0.842172 0.569846 4.284810 -2.734441 0.920394 1.603387 1.677794 -3.530368 -3.662460 1.135467 -1.458366 -0.116708 0.521164 -3.896517 -3.455191 -1.484113 1.702147 -2.435201 0.089823 1.377847 3.807741 1.391514 -2.018655 0.900806 0.598616 0.663170 0.113619 0.760548 1.101729 1.194932 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/longest-palindrome-substring.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/longest-palindrome-substring.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +PE-benchmarks/longest-palindrome-substring.cpp__void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/longest-palindrome-substring.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/longest-palindrome-substring.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -3.223238 4.670957 2.754752 -3.127027 7.064415 -0.872598 2.707355 2.757614 -2.212119 2.091209 -6.932442 0.413653 -0.015194 -5.878599 1.246445 -2.840017 0.894151 1.898349 -0.568989 1.767572 2.192184 -2.013160 -0.746439 -4.365453 -0.194004 -5.508658 -1.161998 -0.034172 1.616965 1.511227 1.182056 1.673263 5.497461 0.961114 4.027969 4.504137 1.904236 4.731921 1.158373 -0.337688 1.642575 2.569333 -1.376779 -5.735270 0.427294 -2.596878 -3.604869 -3.137064 0.392358 -4.721701 -0.453846 3.367264 0.652410 -0.732217 -3.954516 1.813769 5.805247 -0.186813 4.113263 2.992213 -2.766584 -0.496349 -2.351333 2.020662 -2.282861 1.735730 1.011900 -4.029033 0.053639 3.426245 0.634734 -1.726888 -2.890852 -0.005846 1.388813 -2.740763 2.122060 -0.725649 -4.919789 -2.686895 -1.630634 1.844484 -0.005173 4.816246 0.382383 -0.669221 -0.443927 -0.789228 2.078674 -3.344281 -3.137251 4.949068 -1.478772 -1.060850 -3.090538 4.014168 3.274983 -0.160546 -1.515279 -4.110272 2.193577 0.434438 0.246103 -1.631258 -2.860277 -4.720265 1.507249 2.525774 -1.689252 4.960920 -0.826796 3.239592 1.560948 1.268178 -4.211803 2.135454 -5.517595 1.893416 -1.802942 -0.356616 -0.411416 -0.886899 1.525006 1.551981 1.638783 -4.125123 4.826416 3.854596 -1.343754 -2.919113 1.522209 -2.189957 -3.891155 -0.668513 1.845347 2.244608 1.078188 0.298277 -0.052200 -1.766191 -0.215049 -3.779106 -1.486068 6.101655 -5.675537 -0.308305 -0.487492 -0.191637 -2.409960 1.906044 1.244529 0.506810 4.950917 2.191955 -1.914565 2.809949 -3.812675 1.412360 8.265767 3.302145 -3.690012 2.359720 -1.593278 0.210285 1.404359 0.666351 0.632060 1.437264 -5.779947 -3.404259 -0.148264 -3.846177 4.486793 3.532068 1.257577 -6.018858 6.607907 -1.096783 -2.022563 6.358265 3.535093 -4.911555 1.524825 5.403489 -5.178055 -2.044443 1.593847 -3.011254 -1.700859 -2.288831 0.779589 0.529040 -3.960917 -3.577263 -1.220031 -4.490099 4.046772 1.504747 1.119469 -1.658148 -1.776258 -4.164016 7.559570 0.344186 -0.707721 -0.614307 -1.151080 -2.634950 -5.683109 0.386188 1.747079 -3.158059 -1.872249 -3.166128 -0.116372 4.236305 -4.650220 0.720803 -3.976574 -0.932303 1.949646 1.809280 1.135267 -5.009375 -3.141572 -0.483837 -0.113739 1.197903 -2.068640 3.531061 5.429519 -1.861618 3.478741 0.936304 -2.498872 1.441881 4.473315 -2.366259 4.466426 -1.295233 5.932033 1.648606 4.032972 -3.629355 -1.900944 -0.617719 -3.064722 -2.552912 3.978304 -4.950334 0.556791 3.116219 -1.549541 -3.300602 3.905900 1.795306 2.010478 -1.655182 0.804200 -2.405843 0.344501 -1.961493 1.017741 3.247567 -1.167425 -4.727031 -0.873815 3.911454 -2.266604 -2.607018 1.483085 0.828102 4.450580 -3.765520 3.150853 0.577436 0.052897 -5.575287 -5.839227 3.096820 -4.365855 -3.824508 1.689843 -6.239677 -1.757939 -2.632784 1.857929 -6.007824 -2.468735 1.307486 4.863418 0.083461 -1.122654 1.650180 -0.298041 2.442683 -0.222102 1.737523 -0.247510 3.201071 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -1.410385 1.367124 0.405388 -1.329425 3.884725 -0.311204 0.957745 1.502309 -0.662686 1.107027 -3.004509 -0.045992 0.161314 -2.330382 0.614138 -0.562887 0.476632 0.633808 -0.764007 0.116663 0.764994 -0.272829 -0.159766 -1.681515 -0.186675 -2.178404 -0.747462 0.238909 0.892687 0.234012 -0.514654 0.686860 2.563239 -0.214119 1.726732 1.733256 1.557891 1.632623 0.230499 -0.620114 1.317269 0.938723 -0.669632 -2.118319 -0.193309 -1.220872 -2.204077 -0.908345 0.475389 -1.811572 0.038169 1.451864 0.349275 -0.332450 -1.388027 1.383716 2.046403 -0.453497 1.972944 1.254443 -1.715037 -0.332932 -1.106498 2.216123 -1.081782 1.296673 -0.388775 -2.284006 -0.859401 1.904599 0.206917 -1.119701 -1.558980 -0.014660 0.757337 -1.222269 1.051383 -0.217440 -0.031611 -1.483904 -0.864604 1.075206 -0.466244 1.947535 0.246972 -0.228660 -0.160169 -0.388770 0.754468 -1.577422 -1.345135 2.221970 -1.157769 -0.252326 -1.627432 0.849025 1.138137 -0.141074 -0.635208 -2.281803 0.797402 0.162125 0.052426 -0.956312 0.170122 -1.789426 0.362228 1.359926 -0.131200 2.141689 -0.467098 1.098441 0.685513 0.620581 -1.124518 0.213554 -2.326733 0.868234 -1.112066 -0.192144 -0.617497 -0.228613 1.389715 0.950696 1.009634 -1.953318 2.156734 1.372985 -0.892356 -0.988682 0.522165 -0.767902 -1.880086 0.021891 0.776510 0.756175 0.424291 0.120562 0.565165 -0.659173 -0.636104 -0.886200 -0.689017 1.708471 -2.629498 -0.136141 -0.045316 0.049139 -1.005200 1.291016 0.919922 0.378386 2.399999 0.943033 -0.906221 1.177106 -2.098523 1.062303 3.620131 0.672149 -1.709774 1.219342 -1.559226 0.227615 0.684574 0.622917 -0.019269 0.806239 -1.877831 -0.725148 -0.126619 -1.202479 2.244783 1.125899 0.585429 -2.547237 1.927490 -1.152755 -0.444684 2.891308 1.715953 -2.741268 0.881313 2.556677 -1.550263 -0.723012 0.874715 -1.861756 -1.082488 -1.429230 0.547215 0.691272 -1.784221 -1.243150 -0.009470 -1.839847 1.881812 0.560141 -0.456242 -0.436927 -0.919355 -1.166287 3.521360 0.242081 0.039695 -0.194420 -0.673149 -1.029261 -2.673876 -0.020775 0.850850 -1.358919 -0.561468 -1.491387 -0.227273 2.232675 -1.868430 0.723941 -2.416572 0.260132 0.981958 0.826267 0.622964 -1.739080 -1.204633 -0.410078 -0.536175 0.217224 -1.908907 1.037732 1.910569 -0.992042 1.861310 0.188836 -1.646665 0.209037 1.628567 -0.946285 2.179577 0.018853 2.147742 0.814123 1.830467 -1.650001 -0.580967 -0.714456 -1.313343 -1.396434 1.792308 -2.465625 0.073411 1.425154 -0.540812 -1.942792 1.594449 1.061032 0.831508 -0.725545 -0.303371 -1.053199 0.018299 -1.000991 0.726411 1.244365 -0.959458 -2.051370 -0.082717 1.847810 -1.548164 -1.048875 0.633306 0.418074 2.243025 -1.748028 1.215664 0.626192 0.722857 -2.905477 -2.508692 0.727735 -1.610913 -1.247747 0.587993 -2.751250 -1.500822 -1.129886 0.839488 -2.333968 -1.313080 1.011489 2.454533 0.114540 -0.718558 0.845233 -0.012137 0.790845 -0.125892 0.664726 0.135118 0.761890 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -2.223380 2.708934 1.408707 -1.892292 4.391155 -0.404404 1.428717 1.461591 -0.942176 1.377976 -4.515171 -0.402560 -0.385828 -3.860517 0.741893 -1.679898 0.675139 1.123755 -0.618973 1.002158 1.593275 -1.435027 -0.200720 -3.022082 -0.057581 -3.323918 -0.782400 -0.171103 1.090775 1.146891 0.480795 0.849606 3.523161 0.815278 2.402265 2.610378 1.099021 3.360045 0.473019 -0.036149 0.892790 1.984749 -0.989582 -3.929582 0.575426 -2.067313 -2.108089 -2.060355 0.384505 -3.045567 -0.124453 2.137579 0.524684 -0.538362 -2.609215 0.863213 4.072337 0.381497 2.816709 1.877954 -1.448352 -0.272642 -1.603278 0.710643 -1.646607 1.312078 0.836065 -2.584983 -0.354343 2.032116 0.365313 -1.093435 -2.104739 -0.070881 1.023856 -1.713209 1.477223 -0.357087 -2.921801 -1.753227 -1.344779 0.958255 -0.248748 3.161069 0.064469 -0.399604 -0.068875 -0.522266 1.626149 -2.170229 -2.135229 2.891949 -0.859215 -0.417650 -1.474900 2.470034 1.749032 -0.026394 -1.262501 -2.318877 1.252311 0.534265 0.182298 -0.844459 -2.016082 -3.072992 1.535876 1.564813 -1.146912 2.721754 -0.014801 1.742608 0.667767 0.884365 -2.889254 1.295705 -3.409773 0.846487 -1.046587 -0.023157 -0.301243 -0.443035 0.943582 0.587477 1.040509 -2.783329 3.308696 2.513771 -0.913732 -1.831038 1.102269 -1.430659 -2.534095 -0.294500 1.319885 1.259850 0.605085 0.115061 0.015852 -1.236996 -0.406277 -1.897286 -1.041150 3.855843 -3.487313 -0.216472 -0.446701 -0.467567 -1.461759 1.042499 0.544740 0.198283 3.018999 1.477709 -1.572159 1.624425 -2.223301 1.147104 5.608057 1.823942 -2.542426 1.236024 -0.868139 0.507872 1.108190 0.120076 0.593884 1.013000 -3.284870 -1.832695 -0.351750 -2.436814 2.930243 2.348198 1.247963 -4.137718 4.133906 -0.601264 -0.959873 4.243330 2.351098 -3.274091 1.005603 3.453216 -3.725623 -1.093613 0.744520 -1.465439 -0.709116 -1.851850 0.656351 0.321756 -2.660396 -2.550772 -0.915100 -3.046966 2.732330 1.029927 0.958953 -0.831069 -1.348440 -2.337148 4.847704 0.242369 -0.598968 -0.555220 -0.785814 -2.006320 -3.817303 0.419294 0.892323 -2.171116 -1.260173 -2.112428 0.020076 2.922302 -2.896872 0.264112 -2.512541 -0.457676 1.049722 1.113028 1.004713 -2.942686 -2.070144 -0.234504 -0.216779 1.050216 -1.183122 1.962873 3.513221 -1.422895 2.149624 0.531877 -1.407900 0.922146 3.007202 -1.246811 2.671413 -1.047126 3.912724 0.683308 2.841370 -2.125091 -0.945752 -0.313023 -1.967264 -1.461031 2.683954 -3.231865 0.213915 2.249427 -1.078170 -2.115917 2.556354 1.039262 1.778855 -1.075596 0.477664 -1.683198 0.503165 -0.876332 0.560711 2.251113 -0.407878 -3.212787 -0.893779 2.387431 -1.414550 -1.959420 1.084056 0.224758 3.029848 -2.429260 1.935101 0.346246 -0.235900 -3.291118 -3.477144 1.717677 -2.686264 -2.287685 1.813866 -4.018451 -0.811067 -1.619499 1.332175 -3.464187 -1.379510 0.379811 2.910151 0.298001 -0.605347 1.296896 0.026430 1.695107 -0.104921 0.825540 -0.088334 2.168775 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -1.948801 2.329071 0.929381 -1.744465 4.798130 -0.754608 1.390824 2.344607 -1.554272 1.390076 -3.894073 0.753731 0.035349 -3.627211 0.885429 -0.782156 0.787512 1.297918 -0.465669 0.690118 1.348990 -0.920658 -0.365974 -2.427990 -0.145177 -3.269839 -0.476957 0.103537 1.065592 0.694390 0.028867 1.195865 3.402016 0.315543 2.307188 2.607998 1.736091 2.708732 0.902872 -0.635192 1.172850 1.438516 -0.778977 -3.430227 0.406362 -1.545865 -2.340473 -1.599868 0.454654 -2.774351 0.049209 2.067092 0.413169 -0.401479 -2.302234 1.335361 3.341548 -0.649309 2.517767 1.837763 -1.997507 -0.871105 -1.257016 2.007529 -1.479241 1.017478 0.492002 -2.622178 -0.301254 2.297142 0.506577 -1.374269 -1.782080 -0.065045 0.738426 -1.684038 1.352823 -0.219295 -1.551747 -1.917278 -1.273342 1.121970 -0.409801 2.911449 0.229462 -0.350816 -0.462235 -0.600789 1.260339 -2.057020 -1.779377 2.879149 -1.188576 -0.217368 -2.323664 2.030167 1.750910 -0.227385 -0.891651 -2.820501 1.241656 0.230011 0.246924 -1.140551 -1.063903 -2.516980 0.825482 1.213379 -0.610789 3.072352 -0.499240 1.622504 0.695979 0.751132 -1.934189 0.908870 -3.514568 1.294047 -0.883771 -0.119215 -0.505990 -0.550164 1.553776 0.805218 1.087108 -2.675166 2.922142 2.111510 -0.737064 -1.726583 0.959430 -1.094117 -2.293484 -0.390727 1.394370 1.029780 0.508855 0.261883 0.431135 -0.855267 -0.950531 -2.237071 -1.175248 3.520346 -3.886475 -0.101663 -0.388621 -0.259996 -1.316415 1.089590 0.808225 0.551829 2.986003 1.460832 -1.192668 2.185060 -2.651373 1.105753 4.982347 2.231446 -2.273081 1.477465 -1.403463 0.235881 0.956878 0.556685 0.361775 0.815909 -3.036415 -1.539663 0.403351 -1.919846 2.828734 1.798263 0.959462 -3.717375 3.215894 -0.653370 -0.901526 4.034907 2.036919 -3.404143 1.452362 3.364616 -2.352669 -0.933330 0.855752 -2.108400 -1.327128 -1.558341 0.738319 0.723718 -2.671163 -1.991964 -0.487984 -2.565685 2.376380 0.808439 0.315044 -0.683801 -1.291411 -1.676603 4.580389 0.281537 -0.219487 -0.453673 -1.021379 -1.771184 -3.502732 0.212427 1.059117 -1.807743 -1.004696 -2.007775 -0.507640 2.987859 -2.512715 0.444904 -3.256435 -0.041417 1.297776 1.119278 0.617891 -3.203069 -1.797274 -0.190178 -0.137795 0.638889 -1.659696 1.782168 2.988364 -1.421290 2.181658 0.648161 -1.258100 0.833054 2.498400 -1.416572 2.736405 -0.430316 3.707864 1.072152 2.431814 -2.351516 -0.923871 -0.675978 -1.399628 -1.695028 2.346103 -3.126807 0.180894 2.050565 -0.864921 -2.389058 2.185589 1.330862 1.370219 -0.953667 -0.063038 -1.081984 0.059818 -1.441734 0.843403 1.944977 -1.133054 -2.786076 -0.359029 2.390970 -1.725472 -1.316727 1.002521 0.669383 2.877664 -2.362601 1.888933 0.459658 0.394136 -3.544912 -3.692373 1.696518 -2.253069 -2.149125 1.092286 -4.131799 -1.479882 -1.508615 1.335647 -3.961695 -1.170144 0.601559 3.003826 -0.167810 -0.428977 1.307727 -0.021306 1.181299 -0.293368 1.161753 -0.100190 1.792372 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -1.746568 1.942336 1.481585 -1.640500 4.190882 -0.469119 1.272025 1.509107 -0.233175 1.161112 -3.804256 -0.445023 0.048994 -2.606892 0.657060 -1.593811 0.478852 0.932785 -0.875656 0.332267 1.017007 -0.187833 -0.400998 -2.173614 -0.180000 -2.702736 -1.221430 0.166264 0.648796 0.378973 0.145339 0.912910 3.291879 0.077504 2.488137 2.353019 1.634867 2.297912 0.046772 0.277451 1.482342 1.313155 -0.850423 -2.692342 -0.143531 -1.461763 -2.380160 -1.368372 0.378546 -2.298279 0.133238 1.689375 0.453926 -0.196246 -1.552510 1.379396 2.459672 -0.033651 2.279170 1.616211 -2.068966 0.503914 -1.539286 2.003456 -1.330493 1.781081 -0.400937 -2.754701 -0.872555 1.995348 0.695319 -1.408594 -1.916154 0.019792 0.775976 -1.354615 1.340843 -0.311387 -0.755909 -1.594259 -1.033753 1.267164 -0.133330 2.242947 0.139060 -0.421006 -0.334216 -0.446101 0.907996 -1.823544 -1.736538 2.734267 -1.393598 -0.371084 -1.769836 0.951089 1.432580 0.080042 -0.635152 -2.704467 1.095382 0.125466 -0.010160 -0.376780 -0.502457 -2.050024 0.546235 1.789621 -0.606016 2.438511 -0.770867 1.760618 1.141970 0.719614 -1.706891 0.783006 -2.780361 1.224477 -1.609683 -0.295944 -0.355419 -0.276046 1.141204 1.293668 1.094271 -2.098390 2.502222 1.735566 -1.197678 -1.093104 0.679381 -1.193703 -2.432702 -0.244669 0.903964 1.350407 0.519413 -0.010784 0.268180 -1.026278 0.139385 -1.550876 -0.806217 1.838310 -2.703004 -0.345714 -0.087080 0.030631 -1.397484 1.571747 0.981007 0.334809 2.849104 1.093901 -1.100343 0.691943 -2.399433 0.837316 4.185353 0.613786 -2.022665 1.433883 -1.362622 0.210489 0.993144 0.732956 -0.082199 0.918547 -2.415787 -1.234270 -0.743572 -1.749884 2.661559 1.789559 0.485646 -3.167132 2.639101 -1.379510 -1.012277 3.689941 2.116009 -3.065065 0.410364 2.876887 -2.178321 -1.406871 1.055502 -2.002613 -1.251870 -1.510636 0.520923 0.482005 -1.983541 -1.576137 0.219587 -2.398977 2.203471 0.686392 -0.266123 -0.724807 -1.232557 -2.441930 4.446444 0.229172 -0.103790 -0.147344 -0.611048 -0.477702 -3.217126 0.045833 1.027239 -1.485745 -0.795040 -1.688970 0.331693 2.447255 -2.531166 0.869504 -2.024058 -0.415426 1.087456 0.417799 0.750808 -2.504909 -1.604214 -0.744011 -0.507466 0.419146 -1.855444 1.318420 2.826131 -0.971347 2.034174 0.637587 -2.391434 0.052437 2.201409 -1.274316 2.581544 -0.451693 2.311835 0.926004 2.132073 -2.055311 -1.105359 -0.610832 -1.506735 -1.712813 2.220458 -2.724222 0.343533 1.343254 -0.988001 -1.744166 2.073290 1.060392 0.722215 -0.870285 0.160863 -1.735075 0.214063 -0.991538 0.612296 1.642697 -0.734454 -2.706401 -0.119982 2.035162 -1.848023 -1.603965 0.615572 0.336915 2.614159 -2.037834 1.399044 0.801176 0.419107 -3.391911 -2.981003 0.993355 -2.554629 -1.694275 0.409983 -2.910593 -1.615354 -1.414237 0.913518 -2.459642 -1.838874 1.393739 2.887846 0.559152 -1.077508 0.835861 -0.109711 1.380931 0.096491 0.612563 0.030797 1.276473 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.679788 -0.240293 0.201101 -0.300523 2.438723 -0.844383 0.242283 1.787173 0.723608 0.398262 -1.115105 -0.267155 -0.135208 -0.569936 0.539817 -0.005604 0.563390 0.951954 -1.004226 -0.984523 0.494044 1.481904 -0.278973 -0.490573 -0.080913 -0.384913 -0.711000 0.208059 -0.643093 0.115230 -1.020259 1.133693 1.731827 -0.217397 1.259041 0.965318 1.734205 0.971334 -0.227575 1.279472 1.347636 0.259431 -0.202581 -1.158542 0.230893 -0.541803 -1.226080 -0.181340 0.363252 -1.022297 1.746031 0.572662 0.413207 0.332412 0.112900 0.690091 -0.214489 -0.106519 0.670630 1.033528 -2.180744 0.479333 -0.647019 2.091452 -0.650123 1.762553 -0.521221 -2.061458 -1.508253 1.239731 1.515110 -1.556944 -1.298319 -0.334536 -0.143278 -0.165559 0.829381 0.500166 2.493125 -0.227809 -1.173295 0.731182 -0.502780 0.561901 -0.104311 -0.342820 -1.166502 -0.579002 0.362875 -0.524455 -0.710968 1.325025 -1.256029 1.108631 -2.137122 -1.615164 0.008158 0.033264 0.063230 -1.842443 0.507753 0.018187 0.023264 0.605866 0.043482 0.040703 0.510402 1.002906 0.098728 0.679958 -0.746671 0.348330 0.286268 -0.003745 0.801191 0.379104 -1.371554 1.254900 -0.801256 -0.201584 -0.390555 -0.174961 1.117184 0.379839 0.344860 -0.682841 0.899841 0.211075 -0.987153 0.093253 0.419977 -0.151503 -1.196438 -0.313129 0.992510 0.527657 -0.193470 0.188538 0.561600 -0.414892 -0.383196 -0.941175 -1.052005 -0.841533 -0.807552 -0.277801 -0.231768 -0.316653 -0.619796 0.843294 0.438673 0.576591 1.044872 0.567272 -0.461212 -0.866863 -1.715347 0.500287 1.249112 -0.032123 -0.884528 0.604284 -0.905410 0.458496 0.636189 0.612351 -0.608128 0.684309 0.441736 0.658709 -1.035220 -0.056484 1.278017 1.112467 0.358979 -1.242897 -1.043497 -1.520816 -0.110715 1.867224 1.182626 -1.794299 -0.322217 1.315529 0.703044 -0.961001 0.386343 -1.326280 -1.150262 -0.795682 0.630513 0.790739 -1.340466 -0.197419 1.496262 -0.776042 0.549630 0.084892 -0.831148 -0.172496 -1.463375 -0.330929 2.309287 0.182481 0.451343 0.240350 -0.725133 0.604039 -1.403154 -0.016167 0.910251 0.191936 -0.296669 -0.508652 -0.007222 1.660671 -0.849239 0.601303 -0.264828 0.202399 0.604908 -1.056326 0.395437 -1.839566 -0.554499 -0.706901 -0.409383 0.254815 -1.222027 -0.716049 0.756994 -0.596094 0.957637 1.734133 -1.103826 -0.948029 0.620968 -0.282260 1.007347 0.100866 -0.004502 0.549040 0.791776 -1.069092 -0.496469 -0.727525 0.609083 -1.258602 1.167245 -1.127886 0.161367 0.229972 -0.728139 -0.646436 0.695659 0.915409 0.074003 -0.384012 -0.523407 -0.556329 -0.092294 -0.851701 0.606347 0.704188 -0.902047 -1.110832 0.362954 0.552795 -2.218415 -0.429940 0.402541 0.226821 1.578416 -0.838375 0.389649 0.939736 0.482501 -2.042790 -0.968628 -0.422957 -0.965517 -0.454579 -0.599892 -0.995332 -1.778404 -0.334382 0.896983 -0.771945 -0.888559 0.615245 1.214441 0.472652 -0.036457 0.706640 0.385865 0.263073 0.152311 -0.113048 0.210430 0.519094 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -6.024307 4.164256 4.032262 -2.290814 6.855740 -0.215399 4.357038 1.095723 -2.049974 6.146587 -8.621673 -4.834634 -3.941977 -7.202570 -0.438885 -6.010377 1.952269 -0.080882 -1.161394 2.482217 3.834417 -5.020877 -0.648233 -4.174115 -0.689157 -7.468896 -3.140800 0.130577 6.942952 -3.098232 1.366502 0.740329 11.561552 2.132717 10.628703 7.172472 1.244968 8.298427 0.664101 -1.013955 -2.787463 7.650787 -5.040596 -6.538947 -0.978849 -4.958230 -3.768445 -4.031363 2.196966 -1.944050 0.031663 6.149505 -1.386711 2.568519 -5.486925 2.780614 6.879995 1.715221 10.636442 1.960347 -2.295867 1.831856 -5.847021 3.952976 -3.081130 1.227746 -1.362338 -4.752641 2.559304 -2.051242 -1.246604 -4.201175 -2.830843 6.040603 3.394282 -6.216367 2.840067 -2.063884 -10.855247 -8.498106 -6.918815 1.463486 1.997253 7.395073 -0.399532 -0.325326 1.635938 2.289705 -0.042623 -10.365825 -0.123679 7.775135 -5.320250 -2.580912 -0.968143 7.410615 -0.526923 4.494021 -5.525562 -3.471725 1.968994 -1.060323 1.202684 -4.701902 -0.243059 -6.959662 2.019708 -0.528124 -1.346952 3.323677 6.778412 3.833428 7.456551 7.419605 -8.659264 1.728169 -6.655147 2.886140 -1.396470 -0.628897 1.219722 3.275678 -1.202164 1.239869 7.902412 -9.950191 2.315565 3.556986 -2.741560 -8.190148 -1.125684 -8.315929 -7.002034 -2.573221 3.773082 3.134754 1.598991 -5.677421 -0.301437 -1.484636 -0.401926 -2.300358 1.912334 7.692710 -6.800005 -1.530343 -1.085032 -1.376616 -4.663161 6.397595 3.569682 3.963279 8.874523 4.917610 -3.648503 2.023747 -6.923446 -0.779174 10.155173 1.344773 -8.018830 6.035287 -5.413449 -0.275670 4.115577 4.447319 6.101936 -1.843603 -7.733166 -3.948497 3.837476 -1.334924 9.326468 1.046410 2.486786 -2.628100 11.060767 0.256891 -7.346356 9.924578 4.605242 -8.075377 2.535112 2.902404 -6.749436 -1.753847 5.486973 -5.779367 -0.205953 -5.918882 0.015494 1.843978 -4.029932 -0.128654 1.438969 -9.082118 9.998544 0.686821 3.431745 2.546866 -6.776361 -9.481242 10.591692 -0.849166 -0.900213 -4.081418 -3.214100 -5.113444 -8.589983 1.757163 -1.205125 -3.927228 -3.268869 -7.901790 3.255831 5.660589 -1.520035 6.213794 -4.991233 -3.538906 2.877862 1.921920 4.457876 -2.362810 -5.344306 -0.153879 -0.860117 4.620619 -3.786997 7.839632 10.926328 -2.973986 5.764445 -1.607708 -4.735649 1.816143 3.927158 -8.772568 8.150202 -2.859771 4.833166 -0.444086 5.338647 -5.790940 -3.184507 1.403265 -0.790602 -2.606083 2.958050 -3.699330 0.676478 -0.224318 -7.185433 -2.816735 1.246452 -1.748203 0.262652 0.661584 1.692810 -7.493761 0.142104 -4.704357 1.370418 6.387872 2.239125 -5.006349 2.560584 -0.336604 1.615582 0.707049 0.073138 -0.888390 5.395590 -7.535321 -3.221059 -0.045926 0.089648 -3.596453 -11.088733 0.524168 -8.008892 -5.578027 6.386949 -7.356605 2.079043 -6.154502 -2.296588 -9.068327 -2.408277 2.338661 10.953297 4.247227 -5.961939 1.503444 -1.070250 7.078988 0.522428 1.286017 1.102824 4.555225 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -2.447814 1.353862 1.531272 -1.280037 3.976933 -0.337751 1.549188 0.877103 0.019121 2.248844 -3.904234 -2.096153 -1.163623 -2.731437 0.151900 -2.246249 0.816249 0.374944 -1.155672 0.439019 1.414950 -0.878009 -0.245185 -1.852605 -0.367075 -2.913345 -1.781703 0.336432 2.131060 -1.146823 0.016393 0.573216 4.884130 0.204001 4.176216 2.833033 1.432530 3.153909 -0.218647 -0.252869 0.283381 2.694557 -1.844088 -2.685869 -0.543450 -2.042364 -2.387240 -1.454143 1.046537 -1.249781 0.146060 2.314096 -0.102492 0.739515 -1.834615 1.655843 2.557338 0.557525 4.026348 1.176204 -1.774085 1.276927 -2.502813 2.545362 -1.586815 1.586655 -1.401341 -2.924211 -0.398459 0.385775 0.104836 -2.151919 -1.913981 1.664399 1.356981 -2.213823 1.540164 -0.593630 -1.645615 -3.339052 -2.569419 1.022502 0.176869 2.754333 -0.240504 -0.273702 0.338858 0.421386 0.204134 -3.647662 -0.774032 3.200144 -2.499152 -0.725216 -0.806306 1.622132 0.166048 1.315224 -1.829773 -2.433081 0.853253 -0.403863 0.294726 -1.017701 0.781061 -2.228170 0.471703 0.783594 -0.222113 1.828215 1.485003 1.771718 2.685379 2.375811 -2.697280 0.352413 -2.892978 1.406047 -1.625151 -0.287183 0.041313 1.082009 0.515074 1.171629 2.859147 -3.653835 1.665914 1.368562 -1.470114 -2.316211 -0.047364 -2.648630 -3.155452 -0.752012 1.465361 1.389154 0.530284 -1.724849 0.384353 -0.757491 0.036985 -0.572535 0.182444 1.792431 -2.813896 -0.649431 -0.266747 -0.418909 -1.777542 2.730733 1.618216 1.319883 3.798363 1.839297 -1.638825 0.384382 -3.283571 0.299098 4.403017 -0.450301 -3.094660 2.370264 -2.453463 0.105354 1.830043 1.876534 1.472533 -0.047605 -2.437913 -1.084494 0.318797 -0.712459 3.926138 0.779445 0.795793 -2.130252 3.334341 -1.003903 -2.179799 4.547627 2.173807 -3.910658 0.725792 1.925860 -2.396677 -1.248327 1.992757 -2.646461 -0.802402 -2.589331 0.418329 1.003869 -1.849677 -0.476479 1.071673 -3.469989 3.643116 0.251848 -0.061497 0.670218 -2.640413 -3.586938 5.018871 -0.045931 -0.081300 -1.165531 -1.266777 -0.897931 -3.932988 0.427812 -0.014650 -1.555904 -1.056433 -2.921229 1.246545 2.788300 -1.356327 2.362380 -2.443607 -0.909128 1.319786 0.468769 1.644259 -1.412372 -2.010172 -0.554550 -0.856383 1.219295 -2.403157 2.185848 4.068059 -1.372075 2.423483 -0.221123 -3.058927 0.120998 1.850048 -3.003585 3.515721 -0.745361 1.838962 0.183421 2.267850 -2.438099 -1.292545 -0.068222 -0.710202 -1.702183 1.721806 -2.202275 0.280629 0.345463 -2.458984 -1.592260 1.132352 0.124513 0.194987 -0.055769 0.254411 -3.147921 0.187759 -1.515745 0.654208 2.394531 0.260460 -2.674880 0.978301 0.702371 -0.723394 -0.712582 0.112442 -0.143905 2.735949 -2.967868 -0.535540 0.642249 0.575101 -2.558865 -4.205283 0.077250 -3.334125 -1.853244 1.826151 -2.910438 -0.571631 -2.264120 -0.179918 -2.850916 -1.673505 1.669760 4.387356 1.801384 -2.437862 0.836309 -0.287800 2.591133 0.275509 0.300928 0.445060 1.463141 +PE-benchmarks/floyd-warshall.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -2.405175 2.058263 1.904052 -1.142751 2.157641 0.002280 0.578472 0.962317 0.377117 1.114288 -4.232775 -3.003054 -1.720349 -2.763313 0.139703 -2.088280 0.676362 1.331049 -1.076456 0.858774 2.201393 -1.172888 -0.384978 -2.921610 0.353620 -0.714580 -1.538535 -0.774379 0.325711 1.203508 0.188688 0.664020 4.072348 2.058673 3.725600 2.678804 0.040510 4.849845 0.036929 2.755813 -0.488870 3.402233 -1.482881 -4.161843 1.454980 -3.071334 -0.270835 -2.875830 0.205886 -2.283023 3.299921 1.765708 0.268413 0.399528 -2.002281 -1.139986 3.201289 2.642309 3.184562 1.830803 -1.347150 2.432854 -1.688233 -0.795984 -1.613740 2.764469 1.787867 -2.270313 0.033512 -0.362925 2.875613 -2.114894 -2.746823 0.619559 0.002705 -0.984934 1.907663 -0.325092 -3.002851 -1.660242 -2.931259 0.146660 -0.457800 2.623977 -1.165954 -0.947102 -1.644681 -0.143585 1.429427 -2.296546 -1.693116 2.638658 -0.768960 0.602701 -1.560252 1.563816 0.170503 1.489699 -2.082774 -0.573348 1.289810 0.990181 0.195312 1.108375 -3.047543 -2.160229 3.167896 1.610519 -2.009493 1.331365 2.147538 1.906597 2.096166 1.351006 -2.273802 2.175168 -2.662311 0.765804 -0.641450 -0.054483 1.146112 0.557764 -0.422957 -1.251169 1.140368 -2.309498 2.108409 2.257371 -1.746951 -1.575667 1.165809 -2.825475 -3.140692 -1.085442 1.650812 2.163195 0.080418 -1.213468 -1.268303 -1.845579 -0.062490 -2.430711 -0.762344 2.272490 -1.010128 -1.092517 -0.908872 -1.328354 -1.531925 1.417120 -0.110253 0.336259 2.480475 1.521911 -1.804357 -2.544174 -1.628704 0.200071 4.478749 0.395744 -3.153142 0.584296 0.837248 1.008975 1.947430 0.165568 1.195154 0.726706 -1.630213 -1.466242 -2.501528 -2.166710 2.779322 3.320733 1.938801 -2.465507 3.885132 0.273768 -2.258855 4.381941 1.952106 -1.867569 -1.792085 1.639603 -2.852368 -1.347423 0.736161 -0.187014 -0.146693 -1.618663 0.234032 -0.245492 -2.545315 -2.222507 0.218628 -3.683936 3.298926 0.729387 1.848333 -1.132392 -3.313664 -2.451878 4.540543 0.302592 -1.193247 -0.398988 -0.463692 -0.878819 -3.419613 1.206092 0.596537 -0.796743 -2.158288 -1.819832 1.794298 2.279246 -2.268144 0.092694 1.138383 -2.131472 0.546853 -1.415398 1.927576 -4.056649 -2.619779 -0.605679 0.320823 2.988899 0.334411 1.659010 4.709044 -0.983375 1.021488 3.855581 -0.011137 -0.050555 3.105392 -1.527755 2.089178 -2.639841 1.236924 -0.674830 2.642396 -1.436002 -1.719688 0.439567 0.806037 -0.895515 2.749681 -1.606095 0.812837 0.191599 -2.578589 0.328675 2.139181 -0.489315 1.161083 -0.398238 0.693887 -3.090986 0.815938 -0.326725 -0.355627 3.003168 0.854806 -3.340949 -0.984855 -0.173295 -0.820105 -0.171772 0.707888 -0.904310 2.912377 -2.167111 0.209538 0.368970 -1.634775 -1.726722 -1.913791 -0.081126 -2.588616 -2.100087 3.060624 -1.965487 0.171077 -1.818754 0.533669 -1.865639 -1.094545 -0.391091 2.570743 2.158549 -0.996689 0.540187 0.357247 3.418215 0.951057 -0.692579 -0.235430 3.175866 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -13.286165 11.155126 8.919655 -6.832667 16.855680 0.593398 6.878082 5.894916 -2.437985 11.939638 -21.378543 -9.827462 -7.378120 -16.534900 -0.463765 -11.983078 3.956707 2.412458 -4.138467 4.917363 9.048509 -8.674109 -0.802840 -11.383654 -1.383545 -13.418436 -8.115092 -0.531772 10.069486 -2.894655 2.327854 1.888649 25.252456 6.591003 22.007597 15.336996 3.560902 20.771675 2.435577 3.960819 -3.428643 15.962218 -10.185990 -17.600225 1.442794 -13.447602 -7.863399 -10.360080 3.449239 -9.022665 6.071427 12.723505 -0.968590 3.883490 -11.822080 3.035446 15.925568 4.999080 22.018918 6.346850 -8.495442 4.246628 -12.090017 5.200181 -7.575867 7.579890 1.266935 -12.487722 2.596321 -1.514078 4.818910 -12.123953 -10.552637 9.849500 5.005684 -11.657934 7.491907 -4.114495 -20.775185 -15.463530 -14.329101 4.035850 1.889668 16.062716 -1.371499 -1.420246 -1.168818 3.007581 2.101255 -20.428665 -3.366884 17.332973 -9.751340 -0.997854 -6.092695 13.438800 -1.632431 8.661168 -12.101624 -7.680586 5.621541 1.196530 1.982144 -6.105719 -5.825143 -15.945345 9.357365 2.996304 -5.787480 6.667925 12.857607 9.247764 14.949752 14.159466 -17.855051 6.523572 -16.327009 5.995471 -3.335526 -1.081755 1.987552 5.222050 -2.497323 1.382102 14.382169 -19.697462 8.820697 9.588473 -8.972185 -16.346346 0.313512 -16.719030 -16.239009 -4.650782 8.275863 7.704131 3.039616 -10.236924 -2.490130 -6.248254 -2.574227 -10.361207 1.107590 16.662363 -14.035658 -3.782258 -2.496363 -4.072623 -9.945201 12.942359 6.520795 6.508929 19.176391 9.829797 -8.100068 0.858294 -14.406396 -0.054375 24.717240 6.937054 -18.117338 11.190072 -7.895878 1.398605 9.565920 7.112572 10.627365 -1.445212 -15.742311 -9.061007 2.744470 -5.467624 19.821463 8.091997 7.451864 -9.653915 23.303290 0.126995 -13.586370 24.349445 10.593203 -16.321031 1.763759 8.841196 -13.233401 -4.484123 9.607651 -10.443603 -1.781861 -10.918394 0.054491 2.904023 -10.784181 -5.500505 2.445496 -20.212604 21.776478 2.528050 7.484597 1.808912 -16.676617 -18.657732 25.614815 -1.338923 -3.271331 -5.830645 -5.923519 -8.090203 -19.787107 4.034327 1.604013 -8.710914 -7.745150 -15.615668 7.358286 13.236561 -6.923193 9.660486 -7.892323 -9.198479 6.192733 -0.719194 9.846325 -12.755485 -11.988871 -1.874835 -0.924826 12.058551 -6.596463 15.193320 24.456670 -6.444992 12.036948 4.053972 -6.285538 2.305920 11.415944 -15.483947 17.344772 -8.697282 12.596475 -0.792146 13.279491 -11.538370 -6.999012 1.700306 0.285593 -5.713665 10.136972 -10.174070 1.646725 1.355302 -14.732067 -5.346057 6.076992 -2.000861 1.776088 -0.327516 3.247051 -15.050652 0.628817 -7.751263 2.243097 14.525443 2.954188 -14.389889 2.119543 0.973121 -0.194597 0.635654 1.660860 -1.377218 14.085398 -15.862526 -3.116905 0.889219 -2.414558 -11.508086 -21.251474 1.528472 -16.710275 -11.754907 13.014853 -17.010756 0.994022 -12.517591 -1.953616 -17.554439 -4.404029 3.834109 21.984937 10.113236 -11.207026 3.799680 -1.044686 16.064796 1.997009 1.904175 1.836444 12.360043 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -0.820973 0.635435 -0.138163 -0.759960 2.275067 0.019232 0.117797 0.993189 -0.033566 0.697087 -1.652270 -0.122893 -0.035968 -1.409352 0.350184 0.233664 0.205174 0.478068 -0.560184 -0.238515 0.589593 -0.160382 0.126232 -0.964145 -0.032508 -0.931287 -0.426570 0.078018 0.258059 0.417922 -0.638344 0.311983 1.165528 0.059533 0.608108 0.745287 0.937014 1.218832 0.076897 0.368055 0.732125 0.571420 -0.345214 -1.574883 0.530225 -0.986410 -1.054163 -0.706906 0.334101 -1.376965 0.874164 0.858296 0.233615 -0.421384 -0.760101 0.457563 1.191049 -0.052359 1.116228 0.807481 -1.081831 -0.404862 -0.645826 0.815739 -0.699369 1.123745 0.327507 -1.502874 -0.834871 1.115593 0.597449 -0.762250 -1.096577 -0.162009 0.217744 -0.523768 0.625147 -0.110205 0.400767 -0.610712 -0.708495 0.489437 -0.471654 1.158838 0.057205 -0.173395 -0.345797 -0.351838 0.572317 -0.806085 -0.848639 1.128002 -0.437256 0.538186 -1.000615 0.172682 0.275473 -0.173050 -0.474999 -0.905482 0.418078 0.532314 0.117856 -0.159080 -0.435860 -1.107329 0.958956 0.857685 -0.158456 0.554196 0.167520 0.119088 -0.039297 0.304649 -0.553877 0.400151 -1.341603 0.362099 -0.070990 0.120568 -0.467913 -0.160517 0.788210 -0.029302 0.424390 -1.048718 1.408293 0.696656 -0.741414 -0.549784 0.481886 -0.325633 -1.033443 0.148618 0.584960 0.237562 0.016598 0.216806 0.251801 -0.536070 -0.992072 -0.602027 -0.659930 1.037247 -1.329233 -0.045186 -0.185605 -0.357097 -0.455014 0.529864 0.371147 0.227360 1.312951 0.642264 -0.459233 0.378519 -1.109217 0.872835 2.207796 0.829822 -1.094610 0.405100 -0.613127 0.546905 0.506375 0.061682 0.021185 0.688405 -0.553213 0.024693 -0.206320 -0.616682 1.221152 0.987642 0.855763 -1.603468 0.653918 -0.407768 0.123443 1.772912 1.037186 -1.554367 0.478764 1.490809 -0.667114 -0.131802 0.242790 -0.621771 -0.519313 -0.744950 0.413529 0.498736 -1.297315 -1.132291 -0.141561 -1.067798 1.179711 0.318695 0.204260 -0.075634 -0.892753 -0.020515 1.879449 0.152813 -0.129613 -0.036768 -0.406586 -0.770048 -1.448551 0.151224 0.774793 -0.825473 -0.492455 -0.803600 -0.223705 1.514474 -0.965846 0.079525 -1.005361 0.244320 0.520804 -0.002263 0.543838 -1.312398 -0.688488 -0.219227 -0.252117 0.491097 -0.751908 0.229763 1.001679 -0.750615 1.007700 0.767078 -0.011461 0.032565 1.031567 -0.130382 1.132577 -0.130775 1.272824 0.218366 1.205140 -0.726125 -0.052663 -0.417818 -0.327299 -0.539558 1.252885 -1.429167 -0.064934 1.048262 -0.519217 -1.002231 1.013654 0.701521 0.844141 -0.410700 -0.316903 -0.347747 -0.024833 -0.348250 0.368837 0.823777 -0.621480 -1.307173 -0.418310 0.889825 -1.055631 -0.633946 0.639082 0.211723 1.500699 -0.967265 0.839051 0.352981 0.048871 -1.739271 -0.977504 0.176872 -0.593977 -0.635860 0.668497 -1.737069 -0.843325 -0.604755 0.715771 -1.242466 -0.255011 -0.084356 1.180866 0.210404 0.010632 0.761714 0.279856 0.439767 -0.090394 0.098640 0.242638 0.678374 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -2.745842 2.955254 0.888372 -2.562524 5.923871 -0.123999 1.215195 1.906061 -0.540877 1.835719 -5.575934 -0.760944 -0.523495 -4.785417 0.891818 -0.970124 0.657436 1.657672 -1.145244 0.636740 2.120804 -1.547109 0.125884 -3.516161 0.019973 -3.136100 -1.348118 -0.044996 0.829333 1.391640 -0.226438 0.941872 3.966380 1.028637 2.475797 2.896269 1.603990 4.615029 0.397640 1.007558 1.451244 2.383999 -1.152190 -5.405293 1.690662 -2.969972 -2.679619 -2.969676 0.707278 -4.297843 1.763417 2.798658 0.608083 -1.191294 -3.114962 0.713690 4.861668 0.631105 3.585915 2.507535 -2.385117 -0.264268 -2.088860 0.635211 -2.137919 2.705127 1.675447 -3.945242 -1.251966 2.763045 1.824122 -2.153954 -3.455255 -0.330528 0.832878 -1.787101 1.888289 -0.587427 -2.160016 -2.067682 -2.103661 1.116243 -0.847326 3.930710 -0.057985 -0.637885 -0.827633 -0.903183 1.962126 -2.578812 -2.726449 3.547710 -0.801744 0.811455 -2.228441 2.206289 1.366263 -0.321418 -2.003554 -2.423594 1.487663 1.286081 0.396993 -0.046576 -2.816510 -3.798202 2.843068 2.486625 -1.346890 2.212163 0.936707 1.371324 0.482690 0.978609 -3.162350 1.921656 -4.301440 1.007136 -0.465427 0.229510 -0.618070 -0.402230 1.256675 -0.115374 1.212274 -3.307841 4.350653 2.773757 -1.932189 -2.154870 1.612536 -1.502653 -3.248723 -0.062138 1.788842 1.291320 0.327875 0.402317 -0.094783 -1.822552 -1.625052 -2.370241 -1.665216 4.472498 -3.838787 -0.230276 -0.714711 -1.209824 -1.541557 1.318577 0.753639 0.407611 4.047667 2.046218 -1.704267 1.184793 -2.977423 1.987346 7.066680 2.905541 -3.443351 1.214979 -0.818117 1.332246 1.617719 0.058085 0.669480 1.481115 -2.989475 -1.303666 -0.705252 -2.767019 3.633952 3.317777 2.316277 -5.178788 4.002623 -0.355905 -0.486170 5.621057 2.876869 -4.095109 1.037799 4.382033 -3.524587 -1.009264 0.726837 -1.346063 -1.187692 -2.047387 1.043749 0.719766 -3.735233 -3.832350 -1.166388 -3.762520 3.648654 1.100533 1.260994 -0.723350 -2.567213 -1.779270 6.016620 0.278185 -0.888958 -0.296136 -1.028580 -1.979553 -4.645055 0.730754 1.868537 -2.653296 -1.842778 -2.525276 -0.007336 4.127167 -3.401456 0.009385 -2.219066 -0.375300 1.481652 0.373291 1.582157 -4.389986 -2.532409 -0.307290 -0.165879 1.729875 -1.186376 1.667451 4.106350 -2.128239 2.420995 2.206101 -0.090815 0.813352 3.804218 -0.955835 3.501664 -1.289973 4.841426 0.472284 3.681083 -2.227721 -0.781295 -0.504655 -1.306317 -1.543169 3.756178 -4.119292 0.126080 3.032110 -1.636316 -2.591296 3.386375 1.649492 2.365755 -1.201830 0.047070 -1.595361 0.306015 -0.641179 0.708154 2.906499 -0.950684 -4.249117 -1.543593 2.721712 -2.183591 -1.999845 1.757845 0.441164 4.276781 -3.032630 2.670566 0.504209 -0.599023 -4.529339 -3.567263 1.640642 -2.748829 -2.475126 2.582902 -5.108867 -1.497121 -2.115555 2.017248 -3.918921 -0.853891 -0.304173 3.521792 0.893023 -0.244749 1.978945 0.475033 2.082598 -0.263999 0.393948 0.372013 2.939229 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = -1.138408 0.638246 0.174343 -1.194214 2.923331 -0.423225 0.044231 1.471253 0.654586 0.795210 -2.263525 -0.388310 -0.150786 -1.984657 0.386281 -0.331157 0.541970 0.875341 -0.876550 0.030514 0.835191 -0.074347 0.130383 -1.338521 -0.117336 -1.109347 -0.574485 0.193921 -0.202090 0.466352 -0.253365 0.658729 1.921739 0.448997 1.376708 1.142099 1.053170 1.975205 0.135230 1.070635 1.098242 0.685478 -0.200842 -2.255622 0.669773 -1.112454 -1.522655 -1.088313 0.332323 -2.102913 1.225763 1.191564 0.405564 -0.355568 -1.112353 0.364504 1.527149 0.282010 1.416624 1.167911 -1.835101 -0.031715 -0.970528 0.517001 -1.004569 1.296985 0.575780 -1.916504 -0.907308 1.656034 0.971240 -1.179955 -1.523636 -0.363813 0.439255 -0.641605 1.031868 -0.027935 0.427051 -0.660183 -0.717680 0.685417 -0.354122 1.355153 -0.050646 -0.054505 -0.446016 -0.573325 0.605768 -1.081027 -0.986884 1.379367 -0.885279 0.618605 -1.347782 0.551566 0.367841 -0.292833 -0.796066 -1.490195 0.669932 0.343112 0.086203 0.352137 -1.169581 -1.290556 1.479995 1.224590 -0.373787 0.812071 0.037183 0.622833 0.228619 0.381017 -0.993803 1.110710 -2.006485 0.610737 -0.486921 0.030565 -0.481585 -0.317342 0.979189 0.430422 0.449889 -1.338470 2.083417 1.195976 -0.895898 -0.662738 0.728577 -0.455585 -1.351369 -0.034352 0.960057 0.422116 0.230947 0.237217 0.168923 -0.800082 -0.727746 -0.952650 -0.924135 1.140366 -1.274969 -0.026843 -0.163004 -0.472335 -0.658069 0.585764 0.490550 0.053473 1.809501 0.541819 -0.801355 0.033134 -1.497437 0.849372 2.972713 0.713140 -1.450102 0.773380 -0.452286 0.678105 0.575555 0.253825 0.132457 0.450142 -0.800805 -0.210711 -0.519201 -0.855253 1.549083 1.264227 0.858038 -2.444585 0.921691 -0.570660 0.223371 2.752294 1.429823 -2.103044 0.067291 2.058673 -1.188656 -0.556738 0.299451 -0.605929 -0.620247 -0.882967 0.790743 0.402131 -1.659837 -1.533893 0.016950 -1.541747 1.264055 0.360695 0.196457 -0.493415 -1.323013 -0.445581 3.005675 0.102663 -0.198269 0.277725 -0.700578 -0.345330 -2.196503 -0.022824 0.927669 -0.895631 -0.309318 -0.851514 -0.061941 1.965226 -1.502235 0.083537 -1.012108 -0.000428 0.807109 -0.424938 0.411267 -1.857084 -1.012271 -0.321395 -0.292081 0.628163 -0.861674 0.158953 1.515234 -0.738643 1.365226 1.112306 -0.398138 0.142939 1.479178 -0.431510 1.792266 -0.456274 1.753888 0.417649 1.539941 -1.016965 -0.348325 -0.588607 -0.482285 -1.046798 1.750972 -1.960096 0.034594 1.259047 -0.544057 -1.256193 1.422589 1.010868 0.856068 -0.461393 -0.074201 -0.758899 -0.013670 -0.567864 0.696414 0.976699 -0.581131 -1.800322 -0.451798 1.560869 -1.317440 -0.956816 0.755447 0.281646 2.127699 -1.310081 1.182051 0.681577 -0.053906 -2.028088 -1.409318 0.553359 -1.323141 -0.736626 0.395869 -2.324862 -1.295877 -0.681922 1.192681 -1.229665 -0.190185 0.173363 1.788397 0.666607 -0.331834 0.911692 0.189425 0.539196 -0.012467 0.214901 0.208784 1.220660 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -8.469595 2.697266 1.632657 -4.315960 16.490951 -0.165747 4.332104 8.924580 -4.001291 8.508827 -12.956068 -4.122246 -3.963740 -10.677715 0.468746 -3.548102 4.034093 -0.292592 -5.216118 0.711498 5.126715 -2.438793 0.292889 -6.060189 -1.461199 -8.295043 -4.390050 0.953842 8.822232 -3.153553 -2.868718 1.325552 17.097932 0.585569 13.861068 8.346993 7.472554 10.026554 0.414724 -3.580136 0.241455 9.239222 -6.576530 -8.957803 -1.865436 -8.477304 -9.415698 -3.017432 4.118488 -5.308037 0.349726 8.804153 -0.108696 2.853981 -5.687990 6.700635 8.313466 -2.424816 14.643414 4.089852 -8.897314 -2.031768 -7.534915 10.686559 -4.235486 5.789206 -3.865271 -9.000318 -2.268011 1.670560 -1.029282 -8.772044 -5.727568 6.123025 4.932967 -8.088892 6.282903 -1.546830 -1.430997 -12.728104 -8.934675 3.796760 -0.581619 9.907724 -0.321685 -0.234224 1.771906 1.122092 0.320601 -14.314736 -1.041948 11.202534 -10.147509 -2.096135 -7.633039 5.376022 -2.901429 5.249090 -7.963989 -9.345840 3.002090 0.234668 1.024153 -9.566750 4.742020 -8.898172 2.417257 1.766903 1.061983 7.142140 5.653305 4.335618 8.500240 9.746535 -7.911951 1.789961 -10.915008 4.510551 -4.696634 -0.218829 -1.816103 3.197630 5.335663 3.730858 10.316237 -14.258593 6.124324 5.628199 -5.924659 -9.873694 -0.257826 -10.085100 -11.127177 -1.368802 5.964465 2.786530 2.219036 -6.562077 3.613182 -2.642778 -4.983507 -2.757819 -0.158015 6.637311 -13.521343 -2.257981 -0.767961 -0.869150 -5.949615 10.416714 6.107751 4.571303 13.932033 5.515321 -6.316395 4.957633 -11.568519 2.462469 16.565619 1.592176 -11.624818 8.721203 -11.289814 1.349018 5.558351 6.183020 6.052842 -0.094003 -8.554015 -1.952675 5.786600 -0.737513 14.678545 1.335400 5.182451 -7.849956 9.978926 -5.483337 -5.760233 15.473431 8.798792 -15.237789 4.713786 6.875044 -4.195843 -1.101572 6.699081 -10.905539 -3.889789 -9.403434 1.744519 4.793458 -7.693442 -1.470233 4.175699 -12.087003 13.733560 1.205263 0.205657 2.633495 -10.174814 -7.080955 17.118942 0.036116 -0.269451 -3.961703 -5.399873 -7.137195 -14.073451 1.591304 0.690601 -4.974095 -3.007375 -10.666858 1.707582 10.367743 -3.072632 8.314605 -13.705049 -0.714972 5.001012 1.200820 6.903448 -5.372328 -7.240872 -2.339065 -3.848578 5.952929 -11.218719 7.417979 12.761351 -5.440143 11.643384 -1.922101 -7.907579 -0.063425 5.203563 -10.171584 12.833554 -0.720195 9.446087 0.385453 9.327925 -9.298885 -2.940932 -2.242215 -1.781537 -5.531073 6.541616 -8.760249 0.102836 1.649071 -7.834202 -7.901165 3.022364 -0.021343 0.339951 -0.191608 -1.275735 -9.094619 -0.924763 -8.050256 4.113146 8.632075 -2.455788 -9.135245 2.836058 2.746867 -2.941642 0.961442 1.334480 0.197405 10.832032 -11.047033 -2.786971 2.413742 3.368198 -9.873314 -15.444951 -0.373862 -8.680524 -6.048320 7.367656 -11.944597 -2.936163 -7.953306 -0.713326 -13.110271 -4.621991 4.871873 16.341383 4.613606 -8.210060 3.557104 0.136038 7.830297 0.446457 3.208449 2.331469 3.574165 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -0.639019 1.146371 1.129164 -0.641904 0.653195 0.238047 0.127176 0.397050 -0.128884 0.463594 -1.437341 -0.322331 -0.256139 -0.926613 0.143507 -0.689104 -0.097319 0.138846 -0.062492 0.477507 0.568228 -0.648699 -0.101599 -0.926219 -0.041325 -0.638952 -0.328623 -0.143429 0.375424 0.356436 0.450028 0.080041 1.010054 0.490544 0.879660 0.661720 0.285829 1.360137 0.200019 0.481967 -0.117109 0.847399 -0.459644 -1.171967 0.514140 -0.842660 0.056872 -0.587415 0.019514 -0.652320 0.884201 0.646841 0.018252 -0.329798 -0.841107 0.038492 0.870287 0.359513 1.006745 0.471816 -0.368514 -0.115604 -0.806337 0.098178 -0.625936 0.849449 0.355721 -0.432244 0.181678 0.051540 0.598650 -0.203445 -0.783036 0.296326 -0.002987 -0.510476 0.553014 -0.361570 -1.113475 -0.315714 -0.645494 0.386565 0.117746 0.959676 -0.156231 -0.098614 -0.389606 0.161661 0.311466 -0.811270 -0.525294 0.627624 -0.371038 0.042613 -0.346414 0.801945 -0.099304 0.254127 -0.487146 -0.144636 0.603940 0.362551 0.128056 -0.347295 -0.489780 -1.221004 1.178718 0.717791 -0.551430 0.417890 0.778751 0.831463 0.619206 0.538785 -0.825841 0.368443 -0.930486 -0.122796 0.339308 -0.023634 0.001776 0.242275 -0.546641 -0.141522 0.466432 -0.889765 0.843880 0.683453 -0.579704 -0.356007 0.252460 -0.724279 -0.850882 -0.320857 0.392382 0.644721 -0.043571 -0.117197 -0.401977 -0.433775 -0.304925 -1.104769 -0.111551 1.198396 -0.725501 -0.239096 -0.230866 -0.343361 -0.433068 0.542582 0.207345 0.139795 0.605954 0.455149 -0.232781 -0.388865 -0.474312 0.188041 1.365651 0.383033 -1.080763 0.456130 -0.285837 0.132832 0.472939 0.038092 0.435574 0.342228 -1.010025 -0.989424 -0.064284 -0.736131 0.905722 0.789651 0.430389 -0.975088 1.537129 -0.053094 -0.695449 1.411867 0.340185 -0.454965 -0.646027 0.698298 -1.114764 -0.374484 0.264344 -0.183391 0.090940 -0.381907 -0.111387 0.126308 -0.652570 -0.923990 -0.298086 -1.153142 1.253776 0.242321 0.802368 -0.411430 -0.692368 -1.133108 1.373473 -0.074274 -0.494261 -0.330622 -0.114925 -0.280019 -1.037349 0.303233 0.468594 -0.365320 -0.706249 -0.714434 0.317070 0.456273 -0.791525 -0.081408 -0.338086 -0.857008 0.287488 -0.374553 0.379362 -0.788743 -0.703216 -0.119615 0.052007 0.823126 -0.018708 0.956226 1.467222 -0.349239 0.882087 0.942627 -0.097124 0.015585 1.070329 -0.405996 0.894653 -0.915155 0.505864 -0.149387 0.840299 -0.694838 -0.419453 0.196283 -0.268717 -0.129178 0.578973 -0.511089 0.162674 -0.161387 -0.857840 -0.072510 0.727385 -0.063829 0.409044 -0.137351 0.430020 -0.326247 -0.162978 -0.175472 -0.018768 0.860164 0.014124 -0.797547 -0.227270 0.132652 -0.123752 -0.238068 0.267859 -0.068888 0.947235 -0.821233 0.355724 -0.016812 -0.552542 -0.946556 -0.751866 0.160620 -0.761467 -0.627228 0.780424 -1.056598 0.091193 -0.619677 0.173432 -0.619317 -0.053617 -0.034724 0.857968 0.411190 -0.584530 0.360954 -0.082777 1.005915 0.365410 -0.148172 -0.031804 0.760026 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -1.101824 0.661553 -0.097339 -1.296710 3.164865 -0.042417 0.180210 2.603288 -0.313552 1.097710 -2.242868 0.134944 -0.128475 -2.246418 0.302427 -0.153806 0.839248 0.483600 -1.105413 -0.123125 0.809674 0.235524 0.337491 -1.158663 -0.336049 -1.655802 -0.423592 0.210077 0.562614 0.368064 -0.623281 0.265814 2.646338 0.120785 1.732138 1.123042 1.858138 1.513009 0.701964 0.130098 0.711385 0.944563 -0.673787 -1.871597 -0.045270 -1.403578 -1.766965 -0.477575 0.570379 -1.914414 0.253581 1.176855 0.495509 0.055083 -0.926040 0.832900 1.260915 -0.748414 1.850769 1.075408 -1.984418 -1.244937 -0.893139 1.596482 -1.040699 1.301167 -0.066266 -1.621745 -1.119742 1.313880 0.104616 -1.039615 -1.275357 -0.010861 0.659344 -1.097589 1.188677 -0.124099 0.798730 -1.287094 -0.774432 1.102934 -0.677872 1.727266 0.222823 0.056000 0.084329 -0.255383 0.365753 -1.795505 -0.528695 1.505906 -1.279186 -0.121395 -1.886717 0.614818 -0.357262 0.263273 -0.840187 -2.010319 0.745656 0.469995 0.104891 -1.256020 -0.045799 -1.483306 0.843631 1.094498 -0.061232 1.414094 0.133934 0.571376 0.637327 1.127539 -0.944809 0.575654 -2.385018 0.929592 -1.060619 0.013480 -0.866081 0.015153 1.585084 0.916526 1.021590 -1.891896 1.901076 1.553823 -1.193781 -0.997604 0.579121 -0.893957 -1.731134 0.137507 0.969229 0.175087 0.452728 -0.462050 0.844869 -0.782904 -1.158007 -0.859675 -0.892746 0.752121 -2.560713 -0.245890 -0.016531 -0.129620 -0.698872 1.390069 0.742534 0.318577 2.251685 0.570873 -1.157918 1.106036 -1.915253 0.845705 3.198841 0.947344 -1.488349 1.127007 -1.405774 0.406445 0.806912 0.659303 0.259040 0.492636 -1.236419 -0.228276 0.189376 -0.389043 2.233799 0.895613 0.981523 -2.298720 1.167928 -1.110163 0.049964 2.650851 1.795141 -2.287177 0.634117 1.752914 -0.683886 -0.183197 0.450678 -1.669698 -0.808219 -1.303054 0.347172 0.920000 -1.599721 -1.186797 0.271621 -1.578662 1.775916 0.344287 -0.322637 -0.181673 -1.493844 -0.168719 3.001810 0.135042 -0.103384 -0.207793 -0.890778 -1.161065 -2.454937 0.145871 0.736350 -1.069167 0.073232 -1.355915 -0.326891 1.816285 -0.993803 0.386443 -2.727149 0.317939 1.089445 -0.023654 0.775808 -1.671707 -0.953214 -0.366090 -0.831495 0.872821 -2.001413 0.752986 1.491255 -0.847537 2.046187 0.079078 -1.024068 -0.043277 1.147523 -0.999552 2.209483 -0.197784 1.894100 0.545957 1.637035 -1.394418 -0.216332 -1.043570 -0.846787 -0.961151 1.644611 -2.222828 -0.153791 1.033705 -0.624135 -1.673208 0.988877 0.774491 0.340426 -0.433199 -0.370399 -1.066096 -0.093619 -0.992175 0.800586 1.288234 -1.036602 -2.075675 -0.063273 1.494526 -1.126205 -0.767358 0.479250 0.463466 2.163430 -1.588749 0.571970 0.699169 0.667277 -2.511286 -2.309807 0.530388 -0.995545 -0.667512 0.482604 -2.389326 -1.485770 -0.966246 0.710415 -2.028317 -0.309567 0.946906 2.123375 0.051865 -0.836203 0.556295 0.281879 0.842873 0.002561 0.702193 0.294130 0.720811 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.574468 0.672830 0.128187 -0.509391 1.110722 0.063814 0.056169 0.493451 0.012006 0.514884 -1.119633 -0.188340 -0.131248 -0.980471 0.120285 -0.088893 0.092375 0.341575 -0.196378 0.074010 0.435054 -0.417167 0.091758 -0.685077 -0.005986 -0.738829 -0.248060 -0.017229 0.190593 0.354948 -0.081293 0.104254 0.816243 0.277767 0.509269 0.557527 0.220324 0.984208 0.240192 0.400898 0.201174 0.528311 -0.273709 -1.140851 0.418903 -0.685369 -0.399500 -0.664202 0.158881 -0.953550 0.545532 0.549942 0.081915 -0.248093 -0.661381 0.048104 0.932701 0.237929 0.822121 0.445850 -0.466322 -0.159036 -0.428527 0.091899 -0.491374 0.476922 0.427430 -0.797583 -0.170563 0.476878 0.343874 -0.305980 -0.553963 0.019491 0.111577 -0.390071 0.364643 -0.164770 -0.548563 -0.359002 -0.435118 0.214566 -0.175298 0.808060 -0.028262 -0.105674 -0.248347 -0.121514 0.373825 -0.586779 -0.495978 0.694929 -0.118249 0.238502 -0.252490 0.547252 0.271073 -0.032522 -0.318609 -0.286770 0.264995 0.332375 0.101679 0.002090 -0.630362 -0.822362 0.779024 0.442125 -0.287312 0.335972 0.336627 0.247807 0.113233 0.295978 -0.695186 0.427393 -0.894476 0.190221 0.041693 0.060461 -0.107873 -0.040788 0.177862 -0.104775 0.306123 -0.708853 0.859011 0.553702 -0.342636 -0.496862 0.306420 -0.352087 -0.631365 -0.001401 0.347161 0.228762 0.045769 -0.002312 -0.094526 -0.392841 -0.484681 -0.519736 -0.303285 1.013747 -0.742848 -0.039257 -0.142925 -0.274616 -0.282929 0.259218 0.141078 0.103415 0.834871 0.438174 -0.297951 0.116267 -0.588267 0.391523 1.451164 0.620516 -0.724936 0.249920 -0.099031 0.256476 0.379194 -0.003028 0.231106 0.364416 -0.555656 -0.298262 -0.174479 -0.513747 0.753154 0.720854 0.558465 -0.959632 0.898239 0.057600 -0.098921 1.177360 0.550144 -0.783125 0.188823 0.818503 -0.849107 -0.068968 0.132164 -0.160702 -0.109453 -0.405036 0.139663 0.208383 -0.765058 -0.827131 -0.289930 -0.805609 0.873474 0.200919 0.470887 -0.067829 -0.608035 -0.181465 1.176938 0.117422 -0.197732 -0.076836 -0.212317 -0.603657 -0.934351 0.148208 0.399378 -0.613405 -0.349033 -0.541082 -0.009867 0.784949 -0.601678 -0.016180 -0.443766 -0.115344 0.309724 -0.012277 0.291473 -0.863402 -0.506827 -0.036308 -0.060723 0.492811 -0.159452 0.463071 0.864006 -0.396706 0.560583 0.582737 0.240409 0.223918 0.744481 -0.231638 0.722968 -0.400750 0.818001 0.070670 0.743494 -0.384361 -0.109974 -0.103540 -0.244504 -0.234742 0.746716 -0.814612 -0.004834 0.636130 -0.473351 -0.418302 0.634209 0.284502 0.600812 -0.193381 0.031513 -0.404191 0.041387 -0.141912 0.102286 0.599066 -0.098354 -0.900075 -0.306841 0.447423 -0.362197 -0.508278 0.337396 0.070982 0.810522 -0.637524 0.489042 0.111204 -0.203150 -0.878206 -0.603048 0.256888 -0.457967 -0.556975 0.576184 -1.118950 -0.236279 -0.447142 0.337431 -0.868596 -0.020702 -0.174045 0.760689 0.209260 -0.081297 0.403417 0.095856 0.472870 0.022056 0.052144 0.072633 0.666709 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -1.120707 0.313929 0.208264 -0.555897 2.399030 -0.088669 0.453844 1.025288 -0.099425 1.140054 -1.721564 -0.690231 -0.407579 -1.188577 0.159432 -0.268202 0.437030 0.202813 -0.762606 -0.170115 0.623382 -0.089778 0.006651 -0.745125 -0.194822 -1.137656 -0.801774 0.246951 1.012013 -0.473518 -0.644547 0.260367 2.202414 -0.173430 1.741290 1.106176 1.094171 1.280154 -0.084952 -0.343522 0.420640 1.131170 -0.842162 -1.216763 -0.143299 -1.106022 -1.307030 -0.483885 0.631039 -0.710038 0.367091 1.029376 0.025699 0.271197 -0.630220 0.967267 1.008850 -0.090470 1.875078 0.587014 -1.214906 0.183822 -1.084136 1.710365 -0.725724 1.020123 -0.829839 -1.674885 -0.667515 0.451182 0.224194 -1.252829 -0.935348 0.662637 0.507839 -0.939157 0.852748 -0.163572 0.612910 -1.699905 -1.266572 0.526459 -0.344913 1.229332 -0.154359 -0.139305 -0.081889 0.040972 0.100793 -1.653554 -0.410759 1.434583 -1.336290 0.034776 -0.707914 0.216379 -0.101456 0.537852 -0.795320 -1.323527 0.331835 0.015617 0.127842 -0.588250 0.985509 -0.814127 0.233069 0.404809 0.262681 0.883107 0.542926 0.583078 1.027132 1.061989 -0.762419 -0.031082 -1.358132 0.699073 -0.777997 -0.010559 -0.266264 0.485866 0.818152 0.491786 1.343101 -1.708072 0.875897 0.486085 -0.761738 -0.922616 0.066353 -1.059679 -1.510774 -0.182833 0.737621 0.435275 0.117780 -0.721006 0.502604 -0.328839 -0.636640 -0.139769 -0.151476 0.515712 -1.637908 -0.297081 -0.114760 -0.210244 -0.694066 1.331767 0.848750 0.680106 1.788708 0.873713 -0.750457 0.284398 -1.734924 0.490447 2.124758 -0.210936 -1.457395 1.048537 -1.431159 0.224686 0.967758 0.855115 0.526147 0.217888 -0.686065 -0.060171 0.230045 -0.074710 1.925371 0.357754 0.609960 -1.167797 0.903009 -0.787640 -0.646550 2.201078 1.041868 -2.144040 0.560549 0.988290 -0.547203 -0.276640 0.784194 -1.393055 -0.632570 -1.287750 0.311100 0.785010 -1.042690 -0.295194 0.690610 -1.494528 1.727310 0.061752 -0.324793 0.418452 -1.328902 -0.818260 2.359833 0.152158 0.074727 -0.459705 -0.673134 -0.545547 -1.869114 0.139049 0.147072 -0.694882 -0.436301 -1.369700 0.268756 1.537481 -0.532440 1.027429 -1.683867 0.021664 0.668329 0.045159 0.792307 -0.845862 -0.846244 -0.396835 -0.628742 0.554926 -1.535528 0.690166 1.617432 -0.794689 1.290847 0.137205 -1.185795 -0.131348 0.739322 -1.183834 1.651112 -0.083736 0.927035 0.104855 1.125105 -1.152375 -0.389889 -0.374019 -0.115647 -0.874401 0.952361 -1.200667 0.029087 0.350867 -1.107891 -1.001192 0.526660 0.255842 0.249714 -0.044208 -0.317455 -1.320220 -0.035226 -0.807388 0.394098 1.060684 -0.362116 -1.377538 0.439432 0.345131 -0.749504 -0.365972 0.146292 0.051609 1.441515 -1.380055 -0.190885 0.490700 0.514837 -1.518035 -1.795268 -0.247401 -1.163819 -0.729649 0.872197 -1.507694 -0.697578 -0.982820 0.064988 -1.426321 -0.711679 0.706642 2.075085 0.699882 -0.993230 0.591984 0.043889 1.043751 0.088906 0.184851 0.246310 0.446832 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -4.408394 -1.714879 -2.744700 -3.803932 11.154771 -3.556674 -0.935939 10.070404 4.609001 2.607591 -7.841324 -4.217461 -1.591558 -7.552882 0.979736 -0.096296 5.154913 2.300284 -5.596660 -1.129978 2.519210 3.764034 0.748737 -3.490865 -0.950339 -1.380694 -3.311259 1.536797 -2.239428 -2.243074 -1.263369 3.754598 13.107127 2.154936 9.530741 4.056803 6.828258 6.873407 2.649194 2.449299 4.806067 2.979217 -1.464519 -5.984688 -0.381623 -3.990678 -7.391447 -1.623331 1.714888 -5.664157 4.960193 5.027563 2.411391 2.055943 -3.399587 1.203672 2.690220 -2.367125 6.611668 4.265312 -10.669305 -0.054350 -1.702902 5.611996 -3.856284 4.638591 -1.226758 -5.299293 -4.765091 6.171239 4.510092 -8.600119 -6.426996 -0.649649 2.304517 -2.778049 6.293410 1.915410 11.245540 -6.015541 -4.268799 4.177788 -1.582471 3.818987 -0.487838 0.071870 -1.773126 -2.411619 0.446500 -5.836281 -0.378941 4.478925 -7.690160 0.618202 -6.684237 0.683293 -3.204254 0.675252 -4.247102 -9.978981 2.263622 -1.685850 -0.459735 1.856355 2.058263 -1.906489 2.918532 3.732026 0.397088 6.230820 1.917388 3.912302 4.733965 2.794645 -1.447678 2.023135 -9.245524 4.205064 -4.752737 -1.714008 -1.874710 -1.005273 7.064992 4.238149 2.249945 -7.048214 6.187853 5.713064 -4.329945 -2.185869 1.192200 -3.211754 -6.927702 -0.200219 5.093025 1.348184 2.195118 -1.175806 2.611536 -2.560911 -2.025569 -3.307835 -3.541176 0.371120 -6.134834 -1.227264 0.593337 -0.786881 -2.992832 5.011216 2.632578 -0.347155 9.235953 -0.427502 -6.452904 -0.791295 -7.337530 2.321398 10.486994 -0.410418 -6.101882 5.622307 -5.430532 1.618941 1.694035 5.013090 1.132434 -2.745416 -1.782647 1.431329 0.234838 -0.527946 8.164540 -1.562667 3.031798 -8.880572 0.718272 -3.048969 1.806831 13.522726 4.075086 -9.141046 -1.707999 7.324886 1.032914 -1.873509 2.888327 -5.857312 -5.780548 -5.096446 4.567082 2.561123 -6.124776 -1.529810 5.007750 -6.359404 4.003279 0.735995 -4.929302 -1.074682 -8.271690 0.097261 14.908370 0.446232 1.931346 2.448353 -4.635890 5.044315 -10.337061 -0.604230 3.253207 -0.035778 3.213473 -2.529846 0.719744 7.942320 -3.805300 3.741991 -8.400361 1.197245 4.111310 -4.633849 0.688200 -6.904072 -4.287441 -0.376252 -1.957310 1.803870 -7.984397 0.012256 4.398229 -3.081880 6.689644 3.721315 -3.284060 -1.223239 2.500049 -4.086101 8.913630 -0.814602 6.279148 2.100287 5.961184 -5.220522 -2.437325 -4.472880 -0.097620 -7.310757 4.629058 -7.951931 0.370462 2.866350 0.207741 -6.683745 3.268195 2.802415 -1.531853 -0.964620 -2.912752 -3.305779 -0.176932 -3.335412 6.203135 3.839145 -2.158547 -6.514196 1.186027 7.126826 -5.588533 1.556675 1.476039 0.999054 9.478733 -6.217257 1.147459 4.243714 4.606770 -6.825357 -7.887130 2.447913 -4.039191 0.613398 -0.744525 -7.941022 -8.513862 -2.999694 3.548784 -3.652186 0.521194 4.171698 9.589999 4.506352 -6.653754 1.809004 0.991092 0.708555 0.939143 1.582362 2.412547 2.515519 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::basic_string >(char const*, std::allocator const&) = -1.483723 0.611972 0.115567 -1.771397 4.145057 -0.165993 0.129662 2.736932 0.191311 1.274006 -3.353402 -0.375519 -0.309827 -3.045586 0.449190 -0.657101 1.073212 0.536943 -1.364988 0.036722 1.056520 0.285668 0.340693 -1.818869 -0.293108 -1.806179 -0.872639 0.226350 0.318923 0.621528 -0.517629 0.475037 3.322204 0.530889 2.241653 1.606357 1.928036 2.343545 0.539068 0.753305 1.180557 1.289732 -0.669187 -2.691195 0.005809 -1.848208 -2.313768 -0.948610 0.559563 -2.547193 0.644861 1.526804 0.727193 -0.123350 -1.657004 0.662685 1.782430 -0.273849 2.304755 1.518453 -2.709612 -0.974003 -1.302902 1.396030 -1.391444 1.871234 0.340773 -2.027290 -1.235049 1.905348 0.589833 -1.521439 -2.133909 -0.297805 0.833214 -1.276183 1.625594 -0.138745 0.792762 -1.244193 -0.742634 1.315109 -0.846476 2.203583 0.140876 -0.065956 -0.124470 -0.580938 0.712299 -1.993575 -1.167633 1.878866 -1.528223 -0.106360 -2.349877 1.136537 -0.058157 0.125184 -0.991174 -2.316293 0.940042 0.623451 0.059789 -0.847350 -0.949351 -2.142232 1.619922 1.658020 -0.365148 1.594371 0.127466 0.934079 0.827366 1.064231 -1.432805 1.106254 -2.909372 0.927766 -1.444179 -0.114882 -1.258999 -0.058298 1.687325 1.146875 1.087562 -2.165317 2.731179 2.111478 -1.518771 -1.021635 0.871793 -1.021785 -2.405593 0.387767 1.176531 0.558119 0.611468 -0.302838 0.798187 -1.081437 -1.086034 -0.936597 -1.027210 1.024791 -2.333227 -0.387828 -0.034395 -0.211742 -0.987649 1.568292 0.832963 0.203835 2.758171 0.495037 -1.450830 0.629311 -2.448129 1.206004 4.469837 0.653117 -1.974924 1.274660 -1.310757 0.818704 0.918411 0.669304 0.333599 0.450694 -1.485062 -0.297516 -0.240669 -0.896169 2.591567 1.631229 1.249174 -3.156199 1.485627 -1.577250 0.415300 3.373479 2.292936 -2.942602 0.348045 2.594668 -1.311671 -0.400107 0.513735 -1.402731 -0.777939 -1.846299 0.716233 0.913811 -2.074581 -1.780518 -0.010007 -2.080915 2.111627 0.513147 -0.159547 -0.643171 -1.735697 -0.591049 4.224398 0.067965 -0.088222 0.106897 -0.996982 -1.060097 -3.386598 0.025784 0.971105 -1.479556 0.176537 -1.607848 -0.081513 2.444872 -1.805215 0.442799 -2.488122 0.230631 1.312876 -0.188343 0.811234 -2.194453 -1.388102 -0.653410 -0.921337 1.143815 -2.366377 0.655784 2.089291 -0.898582 2.659816 0.567865 -0.936857 -0.124439 1.802167 -1.093607 2.812525 -0.504736 2.581644 0.624673 2.214727 -1.432282 -0.494936 -1.251369 -1.247960 -1.269839 2.313696 -3.026458 -0.034376 1.757610 -0.673932 -1.956506 1.711744 1.099077 0.668398 -0.694443 -0.154651 -1.552745 -0.098816 -1.133376 1.208583 1.538190 -1.131893 -2.770684 -0.323519 2.315567 -1.729536 -1.223995 0.641951 0.412126 2.936886 -2.001355 0.996813 1.034885 0.619381 -2.997937 -2.653115 0.761040 -1.448505 -0.920521 0.628261 -2.998598 -2.118252 -1.118531 1.124048 -2.086651 -0.661332 0.974988 2.637074 0.531077 -0.929845 0.532148 0.338145 0.867779 -0.113880 0.648627 0.518207 1.101512 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -3.615318 2.459834 -0.453655 -3.963534 9.550113 -0.238439 0.856805 5.232182 0.093605 2.672858 -7.489757 -0.652765 -0.293199 -6.341911 1.113738 -0.029558 1.482353 2.084176 -3.140604 -0.297505 2.660894 0.052324 0.758945 -4.324335 -0.501606 -3.332994 -1.937807 0.405015 0.451495 1.339931 -1.762313 1.148270 6.425995 0.693146 3.965652 3.321148 4.383907 5.750503 0.696839 1.765793 3.145888 2.725697 -1.521072 -6.734894 1.557202 -4.338792 -4.985509 -2.938905 1.373220 -6.321058 3.540063 3.764714 1.479697 -1.261760 -3.261212 1.813697 5.194018 -0.899923 5.064655 3.570112 -5.538350 -1.313180 -2.689098 3.090694 -3.022027 5.044909 1.411653 -5.697629 -3.679815 4.696269 2.970900 -4.284996 -5.352780 -0.864237 1.304521 -2.460895 3.303943 -0.513762 2.224996 -3.305729 -2.610026 2.485315 -1.832094 4.826590 0.109932 -0.444169 -1.316702 -1.434914 2.031751 -3.937945 -3.153935 4.806031 -2.583806 1.472500 -5.208017 1.184456 -0.111130 -0.344409 -3.036447 -4.901010 2.070703 2.020490 0.314353 -0.903092 -1.909515 -4.517119 3.709676 4.242243 -1.119603 3.051223 0.653505 1.531002 0.892642 1.779201 -2.599618 2.538064 -6.686696 1.813641 -1.487351 0.313467 -1.863200 -0.667371 3.698239 1.002569 1.841471 -4.742006 6.429225 3.850089 -3.866918 -2.569829 2.163091 -1.786428 -4.937933 0.498325 2.661422 1.217497 0.679331 0.230299 1.270913 -2.697610 -3.348158 -3.266569 -2.708980 3.485754 -5.873731 -0.496973 -0.454134 -1.167714 -2.092541 2.979034 1.662083 0.218689 6.374403 2.032332 -2.672917 1.571738 -4.818909 3.128252 9.614624 3.512974 -4.836131 2.303246 -2.754980 2.114626 2.201455 0.908611 0.202447 1.964327 -3.122163 -0.344744 -0.565880 -2.712479 5.776627 3.516827 3.367726 -7.541914 3.280486 -2.176372 0.661964 8.443628 4.900658 -6.639449 1.011531 6.182583 -2.070519 -1.143225 1.172155 -3.097523 -2.855388 -2.983120 1.855139 1.673828 -5.130687 -4.874966 -0.073168 -4.912376 4.981583 1.224239 -0.385418 -1.032179 -4.535746 -0.472039 8.986367 0.351324 -0.773243 0.343704 -1.894441 -1.780455 -7.066587 0.647999 3.321014 -2.988126 -1.351203 -3.286435 -0.221194 6.055823 -4.384635 0.386612 -4.783680 0.245598 2.607752 -0.773711 2.376975 -6.316778 -3.111800 -1.127229 -0.936182 2.444308 -3.863093 1.206693 4.877576 -2.965479 4.563403 3.045865 -0.962947 -0.153074 4.637662 -1.325455 5.727694 -0.902912 6.111144 0.895784 5.176561 -3.402754 -0.719822 -2.210587 -1.246138 -2.721304 5.345332 -6.434686 -0.157111 3.599339 -1.757734 -4.334520 4.418653 2.828347 2.001911 -1.588199 -0.999076 -1.950298 -0.167702 -1.908388 1.777234 3.780691 -2.652912 -6.244158 -1.551459 4.429172 -4.262159 -1.683842 2.234344 1.148599 6.874528 -4.373287 3.278490 1.683035 0.455992 -7.522178 -5.203403 1.596631 -3.170282 -2.256011 2.200475 -6.911757 -4.318583 -2.747428 3.174334 -5.095297 -1.018623 0.928981 5.496046 1.494759 -1.111559 2.626100 0.990658 2.487146 -0.076098 0.839249 1.166384 3.019967 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.522661 0.248975 -0.337421 -0.426646 1.628001 -0.011030 -0.035300 0.804232 -0.166414 0.596871 -0.890078 0.067619 -0.039412 -0.960391 0.240276 0.390232 0.205013 0.270026 -0.355590 -0.229012 0.336747 -0.130886 0.174279 -0.462470 -0.078925 -0.759123 -0.152403 0.147547 0.372411 0.164360 -0.587473 0.188896 0.783860 -0.126170 0.323079 0.400234 0.730705 0.637340 0.169144 -0.163081 0.462640 0.308184 -0.238108 -0.904983 0.284053 -0.585997 -0.790042 -0.308516 0.342029 -0.810009 0.319517 0.577914 0.101647 -0.264132 -0.501434 0.462131 0.688042 -0.232546 0.795938 0.425916 -0.681904 -0.629261 -0.393666 0.840997 -0.495471 0.514706 -0.001559 -0.983582 -0.567174 0.775284 0.062016 -0.375847 -0.553755 -0.020172 0.240070 -0.429268 0.362254 -0.027672 0.522503 -0.512305 -0.499156 0.321056 -0.424960 0.759929 0.086102 -0.014475 -0.047045 -0.184527 0.294074 -0.626451 -0.393800 0.694783 -0.371075 0.303488 -0.596472 0.143348 0.169478 -0.176810 -0.277311 -0.629987 0.188361 0.243219 0.137244 -0.391499 0.089741 -0.680896 0.480466 0.346788 0.166890 0.444921 0.137793 -0.065296 -0.091919 0.287551 -0.298915 0.018714 -0.882898 0.251691 -0.025243 0.093912 -0.451985 -0.034109 0.710561 0.041602 0.412527 -0.846952 0.866868 0.353178 -0.343375 -0.398540 0.253558 -0.114212 -0.558814 0.136074 0.444900 -0.069016 -0.009790 0.107379 0.366020 -0.182336 -0.908972 -0.154230 -0.412118 0.687180 -1.061878 0.066834 -0.117279 -0.240520 -0.194416 0.337491 0.330117 0.286863 0.873911 0.471787 -0.315370 0.591255 -0.855986 0.657994 1.418987 0.476965 -0.696425 0.363600 -0.641531 0.295601 0.306019 0.145529 0.110252 0.446518 -0.263970 0.110309 0.115073 -0.147554 0.847266 0.425439 0.563180 -0.998318 0.250237 -0.270591 0.227833 1.095348 0.610489 -1.141562 0.618270 0.961564 -0.423135 0.079465 0.166860 -0.557376 -0.332394 -0.610922 0.313184 0.550514 -0.871414 -0.594412 -0.075860 -0.619784 0.768012 0.137016 -0.003771 0.155473 -0.544712 0.216688 1.113858 0.145622 0.026702 -0.152827 -0.429460 -0.763657 -0.950335 0.057331 0.404496 -0.587977 -0.208743 -0.605702 -0.379707 1.043961 -0.377826 0.153912 -1.176513 0.443184 0.408444 0.242770 0.303890 -0.606072 -0.348215 -0.025746 -0.303343 0.211016 -0.682615 0.151033 0.448449 -0.580831 0.772262 0.157382 -0.070943 0.131903 0.486996 -0.173139 0.794263 0.099760 0.858595 0.191223 0.735572 -0.467689 0.136447 -0.352753 -0.302963 -0.371702 0.704430 -0.972240 -0.169447 0.785916 -0.286429 -0.866371 0.469330 0.527879 0.625600 -0.196807 -0.374616 -0.165522 -0.077811 -0.300492 0.354450 0.471032 -0.501023 -0.728804 -0.108973 0.602999 -0.649442 -0.448058 0.409938 0.212267 0.921970 -0.692431 0.474161 0.227820 0.249835 -1.102972 -0.707019 0.066065 -0.219747 -0.351495 0.493046 -1.293819 -0.578385 -0.374951 0.453875 -0.904096 -0.066689 -0.049744 0.857035 -0.023217 -0.002684 0.578750 0.177918 0.116835 -0.140403 0.146842 0.190753 0.306784 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.477593 0.433904 -0.451786 -0.291548 0.994895 -0.364708 0.040475 0.580502 0.079336 0.247569 -0.912743 -0.173048 0.005807 -0.996652 0.278798 0.550530 0.413607 0.577093 -0.046011 -0.020044 0.395981 -0.244173 -0.107380 -0.607683 0.097018 -0.275029 -0.152686 -0.014214 -0.021786 -0.067602 -0.520528 0.509001 0.900928 0.390334 0.695958 0.687050 0.252423 0.861599 0.627951 0.069114 0.254770 0.402074 -0.145625 -1.092697 0.415532 -0.436701 -0.224051 -0.586477 0.061225 -0.439433 1.180767 0.489953 0.102290 -0.013308 -0.779167 -0.237823 0.752973 0.255025 0.665977 0.559907 -0.482160 0.128783 -0.041846 0.301674 -0.488459 0.257495 0.513539 -0.725166 -0.066048 0.548185 0.900539 -0.803549 -0.768940 -0.112782 -0.155463 -0.303250 0.443107 0.113616 0.286206 -0.579643 -0.755287 0.277073 -0.417246 0.795109 -0.001706 -0.167035 -0.833790 -0.241654 0.442542 -0.420698 -0.408748 0.352012 -0.239738 0.494871 -0.173016 0.494819 0.297557 -0.059432 -0.259421 -0.620017 0.323153 0.019896 0.077525 0.639401 -0.188318 -0.347346 0.663272 0.250437 -0.277071 0.466609 0.726062 0.284851 0.289499 0.088595 -0.128559 -0.117476 -0.908997 0.334558 0.108668 -0.130663 0.009334 -0.096013 0.368300 -0.363143 0.178394 -0.649941 0.650710 0.630978 -0.135980 -0.313277 0.307578 -0.297949 -0.634695 -0.177861 0.515250 0.258566 0.079048 0.141825 -0.094863 -0.293965 -0.641290 -0.466344 -0.524561 1.051820 -0.727724 -0.059352 -0.182633 -0.390363 -0.289911 0.110150 0.028488 0.238743 0.664694 0.404032 -0.509837 -0.122221 -0.690496 0.346887 1.285356 0.601617 -0.647317 0.255022 -0.074536 0.203352 0.374724 0.205510 0.148814 -0.260764 -0.289959 -0.051650 -0.036206 -0.407357 0.625267 0.187973 0.560450 -0.628401 0.581848 0.553266 -0.231643 1.367076 0.013921 -0.716818 0.170195 0.907964 -0.176332 0.016814 0.154091 -0.307042 -0.257918 -0.490503 0.334359 0.172955 -0.942010 -0.508775 -0.086440 -0.670934 0.567771 0.260296 0.110375 -0.118483 -0.690082 0.430775 1.458727 0.132465 0.038020 0.037059 -0.362617 -0.087354 -0.828517 0.086127 0.286963 -0.305242 -0.080318 -0.417859 -0.135978 1.041680 -0.570888 -0.076756 -0.322591 0.103017 0.311574 -0.135199 -0.028101 -1.046295 -0.522683 0.297133 0.137703 0.249178 -0.198922 0.284195 0.655771 -0.447228 0.082493 1.169881 0.739013 0.296215 0.568818 -0.235015 0.591680 -0.370087 0.779508 0.269756 0.673897 -0.523486 -0.279387 -0.184368 0.346523 -0.510578 0.619947 -0.749159 0.075558 0.692744 -0.087001 -0.639190 0.508088 0.353528 0.541758 -0.263730 -0.391215 -0.063959 0.116270 -0.176171 0.370954 0.531394 -0.089088 -0.675901 -0.183426 0.555268 -0.378940 0.057748 0.367159 0.010990 0.929852 -0.581760 0.458134 0.165562 0.205930 -0.639459 -0.719255 0.337262 -0.249280 -0.170880 0.487100 -1.201534 -0.518252 -0.322547 0.404424 -0.870999 0.469010 -0.251903 0.679489 0.142519 -0.070451 0.320487 0.120259 0.156290 -0.045000 0.042289 -0.092903 0.704797 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::char_traits::length(char const*) = -0.229487 0.105521 -0.130083 -0.149867 0.641081 -0.004012 -0.110739 0.457233 0.096067 0.310840 -0.365995 -0.051631 0.011262 -0.319247 0.080318 0.190646 0.055459 0.132015 -0.168522 -0.173620 0.133140 0.030022 0.033205 -0.160772 -0.046287 -0.329884 -0.113411 0.066299 0.145138 0.024490 -0.316973 0.073625 0.405955 -0.061477 0.273922 0.209731 0.341245 0.229789 0.106504 0.101944 0.177724 0.158753 -0.150775 -0.326978 0.065040 -0.264030 -0.276088 -0.098683 0.142631 -0.287807 0.318758 0.213764 0.025835 -0.022357 -0.125696 0.196396 0.112894 -0.023223 0.377515 0.166259 -0.356662 -0.162576 -0.204016 0.521888 -0.228425 0.270821 -0.085555 -0.457247 -0.239450 0.247700 0.090802 -0.176914 -0.153562 0.082871 0.040551 -0.186701 0.190741 -0.030628 0.391740 -0.207338 -0.242633 0.180263 -0.169335 0.279200 0.010281 -0.015223 -0.152275 -0.023739 0.059245 -0.313799 -0.127545 0.295311 -0.257399 0.159099 -0.194080 -0.030724 0.068542 0.027999 -0.001479 -0.253046 0.089046 0.100600 0.044022 -0.077322 0.188773 -0.208436 0.222486 0.143644 0.080761 0.170468 0.050280 0.034207 0.086293 0.198324 -0.021688 -0.032431 -0.354781 0.163150 -0.072163 0.031686 -0.143597 0.030686 0.308452 0.056128 0.233253 -0.340980 0.280659 0.113426 -0.138939 -0.145370 0.072529 -0.140994 -0.285995 0.010485 0.168067 0.037110 -0.025563 -0.053977 0.143352 -0.082304 -0.380458 -0.102005 -0.143534 0.129741 -0.394156 -0.019131 -0.030938 -0.063628 -0.114631 0.231581 0.180247 0.158405 0.391537 0.198949 -0.102057 0.020876 -0.394740 0.209989 0.527494 0.038736 -0.304293 0.204911 -0.313852 0.073076 0.183516 0.139269 0.033089 0.231083 -0.045392 0.051635 -0.050716 -0.010679 0.405624 0.165623 0.206349 -0.291023 0.075132 -0.161477 -0.032883 0.528683 0.244710 -0.492004 0.142959 0.314311 -0.122455 0.028781 0.120460 -0.267283 -0.110987 -0.270416 0.088348 0.260161 -0.335700 -0.178824 0.113807 -0.293244 0.388178 0.033277 0.008387 0.089024 -0.309795 0.135160 0.530284 0.112046 0.020888 -0.062811 -0.160810 -0.267292 -0.384190 0.006165 0.168793 -0.199904 -0.060816 -0.266958 -0.090215 0.414867 -0.135557 0.130473 -0.448565 0.109314 0.172859 -0.058435 0.114101 -0.254799 -0.149159 -0.098503 -0.160326 0.139261 -0.336692 0.100087 0.271639 -0.188933 0.354045 0.219123 -0.059761 -0.031977 0.177173 -0.157551 0.359267 -0.009641 0.077584 0.098746 0.277967 -0.233859 -0.002276 -0.173104 -0.056692 -0.165559 0.271006 -0.337857 -0.039570 0.217544 -0.238111 -0.248178 0.149971 0.168209 0.222866 -0.048833 -0.168548 -0.200555 -0.044549 -0.192692 0.116987 0.210197 -0.154002 -0.326256 0.051575 0.145109 -0.296985 -0.216981 0.110898 0.052755 0.378269 -0.303530 0.097300 0.173209 0.130883 -0.478897 -0.248483 -0.109732 -0.092172 -0.145922 0.104171 -0.487941 -0.286856 -0.175574 0.100022 -0.372399 -0.060918 0.058166 0.435649 0.079711 -0.119732 0.203281 0.046905 0.131159 0.055027 0.022523 0.058909 0.124652 +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) = -2.717085 1.145440 0.159335 -2.795415 7.908326 -0.006682 0.442875 4.624736 -0.377844 2.298799 -5.560580 -0.618862 -0.632190 -5.011605 0.881844 -0.586532 1.706526 0.862103 -2.630999 -0.288152 1.894697 0.288134 0.642838 -2.890615 -0.519943 -3.012385 -1.597229 0.555962 1.251834 0.641020 -1.365860 0.955867 5.651004 0.252379 3.786690 2.342124 4.085785 3.958517 0.303077 0.375616 2.206306 2.174391 -1.352948 -4.679331 0.497160 -3.377518 -4.238494 -1.308960 1.405263 -4.025656 1.382446 2.958550 0.928293 -0.397952 -2.364673 1.793763 3.186055 -1.080969 4.265751 2.499777 -4.942430 -2.016328 -2.504871 3.489852 -2.353627 3.686989 -0.260279 -4.175974 -2.820298 3.380519 1.065091 -2.814560 -3.874935 -0.062101 1.615434 -2.175806 2.934963 -0.155623 2.508494 -3.012683 -2.214229 2.243381 -1.599569 3.749834 0.147527 -0.048104 -0.122839 -0.952001 1.017736 -3.865274 -1.749174 3.498019 -3.096190 0.606207 -4.413462 0.920131 -0.738085 0.247623 -2.408123 -4.482033 1.649771 0.959390 0.195165 -2.014482 0.059305 -3.697662 2.560311 2.735262 0.147621 2.887181 0.659942 1.323352 1.345559 2.063565 -2.231648 1.258662 -4.845423 1.519644 -1.935580 -0.018805 -2.140811 0.126880 3.099678 1.522786 2.239535 -4.327606 4.580736 3.110555 -2.829003 -1.872994 1.295466 -1.931679 -4.063833 0.435776 2.297630 0.646529 0.728307 -0.466239 1.411543 -1.702275 -2.789362 -1.495850 -1.905753 1.989018 -4.851181 -0.474356 -0.164441 -0.709354 -1.685689 2.982682 1.895017 0.792088 4.842610 1.414070 -2.543149 1.611499 -4.397183 2.440447 7.537501 1.246442 -3.989659 2.466645 -3.319369 1.492863 1.756182 1.273275 0.726781 1.023506 -2.273934 -0.162936 0.101424 -1.076693 4.878427 2.191201 2.368558 -5.757853 2.108927 -2.678003 0.443466 6.387312 3.521402 -5.670479 0.963095 4.576269 -1.772248 -0.596713 1.137940 -3.271833 -2.060835 -3.343188 1.505415 2.065554 -3.947449 -2.849361 0.636543 -3.898154 4.116343 0.824334 -0.563787 -0.501246 -3.379312 -1.288011 7.295415 0.047806 -0.124578 -0.177912 -2.006944 -1.441401 -5.758376 0.143905 1.871291 -2.300532 -0.379947 -3.020115 -0.523282 4.628031 -2.692644 1.220609 -5.324165 0.733783 2.246729 -0.411103 1.698537 -3.757752 -2.462904 -1.019504 -1.784938 1.753439 -4.336638 0.960477 3.364720 -2.204914 4.722375 0.924028 -2.381393 -0.310821 2.826503 -1.639909 4.954651 -0.391608 4.538511 0.826399 4.106047 -3.020488 -0.537613 -2.028718 -1.696120 -2.501430 4.046784 -5.069556 -0.188520 2.586048 -1.512743 -4.063532 2.720940 1.851584 1.383400 -1.016577 -0.973936 -2.085814 -0.366890 -1.833709 2.168487 2.778158 -2.539728 -4.459080 -0.437448 3.433928 -3.107805 -1.436186 1.487288 0.761067 5.319949 -3.701852 1.579501 1.680007 1.230631 -5.638448 -4.795321 0.770288 -2.669780 -1.499087 1.791588 -5.714271 -3.360998 -2.193975 1.919869 -3.506099 -1.023867 1.619551 5.196226 0.882110 -1.790870 1.855950 0.698077 1.584521 -0.247544 1.046079 1.009561 1.637554 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__cxx11::basic_string, std::allocator >::_Alloc_hider::~_Alloc_hider() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +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.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +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.649288 0.224637 0.142368 -0.637896 1.397793 -0.489622 0.036616 0.790010 0.604178 0.420627 -1.229782 -0.528199 -0.186885 -1.173663 0.166872 -0.553495 0.526587 0.467474 -0.465150 0.234771 0.428773 -0.141054 0.004313 -0.713975 -0.074030 -0.660589 -0.261802 0.158574 -0.079832 0.091227 0.035728 0.482556 1.384170 0.387598 1.177302 0.752829 0.340966 1.102857 0.248577 0.346780 0.516159 0.430937 -0.052741 -1.152468 0.046596 -0.449414 -0.848021 -0.550570 0.173416 -0.969905 0.359924 0.663058 0.187307 0.042634 -0.759489 0.117536 0.728851 0.445996 0.860229 0.589751 -0.969212 0.146773 -0.541697 0.233158 -0.598228 0.303285 0.121549 -0.873224 -0.179440 0.862857 0.157585 -0.490239 -0.649856 -0.121618 0.443623 -0.422155 0.661865 0.073570 -0.033438 -0.356355 -0.339893 0.394148 -0.106128 0.715083 -0.076196 0.073682 -0.087203 -0.264461 0.210071 -0.709265 -0.330938 0.666373 -0.694911 -0.022856 -0.379040 0.732697 0.370753 -0.099082 -0.467511 -0.955283 0.373454 -0.209136 0.003029 0.208325 -0.520257 -0.593715 0.702092 0.562396 -0.138395 0.764240 0.109421 0.667215 0.445155 0.300171 -0.702606 0.539678 -1.134443 0.394004 -0.638457 -0.165996 -0.132544 -0.094349 0.514440 0.538305 0.338210 -0.844414 1.068758 0.868626 -0.213682 -0.348186 0.324592 -0.385732 -0.744501 -0.174898 0.597708 0.289883 0.309102 -0.036824 0.061789 -0.349942 -0.027726 -0.205563 -0.398067 0.549576 -0.520209 -0.019139 -0.002310 -0.158965 -0.380388 0.346811 0.288637 -0.017953 1.023211 0.140561 -0.668986 -0.164503 -0.866212 0.284622 1.637710 -0.213192 -0.777008 0.639730 -0.232214 0.179325 0.222907 0.372589 0.270908 -0.067934 -0.538238 -0.306442 -0.372519 -0.401292 0.852811 0.387922 0.227947 -1.208402 0.761142 -0.326249 -0.009256 1.573606 0.670239 -1.126147 -0.156947 1.092983 -1.090712 -0.400482 0.252713 -0.365420 -0.106012 -0.675438 0.503407 0.180206 -0.832429 -0.575242 0.106851 -0.917458 0.585527 0.168573 -0.016587 -0.409734 -0.695275 -0.402917 1.941497 0.061811 -0.002196 0.175707 -0.519813 -0.113381 -1.350084 -0.171941 0.180770 -0.424841 0.132426 -0.430226 0.006514 0.989084 -0.797434 0.220028 -0.623062 -0.006522 0.506256 -0.089481 0.007717 -0.576243 -0.632449 -0.028897 -0.284219 0.249253 -0.583374 0.236151 0.837341 -0.232094 0.800668 0.312656 -0.582886 0.275233 0.704100 -0.575238 1.150430 -0.357996 0.799439 0.355968 0.776179 -0.618782 -0.381749 -0.317406 -0.528533 -0.813249 0.846830 -1.068197 0.092564 0.619806 -0.148749 -0.737295 0.653621 0.468614 0.361920 -0.167188 0.093651 -0.735408 0.053676 -0.413258 0.557817 0.448504 -0.026677 -0.870612 -0.029191 1.006845 -0.445553 -0.582452 0.262834 0.053428 1.114348 -0.766598 0.470178 0.472353 0.162596 -0.741913 -0.940146 0.412598 -0.899251 -0.296065 0.064026 -1.265109 -0.650599 -0.345878 0.577288 -0.540774 -0.077721 0.390043 1.212152 0.460758 -0.583209 0.319928 -0.059478 0.229861 0.066488 0.222488 0.005153 0.675802 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.566700 1.617580 1.946144 -1.315000 3.427387 0.378585 0.650150 1.648467 -0.414789 1.207992 -3.300084 -0.557874 -0.538410 -1.999800 0.538776 -1.580074 0.201082 0.209084 -1.010875 0.114301 1.136747 -0.320115 -0.178008 -1.882696 -0.090550 -2.056998 -1.119474 -0.063231 0.988390 0.956729 -0.104314 0.521531 2.696977 0.203844 1.748764 1.587078 1.925847 2.433761 -0.406275 0.710483 0.784796 1.568723 -1.025164 -2.317718 0.529966 -1.991575 -1.588800 -0.743805 0.474435 -1.942395 0.594751 1.617720 0.269481 -0.392643 -1.138763 1.238573 1.752581 0.077786 2.237507 1.369946 -1.865220 -0.761713 -1.866870 1.612573 -1.179477 2.438034 -0.313620 -2.215829 -0.993973 1.116071 0.637653 -0.993412 -1.787129 0.347477 0.539131 -1.098500 1.390824 -0.366616 -0.735619 -0.941312 -1.406677 1.002976 -0.118199 2.103224 -0.114027 -0.383066 -0.253289 -0.199949 0.740959 -1.931800 -1.366081 2.417162 -1.365922 0.180745 -2.290808 0.372074 0.170942 0.465265 -0.982358 -1.667367 1.096274 0.741574 0.118963 -1.554274 -0.558420 -2.490439 1.578627 1.694461 -0.380650 1.500564 -0.078171 1.231381 0.865008 1.052151 -1.567791 0.871661 -2.207807 0.543584 -0.541295 -0.026376 -0.576499 0.200647 0.336463 0.587094 1.197100 -2.124643 2.112965 1.319694 -1.727405 -0.930727 0.574636 -1.433848 -2.282242 -0.216262 1.043201 1.123783 0.048477 -0.209376 0.223616 -1.015676 -0.589555 -1.674881 -0.701158 1.497469 -2.365211 -0.518807 -0.333306 -0.370421 -1.175097 1.664241 0.877975 0.513840 2.128468 1.093560 -0.798250 0.347209 -1.953074 0.986201 3.545953 0.827850 -2.327363 1.139059 -1.530500 0.637327 1.016065 0.301537 0.317534 1.530921 -1.763330 -1.010439 -0.590841 -1.229595 2.522621 2.154634 0.975480 -2.733173 2.063686 -2.001970 -0.922954 2.930692 2.079149 -2.372591 -0.284176 2.179470 -1.849501 -0.954949 0.758885 -1.584381 -0.634512 -1.465778 0.179920 0.874886 -1.894320 -1.582199 0.281843 -2.373602 2.571115 0.565376 0.755050 -0.497475 -1.626811 -2.542120 3.497370 -0.106534 -0.428784 -0.520137 -0.568670 -1.042169 -2.744588 0.383808 1.124970 -1.153163 -1.376814 -1.751656 0.220188 1.959591 -1.822375 0.658742 -1.906807 -0.641371 0.860033 -0.328476 1.381025 -1.815455 -1.576472 -0.930179 -0.713437 1.310806 -1.586300 1.165952 2.612834 -1.030986 2.567164 0.625567 -1.815839 -0.470913 1.976421 -0.838784 2.244908 -0.660200 1.740364 0.155084 2.173933 -1.867616 -0.723759 -0.311037 -1.132764 -1.009016 2.028666 -2.034764 0.251548 0.554157 -1.648952 -1.118229 1.706490 0.482347 0.709918 -0.592171 0.377902 -1.234051 -0.249585 -0.783570 0.442391 1.786816 -0.888883 -2.114048 -0.345319 0.873672 -1.632264 -1.089256 0.775910 0.081018 2.502723 -1.934412 0.736656 0.583024 -0.358836 -3.094619 -2.319088 -0.042900 -1.873198 -1.616436 1.162133 -2.581462 -0.852474 -1.389008 0.661403 -1.849410 -1.523725 0.742185 2.472060 0.668959 -0.986115 1.060797 0.223157 1.666173 0.238769 0.183214 0.323434 0.965824 +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.393542 0.284128 0.026563 -0.343539 1.017732 0.009581 -0.041450 0.473235 0.168520 0.381723 -0.752097 -0.172726 -0.088797 -0.654821 0.160950 0.009723 0.081398 0.228577 -0.281501 -0.182664 0.289951 -0.063857 0.079937 -0.429048 -0.015986 -0.563031 -0.209633 0.042044 0.104960 0.279775 -0.277969 0.148865 0.562673 0.034335 0.278026 0.338941 0.434750 0.595902 0.017300 0.344075 0.334412 0.289043 -0.172513 -0.758468 0.269681 -0.475119 -0.455172 -0.335199 0.191544 -0.690339 0.365856 0.394658 0.105608 -0.192438 -0.337714 0.209965 0.465197 0.113063 0.536538 0.375831 -0.483178 -0.219616 -0.372937 0.355812 -0.396428 0.533376 0.096764 -0.740430 -0.425587 0.514097 0.142445 -0.184342 -0.409946 -0.069993 0.125284 -0.240656 0.290926 -0.038676 0.131322 -0.146151 -0.345720 0.232439 -0.182510 0.541399 0.012436 -0.077790 -0.085800 -0.150965 0.267727 -0.382948 -0.384338 0.531168 -0.203214 0.238607 -0.339658 0.049822 0.166921 -0.083022 -0.122967 -0.349841 0.183181 0.244155 0.070608 -0.055591 -0.284376 -0.532501 0.544624 0.404156 -0.059644 0.196263 0.059598 0.015052 -0.072914 0.161095 -0.302892 0.230119 -0.634508 0.189576 -0.044222 0.060652 -0.227099 -0.052784 0.334946 0.000614 0.205579 -0.497677 0.662305 0.312369 -0.320396 -0.216407 0.234756 -0.142079 -0.473169 0.062192 0.303495 0.102818 -0.024792 0.089099 0.124718 -0.247993 -0.412966 -0.206193 -0.326726 0.415278 -0.549371 -0.017263 -0.101772 -0.199204 -0.201724 0.232842 0.156554 0.125578 0.613207 0.318359 -0.220909 0.071635 -0.535542 0.408997 1.027425 0.239156 -0.500810 0.187219 -0.260191 0.263253 0.244357 0.023836 0.025756 0.452510 -0.174429 0.028689 -0.246826 -0.257251 0.582846 0.541316 0.406678 -0.750922 0.266774 -0.257050 0.084692 0.807348 0.546128 -0.729512 0.185056 0.687134 -0.509581 -0.092250 0.097051 -0.240844 -0.128043 -0.400988 0.183313 0.301932 -0.631323 -0.532461 -0.044435 -0.511009 0.560350 0.129998 0.200868 0.020287 -0.449109 -0.061765 0.863560 0.096889 -0.046254 -0.058134 -0.218202 -0.461999 -0.688368 0.074992 0.355218 -0.417784 -0.219514 -0.375724 -0.107395 0.699835 -0.417278 0.056367 -0.431699 0.129149 0.252313 -0.017464 0.268602 -0.477947 -0.317834 -0.106323 -0.211469 0.270275 -0.326399 0.089958 0.451449 -0.340683 0.555988 0.317357 -0.090446 0.006302 0.473189 -0.067244 0.540480 -0.102184 0.428186 0.101545 0.558976 -0.318711 -0.001604 -0.182115 -0.277386 -0.240622 0.588628 -0.664480 -0.042025 0.501843 -0.337745 -0.397636 0.456743 0.339604 0.469906 -0.175270 -0.074137 -0.260715 0.011117 -0.133628 0.167033 0.395274 -0.210937 -0.622788 -0.178011 0.390860 -0.522675 -0.515206 0.302955 0.067439 0.689263 -0.460020 0.372662 0.206102 -0.019078 -0.809525 -0.377951 0.014062 -0.288220 -0.316563 0.281470 -0.812317 -0.352761 -0.274630 0.349503 -0.528858 -0.135110 -0.056691 0.554128 0.123634 -0.003367 0.379478 0.149280 0.206971 0.005225 -0.017947 0.132959 0.338124 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -2.483729 2.040184 2.229547 -1.847556 5.544469 0.082330 1.483822 2.463323 -1.127072 1.811258 -4.914906 -0.864227 -0.909856 -3.504103 0.864715 -1.785594 0.790833 0.515317 -1.454596 0.207825 1.781511 -0.691246 -0.199727 -2.825282 -0.033347 -2.974234 -1.495735 -0.018782 1.745742 1.047302 -0.366472 0.944008 4.296027 0.336352 2.974542 2.537998 2.563607 3.634513 -0.402069 -0.053179 1.134183 2.509328 -1.485138 -3.880407 0.616509 -2.811646 -2.662640 -1.480998 0.883246 -2.938831 0.349237 2.545171 0.366496 -0.391203 -1.972363 1.806100 3.277233 -0.090721 3.540442 2.092912 -2.736742 -0.851360 -2.502527 2.316665 -1.676726 3.048283 -0.471943 -3.515948 -1.408356 1.809345 0.520374 -1.704066 -2.562285 0.481237 1.083965 -1.753223 2.096131 -0.324674 -0.935225 -2.161684 -2.380701 1.284600 -0.466555 3.397486 -0.191560 -0.617468 0.044445 -0.520972 1.252867 -3.021213 -1.958207 3.559157 -2.115325 -0.027585 -2.903697 0.944513 0.378119 0.639886 -1.748834 -2.942476 1.459158 0.761135 0.218215 -2.015157 -0.510157 -3.337386 1.844523 2.140628 -0.291735 2.661162 0.400435 1.655625 1.243734 1.540328 -2.515705 1.220402 -3.448286 1.131217 -1.186020 -0.043104 -0.788803 0.285423 1.226931 0.770272 1.899189 -3.470085 3.155993 2.213011 -2.098403 -1.638598 0.891808 -2.188556 -3.480017 -0.335126 1.788314 1.438894 0.248778 -0.388451 0.556440 -1.358379 -1.086647 -1.792233 -1.238766 2.556521 -4.079410 -0.699682 -0.549346 -0.631187 -1.697710 2.364956 1.229278 0.890476 3.424702 1.791072 -1.713373 1.017586 -3.204483 1.636784 5.780156 0.921753 -3.413998 1.717619 -2.351799 0.997301 1.659369 0.602263 0.769512 1.616261 -2.637915 -1.119644 -0.223361 -1.736993 3.888351 2.764859 1.654831 -4.336305 3.147336 -2.425558 -1.260441 4.685429 2.942133 -4.192011 0.545995 3.423335 -2.855760 -1.174241 1.077479 -2.562639 -1.198495 -2.597862 0.611334 1.329454 -3.110041 -2.188886 0.357668 -3.588530 3.721432 0.866206 0.740425 -0.497702 -2.345241 -3.048255 5.605383 0.120533 -0.416477 -0.866800 -1.138887 -1.905792 -4.355108 0.566117 1.205248 -1.822038 -1.796005 -2.755543 0.120084 3.377597 -2.559378 1.155517 -3.226983 -0.301930 1.361854 0.198758 1.913601 -2.798440 -2.497249 -0.973852 -1.217999 1.672601 -2.577044 1.656412 3.766641 -1.801395 3.596061 0.746863 -2.610659 -0.237900 2.803489 -1.496192 3.439658 -0.780489 3.427845 0.337499 3.362427 -2.881754 -1.048590 -0.621189 -1.652499 -1.842006 3.091641 -3.355012 0.334713 1.364598 -2.216942 -2.334729 2.472583 0.802860 1.375546 -0.881771 0.153383 -2.113893 -0.078611 -1.346774 0.905002 2.740718 -1.384773 -3.442046 -0.508626 1.647139 -2.266505 -1.761863 1.203054 0.117644 3.819048 -3.010359 1.112273 0.843729 -0.001247 -4.314786 -3.851481 0.416273 -2.903621 -2.337858 2.136179 -4.065106 -1.232372 -2.137784 1.042131 -3.406165 -2.032803 0.900358 3.918022 0.754834 -1.319866 1.672758 0.417145 2.242860 0.094199 0.568479 0.368431 1.540401 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__long std::__lg(long) = -0.356449 0.103292 -0.051553 -0.105155 0.476390 0.085359 -0.159586 0.387820 0.015316 0.448082 -0.412543 -0.205864 -0.198456 -0.348445 -0.065196 -0.039057 0.027826 0.016322 -0.211588 -0.159453 0.223955 -0.098003 0.027099 -0.149790 -0.072974 -0.208324 -0.218440 0.029118 0.437878 -0.319697 -0.312010 -0.056658 0.668224 -0.067873 0.569023 0.297955 0.350317 0.420419 0.062331 0.107367 -0.097776 0.448878 -0.336615 -0.336614 -0.006588 -0.430885 -0.085423 0.062762 0.253648 -0.017557 0.346304 0.276080 -0.082118 0.129902 -0.154856 0.256011 0.033094 0.102919 0.694452 0.048156 -0.388294 -0.136162 -0.404549 0.676014 -0.312536 0.387291 -0.170820 -0.335678 -0.070377 -0.158347 -0.065171 -0.380391 -0.164451 0.410599 0.038213 -0.332087 0.165296 -0.151290 0.019481 -0.285139 -0.467855 0.107793 -0.047524 0.275934 -0.076788 0.006030 -0.050713 0.201053 -0.057584 -0.638788 0.024620 0.443698 -0.461216 0.216613 -0.135933 0.062849 -0.276510 0.293930 -0.202869 -0.048131 0.059871 0.136522 0.096577 -0.475316 0.361404 -0.357167 0.330704 -0.106723 -0.020199 -0.006956 0.441843 0.088586 0.374309 0.525223 -0.110484 -0.142827 -0.461982 0.073884 -0.026622 0.051768 -0.017889 0.262375 0.018362 -0.054057 0.548923 -0.570764 0.117520 -0.022821 -0.235763 -0.491094 -0.045254 -0.448523 -0.422421 -0.070543 0.221548 0.125053 -0.054035 -0.405426 0.083301 -0.034692 -0.525319 -0.236297 0.122167 0.084102 -0.330769 -0.120169 -0.066983 -0.103015 -0.210008 0.434390 0.269111 0.276788 0.545727 0.322573 -0.075782 0.067824 -0.451038 0.032706 0.429017 -0.046511 -0.561423 0.323711 -0.539744 0.039195 0.313284 0.281262 0.316380 0.264717 -0.120358 -0.016495 0.253475 0.100218 0.546599 -0.029663 0.257709 0.067069 0.283368 -0.021647 -0.318786 0.697616 0.149660 -0.639572 0.284716 0.068008 0.102554 0.073540 0.295797 -0.356487 0.044907 -0.361688 -0.043358 0.285379 -0.320105 0.001539 0.232817 -0.495159 0.743177 -0.044256 0.086079 0.295324 -0.680975 -0.225628 0.553282 0.042762 -0.054270 -0.259088 -0.204009 -0.405460 -0.474649 0.103707 0.099063 -0.240901 -0.215340 -0.465720 0.160398 0.399273 0.035526 0.412515 -0.452054 -0.190321 0.173171 -0.017250 0.377606 -0.071340 -0.235713 -0.149992 -0.116223 0.469700 -0.412875 0.307176 0.613643 -0.214154 0.582259 0.122951 -0.224760 -0.095298 0.181152 -0.466762 0.482003 -0.075803 -0.109559 -0.103126 0.274846 -0.355387 -0.071402 -0.012480 0.214904 -0.025075 0.087087 -0.146914 -0.029460 -0.183674 -0.588779 -0.002627 0.010024 -0.073507 0.107382 0.110286 -0.084123 -0.307277 -0.154449 -0.295304 0.003514 0.368749 -0.015381 -0.344604 0.199803 -0.250447 -0.115258 0.220672 -0.005692 -0.039362 0.346222 -0.440602 -0.306221 0.104578 -0.048892 -0.384615 -0.398672 -0.426617 -0.154542 -0.118557 0.272654 -0.390847 -0.047691 -0.295775 -0.138321 -0.467516 -0.054444 0.040811 0.649539 0.399279 -0.302172 0.198939 0.002344 0.476530 0.177854 -0.038959 0.109303 0.166255 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.887249 1.833970 2.281271 -1.627372 4.032188 0.027114 0.939556 1.620591 0.032680 1.207354 -3.986963 -1.047548 -0.755137 -2.675487 0.715442 -1.961601 0.397106 0.710646 -1.217929 0.065600 1.456056 -0.271716 -0.169730 -2.357890 -0.018175 -2.277526 -1.389267 -0.071600 0.568597 1.197063 0.185709 0.868781 3.218069 0.516050 2.165982 1.965355 1.945645 3.229150 -0.518511 1.410429 1.167252 1.824792 -0.993622 -3.338419 0.898510 -2.186731 -1.867796 -1.413681 0.523876 -2.704254 1.011006 1.890584 0.456066 -0.544255 -1.515097 1.035414 2.400005 0.473178 2.469464 1.828939 -2.270210 -0.164545 -2.129477 1.277910 -1.550016 2.917189 0.041726 -2.899581 -1.364951 1.626869 1.058024 -1.183501 -2.426398 0.000107 0.668747 -1.120218 1.607296 -0.255699 -1.005671 -0.877670 -1.763370 1.109324 -0.161875 2.523374 -0.192241 -0.554573 -0.220600 -0.530205 1.141354 -1.971474 -1.851091 2.778488 -1.377183 0.376988 -2.360780 0.363318 0.316918 0.277300 -1.157818 -2.079825 1.287440 0.772375 0.160722 -0.702813 -1.548979 -2.719564 2.101716 2.226813 -0.741206 1.613030 0.147434 1.343135 0.723859 0.869113 -1.998345 1.431160 -2.782493 0.861133 -0.715463 -0.063220 -0.567986 0.043404 0.430409 0.485548 1.086097 -2.333622 2.761510 1.732097 -1.955737 -0.894874 0.898844 -1.417102 -2.681556 -0.301464 1.407430 1.354693 0.049324 0.051756 0.048470 -1.295685 -0.418401 -1.901326 -1.170428 1.751525 -2.456491 -0.553208 -0.499734 -0.717484 -1.368070 1.640363 0.761776 0.487403 2.491596 1.321591 -1.172352 -0.063948 -2.321366 1.222422 4.435080 0.777673 -2.628823 1.130964 -1.273753 0.953311 1.248527 0.228646 0.267059 1.589524 -1.837128 -0.966526 -1.113969 -1.686012 2.828270 2.837086 1.221697 -3.690337 2.277720 -1.857708 -0.804582 3.813449 2.442870 -2.907578 -0.359666 2.856646 -2.559504 -1.428028 0.694151 -1.518881 -0.844075 -1.751922 0.499473 0.845261 -2.464308 -2.141961 0.238113 -2.799449 2.706019 0.703351 0.819355 -0.698199 -2.002395 -2.971544 4.449196 -0.019677 -0.462098 -0.424657 -0.751078 -0.834117 -3.371561 0.501124 1.409948 -1.330532 -1.537229 -1.857558 0.397193 2.583595 -2.391596 0.578891 -1.416825 -0.697314 1.021875 -0.452469 1.446979 -2.578945 -1.915116 -0.874390 -0.742184 1.420741 -1.417540 0.957503 3.018741 -1.304181 2.703674 1.352358 -2.042183 -0.447292 2.530155 -0.758812 2.582439 -1.033582 2.204902 0.223006 2.607041 -2.044855 -0.899607 -0.333155 -1.274329 -1.378780 2.584757 -2.597489 0.333480 0.979591 -1.865689 -1.349830 2.275399 0.839426 1.162610 -0.810430 0.487165 -1.533251 0.012573 -0.627518 0.560532 2.154624 -0.849354 -2.805228 -0.646325 1.371087 -2.131347 -1.783077 1.058793 0.071169 3.111647 -2.216145 1.280000 0.734838 -0.549280 -3.611491 -2.532389 0.352518 -2.532737 -1.821107 1.286363 -3.004757 -1.092008 -1.537563 1.193822 -1.987012 -1.577051 0.564887 2.700794 0.887134 -0.812494 1.356580 0.390744 1.821737 0.256415 0.001244 0.379900 1.589460 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.977368 0.740058 0.189004 -0.850811 2.878416 0.008503 0.292238 1.345476 -0.118322 0.750034 -2.057241 -0.134069 -0.111054 -1.693097 0.506634 -0.022940 0.319458 0.489521 -0.740041 -0.418183 0.720555 -0.028526 0.043466 -1.207062 0.035227 -1.291448 -0.563982 0.029497 0.292296 0.746630 -0.701116 0.528681 1.455572 0.084399 0.734341 0.944853 1.336803 1.428747 -0.099827 0.609133 0.947986 0.680842 -0.395820 -1.902536 0.589925 -1.203636 -1.383978 -0.743759 0.361176 -1.753466 0.732331 1.054807 0.321287 -0.404947 -0.768569 0.651603 1.368406 -0.122585 1.239106 1.102986 -1.477824 -0.642546 -0.821894 1.025692 -0.762941 1.493828 0.289984 -1.903949 -1.115601 1.409155 0.527780 -0.787907 -1.228128 -0.260144 0.327504 -0.558912 0.808707 -0.010984 0.350519 -0.536216 -0.862462 0.628418 -0.446147 1.433435 0.102321 -0.307784 -0.214129 -0.556567 0.752590 -0.949099 -1.083443 1.544520 -0.619175 0.574677 -1.569111 -0.018920 0.364739 -0.118437 -0.479534 -1.308861 0.568466 0.644907 0.076119 -0.401284 -0.771767 -1.414860 1.135039 1.088054 -0.177487 0.811125 -0.120811 0.118466 -0.143328 0.306039 -0.749373 0.673529 -1.591855 0.591978 -0.233590 0.101640 -0.602946 -0.303872 1.008299 0.089703 0.441010 -1.227222 1.682086 0.929271 -0.980086 -0.610692 0.575658 -0.498503 -1.363409 0.174495 0.767390 0.376645 0.049801 0.303680 0.356785 -0.703490 -0.987674 -0.827482 -0.944461 1.113036 -1.720723 -0.141771 -0.230662 -0.358922 -0.684052 0.707535 0.426704 0.289583 1.540213 0.735539 -0.616369 0.548114 -1.386387 1.070482 2.725704 0.988389 -1.306417 0.464134 -0.814388 0.739432 0.567878 -0.007098 -0.079429 0.989560 -0.703759 0.103072 -0.377364 -0.791438 1.499271 1.471732 1.004346 -2.088539 0.710846 -0.895894 0.067342 2.029848 1.501857 -1.973357 0.581098 1.888576 -0.908104 -0.275163 0.285063 -0.929704 -0.682651 -0.991902 0.491298 0.635562 -1.668269 -1.263065 0.013335 -1.297459 1.360685 0.469611 0.388170 -0.174571 -1.024232 -0.406655 2.364215 0.138405 -0.068234 -0.042594 -0.485494 -1.032519 -1.760976 0.163508 0.965410 -0.981809 -0.645079 -0.960444 -0.305115 1.893520 -1.264861 0.209494 -1.207827 0.361076 0.605617 -0.021015 0.752813 -1.611293 -0.943736 -0.414110 -0.460070 0.607451 -1.048013 0.179632 1.155998 -0.860550 1.469389 0.717523 -0.442921 -0.120336 1.210104 -0.088556 1.325976 -0.089636 1.573188 0.337471 1.561289 -1.039603 -0.161772 -0.553993 -0.611235 -0.785057 1.659994 -1.796482 0.017204 1.278890 -0.694204 -1.234124 1.289268 0.817308 1.007506 -0.605827 -0.285360 -0.508320 0.010100 -0.489814 0.531611 1.026759 -0.880590 -1.593752 -0.561784 1.096541 -1.491123 -0.966436 0.835316 0.208402 1.866156 -1.149102 0.975389 0.526805 0.038574 -2.243412 -1.291978 0.177741 -0.885762 -0.905664 0.659179 -2.089322 -1.016978 -0.728652 0.867935 -1.584368 -0.618198 -0.000163 1.452523 0.143364 0.060490 0.923137 0.442832 0.481792 -0.136895 0.222544 0.313598 0.738729 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.794457 2.482453 2.434282 -1.906168 3.915945 0.573218 0.798429 1.860698 -0.506081 1.364315 -4.247593 -0.251936 -0.177888 -2.640267 0.673559 -1.548470 -0.131236 0.386854 -0.901114 0.343189 1.316341 -0.754729 -0.152769 -2.582255 -0.076419 -2.342668 -1.135869 -0.211141 0.700878 1.600884 0.327477 0.447106 2.577658 0.674129 1.607388 1.870447 1.771268 3.111558 -0.199662 1.469409 1.003787 1.623553 -0.973664 -3.151139 1.066729 -2.313391 -1.758583 -1.519415 0.091411 -3.153950 1.244740 1.935895 0.431075 -1.025359 -1.612299 1.129272 2.662055 -0.027655 2.364287 1.785697 -2.055354 -0.856392 -2.048596 1.044833 -1.271979 2.949429 0.731023 -2.609199 -0.955203 1.648886 1.157405 -1.021655 -2.197769 0.052933 0.444558 -1.176545 1.327200 -0.688669 -1.879736 -0.549107 -1.144786 1.211509 0.139739 2.606739 0.052560 -0.475485 -0.244895 -0.370998 1.151733 -1.897694 -2.020205 2.904249 -1.051146 0.186450 -2.681348 0.894813 0.391509 0.223563 -1.050297 -1.516087 1.413676 1.390357 0.098333 -1.415242 -2.083136 -3.406847 2.469761 2.490017 -1.103585 1.422198 0.014161 1.349720 0.573981 0.950482 -2.180081 1.718761 -2.691125 0.444318 0.054624 0.107233 -0.667232 -0.225865 0.176971 0.495115 0.960811 -2.166890 2.952962 1.804453 -2.174792 -1.118523 0.783498 -1.448678 -2.517769 -0.067506 0.973584 1.411773 0.103141 0.257327 -0.132567 -1.453648 -0.854404 -2.853604 -0.963193 2.544839 -2.800846 -0.526372 -0.384389 -0.394114 -1.444990 1.637163 0.837459 0.208421 2.375887 1.110263 -0.600796 0.358056 -1.820507 1.319889 4.581835 1.838503 -2.633629 1.061143 -1.219924 0.912396 0.975012 -0.205617 0.150177 1.831394 -2.563478 -1.505398 -0.510528 -2.097270 2.670635 3.255779 1.338713 -3.630899 3.035786 -1.744082 -0.884393 3.523321 2.654710 -2.528657 -0.406021 2.905701 -2.601048 -1.053413 0.699950 -1.283255 -0.708750 -1.110386 0.037830 0.492478 -2.206611 -2.643087 -0.446095 -2.783702 3.010126 0.903231 1.519960 -1.126466 -1.498193 -2.715528 4.041136 0.004444 -0.870107 -0.327860 -0.303914 -1.642507 -3.078214 0.514981 1.886733 -1.572879 -1.825927 -1.858986 0.317376 2.271712 -2.699042 0.134163 -1.495286 -1.010859 0.918429 -0.429496 1.506988 -2.821388 -1.858041 -1.042771 -0.397796 1.627926 -1.161380 1.553450 3.239119 -1.080068 2.976513 1.389559 -1.189024 -0.395519 2.775943 -0.486247 2.493069 -1.176974 2.526405 0.193921 2.711996 -1.955520 -0.779037 -0.306973 -1.480283 -0.882772 2.577353 -2.573179 0.305149 0.944346 -1.803718 -1.171066 2.525725 0.740551 1.217581 -0.953188 0.621602 -1.022386 -0.278331 -0.804202 0.336886 2.067188 -1.079479 -2.733145 -1.024873 1.406654 -1.848503 -1.646799 1.164998 0.246382 3.034889 -2.147728 1.644818 0.500827 -0.979817 -3.880724 -2.242201 0.484999 -2.203524 -2.105431 1.209746 -3.213466 -0.898471 -1.595791 1.032156 -2.485443 -1.497399 0.273213 2.446457 0.615596 -0.715475 1.247295 0.265459 1.929169 0.396190 0.245911 0.318049 1.481765 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.608902 1.214593 0.637664 -1.278316 4.232729 -0.359815 0.779730 1.356732 -0.347390 1.215609 -3.217003 -0.436780 -0.274338 -2.817062 0.704775 -0.690532 0.908492 0.672684 -0.813665 -0.020079 0.936597 -0.490696 0.006829 -1.771051 -0.044722 -2.739595 -0.983771 0.273654 1.013917 0.195972 -0.350616 0.883978 3.018389 0.026203 1.803804 1.796676 1.750281 2.078280 0.214309 -0.604097 1.301567 1.208993 -0.741969 -2.579974 0.240124 -1.467555 -2.348748 -1.107215 0.652173 -1.990501 -0.511796 1.708622 0.327106 -0.282530 -1.683680 1.218602 2.628597 -0.261763 2.269772 1.402613 -1.663953 -0.490996 -1.213201 1.651288 -1.406766 1.213055 -0.525240 -2.638410 -1.100609 2.025266 0.027733 -1.113827 -1.749764 -0.029401 0.978990 -1.289370 1.214144 0.020108 -0.061539 -1.881974 -1.382569 0.996107 -0.556619 2.315929 0.221519 -0.300306 0.406753 -0.614889 0.975039 -1.823125 -1.333225 2.147153 -1.270583 -0.148906 -1.162028 0.989728 1.011915 -0.149497 -0.841618 -2.585116 0.738976 -0.053803 0.114566 -0.480043 -0.070165 -1.907757 0.631049 1.065274 0.003485 2.079111 0.046479 0.869287 0.558906 0.703310 -1.911279 0.134897 -2.503490 1.041317 -1.099793 -0.232150 -0.721561 -0.129487 1.454491 0.874143 1.165775 -2.393815 2.356345 1.612169 -0.924140 -1.020268 0.594039 -0.916408 -2.098610 0.048654 1.167113 0.554175 0.468124 0.084996 0.600543 -0.757796 -0.681448 -0.539679 -1.077048 2.144270 -3.011307 -0.118980 -0.183598 -0.406199 -1.018975 1.158918 0.852132 0.602497 2.590905 1.166992 -1.486820 1.673573 -2.454535 1.310951 4.253843 0.699767 -1.936521 1.241758 -1.515640 0.531022 1.013197 0.636281 0.308489 0.471318 -1.693768 -0.471746 -0.074257 -1.090809 2.480303 1.231681 0.954881 -3.259212 1.934478 -0.745250 -0.252773 3.467563 1.618926 -3.191250 1.397073 2.901591 -2.170552 -0.612857 0.697967 -1.900564 -1.091431 -1.967302 0.793117 0.952115 -2.254133 -1.365736 -0.016248 -2.115849 1.991254 0.649237 -0.217757 0.012586 -1.154666 -1.681448 4.013073 0.188868 0.227882 -0.416144 -1.035387 -0.966939 -3.068230 0.049062 0.633042 -1.739447 -0.403074 -1.760346 -0.288726 2.806096 -1.747361 0.851591 -3.052549 0.625422 1.085415 0.944568 0.664141 -1.808237 -1.470737 -0.057091 -0.913775 0.191172 -2.012118 0.899829 1.882033 -1.369157 1.985498 -0.282768 -1.894390 0.489537 1.576912 -0.986844 2.397169 -0.129572 2.968102 0.804104 2.208960 -1.835926 -0.482533 -0.706789 -1.553718 -1.698104 2.073276 -2.882630 0.015186 2.078821 -0.630209 -2.460125 1.635094 1.124293 1.277164 -0.782357 -0.413176 -1.276264 0.327809 -0.456583 1.041028 1.465894 -0.839525 -2.365710 -0.255845 2.116431 -1.533064 -1.736631 0.867173 0.278303 2.537898 -2.013359 1.231612 0.686191 0.746659 -2.840623 -2.921254 0.960551 -1.908350 -1.191969 1.155195 -3.424499 -1.367568 -1.265109 0.966821 -2.250516 -0.874395 0.750797 2.708482 0.168130 -0.814796 1.128591 0.230532 0.660073 -0.397131 0.654773 0.186758 0.992378 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.078613 1.097945 0.826788 -0.864157 2.371213 0.083779 0.441004 0.990481 -0.718888 0.950713 -2.165435 -0.261367 -0.287588 -1.781583 0.418843 -0.537539 0.412416 0.102957 -0.377841 0.336036 0.669145 -0.714711 -0.020902 -1.179185 -0.128083 -1.575220 -0.523691 0.126845 1.169036 0.033202 -0.090509 0.377175 2.070860 0.078319 1.399129 1.078895 1.159096 1.517593 0.329624 -0.881916 0.381910 1.059706 -0.718144 -1.538510 0.174394 -1.141532 -1.091958 -0.484806 0.411498 -0.865224 0.016324 1.200458 0.042088 -0.293127 -1.285771 0.864153 1.523207 -0.272596 1.801771 0.732992 -0.931268 -0.804467 -1.058760 1.438380 -0.976316 0.906987 -0.473252 -1.271220 -0.287014 0.814871 -0.021578 -0.541966 -1.193114 0.444090 0.582624 -1.053184 0.892056 -0.216025 -0.408524 -1.311916 -1.135535 0.766223 -0.316139 1.652861 0.057533 -0.056468 0.154784 0.000810 0.437901 -1.570631 -0.651992 1.289045 -1.071652 -0.254613 -0.818253 1.018968 0.154772 0.174777 -0.814403 -1.343504 0.682465 0.029546 0.171489 -1.179940 0.568222 -1.676063 0.753486 0.745782 0.049061 1.456662 0.760801 0.932871 0.851623 0.882391 -1.225650 -0.260978 -1.584488 0.258682 -0.245871 -0.187915 -0.513348 0.337788 0.387121 0.417992 1.118834 -1.925069 1.390040 1.047407 -0.708960 -0.689113 0.217384 -0.922374 -1.419698 -0.178733 0.789464 0.478376 0.186421 -0.175789 0.233941 -0.356703 -0.833589 -0.650233 -0.367832 1.679303 -2.107855 -0.175780 -0.180693 -0.312652 -0.653861 1.086646 0.730351 0.567016 1.455364 0.814724 -0.834711 0.863915 -1.521421 0.789990 2.636877 0.282815 -1.647795 1.082341 -1.437170 0.165646 0.692518 0.521771 0.601114 0.285765 -1.435684 -0.874513 0.437535 -0.600846 1.795359 0.598098 0.607911 -1.840485 1.786383 -0.530299 -0.593516 2.303598 0.712590 -1.750462 0.363999 1.630543 -1.527278 -0.298596 0.613944 -1.348596 -0.436349 -1.337188 0.232307 0.773035 -1.324719 -0.845830 -0.101899 -1.636111 1.815340 0.376348 0.105594 -0.140540 -0.853061 -1.395498 2.561361 0.008908 -0.092267 -0.624815 -0.693922 -0.814980 -2.017664 0.160023 0.396758 -0.921995 -0.553472 -1.412168 -0.158268 1.457454 -0.943383 0.569664 -2.330910 -0.024823 0.727386 0.495649 0.518464 -0.805990 -1.018434 0.016107 -0.559369 0.481996 -1.328534 1.185161 1.566737 -0.904725 1.707226 -0.018572 -1.186501 0.251685 1.098834 -0.882553 1.744692 -0.422191 1.593518 0.255534 1.473031 -1.359941 -0.363246 -0.244681 -0.950225 -0.877055 1.035021 -1.537218 0.004768 0.619127 -0.740958 -1.439116 0.880458 0.355565 0.725489 -0.322670 -0.148777 -0.622840 -0.151791 -0.484698 0.628692 1.124431 -0.562881 -1.232430 0.050221 0.914201 -0.564121 -0.583168 0.472616 0.115751 1.663646 -1.538397 0.493609 0.241651 0.345871 -1.796204 -1.979957 0.352681 -1.124324 -0.773770 1.182788 -2.284059 -0.509758 -0.994713 0.330690 -1.405684 -0.399110 0.518191 1.953818 0.131325 -1.023886 0.729775 -0.030738 0.826316 0.014174 0.322560 0.088317 0.555142 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.744721 2.067905 3.368598 -1.627745 4.781860 0.721272 1.158027 2.534072 -1.554867 2.287439 -4.887084 -1.459796 -1.611974 -3.226235 0.600212 -2.422501 0.691906 -0.151363 -1.388313 0.709610 1.986187 -1.311060 -0.110625 -2.635749 -0.111380 -2.564987 -1.789388 -0.093910 2.783095 0.582667 0.071478 0.455927 4.944667 0.623108 3.613612 2.465810 2.539543 4.175982 -0.401975 -0.719673 -0.046071 3.408671 -2.161235 -3.573060 0.832093 -3.409749 -2.016687 -1.050256 0.975432 -2.241114 0.084432 2.802292 -0.086233 -0.168663 -1.965176 1.868065 3.058860 0.102373 4.392570 1.674288 -2.396706 -1.366109 -3.250098 2.257355 -1.718824 3.384460 -1.153655 -3.150645 -0.838083 0.371717 0.243376 -1.871233 -2.542282 1.724033 1.130872 -2.049639 2.241524 -0.653578 -1.821222 -2.512295 -3.218553 1.095362 -0.347934 3.583473 -0.572994 -0.470679 0.571937 0.203089 0.770612 -4.051670 -1.261112 3.566902 -2.814933 -0.287228 -2.541912 1.286646 -0.916851 1.599624 -2.474655 -2.216876 1.540435 0.764817 0.417097 -3.141212 0.415108 -3.858566 2.300767 1.712430 -0.014737 2.506952 1.955535 2.133573 2.338762 2.685962 -3.236627 0.718894 -3.132326 0.687198 -0.899702 0.032767 -0.646982 1.404225 0.177661 0.711694 2.924196 -4.324169 2.544525 1.983657 -2.482851 -1.969766 0.459958 -3.234584 -3.754296 -0.756041 2.051471 1.498814 -0.037711 -1.415630 0.351205 -1.165914 -1.465689 -2.076615 -0.658229 2.533889 -4.327023 -1.026157 -0.755915 -0.972166 -1.659346 3.076477 1.600160 1.463798 3.246277 2.047164 -1.834796 0.835613 -3.269968 1.419025 5.570052 0.291575 -4.220000 2.198520 -3.029162 0.853189 2.137023 0.906267 1.878299 1.507068 -2.807635 -1.800828 0.600386 -1.104368 4.387095 2.771322 1.830659 -3.870604 3.856452 -2.527614 -2.191224 5.023711 2.353363 -3.970723 0.005879 2.501122 -3.175128 -0.935354 1.224790 -2.764640 -0.590543 -2.962758 0.001620 1.670259 -2.851236 -1.899506 0.692909 -4.260637 4.778043 0.653595 1.199680 -0.188807 -2.974798 -4.364369 5.692279 0.063684 -0.821225 -1.744833 -1.332704 -2.086440 -4.453226 0.950924 0.775764 -1.582324 -2.336302 -3.459443 0.586934 2.951042 -1.704725 1.645281 -3.965224 -1.062182 1.341817 -0.179246 2.510957 -2.185616 -2.751889 -1.026995 -1.564154 2.506910 -2.672809 2.495597 4.615651 -1.970084 4.271519 0.352983 -3.054979 -0.470030 2.646679 -2.295386 3.832355 -1.413064 3.267151 -0.405714 3.454328 -3.165344 -1.097461 -0.079810 -1.334723 -1.448832 2.581219 -2.582724 0.318915 0.126014 -3.208546 -1.882608 1.829815 -0.183015 1.013927 -0.310950 0.333734 -2.526410 -0.461860 -1.092625 0.709427 3.247031 -1.091451 -3.205638 -0.049294 0.317819 -1.306060 -1.375093 0.946707 -0.239197 3.699598 -3.533246 -0.047408 0.536808 -0.482463 -3.776196 -4.011822 -0.398922 -2.967886 -2.245509 3.138363 -3.882797 -0.123217 -2.605482 0.147048 -2.986142 -1.834524 0.875775 4.387626 1.346946 -2.500149 1.698117 0.252071 3.263595 0.571861 0.307755 0.338947 1.434776 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = -1.521391 1.025484 0.980203 -1.047314 3.221951 0.301218 0.636184 1.697302 -0.000283 1.034547 -2.849992 -1.002025 -0.748409 -1.961067 0.409413 -1.047276 0.212409 0.590168 -1.239044 -0.330236 1.342081 -0.069902 -0.021564 -1.745515 0.183727 -1.241938 -1.049250 -0.250839 0.440340 1.425716 -0.578053 0.409057 2.162989 0.505608 1.442400 1.379223 1.430820 2.432794 -0.755508 1.753504 0.569617 1.647372 -0.865673 -2.777350 0.935815 -2.057623 -1.423303 -1.166513 0.524687 -2.488051 1.267084 1.443665 0.278893 -0.273797 -0.634258 0.564326 1.707912 0.618536 1.883019 1.455660 -1.936684 -0.306295 -1.603739 0.744870 -0.813354 2.614349 0.622187 -2.521057 -1.353778 0.890293 0.909656 -1.104342 -1.612674 0.119542 0.439263 -0.609780 1.275867 -0.243121 -0.660854 -0.373801 -1.474797 0.427829 -0.430878 1.898347 -0.335665 -0.603062 -0.374945 -0.532823 0.905109 -1.566471 -1.351987 2.427328 -0.835718 0.833779 -2.338485 -0.264743 0.030679 0.550752 -1.051274 -1.122211 0.809008 1.210643 0.156253 -0.575615 -1.790151 -2.005188 1.911757 1.622466 -0.474366 0.859674 0.064750 0.411056 0.185573 0.818163 -1.349952 1.759239 -1.872787 0.791880 -0.618516 0.387940 -0.283065 -0.000206 0.767752 -0.118101 0.759400 -1.566502 1.927228 1.225185 -1.646184 -1.070796 0.834598 -1.437921 -2.120587 -0.090936 1.105974 0.894286 -0.173691 -0.247507 0.142924 -1.164779 -0.866898 -1.360665 -1.034051 0.838726 -1.728717 -0.533207 -0.530591 -0.628168 -1.000190 1.270466 0.425273 0.385875 2.048460 1.135754 -0.804513 -0.297309 -1.579488 1.067525 3.475045 0.997471 -2.047476 0.451710 -0.718667 1.122863 1.037862 -0.150063 0.282233 1.860830 -0.872718 -0.015094 -1.160946 -1.156043 2.162075 2.788064 1.447281 -2.550745 1.273118 -1.772426 -0.615776 2.633984 2.397338 -2.344736 -0.062853 1.750288 -1.553489 -0.676521 0.302025 -0.828811 -0.502465 -1.340275 0.416229 0.653300 -2.062840 -1.796676 0.372528 -2.171776 2.244876 0.522282 1.180561 -0.309259 -2.022717 -1.285337 3.173704 0.182372 -0.616532 -0.236323 -0.412986 -1.416383 -2.300543 0.611366 1.083258 -0.995407 -1.524967 -1.381117 0.233478 2.161055 -1.543746 0.409369 -0.468348 -0.382162 0.606944 -0.759191 1.670910 -2.367177 -1.590415 -1.140599 -0.564168 1.709617 -0.882769 0.308759 2.371052 -1.023447 1.921150 1.452481 -0.713914 -0.621879 1.919914 -0.410318 1.709812 -0.614588 1.529218 -0.147655 2.120139 -1.326923 -0.500948 -0.318650 -0.444801 -0.651475 2.357708 -1.791176 0.265363 0.936165 -1.836335 -0.677016 1.702219 0.405028 1.035633 -0.517340 0.170324 -1.536933 0.025486 -0.623676 0.146621 1.865373 -0.711355 -2.357454 -0.878577 0.424452 -1.783986 -1.268946 0.980430 -0.098623 2.407070 -1.558734 0.713551 0.611217 -0.766755 -2.659922 -1.447256 -0.302080 -1.511680 -1.636698 1.270391 -1.948191 -0.594058 -1.244717 0.767356 -1.945078 -1.461496 -0.106563 1.955898 0.882582 -0.067621 1.169931 0.642563 1.649050 0.209419 -0.044024 0.499270 1.348079 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.639410 1.242838 1.683700 -1.276806 3.952813 0.402407 0.611294 2.186414 -0.427137 1.166272 -3.335690 -0.520434 -0.704331 -2.263234 0.686311 -1.086504 0.271047 0.343878 -1.330154 -0.400110 1.390188 -0.029087 -0.079519 -1.979999 0.071744 -1.781355 -1.087380 -0.166108 0.813935 1.406869 -0.487138 0.611336 2.531372 0.273153 1.519894 1.395197 2.383683 2.650766 -0.793876 1.317887 0.901204 1.689058 -0.959083 -2.868658 1.052473 -2.274519 -1.689949 -0.827043 0.592781 -2.503045 1.106056 1.702788 0.376728 -0.520997 -0.859737 1.171935 1.873445 -0.094073 2.148342 1.665342 -2.357030 -1.113005 -1.949733 1.611516 -1.148948 3.083139 0.139176 -2.651867 -1.644205 1.277446 0.825025 -1.068477 -1.967844 0.103807 0.522862 -0.857129 1.543502 -0.208638 -0.015144 -0.677872 -1.702158 0.866471 -0.376414 2.245530 -0.242492 -0.563310 -0.096333 -0.569758 0.978854 -1.847287 -1.580181 2.549478 -1.417727 0.757542 -3.034528 -0.359412 -0.305518 0.494562 -1.126230 -1.756207 1.113098 1.231766 0.162798 -1.424844 -1.156778 -2.499526 2.123037 1.852421 -0.323517 1.232766 0.019385 0.629309 0.214536 0.936229 -1.384948 1.403898 -2.259736 0.678766 -0.291816 0.308829 -0.769855 0.031171 0.840026 0.148102 1.000943 -2.067305 2.351460 1.328958 -1.995913 -0.857179 0.809402 -1.446169 -2.462268 -0.104798 1.333656 0.994734 -0.203519 -0.028323 0.413468 -1.122890 -1.279022 -1.844432 -1.231611 1.148308 -2.601477 -0.610655 -0.555766 -0.661534 -1.195977 1.606076 0.721405 0.549830 2.074872 1.224802 -0.864880 0.331298 -2.018101 1.401593 3.933561 1.071793 -2.478352 0.807219 -1.594294 1.217613 1.170047 -0.060280 0.236022 1.948510 -1.237029 -0.258216 -0.583574 -1.202043 2.603269 2.772854 1.483654 -3.328425 1.364868 -2.216121 -0.593343 3.165366 2.501752 -2.847992 -0.009941 2.307562 -1.586538 -0.783867 0.418099 -1.451260 -0.831796 -1.631248 0.457076 1.046800 -2.355817 -1.908623 0.441861 -2.430805 2.618668 0.616428 1.099603 -0.413337 -1.968489 -2.048018 3.627969 -0.017083 -0.530765 -0.505148 -0.624017 -1.440701 -2.790712 0.579119 1.378932 -1.108610 -1.670645 -1.753215 0.032787 2.492905 -1.846013 0.474271 -1.776564 -0.327903 0.808407 -0.681624 1.717004 -2.395916 -1.745041 -1.178159 -0.833079 1.667798 -1.582245 0.503081 2.550186 -1.312272 2.856868 1.142405 -1.580228 -0.820783 2.125930 -0.384828 2.148043 -0.598167 1.914052 -0.070776 2.498524 -1.943283 -0.541094 -0.504321 -0.840266 -0.965970 2.442157 -2.197141 0.254657 0.775716 -1.999758 -1.197705 1.958901 0.587296 1.194407 -0.683899 0.126512 -1.122130 -0.238406 -0.817409 0.457521 2.035058 -1.313001 -2.441952 -0.781417 0.746233 -2.194453 -1.355496 1.140583 0.060303 2.926785 -1.930735 0.904869 0.730284 -0.623492 -3.461222 -2.089802 -0.301186 -1.783137 -1.700867 1.414695 -2.693651 -0.932066 -1.383736 0.993183 -2.108431 -1.512040 0.150974 2.340211 0.632835 -0.382900 1.500869 0.678026 1.683933 0.206020 0.093143 0.545449 1.105439 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -4.696789 3.777556 4.941610 -2.193892 7.769644 0.726725 1.928594 4.888239 -3.239364 3.889809 -7.795460 -1.656468 -2.447012 -4.812976 0.459472 -4.128305 1.430320 0.384493 -1.883274 1.333222 3.164692 -2.021337 -0.563389 -4.100204 -0.115216 -3.765684 -3.160170 -0.357944 4.222263 0.510255 -0.155525 0.937898 8.479821 1.379991 6.796226 5.111043 2.750362 6.686117 0.226277 -0.492197 -0.485041 5.561860 -3.690951 -5.907936 0.781256 -5.591435 -3.245379 -2.254528 1.338645 -3.922442 -0.499826 4.441434 -0.282375 1.079723 -2.951264 2.541220 4.833304 0.839559 7.353410 2.685528 -4.485281 -0.984437 -4.534310 2.658903 -2.046928 4.585720 -1.429692 -5.497638 -0.172038 0.140794 0.877911 -4.941927 -3.044894 3.216631 0.911648 -3.346657 3.306961 -0.967066 -4.842983 -4.493412 -4.991150 1.266537 -0.330706 5.451748 -0.874924 -1.063973 -0.668215 0.370068 1.136280 -6.889345 -1.721995 6.795799 -4.189196 -0.136644 -3.904033 2.657021 -0.225843 3.199301 -3.569672 -3.375472 2.217168 1.206129 0.462141 -4.854694 -0.054253 -5.729550 2.881337 1.493389 -0.594117 4.020933 2.108945 3.894222 4.772303 4.618876 -5.495303 2.180577 -5.586161 2.238325 -2.847700 -0.152311 -0.011120 1.882404 0.446346 1.213606 4.874529 -6.732999 3.325054 3.176513 -3.569130 -5.133734 0.791585 -6.022651 -6.192217 -1.364151 3.130343 2.737863 0.477490 -3.267024 0.081006 -2.404758 -1.662316 -4.361949 -0.736854 4.868277 -6.952366 -1.760648 -1.002502 -0.978881 -3.034944 4.816105 2.450179 2.482238 6.457728 3.449613 -2.930753 1.841420 -5.579883 1.171670 8.685278 2.327932 -6.496095 3.578285 -3.617527 0.842344 3.622883 1.713480 3.156291 2.311445 -5.121900 -3.250934 0.917501 -1.836274 6.991217 4.866818 3.226341 -4.480986 6.992939 -3.533816 -4.577889 8.083268 3.743695 -6.699468 1.323185 3.580361 -3.629332 -1.223879 2.527678 -4.850494 -1.147830 -3.899752 -0.648568 2.083329 -4.859075 -2.588484 1.641530 -6.941510 7.825534 1.116845 2.190296 -0.086298 -5.566469 -6.132043 9.354857 0.719231 -1.046384 -2.204651 -2.010372 -3.867735 -6.995838 1.317617 1.243718 -2.871452 -3.663743 -5.517258 1.317003 4.586926 -2.689923 3.320695 -5.017433 -2.124970 2.167683 -0.343225 4.326305 -5.191424 -4.634827 -2.049862 -2.174412 4.593657 -4.069638 4.709133 8.161423 -2.526019 6.042909 1.120250 -3.559833 -0.215647 3.913210 -4.756788 5.970401 -1.961516 6.457499 -0.014870 5.269037 -5.133862 -2.376190 -0.177852 -0.801521 -2.367696 4.593405 -4.051673 0.762529 0.700489 -5.248313 -2.285049 2.545288 -0.542690 0.677551 -0.499948 0.549545 -5.281104 -0.537326 -2.604145 0.839835 5.227393 -1.576481 -5.993765 0.138212 0.060348 -1.993027 -1.299393 1.136145 -0.336854 5.165998 -5.573227 -0.821305 0.922490 -0.872505 -5.667191 -6.697957 -0.481226 -4.776909 -4.269345 4.172257 -5.865974 -0.325606 -4.256926 -0.507562 -6.769497 -3.333318 1.471632 7.614542 2.679467 -3.750037 1.958448 0.229428 5.524125 0.816077 1.371718 -0.214048 3.008238 +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.554151 0.561663 -0.150730 -0.490486 1.302344 -0.096803 0.064489 0.617306 -0.125577 0.469304 -1.051734 0.004184 -0.030339 -1.084588 0.234027 0.213694 0.187346 0.401966 -0.169484 0.028276 0.426732 -0.358628 0.045311 -0.666103 -0.007435 -0.728655 -0.128633 0.029812 0.242993 0.224340 -0.309607 0.246137 0.799806 0.164556 0.464840 0.585322 0.415527 0.863127 0.329283 0.040631 0.300724 0.432889 -0.218757 -1.112351 0.382285 -0.575372 -0.507891 -0.553972 0.190239 -0.821241 0.529501 0.584749 0.107843 -0.254911 -0.720091 0.160829 0.918450 0.048863 0.771957 0.509380 -0.480439 -0.311981 -0.336008 0.378886 -0.521265 0.392420 0.370678 -0.805046 -0.228886 0.653559 0.315298 -0.396579 -0.595006 -0.065156 0.112154 -0.421922 0.384969 -0.079517 -0.115764 -0.468375 -0.489209 0.272631 -0.295050 0.856839 0.033372 -0.085675 -0.284300 -0.176218 0.410035 -0.550304 -0.501695 0.624478 -0.199779 0.249470 -0.365341 0.534636 0.348836 -0.139644 -0.289175 -0.504791 0.292718 0.240590 0.123402 -0.046261 -0.339158 -0.727701 0.636161 0.370545 -0.174661 0.487142 0.299718 0.177623 0.026864 0.218776 -0.459263 0.176075 -0.965532 0.214619 0.056262 0.057179 -0.199002 -0.101966 0.440733 -0.112001 0.275200 -0.758974 0.896726 0.559675 -0.244069 -0.448609 0.337440 -0.233414 -0.603706 -0.009766 0.427826 0.154078 0.041200 0.132793 0.085603 -0.285564 -0.665794 -0.434944 -0.407708 1.056978 -0.941429 0.014376 -0.162954 -0.281938 -0.263648 0.197463 0.161715 0.167861 0.835331 0.462330 -0.347534 0.366090 -0.689035 0.485563 1.485364 0.654780 -0.699726 0.288343 -0.275993 0.240858 0.321068 0.067704 0.165523 0.284537 -0.525122 -0.184505 0.022886 -0.465251 0.760608 0.487593 0.551867 -0.979696 0.724671 0.097334 -0.030551 1.212777 0.474936 -0.916293 0.404252 0.962049 -0.631367 -0.023807 0.142165 -0.320435 -0.205173 -0.481416 0.266048 0.285038 -0.878322 -0.752879 -0.284081 -0.727787 0.757183 0.219068 0.267475 -0.046405 -0.537761 0.084000 1.233664 0.126990 -0.116580 -0.108479 -0.311840 -0.631613 -0.943802 0.120522 0.379582 -0.580028 -0.276617 -0.548661 -0.210909 0.967070 -0.605264 -0.043144 -0.755682 0.120050 0.353165 0.163895 0.215299 -0.830568 -0.476489 0.070638 -0.045371 0.320577 -0.322098 0.368465 0.737057 -0.499874 0.522833 0.517355 0.247918 0.278757 0.713905 -0.216050 0.738605 -0.204586 0.935855 0.182097 0.751671 -0.491236 -0.076844 -0.191405 -0.221911 -0.327661 0.711008 -0.892905 -0.039527 0.753149 -0.279901 -0.662142 0.621420 0.427023 0.645314 -0.241219 -0.167913 -0.186900 0.021474 -0.232488 0.239679 0.569950 -0.244195 -0.809542 -0.256527 0.619006 -0.454217 -0.380060 0.403308 0.133232 0.916447 -0.660797 0.583871 0.128578 0.033439 -0.940611 -0.736187 0.310932 -0.345082 -0.436007 0.549972 -1.276042 -0.402882 -0.402008 0.458173 -0.990897 0.065923 -0.176601 0.755345 0.058315 -0.000484 0.474792 0.107474 0.282633 -0.066539 0.117588 0.050829 0.592052 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -2.537407 1.589985 1.684728 -1.139164 4.520711 0.029422 0.772126 2.767636 -0.933365 2.001337 -4.284306 -1.042984 -1.062968 -3.011539 0.460734 -1.243569 1.149184 0.571198 -1.194804 0.285133 1.618412 -0.825115 -0.073006 -2.418362 0.013966 -2.204595 -1.599948 -0.168861 1.724343 0.267917 -0.471730 0.671837 4.808431 0.952148 3.309043 2.553519 1.835285 3.670182 0.518124 -0.244654 0.276097 2.781682 -1.699008 -3.326595 0.750285 -2.949114 -1.954014 -1.199590 0.558663 -2.467844 0.478157 2.254474 0.140871 0.367380 -1.762213 1.055815 3.188205 0.175988 3.758034 1.562058 -2.399418 -0.641348 -1.997031 1.696199 -1.437897 2.336053 -0.318768 -3.284204 -0.728293 0.741317 0.999582 -2.791275 -2.312297 1.195309 0.665989 -1.669310 1.735824 -0.150051 -1.294468 -2.320175 -2.770170 0.743471 -0.679656 2.964582 -0.391136 -0.521979 -0.116980 -0.220432 1.084522 -3.271815 -1.254730 3.323363 -2.304720 0.357645 -2.044008 1.131713 -0.192425 1.328286 -1.844064 -2.302561 0.995560 0.589283 0.174621 -1.470419 -0.441054 -2.717789 1.845191 0.898632 -0.406021 2.353206 1.338743 1.804909 1.960103 2.062138 -2.756476 0.567405 -3.059193 1.243109 -1.242811 -0.104333 -0.234837 0.650603 0.775737 0.647680 2.349480 -3.591329 2.274997 1.871077 -1.857247 -2.173458 0.431545 -2.696049 -3.238191 -0.528931 1.829204 1.175378 0.300478 -1.284315 0.248923 -1.230029 -1.460946 -2.360667 -0.957025 2.518116 -3.967447 -0.847253 -0.551055 -0.763757 -1.563071 2.222595 1.079296 1.113913 3.060431 1.685175 -1.921009 1.197291 -2.977509 1.163710 5.265613 1.244117 -3.430262 1.709177 -1.971035 0.759849 2.054263 0.729341 1.368280 0.728483 -2.236350 -1.160812 0.392115 -1.051017 3.669255 2.612683 1.832324 -3.355082 3.280230 -1.277210 -1.710013 5.027068 1.928170 -3.917973 0.925602 2.470041 -2.194285 -0.438165 0.869611 -2.367386 -0.861820 -2.491687 0.138840 1.052241 -2.746270 -1.565862 0.791784 -3.601743 3.829575 0.763558 0.610788 -0.120284 -2.839134 -2.758169 5.580532 0.489619 -0.320951 -0.996386 -1.257915 -1.834706 -4.036313 0.593006 0.642455 -1.688479 -1.444712 -2.843711 0.541228 3.251875 -1.665049 1.429730 -3.393588 -0.572484 1.081283 -0.111989 1.810538 -3.241153 -2.401483 -0.726351 -1.006539 1.996523 -2.287954 1.941271 3.952139 -1.645162 3.001574 0.787344 -1.721373 -0.069829 2.119445 -2.055378 3.001096 -1.300496 3.657749 0.124012 3.025363 -2.617303 -1.029024 -0.454936 -0.338350 -1.707151 2.502931 -2.720173 0.250534 1.154643 -2.211873 -1.864191 1.618473 0.106263 1.143800 -0.541418 -0.341301 -2.413758 0.123111 -0.840169 0.702640 2.661106 -0.702931 -3.333708 -0.181536 0.669669 -1.457813 -1.288363 0.780558 -0.178224 3.122723 -2.950347 0.120509 0.683768 -0.242743 -3.082125 -3.585009 0.028776 -2.463063 -1.947178 2.293264 -3.738222 -0.676329 -2.023196 0.227645 -3.274714 -1.273043 0.465255 3.724439 1.206003 -1.788549 1.347709 0.337264 2.467602 0.337367 0.749937 -0.037773 1.673187 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = -1.521391 1.025484 0.980203 -1.047314 3.221951 0.301218 0.636184 1.697302 -0.000283 1.034547 -2.849992 -1.002025 -0.748409 -1.961067 0.409413 -1.047276 0.212409 0.590168 -1.239044 -0.330236 1.342081 -0.069902 -0.021564 -1.745515 0.183727 -1.241938 -1.049250 -0.250839 0.440340 1.425716 -0.578053 0.409057 2.162989 0.505608 1.442400 1.379223 1.430820 2.432794 -0.755508 1.753504 0.569617 1.647372 -0.865673 -2.777350 0.935815 -2.057623 -1.423303 -1.166513 0.524687 -2.488051 1.267084 1.443665 0.278893 -0.273797 -0.634258 0.564326 1.707912 0.618536 1.883019 1.455660 -1.936684 -0.306295 -1.603739 0.744870 -0.813354 2.614349 0.622187 -2.521057 -1.353778 0.890293 0.909656 -1.104342 -1.612674 0.119542 0.439263 -0.609780 1.275867 -0.243121 -0.660854 -0.373801 -1.474797 0.427829 -0.430878 1.898347 -0.335665 -0.603062 -0.374945 -0.532823 0.905109 -1.566471 -1.351987 2.427328 -0.835718 0.833779 -2.338485 -0.264743 0.030679 0.550752 -1.051274 -1.122211 0.809008 1.210643 0.156253 -0.575615 -1.790151 -2.005188 1.911757 1.622466 -0.474366 0.859674 0.064750 0.411056 0.185573 0.818163 -1.349952 1.759239 -1.872787 0.791880 -0.618516 0.387940 -0.283065 -0.000206 0.767752 -0.118101 0.759400 -1.566502 1.927228 1.225185 -1.646184 -1.070796 0.834598 -1.437921 -2.120587 -0.090936 1.105974 0.894286 -0.173691 -0.247507 0.142924 -1.164779 -0.866898 -1.360665 -1.034051 0.838726 -1.728717 -0.533207 -0.530591 -0.628168 -1.000190 1.270466 0.425273 0.385875 2.048460 1.135754 -0.804513 -0.297309 -1.579488 1.067525 3.475045 0.997471 -2.047476 0.451710 -0.718667 1.122863 1.037862 -0.150063 0.282233 1.860830 -0.872718 -0.015094 -1.160946 -1.156043 2.162075 2.788064 1.447281 -2.550745 1.273118 -1.772426 -0.615776 2.633984 2.397338 -2.344736 -0.062853 1.750288 -1.553489 -0.676521 0.302025 -0.828811 -0.502465 -1.340275 0.416229 0.653300 -2.062840 -1.796676 0.372528 -2.171776 2.244876 0.522282 1.180561 -0.309259 -2.022717 -1.285337 3.173704 0.182372 -0.616532 -0.236323 -0.412986 -1.416383 -2.300543 0.611366 1.083258 -0.995407 -1.524967 -1.381117 0.233478 2.161055 -1.543746 0.409369 -0.468348 -0.382162 0.606944 -0.759191 1.670910 -2.367177 -1.590415 -1.140599 -0.564168 1.709617 -0.882769 0.308759 2.371052 -1.023447 1.921150 1.452481 -0.713914 -0.621879 1.919914 -0.410318 1.709812 -0.614588 1.529218 -0.147655 2.120139 -1.326923 -0.500948 -0.318650 -0.444801 -0.651475 2.357708 -1.791176 0.265363 0.936165 -1.836335 -0.677016 1.702219 0.405028 1.035633 -0.517340 0.170324 -1.536933 0.025486 -0.623676 0.146621 1.865373 -0.711355 -2.357454 -0.878577 0.424452 -1.783986 -1.268946 0.980430 -0.098623 2.407070 -1.558734 0.713551 0.611217 -0.766755 -2.659922 -1.447256 -0.302080 -1.511680 -1.636698 1.270391 -1.948191 -0.594058 -1.244717 0.767356 -1.945078 -1.461496 -0.106563 1.955898 0.882582 -0.067621 1.169931 0.642563 1.649050 0.209419 -0.044024 0.499270 1.348079 +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.636653 1.868895 3.424294 -2.090664 7.170127 -1.045919 1.557582 2.325757 0.136138 1.950104 -5.287525 -0.474089 -0.563018 -3.928746 1.129152 -3.135670 1.564387 1.133419 -1.574192 -0.166623 1.311724 0.340522 -0.289546 -2.670410 -0.303019 -5.946654 -2.211228 0.674801 1.282520 0.074680 0.981758 1.766447 5.754936 -0.438399 3.638612 3.288925 3.760108 3.157884 -0.460259 -0.111229 2.736765 1.798898 -1.241981 -3.602362 -0.210764 -1.943882 -4.463682 -1.401108 1.085793 -3.422116 -2.805708 2.647390 0.668828 0.107211 -1.965732 2.962714 3.895219 -0.936430 3.448185 2.287403 -3.352546 0.069225 -2.534515 3.259775 -2.486558 2.166669 -2.527682 -4.683890 -2.224249 3.421189 -0.447717 -1.583404 -2.407044 0.050919 1.913421 -2.142609 2.037172 0.213130 0.203619 -3.213270 -1.886038 1.914030 0.029649 3.249742 0.348717 -0.524646 1.668263 -1.039779 1.263928 -2.989015 -2.192026 3.906118 -2.972411 -1.018353 -2.237657 0.634137 1.889920 -0.027412 -0.580292 -5.424183 1.225675 -0.863126 -0.003083 -0.492674 0.115207 -2.517396 -0.190362 1.631213 0.168537 3.872701 -2.042248 2.185833 1.302178 1.129109 -3.596006 0.665881 -4.166132 2.542296 -3.124598 -0.631303 -1.124345 -0.280941 2.355759 3.145771 2.091584 -3.721985 3.661886 2.269848 -1.654657 -1.191874 0.751663 -1.512459 -3.631319 -0.228551 1.881704 1.300432 0.908823 -0.174251 1.285239 -1.205404 0.828927 -1.385624 -1.753830 2.100824 -4.999706 -0.355145 -0.095318 -0.197815 -1.980169 2.264784 1.706899 1.016277 4.324462 1.776944 -2.428939 3.090561 -4.544273 1.433500 6.339416 0.111519 -2.795540 2.523636 -2.822913 0.441597 1.962910 1.528965 0.008454 0.855047 -3.022614 -1.191973 -0.597849 -1.680282 4.292999 2.346317 0.464900 -6.174720 2.744879 -2.436597 -0.796350 5.920038 3.179617 -5.819954 2.146437 4.619400 -3.857328 -2.281632 1.292557 -3.884954 -2.472261 -3.170183 1.209559 1.583104 -3.159243 -1.583943 1.180455 -3.408808 2.787384 0.851236 -1.084247 0.184415 -1.546147 -5.649192 6.784978 0.174926 0.791246 -0.782183 -1.751459 -0.083673 -5.329957 -0.219296 0.833862 -2.715699 -0.334894 -2.897596 0.252465 4.276647 -3.070413 2.201307 -5.704198 0.448753 1.882328 1.274034 0.876273 -3.135722 -2.326445 -0.864236 -2.068265 -0.346831 -3.945899 1.247436 3.419336 -1.949657 3.815697 -1.851467 -6.452690 0.176237 2.396604 -2.204513 4.172302 -0.059912 4.479776 1.736861 3.238741 -3.620849 -1.297530 -1.270961 -3.364382 -3.489232 3.238147 -4.741103 0.262259 2.734799 -1.485164 -3.716980 2.609190 1.885378 1.240018 -1.261175 0.073230 -3.082891 0.759911 -0.750458 1.619370 2.246222 -1.373611 -4.208175 0.370486 3.660707 -3.229641 -4.329789 0.878481 0.583465 3.795163 -3.306322 1.768734 1.612491 1.299570 -5.115144 -5.504632 1.800118 -4.662128 -2.351337 0.461085 -5.105420 -2.660728 -2.050041 1.448649 -3.062001 -2.803704 2.684279 4.766640 0.483818 -2.025655 1.721485 0.095895 1.284523 -0.484671 1.319225 0.144060 1.317589 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.039672 1.774842 1.025874 -1.598992 4.803761 -0.774391 1.050415 1.333909 -0.208361 1.392008 -4.054396 -0.665805 -0.344309 -3.562559 0.816145 -1.073518 1.279859 1.138721 -0.716801 0.374237 1.181259 -0.796196 -0.123027 -2.268069 -0.058692 -3.413254 -1.297293 0.341287 1.024512 -0.167140 0.079076 1.257384 4.073161 0.351929 2.700482 2.538621 1.732702 2.845545 0.666427 -0.725989 1.470719 1.595436 -0.909214 -3.322151 0.328103 -1.630965 -2.611275 -1.690224 0.661823 -2.253659 -0.443275 2.100118 0.371860 -0.166645 -2.422823 1.122994 3.527033 -0.037493 2.873621 1.716141 -1.827795 0.163855 -1.363122 1.581790 -1.881853 1.078771 -0.526271 -3.092382 -0.868567 2.341022 0.546704 -1.685466 -2.323527 0.024302 1.053288 -1.676656 1.510669 0.035968 -0.537421 -2.695841 -1.829808 1.214635 -0.561402 2.882930 0.209695 -0.373463 0.144510 -0.682663 1.217808 -2.251970 -1.602864 2.427277 -1.540660 -0.277859 -0.809985 1.759906 1.451009 -0.163578 -1.056868 -3.283179 0.970201 -0.460388 0.147221 0.274951 -0.169843 -2.105080 0.653157 1.126220 -0.300959 2.698166 0.398527 1.576888 1.176152 0.841156 -2.596106 0.044279 -3.253249 1.404075 -1.438008 -0.492966 -0.530783 -0.101908 1.431259 1.093219 1.452548 -2.982296 2.819759 2.146855 -0.910755 -1.289448 0.733465 -1.215726 -2.599525 -0.233172 1.482644 0.889533 0.709700 0.003606 0.382183 -0.964147 -0.372246 -0.909018 -1.258860 3.069117 -3.552225 -0.148710 -0.236141 -0.610308 -1.287391 1.276828 0.948397 0.740352 3.212316 1.463128 -2.010122 1.804524 -3.055121 1.247242 5.190124 0.882173 -2.364858 1.658655 -1.458412 0.396888 1.410827 1.012867 0.533521 -0.121915 -2.357124 -1.030624 -0.084232 -1.518716 3.011268 1.226532 0.990084 -3.969563 2.896909 -0.131264 -0.663929 4.714808 1.471822 -3.732336 1.509856 3.547114 -2.799783 -0.981960 0.919503 -2.225720 -1.383817 -2.316938 0.978668 0.896781 -2.694402 -1.650580 -0.073303 -2.735000 2.356556 0.797007 -0.401087 -0.060379 -1.478687 -2.436676 5.267057 0.220626 0.294168 -0.473696 -1.321415 -0.425438 -3.886738 0.046747 0.584777 -2.069850 -0.308333 -2.154896 -0.033168 3.377762 -2.264006 0.999977 -3.500783 0.358437 1.368719 1.055688 0.450949 -2.588949 -1.882548 0.239421 -0.817197 0.097175 -2.126328 1.420883 2.663455 -1.632424 1.914931 0.049925 -2.159740 0.914138 2.043828 -1.550328 3.014243 -0.572157 3.835469 1.098018 2.589201 -2.317499 -0.904246 -0.683026 -1.615084 -2.269828 2.388266 -3.461872 0.130070 2.495275 -0.659827 -2.938934 1.993252 1.312541 1.407949 -0.920777 -0.386829 -1.700133 0.587469 -0.371599 1.253993 1.848344 -0.599116 -3.001803 -0.163086 2.715347 -1.541525 -2.023569 0.896310 0.298307 3.025868 -2.533009 1.543624 0.742668 0.918845 -3.148179 -3.864155 1.657537 -2.686436 -1.411084 1.401148 -4.263088 -1.630473 -1.595052 1.130970 -2.671000 -0.697984 1.002749 3.386177 0.408409 -1.291828 1.204772 0.057888 0.942278 -0.444896 0.783810 -0.033322 1.613019 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.365551 0.157108 -0.244343 -0.272073 1.168030 -0.060980 -0.061861 0.636332 -0.012496 0.418680 -0.633850 0.001202 -0.014756 -0.669966 0.197524 0.306753 0.183347 0.220383 -0.256909 -0.239747 0.227393 -0.020928 0.087006 -0.319296 -0.043506 -0.556826 -0.129345 0.107180 0.215707 0.104597 -0.483134 0.206824 0.609159 -0.079139 0.289099 0.319882 0.560119 0.433378 0.163304 -0.035946 0.370946 0.200124 -0.162867 -0.638408 0.181325 -0.398387 -0.550441 -0.202023 0.231698 -0.542900 0.322497 0.399459 0.081409 -0.133775 -0.340212 0.311218 0.395823 -0.120397 0.556269 0.333916 -0.542736 -0.406207 -0.262426 0.683811 -0.376175 0.380885 -0.044000 -0.745788 -0.426505 0.582810 0.084433 -0.278866 -0.379468 -0.026584 0.135713 -0.292111 0.282004 0.028032 0.503494 -0.329951 -0.398579 0.275072 -0.305047 0.536527 0.072657 -0.029136 -0.107503 -0.150671 0.214701 -0.436014 -0.277857 0.488127 -0.315604 0.247740 -0.408986 0.036697 0.152288 -0.110406 -0.112022 -0.510883 0.150632 0.132101 0.081481 -0.188105 0.105868 -0.434301 0.364654 0.255580 0.121799 0.330752 0.092810 -0.033533 -0.033463 0.188653 -0.139632 -0.034321 -0.641930 0.241247 -0.046157 0.020898 -0.315825 -0.038245 0.532277 0.039878 0.287105 -0.593644 0.591181 0.267772 -0.233427 -0.234284 0.171484 -0.095116 -0.429167 0.074666 0.340565 -0.017085 -0.001408 0.085635 0.260674 -0.137334 -0.628697 -0.110665 -0.340031 0.434667 -0.739667 0.028381 -0.076647 -0.167713 -0.168273 0.257427 0.234336 0.232736 0.617660 0.327088 -0.251900 0.308250 -0.655373 0.459859 0.999452 0.260503 -0.487734 0.279401 -0.471425 0.201940 0.225463 0.142280 0.039478 0.301553 -0.129700 0.119160 0.004619 -0.086663 0.612813 0.293715 0.392241 -0.669092 0.119505 -0.209965 0.126710 0.819279 0.419205 -0.831833 0.395375 0.716055 -0.275726 0.040006 0.141009 -0.444635 -0.239270 -0.473910 0.231939 0.419538 -0.661349 -0.364142 0.031353 -0.440026 0.528299 0.111462 -0.014623 0.105176 -0.416418 0.184465 0.875497 0.121505 0.079410 -0.086854 -0.327858 -0.497441 -0.682064 0.013523 0.300160 -0.390984 -0.097761 -0.418235 -0.274403 0.783885 -0.284022 0.142764 -0.800338 0.342976 0.300700 0.111446 0.176401 -0.432339 -0.261561 -0.014934 -0.249348 0.132284 -0.530161 0.085023 0.294936 -0.394194 0.567012 0.202439 -0.071881 0.061529 0.313624 -0.130753 0.567594 0.056797 0.500344 0.193612 0.529125 -0.373853 0.055931 -0.284131 -0.199127 -0.332005 0.512835 -0.705558 -0.097852 0.563240 -0.207152 -0.619130 0.324260 0.391004 0.453350 -0.162644 -0.296669 -0.142344 -0.038833 -0.238642 0.300882 0.327391 -0.346325 -0.514471 -0.039828 0.444564 -0.524319 -0.350487 0.292097 0.128860 0.684143 -0.496041 0.319389 0.222717 0.235442 -0.808176 -0.500904 0.010598 -0.161759 -0.224383 0.268885 -0.942142 -0.479895 -0.254111 0.321912 -0.639768 -0.035285 -0.002084 0.639693 -0.012102 -0.034677 0.395344 0.137879 0.044060 -0.071768 0.092367 0.119031 0.216439 +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.599684 0.199492 0.178401 -0.419149 1.830855 -0.186088 0.170791 1.086076 0.009733 0.440232 -1.112990 -0.036782 -0.161062 -0.936642 0.379181 -0.063910 0.272493 0.359598 -0.568254 -0.438745 0.489778 0.275496 -0.056662 -0.660397 0.033452 -0.847638 -0.298903 0.029492 0.157846 0.482718 -0.558395 0.473444 0.991002 -0.076503 0.505976 0.601538 1.116744 0.806916 -0.195802 0.425709 0.640823 0.443790 -0.232017 -1.086136 0.302354 -0.672237 -0.876547 -0.247196 0.316102 -1.003138 0.367290 0.613250 0.226868 -0.113210 -0.277162 0.575774 0.573089 -0.123996 0.685041 0.734556 -1.036161 -0.461935 -0.575390 0.988562 -0.513852 1.008752 -0.048262 -1.227808 -0.852078 0.853545 0.199587 -0.447040 -0.631093 -0.190600 0.201621 -0.297119 0.566772 0.122115 0.667681 -0.211395 -0.632701 0.369757 -0.293954 0.810658 -0.019033 -0.226148 -0.098199 -0.386178 0.449836 -0.542564 -0.641387 0.977476 -0.588653 0.378187 -1.205382 -0.353198 0.202198 -0.023109 -0.152891 -0.976168 0.349075 0.319520 0.065714 -0.332904 -0.311677 -0.632251 0.579439 0.594245 0.032352 0.603107 -0.368965 0.042291 -0.183920 0.151930 -0.171390 0.401159 -1.006829 0.513402 -0.297911 0.099823 -0.374663 -0.178501 0.821585 0.143610 0.266157 -0.722220 0.951483 0.456173 -0.557756 -0.240428 0.386609 -0.274311 -0.867894 -0.004125 0.614150 0.251614 -0.071169 0.166269 0.445342 -0.328029 -0.558810 -0.479233 -0.692449 0.244611 -1.087299 -0.138369 -0.207424 -0.222522 -0.417778 0.452857 0.235699 0.253426 0.879399 0.487326 -0.392248 0.317258 -0.975193 0.629720 1.510805 0.350737 -0.758309 0.289932 -0.663058 0.460839 0.385664 0.074436 -0.123913 0.801545 -0.205644 0.246861 -0.321179 -0.362674 0.966805 0.914226 0.533804 -1.290681 0.054141 -0.901118 0.018718 1.203672 1.053514 -1.364765 0.368640 1.084877 -0.402795 -0.303652 0.126944 -0.696357 -0.445158 -0.720380 0.390274 0.538952 -1.074756 -0.586733 0.305000 -0.736975 0.708203 0.216106 0.118323 -0.035534 -0.719345 -0.286920 1.452472 0.107866 0.033946 -0.112061 -0.392557 -0.652599 -1.092948 0.115261 0.510169 -0.441973 -0.410277 -0.577592 -0.242164 1.242863 -0.707932 0.207987 -0.881656 0.300979 0.381370 -0.061900 0.509011 -0.910688 -0.575980 -0.374680 -0.390413 0.374866 -0.810302 -0.114419 0.682946 -0.564105 1.004250 0.370460 -0.649833 -0.259662 0.699035 -0.115154 0.788516 0.074646 0.681387 0.226545 0.886896 -0.777280 -0.147563 -0.406251 -0.341842 -0.576958 0.963879 -1.030800 0.045644 0.630551 -0.544598 -0.678411 0.732611 0.535757 0.574486 -0.335765 -0.179487 -0.380290 -0.006999 -0.448888 0.333318 0.665236 -0.602913 -0.941269 -0.207098 0.568109 -1.171803 -0.701957 0.486194 0.117757 1.175399 -0.689533 0.491385 0.442046 0.087529 -1.424040 -0.838236 -0.072248 -0.559055 -0.568107 0.242637 -1.155123 -0.721197 -0.395597 0.612622 -1.002037 -0.584493 0.079529 0.863782 0.076460 0.100768 0.652935 0.329110 0.294754 -0.035778 0.115550 0.199968 0.371605 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__bit_width(unsigned long) = -0.414384 0.048564 -0.192388 -0.146808 0.782803 0.064189 -0.220945 0.597613 -0.082498 0.427748 -0.491466 -0.171281 -0.224939 -0.475635 0.016700 0.228105 0.144235 0.147811 -0.290053 -0.166840 0.300272 -0.075222 0.105763 -0.219132 -0.031892 -0.079873 -0.238245 0.047778 0.405737 -0.188384 -0.501476 -0.005060 0.709685 -0.063557 0.502953 0.269071 0.421994 0.525841 0.103045 -0.125772 0.018338 0.487427 -0.324545 -0.562540 0.192601 -0.565706 -0.174663 -0.026730 0.326522 -0.205426 0.362324 0.319956 -0.033804 0.033499 -0.210724 0.207503 0.222183 0.103478 0.730659 0.146073 -0.490153 -0.248351 -0.367311 0.554294 -0.356256 0.507039 -0.161215 -0.549198 -0.275517 0.033815 0.102163 -0.547440 -0.327770 0.280801 0.002042 -0.274193 0.304302 -0.064666 0.471510 -0.412314 -0.588577 0.067432 -0.349238 0.376348 -0.149953 -0.034262 -0.176783 0.051497 0.073440 -0.606032 -0.079099 0.391722 -0.438100 0.378812 -0.139946 -0.023087 -0.251956 0.196066 -0.299094 -0.172672 0.068084 0.195387 0.118600 -0.312215 0.479885 -0.294957 0.400199 -0.026682 0.119711 0.143145 0.480529 0.073998 0.262874 0.443275 -0.088891 -0.171477 -0.542331 0.091965 -0.149373 0.103952 -0.109398 0.268794 0.280710 -0.142899 0.495179 -0.630172 0.305059 0.072971 -0.234720 -0.407038 0.133096 -0.370347 -0.477450 -0.028978 0.338447 0.027480 -0.110789 -0.308253 0.159702 -0.091518 -0.750548 -0.120365 -0.112194 0.157606 -0.543952 -0.097012 -0.126810 -0.242418 -0.090280 0.352063 0.230189 0.289112 0.589248 0.388489 -0.247716 0.122303 -0.563539 0.268015 0.678314 -0.017001 -0.613023 0.248224 -0.472458 0.165874 0.421591 0.211479 0.318305 0.340235 0.030282 0.086461 0.167979 0.093540 0.599259 0.101784 0.458999 -0.271018 0.143464 -0.073484 -0.115824 0.872601 0.083437 -0.785871 0.375694 0.241533 0.103603 0.159636 0.119652 -0.336874 -0.059775 -0.466007 0.071970 0.402380 -0.546019 -0.243886 0.186171 -0.529785 0.739979 -0.021800 -0.035665 0.272304 -0.744061 0.126230 0.748079 0.171878 -0.059300 -0.229739 -0.289324 -0.379954 -0.605078 0.130224 0.128286 -0.275070 -0.225801 -0.480895 -0.011224 0.581390 -0.001987 0.260927 -0.694201 0.040399 0.215801 -0.055846 0.378444 -0.319487 -0.288182 -0.109129 -0.241045 0.464287 -0.478278 0.159963 0.549858 -0.382872 0.527734 0.328216 -0.020677 -0.041743 0.255574 -0.347562 0.525421 -0.055629 0.300149 -0.098189 0.409144 -0.360655 0.011835 -0.120941 0.234272 -0.113618 0.296618 -0.337969 -0.071026 0.107176 -0.490424 -0.239455 0.115994 0.060087 0.286580 0.065296 -0.267703 -0.300647 -0.116328 -0.146331 0.061755 0.436285 -0.206947 -0.554527 0.049941 -0.106248 -0.275150 0.025005 0.123926 -0.010904 0.508426 -0.490742 -0.118479 0.145169 0.021183 -0.502480 -0.354365 -0.354360 -0.040744 -0.060326 0.477019 -0.568878 -0.191346 -0.292571 0.043944 -0.472329 0.045402 -0.088540 0.645423 0.333423 -0.211564 0.347982 0.107282 0.416950 0.102278 -0.037901 0.054262 0.223480 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int std::__countl_zero(unsigned long) = -1.371000 -0.244432 -1.312566 -0.462178 2.647281 -0.135263 -0.198106 1.263570 -0.527413 1.193008 -1.604373 -0.904014 -0.943842 -1.989768 0.219613 0.948388 0.894388 0.494990 -0.920106 -0.157389 1.075461 -0.611058 0.385905 -0.843086 0.062559 -0.311029 -0.638017 0.190722 1.293132 -0.748531 -1.424218 0.228191 2.363035 0.004781 1.307694 0.881619 1.048536 1.867921 0.194985 -1.173942 0.039295 1.680586 -0.906021 -1.794852 0.672824 -1.580564 -0.973671 -0.330577 1.072540 -0.564499 0.691140 1.282297 -0.082379 0.026016 -1.122919 0.562507 1.637168 0.105805 2.300174 0.643417 -0.983078 -0.546183 -0.962828 1.423815 -1.131924 1.069541 -0.208953 -1.711919 -0.883880 0.305209 0.471645 -1.778392 -1.611513 0.616685 0.385419 -0.949660 1.081408 0.017679 1.287957 -2.109095 -2.178960 0.030054 -1.276378 1.586981 -0.493460 -0.162007 -0.060679 -0.107995 0.468849 -1.848728 -0.297750 0.894168 -1.209013 0.846802 -0.543494 0.447862 -0.676078 0.380281 -1.617068 -0.993167 0.154567 0.172388 0.444489 -0.499069 1.338719 -0.727172 0.850607 -0.102961 0.613216 0.816054 2.032804 0.111953 0.582876 1.146829 -0.689883 -0.764479 -1.566700 0.312658 -0.337638 0.294017 -0.328853 0.762155 1.266900 -0.605064 1.483643 -2.199720 1.109019 0.552251 -0.666608 -1.174671 0.465195 -1.035690 -1.533090 -0.161999 1.337183 -0.135545 -0.164945 -0.690649 0.755767 -0.164388 -2.147741 0.535364 -0.637326 1.041752 -1.999410 -0.192935 -0.536269 -1.019417 -0.178360 0.874723 0.534890 0.923722 1.849881 1.206724 -1.308926 0.794128 -1.842424 1.114246 2.743070 0.341057 -1.908659 0.725938 -1.277593 0.749739 1.265480 0.702207 1.201267 0.148297 0.077705 0.514358 0.669832 0.165530 1.991670 -0.029507 1.461542 -1.386608 0.554807 0.225366 -0.109990 2.838071 0.426607 -2.351469 1.420254 1.088857 -0.189818 0.443112 0.267141 -0.907033 -0.439560 -1.795116 0.742803 1.172577 -1.793927 -0.764602 0.260273 -1.696755 1.981134 0.024624 -0.340058 1.004532 -2.162228 0.303513 2.417262 0.339705 -0.107378 -0.828323 -1.149872 -1.067825 -2.135191 0.545584 -0.147885 -0.825761 -0.520723 -1.592205 -0.300791 2.273713 -0.021324 0.635530 -2.610473 0.644327 0.703310 0.230744 1.094369 -0.873987 -1.063608 0.267278 -0.624003 0.994694 -1.420431 0.224293 1.499946 -1.559473 0.992712 0.606623 0.221247 0.275748 0.857255 -1.058740 1.684793 -0.052037 1.829183 -0.336182 1.482618 -1.085574 0.078629 -0.277330 0.626390 -0.690098 0.986922 -1.351895 -0.239562 0.973065 -1.006223 -1.521755 0.480987 0.200442 1.070647 0.129806 -1.082916 -0.859523 0.001392 -0.011039 0.532926 1.469441 -0.350868 -1.487018 -0.024654 0.180344 -0.509382 0.193918 0.580109 -0.093717 1.884168 -1.637958 -0.088680 0.238430 0.470097 -1.100840 -1.670743 -0.453619 -0.254049 -0.297068 2.348286 -2.116230 -0.437658 -1.007412 0.426645 -1.332891 0.385831 -0.426559 1.954094 0.731877 -0.663918 1.211432 0.434210 1.004009 -0.227297 -0.076745 0.210664 0.778447 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.657416 2.172521 2.004083 -2.271006 6.023948 -0.605437 1.482485 1.637357 0.275502 1.656702 -5.364835 -1.391718 -0.771351 -4.089384 0.962040 -2.321831 1.005009 1.390535 -1.564814 0.193934 1.805151 -0.477048 -0.118904 -3.141253 -0.038855 -3.793629 -1.887643 0.206572 0.815146 0.859147 0.151202 1.309382 4.686543 0.395693 3.018751 2.994482 2.345212 4.025681 -0.395267 0.784681 2.032008 2.260848 -1.174997 -4.514565 0.696132 -2.495363 -3.304716 -2.226613 0.916541 -3.650629 0.014777 2.585773 0.683352 -0.560613 -2.429166 1.556401 4.072576 0.557803 3.393777 2.424023 -2.658516 0.482795 -2.416883 1.647819 -2.271285 2.831004 -0.289603 -4.227455 -1.881963 2.852727 0.876316 -1.875622 -3.175796 -0.289064 1.327324 -1.728468 2.004020 -0.180115 -1.007303 -2.141917 -2.102593 1.357628 -0.494804 3.446804 -0.079274 -0.687945 0.191484 -0.951967 1.673068 -2.537458 -2.549229 3.642473 -1.700694 0.005172 -2.055891 1.126712 1.494695 -0.115883 -1.453500 -3.524096 1.335808 0.322586 0.188401 0.026971 -1.593247 -2.991459 1.580084 2.442718 -0.755321 2.736187 -0.269594 1.744413 0.853747 0.891372 -3.050210 1.393446 -4.009256 1.577546 -1.902383 -0.180116 -0.653547 -0.194226 1.529988 1.193580 1.467074 -3.229684 3.919274 2.466559 -1.926693 -1.420952 1.282163 -1.480998 -3.478724 -0.203048 1.817620 1.488301 0.473517 0.127971 0.471590 -1.568074 -0.091878 -1.460100 -1.632839 2.665348 -3.645307 -0.419661 -0.479879 -0.813925 -1.696346 1.792881 1.016036 0.547219 4.004827 1.847679 -2.082768 1.119689 -3.490044 1.691059 6.423052 0.871891 -3.099087 1.597803 -1.519852 1.035126 1.721486 0.695835 0.272879 1.430228 -2.576213 -1.018775 -1.373077 -2.323771 3.799259 2.965189 1.395518 -5.282588 3.154211 -1.669042 -0.630036 5.456322 3.116594 -4.583909 0.922894 4.270662 -3.720222 -1.873255 0.947269 -2.203306 -1.477492 -2.644260 1.154865 1.003026 -3.346768 -2.716507 0.057981 -3.550456 3.096728 0.920631 0.038380 -0.462221 -2.274389 -3.532649 6.304336 0.206800 -0.193121 -0.440849 -1.239437 -0.868242 -4.860771 0.394170 1.295351 -2.381620 -1.284211 -2.486429 0.383038 4.033763 -3.290208 0.984061 -2.802356 -0.130979 1.536418 0.594049 1.467466 -3.378474 -2.445412 -0.655407 -1.049610 0.916170 -2.270887 1.131482 3.746461 -1.946886 2.812779 0.677158 -3.098122 0.227786 3.233090 -1.389139 3.634971 -0.806934 3.972047 0.821988 3.362091 -2.650179 -1.127799 -0.691656 -2.145139 -2.353562 3.470796 -4.132238 0.295279 2.546646 -1.613477 -2.678800 3.073835 1.655464 1.709048 -1.168075 0.232581 -2.463132 0.597088 -0.535901 0.959342 2.627792 -0.829886 -4.124941 -0.726935 2.875620 -2.729323 -2.968409 1.290900 0.269671 4.052619 -2.978800 2.089146 1.054176 0.121567 -4.538312 -4.020820 1.345840 -3.576135 -2.220467 1.603465 -4.409717 -1.908757 -2.004634 1.810221 -2.958867 -2.014597 1.088350 3.809585 1.049880 -1.037004 1.739403 0.364557 1.877179 -0.188913 0.397611 0.356223 2.152351 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.639036 1.055143 0.177929 -1.308045 3.690267 -0.333159 0.531212 1.023907 0.292577 1.087938 -3.098512 -1.022819 -0.526562 -2.674596 0.592463 -0.396487 0.727539 0.996667 -0.968681 -0.040980 1.193538 -0.483796 0.150133 -1.833405 0.030038 -1.715258 -1.040678 0.153269 0.471955 0.339969 -0.608214 0.758376 2.707998 0.372524 1.636451 1.630795 1.295249 2.623678 0.072813 0.321131 1.135301 1.424208 -0.702478 -3.001652 0.851708 -1.688522 -1.806151 -1.497332 0.677657 -2.116401 1.008472 1.621212 0.374796 -0.491417 -1.704958 0.550442 2.544705 0.517287 2.217708 1.456204 -1.527126 0.145047 -1.274479 0.864639 -1.479824 1.730924 0.270642 -2.646370 -1.266379 1.737513 1.039913 -1.524148 -2.275321 -0.219833 0.616936 -1.009849 1.246013 -0.057647 0.101304 -1.486941 -1.672181 0.707649 -0.800747 2.210140 -0.109028 -0.377558 -0.349732 -0.612189 1.102589 -1.558960 -1.457704 1.892803 -0.869567 0.610023 -0.985078 0.727120 0.585503 -0.201242 -1.181877 -1.834426 0.718333 0.361084 0.241908 0.427083 -0.788070 -1.731056 1.448661 1.383028 -0.371474 1.249859 0.794089 0.647156 0.376128 0.557287 -1.551974 0.512039 -2.464003 0.765386 -0.631134 -0.004895 -0.477251 0.012263 1.057526 0.052303 0.908608 -2.105258 2.435944 1.453760 -1.170153 -0.917816 0.877887 -0.772053 -2.030609 -0.037000 1.280108 0.603852 0.141239 0.157710 0.274505 -0.931294 -0.941815 -0.587756 -1.135935 1.894799 -2.140544 -0.156247 -0.419658 -0.896267 -0.816475 0.904178 0.527006 0.465382 2.426131 1.261627 -1.374762 0.465246 -2.141981 1.329379 4.054123 0.805395 -2.046463 0.825713 -0.824267 0.874995 1.142309 0.396967 0.370780 0.634605 -1.047227 -0.175795 -0.657894 -1.181273 2.282346 1.529763 1.344351 -3.016209 1.576619 -0.359068 -0.049218 3.535034 1.517298 -2.754578 0.695132 2.631909 -1.839415 -0.653405 0.443171 -1.055906 -0.800189 -1.715345 0.891267 0.768920 -2.312625 -1.842430 -0.169330 -2.154945 1.994531 0.527829 0.038414 -0.050093 -1.761485 -0.956433 3.843787 0.193991 -0.148627 -0.241893 -0.928458 -0.649967 -2.919545 0.351901 0.836949 -1.434339 -0.751522 -1.534447 -0.001834 2.774415 -1.721202 0.344917 -1.615694 0.248065 0.958375 0.208491 0.895680 -2.146112 -1.443282 -0.030786 -0.502574 0.723335 -1.201387 0.480884 2.066834 -1.456575 1.364120 1.098950 -0.620947 0.318717 1.913406 -0.648990 2.174040 -0.543412 2.545766 0.322640 2.134837 -1.374855 -0.397169 -0.449893 -0.658639 -1.284518 2.135489 -2.530505 0.006948 1.853859 -0.864946 -1.836290 1.772763 1.108354 1.371236 -0.633782 -0.351453 -1.120390 0.318749 -0.151205 0.697475 1.651193 -0.504133 -2.452257 -0.603076 1.657629 -1.537681 -1.336665 0.985612 0.137052 2.675460 -1.861439 1.306572 0.552751 0.141129 -2.567123 -2.166690 0.651138 -1.603776 -0.999830 1.530828 -2.957229 -1.212741 -1.191565 1.249941 -1.774365 -0.408418 0.054354 2.227089 0.726070 -0.399313 1.248382 0.394734 0.986041 -0.215964 0.007267 0.308000 1.479054 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = -1.379152 1.058953 0.637575 -1.065558 3.649959 -0.541561 0.656508 1.653478 -0.183148 0.881392 -2.760014 -0.113886 -0.189301 -2.357823 0.714074 -0.418406 0.775655 0.903907 -0.738623 -0.190700 0.964420 -0.055269 -0.193248 -1.628359 0.036330 -2.086911 -0.784169 0.104651 0.410822 0.420595 -0.415115 1.039446 2.554723 0.202325 1.616023 1.686006 1.723761 1.984744 0.189460 0.280112 1.197193 1.032388 -0.542247 -2.469910 0.522334 -1.280718 -1.796403 -1.014174 0.441381 -1.925838 0.449854 1.429080 0.393589 -0.160084 -1.279681 0.868256 2.060281 -0.196290 1.731011 1.472334 -1.803579 -0.268348 -0.992314 1.446347 -1.187438 1.405780 0.005528 -2.376376 -1.041428 1.768962 0.763402 -1.297677 -1.623463 -0.230731 0.463238 -0.922760 1.160977 0.133119 0.315586 -1.308507 -1.323101 0.857125 -0.457787 1.950976 0.080084 -0.414591 -0.302433 -0.695939 0.974866 -1.356106 -1.329377 1.910142 -1.130378 0.362097 -1.659320 0.427185 0.799201 -0.075438 -0.570129 -2.303896 0.806985 0.172686 0.094711 -0.024970 -0.598053 -1.449330 0.880351 1.039398 -0.270762 1.680363 -0.213512 0.774054 0.345932 0.408861 -1.167904 0.529473 -2.332741 1.098162 -0.753127 -0.121119 -0.489509 -0.329427 1.300769 0.489823 0.729034 -1.801788 2.058989 1.377253 -0.923938 -0.790510 0.704227 -0.789355 -1.899124 -0.156896 1.175302 0.702958 0.245962 0.226356 0.443998 -0.781794 -0.679356 -1.192731 -1.231052 1.665993 -2.498540 -0.220624 -0.307415 -0.453562 -0.985179 0.887500 0.549285 0.495317 2.094723 1.028971 -1.138099 0.983666 -2.105240 1.024165 3.541781 1.037668 -1.673199 0.907383 -1.069685 0.599486 0.939136 0.420874 0.035245 0.578078 -1.283096 -0.279163 -0.271103 -1.103348 2.079690 1.436437 0.926396 -2.856509 1.332285 -0.739647 -0.371570 3.142038 1.534059 -2.730749 0.878527 2.504854 -1.308887 -0.708906 0.482554 -1.530654 -1.097002 -1.454852 0.749057 0.726088 -2.143566 -1.303930 0.231882 -1.818663 1.592693 0.589936 0.049022 -0.206809 -1.288827 -1.238315 3.578200 0.166854 0.102853 -0.194118 -0.839010 -0.629630 -2.567833 0.137982 0.829992 -1.194481 -0.559365 -1.368605 -0.198520 2.551883 -1.732254 0.482054 -2.058412 0.271929 0.892024 0.195843 0.598064 -2.298779 -1.357670 -0.275665 -0.500206 0.436793 -1.482853 0.516466 1.842144 -1.153512 1.605990 0.716841 -1.221080 0.122160 1.581808 -0.691147 1.909919 -0.261180 2.342166 0.699542 1.908181 -1.731986 -0.617081 -0.654259 -0.753924 -1.475409 1.933329 -2.361119 0.168172 1.586253 -0.750357 -1.778272 1.592219 1.027589 1.065213 -0.756334 -0.316537 -0.920150 0.223532 -0.632538 0.802411 1.404783 -0.862916 -2.149071 -0.347257 1.659606 -1.758133 -1.292816 0.852893 0.260087 2.372812 -1.646948 1.188005 0.689468 0.363969 -2.667468 -2.404223 0.741943 -1.665494 -1.172847 0.727922 -2.861353 -1.392990 -1.014132 1.065381 -2.168389 -0.753491 0.406400 2.135490 0.220904 -0.343602 1.073598 0.328520 0.691401 -0.211716 0.486131 0.101729 1.140446 +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.409655 0.262558 -0.023683 -0.321730 0.865216 -0.031725 -0.076345 0.354343 0.388087 0.311057 -0.779737 -0.401579 -0.158500 -0.644153 0.149643 0.034685 0.118839 0.314266 -0.292629 -0.189806 0.343174 -0.060682 0.067349 -0.472198 0.037781 -0.347603 -0.285435 0.000934 -0.046550 0.251987 -0.308360 0.190561 0.594029 0.183530 0.346061 0.364657 0.310240 0.749546 0.030052 0.569011 0.300231 0.366359 -0.167716 -0.874955 0.391923 -0.520797 -0.309394 -0.451313 0.164055 -0.656111 0.719389 0.379677 0.115996 -0.166454 -0.381056 -0.013866 0.481984 0.355706 0.540455 0.418524 -0.455612 0.051160 -0.350964 0.124371 -0.429290 0.621753 0.249707 -0.759298 -0.428668 0.439478 0.442794 -0.339148 -0.567882 -0.111139 0.027377 -0.171841 0.334766 -0.009232 0.163729 -0.125627 -0.479066 0.188456 -0.224566 0.544776 -0.060276 -0.131167 -0.290560 -0.179103 0.321244 -0.332407 -0.413592 0.446874 -0.151794 0.397383 -0.205061 0.021176 0.093693 -0.050636 -0.189070 -0.272299 0.194356 0.255323 0.069709 0.316643 -0.431560 -0.451773 0.720391 0.456260 -0.178477 0.053860 0.306875 0.033241 -0.016773 0.117240 -0.276717 0.256737 -0.627956 0.182174 0.007309 0.040861 -0.118975 -0.019904 0.214943 -0.175020 0.151826 -0.445971 0.648377 0.348873 -0.365966 -0.167778 0.280632 -0.182330 -0.524149 0.010057 0.348245 0.171922 -0.051166 0.085190 -0.004239 -0.320888 -0.375144 -0.210886 -0.377007 0.398044 -0.355532 -0.062209 -0.144712 -0.321554 -0.202698 0.188464 0.065624 0.107982 0.580995 0.328014 -0.290604 -0.265906 -0.496690 0.381663 1.021170 0.207489 -0.536173 0.111649 -0.070296 0.334364 0.314321 0.009908 0.047806 0.343153 -0.039773 0.089727 -0.418408 -0.303325 0.548278 0.572721 0.487203 -0.699720 0.249276 -0.081867 0.046742 0.917054 0.445237 -0.636813 -0.003179 0.661353 -0.460788 -0.120277 0.057781 -0.086664 -0.081086 -0.402283 0.214873 0.229867 -0.676176 -0.586238 -0.026515 -0.558002 0.551614 0.139862 0.247181 -0.005455 -0.602205 0.007550 0.965132 0.090613 -0.075524 0.001457 -0.205895 -0.246409 -0.688880 0.122981 0.356547 -0.348046 -0.234108 -0.329617 0.012037 0.737115 -0.449575 -0.016535 -0.073142 0.032783 0.221688 -0.221018 0.269821 -0.595747 -0.370910 -0.053996 -0.132843 0.357954 -0.163998 0.018759 0.515344 -0.347681 0.370751 0.673815 0.161451 -0.014491 0.527239 -0.026109 0.498664 -0.259844 0.364497 0.035774 0.575068 -0.271423 -0.065140 -0.122415 -0.054401 -0.242484 0.623088 -0.611678 0.004085 0.481558 -0.362788 -0.291577 0.495220 0.302358 0.482625 -0.171367 -0.075448 -0.282606 0.073648 -0.011862 0.140580 0.448977 -0.075464 -0.669226 -0.250733 0.323025 -0.502416 -0.436726 0.320016 -0.016384 0.744774 -0.438416 0.358731 0.206428 -0.110120 -0.703293 -0.282366 -0.009109 -0.293264 -0.242783 0.363039 -0.741563 -0.330620 -0.272172 0.376038 -0.394033 0.015958 -0.173632 0.491305 0.279647 0.003345 0.360281 0.188029 0.271004 0.044408 -0.155118 0.119504 0.474693 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix*, suffix*, suffix*) = -1.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(suffix*, suffix*) = -0.375745 0.117923 -0.228880 -0.249543 1.121758 -0.107403 -0.033610 0.650706 -0.007987 0.360145 -0.638019 -0.018704 -0.057411 -0.681595 0.220927 0.291145 0.212360 0.237233 -0.268575 -0.247365 0.278758 -0.002962 0.039497 -0.362258 0.003120 -0.515530 -0.113727 0.065216 0.208965 0.137101 -0.503869 0.248272 0.615092 -0.043461 0.299339 0.342148 0.595998 0.471986 0.114581 -0.010163 0.335809 0.266385 -0.157723 -0.674754 0.211006 -0.411789 -0.492141 -0.184185 0.232944 -0.511794 0.339813 0.398375 0.093055 -0.105409 -0.327054 0.284208 0.413982 -0.075898 0.528006 0.381559 -0.516257 -0.382743 -0.265009 0.647513 -0.380695 0.417739 0.004212 -0.714175 -0.431991 0.534406 0.105248 -0.293631 -0.382646 -0.058893 0.114125 -0.258889 0.324927 0.057990 0.531048 -0.305533 -0.449638 0.230788 -0.310756 0.555608 0.021303 -0.074717 -0.123427 -0.183642 0.260774 -0.400645 -0.310064 0.464064 -0.330478 0.262421 -0.450442 0.006311 0.140797 -0.072580 -0.125133 -0.527644 0.167397 0.144742 0.080236 -0.151646 0.059114 -0.381162 0.384312 0.238233 0.092176 0.354420 0.085538 -0.029586 -0.070832 0.156206 -0.094851 -0.007908 -0.643415 0.245462 -0.053918 0.049209 -0.261169 -0.048810 0.554927 -0.015715 0.243160 -0.561552 0.580349 0.292652 -0.220700 -0.204062 0.211663 -0.134890 -0.471036 0.028523 0.383225 0.032884 -0.026722 0.087959 0.279704 -0.140335 -0.603400 -0.129541 -0.391496 0.382918 -0.741538 -0.014901 -0.118346 -0.195711 -0.180761 0.227019 0.168762 0.214492 0.579536 0.336520 -0.287599 0.287922 -0.630096 0.449715 0.995948 0.242066 -0.492020 0.223825 -0.442911 0.241361 0.250978 0.114318 0.040103 0.323416 -0.096481 0.164022 -0.017737 -0.133241 0.603502 0.310628 0.409642 -0.691058 0.097941 -0.230477 0.077171 0.826246 0.433750 -0.838770 0.381615 0.690179 -0.247584 0.015769 0.092377 -0.405344 -0.214985 -0.503335 0.265574 0.395594 -0.695697 -0.362499 0.053929 -0.452386 0.496402 0.121802 0.031327 0.090216 -0.449120 0.178264 0.897670 0.112037 0.051483 -0.108178 -0.315445 -0.496855 -0.680456 0.052547 0.252446 -0.349801 -0.140275 -0.406238 -0.257041 0.822102 -0.317025 0.101438 -0.759733 0.320658 0.271674 0.085921 0.211632 -0.454194 -0.314016 -0.031787 -0.226422 0.181620 -0.509311 0.030598 0.346859 -0.411110 0.530893 0.243425 -0.078469 0.027933 0.361794 -0.120961 0.528982 0.040713 0.486589 0.158452 0.544131 -0.424239 0.003775 -0.266404 -0.152894 -0.334102 0.518816 -0.669967 -0.051536 0.530619 -0.233945 -0.567071 0.362636 0.356244 0.468802 -0.168473 -0.275074 -0.147776 -0.010256 -0.236975 0.272207 0.379026 -0.321660 -0.531045 -0.088568 0.401818 -0.551126 -0.336701 0.306540 0.085658 0.719356 -0.475074 0.305439 0.227313 0.189035 -0.769125 -0.519877 -0.008252 -0.165573 -0.230283 0.309463 -0.894752 -0.443313 -0.250771 0.348556 -0.666364 -0.056191 -0.051496 0.585565 0.008091 0.010547 0.413733 0.172338 0.090973 -0.060263 0.075171 0.103833 0.239513 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = -1.521391 1.025484 0.980203 -1.047314 3.221951 0.301218 0.636184 1.697302 -0.000283 1.034547 -2.849992 -1.002025 -0.748409 -1.961067 0.409413 -1.047276 0.212409 0.590168 -1.239044 -0.330236 1.342081 -0.069902 -0.021564 -1.745515 0.183727 -1.241938 -1.049250 -0.250839 0.440340 1.425716 -0.578053 0.409057 2.162989 0.505608 1.442400 1.379223 1.430820 2.432794 -0.755508 1.753504 0.569617 1.647372 -0.865673 -2.777350 0.935815 -2.057623 -1.423303 -1.166513 0.524687 -2.488051 1.267084 1.443665 0.278893 -0.273797 -0.634258 0.564326 1.707912 0.618536 1.883019 1.455660 -1.936684 -0.306295 -1.603739 0.744870 -0.813354 2.614349 0.622187 -2.521057 -1.353778 0.890293 0.909656 -1.104342 -1.612674 0.119542 0.439263 -0.609780 1.275867 -0.243121 -0.660854 -0.373801 -1.474797 0.427829 -0.430878 1.898347 -0.335665 -0.603062 -0.374945 -0.532823 0.905109 -1.566471 -1.351987 2.427328 -0.835718 0.833779 -2.338485 -0.264743 0.030679 0.550752 -1.051274 -1.122211 0.809008 1.210643 0.156253 -0.575615 -1.790151 -2.005188 1.911757 1.622466 -0.474366 0.859674 0.064750 0.411056 0.185573 0.818163 -1.349952 1.759239 -1.872787 0.791880 -0.618516 0.387940 -0.283065 -0.000206 0.767752 -0.118101 0.759400 -1.566502 1.927228 1.225185 -1.646184 -1.070796 0.834598 -1.437921 -2.120587 -0.090936 1.105974 0.894286 -0.173691 -0.247507 0.142924 -1.164779 -0.866898 -1.360665 -1.034051 0.838726 -1.728717 -0.533207 -0.530591 -0.628168 -1.000190 1.270466 0.425273 0.385875 2.048460 1.135754 -0.804513 -0.297309 -1.579488 1.067525 3.475045 0.997471 -2.047476 0.451710 -0.718667 1.122863 1.037862 -0.150063 0.282233 1.860830 -0.872718 -0.015094 -1.160946 -1.156043 2.162075 2.788064 1.447281 -2.550745 1.273118 -1.772426 -0.615776 2.633984 2.397338 -2.344736 -0.062853 1.750288 -1.553489 -0.676521 0.302025 -0.828811 -0.502465 -1.340275 0.416229 0.653300 -2.062840 -1.796676 0.372528 -2.171776 2.244876 0.522282 1.180561 -0.309259 -2.022717 -1.285337 3.173704 0.182372 -0.616532 -0.236323 -0.412986 -1.416383 -2.300543 0.611366 1.083258 -0.995407 -1.524967 -1.381117 0.233478 2.161055 -1.543746 0.409369 -0.468348 -0.382162 0.606944 -0.759191 1.670910 -2.367177 -1.590415 -1.140599 -0.564168 1.709617 -0.882769 0.308759 2.371052 -1.023447 1.921150 1.452481 -0.713914 -0.621879 1.919914 -0.410318 1.709812 -0.614588 1.529218 -0.147655 2.120139 -1.326923 -0.500948 -0.318650 -0.444801 -0.651475 2.357708 -1.791176 0.265363 0.936165 -1.836335 -0.677016 1.702219 0.405028 1.035633 -0.517340 0.170324 -1.536933 0.025486 -0.623676 0.146621 1.865373 -0.711355 -2.357454 -0.878577 0.424452 -1.783986 -1.268946 0.980430 -0.098623 2.407070 -1.558734 0.713551 0.611217 -0.766755 -2.659922 -1.447256 -0.302080 -1.511680 -1.636698 1.270391 -1.948191 -0.594058 -1.244717 0.767356 -1.945078 -1.461496 -0.106563 1.955898 0.882582 -0.067621 1.169931 0.642563 1.649050 0.209419 -0.044024 0.499270 1.348079 +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.554151 0.561663 -0.150730 -0.490486 1.302344 -0.096803 0.064489 0.617306 -0.125577 0.469304 -1.051734 0.004184 -0.030339 -1.084588 0.234027 0.213694 0.187346 0.401966 -0.169484 0.028276 0.426732 -0.358628 0.045311 -0.666103 -0.007435 -0.728655 -0.128633 0.029812 0.242993 0.224340 -0.309607 0.246137 0.799806 0.164556 0.464840 0.585322 0.415527 0.863127 0.329283 0.040631 0.300724 0.432889 -0.218757 -1.112351 0.382285 -0.575372 -0.507891 -0.553972 0.190239 -0.821241 0.529501 0.584749 0.107843 -0.254911 -0.720091 0.160829 0.918450 0.048863 0.771957 0.509380 -0.480439 -0.311981 -0.336008 0.378886 -0.521265 0.392420 0.370678 -0.805046 -0.228886 0.653559 0.315298 -0.396579 -0.595006 -0.065156 0.112154 -0.421922 0.384969 -0.079517 -0.115764 -0.468375 -0.489209 0.272631 -0.295050 0.856839 0.033372 -0.085675 -0.284300 -0.176218 0.410035 -0.550304 -0.501695 0.624478 -0.199779 0.249470 -0.365341 0.534636 0.348836 -0.139644 -0.289175 -0.504791 0.292718 0.240590 0.123402 -0.046261 -0.339158 -0.727701 0.636161 0.370545 -0.174661 0.487142 0.299718 0.177623 0.026864 0.218776 -0.459263 0.176075 -0.965532 0.214619 0.056262 0.057179 -0.199002 -0.101966 0.440733 -0.112001 0.275200 -0.758974 0.896726 0.559675 -0.244069 -0.448609 0.337440 -0.233414 -0.603706 -0.009766 0.427826 0.154078 0.041200 0.132793 0.085603 -0.285564 -0.665794 -0.434944 -0.407708 1.056978 -0.941429 0.014376 -0.162954 -0.281938 -0.263648 0.197463 0.161715 0.167861 0.835331 0.462330 -0.347534 0.366090 -0.689035 0.485563 1.485364 0.654780 -0.699726 0.288343 -0.275993 0.240858 0.321068 0.067704 0.165523 0.284537 -0.525122 -0.184505 0.022886 -0.465251 0.760608 0.487593 0.551867 -0.979696 0.724671 0.097334 -0.030551 1.212777 0.474936 -0.916293 0.404252 0.962049 -0.631367 -0.023807 0.142165 -0.320435 -0.205173 -0.481416 0.266048 0.285038 -0.878322 -0.752879 -0.284081 -0.727787 0.757183 0.219068 0.267475 -0.046405 -0.537761 0.084000 1.233664 0.126990 -0.116580 -0.108479 -0.311840 -0.631613 -0.943802 0.120522 0.379582 -0.580028 -0.276617 -0.548661 -0.210909 0.967070 -0.605264 -0.043144 -0.755682 0.120050 0.353165 0.163895 0.215299 -0.830568 -0.476489 0.070638 -0.045371 0.320577 -0.322098 0.368465 0.737057 -0.499874 0.522833 0.517355 0.247918 0.278757 0.713905 -0.216050 0.738605 -0.204586 0.935855 0.182097 0.751671 -0.491236 -0.076844 -0.191405 -0.221911 -0.327661 0.711008 -0.892905 -0.039527 0.753149 -0.279901 -0.662142 0.621420 0.427023 0.645314 -0.241219 -0.167913 -0.186900 0.021474 -0.232488 0.239679 0.569950 -0.244195 -0.809542 -0.256527 0.619006 -0.454217 -0.380060 0.403308 0.133232 0.916447 -0.660797 0.583871 0.128578 0.033439 -0.940611 -0.736187 0.310932 -0.345082 -0.436007 0.549972 -1.276042 -0.402882 -0.402008 0.458173 -0.990897 0.065923 -0.176601 0.755345 0.058315 -0.000484 0.474792 0.107474 0.282633 -0.066539 0.117588 0.050829 0.592052 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -0.977519 1.292036 1.594512 -1.110618 1.432357 -0.195587 0.141593 1.088987 0.634275 0.498994 -2.253757 -0.628835 -0.309564 -1.487730 0.232489 -1.327825 0.205042 0.610617 -0.456080 0.624801 0.854545 -0.379892 -0.208793 -1.438177 -0.079321 -0.693497 -0.581067 -0.112994 -0.320750 0.641583 0.758615 0.554392 1.806176 1.004629 1.749186 1.174309 0.467125 2.233999 0.215069 1.708551 0.375849 0.948640 -0.301999 -2.020645 0.718428 -1.070903 -0.420671 -1.062982 -0.099213 -1.590748 1.724696 0.993018 0.261769 -0.231262 -1.113494 -0.143456 1.112953 0.781464 1.258377 1.011489 -1.441675 0.385448 -1.145090 -0.167203 -0.865763 1.364593 0.813430 -1.033659 0.016355 0.692011 1.351857 -0.789497 -1.354032 -0.000846 0.074522 -0.539550 1.040417 -0.249846 -1.113394 -0.133662 -0.686576 0.687839 0.285144 1.191425 -0.251358 -0.094597 -0.825258 -0.165130 0.427940 -1.040898 -0.827250 1.096603 -0.829283 0.329043 -1.114661 0.947279 0.001274 0.207633 -0.746608 -0.812300 0.987460 0.346334 0.028143 0.268486 -1.609719 -1.516009 1.954352 1.368251 -0.962635 0.658642 0.518395 1.402081 0.920883 0.542619 -1.154044 1.366304 -1.675582 0.252128 -0.071466 -0.163387 0.016268 -0.051038 -0.397766 0.253044 0.380573 -1.073700 1.594693 1.291972 -0.951117 -0.460746 0.551236 -0.961083 -1.338742 -0.520877 0.779753 1.036374 0.173903 -0.019098 -0.619883 -0.886147 0.000676 -1.834024 -0.507240 1.254498 -0.609482 -0.325385 -0.210402 -0.421350 -0.803118 0.707305 0.307694 -0.070349 1.133610 0.323004 -0.523159 -1.131510 -0.883341 0.167985 2.237596 0.454752 -1.512154 0.786017 -0.038430 0.363811 0.535725 0.140466 0.370561 0.256209 -1.286830 -1.206052 -0.665864 -1.146174 1.273918 1.442723 0.506045 -1.847441 1.806577 -0.447085 -0.725697 2.476368 0.948100 -1.005050 -1.356198 1.401239 -1.508259 -0.918742 0.373328 -0.216184 -0.108685 -0.442790 0.224658 -0.042774 -1.149562 -1.421949 0.002439 -1.712983 1.409766 0.384502 0.963080 -1.069243 -1.266738 -1.594262 2.737997 -0.126606 -0.576612 0.162608 -0.320552 0.201239 -1.816381 0.128838 0.892010 -0.358431 -0.651285 -0.710727 0.557810 0.978732 -1.581672 -0.098339 0.127961 -1.249108 0.564627 -1.145044 0.324479 -1.724381 -1.143740 -0.419793 0.073843 1.128127 -0.094842 0.846040 2.103001 -0.250278 1.349814 1.821090 -0.360718 -0.091221 1.645331 -0.584197 1.543589 -1.355010 0.875173 0.107276 1.304240 -1.067387 -0.869473 -0.029874 -0.283909 -0.708883 1.314160 -1.106776 0.377245 -0.000700 -0.999661 -0.204635 1.318662 0.261866 0.392838 -0.317344 0.721981 -0.762773 -0.177285 -0.538201 0.319194 1.086201 -0.057473 -1.415877 -0.376303 0.789867 -0.665186 -0.500573 0.464038 -0.020654 1.738487 -1.160225 0.773753 0.420691 -0.778511 -1.511550 -1.126006 0.460533 -1.598227 -0.870573 0.321499 -1.637552 -0.520013 -0.717660 0.701322 -0.725998 -0.160299 0.232414 1.507513 0.926415 -0.851567 0.483321 -0.096374 1.183368 0.532498 -0.049311 -0.055234 1.414153 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.365551 0.157108 -0.244343 -0.272073 1.168030 -0.060980 -0.061861 0.636332 -0.012496 0.418680 -0.633850 0.001202 -0.014756 -0.669966 0.197524 0.306753 0.183347 0.220383 -0.256909 -0.239747 0.227393 -0.020928 0.087006 -0.319296 -0.043506 -0.556826 -0.129345 0.107180 0.215707 0.104597 -0.483134 0.206824 0.609159 -0.079139 0.289099 0.319882 0.560119 0.433378 0.163304 -0.035946 0.370946 0.200124 -0.162867 -0.638408 0.181325 -0.398387 -0.550441 -0.202023 0.231698 -0.542900 0.322497 0.399459 0.081409 -0.133775 -0.340212 0.311218 0.395823 -0.120397 0.556269 0.333916 -0.542736 -0.406207 -0.262426 0.683811 -0.376175 0.380885 -0.044000 -0.745788 -0.426505 0.582810 0.084433 -0.278866 -0.379468 -0.026584 0.135713 -0.292111 0.282004 0.028032 0.503494 -0.329951 -0.398579 0.275072 -0.305047 0.536527 0.072657 -0.029136 -0.107503 -0.150671 0.214701 -0.436014 -0.277857 0.488127 -0.315604 0.247740 -0.408986 0.036697 0.152288 -0.110406 -0.112022 -0.510883 0.150632 0.132101 0.081481 -0.188105 0.105868 -0.434301 0.364654 0.255580 0.121799 0.330752 0.092810 -0.033533 -0.033463 0.188653 -0.139632 -0.034321 -0.641930 0.241247 -0.046157 0.020898 -0.315825 -0.038245 0.532277 0.039878 0.287105 -0.593644 0.591181 0.267772 -0.233427 -0.234284 0.171484 -0.095116 -0.429167 0.074666 0.340565 -0.017085 -0.001408 0.085635 0.260674 -0.137334 -0.628697 -0.110665 -0.340031 0.434667 -0.739667 0.028381 -0.076647 -0.167713 -0.168273 0.257427 0.234336 0.232736 0.617660 0.327088 -0.251900 0.308250 -0.655373 0.459859 0.999452 0.260503 -0.487734 0.279401 -0.471425 0.201940 0.225463 0.142280 0.039478 0.301553 -0.129700 0.119160 0.004619 -0.086663 0.612813 0.293715 0.392241 -0.669092 0.119505 -0.209965 0.126710 0.819279 0.419205 -0.831833 0.395375 0.716055 -0.275726 0.040006 0.141009 -0.444635 -0.239270 -0.473910 0.231939 0.419538 -0.661349 -0.364142 0.031353 -0.440026 0.528299 0.111462 -0.014623 0.105176 -0.416418 0.184465 0.875497 0.121505 0.079410 -0.086854 -0.327858 -0.497441 -0.682064 0.013523 0.300160 -0.390984 -0.097761 -0.418235 -0.274403 0.783885 -0.284022 0.142764 -0.800338 0.342976 0.300700 0.111446 0.176401 -0.432339 -0.261561 -0.014934 -0.249348 0.132284 -0.530161 0.085023 0.294936 -0.394194 0.567012 0.202439 -0.071881 0.061529 0.313624 -0.130753 0.567594 0.056797 0.500344 0.193612 0.529125 -0.373853 0.055931 -0.284131 -0.199127 -0.332005 0.512835 -0.705558 -0.097852 0.563240 -0.207152 -0.619130 0.324260 0.391004 0.453350 -0.162644 -0.296669 -0.142344 -0.038833 -0.238642 0.300882 0.327391 -0.346325 -0.514471 -0.039828 0.444564 -0.524319 -0.350487 0.292097 0.128860 0.684143 -0.496041 0.319389 0.222717 0.235442 -0.808176 -0.500904 0.010598 -0.161759 -0.224383 0.268885 -0.942142 -0.479895 -0.254111 0.321912 -0.639768 -0.035285 -0.002084 0.639693 -0.012102 -0.034677 0.395344 0.137879 0.044060 -0.071768 0.092367 0.119031 0.216439 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.250932 -0.075804 -0.609462 -0.113942 0.696487 -0.024896 -0.231288 0.340430 0.131427 0.302296 -0.331651 -0.186911 -0.072375 -0.496844 0.118012 0.608423 0.205494 0.155248 -0.179929 -0.237169 0.179615 -0.120246 0.150149 -0.164554 0.018233 -0.149104 -0.068588 0.083890 0.204701 -0.090028 -0.622483 0.094632 0.380667 -0.008968 0.136099 0.114418 0.307561 0.323714 0.215847 -0.187508 0.164422 0.208303 -0.123835 -0.462903 0.241551 -0.332092 -0.242591 -0.147115 0.231323 -0.192520 0.501135 0.264618 0.017387 -0.110529 -0.317089 0.040519 0.291327 0.053584 0.456998 0.176407 -0.220678 -0.277252 -0.094942 0.387692 -0.320398 0.201364 0.046552 -0.475795 -0.328591 0.312885 0.156941 -0.294352 -0.347364 -0.001396 0.046743 -0.179172 0.215683 0.050234 0.704461 -0.365729 -0.455175 0.105104 -0.418153 0.390769 -0.006345 -0.008301 -0.168193 -0.094130 0.166237 -0.304742 -0.109760 0.101459 -0.180544 0.339462 0.040806 0.065874 -0.043047 -0.085203 -0.189943 -0.210864 0.020217 0.088598 0.096392 0.095897 0.313454 -0.173498 0.380245 0.057265 0.162558 0.054240 0.528470 -0.185989 -0.044758 0.154267 0.005539 -0.286177 -0.374993 0.053252 0.126468 0.048113 -0.204497 0.086302 0.411940 -0.229344 0.232863 -0.460819 0.354377 0.156914 -0.100449 -0.129204 0.125893 -0.053344 -0.268814 0.081368 0.284904 -0.135708 -0.049506 0.028170 0.195439 -0.054242 -0.728000 0.220660 -0.258464 0.325491 -0.439850 0.036124 -0.092913 -0.277343 -0.005333 0.098758 0.102573 0.204607 0.389048 0.263891 -0.280582 0.122429 -0.427934 0.417063 0.692936 0.089411 -0.373787 0.119482 -0.295861 0.223717 0.228793 0.122159 0.154043 0.040065 0.183830 0.302879 0.075593 0.069214 0.391293 -0.042307 0.442064 -0.324816 -0.054310 0.177682 0.198415 0.635156 0.049091 -0.543292 0.351282 0.428483 -0.064876 0.257820 0.023007 -0.157930 -0.058118 -0.444183 0.242392 0.349514 -0.512927 -0.247184 -0.045413 -0.290029 0.386674 0.049776 -0.042545 0.237066 -0.411446 0.587154 0.583211 0.112007 0.064211 -0.092553 -0.288913 -0.339234 -0.437976 0.050028 0.092427 -0.269942 0.011493 -0.297674 -0.239144 0.645757 -0.025325 0.028268 -0.582400 0.393041 0.188237 0.065053 0.105346 -0.157937 -0.168551 0.178447 -0.171265 0.123782 -0.332141 -0.033433 0.095445 -0.375961 0.198947 0.278253 0.370452 0.133249 0.139179 -0.049530 0.353827 0.012202 0.322055 0.031231 0.372559 -0.161126 0.142689 -0.187431 0.086329 -0.175367 0.290815 -0.446459 -0.123289 0.490597 -0.079129 -0.495263 0.137173 0.240648 0.447940 -0.048429 -0.410645 -0.014404 0.008967 -0.008672 0.240788 0.232682 -0.136858 -0.307545 -0.070911 0.231899 -0.219294 -0.093338 0.234305 0.011539 0.510009 -0.338196 0.145343 0.124950 0.229416 -0.340094 -0.230186 -0.096076 0.139367 0.066026 0.464832 -0.693038 -0.286083 -0.160427 0.213697 -0.327922 0.339560 -0.220310 0.388087 0.066933 -0.018715 0.313443 0.157342 -0.023472 -0.079398 -0.057430 0.101726 0.155117 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -1.216534 0.645730 -0.373138 -0.847179 3.140829 0.127520 0.331092 1.273743 -0.617931 1.157525 -2.133678 -0.326815 -0.349448 -2.076986 0.383196 0.225729 0.559360 0.344079 -0.732883 -0.139726 0.789815 -0.613409 0.294137 -1.149792 -0.030540 -1.495036 -0.535017 0.169885 1.078312 0.292579 -0.900734 0.278386 1.962017 -0.003068 1.016887 0.972612 1.180121 1.559728 0.208160 -0.670315 0.616797 1.061168 -0.668033 -1.955276 0.429043 -1.421647 -1.577080 -0.757107 0.672471 -1.528175 0.188352 1.279749 0.116342 -0.357645 -1.164612 0.782050 1.870937 -0.236345 1.897633 0.848194 -1.191943 -1.006231 -0.881707 1.299367 -0.898719 0.998170 -0.032607 -1.909907 -0.876992 1.187191 -0.002795 -0.872434 -1.262539 0.196696 0.688179 -0.938636 0.868851 -0.114076 0.149099 -1.387491 -1.197133 0.483919 -0.826863 1.749551 0.034405 -0.149778 0.155716 -0.343067 0.635835 -1.537139 -0.781277 1.573306 -0.782228 0.301892 -1.034045 0.686702 0.257844 -0.009579 -1.004635 -1.303797 0.380033 0.407254 0.215489 -0.912626 0.089130 -1.560061 0.861217 0.660876 0.247749 1.203056 0.662851 0.179797 0.222137 0.787502 -1.215855 0.104445 -1.695798 0.491575 -0.362207 0.113826 -0.655039 0.132398 1.178558 0.103518 1.038508 -1.919993 1.653499 0.997596 -0.765577 -1.034556 0.435941 -0.746613 -1.436340 0.196328 0.893093 0.071843 0.137605 -0.132517 0.531897 -0.489928 -1.486337 -0.178226 -0.679483 1.605490 -2.246815 -0.053548 -0.235870 -0.473549 -0.525161 0.905022 0.640342 0.548274 1.890726 0.985591 -0.951916 1.245884 -1.695174 1.240960 3.172316 0.830405 -1.630699 0.758956 -1.238737 0.611693 0.786929 0.312620 0.552106 0.633139 -0.879592 0.004574 0.243361 -0.472425 1.876503 0.941751 1.165847 -2.089038 1.197384 -0.513066 0.061038 2.350857 1.205113 -2.289310 1.189246 1.814310 -1.295479 0.147067 0.387828 -1.161430 -0.598310 -1.489186 0.551652 0.942276 -1.715761 -1.147601 -0.180901 -1.571977 1.826159 0.359769 0.099386 0.245911 -1.196988 -0.194193 2.578527 0.223743 -0.032305 -0.409485 -0.795520 -1.497147 -2.122910 0.204369 0.482657 -1.287008 -0.540780 -1.411150 -0.469272 2.071205 -0.818609 0.520109 -2.334485 0.670174 0.761754 0.628298 0.807212 -1.225528 -1.018346 -0.045870 -0.659800 0.612657 -1.408050 0.623696 1.266639 -1.164770 1.520789 0.033872 -0.399321 0.358932 1.061558 -0.614547 1.701495 -0.034867 2.132560 0.208228 1.675847 -1.047413 0.028612 -0.536622 -0.697363 -0.834338 1.524840 -1.960758 -0.178994 1.533479 -0.686265 -1.759470 1.003142 0.674527 1.160963 -0.364414 -0.602908 -0.790806 0.006384 -0.436984 0.645273 1.168401 -0.764340 -1.647009 -0.324630 1.047263 -0.935315 -0.807837 0.734227 0.205705 1.855995 -1.509140 0.668925 0.355688 0.396443 -1.946874 -1.785810 0.238840 -0.757073 -0.866555 1.477888 -2.515839 -0.760442 -0.987726 0.604745 -1.874228 -0.350754 0.032250 1.966009 0.138939 -0.354476 1.011325 0.337948 0.614776 -0.310106 0.394483 0.346781 0.686302 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -4.804579 6.050570 2.447697 -4.869505 12.188239 0.660662 2.381873 5.621904 -2.323821 3.522683 -10.742778 0.359720 0.332284 -7.904868 1.776575 -1.143907 0.482583 2.377660 -2.389281 0.586371 3.444508 -1.632966 -0.252137 -6.451705 -0.277889 -5.434495 -2.719020 -0.142720 1.641883 2.783040 -0.972313 1.597415 7.073281 1.215805 4.836246 5.269782 4.656477 7.498011 0.470842 2.534888 3.296074 3.697393 -2.335101 -9.037354 2.571878 -5.758283 -5.536182 -4.494570 0.755595 -8.092750 4.656081 5.090107 1.210211 -2.116595 -4.492500 2.517861 7.704639 -0.954021 6.410033 4.762541 -6.441883 -1.449237 -3.978328 3.855986 -3.111043 6.625594 2.621057 -7.616229 -2.783700 5.324362 4.516173 -4.816632 -6.406702 -0.118940 0.928163 -3.302696 3.704388 -1.461260 -2.062058 -3.841410 -3.296277 3.095249 -1.220288 6.876846 0.372461 -1.213021 -2.596251 -1.527651 3.024693 -5.117750 -5.178865 7.453737 -2.573901 1.917618 -7.360680 2.409134 1.695927 0.113166 -3.181121 -5.360667 3.347101 3.307163 0.313652 -2.002524 -3.884214 -7.620366 5.095909 5.469477 -2.359885 4.437259 0.188906 2.981847 1.628787 2.234575 -4.516905 3.745420 -7.723866 2.046596 -0.633878 0.381768 -1.790207 -1.124956 2.721637 0.579955 2.494535 -5.827802 7.807147 4.802292 -4.780411 -3.993354 2.454434 -3.411945 -6.525632 0.117123 2.649931 2.955301 0.641611 0.674480 -0.029797 -3.672395 -3.938942 -6.708148 -2.898098 7.415552 -8.097745 -0.856442 -0.848856 -1.075127 -3.597393 3.875722 2.394520 0.867315 7.424183 3.339862 -1.997777 2.049654 -5.652893 3.640543 12.640066 6.355768 -6.687963 2.833705 -3.147472 2.298401 2.814378 0.135969 0.227893 3.377332 -6.285460 -2.668603 -0.471812 -5.023844 7.135904 6.700346 3.983964 -9.303239 7.002137 -2.586120 -1.775253 10.367200 6.003674 -7.889078 1.113768 8.092705 -4.115337 -1.741391 2.064181 -4.043229 -3.506023 -2.993764 1.205323 1.374318 -6.549152 -6.761462 -0.977591 -6.949304 7.527557 2.276208 2.206102 -2.209049 -4.527220 -3.520819 11.260677 0.401760 -1.669216 -0.050763 -1.253774 -3.378469 -8.222618 0.973572 4.837518 -4.348246 -3.856771 -4.813079 0.002348 7.251632 -6.822680 0.498481 -4.726043 -1.339305 2.738721 -0.775699 3.162682 -9.503877 -4.617500 -2.249826 -0.265660 3.429608 -3.551527 3.474402 7.937345 -3.362625 6.045000 5.055568 -0.878915 -0.087397 6.866254 -1.515206 6.637419 -1.916059 8.154607 1.237288 7.036018 -4.981779 -1.781484 -1.697060 -1.828472 -2.906130 7.257580 -7.514640 0.495815 4.253747 -3.548007 -4.686515 6.384603 2.784729 3.356347 -2.564233 -0.341004 -2.341829 -0.495751 -2.761248 1.377406 5.177180 -3.614988 -7.718461 -2.458623 4.572735 -5.143489 -2.379053 3.146337 1.260107 8.205055 -5.668875 4.702254 1.439785 -0.862367 -10.319511 -6.758386 2.083941 -5.119926 -5.074714 3.343817 -9.430389 -3.945801 -4.078972 3.027363 -7.994491 -2.848465 0.588916 7.223941 1.289648 -0.962575 3.440176 0.753444 4.169603 0.028565 1.426680 0.743438 4.436363 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.742060 0.385899 0.615701 -0.539558 3.814070 0.311613 0.587061 2.320660 -0.255659 1.714898 -2.712511 -1.491171 -0.664762 -1.185560 0.045531 -0.827794 0.700320 0.154242 -1.561148 -0.349974 0.862456 0.412252 0.016697 -1.118715 -0.317873 -0.654251 -1.628844 0.174857 1.410749 -0.333582 -1.352367 0.154688 3.564433 -0.179113 3.206505 1.616460 1.599174 1.759200 -0.448952 0.026178 0.515493 1.783262 -1.473523 -1.679751 -0.497229 -2.158267 -2.038292 -0.356310 0.768700 -1.230412 0.942961 1.334140 0.046001 0.897741 -0.182572 1.426308 0.954053 0.211929 2.959072 0.740083 -2.799416 0.418422 -1.766202 2.677035 -0.545983 2.354060 -1.561273 -2.977796 -1.239143 0.252295 0.706560 -2.487362 -1.530747 1.514043 0.701458 -1.246325 1.560251 -0.195706 1.123389 -2.233931 -1.957961 0.819505 -0.812394 1.519592 -0.311349 -0.178383 -0.546951 0.134897 -0.042707 -2.880894 -0.468166 2.584330 -2.436768 0.541189 -1.922282 -0.621569 -0.605634 1.533204 -1.368851 -2.017765 0.546006 0.387585 -0.011527 -1.423473 1.569355 -1.346907 0.695584 0.923286 0.553658 1.401271 0.577176 1.253522 2.282066 2.058709 -1.131536 0.290896 -1.523734 1.060110 -2.131842 -0.128103 -0.476237 0.948448 1.126101 1.025922 2.336071 -2.492989 1.034483 0.728947 -1.604000 -1.567713 0.002147 -2.297418 -2.532962 -0.241447 0.976429 0.770969 0.251522 -1.693038 0.508810 -0.815993 -1.076315 -0.428566 -0.117441 -0.251838 -2.123938 -0.726895 -0.043035 -0.061630 -1.194180 2.619747 1.535861 1.134575 2.445120 1.102469 -1.112678 -0.578558 -2.576625 0.658538 3.072148 -0.823818 -2.457853 1.680543 -2.196991 0.451168 1.633614 1.112474 0.751859 0.752670 -0.810264 -0.182984 -0.322220 0.259462 2.905392 1.416551 0.903976 -1.458961 1.182348 -2.393612 -1.483211 3.365896 1.807434 -3.237495 0.071907 1.114909 -0.521751 -0.313490 1.224596 -2.429390 -0.915885 -2.046220 0.042722 1.136436 -1.474832 -0.306894 1.945386 -2.451215 3.023600 0.208789 -0.575478 0.106130 -2.409950 -1.295191 4.001024 0.452623 0.073347 -0.403346 -0.849088 -0.784296 -2.774797 -0.000994 0.325949 -0.758214 -0.849427 -2.114888 0.672672 1.956108 -0.653840 1.990772 -1.970343 -0.319651 0.818143 -0.863967 1.564781 -1.732047 -1.386498 -1.567929 -1.404396 1.351586 -2.636652 0.951997 2.644714 -0.754993 2.492773 0.786326 -2.355021 -0.873369 0.880306 -1.839944 2.357670 -0.295664 1.045322 0.115034 1.887226 -1.735557 -0.679091 -0.756227 0.245871 -1.346652 1.959293 -1.618514 0.105069 0.061689 -2.068894 -1.224053 0.526430 -0.133644 0.073965 -0.090761 -0.539971 -2.767690 -0.272287 -1.481188 0.480341 1.546895 -0.865342 -2.194527 0.793113 -0.203743 -1.355030 -0.418208 0.070795 -0.231271 2.089672 -2.138817 -0.902718 1.075510 0.549966 -2.445896 -2.177135 -1.305331 -1.917341 -1.165925 1.070610 -1.759165 -1.160436 -1.386663 -0.506676 -1.606194 -1.892905 1.533798 3.545971 1.399482 -1.942619 0.693064 0.071507 1.986003 0.487899 0.423916 0.116133 0.553956 +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.605990 0.858872 0.821610 -0.683191 1.461930 0.381386 0.082120 0.904751 -0.481950 0.702219 -1.372627 0.159521 0.022732 -0.798650 0.202064 -0.301267 -0.158780 -0.093814 -0.323834 0.137842 0.371499 -0.268684 0.008523 -0.720685 -0.218199 -0.879914 -0.312396 0.066387 0.705845 0.204079 -0.023976 -0.026816 0.998817 -0.134469 0.714572 0.485385 0.985498 0.844486 0.013924 -0.087651 0.291104 0.560825 -0.499614 -0.766627 0.154222 -0.822414 -0.587599 -0.131094 0.204728 -0.676622 0.464559 0.674643 0.045031 -0.400120 -0.516715 0.797499 0.589653 -0.440238 1.064448 0.384273 -0.816583 -0.722292 -0.881845 1.270127 -0.556548 1.052796 -0.293120 -0.717462 -0.316329 0.430115 0.168899 -0.234797 -0.688543 0.368807 0.202803 -0.640595 0.535260 -0.385115 0.033218 -0.552807 -0.452439 0.623519 -0.043616 0.850407 0.034695 0.034292 -0.077143 0.172091 0.112988 -0.971727 -0.475236 0.868883 -0.752830 -0.037736 -0.982655 0.282429 -0.187321 0.164056 -0.369204 -0.582813 0.523448 0.409903 0.100527 -1.188380 0.475209 -1.243858 0.702454 0.768648 -0.027259 0.639039 0.166215 0.615922 0.502950 0.660767 -0.454234 0.041955 -0.919888 -0.058115 0.128936 0.036791 -0.462898 0.218536 0.094538 0.328253 0.708265 -1.041256 0.914716 0.411748 -0.733242 -0.342167 0.102431 -0.546751 -0.849275 -0.049928 0.287429 0.390369 -0.038212 -0.100777 0.147312 -0.266524 -0.753431 -0.902099 -0.062220 0.734241 -1.233238 -0.153801 -0.066968 -0.035024 -0.424629 0.883988 0.609352 0.262721 0.801316 0.434648 -0.062032 0.275342 -0.785571 0.469531 1.375052 0.259308 -1.082099 0.698455 -1.110124 0.095491 0.392425 0.210277 0.193480 0.654585 -0.951371 -0.700296 0.312713 -0.395595 1.131254 0.590727 0.324236 -1.087356 1.000932 -0.760515 -0.394476 1.305939 0.659801 -0.976428 -0.169348 0.848440 -0.633473 -0.225235 0.428816 -0.794815 -0.300214 -0.502755 -0.071191 0.486039 -0.600608 -0.707497 -0.017745 -0.995955 1.348376 0.171899 0.228491 -0.234735 -0.508359 -0.905166 1.279040 -0.024734 -0.290413 -0.362524 -0.206202 -0.565013 -1.114372 0.121181 0.615172 -0.456647 -0.599747 -0.860229 -0.002001 0.600589 -0.663770 0.243355 -1.380089 -0.378282 0.416768 -0.095096 0.464676 -0.567666 -0.501072 -0.410057 -0.285886 0.527478 -0.841483 0.798851 1.147614 -0.438027 1.421735 0.274105 -0.788337 -0.229449 0.820820 -0.402840 1.090388 -0.287947 0.484332 0.020039 0.854044 -0.837435 -0.157458 -0.181769 -0.540341 -0.249524 0.586841 -0.767051 -0.017419 -0.117920 -0.773538 -0.530104 0.616794 0.170176 0.309949 -0.155764 0.055872 -0.212804 -0.405550 -0.540897 0.159501 0.675832 -0.601275 -0.734876 0.050497 0.309637 -0.529784 -0.248029 0.248929 0.179207 1.023137 -0.917371 0.333425 0.175479 -0.059543 -1.501785 -0.921117 -0.118182 -0.609610 -0.594593 0.501478 -1.226388 -0.402294 -0.618978 0.153365 -0.789631 -0.474308 0.396639 1.152417 0.150112 -0.653690 0.496315 -0.082861 0.764348 0.265364 0.101086 0.130413 0.192627 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -1.039427 0.441687 -0.161235 -0.466379 2.191021 0.006754 0.240124 0.908402 -0.127999 0.789637 -1.782745 -0.693650 -0.381097 -1.474756 0.269349 -0.030208 0.585103 0.228226 -0.664557 -0.118867 0.659027 -0.333323 0.137906 -1.110569 0.014486 -1.088747 -0.534318 -0.039329 0.784034 0.178237 -0.683844 0.231320 1.813851 0.196584 1.140184 0.818234 0.862743 1.279195 0.052185 -0.320913 0.370315 1.051752 -0.635137 -1.470120 0.190538 -1.239944 -1.028886 -0.501872 0.418453 -0.938578 0.217156 0.877784 0.199192 0.042691 -0.813326 0.420349 1.534889 0.120240 1.525025 0.657384 -0.837106 -0.289773 -0.668837 0.872081 -0.723376 0.824260 -0.136353 -1.397051 -0.741950 0.677777 0.155474 -0.860844 -1.052958 0.225725 0.537392 -0.720723 0.839823 0.064537 0.284471 -1.242849 -1.096173 0.361413 -0.612021 1.296762 -0.080069 -0.151204 0.038072 -0.231604 0.642021 -1.232238 -0.685780 1.069627 -0.826707 0.203229 -0.537004 0.404033 0.116150 0.319419 -0.747363 -1.162211 0.294703 0.260958 0.039961 -0.406784 0.184352 -1.016646 0.727509 0.411416 0.014906 0.966872 0.522631 0.366202 0.383868 0.687625 -0.958956 -0.066682 -1.184226 0.344091 -0.598787 0.045176 -0.323295 0.123383 0.846804 0.119276 0.820639 -1.491245 1.205355 0.898887 -0.540594 -0.725743 0.298867 -0.859356 -1.289424 0.042929 0.705696 0.247963 0.201907 -0.321352 0.351243 -0.481683 -0.849856 -0.102320 -0.519387 1.021467 -1.676110 -0.205941 -0.175525 -0.342581 -0.581425 0.749259 0.357346 0.319916 1.286536 0.689942 -1.033111 0.620506 -1.176891 0.790490 2.496588 0.206513 -1.315888 0.561372 -0.916280 0.479546 0.798115 0.199245 0.414224 0.277132 -0.659063 -0.015648 -0.064385 -0.439089 1.529083 0.680461 0.891985 -1.657471 1.085367 -0.458177 -0.233390 2.070191 0.908286 -1.852706 0.681319 1.307510 -1.133800 0.030359 0.278306 -0.872266 -0.348430 -1.398649 0.428900 0.508610 -1.247039 -0.727203 0.151623 -1.383564 1.435592 0.400182 0.067708 0.136369 -0.964249 -0.353162 2.281866 0.201455 -0.016683 -0.364960 -0.551994 -0.930242 -1.763856 0.157389 0.093834 -0.902593 -0.325939 -1.127868 -0.045731 1.616396 -0.761382 0.465847 -1.717739 0.319532 0.386596 0.266100 0.638651 -0.978674 -0.901221 -0.166517 -0.547936 0.541688 -1.148638 0.466312 1.250323 -0.833206 1.071633 0.074670 -0.688759 0.123480 0.871018 -0.535944 1.134544 -0.286987 1.487405 0.105374 1.402844 -0.938100 -0.161631 -0.390976 -0.470864 -0.771095 1.196725 -1.440425 -0.043524 1.059463 -0.572627 -1.231112 0.765876 0.260081 0.926985 -0.366947 -0.413997 -0.961544 0.297704 -0.292554 0.434790 0.996718 -0.250366 -1.401507 -0.238860 0.697442 -0.727887 -0.730255 0.447932 -0.141952 1.467195 -1.154206 0.267375 0.384604 0.274019 -1.281740 -1.460911 0.057106 -0.842667 -0.629660 1.248863 -1.782055 -0.475034 -0.710023 0.331724 -1.229211 -0.447099 0.152036 1.514406 0.314803 -0.534184 0.700912 0.250746 0.684992 -0.046497 0.275061 0.095176 0.574495 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.646702 0.474720 -0.380471 -0.613258 2.131528 0.165958 0.053081 0.956487 -0.332273 0.634391 -1.380324 0.116612 0.106492 -1.269564 0.340589 0.516536 0.193742 0.173204 -0.449319 -0.296553 0.408595 -0.238780 0.137700 -0.786954 -0.006635 -0.939507 -0.256090 0.083069 0.539286 0.326443 -0.792642 0.181398 0.855977 -0.116322 0.323514 0.512888 0.985519 0.739842 0.094261 -0.193773 0.628949 0.406733 -0.298401 -1.155443 0.309240 -0.848452 -1.038340 -0.388769 0.312507 -1.049659 0.363858 0.748498 0.167222 -0.406775 -0.628312 0.594323 1.051851 -0.366352 0.955042 0.636625 -0.860676 -0.823227 -0.454124 0.978561 -0.521919 0.824200 0.139098 -1.201892 -0.745976 1.032077 0.096377 -0.480377 -0.751283 -0.099603 0.294742 -0.500942 0.512313 -0.099149 0.578697 -0.661086 -0.500750 0.459170 -0.477252 1.040898 0.169467 -0.114420 -0.017837 -0.311677 0.470625 -0.738159 -0.672943 0.910702 -0.425479 0.305041 -0.880441 0.213006 0.254175 -0.154912 -0.368939 -0.864211 0.306845 0.485275 0.065077 -0.592347 0.049029 -1.037811 0.650158 0.600575 0.076547 0.607456 0.098138 -0.074884 -0.152651 0.308444 -0.452492 0.063094 -1.035210 0.212663 -0.015443 0.133320 -0.563949 -0.178907 0.941071 0.040572 0.415256 -0.966922 1.178132 0.619776 -0.552361 -0.496593 0.323827 -0.299541 -0.862853 0.291855 0.407564 0.059909 0.079773 0.209878 0.412144 -0.374413 -1.133709 -0.289474 -0.551842 0.988103 -1.470337 -0.011493 -0.084305 -0.165717 -0.380600 0.494283 0.399025 0.206767 1.121121 0.498550 -0.404386 0.841668 -0.928095 0.914058 1.979109 0.733751 -0.904107 0.360747 -0.830864 0.473294 0.347347 0.022879 0.016363 0.593789 -0.538932 0.147547 0.176422 -0.445186 1.047160 0.612797 0.771234 -1.354506 0.554225 -0.400863 0.191064 1.362756 0.876248 -1.454746 0.798177 1.330975 -0.512847 0.185191 0.218345 -0.705928 -0.456301 -0.755672 0.349657 0.521109 -1.114110 -0.865388 -0.218929 -0.829673 1.045150 0.334097 0.159930 0.029941 -0.522190 0.233190 1.490060 0.138417 -0.035612 -0.100634 -0.331906 -1.027759 -1.175830 0.057487 0.587380 -0.857362 -0.319717 -0.749883 -0.428682 1.360011 -0.748819 0.125020 -1.450725 0.534485 0.432619 0.320368 0.464356 -0.827877 -0.569606 -0.154568 -0.362804 0.290853 -0.958901 0.246486 0.635783 -0.671161 1.050835 0.158701 -0.081281 0.095783 0.724499 -0.051614 0.957117 0.140298 1.241797 0.246384 1.105811 -0.692227 0.081671 -0.483862 -0.528573 -0.450380 1.042364 -1.326338 -0.108829 1.074676 -0.282697 -1.142795 0.813393 0.580998 0.836045 -0.399966 -0.467193 -0.159114 -0.057829 -0.359277 0.429306 0.614434 -0.723956 -1.011927 -0.389590 0.866040 -0.833029 -0.514321 0.589152 0.198508 1.275219 -0.821084 0.690651 0.310974 0.270350 -1.520480 -0.928402 0.108634 -0.288982 -0.474268 0.659669 -1.665317 -0.726724 -0.515851 0.507846 -1.237345 -0.207558 -0.044671 1.064373 -0.066858 -0.010643 0.660908 0.271085 0.189488 -0.182797 0.274134 0.230111 0.285932 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.489369 0.446648 -0.245973 -0.424934 1.303951 -0.074369 0.031179 0.658979 -0.222890 0.478093 -0.902944 0.114077 0.013217 -0.995156 0.229068 0.318236 0.190936 0.312839 -0.160916 -0.026068 0.347020 -0.311815 0.065986 -0.546192 -0.030645 -0.737914 -0.069670 0.067243 0.330225 0.159286 -0.384959 0.213309 0.721000 0.045035 0.378127 0.492164 0.483574 0.665869 0.327797 -0.170997 0.303130 0.340967 -0.202762 -0.925247 0.280942 -0.500291 -0.552467 -0.404187 0.213290 -0.706474 0.341787 0.539411 0.084563 -0.231655 -0.630448 0.267335 0.793911 -0.110731 0.717789 0.429554 -0.463398 -0.473000 -0.284611 0.550522 -0.464872 0.294126 0.218220 -0.742004 -0.244959 0.647607 0.130568 -0.318573 -0.469833 -0.029225 0.150286 -0.421807 0.335635 -0.058844 0.069086 -0.490693 -0.425804 0.276681 -0.313662 0.778581 0.075692 -0.041793 -0.167345 -0.152455 0.336795 -0.541396 -0.406827 0.572325 -0.242150 0.186196 -0.379860 0.466081 0.319229 -0.148121 -0.234885 -0.527174 0.238596 0.192043 0.117302 -0.229259 -0.092704 -0.660988 0.477137 0.270040 -0.031213 0.511106 0.219157 0.099544 -0.006000 0.231793 -0.367198 0.039875 -0.868702 0.201357 0.041096 0.055935 -0.268274 -0.088893 0.530668 -0.037874 0.305142 -0.748219 0.800266 0.472807 -0.184801 -0.420148 0.267548 -0.180793 -0.520163 0.035362 0.386018 0.055643 0.046418 0.119107 0.189250 -0.195855 -0.729177 -0.308974 -0.364025 0.948332 -0.989426 0.044528 -0.123863 -0.211621 -0.219560 0.209206 0.209052 0.199106 0.776263 0.422484 -0.309796 0.532235 -0.683173 0.497921 1.355387 0.580593 -0.625218 0.311372 -0.410208 0.194828 0.266312 0.100900 0.150689 0.270430 -0.468500 -0.115314 0.157624 -0.328957 0.720133 0.343640 0.492381 -0.882118 0.581218 0.029294 0.029144 1.063275 0.433665 -0.917725 0.523874 0.895064 -0.520095 0.061582 0.150101 -0.407878 -0.224026 -0.489107 0.253807 0.348543 -0.803052 -0.611299 -0.238674 -0.619826 0.693879 0.188209 0.160968 0.023537 -0.431412 0.173665 1.082350 0.130764 -0.048054 -0.137017 -0.329095 -0.695737 -0.856657 0.072630 0.323159 -0.559497 -0.199104 -0.535559 -0.303242 0.912120 -0.476153 0.020396 -0.964531 0.252001 0.347000 0.268568 0.180665 -0.653377 -0.393709 0.076337 -0.113730 0.220030 -0.443389 0.335858 0.569943 -0.482018 0.565571 0.281718 0.145022 0.271324 0.563136 -0.215015 0.697385 -0.063108 0.878530 0.208453 0.680432 -0.473733 -0.003314 -0.240004 -0.271251 -0.320533 0.615582 -0.854559 -0.081749 0.733015 -0.208907 -0.727180 0.502937 0.420669 0.604564 -0.214250 -0.246965 -0.126537 -0.017742 -0.273430 0.279157 0.475171 -0.318884 -0.684857 -0.170957 0.600312 -0.427795 -0.342980 0.367133 0.161568 0.823414 -0.622083 0.508746 0.133714 0.156566 -0.895462 -0.721830 0.253667 -0.241088 -0.372820 0.490586 -1.237880 -0.417504 -0.359546 0.396970 -0.968359 0.051230 -0.114979 0.740334 -0.043338 -0.013420 0.456960 0.097248 0.169409 -0.101462 0.178220 0.062488 0.427443 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.763897 0.581233 -0.141885 -0.852736 2.633541 0.157420 0.128057 1.205444 -0.045367 0.716131 -1.748883 0.095445 0.270107 -1.172580 0.370395 0.330261 0.026858 0.318687 -0.750534 -0.458634 0.441125 0.201668 0.086344 -0.951435 -0.115390 -0.949406 -0.530001 0.139597 0.281867 0.374803 -0.857162 0.212472 1.059080 -0.292349 0.542954 0.674554 1.344840 0.874990 -0.179892 0.392465 1.071798 0.375430 -0.350150 -1.275675 0.241693 -0.977302 -1.377949 -0.458757 0.324622 -1.396742 0.856089 0.797005 0.307514 -0.477924 -0.448741 0.887528 0.940370 -0.438846 1.034140 0.810246 -1.403391 -0.429679 -0.712988 1.472862 -0.605221 1.489892 0.003456 -1.647902 -1.177953 1.328356 0.580194 -0.843843 -1.097806 -0.193544 0.233025 -0.514832 0.640730 -0.198823 1.140234 -0.622511 -0.439556 0.695458 -0.439450 0.994154 0.158848 -0.166031 -0.331122 -0.351496 0.466385 -0.765508 -0.967696 1.275136 -0.650511 0.484196 -1.436248 -0.291842 0.260213 -0.168399 -0.295725 -1.156693 0.433480 0.671510 0.011484 -0.464492 0.050515 -1.087562 0.702610 1.120372 -0.043809 0.601659 -0.399535 0.120496 -0.047275 0.289731 -0.212830 0.326992 -1.265121 0.361712 -0.264370 0.148920 -0.645532 -0.260572 1.079206 0.303968 0.441422 -0.904918 1.460220 0.551825 -0.955825 -0.422896 0.405384 -0.272240 -1.121370 0.319237 0.360598 0.307296 0.039815 0.262653 0.472343 -0.560678 -1.022409 -0.661868 -0.594796 0.552194 -1.434024 -0.090174 -0.027900 -0.044062 -0.548020 0.798673 0.585450 0.136320 1.398014 0.520430 -0.251552 0.429653 -1.144934 0.950269 2.111110 0.662752 -1.043036 0.477549 -1.000090 0.529549 0.445496 0.100381 -0.326292 0.955438 -0.574311 0.148765 -0.216499 -0.622545 1.287429 0.968553 0.699163 -1.618081 0.394983 -0.947627 0.172656 1.690086 1.312678 -1.761995 0.467603 1.551747 -0.257933 -0.184025 0.371152 -0.898041 -0.778116 -0.663755 0.367131 0.509074 -1.145227 -1.065914 0.072341 -0.969095 1.212506 0.326874 -0.116227 -0.161217 -0.721530 -0.006042 1.845734 0.162632 -0.087261 0.091194 -0.243059 -0.678812 -1.425630 0.023180 0.977796 -0.815322 -0.475717 -0.778671 -0.194650 1.486953 -1.138012 0.207104 -1.223283 0.286872 0.520398 -0.066426 0.611896 -1.286068 -0.592949 -0.596175 -0.362735 0.340758 -1.196532 0.110662 0.948089 -0.655139 1.275645 0.622961 -0.497950 -0.307687 1.007055 -0.029419 1.180703 0.167628 1.006127 0.316544 1.199480 -0.828262 -0.047540 -0.634745 -0.463831 -0.578532 1.299123 -1.514998 -0.055124 0.897422 -0.492498 -1.041938 1.108911 0.787146 0.662155 -0.490320 -0.417717 -0.324815 -0.150057 -0.570255 0.345659 0.694758 -0.946372 -1.342253 -0.339821 0.979421 -1.391975 -0.615105 0.580054 0.307292 1.560692 -0.918763 0.876899 0.532735 0.226784 -2.163610 -0.944029 -0.045223 -0.595074 -0.623140 0.282139 -1.603533 -1.215020 -0.588381 0.670341 -1.213018 -0.690701 0.292117 1.265369 0.190247 -0.072851 0.724481 0.247627 0.424658 -0.017173 0.177042 0.306961 0.315961 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.291464 1.192732 0.819505 -0.873521 2.720673 0.598110 0.275433 1.385795 -1.020698 1.312342 -2.389752 -0.320013 -0.503301 -1.814105 0.322659 -0.521732 0.337309 -0.151853 -0.576874 0.308787 0.849870 -0.918880 0.086976 -1.248629 -0.120860 -1.655296 -0.683674 0.052163 1.638454 0.273548 -0.449603 0.130701 2.283367 0.110456 1.417088 1.085865 1.413721 1.766753 0.204732 -0.804214 0.087371 1.425144 -1.045886 -1.615808 0.382307 -1.729232 -1.179133 -0.384204 0.556890 -1.021169 0.152411 1.430023 -0.071058 -0.261087 -1.212607 0.989976 1.602704 -0.262504 2.258928 0.732398 -1.093968 -1.407183 -1.337276 1.539961 -0.915295 1.280557 -0.454630 -1.474523 -0.367237 0.511217 0.045633 -0.799093 -1.238847 0.834749 0.584355 -1.188681 1.084093 -0.384054 -0.578518 -1.542764 -1.418110 0.690149 -0.463368 1.899979 -0.041846 -0.087873 0.012163 0.124874 0.364308 -2.073915 -0.574087 1.656041 -1.202209 0.013992 -1.306254 1.003699 -0.160636 0.536772 -1.177612 -1.120518 0.706725 0.427948 0.225149 -1.912228 0.649547 -2.141167 1.098849 0.687571 0.196228 1.374251 0.937541 0.848721 1.027984 1.357118 -1.505147 -0.126604 -1.612949 0.174066 -0.122947 -0.001305 -0.595256 0.577477 0.347336 0.276082 1.489976 -2.293765 1.396747 1.035615 -1.085087 -1.131104 0.199919 -1.407912 -1.695157 -0.114499 0.876255 0.448949 0.092167 -0.552686 0.297304 -0.521348 -1.335185 -0.821548 -0.276177 1.870174 -2.449704 -0.293963 -0.251613 -0.401401 -0.728020 1.431046 0.922475 0.757335 1.759160 1.019795 -0.816225 1.069849 -1.668511 0.935523 2.975428 0.800611 -2.088319 1.165413 -1.694778 0.346584 0.902172 0.481689 0.904620 0.693854 -1.501304 -0.869068 0.520428 -0.457352 2.186715 0.949087 1.012690 -1.817682 1.983462 -0.966769 -0.793329 2.397906 1.025711 -1.908543 0.387097 1.493642 -1.456748 0.015909 0.688863 -1.483338 -0.340328 -1.496344 0.074454 1.025951 -1.493276 -1.007136 -0.017542 -1.985400 2.457542 0.380169 0.573531 0.067626 -1.315258 -1.432950 2.650583 -0.048580 -0.290726 -0.795979 -0.711700 -1.372012 -2.172896 0.315114 0.465728 -1.119238 -0.919669 -1.775247 -0.190015 1.587709 -0.768066 0.720049 -2.765662 -0.122524 0.762097 0.230987 1.035947 -0.948815 -1.217928 -0.275492 -0.697487 1.043705 -1.544580 1.442040 1.931726 -1.048976 2.066715 -0.121858 -0.883199 0.118965 1.169616 -1.038120 1.960582 -0.428829 1.847181 0.002106 1.774368 -1.464131 -0.270288 -0.232578 -0.784387 -0.673028 1.312677 -1.555193 -0.033918 0.620258 -1.197361 -1.412342 0.844991 0.111437 0.705500 -0.223288 -0.186433 -0.849946 -0.341244 -0.586938 0.552891 1.423231 -0.715522 -1.380769 -0.036358 0.476223 -0.527512 -0.351108 0.563891 0.057582 1.846247 -1.790107 0.162345 0.217527 0.115365 -2.002123 -2.158240 -0.097308 -0.984307 -1.072048 1.734297 -2.555472 -0.319677 -1.272998 0.086823 -1.736793 -0.546766 0.428399 2.328597 0.325668 -1.175075 0.873866 0.088912 1.245345 0.002700 0.371773 0.247640 0.562745 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -1.356902 0.323370 -0.749728 -0.941004 4.006684 0.241329 0.116494 1.871620 -0.535614 1.480754 -2.265746 -0.258610 -0.357759 -2.162508 0.408714 0.563705 0.636519 0.427871 -1.097018 -0.410232 0.858554 -0.387300 0.481052 -1.093883 -0.144680 -1.294579 -0.632792 0.323278 1.130183 0.343919 -1.479513 0.238600 2.088852 -0.249556 1.095021 0.949621 1.654220 1.671653 0.015799 -0.457658 0.900886 1.026236 -0.678912 -2.145418 0.551723 -1.691927 -2.096541 -0.667714 0.864942 -1.965180 0.651318 1.427396 0.158332 -0.421809 -1.007594 1.200831 1.838373 -0.386477 2.192279 0.917273 -1.896102 -1.358926 -1.151522 1.811447 -0.913366 1.488119 -0.135659 -2.566148 -1.360311 1.440863 0.136173 -1.248879 -1.543100 0.308026 0.811505 -1.046314 1.052246 -0.138914 0.980928 -1.517376 -1.331072 0.572312 -1.165411 1.857478 0.048049 -0.034679 0.135859 -0.432265 0.516790 -1.862282 -0.811618 1.853669 -1.130166 0.819605 -1.790821 0.210933 0.000719 -0.022392 -1.282178 -1.529722 0.372371 0.658501 0.295408 -1.268420 0.175121 -1.690025 1.202148 0.857642 0.578454 1.016023 0.642634 -0.056590 0.214436 1.032231 -1.172168 0.312459 -1.786198 0.512894 -0.437111 0.235200 -1.080661 0.212073 1.593639 0.241383 1.360338 -2.160968 1.924096 0.827885 -1.123779 -1.168654 0.512330 -0.748831 -1.592100 0.316256 1.067406 -0.156055 0.065515 -0.209092 0.834756 -0.519737 -2.185206 -0.056865 -0.804739 1.191567 -2.369212 -0.021551 -0.270843 -0.586231 -0.508664 1.173159 0.956441 0.778211 2.071957 1.102122 -0.816909 1.264709 -2.147434 1.584342 3.505942 0.897306 -1.924322 0.930282 -1.580397 0.943476 0.975978 0.351473 0.552146 0.923233 -0.540173 0.344207 0.286928 -0.109305 2.092901 1.285658 1.312780 -2.386475 0.653163 -1.045606 0.290110 2.714627 1.693909 -2.822205 1.315150 1.993489 -1.070823 0.309422 0.398206 -1.392157 -0.747872 -1.667424 0.676008 1.308054 -1.946182 -1.322253 0.116024 -1.664034 2.123935 0.274839 -0.051058 0.278422 -1.593038 0.190918 2.877210 0.230453 -0.005587 -0.321983 -1.001232 -1.848498 -2.407517 0.074828 0.680084 -1.413095 -0.679952 -1.655975 -0.650682 2.460852 -0.718599 0.653018 -2.704394 0.884746 0.943762 0.376975 1.057868 -1.428572 -1.013048 -0.430349 -0.951103 0.786202 -1.831566 0.311080 1.315751 -1.270117 2.038009 0.142798 -0.580486 0.163833 1.085679 -0.644135 2.030905 0.177757 2.224204 0.211636 1.874922 -1.113482 0.254745 -0.832197 -0.433085 -0.917866 1.924131 -2.240660 -0.336769 1.670148 -0.995183 -2.049016 1.015125 0.895048 1.312127 -0.328621 -0.816898 -0.928966 -0.314337 -0.762546 0.745228 1.165904 -1.222076 -1.762550 -0.211032 0.993594 -1.304097 -0.869978 0.853169 0.322740 2.219342 -1.773804 0.668763 0.604800 0.391075 -2.429362 -1.767761 -0.244624 -0.799597 -0.920905 1.542668 -2.854971 -1.229300 -0.980538 0.724976 -1.866538 -0.449915 0.082767 2.392968 0.280877 -0.303714 1.319650 0.439920 0.674437 -0.396593 0.441570 0.448179 0.680118 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.911138 0.408249 -0.340871 -1.124161 2.332680 -0.258943 0.007577 2.033179 0.172023 0.805121 -1.805396 -0.173785 -0.239407 -1.971646 0.233912 -0.035832 0.877966 0.616767 -0.951540 -0.059269 0.753794 0.228528 0.358054 -0.979831 -0.270460 -1.113615 -0.325521 0.184766 0.181531 0.163170 -0.554980 0.300392 2.337527 0.298571 1.545802 0.940626 1.374277 1.501223 0.803597 0.260220 0.571811 0.854492 -0.492176 -1.726751 0.085566 -1.127449 -1.251569 -0.536752 0.508227 -1.511475 0.623265 0.931899 0.489190 0.066578 -0.976860 0.347892 1.045511 -0.285439 1.543869 0.935615 -1.521077 -0.724751 -0.656576 0.974527 -1.072578 1.025176 0.140997 -1.236523 -0.945383 1.083122 0.382748 -1.012770 -1.311675 -0.195343 0.459299 -0.877022 1.046046 -0.013053 0.879257 -1.053321 -0.797779 0.900264 -0.694413 1.446542 0.103044 0.075254 -0.146822 -0.226007 0.381152 -1.393320 -0.401764 0.943722 -0.982541 0.013827 -1.184827 0.644262 -0.431494 0.115306 -0.796547 -1.615855 0.621662 0.272948 0.137228 -0.488518 -0.169803 -1.012050 0.918533 0.958139 -0.207809 0.990158 0.550583 0.496111 0.558399 0.851187 -0.672583 0.395007 -2.152850 0.751061 -0.847952 -0.052134 -0.626871 0.084674 1.229200 0.573323 0.754144 -1.556507 1.660998 1.406877 -0.961356 -0.691069 0.612356 -0.601385 -1.420375 0.030043 0.953148 0.119232 0.375728 -0.353476 0.643159 -0.687570 -0.905071 -0.538765 -0.852433 0.567096 -1.846062 -0.192278 -0.073426 -0.339414 -0.467341 0.993447 0.431457 0.203447 1.848739 0.455792 -1.172953 0.534248 -1.589225 0.655977 2.630468 0.645957 -1.208147 0.871973 -0.875011 0.378919 0.742760 0.631494 0.275197 0.126408 -0.786222 -0.110091 -0.039532 -0.320398 1.801234 0.540233 0.897926 -1.871076 0.876954 -0.537964 0.206516 2.382621 1.291269 -1.739388 0.306777 1.469271 -0.527603 -0.224184 0.263867 -1.139500 -0.535430 -1.125862 0.405893 0.724354 -1.397225 -1.073253 0.152868 -1.301519 1.330810 0.241972 -0.423834 -0.154808 -1.470760 0.165036 2.620545 0.095183 -0.090413 -0.120334 -0.865875 -0.649140 -2.138189 0.184118 0.536728 -0.787383 0.249718 -1.029888 -0.190865 1.552806 -0.802712 0.112219 -1.952804 0.235955 0.955271 -0.155717 0.534465 -1.371511 -0.774968 -0.016615 -0.601511 0.770427 -1.468142 0.492487 1.207464 -0.758880 1.383139 0.442953 -0.489305 0.072230 1.022511 -0.840751 1.860852 -0.383452 1.502570 0.415480 1.300405 -1.047543 -0.198542 -0.832463 -0.471255 -0.827141 1.305165 -1.855958 -0.152447 0.875689 -0.379050 -1.339286 0.820032 0.730556 0.282336 -0.321168 -0.312569 -0.839349 0.033167 -0.632996 0.703862 1.115620 -0.604573 -1.780465 -0.081296 1.351397 -0.845680 -0.555070 0.387931 0.334433 1.897094 -1.302877 0.522010 0.569992 0.558786 -1.862475 -1.853725 0.568694 -0.754134 -0.274015 0.476134 -1.932095 -1.308027 -0.730091 0.788765 -1.426104 0.200174 0.662174 1.601281 0.197313 -0.693752 0.415878 0.262311 0.678186 0.029773 0.371011 0.211660 0.818714 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = -0.894049 0.928588 0.151529 -0.828535 2.029151 -0.025753 0.242097 0.942865 0.063982 0.620768 -1.890600 -0.231886 -0.041880 -1.423878 0.300106 -0.026130 0.167871 0.606767 -0.488452 -0.054221 0.687550 -0.238952 -0.013847 -1.174789 0.023285 -0.866792 -0.517625 -0.044745 0.094439 0.481956 -0.379570 0.337107 1.318030 0.326998 0.888757 0.959677 0.707653 1.486833 0.153841 0.773209 0.619672 0.758456 -0.383274 -1.767114 0.583884 -1.065402 -0.813794 -0.934908 0.196391 -1.457655 1.238213 0.850211 0.248093 -0.342032 -0.849532 0.215513 1.347333 0.204990 1.160245 0.891017 -1.080232 0.033419 -0.659047 0.523109 -0.707306 1.192220 0.618730 -1.439290 -0.588656 0.936256 1.003383 -0.922827 -1.184993 -0.142560 0.057520 -0.507434 0.704343 -0.183862 -0.083393 -0.603933 -0.727977 0.460058 -0.337636 1.205596 -0.051831 -0.278723 -0.689154 -0.334775 0.643702 -0.793226 -0.974794 1.182521 -0.386705 0.556732 -0.952686 0.364793 0.352957 -0.022815 -0.494058 -0.837561 0.521140 0.584135 0.074054 0.181073 -0.811978 -1.114040 1.114686 0.960365 -0.500957 0.601472 0.226402 0.452680 0.203063 0.301950 -0.662220 0.658769 -1.438725 0.406198 -0.096726 0.080874 -0.185066 -0.190443 0.521537 -0.104210 0.364289 -0.953826 1.412509 0.854813 -0.775467 -0.611195 0.538841 -0.547219 -1.190033 -0.013398 0.551295 0.547869 0.056907 0.123566 -0.033693 -0.701005 -0.721114 -1.015012 -0.630185 1.186150 -1.190265 -0.175142 -0.209024 -0.347148 -0.578371 0.547232 0.256458 0.109344 1.332537 0.634104 -0.457560 -0.017520 -1.008332 0.659152 2.252496 0.952617 -1.160640 0.366960 -0.309756 0.504640 0.618886 0.029440 0.042168 0.597759 -0.778743 -0.248139 -0.397758 -0.917985 1.227785 1.170954 0.829989 -1.592777 1.080006 -0.235259 -0.216969 1.982933 1.009939 -1.407604 0.135685 1.424384 -0.746118 -0.295289 0.254355 -0.453634 -0.490585 -0.610771 0.328094 0.246257 -1.265706 -1.261890 -0.160176 -1.241474 1.277011 0.371996 0.417326 -0.292727 -1.022534 -0.258383 2.095197 0.147832 -0.273528 0.053123 -0.257071 -0.528588 -1.507922 0.208219 0.797042 -0.768903 -0.605507 -0.779090 0.074501 1.420044 -1.219177 -0.018134 -0.524834 -0.205237 0.470705 -0.282856 0.523631 -1.698707 -0.851062 -0.302456 -0.024427 0.700871 -0.490867 0.437167 1.416748 -0.631577 0.845862 1.273255 0.172978 0.011722 1.271843 -0.235200 1.124313 -0.479278 1.212077 0.178105 1.229440 -0.793671 -0.336777 -0.303189 -0.122767 -0.538795 1.310944 -1.339913 0.108070 0.868168 -0.672273 -0.689977 1.182931 0.543500 0.760285 -0.430596 -0.095219 -0.528711 0.042250 -0.363343 0.193965 0.962338 -0.403672 -1.496809 -0.510146 0.783001 -0.983153 -0.549256 0.567093 0.124917 1.514503 -0.959972 0.848791 0.331496 -0.210522 -1.688481 -1.020667 0.294094 -0.811580 -0.804684 0.653785 -1.624041 -0.754537 -0.677263 0.652545 -1.336363 -0.291154 -0.091200 1.182955 0.413041 -0.074804 0.641827 0.213033 0.758194 0.061786 0.064695 0.121009 0.949698 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.917894 0.417050 -0.739823 -0.770814 2.879980 0.147976 0.011101 1.252129 -0.509410 0.981924 -1.623144 0.117827 -0.078851 -1.743563 0.399571 0.801300 0.352345 0.347168 -0.642564 -0.333194 0.611547 -0.383499 0.367337 -0.879082 -0.082959 -1.144932 -0.280295 0.211091 0.767458 0.298377 -1.081962 0.208983 1.242168 -0.185222 0.410816 0.598345 1.238043 1.143577 0.188257 -0.491574 0.740934 0.599524 -0.425665 -1.623132 0.576409 -1.139117 -1.408115 -0.563321 0.592390 -1.416959 0.494517 1.048043 0.167874 -0.562630 -0.916814 0.757341 1.455816 -0.488631 1.410613 0.736822 -1.100573 -1.194433 -0.645856 1.248809 -0.773879 0.962983 0.153175 -1.659536 -1.023518 1.309306 0.137504 -0.755845 -1.112062 -0.051228 0.463518 -0.724292 0.638679 -0.096924 0.838563 -1.034708 -0.873178 0.470809 -0.821973 1.389827 0.141882 -0.048604 0.025650 -0.363127 0.566273 -1.100575 -0.726924 1.179082 -0.548882 0.558919 -1.099278 0.319956 0.145792 -0.294409 -0.733212 -1.035801 0.300135 0.557999 0.228046 -0.785247 0.123566 -1.303070 0.871794 0.617423 0.283356 0.713956 0.428973 -0.225615 -0.233786 0.503881 -0.649961 0.036272 -1.449860 0.286117 0.059848 0.237874 -0.812730 -0.052922 1.248536 -0.066904 0.702584 -1.492031 1.562331 0.666018 -0.694587 -0.768851 0.455047 -0.255313 -1.006915 0.345555 0.728613 -0.174962 0.002434 0.197734 0.624413 -0.367751 -1.742050 -0.191805 -0.709015 1.344406 -1.935912 0.103458 -0.211337 -0.454659 -0.320203 0.579378 0.551648 0.435238 1.523740 0.814485 -0.593601 1.242764 -1.381723 1.266774 2.606679 1.032182 -1.277522 0.528080 -1.109681 0.648498 0.540467 0.128004 0.254499 0.706108 -0.505438 0.275194 0.378197 -0.316536 1.453978 0.732049 1.123732 -1.830126 0.520608 -0.375703 0.472962 1.877137 1.049571 -1.983006 1.205375 1.681500 -0.664294 0.298330 0.228095 -0.891365 -0.607892 -1.073983 0.565032 0.883150 -1.526116 -1.155028 -0.298936 -1.103948 1.404706 0.289500 0.044807 0.272763 -0.916944 0.461984 1.885243 0.198021 -0.041507 -0.258680 -0.678865 -1.395579 -1.640904 0.154589 0.685385 -1.102141 -0.444475 -1.083526 -0.669890 1.864744 -0.668687 0.192181 -2.101513 0.826760 0.657912 0.499780 0.646950 -1.093361 -0.658752 -0.024226 -0.486583 0.417963 -1.179077 0.238037 0.767157 -1.082659 1.286238 0.171760 0.072513 0.264711 0.885868 -0.178311 1.345908 0.212814 1.832220 0.203496 1.389188 -0.768653 0.308493 -0.590863 -0.481589 -0.556712 1.298669 -1.731805 -0.306583 1.472012 -0.419898 -1.619389 0.888316 0.850246 1.137071 -0.364098 -0.727754 -0.179672 -0.127163 -0.402684 0.595837 0.853652 -0.945332 -1.298114 -0.389204 1.044986 -1.020034 -0.605774 0.786333 0.343461 1.657606 -1.189739 0.847208 0.304999 0.370519 -1.872808 -1.245868 0.144123 -0.300982 -0.577120 1.146075 -2.275780 -0.899265 -0.692416 0.768458 -1.576790 -0.049783 -0.224014 1.440694 -0.046472 0.063259 1.034643 0.375823 0.231290 -0.348458 0.284679 0.381988 0.491797 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -1.311334 1.859187 0.771765 -1.174375 1.971470 -0.295788 0.543387 0.830463 0.346628 0.628169 -2.777683 -0.703777 -0.268590 -2.134494 0.336913 -0.650927 0.271665 1.255451 -0.292500 0.499936 1.160309 -0.735738 -0.220988 -1.878089 0.138493 -0.986521 -0.765549 -0.264661 -0.350361 0.766863 0.257527 0.665306 2.004210 1.204910 1.672612 1.725246 0.104226 2.714479 0.581368 1.790657 0.424294 1.312974 -0.505521 -2.958503 1.158100 -1.420298 -0.468530 -1.939366 -0.028775 -2.090685 2.313076 1.185746 0.312494 -0.326768 -1.602793 -0.553117 2.207165 1.101439 1.583265 1.352080 -1.153376 0.938254 -0.834512 -0.524652 -1.022305 1.360701 1.619425 -1.733101 -0.063222 0.912951 2.140427 -1.439416 -1.822596 -0.199913 -0.208265 -0.642868 0.977033 -0.280876 -1.717333 -0.662412 -1.181530 0.470789 -0.185876 1.800687 -0.237214 -0.503277 -1.544453 -0.418143 1.046571 -1.005728 -1.404719 1.540774 -0.142101 0.829980 -0.783563 1.225894 0.709202 0.083081 -0.808016 -0.788634 0.910779 0.672161 0.135309 1.268117 -2.328484 -1.572964 1.973572 1.324951 -1.401041 0.751198 0.878735 1.144222 0.675913 0.328890 -1.396069 1.407091 -2.150069 0.635215 0.010977 -0.042581 0.321560 -0.269631 -0.111448 -0.527363 0.284758 -1.196142 1.887455 1.524365 -0.917188 -0.998615 0.893413 -0.992959 -1.656885 -0.437598 0.873517 1.151897 0.132610 0.120165 -0.805857 -1.187956 -0.334082 -2.013219 -0.854918 2.349346 -1.115528 -0.314744 -0.444524 -0.756414 -0.893460 0.451020 0.004952 0.061457 1.729069 0.921216 -0.746845 -0.846147 -1.148282 0.428586 3.116406 1.678094 -1.638658 0.407202 0.542022 0.568710 0.937682 -0.039026 0.309972 0.350860 -1.437740 -0.986832 -0.949524 -1.718534 1.515453 1.925180 1.131419 -2.075844 2.333705 0.517133 -0.839681 3.020660 1.017656 -1.336303 -0.494456 1.849614 -1.535525 -0.757943 0.315058 -0.094794 -0.405976 -0.545473 0.336182 -0.147464 -1.770868 -1.999064 -0.474801 -1.969067 1.704474 0.590625 1.133996 -0.758074 -1.647050 -0.859206 3.168686 0.156460 -0.619892 0.175706 -0.264624 -0.183630 -2.060902 0.456293 1.058539 -0.899253 -0.985412 -0.944121 0.547028 1.728951 -1.932428 -0.328402 0.559130 -1.061476 0.578092 -0.807187 0.526103 -2.971758 -1.396124 -0.136664 0.503015 1.262692 0.326246 0.999256 2.523813 -0.706043 0.524616 2.754525 0.990330 0.326424 2.111089 -0.504145 1.444522 -1.458593 1.798710 0.180941 1.638841 -0.993139 -0.890142 0.027350 0.245399 -0.688377 1.821234 -1.568396 0.378016 1.049903 -1.042356 -0.419833 1.761726 0.528377 0.969331 -0.582406 0.358701 -0.905486 0.274685 -0.249929 0.066999 1.551908 0.104223 -2.184261 -0.865863 0.939020 -0.902498 -0.623776 0.739169 0.004627 1.984295 -1.301623 1.260109 0.214326 -0.832711 -1.841226 -1.384696 0.910323 -1.518277 -1.295806 1.013528 -2.110628 -0.589028 -0.988514 0.899544 -1.795128 -0.016742 -0.433221 1.456881 0.877623 -0.125771 0.663117 0.153013 1.402324 0.234604 -0.098488 -0.090638 2.114251 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.618837 0.263725 -0.517367 -0.472265 1.877710 0.172034 -0.038886 0.918606 -0.246613 0.654945 -1.155974 -0.020790 -0.029626 -1.084121 0.239024 0.604124 0.243229 0.163598 -0.473600 -0.327073 0.397086 -0.204616 0.203030 -0.619808 -0.003303 -0.705955 -0.268530 0.091439 0.533803 0.189821 -0.845484 0.104459 0.889614 -0.086143 0.367594 0.404528 0.860405 0.734751 0.120167 -0.200839 0.475696 0.477047 -0.329355 -1.036920 0.332566 -0.852588 -0.865405 -0.334982 0.368910 -0.884682 0.507583 0.660369 0.103578 -0.292576 -0.527296 0.465318 0.907887 -0.281406 0.982477 0.493664 -0.804516 -0.719806 -0.410788 0.926096 -0.490065 0.745326 0.085834 -1.119504 -0.703090 0.770354 0.185297 -0.567698 -0.713915 0.020977 0.243128 -0.450072 0.493049 -0.069446 0.735030 -0.730524 -0.618951 0.325031 -0.562011 0.908399 0.055748 -0.095099 -0.093403 -0.245588 0.371869 -0.758038 -0.493400 0.777081 -0.448536 0.418266 -0.718013 0.115673 0.029066 -0.051911 -0.446868 -0.699724 0.192704 0.427733 0.092307 -0.468947 0.211960 -0.813807 0.631357 0.427556 0.169279 0.466027 0.334696 -0.105804 -0.047738 0.382940 -0.367844 -0.011886 -0.904719 0.207651 0.006001 0.140155 -0.473959 -0.016350 0.845986 -0.061923 0.501548 -0.953137 0.962215 0.472398 -0.514156 -0.485658 0.259508 -0.334534 -0.794667 0.238035 0.431061 -0.017456 0.022239 0.027557 0.383249 -0.312400 -1.190797 -0.157563 -0.469425 0.769589 -1.282586 -0.034930 -0.105824 -0.244474 -0.275488 0.494691 0.361815 0.263323 1.014139 0.503168 -0.416211 0.654146 -0.898090 0.826192 1.733654 0.588751 -0.885269 0.330105 -0.771935 0.460880 0.442254 0.092921 0.153701 0.455672 -0.280281 0.258544 0.192233 -0.228433 0.999724 0.486829 0.784037 -1.130525 0.371925 -0.286630 0.190241 1.310854 0.691986 -1.337220 0.719336 1.046925 -0.335860 0.276661 0.162324 -0.602290 -0.403268 -0.761933 0.332323 0.564046 -0.998188 -0.710136 -0.086578 -0.783997 1.032393 0.222214 0.082795 0.174513 -0.678821 0.373636 1.347007 0.153128 -0.013546 -0.128658 -0.374807 -0.893368 -1.090241 0.085668 0.433991 -0.723516 -0.272840 -0.730522 -0.349272 1.243672 -0.477323 0.178237 -1.353010 0.494607 0.396397 0.174089 0.454137 -0.760580 -0.512902 -0.112907 -0.361830 0.372485 -0.884582 0.182739 0.580667 -0.659045 0.893839 0.251823 0.077761 0.067742 0.563311 -0.131958 0.877161 0.070616 1.048077 0.113209 0.968029 -0.569921 0.116910 -0.440288 -0.225856 -0.398218 0.893680 -1.128607 -0.128934 0.907023 -0.365337 -0.992494 0.609549 0.441289 0.747238 -0.250676 -0.523109 -0.236269 -0.065484 -0.292914 0.365008 0.591045 -0.600722 -0.929432 -0.280519 0.583414 -0.694841 -0.361432 0.479721 0.141349 1.122081 -0.773576 0.441021 0.282665 0.243680 -1.241742 -0.806948 -0.042891 -0.176122 -0.384485 0.763815 -1.457849 -0.621203 -0.492297 0.382581 -1.070470 -0.062052 -0.108258 1.017008 0.052419 -0.067890 0.624958 0.278205 0.250991 -0.151157 0.191303 0.235749 0.272594 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.633076 0.234446 -0.517075 -0.471729 1.846916 0.139480 -0.036402 0.918655 -0.243193 0.654892 -1.129547 -0.020714 -0.071178 -1.085936 0.234958 0.585944 0.243968 0.194807 -0.483308 -0.305916 0.431693 -0.204723 0.204892 -0.620005 -0.003878 -0.690279 -0.246760 0.088416 0.534028 0.190216 -0.830608 0.103516 0.898697 -0.085760 0.371222 0.407495 0.860997 0.774734 0.099030 -0.201148 0.446465 0.516256 -0.332574 -1.058746 0.359649 -0.852725 -0.836098 -0.336396 0.394932 -0.884257 0.510199 0.661467 0.103267 -0.292837 -0.528044 0.465214 0.917342 -0.258260 0.986372 0.493473 -0.776019 -0.706152 -0.434801 0.909260 -0.510974 0.744842 0.100966 -1.101448 -0.700773 0.733762 0.186665 -0.570996 -0.714609 0.019847 0.242283 -0.449300 0.500788 -0.070382 0.734881 -0.727132 -0.643698 0.285644 -0.572663 0.906416 0.014792 -0.095018 -0.094409 -0.237855 0.376970 -0.752932 -0.492534 0.764790 -0.449158 0.428045 -0.718600 0.115861 0.014128 -0.052233 -0.470682 -0.673550 0.187243 0.427787 0.114847 -0.459783 0.194270 -0.777294 0.632137 0.403745 0.168943 0.462872 0.334555 -0.102118 -0.069830 0.383226 -0.348309 0.011975 -0.922982 0.201840 0.006792 0.172325 -0.449592 0.004093 0.846247 -0.085662 0.500375 -0.954553 0.963871 0.449176 -0.496104 -0.485670 0.286502 -0.322359 -0.785027 0.204208 0.463136 -0.018863 -0.009926 0.014480 0.403542 -0.291493 -1.189251 -0.157615 -0.470477 0.735193 -1.265774 -0.035258 -0.137236 -0.277243 -0.251575 0.468043 0.336434 0.263420 1.004291 0.528287 -0.415440 0.652686 -0.895914 0.811336 1.710128 0.575636 -0.889356 0.314175 -0.753174 0.464980 0.462488 0.094453 0.179109 0.483884 -0.253694 0.260571 0.191521 -0.226212 1.002271 0.487291 0.783838 -1.143872 0.348102 -0.286760 0.192133 1.316544 0.696795 -1.339514 0.716777 1.008594 -0.335456 0.250167 0.133003 -0.561811 -0.383049 -0.762299 0.352876 0.569318 -0.997054 -0.723445 -0.087035 -0.788224 1.019913 0.195112 0.080364 0.192965 -0.714971 0.373986 1.322746 0.154210 -0.044396 -0.159658 -0.388717 -0.898162 -1.098641 0.116601 0.402475 -0.698440 -0.305529 -0.732979 -0.340134 1.243373 -0.458404 0.152846 -1.350645 0.467658 0.394208 0.174020 0.473749 -0.763015 -0.512370 -0.113311 -0.339860 0.402613 -0.847420 0.157933 0.619500 -0.683245 0.862205 0.262741 0.077253 0.067640 0.595570 -0.153667 0.872964 0.062459 1.034572 0.076009 0.945725 -0.567030 0.117331 -0.416977 -0.189152 -0.375538 0.869863 -1.093923 -0.130364 0.871218 -0.398203 -0.949027 0.607476 0.438794 0.747380 -0.221699 -0.499333 -0.244623 -0.065951 -0.292925 0.328117 0.619272 -0.574724 -0.936200 -0.276342 0.544305 -0.694276 -0.361018 0.472947 0.140928 1.119795 -0.773607 0.434784 0.266160 0.205336 -1.209941 -0.806286 -0.049681 -0.175955 -0.393683 0.797983 -1.422205 -0.591935 -0.490673 0.411449 -1.071410 -0.064086 -0.140974 0.986788 0.077273 -0.037341 0.653252 0.279013 0.292674 -0.143269 0.165722 0.235528 0.303458 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.519538 0.298757 -0.286240 -0.415783 1.560989 0.131613 -0.008883 0.820787 -0.213783 0.567845 -0.992385 0.041780 0.000952 -0.889797 0.196770 0.380765 0.166764 0.140176 -0.376235 -0.251355 0.323145 -0.153736 0.133286 -0.532112 -0.022328 -0.714798 -0.214673 0.072710 0.444973 0.207043 -0.610159 0.091851 0.768478 -0.086242 0.350801 0.383452 0.728935 0.595081 0.106285 -0.100213 0.404115 0.389671 -0.280697 -0.844615 0.221182 -0.687816 -0.726848 -0.272494 0.288415 -0.781696 0.338703 0.543872 0.090098 -0.225903 -0.419703 0.445131 0.723797 -0.251410 0.811086 0.414784 -0.694698 -0.604587 -0.375638 0.830029 -0.412949 0.602512 0.033933 -0.923635 -0.538206 0.646061 0.083055 -0.389833 -0.505970 0.034806 0.208495 -0.397684 0.404570 -0.079774 0.484838 -0.555193 -0.447650 0.301735 -0.389227 0.748354 0.057416 -0.077393 -0.059098 -0.183138 0.294284 -0.639630 -0.426101 0.706613 -0.395299 0.269454 -0.630464 0.121604 0.105518 -0.028650 -0.287026 -0.601226 0.184077 0.347726 0.066706 -0.463854 0.134505 -0.704709 0.489751 0.369612 0.114048 0.455307 0.126491 -0.012437 -0.015967 0.331388 -0.329656 0.055316 -0.784654 0.209952 -0.046606 0.106190 -0.379612 -0.040715 0.686706 0.041917 0.420737 -0.779752 0.803987 0.401694 -0.406218 -0.413614 0.208356 -0.295746 -0.667009 0.172879 0.334529 0.037413 0.032268 0.009170 0.313991 -0.261805 -0.896064 -0.225890 -0.366061 0.634434 -1.088469 -0.037276 -0.071906 -0.138406 -0.262302 0.435819 0.317033 0.204765 0.858383 0.409063 -0.302162 0.551240 -0.752655 0.633249 1.428578 0.474248 -0.717667 0.310306 -0.653005 0.326527 0.353966 0.085918 0.100808 0.451451 -0.327311 0.116763 0.129088 -0.232252 0.847515 0.459658 0.583160 -0.952442 0.389102 -0.323021 0.094035 1.076788 0.640401 -1.117584 0.569376 0.868790 -0.362184 0.165464 0.162803 -0.535452 -0.330171 -0.601588 0.235495 0.458873 -0.800232 -0.581799 -0.054437 -0.663255 0.868187 0.185382 0.106732 0.105949 -0.523579 0.185884 1.123040 0.137329 -0.016979 -0.114076 -0.288373 -0.783704 -0.917807 0.053184 0.377091 -0.612308 -0.236209 -0.610720 -0.270611 0.981857 -0.444912 0.171722 -1.144482 0.343025 0.337768 0.154339 0.362060 -0.637745 -0.429193 -0.152098 -0.307594 0.312081 -0.746502 0.222941 0.543243 -0.499008 0.817514 0.166483 -0.069392 0.042289 0.494833 -0.158347 0.748638 0.043720 0.804211 0.135395 0.786921 -0.512794 0.052900 -0.368319 -0.282077 -0.340059 0.736245 -0.936184 -0.085814 0.705271 -0.351481 -0.768835 0.523225 0.362900 0.595436 -0.215494 -0.351821 -0.257200 -0.064577 -0.312733 0.275862 0.490888 -0.493142 -0.791826 -0.195674 0.493771 -0.602431 -0.385900 0.366998 0.134609 0.901883 -0.648019 0.376042 0.253298 0.182061 -1.086051 -0.700627 -0.015286 -0.215011 -0.400588 0.531350 -1.203139 -0.519255 -0.416422 0.300832 -0.951148 -0.158603 -0.013289 0.874344 0.023930 -0.085722 0.497680 0.193222 0.245633 -0.084646 0.196383 0.173201 0.229616 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -0.800464 0.198319 -0.547852 -0.634291 2.301204 0.453273 -0.137274 0.987383 -0.087305 0.894217 -1.413316 -0.290161 -0.185510 -1.168239 0.181461 0.569821 0.125600 0.113678 -0.800522 -0.471791 0.538413 -0.176502 0.407470 -0.718184 -0.043235 -0.699882 -0.492530 0.124822 0.640207 0.332506 -1.016335 -0.116430 0.998623 -0.173144 0.337071 0.322933 1.065349 1.008789 -0.221569 0.097228 0.568723 0.687248 -0.486154 -1.284167 0.521860 -1.233050 -1.111516 -0.438127 0.559254 -1.250659 0.690831 0.803327 0.123007 -0.469328 -0.450081 0.615138 1.064770 -0.214730 1.273201 0.535165 -1.026378 -0.784117 -0.738336 0.979902 -0.589577 1.284969 0.059608 -1.500845 -1.142886 0.810976 0.260951 -0.703343 -0.984639 0.088658 0.366310 -0.490213 0.606057 -0.209020 0.973720 -0.803406 -0.755376 0.301243 -0.707755 1.020740 -0.044662 -0.105569 0.029979 -0.247329 0.383674 -0.976656 -0.619785 1.026887 -0.515574 0.642345 -0.925429 -0.160637 -0.249060 -0.004475 -0.714825 -0.601261 0.159789 0.750588 0.145281 -0.596375 0.148393 -1.061743 0.929905 0.690096 0.245225 0.229958 0.430776 -0.279448 -0.143578 0.571261 -0.542350 0.219115 -0.985378 0.136361 -0.010888 0.335652 -0.627224 0.121326 0.942286 -0.107577 0.679789 -1.129933 1.223337 0.399130 -0.883097 -0.593558 0.343060 -0.418675 -0.991453 0.388654 0.481243 -0.074815 -0.099919 -0.080186 0.481344 -0.450107 -1.481630 -0.064925 -0.483166 0.571792 -1.335559 -0.064983 -0.153206 -0.379653 -0.269482 0.711480 0.491571 0.282276 1.293217 0.654408 -0.418470 0.575088 -1.036489 1.076611 2.077879 0.572972 -1.162404 0.319659 -0.923487 0.722115 0.627753 0.026347 0.216818 0.861433 -0.123414 0.459099 0.016503 -0.198705 1.276365 0.847034 1.055195 -1.457795 0.257396 -0.609347 0.384649 1.550535 1.064108 -1.648272 0.723850 1.106402 -0.440569 0.301718 0.139950 -0.550225 -0.438347 -0.904689 0.377558 0.725183 -1.118896 -1.034858 -0.056453 -1.008655 1.402374 0.173758 0.143472 0.324266 -1.001724 0.341098 1.483693 0.173825 -0.172249 -0.172262 -0.386503 -1.071578 -1.333055 0.200772 0.600255 -0.895918 -0.514901 -0.914144 -0.258507 1.444336 -0.490002 0.230729 -1.429281 0.490090 0.447987 0.000571 0.826828 -0.877913 -0.581642 -0.361569 -0.532772 0.647576 -1.017112 0.043720 0.783325 -0.845762 1.158116 0.299373 0.003442 -0.124586 0.752133 -0.069366 1.093793 0.077926 1.135342 -0.115529 1.189417 -0.519702 0.285458 -0.480586 -0.241008 -0.289414 1.165522 -1.296613 -0.217240 0.977260 -0.697542 -1.010140 0.765531 0.489566 0.878399 -0.201394 -0.549342 -0.454083 -0.121204 -0.211043 0.265270 0.781393 -0.717429 -1.245420 -0.419306 0.481020 -0.905041 -0.570826 0.582748 0.144669 1.377906 -0.937339 0.457370 0.345119 0.053879 -1.571810 -0.729201 -0.319498 -0.230755 -0.487888 1.070772 -1.536147 -0.662347 -0.646401 0.458899 -1.011577 -0.240279 -0.180009 1.204106 0.317463 -0.061075 0.849504 0.404324 0.526560 -0.121458 0.029163 0.452089 0.315156 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = -1.296898 1.053204 0.275668 -0.983029 3.189330 0.130922 0.487416 1.221740 -0.660071 1.267846 -2.369406 -0.284226 -0.332950 -2.188348 0.352275 -0.393142 0.495110 0.366962 -0.615277 0.105703 0.777593 -0.745819 0.229281 -1.249529 -0.112564 -2.031065 -0.630877 0.190697 1.115764 0.369111 -0.332400 0.287293 2.197215 0.058417 1.276008 1.205530 1.069770 1.664561 0.261816 -0.524429 0.601610 1.084382 -0.737360 -2.028603 0.304663 -1.388517 -1.693579 -0.918082 0.593857 -1.742611 -0.298280 1.363362 0.098946 -0.312652 -1.274131 0.883157 2.040932 -0.216855 2.004245 0.857518 -1.208898 -0.886845 -1.038033 1.180304 -0.945305 0.852559 -0.168457 -1.958723 -0.637788 1.221860 -0.210194 -0.668842 -1.121529 0.323794 0.811978 -1.092690 0.842977 -0.217706 -0.691488 -1.413854 -1.038223 0.597872 -0.526690 1.839946 0.113405 -0.120086 0.360443 -0.261522 0.589216 -1.699929 -0.814947 1.819208 -0.806437 -0.040771 -0.941356 1.017485 0.546546 0.032220 -0.890468 -1.409597 0.473235 0.280986 0.195077 -0.998356 -0.192293 -1.813019 0.739191 0.697655 0.114387 1.442957 0.376667 0.507372 0.447469 0.903497 -1.707213 0.336668 -1.838682 0.628874 -0.586649 0.017690 -0.605103 0.100150 0.969678 0.461086 1.136399 -2.031727 1.731504 1.135795 -0.732935 -1.183503 0.390589 -0.875618 -1.490636 0.120128 0.836374 0.219091 0.265236 -0.217708 0.377298 -0.553553 -1.032403 -0.450574 -0.566447 1.897316 -2.365649 -0.038488 -0.172652 -0.341135 -0.661242 0.998608 0.751974 0.550028 2.064036 1.002800 -0.938522 1.374148 -1.780331 1.056296 3.334890 0.864056 -1.652497 0.964813 -1.190120 0.409974 0.783496 0.377579 0.592844 0.650247 -1.373088 -0.484209 0.172031 -0.641125 1.997468 1.156612 0.962658 -2.289127 1.736429 -0.572780 -0.182314 2.478625 1.333582 -2.320552 1.138048 1.909844 -1.854284 -0.105701 0.535776 -1.303797 -0.613138 -1.431078 0.408375 0.865295 -1.647330 -1.202561 -0.221881 -1.733145 1.937333 0.396939 0.236482 0.144619 -1.060548 -0.950992 2.751353 0.219909 -0.051649 -0.455934 -0.773167 -1.467258 -2.270523 0.150288 0.510717 -1.450609 -0.547641 -1.511099 -0.327779 1.938141 -0.986794 0.665392 -2.424820 0.403010 0.833175 0.732626 0.739168 -1.332305 -1.078133 -0.115126 -0.697185 0.555372 -1.366100 0.998554 1.543383 -1.056300 1.712169 -0.239296 -0.896959 0.477298 1.168634 -0.855496 1.884032 -0.181650 2.284212 0.357210 1.701890 -1.156621 -0.117512 -0.460521 -1.111414 -0.919286 1.578894 -2.056318 -0.134748 1.530021 -0.803263 -1.733575 1.064096 0.658859 1.072857 -0.397718 -0.293195 -1.087118 0.049673 -0.475636 0.621251 1.206947 -0.659034 -1.786657 -0.214382 1.199624 -0.845984 -1.181720 0.651393 0.259953 1.774491 -1.631116 0.738461 0.344789 0.327369 -2.085252 -2.037900 0.516817 -1.187577 -1.144770 1.285750 -2.649670 -0.673671 -1.096486 0.510821 -1.991715 -0.613241 0.318846 2.195855 0.125821 -0.590210 0.922337 0.169164 0.750959 -0.259846 0.535954 0.268153 0.823220 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.202822 0.040775 -0.209372 -0.069730 0.443079 -0.002812 -0.133560 0.373446 0.003078 0.301075 -0.243034 -0.043884 -0.085174 -0.325277 0.038259 0.234396 0.123989 0.083529 -0.093972 -0.118931 0.129292 -0.116998 0.078325 -0.105802 -0.010794 -0.326789 -0.021414 0.044971 0.231754 0.007970 -0.279001 0.030681 0.375837 -0.003326 0.203727 0.136196 0.198599 0.224823 0.198888 -0.094161 0.026461 0.208297 -0.136131 -0.286001 0.087210 -0.243389 -0.133815 -0.077514 0.165309 -0.192293 0.156423 0.177350 -0.021682 0.000750 -0.186427 0.099176 0.178024 0.000636 0.377489 0.076857 -0.174428 -0.281972 -0.117752 0.356143 -0.221190 0.037332 -0.041635 -0.290382 -0.092633 0.112792 -0.069541 -0.058376 -0.038312 0.113395 0.060150 -0.182096 0.146373 0.001202 0.203939 -0.238614 -0.263760 0.062025 -0.193195 0.271035 -0.027051 0.001975 -0.047756 -0.005278 0.065213 -0.299955 -0.028085 0.170784 -0.182089 0.107993 0.010344 0.138111 0.032352 0.031713 -0.049889 -0.127306 0.011031 0.038341 0.065695 -0.135949 0.189015 -0.155163 0.204447 -0.046621 0.121881 0.168946 0.216398 -0.007186 0.052189 0.205867 -0.102396 -0.096101 -0.296161 0.107705 0.013230 0.027023 -0.091942 0.081136 0.239839 -0.033101 0.244368 -0.363650 0.186866 0.110884 -0.005080 -0.170158 0.044643 -0.138410 -0.199245 -0.002084 0.184495 -0.046757 -0.015682 -0.108868 0.126348 -0.020081 -0.417026 0.022916 -0.108849 0.240624 -0.385162 -0.002701 -0.051692 -0.108427 -0.033580 0.128452 0.092954 0.156868 0.290442 0.193982 -0.151684 0.157383 -0.320999 0.185774 0.458415 0.049409 -0.261750 0.150407 -0.238369 0.058009 0.190044 0.115639 0.173864 0.110092 -0.007064 0.052445 0.081014 0.050688 0.327328 0.045643 0.229711 -0.215585 0.128552 0.020988 0.004572 0.424367 0.102499 -0.391012 0.251064 0.202613 -0.207008 0.152117 0.040144 -0.162596 -0.004347 -0.300818 0.082121 0.269908 -0.296499 -0.110939 0.015916 -0.249453 0.346851 0.007592 0.075457 0.172808 -0.279741 0.214986 0.386370 0.104290 0.038106 -0.127424 -0.195250 -0.387936 -0.334812 0.022688 0.007645 -0.214397 -0.007972 -0.260015 -0.136186 0.341758 0.014111 0.103150 -0.539700 0.161990 0.142318 0.071398 0.065890 -0.103573 -0.141065 0.048820 -0.157600 0.159825 -0.255436 0.145822 0.183600 -0.194041 0.277776 0.063542 0.078768 0.102815 0.086602 -0.187394 0.281205 -0.051779 0.139752 0.038311 0.223576 -0.167444 0.040933 -0.122988 -0.041637 -0.123034 0.160242 -0.272377 -0.058876 0.241022 -0.200874 -0.238219 0.049538 0.079977 0.278562 0.010516 -0.160505 -0.178160 -0.014901 -0.122086 0.106398 0.186468 -0.054943 -0.246976 0.040216 0.068160 -0.109996 -0.183079 0.078369 0.016254 0.251502 -0.264737 0.007367 0.093959 0.107238 -0.232979 -0.242593 -0.064393 0.011290 -0.121732 0.264387 -0.472587 -0.115604 -0.150747 0.044926 -0.381169 0.098928 -0.062270 0.360039 0.019486 -0.097222 0.186074 0.055276 0.094599 0.005961 0.051863 0.033653 0.116225 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.504376 0.268347 -0.322542 -0.405187 1.643317 0.007655 -0.012018 0.818509 -0.168745 0.538442 -0.947099 0.047561 0.001037 -0.968390 0.271811 0.410983 0.232549 0.224459 -0.347838 -0.278946 0.318897 -0.112705 0.123046 -0.505038 -0.031148 -0.749180 -0.180323 0.111629 0.365220 0.196074 -0.637960 0.232230 0.771629 -0.091259 0.326062 0.416566 0.765401 0.595982 0.162695 -0.136679 0.485965 0.296028 -0.226525 -0.897676 0.259569 -0.599126 -0.790355 -0.287848 0.291232 -0.779755 0.331598 0.574636 0.113916 -0.235243 -0.486779 0.435329 0.687290 -0.234338 0.759884 0.473942 -0.712418 -0.633106 -0.348224 0.838370 -0.458171 0.552527 0.016391 -0.988080 -0.577295 0.800064 0.080095 -0.384016 -0.555544 -0.050222 0.220172 -0.397590 0.389699 0.004156 0.550354 -0.494670 -0.500723 0.355546 -0.409364 0.782976 0.116660 -0.060218 -0.060960 -0.232964 0.329944 -0.601294 -0.427739 0.695303 -0.384703 0.298611 -0.636755 0.112585 0.187864 -0.138340 -0.242793 -0.699096 0.216049 0.255754 0.090919 -0.373367 0.078366 -0.700782 0.498564 0.377064 0.137942 0.474898 0.130802 -0.068722 -0.085104 0.254532 -0.293205 -0.002596 -0.847858 0.267528 -0.034587 0.057882 -0.446063 -0.085559 0.732688 0.033488 0.370928 -0.812029 0.852727 0.424502 -0.366752 -0.368295 0.239748 -0.178335 -0.619962 0.157584 0.423410 -0.016231 0.029227 0.135858 0.344462 -0.227152 -0.886766 -0.173002 -0.461478 0.704223 -1.097373 0.024207 -0.096155 -0.202979 -0.254731 0.360379 0.315305 0.268425 0.855482 0.430981 -0.352612 0.573848 -0.835061 0.677562 1.462534 0.484756 -0.692538 0.339884 -0.650539 0.326823 0.291066 0.114503 0.060059 0.411958 -0.283927 0.151116 0.094142 -0.198573 0.832861 0.441430 0.580978 -0.993591 0.276320 -0.290842 0.174510 1.090934 0.615418 -1.143911 0.609627 1.012348 -0.395800 0.108215 0.176870 -0.599044 -0.348546 -0.639614 0.305713 0.516026 -0.908030 -0.566151 -0.052369 -0.623690 0.761075 0.201560 0.047040 0.103607 -0.505114 0.209786 1.184554 0.133989 0.060475 -0.112151 -0.389228 -0.753483 -0.931927 0.034489 0.419813 -0.596946 -0.185879 -0.588790 -0.380621 1.082777 -0.448668 0.163369 -1.140637 0.474763 0.383795 0.217383 0.299897 -0.623059 -0.401734 -0.041792 -0.324356 0.200095 -0.736089 0.146220 0.422707 -0.549348 0.799413 0.176532 -0.076516 0.098511 0.470647 -0.119929 0.764045 0.099991 0.871851 0.230461 0.795186 -0.523856 0.083449 -0.381649 -0.330137 -0.419158 0.758043 -1.006018 -0.120272 0.824907 -0.247489 -0.901247 0.511851 0.498108 0.640769 -0.260589 -0.400573 -0.154247 -0.048300 -0.298803 0.399555 0.466214 -0.528355 -0.731842 -0.166067 0.638473 -0.677379 -0.435100 0.437928 0.169907 0.961755 -0.671402 0.472685 0.265427 0.280115 -1.127524 -0.727316 0.060795 -0.223894 -0.338999 0.465288 -1.317715 -0.600338 -0.374860 0.422782 -0.928813 -0.083527 -0.033725 0.863346 -0.052731 -0.018559 0.540552 0.210761 0.080381 -0.144676 0.180808 0.175997 0.268129 +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&) = -1.151310 0.673742 -0.288922 -0.747370 2.786256 -0.222771 0.359198 0.966356 -0.582879 1.064300 -1.898302 -0.281851 -0.307997 -2.110139 0.400604 0.117318 0.738651 0.469833 -0.407586 0.161091 0.689574 -0.760803 0.180712 -1.003109 -0.075969 -1.711215 -0.438338 0.269434 1.119491 -0.195889 -0.540187 0.451982 2.122813 0.022860 1.262493 1.137012 0.962060 1.410407 0.548593 -1.225024 0.482575 0.974037 -0.621991 -1.749119 0.235807 -1.032736 -1.458230 -0.739922 0.621447 -1.063814 -0.302338 1.241963 0.042537 -0.160440 -1.386968 0.704773 1.899849 -0.212577 1.840992 0.730409 -0.812990 -0.699437 -0.719135 1.201671 -0.990274 0.326515 -0.312451 -1.627872 -0.450481 1.106082 -0.168703 -0.821449 -1.096981 0.294436 0.726591 -1.058901 0.786623 -0.030723 -0.031765 -1.713355 -1.209449 0.499259 -0.722377 1.706652 0.094058 -0.048477 0.256048 -0.228671 0.536760 -1.529765 -0.558650 1.249306 -0.840871 -0.060381 -0.365852 1.158552 0.540653 -0.068309 -0.866799 -1.486679 0.364310 -0.147239 0.245373 -0.525160 0.497865 -1.247770 0.380741 0.255345 0.296981 1.465203 0.785844 0.449761 0.514251 0.770616 -1.326359 -0.356608 -1.686256 0.574072 -0.533390 -0.067158 -0.499567 0.205673 1.083761 0.306796 1.089243 -1.989372 1.429250 1.025938 -0.325361 -0.976919 0.339947 -0.676908 -1.253916 -0.017383 0.924057 0.036872 0.257716 -0.175721 0.490459 -0.264859 -1.089041 0.021278 -0.574571 1.845851 -2.252232 0.051871 -0.206818 -0.474075 -0.460434 0.716429 0.635400 0.654919 1.808448 0.972187 -1.114802 1.471154 -1.746519 0.959965 2.938277 0.557326 -1.439489 0.951013 -1.170667 0.256742 0.757035 0.606151 0.683376 0.026953 -1.056306 -0.298058 0.492765 -0.372045 1.766078 0.342898 0.837313 -1.913275 1.409137 0.048987 -0.140520 2.423995 0.665269 -2.150774 1.331743 1.742930 -1.445806 0.038163 0.464354 -1.264321 -0.562460 -1.514104 0.587108 0.865487 -1.566208 -0.828719 -0.202531 -1.473646 1.532200 0.311540 -0.208968 0.344983 -0.944624 -0.455779 2.596244 0.222109 0.123774 -0.540933 -0.939547 -1.041265 -2.061972 0.113553 0.118738 -1.221279 -0.206423 -1.392338 -0.457734 1.964758 -0.670970 0.598174 -2.634587 0.671057 0.801964 0.945975 0.401469 -0.984169 -0.923983 0.338659 -0.580534 0.186708 -1.329993 0.833788 1.215194 -1.138185 1.142017 -0.315681 -0.640113 0.720812 0.882548 -0.943860 1.710272 -0.054252 2.221364 0.413586 1.431959 -1.113308 -0.090072 -0.418115 -0.774195 -1.000417 1.168584 -1.829794 -0.180383 1.535706 -0.379000 -1.902407 0.748373 0.668668 1.010157 -0.292531 -0.608725 -0.785157 0.146005 -0.303553 0.762611 1.041674 -0.463458 -1.419416 0.000512 1.231163 -0.541066 -0.810177 0.562029 0.209747 1.621763 -1.514955 0.611411 0.259958 0.713108 -1.514253 -2.064323 0.622599 -0.891686 -0.651337 1.350043 -2.559158 -0.673501 -0.929180 0.508768 -1.728829 -0.058119 0.230575 1.968909 0.048899 -0.628482 0.852419 0.101485 0.424268 -0.371856 0.476835 0.125159 0.725870 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = -1.064553 0.564195 -0.099028 -0.866844 2.534186 0.055651 0.119924 0.955626 0.494665 0.611053 -2.163028 -0.804464 -0.351336 -1.663787 0.439067 0.141945 0.313179 0.629820 -0.912091 -0.478061 0.933634 -0.062785 0.117685 -1.369424 0.183765 -0.632637 -0.774895 -0.086472 0.018912 0.714939 -0.918013 0.442975 1.412837 0.376884 0.736992 0.873228 1.104140 1.879258 -0.303537 1.169899 0.843144 1.004538 -0.428191 -2.235961 0.991540 -1.474309 -1.028386 -1.016453 0.404336 -1.718999 1.652093 1.033406 0.357609 -0.490847 -0.828195 0.160131 1.515534 0.518736 1.311542 1.190470 -1.317630 -0.014872 -0.889691 0.395982 -0.888329 1.937830 0.720168 -1.958142 -1.329152 1.158157 1.233938 -1.173376 -1.710173 -0.381938 0.132618 -0.365339 0.955635 -0.034899 0.662720 -0.514540 -1.200725 0.412363 -0.652463 1.447948 -0.181455 -0.446600 -0.605578 -0.612933 0.914977 -0.818953 -1.231869 1.284221 -0.456613 1.041692 -1.209530 -0.194483 0.015686 -0.042630 -0.800309 -0.948456 0.535537 0.873085 0.108910 0.452386 -1.064727 -1.234129 1.676065 1.289144 -0.437039 0.275189 0.567450 0.010204 -0.175353 0.229617 -0.657663 0.770562 -1.526652 0.388590 -0.040957 0.234309 -0.364615 -0.148681 0.787540 -0.461994 0.317877 -1.084811 1.750976 0.936785 -1.197658 -0.471485 0.764636 -0.581344 -1.523163 0.133973 0.853692 0.498200 -0.116225 0.269834 0.145770 -0.897228 -1.076862 -0.661673 -1.044336 0.896819 -1.202907 -0.270468 -0.382369 -0.734676 -0.606860 0.598386 0.174984 0.162750 1.494078 0.804502 -0.763938 -0.257920 -1.203166 1.134576 2.764702 0.832786 -1.461049 0.151477 -0.380017 1.070548 0.814062 -0.139205 0.007859 0.933587 -0.221868 0.424001 -0.809133 -0.928590 1.443408 1.569391 1.334485 -2.065162 0.561939 -0.536398 0.126271 2.295849 1.366917 -1.817611 0.168780 1.746759 -0.756545 -0.268119 0.080653 -0.355780 -0.491323 -1.035332 0.624709 0.470328 -1.759042 -1.575870 -0.045519 -1.443061 1.433938 0.448818 0.526608 -0.137496 -1.479235 -0.075624 2.490914 0.118233 -0.296964 0.047717 -0.389107 -0.621130 -1.787001 0.380964 0.945730 -0.869357 -0.814750 -0.877120 0.033753 2.031562 -1.331442 -0.076478 -0.372739 0.131884 0.485330 -0.521887 0.953662 -1.789228 -1.077261 -0.376633 -0.286263 0.956454 -0.653534 -0.142582 1.383234 -0.983160 1.006631 1.536219 0.237205 -0.250573 1.468280 0.114286 1.222830 -0.431065 1.403981 -0.036328 1.648197 -0.849219 -0.200802 -0.385665 -0.043432 -0.618144 1.770422 -1.646333 0.090214 1.215116 -0.851868 -0.903249 1.475086 0.705535 1.133077 -0.539573 -0.298337 -0.566014 0.152554 -0.082748 0.321250 1.234611 -0.543650 -1.804351 -0.892222 0.829291 -1.455758 -0.797346 0.915580 -0.033184 2.083328 -1.081296 0.954535 0.501828 -0.327465 -1.989188 -0.923078 -0.043747 -0.781022 -0.679323 1.110360 -1.814416 -0.891044 -0.749787 0.991951 -1.152236 -0.269092 -0.430066 1.204909 0.663289 0.164729 0.992131 0.607647 0.790092 -0.026011 -0.246359 0.377110 1.031050 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.192330 0.470606 -0.329571 -0.922254 2.789319 0.030964 0.094890 1.053543 0.468676 0.698047 -2.273764 -0.866881 -0.465017 -1.861740 0.473190 0.328945 0.391121 0.715659 -1.028874 -0.511464 1.076790 -0.113878 0.191154 -1.457515 0.201639 -0.592442 -0.785213 -0.073789 0.108191 0.698506 -1.123586 0.453698 1.552138 0.377750 0.761043 0.900239 1.236793 2.098893 -0.331930 1.068654 0.856263 1.170331 -0.483287 -2.471919 1.157089 -1.639354 -1.108330 -1.081771 0.536875 -1.821134 1.826206 1.152097 0.370466 -0.558041 -0.937285 0.180109 1.718534 0.535032 1.490725 1.268968 -1.370455 -0.102781 -0.972867 0.458378 -1.007264 2.079677 0.802333 -2.117900 -1.489401 1.209266 1.338916 -1.357838 -1.919506 -0.398026 0.165560 -0.416183 1.059592 -0.026443 0.912614 -0.683087 -1.421519 0.356885 -0.846552 1.604027 -0.265035 -0.464146 -0.641894 -0.659917 1.002764 -0.927149 -1.297435 1.330106 -0.511095 1.210062 -1.298254 -0.200037 -0.090643 -0.066536 -1.007778 -0.994606 0.533241 0.953199 0.179591 0.465621 -1.022651 -1.270201 1.819231 1.299465 -0.382481 0.279599 0.775373 -0.075790 -0.251308 0.281740 -0.656782 0.751083 -1.683243 0.374668 0.013233 0.332615 -0.410229 -0.083430 0.947342 -0.613313 0.396343 -1.261027 1.912516 0.961044 -1.269492 -0.543553 0.869777 -0.595782 -1.631541 0.131475 1.014374 0.440516 -0.190585 0.262067 0.255615 -0.906008 -1.368503 -0.593450 -1.149804 0.963182 -1.363400 -0.268777 -0.479111 -0.906281 -0.572219 0.603962 0.169004 0.221502 1.630138 0.948844 -0.876445 -0.157934 -1.344250 1.297807 3.022727 0.921059 -1.636824 0.139416 -0.461425 1.213100 0.942817 -0.129138 0.111568 0.994232 -0.121662 0.569836 -0.747412 -0.920329 1.600711 1.597484 1.534964 -2.269938 0.497115 -0.500268 0.226261 2.541296 1.428118 -2.041836 0.313622 1.848233 -0.729415 -0.209909 0.021533 -0.341659 -0.523982 -1.196409 0.762644 0.586045 -1.954730 -1.730825 -0.078574 -1.572257 1.573184 0.431447 0.497810 -0.032027 -1.706777 0.112828 2.666359 0.136196 -0.355231 -0.028866 -0.503361 -0.740382 -1.976235 0.475313 0.939598 -0.930414 -0.916760 -1.001837 -0.026633 2.292778 -1.326014 -0.120745 -0.576537 0.229569 0.539582 -0.502276 1.084962 -1.916932 -1.159906 -0.338249 -0.296559 1.077115 -0.717291 -0.232397 1.498323 -1.191597 1.019687 1.643396 0.383343 -0.225325 1.601277 0.097258 1.342959 -0.420484 1.620836 -0.132913 1.784697 -0.900564 -0.135949 -0.411011 0.086196 -0.630944 1.880224 -1.769387 0.044234 1.345257 -0.931456 -1.039974 1.557266 0.778935 1.285163 -0.516802 -0.422073 -0.561790 0.150713 -0.062952 0.336616 1.391221 -0.599233 -1.955493 -0.968713 0.840715 -1.547037 -0.772050 1.014756 -0.027286 2.298953 -1.206916 1.007039 0.498184 -0.342534 -2.081277 -1.028075 -0.084932 -0.741800 -0.681616 1.411161 -1.997839 -0.934456 -0.822414 1.131437 -1.273437 -0.176608 -0.590467 1.287133 0.741485 0.243660 1.175997 0.694246 0.878816 -0.076745 -0.302601 0.439216 1.135757 +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.965254 0.599227 0.132099 -0.810362 2.217466 0.015230 0.149927 0.857807 0.527495 0.523954 -1.999439 -0.741893 -0.320758 -1.469463 0.396813 -0.081413 0.236714 0.606398 -0.814726 -0.402342 0.859693 -0.011905 0.047941 -1.281728 0.164739 -0.641480 -0.721039 -0.105201 -0.069918 0.732161 -0.682688 0.430367 1.291701 0.376786 0.720199 0.852152 0.972669 1.739588 -0.317419 1.270525 0.771562 0.917161 -0.379533 -2.043655 0.880155 -1.309537 -0.889829 -0.953965 0.323842 -1.616012 1.483213 0.916908 0.344128 -0.424174 -0.720602 0.139945 1.331444 0.548731 1.140151 1.111590 -1.207812 0.100347 -0.854541 0.299915 -0.811214 1.795016 0.668266 -1.762273 -1.164268 1.033864 1.131696 -0.995511 -1.502228 -0.368109 0.097986 -0.312951 0.867156 -0.045227 0.412528 -0.339210 -1.029424 0.389067 -0.479680 1.287903 -0.179787 -0.428894 -0.571273 -0.550484 0.837392 -0.700544 -1.164570 1.213753 -0.403376 0.892880 -1.121980 -0.188551 0.092138 -0.019369 -0.640467 -0.849958 0.526910 0.793078 0.083310 0.457478 -1.142181 -1.125031 1.534460 1.231199 -0.492271 0.264470 0.359245 0.103570 -0.143582 0.178065 -0.619475 0.837764 -1.406586 0.390891 -0.093564 0.200345 -0.270268 -0.173046 0.628260 -0.358154 0.237066 -0.911426 1.592748 0.866080 -1.089719 -0.399441 0.713483 -0.542556 -1.395505 0.068817 0.757159 0.553070 -0.106196 0.251446 0.076512 -0.846633 -0.782128 -0.730000 -0.940972 0.761664 -1.008791 -0.272814 -0.348451 -0.628608 -0.593674 0.539514 0.130202 0.104193 1.338322 0.710397 -0.649889 -0.360826 -1.057730 0.941633 2.459627 0.718283 -1.293447 0.131678 -0.261086 0.936194 0.725774 -0.146207 -0.045034 0.929365 -0.268898 0.282221 -0.872279 -0.932409 1.291199 1.542220 1.133609 -1.887079 0.579116 -0.572789 0.030065 2.061784 1.315331 -1.597975 0.018820 1.568624 -0.782869 -0.379316 0.081131 -0.288941 -0.418226 -0.874988 0.527880 0.365155 -1.561086 -1.447533 -0.013378 -1.322318 1.269733 0.411986 0.550545 -0.206060 -1.323993 -0.263376 2.266947 0.102435 -0.300398 0.062299 -0.302673 -0.511466 -1.614567 0.348480 0.888830 -0.758149 -0.778119 -0.757318 0.112414 1.769747 -1.299030 -0.082993 -0.164211 -0.019698 0.426701 -0.541636 0.861585 -1.666392 -0.993551 -0.415824 -0.232027 0.896051 -0.515454 -0.102380 1.345810 -0.823122 0.930306 1.450879 0.090053 -0.276026 1.399802 0.087897 1.094306 -0.457961 1.160114 -0.014142 1.467089 -0.792092 -0.264812 -0.313696 -0.099653 -0.559985 1.612987 -1.453909 0.133333 1.013364 -0.838012 -0.679591 1.388762 0.627146 0.981274 -0.504391 -0.127049 -0.586946 0.153461 -0.102567 0.232104 1.134455 -0.436070 -1.666746 -0.807376 0.739648 -1.363347 -0.821814 0.802858 -0.039924 1.863130 -0.955739 0.889556 0.472461 -0.389083 -1.833497 -0.816756 -0.016142 -0.819911 -0.695426 0.877894 -1.559706 -0.789096 -0.673912 0.910202 -1.032914 -0.365644 -0.335096 1.062245 0.634800 0.146898 0.864853 0.522664 0.784734 0.040501 -0.241279 0.314563 0.988072 +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.598447 1.333402 0.500856 -1.519908 3.480967 0.038385 0.409557 1.207165 0.797851 0.841245 -3.409781 -1.082801 -0.394769 -2.351386 0.553559 -0.436051 0.181964 1.113616 -1.239417 -0.321481 1.401084 -0.107258 0.054313 -2.199943 0.162018 -1.005693 -1.213533 -0.172423 -0.284240 1.175858 -0.683456 0.589874 2.079500 0.678370 1.284290 1.509594 1.315895 2.985287 -0.489016 2.279994 1.263883 1.467945 -0.616910 -3.398069 1.421467 -2.084107 -1.417444 -1.792081 0.409580 -2.810433 2.568345 1.484228 0.583525 -0.796456 -1.267247 0.184414 2.338962 0.912689 1.852838 1.778667 -1.946639 0.556836 -1.449744 0.254651 -1.293610 2.937453 1.290499 -2.791862 -1.679419 1.664921 2.166404 -1.751977 -2.584295 -0.591684 0.093130 -0.565306 1.338051 -0.273951 0.113354 -0.571293 -1.444968 0.656849 -0.604260 2.039626 -0.298698 -0.655248 -1.140948 -0.788231 1.322140 -1.110126 -2.006369 2.079151 -0.508482 1.372031 -1.849699 -0.068356 0.267355 -0.088789 -1.104879 -1.262731 0.930968 1.346197 0.137183 0.886053 -2.170633 -1.938125 2.455243 2.192441 -1.085066 0.423066 0.432680 0.479190 -0.051969 0.278298 -1.140819 1.643257 -2.394076 0.580031 -0.166369 0.325717 -0.313969 -0.322961 0.739304 -0.483735 0.343989 -1.384803 2.703880 1.410387 -1.839043 -0.762419 1.197759 -0.837152 -2.222465 0.050884 1.080260 1.060657 -0.131453 0.413344 -0.108810 -1.464468 -0.992739 -1.588049 -1.337876 1.427711 -1.472512 -0.411600 -0.527351 -0.936845 -0.994241 0.878484 0.241887 0.022063 2.253260 1.132962 -0.863133 -0.751482 -1.606042 1.332179 3.950150 1.408415 -2.097591 0.262111 -0.186263 1.376357 1.156392 -0.251849 -0.122782 1.482259 -0.807471 0.029373 -1.473203 -1.768627 2.067780 2.634644 1.683180 -3.106834 1.334312 -0.806641 -0.072068 3.425739 2.158867 -2.418888 -0.242906 2.525545 -1.325499 -0.859351 0.212971 -0.334393 -0.759758 -1.085659 0.743512 0.330575 -2.339656 -2.579813 -0.191762 -2.210533 2.107006 0.646256 0.864985 -0.564542 -2.099272 -0.723978 3.656738 0.140082 -0.680575 0.213066 -0.337390 -0.544597 -2.647815 0.581949 1.598791 -1.215202 -1.391271 -1.186940 0.426245 2.633141 -2.333386 -0.250680 0.106339 -0.480584 0.700719 -0.980929 1.349468 -3.045071 -1.567059 -0.770695 -0.087548 1.478055 -0.547093 0.064707 2.503753 -1.225657 1.346880 2.631970 0.220163 -0.407918 2.521643 0.066992 1.831369 -0.919493 1.962059 -0.038332 2.286999 -1.196631 -0.537036 -0.386034 -0.093977 -0.800784 2.602669 -2.300206 0.244009 1.460074 -1.381468 -0.881559 2.392368 1.033971 1.388019 -0.804614 0.040291 -0.973945 0.200395 -0.201462 0.170667 1.849581 -0.622318 -2.817409 -1.311862 1.242353 -2.119850 -1.219506 1.205165 0.043708 2.941018 -1.547464 1.622287 0.647570 -0.851571 -3.056991 -1.317132 0.216012 -1.560076 -1.289149 1.284312 -2.398413 -1.275069 -1.133703 1.496179 -1.660221 -0.708611 -0.436360 1.697285 1.161070 0.205279 1.307177 0.660852 1.503505 0.149064 -0.405616 0.447845 1.808563 +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*) = -1.112373 0.750930 0.457654 -1.118936 2.894473 0.013189 0.261535 1.196888 0.908870 0.603725 -2.519362 -0.780145 -0.082381 -1.344151 0.452323 -0.319404 0.027969 0.777592 -1.212470 -0.643417 0.894141 0.584448 -0.046151 -1.522320 0.043622 -0.649708 -1.100213 -0.047790 -0.416739 0.812499 -0.793957 0.493466 1.556389 0.159539 1.014278 1.075873 1.469111 1.899106 -0.686181 2.065377 1.373691 0.869347 -0.442740 -2.200311 0.777850 -1.487902 -1.342797 -1.036950 0.314596 -2.063662 2.145563 0.979944 0.537319 -0.504596 -0.473847 0.517483 1.182426 0.451176 1.227589 1.367097 -1.946689 0.623155 -1.176972 0.957670 -0.903633 2.701516 0.496385 -2.359202 -1.745298 1.441293 1.785825 -1.484217 -1.965153 -0.508388 0.005747 -0.315632 1.052101 -0.162212 1.175170 -0.278960 -0.948615 0.721362 -0.421479 1.237102 -0.178665 -0.520580 -0.995943 -0.627794 0.849674 -0.724431 -1.574543 1.699925 -0.710232 1.129315 -1.883198 -0.877063 0.109383 -0.018118 -0.525589 -1.274488 0.709600 1.047659 -0.011310 0.637017 -1.145888 -1.201308 1.613444 1.939400 -0.667220 0.271730 -0.307815 0.362365 0.000327 0.136604 -0.297071 1.178973 -1.695614 0.597542 -0.430139 0.203130 -0.376085 -0.307657 0.823504 -0.011016 0.251154 -0.811292 1.961794 0.811141 -1.639360 -0.286056 0.815320 -0.538216 -1.770768 0.116081 0.683792 0.909311 -0.139965 0.336052 0.145998 -1.117395 -0.622626 -1.235912 -1.022924 0.188972 -0.978121 -0.399037 -0.262682 -0.447630 -0.847059 0.956812 0.371364 0.001045 1.698298 0.719168 -0.464731 -0.918883 -1.336388 0.999697 2.657400 0.627513 -1.476742 0.275556 -0.491224 1.026812 0.849162 -0.058385 -0.527004 1.394283 -0.326049 0.304248 -1.406638 -1.194398 1.604356 2.024556 1.046413 -2.236149 0.379835 -1.311933 -0.021141 2.496017 1.899702 -2.008815 -0.426267 1.888378 -0.429316 -0.857229 0.289880 -0.565925 -0.855388 -0.766778 0.547443 0.331865 -1.620883 -1.700771 0.386727 -1.510168 1.489404 0.434628 0.207742 -0.486870 -1.569980 -0.585803 2.776527 0.128905 -0.352376 0.338407 -0.164095 -0.041116 -1.938431 0.291316 1.417044 -0.706580 -0.974687 -0.787246 0.424000 1.958411 -1.853377 0.031181 0.156982 -0.334060 0.531416 -1.070056 1.056309 -2.285807 -1.051434 -1.012655 -0.242441 0.957131 -0.859032 -0.285884 1.749348 -0.786018 1.243627 2.079467 -0.468292 -0.830682 1.768369 0.144095 1.377313 -0.421405 0.852516 0.099023 1.621788 -1.001555 -0.463593 -0.529322 -0.026918 -0.754583 1.982138 -1.722344 0.229527 0.796521 -1.098276 -0.562552 1.804046 0.887124 0.757005 -0.656755 -0.074060 -0.802243 0.045246 -0.383026 0.143128 1.239144 -0.746291 -2.108700 -0.769565 0.908559 -2.122578 -0.949713 0.804722 0.083942 2.263655 -1.075463 1.137148 0.786946 -0.432031 -2.703279 -0.847741 -0.223920 -1.230106 -0.887674 0.360642 -1.489276 -1.451134 -0.770573 1.111315 -1.012835 -1.018254 0.121964 1.333396 0.962850 0.056016 0.930518 0.507808 1.080067 0.259197 -0.353751 0.409652 1.008783 +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.419849 0.223372 -0.008219 -0.299200 0.818944 -0.078148 -0.048095 0.368717 0.392597 0.252522 -0.783905 -0.421484 -0.201155 -0.655782 0.173047 0.019077 0.147852 0.331116 -0.304295 -0.197424 0.394539 -0.042715 0.019840 -0.515160 0.084407 -0.306308 -0.269816 -0.041030 -0.053292 0.284491 -0.329094 0.232010 0.599963 0.219208 0.356301 0.386923 0.346118 0.788154 -0.018671 0.594794 0.265093 0.432621 -0.162572 -0.911301 0.421604 -0.534198 -0.251095 -0.433475 0.165301 -0.625005 0.736705 0.378593 0.127642 -0.138087 -0.367898 -0.040877 0.500142 0.400206 0.512192 0.466168 -0.429133 0.074625 -0.353547 0.088073 -0.433809 0.658607 0.297919 -0.727684 -0.434154 0.391074 0.463609 -0.353913 -0.571059 -0.143448 0.005788 -0.138619 0.377690 0.020726 0.191283 -0.101209 -0.530125 0.144172 -0.230275 0.563857 -0.111630 -0.176748 -0.306485 -0.212073 0.367316 -0.297037 -0.445800 0.422811 -0.166668 0.412064 -0.246518 -0.009210 0.082202 -0.012811 -0.202180 -0.289059 0.211122 0.267965 0.068463 0.353102 -0.478315 -0.398635 0.740049 0.438913 -0.208100 0.077528 0.299603 0.037188 -0.054141 0.084794 -0.231937 0.283150 -0.629441 0.186389 -0.000452 0.069173 -0.064319 -0.030469 0.237593 -0.230614 0.107881 -0.413879 0.637546 0.373753 -0.353239 -0.137556 0.320811 -0.222104 -0.566018 -0.036086 0.390905 0.221892 -0.076479 0.087513 0.014791 -0.323889 -0.349846 -0.229763 -0.428472 0.346295 -0.357403 -0.105491 -0.186411 -0.349551 -0.215185 0.158056 0.000000 0.089738 0.542870 0.337446 -0.326304 -0.286234 -0.471413 0.371519 1.017665 0.189051 -0.540458 0.056073 -0.041782 0.373785 0.339836 -0.018055 0.048430 0.365017 -0.006554 0.134588 -0.440763 -0.349902 0.538968 0.589635 0.504603 -0.721686 0.227712 -0.102379 -0.002798 0.924021 0.459782 -0.643750 -0.016939 0.635477 -0.432646 -0.144514 0.009149 -0.047374 -0.056801 -0.431708 0.248508 0.205923 -0.710524 -0.584596 -0.003939 -0.570362 0.519718 0.150203 0.293131 -0.020416 -0.634906 0.001349 0.987305 0.081145 -0.103451 -0.019867 -0.193482 -0.245823 -0.687272 0.162005 0.308833 -0.306863 -0.276622 -0.317619 0.029400 0.775333 -0.482578 -0.057861 -0.032536 0.010465 0.192662 -0.246543 0.305052 -0.617603 -0.423365 -0.070849 -0.109917 0.407290 -0.143148 -0.035665 0.567267 -0.364598 0.334632 0.714802 0.154863 -0.048087 0.575409 -0.016317 0.460053 -0.275928 0.350743 0.000613 0.590075 -0.321808 -0.117296 -0.104688 -0.008168 -0.244581 0.629069 -0.576087 0.050401 0.448937 -0.389580 -0.239519 0.533595 0.267598 0.498077 -0.177196 -0.053853 -0.288038 0.102226 -0.010195 0.111905 0.500613 -0.050799 -0.685800 -0.299473 0.280279 -0.529223 -0.422940 0.334459 -0.059586 0.779987 -0.417449 0.344781 0.211024 -0.156527 -0.664242 -0.301339 -0.027959 -0.297078 -0.248683 0.403617 -0.694173 -0.294037 -0.268832 0.402683 -0.420629 -0.004948 -0.223044 0.437177 0.299841 0.048569 0.378670 0.222488 0.317917 0.055913 -0.172313 0.104305 0.497767 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__copy_move::__assign_one(int*, int const*) = -0.423849 0.296150 -0.325423 -0.295331 1.240970 -0.015997 -0.016423 0.747930 -0.360609 0.522616 -0.679574 0.194806 0.008925 -0.850678 0.186701 0.409578 0.203849 0.194752 -0.144338 -0.075077 0.266367 -0.271533 0.090287 -0.357323 -0.056432 -0.714613 -0.020961 0.101248 0.471846 0.066708 -0.449119 0.148925 0.679582 -0.056002 0.352712 0.385900 0.523190 0.446371 0.336726 -0.389104 0.199366 0.288778 -0.230116 -0.687483 0.170129 -0.443005 -0.554537 -0.221792 0.245066 -0.540417 0.136277 0.484869 0.017419 -0.128386 -0.477889 0.348245 0.604814 -0.269018 0.696941 0.299442 -0.451389 -0.654064 -0.240503 0.729162 -0.360974 0.157377 0.022283 -0.661192 -0.206878 0.509041 -0.072750 -0.252555 -0.275166 0.118265 0.187605 -0.423888 0.287815 -0.041277 0.207560 -0.553420 -0.410713 0.243245 -0.337307 0.677975 0.090837 0.008039 -0.045198 -0.087634 0.197904 -0.603965 -0.216208 0.526307 -0.323741 0.129594 -0.391326 0.381459 0.210720 -0.057489 -0.205447 -0.503029 0.162927 0.129780 0.118460 -0.453018 0.210985 -0.564344 0.292173 0.077053 0.164877 0.530522 0.204714 0.024989 0.045158 0.332329 -0.305049 -0.096675 -0.709226 0.217426 0.003920 0.064008 -0.307908 -0.008169 0.589219 0.032639 0.404551 -0.766678 0.590970 0.349780 -0.112086 -0.442496 0.151149 -0.219279 -0.432149 0.047873 0.353247 -0.063028 0.038205 -0.007766 0.275471 -0.083491 -0.813517 -0.182545 -0.276374 0.789993 -1.034360 0.054520 -0.089928 -0.145010 -0.168877 0.267102 0.280517 0.289059 0.701077 0.394719 -0.271864 0.674381 -0.683019 0.459318 1.163039 0.484149 -0.565308 0.360012 -0.564752 0.123230 0.244535 0.167153 0.214324 0.224831 -0.381020 -0.046167 0.333795 -0.093887 0.698269 0.195658 0.434220 -0.694556 0.429120 -0.041992 0.008291 0.894665 0.349493 -0.892647 0.631033 0.700293 -0.378651 0.195190 0.167736 -0.519905 -0.225394 -0.508657 0.201581 0.440565 -0.689414 -0.389184 -0.111696 -0.526427 0.671930 0.126826 0.087907 0.147853 -0.378755 0.241262 0.898429 0.145618 0.020167 -0.203624 -0.359363 -0.767520 -0.727464 0.036314 0.207108 -0.499395 -0.127045 -0.551195 -0.375761 0.808705 -0.227720 0.151205 -1.192114 0.354140 0.330361 0.312246 0.166262 -0.475269 -0.311002 0.057528 -0.204637 0.171323 -0.560254 0.340443 0.421998 -0.447395 0.608720 0.028785 0.049742 0.247078 0.336108 -0.287444 0.647670 0.058014 0.771516 0.197717 0.579532 -0.447870 0.068824 -0.270400 -0.241741 -0.290044 0.484421 -0.729112 -0.121972 0.640750 -0.214337 -0.743953 0.283803 0.322836 0.512890 -0.129985 -0.339083 -0.143326 -0.072078 -0.328267 0.302336 0.392625 -0.369710 -0.526614 -0.022942 0.442414 -0.324509 -0.262399 0.290197 0.167292 0.666266 -0.591899 0.300158 0.129213 0.274245 -0.766774 -0.706790 0.128624 -0.126688 -0.325136 0.464912 -1.149063 -0.353588 -0.339055 0.230554 -0.948006 0.038451 -0.045442 0.767559 -0.120307 -0.087091 0.417124 0.081488 0.106821 -0.117284 0.252566 0.073844 0.256624 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.489369 0.446648 -0.245973 -0.424934 1.303951 -0.074369 0.031179 0.658979 -0.222890 0.478093 -0.902944 0.114077 0.013217 -0.995156 0.229068 0.318236 0.190936 0.312839 -0.160916 -0.026068 0.347020 -0.311815 0.065986 -0.546192 -0.030645 -0.737914 -0.069670 0.067243 0.330225 0.159286 -0.384959 0.213309 0.721000 0.045035 0.378127 0.492164 0.483574 0.665869 0.327797 -0.170997 0.303130 0.340967 -0.202762 -0.925247 0.280942 -0.500291 -0.552467 -0.404187 0.213290 -0.706474 0.341787 0.539411 0.084563 -0.231655 -0.630448 0.267335 0.793911 -0.110731 0.717789 0.429554 -0.463398 -0.473000 -0.284611 0.550522 -0.464872 0.294126 0.218220 -0.742004 -0.244959 0.647607 0.130568 -0.318573 -0.469833 -0.029225 0.150286 -0.421807 0.335635 -0.058844 0.069086 -0.490693 -0.425804 0.276681 -0.313662 0.778581 0.075692 -0.041793 -0.167345 -0.152455 0.336795 -0.541396 -0.406827 0.572325 -0.242150 0.186196 -0.379860 0.466081 0.319229 -0.148121 -0.234885 -0.527174 0.238596 0.192043 0.117302 -0.229259 -0.092704 -0.660988 0.477137 0.270040 -0.031213 0.511106 0.219157 0.099544 -0.006000 0.231793 -0.367198 0.039875 -0.868702 0.201357 0.041096 0.055935 -0.268274 -0.088893 0.530668 -0.037874 0.305142 -0.748219 0.800266 0.472807 -0.184801 -0.420148 0.267548 -0.180793 -0.520163 0.035362 0.386018 0.055643 0.046418 0.119107 0.189250 -0.195855 -0.729177 -0.308974 -0.364025 0.948332 -0.989426 0.044528 -0.123863 -0.211621 -0.219560 0.209206 0.209052 0.199106 0.776263 0.422484 -0.309796 0.532235 -0.683173 0.497921 1.355387 0.580593 -0.625218 0.311372 -0.410208 0.194828 0.266312 0.100900 0.150689 0.270430 -0.468500 -0.115314 0.157624 -0.328957 0.720133 0.343640 0.492381 -0.882118 0.581218 0.029294 0.029144 1.063275 0.433665 -0.917725 0.523874 0.895064 -0.520095 0.061582 0.150101 -0.407878 -0.224026 -0.489107 0.253807 0.348543 -0.803052 -0.611299 -0.238674 -0.619826 0.693879 0.188209 0.160968 0.023537 -0.431412 0.173665 1.082350 0.130764 -0.048054 -0.137017 -0.329095 -0.695737 -0.856657 0.072630 0.323159 -0.559497 -0.199104 -0.535559 -0.303242 0.912120 -0.476153 0.020396 -0.964531 0.252001 0.347000 0.268568 0.180665 -0.653377 -0.393709 0.076337 -0.113730 0.220030 -0.443389 0.335858 0.569943 -0.482018 0.565571 0.281718 0.145022 0.271324 0.563136 -0.215015 0.697385 -0.063108 0.878530 0.208453 0.680432 -0.473733 -0.003314 -0.240004 -0.271251 -0.320533 0.615582 -0.854559 -0.081749 0.733015 -0.208907 -0.727180 0.502937 0.420669 0.604564 -0.214250 -0.246965 -0.126537 -0.017742 -0.273430 0.279157 0.475171 -0.318884 -0.684857 -0.170957 0.600312 -0.427795 -0.342980 0.367133 0.161568 0.823414 -0.622083 0.508746 0.133714 0.156566 -0.895462 -0.721830 0.253667 -0.241088 -0.372820 0.490586 -1.237880 -0.417504 -0.359546 0.396970 -0.968359 0.051230 -0.114979 0.740334 -0.043338 -0.013420 0.456960 0.097248 0.169409 -0.101462 0.178220 0.062488 0.427443 +PE-benchmarks/program-wish-womens-day.cpp__main = -7.269789 3.859356 8.094930 -2.305550 9.663244 -0.762525 3.662974 3.892868 -3.776489 6.623656 -9.504145 -5.009918 -4.838328 -5.309079 0.278059 -6.934908 4.168823 -1.037581 -2.523253 2.091704 3.722745 -2.811334 -1.527314 -3.626202 -1.210485 -6.949268 -5.411018 0.641630 8.722158 -3.493392 0.318686 0.741641 15.539218 -0.572860 12.688218 8.396051 3.139825 7.195070 0.533268 -7.747277 -2.598179 9.515859 -6.783474 -4.517497 -2.821123 -6.495010 -5.286497 -2.011037 2.923380 -1.049062 -6.933134 6.342493 -1.081991 3.814658 -4.409530 6.788018 6.206633 1.401061 12.896924 1.798762 -2.786927 0.443127 -5.800851 5.381689 -3.626949 1.657158 -8.217215 -6.106159 1.275193 -2.166565 -2.977683 -6.145771 -3.757733 6.813298 1.326218 -7.401821 4.845847 -0.879268 -4.673084 -10.774897 -7.479934 1.789411 -0.535568 7.012098 -1.923722 -1.401141 1.745049 2.557590 -0.761979 -11.664842 0.482249 7.942324 -7.402236 -4.369082 -0.060491 5.030087 0.112691 5.541960 -5.891587 -5.955455 1.682402 -2.962962 1.998069 -7.653497 8.091373 -5.005948 -1.538429 -0.742192 2.098294 7.300709 4.782180 7.766702 10.456286 8.406715 -9.822121 -1.151062 -7.566736 3.708138 -6.846614 -1.519120 1.045696 5.229194 0.230711 4.243626 9.243538 -11.910342 2.231196 2.719320 -3.539741 -7.058783 -0.439760 -9.289945 -9.190489 -3.118028 3.860005 2.967582 0.966091 -7.683154 2.401270 -2.411762 0.400894 -1.129361 1.700332 5.060392 -10.860160 -2.255479 -1.791189 0.135075 -3.405543 8.327209 3.881331 4.329710 9.924184 5.595855 -5.267491 3.487215 -9.951068 -0.927798 9.130156 -2.253861 -9.000326 7.814781 -7.529147 -0.827218 6.366186 6.372261 5.358687 1.107976 -6.889225 -4.907245 3.212833 0.155902 10.687648 1.436441 3.163872 -5.101113 9.737839 -5.743561 -8.076810 10.317661 3.872515 -9.487071 2.358610 2.527237 -5.449174 -1.279762 4.800829 -8.864007 -1.899692 -7.608097 -1.732340 3.866306 -4.106218 0.590175 3.708061 -9.731803 10.024602 0.359054 -0.960530 3.549790 -8.288162 -11.357580 11.290144 0.531884 0.050733 -3.622987 -3.964760 -3.426781 -10.619886 1.692965 -1.999020 -4.685006 -4.050772 -9.976916 4.098092 4.584511 -0.395916 7.770214 -11.581039 -2.032266 4.463730 2.513578 5.275417 -1.502389 -5.918640 -1.997880 -4.486544 4.660088 -8.011903 9.179235 11.814347 -2.888197 7.583508 -4.855690 -10.140429 0.995398 3.385608 -11.086739 9.232643 -1.452221 8.146158 0.112561 6.239634 -6.214385 -3.483893 0.054228 -3.213707 -4.780265 4.050762 -5.052184 0.633419 -0.427671 -7.201669 -4.112733 0.968169 -2.998157 -1.753967 1.209803 1.151435 -10.815791 -0.125884 -3.338656 2.026943 7.359235 1.564370 -7.067372 3.789189 -0.957395 0.029194 -2.461318 -1.742517 -2.470870 4.672416 -8.101512 -5.261779 1.199861 2.594750 -4.230897 -11.948622 -1.462454 -7.953368 -5.387150 6.331513 -5.874192 0.269187 -5.404676 -3.670147 -7.388079 -6.501527 5.198768 12.154072 4.692539 -9.027566 1.209048 -1.097666 7.286700 0.620783 0.791166 -0.120991 2.028922 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.300006 0.172108 0.032652 -0.228785 0.569967 -0.158249 -0.018228 0.519788 0.286078 0.446345 -0.340536 -0.018462 -0.106281 -0.200973 0.042670 0.229206 0.243802 0.187480 -0.215314 -0.255901 0.069082 0.060232 -0.109199 -0.066126 -0.036675 -0.439018 -0.195863 0.043543 0.103160 0.008340 -0.145053 0.006245 0.625486 -0.185845 0.414666 0.290699 0.377254 0.188256 0.192433 0.045285 -0.002706 0.317367 -0.190718 -0.290993 0.118018 -0.202969 -0.184102 -0.085920 0.195428 -0.405732 0.203714 0.096525 0.051780 0.089179 -0.081361 0.329095 0.130116 -0.123136 0.546458 0.084186 -0.257878 -0.263947 -0.013572 0.603441 -0.202891 0.006605 -0.111455 -0.345914 -0.057127 0.093904 -0.091237 -0.059565 -0.257807 0.119399 -0.191709 -0.381395 0.202561 0.077759 0.412363 -0.279816 -0.213790 0.111040 -0.082063 0.249219 -0.101560 -0.188178 -0.056177 -0.011192 -0.073700 -0.298586 0.010375 0.191016 -0.164843 0.237987 -0.060073 -0.120730 -0.078856 0.033316 -0.114310 -0.205158 -0.002120 -0.062241 0.282799 -0.079065 0.201516 -0.053843 0.119100 0.060563 0.099300 0.151966 0.293324 0.074972 0.178366 0.235398 -0.223762 -0.034172 -0.512043 0.286542 0.103274 -0.087144 -0.021813 0.112226 0.173323 0.007068 0.374218 -0.431182 0.272197 -0.037883 -0.145185 -0.130661 0.037944 -0.114184 -0.347591 -0.030295 0.089061 0.006922 -0.124608 -0.209977 0.176513 -0.185883 -0.404767 -0.268333 -0.012724 0.125785 -0.476350 -0.011201 -0.248676 0.054440 -0.041823 0.277186 0.058401 0.099482 0.252221 0.284536 -0.017280 0.100427 -0.518556 -0.058823 0.245214 0.120669 -0.346328 0.279545 -0.259576 0.138890 0.235325 0.231580 -0.012414 0.370849 0.052203 -0.045215 0.102791 0.096986 0.369717 0.234684 0.285088 -0.442869 0.003199 -0.258562 -0.025039 0.430429 0.417318 -0.401518 0.165254 0.095698 0.065277 0.193403 0.179938 -0.269185 -0.284366 -0.372970 0.017834 0.276717 -0.207700 0.016951 0.038630 -0.308277 0.269908 0.011522 -0.131721 0.390679 -0.531812 0.067497 0.249844 0.020024 0.039117 0.120129 -0.180047 -0.364518 -0.418184 0.052617 0.190844 -0.301720 -0.220881 -0.413589 0.172449 0.213493 0.098298 0.240670 -0.386441 0.125879 0.360161 -0.033456 0.129316 -0.352600 -0.154100 -0.127411 -0.120448 0.286417 -0.256016 0.230704 0.311534 -0.035711 0.261205 0.288645 -0.110947 0.007179 0.121628 -0.314001 0.379223 -0.090840 -0.075812 0.029272 0.228702 0.040821 0.083522 -0.183837 -0.099333 -0.220762 0.260922 -0.409736 -0.034551 0.201642 -0.390181 -0.112571 0.209247 -0.127904 0.128475 0.072104 -0.045672 -0.321199 -0.174787 -0.306391 0.178807 0.294887 0.134940 -0.368275 0.093958 -0.125747 -0.282214 -0.304850 -0.159827 -0.166402 0.114418 -0.179686 -0.117810 0.147372 0.125311 -0.381425 -0.235503 -0.187564 -0.109116 -0.363746 0.091516 -0.282304 -0.287063 -0.002861 -0.069030 -0.421120 -0.194162 0.009509 0.306064 0.250542 -0.102788 0.136282 0.057569 0.070165 0.074980 -0.209855 0.203423 0.126678 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -7.744971 8.112336 6.836369 -4.526986 12.015924 1.898183 4.762509 5.111132 -6.309413 8.513898 -12.402074 -2.249264 -3.175662 -9.950109 -0.469302 -8.546815 0.768550 -0.459160 -1.825538 3.399573 4.433148 -6.058219 -0.407034 -5.828867 -1.777895 -10.789648 -3.855669 0.311912 9.713663 -1.667730 2.709090 -0.355208 14.068100 0.757075 12.291100 8.815356 3.854715 9.495084 0.992453 -1.548330 -2.289476 8.519371 -6.579373 -8.369850 -1.585491 -7.379119 -6.680017 -3.803914 2.584079 -5.688493 -3.090891 8.016342 -1.268247 1.754746 -6.063087 6.202159 8.879067 -1.020328 13.592901 2.522758 -5.694029 -2.407488 -7.887700 7.293201 -3.486350 3.490972 -2.302253 -6.734638 2.501519 -0.587070 -4.050077 -4.343128 -2.737978 7.804228 4.579599 -8.418455 3.410963 -3.845101 -14.868390 -9.103798 -5.960279 2.995611 2.638582 9.251143 0.396503 0.016116 3.443681 2.948511 -0.352921 -13.723810 -1.056182 12.507379 -6.744629 -3.719564 -5.384009 8.792621 0.180250 5.198381 -6.194676 -4.719948 3.106906 1.004433 1.331516 -11.940129 -0.621835 -12.022778 2.325715 0.619540 -1.600928 6.666362 4.275792 5.518931 8.670281 10.013268 -11.775567 3.490960 -9.719130 3.120458 -2.924796 -0.191470 -0.298812 2.856033 -0.204357 3.657450 9.905036 -12.830709 4.918084 4.606667 -4.441091 -11.658987 -0.939354 -10.120559 -8.843103 -1.721709 3.581695 3.668229 2.097265 -6.663523 0.091443 -2.210303 -2.383635 -6.611736 2.633760 10.471204 -11.447699 -1.603989 -0.649637 0.133836 -6.037669 8.976431 6.010205 4.254957 12.484563 5.831263 -2.782756 6.880493 -8.827693 0.017560 14.071965 4.300310 -10.615846 8.145950 -8.638624 -0.810425 4.267147 4.397235 6.425865 2.507126 -12.543853 -7.224549 5.858165 -2.476672 12.119780 3.741803 2.926367 -5.776618 15.352638 -2.668637 -8.463783 12.700417 7.626985 -11.535945 4.748223 4.949446 -8.569648 -1.775401 7.244467 -9.235863 -1.676092 -6.031242 -1.463886 2.907555 -5.534720 -2.369206 0.946251 -11.535999 14.060682 1.201532 4.058917 1.597928 -7.625260 -12.975350 12.950636 -0.141991 -1.869552 -4.740382 -3.272513 -9.239009 -11.325825 1.770635 1.582186 -6.557098 -5.403690 -10.222272 2.773518 6.429011 -3.137545 7.850465 -10.499544 -4.576694 4.214754 3.635158 6.546496 -4.905956 -6.398395 -2.648403 -1.785265 6.408478 -6.509603 11.320304 14.113194 -3.412198 11.653684 -3.865191 -8.771952 1.685759 5.744107 -10.464599 11.273725 -2.043683 8.217547 0.232258 7.489892 -7.928420 -3.083398 0.563561 -3.904308 -2.513240 4.973199 -6.236295 0.241838 0.068051 -9.250007 -4.129053 2.646476 -1.286643 0.485909 0.130685 2.363446 -8.635051 -1.636828 -6.872463 1.126014 7.858406 -0.705376 -7.730591 2.625160 0.510209 0.325650 0.030135 0.459477 0.554906 6.836131 -10.028680 -2.278327 0.169860 -0.673613 -8.938798 -13.609030 0.503975 -9.578664 -8.225471 6.088558 -10.581380 1.233079 -7.817796 -2.722258 -13.218495 -5.916119 4.197248 14.851649 3.785529 -7.177448 2.347427 -1.582777 9.359551 1.024344 3.460248 1.403616 4.847918 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -4.732119 2.357575 2.988719 -3.662069 9.329274 -0.861330 1.747039 4.238672 1.521850 4.206209 -8.731479 -2.947057 -1.941294 -6.373165 0.393443 -4.089707 1.860288 1.523119 -3.204981 0.175048 3.056791 0.297912 -0.054160 -4.364371 -0.827758 -5.812178 -3.897897 0.546868 1.325239 -0.869139 0.812565 1.474697 10.259614 1.286234 7.692225 5.407752 4.148359 7.364117 -0.171478 3.876269 2.051417 4.768027 -3.034849 -6.197005 0.121874 -4.578161 -5.077533 -3.098040 1.682061 -4.828120 2.720877 4.530484 0.811996 0.919279 -3.705614 2.265481 4.628208 0.147794 7.271514 3.234302 -6.137273 2.057475 -4.782994 4.834310 -3.879398 5.027718 -0.505439 -5.972801 -2.261630 2.403195 3.323568 -5.534114 -5.618999 1.581132 1.907356 -3.899470 3.644756 -0.918875 -0.639043 -5.150468 -4.260568 2.820840 0.144004 5.271575 -0.358624 -0.676585 -0.505474 -0.144905 1.039540 -6.427420 -2.514062 6.378937 -5.006398 0.009140 -4.937978 2.109192 -0.681359 1.874099 -3.017318 -5.630300 2.257792 0.388492 0.396515 -0.131205 -1.592516 -4.935271 2.953783 3.040578 -1.649021 3.017301 1.517076 3.558011 4.344854 3.893350 -4.390880 2.503625 -7.168266 3.308054 -2.838212 -0.519819 -0.935275 0.986091 1.780168 2.671944 4.530885 -6.318593 4.925905 3.410481 -4.471481 -3.768487 0.701498 -4.355377 -6.772091 -0.751159 3.199446 2.926894 1.156290 -2.390846 0.721861 -2.510417 -0.686576 -3.873057 -1.077130 2.812636 -5.239748 -1.452346 -0.431379 -0.869983 -3.668199 5.166776 2.772922 1.717564 7.936146 2.772311 -3.168757 -0.099084 -6.760946 0.990793 9.835715 1.353423 -6.214259 4.309157 -4.014277 1.190065 3.473664 3.152072 1.756534 0.311625 -4.413608 -1.620224 -0.534721 -2.236150 7.869510 3.433988 2.264012 -6.260956 5.084513 -2.360354 -2.321305 10.276753 5.439211 -7.944351 0.279756 5.122124 -3.105414 -2.930147 3.159449 -4.362376 -2.876042 -4.426751 1.464734 1.766181 -4.373238 -2.665154 2.059845 -6.821028 6.836541 0.773317 0.000870 0.263975 -6.136464 -6.830540 10.960374 -0.539575 -0.278959 -0.963558 -2.521483 -0.197757 -8.621618 0.836763 2.076063 -2.970456 -1.234980 -5.192747 2.630825 6.130107 -4.097424 3.574945 -4.215418 -2.304023 2.960071 -1.448715 2.950261 -6.372997 -3.978120 -1.863984 -1.122750 3.216562 -4.858746 2.806404 8.141353 -2.689689 5.678879 2.322000 -4.512158 -1.091275 4.639206 -4.811697 7.351492 -2.120297 4.227961 0.689635 5.060075 -4.599059 -2.567403 -1.293869 -0.740539 -3.553587 4.531259 -5.745149 0.541346 1.607639 -4.486438 -2.951553 3.623417 1.269549 0.263959 -0.815101 0.258523 -5.453497 0.151413 -2.609783 1.920066 4.944799 -0.543933 -6.717813 0.891141 3.039011 -3.705720 -1.668192 0.725202 0.406013 6.723688 -5.814705 0.526614 2.037653 0.542875 -6.993642 -8.019926 0.897278 -6.319546 -3.848895 2.194221 -6.605878 -3.564578 -4.163687 1.219433 -5.124445 -3.069461 2.921897 8.156978 3.745847 -4.006631 1.692251 0.075691 4.634584 0.503761 0.489615 1.447183 3.705225 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = -0.609790 0.865181 0.266982 -0.549399 0.711962 -0.080635 0.261297 0.197050 0.280550 0.302162 -1.273523 -0.664242 -0.209002 -0.983277 0.141336 -0.450861 0.026872 0.511294 -0.163948 0.261174 0.567716 -0.457926 -0.098069 -0.891900 0.080190 -0.341301 -0.318646 -0.152089 -0.077105 0.483620 0.007167 0.232385 0.830269 0.559823 0.733413 0.768990 -0.151043 1.252525 0.191585 0.797628 0.092942 0.688264 -0.265140 -1.365674 0.432658 -0.676398 -0.133427 -0.903737 0.024021 -0.888316 1.075213 0.535009 0.124162 -0.201444 -0.776531 -0.300676 0.881638 0.848462 0.756710 0.604113 -0.326715 0.449030 -0.484028 -0.292880 -0.479925 0.660304 0.756492 -0.729346 0.012984 0.336451 0.715349 -0.399919 -0.766850 -0.077421 -0.013016 -0.288429 0.438227 -0.186323 -1.100028 -0.026310 -0.529858 0.184899 -0.103251 0.860416 -0.148086 -0.227161 -0.654534 -0.110569 0.485226 -0.454733 -0.649306 0.729728 0.049481 0.255253 -0.143973 0.663656 0.421951 0.048365 -0.384069 -0.098873 0.419504 0.359874 0.085412 0.428011 -1.133194 -0.830055 1.027252 0.751137 -0.658776 0.312241 0.544465 0.491392 0.273366 0.174713 -0.618274 0.636197 -0.911467 0.160037 -0.045213 0.002023 0.186659 -0.039720 -0.149207 -0.335697 0.117532 -0.534346 0.860111 0.734052 -0.371925 -0.435102 0.433410 -0.471581 -0.744311 -0.197601 0.372036 0.568436 0.016135 0.047509 -0.390290 -0.516576 -0.079265 -0.621317 -0.291645 0.985463 -0.280455 -0.151658 -0.221715 -0.345378 -0.378742 0.226698 -0.036378 -0.008057 0.784426 0.424759 -0.336294 -0.697045 -0.417093 0.232010 1.425433 0.430564 -0.761854 0.137249 0.289013 0.253115 0.322459 -0.056422 0.191552 0.416717 -0.611978 -0.468192 -0.711992 -0.829653 0.675421 0.930122 0.518707 -0.736787 1.177478 0.081232 -0.401261 1.174649 0.561518 -0.462197 -0.414478 0.788026 -1.036917 -0.376730 0.175662 0.094962 0.121446 -0.339017 0.117411 -0.056597 -0.791774 -0.938395 -0.329130 -0.924641 0.824446 0.261764 0.626994 -0.410531 -0.759061 -0.277597 1.385338 0.107322 -0.365707 0.025957 -0.075115 -0.380720 -0.904694 0.258813 0.434618 -0.405323 -0.540660 -0.403671 0.243447 0.699616 -0.879850 -0.169086 0.571900 -0.475542 0.234819 -0.244766 0.357311 -0.948668 -0.642958 -0.046260 0.177305 0.678729 0.239151 0.493929 1.143958 -0.279446 0.259933 1.249485 0.491513 0.155368 1.026859 -0.215810 0.646038 -0.692309 0.496160 0.003285 0.742949 -0.333339 -0.388431 0.110427 -0.094098 -0.189503 0.812219 -0.630529 0.171394 0.424775 -0.514458 -0.050783 0.812034 0.202044 0.515030 -0.234762 0.277564 -0.524160 0.131904 -0.107484 -0.032620 0.739432 0.223764 -0.915567 -0.429895 0.343083 -0.316161 -0.341251 0.344995 -0.094098 0.896574 -0.575380 0.536832 0.072352 -0.427778 -0.739263 -0.427491 0.256651 -0.585649 -0.567461 0.546740 -0.791953 -0.094992 -0.456319 0.404861 -0.728356 -0.126725 -0.228190 0.609890 0.459295 -0.063123 0.259138 0.061294 0.705051 0.201528 -0.198345 0.010853 0.954951 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = -0.433371 0.256491 -0.202231 -0.415777 1.188120 -0.024808 -0.068148 0.549087 0.296591 0.380663 -0.875807 -0.201986 0.039516 -0.625721 0.174875 0.260571 0.063384 0.322019 -0.382870 -0.254358 0.298577 0.085675 0.061531 -0.492165 -0.037727 -0.347641 -0.307279 0.069864 0.006540 0.115965 -0.509644 0.160974 0.636210 -0.019017 0.389277 0.390960 0.552872 0.634006 0.020072 0.414839 0.500686 0.287884 -0.189329 -0.797125 0.264721 -0.529038 -0.525778 -0.366896 0.195388 -0.672544 0.857225 0.400973 0.153224 -0.216014 -0.325992 0.233407 0.448921 0.080904 0.596122 0.433126 -0.659394 0.034452 -0.369563 0.604082 -0.437206 0.772282 0.117070 -0.882598 -0.586408 0.609318 0.557634 -0.541953 -0.671682 -0.109763 0.017293 -0.241638 0.369845 -0.071092 0.690638 -0.307083 -0.408627 0.315757 -0.305873 0.524270 -0.010072 -0.099965 -0.413155 -0.164282 0.274308 -0.378754 -0.483713 0.533275 -0.304056 0.424231 -0.455433 -0.120317 0.102613 -0.090390 -0.166354 -0.473183 0.215553 0.304948 0.050601 0.183963 -0.036966 -0.430761 0.566540 0.567840 -0.100216 0.159839 0.107036 0.080521 0.038488 0.143102 -0.042137 0.124882 -0.710959 0.194462 -0.065355 0.062776 -0.225505 -0.052894 0.455227 -0.030425 0.223377 -0.475238 0.742213 0.284507 -0.454080 -0.170500 0.267267 -0.132195 -0.587839 0.072256 0.281714 0.183375 -0.040698 0.108875 0.146455 -0.307351 -0.553752 -0.284238 -0.348867 0.277932 -0.531234 -0.053004 -0.079990 -0.195754 -0.234307 0.334021 0.215706 0.103528 0.714777 0.328113 -0.203093 -0.155702 -0.612609 0.453605 1.068918 0.226016 -0.578115 0.215004 -0.334647 0.297779 0.326297 0.105852 -0.091872 0.401453 -0.097636 0.124675 -0.294715 -0.301049 0.659787 0.459361 0.441363 -0.744527 0.156973 -0.236055 0.078041 1.040468 0.525943 -0.839134 0.075569 0.760807 -0.152603 -0.116702 0.153282 -0.286133 -0.289988 -0.380573 0.243228 0.269300 -0.657667 -0.596119 0.051779 -0.553860 0.630118 0.129085 -0.034542 -0.030448 -0.584141 0.175571 1.056731 0.121062 -0.061116 0.053156 -0.187361 -0.188857 -0.769084 0.063530 0.471882 -0.357201 -0.221507 -0.380720 -0.018347 0.822412 -0.546134 0.033540 -0.353695 0.076219 0.277387 -0.211296 0.269760 -0.708473 -0.323357 -0.187705 -0.123632 0.265007 -0.437118 0.010025 0.561110 -0.378253 0.462158 0.712150 0.043782 -0.116768 0.566863 -0.051334 0.612034 -0.094757 0.349908 0.110683 0.591197 -0.362195 -0.053474 -0.264971 -0.008401 -0.296925 0.645187 -0.718614 -0.024565 0.452477 -0.316471 -0.421445 0.553935 0.413148 0.408380 -0.198398 -0.231225 -0.218069 -0.021862 -0.188361 0.155073 0.419675 -0.284896 -0.732213 -0.164696 0.430445 -0.678997 -0.306688 0.297523 0.090033 0.850772 -0.491832 0.432950 0.280997 0.060300 -0.977653 -0.375052 -0.063581 -0.269713 -0.227127 0.236468 -0.810874 -0.615486 -0.296117 0.402352 -0.503964 -0.112635 0.005922 0.618087 0.270871 -0.048965 0.391587 0.139829 0.277495 0.059545 -0.089267 0.135718 0.348458 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = -0.534180 0.422643 0.025672 -0.483003 1.332152 -0.108695 0.029752 0.635973 0.277765 0.428349 -1.054282 -0.225641 -0.047331 -0.816504 0.217377 0.035579 0.120538 0.447132 -0.374450 -0.185085 0.397659 0.032262 0.028536 -0.613946 -0.033337 -0.541607 -0.338574 0.051161 -0.044562 0.250826 -0.353936 0.282838 0.834472 0.101229 0.535672 0.560086 0.543799 0.872944 0.074891 0.582722 0.513751 0.373534 -0.212106 -1.052693 0.361496 -0.591498 -0.574490 -0.524922 0.189634 -0.888129 0.862003 0.506304 0.174734 -0.204003 -0.459641 0.195941 0.607741 0.174626 0.690971 0.551441 -0.757724 0.047013 -0.451508 0.505307 -0.516727 0.799372 0.215700 -1.020540 -0.538351 0.693474 0.615164 -0.556033 -0.745321 -0.129758 0.038877 -0.296971 0.423478 -0.046540 0.320973 -0.272457 -0.504990 0.345734 -0.255222 0.677462 -0.015523 -0.134101 -0.445841 -0.211469 0.359767 -0.462947 -0.565844 0.713911 -0.305871 0.434005 -0.565217 0.005525 0.213513 -0.097947 -0.196198 -0.563611 0.301087 0.291275 0.075818 0.220510 -0.386543 -0.584310 0.700184 0.629856 -0.205216 0.280892 0.088040 0.187753 0.067391 0.156380 -0.243875 0.326045 -0.912228 0.317454 -0.098801 0.028585 -0.204476 -0.091613 0.398451 -0.020579 0.235944 -0.594486 0.878130 0.418858 -0.486452 -0.266640 0.338454 -0.191258 -0.682425 -0.006463 0.408525 0.262246 -0.025163 0.130600 0.073445 -0.378842 -0.464831 -0.486738 -0.441717 0.506655 -0.631569 -0.058151 -0.136028 -0.267796 -0.312256 0.335405 0.201804 0.146762 0.828093 0.414073 -0.276431 -0.161379 -0.739378 0.447213 1.303406 0.385212 -0.683059 0.272277 -0.259404 0.312750 0.367692 0.101723 -0.045073 0.450315 -0.254737 -0.018816 -0.395832 -0.418371 0.773852 0.700207 0.487189 -0.952106 0.353329 -0.256140 0.001183 1.227394 0.647225 -0.931386 0.045940 0.923615 -0.413300 -0.253846 0.176073 -0.333786 -0.308836 -0.427887 0.262245 0.288516 -0.822262 -0.714143 0.037628 -0.702423 0.710692 0.170771 0.106339 -0.098428 -0.695563 -0.074608 1.296684 0.122029 -0.074857 0.034165 -0.263732 -0.252877 -0.939620 0.097871 0.543145 -0.418033 -0.304787 -0.454035 -0.011726 0.936097 -0.671975 0.043043 -0.306827 -0.003464 0.342290 -0.226830 0.294850 -0.939451 -0.434901 -0.173535 -0.112606 0.350014 -0.366790 0.104963 0.733266 -0.424566 0.556474 0.828465 -0.004978 -0.058095 0.709348 -0.125425 0.724564 -0.217048 0.536436 0.164288 0.702825 -0.454204 -0.134199 -0.237229 -0.078866 -0.388979 0.789275 -0.845136 0.004494 0.544423 -0.419074 -0.455434 0.659733 0.472428 0.476888 -0.246700 -0.122074 -0.318303 0.008856 -0.227084 0.194044 0.543722 -0.271086 -0.873950 -0.194378 0.519745 -0.763480 -0.458241 0.361415 0.108449 0.965368 -0.606029 0.531721 0.286366 -0.025335 -1.112851 -0.534828 0.073844 -0.471779 -0.400380 0.261812 -0.997871 -0.613416 -0.363211 0.498483 -0.676736 -0.166947 -0.013065 0.736715 0.276904 -0.029541 0.452200 0.150513 0.348897 0.053285 -0.061261 0.121328 0.555666 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/bfs.cpp__main = -0.587512 -0.704210 0.397199 -0.050296 1.808065 -0.974163 0.210638 1.574646 1.252759 0.014836 -0.870198 -0.740875 -0.449295 -0.173111 0.531768 -0.257285 0.629869 0.937764 -1.171077 -1.211184 0.630942 1.846311 -0.419793 -0.489060 0.171996 0.147676 -0.792454 -0.005616 -0.955943 0.276098 -1.106775 1.224148 1.550333 -0.041833 1.181723 0.846528 1.775732 1.013678 -0.719144 1.898344 1.180761 0.474250 -0.133764 -1.077778 0.369214 -0.534782 -0.788532 -0.018981 0.356867 -0.745943 1.997129 0.387852 0.434100 0.508594 0.497403 0.420469 -0.560548 0.379218 0.339244 1.110559 -2.036784 0.927872 -0.664387 1.675913 -0.586246 2.144871 -0.432414 -1.872420 -1.724003 0.814736 1.719424 -1.550813 -1.285453 -0.484846 -0.305228 0.199953 0.935180 0.674089 2.874135 0.219773 -1.385923 0.452544 -0.446797 0.317081 -0.378782 -0.549183 -1.229648 -0.688151 0.479479 -0.188157 -0.715511 1.045019 -1.260024 1.304851 -2.135688 -2.240176 -0.287885 0.250863 0.117409 -1.668493 0.468646 0.056810 -0.012625 1.107198 -0.232624 0.500777 0.686035 1.036493 -0.009034 0.330552 -0.768715 0.225305 0.109848 -0.220489 1.160331 0.574720 -1.049258 1.226651 -0.876227 -0.122840 -0.069740 -0.118901 0.971668 0.098143 0.060597 -0.255379 0.612635 0.120228 -1.071158 0.480933 0.527945 -0.280058 -1.254909 -0.479586 1.093053 0.718991 -0.380262 0.143233 0.555113 -0.484403 -0.001122 -0.783557 -1.236481 -1.702779 -0.211063 -0.500128 -0.393734 -0.481659 -0.579278 0.701209 0.060051 0.452980 0.640373 0.488402 -0.566628 -1.576376 -1.396582 0.344621 0.749872 -0.541979 -0.745832 0.214213 -0.571699 0.696435 0.723628 0.448217 -0.698005 0.823984 1.039071 1.092680 -1.555407 -0.100600 1.009168 1.260021 0.372639 -1.040549 -1.588683 -1.776606 -0.245569 1.596008 1.204717 -1.539303 -0.779079 0.930824 0.976476 -1.171973 0.095826 -0.920821 -0.912975 -0.850761 0.717376 0.624009 -1.292584 -0.042378 1.831654 -0.675285 0.231772 0.071875 -0.654237 -0.169308 -1.670218 -0.432840 2.137403 0.112191 0.359808 0.247274 -0.593025 0.982961 -1.148328 0.158081 0.678688 0.592846 -0.418583 -0.251128 0.279643 1.560404 -0.791042 0.481129 0.577297 0.014161 0.361014 -1.531045 0.593494 -1.683162 -0.679905 -0.890640 -0.408451 0.496646 -0.957470 -1.281115 0.749929 -0.526905 0.649343 2.046845 -1.220138 -1.358606 0.631811 -0.081157 0.616517 -0.013225 -0.618683 0.276317 0.694687 -1.068702 -0.668673 -0.568900 0.940961 -1.161234 1.109490 -0.723663 0.367257 -0.168808 -0.906267 -0.090963 0.704188 0.631358 -0.035262 -0.333239 -0.354488 -0.674204 0.067349 -0.624419 0.408941 0.802949 -0.620624 -1.031945 0.156566 0.109654 -2.364076 -0.437401 0.400287 -0.116507 1.553916 -0.558961 0.132161 1.014941 0.147663 -1.632739 -0.581760 -0.789752 -0.926754 -0.287197 -0.608227 -0.291713 -1.542553 -0.208164 0.900804 -0.273247 -1.014390 0.400212 0.744020 0.783450 0.152544 0.681033 0.588578 0.419547 0.304296 -0.458958 0.200381 0.509659 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.317931 0.110941 -0.004202 -0.198651 0.853206 -0.235221 -0.057017 0.546806 0.342815 0.311973 -0.500779 -0.194828 -0.089005 -0.429897 0.159407 0.044943 0.176703 0.386475 -0.260526 -0.246789 0.219325 0.214239 0.008940 -0.233402 -0.057171 -0.355568 -0.217804 0.099192 -0.134993 0.071259 -0.299850 0.322508 0.665202 0.024225 0.452999 0.378772 0.409075 0.511147 0.138615 0.441389 0.384835 0.164829 -0.118444 -0.604169 0.198239 -0.273656 -0.371238 -0.263883 0.166011 -0.488330 0.648070 0.285464 0.104282 0.005229 -0.221138 0.130052 0.118264 0.146150 0.423618 0.332945 -0.607681 0.074192 -0.271491 0.535439 -0.377937 0.448315 -0.050489 -0.745935 -0.390804 0.467899 0.423193 -0.385751 -0.425304 -0.059471 -0.007510 -0.177664 0.265252 0.093354 0.491407 -0.119542 -0.442342 0.263404 -0.198148 0.352806 -0.010730 -0.058889 -0.378966 -0.133212 0.163781 -0.304595 -0.242741 0.446618 -0.314281 0.361863 -0.356191 -0.178832 0.126790 -0.070618 0.001497 -0.455433 0.170013 0.019474 0.072397 0.265557 -0.116440 -0.190511 0.398616 0.320978 -0.014848 0.187287 0.036648 0.114123 0.105481 0.098976 0.010332 0.113500 -0.610525 0.366976 -0.137783 -0.066112 -0.152900 -0.010917 0.291067 0.042408 0.200757 -0.411377 0.449194 0.172379 -0.253264 -0.094758 0.177577 -0.049492 -0.386566 -0.084850 0.371818 0.114063 -0.050983 0.057133 0.098633 -0.164280 -0.270169 -0.253682 -0.332350 0.122651 -0.324350 -0.013613 -0.098224 -0.215970 -0.172457 0.224688 0.158015 0.230448 0.494172 0.286256 -0.205539 -0.271759 -0.630019 0.232858 0.678627 0.065925 -0.395038 0.262584 -0.217797 0.135862 0.249178 0.211029 -0.041306 0.237097 0.046912 0.074349 -0.353839 -0.060975 0.511876 0.392882 0.246346 -0.491249 -0.054986 -0.224285 0.017663 0.803863 0.347587 -0.623156 -0.027309 0.563396 -0.171312 -0.231056 0.147540 -0.335180 -0.228010 -0.333867 0.202325 0.329694 -0.559219 -0.259196 0.261341 -0.390432 0.359843 0.039649 -0.087652 0.019247 -0.552339 -0.011798 0.875210 0.115558 0.106642 0.014447 -0.318193 -0.037638 -0.599369 0.015560 0.326814 -0.141570 -0.082004 -0.271383 -0.056455 0.623323 -0.278134 0.149661 -0.187649 0.084555 0.274976 -0.237837 0.093760 -0.565936 -0.211009 -0.063082 -0.153024 0.153248 -0.292005 -0.030316 0.340206 -0.269154 0.361364 0.620235 -0.105896 -0.079496 0.296552 -0.166101 0.475164 -0.115761 0.115794 0.194339 0.350768 -0.296414 -0.085391 -0.198063 0.056643 -0.374357 0.436334 -0.503359 -0.024584 0.294016 -0.293401 -0.296362 0.260967 0.368299 0.248445 -0.112246 -0.147484 -0.247436 -0.006076 -0.206707 0.226324 0.298315 -0.163840 -0.470698 0.086167 0.291221 -0.595377 -0.335462 0.188011 0.087004 0.578763 -0.407119 0.237892 0.264758 0.122698 -0.687021 -0.329533 -0.033897 -0.304770 -0.195677 -0.005833 -0.624056 -0.512629 -0.179712 0.336670 -0.358023 -0.066029 0.067513 0.523832 0.174622 -0.058330 0.294912 0.096384 0.108340 0.054348 -0.076972 0.071497 0.353927 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -2.238689 1.825289 0.382600 -2.305140 5.661046 -0.283442 0.718038 2.274979 -0.231950 1.655520 -4.546870 -0.314951 -0.213075 -4.021127 0.752905 -0.677058 0.756336 1.204775 -1.341980 0.401824 1.575949 -0.897610 0.247951 -2.742321 -0.182961 -2.709197 -0.958292 0.252225 0.708194 0.966274 -0.421659 0.825094 3.436681 0.494773 2.178480 2.201741 1.909060 3.470719 0.208831 0.483666 1.703427 1.587567 -0.715432 -4.142859 0.972077 -2.281475 -2.981012 -1.999292 0.723435 -3.747844 0.977195 2.387266 0.604681 -0.958932 -2.384693 1.174515 3.679841 -0.016841 2.953398 2.042068 -2.666352 -0.758559 -1.830419 1.270612 -1.765118 2.157743 0.891463 -3.367593 -1.393066 2.886490 0.896428 -1.754193 -2.685782 -0.386389 1.107873 -1.555899 1.724673 -0.382773 -0.515714 -1.762783 -1.285823 1.168949 -0.729291 3.012856 0.066604 -0.197914 -0.181930 -0.859332 1.313778 -2.277319 -2.041464 2.933895 -1.293420 0.457972 -2.394403 1.688654 1.040005 -0.479471 -1.689802 -2.628514 1.194301 0.842654 0.233840 -0.651860 -1.698146 -3.051020 2.125475 2.116374 -0.596482 2.112224 0.101783 1.123364 0.331187 0.902102 -2.393532 1.607204 -3.677801 0.859283 -0.829819 0.186629 -0.961883 -0.475006 1.815381 0.715782 1.116903 -2.863221 3.895061 2.306422 -1.567570 -1.676648 1.258031 -1.037866 -2.610357 0.139821 1.517653 0.766776 0.477080 0.368991 0.471200 -1.352359 -1.556262 -1.586910 -1.397004 3.065118 -3.338680 -0.039147 -0.330678 -0.665801 -1.246713 1.261231 0.997495 0.192207 3.557062 1.336909 -1.446115 1.449036 -2.716789 1.824624 5.967797 1.848681 -2.822190 1.393269 -1.304565 1.096787 1.074970 0.301764 0.444151 1.181506 -2.372100 -0.820951 -0.268360 -1.922668 3.111254 2.315322 1.663696 -4.630526 2.747057 -1.024760 0.140284 4.749989 2.742528 -3.982958 1.043708 3.888737 -2.748698 -0.762597 0.678949 -1.474961 -1.161860 -1.841352 1.179885 0.804211 -3.032723 -2.969071 -0.657235 -2.990099 2.830192 0.814470 0.472482 -0.715251 -1.947753 -1.188692 5.224170 0.204760 -0.532567 -0.016423 -1.099115 -1.710303 -4.118684 0.187260 1.523756 -2.205357 -1.021453 -2.029638 -0.333505 3.586163 -2.810896 0.250025 -2.881261 0.171572 1.439535 0.438953 1.120920 -3.143151 -1.968562 -0.475418 -0.545080 1.097773 -1.825120 1.035952 3.018082 -1.647185 2.678008 0.971550 -0.960436 0.605423 2.913148 -0.907133 3.317082 -0.552629 4.043530 0.660556 3.061978 -2.003123 -0.495299 -0.905694 -1.572690 -1.637437 3.169888 -3.786274 -0.022912 2.600684 -1.001216 -2.693116 2.741895 1.682443 1.817108 -0.950455 -0.151921 -1.336591 0.006602 -1.005455 1.036216 2.046905 -1.240059 -3.406137 -1.006957 2.847732 -2.065989 -1.758681 1.424892 0.583899 3.768861 -2.591593 2.255915 0.813145 -0.001410 -3.969831 -3.142289 1.275757 -2.319955 -1.794354 1.554568 -4.528795 -1.857400 -1.591699 1.885430 -3.094301 -0.855560 0.310046 3.362160 0.688551 -0.518968 1.724560 0.294512 1.268930 -0.278154 0.699180 0.409448 1.978453 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/bfs.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.930451 0.463296 -0.358509 -0.697611 2.526462 0.011445 0.075875 1.067298 -0.296858 0.880635 -1.596399 -0.107284 -0.220181 -1.673982 0.367158 0.399845 0.414416 0.419659 -0.557286 -0.201008 0.658003 -0.389090 0.249256 -0.889936 -0.034508 -1.191004 -0.364635 0.158576 0.666466 0.238374 -0.741340 0.296858 1.400448 -0.010488 0.651568 0.732747 1.069174 1.259077 0.170223 -0.280707 0.580260 0.732127 -0.448912 -1.631572 0.565431 -1.067421 -1.205456 -0.631613 0.532792 -1.286321 0.368114 1.010491 0.141850 -0.376868 -0.914743 0.583176 1.447000 -0.213147 1.378225 0.743156 -0.960098 -0.806680 -0.683331 0.938852 -0.801092 0.852334 0.105746 -1.554529 -0.828534 1.073635 0.193934 -0.731298 -1.042041 0.015846 0.434538 -0.689881 0.673941 -0.056318 0.473673 -1.024640 -0.955485 0.399083 -0.662353 1.357098 0.042111 -0.106194 0.029873 -0.332055 0.554417 -1.086306 -0.676812 1.103703 -0.577927 0.439061 -0.829204 0.410946 0.196650 -0.148377 -0.686149 -1.030248 0.327131 0.375988 0.214307 -0.428653 -0.047140 -1.144927 0.813524 0.507568 0.154453 0.749328 0.465173 -0.008214 -0.040045 0.509816 -0.818132 0.112813 -1.406469 0.382600 -0.102715 0.174306 -0.578740 0.011334 1.013757 -0.019479 0.685762 -1.432119 1.404968 0.717587 -0.597406 -0.718298 0.448925 -0.407065 -1.049247 0.152300 0.773843 -0.012829 0.017617 0.067759 0.468033 -0.381340 -1.299746 -0.249964 -0.687423 1.272452 -1.749056 0.023682 -0.249777 -0.501073 -0.364873 0.535432 0.452353 0.437022 1.447455 0.810577 -0.696900 0.996285 -1.337358 1.022087 2.468005 0.813353 -1.231544 0.529559 -0.888172 0.560173 0.625955 0.191084 0.336013 0.537298 -0.539960 0.116188 0.198935 -0.372440 1.413439 0.747644 0.988523 -1.778951 0.681582 -0.252029 0.200683 1.941453 0.920340 -1.844413 0.993751 1.514359 -0.860351 0.097438 0.211104 -0.800843 -0.509867 -1.078351 0.531399 0.758408 -1.447240 -1.045228 -0.179854 -1.165946 1.311478 0.273092 0.128009 0.255884 -0.959200 0.014193 1.967583 0.176063 -0.055082 -0.306010 -0.661700 -1.066675 -1.621239 0.190171 0.500168 -0.998352 -0.421959 -1.049518 -0.439016 1.753370 -0.673829 0.231361 -1.829157 0.570340 0.610025 0.367989 0.584533 -1.116575 -0.737281 -0.003114 -0.447077 0.439074 -0.986469 0.298841 0.954181 -1.002048 1.106805 0.212634 -0.137513 0.276131 0.904020 -0.341940 1.300256 0.001381 1.707709 0.183706 1.305145 -0.820966 0.104541 -0.442658 -0.442298 -0.611594 1.215943 -1.557001 -0.186516 1.302978 -0.518049 -1.389897 0.844748 0.692744 1.016221 -0.315425 -0.522598 -0.415543 0.005156 -0.277199 0.517963 0.915728 -0.655463 -1.312897 -0.322194 0.921062 -0.876985 -0.727444 0.680162 0.221511 1.551592 -1.159660 0.711471 0.295411 0.257662 -1.618046 -1.305870 0.226162 -0.539139 -0.599449 1.093339 -2.085051 -0.713317 -0.704702 0.674032 -1.420382 -0.072914 -0.154891 1.403460 0.104275 -0.086538 0.927475 0.316581 0.381145 -0.264532 0.221698 0.276750 0.638111 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/bfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/bfs.cpp__std::__new_allocator >::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -1.997786 1.566488 -0.155687 -2.045947 6.619217 0.498679 0.628547 2.978301 -1.334617 2.024020 -4.093698 0.738327 0.239883 -3.416648 0.853852 0.479459 0.253418 0.650145 -1.570428 -0.569630 1.230105 -0.280489 0.454601 -2.223836 -0.339375 -2.917343 -0.909813 0.371846 1.372940 1.141313 -1.529603 0.397011 2.698334 -0.626471 1.136894 1.608225 3.045901 2.352808 -0.238541 -0.121522 2.047069 1.110230 -0.948501 -3.353166 0.790555 -2.444375 -3.527932 -1.196073 0.974986 -3.691345 0.656179 2.238151 0.551143 -1.235440 -1.477682 2.275391 3.020701 -1.491972 2.803299 1.801910 -3.058395 -2.168868 -1.786954 3.106034 -1.387562 2.831862 0.121320 -3.801743 -2.348768 3.064292 0.420489 -1.600951 -2.349762 -0.167817 1.031129 -1.554879 1.399758 -0.506574 1.111869 -1.825547 -1.152575 1.366085 -1.079339 2.809876 0.429796 -0.222979 0.096061 -0.785983 1.123220 -2.310243 -2.038974 3.366048 -1.373170 0.780971 -3.625814 0.206186 0.635441 -0.464441 -1.247272 -2.661542 0.963141 1.516590 0.256450 -2.262449 -0.349479 -3.207676 1.518163 2.090262 0.195196 1.905824 -0.740616 0.138137 -0.309539 1.024925 -1.515559 1.038743 -3.232143 0.859074 -0.472227 0.503795 -1.738014 -0.495736 2.561732 0.729072 1.369519 -2.823169 3.605063 1.463170 -2.022715 -1.680955 0.966033 -0.728497 -2.465442 0.749837 1.160519 0.263422 0.140292 0.470207 1.243606 -1.114447 -2.776732 -1.554668 -1.348567 2.405176 -4.228967 0.021988 -0.235985 -0.296333 -1.157978 1.747194 1.462947 0.597732 3.495522 1.539593 -0.763346 2.543417 -2.912785 2.405786 5.571149 2.411534 -2.697501 1.300557 -2.529127 1.219187 1.013535 0.138126 -0.099805 2.251810 -1.969019 -0.048430 0.366994 -1.299090 3.279201 2.486067 1.862946 -4.360634 1.553349 -2.094033 0.544995 3.920878 3.219152 -4.395277 2.013368 3.751860 -1.452922 -0.165983 0.791505 -2.322655 -1.787081 -1.774869 0.875596 1.499692 -2.935280 -2.672729 -0.320996 -2.490753 3.125720 0.738966 0.115860 -0.104013 -1.630976 -0.466202 4.193223 0.329941 -0.302433 -0.264546 -0.949541 -2.689498 -3.617005 0.211394 2.047184 -2.328939 -1.356475 -2.259310 -0.957668 3.614647 -2.273001 0.595682 -4.071716 0.972916 1.390646 0.722285 1.623259 -3.033164 -1.489712 -1.065219 -0.961682 0.920559 -2.747898 0.730996 2.273258 -1.891732 3.374314 0.307339 -1.233364 -0.087028 2.355697 -0.386834 3.027848 0.521600 3.732901 0.646170 3.021970 -1.977828 0.218667 -1.351439 -1.577039 -1.259702 3.121661 -3.806165 -0.376593 2.586369 -1.236603 -3.018266 2.424220 1.836473 1.837692 -1.029181 -0.893715 -0.753433 -0.436530 -1.391994 0.950310 1.848774 -2.431876 -3.152228 -0.829115 2.376747 -2.824181 -1.620942 1.530627 0.941783 3.571574 -2.504821 2.082186 0.853829 0.441922 -4.989806 -2.868390 0.395003 -1.504257 -1.941038 1.445870 -4.463650 -2.260899 -1.598455 1.592901 -3.593618 -1.564024 0.387593 3.270155 -0.040368 0.012530 2.017597 0.594071 0.979461 -0.469681 0.880054 0.804633 0.940134 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/bfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = -1.584927 0.988853 0.097657 -1.706479 4.740125 -0.217526 0.264239 2.446702 0.047684 1.315281 -3.214387 0.081565 0.003335 -2.740464 0.611178 -0.134561 0.511327 0.958089 -1.332478 -0.189023 1.098639 -0.012920 0.247632 -1.840155 -0.242787 -1.795091 -0.710878 0.287995 0.177966 0.893320 -0.744852 0.710776 2.440145 0.140428 1.504586 1.453244 1.977685 2.397353 -0.023743 0.998178 1.678460 0.844220 -0.410980 -2.974293 0.799192 -1.712939 -2.525076 -1.240129 0.576171 -3.121195 1.343247 1.723468 0.562902 -0.711739 -1.309404 1.129520 2.140587 -0.371901 2.022989 1.606343 -2.765943 -0.863775 -1.413735 1.570296 -1.219207 2.112915 0.595007 -2.870874 -1.586989 2.489102 0.979046 -1.539056 -2.025314 -0.425363 0.703046 -1.005194 1.338117 -0.176697 0.825198 -0.984678 -0.860474 1.050560 -0.623006 1.984643 0.103508 -0.091004 -0.397709 -0.782275 0.839710 -1.627508 -1.505627 2.358794 -1.244968 0.834432 -2.706577 0.399203 0.476704 -0.425966 -1.074825 -2.170811 0.913928 0.864403 0.138380 -0.638797 -1.239114 -2.156092 1.783598 1.808889 -0.241509 1.328714 -0.458748 0.563536 0.017855 0.623079 -1.188909 1.484815 -2.779185 0.822205 -0.577247 0.219745 -1.036202 -0.519460 1.750310 0.676142 0.764442 -1.979354 2.985179 1.463472 -1.477645 -1.112660 0.951484 -0.569698 -1.913402 0.226893 1.193709 0.439725 0.234050 0.403353 0.601342 -1.046840 -1.567650 -1.474268 -1.242643 1.596822 -2.428263 -0.010201 -0.196491 -0.415515 -0.950639 1.088602 0.919054 0.186617 2.646525 0.886323 -0.818116 0.832370 -2.202253 1.503657 4.278644 1.479415 -2.088714 1.085469 -1.246802 0.995799 0.724107 0.217267 -0.007393 1.246730 -1.316027 -0.167096 -0.322833 -1.134949 2.355034 1.995565 1.297801 -3.513601 1.138788 -1.429495 0.436643 3.516796 2.433787 -3.234829 0.623740 2.975116 -1.327647 -0.565082 0.508160 -1.299636 -1.167325 -1.221686 0.968416 0.824923 -2.350233 -2.177593 -0.015065 -2.066563 2.036641 0.531849 0.201036 -0.584006 -1.655558 -0.450948 3.871161 0.180402 -0.286585 0.244033 -0.890643 -1.245458 -3.018001 0.009027 1.567405 -1.428650 -0.740155 -1.390440 -0.424409 2.805763 -2.057651 0.243910 -2.121190 0.303253 1.148058 -0.224944 0.900366 -2.646395 -1.313887 -0.762122 -0.538272 0.879910 -1.664619 0.281304 1.984179 -1.174088 2.389605 1.103099 -0.772003 -0.017743 2.031962 -0.436940 2.502230 -0.141418 2.644446 0.585414 2.269627 -1.508587 -0.219714 -1.014019 -0.895215 -1.296858 2.548354 -2.901336 -0.087834 1.821230 -0.866690 -2.004967 2.022135 1.505180 1.248561 -0.735042 -0.322213 -0.823867 -0.259519 -1.127885 0.913765 1.382438 -1.442806 -2.517294 -0.652815 2.105644 -2.179954 -1.250786 1.153732 0.615818 2.989542 -1.889878 1.714570 0.905624 0.057665 -3.456863 -2.076062 0.545745 -1.601674 -1.317461 0.621667 -3.373304 -1.942214 -1.047717 1.603752 -2.271964 -0.801583 0.313931 2.573339 0.515659 -0.186135 1.446949 0.363231 0.741909 -0.144492 0.534750 0.470129 1.304578 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.675314 0.677829 0.128545 -0.433518 1.122737 0.009587 -0.001664 0.665375 -0.221245 0.526164 -1.140677 -0.192107 -0.244265 -1.077410 0.103836 -0.053586 0.203912 0.392090 -0.174791 0.128141 0.529478 -0.466121 0.027348 -0.687326 0.009720 -0.477019 -0.312367 -0.042247 0.381472 0.065430 -0.201993 0.158002 1.080430 0.299615 0.817833 0.697702 0.267145 1.114563 0.366116 0.119307 0.019643 0.727424 -0.396773 -1.248398 0.436170 -0.804877 -0.239437 -0.533876 0.227265 -0.700203 0.568872 0.608382 0.014764 -0.075103 -0.722756 0.019856 0.884719 0.320169 1.033406 0.440235 -0.583180 -0.168873 -0.474812 0.184265 -0.539048 0.546631 0.321830 -0.782509 -0.034476 0.261904 0.387822 -0.672637 -0.615558 0.224493 0.001758 -0.460880 0.445422 -0.145792 -0.517115 -0.522895 -0.726078 0.173741 -0.267286 0.853818 -0.112776 -0.125099 -0.384254 -0.036703 0.344030 -0.814727 -0.386799 0.733293 -0.322845 0.370759 -0.204911 0.600317 0.085370 0.159916 -0.458464 -0.309357 0.306626 0.290096 0.140658 -0.152152 -0.279338 -0.814930 0.803790 0.197921 -0.281074 0.426896 0.668722 0.385013 0.396288 0.486105 -0.649330 0.192359 -1.030676 0.199950 -0.081983 0.041701 -0.020281 0.125468 0.131868 -0.237453 0.498186 -0.911919 0.743211 0.545669 -0.313839 -0.717479 0.316251 -0.592056 -0.765855 -0.124476 0.488369 0.280330 0.011685 -0.213214 -0.128966 -0.353053 -0.701814 -0.647041 -0.270617 1.077433 -0.879672 -0.115509 -0.206332 -0.363146 -0.311431 0.346780 0.194427 0.267277 0.939930 0.559454 -0.418228 0.177386 -0.728323 0.317039 1.445765 0.562701 -0.921786 0.346300 -0.239305 0.211563 0.518123 0.129711 0.440332 0.315657 -0.575417 -0.364748 0.086553 -0.406811 0.856024 0.535587 0.664848 -0.762509 0.992633 0.213991 -0.353728 1.441645 0.250833 -0.957995 0.360059 0.726996 -0.513540 0.011667 0.202240 -0.341285 -0.084964 -0.520094 0.083990 0.276551 -0.929854 -0.724029 -0.142498 -0.957656 1.074395 0.181696 0.392175 0.015836 -0.904526 -0.225113 1.394722 0.176165 -0.207332 -0.208354 -0.321857 -0.568558 -1.020552 0.209697 0.342004 -0.575098 -0.422559 -0.679721 0.040615 0.878859 -0.486909 0.135304 -0.607406 -0.208313 0.337546 -0.018794 0.403208 -0.943826 -0.615719 -0.008579 -0.069982 0.677331 -0.274211 0.587955 1.086469 -0.486466 0.641140 0.737611 0.251377 0.234362 0.733820 -0.463533 0.817357 -0.422987 0.949199 0.018299 0.787925 -0.575829 -0.202506 -0.047096 0.067616 -0.246688 0.686511 -0.721207 0.019218 0.460643 -0.600043 -0.403391 0.523096 0.160376 0.546770 -0.119535 -0.077348 -0.428730 -0.024369 -0.178877 0.113303 0.746437 -0.143004 -0.977799 -0.204795 0.235712 -0.290662 -0.156949 0.312576 0.012726 0.859897 -0.769632 0.257248 0.089409 -0.189768 -0.833715 -0.750748 0.096978 -0.426468 -0.426807 0.715114 -1.161061 -0.170797 -0.510810 0.218601 -0.994351 0.096367 -0.216613 0.940143 0.360167 -0.219047 0.431456 0.085946 0.643559 0.085469 0.066489 -0.027888 0.744573 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -14.165578 16.435993 13.583628 -9.342753 21.121506 3.145354 10.338469 8.317979 -8.584550 15.298841 -23.899285 -5.372537 -5.458105 -18.556943 -0.674414 -18.137707 0.465065 0.498971 -3.430717 6.820379 8.636336 -10.926479 -1.196912 -11.975760 -3.015360 -22.331528 -6.923848 0.047375 14.751282 0.559093 7.777788 -0.249930 25.325070 3.306981 21.956679 16.763933 6.066513 18.783519 1.051513 3.673150 -3.624065 15.421864 -11.329155 -16.536783 -1.966198 -13.060971 -12.855337 -9.783944 3.449895 -14.049345 -2.458681 14.725667 -1.605041 2.477953 -11.101118 9.756640 17.892389 -0.884335 23.495832 5.838894 -9.870416 -2.170453 -14.538689 11.587369 -6.271092 6.450200 -0.457177 -12.942999 4.550016 -0.214736 -4.647806 -5.743267 -5.888099 12.774342 8.937709 -14.804354 6.341252 -7.448052 -31.355209 -14.706923 -9.454600 5.531055 5.960047 17.618527 0.597552 -0.562302 5.359794 4.442748 0.125447 -23.532880 -3.623970 23.958742 -10.368172 -7.071480 -12.332494 16.507614 2.449408 8.987245 -10.885594 -8.500466 6.276371 2.585392 2.243755 -17.874624 -8.814907 -22.480878 5.546514 3.979007 -5.144998 12.444083 5.387453 10.579140 14.523841 16.913016 -22.999554 10.871908 -17.676741 6.791263 -4.224806 0.012541 0.431187 3.490473 -1.192589 7.106737 16.131827 -21.701574 10.309213 9.713213 -8.897300 -20.154090 -1.180329 -18.044261 -16.203864 -3.681522 6.165971 8.083477 3.914490 -10.931125 -1.121367 -5.144246 -1.225898 -14.444526 4.073439 19.348357 -19.113905 -3.023755 -1.418854 0.299536 -11.817436 15.818994 9.823059 6.285691 22.342662 10.193636 -4.174395 9.854211 -14.974823 -0.479728 27.113774 10.462808 -18.770135 14.004324 -12.883486 -1.015410 7.316879 6.839006 10.308902 4.970539 -23.940682 -13.911907 6.430197 -7.109151 22.018369 11.007188 4.316074 -13.220501 29.448556 -5.322993 -15.686771 23.173268 17.453238 -18.885470 4.724527 9.555824 -20.059191 -5.524286 12.650598 -14.511789 -3.372489 -9.789449 -1.954203 3.634599 -9.217209 -6.201573 0.893208 -21.374678 24.591182 2.566467 9.804985 0.883241 -13.406118 -25.635361 24.020975 -1.046533 -4.496952 -7.316046 -4.737307 -15.934113 -20.691525 3.578388 3.652382 -11.676913 -10.640980 -17.686514 6.094510 11.646754 -8.112655 12.521891 -14.834580 -10.389003 7.437695 4.536444 11.271192 -12.241381 -12.082931 -5.752910 -1.162536 11.853129 -8.705483 20.331493 27.022157 -5.353396 19.452813 -4.842995 -15.185615 2.674046 12.557049 -18.101476 20.144464 -5.844264 13.387899 0.515685 13.775908 -13.385418 -6.629796 1.365454 -8.024305 -4.702078 10.512107 -11.684809 1.296071 0.982692 -17.419367 -5.927467 6.906986 -1.959463 1.140525 -0.403579 6.378362 -16.914132 -1.962344 -12.404228 1.032436 14.753589 0.687681 -14.476840 3.491806 1.764237 -0.049941 -2.534856 1.065781 1.155047 12.963317 -17.681738 -1.905413 0.348936 -3.289442 -16.807702 -24.706191 3.053335 -19.671468 -18.020589 10.231681 -18.984702 2.293172 -14.542344 -3.742608 -24.223856 -12.503447 7.677016 25.986925 6.951603 -11.870692 4.003295 -2.896005 17.996857 2.040952 5.855640 3.414487 10.997498 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.745019 2.402378 1.654079 -1.329347 2.611411 0.509463 1.090550 0.985607 -0.661847 1.920165 -3.206532 -0.598263 -0.521023 -2.493609 -0.084721 -2.219095 -0.160017 0.251825 -0.378757 0.710600 1.107485 -1.451970 -0.128377 -1.710079 -0.319172 -3.018213 -0.873984 -0.090046 1.424207 0.450857 1.009197 -0.040655 2.929539 0.689418 2.467123 2.082355 0.557249 2.563627 0.238113 1.442101 -0.284675 1.801476 -1.281321 -2.423228 0.075063 -1.729028 -1.393097 -1.488766 0.283674 -2.177606 0.451667 1.770078 -0.147051 0.038435 -1.519455 0.838975 2.272902 0.208494 2.788679 0.851375 -1.314808 -0.264931 -1.837492 1.207256 -0.936083 0.969700 0.666482 -1.740901 0.558327 0.201572 -0.097154 -0.507609 -0.910428 1.322946 0.924486 -1.715856 0.671223 -1.021046 -4.467454 -1.206675 -0.988656 0.744508 0.782985 2.235251 0.152363 -0.124331 0.294262 0.448524 0.236701 -2.691864 -0.773201 3.073366 -0.918865 -0.431698 -1.603273 2.121806 0.500247 0.908342 -1.115361 -0.736261 0.846305 0.656974 0.247091 -1.760928 -2.069465 -3.096351 1.371765 0.775935 -1.075518 1.165298 0.592214 1.219354 1.477571 1.889294 -2.889623 1.680389 -2.316690 0.816747 -0.100979 0.048544 0.053838 0.189598 -0.469604 0.613520 1.773014 -2.444321 1.561897 1.302628 -1.222730 -2.489268 -0.027590 -2.103727 -1.973013 -0.361121 0.658624 1.139389 0.449719 -1.082758 -0.491226 -0.863389 -0.326881 -2.295038 0.376551 2.725284 -2.065529 -0.339083 -0.182409 -0.032222 -1.550287 1.775622 1.059467 0.624362 2.732554 1.259950 -0.283629 0.838671 -1.684059 0.023937 3.628270 1.868160 -2.342527 1.534914 -1.180014 0.025167 0.852112 0.552519 1.117255 0.840993 -2.989285 -1.777237 0.307430 -1.256918 2.613027 1.956909 0.671897 -1.690755 3.826746 -0.368008 -1.812834 2.950138 2.261455 -2.141900 0.404936 1.421190 -2.758455 -0.697592 1.431656 -1.347685 -0.233261 -1.003888 -0.256024 0.291290 -1.248917 -1.193790 -0.218748 -2.691521 3.150140 0.432322 1.777551 -0.063420 -1.721083 -3.170575 3.044097 -0.194850 -0.693680 -0.700634 -0.393394 -2.103434 -2.514759 0.424397 0.818614 -1.689220 -1.373665 -2.068729 0.788402 1.535037 -1.383308 1.255276 -1.144143 -1.544110 0.860143 0.288636 1.301353 -1.925177 -1.515955 -0.735454 0.119768 1.665070 -0.654136 2.499570 3.437124 -0.566869 2.357153 0.063084 -1.201561 0.338547 1.857450 -1.892500 2.397319 -1.104513 1.428676 0.095952 1.816516 -1.469330 -0.829722 0.204646 -0.951657 -0.436521 1.517152 -1.572596 0.201112 0.383490 -2.269001 -0.485162 1.207328 -0.091064 0.542304 -0.201521 0.926095 -1.934848 -0.185274 -1.396217 0.026510 1.826803 0.203497 -1.960623 0.088677 0.337603 -0.199783 -0.568124 0.300163 0.175193 1.688082 -2.092181 0.158337 0.062278 -0.806630 -2.310483 -2.792466 0.447996 -2.433961 -2.451968 1.142620 -2.604541 0.229578 -1.769955 -0.259857 -3.071972 -1.371587 0.618123 3.036423 0.912579 -1.131185 0.580189 -0.302739 2.224528 0.314510 0.610015 0.495929 1.697328 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.866105 4.842861 3.428612 -2.756681 6.020409 0.898157 2.546434 2.203514 -1.921426 4.147237 -6.850900 -1.172142 -1.273513 -5.433933 -0.118303 -4.372762 0.030779 0.544832 -0.832647 1.679251 2.442685 -3.156229 -0.215452 -3.603044 -0.690342 -6.231883 -1.913259 -0.082651 3.368103 0.523976 1.943333 0.045989 6.585976 1.395263 5.550184 4.547887 1.304189 5.582230 0.560917 2.003616 -0.640763 4.014162 -2.848502 -5.272284 0.196706 -3.751937 -3.213927 -3.226887 0.787330 -4.425766 0.593228 3.974333 -0.369064 0.223204 -3.408765 1.956847 5.214825 0.158150 6.239483 1.831440 -2.857114 -0.498549 -3.887265 2.552600 -1.964028 1.937934 1.014998 -3.889251 1.135121 0.435851 -0.100810 -1.715870 -2.140731 2.957013 2.025388 -3.805393 1.614039 -2.026694 -8.858098 -3.500759 -2.551962 1.519084 1.410447 4.952301 0.258167 -0.246893 0.644420 0.913233 0.500837 -6.038823 -1.506300 6.453351 -2.266654 -0.978965 -3.286619 4.625991 0.850333 1.990804 -2.793386 -2.021774 1.781825 1.115734 0.593727 -3.767377 -3.562497 -6.382658 2.541727 1.374739 -1.911562 2.722877 1.649084 2.665672 3.430651 4.173169 -6.243013 3.267778 -5.057655 1.848972 -0.449517 0.065584 0.042175 0.640327 -0.651711 1.315624 4.066857 -5.634378 3.308962 2.813523 -2.561314 -5.454452 -0.037859 -4.601732 -4.351419 -0.856110 1.678048 2.247884 1.004919 -2.457237 -0.803832 -1.777803 -0.887111 -4.511612 0.699478 6.061013 -4.965657 -0.698699 -0.461636 -0.251661 -3.225444 3.871809 2.391864 1.598486 6.026708 2.880007 -1.010463 2.201551 -3.983638 0.171067 7.948762 3.902765 -5.161290 3.469578 -2.777771 0.079140 2.073124 1.436839 2.663510 1.247282 -6.375501 -3.688874 1.266674 -2.421176 5.838121 3.740406 1.641340 -3.827826 8.068946 -0.708562 -3.872942 6.609852 4.549932 -5.015721 1.299984 3.141473 -5.512343 -1.369314 3.085471 -3.255925 -0.812258 -2.420930 -0.381222 0.809338 -2.878447 -2.429613 -0.309566 -5.875596 6.799015 0.892693 3.354682 0.116623 -3.772630 -6.565460 6.816069 -0.357736 -1.347772 -1.664982 -1.158639 -4.279080 -5.642004 0.942260 1.460105 -3.550549 -2.866157 -4.683057 1.562956 3.547600 -2.729433 2.841525 -3.154249 -2.957658 1.959631 0.780188 2.811054 -4.227673 -3.334732 -1.346444 0.052816 3.387430 -1.759479 5.340239 7.368899 -1.538065 4.901780 -0.037860 -2.582358 0.911324 3.844506 -4.305287 5.333513 -2.157071 3.949169 0.205205 4.008494 -3.372250 -1.736569 0.365722 -1.781644 -1.195974 3.293573 -3.524604 0.355216 0.973417 -4.707335 -1.609917 2.418393 -0.168338 1.041409 -0.367441 1.647099 -4.183218 -0.365569 -3.028172 0.304308 4.024696 0.175286 -4.316814 0.341932 0.847267 -0.350344 -1.007405 0.676546 0.400998 3.779687 -4.706486 0.196565 0.084760 -1.306847 -4.844424 -6.435558 1.141725 -5.280545 -5.081437 2.906530 -5.821461 0.412146 -3.900359 -0.552957 -6.735178 -2.700079 1.351061 6.776769 1.911333 -2.600926 1.373817 -0.624228 4.685732 0.436971 1.446941 0.933489 3.575171 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -1.279775 1.299189 0.140867 -1.036927 2.234695 -0.030049 0.329128 1.825318 -0.394724 1.106887 -2.281284 -0.221539 -0.165695 -1.775534 0.196234 -0.371987 0.220718 0.633806 -0.614944 0.161673 0.917935 -0.333315 -0.081062 -1.284445 -0.218161 -1.196975 -0.433461 -0.023186 0.675138 0.297015 -0.067206 0.220010 2.314324 0.102220 1.779964 1.432992 1.416888 1.841076 0.556010 0.797390 0.252355 1.286473 -0.785415 -1.727266 0.278530 -1.334843 -1.145517 -0.809942 0.300623 -1.742209 1.320170 1.249588 0.294752 -0.003893 -0.934893 0.883914 1.679932 -0.496508 1.951329 0.896499 -1.473540 -0.403222 -0.730934 1.579099 -0.827742 1.237437 0.372022 -1.300315 -0.286187 0.597370 0.463203 -1.168589 -1.009596 0.521061 0.303744 -1.149681 0.989935 -0.448243 -0.229860 -1.385014 -0.931691 0.648665 -0.052617 1.529607 -0.162576 -0.203018 -0.421188 -0.004783 0.302872 -1.613648 -0.677571 1.842572 -1.039950 0.020102 -1.870092 0.745324 0.148451 0.499548 -0.883709 -1.184386 0.655722 0.615957 0.214490 -1.103752 -0.597850 -1.483438 0.820710 0.825434 -0.594884 1.536442 0.365345 0.919624 0.938462 1.083615 -0.977250 0.911258 -2.148803 0.539051 -0.126816 0.073739 -0.013898 -0.149118 0.878831 0.313763 0.842470 -1.711228 1.477882 0.986072 -0.966118 -1.263715 0.369798 -1.117695 -1.627249 -0.242642 0.753034 0.724913 0.162114 -0.498713 0.273330 -0.564403 -0.884459 -1.886151 -0.289053 1.295777 -1.956125 -0.359899 -0.235585 -0.123127 -0.867297 1.152265 0.598901 0.152908 1.971375 0.748740 -0.393739 0.801791 -1.386382 0.319474 2.446118 1.253974 -1.708449 0.938350 -1.128025 0.211223 0.787578 0.486223 0.288607 0.930627 -1.534948 -0.737768 0.449992 -0.834052 1.844918 0.740772 0.675971 -1.970245 1.840917 -0.354789 -0.837160 2.862240 1.695551 -1.910358 0.098227 1.255268 -0.747113 -0.350612 0.854373 -1.249700 -0.959880 -0.700023 0.163368 0.430481 -1.313652 -1.099422 0.189284 -1.742552 1.873595 0.249381 0.152174 -0.332238 -1.675193 -0.534337 2.430079 0.243128 -0.384110 -0.161747 -0.492148 -1.034933 -2.126125 0.406271 0.971747 -0.685013 -0.991877 -1.233831 0.299296 1.495354 -1.074465 0.410991 -1.828667 -0.619550 0.822689 -0.120577 0.882260 -2.082867 -1.115020 -0.627008 0.178152 1.221275 -0.959328 1.242856 2.291780 -0.695709 1.756448 0.880802 -0.795620 -0.054721 1.417345 -1.193179 1.777982 -0.338797 1.147510 0.128060 1.325444 -1.380506 -0.546140 -0.427508 -0.055562 -0.638715 1.154646 -1.422860 0.102123 0.210848 -1.212950 -0.608047 1.029731 0.283343 0.238996 -0.227891 0.034172 -0.854326 -0.396664 -1.194852 0.038932 1.402944 -0.408249 -1.651815 -0.006610 0.457342 -0.817231 0.251007 0.257703 0.266987 1.775382 -1.536981 0.437523 0.334742 -0.279596 -2.160879 -1.798596 0.183591 -1.050222 -1.181561 0.691587 -1.811223 -0.871761 -1.026548 0.355287 -2.239503 -0.745692 0.391301 2.036977 0.587794 -0.667714 0.541374 0.048959 1.560254 0.353176 0.366100 0.230390 1.074207 +PE-benchmarks/boruvkas-algorithm.cpp__main = -5.625335 9.173905 5.574316 -5.893215 8.560269 -1.851461 3.702953 3.356749 -0.717141 2.607397 -11.766848 -0.496019 -0.955276 -9.623709 1.567029 -5.228994 0.357866 5.691156 -0.636819 3.935657 5.179192 -3.694707 -1.186769 -8.361670 0.007316 -6.152213 -2.087207 -1.028169 -1.166410 4.202358 3.803037 2.761335 7.920736 4.467638 6.482372 7.803994 0.453761 11.602211 1.962653 6.542006 1.732787 5.228979 -1.830750 -12.659868 4.566101 -5.078887 -2.630339 -8.313676 -0.150310 -10.038457 6.277315 5.295122 1.505819 -2.159270 -7.216742 -0.850157 10.407213 3.388973 6.093411 5.784156 -4.153299 2.966933 -4.207506 -2.538126 -4.337353 4.746249 7.018047 -6.412889 0.756668 4.416499 7.056906 -4.514437 -6.813046 -1.224979 -0.108980 -3.302522 3.546037 -1.772015 -11.131776 -2.088478 -3.346180 1.819557 0.476502 7.743661 -0.830848 -1.701090 -4.901983 -1.485743 4.485906 -3.965338 -6.461607 7.427323 -0.008893 1.627937 -4.676948 6.739461 4.537785 -0.588523 -3.262084 -3.424789 4.249430 2.724037 0.942438 2.934439 -11.711580 -7.573527 6.948413 5.581751 -6.366681 4.594627 0.635094 5.677548 1.863256 1.033483 -6.855426 7.605782 -10.014922 2.541025 -0.315849 0.353708 1.248990 -1.816275 -0.657829 -0.898258 0.735454 -4.987483 8.918312 6.361395 -3.172609 -4.805919 4.297978 -3.165433 -6.115756 -2.279048 3.626915 4.952715 0.522717 1.190277 -2.940103 -4.438030 0.153746 -9.991768 -3.118108 11.043087 -5.555894 -0.722000 -2.100365 -2.592704 -3.651840 1.149678 0.003239 -0.255543 7.381163 4.084463 -2.182637 -0.792066 -4.546165 1.191964 13.058755 8.425718 -6.400663 1.963348 2.422512 1.534785 3.104707 -0.573471 1.136679 2.872518 -8.545382 -6.399921 -3.101031 -8.372883 6.241818 8.880627 3.481118 -10.223578 11.320091 1.130686 -3.492779 11.761682 5.583244 -5.609053 -1.349915 8.091072 -8.193041 -4.773631 1.252677 -0.429529 -1.793415 -1.157218 1.294862 -1.094142 -6.914187 -9.257529 -3.313523 -8.078915 6.492496 2.269793 4.952130 -3.958204 -5.466958 -6.180750 12.114995 0.402197 -3.481530 0.086979 -0.988751 -2.009481 -8.870247 2.150974 4.573912 -4.052635 -5.128212 -3.985549 1.916783 6.376546 -8.948709 -2.005437 1.208714 -5.400817 2.641396 -1.394320 2.257585 -12.635602 -5.505046 -0.912335 2.889595 4.850368 2.191827 5.032484 11.533576 -2.967105 2.701069 9.215487 1.927191 2.076602 10.164079 -2.599757 6.304390 -5.555797 9.036002 0.990825 6.339938 -4.419103 -3.745257 0.678333 -1.022847 -2.339022 7.252029 -6.599717 1.432066 4.021658 -4.294867 -1.471627 8.009041 2.912504 3.670970 -2.450336 3.329596 -3.376626 0.792186 -1.920573 -0.471065 6.631221 0.068672 -9.143270 -3.539600 4.854089 -3.810556 -3.576367 3.020056 1.051741 7.770599 -5.519387 6.687906 0.060656 -4.369457 -8.433447 -6.838854 5.616277 -7.576870 -6.957829 3.484820 -8.812480 -1.846123 -4.099883 4.762120 -8.785030 -1.864585 -1.350100 5.555796 2.642527 0.472469 3.176969 -0.133013 6.257611 0.726431 0.381432 -0.591963 9.324619 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.823427 0.816222 0.569995 -0.601066 1.503797 0.253688 0.248149 0.883279 -0.262581 1.120186 -1.459510 -0.046953 -0.133547 -1.065807 0.063802 -0.521532 -0.060149 -0.036735 -0.283476 0.051639 0.442146 -0.540731 0.026293 -0.718043 -0.186114 -1.445064 -0.325422 0.033827 0.772016 0.182980 0.014830 -0.008830 1.367729 0.194877 0.869743 0.872586 0.674006 1.133504 0.241291 0.422001 0.028883 0.750202 -0.596589 -0.883384 0.113681 -0.857074 -0.854086 -0.451208 0.126758 -1.104257 0.366904 0.905077 -0.056595 -0.130762 -0.656331 0.732785 0.901076 -0.278014 1.359457 0.415785 -0.696071 -0.695591 -0.900196 1.120187 -0.498106 0.634678 0.151961 -1.002679 0.000947 0.279019 -0.090272 -0.359799 -0.449968 0.604231 0.395043 -0.831895 0.234588 -0.430191 -1.368672 -0.433804 -0.548899 0.444561 0.266317 1.077908 0.149990 0.002453 0.293524 0.208948 0.115922 -1.281989 -0.335969 1.504681 -0.676164 -0.146733 -1.053208 0.743623 0.036589 0.335141 -0.442996 -0.380639 0.352372 0.398670 0.147210 -1.221636 -0.681213 -1.496345 0.779113 0.431113 -0.287015 0.449664 0.295572 0.351490 0.517118 0.931728 -1.075034 0.500931 -1.118698 0.351153 0.291575 0.051110 -0.230424 0.112958 0.008791 0.407910 0.965423 -1.294675 0.806084 0.434431 -0.792291 -1.027659 -0.136923 -0.827859 -0.906674 -0.074016 0.409587 0.366680 0.111523 -0.389958 0.131696 -0.306379 -0.640442 -1.185285 0.059184 1.128005 -1.295174 -0.150249 -0.100172 -0.022653 -0.683865 0.938857 0.611979 0.406653 1.213170 0.574130 -0.044421 0.667999 -0.946058 0.307056 1.750996 0.960444 -1.187133 0.807658 -0.982280 0.114811 0.380422 0.292770 0.446562 0.520931 -1.189170 -0.598758 0.466913 -0.380590 1.337671 0.996164 0.437438 -0.817429 1.424015 -0.464958 -0.611841 1.383065 1.242625 -1.194185 0.335777 0.813194 -1.076941 -0.146899 0.640725 -0.815342 -0.119298 -0.546579 -0.146514 0.382624 -0.645456 -0.497094 -0.025848 -1.201980 1.557355 0.195166 0.713036 0.039913 -0.803516 -1.182514 1.435525 -0.032456 -0.236003 -0.425605 -0.327333 -1.429818 -1.235768 0.186577 0.520549 -0.789088 -0.643776 -1.087776 0.148742 0.960729 -0.536779 0.593324 -1.111381 -0.405507 0.474678 0.197684 0.699460 -0.723464 -0.640086 -0.323879 -0.104566 0.751887 -0.670011 1.062605 1.435954 -0.397829 1.447850 -0.171024 -0.519560 -0.003834 0.759250 -0.816678 1.206987 -0.362801 0.651120 0.071050 0.915784 -0.777991 -0.199232 -0.077343 -0.446671 -0.250713 0.630414 -0.866075 -0.027335 0.192848 -1.036382 -0.421947 0.517338 0.108967 0.332386 -0.111184 0.158320 -0.621704 -0.257331 -0.760067 0.172169 0.811619 -0.149541 -0.788609 0.116064 0.191735 -0.326511 -0.361448 0.234016 0.167006 0.968421 -1.082459 0.093162 0.114733 -0.258434 -1.303014 -1.260927 -0.053997 -0.849848 -1.056283 0.488527 -1.446815 -0.109648 -0.817238 -0.034970 -1.557080 -0.556190 0.193673 1.383124 0.314226 -0.546465 0.426637 -0.052564 0.869195 0.174515 0.297866 0.312630 0.498826 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.544416 0.032051 -0.310890 -0.423192 1.643188 0.094655 -0.161214 0.702030 0.194497 0.646030 -0.845798 -0.261696 -0.212453 -0.806380 0.182878 0.284327 0.144403 0.254754 -0.581290 -0.411393 0.371469 0.048013 0.309207 -0.390455 -0.093017 -0.585340 -0.318302 0.176996 0.243168 0.235913 -0.665321 0.093727 0.758901 -0.171682 0.236789 0.251755 0.778657 0.748401 -0.121022 0.224963 0.542178 0.355791 -0.268100 -0.937817 0.408661 -0.712468 -0.830990 -0.322683 0.451576 -0.927116 0.500383 0.552936 0.123903 -0.320477 -0.330947 0.451751 0.544169 -0.036955 0.822131 0.403046 -0.780988 -0.487251 -0.562585 0.744981 -0.541442 0.858951 -0.089062 -1.173379 -0.902565 0.741287 0.158056 -0.411313 -0.700023 -0.044719 0.269597 -0.332183 0.378578 -0.029005 0.807079 -0.360728 -0.588807 0.265620 -0.482188 0.659745 -0.009381 -0.022436 0.014108 -0.197050 0.266720 -0.611568 -0.404671 0.723574 -0.371747 0.509588 -0.603538 -0.248079 -0.077669 -0.173442 -0.359753 -0.482044 0.113885 0.362804 0.162476 -0.241055 -0.013100 -0.641620 0.671460 0.508574 0.222640 0.110820 0.193430 -0.239729 -0.197419 0.301423 -0.278508 0.163065 -0.803810 0.221772 -0.048610 0.168624 -0.511078 0.077815 0.651991 -0.015636 0.435374 -0.804719 0.901279 0.192119 -0.563532 -0.297088 0.285728 -0.050162 -0.578329 0.206549 0.480400 -0.129494 -0.130046 0.067280 0.392303 -0.240254 -0.909701 0.035649 -0.428823 0.272239 -0.780446 0.050015 -0.150231 -0.371712 -0.129451 0.397111 0.337213 0.290330 0.885040 0.502572 -0.303291 0.250969 -0.874716 0.742444 1.352554 0.242239 -0.743507 0.282962 -0.601436 0.467157 0.387306 0.106495 0.088404 0.667379 0.097087 0.355285 -0.205300 -0.021009 0.876593 0.634296 0.660555 -1.049930 -0.107467 -0.500292 0.432912 1.077900 0.769609 -1.170637 0.438054 0.880984 -0.413633 0.008079 0.103323 -0.415513 -0.293356 -0.654455 0.346990 0.643563 -0.861026 -0.672172 0.062746 -0.627803 0.805626 0.051092 -0.038620 0.272652 -0.757249 0.175912 1.048340 0.139178 -0.001836 -0.129203 -0.445233 -0.649758 -0.972888 0.115020 0.478137 -0.548503 -0.288648 -0.582581 -0.261608 1.054674 -0.280519 0.186941 -0.888085 0.440336 0.397035 0.001875 0.487897 -0.536490 -0.302530 -0.153170 -0.434304 0.332586 -0.650232 -0.130257 0.393121 -0.631017 0.811855 0.259211 -0.153685 -0.074275 0.481876 -0.052188 0.796099 0.087350 0.638860 0.022892 0.735610 -0.313627 0.255166 -0.337937 -0.225704 -0.302493 0.781299 -0.940805 -0.222019 0.717506 -0.468062 -0.725611 0.466941 0.554974 0.627576 -0.129226 -0.347119 -0.290043 -0.079371 -0.142561 0.286367 0.496110 -0.473325 -0.801303 -0.143778 0.447717 -0.808794 -0.608774 0.430492 0.167239 0.968231 -0.676954 0.404532 0.291969 0.105528 -1.148175 -0.449165 -0.195874 -0.223844 -0.291631 0.544153 -1.099069 -0.593636 -0.366002 0.519249 -0.559201 -0.139639 -0.102444 0.807181 0.201756 0.041076 0.666745 0.282090 0.196208 -0.095955 -0.088371 0.338527 0.299097 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -7.676142 6.185339 8.290117 -2.839028 11.316062 2.730374 3.637458 7.208990 -7.929140 8.304229 -11.390644 -2.266158 -4.192383 -7.385553 -0.637538 -7.386611 1.536549 -1.794729 -2.370989 3.344869 4.576197 -5.205178 -0.841877 -5.315369 -1.297198 -7.190201 -4.699215 -0.264227 10.982403 -2.347958 0.005074 -0.569686 14.721807 0.951398 12.819552 8.538546 4.224556 9.286327 0.720784 -4.981426 -3.721450 9.940724 -7.624023 -6.931936 -1.384694 -8.977025 -4.906530 -1.744705 2.526285 -3.034653 -4.023156 7.501849 -1.844291 3.210106 -4.532810 6.162930 6.745734 -0.207496 14.038233 2.113343 -5.752626 -2.864268 -8.340685 6.813443 -2.589112 5.100330 -4.779563 -6.714440 2.455863 -3.216899 -2.628407 -7.316249 -2.317895 9.198178 2.885657 -7.536991 4.184431 -3.213605 -11.500411 -9.548370 -8.010001 1.976912 1.078301 8.293997 -0.758869 -0.515798 1.773291 3.503717 -0.494714 -14.431331 -0.149955 11.632493 -8.492449 -2.751331 -4.968571 6.657667 -1.940323 7.409317 -6.780509 -4.046634 3.000997 1.198749 1.055114 -13.412041 4.317188 -10.454810 2.222357 -0.656278 0.083448 6.310531 5.064887 6.330001 10.627417 10.826908 -10.079136 1.411401 -7.986558 2.620587 -4.586252 -0.149547 0.090626 4.959744 -0.446505 3.089471 11.211788 -12.974470 2.702108 3.722988 -5.066408 -11.227032 -1.017136 -12.083362 -9.609897 -2.443366 4.150306 3.978203 1.493377 -8.559338 0.546548 -2.375534 -3.278776 -6.295777 2.585351 8.371438 -12.204006 -2.815895 -1.030975 -0.179966 -5.471277 9.931067 6.070107 5.302074 11.336421 5.970903 -3.781352 5.228353 -8.971195 -0.017697 12.547168 2.082865 -11.317373 7.962076 -9.203800 -0.593259 5.492213 4.613613 7.520633 2.602293 -10.752827 -7.016743 5.889761 -0.870342 12.428948 3.900028 4.104308 -3.316945 13.807825 -5.251453 -10.070881 11.741756 5.477473 -11.325093 4.035600 2.943781 -5.102396 -0.740678 6.350917 -9.890162 -0.607354 -6.764949 -2.701320 3.548614 -5.619148 -0.919755 3.175915 -11.884610 14.944477 1.137850 3.732307 1.852989 -8.628157 -12.324750 13.230915 0.432289 -1.965773 -5.703315 -3.369412 -8.875798 -10.867269 2.120249 0.036644 -5.173645 -5.980816 -10.848945 3.121177 5.820216 -1.662954 8.266409 -11.411663 -4.703771 3.457634 1.714692 8.053547 -4.393563 -6.935471 -3.501565 -3.658605 7.880018 -8.166707 11.025800 14.694083 -3.432157 11.389235 -3.060126 -8.134807 0.131598 4.771083 -11.063556 10.549586 -2.319533 8.497357 -0.807565 7.539347 -8.714292 -3.463687 0.636568 -1.377297 -2.294234 4.597905 -4.513105 0.665227 -1.947552 -10.025076 -3.159942 1.322576 -3.226418 -0.797930 0.755250 1.290214 -9.659679 -1.907751 -6.489583 0.876912 8.388153 -1.631967 -7.675155 2.986678 -2.450958 0.364583 1.173972 0.094662 -0.699027 6.300079 -9.992239 -5.118436 0.434826 -0.527884 -7.467797 -12.685182 -2.535529 -8.025341 -6.951584 7.456677 -8.756488 2.091321 -7.859439 -4.326180 -12.185170 -6.128047 3.978240 14.617617 4.747801 -8.793069 2.112152 -1.217925 10.459533 1.888973 3.324865 -0.053069 3.291565 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -4.149261 3.770270 3.413868 -2.144787 6.964544 0.642770 2.888405 2.645090 -2.973142 4.762444 -6.540550 -1.537055 -1.915216 -5.348592 -0.121591 -4.351691 0.965662 -0.191388 -1.084339 1.479720 2.253849 -3.086592 -0.117596 -2.939726 -0.845437 -6.553575 -2.138891 0.348225 5.076533 -0.832377 1.104298 0.229784 7.945869 0.585081 6.653005 4.725163 1.904402 5.031193 0.609016 -1.129902 -0.865077 4.437347 -3.421583 -4.528767 -0.953884 -3.769141 -4.024426 -2.319800 1.532545 -3.102203 -1.746624 4.310122 -0.758054 1.152715 -3.358739 3.156802 4.817657 -0.454023 7.297909 1.398551 -3.081829 -1.109132 -4.146182 4.196070 -1.940490 1.296814 -1.555060 -4.227472 1.080409 0.079376 -1.988102 -2.123639 -1.549659 4.003179 2.744111 -4.447357 1.871811 -1.596854 -7.551708 -5.212762 -3.567756 1.623353 1.074201 5.147639 0.300992 -0.025948 1.821783 1.260277 -0.050309 -7.338618 -0.508843 6.672843 -3.701054 -1.947885 -2.606160 4.617488 0.391308 2.590130 -3.185380 -3.125353 1.470150 -0.076400 0.664090 -5.555148 -0.216450 -6.019867 1.049518 0.276965 -0.297915 3.697438 2.292847 2.779904 4.551135 5.145285 -6.421521 1.676173 -5.030887 2.303556 -1.746234 -0.389094 -0.336088 1.634641 0.162735 2.157400 5.513803 -7.063178 2.538341 2.593795 -2.201255 -5.897330 -0.672114 -5.273681 -4.747043 -0.964791 2.191888 1.736007 1.268078 -3.492970 0.206067 -1.163796 -1.077156 -2.611056 1.045248 5.622427 -6.261002 -0.751648 -0.317802 -0.090920 -3.207079 4.836437 3.194754 2.644313 6.618181 3.237104 -1.975924 3.371186 -5.276080 0.291660 7.977416 1.995396 -5.544503 4.507930 -4.613886 -0.345443 2.449903 2.629622 3.538595 0.517231 -6.233856 -3.346244 2.621216 -0.999393 6.752003 2.223163 1.581699 -3.273321 7.750425 -1.625628 -4.229798 6.718880 4.133195 -6.361776 2.654716 2.997914 -5.264457 -0.976320 3.744761 -5.102699 -1.002348 -3.859096 -0.372139 1.943015 -3.087521 -0.828519 0.820426 -6.136873 7.323441 0.653654 2.036898 1.196991 -3.943570 -6.884330 7.436782 -0.147384 -0.417314 -2.529241 -2.156123 -4.837708 -6.297949 0.693309 0.321366 -3.584245 -2.302906 -5.602975 1.167335 3.877392 -1.500614 4.519259 -5.739316 -1.721701 2.353409 1.985918 3.050700 -2.513275 -3.450459 -0.989495 -1.408426 2.888446 -3.788045 5.747192 6.971293 -1.962819 5.877064 -2.244259 -4.608368 1.114973 2.666054 -5.628961 6.087043 -1.223843 4.493959 0.444310 4.106305 -4.133144 -1.635055 0.066509 -2.267523 -2.042973 2.902644 -3.771044 0.111883 0.812827 -4.772594 -2.922190 1.267867 -0.461602 0.591476 0.008049 0.932570 -5.096136 -0.448535 -3.626025 1.175050 4.050981 -0.243755 -4.073411 1.649503 0.688823 -0.045608 -0.878638 0.308894 0.251236 3.705061 -5.434002 -1.259652 0.327246 0.343882 -4.534311 -7.733919 0.585915 -5.433611 -4.660218 3.451039 -6.177251 0.431782 -4.241108 -1.362672 -7.111711 -3.033353 2.414041 8.211502 1.715176 -3.912812 1.367751 -0.724500 4.393715 0.151845 1.978835 0.839442 2.536625 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -0.802496 0.149057 0.056894 -0.430329 1.748515 0.053257 -0.041046 1.106012 0.172937 0.516635 -1.301679 -0.504879 -0.353501 -0.863641 0.212679 0.039762 0.186304 0.383115 -0.790859 -0.451493 0.699846 0.270600 -0.018012 -0.751983 0.068055 -0.119893 -0.650541 -0.049437 0.281119 0.156760 -0.843845 0.229350 1.239520 0.018309 0.895149 0.649421 1.097282 1.177354 -0.375996 0.680256 0.387011 0.906854 -0.509557 -1.311530 0.499286 -1.130463 -0.601227 -0.264493 0.437119 -0.826824 1.091188 0.662798 0.153840 -0.014225 -0.177256 0.388324 0.544108 0.272798 1.077655 0.706046 -1.216418 -0.010469 -0.829828 0.883366 -0.564041 1.642254 0.005309 -1.364321 -0.974549 0.358886 0.773243 -1.165937 -1.009801 0.132127 -0.015676 -0.283287 0.768469 -0.061091 1.027277 -0.468210 -1.051632 0.228086 -0.505529 0.799666 -0.312342 -0.313854 -0.502334 -0.224201 0.375560 -0.849934 -0.621243 1.005871 -0.792357 0.832623 -1.086442 -0.592546 -0.372898 0.380010 -0.554983 -0.680475 0.354332 0.622126 0.101003 -0.114790 0.053460 -0.605224 0.933091 0.606705 -0.084878 0.254213 0.307073 0.150302 0.235600 0.498768 -0.090440 0.331359 -1.015662 0.350129 -0.392146 0.267500 -0.167086 0.182676 0.643431 -0.215495 0.540945 -0.840939 0.861550 0.337843 -0.873565 -0.472029 0.449350 -0.728198 -1.198615 -0.074198 0.657978 0.422939 -0.239862 -0.261877 0.278919 -0.480305 -0.921937 -0.594510 -0.553212 -0.069303 -0.895303 -0.353164 -0.298051 -0.430795 -0.437655 0.730778 0.306982 0.322880 1.096538 0.653612 -0.454429 -0.252903 -0.993202 0.585750 1.526915 0.143986 -1.152412 0.255339 -0.685648 0.625710 0.764650 0.145063 0.128368 0.913298 0.037755 0.360197 -0.353331 -0.296510 1.169252 0.912480 0.852545 -1.043720 0.089406 -0.757791 -0.288148 1.688349 0.829903 -1.517807 0.168735 0.743562 0.155734 -0.181579 0.156460 -0.562164 -0.371361 -0.791580 0.298838 0.499511 -1.144159 -0.747299 0.530474 -1.073188 1.212802 0.134866 0.111854 0.098840 -1.387252 -0.188447 1.723004 0.184357 -0.242163 -0.166917 -0.308146 -0.339523 -1.199479 0.320941 0.538299 -0.363434 -0.704992 -0.748622 0.186184 1.323039 -0.621034 0.290670 -0.540816 -0.116724 0.322596 -0.594082 0.915753 -1.194386 -0.748491 -0.627084 -0.335927 0.914638 -0.801076 -0.117947 1.244572 -0.680346 0.938187 1.074820 -0.327836 -0.532893 0.882828 -0.277174 0.914348 -0.149764 0.541322 -0.170415 1.003602 -0.822260 -0.238582 -0.277489 0.380719 -0.358097 1.026891 -0.784182 0.106041 0.228952 -0.994770 -0.320023 0.741621 0.233408 0.465893 -0.150697 -0.293968 -0.637700 -0.082456 -0.300652 0.059699 0.975757 -0.510743 -1.272287 -0.269828 -0.007229 -1.093531 -0.215005 0.430973 -0.076469 1.354003 -0.820345 0.126443 0.447838 -0.207536 -1.391515 -0.672166 -0.600821 -0.498132 -0.380760 0.650157 -0.890593 -0.600133 -0.574559 0.392561 -0.819640 -0.481488 -0.077802 1.041418 0.732655 -0.135087 0.703106 0.379362 0.915243 0.216027 -0.184694 0.213770 0.545851 +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.210702 1.141197 1.343575 -1.059965 2.711822 0.713615 0.243450 1.164530 -0.585210 1.301893 -2.367204 -0.360637 -0.476534 -1.445623 0.261766 -1.114517 -0.023606 -0.227971 -0.830405 0.172271 0.761926 -0.537608 0.179603 -1.207065 -0.258422 -1.794640 -0.798075 0.119940 1.357386 0.555546 -0.150570 -0.057758 1.979663 -0.203498 1.097241 0.888431 1.556678 1.659973 -0.368548 -0.176913 0.443674 1.221233 -0.962012 -1.417856 0.268966 -1.647703 -1.374671 -0.302044 0.608315 -1.335589 -0.139864 1.289607 0.056605 -0.510340 -0.872348 1.350821 1.295121 -0.231577 2.013669 0.684479 -1.189782 -1.221963 -1.646562 1.575025 -0.956578 1.727701 -0.725900 -1.563148 -0.797057 0.704479 -0.198227 -0.422451 -1.178141 0.618289 0.695862 -1.072531 0.953739 -0.514121 -0.497857 -0.990041 -0.969042 0.753308 -0.186963 1.580579 -0.045317 -0.035760 0.343185 0.155237 0.297594 -1.807929 -0.772802 1.798495 -1.120804 -0.111089 -1.476792 0.470651 -0.122450 0.327972 -0.933914 -0.968954 0.662337 0.603103 0.199487 -2.064336 0.364352 -2.171511 1.053733 1.130470 0.146657 1.053483 0.129292 0.779761 0.689471 1.183986 -1.407056 0.285891 -1.535544 0.072016 -0.297965 0.102325 -0.738103 0.493891 0.239846 0.632268 1.324768 -1.961498 1.588293 0.739082 -1.329128 -0.848838 0.255545 -1.035789 -1.561032 0.039214 0.668612 0.492248 -0.015817 -0.387762 0.416677 -0.561716 -0.858745 -0.780520 -0.159819 1.154839 -2.001970 -0.248266 -0.175188 -0.236154 -0.677097 1.461043 0.966566 0.512251 1.716975 0.901781 -0.482497 0.813092 -1.526287 0.920068 2.655139 0.404466 -1.890064 1.070963 -1.659874 0.382239 0.763579 0.339563 0.533215 1.357515 -1.373571 -0.868101 -0.011585 -0.554008 2.078030 1.321661 0.748043 -1.996857 1.615420 -1.688805 -0.447205 2.024782 1.548602 -1.864052 0.073517 1.468571 -1.633984 -0.419395 0.655585 -1.306506 -0.316941 -1.244309 0.008536 0.987990 -1.203584 -1.171566 0.027108 -1.804101 2.284978 0.261595 0.440939 -0.019496 -1.124661 -1.919519 2.244698 -0.093659 -0.384060 -0.697439 -0.525422 -1.266175 -2.118232 0.282741 0.721511 -1.105207 -1.045112 -1.583395 0.000828 1.280166 -0.943153 0.684706 -2.372130 -0.301167 0.730666 0.155409 1.194938 -0.653083 -0.989827 -0.670285 -0.827693 0.973049 -1.515372 1.127226 1.843112 -0.904693 2.307472 -0.402775 -1.637787 -0.238702 1.305640 -0.792426 1.914000 -0.278273 1.331982 -0.066027 1.596558 -1.261568 -0.149836 -0.224325 -1.236467 -0.510998 1.308265 -1.524913 -0.086560 0.354533 -1.336250 -1.043001 1.010347 0.306193 0.555057 -0.222903 0.212746 -0.938084 -0.408951 -0.549899 0.309907 1.272273 -0.763216 -1.428563 -0.045962 0.525202 -0.912719 -0.869486 0.493838 0.159219 1.732379 -1.621956 0.349563 0.314894 -0.149675 -2.323244 -1.748764 -0.275368 -1.165480 -1.155927 1.245185 -2.077549 -0.451476 -1.148971 0.290437 -1.249114 -1.138309 0.683047 2.077696 0.451316 -1.028812 0.904378 0.057350 1.300360 0.135691 0.152354 0.405514 0.374343 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = -0.052335 -0.005740 -0.147207 -0.000978 0.063046 -0.105738 -0.171282 0.144791 0.197086 0.128098 -0.004474 -0.061771 -0.011220 -0.108196 0.033503 0.161706 0.052564 0.108405 0.014802 -0.085731 0.031733 -0.018487 0.010660 0.010839 -0.019818 -0.166790 0.039125 0.046433 0.027042 -0.055583 -0.151833 0.069417 0.138396 -0.009165 0.102513 0.072266 0.044621 0.044374 0.188083 0.013744 0.021259 0.033550 -0.026519 -0.078293 0.018781 -0.002548 0.034522 -0.022139 0.070333 0.013453 0.163375 0.031624 -0.009573 0.022815 -0.101903 0.000146 -0.076853 0.113575 0.114215 0.018646 -0.001042 -0.046814 -0.024641 0.195557 -0.166167 -0.084264 -0.057251 -0.084057 0.001178 0.064299 -0.047544 0.061380 0.068526 0.026262 -0.022522 -0.074396 0.038725 0.029578 0.204078 -0.015068 -0.112573 0.058513 -0.072587 0.070680 -0.003009 0.027112 -0.099582 0.030770 0.011068 -0.067925 0.024837 -0.039477 -0.074070 0.041838 0.215905 0.077737 0.109856 -0.038681 0.129740 -0.013867 0.002964 -0.071417 0.045190 0.106082 0.158544 0.044697 0.097033 -0.058624 0.052095 0.032802 0.112061 0.000744 0.018785 0.051164 0.081915 -0.151773 -0.134861 0.057853 0.021254 -0.019816 -0.015802 0.037572 0.093381 -0.021665 0.071241 -0.114049 0.037919 0.015506 0.115428 0.014884 0.023588 0.024231 -0.013498 -0.048944 0.091840 -0.025970 -0.029447 -0.008605 0.056924 0.046948 -0.138533 0.084006 -0.051736 0.055180 -0.051617 0.031431 -0.025076 -0.065208 0.021039 -0.018987 0.013009 0.087491 0.077536 0.075682 -0.052485 -0.083383 -0.137063 0.031177 0.082784 -0.139594 -0.038583 0.079884 -0.058001 -0.044990 0.052218 0.108154 0.048257 0.031622 0.089770 0.019317 -0.050698 0.061575 0.086875 -0.096649 0.040311 0.031350 -0.019957 0.104900 0.006003 0.167024 -0.054079 -0.104019 0.051362 0.072213 -0.117524 0.035426 0.023963 -0.024253 0.088076 -0.123493 0.048735 0.139168 -0.117015 0.009491 0.018869 -0.048543 0.058263 -0.023890 0.005329 0.099939 -0.100962 0.211650 0.135277 0.080411 0.057344 -0.063388 -0.116044 -0.119907 -0.093108 -0.014940 -0.021373 -0.047526 0.084756 -0.058070 -0.081822 0.122126 0.039497 0.015238 -0.165346 0.089877 0.070979 0.025554 -0.078806 0.087735 -0.001132 0.100065 -0.062793 0.002975 -0.055980 0.046972 0.020597 -0.055886 0.046296 0.107572 0.076148 0.082344 0.002223 -0.102309 0.096780 -0.041590 -0.165677 0.075603 0.010344 -0.046872 0.014668 -0.043493 -0.026113 -0.059048 -0.024055 -0.061611 -0.037050 0.087093 -0.051418 -0.047945 -0.035475 0.083869 0.144334 0.021935 -0.068069 -0.056267 0.010781 -0.048309 0.062496 0.032368 0.078303 -0.032334 0.098779 0.052612 -0.034473 -0.142274 0.008860 -0.001941 0.069614 -0.087080 0.015385 0.066216 0.106180 -0.028712 -0.017543 -0.040865 0.061589 0.033820 0.000000 -0.183618 -0.082187 -0.008678 0.050199 -0.089278 0.146458 -0.030371 0.102761 0.009955 -0.054378 0.058886 -0.012625 -0.034188 0.053625 -0.047269 -0.023369 0.069161 +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.995947 1.381959 1.289203 -1.489459 4.548492 0.531831 0.902698 1.780864 -1.376482 1.947192 -3.619508 -0.596315 -0.813466 -2.771843 0.480330 -1.038097 0.508070 -0.066628 -1.178227 0.308100 1.263250 -1.038288 0.306740 -1.887514 -0.263761 -2.565850 -1.039435 0.242132 2.265581 0.430922 -0.475708 0.147716 3.319049 -0.203148 2.090254 1.577738 2.013165 2.579487 -0.272604 -1.356056 0.644192 2.032516 -1.398685 -2.655860 0.276053 -2.335835 -2.344582 -0.896388 1.068392 -2.062107 -0.583630 2.099921 0.061431 -0.554449 -1.659968 1.911893 2.680707 -0.512349 3.259705 1.135586 -1.778035 -1.474972 -2.156844 2.252050 -1.379318 2.014289 -1.003800 -2.603771 -1.099899 1.238460 -0.573202 -0.974936 -1.759185 0.865716 1.281169 -1.732191 1.492238 -0.525293 -0.570383 -2.299951 -1.814474 0.935986 -0.608459 2.695101 -0.093065 -0.127499 0.807871 -0.023918 0.643515 -2.864558 -1.118399 2.661920 -1.764880 -0.398715 -1.712888 1.146680 -0.035082 0.438350 -1.716357 -1.970271 0.853021 0.549084 0.338956 -2.658976 0.819827 -2.881579 1.130744 1.328427 0.439263 2.041316 0.807048 1.031125 1.034722 1.730588 -2.283609 0.340399 -2.531672 0.466922 -0.809163 0.122307 -1.004819 0.706623 1.096267 0.781509 2.091113 -3.275375 2.426347 1.424494 -1.522616 -1.545602 0.447976 -1.636638 -2.475031 0.014574 1.281400 0.543271 0.168566 -0.636955 0.804972 -0.723022 -1.529362 -0.533591 -0.489435 2.165177 -3.590573 -0.311857 -0.333417 -0.474974 -0.993151 2.066432 1.350016 0.905817 2.864149 1.537413 -1.302287 1.664221 -2.624849 1.555549 4.570812 0.373486 -2.825048 1.632609 -2.519513 0.637846 1.322210 0.677572 1.102180 1.286140 -2.092524 -0.919890 0.631273 -0.787367 3.273320 1.539550 1.370393 -3.287312 2.551276 -1.869292 -0.598834 3.480929 2.125355 -3.479518 1.065911 2.451129 -2.519995 -0.382983 0.939075 -2.170696 -0.762938 -2.301600 0.388944 1.485786 -2.173373 -1.623291 -0.026075 -2.807726 3.337771 0.448262 0.280723 0.178802 -1.672120 -2.082629 3.901331 0.145471 -0.346641 -1.108406 -1.101530 -2.192854 -3.494965 0.425964 0.632783 -1.759477 -1.309373 -2.533281 -0.200356 2.465139 -1.320737 1.176486 -3.891470 0.191234 1.191999 0.878023 1.622007 -1.213517 -1.685304 -0.548028 -1.345217 1.194787 -2.464611 1.627260 2.694480 -1.648696 3.176085 -0.612684 -2.232796 0.137116 1.864217 -1.446143 2.990520 -0.269529 2.911988 0.035320 2.567581 -2.031799 -0.245717 -0.500755 -1.726377 -1.159663 2.081973 -2.657565 -0.145846 1.125742 -1.743851 -2.276313 1.491240 0.563242 1.179520 -0.364470 -0.133054 -1.668301 -0.296041 -1.007409 0.744999 2.028537 -1.196112 -2.485103 -0.090342 1.178847 -1.221418 -1.383689 0.817690 0.226731 2.763954 -2.593143 0.579753 0.454107 0.324196 -3.208336 -3.076903 0.121787 -1.883845 -1.661068 2.306909 -3.418284 -0.685307 -1.809906 0.525316 -2.589894 -1.394284 0.781339 3.385848 0.454775 -1.390599 1.454345 0.181171 1.716796 -0.065060 0.525205 0.469238 0.747283 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__long std::__lg(long) = -0.356449 0.103292 -0.051553 -0.105155 0.476390 0.085359 -0.159586 0.387820 0.015316 0.448082 -0.412543 -0.205864 -0.198456 -0.348445 -0.065196 -0.039057 0.027826 0.016322 -0.211588 -0.159453 0.223955 -0.098003 0.027099 -0.149790 -0.072974 -0.208324 -0.218440 0.029118 0.437878 -0.319697 -0.312010 -0.056658 0.668224 -0.067873 0.569023 0.297955 0.350317 0.420419 0.062331 0.107367 -0.097776 0.448878 -0.336615 -0.336614 -0.006588 -0.430885 -0.085423 0.062762 0.253648 -0.017557 0.346304 0.276080 -0.082118 0.129902 -0.154856 0.256011 0.033094 0.102919 0.694452 0.048156 -0.388294 -0.136162 -0.404549 0.676014 -0.312536 0.387291 -0.170820 -0.335678 -0.070377 -0.158347 -0.065171 -0.380391 -0.164451 0.410599 0.038213 -0.332087 0.165296 -0.151290 0.019481 -0.285139 -0.467855 0.107793 -0.047524 0.275934 -0.076788 0.006030 -0.050713 0.201053 -0.057584 -0.638788 0.024620 0.443698 -0.461216 0.216613 -0.135933 0.062849 -0.276510 0.293930 -0.202869 -0.048131 0.059871 0.136522 0.096577 -0.475316 0.361404 -0.357167 0.330704 -0.106723 -0.020199 -0.006956 0.441843 0.088586 0.374309 0.525223 -0.110484 -0.142827 -0.461982 0.073884 -0.026622 0.051768 -0.017889 0.262375 0.018362 -0.054057 0.548923 -0.570764 0.117520 -0.022821 -0.235763 -0.491094 -0.045254 -0.448523 -0.422421 -0.070543 0.221548 0.125053 -0.054035 -0.405426 0.083301 -0.034692 -0.525319 -0.236297 0.122167 0.084102 -0.330769 -0.120169 -0.066983 -0.103015 -0.210008 0.434390 0.269111 0.276788 0.545727 0.322573 -0.075782 0.067824 -0.451038 0.032706 0.429017 -0.046511 -0.561423 0.323711 -0.539744 0.039195 0.313284 0.281262 0.316380 0.264717 -0.120358 -0.016495 0.253475 0.100218 0.546599 -0.029663 0.257709 0.067069 0.283368 -0.021647 -0.318786 0.697616 0.149660 -0.639572 0.284716 0.068008 0.102554 0.073540 0.295797 -0.356487 0.044907 -0.361688 -0.043358 0.285379 -0.320105 0.001539 0.232817 -0.495159 0.743177 -0.044256 0.086079 0.295324 -0.680975 -0.225628 0.553282 0.042762 -0.054270 -0.259088 -0.204009 -0.405460 -0.474649 0.103707 0.099063 -0.240901 -0.215340 -0.465720 0.160398 0.399273 0.035526 0.412515 -0.452054 -0.190321 0.173171 -0.017250 0.377606 -0.071340 -0.235713 -0.149992 -0.116223 0.469700 -0.412875 0.307176 0.613643 -0.214154 0.582259 0.122951 -0.224760 -0.095298 0.181152 -0.466762 0.482003 -0.075803 -0.109559 -0.103126 0.274846 -0.355387 -0.071402 -0.012480 0.214904 -0.025075 0.087087 -0.146914 -0.029460 -0.183674 -0.588779 -0.002627 0.010024 -0.073507 0.107382 0.110286 -0.084123 -0.307277 -0.154449 -0.295304 0.003514 0.368749 -0.015381 -0.344604 0.199803 -0.250447 -0.115258 0.220672 -0.005692 -0.039362 0.346222 -0.440602 -0.306221 0.104578 -0.048892 -0.384615 -0.398672 -0.426617 -0.154542 -0.118557 0.272654 -0.390847 -0.047691 -0.295775 -0.138321 -0.467516 -0.054444 0.040811 0.649539 0.399279 -0.302172 0.198939 0.002344 0.476530 0.177854 -0.038959 0.109303 0.166255 +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.399467 1.175745 1.340927 -1.269275 3.036211 0.476615 0.358432 0.938131 -0.216730 1.343288 -2.691565 -0.779636 -0.658746 -1.943227 0.331057 -1.214104 0.114344 0.128701 -0.941559 0.165874 0.937795 -0.618759 0.336736 -1.420122 -0.248589 -1.869142 -0.932967 0.189314 1.088436 0.580682 0.076474 0.072489 2.241090 -0.023450 1.281694 1.005096 1.395202 2.174124 -0.389046 0.107552 0.677262 1.347980 -0.907170 -2.113872 0.558054 -1.710920 -1.549738 -0.829070 0.709021 -1.827530 0.078139 1.445334 0.151000 -0.707502 -1.202702 1.141208 1.803479 0.051550 2.188728 0.871613 -1.311502 -0.788157 -1.783795 1.213294 -1.252608 1.883195 -0.490131 -1.987404 -1.056494 1.055984 -0.035551 -0.454371 -1.623298 0.384586 0.865952 -1.099186 1.003404 -0.456318 -0.640829 -1.015937 -1.197143 0.760710 -0.303778 1.820989 -0.093746 -0.064604 0.542825 -0.033151 0.532002 -1.814820 -1.011283 1.881250 -1.026737 0.005858 -1.169971 0.565485 -0.096283 0.075764 -1.125341 -1.107620 0.681303 0.560324 0.281464 -1.346632 -0.218995 -2.263757 1.387937 1.414612 -0.010208 0.993184 0.554046 0.718635 0.514847 1.059373 -1.766249 0.551157 -1.865880 0.196838 -0.338606 0.102191 -0.784002 0.464604 0.299745 0.496785 1.278021 -2.138912 2.031864 0.943580 -1.379950 -0.801878 0.455012 -0.865184 -1.676570 0.048235 0.900516 0.459070 -0.030889 -0.196749 0.297002 -0.660329 -0.861116 -0.642685 -0.421096 1.360181 -1.967653 -0.165383 -0.283806 -0.561272 -0.663510 1.341839 0.882514 0.502743 1.931043 1.067932 -0.761266 0.582686 -1.741732 1.141187 3.225736 0.229406 -2.039873 1.045954 -1.441467 0.593857 0.911368 0.303956 0.599727 1.259403 -1.291737 -0.766772 -0.259335 -0.736387 2.213240 1.611778 0.937259 -2.641344 1.681660 -1.301441 -0.142975 2.608950 1.626092 -2.195085 0.160250 1.884440 -2.223739 -0.636771 0.555747 -1.126939 -0.408518 -1.455660 0.277083 1.001593 -1.527640 -1.576365 -0.145630 -2.018645 2.322358 0.285406 0.359654 -0.021694 -1.329274 -2.005918 2.745145 0.005260 -0.392262 -0.666263 -0.713722 -1.121179 -2.511417 0.360971 0.837483 -1.267972 -1.050597 -1.635297 0.076753 1.671136 -1.152956 0.599860 -2.081311 -0.204150 0.852020 0.226795 1.155385 -0.994021 -1.103172 -0.448566 -0.869402 0.942927 -1.305106 0.928350 1.946580 -1.151481 2.283697 -0.007189 -1.664320 -0.072276 1.590883 -0.708763 2.133301 -0.522622 1.689046 -0.079173 1.812195 -1.194900 -0.096734 -0.212721 -1.348207 -0.696436 1.575089 -1.900042 -0.147080 0.740735 -1.392598 -1.291414 1.294056 0.599808 0.966584 -0.293129 0.200728 -1.087659 -0.204857 -0.288154 0.400529 1.442443 -0.660693 -1.848285 -0.228041 0.902796 -1.086260 -1.404903 0.673429 0.180256 2.056552 -1.798929 0.747480 0.345216 -0.223836 -2.505041 -1.757810 0.058032 -1.512961 -1.144317 1.457093 -2.357936 -0.544943 -1.209685 0.677007 -1.170741 -0.938532 0.445868 2.168620 0.587076 -0.883228 1.138167 0.154770 1.295673 0.097156 -0.042029 0.480707 0.796342 +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.753154 0.445518 -0.075791 -0.698840 2.443263 0.229061 0.059962 1.060062 -0.209755 0.801902 -1.486879 -0.007505 -0.083693 -1.317004 0.337000 0.160677 0.152846 0.197355 -0.655471 -0.402518 0.489175 -0.116469 0.252221 -0.793570 -0.070103 -1.175117 -0.377483 0.134925 0.510450 0.560645 -0.684392 0.166396 0.997924 -0.190784 0.315584 0.507818 1.148907 0.936196 -0.153839 0.137218 0.755732 0.462673 -0.355967 -1.327357 0.408380 -0.991704 -1.273778 -0.444849 0.443789 -1.416579 0.195968 0.843832 0.200601 -0.477093 -0.548133 0.770308 1.050012 -0.319682 1.072167 0.689378 -1.085657 -0.939433 -0.726958 1.015210 -0.614550 1.107157 -0.002719 -1.510764 -1.030227 1.156855 -0.050403 -0.375117 -0.813254 -0.102999 0.443761 -0.528004 0.538430 -0.105374 0.461201 -0.495407 -0.553419 0.477695 -0.441772 1.090528 0.141246 -0.103141 0.215392 -0.343249 0.475213 -0.858011 -0.736691 1.204424 -0.479386 0.362139 -1.131888 -0.023934 0.191157 -0.191486 -0.415123 -0.884239 0.306728 0.580017 0.116425 -0.777590 -0.256206 -1.232812 0.799029 0.772272 0.146130 0.536810 -0.112499 -0.160275 -0.285390 0.379449 -0.659997 0.381991 -1.163942 0.313137 -0.123787 0.193632 -0.710137 -0.138584 0.945729 0.168815 0.504423 -1.095642 1.362388 0.556564 -0.759319 -0.539910 0.381309 -0.254303 -0.925975 0.335746 0.525125 0.009199 0.001426 0.195413 0.494374 -0.430926 -1.083338 -0.297402 -0.611115 0.819120 -1.483078 0.011486 -0.130355 -0.246602 -0.392610 0.599665 0.483149 0.271064 1.277780 0.605641 -0.395949 0.833245 -1.112446 1.019450 2.153420 0.689888 -1.020770 0.412953 -0.905420 0.588709 0.400063 -0.006355 0.019265 0.972869 -0.469633 0.187995 -0.073487 -0.389889 1.225119 1.031095 0.833911 -1.664900 0.410375 -0.825831 0.357235 1.422528 1.257541 -1.668772 0.776568 1.438985 -0.812834 0.004688 0.216868 -0.765898 -0.483067 -0.845226 0.370920 0.705438 -1.223464 -1.007394 -0.112393 -0.939262 1.172073 0.279994 0.219650 0.104883 -0.693052 -0.127080 1.562922 0.139217 -0.048621 -0.155592 -0.436356 -1.193469 -1.368408 0.101528 0.730957 -0.948458 -0.468308 -0.846184 -0.423396 1.447129 -0.745056 0.240455 -1.473987 0.548321 0.516738 0.267492 0.672234 -0.871473 -0.582390 -0.320148 -0.561364 0.409751 -1.018591 0.131333 0.688715 -0.760662 1.369981 0.020387 -0.464681 -0.030929 0.807814 -0.045890 1.113299 0.163256 1.272279 0.197429 1.201385 -0.677464 0.183202 -0.501003 -0.744763 -0.471364 1.228860 -1.474227 -0.178452 1.118498 -0.541890 -1.142083 0.878324 0.704619 0.893810 -0.384591 -0.329234 -0.361978 -0.091201 -0.361836 0.426646 0.709855 -0.817920 -1.179724 -0.381353 0.867892 -1.097122 -0.905070 0.656536 0.255719 1.380564 -0.941406 0.733723 0.380167 0.131451 -1.807112 -0.925908 0.007291 -0.490101 -0.661437 0.654552 -1.728317 -0.762046 -0.576454 0.642817 -1.200048 -0.485886 0.000582 1.195970 0.008136 0.045829 0.828712 0.347191 0.276231 -0.183791 0.204098 0.376951 0.348886 +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.438459 2.006071 1.831713 -1.651133 3.200380 0.908248 0.391730 1.376761 -0.676503 1.458216 -3.314713 -0.054698 -0.116012 -2.086090 0.396549 -1.082913 -0.355924 -0.050201 -0.720645 0.401159 0.941521 -0.972222 0.204842 -1.906624 -0.244291 -2.080310 -0.814470 -0.027970 1.069874 1.199701 0.281221 -0.132183 1.860345 0.266788 0.955865 1.171800 1.402098 2.337769 -0.161936 0.582013 0.662665 1.276063 -0.910511 -2.251277 0.805729 -1.969519 -1.544453 -1.077655 0.225291 -2.547144 0.510126 1.607782 0.218199 -1.143055 -1.345884 1.241521 2.204595 -0.337017 2.140449 1.100230 -1.379916 -1.316642 -1.828287 1.007284 -1.049080 2.239097 0.318743 -1.956518 -0.758287 1.237294 0.321525 -0.450694 -1.588781 0.323745 0.601289 -1.150576 0.890115 -0.836173 -1.641973 -0.597836 -0.707151 0.961841 0.070975 2.084094 0.121270 -0.128179 0.351579 -0.015812 0.708368 -1.773823 -1.426926 2.285583 -0.806029 -0.105383 -1.867332 0.993390 0.098117 0.086270 -1.001853 -0.817674 0.979738 1.251886 0.178857 -1.925305 -1.160363 -3.087920 1.944867 1.926025 -0.576278 0.975117 0.221624 0.898099 0.398444 1.082317 -2.019345 1.132991 -2.018862 -0.027250 0.297954 0.235935 -0.828835 0.067380 0.080353 0.540289 1.088479 -2.003745 2.428290 1.223842 -1.776514 -1.036634 0.464408 -1.050619 -1.796559 0.187969 0.598995 0.780239 0.038847 0.078941 0.060494 -0.999688 -1.123593 -1.959243 -0.421855 2.202209 -2.437604 -0.255831 -0.226272 -0.259848 -0.946989 1.433966 0.926051 0.206832 1.964393 0.918485 -0.285043 0.823939 -1.393719 1.253755 3.691021 1.415119 -2.196331 0.993048 -1.349298 0.657308 0.722525 -0.167590 0.365858 1.657988 -2.173720 -1.363060 0.068727 -1.421683 2.226044 2.422806 1.111276 -2.894582 2.587520 -1.430917 -0.408644 2.617411 2.124163 -2.020118 -0.048328 2.194802 -2.385531 -0.517859 0.596650 -1.005381 -0.391179 -0.888917 -0.133554 0.605581 -1.515875 -2.232454 -0.700830 -2.214201 2.723989 0.599450 1.205849 -0.648486 -0.996042 -2.092927 2.788463 0.017318 -0.825382 -0.505162 -0.260666 -1.866513 -2.451858 0.413914 1.483274 -1.524923 -1.494225 -1.690725 0.098016 1.592288 -1.819820 0.160128 -1.960609 -0.670655 0.789062 0.054390 1.320902 -1.659016 -1.271396 -0.782878 -0.512052 1.290169 -1.090452 1.514724 2.469397 -0.953774 2.716820 0.361217 -1.010973 -0.163307 2.105162 -0.439890 2.162161 -0.795048 2.118022 -0.027189 2.134620 -1.349473 -0.205113 -0.220261 -1.583986 -0.384753 1.856952 -2.063328 -0.032959 0.744722 -1.491015 -1.095838 1.829582 0.564398 1.062720 -0.583919 0.456447 -0.726419 -0.437697 -0.570530 0.204403 1.552646 -0.953813 -2.047659 -0.725516 1.058184 -1.128958 -1.427029 0.882926 0.324584 2.264545 -1.835272 1.257725 0.232697 -0.770657 -3.109349 -1.671877 0.252531 -1.495806 -1.644923 1.292797 -2.709553 -0.497472 -1.355753 0.661189 -1.885147 -1.111983 0.214076 2.052093 0.397953 -0.758172 1.090875 0.099652 1.563356 0.293112 0.215051 0.400129 0.890284 +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.516472 1.101896 0.710645 -1.229407 4.077988 -0.253727 0.721879 1.269841 -0.359835 1.225444 -3.009160 -0.380891 -0.281491 -2.619052 0.642517 -0.788855 0.799955 0.525408 -0.824996 -0.046719 0.848658 -0.449090 0.066728 -1.619696 -0.087511 -2.769291 -0.932173 0.301339 1.081229 0.225185 -0.270911 0.738697 2.820407 -0.116822 1.617813 1.621253 1.743658 1.866966 0.068558 -0.660531 1.258182 1.120146 -0.725416 -2.329480 0.138035 -1.387562 -2.342476 -0.951155 0.683520 -1.923533 -0.849907 1.614784 0.298609 -0.309126 -1.509224 1.343762 2.449269 -0.346594 2.159732 1.260864 -1.555055 -0.624520 -1.243640 1.667873 -1.332884 1.150046 -0.698365 -2.504721 -1.126777 1.932259 -0.292754 -0.859206 -1.529002 0.014076 1.054773 -1.253524 1.110674 -0.021168 -0.077937 -1.751628 -1.202118 0.944330 -0.479104 2.152762 0.230659 -0.238327 0.669323 -0.543439 0.863651 -1.764820 -1.233001 2.085628 -1.236122 -0.282147 -1.101597 0.881124 0.958142 -0.158303 -0.761240 -2.434286 0.649438 -0.045112 0.114655 -0.722592 0.038184 -1.862588 0.483923 0.997702 0.123413 1.977561 -0.144359 0.763426 0.450318 0.718295 -1.893264 0.137591 -2.319928 0.955204 -1.123517 -0.176868 -0.774339 -0.092155 1.425967 0.987192 1.164932 -2.293800 2.241620 1.447368 -0.880883 -0.960592 0.524432 -0.826067 -1.944952 0.115680 1.057173 0.450817 0.435668 0.046847 0.682661 -0.666628 -0.603587 -0.373880 -0.951695 1.899069 -2.899257 -0.083006 -0.141102 -0.315826 -0.934092 1.146375 0.876430 0.567049 2.477531 1.098974 -1.361733 1.777953 -2.333441 1.275020 4.000088 0.526149 -1.802525 1.207492 -1.568331 0.484665 0.930055 0.599741 0.290196 0.611341 -1.615275 -0.444240 -0.045758 -0.963299 2.376590 1.183380 0.841448 -3.148250 1.781801 -0.918289 -0.148737 3.158833 1.660841 -3.090618 1.430319 2.713307 -2.195530 -0.588708 0.664877 -1.850826 -1.009834 -1.895418 0.723746 0.978763 -2.055259 -1.265028 -0.012967 -1.968956 1.900166 0.573784 -0.240687 0.093515 -0.994458 -1.744899 3.663159 0.177616 0.222382 -0.464838 -0.980358 -1.064833 -2.909449 0.026168 0.567595 -1.720701 -0.381233 -1.700087 -0.305927 2.592739 -1.586974 0.887548 -3.119546 0.659707 1.037023 1.037696 0.689070 -1.490969 -1.334691 -0.129059 -1.002108 0.133528 -2.024201 0.841956 1.717190 -1.295675 2.046374 -0.648698 -2.115961 0.436140 1.443113 -0.947869 2.302722 -0.005713 2.774667 0.745129 2.066528 -1.717694 -0.366509 -0.687521 -1.717071 -1.568736 1.931409 -2.747971 -0.038020 1.957661 -0.638283 -2.351270 1.509350 1.075070 1.204634 -0.709153 -0.335769 -1.279546 0.284571 -0.434298 0.963582 1.346629 -0.839849 -2.223138 -0.194341 2.007603 -1.464605 -1.833669 0.791686 0.294735 2.337059 -1.910424 1.135374 0.661044 0.723253 -2.739398 -2.759438 0.852119 -1.824747 -1.164023 1.062889 -3.206402 -1.258702 -1.200750 0.887552 -2.082171 -0.995187 0.811424 2.589738 0.115318 -0.801420 1.096160 0.205058 0.614763 -0.387847 0.648739 0.231384 0.804172 +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&) = -1.078613 1.097945 0.826788 -0.864157 2.371213 0.083779 0.441004 0.990481 -0.718888 0.950713 -2.165435 -0.261367 -0.287588 -1.781583 0.418843 -0.537539 0.412416 0.102957 -0.377841 0.336036 0.669145 -0.714711 -0.020902 -1.179185 -0.128083 -1.575220 -0.523691 0.126845 1.169036 0.033202 -0.090509 0.377175 2.070860 0.078319 1.399129 1.078895 1.159096 1.517593 0.329624 -0.881916 0.381910 1.059706 -0.718144 -1.538510 0.174394 -1.141532 -1.091958 -0.484806 0.411498 -0.865224 0.016324 1.200458 0.042088 -0.293127 -1.285771 0.864153 1.523207 -0.272596 1.801771 0.732992 -0.931268 -0.804467 -1.058760 1.438380 -0.976316 0.906987 -0.473252 -1.271220 -0.287014 0.814871 -0.021578 -0.541966 -1.193114 0.444090 0.582624 -1.053184 0.892056 -0.216025 -0.408524 -1.311916 -1.135535 0.766223 -0.316139 1.652861 0.057533 -0.056468 0.154784 0.000810 0.437901 -1.570631 -0.651992 1.289045 -1.071652 -0.254613 -0.818253 1.018968 0.154772 0.174777 -0.814403 -1.343504 0.682465 0.029546 0.171489 -1.179940 0.568222 -1.676063 0.753486 0.745782 0.049061 1.456662 0.760801 0.932871 0.851623 0.882391 -1.225650 -0.260978 -1.584488 0.258682 -0.245871 -0.187915 -0.513348 0.337788 0.387121 0.417992 1.118834 -1.925069 1.390040 1.047407 -0.708960 -0.689113 0.217384 -0.922374 -1.419698 -0.178733 0.789464 0.478376 0.186421 -0.175789 0.233941 -0.356703 -0.833589 -0.650233 -0.367832 1.679303 -2.107855 -0.175780 -0.180693 -0.312652 -0.653861 1.086646 0.730351 0.567016 1.455364 0.814724 -0.834711 0.863915 -1.521421 0.789990 2.636877 0.282815 -1.647795 1.082341 -1.437170 0.165646 0.692518 0.521771 0.601114 0.285765 -1.435684 -0.874513 0.437535 -0.600846 1.795359 0.598098 0.607911 -1.840485 1.786383 -0.530299 -0.593516 2.303598 0.712590 -1.750462 0.363999 1.630543 -1.527278 -0.298596 0.613944 -1.348596 -0.436349 -1.337188 0.232307 0.773035 -1.324719 -0.845830 -0.101899 -1.636111 1.815340 0.376348 0.105594 -0.140540 -0.853061 -1.395498 2.561361 0.008908 -0.092267 -0.624815 -0.693922 -0.814980 -2.017664 0.160023 0.396758 -0.921995 -0.553472 -1.412168 -0.158268 1.457454 -0.943383 0.569664 -2.330910 -0.024823 0.727386 0.495649 0.518464 -0.805990 -1.018434 0.016107 -0.559369 0.481996 -1.328534 1.185161 1.566737 -0.904725 1.707226 -0.018572 -1.186501 0.251685 1.098834 -0.882553 1.744692 -0.422191 1.593518 0.255534 1.473031 -1.359941 -0.363246 -0.244681 -0.950225 -0.877055 1.035021 -1.537218 0.004768 0.619127 -0.740958 -1.439116 0.880458 0.355565 0.725489 -0.322670 -0.148777 -0.622840 -0.151791 -0.484698 0.628692 1.124431 -0.562881 -1.232430 0.050221 0.914201 -0.564121 -0.583168 0.472616 0.115751 1.663646 -1.538397 0.493609 0.241651 0.345871 -1.796204 -1.979957 0.352681 -1.124324 -0.773770 1.182788 -2.284059 -0.509758 -0.994713 0.330690 -1.405684 -0.399110 0.518191 1.953818 0.131325 -1.023886 0.729775 -0.030738 0.826316 0.014174 0.322560 0.088317 0.555142 +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.294438 1.947786 2.521672 -1.358776 3.962245 0.900221 0.855168 2.134294 -2.331546 2.396646 -3.856255 -0.663018 -1.185302 -2.848722 0.343390 -1.605165 0.543907 -0.549443 -0.743422 1.136024 1.430554 -1.890476 0.131468 -1.898897 -0.361543 -2.536560 -1.156345 0.146531 3.366975 -0.151185 0.167133 -0.050386 4.230187 0.230198 3.092528 1.935816 1.911557 3.100601 0.331247 -2.447819 -0.531092 2.830993 -2.039178 -2.471529 0.307899 -2.743602 -1.735745 -0.602834 0.934085 -1.343567 -0.892810 2.469263 -0.392076 -0.210050 -2.034403 1.964574 2.745828 -0.602330 4.158674 0.854112 -1.500936 -2.043704 -2.658859 2.427257 -1.408713 1.864195 -1.504816 -2.132925 0.031551 0.019573 -0.728672 -1.268442 -1.665378 2.133390 1.231846 -2.247032 1.653003 -0.840042 -2.018313 -2.932443 -2.567872 0.970711 -0.367090 3.125105 -0.271564 0.019959 1.004060 0.693325 0.234218 -3.994010 -0.482121 2.801812 -2.516047 -0.920244 -1.470491 2.162411 -0.814189 1.365382 -2.281435 -1.656558 1.151283 0.311982 0.488974 -3.853977 1.747718 -3.557141 1.353215 0.780885 0.513880 2.532321 2.239978 1.966459 2.465423 2.857128 -3.093736 -0.296678 -2.546927 0.230536 -0.548406 -0.029583 -0.766780 1.592157 0.100688 0.889139 3.111846 -4.282137 1.876449 1.553714 -1.632640 -2.104380 -0.014037 -2.808585 -2.816606 -0.577749 1.544995 0.806181 0.128962 -1.564540 0.449889 -0.528485 -1.831785 -1.384210 0.062211 2.981717 -4.341569 -0.607580 -0.473469 -0.609093 -1.162870 2.759332 1.776927 1.523849 2.815924 1.785565 -1.466520 1.868738 -2.832485 1.169735 4.639334 0.260872 -3.644710 2.374027 -3.231066 0.170006 1.701096 1.128580 2.193834 0.759310 -2.995194 -2.148743 1.849187 -0.447476 3.841834 1.358269 1.376911 -2.843076 3.979688 -1.586630 -1.951482 4.103379 1.328394 -3.296544 0.691553 1.859584 -2.902170 -0.179941 1.304485 -2.740669 -0.355364 -2.575667 -0.277856 1.671080 -2.045548 -1.277097 0.155643 -3.585504 4.415371 0.415444 0.752360 0.180801 -2.068517 -3.481931 4.405861 0.117513 -0.658087 -1.936359 -1.327918 -2.398126 -3.716753 0.679372 0.250037 -1.596442 -1.719707 -3.319125 0.124665 2.117270 -0.786454 1.669020 -4.974781 -0.667638 1.281177 0.763988 1.856973 -1.042317 -2.068481 -0.404477 -1.431061 1.825395 -2.613763 3.029306 3.775264 -1.730210 3.835229 -0.859318 -2.543692 0.246895 1.809428 -2.521555 3.522178 -0.990563 3.191477 -0.298494 2.732104 -2.645690 -0.593672 -0.018186 -1.484594 -1.032314 1.580540 -2.081998 -0.051968 0.049042 -2.471982 -2.117121 0.939174 -0.357665 0.781011 0.029471 0.015990 -1.943339 -0.681458 -1.099014 0.738381 2.542806 -0.982397 -2.260723 0.487094 0.243404 -0.139579 -0.758861 0.547537 0.002340 2.688999 -3.254390 -0.354920 0.099043 0.109929 -2.816586 -3.789021 -0.144978 -2.141249 -1.768457 3.087984 -3.730353 0.264591 -2.345194 -0.411531 -2.840364 -1.108185 0.949524 4.117081 0.722842 -2.711162 1.330100 -0.195318 2.632472 0.365409 0.671207 0.168834 0.823135 +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.629008 0.558831 -0.203435 -0.468584 1.676989 0.240868 0.210770 0.927267 -0.719247 0.777403 -1.071040 0.058634 -0.069634 -1.114972 0.175033 0.103654 0.093303 0.064896 -0.292135 0.033147 0.394624 -0.488645 0.127784 -0.560104 -0.094630 -0.923298 -0.101537 0.076709 0.838328 0.347383 -0.500631 0.003745 0.895636 -0.089641 0.512067 0.521466 0.564661 0.631935 0.198950 -0.514646 0.131118 0.526689 -0.431554 -0.925294 0.067075 -0.754335 -0.852014 -0.315581 0.331029 -0.864861 -0.058647 0.703859 -0.014329 -0.206205 -0.556572 0.573012 0.821264 -0.256032 1.046044 0.373570 -0.605031 -0.955866 -0.532029 0.950858 -0.327775 0.407302 0.009593 -0.902857 -0.231379 0.531763 -0.387850 -0.159197 -0.319597 0.313342 0.424608 -0.603812 0.388025 -0.218866 -0.419919 -0.563997 -0.442242 0.296568 -0.369937 0.969163 0.097007 -0.002779 0.135431 -0.021415 0.202062 -0.968312 -0.314904 1.031511 -0.374434 -0.036655 -0.745795 0.568486 0.271714 0.085951 -0.446569 -0.480209 0.251893 0.361856 0.141627 -1.146394 0.070645 -1.097145 0.413231 0.324741 0.200367 0.799719 0.190157 0.100983 0.143716 0.610452 -0.648879 0.148840 -0.852303 0.209780 -0.168944 0.145472 -0.405674 0.071814 0.646462 0.124551 0.639231 -1.073153 0.799761 0.519894 -0.305660 -0.769773 0.165289 -0.505374 -0.670660 0.114138 0.365309 0.014044 0.058771 -0.157734 0.307538 -0.174354 -0.950876 -0.217727 -0.172229 0.990798 -1.340072 0.007853 -0.092862 -0.057245 -0.300827 0.593369 0.468906 0.341752 1.042204 0.528474 -0.279441 0.805681 -0.824213 0.622691 1.669654 0.561682 -0.871150 0.500839 -0.827619 0.165293 0.245587 0.131877 0.358459 0.662032 -0.746927 -0.229450 0.281386 -0.213653 1.039814 0.594286 0.562564 -0.871433 0.891421 -0.514105 -0.136703 0.976443 0.799020 -1.129411 0.664466 0.832097 -0.847761 0.196960 0.327789 -0.725308 -0.168352 -0.694922 0.111937 0.553986 -0.825850 -0.589507 -0.193216 -0.838348 1.135164 0.183069 0.294059 0.052455 -0.504941 0.025155 1.160711 0.187454 -0.134586 -0.315194 -0.345439 -1.390383 -0.989642 0.107182 0.312330 -0.716752 -0.426022 -0.812866 -0.417212 0.904574 -0.350914 0.324270 -1.375995 0.320999 0.410675 0.492749 0.509002 -0.484723 -0.485735 -0.162477 -0.348855 0.439084 -0.757943 0.636291 0.731229 -0.509281 1.054595 -0.155076 -0.160434 0.220159 0.547611 -0.431294 0.929105 0.076708 0.960929 0.134755 0.855088 -0.537733 0.074476 -0.273402 -0.591590 -0.239256 0.761389 -0.922887 -0.133623 0.704607 -0.477899 -0.849821 0.430983 0.274893 0.597131 -0.148306 -0.245316 -0.450203 -0.166177 -0.542820 0.271386 0.613542 -0.499467 -0.734977 -0.085386 0.410077 -0.355184 -0.366594 0.365383 0.182299 0.856138 -0.830937 0.291404 0.121109 0.203942 -1.111965 -0.896810 0.020868 -0.263940 -0.661228 0.715615 -1.335998 -0.237478 -0.574462 0.155921 -1.330772 -0.412381 0.071768 1.138135 -0.105706 -0.194937 0.491612 0.083493 0.398491 -0.080686 0.351698 0.199028 0.289562 +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.237231 1.300946 0.740231 -1.053625 3.252410 0.672762 0.325622 1.883859 -1.556437 1.437949 -2.346417 0.489854 -0.211324 -2.054803 0.395263 -0.150735 0.114537 -0.096683 -0.561025 0.198592 0.822165 -0.877073 0.213364 -1.238211 -0.237970 -1.952011 -0.361572 0.110366 1.660695 0.602624 -0.336734 0.005677 1.881382 -0.132298 1.052183 0.908955 1.682890 1.549771 0.161492 -0.789199 0.279740 1.133773 -0.909419 -1.779856 0.487402 -1.639588 -1.471403 -0.417229 0.563556 -1.634120 -0.074720 1.456252 -0.004751 -0.585362 -1.079799 1.332482 1.751245 -0.991897 2.083381 0.763050 -1.396393 -2.061922 -1.333989 1.863068 -0.819117 1.302512 -0.193914 -1.581165 -0.549457 0.899937 -0.325021 -0.424610 -0.983461 0.690321 0.697316 -1.219521 0.917869 -0.494368 -0.535723 -1.345907 -1.012552 0.754276 -0.422122 1.909528 0.128473 0.010083 0.414019 0.016484 0.379590 -1.992947 -0.707334 1.846631 -1.112104 -0.008300 -1.903990 0.891502 -0.132934 0.275411 -1.013324 -1.171276 0.719475 0.763969 0.272899 -2.438982 0.327705 -2.381283 1.083346 0.759696 0.277801 1.434236 0.423004 0.516770 0.457187 1.283518 -1.452255 0.299559 -1.740148 0.194069 0.117318 0.261279 -0.936392 0.259744 0.797344 0.373901 1.349983 -2.230398 1.694005 0.956142 -1.037087 -1.230227 0.274893 -1.104559 -1.485691 0.092845 0.797202 0.206189 0.028081 -0.272958 0.507919 -0.428616 -1.855235 -1.205031 -0.396049 2.003211 -2.908844 -0.122657 -0.244902 -0.247761 -0.687617 1.329015 1.009927 0.684448 1.766059 1.021401 -0.480868 1.750882 -1.633541 1.161907 3.169935 1.283173 -1.976350 1.118914 -1.918040 0.416299 0.727677 0.214868 0.725779 1.102167 -1.709127 -0.816319 1.016759 -0.505797 2.152776 1.244831 1.054485 -2.304395 1.819283 -1.086652 -0.422481 2.313455 1.392526 -2.227691 0.925151 1.676139 -1.444647 0.150967 0.573154 -1.541849 -0.607026 -1.249478 0.113606 1.092592 -1.543845 -1.312899 -0.261031 -1.829714 2.431523 0.383301 0.708862 0.013907 -0.991844 -1.102581 2.342310 0.070327 -0.398943 -0.792119 -0.663148 -2.023053 -2.101247 0.291334 0.807868 -1.272323 -1.040820 -1.757854 -0.548203 1.645735 -0.838436 0.547777 -3.218501 0.100121 0.806454 0.487935 1.017650 -1.273692 -1.058619 -0.466326 -0.678201 0.975987 -1.574142 1.346635 1.784937 -1.108683 2.498404 -0.284536 -0.940730 0.115286 1.262993 -0.777479 1.956554 -0.158364 2.123304 0.075710 1.811701 -1.447259 0.027743 -0.446693 -1.078984 -0.505395 1.407084 -1.755560 -0.186662 0.808875 -1.243586 -1.609100 0.989426 0.379238 1.005580 -0.304989 -0.255241 -0.534610 -0.519827 -0.915091 0.516604 1.344432 -1.251997 -1.492606 -0.179403 0.712414 -0.801355 -0.664961 0.725071 0.383473 1.863096 -1.768703 0.592076 0.194418 0.054109 -2.499260 -2.053914 0.089633 -0.917616 -1.318668 1.519766 -2.795518 -0.454533 -1.211732 0.316602 -2.244296 -0.691058 0.230777 2.251661 -0.119667 -0.691551 1.136244 0.139787 1.068658 -0.057453 0.633990 0.345347 0.510909 +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.146018 3.776097 4.289352 -1.960566 6.941334 1.229773 1.593253 4.489923 -4.518454 4.225553 -6.511759 -0.416135 -1.900265 -4.334923 0.092298 -3.500343 1.002803 -0.347190 -1.108390 1.939469 2.440282 -2.835895 -0.186797 -3.132612 -0.540305 -4.201694 -2.315021 -0.019937 5.267116 -0.142321 0.243566 0.065393 7.443734 0.659341 5.972261 4.361043 2.115659 5.166025 0.877876 -2.724768 -1.157856 4.804376 -3.626369 -4.389661 -0.008546 -4.803611 -3.144561 -1.564104 1.349836 -3.048396 -2.524385 4.087785 -0.707201 0.913534 -2.867841 3.068899 4.432231 -0.310670 7.092279 1.568398 -3.352785 -2.321946 -4.052787 3.004408 -1.572331 2.700585 -2.108222 -4.221927 0.886703 -0.306009 -1.029657 -3.709401 -1.585966 3.896104 1.298417 -3.706264 2.481445 -1.384071 -5.612994 -4.880543 -3.869971 1.130196 -0.149457 4.888040 -0.414414 -0.357121 0.454992 1.098398 0.329407 -6.982572 -0.715523 6.109399 -3.823999 -1.273083 -2.791866 3.787374 -0.023792 2.939411 -3.260195 -2.572285 1.723219 0.793273 0.575610 -6.527157 1.546922 -5.705100 1.531205 0.330921 0.221440 4.141197 1.963945 3.606118 4.773481 5.025670 -5.643999 1.166913 -4.784812 1.607824 -2.524797 -0.068799 -0.346527 2.116459 0.399253 1.768437 5.225858 -6.756522 2.548301 2.549650 -2.536859 -5.464298 0.142579 -5.524411 -4.941464 -1.022007 2.370295 1.773339 0.668771 -3.533061 0.361940 -1.545098 -2.057777 -3.513016 0.335644 5.393077 -7.202575 -1.176112 -0.600845 -0.328082 -2.425177 4.548259 2.856042 2.557330 6.022247 3.138042 -2.265928 3.641990 -4.999312 0.887244 7.575453 2.310924 -5.761480 3.889559 -4.121410 -0.080450 2.959777 1.894078 3.575689 1.869053 -5.654825 -3.885470 2.610918 -0.977475 6.406545 3.356138 2.549927 -3.371390 7.302612 -2.857778 -4.252020 6.648899 2.857198 -5.967747 2.395470 2.703243 -3.697881 -0.298375 2.677267 -4.948994 -0.787337 -3.365467 -1.149697 2.185242 -3.708601 -1.880188 0.882673 -6.104916 7.513795 0.781896 1.838872 0.438539 -4.186267 -5.472570 7.444469 0.786325 -0.964818 -2.619393 -1.929672 -4.793011 -6.041555 0.978862 0.627862 -3.087463 -3.053998 -5.457933 0.642470 3.361507 -1.478324 3.475437 -6.727752 -1.634097 2.107019 1.110569 3.709255 -3.492551 -3.706331 -1.540111 -2.209214 3.762228 -4.128857 5.540285 7.153641 -2.186557 5.950029 -1.158545 -3.512117 0.641552 2.875779 -5.091215 5.676589 -1.224786 6.417281 0.090131 4.375663 -4.487238 -1.585436 -0.092610 -1.577224 -1.653458 3.360742 -3.434514 0.212315 0.567354 -4.521544 -2.563333 1.406259 -0.786080 0.373963 -0.034736 0.378434 -4.705783 -0.927441 -2.738359 0.769472 4.336266 -1.601830 -4.806694 0.845157 -0.065444 -0.510366 -0.918801 0.624333 0.074907 3.769761 -5.271876 -1.209669 0.336200 -0.235634 -4.685702 -6.449060 -0.220888 -3.844564 -3.942788 4.036158 -5.676512 0.353654 -4.001776 -1.307083 -6.725374 -2.889091 1.736182 7.374950 1.741503 -4.027486 1.562005 -0.388835 4.825591 0.560771 1.980061 -0.323463 2.063754 +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.271952 0.063100 -0.295748 -0.217946 0.691047 0.077629 -0.187624 0.289086 0.094041 0.365220 -0.393747 -0.121957 -0.096937 -0.488366 0.076978 0.276055 0.052335 0.100538 -0.197267 -0.147977 0.197876 -0.175440 0.181284 -0.209872 -0.031901 -0.375709 -0.059114 0.077823 0.249061 0.097081 -0.361684 -0.026690 0.308941 -0.062146 0.055501 0.099594 0.289355 0.353272 0.060315 -0.045622 0.150405 0.225983 -0.144069 -0.470129 0.219906 -0.356581 -0.292944 -0.174511 0.244057 -0.389314 0.184919 0.276436 0.025064 -0.209622 -0.278577 0.176499 0.344290 0.045297 0.451376 0.151616 -0.173429 -0.359514 -0.250146 0.292447 -0.326439 0.246568 0.025399 -0.449321 -0.319531 0.306401 -0.094437 -0.040937 -0.219010 0.011366 0.144169 -0.212372 0.167042 -0.061833 0.285956 -0.211271 -0.268188 0.089210 -0.261358 0.380741 -0.009132 0.019292 0.065228 -0.042068 0.147811 -0.314795 -0.170018 0.228534 -0.112760 0.173992 -0.004323 0.123026 0.035621 -0.109439 -0.152045 -0.092810 0.027748 0.183215 0.109580 -0.152888 0.076080 -0.342483 0.375397 0.138599 0.114424 0.047165 0.251476 -0.153880 -0.143757 0.187073 -0.186752 -0.037701 -0.391643 0.001064 0.081544 0.125674 -0.226855 0.064607 0.323549 -0.088917 0.225890 -0.434021 0.446500 0.129344 -0.130159 -0.175078 0.150193 -0.027993 -0.231262 0.110273 0.213830 -0.111300 -0.066024 0.021304 0.199219 -0.069599 -0.561193 0.139211 -0.170198 0.314815 -0.425646 0.056738 -0.085660 -0.205255 -0.007653 0.107107 0.123127 0.124264 0.426022 0.265911 -0.161275 0.232059 -0.357418 0.383751 0.705390 0.095835 -0.353444 0.114728 -0.270017 0.198308 0.185199 0.033157 0.143368 0.317658 0.014422 0.130966 0.006197 -0.029790 0.403096 0.165894 0.367077 -0.460211 0.097416 -0.034460 0.221010 0.515725 0.274442 -0.532495 0.333519 0.399950 -0.361191 0.139216 0.013315 -0.087485 0.014229 -0.355621 0.165943 0.321216 -0.419740 -0.375857 -0.150866 -0.312065 0.430929 0.026174 0.101228 0.203852 -0.310839 0.275059 0.434353 0.099484 -0.049069 -0.143762 -0.211679 -0.524469 -0.452973 0.074929 0.138498 -0.361997 -0.107098 -0.309725 -0.191112 0.505019 -0.090863 0.010046 -0.590257 0.259791 0.182800 0.152389 0.198326 -0.077251 -0.144989 0.042754 -0.201504 0.179554 -0.264044 0.045107 0.200933 -0.331194 0.359585 0.027138 0.102777 0.115510 0.252868 -0.053760 0.383638 0.010766 0.306958 -0.014684 0.356512 -0.125189 0.175190 -0.130666 -0.201328 -0.058394 0.305342 -0.441293 -0.138161 0.429990 -0.204148 -0.362391 0.209919 0.241378 0.444192 -0.033067 -0.173824 -0.116522 -0.018370 -0.026268 0.110838 0.249270 -0.123277 -0.367905 -0.107824 0.228293 -0.223938 -0.343016 0.214106 0.055122 0.439724 -0.334293 0.213284 0.089207 0.050798 -0.435399 -0.192670 -0.066806 0.020024 -0.106182 0.409727 -0.622018 -0.170112 -0.183451 0.230299 -0.339479 0.097088 -0.165985 0.362190 0.061412 0.013821 0.335873 0.113572 0.093632 -0.039451 -0.047556 0.136488 0.159560 +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.364877 1.860126 1.442439 -1.082585 4.352842 0.338578 0.706444 2.792573 -1.908147 2.305182 -3.842288 -0.264587 -0.733380 -3.018262 0.301850 -0.944365 0.961046 0.209444 -0.712204 0.729246 1.307105 -1.434808 0.066654 -2.036935 -0.215823 -2.675828 -1.164513 -0.012146 2.459222 -0.026798 -0.201203 0.256089 4.481555 0.663593 3.096737 2.360430 1.541657 2.983639 1.023294 -1.528434 -0.167749 2.487267 -1.768236 -2.715822 0.343552 -2.653413 -2.011324 -0.940859 0.529052 -2.151104 -0.645280 2.227412 -0.119571 0.331617 -1.858767 1.367165 3.201582 -0.535756 3.819329 1.059933 -1.920747 -1.516620 -1.786723 1.967469 -1.174789 1.290979 -0.596780 -2.724450 -0.006446 0.530159 -0.008591 -2.219748 -1.537981 1.704033 0.907722 -2.004810 1.377758 -0.424161 -2.082416 -2.723445 -2.259135 0.746847 -0.572000 2.901425 -0.091751 -0.165587 0.438449 0.174632 0.675074 -3.569954 -0.742116 3.186413 -2.191215 -0.305941 -1.635326 2.004242 0.020661 1.305117 -1.753449 -2.021386 0.844264 0.401050 0.239614 -2.548988 0.333204 -2.965536 1.164260 0.250150 -0.008804 2.682770 1.317041 1.790913 2.136624 2.447298 -3.089823 0.101272 -2.797413 1.017693 -1.104834 -0.070750 -0.418004 0.753642 0.804629 0.987297 2.668823 -3.828873 1.939656 1.731073 -1.320059 -2.600459 0.082543 -2.675674 -2.729156 -0.394832 1.484125 0.733028 0.473762 -1.508823 0.341788 -0.833996 -1.787224 -2.176203 -0.410191 3.208574 -4.466063 -0.560045 -0.347034 -0.388975 -1.373986 2.206050 1.398846 1.254815 3.030494 1.613205 -1.630399 2.377724 -2.814925 1.024135 5.029297 1.537454 -3.216511 2.024120 -2.347601 0.225682 1.751733 0.861505 1.707114 0.462893 -2.867996 -1.707405 1.467771 -0.683774 3.561713 1.941223 1.552639 -2.907736 3.842170 -0.879048 -1.778152 4.514545 1.521929 -3.694586 1.622703 2.140106 -2.398040 0.107321 1.059359 -2.631264 -0.745955 -2.280483 -0.171874 1.129323 -2.292099 -1.269069 0.358292 -3.370055 3.909708 0.673109 0.606368 0.104697 -2.162903 -2.549747 4.865834 0.553189 -0.315750 -1.275581 -1.252572 -2.535603 -3.680502 0.424473 0.363213 -1.935598 -1.201507 -2.994820 0.129439 2.743153 -1.117670 1.595344 -4.574284 -0.362127 1.119123 0.706247 1.518030 -2.627104 -2.060443 -0.481452 -1.013576 1.645131 -2.401437 2.679068 3.669724 -1.508780 3.120763 -0.404538 -1.666614 0.489607 1.665265 -2.403127 3.021960 -0.972952 3.962967 0.266099 2.734468 -2.459972 -0.697087 -0.431206 -0.815647 -1.398224 2.004964 -2.530727 -0.009788 1.209308 -1.921203 -2.178183 1.073993 -0.060532 1.036142 -0.346253 -0.455516 -2.215798 -0.104372 -1.058080 0.733708 2.331349 -0.802514 -2.840037 0.192434 0.666122 -0.621526 -1.078131 0.564353 0.072070 2.507584 -2.971000 -0.059416 0.360517 0.126690 -2.736707 -3.754675 0.294596 -2.110585 -1.978804 2.329553 -3.967877 -0.290469 -2.039112 -0.277107 -3.649224 -1.085490 0.645574 3.882545 0.642056 -2.046116 1.161332 -0.022466 2.209598 0.186195 1.254571 -0.135854 1.305315 +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.629008 0.558831 -0.203435 -0.468584 1.676989 0.240868 0.210770 0.927267 -0.719247 0.777403 -1.071040 0.058634 -0.069634 -1.114972 0.175033 0.103654 0.093303 0.064896 -0.292135 0.033147 0.394624 -0.488645 0.127784 -0.560104 -0.094630 -0.923298 -0.101537 0.076709 0.838328 0.347383 -0.500631 0.003745 0.895636 -0.089641 0.512067 0.521466 0.564661 0.631935 0.198950 -0.514646 0.131118 0.526689 -0.431554 -0.925294 0.067075 -0.754335 -0.852014 -0.315581 0.331029 -0.864861 -0.058647 0.703859 -0.014329 -0.206205 -0.556572 0.573012 0.821264 -0.256032 1.046044 0.373570 -0.605031 -0.955866 -0.532029 0.950858 -0.327775 0.407302 0.009593 -0.902857 -0.231379 0.531763 -0.387850 -0.159197 -0.319597 0.313342 0.424608 -0.603812 0.388025 -0.218866 -0.419919 -0.563997 -0.442242 0.296568 -0.369937 0.969163 0.097007 -0.002779 0.135431 -0.021415 0.202062 -0.968312 -0.314904 1.031511 -0.374434 -0.036655 -0.745795 0.568486 0.271714 0.085951 -0.446569 -0.480209 0.251893 0.361856 0.141627 -1.146394 0.070645 -1.097145 0.413231 0.324741 0.200367 0.799719 0.190157 0.100983 0.143716 0.610452 -0.648879 0.148840 -0.852303 0.209780 -0.168944 0.145472 -0.405674 0.071814 0.646462 0.124551 0.639231 -1.073153 0.799761 0.519894 -0.305660 -0.769773 0.165289 -0.505374 -0.670660 0.114138 0.365309 0.014044 0.058771 -0.157734 0.307538 -0.174354 -0.950876 -0.217727 -0.172229 0.990798 -1.340072 0.007853 -0.092862 -0.057245 -0.300827 0.593369 0.468906 0.341752 1.042204 0.528474 -0.279441 0.805681 -0.824213 0.622691 1.669654 0.561682 -0.871150 0.500839 -0.827619 0.165293 0.245587 0.131877 0.358459 0.662032 -0.746927 -0.229450 0.281386 -0.213653 1.039814 0.594286 0.562564 -0.871433 0.891421 -0.514105 -0.136703 0.976443 0.799020 -1.129411 0.664466 0.832097 -0.847761 0.196960 0.327789 -0.725308 -0.168352 -0.694922 0.111937 0.553986 -0.825850 -0.589507 -0.193216 -0.838348 1.135164 0.183069 0.294059 0.052455 -0.504941 0.025155 1.160711 0.187454 -0.134586 -0.315194 -0.345439 -1.390383 -0.989642 0.107182 0.312330 -0.716752 -0.426022 -0.812866 -0.417212 0.904574 -0.350914 0.324270 -1.375995 0.320999 0.410675 0.492749 0.509002 -0.484723 -0.485735 -0.162477 -0.348855 0.439084 -0.757943 0.636291 0.731229 -0.509281 1.054595 -0.155076 -0.160434 0.220159 0.547611 -0.431294 0.929105 0.076708 0.960929 0.134755 0.855088 -0.537733 0.074476 -0.273402 -0.591590 -0.239256 0.761389 -0.922887 -0.133623 0.704607 -0.477899 -0.849821 0.430983 0.274893 0.597131 -0.148306 -0.245316 -0.450203 -0.166177 -0.542820 0.271386 0.613542 -0.499467 -0.734977 -0.085386 0.410077 -0.355184 -0.366594 0.365383 0.182299 0.856138 -0.830937 0.291404 0.121109 0.203942 -1.111965 -0.896810 0.020868 -0.263940 -0.661228 0.715615 -1.335998 -0.237478 -0.574462 0.155921 -1.330772 -0.412381 0.071768 1.138135 -0.105706 -0.194937 0.491612 0.083493 0.398491 -0.080686 0.351698 0.199028 0.289562 +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.544223 1.756198 3.497275 -2.041755 7.015386 -0.939832 1.499730 2.238866 0.123694 1.959939 -5.079682 -0.418200 -0.570170 -3.730736 1.066894 -3.233993 1.455850 0.986143 -1.585523 -0.193263 1.223785 0.382129 -0.229647 -2.519055 -0.345808 -5.976350 -2.159630 0.702486 1.349832 0.103893 1.061462 1.621166 5.556954 -0.581424 3.452621 3.113502 3.753485 2.946570 -0.606010 -0.167664 2.693380 1.710050 -1.225429 -3.351867 -0.312853 -1.863889 -4.457410 -1.245049 1.117140 -3.355148 -3.143819 2.553552 0.640332 0.080615 -1.791275 3.087875 3.715891 -1.021262 3.338145 2.145654 -3.243649 -0.064299 -2.564953 3.276360 -2.412676 2.103660 -2.700807 -4.550201 -2.250417 3.328182 -0.768204 -1.328783 -2.186282 0.094396 1.989204 -2.106763 1.933703 0.171854 0.187221 -3.082924 -1.705587 1.862253 0.107164 3.086575 0.357857 -0.462668 1.930832 -0.968329 1.152539 -2.930710 -2.091802 3.844593 -2.937950 -1.151594 -2.177225 0.525533 1.836147 -0.036218 -0.499915 -5.273352 1.136136 -0.854435 -0.002995 -0.735223 0.223557 -2.472228 -0.337488 1.563641 0.288464 3.771151 -2.233086 2.079972 1.193590 1.144095 -3.577991 0.668575 -3.982569 2.456182 -3.148322 -0.576021 -1.177124 -0.243609 2.327235 3.258819 2.090740 -3.621970 3.547162 2.105046 -1.611401 -1.132198 0.682055 -1.422118 -3.477661 -0.161524 1.771764 1.197074 0.876366 -0.212400 1.367357 -1.114236 0.906788 -1.219824 -1.628477 1.855623 -4.887656 -0.319171 -0.052822 -0.107441 -1.895286 2.252240 1.731198 0.980829 4.211088 1.708926 -2.303852 3.194941 -4.423179 1.397569 6.085662 -0.062099 -2.661545 2.489370 -2.875604 0.395241 1.879768 1.492425 -0.009839 0.995071 -2.944120 -1.164467 -0.569350 -1.552771 4.189286 2.298016 0.351467 -6.063758 2.592202 -2.609636 -0.692315 5.611308 3.221533 -5.719322 2.179683 4.431117 -3.882305 -2.257484 1.259466 -3.835216 -2.390664 -3.098300 1.140187 1.609753 -2.960369 -1.483234 1.183735 -3.261914 2.696296 0.775783 -1.107176 0.265344 -1.385938 -5.712643 6.435065 0.163675 0.785747 -0.830877 -1.696430 -0.181567 -5.171176 -0.242189 0.768415 -2.696953 -0.313053 -2.837337 0.235264 4.063290 -2.910026 2.237264 -5.771195 0.483039 1.833936 1.367162 0.901202 -2.818454 -2.190400 -0.936204 -2.156597 -0.404475 -3.957982 1.189563 3.254492 -1.876175 3.876573 -2.217398 -6.674261 0.122840 2.262805 -2.165538 4.077856 0.063946 4.286340 1.677887 3.096308 -3.502617 -1.181506 -1.251692 -3.527735 -3.359864 3.096280 -4.606444 0.209054 2.613639 -1.493238 -3.608125 2.483446 1.836154 1.167488 -1.187971 0.150636 -3.086173 0.716673 -0.728172 1.541925 2.126957 -1.373935 -4.065603 0.431990 3.551879 -3.161182 -4.426827 0.802994 0.599897 3.594323 -3.203388 1.672495 1.587345 1.276165 -5.013919 -5.342816 1.691686 -4.578526 -2.323392 0.368779 -4.887324 -2.551862 -1.985683 1.369380 -2.893656 -2.924496 2.744906 4.647896 0.431006 -2.012278 1.689054 0.070421 1.239213 -0.475386 1.313191 0.188685 1.129383 +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.947242 1.662145 1.098855 -1.550083 4.649020 -0.668303 0.992563 1.247018 -0.220805 1.401843 -3.846552 -0.609916 -0.351461 -3.364549 0.753887 -1.171841 1.171322 0.991444 -0.728132 0.347597 1.093319 -0.754589 -0.063128 -2.116714 -0.101480 -3.442950 -1.245695 0.368972 1.091824 -0.137927 0.158781 1.112102 3.875179 0.208904 2.514492 2.363199 1.726080 2.634231 0.520676 -0.782424 1.427334 1.506589 -0.892661 -3.071657 0.226014 -1.550972 -2.605003 -1.534164 0.693170 -2.186691 -0.781385 2.006279 0.343363 -0.193242 -2.248367 1.248154 3.347705 -0.122325 2.763581 1.574391 -1.718897 0.030330 -1.393561 1.598375 -1.807971 1.015762 -0.699396 -2.958693 -0.894735 2.248015 0.226217 -1.430845 -2.102765 0.067778 1.129071 -1.640810 1.407199 -0.005308 -0.553819 -2.565495 -1.649356 1.162857 -0.483888 2.719763 0.218836 -0.311484 0.407080 -0.611213 1.106419 -2.193665 -1.502640 2.365753 -1.506199 -0.411101 -0.749554 1.651302 1.397236 -0.172384 -0.976491 -3.132348 0.880663 -0.451697 0.147309 0.032402 -0.061493 -2.059911 0.506031 1.058648 -0.181031 2.596617 0.207689 1.471027 1.067565 0.856142 -2.578091 0.046973 -3.069686 1.317961 -1.461732 -0.437684 -0.583561 -0.064576 1.402735 1.206267 1.451704 -2.882281 2.705034 1.982054 -0.867498 -1.229772 0.663858 -1.125385 -2.445866 -0.166146 1.372704 0.786175 0.677244 -0.034543 0.464301 -0.872979 -0.294385 -0.743218 -1.133507 2.823916 -3.440175 -0.112735 -0.193645 -0.519935 -1.202508 1.264284 0.972695 0.704904 3.098942 1.395110 -1.885035 1.908904 -2.934027 1.211312 4.936370 0.708555 -2.230863 1.624389 -1.511103 0.350532 1.327685 0.976327 0.515228 0.018109 -2.278631 -1.003117 -0.055733 -1.391206 2.907555 1.178231 0.876650 -3.858601 2.744232 -0.304303 -0.559894 4.406078 1.513738 -3.631704 1.543102 3.358830 -2.824761 -0.957812 0.886412 -2.175982 -1.302219 -2.245055 0.909297 0.923429 -2.495528 -1.549872 -0.070023 -2.588107 2.265468 0.721554 -0.424017 0.020549 -1.318479 -2.500127 4.917143 0.209375 0.288668 -0.522390 -1.266386 -0.523332 -3.727957 0.023854 0.519330 -2.051104 -0.286492 -2.094637 -0.050369 3.164406 -2.103620 1.035934 -3.567780 0.392723 1.320327 1.148816 0.475878 -2.271681 -1.746502 0.167454 -0.905530 0.039531 -2.138411 1.363010 2.498611 -1.558942 1.975807 -0.316006 -2.381311 0.860741 1.910029 -1.511353 2.919797 -0.448298 3.642033 1.039044 2.446768 -2.199267 -0.788222 -0.663758 -1.778437 -2.140460 2.246399 -3.327213 0.076865 2.374115 -0.667901 -2.830079 1.867508 1.263318 1.335419 -0.847574 -0.309422 -1.703416 0.544232 -0.349313 1.176547 1.729079 -0.599441 -2.859232 -0.101581 2.606519 -1.473067 -2.120607 0.820822 0.314739 2.825029 -2.430074 1.447386 0.717522 0.895440 -3.046954 -3.702339 1.549105 -2.602833 -1.383139 1.308842 -4.044991 -1.521606 -1.530694 1.051701 -2.502654 -0.818776 1.063376 3.267434 0.355597 -1.278452 1.172341 0.032414 0.896968 -0.435612 0.777777 0.011304 1.424813 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.365551 0.157108 -0.244343 -0.272073 1.168030 -0.060980 -0.061861 0.636332 -0.012496 0.418680 -0.633850 0.001202 -0.014756 -0.669966 0.197524 0.306753 0.183347 0.220383 -0.256909 -0.239747 0.227393 -0.020928 0.087006 -0.319296 -0.043506 -0.556826 -0.129345 0.107180 0.215707 0.104597 -0.483134 0.206824 0.609159 -0.079139 0.289099 0.319882 0.560119 0.433378 0.163304 -0.035946 0.370946 0.200124 -0.162867 -0.638408 0.181325 -0.398387 -0.550441 -0.202023 0.231698 -0.542900 0.322497 0.399459 0.081409 -0.133775 -0.340212 0.311218 0.395823 -0.120397 0.556269 0.333916 -0.542736 -0.406207 -0.262426 0.683811 -0.376175 0.380885 -0.044000 -0.745788 -0.426505 0.582810 0.084433 -0.278866 -0.379468 -0.026584 0.135713 -0.292111 0.282004 0.028032 0.503494 -0.329951 -0.398579 0.275072 -0.305047 0.536527 0.072657 -0.029136 -0.107503 -0.150671 0.214701 -0.436014 -0.277857 0.488127 -0.315604 0.247740 -0.408986 0.036697 0.152288 -0.110406 -0.112022 -0.510883 0.150632 0.132101 0.081481 -0.188105 0.105868 -0.434301 0.364654 0.255580 0.121799 0.330752 0.092810 -0.033533 -0.033463 0.188653 -0.139632 -0.034321 -0.641930 0.241247 -0.046157 0.020898 -0.315825 -0.038245 0.532277 0.039878 0.287105 -0.593644 0.591181 0.267772 -0.233427 -0.234284 0.171484 -0.095116 -0.429167 0.074666 0.340565 -0.017085 -0.001408 0.085635 0.260674 -0.137334 -0.628697 -0.110665 -0.340031 0.434667 -0.739667 0.028381 -0.076647 -0.167713 -0.168273 0.257427 0.234336 0.232736 0.617660 0.327088 -0.251900 0.308250 -0.655373 0.459859 0.999452 0.260503 -0.487734 0.279401 -0.471425 0.201940 0.225463 0.142280 0.039478 0.301553 -0.129700 0.119160 0.004619 -0.086663 0.612813 0.293715 0.392241 -0.669092 0.119505 -0.209965 0.126710 0.819279 0.419205 -0.831833 0.395375 0.716055 -0.275726 0.040006 0.141009 -0.444635 -0.239270 -0.473910 0.231939 0.419538 -0.661349 -0.364142 0.031353 -0.440026 0.528299 0.111462 -0.014623 0.105176 -0.416418 0.184465 0.875497 0.121505 0.079410 -0.086854 -0.327858 -0.497441 -0.682064 0.013523 0.300160 -0.390984 -0.097761 -0.418235 -0.274403 0.783885 -0.284022 0.142764 -0.800338 0.342976 0.300700 0.111446 0.176401 -0.432339 -0.261561 -0.014934 -0.249348 0.132284 -0.530161 0.085023 0.294936 -0.394194 0.567012 0.202439 -0.071881 0.061529 0.313624 -0.130753 0.567594 0.056797 0.500344 0.193612 0.529125 -0.373853 0.055931 -0.284131 -0.199127 -0.332005 0.512835 -0.705558 -0.097852 0.563240 -0.207152 -0.619130 0.324260 0.391004 0.453350 -0.162644 -0.296669 -0.142344 -0.038833 -0.238642 0.300882 0.327391 -0.346325 -0.514471 -0.039828 0.444564 -0.524319 -0.350487 0.292097 0.128860 0.684143 -0.496041 0.319389 0.222717 0.235442 -0.808176 -0.500904 0.010598 -0.161759 -0.224383 0.268885 -0.942142 -0.479895 -0.254111 0.321912 -0.639768 -0.035285 -0.002084 0.639693 -0.012102 -0.034677 0.395344 0.137879 0.044060 -0.071768 0.092367 0.119031 0.216439 +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.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__bit_width(unsigned long) = -0.414384 0.048564 -0.192388 -0.146808 0.782803 0.064189 -0.220945 0.597613 -0.082498 0.427748 -0.491466 -0.171281 -0.224939 -0.475635 0.016700 0.228105 0.144235 0.147811 -0.290053 -0.166840 0.300272 -0.075222 0.105763 -0.219132 -0.031892 -0.079873 -0.238245 0.047778 0.405737 -0.188384 -0.501476 -0.005060 0.709685 -0.063557 0.502953 0.269071 0.421994 0.525841 0.103045 -0.125772 0.018338 0.487427 -0.324545 -0.562540 0.192601 -0.565706 -0.174663 -0.026730 0.326522 -0.205426 0.362324 0.319956 -0.033804 0.033499 -0.210724 0.207503 0.222183 0.103478 0.730659 0.146073 -0.490153 -0.248351 -0.367311 0.554294 -0.356256 0.507039 -0.161215 -0.549198 -0.275517 0.033815 0.102163 -0.547440 -0.327770 0.280801 0.002042 -0.274193 0.304302 -0.064666 0.471510 -0.412314 -0.588577 0.067432 -0.349238 0.376348 -0.149953 -0.034262 -0.176783 0.051497 0.073440 -0.606032 -0.079099 0.391722 -0.438100 0.378812 -0.139946 -0.023087 -0.251956 0.196066 -0.299094 -0.172672 0.068084 0.195387 0.118600 -0.312215 0.479885 -0.294957 0.400199 -0.026682 0.119711 0.143145 0.480529 0.073998 0.262874 0.443275 -0.088891 -0.171477 -0.542331 0.091965 -0.149373 0.103952 -0.109398 0.268794 0.280710 -0.142899 0.495179 -0.630172 0.305059 0.072971 -0.234720 -0.407038 0.133096 -0.370347 -0.477450 -0.028978 0.338447 0.027480 -0.110789 -0.308253 0.159702 -0.091518 -0.750548 -0.120365 -0.112194 0.157606 -0.543952 -0.097012 -0.126810 -0.242418 -0.090280 0.352063 0.230189 0.289112 0.589248 0.388489 -0.247716 0.122303 -0.563539 0.268015 0.678314 -0.017001 -0.613023 0.248224 -0.472458 0.165874 0.421591 0.211479 0.318305 0.340235 0.030282 0.086461 0.167979 0.093540 0.599259 0.101784 0.458999 -0.271018 0.143464 -0.073484 -0.115824 0.872601 0.083437 -0.785871 0.375694 0.241533 0.103603 0.159636 0.119652 -0.336874 -0.059775 -0.466007 0.071970 0.402380 -0.546019 -0.243886 0.186171 -0.529785 0.739979 -0.021800 -0.035665 0.272304 -0.744061 0.126230 0.748079 0.171878 -0.059300 -0.229739 -0.289324 -0.379954 -0.605078 0.130224 0.128286 -0.275070 -0.225801 -0.480895 -0.011224 0.581390 -0.001987 0.260927 -0.694201 0.040399 0.215801 -0.055846 0.378444 -0.319487 -0.288182 -0.109129 -0.241045 0.464287 -0.478278 0.159963 0.549858 -0.382872 0.527734 0.328216 -0.020677 -0.041743 0.255574 -0.347562 0.525421 -0.055629 0.300149 -0.098189 0.409144 -0.360655 0.011835 -0.120941 0.234272 -0.113618 0.296618 -0.337969 -0.071026 0.107176 -0.490424 -0.239455 0.115994 0.060087 0.286580 0.065296 -0.267703 -0.300647 -0.116328 -0.146331 0.061755 0.436285 -0.206947 -0.554527 0.049941 -0.106248 -0.275150 0.025005 0.123926 -0.010904 0.508426 -0.490742 -0.118479 0.145169 0.021183 -0.502480 -0.354365 -0.354360 -0.040744 -0.060326 0.477019 -0.568878 -0.191346 -0.292571 0.043944 -0.472329 0.045402 -0.088540 0.645423 0.333423 -0.211564 0.347982 0.107282 0.416950 0.102278 -0.037901 0.054262 0.223480 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int std::__countl_zero(unsigned long) = -1.371000 -0.244432 -1.312566 -0.462178 2.647281 -0.135263 -0.198106 1.263570 -0.527413 1.193008 -1.604373 -0.904014 -0.943842 -1.989768 0.219613 0.948388 0.894388 0.494990 -0.920106 -0.157389 1.075461 -0.611058 0.385905 -0.843086 0.062559 -0.311029 -0.638017 0.190722 1.293132 -0.748531 -1.424218 0.228191 2.363035 0.004781 1.307694 0.881619 1.048536 1.867921 0.194985 -1.173942 0.039295 1.680586 -0.906021 -1.794852 0.672824 -1.580564 -0.973671 -0.330577 1.072540 -0.564499 0.691140 1.282297 -0.082379 0.026016 -1.122919 0.562507 1.637168 0.105805 2.300174 0.643417 -0.983078 -0.546183 -0.962828 1.423815 -1.131924 1.069541 -0.208953 -1.711919 -0.883880 0.305209 0.471645 -1.778392 -1.611513 0.616685 0.385419 -0.949660 1.081408 0.017679 1.287957 -2.109095 -2.178960 0.030054 -1.276378 1.586981 -0.493460 -0.162007 -0.060679 -0.107995 0.468849 -1.848728 -0.297750 0.894168 -1.209013 0.846802 -0.543494 0.447862 -0.676078 0.380281 -1.617068 -0.993167 0.154567 0.172388 0.444489 -0.499069 1.338719 -0.727172 0.850607 -0.102961 0.613216 0.816054 2.032804 0.111953 0.582876 1.146829 -0.689883 -0.764479 -1.566700 0.312658 -0.337638 0.294017 -0.328853 0.762155 1.266900 -0.605064 1.483643 -2.199720 1.109019 0.552251 -0.666608 -1.174671 0.465195 -1.035690 -1.533090 -0.161999 1.337183 -0.135545 -0.164945 -0.690649 0.755767 -0.164388 -2.147741 0.535364 -0.637326 1.041752 -1.999410 -0.192935 -0.536269 -1.019417 -0.178360 0.874723 0.534890 0.923722 1.849881 1.206724 -1.308926 0.794128 -1.842424 1.114246 2.743070 0.341057 -1.908659 0.725938 -1.277593 0.749739 1.265480 0.702207 1.201267 0.148297 0.077705 0.514358 0.669832 0.165530 1.991670 -0.029507 1.461542 -1.386608 0.554807 0.225366 -0.109990 2.838071 0.426607 -2.351469 1.420254 1.088857 -0.189818 0.443112 0.267141 -0.907033 -0.439560 -1.795116 0.742803 1.172577 -1.793927 -0.764602 0.260273 -1.696755 1.981134 0.024624 -0.340058 1.004532 -2.162228 0.303513 2.417262 0.339705 -0.107378 -0.828323 -1.149872 -1.067825 -2.135191 0.545584 -0.147885 -0.825761 -0.520723 -1.592205 -0.300791 2.273713 -0.021324 0.635530 -2.610473 0.644327 0.703310 0.230744 1.094369 -0.873987 -1.063608 0.267278 -0.624003 0.994694 -1.420431 0.224293 1.499946 -1.559473 0.992712 0.606623 0.221247 0.275748 0.857255 -1.058740 1.684793 -0.052037 1.829183 -0.336182 1.482618 -1.085574 0.078629 -0.277330 0.626390 -0.690098 0.986922 -1.351895 -0.239562 0.973065 -1.006223 -1.521755 0.480987 0.200442 1.070647 0.129806 -1.082916 -0.859523 0.001392 -0.011039 0.532926 1.469441 -0.350868 -1.487018 -0.024654 0.180344 -0.509382 0.193918 0.580109 -0.093717 1.884168 -1.637958 -0.088680 0.238430 0.470097 -1.100840 -1.670743 -0.453619 -0.254049 -0.297068 2.348286 -2.116230 -0.437658 -1.007412 0.426645 -1.332891 0.385831 -0.426559 1.954094 0.731877 -0.663918 1.211432 0.434210 1.004009 -0.227297 -0.076745 0.210664 0.778447 +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) = -2.391679 1.742291 1.295277 -2.006955 5.670627 -0.058009 1.055415 1.437409 -0.449360 2.102216 -4.384360 -0.930578 -0.772009 -3.746908 0.630936 -1.746455 0.809806 0.794171 -1.343804 0.342099 1.422371 -0.985515 0.410445 -2.329942 -0.311439 -3.921872 -1.458323 0.487491 1.693684 0.441845 0.095624 0.555553 4.113717 -0.147908 2.372385 2.248102 2.058625 3.174074 -0.203517 -0.688942 1.491941 1.967740 -1.266474 -3.587047 0.389513 -2.272659 -3.336048 -1.704519 1.200407 -3.157993 -1.293335 2.417600 0.334190 -0.679275 -2.227812 1.921479 3.780433 -0.124072 3.474225 1.581772 -2.005453 -0.666022 -2.275493 1.884438 -2.007522 1.830457 -0.902342 -3.641101 -1.564849 2.392646 -0.501594 -1.134893 -2.325485 0.316049 1.726853 -1.941454 1.520646 -0.415714 -1.090426 -2.511618 -1.698155 1.088476 -0.658381 3.095988 0.076138 -0.197915 1.183913 -0.474140 1.079597 -2.823773 -1.720678 3.229611 -1.551021 -0.450745 -1.331127 1.527121 1.143393 -0.187076 -1.565241 -2.815020 0.826353 0.181915 0.359213 -1.219317 -0.378686 -2.976547 0.906210 1.576949 0.110937 2.514846 0.040973 1.180817 0.733902 1.379682 -3.259435 0.719014 -3.381099 1.128589 -1.642954 0.026514 -1.027620 0.243360 1.600192 1.376676 1.948075 -3.482741 3.375348 1.860301 -1.444139 -1.708352 0.838891 -1.213324 -2.699198 0.137752 1.493685 0.562827 0.438986 -0.271049 0.825005 -0.975823 -0.783474 -0.460688 -0.959590 2.690132 -3.802223 -0.036534 -0.306868 -0.650085 -1.142030 1.735376 1.343026 0.776494 3.795387 1.798381 -1.775645 2.315785 -3.267138 1.746547 5.792790 0.694227 -2.813716 1.757342 -2.021989 0.693276 1.487319 0.819285 0.807815 1.305745 -2.415092 -0.991682 -0.275592 -1.359752 3.590131 2.088981 1.267767 -4.636906 2.911527 -1.395411 -0.120634 4.562485 2.632400 -4.315426 1.790742 3.527766 -3.753679 -1.026470 0.926186 -2.216772 -1.182045 -2.583438 0.913735 1.404158 -2.699787 -2.256096 -0.278413 -3.084010 3.117860 0.563557 -0.198197 0.279223 -1.755671 -2.905330 4.982507 0.273623 -0.127299 -0.862471 -1.378150 -1.706274 -4.336419 0.284486 0.793221 -2.576451 -0.965290 -2.611619 -0.116804 3.399670 -2.071112 1.242577 -4.156300 0.451031 1.524238 1.445279 1.363703 -2.095615 -1.832254 -0.343615 -1.364529 0.607177 -2.447602 1.404049 2.948669 -1.955122 2.905580 -0.983031 -3.010319 0.685624 2.386758 -1.590421 3.519646 -0.258121 3.978535 0.601850 2.869519 -2.072804 -0.317379 -0.664294 -2.485776 -1.801843 2.744496 -3.740371 -0.220756 2.537427 -1.411129 -2.946018 2.146102 1.436517 1.654383 -0.686335 -0.073432 -2.262090 0.308138 -0.444979 0.930836 2.149241 -0.897190 -3.413551 -0.266959 2.479961 -1.788309 -2.817880 1.016675 0.476818 3.205991 -2.889804 1.555696 0.693034 0.486194 -3.825561 -3.726651 1.126591 -2.794708 -1.936332 1.981794 -4.294907 -1.345127 -1.911000 1.253447 -2.743610 -1.625869 1.051474 3.766989 0.608579 -1.200377 1.701999 0.162333 1.496077 -0.428320 0.635385 0.512454 1.469144 +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) = -1.277090 0.268459 -0.337791 -0.952419 3.098521 0.031458 0.069768 0.629511 0.272959 1.208511 -2.034927 -0.988699 -0.659892 -1.993955 0.329811 -0.057977 0.549358 0.485264 -0.996148 -0.237392 0.835538 -0.455122 0.577903 -1.031963 -0.123442 -1.445335 -0.796889 0.362124 0.824732 0.063451 -0.773293 0.203241 2.006193 -0.145994 0.883339 0.796911 1.154277 1.823301 -0.179727 -0.394610 0.868119 1.086315 -0.649169 -2.048675 0.626843 -1.403385 -1.712692 -0.900024 0.937279 -1.566519 0.107429 1.280054 0.176906 -0.564124 -1.201935 0.787444 1.870897 0.221653 1.960287 0.778188 -1.003798 -0.461128 -1.182101 0.937959 -1.255502 1.251100 -0.378239 -2.165982 -1.399489 1.328163 0.017999 -0.865570 -1.639967 0.030964 0.869506 -0.892836 0.836863 -0.094712 0.665157 -1.360868 -1.345594 0.413583 -0.911222 1.614590 -0.092685 -0.053039 0.486238 -0.326377 0.634857 -1.438635 -0.816867 1.355455 -0.733367 0.419758 -0.378547 0.377233 0.094356 -0.302617 -1.132991 -1.174579 0.217819 0.250337 0.336272 -0.216460 0.122747 -1.349780 0.959065 0.839618 0.349382 0.676314 0.866304 -0.025591 0.024303 0.693351 -1.340803 0.015141 -1.704225 0.372500 -0.487382 0.172137 -0.757845 0.368568 1.059148 0.138690 1.066828 -1.948064 1.870777 0.733247 -0.904829 -0.728349 0.555643 -0.335601 -1.328857 0.265100 1.016128 -0.129797 -0.023146 -0.049861 0.636385 -0.452732 -1.213177 0.517663 -0.692929 1.105432 -1.711816 0.088037 -0.303485 -0.833827 -0.285928 0.766506 0.630486 0.545523 1.973608 1.095931 -1.099111 0.888423 -1.813227 1.365659 3.089678 0.143563 -1.614516 0.712877 -1.082722 0.769407 0.921028 0.414746 0.557274 0.707292 -0.317028 0.271675 -0.263473 -0.295961 1.883683 0.883495 1.167444 -2.363532 0.671578 -0.462406 0.597942 2.504358 1.201619 -2.378341 1.064144 1.868786 -1.610737 -0.165462 0.271370 -0.840251 -0.483924 -1.643878 0.778124 1.080111 -1.678212 -1.328649 -0.174472 -1.540418 1.664609 0.160707 -0.311322 0.576078 -1.383496 -0.455111 2.520441 0.193652 -0.020172 -0.472624 -0.979336 -0.946668 -2.301178 0.274683 0.425493 -1.329982 -0.459062 -1.369723 -0.264236 2.167117 -0.680717 0.503898 -2.104877 0.763112 0.828821 0.607072 0.882656 -0.821104 -0.836152 0.102377 -0.861063 0.434935 -1.276216 0.133762 1.118765 -1.392243 1.301268 -0.131958 -0.789566 0.338266 1.118447 -0.517305 1.821338 -0.029200 1.982402 0.023972 1.571463 -0.750219 0.283153 -0.414540 -0.821581 -0.820914 1.477978 -2.020349 -0.368214 1.624378 -0.701814 -1.749745 1.002697 0.956222 1.228394 -0.229017 -0.529448 -0.928248 0.153443 0.122302 0.608712 1.145445 -0.475337 -1.749729 -0.274352 1.180780 -1.049903 -1.334740 0.744073 0.180931 1.935013 -1.538793 0.783683 0.387810 0.335337 -1.859075 -1.498693 0.158139 -0.900118 -0.525989 1.598260 -2.333797 -0.828563 -0.921363 0.929172 -0.995823 -0.208976 0.005370 1.820504 0.541566 -0.367411 1.204195 0.374209 0.573242 -0.341330 -0.109749 0.524208 0.761624 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +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.431034 1.480938 0.420925 -1.154012 3.852857 -0.161256 0.650218 1.858258 -1.253459 1.378641 -2.676836 0.582533 0.002553 -2.667060 0.549137 -0.161430 0.641585 0.629189 -0.377240 0.299525 0.839310 -0.819375 0.019018 -1.462200 -0.185113 -2.713856 -0.454275 0.240433 1.266778 0.238630 -0.171161 0.596123 2.550210 0.021676 1.590152 1.641839 1.498716 1.696587 0.710145 -0.913146 0.744481 1.010719 -0.742873 -2.257603 0.297615 -1.294374 -1.977317 -0.970935 0.509093 -1.944739 -0.498862 1.594721 0.138184 -0.255613 -1.557729 1.185530 2.453451 -0.860484 2.127774 1.084233 -1.500079 -1.215836 -0.949235 1.707881 -1.054395 0.561686 -0.113384 -2.083739 -0.392259 1.599859 -0.091078 -0.919827 -1.080264 0.344220 0.759460 -1.381914 0.946172 -0.205956 -0.671276 -1.921821 -1.025874 0.842718 -0.459926 2.154909 0.297826 -0.104345 0.194824 -0.336468 0.674867 -1.907761 -0.947584 2.035346 -1.075706 -0.169623 -1.421539 1.444025 0.955196 -0.038970 -0.730693 -2.079222 0.704034 0.136491 0.209472 -1.171638 -0.034089 -1.953707 0.456807 0.488287 0.067267 2.107119 -0.046821 0.831919 0.585314 0.952216 -1.780482 0.265866 -2.346610 0.927941 -0.603336 -0.021440 -0.682505 -0.170173 1.375119 0.747934 1.212361 -2.317150 1.976125 1.383834 -0.554837 -1.446136 0.453077 -0.952181 -1.628805 -0.031820 0.975430 0.311862 0.408285 -0.098967 0.513419 -0.520092 -1.231846 -1.185942 -0.760335 2.642019 -3.264955 0.023614 -0.179663 -0.211088 -0.864643 0.995207 0.908849 0.683569 2.345973 1.135550 -0.965804 2.247422 -2.142917 1.017044 3.789301 1.590299 -1.759067 1.281680 -1.487900 0.198735 0.836665 0.542840 0.539615 0.422345 -2.058219 -0.882223 0.811993 -0.857777 2.260278 1.043227 0.886697 -2.756040 2.173145 -0.347232 -0.474172 3.038567 1.323203 -2.791749 1.660028 2.346912 -1.727066 -0.146494 0.675541 -1.824597 -1.046631 -1.398934 0.487705 0.887649 -1.925840 -1.283276 -0.261715 -1.893892 2.028187 0.529555 0.195832 0.047031 -0.917525 -1.112771 3.230562 0.256345 0.003405 -0.529149 -0.915734 -1.539520 -2.550076 0.066390 0.628533 -1.624518 -0.497833 -1.743217 -0.571883 2.298333 -1.303952 0.667312 -3.422552 0.406658 1.019693 0.967945 0.486884 -2.044735 -1.212583 -0.079688 -0.523183 0.348259 -1.647765 1.388127 1.902716 -1.188884 1.900346 -0.293009 -1.058019 0.726195 1.370950 -1.151622 2.171538 -0.085419 3.003510 0.758363 1.871951 -1.684646 -0.305909 -0.646978 -1.183819 -1.213868 1.688278 -2.403895 -0.096341 1.795486 -0.699608 -2.200062 1.229975 0.878142 1.124949 -0.567667 -0.431157 -0.910083 -0.005172 -0.884128 0.815351 1.326314 -1.007390 -1.993207 -0.088874 1.672564 -1.009822 -1.166948 0.728377 0.521421 2.012702 -1.894487 1.075925 0.370021 0.596193 -2.559189 -2.803149 1.044137 -1.465237 -1.429460 1.101963 -3.406189 -1.014948 -1.214626 0.632105 -2.844970 -0.590355 0.485188 2.562730 -0.217103 -0.623139 1.051339 0.030497 0.693635 -0.373494 1.012282 0.056388 1.003574 +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.123985 -0.038454 -0.210110 -0.074103 0.223418 0.018336 -0.225826 0.114047 0.249125 0.216244 -0.109009 -0.178346 -0.092507 -0.193942 0.018458 0.182200 0.016902 0.073678 -0.102462 -0.133745 0.097446 -0.074573 0.119627 -0.045414 -0.020371 -0.178383 -0.022096 0.055415 0.095952 0.021461 -0.232101 -0.030429 0.140355 -0.032570 0.020029 0.011077 0.101421 0.169989 0.057700 0.068312 0.047049 0.124001 -0.074619 -0.207207 0.129420 -0.162407 -0.053186 -0.078352 0.159124 -0.137333 0.181859 0.099621 -0.001309 -0.093709 -0.124683 0.038987 0.052447 0.158342 0.229734 0.035603 -0.019004 -0.134538 -0.141627 0.136574 -0.225793 0.093836 -0.026017 -0.209278 -0.173801 0.101537 -0.081059 0.060129 -0.043829 0.019979 0.049762 -0.091054 0.073069 -0.022043 0.253022 -0.037734 -0.166828 0.025981 -0.149243 0.145815 -0.037857 0.027503 0.011727 0.016007 0.050504 -0.136937 -0.037105 0.021619 -0.050475 0.120682 0.203305 0.031756 0.009238 -0.062271 -0.004015 0.060848 -0.023826 0.065829 0.076980 0.041440 0.097895 -0.085945 0.250536 0.032254 0.083807 -0.081992 0.209988 -0.120404 -0.088709 0.104684 -0.030323 -0.080081 -0.168195 -0.017299 0.065302 0.070675 -0.093656 0.086196 0.134202 -0.086584 0.121267 -0.198174 0.177884 0.008276 -0.008522 -0.025945 0.075025 0.023164 -0.071041 0.038111 0.120240 -0.085762 -0.077151 -0.014680 0.104652 -0.002189 -0.292022 0.192162 -0.073431 0.053780 -0.085688 0.039599 -0.055590 -0.151219 0.048647 0.015599 0.034752 0.079355 0.178986 0.141614 -0.079184 -0.042243 -0.167267 0.175832 0.264082 -0.124522 -0.146697 0.042388 -0.095408 0.089037 0.112120 0.045421 0.097691 0.189973 0.158671 0.119414 -0.093792 0.056611 0.175845 0.026174 0.187240 -0.133348 -0.046358 0.036292 0.146549 0.241863 0.080693 -0.221592 0.114946 0.129049 -0.227450 0.085382 -0.017541 0.046090 0.115429 -0.204262 0.088433 0.207484 -0.191367 -0.159717 -0.055399 -0.130354 0.194684 -0.031652 0.064970 0.179489 -0.202344 0.246287 0.160645 0.081184 -0.013248 -0.098127 -0.130194 -0.263340 -0.193906 0.042542 0.026504 -0.160519 -0.007547 -0.130715 -0.085351 0.225534 0.038362 -0.005831 -0.232021 0.143794 0.087381 0.033759 0.072833 0.104976 -0.031576 0.061589 -0.137002 0.106282 -0.084853 -0.018496 0.060291 -0.160298 0.140760 0.062619 0.104625 0.061832 0.087671 -0.037980 0.172078 -0.032313 -0.057922 -0.031913 0.120257 -0.003271 0.121172 -0.047596 -0.083904 0.005032 0.086940 -0.157722 -0.091153 0.187819 -0.144342 -0.097711 0.043588 0.119389 0.264358 0.032987 -0.082899 -0.098981 0.005852 0.034737 0.034718 0.108039 0.045087 -0.152053 -0.010132 0.052121 -0.084847 -0.251924 0.082270 -0.007105 0.182005 -0.148417 0.059250 0.065301 0.021265 -0.128327 0.023594 -0.119637 0.080086 0.014682 0.199445 -0.258393 -0.060646 -0.062656 0.113882 -0.062793 0.136911 -0.126335 0.141692 0.087284 -0.010235 0.171566 0.057111 0.039083 0.031321 -0.119015 0.072145 0.088542 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +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.837145 1.939173 2.176069 -1.175873 3.143336 0.464442 0.623315 1.421092 -1.248894 1.578562 -3.284639 -0.770600 -0.913202 -2.386154 0.275957 -2.048961 0.455898 0.034943 -0.628406 0.822875 1.171102 -1.197597 -0.112308 -1.704877 -0.221441 -2.182133 -1.221852 0.047834 2.057713 -0.002275 0.307348 0.284721 3.521543 0.232286 2.621542 1.910954 1.384911 2.591462 0.210168 -0.930848 -0.047220 2.097704 -1.481547 -2.285878 0.163575 -2.119792 -1.333649 -0.578585 0.700500 -1.167609 -0.710592 1.831105 -0.132231 0.027900 -1.662677 1.249233 2.028647 0.291322 3.086044 0.911801 -1.454096 -0.933257 -2.028699 1.523335 -1.312829 1.610518 -1.028700 -1.866729 -0.018169 0.361905 -0.300602 -1.176156 -1.482807 1.311561 0.792004 -1.643990 1.345123 -0.548838 -2.116498 -1.802378 -1.841500 0.853596 -0.154423 2.325993 -0.169979 -0.151151 0.257660 0.362747 0.393876 -2.875882 -0.708325 2.464081 -1.693830 -0.392929 -1.080211 1.597285 0.068289 0.916303 -1.437508 -1.473098 1.001150 0.172072 0.274971 -2.356525 0.612789 -2.778430 1.107922 0.719613 -0.114004 2.048995 1.038691 1.800374 1.940530 1.899015 -2.465006 -0.000941 -2.365097 0.437065 -1.056968 -0.221856 -0.359706 0.909496 -0.116956 0.730954 2.088298 -3.030300 1.671648 1.393493 -1.226143 -1.768168 0.287195 -2.104104 -2.334759 -0.460143 1.163989 0.980596 0.234612 -1.069367 0.014126 -0.695902 -0.701653 -1.317990 -0.076873 2.327090 -2.834988 -0.479550 -0.307217 -0.427434 -1.099655 1.925748 1.228367 0.998348 2.541659 1.394662 -1.209046 1.143371 -2.272674 0.642877 3.649734 0.358567 -2.727861 1.725393 -1.920260 0.068054 1.257390 0.859555 1.342282 0.981845 -2.411470 -1.832395 0.386243 -0.785340 2.842339 1.294375 0.918931 -2.153659 3.231834 -1.194389 -1.609332 3.367495 1.076496 -2.569997 0.451358 1.782033 -2.271163 -0.613972 1.124566 -2.080682 -0.268454 -1.893365 -0.168616 1.078796 -1.874607 -1.143292 0.194854 -2.812433 3.218355 0.429623 0.533327 -0.038542 -1.868373 -3.248060 3.789262 0.048051 -0.393305 -1.143916 -0.931935 -1.279469 -3.013934 0.410995 0.474237 -1.465020 -1.250735 -2.321974 0.323015 1.753169 -1.149716 1.346194 -3.035719 -0.807560 1.019298 0.496573 1.399697 -1.197404 -1.702512 -0.445720 -0.949663 1.412260 -1.830779 2.232625 3.076684 -1.160959 2.764108 -0.304851 -2.226038 0.232667 1.663432 -1.915367 2.707261 -0.788871 2.384689 0.090634 2.124852 -2.081513 -0.780029 0.037492 -1.225296 -0.982506 1.555474 -1.824989 0.120341 0.346364 -1.791945 -1.370273 1.053270 -0.009678 0.551133 -0.203636 0.326398 -1.729023 -0.302476 -0.636804 0.509240 1.974114 -0.539206 -2.097939 0.240099 0.509449 -0.527907 -0.669321 0.442884 -0.027860 2.111922 -2.416626 -0.019589 0.256185 -0.076454 -2.455887 -2.974530 0.023008 -1.978504 -1.403925 1.806375 -2.872704 -0.135359 -1.700954 -0.071386 -2.063499 -1.167631 0.984836 3.233795 0.847032 -1.906134 0.887314 -0.164507 2.030631 0.257776 0.451639 0.035315 1.052107 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.423849 0.296150 -0.325423 -0.295331 1.240970 -0.015997 -0.016423 0.747930 -0.360609 0.522616 -0.679574 0.194806 0.008925 -0.850678 0.186701 0.409578 0.203849 0.194752 -0.144338 -0.075077 0.266367 -0.271533 0.090287 -0.357323 -0.056432 -0.714613 -0.020961 0.101248 0.471846 0.066708 -0.449119 0.148925 0.679582 -0.056002 0.352712 0.385900 0.523190 0.446371 0.336726 -0.389104 0.199366 0.288778 -0.230116 -0.687483 0.170129 -0.443005 -0.554537 -0.221792 0.245066 -0.540417 0.136277 0.484869 0.017419 -0.128386 -0.477889 0.348245 0.604814 -0.269018 0.696941 0.299442 -0.451389 -0.654064 -0.240503 0.729162 -0.360974 0.157377 0.022283 -0.661192 -0.206878 0.509041 -0.072750 -0.252555 -0.275166 0.118265 0.187605 -0.423888 0.287815 -0.041277 0.207560 -0.553420 -0.410713 0.243245 -0.337307 0.677975 0.090837 0.008039 -0.045198 -0.087634 0.197904 -0.603965 -0.216208 0.526307 -0.323741 0.129594 -0.391326 0.381459 0.210720 -0.057489 -0.205447 -0.503029 0.162927 0.129780 0.118460 -0.453018 0.210985 -0.564344 0.292173 0.077053 0.164877 0.530522 0.204714 0.024989 0.045158 0.332329 -0.305049 -0.096675 -0.709226 0.217426 0.003920 0.064008 -0.307908 -0.008169 0.589219 0.032639 0.404551 -0.766678 0.590970 0.349780 -0.112086 -0.442496 0.151149 -0.219279 -0.432149 0.047873 0.353247 -0.063028 0.038205 -0.007766 0.275471 -0.083491 -0.813517 -0.182545 -0.276374 0.789993 -1.034360 0.054520 -0.089928 -0.145010 -0.168877 0.267102 0.280517 0.289059 0.701077 0.394719 -0.271864 0.674381 -0.683019 0.459318 1.163039 0.484149 -0.565308 0.360012 -0.564752 0.123230 0.244535 0.167153 0.214324 0.224831 -0.381020 -0.046167 0.333795 -0.093887 0.698269 0.195658 0.434220 -0.694556 0.429120 -0.041992 0.008291 0.894665 0.349493 -0.892647 0.631033 0.700293 -0.378651 0.195190 0.167736 -0.519905 -0.225394 -0.508657 0.201581 0.440565 -0.689414 -0.389184 -0.111696 -0.526427 0.671930 0.126826 0.087907 0.147853 -0.378755 0.241262 0.898429 0.145618 0.020167 -0.203624 -0.359363 -0.767520 -0.727464 0.036314 0.207108 -0.499395 -0.127045 -0.551195 -0.375761 0.808705 -0.227720 0.151205 -1.192114 0.354140 0.330361 0.312246 0.166262 -0.475269 -0.311002 0.057528 -0.204637 0.171323 -0.560254 0.340443 0.421998 -0.447395 0.608720 0.028785 0.049742 0.247078 0.336108 -0.287444 0.647670 0.058014 0.771516 0.197717 0.579532 -0.447870 0.068824 -0.270400 -0.241741 -0.290044 0.484421 -0.729112 -0.121972 0.640750 -0.214337 -0.743953 0.283803 0.322836 0.512890 -0.129985 -0.339083 -0.143326 -0.072078 -0.328267 0.302336 0.392625 -0.369710 -0.526614 -0.022942 0.442414 -0.324509 -0.262399 0.290197 0.167292 0.666266 -0.591899 0.300158 0.129213 0.274245 -0.766774 -0.706790 0.128624 -0.126688 -0.325136 0.464912 -1.149063 -0.353588 -0.339055 0.230554 -0.948006 0.038451 -0.045442 0.767559 -0.120307 -0.087091 0.417124 0.081488 0.106821 -0.117284 0.252566 0.073844 0.256624 +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.629008 0.558831 -0.203435 -0.468584 1.676989 0.240868 0.210770 0.927267 -0.719247 0.777403 -1.071040 0.058634 -0.069634 -1.114972 0.175033 0.103654 0.093303 0.064896 -0.292135 0.033147 0.394624 -0.488645 0.127784 -0.560104 -0.094630 -0.923298 -0.101537 0.076709 0.838328 0.347383 -0.500631 0.003745 0.895636 -0.089641 0.512067 0.521466 0.564661 0.631935 0.198950 -0.514646 0.131118 0.526689 -0.431554 -0.925294 0.067075 -0.754335 -0.852014 -0.315581 0.331029 -0.864861 -0.058647 0.703859 -0.014329 -0.206205 -0.556572 0.573012 0.821264 -0.256032 1.046044 0.373570 -0.605031 -0.955866 -0.532029 0.950858 -0.327775 0.407302 0.009593 -0.902857 -0.231379 0.531763 -0.387850 -0.159197 -0.319597 0.313342 0.424608 -0.603812 0.388025 -0.218866 -0.419919 -0.563997 -0.442242 0.296568 -0.369937 0.969163 0.097007 -0.002779 0.135431 -0.021415 0.202062 -0.968312 -0.314904 1.031511 -0.374434 -0.036655 -0.745795 0.568486 0.271714 0.085951 -0.446569 -0.480209 0.251893 0.361856 0.141627 -1.146394 0.070645 -1.097145 0.413231 0.324741 0.200367 0.799719 0.190157 0.100983 0.143716 0.610452 -0.648879 0.148840 -0.852303 0.209780 -0.168944 0.145472 -0.405674 0.071814 0.646462 0.124551 0.639231 -1.073153 0.799761 0.519894 -0.305660 -0.769773 0.165289 -0.505374 -0.670660 0.114138 0.365309 0.014044 0.058771 -0.157734 0.307538 -0.174354 -0.950876 -0.217727 -0.172229 0.990798 -1.340072 0.007853 -0.092862 -0.057245 -0.300827 0.593369 0.468906 0.341752 1.042204 0.528474 -0.279441 0.805681 -0.824213 0.622691 1.669654 0.561682 -0.871150 0.500839 -0.827619 0.165293 0.245587 0.131877 0.358459 0.662032 -0.746927 -0.229450 0.281386 -0.213653 1.039814 0.594286 0.562564 -0.871433 0.891421 -0.514105 -0.136703 0.976443 0.799020 -1.129411 0.664466 0.832097 -0.847761 0.196960 0.327789 -0.725308 -0.168352 -0.694922 0.111937 0.553986 -0.825850 -0.589507 -0.193216 -0.838348 1.135164 0.183069 0.294059 0.052455 -0.504941 0.025155 1.160711 0.187454 -0.134586 -0.315194 -0.345439 -1.390383 -0.989642 0.107182 0.312330 -0.716752 -0.426022 -0.812866 -0.417212 0.904574 -0.350914 0.324270 -1.375995 0.320999 0.410675 0.492749 0.509002 -0.484723 -0.485735 -0.162477 -0.348855 0.439084 -0.757943 0.636291 0.731229 -0.509281 1.054595 -0.155076 -0.160434 0.220159 0.547611 -0.431294 0.929105 0.076708 0.960929 0.134755 0.855088 -0.537733 0.074476 -0.273402 -0.591590 -0.239256 0.761389 -0.922887 -0.133623 0.704607 -0.477899 -0.849821 0.430983 0.274893 0.597131 -0.148306 -0.245316 -0.450203 -0.166177 -0.542820 0.271386 0.613542 -0.499467 -0.734977 -0.085386 0.410077 -0.355184 -0.366594 0.365383 0.182299 0.856138 -0.830937 0.291404 0.121109 0.203942 -1.111965 -0.896810 0.020868 -0.263940 -0.661228 0.715615 -1.335998 -0.237478 -0.574462 0.155921 -1.330772 -0.412381 0.071768 1.138135 -0.105706 -0.194937 0.491612 0.083493 0.398491 -0.080686 0.351698 0.199028 0.289562 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -3.865261 1.704591 2.581192 -1.400912 6.201525 0.319899 1.355132 2.591729 -2.197035 4.228506 -5.317966 -2.193363 -2.546724 -3.973262 -0.133060 -2.585885 1.680887 -0.239152 -1.589520 1.223073 2.193960 -2.203097 0.045358 -2.231042 -0.593475 -4.605608 -2.450602 0.511274 4.574940 -1.835507 -0.257533 0.400040 7.813869 0.252022 6.094737 4.048794 1.868186 4.679089 0.218890 -2.653802 -0.796099 4.660075 -3.381876 -3.243449 -0.563277 -3.793850 -3.378992 -1.676740 2.018130 -1.395559 -2.030475 3.814391 -0.741091 1.528554 -2.743426 3.027533 4.008619 -0.040166 6.956678 1.179778 -2.341661 0.147596 -3.779035 3.450974 -2.192064 1.418959 -2.931779 -3.892916 0.272939 -0.547638 -0.449131 -3.113328 -1.747074 3.676026 1.986466 -3.799866 2.445417 -0.837243 -3.137706 -6.733877 -4.571362 1.026260 0.028729 4.301642 -0.595726 -0.168114 1.238685 1.160299 -0.121242 -6.640356 -0.037813 4.543673 -3.959402 -1.497741 -1.435771 3.259970 -0.369746 2.580248 -3.403192 -3.151648 1.063024 -0.868933 0.694499 -3.772576 3.291265 -3.330808 0.335611 -0.321385 1.072904 3.015269 2.613268 2.655675 4.784493 4.651826 -4.790197 0.110872 -3.991969 1.852295 -2.351198 -0.465974 -0.035652 2.358845 1.035078 1.584549 5.394392 -6.520935 1.713879 1.896217 -2.084983 -4.450105 -0.298846 -4.788637 -4.603290 -1.270236 2.548932 1.281039 0.881443 -3.640199 1.045847 -0.986875 -1.021324 -0.232545 0.473256 3.875560 -5.513094 -0.896449 -0.524273 -0.753944 -2.062715 4.309451 2.732394 2.753399 5.900154 2.954491 -2.852333 1.574958 -5.281362 0.393096 6.623903 -0.002282 -4.980577 4.020734 -3.649944 -0.069350 3.021549 3.119798 3.577942 -0.485286 -3.737949 -2.322871 1.466143 -0.010939 6.363125 0.786163 1.719960 -2.441697 5.470459 -1.575037 -3.567466 6.179682 2.851494 -5.465713 2.000896 2.173995 -3.353577 -0.905182 2.925981 -4.357618 -1.083104 -3.967566 0.128602 2.291135 -2.867306 -0.222169 1.690711 -5.490214 6.320257 0.199451 0.596753 2.025918 -4.241331 -5.486189 6.390521 -0.052098 -0.059836 -2.547255 -2.497199 -2.864648 -5.971863 0.837915 -0.916643 -2.478936 -1.539561 -5.148273 1.121611 3.561721 -0.522423 3.949237 -6.486035 -0.949703 2.121594 0.823002 2.962435 -1.416019 -3.146916 -0.445604 -2.242905 2.436183 -4.136723 4.313676 6.054735 -2.301683 4.136799 -1.701931 -3.913417 0.769494 1.939906 -5.446880 5.491403 -0.819935 3.844635 0.054470 3.524125 -3.708216 -1.461322 0.009787 -0.916877 -2.303626 2.358300 -3.046583 0.067208 0.357735 -4.140597 -2.837708 0.584461 -0.862605 0.119967 0.462192 0.148914 -5.284832 0.053561 -2.251919 1.207407 3.799697 0.058536 -3.558265 1.929119 0.223102 0.033397 -0.349321 0.056075 -0.309075 3.526102 -4.973825 -1.816268 0.548550 1.253550 -2.968496 -6.571650 -0.361421 -4.245841 -3.288498 4.505532 -5.059444 -0.046896 -3.725456 -1.200247 -4.427793 -1.990051 2.335230 7.318103 2.259300 -4.569623 1.342282 -0.477289 4.006397 0.096690 0.991724 0.083569 1.793409 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.524182 0.177450 0.121357 -0.420831 1.647234 -0.060960 0.055711 1.091455 0.298549 0.502368 -0.971940 -0.126872 0.059024 -0.450911 0.214837 0.018818 0.004065 0.375605 -0.662965 -0.478502 0.330935 0.585630 -0.072660 -0.444588 -0.144913 -0.429316 -0.504514 0.129694 -0.032512 0.159579 -0.573053 0.267084 0.963091 -0.237234 0.719144 0.529813 1.032867 0.625514 -0.257046 0.784062 0.722197 0.320943 -0.308047 -0.740667 0.106885 -0.631929 -0.836643 -0.191711 0.252358 -0.843241 0.977240 0.419502 0.232050 -0.000325 0.051951 0.597335 0.127529 -0.148587 0.672810 0.558991 -1.249920 0.122088 -0.633951 1.318272 -0.388992 1.241275 -0.256426 -1.274341 -0.908370 0.657317 0.730009 -0.817370 -0.705727 -0.002089 0.010234 -0.247731 0.536336 -0.049951 1.209487 -0.329869 -0.471671 0.466049 -0.281607 0.467211 -0.097471 -0.175874 -0.545532 -0.196724 0.125747 -0.539305 -0.563855 0.956363 -0.723910 0.532395 -1.213122 -0.724138 -0.019766 0.149280 -0.090291 -0.841445 0.309342 0.398622 -0.000113 -0.037054 0.148875 -0.332656 0.399425 0.720400 0.007629 0.360226 -0.449315 0.234375 0.202341 0.275491 0.189780 0.347162 -0.816075 0.517631 -0.438749 0.120984 -0.305507 -0.043936 0.697989 0.296755 0.380119 -0.507353 0.720912 0.121738 -0.712378 -0.178267 0.243418 -0.280045 -0.857164 -0.021564 0.350523 0.373635 -0.126347 -0.059889 0.327395 -0.322699 -0.474496 -0.643654 -0.377248 -0.328240 -0.706006 -0.209160 -0.060887 -0.041515 -0.426561 0.721426 0.453033 0.219612 0.895089 0.376852 -0.081733 -0.323389 -0.943306 0.402190 1.066479 0.082482 -0.700879 0.394068 -0.708904 0.298192 0.468430 0.264276 -0.284863 0.759956 -0.044438 0.207694 -0.480474 -0.175725 0.975704 0.790599 0.316175 -0.883742 -0.158920 -0.981700 -0.119252 1.231318 0.943518 -1.202149 -0.096567 0.696537 0.176430 -0.374649 0.302808 -0.705540 -0.613018 -0.402695 0.222221 0.440393 -0.660753 -0.449804 0.629197 -0.653997 0.771006 0.031466 -0.260417 -0.085473 -0.827046 -0.187292 1.309817 0.157789 -0.011072 0.078510 -0.193310 -0.037992 -0.922097 0.033771 0.647561 -0.198211 -0.386073 -0.486585 0.108841 0.936718 -0.648326 0.306239 -0.470807 -0.068577 0.349566 -0.576853 0.463819 -1.083219 -0.350346 -0.686348 -0.256661 0.369398 -0.829930 -0.105665 0.820613 -0.349336 0.825141 0.856033 -0.618597 -0.577504 0.605273 -0.205394 0.787249 0.022898 0.053912 0.145991 0.597717 -0.596210 -0.222085 -0.441042 0.134810 -0.479877 0.786440 -0.710148 0.070211 0.130415 -0.691849 -0.286709 0.593319 0.451113 0.151210 -0.181510 -0.214518 -0.525289 -0.142338 -0.545226 0.097347 0.523214 -0.572187 -0.917518 0.095532 0.229387 -1.165828 -0.371247 0.196845 0.184780 0.983046 -0.585054 0.256414 0.527048 0.102500 -1.456558 -0.557774 -0.387021 -0.556993 -0.460494 -0.122486 -0.666945 -0.936266 -0.372774 0.388733 -0.659815 -0.714764 0.409032 0.900837 0.401671 -0.175532 0.448335 0.162901 0.548810 0.209506 -0.031032 0.216026 0.263040 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -1.016986 0.362530 0.097785 -0.228090 1.529266 0.026850 0.129463 1.139825 -1.109147 1.080351 -1.233016 -0.443225 -0.746678 -1.197208 -0.062762 -0.274867 0.536448 -0.090945 -0.280077 0.417498 0.681021 -0.829524 -0.065378 -0.556847 -0.091770 -0.723491 -0.362062 0.050719 1.460073 -0.475244 -0.323699 0.146276 2.071555 0.073667 1.729244 0.909436 0.265012 1.216954 0.318572 -1.314682 -0.548776 1.410269 -0.962806 -0.883616 -0.188663 -1.071782 -0.546837 -0.439326 0.634963 0.017836 -0.593731 1.005423 -0.296757 0.515367 -0.854800 0.533861 0.752295 0.064362 1.947554 0.184714 -0.546321 -0.157224 -0.886606 1.275550 -0.623611 0.204410 -0.641482 -0.695727 0.382071 -0.413043 -0.209059 -0.916551 -0.263008 1.142012 0.512283 -0.994001 0.787472 -0.164634 -0.604183 -1.747150 -1.493711 0.128267 -0.547414 1.308383 -0.304326 -0.037032 0.209357 0.440157 -0.041194 -1.855290 0.166580 1.202398 -1.063918 -0.435511 -0.402425 1.100831 -0.130971 0.818536 -1.014415 -0.714494 0.423678 -0.184799 0.253160 -1.193543 1.539347 -0.911983 0.254718 -0.282574 0.402548 1.067124 1.264906 0.765987 1.470351 1.377343 -0.743332 -0.282719 -1.036969 0.298488 -0.630788 -0.070871 0.085654 0.891871 0.549479 0.145250 1.523754 -1.793350 0.175895 0.541861 -0.272446 -1.126958 -0.090972 -1.428195 -1.191592 -0.495538 0.805716 0.316984 0.179268 -1.081876 0.197641 -0.024894 -1.047133 -0.097038 0.103694 1.076617 -1.731635 -0.288987 -0.196769 -0.188782 -0.388126 1.093754 0.567660 0.836776 1.520170 0.933168 -0.907794 0.608991 -1.363817 0.168458 1.685980 -0.244227 -1.536484 1.046645 -1.215713 -0.120858 0.677375 0.861817 1.239206 0.080463 -0.956428 -0.647300 0.497582 0.155963 1.650039 0.161693 0.552885 -0.097726 1.513795 0.121809 -1.135877 1.794608 0.167787 -1.291310 0.696330 0.407842 -0.868294 0.078029 0.691906 -1.260797 -0.163333 -1.222131 0.139819 0.716185 -0.982750 0.044670 0.384261 -1.478682 1.783496 0.062201 0.061436 0.265815 -1.266932 -0.419274 1.832252 -0.053708 -0.072438 -0.918471 -0.767055 -1.193426 -1.425278 0.272902 -0.280194 -0.425745 -0.574915 -1.449010 0.051922 0.852631 0.060108 1.019670 -1.707880 -0.094248 0.496695 0.751914 0.863024 -0.682525 -0.839361 0.110949 -0.673383 0.893649 -1.131253 1.145400 1.612376 -0.718067 1.043893 -0.219663 -0.893440 0.287053 0.457480 -1.566257 1.404714 -0.164359 0.867057 -0.054116 0.913511 -1.012966 -0.390194 -0.100528 0.128737 -0.515057 0.541353 -0.562143 0.011422 0.007488 -0.967310 -0.697730 -0.030158 -0.362113 0.110984 0.221296 -0.569304 -1.334376 -0.118680 -0.634944 0.323149 1.104458 -0.109585 -0.827967 0.544752 -0.280213 0.256520 0.445978 0.039038 -0.175175 0.906509 -1.342850 -0.647069 0.053830 0.461100 -0.539864 -1.497598 -0.393541 -0.473550 -0.584618 1.645022 -1.310625 0.026895 -0.975270 -0.419473 -1.293498 -0.439798 0.302716 1.952354 0.580819 -1.237842 0.365881 -0.139047 1.122400 0.171119 0.246299 -0.200442 0.456784 +PE-benchmarks/find-parity.cpp__main = -0.705541 0.397822 0.407546 -0.531258 1.855832 0.276566 -0.063758 1.264428 -0.057008 0.712185 -1.359124 -0.395972 0.069857 -0.461079 0.146169 -0.137048 -0.186254 0.218590 -0.808886 -0.349969 0.440474 0.512290 -0.174958 -0.636388 -0.196420 -0.310957 -0.645239 0.056557 0.327695 0.191048 -0.758662 0.103307 1.226133 -0.317061 1.226497 0.788870 1.211478 0.800913 -0.396139 0.870393 0.540384 0.628936 -0.594678 -0.689183 -0.077365 -0.982254 -0.996051 -0.356984 0.218079 -0.779769 1.296715 0.586956 0.138730 0.063795 0.097603 0.767226 0.090696 -0.145142 1.043830 0.613536 -1.397717 0.425459 -0.820417 1.822203 -0.405375 1.778797 -0.345561 -1.316022 -0.799335 0.378536 0.854540 -0.889873 -0.792417 0.372799 0.023264 -0.423058 0.661197 -0.311046 1.101288 -0.653948 -0.637612 0.603100 -0.258311 0.553087 -0.127157 -0.197504 -0.580970 0.072978 0.001340 -0.949147 -0.559849 1.383722 -0.914356 0.192995 -1.859993 -0.656355 -0.033599 0.507265 -0.253388 -0.725718 0.512892 0.585499 -0.008875 -0.589273 0.438754 -0.681341 0.481380 0.983868 -0.073399 0.589156 -0.434429 0.419993 0.781106 0.651459 0.279668 0.435584 -0.829734 0.436497 -0.544276 0.093607 -0.201196 0.130936 0.794127 0.274052 0.659971 -0.713264 0.709387 0.225030 -1.059271 -0.350657 0.198370 -0.794528 -1.165490 -0.062465 0.267093 0.665438 -0.094137 -0.385830 0.269529 -0.477157 -0.566586 -0.928456 -0.122243 -0.432186 -0.693307 -0.351753 -0.031282 0.140058 -0.635659 1.207151 0.700632 0.312231 1.207123 0.428528 -0.027439 -0.741219 -0.985640 0.303940 1.219369 -0.311455 -1.059073 0.601706 -0.883828 0.213191 0.478093 0.416427 -0.270362 1.045135 -0.361802 -0.113790 -0.776053 -0.298824 1.268357 1.050558 0.368938 -0.623079 0.331886 -1.172866 -0.648772 1.299274 1.293252 -1.232660 -0.529936 0.632081 0.183649 -0.496138 0.717710 -1.002716 -0.708176 -0.407218 -0.006060 0.347692 -0.711058 -0.444150 0.779898 -1.011804 1.305239 0.102054 -0.195717 -0.374093 -0.973237 -0.494248 1.354826 0.235987 -0.239702 -0.013237 -0.072967 -0.394297 -1.062450 0.157085 0.776716 -0.126997 -0.761908 -0.692396 0.378764 0.850414 -0.761104 0.483027 -0.459394 -0.375070 0.383283 -0.630383 0.877248 -1.316224 -0.549380 -1.013994 -0.257232 0.695471 -1.023347 0.285362 1.369705 -0.250870 1.140828 1.079226 -1.044503 -0.780897 0.808185 -0.504347 1.036205 0.026598 -0.494067 0.062169 0.803968 -0.714712 -0.394068 -0.418755 0.137554 -0.359572 0.994988 -0.663086 0.144097 -0.352095 -0.989733 -0.095595 0.635337 0.178596 -0.047131 -0.148379 -0.276552 -0.974455 -0.228018 -0.854920 -0.016160 0.759661 -0.696055 -1.022083 0.195465 -0.015488 -1.103087 0.160703 0.169104 0.069699 1.184012 -0.811783 0.025001 0.571100 0.101975 -1.695409 -0.528018 -0.817400 -0.661355 -0.644593 0.148869 -0.554015 -0.924148 -0.639661 0.085748 -0.701393 -1.264991 0.711409 1.318100 0.601393 -0.517733 0.209666 0.045457 1.020352 0.495053 -0.119355 0.155914 0.270398 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.621230 0.243007 -0.019567 -0.460418 0.969461 -0.722062 0.350560 0.783136 0.421555 0.509164 -0.675120 -0.699066 -0.199639 -0.417392 0.224118 0.184317 0.618283 0.177829 -0.603767 -1.127309 0.236496 0.556914 -0.582750 0.087493 -0.086388 -0.127270 -0.583528 0.004661 -0.137568 -0.032480 0.012934 -0.146163 1.252980 -0.558804 1.003077 0.705363 0.119290 0.110867 0.041455 0.769783 -0.202738 0.718622 -0.436341 -0.113346 -0.294479 -0.112713 -0.102021 -0.213866 0.117532 -0.662292 0.574698 0.353895 0.181696 0.184072 0.144646 0.745885 0.277843 -0.000591 0.920089 0.083617 -0.412130 -0.347820 0.378359 0.532949 -0.544501 -0.108719 -0.057161 -0.440827 0.069281 -0.030875 0.186787 0.037194 -0.673709 0.014693 -0.600115 -0.776780 0.338735 0.305792 0.908791 0.157201 -0.001724 0.153213 0.027344 0.185348 -0.374698 -0.656956 -0.421377 0.012395 -0.211656 -0.144343 -0.014037 0.592672 -0.141725 0.296687 -0.658158 -0.630170 -0.126511 0.078399 -0.000564 -0.445736 -0.057683 -0.276509 0.665973 0.001721 0.330748 0.232988 0.195622 0.124762 0.007043 0.609249 0.349449 0.845080 0.332749 0.167132 -0.625318 0.571667 -1.207582 0.501124 -0.281371 -0.211933 0.284135 0.150361 0.141753 0.126664 0.335043 -0.582168 0.603999 -0.332702 -0.386462 -0.442684 0.306623 -0.067398 -0.763153 -0.239298 -0.012889 0.109194 -0.706200 -0.677219 0.448462 -0.669652 -0.164628 -0.655818 0.172029 -0.459922 -0.656172 -0.101073 -0.717767 0.196448 -0.065226 0.379159 -0.614159 -0.325578 0.782891 0.524509 0.115032 -0.148873 -0.909089 -0.689931 -0.313404 -0.030332 -0.620386 0.529431 -0.554264 0.240941 0.654954 0.502680 -0.434720 0.761710 0.423628 0.230781 -0.103129 0.086304 0.210692 0.377164 0.332860 -0.744668 -0.216999 -0.939692 -0.184304 0.634649 0.990371 -0.479238 -0.230167 -0.136103 0.472429 0.339992 0.173013 -0.186802 -0.723177 -0.277129 -0.309464 0.234386 0.038841 -0.104777 0.137203 -0.378015 0.550756 -0.133324 -0.519450 0.786666 -1.403075 0.175515 -0.015704 0.314789 0.056644 0.444390 -0.124010 0.072277 -0.670824 0.275241 0.482315 -0.762424 -0.843704 -0.777423 0.947765 0.006995 0.231501 0.421207 -0.394775 -0.002967 0.858556 0.212098 -0.452174 -0.452431 -0.209322 -0.715795 0.126751 0.690744 -0.090572 0.413884 0.730740 0.145389 0.252425 0.345116 -0.550209 -0.272003 0.273150 -0.619518 -0.049203 -0.158073 -0.162117 0.057589 0.334669 0.489288 -0.214206 -0.337244 0.029817 -0.362600 0.737219 -0.535088 0.082431 0.114911 -0.539462 0.226472 0.461954 -0.445014 -0.102114 0.211565 -0.103502 -0.800792 -0.157465 -0.492755 0.214163 0.710461 0.749561 -0.772999 0.011245 -0.620714 -0.472663 -0.372831 -0.724854 -0.675674 0.071437 -0.001683 -0.353771 0.290594 -0.021754 -0.186312 -0.250395 -0.410735 -0.051049 -0.502513 -0.168314 0.408674 -0.397172 0.381248 -0.330242 -0.800424 -1.026538 0.085627 0.335282 0.104633 0.362666 0.047633 0.193784 0.256910 0.564756 -0.872654 0.394824 0.321022 +PE-benchmarks/birthday-paradox.cpp__main = -0.139921 -0.009400 0.043107 -0.074049 0.286859 -0.121916 -0.107340 0.372416 0.352460 0.159789 -0.179768 -0.124952 0.007353 -0.000124 0.039370 0.008717 -0.020357 0.193284 -0.189664 -0.196067 0.103844 0.286581 -0.067462 -0.072820 -0.048271 -0.099533 -0.138118 0.038728 -0.096923 -0.018363 -0.204388 0.100026 0.317119 -0.072354 0.320346 0.189203 0.291615 0.150841 -0.032995 0.423873 0.175184 0.118677 -0.099223 -0.144133 -0.006039 -0.119643 -0.091077 -0.018349 0.088382 -0.135541 0.491050 0.053673 0.051737 0.083761 0.093885 0.143010 -0.197574 0.111053 0.172003 0.131750 -0.341406 0.218970 -0.207089 0.495798 -0.178716 0.357931 -0.142947 -0.332012 -0.238138 0.080802 0.277227 -0.207684 -0.096172 0.042887 -0.086068 -0.052630 0.168775 -0.010020 0.559613 -0.005342 -0.171150 0.134267 -0.058127 0.036251 -0.088616 -0.046926 -0.319171 0.012310 -0.011338 -0.122266 -0.108121 0.185550 -0.278184 0.182627 -0.193037 -0.305281 0.023488 0.089262 0.140586 -0.179088 0.082606 0.051666 0.015475 0.187018 0.170017 0.094600 0.125718 0.178079 -0.005123 0.048058 -0.160876 0.138470 0.135690 0.093760 0.256553 0.050222 -0.226975 0.190766 -0.174469 0.028213 0.014102 0.040214 0.176736 0.094724 0.114207 -0.069835 0.102311 -0.041074 -0.127375 0.043429 0.071630 -0.088449 -0.223241 -0.109449 0.112226 0.168688 -0.094831 -0.084284 0.098660 -0.057576 -0.059992 -0.182675 -0.087870 -0.336868 -0.026216 -0.084467 -0.034327 -0.015808 -0.096468 0.199685 0.095846 0.080990 0.207888 0.111781 0.013900 -0.402387 -0.262055 -0.005788 0.104908 -0.227621 -0.150084 0.127786 -0.162633 0.006366 0.176144 0.164918 -0.101086 0.263092 0.130261 0.064946 -0.293569 -0.004466 0.256354 0.153407 0.010989 -0.076349 -0.156328 -0.283366 -0.136358 0.373105 0.208519 -0.289279 -0.195244 0.065732 0.110732 -0.186738 0.086902 -0.137621 -0.084697 -0.103498 0.054033 0.135718 -0.133740 -0.042015 0.317195 -0.168413 0.179291 -0.048889 -0.099379 0.011913 -0.320248 0.023894 0.361959 0.098165 -0.005320 0.005105 -0.057412 0.105651 -0.215985 0.012787 0.131564 0.061254 -0.067212 -0.094001 0.111375 0.196506 -0.133646 0.095903 0.008153 -0.127329 0.089999 -0.318829 0.075016 -0.238665 -0.069221 -0.235701 -0.062368 0.137421 -0.189124 -0.060809 0.299894 -0.045355 0.160462 0.440769 -0.200603 -0.237045 0.162505 -0.151184 0.198733 -0.059809 -0.386235 0.050124 0.058135 -0.179588 -0.125021 -0.108153 0.142132 -0.123219 0.117364 -0.064692 0.047067 -0.135828 -0.294500 0.119617 0.099262 0.095061 -0.007064 0.013164 -0.026558 -0.249318 -0.037248 -0.201190 -0.038243 0.149784 -0.021446 -0.235568 0.145664 -0.053751 -0.357047 -0.152177 -0.023523 0.004767 0.231029 -0.139762 -0.007864 0.209016 0.025281 -0.334875 -0.046252 -0.230064 -0.135881 -0.086831 -0.177498 -0.044383 -0.292596 -0.075662 0.079960 -0.101841 -0.194629 0.152658 0.224867 0.226235 -0.111362 0.097654 0.000662 0.220140 0.194648 -0.115479 0.012363 0.106045 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -1.798076 0.685846 -0.040525 -0.713908 2.784963 -0.163672 0.849152 0.563050 -0.532713 1.896516 -2.427173 -1.336684 -1.095107 -2.555111 0.080486 -0.799242 0.866193 0.114436 -0.586493 0.346606 1.114646 -1.401346 0.115526 -1.142519 -0.185002 -2.323563 -0.789252 0.264732 2.230790 -1.087365 -0.420592 0.281860 3.451114 0.227047 2.639333 1.811318 0.957491 2.263955 0.346256 -1.189265 -0.370629 2.100710 -1.364209 -2.000173 -0.148138 -1.507326 -1.563071 -0.894251 1.001669 -0.574075 -0.146141 1.867354 -0.323314 0.443678 -1.790853 1.034112 2.226127 0.171955 3.204230 0.608422 -0.700621 -0.234445 -1.555201 1.884847 -1.272247 0.311894 -0.625475 -1.724627 0.078342 0.043428 -0.651694 -1.217086 -1.197670 1.460017 1.240073 -1.850938 0.921335 -0.392283 -1.601189 -2.720998 -2.213168 0.447811 -0.211302 2.318895 -0.072016 0.002548 0.762886 0.418346 0.175870 -2.954566 -0.109279 2.037491 -1.629076 -0.449585 -0.246187 1.958040 -0.108847 0.842035 -1.712798 -1.390304 0.378820 -0.387177 0.458501 -1.361189 0.722197 -1.867756 0.516652 -0.242363 0.164723 1.258586 2.139516 0.641844 1.622184 1.996617 -2.208458 -0.337864 -2.101283 0.751083 -0.403223 -0.072449 -0.112926 0.959125 0.495111 0.288750 2.341986 -3.183476 1.076204 1.003098 -0.665446 -2.117588 -0.164952 -1.914196 -1.968235 -0.450701 1.321103 0.380435 0.360420 -1.337730 0.487740 -0.178771 -1.052280 0.105697 0.177078 2.150286 -2.461529 -0.225610 -0.359018 -0.650009 -1.034997 1.666035 1.080289 1.258488 2.695223 1.562396 -1.366370 1.443669 -2.362655 0.479631 3.443242 0.273395 -2.405565 1.706381 -2.051533 0.150603 1.244038 1.368723 1.729795 -0.426308 -1.667173 -0.493456 1.242579 -0.099255 2.822080 -0.082247 0.962676 -1.298359 2.514311 0.245026 -1.302784 3.216369 1.159077 -2.859263 1.528288 1.318552 -1.919402 -0.100090 1.321028 -1.815176 -0.219309 -2.270974 0.492164 1.051727 -1.573746 -0.177888 0.247203 -2.487623 2.795176 0.154874 0.287801 1.095583 -2.012395 -1.835705 3.278988 -0.124830 -0.019531 -1.288532 -1.305366 -1.715273 -2.776998 0.444078 -0.434199 -1.437764 -0.638776 -2.389570 0.303803 2.351089 -0.265389 1.706693 -2.799806 -0.044372 1.001438 1.154420 1.174594 -0.442303 -1.434168 0.322774 -0.540044 0.959968 -1.675077 1.749900 2.567632 -1.371627 1.708559 -0.933690 -1.356510 0.747993 1.023527 -2.305424 2.530387 -0.372516 1.813562 -0.034047 1.721685 -1.643032 -0.455335 0.044852 -0.416014 -0.983869 0.934482 -1.612688 -0.102864 0.752585 -1.604735 -1.685781 0.398457 -0.004251 0.680417 0.148292 -0.273175 -1.785887 0.084062 -1.001043 0.731395 1.777593 0.321820 -1.495071 0.670816 0.411455 0.149623 -0.044458 0.268860 -0.110733 1.922709 -2.316284 -0.580057 0.112879 0.582887 -1.263620 -3.317505 0.114347 -1.768714 -1.170843 2.251463 -2.788374 0.099781 -1.689480 -0.220768 -2.532839 -0.301454 0.499102 3.209892 0.951647 -1.518834 0.865127 -0.095459 1.533182 -0.179595 0.378761 0.492339 1.074659 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -5.158798 4.332547 5.018103 -2.833290 8.395886 0.702564 2.841614 3.820791 -2.461907 5.148459 -8.513058 -2.279511 -2.188709 -5.448575 -0.092507 -4.718186 0.572302 0.203404 -2.094252 1.263497 3.189465 -2.243982 -0.674624 -4.108245 -0.888269 -5.328591 -3.610316 0.081382 4.655173 -1.273180 0.895331 0.434787 9.238236 0.777928 8.358374 5.947516 2.636741 6.857232 -0.612307 1.378752 -0.461780 5.793254 -4.266311 -5.738940 -0.365169 -5.208221 -4.052930 -2.807199 1.635162 -3.750306 0.593804 5.029596 -0.442821 1.471209 -3.083539 3.792167 4.978165 0.174410 8.541267 2.481374 -4.990596 1.237504 -5.692764 4.481485 -2.326836 4.489038 -1.554962 -5.745998 0.103569 -0.244153 0.690204 -4.895531 -2.935809 4.349908 1.625081 -4.680269 3.047573 -2.030279 -6.189888 -6.314196 -4.847184 2.112981 1.716830 5.592242 -0.412672 -0.699014 0.247667 1.337747 0.103279 -8.349114 -1.561511 7.539875 -5.102020 -0.898516 -3.981787 3.306676 -0.725814 3.729434 -3.816528 -3.675495 2.324535 1.025839 0.568530 -4.934451 0.182349 -6.244349 2.246070 1.453931 -1.183624 2.840390 2.598494 3.820233 5.722669 5.874615 -6.070761 2.819390 -6.109796 2.600873 -2.312925 -0.031754 0.068517 1.812018 0.266156 1.776684 6.116687 -7.421792 3.202596 2.604958 -3.977254 -6.584255 -0.094327 -6.763893 -6.756865 -1.501156 2.656623 3.267971 0.986257 -4.079650 0.071302 -2.277796 -1.052358 -4.176009 0.705095 5.073004 -6.634593 -1.696557 -0.624062 -0.305309 -4.190372 6.169987 3.700132 2.782688 8.123460 3.695678 -2.047354 0.801104 -6.178889 0.070445 9.011026 2.047613 -6.920911 4.884650 -4.738846 0.423502 3.686498 2.843150 3.359010 1.363307 -6.444516 -3.516337 2.108668 -1.870075 8.246262 3.172480 2.494581 -3.742558 8.121351 -2.771103 -5.673563 9.035171 5.410361 -7.904205 1.629057 3.335765 -3.406430 -2.001334 4.495017 -5.466455 -1.778892 -3.613624 -0.632462 1.685316 -3.955336 -1.858332 2.095668 -7.723985 9.069725 0.786134 2.613791 1.069477 -5.970442 -8.136213 9.161386 0.092907 -1.198092 -2.434216 -1.838057 -3.905996 -7.547042 1.296245 1.436095 -3.266468 -3.614349 -6.354136 2.710674 4.714861 -2.950535 4.731273 -4.451910 -3.483217 2.495999 -0.654030 4.667220 -4.429330 -4.487938 -2.593066 -1.458369 4.544427 -4.367923 5.763497 9.819686 -2.250699 6.861789 1.066791 -4.698337 -0.490240 4.279062 -6.122353 7.142401 -1.815578 4.450716 -0.064573 5.151187 -5.514673 -2.728221 0.167067 -0.687134 -2.185360 4.007190 -3.889455 0.748426 -0.603877 -6.874097 -1.902233 2.491099 -0.854409 0.059257 -0.155905 1.450844 -6.286411 -0.670503 -4.249739 0.640777 5.479066 -0.625683 -5.955580 1.410399 0.007822 -1.412126 -0.231548 0.490767 -0.070386 5.397632 -6.290522 -1.448477 0.966602 -0.549184 -6.393457 -8.031692 -0.619563 -6.754227 -5.359779 3.663735 -6.003498 -0.242875 -5.009492 -1.203493 -7.516868 -3.998408 2.611843 9.401617 3.566017 -4.771242 1.792827 -0.521123 6.584586 1.135971 1.212513 0.519681 3.397325 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.703412 0.434015 -0.221244 -0.508443 1.539970 0.070891 0.050243 0.654541 0.054665 0.757477 -1.223952 -0.277179 -0.220713 -1.096935 0.112962 0.105643 0.192275 0.280061 -0.425616 -0.203151 0.472237 -0.305002 0.181772 -0.651206 -0.058078 -0.843739 -0.335016 0.067381 0.374704 0.117214 -0.453381 0.119776 1.124619 0.125708 0.642943 0.581142 0.579638 1.084049 0.178834 0.385131 0.329066 0.619599 -0.376165 -1.171285 0.361693 -0.828385 -0.678863 -0.551377 0.339684 -0.944159 0.830876 0.690419 0.068317 -0.201859 -0.670527 0.293351 0.914046 0.033637 1.121560 0.453378 -0.754817 -0.320382 -0.552172 0.737398 -0.614300 0.673207 0.284452 -1.055907 -0.437285 0.551001 0.348285 -0.556602 -0.779052 0.135047 0.232694 -0.542799 0.401047 -0.150274 -0.096507 -0.596460 -0.701571 0.299563 -0.275703 0.908219 0.004995 -0.073792 -0.182813 -0.101247 0.325469 -0.862561 -0.449813 0.933861 -0.400682 0.430765 -0.609021 0.345314 -0.004633 0.012617 -0.498557 -0.482333 0.209326 0.347328 0.145359 -0.275638 -0.367793 -0.918831 0.842790 0.423034 -0.149702 0.249310 0.535146 0.059390 0.161630 0.484857 -0.593920 0.276943 -1.071401 0.281454 0.162479 0.056399 -0.262087 0.051353 0.350838 -0.104386 0.597513 -1.014241 0.916459 0.438504 -0.576757 -0.662803 0.191241 -0.416331 -0.802543 0.063735 0.486656 0.148918 0.038356 -0.118740 0.119986 -0.353507 -0.873148 -0.451689 -0.282735 0.881987 -0.918370 -0.053709 -0.147201 -0.327252 -0.382336 0.524674 0.318353 0.279176 1.080415 0.571282 -0.330901 0.283188 -0.905609 0.530517 1.645717 0.675203 -0.979486 0.423228 -0.560257 0.373036 0.486745 0.191857 0.297061 0.342847 -0.423484 0.011113 0.037895 -0.308595 1.047416 0.601790 0.681938 -0.954979 0.675725 -0.048978 -0.018116 1.438225 0.769663 -1.186081 0.423931 0.934474 -0.589800 0.009027 0.306916 -0.452705 -0.267100 -0.662581 0.257823 0.446391 -0.899104 -0.664551 -0.071743 -0.937525 1.144773 0.153503 0.292965 0.183222 -0.939893 -0.149000 1.386598 0.035385 -0.071335 -0.148093 -0.404820 -0.782101 -1.183959 0.149898 0.454891 -0.692542 -0.361017 -0.768121 -0.027325 1.123801 -0.490668 0.277671 -0.776937 0.037557 0.425923 0.032649 0.466954 -0.834801 -0.544994 -0.062680 -0.135057 0.574037 -0.541356 0.386176 0.896347 -0.566430 0.847019 0.478860 0.085320 0.102558 0.681301 -0.364665 0.950447 -0.254727 0.738441 0.037400 0.871166 -0.506943 -0.031375 -0.224531 -0.052011 -0.355280 0.780916 -0.992697 -0.085937 0.629548 -0.649578 -0.631172 0.584217 0.357367 0.624106 -0.154156 -0.191992 -0.406421 -0.055250 -0.361087 0.250046 0.683307 -0.219953 -0.927187 -0.146366 0.407424 -0.557159 -0.258382 0.360283 0.111207 1.040983 -0.841308 0.318721 0.202534 -0.048315 -1.116275 -0.884982 0.007854 -0.489545 -0.577168 0.708206 -1.359912 -0.441187 -0.561248 0.339822 -1.066249 -0.039053 -0.114323 1.089070 0.325215 -0.137325 0.550319 0.173179 0.500834 -0.037996 0.052688 0.285659 0.587847 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -2.661729 2.092117 1.838565 -2.132047 5.540815 0.003561 0.982143 1.910323 0.787643 2.424468 -5.072217 -1.438027 -0.650630 -3.276161 0.329165 -2.232210 0.294797 1.033747 -1.797440 -0.257440 1.632153 -0.077555 -0.068956 -2.589503 -0.424293 -3.506540 -2.280164 0.258462 0.721024 -0.042941 0.301602 0.669115 4.832982 0.279907 3.502223 2.929667 2.423125 3.949028 -0.637053 2.980489 1.582121 2.302883 -1.602560 -3.641773 0.473216 -2.643129 -3.055809 -1.854245 0.828676 -3.379028 1.902883 2.536619 0.394056 -0.105764 -1.631104 1.843627 2.974101 0.060759 3.851932 1.915705 -3.412152 1.085528 -2.866586 2.937048 -2.053986 3.419500 -0.091590 -4.165685 -1.700595 1.738036 1.857965 -2.548529 -3.116879 0.811066 0.932637 -2.022102 1.656598 -0.805372 -1.182964 -2.362897 -2.157694 1.563995 0.364829 2.839309 -0.016641 -0.486130 -0.235290 -0.171977 0.739544 -3.299170 -1.922010 4.055591 -2.285088 0.661168 -3.127027 0.415193 0.165464 0.725810 -1.504431 -2.778279 1.216342 0.783477 0.211444 -0.378729 -1.511320 -3.113522 1.902236 2.190039 -1.059269 1.275632 0.164672 1.591571 1.716993 1.893188 -2.687109 1.750955 -3.730569 1.655286 -0.972789 -0.040001 -0.472214 0.076749 0.748619 1.171135 2.297581 -3.223504 3.068170 1.468375 -2.817030 -2.245562 0.478900 -2.177627 -3.557575 -0.285257 1.426415 1.672561 0.397214 -0.824564 0.187125 -1.585068 -0.583171 -2.602374 -0.674998 1.846604 -2.875783 -0.629976 -0.286057 -0.479336 -2.138324 2.753682 1.652593 0.875227 4.299714 1.771758 -1.000604 0.074716 -3.448229 0.852570 5.494726 1.651487 -3.459160 2.112744 -2.044877 0.886073 1.885433 1.158602 0.422044 1.238525 -2.479039 -0.952404 -0.806437 -1.672768 4.153457 2.746665 1.191682 -3.767690 2.928329 -1.439776 -1.432595 5.660392 3.597700 -4.389193 0.360614 3.146648 -2.123306 -1.776439 1.807359 -2.325241 -1.726508 -1.888714 0.569778 0.866198 -2.486527 -2.016462 0.975966 -3.759530 4.025534 0.559618 0.518678 0.175959 -3.257132 -4.251034 5.538291 -0.121600 -0.395799 -0.401017 -0.959130 -0.640288 -4.464316 0.460840 1.774002 -2.027877 -1.509426 -2.765907 1.325948 3.536452 -2.673046 1.788611 -1.941552 -1.445541 1.483608 -0.881494 1.938397 -3.653560 -2.162733 -1.467976 -0.470762 1.698173 -2.201148 1.486988 4.528663 -1.473731 3.262143 1.502225 -2.754097 -0.687842 2.878971 -1.988555 3.789703 -1.010396 2.021416 0.397361 2.959159 -2.544443 -1.180773 -0.498218 -0.592618 -1.745139 2.869939 -3.219735 0.273053 0.936840 -2.962500 -1.463940 2.444473 0.889969 0.787449 -0.663390 0.349931 -2.677419 -0.007405 -1.284086 0.531146 2.624626 -0.492723 -3.685015 0.083493 1.430869 -2.436924 -1.383431 0.750897 0.323431 3.712067 -3.108701 0.937416 1.076894 -0.392077 -4.655623 -3.831074 0.132653 -3.758296 -2.665664 1.087581 -3.809727 -1.803660 -2.282662 0.807833 -2.908438 -2.115484 1.365517 4.407502 1.960368 -1.654752 1.476090 0.100523 2.755671 0.349017 0.144865 0.776352 2.121006 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.616257 0.968280 0.422535 -0.877384 3.052928 -0.128674 0.757506 1.234864 -0.574996 1.597913 -2.501484 -0.665846 -0.699745 -2.227269 0.214466 -0.628375 0.624534 0.415727 -0.655980 0.205770 1.051362 -0.829860 0.045915 -1.273872 -0.175793 -2.006365 -0.767874 0.170835 1.445858 -0.278318 -0.357279 0.391983 2.935392 0.231024 2.228606 1.692836 1.084955 2.162937 0.272540 -0.351964 0.146498 1.666671 -1.092478 -2.168204 0.187795 -1.519198 -1.533832 -1.037303 0.738576 -1.333224 0.355890 1.630290 -0.067192 0.174702 -1.404807 0.957845 2.002172 -0.009696 2.621269 0.861397 -1.290266 -0.243621 -1.386918 1.580907 -1.060903 0.889653 -0.266959 -1.983850 -0.286145 0.560222 0.111578 -1.311568 -1.208451 0.910167 0.769681 -1.441982 0.986385 -0.319416 -0.985910 -2.068009 -1.724925 0.564087 -0.252507 2.044954 -0.076329 -0.138380 0.061555 0.078014 0.376605 -2.354362 -0.553326 2.087659 -1.354985 -0.028322 -0.974078 1.246310 0.127618 0.574116 -1.249517 -1.461214 0.557443 0.078004 0.321347 -1.018686 0.090685 -1.747707 0.770108 0.363924 -0.032612 1.266940 1.077679 0.764044 1.199195 1.472419 -1.724856 0.380909 -2.138180 0.862212 -0.495372 -0.003178 -0.236657 0.490991 0.690451 0.332736 1.721884 -2.532217 1.400796 1.027066 -0.861867 -1.710528 0.190036 -1.520291 -1.873129 -0.338031 1.154841 0.527432 0.241737 -0.838900 0.353107 -0.506549 -0.976880 -0.700595 -0.253293 1.901285 -2.382446 -0.240133 -0.326144 -0.495366 -0.968387 1.440813 0.916898 0.924737 2.436350 1.336424 -1.030910 0.945593 -2.157929 0.597275 3.297585 0.741594 -2.105462 1.370143 -1.525740 0.291279 1.144323 0.898249 1.070726 0.199720 -1.555188 -0.571809 0.622846 -0.463879 2.514068 0.788977 1.006349 -1.777123 2.071792 -0.376482 -0.991865 3.022499 1.413215 -2.665311 1.015006 1.561152 -1.499615 -0.311055 0.987544 -1.596819 -0.575745 -1.649623 0.391434 0.888338 -1.663821 -0.762373 0.271576 -2.225006 2.462021 0.258512 0.380122 0.482905 -1.786029 -1.404279 3.170916 0.081117 -0.128434 -0.777484 -0.995950 -1.405870 -2.576266 0.355320 0.237174 -1.229337 -0.789177 -1.954402 0.177087 2.118898 -0.781382 1.151745 -2.194264 -0.166581 0.932129 0.441113 1.039141 -1.414625 -1.332833 -0.158706 -0.480351 0.999553 -1.426539 1.388701 2.413494 -1.157007 1.727876 0.104391 -0.979392 0.372794 1.275615 -1.660344 2.238274 -0.422501 1.911747 0.151158 1.711528 -1.546144 -0.482899 -0.219314 -0.358979 -0.969694 1.367704 -1.740142 -0.008730 0.828361 -1.500902 -1.419973 0.824426 0.305200 0.681459 -0.125121 -0.154585 -1.536117 -0.021922 -1.054207 0.562764 1.631471 -0.265733 -1.824879 0.273446 0.630182 -0.606641 -0.467849 0.435594 0.103061 1.952844 -2.009103 0.055930 0.301727 0.274049 -1.893894 -2.677660 0.238275 -1.665542 -1.361953 1.572689 -2.596142 -0.429265 -1.437134 0.183758 -2.481369 -0.597764 0.417792 2.762474 0.711616 -1.009631 0.908621 0.031318 1.402315 -0.053968 0.416711 0.306445 1.147761 +PE-benchmarks/dfs.cpp__main = -0.557589 -0.749400 0.310231 0.018801 1.633070 -0.980659 0.174005 1.484522 1.158289 0.016804 -0.718834 -0.723790 -0.524057 -0.201440 0.506065 -0.205569 0.671729 0.912053 -1.074548 -1.132190 0.629024 1.690406 -0.377057 -0.412949 0.184358 0.146004 -0.687190 -0.006499 -0.866541 0.244121 -1.060025 1.192123 1.488747 -0.000612 1.107084 0.784474 1.638611 0.989308 -0.624535 1.689730 1.021482 0.490762 -0.122305 -1.041354 0.403971 -0.485268 -0.675173 -0.005985 0.378227 -0.645376 1.827011 0.373323 0.381202 0.517866 0.430218 0.336135 -0.523011 0.404278 0.330904 1.028672 -1.840622 0.798612 -0.600820 1.512460 -0.577128 1.904064 -0.396175 -1.721501 -1.574950 0.703586 1.549112 -1.425573 -1.169051 -0.438507 -0.274707 0.188744 0.878652 0.691399 2.673031 0.198098 -1.405538 0.356537 -0.467196 0.321139 -0.390522 -0.509109 -1.118262 -0.650659 0.462957 -0.191619 -0.600290 0.923281 -1.178200 1.247571 -1.930278 -2.056512 -0.299092 0.236123 0.075746 -1.536445 0.412590 -0.011536 0.028402 1.055514 -0.227432 0.527304 0.659502 0.848089 0.045559 0.317496 -0.599329 0.161891 0.071315 -0.197741 1.077589 0.497409 -0.990141 1.169050 -0.788579 -0.110025 -0.045506 -0.065955 0.914559 0.014401 0.072675 -0.293509 0.525676 0.107216 -0.924982 0.441245 0.507665 -0.257097 -1.138163 -0.499469 1.119454 0.610136 -0.386450 0.111402 0.545826 -0.399906 -0.049325 -0.650040 -1.197483 -1.565997 -0.205420 -0.452587 -0.423098 -0.540981 -0.493314 0.588301 0.005315 0.485681 0.557290 0.501511 -0.598952 -1.430334 -1.334765 0.322767 0.684098 -0.522208 -0.701466 0.187137 -0.510786 0.662072 0.698388 0.437897 -0.558690 0.720715 1.060843 1.071870 -1.413968 -0.015971 0.936281 1.133440 0.387764 -0.955054 -1.548644 -1.584225 -0.212771 1.489104 1.056776 -1.435712 -0.664567 0.831841 0.877837 -1.063276 0.039885 -0.835950 -0.797627 -0.867054 0.715287 0.645265 -1.263904 0.010334 1.722819 -0.626858 0.179456 0.042010 -0.587591 -0.079656 -1.623570 -0.349645 1.983498 0.109936 0.360138 0.162993 -0.642757 0.861558 -1.074265 0.180938 0.540891 0.583318 -0.378015 -0.249988 0.202089 1.498682 -0.625890 0.449040 0.483545 0.080910 0.344079 -1.389420 0.546310 -1.521938 -0.645364 -0.735415 -0.397968 0.485471 -0.851523 -1.233434 0.658698 -0.547988 0.560831 1.882517 -1.078462 -1.207420 0.545801 -0.115160 0.557097 -0.022451 -0.546755 0.233311 0.633657 -0.995274 -0.599103 -0.504157 0.932967 -1.094788 0.997097 -0.643888 0.324767 -0.129219 -0.855804 -0.107144 0.584422 0.577527 0.015117 -0.271229 -0.358002 -0.624608 0.083336 -0.554938 0.414271 0.778583 -0.532819 -0.920318 0.168524 0.054123 -2.163791 -0.410285 0.389325 -0.131589 1.438865 -0.536916 0.070816 0.922217 0.147045 -1.406086 -0.566403 -0.735831 -0.822650 -0.243821 -0.468505 -0.300359 -1.368811 -0.184033 0.862185 -0.268997 -0.844923 0.279940 0.673865 0.712505 0.181217 0.678942 0.579976 0.359384 0.251224 -0.443577 0.182142 0.518977 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/dfs.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/dfs.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/dfs.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.887159 0.459003 -0.114392 -0.500593 3.736125 -0.219615 0.858849 1.905349 -1.750451 1.943914 -2.323946 -0.668790 -1.121228 -2.573660 0.286586 0.176349 1.389812 0.260996 -0.616934 0.447032 1.183180 -1.269128 0.209010 -1.026238 -0.105049 -1.938592 -0.686914 0.331752 2.596619 -0.772557 -1.035806 0.459766 3.707304 0.115049 2.791740 1.773264 1.161672 2.081320 0.744267 -2.828580 -0.357148 2.186203 -1.471413 -2.218648 0.069931 -1.808709 -1.798626 -0.865154 1.184650 -0.822577 -0.838879 1.932194 -0.357389 0.623789 -1.643598 1.157340 2.448021 -0.351159 3.352516 0.699598 -1.180819 -0.968232 -1.263893 1.870890 -0.967372 0.197771 -1.215205 -2.211538 -0.106848 0.254890 -0.560219 -1.770863 -0.932741 1.537333 1.049416 -1.755640 1.396776 -0.021105 -0.108235 -3.581780 -2.587160 0.311074 -1.081250 2.515327 -0.274648 -0.085119 0.342198 0.100587 0.264784 -3.158508 0.026373 1.906426 -1.927043 -0.353290 -0.359155 1.735513 -0.061578 0.959474 -1.834701 -2.006111 0.390025 -0.462212 0.460882 -1.633308 2.051730 -1.421592 0.067228 -0.517599 1.093018 2.254841 1.994146 0.871051 1.784395 2.064534 -2.054767 -0.552786 -2.113803 1.084375 -1.180654 -0.031858 -0.365444 1.141637 1.539204 0.352556 2.478804 -3.514375 1.067011 1.245628 -0.338669 -2.065773 0.130862 -2.071156 -2.100781 -0.488217 1.651253 0.010738 0.295955 -1.470557 0.862778 -0.197601 -1.728942 0.434057 -0.394349 2.378640 -3.695423 -0.235537 -0.443240 -0.738561 -0.670368 1.679688 1.171949 1.584839 2.725394 1.711684 -1.919048 1.912919 -2.862292 0.947320 3.843500 0.199463 -2.431420 1.758192 -2.186014 0.176411 1.617553 1.380238 1.952332 -0.447246 -1.441150 -0.421308 1.626555 0.316472 3.072857 0.053356 1.447356 -1.924530 2.160391 -0.353179 -1.170960 3.410353 0.723855 -3.366482 2.018052 1.443125 -1.536820 0.433031 0.919078 -2.352255 -0.701342 -2.576763 0.546485 1.596402 -2.106029 -0.347124 0.548947 -2.520300 2.844456 0.178395 -0.131367 1.086391 -1.964357 -0.599553 3.739547 0.468119 0.170289 -1.351905 -1.646533 -1.913917 -2.981935 0.386041 -0.669628 -1.298610 -0.538768 -2.575352 -0.430019 2.523187 0.066359 1.617165 -4.246167 0.804131 1.140952 1.048646 1.057477 -1.132092 -1.585914 0.310079 -1.246201 0.885346 -2.295676 1.733697 2.295174 -1.698720 1.778754 -0.660031 -0.951674 0.928067 0.739798 -2.381082 2.625825 -0.114750 3.232598 0.159451 1.981570 -1.921574 -0.313990 -0.432264 -0.322627 -1.393356 1.408616 -1.954850 -0.175860 1.334846 -1.381981 -2.520715 0.209595 0.043825 0.835884 0.136688 -0.942318 -2.066769 0.048201 -1.087821 1.028021 1.887184 -0.602643 -1.960588 0.655744 0.519363 -0.102300 -0.493001 0.427723 0.001421 2.024493 -2.502215 -0.561083 0.264048 1.216219 -1.419024 -3.433951 0.277266 -1.356059 -1.164114 2.725607 -3.225768 -0.202093 -1.727090 -0.211926 -3.058025 -0.211942 0.457593 3.516622 0.371423 -1.613017 1.103036 0.097086 1.311091 -0.382273 0.876117 0.028072 0.898709 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.422618 0.005695 -0.154376 -0.172862 1.067658 0.044156 -0.130521 0.864609 0.138258 0.524511 -0.472487 -0.216960 -0.094646 -0.341818 0.082271 0.232371 0.025047 0.259156 -0.420081 -0.279235 0.315774 0.253271 0.029172 -0.152129 -0.107702 -0.182520 -0.316716 0.108339 0.224579 -0.041078 -0.550036 0.074630 0.726739 -0.121075 0.625890 0.347459 0.674488 0.432620 -0.096551 0.373161 0.145626 0.383868 -0.368426 -0.514736 0.184922 -0.523874 -0.483750 -0.109922 0.282011 -0.426676 0.766773 0.378766 0.001824 0.104013 0.074676 0.333924 0.001415 -0.027578 0.660602 0.272510 -0.760559 -0.058174 -0.505599 0.919954 -0.240223 0.763803 -0.206538 -0.879365 -0.528553 0.134193 0.462069 -0.637712 -0.385607 0.339286 0.031012 -0.252571 0.395720 -0.096087 0.877958 -0.431166 -0.590859 0.209413 -0.341454 0.382583 -0.121115 -0.049230 -0.383057 0.023262 -0.056757 -0.659009 -0.103914 0.596362 -0.580781 0.459476 -0.683081 -0.421961 -0.217056 0.293671 -0.210499 -0.384921 0.172678 0.264140 0.115672 -0.059950 0.384386 -0.224749 0.324688 0.233239 0.210666 0.161123 0.124178 0.045262 0.308523 0.498206 0.070394 0.098242 -0.458936 0.342301 -0.253998 0.199440 -0.179241 0.218431 0.511588 0.048681 0.496718 -0.560913 0.292932 0.011071 -0.420099 -0.320298 0.120916 -0.421745 -0.544822 -0.098552 0.355080 0.085044 -0.192142 -0.304598 0.255219 -0.126659 -0.660288 -0.282302 -0.187525 -0.209137 -0.546635 -0.111113 -0.133051 -0.189526 -0.198395 0.555226 0.395855 0.396450 0.671584 0.414587 -0.113955 -0.225610 -0.698259 0.253912 0.713037 0.025780 -0.613031 0.362763 -0.588454 0.173152 0.418388 0.297303 0.116062 0.467444 0.097318 0.197744 -0.128872 0.173394 0.777899 0.422056 0.363878 -0.390068 -0.146294 -0.500144 -0.247557 0.931133 0.466439 -0.840978 0.031644 0.217492 0.164697 -0.041523 0.221748 -0.495806 -0.284253 -0.406629 0.139331 0.447206 -0.493552 -0.241251 0.520786 -0.557934 0.721661 -0.051403 -0.056643 0.208498 -0.794670 0.098109 0.871476 0.179841 -0.103578 -0.155374 -0.259127 -0.173028 -0.554433 0.133130 0.274559 -0.088187 -0.317563 -0.494228 0.009920 0.676602 -0.052578 0.317263 -0.523932 -0.014739 0.254585 -0.481545 0.422132 -0.684641 -0.247677 -0.428695 -0.221745 0.404447 -0.512520 0.005575 0.659147 -0.361056 0.489239 0.596491 -0.168339 -0.326852 0.294794 -0.356995 0.605846 0.015993 0.007527 -0.025443 0.411961 -0.390063 -0.027595 -0.220765 0.316081 -0.170645 0.471317 -0.295881 -0.042372 0.048530 -0.654309 -0.216556 0.128993 0.141139 0.110934 0.056102 -0.323795 -0.480929 -0.151515 -0.355806 0.067743 0.479188 -0.310114 -0.542052 0.189315 -0.146293 -0.531085 -0.128572 0.146075 0.063394 0.652800 -0.532355 -0.076959 0.282651 0.108415 -0.780405 -0.362552 -0.451719 -0.228494 -0.252304 0.219838 -0.514461 -0.407889 -0.362144 0.062929 -0.483556 -0.284415 0.129666 0.765585 0.377261 -0.237477 0.383844 0.100969 0.486593 0.167614 -0.076838 0.170395 0.258447 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -9.255283 6.764569 7.713416 -3.497718 10.710491 2.632922 2.620017 4.737400 -5.615798 10.782179 -13.467031 -4.816141 -5.860218 -8.885483 -1.384304 -7.979933 2.297256 -2.190289 -2.287855 4.621587 5.356703 -7.966210 -0.580211 -6.279868 -1.617469 -10.354723 -5.650094 -0.015294 11.786502 -5.023787 0.606267 -0.415031 18.334590 2.588804 14.442487 10.549907 3.009609 12.861261 2.143364 -3.807248 -4.844651 12.187035 -8.918235 -6.776626 -0.917071 -10.042263 -4.992351 -3.425952 2.907022 -1.933799 -1.795461 9.423960 -2.428741 3.616310 -7.870766 6.122756 9.293777 1.056719 17.563152 2.108159 -3.585489 -0.596360 -9.532066 6.679248 -4.986353 3.456681 -3.858820 -6.435612 4.476919 -4.530862 0.127544 -8.597365 -4.331596 10.707510 3.212653 -9.950221 4.332472 -3.922121 -15.664740 -13.789354 -10.622568 2.321443 2.660808 10.255293 -0.842196 -0.149248 1.523263 5.045080 -0.589440 -17.015968 0.367268 11.754618 -8.926146 -3.315649 -3.759949 11.017500 -2.141255 7.773623 -8.939084 -3.504161 3.087663 -0.416417 1.686243 -12.282388 4.181018 -11.518044 3.722477 -1.458088 -1.015608 4.492328 8.925512 7.265858 13.368354 12.718486 -12.754050 0.375605 -9.631408 2.277403 -1.464164 -1.252801 1.273527 6.055193 -2.890935 2.470310 13.799270 -15.891557 2.970004 4.149343 -6.560297 -13.207812 -2.070166 -13.495213 -10.903215 -3.554463 5.179404 4.689198 2.478298 -9.923144 0.163431 -2.878319 -2.610371 -5.940410 3.872689 12.615576 -11.864608 -2.816056 -1.308288 -1.444014 -6.330113 10.845151 6.480986 6.216591 13.647966 6.859531 -4.659402 3.973340 -10.460123 -1.138673 14.657765 4.545819 -13.469886 9.935505 -8.537489 -0.801394 6.488781 6.856609 9.795470 -1.329064 -12.206427 -8.731869 5.817950 -1.314395 14.824741 2.018808 4.359900 -1.848183 17.598162 -1.569643 -11.614416 14.208575 6.450497 -10.422494 3.034401 3.686546 -7.150977 -1.565857 8.402332 -9.349841 0.113670 -7.484181 -2.389873 3.425551 -5.475089 -0.284831 2.375288 -14.295977 17.454193 1.054377 5.372780 3.924468 -11.110272 -16.090199 14.129864 -1.644338 -1.925224 -6.717321 -4.647953 -8.891818 -13.400462 2.770287 -1.210614 -6.352698 -5.629418 -13.040180 4.878773 7.010962 -1.642611 9.155848 -12.525759 -6.749297 4.352274 1.375084 8.572262 -3.115496 -7.948628 -1.105956 -2.389663 8.800910 -7.689624 13.887083 17.668748 -4.141879 10.371381 -3.582134 -6.088328 1.776624 5.705062 -14.045345 12.780584 -4.263253 7.966916 -1.160908 8.279185 -9.032051 -4.306280 2.127367 -0.031605 -2.875493 3.806991 -5.106210 0.556558 -2.242117 -11.318568 -3.274351 1.196611 -4.198855 -1.285349 1.387863 2.292793 -10.833167 -1.248637 -6.184840 1.506579 9.697900 2.229579 -6.902365 4.296459 -2.236745 2.872560 3.825856 -0.381911 -1.321982 7.547409 -12.129790 -6.096281 -0.361143 -0.570890 -6.007218 -15.940708 -2.090690 -9.727881 -8.499744 10.992167 -11.663178 2.757810 -9.526938 -4.870015 -12.039429 -3.747746 4.187037 17.005887 7.051714 -11.779857 1.871443 -2.113397 12.028503 1.501957 2.252496 0.221921 5.033501 +PE-benchmarks/partition-problem.cpp__main = -0.874148 -0.102655 0.197574 -0.296083 1.678105 -0.050730 -0.082059 0.870729 0.532739 0.734399 -1.113085 -1.079352 -0.556072 -0.740728 0.139283 -0.177347 0.322453 0.403722 -0.837530 -0.340054 0.652335 0.328805 -0.023890 -0.465894 -0.069056 -0.321983 -0.850588 0.148126 0.364992 -0.290122 -0.783905 0.312146 1.727383 0.008583 1.482292 0.823345 0.979813 1.155239 -0.374273 0.372200 0.251354 1.005914 -0.698562 -1.097702 0.263051 -1.013803 -0.863691 -0.489072 0.542963 -0.472387 0.873994 0.743896 0.026406 0.312238 -0.137180 0.411732 0.352924 0.442961 1.335986 0.585413 -1.045124 0.653744 -1.005217 1.030735 -0.654531 1.351990 -0.590566 -1.502921 -0.877380 0.117539 0.910332 -1.109074 -0.969489 0.509876 0.289541 -0.441110 0.792889 -0.026680 1.071117 -1.060004 -1.382131 0.286373 -0.562496 0.815141 -0.363826 -0.203668 -0.286464 -0.005588 0.063108 -1.173993 -0.269312 1.036797 -0.989968 0.497793 -0.787317 -0.524424 -0.360291 0.571508 -0.670009 -0.850128 0.341672 0.094120 0.163559 0.378450 0.723130 -0.239346 0.559232 0.488961 0.243612 0.294651 0.487423 0.245771 0.865105 0.785410 -0.252487 0.148713 -0.824503 0.571757 -0.760503 0.097674 -0.052558 0.547542 0.646942 0.059313 0.917242 -1.107410 0.542253 0.279496 -0.843056 -0.409778 0.250970 -0.891458 -1.222648 -0.314301 0.770428 0.392228 -0.204119 -0.623308 0.310061 -0.346445 -0.531739 -0.088334 -0.357238 -0.377157 -0.675199 -0.316150 -0.273317 -0.523999 -0.410574 1.001189 0.548499 0.648330 1.262943 0.762453 -0.687283 -0.858137 -1.311837 0.354623 1.447574 -0.716550 -1.190357 0.636715 -0.709272 0.360639 0.842467 0.695567 0.352964 0.368078 0.184160 0.256141 -0.812364 0.112481 1.435744 0.739666 0.546515 -0.722799 0.058124 -0.654677 -0.574942 1.740714 0.713618 -1.350636 -0.190432 0.511786 -0.213802 -0.491351 0.399711 -0.801126 -0.398617 -1.024160 0.405316 0.620081 -0.933877 -0.269358 0.952443 -1.191198 1.214590 -0.035047 -0.272219 0.304821 -1.471687 -0.664566 1.860105 0.073209 -0.085184 -0.305280 -0.546386 0.181742 -1.282937 0.294617 0.136237 -0.177693 -0.503638 -0.912007 0.402429 1.268882 -0.259135 0.687557 -0.610324 -0.148325 0.439895 -0.650804 0.826885 -0.950861 -0.674016 -0.475735 -0.552225 0.651722 -0.867237 0.020436 1.312876 -0.683407 0.609011 0.777393 -0.912932 -0.473799 0.623264 -0.787246 1.154308 -0.191556 0.018852 -0.104224 0.830547 -0.682971 -0.321172 -0.192792 0.415163 -0.574052 0.888622 -0.600387 0.069058 0.007000 -1.084448 -0.402637 0.343731 0.120940 0.148692 0.071594 -0.359055 -1.239495 0.115412 -0.282080 0.180632 0.978520 -0.150833 -1.036137 0.306123 -0.102570 -0.785745 -0.253199 0.204089 -0.165052 1.265651 -1.004488 -0.210263 0.486439 0.242354 -1.022591 -0.823383 -0.685028 -0.864990 -0.288804 0.779431 -0.777968 -0.614824 -0.716393 0.142420 -0.278905 -0.520241 0.406628 1.404793 1.033334 -0.717395 0.534966 0.174643 0.970816 0.289898 -0.369747 0.223620 0.576993 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -3.550161 2.695374 3.350634 -1.439401 5.187422 1.200035 1.567419 3.390257 -4.384176 4.222479 -5.177125 -0.939772 -1.951561 -3.716875 -0.414411 -2.738437 0.545851 -1.008268 -1.050533 1.806139 2.002556 -2.863093 -0.310461 -2.303013 -0.671053 -3.688817 -1.733262 0.017492 5.058341 -1.047802 0.310591 -0.384286 6.570826 0.364045 5.722247 3.902092 0.877481 4.014416 0.333612 -2.778606 -1.834632 4.553775 -3.438274 -2.663799 -1.096505 -3.754278 -2.593922 -1.352319 1.315597 -1.585068 -2.560341 3.573215 -0.977244 1.324447 -2.228593 3.301603 3.356917 -0.737583 6.565625 0.890624 -2.265836 -0.875973 -3.828520 3.462396 -1.193473 1.474629 -1.929312 -2.712773 1.684789 -1.507667 -1.474136 -1.984519 -0.345101 4.258458 1.708671 -3.757952 1.782062 -1.579777 -6.389794 -5.276366 -3.435770 0.942674 0.956069 3.987588 -0.419770 -0.115686 1.885740 1.763142 -0.484367 -6.656825 0.125851 5.136663 -3.463047 -2.399673 -2.660792 3.890685 -0.554767 3.166076 -3.148399 -1.632498 1.374525 0.197781 0.568461 -6.531177 2.506130 -4.329174 0.603983 -0.170159 0.523875 3.037620 2.199688 2.801414 4.830663 5.048207 -4.615362 1.143876 -3.411179 1.185559 -1.792930 -0.186471 0.199799 2.013711 0.440264 1.357318 5.243426 -5.928347 1.142548 1.856921 -2.068204 -5.246684 -0.629760 -5.395755 -4.245915 -1.236290 1.729540 1.690657 0.900070 -3.825301 0.550880 -0.888527 -1.487247 -1.793116 1.286576 4.259802 -5.518907 -1.117028 -0.367464 0.298185 -2.270497 4.631185 2.808008 2.373134 5.389997 2.406855 -1.598882 1.289579 -4.036601 -0.080276 6.019551 0.560606 -4.806555 3.860122 -3.534201 -0.490532 2.077592 2.351988 3.649319 0.620856 -5.055061 -3.541719 2.296899 -0.502732 5.829442 1.623592 1.420548 -0.940709 6.900270 -1.999278 -4.538648 4.647768 3.314901 -4.364603 1.761676 1.267648 -3.222067 -0.577895 3.193816 -4.128977 -0.462437 -2.678438 -1.082613 1.547168 -2.158193 -0.216992 1.062990 -5.345246 6.844560 0.371087 2.036557 0.970483 -3.468316 -5.589186 4.861429 0.166022 -0.878167 -2.617890 -1.527377 -5.203168 -4.919776 1.001171 -0.365003 -2.196033 -2.430284 -4.917496 1.097257 2.091324 -0.621739 3.743364 -5.488140 -1.933364 1.695815 1.065316 3.522898 -1.046676 -3.066597 -1.184337 -1.836156 3.381001 -3.521311 5.495237 6.503808 -1.345362 5.235116 -1.492042 -3.390400 0.401297 2.069044 -5.352062 4.943719 -0.887575 2.822998 -0.212927 3.280618 -3.495098 -1.581934 0.371390 -1.237377 -1.078936 1.869125 -2.012751 0.273097 -1.172894 -4.720160 -1.515030 0.508505 -1.868701 -0.099208 0.498657 0.876950 -4.985934 -0.620224 -3.311687 0.457996 3.701395 -0.340638 -2.952452 1.680891 -0.828444 0.814285 0.733293 -0.112560 -0.257610 2.699080 -4.600049 -2.025079 0.048648 0.372678 -2.940091 -5.417607 -0.939493 -3.686059 -4.008849 4.019892 -3.994998 1.084137 -3.691961 -2.067922 -5.306755 -2.903012 2.034559 6.865658 1.700571 -4.389439 0.780164 -0.796537 4.619187 0.889471 1.431615 -0.234293 1.443312 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.650169 0.102579 0.119006 -0.361802 1.368611 -0.018761 -0.079082 0.876507 0.366171 0.361192 -1.089437 -0.522150 -0.279894 -0.618448 0.179865 -0.033090 0.127042 0.376790 -0.698232 -0.438789 0.574675 0.369014 -0.059539 -0.635002 0.058848 0.024225 -0.611078 -0.047438 0.076992 0.092412 -0.715088 0.236442 1.030579 0.011561 0.793258 0.562877 0.919840 0.997006 -0.364664 0.787778 0.407394 0.732008 -0.399331 -1.081096 0.403430 -0.911795 -0.433126 -0.209863 0.342838 -0.641684 1.097265 0.495729 0.165507 0.007492 -0.092857 0.289913 0.307745 0.362286 0.836825 0.616497 -1.070199 0.222821 -0.712728 0.738637 -0.508641 1.509550 -0.026733 -1.157857 -0.880231 0.310837 0.794802 -1.045501 -0.902526 0.045334 -0.098477 -0.176384 0.651519 -0.033174 1.026942 -0.266475 -0.876428 0.224486 -0.385527 0.577547 -0.288215 -0.288804 -0.553065 -0.190699 0.320868 -0.618283 -0.567977 0.804852 -0.683415 0.765301 -0.861138 -0.652556 -0.314633 0.309157 -0.375545 -0.564964 0.315922 0.512134 0.061767 0.102068 0.041416 -0.405186 0.824342 0.601514 -0.153326 0.117769 0.203104 0.178279 0.225309 0.345083 0.073516 0.276122 -0.854117 0.300327 -0.382496 0.189028 -0.090853 0.141897 0.474143 -0.181750 0.388827 -0.591925 0.711185 0.240494 -0.771738 -0.287197 0.400599 -0.566048 -1.021930 -0.090673 0.534021 0.443729 -0.224900 -0.185836 0.192264 -0.434049 -0.644458 -0.532578 -0.474680 -0.254770 -0.557472 -0.328502 -0.241976 -0.359053 -0.381705 0.608322 0.227266 0.228386 0.884683 0.512519 -0.354684 -0.493040 -0.809981 0.433864 1.149731 -0.044896 -0.928925 0.185176 -0.504966 0.522297 0.645834 0.138250 0.003910 0.806174 0.134536 0.326259 -0.483574 -0.285596 0.928045 0.768332 0.662683 -0.795859 -0.034940 -0.673538 -0.257291 1.430110 0.671782 -1.229944 -0.030495 0.613385 0.245233 -0.271512 0.140221 -0.423651 -0.299789 -0.613651 0.244497 0.369234 -0.936981 -0.612517 0.533083 -0.870736 0.951152 0.102395 0.019175 0.027584 -1.208715 -0.192051 1.470816 0.159711 -0.192074 -0.072551 -0.219856 -0.071027 -0.983263 0.257467 0.509789 -0.222118 -0.578731 -0.546873 0.263450 1.072912 -0.594631 0.228188 -0.184148 -0.191750 0.252164 -0.638955 0.752413 -1.002148 -0.608778 -0.575314 -0.260341 0.764858 -0.636737 -0.191531 1.058800 -0.517758 0.737010 1.107104 -0.330310 -0.552960 0.769804 -0.192825 0.730586 -0.164446 0.233009 -0.132973 0.789505 -0.683509 -0.265130 -0.221484 0.396175 -0.316984 0.841233 -0.605508 0.127892 0.075222 -0.845144 -0.129639 0.656753 0.220279 0.329256 -0.139023 -0.200773 -0.540292 -0.057402 -0.226585 0.014216 0.796476 -0.378575 -1.081706 -0.210211 -0.022823 -1.017900 -0.174306 0.332676 -0.094482 1.142792 -0.636424 0.112848 0.431271 -0.208417 -1.187508 -0.447097 -0.576451 -0.446568 -0.241443 0.385876 -0.601320 -0.587497 -0.433463 0.368035 -0.527470 -0.433127 -0.021361 0.805747 0.723746 -0.121019 0.551609 0.311205 0.786602 0.261945 -0.261269 0.157329 0.469506 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -5.955648 4.955908 4.408576 -2.801138 8.199496 0.224485 4.182234 3.134514 -3.885929 6.285421 -8.845691 -3.179399 -3.186297 -7.171546 -0.206479 -6.007337 1.819544 -0.087263 -1.254319 3.004124 3.512968 -4.715325 -0.458787 -4.170871 -1.064594 -8.083197 -2.737654 0.367841 7.400946 -1.850220 1.634477 0.441427 11.602380 1.065787 10.113175 7.005237 2.236019 7.416566 1.258819 -2.830230 -2.148346 7.078320 -5.016707 -5.959226 -1.478312 -5.085173 -4.903475 -3.438675 2.193855 -3.187312 -2.269741 6.122053 -1.046253 2.152390 -5.127720 4.129853 7.168244 0.008654 10.507303 1.912683 -2.969614 -0.316751 -5.399826 4.966496 -2.762202 1.115050 -2.512603 -4.865181 2.292382 -0.944894 -2.617165 -3.595914 -2.048676 5.893159 3.664893 -6.433354 3.191295 -2.150930 -9.760556 -8.732237 -5.658073 1.841811 1.443103 7.345302 -0.261411 -0.121729 2.019522 2.100837 -0.194485 -10.310591 -0.255024 8.294139 -5.389825 -3.638562 -2.282018 7.370353 0.593284 4.093061 -5.112750 -4.321076 2.085853 -0.834026 1.110672 -7.049872 0.938449 -7.284788 0.698116 -0.041755 -0.425721 5.855032 4.374077 4.674566 7.341187 7.386129 -8.745279 1.798091 -7.036217 2.862731 -2.729959 -0.625715 0.512126 2.792691 0.346979 2.738222 7.631915 -10.083734 3.050045 3.889474 -2.471825 -7.975004 -0.755121 -7.755552 -6.802716 -2.117509 3.404302 2.717617 1.755293 -5.407998 0.512495 -1.366498 -0.541651 -2.799984 1.711560 7.787501 -8.555913 -1.304570 -0.733638 -0.450267 -4.178918 6.522582 4.025745 3.504993 9.130421 4.520144 -3.443618 4.165746 -7.127916 -0.248797 10.435993 1.684335 -7.714720 6.312333 -6.029643 -0.858758 3.755245 4.241422 5.446649 -0.155396 -8.669721 -5.035376 3.989483 -1.399861 9.402455 1.415726 2.031088 -4.277469 11.372758 -1.603156 -6.692270 9.694264 5.213162 -8.297976 2.773439 3.414080 -7.248317 -1.567696 5.313799 -6.851224 -1.167734 -5.549615 -0.362181 2.400988 -4.050523 -0.829849 1.213571 -8.733887 9.785971 0.697326 2.196730 1.633142 -5.814107 -8.757633 10.375777 -0.067356 -0.836524 -3.824525 -3.187826 -5.882858 -8.947386 1.415014 -0.615513 -4.128496 -3.292822 -7.785952 2.120623 5.044934 -1.730511 5.897484 -8.218132 -2.734277 3.293419 2.761442 4.224189 -2.902617 -5.082755 -0.835342 -1.571475 4.129315 -4.914206 8.431809 10.413208 -2.876173 6.983535 -2.973849 -6.207441 1.968995 3.866349 -8.779396 8.515661 -1.857642 6.237285 0.237230 5.352732 -6.020547 -2.791765 0.505061 -2.547262 -2.900320 3.384053 -4.555406 0.379875 0.349530 -6.352682 -3.692756 1.394232 -1.225665 -0.030276 0.431520 1.522741 -7.481223 -0.457901 -5.025248 1.315601 6.062713 0.731852 -5.401390 2.637528 0.530094 1.033117 -0.177909 -0.038899 -0.117517 5.186825 -7.668115 -2.349136 0.151734 0.669824 -4.948444 -11.076006 1.066541 -7.366145 -5.935089 5.671316 -7.752716 1.083838 -5.985924 -2.071993 -9.605856 -3.734106 3.453347 11.254439 2.916373 -6.227264 1.439132 -1.267360 6.828028 0.455698 2.356701 0.686556 3.750433 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -13.079259 8.198513 5.658643 -4.851182 16.655739 0.960434 7.939296 4.585371 -6.628421 13.290036 -18.760586 -9.085379 -8.312239 -14.923720 -0.844355 -10.732014 4.497802 -0.893545 -3.788421 4.725151 8.215824 -10.252522 -1.023155 -9.067176 -1.356354 -14.171563 -6.847565 0.204655 16.162002 -6.315339 -1.311243 1.189461 25.210952 3.266185 21.259397 14.685703 4.773825 17.475153 1.811401 -5.369386 -5.256792 16.607110 -11.185845 -12.980945 -2.102326 -12.492549 -8.621888 -6.247383 5.503567 -3.234876 0.853418 13.127452 -2.836235 5.055540 -11.574095 6.965064 13.990153 2.863726 23.530452 4.103893 -5.929054 0.251762 -12.082390 11.320863 -6.704238 4.300612 -3.581295 -10.326555 4.269955 -3.903039 -1.571919 -11.210873 -7.633031 12.736057 6.579782 -13.202777 6.839942 -4.235623 -19.337122 -18.406651 -15.355694 3.000215 1.535542 15.785651 -1.251004 -0.767582 1.163094 4.804697 0.219467 -22.422257 -0.524275 17.334786 -11.632416 -3.465509 -5.342780 14.615738 -1.669731 9.494942 -13.033463 -7.487084 4.033262 -1.092405 2.523079 -14.007245 3.002716 -15.326367 4.576708 -0.947279 -1.601252 8.368984 13.611991 8.234559 16.052286 15.985535 -16.153538 1.235352 -14.635124 5.010413 -3.219971 -1.330733 1.739851 7.512638 -1.501326 1.988875 17.459654 -21.891439 5.445585 7.182193 -7.127975 -17.832847 -1.944364 -17.578510 -15.531669 -4.661242 8.158283 6.263734 3.043720 -12.267683 0.632003 -3.300554 -4.103613 -4.902052 3.994746 15.967728 -15.653912 -3.518753 -2.238968 -2.814683 -9.275184 14.350720 8.004860 8.504420 19.382889 10.625870 -7.753691 6.059500 -15.383442 -0.094195 21.934311 4.626994 -18.313561 12.641103 -13.030563 -0.102882 8.863125 9.524210 12.795542 -1.824043 -15.493543 -7.775724 7.723034 -2.308127 20.405894 2.012091 6.336095 -4.664364 22.410058 -1.876194 -14.638562 20.587638 9.572320 -17.246299 5.739564 6.635900 -11.046862 -2.246307 11.424547 -13.379774 -0.710999 -13.243661 -0.025742 5.314330 -9.508352 -0.457829 3.208416 -19.294375 22.480453 1.428616 5.506348 5.217327 -15.925887 -17.714567 22.655128 -2.067744 -1.779132 -8.431924 -7.099850 -12.048030 -18.957836 3.689249 -2.001222 -8.672017 -7.575874 -17.267457 5.469755 12.718368 -3.036833 13.130416 -14.020736 -6.409993 6.353813 4.412339 10.797634 -4.978124 -11.485792 -0.822272 -2.167066 10.906108 -10.543901 16.483819 22.596478 -7.050293 12.948414 -3.684199 -8.538877 3.233796 8.283094 -18.265389 17.586298 -4.644620 11.182991 -1.253978 11.966015 -12.460142 -6.203554 2.083248 -0.290003 -5.502441 6.883678 -8.601983 1.067456 -0.149806 -14.340738 -6.869584 2.764502 -3.485717 0.244453 1.374757 1.842995 -14.527674 -0.889412 -10.046894 3.056847 13.700797 2.776927 -10.451610 5.121085 -1.339519 2.139931 4.881913 0.441757 -1.637958 12.235217 -16.310739 -7.294207 0.055467 0.785709 -8.867483 -23.845964 -1.133270 -14.128258 -11.272469 15.101869 -16.499970 2.742361 -13.084993 -4.658347 -19.486183 -5.593128 5.286458 23.685708 9.027658 -12.621878 3.629490 -1.739358 15.150473 0.543056 3.089088 2.558210 8.218179 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -1.131528 0.272892 0.737127 -0.513084 2.192138 0.003497 0.226371 1.775633 1.306402 0.459495 -2.030006 -1.509751 -0.379899 -0.525855 0.297661 -0.460382 0.031758 0.869964 -1.406185 -0.857476 1.107518 1.303819 -0.503458 -1.154419 0.188828 0.501438 -1.537779 -0.261091 -0.570248 0.482525 -1.048572 0.596644 1.949017 0.474266 2.029919 1.285608 1.620679 1.853030 -1.090898 3.128134 0.622471 1.384424 -0.834403 -1.891491 0.792191 -1.677882 -0.767186 -0.734654 0.204752 -1.357596 3.381292 0.826481 0.331848 0.486979 0.526448 0.079718 0.112945 0.939002 1.235062 1.386160 -2.406883 1.636248 -1.387678 1.205399 -0.425341 3.387858 0.294013 -2.463204 -1.692632 0.129752 2.913032 -2.442266 -1.876080 0.282588 -0.468451 0.003881 1.445325 -0.100765 1.971988 -0.415577 -1.717829 0.495371 -0.470814 0.908593 -0.678256 -0.807903 -1.922907 -0.426022 0.363851 -1.076027 -1.073378 1.728483 -1.390157 1.705234 -2.465931 -1.986772 -0.758277 1.223933 -0.631889 -1.190626 0.839781 1.115249 -0.067286 1.409715 -0.686717 -0.393804 1.579822 1.625085 -0.603301 0.044624 0.071645 0.634935 0.977598 0.681392 0.313962 1.353260 -1.080875 1.063154 -0.933490 0.378645 0.257062 0.195805 0.662242 -0.260362 0.532343 -0.562964 0.857785 0.494344 -1.899825 -0.324776 0.638719 -1.646800 -2.201664 -0.513885 0.866784 1.385000 -0.480454 -0.602335 -0.086958 -1.157502 -0.430322 -1.731053 -0.940658 -1.280547 -0.452990 -0.954379 -0.449609 -0.550907 -1.089206 1.542647 0.451649 0.441975 1.480890 0.794822 -0.463507 -2.508387 -1.337846 0.333515 1.842409 0.028570 -1.673920 0.312746 -0.507424 1.006102 1.326525 0.281424 -0.329334 1.263992 0.362803 0.669938 -1.819506 -0.629352 1.792126 2.239914 1.012608 -1.275569 -0.246119 -1.727624 -1.337076 2.716910 1.651963 -1.785976 -1.458223 0.631329 0.805855 -0.972825 0.400143 -0.727545 -0.892189 -0.771030 0.348807 0.243909 -1.398196 -0.993191 1.819386 -1.754409 1.677773 0.237352 0.370375 -0.390196 -2.503807 -0.799161 3.039456 0.214907 -0.555024 0.262125 0.000635 1.001345 -1.446309 0.551674 1.102651 0.270797 -1.318207 -0.812681 1.129062 1.795330 -1.326033 0.467557 1.256188 -1.137232 0.273483 -2.714048 1.455333 -3.004197 -1.284211 -1.794315 -0.133244 1.632469 -0.725458 -0.538481 2.481625 -0.561520 0.799395 3.365739 -0.452322 -1.769008 1.497257 -0.356788 1.155224 -0.739248 -0.390118 -0.303209 1.398606 -1.264471 -1.037478 -0.348927 1.520346 -0.653580 1.884786 -0.590168 0.650992 -0.434543 -2.019448 0.453873 1.261984 -0.002952 -0.068425 -0.273399 -0.212894 -1.596970 0.002851 -0.597708 -0.207537 1.624653 -0.476548 -2.003013 -0.321680 -0.631641 -2.046586 -0.169699 0.482273 -0.371916 2.169789 -1.002868 -0.077270 1.007956 -0.650644 -2.196757 -0.639390 -1.279663 -1.383423 -0.835263 0.211899 -0.391952 -1.136196 -0.946949 0.321595 -0.704295 -1.368609 0.308856 1.501203 1.794973 -0.457464 0.678668 0.571942 1.968845 0.813057 -0.667534 0.330991 1.161639 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -7.921603 7.324557 7.586349 -3.492272 9.991290 3.621209 2.888782 3.656621 -5.310634 9.388340 -11.882176 -3.310580 -4.734218 -7.341765 -1.484679 -8.136740 0.943569 -2.292740 -1.904459 3.639125 4.493152 -7.039728 -0.168383 -5.274802 -1.590062 -10.064420 -4.881248 -0.001918 10.917392 -2.754196 0.430715 -1.096812 14.379183 1.542937 12.059056 8.606101 2.946213 10.432759 0.902926 -2.110337 -3.972816 9.848020 -7.756655 -6.587657 -0.792336 -9.139425 -4.729232 -3.358538 3.054462 -2.682098 -1.737260 8.057453 -2.149110 2.608821 -6.306582 5.468920 7.667392 1.279534 15.013325 1.572930 -3.831307 -1.881770 -8.466610 4.959585 -3.582568 3.449196 -3.295712 -5.660494 3.550050 -3.432196 -1.338114 -6.473879 -2.663287 9.255745 3.089517 -8.538399 3.726169 -4.010205 -14.615548 -11.195713 -7.786069 2.190361 2.697651 8.965694 -0.341021 0.035851 0.570551 4.318370 -0.874706 -14.806910 0.098062 11.393622 -6.703824 -2.354042 -3.363231 9.411709 -1.313122 6.485395 -7.244816 -2.430147 2.709089 0.903739 1.384151 -12.280765 2.430837 -11.592173 3.581945 -0.915397 -1.154213 3.266612 6.010596 5.585374 10.880592 11.301357 -11.614996 2.129833 -8.685643 1.855014 -1.401923 -0.629764 0.572921 4.969632 -3.065132 2.228290 11.523073 -13.457592 3.134055 3.531793 -5.643480 -12.427210 -1.535625 -11.590444 -9.178666 -2.120893 3.631853 3.883536 1.949915 -8.567448 -0.349394 -3.115937 -2.269255 -5.339479 3.978404 11.363439 -9.886266 -2.095465 -0.749106 -0.806585 -5.722682 9.488421 6.023384 5.101955 12.537094 6.329822 -3.010259 4.514822 -8.798485 -0.917863 12.328778 4.909680 -11.452772 8.286737 -7.556457 -0.682790 5.399672 5.234686 8.064927 0.972027 -11.303347 -7.462763 5.049818 -1.287983 12.593428 2.562232 4.209779 -1.777351 15.496364 -2.928266 -9.585781 10.967617 6.337234 -9.524789 3.004082 3.221660 -6.274261 -0.866382 7.610669 -8.294639 0.217752 -5.966497 -2.445532 3.279400 -4.869347 -1.242621 1.427456 -12.121216 15.631994 0.855848 5.906534 3.451930 -9.241731 -13.223210 11.577291 -1.655535 -1.948374 -5.239073 -3.349818 -8.539531 -10.975935 2.078811 0.201007 -6.542380 -5.572055 -11.103634 3.928760 5.251839 -1.591627 8.185894 -9.726238 -5.906534 3.853728 1.456017 7.784885 -2.712821 -6.586416 -2.130849 -2.109025 8.100891 -6.428520 12.574457 14.887069 -3.305952 9.936212 -3.979400 -5.146848 1.705200 4.972206 -11.420491 11.056053 -2.887171 7.517614 -0.989566 7.292028 -7.415496 -3.262444 1.697060 -1.263963 -1.583425 4.480633 -4.723112 0.288054 -1.280757 -10.190624 -2.598513 1.287999 -2.991095 -1.220322 1.068511 3.000482 -9.232736 -1.730787 -6.395089 0.880506 8.103276 0.780485 -6.653502 3.133336 -1.918902 1.962249 2.875782 -0.081743 -0.610809 6.187320 -10.128632 -5.134376 -0.340138 -1.239064 -6.528316 -13.695513 -1.767777 -8.504100 -8.005964 8.806578 -10.322866 2.408347 -8.362503 -4.353332 -11.685088 -4.105871 3.924783 15.074964 5.994888 -8.830232 1.707691 -1.701459 10.378335 0.849072 2.334155 1.135032 4.407243 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -0.620444 0.069670 0.046421 -0.394526 1.566454 0.003802 -0.025752 0.997213 0.529061 0.488527 -1.044226 -0.510397 -0.155880 -0.505966 0.189323 0.043569 0.050211 0.420559 -0.766201 -0.514709 0.508294 0.538955 -0.020988 -0.538684 -0.025702 -0.165065 -0.623992 0.037722 -0.064613 0.217422 -0.714544 0.231649 1.002694 -0.042877 0.773783 0.535957 0.998778 0.882552 -0.411430 1.070918 0.550313 0.571899 -0.389749 -0.983903 0.370283 -0.840300 -0.700982 -0.323081 0.311728 -0.870422 1.338984 0.507072 0.185394 -0.007615 0.055612 0.372339 0.217021 0.185830 0.784130 0.624838 -1.206983 0.288314 -0.730892 0.983703 -0.427981 1.523316 -0.049295 -1.370404 -1.034610 0.457767 0.991699 -0.989802 -0.910993 0.055432 -0.027636 -0.181981 0.644828 -0.060074 1.263939 -0.322422 -0.776448 0.329912 -0.391468 0.557120 -0.218098 -0.247030 -0.642993 -0.211105 0.215671 -0.621687 -0.556532 0.912136 -0.695771 0.772339 -1.141703 -0.835777 -0.244766 0.273081 -0.297589 -0.679167 0.316941 0.519468 0.055768 0.274835 -0.045897 -0.364598 0.735738 0.787812 -0.042931 0.114806 -0.045605 0.120725 0.213312 0.353503 0.116874 0.456542 -0.773018 0.461720 -0.370332 0.210590 -0.193240 0.087684 0.622312 0.002120 0.396968 -0.548800 0.727512 0.185361 -0.868113 -0.204870 0.339165 -0.484473 -0.974216 -0.063671 0.484082 0.387695 -0.228902 -0.150432 0.251942 -0.447393 -0.596121 -0.550335 -0.486408 -0.409212 -0.548067 -0.272198 -0.192657 -0.290735 -0.401545 0.717593 0.347316 0.268607 0.921217 0.489345 -0.234498 -0.659491 -0.891242 0.459362 1.179698 0.049372 -0.867187 0.275535 -0.553349 0.500243 0.609674 0.196019 -0.135502 0.793369 0.175771 0.392723 -0.666302 -0.196545 1.018336 0.953881 0.571736 -0.906563 -0.216905 -0.893635 -0.192053 1.395569 0.939387 -1.202762 -0.239744 0.631532 0.163476 -0.346557 0.200875 -0.492434 -0.480247 -0.542789 0.291027 0.419698 -0.821638 -0.609823 0.665318 -0.826629 0.908988 0.066303 -0.036681 0.009761 -1.143119 -0.112345 1.459637 0.157541 -0.160050 0.026923 -0.214416 0.022794 -0.952386 0.200450 0.602762 -0.156037 -0.536149 -0.536720 0.224349 1.074769 -0.580855 0.256689 -0.144570 -0.144994 0.300811 -0.847328 0.673784 -1.194206 -0.507871 -0.705671 -0.257914 0.631475 -0.650115 -0.257686 0.986187 -0.476467 0.688255 1.184362 -0.340326 -0.652466 0.717897 -0.169164 0.780717 -0.123393 0.063117 -0.048258 0.751722 -0.586296 -0.208086 -0.330611 0.367887 -0.375623 0.933562 -0.652724 0.088951 0.145005 -0.868408 -0.196995 0.631739 0.322319 0.242368 -0.140080 -0.256590 -0.640080 -0.077025 -0.352933 0.053008 0.726602 -0.432290 -1.030995 -0.094848 0.042088 -1.136795 -0.351375 0.319825 0.009313 1.159977 -0.645417 0.190237 0.505719 -0.092798 -1.342363 -0.431085 -0.540999 -0.536181 -0.404063 0.214829 -0.629290 -0.768689 -0.460551 0.380693 -0.518407 -0.583275 0.142449 0.883798 0.663105 -0.137686 0.549568 0.284082 0.722284 0.245865 -0.244827 0.264289 0.449900 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -3.257341 0.712561 1.571267 -2.216868 6.448902 -0.136692 1.074739 3.651624 -0.972004 3.263122 -5.800828 -1.379312 -1.851557 -4.742445 0.100458 -1.859550 1.954604 -0.144717 -1.872799 0.756248 2.066392 -0.604520 0.330867 -2.806611 -0.552073 -3.295654 -2.020954 0.314269 2.384318 -0.643414 -0.254781 0.534744 7.050950 1.354005 5.704328 3.506217 2.233416 4.860434 0.618058 -0.160790 0.309892 3.784789 -2.277636 -4.276968 -0.414259 -3.611339 -3.403459 -2.147500 1.315209 -2.747321 0.568893 3.236984 0.306647 0.911302 -3.297965 1.269566 3.384783 -0.418091 5.624337 1.840198 -4.063835 -0.321279 -2.925213 2.413896 -2.056762 2.300463 -0.332226 -2.823284 -0.295241 0.934970 0.993120 -3.660538 -2.951092 1.588677 1.534710 -3.024824 2.629474 -0.561018 -0.805394 -4.560941 -2.761499 1.535436 -0.454148 3.972837 -0.339984 -0.217376 -0.053938 0.050670 0.540147 -5.119500 -1.018933 3.895239 -3.543192 -1.030432 -3.086181 3.303454 -1.051986 1.697535 -2.622661 -3.192513 1.275533 0.289276 0.319807 -2.312995 -0.002967 -3.766490 2.101810 0.998117 -0.320620 2.254275 1.984828 2.120527 3.538857 3.308008 -3.433952 1.910734 -4.731351 1.746500 -1.991930 -0.414074 -1.229351 1.265010 1.551162 1.536518 3.655743 -5.129263 3.080943 2.933608 -2.443115 -3.385665 0.379616 -3.557864 -4.705593 -0.036818 2.309667 1.475970 1.082232 -2.406435 0.954190 -1.503672 -1.466345 -1.607811 -0.132338 2.932615 -4.077086 -1.063582 -0.258485 -0.460870 -2.225100 3.698242 1.959530 1.404269 5.388444 1.615480 -2.680806 0.648928 -4.792230 0.885498 7.256872 0.320950 -4.368324 3.117517 -2.981208 0.846733 2.284646 2.293640 2.521752 -0.980335 -3.363278 -1.125122 1.577448 -0.842906 5.482830 1.753325 2.398258 -3.616257 3.973630 -2.061308 -1.107673 5.801403 3.261393 -5.584553 0.984704 3.097639 -1.833949 -0.573370 2.076065 -2.853394 -1.231776 -3.689698 0.869178 1.577671 -3.023925 -1.363367 0.668571 -4.688816 5.120099 0.476738 0.617949 0.292825 -3.719816 -2.964407 7.139454 -0.239031 -0.052038 -0.859150 -2.077884 -2.011262 -6.184713 0.487252 0.390304 -2.246727 -0.299722 -4.018043 1.205372 3.770250 -1.895065 2.613747 -4.149412 -0.737824 2.162475 -0.212361 2.032214 -3.229614 -2.945299 -0.951169 -1.383491 2.825599 -4.119666 2.801181 5.276029 -1.702803 4.617524 0.422290 -1.445709 -0.037166 2.576519 -3.928359 5.230947 -1.280202 4.452888 0.166632 3.662161 -2.748566 -1.485639 -1.155774 -0.851881 -2.021023 2.959985 -4.074971 0.181286 1.460379 -2.803590 -2.649167 1.810993 0.285816 0.160094 -0.266519 0.178762 -4.042382 -0.225374 -3.102507 2.022568 3.344335 -1.022681 -4.486340 0.706044 2.196997 -1.618810 -0.290077 0.307875 0.159167 4.366086 -4.215317 -0.593369 1.148368 1.086865 -3.591528 -5.863130 0.803681 -3.448092 -2.536532 2.794676 -4.767102 -1.977745 -2.958225 0.204808 -4.723426 -1.409709 1.571085 5.972935 2.166484 -2.854238 0.552489 0.095802 2.682902 -0.060627 1.086150 1.061615 1.996584 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&) = -2.885957 1.993864 -0.464558 -3.218081 6.817948 -0.256622 0.466984 3.734745 0.622399 1.923166 -5.947411 -1.171943 -0.569007 -5.394745 0.810938 -0.221474 1.357741 1.746257 -2.382257 0.066970 2.318660 -0.381943 0.703738 -3.583181 -0.272125 -2.383859 -1.465608 0.190605 0.141310 1.135879 -1.085547 0.888077 5.148843 1.141825 3.234606 2.615602 2.945242 5.022012 0.807615 1.704260 2.058303 2.449786 -1.171014 -5.723098 1.546046 -3.521016 -3.459947 -2.667726 1.033276 -4.973248 2.954444 3.032783 1.207718 -0.997663 -2.997020 0.694891 4.386216 0.018275 4.051418 2.902393 -3.860352 -0.821543 -2.058633 1.181103 -2.581097 3.750110 1.686004 -4.088736 -2.632663 3.453464 2.368396 -3.220215 -4.336075 -0.818775 1.054549 -1.891889 2.727155 -0.377969 1.038718 -2.467440 -2.223670 1.811342 -1.420842 4.016659 -0.040846 -0.343514 -0.951278 -1.130878 1.750503 -3.084727 -2.376421 3.346077 -1.727192 1.064863 -3.271210 1.616373 -0.265135 -0.249441 -2.697152 -3.484250 1.693165 1.553617 0.306521 -0.069903 -2.219837 -3.633480 3.490618 3.324679 -1.255352 2.131431 1.421700 1.189991 0.701345 1.423392 -2.513318 2.172950 -5.392844 1.221575 -1.016325 0.258789 -1.219798 -0.447832 2.575348 0.399341 1.237822 -3.783331 5.182748 3.484173 -2.934560 -2.030387 1.901624 -1.537029 -3.901166 0.290200 2.282574 0.957276 0.590873 0.147064 0.706306 -2.273650 -2.422579 -2.328214 -2.244888 3.128753 -4.279627 -0.414494 -0.478619 -1.295447 -1.557056 2.036851 0.949388 -0.023537 5.019662 1.533842 -2.524975 0.848352 -3.504513 2.379737 7.803133 2.699047 -3.850105 1.638480 -1.550512 1.797153 1.741199 0.611815 0.513186 1.192329 -2.425523 -0.352254 -0.661142 -2.318053 4.444793 2.629382 2.925719 -6.001570 3.020644 -0.986586 0.581722 6.842045 3.611407 -4.826633 0.476746 4.816334 -2.213111 -0.851244 0.716911 -1.848852 -1.738017 -2.443647 1.548535 1.101446 -4.179744 -4.148164 -0.461520 -4.041519 3.845549 1.027080 0.136277 -0.860975 -3.811656 -0.210682 7.236159 0.209102 -0.828388 0.246775 -1.545014 -1.291222 -5.630372 0.709226 2.416762 -2.381418 -0.920389 -2.475200 -0.021993 4.758177 -3.445095 -0.071015 -3.252359 0.040076 2.026740 -0.728841 1.864316 -4.779719 -2.624227 -0.425300 -0.619223 2.209568 -2.479470 1.022488 3.960109 -2.379760 3.234907 2.603112 -0.100858 0.227287 3.844622 -1.033285 4.531460 -1.203487 5.020013 0.502339 4.191188 -2.509437 -0.610260 -1.497012 -1.025540 -1.989145 4.214397 -5.011334 -0.092066 2.997945 -1.257871 -3.273689 3.547018 2.088286 1.721502 -1.205606 -0.550278 -1.593627 0.124219 -1.033365 1.420224 3.182669 -1.492082 -5.010053 -1.562431 3.592757 -2.815159 -1.368471 1.862608 0.670497 5.551358 -3.441787 2.616072 1.172464 0.085044 -5.354995 -3.984541 1.571207 -2.438896 -1.471813 2.160036 -5.455000 -2.979224 -2.172652 2.632355 -3.713247 -0.077131 0.325475 4.097486 1.432300 -0.962073 1.969185 0.856178 2.057163 -0.000296 0.402904 0.907436 2.826013 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = -1.207977 1.167133 0.594821 -1.167249 2.279915 -0.145953 0.259641 0.747542 0.955985 0.661830 -2.490535 -0.992021 -0.354747 -1.669864 0.331752 -0.592450 0.089288 1.103564 -0.824310 -0.075874 1.056639 -0.068547 0.036636 -1.588888 0.033075 -0.698625 -0.962368 -0.089299 -0.545694 0.803020 -0.180074 0.502320 1.685263 0.678424 1.196237 1.262664 0.622308 2.453557 -0.162133 2.153510 0.907390 1.075753 -0.446114 -2.645156 1.141978 -1.439889 -0.852988 -1.597232 0.245988 -2.162711 2.320869 1.055156 0.427919 -0.538900 -1.052163 -0.119558 1.628324 1.032761 1.396301 1.280469 -1.430852 0.924091 -1.115148 -0.085027 -1.070486 2.082646 1.069324 -2.092118 -1.037775 1.166441 1.987613 -1.381571 -1.996138 -0.412144 -0.064426 -0.431183 0.932218 -0.233097 -0.299448 -0.298519 -1.103138 0.503749 -0.335750 1.425962 -0.276169 -0.439366 -1.195152 -0.481229 0.925618 -0.797335 -1.448057 1.529832 -0.275491 1.107241 -1.073096 0.085667 0.299402 -0.118958 -0.742283 -0.760897 0.723492 0.861749 0.153199 1.187551 -1.950589 -1.344328 1.959021 1.689750 -1.020750 0.174185 0.446196 0.601121 0.191601 0.197168 -0.896591 1.388630 -1.904320 0.528669 -0.125715 0.135467 -0.063678 -0.177153 0.184189 -0.374532 0.247083 -0.983682 1.982600 1.005722 -1.316031 -0.568824 0.916062 -0.535079 -1.552273 -0.140359 0.837997 0.883554 -0.120089 0.268255 -0.360683 -1.122788 -0.433015 -1.390874 -0.906680 1.121757 -0.695897 -0.256001 -0.414350 -0.802401 -0.707837 0.574460 0.142025 0.037227 1.678548 0.873889 -0.577315 -1.128415 -1.215662 0.740770 2.762153 0.997587 -1.528876 0.274577 0.217760 0.863749 0.896491 -0.072444 -0.050216 0.973382 -0.602605 -0.265571 -1.412539 -1.336548 1.491649 2.047987 1.130202 -2.166072 1.117207 -0.332749 -0.149673 2.688959 1.452174 -1.558521 -0.588638 1.803500 -1.144018 -0.902929 0.219071 -0.068793 -0.493706 -0.616578 0.490640 0.155670 -1.656259 -1.971291 -0.115786 -1.686295 1.519980 0.391004 0.631357 -0.495446 -1.728248 -0.710208 2.779659 0.136839 -0.532816 0.236428 -0.295177 -0.016742 -1.985645 0.438766 1.261580 -0.777694 -1.008566 -0.804499 0.530389 1.774381 -1.736379 -0.224989 0.660710 -0.702479 0.571568 -0.995636 0.835189 -2.467442 -1.090059 -0.481549 0.111817 1.134741 -0.015382 0.166717 2.026312 -0.813929 0.757765 2.472858 0.358594 -0.226297 1.947973 -0.099178 1.396078 -0.992332 1.204096 0.003185 1.524113 -0.737944 -0.498198 -0.143157 0.138961 -0.596189 1.850097 -1.577693 0.183243 0.921349 -1.123293 -0.370420 1.720346 0.814821 0.905049 -0.514215 0.229203 -0.852601 0.168333 -0.098885 0.041227 1.371038 -0.172902 -2.116654 -0.812487 0.867251 -1.495489 -0.947565 0.786249 0.059282 2.068034 -1.165808 1.239124 0.442347 -0.778947 -2.157853 -0.841993 0.288648 -1.340497 -0.991850 0.764407 -1.663971 -0.944170 -0.820821 1.154394 -1.038818 -0.382883 -0.306571 1.245993 1.068422 0.075064 0.884313 0.351410 1.221828 0.243238 -0.477966 0.257935 1.668298 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -1.346803 1.278372 0.516623 -1.300362 2.755201 -0.077318 0.309484 0.929720 0.799736 0.781591 -2.803784 -0.945661 -0.338954 -1.968288 0.406040 -0.488219 0.138490 1.107640 -0.915239 -0.115073 1.148143 -0.160324 0.072676 -1.774630 0.045434 -0.890979 -1.013346 -0.084850 -0.396181 0.894496 -0.334900 0.527726 1.847733 0.666304 1.233201 1.359347 0.827589 2.616161 -0.162743 2.052777 1.022409 1.171657 -0.509773 -2.904424 1.220222 -1.640628 -1.092903 -1.683057 0.305522 -2.399565 2.329970 1.230332 0.460427 -0.640369 -1.198730 0.004552 1.919791 0.918820 1.599917 1.420496 -1.600534 0.697192 -1.200947 0.069532 -1.152482 2.254287 1.129714 -2.334409 -1.188565 1.383696 1.983275 -1.486721 -2.172213 -0.435782 0.020033 -0.536662 1.039913 -0.256972 -0.252588 -0.463238 -1.205282 0.584223 -0.440066 1.672412 -0.232166 -0.470448 -1.148609 -0.563522 1.040860 -0.962615 -1.597939 1.737007 -0.344591 1.158112 -1.300865 0.161555 0.334979 -0.146892 -0.873054 -0.949110 0.788909 0.985402 0.162636 1.002289 -1.978092 -1.610810 2.092932 1.811233 -1.004607 0.318332 0.484188 0.565932 0.139961 0.263048 -1.050165 1.420356 -2.110248 0.554951 -0.114145 0.172451 -0.193916 -0.224468 0.384600 -0.380922 0.330906 -1.202067 2.244146 1.162452 -1.449357 -0.702835 0.984325 -0.618297 -1.743069 -0.057441 0.920842 0.884409 -0.089454 0.318478 -0.276895 -1.212606 -0.691084 -1.453211 -1.028127 1.391314 -1.053603 -0.260176 -0.433858 -0.837666 -0.794295 0.677411 0.222993 0.072916 1.916370 0.977782 -0.678026 -0.862818 -1.395350 0.958472 3.225234 1.221840 -1.733680 0.335059 0.038646 0.988632 0.962094 -0.100221 -0.029635 1.083787 -0.756832 -0.233615 -1.323015 -1.448459 1.711698 2.195702 1.318939 -2.490572 1.274023 -0.413627 -0.101874 2.960614 1.648387 -1.870599 -0.374386 2.099793 -1.264091 -0.834720 0.254933 -0.223203 -0.602983 -0.782282 0.564415 0.252158 -1.902940 -2.173300 -0.199508 -1.869958 1.752756 0.481102 0.693021 -0.497016 -1.816943 -0.684887 3.088716 0.149323 -0.551751 0.211131 -0.356546 -0.272784 -2.235509 0.459732 1.381233 -0.983656 -1.096684 -0.975053 0.424172 2.073274 -1.901025 -0.204384 0.320412 -0.570692 0.654663 -0.889700 0.958684 -2.658162 -1.230232 -0.508407 0.036808 1.202552 -0.221309 0.227914 2.154083 -0.969082 0.990166 2.446952 0.353959 -0.189315 2.104996 -0.088354 1.592530 -0.949138 1.575604 0.040033 1.790174 -0.887947 -0.470679 -0.240675 0.007951 -0.683343 2.095305 -1.878153 0.160823 1.183016 -1.163629 -0.652537 1.907937 0.921924 1.092468 -0.612161 0.125300 -0.864505 0.158866 -0.159046 0.139900 1.509861 -0.354932 -2.334025 -0.938727 1.061160 -1.648549 -1.032178 0.932080 0.100329 2.345646 -1.341169 1.392420 0.485057 -0.734274 -2.477201 -1.068405 0.338844 -1.402632 -1.106466 0.960810 -2.039545 -1.064613 -0.941570 1.255265 -1.327862 -0.431125 -0.338212 1.469646 1.027794 0.091182 1.029521 0.424292 1.258149 0.170330 -0.389525 0.314901 1.719988 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = -0.294269 0.220536 -0.034840 -0.215419 0.639473 -0.026446 -0.077428 0.415561 0.193380 0.302051 -0.514785 -0.161525 -0.032294 -0.408680 0.085277 0.086105 0.051869 0.221143 -0.177090 -0.119276 0.212851 -0.016791 0.012530 -0.280684 -0.023077 -0.320624 -0.172374 0.028868 0.057906 0.089545 -0.241621 0.106454 0.484761 0.058045 0.360636 0.302889 0.273198 0.427047 0.107989 0.313572 0.175318 0.250675 -0.166770 -0.514082 0.166383 -0.339110 -0.231511 -0.248468 0.119580 -0.402574 0.506472 0.259102 0.049116 -0.045613 -0.215339 0.089890 0.237433 0.136371 0.431683 0.246085 -0.373704 -0.001557 -0.255413 0.350253 -0.284818 0.369116 0.066903 -0.520288 -0.223377 0.253652 0.275531 -0.254920 -0.278735 0.046941 0.002420 -0.186816 0.240076 -0.051302 0.206890 -0.185019 -0.306037 0.176212 -0.150723 0.357459 -0.032039 -0.059104 -0.269230 -0.047502 0.132485 -0.322707 -0.222413 0.347464 -0.215028 0.222373 -0.179562 0.037831 0.098148 0.036476 -0.055769 -0.230664 0.143168 0.149148 0.050122 0.105677 -0.057680 -0.275149 0.381510 0.244149 -0.062687 0.146504 0.130840 0.112287 0.119157 0.185307 -0.113753 0.103769 -0.451611 0.176412 -0.056997 0.032929 -0.074326 0.017613 0.218517 -0.018000 0.203312 -0.351735 0.377119 0.200294 -0.198207 -0.173830 0.142421 -0.193615 -0.369539 -0.034643 0.209874 0.135545 -0.030781 -0.040290 0.039704 -0.172013 -0.317075 -0.227976 -0.187218 0.238387 -0.346159 -0.049284 -0.070029 -0.133946 -0.158720 0.219838 0.132910 0.127160 0.450604 0.238795 -0.139795 -0.145269 -0.400603 0.197631 0.657471 0.112923 -0.378801 0.181882 -0.179637 0.119105 0.238273 0.106074 0.047922 0.245190 -0.102015 -0.017556 -0.185455 -0.146974 0.446099 0.309577 0.265834 -0.388601 0.218584 -0.093437 -0.092579 0.678186 0.285981 -0.490572 0.023337 0.381296 -0.233728 -0.056609 0.112524 -0.179840 -0.092134 -0.262725 0.100589 0.196656 -0.410970 -0.320404 0.068400 -0.401205 0.451482 0.064135 0.114894 0.019081 -0.416144 0.045496 0.681599 0.108271 -0.047637 -0.034273 -0.143554 -0.203168 -0.471334 0.054057 0.225216 -0.220435 -0.138329 -0.280060 0.002118 0.469816 -0.264668 0.066932 -0.239716 -0.022638 0.179024 -0.163108 0.148736 -0.431991 -0.231939 -0.104202 -0.091966 0.239809 -0.215401 0.132694 0.438753 -0.206790 0.311308 0.454760 0.043136 -0.024544 0.327942 -0.158586 0.400488 -0.151118 0.134908 0.072391 0.349205 -0.251362 -0.075806 -0.124506 -0.007352 -0.172687 0.366432 -0.376202 0.002652 0.237678 -0.309105 -0.183140 0.268454 0.174563 0.263617 -0.075803 -0.089497 -0.260918 -0.005333 -0.151750 0.077509 0.304976 -0.079313 -0.450941 -0.033995 0.163803 -0.323407 -0.254061 0.147073 0.024418 0.471303 -0.342244 0.172424 0.168073 0.007755 -0.524046 -0.262840 -0.052467 -0.196167 -0.209109 0.163556 -0.526102 -0.272234 -0.218036 0.161225 -0.394937 -0.046224 -0.003456 0.450661 0.181364 -0.106796 0.221113 0.057131 0.244383 0.089949 -0.038109 0.047250 0.289261 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -1.184899 0.569211 0.354005 -0.651515 2.427265 -0.042963 0.502117 0.963474 -0.224511 1.224432 -1.864482 -0.654205 -0.436873 -1.398809 0.147317 -0.424547 0.419024 0.230034 -0.656543 0.007361 0.667373 -0.351361 0.042515 -0.844009 -0.212542 -1.372561 -0.768213 0.236321 1.081608 -0.364245 -0.421211 0.232520 2.255036 -0.060585 1.763295 1.190620 0.926936 1.437369 0.045374 -0.366399 0.337530 1.181871 -0.866843 -1.398060 -0.070020 -1.154153 -1.308750 -0.661849 0.607141 -0.889212 0.207593 1.119947 0.003463 0.194051 -0.839179 0.907362 1.260143 -0.034260 1.981393 0.598455 -1.122129 0.080436 -1.120030 1.470066 -0.773360 0.869585 -0.680865 -1.665043 -0.482809 0.487350 0.111217 -1.118114 -0.909071 0.695545 0.571644 -1.036794 0.821848 -0.231096 -0.003931 -1.713070 -1.229374 0.527863 -0.272524 1.378971 -0.111393 -0.110906 0.009315 0.067828 0.149097 -1.748166 -0.440783 1.525768 -1.213083 -0.071851 -0.586748 0.580804 0.040463 0.489092 -0.849093 -1.242050 0.369927 0.026823 0.160052 -0.673565 0.686045 -1.064835 0.338206 0.397796 0.164360 0.955846 0.629933 0.651975 1.038963 1.118494 -1.097393 0.100321 -1.480222 0.679100 -0.708460 -0.021792 -0.263306 0.464625 0.689590 0.486959 1.372194 -1.834048 0.999547 0.621088 -0.712944 -1.082954 0.092897 -1.093996 -1.498839 -0.183939 0.749482 0.430609 0.172351 -0.709638 0.385170 -0.370273 -0.610093 -0.244010 -0.122780 0.947290 -1.745987 -0.242931 -0.127105 -0.241084 -0.712974 1.281604 0.848438 0.676936 1.884883 0.927025 -0.771482 0.447314 -1.738499 0.491139 2.350472 0.011210 -1.520453 1.094692 -1.324729 0.187461 0.949076 0.804782 0.647359 0.213044 -0.955392 -0.304858 0.285479 -0.195527 1.970109 0.478757 0.655030 -1.304330 1.282057 -0.623977 -0.672315 2.274300 1.065281 -2.124522 0.633491 1.100326 -0.931655 -0.272084 0.805288 -1.347602 -0.558834 -1.272286 0.264562 0.758020 -1.103656 -0.459376 0.462210 -1.604624 1.838765 0.105671 -0.111990 0.382989 -1.289356 -0.980959 2.420159 0.152283 0.012090 -0.504839 -0.692958 -0.749790 -1.961233 0.159256 0.176166 -0.860878 -0.482218 -1.444413 0.238616 1.529567 -0.595630 0.987213 -1.741146 -0.041016 0.711050 0.193825 0.775946 -0.907858 -0.898492 -0.296505 -0.593598 0.602371 -1.396988 0.926278 1.731738 -0.811828 1.351791 0.056280 -1.086422 0.072396 0.844455 -1.244230 1.739452 -0.202057 1.197683 0.129690 1.205261 -1.138939 -0.378185 -0.303955 -0.307765 -0.841981 1.017187 -1.302864 0.003204 0.503125 -1.128110 -1.062852 0.588268 0.271840 0.361008 -0.066102 -0.196128 -1.358389 -0.017160 -0.778611 0.398151 1.118128 -0.298737 -1.453787 0.373166 0.455305 -0.609485 -0.498803 0.190170 0.085700 1.441699 -1.467494 -0.074837 0.401587 0.420553 -1.539240 -1.895386 -0.039562 -1.260920 -0.874279 0.994664 -1.722756 -0.564291 -1.049365 0.080050 -1.587737 -0.651406 0.637489 2.155060 0.641279 -0.998559 0.607265 -0.001047 1.080862 0.052855 0.250318 0.226027 0.606398 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.825372 0.256482 0.140123 -0.439724 1.930710 0.004120 0.096833 1.237756 0.220201 0.635194 -1.340601 -0.519754 -0.350648 -0.978270 0.270470 -0.036103 0.236024 0.480719 -0.746128 -0.429079 0.712778 0.249402 -0.020955 -0.743903 0.048034 -0.494877 -0.617407 -0.019782 0.170622 0.416368 -0.691331 0.357730 1.336081 0.160247 0.950414 0.745903 1.064720 1.236109 -0.279784 0.949067 0.407041 0.836751 -0.499712 -1.426175 0.573188 -1.085042 -0.804748 -0.502074 0.370819 -1.140325 1.179647 0.761663 0.154608 0.020840 -0.214965 0.322147 0.648989 0.213333 1.075416 0.798841 -1.285884 -0.065520 -0.820926 0.863576 -0.516486 1.480124 0.135566 -1.568389 -0.941939 0.503603 0.875438 -1.007248 -0.977294 0.138518 0.087373 -0.323747 0.786328 -0.014300 0.721356 -0.493572 -1.069197 0.301972 -0.465621 0.959535 -0.228857 -0.311884 -0.527476 -0.302740 0.375170 -0.915837 -0.610647 1.172573 -0.738331 0.787278 -1.311663 -0.497024 -0.184951 0.360109 -0.514017 -0.822167 0.412516 0.559975 0.114923 0.060971 -0.389613 -0.711543 0.969696 0.696890 -0.053839 0.389223 0.201764 0.133140 0.220788 0.510194 -0.325851 0.614321 -1.041674 0.592750 -0.335124 0.231656 -0.218289 0.091239 0.699843 -0.113635 0.532130 -0.920268 0.912695 0.475373 -0.879512 -0.495284 0.425013 -0.746848 -1.189889 -0.124288 0.739760 0.389707 -0.195500 -0.208101 0.234743 -0.525459 -0.810676 -0.700021 -0.668152 0.158804 -1.016085 -0.297094 -0.313009 -0.456299 -0.509794 0.751414 0.343582 0.420598 1.144876 0.688702 -0.477146 -0.296396 -1.118490 0.602570 1.769144 0.425012 -1.147364 0.352179 -0.606883 0.615486 0.729692 0.157357 0.124877 0.811525 -0.076297 0.303169 -0.516669 -0.291171 1.286315 1.228285 0.840348 -1.271781 0.169919 -0.825844 -0.320294 1.729418 1.075777 -1.481634 0.035727 0.876319 -0.258024 -0.256321 0.193974 -0.635397 -0.471472 -0.813017 0.354826 0.555958 -1.201347 -0.781656 0.563214 -1.133124 1.191958 0.175140 0.314338 0.050824 -1.346832 -0.282627 1.868567 0.169266 -0.189778 -0.130039 -0.388576 -0.420949 -1.246667 0.298280 0.580056 -0.376682 -0.682258 -0.793732 0.075236 1.415676 -0.638790 0.306042 -0.512246 -0.051324 0.394562 -0.701752 0.811037 -1.473186 -0.778108 -0.604091 -0.333004 0.844166 -0.691653 -0.046296 1.227141 -0.674966 0.922388 1.123215 -0.250510 -0.455932 0.871046 -0.308398 0.987371 -0.239997 0.643142 -0.035864 1.076030 -0.799796 -0.245692 -0.323028 0.246799 -0.489802 1.204527 -0.911923 0.102845 0.469261 -1.031233 -0.472425 0.745158 0.311128 0.513061 -0.201829 -0.270104 -0.776851 -0.025862 -0.394554 0.187897 1.000746 -0.490174 -1.254723 -0.229283 0.126925 -1.124562 -0.503553 0.499041 -0.011700 1.410518 -0.900460 0.239783 0.472538 -0.147889 -1.479468 -0.820868 -0.379295 -0.689855 -0.660761 0.616419 -1.138103 -0.627467 -0.644519 0.431640 -1.003816 -0.533319 -0.037233 1.174253 0.577588 -0.119531 0.721388 0.387164 0.825710 0.136342 -0.090899 0.273345 0.704117 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = -1.138408 0.638246 0.174343 -1.194214 2.923331 -0.423225 0.044231 1.471253 0.654586 0.795210 -2.263525 -0.388310 -0.150786 -1.984657 0.386281 -0.331157 0.541970 0.875341 -0.876550 0.030514 0.835191 -0.074347 0.130383 -1.338521 -0.117336 -1.109347 -0.574485 0.193921 -0.202090 0.466352 -0.253365 0.658729 1.921739 0.448997 1.376708 1.142099 1.053170 1.975205 0.135230 1.070635 1.098242 0.685478 -0.200842 -2.255622 0.669773 -1.112454 -1.522655 -1.088313 0.332323 -2.102913 1.225763 1.191564 0.405564 -0.355568 -1.112353 0.364504 1.527149 0.282010 1.416624 1.167911 -1.835101 -0.031715 -0.970528 0.517001 -1.004569 1.296985 0.575780 -1.916504 -0.907308 1.656034 0.971240 -1.179955 -1.523636 -0.363813 0.439255 -0.641605 1.031868 -0.027935 0.427051 -0.660183 -0.717680 0.685417 -0.354122 1.355153 -0.050646 -0.054505 -0.446016 -0.573325 0.605768 -1.081027 -0.986884 1.379367 -0.885279 0.618605 -1.347782 0.551566 0.367841 -0.292833 -0.796066 -1.490195 0.669932 0.343112 0.086203 0.352137 -1.169581 -1.290556 1.479995 1.224590 -0.373787 0.812071 0.037183 0.622833 0.228619 0.381017 -0.993803 1.110710 -2.006485 0.610737 -0.486921 0.030565 -0.481585 -0.317342 0.979189 0.430422 0.449889 -1.338470 2.083417 1.195976 -0.895898 -0.662738 0.728577 -0.455585 -1.351369 -0.034352 0.960057 0.422116 0.230947 0.237217 0.168923 -0.800082 -0.727746 -0.952650 -0.924135 1.140366 -1.274969 -0.026843 -0.163004 -0.472335 -0.658069 0.585764 0.490550 0.053473 1.809501 0.541819 -0.801355 0.033134 -1.497437 0.849372 2.972713 0.713140 -1.450102 0.773380 -0.452286 0.678105 0.575555 0.253825 0.132457 0.450142 -0.800805 -0.210711 -0.519201 -0.855253 1.549083 1.264227 0.858038 -2.444585 0.921691 -0.570660 0.223371 2.752294 1.429823 -2.103044 0.067291 2.058673 -1.188656 -0.556738 0.299451 -0.605929 -0.620247 -0.882967 0.790743 0.402131 -1.659837 -1.533893 0.016950 -1.541747 1.264055 0.360695 0.196457 -0.493415 -1.323013 -0.445581 3.005675 0.102663 -0.198269 0.277725 -0.700578 -0.345330 -2.196503 -0.022824 0.927669 -0.895631 -0.309318 -0.851514 -0.061941 1.965226 -1.502235 0.083537 -1.012108 -0.000428 0.807109 -0.424938 0.411267 -1.857084 -1.012271 -0.321395 -0.292081 0.628163 -0.861674 0.158953 1.515234 -0.738643 1.365226 1.112306 -0.398138 0.142939 1.479178 -0.431510 1.792266 -0.456274 1.753888 0.417649 1.539941 -1.016965 -0.348325 -0.588607 -0.482285 -1.046798 1.750972 -1.960096 0.034594 1.259047 -0.544057 -1.256193 1.422589 1.010868 0.856068 -0.461393 -0.074201 -0.758899 -0.013670 -0.567864 0.696414 0.976699 -0.581131 -1.800322 -0.451798 1.560869 -1.317440 -0.956816 0.755447 0.281646 2.127699 -1.310081 1.182051 0.681577 -0.053906 -2.028088 -1.409318 0.553359 -1.323141 -0.736626 0.395869 -2.324862 -1.295877 -0.681922 1.192681 -1.229665 -0.190185 0.173363 1.788397 0.666607 -0.331834 0.911692 0.189425 0.539196 -0.012467 0.214901 0.208784 1.220660 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -0.977519 1.292036 1.594512 -1.110618 1.432357 -0.195587 0.141593 1.088987 0.634275 0.498994 -2.253757 -0.628835 -0.309564 -1.487730 0.232489 -1.327825 0.205042 0.610617 -0.456080 0.624801 0.854545 -0.379892 -0.208793 -1.438177 -0.079321 -0.693497 -0.581067 -0.112994 -0.320750 0.641583 0.758615 0.554392 1.806176 1.004629 1.749186 1.174309 0.467125 2.233999 0.215069 1.708551 0.375849 0.948640 -0.301999 -2.020645 0.718428 -1.070903 -0.420671 -1.062982 -0.099213 -1.590748 1.724696 0.993018 0.261769 -0.231262 -1.113494 -0.143456 1.112953 0.781464 1.258377 1.011489 -1.441675 0.385448 -1.145090 -0.167203 -0.865763 1.364593 0.813430 -1.033659 0.016355 0.692011 1.351857 -0.789497 -1.354032 -0.000846 0.074522 -0.539550 1.040417 -0.249846 -1.113394 -0.133662 -0.686576 0.687839 0.285144 1.191425 -0.251358 -0.094597 -0.825258 -0.165130 0.427940 -1.040898 -0.827250 1.096603 -0.829283 0.329043 -1.114661 0.947279 0.001274 0.207633 -0.746608 -0.812300 0.987460 0.346334 0.028143 0.268486 -1.609719 -1.516009 1.954352 1.368251 -0.962635 0.658642 0.518395 1.402081 0.920883 0.542619 -1.154044 1.366304 -1.675582 0.252128 -0.071466 -0.163387 0.016268 -0.051038 -0.397766 0.253044 0.380573 -1.073700 1.594693 1.291972 -0.951117 -0.460746 0.551236 -0.961083 -1.338742 -0.520877 0.779753 1.036374 0.173903 -0.019098 -0.619883 -0.886147 0.000676 -1.834024 -0.507240 1.254498 -0.609482 -0.325385 -0.210402 -0.421350 -0.803118 0.707305 0.307694 -0.070349 1.133610 0.323004 -0.523159 -1.131510 -0.883341 0.167985 2.237596 0.454752 -1.512154 0.786017 -0.038430 0.363811 0.535725 0.140466 0.370561 0.256209 -1.286830 -1.206052 -0.665864 -1.146174 1.273918 1.442723 0.506045 -1.847441 1.806577 -0.447085 -0.725697 2.476368 0.948100 -1.005050 -1.356198 1.401239 -1.508259 -0.918742 0.373328 -0.216184 -0.108685 -0.442790 0.224658 -0.042774 -1.149562 -1.421949 0.002439 -1.712983 1.409766 0.384502 0.963080 -1.069243 -1.266738 -1.594262 2.737997 -0.126606 -0.576612 0.162608 -0.320552 0.201239 -1.816381 0.128838 0.892010 -0.358431 -0.651285 -0.710727 0.557810 0.978732 -1.581672 -0.098339 0.127961 -1.249108 0.564627 -1.145044 0.324479 -1.724381 -1.143740 -0.419793 0.073843 1.128127 -0.094842 0.846040 2.103001 -0.250278 1.349814 1.821090 -0.360718 -0.091221 1.645331 -0.584197 1.543589 -1.355010 0.875173 0.107276 1.304240 -1.067387 -0.869473 -0.029874 -0.283909 -0.708883 1.314160 -1.106776 0.377245 -0.000700 -0.999661 -0.204635 1.318662 0.261866 0.392838 -0.317344 0.721981 -0.762773 -0.177285 -0.538201 0.319194 1.086201 -0.057473 -1.415877 -0.376303 0.789867 -0.665186 -0.500573 0.464038 -0.020654 1.738487 -1.160225 0.773753 0.420691 -0.778511 -1.511550 -1.126006 0.460533 -1.598227 -0.870573 0.321499 -1.637552 -0.520013 -0.717660 0.701322 -0.725998 -0.160299 0.232414 1.507513 0.926415 -0.851567 0.483321 -0.096374 1.183368 0.532498 -0.049311 -0.055234 1.414153 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.365551 0.157108 -0.244343 -0.272073 1.168030 -0.060980 -0.061861 0.636332 -0.012496 0.418680 -0.633850 0.001202 -0.014756 -0.669966 0.197524 0.306753 0.183347 0.220383 -0.256909 -0.239747 0.227393 -0.020928 0.087006 -0.319296 -0.043506 -0.556826 -0.129345 0.107180 0.215707 0.104597 -0.483134 0.206824 0.609159 -0.079139 0.289099 0.319882 0.560119 0.433378 0.163304 -0.035946 0.370946 0.200124 -0.162867 -0.638408 0.181325 -0.398387 -0.550441 -0.202023 0.231698 -0.542900 0.322497 0.399459 0.081409 -0.133775 -0.340212 0.311218 0.395823 -0.120397 0.556269 0.333916 -0.542736 -0.406207 -0.262426 0.683811 -0.376175 0.380885 -0.044000 -0.745788 -0.426505 0.582810 0.084433 -0.278866 -0.379468 -0.026584 0.135713 -0.292111 0.282004 0.028032 0.503494 -0.329951 -0.398579 0.275072 -0.305047 0.536527 0.072657 -0.029136 -0.107503 -0.150671 0.214701 -0.436014 -0.277857 0.488127 -0.315604 0.247740 -0.408986 0.036697 0.152288 -0.110406 -0.112022 -0.510883 0.150632 0.132101 0.081481 -0.188105 0.105868 -0.434301 0.364654 0.255580 0.121799 0.330752 0.092810 -0.033533 -0.033463 0.188653 -0.139632 -0.034321 -0.641930 0.241247 -0.046157 0.020898 -0.315825 -0.038245 0.532277 0.039878 0.287105 -0.593644 0.591181 0.267772 -0.233427 -0.234284 0.171484 -0.095116 -0.429167 0.074666 0.340565 -0.017085 -0.001408 0.085635 0.260674 -0.137334 -0.628697 -0.110665 -0.340031 0.434667 -0.739667 0.028381 -0.076647 -0.167713 -0.168273 0.257427 0.234336 0.232736 0.617660 0.327088 -0.251900 0.308250 -0.655373 0.459859 0.999452 0.260503 -0.487734 0.279401 -0.471425 0.201940 0.225463 0.142280 0.039478 0.301553 -0.129700 0.119160 0.004619 -0.086663 0.612813 0.293715 0.392241 -0.669092 0.119505 -0.209965 0.126710 0.819279 0.419205 -0.831833 0.395375 0.716055 -0.275726 0.040006 0.141009 -0.444635 -0.239270 -0.473910 0.231939 0.419538 -0.661349 -0.364142 0.031353 -0.440026 0.528299 0.111462 -0.014623 0.105176 -0.416418 0.184465 0.875497 0.121505 0.079410 -0.086854 -0.327858 -0.497441 -0.682064 0.013523 0.300160 -0.390984 -0.097761 -0.418235 -0.274403 0.783885 -0.284022 0.142764 -0.800338 0.342976 0.300700 0.111446 0.176401 -0.432339 -0.261561 -0.014934 -0.249348 0.132284 -0.530161 0.085023 0.294936 -0.394194 0.567012 0.202439 -0.071881 0.061529 0.313624 -0.130753 0.567594 0.056797 0.500344 0.193612 0.529125 -0.373853 0.055931 -0.284131 -0.199127 -0.332005 0.512835 -0.705558 -0.097852 0.563240 -0.207152 -0.619130 0.324260 0.391004 0.453350 -0.162644 -0.296669 -0.142344 -0.038833 -0.238642 0.300882 0.327391 -0.346325 -0.514471 -0.039828 0.444564 -0.524319 -0.350487 0.292097 0.128860 0.684143 -0.496041 0.319389 0.222717 0.235442 -0.808176 -0.500904 0.010598 -0.161759 -0.224383 0.268885 -0.942142 -0.479895 -0.254111 0.321912 -0.639768 -0.035285 -0.002084 0.639693 -0.012102 -0.034677 0.395344 0.137879 0.044060 -0.071768 0.092367 0.119031 0.216439 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.250932 -0.075804 -0.609462 -0.113942 0.696487 -0.024896 -0.231288 0.340430 0.131427 0.302296 -0.331651 -0.186911 -0.072375 -0.496844 0.118012 0.608423 0.205494 0.155248 -0.179929 -0.237169 0.179615 -0.120246 0.150149 -0.164554 0.018233 -0.149104 -0.068588 0.083890 0.204701 -0.090028 -0.622483 0.094632 0.380667 -0.008968 0.136099 0.114418 0.307561 0.323714 0.215847 -0.187508 0.164422 0.208303 -0.123835 -0.462903 0.241551 -0.332092 -0.242591 -0.147115 0.231323 -0.192520 0.501135 0.264618 0.017387 -0.110529 -0.317089 0.040519 0.291327 0.053584 0.456998 0.176407 -0.220678 -0.277252 -0.094942 0.387692 -0.320398 0.201364 0.046552 -0.475795 -0.328591 0.312885 0.156941 -0.294352 -0.347364 -0.001396 0.046743 -0.179172 0.215683 0.050234 0.704461 -0.365729 -0.455175 0.105104 -0.418153 0.390769 -0.006345 -0.008301 -0.168193 -0.094130 0.166237 -0.304742 -0.109760 0.101459 -0.180544 0.339462 0.040806 0.065874 -0.043047 -0.085203 -0.189943 -0.210864 0.020217 0.088598 0.096392 0.095897 0.313454 -0.173498 0.380245 0.057265 0.162558 0.054240 0.528470 -0.185989 -0.044758 0.154267 0.005539 -0.286177 -0.374993 0.053252 0.126468 0.048113 -0.204497 0.086302 0.411940 -0.229344 0.232863 -0.460819 0.354377 0.156914 -0.100449 -0.129204 0.125893 -0.053344 -0.268814 0.081368 0.284904 -0.135708 -0.049506 0.028170 0.195439 -0.054242 -0.728000 0.220660 -0.258464 0.325491 -0.439850 0.036124 -0.092913 -0.277343 -0.005333 0.098758 0.102573 0.204607 0.389048 0.263891 -0.280582 0.122429 -0.427934 0.417063 0.692936 0.089411 -0.373787 0.119482 -0.295861 0.223717 0.228793 0.122159 0.154043 0.040065 0.183830 0.302879 0.075593 0.069214 0.391293 -0.042307 0.442064 -0.324816 -0.054310 0.177682 0.198415 0.635156 0.049091 -0.543292 0.351282 0.428483 -0.064876 0.257820 0.023007 -0.157930 -0.058118 -0.444183 0.242392 0.349514 -0.512927 -0.247184 -0.045413 -0.290029 0.386674 0.049776 -0.042545 0.237066 -0.411446 0.587154 0.583211 0.112007 0.064211 -0.092553 -0.288913 -0.339234 -0.437976 0.050028 0.092427 -0.269942 0.011493 -0.297674 -0.239144 0.645757 -0.025325 0.028268 -0.582400 0.393041 0.188237 0.065053 0.105346 -0.157937 -0.168551 0.178447 -0.171265 0.123782 -0.332141 -0.033433 0.095445 -0.375961 0.198947 0.278253 0.370452 0.133249 0.139179 -0.049530 0.353827 0.012202 0.322055 0.031231 0.372559 -0.161126 0.142689 -0.187431 0.086329 -0.175367 0.290815 -0.446459 -0.123289 0.490597 -0.079129 -0.495263 0.137173 0.240648 0.447940 -0.048429 -0.410645 -0.014404 0.008967 -0.008672 0.240788 0.232682 -0.136858 -0.307545 -0.070911 0.231899 -0.219294 -0.093338 0.234305 0.011539 0.510009 -0.338196 0.145343 0.124950 0.229416 -0.340094 -0.230186 -0.096076 0.139367 0.066026 0.464832 -0.693038 -0.286083 -0.160427 0.213697 -0.327922 0.339560 -0.220310 0.388087 0.066933 -0.018715 0.313443 0.157342 -0.023472 -0.079398 -0.057430 0.101726 0.155117 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -1.216534 0.645730 -0.373138 -0.847179 3.140829 0.127520 0.331092 1.273743 -0.617931 1.157525 -2.133678 -0.326815 -0.349448 -2.076986 0.383196 0.225729 0.559360 0.344079 -0.732883 -0.139726 0.789815 -0.613409 0.294137 -1.149792 -0.030540 -1.495036 -0.535017 0.169885 1.078312 0.292579 -0.900734 0.278386 1.962017 -0.003068 1.016887 0.972612 1.180121 1.559728 0.208160 -0.670315 0.616797 1.061168 -0.668033 -1.955276 0.429043 -1.421647 -1.577080 -0.757107 0.672471 -1.528175 0.188352 1.279749 0.116342 -0.357645 -1.164612 0.782050 1.870937 -0.236345 1.897633 0.848194 -1.191943 -1.006231 -0.881707 1.299367 -0.898719 0.998170 -0.032607 -1.909907 -0.876992 1.187191 -0.002795 -0.872434 -1.262539 0.196696 0.688179 -0.938636 0.868851 -0.114076 0.149099 -1.387491 -1.197133 0.483919 -0.826863 1.749551 0.034405 -0.149778 0.155716 -0.343067 0.635835 -1.537139 -0.781277 1.573306 -0.782228 0.301892 -1.034045 0.686702 0.257844 -0.009579 -1.004635 -1.303797 0.380033 0.407254 0.215489 -0.912626 0.089130 -1.560061 0.861217 0.660876 0.247749 1.203056 0.662851 0.179797 0.222137 0.787502 -1.215855 0.104445 -1.695798 0.491575 -0.362207 0.113826 -0.655039 0.132398 1.178558 0.103518 1.038508 -1.919993 1.653499 0.997596 -0.765577 -1.034556 0.435941 -0.746613 -1.436340 0.196328 0.893093 0.071843 0.137605 -0.132517 0.531897 -0.489928 -1.486337 -0.178226 -0.679483 1.605490 -2.246815 -0.053548 -0.235870 -0.473549 -0.525161 0.905022 0.640342 0.548274 1.890726 0.985591 -0.951916 1.245884 -1.695174 1.240960 3.172316 0.830405 -1.630699 0.758956 -1.238737 0.611693 0.786929 0.312620 0.552106 0.633139 -0.879592 0.004574 0.243361 -0.472425 1.876503 0.941751 1.165847 -2.089038 1.197384 -0.513066 0.061038 2.350857 1.205113 -2.289310 1.189246 1.814310 -1.295479 0.147067 0.387828 -1.161430 -0.598310 -1.489186 0.551652 0.942276 -1.715761 -1.147601 -0.180901 -1.571977 1.826159 0.359769 0.099386 0.245911 -1.196988 -0.194193 2.578527 0.223743 -0.032305 -0.409485 -0.795520 -1.497147 -2.122910 0.204369 0.482657 -1.287008 -0.540780 -1.411150 -0.469272 2.071205 -0.818609 0.520109 -2.334485 0.670174 0.761754 0.628298 0.807212 -1.225528 -1.018346 -0.045870 -0.659800 0.612657 -1.408050 0.623696 1.266639 -1.164770 1.520789 0.033872 -0.399321 0.358932 1.061558 -0.614547 1.701495 -0.034867 2.132560 0.208228 1.675847 -1.047413 0.028612 -0.536622 -0.697363 -0.834338 1.524840 -1.960758 -0.178994 1.533479 -0.686265 -1.759470 1.003142 0.674527 1.160963 -0.364414 -0.602908 -0.790806 0.006384 -0.436984 0.645273 1.168401 -0.764340 -1.647009 -0.324630 1.047263 -0.935315 -0.807837 0.734227 0.205705 1.855995 -1.509140 0.668925 0.355688 0.396443 -1.946874 -1.785810 0.238840 -0.757073 -0.866555 1.477888 -2.515839 -0.760442 -0.987726 0.604745 -1.874228 -0.350754 0.032250 1.966009 0.138939 -0.354476 1.011325 0.337948 0.614776 -0.310106 0.394483 0.346781 0.686302 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.374693 0.147422 -0.251783 -0.282803 1.160373 -0.070323 -0.073502 0.629193 -0.011331 0.447895 -0.605339 0.011231 -0.034981 -0.665967 0.181756 0.296377 0.169579 0.243166 -0.260785 -0.214780 0.236318 -0.030018 0.112623 -0.298012 -0.067395 -0.561797 -0.115385 0.125139 0.219303 0.088740 -0.457891 0.185157 0.615274 -0.096594 0.287607 0.311716 0.542772 0.454057 0.166529 -0.049147 0.359284 0.206202 -0.168659 -0.642061 0.193567 -0.391823 -0.550284 -0.212357 0.257097 -0.558028 0.316456 0.401098 0.075274 -0.148219 -0.347540 0.324620 0.396199 -0.119501 0.574296 0.309902 -0.527479 -0.404285 -0.285147 0.685125 -0.394825 0.361975 -0.052975 -0.743540 -0.421444 0.570420 0.075394 -0.274781 -0.378574 -0.011559 0.145662 -0.307950 0.268281 0.012118 0.489569 -0.338769 -0.397796 0.257827 -0.312845 0.525003 0.057377 -0.006264 -0.100546 -0.126452 0.196766 -0.448593 -0.260887 0.487867 -0.308789 0.250178 -0.388844 0.052079 0.143094 -0.129641 -0.129281 -0.476329 0.136788 0.125833 0.104644 -0.197171 0.111556 -0.424358 0.355605 0.240443 0.136273 0.315763 0.096306 -0.031820 -0.036871 0.205162 -0.142487 -0.023666 -0.659450 0.233328 -0.041485 0.038913 -0.318786 -0.012519 0.521213 0.043935 0.307904 -0.611106 0.598252 0.232110 -0.221739 -0.249407 0.178389 -0.063055 -0.398592 0.063911 0.351310 -0.043478 -0.020917 0.071396 0.271453 -0.114926 -0.639801 -0.101279 -0.315351 0.426145 -0.721920 0.049694 -0.087209 -0.186484 -0.138116 0.245983 0.241742 0.241955 0.626875 0.347490 -0.233279 0.316954 -0.665835 0.450075 0.977679 0.256607 -0.489678 0.291259 -0.466921 0.186329 0.232940 0.157793 0.064574 0.318833 -0.119721 0.098757 0.015084 -0.061154 0.620015 0.285719 0.383342 -0.671455 0.106463 -0.199840 0.153372 0.821485 0.416741 -0.830659 0.399697 0.690663 -0.289394 0.025631 0.136004 -0.423801 -0.231194 -0.459564 0.235674 0.436782 -0.643042 -0.378272 0.019607 -0.438073 0.531768 0.079189 -0.040029 0.131109 -0.436218 0.187916 0.840150 0.127322 0.062524 -0.107192 -0.347975 -0.502528 -0.691267 0.024944 0.292501 -0.386499 -0.109193 -0.426692 -0.273946 0.764476 -0.248601 0.138035 -0.818276 0.327187 0.313024 0.124140 0.178398 -0.423845 -0.234801 -0.006911 -0.238841 0.137745 -0.503424 0.087429 0.307808 -0.409935 0.553437 0.192864 -0.069094 0.078225 0.321799 -0.157358 0.582702 0.056681 0.493715 0.173994 0.499318 -0.345770 0.082430 -0.269683 -0.185540 -0.308276 0.486029 -0.688669 -0.122440 0.543745 -0.226622 -0.601692 0.303000 0.405890 0.445766 -0.130752 -0.283690 -0.147981 -0.053589 -0.239487 0.278330 0.329800 -0.332659 -0.512952 -0.011281 0.426827 -0.510351 -0.356966 0.278102 0.150040 0.664251 -0.506556 0.320127 0.203914 0.220302 -0.795900 -0.490755 0.013234 -0.159686 -0.230631 0.282764 -0.930194 -0.468919 -0.254156 0.337458 -0.627410 -0.026866 -0.010093 0.636537 0.002654 -0.026739 0.414444 0.121457 0.062287 -0.069632 0.075383 0.126409 0.235766 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::deallocate(int*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::~__new_allocator() = -0.200302 0.095813 -0.232845 -0.144821 0.530674 -0.046445 -0.133080 0.319830 0.042002 0.277074 -0.289212 -0.005382 -0.015651 -0.402621 0.092023 0.255561 0.087997 0.135265 -0.080003 -0.099963 0.132163 -0.119354 0.072317 -0.153619 -0.031349 -0.364116 0.002107 0.068840 0.180150 0.020037 -0.281415 0.073156 0.306982 -0.038741 0.137985 0.160783 0.232554 0.227658 0.190698 -0.100190 0.124615 0.135532 -0.095969 -0.341214 0.109267 -0.196722 -0.205236 -0.118298 0.155266 -0.238529 0.166436 0.208439 0.016800 -0.093098 -0.255797 0.137658 0.214989 0.000531 0.335857 0.134659 -0.155467 -0.271790 -0.133161 0.351430 -0.266813 0.068468 -0.005835 -0.324100 -0.144552 0.269164 -0.060921 -0.039686 -0.106655 0.017649 0.071886 -0.195714 0.132698 -0.010212 0.237012 -0.188605 -0.213933 0.121742 -0.184701 0.305606 0.025716 0.018901 -0.046082 -0.027305 0.108376 -0.245783 -0.108076 0.167438 -0.136356 0.095148 0.008277 0.169006 0.136239 -0.085850 -0.018290 -0.167525 0.054537 0.045969 0.077790 -0.088245 0.136730 -0.211841 0.221895 0.047722 0.082712 0.161960 0.153549 -0.032732 -0.036263 0.133553 -0.074513 -0.109393 -0.358309 0.076216 0.037495 0.035183 -0.149001 0.015983 0.282729 -0.023998 0.175864 -0.349896 0.306536 0.136574 -0.006209 -0.134249 0.098756 -0.026926 -0.173719 0.023219 0.185430 -0.051508 -0.018321 0.027378 0.151491 -0.020462 -0.407705 0.031055 -0.148503 0.316215 -0.391576 0.048570 -0.055146 -0.119243 -0.035262 0.072521 0.101383 0.132399 0.324573 0.199978 -0.134576 0.190918 -0.327213 0.239096 0.524092 0.080763 -0.245330 0.152224 -0.232610 0.064282 0.125298 0.095890 0.093935 0.159306 -0.054479 0.030869 0.049291 -0.024826 0.314126 0.043070 0.220149 -0.295513 0.123817 0.034148 0.080464 0.440886 0.139669 -0.414923 0.269935 0.343114 -0.251265 0.089260 0.054820 -0.157828 -0.013125 -0.274852 0.126245 0.252900 -0.345388 -0.206649 -0.076599 -0.230254 0.294508 0.033936 0.041586 0.124302 -0.209456 0.240422 0.408986 0.098711 0.021522 -0.109023 -0.197530 -0.381036 -0.352175 0.017447 0.090622 -0.249004 -0.014794 -0.237081 -0.187583 0.401611 -0.089728 0.031115 -0.523582 0.205874 0.166398 0.144184 0.046686 -0.094492 -0.114546 0.081230 -0.127295 0.076246 -0.235171 0.110575 0.161239 -0.226782 0.265122 0.072091 0.074300 0.136023 0.167420 -0.118090 0.308340 0.001489 0.199202 0.092833 0.246598 -0.168791 0.068685 -0.126563 -0.143536 -0.122474 0.194347 -0.345182 -0.084058 0.329264 -0.111224 -0.312625 0.130856 0.205858 0.324168 -0.044119 -0.158995 -0.073808 -0.013442 -0.109315 0.138616 0.173600 -0.090061 -0.248186 0.001087 0.228784 -0.173564 -0.233366 0.140696 0.060286 0.327333 -0.272956 0.169419 0.090122 0.135713 -0.335784 -0.233807 0.011966 0.001528 -0.087043 0.210182 -0.547243 -0.191653 -0.129473 0.166616 -0.365964 0.106635 -0.070021 0.323258 -0.015917 -0.030323 0.223193 0.043836 0.020360 -0.017146 0.024189 0.040975 0.140179 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(int*, int*, std::allocator const&) = -1.339624 0.277613 -0.926204 -1.535715 3.747544 0.114737 -0.167419 2.109195 0.201234 1.249340 -2.553778 -0.529995 -0.444146 -2.794083 0.384712 0.426392 0.982543 0.530012 -1.474786 -0.353009 1.055482 -0.050042 0.797877 -1.376050 -0.260969 -1.478190 -0.608324 0.324243 0.686283 0.284562 -1.234583 0.126999 2.639606 0.080386 1.304063 0.870542 2.024572 2.046765 0.424356 -0.102891 0.973395 1.199633 -0.707770 -2.479307 0.521519 -1.844290 -2.061295 -0.767227 0.962236 -2.159565 0.542895 1.456670 0.577389 -0.473577 -1.364458 0.745327 1.927609 -0.392437 2.235282 1.215222 -1.778969 -1.361050 -1.105142 1.184016 -1.492979 1.760669 0.101723 -2.082423 -1.891371 1.726286 0.186122 -1.258784 -2.056589 -0.317705 0.900501 -1.130643 1.333672 -0.112469 1.643815 -1.593059 -1.237115 0.985453 -1.235490 2.096620 0.129655 0.073870 0.407616 -0.445490 0.697313 -1.862401 -0.791859 1.297989 -1.108726 0.325592 -1.368850 0.586381 -0.670494 -0.136426 -1.429616 -1.894497 0.599386 0.704270 0.272756 -0.817063 0.011713 -1.710262 1.453407 1.352776 0.094924 0.880387 1.048514 -0.059059 0.094957 1.069090 -1.187879 0.285397 -2.585912 0.554315 -0.741760 0.242881 -1.197943 0.194843 1.878673 0.400693 1.076730 -2.265694 2.546534 1.610567 -1.487629 -0.912573 0.871861 -0.589413 -1.872371 0.482429 1.246440 -0.213265 0.292262 -0.193780 1.092617 -0.881694 -1.879907 0.070922 -1.194621 0.964675 -2.611891 -0.093655 -0.190019 -0.743740 -0.455871 1.210561 0.679687 0.322066 2.577315 0.851294 -1.574921 1.282590 -2.107451 1.582913 3.978768 0.840058 -1.844345 0.911097 -1.439297 1.006336 1.030137 0.520168 0.443000 0.593062 -0.655846 0.441130 0.075238 -0.373879 2.443967 0.831447 1.655435 -2.958433 0.808975 -0.737627 0.896689 3.144376 1.855993 -2.754678 1.077535 2.272456 -0.986817 0.087218 0.202432 -1.291218 -0.686925 -1.821778 0.801596 1.204850 -2.103541 -1.823668 -0.193415 -1.778236 2.003674 0.356022 -0.451226 0.247006 -1.863319 0.451912 3.277486 0.115248 -0.193095 -0.316286 -1.155382 -1.339886 -2.901576 0.345970 0.782206 -1.504659 0.008857 -1.552095 -0.498678 2.553491 -0.989168 0.130267 -3.040976 0.924993 1.193681 0.238429 1.108295 -1.405919 -1.034041 0.017337 -1.063442 0.928895 -2.081407 0.227237 1.314470 -1.472068 1.962617 0.027821 -0.538811 0.161953 1.422439 -0.607847 2.467086 -0.105446 2.561935 0.227522 2.077081 -1.182816 0.274841 -1.065859 -0.926454 -0.900750 1.991498 -2.755802 -0.438131 1.810421 -0.502565 -2.267303 1.299707 1.165530 1.019884 -0.462724 -0.752702 -0.868458 0.063279 -0.334945 0.961432 1.503368 -1.032234 -2.424097 -0.543014 1.883010 -1.265818 -1.067889 0.896782 0.396435 2.782531 -1.816030 0.953364 0.672874 0.662476 -2.652860 -2.183065 0.448433 -0.731429 -0.256654 1.456392 -2.923369 -1.583920 -1.050311 1.240931 -1.642163 0.280121 0.354108 2.107846 0.322910 -0.580186 1.060778 0.611537 0.720116 -0.276951 0.259550 0.613568 0.850225 +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.055160 0.254455 0.075457 -0.805076 2.380099 0.155322 -0.045787 0.769061 0.947725 0.685070 -1.939719 -1.210475 -0.664747 -1.398449 0.329879 -0.168147 0.228450 0.611729 -1.147139 -0.654328 0.961934 0.145205 0.313222 -1.169791 0.137941 -0.481318 -0.923370 -0.033762 -0.154805 0.841866 -0.840948 0.311589 1.346823 0.320811 0.590936 0.642845 1.062584 1.995008 -0.670144 1.669498 0.848925 1.040419 -0.449407 -2.206905 1.143974 -1.547280 -1.010415 -1.009250 0.560437 -1.850855 1.659405 0.961241 0.353851 -0.526980 -0.577928 0.133520 1.243777 0.807162 1.290321 1.083021 -1.346283 0.117855 -1.120344 0.159285 -0.935059 2.217328 0.549680 -2.105770 -1.656747 1.022347 1.173601 -1.041016 -1.741188 -0.373194 0.209687 -0.234650 0.902906 -0.018752 0.764565 -0.208603 -1.275445 0.277949 -0.649992 1.251382 -0.318919 -0.413344 -0.395389 -0.581350 0.824035 -0.783088 -1.142062 1.295417 -0.408776 1.222265 -1.125729 -0.650491 -0.286360 -0.050952 -0.861289 -0.650397 0.400266 0.944041 0.175611 0.576997 -1.303838 -1.145849 1.861273 1.381834 -0.327273 -0.172836 0.583465 -0.221037 -0.340669 0.257425 -0.705593 1.019844 -1.379407 0.366967 -0.080457 0.327092 -0.419568 0.033535 0.602539 -0.493786 0.349435 -1.016810 1.703262 0.659249 -1.381542 -0.344530 0.781274 -0.441586 -1.420468 0.174994 0.919750 0.357512 -0.294067 0.181476 0.166630 -0.896245 -0.947472 -0.377831 -1.010455 0.330999 -0.746171 -0.249940 -0.443274 -0.918339 -0.461690 0.602768 0.156290 0.196872 1.423084 0.843440 -0.713446 -0.662196 -1.193319 1.151944 2.520997 0.473887 -1.441877 0.053164 -0.257186 1.220189 0.876284 -0.184128 0.046829 1.237151 0.261839 0.662818 -1.228503 -0.676127 1.415247 1.850248 1.376393 -2.066975 0.073922 -0.841955 0.406934 2.119008 1.544607 -1.745865 -0.072110 1.522546 -0.886320 -0.409512 -0.029524 -0.124261 -0.353355 -1.048936 0.631214 0.617925 -1.665650 -1.597273 0.133799 -1.389829 1.392467 0.275861 0.524112 0.062765 -1.709531 -0.267599 2.230346 0.104820 -0.322376 0.014370 -0.451287 -0.522766 -1.743880 0.461618 0.962435 -0.777215 -0.904608 -0.816303 0.168827 1.905527 -1.067354 -0.012079 0.027331 0.103434 0.465965 -0.771377 1.156269 -1.565472 -0.950611 -0.495804 -0.473757 1.097981 -0.495059 -0.488206 1.244871 -1.011060 1.045340 1.499680 0.035918 -0.463006 1.383300 0.215686 1.174822 -0.458206 1.049697 -0.269064 1.532476 -0.576060 -0.010292 -0.298289 -0.012759 -0.482628 1.761738 -1.498725 -0.007205 1.057577 -1.117697 -0.629164 1.351483 0.713974 1.095416 -0.384327 -0.151665 -0.761218 0.147035 0.138724 0.205165 1.225806 -0.428016 -1.796249 -0.853809 0.550215 -1.570484 -1.097572 0.891429 -0.077671 1.985931 -1.027277 0.799121 0.532857 -0.563866 -1.904706 -0.543092 -0.354496 -0.802558 -0.634047 1.130568 -1.467702 -0.776863 -0.698699 1.055066 -0.642045 -0.372352 -0.504455 1.073950 0.910602 0.243003 1.090378 0.709130 0.864593 0.027858 -0.553121 0.560703 1.033654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::allocator const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_initialize(int*, int*, std::forward_iterator_tag) = -2.665373 3.156090 1.300929 -2.625291 6.041686 0.652920 0.933493 2.593121 -0.788808 1.958542 -5.809681 -0.510130 -0.200427 -4.201309 0.828652 -0.582542 0.169328 1.149036 -1.380300 0.364570 2.028421 -1.181793 0.066750 -3.516085 -0.090189 -2.450620 -1.615654 -0.144497 0.969797 1.441513 -0.572556 0.583540 3.778931 0.892021 2.569984 2.591138 2.271139 4.478748 0.118141 1.612110 1.432631 2.387527 -1.411041 -5.039179 1.786627 -3.442569 -2.489387 -2.532545 0.528525 -4.156996 3.140605 2.758982 0.563156 -1.320027 -2.558066 0.982465 4.186455 0.060813 3.712608 2.446626 -3.128342 -0.615305 -2.389609 1.544069 -1.883558 3.903264 1.566666 -3.952276 -1.555348 2.397979 2.702233 -2.582907 -3.764636 0.092717 0.430778 -1.727298 2.102139 -0.916442 -1.086939 -2.062114 -2.161532 1.490723 -0.799982 3.760106 -0.068672 -0.643320 -1.455635 -0.649666 1.635513 -2.865083 -2.718553 3.661281 -1.309626 1.301483 -3.359849 1.344423 0.327368 0.198898 -2.092936 -2.276366 1.759606 1.969702 0.276671 -0.785710 -2.041847 -4.197166 3.410276 3.042889 -1.343004 1.809999 1.128592 1.515889 0.964097 1.397332 -2.569117 1.894153 -4.002338 0.673462 0.075887 0.323610 -0.870862 -0.189231 0.963663 -0.194296 1.475786 -3.257736 4.190685 2.519073 -2.774258 -2.021159 1.363369 -1.989197 -3.578923 0.023624 1.513117 1.576692 0.132513 0.186255 -0.232907 -2.039681 -2.387869 -3.311399 -1.456604 3.925987 -3.932239 -0.547664 -0.605041 -0.996498 -1.770642 2.098561 1.172664 0.475849 3.847831 1.900539 -1.180600 0.429872 -2.853376 2.050888 6.776308 3.043090 -3.882498 1.380914 -1.530611 1.469739 1.755138 -0.005708 0.488416 1.805343 -2.989144 -1.357596 -0.418776 -2.620692 3.865406 3.579954 2.463135 -4.911002 3.810090 -1.061847 -0.909688 5.751627 2.945067 -3.969957 0.128947 4.078093 -2.429342 -0.797179 0.957319 -1.651962 -1.465464 -1.765137 0.623681 0.790850 -3.506388 -3.889954 -0.687905 -3.956562 4.368249 1.136357 1.488434 -1.018111 -2.835846 -1.830536 5.992526 0.150545 -1.162171 -0.203791 -0.669915 -1.681788 -4.454653 0.761282 2.502473 -2.283863 -2.273053 -2.674675 0.264038 3.815755 -3.452481 0.084805 -2.161733 -0.977807 1.392944 -0.783204 1.926903 -4.790181 -2.560097 -1.064513 -0.163300 2.275523 -1.579224 1.838842 4.463213 -1.961775 3.138489 3.141284 0.015920 -0.101900 3.828374 -0.733488 3.586967 -1.465221 4.089329 0.170179 3.863952 -2.472553 -0.842849 -0.644832 -0.695478 -1.259699 3.815202 -3.788585 0.225362 2.019848 -2.235666 -2.214521 3.406772 1.237362 1.984281 -1.176298 -0.110730 -1.291837 -0.275615 -1.035965 0.563918 2.991634 -1.579939 -4.167923 -1.493919 2.018632 -2.435304 -1.183640 1.723436 0.422866 4.518771 -3.110648 2.319466 0.647609 -0.854505 -5.211478 -3.259373 0.765646 -2.573646 -2.481284 2.494258 -4.917332 -1.715816 -2.282684 1.571219 -3.717443 -1.054030 -0.091104 3.764436 1.146451 -0.694680 1.956827 0.490880 2.608590 0.191407 0.261837 0.507015 2.538391 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.917894 0.417050 -0.739823 -0.770814 2.879980 0.147976 0.011101 1.252129 -0.509410 0.981924 -1.623144 0.117827 -0.078851 -1.743563 0.399571 0.801300 0.352345 0.347168 -0.642564 -0.333194 0.611547 -0.383499 0.367337 -0.879082 -0.082959 -1.144932 -0.280295 0.211091 0.767458 0.298377 -1.081962 0.208983 1.242168 -0.185222 0.410816 0.598345 1.238043 1.143577 0.188257 -0.491574 0.740934 0.599524 -0.425665 -1.623132 0.576409 -1.139117 -1.408115 -0.563321 0.592390 -1.416959 0.494517 1.048043 0.167874 -0.562630 -0.916814 0.757341 1.455816 -0.488631 1.410613 0.736822 -1.100573 -1.194433 -0.645856 1.248809 -0.773879 0.962983 0.153175 -1.659536 -1.023518 1.309306 0.137504 -0.755845 -1.112062 -0.051228 0.463518 -0.724292 0.638679 -0.096924 0.838563 -1.034708 -0.873178 0.470809 -0.821973 1.389827 0.141882 -0.048604 0.025650 -0.363127 0.566273 -1.100575 -0.726924 1.179082 -0.548882 0.558919 -1.099278 0.319956 0.145792 -0.294409 -0.733212 -1.035801 0.300135 0.557999 0.228046 -0.785247 0.123566 -1.303070 0.871794 0.617423 0.283356 0.713956 0.428973 -0.225615 -0.233786 0.503881 -0.649961 0.036272 -1.449860 0.286117 0.059848 0.237874 -0.812730 -0.052922 1.248536 -0.066904 0.702584 -1.492031 1.562331 0.666018 -0.694587 -0.768851 0.455047 -0.255313 -1.006915 0.345555 0.728613 -0.174962 0.002434 0.197734 0.624413 -0.367751 -1.742050 -0.191805 -0.709015 1.344406 -1.935912 0.103458 -0.211337 -0.454659 -0.320203 0.579378 0.551648 0.435238 1.523740 0.814485 -0.593601 1.242764 -1.381723 1.266774 2.606679 1.032182 -1.277522 0.528080 -1.109681 0.648498 0.540467 0.128004 0.254499 0.706108 -0.505438 0.275194 0.378197 -0.316536 1.453978 0.732049 1.123732 -1.830126 0.520608 -0.375703 0.472962 1.877137 1.049571 -1.983006 1.205375 1.681500 -0.664294 0.298330 0.228095 -0.891365 -0.607892 -1.073983 0.565032 0.883150 -1.526116 -1.155028 -0.298936 -1.103948 1.404706 0.289500 0.044807 0.272763 -0.916944 0.461984 1.885243 0.198021 -0.041507 -0.258680 -0.678865 -1.395579 -1.640904 0.154589 0.685385 -1.102141 -0.444475 -1.083526 -0.669890 1.864744 -0.668687 0.192181 -2.101513 0.826760 0.657912 0.499780 0.646950 -1.093361 -0.658752 -0.024226 -0.486583 0.417963 -1.179077 0.238037 0.767157 -1.082659 1.286238 0.171760 0.072513 0.264711 0.885868 -0.178311 1.345908 0.212814 1.832220 0.203496 1.389188 -0.768653 0.308493 -0.590863 -0.481589 -0.556712 1.298669 -1.731805 -0.306583 1.472012 -0.419898 -1.619389 0.888316 0.850246 1.137071 -0.364098 -0.727754 -0.179672 -0.127163 -0.402684 0.595837 0.853652 -0.945332 -1.298114 -0.389204 1.044986 -1.020034 -0.605774 0.786333 0.343461 1.657606 -1.189739 0.847208 0.304999 0.370519 -1.872808 -1.245868 0.144123 -0.300982 -0.577120 1.146075 -2.275780 -0.899265 -0.692416 0.768458 -1.576790 -0.049783 -0.224014 1.440694 -0.046472 0.063259 1.034643 0.375823 0.231290 -0.348458 0.284679 0.381988 0.491797 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.477593 0.433904 -0.451786 -0.291548 0.994895 -0.364708 0.040475 0.580502 0.079336 0.247569 -0.912743 -0.173048 0.005807 -0.996652 0.278798 0.550530 0.413607 0.577093 -0.046011 -0.020044 0.395981 -0.244173 -0.107380 -0.607683 0.097018 -0.275029 -0.152686 -0.014214 -0.021786 -0.067602 -0.520528 0.509001 0.900928 0.390334 0.695958 0.687050 0.252423 0.861599 0.627951 0.069114 0.254770 0.402074 -0.145625 -1.092697 0.415532 -0.436701 -0.224051 -0.586477 0.061225 -0.439433 1.180767 0.489953 0.102290 -0.013308 -0.779167 -0.237823 0.752973 0.255025 0.665977 0.559907 -0.482160 0.128783 -0.041846 0.301674 -0.488459 0.257495 0.513539 -0.725166 -0.066048 0.548185 0.900539 -0.803549 -0.768940 -0.112782 -0.155463 -0.303250 0.443107 0.113616 0.286206 -0.579643 -0.755287 0.277073 -0.417246 0.795109 -0.001706 -0.167035 -0.833790 -0.241654 0.442542 -0.420698 -0.408748 0.352012 -0.239738 0.494871 -0.173016 0.494819 0.297557 -0.059432 -0.259421 -0.620017 0.323153 0.019896 0.077525 0.639401 -0.188318 -0.347346 0.663272 0.250437 -0.277071 0.466609 0.726062 0.284851 0.289499 0.088595 -0.128559 -0.117476 -0.908997 0.334558 0.108668 -0.130663 0.009334 -0.096013 0.368300 -0.363143 0.178394 -0.649941 0.650710 0.630978 -0.135980 -0.313277 0.307578 -0.297949 -0.634695 -0.177861 0.515250 0.258566 0.079048 0.141825 -0.094863 -0.293965 -0.641290 -0.466344 -0.524561 1.051820 -0.727724 -0.059352 -0.182633 -0.390363 -0.289911 0.110150 0.028488 0.238743 0.664694 0.404032 -0.509837 -0.122221 -0.690496 0.346887 1.285356 0.601617 -0.647317 0.255022 -0.074536 0.203352 0.374724 0.205510 0.148814 -0.260764 -0.289959 -0.051650 -0.036206 -0.407357 0.625267 0.187973 0.560450 -0.628401 0.581848 0.553266 -0.231643 1.367076 0.013921 -0.716818 0.170195 0.907964 -0.176332 0.016814 0.154091 -0.307042 -0.257918 -0.490503 0.334359 0.172955 -0.942010 -0.508775 -0.086440 -0.670934 0.567771 0.260296 0.110375 -0.118483 -0.690082 0.430775 1.458727 0.132465 0.038020 0.037059 -0.362617 -0.087354 -0.828517 0.086127 0.286963 -0.305242 -0.080318 -0.417859 -0.135978 1.041680 -0.570888 -0.076756 -0.322591 0.103017 0.311574 -0.135199 -0.028101 -1.046295 -0.522683 0.297133 0.137703 0.249178 -0.198922 0.284195 0.655771 -0.447228 0.082493 1.169881 0.739013 0.296215 0.568818 -0.235015 0.591680 -0.370087 0.779508 0.269756 0.673897 -0.523486 -0.279387 -0.184368 0.346523 -0.510578 0.619947 -0.749159 0.075558 0.692744 -0.087001 -0.639190 0.508088 0.353528 0.541758 -0.263730 -0.391215 -0.063959 0.116270 -0.176171 0.370954 0.531394 -0.089088 -0.675901 -0.183426 0.555268 -0.378940 0.057748 0.367159 0.010990 0.929852 -0.581760 0.458134 0.165562 0.205930 -0.639459 -0.719255 0.337262 -0.249280 -0.170880 0.487100 -1.201534 -0.518252 -0.322547 0.404424 -0.870999 0.469010 -0.251903 0.679489 0.142519 -0.070451 0.320487 0.120259 0.156290 -0.045000 0.042289 -0.092903 0.704797 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -1.039427 0.441687 -0.161235 -0.466379 2.191021 0.006754 0.240124 0.908402 -0.127999 0.789637 -1.782745 -0.693650 -0.381097 -1.474756 0.269349 -0.030208 0.585103 0.228226 -0.664557 -0.118867 0.659027 -0.333323 0.137906 -1.110569 0.014486 -1.088747 -0.534318 -0.039329 0.784034 0.178237 -0.683844 0.231320 1.813851 0.196584 1.140184 0.818234 0.862743 1.279195 0.052185 -0.320913 0.370315 1.051752 -0.635137 -1.470120 0.190538 -1.239944 -1.028886 -0.501872 0.418453 -0.938578 0.217156 0.877784 0.199192 0.042691 -0.813326 0.420349 1.534889 0.120240 1.525025 0.657384 -0.837106 -0.289773 -0.668837 0.872081 -0.723376 0.824260 -0.136353 -1.397051 -0.741950 0.677777 0.155474 -0.860844 -1.052958 0.225725 0.537392 -0.720723 0.839823 0.064537 0.284471 -1.242849 -1.096173 0.361413 -0.612021 1.296762 -0.080069 -0.151204 0.038072 -0.231604 0.642021 -1.232238 -0.685780 1.069627 -0.826707 0.203229 -0.537004 0.404033 0.116150 0.319419 -0.747363 -1.162211 0.294703 0.260958 0.039961 -0.406784 0.184352 -1.016646 0.727509 0.411416 0.014906 0.966872 0.522631 0.366202 0.383868 0.687625 -0.958956 -0.066682 -1.184226 0.344091 -0.598787 0.045176 -0.323295 0.123383 0.846804 0.119276 0.820639 -1.491245 1.205355 0.898887 -0.540594 -0.725743 0.298867 -0.859356 -1.289424 0.042929 0.705696 0.247963 0.201907 -0.321352 0.351243 -0.481683 -0.849856 -0.102320 -0.519387 1.021467 -1.676110 -0.205941 -0.175525 -0.342581 -0.581425 0.749259 0.357346 0.319916 1.286536 0.689942 -1.033111 0.620506 -1.176891 0.790490 2.496588 0.206513 -1.315888 0.561372 -0.916280 0.479546 0.798115 0.199245 0.414224 0.277132 -0.659063 -0.015648 -0.064385 -0.439089 1.529083 0.680461 0.891985 -1.657471 1.085367 -0.458177 -0.233390 2.070191 0.908286 -1.852706 0.681319 1.307510 -1.133800 0.030359 0.278306 -0.872266 -0.348430 -1.398649 0.428900 0.508610 -1.247039 -0.727203 0.151623 -1.383564 1.435592 0.400182 0.067708 0.136369 -0.964249 -0.353162 2.281866 0.201455 -0.016683 -0.364960 -0.551994 -0.930242 -1.763856 0.157389 0.093834 -0.902593 -0.325939 -1.127868 -0.045731 1.616396 -0.761382 0.465847 -1.717739 0.319532 0.386596 0.266100 0.638651 -0.978674 -0.901221 -0.166517 -0.547936 0.541688 -1.148638 0.466312 1.250323 -0.833206 1.071633 0.074670 -0.688759 0.123480 0.871018 -0.535944 1.134544 -0.286987 1.487405 0.105374 1.402844 -0.938100 -0.161631 -0.390976 -0.470864 -0.771095 1.196725 -1.440425 -0.043524 1.059463 -0.572627 -1.231112 0.765876 0.260081 0.926985 -0.366947 -0.413997 -0.961544 0.297704 -0.292554 0.434790 0.996718 -0.250366 -1.401507 -0.238860 0.697442 -0.727887 -0.730255 0.447932 -0.141952 1.467195 -1.154206 0.267375 0.384604 0.274019 -1.281740 -1.460911 0.057106 -0.842667 -0.629660 1.248863 -1.782055 -0.475034 -0.710023 0.331724 -1.229211 -0.447099 0.152036 1.514406 0.314803 -0.534184 0.700912 0.250746 0.684992 -0.046497 0.275061 0.095176 0.574495 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = -1.356902 0.323370 -0.749728 -0.941004 4.006684 0.241329 0.116494 1.871620 -0.535614 1.480754 -2.265746 -0.258610 -0.357759 -2.162508 0.408714 0.563705 0.636519 0.427871 -1.097018 -0.410232 0.858554 -0.387300 0.481052 -1.093883 -0.144680 -1.294579 -0.632792 0.323278 1.130183 0.343919 -1.479513 0.238600 2.088852 -0.249556 1.095021 0.949621 1.654220 1.671653 0.015799 -0.457658 0.900886 1.026236 -0.678912 -2.145418 0.551723 -1.691927 -2.096541 -0.667714 0.864942 -1.965180 0.651318 1.427396 0.158332 -0.421809 -1.007594 1.200831 1.838373 -0.386477 2.192279 0.917273 -1.896102 -1.358926 -1.151522 1.811447 -0.913366 1.488119 -0.135659 -2.566148 -1.360311 1.440863 0.136173 -1.248879 -1.543100 0.308026 0.811505 -1.046314 1.052246 -0.138914 0.980928 -1.517376 -1.331072 0.572312 -1.165411 1.857478 0.048049 -0.034679 0.135859 -0.432265 0.516790 -1.862282 -0.811618 1.853669 -1.130166 0.819605 -1.790821 0.210933 0.000719 -0.022392 -1.282178 -1.529722 0.372371 0.658501 0.295408 -1.268420 0.175121 -1.690025 1.202148 0.857642 0.578454 1.016023 0.642634 -0.056590 0.214436 1.032231 -1.172168 0.312459 -1.786198 0.512894 -0.437111 0.235200 -1.080661 0.212073 1.593639 0.241383 1.360338 -2.160968 1.924096 0.827885 -1.123779 -1.168654 0.512330 -0.748831 -1.592100 0.316256 1.067406 -0.156055 0.065515 -0.209092 0.834756 -0.519737 -2.185206 -0.056865 -0.804739 1.191567 -2.369212 -0.021551 -0.270843 -0.586231 -0.508664 1.173159 0.956441 0.778211 2.071957 1.102122 -0.816909 1.264709 -2.147434 1.584342 3.505942 0.897306 -1.924322 0.930282 -1.580397 0.943476 0.975978 0.351473 0.552146 0.923233 -0.540173 0.344207 0.286928 -0.109305 2.092901 1.285658 1.312780 -2.386475 0.653163 -1.045606 0.290110 2.714627 1.693909 -2.822205 1.315150 1.993489 -1.070823 0.309422 0.398206 -1.392157 -0.747872 -1.667424 0.676008 1.308054 -1.946182 -1.322253 0.116024 -1.664034 2.123935 0.274839 -0.051058 0.278422 -1.593038 0.190918 2.877210 0.230453 -0.005587 -0.321983 -1.001232 -1.848498 -2.407517 0.074828 0.680084 -1.413095 -0.679952 -1.655975 -0.650682 2.460852 -0.718599 0.653018 -2.704394 0.884746 0.943762 0.376975 1.057868 -1.428572 -1.013048 -0.430349 -0.951103 0.786202 -1.831566 0.311080 1.315751 -1.270117 2.038009 0.142798 -0.580486 0.163833 1.085679 -0.644135 2.030905 0.177757 2.224204 0.211636 1.874922 -1.113482 0.254745 -0.832197 -0.433085 -0.917866 1.924131 -2.240660 -0.336769 1.670148 -0.995183 -2.049016 1.015125 0.895048 1.312127 -0.328621 -0.816898 -0.928966 -0.314337 -0.762546 0.745228 1.165904 -1.222076 -1.762550 -0.211032 0.993594 -1.304097 -0.869978 0.853169 0.322740 2.219342 -1.773804 0.668763 0.604800 0.391075 -2.429362 -1.767761 -0.244624 -0.799597 -0.920905 1.542668 -2.854971 -1.229300 -0.980538 0.724976 -1.866538 -0.449915 0.082767 2.392968 0.280877 -0.303714 1.319650 0.439920 0.674437 -0.396593 0.441570 0.448179 0.680118 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.607175 0.328450 -0.533400 -0.536627 1.972963 0.137743 -0.026765 0.872129 -0.208854 0.601729 -1.230663 0.007682 0.060121 -1.165464 0.308555 0.635664 0.221006 0.192549 -0.455755 -0.333073 0.391031 -0.197882 0.171405 -0.688909 0.000000 -0.738310 -0.258969 0.097350 0.478603 0.217744 -0.873142 0.168600 0.814643 -0.104103 0.303343 0.437281 0.911708 0.716907 0.108753 -0.193667 0.585512 0.398205 -0.283401 -1.088480 0.342381 -0.812485 -0.936982 -0.365432 0.333468 -0.915791 0.523636 0.689819 0.148195 -0.371978 -0.589339 0.490399 0.944475 -0.282407 0.922818 0.575479 -0.800812 -0.711547 -0.403476 0.920069 -0.517038 0.795372 0.130609 -1.155470 -0.760070 0.939115 0.202957 -0.553092 -0.783152 -0.089794 0.244915 -0.447851 0.493096 -0.064946 0.782029 -0.671697 -0.569907 0.401992 -0.545719 0.954493 0.123795 -0.101044 -0.098686 -0.291833 0.432967 -0.691288 -0.590359 0.773995 -0.409616 0.402982 -0.740221 0.131186 0.142146 -0.150239 -0.398010 -0.774497 0.250054 0.441629 0.081240 -0.412177 0.153986 -0.880428 0.657854 0.537036 0.115636 0.474029 0.268351 -0.133062 -0.132782 0.294116 -0.337107 -0.035833 -0.949348 0.184081 0.025594 0.130300 -0.528058 -0.107228 0.899939 -0.056877 0.412244 -0.921922 1.074815 0.533750 -0.526974 -0.434626 0.306716 -0.255111 -0.799715 0.274093 0.421251 0.004186 0.039109 0.178043 0.397613 -0.335190 -1.170373 -0.158810 -0.533759 0.853702 -1.306747 -0.004972 -0.098716 -0.236520 -0.307328 0.450204 0.362838 0.229635 1.039056 0.488761 -0.417724 0.678977 -0.893842 0.889298 1.821104 0.624001 -0.866906 0.320064 -0.770681 0.482764 0.370031 0.057659 0.048675 0.487606 -0.337675 0.257372 0.150044 -0.329456 0.979320 0.492253 0.783374 -1.208089 0.380233 -0.283595 0.239471 1.325166 0.731621 -1.362305 0.733885 1.212817 -0.366449 0.228178 0.182005 -0.618357 -0.420122 -0.750312 0.372712 0.529794 -1.065385 -0.791716 -0.167347 -0.766752 0.976580 0.280831 0.074330 0.100074 -0.588736 0.395621 1.404971 0.141732 -0.013244 -0.089919 -0.356971 -0.881380 -1.098400 0.069006 0.524626 -0.762608 -0.268231 -0.699131 -0.401126 1.322934 -0.616584 0.110930 -1.318954 0.554281 0.408153 0.234181 0.432936 -0.759992 -0.513142 -0.088519 -0.342031 0.283446 -0.891054 0.145086 0.545436 -0.676045 0.894760 0.269947 0.070506 0.084253 0.635955 -0.036049 0.889188 0.123999 1.114156 0.187349 1.020858 -0.599351 0.118163 -0.458312 -0.341342 -0.421386 0.954591 -1.218302 -0.129528 1.014761 -0.256216 -1.084337 0.712127 0.552284 0.800429 -0.337202 -0.534577 -0.126279 -0.049269 -0.279298 0.419779 0.575768 -0.649506 -0.932161 -0.348195 0.761775 -0.772379 -0.405240 0.556043 0.164201 1.217804 -0.771280 0.602334 0.297632 0.287295 -1.356823 -0.808311 0.030832 -0.187958 -0.343549 0.695732 -1.544453 -0.708229 -0.470976 0.488725 -1.067623 -0.062765 -0.108000 0.983383 0.002260 -0.008929 0.642979 0.283187 0.158525 -0.176401 0.180612 0.235693 0.277220 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::__new_allocator::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = -0.991773 0.182066 -0.802447 -0.977068 3.075667 -0.010390 -0.179438 1.726391 -0.160281 0.949941 -1.801805 0.095276 -0.039247 -1.949772 0.343937 0.663548 0.537003 0.364162 -0.863012 -0.140008 0.691257 -0.345714 0.358922 -1.022285 -0.102572 -0.954434 -0.203245 0.239879 0.576005 0.321510 -0.970299 0.267517 1.452439 0.062838 0.802267 0.631655 1.310038 1.334801 0.164001 -0.179977 0.810041 0.605968 -0.250768 -1.755523 0.526059 -1.177517 -1.614558 -0.545377 0.527092 -1.707965 0.654365 1.157877 0.240767 -0.457242 -0.931822 0.687765 1.465824 -0.418913 1.448550 0.853412 -1.569445 -1.207601 -0.745532 1.041850 -0.742331 0.952384 0.400209 -1.586499 -0.952991 1.467526 0.157524 -0.926414 -1.098385 -0.121078 0.624517 -0.700782 0.921277 -0.081709 1.106016 -1.003470 -0.624674 0.505477 -0.728932 1.328136 0.037163 0.094462 0.068746 -0.480756 0.431128 -1.226977 -0.636704 1.117903 -0.917037 0.529377 -1.426054 0.587660 0.015725 -0.239355 -0.983547 -1.283191 0.409897 0.526062 0.131384 -0.756180 -0.131004 -1.306131 1.162708 0.707141 0.255654 0.836425 0.286293 0.022022 -0.092374 0.613612 -0.757198 0.510595 -1.601001 0.259656 -0.182467 0.288007 -0.803307 -0.184734 1.515985 0.270385 0.655529 -1.499065 1.821512 0.970572 -0.689442 -0.824190 0.534500 -0.456687 -1.110623 0.287937 0.823420 -0.122845 0.184000 0.105565 0.648405 -0.473044 -1.733052 -0.316884 -0.767140 1.146739 -1.815842 0.072522 -0.110083 -0.344037 -0.406755 0.606594 0.622565 0.164739 1.664383 0.512172 -0.718826 1.098995 -1.346208 1.200818 2.871974 0.840765 -1.400581 0.695255 -1.073856 0.745138 0.449192 0.173171 0.367283 0.486980 -0.595855 0.252182 0.445145 -0.359106 1.486386 0.655399 1.077704 -2.135931 0.585800 -0.572848 0.538641 2.232299 1.256196 -2.213290 0.919796 1.755312 -0.721128 0.306527 0.185567 -0.751054 -0.542790 -1.063165 0.791125 0.703380 -1.547083 -1.272788 -0.184393 -1.272055 1.364410 0.300968 0.141361 -0.076726 -1.036853 0.568075 2.346493 0.139077 -0.171829 0.021802 -0.725429 -1.269984 -1.880610 -0.038132 0.629922 -1.036084 -0.220908 -0.984295 -0.621600 1.967200 -0.893735 0.131955 -2.223183 0.699694 0.728230 0.157691 0.542727 -1.161830 -0.834256 -0.221902 -0.507517 0.567045 -1.337983 0.126371 0.968662 -0.893049 1.556862 0.164242 -0.061207 0.273605 1.018572 -0.323651 1.642273 0.117423 1.971014 0.239533 1.521632 -0.918008 0.139755 -0.771484 -0.537164 -0.740359 1.495795 -1.864867 -0.199039 1.431620 -0.328631 -1.681064 1.041666 0.836511 1.044274 -0.317337 -0.614002 -0.370195 -0.220068 -0.683313 0.779070 0.802425 -0.969455 -1.409007 -0.465812 1.332084 -0.964723 -0.526742 0.794818 0.330262 1.941004 -1.239735 0.876192 0.543789 0.299331 -1.771352 -1.358292 0.211217 -0.516719 -0.503043 0.906603 -2.444767 -1.080091 -0.649280 0.905936 -1.512524 0.045245 -0.063308 1.740978 0.230161 -0.215704 1.022330 0.301272 0.251913 -0.248784 0.496861 0.345962 0.596551 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.734952 0.234860 -0.763943 -0.592037 2.228096 0.113056 -0.051799 0.970045 -0.234843 0.688723 -1.341399 -0.054735 -0.053560 -1.363417 0.342679 0.822664 0.298948 0.278389 -0.572537 -0.366476 0.534187 -0.248975 0.244874 -0.777000 0.017906 -0.698114 -0.269286 0.110033 0.567883 0.201311 -1.078714 0.179323 0.953944 -0.103237 0.327394 0.464291 1.044361 0.936543 0.080360 -0.294911 0.598631 0.563998 -0.338498 -1.324438 0.507930 -0.977530 -1.016926 -0.430749 0.466007 -1.017926 0.697750 0.808511 0.161052 -0.439173 -0.698428 0.510377 1.147475 -0.266111 1.102000 0.653977 -0.853637 -0.799456 -0.486651 0.982465 -0.635973 0.937219 0.212773 -1.315228 -0.920319 0.990224 0.307935 -0.737554 -0.992486 -0.105883 0.277857 -0.498695 0.597054 -0.056489 1.031923 -0.840244 -0.790702 0.346514 -0.739808 1.110572 0.040214 -0.118590 -0.135001 -0.338817 0.520754 -0.799484 -0.655926 0.819880 -0.464099 0.571352 -0.828945 0.125632 0.035818 -0.174144 -0.605480 -0.820647 0.247759 0.521743 0.151920 -0.398942 0.196062 -0.916500 0.801020 0.547358 0.170194 0.478439 0.476274 -0.219056 -0.208737 0.346240 -0.336225 -0.055312 -1.105939 0.170158 0.079784 0.228606 -0.573671 -0.041978 1.059742 -0.208196 0.490709 -1.098138 1.236354 0.558009 -0.598808 -0.506694 0.411857 -0.269549 -0.908094 0.271596 0.581934 -0.053498 -0.035251 0.170275 0.507458 -0.343970 -1.462015 -0.090587 -0.639227 0.920065 -1.467240 -0.003281 -0.195458 -0.408125 -0.272686 0.455779 0.356858 0.288387 1.175116 0.633104 -0.530231 0.778963 -1.034926 1.052529 2.079128 0.712275 -1.042681 0.308003 -0.852089 0.625317 0.498787 0.067725 0.152384 0.548252 -0.237469 0.403207 0.211765 -0.321195 1.136623 0.520346 0.983853 -1.412865 0.315408 -0.247464 0.339461 1.570612 0.792822 -1.586530 0.878727 1.314292 -0.339318 0.286388 0.122885 -0.604237 -0.452781 -0.911390 0.510646 0.645510 -1.261074 -0.946671 -0.200403 -0.895948 1.115826 0.263459 0.045532 0.205543 -0.816278 0.584073 1.580415 0.159695 -0.071510 -0.166502 -0.471224 -1.000633 -1.287634 0.163355 0.518494 -0.823664 -0.370240 -0.823848 -0.461511 1.584150 -0.611156 0.066663 -1.522752 0.651966 0.462405 0.253792 0.564237 -0.887697 -0.595788 -0.050136 -0.352328 0.404106 -0.954810 0.055272 0.660525 -0.884482 0.907816 0.377124 0.216644 0.109502 0.768951 -0.053077 1.009318 0.134580 1.331012 0.090764 1.157358 -0.650697 0.183016 -0.483658 -0.211714 -0.434186 1.064393 -1.341356 -0.175507 1.144902 -0.335805 -1.221062 0.794307 0.625684 0.952515 -0.314431 -0.658313 -0.122055 -0.051110 -0.259502 0.435144 0.732378 -0.705090 -1.083303 -0.424686 0.773199 -0.863658 -0.379944 0.655219 0.170099 1.433430 -0.896900 0.654839 0.293988 0.272226 -1.448912 -0.913308 -0.010353 -0.148736 -0.345842 0.996533 -1.727877 -0.751641 -0.543603 0.628210 -1.188824 0.029719 -0.268401 1.065607 0.080456 0.070001 0.826845 0.369786 0.247249 -0.227135 0.124370 0.297798 0.381927 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = -0.586007 0.434490 -0.143215 -0.639797 1.990917 0.091630 0.053222 0.940281 0.015246 0.569123 -1.312780 0.056141 0.199775 -0.906484 0.286172 0.288123 0.033284 0.266116 -0.559200 -0.365408 0.338777 0.146629 0.067423 -0.710867 -0.091497 -0.753752 -0.387719 0.116306 0.218161 0.267207 -0.680829 0.176708 0.828909 -0.221553 0.432844 0.523982 1.019785 0.667336 -0.087898 0.297785 0.809163 0.289960 -0.269242 -0.976329 0.185965 -0.733613 -1.024831 -0.349603 0.261050 -1.044193 0.682911 0.605660 0.228242 -0.352739 -0.362032 0.665683 0.686064 -0.300741 0.804159 0.612346 -1.052804 -0.333963 -0.540901 1.153536 -0.495458 1.096353 -0.011721 -1.256941 -0.883170 1.012341 0.423259 -0.617537 -0.806223 -0.138592 0.169138 -0.404723 0.490229 -0.141723 0.906195 -0.470650 -0.357810 0.536221 -0.347734 0.763286 0.118384 -0.117745 -0.273237 -0.255930 0.352556 -0.591112 -0.719562 0.946483 -0.506400 0.373607 -1.023210 -0.199447 0.222624 -0.135970 -0.189359 -0.870986 0.325851 0.485779 0.019911 -0.321849 0.077522 -0.804497 0.551216 0.825623 -0.019833 0.459445 -0.271636 0.090558 -0.030760 0.230089 -0.139144 0.207301 -0.982556 0.285747 -0.192964 0.106736 -0.488100 -0.186036 0.832750 0.222560 0.348877 -0.707201 1.104645 0.417745 -0.688012 -0.313451 0.309935 -0.198122 -0.844402 0.227192 0.293408 0.223980 0.022499 0.194838 0.368488 -0.408772 -0.801440 -0.475400 -0.459031 0.427940 -1.088422 -0.059773 -0.027194 -0.049348 -0.405755 0.594258 0.442340 0.124113 1.067895 0.409243 -0.201786 0.301394 -0.892967 0.720496 1.604028 0.462165 -0.791923 0.378133 -0.764568 0.385914 0.347176 0.102324 -0.232655 0.724484 -0.408291 0.116403 -0.175048 -0.451515 0.987291 0.702252 0.534450 -1.205723 0.291248 -0.684495 0.130993 1.309321 0.970988 -1.347501 0.363543 1.181863 -0.222830 -0.129163 0.284355 -0.679594 -0.561568 -0.528690 0.287532 0.416598 -0.888174 -0.797063 0.058973 -0.738957 0.923945 0.239183 -0.085838 -0.095928 -0.566388 0.048381 1.418120 0.142077 -0.051109 0.052548 -0.211306 -0.539085 -1.092500 0.013650 0.728004 -0.623373 -0.335599 -0.598521 -0.166443 1.145747 -0.843635 0.159138 -0.958799 0.237623 0.408043 -0.043431 0.439220 -0.942617 -0.444995 -0.422115 -0.287749 0.256312 -0.911394 0.094740 0.716216 -0.505326 0.968308 0.494114 -0.354425 -0.210179 0.755847 -0.047642 0.909722 0.115323 0.713176 0.256309 0.902196 -0.632914 -0.031988 -0.486932 -0.354402 -0.448661 0.968328 -1.151651 -0.050606 0.694840 -0.382228 -0.793440 0.822814 0.611327 0.532700 -0.362256 -0.330305 -0.257678 -0.109848 -0.439768 0.274868 0.529160 -0.690204 -1.014773 -0.230171 0.747719 -1.052599 -0.496897 0.437256 0.229984 1.187923 -0.710842 0.661520 0.416105 0.196633 -1.629885 -0.712407 -0.044134 -0.430908 -0.458900 0.211579 -1.248554 -0.931812 -0.443455 0.515306 -0.932083 -0.481412 0.211495 0.974717 0.145174 -0.068233 0.558082 0.182564 0.309947 0.000527 0.120964 0.224379 0.254261 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = -0.654995 0.515184 0.023282 -0.788719 2.333250 0.095281 0.114847 1.113391 0.205351 0.594401 -1.586997 0.032001 0.329076 -0.845828 0.321811 0.174315 -0.064204 0.340321 -0.756134 -0.498429 0.351539 0.449351 0.007569 -0.841805 -0.140111 -0.755380 -0.584286 0.136031 0.042952 0.315304 -0.749086 0.219091 0.958195 -0.321449 0.580629 0.639926 1.276680 0.736756 -0.273891 0.701812 1.116059 0.263014 -0.297950 -1.052830 0.128692 -0.826078 -1.251394 -0.385928 0.243728 -1.260454 1.017106 0.636358 0.327905 -0.385728 -0.234991 0.847751 0.611367 -0.349966 0.838865 0.752106 -1.429870 -0.073521 -0.690757 1.481757 -0.532342 1.559058 -0.093175 -1.556530 -1.176215 1.222251 0.754843 -0.863933 -1.038133 -0.216244 0.118044 -0.398144 0.589562 -0.192258 1.294479 -0.436117 -0.317798 0.710991 -0.314735 0.743647 0.126584 -0.175024 -0.489051 -0.306695 0.367664 -0.596766 -0.933034 1.189698 -0.663236 0.490605 -1.413889 -0.551394 0.235843 -0.125726 -0.123290 -1.100529 0.424118 0.616203 -0.038980 -0.227546 0.072825 -0.847607 0.595233 1.187292 -0.114545 0.470569 -0.606914 0.219099 0.042898 0.201104 0.023486 0.372578 -1.118311 0.393032 -0.363588 0.099121 -0.539528 -0.266204 0.935903 0.394100 0.345521 -0.648403 1.285633 0.408106 -0.968676 -0.249197 0.357400 -0.211983 -1.047321 0.256201 0.251352 0.415296 0.015369 0.244261 0.397842 -0.555357 -0.716138 -0.733049 -0.512347 0.145855 -1.081961 -0.133541 0.020972 0.050526 -0.547526 0.808629 0.559218 0.067929 1.243275 0.403427 -0.118517 0.018013 -1.027064 0.754420 1.713802 0.418728 -0.882598 0.444143 -0.881889 0.439029 0.405132 0.138479 -0.486187 0.948303 -0.441856 0.137618 -0.447461 -0.595264 1.140268 0.947418 0.495302 -1.379077 0.198128 -1.059130 0.092059 1.525334 1.264406 -1.553508 0.138839 1.354436 -0.039220 -0.360931 0.391231 -0.828503 -0.784187 -0.481758 0.295445 0.391331 -0.927227 -0.916616 0.264898 -0.833859 1.032046 0.266641 -0.244537 -0.249300 -0.679482 -0.114558 1.690584 0.152403 -0.068655 0.200772 -0.131958 -0.301367 -1.249830 -0.020642 0.995940 -0.599831 -0.428167 -0.609256 -0.010879 1.249783 -1.138519 0.218589 -0.789233 0.088337 0.454238 -0.313988 0.535584 -1.256572 -0.487316 -0.724542 -0.298210 0.284122 -1.096551 0.001785 0.911550 -0.478903 1.131756 0.813195 -0.634991 -0.495856 0.936043 -0.006240 1.043672 0.133659 0.562691 0.322701 0.994449 -0.751688 -0.144628 -0.601969 -0.324828 -0.557825 1.166308 -1.294313 0.009785 0.596166 -0.502625 -0.743639 1.041086 0.733873 0.424358 -0.454384 -0.310300 -0.362508 -0.156577 -0.579575 0.241657 0.580301 -0.852147 -1.236510 -0.225539 0.841043 -1.439199 -0.557607 0.445185 0.281327 1.398131 -0.765447 0.784947 0.582749 0.182729 -2.070914 -0.732974 -0.149341 -0.637042 -0.551900 -0.053986 -1.219314 -1.268319 -0.491762 0.608089 -0.928223 -0.811927 0.444030 1.111870 0.301821 -0.117643 0.581365 0.183347 0.448500 0.108807 0.073219 0.268235 0.254953 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.290459 0.070467 -0.456533 -0.190574 0.855053 0.003319 -0.151442 0.424788 0.008008 0.334959 -0.481312 -0.077981 -0.026004 -0.600944 0.150045 0.489295 0.178230 0.135903 -0.173492 -0.200649 0.197179 -0.161144 0.116444 -0.262599 0.011566 -0.350302 -0.065709 0.069610 0.265384 0.018671 -0.541984 0.107430 0.422002 -0.021187 0.156270 0.190025 0.381372 0.346649 0.201356 -0.187614 0.207859 0.216831 -0.138835 -0.529866 0.208409 -0.368058 -0.343949 -0.170452 0.210362 -0.326388 0.341356 0.323297 0.036415 -0.145325 -0.356063 0.144443 0.398703 -0.030361 0.489222 0.237553 -0.280542 -0.388932 -0.145590 0.446184 -0.325279 0.230192 0.055041 -0.522218 -0.314497 0.405846 0.050361 -0.221636 -0.315494 -0.011205 0.096569 -0.232263 0.234900 0.016030 0.501130 -0.355118 -0.386018 0.162282 -0.349687 0.477174 0.039327 -0.021677 -0.087344 -0.113973 0.203895 -0.351613 -0.192344 0.238166 -0.196407 0.241521 -0.099414 0.147693 0.068981 -0.089876 -0.160873 -0.300578 0.077008 0.132244 0.080229 -0.084272 0.208496 -0.330882 0.372549 0.120804 0.123470 0.187668 0.358258 -0.127812 -0.064627 0.168595 -0.109847 -0.187250 -0.460855 0.081834 0.085430 0.051133 -0.240387 0.014623 0.453072 -0.131895 0.235876 -0.505819 0.457694 0.242940 -0.125836 -0.191171 0.143004 -0.097775 -0.331952 0.099130 0.271217 -0.079985 -0.008842 0.060005 0.209970 -0.093465 -0.691335 0.089996 -0.276547 0.459892 -0.603440 0.029603 -0.078503 -0.206541 -0.078605 0.142837 0.138759 0.181738 0.471114 0.273680 -0.267245 0.285121 -0.462187 0.441823 0.850941 0.199162 -0.410989 0.160165 -0.356045 0.214247 0.206109 0.087379 0.121731 0.146248 -0.017427 0.193054 0.101971 -0.046516 0.459133 0.078237 0.429924 -0.471232 0.119682 0.060414 0.150008 0.672745 0.193719 -0.635733 0.415573 0.546641 -0.211273 0.214832 0.059346 -0.245501 -0.094297 -0.449542 0.219338 0.340829 -0.561652 -0.320856 -0.096994 -0.352950 0.455244 0.103041 0.043055 0.166933 -0.344899 0.424723 0.668300 0.108693 0.041842 -0.103268 -0.263848 -0.485612 -0.515405 0.038510 0.155181 -0.364697 -0.039994 -0.348426 -0.266701 0.682834 -0.157560 0.042358 -0.714171 0.373246 0.212703 0.151240 0.136766 -0.225821 -0.225015 0.112398 -0.192037 0.131189 -0.399988 0.067967 0.185792 -0.371078 0.355022 0.167006 0.218665 0.144779 0.227724 -0.065096 0.421755 0.028500 0.449697 0.090265 0.457513 -0.254002 0.106197 -0.212980 -0.100902 -0.204361 0.378588 -0.554495 -0.102590 0.550512 -0.105610 -0.553722 0.238440 0.269362 0.483556 -0.111192 -0.343261 -0.047239 0.000407 -0.088651 0.250315 0.271348 -0.211307 -0.387310 -0.112306 0.336164 -0.279943 -0.202420 0.267413 0.045846 0.567423 -0.387999 0.233660 0.138293 0.212471 -0.503751 -0.350277 -0.018275 0.038343 -0.064693 0.428769 -0.813901 -0.304578 -0.205301 0.232818 -0.497644 0.194767 -0.156981 0.469077 -0.002185 -0.020429 0.331372 0.145241 0.007491 -0.085794 0.036092 0.096144 0.163830 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.191160 0.105499 -0.225405 -0.134092 0.538332 -0.037102 -0.121439 0.326969 0.040837 0.247860 -0.317723 -0.015411 0.004574 -0.406620 0.107791 0.265937 0.101765 0.112481 -0.076127 -0.124930 0.123238 -0.110264 0.046700 -0.174903 -0.007460 -0.359144 -0.011853 0.050881 0.176554 0.035894 -0.306659 0.094823 0.300866 -0.021285 0.139476 0.168949 0.249902 0.206979 0.187474 -0.086988 0.136277 0.129454 -0.090177 -0.337561 0.097025 -0.203286 -0.205393 -0.107964 0.129867 -0.223401 0.172477 0.206800 0.022935 -0.078653 -0.248470 0.124257 0.214613 -0.000365 0.317830 0.158672 -0.170724 -0.273713 -0.110440 0.350116 -0.248163 0.087378 0.003140 -0.326348 -0.149612 0.281554 -0.051882 -0.043771 -0.107549 0.002624 0.061937 -0.179875 0.146421 0.005702 0.250938 -0.179787 -0.214717 0.138987 -0.176903 0.317130 0.040995 -0.003970 -0.053039 -0.051524 0.126311 -0.233205 -0.125045 0.167698 -0.143170 0.092709 -0.011864 0.153624 0.145432 -0.066615 -0.001031 -0.202080 0.068381 0.052237 0.054628 -0.079179 0.131042 -0.221784 0.230944 0.062860 0.068238 0.176948 0.150053 -0.034445 -0.032855 0.117043 -0.071658 -0.120048 -0.340789 0.084135 0.032823 0.017168 -0.146040 -0.009742 0.293793 -0.028055 0.155064 -0.332434 0.299465 0.172236 -0.017898 -0.119127 0.091851 -0.058987 -0.204294 0.033974 0.174685 -0.025115 0.001188 0.041618 0.140712 -0.042870 -0.396602 0.021669 -0.173183 0.324737 -0.409323 0.027257 -0.044584 -0.100473 -0.065419 0.083965 0.093977 0.123180 0.315358 0.179575 -0.153196 0.182215 -0.316751 0.248880 0.545865 0.084659 -0.243387 0.140366 -0.237115 0.079893 0.117821 0.080377 0.068838 0.142026 -0.064457 0.051273 0.038825 -0.050335 0.306923 0.051066 0.229048 -0.293150 0.136859 0.024023 0.053802 0.438680 0.142134 -0.416097 0.265613 0.368506 -0.237598 0.103635 0.059825 -0.178662 -0.021201 -0.289198 0.122509 0.235656 -0.363696 -0.192519 -0.064853 -0.232207 0.291039 0.066209 0.066992 0.098369 -0.189657 0.236971 0.444334 0.092894 0.038409 -0.088685 -0.177413 -0.375949 -0.342971 0.006026 0.098281 -0.253488 -0.003362 -0.228624 -0.188040 0.421019 -0.125149 0.035843 -0.505644 0.221664 0.154074 0.131491 0.044689 -0.102985 -0.141306 0.073208 -0.137802 0.070785 -0.261908 0.108169 0.148368 -0.211040 0.278697 0.081666 0.071513 0.119327 0.159246 -0.091485 0.293232 0.001604 0.205830 0.112452 0.276405 -0.196875 0.042186 -0.141012 -0.157123 -0.146202 0.221153 -0.362072 -0.059470 0.348760 -0.091754 -0.330063 0.152116 0.190972 0.331753 -0.076011 -0.171973 -0.068170 0.001314 -0.108470 0.161169 0.171191 -0.103727 -0.249705 -0.027460 0.246521 -0.187533 -0.226887 0.154691 0.039106 0.347226 -0.262441 0.168681 0.108925 0.150853 -0.348060 -0.243956 0.009331 -0.000546 -0.080796 0.196303 -0.559191 -0.202630 -0.129427 0.151070 -0.378322 0.098216 -0.062011 0.326414 -0.030674 -0.038260 0.204094 0.060258 0.002133 -0.019282 0.041172 0.033597 0.120852 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.507876 0.363481 -0.302273 -0.480145 1.656242 0.097322 0.003239 0.774309 -0.176024 0.514630 -1.067075 0.070253 0.090699 -0.971140 0.266301 0.412306 0.144540 0.169128 -0.358390 -0.257354 0.317090 -0.147003 0.101661 -0.601213 -0.018994 -0.747153 -0.205112 0.078621 0.389773 0.234967 -0.637816 0.155992 0.693507 -0.104201 0.286550 0.416205 0.780238 0.577237 0.094871 -0.093041 0.513930 0.310828 -0.234743 -0.896175 0.230997 -0.647713 -0.798425 -0.302944 0.252973 -0.812804 0.354756 0.573322 0.134714 -0.305306 -0.481746 0.470213 0.760385 -0.252411 0.751427 0.496599 -0.690994 -0.596328 -0.368325 0.824002 -0.439923 0.652558 0.078707 -0.959601 -0.595185 0.814822 0.100715 -0.375227 -0.575207 -0.075965 0.210283 -0.395463 0.404617 -0.075274 0.531837 -0.496367 -0.398606 0.378697 -0.372936 0.794448 0.125463 -0.083338 -0.064380 -0.229384 0.355382 -0.572880 -0.523061 0.703527 -0.356380 0.254170 -0.652672 0.137118 0.218598 -0.126978 -0.238168 -0.675999 0.241427 0.361622 0.055639 -0.407085 0.076532 -0.771330 0.516248 0.479092 0.060405 0.463309 0.060146 -0.039696 -0.101011 0.242565 -0.298918 0.031369 -0.829282 0.186381 -0.027013 0.096336 -0.433711 -0.131593 0.740660 0.046962 0.331433 -0.748537 0.916586 0.463046 -0.419036 -0.362582 0.255564 -0.216323 -0.672057 0.208937 0.324719 0.059055 0.049138 0.159655 0.328355 -0.284595 -0.875640 -0.227137 -0.430395 0.718547 -1.112631 -0.007319 -0.064798 -0.130452 -0.294142 0.391331 0.318056 0.171077 0.883300 0.394656 -0.303675 0.576071 -0.748407 0.696355 1.516028 0.509498 -0.699304 0.300265 -0.651751 0.348411 0.281744 0.050656 -0.004218 0.483385 -0.384705 0.115591 0.086898 -0.333275 0.827111 0.465082 0.582497 -1.030007 0.397409 -0.319986 0.143265 1.091100 0.680035 -1.142668 0.583925 1.034682 -0.392773 0.116981 0.182483 -0.551519 -0.347025 -0.589968 0.275883 0.424621 -0.867430 -0.663379 -0.135207 -0.646009 0.812375 0.243998 0.098267 0.031511 -0.433495 0.207869 1.181004 0.125934 -0.016677 -0.075337 -0.270536 -0.771717 -0.925966 0.036522 0.467726 -0.651400 -0.231599 -0.579329 -0.322465 1.061118 -0.584172 0.104415 -1.110427 0.402699 0.349524 0.214432 0.340860 -0.637156 -0.429433 -0.127710 -0.287796 0.223042 -0.752973 0.185289 0.508012 -0.516007 0.818434 0.184607 -0.076646 0.058801 0.567477 -0.062438 0.760665 0.097103 0.870289 0.209535 0.839750 -0.542224 0.054153 -0.386343 -0.397563 -0.363227 0.797156 -1.025878 -0.086409 0.813009 -0.242361 -0.860678 0.625803 0.473895 0.648627 -0.302020 -0.363289 -0.147210 -0.048362 -0.299117 0.330633 0.475611 -0.541926 -0.794556 -0.263350 0.672132 -0.679969 -0.429708 0.443321 0.157461 0.997607 -0.645723 0.537355 0.268265 0.225677 -1.201132 -0.701989 0.058438 -0.226847 -0.359652 0.463266 -1.289743 -0.606281 -0.395101 0.406976 -0.948301 -0.159316 -0.013030 0.840719 -0.026229 -0.026761 0.515700 0.198203 0.153167 -0.109889 0.185692 0.173145 0.234242 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int*, int*, int*) = -1.564691 1.395419 1.535062 -0.987680 3.081067 0.323439 0.674648 1.402294 -1.050137 1.486647 -2.792238 -0.603071 -0.739944 -2.092493 0.371071 -1.458605 0.545843 -0.049964 -0.649989 0.550218 0.967047 -0.934547 -0.050790 -1.421275 -0.187239 -2.356345 -0.906750 0.134086 1.874299 0.171441 0.017274 0.352413 3.097028 0.081540 2.093289 1.559438 1.529462 2.057050 0.153424 -1.069625 0.151460 1.718499 -1.231616 -1.803906 0.050202 -1.742644 -1.554699 -0.472343 0.676841 -1.116504 -0.658719 1.653236 -0.080105 -0.015028 -1.410139 1.311189 1.859325 -0.143579 2.633374 0.846876 -1.218465 -1.136470 -1.678206 1.852368 -1.135889 1.190969 -1.030467 -1.764367 -0.265833 0.582695 -0.364491 -0.753506 -1.268981 1.028971 0.927891 -1.471332 1.255327 -0.347386 -1.209209 -1.832166 -1.610416 0.815135 -0.303293 2.163683 -0.081741 -0.109618 0.370600 0.172187 0.359285 -2.462301 -0.615906 2.110541 -1.569959 -0.497863 -1.274394 1.291054 0.190771 0.675005 -1.222608 -1.655668 0.816365 0.006763 0.239068 -2.082512 0.736537 -2.276731 0.729351 0.711483 0.254081 2.057318 0.659076 1.384007 1.463793 1.565954 -2.032778 -0.092995 -1.962747 0.532237 -0.813863 -0.186769 -0.510174 0.718980 0.353802 0.834790 1.823817 -2.720087 1.517767 1.260382 -1.039149 -1.275975 0.177818 -1.676351 -2.014839 -0.354779 1.085087 0.686617 0.232167 -0.793703 0.370535 -0.499785 -0.693226 -0.788392 -0.235430 1.925029 -2.779955 -0.357604 -0.253970 -0.331893 -0.927102 1.725848 1.101238 0.920906 2.146951 1.195430 -1.132865 1.256854 -2.140488 0.792488 3.375450 0.338792 -2.296119 1.562985 -1.951040 0.117710 1.061193 0.828896 1.063615 0.694432 -1.967324 -1.296546 0.326232 -0.559976 2.624025 1.087418 0.734257 -2.202762 2.511958 -1.350259 -1.171674 2.823508 1.270107 -2.323289 0.418367 1.712256 -2.227662 -0.480118 0.924108 -1.965883 -0.425511 -1.889150 0.107139 1.155015 -1.603845 -0.854543 0.241159 -2.348914 2.645453 0.373058 0.322490 0.051011 -1.412002 -2.543441 3.315304 -0.029481 -0.170533 -1.018982 -0.939212 -1.280367 -2.705425 0.285731 0.237202 -1.250750 -0.920431 -2.077710 -0.021187 1.743449 -0.943691 1.165884 -3.231168 -0.259779 0.952923 0.556434 1.068715 -0.931178 -1.446926 -0.318995 -0.951362 0.935012 -1.884386 1.772719 2.377363 -1.118869 2.379081 -0.648018 -2.067909 0.209901 1.321246 -1.612013 2.399760 -0.503299 2.054891 0.195482 1.899188 -1.833590 -0.575185 -0.191360 -1.311352 -1.094267 1.415743 -1.809841 0.057674 0.606535 -1.394300 -1.606211 0.904552 0.134282 0.578196 -0.220591 0.072592 -1.501100 -0.205982 -0.702650 0.657390 1.646260 -0.560707 -1.653969 0.294362 0.689945 -0.603770 -0.855495 0.433047 0.046567 1.969437 -2.130762 0.080797 0.321516 0.301302 -2.197347 -2.851695 0.143195 -1.686687 -1.379435 1.674562 -2.758138 -0.332103 -1.501326 0.053366 -1.932764 -1.107677 1.000242 2.871942 0.418032 -1.639216 0.869010 -0.074771 1.500386 0.031223 0.520780 0.175784 0.695772 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__copy_move::__assign_one(int*, int*) = -0.423849 0.296150 -0.325423 -0.295331 1.240970 -0.015997 -0.016423 0.747930 -0.360609 0.522616 -0.679574 0.194806 0.008925 -0.850678 0.186701 0.409578 0.203849 0.194752 -0.144338 -0.075077 0.266367 -0.271533 0.090287 -0.357323 -0.056432 -0.714613 -0.020961 0.101248 0.471846 0.066708 -0.449119 0.148925 0.679582 -0.056002 0.352712 0.385900 0.523190 0.446371 0.336726 -0.389104 0.199366 0.288778 -0.230116 -0.687483 0.170129 -0.443005 -0.554537 -0.221792 0.245066 -0.540417 0.136277 0.484869 0.017419 -0.128386 -0.477889 0.348245 0.604814 -0.269018 0.696941 0.299442 -0.451389 -0.654064 -0.240503 0.729162 -0.360974 0.157377 0.022283 -0.661192 -0.206878 0.509041 -0.072750 -0.252555 -0.275166 0.118265 0.187605 -0.423888 0.287815 -0.041277 0.207560 -0.553420 -0.410713 0.243245 -0.337307 0.677975 0.090837 0.008039 -0.045198 -0.087634 0.197904 -0.603965 -0.216208 0.526307 -0.323741 0.129594 -0.391326 0.381459 0.210720 -0.057489 -0.205447 -0.503029 0.162927 0.129780 0.118460 -0.453018 0.210985 -0.564344 0.292173 0.077053 0.164877 0.530522 0.204714 0.024989 0.045158 0.332329 -0.305049 -0.096675 -0.709226 0.217426 0.003920 0.064008 -0.307908 -0.008169 0.589219 0.032639 0.404551 -0.766678 0.590970 0.349780 -0.112086 -0.442496 0.151149 -0.219279 -0.432149 0.047873 0.353247 -0.063028 0.038205 -0.007766 0.275471 -0.083491 -0.813517 -0.182545 -0.276374 0.789993 -1.034360 0.054520 -0.089928 -0.145010 -0.168877 0.267102 0.280517 0.289059 0.701077 0.394719 -0.271864 0.674381 -0.683019 0.459318 1.163039 0.484149 -0.565308 0.360012 -0.564752 0.123230 0.244535 0.167153 0.214324 0.224831 -0.381020 -0.046167 0.333795 -0.093887 0.698269 0.195658 0.434220 -0.694556 0.429120 -0.041992 0.008291 0.894665 0.349493 -0.892647 0.631033 0.700293 -0.378651 0.195190 0.167736 -0.519905 -0.225394 -0.508657 0.201581 0.440565 -0.689414 -0.389184 -0.111696 -0.526427 0.671930 0.126826 0.087907 0.147853 -0.378755 0.241262 0.898429 0.145618 0.020167 -0.203624 -0.359363 -0.767520 -0.727464 0.036314 0.207108 -0.499395 -0.127045 -0.551195 -0.375761 0.808705 -0.227720 0.151205 -1.192114 0.354140 0.330361 0.312246 0.166262 -0.475269 -0.311002 0.057528 -0.204637 0.171323 -0.560254 0.340443 0.421998 -0.447395 0.608720 0.028785 0.049742 0.247078 0.336108 -0.287444 0.647670 0.058014 0.771516 0.197717 0.579532 -0.447870 0.068824 -0.270400 -0.241741 -0.290044 0.484421 -0.729112 -0.121972 0.640750 -0.214337 -0.743953 0.283803 0.322836 0.512890 -0.129985 -0.339083 -0.143326 -0.072078 -0.328267 0.302336 0.392625 -0.369710 -0.526614 -0.022942 0.442414 -0.324509 -0.262399 0.290197 0.167292 0.666266 -0.591899 0.300158 0.129213 0.274245 -0.766774 -0.706790 0.128624 -0.126688 -0.325136 0.464912 -1.149063 -0.353588 -0.339055 0.230554 -0.948006 0.038451 -0.045442 0.767559 -0.120307 -0.087091 0.417124 0.081488 0.106821 -0.117284 0.252566 0.073844 0.256624 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.336734 0.178115 -0.200504 -0.283498 0.689439 0.055194 -0.154314 0.247414 0.191355 0.356432 -0.542537 -0.231851 -0.140494 -0.577799 0.081937 0.171514 0.048745 0.189665 -0.205835 -0.093632 0.277587 -0.222253 0.160608 -0.329783 -0.008691 -0.366450 -0.118077 0.040393 0.161829 0.162135 -0.286331 0.006138 0.387748 0.057376 0.142214 0.192752 0.221308 0.550530 0.061800 0.166006 0.147999 0.317905 -0.160064 -0.657233 0.321249 -0.431661 -0.248367 -0.324295 0.221006 -0.504082 0.372633 0.321774 0.048345 -0.232878 -0.368219 0.069993 0.468828 0.204892 0.505544 0.231442 -0.190471 -0.198495 -0.301543 0.120811 -0.382831 0.344862 0.177856 -0.512362 -0.303458 0.312354 0.090293 -0.118943 -0.344182 -0.024564 0.106038 -0.212487 0.216376 -0.082507 0.101106 -0.188952 -0.331593 0.085160 -0.242746 0.459000 -0.051452 -0.024589 -0.051727 -0.065831 0.221051 -0.323703 -0.264886 0.280687 -0.070388 0.237266 0.010196 0.191581 0.065227 -0.100962 -0.206335 -0.070428 0.081870 0.231763 0.115680 0.030110 -0.170373 -0.409196 0.534421 0.239104 -0.029024 0.023202 0.332036 -0.075801 -0.110893 0.174056 -0.278817 0.098499 -0.488473 0.014326 0.096710 0.126917 -0.157584 0.051533 0.233614 -0.163045 0.195949 -0.444776 0.542961 0.216212 -0.189428 -0.203539 0.220085 -0.080614 -0.314805 0.065145 0.255638 -0.012865 -0.071242 0.034991 0.095572 -0.159308 -0.497810 0.013240 -0.213881 0.423461 -0.377649 0.026586 -0.124751 -0.275572 -0.051741 0.095364 0.075789 0.093018 0.485090 0.305757 -0.199013 0.065913 -0.363281 0.371393 0.835367 0.170023 -0.427952 0.091699 -0.135802 0.244337 0.239956 0.000000 0.158202 0.331764 -0.042200 0.061775 -0.128542 -0.166084 0.443571 0.309848 0.426563 -0.557789 0.240868 0.033581 0.161314 0.665228 0.315713 -0.531064 0.213897 0.466935 -0.472464 0.053826 0.005379 0.000000 0.033082 -0.347929 0.178183 0.257710 -0.495010 -0.517436 -0.196274 -0.420026 0.494233 0.057032 0.207735 0.133910 -0.417188 0.185394 0.585668 0.095710 -0.117594 -0.115224 -0.194423 -0.460345 -0.540118 0.122821 0.194922 -0.382528 -0.184610 -0.322827 -0.098779 0.559968 -0.219974 -0.053495 -0.381409 0.127840 0.188965 0.047716 0.232960 -0.254442 -0.227769 0.037055 -0.133145 0.280101 -0.142753 0.077714 0.368046 -0.349050 0.316848 0.262775 0.205673 0.122943 0.403637 -0.054796 0.424859 -0.130711 0.364282 -0.041039 0.427750 -0.142692 0.101661 -0.082068 -0.151987 -0.065522 0.400768 -0.479638 -0.095939 0.450124 -0.275142 -0.297353 0.328402 0.247732 0.484943 -0.060036 -0.094772 -0.176885 0.020846 0.014674 0.071360 0.344049 -0.048587 -0.492590 -0.193394 0.246986 -0.250361 -0.380096 0.250281 0.026786 0.532758 -0.373006 0.288409 0.084071 -0.072329 -0.480548 -0.207028 -0.009540 -0.083971 -0.169368 0.469112 -0.660180 -0.155490 -0.225913 0.291502 -0.362017 0.111781 -0.227607 0.377201 0.163065 0.026756 0.353705 0.123798 0.206856 -0.004528 -0.108188 0.124828 0.324169 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__make_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = -2.435244 0.819228 0.979941 -1.175441 4.797144 0.041015 0.817052 2.292417 -0.266098 1.913544 -3.932256 -1.822049 -1.235419 -2.721792 0.498078 -0.857844 1.014955 0.621039 -1.659181 -0.185604 1.697901 -0.340652 0.038511 -2.037765 0.046773 -1.476692 -1.858970 0.086019 1.606186 0.046846 -1.259308 0.667774 4.372656 0.450211 3.161812 2.281088 2.066816 3.440853 -0.340085 -0.061780 0.596799 2.719046 -1.675732 -3.340727 0.750068 -2.861668 -2.299100 -1.305642 1.035621 -2.194350 1.092529 2.280218 0.105236 0.232088 -1.360925 1.210248 2.563995 0.553164 3.662150 1.652979 -2.526435 0.050408 -2.274726 1.934997 -1.396442 3.010726 -0.733720 -3.723589 -1.579927 0.852979 1.192536 -2.900366 -2.573992 1.025076 0.759647 -1.428934 1.940959 -0.185423 0.427127 -2.488994 -3.035618 0.703751 -1.039418 2.826410 -0.565118 -0.619306 -0.318970 -0.324931 0.822005 -3.136744 -1.194600 3.104819 -2.285473 0.689066 -1.940650 0.196423 -0.465460 1.171619 -2.060115 -2.289570 0.907177 0.614086 0.294792 -0.779865 0.341174 -2.183625 1.649698 1.366358 0.130778 1.727747 1.577006 1.160437 1.725773 1.909839 -2.047889 0.593927 -2.753699 1.271378 -1.469873 0.118891 -0.380635 0.941250 1.294186 0.331891 2.280404 -3.341188 2.172350 1.503245 -2.086589 -1.763715 0.629705 -2.447642 -3.307997 -0.406365 1.882392 1.017287 -0.023298 -1.177649 0.596997 -1.172186 -1.490760 -0.967804 -1.035845 1.333407 -3.266422 -0.803193 -0.621129 -1.021446 -1.316243 2.390372 1.226859 1.272162 3.346651 1.849023 -1.905809 0.166263 -3.192579 1.439281 4.932044 0.235971 -3.320827 1.545128 -2.076083 1.094037 2.069163 0.983385 1.184553 1.032556 -1.187393 -0.125939 -0.261863 -0.666598 3.713709 2.256900 1.958481 -3.072626 1.988199 -1.773050 -1.295150 4.694418 2.146715 -4.040820 0.642041 2.295067 -1.564820 -0.590466 0.932755 -2.234668 -0.977207 -2.669264 0.573560 1.396627 -2.817250 -1.537082 1.129109 -3.384924 3.613140 0.475021 0.131113 0.293488 -3.164917 -1.904788 5.343470 0.447800 -0.306495 -0.864890 -1.296391 -1.234926 -3.840569 0.700846 0.648312 -1.363783 -1.523012 -2.672105 0.515741 3.430131 -1.390921 1.501664 -2.551616 -0.103614 1.182533 -0.488665 2.126236 -2.668994 -2.249042 -0.881872 -1.289244 1.850419 -2.422317 1.029285 3.520589 -1.861228 2.572120 1.230161 -1.604256 -0.449252 2.017327 -1.799546 3.124012 -0.721137 2.883501 -0.113630 2.886563 -2.329299 -0.816788 -0.512650 -0.067373 -1.603694 2.664661 -2.561110 0.205007 1.097004 -2.327833 -1.880554 1.581851 0.376309 0.944999 -0.329861 -0.599744 -2.556738 0.055674 -0.770009 0.725632 2.648943 -0.854495 -3.242595 -0.133975 0.538610 -1.777111 -1.159120 0.902945 -0.206737 3.403423 -2.827025 0.047101 0.873116 0.133574 -3.148625 -3.084728 -0.515366 -2.216367 -1.504373 2.382042 -3.136468 -0.998838 -2.054929 0.460579 -2.612445 -1.343629 0.518693 3.711130 1.600085 -1.562015 1.488875 0.555526 2.357228 0.217193 0.103371 0.396579 1.458474 +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.605990 0.858872 0.821610 -0.683191 1.461930 0.381386 0.082120 0.904751 -0.481950 0.702219 -1.372627 0.159521 0.022732 -0.798650 0.202064 -0.301267 -0.158780 -0.093814 -0.323834 0.137842 0.371499 -0.268684 0.008523 -0.720685 -0.218199 -0.879914 -0.312396 0.066387 0.705845 0.204079 -0.023976 -0.026816 0.998817 -0.134469 0.714572 0.485385 0.985498 0.844486 0.013924 -0.087651 0.291104 0.560825 -0.499614 -0.766627 0.154222 -0.822414 -0.587599 -0.131094 0.204728 -0.676622 0.464559 0.674643 0.045031 -0.400120 -0.516715 0.797499 0.589653 -0.440238 1.064448 0.384273 -0.816583 -0.722292 -0.881845 1.270127 -0.556548 1.052796 -0.293120 -0.717462 -0.316329 0.430115 0.168899 -0.234797 -0.688543 0.368807 0.202803 -0.640595 0.535260 -0.385115 0.033218 -0.552807 -0.452439 0.623519 -0.043616 0.850407 0.034695 0.034292 -0.077143 0.172091 0.112988 -0.971727 -0.475236 0.868883 -0.752830 -0.037736 -0.982655 0.282429 -0.187321 0.164056 -0.369204 -0.582813 0.523448 0.409903 0.100527 -1.188380 0.475209 -1.243858 0.702454 0.768648 -0.027259 0.639039 0.166215 0.615922 0.502950 0.660767 -0.454234 0.041955 -0.919888 -0.058115 0.128936 0.036791 -0.462898 0.218536 0.094538 0.328253 0.708265 -1.041256 0.914716 0.411748 -0.733242 -0.342167 0.102431 -0.546751 -0.849275 -0.049928 0.287429 0.390369 -0.038212 -0.100777 0.147312 -0.266524 -0.753431 -0.902099 -0.062220 0.734241 -1.233238 -0.153801 -0.066968 -0.035024 -0.424629 0.883988 0.609352 0.262721 0.801316 0.434648 -0.062032 0.275342 -0.785571 0.469531 1.375052 0.259308 -1.082099 0.698455 -1.110124 0.095491 0.392425 0.210277 0.193480 0.654585 -0.951371 -0.700296 0.312713 -0.395595 1.131254 0.590727 0.324236 -1.087356 1.000932 -0.760515 -0.394476 1.305939 0.659801 -0.976428 -0.169348 0.848440 -0.633473 -0.225235 0.428816 -0.794815 -0.300214 -0.502755 -0.071191 0.486039 -0.600608 -0.707497 -0.017745 -0.995955 1.348376 0.171899 0.228491 -0.234735 -0.508359 -0.905166 1.279040 -0.024734 -0.290413 -0.362524 -0.206202 -0.565013 -1.114372 0.121181 0.615172 -0.456647 -0.599747 -0.860229 -0.002001 0.600589 -0.663770 0.243355 -1.380089 -0.378282 0.416768 -0.095096 0.464676 -0.567666 -0.501072 -0.410057 -0.285886 0.527478 -0.841483 0.798851 1.147614 -0.438027 1.421735 0.274105 -0.788337 -0.229449 0.820820 -0.402840 1.090388 -0.287947 0.484332 0.020039 0.854044 -0.837435 -0.157458 -0.181769 -0.540341 -0.249524 0.586841 -0.767051 -0.017419 -0.117920 -0.773538 -0.530104 0.616794 0.170176 0.309949 -0.155764 0.055872 -0.212804 -0.405550 -0.540897 0.159501 0.675832 -0.601275 -0.734876 0.050497 0.309637 -0.529784 -0.248029 0.248929 0.179207 1.023137 -0.917371 0.333425 0.175479 -0.059543 -1.501785 -0.921117 -0.118182 -0.609610 -0.594593 0.501478 -1.226388 -0.402294 -0.618978 0.153365 -0.789631 -0.474308 0.396639 1.152417 0.150112 -0.653690 0.496315 -0.082861 0.764348 0.265364 0.101086 0.130413 0.192627 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.811367 0.701411 0.053784 -0.709769 1.908451 0.173353 0.072844 0.779209 0.009546 0.744635 -1.568806 -0.298332 -0.211640 -1.333563 0.210740 -0.017207 0.152063 0.391966 -0.490549 -0.113788 0.595997 -0.374827 0.215415 -0.907007 -0.018697 -0.943133 -0.440734 0.030093 0.295060 0.516553 -0.363280 0.138076 1.120380 0.213964 0.577898 0.655437 0.604690 1.315542 0.082415 0.519709 0.473296 0.683354 -0.388708 -1.566960 0.601601 -1.046894 -0.832413 -0.804141 0.324103 -1.408707 0.720077 0.808959 0.154788 -0.405295 -0.768576 0.260505 1.242837 0.161767 1.158052 0.662063 -0.871552 -0.381177 -0.674778 0.365298 -0.660362 0.967439 0.420499 -1.344493 -0.627495 0.827763 0.455714 -0.546411 -0.939132 -0.031025 0.247688 -0.503126 0.548292 -0.178147 -0.233137 -0.523015 -0.674018 0.335364 -0.372300 1.114116 -0.016169 -0.153319 -0.198459 -0.259643 0.519586 -0.846022 -0.727702 1.076714 -0.273902 0.469939 -0.682353 0.368963 0.186504 -0.080667 -0.546096 -0.555413 0.334300 0.555752 0.137159 -0.162413 -0.721873 -1.175464 1.075287 0.740862 -0.216514 0.389970 0.373816 0.125858 0.008539 0.404599 -0.872542 0.574158 -1.211430 0.280100 0.002089 0.136665 -0.352550 -0.046392 0.468230 -0.105817 0.467390 -1.036726 1.283620 0.677672 -0.693804 -0.637725 0.430585 -0.421345 -0.944355 0.137101 0.530696 0.203392 0.014977 0.049870 0.062385 -0.558850 -0.859162 -0.553300 -0.516508 1.130798 -1.125010 -0.051279 -0.194941 -0.409097 -0.388331 0.478711 0.295774 0.195616 1.229409 0.631216 -0.441975 0.274739 -0.946631 0.756940 2.107823 0.815328 -1.075455 0.339602 -0.375253 0.528161 0.539261 -0.019371 0.226083 0.665014 -0.561975 -0.109874 -0.262246 -0.580549 1.140810 1.094322 0.877486 -1.497909 0.867525 -0.255122 0.087872 1.630591 0.964453 -1.317608 0.377847 1.248280 -0.983493 -0.068266 0.176848 -0.377166 -0.308245 -0.684863 0.285056 0.443337 -1.155371 -1.153832 -0.256246 -1.097192 1.243686 0.270682 0.474318 -0.007406 -0.916380 -0.202785 1.668817 0.140989 -0.210436 -0.089406 -0.356795 -0.863495 -1.365038 0.201767 0.656792 -0.868378 -0.524304 -0.794881 -0.100217 1.270631 -0.797107 0.074400 -0.787198 0.075675 0.460428 -0.036810 0.572829 -1.184009 -0.684285 -0.170948 -0.256985 0.652156 -0.483315 0.372050 1.037397 -0.668529 0.956938 0.668132 0.122706 0.128912 0.976133 -0.179972 1.057519 -0.336164 1.226898 0.063933 1.135933 -0.545822 -0.016224 -0.265210 -0.357886 -0.380193 1.176200 -1.271098 -0.072731 0.970832 -0.662203 -0.774572 0.906677 0.505169 0.850017 -0.300853 -0.120990 -0.515442 0.011067 -0.188193 0.236774 0.828528 -0.387834 -1.286078 -0.456666 0.662712 -0.763326 -0.735049 0.562207 0.134391 1.279724 -0.921946 0.682878 0.242884 -0.188336 -1.450213 -0.829007 0.176748 -0.602757 -0.713452 0.834432 -1.588624 -0.502980 -0.625758 0.556410 -1.115916 -0.172169 -0.202072 1.116055 0.290404 -0.041507 0.688247 0.259635 0.569841 -0.054870 0.048576 0.246203 0.762349 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +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 >) = -5.276410 3.529796 3.686714 -2.825450 9.758446 0.889167 1.765985 5.680353 -2.749825 4.291616 -8.949971 -1.976696 -2.090193 -5.193238 0.626523 -2.822802 1.331852 0.774464 -2.901033 0.712473 3.550686 -1.326164 -0.395014 -4.702900 -0.223957 -3.021268 -3.853465 -0.179356 4.167652 0.056714 -1.747534 0.853140 9.141992 0.926337 7.265441 5.363863 4.012300 7.341128 -0.275964 -0.102790 0.519750 5.953921 -4.027273 -6.695256 1.100671 -6.512320 -4.222326 -2.489148 1.738058 -4.505867 1.824051 4.893514 0.008765 0.668520 -2.919283 3.105612 5.248038 0.540999 8.182861 3.231951 -5.773226 -0.365440 -5.054789 4.223828 -2.465844 6.566522 -1.380303 -6.921911 -1.734535 0.911215 2.711392 -6.852926 -4.741226 3.058603 0.717213 -3.518319 3.985257 -1.232922 -1.670071 -5.509910 -5.668666 1.679019 -1.268771 5.847092 -1.076647 -1.230667 -1.847515 0.158112 1.344306 -7.334229 -2.498129 7.355402 -4.915739 1.051686 -5.151441 1.502715 -0.836861 3.191059 -4.259825 -4.169621 2.417523 2.002278 0.486186 -4.283844 1.085852 -5.806502 3.423303 2.614882 -0.537055 3.836882 2.386741 3.828533 4.958349 4.826258 -4.561930 1.956762 -6.298418 2.245339 -2.991683 0.218702 -0.400131 1.989637 1.565182 0.993850 5.261135 -7.149123 4.315392 3.113340 -4.739830 -5.180615 1.176758 -6.154649 -7.191936 -1.081300 3.321352 2.981301 0.218006 -3.209677 0.599365 -2.854010 -3.067524 -4.593430 -1.108539 4.185734 -7.509850 -1.965705 -1.060859 -1.220012 -3.260538 5.630601 2.960586 2.521973 7.520870 3.862658 -3.023304 1.227910 -6.389923 2.007887 9.852178 2.468823 -7.435350 3.749356 -4.508610 1.517577 4.294733 1.986120 2.718201 2.812778 -4.660368 -2.375402 0.682112 -2.057040 7.981485 5.067951 3.960006 -5.311779 6.312759 -4.088316 -4.289599 9.734313 4.407975 -8.094672 1.246598 4.351134 -2.175107 -1.232394 2.746587 -5.272711 -2.073833 -4.294342 -0.124346 2.355961 -5.525805 -3.449463 2.105608 -7.598620 8.792736 1.142630 1.214572 -0.064389 -6.702147 -4.997826 10.763501 0.869126 -1.318356 -1.890223 -2.044730 -3.271565 -7.961237 1.476797 2.047166 -2.992332 -4.121749 -5.997979 1.568360 5.894384 -3.430804 3.307753 -5.402892 -2.054780 2.452268 -1.217205 5.007230 -6.545178 -4.926244 -2.771005 -2.127472 4.964373 -5.096423 4.088998 9.018436 -3.220558 6.260207 2.789173 -3.203747 -1.013843 4.754721 -4.596090 6.788059 -1.703193 6.686770 -0.215163 6.020031 -5.558222 -2.344588 -0.753427 0.239725 -2.621550 5.467811 -4.851274 0.699066 0.888835 -5.608383 -2.839713 3.380134 0.027383 0.821117 -0.656563 -0.398179 -5.303479 -0.776558 -2.891450 0.827687 5.791364 -2.375720 -7.087136 -0.101860 0.337138 -3.260227 -0.717067 1.473250 -0.174583 6.630045 -6.144332 -0.357146 1.412571 -0.614823 -7.242927 -6.950529 -1.180849 -4.783707 -4.098818 4.617382 -6.427302 -1.730799 -4.669378 0.041043 -7.016559 -3.572851 1.590938 8.369823 3.549792 -3.820791 2.578268 0.493087 6.177087 0.965060 0.970592 0.154119 3.115425 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.489369 0.446648 -0.245973 -0.424934 1.303951 -0.074369 0.031179 0.658979 -0.222890 0.478093 -0.902944 0.114077 0.013217 -0.995156 0.229068 0.318236 0.190936 0.312839 -0.160916 -0.026068 0.347020 -0.311815 0.065986 -0.546192 -0.030645 -0.737914 -0.069670 0.067243 0.330225 0.159286 -0.384959 0.213309 0.721000 0.045035 0.378127 0.492164 0.483574 0.665869 0.327797 -0.170997 0.303130 0.340967 -0.202762 -0.925247 0.280942 -0.500291 -0.552467 -0.404187 0.213290 -0.706474 0.341787 0.539411 0.084563 -0.231655 -0.630448 0.267335 0.793911 -0.110731 0.717789 0.429554 -0.463398 -0.473000 -0.284611 0.550522 -0.464872 0.294126 0.218220 -0.742004 -0.244959 0.647607 0.130568 -0.318573 -0.469833 -0.029225 0.150286 -0.421807 0.335635 -0.058844 0.069086 -0.490693 -0.425804 0.276681 -0.313662 0.778581 0.075692 -0.041793 -0.167345 -0.152455 0.336795 -0.541396 -0.406827 0.572325 -0.242150 0.186196 -0.379860 0.466081 0.319229 -0.148121 -0.234885 -0.527174 0.238596 0.192043 0.117302 -0.229259 -0.092704 -0.660988 0.477137 0.270040 -0.031213 0.511106 0.219157 0.099544 -0.006000 0.231793 -0.367198 0.039875 -0.868702 0.201357 0.041096 0.055935 -0.268274 -0.088893 0.530668 -0.037874 0.305142 -0.748219 0.800266 0.472807 -0.184801 -0.420148 0.267548 -0.180793 -0.520163 0.035362 0.386018 0.055643 0.046418 0.119107 0.189250 -0.195855 -0.729177 -0.308974 -0.364025 0.948332 -0.989426 0.044528 -0.123863 -0.211621 -0.219560 0.209206 0.209052 0.199106 0.776263 0.422484 -0.309796 0.532235 -0.683173 0.497921 1.355387 0.580593 -0.625218 0.311372 -0.410208 0.194828 0.266312 0.100900 0.150689 0.270430 -0.468500 -0.115314 0.157624 -0.328957 0.720133 0.343640 0.492381 -0.882118 0.581218 0.029294 0.029144 1.063275 0.433665 -0.917725 0.523874 0.895064 -0.520095 0.061582 0.150101 -0.407878 -0.224026 -0.489107 0.253807 0.348543 -0.803052 -0.611299 -0.238674 -0.619826 0.693879 0.188209 0.160968 0.023537 -0.431412 0.173665 1.082350 0.130764 -0.048054 -0.137017 -0.329095 -0.695737 -0.856657 0.072630 0.323159 -0.559497 -0.199104 -0.535559 -0.303242 0.912120 -0.476153 0.020396 -0.964531 0.252001 0.347000 0.268568 0.180665 -0.653377 -0.393709 0.076337 -0.113730 0.220030 -0.443389 0.335858 0.569943 -0.482018 0.565571 0.281718 0.145022 0.271324 0.563136 -0.215015 0.697385 -0.063108 0.878530 0.208453 0.680432 -0.473733 -0.003314 -0.240004 -0.271251 -0.320533 0.615582 -0.854559 -0.081749 0.733015 -0.208907 -0.727180 0.502937 0.420669 0.604564 -0.214250 -0.246965 -0.126537 -0.017742 -0.273430 0.279157 0.475171 -0.318884 -0.684857 -0.170957 0.600312 -0.427795 -0.342980 0.367133 0.161568 0.823414 -0.622083 0.508746 0.133714 0.156566 -0.895462 -0.721830 0.253667 -0.241088 -0.372820 0.490586 -1.237880 -0.417504 -0.359546 0.396970 -0.968359 0.051230 -0.114979 0.740334 -0.043338 -0.013420 0.456960 0.097248 0.169409 -0.101462 0.178220 0.062488 0.427443 +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.682276 0.470882 -0.132671 -0.597680 1.619689 0.022520 0.002452 0.708103 0.511287 0.454736 -1.442269 -0.540622 -0.031037 -0.919536 0.231109 0.220307 0.113898 0.497662 -0.582015 -0.320011 0.523993 0.099637 0.025196 -0.848121 0.036670 -0.281077 -0.608539 -0.006770 -0.117701 0.249162 -0.655066 0.261374 1.007816 0.214844 0.716926 0.655465 0.674286 1.149644 -0.050493 0.952803 0.632226 0.576248 -0.318992 -1.345748 0.522323 -0.917843 -0.646190 -0.699005 0.191746 -1.039215 1.559897 0.611831 0.228435 -0.244012 -0.475442 0.085918 0.779618 0.345446 0.899480 0.727271 -1.019747 0.348564 -0.555642 0.526024 -0.570067 1.332949 0.403141 -1.339946 -0.819105 0.736442 1.190099 -1.017143 -1.177774 -0.145255 -0.065621 -0.269404 0.628759 -0.106614 0.739783 -0.447692 -0.736220 0.406718 -0.418268 0.825949 -0.096536 -0.262428 -0.794521 -0.294910 0.467177 -0.570416 -0.777187 0.836182 -0.400408 0.761104 -0.736444 -0.204249 0.026870 0.036389 -0.400706 -0.646992 0.380776 0.542949 0.031471 0.564857 -0.406061 -0.679823 1.035833 0.937854 -0.348306 0.146128 0.369597 0.208541 0.198410 0.216881 -0.208776 0.396387 -1.003637 0.313538 -0.096747 0.077715 -0.172943 -0.065697 0.471422 -0.206451 0.280895 -0.643756 1.060413 0.541462 -0.824974 -0.295463 0.425071 -0.422354 -1.025434 0.045177 0.433753 0.440385 -0.048897 0.087521 -0.010501 -0.621615 -0.683369 -0.610299 -0.559310 0.452425 -0.649684 -0.199978 -0.157321 -0.368071 -0.445196 0.539913 0.237271 0.116382 1.046418 0.480479 -0.378719 -0.563833 -0.826835 0.602510 1.659123 0.450762 -0.951752 0.229575 -0.270893 0.548596 0.574840 0.074329 -0.095254 0.488385 -0.164742 0.169243 -0.611519 -0.581181 0.977241 0.904988 0.756309 -1.110913 0.391058 -0.269335 -0.085153 1.659130 0.767576 -1.134162 -0.145013 1.069500 -0.206346 -0.222388 0.207577 -0.308373 -0.431317 -0.535444 0.322906 0.237480 -1.014782 -0.965660 0.130976 -0.955467 1.011132 0.259247 0.146742 -0.162982 -1.032621 0.075281 1.739973 0.136830 -0.178481 0.162199 -0.182448 -0.051441 -1.138618 0.169095 0.727457 -0.464856 -0.447754 -0.548146 0.184569 1.226790 -0.918017 0.017060 -0.051569 -0.116873 0.342483 -0.616205 0.496524 -1.354493 -0.633998 -0.347669 -0.084686 0.584060 -0.460875 0.022142 1.030290 -0.520412 0.555507 1.425370 0.259880 -0.261145 0.938457 -0.039872 0.858818 -0.361830 0.593434 0.061318 0.975957 -0.547479 -0.233983 -0.300733 0.219759 -0.436154 1.096941 -0.997292 0.085835 0.602272 -0.579731 -0.468019 0.917601 0.451711 0.547966 -0.324124 -0.266942 -0.438974 0.039310 -0.169190 0.166186 0.743577 -0.320705 -1.198777 -0.398741 0.491537 -0.961641 -0.333516 0.466793 0.011388 1.327865 -0.714878 0.575320 0.401984 -0.114027 -1.379032 -0.534913 -0.100988 -0.534587 -0.390029 0.467813 -1.094553 -0.794368 -0.502971 0.524367 -0.687155 -0.162669 -0.076094 0.906320 0.583536 -0.102609 0.515518 0.264756 0.601872 0.132915 -0.200295 0.185503 0.685799 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.477834 0.427397 -0.127995 -0.419768 0.995088 -0.032022 -0.028257 0.411524 0.081546 0.408474 -0.871530 -0.168780 -0.107195 -0.875910 0.160461 0.140333 0.116250 0.340379 -0.191944 -0.005506 0.392015 -0.313847 0.092621 -0.557899 0.003542 -0.542922 -0.152836 0.016387 0.158796 0.225765 -0.260293 0.142551 0.633180 0.170727 0.346884 0.435615 0.284394 0.805458 0.196284 0.209132 0.223159 0.421358 -0.197407 -0.978344 0.402438 -0.541057 -0.355840 -0.514026 0.194097 -0.720045 0.544924 0.475931 0.089734 -0.255522 -0.588977 0.062158 0.755909 0.206674 0.665835 0.410324 -0.343976 -0.174729 -0.344474 0.164031 -0.480244 0.417789 0.350496 -0.690224 -0.258135 0.485933 0.295160 -0.296764 -0.532180 -0.062825 0.090030 -0.317262 0.325340 -0.091349 -0.099754 -0.317505 -0.442103 0.176870 -0.259592 0.697049 -0.030200 -0.077072 -0.226491 -0.132905 0.352163 -0.441458 -0.430724 0.478659 -0.113898 0.275005 -0.170313 0.397386 0.221835 -0.116064 -0.274900 -0.276418 0.214355 0.260450 0.122591 0.083424 -0.377992 -0.601805 0.664802 0.355077 -0.173566 0.243190 0.356157 0.089951 -0.025582 0.189907 -0.415073 0.205387 -0.775418 0.121103 0.084069 0.092670 -0.143657 -0.031753 0.292206 -0.174587 0.220604 -0.607253 0.768073 0.431377 -0.246383 -0.340304 0.313709 -0.183324 -0.501027 0.005125 0.362636 0.119824 -0.017630 0.090735 0.038764 -0.267291 -0.550110 -0.273838 -0.332637 0.794542 -0.635541 0.005405 -0.163398 -0.313914 -0.179738 0.140542 0.095084 0.114817 0.689744 0.403967 -0.292142 0.132929 -0.529089 0.422299 1.225354 0.449495 -0.601093 0.178506 -0.138790 0.265612 0.307890 0.017236 0.169279 0.315204 -0.311972 -0.095960 -0.120197 -0.383815 0.622327 0.470697 0.518958 -0.817532 0.554496 0.099477 0.035533 1.013754 0.415960 -0.722963 0.249263 0.747984 -0.607552 -0.027685 0.069804 -0.116517 -0.076619 -0.410826 0.228236 0.239621 -0.724301 -0.705947 -0.262881 -0.627887 0.657360 0.153479 0.290859 0.008781 -0.530649 0.089865 0.985323 0.109463 -0.151350 -0.097582 -0.244504 -0.513917 -0.785532 0.145617 0.315464 -0.491544 -0.269370 -0.442295 -0.108678 0.790993 -0.477174 -0.080090 -0.464121 0.057969 0.274148 0.053470 0.241447 -0.631101 -0.393519 0.050997 -0.055078 0.350613 -0.171780 0.239393 0.636108 -0.433390 0.398472 0.507883 0.278244 0.204567 0.634155 -0.135941 0.602343 -0.238387 0.678731 0.057351 0.625330 -0.325716 -0.024356 -0.112438 -0.162279 -0.200156 0.603601 -0.705444 -0.046622 0.611704 -0.313019 -0.447229 0.534153 0.340554 0.585504 -0.164113 -0.091817 -0.212074 0.040768 -0.088436 0.135780 0.504388 -0.109047 -0.713409 -0.267746 0.442343 -0.365500 -0.398618 0.344882 0.065841 0.771119 -0.536259 0.473702 0.103756 -0.081009 -0.733154 -0.478786 0.179329 -0.266524 -0.334281 0.539235 -0.987192 -0.271874 -0.335191 0.405440 -0.687726 0.096199 -0.232915 0.573779 0.161516 0.019604 0.423165 0.120750 0.301356 -0.018073 -0.025616 0.081999 0.540415 +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 >&) = -3.059860 1.632060 0.890504 -1.646195 6.150057 0.193164 0.736382 3.507246 -0.790593 2.406954 -5.307419 -1.220544 -0.810094 -3.494341 0.595150 -0.368576 1.109476 0.877932 -1.875980 -0.058061 1.964191 -0.482411 0.018678 -2.952898 -0.068888 -1.861349 -2.125030 -0.059090 1.819631 -0.001253 -1.542511 0.637081 5.479000 0.724034 3.834289 2.895011 2.743982 4.275770 0.281010 0.003265 0.911206 3.168807 -2.032653 -4.073327 1.015588 -3.728710 -2.732017 -1.481321 0.824869 -3.031036 2.120929 2.711968 0.316165 0.113588 -1.857891 1.459023 3.676273 -0.078558 4.533989 2.019398 -3.420699 -0.314049 -2.424360 2.837229 -1.737891 3.729768 -0.206451 -4.415723 -1.721190 1.295223 2.328862 -4.224770 -3.539661 1.212779 0.560303 -1.907326 2.285194 -0.386585 0.620894 -3.197831 -3.342424 1.086331 -1.342546 3.440734 -0.504432 -0.655411 -0.990796 -0.360613 1.247117 -3.805391 -1.820789 3.917343 -2.876843 1.179112 -3.058964 0.526502 -0.566309 1.420585 -2.418442 -2.954634 1.220720 1.191152 0.203189 -1.191490 0.264374 -2.996560 2.299982 1.681206 -0.400252 2.403551 1.620803 1.865608 2.241502 2.361506 -2.333654 0.497533 -3.703590 1.337666 -1.366853 0.154136 -0.512031 0.730006 1.584588 0.511382 2.746022 -4.083496 3.049206 1.977501 -2.719762 -2.421440 0.705902 -2.994349 -4.079866 -0.366166 2.023747 1.399542 0.165251 -1.328250 0.552178 -1.611975 -2.555185 -2.735429 -1.236891 2.364727 -4.631762 -1.012063 -0.607619 -0.938103 -1.826161 2.908760 1.525218 1.230154 3.991395 2.067524 -2.044127 0.900190 -3.679099 1.770178 6.394839 1.586860 -4.259808 1.949867 -2.668658 1.219346 2.591092 0.949910 1.172969 1.068904 -2.168960 -0.705690 0.334109 -1.270572 4.549758 2.897919 2.439669 -4.071757 3.119696 -1.633805 -1.688593 6.422063 2.460839 -5.041129 0.951078 3.119947 -1.327724 -0.405034 1.109593 -2.814621 -1.570087 -2.836664 0.473191 1.273470 -3.353210 -2.263492 1.098831 -4.260802 4.739927 0.843685 0.082489 -0.134211 -3.732743 -2.084142 6.833703 0.619956 -0.553525 -0.821374 -1.321684 -1.575059 -4.861065 0.726528 1.258489 -1.887860 -1.848361 -3.341785 0.696283 4.296376 -2.255227 1.492466 -3.848452 -0.579983 1.344314 -0.725366 2.340541 -4.451194 -2.736014 -1.259837 -0.971137 2.363025 -3.058918 1.737435 4.780401 -2.182350 3.293171 2.017781 -1.423790 -0.554208 2.802534 -2.082173 3.736642 -1.197437 4.085129 0.029459 3.714523 -3.048068 -1.068243 -0.869735 0.364848 -1.936729 3.265683 -3.401513 0.224416 1.391252 -2.577465 -2.376112 2.259281 0.476905 1.296824 -0.682447 -1.021828 -2.545747 -0.060512 -1.140061 0.740537 3.192272 -1.321418 -4.242145 -0.358379 0.896070 -2.315403 -0.887758 1.066797 -0.043083 4.268832 -3.513756 0.462360 1.019922 -0.064117 -4.340059 -3.991202 -0.377006 -2.595635 -2.000833 2.726146 -4.402571 -1.639488 -2.448653 0.554022 -3.749115 -1.471735 0.564683 4.502198 1.803085 -1.931848 1.816918 0.506590 3.046288 0.435250 0.588041 0.204156 1.884687 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.629008 0.558831 -0.203435 -0.468584 1.676989 0.240868 0.210770 0.927267 -0.719247 0.777403 -1.071040 0.058634 -0.069634 -1.114972 0.175033 0.103654 0.093303 0.064896 -0.292135 0.033147 0.394624 -0.488645 0.127784 -0.560104 -0.094630 -0.923298 -0.101537 0.076709 0.838328 0.347383 -0.500631 0.003745 0.895636 -0.089641 0.512067 0.521466 0.564661 0.631935 0.198950 -0.514646 0.131118 0.526689 -0.431554 -0.925294 0.067075 -0.754335 -0.852014 -0.315581 0.331029 -0.864861 -0.058647 0.703859 -0.014329 -0.206205 -0.556572 0.573012 0.821264 -0.256032 1.046044 0.373570 -0.605031 -0.955866 -0.532029 0.950858 -0.327775 0.407302 0.009593 -0.902857 -0.231379 0.531763 -0.387850 -0.159197 -0.319597 0.313342 0.424608 -0.603812 0.388025 -0.218866 -0.419919 -0.563997 -0.442242 0.296568 -0.369937 0.969163 0.097007 -0.002779 0.135431 -0.021415 0.202062 -0.968312 -0.314904 1.031511 -0.374434 -0.036655 -0.745795 0.568486 0.271714 0.085951 -0.446569 -0.480209 0.251893 0.361856 0.141627 -1.146394 0.070645 -1.097145 0.413231 0.324741 0.200367 0.799719 0.190157 0.100983 0.143716 0.610452 -0.648879 0.148840 -0.852303 0.209780 -0.168944 0.145472 -0.405674 0.071814 0.646462 0.124551 0.639231 -1.073153 0.799761 0.519894 -0.305660 -0.769773 0.165289 -0.505374 -0.670660 0.114138 0.365309 0.014044 0.058771 -0.157734 0.307538 -0.174354 -0.950876 -0.217727 -0.172229 0.990798 -1.340072 0.007853 -0.092862 -0.057245 -0.300827 0.593369 0.468906 0.341752 1.042204 0.528474 -0.279441 0.805681 -0.824213 0.622691 1.669654 0.561682 -0.871150 0.500839 -0.827619 0.165293 0.245587 0.131877 0.358459 0.662032 -0.746927 -0.229450 0.281386 -0.213653 1.039814 0.594286 0.562564 -0.871433 0.891421 -0.514105 -0.136703 0.976443 0.799020 -1.129411 0.664466 0.832097 -0.847761 0.196960 0.327789 -0.725308 -0.168352 -0.694922 0.111937 0.553986 -0.825850 -0.589507 -0.193216 -0.838348 1.135164 0.183069 0.294059 0.052455 -0.504941 0.025155 1.160711 0.187454 -0.134586 -0.315194 -0.345439 -1.390383 -0.989642 0.107182 0.312330 -0.716752 -0.426022 -0.812866 -0.417212 0.904574 -0.350914 0.324270 -1.375995 0.320999 0.410675 0.492749 0.509002 -0.484723 -0.485735 -0.162477 -0.348855 0.439084 -0.757943 0.636291 0.731229 -0.509281 1.054595 -0.155076 -0.160434 0.220159 0.547611 -0.431294 0.929105 0.076708 0.960929 0.134755 0.855088 -0.537733 0.074476 -0.273402 -0.591590 -0.239256 0.761389 -0.922887 -0.133623 0.704607 -0.477899 -0.849821 0.430983 0.274893 0.597131 -0.148306 -0.245316 -0.450203 -0.166177 -0.542820 0.271386 0.613542 -0.499467 -0.734977 -0.085386 0.410077 -0.355184 -0.366594 0.365383 0.182299 0.856138 -0.830937 0.291404 0.121109 0.203942 -1.111965 -0.896810 0.020868 -0.263940 -0.661228 0.715615 -1.335998 -0.237478 -0.574462 0.155921 -1.330772 -0.412381 0.071768 1.138135 -0.105706 -0.194937 0.491612 0.083493 0.398491 -0.080686 0.351698 0.199028 0.289562 +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.627098 0.456948 -0.161953 -0.539663 1.604868 0.066672 0.012355 0.744010 0.196085 0.498155 -1.291776 -0.304714 -0.015872 -0.962532 0.232480 0.257437 0.132085 0.363478 -0.470481 -0.258842 0.459927 -0.050354 0.054902 -0.750144 0.019155 -0.493205 -0.441435 0.015498 0.119615 0.260830 -0.603169 0.209320 0.908759 0.124324 0.575744 0.575860 0.679023 0.950950 0.028139 0.532455 0.518790 0.509366 -0.306539 -1.189183 0.422597 -0.829215 -0.678766 -0.559561 0.215197 -0.957749 1.042286 0.610643 0.171283 -0.246281 -0.491957 0.212014 0.799992 0.126968 0.869197 0.626705 -0.866408 -0.053395 -0.491327 0.592698 -0.509439 1.022674 0.295413 -1.172408 -0.672031 0.712301 0.728477 -0.741182 -0.904329 -0.072795 0.052858 -0.333589 0.542113 -0.102834 0.520197 -0.481075 -0.623272 0.371939 -0.388812 0.838154 -0.020284 -0.191848 -0.485332 -0.253499 0.415073 -0.611841 -0.649683 0.798998 -0.376817 0.542610 -0.685772 -0.007321 0.098086 0.008499 -0.359009 -0.627040 0.327389 0.469702 0.050235 0.150005 -0.259373 -0.743967 0.842582 0.712485 -0.189354 0.290462 0.288210 0.125225 0.107143 0.266974 -0.314838 0.281804 -0.933552 0.271257 -0.065303 0.092306 -0.253872 -0.071357 0.545381 -0.118616 0.325927 -0.716130 0.980312 0.527608 -0.644916 -0.368657 0.352010 -0.391202 -0.888282 0.088185 0.404658 0.288819 -0.009204 0.073838 0.098390 -0.486632 -0.758291 -0.481474 -0.494711 0.614962 -0.855627 -0.128805 -0.133183 -0.286274 -0.388416 0.482827 0.266059 0.157460 0.986333 0.463531 -0.359968 -0.088953 -0.793407 0.617773 1.621379 0.506096 -0.870080 0.266211 -0.404379 0.458733 0.472160 0.062424 -0.003085 0.477192 -0.287606 0.107799 -0.308964 -0.475988 0.931719 0.754998 0.699809 -1.074256 0.461636 -0.262264 -0.041067 1.440313 0.722991 -1.124445 0.153414 1.021691 -0.340110 -0.071289 0.195911 -0.398516 -0.371002 -0.564789 0.285522 0.313556 -0.959557 -0.845041 0.015966 -0.862000 0.964082 0.251789 0.192482 -0.073520 -0.813078 0.085709 1.519842 0.135035 -0.131994 0.038666 -0.224370 -0.383346 -1.054840 0.132542 0.595990 -0.548608 -0.381160 -0.584657 -0.012875 1.147196 -0.755988 0.062601 -0.485941 0.062031 0.343849 -0.283720 0.446125 -1.083962 -0.573142 -0.252793 -0.163335 0.479745 -0.544066 0.138615 0.862292 -0.518755 0.665808 0.914159 0.146873 -0.105862 0.790222 -0.088405 0.826105 -0.213280 0.735679 0.103703 0.928642 -0.549423 -0.127376 -0.310138 -0.024807 -0.391574 0.976895 -0.987207 0.021824 0.681642 -0.484755 -0.607697 0.780618 0.420240 0.593210 -0.297909 -0.282123 -0.361849 0.007522 -0.220630 0.220520 0.663099 -0.382039 -1.042230 -0.342608 0.521578 -0.795584 -0.378402 0.452764 0.058950 1.177195 -0.703922 0.527168 0.327738 -0.008463 -1.270887 -0.625289 -0.026531 -0.427512 -0.414185 0.512088 -1.185901 -0.653744 -0.481252 0.443667 -0.830090 -0.152689 -0.071416 0.902144 0.341821 -0.088585 0.513523 0.233826 0.459449 0.038524 -0.030760 0.173342 0.539220 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = -0.433371 0.256491 -0.202231 -0.415777 1.188120 -0.024808 -0.068148 0.549087 0.296591 0.380663 -0.875807 -0.201986 0.039516 -0.625721 0.174875 0.260571 0.063384 0.322019 -0.382870 -0.254358 0.298577 0.085675 0.061531 -0.492165 -0.037727 -0.347641 -0.307279 0.069864 0.006540 0.115965 -0.509644 0.160974 0.636210 -0.019017 0.389277 0.390960 0.552872 0.634006 0.020072 0.414839 0.500686 0.287884 -0.189329 -0.797125 0.264721 -0.529038 -0.525778 -0.366896 0.195388 -0.672544 0.857225 0.400973 0.153224 -0.216014 -0.325992 0.233407 0.448921 0.080904 0.596122 0.433126 -0.659394 0.034452 -0.369563 0.604082 -0.437206 0.772282 0.117070 -0.882598 -0.586408 0.609318 0.557634 -0.541953 -0.671682 -0.109763 0.017293 -0.241638 0.369845 -0.071092 0.690638 -0.307083 -0.408627 0.315757 -0.305873 0.524270 -0.010072 -0.099965 -0.413155 -0.164282 0.274308 -0.378754 -0.483713 0.533275 -0.304056 0.424231 -0.455433 -0.120317 0.102613 -0.090390 -0.166354 -0.473183 0.215553 0.304948 0.050601 0.183963 -0.036966 -0.430761 0.566540 0.567840 -0.100216 0.159839 0.107036 0.080521 0.038488 0.143102 -0.042137 0.124882 -0.710959 0.194462 -0.065355 0.062776 -0.225505 -0.052894 0.455227 -0.030425 0.223377 -0.475238 0.742213 0.284507 -0.454080 -0.170500 0.267267 -0.132195 -0.587839 0.072256 0.281714 0.183375 -0.040698 0.108875 0.146455 -0.307351 -0.553752 -0.284238 -0.348867 0.277932 -0.531234 -0.053004 -0.079990 -0.195754 -0.234307 0.334021 0.215706 0.103528 0.714777 0.328113 -0.203093 -0.155702 -0.612609 0.453605 1.068918 0.226016 -0.578115 0.215004 -0.334647 0.297779 0.326297 0.105852 -0.091872 0.401453 -0.097636 0.124675 -0.294715 -0.301049 0.659787 0.459361 0.441363 -0.744527 0.156973 -0.236055 0.078041 1.040468 0.525943 -0.839134 0.075569 0.760807 -0.152603 -0.116702 0.153282 -0.286133 -0.289988 -0.380573 0.243228 0.269300 -0.657667 -0.596119 0.051779 -0.553860 0.630118 0.129085 -0.034542 -0.030448 -0.584141 0.175571 1.056731 0.121062 -0.061116 0.053156 -0.187361 -0.188857 -0.769084 0.063530 0.471882 -0.357201 -0.221507 -0.380720 -0.018347 0.822412 -0.546134 0.033540 -0.353695 0.076219 0.277387 -0.211296 0.269760 -0.708473 -0.323357 -0.187705 -0.123632 0.265007 -0.437118 0.010025 0.561110 -0.378253 0.462158 0.712150 0.043782 -0.116768 0.566863 -0.051334 0.612034 -0.094757 0.349908 0.110683 0.591197 -0.362195 -0.053474 -0.264971 -0.008401 -0.296925 0.645187 -0.718614 -0.024565 0.452477 -0.316471 -0.421445 0.553935 0.413148 0.408380 -0.198398 -0.231225 -0.218069 -0.021862 -0.188361 0.155073 0.419675 -0.284896 -0.732213 -0.164696 0.430445 -0.678997 -0.306688 0.297523 0.090033 0.850772 -0.491832 0.432950 0.280997 0.060300 -0.977653 -0.375052 -0.063581 -0.269713 -0.227127 0.236468 -0.810874 -0.615486 -0.296117 0.402352 -0.503964 -0.112635 0.005922 0.618087 0.270871 -0.048965 0.391587 0.139829 0.277495 0.059545 -0.089267 0.135718 0.348458 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.304611 0.357099 0.015328 -0.287005 0.687632 -0.040665 -0.019924 0.362516 0.015897 0.300948 -0.587663 -0.006345 -0.012836 -0.596153 0.129016 0.031892 0.057144 0.205046 -0.082135 -0.009098 0.229438 -0.207064 0.017936 -0.371575 -0.014805 -0.556053 -0.053977 0.017130 0.153601 0.193790 -0.125563 0.118782 0.427122 0.068562 0.244869 0.329548 0.238318 0.447851 0.177692 0.111331 0.165646 0.235982 -0.126964 -0.595281 0.177469 -0.307769 -0.262017 -0.291419 0.111254 -0.487164 0.194371 0.312456 0.059108 -0.151150 -0.384413 0.135076 0.446904 0.076180 0.422249 0.275631 -0.232373 -0.222451 -0.235205 0.238286 -0.328087 0.195590 0.155111 -0.433563 -0.114385 0.368078 0.017228 -0.044977 -0.199957 -0.028091 0.083580 -0.248920 0.201249 -0.065089 -0.151170 -0.155675 -0.208181 0.174870 -0.097623 0.470269 0.029067 -0.038356 -0.082188 -0.070911 0.219274 -0.301563 -0.285527 0.356298 -0.109847 0.060480 -0.117424 0.319381 0.277873 -0.082045 -0.043510 -0.234857 0.165450 0.138163 0.067728 -0.085416 -0.214681 -0.435937 0.373222 0.211765 -0.099824 0.271423 0.063897 0.103525 -0.023267 0.134864 -0.281964 0.125734 -0.541002 0.118060 0.011624 0.039447 -0.115621 -0.068770 0.233925 -0.000677 0.148935 -0.405651 0.506314 0.309468 -0.090865 -0.224677 0.185759 -0.123977 -0.320400 -0.004147 0.213551 0.102650 0.017126 0.072900 0.062375 -0.149395 -0.307657 -0.225580 -0.210269 0.559263 -0.507168 0.011897 -0.079826 -0.118758 -0.152622 0.104857 0.090233 0.078285 0.465706 0.249613 -0.158976 0.187464 -0.367328 0.251498 0.812074 0.264701 -0.357039 0.169878 -0.158579 0.100840 0.157370 0.027915 0.076456 0.279596 -0.312359 -0.148147 -0.059070 -0.276850 0.422440 0.307568 0.267495 -0.539508 0.441262 -0.015080 -0.027639 0.627979 0.325568 -0.505932 0.214604 0.528257 -0.508935 -0.039118 0.083223 -0.157956 -0.030451 -0.272520 0.115431 0.180710 -0.469383 -0.421900 -0.173587 -0.401137 0.426382 0.118061 0.233694 -0.015773 -0.249259 -0.011673 0.645390 0.091622 -0.069371 -0.091200 -0.155209 -0.463290 -0.516750 0.053820 0.209799 -0.364289 -0.143794 -0.300935 -0.122806 0.493637 -0.351074 -0.018336 -0.446504 0.054128 0.197029 0.125699 0.112739 -0.339567 -0.253789 0.009482 -0.079709 0.184201 -0.181727 0.244582 0.418700 -0.239755 0.378459 0.196481 0.025409 0.154985 0.406734 -0.134690 0.417490 -0.123690 0.384168 0.125512 0.402791 -0.279169 -0.041336 -0.103515 -0.281427 -0.158596 0.377546 -0.491564 -0.021136 0.409313 -0.208699 -0.306045 0.350605 0.240925 0.400535 -0.133853 -0.012559 -0.167005 0.017215 -0.148352 0.108665 0.307044 -0.089821 -0.452637 -0.125877 0.351743 -0.260637 -0.379527 0.209980 0.066257 0.477781 -0.361473 0.332861 0.098328 -0.004360 -0.544590 -0.368256 0.147034 -0.203492 -0.280949 0.233505 -0.706268 -0.195526 -0.216809 0.246941 -0.558225 -0.023465 -0.068314 0.419260 0.016618 -0.019101 0.258955 0.041961 0.164548 0.011381 0.057079 0.023733 0.313501 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.489369 0.446648 -0.245973 -0.424934 1.303951 -0.074369 0.031179 0.658979 -0.222890 0.478093 -0.902944 0.114077 0.013217 -0.995156 0.229068 0.318236 0.190936 0.312839 -0.160916 -0.026068 0.347020 -0.311815 0.065986 -0.546192 -0.030645 -0.737914 -0.069670 0.067243 0.330225 0.159286 -0.384959 0.213309 0.721000 0.045035 0.378127 0.492164 0.483574 0.665869 0.327797 -0.170997 0.303130 0.340967 -0.202762 -0.925247 0.280942 -0.500291 -0.552467 -0.404187 0.213290 -0.706474 0.341787 0.539411 0.084563 -0.231655 -0.630448 0.267335 0.793911 -0.110731 0.717789 0.429554 -0.463398 -0.473000 -0.284611 0.550522 -0.464872 0.294126 0.218220 -0.742004 -0.244959 0.647607 0.130568 -0.318573 -0.469833 -0.029225 0.150286 -0.421807 0.335635 -0.058844 0.069086 -0.490693 -0.425804 0.276681 -0.313662 0.778581 0.075692 -0.041793 -0.167345 -0.152455 0.336795 -0.541396 -0.406827 0.572325 -0.242150 0.186196 -0.379860 0.466081 0.319229 -0.148121 -0.234885 -0.527174 0.238596 0.192043 0.117302 -0.229259 -0.092704 -0.660988 0.477137 0.270040 -0.031213 0.511106 0.219157 0.099544 -0.006000 0.231793 -0.367198 0.039875 -0.868702 0.201357 0.041096 0.055935 -0.268274 -0.088893 0.530668 -0.037874 0.305142 -0.748219 0.800266 0.472807 -0.184801 -0.420148 0.267548 -0.180793 -0.520163 0.035362 0.386018 0.055643 0.046418 0.119107 0.189250 -0.195855 -0.729177 -0.308974 -0.364025 0.948332 -0.989426 0.044528 -0.123863 -0.211621 -0.219560 0.209206 0.209052 0.199106 0.776263 0.422484 -0.309796 0.532235 -0.683173 0.497921 1.355387 0.580593 -0.625218 0.311372 -0.410208 0.194828 0.266312 0.100900 0.150689 0.270430 -0.468500 -0.115314 0.157624 -0.328957 0.720133 0.343640 0.492381 -0.882118 0.581218 0.029294 0.029144 1.063275 0.433665 -0.917725 0.523874 0.895064 -0.520095 0.061582 0.150101 -0.407878 -0.224026 -0.489107 0.253807 0.348543 -0.803052 -0.611299 -0.238674 -0.619826 0.693879 0.188209 0.160968 0.023537 -0.431412 0.173665 1.082350 0.130764 -0.048054 -0.137017 -0.329095 -0.695737 -0.856657 0.072630 0.323159 -0.559497 -0.199104 -0.535559 -0.303242 0.912120 -0.476153 0.020396 -0.964531 0.252001 0.347000 0.268568 0.180665 -0.653377 -0.393709 0.076337 -0.113730 0.220030 -0.443389 0.335858 0.569943 -0.482018 0.565571 0.281718 0.145022 0.271324 0.563136 -0.215015 0.697385 -0.063108 0.878530 0.208453 0.680432 -0.473733 -0.003314 -0.240004 -0.271251 -0.320533 0.615582 -0.854559 -0.081749 0.733015 -0.208907 -0.727180 0.502937 0.420669 0.604564 -0.214250 -0.246965 -0.126537 -0.017742 -0.273430 0.279157 0.475171 -0.318884 -0.684857 -0.170957 0.600312 -0.427795 -0.342980 0.367133 0.161568 0.823414 -0.622083 0.508746 0.133714 0.156566 -0.895462 -0.721830 0.253667 -0.241088 -0.372820 0.490586 -1.237880 -0.417504 -0.359546 0.396970 -0.968359 0.051230 -0.114979 0.740334 -0.043338 -0.013420 0.456960 0.097248 0.169409 -0.101462 0.178220 0.062488 0.427443 +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.484964 0.340847 0.466669 -1.051561 3.173002 0.047282 0.277311 0.958091 1.351039 0.822258 -2.791675 -1.945923 -0.922835 -1.720569 0.437914 -0.762814 0.397022 0.802732 -1.643725 -0.796426 1.275833 0.426715 0.198602 -1.643128 0.196617 -0.614215 -1.486245 -0.055124 -0.190200 0.922273 -0.994397 0.545307 2.230219 0.399163 1.307398 1.124828 1.471949 2.666441 -1.063410 2.160281 1.202460 1.546278 -0.703154 -2.821507 1.131266 -2.027092 -1.481711 -1.273829 0.716274 -2.247217 2.054685 1.276631 0.485404 -0.412774 -0.662645 0.309229 1.559320 1.197696 1.810086 1.502474 -1.946981 0.726392 -1.612416 0.537937 -1.212647 3.110594 0.323726 -2.902472 -2.188710 1.246966 1.636526 -1.619539 -2.438541 -0.379225 0.354485 -0.344845 1.353582 0.007701 1.023612 -0.441303 -1.792847 0.459510 -0.775306 1.639386 -0.504762 -0.649301 -0.587810 -0.743748 1.031772 -1.152594 -1.554415 1.931579 -0.853039 1.367480 -1.597443 -1.001754 -0.297419 0.186993 -1.163239 -1.238565 0.608027 1.012656 0.133434 0.856307 -1.430126 -1.362100 2.120744 1.984130 -0.461925 0.147316 0.574221 0.146639 0.014631 0.402981 -0.919347 1.285079 -1.833121 0.697477 -0.675320 0.264244 -0.363967 0.145351 0.772469 -0.322269 0.601214 -1.371109 2.131516 0.961073 -1.919380 -0.394503 0.955901 -0.868593 -2.179721 0.059442 1.210732 0.810283 -0.289217 0.024742 0.204969 -1.229266 -0.701162 -0.492025 -1.249464 0.029580 -0.938446 -0.517006 -0.522000 -1.041415 -0.804663 1.125146 0.302065 0.272052 2.007830 1.087832 -1.100204 -1.217934 -1.743128 1.330899 3.314172 0.097076 -1.982306 0.245160 -0.496463 1.473786 1.263900 0.005651 -0.006477 1.536740 0.195719 0.745790 -1.915141 -0.985817 2.056147 2.441118 1.547222 -2.677115 0.272018 -1.496261 0.118396 2.977490 2.128486 -2.423631 -0.408552 1.970334 -1.190186 -0.901901 0.156302 -0.474849 -0.600154 -1.558487 0.811260 0.728766 -2.107974 -1.839535 0.579841 -1.999052 1.887229 0.374113 0.336621 -0.082211 -2.347833 -0.958241 3.385050 0.129669 -0.343708 0.041984 -0.560312 -0.231166 -2.492356 0.563090 1.121714 -0.870115 -1.188307 -1.137767 0.542624 2.502324 -1.599473 0.301890 0.187525 -0.097214 0.627363 -1.108268 1.570980 -2.105791 -1.412271 -0.862501 -0.703729 1.389575 -0.934474 -0.568409 1.937613 -1.230676 1.397961 1.983025 -0.694900 -0.831861 1.870169 -0.012144 1.688639 -0.653201 1.154746 -0.279161 2.028151 -0.997185 -0.377070 -0.389120 -0.040236 -0.925033 2.352272 -1.954638 0.183477 1.092298 -1.557564 -0.748895 1.828334 0.804505 1.113505 -0.518804 -0.101873 -1.441852 0.280640 0.074592 0.259436 1.705843 -0.453753 -2.483338 -0.907582 0.677173 -2.177532 -1.416552 0.991112 -0.217980 2.677247 -1.426795 0.836876 0.847678 -0.590754 -2.565309 -1.012878 -0.527675 -1.463971 -0.895540 1.287506 -1.667277 -1.134463 -1.028980 1.229234 -0.761224 -0.994342 -0.149231 1.672324 1.423681 -0.071959 1.257640 0.831705 1.394222 0.168882 -0.713077 0.668686 1.303325 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = -1.300753 1.482561 0.111090 -1.282849 2.872843 0.033419 0.366417 1.045764 -0.326082 0.972225 -2.620173 -0.137313 -0.170383 -2.419877 0.433986 -0.044606 0.223748 0.834069 -0.479776 0.268256 1.047672 -0.907450 0.163243 -1.694402 -0.003052 -1.510410 -0.466508 -0.028026 0.421042 0.788007 -0.280834 0.359074 1.665273 0.506403 0.931668 1.279812 0.745663 2.226321 0.356164 0.519141 0.650511 1.087998 -0.514448 -2.701975 1.023374 -1.480917 -1.179209 -1.484178 0.356647 -2.200803 1.115062 1.357407 0.287155 -0.759096 -1.593224 0.278171 2.390805 0.242807 1.717936 1.190034 -1.069729 -0.464323 -0.939231 0.237915 -1.070043 1.235285 1.110163 -1.837317 -0.579885 1.396735 0.888056 -0.927618 -1.586885 -0.213347 0.313420 -0.871877 0.848259 -0.346678 -0.987396 -0.910126 -0.951439 0.508192 -0.493424 1.939991 0.006333 -0.253546 -0.495849 -0.424633 0.991603 -1.196645 -1.329415 1.602315 -0.218761 0.559651 -1.029500 1.195059 0.654991 -0.290061 -0.932059 -0.923014 0.698490 0.817997 0.253227 -0.104715 -1.466308 -1.938176 1.620264 1.148675 -0.666404 0.885365 0.583341 0.447431 -0.011414 0.460934 -1.437441 0.944391 -2.125836 0.341312 0.133166 0.234029 -0.387693 -0.259699 0.667777 -0.286210 0.515087 -1.588042 2.204220 1.308274 -0.866115 -1.102052 0.846441 -0.589850 -1.430172 0.056287 0.851556 0.475548 0.087521 0.311925 -0.029490 -0.861947 -1.206864 -1.209521 -0.840413 2.426422 -1.914224 -0.018382 -0.384829 -0.659284 -0.645772 0.472853 0.313870 0.173076 1.923052 1.020080 -0.694950 0.705971 -1.340291 1.079936 3.467180 1.727675 -1.655001 0.493578 -0.332899 0.707997 0.731369 -0.107154 0.354360 0.836547 -1.392246 -0.579271 -0.168081 -1.336561 1.683958 1.586659 1.299584 -2.488393 1.901534 0.060353 -0.042926 2.668688 1.356158 -1.931076 0.656976 2.148394 -1.651818 -0.249108 0.258640 -0.457769 -0.473609 -0.881024 0.511403 0.392743 -1.877763 -2.056238 -0.826727 -1.759553 1.807119 0.531802 0.839497 -0.289805 -1.225544 -0.344222 2.698703 0.174031 -0.523437 -0.151622 -0.488531 -1.310263 -2.157021 0.389641 1.020212 -1.377446 -0.926980 -1.203309 -0.194640 2.023880 -1.589695 -0.219653 -1.165007 -0.084190 0.715387 0.212740 0.746113 -2.134476 -1.151325 -0.058263 0.012831 0.930783 -0.426044 0.820722 1.904693 -1.086386 1.168919 1.212143 0.508253 0.514547 1.885206 -0.314599 1.640514 -0.617034 2.387682 0.185360 1.793032 -0.966603 -0.192824 -0.266189 -0.573580 -0.550669 1.805896 -2.005942 -0.038708 1.616929 -0.775851 -1.263079 1.655163 0.879385 1.368125 -0.575218 -0.054917 -0.516729 0.068067 -0.333394 0.311438 1.388016 -0.523646 -2.025799 -0.880362 1.330196 -1.010457 -0.924107 0.955410 0.283656 2.081653 -1.444080 1.442502 0.171993 -0.379354 -2.213330 -1.542866 0.788352 -1.038292 -1.185362 1.375885 -2.652174 -0.698600 -0.980830 1.073584 -2.055174 -0.120692 -0.462015 1.581783 0.322852 0.107037 1.066876 0.272010 0.924907 -0.149176 0.174574 0.206615 1.480044 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.391944 0.489389 -0.065384 -0.347179 0.865509 -0.123542 0.023803 0.442219 0.026086 0.320381 -0.793422 -0.052282 0.015644 -0.788349 0.179572 0.138019 0.151174 0.343898 -0.064971 0.021350 0.291695 -0.257654 -0.018208 -0.501449 0.004671 -0.547005 -0.113384 0.010427 0.089660 0.148326 -0.194901 0.243340 0.622138 0.193748 0.425739 0.493837 0.227002 0.639861 0.347805 0.154874 0.226600 0.291699 -0.146088 -0.827602 0.264717 -0.381061 -0.297439 -0.456398 0.079284 -0.569685 0.523824 0.406836 0.081782 -0.138737 -0.565449 0.023421 0.617153 0.138761 0.546420 0.393559 -0.354510 -0.100659 -0.203476 0.239850 -0.399709 0.240173 0.304130 -0.583059 -0.085474 0.485286 0.327307 -0.292215 -0.419131 -0.055413 0.018592 -0.301376 0.283257 -0.038792 -0.148549 -0.298230 -0.363102 0.248789 -0.172283 0.623896 0.045604 -0.077544 -0.336795 -0.125876 0.307626 -0.377552 -0.369648 0.429854 -0.136871 0.186381 -0.157126 0.443178 0.337391 -0.092152 -0.117331 -0.377307 0.246605 0.123151 0.068262 0.138903 -0.299653 -0.507675 0.510519 0.288011 -0.204941 0.361138 0.258371 0.207413 0.104004 0.136101 -0.322369 0.109833 -0.723822 0.202067 0.039229 -0.029991 -0.090170 -0.100819 0.251124 -0.085929 0.171750 -0.521712 0.626454 0.461829 -0.140485 -0.299464 0.235277 -0.194432 -0.453125 -0.048102 0.302161 0.181023 0.062239 0.109887 -0.029258 -0.239062 -0.398168 -0.381941 -0.309890 0.830339 -0.618282 -0.002436 -0.101473 -0.195133 -0.231261 0.132604 0.098721 0.122855 0.598142 0.312915 -0.266214 0.093249 -0.501061 0.292500 1.067581 0.447538 -0.488892 0.231933 -0.120144 0.127486 0.227755 0.078436 0.094437 0.128640 -0.407461 -0.198084 -0.076391 -0.381071 0.530809 0.347412 0.372228 -0.639487 0.604721 0.168215 -0.106905 0.933225 0.276380 -0.603096 0.188238 0.729478 -0.498029 -0.051148 0.140630 -0.227339 -0.124192 -0.329691 0.167985 0.166034 -0.651083 -0.523430 -0.188156 -0.541850 0.533418 0.188344 0.233648 -0.089222 -0.393117 0.054878 0.984217 0.107607 -0.049909 -0.031844 -0.216445 -0.365689 -0.676334 0.057202 0.299103 -0.403626 -0.144378 -0.367193 -0.114286 0.687885 -0.494959 -0.033630 -0.399810 0.031001 0.259934 0.045334 0.070195 -0.645907 -0.363608 0.089877 -0.002839 0.217177 -0.180069 0.329667 0.557582 -0.304778 0.335643 0.541918 0.250274 0.225181 0.516448 -0.178561 0.531242 -0.239507 0.584481 0.202067 0.537720 -0.372208 -0.131282 -0.131647 -0.141191 -0.286916 0.516423 -0.644019 0.008911 0.546783 -0.187228 -0.440930 0.457162 0.307529 0.465339 -0.204141 -0.100764 -0.161006 0.046163 -0.171471 0.200449 0.400491 -0.101830 -0.586922 -0.163012 0.481944 -0.315692 -0.289382 0.278246 0.071426 0.661014 -0.474891 0.436074 0.121177 0.042249 -0.665340 -0.520585 0.264890 -0.285187 -0.305945 0.305522 -0.948060 -0.322683 -0.282837 0.312888 -0.713272 0.107780 -0.104235 0.565067 0.059333 -0.055089 0.282192 0.050206 0.186401 -0.003657 0.071710 -0.013294 0.490169 +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.434601 0.695060 0.168791 -1.047553 3.691662 0.078989 0.304183 1.916031 0.361748 1.038111 -2.731679 -0.762665 -0.342920 -1.824461 0.494243 0.009249 0.350767 0.837377 -1.345420 -0.703640 1.126951 0.405081 0.050068 -1.532155 0.040996 -0.875061 -1.175302 0.005096 0.099031 0.736736 -1.173920 0.584140 2.243378 0.228610 1.474328 1.294241 1.809026 2.228819 -0.451565 1.625650 1.155979 1.247500 -0.744801 -2.606579 0.965102 -1.910451 -1.665913 -1.081086 0.549948 -2.266067 2.216398 1.346028 0.404853 -0.282271 -0.613237 0.623080 1.498651 0.195876 1.854346 1.461066 -2.375713 0.040480 -1.322522 1.448705 -0.952901 2.736272 0.407754 -2.851521 -1.794898 1.368664 1.810261 -1.927087 -2.115052 -0.077329 0.152755 -0.588298 1.306786 -0.097859 1.289075 -0.926425 -1.589284 0.708409 -0.801247 1.700541 -0.231215 -0.530965 -1.018330 -0.647467 0.817428 -1.426184 -1.383503 2.127411 -1.104271 1.384371 -2.366004 -0.758467 -0.165777 0.291863 -0.958325 -1.600386 0.744980 1.070786 0.111394 0.196817 -0.844011 -1.475997 1.739650 1.638530 -0.309173 0.660790 0.216929 0.310243 0.299268 0.645233 -0.627443 1.102684 -1.997977 0.907701 -0.488594 0.269572 -0.525449 -0.063743 1.198471 -0.110337 0.786576 -1.536546 1.996673 0.960471 -1.754188 -0.809374 0.783616 -1.024576 -2.112283 0.033616 1.095274 0.731910 -0.166330 -0.042898 0.312578 -1.107113 -1.384517 -1.335116 -1.179076 0.608629 -1.791509 -0.441340 -0.399056 -0.677112 -0.940908 1.302569 0.632125 0.480610 2.135322 1.085296 -0.782269 -0.416901 -1.928773 1.236113 3.359063 1.044671 -2.003489 0.591808 -0.987815 1.141529 1.177704 0.168921 -0.053726 1.309057 -0.395598 0.426816 -0.938627 -0.851900 2.197635 2.177037 1.472515 -2.517888 0.510151 -1.342532 -0.232278 3.129861 1.975065 -2.631358 0.066224 2.005062 -0.428820 -0.516334 0.401487 -1.096470 -1.077678 -1.260859 0.646298 0.789686 -2.105534 -1.671986 0.658326 -1.954630 2.087845 0.435508 0.302214 -0.167020 -2.143566 -0.464596 3.406751 0.228171 -0.288023 0.067542 -0.563881 -0.541714 -2.365166 0.394872 1.339779 -0.874423 -1.115468 -1.310835 0.167126 2.522689 -1.546807 0.397882 -0.786188 -0.062744 0.742344 -1.075042 1.305309 -2.783503 -1.330346 -0.993200 -0.466757 1.269854 -1.281607 -0.050923 2.045695 -1.158168 1.627705 2.082031 -0.326013 -0.721701 1.704014 -0.271859 1.803763 -0.404204 1.514311 0.073790 2.009784 -1.319504 -0.400400 -0.676965 0.258193 -0.967210 2.286324 -1.999738 0.143784 1.088954 -1.463038 -1.087281 1.646600 0.814887 0.944629 -0.567401 -0.491123 -1.092038 -0.045309 -0.622700 0.401680 1.611442 -1.036026 -2.369632 -0.618190 0.739185 -2.146155 -0.822275 0.946493 0.120693 2.612196 -1.560747 0.860829 0.825955 -0.216991 -2.946210 -1.459813 -0.345268 -1.287174 -1.138470 0.971280 -2.198114 -1.455165 -1.100032 0.970493 -1.714566 -0.918808 0.029917 2.042633 0.944594 -0.134312 1.219761 0.643631 1.274464 0.120816 -0.102794 0.499411 1.195001 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -2.745842 2.955254 0.888372 -2.562524 5.923871 -0.123999 1.215195 1.906061 -0.540877 1.835719 -5.575934 -0.760944 -0.523495 -4.785417 0.891818 -0.970124 0.657436 1.657672 -1.145244 0.636740 2.120804 -1.547109 0.125884 -3.516161 0.019973 -3.136100 -1.348118 -0.044996 0.829333 1.391640 -0.226438 0.941872 3.966380 1.028637 2.475797 2.896269 1.603990 4.615029 0.397640 1.007558 1.451244 2.383999 -1.152190 -5.405293 1.690662 -2.969972 -2.679619 -2.969676 0.707278 -4.297843 1.763417 2.798658 0.608083 -1.191294 -3.114962 0.713690 4.861668 0.631105 3.585915 2.507535 -2.385117 -0.264268 -2.088860 0.635211 -2.137919 2.705127 1.675447 -3.945242 -1.251966 2.763045 1.824122 -2.153954 -3.455255 -0.330528 0.832878 -1.787101 1.888289 -0.587427 -2.160016 -2.067682 -2.103661 1.116243 -0.847326 3.930710 -0.057985 -0.637885 -0.827633 -0.903183 1.962126 -2.578812 -2.726449 3.547710 -0.801744 0.811455 -2.228441 2.206289 1.366263 -0.321418 -2.003554 -2.423594 1.487663 1.286081 0.396993 -0.046576 -2.816510 -3.798202 2.843068 2.486625 -1.346890 2.212163 0.936707 1.371324 0.482690 0.978609 -3.162350 1.921656 -4.301440 1.007136 -0.465427 0.229510 -0.618070 -0.402230 1.256675 -0.115374 1.212274 -3.307841 4.350653 2.773757 -1.932189 -2.154870 1.612536 -1.502653 -3.248723 -0.062138 1.788842 1.291320 0.327875 0.402317 -0.094783 -1.822552 -1.625052 -2.370241 -1.665216 4.472498 -3.838787 -0.230276 -0.714711 -1.209824 -1.541557 1.318577 0.753639 0.407611 4.047667 2.046218 -1.704267 1.184793 -2.977423 1.987346 7.066680 2.905541 -3.443351 1.214979 -0.818117 1.332246 1.617719 0.058085 0.669480 1.481115 -2.989475 -1.303666 -0.705252 -2.767019 3.633952 3.317777 2.316277 -5.178788 4.002623 -0.355905 -0.486170 5.621057 2.876869 -4.095109 1.037799 4.382033 -3.524587 -1.009264 0.726837 -1.346063 -1.187692 -2.047387 1.043749 0.719766 -3.735233 -3.832350 -1.166388 -3.762520 3.648654 1.100533 1.260994 -0.723350 -2.567213 -1.779270 6.016620 0.278185 -0.888958 -0.296136 -1.028580 -1.979553 -4.645055 0.730754 1.868537 -2.653296 -1.842778 -2.525276 -0.007336 4.127167 -3.401456 0.009385 -2.219066 -0.375300 1.481652 0.373291 1.582157 -4.389986 -2.532409 -0.307290 -0.165879 1.729875 -1.186376 1.667451 4.106350 -2.128239 2.420995 2.206101 -0.090815 0.813352 3.804218 -0.955835 3.501664 -1.289973 4.841426 0.472284 3.681083 -2.227721 -0.781295 -0.504655 -1.306317 -1.543169 3.756178 -4.119292 0.126080 3.032110 -1.636316 -2.591296 3.386375 1.649492 2.365755 -1.201830 0.047070 -1.595361 0.306015 -0.641179 0.708154 2.906499 -0.950684 -4.249117 -1.543593 2.721712 -2.183591 -1.999845 1.757845 0.441164 4.276781 -3.032630 2.670566 0.504209 -0.599023 -4.529339 -3.567263 1.640642 -2.748829 -2.475126 2.582902 -5.108867 -1.497121 -2.115555 2.017248 -3.918921 -0.853891 -0.304173 3.521792 0.893023 -0.244749 1.978945 0.475033 2.082598 -0.263999 0.393948 0.372013 2.939229 +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.369888 0.485462 0.200799 -0.980089 3.108959 0.348790 -0.031245 1.332304 0.659150 0.947529 -2.488448 -1.207678 -0.637604 -1.616001 0.315561 -0.170064 0.194061 0.641633 -1.405989 -0.711376 1.140176 0.241764 0.260231 -1.404215 0.077192 -0.371962 -1.274369 -0.035522 0.150679 0.643659 -1.126592 0.251387 1.902570 0.219376 1.160723 0.949774 1.494269 2.295538 -0.750231 1.695786 0.910840 1.375705 -0.768115 -2.532880 1.132102 -2.030900 -1.268877 -0.970201 0.675001 -2.011775 1.998911 1.208013 0.339984 -0.427112 -0.541869 0.422050 1.347841 0.689423 1.830265 1.231441 -1.996515 0.128439 -1.458391 0.753535 -1.004744 2.907172 0.365293 -2.582112 -1.866274 0.995880 1.508790 -1.762938 -2.088960 -0.040925 0.142461 -0.439074 1.173479 -0.190720 1.092183 -0.606221 -1.596735 0.445443 -0.791877 1.469663 -0.386379 -0.486685 -0.678684 -0.503196 0.777755 -1.326775 -1.266982 1.816437 -0.875169 1.486392 -1.665539 -0.850510 -0.553788 0.295229 -1.121629 -0.931653 0.565639 1.221689 0.168160 0.189261 -0.843310 -1.475321 2.010889 1.531383 -0.342572 0.025851 0.686985 0.045337 0.131819 0.680248 -0.741473 1.012526 -1.730199 0.477752 -0.391080 0.398649 -0.472303 0.192583 0.782923 -0.423216 0.764175 -1.407904 1.880671 0.716430 -1.786800 -0.761043 0.816452 -0.946888 -1.940317 0.162282 1.010545 0.584687 -0.318448 -0.147757 0.195636 -1.081084 -1.391909 -0.859517 -0.983122 0.314446 -1.224688 -0.433027 -0.446689 -0.881920 -0.708241 1.134671 0.498687 0.378648 1.965202 1.066321 -0.765369 -0.645769 -1.595026 1.241247 2.997184 0.582440 -1.969966 0.327286 -0.745519 1.288400 1.190128 -0.011247 0.140547 1.537406 0.008592 0.571056 -1.053096 -0.713203 1.934472 2.057006 1.618933 -2.215530 0.333548 -1.156329 0.020082 2.831639 1.704006 -2.379916 0.049248 1.654213 -0.451587 -0.389491 0.227613 -0.608613 -0.628336 -1.227777 0.534344 0.752158 -1.963360 -1.766840 0.460703 -1.863752 2.087691 0.318141 0.418103 0.061554 -2.247025 -0.488365 2.914452 0.211028 -0.449140 -0.043222 -0.476504 -0.544922 -2.157224 0.526874 1.237508 -0.912748 -1.205621 -1.198700 0.358214 2.245257 -1.257052 0.310978 -0.352542 -0.143354 0.594695 -1.041998 1.553671 -2.143414 -1.216855 -0.915846 -0.577975 1.485543 -0.992624 -0.252008 1.900990 -1.169962 1.546076 1.891142 -0.217133 -0.741098 1.638260 -0.084923 1.613659 -0.454585 1.301225 -0.315342 1.883153 -0.984675 -0.167448 -0.417106 0.278670 -0.563461 2.082567 -1.695005 0.044932 0.885738 -1.558915 -0.718062 1.518436 0.644591 1.011152 -0.392588 -0.331094 -1.052678 -0.034265 -0.127993 0.171907 1.573592 -0.781149 -2.298872 -0.792845 0.384621 -1.860098 -0.812545 0.923025 -0.058427 2.393250 -1.401728 0.649506 0.682879 -0.576987 -2.534372 -0.891445 -0.695267 -1.017492 -0.766452 1.259325 -1.738608 -1.024510 -0.997324 0.905883 -1.051187 -0.687127 -0.292909 1.699966 1.258054 -0.072385 1.227953 0.715608 1.378984 0.196015 -0.474152 0.572520 1.125384 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -4.804579 6.050570 2.447697 -4.869505 12.188239 0.660662 2.381873 5.621904 -2.323821 3.522683 -10.742778 0.359720 0.332284 -7.904868 1.776575 -1.143907 0.482583 2.377660 -2.389281 0.586371 3.444508 -1.632966 -0.252137 -6.451705 -0.277889 -5.434495 -2.719020 -0.142720 1.641883 2.783040 -0.972313 1.597415 7.073281 1.215805 4.836246 5.269782 4.656477 7.498011 0.470842 2.534888 3.296074 3.697393 -2.335101 -9.037354 2.571878 -5.758283 -5.536182 -4.494570 0.755595 -8.092750 4.656081 5.090107 1.210211 -2.116595 -4.492500 2.517861 7.704639 -0.954021 6.410033 4.762541 -6.441883 -1.449237 -3.978328 3.855986 -3.111043 6.625594 2.621057 -7.616229 -2.783700 5.324362 4.516173 -4.816632 -6.406702 -0.118940 0.928163 -3.302696 3.704388 -1.461260 -2.062058 -3.841410 -3.296277 3.095249 -1.220288 6.876846 0.372461 -1.213021 -2.596251 -1.527651 3.024693 -5.117750 -5.178865 7.453737 -2.573901 1.917618 -7.360680 2.409134 1.695927 0.113166 -3.181121 -5.360667 3.347101 3.307163 0.313652 -2.002524 -3.884214 -7.620366 5.095909 5.469477 -2.359885 4.437259 0.188906 2.981847 1.628787 2.234575 -4.516905 3.745420 -7.723866 2.046596 -0.633878 0.381768 -1.790207 -1.124956 2.721637 0.579955 2.494535 -5.827802 7.807147 4.802292 -4.780411 -3.993354 2.454434 -3.411945 -6.525632 0.117123 2.649931 2.955301 0.641611 0.674480 -0.029797 -3.672395 -3.938942 -6.708148 -2.898098 7.415552 -8.097745 -0.856442 -0.848856 -1.075127 -3.597393 3.875722 2.394520 0.867315 7.424183 3.339862 -1.997777 2.049654 -5.652893 3.640543 12.640066 6.355768 -6.687963 2.833705 -3.147472 2.298401 2.814378 0.135969 0.227893 3.377332 -6.285460 -2.668603 -0.471812 -5.023844 7.135904 6.700346 3.983964 -9.303239 7.002137 -2.586120 -1.775253 10.367200 6.003674 -7.889078 1.113768 8.092705 -4.115337 -1.741391 2.064181 -4.043229 -3.506023 -2.993764 1.205323 1.374318 -6.549152 -6.761462 -0.977591 -6.949304 7.527557 2.276208 2.206102 -2.209049 -4.527220 -3.520819 11.260677 0.401760 -1.669216 -0.050763 -1.253774 -3.378469 -8.222618 0.973572 4.837518 -4.348246 -3.856771 -4.813079 0.002348 7.251632 -6.822680 0.498481 -4.726043 -1.339305 2.738721 -0.775699 3.162682 -9.503877 -4.617500 -2.249826 -0.265660 3.429608 -3.551527 3.474402 7.937345 -3.362625 6.045000 5.055568 -0.878915 -0.087397 6.866254 -1.515206 6.637419 -1.916059 8.154607 1.237288 7.036018 -4.981779 -1.781484 -1.697060 -1.828472 -2.906130 7.257580 -7.514640 0.495815 4.253747 -3.548007 -4.686515 6.384603 2.784729 3.356347 -2.564233 -0.341004 -2.341829 -0.495751 -2.761248 1.377406 5.177180 -3.614988 -7.718461 -2.458623 4.572735 -5.143489 -2.379053 3.146337 1.260107 8.205055 -5.668875 4.702254 1.439785 -0.862367 -10.319511 -6.758386 2.083941 -5.119926 -5.074714 3.343817 -9.430389 -3.945801 -4.078972 3.027363 -7.994491 -2.848465 0.588916 7.223941 1.289648 -0.962575 3.440176 0.753444 4.169603 0.028565 1.426680 0.743438 4.436363 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -1.742060 0.385899 0.615701 -0.539558 3.814070 0.311613 0.587061 2.320660 -0.255659 1.714898 -2.712511 -1.491171 -0.664762 -1.185560 0.045531 -0.827794 0.700320 0.154242 -1.561148 -0.349974 0.862456 0.412252 0.016697 -1.118715 -0.317873 -0.654251 -1.628844 0.174857 1.410749 -0.333582 -1.352367 0.154688 3.564433 -0.179113 3.206505 1.616460 1.599174 1.759200 -0.448952 0.026178 0.515493 1.783262 -1.473523 -1.679751 -0.497229 -2.158267 -2.038292 -0.356310 0.768700 -1.230412 0.942961 1.334140 0.046001 0.897741 -0.182572 1.426308 0.954053 0.211929 2.959072 0.740083 -2.799416 0.418422 -1.766202 2.677035 -0.545983 2.354060 -1.561273 -2.977796 -1.239143 0.252295 0.706560 -2.487362 -1.530747 1.514043 0.701458 -1.246325 1.560251 -0.195706 1.123389 -2.233931 -1.957961 0.819505 -0.812394 1.519592 -0.311349 -0.178383 -0.546951 0.134897 -0.042707 -2.880894 -0.468166 2.584330 -2.436768 0.541189 -1.922282 -0.621569 -0.605634 1.533204 -1.368851 -2.017765 0.546006 0.387585 -0.011527 -1.423473 1.569355 -1.346907 0.695584 0.923286 0.553658 1.401271 0.577176 1.253522 2.282066 2.058709 -1.131536 0.290896 -1.523734 1.060110 -2.131842 -0.128103 -0.476237 0.948448 1.126101 1.025922 2.336071 -2.492989 1.034483 0.728947 -1.604000 -1.567713 0.002147 -2.297418 -2.532962 -0.241447 0.976429 0.770969 0.251522 -1.693038 0.508810 -0.815993 -1.076315 -0.428566 -0.117441 -0.251838 -2.123938 -0.726895 -0.043035 -0.061630 -1.194180 2.619747 1.535861 1.134575 2.445120 1.102469 -1.112678 -0.578558 -2.576625 0.658538 3.072148 -0.823818 -2.457853 1.680543 -2.196991 0.451168 1.633614 1.112474 0.751859 0.752670 -0.810264 -0.182984 -0.322220 0.259462 2.905392 1.416551 0.903976 -1.458961 1.182348 -2.393612 -1.483211 3.365896 1.807434 -3.237495 0.071907 1.114909 -0.521751 -0.313490 1.224596 -2.429390 -0.915885 -2.046220 0.042722 1.136436 -1.474832 -0.306894 1.945386 -2.451215 3.023600 0.208789 -0.575478 0.106130 -2.409950 -1.295191 4.001024 0.452623 0.073347 -0.403346 -0.849088 -0.784296 -2.774797 -0.000994 0.325949 -0.758214 -0.849427 -2.114888 0.672672 1.956108 -0.653840 1.990772 -1.970343 -0.319651 0.818143 -0.863967 1.564781 -1.732047 -1.386498 -1.567929 -1.404396 1.351586 -2.636652 0.951997 2.644714 -0.754993 2.492773 0.786326 -2.355021 -0.873369 0.880306 -1.839944 2.357670 -0.295664 1.045322 0.115034 1.887226 -1.735557 -0.679091 -0.756227 0.245871 -1.346652 1.959293 -1.618514 0.105069 0.061689 -2.068894 -1.224053 0.526430 -0.133644 0.073965 -0.090761 -0.539971 -2.767690 -0.272287 -1.481188 0.480341 1.546895 -0.865342 -2.194527 0.793113 -0.203743 -1.355030 -0.418208 0.070795 -0.231271 2.089672 -2.138817 -0.902718 1.075510 0.549966 -2.445896 -2.177135 -1.305331 -1.917341 -1.165925 1.070610 -1.759165 -1.160436 -1.386663 -0.506676 -1.606194 -1.892905 1.533798 3.545971 1.399482 -1.942619 0.693064 0.071507 1.986003 0.487899 0.423916 0.116133 0.553956 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.646702 0.474720 -0.380471 -0.613258 2.131528 0.165958 0.053081 0.956487 -0.332273 0.634391 -1.380324 0.116612 0.106492 -1.269564 0.340589 0.516536 0.193742 0.173204 -0.449319 -0.296553 0.408595 -0.238780 0.137700 -0.786954 -0.006635 -0.939507 -0.256090 0.083069 0.539286 0.326443 -0.792642 0.181398 0.855977 -0.116322 0.323514 0.512888 0.985519 0.739842 0.094261 -0.193773 0.628949 0.406733 -0.298401 -1.155443 0.309240 -0.848452 -1.038340 -0.388769 0.312507 -1.049659 0.363858 0.748498 0.167222 -0.406775 -0.628312 0.594323 1.051851 -0.366352 0.955042 0.636625 -0.860676 -0.823227 -0.454124 0.978561 -0.521919 0.824200 0.139098 -1.201892 -0.745976 1.032077 0.096377 -0.480377 -0.751283 -0.099603 0.294742 -0.500942 0.512313 -0.099149 0.578697 -0.661086 -0.500750 0.459170 -0.477252 1.040898 0.169467 -0.114420 -0.017837 -0.311677 0.470625 -0.738159 -0.672943 0.910702 -0.425479 0.305041 -0.880441 0.213006 0.254175 -0.154912 -0.368939 -0.864211 0.306845 0.485275 0.065077 -0.592347 0.049029 -1.037811 0.650158 0.600575 0.076547 0.607456 0.098138 -0.074884 -0.152651 0.308444 -0.452492 0.063094 -1.035210 0.212663 -0.015443 0.133320 -0.563949 -0.178907 0.941071 0.040572 0.415256 -0.966922 1.178132 0.619776 -0.552361 -0.496593 0.323827 -0.299541 -0.862853 0.291855 0.407564 0.059909 0.079773 0.209878 0.412144 -0.374413 -1.133709 -0.289474 -0.551842 0.988103 -1.470337 -0.011493 -0.084305 -0.165717 -0.380600 0.494283 0.399025 0.206767 1.121121 0.498550 -0.404386 0.841668 -0.928095 0.914058 1.979109 0.733751 -0.904107 0.360747 -0.830864 0.473294 0.347347 0.022879 0.016363 0.593789 -0.538932 0.147547 0.176422 -0.445186 1.047160 0.612797 0.771234 -1.354506 0.554225 -0.400863 0.191064 1.362756 0.876248 -1.454746 0.798177 1.330975 -0.512847 0.185191 0.218345 -0.705928 -0.456301 -0.755672 0.349657 0.521109 -1.114110 -0.865388 -0.218929 -0.829673 1.045150 0.334097 0.159930 0.029941 -0.522190 0.233190 1.490060 0.138417 -0.035612 -0.100634 -0.331906 -1.027759 -1.175830 0.057487 0.587380 -0.857362 -0.319717 -0.749883 -0.428682 1.360011 -0.748819 0.125020 -1.450725 0.534485 0.432619 0.320368 0.464356 -0.827877 -0.569606 -0.154568 -0.362804 0.290853 -0.958901 0.246486 0.635783 -0.671161 1.050835 0.158701 -0.081281 0.095783 0.724499 -0.051614 0.957117 0.140298 1.241797 0.246384 1.105811 -0.692227 0.081671 -0.483862 -0.528573 -0.450380 1.042364 -1.326338 -0.108829 1.074676 -0.282697 -1.142795 0.813393 0.580998 0.836045 -0.399966 -0.467193 -0.159114 -0.057829 -0.359277 0.429306 0.614434 -0.723956 -1.011927 -0.389590 0.866040 -0.833029 -0.514321 0.589152 0.198508 1.275219 -0.821084 0.690651 0.310974 0.270350 -1.520480 -0.928402 0.108634 -0.288982 -0.474268 0.659669 -1.665317 -0.726724 -0.515851 0.507846 -1.237345 -0.207558 -0.044671 1.064373 -0.066858 -0.010643 0.660908 0.271085 0.189488 -0.182797 0.274134 0.230111 0.285932 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.268552 0.141025 -0.050554 -0.229692 0.808418 -0.006858 -0.085747 0.540219 0.191702 0.338086 -0.488848 -0.058687 0.065801 -0.286919 0.090254 0.128555 -0.000169 0.180510 -0.268927 -0.227648 0.143983 0.176837 0.016087 -0.215599 -0.082539 -0.333183 -0.204714 0.085141 0.059331 0.040610 -0.338479 0.083983 0.473656 -0.120152 0.347069 0.263620 0.461018 0.274838 0.015119 0.297357 0.325340 0.148319 -0.168025 -0.367055 0.042524 -0.306980 -0.389291 -0.122012 0.146669 -0.403501 0.482836 0.229933 0.072599 -0.046073 -0.065839 0.294131 0.075734 -0.047388 0.403881 0.224133 -0.537567 -0.031393 -0.290305 0.686656 -0.256193 0.492719 -0.130769 -0.605917 -0.383443 0.346460 0.252074 -0.298069 -0.269070 0.051557 0.019979 -0.191331 0.233547 -0.063853 0.578919 -0.194479 -0.222235 0.259025 -0.156734 0.263619 0.006741 -0.032426 -0.256703 -0.037012 0.057832 -0.322915 -0.225796 0.416789 -0.332410 0.218818 -0.379349 -0.199007 0.070555 0.023503 0.022926 -0.350540 0.131257 0.162678 0.026158 -0.034704 0.189269 -0.225020 0.239970 0.316910 0.040642 0.168536 -0.115612 0.099334 0.121418 0.192087 0.058199 0.055535 -0.431418 0.212833 -0.155138 0.036886 -0.170792 0.003465 0.354497 0.143927 0.241975 -0.320312 0.374688 0.090776 -0.273427 -0.120804 0.099715 -0.131893 -0.372168 0.019612 0.152411 0.119572 -0.038882 -0.036385 0.163418 -0.144392 -0.343359 -0.226136 -0.157852 -0.015562 -0.382051 -0.045359 -0.012136 -0.023077 -0.170438 0.333045 0.242389 0.134923 0.483835 0.206243 -0.051112 -0.116462 -0.467020 0.222059 0.571494 0.015069 -0.350602 0.243845 -0.370261 0.091827 0.216232 0.165103 -0.081130 0.351633 -0.057185 0.052041 -0.181690 -0.069799 0.485714 0.284209 0.182325 -0.378882 0.022051 -0.343732 -0.039019 0.637793 0.390186 -0.594420 0.032768 0.387901 -0.037484 -0.094291 0.171396 -0.331321 -0.218259 -0.239778 0.094172 0.256150 -0.346072 -0.245667 0.210897 -0.339718 0.443963 0.030869 -0.083666 0.025304 -0.376242 0.055416 0.648842 0.120117 0.003672 0.001131 -0.131194 -0.150976 -0.467457 -0.005270 0.298931 -0.185891 -0.112816 -0.276553 -0.012205 0.457181 -0.265289 0.157834 -0.372751 0.026776 0.202119 -0.187367 0.163281 -0.407530 -0.156940 -0.245705 -0.160303 0.155897 -0.415902 0.054813 0.375742 -0.183593 0.428982 0.373876 -0.198650 -0.166467 0.271358 -0.150152 0.433796 -0.000531 -0.000973 0.122133 0.309190 -0.279204 -0.045346 -0.223399 -0.035112 -0.208276 0.356592 -0.400743 -0.021669 0.158459 -0.308045 -0.214559 0.248477 0.236925 0.164903 -0.078952 -0.152056 -0.255789 -0.075292 -0.263017 0.089105 0.236972 -0.228141 -0.436365 0.068164 0.182903 -0.483300 -0.250576 0.107865 0.089016 0.473427 -0.336090 0.159382 0.247130 0.116361 -0.693274 -0.253692 -0.161018 -0.194202 -0.195546 -0.021673 -0.467346 -0.449622 -0.199751 0.154187 -0.364290 -0.221965 0.170429 0.502648 0.165413 -0.140468 0.224472 0.039085 0.209549 0.110235 -0.009841 0.084526 0.134661 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -0.639019 1.146371 1.129164 -0.641904 0.653195 0.238047 0.127176 0.397050 -0.128884 0.463594 -1.437341 -0.322331 -0.256139 -0.926613 0.143507 -0.689104 -0.097319 0.138846 -0.062492 0.477507 0.568228 -0.648699 -0.101599 -0.926219 -0.041325 -0.638952 -0.328623 -0.143429 0.375424 0.356436 0.450028 0.080041 1.010054 0.490544 0.879660 0.661720 0.285829 1.360137 0.200019 0.481967 -0.117109 0.847399 -0.459644 -1.171967 0.514140 -0.842660 0.056872 -0.587415 0.019514 -0.652320 0.884201 0.646841 0.018252 -0.329798 -0.841107 0.038492 0.870287 0.359513 1.006745 0.471816 -0.368514 -0.115604 -0.806337 0.098178 -0.625936 0.849449 0.355721 -0.432244 0.181678 0.051540 0.598650 -0.203445 -0.783036 0.296326 -0.002987 -0.510476 0.553014 -0.361570 -1.113475 -0.315714 -0.645494 0.386565 0.117746 0.959676 -0.156231 -0.098614 -0.389606 0.161661 0.311466 -0.811270 -0.525294 0.627624 -0.371038 0.042613 -0.346414 0.801945 -0.099304 0.254127 -0.487146 -0.144636 0.603940 0.362551 0.128056 -0.347295 -0.489780 -1.221004 1.178718 0.717791 -0.551430 0.417890 0.778751 0.831463 0.619206 0.538785 -0.825841 0.368443 -0.930486 -0.122796 0.339308 -0.023634 0.001776 0.242275 -0.546641 -0.141522 0.466432 -0.889765 0.843880 0.683453 -0.579704 -0.356007 0.252460 -0.724279 -0.850882 -0.320857 0.392382 0.644721 -0.043571 -0.117197 -0.401977 -0.433775 -0.304925 -1.104769 -0.111551 1.198396 -0.725501 -0.239096 -0.230866 -0.343361 -0.433068 0.542582 0.207345 0.139795 0.605954 0.455149 -0.232781 -0.388865 -0.474312 0.188041 1.365651 0.383033 -1.080763 0.456130 -0.285837 0.132832 0.472939 0.038092 0.435574 0.342228 -1.010025 -0.989424 -0.064284 -0.736131 0.905722 0.789651 0.430389 -0.975088 1.537129 -0.053094 -0.695449 1.411867 0.340185 -0.454965 -0.646027 0.698298 -1.114764 -0.374484 0.264344 -0.183391 0.090940 -0.381907 -0.111387 0.126308 -0.652570 -0.923990 -0.298086 -1.153142 1.253776 0.242321 0.802368 -0.411430 -0.692368 -1.133108 1.373473 -0.074274 -0.494261 -0.330622 -0.114925 -0.280019 -1.037349 0.303233 0.468594 -0.365320 -0.706249 -0.714434 0.317070 0.456273 -0.791525 -0.081408 -0.338086 -0.857008 0.287488 -0.374553 0.379362 -0.788743 -0.703216 -0.119615 0.052007 0.823126 -0.018708 0.956226 1.467222 -0.349239 0.882087 0.942627 -0.097124 0.015585 1.070329 -0.405996 0.894653 -0.915155 0.505864 -0.149387 0.840299 -0.694838 -0.419453 0.196283 -0.268717 -0.129178 0.578973 -0.511089 0.162674 -0.161387 -0.857840 -0.072510 0.727385 -0.063829 0.409044 -0.137351 0.430020 -0.326247 -0.162978 -0.175472 -0.018768 0.860164 0.014124 -0.797547 -0.227270 0.132652 -0.123752 -0.238068 0.267859 -0.068888 0.947235 -0.821233 0.355724 -0.016812 -0.552542 -0.946556 -0.751866 0.160620 -0.761467 -0.627228 0.780424 -1.056598 0.091193 -0.619677 0.173432 -0.619317 -0.053617 -0.034724 0.857968 0.411190 -0.584530 0.360954 -0.082777 1.005915 0.365410 -0.148172 -0.031804 0.760026 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.763897 0.581233 -0.141885 -0.852736 2.633541 0.157420 0.128057 1.205444 -0.045367 0.716131 -1.748883 0.095445 0.270107 -1.172580 0.370395 0.330261 0.026858 0.318687 -0.750534 -0.458634 0.441125 0.201668 0.086344 -0.951435 -0.115390 -0.949406 -0.530001 0.139597 0.281867 0.374803 -0.857162 0.212472 1.059080 -0.292349 0.542954 0.674554 1.344840 0.874990 -0.179892 0.392465 1.071798 0.375430 -0.350150 -1.275675 0.241693 -0.977302 -1.377949 -0.458757 0.324622 -1.396742 0.856089 0.797005 0.307514 -0.477924 -0.448741 0.887528 0.940370 -0.438846 1.034140 0.810246 -1.403391 -0.429679 -0.712988 1.472862 -0.605221 1.489892 0.003456 -1.647902 -1.177953 1.328356 0.580194 -0.843843 -1.097806 -0.193544 0.233025 -0.514832 0.640730 -0.198823 1.140234 -0.622511 -0.439556 0.695458 -0.439450 0.994154 0.158848 -0.166031 -0.331122 -0.351496 0.466385 -0.765508 -0.967696 1.275136 -0.650511 0.484196 -1.436248 -0.291842 0.260213 -0.168399 -0.295725 -1.156693 0.433480 0.671510 0.011484 -0.464492 0.050515 -1.087562 0.702610 1.120372 -0.043809 0.601659 -0.399535 0.120496 -0.047275 0.289731 -0.212830 0.326992 -1.265121 0.361712 -0.264370 0.148920 -0.645532 -0.260572 1.079206 0.303968 0.441422 -0.904918 1.460220 0.551825 -0.955825 -0.422896 0.405384 -0.272240 -1.121370 0.319237 0.360598 0.307296 0.039815 0.262653 0.472343 -0.560678 -1.022409 -0.661868 -0.594796 0.552194 -1.434024 -0.090174 -0.027900 -0.044062 -0.548020 0.798673 0.585450 0.136320 1.398014 0.520430 -0.251552 0.429653 -1.144934 0.950269 2.111110 0.662752 -1.043036 0.477549 -1.000090 0.529549 0.445496 0.100381 -0.326292 0.955438 -0.574311 0.148765 -0.216499 -0.622545 1.287429 0.968553 0.699163 -1.618081 0.394983 -0.947627 0.172656 1.690086 1.312678 -1.761995 0.467603 1.551747 -0.257933 -0.184025 0.371152 -0.898041 -0.778116 -0.663755 0.367131 0.509074 -1.145227 -1.065914 0.072341 -0.969095 1.212506 0.326874 -0.116227 -0.161217 -0.721530 -0.006042 1.845734 0.162632 -0.087261 0.091194 -0.243059 -0.678812 -1.425630 0.023180 0.977796 -0.815322 -0.475717 -0.778671 -0.194650 1.486953 -1.138012 0.207104 -1.223283 0.286872 0.520398 -0.066426 0.611896 -1.286068 -0.592949 -0.596175 -0.362735 0.340758 -1.196532 0.110662 0.948089 -0.655139 1.275645 0.622961 -0.497950 -0.307687 1.007055 -0.029419 1.180703 0.167628 1.006127 0.316544 1.199480 -0.828262 -0.047540 -0.634745 -0.463831 -0.578532 1.299123 -1.514998 -0.055124 0.897422 -0.492498 -1.041938 1.108911 0.787146 0.662155 -0.490320 -0.417717 -0.324815 -0.150057 -0.570255 0.345659 0.694758 -0.946372 -1.342253 -0.339821 0.979421 -1.391975 -0.615105 0.580054 0.307292 1.560692 -0.918763 0.876899 0.532735 0.226784 -2.163610 -0.944029 -0.045223 -0.595074 -0.623140 0.282139 -1.603533 -1.215020 -0.588381 0.670341 -1.213018 -0.690701 0.292117 1.265369 0.190247 -0.072851 0.724481 0.247627 0.424658 -0.017173 0.177042 0.306961 0.315961 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.291464 1.192732 0.819505 -0.873521 2.720673 0.598110 0.275433 1.385795 -1.020698 1.312342 -2.389752 -0.320013 -0.503301 -1.814105 0.322659 -0.521732 0.337309 -0.151853 -0.576874 0.308787 0.849870 -0.918880 0.086976 -1.248629 -0.120860 -1.655296 -0.683674 0.052163 1.638454 0.273548 -0.449603 0.130701 2.283367 0.110456 1.417088 1.085865 1.413721 1.766753 0.204732 -0.804214 0.087371 1.425144 -1.045886 -1.615808 0.382307 -1.729232 -1.179133 -0.384204 0.556890 -1.021169 0.152411 1.430023 -0.071058 -0.261087 -1.212607 0.989976 1.602704 -0.262504 2.258928 0.732398 -1.093968 -1.407183 -1.337276 1.539961 -0.915295 1.280557 -0.454630 -1.474523 -0.367237 0.511217 0.045633 -0.799093 -1.238847 0.834749 0.584355 -1.188681 1.084093 -0.384054 -0.578518 -1.542764 -1.418110 0.690149 -0.463368 1.899979 -0.041846 -0.087873 0.012163 0.124874 0.364308 -2.073915 -0.574087 1.656041 -1.202209 0.013992 -1.306254 1.003699 -0.160636 0.536772 -1.177612 -1.120518 0.706725 0.427948 0.225149 -1.912228 0.649547 -2.141167 1.098849 0.687571 0.196228 1.374251 0.937541 0.848721 1.027984 1.357118 -1.505147 -0.126604 -1.612949 0.174066 -0.122947 -0.001305 -0.595256 0.577477 0.347336 0.276082 1.489976 -2.293765 1.396747 1.035615 -1.085087 -1.131104 0.199919 -1.407912 -1.695157 -0.114499 0.876255 0.448949 0.092167 -0.552686 0.297304 -0.521348 -1.335185 -0.821548 -0.276177 1.870174 -2.449704 -0.293963 -0.251613 -0.401401 -0.728020 1.431046 0.922475 0.757335 1.759160 1.019795 -0.816225 1.069849 -1.668511 0.935523 2.975428 0.800611 -2.088319 1.165413 -1.694778 0.346584 0.902172 0.481689 0.904620 0.693854 -1.501304 -0.869068 0.520428 -0.457352 2.186715 0.949087 1.012690 -1.817682 1.983462 -0.966769 -0.793329 2.397906 1.025711 -1.908543 0.387097 1.493642 -1.456748 0.015909 0.688863 -1.483338 -0.340328 -1.496344 0.074454 1.025951 -1.493276 -1.007136 -0.017542 -1.985400 2.457542 0.380169 0.573531 0.067626 -1.315258 -1.432950 2.650583 -0.048580 -0.290726 -0.795979 -0.711700 -1.372012 -2.172896 0.315114 0.465728 -1.119238 -0.919669 -1.775247 -0.190015 1.587709 -0.768066 0.720049 -2.765662 -0.122524 0.762097 0.230987 1.035947 -0.948815 -1.217928 -0.275492 -0.697487 1.043705 -1.544580 1.442040 1.931726 -1.048976 2.066715 -0.121858 -0.883199 0.118965 1.169616 -1.038120 1.960582 -0.428829 1.847181 0.002106 1.774368 -1.464131 -0.270288 -0.232578 -0.784387 -0.673028 1.312677 -1.555193 -0.033918 0.620258 -1.197361 -1.412342 0.844991 0.111437 0.705500 -0.223288 -0.186433 -0.849946 -0.341244 -0.586938 0.552891 1.423231 -0.715522 -1.380769 -0.036358 0.476223 -0.527512 -0.351108 0.563891 0.057582 1.846247 -1.790107 0.162345 0.217527 0.115365 -2.002123 -2.158240 -0.097308 -0.984307 -1.072048 1.734297 -2.555472 -0.319677 -1.272998 0.086823 -1.736793 -0.546766 0.428399 2.328597 0.325668 -1.175075 0.873866 0.088912 1.245345 0.002700 0.371773 0.247640 0.562745 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.336734 0.178115 -0.200504 -0.283498 0.689439 0.055194 -0.154314 0.247414 0.191355 0.356432 -0.542537 -0.231851 -0.140494 -0.577799 0.081937 0.171514 0.048745 0.189665 -0.205835 -0.093632 0.277587 -0.222253 0.160608 -0.329783 -0.008691 -0.366450 -0.118077 0.040393 0.161829 0.162135 -0.286331 0.006138 0.387748 0.057376 0.142214 0.192752 0.221308 0.550530 0.061800 0.166006 0.147999 0.317905 -0.160064 -0.657233 0.321249 -0.431661 -0.248367 -0.324295 0.221006 -0.504082 0.372633 0.321774 0.048345 -0.232878 -0.368219 0.069993 0.468828 0.204892 0.505544 0.231442 -0.190471 -0.198495 -0.301543 0.120811 -0.382831 0.344862 0.177856 -0.512362 -0.303458 0.312354 0.090293 -0.118943 -0.344182 -0.024564 0.106038 -0.212487 0.216376 -0.082507 0.101106 -0.188952 -0.331593 0.085160 -0.242746 0.459000 -0.051452 -0.024589 -0.051727 -0.065831 0.221051 -0.323703 -0.264886 0.280687 -0.070388 0.237266 0.010196 0.191581 0.065227 -0.100962 -0.206335 -0.070428 0.081870 0.231763 0.115680 0.030110 -0.170373 -0.409196 0.534421 0.239104 -0.029024 0.023202 0.332036 -0.075801 -0.110893 0.174056 -0.278817 0.098499 -0.488473 0.014326 0.096710 0.126917 -0.157584 0.051533 0.233614 -0.163045 0.195949 -0.444776 0.542961 0.216212 -0.189428 -0.203539 0.220085 -0.080614 -0.314805 0.065145 0.255638 -0.012865 -0.071242 0.034991 0.095572 -0.159308 -0.497810 0.013240 -0.213881 0.423461 -0.377649 0.026586 -0.124751 -0.275572 -0.051741 0.095364 0.075789 0.093018 0.485090 0.305757 -0.199013 0.065913 -0.363281 0.371393 0.835367 0.170023 -0.427952 0.091699 -0.135802 0.244337 0.239956 0.000000 0.158202 0.331764 -0.042200 0.061775 -0.128542 -0.166084 0.443571 0.309848 0.426563 -0.557789 0.240868 0.033581 0.161314 0.665228 0.315713 -0.531064 0.213897 0.466935 -0.472464 0.053826 0.005379 0.000000 0.033082 -0.347929 0.178183 0.257710 -0.495010 -0.517436 -0.196274 -0.420026 0.494233 0.057032 0.207735 0.133910 -0.417188 0.185394 0.585668 0.095710 -0.117594 -0.115224 -0.194423 -0.460345 -0.540118 0.122821 0.194922 -0.382528 -0.184610 -0.322827 -0.098779 0.559968 -0.219974 -0.053495 -0.381409 0.127840 0.188965 0.047716 0.232960 -0.254442 -0.227769 0.037055 -0.133145 0.280101 -0.142753 0.077714 0.368046 -0.349050 0.316848 0.262775 0.205673 0.122943 0.403637 -0.054796 0.424859 -0.130711 0.364282 -0.041039 0.427750 -0.142692 0.101661 -0.082068 -0.151987 -0.065522 0.400768 -0.479638 -0.095939 0.450124 -0.275142 -0.297353 0.328402 0.247732 0.484943 -0.060036 -0.094772 -0.176885 0.020846 0.014674 0.071360 0.344049 -0.048587 -0.492590 -0.193394 0.246986 -0.250361 -0.380096 0.250281 0.026786 0.532758 -0.373006 0.288409 0.084071 -0.072329 -0.480548 -0.207028 -0.009540 -0.083971 -0.169368 0.469112 -0.660180 -0.155490 -0.225913 0.291502 -0.362017 0.111781 -0.227607 0.377201 0.163065 0.026756 0.353705 0.123798 0.206856 -0.004528 -0.108188 0.124828 0.324169 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.871064 0.773490 0.206281 -0.715125 1.859500 0.199396 0.002277 0.775243 -0.101850 0.721281 -1.631803 -0.327015 -0.285965 -1.375155 0.178465 -0.153386 0.141412 0.382083 -0.487162 -0.058446 0.648526 -0.422351 0.184741 -0.946574 -0.019417 -0.749996 -0.523920 0.001777 0.411405 0.348431 -0.354992 0.111867 1.218920 0.193441 0.722257 0.723487 0.604680 1.414099 0.074797 0.400100 0.381375 0.806600 -0.464647 -1.639950 0.600510 -1.143558 -0.693315 -0.698735 0.366036 -1.254874 0.608199 0.827006 0.126596 -0.361909 -0.807305 0.276611 1.195169 0.294318 1.276251 0.645003 -0.920018 -0.357128 -0.771597 0.312445 -0.717141 1.111372 0.322580 -1.294598 -0.557975 0.694938 0.381125 -0.721167 -0.973938 0.071093 0.177179 -0.536780 0.565682 -0.217076 -0.356412 -0.497227 -0.774872 0.315586 -0.352476 1.099295 -0.065731 -0.160678 -0.192938 -0.175935 0.512193 -0.958202 -0.709783 1.111863 -0.361823 0.515777 -0.562290 0.397857 0.070477 0.012655 -0.611198 -0.477488 0.367523 0.584374 0.152529 -0.344608 -0.548499 -1.256020 1.137111 0.645883 -0.286101 0.363083 0.529656 0.228071 0.153940 0.508888 -0.890355 0.454506 -1.305281 0.193456 -0.108926 0.132943 -0.302469 0.056030 0.334901 -0.172220 0.560374 -1.119902 1.260736 0.651086 -0.712517 -0.776307 0.460214 -0.544662 -1.022840 0.102367 0.562659 0.271681 -0.011184 -0.059231 0.003548 -0.561166 -0.915640 -0.641183 -0.445086 1.142017 -1.121663 -0.101220 -0.218375 -0.441096 -0.406547 0.522482 0.327338 0.233981 1.306128 0.687125 -0.475868 0.299551 -0.967922 0.699985 2.064542 0.693454 -1.194133 0.369005 -0.432435 0.504390 0.596592 0.009042 0.327972 0.773666 -0.617312 -0.220028 -0.148173 -0.583393 1.159285 1.008274 0.928795 -1.364039 0.985165 -0.200354 -0.043939 1.749065 0.786421 -1.414630 0.477730 1.201591 -0.814751 -0.070596 0.225520 -0.436464 -0.221009 -0.708122 0.191684 0.440859 -1.236065 -1.158827 -0.232053 -1.191518 1.387949 0.264491 0.448169 0.014420 -1.069170 -0.377832 1.744870 0.172545 -0.262905 -0.172012 -0.367129 -0.849712 -1.413251 0.245747 0.681537 -0.896503 -0.615358 -0.855168 -0.003555 1.254900 -0.789305 0.156423 -0.792615 -0.058200 0.458685 0.006191 0.704283 -1.122838 -0.740372 -0.195974 -0.285640 0.797610 -0.530454 0.459282 1.204128 -0.695230 1.086856 0.699091 0.007890 0.110307 1.026441 -0.278755 1.111373 -0.347508 1.285181 0.000523 1.161135 -0.647813 -0.065291 -0.182413 -0.275333 -0.315940 1.129104 -1.203166 -0.060231 0.802256 -0.758674 -0.677501 0.891026 0.432148 0.814977 -0.267044 -0.084101 -0.518122 -0.043123 -0.148024 0.184056 0.910954 -0.407981 -1.372705 -0.445309 0.539181 -0.727184 -0.561753 0.545609 0.087265 1.287693 -0.981273 0.569671 0.216948 -0.277695 -1.464987 -0.830592 0.040240 -0.602221 -0.593825 0.872562 -1.537099 -0.421816 -0.647183 0.495859 -1.092738 -0.161080 -0.220834 1.179760 0.440614 -0.122759 0.695396 0.239202 0.716125 0.025760 0.008123 0.179173 0.791962 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = -0.626636 0.346181 -0.235354 -0.542857 1.613640 0.035612 -0.042499 0.742637 0.415139 0.492739 -1.264969 -0.420699 -0.007705 -0.826104 0.210383 0.314473 0.103721 0.431318 -0.577322 -0.349389 0.453206 0.137359 0.071488 -0.706926 -0.010429 -0.295308 -0.535616 0.048620 -0.026874 0.168251 -0.705175 0.206879 0.935125 0.077868 0.628721 0.554142 0.724986 0.973065 -0.048754 0.727975 0.622970 0.490404 -0.308788 -1.162298 0.433222 -0.836199 -0.690610 -0.559554 0.240196 -0.939575 1.366142 0.568133 0.199020 -0.235201 -0.393127 0.205825 0.655455 0.186748 0.863339 0.623432 -0.987448 0.189467 -0.526967 0.698973 -0.532325 1.215744 0.241710 -1.274656 -0.830118 0.718099 0.996330 -0.935052 -1.051707 -0.094300 -0.017541 -0.285128 0.565702 -0.101855 0.910708 -0.478828 -0.672032 0.393523 -0.444678 0.736167 -0.069496 -0.195676 -0.670609 -0.246929 0.376002 -0.574086 -0.665350 0.783769 -0.435965 0.700269 -0.730822 -0.257423 -0.011929 0.008676 -0.363675 -0.634820 0.312810 0.488134 0.048534 0.372792 -0.153920 -0.603167 0.867761 0.822212 -0.190384 0.155103 0.292532 0.132174 0.162137 0.246408 -0.119566 0.270842 -0.924327 0.292358 -0.107241 0.094486 -0.245176 -0.026899 0.550294 -0.128266 0.331636 -0.650462 0.971024 0.418932 -0.754017 -0.282125 0.362084 -0.337671 -0.911317 0.079550 0.402690 0.315558 -0.063188 0.059595 0.103926 -0.509498 -0.757856 -0.474942 -0.490946 0.335258 -0.679934 -0.148512 -0.128792 -0.316524 -0.370951 0.540211 0.292014 0.156846 0.996565 0.461035 -0.322361 -0.388983 -0.831435 0.605084 1.507373 0.372679 -0.879188 0.264462 -0.400604 0.486955 0.527560 0.123038 -0.084991 0.491558 -0.098141 0.218030 -0.466315 -0.419378 0.943969 0.753039 0.687925 -1.015698 0.234563 -0.327250 0.001205 1.511834 0.723840 -1.134420 -0.021069 0.977123 -0.108741 -0.151374 0.210508 -0.374982 -0.442094 -0.528790 0.314400 0.318229 -0.921204 -0.838211 0.164637 -0.845553 0.951297 0.196116 0.014829 -0.067106 -0.946071 0.168396 1.553311 0.146421 -0.126842 0.113323 -0.219820 -0.120652 -1.060677 0.132624 0.663375 -0.439841 -0.381673 -0.543501 0.092693 1.152432 -0.753485 0.075872 -0.278356 -0.000711 0.348643 -0.498839 0.463886 -1.168808 -0.524459 -0.333947 -0.142539 0.488973 -0.555429 -0.008059 0.876048 -0.518298 0.584669 1.180158 0.159771 -0.251882 0.795862 -0.065441 0.832706 -0.220468 0.529481 0.068055 0.874912 -0.501893 -0.133954 -0.334883 0.184005 -0.405297 0.974708 -0.942057 0.019026 0.562642 -0.528207 -0.515619 0.777858 0.460242 0.499631 -0.265263 -0.333015 -0.384248 -0.014661 -0.210977 0.183111 0.651208 -0.381728 -1.072573 -0.284624 0.455107 -0.921250 -0.302915 0.416623 0.060905 1.214939 -0.686678 0.500934 0.388316 -0.006040 -1.321607 -0.510407 -0.155619 -0.428518 -0.333090 0.422307 -1.044443 -0.798014 -0.460555 0.478710 -0.652259 -0.168943 -0.022482 0.888153 0.496641 -0.107607 0.516785 0.238108 0.506875 0.100129 -0.156646 0.204541 0.540517 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.560648 0.599252 0.009674 -0.612494 1.673213 0.104010 0.251135 0.823643 -0.292083 0.611452 -1.181169 0.046463 0.139572 -0.865983 0.211200 -0.087987 -0.072031 0.192944 -0.414161 -0.071349 0.317764 -0.081087 0.024641 -0.643216 -0.150451 -0.797692 -0.226618 0.098836 0.404827 0.359050 -0.436446 0.083831 0.787675 -0.214385 0.500290 0.566939 0.673137 0.583229 -0.007263 0.003074 0.535336 0.324373 -0.309907 -0.843847 -0.049502 -0.610474 -0.923676 -0.331302 0.236723 -0.946846 0.302038 0.577791 0.140553 -0.297752 -0.408797 0.682162 0.584217 -0.193931 0.810497 0.473877 -0.802349 -0.428434 -0.581508 1.110510 -0.377675 0.775273 -0.045291 -0.995697 -0.481942 0.789645 -0.014751 -0.276466 -0.514421 0.036207 0.290681 -0.487363 0.376632 -0.239313 0.014258 -0.283927 -0.203458 0.465837 -0.222556 0.747770 0.115553 -0.040878 -0.137311 -0.072001 0.233231 -0.665731 -0.569995 1.055282 -0.383731 0.016129 -0.914811 0.172784 0.407163 -0.074091 -0.200025 -0.614593 0.327837 0.396057 0.058781 -0.785309 -0.021022 -0.933637 0.375220 0.749890 -0.015771 0.675793 -0.315349 0.257662 0.100969 0.340550 -0.272842 0.283091 -0.907421 0.232120 -0.307116 0.082239 -0.386139 -0.096340 0.611975 0.309713 0.413117 -0.737544 0.944875 0.425843 -0.479893 -0.469890 0.237505 -0.253802 -0.691724 0.125463 0.222334 0.244980 0.047868 0.067838 0.287957 -0.276431 -0.565593 -0.413955 -0.192032 0.538542 -0.982031 -0.021418 -0.014877 0.085308 -0.369330 0.612482 0.456559 0.132465 1.012000 0.394603 -0.095850 0.304702 -0.767204 0.540835 1.441089 0.338506 -0.727828 0.455144 -0.725168 0.144663 0.171981 0.129692 -0.072592 0.838431 -0.687981 -0.240102 -0.163413 -0.443043 0.935521 0.699793 0.332030 -0.900256 0.658779 -0.801371 -0.062338 0.959013 0.982025 -1.076359 0.250437 0.963949 -0.604419 -0.199454 0.379405 -0.670642 -0.316665 -0.458571 0.126048 0.375198 -0.694959 -0.668124 -0.066710 -0.720462 0.927781 0.181477 0.006804 -0.208094 -0.421956 -0.118971 1.189333 0.163138 -0.132588 -0.065536 -0.178699 -0.881305 -0.981206 0.028773 0.579867 -0.566389 -0.419564 -0.595573 -0.195057 0.806651 -0.719798 0.228580 -0.828662 0.099551 0.394724 0.238245 0.441406 -0.609790 -0.387739 -0.389030 -0.239213 0.295401 -0.746025 0.407754 0.760454 -0.361237 0.984819 0.224505 -0.451597 -0.068874 0.723301 -0.253788 0.883589 0.092560 0.538316 0.238482 0.740602 -0.523225 -0.062900 -0.327324 -0.588707 -0.307987 0.785627 -0.939293 -0.054809 0.488528 -0.405113 -0.614435 0.662966 0.473294 0.403216 -0.257078 -0.095273 -0.388827 -0.173199 -0.594675 0.172101 0.501396 -0.527108 -0.806458 -0.079406 0.587903 -0.742452 -0.429692 0.309003 0.237820 0.916964 -0.693122 0.528463 0.264317 0.156262 -1.400723 -0.692328 0.001019 -0.428748 -0.608607 0.186225 -1.032496 -0.610621 -0.458078 0.358259 -1.033496 -0.698483 0.320114 0.967162 0.042203 -0.138995 0.413695 0.022460 0.399452 0.062300 0.188083 0.186526 0.250982 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -1.279775 1.299189 0.140867 -1.036927 2.234695 -0.030049 0.329128 1.825318 -0.394724 1.106887 -2.281284 -0.221539 -0.165695 -1.775534 0.196234 -0.371987 0.220718 0.633806 -0.614944 0.161673 0.917935 -0.333315 -0.081062 -1.284445 -0.218161 -1.196975 -0.433461 -0.023186 0.675138 0.297015 -0.067206 0.220010 2.314324 0.102220 1.779964 1.432992 1.416888 1.841076 0.556010 0.797390 0.252355 1.286473 -0.785415 -1.727266 0.278530 -1.334843 -1.145517 -0.809942 0.300623 -1.742209 1.320170 1.249588 0.294752 -0.003893 -0.934893 0.883914 1.679932 -0.496508 1.951329 0.896499 -1.473540 -0.403222 -0.730934 1.579099 -0.827742 1.237437 0.372022 -1.300315 -0.286187 0.597370 0.463203 -1.168589 -1.009596 0.521061 0.303744 -1.149681 0.989935 -0.448243 -0.229860 -1.385014 -0.931691 0.648665 -0.052617 1.529607 -0.162576 -0.203018 -0.421188 -0.004783 0.302872 -1.613648 -0.677571 1.842572 -1.039950 0.020102 -1.870092 0.745324 0.148451 0.499548 -0.883709 -1.184386 0.655722 0.615957 0.214490 -1.103752 -0.597850 -1.483438 0.820710 0.825434 -0.594884 1.536442 0.365345 0.919624 0.938462 1.083615 -0.977250 0.911258 -2.148803 0.539051 -0.126816 0.073739 -0.013898 -0.149118 0.878831 0.313763 0.842470 -1.711228 1.477882 0.986072 -0.966118 -1.263715 0.369798 -1.117695 -1.627249 -0.242642 0.753034 0.724913 0.162114 -0.498713 0.273330 -0.564403 -0.884459 -1.886151 -0.289053 1.295777 -1.956125 -0.359899 -0.235585 -0.123127 -0.867297 1.152265 0.598901 0.152908 1.971375 0.748740 -0.393739 0.801791 -1.386382 0.319474 2.446118 1.253974 -1.708449 0.938350 -1.128025 0.211223 0.787578 0.486223 0.288607 0.930627 -1.534948 -0.737768 0.449992 -0.834052 1.844918 0.740772 0.675971 -1.970245 1.840917 -0.354789 -0.837160 2.862240 1.695551 -1.910358 0.098227 1.255268 -0.747113 -0.350612 0.854373 -1.249700 -0.959880 -0.700023 0.163368 0.430481 -1.313652 -1.099422 0.189284 -1.742552 1.873595 0.249381 0.152174 -0.332238 -1.675193 -0.534337 2.430079 0.243128 -0.384110 -0.161747 -0.492148 -1.034933 -2.126125 0.406271 0.971747 -0.685013 -0.991877 -1.233831 0.299296 1.495354 -1.074465 0.410991 -1.828667 -0.619550 0.822689 -0.120577 0.882260 -2.082867 -1.115020 -0.627008 0.178152 1.221275 -0.959328 1.242856 2.291780 -0.695709 1.756448 0.880802 -0.795620 -0.054721 1.417345 -1.193179 1.777982 -0.338797 1.147510 0.128060 1.325444 -1.380506 -0.546140 -0.427508 -0.055562 -0.638715 1.154646 -1.422860 0.102123 0.210848 -1.212950 -0.608047 1.029731 0.283343 0.238996 -0.227891 0.034172 -0.854326 -0.396664 -1.194852 0.038932 1.402944 -0.408249 -1.651815 -0.006610 0.457342 -0.817231 0.251007 0.257703 0.266987 1.775382 -1.536981 0.437523 0.334742 -0.279596 -2.160879 -1.798596 0.183591 -1.050222 -1.181561 0.691587 -1.811223 -0.871761 -1.026548 0.355287 -2.239503 -0.745692 0.391301 2.036977 0.587794 -0.667714 0.541374 0.048959 1.560254 0.353176 0.366100 0.230390 1.074207 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -1.178930 0.614257 0.474062 -0.476168 2.269959 0.080690 0.494303 1.094085 -0.571461 1.340263 -1.649670 -0.605403 -0.540324 -1.415793 0.088390 -0.505112 0.454717 0.104192 -0.474879 0.159453 0.681197 -0.572752 0.033595 -0.679902 -0.191869 -1.490983 -0.679347 0.198913 1.396903 -0.366086 -0.298140 0.164036 2.272332 0.038798 1.887322 1.216956 0.827378 1.290542 0.157292 -0.605817 -0.115363 1.264195 -0.998019 -1.289666 -0.086162 -1.143316 -1.221512 -0.581691 0.595096 -0.741483 -0.187226 1.201569 -0.194337 0.384045 -0.762006 0.862253 1.173216 -0.087717 2.065721 0.467223 -0.990372 -0.252672 -1.121009 1.372245 -0.595563 0.571000 -0.747060 -1.526787 -0.156873 0.126318 -0.229740 -0.943127 -0.553351 1.093244 0.660681 -1.125089 0.776513 -0.270711 -0.554952 -1.801363 -1.341846 0.438198 -0.208701 1.440800 -0.052651 -0.044888 0.223759 0.223894 -0.014725 -2.045463 -0.087127 1.559090 -1.257861 -0.234697 -0.543728 0.806975 -0.022009 0.745860 -0.881715 -1.108127 0.369818 -0.065336 0.221860 -1.003092 0.759831 -1.207686 0.240036 0.046745 0.350331 1.058682 0.826893 0.615418 1.247277 1.430096 -1.386156 0.081599 -1.292334 0.736934 -0.727688 0.002736 -0.212808 0.618645 0.614267 0.496377 1.570903 -2.014722 0.681393 0.656444 -0.563574 -1.350628 -0.044331 -1.432698 -1.403528 -0.278735 0.797245 0.293189 0.180240 -0.981590 0.339245 -0.279487 -0.695333 -0.232297 -0.020018 1.142919 -1.918865 -0.215414 -0.167034 -0.245632 -0.701468 1.343114 0.932340 0.922173 1.855442 0.999232 -0.812068 0.689506 -1.705675 0.354264 2.284722 0.111134 -1.557261 1.225202 -1.409181 0.046296 0.913730 0.859962 0.961996 0.115967 -1.116265 -0.457763 0.586606 0.045471 1.998030 0.458200 0.672033 -1.060220 1.485935 -0.553565 -1.006197 2.134719 0.920345 -2.027731 0.784690 0.831851 -1.096732 -0.079804 0.861939 -1.490824 -0.409887 -1.346497 0.123762 0.828886 -1.083125 -0.258985 0.535626 -1.677027 1.965463 0.118508 0.203964 0.547578 -1.276046 -1.127215 2.312192 0.183279 -0.031748 -0.730417 -0.770500 -1.040516 -1.777201 0.210844 -0.033414 -0.841294 -0.505552 -1.584442 0.123336 1.397929 -0.210098 1.189459 -1.995067 -0.035476 0.693409 0.249144 0.821553 -0.799753 -0.942423 -0.272787 -0.680325 0.686841 -1.326645 1.188353 1.763191 -0.793531 1.411517 -0.277223 -1.076455 0.201123 0.615814 -1.497308 1.733106 -0.184491 1.293153 0.122783 1.206022 -1.193326 -0.324843 -0.191072 -0.360274 -0.713482 0.941963 -1.094373 -0.032768 0.460744 -1.256077 -1.103176 0.252898 -0.009027 0.290388 0.050807 -0.230454 -1.507846 -0.059746 -0.831368 0.457447 1.176225 -0.249600 -1.254727 0.503383 0.188557 -0.230842 -0.456818 0.184423 0.016662 1.261258 -1.560141 -0.369104 0.282928 0.457325 -1.272182 -1.990497 -0.070634 -1.227289 -0.959505 1.146995 -1.792616 -0.173142 -1.154299 -0.273844 -1.750227 -0.610826 0.600284 2.319961 0.533004 -1.153075 0.564472 -0.055132 1.100360 0.033421 0.401988 0.182641 0.618262 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -9.832855 9.160828 7.301578 -5.733735 15.202118 1.807801 6.155680 5.025182 -5.621419 10.250768 -15.736518 -4.500218 -4.775378 -12.827237 -0.252699 -9.085022 1.554782 0.682593 -2.715873 4.076287 6.299100 -7.787591 0.042239 -7.959183 -1.508644 -12.872020 -4.975010 0.220874 10.050071 -0.519869 2.429464 0.179366 16.933590 2.745723 14.334105 10.660253 3.147372 13.664413 0.762627 -0.235329 -2.268194 11.003578 -7.625516 -12.637460 0.341057 -9.686375 -8.048349 -7.455062 3.317016 -8.587971 -0.518599 10.047903 -1.331869 1.267870 -8.379883 5.244917 12.674081 0.936713 16.443703 4.046463 -6.208372 -0.787918 -9.741857 5.744852 -4.772316 4.631218 -0.330824 -9.818616 1.962193 0.071843 -1.190176 -5.742465 -5.346867 7.963753 5.398402 -9.388013 4.725449 -4.110300 -17.682649 -11.404839 -8.613447 2.852207 1.735918 12.306212 -0.258964 -0.528856 2.369709 2.404637 0.982919 -15.755739 -2.508312 14.535420 -6.667124 -2.747588 -5.672259 10.766971 0.510566 5.390566 -8.545228 -5.381829 3.766286 1.529422 1.834547 -9.556294 -3.556492 -13.852197 5.016850 2.132778 -2.215142 6.603866 6.661193 5.887046 9.287675 10.915518 -14.696642 5.846729 -11.726812 4.177431 -2.589025 0.150077 -0.079997 3.542936 -0.242294 2.514171 11.230553 -15.238869 7.187805 6.447871 -5.820681 -13.119390 0.009733 -11.668398 -10.997097 -2.328652 5.284477 4.389948 2.091178 -7.089185 -0.550310 -3.715573 -3.032304 -6.688425 1.570212 13.694263 -12.867790 -1.780455 -1.569574 -1.754092 -6.826432 9.816971 6.074819 5.094321 14.964139 7.774023 -4.517599 5.092844 -10.886624 1.197933 19.182894 5.872677 -13.077182 8.729262 -7.753172 0.576778 6.034886 4.609652 8.075279 1.779502 -13.502107 -7.461317 4.118508 -3.879306 14.975994 6.894693 5.109441 -8.640116 17.952995 -2.280068 -8.998033 16.003881 9.629211 -13.409703 4.325985 7.022594 -12.288477 -2.554619 7.301022 -8.731367 -1.724233 -7.877709 -0.271778 3.338531 -7.709831 -4.775148 0.256064 -14.542420 16.766315 1.644663 6.222377 1.918463 -9.973916 -14.019432 16.944798 -0.410557 -2.702063 -5.203502 -4.219342 -10.328777 -14.376076 2.689748 1.501836 -7.991653 -6.713313 -12.247980 3.345008 9.213606 -4.594519 7.786197 -9.662597 -5.107579 4.970815 2.735412 7.720272 -7.907536 -8.311467 -2.214221 -1.874950 8.045790 -5.895879 12.208638 17.192709 -5.074102 11.350226 -1.309963 -6.638745 2.569724 8.233601 -11.377819 13.428828 -4.195665 11.047506 -0.293116 9.940142 -8.372113 -3.618615 0.895389 -3.600763 -3.423537 7.759857 -8.375520 0.407529 2.296843 -11.234214 -5.466315 4.505558 -0.822812 2.313103 -0.085049 2.645427 -11.148657 -0.586337 -6.947227 1.507661 10.236382 0.085873 -10.449233 1.584822 1.407763 -0.176606 -1.890440 1.634868 0.258485 9.553901 -12.086090 -1.222129 0.159537 -1.359723 -10.148601 -15.876476 1.674324 -12.058852 -10.630986 9.791966 -13.689851 1.464404 -9.723572 -1.636845 -15.330974 -5.661337 3.115380 17.140596 5.201429 -7.336435 3.795169 -1.100141 11.195566 0.605039 2.924315 1.963112 7.748629 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -8.586700 14.610212 9.191467 -9.171128 12.548281 -2.977681 5.960255 4.721546 -1.041328 3.708142 -18.241837 -0.755530 -1.407624 -14.787216 2.379194 -8.658075 0.422101 8.896300 -0.683690 6.481274 7.988253 -5.884394 -2.036807 -13.093892 0.068515 -9.453407 -3.176374 -1.744208 -2.156380 6.655122 6.562233 4.325870 12.033202 7.232859 10.045047 12.211212 0.166667 18.045150 3.103000 10.513755 2.529352 8.033935 -2.691424 -19.604335 7.057904 -7.627131 -3.675468 -13.104501 -0.538254 -15.509486 9.668703 8.055685 2.364022 -3.340659 -11.293203 -1.674742 16.214865 5.560587 9.111410 8.972857 -6.092506 5.120394 -6.385127 -4.706673 -6.611016 7.109386 11.254995 -9.509903 1.669081 6.675283 11.114314 -6.798358 -10.456791 -2.050064 -0.322697 -4.993876 5.362138 -2.803028 -18.333691 -2.894721 -4.871075 2.754099 1.132881 11.874511 -1.291000 -2.694793 -7.735137 -2.276290 7.023356 -5.816047 -10.115681 11.361474 0.334661 2.276279 -6.960356 10.823749 7.317192 -0.941224 -4.911976 -5.069640 6.686302 4.142405 1.385280 4.941756 -18.881924 -11.718744 10.761954 8.725288 -10.355696 7.086055 0.829641 9.131151 2.963769 1.351733 -10.806372 12.114708 -15.429226 3.857550 -0.445753 0.433471 2.272228 -2.988516 -1.566975 -1.414164 0.797932 -7.346624 13.732324 10.006263 -4.763765 -7.363897 6.697025 -4.879657 -9.334369 -3.688344 5.433997 7.970173 0.913477 1.969712 -4.982714 -6.975810 0.966719 -15.859407 -4.717444 17.368802 -8.166760 -1.152057 -3.233095 -3.918134 -5.720259 1.520425 -0.248980 -0.670772 11.171655 6.145648 -3.262723 -1.568815 -6.627931 1.469332 19.936597 13.184757 -9.672011 2.881897 4.365172 2.208254 4.644909 -1.063286 1.664616 4.255006 -13.607628 -10.398236 -5.036625 -13.391437 9.314711 13.868874 5.122678 -15.688938 18.045278 2.065072 -5.679847 17.970979 8.492916 -8.124680 -2.535285 12.419668 -12.961265 -7.702009 1.902302 -0.297300 -2.609480 -1.389561 1.842232 -2.179784 -10.458821 -14.419129 -5.394683 -12.430281 9.763732 3.596922 7.953450 -6.515212 -8.176213 -10.057337 18.576186 0.528172 -5.538022 0.286262 -1.259171 -2.746081 -13.509312 3.339619 7.077482 -6.154807 -7.976691 -5.899585 3.258590 9.448316 -14.156545 -3.367492 2.735061 -8.878299 3.946531 -2.235236 3.293713 -19.683973 -8.539556 -1.347901 4.836286 7.484459 3.994877 8.003220 18.024941 -4.295439 3.808676 14.509849 3.113243 3.332502 15.920713 -3.962771 9.507724 -8.934911 13.920471 1.562530 9.636017 -6.736931 -6.080463 1.318754 -1.644746 -3.513927 11.105637 -9.972719 2.402791 6.010288 -6.515830 -1.836041 12.541399 4.371261 5.501281 -3.866217 5.629991 -5.179557 1.349022 -2.845796 -0.936436 10.197462 0.457219 -14.073812 -5.632095 7.546533 -5.630225 -5.501953 4.575909 1.561586 11.766723 -8.312515 10.508952 -0.070705 -7.112099 -12.752005 -10.450753 9.085105 -11.965563 -10.871286 5.130400 -13.291505 -2.580964 -6.250729 7.354467 -13.440453 -2.902391 -2.105988 8.240247 4.111996 0.791004 4.637432 -0.363645 9.776354 1.219776 0.560612 -1.112342 14.671635 +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -1.145239 0.483876 0.313072 -0.452322 2.152845 -0.006672 0.442874 0.969636 -0.405381 1.242599 -1.576674 -0.695121 -0.560173 -1.372552 0.105467 -0.380589 0.487165 0.160922 -0.495158 0.113787 0.690258 -0.516341 0.039921 -0.672295 -0.159313 -1.301699 -0.664162 0.195636 1.278459 -0.431010 -0.400199 0.203517 2.196576 0.050371 1.810973 1.165588 0.799938 1.309151 0.137007 -0.586338 -0.070198 1.249064 -0.937098 -1.291537 -0.028711 -1.096257 -1.133512 -0.582045 0.607955 -0.643351 -0.000994 1.151553 -0.163678 0.353012 -0.779369 0.770419 1.139477 0.017171 1.986047 0.480186 -0.912235 -0.109214 -1.064363 1.288599 -0.640448 0.599053 -0.687963 -1.482329 -0.227864 0.141767 -0.094164 -1.011237 -0.656304 0.975337 0.600873 -1.053191 0.777243 -0.218422 -0.291466 -1.759356 -1.388220 0.396364 -0.274990 1.386283 -0.096825 -0.060254 0.129755 0.186195 0.036305 -1.909430 -0.116398 1.404216 -1.210216 -0.136088 -0.427290 0.726029 -0.060879 0.670336 -0.892488 -1.073320 0.342958 -0.088946 0.230142 -0.763932 0.784175 -1.053664 0.283501 0.067014 0.321967 0.941637 0.927352 0.555689 1.164439 1.312025 -1.218464 -0.003772 -1.269860 0.681127 -0.668521 0.004555 -0.179227 0.617392 0.615845 0.374747 1.476451 -1.924463 0.685496 0.619017 -0.545270 -1.222742 0.005155 -1.317047 -1.365795 -0.286952 0.823226 0.282687 0.140350 -0.899078 0.351656 -0.264419 -0.698392 -0.111529 -0.071634 1.032336 -1.759274 -0.210373 -0.197139 -0.326725 -0.641034 1.237677 0.839238 0.877212 1.770433 0.982078 -0.843450 0.540651 -1.653074 0.375393 2.187335 0.014422 -1.507605 1.131119 -1.314411 0.101047 0.916192 0.847702 0.916151 0.052209 -0.929256 -0.325463 0.507619 0.039136 1.906924 0.350140 0.691549 -1.014771 1.309807 -0.443307 -0.902012 2.119719 0.825890 -1.965268 0.725981 0.828541 -0.966434 -0.097152 0.791585 -1.359025 -0.379051 -1.343992 0.203620 0.797082 -1.089943 -0.265028 0.516925 -1.605723 1.839590 0.100937 0.107892 0.555857 -1.305252 -0.945818 2.270796 0.170780 -0.023039 -0.692295 -0.776347 -0.886186 -1.741016 0.230298 -0.060397 -0.765519 -0.469868 -1.498953 0.139760 1.428427 -0.213688 1.087438 -1.824259 0.002972 0.664904 0.211189 0.787517 -0.743713 -0.912115 -0.190657 -0.625543 0.652261 -1.252799 1.022549 1.679637 -0.823639 1.236971 -0.128186 -0.935578 0.189608 0.627612 -1.403383 1.654364 -0.188476 1.208324 0.083260 1.158234 -1.134004 -0.313037 -0.174861 -0.228777 -0.708897 0.892914 -1.055643 -0.032308 0.456650 -1.166569 -1.066954 0.271470 0.036358 0.313421 0.053361 -0.273973 -1.400576 -0.021777 -0.736659 0.449882 1.151145 -0.186681 -1.216806 0.457962 0.202125 -0.260459 -0.384345 0.199296 -0.016633 1.285565 -1.491325 -0.330932 0.281520 0.456516 -1.172539 -1.880574 -0.090083 -1.138576 -0.816233 1.169636 -1.698713 -0.214894 -1.085783 -0.174430 -1.591617 -0.478401 0.504334 2.169670 0.587535 -1.068014 0.577741 -0.020268 1.042217 0.026469 0.286154 0.180929 0.627296 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.828697 0.686273 -0.112176 -0.630806 2.220180 0.442124 0.102999 1.200020 -1.031192 1.029909 -1.413296 0.209257 -0.118768 -1.455119 0.193321 0.256200 0.096820 0.001589 -0.414179 0.032822 0.519325 -0.659484 0.184473 -0.734170 -0.145619 -1.222252 -0.148416 0.098375 1.111688 0.380693 -0.714782 -0.033300 1.155602 -0.123406 0.682319 0.665774 0.812821 0.872266 0.197472 -0.791510 0.160347 0.714712 -0.585532 -1.209285 0.174219 -1.079480 -1.134090 -0.531946 0.445473 -1.081257 -0.189423 0.938385 -0.019836 -0.306483 -0.717567 0.796365 1.140293 -0.461616 1.406534 0.486696 -0.752769 -1.169847 -0.726964 1.089624 -0.487839 0.578009 0.011476 -1.089749 -0.293783 0.636224 -0.324314 -0.156387 -0.386333 0.415618 0.585736 -0.797264 0.464966 -0.312432 -0.544549 -0.951604 -0.613854 0.370903 -0.468486 1.256903 0.106951 0.008778 0.350898 0.009879 0.253062 -1.276312 -0.412462 1.349523 -0.427849 -0.076396 -1.118242 0.744118 0.234723 0.110924 -0.661090 -0.585502 0.360921 0.501843 0.188622 -1.508093 0.279418 -1.368451 0.600072 0.385855 0.259482 0.837503 0.159903 0.003497 0.249276 0.811656 -0.838274 0.306054 -1.091332 0.165950 -0.096054 0.188601 -0.513898 0.101068 0.853474 0.087911 0.856135 -1.403058 1.050228 0.657947 -0.524998 -1.008459 0.224114 -0.660079 -0.889351 0.158343 0.463617 0.028404 0.079534 -0.229871 0.410274 -0.278893 -1.333800 -0.380414 -0.204772 1.326829 -1.724816 0.007326 -0.124826 -0.113571 -0.376363 0.779506 0.621031 0.431551 1.387406 0.701294 -0.357788 0.953570 -1.060142 0.779972 2.172249 0.644442 -1.167808 0.648981 -0.964730 0.246784 0.316169 0.206128 0.483387 0.740626 -0.966349 -0.339447 0.271384 -0.283621 1.362087 0.820088 0.739025 -1.054524 1.169079 -0.510173 -0.166578 1.183981 1.037655 -1.365321 0.863476 1.069198 -0.987104 0.196715 0.413603 -0.907419 -0.273799 -0.811602 0.176160 0.660915 -1.054104 -0.744386 -0.274360 -1.106049 1.519184 0.231390 0.425274 0.077731 -0.627738 -0.121894 1.340817 0.076445 -0.209142 -0.403396 -0.435350 -1.775042 -1.296440 0.169788 0.405181 -0.957974 -0.597834 -1.084327 -0.454065 1.142105 -0.456184 0.384788 -1.869631 0.335356 0.528239 0.645393 0.744933 -0.673112 -0.628121 -0.189768 -0.480874 0.613898 -0.969308 0.868717 1.005423 -0.671094 1.340124 -0.318551 -0.302577 0.276645 0.736370 -0.559261 1.214567 0.114507 1.159439 0.128860 1.118892 -0.629648 0.108213 -0.343159 -0.682848 -0.254819 0.996330 -1.172990 -0.183079 0.773715 -0.666955 -1.063489 0.569829 0.310901 0.753788 -0.177904 -0.295926 -0.580598 -0.160990 -0.731729 0.313015 0.808332 -0.705214 -0.928592 -0.118826 0.533787 -0.429717 -0.282228 0.474139 0.227018 1.128482 -1.085808 0.400896 0.121268 0.254408 -1.412818 -1.105874 -0.045501 -0.401085 -0.825795 1.106916 -1.751600 -0.363554 -0.762137 0.200914 -1.545727 -0.457187 0.084726 1.469910 -0.018840 -0.265610 0.629596 0.100708 0.554469 -0.077153 0.394851 0.237381 0.371750 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -6.222306 6.743422 8.654364 -3.041867 10.070961 2.246655 5.550122 5.376435 -8.022921 7.456452 -9.909040 -0.772742 -3.006885 -6.562779 -0.602514 -7.850834 0.554694 -1.924071 -1.228281 3.397755 3.371255 -5.240888 -0.573522 -4.466659 -1.402366 -9.238168 -2.835725 -0.023706 9.494013 0.281447 2.347850 -0.719686 10.933873 0.564650 10.440474 7.142264 1.874146 6.756256 0.086181 -3.707537 -2.797430 7.289447 -5.896336 -6.079195 -2.411559 -6.286526 -5.445761 -3.266291 2.096853 -4.828422 -5.859736 6.435239 -1.564686 2.158432 -3.956168 6.064095 6.630791 -1.230787 11.167473 1.663722 -4.635782 -2.677466 -6.926564 5.022436 -1.104067 2.168173 -3.649462 -5.458950 3.036092 -1.536863 -5.301747 -2.448967 0.628948 7.316855 3.811390 -6.812057 2.993353 -3.086805 -13.967980 -8.011459 -4.394573 2.091253 2.906777 7.545928 0.187649 -0.143660 3.197075 2.690860 -0.712294 -11.885374 -0.339365 10.780271 -5.824700 -5.030762 -4.003056 7.435578 0.511971 5.357883 -4.605458 -3.650845 2.565460 0.816498 0.752196 -12.758269 1.043145 -9.887232 0.652157 0.281237 0.152660 6.149214 1.863773 5.168936 7.780379 8.836031 -10.237369 4.450777 -6.793020 3.073545 -3.915923 -0.227385 -0.263308 2.946690 -0.027542 3.946330 8.772767 -10.555173 2.849001 3.935580 -3.066989 -9.976934 -1.142821 -9.569130 -7.332078 -1.607993 2.556903 3.172008 2.000248 -6.484010 0.336641 -2.125982 -0.645313 -4.280448 2.623506 8.764102 -10.684955 -1.669423 -0.283158 1.259687 -4.973134 8.266010 5.243482 3.884504 9.918428 4.685995 -2.342623 4.950797 -7.229600 -0.302580 11.079825 2.156753 -8.128438 6.956439 -7.167987 -1.153125 3.547627 3.307381 5.946281 2.455994 -11.277174 -6.841456 5.327537 -1.621106 10.347889 4.205758 2.559964 -3.898988 13.458538 -5.780946 -8.053582 7.739305 7.164488 -9.465101 3.743887 3.098526 -7.937209 -1.192405 5.993009 -8.347814 -0.870081 -4.874281 -2.402625 2.731344 -3.948292 -1.177330 1.356667 -9.521455 12.083773 1.071261 4.920828 1.114982 -4.720258 -10.571907 9.774833 0.476389 -1.463384 -4.369285 -2.325997 -10.060106 -8.820198 1.204426 0.230183 -5.030061 -4.800780 -8.808282 1.847890 3.381788 -2.002378 7.154947 -8.607135 -3.418836 3.171607 2.958905 5.865851 -2.722781 -5.516242 -3.154055 -3.352114 5.635600 -6.128133 10.608767 11.539158 -1.980124 10.634743 -4.370521 -7.620244 1.222831 3.935907 -9.157059 8.948254 -1.488905 7.529958 0.260709 6.195199 -6.799153 -2.810481 0.368758 -4.800515 -2.018570 4.560893 -4.644210 0.539370 -0.642763 -8.521263 -3.195694 1.484900 -2.233592 -0.330197 0.255296 3.068167 -9.164143 -1.453395 -7.501694 0.888017 6.362321 -1.569647 -6.494440 2.487436 -0.438928 0.660108 -1.651731 0.019325 0.195437 4.424814 -8.077985 -3.158150 0.172173 -0.099780 -6.872538 -11.115905 0.270385 -8.304338 -8.439583 5.198349 -7.689345 2.384887 -6.784945 -3.611290 -12.497612 -6.822241 4.218829 12.733088 1.934192 -6.488268 1.394237 -1.458207 7.911073 0.985837 3.985977 0.331978 2.831525 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -2.719999 1.832397 1.805122 -1.279599 5.191422 0.286896 1.745125 2.603579 -2.084480 2.929230 -4.130149 -0.759524 -1.338461 -3.252335 0.220101 -2.183221 0.856775 -0.006166 -1.160768 0.589134 1.652983 -1.399316 -0.133727 -1.945232 -0.408182 -3.903349 -1.308000 0.209843 3.266163 -0.006217 -0.270578 0.410320 5.131804 0.074255 3.930102 2.898445 2.023146 3.189381 0.065253 -1.181131 -0.190935 2.972496 -2.177983 -2.920518 -0.388845 -2.728488 -2.847052 -1.117788 1.247584 -2.122623 -1.037681 2.748517 -0.277906 0.733831 -1.807353 2.341802 2.929579 -0.451758 4.544275 1.234832 -2.297043 -1.272540 -2.675814 3.209953 -1.244778 1.400612 -1.315456 -3.126430 -0.094028 0.374219 -0.976113 -1.731826 -1.146514 2.172161 1.600174 -2.583711 1.704127 -0.677484 -2.877007 -3.424222 -2.576967 0.919554 -0.030036 3.383962 -0.151598 -0.238638 0.670999 0.411874 0.209632 -4.459794 -0.622260 4.238768 -2.626845 -0.836678 -2.502550 2.086312 0.271829 1.632251 -2.087895 -2.473680 0.975647 0.184602 0.419861 -3.757087 0.541300 -3.344349 0.577015 0.358455 0.358267 2.850884 0.760557 1.669801 2.452675 3.017894 -3.316668 0.965975 -3.265497 1.595650 -1.513360 0.007652 -0.431005 1.032078 1.039459 1.310943 3.336029 -4.446439 1.844990 1.613916 -1.512030 -3.312633 -0.014084 -3.198394 -3.298020 -0.640387 1.740365 1.057776 0.504432 -2.051164 0.808042 -0.749842 -1.091959 -1.362599 0.081127 2.895343 -4.515239 -0.633881 -0.393053 -0.195142 -1.850538 3.067156 1.921107 1.704279 4.158886 2.167581 -1.487867 2.238202 -3.683395 0.700621 5.272790 1.159958 -3.581980 2.618272 -3.171038 0.140714 1.795231 1.571623 1.981768 1.022730 -3.282263 -1.520929 1.226183 -0.525999 4.532761 1.732956 1.315379 -2.637909 3.972782 -2.222017 -2.342054 4.227700 3.008143 -4.431505 1.655039 2.053271 -2.816518 -0.565427 1.966147 -3.407848 -0.873256 -2.784459 0.099128 1.710216 -2.384344 -0.704436 0.907921 -3.825680 4.492860 0.357963 0.932749 0.718330 -2.738653 -3.500899 4.941981 0.067345 -0.227472 -1.613510 -1.507722 -3.234780 -4.217252 0.529717 0.141731 -2.046983 -1.669677 -3.565536 0.267551 2.923276 -1.055838 2.570014 -4.431654 -0.503738 1.524151 0.985241 2.220295 -1.855391 -2.312093 -0.956311 -1.258806 1.948991 -3.001306 2.990757 4.280552 -1.587270 3.757593 -1.222261 -2.909633 0.319491 1.840911 -3.304306 3.834983 -0.385342 3.120442 0.219096 2.795990 -2.864101 -1.003143 -0.345519 -1.281839 -1.550719 2.247487 -2.604550 0.126635 0.772930 -2.991356 -2.099019 1.038550 -0.040223 0.498345 -0.064912 0.244780 -3.254283 -0.318801 -2.397173 0.773114 2.768871 -0.741823 -2.835889 0.869710 0.413821 -0.855446 -0.797493 0.398762 0.182791 2.791536 -3.426504 -0.694200 0.505048 0.436248 -3.269962 -4.941500 -0.028586 -3.023340 -2.990262 2.459365 -3.952236 -0.238616 -2.622399 -0.391833 -4.676449 -2.323465 1.507997 5.074533 0.925170 -2.180236 1.244240 -0.097660 2.793578 -0.013030 1.254985 0.519922 1.346272 +PE-benchmarks/subset-sum.cpp__main = -0.730668 0.096276 -0.042089 -0.305075 1.757323 0.020058 0.026890 1.189304 0.028418 0.645951 -1.040448 -0.392776 -0.381854 -0.917165 0.239809 0.120154 0.281474 0.365881 -0.641030 -0.404430 0.631149 0.140309 0.042457 -0.547880 0.037187 -0.505808 -0.453181 0.016766 0.347256 0.319336 -0.719933 0.292877 1.195689 0.081946 0.789063 0.590691 0.995646 1.014481 -0.186660 0.528825 0.250168 0.761340 -0.472259 -1.202647 0.506602 -0.960447 -0.735966 -0.339293 0.415230 -0.924991 0.821815 0.701796 0.078428 0.053368 -0.192506 0.344320 0.561986 0.078800 1.012909 0.637129 -1.072681 -0.355799 -0.705962 0.871758 -0.450976 1.141022 0.019348 -1.354430 -0.808960 0.386501 0.520397 -0.804002 -0.735720 0.220787 0.156026 -0.334841 0.680465 0.023684 0.705101 -0.537566 -1.025406 0.210015 -0.504632 0.885335 -0.198276 -0.227928 -0.299136 -0.241486 0.285409 -0.910391 -0.400558 0.998682 -0.698878 0.666724 -1.120772 -0.381916 -0.225764 0.336892 -0.501390 -0.712501 0.302339 0.443081 0.149849 -0.173712 -0.137968 -0.618304 0.784140 0.407982 0.144202 0.400131 0.290590 -0.008354 0.149390 0.545959 -0.316528 0.400810 -0.885726 0.521886 -0.262642 0.243227 -0.263327 0.157259 0.732670 -0.123249 0.574150 -0.947643 0.729276 0.375494 -0.674067 -0.506511 0.334840 -0.671266 -0.989600 -0.099042 0.724353 0.182417 -0.196471 -0.253618 0.329103 -0.351253 -0.922262 -0.440533 -0.585470 0.186940 -1.058439 -0.219401 -0.303282 -0.445304 -0.379742 0.650249 0.336183 0.484545 1.002726 0.661965 -0.471733 0.015791 -1.050809 0.593073 1.573394 0.370595 -1.028491 0.348132 -0.680186 0.535094 0.649696 0.180232 0.249358 0.694149 0.002096 0.351551 -0.240491 -0.070247 1.172953 0.957751 0.795987 -1.088708 0.066505 -0.701504 -0.227801 1.473012 0.886565 -1.379476 0.269861 0.710351 -0.245390 -0.062234 0.145970 -0.637968 -0.374977 -0.837002 0.340496 0.640718 -1.097396 -0.587365 0.499786 -0.976735 1.076338 0.114417 0.274477 0.210419 -1.193836 -0.109767 1.563347 0.170785 -0.120923 -0.242857 -0.455563 -0.606477 -1.085459 0.273245 0.385835 -0.365680 -0.564177 -0.779491 -0.094651 1.299004 -0.344527 0.337493 -0.814847 0.147376 0.371462 -0.455455 0.729219 -1.134770 -0.660787 -0.443167 -0.390880 0.732444 -0.706997 -0.031223 0.968797 -0.678192 0.876613 0.723250 -0.211730 -0.312179 0.634266 -0.341366 0.886730 -0.107745 0.657746 -0.052514 0.943762 -0.708864 -0.102593 -0.306883 0.189465 -0.416228 0.996708 -0.793802 0.018133 0.488717 -0.909775 -0.553645 0.506909 0.250943 0.522689 -0.112850 -0.352669 -0.666892 -0.049091 -0.366015 0.232705 0.881602 -0.477059 -1.018410 -0.131756 0.052701 -0.897855 -0.439358 0.451904 0.001555 1.202434 -0.839701 0.103314 0.384950 -0.025380 -1.207667 -0.791153 -0.382639 -0.481756 -0.554198 0.696756 -1.108588 -0.468347 -0.577927 0.331818 -0.977029 -0.378545 -0.095883 1.089087 0.404990 -0.103793 0.701464 0.368335 0.652323 0.048348 -0.014886 0.266766 0.548826 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -5.213299 3.465887 1.590496 -2.178123 10.305208 -0.908165 3.763798 5.141966 -5.815289 5.213044 -7.500771 -0.396403 -2.129881 -7.743323 0.883235 -1.898383 3.120025 0.935310 -0.973831 2.276277 3.105431 -3.832472 -0.296355 -3.657191 -0.599343 -7.285472 -1.581720 0.702537 6.809890 -1.575848 -0.653619 1.635194 10.455840 0.517872 8.243043 6.065575 3.078989 5.806000 2.410440 -6.599360 -0.715635 5.508760 -3.834811 -6.192269 -0.732111 -4.266168 -5.400308 -2.677103 2.361317 -3.098206 -3.003829 5.521902 -0.789669 1.637204 -5.059088 3.747793 7.261714 -1.736325 8.863556 2.305881 -3.548822 -2.555261 -3.618365 5.862928 -2.542470 0.013420 -2.410592 -5.533746 1.159656 1.295767 -1.869076 -4.052277 -2.351665 4.110034 3.131820 -5.401846 3.336599 -0.644844 -4.708846 -8.861483 -5.658293 1.610674 -1.286473 7.193776 -0.015616 -0.194218 1.086979 0.488005 0.774599 -8.649855 -0.614506 6.769060 -5.018928 -2.222951 -2.852225 6.267012 1.437702 2.457542 -4.375288 -6.090928 1.823007 -1.332979 1.040991 -5.765204 3.087075 -5.398705 -0.305194 -0.790692 1.428702 7.493634 3.311350 3.752191 5.292104 5.481619 -6.496793 -0.237635 -6.720793 3.387976 -3.208602 -0.510964 -0.686081 2.007926 3.249351 2.190947 6.463172 -9.411615 3.458496 4.074665 -0.970484 -6.456495 0.131344 -5.815116 -5.824795 -1.669426 3.951686 1.201300 1.483493 -3.574994 1.643355 -0.703109 -3.066326 -1.640189 -0.486084 8.028945 -10.441261 -0.615126 -0.886087 -0.840354 -2.919171 4.842463 3.445508 3.823309 7.854604 4.408937 -4.267466 6.259762 -7.609815 1.595749 10.924398 2.434465 -6.593660 5.440820 -5.981052 -0.460333 3.539955 3.709935 4.664061 -0.927636 -6.901417 -3.354349 4.590376 -0.762906 8.451403 1.045391 2.588319 -5.540177 8.449585 -1.154789 -4.485022 9.316735 3.121906 -8.864909 5.140261 4.710591 -5.392457 -0.177192 3.446224 -7.124927 -2.297812 -6.014675 0.953440 3.309096 -5.309506 -1.058088 0.897568 -7.174746 7.839981 0.925044 0.304426 1.522478 -4.447402 -4.637889 10.582639 0.742924 0.183303 -3.415053 -3.890510 -5.569249 -8.361740 0.780757 -0.967256 -3.934533 -1.905468 -7.022232 -0.746082 6.394528 -1.494130 4.597225 -11.021214 0.553344 3.264378 3.676018 2.515635 -4.178595 -4.523446 0.334934 -2.152042 2.182181 -5.830863 6.333389 7.518588 -3.802495 5.628564 -2.347786 -4.165134 2.729892 3.001725 -7.049680 7.511300 -0.613144 8.838678 1.326055 5.371766 -5.902873 -1.874715 -0.896500 -2.113513 -3.962855 3.839781 -5.627336 -0.018530 3.131563 -3.754338 -6.413344 1.420666 0.298407 1.654901 -0.199757 -1.166775 -5.429691 -0.095853 -4.202787 2.579392 5.140622 -1.559980 -5.275539 1.978788 2.311013 -0.357796 -1.045651 0.932568 0.584179 5.353717 -6.960904 -0.630474 0.464555 2.757939 -5.035872 -10.757604 2.156601 -5.311897 -4.726255 5.718389 -9.239291 -0.632928 -4.935373 -0.576023 -9.899916 -2.180321 2.403170 9.999980 0.464873 -4.401821 2.443768 -0.551316 3.987798 -0.872094 3.356575 -0.057065 3.016270 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -4.730866 2.527635 2.815096 -2.682744 10.049076 0.422987 2.742015 4.413619 -1.404431 4.381904 -7.931159 -2.573276 -1.653548 -4.942314 0.615219 -2.744887 1.179343 0.692250 -3.144157 -0.026703 2.880853 -0.534468 -0.244393 -3.755856 -0.647646 -4.563406 -3.635417 0.506868 3.865326 -0.384705 -1.393131 0.835471 8.642404 -0.095346 7.130914 4.834339 4.221310 5.775797 -1.216131 0.084232 1.386900 4.875655 -3.601392 -5.701559 -0.144894 -5.117408 -5.502363 -2.583818 2.031034 -4.271600 1.160387 4.475003 0.170726 0.900123 -2.186027 3.766990 4.764341 -0.299075 7.437937 2.866591 -5.503523 0.758375 -4.900431 5.517772 -2.213565 5.289688 -2.393279 -7.095095 -2.549152 1.630883 1.426397 -5.107749 -3.975884 2.776049 2.054228 -3.593132 3.632638 -1.106350 -0.248094 -6.173054 -4.694965 2.073913 -0.760406 5.317149 -0.632937 -0.911249 -0.312930 -0.015612 0.610555 -6.874083 -2.237620 6.983432 -4.971186 0.044524 -4.617503 0.811107 -0.363782 2.713224 -3.636657 -5.156433 1.907098 1.077827 0.353405 -3.038812 1.584752 -4.611849 1.522494 2.603253 0.278474 3.789774 1.226512 2.819533 4.220712 4.427749 -4.300313 1.967613 -5.431486 2.916994 -3.465777 0.251359 -0.894234 1.586499 2.699168 2.092983 5.084548 -6.613109 3.942709 2.570174 -3.965433 -4.329073 0.570455 -5.161108 -6.587150 -0.742391 2.759404 2.438622 0.510396 -2.943067 1.290220 -2.144832 -1.815846 -2.278876 -0.708302 2.612528 -6.829947 -1.513103 -0.557960 -0.603912 -3.341978 5.754187 3.450437 2.431380 7.445399 3.509674 -2.717398 0.909392 -6.543475 1.840921 9.314494 0.534610 -6.243595 4.001967 -5.131714 1.218970 3.799368 2.583597 1.972075 1.913369 -4.065604 -1.160934 0.315290 -1.321169 7.924969 3.676573 2.675860 -5.614374 4.898062 -4.379389 -3.427849 8.750486 5.380232 -8.415963 1.429268 4.084122 -2.928225 -1.676538 3.153284 -5.533532 -2.764823 -4.561152 0.726571 2.489614 -4.334626 -2.242926 2.624755 -6.647263 7.528835 0.679262 0.111619 0.667361 -5.338039 -5.031924 9.834589 0.505256 -0.537792 -1.604301 -2.012081 -2.480531 -7.512553 0.886720 1.375410 -2.898032 -2.943483 -5.581085 1.544103 5.839144 -3.056517 3.939933 -5.455115 -1.046908 2.495586 -0.643262 4.043648 -5.066839 -4.000553 -2.758689 -2.304502 3.116862 -5.496247 3.230905 7.630320 -2.906887 5.750675 1.102510 -5.020248 -1.055172 3.861391 -4.456887 6.665731 -0.773625 4.802478 0.192327 5.186221 -4.845966 -1.983624 -1.202724 -0.895381 -3.120363 4.945378 -4.867756 0.509864 1.225543 -5.178133 -3.465646 2.925808 0.596764 0.699534 -0.526553 -0.351400 -5.849513 -0.240420 -3.377319 1.098244 4.844927 -1.935716 -6.259583 0.871572 1.127965 -3.267221 -1.819951 0.943437 0.184235 6.051900 -5.626935 -0.373354 1.800306 0.821481 -6.987599 -7.226494 -0.713777 -5.641386 -4.140916 3.493421 -5.847021 -2.218634 -4.377367 0.101467 -6.271714 -4.271845 2.857254 8.464849 2.923688 -3.739732 2.337890 0.279314 5.156192 0.514903 1.028430 1.011726 2.381938 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -3.445389 1.999280 1.523507 -1.219610 5.379122 0.248260 1.469127 2.344256 -2.127633 3.445903 -4.872183 -1.803427 -1.954338 -4.080614 -0.060849 -1.723989 1.430114 0.168731 -1.165678 0.951037 2.072561 -2.202783 0.112718 -2.359745 -0.468105 -3.301705 -1.801051 0.158318 3.893306 -1.354582 -0.591981 0.302667 6.550198 0.702441 5.566455 3.483822 1.424740 4.381415 0.707852 -1.996464 -0.862625 4.029072 -2.831000 -3.962656 -0.098239 -3.529521 -2.479819 -1.852349 1.500110 -1.588633 -0.234579 3.233278 -0.498930 1.173774 -2.732136 1.751446 3.907195 0.267303 6.044417 1.114884 -2.334825 -0.145784 -2.913844 2.610705 -1.777235 1.408581 -1.301056 -3.369329 0.351750 -0.328775 -0.179575 -3.124362 -1.930203 3.048647 1.612196 -3.217127 1.966161 -0.738510 -3.246454 -5.135325 -4.016243 0.859622 -0.361331 3.958824 -0.356037 -0.108885 0.446298 0.870834 0.327906 -5.718034 -0.329721 4.232908 -3.140473 -0.502882 -1.147965 3.066212 -0.586364 2.240433 -3.121251 -2.432853 1.017798 -0.071901 0.589644 -3.127074 1.576674 -3.581892 1.323401 -0.240420 0.090864 2.441816 3.212116 1.994334 3.859688 4.003005 -4.079368 0.340837 -3.865811 1.415453 -1.549983 -0.224056 -0.068211 1.799269 0.633575 0.570830 4.379330 -5.740198 1.890681 1.997124 -1.628036 -4.325310 -0.113585 -4.207566 -3.937725 -0.919909 2.251609 1.116854 0.715073 -2.977705 0.305109 -0.994112 -1.946511 -1.240289 0.346713 4.065133 -4.851049 -0.742137 -0.560315 -0.887752 -2.057222 3.477019 2.119296 2.231588 4.919368 2.758647 -2.457680 1.622310 -4.239305 0.546132 6.231354 0.605025 -4.650324 3.175465 -3.247906 0.163787 2.605318 2.154486 3.141182 -0.323129 -3.549103 -1.850983 1.934656 -0.312817 5.303030 1.017529 2.115479 -2.324585 5.168916 -0.476038 -3.048052 5.966816 2.021346 -5.194839 2.094706 2.171538 -2.754031 -0.242803 2.401113 -3.637887 -0.740339 -3.541618 0.130784 1.642320 -2.975836 -0.700514 1.016391 -4.941965 5.758429 0.469139 0.877620 1.252357 -3.890070 -3.528472 6.258175 0.162548 -0.301464 -2.034153 -2.063347 -3.029446 -5.154089 0.790635 -0.249578 -2.348949 -1.664193 -4.423857 0.962987 3.523168 -0.750954 3.133462 -4.641673 -0.921901 1.662741 0.941263 2.515201 -2.286301 -2.825381 -0.325209 -1.320696 2.586125 -3.059348 3.831162 5.441456 -2.103143 3.681370 -0.376441 -2.376338 0.858345 2.025166 -4.256356 4.483475 -1.159342 3.905131 -0.091395 3.400930 -3.151748 -1.138251 -0.044665 -0.219387 -1.706033 2.337988 -2.792784 -0.022886 0.650828 -3.499095 -2.516793 0.759755 -0.524241 0.805949 0.140360 -0.199377 -3.921735 -0.007092 -2.328149 0.979559 3.453202 -0.192703 -3.524715 1.114138 0.172323 -0.085268 0.124848 0.362790 -0.271686 3.315008 -4.298967 -1.320360 0.318407 0.578873 -2.831451 -5.539080 -0.144444 -3.543014 -2.562913 3.975091 -4.727416 0.106459 -3.118547 -0.848833 -4.777297 -1.191598 1.130878 6.172187 1.954328 -3.107266 1.357032 -0.236073 3.511373 0.240821 1.001218 0.212571 2.169601 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.447585 0.093334 0.008962 -0.154401 0.909995 0.134138 0.025318 0.733680 -0.254244 0.598684 -0.590283 -0.087409 -0.223314 -0.355224 -0.012492 0.261855 0.133661 -0.006677 -0.292150 -0.132077 0.287121 -0.131914 0.114682 -0.247072 -0.055838 -0.302995 -0.185982 0.036132 0.523291 0.027361 -0.491024 -0.059508 0.709523 -0.023296 0.579674 0.306151 0.328465 0.512490 0.071270 -0.160988 -0.018874 0.532499 -0.387234 -0.521377 0.100522 -0.611670 -0.304781 -0.231561 0.302339 -0.407390 0.342942 0.386851 -0.057291 0.071032 -0.175889 0.346188 0.329365 -0.065677 0.823109 0.145919 -0.509493 -0.239028 -0.392386 0.539326 -0.189394 0.409316 -0.202115 -0.615339 -0.204033 0.000709 0.063667 -0.453531 -0.090168 0.365891 0.047495 -0.350686 0.349924 -0.102121 0.350270 -0.680266 -0.538360 0.094035 -0.201610 0.473373 -0.128850 -0.044858 -0.206428 0.067873 0.030301 -0.723354 -0.064780 0.504797 -0.475158 0.142632 -0.222027 0.080763 -0.204215 0.288759 -0.301598 -0.223909 0.075729 0.225357 0.087687 -0.515381 0.481162 -0.344195 0.321541 0.069568 0.215645 0.168582 0.353409 0.104453 0.343964 0.538814 -0.207230 0.165758 -0.502007 0.199221 -0.099287 0.092023 -0.116146 0.263037 0.363534 -0.022016 0.582747 -0.697380 0.276631 0.140646 -0.274793 -0.477049 0.050952 -0.506319 -0.543842 -0.034080 0.296028 0.062060 -0.028289 -0.397725 0.213882 -0.187163 -0.623822 -0.074190 -0.062175 0.309896 -0.746206 -0.126592 -0.086443 -0.113698 -0.165819 0.514401 0.286216 0.295785 0.655943 0.383731 -0.221562 0.008120 -0.612635 0.244143 0.776323 0.048439 -0.598051 0.334012 -0.504111 0.155028 0.457609 0.217460 0.356691 0.241785 -0.157679 0.028705 0.273526 0.075711 0.756140 0.222738 0.508207 -0.326802 0.317570 -0.393240 -0.212283 0.716584 0.427298 -0.830238 0.262688 0.231537 -0.073265 0.178170 0.209291 -0.416218 -0.134181 -0.436485 0.005240 0.414285 -0.459576 -0.215937 0.217827 -0.602567 0.864607 0.002590 0.204652 0.259594 -0.611824 0.248573 0.719493 0.180879 -0.051841 -0.215384 -0.258714 -0.683670 -0.664684 0.109679 0.075945 -0.262120 -0.264680 -0.580222 -0.009497 0.465790 -0.014215 0.310614 -0.694236 0.053061 0.238626 -0.146377 0.406954 -0.332624 -0.343731 -0.209028 -0.342543 0.510643 -0.550719 0.366681 0.631569 -0.308109 0.632251 0.294360 0.074331 -0.044533 0.236511 -0.438689 0.583924 -0.086850 0.373658 -0.076531 0.472970 -0.396142 -0.024086 -0.187076 0.101413 -0.160370 0.411998 -0.406025 -0.040713 0.092812 -0.636704 -0.279944 0.114679 -0.023716 0.198997 0.058889 -0.139150 -0.547235 -0.127985 -0.499525 0.082994 0.458844 -0.259189 -0.603442 0.088057 -0.101851 -0.247180 -0.129048 0.089259 0.001073 0.499201 -0.541498 -0.187210 0.163376 0.080781 -0.548140 -0.474852 -0.261442 -0.185002 -0.393572 0.548365 -0.602652 -0.144561 -0.403663 -0.069436 -0.817265 -0.126219 0.003870 0.805099 0.219444 -0.288850 0.291674 0.089133 0.477017 0.095605 0.096256 0.051391 0.166915 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.539875 0.032596 -0.304131 -0.214574 1.321806 0.090780 -0.089374 0.970186 -0.108724 0.605241 -0.664859 -0.172806 -0.196616 -0.652087 0.126201 0.372547 0.157285 0.223171 -0.442293 -0.267553 0.429113 0.023458 0.086577 -0.304380 -0.036537 -0.351132 -0.267888 0.070478 0.457337 0.050130 -0.677257 0.077816 0.862058 -0.057205 0.597778 0.381741 0.755062 0.609563 -0.029138 0.089214 0.091813 0.562446 -0.414867 -0.751200 0.300176 -0.710672 -0.552242 -0.165659 0.364846 -0.552464 0.622197 0.516987 -0.007362 0.039835 -0.126042 0.347308 0.367091 -0.095410 0.850060 0.346956 -0.734768 -0.392737 -0.506425 0.890618 -0.317244 0.720382 -0.078121 -0.938985 -0.535269 0.192338 0.307795 -0.631707 -0.448021 0.330018 0.124275 -0.336834 0.480509 -0.073153 0.750794 -0.614952 -0.739660 0.149507 -0.472485 0.630408 -0.140121 -0.085905 -0.239957 -0.057056 0.087489 -0.792760 -0.170440 0.666979 -0.582007 0.466581 -0.727154 -0.192431 -0.223415 0.288365 -0.396236 -0.455773 0.168464 0.331855 0.146160 -0.285609 0.333747 -0.411387 0.450388 0.155784 0.253118 0.315582 0.324653 -0.029347 0.204095 0.555405 -0.141498 0.079505 -0.606987 0.315245 -0.160916 0.245916 -0.230495 0.216284 0.654711 -0.074735 0.569683 -0.785922 0.455269 0.177699 -0.413202 -0.463986 0.181382 -0.522267 -0.669802 -0.051274 0.475683 0.027015 -0.164284 -0.308104 0.331518 -0.155754 -0.942276 -0.229156 -0.300019 0.145428 -0.896282 -0.120497 -0.194162 -0.283589 -0.210045 0.539844 0.356744 0.421481 0.789248 0.518230 -0.282143 0.166330 -0.791566 0.442327 1.105287 0.251487 -0.777434 0.340953 -0.677827 0.302679 0.503276 0.231914 0.277730 0.467790 -0.001972 0.252941 0.081204 0.099563 0.914996 0.458248 0.584678 -0.650112 0.053159 -0.408812 -0.187073 1.101956 0.527714 -1.055533 0.347120 0.389150 -0.025858 0.137904 0.152978 -0.525883 -0.274747 -0.617448 0.223697 0.541469 -0.718205 -0.374554 0.350462 -0.703987 0.897162 0.018181 0.095066 0.283232 -0.869662 0.200156 1.047704 0.179835 -0.119258 -0.255946 -0.348730 -0.549421 -0.754116 0.190130 0.209208 -0.288051 -0.374095 -0.651841 -0.133588 0.921495 -0.084057 0.289884 -0.935063 0.158565 0.292625 -0.258537 0.515031 -0.735063 -0.405983 -0.316656 -0.282565 0.517489 -0.626766 0.085294 0.724840 -0.529776 0.627312 0.435497 -0.037740 -0.171876 0.385331 -0.371118 0.704929 0.009007 0.434326 -0.066610 0.631135 -0.498843 0.017055 -0.259304 0.223242 -0.216323 0.608752 -0.513066 -0.060940 0.317365 -0.670805 -0.462686 0.235338 0.142631 0.361774 0.014590 -0.408859 -0.473154 -0.117045 -0.344527 0.141489 0.620099 -0.380753 -0.688430 0.027347 -0.050707 -0.510559 -0.172390 0.266599 0.046339 0.821251 -0.658439 -0.020570 0.248408 0.106240 -0.834309 -0.592561 -0.365607 -0.189074 -0.345679 0.596747 -0.850985 -0.338788 -0.456396 0.122026 -0.794669 -0.183264 -0.047117 0.886563 0.286504 -0.176238 0.521039 0.199452 0.509811 0.051394 0.032346 0.194505 0.313248 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -11.128370 8.767401 8.664477 -4.524464 13.401139 3.742237 4.495359 4.357981 -7.239979 13.127356 -16.180768 -6.219177 -6.896519 -11.486897 -2.112998 -10.501457 1.699455 -2.869008 -2.963043 4.896209 6.314561 -9.746719 -0.484216 -7.247204 -2.288406 -13.520138 -6.354300 0.122152 14.660413 -5.536094 1.127426 -1.126750 20.844005 2.364669 18.094818 12.279979 2.884536 14.398689 0.935198 -3.112706 -5.792294 14.073376 -10.636077 -8.975068 -2.348026 -11.575558 -7.031224 -5.338545 4.239658 -2.930292 -2.246746 11.257338 -2.992845 4.273841 -8.877227 7.626005 10.978011 1.083473 21.043419 2.235829 -5.001640 0.134580 -11.791525 8.679271 -5.402559 3.785590 -3.939279 -7.457363 5.311193 -5.247656 -1.958629 -7.591790 -3.932866 13.071534 5.552471 -12.295177 4.737420 -5.309742 -21.426400 -16.642496 -11.570379 3.114885 4.174901 12.492448 -0.556808 0.169589 3.450674 6.211330 -1.423311 -20.767643 0.502628 15.473940 -9.655030 -4.709842 -5.331823 13.416559 -2.393050 9.249363 -10.627828 -3.919158 3.710873 0.053038 2.022072 -15.752774 3.802984 -14.650049 4.284734 -1.352896 -1.531961 4.614158 9.875964 7.183684 15.390844 15.754661 -15.609949 2.851198 -11.494769 2.926213 -1.867384 -1.125746 1.385809 6.616112 -3.111917 2.655705 16.357978 -18.816701 3.737078 5.098812 -7.406304 -17.100608 -2.778686 -16.231735 -12.839931 -3.611537 5.333492 5.521966 3.134812 -12.038778 -0.188173 -3.400414 -3.134005 -5.873076 5.659654 14.729914 -12.923538 -2.934023 -1.120142 -0.947254 -8.243283 13.558523 8.235570 7.239823 17.287955 8.398198 -4.702551 3.861149 -12.181928 -1.763894 17.706002 4.285889 -15.738335 11.959385 -10.378713 -1.092865 6.906748 8.147204 11.535573 -0.941699 -15.296161 -9.765178 6.505848 -1.669609 17.797623 2.550479 4.654275 -1.465715 21.635117 -1.786872 -13.818555 15.714616 9.449860 -12.855246 4.262466 4.150573 -9.741097 -2.218108 11.203678 -11.286681 -0.146635 -8.791290 -2.341301 3.808796 -6.134258 -0.091319 2.547598 -16.966177 21.277663 1.044045 7.351358 4.963048 -12.768152 -19.218849 15.645080 -2.543191 -2.418944 -7.610292 -4.986236 -12.207514 -15.444422 3.109555 -0.949499 -8.123837 -7.000244 -15.395004 5.994877 7.718914 -1.971164 12.063639 -12.648644 -8.123423 5.202245 2.749229 10.499594 -2.795498 -9.121113 -2.054395 -2.606430 10.546046 -8.623981 16.935940 20.759121 -4.452094 13.302039 -5.129560 -8.679446 2.251090 6.716372 -16.605662 15.329595 -4.171178 7.270514 -1.392730 9.811346 -9.843871 -4.908174 2.598524 -1.374592 -2.759349 5.135671 -6.042296 0.527282 -2.994230 -14.455697 -3.710716 1.415193 -4.954792 -1.028941 1.715345 3.684977 -13.806259 -1.321579 -9.348701 1.508283 11.330486 2.590674 -8.152653 5.350857 -2.541258 3.619094 5.096418 -0.547835 -1.319497 8.751636 -14.225286 -7.259779 -0.499782 -0.452258 -7.720950 -18.847011 -2.503804 -12.881770 -11.219879 12.880606 -13.505294 3.611179 -11.598275 -6.163732 -15.109900 -5.822571 5.679862 21.231484 8.424567 -12.920845 2.114045 -2.665908 14.353208 1.725598 2.655340 1.555796 6.414754 +PE-benchmarks/palindrome-partitioning.cpp__main = -0.389988 -0.047815 -0.050524 -0.166347 0.851875 -0.062524 -0.113771 0.601737 0.531025 0.278591 -0.586278 -0.513557 -0.191349 -0.325429 0.136637 0.094900 0.102205 0.317245 -0.472764 -0.393950 0.361437 0.343737 -0.028277 -0.312048 0.037593 -0.014348 -0.401923 0.002037 -0.097128 0.120834 -0.542774 0.218024 0.658351 0.067726 0.525598 0.341635 0.581789 0.612105 -0.217329 0.787615 0.275463 0.417921 -0.245024 -0.673314 0.319458 -0.535731 -0.306475 -0.221792 0.209371 -0.453894 1.016906 0.307665 0.103533 0.061534 0.020297 0.078458 0.054979 0.323647 0.490568 0.419542 -0.698954 0.259238 -0.441215 0.509441 -0.317047 0.946817 0.009091 -0.866600 -0.652308 0.212198 0.690713 -0.627055 -0.572703 0.031266 -0.069292 -0.065818 0.442266 0.034293 0.889246 -0.146403 -0.642039 0.168787 -0.296667 0.366163 -0.186892 -0.187572 -0.484866 -0.151056 0.163806 -0.371804 -0.306765 0.468162 -0.436809 0.585580 -0.545862 -0.559222 -0.190527 0.211220 -0.166961 -0.368668 0.194108 0.285320 0.052260 0.406457 -0.058932 -0.131393 0.592021 0.436090 -0.031141 -0.017773 0.182208 0.018449 0.132771 0.212294 0.121055 0.225373 -0.458199 0.312552 -0.194731 0.121718 -0.062618 0.101349 0.360935 -0.139732 0.227407 -0.341121 0.389088 0.133313 -0.497311 -0.069170 0.236044 -0.340523 -0.625187 -0.098400 0.391435 0.243560 -0.187302 -0.109575 0.125154 -0.276960 -0.392842 -0.240140 -0.379240 -0.304073 -0.234445 -0.195080 -0.174185 -0.300097 -0.233982 0.392210 0.143317 0.221078 0.524767 0.333665 -0.236642 -0.624952 -0.563461 0.283336 0.714514 -0.092177 -0.551081 0.127503 -0.259850 0.359327 0.425426 0.137539 -0.031523 0.445146 0.296139 0.357973 -0.534598 -0.067392 0.616950 0.572561 0.429921 -0.482985 -0.235089 -0.444873 -0.148924 0.919110 0.490314 -0.710067 -0.218591 0.354174 0.083033 -0.190347 0.082763 -0.225846 -0.194131 -0.426139 0.225037 0.297444 -0.593714 -0.341357 0.473747 -0.531228 0.535767 0.038646 0.054745 0.065943 -0.831689 0.043539 0.970333 0.116752 -0.075528 -0.006596 -0.185356 0.058658 -0.569637 0.159848 0.313974 -0.042748 -0.305888 -0.315779 0.145594 0.740014 -0.294989 0.139484 0.060471 -0.054945 0.171859 -0.634338 0.412084 -0.696507 -0.352596 -0.359496 -0.182374 0.448424 -0.327355 -0.240721 0.592210 -0.324560 0.337204 0.907140 -0.065020 -0.403553 0.416503 -0.099612 0.447897 -0.156295 -0.088082 -0.057589 0.475180 -0.356855 -0.148493 -0.174017 0.340183 -0.249076 0.576731 -0.348277 0.074999 0.109443 -0.578914 -0.073848 0.349859 0.171758 0.221657 -0.068169 -0.196379 -0.432204 0.009515 -0.138214 0.063289 0.493771 -0.151844 -0.620196 -0.068410 -0.049093 -0.688534 -0.243488 0.227593 -0.081223 0.758449 -0.396377 0.052477 0.341311 -0.064635 -0.709603 -0.195599 -0.414057 -0.280556 -0.165498 0.202234 -0.381205 -0.430523 -0.271102 0.247837 -0.242456 -0.212819 -0.025635 0.514130 0.482793 -0.082146 0.355689 0.231564 0.436863 0.181366 -0.256675 0.156615 0.353536 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -1.556838 1.228676 -0.353373 -0.805853 1.205478 -0.219314 0.388775 1.486662 0.927125 0.922992 -2.698275 -1.994274 -0.692254 -1.614222 -0.005296 -0.820003 0.792099 0.637433 -0.941973 0.055606 1.011737 -0.086184 -0.156395 -1.553268 -0.159266 -0.140575 -1.034404 -0.237855 0.330658 -0.132642 -0.083072 0.336887 3.540832 0.620644 2.842174 1.743737 1.102905 2.375550 0.827077 1.240367 0.033785 1.957236 -1.085294 -1.808878 -0.140484 -1.644333 -0.824334 -0.839745 0.211051 -1.155993 2.559313 1.216775 0.545389 0.715794 -1.094752 0.380151 1.768132 0.302192 2.562004 0.873023 -1.436011 1.089956 -0.501642 1.278445 -0.850678 1.521679 0.008014 -1.168556 -0.241807 0.019738 0.990392 -2.005589 -1.650419 0.753915 0.328474 -1.264502 1.497989 -0.167356 0.048644 -1.830807 -1.662493 0.751669 -0.121678 1.599840 -0.544976 -0.341308 -0.845903 0.156595 0.356535 -1.881099 -0.500975 1.651701 -1.283509 0.037009 -1.116177 0.656948 -0.322356 1.150981 -1.453207 -1.380707 0.611282 0.263563 0.061842 -0.328410 -0.207786 -1.066833 1.115458 1.118613 -1.088829 1.734297 1.713748 1.577348 2.135482 1.376829 -1.082512 0.808714 -2.164660 0.440541 -0.820196 -0.455225 0.656197 0.150134 0.586810 0.183374 0.967997 -2.006622 1.220388 1.406184 -1.327656 -1.077323 0.143627 -1.695504 -2.256184 -0.531856 0.931630 1.212364 0.441095 -1.111732 -0.037854 -0.873409 -0.197317 -1.563173 -0.095089 0.687898 -1.283105 -0.818044 -0.183341 -0.299932 -1.078556 1.573417 0.362445 -0.131294 2.064259 0.545267 -1.186126 -0.887908 -1.376268 -0.066981 2.310848 0.098542 -2.116752 1.084833 -0.956847 0.188723 1.160400 0.923197 0.479072 0.189938 -1.299973 -0.623136 -0.364544 -0.819844 2.059063 0.082697 0.486764 -1.623995 2.277970 -0.092473 -1.365360 3.929904 1.602606 -1.689787 -1.308460 1.061205 -0.798775 -0.615946 1.185912 -1.299632 -0.840892 -1.188988 0.115516 0.128554 -1.233802 -0.571840 0.889850 -2.208038 2.042491 0.322576 -0.496544 -0.701708 -2.687865 -0.208692 3.495868 0.104747 -0.138383 0.122057 -0.631888 -0.006884 -2.716106 0.500099 0.695812 -0.195558 -0.834831 -1.227698 1.233708 1.400977 -1.093975 0.758007 -1.074449 -1.154169 0.792587 -0.876670 0.998576 -2.115597 -1.478825 -0.503700 0.214695 1.668702 -1.016056 1.484936 2.713485 -0.574981 1.420214 1.501175 -1.019878 -0.323157 1.330995 -1.693360 1.803995 -0.950367 0.636669 -0.034107 1.418222 -1.415484 -0.976689 -0.371258 0.670227 -1.133680 1.053125 -1.312509 0.309227 -0.292649 -1.184703 -0.264477 0.843669 -0.259874 -0.347826 -0.204983 0.093598 -1.573489 -0.142521 -1.029235 0.003787 1.665166 0.666330 -1.824310 0.247253 0.119390 -0.557221 0.834841 -0.188516 -0.377605 2.005845 -1.738932 -0.282874 0.509756 -0.212167 -1.617487 -1.747294 -0.176146 -1.169655 -0.660590 0.997145 -1.089376 -0.979990 -1.046756 0.022147 -1.442256 -0.578633 0.897934 2.374665 1.500266 -1.721322 0.029481 0.042370 2.162668 0.846030 -0.079273 0.110626 1.267375 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.983124 0.900763 0.252131 -0.759722 1.977153 0.110677 0.289231 0.795216 0.127692 1.028717 -1.831731 -0.425218 -0.280824 -1.455196 0.113640 -0.454309 0.117819 0.377998 -0.524789 -0.156226 0.650438 -0.388483 0.095737 -0.973687 -0.121342 -1.340638 -0.565813 0.033435 0.389978 0.249637 -0.187628 0.206354 1.624820 0.291008 1.108412 0.998641 0.709525 1.580933 0.137207 1.073088 0.397644 0.850695 -0.553835 -1.618543 0.392040 -1.085885 -0.933517 -0.855159 0.309680 -1.403455 1.154073 0.979894 0.094379 -0.176056 -0.868323 0.407642 1.188984 0.127346 1.511801 0.677393 -1.137190 -0.162108 -0.900835 0.933188 -0.766492 1.015504 0.473524 -1.432366 -0.405899 0.656549 0.551149 -0.712551 -1.035044 0.281682 0.326185 -0.785057 0.495563 -0.308204 -0.929165 -0.616820 -0.845147 0.509743 0.001381 1.238235 0.069355 -0.131061 -0.251114 -0.060664 0.378285 -1.251978 -0.659371 1.565445 -0.559134 0.451534 -1.089531 0.532378 0.075751 0.159169 -0.611130 -0.656636 0.418468 0.489033 0.154109 -0.420827 -1.028698 -1.481005 1.181586 0.716455 -0.494583 0.322130 0.499879 0.290779 0.421023 0.730450 -1.035309 0.749091 -1.508326 0.502816 0.177414 0.008613 -0.235400 -0.008461 0.145525 0.025764 0.817866 -1.327811 1.209452 0.649412 -0.930170 -1.046823 0.182822 -0.751528 -1.177206 -0.019178 0.593271 0.461893 0.121968 -0.227036 -0.056159 -0.585633 -0.750188 -1.072665 -0.250973 1.246289 -1.099128 -0.141088 -0.167516 -0.314630 -0.753528 0.862414 0.496062 0.358876 1.542341 0.749724 -0.301765 0.171309 -1.196056 0.460343 2.207348 1.066624 -1.370905 0.685775 -0.688192 0.405712 0.593129 0.269412 0.341287 0.518828 -0.939620 -0.294638 -0.101306 -0.604498 1.472700 1.108958 0.743298 -1.233439 1.261308 -0.205307 -0.371746 1.957845 1.289955 -1.515117 0.282180 1.245778 -0.981821 -0.294130 0.618728 -0.695204 -0.373619 -0.730096 0.196548 0.418065 -1.114566 -0.867865 -0.001004 -1.397943 1.637712 0.255588 0.642181 0.064885 -1.287061 -0.914091 1.966989 -0.060170 -0.171063 -0.156657 -0.429592 -0.955181 -1.603096 0.207208 0.767377 -0.912705 -0.635664 -1.054251 0.226176 1.383951 -0.866659 0.511119 -0.582595 -0.374201 0.570753 -0.120189 0.701132 -1.326430 -0.808649 -0.285214 -0.039845 0.876624 -0.575470 0.741262 1.524481 -0.586470 1.278931 0.716605 -0.197241 0.017586 1.050996 -0.619129 1.342575 -0.498678 0.822723 0.100435 1.179854 -0.772982 -0.259733 -0.178205 -0.146200 -0.471382 1.102970 -1.260550 0.001232 0.597540 -1.094827 -0.589557 0.868786 0.391129 0.624974 -0.252291 0.068515 -0.715221 -0.093055 -0.653057 0.260127 0.986609 -0.184524 -1.269321 -0.134589 0.485088 -0.757280 -0.332948 0.425548 0.149125 1.377456 -1.171013 0.393765 0.266872 -0.279246 -1.648468 -1.324876 0.070845 -1.061259 -1.048632 0.672553 -1.735057 -0.503800 -0.842574 0.351393 -1.526568 -0.375440 0.047661 1.586779 0.558416 -0.283539 0.614921 0.131452 0.886931 0.061892 0.097394 0.404528 0.946394 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -0.673005 0.533882 -0.052526 -0.616117 1.807439 -0.040060 0.079595 0.818150 0.121517 0.548111 -1.367532 -0.179282 -0.031537 -1.114928 0.291664 0.139809 0.169740 0.451208 -0.465379 -0.224283 0.489163 -0.059515 0.064575 -0.799687 -0.020978 -0.733961 -0.389552 0.055610 0.104950 0.342302 -0.508762 0.308244 0.996942 0.089108 0.572636 0.656769 0.749080 1.035548 0.074282 0.481989 0.628769 0.469438 -0.275764 -1.311961 0.439739 -0.792236 -0.814405 -0.610747 0.249168 -1.124983 0.871104 0.681480 0.207242 -0.305471 -0.606208 0.320052 0.899207 0.060685 0.894586 0.691467 -0.927406 -0.179886 -0.537306 0.659866 -0.598723 0.971014 0.276091 -1.262832 -0.689141 0.910728 0.610827 -0.661184 -0.921396 -0.153396 0.123336 -0.402449 0.531174 -0.070415 0.367833 -0.437176 -0.607134 0.426208 -0.359539 0.923912 0.028481 -0.165184 -0.399297 -0.293763 0.475010 -0.628227 -0.715726 0.921086 -0.374971 0.484877 -0.792987 0.081413 0.249090 -0.125881 -0.326969 -0.751824 0.366505 0.414928 0.085255 0.035248 -0.414045 -0.850791 0.834095 0.751339 -0.189073 0.425038 0.126032 0.152564 0.015751 0.222260 -0.397449 0.357770 -1.118155 0.343736 -0.087232 0.065569 -0.334714 -0.138927 0.598862 -0.026969 0.319767 -0.812871 1.139676 0.575588 -0.619778 -0.400650 0.406717 -0.274476 -0.873221 0.076455 0.491370 0.263100 0.005472 0.180823 0.157234 -0.468660 -0.722900 -0.549076 -0.563164 0.776212 -0.989275 -0.062325 -0.155536 -0.303062 -0.398714 0.438357 0.282772 0.182452 1.065915 0.517967 -0.377142 0.104218 -0.919066 0.664916 1.766488 0.609465 -0.887863 0.332760 -0.438517 0.437633 0.433295 0.073946 -0.024492 0.560720 -0.408964 0.013140 -0.306309 -0.530282 0.993901 0.847922 0.675926 -1.276605 0.510144 -0.337017 0.048982 1.499050 0.843437 -1.243464 0.260191 1.219908 -0.533373 -0.185636 0.211934 -0.488195 -0.418112 -0.593591 0.336019 0.385004 -1.068942 -0.916152 -0.046093 -0.886087 0.943467 0.260869 0.168003 -0.099998 -0.784259 -0.049287 1.605740 0.134512 -0.093792 0.008867 -0.325101 -0.508919 -1.189484 0.118837 0.662799 -0.623995 -0.392905 -0.624590 -0.117944 1.234990 -0.836621 0.063648 -0.647125 0.128323 0.425385 -0.120894 0.418346 -1.130172 -0.575075 -0.200392 -0.187615 0.417825 -0.572717 0.166160 0.861037 -0.579720 0.788874 0.802559 -0.009613 -0.021113 0.866370 -0.114601 0.921016 -0.173853 0.907944 0.201136 0.968886 -0.604207 -0.106681 -0.334748 -0.209876 -0.476133 1.034483 -1.145596 -0.017926 0.806090 -0.459410 -0.737552 0.847323 0.579532 0.664307 -0.344646 -0.225978 -0.330206 -0.000611 -0.287245 0.292717 0.682545 -0.453116 -1.091321 -0.320618 0.713653 -0.916540 -0.542854 0.507246 0.149496 1.242980 -0.781390 0.685017 0.329075 0.019338 -1.432199 -0.761240 0.124040 -0.533915 -0.514997 0.458215 -1.373444 -0.733858 -0.483960 0.599354 -0.965780 -0.215189 -0.044706 0.960368 0.236276 -0.013424 0.597407 0.223395 0.385219 -0.019623 0.027181 0.178294 0.607357 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -8.252627 9.338674 6.286646 -5.987147 14.859185 1.718988 5.744098 5.169212 -4.449454 9.101963 -14.993793 -2.015298 -2.163674 -11.682329 0.090871 -8.759973 0.299031 0.463672 -2.603944 2.444938 4.763936 -5.633396 -0.557383 -7.588686 -1.688305 -13.928762 -4.312206 0.242376 7.754205 0.061563 2.890361 0.438951 14.528601 1.554799 11.646233 9.688864 4.742964 10.946218 0.434742 3.256681 0.050134 7.984067 -6.040321 -10.170050 -0.873445 -7.722093 -8.644359 -5.529084 2.044404 -8.876928 0.536204 8.755984 -0.561882 0.505545 -6.893262 6.188835 10.626568 -1.507250 13.500172 4.091559 -7.233719 -1.769724 -8.476925 8.923852 -4.357844 4.870340 0.692710 -8.951632 1.057631 2.133433 -1.070487 -4.097535 -5.147565 6.103311 4.932712 -8.565860 3.443892 -4.104556 -16.238904 -8.135362 -5.406233 4.119008 3.118069 10.503166 1.205801 -0.424090 2.458625 1.786013 0.895571 -13.199703 -3.394674 14.410633 -6.108289 -2.408189 -9.003839 8.585630 1.544605 3.969652 -5.861787 -6.098113 3.738781 2.047736 1.060066 -9.859133 -5.503066 -13.711996 4.273906 3.281167 -3.279405 6.246405 2.432677 5.170341 7.077355 8.883721 -12.247068 5.678896 -11.036709 4.192653 -1.229765 -0.164594 -0.891054 0.995816 0.037170 3.853356 9.225895 -12.477095 7.327347 5.577800 -6.233376 -11.517132 -0.645575 -9.478740 -9.793887 -1.247187 3.525721 4.650320 2.504239 -4.870753 -0.271798 -3.433378 -2.433655 -8.881068 1.461612 11.803559 -11.588018 -1.493533 -0.561825 0.252033 -7.409080 9.270370 5.956747 3.643871 13.505289 5.933128 -2.086933 6.114993 -9.449424 0.989900 17.273716 7.993213 -11.208347 8.097088 -8.207835 0.324059 4.059702 3.742348 4.828089 2.698997 -13.549735 -6.765896 3.564289 -4.782269 13.135479 6.875927 3.033707 -8.213946 15.995396 -2.932593 -7.748233 14.215789 10.864606 -12.198571 3.992588 7.718240 -10.312458 -3.069772 7.465955 -8.730764 -2.856814 -5.861576 -0.375218 2.322394 -6.241940 -4.090462 0.223023 -12.309346 14.605020 2.009050 5.518472 0.684679 -7.831816 -14.520031 14.843814 -1.144919 -1.986417 -3.552269 -2.806309 -9.450517 -12.629301 1.542657 3.422776 -7.770815 -5.637012 -10.377980 2.889939 8.585706 -6.117540 7.227223 -8.783291 -5.141940 4.506016 2.604904 6.321310 -7.949633 -6.975968 -3.227001 -0.467668 6.260827 -6.166064 10.711046 14.995969 -3.534254 11.873838 -1.807001 -7.844144 1.140854 7.732790 -9.188356 11.965865 -2.972495 8.010916 1.043160 8.870685 -8.045626 -3.559573 -0.029847 -4.395944 -3.419239 6.941412 -8.472420 0.593811 2.069102 -9.604938 -4.801222 5.259749 0.214223 1.923129 -1.172213 2.631463 -8.356508 -1.107414 -7.347709 1.548331 8.226762 -0.703869 -8.775297 1.399231 2.728845 -1.993407 -1.361009 1.490735 1.186568 8.825147 -10.379130 0.344232 0.796817 -1.302083 -11.757167 -14.881924 1.778908 -11.402568 -10.642994 5.433792 -12.989802 -0.596512 -8.345283 -1.016794 -14.635621 -6.867424 4.177197 15.331825 3.641583 -5.903343 3.141858 -1.223942 9.202538 0.515665 3.534514 2.519230 6.163029 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.292733 0.208510 -0.305825 -0.193730 0.685415 -0.152533 -0.075228 0.406721 0.054447 0.267239 -0.497056 -0.061271 -0.008498 -0.600631 0.154282 0.353884 0.196534 0.282541 -0.068672 -0.073323 0.220102 -0.160960 0.012418 -0.304973 0.011440 -0.334420 -0.049491 0.041156 0.112838 -0.009176 -0.361119 0.218438 0.504964 0.104284 0.323976 0.336206 0.239177 0.438972 0.336449 -0.043755 0.168000 0.224379 -0.112521 -0.591709 0.211355 -0.276715 -0.211508 -0.274357 0.123919 -0.305497 0.504546 0.302277 0.045297 -0.066501 -0.430254 0.012498 0.394317 0.085362 0.445897 0.276409 -0.264365 -0.138266 -0.102722 0.334844 -0.340695 0.131477 0.167290 -0.457789 -0.118384 0.362171 0.259566 -0.294307 -0.327417 -0.025828 -0.003897 -0.231559 0.236168 0.031064 0.253410 -0.318951 -0.394385 0.173519 -0.262216 0.468774 0.016575 -0.043078 -0.308651 -0.098755 0.219765 -0.304088 -0.208300 0.228963 -0.170816 0.228389 -0.052154 0.277610 0.190012 -0.077044 -0.098667 -0.318356 0.144076 0.037278 0.077702 0.154304 0.028380 -0.257009 0.369021 0.115293 -0.037215 0.263509 0.344387 0.073129 0.072324 0.118567 -0.092529 -0.112087 -0.541872 0.162330 0.061220 -0.020099 -0.096223 -0.021349 0.311253 -0.137046 0.176707 -0.449911 0.421261 0.301375 -0.049466 -0.193925 0.168364 -0.117267 -0.327378 -0.043808 0.295370 0.051850 0.014136 0.065527 0.069373 -0.111630 -0.485567 -0.134745 -0.273856 0.561417 -0.503625 0.012596 -0.097642 -0.209617 -0.120145 0.085064 0.077085 0.167847 0.437946 0.267996 -0.259663 0.086539 -0.448307 0.275027 0.777847 0.254381 -0.379326 0.186490 -0.179919 0.110639 0.208440 0.132430 0.112228 0.019283 -0.132972 0.003363 0.020792 -0.152336 0.417840 0.091371 0.333583 -0.406476 0.276494 0.207188 -0.023572 0.749616 0.097753 -0.515554 0.236688 0.531397 -0.226288 0.065111 0.087910 -0.207566 -0.094722 -0.346735 0.195616 0.226252 -0.544262 -0.307358 -0.079879 -0.377147 0.385596 0.109390 0.064516 0.043374 -0.369665 0.303873 0.758900 0.109962 0.027022 -0.060329 -0.252559 -0.283142 -0.510956 0.040340 0.156069 -0.267750 -0.036635 -0.297340 -0.170381 0.614967 -0.250115 -0.004842 -0.456585 0.171588 0.214790 0.051057 0.021757 -0.411759 -0.250592 0.153198 -0.038962 0.133890 -0.223088 0.168448 0.326083 -0.300264 0.204245 0.438021 0.295871 0.189420 0.301219 -0.157065 0.402787 -0.122370 0.392638 0.151807 0.389031 -0.287023 -0.047339 -0.145832 0.019817 -0.251842 0.336213 -0.479841 -0.030853 0.450424 -0.103150 -0.421480 0.256600 0.255081 0.396698 -0.117323 -0.236402 -0.070525 0.029796 -0.131600 0.216062 0.292864 -0.089737 -0.390758 -0.060417 0.337612 -0.242023 -0.136328 0.216183 0.043854 0.528173 -0.375891 0.265657 0.115269 0.159118 -0.437009 -0.395623 0.120398 -0.082075 -0.114989 0.302488 -0.765340 -0.300520 -0.193831 0.245885 -0.534309 0.227427 -0.130648 0.442002 0.036895 -0.043699 0.255625 0.069310 0.065670 -0.026431 0.030222 -0.003651 0.328385 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = -0.636557 0.765758 0.457784 -0.627556 1.163817 -0.038851 0.126686 0.425436 0.338206 0.417234 -1.319615 -0.383448 -0.193320 -1.023219 0.192092 -0.433404 0.029595 0.499397 -0.304644 0.041857 0.555574 -0.254283 0.009821 -0.865543 0.023090 -0.741421 -0.369683 -0.066569 -0.092455 0.567781 0.053830 0.238481 0.846542 0.363225 0.556845 0.685854 0.287072 1.231291 0.010489 0.965651 0.358968 0.579414 -0.241289 -1.390396 0.552811 -0.729762 -0.422643 -0.818224 0.126829 -1.183636 0.763179 0.590989 0.188342 -0.311447 -0.652944 0.007773 0.946566 0.508797 0.749292 0.652441 -0.578910 0.153683 -0.600496 -0.099290 -0.589136 0.838178 0.553650 -0.973727 -0.358212 0.612526 0.581014 -0.341560 -0.752699 -0.172568 0.070664 -0.309930 0.444424 -0.150815 -0.640486 -0.077403 -0.465994 0.260222 -0.066005 0.851055 -0.084131 -0.199939 -0.348858 -0.217878 0.507169 -0.469122 -0.734557 0.824074 -0.085148 0.332926 -0.416180 0.352688 0.358575 -0.081497 -0.274027 -0.337853 0.388494 0.427176 0.095908 0.304169 -1.123006 -0.880080 1.004949 0.754072 -0.514602 0.242810 0.134562 0.309182 0.002403 0.152880 -0.697328 0.748301 -1.028381 0.250025 -0.035090 0.085418 -0.058136 -0.137959 0.095208 -0.120263 0.139566 -0.592404 1.062074 0.623337 -0.511900 -0.378878 0.468448 -0.312310 -0.756362 -0.066186 0.425977 0.427454 -0.019290 0.147755 -0.160914 -0.533937 -0.197254 -0.705384 -0.451180 0.867096 -0.551223 -0.092928 -0.215196 -0.358125 -0.377103 0.230249 0.058135 0.018192 0.881690 0.468089 -0.302164 -0.255406 -0.597845 0.386899 1.553588 0.567573 -0.763478 0.170674 0.086775 0.376258 0.393419 -0.095016 0.063042 0.618292 -0.535575 -0.309113 -0.614198 -0.756353 0.779312 1.085726 0.564097 -1.192436 0.858082 -0.160072 -0.116140 1.295652 0.812106 -0.816484 -0.105197 0.980854 -1.003464 -0.405782 0.104578 -0.045251 -0.099588 -0.368926 0.200716 0.119975 -0.887550 -1.045002 -0.243984 -0.895861 0.822300 0.243566 0.580585 -0.233741 -0.721409 -0.489739 1.367245 0.088069 -0.291085 -0.003572 -0.161486 -0.421093 -1.036436 0.218571 0.579584 -0.569647 -0.514971 -0.474238 0.142504 0.882352 -0.901424 -0.124894 0.045138 -0.302289 0.307599 -0.232601 0.405922 -1.068911 -0.595877 -0.181446 -0.016657 0.584785 -0.003638 0.291585 1.056008 -0.405110 0.570276 0.903446 0.069242 0.056826 1.022215 -0.112520 0.747180 -0.510433 0.721173 0.061894 0.827839 -0.436012 -0.232185 -0.047422 -0.303009 -0.267273 0.935875 -0.870663 0.080752 0.602664 -0.596677 -0.243543 0.892199 0.402265 0.620189 -0.287050 0.243380 -0.480275 0.105449 -0.091627 0.035572 0.720684 -0.047653 -1.075090 -0.447568 0.533469 -0.648622 -0.742006 0.430594 0.037918 1.005885 -0.636479 0.687091 0.185234 -0.420546 -1.096353 -0.530967 0.266296 -0.699156 -0.643090 0.437442 -1.035716 -0.316411 -0.446936 0.567781 -0.753837 -0.227404 -0.186238 0.676997 0.374231 0.041664 0.470003 0.151436 0.595832 0.105733 -0.123303 0.099776 0.859990 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.612081 0.758274 0.041103 -0.583947 1.335322 0.064833 0.267772 0.574326 -0.288727 0.539382 -1.233042 -0.159213 -0.056617 -1.109504 0.201246 -0.172886 0.032045 0.274210 -0.230488 0.145395 0.455500 -0.468343 0.017527 -0.773384 -0.031527 -0.772573 -0.161937 -0.013710 0.401977 0.456919 -0.242728 0.128772 0.809886 0.142009 0.527423 0.645476 0.297495 0.887647 0.178476 0.035503 0.235291 0.529085 -0.307397 -1.137900 0.198215 -0.674734 -0.608117 -0.584213 0.182544 -0.944992 0.349311 0.636129 0.093586 -0.296830 -0.707797 0.273680 0.907616 0.173586 0.866100 0.517781 -0.474623 -0.368761 -0.511726 0.437704 -0.434925 0.528068 0.350051 -0.824439 -0.161811 0.604030 0.032163 -0.190167 -0.533750 0.026973 0.255563 -0.478332 0.389690 -0.214211 -0.729801 -0.265007 -0.371064 0.300212 -0.210533 0.935449 0.037992 -0.094233 -0.162363 -0.092980 0.382537 -0.665315 -0.563229 0.916632 -0.148968 0.023239 -0.515236 0.646460 0.462350 -0.048144 -0.357415 -0.374840 0.351658 0.368995 0.106710 -0.504548 -0.514919 -1.033895 0.658299 0.604368 -0.222429 0.631730 0.177554 0.283567 0.096448 0.326991 -0.616747 0.379559 -0.947807 0.159278 -0.110833 0.074326 -0.193207 -0.068044 0.340014 -0.014141 0.335791 -0.800389 0.949736 0.644880 -0.329454 -0.575943 0.322919 -0.377245 -0.686466 0.016953 0.337260 0.276925 0.064071 0.060028 0.040530 -0.331673 -0.513025 -0.417633 -0.250763 1.046440 -0.910246 -0.029269 -0.130663 -0.136430 -0.345893 0.386069 0.237601 0.116939 0.945540 0.459709 -0.273215 0.247088 -0.634370 0.491979 1.613042 0.534213 -0.784224 0.331218 -0.343921 0.199218 0.216062 0.011634 0.185512 0.625545 -0.777639 -0.379296 -0.170944 -0.597392 0.856291 0.750529 0.499049 -0.919696 1.051845 -0.300782 -0.169458 1.039799 0.773615 -0.868663 0.231575 0.950738 -0.996906 -0.124089 0.261661 -0.367680 -0.064416 -0.504465 0.138880 0.256210 -0.824754 -0.817599 -0.351704 -0.843436 0.942819 0.248009 0.403923 -0.220541 -0.501761 -0.138812 1.254845 0.139446 -0.235207 -0.136345 -0.203419 -0.985688 -0.988961 0.147428 0.432437 -0.635477 -0.470590 -0.602585 -0.166412 0.831921 -0.718557 0.046775 -0.562592 0.000724 0.348534 0.286763 0.412315 -0.658712 -0.537736 -0.106024 -0.102541 0.463226 -0.345023 0.563517 0.886477 -0.407631 0.749471 0.386272 0.031975 0.214973 0.836468 -0.270655 0.816972 -0.208615 0.810079 0.138998 0.820634 -0.467541 -0.123818 -0.129539 -0.533187 -0.236809 0.805308 -0.890211 -0.006168 0.646965 -0.407234 -0.551597 0.702920 0.348570 0.600644 -0.250781 0.029846 -0.399085 -0.033281 -0.372140 0.148909 0.637404 -0.229451 -0.835611 -0.283725 0.549703 -0.422665 -0.436663 0.387419 0.108625 0.912715 -0.705431 0.554547 0.106204 -0.060948 -1.062268 -0.710625 0.218122 -0.432677 -0.635732 0.556683 -1.150008 -0.255845 -0.494649 0.372336 -1.094791 -0.347001 -0.027655 0.863187 0.074104 -0.071651 0.406977 0.058552 0.469119 0.021729 0.131547 0.111972 0.560181 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = -0.523106 0.514158 0.217050 -0.474643 1.014517 -0.035288 0.025171 0.389890 0.363146 0.364146 -1.049676 -0.392513 -0.175910 -0.833686 0.170868 -0.199360 0.074217 0.406832 -0.298637 -0.073975 0.449374 -0.157482 0.038585 -0.668871 0.030435 -0.544512 -0.327559 -0.032817 -0.069503 0.409884 -0.127265 0.214521 0.720286 0.273378 0.451453 0.525256 0.298656 0.990418 0.020271 0.767331 0.329599 0.472887 -0.204503 -1.132676 0.472367 -0.625279 -0.366018 -0.634768 0.145442 -0.919874 0.741284 0.485333 0.152169 -0.238950 -0.517000 -0.003047 0.714275 0.432251 0.644873 0.535483 -0.517261 0.102422 -0.475730 0.012541 -0.509213 0.729966 0.401679 -0.866512 -0.393440 0.526002 0.511904 -0.340354 -0.660290 -0.141853 0.049020 -0.240886 0.389595 -0.080023 -0.238378 -0.101515 -0.472530 0.224339 -0.145286 0.697915 -0.072204 -0.165553 -0.319709 -0.198490 0.414206 -0.400764 -0.574074 0.635474 -0.118471 0.365155 -0.310621 0.186932 0.226134 -0.066067 -0.231548 -0.305076 0.291425 0.341250 0.082808 0.310406 -0.777283 -0.665926 0.862670 0.605166 -0.346539 0.148335 0.220719 0.171211 -0.007185 0.135060 -0.487023 0.502519 -0.828168 0.216100 -0.013891 0.063140 -0.088555 -0.078931 0.155075 -0.147642 0.145696 -0.519187 0.855226 0.486105 -0.438933 -0.273328 0.374540 -0.247320 -0.640255 -0.028064 0.387111 0.299688 -0.035228 0.116472 -0.082577 -0.427412 -0.286199 -0.458135 -0.414093 0.632570 -0.453378 -0.077568 -0.179954 -0.339839 -0.289900 0.209356 0.061880 0.063087 0.731342 0.398051 -0.296384 -0.260656 -0.547268 0.384281 1.287379 0.387531 -0.649826 0.141161 0.008239 0.355311 0.353870 -0.042554 0.055424 0.480722 -0.287674 -0.109693 -0.516303 -0.529839 0.663795 0.829224 0.525650 -0.946078 0.553679 -0.120970 -0.034699 1.106353 0.628671 -0.726649 -0.054188 0.821103 -0.732126 -0.263029 0.081179 -0.065958 -0.090337 -0.385605 0.207795 0.174921 -0.781863 -0.815620 -0.135250 -0.726931 0.686957 0.191714 0.413883 -0.119598 -0.661807 -0.241094 1.166189 0.089341 -0.183305 -0.001058 -0.183690 -0.333751 -0.862658 0.170776 0.468065 -0.458846 -0.374539 -0.401928 0.077271 0.809734 -0.675499 -0.070715 -0.014002 -0.134753 0.264643 -0.226809 0.337871 -0.832329 -0.483394 -0.117721 -0.074750 0.471370 -0.083818 0.155172 0.785676 -0.376396 0.470514 0.788630 0.115346 0.021168 0.774727 -0.069314 0.622922 -0.385138 0.542835 0.048834 0.701454 -0.353717 -0.148663 -0.084918 -0.178705 -0.254879 0.779481 -0.741171 0.042419 0.542111 -0.479732 -0.267560 0.693709 0.352312 0.551407 -0.229209 0.083966 -0.381440 0.089549 -0.051744 0.088076 0.584831 -0.061558 -0.872158 -0.349151 0.428247 -0.575519 -0.589366 0.375305 0.010767 0.875330 -0.537448 0.522911 0.195831 -0.265333 -0.899823 -0.406666 0.128594 -0.496210 -0.442936 0.400241 -0.888640 -0.323516 -0.359554 0.471910 -0.573935 -0.105723 -0.179935 0.584151 0.326939 0.022505 0.415142 0.169733 0.433418 0.075070 -0.139211 0.109640 0.667342 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.343676 0.392603 0.094857 -0.366830 0.854970 -0.043511 0.005068 0.445501 0.111532 0.328195 -0.710515 -0.013401 0.041702 -0.563825 0.138951 -0.030200 0.001516 0.253541 -0.182540 -0.063126 0.240281 -0.060249 0.000817 -0.426402 -0.051057 -0.559353 -0.145281 0.035972 0.067795 0.209910 -0.147070 0.129140 0.494823 0.009887 0.318015 0.383437 0.358092 0.492900 0.086307 0.306744 0.313262 0.225548 -0.144213 -0.635358 0.154953 -0.350719 -0.375220 -0.314749 0.115293 -0.602858 0.358448 0.328625 0.105872 -0.174866 -0.324557 0.232811 0.409743 0.052015 0.448615 0.333505 -0.413278 -0.091269 -0.321494 0.403053 -0.355854 0.417488 0.109897 -0.582233 -0.258377 0.466837 0.178500 -0.166132 -0.315465 -0.059404 0.063008 -0.253550 0.244055 -0.098314 0.036009 -0.142817 -0.187783 0.253632 -0.085022 0.454688 0.025528 -0.055560 -0.186616 -0.084184 0.217860 -0.310679 -0.383778 0.477776 -0.184857 0.120199 -0.302693 0.151098 0.279886 -0.086541 -0.019105 -0.332351 0.207661 0.200241 0.049863 -0.042798 -0.214186 -0.452521 0.390706 0.385031 -0.139943 0.269491 -0.101995 0.168652 0.011858 0.128626 -0.202077 0.213700 -0.617639 0.167743 -0.071352 0.044647 -0.142815 -0.095991 0.279970 0.087122 0.157656 -0.384983 0.600343 0.286817 -0.225352 -0.200111 0.212945 -0.114877 -0.406573 0.004980 0.197895 0.185113 0.003806 0.090492 0.082441 -0.211483 -0.270557 -0.349711 -0.224587 0.413960 -0.495064 -0.014330 -0.061025 -0.078207 -0.208429 0.206320 0.152375 0.054803 0.558004 0.256907 -0.108032 0.050126 -0.439608 0.263568 0.856074 0.241035 -0.403349 0.208812 -0.214987 0.119592 0.190086 0.053749 -0.037762 0.400145 -0.324152 -0.147741 -0.190043 -0.335969 0.502530 0.426154 0.243471 -0.627366 0.388181 -0.197334 -0.033775 0.737089 0.471045 -0.608349 0.104413 0.601847 -0.423964 -0.162190 0.134159 -0.221993 -0.137723 -0.241881 0.121256 0.176698 -0.479755 -0.488742 -0.076497 -0.447611 0.482167 0.115653 0.141642 -0.079492 -0.315705 -0.091417 0.763948 0.099694 -0.086588 -0.027257 -0.125593 -0.346975 -0.600016 0.042385 0.339938 -0.350276 -0.195794 -0.310531 -0.044796 0.535951 -0.480805 0.009025 -0.370690 -0.028410 0.226289 -0.003232 0.161919 -0.492298 -0.261570 -0.137720 -0.079685 0.200836 -0.260938 0.199308 0.522802 -0.234414 0.453396 0.351234 -0.113481 0.020495 0.500919 -0.127292 0.492019 -0.114580 0.305612 0.148899 0.434014 -0.324514 -0.084407 -0.153809 -0.259847 -0.201314 0.463133 -0.554451 -0.003235 0.350228 -0.278633 -0.272426 0.449111 0.309641 0.342571 -0.163971 0.003933 -0.222238 -0.013528 -0.218678 0.080783 0.333819 -0.163960 -0.562746 -0.109288 0.389537 -0.446952 -0.413122 0.206947 0.102518 0.572939 -0.394033 0.394943 0.172249 -0.018882 -0.758966 -0.373465 0.095748 -0.305522 -0.330573 0.107661 -0.685674 -0.358291 -0.240985 0.301106 -0.550115 -0.184513 0.043949 0.486259 0.102320 -0.039837 0.280146 0.034142 0.242938 0.066589 0.024715 0.049350 0.323510 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.510492 0.721396 0.183081 -0.488826 0.991673 -0.150316 0.139444 0.484953 0.003401 0.344202 -1.065445 -0.053169 -0.023093 -0.983697 0.212498 -0.103830 0.121059 0.444888 -0.076812 0.133373 0.423577 -0.345471 -0.070726 -0.719602 0.020638 -0.723267 -0.147699 -0.044307 0.063336 0.322474 -0.024173 0.288024 0.751361 0.301435 0.536252 0.665569 0.233357 0.900037 0.313661 0.366086 0.238399 0.431357 -0.180302 -1.103495 0.360001 -0.492244 -0.324914 -0.630935 0.061294 -0.817894 0.554376 0.511950 0.123778 -0.197050 -0.694814 0.020735 0.858523 0.237557 0.636707 0.534339 -0.402920 -0.037665 -0.329533 0.109870 -0.481892 0.366811 0.480208 -0.674466 -0.052989 0.547609 0.406825 -0.300804 -0.513128 -0.102282 0.029441 -0.353810 0.359548 -0.094605 -0.536880 -0.261909 -0.382096 0.262530 -0.095857 0.786576 0.007999 -0.134721 -0.373906 -0.161749 0.423625 -0.428225 -0.546234 0.606423 -0.110985 0.161493 -0.283414 0.593741 0.464087 -0.088670 -0.166365 -0.418464 0.352057 0.215398 0.080739 0.150896 -0.668753 -0.695259 0.662627 0.428243 -0.387815 0.467447 0.168578 0.347357 0.094908 0.137698 -0.510285 0.368822 -0.924776 0.238100 0.014149 0.006443 -0.032423 -0.165129 0.202582 -0.086347 0.143648 -0.578883 0.827886 0.611501 -0.207088 -0.389903 0.349275 -0.279308 -0.590166 -0.109295 0.362356 0.333774 0.065520 0.142332 -0.098081 -0.347087 -0.296574 -0.638628 -0.372708 1.038990 -0.717063 -0.039436 -0.157564 -0.227417 -0.324707 0.138292 0.062190 0.068838 0.729428 0.387669 -0.289843 0.088335 -0.539000 0.290046 1.332038 0.618361 -0.604688 0.233657 -0.027352 0.168144 0.280061 0.011993 0.102367 0.277141 -0.638753 -0.375073 -0.185464 -0.630874 0.641671 0.612371 0.419376 -0.896828 0.898342 0.118857 -0.213115 1.126008 0.467087 -0.696400 0.130349 0.876291 -0.755296 -0.206019 0.139712 -0.186987 -0.121300 -0.327725 0.177724 0.099116 -0.773944 -0.751990 -0.285602 -0.716959 0.652813 0.245366 0.423325 -0.210844 -0.469069 -0.196867 1.196359 0.101601 -0.171652 -0.045020 -0.188033 -0.452738 -0.849309 0.124508 0.386765 -0.493836 -0.306066 -0.433505 -0.040371 0.779612 -0.737385 -0.108472 -0.320368 -0.147694 0.288377 0.026780 0.155861 -0.893417 -0.502319 0.017725 0.066717 0.355261 -0.089464 0.438868 0.853875 -0.341951 0.417346 0.677227 0.200876 0.244042 0.788021 -0.216870 0.636194 -0.372844 0.755941 0.197547 0.671609 -0.479696 -0.240883 -0.085287 -0.242378 -0.300359 0.675806 -0.755716 0.070403 0.591026 -0.317569 -0.390883 0.674839 0.340102 0.541847 -0.264898 0.069448 -0.262557 0.076353 -0.210520 0.133607 0.562162 -0.075591 -0.798141 -0.285799 0.565793 -0.402198 -0.435129 0.340756 0.076976 0.809176 -0.563439 0.593278 0.112878 -0.136167 -0.842345 -0.654372 0.393168 -0.490040 -0.509049 0.363012 -1.071442 -0.297288 -0.368549 0.422082 -0.906472 -0.024354 -0.135244 0.630849 0.116722 -0.013318 0.346247 0.049139 0.372272 0.032759 0.079020 -0.030757 0.694355 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -6.244829 5.250509 3.778239 -3.883602 8.602165 0.432641 2.816444 4.495834 -2.057884 5.915344 -10.136445 -3.909947 -2.723274 -7.525927 -0.056387 -5.684960 1.047426 0.774579 -2.584471 2.054883 4.040595 -3.107531 -0.616945 -5.121962 -1.154215 -6.664874 -3.334445 0.093438 5.385574 -1.187328 1.676660 0.419438 11.884433 0.778964 10.073602 7.197036 4.130148 8.485473 0.514698 1.599020 -0.957634 7.303675 -4.880936 -6.416665 -0.680039 -5.847290 -5.323785 -3.612852 1.866830 -4.926455 1.142171 6.275654 0.015111 1.521721 -4.395524 4.621287 7.273860 -0.602277 10.400806 2.985833 -4.672955 0.851918 -5.508455 6.024286 -3.522431 4.293656 -1.068568 -5.282373 0.498448 -0.208257 -0.292958 -4.335562 -3.682264 4.941217 3.102794 -6.209578 3.867142 -2.543954 -7.116428 -8.113068 -5.466811 2.510318 1.787457 7.094773 -0.728132 -0.598950 1.669781 1.682597 0.069197 -9.647620 -1.453501 8.798581 -5.578490 -2.663993 -5.740616 5.198147 -0.223753 4.069747 -5.295596 -4.614088 2.706211 0.742007 1.034466 -6.186240 -0.742432 -7.201982 2.143831 2.169087 -1.907357 5.549592 3.512454 4.613482 6.879998 6.956157 -7.465976 3.396683 -8.036420 2.444348 -2.024507 -0.264961 0.741595 1.516045 1.403770 2.362900 6.461617 -9.213541 4.449925 3.980808 -4.480255 -7.248471 0.008675 -7.429529 -7.832041 -1.920916 3.344909 3.696647 1.407996 -4.679296 0.737287 -2.103034 -0.953559 -5.252981 0.952242 5.844085 -7.715235 -1.893602 -0.873327 -0.409928 -4.611434 6.891717 3.797547 2.195825 9.709685 3.879276 -2.701398 2.310183 -6.720830 -0.149011 10.718933 2.271280 -8.270174 5.785287 -5.598282 0.090240 3.702836 3.801808 3.714226 1.800702 -8.058397 -4.542364 2.116590 -2.662772 9.498442 2.367266 1.973145 -5.835910 10.557830 -1.713525 -6.313818 11.564883 7.434355 -8.200012 0.726603 3.970961 -5.814838 -2.731224 5.508273 -6.323446 -2.637564 -4.434204 -0.013784 1.709833 -4.419009 -2.267703 1.761347 -9.054347 9.825376 0.786474 1.631085 0.411097 -7.377871 -8.747823 10.457812 -0.117425 -1.587565 -2.643441 -2.526141 -4.699557 -9.626911 2.012788 1.608656 -3.420930 -4.310252 -7.087912 3.205455 5.628323 -3.332423 4.853335 -7.307439 -4.027948 3.449106 0.637021 5.214312 -5.136023 -5.397798 -2.305348 -0.576764 5.291942 -4.669191 7.268184 11.586720 -2.781901 7.918741 -0.191695 -7.073820 0.093749 5.376255 -7.919442 8.809812 -1.848560 4.067379 -0.129800 5.758213 -6.241981 -3.153554 0.013285 -1.514580 -2.737827 4.018928 -4.897947 0.685030 -0.944310 -7.077339 -2.307119 2.959648 -0.956124 -0.295374 -0.001948 1.704271 -6.966074 -0.852882 -4.959938 0.420161 6.692996 0.525137 -6.201296 1.812588 0.580866 -0.751754 1.197179 0.160820 -0.026906 6.799403 -7.703553 -1.063008 0.824560 -0.640892 -7.085484 -9.713114 0.026255 -7.368703 -5.869632 4.793979 -6.981871 -0.795388 -5.811726 -0.915177 -8.373685 -4.572714 3.479722 10.919555 4.170158 -5.966848 1.553393 -0.774543 8.133684 1.573675 1.205600 1.096450 4.335267 +PE-benchmarks/cut-vertices.cpp__main = -1.242302 -1.831876 1.483792 0.057142 4.085353 -2.370991 0.749738 3.634912 2.915721 -0.160155 -1.791693 -1.753714 -1.183730 -0.005476 1.207068 -1.174166 1.532798 2.172181 -2.814648 -2.880535 1.367914 4.748908 -1.039216 -0.931538 0.395027 0.537435 -1.984980 -0.022718 -2.573566 0.744752 -2.248420 3.011162 3.622900 -0.088467 2.801002 1.935774 4.156447 2.259904 -1.962436 4.797595 2.832721 0.916464 -0.226791 -2.299808 0.776225 -1.058731 -1.927828 0.069657 0.741576 -1.762853 4.439449 0.794722 1.019805 1.392604 1.527630 0.990598 -1.662867 0.813110 0.507299 2.558489 -5.041122 2.402039 -1.536295 3.795499 -1.127932 5.148665 -1.227932 -4.424228 -4.115061 1.831789 4.142152 -3.702649 -3.019154 -1.151549 -0.708240 0.650591 2.089691 1.737209 6.547613 0.811679 -3.204602 1.038333 -0.831796 0.451124 -0.855085 -1.307274 -2.797413 -1.673570 1.011873 -0.321660 -1.532948 2.613701 -2.991510 3.072350 -5.480828 -5.760392 -0.843443 0.655928 0.319990 -4.051239 1.088712 -0.033738 -0.084358 2.611361 -0.901801 1.310521 1.393508 2.498560 0.010112 0.715957 -2.208050 0.577010 0.343379 -0.631659 2.727822 1.676902 -2.261973 3.111200 -2.289671 -0.447577 -0.137735 -0.301254 2.037633 0.451329 0.059181 -0.396512 1.183966 0.134776 -2.695514 1.234128 1.129792 -0.617602 -2.833743 -1.192593 2.580917 1.702901 -0.874712 0.314271 1.208104 -1.166625 0.527473 -2.010972 -2.908390 -4.474789 -0.169228 -1.197861 -0.896850 -1.062458 -1.394172 1.711357 0.142243 1.117555 1.286011 1.025847 -1.271458 -3.939120 -3.260454 0.589301 1.314841 -1.318218 -1.589371 0.510609 -1.224932 1.596345 1.589746 1.057809 -1.781924 1.871964 2.548255 2.574814 -3.896384 -0.073690 2.210203 3.256384 0.636299 -2.347997 -4.104724 -4.616222 -0.620481 3.408927 2.933601 -3.414356 -2.151682 2.034632 2.497239 -3.086092 0.249515 -2.318638 -2.338820 -1.833633 1.598430 1.404017 -2.870909 0.198888 4.710973 -1.425712 0.259893 0.132964 -1.691726 -0.510444 -3.902315 -1.657978 4.865840 0.157211 0.992585 0.707944 -1.413434 2.771492 -2.522096 0.320034 1.649594 1.703982 -0.983905 -0.422096 0.792032 3.390018 -1.721870 1.358271 1.883843 -0.096493 0.805601 -3.866516 1.402189 -4.098138 -1.517744 -2.269497 -1.012863 1.070937 -2.156473 -3.245819 1.536879 -1.063074 1.524073 4.742941 -3.368234 -3.463519 1.236353 -0.147312 1.277228 0.026501 -1.567006 0.697859 1.462213 -2.446748 -1.640261 -1.287844 2.306389 -2.841119 2.598692 -1.533289 0.911827 -0.691559 -2.139384 -0.050647 1.471393 1.413391 -0.500264 -0.777757 -0.672479 -1.648734 0.134447 -1.476977 1.015162 1.751952 -1.554425 -2.235128 0.518030 0.104691 -5.722718 -0.993091 0.862223 -0.264166 3.424689 -1.184311 0.133623 2.408043 0.280943 -3.782696 -1.286057 -1.869018 -2.449775 -0.740917 -1.845782 -0.270313 -3.625720 -0.393492 2.036173 -0.298711 -2.735287 1.179131 1.649203 1.831162 0.393083 1.471271 1.396208 0.866581 0.675323 -1.056961 0.494719 1.117952 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.291507 0.160885 -0.070902 -0.204512 0.691136 -0.152050 -0.078393 0.412482 0.241065 0.290129 -0.469390 -0.155052 -0.074106 -0.460975 0.128195 0.097981 0.130555 0.305434 -0.174549 -0.146204 0.215600 0.024036 0.030290 -0.253466 -0.032655 -0.355212 -0.137330 0.065301 -0.021037 0.078175 -0.252956 0.214246 0.525495 0.052503 0.338849 0.316356 0.286791 0.468031 0.165399 0.276414 0.253522 0.196142 -0.115204 -0.566244 0.204425 -0.272729 -0.265949 -0.265983 0.149113 -0.420813 0.501110 0.269621 0.072181 -0.055562 -0.283289 0.080602 0.228896 0.153137 0.406822 0.273715 -0.390095 -0.018290 -0.228024 0.357617 -0.350572 0.307539 0.048066 -0.566538 -0.259641 0.371507 0.273501 -0.251722 -0.328566 -0.038876 0.013122 -0.186747 0.223642 0.031234 0.271784 -0.142914 -0.359840 0.190548 -0.182118 0.368335 -0.013667 -0.041935 -0.271001 -0.092140 0.172698 -0.279644 -0.222842 0.333105 -0.204133 0.260142 -0.166698 0.029364 0.146318 -0.073995 -0.035542 -0.300288 0.139336 0.056995 0.078144 0.180155 -0.113082 -0.234532 0.389767 0.234602 -0.037792 0.162641 0.135379 0.079735 0.051041 0.109756 -0.078123 0.070154 -0.532832 0.228227 -0.042561 -0.014842 -0.116315 -0.004004 0.241930 -0.027859 0.173340 -0.386014 0.426095 0.197910 -0.159371 -0.128734 0.173113 -0.064519 -0.321914 -0.053380 0.299528 0.080495 -0.037261 0.049099 0.073238 -0.137226 -0.307245 -0.174299 -0.262268 0.273756 -0.333964 0.002403 -0.096231 -0.202765 -0.125903 0.142733 0.106030 0.165801 0.438906 0.263040 -0.188926 -0.123493 -0.481548 0.229798 0.666348 0.110438 -0.357438 0.195890 -0.158096 0.123086 0.214616 0.136862 0.033731 0.205255 -0.032095 0.018013 -0.219643 -0.111047 0.433239 0.289953 0.262990 -0.442170 0.106142 -0.061048 0.019215 0.697126 0.264264 -0.518324 0.061502 0.486747 -0.266925 -0.113593 0.097212 -0.202782 -0.111141 -0.300513 0.170405 0.259544 -0.489939 -0.303712 0.069668 -0.364324 0.358827 0.052222 0.030221 0.036804 -0.434072 0.069480 0.717755 0.105247 0.029819 -0.033019 -0.249234 -0.177275 -0.519344 0.040449 0.236930 -0.205553 -0.087156 -0.260783 -0.075852 0.539941 -0.248487 0.058618 -0.251191 0.079239 0.223770 -0.099162 0.087540 -0.418809 -0.204167 0.006224 -0.105980 0.165021 -0.202943 0.056433 0.334279 -0.256896 0.291874 0.463981 0.035650 0.031980 0.307371 -0.142613 0.412362 -0.127875 0.186160 0.130408 0.334302 -0.241354 -0.045118 -0.138014 -0.018776 -0.251980 0.363054 -0.443444 -0.033210 0.321707 -0.237810 -0.271974 0.255153 0.290255 0.306682 -0.091667 -0.113713 -0.190803 0.009849 -0.137540 0.162731 0.283347 -0.089606 -0.421785 0.000842 0.269349 -0.397682 -0.302954 0.182441 0.059477 0.499565 -0.359394 0.241218 0.174872 0.067642 -0.533977 -0.288849 0.017668 -0.203619 -0.172954 0.131867 -0.604730 -0.344830 -0.175823 0.282245 -0.373263 0.027650 -0.032065 0.431051 0.130179 -0.037859 0.267969 0.075223 0.120962 0.036062 -0.056707 0.050406 0.329357 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.587443 0.363991 -0.242177 -0.492198 1.626394 -0.033465 -0.001989 0.762559 -0.069101 0.588083 -1.038868 -0.042274 -0.082968 -1.049824 0.245235 0.285691 0.201422 0.359154 -0.364158 -0.174667 0.416458 -0.177698 0.153604 -0.582381 -0.055715 -0.749863 -0.211366 0.110116 0.285180 0.229414 -0.512121 0.221725 0.862667 -0.006648 0.409793 0.493391 0.662658 0.834599 0.170629 0.048546 0.460234 0.400106 -0.254103 -1.092087 0.385396 -0.661077 -0.745465 -0.458300 0.318978 -0.924777 0.507231 0.623252 0.124928 -0.287388 -0.591076 0.355625 0.812580 -0.072952 0.850106 0.505741 -0.698945 -0.468242 -0.445063 0.669361 -0.551864 0.613001 0.150899 -1.046623 -0.551101 0.781236 0.246746 -0.453853 -0.678927 -0.056103 0.201938 -0.429383 0.411588 -0.048346 0.337653 -0.489987 -0.562561 0.317005 -0.406348 0.838187 0.043781 -0.058356 -0.164000 -0.208290 0.367314 -0.635359 -0.488668 0.746935 -0.328703 0.366762 -0.581954 0.211903 0.199084 -0.168333 -0.331601 -0.607604 0.242483 0.291767 0.143345 -0.208500 -0.156712 -0.747609 0.639489 0.447293 0.023442 0.420957 0.218354 0.012783 -0.059055 0.274534 -0.390981 0.154914 -0.979728 0.264953 -0.010077 0.095156 -0.382713 -0.047182 0.620626 -0.032526 0.382586 -0.857707 0.963329 0.440046 -0.402644 -0.427001 0.323450 -0.166833 -0.642357 0.090945 0.486708 0.029419 -0.015008 0.121066 0.262373 -0.272046 -0.845589 -0.280201 -0.455801 0.795826 -1.013881 0.036681 -0.156370 -0.310837 -0.238504 0.325748 0.282780 0.255618 0.932979 0.511633 -0.353108 0.425110 -0.861849 0.645636 1.548964 0.551152 -0.770933 0.340571 -0.507316 0.341630 0.360776 0.112334 0.125085 0.460624 -0.320592 0.041118 -0.019666 -0.283848 0.887741 0.569393 0.622666 -1.095896 0.393689 -0.202551 0.168138 1.244850 0.651761 -1.140131 0.498648 1.028549 -0.534408 -0.005925 0.158924 -0.469933 -0.313542 -0.603230 0.325425 0.487008 -0.946684 -0.735991 -0.121268 -0.727745 0.831316 0.167874 0.102736 0.085530 -0.651061 0.127024 1.265173 0.141848 -0.041823 -0.124289 -0.412204 -0.699533 -1.037480 0.105223 0.460919 -0.608508 -0.286256 -0.618804 -0.287374 1.098910 -0.506936 0.090371 -0.967664 0.311233 0.414609 0.138098 0.338524 -0.783263 -0.430995 -0.031446 -0.234984 0.311564 -0.561324 0.183640 0.615563 -0.598687 0.729525 0.393019 0.031954 0.139336 0.637765 -0.174174 0.835484 -0.041717 0.915920 0.164868 0.806811 -0.485192 0.062918 -0.304155 -0.253623 -0.378830 0.799857 -1.010585 -0.127225 0.806050 -0.357423 -0.801333 0.587814 0.534233 0.666351 -0.223776 -0.295564 -0.225885 -0.038595 -0.259550 0.314972 0.565810 -0.426334 -0.853489 -0.194543 0.621693 -0.675864 -0.485138 0.446113 0.183931 1.015003 -0.731145 0.549286 0.222684 0.126707 -1.148121 -0.721377 0.123331 -0.323742 -0.414682 0.552431 -1.331981 -0.563762 -0.417413 0.515078 -0.926634 -0.051995 -0.111366 0.872046 0.078435 0.010252 0.596583 0.188145 0.230059 -0.105481 0.086210 0.179093 0.471393 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.226725 0.045869 -0.166145 -0.138960 0.692744 -0.129616 -0.111704 0.454155 0.143752 0.298918 -0.320601 -0.045158 -0.030550 -0.371543 0.123236 0.202523 0.134145 0.216306 -0.165981 -0.200549 0.135888 0.070849 0.050966 -0.133555 -0.055865 -0.364471 -0.078367 0.102731 0.066194 0.013120 -0.328308 0.181418 0.446688 -0.067019 0.252135 0.223199 0.354838 0.270773 0.163914 0.064786 0.255928 0.104220 -0.099209 -0.379140 0.103081 -0.197649 -0.310526 -0.116198 0.172164 -0.306046 0.313396 0.224283 0.048901 -0.032307 -0.193646 0.187108 0.104357 -0.006457 0.352654 0.193889 -0.373053 -0.179309 -0.176627 0.529252 -0.294179 0.209244 -0.104391 -0.503497 -0.275715 0.365555 0.088771 -0.173716 -0.203393 -0.002946 0.051254 -0.186632 0.174308 0.051908 0.456634 -0.165232 -0.296435 0.194598 -0.200731 0.290077 0.028653 0.001947 -0.154046 -0.068377 0.099459 -0.270735 -0.127974 0.280952 -0.246504 0.196869 -0.181216 -0.039191 0.116711 -0.082473 0.018749 -0.322670 0.085214 0.008448 0.072044 -0.002843 0.133371 -0.167820 0.230744 0.134097 0.105656 0.186605 0.054818 0.001656 0.018177 0.122773 0.013942 -0.066046 -0.436002 0.214965 -0.057727 -0.016086 -0.185587 0.009070 0.331866 0.046269 0.203281 -0.375259 0.329635 0.111042 -0.100102 -0.100273 0.103221 -0.011898 -0.238371 -0.008252 0.257720 -0.017940 -0.032043 0.035412 0.176886 -0.047516 -0.370629 -0.048328 -0.218585 0.165110 -0.381961 0.032555 -0.057140 -0.132448 -0.081815 0.154476 0.153367 0.197046 0.379839 0.223194 -0.151188 0.042653 -0.475685 0.242156 0.536371 0.036250 -0.282930 0.218919 -0.292311 0.077057 0.159860 0.170057 0.018897 0.191149 0.024528 0.087204 -0.084905 0.025247 0.392764 0.146000 0.203504 -0.344592 -0.037311 -0.129088 0.078911 0.547623 0.222993 -0.519755 0.181124 0.419762 -0.155653 -0.028203 0.105148 -0.290226 -0.129994 -0.308205 0.158164 0.323050 -0.414669 -0.162133 0.115075 -0.256362 0.295523 0.021363 -0.076287 0.106746 -0.327723 0.159144 0.566441 0.109021 0.098345 -0.061557 -0.266489 -0.241399 -0.432200 -0.007442 0.180506 -0.185022 -0.009643 -0.247681 -0.168185 0.484992 -0.119376 0.122158 -0.460040 0.211190 0.217605 0.005510 0.052906 -0.241618 -0.121388 0.011924 -0.174339 0.064473 -0.324233 0.023826 0.167166 -0.239040 0.334612 0.228345 -0.067246 0.024547 0.156602 -0.141578 0.371142 0.013602 0.128836 0.156764 0.263064 -0.223851 0.028412 -0.186612 -0.068117 -0.244851 0.267627 -0.405098 -0.075432 0.301573 -0.166816 -0.337012 0.136670 0.283901 0.265931 -0.064698 -0.192765 -0.130441 -0.029367 -0.178482 0.202210 0.188568 -0.164295 -0.297100 0.086412 0.250656 -0.371259 -0.265874 0.146266 0.087813 0.406532 -0.320680 0.166093 0.180008 0.190769 -0.488828 -0.274491 -0.039598 -0.099624 -0.109767 0.072482 -0.566569 -0.359452 -0.133361 0.221041 -0.350724 0.012956 0.029557 0.416039 0.028526 -0.050794 0.250137 0.064997 0.007738 0.001140 0.003925 0.062065 0.164748 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.491833 0.404626 -0.451494 -0.291012 0.964101 -0.397263 0.042959 0.580551 0.082756 0.247516 -0.886316 -0.172972 -0.035745 -0.998467 0.274732 0.532351 0.414346 0.608302 -0.055719 0.001114 0.430589 -0.244279 -0.105518 -0.607880 0.096442 -0.259352 -0.130917 -0.017237 -0.021562 -0.067207 -0.505652 0.508059 0.910011 0.390718 0.699586 0.690017 0.253014 0.901582 0.606814 0.068804 0.225539 0.441283 -0.148844 -1.114524 0.442614 -0.436837 -0.194745 -0.587892 0.087247 -0.439007 1.183384 0.491051 0.101978 -0.013570 -0.779915 -0.237927 0.762428 0.278171 0.669872 0.559716 -0.453664 0.142437 -0.065858 0.284838 -0.509369 0.257012 0.528671 -0.707111 -0.063731 0.511593 0.901907 -0.806847 -0.769635 -0.113911 -0.156308 -0.302478 0.450846 0.112680 0.286057 -0.576251 -0.780034 0.237686 -0.427898 0.793126 -0.042662 -0.166954 -0.834795 -0.233921 0.447643 -0.415592 -0.407882 0.339720 -0.240361 0.504650 -0.173603 0.495007 0.282618 -0.059755 -0.283235 -0.593843 0.317692 0.019949 0.100065 0.648565 -0.206008 -0.310834 0.664053 0.226625 -0.277408 0.463454 0.725921 0.288538 0.267407 0.088881 -0.109024 -0.093615 -0.927259 0.328747 0.109459 -0.098493 0.033701 -0.075570 0.368562 -0.386883 0.177221 -0.651357 0.652365 0.607756 -0.117928 -0.313289 0.334573 -0.285774 -0.625055 -0.211687 0.547325 0.257158 0.046883 0.128748 -0.074569 -0.273058 -0.639744 -0.466396 -0.525613 1.017424 -0.710912 -0.059680 -0.214045 -0.423132 -0.265997 0.083502 0.003107 0.238840 0.654846 0.429151 -0.509066 -0.123681 -0.688319 0.332031 1.261830 0.588503 -0.651403 0.239092 -0.055775 0.207451 0.394958 0.207042 0.174222 -0.232553 -0.263371 -0.049623 -0.036918 -0.405136 0.627814 0.188435 0.560251 -0.641747 0.558024 0.553136 -0.229751 1.372766 0.018730 -0.719112 0.167636 0.869634 -0.175929 -0.009680 0.124770 -0.266563 -0.237699 -0.490869 0.354912 0.178227 -0.940876 -0.522084 -0.086897 -0.675161 0.555292 0.233194 0.107944 -0.100031 -0.726232 0.431125 1.434466 0.133547 0.007170 0.006060 -0.376527 -0.092149 -0.836917 0.117060 0.255448 -0.280166 -0.113007 -0.420316 -0.126840 1.041380 -0.551968 -0.102147 -0.320227 0.076069 0.309386 -0.135268 -0.008489 -1.048730 -0.522151 0.296729 0.159672 0.279306 -0.161760 0.259389 0.694603 -0.471428 0.050859 1.180800 0.738506 0.296113 0.601077 -0.256723 0.587483 -0.378245 0.766003 0.232557 0.651594 -0.520595 -0.278966 -0.161056 0.383226 -0.487898 0.596130 -0.714475 0.074128 0.656938 -0.119867 -0.595723 0.506016 0.351033 0.541899 -0.234754 -0.367439 -0.072313 0.115803 -0.176183 0.334064 0.559620 -0.063090 -0.682670 -0.179249 0.516159 -0.378374 0.058163 0.360385 0.010569 0.927566 -0.581791 0.451897 0.149056 0.167586 -0.607658 -0.718593 0.330472 -0.249113 -0.180078 0.521268 -1.165890 -0.488984 -0.320923 0.433292 -0.871939 0.466976 -0.284619 0.649269 0.167373 -0.039902 0.348781 0.121066 0.197973 -0.037111 0.016708 -0.093124 0.735661 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.852493 0.565898 -0.063732 -0.742834 2.414001 -0.087149 0.153299 1.134700 0.070438 0.689663 -1.685743 -0.172622 -0.072195 -1.384088 0.393099 0.172821 0.265828 0.567534 -0.651995 -0.342909 0.619001 0.038805 0.081127 -0.965562 -0.033712 -0.910995 -0.499235 0.090926 0.140732 0.427258 -0.695605 0.440969 1.308202 0.049094 0.727378 0.818836 1.077236 1.281251 0.025751 0.545923 0.845869 0.573238 -0.345882 -1.630981 0.538880 -0.994038 -1.130303 -0.695887 0.351622 -1.428929 1.029782 0.873597 0.271539 -0.346410 -0.691371 0.493508 1.089497 -0.037097 1.118893 0.890532 -1.286178 -0.300648 -0.690584 0.975412 -0.728995 1.282948 0.253057 -1.666465 -0.968776 1.187783 0.757549 -0.903662 -1.194904 -0.198758 0.186318 -0.498074 0.688218 -0.033107 0.634167 -0.575130 -0.816526 0.540151 -0.490537 1.152849 0.034466 -0.213139 -0.461724 -0.409395 0.586436 -0.813352 -0.884641 1.229484 -0.554842 0.647248 -1.210837 -0.050708 0.250200 -0.150759 -0.444516 -1.069008 0.457138 0.501113 0.111486 -0.055448 -0.462596 -1.036739 0.977634 0.935387 -0.150323 0.590676 0.065153 0.155449 -0.003542 0.277646 -0.443032 0.456704 -1.420039 0.502955 -0.170093 0.083454 -0.477170 -0.172712 0.848672 0.013168 0.429835 -1.058035 1.425976 0.683565 -0.828944 -0.500697 0.506440 -0.330492 -1.119029 0.094075 0.678580 0.296115 -0.009781 0.226002 0.286710 -0.564625 -0.942346 -0.690848 -0.755744 0.860267 -1.320554 -0.082842 -0.208448 -0.384301 -0.507812 0.596615 0.390344 0.282885 1.349155 0.670195 -0.493695 0.220090 -1.245050 0.870823 2.218322 0.776090 -1.134353 0.444007 -0.658571 0.579391 0.553695 0.121868 -0.053540 0.731179 -0.457597 0.103458 -0.351694 -0.589898 1.295134 1.099028 0.847819 -1.663530 0.482008 -0.581261 0.097121 1.883133 1.127781 -1.662668 0.383073 1.554519 -0.557431 -0.261384 0.268802 -0.734523 -0.624039 -0.793016 0.462266 0.556914 -1.383770 -1.086954 0.061401 -1.100086 1.164779 0.311293 0.109362 -0.100671 -1.027370 -0.104893 2.047990 0.158389 -0.066754 0.000000 -0.469339 -0.630118 -1.527772 0.145846 0.840821 -0.740899 -0.508561 -0.808202 -0.195626 1.616964 -1.011995 0.149906 -0.921517 0.238477 0.557498 -0.153701 0.567673 -1.470453 -0.721557 -0.296961 -0.287698 0.503992 -0.830546 0.115801 1.033567 -0.771331 1.059130 0.943825 -0.156301 -0.095709 1.044834 -0.148974 1.176072 -0.126703 1.195580 0.264716 1.229109 -0.806378 -0.119014 -0.469004 -0.228763 -0.662984 1.329155 -1.471287 -0.033150 1.004260 -0.588204 -1.000589 1.038655 0.762184 0.793630 -0.434194 -0.339876 -0.407096 -0.026469 -0.416584 0.418092 0.864563 -0.683381 -1.364373 -0.357355 0.890324 -1.266729 -0.659561 0.651874 0.217649 1.597504 -1.004506 0.828750 0.445165 0.080724 -1.872789 -1.027675 0.115883 -0.697035 -0.661534 0.551085 -1.732700 -0.992833 -0.606974 0.783519 -1.240524 -0.359143 -0.009484 1.246583 0.264944 0.012772 0.797852 0.318246 0.450602 -0.066356 0.069777 0.256130 0.714481 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -2.301680 1.706043 -0.351992 -2.769592 7.243371 0.303395 0.605577 4.053841 -1.155153 2.224429 -4.846506 0.695124 0.147642 -4.442892 0.849313 0.221764 0.834054 0.901236 -2.061740 -0.309712 1.575511 -0.075913 0.700010 -2.667882 -0.574047 -3.323036 -0.906013 0.454434 1.335239 1.078195 -1.502740 0.388224 3.970749 -0.345844 2.091520 2.009465 3.651844 2.999831 0.416245 -0.094054 2.113824 1.529242 -1.148963 -4.008772 0.531209 -2.856589 -4.000011 -1.327741 1.162693 -4.271889 0.629225 2.563683 0.915652 -1.050557 -2.002314 2.270091 3.401604 -1.696681 3.456661 2.206342 -3.628723 -2.505754 -1.993130 3.229976 -1.945183 3.115486 0.236799 -3.843714 -2.658746 3.413767 0.406379 -2.003064 -2.953219 -0.367185 1.330806 -2.041058 1.965209 -0.560729 1.452998 -2.371062 -1.254681 1.918959 -1.350680 3.456807 0.523609 -0.032618 0.229835 -0.760436 1.171204 -3.001659 -1.995192 3.445714 -1.864311 0.315908 -4.021118 0.893019 0.119084 -0.320978 -1.734916 -3.520313 1.341305 1.536654 0.291337 -2.589231 -0.405809 -3.562873 1.796757 2.593937 -0.083694 2.428403 -0.369010 0.563243 0.161616 1.556553 -1.860589 1.232852 -4.407241 1.167025 -1.185942 0.433951 -2.005607 -0.396394 3.152996 1.277814 1.665955 -3.500314 4.406376 2.445559 -2.476975 -1.958213 1.311493 -1.034531 -3.122709 0.734952 1.566350 0.288524 0.522604 0.109638 1.634920 -1.480891 -2.875073 -1.716323 -1.690090 2.394622 -5.059429 -0.118371 -0.165064 -0.341292 -1.311786 2.265562 1.575476 0.465664 4.399362 1.486936 -1.530850 2.843061 -3.508366 2.456606 6.684277 2.578311 -3.082638 1.778939 -2.826859 1.234363 1.303687 0.578883 0.070511 1.952246 -2.551092 -0.297953 0.460066 -1.435717 4.108057 2.343410 2.136391 -5.169026 2.179965 -2.242922 0.687479 4.970637 3.810042 -4.912438 1.933501 4.231043 -1.599655 -0.344011 0.855791 -2.834224 -1.892802 -2.223835 0.972004 1.667124 -3.347122 -3.164347 -0.342795 -3.017266 3.575324 0.819709 -0.352114 -0.349367 -2.281923 -0.318025 5.378409 0.273202 -0.461316 -0.309994 -1.356649 -2.776929 -4.664256 0.321359 2.108427 -2.601918 -0.843906 -2.645315 -0.931496 4.025606 -2.607548 0.449722 -5.122218 0.920417 1.916506 0.652625 1.795773 -3.456710 -1.773564 -0.940649 -1.240353 1.313077 -3.518651 1.093753 2.849744 -2.088149 3.932208 0.199994 -1.614758 0.007245 2.840254 -0.987223 4.032660 0.220904 4.442740 0.867754 3.492314 -2.458383 0.051731 -1.808825 -1.958403 -1.561347 3.560987 -4.647538 -0.460210 2.752445 -1.132459 -3.588799 2.710683 2.095519 1.549937 -1.128738 -0.862460 -1.211550 -0.362138 -1.684347 1.285273 2.373155 -2.557333 -4.029982 -0.811775 3.227467 -2.845901 -1.715132 1.515207 1.129970 4.430405 -3.047562 2.221026 1.088611 0.832279 -5.641645 -3.941120 0.970924 -1.841186 -1.749208 1.466947 -5.107147 -2.902438 -1.886015 1.949399 -4.080763 -1.202050 1.045794 3.866673 0.013420 -0.596166 1.866169 0.619215 1.384198 -0.373683 1.140463 0.830808 1.306167 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.671566 0.611774 0.161225 -0.428306 1.155823 -0.015523 0.179359 0.670656 -0.228392 0.611169 -1.138097 -0.188616 -0.240816 -0.936057 0.108076 0.112652 0.199116 0.317108 -0.175188 0.141542 0.527317 -0.475288 0.040208 -0.686519 -0.004800 -0.515623 -0.231652 -0.036725 0.383368 0.200794 -0.284821 0.153954 0.973045 0.334520 0.813761 0.694895 0.151700 1.100417 0.316281 0.091061 0.019580 0.724335 -0.401728 -1.213659 0.414129 -0.774908 -0.310468 -0.747234 0.214624 -0.798982 0.727939 0.647145 0.016554 -0.082438 -0.711738 0.079594 0.930569 0.257104 1.037868 0.460559 -0.510455 -0.025955 -0.465939 0.087943 -0.415188 0.469644 0.332346 -0.820138 -0.031748 0.268005 0.474933 -0.640136 -0.479757 0.207491 -0.001673 -0.481290 0.479614 -0.145478 -0.388173 -0.739240 -0.720721 0.180741 -0.182485 0.908549 -0.110255 -0.128183 -0.501035 -0.038996 0.329432 -0.813322 -0.385990 0.694282 -0.305744 0.227014 -0.169568 0.638050 0.119224 0.158632 -0.464994 -0.319479 0.309370 0.290369 0.137381 -0.109214 -0.248767 -0.736893 0.760104 0.316301 -0.200032 0.323754 0.645329 0.333718 0.390111 0.478778 -0.602011 0.430582 -0.967381 0.249243 0.029525 0.049068 -0.020870 0.120956 0.227775 -0.232714 0.492265 -0.904326 0.725721 0.565447 -0.323291 -0.674503 0.291198 -0.592000 -0.764518 -0.145108 0.481902 0.279421 0.038225 -0.197114 -0.054659 -0.411357 -0.589783 -0.471501 -0.267901 1.145038 -0.925687 -0.108938 -0.204679 -0.330043 -0.321624 0.393902 0.189911 0.263227 0.939628 0.555620 -0.406154 -0.076118 -0.736743 0.316658 1.449692 0.540527 -0.855335 0.365433 -0.190759 0.236171 0.524837 0.136741 0.431412 0.171170 -0.592927 -0.311825 0.122821 -0.407713 0.927209 0.541881 0.725335 -0.762787 0.977230 0.014408 -0.350658 1.268041 0.494509 -0.937300 0.194752 0.726404 -0.574197 -0.001788 0.245900 -0.308647 -0.119825 -0.473959 0.101256 0.268160 -0.860750 -0.717295 -0.140489 -0.954498 1.062161 0.184334 0.535997 0.017275 -0.784902 0.081995 1.314749 0.178167 -0.208052 -0.175546 -0.312384 -0.718702 -1.019288 0.214942 0.286029 -0.481409 -0.438030 -0.699363 0.027183 0.805144 -0.487244 0.078203 -0.439249 -0.143131 0.345471 -0.135488 0.398710 -0.890924 -0.614513 -0.018445 -0.108939 0.657369 -0.248114 0.630814 1.081434 -0.457785 0.558868 0.844045 0.490410 0.236452 0.731115 -0.464895 0.815762 -0.425281 0.947639 0.017864 0.797323 -0.544980 -0.200261 -0.082394 0.043206 -0.264935 0.751212 -0.736236 0.026806 0.458297 -0.643589 -0.433798 0.521021 0.156359 0.476904 -0.120728 -0.003870 -0.540848 -0.011717 -0.438488 0.142896 0.743280 -0.143582 -0.956445 -0.188783 0.275096 -0.279014 -0.245314 0.314349 0.012827 0.886695 -0.768321 0.255276 0.092734 -0.107953 -0.798999 -0.751844 0.179028 -0.481371 -0.597596 0.788607 -1.124934 -0.163276 -0.554083 0.221111 -1.167657 0.066793 -0.219990 0.954985 0.289999 -0.205108 0.403532 0.085687 0.621879 0.067838 0.070853 -0.025454 0.714786 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.586159 0.413735 -0.190944 -0.481110 1.559252 0.078270 0.024742 0.779964 -0.115697 0.541522 -1.114857 -0.068729 -0.042259 -1.007342 0.229787 0.276386 0.151011 0.260504 -0.368656 -0.176515 0.430468 -0.200452 0.086472 -0.652364 0.001065 -0.689657 -0.252560 0.034742 0.357156 0.272893 -0.536396 0.156323 0.818784 0.034188 0.438191 0.499223 0.684351 0.792239 0.085633 0.111797 0.376123 0.481692 -0.297306 -1.054445 0.349952 -0.740724 -0.682035 -0.421533 0.264670 -0.875857 0.527292 0.610552 0.113820 -0.248811 -0.509220 0.338007 0.829821 -0.068364 0.842809 0.525947 -0.684572 -0.441700 -0.451023 0.642535 -0.469719 0.711916 0.202816 -0.986815 -0.522640 0.651570 0.268224 -0.468519 -0.631579 -0.001465 0.170492 -0.397002 0.463207 -0.099989 0.300461 -0.511065 -0.535071 0.297773 -0.370009 0.848375 0.015012 -0.121188 -0.177148 -0.204356 0.368071 -0.648160 -0.521312 0.749523 -0.353850 0.333894 -0.635687 0.189795 0.154362 -0.019713 -0.341125 -0.580915 0.268541 0.396508 0.091538 -0.255683 -0.130375 -0.771599 0.650110 0.463304 -0.030738 0.431643 0.206684 0.045596 -0.006215 0.317352 -0.401366 0.191081 -0.881729 0.223164 -0.033066 0.139068 -0.310435 -0.056573 0.619601 -0.054521 0.369786 -0.789921 0.901866 0.490533 -0.446806 -0.441864 0.305943 -0.347876 -0.741490 0.097366 0.407639 0.135846 -0.001676 0.047078 0.227575 -0.330742 -0.831667 -0.352702 -0.431164 0.743104 -1.044759 -0.057960 -0.140456 -0.237245 -0.307722 0.399093 0.269466 0.198636 0.916400 0.471702 -0.340447 0.384466 -0.757803 0.618181 1.560108 0.548315 -0.792494 0.286917 -0.519104 0.372970 0.389713 0.052051 0.114493 0.494210 -0.383881 0.048383 -0.007120 -0.368573 0.888743 0.605469 0.643109 -1.050947 0.508392 -0.255322 0.004912 1.227187 0.683215 -1.117022 0.449281 0.935551 -0.473472 0.053316 0.154925 -0.448179 -0.290468 -0.594500 0.268691 0.394904 -0.903197 -0.737731 -0.099501 -0.772759 0.904553 0.217230 0.235790 0.034395 -0.629685 0.096488 1.275450 0.134321 -0.116357 -0.115867 -0.280202 -0.720046 -0.979462 0.126922 0.433007 -0.607284 -0.347254 -0.623626 -0.201180 1.067302 -0.575041 0.082751 -0.917948 0.213987 0.343026 0.048696 0.415338 -0.815865 -0.511753 -0.158322 -0.220014 0.405559 -0.590094 0.230282 0.733127 -0.541297 0.744474 0.413866 0.033359 0.049319 0.674246 -0.158647 0.789195 -0.072887 0.864419 0.108888 0.859024 -0.548476 -0.020347 -0.296232 -0.232668 -0.324314 0.833032 -0.942438 -0.043618 0.725206 -0.422644 -0.703908 0.641563 0.386275 0.638596 -0.242718 -0.273529 -0.293078 -0.024734 -0.272082 0.237965 0.610848 -0.417374 -0.892451 -0.282297 0.512510 -0.628961 -0.422873 0.431962 0.106091 1.024240 -0.692997 0.472779 0.236987 0.058758 -1.130941 -0.715003 0.041136 -0.320271 -0.447539 0.590530 -1.241606 -0.483852 -0.457910 0.391835 -0.973965 -0.144742 -0.099453 0.867748 0.124960 -0.044011 0.539822 0.203704 0.358709 -0.047977 0.113194 0.160960 0.423506 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.681098 0.524313 -0.550081 -0.530325 1.775412 -0.140035 0.059027 0.843689 -0.243275 0.555357 -1.274376 -0.004382 -0.010208 -1.387490 0.333580 0.639917 0.375938 0.483537 -0.246950 -0.075147 0.508901 -0.404301 0.075832 -0.785243 0.031169 -0.699376 -0.175124 0.058287 0.351743 0.112850 -0.699988 0.371198 1.040118 0.188158 0.580911 0.688663 0.621667 1.016853 0.487430 -0.215188 0.418097 0.517191 -0.267972 -1.368047 0.494415 -0.745056 -0.697296 -0.622735 0.262438 -0.876428 0.848777 0.749747 0.126540 -0.271731 -0.912498 0.162361 1.157329 -0.055895 0.999221 0.650184 -0.682113 -0.454694 -0.289323 0.630004 -0.615869 0.499949 0.443247 -1.071562 -0.383676 0.864907 0.553298 -0.751060 -0.898540 -0.086531 0.109136 -0.510041 0.527583 -0.007240 0.335676 -0.796370 -0.777557 0.351754 -0.563961 1.101794 0.064883 -0.121478 -0.464220 -0.286354 0.525768 -0.718109 -0.574349 0.704318 -0.329848 0.468250 -0.527841 0.568754 0.296550 -0.162576 -0.475103 -0.776503 0.336761 0.263359 0.142814 0.008197 -0.123599 -0.815254 0.765869 0.395556 -0.095909 0.623375 0.618199 0.112038 0.070816 0.268359 -0.423401 -0.030021 -1.172330 0.285170 0.117427 0.034617 -0.309843 -0.101860 0.718472 -0.254762 0.386796 -1.021619 1.073219 0.708313 -0.335996 -0.551868 0.388308 -0.309921 -0.801479 0.033491 0.592490 0.104132 0.068845 0.175643 0.176390 -0.337617 -1.101772 -0.406447 -0.592742 1.328689 -1.295592 0.010901 -0.200277 -0.408062 -0.317629 0.280622 0.229536 0.293112 1.045393 0.584607 -0.548932 0.530762 -0.949702 0.726795 1.914217 0.868714 -0.926816 0.365437 -0.476447 0.375539 0.437742 0.144442 0.221875 0.134628 -0.499963 -0.001039 0.192271 -0.452648 0.976056 0.419112 0.806692 -1.171164 0.716718 0.238724 0.021315 1.606070 0.443334 -1.237993 0.640587 1.261482 -0.468793 0.148631 0.182713 -0.524455 -0.378721 -0.721336 0.420007 0.427068 -1.199882 -0.840345 -0.274095 -0.887462 0.949172 0.300495 0.159961 0.011172 -0.746863 0.424868 1.656231 0.157814 -0.039122 -0.102905 -0.470559 -0.707507 -1.187872 0.128007 0.445505 -0.689452 -0.257577 -0.715621 -0.364702 1.387292 -0.668951 -0.009045 -1.106061 0.369297 0.454021 0.195189 0.247812 -1.093481 -0.613465 0.187495 -0.079633 0.338077 -0.569387 0.353528 0.772211 -0.715537 0.581020 0.732989 0.513745 0.350174 0.765413 -0.227601 0.920355 -0.160071 1.315832 0.245241 1.003973 -0.649092 -0.055328 -0.331241 -0.051677 -0.508060 0.914883 -1.181642 -0.071663 1.055927 -0.214689 -1.059694 0.715005 0.548282 0.828897 -0.322635 -0.495659 -0.102323 0.024588 -0.275896 0.445749 0.694593 -0.426141 -0.965034 -0.317307 0.798784 -0.588664 -0.221474 0.555343 0.151876 1.244451 -0.850576 0.669964 0.188227 0.241590 -1.152378 -0.989967 0.334493 -0.285801 -0.384663 0.815358 -1.710687 -0.628318 -0.499779 0.557988 -1.256026 0.268573 -0.270576 1.001741 0.037963 -0.008964 0.616670 0.207706 0.220077 -0.177258 0.179173 0.080411 0.658626 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.295007 0.256018 -0.050633 -0.279469 0.704062 -0.062383 -0.063137 0.368282 0.233785 0.266317 -0.589366 -0.132360 0.015555 -0.463725 0.122685 0.099304 0.042547 0.250103 -0.185100 -0.124612 0.213793 -0.010261 0.008905 -0.349641 -0.020501 -0.353185 -0.162119 0.032293 0.003517 0.117068 -0.252813 0.138009 0.447373 0.039561 0.299337 0.315995 0.301629 0.449287 0.097575 0.320052 0.281488 0.210942 -0.123421 -0.564742 0.175852 -0.321316 -0.274019 -0.281078 0.110855 -0.453863 0.524268 0.268307 0.092979 -0.125626 -0.278256 0.115486 0.301991 0.135064 0.398364 0.296372 -0.368671 0.018489 -0.248125 0.343248 -0.332323 0.407570 0.110383 -0.538059 -0.277532 0.386265 0.294120 -0.242932 -0.348229 -0.064620 0.003233 -0.184620 0.238561 -0.048196 0.253267 -0.144611 -0.257723 0.213699 -0.145690 0.379807 -0.004865 -0.065055 -0.274422 -0.088559 0.198137 -0.251229 -0.318164 0.341329 -0.175809 0.215701 -0.182614 0.053897 0.177051 -0.062633 -0.030917 -0.277191 0.164715 0.162863 0.042864 0.146437 -0.114916 -0.305080 0.407451 0.336630 -0.115329 0.151052 0.064722 0.108761 0.035134 0.097788 -0.083836 0.104118 -0.514257 0.147080 -0.034987 0.023612 -0.103963 -0.050037 0.249902 -0.014384 0.133845 -0.322521 0.489955 0.236453 -0.211654 -0.123022 0.188929 -0.102508 -0.374009 -0.002027 0.200837 0.155782 -0.017350 0.072896 0.057131 -0.194668 -0.296119 -0.228433 -0.231185 0.288080 -0.349222 -0.029123 -0.064873 -0.130239 -0.165314 0.173685 0.108782 0.068453 0.466723 0.226715 -0.139989 -0.121269 -0.394894 0.248592 0.719842 0.135180 -0.364204 0.156271 -0.159308 0.144674 0.205294 0.073016 -0.030546 0.276682 -0.132873 -0.017512 -0.226887 -0.245749 0.427488 0.313605 0.264510 -0.478586 0.227231 -0.090192 -0.012030 0.697292 0.328881 -0.517081 0.035800 0.509081 -0.263899 -0.104827 0.102824 -0.155257 -0.109619 -0.250867 0.140574 0.168139 -0.449338 -0.400940 -0.013170 -0.386643 0.410128 0.094660 0.081447 -0.035292 -0.362453 0.067563 0.714206 0.097192 -0.047333 0.003796 -0.130542 -0.195509 -0.513383 0.042482 0.284843 -0.260006 -0.132875 -0.251322 -0.017696 0.518282 -0.383991 -0.000336 -0.220981 0.007175 0.189499 -0.102113 0.128504 -0.432907 -0.231866 -0.079694 -0.069419 0.187968 -0.219827 0.095502 0.419584 -0.223556 0.310896 0.472056 0.035520 -0.007730 0.404200 -0.085122 0.408982 -0.130763 0.184598 0.109483 0.378867 -0.259723 -0.074414 -0.142708 -0.086202 -0.196048 0.402166 -0.463304 0.000653 0.309809 -0.232682 -0.231406 0.369105 0.266042 0.314540 -0.133098 -0.076430 -0.183767 0.009787 -0.137854 0.093809 0.292744 -0.103177 -0.484499 -0.096441 0.303008 -0.400271 -0.297562 0.187833 0.047031 0.535417 -0.333715 0.305888 0.177710 0.013204 -0.607585 -0.263522 0.015311 -0.206571 -0.193606 0.129845 -0.576758 -0.350773 -0.196065 0.266438 -0.392751 -0.048139 -0.011371 0.408424 0.156680 -0.046061 0.243117 0.062665 0.193747 0.070848 -0.051823 0.047554 0.295470 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.382889 0.183164 -0.529513 -0.239482 1.009793 -0.102769 -0.093590 0.511679 0.020452 0.325124 -0.689155 -0.133870 -0.018851 -0.798955 0.212303 0.587618 0.286767 0.283179 -0.162162 -0.174009 0.285118 -0.202750 0.056545 -0.413954 0.054355 -0.320606 -0.117307 0.041925 0.198072 -0.010542 -0.621688 0.252712 0.619984 0.121838 0.342260 0.365448 0.387995 0.557962 0.347107 -0.131180 0.251244 0.305678 -0.155387 -0.780361 0.310498 -0.448051 -0.350221 -0.326512 0.179015 -0.393356 0.679467 0.417136 0.064912 -0.118729 -0.530519 0.019283 0.578031 0.054470 0.599261 0.379302 -0.389440 -0.255407 -0.115152 0.429598 -0.399161 0.293201 0.228166 -0.655906 -0.288329 0.498853 0.370847 -0.476257 -0.536256 -0.054682 0.020787 -0.268109 0.338369 0.057306 0.517527 -0.485464 -0.566469 0.214060 -0.427201 0.640342 0.030186 -0.083655 -0.349913 -0.185423 0.315284 -0.409918 -0.292568 0.299691 -0.230868 0.374762 -0.159845 0.256298 0.122753 -0.081070 -0.241250 -0.451409 0.166546 0.123553 0.080140 0.158277 0.100147 -0.376050 0.519675 0.188376 0.003542 0.289217 0.549095 -0.021950 0.043961 0.153609 -0.127862 -0.189944 -0.644418 0.167948 0.109154 -0.004150 -0.187609 -0.022709 0.481596 -0.244943 0.236719 -0.605834 0.572419 0.407741 -0.169093 -0.250847 0.212611 -0.188116 -0.485610 0.032104 0.381157 0.023373 0.023615 0.098154 0.127852 -0.184633 -0.769197 -0.075804 -0.401900 0.705093 -0.715489 -0.006371 -0.120998 -0.296914 -0.163488 0.155380 0.114461 0.217186 0.584488 0.341698 -0.392332 0.180741 -0.583281 0.477753 1.104696 0.372779 -0.544984 0.194431 -0.303353 0.260603 0.289251 0.123919 0.140024 0.006224 -0.095920 0.165547 0.073472 -0.174026 0.562846 0.126538 0.543358 -0.582195 0.272359 0.233453 0.045973 0.981475 0.151803 -0.736365 0.382327 0.734925 -0.186296 0.190683 0.092437 -0.295239 -0.175895 -0.521426 0.288710 0.314181 -0.760526 -0.421564 -0.100274 -0.499843 0.546332 0.178495 0.065985 0.086004 -0.505108 0.488174 1.018214 0.119944 0.047342 -0.054573 -0.318877 -0.387718 -0.674186 0.061403 0.220628 -0.383443 -0.061835 -0.408686 -0.249499 0.896191 -0.317947 0.006401 -0.647174 0.338960 0.261095 0.058112 0.111837 -0.543089 -0.361061 0.184366 -0.103705 0.188833 -0.387905 0.125840 0.350636 -0.444560 0.294146 0.532937 0.440236 0.198177 0.361523 -0.104071 0.516202 -0.095358 0.643132 0.149240 0.599945 -0.372233 -0.009827 -0.232249 0.062451 -0.333729 0.520455 -0.689154 -0.049384 0.671672 -0.097535 -0.662577 0.364184 0.318585 0.556085 -0.184396 -0.420668 -0.043956 0.043644 -0.110936 0.327761 0.390612 -0.210983 -0.529882 -0.173810 0.444992 -0.348402 -0.105381 0.342901 0.029414 0.768263 -0.490934 0.329898 0.163439 0.235877 -0.604976 -0.512093 0.090157 -0.045259 -0.092638 0.521075 -1.031998 -0.413444 -0.269660 0.312088 -0.665989 0.315559 -0.217608 0.587821 0.050627 -0.033805 0.363804 0.170715 0.052801 -0.095079 0.042125 0.051519 0.352035 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -1.201934 0.922859 0.287842 -0.932917 2.613509 -0.160779 0.462311 0.841386 -0.194741 0.929828 -2.184382 -0.521553 -0.406609 -2.030902 0.388893 -0.479637 0.482294 0.585754 -0.556725 0.161121 0.854779 -0.619850 0.101620 -1.288352 -0.019772 -1.615550 -0.576727 0.106464 0.698860 0.338586 -0.237797 0.438844 1.977840 0.219735 1.199027 1.208623 0.856773 1.778571 0.162350 -0.159944 0.574797 1.091897 -0.580897 -2.068042 0.451791 -1.189233 -1.305059 -0.996422 0.515958 -1.521970 0.102551 1.212970 0.176329 -0.316772 -1.284204 0.558673 1.904467 0.228213 1.691097 0.939548 -0.919441 -0.310091 -0.966269 0.711301 -1.016988 0.893682 0.090825 -1.721312 -0.602063 1.109774 0.154292 -0.713265 -1.246688 0.049386 0.608934 -0.879213 0.836056 -0.128692 -0.585309 -1.098174 -1.072620 0.464804 -0.470120 1.680431 -0.041356 -0.199698 0.080730 -0.312174 0.710514 -1.300299 -0.917505 1.469871 -0.623898 0.079416 -0.646881 0.914522 0.588356 -0.067718 -0.812828 -1.229554 0.503734 0.208860 0.210249 -0.288543 -0.509317 -1.436199 0.854705 0.765267 -0.157170 1.186317 0.445936 0.541285 0.304632 0.585546 -1.382959 0.382100 -1.771487 0.534881 -0.511262 0.034397 -0.347088 0.052138 0.757775 0.197430 0.793761 -1.671946 1.673945 1.091515 -0.622613 -0.868825 0.556084 -0.677546 -1.382928 -0.060046 0.886243 0.376374 0.148884 -0.032000 0.255961 -0.543260 -0.666742 -0.413615 -0.657151 1.623790 -1.809575 -0.073078 -0.288342 -0.510092 -0.578853 0.676932 0.440635 0.386298 1.777216 0.941743 -0.943371 0.796593 -1.522204 0.885471 2.964818 0.620976 -1.462553 0.705671 -0.733492 0.451275 0.748638 0.298209 0.462259 0.572199 -1.086061 -0.407339 -0.196475 -0.817223 1.699620 1.067588 0.869462 -2.129634 1.509857 -0.331211 -0.184041 2.368442 1.143174 -1.978895 0.743695 1.778912 -1.717229 -0.375862 0.363351 -0.866441 -0.426522 -1.273348 0.521275 0.620573 -1.583148 -1.241420 -0.260918 -1.585480 1.541800 0.361983 0.220309 0.013580 -1.086174 -0.868446 2.608091 0.171371 -0.151005 -0.377562 -0.684049 -0.984983 -2.086571 0.249963 0.431909 -1.162235 -0.571946 -1.227227 -0.138157 1.841875 -1.108192 0.345201 -1.627839 0.188129 0.708282 0.518560 0.649913 -1.286438 -1.042594 -0.004706 -0.434341 0.543953 -0.913494 0.687277 1.554695 -1.007227 1.195652 0.241313 -0.662900 0.419049 1.327252 -0.689436 1.619278 -0.341166 1.924019 0.256263 1.504812 -1.041725 -0.257236 -0.275179 -0.832115 -0.837261 1.423138 -1.774893 -0.025355 1.323705 -0.694951 -1.346515 1.152442 0.677235 1.018006 -0.387568 -0.119857 -0.932103 0.180650 -0.264554 0.464741 1.202407 -0.337517 -1.682122 -0.331373 1.134482 -0.852742 -1.091322 0.640603 0.136503 1.742871 -1.402422 0.839588 0.298593 0.117624 -1.755639 -1.735596 0.552521 -1.156207 -0.924231 1.178035 -2.221927 -0.601535 -0.923400 0.732223 -1.591287 -0.441532 0.111045 1.718950 0.317521 -0.373597 0.872934 0.181620 0.765848 -0.164817 0.217579 0.182339 1.003737 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::allocate(unsigned long, void const*) = -1.097415 0.015720 -0.396439 -0.538237 2.705038 -0.145851 0.014540 1.467881 -0.068702 1.185020 -1.553863 -0.493157 -0.540411 -1.372765 0.233253 -0.116964 0.766984 0.471516 -0.805009 -0.009644 0.700870 -0.278087 0.180460 -0.686298 -0.159954 -0.787594 -0.507356 0.303899 0.905146 -0.032591 -1.177570 0.374148 2.038912 -0.154609 1.413447 1.060228 1.121940 1.405025 0.133364 -0.435310 0.454165 0.965362 -0.535695 -1.378556 0.145533 -1.169991 -1.468585 -0.271366 0.705486 -1.060631 0.506376 1.045452 0.034975 0.139049 -0.809543 1.030367 1.087486 0.293417 1.870491 0.593741 -1.428188 -0.696509 -1.042915 1.431394 -0.747345 0.826893 -0.493931 -1.910986 -0.583785 0.673758 0.108787 -1.202345 -1.088937 0.569820 0.622834 -0.948453 0.991306 -0.025688 0.546701 -1.267259 -1.211194 0.342215 -0.904836 1.361438 -0.144295 0.086119 -0.194414 -0.135492 0.144189 -1.666858 -0.340966 1.331584 -1.226365 0.619149 -1.271922 0.365609 0.188890 0.224924 -1.102267 -1.239635 0.298089 0.042265 0.294331 -1.021730 0.370134 -0.929185 0.819658 0.372963 0.576466 0.923818 0.518064 0.471103 0.844562 1.035731 -0.925008 0.103807 -1.303159 0.428300 -0.790943 -0.037603 -0.622116 0.492676 0.925157 0.501174 1.391349 -1.764704 1.150565 0.519006 -0.677488 -0.928731 0.360160 -0.800340 -1.253420 -0.198013 1.015674 0.016589 0.107477 -0.574319 0.667397 -0.240601 -1.232534 0.238973 -0.394683 0.476335 -1.338578 -0.101501 -0.266193 -0.503043 -0.350566 0.976576 0.800265 0.831271 1.424347 0.856035 -0.635307 0.525431 -1.915419 0.814680 2.280978 0.155190 -1.526578 0.996529 -1.069964 0.525160 0.922777 0.648656 0.685589 0.456662 -0.280152 -0.065465 -0.037016 0.243173 1.546176 0.782563 0.551280 -1.329003 0.515796 -1.071748 -0.300801 2.133510 1.217649 -1.966867 0.534063 1.179258 -0.940602 0.001677 0.404805 -1.141253 -0.190766 -1.422137 0.458966 1.093446 -1.320471 -0.579982 0.517943 -1.309509 1.550149 0.023732 -0.240524 0.108057 -1.533856 -0.199278 2.409992 0.048915 0.091491 -0.311795 -0.977382 -1.200716 -1.958037 -0.114381 0.006319 -0.864340 -0.460668 -1.380394 -0.320212 1.702675 -0.316479 0.714216 -1.993997 0.324493 0.808489 0.134135 0.732513 -0.672581 -0.811990 -0.416787 -0.804583 0.678784 -1.451462 0.368233 1.320165 -0.725012 1.452317 -0.022245 -0.928447 0.216249 0.737938 -1.144367 1.701855 -0.004784 1.244084 0.241590 1.158772 -0.983444 -0.109697 -0.513023 0.020555 -0.889209 1.313333 -1.394059 -0.161639 0.843484 -0.946580 -1.280953 0.434427 0.493679 0.627718 -0.015465 -0.303908 -1.201506 -0.398265 -0.832995 0.516953 0.823508 -0.537993 -1.007323 0.394686 0.380262 -0.698245 -0.455004 0.329851 0.082733 1.543473 -1.482320 0.012937 0.568260 0.266682 -1.356846 -1.560002 -0.521776 -0.867122 -0.684660 1.071708 -1.973426 -0.949735 -0.644174 0.341590 -1.057973 -0.420214 0.481830 2.095178 0.562515 -0.676729 0.836254 0.074787 0.775041 -0.245576 0.330359 0.033509 0.641625 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.230225 0.141003 -0.145876 -0.213917 0.705669 -0.039948 -0.096447 0.409955 0.136472 0.275106 -0.440576 -0.022467 0.059112 -0.374292 0.117726 0.203845 0.046137 0.160975 -0.176532 -0.178957 0.134081 0.036552 0.029581 -0.229730 -0.043711 -0.362444 -0.103156 0.069724 0.090748 0.052014 -0.328165 0.105181 0.368567 -0.079961 0.212623 0.222838 0.369676 0.252028 0.096089 0.108424 0.283894 0.119020 -0.107427 -0.377638 0.074509 -0.246236 -0.318596 -0.131293 0.133906 -0.339096 0.336554 0.222969 0.069699 -0.102370 -0.188613 0.221992 0.177452 -0.024530 0.344196 0.216546 -0.351629 -0.142530 -0.196728 0.514883 -0.275931 0.309275 -0.042074 -0.475018 -0.293605 0.380313 0.109390 -0.164926 -0.223057 -0.028690 0.041364 -0.184505 0.189226 -0.027522 0.438117 -0.166929 -0.194319 0.217749 -0.164303 0.301548 0.037455 -0.021174 -0.157467 -0.064797 0.124897 -0.242321 -0.223296 0.289176 -0.218180 0.152427 -0.197133 -0.014658 0.147445 -0.071111 0.023374 -0.299574 0.110593 0.114315 0.036764 -0.036561 0.131537 -0.238368 0.248427 0.236125 0.028119 0.175016 -0.015838 0.030682 0.002270 0.110806 0.008229 -0.032082 -0.417426 0.133818 -0.050152 0.022368 -0.173235 -0.036964 0.339838 0.059743 0.163786 -0.311766 0.393495 0.149585 -0.152385 -0.094561 0.119037 -0.049887 -0.290466 0.043101 0.159030 0.057347 -0.012132 0.059209 0.160779 -0.104959 -0.359502 -0.102462 -0.187501 0.179434 -0.397219 0.001030 -0.025782 -0.059921 -0.121226 0.185428 0.156119 0.099698 0.407656 0.186869 -0.102252 0.044876 -0.389031 0.260950 0.589865 0.060992 -0.289696 0.179300 -0.293523 0.098645 0.150537 0.106211 -0.045380 0.262576 -0.076250 0.051679 -0.092148 -0.109455 0.387013 0.169651 0.205024 -0.381008 0.083778 -0.158232 0.047666 0.547790 0.287610 -0.518513 0.155422 0.442097 -0.152626 -0.019437 0.110760 -0.242700 -0.128472 -0.258559 0.128334 0.231644 -0.374068 -0.259361 0.032237 -0.278681 0.346824 0.063801 -0.025060 0.034650 -0.256104 0.157227 0.562892 0.100966 0.021193 -0.024742 -0.147798 -0.259633 -0.426238 -0.005410 0.228420 -0.239475 -0.055362 -0.238220 -0.110029 0.463333 -0.254880 0.063205 -0.429830 0.139126 0.183334 0.002559 0.093869 -0.255716 -0.149086 -0.073995 -0.137779 0.087421 -0.341118 0.062895 0.252470 -0.205700 0.353633 0.236419 -0.067377 -0.015164 0.253431 -0.084086 0.367761 0.010714 0.127274 0.135838 0.307628 -0.242220 -0.000884 -0.191306 -0.135542 -0.188919 0.306740 -0.424958 -0.041569 0.289675 -0.161688 -0.296444 0.250622 0.259688 0.273789 -0.106129 -0.155481 -0.123404 -0.029429 -0.178796 0.133287 0.197965 -0.177866 -0.359814 -0.010871 0.284315 -0.373849 -0.260482 0.151658 0.075368 0.442384 -0.295001 0.230764 0.182846 0.136331 -0.562436 -0.249165 -0.041955 -0.102576 -0.130420 0.070460 -0.538597 -0.365395 -0.153603 0.205234 -0.370213 -0.062832 0.050251 0.393413 0.055028 -0.058997 0.225285 0.052438 0.080523 0.035926 0.008808 0.059213 0.130861 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.255942 0.220514 -0.130162 -0.199644 0.536724 -0.059537 -0.088129 0.285296 0.138150 0.239071 -0.466513 -0.125305 -0.038983 -0.496053 0.112750 0.161395 0.098175 0.201608 -0.084695 -0.070585 0.202949 -0.157077 0.026024 -0.294814 0.015751 -0.349885 -0.070816 0.013451 0.089323 0.100948 -0.231306 0.127651 0.379672 0.098236 0.226190 0.262106 0.181855 0.404237 0.188959 0.124639 0.133871 0.221376 -0.106172 -0.524665 0.198368 -0.278366 -0.160816 -0.257749 0.106816 -0.338168 0.360191 0.252138 0.046215 -0.101909 -0.338113 0.017751 0.339152 0.159229 0.371998 0.238498 -0.187766 -0.112694 -0.161836 0.178481 -0.304556 0.185673 0.155597 -0.389390 -0.133539 0.287506 0.132848 -0.121777 -0.232721 -0.033306 0.023805 -0.179990 0.195755 -0.014971 0.066088 -0.157469 -0.278121 0.134936 -0.158291 0.395388 -0.001325 -0.047851 -0.169993 -0.075286 0.199551 -0.242113 -0.219913 0.219851 -0.100798 0.155983 0.002655 0.222180 0.175039 -0.058137 -0.055321 -0.179697 0.122503 0.100784 0.060728 0.103819 -0.115411 -0.288497 0.389967 0.163364 -0.075210 0.152984 0.230614 0.043635 0.000000 0.104026 -0.163724 0.016152 -0.437620 0.097397 0.047989 0.018412 -0.076769 -0.022815 0.203857 -0.102183 0.125123 -0.343189 0.395925 0.259104 -0.077166 -0.147587 0.161743 -0.111608 -0.287837 -0.011154 0.216493 0.073319 -0.004030 0.055304 0.037065 -0.132579 -0.333219 -0.104302 -0.216867 0.433383 -0.361326 -0.002896 -0.083675 -0.170790 -0.109507 0.072222 0.046640 0.091935 0.374426 0.219421 -0.190934 0.016069 -0.322614 0.236522 0.675842 0.158846 -0.317894 0.117337 -0.102900 0.125922 0.172577 0.047182 0.083672 0.156133 -0.121080 -0.017918 -0.095913 -0.186629 0.347398 0.195019 0.288534 -0.390728 0.280311 0.092063 -0.005894 0.588182 0.183405 -0.414665 0.145991 0.435491 -0.348870 0.018245 0.051889 -0.091219 -0.002348 -0.281506 0.134750 0.172151 -0.438966 -0.334098 -0.110260 -0.340169 0.354343 0.097067 0.173500 0.028427 -0.296006 0.147307 0.595648 0.089120 -0.030117 -0.060147 -0.160158 -0.311824 -0.430116 0.053917 0.154704 -0.274019 -0.080875 -0.241726 -0.095707 0.475968 -0.254260 -0.027698 -0.296795 0.089712 0.160239 0.026818 0.079324 -0.280176 -0.224085 0.067508 -0.069442 0.171333 -0.140617 0.140776 0.315482 -0.228897 0.235959 0.317303 0.174409 0.126760 0.310015 -0.092520 0.334453 -0.139873 0.263155 0.086096 0.347644 -0.214378 -0.031343 -0.092413 -0.107783 -0.153330 0.316580 -0.400417 -0.017248 0.368893 -0.162748 -0.265025 0.270599 0.197326 0.372503 -0.102980 -0.092922 -0.128533 0.040530 -0.067528 0.121691 0.265969 -0.029038 -0.374390 -0.113030 0.265214 -0.213956 -0.263967 0.190866 0.010770 0.440259 -0.301155 0.243806 0.103790 0.027726 -0.393209 -0.258313 0.066597 -0.104541 -0.143982 0.255689 -0.597353 -0.188007 -0.171888 0.212273 -0.400861 0.112909 -0.123633 0.341425 0.070979 -0.025325 0.221926 0.070484 0.115357 0.015640 -0.019459 0.021937 0.285461 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = -0.086795 -0.162527 0.020871 -0.097593 0.496621 -0.204801 -0.092463 0.334907 0.322552 0.120809 -0.119355 0.037980 0.028448 -0.030472 0.055497 -0.060147 0.127973 0.263288 -0.175657 -0.072204 0.034607 0.271590 0.001988 0.006158 -0.107186 0.075239 -0.094234 0.137685 -0.219844 -0.062769 -0.144662 0.168654 0.211528 -0.120611 0.272160 0.179514 0.270006 0.147665 -0.073254 0.355824 0.315872 -0.099298 0.092308 -0.156468 0.017403 0.010128 -0.343102 -0.007159 0.051409 -0.288839 0.338971 0.062689 0.083472 0.049468 0.042130 0.283874 -0.050269 0.056617 0.112259 0.111194 -0.533639 0.153064 -0.197156 0.266557 -0.093636 0.240772 -0.127836 -0.475114 -0.213861 0.257801 0.246644 -0.315204 -0.234691 -0.007255 0.044431 -0.084669 0.146099 0.042709 0.483045 -0.037361 -0.039050 0.129069 -0.097150 0.023695 0.013468 0.090876 -0.122408 -0.084774 -0.080005 -0.129170 -0.076714 0.143390 -0.307889 0.300764 -0.439338 -0.276091 0.048709 -0.079560 -0.057723 -0.345206 0.066991 -0.053167 0.043659 0.119668 -0.109473 0.082331 0.162161 0.174532 0.094092 -0.054593 -0.207048 0.094851 0.140765 0.054839 0.022343 0.211009 -0.155745 0.124265 -0.228941 -0.047459 -0.203343 -0.008985 0.179864 0.289295 0.158819 -0.072018 0.211429 -0.086696 -0.158640 0.028667 0.098661 0.081259 -0.097982 -0.082831 0.162483 -0.016878 0.010808 0.010496 0.134868 -0.015662 -0.084917 -0.027045 -0.119490 -0.367738 0.111086 0.027329 -0.022299 -0.070442 -0.032570 0.101058 0.186998 0.140783 0.064011 0.038215 0.094488 -0.201926 -0.389372 0.051249 0.118376 -0.117164 -0.110139 0.198725 -0.051838 0.125249 0.143396 0.128045 -0.100033 0.032265 0.167650 0.037784 -0.153820 0.163427 0.061526 0.228282 -0.155453 -0.252913 -0.341812 -0.313386 0.028777 0.390183 0.300856 -0.325106 -0.113177 0.198319 0.050444 -0.187186 0.034804 -0.160193 -0.117928 -0.049064 0.117915 0.144902 -0.118449 -0.071668 0.304100 -0.034986 0.004836 -0.069968 -0.242158 -0.139250 -0.232989 -0.046631 0.374436 -0.027631 0.081419 0.141372 -0.174696 0.130924 -0.258249 -0.182683 0.099787 -0.004553 -0.003620 -0.095153 0.005142 0.233280 -0.090721 0.074555 -0.031649 -0.040771 0.165504 -0.243873 -0.019483 -0.225910 0.010345 -0.259425 -0.133451 -0.031541 -0.194574 -0.231110 0.145015 0.038861 0.246983 0.199277 -0.428819 -0.096047 0.093432 -0.142119 0.259860 0.040550 -0.040994 0.163280 0.027132 -0.125428 -0.028964 -0.174087 0.194129 -0.224436 0.247242 -0.184096 -0.035348 0.007986 -0.167372 -0.115410 0.050205 0.242723 -0.003174 -0.006372 0.034311 -0.179934 -0.182277 -0.257010 0.074243 -0.063965 -0.181046 -0.067916 0.217544 0.104945 -0.301715 -0.174535 -0.000334 0.088256 0.235671 -0.177188 0.094876 0.238610 -0.014350 -0.302438 -0.064818 -0.175038 -0.316007 -0.029834 -0.261331 -0.186689 -0.468843 0.091107 0.174772 0.167641 -0.097702 0.216470 0.290228 0.170650 -0.036382 0.142392 -0.049591 0.029743 -0.022075 0.020037 -0.083770 0.140958 +PE-benchmarks/cut-vertices.cpp__std::__new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.486392 0.083149 -0.482670 -0.338974 1.446429 -0.031548 -0.101334 0.726211 -0.041514 0.552476 -0.768819 -0.050648 -0.107456 -0.833993 0.191887 0.501394 0.258946 0.266596 -0.384005 -0.289836 0.317254 -0.081102 0.210368 -0.385565 -0.049128 -0.553160 -0.168548 0.141383 0.308942 0.071118 -0.676750 0.165179 0.773993 -0.097021 0.307352 0.313146 0.651370 0.633810 0.181411 -0.150466 0.427220 0.332687 -0.219921 -0.833467 0.304606 -0.578904 -0.659771 -0.277005 0.364308 -0.681195 0.487078 0.497351 0.088001 -0.215502 -0.456006 0.345320 0.608259 -0.149803 0.772027 0.357254 -0.635967 -0.507718 -0.320321 0.780214 -0.492472 0.493197 -0.002367 -0.921213 -0.583504 0.658564 0.178565 -0.455265 -0.586776 -0.026178 0.179320 -0.360363 0.355197 0.021051 0.739139 -0.532517 -0.569827 0.241647 -0.496888 0.661302 0.014837 -0.023976 -0.134761 -0.183714 0.278905 -0.562274 -0.326977 0.555287 -0.361727 0.407602 -0.457239 0.046700 0.032466 -0.153684 -0.313128 -0.546581 0.109611 0.205660 0.134053 -0.218273 0.189748 -0.496766 0.496655 0.281388 0.192506 0.323029 0.304738 -0.101454 -0.067622 0.258018 -0.181495 -0.066572 -0.797533 0.225266 0.013539 0.073414 -0.388672 0.035073 0.657925 -0.061334 0.408552 -0.786493 0.756717 0.277622 -0.330306 -0.321674 0.228841 -0.090158 -0.525672 0.125625 0.448615 -0.099752 -0.034385 0.052484 0.343773 -0.165386 -0.934002 -0.032163 -0.398348 0.526880 -0.894938 0.042244 -0.123080 -0.296799 -0.126057 0.303190 0.261373 0.275493 0.773833 0.443921 -0.346010 0.419028 -0.809810 0.630873 1.257676 0.358116 -0.661047 0.295488 -0.566776 0.324368 0.360471 0.166999 0.144024 0.322613 -0.046156 0.241754 0.078987 -0.055086 0.774018 0.311495 0.583557 -0.861958 0.089625 -0.163238 0.280898 1.060345 0.471592 -1.051720 0.547570 0.830691 -0.262651 0.137092 0.106146 -0.449990 -0.304922 -0.619671 0.332101 0.547690 -0.812169 -0.505566 -0.013334 -0.561499 0.710431 0.087930 -0.088947 0.219738 -0.627852 0.375750 1.038760 0.143436 0.065959 -0.122445 -0.439234 -0.616520 -0.897591 0.062515 0.318392 -0.498187 -0.144981 -0.549147 -0.320567 0.995497 -0.261075 0.144589 -1.042125 0.448907 0.370371 0.144792 0.271443 -0.548185 -0.318198 0.032400 -0.290328 0.235347 -0.639459 0.047687 0.361294 -0.569740 0.628430 0.277376 0.077696 0.103979 0.393891 -0.153414 0.707692 0.050549 0.721194 0.114759 0.657258 -0.381827 0.146578 -0.341830 -0.092683 -0.366629 0.618287 -0.878500 -0.166963 0.709890 -0.273175 -0.781773 0.387397 0.464764 0.595300 -0.136703 -0.430443 -0.159889 -0.055591 -0.219388 0.329004 0.433003 -0.415320 -0.681386 -0.090895 0.477315 -0.602087 -0.332191 0.355263 0.156541 0.852839 -0.625880 0.357256 0.227951 0.243753 -0.920049 -0.596396 -0.020318 -0.119365 -0.239961 0.549603 -1.148955 -0.562379 -0.329381 0.418276 -0.747393 0.068483 -0.113236 0.770589 0.056620 -0.007133 0.545706 0.206993 0.109475 -0.130001 0.067280 0.189317 0.280327 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.440700 0.310063 -0.391463 -0.337573 1.153043 -0.093240 -0.037026 0.581760 -0.100636 0.416216 -0.781794 -0.004882 -0.012929 -0.895055 0.212802 0.447739 0.231968 0.309401 -0.163477 -0.087555 0.320532 -0.261828 0.074074 -0.469431 0.000000 -0.531746 -0.086508 0.063563 0.265946 0.066444 -0.490702 0.222177 0.673550 0.074709 0.359448 0.424723 0.427111 0.622255 0.339064 -0.157689 0.271356 0.326361 -0.181970 -0.854630 0.301841 -0.470889 -0.451266 -0.370516 0.208852 -0.557478 0.507607 0.479093 0.071670 -0.182414 -0.584147 0.150010 0.686159 -0.027682 0.667539 0.392422 -0.418790 -0.363242 -0.211242 0.490717 -0.441341 0.284208 0.218706 -0.697831 -0.264114 0.567035 0.246188 -0.395373 -0.502597 -0.034441 0.090511 -0.352877 0.330141 -0.008726 0.286344 -0.492487 -0.495745 0.236748 -0.374331 0.703700 0.045299 -0.051289 -0.255151 -0.156830 0.317072 -0.481946 -0.341212 0.435878 -0.233102 0.281699 -0.259782 0.368880 0.216395 -0.124213 -0.246697 -0.472014 0.195649 0.154664 0.110302 -0.040024 0.006565 -0.513548 0.493882 0.221639 -0.006598 0.392667 0.385874 0.039653 0.017276 0.200956 -0.248957 -0.069707 -0.765320 0.180693 0.077461 0.034900 -0.229422 -0.042938 0.500600 -0.139380 0.281330 -0.685758 0.689878 0.422443 -0.171103 -0.343059 0.243532 -0.168424 -0.487599 0.028355 0.388960 0.026312 0.025262 0.101511 0.163941 -0.179040 -0.754739 -0.187696 -0.370622 0.822452 -0.843584 0.029735 -0.127712 -0.263652 -0.176445 0.176571 0.165459 0.212756 0.684983 0.392293 -0.341754 0.360840 -0.638458 0.482945 1.219155 0.474738 -0.586073 0.258830 -0.354529 0.219910 0.281520 0.120166 0.157905 0.146967 -0.277221 0.014915 0.120781 -0.238737 0.645091 0.231091 0.513420 -0.733338 0.420268 0.136436 0.050889 1.023478 0.291502 -0.826458 0.455261 0.802298 -0.360029 0.118945 0.118766 -0.341142 -0.195923 -0.498094 0.273126 0.339984 -0.772635 -0.523497 -0.175347 -0.558858 0.621840 0.167216 0.100773 0.067737 -0.478160 0.332645 1.032608 0.128262 -0.008800 -0.105964 -0.334044 -0.544271 -0.770023 0.072727 0.268064 -0.469228 -0.136186 -0.476351 -0.276142 0.894451 -0.379340 0.011035 -0.814822 0.287586 0.310210 0.169687 0.147249 -0.593986 -0.364005 0.134363 -0.103464 0.207162 -0.402279 0.232052 0.466725 -0.471159 0.423071 0.402540 0.294023 0.243098 0.466417 -0.172845 0.614347 -0.079291 0.757517 0.169037 0.625286 -0.408941 0.006679 -0.228902 -0.097606 -0.315267 0.554615 -0.763412 -0.077860 0.692596 -0.162956 -0.686160 0.422930 0.377070 0.576532 -0.183377 -0.327327 -0.088065 0.005573 -0.192606 0.292183 0.434096 -0.258101 -0.606610 -0.158110 0.513784 -0.381114 -0.227420 0.348020 0.106081 0.785892 -0.561766 0.419691 0.139175 0.188651 -0.744081 -0.611887 0.173230 -0.142137 -0.235853 0.512770 -1.128965 -0.409986 -0.314626 0.362302 -0.810995 0.187604 -0.170299 0.662500 0.011023 -0.019644 0.419932 0.125771 0.120218 -0.097202 0.101681 0.060693 0.399403 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -3.357562 2.121398 1.867511 -1.363146 5.784011 0.181574 2.138650 2.539166 -3.221914 3.336207 -4.824913 -1.368057 -1.858889 -4.282277 0.164022 -2.330805 1.455198 -0.039216 -1.008163 1.361460 2.004808 -2.454245 -0.029439 -2.274892 -0.375054 -3.835702 -1.560706 0.294720 4.643644 -0.940125 -0.295512 0.324573 6.395049 0.183681 5.256930 3.521522 1.561803 3.789008 0.567399 -3.645836 -0.843564 3.966486 -2.773542 -3.703399 -0.678956 -3.209686 -2.982530 -1.416340 1.682451 -1.661431 -2.397635 3.329972 -0.624300 1.020186 -2.716489 2.453634 3.992878 -0.111651 5.862985 1.137078 -2.085569 -1.177501 -2.992222 3.059009 -1.514894 0.978555 -2.090875 -3.344054 0.520558 -0.028045 -1.912953 -2.318721 -1.287645 3.020889 2.058199 -3.260902 2.065936 -0.781850 -3.719253 -4.922699 -3.526341 0.789941 -0.484274 4.170918 -0.314519 -0.167869 1.271831 0.729139 0.241889 -5.693198 -0.295575 4.436338 -3.178788 -1.553552 -1.081604 3.471843 0.234453 2.071500 -2.976549 -2.821831 1.014795 -0.369618 0.606812 -4.374628 2.127658 -3.768613 0.210381 -0.218982 0.790393 3.874213 2.422088 2.334843 3.594593 3.897953 -4.408307 0.091846 -3.780367 1.570804 -2.488828 -0.160180 -0.268640 1.837558 1.240963 1.302059 4.359754 -5.804432 1.911375 2.218781 -1.073518 -4.197818 -0.002908 -4.151261 -3.878151 -0.867056 2.173584 0.995007 0.746828 -2.848374 0.796121 -0.631775 -1.497973 -0.466069 0.302450 4.038178 -5.661957 -0.674802 -0.500040 -0.462050 -1.827650 3.510199 2.271941 2.249644 5.027957 2.736421 -2.550923 2.966889 -4.383396 0.855891 6.389522 0.185495 -4.365364 3.246802 -3.760479 -0.133412 2.329722 2.148641 3.182461 0.410319 -4.057275 -2.140369 2.289620 -0.391326 5.297670 0.964487 1.741281 -2.803863 5.454861 -1.539493 -3.025340 5.371297 2.157908 -5.429062 2.733702 2.264620 -3.609207 -0.219216 2.282738 -4.123369 -0.687326 -3.836184 0.066216 2.015184 -3.000294 -0.700954 0.723254 -4.739987 5.498632 0.436119 0.519485 1.096160 -3.148656 -3.730737 6.230059 0.504839 -0.250636 -2.337714 -2.070136 -3.741820 -5.129119 0.690470 -0.615139 -2.530853 -1.679852 -4.450179 0.264183 3.358578 -0.735085 3.265981 -5.883996 -0.233166 1.817259 2.085427 2.468239 -1.487096 -2.895751 -0.376898 -1.861996 2.104124 -3.652087 4.008634 5.069218 -2.149666 4.111478 -1.795693 -3.381856 1.156494 1.928881 -4.441125 4.695219 -0.505120 4.670526 0.166894 3.357269 -3.452630 -1.133320 -0.153840 -1.630427 -1.868172 2.337304 -3.006272 0.033250 1.070019 -3.118585 -3.060262 0.807307 -0.393877 0.783480 0.146025 -0.113366 -4.120256 -0.168063 -2.300897 1.074025 3.376907 -0.653791 -3.500297 1.125468 0.534870 0.005028 -0.772517 0.376598 -0.065215 3.099686 -4.290285 -1.131326 0.291432 1.039683 -2.982350 -5.925834 0.276337 -3.360213 -2.757378 3.778739 -4.690969 0.330503 -3.206214 -0.872088 -5.328567 -2.032798 1.618851 6.261010 1.137562 -3.170232 1.354042 -0.316129 3.280963 -0.050786 1.534672 0.128427 1.604856 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.519901 0.227754 -0.254601 -0.287456 1.431682 0.172578 -0.037152 0.916194 -0.293821 0.621778 -0.816906 -0.017164 -0.094401 -0.807819 0.150012 0.354530 0.173245 0.113457 -0.344068 -0.220186 0.348873 -0.166699 0.114396 -0.394537 -0.027297 -0.633796 -0.214106 0.065323 0.553167 0.152791 -0.589364 0.060385 0.814754 -0.048364 0.474076 0.379852 0.695536 0.550502 0.104977 -0.112791 0.166189 0.469237 -0.368008 -0.766020 0.229670 -0.701231 -0.641597 -0.206527 0.305171 -0.658511 0.303987 0.546804 0.002812 -0.065529 -0.293745 0.393321 0.576166 -0.225345 0.855279 0.345548 -0.677597 -0.642809 -0.414204 0.828181 -0.318316 0.536713 -0.036602 -0.888231 -0.430405 0.380391 0.046317 -0.414488 -0.367418 0.257587 0.206998 -0.401279 0.416902 -0.085528 0.392558 -0.614201 -0.568294 0.226850 -0.398686 0.725421 0.002983 -0.065404 -0.049809 -0.098478 0.163528 -0.782207 -0.234943 0.709640 -0.474659 0.283964 -0.644100 0.089107 -0.033050 0.170029 -0.336539 -0.510243 0.171325 0.320530 0.099954 -0.520203 0.230551 -0.645024 0.439205 0.177836 0.217993 0.446510 0.258358 -0.025433 0.128966 0.505407 -0.369134 0.054182 -0.659607 0.268566 -0.092253 0.156459 -0.320431 0.091801 0.646766 0.012376 0.538661 -0.837593 0.579734 0.331347 -0.360644 -0.515020 0.143036 -0.477470 -0.649005 0.077261 0.383906 -0.003062 -0.023321 -0.192981 0.296369 -0.195723 -0.936963 -0.225816 -0.299547 0.535072 -1.086629 -0.068130 -0.111677 -0.174342 -0.250444 0.503142 0.365059 0.347296 0.825095 0.456017 -0.302320 0.502612 -0.763359 0.528617 1.305389 0.429614 -0.747181 0.361169 -0.693977 0.275802 0.400915 0.151363 0.256596 0.417119 -0.265543 0.117485 0.210482 -0.034728 0.885490 0.453460 0.586272 -0.773399 0.347647 -0.329853 -0.096490 1.039472 0.556142 -1.065435 0.543977 0.612995 -0.301857 0.235141 0.182260 -0.584788 -0.274351 -0.625907 0.176478 0.515443 -0.751191 -0.435080 0.109046 -0.693922 0.923958 0.125322 0.196176 0.213084 -0.630719 0.142018 1.058922 0.160255 -0.048440 -0.220543 -0.323481 -0.799488 -0.808220 0.102181 0.257330 -0.507612 -0.280649 -0.667998 -0.253886 0.915419 -0.207284 0.280828 -1.164266 0.286314 0.315913 0.031379 0.421168 -0.636842 -0.429118 -0.201639 -0.333467 0.408693 -0.702533 0.272060 0.604351 -0.489908 0.788035 0.143636 -0.054306 0.008260 0.370960 -0.304540 0.730988 0.027880 0.707714 0.061060 0.728463 -0.514252 0.050399 -0.308426 -0.124308 -0.270465 0.666138 -0.729889 -0.081843 0.560810 -0.504497 -0.672414 0.321779 0.196962 0.495999 -0.101158 -0.378714 -0.387018 -0.094191 -0.340816 0.244844 0.540533 -0.444336 -0.700650 -0.071836 0.215406 -0.448811 -0.298792 0.314265 0.089202 0.802978 -0.671342 0.130727 0.222850 0.170988 -0.918714 -0.699282 -0.151684 -0.195467 -0.415358 0.598566 -1.102132 -0.341396 -0.459391 0.120206 -0.955798 -0.155606 -0.022001 0.937209 0.072674 -0.178417 0.477982 0.182411 0.346757 -0.044698 0.201254 0.172012 0.246478 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -3.953198 3.476256 3.215073 -1.867696 6.668140 0.751332 2.305806 3.204155 -4.004710 4.194327 -5.919220 -0.957783 -1.858614 -4.994268 -0.065881 -3.508975 1.020182 -0.135831 -0.954298 1.740300 2.276602 -2.992911 -0.125896 -2.709111 -0.706778 -4.897784 -1.994176 0.260932 5.376030 -1.044766 0.525626 0.043003 7.365048 0.268857 6.341894 4.326115 1.847891 4.540684 0.697544 -2.858788 -1.200675 4.475957 -3.411992 -4.364931 -0.728228 -3.901302 -3.317033 -1.640745 1.665679 -2.374360 -2.583894 3.954876 -0.816239 1.146761 -3.003195 3.018495 4.402885 -0.371736 6.968995 1.217005 -2.957984 -1.572526 -3.862836 3.595778 -1.672728 1.517826 -2.045530 -3.804135 1.074851 -0.291721 -2.143375 -2.687798 -1.263122 4.006730 2.185255 -4.029483 2.074367 -1.457764 -6.078666 -5.202095 -3.624017 1.202298 0.270165 4.720872 -0.083357 -0.070027 1.480096 1.249681 -0.036929 -7.035079 -0.330437 5.868462 -3.695386 -1.660344 -1.942761 4.211097 0.096654 2.693917 -3.221892 -2.800920 1.423040 0.106483 0.686320 -5.870150 1.504278 -5.347125 0.696283 -0.253869 0.230025 4.027858 2.413824 2.932377 4.526280 5.024522 -5.650081 0.824510 -4.662631 1.787484 -2.507183 -0.108487 -0.313746 1.959401 0.609277 1.730375 5.281760 -6.749815 2.226890 2.389749 -1.678707 -5.667993 -0.219790 -5.211715 -4.511317 -0.964481 2.178832 1.457418 0.917717 -3.563541 0.364525 -0.952057 -1.770524 -2.210597 0.856997 5.169077 -6.505141 -0.803942 -0.443002 -0.210295 -2.555860 4.409838 3.027598 2.628453 6.166413 3.187794 -2.184932 3.641494 -4.940049 0.485251 7.302286 1.274887 -5.326683 4.072639 -4.451665 -0.396799 2.573498 2.369764 3.673946 1.012391 -5.652516 -3.333867 3.037905 -0.675247 6.228454 1.706823 1.881301 -2.953535 7.154959 -1.667314 -4.111154 6.420640 2.782320 -6.267648 3.120549 2.469079 -3.999123 -0.396772 3.126106 -4.965834 -0.818009 -3.720685 -0.565608 2.050832 -3.276755 -1.041114 0.792804 -5.775610 7.038931 0.551320 1.419901 1.120170 -3.823609 -5.623755 7.021656 0.433704 -0.643671 -2.681111 -2.062062 -4.572987 -5.798889 0.799451 0.086401 -3.237838 -2.385877 -5.325887 0.757561 3.492116 -1.074233 4.058347 -6.405088 -1.358965 2.129179 2.032470 3.137550 -2.369164 -3.317481 -1.035303 -1.765511 2.972704 -3.918967 5.409201 6.650049 -2.125509 5.564267 -1.931688 -4.151761 1.115519 2.476253 -5.365768 5.647162 -0.830177 5.189367 0.206524 3.897410 -4.139124 -1.423041 0.044089 -1.836561 -1.665978 2.701490 -3.262842 0.054618 0.619560 -4.335653 -2.863740 0.990966 -0.654650 0.595793 0.168878 0.428880 -4.709890 -0.614455 -3.056863 0.910981 3.991173 -0.896880 -4.196135 1.400098 0.246714 0.087202 -0.540405 0.343305 0.156255 3.387950 -5.126597 -1.383977 0.215355 0.442717 -4.120353 -6.891174 0.162955 -4.356142 -3.704210 3.719403 -5.557159 0.586913 -3.899213 -1.416184 -6.599939 -2.682533 2.015842 7.616713 1.585887 -3.786988 1.453758 -0.633694 4.354526 0.274640 1.958029 0.223611 2.170637 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.513626 -0.090252 -0.243781 -0.207881 1.150029 -0.150847 -0.085230 0.697097 0.332893 0.376614 -0.704744 -0.452901 -0.355355 -0.683993 0.207718 0.236577 0.299361 0.388335 -0.496310 -0.384229 0.486450 0.145660 0.072505 -0.415799 0.075291 -0.222519 -0.304090 0.018568 0.060282 0.184816 -0.656088 0.307336 0.840519 0.108598 0.474207 0.381218 0.658610 0.850711 -0.089281 0.453309 0.288193 0.548044 -0.245691 -0.965593 0.484996 -0.649584 -0.409248 -0.305378 0.347138 -0.613049 0.860927 0.458044 0.111278 -0.027039 -0.255698 0.095956 0.412493 0.273477 0.673191 0.497605 -0.674296 -0.090135 -0.437373 0.488783 -0.478471 0.822908 0.109697 -0.970220 -0.690227 0.375808 0.525369 -0.613768 -0.684053 -0.048794 0.044623 -0.165851 0.496900 0.123848 0.813050 -0.296901 -0.843860 0.105972 -0.466892 0.613342 -0.202804 -0.184206 -0.336581 -0.251794 0.330330 -0.475070 -0.356750 0.524160 -0.420326 0.632893 -0.556930 -0.322776 -0.157909 0.076207 -0.349729 -0.474590 0.172218 0.254615 0.133932 0.246210 -0.159285 -0.267472 0.716929 0.333951 0.050680 0.137834 0.390717 -0.086999 -0.043182 0.210451 -0.058061 0.183675 -0.704992 0.329393 -0.082541 0.138438 -0.158823 0.103309 0.516408 -0.268950 0.291200 -0.617871 0.607472 0.261894 -0.439888 -0.182885 0.334106 -0.279887 -0.671968 -0.080614 0.612437 0.104089 -0.185432 -0.037931 0.245766 -0.248860 -0.676102 -0.123932 -0.542103 0.077340 -0.554150 -0.131465 -0.272060 -0.481750 -0.182659 0.288279 0.084732 0.293968 0.639947 0.481954 -0.435340 -0.202532 -0.748176 0.494134 1.093867 0.127149 -0.696065 0.131558 -0.323178 0.477225 0.494134 0.118451 0.141050 0.422837 0.276748 0.428335 -0.348245 -0.079787 0.748389 0.581133 0.638977 -0.798962 -0.161120 -0.311026 0.050017 1.111079 0.527407 -0.951199 0.139371 0.605891 -0.154388 -0.082279 -0.006324 -0.258032 -0.195555 -0.660400 0.382954 0.471840 -0.879029 -0.472098 0.292945 -0.638447 0.622082 0.064045 0.096375 0.184333 -0.944408 0.173020 1.147370 0.119538 -0.030638 -0.126252 -0.400755 -0.296929 -0.826534 0.214661 0.252678 -0.223244 -0.322678 -0.462573 -0.075426 1.035624 -0.274866 0.099062 -0.380073 0.204446 0.266969 -0.334692 0.445785 -0.725255 -0.456372 -0.129008 -0.246701 0.492138 -0.402407 -0.234856 0.566300 -0.559129 0.442268 0.745793 0.060880 -0.175358 0.494644 -0.124366 0.573963 -0.140153 0.383340 -0.060357 0.649644 -0.427543 -0.046657 -0.211616 0.249506 -0.350317 0.683981 -0.615815 -0.004018 0.442811 -0.543585 -0.391374 0.421643 0.303827 0.507977 -0.093654 -0.292681 -0.359951 0.044412 -0.113570 0.199704 0.615462 -0.219110 -0.735899 -0.166994 0.134303 -0.728314 -0.342678 0.369490 -0.042039 0.935270 -0.550125 0.178397 0.295063 -0.022064 -0.761161 -0.441468 -0.255176 -0.246515 -0.228965 0.561333 -0.784409 -0.423041 -0.323187 0.443500 -0.519536 -0.029375 -0.239037 0.612343 0.355608 0.055969 0.558838 0.331717 0.354888 0.013395 -0.183071 0.191259 0.467761 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -7.363151 6.480415 7.084946 -3.169627 9.673271 3.742489 2.749555 4.405444 -6.127311 9.051202 -11.035605 -3.115826 -4.517473 -7.000225 -1.456401 -7.363081 0.766958 -2.511347 -2.085227 3.391950 4.281379 -6.536081 -0.182316 -4.870993 -1.562088 -8.317586 -4.645383 -0.061963 10.707816 -2.814061 0.187796 -1.387833 13.687244 1.155150 11.522097 8.011054 2.868671 9.652055 0.740754 -2.783568 -4.070844 9.614828 -7.551208 -6.115776 -1.105326 -8.852367 -4.356159 -2.571039 2.742870 -2.439058 -2.244838 7.585969 -2.176571 2.555880 -5.467416 5.603184 6.687431 0.670554 14.372563 1.388029 -4.102382 -2.201639 -8.328112 5.578574 -3.108765 3.955137 -3.485074 -5.525825 3.277753 -3.728037 -1.935799 -6.176740 -2.357308 9.248668 2.885870 -8.024352 3.381373 -4.010866 -13.787932 -10.027238 -7.545284 1.969532 2.252329 8.134464 -0.339602 -0.066129 1.342332 4.319980 -1.011195 -14.411941 0.316561 10.923950 -6.924304 -2.452298 -3.758787 8.244967 -1.966924 6.657455 -7.141939 -2.006504 2.546873 1.195855 1.312216 -12.905275 3.127381 -11.113942 3.211135 -0.753594 -0.616720 3.344257 6.245837 5.188892 10.481879 10.947006 -10.691352 1.781796 -7.734577 1.598977 -1.778718 -0.405500 0.290929 5.029319 -2.428517 2.053826 11.352406 -12.803718 2.488109 3.093382 -5.589636 -11.805606 -1.570458 -11.441709 -8.833051 -1.978326 3.440575 3.655359 1.818304 -8.485339 -0.149376 -2.647075 -2.875368 -5.147596 3.907164 9.929717 -9.852533 -2.239924 -0.761406 -0.481206 -5.338894 9.561005 5.986909 5.021406 11.772639 5.882129 -2.756920 4.126650 -8.280392 -0.682111 11.729253 3.819638 -11.128709 7.925493 -7.935837 -0.553723 4.934794 4.872173 7.891688 1.516938 -10.630445 -7.050779 5.244096 -0.884759 12.065287 2.554096 4.086564 -1.318223 14.372104 -3.276456 -9.356669 10.355340 5.970819 -9.313254 3.162411 2.608828 -5.452489 -0.560928 7.176381 -8.236095 0.277316 -5.792160 -2.736146 3.239844 -4.591860 -0.817472 1.737740 -11.603132 15.209232 0.815116 5.334420 3.078544 -8.879945 -12.427975 10.878651 -1.098704 -2.032986 -5.333942 -3.125665 -8.943371 -10.375770 2.137882 0.142171 -5.866328 -5.625196 -10.703428 3.670689 4.917236 -1.168100 8.016152 -9.488390 -5.504150 3.548614 1.461306 8.003529 -2.433591 -6.319928 -2.425369 -2.570202 8.095720 -6.674512 11.701533 14.246752 -2.996688 10.222299 -3.485682 -5.447593 0.991332 4.582793 -10.959023 10.536624 -2.615236 6.658029 -1.254340 6.950335 -7.204191 -2.904729 1.473586 -0.987585 -1.214549 3.897790 -4.138217 0.273699 -1.981335 -10.161986 -2.268458 1.008069 -3.351427 -1.168918 1.183893 2.326462 -9.014548 -2.012130 -6.251728 0.711341 7.835871 0.166674 -6.266829 3.054753 -2.553624 1.889762 2.967987 -0.127732 -0.680174 5.704200 -9.736207 -5.325503 -0.272068 -1.116776 -6.356504 -12.339421 -2.546842 -7.628328 -7.323733 8.317087 -9.000750 2.628776 -7.978738 -4.541776 -11.171469 -4.475296 3.533906 14.462615 5.499411 -8.714431 1.588104 -1.543324 10.207266 1.306831 2.343739 0.875117 3.604678 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -6.686573 5.267550 6.052265 -3.124472 10.825689 1.702171 4.196753 5.177900 -6.286428 8.775217 -10.226164 -2.098263 -3.642099 -8.307672 -0.542897 -5.347070 2.004978 -1.237704 -1.454062 3.542254 4.054260 -6.215489 -0.289982 -4.672145 -1.670726 -8.787704 -3.448222 0.492654 9.486754 -3.089169 0.857392 -0.135984 13.743817 1.443131 11.790017 8.309830 3.097918 9.231421 2.108008 -4.473790 -3.123285 8.560876 -6.416864 -7.188880 -1.048407 -7.002102 -5.483759 -3.927518 1.841268 -3.621127 -2.467909 7.628983 -1.883171 2.373221 -6.033560 5.387190 7.905728 -1.275481 13.309134 1.966115 -4.123638 -1.594631 -7.292569 6.086915 -3.040882 2.116786 -2.975040 -6.533035 3.185746 -1.991478 -1.913454 -5.504483 -2.495256 8.241316 3.632297 -7.900996 2.873904 -3.298473 -12.165782 -10.261019 -7.470492 2.150055 1.343274 8.320423 0.469123 0.002822 2.663374 3.299231 -0.525068 -13.605807 0.195527 10.017080 -7.311679 -3.399437 -3.625289 8.400995 -0.988643 5.504650 -6.851691 -4.099643 2.533176 -0.210262 1.430480 -10.021532 2.220055 -9.781831 1.920492 -0.473188 0.122390 4.714360 6.691858 4.537960 9.606378 9.432810 -10.689916 2.002638 -7.449148 2.848836 -1.706782 -0.607813 -0.473316 4.286017 -0.183351 2.795100 10.770057 -12.631305 2.703916 3.723247 -4.414085 -10.100608 -1.477175 -10.123720 -8.059643 -2.365338 4.163657 2.924455 2.381371 -7.149428 0.354604 -1.733104 -2.894839 -5.051397 2.559754 10.139802 -11.378325 -1.656689 -0.996632 -0.744721 -5.074827 8.700029 5.744344 5.286943 10.772326 5.768400 -3.414338 5.110832 -8.942537 -0.079758 12.918142 3.066383 -10.275115 8.158788 -8.262698 -0.506745 4.493302 5.076436 7.496998 -1.064245 -10.686602 -6.454754 6.389279 -0.698912 11.705691 2.386767 3.430531 -3.777298 13.080534 -1.559616 -8.505772 11.387673 5.615643 -10.186027 4.126077 3.809027 -6.864291 -0.865580 6.295843 -8.691907 -0.912943 -6.321807 -1.476614 3.079197 -4.816260 -0.330209 1.632498 -10.921252 13.179226 1.086647 3.882992 2.210227 -7.067105 -10.791955 12.222458 -0.614432 -1.275268 -5.254866 -4.007971 -8.365539 -10.747748 1.685135 -0.651720 -5.292989 -4.517382 -10.479063 2.695238 6.414745 -1.331739 7.195224 -10.254702 -3.739925 3.891298 2.639927 6.094110 -4.314398 -6.075728 -1.160250 -2.693831 5.840040 -6.595725 10.369699 13.160931 -3.188360 9.083888 -3.084506 -6.158586 1.824385 4.380003 -10.785651 10.596099 -2.839577 7.859761 -0.181926 6.720716 -7.357012 -2.581500 0.437526 -1.154359 -2.605923 3.639995 -5.112318 0.144164 -0.412976 -8.842073 -4.395391 1.114781 -2.071968 -0.220292 0.781123 0.796414 -8.642276 -1.458537 -6.812370 1.828005 7.292721 -0.489068 -6.012856 3.336858 -0.527078 1.664923 0.705550 0.212138 -0.065696 5.923226 -9.827846 -3.691809 -0.049309 0.467600 -6.187369 -12.834146 -0.153396 -8.461338 -6.802499 7.395380 -9.688329 1.709571 -7.533422 -3.401033 -12.096311 -3.516717 2.947694 14.148501 3.590329 -7.990248 1.838153 -1.592389 8.436521 0.854529 3.308293 0.395953 3.791674 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -0.533986 0.539422 0.385821 -0.347002 1.493260 0.249916 0.135140 1.158297 -0.494487 0.710451 -0.897929 0.207219 0.009432 -0.701574 0.123301 -0.187607 -0.021400 0.064694 -0.296235 -0.090477 0.320948 -0.072746 -0.035011 -0.398702 -0.124190 -0.987978 -0.253039 0.050471 0.611462 0.333029 -0.183384 0.031541 0.887298 -0.111537 0.688926 0.549146 0.780124 0.437867 -0.006220 0.157566 0.108740 0.434917 -0.456484 -0.650950 0.023136 -0.658056 -0.762858 -0.156996 0.202926 -0.831323 -0.063747 0.567308 -0.018958 0.054026 -0.084863 0.640414 0.412958 -0.383587 0.833026 0.353775 -0.864551 -0.669722 -0.603912 1.030165 -0.181836 0.589226 -0.211380 -0.914281 -0.270780 0.299313 -0.154959 -0.229621 -0.071101 0.459420 0.260743 -0.479908 0.400533 -0.218220 -0.183175 -0.476006 -0.333394 0.343931 -0.082972 0.690132 0.063699 -0.056874 0.059016 0.012158 0.006053 -0.926918 -0.223800 1.049122 -0.600081 0.006159 -1.015167 0.073090 0.136647 0.359213 -0.137110 -0.589304 0.297357 0.356376 0.058034 -0.907409 0.063101 -0.834161 0.239317 0.237133 0.163221 0.680082 -0.320658 0.234446 0.319742 0.666517 -0.543698 0.392864 -0.662114 0.434220 -0.351676 0.169847 -0.293206 0.034653 0.564529 0.397169 0.612494 -0.807427 0.503332 0.327257 -0.398757 -0.658861 0.067883 -0.680280 -0.694857 -0.015791 0.272390 0.180256 0.011786 -0.333419 0.249103 -0.218080 -0.585348 -0.670089 -0.154420 0.449930 -1.204812 -0.118956 -0.049057 0.091944 -0.421506 0.716419 0.535605 0.371172 0.911543 0.431021 -0.092960 0.549287 -0.782050 0.297703 1.238887 0.475530 -0.727662 0.540322 -0.807052 0.070823 0.334166 0.180062 0.180338 0.700549 -0.681722 -0.265248 0.161691 -0.108314 0.991680 0.771307 0.331504 -0.785982 0.629054 -0.779611 -0.461401 0.948896 0.847757 -1.077480 0.393891 0.501909 -0.489750 -0.003308 0.350126 -0.826110 -0.337207 -0.455249 -0.036469 0.457431 -0.594841 -0.375030 0.287310 -0.769983 1.024398 0.127383 0.365730 0.055150 -0.499621 -0.491105 1.048486 0.173559 -0.131324 -0.259252 -0.198615 -0.882343 -0.765130 0.064710 0.360172 -0.487793 -0.422174 -0.722574 -0.144283 0.684527 -0.314944 0.459624 -1.183552 -0.032949 0.328134 -0.055125 0.482602 -0.790674 -0.439815 -0.561245 -0.358090 0.451684 -0.745813 0.546118 0.886870 -0.297205 1.087377 -0.052784 -0.625542 -0.145855 0.425800 -0.505750 0.814506 0.034893 0.550954 0.167949 0.682524 -0.664487 -0.106088 -0.286821 -0.398759 -0.242368 0.696738 -0.627925 0.001391 0.291652 -0.753157 -0.461662 0.315859 0.096159 0.250302 -0.104371 -0.093858 -0.655954 -0.185048 -0.619835 0.130189 0.568310 -0.523321 -0.733221 0.095017 0.115095 -0.496993 -0.494801 0.204772 0.163530 0.676255 -0.711756 0.066125 0.261341 0.073087 -1.156901 -0.827521 -0.146734 -0.516984 -0.754344 0.215058 -0.991242 -0.279637 -0.542079 -0.063083 -1.159164 -0.689341 0.327883 1.113454 0.030299 -0.335719 0.378861 0.037365 0.559384 0.098425 0.374483 0.130326 0.236260 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -1.157277 0.525638 0.281673 -0.580338 2.251487 -0.049283 0.473313 0.873427 -0.322697 1.206148 -1.752044 -0.635485 -0.506718 -1.428233 0.120101 -0.372696 0.493585 0.187650 -0.553180 0.083281 0.671525 -0.503582 0.086810 -0.809726 -0.155102 -1.382906 -0.664035 0.200538 1.171075 -0.377158 -0.404529 0.202397 2.187883 0.011969 1.690649 1.149542 0.810464 1.393814 0.139315 -0.574453 0.164082 1.208608 -0.852392 -1.369231 -0.037546 -1.105151 -1.189693 -0.650172 0.617916 -0.786717 0.035464 1.128376 -0.077145 0.192027 -0.906201 0.822744 1.315077 -0.009201 1.968194 0.517893 -0.928006 -0.059206 -1.025821 1.289469 -0.755613 0.653259 -0.618723 -1.499537 -0.332841 0.371289 -0.056497 -0.989200 -0.795113 0.751767 0.601396 -1.049622 0.763348 -0.214063 -0.199808 -1.718767 -1.268305 0.431774 -0.276791 1.385470 -0.083263 -0.072248 0.120557 0.106721 0.171616 -1.762126 -0.306347 1.398141 -1.130557 -0.141986 -0.394498 0.759079 0.043512 0.470876 -0.866981 -1.136056 0.319906 -0.061930 0.200703 -0.723593 0.688866 -1.076660 0.333492 0.241790 0.219023 0.946981 0.795712 0.592418 1.020527 1.139311 -1.179806 0.021657 -1.412924 0.616752 -0.620457 -0.045177 -0.213947 0.508104 0.633218 0.402857 1.378363 -1.868624 0.909985 0.664173 -0.591473 -1.121558 0.069773 -1.123640 -1.383221 -0.194775 0.774622 0.321757 0.192499 -0.734226 0.372340 -0.330367 -0.656961 -0.110814 -0.117781 1.097278 -1.740015 -0.189317 -0.159320 -0.295037 -0.627648 1.168688 0.766061 0.709662 1.794922 0.937450 -0.841974 0.588446 -1.640909 0.467881 2.285446 0.046062 -1.481859 1.064685 -1.254363 0.155457 0.908487 0.784460 0.786920 0.086099 -0.964489 -0.324970 0.426981 -0.156140 1.870743 0.354944 0.687775 -1.206235 1.351602 -0.436264 -0.680167 2.161829 0.913415 -2.018841 0.749293 1.046230 -1.026342 -0.166565 0.742747 -1.269039 -0.435502 -1.319436 0.262234 0.746248 -1.110156 -0.410704 0.352641 -1.577739 1.798277 0.132905 -0.006534 0.468787 -1.234503 -0.901870 2.309558 0.148171 0.008424 -0.586498 -0.746064 -0.874731 -1.884492 0.186387 0.028356 -0.870695 -0.424584 -1.444329 0.155075 1.464070 -0.431379 0.978371 -1.819797 0.029822 0.685477 0.335052 0.729378 -0.746120 -0.911876 -0.140995 -0.596921 0.592847 -1.294722 0.973890 1.634591 -0.832506 1.265118 -0.106168 -0.951025 0.223939 0.755099 -1.279635 1.668480 -0.205664 1.288433 0.120546 1.193525 -1.111475 -0.310399 -0.234933 -0.349910 -0.778685 0.937844 -1.259345 -0.037683 0.565504 -1.046249 -1.119797 0.470989 0.182780 0.410590 -0.031744 -0.222545 -1.303596 0.006742 -0.708296 0.442428 1.104546 -0.210567 -1.338811 0.339355 0.441334 -0.413405 -0.471146 0.216468 0.028536 1.352861 -1.461769 -0.113467 0.306638 0.429422 -1.308333 -1.881238 0.040369 -1.156689 -0.826896 1.136793 -1.763772 -0.384265 -1.042165 0.005265 -1.587628 -0.482600 0.504873 2.098193 0.564268 -0.973546 0.601423 -0.008905 0.982923 -0.007336 0.278259 0.182478 0.612017 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.833460 0.351847 0.591486 -0.490618 2.008897 -0.220761 0.228518 1.325923 0.592310 0.535579 -1.517988 -0.626879 -0.325697 -0.842156 0.320717 -0.446668 0.264874 0.683483 -0.849567 -0.550985 0.690404 0.649398 -0.157178 -0.825891 0.029468 -0.538643 -0.808244 -0.022156 -0.290751 0.527398 -0.509287 0.616052 1.558161 0.221176 1.188150 0.941476 1.132086 1.381589 -0.337251 1.610570 0.739098 0.732761 -0.423775 -1.521105 0.520576 -1.008148 -0.875095 -0.608193 0.267639 -1.343909 1.515364 0.708414 0.278166 0.119922 -0.128427 0.307167 0.450871 0.363293 0.962884 0.961209 -1.665671 0.411935 -0.870108 0.959058 -0.578973 1.763412 0.075039 -1.814237 -1.082015 0.723493 1.284499 -1.166864 -1.157951 -0.051017 -0.035919 -0.236071 0.833309 0.097500 0.785388 -0.221763 -1.054757 0.474983 -0.294059 0.858799 -0.221095 -0.400876 -0.837108 -0.414019 0.436031 -0.772563 -0.790391 1.384654 -0.829693 0.894904 -1.592034 -0.837882 -0.049090 0.318269 -0.292470 -1.090586 0.524414 0.473221 0.034776 0.444519 -0.764735 -0.620813 1.038466 1.026633 -0.272409 0.423069 -0.192586 0.388170 0.336801 0.321056 -0.190401 0.894546 -1.218704 0.864446 -0.544045 0.037431 -0.154424 -0.050616 0.568521 0.078478 0.406956 -0.762275 1.001469 0.510325 -1.062444 -0.318028 0.464588 -0.672072 -1.319185 -0.223756 0.778530 0.656778 -0.156468 -0.093530 0.102043 -0.684517 -0.347360 -1.062088 -0.795863 -0.111725 -0.771266 -0.372245 -0.276992 -0.395959 -0.669225 0.834983 0.324127 0.367046 1.166674 0.625598 -0.452329 -0.846055 -1.260403 0.466844 1.701195 0.321944 -1.112610 0.405631 -0.457000 0.593479 0.743839 0.217594 -0.165673 0.870654 -0.062825 0.224505 -1.033373 -0.455398 1.305290 1.561093 0.672780 -1.376130 0.054143 -1.127208 -0.395987 1.874332 1.275932 -1.497046 -0.402863 1.071867 -0.220882 -0.694919 0.282419 -0.741991 -0.659672 -0.713573 0.349372 0.482282 -1.246203 -0.757920 0.863127 -1.158407 1.075202 0.205827 0.178444 -0.201489 -1.461224 -0.704251 2.177684 0.152652 -0.060049 0.096750 -0.380593 0.045325 -1.379761 0.215066 0.827141 -0.227651 -0.662418 -0.671236 0.287656 1.412952 -0.948512 0.380964 0.051201 -0.281537 0.443567 -1.054251 0.725163 -1.830275 -0.817768 -0.770584 -0.311678 0.810533 -0.676686 -0.161318 1.313874 -0.533893 0.985771 1.601144 -0.588114 -0.696382 0.971139 -0.283465 1.019719 -0.388543 0.369303 0.144690 1.057696 -0.888557 -0.489169 -0.378698 0.298251 -0.753487 1.350259 -1.013758 0.228053 0.324086 -1.103491 -0.298096 0.911001 0.454752 0.341633 -0.323705 -0.086458 -0.913107 0.011659 -0.496733 0.223730 0.985483 -0.494981 -1.398767 -0.149297 0.256614 -1.544689 -0.667246 0.459602 0.009893 1.496435 -0.883758 0.354389 0.657422 -0.201757 -1.771088 -0.821085 -0.331566 -1.046255 -0.779982 0.120554 -1.022504 -0.956790 -0.597841 0.579812 -0.886447 -0.812037 0.219908 1.214690 0.700821 -0.141348 0.644423 0.376427 0.839616 0.251365 -0.161153 0.234826 0.832488 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -5.667402 2.738973 3.340263 -1.854597 7.565223 0.645029 2.057684 2.410196 -2.453528 5.859691 -7.662610 -3.640990 -4.094030 -5.133080 -0.351654 -3.650794 2.478435 -0.563703 -1.887869 2.097618 3.501472 -3.991871 0.036178 -3.498033 -0.632319 -5.699875 -3.427945 0.377594 7.046904 -2.814622 -1.519316 0.494841 10.883020 1.021239 8.636541 5.925434 2.426287 7.628079 0.746447 -3.912532 -1.938593 7.251304 -5.055872 -5.039209 -0.055733 -6.015259 -3.547896 -2.567322 2.919873 -0.919595 -0.701113 5.587848 -1.197378 2.151806 -4.830965 3.320404 5.836068 1.610944 10.365538 1.589880 -2.201837 0.127008 -5.233887 3.279613 -3.151208 2.075692 -3.437489 -4.814530 1.035622 -1.616630 0.287064 -6.014413 -3.082561 5.335007 2.044445 -5.458371 3.624310 -1.350671 -4.667163 -9.595942 -7.243207 1.037152 -0.097575 6.479287 -1.058427 -0.283249 -0.542894 2.026670 0.126774 -9.571116 -0.008804 6.169387 -5.269544 -1.088180 -0.596864 5.599893 -0.868181 3.844759 -5.564651 -3.372628 1.510806 -0.854558 1.157406 -5.305387 4.250379 -5.348836 1.650428 -0.835694 0.619020 3.035348 5.401552 3.772216 7.246003 6.809640 -6.638480 -0.283202 -6.132740 1.846851 -2.067463 -0.651474 0.465100 4.024290 -0.207759 1.011481 7.715262 -9.622888 2.350860 2.650105 -3.136781 -6.888745 -0.288940 -7.139549 -6.633451 -1.972219 3.868603 2.108392 1.030951 -5.445692 0.958670 -1.802085 -1.588964 -0.628037 1.212308 6.739828 -7.159844 -1.407100 -1.056304 -1.873836 -3.030277 5.782981 3.453939 3.926013 8.362695 4.770982 -4.116619 2.295648 -7.203710 0.305622 8.826440 1.151058 -7.686221 5.390991 -4.993807 0.109493 4.709957 4.374002 5.672933 -0.950716 -5.372777 -3.259826 2.830938 -0.180121 8.915546 0.274954 3.486246 -2.388515 8.324960 -1.784007 -5.463199 8.632377 3.214053 -7.470640 2.243396 2.855506 -3.731390 -0.700979 4.267333 -5.644450 -0.372351 -5.763127 -0.039892 3.106992 -4.376875 -0.583610 1.765414 -8.127332 9.461315 0.344990 1.711281 3.078652 -6.921614 -6.526437 9.441031 -0.619541 -0.472275 -3.723452 -3.565116 -3.922108 -8.450876 1.538847 -1.358718 -3.635983 -2.854975 -7.550808 2.063028 5.149844 -0.654477 5.156488 -7.763718 -2.001365 2.903049 0.955302 4.676752 -1.681267 -4.746983 -0.124926 -2.262943 4.450057 -5.188249 6.719385 9.250092 -3.555655 4.872229 -1.791311 -3.029037 1.565126 3.156460 -7.819561 7.656065 -1.684709 6.331896 -0.592803 5.108497 -5.345136 -2.218832 0.650927 0.088073 -2.624128 3.278076 -3.907622 0.136269 0.412821 -5.792558 -3.438709 0.784548 -1.246939 -0.354983 0.814168 0.575633 -6.591612 -0.276857 -3.413306 1.502763 5.790955 0.698459 -4.965771 2.297279 -0.401438 0.615263 1.177780 0.213381 -0.808119 5.248002 -7.094857 -3.315383 0.248929 0.866834 -3.490073 -9.836413 -0.757353 -5.394823 -4.109839 7.369787 -7.308739 0.584607 -5.464627 -1.735497 -7.047791 -1.525272 2.353603 10.039424 4.185163 -6.061196 1.826798 -0.590981 6.198761 -0.070016 0.946278 0.364241 3.028969 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.400688 -0.007640 -0.257572 -0.209787 0.975826 -0.018820 -0.110948 0.692602 0.127562 0.431546 -0.527088 -0.160221 -0.117057 -0.435641 0.098671 0.294552 0.101602 0.245814 -0.383532 -0.259523 0.311880 0.128198 0.069426 -0.256213 -0.043927 -0.239780 -0.217477 0.073417 0.199630 0.012906 -0.543227 0.083876 0.653312 -0.082963 0.437539 0.288657 0.583180 0.491538 -0.027221 0.202524 0.214720 0.386977 -0.263898 -0.570526 0.213444 -0.496519 -0.397578 -0.145800 0.288556 -0.438794 0.647811 0.338878 0.047416 -0.019072 -0.105434 0.275008 0.223255 -0.007535 0.602251 0.276166 -0.582186 -0.127616 -0.382060 0.737907 -0.329881 0.614539 -0.067978 -0.732097 -0.492280 0.240754 0.348871 -0.501901 -0.410497 0.130875 0.041314 -0.227760 0.360482 -0.043524 0.796214 -0.391225 -0.516872 0.143918 -0.358710 0.406891 -0.129691 -0.066811 -0.295789 -0.059424 0.103003 -0.484904 -0.211716 0.456777 -0.433548 0.401199 -0.485749 -0.235821 -0.120423 0.117620 -0.215952 -0.358543 0.115798 0.235398 0.103474 -0.043999 0.265203 -0.204592 0.367024 0.226076 0.133030 0.180232 0.154793 0.018838 0.110802 0.315506 0.051554 0.048913 -0.526105 0.230349 -0.126839 0.158664 -0.159439 0.131083 0.494240 -0.038804 0.367935 -0.509696 0.417976 0.091317 -0.325451 -0.228569 0.178438 -0.257325 -0.497009 -0.038574 0.343461 0.066637 -0.139330 -0.156177 0.265352 -0.132018 -0.643308 -0.166894 -0.245086 -0.024767 -0.540416 -0.085470 -0.134883 -0.212388 -0.135446 0.369569 0.227749 0.243260 0.584713 0.367382 -0.181274 -0.050640 -0.601174 0.329257 0.765395 0.071868 -0.543117 0.229607 -0.457741 0.228521 0.390724 0.194247 0.101361 0.391717 0.090487 0.220262 -0.089714 0.013949 0.656972 0.316731 0.392829 -0.504656 -0.062201 -0.321103 -0.044347 0.867617 0.415760 -0.795604 0.158267 0.348652 0.033889 0.000000 0.097659 -0.322138 -0.221291 -0.427425 0.208939 0.388411 -0.520566 -0.319264 0.270700 -0.489655 0.608615 -0.011857 -0.056042 0.177667 -0.673826 0.218701 0.802766 0.144426 -0.068863 -0.124182 -0.252253 -0.277595 -0.613838 0.120167 0.209316 -0.186785 -0.241536 -0.424009 -0.044095 0.689040 -0.157039 0.160172 -0.574981 0.083490 0.231385 -0.241513 0.332429 -0.545246 -0.265885 -0.240257 -0.181683 0.353066 -0.464808 -0.025022 0.535961 -0.383722 0.424390 0.484250 -0.048191 -0.174829 0.352181 -0.235749 0.526127 -0.018347 0.159316 -0.029124 0.423532 -0.347382 -0.007963 -0.221679 0.196484 -0.198763 0.433650 -0.418901 -0.042491 0.200159 -0.477452 -0.276989 0.249194 0.201465 0.273792 -0.001800 -0.278062 -0.331432 -0.077965 -0.256284 0.073833 0.431632 -0.247528 -0.562235 0.029749 0.033749 -0.511119 -0.174886 0.173501 0.050700 0.642545 -0.459755 0.071449 0.236147 0.072640 -0.682298 -0.367494 -0.279405 -0.146483 -0.216292 0.333128 -0.576418 -0.396204 -0.292679 0.201782 -0.500974 -0.138020 -0.006763 0.600045 0.278389 -0.099661 0.395529 0.137381 0.372366 0.084354 -0.060967 0.138729 0.244695 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -3.357164 2.159124 1.875851 -1.495197 5.792060 0.588778 1.458150 2.642367 -2.547940 3.686790 -4.836675 -1.130233 -1.714801 -3.948684 -0.071857 -1.539939 0.996217 -0.010073 -1.141663 0.879633 2.015150 -2.205877 0.173713 -2.158735 -0.586581 -3.427178 -1.751694 0.310881 4.065679 -1.173863 -0.602911 0.099084 6.020461 0.336930 5.206402 3.396276 1.677411 4.178492 0.487727 -1.921052 -0.740476 3.787831 -2.827271 -3.890603 0.008941 -3.513219 -2.749129 -1.918775 1.585936 -1.979685 -0.379252 3.381345 -0.605861 0.809825 -2.526983 2.287332 3.642523 -0.229042 6.005087 1.127477 -2.597826 -0.628637 -3.171603 2.783309 -1.593818 1.733834 -1.387010 -3.532228 0.264389 -0.162412 -0.403274 -2.946863 -1.562041 3.109721 1.519820 -3.249422 1.834346 -1.075477 -3.181331 -5.030945 -3.671593 0.973487 -0.103642 3.947009 -0.218937 -0.077090 0.566840 0.943875 0.050135 -5.787628 -0.304292 4.492829 -3.075231 -0.579735 -1.579181 2.921514 -0.630710 2.075838 -3.001823 -2.214041 1.097245 0.271090 0.675678 -3.783638 1.677655 -3.898632 1.264288 0.004381 0.296195 2.121647 2.818389 1.718957 3.659307 4.091511 -4.008748 0.827240 -3.917897 1.400009 -1.243065 -0.020877 -0.339807 1.766660 0.777761 0.694634 4.422218 -5.657029 1.962004 1.732700 -1.884761 -4.471966 -0.095360 -4.087964 -3.853715 -0.741286 2.082532 1.020882 0.570772 -2.845575 0.472051 -1.019980 -2.210450 -1.451825 0.441156 4.096693 -5.049789 -0.645492 -0.517620 -0.726761 -1.993567 3.648435 2.432959 2.311960 5.213907 2.822736 -1.923984 1.846111 -4.331399 0.662804 6.085721 0.977520 -4.597652 3.253216 -3.462854 0.190136 2.453017 2.121508 3.033273 0.230908 -3.713032 -1.875526 2.338087 -0.262135 5.342982 1.218918 2.187482 -2.276521 4.976265 -0.932898 -2.914124 5.574975 2.407537 -5.301717 2.276671 2.165055 -2.382268 -0.187349 2.539764 -3.757947 -0.903057 -3.089330 -0.063515 1.838313 -2.949954 -0.965322 0.852410 -4.827188 5.942630 0.354665 1.172166 1.334477 -3.737692 -3.384535 5.784551 0.171426 -0.468161 -2.008451 -1.937511 -3.453867 -4.952675 0.809622 0.220805 -2.446012 -1.960891 -4.462624 0.774373 3.337846 -0.708712 3.107008 -4.704992 -0.896782 1.832331 0.882278 2.753386 -2.231800 -2.699655 -0.624470 -1.437542 2.666441 -3.149292 3.927887 5.408555 -2.079483 4.121131 -0.451370 -2.200299 0.728192 2.058580 -4.172812 4.718177 -0.770669 3.956999 -0.091753 3.348927 -3.158367 -0.941438 -0.111472 -0.421697 -1.386624 2.424573 -2.789951 -0.096517 0.502232 -3.784405 -2.448703 0.830912 -0.339972 0.608857 0.217111 -0.061933 -3.715156 -0.438800 -2.687504 0.901727 3.400882 -0.772945 -3.539030 1.089758 0.157122 -0.228480 0.071334 0.479424 0.053321 3.315706 -4.322699 -1.134040 0.287594 0.488248 -3.375229 -5.334325 -0.245520 -3.397688 -2.772474 3.694331 -4.743238 -0.004643 -3.248379 -0.841196 -5.147142 -1.340874 1.115280 6.264255 1.823873 -2.904167 1.453257 -0.244336 3.510321 0.206845 1.041767 0.383592 1.967060 +PE-benchmarks/cutting-a-rod.cpp__main = -0.577383 0.018239 -0.024994 -0.261690 1.357535 0.034887 -0.078846 0.955169 0.391539 0.508747 -0.818390 -0.523168 -0.236594 -0.505546 0.158336 0.100428 0.088492 0.365881 -0.635806 -0.431041 0.498439 0.376722 -0.002629 -0.393759 -0.015157 -0.133972 -0.529677 0.035899 0.078369 0.158322 -0.673068 0.200656 0.940914 0.017352 0.757492 0.480442 0.856098 0.795858 -0.307406 0.856517 0.288510 0.589035 -0.419035 -0.897719 0.395916 -0.786270 -0.574185 -0.275314 0.315098 -0.698385 1.149328 0.503582 0.089385 0.082280 0.052218 0.261895 0.162030 0.212503 0.782770 0.524193 -1.017184 0.127222 -0.674589 0.828233 -0.350826 1.255648 -0.055241 -1.219909 -0.834228 0.250152 0.801870 -0.873932 -0.724840 0.214120 0.003047 -0.195361 0.591377 -0.044476 1.017080 -0.366088 -0.843646 0.235893 -0.405640 0.562576 -0.216140 -0.200998 -0.526505 -0.137744 0.128943 -0.701355 -0.346770 0.799582 -0.653465 0.713119 -0.952395 -0.668732 -0.300699 0.358233 -0.340099 -0.528837 0.275141 0.437588 0.100245 0.198399 0.015795 -0.344829 0.683820 0.523926 0.063302 0.100656 0.189672 0.037103 0.257781 0.462464 0.005036 0.354585 -0.633238 0.439212 -0.307112 0.232185 -0.163830 0.185053 0.556387 -0.083807 0.458676 -0.614141 0.527482 0.161382 -0.707861 -0.295144 0.273078 -0.564303 -0.853577 -0.112729 0.518747 0.260009 -0.245083 -0.258150 0.222166 -0.340377 -0.665813 -0.417149 -0.423810 -0.287703 -0.560460 -0.235022 -0.225224 -0.349517 -0.334231 0.652504 0.341860 0.385035 0.830813 0.512208 -0.267945 -0.536617 -0.836595 0.398693 1.076633 0.059880 -0.833651 0.289641 -0.531841 0.436626 0.578170 0.216553 0.055724 0.659048 0.201865 0.370653 -0.484188 -0.015388 0.962266 0.824667 0.588847 -0.718663 -0.185852 -0.704711 -0.271123 1.264766 0.745280 -1.071238 -0.135608 0.442870 0.094589 -0.189907 0.184013 -0.472795 -0.346783 -0.571177 0.249354 0.463734 -0.783418 -0.477619 0.638853 -0.790080 0.883567 0.034004 0.088394 0.133722 -1.113771 -0.051300 1.298481 0.166049 -0.160027 -0.094756 -0.272334 -0.101939 -0.802385 0.229796 0.436346 -0.125516 -0.501878 -0.561664 0.134569 0.995375 -0.316317 0.291829 -0.241735 -0.078197 0.274684 -0.767600 0.645864 -1.030561 -0.473715 -0.575075 -0.272727 0.634943 -0.541787 -0.173273 0.898062 -0.481016 0.601487 1.003565 -0.190672 -0.518395 0.552013 -0.254187 0.716337 -0.119946 0.101743 -0.091307 0.684198 -0.525577 -0.140047 -0.247488 0.402109 -0.285624 0.810612 -0.488440 0.049865 0.148069 -0.861671 -0.208488 0.413249 0.196525 0.244092 -0.050006 -0.297706 -0.634797 -0.075064 -0.297628 0.080509 0.711422 -0.345541 -0.854981 -0.025675 -0.113492 -0.860321 -0.281066 0.303663 -0.028143 1.012421 -0.638135 0.023279 0.408689 -0.060698 -1.063714 -0.415727 -0.548909 -0.423104 -0.350756 0.353888 -0.623228 -0.524896 -0.459042 0.237793 -0.515683 -0.410692 0.038265 0.864492 0.591366 -0.171521 0.521489 0.269395 0.670926 0.205750 -0.212709 0.245386 0.451425 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.803127 0.115305 -0.058212 -0.166530 1.046798 -0.441934 0.325487 0.307973 -0.076826 0.730885 -0.916245 -0.731210 -0.589654 -1.050351 0.103198 -0.124029 0.644034 0.265973 -0.168590 0.207711 0.538354 -0.536432 -0.037446 -0.443205 -0.029111 -0.777907 -0.317783 0.142330 0.886792 -0.706973 -0.332129 0.366727 1.708039 0.188900 1.437855 0.926147 0.277417 1.052613 0.390369 -0.879774 -0.207216 1.012960 -0.584907 -0.927360 -0.039068 -0.542361 -0.459428 -0.461437 0.486538 0.049182 0.053063 0.774175 -0.149686 0.395734 -0.891172 0.280036 0.882638 0.341530 1.414534 0.302425 -0.195111 0.281836 -0.561159 0.681209 -0.648604 -0.073062 -0.485300 -0.745909 0.138423 -0.050266 -0.069598 -0.777388 -0.482009 0.608162 0.366312 -0.773633 0.546459 0.032919 -0.142527 -1.451276 -1.269466 0.142728 -0.252990 1.007778 -0.173773 -0.037796 -0.017540 0.157470 0.122372 -1.237156 0.043095 0.567923 -0.840665 -0.192753 0.429544 0.903480 0.046026 0.380802 -0.672620 -0.760029 0.173476 -0.493974 0.230499 -0.055432 0.806288 -0.338503 0.099378 -0.283376 0.193340 0.687702 1.192124 0.478995 0.920623 0.795228 -0.718028 -0.428870 -0.975686 0.454594 -0.393415 -0.147779 0.115602 0.555946 0.325883 0.032999 1.017157 -1.426345 0.330041 0.487089 -0.009933 -0.739866 0.022368 -0.825763 -0.878011 -0.429820 0.777951 0.194765 0.127701 -0.624311 0.242744 -0.016327 -0.324708 0.332326 -0.070655 0.898586 -1.057553 -0.121306 -0.236570 -0.445573 -0.337650 0.592368 0.352632 0.664268 1.099986 0.741523 -0.879763 0.258046 -1.180541 0.120930 1.359845 -0.339476 -0.977330 0.775305 -0.735800 -0.031040 0.703466 0.798112 0.852504 -0.522620 -0.481507 -0.192424 0.483055 0.066278 1.220086 -0.367028 0.439652 -0.451349 0.950930 0.297905 -0.677296 1.568012 0.104110 -1.260301 0.573950 0.539076 -0.705705 -0.100042 0.505869 -0.793470 -0.056513 -1.129834 0.317783 0.525395 -0.809709 0.067758 0.279392 -1.078253 1.038827 0.021232 -0.113326 0.533193 -0.969701 -0.439277 1.656322 0.094538 0.118949 -0.608434 -0.750554 -0.399692 -1.269437 0.195566 -0.453926 -0.402662 -0.102329 -1.010764 0.118747 1.068632 -0.014332 0.694640 -1.205149 0.089005 0.469544 0.401892 0.306455 -0.156029 -0.664861 0.382480 -0.318963 0.312228 -0.718692 0.711836 1.114584 -0.668271 0.408985 -0.034996 -0.415480 0.453017 0.376501 -1.180997 1.089527 -0.259456 0.799509 0.065243 0.660391 -0.813920 -0.334387 0.023189 0.058793 -0.638133 0.313731 -0.627449 0.003931 0.312893 -0.594275 -0.782819 0.044323 0.010516 0.267550 0.120238 -0.224594 -0.899486 0.159188 -0.401404 0.413749 0.811523 0.279871 -0.681602 0.449431 0.199510 0.103317 -0.064640 0.061827 -0.146642 0.850479 -1.028585 -0.336838 0.103012 0.496912 -0.261072 -1.465718 0.131774 -0.732828 -0.291115 1.037609 -1.167113 -0.022558 -0.681080 -0.038993 -1.024346 0.161304 0.191510 1.379422 0.464603 -0.793438 0.352002 -0.065901 0.600117 -0.034698 0.072066 -0.025242 0.568275 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.719931 1.390096 1.498134 -0.585329 1.883599 0.221333 0.949409 0.885117 -0.848799 1.790488 -2.426046 -1.229415 -1.061156 -1.809582 -0.269847 -2.087634 0.331801 -0.081107 -0.432791 0.609383 1.036356 -1.165687 -0.285602 -1.072183 -0.263572 -1.823221 -1.095901 -0.020064 2.124795 -0.930510 0.383977 0.011284 3.477556 0.400316 3.311772 2.055717 0.543284 2.174813 0.185273 -0.089596 -0.921279 2.248106 -1.613649 -1.667664 -0.513011 -1.621927 -0.850334 -0.624356 0.631944 -0.423023 -0.137495 1.574461 -0.466186 0.949000 -1.135394 0.941534 1.323913 0.523386 3.115617 0.400151 -1.157936 0.257203 -1.840375 1.678528 -0.805622 0.787054 -0.733986 -1.338135 0.796523 -0.923951 -0.555424 -1.311642 -0.585008 2.089233 0.784441 -1.724910 0.815279 -0.728972 -3.192773 -1.947888 -1.855518 0.457463 0.544297 1.802181 -0.207686 -0.104550 0.343835 0.858191 -0.245773 -3.153990 0.090021 2.547967 -1.784725 -0.554317 -0.620736 1.693972 -0.351475 1.662651 -1.365065 -0.793250 0.593889 -0.068856 0.277489 -2.041411 0.323945 -2.097087 0.574500 -0.255111 -0.388463 1.156987 1.603735 1.415211 2.494510 2.416454 -2.256170 0.370135 -1.875527 0.822294 -0.885298 -0.160672 0.400160 1.082927 -0.512116 0.533543 2.461514 -2.767184 0.404610 0.804693 -0.871977 -2.542574 -0.385935 -2.698647 -2.102544 -0.748091 0.912372 1.071787 0.353281 -2.011482 -0.216501 -0.399718 -0.303971 -1.221080 0.777890 1.613968 -1.868367 -0.614419 -0.217587 -0.123778 -1.380689 2.152415 1.221314 1.183784 2.567528 1.355024 -0.784232 0.484265 -1.957419 -0.415248 2.545277 0.117762 -2.416858 1.810017 -1.814916 -0.281252 1.220539 1.302997 1.729616 0.175717 -2.229223 -1.389533 0.978160 -0.227471 2.662487 0.522068 0.562389 -0.312364 3.184013 -0.357364 -2.470063 2.862504 1.114693 -2.343294 0.658548 0.434743 -1.463419 -0.453484 1.654071 -1.922577 0.010454 -1.574477 -0.393432 0.613525 -1.068922 0.109291 0.808475 -2.646439 3.181560 0.109729 0.854911 0.605393 -2.226083 -3.081546 3.021434 -0.051353 -0.332235 -1.189311 -0.756291 -1.482159 -2.328257 0.453707 -0.128637 -1.065386 -1.095780 -2.260578 1.085794 1.302082 -0.326412 2.094401 -1.516601 -1.402518 0.774193 0.325433 1.483269 -0.776589 -1.508404 -0.559852 -0.382059 1.692157 -1.343093 2.418629 3.353989 -0.621421 2.181695 -0.324360 -1.880308 0.132196 1.022114 -2.694550 2.334318 -0.804988 0.842072 -0.171368 1.407533 -1.774045 -1.024889 0.373817 -0.073353 -0.575733 0.741753 -0.758332 0.259945 -0.640222 -2.419862 -0.312614 0.196773 -0.767480 -0.145234 0.305461 0.507700 -2.345272 -0.230295 -1.420388 0.128913 1.837236 0.413357 -1.546204 0.928681 -0.667147 0.327202 0.435338 -0.188001 -0.265307 1.290891 -2.137953 -1.306462 0.111726 -0.178969 -1.274106 -2.902955 -0.467202 -2.143110 -1.543674 1.387444 -1.730393 0.588526 -1.746001 -1.033517 -2.523161 -1.151748 0.959541 3.306529 1.416644 -1.955956 0.315173 -0.386473 2.403351 0.511361 0.438957 0.216592 1.144151 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.466176 -0.022080 -0.111344 -0.283752 1.305233 -0.104837 -0.064580 0.909912 0.324947 0.480636 -0.681330 -0.207053 -0.077418 -0.372235 0.139820 0.179422 0.092122 0.375350 -0.569914 -0.414136 0.326449 0.465217 0.030957 -0.290977 -0.104695 -0.243435 -0.389255 0.126150 -0.000132 0.022110 -0.611627 0.202496 0.860719 -0.169916 0.624836 0.404962 0.825237 0.579703 -0.145390 0.562913 0.493650 0.345230 -0.284388 -0.648529 0.184743 -0.540396 -0.616071 -0.167030 0.309493 -0.622006 0.958849 0.370890 0.126280 0.018003 0.016575 0.422193 0.075463 -0.038687 0.645414 0.393269 -0.980677 0.096048 -0.511815 1.080497 -0.385014 0.977212 -0.211748 -1.060164 -0.767435 0.435905 0.659836 -0.757086 -0.622744 0.078967 0.000109 -0.223308 0.444897 -0.014629 1.203016 -0.354995 -0.578976 0.295537 -0.362138 0.375781 -0.130293 -0.100969 -0.508182 -0.113769 0.092673 -0.518972 -0.329866 0.691768 -0.618707 0.562639 -0.860512 -0.612300 -0.137937 0.116502 -0.154508 -0.611182 0.188687 0.259954 0.079863 0.084021 0.262340 -0.177154 0.393357 0.485718 0.115855 0.202946 -0.109828 0.118353 0.200367 0.298488 0.219897 0.180225 -0.680435 0.418781 -0.305037 0.112595 -0.223219 0.096948 0.589422 0.119261 0.404074 -0.514391 0.535104 0.043135 -0.553832 -0.170027 0.210088 -0.233197 -0.647833 -0.060918 0.400096 0.182667 -0.166372 -0.130551 0.310813 -0.221161 -0.569131 -0.370408 -0.329486 -0.321175 -0.518697 -0.127712 -0.118075 -0.185041 -0.237806 0.552988 0.341876 0.284425 0.732277 0.397891 -0.146942 -0.336244 -0.821926 0.344388 0.821674 0.003688 -0.627027 0.335236 -0.573850 0.260048 0.458003 0.294248 -0.087895 0.544109 0.157701 0.277003 -0.354883 0.004902 0.815700 0.538246 0.352161 -0.641594 -0.276410 -0.666594 -0.052036 1.083464 0.644560 -1.002853 -0.040735 0.498891 0.214473 -0.240518 0.198923 -0.518573 -0.445431 -0.430139 0.246683 0.454549 -0.600219 -0.341590 0.559463 -0.562238 0.665416 -0.026838 -0.265967 0.096391 -0.858539 0.057679 1.078779 0.162808 -0.009256 -0.012773 -0.291597 -0.021642 -0.777130 0.083842 0.429339 -0.108790 -0.288385 -0.444205 0.053313 0.814735 -0.316418 0.278577 -0.435625 0.006268 0.311851 -0.509119 0.387829 -0.845103 -0.280508 -0.456766 -0.228704 0.357928 -0.633080 -0.157046 0.645990 -0.390639 0.568817 0.795257 -0.328626 -0.420795 0.435547 -0.251839 0.663457 0.002877 0.010393 0.058194 0.471220 -0.447787 -0.091307 -0.332023 0.293483 -0.363858 0.592517 -0.541703 -0.015964 0.113383 -0.602977 -0.267757 0.353513 0.348224 0.157591 -0.052497 -0.295340 -0.443299 -0.124632 -0.395777 0.109544 0.473375 -0.395901 -0.721258 0.131663 0.093414 -0.895129 -0.240988 0.176039 0.114489 0.816901 -0.540040 0.130205 0.399953 0.113174 -1.049718 -0.413387 -0.382255 -0.349665 -0.288640 0.069585 -0.575149 -0.726768 -0.320745 0.310372 -0.477626 -0.392746 0.205077 0.759825 0.408534 -0.140868 0.443663 0.150722 0.438134 0.157848 -0.113595 0.185437 0.279274 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -5.144312 4.652312 3.029969 -2.760860 7.457606 0.149122 3.543539 2.104692 -2.785739 5.449820 -8.023745 -2.301312 -2.397343 -7.089463 -0.066628 -4.459533 1.244994 0.383360 -0.904524 2.214485 3.204791 -4.457363 -0.308467 -4.058602 -0.800632 -7.406371 -2.210304 0.208623 5.649328 -1.497653 1.259722 0.551641 9.369608 1.520781 8.057858 6.051638 1.653526 7.006927 1.141043 -0.759477 -1.472573 5.769706 -3.947542 -6.235439 -0.383377 -4.380306 -4.035116 -3.669008 1.690171 -3.381373 -0.000105 5.409493 -0.860120 1.144509 -5.047858 2.788518 6.697373 0.253788 8.817142 2.014745 -2.678403 -0.180558 -4.753476 3.968925 -2.772082 1.178006 -0.165139 -4.538464 1.864327 -0.161316 -0.979680 -3.120964 -2.680677 4.430966 2.925805 -5.425633 2.271686 -2.022081 -9.549360 -6.655667 -4.853709 1.672599 1.334354 6.663930 0.159511 -0.129018 1.250769 1.523569 0.396569 -8.511371 -0.910491 7.289926 -3.917052 -1.870290 -2.376773 6.661706 0.492893 2.846605 -4.362845 -3.277387 1.928602 -0.093762 1.035934 -4.866909 -1.362668 -7.013016 2.086049 0.249854 -1.346688 3.660425 4.317468 3.190341 5.293422 5.865901 -7.514431 2.021474 -6.446911 2.397208 -0.758464 -0.281751 0.243827 1.840960 -0.271031 1.340585 6.215861 -8.418362 3.314722 3.408570 -2.446881 -7.161128 -0.488194 -6.226920 -5.697929 -1.600395 2.960925 2.373667 1.421494 -3.819109 -0.148816 -1.450565 -1.469724 -3.356826 1.137246 7.863986 -6.927520 -0.855484 -0.799086 -0.858206 -3.901723 5.081269 3.191693 2.976666 7.876800 4.149732 -2.510079 3.386631 -5.948361 0.131669 9.840604 3.265485 -6.836571 5.059693 -4.657323 -0.156589 3.062691 3.115437 4.525828 -0.461383 -7.514019 -3.915356 3.401281 -1.893264 7.932823 1.992862 2.265809 -3.745679 9.853670 0.081757 -5.297577 8.739224 4.555816 -7.192272 2.882170 3.718572 -6.197564 -1.262431 4.390699 -5.020286 -0.817048 -4.469209 0.087154 1.663167 -3.917693 -1.479546 0.148294 -7.605365 8.617797 0.872367 3.054847 1.458918 -5.172782 -7.455885 9.106676 -0.534597 -0.991870 -3.055650 -2.575966 -5.375866 -7.596442 1.283199 0.182370 -4.152638 -2.964356 -6.654977 1.769696 5.209212 -2.208076 4.514912 -5.564328 -2.628602 2.721749 2.199757 3.487860 -3.448604 -4.374859 -0.339287 -0.410776 3.717605 -3.280293 6.876036 9.091574 -2.690524 5.606027 -1.258481 -3.472661 1.902226 4.011615 -6.714427 7.172072 -2.147009 5.443330 0.181965 4.966351 -4.867464 -2.227174 0.619999 -1.556601 -2.152029 3.245557 -4.269491 0.271894 1.078098 -5.571497 -3.202556 1.946814 -0.493467 1.055267 0.023190 1.197641 -5.421233 -0.229664 -4.171541 1.227025 5.280834 0.738229 -4.782249 1.505624 0.955343 0.545013 -0.029629 0.607206 0.091881 4.970715 -6.516180 -1.060290 -0.061074 -0.069113 -4.679649 -9.484489 1.304545 -6.492918 -5.393316 5.019952 -7.662946 0.867775 -5.148603 -1.093843 -8.761015 -2.250926 1.778030 9.290853 2.584312 -4.165556 1.775774 -0.885577 5.543172 0.122785 1.778139 1.008921 4.083146 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.179076 2.038405 1.713647 -1.853261 6.517270 0.822000 1.133650 3.253123 -2.139105 3.638726 -5.069175 -0.929272 -1.188612 -3.574643 0.051827 -1.420766 0.399777 0.009693 -1.792896 0.329508 1.840053 -1.206008 0.140424 -2.258015 -0.711243 -3.225381 -2.025790 0.369768 3.138206 -0.569401 -0.629156 0.022604 5.502640 -0.190459 4.350533 3.103011 2.168627 3.820186 -0.351484 -0.271922 0.266506 3.245435 -2.605556 -3.346447 -0.121707 -3.491927 -3.371888 -1.494734 1.440281 -2.764451 0.142352 3.202516 -0.224625 0.396196 -1.748707 2.973443 3.060375 -0.819341 5.449746 1.447357 -3.482265 -0.471211 -3.439255 3.848565 -1.530033 2.960493 -1.273472 -4.098345 -0.819767 0.605417 0.272540 -2.815345 -1.978288 2.506396 1.296189 -2.945932 1.912064 -1.174545 -2.031266 -4.302249 -2.984902 1.392246 0.112538 3.501891 -0.157706 -0.213992 0.530891 0.660429 0.037409 -5.230002 -0.932199 4.677168 -3.098172 -0.269119 -3.310688 1.505250 -0.590862 1.786627 -2.574748 -2.428345 1.218467 0.896033 0.475339 -3.880442 1.336232 -3.804662 1.307731 1.133274 0.315200 1.932637 1.336344 1.628779 2.928501 3.618230 -3.215658 1.300819 -3.694993 1.425939 -1.347889 0.174930 -0.765826 1.115052 1.403846 1.071099 3.966049 -4.874111 2.399606 1.391388 -2.665415 -3.909672 0.058931 -3.556543 -3.969504 -0.391770 1.699836 1.202723 0.469674 -2.220157 0.837370 -1.221120 -2.120319 -1.682873 0.124161 2.929721 -4.741083 -0.722242 -0.327417 -0.215746 -2.070571 3.904604 2.601259 1.879108 5.227370 2.303509 -1.259528 0.997178 -4.195326 0.993225 6.100970 1.336382 -4.333834 3.052342 -3.420955 0.541521 2.120629 1.749843 1.961811 1.319033 -3.289503 -1.543341 1.209850 -0.601258 5.339436 2.026254 1.878606 -2.672538 4.036927 -2.223718 -2.344608 5.351617 3.693032 -5.157344 1.628562 2.478084 -1.855506 -0.673390 2.560210 -3.599851 -1.517111 -2.457289 -0.057845 1.773797 -2.707263 -1.393797 1.165337 -4.517173 5.731317 0.363874 0.936498 0.954824 -3.627855 -3.601539 5.246702 0.247693 -0.552196 -1.469075 -1.464324 -3.303400 -4.845654 0.705207 1.083858 -2.221230 -2.053819 -4.045531 0.701209 3.277124 -1.415755 2.815782 -4.361001 -0.939865 1.770774 -0.050744 3.005363 -2.511862 -2.444066 -1.521735 -1.497269 2.549012 -3.458704 3.070426 5.168991 -1.805656 4.613073 0.292895 -2.555014 -0.299544 2.354737 -3.380831 4.614328 -0.367308 2.965338 0.034241 3.366131 -3.008877 -0.860338 -0.477066 -0.670196 -1.389446 2.748308 -2.990958 -0.037585 0.331827 -3.896600 -2.133854 1.445460 -0.065213 0.560320 -0.081573 -0.008642 -3.593025 -0.616310 -2.590063 0.727532 3.170849 -1.244463 -3.569821 0.867823 0.405682 -1.326726 -0.223097 0.590600 0.307197 3.601214 -4.042528 -0.463572 0.728318 0.389742 -4.485604 -4.546931 -0.763418 -3.287370 -3.198045 2.808592 -4.310348 -0.869376 -3.019411 -0.373057 -4.451379 -2.400304 1.535159 5.973158 1.665728 -2.737720 1.563034 -0.087836 3.461925 0.386422 0.817514 0.537719 1.548766 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 diff --git a/src/test-suite/oracle/SYM_llvm17_onDemand/ir2vec.txt b/src/test-suite/oracle/SYM_llvm17_onDemand/ir2vec.txt index 82babb3a7..c3686a4a2 100644 --- a/src/test-suite/oracle/SYM_llvm17_onDemand/ir2vec.txt +++ b/src/test-suite/oracle/SYM_llvm17_onDemand/ir2vec.txt @@ -1,269 +1,269 @@ -PE-benchmarks/channel-assignment.cpp__main = 0.771876 -0.705957 1.216830 0.641163 0.351552 -1.320910 0.999104 1.501491 -0.015632 -1.686974 -0.517582 -0.796915 -0.249534 -0.891571 0.297863 -0.531275 -0.248023 0.729774 -3.267962 0.806337 0.939378 1.135721 0.463602 -1.520372 0.260117 -0.351931 -0.787659 1.537097 -0.085958 1.311259 -0.690968 -1.007421 0.911492 0.477603 0.209827 1.639457 1.354033 0.217501 0.693808 0.838861 1.824598 1.268110 -1.240580 0.366787 1.162481 1.396708 0.691017 0.245431 -0.951203 -0.612065 -0.087538 -1.582733 -1.135183 -1.032140 -0.697649 0.495218 2.687913 2.330588 -0.847604 1.434873 -0.684457 -0.270011 0.539505 -0.131924 0.854974 0.843170 0.089646 0.235028 2.440694 -1.040614 -0.545786 0.485815 1.271761 -0.437381 0.106646 -0.979612 -0.964154 -4.893732 0.263874 -2.947770 -0.969201 0.312320 0.454340 -1.101908 1.242325 1.986930 -0.005577 0.536709 -1.001939 -0.898390 -0.955752 0.217484 -0.049482 3.378493 -0.250719 0.061872 0.651065 0.990660 1.504766 1.348217 0.573877 -0.640220 -1.544569 -3.253668 -0.205685 -0.412373 -0.625748 -0.457883 -1.103129 -0.939823 2.262227 0.316607 -1.861553 -0.049354 1.412814 0.983473 -0.398329 -2.083742 -0.370096 0.750970 -0.691292 -0.381482 0.751700 -1.811560 -0.539080 -0.030348 0.438988 0.529162 -0.035653 -0.437166 -0.920280 -0.347191 0.138317 -0.161289 -0.168475 -0.369684 -0.763818 -1.211912 0.393176 -2.106947 1.467216 -1.517438 1.020785 0.066815 -0.636220 0.020445 1.312822 -0.340214 -0.839847 -0.013846 -1.037583 -0.211968 -0.415434 -2.760475 1.053189 0.406653 1.317422 -0.685488 -0.308185 -0.639002 -0.230472 -0.904349 -0.220836 -0.432524 0.317277 -0.161658 1.200073 -0.194712 -0.327096 -0.805417 0.589157 2.200126 0.565191 -0.036014 -1.122359 -0.296529 -0.698647 -1.390052 1.074375 0.054342 -0.725491 -0.424533 -0.101432 -1.779025 1.619279 -0.686806 1.230547 -0.264928 -1.120992 -1.401522 0.154980 -0.596210 0.732841 0.221916 -0.612286 -0.463339 -1.032837 0.286819 0.013389 -0.165953 0.976924 -1.855118 -1.754081 -0.647152 0.694072 1.491289 -0.518910 0.877059 -0.439974 0.166014 -0.678904 1.588239 -0.162150 -0.187355 -0.620517 -0.929965 2.350457 0.156899 -0.555043 -1.614273 0.754570 0.651652 1.310724 2.898458 1.351606 -0.867862 -1.069525 -0.439136 -0.548500 1.440092 1.957540 -1.223153 -1.266515 0.894129 -0.676026 -0.331252 -0.807001 0.785604 -0.394577 1.574079 -1.178064 -0.888616 -0.105595 1.546963 -0.235962 1.336947 0.162821 0.402780 -1.458741 1.661448 -0.018003 0.048682 -0.965028 -1.144678 1.083311 0.543322 0.789983 -0.314111 -0.943275 -1.238531 0.496280 2.149141 1.430464 3.829434 -0.587405 1.014418 -1.180206 -1.389016 -0.238634 0.363554 0.624851 -1.178693 0.191628 -0.544533 0.527533 0.336305 0.049015 0.969143 -0.541487 -1.461405 -0.518247 0.633393 0.517424 -1.436937 1.686745 -0.471480 -0.786626 0.068708 -0.166263 0.650764 0.546823 1.537236 -0.275469 -1.026090 0.721976 -0.278944 1.882753 -0.029775 -0.177989 1.010783 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 2.543485 0.101596 -2.030001 5.462066 0.188850 -1.876940 0.137507 0.992345 -0.873886 -7.918699 -4.975461 4.473726 0.805358 0.129965 1.198358 1.663876 -0.215039 0.636519 -7.848720 2.418026 2.682212 0.860338 -0.537777 -0.993858 0.844302 -2.129680 2.118986 1.117595 0.861713 4.569816 -2.410932 2.317259 3.796878 -0.443738 2.116250 3.373691 -1.293641 0.717269 -1.201074 -0.429821 6.092980 2.959088 0.219297 2.608287 1.059625 4.620658 0.133548 4.132801 0.756119 -3.257423 2.130579 2.792791 -2.461224 -0.597948 -3.192673 2.426737 3.768791 1.432665 -2.335564 1.509212 -1.411078 -0.234912 1.340297 -0.100269 5.206038 2.324817 3.531493 3.270193 5.311164 -2.578017 -0.480738 2.423720 2.164592 0.031385 3.951724 -2.669797 -5.102868 -0.163358 -1.041061 -6.298958 -2.120936 -0.044134 7.617029 -4.598944 -0.315837 0.478051 0.966520 4.630609 -2.294722 0.137149 -3.345511 -0.050887 -2.459522 6.702220 0.948606 0.943976 -0.659520 1.758004 1.416570 3.217961 -0.566150 -3.458699 -1.579501 -7.453285 -2.231683 -2.105552 2.069495 2.236353 -6.067803 -0.847471 -0.882063 5.202980 -6.812124 -0.153064 3.171968 2.236817 3.496438 -0.407158 -3.409884 0.455454 0.833835 0.494439 2.874633 -1.733499 -0.045306 -1.076622 0.895571 -0.118971 1.517967 0.230926 -5.045006 -2.794852 -0.523037 -0.427135 0.256274 0.905019 2.587530 -2.701250 2.987855 -2.003606 3.455657 -6.302204 -0.591029 -2.359347 -3.940851 -1.216626 3.118739 3.795812 3.944067 -2.055515 -1.641199 -1.625248 -6.343394 -6.406539 1.065395 0.063896 1.136350 1.347083 -0.439877 2.104228 -2.408195 0.673083 2.589104 -2.196952 -0.796183 -0.747507 4.714076 -0.220490 -0.851120 -3.167883 -1.740391 -1.071026 0.158987 3.814565 -0.845353 -7.031144 -7.166881 -3.348291 3.867285 -1.601980 0.449678 -2.681095 -0.654756 -3.465031 0.242986 -4.204659 0.485197 -0.186178 -2.689585 -4.648991 -0.066592 -0.597245 -1.212834 -0.235086 -3.672065 -0.684713 4.212053 1.348072 1.794954 0.771723 0.166140 -4.688840 -3.426190 1.297635 -2.489106 3.771294 3.063302 -0.559897 -3.726550 -1.595394 -5.003671 2.923999 -2.786343 1.038904 -1.072370 -1.209752 4.616130 -3.039061 -0.497345 -3.532416 1.075220 1.149794 -7.641532 5.598816 3.586248 -1.866746 -0.204558 0.283566 0.950309 2.565593 3.595313 -3.187906 -2.695906 0.381732 -1.468098 -0.036459 -0.743840 3.089646 -3.327712 1.125290 -2.978863 -1.771940 2.440485 2.634299 0.218883 1.183458 0.896595 -1.041306 2.114781 3.438343 3.379209 -0.668876 -4.046204 -9.162111 2.564815 -1.741277 -1.349769 -0.072479 -1.588852 -3.318997 1.129229 -1.066854 4.592544 0.065877 -1.601645 3.676058 -5.513198 -4.609028 -2.477005 -0.380819 0.143157 -0.884035 0.747035 -2.045984 1.276737 1.253212 -0.128080 -0.527413 -2.905032 -0.566034 0.451368 3.993708 1.256639 0.613060 4.633052 1.815324 -2.514555 -0.939688 0.494531 -0.764240 -0.908820 -4.885308 -1.938282 -0.981008 1.156428 -1.963329 1.798469 -0.872807 0.320548 1.363754 -PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.232994 0.360349 0.036930 0.458248 0.193952 -1.237871 0.506461 1.300107 -0.474838 -1.731269 -1.643297 -0.158296 -0.010071 -1.115465 0.781595 0.268090 -0.074699 0.600903 -2.187461 0.988861 0.849937 0.544775 -0.484312 -0.645098 0.233833 -0.348986 -2.283328 0.451691 -0.238113 1.098570 -0.639134 -0.031131 0.770053 0.132227 0.130416 1.075190 -0.271014 -0.122351 1.808228 0.573664 1.701521 0.699030 -0.004803 0.578006 1.125641 1.028250 -1.485383 1.920351 -1.434954 -0.490325 1.469935 -1.583508 -0.941114 0.553558 -0.679683 0.717031 2.088980 0.730074 -0.514230 1.049563 -1.042324 0.154767 0.397959 -0.947238 1.373974 1.904214 0.101989 0.411116 2.164509 -0.097039 -0.036974 0.438848 0.913809 -0.514554 -0.469802 -0.591316 0.136538 -2.135921 0.053010 -2.375455 -0.027079 -0.399237 3.053907 -1.129443 0.448192 1.287666 0.743557 0.963430 -0.868685 -0.303716 -0.548443 0.461448 -0.836729 1.927453 -0.448566 0.717112 -0.643378 0.297278 0.519908 0.734948 -1.037160 -0.147585 -2.648815 -2.810319 -1.121671 0.095612 -0.432139 -0.368912 -2.172601 -0.401802 1.686224 0.711004 -1.893046 -0.166851 0.903552 0.566446 -0.539855 1.932544 -2.376773 -0.366050 -0.426988 0.411076 -0.002351 -0.226326 -0.339194 -2.153399 -0.193147 0.157844 0.230785 -0.572756 -1.842569 -0.132052 -0.176845 -0.946661 -0.129802 0.144198 -0.005541 -0.758665 0.531917 -1.019166 0.651790 -2.322117 -0.277314 -0.991873 -1.722626 0.210528 1.671165 1.557276 0.428314 0.518594 -0.406164 -0.919576 -1.536169 -1.335195 0.137513 -0.978169 1.589731 -0.859943 0.105746 -0.718279 -0.015925 -0.531980 -0.142038 -0.749255 0.329292 -1.089649 3.387356 -0.457354 -0.449642 -1.486489 -0.296569 1.402395 -0.762590 -0.386164 -0.484124 0.128807 -1.237891 -1.106173 0.828441 0.035155 0.295347 -0.728595 0.771572 -1.412692 0.506715 -0.492267 0.097554 -0.054350 -0.880648 -1.092464 -0.109461 0.054638 -0.740695 -0.639538 -0.500760 -0.151148 1.450078 1.049715 0.407966 0.359397 -0.165768 -1.446187 -1.846743 -0.678675 0.230880 0.959101 1.838374 0.406954 -0.734270 0.061815 -1.690138 1.488670 -0.977156 -0.248596 -0.262654 -0.373825 1.832604 -0.618148 -0.774066 -1.635335 0.260169 -0.423574 -2.436414 1.620292 0.540686 -1.086828 -0.674340 -1.841905 0.386033 1.018675 1.756821 -0.181105 0.122819 0.397429 -0.501691 -0.346604 -0.744636 1.099191 -0.826326 1.419313 -0.872400 -0.454430 0.851460 1.377339 -0.364572 0.813524 -0.307345 0.848573 0.818565 0.869120 0.292038 -1.263599 -0.641881 -2.464539 0.265048 0.707948 0.003449 0.024536 -0.640226 -1.239565 -0.218162 0.388125 1.463669 1.246890 0.514173 0.693079 -0.709401 -1.261362 0.029286 1.198707 0.224934 -1.164162 0.145223 -0.369631 0.019465 0.877552 0.623581 1.282722 -1.749853 -2.709144 -0.542961 1.343876 0.401031 -0.946756 1.262714 0.157939 -0.430990 -0.062930 -0.198098 1.064309 0.131850 0.051267 -0.472342 -1.044038 0.030042 -0.572146 2.009716 0.237430 0.244974 1.098851 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 6.745838 -0.809925 3.978360 4.721977 2.821027 -5.678216 0.168915 8.586235 -3.096760 -9.681957 -9.464649 1.557072 -2.302008 -0.324939 6.834396 -1.389442 -0.305021 -0.881571 -19.053708 6.219294 2.196049 2.380419 0.372566 -5.483158 3.775114 0.987128 -1.460350 5.166388 0.783892 4.338720 -7.132031 -1.021584 2.676477 2.888849 5.804240 1.370410 -0.046132 -1.944015 0.230961 -2.796530 12.129135 5.281837 -1.454094 6.661851 6.206655 4.537116 -1.333304 4.983058 1.654043 -3.181950 3.922497 -8.346155 -5.113289 1.401624 -5.716297 5.526790 9.447023 3.762452 -4.773529 3.731192 -0.909773 -0.373066 1.288650 -6.768619 8.551592 2.966241 5.537712 1.276359 8.991498 -3.771779 -2.043211 4.453672 9.390674 1.661674 -4.244924 -7.583996 -0.508121 -17.669332 2.893196 -15.680421 -3.238435 -3.243300 7.389107 -4.722062 4.753160 5.750610 -3.858502 4.254246 -6.493586 0.513867 -4.115305 0.411696 -1.461568 8.112239 -2.771787 -1.069737 5.591305 2.889846 4.900894 9.361981 -1.525411 0.081899 -5.747367 -15.173579 -1.815547 5.654633 1.226590 -2.242162 -4.962298 -0.085763 5.008556 3.817347 -4.555878 -5.134027 5.134635 3.309059 -7.283903 -1.093495 -4.794216 -3.578948 -1.429707 3.939686 4.541919 -5.495579 1.666384 -4.910704 0.397048 2.623590 6.751073 0.358606 -1.961241 -6.036309 -0.363653 0.213485 -3.819132 -4.016156 -1.166383 -2.295221 5.216128 -2.693031 5.179075 -8.271648 1.768171 -4.774114 -0.041243 2.094017 8.913706 3.634841 0.272118 6.163727 -1.779049 -1.406213 -3.633888 -7.149734 4.964712 3.214965 5.509373 -1.515157 0.632766 2.108956 0.296169 -7.044837 -0.243387 -5.134563 -2.977951 -6.687318 3.737315 -1.104780 -1.024030 -7.111157 5.428396 8.035754 -5.980651 -0.364728 -1.814998 -4.554979 -3.387685 -6.871584 4.550005 0.591953 -0.452402 -0.023017 4.474808 -5.862342 4.216921 -6.541933 2.910661 -0.269368 -9.487646 -4.883716 -2.264309 -0.850431 1.811179 -1.143953 -3.000585 -0.536726 1.826828 9.193255 0.056429 3.433695 3.646672 -10.017733 -11.854813 -5.207403 2.457308 6.655904 -0.014061 0.000319 -6.581883 -1.540531 -2.815852 8.719964 -4.353543 -0.900288 -5.334754 -3.109327 7.971066 -1.745226 -3.023544 -6.077102 2.117937 4.024455 -9.683717 8.934708 4.415687 -4.452412 -5.087914 -8.679289 1.464252 5.810371 12.982631 -3.076525 -0.658444 0.739740 0.672264 -1.739925 -5.846721 7.925451 -1.104958 2.131389 -5.352708 -7.770143 1.092209 4.714578 2.498616 6.255161 2.778033 7.622763 -1.055854 9.981209 0.728601 -3.415521 -4.583882 -12.747332 3.205960 15.124999 1.341894 1.725379 -6.785884 -10.043151 -3.098372 3.919834 6.547800 11.141813 3.841765 4.166897 -2.399100 -4.964189 -1.947887 4.466733 -2.012765 -4.465912 0.575828 -3.616267 0.316860 2.846778 -1.117159 2.290836 -0.647892 -13.680308 -6.438347 2.278655 3.927239 -0.169327 6.969123 4.486866 -6.560573 0.112578 0.013854 2.040395 1.044358 1.018591 -4.406302 -5.442416 -1.710623 -1.965800 3.973498 3.505617 0.776131 0.707879 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 6.360943 2.816102 -5.953441 19.256320 -1.081412 -4.849133 0.339749 3.881930 -5.357152 -27.587110 -18.541382 10.034585 3.279930 3.601834 5.846456 5.361103 -2.254903 1.901234 -30.113756 6.444230 11.326058 3.874855 2.153814 -3.741725 3.494253 -5.766301 5.998483 3.967541 3.571366 16.287798 -7.675571 8.314196 13.633867 -1.689231 5.778416 10.092369 -4.527630 4.134483 -5.719271 -0.797222 19.645428 9.639422 -0.540690 7.397023 1.165037 16.171520 1.837194 9.278386 -0.210215 -12.216903 7.160306 7.435399 -8.093273 -3.245745 -8.297986 7.362940 15.558659 9.645508 -6.975019 5.495147 -4.106479 -1.567417 4.254529 -2.043578 16.857465 7.837602 13.501788 11.073285 16.007574 -9.959573 -1.785956 6.598233 3.643775 -2.143435 9.793689 -13.024512 -16.150177 -5.118217 -3.298174 -26.211803 -9.681263 1.435253 24.318274 -15.956424 -0.174593 1.956251 0.556535 14.784432 -7.761426 1.024637 -10.506554 -2.086536 -8.598010 22.507291 3.273796 -0.231649 0.968840 6.758990 7.389816 11.397239 -0.802755 -9.935023 -6.197945 -22.922139 -6.699318 -4.684026 9.897821 10.341130 -17.766476 -4.889773 -3.561749 12.164695 -23.603864 -0.950081 12.591371 11.494618 9.040031 -3.827826 -12.853749 2.433903 3.001535 1.672606 13.817847 -7.788026 1.828541 -1.901893 1.536412 -0.426706 5.156314 1.465152 -16.488377 -12.144302 -3.371109 -3.010365 1.273334 2.147616 8.692972 -5.708342 11.443928 -7.577789 13.394864 -22.733920 0.364478 -5.983327 -12.627505 -4.264758 7.479060 12.300703 9.029762 -8.091677 -7.778524 -3.699262 -20.140588 -18.145054 4.106381 5.138378 5.488311 5.847735 -2.705359 9.335233 -8.233815 3.301991 8.755395 -5.674557 -3.446984 -1.384244 16.215793 0.775720 -3.702649 -11.017100 -3.981915 -4.995754 -1.121323 13.958127 -2.306343 -18.958263 -24.685384 -11.154873 14.037642 -5.352878 0.674984 -9.246258 -1.452514 -13.862046 1.464073 -16.621780 1.807097 2.012633 -10.764771 -16.055601 1.052830 -1.827882 -3.887890 1.346933 -11.836723 -4.305210 14.834250 6.191684 6.545428 1.245797 2.746805 -15.465713 -11.583076 3.665906 -10.483131 11.194059 8.083636 -2.064510 -13.645920 -4.494582 -14.611821 9.949464 -1.971774 3.192047 -7.908516 -1.454392 15.244312 -9.951317 0.998479 -12.789647 2.279412 6.558716 -26.538113 17.942385 11.653022 -3.441594 -0.337521 2.656871 2.079477 8.316950 10.098128 -10.583698 -11.612212 0.165034 -5.914760 0.631143 -3.852481 10.207345 -11.763307 0.470582 -9.016589 -5.210526 8.082656 7.905121 1.908424 7.602027 5.884537 -2.868885 5.595758 11.306099 11.365686 -4.733203 -11.236056 -28.419685 10.003969 -2.879089 -4.021076 -2.929773 -4.362382 -11.351129 4.639241 0.152829 14.422454 6.379385 -7.370803 12.912296 -17.008780 -14.844291 -10.194892 0.104043 0.811671 -2.862783 -2.227528 -5.983162 6.509478 7.028693 -3.426696 0.630507 -10.397892 -3.161837 -0.306350 15.560146 2.325492 3.877707 16.641770 5.583384 -8.905835 -3.215179 2.529997 -3.343397 -2.067850 -13.979775 -6.706846 -1.952242 3.998405 -6.236068 2.456550 -4.014925 -2.464622 5.649691 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.518359 0.025989 0.129397 0.289001 0.058395 -0.441800 0.223337 0.647127 -0.147331 -1.126424 -0.966590 -0.369127 -0.034923 -0.337631 0.567604 0.140352 0.028011 0.362296 -1.357853 0.416996 0.600350 0.369268 0.089675 -0.214096 0.212815 -0.211331 -1.245262 0.116914 0.032425 0.698006 -0.465026 0.083574 0.528166 0.041811 0.000246 0.538472 -0.071432 -0.063805 0.829950 0.291936 0.963509 0.263539 -0.022702 0.291728 0.428927 0.616922 -0.752735 1.039456 -0.385604 -0.411813 0.868035 -1.274699 -0.449353 0.347739 -0.351281 0.459191 1.148911 0.631855 -0.284731 0.511484 -0.483267 0.150292 0.164613 -0.754660 0.692904 0.966845 0.115466 0.247160 1.032465 -0.153084 0.014951 0.153677 0.352489 -0.215516 -0.287589 -0.480403 0.254319 -1.667037 -0.026146 -1.272806 -0.061376 -0.226889 1.434911 -0.721974 0.317851 0.818969 0.135260 0.578171 -0.343223 -0.023359 -0.411085 0.232115 -0.168317 0.781860 -0.187824 0.125484 -0.285196 0.174028 0.253660 0.363247 -0.311020 -0.062018 -1.587398 -1.554685 -0.672251 0.043891 -0.002384 -0.021084 -1.215497 -0.099081 0.978291 0.233507 -1.095109 -0.034976 0.482282 0.515101 -0.499004 0.874913 -1.181930 -0.290315 -0.177729 0.311113 0.105294 -0.325222 -0.068100 -1.299901 -0.140959 0.133820 0.205447 -0.366832 -0.559139 -0.268433 -0.183901 -0.313202 -0.093779 0.122666 0.150873 -0.293240 0.418931 -0.517722 0.398565 -1.173564 -0.130592 -0.464592 -0.711644 0.009550 1.380527 0.757608 0.177202 0.349478 -0.498703 -0.496851 -0.766112 -0.632169 0.039189 -0.379013 0.981978 -0.182750 0.000432 -0.173604 0.011417 -0.205378 -0.324144 -0.403606 0.123966 -0.462169 1.221661 -0.304165 -0.232387 -0.989502 -0.048449 0.871389 -0.722655 -0.166002 -0.232140 0.321640 -0.656194 -0.660999 0.531270 -0.085882 0.314996 -0.382461 0.517216 -0.818944 0.319966 -0.383611 -0.108950 0.073483 -0.712165 -0.697834 -0.003539 -0.048252 -0.302496 -0.111076 -0.354170 -0.064649 0.588423 0.789543 0.303451 0.163946 -0.059943 -0.946317 -1.074439 -0.548350 -0.141621 0.529253 0.740699 0.077875 -0.488313 -0.094806 -0.739646 0.877280 -0.525097 -0.096641 -0.292929 -0.167753 0.854500 -0.306755 -0.347052 -0.977631 0.134666 -0.037350 -1.404330 0.813718 0.258872 -0.521411 -0.281688 -1.045780 0.270065 0.540973 0.916857 -0.070268 0.060430 0.156329 -0.284367 -0.113229 -0.581734 0.636492 -0.471331 0.562177 -0.465035 -0.242991 0.434576 0.698613 -0.140030 0.531550 0.206692 0.659792 0.413514 0.485421 0.170601 -0.736318 -0.285712 -1.348047 0.248466 1.040814 0.125426 0.111079 -0.598317 -0.542414 -0.065677 0.372143 0.759179 1.020140 0.556996 0.471886 -0.335875 -0.639611 0.045587 0.549994 0.100850 -0.586348 0.021713 -0.177526 0.040809 0.525195 0.244304 0.694961 -0.871526 -1.547795 -0.257209 0.800016 0.233228 -0.266792 0.706056 0.143154 -0.418241 0.052380 -0.101598 0.476238 -0.006939 0.235184 -0.209830 -0.366447 -0.057132 -0.382545 0.891917 -0.047996 -0.063891 0.421764 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 2.139789 -0.855235 -0.646204 3.278798 0.712687 -0.430969 0.250467 1.132441 0.255864 -5.592262 -3.078235 3.461082 0.230332 0.821597 0.642125 0.994983 0.573861 0.400371 -4.539974 1.246410 1.353938 0.679581 0.141669 -0.221992 0.640561 -1.472679 1.877710 0.557576 1.161725 3.075996 -1.735228 1.159293 2.700757 -0.329532 1.244807 2.380002 0.766052 -0.121192 -1.764121 -1.210027 4.427347 1.756606 0.152733 2.532732 0.426042 3.223882 0.395771 4.112918 2.061137 -2.312885 1.382778 -0.717719 -2.121740 -0.471815 -2.543847 2.042167 1.565705 1.110435 -1.715863 0.993638 -0.371189 -0.135697 0.686299 -0.713713 2.702074 1.273442 2.125796 2.114906 3.489475 -2.465165 -0.838175 2.413865 1.766189 1.722145 2.651495 -2.244726 -2.599629 -1.159001 -0.385128 -2.841798 -1.725702 -1.093980 5.077976 -3.218345 0.045199 1.007335 -0.454148 2.742880 -1.174633 0.544528 -2.917424 0.046681 0.077812 3.139939 0.418188 0.155538 -0.291294 0.692759 0.683103 2.382603 0.649960 -2.379279 -1.711694 -4.185747 -1.083680 -1.552937 1.344874 1.532886 -3.583376 -0.219144 -0.752759 3.938329 -4.129886 -0.265096 2.089233 1.474945 3.253598 1.063206 -1.293184 -0.155628 1.362244 0.148152 1.753160 -1.949417 0.040349 -0.517962 0.776629 -0.132124 1.076801 0.060850 -2.941381 -2.306590 -0.064444 0.675061 0.170376 0.135870 1.621278 -2.438536 2.157348 -0.897169 2.109711 -3.410043 -1.256689 -1.009745 -2.202103 -1.190592 5.689455 2.043382 3.822394 -0.369413 -1.540038 -1.611307 -3.235008 -4.154116 0.708135 0.039402 0.893985 1.772874 -0.178137 1.806936 -1.525598 0.110689 0.443084 -1.326832 -0.623080 0.104892 0.389140 -0.803167 -0.040769 -2.831933 -0.441055 0.014631 -0.058749 2.374980 -0.716534 -5.799154 -3.901239 -2.473995 2.600416 -1.300304 0.726458 -1.126060 -0.595098 -1.700987 -0.211660 -2.741453 0.436275 -0.082074 -3.064065 -3.372018 0.721636 -0.866298 -0.608421 0.966430 -2.330932 -0.166237 1.382481 1.917190 1.044339 0.537189 -0.270736 -4.049825 -2.718556 0.062176 -1.888364 3.818067 0.975487 -0.691241 -2.395891 -1.566063 -2.925020 2.482778 -3.468236 0.727563 -0.729520 -0.550596 2.621088 -1.853912 -0.006876 -3.168145 1.417958 1.630262 -5.366325 3.321783 2.695600 -1.356040 -0.492359 -0.027894 0.364698 2.111401 2.825933 -1.992008 -2.070177 0.786422 -0.478402 0.004249 -1.129089 1.948112 -1.645668 0.618299 -2.430365 -1.709228 1.152539 1.746679 0.026637 0.348636 1.794632 0.277296 0.966809 2.958343 2.242275 -0.104802 -2.927501 -6.640006 2.158254 1.912797 -0.802549 0.847243 -2.657183 -1.721066 1.174717 -1.442427 2.856905 0.030161 0.356196 2.746410 -3.619215 -2.882670 -0.870977 -0.889181 0.252323 -0.245724 1.370652 -1.453369 0.790829 0.303443 -0.549446 -1.055184 -1.151937 -0.181910 0.476402 2.402188 1.270282 1.398211 3.082910 1.256485 -1.917223 -0.011979 0.445344 -0.278225 -0.826175 -3.381449 -0.868654 -0.268028 0.455862 -1.293317 0.956905 -0.403697 -0.406505 0.216892 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.212066 -0.159939 0.411212 0.188656 0.258884 -0.054652 0.221140 0.269712 0.073907 -0.668609 -0.375669 -0.178573 -0.128060 -0.076919 0.196170 -0.095757 0.262535 0.314660 -0.560104 0.031193 0.200518 0.252859 0.206452 -0.158903 0.084644 -0.136012 -0.340627 0.227730 0.127440 0.414022 -0.281360 -0.114681 0.324681 0.124521 0.042229 0.409837 0.446296 -0.054363 0.117155 -0.045117 0.714192 -0.006309 0.023161 0.374333 0.270975 0.434229 -0.081075 0.492498 0.275356 -0.200515 0.300993 -0.886781 -0.214112 -0.035183 -0.417667 0.309688 0.557139 0.485679 -0.312199 0.363215 0.023688 0.110955 0.072730 -0.445698 0.181681 0.383845 -0.081346 0.143960 0.610546 -0.371752 -0.150999 0.178895 0.354300 0.199571 -0.116507 -0.378676 0.182326 -1.190995 -0.056349 -0.501051 0.040021 -0.198192 0.535053 -0.346847 0.245136 0.640241 -0.242005 0.160346 -0.047206 -0.114767 -0.438774 0.149751 0.185230 0.331999 -0.032330 -0.080349 0.029384 0.057445 0.149655 0.336446 0.116232 -0.148346 -0.691642 -0.973807 -0.346929 -0.107607 0.008552 -0.149717 -0.392620 -0.071421 0.522464 0.130430 -0.535495 -0.127130 0.259190 0.308075 -0.470726 -0.044776 -0.268290 -0.184306 -0.024254 0.086470 0.045916 -0.395759 -0.060654 -0.439814 -0.137882 0.043775 0.193985 -0.229016 0.062399 -0.281264 -0.153604 0.143627 -0.114838 -0.155053 -0.077813 -0.223492 0.244917 -0.305102 0.313892 -0.396366 -0.032877 -0.145842 -0.209671 -0.112296 1.077063 -0.069366 0.258333 0.285539 -0.368219 -0.276140 -0.143610 -0.493342 0.226840 -0.073872 0.523620 0.120360 -0.062616 -0.047344 -0.107377 -0.310874 -0.212116 -0.200077 -0.004462 -0.097454 0.018840 -0.302408 -0.106641 -0.624070 0.301040 0.748530 -0.284807 -0.128281 -0.300644 0.077615 -0.119066 -0.447155 0.323712 -0.142835 0.147232 0.023527 0.146525 -0.345277 0.260372 -0.266107 0.043527 -0.043183 -0.591426 -0.496627 0.148378 -0.233141 0.040868 0.299075 -0.282348 0.090997 -0.147504 0.453244 0.058213 0.063796 0.047734 -0.689427 -0.632252 -0.463482 0.019089 0.319209 0.071618 0.143916 -0.287484 -0.195126 -0.166016 0.437628 -0.393944 -0.018450 -0.046767 -0.152163 0.367959 -0.106931 -0.006717 -0.552325 0.196151 0.279539 -0.585276 0.455166 0.230138 -0.375964 -0.348684 -0.522330 0.042668 0.251929 0.668857 -0.193483 -0.097741 0.308675 -0.130636 -0.051374 -0.499679 0.272461 0.052883 0.322009 -0.502996 -0.340792 0.126909 0.432072 -0.112463 0.281620 0.433430 0.479056 -0.061953 0.597812 0.058629 -0.059563 -0.225638 -0.675488 0.258441 0.918140 0.272156 0.264141 -0.501316 -0.223372 0.130109 0.308172 0.405428 0.696449 0.419037 0.420293 -0.127822 -0.346941 0.177678 -0.005563 0.252065 -0.396902 0.142374 -0.239371 -0.007920 -0.018340 0.060526 0.226915 -0.116626 -0.648732 -0.075662 0.363634 0.199310 -0.001707 0.465433 -0.011606 -0.365436 0.216316 -0.068427 0.328191 0.110654 0.123280 -0.065945 -0.163352 0.014523 -0.206011 0.475096 -0.129284 -0.061673 0.148911 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.173308 0.096011 0.398188 0.129200 0.192419 -0.242045 0.278382 0.383902 -0.077166 -0.615324 -0.385669 -0.227521 -0.104307 -0.201959 0.165719 -0.128357 0.072046 0.436370 -0.602350 0.111221 0.304530 0.370794 0.215330 -0.352708 0.081390 -0.054510 -0.583008 0.241773 0.081229 0.437896 -0.254795 -0.209363 0.305700 0.181124 -0.040954 0.441278 0.439473 -0.006553 0.300746 0.027598 0.605720 0.101687 -0.056939 0.302003 0.304010 0.401503 -0.112815 0.183130 -0.231687 -0.202902 0.089177 -0.787268 -0.270330 -0.077092 -0.238672 0.304488 0.639581 0.622710 -0.221213 0.418994 -0.060412 0.031151 0.101236 -0.487082 0.126319 0.455715 -0.208481 0.114684 0.702673 -0.313563 -0.149268 0.131593 0.309240 -0.024373 -0.159414 -0.203791 0.118780 -1.239481 -0.079765 -0.812893 -0.060509 -0.049154 0.679361 -0.375947 0.351724 0.697218 -0.058850 0.138730 -0.108955 -0.216205 -0.319235 0.144055 -0.033538 0.522025 0.005155 -0.034338 -0.033114 0.105924 0.307099 0.334568 -0.026056 -0.043927 -0.747225 -0.990419 -0.228889 -0.051786 -0.107321 -0.142594 -0.394837 -0.233261 0.723876 0.314338 -0.618668 -0.114021 0.362613 0.331888 -0.609804 -0.143573 -0.402355 0.011552 -0.152815 -0.060419 0.047400 -0.419742 -0.163080 -0.256777 -0.208699 -0.029150 0.111903 -0.212386 -0.163812 -0.267383 -0.157105 -0.091221 -0.068942 -0.142388 -0.147170 -0.218864 0.183721 -0.442537 0.305414 -0.426770 0.144406 -0.027447 -0.363655 -0.048041 0.721379 -0.003971 0.003719 0.147822 -0.277635 -0.310394 -0.117044 -0.485407 0.340634 -0.046074 0.598887 -0.040272 -0.054597 -0.181676 -0.094807 -0.318082 -0.123638 -0.166689 0.095420 -0.091417 0.561165 -0.285167 -0.119691 -0.615383 0.214249 0.739464 -0.176149 -0.235729 -0.345958 0.347936 -0.148693 -0.455130 0.324542 -0.060642 0.029541 -0.085184 0.161195 -0.330494 0.325887 -0.215890 0.165544 0.008796 -0.465377 -0.473182 0.082159 -0.173862 -0.136890 0.191519 -0.192156 -0.001358 -0.030386 0.211582 0.015279 -0.022877 0.140531 -0.542716 -0.572249 -0.403103 0.102257 0.156189 0.222930 0.263451 -0.403452 -0.071610 -0.216481 0.501342 -0.173401 -0.064920 -0.177428 -0.070830 0.559583 -0.078609 -0.066934 -0.548078 0.176242 0.206952 -0.483477 0.493216 0.208414 -0.296579 -0.332760 -0.460822 -0.047686 0.365982 0.659370 -0.240481 -0.162129 0.325792 -0.275512 -0.077053 -0.447174 0.278601 -0.071661 0.468567 -0.389009 -0.241210 0.076272 0.466925 -0.128309 0.422566 0.295431 0.412979 -0.047901 0.489597 0.083292 -0.179495 -0.225899 -0.431896 0.279463 0.555706 0.314487 0.089161 -0.292588 -0.293436 0.164272 0.384179 0.412169 0.768659 0.168691 0.353845 -0.156353 -0.362673 0.218587 0.168755 0.301620 -0.468411 0.106962 -0.174117 0.047695 0.131272 0.041902 0.390614 -0.250076 -0.732792 -0.159569 0.412263 0.200198 -0.168356 0.496687 -0.085470 -0.332641 0.220287 -0.116539 0.435550 0.016544 0.218692 -0.064025 -0.230451 0.057896 -0.170349 0.642869 -0.103492 -0.156995 0.322543 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 1.062146 0.185881 -0.589099 2.269360 -0.238591 -0.632249 0.032509 0.704840 -0.630922 -4.030043 -2.319189 3.031462 0.157829 0.570607 0.382709 0.622751 0.105335 0.423266 -4.379203 0.980305 1.350696 0.601881 0.224040 -0.406964 0.519748 -0.918912 1.333974 0.583658 0.831477 2.304486 -1.444952 0.774825 1.948568 -0.300109 0.903707 1.652250 -0.314340 0.211902 -1.055230 -0.818215 3.009821 1.210142 0.166039 1.491778 0.442548 2.338021 0.309528 1.649314 2.029501 -1.890164 0.665409 1.362986 -1.511489 -0.420169 -1.412062 1.101346 1.112229 1.215544 -1.255151 0.762419 -0.341586 -0.242997 0.486943 -0.534319 2.081430 0.843970 1.599072 1.431560 2.205814 -1.602192 -0.473986 1.259564 0.974238 0.605699 1.695254 -1.548525 -2.077179 -1.250637 -0.463932 -3.714339 -1.475586 0.057890 3.984057 -2.393398 0.211417 0.414242 -0.140862 2.020664 -0.863995 0.151982 -1.871838 -0.189558 -0.551144 2.752401 0.591050 -0.250929 0.211944 0.778172 0.833387 1.834788 0.041482 -1.649147 -0.922382 -3.377318 -0.767583 -1.051875 1.202854 1.310440 -2.489407 -0.315375 0.393922 2.871881 -3.210013 -0.214288 1.785001 1.091801 0.925286 -0.018327 -1.397564 0.233711 0.315627 0.198900 1.855105 -1.203035 -0.030983 0.453868 0.176000 -0.202451 0.915276 0.250832 -2.378597 -2.026371 -0.126038 0.078903 -0.087941 0.033567 1.122347 -0.839662 1.659921 -0.756109 1.748384 -2.599580 -0.061869 -0.708858 -0.892354 -0.795503 2.033410 2.082160 1.640898 -0.908885 -0.759667 -0.788004 -2.522690 -2.332384 0.909203 0.409864 0.706679 0.974393 -0.264704 1.430407 -0.937309 0.136187 0.421064 -0.998388 -0.360572 -0.061636 1.332833 -0.236182 -0.194677 -1.947954 -0.419086 -0.455114 -0.215791 1.467581 -0.672649 -3.658219 -3.070843 -1.740395 1.989552 -0.863647 0.220525 -0.849217 -0.439872 -0.633468 0.097221 -2.184875 0.046958 -0.101686 -1.789543 -2.363610 0.357164 -0.552184 -0.935668 0.278058 -1.806279 -0.426696 1.332279 0.836199 0.899856 0.033986 0.277730 -2.700868 -1.556408 0.289109 -1.513974 1.533138 1.397895 -0.344066 -2.722685 -0.897110 -1.988890 1.396073 -1.672269 0.594914 -0.950797 -0.798196 2.227870 -1.222744 0.470361 -1.584397 0.804335 1.355713 -4.794496 2.849719 2.038445 -0.673987 -0.065371 0.467279 0.105373 1.630764 1.590621 -1.722449 -1.574521 0.265870 -0.988254 0.164478 -0.180490 1.650366 -1.355839 0.361786 -1.479134 -0.925467 1.012256 1.063279 0.456039 0.739193 1.056434 -0.064759 0.973148 1.876787 1.505217 -0.165676 -1.805612 -4.713583 1.823810 0.746214 -0.338930 0.616702 -1.083451 -1.589821 0.693280 -0.618713 1.967130 -0.628230 -0.691911 1.782306 -2.540239 -2.112381 -1.060615 -0.523494 0.112259 -0.139360 0.844630 -0.863760 0.554107 0.486547 -0.489439 -0.469641 -0.460024 -0.269220 0.302194 1.738629 1.463074 0.725710 2.252353 0.646084 -1.863915 -0.137763 0.053638 -0.244300 -0.749560 -2.146365 -0.668011 -0.238692 0.628555 -0.908509 0.449322 -0.250070 -0.280338 0.244324 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.720495 0.035110 0.625603 0.654780 0.218247 -0.493038 0.452921 1.021205 -0.149417 -2.039137 -1.476719 0.560714 -0.178455 -0.146269 0.507119 -0.116003 0.183685 0.472928 -2.675713 0.455161 0.860375 0.659579 0.445333 -0.565831 0.341898 -0.430910 -0.588883 0.693404 0.254929 1.248772 -0.736139 -0.056296 0.969425 0.327440 0.389178 1.149936 0.178842 -0.114988 0.306318 -0.224794 1.804189 0.707749 -0.204960 0.926877 0.689383 1.266695 -0.214157 0.652698 0.304946 -0.796795 0.475197 -1.073729 -1.008458 -0.202206 -0.772963 0.624698 1.323343 0.928776 -0.686354 0.857263 -0.082950 -0.057564 0.219103 -0.908379 0.916828 0.825992 0.294629 0.470263 1.523355 -0.877532 -0.362693 0.577867 0.757159 0.227250 -0.165381 -0.795098 -0.303244 -2.134314 -0.006488 -2.379172 -0.747664 -0.313740 1.629783 -1.071476 0.584344 1.001062 -0.373730 0.766146 -0.352049 -0.309643 -0.982390 0.113952 0.046377 1.328078 -0.061388 -0.067246 0.270345 0.372557 0.718945 1.107532 -0.000467 -0.548130 -1.485793 -2.373359 -0.263149 -0.293821 0.288800 0.147665 -1.188919 -0.333147 0.901089 1.109467 -1.587584 -0.352827 1.014501 0.750899 -0.902730 -0.209845 -0.907335 -0.115234 -0.078029 0.141696 0.604154 -0.974005 -0.153673 -0.453923 -0.133084 0.039915 0.487815 -0.180757 -0.897568 -1.024570 -0.004037 0.010668 -0.201257 -0.120614 0.069467 -0.313710 0.684649 -0.904241 1.022106 -1.376363 0.274120 -0.434594 -0.430360 -0.236262 1.470512 0.712360 0.288703 0.241296 -0.427703 -0.449161 -0.788092 -1.447080 0.749554 0.080365 1.230342 0.006039 -0.149131 0.185515 -0.397914 -0.435836 -0.338880 -0.519988 0.044453 -0.385853 0.889272 -0.309955 -0.272299 -1.068489 0.323393 0.990355 -0.585879 0.105236 -0.640007 -0.406736 -1.028787 -1.228360 1.018451 -0.309264 -0.010769 -0.338601 0.271853 -0.815993 0.477465 -0.892046 0.316057 -0.047494 -1.281971 -1.304719 0.113285 -0.390651 -0.101802 0.341862 -0.724017 -0.235583 0.383990 0.787014 0.333249 0.157059 0.222398 -1.331939 -1.262662 -0.554083 -0.229207 0.858124 0.585152 0.128258 -1.268913 -0.323307 -0.818875 1.335147 -0.637212 0.115988 -0.622397 -0.467432 1.450700 -0.320794 -0.113535 -1.205504 0.515067 0.724934 -1.904848 1.371702 0.775625 -0.678096 -0.645710 -0.760212 -0.066155 1.035056 1.460126 -0.682270 -0.656395 0.450981 -0.606333 -0.064223 -0.776553 0.944908 -0.349475 0.821950 -1.055205 -0.729072 0.525560 0.878964 0.000191 1.064647 0.715965 0.868212 0.253364 1.263105 0.443826 -0.406314 -0.870866 -1.996901 0.915245 1.564461 0.380726 0.256899 -0.893068 -1.132660 0.225834 0.408189 1.171882 1.172357 0.103907 1.002379 -0.716717 -1.105338 -0.228565 0.149683 0.337950 -0.569418 0.237409 -0.282859 0.302326 0.470547 -0.080304 0.687798 -0.658731 -1.463597 -0.193827 1.065105 0.672945 -0.028429 1.321477 0.091424 -0.991681 0.146306 -0.124556 0.469701 -0.065737 -0.299578 -0.448623 -0.522641 0.209301 -0.478167 0.933031 0.016253 -0.135450 0.376739 -PE-benchmarks/word-wrap.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.667301 0.530200 -1.125633 2.274372 -0.265842 -1.354241 0.210343 1.143370 -1.019475 -4.284321 -3.202532 0.789483 0.537548 -0.320466 1.199003 1.318385 -0.417154 0.520927 -4.685895 1.486860 1.991029 0.676318 -0.257371 -0.468580 0.580357 -1.059255 -1.340988 0.217711 0.161327 2.553644 -1.371318 1.334814 2.079871 -0.348390 0.610016 1.728960 -1.204023 0.242265 1.044767 0.586820 3.112489 1.395357 0.102840 0.769924 0.640384 2.361377 -1.282202 2.868920 -1.578152 -1.777235 2.180932 -0.460687 -1.500895 0.583794 -1.233194 1.244131 2.915286 1.395435 -0.906993 1.119510 -1.528115 0.160623 0.759177 -0.754296 3.089644 2.269526 1.752614 1.530252 3.071897 -0.782737 0.206321 0.877198 0.592486 -0.945989 0.974674 -1.563003 -1.370004 -1.512417 -0.267636 -4.309232 -0.887598 -0.000730 5.172821 -2.616513 0.013679 0.898139 1.011482 2.692066 -1.474593 0.249125 -1.422969 0.216001 -1.620435 3.626594 -0.035376 0.697930 -0.925376 0.968499 0.847430 1.278166 -1.076264 -1.156587 -2.858024 -4.141400 -1.786834 -0.549783 0.740630 1.159951 -4.166822 -0.548724 0.805535 2.092876 -4.088129 0.199888 1.727072 1.643498 1.210621 2.017798 -3.435381 -0.144770 -0.089593 0.742787 1.235517 -0.626738 0.140827 -2.478294 0.249880 0.175567 0.648232 -0.299114 -3.569699 -1.127799 -0.334827 -1.465862 0.133333 0.996579 1.507714 -1.120632 1.624541 -1.492213 1.610828 -4.327702 -0.433636 -1.532741 -3.065325 -0.307992 2.127135 3.169273 1.214714 -0.532802 -1.220718 -1.119077 -3.792499 -2.826067 -0.076647 -0.508691 1.635045 0.082811 -0.144442 0.502652 -0.840786 0.375105 0.795777 -1.239990 -0.133083 -1.148970 4.549052 -0.142262 -0.759097 -2.165109 -1.150436 0.119117 -0.947588 1.475695 -0.349591 -1.795750 -4.063593 -1.901324 2.073165 -0.582068 0.588709 -1.868017 0.530643 -2.709126 0.389168 -1.975517 -0.103499 0.248375 -1.502903 -2.466236 -0.062805 0.066456 -1.454044 -0.688856 -1.630490 -0.544257 3.130961 1.165011 1.231726 0.361947 -0.143899 -2.487582 -2.508172 0.185683 -1.332587 1.887899 2.646654 -0.256781 -1.878619 -0.496622 -3.093459 2.179317 -1.082200 0.272540 -0.902188 -0.275768 2.766032 -1.733705 -0.571195 -2.394738 0.342553 -0.132008 -5.024844 3.136206 1.527915 -1.203063 -0.122737 -1.235481 0.948536 1.503577 1.980250 -0.954461 -0.742559 0.004867 -0.897770 -0.147447 -0.728879 1.925063 -2.287750 0.914508 -1.311198 -0.579485 1.675631 1.766688 -0.134276 1.108022 0.209283 0.082412 1.667663 1.363586 1.461895 -1.737265 -1.542265 -5.069182 1.013003 -0.256640 -0.731449 -0.367977 -0.858505 -1.827064 0.198484 -0.179818 2.638183 1.164068 -0.274918 1.741824 -2.583242 -2.523623 -1.185002 1.017487 -0.078742 -0.926176 -0.197601 -0.751276 0.617737 1.620972 0.392815 0.942361 -2.903765 -2.319260 -0.256954 2.848174 0.441900 -0.316044 2.541469 0.885191 -0.914062 -0.613341 0.213128 0.356683 -0.297843 -1.497422 -1.102247 -0.747997 0.355762 -1.293445 1.702342 -0.340417 -0.023780 1.341571 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 5.868813 4.308982 -10.301760 24.005389 -3.650787 -3.803737 -0.939899 3.289931 -7.676998 -36.084643 -20.085703 12.460313 5.860438 8.829518 5.118187 8.553071 -3.769750 1.873502 -36.028040 6.806012 16.650712 6.606269 3.415685 -0.706913 4.560550 -7.750937 9.467321 0.493082 6.298051 21.695727 -9.671280 14.416013 18.587577 -5.697382 5.630940 12.342020 -4.931531 4.581625 -8.842777 -0.390207 22.428580 9.639283 0.275200 7.466132 -3.324737 20.077232 2.247912 10.337263 -4.949402 -18.160539 6.411887 12.033873 -8.447406 -4.429413 -7.751569 8.621667 14.515022 14.348161 -7.238366 4.136350 -4.412330 -2.946635 5.650918 1.075714 19.964064 8.895587 17.352882 16.342114 17.812883 -11.494339 0.344872 7.330556 -2.765196 -3.329265 15.853518 -11.873978 -19.182594 -0.551406 -5.506432 -29.415399 -15.068884 3.101365 28.821901 -20.828007 -0.764256 -0.900521 2.871636 21.063455 -8.063741 3.942991 -13.679044 -4.882031 -9.008265 23.681545 3.733052 -0.360463 -1.505937 8.357364 6.920758 10.677063 -0.083419 -14.315936 -5.196294 -19.623665 -8.355158 -8.556045 12.176805 19.092747 -25.725676 -5.341954 -9.332503 19.257469 -31.743519 2.042223 12.112881 15.948726 19.925249 0.798520 -16.022576 3.579992 4.378919 -0.591624 15.922027 -8.613076 4.705219 -2.659448 2.090804 -0.557526 4.003771 3.573932 -24.516258 -15.574489 -2.606110 -7.479944 3.137353 8.249167 16.333020 -7.526182 14.100742 -10.046619 15.055629 -26.302202 -3.023329 -4.370242 -18.770481 -7.501058 8.019388 17.000013 9.639636 -13.394132 -13.882953 -4.070227 -26.913954 -21.319145 1.604998 6.266935 3.940079 12.472679 -4.387568 14.115731 -11.945138 7.800720 11.472250 -5.059305 -4.896627 -0.524402 16.422772 2.427758 -2.270139 -11.578572 -7.954649 -12.622862 0.439336 22.929162 -2.273947 -21.413882 -36.510643 -11.817097 17.987901 -7.287388 0.937657 -13.914016 -4.498505 -17.607334 -0.042262 -20.644360 -0.900753 1.291799 -10.350020 -20.636923 4.005035 -1.913478 -10.037229 2.073847 -14.717063 -5.602068 18.794626 3.307170 9.608910 -2.416613 1.020142 -16.106063 -11.418036 9.157994 -17.197388 13.834389 8.913559 -5.365283 -16.334814 -7.107318 -18.146631 13.120132 -1.328182 6.792812 -7.135522 1.089244 17.077629 -14.126225 0.822184 -14.874505 3.102641 7.508706 -31.495636 22.205512 11.402009 -2.888103 4.112135 7.622951 4.168608 10.166497 5.366247 -11.850321 -15.625922 -0.253061 -5.067058 2.130676 -5.595662 10.231605 -17.395602 -1.316851 -8.820894 -4.310489 10.787728 7.975149 1.463130 6.115469 8.346897 -9.005046 7.775609 11.082061 17.473039 -4.916230 -11.731319 -28.755695 13.114363 -11.213427 -5.805037 -7.590530 -5.909447 -9.915615 8.289791 -3.939619 16.998372 2.475164 -10.276511 15.828610 -26.503181 -18.640465 -13.966018 -1.039394 0.110247 1.234217 -3.838211 -6.071985 10.249173 10.563425 -3.995855 -2.071053 -15.709823 2.141143 2.613760 18.953290 0.142119 7.332087 20.283870 7.899632 -8.500881 -4.189466 5.547426 -6.041758 -7.591932 -19.335390 -7.302347 2.087215 5.541468 -9.644718 0.751447 -8.175850 -5.675632 6.037332 -PE-benchmarks/strongly-connected-components.cpp__main = 0.543830 0.190633 1.194023 -0.126055 0.570098 -0.179459 0.567273 1.056221 -0.452348 -1.154839 -1.360739 -1.006249 -0.394608 -0.362249 0.703148 -0.521075 0.455464 0.205631 -1.739664 0.005282 0.580334 0.319474 0.367724 -0.217948 0.186758 -0.312143 -1.808157 0.842760 -0.047010 0.635217 -0.318215 -0.395788 0.428441 0.518957 0.088542 0.819999 0.178571 -0.204500 1.164401 0.024800 1.309350 0.074218 -0.060900 0.533968 0.894677 0.701286 -0.989547 0.836311 -0.515683 -0.284665 1.057493 -2.348765 -0.593818 0.188924 -0.532893 0.302813 1.602867 0.877234 -0.453427 0.855832 -0.482968 0.088471 -0.050481 -1.240449 0.339458 1.073631 -0.214629 -0.124822 1.000447 -0.563252 -0.507699 0.558155 0.419918 0.184089 -1.777076 -0.646071 0.965884 -2.645980 0.280333 -1.790596 -0.268461 -0.535640 1.497210 -0.189974 0.320399 1.219413 -0.540895 -0.000246 -0.193041 -0.323674 -0.553738 0.303577 0.063916 0.425913 -0.353155 -0.079851 0.477456 -0.072667 0.589950 0.974738 -0.610241 0.228491 -2.270253 -2.044514 -0.451596 0.254371 0.175186 -0.461598 -0.548885 -0.313283 1.495165 -0.285637 -0.527907 -0.469383 0.636793 0.790575 -1.992859 1.131678 -1.503018 -0.793337 -0.128098 0.244582 0.374279 -0.350212 -0.048033 -1.507772 -0.312421 -0.053423 0.289335 -0.520896 -0.377042 -0.524692 -0.170707 -0.536115 -0.276198 -0.517890 -0.443544 0.251553 0.394621 -0.564431 0.596657 -1.150347 0.346142 -0.573862 -0.542055 0.116599 1.466814 0.870234 -0.164426 1.022602 -0.272803 -0.381197 -0.048889 -0.343896 0.186659 -0.098644 1.699226 -0.615014 -0.082505 -0.172188 0.010754 -0.737936 -0.843357 -0.138535 0.255124 -0.679563 1.326202 -0.356823 -0.295805 -1.064549 0.747112 1.429286 -1.352061 -0.603463 -0.603195 1.021314 0.012747 -0.979436 0.440580 -0.050534 -0.025163 0.071828 0.712071 -0.730048 0.575461 -0.275180 -0.052649 -0.042355 -1.281076 -0.668831 0.229382 -0.255152 -0.241095 0.377742 -0.155808 -0.229457 0.648063 1.256173 0.380857 0.238184 -0.073215 -0.808997 -1.237099 -1.179616 0.303408 0.354986 0.871923 0.142580 -0.477428 -0.124057 -0.415392 1.097636 0.236212 -0.292957 -0.477829 -0.330953 0.849997 0.013357 -0.022215 -0.983452 0.145830 0.469106 -1.870569 0.616246 0.175679 -0.648188 -1.085428 -1.676362 -0.223024 0.564772 1.232017 0.095785 0.160594 0.407339 -0.350159 -0.131341 -0.805452 0.623229 0.257852 0.724697 -0.933458 -0.793425 0.446324 0.844483 -0.170085 1.036398 0.581624 1.681236 0.572498 1.032027 -0.205322 -0.960951 0.002809 -1.517198 0.460066 2.315685 0.332586 0.181711 -0.617593 -1.068422 -0.248158 0.702529 0.730126 1.820694 0.676956 0.626694 0.660180 -0.466542 0.111797 0.652103 0.374170 -1.045995 -0.249216 -0.184577 0.081550 0.370922 -0.048247 1.372846 -0.770815 -2.581370 -0.669107 0.764381 0.383555 -0.118491 0.756406 -0.119717 -0.570055 0.172671 -0.009043 1.052690 0.620538 0.521153 -0.346210 -0.745327 -0.188320 -0.087565 0.821731 0.403384 -0.050506 0.779734 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.713124 0.706134 -0.050233 4.017117 0.883349 -2.533367 -0.460590 3.681321 -1.830232 -7.149590 -5.962125 2.447153 -0.319329 0.965246 3.901101 1.037437 -0.077245 0.239260 -9.990324 3.135714 1.965625 1.503230 0.388496 -2.163745 2.139405 0.527209 -0.803021 1.009573 1.373223 3.653622 -4.266823 1.265033 2.756015 0.495352 2.971080 0.685140 0.083532 -0.146736 -0.920499 -1.454664 7.218597 2.380994 0.531235 4.081929 2.138349 3.610540 -1.476154 5.157342 1.199403 -2.723550 3.592590 -3.933940 -2.684955 1.501324 -3.122190 3.814689 4.882441 2.280551 -2.722752 2.036240 0.426579 0.235669 0.850998 -4.039377 5.346942 2.912910 3.326318 1.890342 5.187850 -2.007599 -0.678487 1.643482 4.021647 0.454116 -0.452558 -5.525319 -0.769156 -6.586273 0.689152 -8.278091 -1.537347 -1.799795 6.843656 -4.666873 2.215839 2.857161 -1.697573 3.558363 -3.022885 0.978867 -2.858433 -0.281565 -1.236292 4.952410 -0.778948 -0.484928 1.439992 1.429073 2.321797 4.317354 -0.616077 -0.784193 -3.793805 -7.258892 -2.466213 2.574638 1.741357 0.790928 -4.414622 -0.536654 0.694229 2.958498 -5.087778 -2.288908 3.170072 2.489674 -1.342876 1.847523 -3.879949 -1.447089 -0.047848 2.131254 2.525347 -2.973526 0.865084 -3.414855 -0.881818 0.823408 3.845067 0.022256 -2.621446 -3.779594 -1.237926 -0.314921 -1.430071 -1.463180 0.731419 -1.895672 3.866281 -1.121580 2.777609 -5.768689 -1.192605 -2.364148 -2.177734 0.178127 6.100384 2.435455 2.466693 2.122493 -2.177853 -1.918452 -4.237157 -4.190380 2.425493 1.197065 3.093137 1.268118 0.081972 1.963176 -0.829462 -2.532652 0.933713 -3.156773 -2.201922 -3.340596 3.069859 -1.204819 -0.843769 -5.197436 1.564269 2.782310 -3.285130 1.111258 -0.612946 -3.843623 -4.186794 -3.747639 3.489755 -0.600990 1.510294 -0.906361 2.616659 -4.267420 0.667260 -5.036995 0.942291 0.593186 -5.133619 -3.793978 -0.395207 -0.489621 0.152958 -0.255865 -2.642504 -0.063066 2.613688 5.400689 0.534796 1.645619 1.395064 -6.421045 -6.733017 -2.054795 -1.055476 3.468228 0.697541 -0.134997 -4.370353 -1.298547 -3.088988 4.478744 -3.560791 -0.066044 -2.890071 -0.156506 4.360319 -2.202984 -1.328863 -4.408924 1.032565 2.260725 -8.309197 4.423643 2.014954 -2.179581 -1.549124 -3.809232 1.760191 3.195122 6.547963 -1.828851 -1.371759 0.298602 -0.243672 -0.542766 -3.604994 4.628479 -2.135142 0.813185 -3.062750 -3.107161 1.478210 2.782514 1.230197 3.257667 2.502120 2.868200 0.700235 4.982586 1.737419 -2.355641 -2.433304 -8.734048 1.861653 7.289844 0.188699 0.643773 -3.911999 -4.335000 -0.712899 0.831638 4.059408 3.904423 2.565794 3.111338 -3.221982 -3.658936 -1.012412 2.170940 -0.739959 -1.979904 -0.411327 -1.943611 0.659533 2.625732 -0.495432 1.189991 -1.802027 -6.256374 -2.688758 3.135304 1.158652 1.331076 4.672112 2.783627 -3.641298 0.508781 -0.054805 1.231926 -0.446335 -2.124460 -2.344561 -2.049787 -0.927806 -2.013728 1.765099 0.231117 -0.692234 0.538746 -PE-benchmarks/n-queen-problem.cpp__main = 0.024480 -0.074440 0.185554 0.160291 0.109320 0.006089 0.107043 0.049446 0.012837 -0.390726 -0.180377 -0.132491 -0.057397 -0.003572 0.117371 -0.021393 0.139316 0.222189 -0.211690 -0.009017 0.121563 0.116731 0.138214 -0.048848 0.026694 -0.097885 -0.155407 0.109456 0.077951 0.257853 -0.165089 0.010156 0.205512 0.076041 0.015335 0.214261 0.276412 -0.023748 -0.002903 0.000611 0.383052 -0.069621 0.027827 0.153315 0.082522 0.262065 0.006512 0.167872 0.179230 -0.124581 0.128431 -0.448441 -0.057976 -0.019123 -0.247586 0.155182 0.203902 0.285417 -0.161900 0.186296 -0.023009 0.081357 0.046777 -0.251032 0.137209 0.156305 -0.026448 0.126666 0.297710 -0.225007 -0.049422 0.064752 0.141979 0.070264 -0.020594 -0.102814 0.106413 -0.694499 -0.089082 -0.235865 0.027355 -0.039140 0.269000 -0.209332 0.090283 0.352575 -0.142452 0.130637 -0.025734 -0.027071 -0.285304 0.064870 0.139899 0.096244 0.073815 -0.094885 -0.029341 0.042436 0.062685 0.145368 0.073142 -0.109848 -0.348425 -0.541597 -0.243595 -0.082407 0.017111 -0.065328 -0.249580 -0.032373 0.339961 0.176508 -0.339333 -0.041470 0.126320 0.182620 -0.287507 -0.143724 -0.122952 -0.061588 0.010016 0.072462 0.069584 -0.215745 0.007871 -0.226498 -0.062835 0.000562 0.134563 -0.113583 0.110561 -0.187423 -0.074526 0.093964 -0.051786 -0.051712 0.002394 -0.075977 0.150431 -0.163568 0.199170 -0.181707 0.026900 -0.067730 -0.121897 -0.085644 0.644431 -0.002794 0.156114 0.121010 -0.267240 -0.117823 -0.113151 -0.324876 0.133473 -0.016485 0.250133 0.128793 -0.055826 0.009304 -0.077834 -0.103960 -0.045385 -0.134041 -0.034202 0.009816 -0.123963 -0.138021 -0.085165 -0.382115 0.150143 0.386949 -0.141048 -0.028707 -0.163575 0.082797 -0.096273 -0.243136 0.197623 -0.106162 0.099065 -0.003103 0.045213 -0.202910 0.161102 -0.165239 -0.006201 0.000000 -0.314405 -0.306070 0.074579 -0.133346 -0.043835 0.184938 -0.180936 0.073733 -0.100591 0.127448 0.041166 0.018945 0.031281 -0.308501 -0.313534 -0.227355 -0.050908 0.117208 0.054823 0.088958 -0.229134 -0.137773 -0.081629 0.248174 -0.216783 0.023741 -0.000821 -0.105633 0.168241 -0.097774 -0.017005 -0.220943 0.120232 0.159020 -0.381049 0.206969 0.168730 -0.208172 -0.156577 -0.250338 0.061492 0.121863 0.366352 -0.126581 -0.009868 0.154792 -0.037830 -0.011158 -0.256819 0.137431 0.007946 0.105695 -0.269711 -0.169256 0.085357 0.231224 -0.049238 0.123132 0.268158 0.250474 -0.041417 0.300451 0.057616 -0.010196 -0.110022 -0.309375 0.149663 0.458916 0.154819 0.203016 -0.275519 -0.044756 0.091743 0.078155 0.223927 0.303942 0.170953 0.259549 -0.081880 -0.197364 0.073991 -0.045643 0.123293 -0.222201 0.155258 -0.136189 -0.008706 -0.022971 0.039758 0.070989 -0.031274 -0.287151 -0.002754 0.202906 0.116390 0.032243 0.267114 -0.005979 -0.224233 0.100985 -0.036261 0.122408 0.055222 -0.000884 -0.053432 -0.036290 0.040508 -0.143792 0.221714 -0.152731 -0.060811 0.081401 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.492697 0.108339 0.611529 0.533817 0.093790 -0.271495 0.367222 0.877031 -0.210628 -1.794559 -1.356215 0.351486 -0.168267 0.042376 0.501338 -0.139805 0.195943 0.358936 -2.525422 0.268761 0.829643 0.534163 0.528496 -0.389095 0.308769 -0.407830 -0.531816 0.619334 0.249646 1.109084 -0.637098 0.032526 0.862825 0.321099 0.389417 0.962616 0.023142 -0.109968 0.210636 -0.235911 1.530315 0.605818 -0.248438 0.704646 0.499357 1.124115 -0.154046 0.229480 0.256418 -0.747376 0.318948 -0.976095 -0.846479 -0.161496 -0.613775 0.428677 1.073667 0.885199 -0.578518 0.734164 -0.090880 -0.046435 0.145653 -0.857281 0.793792 0.557273 0.330729 0.401869 1.092031 -0.812889 -0.274977 0.419113 0.453241 0.147516 -0.369900 -0.611034 -0.145205 -2.014546 0.034836 -2.253660 -0.768985 -0.187928 1.247608 -0.876560 0.506230 0.811263 -0.488994 0.648770 -0.273746 -0.242627 -0.884237 0.008523 0.130864 0.942259 0.012493 -0.218048 0.407724 0.370630 0.661679 0.947554 0.010182 -0.465646 -1.273147 -2.002363 -0.126878 -0.233965 0.405495 0.239824 -0.879376 -0.280217 0.842192 0.957088 -1.307124 -0.287152 0.848100 0.718500 -1.098210 -0.339339 -0.758083 -0.110102 -0.098489 0.170877 0.707835 -0.884675 -0.003153 -0.312330 -0.125653 0.031807 0.491452 -0.068352 -0.666421 -0.999439 0.077432 -0.042451 -0.221459 -0.053950 0.108812 0.002178 0.640205 -0.796736 0.962058 -1.103330 0.444695 -0.347149 -0.215706 -0.234235 1.113872 0.769661 0.001825 0.229663 -0.364091 -0.216390 -0.621889 -1.150958 0.675854 0.289647 1.116106 0.030257 -0.187663 0.306613 -0.384459 -0.277900 -0.370349 -0.408826 0.001465 -0.285419 0.602363 -0.138322 -0.285453 -0.835934 0.378840 0.782123 -0.675816 0.146742 -0.570692 -0.100298 -0.895917 -1.047899 0.909053 -0.301950 -0.052380 -0.255710 0.252839 -0.665649 0.445017 -0.817607 0.224079 -0.016835 -1.120042 -1.138222 0.105314 -0.351105 -0.113768 0.391623 -0.606211 -0.253879 0.383415 0.620056 0.325979 0.094907 0.268341 -0.948353 -0.961830 -0.464167 -0.332027 0.618589 0.484041 -0.003181 -1.199055 -0.293714 -0.569632 1.196380 -0.243026 0.165157 -0.677180 -0.453155 1.149891 -0.234461 -0.042116 -0.895208 0.432192 0.753067 -1.722842 1.069582 0.668080 -0.513931 -0.527877 -0.632626 -0.058798 0.855274 1.147805 -0.555300 -0.554734 0.301558 -0.568269 0.014339 -0.641419 0.798339 -0.243937 0.518436 -0.893614 -0.603296 0.529861 0.629961 0.091072 1.054854 0.762030 0.851123 0.282349 1.064442 0.363621 -0.396989 -0.678751 -1.599542 0.866310 1.546100 0.377264 0.173424 -0.706153 -0.982398 0.133847 0.340488 0.931167 1.124934 -0.047004 0.891418 -0.489127 -0.902172 -0.352805 0.106339 0.247380 -0.443108 0.119928 -0.158580 0.335934 0.445554 -0.131111 0.677935 -0.535598 -1.322716 -0.158003 0.907833 0.598045 0.075358 1.129327 0.053263 -0.924055 0.085703 -0.081357 0.307826 -0.017384 -0.244384 -0.448634 -0.372393 0.205640 -0.425884 0.564587 0.024263 -0.166619 0.304282 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.492555 0.434797 0.695329 0.406308 -0.007689 -0.868092 0.618969 1.313903 -0.492890 -1.632101 -1.058722 -0.884692 -0.163305 -0.516233 0.735241 -0.379127 -0.305245 0.705698 -2.783905 0.548954 1.322495 0.970436 0.686826 -0.853377 0.438980 -0.096927 -2.063156 0.424751 0.110481 1.256200 -0.703497 -0.217117 0.807206 0.434177 -0.001745 0.934643 0.161444 0.239769 1.337915 0.418291 1.219068 0.793461 -0.468252 0.220284 0.572436 0.947713 -0.885949 0.477719 -1.295035 -0.799093 0.443350 -1.937653 -0.656964 0.255581 -0.001685 0.598917 1.925325 1.788386 -0.256563 0.940066 -0.943257 0.043544 0.237562 -1.084182 0.626920 1.406874 -0.381529 0.272365 1.602043 -0.407427 -0.050833 -0.053486 0.146520 -0.931191 -0.664297 -0.300378 0.027278 -3.388783 0.034680 -2.616740 -0.769868 0.179089 1.536122 -1.088009 1.092552 1.475695 0.445827 0.657206 -0.588450 -0.274932 -0.538184 0.217868 -0.470002 1.873528 -0.125570 0.137541 -0.004019 0.389211 0.993162 0.698312 -0.372648 0.134296 -2.010345 -2.313906 -0.309473 0.096702 0.022960 0.156075 -1.315272 -0.493836 2.051261 0.540326 -1.742993 -0.069298 0.843025 1.071348 -1.462657 0.343864 -1.294994 0.132304 -0.627989 -0.218443 0.447991 -1.115100 -0.268413 -1.100855 -0.592618 0.128504 0.213889 -0.488005 -0.869433 -0.437937 -0.222613 -0.983121 -0.102401 0.161628 -0.083448 -0.202066 0.516954 -1.404878 0.770293 -1.168363 0.538360 -0.108140 -1.053661 0.016574 1.289169 0.723588 -0.849062 0.143515 -0.714331 -0.640192 -0.655013 -1.088078 0.520693 0.040248 1.743188 -0.416512 -0.154214 -0.390363 -0.303598 -0.326381 -0.532024 -0.348825 0.316472 -0.391018 2.085298 -0.359441 -0.327295 -1.248483 0.169731 1.313265 -0.981881 -0.311029 -0.568952 1.193653 -1.002966 -1.075745 0.908800 0.014020 -0.100256 -0.756610 0.775133 -0.974386 0.722295 -0.542863 0.367566 0.196830 -0.746101 -1.098571 0.025440 -0.189610 -0.274902 0.034074 -0.306882 -0.430970 0.602586 0.535395 0.294682 -0.026649 0.489730 -0.939031 -1.241840 -0.674143 -0.036774 -0.021911 0.648591 0.319529 -0.662105 -0.053577 -0.743751 1.358265 0.208778 -0.155787 -0.929212 -0.275454 1.673721 -0.066046 -0.671027 -1.398835 0.130323 0.271647 -0.530902 1.263464 0.055883 -0.448547 -0.492002 -1.172807 -0.016518 1.135368 1.320797 -0.388106 -0.446269 0.314317 -0.931666 -0.113881 -0.639749 0.783530 -0.824944 1.027046 -0.463341 -0.217885 0.429262 1.012444 -0.177444 1.349836 0.495937 0.765100 0.577915 0.663241 0.313676 -1.077046 -0.451279 -1.063603 0.710087 1.003379 0.679182 -0.728778 -0.599999 -1.057087 0.215764 1.502355 1.007680 2.619661 0.121100 0.675216 -0.562387 -0.913112 0.043450 0.980781 0.336090 -1.093722 -0.557495 -0.048087 0.519900 1.117218 0.169070 1.615295 -1.252955 -2.325756 -0.592264 0.977239 0.190935 -0.655188 1.228720 0.070902 -0.730372 0.218896 -0.210820 0.803446 -0.327449 0.931550 -0.178625 -0.574673 0.097818 -0.439342 1.439833 0.021259 -0.598836 0.977506 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/topological-sorting.cpp__main = 0.599953 0.215168 1.339743 -0.163384 0.614151 -0.171747 0.638561 1.186922 -0.520151 -1.256791 -1.529450 -1.141322 -0.440968 -0.386864 0.788383 -0.601870 0.503801 0.180688 -1.961895 -0.025258 0.640524 0.326309 0.405248 -0.211415 0.198492 -0.353548 -2.031033 0.966326 -0.071605 0.688171 -0.316562 -0.443794 0.460268 0.580620 0.085540 0.901613 0.156385 -0.219722 1.306809 0.030598 1.422451 0.087844 -0.089525 0.572970 0.985066 0.766116 -1.121589 0.921889 -0.603078 -0.309301 1.201690 -2.620374 -0.666259 0.206823 -0.565012 0.291510 1.796946 0.961482 -0.480213 0.956649 -0.569409 0.089958 -0.070731 -1.368458 0.365089 1.192302 -0.216601 -0.164836 1.061080 -0.629839 -0.570916 0.627418 0.425581 0.200364 -2.059446 -0.716759 1.088720 -2.927127 0.344933 -2.003072 -0.337795 -0.599667 1.640826 -0.167552 0.321077 1.322336 -0.620963 -0.029527 -0.220431 -0.346262 -0.591004 0.324291 0.074260 0.453449 -0.400914 -0.091394 0.571958 -0.090959 0.673081 1.089477 -0.703089 0.278916 -2.535319 -2.239925 -0.471344 0.303015 0.216685 -0.503987 -0.565635 -0.351310 1.658836 -0.381886 -0.532425 -0.530282 0.706672 0.888969 -2.228219 1.321691 -1.691355 -0.896650 -0.126772 0.273992 0.460861 -0.369692 -0.024367 -1.682079 -0.332555 -0.059000 0.306287 -0.563130 -0.442847 -0.579232 -0.167398 -0.628097 -0.301119 -0.579049 -0.504452 0.342606 0.431878 -0.621275 0.665740 -1.288193 0.407841 -0.636232 -0.584719 0.142921 1.577627 1.023211 -0.218148 1.148241 -0.280898 -0.391995 -0.028554 -0.351196 0.180855 -0.071530 1.903138 -0.725696 -0.095812 -0.177766 0.012982 -0.801243 -0.959857 -0.120946 0.295337 -0.756256 1.492857 -0.359804 -0.335388 -1.140453 0.848403 1.544604 -1.532816 -0.660471 -0.654374 1.137831 0.032850 -1.071126 0.474675 -0.043415 -0.061439 0.093657 0.789135 -0.811774 0.630815 -0.283604 -0.068874 -0.031863 -1.431627 -0.718915 0.264070 -0.268346 -0.266341 0.424268 -0.150142 -0.291832 0.759976 1.414534 0.445400 0.275321 -0.081599 -0.844815 -1.347911 -1.312112 0.330110 0.392722 0.982946 0.134872 -0.496653 -0.120332 -0.453536 1.214014 0.333746 -0.331316 -0.559669 -0.369899 0.922924 0.035623 -0.017780 -1.070554 0.144684 0.530832 -2.080644 0.661604 0.188182 -0.695208 -1.221262 -1.857694 -0.273382 0.616215 1.332529 0.123564 0.179427 0.431637 -0.385688 -0.137252 -0.861549 0.679844 0.308618 0.764632 -1.019672 -0.875866 0.507208 0.912274 -0.178458 1.166724 0.642827 1.889621 0.664664 1.124434 -0.253137 -1.109448 0.040026 -1.692093 0.517005 2.591389 0.333421 0.180105 -0.674891 -1.208650 -0.290754 0.775727 0.781494 2.037298 0.722840 0.681235 0.791902 -0.491776 0.084165 0.733708 0.400847 -1.152216 -0.311764 -0.176021 0.111911 0.431099 -0.078678 1.556192 -0.868443 -2.894968 -0.763942 0.834557 0.405436 -0.122483 0.821606 -0.146790 -0.615164 0.162419 -0.000367 1.154754 0.723316 0.588051 -0.385245 -0.834287 -0.207333 -0.075281 0.862588 0.491197 -0.057279 0.883502 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 2.587535 0.395081 -0.174020 2.942367 0.796995 -2.446835 0.674541 2.242153 -0.727975 -5.626631 -4.138404 1.067978 0.157630 -1.349804 1.558074 0.719270 -0.013098 1.105004 -7.096709 2.349025 2.441645 1.450899 -0.333004 -1.732813 0.940824 -1.289945 -1.618677 1.123557 0.179856 3.348837 -2.205176 0.750977 2.538805 0.308639 1.645270 2.825492 -0.799970 0.105597 1.730882 0.508893 5.081828 2.599959 -0.253822 1.937780 2.216252 3.310117 -1.246112 3.123502 -1.625964 -1.987718 1.821062 -0.836878 -2.158221 0.282028 -2.353403 2.191401 4.802277 1.916000 -1.951629 1.942694 -1.330846 0.066553 1.076725 -1.285851 3.863010 2.837403 1.496049 1.797024 5.196464 -1.212555 -0.275890 1.296572 2.470324 -0.704089 1.219825 -2.029324 -2.266413 -3.490850 -0.368132 -6.305721 -0.746110 -0.432568 5.865342 -3.339738 1.133766 2.073841 1.069785 3.114406 -1.947066 -0.899113 -2.227897 0.635277 -2.245463 5.775003 -0.261190 1.215689 -0.579176 1.530656 1.490935 2.450066 -1.040606 -1.791137 -3.328777 -7.363025 -1.950239 -0.860370 0.462128 0.336791 -4.878663 -0.843123 1.419834 3.152373 -5.256042 -0.284262 2.359576 1.703677 -0.189135 0.013870 -3.699575 -0.216919 -0.719428 0.583658 0.939331 -1.600285 -0.668291 -2.790866 0.009023 0.371802 1.205738 -0.662691 -3.458686 -1.354839 -0.614246 -1.061388 -0.361843 0.506371 0.932520 -2.394118 1.953786 -2.559254 2.449784 -5.095045 -0.020112 -2.198628 -3.469993 -0.268678 2.591985 2.487113 1.363028 -0.178385 -1.073775 -1.664486 -4.380705 -4.730226 1.143129 -0.856247 2.530511 -0.378690 -0.154028 -0.064735 -1.276246 -0.851774 1.007731 -1.955363 -0.016671 -1.872630 5.980836 -0.770345 -0.908673 -2.857157 -0.782230 2.040585 -0.860164 1.019089 -1.294634 -2.045789 -4.516739 -3.009920 2.731022 -0.711785 0.483164 -2.086622 0.965208 -3.401502 1.238948 -2.614223 0.680373 -0.478813 -2.068864 -3.363604 -0.530748 -0.474968 -0.577854 -0.731761 -2.266285 -0.303176 3.174523 1.871988 0.969972 0.607152 0.316421 -3.936587 -3.782133 -0.314876 -0.416942 2.682806 2.604398 0.215524 -2.485014 -0.626749 -3.727371 3.233205 -1.682851 0.115409 -0.940666 -1.144146 4.330279 -1.737956 -1.273542 -3.554646 0.758159 0.087333 -4.677015 4.708286 2.014371 -2.286524 -1.070027 -2.311036 0.961657 2.248812 3.983074 -1.785774 -1.229063 0.707960 -1.612059 -0.492039 -1.762663 2.753877 -2.260052 2.592652 -2.630895 -1.580923 1.925442 2.855277 -0.378256 2.042397 0.240274 0.592246 1.418571 2.990929 1.783364 -1.269016 -2.904562 -6.183585 1.341727 0.133383 0.195236 -0.554711 -1.182595 -3.255241 0.040706 1.104319 3.941855 3.208424 -0.069148 2.557166 -3.324197 -3.564815 -0.922367 1.216164 0.510295 -2.024012 0.036874 -1.560474 0.598953 1.392134 0.889509 1.624875 -3.359116 -3.596676 -0.530640 3.196089 1.020548 -1.158541 3.644916 1.056460 -1.806504 -0.198303 -0.022657 1.093925 -0.194155 -1.310923 -1.609720 -1.880692 0.393630 -1.529898 3.437430 -0.262381 0.717138 1.785846 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 3.116895 1.697126 -1.798947 4.862401 0.104154 -2.242672 -0.254030 2.801786 -2.023701 -7.314947 -5.483493 5.280990 0.299906 0.685402 2.782707 1.807014 -0.158297 0.238981 -9.351877 2.921084 2.122343 0.894309 -0.190542 -1.710620 1.446593 -0.511438 0.788821 1.318393 1.160745 4.250629 -3.149816 2.012583 3.318274 0.356728 3.489235 1.618097 -0.470617 0.569701 -1.890466 -0.885235 6.728655 3.429127 -0.113073 3.441449 1.743156 4.653789 -0.465363 3.683273 0.855347 -2.664459 2.310552 0.242812 -2.936368 0.492441 -2.947890 2.613651 3.274222 1.342511 -2.667405 2.141247 -0.360411 -0.491456 0.891891 -2.264663 5.642071 2.103718 3.718116 2.688696 4.811043 -2.221450 -0.943388 1.608892 3.251840 0.150544 1.133603 -3.999143 -3.491867 -3.377627 0.052057 -8.324968 -2.898421 -0.878868 7.602962 -5.071269 1.115665 1.486466 -1.038525 3.791459 -3.033795 0.294847 -3.401965 -1.162575 -1.513834 5.707922 0.665393 -0.052963 0.939321 1.786954 2.608109 3.882509 -0.469462 -2.513476 -2.588893 -6.191890 -1.630919 0.890945 2.095729 1.712662 -4.098830 -1.396195 -0.144412 5.380950 -6.112999 -1.495018 3.772378 1.733881 1.391810 0.771517 -3.570904 0.656205 0.776320 1.219152 3.691078 -2.706267 0.132160 -0.761494 -0.126552 -0.087170 3.091671 0.679274 -4.594699 -3.600400 -0.232414 -0.601381 -0.628743 -1.095566 0.707919 -2.220024 3.692083 -1.351871 3.628200 -5.679545 -0.698726 -1.794985 -2.712266 -0.509445 4.160770 4.035186 3.401371 0.066030 -1.342480 -1.248775 -5.222720 -5.464837 2.873368 1.024315 1.954177 1.083899 -0.251972 2.326310 -1.850896 -0.469750 2.165713 -2.775636 -1.722638 -1.801547 3.629087 -0.243912 -1.037659 -3.893534 -0.293121 0.422276 -0.608613 2.438911 -0.931074 -6.980657 -5.368775 -3.377940 3.863910 -1.135473 1.030023 -1.543812 1.130454 -3.714937 -0.155420 -5.203740 1.630557 0.426178 -3.674635 -4.041995 0.063760 -0.650793 -0.300275 -0.375618 -2.586956 -0.674829 3.425778 2.949355 0.814860 1.185361 1.081183 -4.789179 -4.630640 0.149589 -2.152489 3.758940 1.301291 -0.064658 -5.239630 -0.870457 -4.434764 4.101046 -2.984436 0.466295 -2.679835 -0.889269 4.887791 -2.285279 -1.287222 -3.442152 1.556807 2.212781 -8.410241 4.003419 3.403043 -1.578304 -0.925152 -0.717239 1.025150 3.529129 5.265603 -2.562157 -2.704187 0.133249 -0.907067 -0.065234 -1.608702 4.096984 -2.836669 0.965178 -3.220700 -2.096090 2.368098 2.409867 1.269482 2.775191 1.511889 0.892745 1.020652 4.059107 2.655074 -1.325654 -3.068930 -8.573860 2.110952 3.406740 -0.649046 0.467932 -2.275693 -3.841685 -0.214503 -1.555756 4.207276 0.628801 -1.105814 3.438839 -4.256000 -4.303300 -2.377445 0.979269 -0.524956 -1.248798 0.732717 -1.441196 1.330531 2.480520 -0.681698 0.807624 -2.007220 -2.691319 -1.313401 3.108098 1.471339 1.198234 4.748428 1.946272 -3.439396 -0.323927 0.157959 0.080676 -0.321079 -5.304851 -2.500100 -1.888968 0.458742 -1.734500 0.831518 -0.068354 -0.410380 0.974211 -PE-benchmarks/binomial-coefficient.cpp__main = 0.751340 0.162771 -0.078954 0.439950 -0.029894 -0.616061 0.244812 0.872644 -0.327484 -1.545050 -1.449215 -0.407129 0.043039 -0.449802 0.813305 0.311458 -0.100745 0.352610 -1.877429 0.600693 0.854707 0.369322 -0.005790 -0.200366 0.268584 -0.332696 -1.776027 0.113267 -0.031770 0.939809 -0.554590 0.268586 0.710739 0.006387 -0.038528 0.657659 -0.403374 -0.070540 1.202282 0.446399 1.200127 0.430693 -0.064884 0.283586 0.497462 0.805672 -1.227486 1.506615 -0.860437 -0.570634 1.306865 -1.492433 -0.636865 0.576383 -0.375861 0.563902 1.567064 0.688357 -0.262325 0.624766 -0.873302 0.182709 0.220766 -0.948552 1.072121 1.394164 0.338278 0.366197 1.331211 -0.129235 0.076031 0.241138 0.316991 -0.434429 -0.419917 -0.530052 0.267502 -1.867377 0.018815 -1.780575 -0.196781 -0.293797 2.178451 -0.966226 0.222231 0.915462 0.387824 0.896562 -0.574667 0.114224 -0.455833 0.285081 -0.410163 1.133102 -0.231573 0.281958 -0.507405 0.229913 0.340485 0.453063 -0.615900 -0.029783 -2.215010 -1.980685 -0.931308 0.107739 0.063299 0.104388 -1.794868 -0.117221 1.281812 0.368664 -1.485065 -0.003749 0.665877 0.721926 -0.381425 1.619038 -1.873937 -0.380101 -0.177175 0.431719 0.218376 -0.246259 -0.016340 -1.866877 -0.097467 0.139034 0.225278 -0.434472 -1.129148 -0.304113 -0.178187 -0.668558 -0.025495 0.291462 0.349090 -0.329934 0.570562 -0.633797 0.498461 -1.791534 -0.201933 -0.699362 -1.143592 0.063725 1.627272 1.437300 0.252118 0.409208 -0.589108 -0.664843 -1.232798 -0.832188 -0.133424 -0.514266 1.284576 -0.371048 0.018201 -0.170860 0.011249 -0.081713 -0.325301 -0.539213 0.180815 -0.674742 2.121665 -0.294034 -0.332479 -1.253612 -0.273894 0.852750 -1.025921 -0.074699 -0.168231 0.333730 -1.100248 -0.851653 0.707605 -0.091130 0.397621 -0.661509 0.710339 -1.193112 0.321132 -0.478473 -0.201687 0.193387 -0.894605 -0.897707 -0.042037 0.079535 -0.633525 -0.306847 -0.468348 -0.185630 1.172647 0.987679 0.520003 0.254579 -0.174524 -1.109455 -1.395449 -0.589268 -0.308580 0.734378 1.289273 -0.002880 -0.623323 -0.088606 -1.202741 1.205710 -0.632813 -0.117653 -0.471960 -0.172666 1.155596 -0.513300 -0.588529 -1.282371 0.110491 -0.208337 -2.064237 1.099725 0.338898 -0.625947 -0.292599 -1.384962 0.403515 0.723042 1.125088 -0.052439 0.132520 0.063200 -0.341268 -0.151012 -0.575897 0.896299 -0.805152 0.654771 -0.505269 -0.238052 0.671559 0.915126 -0.168633 0.712105 0.122475 0.795885 0.809435 0.463009 0.297359 -1.236527 -0.332384 -1.946285 0.282271 1.011980 -0.096971 0.018327 -0.708272 -0.804208 -0.157757 0.307282 1.035583 1.106235 0.595977 0.579051 -0.479851 -0.862811 -0.091916 0.858665 0.003456 -0.727735 -0.025046 -0.153635 0.095573 0.878278 0.300759 0.961710 -1.423107 -2.112255 -0.384977 1.153137 0.232752 -0.365506 0.920181 0.285365 -0.460338 -0.101018 -0.104893 0.545289 -0.026497 0.135787 -0.316300 -0.486196 -0.096375 -0.501525 1.105523 0.052791 -0.097912 0.646346 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 2.123171 1.504234 -2.997055 7.639392 -0.998970 -1.295679 -0.216833 1.560278 -2.357287 -12.110948 -6.785657 4.301950 1.709746 2.917098 1.766530 2.545974 -0.846667 0.995567 -12.058007 2.288860 5.499774 2.545887 1.148396 -0.233295 1.613822 -2.359694 2.523834 0.024491 2.366598 7.296774 -3.493658 4.440734 6.208337 -1.898874 1.916216 4.233868 -1.001245 1.294285 -2.678332 -0.445774 7.806553 3.132419 0.281707 3.034028 -0.783488 6.739778 0.440651 3.828664 -1.125362 -6.132287 2.010055 2.819387 -2.953916 -1.293215 -2.701516 3.192570 4.747764 5.023638 -2.687829 1.596848 -1.029781 -0.964817 1.828051 -0.349656 6.283717 3.175728 5.178804 5.334990 6.167538 -3.817645 -0.008011 2.431266 -0.527621 -0.585429 4.893347 -3.987615 -5.730855 -1.081509 -1.843132 -9.888012 -4.850901 0.626086 9.926261 -7.159793 0.385868 0.272761 0.576376 6.766101 -2.498048 1.071921 -4.776836 -1.583654 -2.598819 7.344500 1.085830 -0.270347 -0.449320 2.641004 2.249127 3.635220 -0.026875 -4.708893 -2.313443 -6.844138 -2.776958 -2.734325 3.740737 6.123048 -8.427686 -1.823841 -2.772017 6.771087 -10.615286 0.498062 3.975824 5.102231 5.721068 0.840125 -5.385762 0.935239 1.295683 -0.292692 5.006155 -3.143947 1.352309 -1.073407 0.215467 -0.218331 1.470176 1.085839 -7.770648 -5.346675 -0.951081 -2.191707 0.725380 2.446418 5.138781 -2.691103 4.801142 -3.335049 4.872061 -8.418527 -1.320677 -1.301438 -6.142790 -2.552611 3.825687 5.382387 3.413981 -3.982089 -4.686130 -1.744502 -8.636549 -6.869187 0.984683 1.791163 1.792320 4.275437 -1.381083 4.473522 -3.871270 2.021481 3.231471 -1.752542 -1.531260 -0.272553 5.167473 0.332514 -0.593396 -4.454271 -2.275028 -3.358198 -0.178605 6.942848 -1.139350 -6.719234 -11.643495 -4.004825 6.023608 -2.402083 0.634560 -4.257484 -1.233022 -5.484026 -0.061597 -6.887824 -0.429230 0.155734 -3.760079 -6.986354 1.438449 -0.857810 -3.356704 0.915246 -4.831436 -1.622098 5.973226 1.748427 3.019838 -0.880277 0.351443 -5.789654 -4.108602 2.492799 -5.589024 4.689025 2.932485 -1.693109 -5.709294 -2.401575 -5.915205 4.698549 -1.123615 2.177366 -2.323628 0.364276 5.814370 -4.550661 0.219793 -5.332609 1.275293 2.810801 -11.048652 7.194069 3.644024 -1.200006 1.201435 1.993230 1.381295 3.691598 2.191804 -3.844297 -5.130816 0.274072 -1.888230 0.707358 -2.507870 3.518973 -5.489685 0.000678 -3.177571 -1.551928 3.594707 2.729850 0.443655 2.127010 3.138820 -2.375371 2.648576 4.074570 5.731862 -1.585420 -3.962905 -9.583443 4.541030 -2.204746 -1.426249 -2.196914 -2.429589 -3.252029 2.723428 -1.367522 5.622922 0.942162 -2.626220 5.349835 -8.726273 -6.211290 -4.063917 -0.247204 0.307754 0.248665 -0.914057 -2.098432 3.339042 3.401134 -1.181146 -0.488375 -5.027793 -0.008325 0.841132 6.144906 0.328760 2.580141 6.836353 2.453352 -3.180926 -0.844143 1.646681 -1.422011 -2.830496 -6.263898 -2.326961 0.551189 1.679463 -3.336567 0.696365 -2.756713 -1.953976 1.967741 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.657876 -0.162706 0.514633 0.489837 0.502816 -0.511951 0.489073 0.712411 0.178516 -1.371432 -0.711986 0.338655 -0.143504 -0.363083 0.161053 -0.146433 0.228302 0.740768 -0.992073 0.331540 0.361777 0.668759 0.108932 -0.659062 0.145742 -0.125944 -0.527726 0.423576 0.280974 0.884772 -0.521609 -0.455002 0.665939 0.124532 -0.015781 0.953994 1.076312 0.049740 0.207998 -0.153669 1.395689 0.320311 0.006458 0.979646 0.653137 0.869766 -0.124679 1.247433 0.106764 -0.451537 0.401118 -1.208169 -0.651982 -0.289255 -0.699661 0.818816 1.288175 0.929624 -0.620656 0.771176 0.147561 0.036510 0.248280 -0.652703 0.275354 1.011374 -0.272149 0.346316 1.612219 -0.725472 -0.430384 0.540180 0.958128 0.364832 0.315331 -0.780729 -0.215248 -1.644189 -0.137382 -1.077635 -0.085270 -0.377579 1.549759 -0.942037 0.595437 1.245180 -0.062933 0.353719 -0.227294 -0.355326 -0.716355 0.289898 -0.053985 1.398487 -0.063653 0.136034 -0.165718 0.164292 0.475776 0.800188 0.158270 -0.348323 -1.226757 -1.904478 -0.547698 -0.298602 -0.219728 -0.197645 -0.920005 -0.440944 0.853526 0.634767 -1.302959 -0.243269 0.780509 0.514868 -0.155721 0.038559 -0.621845 0.037550 -0.067469 -0.256258 -0.026969 -0.805205 -0.441977 -0.357947 -0.270080 -0.032192 0.155346 -0.387061 -0.624237 -0.468627 -0.361171 0.178132 -0.090311 -0.376143 -0.222625 -0.967703 0.428222 -0.690497 0.541101 -1.013090 -0.250207 -0.100165 -0.819431 -0.192110 1.794436 -0.302578 0.798811 0.168543 -0.574670 -0.866538 -0.432979 -1.280560 0.644210 -0.242263 0.912297 0.128490 -0.045470 -0.256516 -0.272445 -0.695627 -0.130233 -0.388714 0.125232 -0.140612 0.973133 -0.753646 -0.093039 -1.239839 0.290479 1.239697 -0.014686 -0.223495 -0.620242 -0.447824 -0.443799 -0.878589 0.692913 -0.184113 0.175143 -0.081311 0.088927 -0.685230 0.365371 -0.548783 0.417621 -0.113546 -1.017731 -1.019529 0.273365 -0.381856 -0.031182 0.406035 -0.594240 0.075327 -0.199010 0.703480 0.020022 0.074732 0.175387 -1.598901 -1.289111 -0.671636 0.144207 0.818285 0.317043 0.477564 -0.535378 -0.247137 -0.692632 0.819990 -1.123109 -0.093939 -0.126802 -0.078508 1.166895 -0.281803 -0.143648 -1.401995 0.451340 0.487218 -0.866839 1.236639 0.526577 -0.639146 -0.602136 -0.612796 -0.128280 0.781970 1.388890 -0.672641 -0.615520 0.768869 -0.474140 -0.175156 -0.863512 0.599766 -0.163912 1.040407 -0.895480 -0.567893 0.065363 0.994405 -0.275076 0.556825 0.546297 0.494299 -0.191750 1.179959 0.317006 -0.094783 -0.713782 -1.433932 0.629417 0.831961 0.357498 0.283769 -0.868010 -0.582683 0.493718 0.616650 0.897530 1.007126 0.584817 0.785365 -0.770154 -0.863878 0.507644 0.065167 0.634813 -0.749725 0.364736 -0.497451 0.093103 0.070225 0.039495 0.337081 -0.354380 -0.973738 -0.184909 0.788636 0.348679 -0.175800 1.054011 -0.068522 -0.669323 0.497747 -0.229687 0.794658 -0.078331 0.003779 -0.038876 -0.468530 0.115408 -0.365691 1.299987 -0.188299 -0.231330 0.474809 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 3.014311 0.716117 -3.761482 6.462703 -0.560672 -1.338119 -0.197066 0.899095 -1.698489 -9.796256 -6.018427 5.796097 1.344684 1.265827 1.437245 3.150082 -0.736470 0.298222 -7.931259 2.343968 3.299323 0.300541 -0.725902 -0.046724 0.826851 -2.707296 2.162582 0.506497 1.268342 5.406408 -2.521460 3.440564 4.831453 -1.217665 1.494846 3.433325 -1.719058 0.908768 -2.065925 -0.799979 6.487903 2.930617 0.132286 2.450342 -0.139730 5.391226 -0.754966 6.068569 -0.598521 -4.324456 3.180486 2.888511 -3.035050 -0.150741 -3.015297 2.595921 3.404594 1.742146 -2.127421 1.281629 -2.551273 -0.120069 1.442010 0.061476 6.109637 3.087073 5.104598 4.296509 5.254508 -3.285866 -0.372166 3.277089 0.777833 -0.013859 4.674747 -2.666229 -5.278568 1.151559 -0.774145 -6.558218 -3.495396 0.027911 10.860878 -5.725669 -1.583361 -0.014699 1.631976 6.007082 -2.917225 1.831738 -3.865290 -0.353090 -2.640429 7.291440 1.467638 0.778694 -1.717169 1.800306 1.466026 3.374249 -1.015066 -3.669430 -2.999869 -6.588583 -2.888802 -2.413676 3.006487 4.111972 -7.842029 -1.044497 -0.500162 6.717543 -8.113329 0.374582 3.828634 3.242631 6.864829 3.448537 -5.272495 0.685091 1.757411 0.292422 3.998392 -1.191819 0.710869 -1.437121 1.690752 -0.619177 1.393066 0.732154 -8.534118 -3.401881 -0.017833 -1.958197 1.063310 1.831158 4.208778 -2.852046 3.836420 -1.593546 3.597740 -8.180871 -1.218728 -2.233967 -5.763958 -1.618792 4.654919 6.947329 5.111771 -2.486500 -2.413874 -2.325020 -7.992899 -6.860994 -0.212293 0.532906 1.057276 2.042368 -0.561329 3.471456 -2.787429 2.233662 2.918673 -2.274135 -1.080319 -0.468086 6.606187 0.052183 -0.932763 -3.953537 -2.850313 -3.167165 -0.342049 5.557603 -0.208706 -8.850335 -9.437637 -3.775537 4.641450 -2.055045 0.848740 -3.573433 -1.112080 -4.361407 -0.522232 -4.817604 0.310059 0.638451 -3.407646 -5.565987 0.765637 -0.147746 -3.562468 -0.210567 -4.261038 -1.208797 5.783915 0.700070 2.732765 0.702568 -0.517562 -5.136619 -3.741868 2.085594 -4.433252 4.829552 5.017211 -1.408335 -4.411333 -2.098629 -6.642161 3.739689 -3.593770 1.533676 -1.788598 -0.370006 4.891690 -4.166242 -0.586115 -4.237245 1.385550 1.255053 -10.603784 6.290240 4.554590 -1.468611 0.501820 0.921399 1.237048 3.147365 3.143642 -3.523729 -3.129678 -0.061037 -1.243839 0.188232 0.296915 3.570314 -4.674328 0.139070 -2.814308 -1.381454 2.950412 2.730036 0.333038 0.993688 1.399000 -1.580611 3.535670 3.086118 4.368691 -2.104809 -3.986196 -11.474394 3.259003 -3.018406 -3.196114 -0.190870 -2.075467 -3.245434 1.551163 -3.041315 5.099727 -2.140217 -2.163306 4.221936 -6.918441 -5.258114 -3.264616 -0.361971 -0.516337 -0.330654 1.140161 -1.568688 1.601453 2.257091 -0.897098 -1.163804 -4.163014 -0.309726 0.502972 5.379244 1.195521 1.469883 5.200186 2.413848 -2.507303 -1.613035 0.907392 -1.191395 -1.276522 -6.892941 -2.056375 -0.229040 1.194841 -2.488913 0.878706 -0.691222 -0.925484 1.703340 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.872434 0.595783 0.842471 -0.173120 -0.433623 -1.152624 0.726616 2.037825 -0.678061 -1.679665 -1.909889 -1.952727 -0.175260 -0.932733 1.286981 -0.079417 -0.252081 0.765645 -3.907346 0.767322 1.629948 1.165822 0.491836 -0.810435 0.530363 -0.139141 -3.835343 0.386628 -0.237451 1.269286 -0.768661 -0.321554 0.794602 0.269960 -0.192568 0.996872 -0.589195 0.014306 2.701861 1.089543 1.377585 1.002685 -0.683013 0.021373 1.048627 0.980820 -1.666625 0.616111 -2.352178 -0.757325 1.152872 -3.153217 -1.094419 0.749723 0.123921 0.374558 3.024832 2.111223 -0.215810 1.452086 -1.347280 0.194332 0.288689 -1.728725 1.081339 1.944595 -0.046507 -0.011137 1.759216 0.073911 0.312260 -0.367424 0.246874 -1.323154 -1.757868 -0.770910 0.950975 -4.901580 0.268592 -4.086722 -0.385366 0.055180 2.317037 -1.134194 1.315715 1.878889 0.277745 0.682574 -0.848106 -0.538610 -0.235643 0.387452 -0.692566 1.890285 -0.679745 0.155506 -0.036530 0.717504 1.159064 0.465220 -0.871043 0.460036 -3.498775 -3.121619 -0.644746 0.548950 -0.263566 -0.132298 -1.771364 -0.504608 2.916052 -0.157812 -1.961103 0.047212 0.998404 1.148542 -2.534627 1.252959 -2.553893 -0.300952 -1.211198 0.597436 0.439208 -1.025905 -0.083284 -2.446590 -0.582559 0.549396 0.249531 -0.621734 -1.182358 -0.340319 -0.208451 -1.430091 -0.415977 0.475419 -0.171667 0.157506 0.650783 -1.837537 0.889654 -2.245129 0.694609 -0.558796 -1.191438 0.363658 1.330009 1.746164 -1.623096 0.698825 -0.695958 -0.570334 -1.019547 -0.667046 0.367136 -0.227502 2.611747 -1.216176 -0.039814 -0.931000 0.161950 -0.546418 -1.127114 -0.459792 0.703515 -1.146363 3.649881 -0.217357 -0.725155 -1.490265 0.236994 2.233315 -1.711911 -0.986741 -0.651420 2.439404 -0.957050 -1.101606 0.937439 0.241643 0.148990 -0.788060 1.431646 -1.624139 1.192878 -0.437559 0.031084 0.285457 -1.040513 -1.072965 -0.221773 0.061649 -0.503872 -0.517914 -0.090588 -0.621677 1.354302 1.404897 0.503071 0.074553 0.540390 -1.157414 -1.871420 -1.251494 0.017373 0.492828 1.402700 0.234463 -0.949935 0.502517 -1.049722 2.001550 0.644771 -0.428745 -1.361654 -0.348449 1.962720 0.021991 -0.705224 -1.829556 0.023292 -0.210155 -1.891370 1.663409 0.276036 -0.792004 -0.670581 -2.335012 0.366766 1.174401 1.478276 0.075084 0.071678 0.144786 -1.250875 -0.180354 -1.192414 1.190620 -0.890682 1.220252 -0.483811 -0.024641 0.981737 1.118308 -0.233285 1.882296 0.228238 1.523359 0.692835 0.570659 -0.137971 -2.006385 -0.216241 -1.562447 0.487459 2.290604 0.740877 -0.598082 -0.516024 -1.419469 -0.403707 1.778816 1.145018 3.836613 0.471628 0.542448 -0.065092 -1.026590 -0.108787 1.800117 0.233863 -1.414855 -0.715262 0.135639 0.385336 1.653116 0.631731 2.555846 -2.137255 -4.080660 -0.965997 1.490973 0.374431 -1.329222 1.306499 -0.227862 -0.655644 0.063816 -0.325472 1.237620 0.168477 1.943963 -0.426232 -1.048514 0.023014 -0.652104 2.019411 0.247161 -0.176468 1.320152 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.776775 -0.065267 -0.091654 1.327119 -0.054374 -0.252134 0.024574 0.599924 -0.302769 -2.707416 -1.577328 2.430562 -0.094802 0.543838 0.233178 0.228502 0.358930 0.197361 -3.112213 0.600903 0.744862 0.339034 0.237428 -0.115837 0.388819 -0.652894 1.074201 0.515018 0.679346 1.483561 -1.084007 0.363373 1.272815 -0.091551 0.784939 1.136775 -0.019968 -0.072833 -0.902665 -0.882151 2.161541 0.801413 0.141375 1.220296 0.414151 1.594640 0.311347 1.198683 2.313485 -1.284328 0.328727 0.471165 -1.167043 -0.245740 -1.108534 0.726611 0.299736 0.678469 -0.984213 0.522493 -0.047833 -0.185782 0.206200 -0.623555 1.264459 0.272918 1.000525 0.797239 1.310151 -1.212473 -0.496582 1.020205 0.899975 0.932675 0.887233 -1.041558 -1.177684 -1.254304 -0.178011 -2.429876 -1.122273 -0.183967 2.512595 -1.537320 0.248745 0.354341 -0.571186 1.184729 -0.468460 0.093877 -1.470588 -0.132640 0.129492 1.339069 0.409002 -0.386911 0.443841 0.403851 0.530845 1.414058 0.144984 -1.155986 -0.682632 -2.326957 -0.261757 -0.701966 0.839781 0.746002 -1.358322 -0.072796 0.344493 2.233774 -1.854742 -0.299259 1.193973 0.518505 0.177011 0.081889 -0.593905 -0.032943 0.321331 0.219939 1.371241 -0.955414 -0.032413 0.506641 0.155386 -0.167238 0.784017 0.208899 -1.236804 -1.561682 0.109979 0.437362 -0.234053 -0.243392 0.586603 -0.424201 1.170673 -0.314378 1.166133 -1.355867 -0.012470 -0.439160 -0.090421 -0.578684 2.051192 1.469259 1.254593 -0.271869 -0.351664 -0.500329 -1.361645 -1.483476 0.805636 0.295863 0.546917 0.707472 -0.137115 1.102365 -0.546175 -0.116747 -0.149057 -0.689801 -0.263995 0.015660 -0.038767 -0.231064 -0.016231 -1.408034 0.010038 -0.075308 -0.351950 0.756492 -0.588187 -2.836655 -1.643880 -1.251429 1.299986 -0.621259 0.197512 -0.256260 -0.286262 0.015012 0.007503 -1.439913 -0.037986 -0.190339 -1.497003 -1.570472 0.270469 -0.538576 -0.481999 0.384079 -1.170414 -0.232904 0.586434 0.847350 0.584209 0.076657 0.159071 -1.886279 -1.011858 -0.041379 -1.014048 1.150244 0.747122 -0.343530 -2.055524 -0.702362 -1.143787 1.042621 -1.518368 0.408217 -0.681858 -0.774631 1.401626 -0.633909 0.453408 -0.918160 0.746609 1.244492 -3.605796 1.727927 1.538718 -0.515712 -0.202886 0.221291 -0.056564 1.250600 1.247201 -1.139495 -0.990127 0.234347 -0.633766 0.155012 -0.131617 1.169805 -0.601153 0.205077 -1.153081 -0.828028 0.616431 0.599084 0.440223 0.442068 0.945649 0.417388 0.689874 1.474808 0.845456 0.066509 -1.275213 -3.443090 1.390992 1.689122 -0.099768 0.868805 -1.047876 -1.091162 0.363377 -0.746110 1.225528 -0.644387 -0.222861 1.225090 -1.458213 -1.315724 -0.633438 -0.577777 0.027114 0.012536 0.960938 -0.570476 0.294408 0.087241 -0.429439 -0.445450 0.155189 -0.283414 0.252505 0.867966 1.355557 0.751803 1.437132 0.364792 -1.496555 0.024010 -0.012988 -0.106426 -0.512685 -1.538637 -0.448335 -0.197296 0.362244 -0.538005 0.119589 0.005877 -0.138345 -0.092536 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.483783 0.675276 -0.398408 0.680421 -0.290416 -1.164098 0.381322 1.823658 -0.796808 -2.856823 -3.010069 -0.955698 0.204808 -0.838562 1.670360 0.745621 -0.419493 0.562270 -3.837609 1.149639 1.830060 0.667451 0.025019 -0.326267 0.556833 -0.573476 -3.900039 -0.037958 -0.144514 1.743126 -0.967152 0.700911 1.302435 -0.040277 -0.227523 1.046218 -1.388041 -0.161202 2.667076 0.899953 1.973604 0.953704 -0.201648 0.306632 0.758220 1.377645 -2.792819 2.775611 -2.340188 -1.096664 2.576460 -2.810614 -1.267074 1.412528 -0.357044 0.988526 3.094802 1.228755 -0.193844 1.077206 -1.897857 0.356615 0.397167 -1.961421 2.072604 2.845582 0.746528 0.658021 2.335625 -0.002371 0.363485 0.267277 0.200145 -1.189991 -1.061884 -0.904183 0.690605 -3.230045 0.141106 -3.739699 -0.439051 -0.538401 4.440933 -1.804395 0.363610 1.525194 1.058675 1.815131 -1.158724 0.395093 -0.582185 0.533741 -1.091791 2.115617 -0.533149 0.640365 -1.140190 0.430341 0.624601 0.630503 -1.458491 0.219532 -4.441991 -3.461587 -1.680204 0.397090 0.223945 0.447390 -3.538244 -0.133019 2.470631 0.583506 -2.813014 0.056564 1.200210 1.455121 -0.770300 3.788508 -4.018955 -0.787894 -0.452257 0.881439 0.375337 -0.282016 0.076573 -3.803433 -0.298135 0.267711 0.359092 -0.768830 -2.542604 -0.485778 -0.314799 -1.754400 0.064479 0.849790 0.893207 -0.366996 1.056064 -1.178577 0.790041 -3.590704 -0.363104 -1.356432 -2.338852 0.208723 2.560787 3.275509 0.087998 0.776453 -0.908835 -1.267019 -2.485919 -1.118672 -0.526876 -0.975972 2.558975 -0.911382 0.074640 -0.329568 0.076737 0.109142 -0.709802 -0.969334 0.412007 -1.428000 4.957118 -0.427485 -0.660509 -2.245609 -0.767808 1.310294 -2.283098 -0.137614 -0.088583 1.151137 -2.312123 -1.510152 1.299078 -0.101065 0.773842 -1.523907 1.614630 -2.250443 0.470000 -0.782454 -0.531874 0.595060 -1.533494 -1.570279 -0.159762 0.392247 -1.542680 -0.802094 -0.754773 -0.481298 2.848635 1.919666 1.080318 0.464671 -0.413732 -1.807270 -2.523565 -1.030178 -0.747025 1.215430 2.840293 -0.202484 -1.185529 -0.050556 -2.381462 2.350252 -0.794952 -0.230051 -1.205276 -0.106836 2.114507 -1.031573 -1.223380 -2.461799 0.007020 -0.692408 -4.136543 1.944161 0.373730 -0.997123 -0.354857 -2.824626 0.900577 1.300096 1.843570 0.122332 0.369260 -0.140327 -0.746324 -0.279482 -0.947773 1.731084 -1.788783 1.091142 -0.646639 -0.174160 1.426208 1.589923 -0.315731 1.525027 0.115552 1.499652 1.999734 0.468095 0.609995 -2.873784 -0.469096 -3.620394 0.375491 1.689164 -0.350660 -0.325511 -1.092058 -1.620816 -0.452328 0.573497 1.884608 2.084886 1.072975 0.909777 -0.788579 -1.526939 -0.283450 2.000710 -0.143178 -1.283099 -0.393206 -0.072895 0.228581 2.058797 0.585264 2.123855 -3.203069 -4.334941 -0.822599 2.391476 0.296794 -0.767855 1.621955 0.681966 -0.697925 -0.330451 -0.217677 0.988955 -0.201195 0.395300 -0.565325 -0.828929 -0.309565 -0.961167 2.009818 0.293771 -0.280414 1.284302 -PE-benchmarks/graph-coloring.cpp__main = 2.597813 2.892653 0.006789 1.461705 0.934707 -1.836738 -0.011211 3.980263 -3.671522 -1.993792 -3.168409 1.349140 -1.055140 -0.125055 4.324129 0.300636 0.264962 -0.711763 -5.263585 1.689652 -0.497659 -0.299588 -0.218381 -2.026422 1.260448 2.695295 -2.443218 2.202061 0.465788 1.579272 -1.957570 -0.641424 0.223849 1.773689 2.965344 -1.804702 2.389543 1.253784 -0.984222 0.286338 4.272900 1.455277 -0.961480 3.039513 3.143669 1.877380 -1.598935 3.194232 -0.829092 0.875280 3.431813 -4.282659 -1.216068 1.711271 -1.237051 0.767483 4.294698 1.376327 -1.786689 2.616920 0.452311 -0.436828 -0.486530 -4.050158 2.624869 2.369268 1.745439 -0.373930 2.584075 -0.977003 -1.758202 -0.106286 4.015830 -0.026207 -5.625178 -4.789144 0.870271 -8.028949 1.490577 -6.489868 -2.168632 -1.884991 4.060424 -2.059286 1.718971 3.088575 -3.610790 -0.653452 -3.220395 0.244214 -1.035164 -1.910525 -0.351304 2.979453 -0.058048 -0.571006 2.961174 0.367383 3.740675 3.546525 -0.651801 0.689349 -3.723398 -2.332266 -1.464912 5.907205 0.339753 -1.316084 1.336278 -2.081775 2.191903 -0.585719 -1.228474 -3.255415 2.846500 0.978392 -2.169972 3.440074 -4.202363 0.510091 0.507842 1.369843 3.284605 -2.100202 -0.065423 -1.990422 -1.599877 -0.036962 3.139183 0.232521 -0.796922 -1.969995 -0.463777 -1.284452 -1.631453 -5.092057 -3.975236 -0.815735 2.489243 0.410456 1.959415 -3.226643 -1.016773 0.260281 -1.029954 1.368092 3.268551 1.543357 1.469032 3.683849 -1.004691 -0.428602 0.006370 -1.590845 3.748606 1.507351 2.646213 -0.908009 0.191233 0.847969 -0.129997 -3.144753 1.168437 -1.386209 -1.681652 -3.122056 2.533194 -0.671407 -0.765306 -3.421266 2.337451 3.372048 -0.645336 -1.236625 -0.800991 -3.486493 1.236426 -1.571168 1.625303 0.360112 0.567532 1.667584 3.745096 -4.301423 -0.129762 -3.186369 2.159991 1.290495 -3.907298 -0.404194 0.784330 -0.228695 1.722168 -0.253687 0.558570 -0.875790 0.691043 5.111084 -0.720391 1.698448 1.742575 -3.176049 -5.816015 -2.580235 0.925930 2.079808 -2.499257 1.428217 -3.266394 1.126774 -1.695737 3.444778 -1.036818 -1.531454 -3.454755 0.710131 3.242341 0.796701 -2.584096 -1.877503 0.922583 2.569211 -4.013267 0.277134 1.193873 -0.355437 -2.695782 -2.398689 0.074851 2.724321 5.456164 -0.501905 -1.325961 0.337934 1.104355 -0.168274 -2.182279 3.545952 -0.066587 0.796566 -2.164848 -2.110154 0.725556 2.105768 1.692836 3.768114 1.080440 3.703906 -1.937300 3.783611 -0.916945 -2.235318 1.588463 -3.579375 -0.687835 8.425933 0.089509 1.138217 -2.218550 -3.145290 -2.146217 -0.295320 1.574305 2.797382 0.451135 1.326828 1.462427 -1.374388 -0.586187 3.167399 -0.414761 -3.082959 -0.202663 -0.461453 0.618121 3.049712 -1.159801 3.599516 0.085065 -5.225509 -5.075535 -0.104293 -0.403418 0.722841 2.402273 0.802071 -2.972427 0.778592 -0.320281 2.428919 2.980023 -2.114789 -1.647539 -3.243341 -0.687116 0.027683 -0.189010 1.312444 -0.874952 1.255849 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 7.383684 1.314401 -1.680202 11.948317 -0.052159 -5.816493 1.483487 6.875368 -2.674746 -21.759435 -15.019338 7.142477 1.309825 -0.197049 4.687231 3.434956 -0.620158 2.642340 -28.267726 6.864612 9.790479 4.840150 1.663119 -4.677094 3.501002 -5.298022 0.383900 3.506687 2.248953 13.059024 -7.519914 4.644815 10.564412 0.245583 6.236557 10.026336 -4.457886 0.803263 0.565385 -0.484420 17.066350 10.165343 -1.821099 6.186610 4.021592 12.944645 -0.060336 6.378022 -1.848154 -9.297216 3.887936 0.809790 -8.550153 -1.084365 -7.314759 6.085590 13.080945 7.758392 -6.349151 5.788644 -3.735196 -0.742767 3.587149 -3.354292 13.729601 6.029182 8.471121 7.647610 14.651149 -6.742389 -0.691425 4.828064 5.324417 -1.617384 6.228162 -8.211249 -10.580509 -10.002835 -1.363114 -24.114538 -6.771435 0.251940 18.785859 -12.605517 3.340443 4.115772 0.885704 11.941103 -6.210450 -1.626251 -8.937737 -0.076588 -5.743669 18.114630 0.656401 1.179975 0.693689 6.286660 5.761110 8.801816 -0.973788 -8.163314 -7.911121 -21.991548 -3.477790 -4.515585 5.247709 5.782878 -15.182037 -2.869696 1.433311 13.089313 -18.914836 -0.386966 9.230361 7.177278 1.827765 -3.940605 -9.469715 0.977276 -0.897133 2.163003 7.923519 -7.845921 -0.240523 -3.546619 1.289646 1.120073 4.709937 0.375014 -12.680706 -8.393846 -0.547639 -2.565179 -0.726337 3.161262 5.763415 -5.566051 8.098260 -8.650603 10.542407 -16.747601 1.790801 -5.858543 -8.824654 -2.822144 7.693752 10.462991 3.808298 -3.468224 -4.021812 -3.144699 -15.138951 -15.803056 4.611007 1.538002 6.864070 1.848099 -1.417700 4.361327 -5.816277 0.460385 2.996752 -5.810910 -1.239820 -3.367774 14.225127 -0.154708 -3.047926 -8.062718 -2.490405 1.821742 -2.323433 7.717628 -3.898430 -11.152078 -18.262712 -10.256683 11.097452 -3.781655 0.526209 -7.447017 0.848919 -9.804343 3.265266 -11.455631 2.542635 -0.433388 -7.927179 -13.001598 -0.689952 -2.152975 -1.986623 -0.258540 -8.447320 -2.634976 10.528731 5.004983 4.114117 1.303803 2.390215 -12.432416 -10.089072 1.418869 -5.700723 9.987772 6.868429 -1.565775 -11.709182 -3.099026 -11.337106 10.976569 -3.112578 2.477396 -6.118931 -3.748967 14.046001 -6.254755 -1.080881 -10.899529 3.293743 3.848552 -19.093554 15.694526 9.180937 -5.380046 -1.554774 -2.497920 2.418233 8.184196 10.498128 -7.428463 -7.605535 1.147785 -6.242704 -0.183728 -4.566929 9.003931 -8.599011 4.551706 -8.346219 -4.730309 7.122577 6.954179 0.726679 7.421667 3.745908 0.480230 4.596607 10.031290 7.819930 -3.333946 -11.086758 -22.266065 7.602270 2.161243 0.009323 -2.003222 -3.878875 -10.668675 1.764223 1.484386 12.562068 9.412012 -4.245772 9.884937 -13.201005 -12.572076 -6.888318 1.559777 0.890292 -3.299655 -0.325245 -4.308550 4.173288 5.187832 0.190643 3.195052 -9.414400 -7.215196 0.041948 11.797715 4.544516 -0.507366 13.249359 3.819709 -7.520599 -1.782777 0.989503 -0.432014 -2.076461 -7.404563 -5.921310 -3.487652 3.018422 -5.674455 6.342579 -1.402800 0.441741 4.011613 -PE-benchmarks/trie-suffixes.cpp__main = 8.273820 0.386631 2.678506 4.676266 2.574885 -6.087943 -1.563145 9.950479 -4.908095 -7.964785 -10.105606 0.633399 -2.912834 0.288926 10.875281 -0.478538 -0.220005 -2.152487 -17.877106 7.022166 -0.016513 0.624889 -1.022732 -5.596388 4.602111 4.756751 -2.466255 3.902978 1.120397 3.323616 -8.435067 -0.284306 0.872898 3.345789 7.231951 -3.260539 -0.038988 -1.616395 -0.873987 -3.424310 12.459254 4.222145 -0.634906 8.296691 6.784332 2.666470 -3.477544 7.434197 1.499444 -1.358299 7.593821 -11.610371 -3.630254 4.831406 -5.860128 5.520292 10.371135 2.240889 -4.531679 3.709614 0.214030 0.962148 0.716771 -9.471181 9.858974 3.798672 7.055590 0.648378 7.774567 -2.610391 -0.938985 2.732815 11.108650 1.358164 -8.305047 -10.030690 2.994577 -19.201478 3.713607 -14.780538 -1.825294 -5.100425 7.387689 -4.368310 5.391167 5.923553 -6.088243 3.450023 -8.313986 2.885351 -2.444698 -0.722140 -1.582046 5.675731 -3.596724 -1.010257 6.635534 2.004219 4.805834 9.398723 -2.111018 2.204725 -5.657224 -12.440134 -3.618715 11.938503 0.954146 -3.376251 -3.150035 0.883941 4.099999 0.314580 -2.171955 -7.594444 3.820704 2.802198 -8.329661 3.337941 -6.685751 -4.997761 -1.355376 6.969024 4.587503 -5.238997 3.459844 -8.780323 -1.491787 3.588111 9.795324 1.257726 0.785821 -6.116145 -0.912775 0.072954 -5.545239 -5.896573 -2.453700 -1.368418 6.030439 0.011600 4.116337 -8.589483 -1.258864 -5.043547 0.550060 3.676401 10.582923 2.989634 1.549675 9.995505 -2.464344 -1.149782 -2.689995 -4.735072 5.897450 4.081111 5.202458 -0.940806 1.647708 2.792876 1.078346 -9.243259 0.904079 -6.266791 -5.283505 -9.824900 2.588369 -1.421124 -1.335655 -8.630695 7.541425 9.240683 -7.718317 -1.343432 -0.079665 -4.160884 -1.291821 -5.501268 4.177131 1.199087 0.721639 2.285580 7.994674 -7.933227 2.731115 -7.401776 2.804718 1.332996 -10.814389 -3.060064 -2.654976 0.395014 3.417418 -2.258956 -1.967970 0.108505 2.179619 13.153332 -1.397210 5.915717 4.540972 -10.454816 -15.664386 -6.957352 3.329554 6.337617 -2.585212 -0.099933 -6.591123 -0.966779 -1.765292 9.302640 -5.981096 -1.520783 -6.645589 -0.641883 6.604075 -1.257229 -5.653999 -5.851579 1.421903 4.311415 -11.097486 5.664347 2.326771 -4.338128 -5.185928 -11.903853 4.049384 5.086329 15.007127 -1.345079 1.080619 -0.047203 3.760942 -1.813038 -7.729766 9.336742 -0.436265 -0.246261 -4.415408 -8.130369 1.223887 4.107830 4.108214 6.802821 3.243582 9.655472 -2.077034 10.864485 -0.449172 -5.347060 -1.987098 -12.386090 0.551528 21.260336 1.004975 2.531113 -8.688719 -10.409671 -5.591974 2.952788 5.103832 11.289735 7.419371 3.154673 0.044137 -3.839044 -1.764584 7.643162 -3.487990 -5.505771 -0.746424 -3.521621 -0.276554 4.841424 -0.666175 3.165626 0.413740 -16.973911 -10.344513 1.166583 1.638393 1.109865 6.328094 6.810623 -7.479226 0.729818 -0.284851 2.280560 2.485697 0.202132 -5.155541 -6.062598 -3.305886 -2.647889 2.587791 4.515352 0.634678 -0.480418 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 1.975165 0.350784 -0.011260 2.362549 0.599844 -2.358735 0.200019 2.075856 -0.777364 -3.888975 -3.192159 1.499343 0.013684 -0.616656 1.453867 0.351518 -0.366252 0.592353 -5.776437 2.255433 1.274503 1.222983 -0.495000 -1.790592 0.761295 -0.416734 -1.025512 1.380992 0.104983 1.914335 -1.985819 0.244328 1.649850 0.223828 1.414740 1.375081 -0.006581 -0.185579 0.460757 0.009825 4.101651 1.904893 0.048684 1.857061 1.818355 2.407656 -0.724760 2.407510 -0.251345 -1.540102 1.359919 -0.904512 -1.946248 -0.026483 -1.913133 2.270718 3.043485 1.290584 -1.657942 1.600919 -0.658725 -0.318857 0.880837 -1.575459 3.353661 1.876089 1.557412 1.113441 3.904090 -0.827552 -0.761057 1.308469 2.758100 -0.073820 0.528892 -2.323064 -1.470562 -4.008747 0.219978 -5.319172 -0.643517 -0.543652 4.466696 -2.694189 1.127201 1.859011 0.222333 2.135442 -1.964156 -0.417643 -1.704790 0.234460 -1.376069 4.261158 -0.360374 0.110914 0.367875 1.180282 1.558083 2.562419 -0.912138 -0.722022 -2.516682 -5.621960 -1.481740 0.468028 0.256841 -0.252695 -3.199499 -0.833768 1.436212 2.424009 -3.433065 -0.945821 2.364752 0.968962 -0.611469 -0.044884 -2.379185 -0.334590 -0.318721 0.721917 1.258597 -1.413774 -0.213263 -1.402675 0.079479 0.269124 1.444072 -0.336703 -2.524399 -1.536793 -0.691037 -0.396049 -0.389653 -0.778501 0.030870 -1.756636 1.816348 -1.454483 1.922573 -3.794826 0.124965 -1.736059 -1.648726 0.306030 2.656970 1.839410 1.150069 0.472634 -0.812827 -1.190365 -3.054061 -3.419128 1.333351 0.059251 1.880977 -0.507852 -0.038168 0.030545 -0.120435 -1.297119 0.897562 -1.938973 -0.559662 -1.550625 3.567085 -0.503168 -0.649601 -2.877141 0.269269 1.959083 -0.986738 0.207368 -0.796952 -2.414611 -2.518454 -2.355378 1.805067 -0.042293 0.500829 -1.090872 0.650828 -2.242526 1.114747 -2.507163 0.874511 -0.165213 -2.351382 -2.357986 -0.538239 -0.343922 -0.337939 -0.810178 -1.614998 -0.074582 1.676127 2.066168 0.383123 0.554589 0.708059 -3.631618 -3.324114 -0.918487 -0.001574 2.313957 1.700205 0.682968 -2.396460 -0.251346 -2.578558 2.531819 -1.890332 -0.326842 -1.015055 -1.176272 3.336844 -1.489599 -0.745680 -2.657297 0.721689 0.476252 -4.272480 3.739143 1.991971 -1.707563 -1.254618 -1.919645 0.425325 2.123034 4.020297 -1.475242 -0.743118 0.451212 -0.685994 -0.681760 -1.541430 2.436044 -1.396399 1.553052 -2.064773 -1.715348 0.789595 2.168189 0.240742 1.604741 0.142213 1.134912 0.291669 2.517345 1.066839 -1.103354 -2.016660 -5.093245 1.373767 1.870055 -0.003561 0.259837 -1.442626 -2.722864 -0.276649 0.815308 2.865104 2.304505 0.373009 1.737728 -2.363767 -2.518290 -0.559232 1.175880 -0.159770 -1.447759 0.586679 -1.375648 0.215000 1.024829 -0.010277 0.602729 -1.500747 -3.565698 -0.926882 1.780399 1.342301 -0.603929 2.862539 0.854958 -1.665089 -0.121586 -0.199151 0.859217 -0.193447 -0.789628 -1.323748 -1.863033 -0.096856 -0.763618 2.204539 0.186345 0.130006 1.226045 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 3.122934 0.569553 0.773968 1.951763 1.034993 -2.746112 0.415090 3.485941 -0.679418 -5.078744 -4.691351 0.979061 -0.335106 -0.937568 2.296572 0.315656 0.220668 0.987296 -8.297128 2.746426 2.016477 1.894456 -0.149059 -1.954993 1.380476 -0.451266 -3.383085 1.059581 0.292597 2.556295 -2.968587 0.184624 2.065388 0.542577 1.893292 1.779795 -0.343368 -0.762500 2.136695 -0.177341 5.427491 2.484149 0.212187 2.586086 2.679562 2.904810 -2.215132 3.968299 -0.363867 -1.960432 2.115211 -4.149971 -2.741903 1.290390 -2.318993 3.080195 4.258643 1.796302 -2.088374 2.217604 -0.565844 0.109800 0.870242 -3.396198 3.879770 2.920917 1.127068 0.913878 4.987717 -0.591707 -0.553904 1.139517 3.496953 0.022617 -0.588811 -3.039783 -0.198936 -6.279884 0.614710 -7.208956 -0.276973 -1.433994 5.944630 -3.458471 2.288675 3.081627 -0.017814 2.579423 -2.058503 -0.697529 -2.191479 0.781819 -1.351828 4.480990 -1.081617 0.364512 0.212582 1.246152 1.686071 2.795417 -1.413643 -0.456433 -4.725429 -7.619746 -1.717060 0.854340 0.158695 -0.520334 -4.220027 -0.559204 2.243618 3.067747 -4.339191 -1.209539 2.467192 1.143368 -2.851411 1.759612 -3.517766 -1.413924 -1.022832 1.356761 0.683060 -2.034036 -0.414655 -3.556888 -0.701311 0.631104 2.126212 -0.878753 -2.536332 -1.735623 -0.859273 -0.686333 -1.001643 -0.591208 0.061852 -1.916713 2.358881 -2.040341 1.899797 -4.459378 -0.238847 -2.391255 -2.256134 0.396168 4.795820 2.585567 0.904989 1.814451 -0.733939 -2.053608 -3.581656 -3.533923 1.624311 -0.759958 3.640331 -0.778881 0.163857 -0.480485 -0.138687 -2.216754 -0.341271 -2.523421 -0.408285 -2.771596 4.942123 -1.256113 -0.824251 -4.042463 0.627767 3.914124 -2.879250 -0.835924 -1.251266 -1.170087 -2.766183 -3.197275 2.275292 -0.099416 1.354509 -1.345690 2.196109 -2.661937 1.300164 -2.747558 0.538660 -0.293073 -3.226952 -2.967846 -0.878019 -0.524044 -0.308611 -0.931540 -1.750158 0.157447 2.692483 3.956726 0.512769 0.850462 0.592152 -4.691704 -4.653410 -2.071372 0.047246 2.700299 2.338700 0.399706 -3.009252 -0.396293 -3.091240 3.895754 -2.694907 -0.551857 -1.592492 -1.269390 4.074456 -1.470577 -1.211841 -3.862627 0.881746 0.353674 -6.151056 4.111769 1.663528 -2.609360 -1.765464 -4.363930 1.130731 2.748017 5.433313 -1.075883 -0.249112 0.601494 -1.435454 -0.837129 -2.837472 3.383034 -1.580707 2.551679 -2.722865 -2.055799 1.464331 2.724576 0.017445 2.546312 0.784255 2.775488 1.472504 3.259523 0.912393 -2.086469 -2.494091 -6.776938 1.356242 5.166565 0.815760 0.307425 -2.312547 -3.559336 -0.871861 1.277804 3.640529 4.175346 2.122400 2.126413 -2.242316 -3.003030 0.023239 2.089722 -0.064769 -2.153561 0.304668 -1.482921 0.077301 1.643112 0.740378 2.054204 -2.750754 -6.522616 -1.330791 2.521618 1.762411 -0.807869 3.470369 1.128102 -2.161732 0.444814 -0.520637 2.134248 -0.491627 -0.062181 -1.634080 -2.510683 -0.735474 -1.314797 3.555768 0.452747 0.400084 1.388714 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 2.530697 0.425481 -0.125634 3.224366 0.500399 -2.764690 0.103719 2.782349 -1.379040 -5.102802 -4.125181 1.269433 0.043447 -0.265530 2.319443 0.542979 -0.688643 0.473689 -7.275592 2.721943 1.634003 1.309353 -0.506856 -2.230926 1.077680 -0.199535 -1.005572 1.610860 0.326305 2.606596 -2.606943 0.481820 2.090629 0.239757 1.790617 1.375672 -0.011327 -0.022939 0.087537 -0.229815 5.172593 2.343223 -0.157015 2.291256 1.890426 2.892655 -0.842254 2.913930 -1.173183 -2.090850 2.053816 -1.616258 -2.236462 0.089638 -2.283841 2.725758 4.223495 2.106984 -1.976309 1.941999 -1.093195 -0.226698 1.095154 -1.929808 4.331243 2.310609 2.493163 1.612433 4.587269 -1.449674 -0.725235 1.703421 3.004972 -0.377513 0.286216 -3.133385 -1.595601 -5.352624 0.453160 -6.702027 -1.192894 -0.524836 5.609842 -3.370969 1.389454 2.299945 0.024007 2.784400 -2.862074 0.082161 -1.987548 0.007142 -1.800381 5.283803 -0.466151 -0.035452 0.834055 1.588490 2.100932 3.384429 -1.032803 -0.704808 -2.991300 -6.530481 -1.912365 1.141242 0.641187 0.125754 -3.830305 -1.056710 1.893857 2.467259 -4.145605 -1.201367 2.879782 1.792493 -0.314035 0.221490 -3.174990 -0.370656 -0.377717 1.016920 2.103964 -1.976116 0.354042 -1.883968 0.169086 0.526486 2.074184 -0.042845 -3.336452 -2.192292 -0.753605 -0.910257 -0.626414 -0.807291 0.338902 -1.935307 2.494718 -1.765505 2.561898 -5.052516 0.183733 -2.027806 -2.291913 0.420240 3.423328 2.380286 1.214993 0.701619 -1.519181 -1.243827 -3.707117 -4.162328 1.585142 0.950072 2.238096 -0.302195 -0.055767 0.622847 -0.339585 -1.526289 1.280588 -2.348949 -1.048736 -1.974947 4.386746 -0.414547 -0.892187 -3.630701 0.716141 2.056259 -1.451952 0.863740 -0.745900 -2.754330 -3.497132 -2.850724 2.486532 -0.056940 0.359226 -1.177384 0.873330 -3.316073 1.388290 -3.436579 1.317964 0.108614 -3.222099 -3.025856 -0.488957 -0.220328 -0.510236 -0.797753 -1.983953 -0.303552 2.106947 2.584753 0.440381 0.898958 1.288738 -4.519601 -4.588004 -1.073584 -0.216554 2.948645 1.803121 0.525083 -2.783697 -0.464999 -2.931359 3.326630 -1.885232 -0.219444 -1.769796 -0.977617 4.038581 -1.947341 -1.106504 -3.477467 0.806303 1.015995 -5.118354 4.620841 2.373169 -1.863045 -1.388868 -2.365667 0.719427 2.582856 4.935125 -1.809100 -1.085537 0.428985 -0.512575 -0.729625 -1.984710 3.093577 -1.852317 1.184824 -2.313097 -2.216606 0.982709 2.538295 0.595265 2.269809 0.610699 1.376825 0.149295 3.414526 1.464487 -1.761470 -2.332742 -6.216342 1.860509 2.419418 -0.251864 -0.113769 -2.022841 -3.540986 -0.332819 1.261524 3.348902 3.569188 0.422544 2.264981 -3.007715 -3.117495 -1.095829 1.818762 -0.394788 -1.871758 0.116333 -1.648387 0.611967 1.655839 -0.288702 0.745550 -1.772841 -4.626953 -1.706625 2.390749 1.205680 -0.421126 3.743292 1.481647 -2.219312 -0.255189 0.009422 0.722966 -0.085664 -0.956685 -1.804140 -2.034962 -0.078951 -1.199097 2.214185 0.400258 -0.289880 1.544421 -PE-benchmarks/biconnectivity.cpp__main = 2.956699 1.678557 4.825228 -0.123885 1.776074 -2.033001 2.349395 6.268855 -1.837130 -5.991760 -8.829575 -1.958415 -1.845036 -1.653870 3.579316 -2.933471 1.055054 0.604591 -12.668842 1.777660 3.774612 2.529234 2.115128 -1.483203 1.749228 -1.129399 -8.525060 3.665376 -0.115105 3.365821 -1.991835 -1.613794 2.296821 2.543037 1.591283 4.083643 -1.927069 -1.097975 6.230477 -0.562792 6.166729 3.035865 -0.599900 3.295916 4.454077 3.477019 -4.220550 2.818301 -1.086955 -2.218299 3.488184 -10.124965 -4.020180 1.248398 -1.571171 1.832996 7.294354 2.958469 -2.175855 3.528804 -1.651110 -0.901785 -0.189140 -7.111902 2.325866 4.339420 -0.627781 -0.734333 4.834764 -1.828255 -2.014639 2.598318 3.089071 0.697640 -8.174189 -3.440532 2.166419 -10.798654 1.457293 -12.215126 -3.017252 -2.485451 7.260402 -1.904663 2.840757 4.181406 -3.137646 0.658260 -1.214846 -2.245254 -2.400169 0.869642 -0.620314 1.508651 -1.926322 -0.718804 3.028889 0.308746 3.289742 4.907264 -3.978740 0.857477 -9.771057 -11.275210 0.540818 1.645354 1.429894 -1.167607 -2.737699 -1.689040 4.225792 1.453684 -3.228203 -2.684376 3.940403 2.770678 -11.810180 4.121293 -6.682825 -3.468466 -0.707538 1.309099 3.114224 -2.341104 -0.629534 -5.689143 -1.521884 0.107837 1.589237 -1.441861 -1.214983 -3.950918 -0.530910 -1.573210 -1.844868 -2.204835 -1.696873 1.851168 2.489960 -2.746455 3.054540 -5.417628 2.630498 -2.930450 -1.375888 0.754479 5.475007 5.652072 -1.405517 3.716137 0.701724 -1.530721 -0.943102 -1.424785 2.504333 -0.682571 8.365032 -3.627600 0.087019 -0.234009 0.134267 -3.227354 -4.555829 -0.647539 1.508040 -3.564160 6.696568 -0.982226 -1.014063 -4.341499 2.498639 5.608955 -7.085035 -3.059252 -2.728959 3.000144 -0.559535 -4.719579 2.542296 0.326199 -0.181768 -0.760064 4.221044 -2.128815 2.227639 -2.171929 -0.622253 -0.338417 -5.700115 -2.984521 -0.939382 -0.889356 -0.332669 0.574272 -0.128760 -1.923453 5.708871 7.847033 2.038397 1.568566 0.254779 -3.396050 -4.668604 -4.944045 0.844039 2.412128 4.288053 -0.250741 -4.667911 -0.095295 -2.442730 6.075364 1.535664 -1.429726 -4.178038 -1.938552 5.670259 0.305655 0.027990 -4.262554 0.560163 2.485531 -12.280039 2.187921 1.313763 -2.087281 -4.105214 -7.160401 -1.408605 4.065679 5.837094 0.268961 0.211256 0.857707 -3.314732 -0.336563 -4.325560 4.005714 -0.127569 3.705974 -3.445589 -3.309661 2.831531 2.601946 0.155714 5.581996 2.111647 8.441089 4.312362 4.401561 -0.586472 -5.160797 -1.773930 -8.842718 2.651666 13.817973 1.940349 0.965487 -2.180438 -6.421835 -1.883409 1.885059 3.962148 8.502591 2.107338 2.742868 2.736343 -2.456570 -0.511528 3.653494 0.862171 -3.615743 -0.945668 -0.468825 1.108558 2.832724 -0.750579 7.016295 -4.004398 -12.915795 -3.022535 3.260662 2.806692 0.122402 3.640483 -0.362706 -3.560456 0.478979 -0.193677 4.089670 0.674476 1.580455 -2.338303 -3.973853 -1.012078 -0.366922 3.567262 2.126884 0.612710 2.917444 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 6.323972 0.706775 -4.965438 11.975804 0.107810 -5.522243 0.587996 3.135959 -2.760891 -17.821095 -11.599174 7.083002 2.263696 -1.164037 3.444974 4.529037 -1.480586 1.591009 -18.645328 6.193136 6.936584 2.333910 -1.669818 -3.095256 1.990372 -4.817008 1.742923 2.496852 1.013859 10.435135 -5.343300 5.193675 8.541024 -1.230505 4.114851 7.669816 -3.931196 1.808161 -0.052443 1.137129 13.671504 7.023023 -0.292692 4.614806 2.981092 10.333388 -1.313164 9.649779 -3.106012 -7.056798 6.134653 5.587607 -5.636791 -0.785765 -6.648360 5.427160 11.496218 4.363717 -4.892690 3.933051 -4.804773 -0.298321 3.465617 0.090702 12.730880 7.019801 8.346880 7.416349 13.231285 -4.834592 -0.411353 4.820944 4.417748 -2.202529 8.231861 -6.322661 -10.843413 -2.391109 -2.045503 -15.931373 -4.163346 0.351559 18.294745 -10.529367 -0.580040 1.992740 4.051280 11.068760 -6.162045 0.127092 -6.674924 0.305746 -7.181783 17.579322 1.164046 3.099742 -2.452673 4.701617 3.636277 6.783370 -2.119325 -7.091181 -5.757517 -17.647199 -6.411105 -4.163926 3.858457 4.700100 -15.473968 -2.298442 0.137508 9.726588 -16.414138 0.350087 7.378855 5.961801 8.450675 0.361156 -10.329201 1.115986 0.642251 1.448187 5.692511 -3.337783 -0.145373 -5.022318 2.240315 0.409258 2.805606 -0.171151 -13.402256 -5.022053 -1.467509 -3.173748 0.836287 2.962206 5.905062 -6.738467 6.491089 -5.819278 7.885130 -16.586495 -1.119604 -6.027716 -10.774039 -1.994742 5.409223 9.451253 7.038956 -4.469467 -4.375308 -3.789003 -15.512935 -14.576906 1.273701 -0.487301 3.486872 1.500278 -1.001316 3.385813 -4.865237 1.594748 6.155723 -5.197120 -1.282232 -2.996638 15.664271 -0.283260 -2.530192 -7.103158 -4.739800 -1.370518 0.150461 8.371654 -1.704612 -12.932390 -17.235810 -7.721103 8.747307 -3.072556 0.924322 -7.196306 -0.553511 -10.279656 1.659516 -9.147832 1.387034 -0.155086 -5.500785 -10.436535 -0.337203 -0.609642 -3.437559 -1.939227 -8.088393 -1.870041 10.509553 2.852613 4.253058 1.539781 0.362216 -10.956908 -9.079646 2.808658 -4.881228 8.810039 8.135277 -0.775443 -7.386015 -2.735582 -12.289022 7.284330 -4.899685 1.846673 -2.570814 -2.469624 11.397833 -7.194395 -2.230145 -9.162242 1.862484 0.764222 -15.742376 14.393969 7.673678 -4.671224 -0.556316 -0.934806 2.787538 5.675447 8.253550 -6.611923 -5.534068 0.613207 -3.327705 -0.575236 -1.915307 7.342522 -8.604117 3.581448 -6.451779 -3.570954 5.905049 7.079538 -0.158963 3.618615 0.623605 -2.763565 4.391404 7.186295 7.414738 -3.125959 -8.493658 -20.067795 4.871728 -6.553859 -3.288260 -1.753329 -2.842099 -8.098285 1.942604 -0.184960 11.139111 2.962807 -3.753683 7.957974 -12.731563 -10.907220 -5.772101 1.138483 0.219829 -3.088956 0.272140 -4.478509 2.790829 4.181969 0.620672 0.547010 -9.096708 -3.532482 0.096308 10.210776 2.016486 -0.888792 10.789227 4.163123 -4.694893 -2.717884 1.189042 -0.995747 -1.158162 -8.702436 -4.544397 -2.931336 2.526867 -4.669007 5.750546 -1.768972 0.897731 4.404260 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -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.765731 0.072084 0.262005 0.385461 0.515479 -0.635688 0.377557 0.607033 -0.190401 -1.124505 -0.873204 0.313459 -0.121215 -0.640092 0.286038 0.020591 0.186111 0.396855 -0.773417 0.480225 0.239413 0.281208 -0.331503 -0.428370 0.083876 -0.265015 -0.820768 0.481833 -0.056029 0.632083 -0.380973 -0.196694 0.452301 0.196460 0.145995 0.770322 0.391852 -0.100386 0.652207 0.048263 1.278885 0.216010 0.187807 0.733977 0.838251 0.684749 -0.631051 1.365009 -0.325228 -0.216067 0.805635 -0.837452 -0.556309 0.071378 -0.734727 0.593866 1.067068 0.269232 -0.491969 0.645468 -0.307832 0.066408 0.191148 -0.507926 0.642508 1.067356 -0.074467 0.256233 1.472684 -0.350318 -0.355612 0.635290 0.905445 0.201529 -0.090835 -0.404926 -0.046052 -0.950564 -0.060415 -0.948316 0.054096 -0.447392 1.881744 -0.587998 0.120657 0.869336 0.222033 0.409795 -0.371492 -0.264708 -0.526231 0.359759 -0.343649 1.109248 -0.166594 0.441678 -0.336699 0.011561 0.305706 0.736535 -0.470390 -0.210900 -1.359225 -1.781701 -0.707467 -0.091891 -0.258060 -0.441644 -1.118727 -0.280483 0.793114 0.658813 -0.995353 -0.287245 0.607971 0.293320 -0.153392 0.903099 -1.150610 -0.272236 0.012501 0.067673 -0.107255 -0.134132 -0.336794 -0.987706 -0.092847 -0.096613 0.191055 -0.409779 -0.980739 -0.212352 -0.206862 -0.232872 -0.069871 -0.291697 -0.184834 -0.709504 0.308110 -0.434202 0.395663 -1.238716 -0.302301 -0.572252 -1.032988 0.049249 1.361339 0.495154 0.851185 0.379871 -0.227395 -0.729468 -0.708846 -1.044326 0.244744 -0.621562 0.825949 -0.311376 0.066561 -0.363473 -0.125440 -0.590004 0.081605 -0.441730 0.150716 -0.555759 1.549531 -0.516235 -0.174899 -1.044187 0.017362 0.926699 -0.199843 -0.243861 -0.419447 -0.482512 -0.521197 -0.801511 0.462457 -0.072463 0.155146 -0.196536 0.243660 -0.713985 0.251995 -0.326328 0.202633 -0.150277 -0.776443 -0.716908 0.066183 -0.139791 -0.370333 -0.105343 -0.414629 0.031338 0.517917 0.580519 0.183444 0.260670 -0.197534 -1.090704 -1.196261 -0.504178 0.313626 0.659927 0.954044 0.384077 -0.454391 -0.145880 -0.998133 0.780330 -0.984080 -0.175275 0.108643 -0.224562 1.057250 -0.388632 -0.304095 -0.992171 0.289038 -0.015356 -1.503696 0.968238 0.450033 -0.768296 -0.684866 -0.972098 0.038237 0.612708 1.316036 -0.310940 -0.025849 0.498631 -0.172844 -0.241657 -0.508194 0.638803 -0.204898 1.000433 -0.824946 -0.604282 0.318329 0.982443 -0.292384 0.324771 -0.016877 0.571842 0.312517 0.881274 0.220884 -0.382349 -0.511131 -1.632594 0.237178 0.417269 -0.016850 0.327290 -0.556371 -0.757529 0.056583 0.051445 0.944499 0.312845 0.434189 0.567789 -0.413530 -0.771286 0.276766 0.342237 0.316027 -0.790999 0.385847 -0.422792 -0.097099 0.158851 0.228848 0.451094 -0.680160 -1.264725 -0.308008 0.720086 0.347963 -0.318853 0.811015 0.079500 -0.354483 0.133270 -0.089917 0.803917 0.185424 -0.374052 -0.264868 -0.705278 -0.012574 -0.241725 1.247755 0.107631 0.171476 0.614092 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 3.446197 0.485642 -2.947405 6.080813 -0.357805 -2.735374 0.227169 1.966062 -1.822720 -9.252132 -6.095436 3.984449 1.455551 0.257544 2.004892 2.778581 -1.047412 0.723418 -9.455232 3.037759 3.535162 1.077844 -0.985095 -1.395672 1.038251 -2.177802 0.679537 0.987195 0.781413 5.557718 -2.929848 2.864332 4.363896 -1.030429 1.770454 3.724300 -1.513254 0.730751 -0.510830 0.133363 6.968379 3.211379 -0.063737 2.312708 0.813769 5.281226 -0.826245 5.645165 -2.438001 -4.031497 3.261829 1.917543 -3.305524 -0.150873 -3.129710 2.878863 5.463067 2.889131 -2.327432 2.164295 -2.541134 -0.098765 1.820391 0.041608 6.595721 3.520138 4.585865 3.920250 6.557582 -2.851842 0.046365 2.601144 1.681031 -1.183085 4.233824 -3.389872 -4.758419 -1.615231 -0.390759 -8.324951 -2.615215 0.396863 10.427540 -5.795192 -0.350426 1.344616 2.127146 6.092187 -3.527534 0.965024 -3.343868 -0.127377 -3.419963 8.730488 0.611635 1.330340 -1.337976 2.475025 1.898354 3.538690 -1.199637 -3.299411 -3.416109 -8.442581 -3.353280 -1.770765 1.784770 2.964267 -8.085841 -1.428245 0.428960 5.257550 -8.481505 0.207965 3.992509 3.516758 4.749807 2.020289 -5.435850 0.548070 0.443892 0.762932 3.324466 -1.714595 0.557450 -2.390693 1.307398 0.300816 1.538100 0.272709 -7.967680 -2.851443 -0.310763 -2.331342 0.577958 1.693147 3.632387 -3.195791 3.629431 -3.088821 3.922384 -8.811271 -0.782427 -2.684693 -6.136018 -1.107441 3.367355 5.332559 3.512896 -2.213719 -2.790122 -1.965112 -7.978422 -7.367614 0.493055 0.350291 1.717563 1.215225 -0.513715 2.050960 -2.514322 0.816756 3.236449 -2.735147 -1.023430 -1.567921 7.917099 0.127738 -1.300496 -4.148457 -2.113405 -1.225554 -0.209624 4.687133 -0.613065 -6.808023 -9.200682 -3.964436 4.797333 -1.328496 0.642003 -3.599429 -0.702888 -5.417557 0.583497 -4.737716 0.788481 0.343300 -3.199029 -5.614170 0.063823 0.053567 -3.039381 -0.760361 -4.253008 -1.054440 5.545756 0.987276 2.037541 0.696904 0.329326 -5.642721 -4.989597 1.537505 -3.020769 4.627892 4.541435 -0.633473 -3.794167 -1.454600 -6.178933 4.143766 -3.105574 1.296999 -1.649573 -0.646008 5.801847 -4.170386 -1.175884 -4.776583 1.196350 0.635279 -9.120532 7.653122 4.152943 -2.240234 0.006184 -0.408049 1.538003 3.072817 4.285675 -3.617142 -2.912596 0.262736 -1.424214 -0.223276 -0.987579 3.761697 -4.652294 1.161828 -2.995256 -1.668831 2.889823 3.628772 0.174841 2.016653 0.827228 -1.455017 2.326750 3.783552 3.879152 -2.294868 -4.052185 -10.490092 3.127209 -2.771319 -2.322110 -0.819147 -2.061546 -3.811359 1.248293 -0.778388 5.296889 1.240175 -1.662604 4.190443 -6.837419 -5.708041 -3.116367 0.819163 -0.155974 -1.264104 0.181959 -2.132396 1.707968 2.493036 0.183131 -0.206792 -4.648204 -2.159225 -0.181932 5.576783 0.844761 0.019004 5.934765 2.156636 -2.095753 -1.500096 0.502350 -0.344049 -0.772391 -4.516700 -2.300296 -1.100304 1.402053 -2.875132 2.600834 -0.687095 -0.258058 2.504813 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.033663 -0.751648 1.279719 0.714472 0.293991 -1.651784 1.127348 1.923109 -0.132325 -2.015863 -0.740951 -0.945951 -0.250314 -1.160335 0.429530 -0.533403 -0.325656 0.755689 -4.104966 1.092082 1.149966 1.240020 0.351002 -1.720158 0.325155 -0.448385 -1.198161 1.838808 -0.207657 1.575013 -0.736709 -1.159734 1.083298 0.486341 0.284838 2.004812 1.381524 0.307495 1.074602 1.133673 2.157678 1.624756 -1.519103 0.276349 1.390929 1.680251 0.607137 0.418092 -1.467251 -0.701491 0.038547 -1.822360 -1.411241 -1.129161 -0.840542 0.494787 3.344273 2.669047 -0.970003 1.780272 -1.012021 -0.288211 0.648205 -0.085315 1.207564 1.078037 0.198803 0.270525 3.013955 -1.103701 -0.585169 0.650964 1.409174 -0.723650 0.022113 -1.114114 -1.168840 -5.773341 0.391643 -3.700575 -1.224641 0.373365 0.788268 -1.305469 1.399428 2.314663 0.084809 0.758065 -1.336795 -0.995816 -1.027215 0.231432 -0.222740 4.196293 -0.293529 0.252117 0.794942 1.152160 1.826098 1.572103 0.430522 -0.745875 -2.029733 -3.950953 -0.282491 -0.446970 -0.832514 -0.538247 -1.494513 -1.205796 2.807813 0.389796 -2.201713 0.011410 1.718669 1.220279 -0.387054 -2.165577 -0.754410 0.924159 -0.828485 -0.398138 0.996817 -2.030982 -0.687971 -0.193609 0.675447 0.677927 -0.100024 -0.555672 -1.404176 -0.372681 0.271617 -0.399592 -0.208802 -0.347042 -0.923016 -1.437607 0.422009 -2.515321 1.757713 -2.061665 1.205900 0.027122 -0.929832 0.106785 1.438484 -0.078616 -1.081354 -0.074945 -1.162612 -0.182200 -0.677034 -3.365214 1.177509 0.470486 1.602760 -1.027086 -0.353412 -0.754002 -0.255285 -0.952943 -0.228431 -0.549969 0.412582 -0.232402 1.885002 -0.103564 -0.429759 -0.918706 0.508037 2.464365 0.636738 -0.023312 -1.264356 -0.389487 -0.948452 -1.652177 1.307418 0.136509 -0.918839 -0.580224 -0.083415 -2.252812 1.902691 -0.742166 1.458786 -0.277643 -1.313695 -1.644967 0.046020 -0.635736 0.786642 0.056072 -0.737667 -0.625682 -0.945841 0.276668 0.059835 -0.170489 1.064653 -2.119108 -2.172728 -0.679282 0.839154 1.840380 -0.392922 0.995020 -0.480600 0.336661 -0.915570 1.946813 -0.133976 -0.204932 -0.800149 -1.188533 2.933708 0.159954 -0.805841 -1.911917 0.873891 0.627721 1.425926 3.555975 1.665653 -1.032922 -1.318856 -0.497110 -0.711433 1.755208 2.348387 -1.405618 -1.461142 1.012206 -0.777491 -0.407552 -0.772150 1.018134 -0.625406 1.950237 -1.432627 -0.971721 -0.004904 1.880664 -0.252442 1.618538 0.028282 0.483633 -1.581822 1.918233 -0.031755 -0.178004 -1.135983 -1.522699 1.269337 0.440925 0.789426 -0.465545 -1.004812 -1.573638 0.492327 2.482548 1.773153 4.562287 -0.786604 1.157929 -1.376010 -1.739825 -0.440174 0.653356 0.665735 -1.371391 0.179400 -0.619210 0.660815 0.461423 0.080756 1.264817 -0.856552 -1.914108 -0.677484 0.770140 0.613644 -1.881557 2.016057 -0.537998 -0.869719 -0.048255 -0.223584 0.791539 0.703423 1.790285 -0.395222 -1.328691 0.960658 -0.334355 2.333144 0.096986 -0.119657 1.367286 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.600006 -0.058824 -0.239182 0.373271 0.138065 -0.097854 -0.145600 0.610473 -0.023971 -1.214497 -1.109844 1.195739 -0.075373 0.081218 0.233202 0.140365 0.526468 -0.133410 -1.041480 0.664054 0.074927 -0.087124 -0.474937 0.289605 0.344917 -0.306425 -0.030229 0.140997 0.201012 0.703110 -0.139320 -0.035186 0.534398 -0.236803 0.787750 0.893084 0.211737 0.162416 -0.038930 -0.347988 1.238182 0.653570 0.152966 0.536708 0.339699 0.683200 -0.117435 0.898442 0.585065 -0.284318 0.230708 -0.175403 -0.548292 0.076174 -1.022299 0.457291 0.362503 -0.396501 -0.727359 0.484039 0.168334 -0.017195 -0.029629 -0.174419 0.778693 -0.118749 0.289940 0.359466 1.125395 -0.253637 -0.299284 0.930663 0.606566 0.337866 0.399098 -0.214843 -0.607129 0.135660 0.063761 -0.708622 -0.383772 -0.362046 1.529494 -0.800409 0.153579 0.375253 -0.703673 0.646453 -0.332728 -0.042305 -0.444990 -0.128053 -0.100114 0.492565 0.424379 0.385312 0.435002 -0.031774 0.162550 0.665776 -0.350953 -0.597986 -0.620624 -1.678654 -0.093388 -0.308352 0.021155 0.084563 -0.674290 -0.630673 -0.074115 1.514734 -0.493331 0.142682 0.639259 0.240513 -0.110396 -0.169313 -0.551420 0.163738 0.444922 -0.011060 0.754346 -0.125888 -0.535068 0.169028 0.622968 -0.034116 0.305020 -0.214091 -0.470153 -0.792001 0.166330 0.345880 -0.476120 -0.277651 -0.094550 -0.665052 0.299707 0.157243 0.470158 -0.731922 -0.049904 -0.213859 -0.496263 -0.090944 1.203773 0.399964 1.007399 -0.236305 -0.026075 -0.175062 -0.761951 -1.274592 0.747550 0.120140 0.196432 -0.013307 -0.016525 0.686164 -0.317961 0.045993 0.093515 -0.455076 -0.124549 0.221295 0.350455 -0.127557 -0.043888 -0.600150 -0.471192 -0.088557 -0.009785 0.056075 -0.311305 -1.203995 -0.415177 -0.630262 0.669298 -0.106835 0.331356 0.118389 0.022134 -0.187411 -0.262570 -0.568506 0.196551 -0.214199 -0.822646 -0.671302 -0.678071 -0.148810 -0.027796 0.091677 -0.663491 -0.076584 0.608964 0.250998 0.045565 0.018668 -0.227331 -0.747117 -0.660283 0.012910 -0.148635 0.855822 0.517816 -0.254273 -0.680935 0.031707 -0.365941 0.462615 -0.954737 0.269489 -0.199144 -0.628016 0.987735 -0.256312 -0.337625 -0.477375 0.439904 0.458315 -1.746201 0.526497 0.861098 -0.142462 -0.449062 0.472137 -0.568971 0.628067 1.107445 -0.318576 -0.284904 0.258478 -0.298261 0.037661 0.026107 0.865747 -0.482566 0.679560 -0.945476 -0.328057 0.421236 0.485231 0.303475 0.336570 0.471814 0.602262 0.377375 0.914821 0.440748 -0.206206 -1.023660 -1.650277 0.639852 0.585219 -0.284225 0.463867 -0.186197 -0.502110 -0.016267 -0.668392 0.813923 -0.217734 0.273241 0.638931 -0.338897 -0.889713 -0.197089 -0.002223 0.046904 0.040627 0.625103 -0.503444 0.262886 -0.542319 -0.259495 -0.089170 0.118657 -0.318512 -0.100099 0.040211 0.738938 0.338031 0.664429 0.150773 -0.734840 0.129107 -0.312941 0.353253 -0.172408 -0.977140 -0.608907 -0.566993 0.462801 -0.186437 0.493991 0.100937 0.270298 0.404471 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 4.311263 1.491328 -4.371876 10.302025 -0.720588 -1.854525 -0.592478 3.462047 -2.462120 -16.901890 -10.259893 7.358496 2.080406 3.019721 2.847330 3.601433 0.045092 0.823499 -17.465567 4.298532 6.787782 2.194188 0.083245 0.149060 2.549963 -3.874775 3.589171 0.576924 2.857206 9.633255 -4.519687 5.715292 8.486758 -2.961573 3.996620 6.819931 -1.540056 1.658897 -3.289208 -0.952591 12.055337 5.117093 0.550756 4.700456 -0.119490 9.698456 -0.001507 6.903293 -0.574942 -7.621408 2.646886 4.386663 -4.643100 -1.349629 -5.755765 4.528565 6.865758 4.505065 -4.485910 2.859495 -1.750774 -1.206072 2.335021 -0.120766 9.926014 3.671787 7.543695 7.535869 10.066207 -4.984229 -0.406965 4.922656 0.659683 -0.142916 7.237622 -5.401549 -8.887131 -1.142281 -2.106748 -13.233329 -6.297968 -0.547338 15.142746 -9.898090 0.209164 0.533550 0.197397 9.973511 -4.199033 1.454887 -6.467157 -2.155923 -3.797457 10.875578 2.085783 1.316631 0.150676 3.054202 2.804357 5.623284 -0.572164 -7.238408 -3.178189 -11.577488 -3.837004 -4.035087 4.630589 7.275793 -11.987851 -2.738871 -3.707464 10.625306 -13.731997 0.804506 5.682476 6.408397 8.156402 0.774999 -8.106431 0.963329 2.823325 0.153965 7.182500 -3.836427 0.708579 -1.702544 1.963051 -0.007606 2.524343 0.723933 -10.753614 -7.725765 -0.647806 -2.088107 0.366788 2.949037 6.059519 -5.262828 6.225920 -3.732727 7.141423 -12.282081 -2.147305 -2.602399 -8.238307 -3.195278 6.546206 7.637450 6.565274 -5.142876 -5.537012 -2.176535 -12.699210 -10.853824 1.883529 2.210102 2.021417 4.864311 -1.731826 6.532989 -5.282105 2.648191 4.337544 -2.874773 -2.087505 0.069726 7.268568 0.485556 -0.832323 -6.220852 -3.998093 -4.401293 0.294378 9.094548 -1.392680 -11.225270 -15.326000 -6.070259 8.592396 -3.284323 1.027618 -5.407498 -1.652985 -7.194619 -0.559215 -9.300710 0.026793 -0.144813 -6.053421 -9.627474 0.252631 -1.314005 -3.714546 0.800375 -7.471298 -1.810368 8.800773 2.898413 3.680902 -0.922988 -0.464767 -8.714429 -6.938869 3.305392 -6.888290 7.803071 4.255477 -2.599186 -7.653985 -2.759955 -8.163258 6.618091 -3.257277 3.217644 -3.259843 -1.330156 8.775731 -6.088108 -1.387229 -7.628849 2.279155 3.483802 -15.523956 10.363328 6.190071 -2.127146 0.517269 3.063301 0.939533 5.231708 4.918925 -5.137873 -6.751552 0.868312 -1.999720 0.723432 -2.740404 6.038466 -7.476388 1.115632 -5.892130 -2.693115 5.531518 4.349136 0.941804 2.595885 4.151420 -2.249041 3.927461 6.822972 8.320184 -2.328214 -6.762700 -14.846836 6.220922 -2.586027 -2.733976 -2.150733 -3.326351 -5.324294 2.991290 -2.325756 8.679363 0.692776 -2.679470 7.579304 -11.327652 -9.470238 -5.840598 -0.236228 0.401791 0.385855 -0.304904 -3.833376 4.256916 2.944715 -1.581654 -1.090341 -6.547444 -0.081419 1.091689 7.703092 1.576397 3.160126 9.589342 4.093714 -5.048001 -1.293781 1.489404 -1.832289 -3.263813 -9.543399 -3.711622 -0.449834 2.981956 -4.232113 2.028041 -2.470595 -1.205457 3.203348 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.855266 0.039059 0.572693 0.577785 0.573407 -0.748089 0.623889 1.016991 0.044026 -1.744702 -1.027853 0.362427 -0.136473 -0.517241 0.241359 -0.147809 0.125521 0.921834 -1.401805 0.471960 0.576609 0.861040 0.127320 -0.913966 0.199570 -0.145342 -0.920972 0.523006 0.292553 1.135501 -0.630325 -0.557430 0.829458 0.191551 -0.068227 1.182641 1.166588 0.074501 0.456581 -0.137130 1.681192 0.521831 -0.081501 1.136048 0.827818 1.069819 -0.328383 1.412761 -0.412010 -0.582972 0.445153 -1.431464 -0.890143 -0.303017 -0.727853 1.016397 1.749300 1.210021 -0.672943 0.977514 0.020801 -0.002001 0.315706 -0.863969 0.382764 1.370908 -0.316052 0.420006 2.061804 -0.848260 -0.521802 0.672336 1.089071 0.250810 0.277435 -0.843902 -0.283834 -2.010958 -0.130896 -1.669910 -0.223766 -0.403340 2.180901 -1.188556 0.733808 1.545346 0.116549 0.490992 -0.377998 -0.442026 -0.787891 0.364073 -0.302629 1.930635 -0.074355 0.247067 -0.276668 0.246989 0.713521 1.012151 0.014939 -0.319196 -1.679612 -2.388005 -0.625922 -0.298996 -0.276799 -0.177863 -1.230623 -0.627704 1.230323 0.912474 -1.686419 -0.280743 1.052883 0.718353 -0.222678 0.225457 -1.050923 0.126050 -0.164770 -0.395766 -0.008666 -0.945729 -0.572809 -0.446127 -0.350700 -0.099779 0.145885 -0.463367 -1.118819 -0.563575 -0.428841 -0.088074 -0.051794 -0.405217 -0.245601 -1.171674 0.520651 -0.935802 0.662714 -1.418619 -0.185712 -0.110342 -1.219674 -0.170740 1.910885 -0.106065 0.783247 0.158247 -0.615290 -1.114461 -0.616963 -1.558658 0.773223 -0.264163 1.230580 -0.011325 -0.048541 -0.361529 -0.340329 -0.808670 -0.099048 -0.469629 0.227250 -0.243587 1.871972 -0.893361 -0.140037 -1.523288 0.239815 1.449566 -0.059026 -0.292147 -0.748274 -0.339923 -0.690452 -1.126679 0.872867 -0.177445 0.142600 -0.246417 0.184630 -0.917450 0.473835 -0.647145 0.576766 -0.063652 -1.208210 -1.252799 0.288942 -0.378629 -0.270673 0.384920 -0.686494 -0.012024 0.034717 0.737676 0.062049 0.047662 0.230713 -1.860732 -1.596029 -0.771288 0.180023 0.937282 0.639424 0.587409 -0.734514 -0.225366 -0.990039 1.122953 -1.171333 -0.149014 -0.322832 -0.020561 1.579363 -0.376747 -0.275466 -1.777200 0.511891 0.493286 -1.110046 1.607905 0.621950 -0.730333 -0.736752 -0.803108 -0.185658 1.042976 1.706530 -0.833845 -0.774608 0.893874 -0.682369 -0.239376 -0.977381 0.804116 -0.354446 1.358121 -1.025188 -0.639306 0.104828 1.274829 -0.351491 0.852790 0.568355 0.595212 -0.082205 1.352703 0.441767 -0.351020 -0.864671 -1.723661 0.770422 0.696978 0.365391 0.143553 -0.909331 -0.863742 0.571756 0.794917 1.156953 1.290067 0.539651 0.929760 -0.963840 -1.092392 0.594901 0.274237 0.762280 -0.986302 0.354922 -0.543033 0.164949 0.281378 0.022227 0.597361 -0.696674 -1.383529 -0.337175 1.089556 0.411304 -0.329223 1.337343 -0.062055 -0.782049 0.554512 -0.292502 1.056183 -0.136996 0.034782 -0.078244 -0.639939 0.123872 -0.429187 1.688610 -0.128736 -0.357770 0.746404 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 3.930669 0.952181 -3.818016 7.254232 -0.614736 -2.384471 0.223959 1.816595 -2.044560 -11.813491 -7.449653 5.032009 1.818247 1.023539 1.775857 3.783656 -1.117736 1.184979 -10.578958 3.232975 4.648027 1.566242 -0.257569 -0.985911 1.321708 -2.852543 0.855151 0.208687 1.501436 7.008429 -3.365639 3.773173 5.987846 -1.453394 1.763665 4.648542 -1.625077 1.102143 -1.018529 -0.237347 8.020922 3.740658 0.431424 2.734669 0.116705 6.578506 -0.843394 7.311199 -2.249735 -5.291436 4.085475 1.121130 -3.936877 0.060337 -3.444455 3.600577 5.558953 3.536224 -2.603987 2.126233 -2.636209 -0.063571 2.011283 -0.573856 7.229842 4.395839 5.120216 4.895550 7.352881 -3.612651 -0.052609 3.304905 1.118086 -1.089034 5.405893 -4.497870 -5.767098 -0.334436 -0.950272 -9.407306 -3.448284 0.290638 13.207301 -7.413964 -0.495520 1.262292 2.028106 7.146322 -3.446849 1.277337 -4.473498 -0.187836 -3.615302 9.433293 0.925226 1.131855 -2.046588 2.533274 2.068343 3.718089 -1.189908 -4.164111 -4.564650 -8.721181 -3.568852 -2.660470 2.918771 4.639444 -9.773324 -1.800656 -0.537472 7.149584 -10.797577 0.749290 4.834083 4.384509 6.898425 3.638996 -6.478876 0.884377 1.099578 0.541693 4.140031 -2.342399 0.496773 -2.585314 1.221677 -0.154486 1.523489 0.213555 -9.948638 -3.925269 -0.730509 -2.695207 0.903869 2.327334 4.673778 -3.844232 4.599440 -3.141659 4.385548 -10.205408 -1.533646 -2.709421 -7.876336 -1.858689 5.856719 6.876809 5.099899 -3.038037 -3.372616 -2.933189 -9.581171 -8.067299 0.273781 0.126211 2.322964 2.389420 -0.617588 3.124547 -3.266420 1.877940 3.048754 -2.791712 -1.115533 -1.012428 8.990456 -0.391823 -1.339551 -5.159749 -3.127089 -2.165771 -0.499403 5.886721 -0.793489 -8.580027 -11.318171 -4.733238 5.836654 -2.154418 1.297734 -4.565264 -0.556027 -5.938010 -0.063203 -6.090470 0.600575 0.710694 -4.001837 -6.963004 0.751759 -0.290562 -3.712503 -0.285805 -4.780663 -1.349445 6.870916 1.806862 2.913831 0.518765 -0.058409 -6.870384 -5.315821 1.910054 -4.688648 5.603954 5.421171 -1.102940 -5.064391 -2.201814 -7.660972 4.673179 -3.538429 1.507591 -2.361156 0.036373 6.612561 -5.031349 -0.216770 -6.106735 1.461870 1.269731 -12.405670 8.021406 4.836550 -2.076055 0.514098 0.143247 1.675542 3.953686 4.235204 -3.733501 -3.939305 0.311353 -2.240693 0.038371 -1.174039 4.375739 -6.003512 1.216565 -3.416031 -1.579041 3.564801 3.845635 0.037602 1.975224 1.751075 -1.601247 3.519631 4.078630 4.968183 -2.756036 -5.024423 -13.373471 3.761762 -2.451689 -2.601090 -0.904899 -2.344358 -3.851123 2.098706 -1.842477 6.474015 0.596036 -1.933375 5.164361 -8.516712 -6.690322 -3.328176 0.576311 0.035019 -1.000443 -0.010396 -2.276549 2.268544 3.174342 -0.424801 -0.072832 -5.742212 -1.758419 0.363604 7.224876 1.117580 1.115128 6.866946 2.505472 -2.591686 -1.330553 1.012317 -0.344362 -1.707130 -6.370647 -2.495833 -0.579682 1.467556 -3.323537 2.539297 -1.449451 -1.141930 2.614241 -PE-benchmarks/binary-insertion-sort.cpp__main = 1.021099 0.121715 0.104047 1.527464 0.302982 -0.380491 0.376575 0.947144 -0.259896 -3.114512 -2.190563 0.966725 0.050754 0.182951 0.622297 0.305527 0.195375 0.516722 -3.224601 0.563278 1.167190 0.587101 0.430253 -0.448926 0.382334 -0.759749 -0.154436 0.553183 0.459531 1.830817 -0.935126 0.473864 1.500263 0.166140 0.525019 1.448343 0.034435 -0.010502 -0.141121 -0.458614 2.429700 1.022076 -0.091040 1.166517 0.424827 1.817468 -0.159134 1.455849 0.126120 -1.252146 0.737758 -0.907258 -1.245101 -0.131483 -1.153255 0.989165 1.620554 1.122049 -0.804807 0.885795 -0.453879 -0.013792 0.370412 -0.986602 1.471001 1.036452 0.896397 0.979117 2.001862 -1.339718 -0.376476 1.012847 0.742930 0.313582 0.491590 -1.153000 -0.948825 -1.655294 -0.165861 -2.856966 -0.921975 -0.333214 3.067038 -1.662118 0.263128 0.922911 -0.212634 1.406641 -0.678824 0.005428 -1.430517 0.132555 -0.365814 1.942784 0.235364 -0.008190 -0.003576 0.501958 0.745344 1.355571 -0.093235 -0.916043 -1.625233 -3.024495 -0.564807 -0.601198 0.773040 0.683700 -1.921202 -0.358632 0.491959 1.888931 -2.420225 -0.259861 1.339030 1.149410 0.091082 0.260369 -1.379372 -0.121147 0.271727 0.177899 1.094033 -1.163137 0.006163 -0.591621 0.042217 -0.107496 0.653141 -0.094118 -1.593179 -1.371752 -0.171336 -0.213807 0.013721 0.094399 0.681747 -0.713428 1.164655 -0.934522 1.343015 -2.177281 0.045549 -0.625651 -1.335279 -0.494632 2.306395 1.459307 1.104113 -0.070627 -0.658089 -0.783817 -1.664881 -2.045754 0.587478 0.218742 1.225591 0.436230 -0.182184 0.700081 -0.818601 -0.056551 0.086908 -0.699195 -0.143793 -0.198005 1.580318 -0.360704 -0.338178 -1.641137 -0.012438 0.501233 -0.627005 0.845054 -0.581884 -1.591991 -2.068706 -1.561982 1.507298 -0.623143 0.204863 -0.766284 0.118134 -1.123950 0.297961 -1.432116 0.242845 0.155581 -1.713437 -1.915833 0.229113 -0.409521 -0.578068 0.513952 -1.168398 -0.270848 1.292273 1.018558 0.610204 0.254026 0.117950 -1.891852 -1.571222 -0.312943 -0.852619 1.484335 1.079213 -0.190581 -1.665649 -0.657574 -1.490163 1.635132 -0.845048 0.272903 -0.896072 -0.308216 1.693619 -0.894348 0.017572 -1.737573 0.576370 0.839165 -3.304897 1.851922 1.306151 -0.750249 -0.520920 -0.644256 0.150149 1.163499 1.716617 -1.024723 -0.980013 0.414650 -0.738309 -0.025676 -0.789232 1.197628 -0.879263 0.513240 -1.328003 -0.853816 0.833049 1.076777 -0.017326 0.961083 1.059963 0.682785 0.824339 1.586044 1.024562 -0.659934 -1.404991 -3.429763 1.200124 1.295098 -0.085934 0.183785 -1.010931 -1.328830 0.477049 -0.141170 1.648921 1.079922 -0.054233 1.522079 -1.413984 -1.578736 -0.506868 0.036682 0.334466 -0.622984 0.286083 -0.654875 0.491611 0.541840 -0.241787 0.368368 -1.123939 -1.235492 -0.060326 1.724247 0.706370 0.384366 1.841480 0.482004 -1.160217 0.000375 0.070187 0.223356 -0.228994 -1.177443 -0.601987 -0.360364 0.263363 -0.723182 0.854455 -0.122003 -0.286706 0.585760 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.441023 -0.016225 -1.916477 4.513134 0.155933 -1.167538 0.191181 0.913277 -0.651353 -7.010886 -4.092715 3.514394 0.900218 0.649604 0.843175 2.084573 -0.187366 0.689768 -5.615149 1.838061 2.280639 0.779954 -0.194689 -0.605583 0.679131 -1.853389 1.676116 0.348790 1.025398 4.066659 -1.964504 2.087940 3.527291 -0.644356 1.417641 2.962066 -0.291129 0.464251 -1.430725 -0.613101 5.086144 2.284349 0.336438 2.105453 0.197332 4.023900 0.249839 4.359924 -0.266272 -2.985817 2.055052 0.611065 -2.373858 -0.366765 -2.650162 2.230922 2.672463 1.687877 -1.807812 1.274196 -1.214705 -0.025273 1.167036 -0.146929 4.153821 2.007128 2.989505 2.983117 4.427590 -2.565561 -0.381251 2.428327 1.269473 0.248823 3.704491 -2.667581 -3.778321 0.116400 -0.686915 -4.583678 -1.907008 -0.175239 7.374520 -4.244773 -0.337339 0.765300 0.672909 4.028059 -1.875650 0.594344 -3.040027 -0.035688 -1.575364 5.198680 0.682657 0.645570 -0.979977 1.340988 1.053780 2.470848 -0.136124 -2.893816 -2.036151 -5.154707 -1.817758 -1.917293 1.746201 2.416019 -5.301232 -0.914950 -0.964159 4.708493 -6.053548 0.247845 2.797698 2.254501 4.549837 1.179378 -2.771857 0.479446 1.094382 0.316895 2.372267 -1.756390 0.158887 -0.943899 0.973084 -0.185787 1.102453 0.167802 -5.215916 -2.445901 -0.314488 -0.717778 0.490994 1.060492 2.555824 -2.727464 2.654906 -1.660368 2.751953 -5.460549 -1.080654 -1.599259 -4.275838 -1.294251 4.511794 3.345059 3.911439 -1.609522 -1.890700 -1.722076 -5.284022 -5.270210 0.467583 0.094321 0.983042 1.798475 -0.308102 1.988096 -2.121404 0.906244 1.835501 -1.710193 -0.789998 -0.219149 3.582880 -0.404537 -0.670131 -3.066379 -1.498328 -1.046084 0.242459 3.593033 -0.631691 -6.250316 -6.291306 -2.906117 3.427799 -1.501322 0.733935 -2.307036 -0.746101 -3.091323 -0.122202 -3.666291 0.717120 0.217479 -2.644815 -4.232152 0.544006 -0.518509 -1.565822 0.294702 -2.905601 -0.536376 3.308067 1.053558 1.458971 0.546308 -0.096295 -4.271895 -3.085988 1.098838 -2.573916 3.849174 2.504454 -0.621855 -2.953674 -1.558313 -4.299232 2.708960 -2.721120 0.974934 -1.039489 -0.195333 3.697658 -2.873332 0.069200 -3.630486 1.202402 1.132515 -7.023306 4.463520 3.244628 -1.474450 -0.010194 0.333675 0.847801 2.297954 2.874960 -2.397330 -2.519123 0.530937 -1.064491 -0.005621 -0.829146 2.387808 -3.063661 0.700594 -2.483461 -1.363318 1.902354 2.241975 -0.016971 0.715414 1.303896 -0.864354 1.638635 2.939510 3.055039 -0.794365 -3.518340 -8.104607 2.358425 -0.866624 -1.419581 -0.054414 -1.734516 -2.173258 1.429142 -1.527559 3.804536 0.175637 -0.994587 3.291591 -5.084243 -3.984885 -1.811268 -0.302399 0.205538 -0.532421 0.550459 -1.651307 1.238796 1.140227 -0.328016 -0.707850 -2.665349 -0.187008 0.499591 3.993369 0.922910 0.983961 4.067882 1.529464 -1.678100 -0.626482 0.715975 -0.419952 -0.859575 -4.399941 -1.523355 -0.346110 0.944680 -1.864605 1.404087 -0.857798 -0.466938 1.197606 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.415141 -0.177443 0.111549 0.461243 0.195771 -0.260085 0.224742 0.372244 0.121012 -1.076977 -0.607785 0.182269 -0.025860 -0.129091 0.248103 0.073775 0.140266 0.449033 -0.745956 0.241144 0.324505 0.355351 0.065268 -0.239919 0.115821 -0.165957 -0.408458 0.137906 0.212591 0.677037 -0.407453 -0.042211 0.539714 -0.023363 -0.013634 0.575680 0.511662 0.031887 0.122764 -0.016794 0.958104 0.170328 0.036229 0.553298 0.287206 0.641155 -0.221103 1.044750 0.176391 -0.400254 0.511156 -0.847783 -0.380058 -0.023934 -0.492299 0.552540 0.819876 0.572011 -0.393944 0.446251 -0.054508 0.103079 0.175338 -0.477092 0.399043 0.710904 0.029933 0.343017 0.994751 -0.439033 -0.150415 0.295736 0.499103 0.163158 0.280149 -0.514724 -0.102453 -1.100907 -0.126350 -0.671070 -0.055846 -0.240835 1.145054 -0.754222 0.271958 0.757033 -0.016113 0.445617 -0.199516 -0.038758 -0.539229 0.162710 0.017492 0.814208 0.013267 0.051821 -0.243321 0.137251 0.204526 0.428495 0.085977 -0.284393 -0.959073 -1.294047 -0.564666 -0.205740 -0.016774 0.028727 -0.887928 -0.175397 0.569124 0.435383 -1.015447 -0.062550 0.478661 0.407616 0.059668 0.288204 -0.572082 -0.045511 0.024680 0.002219 0.076597 -0.470608 -0.149252 -0.548174 -0.107890 0.026061 0.162179 -0.250243 -0.405675 -0.340721 -0.222645 0.117338 -0.039701 -0.068667 0.092041 -0.578899 0.396331 -0.391231 0.382756 -0.830638 -0.268738 -0.181814 -0.593913 -0.166412 1.466193 0.098941 0.648440 0.112031 -0.547289 -0.561385 -0.555758 -0.890220 0.259206 -0.194184 0.598987 0.194215 -0.041622 -0.028187 -0.172002 -0.250714 -0.088099 -0.344263 0.015344 -0.091742 0.538028 -0.439310 -0.108437 -0.927013 0.057279 0.694832 -0.199814 0.017545 -0.295765 -0.345111 -0.520485 -0.576443 0.535114 -0.186788 0.273671 -0.158016 0.112094 -0.605209 0.182016 -0.448624 0.089519 -0.004859 -0.722873 -0.756955 0.162597 -0.198157 -0.117650 0.218718 -0.492350 0.064398 0.047016 0.552067 0.140533 0.098494 0.036652 -1.088318 -0.911882 -0.410111 -0.167871 0.623945 0.334106 0.170145 -0.395520 -0.233403 -0.584838 0.606382 -0.879801 0.004077 -0.097787 -0.079542 0.706746 -0.318856 -0.189667 -0.942185 0.275380 0.260135 -0.904248 0.810145 0.384178 -0.435963 -0.247374 -0.471796 0.099940 0.491948 0.882955 -0.386727 -0.290005 0.370061 -0.239185 -0.075126 -0.549610 0.469847 -0.272515 0.498157 -0.551211 -0.303678 0.182795 0.637878 -0.136241 0.310644 0.408648 0.332869 0.041207 0.680698 0.282993 -0.210717 -0.446842 -1.180885 0.406245 0.660143 0.114582 0.253723 -0.700728 -0.302659 0.271768 0.246662 0.641167 0.560984 0.483907 0.571749 -0.599681 -0.623670 0.203105 0.058597 0.282603 -0.433953 0.270476 -0.307415 0.068549 0.152638 0.073452 0.170495 -0.365763 -0.704495 -0.058281 0.622701 0.200500 -0.015500 0.721927 0.070696 -0.483108 0.229777 -0.128896 0.357571 -0.096436 -0.115382 -0.067067 -0.197631 0.059789 -0.356447 0.736296 -0.213682 -0.172947 0.255016 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 1.985800 0.175285 -1.801052 5.113354 -0.568668 -0.770272 0.050318 0.767139 -1.396333 -8.487596 -5.057366 4.312558 0.955697 1.924669 0.964442 1.937154 -0.418723 0.355252 -8.605354 1.498643 3.228135 0.955992 0.869075 -0.266220 0.996053 -2.157791 2.558960 0.865133 1.470093 4.937864 -2.468629 2.615853 4.306606 -0.759664 1.481578 3.276152 -0.922559 0.784218 -2.317219 -0.880063 5.640077 2.285920 0.153459 2.085851 -0.288811 4.826553 0.812337 3.703749 1.378392 -4.034690 2.093414 1.715340 -2.794652 -0.850454 -2.496414 2.004296 2.991452 2.662539 -2.009044 1.294507 -0.799756 -0.320295 1.089902 -0.322979 4.650513 1.750712 3.979479 3.115389 4.096557 -3.350245 -0.503069 2.403342 0.516164 0.135029 3.475169 -3.485885 -4.321108 -0.682160 -0.586815 -6.921123 -3.439181 0.406273 7.103414 -4.778388 -0.500102 0.301253 -0.133205 4.650834 -1.774810 0.959724 -3.580649 -0.576268 -1.327804 5.814650 1.118717 -0.269466 0.044737 1.712194 1.778261 3.219902 0.096434 -3.331345 -1.939257 -5.805237 -1.637258 -2.188625 2.921498 3.717742 -5.646418 -1.087503 -1.112023 4.931928 -6.839492 0.102532 3.501917 3.272682 3.723315 0.285117 -3.069895 0.622689 1.172226 0.352302 4.018470 -2.202027 0.721105 -0.097523 1.016993 -0.232918 1.353796 0.565556 -5.623783 -3.825028 -0.179174 -0.787866 0.494105 1.087835 3.215506 -1.439658 3.355189 -1.930208 3.514140 -6.076756 -0.247212 -1.355986 -3.468818 -1.708960 3.342323 4.279953 3.053238 -2.340498 -2.342007 -1.160574 -5.752009 -5.656965 0.728498 1.372231 1.304040 2.397440 -0.830195 3.345607 -2.513078 1.283646 1.779644 -1.601043 -1.133237 -0.138376 3.017003 0.193713 -0.729110 -2.942427 -1.299233 -2.161026 -0.494665 4.639635 -0.732314 -6.755404 -7.467421 -3.453426 4.193824 -1.865291 0.321418 -2.582840 -0.980697 -3.497199 0.011636 -4.564047 0.109774 0.460311 -3.389448 -4.944643 0.758268 -0.724641 -1.820917 0.819702 -3.727208 -1.251083 3.700084 1.185094 2.275948 0.097563 0.308419 -4.440268 -2.980311 1.366285 -3.798943 3.470402 2.443733 -1.102888 -4.232289 -1.911780 -4.261417 2.938535 -1.904972 1.439249 -2.013858 -0.421222 4.117518 -2.968077 0.771272 -3.137655 1.223312 2.332368 -8.509882 5.510819 3.695950 -0.985864 0.233620 1.329603 0.501687 2.754207 2.440187 -3.187990 -3.470284 0.112117 -1.522609 0.401188 -0.524996 2.938402 -3.407351 -0.072350 -2.596948 -1.555223 2.100674 2.091471 0.643362 1.648176 2.242018 -0.827825 1.986154 3.225800 3.187799 -1.047945 -3.207342 -9.164975 3.450131 -0.293434 -1.503884 -0.041199 -2.032517 -2.692517 1.787602 -1.347734 4.095778 0.031034 -1.923242 3.845352 -5.466235 -4.344813 -2.988757 -0.891065 -0.014786 0.097234 0.136721 -1.420454 1.853972 1.752193 -1.191475 -0.646704 -2.561916 -0.072397 0.585121 4.411243 1.173491 1.856609 4.742480 1.486204 -2.522199 -0.949492 0.715984 -0.937993 -1.100250 -4.640628 -1.741702 0.075512 1.294107 -2.027058 0.205302 -1.147729 -1.065722 0.999115 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 1.926606 2.685350 -0.386892 1.270711 0.664326 -1.829391 0.357575 3.197792 -2.997902 -1.618387 -2.470772 1.486092 -0.621985 -0.505192 3.132956 0.196459 -0.231935 -0.151830 -3.605579 1.405604 -0.226820 -0.002677 -0.231159 -1.834048 0.725472 2.157205 -2.646296 1.990545 0.310621 1.489885 -1.094463 -0.776626 0.419316 1.324970 1.727935 -0.961698 2.544008 1.432689 -0.503859 0.719404 3.142225 1.194134 -0.796735 2.353488 2.445430 1.792606 -1.473674 3.168424 -1.246798 0.664392 2.997611 -3.308530 -1.186273 0.896839 -0.608342 0.673375 3.662212 1.360411 -1.267169 2.376013 0.120032 -0.726950 -0.306211 -3.211354 1.788620 2.691248 0.825474 -0.261077 2.586068 -0.832574 -1.842224 0.066639 3.084134 -0.288650 -4.305105 -3.858718 0.163491 -6.147693 1.012872 -5.196997 -2.240300 -1.379227 4.120686 -2.058674 1.230569 2.754955 -2.389787 -0.634178 -2.539145 0.007705 -0.804583 -1.635801 -0.445510 3.083812 0.229870 -0.310152 1.864182 0.074719 3.358513 2.901423 -0.767886 0.530450 -3.825683 -1.785545 -1.282884 4.480620 -0.007691 -0.901619 0.718311 -2.460544 2.060384 -0.369945 -1.617511 -2.546626 2.974796 0.940588 -0.912840 3.561399 -3.952505 1.111196 0.803795 0.360112 2.820471 -1.639213 -0.656786 -1.260249 -1.359952 -0.503533 1.773965 -0.115270 -1.597786 -1.471808 -0.561922 -1.344130 -0.717289 -4.440363 -3.564529 -1.060246 1.850091 0.160841 1.610397 -3.004801 -1.011848 0.666332 -1.571005 1.024815 2.822697 1.383933 1.710270 2.327943 -0.986463 -0.786141 -0.088628 -1.662264 3.054743 0.775325 2.443000 -1.037277 0.065093 0.333324 -0.024056 -2.186346 1.045161 -0.868683 -0.963284 -1.982771 3.103515 -0.707873 -0.543381 -3.060247 1.287038 2.416637 0.112857 -1.082585 -0.761035 -3.284037 0.992346 -1.350507 1.388481 0.375106 0.376770 0.985847 2.697075 -3.686401 -0.334176 -2.481522 1.910734 1.272598 -3.077070 -0.486064 0.994102 -0.182924 1.027058 -0.159618 0.507025 -1.015040 0.698775 3.909712 -0.423549 1.149692 1.167344 -2.654444 -4.538173 -2.022178 0.653759 1.766525 -1.516780 1.793645 -2.628912 1.179146 -2.036551 2.727345 -1.057607 -1.460766 -2.763462 0.813553 3.302549 0.559419 -2.122823 -1.950615 0.832052 2.036020 -3.377694 0.288793 1.087351 0.020575 -2.186776 -1.255101 -0.636112 2.720922 4.330803 -0.614368 -1.649297 0.584077 0.606095 -0.191456 -1.504453 2.715868 -0.507307 1.293055 -1.659287 -1.344694 0.378404 2.128851 1.121955 3.047049 0.480076 2.728255 -1.530469 2.661419 -0.606829 -2.140945 1.445216 -3.066732 -0.279904 5.925489 -0.202219 0.882743 -1.702145 -2.297982 -1.151488 -0.370551 1.456317 1.757440 -0.122964 1.127921 0.910683 -1.336018 -0.224878 2.684864 0.077536 -2.591149 0.057426 -0.222305 0.755168 2.800790 -1.277501 3.225714 -0.367208 -4.005888 -3.965444 0.207076 -0.484042 0.415482 2.137977 0.115314 -2.238972 0.641866 -0.428913 2.306960 2.199600 -2.006382 -0.998147 -2.721750 -0.284630 0.277221 0.278055 0.810926 -1.285447 1.655199 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 2.597156 0.495858 0.265530 2.709416 0.876244 -2.437504 0.788834 2.557838 -0.727672 -5.733721 -4.340245 0.612821 0.029886 -1.357916 1.703533 0.520859 0.061845 1.272526 -7.519664 2.295932 2.654230 1.733941 0.036849 -1.881712 1.065649 -1.189906 -2.161361 1.116116 0.272460 3.426620 -2.317610 0.537817 2.575520 0.427225 1.550500 2.903982 -0.699282 0.062384 2.050626 0.460888 5.186404 2.599849 -0.282659 2.045248 2.336196 3.329926 -1.405771 3.007332 -1.681621 -2.060084 1.821414 -1.607066 -2.263088 0.348473 -2.251092 2.301522 5.150040 2.319099 -1.967541 2.082824 -1.199080 0.084166 1.024666 -1.769951 3.646752 3.020668 1.224965 1.658911 5.291318 -1.252727 -0.330970 1.216610 2.476849 -0.699966 0.780070 -2.272563 -1.871924 -4.324290 -0.345706 -6.773167 -0.737394 -0.520100 5.923330 -3.381154 1.500051 2.434192 0.851597 2.975912 -1.809941 -1.042336 -2.224805 0.717133 -2.165144 5.683141 -0.409732 1.056251 -0.420117 1.510364 1.631530 2.529807 -1.008559 -1.579339 -3.790058 -7.619099 -1.863508 -0.729464 0.510480 0.294865 -4.792082 -0.882481 1.745444 2.920241 -5.305085 -0.376179 2.446122 1.907668 -1.015035 0.001625 -3.832532 -0.378853 -0.902529 0.584823 0.878649 -1.865737 -0.744913 -2.982299 -0.281316 0.398484 1.251640 -0.815754 -3.185336 -1.521558 -0.780272 -1.095556 -0.467169 0.404272 0.800221 -2.265483 1.999922 -2.712942 2.468905 -5.070547 0.110167 -2.122487 -3.357281 -0.262283 2.835321 2.331214 1.003912 0.045315 -1.124392 -1.784653 -4.113871 -4.429379 1.286441 -0.816501 2.997679 -0.404061 -0.161895 -0.157374 -1.201276 -1.091508 0.572521 -1.900866 0.095202 -1.969038 6.098339 -0.953090 -0.912249 -3.099069 -0.518291 2.527362 -1.276910 0.660865 -1.438677 -1.302079 -4.304420 -3.163758 2.777423 -0.696611 0.534925 -2.042282 1.270077 -3.356097 1.397722 -2.635673 0.652292 -0.427433 -2.309289 -3.424671 -0.497205 -0.565580 -0.505043 -0.552460 -2.187523 -0.335674 3.103221 2.255929 0.951302 0.556069 0.411496 -4.141052 -3.971904 -0.710543 -0.345048 2.554671 2.521310 0.247973 -2.639829 -0.609708 -3.523953 3.420942 -1.436078 0.009299 -1.209257 -1.050789 4.429478 -1.573595 -1.145767 -3.832399 0.727747 0.249800 -4.840405 4.678705 1.832298 -2.292346 -1.217055 -2.696458 0.892819 2.349720 4.109003 -1.685310 -1.250880 0.803954 -1.858660 -0.495048 -2.127145 2.835247 -2.179937 2.767363 -2.688560 -1.628172 1.899322 2.916263 -0.414899 2.394890 0.541752 1.031647 1.449371 3.122643 1.684321 -1.473325 -2.848202 -6.128755 1.430377 1.020024 0.546954 -0.606210 -1.273552 -3.389354 0.034768 1.580777 3.949950 3.970608 0.270951 2.592468 -3.071966 -3.525178 -0.691572 1.410724 0.674282 -2.205701 -0.201838 -1.526341 0.614358 1.531155 0.854690 2.052430 -3.447718 -4.218514 -0.687189 3.353544 1.106353 -1.157509 3.712960 0.985638 -1.973025 0.035524 -0.090833 1.406976 -0.243920 -0.780202 -1.560202 -1.932995 0.265013 -1.538184 3.628856 -0.255304 0.560743 1.823891 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.081844 0.242711 0.831043 0.506180 0.648260 -1.092487 0.819643 1.483383 -0.099154 -2.043325 -1.369022 0.109673 -0.199153 -0.812996 0.395449 -0.245005 0.031948 1.146278 -2.043374 0.680085 0.862354 1.170509 0.230172 -1.258425 0.302132 -0.112917 -1.631978 0.662159 0.254740 1.356831 -0.771242 -0.775161 0.953014 0.323177 -0.124918 1.443368 1.205252 0.058716 1.002662 -0.017972 1.972942 0.742181 -0.179917 1.261689 1.137257 1.234760 -0.614328 1.508941 -0.954879 -0.681852 0.542123 -1.980210 -1.162662 -0.258989 -0.707306 1.189080 2.359845 1.610355 -0.728262 1.263314 -0.123412 -0.037498 0.379636 -1.224333 0.468082 1.807080 -0.497628 0.384248 2.574932 -0.870616 -0.593167 0.720088 1.282358 0.066954 -0.005454 -1.004102 -0.173684 -2.829929 -0.099728 -2.476183 -0.304910 -0.442530 2.735340 -1.392753 1.060070 1.977932 0.244074 0.554053 -0.506666 -0.650994 -0.809433 0.492086 -0.528749 2.421441 -0.232219 0.343088 -0.304292 0.323958 0.991223 1.219099 -0.181941 -0.195898 -2.333194 -3.010824 -0.665217 -0.202164 -0.416902 -0.291858 -1.529975 -0.813328 1.765248 0.994040 -2.052908 -0.362915 1.328463 0.921132 -0.724130 0.400319 -1.530457 0.113117 -0.397385 -0.439070 -0.050342 -1.157149 -0.756349 -0.740736 -0.525491 -0.084740 0.140408 -0.633629 -1.444458 -0.640138 -0.530226 -0.373588 -0.091338 -0.459738 -0.394694 -1.293345 0.574545 -1.288358 0.790154 -1.811742 -0.056541 -0.163997 -1.516551 -0.085114 2.071180 0.043331 0.524298 0.274911 -0.638457 -1.341819 -0.694186 -1.687264 0.942327 -0.387689 1.745614 -0.287679 -0.028786 -0.625069 -0.298621 -1.062061 -0.280332 -0.540814 0.402347 -0.478205 2.787603 -1.051462 -0.206192 -1.839774 0.285687 1.943815 -0.257570 -0.585413 -0.937306 0.105526 -0.791492 -1.412993 1.026600 -0.105198 0.101360 -0.406469 0.445349 -1.138027 0.702717 -0.699410 0.706764 -0.036954 -1.410675 -1.443971 0.252691 -0.395883 -0.390300 0.302447 -0.679575 -0.119541 0.235721 0.964026 0.081783 0.033779 0.312499 -2.162029 -1.983056 -1.039000 0.366624 0.998093 0.916753 0.763160 -0.957489 -0.126661 -1.197616 1.496746 -1.096207 -0.283677 -0.562415 -0.012881 2.081056 -0.355774 -0.374244 -2.203361 0.544268 0.464476 -1.388123 1.962593 0.635988 -0.880661 -0.955816 -1.234337 -0.248311 1.345096 2.084510 -0.875364 -0.850903 1.041087 -0.956378 -0.332595 -1.239737 1.029909 -0.506744 1.813825 -1.159515 -0.725512 0.162527 1.583928 -0.452549 1.241434 0.555845 0.887730 0.000356 1.540680 0.441269 -0.678898 -0.972621 -1.972766 0.871375 0.995192 0.563917 0.006352 -0.953717 -1.217735 0.566363 1.200612 1.431014 1.975279 0.626212 1.022430 -0.995635 -1.302435 0.736405 0.648060 0.917444 -1.312293 0.240491 -0.569709 0.205986 0.554402 0.084522 1.096985 -1.085493 -2.142973 -0.566048 1.390620 0.528180 -0.625087 1.607481 -0.116323 -0.901377 0.654525 -0.378412 1.453704 -0.163629 0.399638 -0.124056 -0.913975 0.098890 -0.477259 2.244370 -0.039201 -0.425516 1.041921 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.641719 0.026209 0.369899 0.389638 0.270624 -0.604483 0.420496 0.838635 -0.022169 -1.375599 -0.948954 -0.070485 -0.088539 -0.424846 0.402192 -0.023422 0.046694 0.673477 -1.387525 0.449269 0.610250 0.664820 0.168120 -0.584377 0.218382 -0.133532 -1.119465 0.277059 0.174778 0.898367 -0.548370 -0.259942 0.663269 0.108263 -0.070325 0.836407 0.550326 0.016103 0.668845 0.102365 1.249854 0.390679 -0.062187 0.678939 0.596645 0.806095 -0.507048 1.140929 -0.366478 -0.499133 0.608126 -1.396529 -0.652576 0.020094 -0.471752 0.725223 1.430421 0.972345 -0.449263 0.732050 -0.198721 0.067582 0.239268 -0.837457 0.484362 1.147075 -0.151643 0.307259 1.507879 -0.461389 -0.221780 0.343488 0.692390 -0.020698 -0.002739 -0.674923 0.007697 -1.919879 -0.095183 -1.477342 -0.136990 -0.280025 1.699493 -0.958420 0.598219 1.189620 0.111412 0.508678 -0.328185 -0.247726 -0.560771 0.290723 -0.208628 1.305014 -0.144598 0.147842 -0.270946 0.214220 0.482228 0.635443 -0.110902 -0.161095 -1.612655 -1.916866 -0.603960 -0.108909 -0.156876 -0.085269 -1.187279 -0.361021 1.104049 0.516949 -1.381936 -0.144722 0.754241 0.610394 -0.441784 0.463067 -1.051617 -0.058444 -0.207935 -0.041085 0.034921 -0.682028 -0.332792 -0.842783 -0.282681 0.041100 0.156702 -0.420506 -0.731313 -0.417284 -0.324030 -0.168176 -0.079246 -0.123188 -0.057051 -0.700570 0.450225 -0.743787 0.510195 -1.223761 -0.139567 -0.235470 -0.890789 -0.080787 1.626489 0.248337 0.389491 0.228695 -0.570457 -0.788744 -0.632982 -1.018827 0.428310 -0.317711 1.114021 -0.082139 -0.021866 -0.291727 -0.130294 -0.504105 -0.269383 -0.415448 0.190442 -0.326360 1.453659 -0.597411 -0.174592 -1.243499 0.103151 1.189081 -0.398358 -0.275721 -0.484797 0.100337 -0.621525 -0.862757 0.688846 -0.114541 0.232432 -0.318068 0.372813 -0.825786 0.410898 -0.500890 0.219518 0.021839 -0.925338 -0.948126 0.126346 -0.215411 -0.237277 0.136244 -0.485431 -0.043119 0.248020 0.778417 0.160266 0.084611 0.118438 -1.389615 -1.298909 -0.677824 0.018730 0.684755 0.611434 0.345896 -0.618496 -0.134698 -0.792414 0.980175 -0.804675 -0.130586 -0.337370 -0.071861 1.208439 -0.297884 -0.288445 -1.368346 0.307758 0.231325 -1.182325 1.164834 0.398216 -0.586291 -0.466438 -0.903026 0.037287 0.794067 1.260935 -0.428245 -0.366300 0.517274 -0.513193 -0.168345 -0.811967 0.695640 -0.424813 0.953861 -0.685538 -0.389884 0.240494 0.946976 -0.237299 0.699288 0.396138 0.625388 0.123768 0.868675 0.282495 -0.538596 -0.554792 -1.429990 0.507198 0.958357 0.313107 0.116522 -0.745113 -0.656653 0.266374 0.652358 0.915228 1.246197 0.570468 0.664419 -0.631476 -0.833712 0.344609 0.432421 0.437767 -0.759944 0.156046 -0.334090 0.109587 0.425662 0.135747 0.670119 -0.754583 -1.463939 -0.287154 0.923765 0.317375 -0.311365 0.992065 0.016429 -0.602437 0.329789 -0.214806 0.755092 -0.123069 0.249474 -0.112879 -0.471667 0.034806 -0.404519 1.292057 -0.124146 -0.240693 0.550532 -PE-benchmarks/naive-algorithm.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 2.475674 0.324732 -1.544510 4.658925 -0.117078 -0.934551 0.043235 1.245422 -0.934973 -7.774489 -4.993285 4.150649 0.603960 1.056836 1.320074 1.680807 0.171428 0.435675 -8.062793 1.875759 2.879520 0.838227 0.405300 -0.239144 1.091750 -2.003835 1.468212 0.372736 1.243967 4.469688 -2.512593 2.585914 3.792301 -0.336284 2.034428 2.948732 -1.531890 0.296036 -1.199122 -1.176182 5.600552 2.582703 0.567491 2.378162 0.282337 4.354636 -0.257775 4.200614 1.649562 -3.506730 2.174180 0.509840 -2.568125 0.316139 -2.705492 2.177321 2.340286 1.613095 -1.904315 1.262861 -1.329042 0.043819 0.970371 -1.089974 4.604627 1.934065 3.125371 2.933776 4.139329 -2.564939 -0.197062 2.145453 1.146408 0.360496 2.885732 -2.739811 -3.625665 -0.697490 -0.668068 -6.047606 -2.390108 -0.298958 7.573096 -4.421682 0.016545 0.428052 0.185381 4.361931 -1.767490 0.726496 -3.447505 -0.101703 -1.394783 4.608436 0.742766 0.326922 -0.355748 1.230522 1.085317 2.730195 -0.500296 -2.916931 -2.116488 -6.044999 -1.442123 -1.771022 2.567519 2.752682 -5.408980 -0.312210 -0.970753 5.342071 -6.258620 -0.175860 2.700814 2.282418 2.383825 1.510178 -2.877003 -0.244646 0.982987 0.902485 3.032371 -2.077338 0.442834 -1.382732 0.362383 -0.121892 1.840116 0.277721 -4.494080 -3.195397 -0.228636 -0.626728 0.101822 1.194958 2.871896 -1.547254 3.123714 -1.613468 3.027331 -5.177810 -0.770383 -2.010299 -3.370570 -1.437261 4.801160 4.457490 3.448217 -1.289324 -1.483685 -1.558439 -5.537208 -4.766112 0.738288 0.211101 1.619271 1.915867 -0.347220 2.536401 -2.345477 0.942854 1.099164 -1.893462 -0.926584 -0.576994 2.852512 -0.224245 -0.711049 -3.354366 -1.218101 -1.161989 -1.266904 3.476914 -0.659661 -6.277546 -6.667836 -3.242148 3.766650 -1.699280 0.864471 -2.462162 -0.067271 -2.257783 -0.310465 -4.025449 -0.033960 0.234923 -3.001780 -4.487933 0.266361 -0.690206 -1.467295 0.328914 -3.081460 -0.701365 4.276577 2.006208 1.859156 0.759597 -0.064228 -4.113539 -2.917237 0.850010 -3.126697 3.146019 2.780759 -1.235052 -4.009996 -1.899875 -4.188609 3.045889 -2.513463 1.162762 -1.673814 -0.827826 3.749045 -2.719861 0.243518 -3.271515 1.067541 1.592636 -9.052029 4.117002 3.027647 -1.535049 -0.013287 -0.310811 1.122541 2.539098 3.044474 -2.308050 -2.286159 0.087174 -1.543571 0.238801 -0.817300 2.856994 -3.110077 0.287869 -2.606514 -1.501559 2.608221 1.859557 0.388130 1.110191 1.961154 -0.023074 3.084981 3.045196 3.118841 -1.157245 -3.662494 -9.293102 2.656703 1.465497 -0.973944 0.139051 -2.014916 -2.836810 1.039333 -1.753562 3.940974 0.139149 -0.743821 3.475711 -4.655206 -4.014193 -2.306450 -0.296151 -0.135119 -0.389988 0.328018 -1.522581 1.349228 1.502115 -0.297451 -0.173650 -2.643186 -1.175255 0.560775 3.950350 1.494548 1.568288 4.212925 1.914812 -2.450410 -0.655737 0.611586 -0.641002 -1.377414 -4.670235 -1.731120 -0.336409 0.758317 -2.033600 0.946948 -0.599661 -0.270160 0.799021 -PE-benchmarks/sudoku.cpp__main = 0.442213 0.274606 0.672779 0.313975 0.106628 -0.411276 0.323153 0.900828 -0.266434 -1.511469 -1.206088 0.234901 -0.212398 -0.109273 0.464563 -0.164714 0.181126 0.430999 -2.347440 0.364406 0.793610 0.621267 0.491007 -0.497097 0.340561 -0.272311 -0.695933 0.494246 0.215523 0.941765 -0.664232 -0.074751 0.705382 0.352317 0.450650 0.857682 -0.031631 -0.155746 0.435974 -0.192625 1.385083 0.573743 -0.156968 0.643874 0.626906 0.941770 -0.186400 -0.087011 0.110839 -0.633771 0.118527 -0.926979 -0.763827 -0.067154 -0.499456 0.416922 0.932847 0.833724 -0.568104 0.684064 0.026295 -0.055682 0.124690 -0.894329 0.673417 0.468237 0.095793 0.284739 1.031495 -0.561317 -0.222005 0.271927 0.513819 0.061206 -0.435951 -0.492639 0.001362 -1.952464 -0.012420 -2.245911 -0.567106 -0.123685 1.128800 -0.775556 0.701536 0.813422 -0.436645 0.510111 -0.185912 -0.426288 -0.727495 0.040461 0.025044 0.762080 -0.077463 -0.192871 0.396434 0.358884 0.614559 0.828713 -0.089843 -0.355674 -1.168815 -1.858803 -0.027154 -0.131895 0.255430 0.086392 -0.726686 -0.291949 0.839632 0.971558 -1.164531 -0.276780 0.737440 0.535793 -1.462956 -0.489219 -0.688813 -0.112556 -0.302374 0.185704 0.474726 -0.800626 -0.134012 -0.275452 -0.265937 0.032252 0.498003 -0.102349 -0.485414 -0.888834 0.024236 -0.078105 -0.324784 -0.075667 -0.017386 0.013883 0.530214 -0.772194 0.814629 -0.869209 0.489386 -0.339626 -0.134583 -0.148652 0.800947 0.589480 -0.234043 0.249476 -0.195883 -0.203162 -0.485130 -0.840191 0.768195 0.132279 1.097964 -0.054481 -0.122598 0.110719 -0.265693 -0.428446 -0.401118 -0.400087 0.060754 -0.409426 0.692527 -0.182059 -0.259130 -0.768557 0.363980 0.927044 -0.645754 -0.138966 -0.621599 0.292374 -0.691611 -0.950464 0.768643 -0.213152 -0.016463 -0.211214 0.372071 -0.453621 0.479578 -0.726698 0.238266 -0.119864 -0.863780 -0.944145 -0.026035 -0.334011 -0.087088 0.219732 -0.430713 -0.186832 0.342957 0.522448 0.192579 0.037174 0.292681 -0.812861 -0.848133 -0.461231 -0.129218 0.348057 0.458131 0.080681 -1.231462 -0.179527 -0.428756 1.095020 -0.106549 0.090278 -0.602130 -0.420290 1.129217 -0.119473 0.002863 -0.755518 0.377140 0.614141 -1.608548 0.872127 0.496561 -0.515652 -0.488496 -0.715057 -0.030010 0.810087 1.067968 -0.398684 -0.398681 0.294550 -0.644347 -0.010480 -0.697336 0.748298 -0.200626 0.684359 -0.795179 -0.523928 0.480663 0.555790 0.080268 1.031026 0.586825 0.839743 0.245927 0.958977 0.277030 -0.307527 -0.639323 -1.214571 0.709088 1.524375 0.580555 0.126704 -0.455087 -0.936547 0.005159 0.414589 0.837611 1.127687 -0.015400 0.719216 -0.373345 -0.799697 -0.196438 0.242947 0.260202 -0.469782 0.065043 -0.131484 0.234605 0.415645 0.003213 0.781908 -0.470742 -1.391972 -0.185722 0.788413 0.657001 -0.064618 0.975415 -0.005226 -0.851865 0.182578 -0.103089 0.471334 -0.082817 -0.065058 -0.464647 -0.450456 0.137900 -0.376947 0.693480 0.013171 -0.057131 0.285143 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.134272 0.871919 -1.727842 2.999018 -0.433686 -0.728056 0.142122 0.439437 -0.999462 -4.777716 -3.466758 2.598134 0.816945 0.474205 0.847803 0.821241 -0.907112 0.522824 -3.838606 0.994296 1.950628 0.844547 -0.320233 -0.016853 0.302474 -0.842672 -0.218863 0.520195 0.722880 2.878167 -1.080743 1.408354 2.494540 -0.472157 -0.123234 1.706822 -0.149837 0.675766 -0.475142 -0.301096 2.982600 1.179094 0.264979 1.409972 0.155662 2.575308 -0.583623 3.334075 -0.874483 -2.375604 1.589995 0.334007 -1.248371 -0.234944 -0.762518 1.524838 2.291173 1.365090 -1.132102 0.829064 -0.887699 -0.252031 0.688860 -0.509105 2.311911 2.345884 1.929447 1.430977 2.712226 -1.581754 -0.282424 1.341784 0.176617 -0.508929 1.631433 -1.056055 -2.227833 0.278657 -0.289808 -3.962771 -2.304800 0.265217 5.408809 -2.998127 -0.435612 0.695534 0.816777 2.641285 -1.426558 0.700169 -1.696795 -0.263961 -1.346911 3.521706 0.654435 -0.082971 -1.039134 0.804330 1.144233 1.513004 -0.709244 -1.341705 -2.379878 -3.533604 -1.662074 -0.885258 1.108116 1.857718 -4.034204 -1.149035 0.178316 3.071305 -4.199822 -0.078690 2.444611 1.868628 2.381819 2.403465 -3.152594 0.712534 0.806512 -0.362860 2.208808 -0.350972 0.367242 -0.690521 0.288343 -0.183953 -0.126080 0.288909 -4.106886 -1.880010 -0.187162 -1.126905 0.206865 0.442794 1.742922 -0.996598 1.943705 -0.962110 1.669812 -4.168705 -0.567013 -0.367991 -3.292807 -0.687936 2.058195 3.343998 2.225871 -1.439757 -1.565435 -1.420932 -3.518910 -3.392975 0.049435 0.276744 1.214871 0.507791 -0.223452 1.471969 -1.303517 0.905742 1.587371 -0.660117 -0.279589 0.034769 4.210275 -0.560921 -0.430142 -1.939931 -1.329488 -1.481312 -0.631669 2.355438 -0.177317 -3.371118 -4.351449 -1.409236 2.315250 -0.737945 0.337868 -1.809596 -0.359842 -2.462469 -0.251536 -2.191150 -0.258356 0.435383 -2.153388 -2.741836 0.363108 -0.017549 -2.058583 0.021321 -2.015973 -0.888561 3.358676 0.805539 1.635472 0.075105 -0.042976 -2.486881 -1.926700 0.349259 -2.243457 2.155645 2.790757 -0.389084 -2.262752 -0.793086 -3.378956 1.879480 -1.692769 0.367088 -1.191191 0.137048 2.693854 -2.060226 -0.564670 -2.045875 0.245680 0.867807 -5.187115 2.965201 1.878392 -0.399101 0.277421 0.495528 0.194270 1.990713 1.552868 -2.088341 -1.777810 -0.284668 -1.137362 0.178487 -0.168794 1.749152 -2.687830 0.404880 -1.045958 -0.534492 1.278239 1.557883 0.121714 0.911337 0.809677 -0.395616 1.942451 1.349563 1.693313 -1.670527 -1.280290 -5.151558 1.911015 -1.155085 -1.478010 -0.356644 -0.986368 -1.369475 0.614738 -1.252963 2.197902 -0.756944 -1.005938 2.029749 -3.254028 -2.471145 -1.268418 0.298465 -0.152248 -0.144051 0.536333 -0.316091 1.300620 1.657797 -0.807526 -0.000660 -2.485077 -1.050882 -0.175117 2.630244 -0.053257 0.644852 2.746615 0.610884 -1.369715 -0.155205 -0.103545 0.158263 -1.136203 -3.066333 -0.861634 -0.155162 0.557660 -1.187812 0.757125 -0.765533 -1.009501 1.113399 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 2.018340 -0.087848 -0.883202 3.786878 0.512250 -1.121274 0.186070 1.146512 -0.292676 -6.047171 -4.463121 3.175696 0.331198 0.294938 1.149829 0.851273 0.247155 0.461235 -6.450609 1.677698 1.967930 0.690536 -0.088160 -0.592820 0.717430 -1.652096 1.251627 1.030790 0.760105 3.384087 -1.887176 1.524863 2.823920 0.004180 1.821284 2.684323 -0.878574 0.160239 -0.808181 -0.715855 4.839886 2.476883 0.049956 2.387666 1.031637 3.529658 0.176593 2.953748 1.060240 -2.434868 1.365393 0.665353 -2.178238 -0.397716 -2.594662 1.920984 2.867103 0.866740 -1.899250 1.261757 -0.608010 -0.247177 0.824563 -0.961571 3.694734 1.359149 2.542383 2.105967 3.821113 -2.123819 -0.617350 2.062144 2.075048 0.712796 2.115712 -2.122607 -3.383936 -0.672224 -0.570186 -5.123418 -1.698469 -0.542606 5.384125 -3.303801 -0.004788 0.571293 -0.262393 3.168490 -1.495449 -0.149397 -2.702089 0.023916 -1.317476 4.100446 0.679548 0.370725 -0.020579 1.233965 1.155875 2.693312 -0.416203 -2.528491 -1.656796 -6.211054 -1.115264 -1.431731 1.695052 1.472727 -4.045235 -0.624602 -1.013926 4.251560 -4.661706 -0.430186 2.486428 1.530072 1.249709 -0.642070 -2.348031 -0.068430 0.774065 0.563050 2.328421 -1.649191 -0.055556 -0.868492 0.703857 -0.141234 1.356513 0.213093 -2.855460 -2.502366 -0.269296 0.276472 -0.059744 0.338385 1.710974 -1.741842 2.341237 -1.369671 2.636690 -4.429148 -0.153074 -1.786019 -2.467836 -0.903629 3.130882 2.905089 3.011141 -0.914617 -0.858733 -1.179245 -4.239163 -4.835301 1.218253 0.177300 1.368963 0.885701 -0.262276 1.721375 -1.736414 0.129177 1.324477 -1.600184 -0.521685 -0.594392 2.770277 -0.272560 -0.594733 -2.478645 -0.808585 -0.158781 -0.493899 2.412158 -0.872782 -5.025517 -4.672310 -2.721602 2.876878 -1.264734 0.442025 -1.673821 -0.179685 -2.429923 0.230170 -3.135958 0.230862 -0.188125 -2.640269 -3.494328 -0.316393 -0.634495 -0.500745 0.244456 -2.635213 -0.487091 3.309381 1.851660 1.329399 0.793979 0.129693 -3.437972 -2.602535 0.401695 -1.850821 3.304904 2.059138 -0.680567 -3.174633 -1.205814 -3.462241 2.716356 -2.063032 0.683597 -1.206609 -0.956088 3.372077 -1.974978 -0.286068 -2.667033 0.992881 1.296958 -6.492347 3.670875 2.858396 -1.472579 -0.504966 -0.321000 0.535362 2.069355 3.105542 -2.270043 -1.911733 0.366503 -1.283055 0.004495 -1.158016 2.462019 -2.020145 0.838699 -2.504613 -1.637683 1.805318 1.774655 0.281170 1.229187 1.124941 0.346924 1.757992 2.933345 2.263744 -0.630316 -3.247307 -7.202186 2.115004 0.868950 -0.738422 0.401307 -1.492617 -2.704312 0.565110 -1.191710 3.381568 0.746369 -0.743350 2.908626 -3.430415 -3.282238 -1.724490 -0.349238 0.195990 -0.659268 0.859470 -1.522135 0.973761 0.749992 -0.278112 -0.128972 -2.084611 -1.161701 0.270872 2.884022 1.216344 0.899530 3.425329 1.207090 -2.211033 -0.508651 0.291484 -0.385674 -0.595965 -3.646006 -1.667665 -0.905785 0.636523 -1.363125 1.209590 -0.501874 0.390476 0.849665 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.190969 0.611965 2.069495 0.028938 0.813661 -0.844582 1.010230 2.522727 -0.732357 -2.577029 -3.589207 -0.807407 -0.794451 -0.696051 1.466524 -1.225945 0.509597 0.360094 -5.104004 0.724110 1.530479 1.077178 0.885966 -0.642510 0.705549 -0.497140 -3.436863 1.573300 -0.007408 1.459645 -0.881087 -0.699635 1.005334 1.074950 0.667244 1.771651 -0.541941 -0.443897 2.469561 -0.229288 2.691089 1.162271 -0.202184 1.437763 1.888243 1.523256 -1.639547 1.213245 -0.287955 -0.934318 1.441641 -4.258064 -1.634681 0.437959 -0.787008 0.822563 3.002498 1.315020 -0.993419 1.521945 -0.639684 -0.341044 -0.058442 -2.946990 0.975396 1.795629 -0.308029 -0.250842 2.119490 -0.858489 -0.890594 1.125488 1.387181 0.370542 -3.274558 -1.422300 0.889546 -4.667770 0.524007 -4.956147 -1.194347 -1.019527 3.023233 -0.849012 1.187962 1.876132 -1.363846 0.281757 -0.486093 -0.962972 -1.116100 0.386017 -0.164364 0.657496 -0.728368 -0.332364 1.227310 0.129653 1.370213 2.093222 -1.557560 0.271949 -4.060549 -4.819012 0.102284 0.608691 0.549689 -0.560658 -1.183645 -0.730831 1.855509 0.698879 -1.430279 -1.116987 1.664700 1.172739 -4.883081 1.502771 -2.695234 -1.404954 -0.261416 0.528728 1.277727 -1.040596 -0.292105 -2.339422 -0.626017 0.018962 0.698042 -0.648491 -0.402845 -1.681409 -0.258834 -0.534743 -0.781775 -0.983752 -0.744243 0.662216 1.059121 -1.170655 1.326881 -2.231209 1.070478 -1.203322 -0.602768 0.269241 2.542892 2.188553 -0.427499 1.544238 0.150842 -0.684129 -0.391906 -0.778654 1.119088 -0.300852 3.464416 -1.396302 0.013418 -0.109378 0.023764 -1.409554 -1.824733 -0.320188 0.600055 -1.419506 2.546982 -0.488522 -0.435019 -1.945312 1.102064 2.473526 -2.845273 -1.274208 -1.213880 1.169120 -0.211139 -2.025352 1.100090 0.087071 -0.043499 -0.258541 1.675905 -0.937957 0.988019 -0.953452 -0.217349 -0.179384 -2.448897 -1.337215 -0.341537 -0.448246 -0.121089 0.326571 -0.134538 -0.732061 2.167406 3.183345 0.823026 0.641405 0.121006 -1.535578 -2.035513 -2.104141 0.371276 1.025845 1.716954 -0.009967 -1.982222 -0.102319 -1.018817 2.537645 0.461640 -0.583557 -1.623791 -0.850765 2.389946 0.098314 0.018927 -1.800220 0.306445 1.107888 -5.088088 0.981474 0.638059 -0.958873 -1.768408 -2.956961 -0.585648 1.715785 2.562363 0.022599 0.071798 0.462476 -1.340042 -0.147769 -1.865308 1.670111 -0.006355 1.597162 -1.549209 -1.455351 1.135988 1.184884 0.036449 2.272076 0.953329 3.513297 1.651762 1.961457 -0.222411 -2.005437 -0.779780 -3.689931 1.154054 5.757903 0.867799 0.533515 -1.014256 -2.603565 -0.697789 0.784159 1.704102 3.522118 0.920736 1.232958 1.061440 -1.087124 -0.133425 1.408518 0.430633 -1.585736 -0.249826 -0.279288 0.428911 1.072865 -0.292850 2.821602 -1.546773 -5.285784 -1.224444 1.361412 1.210466 0.067102 1.593395 -0.181980 -1.552303 0.263922 -0.089731 1.743371 0.320176 0.600760 -0.975634 -1.658712 -0.377215 -0.189081 1.570626 0.769201 0.234622 1.226411 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 2.279102 -0.257716 -0.702248 4.106720 0.491986 -1.205788 0.326583 1.426694 -0.290046 -6.546065 -4.418584 3.848383 0.236195 0.401784 1.045148 0.760172 0.372085 0.414588 -7.432590 1.862933 2.109482 0.768246 0.040656 -0.716182 0.811236 -1.844209 1.829528 1.308170 0.880149 3.752415 -2.112656 1.551658 3.120740 0.174557 2.301757 3.064353 -0.757229 0.103337 -1.175732 -1.024468 5.318026 2.952122 -0.083965 2.536062 1.062095 3.965165 0.635314 2.959860 1.713713 -2.731931 1.062016 0.541980 -2.517572 -0.521551 -2.888223 1.896077 2.489816 1.114401 -2.132290 1.458700 -0.832125 -0.312127 0.910902 -0.820454 4.006218 1.063336 2.646757 2.302878 4.077750 -2.522900 -0.697635 2.283254 2.247510 0.898882 2.392473 -2.180949 -3.891060 -1.262988 -0.443439 -5.585495 -2.223975 -0.453478 5.502839 -3.585927 0.290189 0.626428 -0.422636 3.395400 -1.730867 -0.195356 -3.220239 -0.075546 -1.033479 4.443683 0.739811 0.317053 0.372819 1.351520 1.342900 3.018370 -0.209851 -2.957994 -1.388386 -6.531287 -0.681699 -1.703485 1.789959 1.591648 -4.034741 -0.624442 -0.986148 5.085030 -5.012992 -0.494484 2.655003 1.471961 1.388611 -0.941728 -1.755903 0.076664 0.834682 0.561017 2.814625 -2.243724 -0.037792 -0.363493 0.825181 -0.054905 1.606667 0.381081 -3.111095 -2.767052 0.105674 0.362526 -0.162796 0.368864 1.686322 -1.814331 2.525395 -1.704649 3.053760 -4.238230 0.018620 -1.766114 -2.349335 -1.091254 3.899547 3.145903 3.073726 -0.964578 -0.826136 -1.042330 -4.334894 -5.413605 1.550268 0.371124 1.360652 1.039774 -0.300097 1.917985 -2.045450 0.156924 1.159272 -1.719165 -0.663551 -0.406537 1.933854 -0.127383 -0.589820 -2.509659 -0.621336 -0.152792 -0.331711 2.718757 -1.110976 -6.136826 -5.012289 -3.013376 3.217579 -1.377564 0.234410 -1.724322 -0.401540 -2.107028 0.254469 -3.437041 0.566117 -0.317696 -2.787392 -3.892283 -0.203233 -0.901233 -0.258968 0.404385 -2.710592 -0.574948 3.115739 1.784558 1.286165 0.853945 0.332536 -3.590885 -2.569732 0.592030 -1.928375 3.572928 1.772897 -0.746950 -3.505431 -1.406792 -3.511859 2.999767 -2.296797 0.880426 -1.350394 -1.402233 3.752539 -1.946451 -0.152543 -2.702993 1.327115 1.723238 -6.676524 3.932214 3.323162 -1.643124 -0.634320 -0.103778 0.446924 2.481842 3.450188 -2.536273 -2.292968 0.478966 -1.402049 0.051902 -0.995498 2.524742 -2.073198 0.840909 -2.810290 -1.876385 1.966218 1.771768 0.402658 1.179909 1.352672 0.325050 1.793655 3.372855 2.431723 -0.268189 -3.794710 -7.884148 2.536834 1.505839 -0.554165 0.441360 -1.770738 -2.942415 0.718480 -1.417149 3.607617 0.959305 -1.137115 3.206906 -3.865528 -3.617742 -2.079672 -0.577135 0.146432 -0.578728 1.050735 -1.627568 1.203421 0.631115 -0.313072 -0.267390 -1.771849 -0.925426 0.449549 2.786501 1.601488 0.953640 3.793258 1.261066 -2.447742 -0.570972 0.396987 -0.592257 -0.726723 -4.034845 -1.798183 -0.951693 0.918447 -1.464118 1.184108 -0.336126 0.403577 0.782268 -PE-benchmarks/coin-change.cpp__main = 0.563969 -0.006992 0.324182 0.430152 0.278870 -0.508219 0.396080 0.706700 0.031009 -1.301575 -0.813077 0.087238 -0.072770 -0.327479 0.296451 -0.033189 0.072997 0.663215 -1.136616 0.361382 0.507472 0.609414 0.142384 -0.543778 0.170517 -0.122582 -0.836060 0.270222 0.215869 0.857080 -0.497158 -0.261731 0.639902 0.081720 -0.069924 0.802697 0.674723 0.049082 0.426413 0.010194 1.180772 0.341636 -0.048537 0.701987 0.508694 0.780592 -0.340431 1.060008 -0.234527 -0.478575 0.471901 -1.186610 -0.592412 -0.081902 -0.483386 0.701846 1.255555 0.909304 -0.453257 0.678949 -0.091912 0.052873 0.229797 -0.713142 0.388153 1.010313 -0.152099 0.331035 1.399714 -0.527590 -0.250261 0.362578 0.666363 0.068521 0.141328 -0.615701 -0.090086 -1.645890 -0.117033 -1.248098 -0.143710 -0.250848 1.555415 -0.920837 0.533398 1.101676 0.067489 0.453710 -0.282738 -0.227893 -0.573159 0.241895 -0.155945 1.239989 -0.055393 0.112368 -0.247094 0.200740 0.448940 0.617695 -0.013220 -0.218472 -1.357872 -1.742869 -0.549960 -0.175119 -0.141206 -0.048539 -1.033184 -0.376284 0.953039 0.573214 -1.294782 -0.135101 0.714954 0.556884 -0.262629 0.288356 -0.851486 0.027629 -0.138151 -0.130663 0.054413 -0.674605 -0.320202 -0.578453 -0.253754 -0.003651 0.139518 -0.349047 -0.680048 -0.420681 -0.305225 -0.067847 -0.056858 -0.159344 -0.057522 -0.721787 0.429621 -0.670199 0.489000 -1.075702 -0.151231 -0.141531 -0.835671 -0.128809 1.543141 0.097763 0.496044 0.138842 -0.557684 -0.753956 -0.559652 -1.050752 0.466367 -0.223773 0.947741 0.025150 -0.040392 -0.219168 -0.188976 -0.464836 -0.166352 -0.376911 0.144967 -0.192975 1.223156 -0.586457 -0.142963 -1.160282 0.121386 1.047347 -0.234915 -0.189477 -0.478148 -0.079973 -0.572906 -0.788438 0.662033 -0.141268 0.204147 -0.240098 0.228076 -0.732792 0.346801 -0.499275 0.261265 0.003990 -0.873846 -0.924067 0.170177 -0.238674 -0.210704 0.225298 -0.503571 -0.010693 0.117221 0.636200 0.114645 0.056672 0.145902 -1.322532 -1.170597 -0.585859 -0.014706 0.662925 0.502213 0.344638 -0.569838 -0.167240 -0.719689 0.859550 -0.836420 -0.084585 -0.274395 -0.044739 1.098088 -0.299692 -0.239596 -1.269320 0.331391 0.308068 -1.006676 1.096393 0.423861 -0.524369 -0.423557 -0.682280 -0.009238 0.736066 1.175973 -0.500628 -0.442266 0.541061 -0.476866 -0.141021 -0.739966 0.611017 -0.352122 0.861029 -0.670508 -0.375632 0.173710 0.873579 -0.215312 0.610078 0.435922 0.495374 0.034723 0.869845 0.308670 -0.380017 -0.562719 -1.303406 0.536045 0.756933 0.274250 0.139869 -0.717798 -0.551338 0.344297 0.552686 0.829409 1.025702 0.481646 0.666044 -0.674154 -0.788978 0.347701 0.272996 0.460929 -0.680163 0.222179 -0.345343 0.124950 0.306882 0.075596 0.490120 -0.584565 -1.150136 -0.215096 0.832057 0.284308 -0.216099 0.951500 -0.008795 -0.591516 0.349079 -0.209173 0.670713 -0.135114 0.104194 -0.077661 -0.391792 0.077178 -0.383004 1.157451 -0.164443 -0.269131 0.496158 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.218084 1.338417 -3.405550 9.540456 -0.832981 -1.919156 0.127513 2.255982 -2.461027 -15.103036 -8.788471 6.701708 1.883977 3.255131 1.868886 2.845050 -0.946719 1.229672 -15.288183 3.160689 6.382869 3.140387 1.202379 -0.663303 1.987638 -3.075231 3.517540 0.742929 2.823447 9.086714 -4.332362 4.841051 7.738994 -1.980902 2.679318 5.781061 -0.826755 1.486803 -3.461549 -1.062371 10.155196 4.479456 0.235048 4.410234 -0.456704 8.598793 1.048308 5.667209 -0.236769 -7.479780 2.417792 2.899949 -4.327792 -1.830204 -3.841005 4.201185 5.904319 5.672619 -3.688041 2.261845 -1.080470 -1.390961 2.294501 -0.618179 7.820232 3.864514 6.259593 6.386543 8.232820 -5.202676 -0.471120 3.743709 0.607160 -0.059264 6.245175 -5.367393 -7.850543 -1.304037 -1.866258 -12.556899 -6.276767 0.428152 12.652607 -9.002759 0.525473 0.597747 0.304605 8.234064 -3.320635 1.030701 -6.289008 -1.727386 -3.013990 9.609902 1.341762 -0.233633 -0.298492 3.281298 3.045877 5.134046 -0.110006 -6.033819 -2.921104 -9.716313 -2.856902 -3.535660 4.370207 7.009165 -10.244945 -2.481269 -3.486198 9.259313 -13.121769 0.240208 5.535294 5.861115 6.836185 0.802281 -6.072947 1.247745 1.889713 -0.471806 6.471126 -4.215534 1.285187 -0.663131 0.683827 -0.223334 1.886936 1.361422 -9.737915 -6.825497 -0.919844 -1.943764 0.738117 2.357554 5.771871 -3.716363 6.032307 -4.169754 6.203025 -10.512159 -1.392523 -1.772328 -7.453413 -3.084450 5.723765 6.605155 5.087272 -4.723645 -5.120137 -2.410366 -10.481353 -9.514414 1.865835 1.981042 2.367337 4.789448 -1.518488 5.376118 -4.835702 2.020095 3.782492 -2.330388 -1.810272 -0.293625 6.158389 0.191892 -0.718928 -5.568372 -2.592723 -3.654473 0.013196 8.266592 -1.683843 -10.235988 -13.870055 -5.394211 7.560328 -2.830136 0.652295 -5.057213 -1.640792 -6.508147 -0.034973 -8.528426 -0.006004 0.050514 -5.197340 -8.817762 1.488656 -1.247375 -3.611286 1.214728 -5.979379 -2.031668 7.192311 2.719157 3.627587 -0.611455 0.597239 -7.717728 -5.274865 2.770561 -6.451620 6.646984 3.666593 -1.857904 -7.339444 -3.045036 -7.629971 6.022417 -2.494409 2.526940 -3.027174 -0.035883 7.841428 -5.545276 0.408347 -6.702836 1.996449 3.839232 -14.322010 9.241716 5.379372 -1.687181 0.937886 2.450029 1.198403 5.124653 3.787159 -5.271758 -6.563346 0.635272 -2.608931 0.744727 -3.035916 4.729639 -6.532994 0.567057 -4.347757 -2.435781 4.299651 3.569251 0.603311 2.656763 3.810549 -2.360142 3.174165 5.740178 6.785271 -1.696654 -5.750326 -13.434294 5.903037 -1.496359 -1.851378 -1.776012 -3.412640 -4.516719 3.429534 -2.183652 7.374554 1.020957 -3.299502 6.864053 -10.756436 -7.920691 -4.882842 -0.684692 0.422846 0.177067 -0.258223 -2.821830 4.038705 3.742157 -1.691520 -0.791598 -5.658194 -0.203919 0.983995 7.391467 1.018384 3.206871 8.710016 2.779961 -4.208736 -1.015082 1.809201 -1.518027 -3.380118 -8.177537 -2.970462 0.137624 2.194904 -3.977424 1.290687 -2.996829 -1.995439 2.375087 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.372645 0.107032 0.506774 0.407704 0.089953 -0.327882 0.408773 0.802828 -0.123138 -1.376649 -0.829368 -0.568620 -0.093897 -0.144746 0.519046 -0.144037 -0.009439 0.580689 -1.856419 0.215783 0.880994 0.659566 0.618599 -0.480664 0.299381 -0.152957 -1.205480 0.214677 0.212289 0.983262 -0.560813 -0.039468 0.702603 0.239327 -0.053806 0.676823 0.299670 0.085087 0.617830 0.116778 1.041135 0.412839 -0.274352 0.325196 0.249012 0.795006 -0.501236 0.595271 -0.460728 -0.608558 0.403948 -1.563189 -0.475581 0.160846 -0.229377 0.547238 1.340425 1.280654 -0.252638 0.643843 -0.441763 0.144081 0.182202 -0.891629 0.442056 0.971398 -0.127449 0.325858 1.140908 -0.510088 -0.021025 0.006179 0.134559 -0.383450 -0.262615 -0.451104 0.131117 -2.442748 -0.025599 -1.661657 -0.379764 -0.042726 1.135393 -0.875730 0.685338 1.122817 0.113410 0.568806 -0.319130 -0.052197 -0.585796 0.193243 -0.087932 1.172213 -0.035469 -0.031959 -0.077979 0.268862 0.541801 0.463237 0.025595 -0.035897 -1.440288 -1.696892 -0.410310 -0.066419 0.138059 0.184879 -1.005210 -0.194795 1.324896 0.361239 -1.346289 -0.060857 0.560281 0.849774 -0.864231 0.182983 -0.813949 -0.041207 -0.306574 -0.044388 0.261735 -0.903054 -0.077665 -0.831586 -0.414000 0.122535 0.253450 -0.357369 -0.416257 -0.452372 -0.227800 -0.407758 -0.052824 0.134345 0.108616 -0.237987 0.480300 -0.904208 0.589277 -0.873464 0.201404 -0.087741 -0.675508 -0.149363 1.407465 0.355880 -0.271977 0.219766 -0.678610 -0.527266 -0.505261 -0.840714 0.321800 0.076123 1.183214 0.033399 -0.151720 -0.100962 -0.292076 -0.198554 -0.421971 -0.325349 0.091614 -0.167927 1.059912 -0.376937 -0.233533 -1.049522 0.228273 1.042394 -0.760632 -0.087286 -0.386815 0.700098 -0.749658 -0.825133 0.742111 -0.160462 0.120484 -0.467367 0.507916 -0.749065 0.474359 -0.489428 0.158945 0.198172 -0.809301 -0.960991 0.162794 -0.227039 -0.177605 0.312070 -0.427041 -0.130672 0.238083 0.588759 0.209382 -0.004588 0.280283 -0.969568 -1.029240 -0.612015 -0.211991 0.239886 0.332550 0.140164 -0.543860 -0.233429 -0.463626 0.995670 -0.157172 -0.007037 -0.614701 -0.140480 0.969358 -0.189506 -0.355352 -1.154031 0.175347 0.320478 -0.614302 0.966105 0.146482 -0.400601 -0.343897 -0.904598 0.126432 0.677260 1.018347 -0.360029 -0.362393 0.298279 -0.559385 -0.062035 -0.657819 0.576702 -0.481440 0.553026 -0.504964 -0.247842 0.327532 0.741540 -0.162744 0.902395 0.710047 0.628838 0.306504 0.657424 0.296718 -0.655348 -0.386820 -0.991070 0.537034 1.078219 0.483263 -0.264558 -0.702249 -0.599741 0.269792 0.980147 0.765477 1.796112 0.389924 0.657475 -0.475656 -0.687500 0.110997 0.443563 0.312687 -0.715079 -0.253039 -0.159642 0.287710 0.618724 0.090703 0.890883 -0.800057 -1.487434 -0.274813 0.855683 0.157984 -0.237922 0.950066 0.134703 -0.623040 0.252133 -0.171040 0.475870 -0.198123 0.562058 -0.061381 -0.204876 0.040959 -0.440237 0.921449 -0.128407 -0.468806 0.486637 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 3.178238 2.824024 -6.047574 14.027410 -2.092012 -2.440330 -0.459383 1.574756 -4.568318 -20.433045 -11.550993 6.366205 3.421899 4.542473 3.046053 4.704398 -2.125560 1.400996 -20.416960 3.921499 9.624001 3.818091 1.645895 -0.464386 2.475101 -4.280333 4.754735 0.224874 3.372946 12.426398 -5.399337 8.388848 10.560924 -3.284399 3.116118 7.080648 -3.198612 2.997336 -4.336379 0.174746 12.764177 5.287493 0.627363 4.143645 -1.774448 11.408273 0.916949 6.166859 -3.183422 -10.257508 4.121223 7.184865 -4.323706 -2.273613 -4.430216 4.897391 8.927173 8.335114 -4.089631 2.536084 -2.895263 -1.494659 3.383430 0.545263 11.542821 5.705773 9.493373 9.404275 10.473479 -6.225883 0.509170 3.740969 -1.617660 -2.546679 8.872573 -6.867672 -11.031422 -0.071704 -3.539072 -16.950810 -7.862991 2.053440 17.024396 -11.851121 -0.423204 -0.570745 2.135836 12.025098 -4.696714 2.007522 -7.611006 -2.632654 -5.997015 13.815419 2.162239 0.091828 -1.118942 4.662448 3.778782 5.810419 -0.747585 -8.048964 -2.881835 -11.974004 -5.349659 -4.771322 6.833314 10.604155 -14.976249 -3.147502 -5.431343 10.341663 -18.481224 1.069155 6.696580 9.110634 10.532821 0.605371 -9.740021 1.809037 2.243556 -0.141219 9.012641 -4.642395 2.637407 -2.410491 0.597390 -0.275452 2.264113 1.813865 -13.510996 -8.563556 -2.096321 -4.624247 1.761997 4.808872 9.250639 -4.077891 8.036579 -5.919906 8.589240 -15.326494 -1.864207 -2.838368 -11.368555 -4.191351 4.103464 9.617409 5.529538 -7.934253 -7.958616 -2.441729 -15.811039 -11.945774 0.834363 3.140858 2.476880 6.900631 -2.497437 7.587068 -6.934622 4.401792 7.006773 -2.884597 -2.751265 -0.516251 10.500680 1.358097 -1.539635 -6.924788 -4.648547 -7.112610 0.042990 12.888847 -1.305560 -11.684077 -21.022457 -6.552790 10.273683 -4.073546 0.629182 -8.167831 -2.325426 -10.125258 0.034480 -11.790688 -0.964707 0.721908 -5.462414 -11.772206 2.094260 -0.999331 -5.727040 0.884834 -8.424107 -3.077781 11.685990 2.251888 5.506704 -1.204644 0.616493 -9.118452 -6.534981 5.157478 -9.579050 7.245138 5.666674 -2.763188 -9.134607 -3.963463 -10.517261 7.116409 -0.198145 3.721652 -3.784297 0.634806 9.820355 -8.237830 0.520423 -8.500665 1.293521 3.864702 -18.686714 12.497787 6.122184 -1.820297 2.367744 3.883103 2.685400 5.423338 3.068261 -6.634087 -8.583549 -0.104658 -3.155036 1.175509 -3.436127 5.687288 -10.034043 -0.716702 -4.970828 -2.228375 6.574200 4.648214 0.631055 3.266529 4.473845 -5.316292 5.012863 6.228843 9.960243 -3.042576 -6.579373 -16.699362 7.167430 -6.868833 -3.134923 -4.577269 -2.857703 -5.664675 4.715359 -1.896587 9.803471 1.886496 -5.776070 9.037491 -14.928299 -10.711033 -7.936832 -0.173796 0.316282 0.172160 -2.725472 -3.803217 5.815105 6.061723 -1.824616 -0.735049 -9.364802 0.719328 1.458276 11.021142 -0.326913 3.859161 11.646613 4.488667 -4.708997 -2.384871 3.107833 -3.298416 -4.291275 -10.879044 -4.152358 1.028827 3.230232 -5.624862 0.946196 -4.996780 -2.880474 3.992020 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/karatsuba.cpp__main = 15.859189 0.159814 7.796393 8.532351 5.902972 -9.426909 -2.509797 19.623060 -8.675737 -18.182955 -22.533843 -1.408413 -5.878133 1.985402 20.921336 -2.172930 0.700174 -4.071744 -37.678712 11.768410 2.080337 1.411397 0.423424 -9.620504 9.117587 6.996764 -5.870010 7.654551 2.698340 7.501923 -16.485631 0.171118 2.902792 7.064666 13.212593 -4.252628 -2.557434 -4.853322 -0.315942 -8.917797 24.964410 8.031940 -1.333336 15.990585 11.988316 5.777270 -7.861878 13.273430 2.663878 -4.343941 14.324296 -25.336594 -7.813507 9.462401 -11.910796 11.104664 20.962407 5.318011 -8.464383 6.645199 -0.251921 2.488011 1.219329 -20.062096 18.432332 7.236836 13.686070 1.643483 14.482494 -7.006285 -1.636524 6.756754 19.043304 3.636738 -17.573404 -18.359593 7.840176 -37.547246 7.479185 -30.312230 -3.921879 -10.494948 15.129390 -7.658152 9.897398 11.403276 -12.001795 7.804629 -14.714285 6.121805 -5.816304 -0.114012 -2.552234 8.947841 -7.179868 -2.696363 13.220045 3.580890 8.272525 18.781565 -4.572731 4.444745 -12.902809 -26.724047 -6.194925 20.723032 4.062000 -5.100803 -7.300413 3.205367 8.671788 1.133112 -4.155369 -14.428838 6.801366 7.543838 -20.214064 6.786477 -13.800289 -12.454902 -2.828209 13.529106 8.867561 -10.300057 7.878507 -18.391467 -2.875616 6.706673 18.978867 2.240632 1.696354 -13.355417 -1.460805 -0.448379 -10.478041 -9.242706 -1.912409 -0.347200 11.879263 -0.576141 8.368045 -16.962794 -0.466022 -11.020541 1.284962 6.020364 21.095651 7.909578 1.221948 20.173024 -4.188914 -2.275643 -5.077978 -8.148223 9.642485 8.882116 12.074436 -1.405889 2.689307 6.973959 1.278674 -17.055513 -1.013398 -11.694468 -9.826458 -18.592530 6.030951 -2.755058 -2.556883 -16.683857 15.516659 17.723468 -19.339378 -1.731962 -0.469274 -3.377457 -4.136212 -12.239405 8.755808 1.195814 0.904078 3.522831 15.544439 -14.035692 5.963955 -13.840091 3.625155 2.506762 -22.576523 -7.568645 -5.029105 0.402973 4.617275 -2.020031 -5.050770 0.250032 6.585260 26.040785 -1.335713 11.158149 7.839407 -19.721762 -29.503527 -14.406977 5.203000 11.860620 -2.106774 -2.565762 -13.073056 -3.906169 -2.367724 19.150030 -9.197807 -1.775688 -13.817663 -1.629992 11.538873 -3.244081 -9.394671 -12.142853 2.443740 9.131235 -24.487604 11.497238 3.843997 -8.808702 -10.347129 -25.633035 7.850092 9.007164 28.271480 -2.298999 2.751296 -0.169675 6.082310 -3.295529 -15.559847 17.801520 -0.147870 -1.501014 -9.297464 -16.736270 3.232519 7.556731 7.417054 14.420368 9.050511 21.114872 -0.318396 21.687047 -0.068892 -11.874555 -4.960810 -25.783580 2.831806 43.121198 2.370172 4.035097 -17.123521 -21.397904 -10.465264 6.746083 10.339175 24.359576 15.651412 7.286000 1.110643 -7.279895 -3.773206 14.156397 -6.152245 -10.357094 -2.756681 -6.902527 -0.288966 8.679883 -1.806761 6.702144 -1.000343 -35.443146 -18.748536 4.551942 4.088519 3.458802 12.631777 14.001904 -14.957707 1.258852 -0.171476 4.064755 3.991069 1.740851 -10.068802 -10.138800 -6.989222 -5.679868 4.534084 9.527537 0.908684 -1.142059 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 11.638307 -0.621551 2.338627 12.579147 3.234320 -7.734351 -2.363470 12.327419 -5.957181 -19.429656 -18.440361 4.733627 -2.789613 3.811297 14.472499 -0.527893 -0.848051 -2.278202 -30.599946 9.936767 3.336159 2.415929 -0.071839 -6.685210 7.004742 4.212356 1.887310 5.449493 3.660519 8.937962 -13.091764 2.814276 5.768617 2.877245 9.325082 -0.746907 -1.059424 -1.778135 -4.994829 -7.482011 21.434776 6.720481 0.390114 13.963633 6.666461 7.583209 -2.660036 13.096262 5.992388 -7.194107 10.995101 -12.752270 -6.575370 3.847649 -10.226729 10.111397 15.836738 5.584224 -7.719344 4.387924 0.768477 0.815478 2.579485 -12.374244 16.369908 6.626301 13.044801 5.020731 13.908374 -7.625246 -1.346131 6.832420 13.928045 3.670749 -5.651591 -16.150133 -0.668880 -22.568413 3.198769 -23.237361 -5.753489 -6.836893 14.683106 -9.882029 6.357490 6.228327 -7.934258 9.679757 -11.590274 5.778437 -6.672993 -1.140016 -3.009081 10.525066 -4.099327 -2.432931 8.529313 3.388298 6.274006 15.592348 -2.444849 -0.309670 -6.686872 -22.240492 -5.949873 12.249877 4.851902 0.567270 -9.961696 1.003509 0.203790 4.588093 -9.013058 -10.592974 7.261353 7.590670 -6.964364 3.436480 -10.278285 -7.664758 0.567501 8.704432 9.759913 -8.742807 6.585372 -11.114579 -1.339078 4.527416 13.527378 2.954534 -2.104979 -13.102409 -2.253572 1.371969 -6.280053 -5.349646 2.353172 -2.326813 11.040874 -1.188325 8.357191 -16.330941 -2.574897 -7.817536 -1.879794 2.342399 17.421848 6.504331 5.931879 9.620314 -6.373595 -3.068044 -8.985458 -11.009627 7.417539 7.457495 7.092551 3.216576 1.138321 8.228961 -1.387731 -10.435743 3.117372 -8.887256 -8.635954 -11.801922 3.210929 -1.652832 -1.538160 -14.292073 9.409977 7.989666 -11.765634 4.222957 -0.055680 -11.270205 -10.000331 -10.080220 9.627233 -0.466555 0.597779 0.087749 7.975226 -12.412808 2.930963 -14.165093 1.893040 2.024536 -17.938324 -9.577117 -2.800290 -0.210939 2.064233 -0.656426 -7.465327 -0.567989 6.664458 19.210101 0.641750 7.736535 5.757391 -18.006328 -22.223233 -7.661338 0.125201 11.979139 -0.619672 -2.087183 -11.927844 -4.635657 -5.002883 14.421471 -9.725781 0.419388 -9.512832 -0.372728 11.315802 -5.763262 -5.375639 -10.981684 2.440199 8.769773 -23.683062 12.248262 5.690388 -6.216225 -5.631806 -13.873005 5.791054 8.357446 20.682461 -5.432699 -2.226518 0.385698 3.978073 -1.933328 -11.971600 13.676617 -3.369282 -2.333023 -7.624396 -12.622669 3.097934 6.216417 5.674026 8.847860 7.629060 11.087329 0.279922 17.567201 3.893395 -7.605958 -6.411720 -24.945819 5.600296 27.253039 -0.229008 2.707148 -14.670624 -15.816108 -3.776867 2.484307 10.213982 14.505923 9.621658 8.242985 -6.248525 -8.443482 -5.083424 7.966524 -4.206318 -5.405660 -1.155175 -6.672643 1.933221 6.959479 -2.901477 0.752632 -1.477721 -21.237830 -11.594001 5.813592 2.307635 4.995037 12.816804 11.346955 -12.238235 0.206583 0.943684 0.277530 -0.246061 -4.619710 -7.666705 -5.845409 -3.408819 -5.804167 3.007715 3.716466 -0.831368 -0.566240 -PE-benchmarks/kmp-algorithm.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 3.576912 0.697002 -3.319153 7.883601 -0.498434 -1.562128 -0.020506 1.180090 -1.980172 -12.591841 -7.739735 6.154551 1.556231 1.837100 1.880992 3.274116 -0.452308 0.707513 -11.985232 2.674469 4.774566 1.257237 0.439194 -0.450990 1.509033 -3.192300 2.572534 0.597815 1.852217 7.298406 -3.692292 4.446160 6.255999 -1.147127 2.370634 4.612133 -2.320128 1.120267 -2.186266 -1.098304 8.632980 3.366958 0.885455 3.298667 -0.048059 6.981222 -0.503953 6.994351 1.013712 -5.645490 4.243781 2.595386 -3.689453 -0.086457 -4.017165 3.457838 4.923711 3.036267 -2.864203 1.865147 -1.950864 0.071169 1.774923 -0.650653 7.501978 3.918941 5.543432 5.075426 6.823658 -4.179140 -0.201168 3.251368 0.964871 -0.371246 5.368508 -4.803033 -6.129186 0.218539 -1.226299 -9.436232 -3.792476 0.056558 12.170296 -7.209498 -0.860096 0.459544 1.228754 7.384761 -2.872233 1.560196 -5.087205 -0.340231 -3.034641 8.892219 1.284166 0.767020 -1.214115 2.212532 1.860408 4.221181 -0.732800 -4.682955 -3.340120 -9.048695 -3.517768 -3.029417 4.130817 5.019084 -9.514761 -1.024797 -1.594604 7.121960 -10.640482 0.118328 4.540937 4.577700 5.780387 2.478340 -5.722145 0.181210 1.570977 0.941891 4.681461 -2.501806 0.915204 -2.329036 0.796232 -0.255352 2.265641 0.359683 -8.703034 -4.812479 -0.811284 -1.808175 0.768878 2.202608 5.094092 -2.742012 4.906253 -2.723347 4.806165 -9.619784 -1.493636 -3.078762 -6.420458 -2.331161 5.428294 6.702944 5.425391 -3.030534 -3.281124 -2.505411 -9.607889 -8.047906 0.420693 0.640339 2.131476 3.268376 -0.917405 4.185634 -3.863694 1.979556 3.037252 -2.883682 -1.641211 -1.014513 6.622675 -0.203335 -1.299770 -4.955178 -2.576785 -2.911594 -1.302075 6.578029 -0.682112 -9.426059 -11.726903 -5.025453 6.118370 -2.737191 1.170326 -4.384593 -0.619756 -5.297846 -0.406365 -6.569601 -0.082789 0.650790 -4.458048 -7.291103 0.878344 -0.714055 -3.044838 0.407719 -5.541331 -1.306332 6.860209 2.231490 3.301251 0.735839 -0.185299 -6.777921 -4.962178 1.963152 -5.271617 4.784558 4.891344 -1.591284 -5.659689 -2.979236 -7.171209 4.268376 -3.530778 1.991579 -2.272076 -0.572971 6.024627 -4.995656 0.257558 -5.381247 1.326529 2.138863 -13.231595 7.764107 4.537568 -2.130909 0.372227 0.383945 1.783465 3.605750 4.124074 -4.111137 -4.152558 0.094845 -2.116644 0.331997 -0.986025 4.487503 -5.490426 0.411680 -3.913958 -2.109998 3.925829 3.510306 0.400810 2.010818 2.759485 -1.425829 4.241362 4.507518 5.218396 -2.129420 -5.014217 -14.165993 4.112963 -1.438495 -2.351318 -0.518593 -2.847630 -4.228321 2.228974 -1.906952 6.504773 -0.379032 -1.779440 5.595348 -8.238613 -6.657387 -3.944383 -0.488116 -0.057678 -0.569319 -0.257193 -2.382212 2.298310 2.869347 -0.705687 -0.475330 -5.008027 -1.085853 0.784556 7.072580 1.306597 2.204434 6.979957 3.018057 -3.368169 -1.371014 1.025364 -1.087704 -1.833640 -7.339811 -2.586294 -0.188910 1.446295 -3.377076 1.428972 -1.562260 -0.942286 1.771036 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 1.090432 0.082895 0.980309 0.133350 0.738976 -0.387253 0.492504 1.229561 -0.581164 -1.718834 -1.822066 -0.974766 -0.356304 -0.613096 1.008986 -0.100489 0.625062 0.024602 -2.408852 0.341927 0.691066 0.167532 0.006518 -0.152986 0.313992 -0.642976 -2.060232 0.852689 -0.205305 0.839062 -0.619157 -0.060511 0.598202 0.483497 0.463699 0.916965 -0.284375 -0.404237 1.538203 0.230718 1.976038 0.262393 -0.027974 0.603716 1.269239 0.985050 -1.513980 1.665096 -0.785982 -0.329015 1.680397 -2.432662 -0.771878 0.629752 -1.022703 0.499893 2.065815 0.651316 -0.690321 0.957110 -0.892644 0.294740 0.043015 -1.206144 1.137440 1.407080 0.301462 0.084212 1.523919 -0.445916 -0.384645 0.718630 0.746953 0.133179 -1.674962 -0.804101 0.988776 -2.862290 0.382076 -2.152760 -0.004005 -0.796068 2.288326 -0.405070 0.129148 1.338265 -0.240473 0.513186 -0.542699 -0.230610 -0.801885 0.508735 -0.193873 0.993240 -0.570301 0.300848 0.194180 0.101733 0.482657 1.096004 -0.834827 0.030700 -2.784126 -2.778203 -1.028886 0.227947 0.203572 -0.614413 -1.371495 -0.042976 1.723720 -0.065056 -0.955268 -0.393231 0.626540 0.829902 -1.593742 1.842332 -2.169233 -1.172918 -0.217233 0.690340 0.189768 -0.128330 0.045662 -2.532481 -0.075627 0.137172 0.568681 -0.671241 -0.972206 -0.356669 -0.107651 -0.797523 -0.377505 -0.276259 -0.181956 -0.122022 0.618642 -0.670900 0.738599 -1.927064 0.077411 -1.244520 -1.044091 0.203043 1.916410 1.570385 0.140116 1.387884 -0.343707 -0.541210 -0.861953 -0.810963 -0.135061 -0.497089 1.833649 -0.775204 -0.022074 -0.233577 -0.040321 -0.792027 -0.683909 -0.543265 0.174353 -1.264479 2.139159 -0.394967 -0.464450 -1.300929 0.512507 1.714376 -1.626047 -0.433317 -0.569713 0.661586 -0.621735 -1.279462 0.609618 -0.140224 0.254100 -0.185742 0.996637 -1.312791 0.683452 -0.439445 -0.117360 -0.178908 -1.460438 -0.904732 0.117221 -0.187440 -0.417137 -0.017825 -0.419298 -0.107453 1.180131 1.524116 0.575693 0.433969 -0.334397 -1.258232 -1.853259 -1.173359 0.300855 0.853062 1.377162 -0.042150 -0.491171 -0.230542 -1.048082 1.476826 -0.234108 -0.289198 -0.301654 -0.630620 1.065234 -0.313888 -0.376645 -1.296362 0.191718 0.040831 -2.470194 1.233936 0.401459 -1.180126 -1.249349 -2.392969 0.271099 0.573969 1.733583 0.158577 0.508790 0.285194 -0.186629 -0.252982 -0.844748 1.036129 0.020486 0.944373 -1.325017 -1.061123 0.869562 1.235571 -0.285794 1.040400 0.378803 1.755506 0.883616 1.294203 -0.078809 -1.162082 -0.232884 -2.455467 0.215156 2.172908 0.090144 0.212518 -0.807142 -1.456156 -0.615706 0.592574 1.264375 1.856502 0.936553 0.820809 0.350203 -0.844591 -0.074768 0.840767 0.135341 -1.297269 -0.175832 -0.389129 -0.117410 0.464860 0.357168 1.455285 -1.364612 -3.130970 -0.756611 1.089602 0.512090 -0.398363 1.007868 0.239296 -0.544765 -0.048307 0.094603 1.152014 0.904817 0.285327 -0.639149 -1.053443 -0.323826 -0.309447 1.188523 0.567412 0.397574 0.867410 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 2.051188 -0.723719 -0.560043 1.793799 0.590748 -1.935547 0.503813 1.094069 -0.232480 -2.823874 -1.492369 1.833218 0.108355 -1.443572 0.426326 0.726624 -0.055962 0.257609 -3.069495 1.841008 0.540465 0.267249 -1.347845 -0.986216 0.208725 -1.035472 0.009250 1.278860 -0.349347 1.610402 -1.064477 0.167927 1.265284 0.026621 1.026515 1.795984 0.133697 -0.138168 0.669810 0.664297 3.031947 1.453698 -0.243904 1.064942 1.694841 1.913531 -0.391708 3.127525 -0.185737 -0.694582 1.530981 0.324344 -1.457807 -0.170038 -1.970200 1.040052 2.162102 0.271267 -1.307291 1.189179 -1.310184 -0.040233 0.804235 0.452361 2.748842 1.587333 1.267231 1.052362 3.521876 -0.691835 -0.419936 1.417316 2.294747 0.082458 1.588115 -0.948094 -1.950227 -1.750451 0.048480 -2.329657 -0.424437 -0.453102 3.365995 -1.753248 -0.031477 1.112057 1.113253 1.900226 -1.675154 -0.336004 -1.466576 0.502635 -0.901720 4.058804 -0.275341 1.292520 -0.686770 0.792596 0.665754 1.616584 -0.498752 -1.519270 -1.698809 -4.096779 -1.535990 -0.765021 -0.633701 -0.561195 -3.259173 -0.363667 1.154708 2.078734 -2.802287 -0.133511 1.437255 0.286205 2.190061 0.740667 -1.789612 0.099157 0.025836 0.433975 0.374589 -0.456694 -0.547192 -1.544124 1.052855 0.374609 0.424601 -0.431064 -2.978552 -0.112011 0.297386 -0.252047 -0.031686 0.011771 0.150270 -2.288349 0.809211 -1.316850 1.399317 -3.199124 -0.590675 -1.550913 -2.045850 0.044431 2.371088 1.632914 1.921931 0.040504 -0.646879 -0.923120 -2.774106 -3.864977 0.312571 -1.202147 0.616324 -0.688158 0.072108 -0.441503 -0.421251 -0.616768 0.990318 -1.407968 -0.036937 -1.117309 2.763738 -0.315945 -0.386566 -1.404712 -0.775662 1.159627 0.796335 0.823651 -0.666921 -3.667341 -2.428243 -1.715903 1.352978 -0.223977 0.029572 -1.018212 -0.200542 -2.187756 0.716167 -1.100156 0.768383 -0.605898 -1.157211 -1.807882 -0.149094 -0.232657 -0.244326 -1.004356 -1.395007 -0.069281 0.907305 0.589543 0.515005 0.583481 -0.226300 -2.643012 -2.517855 0.135152 0.383551 2.621840 1.510559 0.558713 -0.838092 -0.276483 -2.813444 1.738635 -2.767935 0.022494 0.457960 -1.364881 2.796066 -1.145585 -1.155408 -1.821955 0.938570 -0.396005 -1.964314 3.564253 2.058105 -1.833248 -0.943427 -0.961757 0.419720 1.549147 2.794485 -1.293132 -0.554836 0.638677 0.035726 -0.559698 -0.203257 1.578050 -1.199463 1.896829 -1.796668 -1.311236 0.843823 2.143604 -0.349015 0.147560 -0.928338 -0.197697 -0.003288 1.889723 0.775360 -0.078675 -1.821494 -4.286682 0.571363 -0.982907 -0.637979 0.533920 -1.281985 -1.758609 0.024482 -0.216548 2.552739 0.333666 -0.292058 1.335360 -2.434723 -2.311920 -0.672707 0.314606 -0.028628 -1.048694 1.320194 -1.126326 -0.040901 0.224362 0.732012 -0.083800 -1.395245 -1.188905 -0.168317 1.196323 0.903343 -1.315557 2.044188 0.516662 -0.629196 -0.604143 0.024764 0.448017 0.454112 -1.303143 -0.855853 -1.510812 0.576454 -0.696991 2.401489 0.250781 0.976950 0.955999 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.576243 -0.087932 0.051367 0.377986 0.366668 -0.472297 0.155973 0.319585 -0.083200 -0.867700 -0.551389 0.175851 -0.054605 -0.459703 0.259678 0.204981 0.178147 0.261310 -0.605497 0.454116 0.178269 0.158919 -0.274591 -0.257178 0.108697 -0.262290 -0.435231 0.218174 -0.040851 0.461845 -0.412167 0.037479 0.353325 0.083464 0.258860 0.482098 0.173664 -0.140077 0.421499 0.137926 1.012220 0.147953 0.151127 0.430034 0.593262 0.518988 -0.406624 1.022508 -0.084843 -0.155409 0.604691 -0.487728 -0.318272 0.179765 -0.661243 0.471463 0.676666 0.126758 -0.427240 0.371797 -0.250575 0.135249 0.176655 -0.261584 0.689988 0.643140 0.112379 0.280241 1.081399 -0.147752 -0.120771 0.362633 0.705562 0.099023 0.200844 -0.284128 -0.059316 -0.759312 -0.086491 -0.573620 0.210518 -0.292174 1.226400 -0.498181 0.084520 0.600432 0.221638 0.483453 -0.312358 -0.137268 -0.466368 0.284301 -0.207413 0.809987 -0.133704 0.335327 -0.345498 0.108401 0.075304 0.419128 -0.225663 -0.281479 -0.867373 -1.327180 -0.679535 -0.123326 -0.180677 -0.326425 -1.006340 -0.034411 0.533577 0.549548 -0.821748 -0.091719 0.317561 0.148329 0.070548 0.465421 -0.736166 -0.242404 -0.052650 0.230017 -0.185396 -0.072181 -0.194197 -0.899789 0.039554 0.047501 0.248409 -0.317346 -0.568346 -0.071672 -0.123317 -0.074905 -0.102109 -0.059798 0.017771 -0.644856 0.267482 -0.300603 0.293768 -0.889242 -0.288473 -0.555825 -0.707346 0.015195 1.101144 0.353114 0.638353 0.306697 -0.265144 -0.470394 -0.727182 -0.852587 0.083245 -0.555911 0.440765 -0.099033 0.052213 -0.233691 -0.072829 -0.368125 0.138226 -0.469784 0.004434 -0.476329 0.860411 -0.348587 -0.146651 -0.744352 -0.092908 0.738933 -0.126575 -0.071772 -0.260849 -0.414821 -0.532296 -0.581182 0.354288 -0.109576 0.261199 -0.217491 0.215390 -0.619346 0.234379 -0.303519 0.091709 -0.179493 -0.472115 -0.541439 -0.028825 -0.111341 -0.198330 -0.193935 -0.383929 0.154764 0.286552 0.365746 0.121552 0.188523 -0.183757 -0.882322 -0.928642 -0.274356 0.174526 0.557697 0.579839 0.202735 -0.326226 -0.169035 -0.744787 0.570435 -0.878905 -0.067407 0.216696 -0.281505 0.690201 -0.361206 -0.303890 -0.660775 0.229641 -0.156661 -0.976259 0.802898 0.377849 -0.677966 -0.386364 -0.771745 0.264427 0.359518 0.980137 -0.186807 0.121119 0.270130 -0.007466 -0.185941 -0.377691 0.510032 -0.235635 0.680782 -0.637776 -0.448110 0.292933 0.727381 -0.207036 0.112737 -0.062660 0.294057 0.143544 0.634432 0.199063 -0.130170 -0.439876 -1.190043 0.041807 0.225527 0.019999 0.290055 -0.439955 -0.455456 -0.065973 0.013279 0.771719 0.216376 0.394371 0.427431 -0.470665 -0.619617 0.139237 0.196275 0.103577 -0.531527 0.347321 -0.380066 -0.171703 0.046236 0.335198 0.171601 -0.490020 -0.789465 -0.123720 0.501588 0.293667 -0.293862 0.575200 0.188585 -0.245927 0.045089 -0.024469 0.452496 0.147928 -0.269837 -0.255896 -0.459972 -0.031333 -0.269896 0.893849 -0.029773 0.266816 0.294409 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.762146 0.273438 1.437067 0.019922 0.645606 -0.269120 0.599448 1.452003 -0.468838 -1.731957 -2.172892 -0.783055 -0.523532 -0.309413 0.982079 -0.705821 0.617734 0.191234 -3.072547 0.193458 0.875627 0.448789 0.535273 -0.231054 0.355753 -0.453808 -2.008146 1.045302 0.031109 0.930992 -0.584746 -0.323157 0.653226 0.714614 0.473980 1.116723 -0.206581 -0.354117 1.363836 -0.183655 1.847405 0.521960 -0.098454 0.862836 1.174017 1.037942 -1.045144 0.809091 -0.117130 -0.550395 1.042653 -2.775943 -0.958847 0.286860 -0.750815 0.423475 1.871023 0.890119 -0.678450 1.041245 -0.434086 0.000210 -0.066453 -1.792050 0.673228 1.016928 -0.060678 -0.147796 1.219843 -0.701247 -0.599072 0.714613 0.755102 0.392433 -2.170696 -0.859673 0.856694 -3.116933 0.338595 -2.845919 -0.552968 -0.709294 1.827770 -0.405790 0.563356 1.263030 -0.970199 0.170513 -0.256857 -0.527799 -0.833428 0.296612 0.066790 0.381197 -0.360913 -0.207363 0.833142 0.027296 0.786547 1.345190 -0.821816 0.066945 -2.608279 -2.987713 -0.182111 0.272106 0.436298 -0.404988 -0.678950 -0.333345 1.314415 0.268711 -0.765230 -0.693678 0.891912 0.812913 -2.965027 0.925680 -1.699224 -1.036150 -0.150272 0.479599 0.770375 -0.652945 -0.061557 -1.659264 -0.356036 -0.043525 0.576084 -0.452536 -0.185857 -0.968438 -0.105134 -0.372988 -0.483308 -0.587322 -0.411393 0.472106 0.662178 -0.698672 0.893943 -1.379635 0.608805 -0.818689 -0.389914 0.087088 1.782872 1.380951 -0.194539 1.194312 -0.038159 -0.357232 -0.244486 -0.603099 0.544910 -0.040530 2.157877 -0.730996 -0.070400 0.021230 -0.084242 -0.902834 -1.103227 -0.265624 0.269608 -0.884005 1.366982 -0.312575 -0.353943 -1.264888 0.888591 1.663498 -1.856039 -0.676921 -0.810056 0.834234 -0.153453 -1.315127 0.703179 -0.141267 -0.003448 0.005588 0.966917 -0.710610 0.644795 -0.571201 -0.187153 -0.121032 -1.668670 -0.938991 -0.026838 -0.377516 -0.085090 0.425597 -0.274257 -0.345745 1.239555 1.865057 0.529286 0.402256 0.001112 -0.946208 -1.386333 -1.364966 0.163035 0.626933 1.048988 -0.071810 -1.094708 -0.173021 -0.566339 1.586829 0.304752 -0.276899 -0.876799 -0.576258 1.214690 0.052237 0.021932 -1.092580 0.246830 0.760344 -3.025060 0.674671 0.426868 -0.796679 -1.253865 -2.023003 -0.233102 0.869696 1.629856 0.017682 0.096355 0.367064 -0.682051 -0.090777 -1.113570 0.959284 0.234675 0.808396 -1.211975 -1.026045 0.728952 0.824903 -0.010643 1.390714 0.793558 2.264631 1.021191 1.379797 -0.165427 -1.156642 -0.362511 -2.352297 0.739448 3.551034 0.510121 0.330199 -0.740593 -1.561833 -0.456738 0.492558 1.004443 2.279608 0.694071 0.885750 0.752478 -0.682277 -0.130150 0.738650 0.355512 -1.089029 -0.178883 -0.253016 0.208564 0.479535 -0.091673 1.687875 -0.953997 -3.245028 -0.702587 0.921200 0.708436 0.073942 1.026723 -0.077373 -0.971119 0.159170 -0.032710 1.091486 0.525350 0.301221 -0.649814 -0.974242 -0.220769 -0.154869 0.858293 0.508654 0.145936 0.789403 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 2.527702 -0.406152 -0.700745 4.158087 0.526837 -1.579259 0.479713 1.611396 -0.303731 -6.772910 -4.490237 3.293302 0.338934 -0.010028 1.126850 1.020598 0.220780 0.647261 -7.534263 2.092828 2.258160 1.025784 -0.040105 -1.065475 0.812356 -1.868998 1.371351 1.388813 0.742137 3.903895 -2.155606 1.392599 3.263120 0.011102 2.006075 3.298703 -0.583641 0.163425 -0.735696 -0.534283 5.586287 2.896464 -0.147547 2.509165 1.300928 4.116359 0.504428 3.433949 1.054043 -2.705692 1.579801 0.342663 -2.658144 -0.654191 -3.009018 2.056306 3.410413 1.574596 -2.214587 1.711554 -0.973907 -0.257289 1.106961 -0.733277 4.246428 1.671258 2.752495 2.417883 4.753239 -2.504030 -0.669815 2.319958 2.453041 0.635276 2.604257 -2.749277 -3.838182 -1.984628 -0.518310 -5.940720 -1.924138 -0.454525 6.037100 -3.813561 0.356107 1.074356 -0.102175 3.587375 -1.906268 -0.308008 -3.172107 0.111665 -1.298214 5.275908 0.433287 0.498400 0.075885 1.525682 1.430980 3.053810 -0.149204 -2.968254 -2.025036 -6.986331 -1.271243 -1.725087 1.504592 1.417070 -4.683669 -0.768892 -0.508491 4.455757 -5.549753 -0.388865 2.910257 1.794088 1.855562 -0.818794 -2.362559 0.084032 0.638702 0.679717 2.547738 -2.267369 -0.155956 -0.958593 0.900759 0.148028 1.421857 0.084515 -3.600739 -2.617962 -0.155717 0.165118 -0.075980 0.429092 1.654332 -2.305818 2.527075 -2.064914 3.198102 -5.084827 -0.173788 -1.944996 -2.803112 -1.016074 4.027145 2.975411 3.058629 -0.971203 -1.248739 -1.253961 -4.663770 -5.626344 1.358348 0.081396 1.581689 0.886304 -0.308460 1.556867 -1.862164 -0.014080 1.221318 -1.839970 -0.545090 -0.675771 2.903951 -0.290124 -0.710929 -2.798641 -0.732665 0.362650 -0.136234 2.665021 -1.163983 -5.844924 -5.278859 -3.208150 3.346767 -1.326044 0.293812 -1.927207 -0.335349 -2.828625 0.616080 -3.510969 0.674719 -0.277370 -2.963147 -4.099047 -0.068712 -0.858332 -0.327986 0.219290 -2.861622 -0.569462 2.965722 1.989592 1.316397 0.804161 0.297933 -4.328410 -3.242412 0.377175 -1.689578 4.007680 1.942708 -0.423658 -3.390605 -1.279693 -3.818303 3.156392 -2.424407 0.741102 -1.234143 -1.303101 4.157091 -2.132303 -0.157321 -3.342764 1.320116 1.425773 -6.640557 4.735402 3.464284 -1.905957 -0.770346 -0.427570 0.547903 2.526874 3.690978 -2.579019 -2.370790 0.678231 -1.364074 -0.119163 -1.333416 2.681443 -2.296835 1.278685 -2.989176 -1.949848 1.968954 2.283746 0.151800 1.306186 1.148488 0.209149 1.310280 3.561130 2.425273 -0.449974 -3.777572 -8.138337 2.433517 1.126940 -0.551123 0.407147 -1.875965 -3.047719 0.825601 -0.745333 3.984678 1.662486 -0.916828 3.301503 -4.173576 -3.934343 -1.946686 -0.275608 0.327545 -0.890454 0.909191 -1.813278 1.081682 0.789591 -0.137286 -0.078593 -2.217709 -1.321250 0.295492 3.295084 1.539156 0.418678 4.076168 1.215243 -2.329372 -0.574072 0.392473 -0.314591 -0.457145 -3.433841 -1.753334 -1.131716 0.976834 -1.593027 1.854101 -0.478113 0.428542 1.031664 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.351507 0.299297 0.612610 0.115137 0.227471 -0.429217 0.463074 0.786065 -0.181091 -0.964091 -0.731947 -0.459999 -0.130006 -0.354619 0.301854 -0.196052 0.014247 0.667330 -1.217997 0.190518 0.594733 0.634725 0.376643 -0.621190 0.156929 -0.047187 -1.195576 0.346152 0.089870 0.704582 -0.368450 -0.344533 0.477666 0.286577 -0.134128 0.679438 0.490072 -0.010336 0.686678 0.064081 0.875144 0.294708 -0.186380 0.418013 0.460462 0.603869 -0.350765 0.251578 -0.737218 -0.335687 0.149140 -1.318275 -0.520458 -0.045884 -0.223819 0.456267 1.202594 1.054115 -0.246225 0.687556 -0.184239 0.030015 0.167032 -0.846451 0.186100 0.851218 -0.322758 0.144545 1.116249 -0.437343 -0.178378 0.142673 0.367779 -0.195799 -0.404814 -0.354332 0.240209 -1.992163 -0.039813 -1.579783 -0.165053 -0.077406 1.208139 -0.599175 0.617573 1.089460 0.036923 0.236946 -0.226783 -0.331823 -0.390838 0.231415 -0.203230 0.963168 -0.075877 0.002214 -0.060984 0.195494 0.551381 0.490189 -0.139621 0.047358 -1.329261 -1.531095 -0.274290 -0.004939 -0.163694 -0.143292 -0.647646 -0.387172 1.226988 0.400918 -1.007179 -0.176281 0.600955 0.589129 -1.033047 0.019102 -0.830648 0.017945 -0.341186 -0.119515 0.070266 -0.672387 -0.251118 -0.465381 -0.395337 -0.019871 0.125545 -0.319273 -0.488139 -0.384543 -0.235658 -0.370672 -0.073145 -0.135467 -0.205486 -0.276960 0.274631 -0.783899 0.458747 -0.792560 0.278914 -0.023782 -0.654177 -0.033058 0.891547 0.163508 -0.234982 0.241218 -0.341555 -0.504653 -0.202867 -0.625348 0.483742 -0.036736 1.068407 -0.208669 -0.077979 -0.338921 -0.138967 -0.459579 -0.282109 -0.225560 0.209514 -0.218662 1.397291 -0.411942 -0.203586 -0.908214 0.291248 1.134126 -0.393785 -0.406283 -0.505147 0.786273 -0.311810 -0.711623 0.521830 -0.046564 -0.001691 -0.238899 0.368933 -0.544178 0.508620 -0.293452 0.273094 0.094452 -0.699519 -0.724049 0.118855 -0.197950 -0.302159 0.237110 -0.244034 -0.085708 0.170103 0.401730 0.039292 -0.056672 0.246442 -0.802108 -0.901317 -0.639501 0.157315 0.223299 0.479980 0.373783 -0.621550 -0.034975 -0.376134 0.862310 -0.059916 -0.123183 -0.461177 -0.029068 0.940404 -0.109883 -0.145274 -0.966526 0.214803 0.245021 -0.743525 0.824376 0.233405 -0.402229 -0.500261 -0.827420 -0.075148 0.599921 0.973036 -0.330060 -0.296805 0.460695 -0.539284 -0.134170 -0.687907 0.463029 -0.200854 0.759159 -0.521799 -0.290755 0.167213 0.716272 -0.216348 0.823113 0.430147 0.667318 0.056890 0.675276 0.130349 -0.506625 -0.322379 -0.667351 0.422259 0.818789 0.476487 -0.067746 -0.367474 -0.575562 0.221721 0.742532 0.642723 1.407718 0.223009 0.499518 -0.213637 -0.559598 0.309319 0.452845 0.469191 -0.739832 -0.020995 -0.192452 0.129697 0.382977 0.061358 0.817202 -0.624338 -1.371006 -0.325032 0.752672 0.261375 -0.368278 0.786438 -0.118468 -0.466785 0.316606 -0.209753 0.725949 -0.016628 0.512052 -0.073873 -0.375270 0.063429 -0.266085 1.059821 -0.041793 -0.298810 0.580620 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 1.262583 0.215909 -0.233174 1.338232 0.036756 -0.953840 0.228389 1.112985 -0.523418 -2.844962 -2.254677 0.592201 0.092267 -0.396878 0.905163 0.624157 0.027017 0.338048 -3.674957 1.138204 1.270624 0.517440 -0.060508 -0.441887 0.478853 -0.788199 -0.897916 0.391935 0.075330 1.648936 -1.060565 0.683720 1.318084 0.085433 0.810467 1.289343 -0.846734 -0.142393 0.827587 0.195690 2.372579 1.215266 -0.040867 0.724995 0.815508 1.647416 -0.701540 1.529314 -0.462372 -1.097050 1.142262 -0.779611 -1.206336 0.426447 -1.087075 0.806210 1.739229 0.800305 -0.784554 0.884957 -1.010245 0.073573 0.450553 -0.834722 2.122222 1.168435 1.072997 0.879986 2.118402 -0.562401 0.016598 0.697693 0.881544 -0.257165 0.303610 -0.964959 -0.799170 -1.852170 -0.113148 -3.211091 -0.577989 -0.205561 3.226929 -1.612250 0.338540 0.776119 0.250481 1.647249 -0.981229 -0.133111 -1.160557 0.234761 -0.759031 2.046875 -0.129234 0.358798 -0.241545 0.663561 0.601680 1.055818 -0.643854 -0.847545 -1.936303 -3.241515 -0.815442 -0.329864 0.448759 0.372891 -2.469104 -0.182821 0.722755 1.780803 -2.497412 -0.073398 1.144580 0.805596 -0.104935 0.787945 -1.904708 -0.323566 -0.142430 0.751057 0.848946 -0.735649 -0.007215 -1.587445 0.185998 0.200965 0.720117 -0.204935 -1.794814 -0.906799 -0.030826 -0.604099 -0.183275 0.472171 0.710280 -0.679006 1.080310 -1.063763 1.248748 -2.531753 -0.004836 -1.189935 -1.483356 -0.158791 1.939032 2.144732 0.673090 0.083131 -0.488028 -0.609494 -2.224187 -1.883832 0.305658 -0.410760 1.277743 -0.133636 -0.012762 0.239138 -0.479571 -0.061719 0.108544 -0.939875 -0.028351 -0.861942 2.301789 -0.108275 -0.501935 -1.489926 -0.425571 0.702453 -0.802275 0.588915 -0.468123 -1.262907 -2.290251 -1.450125 1.362874 -0.390708 0.351043 -1.045985 0.521322 -1.375385 0.461273 -1.299397 0.049015 -0.027227 -1.205687 -1.639456 -0.220063 -0.155044 -0.597323 -0.421454 -0.936128 -0.285838 1.863506 1.066756 0.680465 0.393180 -0.029105 -1.683590 -1.702797 -0.157814 -0.598046 1.442572 1.523192 -0.208961 -1.607821 -0.328706 -1.842003 1.753847 -0.792956 0.131809 -0.688937 -0.632725 1.928567 -0.892443 -0.330132 -1.530682 0.419979 0.071614 -3.601519 1.933206 1.243254 -1.053927 -0.401417 -1.224398 0.598961 1.150310 1.728421 -0.560021 -0.327029 0.079170 -0.661205 -0.132018 -0.683482 1.381713 -1.210674 0.778831 -1.158070 -0.678854 1.201539 1.118219 -0.026662 0.810663 0.224293 0.620356 1.064613 1.223069 0.835575 -0.923198 -1.349036 -3.526579 0.709463 1.125226 -0.099125 0.088934 -0.690323 -1.493746 -0.142380 -0.199853 1.818710 1.204137 -0.070101 1.205080 -1.388369 -1.672772 -0.766408 0.643219 -0.068552 -0.722193 0.195770 -0.574269 0.285084 0.832972 0.363389 0.740060 -1.623355 -1.900806 -0.175215 1.655724 0.792373 -0.282244 1.677218 0.569353 -0.869560 -0.333217 0.131226 0.280475 -0.099172 -0.887061 -0.888614 -0.750564 0.199033 -0.793629 1.260054 0.015838 0.317158 0.698257 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 1.796514 -0.227913 -0.920845 3.807661 0.164553 -0.988837 0.144956 0.772530 -0.386770 -6.103870 -3.445315 3.669132 0.414231 0.702465 0.708563 1.075495 0.126255 0.563542 -6.127754 1.501754 2.036986 0.935332 0.313786 -0.658066 0.813124 -1.493874 2.072900 0.741879 1.072783 3.535684 -2.066277 1.561186 3.004231 -0.277687 1.621531 2.586079 -0.311845 0.400970 -1.511873 -0.838837 4.684096 1.938368 0.281042 2.227125 0.551103 3.563013 0.608460 2.962226 1.927457 -2.680422 1.305229 1.242416 -1.985310 -0.607609 -2.411274 1.891730 2.212234 1.452967 -1.917777 1.101627 -0.184248 -0.138748 0.872825 -0.331201 3.441560 1.354898 2.346918 2.346125 3.683792 -2.294912 -0.481848 1.760898 1.513554 0.554669 2.988397 -2.441173 -3.415371 -0.681183 -0.665224 -4.538768 -1.873773 -0.161452 4.899675 -3.565350 0.215359 0.589486 -0.054801 3.295569 -1.212529 0.143342 -2.840446 -0.141911 -0.901441 4.406736 0.627133 0.201730 -0.054558 1.204794 1.069993 2.502648 0.289073 -2.705277 -1.039789 -5.074308 -1.252334 -1.722624 1.726443 1.927443 -4.097414 -0.564538 -0.909962 3.984101 -5.027538 -0.214042 2.352614 1.787565 2.175627 -0.726101 -1.630504 0.273858 0.681955 0.291081 2.151190 -1.863592 0.010781 -0.229066 0.439947 -0.027771 1.305358 0.184639 -3.247578 -2.578126 -0.292694 0.256110 0.019775 0.529504 1.897812 -1.792931 2.327661 -1.491827 2.578398 -3.988653 -0.502864 -1.349230 -2.215382 -1.217404 3.085037 2.075959 2.840987 -1.357191 -1.462460 -1.168217 -4.120429 -4.611052 1.123729 0.331655 0.946088 1.706496 -0.433806 1.894382 -1.893016 0.268499 1.288257 -1.550692 -0.785656 -0.355260 1.633883 -0.362214 -0.469746 -2.369789 -0.748383 -0.551151 -0.096149 2.807484 -0.825919 -5.211569 -5.037651 -2.660930 3.014367 -1.367885 0.430313 -1.661857 -0.524419 -2.217521 0.098031 -3.326443 0.412757 -0.173891 -2.371650 -3.656512 0.263492 -0.806934 -0.493918 0.480695 -2.803934 -0.430047 2.111612 1.189438 1.232558 0.394473 0.254764 -3.762122 -2.496251 0.719969 -2.070820 2.666400 1.402453 -0.472736 -3.022200 -1.493844 -3.098772 2.176801 -2.418951 0.960073 -0.890727 -0.796927 3.257009 -2.021620 0.139342 -2.601120 1.075299 1.595331 -5.549643 3.979432 2.560041 -1.316670 -0.171633 0.430952 0.542369 2.086701 2.637658 -2.436689 -2.380660 0.485109 -1.162732 0.114597 -0.882822 2.257594 -2.150607 0.776717 -2.377513 -1.481410 1.564742 1.786591 0.282618 1.031758 1.492159 -0.485363 1.197225 2.899835 2.407889 -0.028920 -3.007277 -6.672441 2.298713 0.219710 -0.470169 0.267808 -1.769847 -2.194627 1.174949 -0.641451 3.257649 0.165619 -0.748469 2.896608 -4.146248 -3.362187 -1.635731 -0.782154 0.242038 -0.298213 0.530846 -1.392845 1.033906 0.783360 -0.335764 -0.541365 -1.506340 -0.162394 0.533907 2.887678 1.138679 1.012402 3.526225 1.216872 -2.149935 -0.282931 0.323387 -0.440974 -0.936326 -3.481351 -1.311000 -0.396658 0.845709 -1.559790 1.018073 -0.858150 -0.152123 0.474281 -PE-benchmarks/tug-of-war.cpp__main = 0.374488 0.007439 0.444362 0.267536 0.357175 -0.327909 0.336603 0.492816 -0.028228 -0.910993 -0.532295 0.003104 -0.132407 -0.255549 0.176018 -0.127136 0.176265 0.490882 -0.728287 0.190367 0.293988 0.424202 0.116091 -0.429489 0.104630 -0.116829 -0.525749 0.340053 0.145578 0.584277 -0.363741 -0.289982 0.423276 0.168620 0.041433 0.627262 0.657952 -0.002026 0.254349 -0.053939 0.954662 0.173558 -0.018970 0.563983 0.490063 0.581254 -0.148626 0.600353 -0.135624 -0.282101 0.230122 -0.903479 -0.401354 -0.138228 -0.464242 0.493485 0.872501 0.677857 -0.416184 0.541642 0.000657 0.037376 0.137289 -0.512774 0.217873 0.628150 -0.190298 0.196073 1.026191 -0.467887 -0.289691 0.338544 0.576969 0.163111 -0.029222 -0.390016 0.008855 -1.326002 -0.076332 -0.887536 -0.060115 -0.193767 1.039089 -0.549807 0.389795 0.884558 -0.083627 0.208620 -0.166129 -0.277663 -0.487557 0.195586 -0.057695 0.838801 -0.018984 0.045077 -0.048247 0.130655 0.367463 0.556817 0.001508 -0.173346 -0.925989 -1.351977 -0.372894 -0.141634 -0.121584 -0.192635 -0.570220 -0.311127 0.768622 0.460090 -0.818809 -0.160341 0.506304 0.383388 -0.427710 -0.032326 -0.523581 -0.015839 -0.112093 -0.125418 0.027484 -0.493933 -0.257677 -0.322338 -0.188242 -0.050787 0.157368 -0.270752 -0.379267 -0.327978 -0.212283 -0.017807 -0.105399 -0.263508 -0.185256 -0.508947 0.289119 -0.493702 0.395913 -0.665184 0.006188 -0.112530 -0.561054 -0.085495 1.091378 -0.055526 0.336769 0.197925 -0.360771 -0.504028 -0.259718 -0.800868 0.435386 -0.113963 0.700614 0.000569 -0.049306 -0.179990 -0.169574 -0.483505 -0.090159 -0.260339 0.094603 -0.155758 0.749387 -0.452368 -0.115537 -0.832986 0.250058 0.909060 -0.129591 -0.215974 -0.463910 0.003715 -0.262971 -0.623306 0.443986 -0.113771 0.087702 -0.046121 0.128646 -0.481295 0.339143 -0.351353 0.267336 -0.088605 -0.673075 -0.658740 0.148875 -0.252742 -0.118200 0.254845 -0.345620 0.034283 -0.052078 0.371459 0.032539 0.023351 0.129554 -0.918564 -0.848493 -0.482864 0.132793 0.413274 0.302051 0.311010 -0.429490 -0.147265 -0.424716 0.616722 -0.518420 -0.080348 -0.120615 -0.109779 0.765988 -0.161917 -0.106778 -0.828164 0.283656 0.311906 -0.658073 0.775276 0.347208 -0.455254 -0.469372 -0.537478 -0.076102 0.502974 0.949543 -0.386696 -0.285922 0.476731 -0.322809 -0.113490 -0.566136 0.415743 -0.067977 0.685683 -0.626200 -0.414260 0.089852 0.674672 -0.171679 0.467125 0.364283 0.459271 -0.073446 0.787058 0.165628 -0.128183 -0.403749 -0.841586 0.396549 0.600766 0.286049 0.162618 -0.476523 -0.441253 0.225669 0.420070 0.603798 0.790317 0.305554 0.524193 -0.363595 -0.550334 0.301969 0.115037 0.400389 -0.596319 0.214604 -0.309388 0.049043 0.069697 0.045336 0.360076 -0.280603 -0.835382 -0.190750 0.524189 0.272863 -0.153619 0.694115 -0.066194 -0.455277 0.303519 -0.125054 0.593133 0.049269 0.057556 -0.105947 -0.364133 0.058108 -0.225057 0.847295 -0.095380 -0.132844 0.400126 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 4.377569 0.344553 -2.908350 7.927896 -0.213487 -2.654855 0.407629 2.364410 -1.465601 -12.752926 -8.411137 6.191236 1.263501 0.310583 2.510309 2.927637 -0.389290 0.827191 -12.859930 3.718113 4.806099 1.523278 -0.225263 -1.190164 1.567082 -3.394147 1.509144 1.254479 1.349422 7.423639 -3.670317 4.008957 6.224127 -0.657431 2.986567 5.322562 -2.837124 0.826590 -0.857179 -0.674575 9.451707 4.510337 0.497215 3.877598 1.258208 7.295752 -1.101787 7.165431 0.462820 -5.391661 4.720702 1.861715 -4.236942 -0.109813 -4.571318 3.606892 5.814320 2.401175 -3.222813 2.541914 -2.756686 -0.069575 1.964732 -0.965112 8.316304 4.487936 5.403185 5.201176 7.999969 -3.900968 -0.381489 3.661141 2.348508 -0.296094 4.925510 -4.585647 -6.541547 -0.971512 -1.292621 -10.014694 -3.738747 -0.552914 12.747565 -7.334606 -0.282512 0.995264 1.370966 7.456045 -3.380205 0.754922 -5.160773 -0.071997 -3.177033 9.300417 0.730978 1.453053 -1.194791 2.355745 2.036783 4.710091 -1.135177 -4.894527 -4.309428 -10.695666 -3.373689 -2.873676 3.615923 3.981534 -10.037360 -1.061113 -0.968514 7.417470 -10.898370 -0.211643 4.918215 4.066656 5.091569 2.119118 -6.112062 -0.003216 1.477180 1.409016 4.417031 -2.836815 0.387209 -3.339640 1.007024 0.046560 2.449203 0.121066 -8.677113 -4.650692 -0.563272 -1.393077 0.455209 2.144205 4.432187 -3.402170 4.750509 -3.285068 5.403704 -10.314440 -1.408129 -4.032110 -6.313087 -1.930496 6.506607 7.042057 5.832541 -2.413065 -2.874027 -2.603299 -9.887420 -8.912624 0.980113 -0.233895 2.843459 2.078660 -0.579723 3.297185 -3.587328 1.553843 2.599672 -3.334873 -1.109963 -1.559410 7.219525 -0.269904 -1.562771 -5.228989 -2.573761 -1.586435 -1.245196 5.848036 -0.960376 -9.586616 -11.519064 -5.444614 6.228711 -2.483910 0.997273 -4.470753 -0.211888 -5.539445 0.014006 -6.561502 0.617264 0.278692 -4.653023 -7.461916 0.311583 -0.723674 -2.182725 -0.287579 -5.250377 -1.390655 7.096160 2.941192 3.109463 1.566624 -0.201164 -7.147086 -5.689709 1.505039 -4.353368 5.861361 5.324786 -1.229283 -5.795849 -2.583490 -7.845275 5.198158 -4.167653 1.681798 -2.179968 -1.489703 7.176775 -4.795920 -0.651183 -6.295695 1.586344 1.742393 -13.511566 7.818958 4.905598 -2.930508 -0.332160 -0.764740 1.769909 4.239913 5.434272 -3.882250 -3.844212 0.389670 -2.234945 0.023564 -1.539911 4.897285 -5.519447 1.616470 -4.453798 -2.506390 4.469248 3.987167 0.234295 2.274341 1.924489 -0.661399 4.185946 4.966362 5.335574 -2.324605 -6.034892 -14.870629 4.040799 -0.297417 -2.017669 -0.323573 -3.128536 -5.281241 1.644660 -1.617251 7.133459 0.833905 -1.589696 5.710097 -8.119978 -7.220975 -4.015458 0.288182 -0.008827 -1.266327 0.219768 -2.448990 2.227326 3.045484 -0.128949 0.333421 -5.518109 -2.567279 0.503983 7.174918 1.851040 1.211862 7.298711 3.071829 -3.698950 -1.543135 0.987676 -0.990905 -1.591262 -7.355051 -3.085697 -1.304513 1.543753 -3.397254 2.799088 -0.971730 -0.046008 2.054679 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.524094 0.142778 0.441430 0.371213 0.306090 -0.427206 0.445780 0.647463 -0.319855 -1.336111 -0.834823 -0.033881 -0.067013 -0.138518 0.191988 -0.059339 0.056380 0.502898 -1.385100 0.198160 0.546713 0.491113 0.182973 -0.451658 0.139726 -0.209185 -0.785115 0.508427 0.147020 0.875900 -0.470032 -0.241337 0.658056 0.169196 -0.000649 0.849857 0.715797 0.047853 0.363789 0.027518 1.192967 0.257445 -0.099348 0.507243 0.466085 0.840246 -0.206265 0.868592 -0.575245 -0.505281 0.380352 -1.211870 -0.646342 -0.147962 -0.468302 0.514508 1.229599 1.067028 -0.458883 0.724892 -0.116180 0.010357 0.199932 -0.553680 0.425339 0.840735 -0.050296 0.214662 1.279407 -0.658456 -0.321173 0.436366 0.445865 -0.029121 -0.174153 -0.574311 -0.013368 -1.636544 0.101725 -1.573784 -0.391533 -0.083545 1.441485 -0.760243 0.359547 1.032972 -0.033612 0.415212 -0.343158 -0.220223 -0.633934 0.168059 -0.178155 1.361713 -0.009270 0.053004 -0.007549 0.237706 0.642228 0.751509 -0.170528 -0.222351 -1.332435 -1.680035 -0.433202 -0.172924 -0.116207 0.013561 -0.886810 -0.556173 0.946390 0.657044 -1.195502 -0.139580 0.759619 0.683147 -0.363642 0.348045 -0.916967 0.059800 -0.163253 -0.201539 0.318796 -0.577770 -0.183671 -0.422516 -0.117592 -0.063221 0.114002 -0.264228 -1.034584 -0.443001 -0.122784 -0.425788 -0.043816 -0.219495 -0.102653 -0.449802 0.436071 -0.771603 0.539569 -1.105490 0.121841 -0.068724 -1.018010 -0.106929 1.076558 0.352972 0.168090 0.127308 -0.505424 -0.542397 -0.517091 -1.197705 0.413076 0.027483 0.959986 -0.065467 -0.142390 -0.110165 -0.304443 -0.491777 -0.007419 -0.266512 0.058007 -0.274657 1.387593 -0.374694 -0.190156 -0.909174 0.231590 0.851694 -0.230925 -0.001748 -0.571631 -0.087038 -0.659436 -0.855179 0.668753 -0.126348 -0.014382 -0.230033 0.121977 -0.917824 0.423508 -0.486901 0.277702 -0.015987 -0.861143 -0.919645 0.234772 -0.247636 -0.397679 0.284989 -0.492474 -0.144045 0.270160 0.353786 0.208161 -0.082740 0.179169 -1.003339 -1.056200 -0.438341 -0.002826 0.523860 0.553517 0.323905 -0.552494 -0.162112 -0.692221 0.888433 -0.395682 -0.045345 -0.321841 -0.035317 1.097559 -0.286588 -0.096474 -0.926785 0.356131 0.411077 -0.991032 1.235999 0.526499 -0.494573 -0.550570 -0.563854 -0.135670 0.731951 1.083063 -0.554422 -0.493112 0.503619 -0.436616 -0.118501 -0.542883 0.574779 -0.257994 0.755551 -0.730205 -0.484445 0.148969 0.881220 -0.175286 0.722624 0.429847 0.495462 0.055650 0.938510 0.152391 -0.400931 -0.361925 -1.292737 0.611837 0.477518 0.161674 0.011005 -0.553976 -0.610441 0.329543 0.405286 0.838754 1.036138 0.072083 0.703738 -0.575037 -0.776774 0.106927 0.225690 0.414439 -0.656683 0.088176 -0.306206 0.232233 0.307326 -0.037852 0.571344 -0.637100 -1.139541 -0.294480 0.788043 0.204303 -0.190743 1.006350 -0.141903 -0.426005 0.205478 -0.114259 0.783960 0.114558 0.038258 -0.204676 -0.433944 0.154845 -0.306277 0.944943 -0.088040 -0.297796 0.700658 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.204586 -0.149056 0.280455 0.277535 0.234421 -0.124126 0.242796 0.211117 0.056889 -0.656323 -0.338969 0.127208 -0.097821 -0.097887 0.102131 -0.123482 0.196873 0.312830 -0.331887 0.054747 0.109817 0.205954 0.031581 -0.159645 0.012095 -0.124878 -0.181881 0.302982 0.126496 0.421767 -0.201293 -0.166799 0.326573 0.078793 0.007085 0.473128 0.575145 0.037018 -0.009240 -0.070599 0.688581 0.015127 0.051323 0.448232 0.278889 0.451738 -0.014738 0.599281 0.262696 -0.214074 0.292610 -0.629721 -0.232072 -0.175746 -0.414947 0.303257 0.490756 0.398040 -0.330225 0.386712 0.015550 0.035994 0.087042 -0.300275 0.154886 0.407762 -0.093863 0.170522 0.648978 -0.426607 -0.244146 0.306623 0.412827 0.254030 0.012634 -0.302665 -0.040492 -0.830296 -0.081513 -0.362581 -0.076143 -0.167264 0.662490 -0.377530 0.143624 0.566625 -0.194392 0.123984 -0.087047 -0.125940 -0.422716 0.094642 0.122449 0.440683 0.060284 -0.024235 0.001468 0.028037 0.203527 0.418566 0.047472 -0.209520 -0.594998 -0.936302 -0.323624 -0.155955 -0.046192 -0.128913 -0.373846 -0.216666 0.425474 0.273104 -0.537027 -0.139150 0.354117 0.251476 -0.171138 0.017223 -0.270117 -0.031350 0.088452 -0.062593 0.143838 -0.330194 -0.116756 -0.216826 -0.070321 -0.051908 0.104909 -0.166255 -0.149929 -0.283313 -0.128973 0.162630 -0.061486 -0.240237 -0.129711 -0.306462 0.229958 -0.260544 0.318574 -0.445479 -0.081643 -0.082082 -0.326550 -0.111425 1.029369 -0.058582 0.499161 0.118572 -0.348806 -0.320548 -0.174511 -0.670183 0.294699 -0.059613 0.429114 0.090265 -0.054209 -0.034274 -0.143914 -0.288873 -0.048694 -0.162334 0.024367 0.004008 0.107564 -0.294645 -0.081944 -0.618146 0.227936 0.542111 -0.056875 -0.054520 -0.310704 -0.299601 -0.136152 -0.407208 0.325994 -0.117221 0.068408 0.064636 -0.038285 -0.337225 0.170396 -0.274326 0.118826 -0.066512 -0.561257 -0.501890 0.169998 -0.211966 -0.014978 0.281013 -0.299472 0.029893 -0.116884 0.322644 0.069347 0.081074 0.057866 -0.656229 -0.572232 -0.350320 0.011259 0.371643 0.170826 0.215920 -0.257286 -0.163421 -0.299522 0.369044 -0.534571 -0.021322 0.012078 -0.127111 0.469295 -0.138279 -0.031866 -0.528931 0.234405 0.338665 -0.615407 0.467028 0.326926 -0.321524 -0.339527 -0.262622 -0.092209 0.337502 0.664581 -0.309754 -0.215681 0.364954 -0.134799 -0.043643 -0.376033 0.247583 0.031618 0.358156 -0.480450 -0.324294 0.073156 0.445644 -0.089868 0.195323 0.321328 0.338936 -0.073659 0.597458 0.105930 -0.017326 -0.264888 -0.751092 0.355237 0.575920 0.119045 0.293011 -0.482130 -0.216780 0.228600 0.122071 0.387270 0.360684 0.246142 0.428900 -0.238136 -0.386265 0.157656 -0.070478 0.282884 -0.369669 0.272141 -0.239158 0.058464 -0.043513 -0.023428 0.108844 -0.042928 -0.448421 -0.065855 0.308669 0.170245 0.039899 0.494467 -0.085085 -0.360024 0.188417 -0.075086 0.314269 0.078258 -0.146822 -0.063249 -0.208181 0.100845 -0.164518 0.471271 -0.125502 -0.096698 0.246541 -PE-benchmarks/tarjan-algorithm.cpp__main = 3.524439 1.725749 7.275138 -1.725925 2.837765 -0.569840 3.459649 7.183968 -3.318019 -6.135287 -9.008081 -6.942092 -2.307644 -1.958660 4.590698 -3.493855 2.434649 -0.142692 -11.862740 -0.528844 3.687030 1.265609 2.147898 -0.661380 1.074658 -1.893060 -12.279286 5.394154 -0.869727 3.232593 -1.003381 -2.354252 2.052842 3.155378 0.191805 4.430116 -0.973243 -1.224523 8.156457 0.240705 6.784994 0.927189 -0.995257 2.471894 5.148601 3.617499 -7.296861 4.920931 -4.897318 -1.487762 7.189370 -14.521306 -3.902458 1.628412 -2.100021 0.744990 10.425176 4.800420 -1.857341 5.088864 -3.878673 0.334024 -0.677671 -7.483528 1.789967 6.788699 -0.723946 -1.523599 4.694714 -2.989338 -2.942899 3.278398 1.176067 0.560081 -13.182503 -4.006987 6.559713 -15.218759 2.784936 -11.743630 -2.489120 -3.490974 8.894345 -0.025083 1.267983 6.318086 -3.206941 -0.573212 -1.384144 -1.532262 -2.299886 1.581105 -0.080219 2.191555 -2.779150 -0.277302 3.731274 -0.684844 3.862312 5.764253 -4.701118 2.389253 -14.401428 -11.159349 -1.800486 2.347397 1.660717 -2.333855 -2.410816 -1.781392 8.884169 -3.686698 -1.782164 -2.992449 3.665185 5.031804 -12.513085 9.543565 -10.255565 -5.433707 -0.764155 1.639952 2.985405 -1.355400 0.391323 -9.786471 -1.755742 -0.191476 1.290956 -2.773759 -3.448547 -2.786129 -0.493008 -4.721243 -1.470932 -2.848435 -2.715015 3.175578 2.123458 -3.213280 3.342130 -7.437653 2.554899 -3.618042 -3.015040 1.203595 6.680604 7.178644 -2.543920 6.654248 -0.622495 -1.592621 0.165127 -0.439823 0.061944 0.108025 10.833433 -5.137114 -0.473976 -0.841309 0.287547 -3.869636 -5.987109 -0.015155 1.913298 -4.614827 10.064022 -1.192290 -1.889999 -5.095192 4.604632 7.381667 -9.456820 -3.554724 -2.985408 7.099418 0.287490 -5.386284 2.171202 0.145879 -0.876772 0.390623 4.825429 -4.327171 3.079644 -0.940536 -0.722369 0.242553 -7.588150 -3.156061 1.450691 -0.861380 -1.672429 1.956360 -0.138601 -2.352502 5.730600 8.412188 2.842829 1.667166 -0.621926 -3.413149 -6.764140 -7.086199 1.702076 1.946925 6.050417 -0.007492 -1.914862 -0.135162 -2.383668 6.555972 3.694085 -1.975183 -3.960194 -1.749637 4.555917 0.567853 -0.094611 -5.618176 0.162378 2.534154 -11.400175 3.068018 0.319748 -3.135502 -6.667778 -10.543567 -1.739240 3.015888 6.184434 1.471439 1.176449 1.613305 -2.201240 -0.659719 -3.986853 3.532066 1.769858 3.470682 -4.849419 -4.354637 3.142668 4.301179 -0.806568 6.918468 3.122099 10.689011 4.763588 5.238158 -1.840953 -7.474262 1.052757 -9.248759 2.550803 14.267789 1.064662 -0.098203 -3.019324 -7.260069 -2.264433 4.434115 3.643323 11.617517 3.569669 3.064367 5.541290 -2.022993 -0.339280 4.864327 1.708138 -5.929111 -3.061435 -0.179968 0.970030 3.178826 -0.757059 9.574974 -5.717606 -16.918917 -4.696805 4.516960 1.668029 -0.774609 3.867083 -0.767721 -2.687812 0.223959 0.169553 6.111741 4.342724 3.841014 -2.060819 -4.629552 -1.417238 0.032602 3.776985 3.907068 -0.286628 5.093553 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 3.629656 0.180612 -2.368662 6.547421 -0.167013 -3.727602 0.036653 3.283325 -1.404778 -8.828980 -6.867189 4.170778 1.210031 0.308301 3.281446 1.848374 -1.250667 0.619737 -10.781249 3.914830 3.043291 1.541430 -1.407168 -2.409004 1.250377 -1.213724 0.293236 1.748410 0.826095 5.077656 -3.421752 2.321058 3.838359 -0.890855 2.390262 3.155830 -1.119003 0.439117 -0.898375 -0.469412 7.824561 3.700333 0.051178 3.449197 1.441520 5.230192 -0.902734 5.594568 -1.622865 -4.179967 3.346781 0.819596 -3.654811 -0.434422 -3.457636 3.891125 5.956991 2.918703 -2.865013 2.777380 -2.209743 -0.520965 1.994670 -1.090466 7.253224 3.390550 4.744605 3.845620 6.975083 -2.807788 -0.380823 2.783096 3.321950 -0.682564 3.354979 -4.479472 -4.420933 -4.315429 0.180755 -9.305597 -2.490301 -0.082589 10.416280 -6.182622 0.845522 2.178161 1.223121 5.926728 -4.276615 0.930080 -3.202073 -0.490992 -3.240623 8.373923 0.149147 0.524221 0.060916 2.700270 2.305634 4.678888 -1.416003 -2.513616 -3.508771 -10.024211 -3.266432 -0.167905 1.685711 2.033258 -7.360395 -1.714843 0.712764 4.509636 -7.849662 -1.046790 4.663502 3.264443 2.276676 1.037811 -4.794229 -0.110841 0.478470 1.346437 3.960155 -2.490712 0.901139 -2.278065 0.976807 0.748226 2.513785 0.515713 -6.401610 -3.605046 -0.757187 -1.331120 0.054185 0.375018 2.857472 -3.146464 4.150579 -3.047889 4.464659 -8.877746 -0.483437 -3.212093 -4.718673 -0.481816 4.416403 4.399784 3.558813 -1.278153 -2.968985 -1.785068 -7.554437 -7.335021 1.732712 1.280077 2.227516 0.793821 -0.307237 1.867165 -1.656408 -0.442863 3.145112 -3.461582 -1.579489 -2.000284 6.453403 0.257582 -1.435030 -5.435848 -0.470768 0.054203 -1.212980 3.710583 -0.479666 -6.877223 -7.979183 -4.108771 4.833676 -0.518546 0.851154 -2.847704 -0.577739 -5.087310 1.005346 -5.559357 1.402548 0.366510 -4.234223 -5.634159 -0.664027 0.149236 -2.144072 -0.890099 -4.203735 -0.785136 5.088621 2.593004 1.180765 1.508587 1.359162 -6.696459 -6.008672 0.283127 -2.318445 5.180686 4.022759 -0.143330 -4.113268 -1.084440 -5.464529 4.739941 -3.787215 0.921861 -2.172985 -1.240426 6.275089 -4.289916 -1.644457 -5.523874 1.235398 1.330384 -10.047521 7.544746 4.316600 -2.508823 -0.616190 -1.437299 1.348724 3.497417 6.182340 -3.843800 -2.652711 0.352550 -1.150963 -0.574266 -2.388134 4.174640 -4.104808 0.844449 -3.223851 -2.350748 2.530424 3.632151 0.918283 2.683526 1.086692 -0.154296 1.543980 4.715633 3.818213 -2.745309 -4.466957 -10.855566 3.952921 0.941166 -2.003522 -0.315386 -3.045651 -4.665111 0.636001 0.174748 4.991131 3.257415 -0.332016 4.274876 -6.365762 -5.764072 -3.046161 1.688948 -0.515605 -1.658674 0.328703 -2.572199 1.757194 2.526849 -0.136065 -0.431757 -3.533637 -4.462954 -1.045671 4.993585 1.254306 0.252432 6.473616 2.402021 -2.900221 -1.295401 0.084967 -0.457920 -0.963095 -3.749049 -2.683912 -1.911747 1.002424 -2.878461 2.650708 -0.134455 -0.318620 2.557608 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.556544 0.123042 0.455957 0.168391 0.149247 -0.571434 0.387948 0.867334 -0.137330 -1.136128 -0.927338 -0.435931 -0.127531 -0.460342 0.499056 -0.035572 0.058892 0.573671 -1.491918 0.414976 0.640363 0.628556 0.194458 -0.495475 0.245339 -0.108095 -1.418545 0.226971 0.062900 0.753954 -0.510517 -0.231304 0.526728 0.144575 -0.043288 0.682154 0.260193 -0.025950 0.939457 0.247331 1.068063 0.350605 -0.086365 0.465522 0.625835 0.657229 -0.643959 0.826515 -0.552461 -0.411593 0.608759 -1.514889 -0.572620 0.197338 -0.324127 0.537376 1.388101 0.943512 -0.348596 0.719389 -0.318478 0.110731 0.180471 -0.889770 0.486609 1.055491 -0.154684 0.162768 1.258702 -0.239960 -0.088370 0.145366 0.538613 -0.193648 -0.368323 -0.558225 0.277078 -2.115482 -0.040557 -1.596721 -0.048653 -0.207642 1.479357 -0.761171 0.622791 1.115540 0.063753 0.401939 -0.307456 -0.287799 -0.404674 0.292288 -0.223213 1.034507 -0.238175 0.118503 -0.182004 0.229100 0.469393 0.474192 -0.239674 0.001059 -1.651531 -1.790159 -0.531115 0.052233 -0.157496 -0.166857 -1.040706 -0.271818 1.215816 0.296334 -1.171181 -0.108106 0.605478 0.550433 -0.884036 0.509453 -1.103478 -0.176833 -0.359351 0.143778 0.020918 -0.580460 -0.234657 -1.059264 -0.324617 0.121796 0.194409 -0.418083 -0.544585 -0.324265 -0.277180 -0.314790 -0.172837 -0.025745 -0.100518 -0.397541 0.394692 -0.759340 0.450786 -1.117072 0.009654 -0.299496 -0.738441 0.027043 1.340257 0.419358 -0.015109 0.351267 -0.467174 -0.616459 -0.545680 -0.688322 0.344469 -0.313563 1.188951 -0.252217 -0.002302 -0.387560 -0.031630 -0.490099 -0.396183 -0.361197 0.247781 -0.470246 1.461875 -0.461224 -0.245715 -1.095949 0.154135 1.250240 -0.611086 -0.441593 -0.441533 0.575871 -0.483732 -0.747903 0.565000 -0.032857 0.226138 -0.292787 0.543344 -0.762690 0.485317 -0.378208 0.109341 0.031778 -0.781647 -0.759091 0.020045 -0.145778 -0.223406 -0.013656 -0.300542 -0.088945 0.369502 0.779283 0.177318 0.084938 0.136083 -1.090185 -1.177344 -0.713257 0.066490 0.464196 0.630222 0.270500 -0.584427 -0.008950 -0.651072 0.960961 -0.424864 -0.183527 -0.391894 -0.125069 1.063749 -0.164891 -0.272716 -1.156289 0.190945 0.087857 -1.184842 0.958717 0.268689 -0.569272 -0.461031 -1.092418 0.128132 0.671640 1.098610 -0.202519 -0.118231 0.364535 -0.528859 -0.144318 -0.783761 0.658723 -0.362061 0.849601 -0.559520 -0.289691 0.340484 0.803036 -0.209678 0.745260 0.306557 0.743843 0.212103 0.677615 0.120648 -0.657479 -0.375074 -1.166696 0.350303 1.163251 0.388220 0.045492 -0.565253 -0.657911 0.051180 0.708793 0.779728 1.445530 0.547199 0.505905 -0.327014 -0.682605 0.266466 0.582691 0.322744 -0.773115 -0.004500 -0.208993 0.071281 0.514527 0.249622 0.890061 -0.816177 -1.708850 -0.363141 0.829924 0.307944 -0.419096 0.825876 -0.027019 -0.502338 0.261128 -0.188450 0.764291 -0.015864 0.510199 -0.165973 -0.517817 -0.019653 -0.369995 1.211451 -0.049109 -0.120453 0.555437 -PE-benchmarks/edit-distance.cpp__main = 3.657363 -0.148297 1.430758 2.910761 1.459539 -2.583612 -0.654547 4.419576 -1.794316 -4.898290 -5.337324 0.304467 -1.183467 0.656076 4.932223 -0.550400 -0.029289 -0.803717 -9.109213 3.098372 0.609255 0.605732 -0.189231 -2.331517 2.126414 1.454667 -1.422087 1.893819 0.745396 1.975758 -4.145602 0.329867 1.084944 1.413475 3.235215 -0.875704 -0.057603 -0.910643 -0.498086 -2.011203 6.440340 2.033587 0.025629 3.951290 2.701173 1.894096 -2.099936 4.195447 1.029876 -1.600973 3.627068 -5.964863 -1.851312 2.085840 -3.090781 3.493698 4.786478 1.334133 -2.326497 1.732654 -0.315310 0.500961 0.508296 -4.663510 4.939963 2.120732 3.219350 0.811986 3.983726 -1.635994 -0.680838 1.773009 4.730158 0.765912 -3.265370 -4.388794 1.181204 -9.012296 1.742911 -6.869755 -0.994363 -2.434446 4.111749 -2.639416 2.394240 3.038326 -2.357953 2.316628 -3.719623 1.585112 -1.883640 -0.064371 -0.661634 3.003765 -1.437033 -0.719411 2.869168 0.957384 2.107472 4.725862 -1.180391 0.957107 -3.256306 -7.089521 -2.009452 4.671596 1.145561 -1.060971 -2.474023 0.447815 2.192881 0.955662 -1.764364 -3.327646 2.002439 1.830241 -4.067962 1.749602 -3.047057 -2.776967 -0.356345 2.810218 2.303593 -2.596546 1.817836 -4.371234 -0.680964 1.418520 4.576623 0.312946 -0.072005 -3.158500 -0.741345 0.007659 -2.228365 -2.335681 -0.349494 -0.705757 3.236425 -0.280740 2.170311 -4.239360 -0.363674 -2.846952 -0.213674 1.396724 6.228340 1.861958 1.128818 4.430094 -1.569634 -1.045596 -2.115940 -3.051888 2.298082 2.152076 3.009328 -0.117994 0.494748 1.608585 0.251343 -3.823724 0.243008 -3.218772 -2.562235 -4.049273 1.269378 -0.844947 -0.708170 -4.757950 3.544499 4.121144 -4.764631 -0.185619 -0.071056 -1.756222 -1.513280 -3.142323 2.259133 0.343817 0.678521 0.501367 3.322269 -3.557830 1.327087 -3.874771 1.079615 0.521210 -5.485394 -2.329883 -1.198087 -0.036277 1.072835 -0.553915 -1.660511 0.253809 1.550124 6.111889 -0.202079 2.621312 1.965180 -5.263420 -7.104134 -3.395648 0.805891 2.910884 -0.125421 -0.290735 -2.836728 -1.124470 -1.257087 4.504640 -3.087838 -0.530005 -2.945436 -0.825803 3.096124 -1.347469 -2.563711 -3.404380 0.633858 2.198386 -5.731630 3.179800 1.082925 -2.304495 -2.474057 -5.890977 1.810242 2.544136 7.446127 -0.937364 0.532893 -0.012454 1.306948 -0.924146 -3.639872 4.362754 -0.462657 -0.222983 -2.463104 -4.008560 0.668748 2.189967 1.739251 3.238755 2.181041 4.700273 0.176634 5.134331 0.464704 -2.821219 -1.584288 -6.903645 1.229389 9.681541 0.322741 0.784619 -4.550065 -4.993158 -2.164945 1.793556 2.841056 5.654685 3.943145 2.072162 -0.730319 -2.147494 -0.769544 3.168039 -1.621774 -2.597000 -0.445717 -1.870778 0.123166 2.112476 -0.542049 1.206177 -0.318143 -8.572051 -4.165719 1.049714 0.972401 0.991475 3.508924 3.400176 -3.666208 0.320714 -0.132142 0.919250 0.396612 -0.118286 -2.416391 -2.588769 -1.763821 -1.385710 1.271519 1.905184 -0.223010 0.148843 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 7.116290 0.212866 0.024224 7.358570 1.251656 -4.278571 -1.331537 6.643304 -4.483167 -12.633584 -11.576675 4.527586 -0.857177 3.366705 7.537200 1.157418 -0.869209 -1.376097 -19.277693 5.497540 2.605430 1.097480 0.223515 -3.096894 3.854176 1.569292 0.692537 3.040162 2.338622 6.148545 -7.916220 2.387792 4.379696 1.148149 5.360210 0.303762 -0.443775 -0.753971 -3.203613 -3.933916 12.606318 3.896265 0.686337 7.292280 3.056516 5.552643 -1.516470 9.748943 3.192821 -5.012489 7.091150 -7.718336 -5.016028 2.694170 -5.736793 5.916859 8.500588 3.642442 -4.419830 3.019963 0.567390 0.328092 1.405300 -7.102726 10.180293 3.825253 8.031871 2.562496 8.017087 -4.758759 -1.076226 4.261652 7.209941 1.490358 -2.653398 -10.266630 -0.982101 -11.526874 2.713459 -15.369758 -4.434429 -3.186068 10.735070 -7.036132 2.656255 3.633351 -4.509399 6.486469 -6.695105 3.724650 -4.677139 -0.927728 -1.822062 7.812557 -1.434477 -1.496413 4.487624 2.215952 4.438873 9.075998 -2.026530 -0.837112 -5.446180 -12.763249 -3.562665 6.234384 3.178158 1.728001 -7.180866 -0.522780 0.004192 4.801082 -6.842661 -5.285614 5.502804 4.832398 -2.492293 4.507965 -6.827186 -3.516773 0.604416 4.728483 6.839860 -4.901230 3.575252 -5.848956 -0.077060 1.964393 7.421060 1.519532 -4.575611 -7.756703 -0.849689 -0.650890 -2.912901 -3.074531 1.884295 -1.229717 7.081319 -0.954323 4.804874 -10.623608 -1.500637 -4.139741 -3.010614 0.902451 10.346939 5.879890 3.977015 4.595479 -3.642070 -2.025819 -6.671993 -7.911449 3.917356 4.252206 4.562966 2.040776 0.311401 5.375755 -1.250057 -5.237597 2.139403 -5.339215 -5.175099 -6.631001 3.598563 -0.730909 -1.093400 -8.317627 4.190952 3.167408 -6.758425 3.522968 -0.278787 -9.055022 -7.229577 -6.587428 6.206994 -0.647327 0.986256 -0.761161 4.172205 -8.183520 1.137189 -8.762707 0.785953 1.618292 -10.619399 -6.294728 -1.257135 -0.176277 -0.085123 -0.362703 -4.922138 -0.896380 5.478742 10.477480 1.401753 3.774469 2.967634 -10.500691 -12.567926 -3.584550 -1.692741 6.926119 0.847064 -1.322131 -7.737467 -2.766845 -4.559216 8.396087 -6.227692 0.361163 -6.190850 0.187759 7.292204 -3.957250 -2.287903 -5.866757 1.873681 5.262870 -16.319993 8.314767 4.377523 -3.303908 -2.886592 -6.709184 2.924323 5.741693 11.755147 -3.682173 -2.153775 -0.103521 1.471148 -0.900737 -5.704672 8.571116 -3.155947 -1.195601 -4.617828 -6.827374 1.803574 4.102149 3.509097 5.454857 4.584068 6.136579 1.308682 9.727813 1.968014 -5.113444 -3.490245 -17.312585 3.951638 14.907511 -1.289514 1.987273 -8.226541 -8.584894 -1.701676 -0.417820 6.583069 6.483215 4.224969 5.295074 -4.682394 -5.814624 -3.583253 4.061773 -2.658717 -2.528957 -0.525282 -3.612089 1.575677 4.639308 -2.208818 0.671177 -1.894198 -11.720590 -6.118825 4.452155 1.555052 3.694400 8.186862 5.737011 -6.542527 -0.323847 0.240573 1.004927 -0.181772 -4.024599 -4.738063 -3.290983 -1.561414 -3.430483 1.113141 1.774116 -1.270222 0.460886 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.428786 -0.221739 0.227366 0.296183 0.298339 -0.422644 0.115776 0.422021 0.077277 -0.954664 -0.529452 -0.030381 -0.116818 -0.242003 0.330676 0.081286 0.161290 0.379239 -0.813052 0.443823 0.333590 0.437067 0.085923 -0.306952 0.247811 -0.115014 -0.475218 0.033911 0.212479 0.526699 -0.572644 -0.128185 0.411286 -0.004490 0.175376 0.474083 0.440142 -0.042643 0.327835 0.107924 0.988991 0.173685 0.090743 0.497923 0.532628 0.505797 -0.262715 0.909225 0.217523 -0.347365 0.457640 -0.916390 -0.315258 0.104166 -0.476833 0.628058 0.807331 0.541724 -0.500678 0.343734 0.035588 0.093368 0.118341 -0.499432 0.410741 0.566128 -0.041655 0.201907 0.995866 -0.175695 -0.175402 0.259946 0.688467 0.173543 0.246206 -0.545846 0.013140 -1.320363 -0.142167 -0.657429 0.098029 -0.245267 0.920776 -0.695907 0.466459 0.822822 -0.076485 0.376947 -0.126873 -0.197405 -0.458135 0.224553 0.000248 0.715119 -0.143491 0.043795 -0.171088 0.177854 0.184503 0.446149 0.088575 -0.219178 -0.971444 -1.309241 -0.547389 -0.102802 -0.045979 -0.123152 -0.868911 -0.111146 0.575169 0.371486 -0.867659 -0.002818 0.414814 0.302185 -0.193420 0.065757 -0.507229 -0.149105 -0.151125 0.092470 -0.129381 -0.406148 -0.285687 -0.711330 -0.082239 0.085089 0.226130 -0.367846 -0.120192 -0.261525 -0.291328 0.186255 -0.199515 -0.138175 0.010949 -0.699241 0.369224 -0.324559 0.274494 -0.688199 -0.241025 -0.291276 -0.430051 -0.059315 1.410369 -0.066690 0.451627 0.227490 -0.508863 -0.560849 -0.492282 -0.685083 0.272345 -0.364518 0.610507 0.158293 0.028920 -0.112066 0.016664 -0.463202 -0.208793 -0.390612 0.062513 -0.314062 0.371589 -0.519053 -0.046206 -0.923982 0.032665 0.939013 -0.287217 -0.216582 -0.342324 -0.090211 -0.365393 -0.594548 0.409013 -0.129067 0.384591 -0.118053 0.300031 -0.566711 0.300144 -0.451450 0.083999 -0.178416 -0.609042 -0.575964 -0.009568 -0.221709 0.057208 0.014760 -0.375506 0.110440 -0.100502 0.609878 0.100233 0.064154 0.016236 -1.181579 -0.974282 -0.460611 0.000000 0.532206 0.149245 0.144651 -0.386153 -0.167786 -0.495845 0.577514 -0.850433 -0.114564 -0.022892 -0.142477 0.735862 -0.170194 -0.189996 -0.880110 0.237995 0.150157 -0.716274 0.780764 0.276259 -0.495747 -0.244542 -0.612171 0.145390 0.504982 0.893484 -0.205263 -0.092928 0.294625 -0.252280 -0.105441 -0.638203 0.547618 -0.280089 0.708601 -0.539015 -0.366116 0.086647 0.651919 -0.109728 0.308345 0.251013 0.406840 -0.064895 0.670889 0.184380 -0.093291 -0.437540 -0.976784 0.258133 0.856198 0.292581 0.243835 -0.597386 -0.348555 0.039104 0.450532 0.649874 0.777666 0.672604 0.442766 -0.534676 -0.561674 0.328973 0.161882 0.187193 -0.477800 0.208441 -0.320936 -0.063491 0.124402 0.186157 0.253046 -0.291258 -0.857547 -0.146351 0.474154 0.336663 -0.108323 0.583285 0.106771 -0.492678 0.299425 -0.067958 0.518907 -0.094352 0.153330 -0.161528 -0.345470 -0.105251 -0.281434 0.813935 -0.225739 -0.021138 0.154619 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/finite-automata-algorithm.cpp__main = 0.529331 -0.249358 0.269544 0.383946 0.482862 -0.407271 0.227003 0.316675 0.106327 -0.891042 -0.414900 0.270031 -0.119078 -0.375648 0.147762 0.053161 0.241865 0.372212 -0.500607 0.372507 0.123461 0.305707 -0.089477 -0.366117 0.121295 -0.193968 -0.172650 0.267062 0.091554 0.486329 -0.432175 -0.159917 0.380968 0.107124 0.184356 0.562116 0.580000 -0.096420 0.166066 -0.010488 1.056754 0.109046 0.151284 0.626112 0.583616 0.545797 -0.129013 1.023498 0.313482 -0.184480 0.439242 -0.621962 -0.346027 -0.044610 -0.694076 0.576697 0.679658 0.291964 -0.491584 0.401709 0.040153 0.094300 0.164943 -0.305646 0.436194 0.591824 -0.051541 0.251907 1.150049 -0.331192 -0.262944 0.432456 0.843042 0.328530 0.360540 -0.471628 -0.142409 -0.917718 -0.139112 -0.424143 0.177544 -0.346590 1.004845 -0.540731 0.233116 0.743633 0.023119 0.349169 -0.172432 -0.210007 -0.537338 0.297114 -0.021954 0.833190 -0.111803 0.221254 -0.237536 0.070683 0.133108 0.520541 0.058585 -0.318181 -0.729865 -1.329443 -0.568924 -0.208842 -0.182457 -0.336678 -0.820557 -0.087304 0.436429 0.502513 -0.807887 -0.160973 0.391598 0.194498 0.065698 0.064561 -0.401418 -0.172038 0.011436 0.064540 -0.213492 -0.317858 -0.295657 -0.578645 -0.030313 0.025338 0.217244 -0.353647 -0.304574 -0.196932 -0.226137 0.219323 -0.101056 -0.235707 -0.096313 -0.777647 0.262843 -0.317636 0.310217 -0.695094 -0.317549 -0.355809 -0.535337 -0.073509 1.346471 -0.141447 0.756821 0.262652 -0.356585 -0.562007 -0.465763 -0.914053 0.265972 -0.459141 0.438222 0.095524 0.029209 -0.205749 -0.108410 -0.516739 0.040875 -0.405266 0.009853 -0.301115 0.390479 -0.508615 -0.059094 -0.824024 0.084244 0.888637 0.007474 -0.127009 -0.349716 -0.544461 -0.338358 -0.629279 0.378930 -0.147367 0.237450 -0.089830 0.114658 -0.511105 0.256942 -0.344592 0.195212 -0.187452 -0.627776 -0.604305 0.071856 -0.248805 0.021716 0.065163 -0.428467 0.184560 -0.133026 0.456655 0.037988 0.145809 -0.092578 -1.116293 -0.958731 -0.401806 0.217148 0.612616 0.226946 0.295507 -0.328127 -0.233818 -0.566676 0.510896 -1.020179 -0.080264 0.207640 -0.211991 0.702149 -0.265286 -0.156964 -0.792069 0.302778 0.091191 -0.705042 0.834746 0.392150 -0.632057 -0.452364 -0.597509 0.102074 0.418047 1.043813 -0.335475 -0.114092 0.442023 -0.067199 -0.177358 -0.535436 0.462104 -0.109341 0.751492 -0.707875 -0.529320 0.095492 0.750300 -0.225827 0.125740 0.166934 0.316111 -0.119330 0.807290 0.197812 0.088195 -0.514901 -1.112655 0.183590 0.493024 0.178358 0.385004 -0.610296 -0.390055 0.150027 0.209687 0.733388 0.379542 0.532574 0.496850 -0.515405 -0.602156 0.331496 -0.004330 0.270872 -0.517803 0.397394 -0.443692 -0.148210 -0.090634 0.201847 0.055754 -0.222015 -0.581130 -0.089498 0.455482 0.324079 -0.168370 0.622064 0.113394 -0.364169 0.236777 -0.067384 0.505935 0.071494 -0.161365 -0.135882 -0.404172 -0.016233 -0.236936 0.922861 -0.132083 0.130076 0.192958 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 2.611673 0.052584 -1.275445 4.123941 0.237724 -1.192061 0.351553 1.462784 -0.563106 -7.263207 -4.206523 3.016647 0.643853 0.492416 1.273677 1.743509 -0.021382 0.866070 -6.467316 1.799185 2.702295 1.177947 0.353353 -0.735949 1.020048 -1.696016 0.405911 0.171410 1.157268 4.287005 -2.335313 1.997819 3.594216 -0.380699 1.366172 2.901599 -0.373133 0.373043 -0.621828 -0.666918 5.343876 2.165304 0.360637 2.290630 0.413576 4.035608 -0.780967 4.802826 0.014556 -3.114760 2.537048 -0.771089 -2.350515 0.253269 -2.504960 2.526097 3.140946 2.046048 -1.802608 1.427650 -1.163230 0.273325 1.049381 -0.919241 4.021381 2.779927 2.369271 2.894122 4.657897 -2.399949 -0.226242 1.959553 1.127534 -0.007641 2.997010 -2.712619 -2.873356 -1.326208 -0.565870 -4.851314 -1.856588 -0.538973 7.210195 -4.417650 0.325673 1.426404 0.807722 4.084464 -1.646783 0.677032 -3.106065 0.177448 -1.280776 5.181968 0.311776 0.749899 -1.061591 1.164340 1.059977 2.425683 -0.082040 -2.472336 -2.948314 -5.475710 -2.030523 -1.646303 1.815425 2.335704 -5.614874 -0.569405 -0.014094 4.251501 -6.284382 0.082283 2.573522 2.565429 3.204855 1.972882 -3.061293 -0.004761 0.712515 0.360222 1.801998 -2.036905 0.098286 -2.030282 0.194586 0.011697 1.365870 -0.256543 -4.879960 -2.434580 -0.478898 -0.889132 0.284279 1.198803 2.497130 -2.479180 2.704908 -1.934464 2.619641 -5.262646 -1.269054 -1.731827 -4.054713 -1.278142 5.189631 3.104083 3.369007 -0.935969 -2.135521 -2.095540 -5.106462 -4.924664 0.468963 -0.196713 1.859649 1.794735 -0.331775 1.696258 -2.129035 0.598001 0.994741 -1.882887 -0.716425 -0.693826 3.668519 -0.840659 -0.701962 -3.465562 -1.164788 -0.163667 -0.911559 3.012589 -0.663084 -4.698709 -6.215851 -3.196896 3.526154 -1.487006 1.006098 -2.397916 0.118949 -3.137013 -0.076073 -3.571514 0.596952 0.275017 -2.860586 -4.378197 0.620699 -0.604174 -1.362302 0.408159 -2.926881 -0.434481 3.077173 1.645454 1.487563 0.616750 -0.120901 -4.540224 -3.579663 0.431366 -2.485765 3.175643 2.460962 -0.612787 -2.808668 -1.760313 -4.124178 3.029707 -3.003215 0.922031 -1.183203 -0.282957 3.794666 -2.672248 -0.433975 -4.135229 1.083405 1.129949 -6.558369 4.359273 2.330258 -1.708770 -0.207028 -0.813172 1.111671 2.470427 3.305678 -2.108407 -2.257105 0.572603 -1.274223 -0.032607 -1.247880 2.658486 -3.059726 1.171332 -2.556677 -1.388184 2.086933 2.503632 -0.161204 1.344779 1.824669 -0.214539 2.116729 2.984437 2.988028 -1.246557 -3.298260 -7.915948 2.283280 0.383173 -0.761150 -0.335012 -2.368510 -2.437248 1.322362 -0.431978 3.924021 1.041370 0.086969 3.300612 -4.820829 -3.965356 -1.349477 0.104837 0.266906 -0.902130 -0.014153 -1.385770 1.195804 1.668318 -0.010327 0.220916 -3.064286 -1.578918 0.240853 4.153090 0.847461 0.857145 4.176298 1.770566 -1.983404 -0.221588 0.450201 0.102865 -1.173718 -3.572391 -1.340333 -0.415530 0.568319 -2.095852 1.931444 -0.746294 -0.722060 1.076069 -PE-benchmarks/snake-ladder.cpp__main = 2.360074 -1.799344 0.911902 2.581375 0.845013 -1.606522 0.912314 2.181321 0.239256 -5.286810 -2.728933 0.517731 -0.143703 -0.583926 1.253368 0.444273 0.236919 0.425375 -7.071536 1.813553 1.966541 1.343091 0.682942 -1.503812 0.946070 -1.591009 0.144862 1.859656 0.368021 3.086156 -2.050537 0.128970 2.532601 0.322140 1.411842 2.886218 0.717475 -0.087964 0.171640 0.621188 4.889616 2.338829 -1.246407 1.571542 1.752313 3.365893 0.439297 3.068680 0.577356 -1.908195 1.715110 -2.152722 -2.339745 -0.801639 -2.567865 1.697909 4.302376 2.603133 -2.064621 1.862540 -1.050666 -0.029431 0.911261 -0.443951 3.326545 1.660563 2.071171 1.482346 4.544463 -2.125476 -0.764964 1.711352 2.446343 0.326393 1.495357 -2.881253 -2.195512 -6.147311 0.243852 -4.820447 -1.615671 -0.594530 2.821752 -2.910612 1.103627 2.519195 -0.307235 2.649202 -1.723577 -0.446552 -2.723549 0.462390 0.094308 5.472469 -0.527434 0.329604 0.548987 1.638849 1.660017 2.744981 1.127742 -2.135972 -2.973406 -6.230727 -1.403689 -1.239338 0.574362 0.308453 -3.932708 -0.448076 1.822539 1.658645 -4.338282 -0.075068 2.439064 2.053215 1.356834 -1.618237 -1.449729 -0.030077 -0.107546 0.581988 1.452115 -2.692367 -0.274020 -1.825068 1.262020 0.993006 0.955644 -0.719315 -2.346323 -1.512742 0.128917 0.358951 -0.283551 0.111695 0.550464 -2.575688 1.778014 -2.661887 2.857417 -4.145084 0.230909 -1.477983 -1.503585 -0.534076 4.499305 1.100831 1.057689 0.341132 -2.119137 -0.858691 -2.913780 -5.292363 0.860369 0.120592 1.993493 0.219550 -0.421569 0.517831 -0.921714 -0.810838 -0.221358 -1.607018 -0.217715 -0.952965 1.208479 -0.505543 -0.590532 -2.163046 0.235562 2.619404 -0.271280 1.571399 -1.265255 -3.216027 -3.436228 -3.135479 2.621077 -0.828137 0.007502 -1.346762 0.174812 -3.661242 1.810822 -2.451837 1.254755 -0.421652 -3.032655 -3.359784 0.279272 -1.034533 1.009433 0.369855 -2.239658 -0.469729 -0.156461 1.961656 0.914111 0.458345 0.547013 -4.618875 -3.925860 -0.745051 -0.411947 4.009184 -0.107004 0.093765 -1.543581 -0.879124 -2.506927 3.199622 -2.198351 0.253177 -0.899056 -1.709492 3.760976 -0.986992 -0.843898 -3.551401 1.392475 1.127580 -1.585824 5.314387 2.754107 -2.109745 -1.439240 -1.357377 0.276844 2.356107 3.810561 -1.989219 -1.917808 0.895415 -0.633061 -0.413226 -1.600882 2.352630 -1.482376 1.979520 -2.879148 -2.183637 0.936088 2.787109 -0.212514 1.810099 1.073390 0.808887 -0.896918 3.455097 1.137100 -0.157221 -2.638660 -5.569985 1.867652 2.122034 0.335156 0.165890 -2.748108 -2.643047 0.520372 2.044301 3.538109 4.679228 0.231385 2.656786 -3.199738 -3.234219 -1.179659 0.003902 0.292664 -1.370479 0.456962 -1.371604 0.686547 0.714231 0.156032 0.678380 -1.741231 -2.294408 -0.340130 2.334562 1.262976 -0.915702 3.458074 0.752548 -1.882729 -0.298623 0.260986 0.281236 0.595419 0.080039 -1.159641 -1.364669 0.673685 -1.197915 2.386379 -0.178158 0.194876 0.711219 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 4.863832 1.530933 -2.177683 8.162337 0.499600 -3.226942 0.462856 4.123244 -2.315468 -12.821163 -9.067548 6.982784 0.730792 1.166831 3.122518 2.313496 -0.388291 0.751588 -15.050293 4.151746 4.300766 1.898207 -0.193168 -2.367259 1.870850 -2.186306 1.544613 2.462105 1.814574 7.470217 -4.512368 2.863576 6.113886 0.147811 4.499955 4.640135 -0.551879 0.704246 -2.411781 -1.392414 10.721026 5.844372 -0.452750 4.967880 2.059064 7.897245 0.263454 6.396017 -0.004096 -5.339143 2.854696 -0.259000 -5.215620 -0.365823 -4.730504 4.363986 6.231720 3.706415 -4.139252 3.469472 -1.893761 -0.994965 1.889251 -2.603896 8.391334 3.494167 5.699334 4.655426 8.445395 -4.613243 -1.603465 3.857042 4.276898 0.287104 3.218799 -5.902583 -6.546924 -4.981204 0.056756 -13.258475 -4.966519 -0.611263 12.972808 -8.100635 1.353757 2.314721 -0.701336 6.509910 -4.734076 0.039611 -5.880719 -0.989158 -2.910714 10.269049 0.975560 0.036423 1.066858 3.125692 4.071337 6.288593 -0.955455 -4.475071 -4.485817 -11.679643 -2.156607 -0.846707 3.259459 3.398597 -7.590936 -2.564531 -0.235024 9.029921 -10.544688 -1.368547 6.447750 3.728533 3.319937 0.790036 -5.425561 1.007983 1.283891 0.846222 6.261494 -4.434958 0.255590 -0.943498 0.923698 -0.193728 3.615448 0.903765 -8.431265 -5.646813 -0.389100 -1.376973 -0.431618 -0.476325 2.332234 -3.979229 5.794888 -3.369682 6.077599 -9.787638 -0.089776 -2.906127 -5.829217 -1.361239 7.369886 6.942943 5.233939 -1.318984 -2.469488 -2.442275 -8.751729 -9.827859 3.466929 1.813206 3.331947 1.679291 -0.652166 3.687944 -3.422324 -0.079432 3.135820 -3.677854 -1.944474 -1.738471 7.154441 -0.349158 -1.558913 -6.102972 -0.840243 0.052181 -0.876073 4.858854 -2.007926 -11.266989 -9.877375 -5.936700 6.486576 -1.954633 0.875133 -3.394931 0.229376 -5.649548 0.480267 -7.819090 2.285161 0.329814 -6.045824 -7.481067 0.274145 -1.207954 -1.654485 0.158982 -4.660345 -1.562847 6.384593 4.005014 2.062873 1.328780 1.534521 -7.897227 -6.607108 0.663195 -3.733083 6.960693 3.474326 -0.651343 -7.422928 -1.882334 -7.490305 6.560993 -3.714276 1.062651 -4.011004 -1.497136 8.212476 -4.223848 -0.742246 -6.382627 2.462234 3.515857 -13.509405 8.110990 6.312032 -2.499382 -1.379348 -0.529634 0.912394 5.660004 7.627767 -4.796476 -4.917111 0.669208 -2.533264 -0.088480 -2.229393 5.786041 -4.962853 1.570875 -5.235476 -3.487315 3.594452 4.149224 1.244406 3.727484 2.659613 0.783438 2.492119 6.625304 4.711942 -2.126093 -6.043134 -15.072434 4.727353 3.265551 -1.475181 -0.033849 -3.368271 -6.155423 0.831021 -2.026973 7.162232 2.835725 -2.367536 6.132696 -7.829239 -7.322932 -3.868861 0.770479 -0.094237 -2.000533 1.027096 -2.759114 2.758540 3.038375 -1.365218 0.662835 -4.053265 -3.753318 -1.052754 5.801491 2.378648 1.689722 8.023335 2.526779 -4.819055 -0.846325 0.747566 0.004433 -0.986177 -7.472694 -3.706533 -2.498654 1.319017 -2.830201 2.198019 -0.440581 -0.767993 2.602234 -PE-benchmarks/m-coloring-problem.cpp__main = 0.339283 0.026596 0.356037 0.299870 0.258985 -0.328068 0.336355 0.478762 0.003963 -0.919879 -0.530802 -0.000345 -0.082885 -0.233612 0.174216 -0.085212 0.080309 0.544756 -0.743779 0.191898 0.354356 0.462182 0.182386 -0.443017 0.101512 -0.090454 -0.566819 0.267091 0.153077 0.623486 -0.343234 -0.233328 0.458697 0.140048 -0.067640 0.605459 0.612260 0.023113 0.250037 -0.027491 0.857651 0.190170 -0.045822 0.513692 0.362143 0.576067 -0.143030 0.581705 -0.164421 -0.314177 0.216319 -0.881847 -0.408547 -0.130502 -0.374935 0.491291 0.860141 0.720146 -0.319936 0.520581 -0.031638 0.036565 0.163214 -0.544655 0.214209 0.677389 -0.180342 0.232642 1.017998 -0.459471 -0.215401 0.265069 0.481661 0.066795 0.063324 -0.380245 -0.033747 -1.309468 -0.111705 -0.915566 -0.098403 -0.148934 1.045086 -0.612014 0.393010 0.855291 -0.000563 0.275870 -0.173279 -0.203819 -0.452437 0.188706 -0.069287 0.855051 0.011800 0.036384 -0.145438 0.132347 0.357921 0.467635 0.030259 -0.149812 -0.924636 -1.284022 -0.362757 -0.145777 -0.122713 -0.096575 -0.652410 -0.291105 0.762769 0.471615 -0.912806 -0.137947 0.517756 0.424737 -0.346140 -0.014757 -0.526325 0.045927 -0.097738 -0.129153 0.040417 -0.543641 -0.235171 -0.303532 -0.216996 -0.038790 0.117492 -0.259292 -0.396401 -0.345201 -0.224095 -0.033762 -0.033562 -0.167905 -0.102561 -0.478784 0.282842 -0.524103 0.385692 -0.680956 -0.010297 -0.046495 -0.572086 -0.109465 1.092658 -0.028652 0.303155 0.114577 -0.399697 -0.519325 -0.293720 -0.784036 0.405972 -0.106379 0.689494 0.038313 -0.054829 -0.176956 -0.171698 -0.373604 -0.088956 -0.255010 0.096933 -0.084716 0.779894 -0.432091 -0.114678 -0.843900 0.177075 0.833459 -0.123316 -0.170304 -0.396948 0.043547 -0.336224 -0.600820 0.475523 -0.115239 0.091752 -0.144292 0.131196 -0.484779 0.310841 -0.338460 0.234387 0.016848 -0.657458 -0.686656 0.148403 -0.216548 -0.166599 0.253266 -0.356983 0.013034 -0.022091 0.352623 0.042977 0.010190 0.136485 -0.896693 -0.816660 -0.459441 0.049289 0.398703 0.307564 0.314405 -0.468805 -0.143742 -0.431717 0.627873 -0.521548 -0.054923 -0.190233 -0.043623 0.770599 -0.195606 -0.126313 -0.859028 0.262354 0.273676 -0.658250 0.766407 0.325943 -0.389915 -0.378358 -0.488395 -0.047875 0.513924 0.891355 -0.407105 -0.330342 0.448864 -0.336451 -0.107049 -0.557619 0.402202 -0.175092 0.623350 -0.528854 -0.317756 0.088302 0.649153 -0.178679 0.465682 0.383830 0.399697 -0.049039 0.677847 0.208524 -0.206264 -0.398422 -0.811673 0.401499 0.555417 0.274324 0.136556 -0.500458 -0.380340 0.301051 0.418590 0.594626 0.786175 0.286870 0.509480 -0.419240 -0.551048 0.292755 0.141156 0.393402 -0.540298 0.201269 -0.271976 0.077447 0.159991 0.029276 0.349444 -0.348710 -0.784045 -0.154374 0.590268 0.227514 -0.155858 0.703515 -0.043655 -0.441823 0.286133 -0.160124 0.510504 -0.057250 0.097517 -0.044877 -0.271274 0.082084 -0.259135 0.852949 -0.144790 -0.221366 0.375111 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.746963 0.026718 -0.131020 1.384574 0.139454 -0.152445 0.123053 0.517917 -0.235490 -2.554315 -1.806039 0.793799 0.102371 0.305086 0.577960 0.460800 0.169014 0.229549 -2.720693 0.479871 0.976473 0.289782 0.407086 -0.132036 0.342631 -0.751491 0.198472 0.307841 0.335875 1.446802 -0.795572 0.773369 1.233779 0.110808 0.585793 1.009892 -0.417695 -0.104403 -0.278688 -0.344743 1.908975 0.783761 -0.002234 0.744433 0.142301 1.459681 -0.043600 1.038553 0.430635 -1.025907 0.649684 -0.411896 -0.896770 0.063980 -0.998330 0.687361 0.945114 0.637433 -0.577400 0.500117 -0.483382 0.048036 0.288563 -0.702685 1.474733 0.558972 1.053072 0.885169 1.370879 -0.984055 -0.121590 0.741054 0.437358 0.211780 0.546640 -0.864323 -0.832124 -1.040721 -0.190752 -2.193418 -0.706030 -0.215612 2.290891 -1.284266 -0.009736 0.404848 -0.196374 1.359924 -0.549649 0.201559 -1.213823 0.077123 -0.221430 1.234578 0.240565 -0.062229 -0.040353 0.415329 0.393358 0.937067 -0.053074 -0.848975 -1.037698 -2.269409 -0.480563 -0.518702 0.843125 0.681857 -1.686611 -0.004013 0.056123 1.633222 -1.928702 -0.148499 0.914232 0.876622 0.206916 0.116515 -0.986733 -0.244821 0.334075 0.462035 0.976655 -0.823541 0.213301 -0.640774 0.187119 -0.017843 0.671191 -0.006243 -1.071884 -1.154980 -0.048545 -0.103211 0.034318 0.309985 0.848121 -0.376158 0.988537 -0.599787 1.106771 -1.695746 0.030605 -0.696403 -0.897509 -0.443166 1.834849 1.482242 0.904236 -0.067637 -0.507154 -0.415391 -1.562050 -1.547357 0.249611 0.150737 0.747238 0.514563 -0.147492 0.793733 -0.669216 0.233573 0.152993 -0.639309 -0.270713 -0.178589 0.746279 -0.078117 -0.299043 -1.182018 -0.158614 0.102981 -0.626436 0.955770 -0.280422 -1.489508 -1.896946 -1.219319 1.213400 -0.596297 0.254839 -0.766166 0.117680 -0.852615 0.170056 -1.215454 -0.023047 0.184793 -1.298511 -1.509344 0.077408 -0.287158 -0.468806 0.310705 -0.979977 -0.174507 1.232441 0.776918 0.591122 0.268104 -0.047262 -1.330146 -1.104383 -0.062209 -0.901620 1.187058 0.823876 -0.385082 -1.468390 -0.638879 -1.174645 1.275158 -0.607603 0.337583 -0.679414 -0.357202 1.122565 -0.828075 0.078649 -1.111096 0.405202 0.541628 -2.995265 1.327212 1.104754 -0.604212 -0.249467 -0.500044 0.364099 0.761797 1.208393 -0.700315 -0.582728 0.079581 -0.397339 0.025455 -0.504436 0.960278 -0.818773 0.058420 -1.010896 -0.670050 0.829409 0.695656 0.062778 0.565346 0.839828 0.476245 0.832985 1.110152 0.894204 -0.485542 -1.146179 -2.893783 0.821144 1.123935 -0.168648 0.249238 -0.773854 -0.979553 0.248024 -0.455144 1.346167 0.600066 -0.114987 1.213426 -1.130964 -1.239731 -0.684963 -0.072310 0.015610 -0.290250 0.243751 -0.529630 0.326619 0.418090 -0.139518 0.084719 -0.911690 -0.737769 0.107931 1.386340 0.610020 0.458664 1.379851 0.604154 -0.878847 -0.210201 0.179572 -0.183300 -0.191141 -1.180035 -0.590012 -0.116474 0.185151 -0.628069 0.357150 -0.158811 -0.079107 0.228552 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 1.549478 -0.310480 -0.535269 3.134180 0.448810 -0.861754 0.149504 0.784441 -0.064188 -4.927947 -2.856734 2.955032 0.179894 0.392764 0.641125 0.639396 0.329072 0.576458 -4.911857 1.335565 1.526342 0.819469 0.192064 -0.655734 0.682103 -1.185142 1.690260 0.635800 0.934026 2.814982 -1.760190 1.041813 2.356325 -0.095990 1.505214 2.170220 -0.022728 0.261168 -1.188401 -0.831871 3.996606 1.792803 0.216597 2.085734 0.731647 2.884194 0.552509 2.492961 1.835904 -2.101699 0.827762 0.680757 -1.612849 -0.470780 -2.151821 1.747616 1.873015 1.124659 -1.712357 0.951866 -0.164905 -0.126662 0.683929 -0.541303 2.662745 1.001878 1.694753 1.838407 3.181629 -1.885100 -0.550933 1.575742 1.722691 0.774904 2.426987 -1.929078 -2.871750 -0.912842 -0.629074 -3.584864 -1.301894 -0.316522 4.085361 -2.900862 0.413741 0.703666 -0.202139 2.503194 -1.008687 -0.108385 -2.401547 0.012596 -0.741007 3.492384 0.558246 0.167508 0.034595 0.954482 0.851304 2.166188 0.263217 -2.200178 -0.825137 -4.631149 -0.913223 -1.390882 1.348484 1.260182 -3.118784 -0.406959 -0.681542 3.470323 -3.949544 -0.270292 1.908350 1.238563 1.392638 -0.928000 -1.118214 0.127521 0.547318 0.194827 1.666576 -1.724653 -0.208945 -0.158532 0.302293 -0.064632 1.174303 0.074797 -2.053322 -2.069400 -0.369851 0.543371 -0.125072 0.171770 1.319138 -1.768173 1.923196 -1.144472 2.095133 -3.002477 -0.390421 -1.131773 -1.717794 -0.959283 3.126204 1.453415 2.577383 -0.914500 -1.034449 -1.141239 -3.175644 -3.806361 1.173719 0.160158 0.863048 1.326881 -0.248445 1.426243 -1.504459 -0.050686 0.908958 -1.319742 -0.543081 -0.197655 1.141243 -0.536944 -0.302914 -2.224053 -0.470638 0.020928 -0.092062 1.942166 -0.832441 -4.423181 -3.726623 -2.210864 2.400672 -1.116398 0.459742 -1.188466 -0.336378 -1.493132 0.150563 -2.694060 0.406902 -0.291956 -2.058826 -2.953343 0.069355 -0.788771 -0.138076 0.467511 -2.215963 -0.203461 1.649233 1.305792 0.854437 0.448354 0.272709 -3.305895 -2.117914 0.336898 -1.480217 2.373665 0.994765 -0.385042 -2.496970 -1.221326 -2.472316 1.855902 -2.175548 0.639072 -0.739080 -0.803521 2.691413 -1.506290 0.037312 -2.311866 0.935153 1.372509 -4.519916 3.108250 2.188599 -1.191291 -0.300434 0.128861 0.396118 1.757699 2.495334 -2.012001 -1.858567 0.531445 -1.082984 0.049182 -0.935501 1.865978 -1.587580 0.802417 -2.090237 -1.351190 1.203567 1.479206 0.206163 0.758457 1.273041 -0.105421 0.997089 2.598591 1.960619 0.136298 -2.753710 -5.573691 1.872492 0.782451 -0.191575 0.368791 -1.488204 -1.890592 0.850101 -0.493147 2.659634 0.514273 -0.328651 2.405891 -3.241005 -2.698334 -1.042411 -0.656239 0.316404 -0.480352 0.695498 -1.356001 0.748044 0.351578 -0.217331 -0.469971 -1.003033 -0.285948 0.404222 2.143077 1.143183 0.833100 2.836485 1.012537 -1.969268 -0.029056 0.221554 -0.256469 -0.802198 -2.776341 -1.059099 -0.503392 0.575363 -1.187294 1.041149 -0.636765 0.041149 0.378869 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.570825 0.277876 0.576972 0.429972 0.194481 -0.749307 0.555142 1.093977 -0.247725 -1.552149 -0.966619 -0.377071 -0.129500 -0.458791 0.495663 -0.230087 -0.121053 0.774373 -2.032049 0.476470 0.955480 0.877315 0.442760 -0.818869 0.320777 -0.094367 -1.493795 0.378478 0.190627 1.120174 -0.643822 -0.317965 0.760803 0.292134 -0.033566 0.941030 0.535061 0.150766 0.899419 0.178208 1.291184 0.624388 -0.289128 0.536025 0.603895 0.917813 -0.594398 0.731303 -0.900065 -0.664284 0.362141 -1.604896 -0.686426 0.038685 -0.263299 0.726987 1.702868 1.466812 -0.395445 0.873383 -0.475378 0.032947 0.254770 -0.946679 0.478613 1.263577 -0.329526 0.320108 1.640027 -0.529129 -0.196610 0.185871 0.476019 -0.432805 -0.226539 -0.474375 -0.061785 -2.636407 -0.048821 -2.088953 -0.469450 -0.031794 1.667656 -1.070827 0.906195 1.408132 0.285552 0.557535 -0.453101 -0.323593 -0.589134 0.252313 -0.375586 1.727916 -0.083745 0.140412 -0.130831 0.333023 0.799787 0.726747 -0.175947 -0.047732 -1.733514 -2.154751 -0.416689 -0.062436 -0.097157 0.038015 -1.186849 -0.507660 1.605013 0.670202 -1.615794 -0.116545 0.849457 0.856209 -0.912305 0.212263 -1.104229 0.140363 -0.442164 -0.262430 0.218466 -0.979720 -0.363479 -0.747706 -0.472340 0.035472 0.181821 -0.434096 -0.871283 -0.459222 -0.296050 -0.566330 -0.085932 -0.039805 -0.114163 -0.563844 0.488254 -1.124959 0.662536 -1.162082 0.236594 -0.081302 -1.035568 -0.065218 1.407975 0.336211 -0.202762 0.127172 -0.635343 -0.772935 -0.599718 -1.155694 0.593981 -0.067843 1.410950 -0.200113 -0.104727 -0.348888 -0.287010 -0.476539 -0.324536 -0.381709 0.252998 -0.295432 1.867105 -0.544571 -0.236267 -1.273265 0.172734 1.290508 -0.556765 -0.295453 -0.601691 0.611980 -0.814636 -1.002297 0.832494 -0.068252 0.032647 -0.509968 0.504210 -0.876379 0.586212 -0.554380 0.413416 0.085597 -0.846662 -1.079425 0.113946 -0.246118 -0.279434 0.166587 -0.431548 -0.215670 0.327807 0.544984 0.165269 -0.025169 0.373652 -1.223721 -1.277268 -0.657492 0.023581 0.329965 0.592551 0.392233 -0.678097 -0.110267 -0.759564 1.173350 -0.317079 -0.131638 -0.643981 -0.134957 1.494849 -0.188459 -0.464179 -1.438831 0.268426 0.327299 -0.712258 1.296165 0.266070 -0.514808 -0.508984 -0.943870 -0.048968 1.002560 1.349728 -0.525189 -0.531041 0.505342 -0.788385 -0.148054 -0.748950 0.734543 -0.598654 1.067275 -0.627876 -0.331613 0.272145 1.021939 -0.225833 1.075858 0.504685 0.632426 0.260786 0.861852 0.348439 -0.714411 -0.576562 -1.170797 0.672894 0.803858 0.539567 -0.345221 -0.646216 -0.867827 0.330103 1.128022 0.979184 1.933098 0.276389 0.718923 -0.693841 -0.910919 0.269325 0.644747 0.478980 -0.963637 -0.161820 -0.232073 0.336367 0.716103 0.115536 1.099723 -0.949443 -1.784305 -0.435419 0.965527 0.269262 -0.485949 1.174639 0.011491 -0.705303 0.351884 -0.237216 0.840035 -0.253413 0.549954 -0.126532 -0.527639 0.097336 -0.425022 1.426873 -0.073492 -0.476282 0.801030 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 3.341685 11.525388 -19.972913 39.418606 -8.240704 -6.517151 -2.091580 3.543374 -14.377634 -51.921757 -26.480116 9.087387 11.579582 12.461484 9.046602 12.496031 -9.674270 4.274700 -48.021465 9.616813 28.228231 12.685856 3.974638 -0.949752 5.773137 -9.157665 10.317508 -2.620660 8.668638 32.964702 -11.153448 24.795668 27.273927 -12.483762 3.500941 16.050802 -7.465893 10.760270 -11.248085 5.779914 29.051938 12.072448 -0.295332 7.981337 -8.528249 28.540386 0.191925 9.584112 -23.437151 -27.636697 8.378447 27.393394 -6.675433 -8.835634 -6.294167 12.406466 26.416856 27.013779 -7.433316 4.936683 -11.424091 -6.518503 9.950646 5.597236 28.564227 18.367878 25.584266 28.660553 27.296381 -13.920976 3.466258 6.842661 -11.911771 -12.155009 24.989824 -12.988447 -29.916680 0.285268 -13.447108 -41.794954 -22.322043 7.994629 44.256890 -31.244235 -1.404103 -3.252290 11.476119 32.166553 -13.443894 6.937919 -16.718797 -10.072936 -19.648384 36.078971 5.737657 0.716517 -6.362375 13.033894 9.674299 11.462811 -1.638076 -19.670964 -5.226397 -23.211351 -17.369953 -11.421630 17.381523 32.123246 -41.162525 -9.583048 -14.721454 21.771684 -50.998333 5.357788 15.252501 27.906867 36.361799 3.056820 -30.674475 7.839942 6.423885 -4.793841 22.990629 -10.329809 8.977955 -7.389564 -0.505393 -1.092670 1.765389 5.937322 -37.697336 -21.172598 -8.173331 -18.089034 7.876191 16.150681 27.103591 -12.846780 20.173818 -17.238139 22.527952 -41.553320 -6.945827 -3.797719 -34.522412 -10.974263 2.766924 23.875086 10.653208 -26.211737 -27.531435 -6.023323 -43.059524 -26.969525 -1.041790 10.090852 3.879125 20.216300 -7.900894 19.793942 -18.586900 16.113594 23.441609 -4.479777 -6.132371 1.248525 33.217743 5.297973 -2.737329 -18.370548 -15.734706 -24.290034 4.816284 37.764815 -1.237015 -21.315586 -59.834899 -12.796988 26.528384 -9.402824 0.366485 -24.659943 -8.313457 -29.956829 0.198367 -30.966099 -3.669526 2.867406 -10.229856 -29.928823 8.051427 -0.272822 -20.449856 1.219804 -20.573146 -9.466974 32.016882 1.271741 14.849771 -7.218788 1.328712 -20.779615 -15.811912 17.066362 -26.853473 17.654369 14.117667 -7.029476 -20.689297 -8.530449 -27.852290 18.546259 7.112257 10.074450 -8.614313 5.787543 24.861427 -23.489499 -2.747051 -25.276905 0.551686 7.202145 -40.530992 32.491018 11.310720 -1.366533 10.229071 14.953121 7.732861 12.467930 0.772542 -16.505895 -24.155145 -1.033815 -5.563817 3.587429 -10.848625 11.372552 -30.340808 -4.079937 -8.743384 -2.014674 17.847146 11.883103 -0.018070 7.515015 10.090773 -21.773414 10.798514 11.269581 31.114368 -10.152483 -12.802491 -28.519679 17.533602 -34.259735 -9.808718 -20.602951 -4.772260 -11.955251 14.727056 -1.219457 23.951978 6.070824 -18.401298 22.319803 -42.526855 -27.359742 -21.422045 2.716523 1.290099 0.882373 -11.114798 -9.182021 18.200100 20.513848 -5.351280 -2.167919 -29.675971 6.426990 3.134725 29.275887 -7.150021 8.989610 30.103224 13.118194 -9.636466 -6.811827 10.685881 -11.937080 -14.387882 -26.333649 -8.437172 5.812165 9.074866 -15.090147 1.808023 -16.657021 -11.773098 13.553802 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.457301 -0.079259 0.423677 0.357727 0.346406 -0.418226 0.362499 0.583241 0.113497 -1.105644 -0.576903 0.086319 -0.112559 -0.268447 0.188450 -0.088939 0.139938 0.650048 -0.887022 0.285754 0.387758 0.602984 0.204857 -0.549152 0.161745 -0.074939 -0.554345 0.247820 0.247273 0.727250 -0.477816 -0.327862 0.544027 0.105622 -0.027707 0.718849 0.809483 0.030404 0.241447 -0.062547 1.076072 0.253736 -0.023199 0.694794 0.481303 0.677960 -0.116673 0.823841 0.000499 -0.393426 0.252585 -1.063262 -0.490871 -0.164343 -0.484277 0.668787 1.037714 0.858947 -0.464643 0.592409 0.101957 0.046860 0.196081 -0.618781 0.223444 0.779881 -0.236326 0.273895 1.253755 -0.519471 -0.274432 0.321342 0.691570 0.178830 0.230513 -0.587470 -0.086438 -1.541326 -0.142975 -0.984820 -0.052217 -0.228864 1.176735 -0.794071 0.570770 1.048651 -0.045272 0.319467 -0.164223 -0.282874 -0.553628 0.232748 -0.041990 1.060138 -0.042892 0.041853 -0.155913 0.177543 0.388735 0.568390 0.149844 -0.230124 -1.039099 -1.525571 -0.437834 -0.203772 -0.155198 -0.113694 -0.773271 -0.328754 0.793410 0.521670 -1.096105 -0.140872 0.606727 0.457786 -0.304024 -0.094312 -0.509284 0.046702 -0.142960 -0.168316 -0.037675 -0.697519 -0.344432 -0.333708 -0.260928 -0.001989 0.150069 -0.330368 -0.381513 -0.396592 -0.314834 0.106159 -0.091856 -0.230381 -0.128682 -0.724959 0.357733 -0.594047 0.425668 -0.766257 -0.121238 -0.051159 -0.617327 -0.151193 1.419245 -0.233665 0.451407 0.131858 -0.510277 -0.676104 -0.346387 -0.936375 0.522775 -0.174769 0.780952 0.135409 -0.043937 -0.208503 -0.181037 -0.526691 -0.158788 -0.328108 0.105987 -0.115530 0.767366 -0.600112 -0.086973 -1.029569 0.213826 1.065073 -0.104331 -0.228653 -0.494356 -0.068991 -0.371704 -0.708199 0.565546 -0.148145 0.186787 -0.122045 0.159410 -0.556254 0.353411 -0.453739 0.299653 -0.057020 -0.782405 -0.814412 0.172840 -0.299454 -0.052683 0.304320 -0.452286 0.065603 -0.172682 0.530342 0.011629 0.008730 0.179094 -1.254095 -1.026103 -0.560810 0.068340 0.559647 0.217134 0.362003 -0.508303 -0.185289 -0.491875 0.701541 -0.788565 -0.075989 -0.177761 -0.043804 0.928470 -0.205447 -0.128858 -1.111675 0.336474 0.360447 -0.663197 0.963845 0.373879 -0.484535 -0.413960 -0.543672 -0.044363 0.628886 1.077325 -0.493379 -0.445217 0.564407 -0.426841 -0.128888 -0.741316 0.499014 -0.201918 0.816109 -0.655714 -0.394282 0.052060 0.775187 -0.206039 0.515265 0.475138 0.427703 -0.156124 0.874685 0.254822 -0.125324 -0.543133 -0.998960 0.484597 0.755418 0.383729 0.182911 -0.659411 -0.427238 0.363963 0.589462 0.710007 0.978325 0.488581 0.607353 -0.606712 -0.673717 0.424773 0.118421 0.484301 -0.608924 0.241287 -0.365635 0.070269 0.129489 0.059880 0.344025 -0.326494 -0.863630 -0.154838 0.662207 0.296668 -0.165475 0.831699 -0.039825 -0.564657 0.420651 -0.194049 0.634424 -0.123498 0.160298 -0.035183 -0.329166 0.065125 -0.322477 1.045918 -0.214609 -0.236927 0.356404 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.194463 0.086158 0.518998 0.082805 0.264172 -0.271454 0.330317 0.433128 -0.112614 -0.586390 -0.395140 -0.204691 -0.162046 -0.251047 0.150496 -0.239155 0.136895 0.406583 -0.583031 0.099435 0.243359 0.356691 0.144105 -0.361857 0.059282 -0.057334 -0.597761 0.378232 0.063194 0.410375 -0.226806 -0.330242 0.272602 0.219867 0.007693 0.511670 0.538667 0.005800 0.331764 0.008035 0.673789 0.093660 -0.039736 0.374254 0.438806 0.413305 -0.108704 0.211235 -0.211288 -0.177689 0.118468 -0.852279 -0.291852 -0.148476 -0.289174 0.279401 0.687897 0.618738 -0.299697 0.491900 -0.043124 -0.002430 0.078119 -0.470901 0.080732 0.459156 -0.275502 0.053093 0.729366 -0.353497 -0.259759 0.228349 0.406627 0.069464 -0.316604 -0.222646 0.136729 -1.288866 -0.041633 -0.819578 -0.091483 -0.082994 0.695871 -0.309965 0.358688 0.744291 -0.160023 0.020452 -0.104565 -0.314990 -0.333748 0.136429 -0.017475 0.524216 -0.018556 -0.031488 0.094705 0.078146 0.370292 0.457716 -0.090296 -0.047629 -0.793783 -1.080472 -0.196376 -0.036775 -0.138885 -0.247683 -0.278568 -0.324233 0.756907 0.270043 -0.523039 -0.170656 0.407232 0.302109 -0.735191 -0.128009 -0.416904 -0.011795 -0.142027 -0.103389 0.097247 -0.396872 -0.205606 -0.225427 -0.198573 -0.061702 0.101700 -0.220050 -0.176701 -0.273690 -0.144806 -0.078431 -0.122941 -0.282929 -0.292545 -0.209296 0.172750 -0.442676 0.334904 -0.427903 0.180675 -0.046329 -0.357459 -0.016290 0.730058 -0.033667 0.043996 0.196142 -0.237663 -0.301157 -0.028834 -0.522137 0.414364 -0.037150 0.661510 -0.130930 -0.051522 -0.214887 -0.086892 -0.440977 -0.149366 -0.128446 0.132682 -0.123438 0.559528 -0.298394 -0.121171 -0.616754 0.315222 0.805442 -0.157348 -0.311778 -0.432371 0.282652 -0.025842 -0.474881 0.298957 -0.031127 -0.033721 0.032104 0.124679 -0.316018 0.351547 -0.211198 0.213984 -0.076028 -0.507097 -0.452108 0.101767 -0.209884 -0.081713 0.214930 -0.157508 -0.033097 -0.056773 0.253963 0.012121 0.000886 0.158641 -0.545840 -0.592385 -0.455328 0.206848 0.168993 0.242006 0.312991 -0.365546 -0.041795 -0.215918 0.493851 -0.152120 -0.110102 -0.137087 -0.125339 0.618071 -0.016386 -0.030743 -0.535815 0.202050 0.294977 -0.523142 0.487418 0.242613 -0.331702 -0.454666 -0.466991 -0.159437 0.407463 0.722929 -0.244710 -0.172389 0.393142 -0.294983 -0.080860 -0.455859 0.274147 0.048778 0.554463 -0.468719 -0.325705 0.060635 0.496893 -0.119482 0.442431 0.265430 0.500666 -0.076772 0.598507 0.017715 -0.140375 -0.215903 -0.483160 0.333505 0.649018 0.321321 0.126249 -0.283771 -0.370486 0.139197 0.391008 0.402484 0.796191 0.146260 0.367893 -0.066718 -0.362786 0.227990 0.161892 0.349154 -0.537472 0.126457 -0.189995 0.063172 0.068333 0.013549 0.446841 -0.169387 -0.823248 -0.217225 0.342075 0.233007 -0.170836 0.507238 -0.173597 -0.354866 0.240473 -0.101675 0.541031 0.116602 0.188864 -0.103692 -0.348782 0.074004 -0.113616 0.667303 -0.041337 -0.108499 0.405929 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.433345 -0.106955 0.186378 0.353135 0.375756 -0.434052 0.191871 0.296139 -0.067573 -0.782785 -0.376311 0.102055 -0.077608 -0.377245 0.163738 0.094668 0.120785 0.294697 -0.577945 0.376049 0.182175 0.232733 -0.110337 -0.364182 0.104990 -0.217205 -0.235496 0.290313 0.000811 0.441380 -0.385268 -0.086628 0.328245 0.139401 0.223277 0.483835 0.380810 -0.087542 0.236902 0.114648 0.910769 0.175209 0.016401 0.380698 0.532382 0.493305 -0.125682 0.637024 -0.113627 -0.154226 0.283102 -0.400819 -0.299707 -0.019357 -0.570540 0.435652 0.639102 0.306273 -0.404037 0.361377 -0.153160 0.063558 0.163296 -0.188113 0.511636 0.454432 0.051832 0.234250 1.008534 -0.247107 -0.189082 0.344078 0.662620 0.092565 0.257623 -0.230176 -0.165945 -0.927188 -0.087922 -0.596511 0.083681 -0.165546 0.876759 -0.447508 0.169646 0.637513 0.136688 0.372711 -0.270048 -0.201467 -0.452029 0.236910 -0.143360 0.872402 -0.055098 0.220394 -0.203677 0.164203 0.199656 0.454473 -0.041590 -0.273109 -0.645566 -1.218002 -0.490302 -0.162232 -0.177571 -0.294163 -0.764621 -0.116792 0.569668 0.560219 -0.737998 -0.073751 0.357246 0.195950 0.033271 -0.074533 -0.456289 -0.058618 -0.082434 0.060218 -0.114001 -0.233104 -0.227165 -0.492306 0.066212 0.022234 0.197316 -0.272210 -0.429553 -0.117881 -0.106981 -0.017630 -0.081562 -0.133415 -0.067278 -0.641361 0.220158 -0.374807 0.329085 -0.675436 -0.082125 -0.340199 -0.560920 -0.008822 0.889796 0.086931 0.423784 0.192708 -0.283879 -0.387870 -0.500102 -0.894752 0.212571 -0.329823 0.368237 -0.046157 0.002747 -0.197731 -0.103534 -0.384208 0.160523 -0.381108 0.013591 -0.306356 0.625524 -0.322363 -0.107341 -0.629482 0.001527 0.740292 0.048756 -0.056462 -0.317882 -0.334340 -0.412979 -0.568044 0.338084 -0.101368 0.123056 -0.171291 0.100377 -0.557240 0.329560 -0.291383 0.234351 -0.167416 -0.443752 -0.516697 -0.002838 -0.170158 -0.101121 -0.061270 -0.348428 0.109834 -0.004662 0.152512 0.049954 0.077115 -0.035454 -0.806090 -0.802874 -0.236894 0.209949 0.480360 0.296921 0.252420 -0.322398 -0.147171 -0.553236 0.524636 -0.665854 -0.061466 0.132894 -0.259491 0.679734 -0.246472 -0.241513 -0.580269 0.257874 -0.017895 -0.475450 0.830101 0.408070 -0.558309 -0.390228 -0.516902 0.113862 0.378598 0.905827 -0.302822 -0.048935 0.310074 -0.055690 -0.166513 -0.343873 0.427420 -0.176683 0.654473 -0.594445 -0.446527 0.121572 0.681820 -0.179795 0.189164 0.016672 0.212977 -0.102776 0.645112 0.177537 0.022837 -0.432167 -0.834485 0.129664 0.083591 0.118083 0.203799 -0.374990 -0.407263 0.042677 0.188420 0.685538 0.413090 0.202889 0.416729 -0.472122 -0.556857 0.158702 0.084276 0.162798 -0.501863 0.331611 -0.358000 -0.106371 -0.010856 0.209764 0.120984 -0.309404 -0.546094 -0.125308 0.393721 0.289795 -0.292026 0.561922 0.104195 -0.272115 0.092430 -0.026065 0.409025 0.138411 -0.113691 -0.204939 -0.403451 0.026581 -0.197201 0.804086 -0.071578 0.143020 0.276150 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 2.837962 1.168268 -1.604600 6.264289 0.031875 -2.408365 0.090568 2.518575 -1.698797 -9.353453 -6.034537 4.471833 0.598986 0.912711 2.898685 1.701311 -0.654710 0.651118 -10.561459 2.839307 3.399077 1.786443 0.403214 -2.077477 1.604521 -1.028394 1.096376 1.539393 1.517287 5.516707 -3.479978 2.395048 4.458972 -0.064964 2.909829 2.654311 -0.318076 1.181485 -2.091181 -0.396495 7.785755 3.295835 -0.092129 3.735846 1.372948 5.643396 -0.341462 4.321824 0.498400 -3.886266 3.089983 1.016395 -2.901305 -0.443437 -3.100161 3.470321 5.422339 3.040871 -3.013613 2.399190 -0.596386 -0.503263 1.338395 -1.737689 6.180553 3.523108 4.107414 3.791086 6.111259 -3.034773 -1.003501 1.767189 2.639855 -0.639621 2.560703 -4.968220 -4.430277 -4.045170 -0.504026 -8.976021 -3.340460 -0.345131 8.090144 -6.160045 1.192021 1.859682 -0.279611 4.857358 -2.957042 0.278453 -3.890067 -0.987126 -2.074579 7.992430 0.505753 -0.092280 0.625377 2.266803 3.022192 4.424394 0.114631 -2.938897 -3.059645 -7.721592 -2.818500 -0.085495 2.852691 2.737350 -5.885907 -1.731006 0.092990 4.355938 -8.090550 -1.157676 4.586894 3.543635 2.386781 -0.515199 -4.190004 0.861441 0.806660 0.606440 3.896091 -3.073069 0.318911 -1.425518 -0.223044 0.049235 2.841270 0.246386 -5.440635 -4.260800 -1.218005 -0.747291 -0.268487 -0.349606 1.760014 -2.745671 4.249167 -2.407983 4.501537 -7.377033 -0.573232 -2.193692 -3.465782 -0.984564 4.037624 3.314814 3.508815 -1.193193 -3.067257 -1.812134 -6.479020 -6.762041 2.453616 1.574754 2.433346 1.959852 -0.797658 2.753083 -2.410218 -0.005412 2.779244 -2.878187 -1.731771 -1.688070 4.706359 -0.539520 -1.355706 -4.560249 -0.447375 0.031257 -0.932916 3.687502 -0.978871 -6.285328 -7.513265 -4.216391 4.761635 -1.481510 0.879844 -2.518753 0.609442 -5.205843 0.391278 -6.184298 1.730432 0.562138 -4.284950 -5.427008 0.538413 -0.791505 -0.528645 0.137667 -3.857712 -1.078593 3.422539 2.776977 1.494821 0.909036 1.320805 -6.253677 -5.450743 0.254395 -2.865689 3.779651 1.662894 0.060650 -4.968835 -1.459484 -5.095431 4.135307 -2.619880 0.802747 -2.558157 -0.719917 5.782167 -3.139063 -1.077309 -5.048778 1.219825 2.583589 -7.861688 5.931577 3.161818 -1.593770 -0.763108 -0.268395 1.008568 3.725481 5.348671 -3.498151 -3.773651 0.363408 -1.478578 -0.012908 -2.047466 4.372338 -3.829960 1.204674 -3.639569 -2.338911 2.479950 3.407433 0.935018 3.410408 2.320391 -0.104887 0.905642 4.503442 3.748686 -1.516918 -3.409797 -9.322112 3.126200 1.204237 -0.619042 -0.586902 -2.889988 -4.332935 0.847657 0.712716 5.157092 2.220103 -0.925692 4.406300 -5.928272 -5.341677 -2.575683 0.658911 0.015440 -1.670465 -0.495561 -1.618320 1.997748 3.071837 -0.995398 0.903190 -2.979046 -2.731783 -1.152330 4.562307 0.774153 1.256719 5.922758 2.239668 -3.889746 -0.277928 0.354875 -0.130687 -0.798832 -4.809738 -2.469842 -1.562088 0.722729 -2.305955 1.501320 -1.145130 -1.215944 1.505259 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.436250 0.639607 0.840344 0.184599 -0.391647 -0.663534 0.865130 1.784425 -0.674474 -1.932731 -1.940194 -1.801797 -0.034033 -0.357896 1.058126 -0.337239 -0.617589 0.795728 -3.641235 0.262835 1.772655 1.056945 1.147906 -0.822010 0.348663 -0.208442 -3.185187 0.699154 -0.038706 1.503165 -0.422721 -0.234218 1.039342 0.449101 -0.724178 1.119440 -0.174138 0.170062 1.806356 0.694599 1.040662 0.906618 -1.006606 -0.057763 0.259033 1.130453 -1.150167 0.211247 -2.344775 -0.937243 0.791134 -2.892834 -1.129677 0.119306 0.361424 0.340507 2.841534 2.396769 0.154113 1.258510 -1.367453 -0.062367 0.263847 -1.759939 0.653122 1.820928 0.049877 0.162010 1.535156 -0.720598 -0.010957 -0.023345 -0.376369 -1.241469 -1.630005 -0.617184 0.530212 -4.602815 0.263558 -3.960480 -1.255629 0.197645 2.049341 -1.111460 0.867497 1.717701 0.218322 0.733617 -0.770906 -0.050916 -0.387061 0.183788 -0.428896 1.890177 -0.135875 -0.218627 0.061518 0.523286 1.385822 0.727748 -0.541646 0.489356 -3.277604 -2.662704 -0.292689 0.319028 0.163186 0.466918 -1.539557 -0.700485 2.811571 -0.017241 -1.950604 -0.101535 1.339055 1.733570 -1.965182 0.861579 -2.299365 0.114597 -0.577675 -0.027040 1.060796 -1.312275 0.072319 -1.422801 -0.427342 0.151426 -0.053704 -0.445789 -1.353392 -0.814699 -0.128323 -1.452516 0.177929 0.306587 0.053755 0.424909 0.609022 -1.721465 1.064883 -2.080383 1.059799 0.060395 -1.130352 0.076201 1.214626 1.722674 -1.529141 0.296177 -0.870020 -0.485087 -0.589943 -0.922951 0.294917 0.526042 2.441797 -0.880206 -0.281982 -0.279166 -0.089286 0.009562 -0.981649 -0.145652 0.549003 -0.286738 3.237012 -0.063199 -0.540771 -1.380879 0.272292 1.415337 -1.523409 -0.304764 -0.477717 2.154573 -1.060027 -1.257586 1.109959 0.053470 -0.327341 -0.991674 0.937425 -1.578666 1.028773 -0.446793 0.139914 0.816720 -1.441951 -1.323056 0.174411 0.019803 -0.831405 0.277971 -0.292712 -0.869672 1.166037 0.971901 0.628729 -0.096875 0.544166 -0.869331 -1.498937 -1.128327 -0.385792 0.476108 1.193738 0.227607 -1.065760 0.193552 -0.823579 1.999317 1.033169 -0.207632 -1.813071 -0.009257 1.830329 -0.123940 -0.559609 -1.781527 0.088127 0.357129 -1.487962 1.587388 0.384008 -0.189050 -0.609330 -1.514359 -0.213686 1.265903 1.216198 -0.380221 -0.599457 0.214000 -1.066693 -0.103795 -0.840864 0.933182 -0.976467 0.666333 -0.322340 -0.077001 0.552715 1.070571 -0.164482 2.055962 0.773606 1.459580 0.644749 0.468883 0.140591 -2.174569 -0.082800 -1.369277 0.984408 1.807655 0.405897 -0.715628 -0.708726 -1.272207 0.263543 1.642115 1.047306 3.599852 -0.098891 0.774984 -0.058230 -0.904007 -0.275430 1.420549 0.398940 -1.131105 -0.688693 0.225814 0.737624 1.707669 -0.243030 2.206283 -1.992437 -3.302941 -0.853188 1.660661 0.136581 -0.737194 1.435315 -0.165372 -0.767390 -0.058834 -0.317585 0.738706 -0.033347 1.627755 -0.119980 -0.443842 0.195996 -0.449770 1.338683 0.199421 -1.046582 1.306806 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 12.995789 2.328743 -7.649853 22.634014 -4.025294 -11.142528 5.602827 13.794733 -9.131127 -36.722790 -17.588427 5.921762 6.026972 1.625351 4.187178 11.902964 -9.191636 3.150705 -38.697157 13.020059 18.328075 7.345978 3.210616 -10.181864 3.595415 -11.090416 3.595267 5.952691 2.614231 24.472998 -7.627748 7.807104 20.429933 -0.215349 8.052708 20.317426 0.263498 3.736072 -4.247342 3.151539 23.279722 22.911245 -10.199370 0.245566 -1.540310 23.585145 8.590915 6.134178 -31.591698 -17.957349 1.107315 -6.461337 -17.883442 -6.771095 -7.477144 6.144776 15.984378 22.612641 -6.032690 11.105998 -20.630410 -3.748803 8.069533 5.089159 23.572368 5.312510 17.559398 16.217898 24.317173 -16.461791 -1.902212 14.261835 -0.663392 -9.492445 16.592219 -8.768587 -24.672004 -18.602614 1.107591 -36.861384 -22.954657 8.652083 37.537752 -23.064264 3.477913 8.400788 6.518676 21.362428 -17.691578 0.930033 -15.405456 -3.149060 -9.250967 36.802676 3.058489 2.205124 0.076194 13.257572 15.266099 14.051692 0.539718 -14.530290 -14.288686 -21.973099 1.960207 -9.972174 6.842810 16.092177 -24.622864 -12.513074 6.806614 29.940317 -34.693569 7.100317 20.380101 16.602534 31.690029 -1.891642 -10.873388 13.806251 2.343131 -2.631942 21.930362 -18.768848 1.546598 4.975752 12.619046 0.517218 1.982600 3.746142 -41.184993 -11.517364 6.638548 -16.686039 4.809451 10.145185 10.843133 -15.233528 12.344589 -20.788299 21.088520 -29.475976 7.351832 -2.184233 -28.666353 -5.149156 22.564571 25.114649 3.534436 -12.507952 -11.625459 -2.481786 -24.622535 -33.354012 3.667228 9.826546 7.217373 2.905797 -2.508252 8.534117 -11.847953 10.450134 7.599517 -5.633464 -1.233255 4.511323 24.261339 5.625848 -5.721193 -10.660974 -7.967992 -5.686971 8.980866 22.962434 -5.879275 -29.004442 -37.002211 -17.113143 20.463396 -4.876080 -5.590213 -16.964608 -7.791779 -19.827465 6.431031 -19.423339 17.003830 3.966675 -10.547383 -23.925208 4.296163 -2.161324 -9.661999 0.409105 -7.542295 -10.548915 14.325592 -8.168036 5.814406 -0.327352 6.508214 -14.786740 -13.084144 11.416906 -12.012987 24.505961 8.971092 -2.132839 -14.490360 -3.038684 -21.854488 21.907168 3.356536 4.927161 -14.731253 -1.777952 27.916521 -11.681545 -0.162597 -21.025278 9.360194 6.860668 -20.124028 27.369027 24.264834 -4.353871 -0.734629 8.283492 -1.089869 19.076511 13.382480 -12.234721 -19.780926 2.357902 -8.317846 -0.301279 0.993083 9.454562 -22.026656 3.956484 -9.854839 -4.751593 8.453727 11.690878 0.345897 9.037244 3.318520 -7.719879 1.045627 13.435059 16.655263 -7.142127 -21.898296 -33.310527 17.391698 -11.586597 -6.818218 -12.248477 -3.093393 -13.703506 9.029778 -3.005482 19.920881 24.135705 -23.525225 17.041643 -30.531541 -23.525083 -17.073759 5.294425 -0.349534 -4.285832 -1.932702 -4.507616 14.130502 11.872875 -4.646943 2.868237 -17.940580 -0.856319 -0.481604 22.171708 5.631625 -3.538558 24.837423 4.408492 -4.246028 -8.416650 8.476783 -4.646988 -1.831993 -15.051937 -10.694967 -3.117882 11.039141 -8.072975 7.854250 0.031818 -8.818558 14.181710 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.156966 -0.006542 0.256000 0.062296 -0.005391 -0.155796 0.160064 0.323669 -0.076907 -0.522927 -0.445025 -0.400663 -0.090382 -0.146510 0.327957 -0.015958 0.128648 0.252885 -0.707006 0.121046 0.304389 0.239638 0.122085 -0.072046 0.110042 -0.092800 -0.751639 0.094248 0.023597 0.352878 -0.256913 -0.021721 0.251337 0.059111 0.009875 0.281540 0.075493 -0.021085 0.457438 0.186704 0.509911 0.046065 -0.003891 0.139173 0.261701 0.321031 -0.322946 0.336489 -0.081057 -0.204869 0.392390 -0.893254 -0.176241 0.174891 -0.189009 0.164249 0.574974 0.464901 -0.185671 0.357925 -0.210542 0.123617 0.055966 -0.479683 0.288775 0.423985 -0.029779 0.068057 0.439499 -0.087455 0.031028 -0.024221 0.173945 -0.102200 -0.340495 -0.226113 0.307130 -1.242950 -0.038405 -0.705133 0.035754 -0.063175 0.570446 -0.319020 0.260333 0.533785 -0.131113 0.176224 -0.115844 -0.103687 -0.239626 0.112371 0.040892 0.219895 -0.083419 -0.051162 -0.026741 0.112665 0.167695 0.151160 -0.116853 -0.006438 -0.843139 -0.884786 -0.336629 0.054826 -0.018348 -0.103395 -0.466742 -0.063824 0.655587 0.041105 -0.509739 -0.019129 0.202790 0.260591 -0.668156 0.222341 -0.508621 -0.179065 -0.169241 0.232463 0.100968 -0.258560 0.010964 -0.692823 -0.150843 0.106119 0.169257 -0.199017 -0.001368 -0.181648 -0.108562 -0.088318 -0.159754 0.031823 -0.027374 0.003916 0.233053 -0.340489 0.252703 -0.478216 0.045078 -0.203217 -0.235551 0.006732 0.813661 0.293231 -0.052265 0.250333 -0.321421 -0.183200 -0.264677 -0.271035 0.132185 -0.121478 0.609063 -0.080905 -0.023049 -0.143829 0.006448 -0.187683 -0.261844 -0.179905 0.090966 -0.222819 0.341950 -0.152675 -0.184884 -0.557089 0.159433 0.657185 -0.452837 -0.228941 -0.211236 0.422085 -0.170362 -0.314531 0.263262 -0.036484 0.175560 -0.064069 0.295641 -0.382331 0.270160 -0.194580 -0.081755 0.007342 -0.400152 -0.357867 -0.000380 -0.085753 -0.070681 0.017987 -0.130992 -0.022314 0.162003 0.423664 0.133526 0.071055 0.070863 -0.425537 -0.540057 -0.403608 -0.056599 0.159988 0.280554 0.070263 -0.296803 -0.018854 -0.231479 0.462467 -0.142767 -0.068740 -0.154144 -0.154133 0.382589 -0.054600 -0.106231 -0.428478 0.074709 0.074841 -0.751913 0.323504 0.143589 -0.310500 -0.211815 -0.612159 0.149212 0.247794 0.491331 -0.006696 0.098936 0.113991 -0.210467 -0.019786 -0.411044 0.300331 -0.099670 0.250896 -0.276530 -0.120935 0.262161 0.313934 -0.057337 0.322712 0.225441 0.478663 0.128448 0.301238 -0.015426 -0.322313 -0.086941 -0.548489 0.156810 0.889308 0.227412 0.140812 -0.320558 -0.225082 -0.055051 0.271362 0.313781 0.754496 0.321901 0.257268 -0.015337 -0.284600 0.050888 0.246094 0.096071 -0.381757 0.018703 -0.073691 0.022432 0.226462 0.177747 0.454404 -0.322432 -0.917713 -0.150104 0.348800 0.157482 -0.138089 0.358885 -0.047361 -0.278213 0.096670 -0.069057 0.303242 0.081333 0.271584 -0.128608 -0.215695 0.001183 -0.221809 0.460654 -0.090974 -0.008349 0.236538 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.981650 0.272893 -1.879247 4.676019 -0.331592 -1.272508 0.188722 0.576047 -1.333158 -7.861720 -4.086482 2.137550 1.301355 1.418456 0.839065 2.537042 -0.878589 0.964646 -6.971400 1.568108 3.379416 1.542859 0.871371 -0.856224 1.028314 -1.725814 1.334269 0.093704 1.285689 4.785222 -2.441130 2.476593 4.161814 -0.968596 1.013508 3.101559 -0.006138 1.018045 -1.421541 0.194380 5.194606 1.780174 0.218148 1.397530 -0.421741 4.412594 0.638569 3.734518 -1.782574 -3.684748 2.188329 0.450652 -2.258085 -0.670174 -2.090303 2.324112 3.934279 3.475156 -1.868120 1.339975 -0.339896 0.068889 1.358455 0.283892 4.361955 2.356734 3.185618 3.150491 4.625705 -2.677810 0.037601 1.603693 0.046473 -1.163305 4.029453 -3.618301 -3.581854 -0.468174 -0.598043 -5.974754 -2.399692 0.771301 6.360698 -4.883915 0.022058 1.103770 0.802230 4.656125 -1.609207 0.653902 -3.024929 -0.320829 -1.840669 6.634266 0.515500 0.311865 -0.936737 1.976734 1.682042 2.327758 0.343575 -2.980243 -2.267018 -4.891625 -2.300479 -2.073308 1.999599 3.559309 -6.137705 -1.645183 -1.169611 3.824949 -7.337265 0.788807 3.080462 3.657846 4.646548 0.032867 -3.184898 1.053984 0.389525 -0.022192 2.453364 -2.045143 0.466621 -1.087359 0.753533 0.130425 0.834880 0.026081 -6.076763 -2.723016 -0.641692 -1.645052 0.629930 1.734250 3.188777 -2.422764 2.898758 -2.692274 2.950561 -6.235285 -0.711272 -1.094991 -5.073305 -1.534738 2.553898 2.486296 2.259614 -2.496176 -3.180970 -1.455808 -5.843569 -5.867976 0.311053 0.835953 1.325118 2.571715 -0.870201 2.248754 -2.521569 1.026072 2.412017 -1.573897 -1.145870 -0.628863 4.410371 -0.188609 -0.942247 -2.593867 -1.584371 -1.321889 0.136215 4.517410 -0.739457 -4.252529 -7.682130 -3.222923 3.980846 -1.616723 0.634490 -2.991622 -0.647990 -5.090631 0.400740 -4.314925 0.734311 0.435555 -2.388416 -4.772361 0.789975 -0.522824 -1.679886 0.513509 -3.464527 -0.870742 3.007508 0.243102 1.770654 -0.316103 0.387333 -4.410660 -3.431436 1.552905 -3.163701 3.054827 1.893159 -0.417315 -2.816493 -1.618340 -4.123021 2.739229 -1.396931 1.263859 -1.292440 0.678246 4.135040 -3.110368 0.321058 -3.662720 0.973587 1.323390 -5.575127 5.692998 2.676304 -1.206281 0.465202 0.917438 1.010120 2.305767 2.239060 -2.723785 -3.352638 0.428387 -1.411632 0.122625 -1.312307 2.532177 -3.779630 0.834344 -2.312344 -1.076772 1.700298 2.631798 -0.072402 1.813368 1.788896 -1.774486 0.841803 2.905508 3.060503 -0.973041 -2.793218 -7.062635 2.642995 -2.628354 -1.013639 -1.261836 -1.570622 -1.871357 2.052160 0.133166 4.181409 1.722897 -1.474201 3.598593 -6.090004 -4.431471 -2.213086 -0.184530 0.370471 -0.352008 -1.091203 -1.358688 1.814855 2.110021 -0.412863 -0.028212 -3.635964 -0.175281 0.377725 4.967183 -0.100942 0.847194 4.753096 1.292760 -1.354720 -0.571988 0.805144 -0.029804 -0.909023 -3.339296 -1.689402 0.107677 1.156017 -2.344416 1.376786 -1.975289 -1.326048 1.546469 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 5.231863 4.206378 0.948015 2.788261 1.813489 -3.087386 -0.191559 7.632943 -6.386859 -4.201258 -6.406523 2.323159 -2.348717 0.260205 8.239139 -0.109808 0.808088 -1.812446 -11.124648 3.134990 -0.965360 -0.829046 -0.254981 -3.627817 2.625674 4.874479 -2.983000 4.283453 1.055788 3.026714 -4.165283 -1.119728 0.348807 3.533064 5.978684 -3.148716 3.361509 1.614974 -2.192432 -0.848208 8.377024 2.915299 -1.832668 6.137606 5.722903 3.128509 -2.305934 5.266043 -0.194936 1.227900 6.070499 -8.177646 -2.317719 3.182462 -2.930405 1.280219 7.949721 2.349443 -3.446194 4.447821 0.968869 -0.439964 -0.825722 -7.446374 5.125028 3.447797 3.927517 -0.587557 4.440921 -2.566778 -2.723567 0.406856 7.611408 0.668189 -10.522240 -8.705508 1.819576 -14.838142 2.994034 -12.129486 -4.089572 -3.686151 6.372552 -3.159279 3.353536 5.052262 -7.299105 -0.793640 -6.078141 0.913660 -2.012615 -3.253523 -0.374453 4.606810 -0.544445 -1.159300 6.438561 0.738955 6.353636 7.087488 -1.069827 1.074325 -5.564000 -5.157855 -2.020081 10.782836 0.961054 -2.365339 2.565366 -2.758264 3.368016 -1.068464 -1.420651 -6.425431 4.520405 1.927615 -5.252558 5.127425 -6.835594 -0.171528 0.639536 3.288080 6.283602 -4.232113 0.823555 -3.780789 -2.607794 0.630572 6.520166 1.117033 -0.364314 -4.324193 -0.261086 -1.619251 -3.701757 -8.637564 -6.403299 -0.608144 4.616903 0.777686 3.817982 -5.645241 -1.385524 -0.170158 -0.728755 2.420566 6.033602 2.696021 2.206197 7.303423 -1.525069 -0.149352 0.405838 -2.917552 6.916156 3.590283 4.524817 -1.317799 0.514718 2.388622 -0.516836 -6.319640 1.617773 -2.681200 -3.534356 -6.164214 2.988008 -0.876497 -1.259311 -5.752665 5.340503 6.106562 -2.156013 -1.633553 -1.358956 -6.247325 1.920639 -3.089103 3.238935 0.510382 0.271117 3.478032 6.768273 -7.289631 0.092050 -5.845599 3.611155 2.038157 -7.730754 -0.991419 0.902908 -0.412162 3.609212 -0.121807 0.609185 -1.522273 1.299992 9.902968 -1.357433 3.750481 3.583573 -5.815500 -10.921311 -4.815904 1.987138 4.052823 -4.842174 1.612282 -6.044438 1.291391 -2.056982 6.613978 -1.899265 -2.134392 -6.557382 0.964591 5.552964 1.468472 -4.523564 -3.090670 1.717555 5.379440 -7.755791 0.816104 2.182203 -1.003298 -4.944957 -5.179209 0.600280 4.673472 10.169088 -1.064786 -2.133689 0.555697 2.396446 -0.233594 -4.360371 6.606381 0.513566 0.505449 -3.985738 -4.744116 1.467547 3.236609 3.529191 6.836983 2.669570 7.344157 -3.224433 7.969829 -1.671461 -3.814583 2.100288 -7.255367 -0.782763 16.914041 0.429714 2.231538 -4.746417 -6.626296 -4.150089 -0.366374 2.749524 6.002872 1.415821 2.607435 2.845347 -2.427876 -1.754251 5.593796 -1.064222 -5.258800 -0.594711 -1.176564 1.158883 5.007899 -2.061262 5.859864 0.924338 -10.024691 -9.371202 -0.338935 -0.438417 1.759827 4.471854 2.331650 -5.983951 1.227067 -0.365469 3.552307 5.240786 -3.505886 -3.399248 -5.548254 -1.221553 -0.429515 -0.681690 3.076006 -0.941489 1.389299 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 3.718524 -0.515049 -0.605312 6.255035 0.142804 -1.851112 0.644418 2.944141 -0.978052 -11.202506 -7.058385 5.938870 0.332015 0.997683 1.872056 1.462738 0.344362 0.388180 -13.828360 2.928374 4.088219 1.556778 0.961749 -1.381526 1.622988 -3.191848 2.764601 2.432790 1.512850 6.453737 -3.694474 2.417270 5.408643 0.217845 3.517514 5.076170 -1.533838 0.067959 -1.885700 -1.457313 8.828399 4.752909 -0.810796 3.640010 1.600397 6.773305 0.939247 4.080107 2.848930 -4.836489 2.021880 0.787752 -4.574696 -1.062911 -4.376715 2.724143 4.423168 2.941925 -3.433325 2.542494 -1.651957 -0.543202 1.442219 -1.201924 6.740803 1.874172 4.914611 3.827797 6.486434 -4.461620 -1.114952 3.575885 2.868881 1.089113 3.447487 -4.119411 -5.756643 -4.495698 -0.317080 -10.451718 -4.541191 -0.449882 8.657678 -5.996897 0.752958 1.419811 -0.807216 5.810055 -2.883543 0.009362 -5.386113 -0.334098 -1.039185 7.862123 0.783946 0.011235 1.199131 2.583710 2.662681 5.182470 0.370300 -4.735720 -3.081401 -10.096958 -1.126805 -2.767163 3.300114 3.111636 -6.823066 -0.841150 0.098738 7.415638 -8.508790 -0.584669 4.688363 3.257377 2.313604 -1.468222 -3.134630 0.233848 0.958042 1.086562 4.987479 -4.089933 0.303878 -0.418287 1.522099 0.279969 2.661393 0.592027 -6.139165 -4.962820 0.611298 0.031045 -0.284303 0.873412 2.904820 -2.437854 4.251985 -3.324367 5.494188 -7.388606 0.596512 -2.746617 -2.904384 -1.858503 5.981648 5.651067 3.496226 -1.360778 -1.951273 -1.228768 -6.884899 -8.353897 2.234350 1.318941 2.604618 1.706283 -0.773842 3.492398 -3.078147 0.490201 0.933929 -2.796132 -1.063598 -0.831710 2.941781 0.126974 -1.063421 -3.874365 -0.682647 -0.109138 -0.978886 4.680832 -1.820171 -9.068731 -8.643765 -5.323125 5.559341 -2.282510 0.012390 -2.908948 -0.572220 -3.760428 0.961926 -5.817004 1.214097 -0.296772 -5.005770 -6.637537 0.322940 -1.536463 -0.659608 0.804804 -4.506223 -1.406598 3.971516 2.597490 2.364640 0.927559 0.784472 -6.319762 -4.603990 0.803833 -3.432125 5.739448 2.587615 -1.332569 -6.058093 -2.316766 -5.395389 5.258164 -3.192458 1.643851 -2.820058 -2.626640 6.376393 -2.993825 0.041480 -4.704189 2.336793 3.215934 -10.270826 7.528475 5.525301 -2.553040 -1.093183 -0.120687 0.568009 4.394415 5.300470 -4.128231 -4.149271 0.584866 -2.226611 0.169050 -1.280888 4.416576 -3.544324 1.297147 -4.637758 -3.164878 3.235781 3.089211 0.858245 2.826805 2.674076 0.622030 2.233457 5.547450 3.878150 -0.719218 -5.701090 -12.543966 4.566471 2.940337 -0.688863 0.462911 -3.307676 -5.166078 1.215295 -0.987170 5.993373 2.339740 -2.147030 5.254084 -6.475094 -6.074803 -3.916576 -0.834546 -0.014157 -0.728837 1.196946 -2.119597 2.087884 1.690097 -0.837917 0.011952 -2.871223 -1.971204 0.505520 4.951576 3.076697 1.204832 6.466277 2.058692 -4.270162 -1.130498 0.735869 -1.081792 -0.910468 -5.350711 -2.815967 -1.320328 1.671823 -2.500805 1.564022 -0.169973 0.031893 0.962646 -PE-benchmarks/vertex-cover-problem.cpp__main = 0.522203 0.181967 1.294027 -0.122870 0.622397 -0.075483 0.614146 1.054988 -0.466974 -1.182767 -1.393574 -0.983599 -0.425198 -0.289497 0.682642 -0.611638 0.530103 0.170426 -1.710985 -0.113145 0.537746 0.270903 0.379512 -0.170816 0.150627 -0.342598 -1.747628 0.959490 -0.030514 0.646884 -0.265351 -0.445582 0.436900 0.554077 0.085941 0.867904 0.280781 -0.186743 1.064377 -0.061573 1.353369 0.038801 -0.075875 0.596018 0.897115 0.740613 -0.954971 0.840968 -0.471127 -0.288743 1.065465 -2.410456 -0.606095 0.104827 -0.576646 0.268133 1.622080 0.898440 -0.484207 0.903547 -0.462599 0.075249 -0.080202 -1.244144 0.268881 1.055539 -0.217058 -0.141061 0.952916 -0.696039 -0.599397 0.646507 0.399554 0.289582 -1.915378 -0.657537 0.990937 -2.653138 0.323083 -1.773828 -0.344515 -0.570490 1.496748 -0.129970 0.256256 1.234392 -0.664886 -0.084494 -0.174983 -0.326429 -0.603392 0.275463 0.126944 0.388425 -0.311709 -0.126869 0.595810 -0.104439 0.639792 1.071730 -0.605407 0.221539 -2.280536 -2.065928 -0.417343 0.236805 0.232356 -0.467257 -0.411540 -0.366573 1.507826 -0.325621 -0.445272 -0.520661 0.667385 0.835458 -2.049063 1.146979 -1.491224 -0.810577 -0.056988 0.184415 0.480354 -0.362270 -0.011777 -1.417750 -0.303628 -0.103751 0.289103 -0.491671 -0.391582 -0.582628 -0.148593 -0.527769 -0.278731 -0.615205 -0.504922 0.321389 0.411274 -0.547688 0.644545 -1.140133 0.396177 -0.542294 -0.529601 0.094898 1.494278 0.872637 -0.111595 1.058388 -0.268126 -0.357208 0.044776 -0.383121 0.218912 0.022407 1.736858 -0.618407 -0.114338 -0.105207 -0.045700 -0.761975 -0.856826 -0.082409 0.249862 -0.622871 1.262354 -0.348851 -0.303759 -1.057236 0.866637 1.402870 -1.369373 -0.574227 -0.647725 0.957522 0.081470 -0.996806 0.447861 -0.070142 -0.089724 0.171627 0.644399 -0.718781 0.566718 -0.281990 -0.027127 -0.049712 -1.380135 -0.694856 0.307901 -0.291609 -0.239769 0.513322 -0.168282 -0.259406 0.629177 1.272318 0.399779 0.247383 -0.054135 -0.777732 -1.219599 -1.220148 0.296674 0.370892 0.873725 0.133613 -0.447995 -0.152874 -0.380811 1.093389 0.302002 -0.285315 -0.496694 -0.342776 0.812573 0.033815 0.031069 -0.971528 0.168317 0.607575 -1.904995 0.593163 0.213828 -0.633286 -1.178381 -1.636949 -0.319907 0.558214 1.247567 0.051182 0.103462 0.455424 -0.349360 -0.109928 -0.789548 0.595220 0.381309 0.671799 -1.004643 -0.861614 0.440424 0.838876 -0.156471 1.077514 0.682611 1.759607 0.575619 1.125604 -0.226962 -0.950869 0.032098 -1.565509 0.545852 2.389965 0.294564 0.203452 -0.647576 -1.103336 -0.212831 0.676056 0.695675 1.816803 0.634018 0.682861 0.749225 -0.447042 0.087257 0.574283 0.424010 -1.072435 -0.245631 -0.187273 0.127274 0.312318 -0.138830 1.376193 -0.698425 -2.581165 -0.691885 0.742849 0.372369 -0.027217 0.781041 -0.172013 -0.604243 0.181709 0.005266 1.070374 0.711271 0.442771 -0.350027 -0.754413 -0.164961 -0.053766 0.727983 0.450900 -0.085717 0.829127 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 4.383940 0.561892 -1.061536 7.695796 0.119041 -3.066581 0.809239 3.777235 -1.271955 -13.604733 -8.889743 5.785322 0.680046 0.420918 2.716024 1.840400 -0.062991 1.477806 -16.723164 3.923497 5.763722 2.770051 1.166320 -2.461403 2.195811 -3.281735 1.317817 1.994311 1.799114 8.159608 -4.704538 3.162307 6.609330 0.271965 4.140475 6.081897 -2.359783 0.566625 -0.687265 -1.134562 10.609646 5.984571 -0.685625 4.358013 2.110992 8.045582 0.034276 4.398373 0.641160 -5.926087 2.358131 0.736842 -4.989954 -0.642829 -4.721111 3.935845 6.805158 4.096077 -4.025429 3.257841 -1.783547 -0.360047 2.018097 -1.960316 8.196952 3.477087 4.893127 4.969124 8.627487 -4.494085 -0.588010 3.118127 3.162702 -0.363352 4.318717 -4.642991 -6.777361 -4.813740 -0.968493 -13.376319 -4.539815 -0.172695 11.012040 -7.850980 1.924616 2.183809 0.272618 7.361820 -3.381920 -0.613260 -5.910128 -0.223220 -2.828982 10.364283 0.750592 0.710318 0.446536 3.407998 3.228077 5.535632 -0.227340 -5.299690 -4.051523 -12.853385 -1.891001 -3.056407 3.679068 3.884583 -9.053097 -1.482040 0.056336 8.785111 -11.451687 -0.462258 5.376112 4.229763 1.478364 -2.252615 -4.821935 0.547284 0.088435 0.997744 4.840097 -4.909206 -0.083378 -1.685704 0.501972 0.419386 3.188928 0.370039 -7.373186 -5.482415 -0.210038 -0.895614 -0.434619 1.864230 3.739581 -3.299483 5.062395 -4.819797 6.357862 -9.339083 0.577083 -3.478046 -5.020545 -2.099477 5.638420 5.914170 3.407816 -2.175167 -2.518961 -2.104266 -9.107796 -9.985400 3.038263 1.000583 3.877595 1.961671 -0.909085 3.232105 -4.077621 0.482018 1.844023 -3.601595 -1.085939 -1.657247 6.694057 -0.315786 -1.661068 -4.963948 -1.377559 0.446776 -1.546813 5.149164 -2.258716 -7.868248 -11.260012 -6.293404 6.896028 -2.596971 0.457972 -4.327465 0.283713 -5.366056 1.262781 -7.204026 1.596361 -0.337489 -4.921743 -8.146237 -0.211869 -1.549810 -0.890840 0.388083 -5.411569 -1.438380 6.013387 2.886875 2.519263 1.037821 1.296147 -7.392906 -5.785891 1.085306 -3.922811 5.657732 3.797724 -1.160668 -7.075780 -2.515450 -6.811190 6.413732 -2.934230 1.856575 -3.396648 -2.361788 8.245107 -3.886903 -0.808649 -6.429736 2.169023 2.964194 -11.541988 8.777163 5.223947 -3.204995 -0.843285 -1.043023 1.425640 5.098167 6.504577 -4.725864 -4.856936 0.775535 -3.639615 0.086408 -2.559768 5.400538 -5.078700 2.539545 -5.212537 -3.026139 4.354027 4.008637 0.586166 4.211788 2.930448 0.169001 3.300938 6.264060 5.191582 -1.499577 -7.032511 -13.774142 4.959363 1.641723 0.018044 -1.003647 -3.042231 -6.301317 1.464952 0.287019 7.524853 4.311376 -2.260454 6.279537 -8.334983 -7.648899 -4.114584 0.202338 0.498954 -1.658088 0.000114 -2.508623 2.722703 2.976516 -0.085423 1.424082 -5.096839 -3.564530 0.385801 6.878408 2.693367 0.663677 8.108583 2.659337 -4.942963 -0.846195 0.597102 -0.582756 -1.863673 -5.863770 -3.537248 -1.773755 1.792142 -3.575081 3.327147 -0.978590 -0.013340 1.931316 -PE-benchmarks/largest-independent-set-problem.cpp__main = 3.001208 -0.282551 -0.240667 1.735770 -0.120729 -3.976405 1.541781 3.227700 -0.926991 -3.628533 -2.373389 -0.305382 0.253416 -3.257376 1.183680 0.585146 -0.928760 1.072600 -6.739427 2.986461 1.908152 1.262763 -1.820816 -2.438418 0.266725 -1.104040 -3.651273 2.377931 -1.195381 2.730650 -1.299951 -0.506459 1.878411 0.241429 0.923627 3.142705 -0.267300 0.152367 3.685212 2.603432 3.937151 3.096581 -1.703124 0.280051 2.838059 2.881774 -1.385513 3.114129 -4.396943 -1.037270 2.139214 -1.659636 -2.494566 -0.140267 -1.734418 0.827150 5.588404 2.557618 -1.530379 2.952951 -3.357883 -0.112303 1.571614 0.249325 4.163913 3.384764 1.190153 1.182537 5.697385 -0.472381 0.099059 0.784865 2.565918 -2.248135 0.346733 -1.152457 -2.001206 -6.611710 0.674224 -6.458596 -1.006605 0.369607 4.794086 -2.736466 1.368901 2.867062 2.435671 2.618139 -3.344008 -1.311718 -1.474879 0.601401 -2.129781 7.564609 -0.999090 2.010980 -0.647866 2.017452 2.061108 1.897307 -1.515135 -1.514865 -4.454567 -7.114950 -2.021389 -0.458761 -2.001383 -1.066375 -4.914576 -1.588757 4.466311 1.618465 -4.889216 0.215710 2.460902 0.980603 0.950552 0.984113 -4.006923 0.885469 -1.656998 0.552832 0.956984 -1.420096 -0.831975 -3.192407 1.107426 1.273229 0.038453 -0.728628 -5.243912 0.598306 0.778089 -2.258050 -0.246431 0.704601 -0.563876 -2.675418 0.896988 -3.999622 2.598375 -5.590511 0.591962 -1.928766 -3.750448 0.636922 1.945007 3.073545 -0.432549 0.069256 -1.236951 -0.768219 -3.992621 -5.777332 0.799327 -1.362860 2.547547 -2.877031 -0.094823 -2.143640 -0.293064 -0.961270 0.742492 -1.859295 0.640186 -2.066403 7.558903 0.198534 -1.270912 -1.715706 -0.867443 3.244199 0.768191 0.292773 -1.526222 -1.684978 -3.550781 -2.426381 2.245793 0.420119 -0.735507 -2.018477 0.430665 -4.460903 2.333109 -1.225409 1.667127 -0.703390 -1.000811 -2.761095 -0.418375 -0.010331 -0.376119 -2.133945 -1.327618 -0.782677 1.858883 0.713829 0.542133 0.496723 0.803106 -3.165445 -4.020570 -0.211523 1.254960 3.484658 2.776354 1.515626 -0.810005 0.791615 -4.028605 3.568965 -1.660150 -0.277692 -0.387406 -2.206166 5.395664 -1.128378 -2.526482 -3.298162 1.166873 -1.107754 -1.118900 6.067249 2.747634 -2.715680 -1.530704 -2.500445 0.515202 2.792683 4.170058 -1.562654 -0.944357 1.018395 -0.970588 -0.975718 -0.726980 2.235886 -2.190889 3.555149 -2.128174 -1.069298 1.701920 3.440134 -0.681685 1.823992 -2.087701 0.052101 -0.432183 2.354559 0.429708 -1.560123 -2.154564 -4.850706 0.984486 -1.558360 -0.043989 -0.847701 -1.107423 -3.068815 -0.313529 1.980185 3.757174 4.722610 -1.434448 1.674973 -3.216433 -3.669861 -1.489013 2.453677 0.289287 -2.500283 0.625610 -1.048515 0.663380 1.667041 1.725953 2.387146 -3.614867 -4.532649 -0.981925 2.161548 0.779443 -4.126933 3.481928 -0.222240 -0.565568 -1.126052 -0.330649 1.290055 1.117901 0.990361 -1.322998 -2.856901 1.468187 -1.265762 4.925337 0.670428 1.180966 2.946150 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 5.384105 0.907887 -2.822046 5.660866 -0.576530 -5.235783 1.381200 4.299097 -2.527374 -9.636466 -6.010806 5.507125 1.129292 -2.531745 1.391610 2.842729 -1.510580 1.056771 -12.106643 5.091291 3.727238 1.258857 -2.674895 -2.921623 0.762482 -2.998099 -0.991139 2.811023 -0.466501 6.117733 -2.915091 1.665477 4.806566 -0.099590 2.962454 5.561726 -1.775683 0.085997 1.801835 1.155392 8.004304 6.055967 -1.636814 1.835914 2.885661 6.368188 -0.912759 5.399123 -4.867501 -3.723854 2.464637 1.371277 -5.275649 -0.313288 -3.802265 2.170592 5.548143 2.883678 -2.781846 3.695602 -5.356607 -0.672793 2.500659 0.638999 8.295433 3.900754 4.511270 3.915529 8.889530 -2.691663 -0.349876 3.563039 3.463328 -1.845572 3.876597 -1.859610 -6.288741 -4.650939 0.372097 -11.436157 -3.906719 0.670621 12.604781 -6.258972 0.576985 2.258525 3.552348 6.402398 -5.610395 -0.571521 -4.159415 0.156534 -3.928365 11.750385 0.167674 2.687297 -1.294603 3.246620 3.168190 4.326363 -2.447132 -4.294161 -5.145855 -10.498088 -2.177951 -2.219273 -0.350435 1.434290 -9.028203 -2.280168 3.741452 8.784831 -9.707699 0.409724 5.120122 1.985356 5.772387 2.770442 -6.204354 1.973530 -0.507398 0.710724 3.949754 -2.521221 -0.656104 -1.790867 2.588706 0.490030 1.283841 0.418383 -11.878135 -1.850762 1.791592 -3.745099 0.295670 1.763860 1.876235 -4.588714 3.160503 -4.964612 5.074026 -9.826698 0.425141 -3.250798 -7.203917 -0.393450 4.640652 8.520380 2.814306 -1.761205 -1.235719 -1.762685 -8.837542 -10.040774 1.477617 -0.925552 2.446187 -1.865133 -0.121948 0.176452 -2.247440 0.558599 2.743035 -3.444928 -0.058838 -1.956611 11.374904 0.697582 -1.659466 -3.714237 -2.898475 0.503383 1.742301 3.821729 -1.979833 -9.388463 -9.585555 -4.861090 5.163580 -0.806688 -0.753352 -4.232859 -0.874898 -5.284728 1.623762 -4.314622 2.791563 -0.545035 -2.666180 -6.149410 -0.184283 -0.177342 -3.204324 -2.649889 -3.379981 -1.683633 5.819059 -0.092744 1.782244 0.840876 0.636296 -5.450828 -5.405535 2.089240 -1.256510 6.620077 6.166219 0.479877 -4.804706 -0.412667 -8.295952 6.100512 -3.914247 0.920458 -1.848555 -2.958951 8.840620 -3.748036 -2.287706 -5.165765 2.646239 -0.176142 -8.875718 9.604541 6.589802 -3.594445 -1.226024 -1.062644 0.932681 5.390361 6.258408 -3.826299 -3.152760 0.916170 -1.926982 -0.868759 0.461624 4.410231 -5.247500 3.693289 -3.927077 -2.124054 3.619402 4.675274 -0.100313 2.040626 -1.804366 -1.199081 2.048469 4.363619 3.551657 -2.150875 -5.833876 -12.312562 3.303536 -3.606143 -2.106676 -0.811650 -1.557606 -5.507631 0.493200 -1.859591 6.883040 1.727464 -4.519979 4.156961 -7.940797 -7.128347 -3.997397 2.099467 -0.325998 -2.164756 2.275818 -2.092939 1.800356 2.641166 1.043346 0.988941 -5.435917 -3.466290 -0.306482 5.070577 2.827697 -3.150604 6.752578 1.337727 -2.002740 -2.424209 0.494572 0.246699 -0.116276 -4.884007 -3.026117 -3.221171 2.634018 -2.529507 5.234719 1.144329 0.955485 3.859101 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 2.205492 -0.273791 0.599519 2.122490 0.997485 -1.685023 -0.366416 2.353494 -0.911267 -3.237237 -3.130500 0.689913 -0.491111 0.607588 2.597453 -0.166800 -0.130947 -0.290085 -5.095208 1.881841 0.245679 0.508762 -0.383421 -1.426924 1.116324 0.730782 -0.603516 1.248258 0.504335 1.240502 -2.522056 0.203045 0.906536 0.543920 1.722739 -0.317409 0.698320 -0.492936 -0.761565 -1.204096 4.120292 1.043791 0.290617 2.511324 1.453647 1.432847 -1.052677 3.301161 0.712215 -1.226239 2.245496 -3.502578 -1.278540 0.869139 -2.096251 2.579525 2.765979 0.912774 -1.596485 1.156990 0.054556 0.213133 0.496105 -2.548984 3.117394 1.459030 1.974736 0.665652 2.790945 -1.151729 -0.673495 1.377969 3.007397 0.635611 -1.194201 -2.918430 0.389745 -5.013622 1.102596 -3.849504 -0.519367 -1.439366 2.903207 -2.007349 1.239305 2.031367 -1.206501 1.599034 -2.276482 1.005331 -1.412696 -0.004379 -0.387080 2.427620 -0.743263 -0.505894 1.455056 0.637170 1.331820 3.006407 -0.675034 0.425592 -2.066088 -4.504465 -1.588695 2.483298 0.538563 -0.558862 -1.919032 -0.105614 1.152232 0.961722 -1.502077 -1.914062 1.545830 1.149053 -1.504254 1.194124 -1.727488 -1.483627 0.023097 1.358000 1.384707 -1.513559 1.045017 -2.304580 -0.206857 0.698572 2.566309 0.091670 -0.751989 -1.897098 -0.652360 0.100214 -1.072581 -1.574144 -0.146342 -0.950183 2.102574 -0.234302 1.308375 -2.880316 -0.471516 -1.672796 -0.657382 0.760928 4.239737 0.906025 1.344306 2.350938 -1.289207 -0.966893 -1.720113 -2.599497 1.316042 1.310816 1.708816 0.140125 0.185789 0.906900 0.155197 -2.310752 0.604899 -2.099879 -1.695139 -2.191441 0.902211 -0.668056 -0.434375 -3.206788 2.057747 2.371182 -2.551291 0.113282 -0.100367 -1.854160 -1.163201 -2.028770 1.431546 0.222959 0.620343 0.209480 1.469160 -2.454941 0.772229 -2.580900 0.780633 0.264643 -3.483220 -1.743454 -0.556075 -0.104920 0.372033 -0.239217 -1.377086 0.313952 0.733570 3.472809 -0.079815 1.376395 1.151694 -3.665524 -4.381620 -1.984337 0.312111 2.101926 0.207264 0.156151 -1.542305 -0.770316 -1.169848 2.595295 -2.545281 -0.351043 -1.411961 -0.463503 2.022951 -1.272492 -1.376409 -2.318481 0.546926 1.358206 -3.545929 2.517155 1.009440 -1.525592 -1.543300 -3.186750 0.926579 1.691546 4.784672 -0.953048 0.069493 0.215153 0.808051 -0.691463 -2.215650 2.620167 -0.383720 0.004468 -1.713323 -2.503888 0.117388 1.645094 0.924257 1.717378 1.297246 2.494544 -0.131032 3.214186 0.428118 -1.546853 -1.101135 -4.670981 1.103814 5.075341 -0.123132 0.608476 -2.992574 -2.746718 -0.883486 0.938260 1.949900 2.953435 2.424089 1.470606 -1.142796 -1.560181 -0.273423 1.579112 -0.891259 -1.485504 0.061550 -1.362207 0.095015 1.064126 -0.501560 0.173219 -0.191390 -4.872703 -2.245229 0.774380 0.557461 0.693948 2.441128 1.849608 -2.029539 0.234591 -0.150459 0.725674 0.098174 -0.397331 -1.395474 -1.581535 -1.017985 -0.841025 0.950635 0.835555 -0.414568 0.370783 -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.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/reservoir-sampling.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 2.745557 0.107498 -1.327408 4.921235 0.271840 -0.915227 0.108755 1.571489 -0.681598 -8.543119 -5.502291 3.504811 0.660129 0.800998 1.831845 1.768542 0.227751 0.566693 -8.253736 1.966192 3.172722 1.199699 0.438394 -0.503311 1.179520 -2.176920 1.066625 0.574016 1.376912 4.817816 -2.708566 2.526440 4.137987 -0.288097 1.982448 3.203509 -1.111862 0.211607 -1.081706 -1.026108 6.449850 2.728724 0.225639 2.739883 0.800517 4.755584 -0.508663 4.535700 0.631377 -3.672108 2.534507 -0.213344 -2.569200 0.087774 -3.039912 2.692058 3.564395 2.036560 -2.450799 1.479592 -1.283263 0.169435 1.067873 -1.147397 4.826095 2.474534 3.520103 3.133594 4.787853 -2.873678 -0.396402 2.371552 1.392083 0.381775 2.972684 -2.974057 -3.393839 -1.718513 -0.638593 -6.325747 -2.411592 -0.577427 7.900640 -4.786281 0.221732 1.311831 0.186126 4.638790 -1.935305 0.593163 -3.747456 -0.003228 -1.310074 5.288879 0.447627 0.196936 -0.523663 1.609860 1.231493 3.003806 0.084284 -3.077085 -3.109239 -6.695130 -2.185411 -1.902656 2.706174 2.609025 -6.044279 -0.430485 -0.212609 4.914906 -6.748102 -0.078570 3.085611 2.830409 2.852160 1.189510 -3.459615 -0.225556 0.889864 0.837574 2.750475 -2.158611 0.454197 -1.971938 0.553163 0.154680 1.717090 0.073425 -4.818861 -3.272106 -0.326019 -0.584956 -0.127020 1.170891 2.962705 -2.325738 3.359297 -1.898200 3.455157 -6.049267 -0.837076 -2.190025 -3.730518 -1.476322 5.326732 4.239967 3.576239 -0.915541 -2.188146 -1.816623 -5.787671 -5.378747 0.580484 0.326051 2.016897 1.863114 -0.386826 2.595513 -2.371146 0.839516 1.150909 -2.071537 -0.886451 -0.698181 3.622232 -0.743761 -0.872095 -3.556232 -1.124382 -0.406930 -1.470350 3.661963 -0.785208 -5.509400 -7.071504 -3.480770 4.048420 -1.893060 1.059224 -2.524867 0.089008 -3.328792 0.138755 -4.353066 0.366996 0.077816 -3.672144 -4.936723 0.496941 -0.817467 -1.345977 0.544782 -3.439249 -0.595198 3.943829 2.206873 1.938256 0.750486 -0.043144 -5.095041 -3.830292 0.387065 -3.134290 4.066192 2.774861 -1.260241 -3.851646 -2.004878 -4.505143 3.583980 -2.743265 1.071896 -1.689106 -0.891969 3.995028 -2.961188 -0.295018 -4.251346 1.093166 1.658584 -8.207454 4.871766 3.156653 -1.904753 -0.258536 -0.800599 1.261619 2.660472 3.571422 -2.540096 -2.489575 0.110844 -1.553466 0.141431 -1.367022 3.143977 -3.302837 0.786027 -3.168734 -1.891551 2.685551 2.480794 0.183160 1.685776 2.272276 0.157088 2.527095 3.630917 3.331425 -1.264474 -3.797732 -9.186132 2.772467 1.232224 -0.927985 -0.222721 -2.301037 -3.107236 0.739214 -0.802687 4.315847 1.280463 -0.328944 3.896637 -5.135672 -4.428499 -2.177432 -0.094298 -0.035712 -0.747509 0.257912 -1.505689 1.408852 1.633265 -0.316351 0.041440 -3.235842 -1.799583 0.280734 4.540021 1.326322 1.202941 4.651014 2.070450 -2.781432 -0.335354 0.601659 -0.373823 -1.065311 -4.421271 -1.950039 -0.477306 0.609420 -2.263473 1.332598 -0.736004 -0.409745 0.786491 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.958374 -0.112231 1.310594 0.068117 0.876917 -0.216821 0.532641 1.199583 -0.360842 -1.686964 -1.628164 -1.041738 -0.454559 -0.431639 0.910197 -0.288215 0.723957 0.115059 -2.312977 0.189041 0.652543 0.340336 0.354612 -0.241166 0.365677 -0.553355 -1.749242 0.852304 -0.027943 0.814737 -0.662817 -0.268870 0.592881 0.532735 0.389799 0.923786 0.140495 -0.384150 1.222952 0.051393 1.961287 0.171119 -0.049644 0.758439 1.208889 0.956815 -1.166863 1.490481 -0.279026 -0.350737 1.418438 -2.664829 -0.747641 0.412339 -1.009424 0.597539 2.015145 0.877173 -0.735548 0.924120 -0.511320 0.265029 -0.012883 -1.307507 0.780547 1.234184 0.115306 0.004261 1.464104 -0.627731 -0.524387 0.731116 0.821166 0.394435 -1.570530 -1.017252 1.008448 -3.164402 0.330580 -1.962338 -0.019661 -0.843593 1.824409 -0.386531 0.332413 1.492909 -0.555873 0.318266 -0.312898 -0.296081 -0.861065 0.520616 0.092132 0.858807 -0.556254 0.081258 0.385306 0.062201 0.527168 1.164119 -0.432476 0.045085 -2.582663 -2.673275 -0.849900 0.163260 0.278437 -0.602240 -1.053386 -0.032021 1.609391 -0.215703 -0.834531 -0.450682 0.643591 0.911134 -1.759986 1.244763 -1.692030 -1.143264 -0.177043 0.535828 0.138475 -0.432615 -0.030908 -2.163415 -0.171948 0.131657 0.565330 -0.721311 -0.465571 -0.518164 -0.237425 -0.435784 -0.402536 -0.464119 -0.289556 -0.184108 0.608003 -0.653740 0.725645 -1.568670 0.114292 -0.986542 -0.702730 0.097769 2.144742 0.941606 0.112258 1.392564 -0.453504 -0.584266 -0.457018 -0.719795 0.042174 -0.317011 1.827491 -0.495566 -0.060630 -0.147815 -0.051218 -0.952388 -0.884069 -0.440069 0.163272 -1.056730 1.393054 -0.565020 -0.349407 -1.344039 0.769562 1.916495 -1.578981 -0.524470 -0.651071 0.733890 -0.321928 -1.314309 0.595481 -0.196403 0.250568 -0.018041 0.944788 -1.135047 0.740974 -0.470931 -0.040820 -0.172809 -1.631964 -0.916383 0.220973 -0.359162 -0.115525 0.326853 -0.429759 -0.059068 0.617186 1.635431 0.472962 0.347514 -0.218748 -1.468755 -1.831068 -1.353768 0.324390 0.826315 0.834938 -0.004329 -0.489040 -0.319934 -0.694779 1.383736 -0.243596 -0.303872 -0.359680 -0.537206 0.953083 -0.142099 -0.159134 -1.377744 0.240036 0.342741 -2.036704 1.178991 0.343113 -1.080129 -1.299010 -2.219904 0.106993 0.571619 1.719541 0.057573 0.291552 0.423341 -0.245508 -0.221906 -1.048188 0.955664 0.206312 0.940585 -1.366615 -1.146359 0.610081 1.190900 -0.285020 1.090470 0.726057 1.838396 0.556549 1.447284 -0.118675 -0.894831 -0.252981 -2.193332 0.339646 2.637762 0.344883 0.295440 -0.975665 -1.338344 -0.415613 0.906179 1.152943 2.177611 1.149520 0.863701 0.405182 -0.735318 0.158227 0.592848 0.293956 -1.249613 -0.198343 -0.430533 -0.111319 0.298758 0.185427 1.342463 -1.006911 -2.890874 -0.721700 0.995398 0.552048 -0.203418 0.984646 0.176513 -0.685773 0.193452 0.067542 1.185947 0.823816 0.552144 -0.492851 -0.925438 -0.365886 -0.249249 1.102869 0.435140 0.216299 0.664138 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 1.241190 -0.602238 -0.015318 0.989100 0.531218 -1.101115 0.451052 0.771620 -0.012596 -1.786016 -0.947651 0.610244 -0.022711 -0.909470 0.379419 0.283203 0.094671 0.302101 -1.708044 0.984951 0.349976 0.297359 -0.659418 -0.622710 0.136759 -0.591619 -0.406308 0.832750 -0.152634 1.035553 -0.652925 -0.094949 0.803742 0.056232 0.443318 1.192805 0.494878 -0.045145 0.563842 0.471567 1.973014 0.705230 -0.143094 0.771246 1.117806 1.199308 -0.385944 2.214945 -0.179960 -0.421369 1.197406 -0.633079 -0.851764 -0.129870 -1.247648 0.763599 1.712658 0.461777 -0.864094 0.880835 -0.720577 0.059425 0.458340 0.020086 1.472106 1.243168 0.536254 0.576372 2.287201 -0.539478 -0.364324 0.889944 1.449772 0.134073 0.681712 -0.787988 -0.835875 -1.701955 0.034448 -1.274689 -0.149260 -0.431279 2.031919 -1.088705 0.105870 1.093504 0.489356 1.002715 -0.913245 -0.247784 -0.940461 0.396986 -0.362708 2.431971 -0.255348 0.718457 -0.406276 0.410830 0.461248 1.054343 -0.197231 -0.792789 -1.513121 -2.715569 -1.128635 -0.408800 -0.420119 -0.469939 -1.982969 -0.306394 0.996489 0.837143 -1.725090 -0.114776 0.922192 0.392159 1.050925 0.578689 -1.206477 -0.070430 0.025033 0.204711 0.115145 -0.416950 -0.369659 -1.307150 0.512054 0.248258 0.214343 -0.469465 -1.558223 -0.079610 0.000887 -0.072575 -0.053576 -0.141180 -0.061220 -1.470979 0.515981 -0.885571 0.855928 -2.019665 -0.443128 -0.898981 -1.340232 0.022571 2.024222 0.663559 1.234591 0.252817 -0.684496 -0.738793 -1.486272 -2.379873 0.198849 -0.751221 0.716898 -0.384836 0.016371 -0.382679 -0.215568 -0.574834 0.357432 -0.809832 0.050485 -0.681531 1.596084 -0.425043 -0.261555 -1.137032 -0.223336 1.172865 0.257867 0.291402 -0.505224 -1.760378 -1.233040 -1.144181 0.838516 -0.139159 0.112764 -0.483813 0.009642 -1.576854 0.556505 -0.653816 0.474800 -0.343522 -0.989946 -1.189137 0.045748 -0.225908 -0.015298 -0.363142 -0.858506 -0.005252 0.295616 0.674816 0.317251 0.383856 -0.125747 -1.884953 -1.835133 -0.306031 0.312297 1.662970 0.802026 0.448904 -0.310276 -0.203192 -1.627752 1.155866 -1.750554 -0.095190 0.288477 -0.728151 1.716861 -0.626686 -0.733034 -1.446284 0.573302 -0.107471 -1.052792 2.172019 1.124296 -1.197530 -0.768888 -0.894930 0.189595 0.963142 1.902430 -0.734230 -0.328115 0.572907 -0.003660 -0.363330 -0.464543 0.966764 -0.584785 1.308290 -1.222963 -0.892343 0.432861 1.490989 -0.325431 0.249374 -0.306666 0.203373 -0.146043 1.332704 0.371266 -0.166651 -0.995225 -2.587090 0.407850 -0.056200 -0.236690 0.371004 -1.061267 -1.034966 0.102939 0.270876 1.568073 0.812271 0.266222 0.915441 -1.309496 -1.394942 -0.136290 0.250796 0.173767 -0.890424 0.691882 -0.715788 -0.017768 0.150721 0.430191 0.190212 -0.897248 -1.159165 -0.238266 0.838665 0.439094 -0.774240 1.325055 0.217812 -0.458879 -0.166808 -0.022518 0.548350 0.400096 -0.433750 -0.444528 -0.969994 0.264270 -0.448412 1.667995 0.059588 0.436862 0.696305 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 3.382730 -0.583020 -0.708526 2.961683 0.938598 -2.982341 0.635628 2.025443 -0.594221 -5.021839 -3.289071 3.949587 0.031548 -1.957329 0.742996 1.010781 0.066067 0.274625 -6.510335 3.071128 1.175799 0.487267 -1.751795 -1.567712 0.575234 -1.767640 0.466998 2.091886 -0.390153 2.748468 -2.003628 0.544516 2.170386 0.370656 2.232284 2.947532 -0.729064 -0.559988 0.886392 0.287679 5.173881 2.855913 -0.261300 2.095731 2.785241 3.273150 -0.421269 4.134069 0.697032 -1.393914 1.759683 1.065972 -2.789166 -0.109671 -3.230816 1.669313 2.869193 0.050382 -2.131900 1.774717 -1.758565 -0.286688 1.170219 0.047438 4.621754 1.956902 2.269121 1.626494 5.432620 -1.231062 -0.732182 2.414211 3.848416 0.536475 2.257209 -1.513792 -3.409480 -2.334125 0.056247 -5.147792 -1.112236 -0.828202 5.758956 -2.843248 0.132149 1.226807 1.271878 3.219157 -2.552893 -0.700157 -2.581105 0.725280 -1.550171 5.921771 -0.288099 1.785340 -0.582696 1.262438 1.166933 2.924700 -1.084465 -2.583052 -2.290104 -7.013308 -1.605828 -1.228649 -0.446757 -0.613431 -4.951835 -0.342113 1.092615 4.625832 -4.471600 -0.628905 2.455088 0.243672 2.121577 0.673609 -2.712803 -0.133243 0.063781 0.987405 1.094839 -0.975067 -0.851306 -1.799594 1.463675 0.399836 1.177778 -0.341937 -4.510932 -0.971720 0.637185 -0.225329 -0.237835 -0.026461 0.468288 -2.992148 1.542045 -1.931105 2.434512 -4.844342 -0.455090 -2.636630 -2.626842 -0.052957 3.288163 3.422454 2.837724 0.079009 -0.142024 -1.285112 -4.474320 -5.799105 1.002672 -1.705166 1.114359 -1.030117 0.168754 -0.178134 -0.866242 -1.011375 1.375323 -2.324399 -0.153740 -1.925956 4.230489 -0.299970 -0.537575 -2.172661 -1.171671 1.477210 0.736769 1.294936 -1.173673 -6.335125 -4.106292 -3.026978 2.359566 -0.539116 -0.032040 -1.766391 -0.087162 -2.566381 0.947655 -2.064046 0.958850 -0.961090 -2.066449 -2.996669 -0.619991 -0.491955 -0.516782 -1.558666 -2.264295 -0.236386 2.383867 1.299341 0.922590 0.992178 -0.344658 -3.915696 -3.582825 0.325820 0.326894 3.996734 2.658459 0.439576 -2.642306 -0.591370 -4.394242 3.091440 -4.017529 0.204087 0.085409 -2.387245 4.562658 -1.776531 -1.346484 -2.472440 1.554279 -0.258457 -5.048662 5.351298 3.515087 -2.826685 -1.504074 -1.569015 0.645650 2.680951 4.508121 -2.166726 -0.978730 0.763805 -0.385488 -0.767254 -0.328213 2.826726 -1.911347 2.782684 -2.995682 -2.290989 1.667577 2.972209 -0.219497 0.512589 -1.166388 0.195733 0.878545 3.174334 1.428546 -0.149523 -3.394825 -7.616655 1.160269 -0.279671 -0.793766 1.080642 -1.741498 -3.398634 -0.217480 -1.161890 4.197860 0.021487 -0.848772 2.250968 -3.646809 -3.711448 -1.443838 0.371559 -0.197146 -1.304368 2.259633 -1.804742 -0.028697 0.373029 0.931005 -0.101757 -2.129885 -1.999222 -0.113699 1.981404 2.119651 -1.550811 3.326303 1.051749 -1.473141 -1.008306 0.030146 0.513857 0.278437 -2.796016 -1.678680 -2.414997 0.823636 -1.062061 3.392257 0.676154 1.816151 1.155072 -PE-benchmarks/subset-sum-problem.cpp__main = 0.674748 0.114445 0.450089 0.716410 0.150149 -0.325297 0.374426 0.921833 -0.002878 -2.138700 -1.522256 0.745228 -0.101833 0.048677 0.481958 0.004670 0.188791 0.632239 -2.436736 0.356614 0.895539 0.727358 0.569503 -0.497633 0.358979 -0.349048 -0.548330 0.370737 0.428445 1.321388 -0.773207 0.072825 1.051409 0.208705 0.228565 1.057482 0.224886 -0.096850 0.124009 -0.423663 1.724775 0.615496 -0.073192 1.048198 0.429189 1.251779 -0.268262 0.806013 0.492718 -0.889781 0.449976 -1.102217 -0.972120 -0.106597 -0.700302 0.781260 1.177945 0.927424 -0.603396 0.753373 0.129810 0.011718 0.220604 -1.096408 0.775510 0.915134 0.233237 0.587947 1.450539 -0.909980 -0.260491 0.477217 0.617285 0.284293 0.102062 -0.855582 -0.244080 -1.776007 -0.129136 -2.196041 -0.645136 -0.376433 1.832418 -1.252933 0.615331 0.971778 -0.335802 0.854169 -0.213583 -0.150134 -0.983633 0.112938 0.070866 1.138831 0.026375 -0.129364 0.036417 0.308695 0.569271 0.935273 0.120336 -0.523142 -1.446952 -2.161957 -0.320698 -0.340232 0.390117 0.382434 -1.266670 -0.248474 0.711944 1.226843 -1.739673 -0.325100 0.960443 0.797419 -0.760772 -0.017257 -0.883988 -0.108368 -0.013217 0.093733 0.477898 -1.030444 -0.133188 -0.388967 -0.335603 -0.017939 0.506814 -0.159847 -0.832019 -1.129544 -0.148999 0.114888 -0.129921 -0.003043 0.291466 -0.352976 0.752505 -0.776443 0.899585 -1.307945 0.043529 -0.308257 -0.480692 -0.368418 1.688468 0.593084 0.514203 0.153186 -0.495097 -0.642128 -0.836106 -1.261351 0.737895 0.070057 1.191975 0.320045 -0.141101 0.296615 -0.464863 -0.306663 -0.363183 -0.537620 -0.009270 -0.239472 0.858218 -0.466326 -0.223958 -1.244026 0.240322 0.858741 -0.673280 0.145238 -0.541227 -0.338049 -1.126135 -1.168618 1.077909 -0.403192 0.199873 -0.387544 0.307467 -0.673100 0.272889 -0.948797 0.199501 0.092116 -1.321115 -1.386401 0.181338 -0.375841 -0.242645 0.490806 -0.815098 -0.129431 0.423897 0.872622 0.308745 0.125962 0.185490 -1.448397 -1.227133 -0.571269 -0.487163 0.791375 0.615303 0.054962 -1.375149 -0.437806 -0.792971 1.272001 -0.859246 0.193311 -0.688434 -0.213599 1.292472 -0.444847 -0.056298 -1.357542 0.488074 0.760301 -2.148631 1.208827 0.636543 -0.570153 -0.434697 -0.708398 0.052909 0.977277 1.356361 -0.706048 -0.730169 0.456443 -0.680717 -0.017985 -0.889749 0.932668 -0.451739 0.689879 -0.952993 -0.569916 0.523349 0.790128 -0.015691 1.027057 0.970806 0.799114 0.400662 1.168458 0.608455 -0.462994 -0.904971 -2.006858 0.932950 1.637366 0.392310 0.287533 -0.985248 -0.935576 0.390582 0.307728 1.105163 0.894315 0.350370 1.032478 -0.854965 -1.077677 -0.049974 0.076575 0.404517 -0.449333 0.234371 -0.272095 0.296615 0.516126 -0.115033 0.552649 -0.681885 -1.300415 -0.068914 1.234477 0.608074 0.210227 1.319626 0.190115 -1.055928 0.301701 -0.206153 0.421154 -0.359357 -0.431075 -0.308298 -0.267145 0.141577 -0.599419 0.877275 -0.142357 -0.336931 0.225966 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.757252 0.104959 -1.438893 5.277944 -0.185007 -0.452669 -0.008886 1.532621 -1.030832 -9.225694 -6.153875 4.443359 0.580154 1.849200 1.775366 1.888786 0.372245 0.097254 -9.686817 1.896727 3.481370 0.844870 1.127199 0.203698 1.389136 -2.499297 1.854668 0.373642 1.635649 5.174481 -2.838373 3.176652 4.495694 -0.314158 2.353292 3.368642 -1.998158 0.179610 -1.719803 -1.669102 6.422557 2.920786 0.658641 2.695831 -0.049701 5.072625 -0.185411 4.849699 2.579283 -4.282049 2.801850 -0.474924 -3.115960 0.438212 -3.043496 2.350338 2.294967 1.920627 -2.064388 1.296810 -1.637719 0.014393 0.881126 -1.682123 5.183778 1.848429 3.907594 3.265692 4.161286 -3.262816 -0.388459 2.805117 0.904581 0.884198 2.722243 -3.559361 -3.811082 -1.180536 -0.627702 -6.893840 -3.258445 -0.573911 8.601690 -4.945932 -0.139031 0.332877 -0.633741 4.919009 -1.792316 1.184433 -4.136732 -0.217908 -0.914230 4.210950 0.792687 -0.149499 0.090933 1.193975 1.232801 3.303578 -0.359578 -3.242565 -2.801913 -6.509147 -1.206510 -1.951574 3.665053 3.567155 -5.919377 -0.130169 -1.508686 5.906461 -6.835409 -0.255043 3.200045 2.960249 2.546691 2.205201 -3.069618 -0.713472 1.636923 1.345860 4.086743 -2.664458 0.867183 -1.727696 0.619509 -0.177330 2.238504 0.355737 -4.713153 -4.234634 -0.147790 -0.514406 0.139781 1.347249 3.537412 -1.207716 3.797012 -1.541356 3.613190 -5.789023 -0.797684 -2.294631 -3.363724 -1.797120 6.658059 5.635749 4.007257 -1.161463 -1.811249 -1.582533 -5.978312 -4.887441 0.572854 0.622015 2.111771 2.533357 -0.398156 3.581868 -2.613284 1.385679 0.462494 -1.914362 -1.105952 -0.402754 1.776014 -0.097020 -0.740491 -3.964592 -1.090747 -1.618273 -2.197256 4.214903 -0.592871 -7.409220 -7.506449 -3.870829 4.374522 -2.114593 1.051114 -2.715143 0.025555 -2.297126 -0.516197 -4.791459 -0.283286 0.560113 -4.090786 -5.188005 0.502007 -0.894571 -1.541034 0.872047 -3.342527 -1.066830 4.975718 2.956875 2.425382 1.029561 -0.254702 -4.677531 -3.219697 0.700063 -4.107162 3.909374 2.848619 -1.961810 -4.822422 -2.397759 -4.475155 3.688538 -2.487344 1.361933 -2.431365 -0.847785 3.949998 -2.966092 0.851821 -3.809050 1.231903 2.357268 -11.486354 4.107139 3.584117 -1.486350 -0.057243 -0.382268 1.108627 2.961050 3.219774 -2.278233 -2.622802 -0.130728 -1.672738 0.455763 -1.025116 3.246763 -3.482406 -0.336377 -2.972013 -1.879647 3.035809 1.773629 0.649040 1.292078 2.913778 0.692462 3.857161 3.491860 3.558506 -1.633780 -4.146870 -11.257731 3.345802 3.702726 -1.218437 0.407371 -2.681341 -3.264765 1.161425 -2.363822 4.326393 0.600071 -0.567143 4.105762 -4.822704 -4.386844 -2.912277 -0.473208 -0.369514 -0.137587 0.158416 -1.560313 1.721430 1.825722 -0.843861 -0.158620 -2.854032 -1.525039 0.636065 4.666234 1.922443 2.606302 4.723666 2.330692 -2.966125 -0.845932 1.022211 -1.034491 -1.552542 -5.432760 -2.060469 -0.084147 0.689847 -2.210582 0.245971 -0.533359 -0.633310 0.586260 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 10.701603 3.190641 -13.085487 20.910565 -3.107186 -6.201914 1.006852 4.760007 -7.239033 -32.343543 -20.771697 11.174960 6.378703 2.927640 5.557301 12.209479 -5.744043 1.480600 -24.920358 8.880114 13.400539 2.695183 -1.249590 -1.523254 2.767494 -8.781045 0.898989 0.102668 2.946932 19.348652 -6.462508 12.127289 16.731132 -4.330889 2.908769 12.748949 -5.959074 4.033907 -2.458590 1.086540 19.513628 10.608817 0.592479 4.759169 -2.340515 17.711526 -3.718034 21.309972 -14.615000 -14.771140 14.182126 1.592067 -10.849765 0.171525 -7.493676 8.369366 14.571885 9.234957 -4.437706 5.451644 -12.644706 -0.552015 5.483701 0.455242 20.678039 13.236019 15.787215 14.340963 19.010956 -10.164966 -0.149278 11.135712 -0.970910 -5.290865 14.156508 -10.817311 -16.754519 3.328567 -2.331863 -22.727439 -12.320371 1.577304 39.759649 -19.705783 -4.828945 1.876284 7.629919 20.169352 -10.861436 6.031470 -10.849807 -1.041989 -10.870423 25.157602 2.735480 4.223953 -7.335796 5.958076 6.157290 9.619963 -5.037816 -10.187255 -14.788643 -19.042718 -9.234621 -6.768844 9.193644 14.854745 -28.210290 -6.030077 -2.119141 18.698942 -29.409315 3.457569 14.206356 14.077044 26.878920 16.706551 -20.103426 3.527381 6.051934 1.067629 13.564114 -5.105779 2.799377 -8.799732 5.813467 -1.445100 2.182420 0.796693 -32.817101 -10.099138 -1.031184 -11.530776 5.122531 8.309599 14.360273 -10.109053 12.098224 -8.339169 12.228648 -30.631080 -4.709828 -7.358163 -26.080705 -4.609010 18.198651 23.691469 15.300933 -9.655817 -10.366516 -7.767095 -27.218458 -21.812191 -2.957468 0.968667 6.063826 5.618423 -1.362690 9.422666 -9.019142 9.348398 9.134913 -6.056281 -2.300236 -1.067693 26.988296 0.839348 -4.196909 -13.717358 -10.854629 -10.921653 -0.707980 19.287093 0.173048 -25.122466 -33.396631 -12.487716 15.804968 -5.453465 2.304397 -14.531956 -2.761601 -18.149854 -1.551045 -16.110678 2.888340 4.635837 -10.775274 -18.762010 3.174396 1.029177 -12.845714 -1.423057 -11.130280 -6.169192 22.162894 2.569056 9.453929 2.464649 -1.709482 -15.773818 -13.620783 7.170045 -14.507013 16.743660 17.239687 -3.819151 -11.503203 -5.473053 -23.250482 13.202118 -6.740979 3.845873 -7.558152 2.358448 18.167253 -14.873894 -0.878013 -17.753156 3.196746 2.081666 -35.310808 19.567796 13.609280 -3.860545 1.986744 2.086092 3.675010 11.113907 9.371662 -8.346036 -10.777312 -0.356734 -4.515686 0.200409 -0.544764 10.633484 -19.180198 1.079630 -7.217152 -2.974787 10.116716 10.298734 -0.361003 4.101102 3.285638 -5.575207 11.445167 8.120828 15.030790 -11.304870 -13.110625 -37.409606 10.372457 -10.885843 -11.313323 -4.917950 -5.585171 -10.119145 6.641426 -7.769209 17.197333 1.417519 -8.105523 13.706008 -23.239162 -18.205121 -11.158900 3.590866 -1.212541 -2.450144 -1.964302 -4.591644 7.997674 11.427556 -2.849210 0.388751 -18.946692 -3.911549 0.107642 21.856035 0.920140 3.708884 18.521521 7.589535 -4.195101 -6.331653 5.026278 -2.713527 -4.031050 -19.977946 -7.214623 -0.845882 4.437714 -8.348132 5.237659 -2.810509 -5.537681 9.522385 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 1.233541 0.004938 -0.228253 2.395321 0.178895 -0.288474 0.171519 0.851461 -0.311848 -4.208744 -2.920688 1.825932 0.158998 0.619759 0.767917 0.656718 0.307725 0.299889 -4.697676 0.855054 1.543625 0.522430 0.623671 -0.269408 0.566999 -1.203478 0.945232 0.580780 0.651613 2.385179 -1.300511 1.189399 2.053095 0.133532 1.195205 1.780974 -0.679633 -0.091605 -0.800158 -0.782683 3.182747 1.524257 0.028565 1.387056 0.256056 2.465301 0.382097 1.474233 1.127878 -1.786593 0.753186 -0.211854 -1.572705 -0.164426 -1.669302 1.072563 1.332770 0.999818 -1.092353 0.815245 -0.544239 -0.079462 0.488614 -0.929850 2.373452 0.590226 1.761943 1.466225 2.180176 -1.718356 -0.301677 1.328073 0.858364 0.557386 1.148287 -1.594708 -1.825346 -1.246489 -0.328937 -3.703416 -1.355274 -0.268687 3.611812 -2.151540 0.117221 0.411551 -0.550294 2.147102 -0.862442 0.139860 -2.046369 -0.025315 -0.369933 2.065918 0.423557 -0.184761 0.269993 0.742285 0.717876 1.690127 0.015411 -1.636254 -1.169214 -3.650754 -0.403420 -0.988936 1.473248 1.243211 -2.457872 -0.150189 -0.481173 2.902599 -3.122390 -0.292526 1.596239 1.272079 0.456883 -0.329746 -1.186952 -0.240128 0.593186 0.657196 1.857372 -1.521569 0.274531 -0.408020 0.356924 -0.042473 1.111296 0.192638 -1.724532 -2.060548 -0.019679 0.073956 -0.024983 0.408392 1.324356 -0.641305 1.657965 -0.979254 1.934314 -2.605035 0.115237 -1.045206 -1.254624 -0.812870 2.761616 2.237760 1.582583 -0.399098 -0.648410 -0.541375 -2.498384 -2.606020 0.694908 0.423428 1.024825 0.958229 -0.237778 1.461692 -1.207944 0.345691 0.304989 -0.962112 -0.479598 -0.147517 0.798769 -0.025329 -0.420223 -1.734599 -0.206202 -0.113419 -0.718800 1.717165 -0.567840 -3.121615 -3.133519 -1.943294 2.048307 -0.997196 0.273673 -1.138921 -0.062452 -1.099090 0.183447 -2.183356 0.099249 0.145944 -2.029146 -2.488383 0.101925 -0.577166 -0.478346 0.568058 -1.594367 -0.367353 1.971348 1.280162 0.893915 0.437225 0.089450 -2.192185 -1.555201 0.130463 -1.507100 2.049104 1.096298 -0.669348 -2.539948 -1.024893 -1.834349 1.944411 -0.912603 0.619896 -1.157027 -0.638875 1.947517 -1.266640 0.421961 -1.716335 0.740490 1.180315 -4.999790 2.138843 1.989244 -0.884960 -0.340848 -0.318297 0.405725 1.342408 1.849633 -1.295430 -1.294014 0.175854 -0.823071 0.112811 -0.785600 1.502663 -1.275521 0.056432 -1.687689 -1.120801 1.331060 0.930442 0.245305 0.836109 1.368759 0.567491 1.258871 1.975098 1.530783 -0.448703 -2.139500 -4.889608 1.567020 1.893047 -0.222635 0.395002 -1.119970 -1.667946 0.498274 -0.896282 2.136248 0.863385 -0.505039 2.030459 -2.044095 -2.091068 -1.305144 -0.326573 0.072847 -0.255340 0.399275 -0.919446 0.686588 0.516503 -0.361454 -0.065334 -1.157699 -0.743733 0.314255 2.124598 1.114019 0.907680 2.300425 0.891123 -1.525000 -0.328797 0.362365 -0.454433 -0.431638 -2.236407 -1.040469 -0.204214 0.458454 -0.974745 0.381485 -0.263771 -0.041908 0.283330 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 2.732751 0.596047 -1.740218 8.357472 -0.748235 -1.542842 0.538160 1.976767 -1.823637 -12.891266 -8.508068 6.556872 1.036178 2.123327 1.754606 1.810861 -0.451516 0.673081 -14.760714 2.763775 5.204531 1.976939 1.660118 -1.326621 1.572994 -3.420759 4.392536 2.333983 1.940516 7.649315 -3.378274 3.534978 6.528800 -0.322694 3.305454 5.733392 -2.458512 1.278820 -3.291185 -1.713914 9.096913 4.993823 -0.270264 3.784253 0.361824 7.744116 2.314861 2.864847 2.363684 -6.060737 1.879007 3.496492 -4.455819 -2.166309 -4.064609 2.726046 4.913623 3.897742 -3.376629 2.449039 -1.739548 -1.157424 1.756065 -0.884057 7.279091 1.914578 5.923047 5.011875 6.501148 -5.452610 -1.025251 3.941492 1.715122 0.347014 4.586102 -5.169529 -8.037231 -1.926466 -1.414781 -12.417961 -5.636614 0.830534 10.664406 -6.935090 0.089767 0.128667 -1.090914 6.594399 -2.935539 0.096033 -5.645019 -1.116026 -2.504239 8.355844 1.718653 -0.767597 1.508093 3.008744 3.175888 5.550396 -0.084430 -5.425067 -1.810648 -10.587059 -0.947862 -3.337434 4.980625 5.013784 -7.328320 -1.873478 -2.176994 8.023205 -10.317958 -0.477635 5.779248 4.582978 2.951529 -3.089208 -3.768083 1.039769 1.754763 0.789121 7.208429 -4.389829 0.871838 1.094258 1.338422 -0.226478 2.505810 1.333083 -6.877439 -6.733038 -0.350138 -0.392256 0.233893 1.269630 4.087746 -1.672096 5.164827 -3.569144 6.642811 -8.910571 1.232626 -2.567638 -4.030671 -2.516987 4.351037 6.439451 4.081001 -3.883615 -2.463638 -0.928192 -8.227599 -8.415668 2.596440 2.608010 2.324256 2.848896 -1.153093 5.019109 -4.083597 1.897171 2.458785 -2.230073 -1.313228 0.211318 3.921707 0.875980 -1.412937 -4.212477 -1.312287 -2.819773 -0.514644 6.630771 -1.652997 -10.471093 -10.884852 -5.402293 6.605824 -2.674925 -0.368109 -3.840730 -1.532714 -3.976149 0.683639 -7.506189 0.914797 0.359852 -5.105102 -7.615178 0.465671 -1.445735 -1.483910 1.322544 -4.989315 -2.260096 6.194061 2.401186 3.062347 0.771634 1.315693 -6.300201 -3.799004 1.953385 -5.059313 5.553962 3.385997 -1.606718 -7.668764 -2.600754 -5.912626 4.831949 -0.891377 2.063724 -3.820671 -1.786104 6.993770 -4.010277 1.774082 -4.844678 1.781407 4.199892 -14.144397 7.530325 6.308893 -1.462462 -0.213536 2.138550 0.170868 4.375780 4.186485 -4.956904 -5.580989 0.267126 -3.204895 0.709280 -1.434671 4.365468 -4.733717 -0.032420 -4.350201 -2.752931 3.990782 2.538308 1.251093 2.955958 3.389897 -0.588510 2.979641 5.587426 5.230486 -1.076828 -6.344106 -13.982386 5.642039 1.409078 -1.299960 -0.080814 -2.027175 -5.355534 2.377897 -1.673010 6.396460 2.021947 -4.303405 6.167296 -7.522514 -6.792606 -5.294096 -1.220610 0.273603 -0.302605 0.156131 -2.466073 3.200402 2.294326 -2.033408 -0.349970 -3.225078 -0.408500 0.870594 6.506919 2.707787 2.630463 7.446058 2.118995 -4.675877 -1.582764 1.410053 -2.277896 -1.626167 -7.269596 -3.239020 -0.542143 2.451070 -2.804557 0.347708 -1.373704 -0.648260 1.619903 -PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.523315 0.177890 0.656996 0.236445 0.440274 -0.576043 0.507942 0.827272 -0.118231 -1.135591 -0.737588 -0.091927 -0.179318 -0.453936 0.224366 -0.234100 0.108996 0.705064 -1.118946 0.310605 0.476956 0.678265 0.193207 -0.733349 0.159326 -0.073454 -0.953350 0.472370 0.148856 0.764320 -0.453446 -0.509501 0.523464 0.273703 -0.014856 0.854280 0.821013 0.015168 0.557997 -0.026951 1.177330 0.344866 -0.103736 0.712672 0.711551 0.720692 -0.267953 0.615610 -0.546542 -0.360422 0.190867 -1.242306 -0.613709 -0.196197 -0.455329 0.642791 1.308180 1.015149 -0.475497 0.774340 -0.036747 -0.012830 0.191748 -0.748823 0.206983 0.927559 -0.372330 0.184091 1.431154 -0.556444 -0.389537 0.405385 0.744229 0.068474 -0.168043 -0.490994 0.021222 -1.870984 -0.067014 -1.464564 -0.147979 -0.203780 1.449450 -0.716422 0.651235 1.229200 0.000000 0.216713 -0.249351 -0.466798 -0.521487 0.274771 -0.231131 1.264582 -0.087643 0.105624 -0.052019 0.194143 0.611876 0.746017 -0.097690 -0.107425 -1.324789 -1.800799 -0.358188 -0.111012 -0.246016 -0.269901 -0.715477 -0.512014 1.152537 0.597920 -1.098144 -0.232892 0.742597 0.532656 -0.750007 -0.032175 -0.802984 0.057300 -0.274924 -0.258299 0.005300 -0.697930 -0.428628 -0.352617 -0.334105 -0.080499 0.134707 -0.369555 -0.653640 -0.407938 -0.294862 -0.202992 -0.122555 -0.354185 -0.334820 -0.651834 0.322409 -0.772670 0.502157 -0.910247 0.123695 -0.072247 -0.802812 -0.047892 1.168326 -0.056704 0.184373 0.224736 -0.371166 -0.696598 -0.263611 -0.961400 0.642547 -0.143552 1.049367 -0.168496 -0.048076 -0.370970 -0.186547 -0.697627 -0.168412 -0.292987 0.224226 -0.256991 1.434515 -0.599515 -0.150063 -1.066254 0.314165 1.261575 -0.164692 -0.422997 -0.646293 0.268854 -0.315391 -0.835300 0.570905 -0.068251 0.018178 -0.128202 0.244629 -0.608878 0.503927 -0.402004 0.439081 -0.079755 -0.824047 -0.825852 0.156455 -0.293259 -0.211255 0.261426 -0.356840 -0.040808 0.018127 0.455593 0.006652 -0.018471 0.238804 -1.152778 -1.107208 -0.658612 0.285958 0.452254 0.470158 0.485502 -0.603808 -0.081102 -0.559567 0.869891 -0.475039 -0.169009 -0.297223 -0.074976 1.157330 -0.142753 -0.156707 -1.155299 0.339667 0.359839 -0.760501 1.061523 0.386892 -0.543660 -0.645555 -0.747962 -0.185280 0.747092 1.242561 -0.500597 -0.438182 0.647732 -0.560490 -0.179385 -0.756491 0.556912 -0.147585 1.048554 -0.745497 -0.486213 0.080768 0.910373 -0.250751 0.766559 0.391557 0.621776 -0.079930 0.976205 0.191304 -0.297482 -0.519626 -0.964107 0.526349 0.697556 0.445717 0.048764 -0.493592 -0.689932 0.298198 0.726094 0.792040 1.255035 0.303293 0.618489 -0.438068 -0.715643 0.446565 0.329435 0.578715 -0.842529 0.166307 -0.347316 0.105444 0.223940 0.047480 0.679701 -0.499405 -1.281023 -0.347565 0.733546 0.356672 -0.354217 0.923689 -0.145685 -0.563686 0.422821 -0.205332 0.906275 0.010591 0.277133 -0.116541 -0.558293 0.075497 -0.251615 1.268450 -0.046141 -0.229028 0.641268 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 5.087458 1.528679 -5.652828 13.741558 -1.142343 -1.158497 -0.201534 1.771044 -3.295792 -20.657213 -12.659777 10.402858 2.800924 4.055798 3.168787 4.262874 -1.016676 0.269341 -19.443736 3.927516 8.053377 2.468857 0.699878 0.837408 2.033583 -5.065577 5.619618 1.416730 3.353476 11.929888 -5.083250 8.170023 10.578679 -1.928967 3.273122 7.188688 -3.060091 1.426932 -5.222276 -2.519084 13.600370 5.665142 1.425496 5.663521 -0.891126 11.539110 0.649081 10.668267 1.924269 -9.941456 5.412103 3.753482 -5.402339 -1.165833 -5.694536 4.941482 5.752447 5.129636 -4.548128 2.521080 -3.872400 -0.901868 2.857776 -0.572318 11.478282 5.470687 9.988617 8.004007 9.989102 -7.335421 -0.519252 5.937380 0.156226 0.468909 8.231029 -6.370279 -10.470795 0.850061 -2.159487 -14.878564 -8.720908 0.124176 19.327611 -11.248697 -1.653186 -0.252646 1.056165 11.736147 -5.121706 3.167750 -8.877077 -1.600899 -3.520408 11.436555 2.008289 -0.311674 -1.328210 3.071052 2.903958 6.418707 -0.622434 -8.049337 -4.463681 -12.244731 -4.581398 -4.954420 7.035636 8.837832 -14.814759 -1.567030 -4.859719 12.754483 -16.667630 -0.432033 7.419265 7.324618 11.260947 5.748740 -8.329967 0.358971 4.420890 1.203714 9.734465 -4.146325 2.908185 -2.585651 1.672819 -0.157742 2.401665 1.843855 -13.544565 -8.921250 -0.255836 -2.878530 1.122517 3.522620 8.739700 -3.628722 8.227528 -3.944130 8.437084 -14.481833 -2.974549 -3.349392 -10.158140 -4.257591 10.795139 12.793081 9.237341 -5.293040 -6.107606 -3.224157 -14.649694 -12.163060 -0.130559 1.889391 2.631801 5.757632 -1.353157 8.189281 -6.618311 4.526981 5.135787 -3.075098 -2.806982 0.251079 7.005724 0.120334 -1.292752 -7.225595 -4.024230 -7.004839 -1.771083 12.346188 -0.668649 -17.671802 -19.354361 -6.658358 9.995336 -4.496801 1.080943 -7.332182 -2.269276 -7.214373 -1.372293 -10.674674 -1.230278 1.151889 -8.283991 -11.805611 2.342648 -1.448050 -5.544741 1.398228 -8.170086 -2.873533 12.257371 4.402481 6.030089 0.770376 -0.885404 -9.877972 -6.627301 3.362658 -9.653791 9.700861 6.874392 -3.673481 -9.902189 -4.903167 -11.334591 7.581450 -4.692095 3.292178 -3.999982 -0.908600 8.921996 -8.177756 0.834906 -8.008035 1.880598 4.488390 -22.905855 10.842853 8.063498 -2.639436 1.008494 2.353694 2.349852 6.332828 5.016030 -6.809962 -7.564407 -0.807654 -2.560016 1.078994 -1.635725 5.954578 -9.421186 -1.343998 -5.911174 -3.606822 6.794409 4.456971 0.782374 1.391377 5.127211 -2.416041 7.430751 6.948308 8.850566 -3.307399 -7.538742 -22.211980 7.493253 -0.214238 -4.525595 -1.384800 -4.813961 -5.958156 3.278851 -6.143685 9.407951 -1.437648 -4.164254 9.184897 -13.510547 -10.329324 -7.680460 -1.006711 -0.922659 0.924533 0.575343 -3.259024 5.069391 4.703836 -2.544406 -2.200320 -7.995267 -0.004545 1.595502 10.317260 1.460925 4.789476 11.119830 4.879807 -5.317184 -2.077572 2.426086 -3.182065 -4.105727 -13.837853 -4.122540 0.760199 2.671856 -5.090589 0.300310 -2.788536 -2.251359 2.158616 -PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.101070 0.117789 0.122536 1.436263 0.321545 -0.623416 0.380700 1.034291 -0.283109 -2.994072 -2.125581 0.987544 0.006290 -0.039471 0.620189 0.274325 0.201775 0.539493 -3.226760 0.754374 1.115898 0.644967 0.239675 -0.541793 0.397381 -0.701956 -0.281842 0.577596 0.402390 1.758612 -0.982492 0.343172 1.424004 0.150835 0.642283 1.493237 0.037320 -0.014710 0.091858 -0.340859 2.479524 1.076916 -0.025529 1.187485 0.668914 1.772317 -0.202535 1.498462 0.090986 -1.198177 0.764710 -0.899481 -1.250445 -0.106162 -1.179197 0.997039 1.660332 1.077586 -0.917614 0.944129 -0.442734 -0.040509 0.392091 -0.925980 1.520435 1.060383 0.769917 0.908677 2.124984 -1.162580 -0.390598 1.001384 0.961438 0.291044 0.472417 -1.165508 -0.958858 -1.715685 -0.170934 -2.887945 -0.810134 -0.319246 3.092296 -1.663220 0.416041 0.978850 -0.175929 1.339705 -0.708986 -0.189310 -1.375155 0.153366 -0.450279 2.012161 0.116723 0.081941 0.024576 0.526539 0.751980 1.382711 -0.217142 -0.938306 -1.662515 -3.148272 -0.576133 -0.553454 0.590568 0.498705 -1.937891 -0.439967 0.521258 1.881009 -2.403268 -0.256020 1.343869 0.979885 -0.038255 0.248971 -1.407161 -0.120141 0.135000 0.213700 0.989892 -1.099580 -0.134679 -0.681637 0.034369 -0.059926 0.642344 -0.141408 -1.586913 -1.257461 -0.177947 -0.194412 -0.105335 0.026163 0.520536 -0.830655 1.118802 -0.973974 1.313718 -2.183990 0.009586 -0.719679 -1.347698 -0.404915 2.259912 1.381096 1.086701 -0.056293 -0.592954 -0.794973 -1.689842 -2.049600 0.685912 0.015221 1.255048 0.282394 -0.120599 0.505800 -0.711366 -0.241226 0.072943 -0.740535 -0.077228 -0.356769 1.687446 -0.392974 -0.336498 -1.643535 -0.036968 0.678832 -0.537759 0.651913 -0.677694 -1.603576 -1.968396 -1.539302 1.452252 -0.533940 0.218768 -0.707482 0.158620 -1.107433 0.355020 -1.422908 0.289150 -0.017864 -1.573098 -1.834230 0.125325 -0.415050 -0.462159 0.305510 -1.085830 -0.253051 1.269254 1.061066 0.548243 0.277804 0.139164 -1.953114 -1.626170 -0.316708 -0.650190 1.481329 1.110753 -0.080479 -1.635353 -0.543749 -1.544295 1.612574 -0.940213 0.190832 -0.762620 -0.402189 1.860485 -0.821295 -0.013271 -1.728843 0.592516 0.754710 -3.302583 1.880248 1.305257 -0.855646 -0.556217 -0.716370 0.140736 1.239438 1.796329 -0.951664 -0.897776 0.460135 -0.788884 -0.065233 -0.841379 1.226931 -0.865209 0.764507 -1.352044 -0.866077 0.837080 1.123747 -0.018669 0.909231 0.814224 0.672552 0.750593 1.629743 0.940305 -0.572072 -1.451402 -3.424973 1.146734 1.317063 0.012110 0.210119 -0.925034 -1.383371 0.358686 -0.088604 1.679710 1.128036 -0.024959 1.448723 -1.437697 -1.624458 -0.455810 0.159817 0.339958 -0.696277 0.320287 -0.686080 0.441834 0.507515 -0.097938 0.453975 -1.084484 -1.386247 -0.101553 1.617622 0.782656 0.199044 1.818839 0.395780 -1.139142 0.030125 0.064547 0.379624 -0.207557 -1.103278 -0.673576 -0.558885 0.272126 -0.702041 1.070192 -0.105925 -0.109654 0.650300 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.232018 0.131839 0.408485 0.088812 0.145737 -0.336173 0.280133 0.516982 -0.131249 -0.692464 -0.522811 -0.367116 -0.115615 -0.264174 0.279458 -0.119480 0.056473 0.446444 -0.853757 0.200027 0.407819 0.426639 0.208271 -0.363161 0.130273 -0.050694 -0.868439 0.219586 0.072172 0.485899 -0.320279 -0.213801 0.333908 0.163872 -0.016553 0.474336 0.329147 -0.010250 0.527830 0.120373 0.676909 0.164671 -0.070772 0.278611 0.392427 0.431465 -0.280001 0.262857 -0.369058 -0.256025 0.217616 -0.997452 -0.315977 0.024917 -0.210862 0.328240 0.814435 0.714432 -0.255811 0.475775 -0.149459 0.042044 0.105840 -0.597996 0.212373 0.566965 -0.208377 0.095120 0.769064 -0.235774 -0.117996 0.095627 0.321522 -0.113815 -0.304149 -0.262793 0.214970 -1.505916 -0.053151 -1.042751 -0.067923 -0.051289 0.823963 -0.448703 0.450825 0.785530 -0.049085 0.179431 -0.154091 -0.252665 -0.306754 0.152593 -0.084447 0.573936 -0.068682 -0.029076 -0.022445 0.147894 0.347295 0.351561 -0.125849 -0.006701 -1.003049 -1.155663 -0.282225 0.012865 -0.110422 -0.140577 -0.518038 -0.260595 0.875253 0.258660 -0.706506 -0.087250 0.404668 0.371186 -0.789958 0.030724 -0.603547 -0.041121 -0.248305 0.006804 0.068379 -0.426807 -0.176021 -0.484942 -0.237159 0.015629 0.128341 -0.255235 -0.214869 -0.265044 -0.171246 -0.182766 -0.127619 -0.108311 -0.146741 -0.201947 0.231379 -0.507068 0.328443 -0.567330 0.158176 -0.103437 -0.418808 -0.005962 0.800582 0.147124 -0.102830 0.205331 -0.313561 -0.336094 -0.206301 -0.453494 0.335691 -0.103163 0.766528 -0.132021 -0.039927 -0.228609 -0.035194 -0.353793 -0.235716 -0.200269 0.141942 -0.206379 0.785698 -0.292611 -0.152988 -0.703248 0.195735 0.859356 -0.340582 -0.320327 -0.376167 0.528804 -0.197845 -0.497059 0.360071 -0.032074 0.079725 -0.121883 0.288075 -0.424221 0.376893 -0.254134 0.123580 -0.012113 -0.489683 -0.497120 0.037690 -0.153303 -0.151286 0.101804 -0.173917 -0.039478 0.100631 0.354118 0.059248 -0.009461 0.153993 -0.614578 -0.681776 -0.473183 0.091230 0.177896 0.332946 0.242731 -0.439132 -0.022976 -0.289217 0.606488 -0.140126 -0.104580 -0.248786 -0.099153 0.676054 -0.065698 -0.120837 -0.647419 0.159167 0.174621 -0.657131 0.550012 0.188804 -0.337696 -0.332360 -0.627135 -0.008860 0.440182 0.712005 -0.167379 -0.105841 0.294919 -0.354986 -0.081030 -0.519076 0.363813 -0.145261 0.551462 -0.390817 -0.222540 0.149650 0.509123 -0.114572 0.523847 0.259124 0.521938 0.036999 0.493347 0.058207 -0.326479 -0.217674 -0.543852 0.291972 0.757511 0.354576 0.045079 -0.302059 -0.377529 0.070739 0.483863 0.464495 0.990669 0.245288 0.354773 -0.148381 -0.412229 0.199366 0.328194 0.277365 -0.536390 0.033565 -0.149626 0.065445 0.249443 0.100849 0.572460 -0.387296 -1.047629 -0.225486 0.476047 0.229676 -0.241093 0.537846 -0.092424 -0.373153 0.217388 -0.122004 0.520805 0.012473 0.346545 -0.115957 -0.310146 0.028802 -0.205432 0.737292 -0.081847 -0.140390 0.391021 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 1.809003 -0.256752 -1.197056 3.225349 0.200564 -0.351489 0.186020 0.793835 -0.358798 -5.447513 -2.914502 2.605549 0.383256 1.010727 0.813635 1.211729 0.008877 0.286845 -4.370038 0.943544 1.777844 0.516241 0.197981 0.256220 0.599775 -1.299612 0.703390 0.288816 0.968431 2.985633 -1.558820 1.544525 2.750752 -0.524107 0.483002 1.930168 0.349393 0.296483 -1.163260 -0.625153 3.730773 1.189611 0.065749 1.731734 -0.220158 2.980809 -0.487674 4.510314 0.586678 -2.458335 1.872164 -0.938764 -1.662501 0.027001 -1.694391 1.681048 1.809915 1.503530 -1.238496 0.808558 -0.859356 0.071278 0.699360 -0.512697 2.725435 1.991081 2.125896 2.116680 3.065090 -2.043883 -0.333567 1.769406 0.470943 0.646346 2.082325 -1.782970 -2.017337 -0.824406 -0.129165 -2.734764 -2.098627 -0.629848 5.004339 -3.156226 -0.379665 0.649570 0.321375 3.047551 -1.256005 1.272197 -2.521981 -0.022789 -0.286230 3.404298 0.451908 0.209969 -0.893305 0.553899 0.724256 1.832430 -0.045322 -1.829847 -2.252436 -3.456256 -1.475795 -1.240606 1.345602 2.158808 -4.228715 -0.424657 -0.387898 3.377160 -4.329790 -0.086850 1.801574 1.965188 3.432150 2.811373 -2.314855 -0.162491 1.241547 -0.083756 1.835173 -1.222317 0.444112 -1.540430 0.636641 -0.140744 0.677681 0.088519 -3.835282 -1.884731 0.020355 -0.662190 0.585110 0.822171 2.087039 -1.682638 2.094823 -0.999990 1.680157 -3.775065 -1.261639 -0.708367 -3.049616 -1.058708 4.707272 3.009708 2.939338 -0.568959 -1.963263 -1.694788 -3.622937 -3.933733 -0.221723 0.061876 1.089761 1.603372 -0.377570 1.763198 -1.570346 0.723874 0.727969 -1.032094 -0.694817 -0.261442 1.771008 -0.428311 -0.191672 -2.514456 -0.895860 -0.799675 -0.762526 2.784616 -0.252002 -4.572044 -4.539238 -2.280140 2.545933 -1.141981 0.675769 -1.777409 -0.317084 -2.596478 -0.307464 -2.378693 -0.065284 0.363707 -2.498677 -3.216987 0.824701 -0.444104 -1.428771 0.589267 -2.293458 -0.463133 2.219885 1.305394 1.459638 0.369982 -0.532481 -3.244308 -2.448397 0.371630 -2.310726 2.996407 1.723572 -0.717914 -1.916321 -1.476774 -3.196443 2.518870 -2.778023 0.783242 -0.785293 0.063963 2.525739 -1.936325 -0.506082 -2.726243 1.024886 1.094466 -5.079641 3.186983 2.076325 -1.010418 -0.093369 -0.141905 0.630123 1.959923 2.088782 -1.826226 -1.788078 0.410325 -0.351622 0.067725 -0.643501 1.791768 -2.139336 0.258158 -1.762446 -1.039910 1.289258 1.635088 -0.136316 0.381636 1.595742 -0.146054 1.757527 2.067867 2.047744 -1.084578 -1.866009 -6.215874 1.896755 0.537571 -1.255337 0.139780 -2.441476 -1.373265 1.202880 -1.470211 2.783188 -0.224363 0.151114 2.474472 -3.573475 -2.698447 -1.152144 -0.397251 -0.098017 -0.169172 0.699721 -0.813187 0.881817 1.176301 -0.528642 -0.504887 -2.215120 -0.732474 0.232954 2.627706 0.313210 1.135275 2.872742 1.243498 -1.363119 -0.369933 0.435882 -0.152505 -0.890774 -3.115073 -0.738635 0.044214 0.351580 -1.445420 0.758890 -0.589093 -0.938435 0.681655 -PE-benchmarks/the-knights-tour.cpp__main = 0.024480 -0.074440 0.185554 0.160291 0.109320 0.006089 0.107043 0.049446 0.012837 -0.390726 -0.180377 -0.132491 -0.057397 -0.003572 0.117371 -0.021393 0.139316 0.222189 -0.211690 -0.009017 0.121563 0.116731 0.138214 -0.048848 0.026694 -0.097885 -0.155407 0.109456 0.077951 0.257853 -0.165089 0.010156 0.205512 0.076041 0.015335 0.214261 0.276412 -0.023748 -0.002903 0.000611 0.383052 -0.069621 0.027827 0.153315 0.082522 0.262065 0.006512 0.167872 0.179230 -0.124581 0.128431 -0.448441 -0.057976 -0.019123 -0.247586 0.155182 0.203902 0.285417 -0.161900 0.186296 -0.023009 0.081357 0.046777 -0.251032 0.137209 0.156305 -0.026448 0.126666 0.297710 -0.225007 -0.049422 0.064752 0.141979 0.070264 -0.020594 -0.102814 0.106413 -0.694499 -0.089082 -0.235865 0.027355 -0.039140 0.269000 -0.209332 0.090283 0.352575 -0.142452 0.130637 -0.025734 -0.027071 -0.285304 0.064870 0.139899 0.096244 0.073815 -0.094885 -0.029341 0.042436 0.062685 0.145368 0.073142 -0.109848 -0.348425 -0.541597 -0.243595 -0.082407 0.017111 -0.065328 -0.249580 -0.032373 0.339961 0.176508 -0.339333 -0.041470 0.126320 0.182620 -0.287507 -0.143724 -0.122952 -0.061588 0.010016 0.072462 0.069584 -0.215745 0.007871 -0.226498 -0.062835 0.000562 0.134563 -0.113583 0.110561 -0.187423 -0.074526 0.093964 -0.051786 -0.051712 0.002394 -0.075977 0.150431 -0.163568 0.199170 -0.181707 0.026900 -0.067730 -0.121897 -0.085644 0.644431 -0.002794 0.156114 0.121010 -0.267240 -0.117823 -0.113151 -0.324876 0.133473 -0.016485 0.250133 0.128793 -0.055826 0.009304 -0.077834 -0.103960 -0.045385 -0.134041 -0.034202 0.009816 -0.123963 -0.138021 -0.085165 -0.382115 0.150143 0.386949 -0.141048 -0.028707 -0.163575 0.082797 -0.096273 -0.243136 0.197623 -0.106162 0.099065 -0.003103 0.045213 -0.202910 0.161102 -0.165239 -0.006201 0.000000 -0.314405 -0.306070 0.074579 -0.133346 -0.043835 0.184938 -0.180936 0.073733 -0.100591 0.127448 0.041166 0.018945 0.031281 -0.308501 -0.313534 -0.227355 -0.050908 0.117208 0.054823 0.088958 -0.229134 -0.137773 -0.081629 0.248174 -0.216783 0.023741 -0.000821 -0.105633 0.168241 -0.097774 -0.017005 -0.220943 0.120232 0.159020 -0.381049 0.206969 0.168730 -0.208172 -0.156577 -0.250338 0.061492 0.121863 0.366352 -0.126581 -0.009868 0.154792 -0.037830 -0.011158 -0.256819 0.137431 0.007946 0.105695 -0.269711 -0.169256 0.085357 0.231224 -0.049238 0.123132 0.268158 0.250474 -0.041417 0.300451 0.057616 -0.010196 -0.110022 -0.309375 0.149663 0.458916 0.154819 0.203016 -0.275519 -0.044756 0.091743 0.078155 0.223927 0.303942 0.170953 0.259549 -0.081880 -0.197364 0.073991 -0.045643 0.123293 -0.222201 0.155258 -0.136189 -0.008706 -0.022971 0.039758 0.070989 -0.031274 -0.287151 -0.002754 0.202906 0.116390 0.032243 0.267114 -0.005979 -0.224233 0.100985 -0.036261 0.122408 0.055222 -0.000884 -0.053432 -0.036290 0.040508 -0.143792 0.221714 -0.152731 -0.060811 0.081401 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 1.198573 -0.029449 -0.253163 2.386254 0.206595 -0.325594 0.152166 0.769985 -0.279493 -4.077859 -2.761447 1.983836 0.147620 0.595287 0.667458 0.626715 0.324237 0.295045 -4.456127 0.873808 1.422264 0.501492 0.514922 -0.285090 0.533156 -1.164896 1.153356 0.593672 0.658173 2.304705 -1.274175 1.116527 1.988171 0.110612 1.246854 1.769752 -0.558253 -0.064029 -0.911547 -0.808043 3.137714 1.502605 0.074393 1.420304 0.300463 2.412273 0.518249 1.416759 1.235672 -1.736743 0.638280 -0.005256 -1.521786 -0.253709 -1.687685 1.058778 1.187007 0.911599 -1.144051 0.787334 -0.440510 -0.114530 0.485748 -0.785660 2.302235 0.474997 1.696893 1.444648 2.146236 -1.691703 -0.348951 1.355566 0.950089 0.634949 1.273467 -1.542875 -1.930232 -1.014727 -0.355406 -3.497625 -1.316913 -0.238500 3.484706 -2.107981 0.123508 0.355701 -0.571397 2.058104 -0.830663 0.063664 -2.023616 -0.053655 -0.364214 2.040573 0.447604 -0.170368 0.303311 0.732798 0.697940 1.698535 0.044019 -1.690381 -0.950707 -3.545397 -0.351159 -1.022570 1.400184 1.180511 -2.324854 -0.203134 -0.611813 2.954551 -3.022244 -0.288262 1.570978 1.143906 0.566856 -0.504194 -1.013164 -0.160161 0.602648 0.584816 1.820637 -1.479219 0.208339 -0.202364 0.387185 -0.069448 1.084141 0.227208 -1.671616 -2.012315 -0.010688 0.178729 -0.054061 0.329011 1.239890 -0.722789 1.609738 -0.922548 1.894722 -2.468322 0.089806 -1.001718 -1.205764 -0.807440 2.659483 2.055088 1.676583 -0.476417 -0.600342 -0.521339 -2.430508 -2.635449 0.774442 0.405237 0.883536 0.978254 -0.221396 1.434059 -1.202258 0.286103 0.395761 -0.941459 -0.482550 -0.102844 0.630477 -0.035574 -0.382121 -1.660066 -0.206520 -0.162758 -0.519245 1.698124 -0.603075 -3.303416 -3.030771 -1.871355 1.988627 -0.974799 0.246687 -1.043462 -0.176033 -1.002888 0.153753 -2.170239 0.163914 0.050628 -1.920315 -2.417225 0.086844 -0.599994 -0.397923 0.544943 -1.565385 -0.336717 1.833048 1.164182 0.826214 0.423850 0.115943 -2.159491 -1.464525 0.210734 -1.429212 2.024172 1.004350 -0.612099 -2.482817 -0.998803 -1.795642 1.820542 -0.988856 0.613073 -1.034845 -0.654437 1.933078 -1.226682 0.453717 -1.616970 0.767444 1.206614 -4.829379 2.087687 2.010941 -0.873064 -0.326920 -0.143134 0.344333 1.332447 1.812679 -1.327439 -1.323107 0.218906 -0.807014 0.114916 -0.738188 1.441594 -1.205847 0.102392 -1.681185 -1.122856 1.254539 0.892618 0.262504 0.725648 1.277555 0.446793 1.137834 1.991601 1.513020 -0.261085 -2.166720 -4.765977 1.564123 1.710655 -0.216636 0.433696 -1.053855 -1.604767 0.515796 -0.962651 2.075194 0.674312 -0.573356 1.989965 -2.086181 -2.065947 -1.268109 -0.415042 0.093704 -0.218180 0.481318 -0.943880 0.671704 0.393387 -0.359376 -0.192452 -0.979382 -0.520591 0.351434 1.984233 1.124947 0.909191 2.245775 0.830068 -1.502116 -0.298359 0.368553 -0.451016 -0.434358 -2.333133 -1.041101 -0.233585 0.493575 -0.930296 0.365062 -0.289429 0.013360 0.262949 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 0.628851 0.521933 -0.686493 1.905539 -0.629747 -0.637898 0.177585 0.629696 -0.871058 -3.327538 -1.918493 2.599954 0.237018 0.491388 0.229196 0.463413 -0.330005 0.487842 -3.503836 0.779852 1.322005 0.672638 0.255111 -0.416820 0.373787 -0.625529 0.699588 0.524898 0.671046 2.057373 -0.988779 0.532212 1.708992 -0.391867 0.300913 1.423862 -0.220271 0.487848 -0.750982 -0.552050 2.191646 0.911330 0.091423 1.076838 0.125181 1.946823 0.123516 1.246881 1.193937 -1.731837 0.645029 1.325921 -1.255505 -0.502156 -0.713982 0.805043 1.026314 1.408674 -0.837680 0.711682 -0.599283 -0.385947 0.436411 -0.431143 1.547912 1.110174 1.191072 1.278830 1.805882 -1.401471 -0.375170 1.017610 0.379281 0.080245 1.273050 -1.219053 -1.832812 -1.136657 -0.435178 -3.462569 -1.661901 0.393680 3.842387 -2.139181 0.142623 0.361562 0.125891 1.636288 -0.822736 0.248228 -1.386097 -0.335990 -0.673312 2.456576 0.587023 -0.337890 0.090254 0.653271 0.936840 1.497087 -0.232767 -1.140393 -1.023199 -2.590562 -0.629761 -0.766549 0.987564 1.362011 -2.149687 -0.608666 0.838291 2.270943 -2.947280 -0.104191 1.771262 1.192792 0.831774 0.519903 -1.574281 0.547827 0.292650 -0.149757 1.916262 -0.934561 0.027103 0.664659 0.003181 -0.272049 0.473701 0.283434 -2.593078 -1.854314 -0.178557 -0.372718 0.078510 0.021234 0.898526 -0.438751 1.418732 -0.762992 1.511517 -2.438439 0.117026 -0.313293 -0.991929 -0.632595 1.405483 2.061278 1.151169 -1.180628 -0.811391 -0.711989 -2.090258 -1.687920 0.773730 0.509174 0.742530 0.667998 -0.271541 1.182758 -0.738125 0.380722 0.355690 -0.610307 -0.136960 0.181444 1.804267 -0.094189 -0.198951 -1.756547 -0.485771 -0.795626 -0.121808 1.236691 -0.506460 -2.851181 -2.690400 -1.356896 1.735823 -0.529473 -0.007999 -0.840087 -0.493395 -0.492330 0.062215 -1.843896 0.076329 0.141869 -1.433998 -1.999093 0.481229 -0.298946 -1.286568 0.181933 -1.340751 -0.669591 1.263759 0.474699 0.879272 -0.120335 0.386175 -2.130694 -1.166291 0.291562 -1.416733 0.976550 1.582350 -0.102922 -2.406612 -0.617047 -1.782151 1.086524 -1.072964 0.450072 -1.053268 -0.495609 2.140410 -1.098392 0.504733 -1.395370 0.563983 1.231343 -4.387563 2.407324 1.689237 -0.196130 0.100458 0.777622 -0.204150 1.583712 1.064629 -1.512489 -1.499464 0.193874 -1.015362 0.215298 0.060499 1.353213 -1.414580 0.260244 -0.891535 -0.491518 0.871528 0.872054 0.423036 0.767744 0.836181 -0.216801 0.889158 1.290425 1.321654 -0.545841 -1.270791 -3.799993 1.742129 0.216383 -0.442043 0.390633 -0.751391 -1.295791 0.849587 -0.417009 1.568347 -0.754792 -1.005743 1.421409 -2.167216 -1.769290 -0.942842 -0.228905 0.117616 -0.140541 0.585978 -0.500423 0.690805 0.811868 -0.689828 -0.175367 -0.442988 -0.339164 0.098487 1.592616 1.146157 0.594716 1.970874 0.332053 -1.556517 -0.169480 0.019253 -0.174838 -0.833308 -1.695896 -0.387312 -0.115925 0.703172 -0.750479 0.360664 -0.239080 -0.662256 0.524467 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 3.499709 -0.280134 -2.119268 6.184705 0.493006 -1.968316 0.331480 1.698761 -0.586862 -9.703380 -6.061562 5.091637 0.915253 0.405889 1.436068 2.269226 -0.065752 0.906559 -8.734781 2.859976 3.119126 1.258810 -0.309521 -1.165446 1.075490 -2.541163 2.236930 0.973589 1.339925 5.528442 -2.873906 2.446770 4.712803 -0.621818 2.264925 4.258908 -0.665089 0.556665 -1.595034 -0.866015 7.429718 3.588549 0.268464 3.433947 1.082731 5.590674 0.238915 5.834497 0.618968 -4.011970 2.772007 1.118657 -3.439070 -0.685148 -3.889433 3.234859 4.332602 2.048059 -2.796727 1.922647 -1.509908 -0.224785 1.545195 -0.605966 5.791082 2.832007 4.045825 3.876908 6.480002 -3.444241 -0.834070 3.468322 2.689224 0.741245 4.745190 -3.821268 -5.504232 -0.694724 -1.033039 -6.940057 -2.599027 -0.594253 9.803444 -5.761077 -0.103509 1.207177 0.609197 5.351292 -2.574682 0.315771 -4.187263 0.083643 -2.214808 7.392652 0.804283 0.918601 -0.907713 1.911358 1.639323 3.900377 -0.197371 -4.015861 -2.873847 -8.333975 -2.373721 -2.530428 2.422558 2.795485 -7.173775 -1.116320 -1.121633 6.319160 -8.128198 -0.056663 4.050516 2.858514 5.037727 0.618684 -3.836710 0.404514 1.363524 0.550373 3.248380 -2.607590 -0.136697 -1.386262 1.262708 -0.163358 1.696094 0.105956 -6.307226 -3.542696 -0.585645 -0.289918 0.376637 0.985906 3.076626 -3.836691 3.661597 -2.301393 4.006846 -7.554998 -1.215730 -2.531339 -5.037013 -1.603567 6.059595 4.350702 5.359079 -1.943118 -2.249518 -2.411633 -7.097547 -7.421126 1.160804 -0.022123 1.699682 1.992356 -0.343658 2.567567 -2.700255 0.691351 2.205171 -2.501514 -0.834427 -0.590703 4.882436 -0.725343 -0.854510 -4.344678 -1.827266 -0.731717 0.094913 4.366627 -1.080597 -8.660368 -8.180933 -4.216916 4.681982 -1.992791 0.900408 -2.978861 -0.745795 -4.072823 0.131497 -5.068114 0.950076 -0.006551 -3.951621 -5.756601 0.347832 -0.861550 -1.444976 0.263008 -4.096120 -0.772316 4.460745 2.227414 2.005682 1.005518 0.003003 -6.320250 -4.531513 1.042939 -3.109304 5.525949 3.301924 -0.789922 -4.358793 -2.010835 -5.908100 3.927943 -3.964189 1.119148 -1.549878 -0.866022 5.489451 -3.597258 -0.175891 -5.182430 1.654633 1.705683 -9.659217 6.397387 4.536959 -2.239025 -0.394963 0.073156 0.959752 3.384154 4.519664 -3.480482 -3.436502 0.803203 -1.713121 -0.086315 -1.451840 3.640224 -3.937740 1.467600 -3.710011 -2.239669 2.624757 3.219567 0.088244 1.324481 1.651564 -0.629667 2.204342 4.411592 4.071258 -0.977579 -5.141292 -11.452247 3.313065 -0.250347 -1.609180 0.220424 -2.554888 -3.682946 1.619626 -1.534834 5.427528 0.772594 -1.064059 4.545279 -6.641412 -5.519273 -2.397590 -0.392829 0.361808 -0.994085 1.041225 -2.419308 1.556448 1.441745 -0.421554 -0.701042 -3.446968 -0.912848 0.502783 5.187274 1.705741 1.139943 5.612439 2.107073 -2.908871 -0.752290 0.770163 -0.522726 -1.146613 -5.695935 -2.185368 -1.015067 1.174251 -2.381105 2.289438 -0.941050 -0.143578 1.489246 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.084075 0.182237 0.390334 0.038204 0.198317 -0.158651 0.209978 0.290806 -0.236601 -0.440530 -0.356593 -0.322756 -0.125418 -0.161590 0.182471 -0.142275 0.108675 0.253039 -0.462587 0.044067 0.225798 0.191583 0.120785 -0.211255 0.050905 -0.095938 -0.551684 0.288279 0.004914 0.289625 -0.181626 -0.157073 0.181775 0.217793 0.068435 0.324826 0.266343 -0.035046 0.314053 0.049233 0.499164 0.031098 -0.049222 0.159300 0.330426 0.296049 -0.167719 -0.041999 -0.382211 -0.116097 0.066870 -0.620478 -0.165084 -0.019030 -0.209421 0.154513 0.474806 0.445248 -0.202830 0.338031 -0.153752 0.021046 0.027703 -0.380695 0.135766 0.271266 -0.136980 0.033319 0.449412 -0.226062 -0.167099 0.148547 0.196849 -0.039849 -0.406097 -0.003845 0.220631 -1.024240 -0.013902 -0.714794 -0.069591 -0.004458 0.539673 -0.155689 0.189242 0.532839 -0.113376 0.038007 -0.106344 -0.212471 -0.248455 0.094021 -0.059169 0.288335 0.029221 -0.048802 0.084539 0.083974 0.285976 0.330430 -0.172998 0.011547 -0.647824 -0.810525 -0.176764 0.020768 -0.039786 -0.192140 -0.203397 -0.216786 0.697307 0.269028 -0.333842 -0.094532 0.260135 0.257692 -0.721608 -0.086645 -0.433963 -0.050019 -0.144146 -0.017929 0.113326 -0.196081 -0.083386 -0.261651 -0.115717 -0.079659 0.134349 -0.152545 -0.149309 -0.199094 -0.063151 -0.215328 -0.111568 -0.173342 -0.179227 -0.030325 0.141391 -0.312176 0.260360 -0.325731 0.272474 -0.101318 -0.305095 0.025011 0.393300 0.190115 -0.121940 0.209793 -0.146349 -0.144548 -0.059353 -0.331125 0.248720 0.022590 0.514682 -0.153809 -0.054367 -0.118552 -0.063807 -0.277880 -0.062347 -0.110178 0.083769 -0.151393 0.540075 -0.147566 -0.138346 -0.432275 0.223632 0.573612 -0.231957 -0.223643 -0.317305 0.442528 -0.057343 -0.366654 0.198034 -0.029406 -0.029346 -0.001372 0.151383 -0.271864 0.311594 -0.145130 0.124795 -0.053349 -0.341470 -0.301371 0.033952 -0.123542 -0.201829 0.114571 -0.085357 -0.033255 0.096654 0.051210 0.048697 -0.022730 0.096241 -0.228853 -0.402027 -0.308493 0.131923 0.007379 0.299353 0.170923 -0.324307 -0.030724 -0.160018 0.415284 0.095345 -0.076636 -0.129066 -0.135227 0.396630 -0.027765 -0.061580 -0.263633 0.118225 0.161492 -0.469227 0.306579 0.174307 -0.256253 -0.352054 -0.440703 -0.065686 0.250194 0.512881 -0.113071 0.016337 0.204334 -0.188035 -0.050507 -0.268844 0.222723 0.034620 0.342740 -0.348101 -0.254623 0.105747 0.357164 -0.067369 0.386635 0.177042 0.438299 0.042626 0.394006 0.002910 -0.181064 -0.086054 -0.259915 0.193176 0.393552 0.212154 0.046980 -0.092595 -0.307892 -0.017227 0.226165 0.300637 0.585203 0.005733 0.262689 0.059960 -0.237203 0.096388 0.174534 0.186239 -0.449433 0.067551 -0.110557 0.026924 0.082846 0.028970 0.405869 -0.200535 -0.716586 -0.207231 0.257688 0.190778 -0.133798 0.344195 -0.096660 -0.245616 0.110691 -0.030525 0.403033 0.173638 0.116399 -0.162317 -0.272472 0.020850 -0.073096 0.409647 0.003912 -0.054371 0.354629 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/union-find.cpp__main = 2.859768 -0.288771 -0.174378 2.430259 0.167209 -3.863182 1.505790 3.015606 -0.768148 -4.300824 -2.128814 1.199477 0.259663 -2.659205 0.587547 0.506131 -0.933402 1.323856 -7.081856 2.937023 1.889844 1.519925 -1.428088 -2.948589 0.330796 -1.191344 -1.578163 2.607971 -0.691806 3.129585 -1.630041 -0.664756 2.218695 0.375270 1.328526 3.460910 0.650712 0.251581 2.031132 1.790164 4.411880 3.595235 -2.005039 0.835855 2.673724 3.345319 0.121902 2.088485 -3.586086 -1.394502 0.507485 -0.183359 -2.793369 -1.054845 -2.062297 1.207715 5.069804 2.908613 -1.884049 2.858196 -2.570291 -0.444154 1.657850 0.632811 3.960614 2.450631 1.418456 1.533089 5.984064 -1.342160 -0.345203 1.220766 3.008431 -1.643437 1.800480 -1.063681 -3.363850 -6.152014 0.465784 -6.861869 -1.619088 0.676734 4.483126 -3.177035 1.591210 2.811358 2.149153 2.781858 -3.320735 -1.523105 -2.044040 0.396640 -2.083692 8.422361 -0.324115 1.682253 -0.282832 2.403132 2.484765 2.476334 -0.608111 -2.199420 -2.983020 -7.311499 -1.342465 -1.132838 -1.726765 -0.626237 -4.433412 -1.844105 3.929688 3.320420 -5.262736 0.182692 2.887958 1.006228 1.719308 -1.496772 -2.743994 1.765457 -1.518708 -0.227646 1.355676 -2.232596 -1.097241 -0.823513 1.331349 0.948453 0.232663 -0.286131 -5.348534 -0.051035 0.875219 -1.635473 -0.170355 0.377836 -0.471895 -3.350563 1.114356 -4.145018 2.989053 -5.038092 1.105337 -1.249753 -3.478948 0.206089 1.512853 2.228481 -0.136437 -0.699047 -1.118043 -0.807468 -3.850261 -6.827519 1.719043 -0.474825 1.842991 -2.078415 -0.278200 -1.499363 -0.908207 -1.032211 1.443336 -1.932984 0.377574 -1.301890 6.752439 0.071447 -1.018058 -1.610821 -0.775702 2.849306 1.918203 0.918330 -1.904753 -3.206168 -3.927336 -2.740241 2.629135 0.077019 -1.065820 -1.967242 -0.386630 -4.010696 2.399176 -1.759436 2.406521 -0.856470 -1.165420 -3.245239 -0.322086 -0.438224 -0.272482 -1.487479 -1.819684 -0.725858 1.003095 -0.269278 0.256785 0.087889 1.339392 -3.530573 -3.693416 0.367391 1.010366 3.723340 1.939407 1.536027 -1.572480 0.448617 -3.864840 3.560534 -1.898828 0.058369 -0.645248 -2.251227 5.663362 -1.186316 -2.210199 -3.187497 1.648221 -0.269873 -0.215780 6.769355 3.507201 -2.496844 -1.454951 -1.056705 0.088337 3.132962 4.385913 -2.704948 -2.084040 1.323820 -1.296469 -0.884443 -0.522349 2.294585 -2.187568 3.548554 -2.477968 -1.396268 1.185815 3.421716 -0.478928 1.954487 -1.521441 -0.667258 -1.140336 3.016424 0.988784 -0.431767 -2.995065 -4.645929 1.659220 -2.677772 0.116283 -0.862149 -1.030628 -3.142389 0.348500 1.802558 3.931647 4.191252 -2.413807 2.135379 -4.239989 -3.971786 -1.494450 1.414994 0.567078 -2.187633 1.254118 -1.389017 0.887404 1.096035 1.162414 1.364095 -2.735365 -2.714002 -0.620010 2.005821 1.217289 -3.682301 3.922121 -0.188136 -1.109981 -0.855581 -0.355729 0.936474 0.688039 0.169692 -1.315331 -2.593320 1.798168 -1.234267 4.593454 0.412404 0.846724 2.633765 -PE-benchmarks/union-find.cpp__find(int*, int) = 0.919112 0.015822 -0.755637 1.860615 0.155375 -0.611773 0.025141 0.312658 -0.295437 -2.854892 -1.780511 1.489445 0.283109 0.034480 0.481713 0.710066 -0.002647 0.345632 -2.429217 0.806659 0.882758 0.270155 -0.252139 -0.301189 0.279579 -0.769553 0.510778 0.309157 0.337219 1.616136 -0.927850 0.804346 1.345673 -0.204388 0.620661 1.134551 -0.233514 0.172064 -0.382720 -0.118946 2.233975 0.846729 0.096396 0.961415 0.412326 1.626630 -0.169812 1.719105 0.180581 -1.104843 0.885095 0.742779 -0.837359 -0.095005 -1.220793 1.001272 1.403985 0.519528 -0.861383 0.537368 -0.477626 0.019055 0.462000 -0.193096 1.822729 0.971604 1.242466 1.178804 1.959145 -0.913293 -0.182448 0.875654 0.830803 0.084428 1.405165 -0.859330 -1.503147 -0.298556 -0.382181 -2.063102 -0.553146 -0.125655 2.916794 -1.692731 -0.187500 0.414390 0.393220 1.676768 -0.806140 0.145274 -1.228108 0.069272 -0.795762 2.335078 0.380945 0.328777 -0.480263 0.616522 0.426589 1.099359 -0.171802 -1.155982 -0.904378 -2.727504 -1.120281 -0.723110 0.633952 0.698225 -2.326622 -0.248014 0.087702 1.876985 -2.452741 0.003163 1.104394 0.830851 1.300592 0.138544 -1.457349 0.108325 0.275300 0.181157 0.806018 -0.495479 -0.026531 -0.620747 0.325599 -0.085729 0.557840 -0.022528 -1.834867 -0.929447 -0.236723 -0.146469 0.091358 0.277685 0.946429 -1.124489 1.089643 -0.617184 1.123512 -2.344232 -0.328759 -0.855260 -1.526214 -0.417729 1.432119 1.367432 1.560002 -0.535049 -0.731983 -0.759967 -2.295480 -2.310751 0.297722 -0.086749 0.462155 0.514064 -0.150779 0.693536 -0.765369 0.167982 0.916952 -0.891850 -0.278248 -0.309956 1.887642 -0.264114 -0.306642 -1.370139 -0.638501 -0.125394 -0.025796 1.215466 -0.310183 -2.235211 -2.462625 -1.229469 1.346220 -0.599788 0.355012 -0.889494 -0.159009 -1.392267 0.126673 -1.427487 0.112972 -0.055183 -1.098783 -1.682698 0.032580 -0.191801 -0.676293 -0.056404 -1.396750 -0.099445 1.358219 0.452904 0.641515 0.226120 -0.035560 -1.847759 -1.450502 0.287710 -0.901998 1.402272 1.256373 -0.163111 -1.315722 -0.611337 -1.866404 1.123586 -1.339523 0.340211 -0.286141 -0.384418 1.559072 -1.174869 -0.343079 -1.370043 0.437929 0.316625 -2.735104 2.104514 1.285016 -0.766594 -0.101248 -0.133034 0.444918 0.885861 1.433161 -1.133058 -0.781887 0.187088 -0.420077 -0.053171 -0.334056 1.193211 -1.156729 0.483826 -1.127330 -0.659635 0.811514 1.105234 0.012424 0.447662 0.380607 -0.239942 0.690507 1.248037 1.179363 -0.323302 -1.326295 -3.204001 0.834181 -0.658983 -0.532042 0.150280 -0.726073 -1.070019 0.362080 -0.398504 1.674873 -0.155642 -0.282333 1.327878 -1.953985 -1.631020 -0.641465 -0.133024 0.071886 -0.440554 0.496506 -0.757114 0.297726 0.411166 0.017283 -0.240587 -1.085971 -0.376971 0.115324 1.483265 0.478879 0.194797 1.642189 0.662304 -0.940207 -0.239814 0.089221 -0.100040 -0.256104 -1.666437 -0.635107 -0.337292 0.306717 -0.758888 0.774156 -0.358130 0.047891 0.490047 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = 1.200126 -0.238514 -0.619485 1.722934 0.306646 -0.673092 0.093016 0.587551 -0.066602 -3.035392 -1.790468 1.491609 0.210051 -0.037299 0.557135 0.743041 0.099583 0.475686 -2.401052 0.895814 0.869309 0.436134 -0.207724 -0.371697 0.372674 -0.719759 0.161671 0.187896 0.472375 1.694427 -1.103285 0.587387 1.413571 -0.276984 0.478647 1.203417 0.181843 0.086577 -0.235636 -0.160525 2.452950 0.819748 0.097639 1.199606 0.553341 1.670956 -0.452180 2.503713 0.381805 -1.158030 1.182250 -0.085288 -0.999172 0.043593 -1.310036 1.306761 1.656364 0.705699 -0.967531 0.629292 -0.389977 0.113798 0.457099 -0.465215 1.708673 1.327805 1.077277 1.149753 2.277180 -0.956289 -0.275823 0.984500 1.085121 0.317776 1.478374 -1.144847 -1.213974 -0.933484 -0.303130 -1.884123 -0.448636 -0.434161 3.218400 -1.933842 0.042837 0.884933 0.395613 1.690981 -0.784150 0.218082 -1.325106 0.226438 -0.562638 2.499153 0.198681 0.374834 -0.666876 0.558654 0.401349 1.168472 0.026058 -1.074399 -1.499864 -2.889610 -1.340451 -0.701261 0.490243 0.615697 -2.582592 -0.183845 0.492258 1.769264 -2.604217 0.020982 1.185358 0.907631 1.509918 0.756525 -1.578801 -0.017244 0.254856 0.127005 0.507177 -0.664423 -0.175237 -0.981322 0.260158 -0.016686 0.544884 -0.248774 -1.918636 -0.881596 -0.331644 -0.005492 0.055357 0.175655 0.889978 -1.540896 1.158547 -0.623153 1.009821 -2.465879 -0.686325 -0.826186 -1.619716 -0.432575 2.432611 1.168379 1.842162 -0.225730 -0.972935 -1.159151 -2.245036 -2.368185 0.261992 -0.324385 0.727423 0.595628 -0.085785 0.560674 -0.634556 -0.073286 0.523293 -1.002215 -0.205532 -0.385203 1.901832 -0.649730 -0.212216 -1.788170 -0.571348 0.394805 -0.206462 0.958518 -0.364352 -2.226737 -2.328907 -1.388600 1.394422 -0.606222 0.613810 -0.816113 0.023737 -1.510230 0.129271 -1.408484 0.160166 -0.062462 -1.435961 -1.808501 0.179819 -0.260440 -0.635651 0.039343 -1.467271 0.009093 0.991387 0.875744 0.619933 0.246889 -0.115599 -2.476953 -1.922523 -0.082554 -0.865197 1.720858 1.186421 -0.116836 -1.186631 -0.683995 -1.978950 1.309814 -2.044778 0.241579 -0.277487 -0.310201 1.690998 -1.164279 -0.490219 -1.911996 0.569382 0.350301 -2.645195 2.354400 1.241461 -0.918431 -0.198612 -0.492605 0.473797 1.089232 1.765738 -1.115491 -0.799052 0.364303 -0.426723 -0.124464 -0.584908 1.360275 -1.183633 0.804839 -1.253655 -0.751172 0.680290 1.370661 -0.097757 0.507492 0.567519 0.012627 0.585551 1.438156 1.151016 -0.427729 -1.377034 -3.501266 0.879960 -0.033414 -0.452416 0.306101 -1.230243 -1.059301 0.425611 -0.119602 1.786958 0.099657 0.393616 1.385230 -2.095926 -1.708088 -0.234698 -0.063157 0.158859 -0.577712 0.627514 -0.799446 0.197053 0.448611 0.070471 -0.182928 -1.131344 -0.777627 0.026928 1.582859 0.571928 0.164295 1.736868 0.702775 -1.063022 0.010557 -0.019740 0.224380 -0.346386 -1.350581 -0.473498 -0.394439 0.142003 -0.840014 1.137951 -0.324466 -0.117036 0.420885 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.461027 -0.102771 -0.162797 0.726879 0.145211 -0.156120 0.204322 0.310973 0.031172 -1.417851 -0.878530 0.418619 0.091123 0.032800 0.302385 0.227045 0.021944 0.389536 -0.787476 0.186798 0.420139 0.232266 0.050447 -0.128100 0.087835 -0.298113 -0.343445 0.130947 0.241265 0.863115 -0.374490 0.187354 0.703401 -0.070394 -0.132387 0.605121 0.413692 0.083316 -0.062597 -0.081752 1.029060 0.211886 -0.013138 0.579916 0.088738 0.786625 -0.367213 1.335182 -0.036743 -0.538022 0.687591 -0.671196 -0.464287 -0.011784 -0.508512 0.623528 0.896049 0.515823 -0.297026 0.412234 -0.262456 0.098434 0.189005 -0.483971 0.561947 0.881436 0.311014 0.514427 1.053596 -0.623299 -0.174431 0.469512 0.327791 0.132790 0.417640 -0.443079 -0.286081 -0.759167 -0.128800 -0.728755 -0.293132 -0.274295 1.600840 -0.903177 -0.045806 0.662044 0.143652 0.685855 -0.320745 0.239879 -0.614053 0.137862 -0.090951 1.015685 0.189737 0.106685 -0.445732 0.128994 0.251557 0.507003 0.017053 -0.312637 -1.111384 -1.330418 -0.698292 -0.272072 0.178991 0.299357 -1.188960 -0.174441 0.573138 0.685978 -1.226030 -0.035834 0.616081 0.622483 0.586686 0.706492 -0.887280 0.016518 0.257286 -0.076342 0.268263 -0.399132 -0.026973 -0.582479 0.013151 -0.100037 0.139321 -0.191051 -0.880731 -0.456888 -0.195543 -0.062820 0.157074 0.034611 0.359751 -0.604375 0.515592 -0.331873 0.443664 -1.173114 -0.332782 -0.192000 -0.909559 -0.227359 1.582853 0.537612 0.933626 0.000989 -0.636531 -0.681746 -0.842223 -1.138907 0.090269 -0.070906 0.585082 0.266374 -0.079352 0.207660 -0.310900 0.024269 0.107958 -0.373771 -0.024317 0.013845 0.949403 -0.406325 -0.129210 -1.045946 -0.138294 0.314713 -0.246348 0.351764 -0.152589 -0.674944 -0.905533 -0.670958 0.669313 -0.276524 0.275814 -0.346263 0.028238 -0.816799 0.044078 -0.524169 0.056420 0.193835 -0.910991 -0.930617 0.242602 -0.104534 -0.465802 0.281432 -0.666579 -0.032696 0.393176 0.459464 0.323522 0.129384 -0.068340 -1.097932 -0.979278 -0.294650 -0.472588 0.782115 0.652975 0.042190 -0.468389 -0.344041 -0.896274 0.728944 -0.994201 0.080739 -0.240153 0.029681 0.741144 -0.549825 -0.323040 -1.065316 0.276143 0.260211 -1.233200 0.954473 0.505436 -0.355936 -0.188788 -0.362004 0.114562 0.550255 0.905864 -0.538660 -0.393702 0.291332 -0.183092 -0.054805 -0.369249 0.572468 -0.498114 0.318931 -0.538882 -0.294635 0.248938 0.720377 -0.132546 0.352729 0.502512 0.257346 0.310554 0.619224 0.498802 -0.482378 -0.474428 -1.544395 0.509291 0.241628 -0.247047 0.201038 -0.811448 -0.371151 0.391055 -0.022766 0.758650 0.204129 0.348212 0.702517 -0.779811 -0.724798 0.071499 0.015015 0.213634 -0.397056 0.335307 -0.283165 0.162852 0.323803 -0.091405 0.064674 -0.631320 -0.611824 -0.064116 0.859686 0.113302 0.165698 0.857951 0.227415 -0.509625 0.088902 -0.107981 0.208716 -0.154981 -0.508009 -0.067476 -0.088327 0.066010 -0.405876 0.603763 -0.181730 -0.366829 0.343748 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 3.628150 1.314288 -4.120708 12.450276 -1.003309 -2.002862 -0.234931 2.801787 -3.285360 -19.170086 -10.832020 6.707252 2.355131 4.375145 3.002713 3.426493 -0.965914 0.812349 -20.442934 3.852841 8.417118 3.623712 1.747234 -0.352724 2.560979 -4.259300 5.052925 1.110757 3.399807 11.354341 -5.477264 6.865447 9.653432 -2.517123 3.784096 6.904278 -1.808616 1.696792 -4.579705 -0.618930 12.853298 5.788181 -0.359262 4.885252 -0.659313 10.879894 1.407238 5.833104 -0.650549 -9.435183 2.828556 4.622147 -4.899928 -2.466747 -4.962681 4.788989 7.757052 7.490606 -4.498800 2.571947 -2.317068 -1.812108 2.851394 -0.260451 10.440313 4.176406 8.978097 8.240382 9.936678 -6.367817 -0.439245 4.465418 0.116894 -0.169500 7.447210 -6.216972 -9.919653 -3.173820 -2.617921 -15.820045 -8.091350 0.601267 14.463449 -10.772169 0.384076 0.256167 0.331564 10.619071 -4.467473 1.525085 -7.992765 -2.422025 -3.633391 11.854180 1.687650 -0.435099 0.213716 4.362195 3.742241 6.409411 0.343498 -7.857767 -3.101284 -11.986628 -3.884056 -4.434032 6.070877 9.020700 -12.895268 -2.365001 -4.476899 10.722959 -16.084565 0.468855 6.312404 7.752811 9.022510 -0.144785 -7.702451 1.131751 2.439562 -0.128922 8.573601 -5.425413 2.247946 -1.625101 1.314571 -0.031647 2.549895 1.815682 -11.202245 -8.424786 -0.984113 -2.666502 1.028886 3.433840 7.736438 -4.461901 7.579775 -5.343843 8.300870 -13.084720 -1.480039 -2.463213 -8.676077 -3.876485 6.683610 8.807366 5.410763 -5.732056 -7.080767 -2.154164 -13.388558 -11.786898 1.611148 3.128019 2.583081 6.191006 -2.178814 7.302148 -6.067869 3.021181 4.910591 -2.831950 -2.424608 -0.328212 6.532497 0.973181 -0.802197 -6.622815 -3.201176 -4.824264 -0.082552 11.216688 -1.891809 -12.252285 -17.957341 -6.604568 9.441671 -3.811926 0.462980 -6.590150 -2.150664 -8.620510 0.434493 -10.779874 -0.537835 -0.066806 -6.495768 -10.967646 1.971230 -1.634642 -4.204203 1.498526 -7.650775 -2.679973 9.085888 3.395209 4.862319 -1.001275 0.573753 -9.251106 -6.580030 3.786558 -8.358532 8.691513 3.680775 -3.035518 -8.856539 -3.822692 -9.241211 7.901083 -1.686316 3.343901 -3.742229 -0.633483 9.235187 -6.782989 -0.008254 -8.215732 2.260933 4.610807 -16.549947 11.870095 6.642464 -2.231122 1.220483 3.021448 1.938924 5.903689 4.092966 -6.333494 -8.064187 0.312113 -2.473077 1.004505 -3.777599 5.646204 -8.197081 -0.238571 -5.574300 -3.293466 5.664555 4.340955 0.834614 3.129611 4.771684 -3.228504 3.767848 7.012909 8.837689 -1.979411 -6.782874 -15.786893 7.203743 -2.374943 -2.384698 -3.131595 -4.281119 -5.850540 3.812231 -2.209403 9.149581 2.616435 -4.480902 8.632859 -13.351601 -9.790413 -7.081049 -0.828305 0.127633 0.325548 -0.772356 -3.720622 5.223468 4.723097 -2.014617 -1.164728 -7.455157 0.160826 1.285638 8.832021 1.014839 3.877848 10.753650 4.114177 -5.310277 -1.861248 2.868943 -3.042882 -3.774874 -9.724450 -3.904694 0.406828 2.712626 -4.831701 0.763274 -3.734828 -2.272728 2.813614 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.624571 0.266075 0.624684 0.187877 0.287156 -0.766594 0.533861 1.078233 -0.193301 -1.295642 -1.009113 -0.392693 -0.156872 -0.591581 0.442044 -0.173531 -0.028837 0.779273 -1.636756 0.488829 0.743391 0.827496 0.278179 -0.797928 0.252957 -0.054213 -1.563256 0.384057 0.106207 0.892820 -0.549635 -0.455497 0.610461 0.254422 -0.099929 0.899244 0.540599 0.003632 1.023202 0.184442 1.220590 0.473504 -0.158070 0.615940 0.759999 0.770969 -0.596161 0.757612 -0.844662 -0.466180 0.441729 -1.640777 -0.726713 0.015535 -0.326577 0.687726 1.645539 1.212201 -0.409853 0.863161 -0.264898 0.011962 0.231748 -1.015934 0.385582 1.224811 -0.361814 0.177320 1.597517 -0.404038 -0.255493 0.276854 0.687230 -0.206503 -0.364299 -0.599447 0.172592 -2.394874 -0.053925 -1.951697 -0.186961 -0.190259 1.744128 -0.888968 0.818373 1.376189 0.136727 0.379631 -0.347083 -0.449247 -0.461499 0.325257 -0.346316 1.397768 -0.219901 0.137667 -0.162394 0.251286 0.675820 0.691576 -0.266414 0.010711 -1.834043 -2.072085 -0.455387 0.015705 -0.265916 -0.208553 -1.074963 -0.504064 1.449071 0.497503 -1.367133 -0.193348 0.835391 0.666813 -1.027746 0.334403 -1.207050 -0.019679 -0.425843 -0.105233 0.019720 -0.762126 -0.431651 -0.826306 -0.420247 0.021028 0.128454 -0.472403 -0.773097 -0.419426 -0.339620 -0.410821 -0.131783 -0.188348 -0.251224 -0.583538 0.384394 -0.941189 0.536160 -1.214639 0.132643 -0.176140 -0.924116 0.018239 1.332157 0.271840 -0.062342 0.288751 -0.458790 -0.772383 -0.460200 -0.880729 0.570133 -0.286994 1.372168 -0.329790 -0.020404 -0.487428 -0.070377 -0.662706 -0.382318 -0.359775 0.318552 -0.434295 1.920058 -0.597634 -0.214130 -1.248251 0.204432 1.447600 -0.486293 -0.548169 -0.616189 0.669864 -0.486415 -0.929062 0.664785 -0.014424 0.100696 -0.341042 0.518794 -0.799083 0.590729 -0.428970 0.322421 0.022637 -0.884229 -0.901765 0.067683 -0.213242 -0.300622 0.081078 -0.331825 -0.132603 0.309930 0.721509 0.106680 0.009723 0.231734 -1.269852 -1.313213 -0.797234 0.224863 0.481221 0.694907 0.469435 -0.727461 0.003597 -0.712029 1.106812 -0.413147 -0.229245 -0.501174 -0.064265 1.388764 -0.161722 -0.278995 -1.384530 0.277656 0.212535 -1.109980 1.177890 0.320371 -0.581361 -0.597022 -1.085937 -0.071702 0.890244 1.321969 -0.375521 -0.350349 0.565203 -0.689935 -0.204245 -0.891877 0.713208 -0.400990 1.161949 -0.664990 -0.385291 0.219379 1.000450 -0.266000 0.955606 0.335013 0.801174 0.118422 0.869573 0.182940 -0.681126 -0.498146 -1.172734 0.514962 1.055436 0.512939 -0.044727 -0.554313 -0.818427 0.202124 0.923970 0.921013 1.693398 0.450028 0.603079 -0.443062 -0.810646 0.415038 0.674419 0.524311 -0.934267 0.013442 -0.274160 0.136235 0.551186 0.150517 1.030914 -0.874750 -1.858327 -0.449164 0.955117 0.373868 -0.524460 1.014811 -0.104877 -0.601663 0.383246 -0.251499 0.993280 -0.087954 0.590226 -0.142620 -0.625004 0.028007 -0.342291 1.503132 -0.033609 -0.272506 0.739106 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 1.297386 -0.434978 -0.509173 2.139957 0.452132 -0.473462 0.109280 0.563434 0.045675 -3.532691 -1.948661 1.881741 0.198257 0.332807 0.463882 0.824876 0.262266 0.375959 -2.680483 0.938714 0.929680 0.462114 0.052229 -0.331678 0.432851 -0.944569 1.101830 0.247089 0.681794 1.947847 -1.174523 0.764021 1.702269 -0.180427 0.904474 1.524754 0.348670 0.035790 -0.940713 -0.558224 2.837698 1.117748 0.175831 1.424257 0.381852 2.020888 0.294190 2.348742 0.808526 -1.431180 0.896923 -0.270251 -1.227645 -0.234783 -1.631478 1.349659 1.168735 0.754428 -1.162049 0.633102 -0.285671 0.011583 0.476814 -0.341728 1.872272 0.771056 1.320035 1.378199 2.294615 -1.418258 -0.454566 1.430749 1.170417 0.752357 1.873569 -1.434336 -1.733348 -0.579783 -0.357929 -1.879930 -0.820603 -0.436444 3.331893 -2.099321 0.069835 0.717883 -0.137451 1.809273 -0.751982 0.169719 -1.754572 0.105573 -0.276130 2.246604 0.297807 0.165299 -0.301111 0.590316 0.459965 1.457909 0.324200 -1.509041 -1.063266 -2.836040 -0.831811 -1.000651 0.873551 0.895293 -2.400273 -0.269761 -0.384216 2.477889 -2.764229 0.000946 1.379035 0.964991 1.961028 0.148447 -0.889742 0.039548 0.643055 0.177001 0.986018 -1.144886 -0.093656 -0.409237 0.522570 -0.081084 0.735970 -0.057834 -1.868793 -1.346826 -0.188888 0.302012 0.046505 0.177816 1.045384 -1.658331 1.361070 -0.657325 1.361121 -2.317058 -0.619655 -0.806639 -1.636807 -0.688793 3.233628 1.157747 2.294818 -0.397312 -0.975906 -1.012182 -2.250615 -2.708746 0.479437 -0.042425 0.554717 1.078707 -0.089412 1.023057 -0.950238 0.072766 0.525903 -0.949132 -0.381012 -0.050566 0.682350 -0.530660 -0.187560 -1.794334 -0.423297 0.099819 0.031600 1.461893 -0.486262 -3.330797 -2.613563 -1.610182 1.648388 -0.827818 0.542514 -0.811069 -0.302919 -1.282839 0.024267 -1.842541 0.448079 -0.087540 -1.690505 -2.120404 0.269680 -0.508568 -0.348819 0.413989 -1.470562 -0.065296 0.955116 0.884093 0.602503 0.363042 -0.067020 -2.566413 -1.755729 0.158915 -1.117979 2.193762 0.747830 -0.329123 -1.521570 -0.928344 -1.915266 1.451897 -1.952556 0.406599 -0.412126 -0.310575 1.767898 -1.222464 0.035001 -1.971355 0.806020 0.846342 -3.296379 2.145490 1.715674 -0.915689 -0.246289 -0.038917 0.339337 1.250644 1.831962 -1.217821 -1.192241 0.447829 -0.464895 -0.027382 -0.698355 1.281878 -1.194851 0.552449 -1.528733 -1.007878 0.736669 1.192408 0.002599 0.309410 0.946432 0.010228 0.528614 1.840298 1.439147 -0.022040 -1.963253 -4.106690 1.244276 0.669316 -0.424702 0.412579 -1.307149 -1.094205 0.652627 -0.665920 1.903700 0.284988 0.076959 1.732282 -2.391403 -1.921982 -0.533421 -0.434064 0.173393 -0.352101 0.670586 -0.962079 0.434273 0.205788 -0.192117 -0.536265 -0.829066 -0.144166 0.257916 1.722864 0.797919 0.680630 1.976670 0.786944 -1.157076 -0.022672 0.318684 -0.073250 -0.409616 -2.080227 -0.728211 -0.271378 0.297201 -0.861926 0.770223 -0.408334 -0.155216 0.273094 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.998261 0.053847 1.108659 0.055126 0.747504 -0.296631 0.487455 1.220079 -0.551997 -1.653598 -1.768641 -1.126226 -0.394194 -0.529270 1.013600 -0.170832 0.644685 0.016200 -2.415953 0.265523 0.706949 0.205487 0.167033 -0.143565 0.340466 -0.609903 -2.039734 0.835165 -0.165616 0.796097 -0.618562 -0.103586 0.566400 0.514160 0.434090 0.868062 -0.239090 -0.409060 1.491738 0.203250 1.902283 0.214318 -0.054625 0.573341 1.221974 0.933313 -1.439619 1.494220 -0.681550 -0.325097 1.591632 -2.552285 -0.734242 0.604885 -0.957188 0.478665 2.030131 0.731125 -0.662321 0.920130 -0.809551 0.288782 0.000232 -1.271295 1.009716 1.311840 0.250694 0.020083 1.404703 -0.460049 -0.400314 0.672933 0.684725 0.163689 -1.762547 -0.834294 1.079215 -3.022422 0.384580 -2.129173 -0.021318 -0.783680 2.057218 -0.342094 0.188906 1.358611 -0.366409 0.427035 -0.454204 -0.235812 -0.779791 0.500550 -0.091092 0.844825 -0.574618 0.192410 0.292658 0.086875 0.496191 1.079689 -0.734468 0.091703 -2.742774 -2.682062 -0.939185 0.254209 0.263870 -0.596501 -1.222131 -0.014604 1.720129 -0.185053 -0.847577 -0.398548 0.597589 0.870750 -1.777044 1.662190 -2.035424 -1.194420 -0.228558 0.677953 0.197962 -0.200356 0.060543 -2.459482 -0.111395 0.143542 0.571455 -0.683112 -0.744355 -0.404669 -0.134361 -0.731595 -0.394671 -0.310678 -0.206811 -0.031452 0.604018 -0.651978 0.718831 -1.771270 0.153261 -1.162982 -0.877158 0.190364 1.904394 1.434755 -0.002879 1.419095 -0.361540 -0.495684 -0.691332 -0.668279 -0.118395 -0.405526 1.855786 -0.716579 -0.038851 -0.190845 -0.012741 -0.810271 -0.798980 -0.482801 0.177649 -1.212434 1.877420 -0.401467 -0.437274 -1.270510 0.606404 1.761980 -1.700491 -0.484423 -0.571930 0.850804 -0.491066 -1.264844 0.573815 -0.144588 0.244712 -0.136143 1.028537 -1.237793 0.717091 -0.421067 -0.136578 -0.154536 -1.489355 -0.856938 0.129860 -0.221611 -0.332182 0.078671 -0.373578 -0.115358 1.038563 1.556296 0.560166 0.395529 -0.297406 -1.225411 -1.795130 -1.240719 0.292312 0.770512 1.200125 -0.070633 -0.487844 -0.238482 -0.876110 1.445105 -0.093244 -0.300892 -0.365262 -0.600896 0.972684 -0.223751 -0.297733 -1.255750 0.169153 0.119786 -2.327842 1.139809 0.335279 -1.110930 -1.248455 -2.372683 0.227583 0.539305 1.658551 0.193922 0.499423 0.271189 -0.202332 -0.229171 -0.890528 0.994595 0.086681 0.881656 -1.287699 -1.059145 0.798929 1.170205 -0.265315 1.086679 0.491235 1.830399 0.817191 1.274274 -0.128764 -1.132678 -0.170295 -2.281396 0.227359 2.394246 0.184079 0.206004 -0.812883 -1.411813 -0.606459 0.712446 1.181846 2.026140 0.990758 0.793950 0.466917 -0.753191 -0.033937 0.803081 0.146934 -1.269857 -0.245335 -0.356139 -0.112871 0.449306 0.296572 1.481108 -1.268625 -3.118769 -0.766562 1.039450 0.515366 -0.331271 0.947757 0.218910 -0.571915 0.003164 0.100354 1.143935 0.897020 0.448739 -0.602164 -0.993974 -0.360945 -0.270882 1.088901 0.543823 0.333026 0.794774 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 1.192092 -0.631424 -0.177281 1.033459 0.500383 -1.094043 0.353919 0.623332 0.056836 -1.694088 -0.774952 0.735626 0.027756 -0.871280 0.302697 0.398435 0.061888 0.315001 -1.487727 1.020619 0.290187 0.278585 -0.694478 -0.617904 0.137639 -0.561988 -0.155521 0.677435 -0.122771 0.976756 -0.678825 -0.014831 0.770754 -0.010516 0.476533 1.086897 0.490312 -0.048670 0.408081 0.462327 1.874383 0.687311 -0.109645 0.721264 1.023979 1.131171 -0.258756 2.124637 -0.088366 -0.393301 1.045465 -0.339780 -0.764966 -0.115940 -1.234932 0.788542 1.500601 0.358370 -0.846190 0.754096 -0.626633 0.075134 0.477186 0.155945 1.471101 1.098157 0.566759 0.628897 2.217318 -0.457132 -0.283007 0.809041 1.443070 0.119038 0.996403 -0.712758 -0.946385 -1.404382 -0.031531 -1.044856 -0.045295 -0.372748 1.877050 -1.113015 0.100103 0.981677 0.578479 1.057509 -0.884476 -0.212725 -0.913498 0.383525 -0.375287 2.395213 -0.211125 0.732922 -0.516092 0.442165 0.351292 0.922621 -0.086638 -0.853130 -1.225453 -2.509109 -1.130213 -0.462878 -0.445271 -0.423035 -1.983259 -0.232891 0.819228 0.949776 -1.721387 -0.036757 0.824278 0.287979 1.308193 0.372109 -1.009493 0.013673 0.011135 0.198653 -0.002827 -0.384051 -0.383316 -1.157921 0.541503 0.264113 0.222431 -0.429129 -1.477406 -0.013306 -0.002664 0.020991 -0.037574 -0.057553 0.031027 -1.581898 0.487348 -0.813456 0.777210 -1.873366 -0.514718 -0.860188 -1.295149 -0.007641 1.908430 0.511994 1.284981 0.144692 -0.676924 -0.724965 -1.533711 -2.362623 0.182495 -0.786589 0.487234 -0.247698 0.030904 -0.362013 -0.220691 -0.505030 0.486194 -0.849207 -0.009524 -0.624348 1.414994 -0.425587 -0.221661 -1.054985 -0.338621 1.062360 0.426084 0.363599 -0.444320 -1.864169 -1.277943 -1.053859 0.801446 -0.160301 0.178646 -0.515200 -0.050439 -1.500623 0.502472 -0.654183 0.483279 -0.364329 -0.826344 -1.135632 0.001492 -0.212801 0.006558 -0.420584 -0.875814 0.083617 0.181904 0.504682 0.249067 0.341418 -0.129884 -1.858508 -1.730169 -0.159134 0.275051 1.626117 0.678709 0.430145 -0.290347 -0.223586 -1.586388 1.037659 -1.857164 -0.046952 0.384955 -0.695029 1.612384 -0.663220 -0.745796 -1.349881 0.572195 -0.194094 -0.822796 2.133995 1.105326 -1.165618 -0.617608 -0.735055 0.281715 0.885484 1.799233 -0.749690 -0.319608 0.528869 0.048426 -0.358736 -0.408362 0.919146 -0.642214 1.256572 -1.145566 -0.815906 0.380571 1.420973 -0.317971 0.109837 -0.362642 -0.019069 -0.235977 1.240448 0.430421 0.001328 -1.040103 -2.401519 0.321416 -0.355886 -0.235079 0.367097 -0.996411 -0.886669 0.120382 0.195003 1.526134 0.583973 0.240896 0.861232 -1.458214 -1.369295 -0.108753 0.159563 0.126815 -0.777683 0.751350 -0.735111 -0.070069 0.076866 0.482829 -0.015931 -0.805912 -0.826006 -0.132791 0.770543 0.423483 -0.767887 1.249880 0.277679 -0.409385 -0.157956 -0.021091 0.434861 0.300548 -0.505715 -0.416196 -0.868297 0.263241 -0.472023 1.612095 -0.034597 0.463648 0.563352 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.702479 -0.114557 -0.287387 0.523808 0.224145 -0.679881 0.136200 0.289171 -0.174682 -0.881894 -0.611023 0.355401 0.043218 -0.652220 0.296002 0.363321 0.045472 0.150333 -0.663973 0.650543 0.156313 -0.000505 -0.622454 -0.192459 0.041377 -0.358150 -0.492023 0.287740 -0.214251 0.484494 -0.351275 0.201469 0.372523 0.005583 0.307168 0.519534 -0.113396 -0.118731 0.584219 0.361292 1.018591 0.254794 0.144169 0.298997 0.635468 0.566700 -0.552963 1.305696 -0.288307 -0.135636 0.876591 -0.166338 -0.349303 0.253549 -0.713923 0.369503 0.696163 -0.106049 -0.402974 0.397667 -0.593661 0.126664 0.258934 -0.020943 1.048865 0.766945 0.330017 0.366045 1.196047 -0.015266 -0.021466 0.399427 0.736174 -0.085243 0.306422 -0.166147 -0.278718 -0.482638 -0.058294 -0.583449 0.167661 -0.240056 1.470389 -0.541211 -0.131247 0.425526 0.500630 0.681977 -0.545964 -0.061331 -0.438997 0.265430 -0.379163 1.040358 -0.144825 0.550267 -0.512413 0.146162 0.034871 0.383677 -0.474322 -0.387454 -0.925594 -1.427695 -0.839461 -0.128353 -0.298067 -0.353122 -1.341568 -0.041448 0.525725 0.637082 -0.954411 -0.038730 0.342448 0.042730 0.503347 0.848299 -0.995867 -0.200978 0.000000 0.362709 -0.092603 0.145289 -0.146053 -1.159530 0.242896 0.101783 0.195941 -0.276918 -0.971287 0.089342 0.018603 -0.234052 -0.039846 0.087892 0.095114 -0.688020 0.254700 -0.330319 0.343804 -1.210779 -0.384070 -0.765818 -0.935035 0.095438 1.025551 0.793324 0.798721 0.216941 -0.244482 -0.407515 -1.100521 -1.118321 -0.076384 -0.746288 0.337136 -0.320459 0.086451 -0.310244 -0.046146 -0.206884 0.353403 -0.563355 0.004621 -0.589009 1.215490 -0.170572 -0.218222 -0.666190 -0.352752 0.518810 0.005382 0.101013 -0.161598 -0.831965 -0.800204 -0.545806 0.378153 -0.052294 0.218103 -0.374830 0.144203 -0.829648 0.189412 -0.281510 0.052256 -0.193057 -0.335116 -0.547928 -0.116859 0.019571 -0.309298 -0.513616 -0.414802 0.090799 0.615035 0.279818 0.220944 0.300735 -0.285564 -0.785760 -0.963474 -0.071799 0.170372 0.730923 0.902953 0.218827 -0.256785 -0.091092 -1.086190 0.611539 -1.050183 -0.049480 0.345098 -0.426063 0.849845 -0.503895 -0.509363 -0.591623 0.226797 -0.406385 -1.191218 0.948449 0.528569 -0.771120 -0.333381 -0.765850 0.363113 0.406904 1.013198 -0.174833 0.228679 0.173000 0.123332 -0.224063 -0.160347 0.562107 -0.427717 0.688980 -0.599524 -0.397004 0.458938 0.793461 -0.204308 -0.052264 -0.437922 0.113934 0.276609 0.513111 0.226693 -0.252195 -0.472883 -1.508697 -0.035447 -0.226403 -0.250565 0.301526 -0.410448 -0.518378 -0.163134 -0.272527 0.897663 -0.096159 0.179063 0.399097 -0.628446 -0.756044 -0.114381 0.321043 -0.056085 -0.510491 0.462310 -0.375000 -0.163236 0.146478 0.465297 0.129484 -0.706015 -0.803785 -0.104034 0.514128 0.249753 -0.487959 0.613763 0.229704 -0.112868 -0.217063 0.005486 0.311731 0.218109 -0.522808 -0.354334 -0.572920 0.075889 -0.306713 0.981094 0.043289 0.449700 0.420038 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.912695 0.056221 1.067047 0.154289 0.708595 -0.029863 0.477330 1.119161 -0.510352 -1.767321 -1.815369 -1.126587 -0.339898 -0.285591 1.003036 -0.130363 0.664266 0.005363 -2.397233 0.052241 0.744116 0.136551 0.333059 -0.031003 0.312419 -0.665165 -1.889170 0.795707 -0.096553 0.874471 -0.568811 0.038582 0.649512 0.506915 0.331591 0.823087 -0.233056 -0.398254 1.229653 0.069629 1.854184 0.159538 -0.118982 0.552941 0.957258 0.988364 -1.378690 1.447323 -0.633234 -0.383680 1.548993 -2.545644 -0.715752 0.579458 -0.943690 0.459480 1.971925 0.781482 -0.566912 0.869749 -0.803391 0.329500 -0.012976 -1.311045 0.959735 1.268774 0.379879 0.110788 1.256254 -0.645757 -0.362729 0.656128 0.449222 0.187000 -1.724773 -0.819516 1.093424 -2.937968 0.393818 -2.082266 -0.111478 -0.785700 2.023272 -0.354047 0.046690 1.294423 -0.412047 0.495096 -0.426869 -0.043754 -0.850073 0.459574 0.002837 0.765466 -0.444303 0.092676 0.273726 0.078888 0.469487 1.027378 -0.596321 0.085204 -2.670222 -2.544782 -0.935705 0.189056 0.441337 -0.397639 -1.179976 0.060762 1.679387 -0.176430 -0.873563 -0.387834 0.569537 1.020075 -1.638680 1.661663 -1.982738 -1.182207 -0.107912 0.643558 0.310417 -0.270211 0.218105 -2.342135 -0.114061 0.107989 0.591399 -0.609334 -0.747658 -0.507928 -0.114732 -0.740483 -0.291739 -0.224226 -0.038819 0.089083 0.659265 -0.618214 0.755625 -1.748576 0.180794 -1.062083 -0.864642 0.083458 1.941965 1.498952 0.022228 1.394027 -0.432132 -0.466180 -0.680424 -0.673270 -0.201349 -0.181270 1.805805 -0.542050 -0.108667 0.009539 -0.141477 -0.612558 -0.774462 -0.447033 0.092603 -1.035009 1.752998 -0.359070 -0.450221 -1.253141 0.643509 1.577190 -1.772717 -0.273854 -0.488162 0.853787 -0.599324 -1.260083 0.639548 -0.242836 0.242114 -0.171120 0.966225 -1.244209 0.648285 -0.444071 -0.182413 0.000399 -1.604033 -0.951136 0.247683 -0.222482 -0.439883 0.303009 -0.467822 -0.111778 1.053566 1.503823 0.604326 0.366402 -0.295465 -1.156633 -1.719858 -1.217332 0.069663 0.776716 1.165579 -0.187647 -0.504789 -0.355746 -0.808074 1.451593 -0.004228 -0.195245 -0.483674 -0.515526 0.780858 -0.307284 -0.263546 -1.256428 0.162511 0.220674 -2.317365 1.105240 0.343177 -1.010880 -1.190548 -2.281520 0.257319 0.443225 1.562533 0.113176 0.405678 0.232659 -0.161791 -0.178732 -0.841348 0.947484 0.092715 0.604070 -1.270648 -1.026530 0.818402 1.099057 -0.255740 1.129181 0.753212 1.811768 0.881175 1.243609 -0.040889 -1.190754 -0.131708 -2.275489 0.290848 2.356183 0.094365 0.175311 -0.890481 -1.327541 -0.485654 0.645841 1.132315 1.963294 0.949746 0.878189 0.465734 -0.713965 -0.101824 0.661168 0.151544 -1.184615 -0.277156 -0.329776 -0.052376 0.457977 0.172113 1.375346 -1.285223 -2.937446 -0.696805 1.136763 0.427376 -0.143761 0.975926 0.290571 -0.595843 -0.019132 0.099245 0.968342 0.878370 0.351631 -0.530462 -0.775483 -0.346444 -0.316751 0.852538 0.514546 0.165612 0.726788 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 1.664717 -0.471327 -0.122284 1.334573 0.823396 -1.287013 0.315717 0.813751 -0.031615 -2.372045 -1.401560 1.782078 -0.080485 -0.976685 0.326335 0.484289 0.324626 0.318916 -2.308756 1.358337 0.343227 0.305802 -0.805377 -0.735294 0.286825 -0.776167 0.232375 0.823543 -0.054713 1.225918 -1.035143 0.130656 0.987735 0.165585 0.975626 1.369486 0.184720 -0.335463 0.338685 -0.010161 2.639200 0.953622 0.206963 1.322202 1.442725 1.486823 -0.302910 2.512970 0.757189 -0.541165 1.070971 0.019259 -1.167678 0.018458 -1.785782 1.096803 1.340590 -0.051767 -1.154329 0.814877 -0.446605 0.033743 0.512384 -0.156106 1.944083 1.130333 0.755588 0.778790 2.759554 -0.617784 -0.462454 1.237107 2.097969 0.627348 1.227772 -0.934383 -1.264091 -1.043053 -0.124645 -1.706751 -0.032587 -0.718081 2.831494 -1.350006 0.105854 0.895600 0.482420 1.390506 -0.939518 -0.350599 -1.315845 0.544162 -0.533571 2.539976 -0.235556 0.887197 -0.509705 0.387867 0.312243 1.372068 -0.316913 -1.175903 -1.224637 -3.318252 -1.107275 -0.612332 -0.293587 -0.548305 -2.383488 -0.044477 0.439722 1.989755 -2.074350 -0.373542 1.029673 0.106720 1.026482 0.506166 -1.193376 -0.333602 0.130266 0.462928 -0.002032 -0.416768 -0.540628 -1.195602 0.482648 0.143879 0.622524 -0.430265 -1.744172 -0.418761 -0.009014 0.227574 -0.164693 -0.213965 0.138391 -1.765921 0.717940 -0.711289 0.955875 -2.164678 -0.665917 -1.310634 -1.330836 -0.088757 2.312755 0.970806 1.900806 0.316315 -0.262649 -0.969944 -1.957702 -2.627024 0.445277 -1.141690 0.571806 -0.172589 0.136232 -0.211352 -0.376223 -0.793940 0.567585 -1.168825 -0.104343 -0.977890 1.606254 -0.596033 -0.181478 -1.401104 -0.392732 1.147628 0.283348 0.358067 -0.603269 -2.859551 -1.654430 -1.494885 1.031866 -0.338974 0.309459 -0.629137 0.066040 -1.196180 0.386780 -0.954130 0.414405 -0.534991 -1.180938 -1.437593 -0.155436 -0.359358 -0.138497 -0.522436 -1.148119 0.195480 0.715189 0.888508 0.327036 0.528001 -0.356935 -2.306878 -2.004069 -0.182989 0.316815 1.898147 1.103928 0.343198 -1.078589 -0.467827 -1.995824 1.334626 -2.474472 0.010925 0.401574 -0.956889 1.962730 -0.890935 -0.559307 -1.453925 0.759592 -0.116870 -2.413400 2.393698 1.451159 -1.544764 -0.865342 -1.070502 0.405400 1.128526 2.374819 -0.940488 -0.305491 0.609969 -0.049465 -0.425867 -0.534732 1.326017 -0.682986 1.550496 -1.636027 -1.260001 0.654107 1.605833 -0.296226 0.066742 -0.307003 0.263542 0.268964 1.740533 0.676454 0.137782 -1.600624 -3.619214 0.398354 0.247238 -0.210494 0.803631 -1.122978 -1.413572 0.004287 -0.419578 2.024172 -0.093443 0.348164 1.136692 -1.672379 -1.716305 -0.135019 0.026110 0.113011 -0.800905 1.161650 -1.040915 -0.261680 -0.081010 0.548456 -0.181278 -0.846592 -0.982294 -0.046492 1.008710 0.983118 -0.569993 1.540677 0.561226 -0.727310 -0.131856 -0.016515 0.581886 0.151389 -1.305292 -0.672089 -1.133659 0.172900 -0.551494 1.876584 0.129778 0.857837 0.412347 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 1.192092 -0.631424 -0.177281 1.033459 0.500383 -1.094043 0.353919 0.623332 0.056836 -1.694088 -0.774952 0.735626 0.027756 -0.871280 0.302697 0.398435 0.061888 0.315001 -1.487727 1.020619 0.290187 0.278585 -0.694478 -0.617904 0.137639 -0.561988 -0.155521 0.677435 -0.122771 0.976756 -0.678825 -0.014831 0.770754 -0.010516 0.476533 1.086897 0.490312 -0.048670 0.408081 0.462327 1.874383 0.687311 -0.109645 0.721264 1.023979 1.131171 -0.258756 2.124637 -0.088366 -0.393301 1.045465 -0.339780 -0.764966 -0.115940 -1.234932 0.788542 1.500601 0.358370 -0.846190 0.754096 -0.626633 0.075134 0.477186 0.155945 1.471101 1.098157 0.566759 0.628897 2.217318 -0.457132 -0.283007 0.809041 1.443070 0.119038 0.996403 -0.712758 -0.946385 -1.404382 -0.031531 -1.044856 -0.045295 -0.372748 1.877050 -1.113015 0.100103 0.981677 0.578479 1.057509 -0.884476 -0.212725 -0.913498 0.383525 -0.375287 2.395213 -0.211125 0.732922 -0.516092 0.442165 0.351292 0.922621 -0.086638 -0.853130 -1.225453 -2.509109 -1.130213 -0.462878 -0.445271 -0.423035 -1.983259 -0.232891 0.819228 0.949776 -1.721387 -0.036757 0.824278 0.287979 1.308193 0.372109 -1.009493 0.013673 0.011135 0.198653 -0.002827 -0.384051 -0.383316 -1.157921 0.541503 0.264113 0.222431 -0.429129 -1.477406 -0.013306 -0.002664 0.020991 -0.037574 -0.057553 0.031027 -1.581898 0.487348 -0.813456 0.777210 -1.873366 -0.514718 -0.860188 -1.295149 -0.007641 1.908430 0.511994 1.284981 0.144692 -0.676924 -0.724965 -1.533711 -2.362623 0.182495 -0.786589 0.487234 -0.247698 0.030904 -0.362013 -0.220691 -0.505030 0.486194 -0.849207 -0.009524 -0.624348 1.414994 -0.425587 -0.221661 -1.054985 -0.338621 1.062360 0.426084 0.363599 -0.444320 -1.864169 -1.277943 -1.053859 0.801446 -0.160301 0.178646 -0.515200 -0.050439 -1.500623 0.502472 -0.654183 0.483279 -0.364329 -0.826344 -1.135632 0.001492 -0.212801 0.006558 -0.420584 -0.875814 0.083617 0.181904 0.504682 0.249067 0.341418 -0.129884 -1.858508 -1.730169 -0.159134 0.275051 1.626117 0.678709 0.430145 -0.290347 -0.223586 -1.586388 1.037659 -1.857164 -0.046952 0.384955 -0.695029 1.612384 -0.663220 -0.745796 -1.349881 0.572195 -0.194094 -0.822796 2.133995 1.105326 -1.165618 -0.617608 -0.735055 0.281715 0.885484 1.799233 -0.749690 -0.319608 0.528869 0.048426 -0.358736 -0.408362 0.919146 -0.642214 1.256572 -1.145566 -0.815906 0.380571 1.420973 -0.317971 0.109837 -0.362642 -0.019069 -0.235977 1.240448 0.430421 0.001328 -1.040103 -2.401519 0.321416 -0.355886 -0.235079 0.367097 -0.996411 -0.886669 0.120382 0.195003 1.526134 0.583973 0.240896 0.861232 -1.458214 -1.369295 -0.108753 0.159563 0.126815 -0.777683 0.751350 -0.735111 -0.070069 0.076866 0.482829 -0.015931 -0.805912 -0.826006 -0.132791 0.770543 0.423483 -0.767887 1.249880 0.277679 -0.409385 -0.157956 -0.021091 0.434861 0.300548 -0.505715 -0.416196 -0.868297 0.263241 -0.472023 1.612095 -0.034597 0.463648 0.563352 -PE-benchmarks/dfa-based-division.cpp__main = 0.767368 -0.108377 0.072423 1.016154 0.225787 -0.170699 0.230975 0.653981 0.087193 -2.226398 -1.511971 1.027098 -0.017475 0.197206 0.423012 0.182748 0.289647 0.489202 -2.200939 0.349741 0.707983 0.439382 0.316971 -0.228339 0.284126 -0.474528 -0.096945 0.280379 0.458839 1.299528 -0.782336 0.281641 1.075702 0.040790 0.265443 0.963544 0.230669 -0.092158 -0.213250 -0.492730 1.767801 0.597769 0.008738 1.048421 0.281558 1.277613 -0.202846 1.452521 0.891279 -0.894622 0.592457 -0.828893 -0.899191 0.003226 -0.904604 0.851934 1.023822 0.703528 -0.622823 0.600463 -0.063401 0.071125 0.243668 -0.937814 0.921809 0.827433 0.534853 0.676672 1.433698 -0.969306 -0.250470 0.645075 0.713494 0.499982 0.493134 -0.891754 -0.506788 -1.369801 -0.137619 -1.789133 -0.507583 -0.446248 2.121758 -1.309447 0.271706 0.781166 -0.235605 1.010100 -0.372680 0.116507 -1.109008 0.152783 0.020837 1.219182 0.197864 -0.071733 -0.134868 0.273230 0.367938 0.898694 0.119242 -0.666197 -1.244299 -2.240572 -0.552457 -0.455134 0.465783 0.440721 -1.429206 -0.065480 0.473354 1.381642 -1.732629 -0.254140 0.881468 0.691541 -0.026916 0.385484 -0.873963 -0.191292 0.220147 0.157236 0.598026 -0.887930 -0.038119 -0.471933 -0.098195 -0.041837 0.525972 -0.117611 -0.834033 -1.008818 -0.162246 0.228209 -0.037944 -0.010631 0.498840 -0.587591 0.870324 -0.510140 0.826129 -1.392975 -0.226017 -0.384382 -0.673057 -0.426978 2.156295 0.851520 1.071660 0.113376 -0.529938 -0.746826 -1.121014 -1.440735 0.485316 0.009418 0.884190 0.471945 -0.108911 0.495609 -0.509206 -0.152372 -0.150567 -0.610622 -0.136713 -0.095676 0.736125 -0.478370 -0.146885 -1.384589 0.051849 0.586898 -0.576065 0.419149 -0.406128 -1.256176 -1.270254 -1.098544 1.077472 -0.495837 0.365450 -0.411699 0.148642 -0.638675 0.107010 -0.964370 -0.013361 0.100887 -1.400191 -1.410714 0.204816 -0.353285 -0.356684 0.479986 -0.985355 -0.013939 0.628771 1.024384 0.403387 0.196075 0.033443 -1.646287 -1.246548 -0.451287 -0.686385 1.127294 0.691104 -0.134931 -1.248818 -0.573787 -1.014142 1.155291 -1.272714 0.224447 -0.564106 -0.267177 1.094189 -0.637604 -0.080644 -1.327901 0.500029 0.673891 -2.430560 1.346770 0.892202 -0.595120 -0.322742 -0.588867 0.192509 0.858586 1.366496 -0.812077 -0.658771 0.369835 -0.494454 -0.014856 -0.675220 0.936701 -0.526747 0.389465 -0.979766 -0.605822 0.528947 0.783697 -0.002446 0.614147 0.947445 0.635574 0.580534 1.182504 0.679397 -0.399462 -0.986243 -2.590759 0.873176 1.447538 0.022262 0.480707 -1.107728 -0.799268 0.388961 -0.149621 1.140292 0.441344 0.437623 1.093531 -1.031570 -1.082312 -0.108562 -0.139143 0.273320 -0.371779 0.523121 -0.497094 0.211831 0.276623 -0.125119 0.079549 -0.594175 -0.915635 0.063119 1.126145 0.607630 0.388717 1.279365 0.361894 -1.023351 0.184707 -0.157872 0.191455 -0.336319 -0.779951 -0.243682 -0.156300 0.111932 -0.600568 0.679456 -0.147264 -0.236961 0.159505 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.770298 -0.017397 -0.212648 1.136354 0.365184 -0.479394 0.185246 0.533474 -0.166512 -2.101629 -1.278570 0.521812 0.093307 -0.134245 0.501911 0.269501 0.183922 0.426185 -1.502173 0.514995 0.656014 0.453289 -0.230783 -0.170645 0.220649 -0.402570 -0.448421 0.204569 0.287302 1.201008 -0.680591 0.345198 0.960236 -0.237095 0.157190 0.881632 0.409218 0.088285 0.174507 0.067304 1.802946 0.291271 0.197605 0.981066 0.528503 1.162085 -0.681248 1.941880 -0.137519 -0.775554 1.072946 -0.480134 -0.524449 0.005065 -0.896953 0.948292 1.507899 0.720661 -0.698223 0.581440 -0.286385 0.039530 0.321444 -0.473835 1.043796 1.364539 0.484194 0.810817 1.781780 -0.599777 -0.240099 0.659781 0.666540 0.232721 0.535067 -0.758573 -0.453823 -0.994938 -0.316378 -1.248812 -0.222832 -0.481249 2.382217 -1.253032 0.090162 0.813082 0.275132 1.015895 -0.502553 0.065056 -0.902261 0.135431 -0.420256 1.537336 -0.027502 0.322812 -0.499115 0.237660 0.277044 0.822072 -0.205037 -0.616301 -1.408566 -2.078653 -1.234016 -0.333375 0.168183 0.284564 -1.868331 -0.245081 0.407127 0.823615 -1.847585 -0.110943 0.705711 0.790845 0.746841 1.096827 -1.575696 -0.253873 0.204747 -0.019210 0.217283 -0.336226 -0.075920 -1.260331 -0.112678 -0.039331 0.257658 -0.301215 -1.263881 -0.579596 -0.433246 -0.211185 0.023455 0.012045 0.469844 -1.058712 0.782981 -0.519569 0.676073 -1.847604 -0.725119 -0.572629 -1.431376 -0.253254 1.852579 0.703129 1.298549 0.004496 -0.971673 -0.929927 -1.495421 -1.473969 0.120897 -0.395885 0.792665 0.368826 -0.103814 0.190843 -0.433672 -0.266725 0.359137 -0.556409 -0.058731 -0.425354 1.599524 -0.560089 -0.113965 -1.482598 -0.238689 0.514030 -0.271648 0.504322 -0.357110 -0.939610 -1.522355 -0.910880 0.929820 -0.334423 0.425138 -0.499222 0.115978 -1.282999 0.132011 -0.926261 -0.106860 -0.142793 -1.088881 -1.260605 0.301045 -0.187478 -0.594310 0.089471 -0.951516 0.020701 0.832245 0.930999 0.484402 0.098014 -0.213766 -1.736294 -1.555984 -0.304761 -0.429700 1.142812 0.934055 0.056921 -0.636550 -0.431800 -1.403487 1.029582 -1.263017 0.065596 0.030223 -0.094638 1.205858 -0.830396 -0.470206 -1.553220 0.303626 0.218430 -1.988588 1.546233 0.543850 -0.755061 -0.321414 -0.680047 0.320786 0.722416 1.239997 -0.614782 -0.449448 0.434725 -0.168335 -0.111651 -0.825417 0.858615 -0.685286 0.722935 -0.965253 -0.600340 0.585504 1.116779 -0.245690 0.352331 0.428049 0.176869 0.447798 1.091648 0.798494 -0.474475 -0.644777 -2.135245 0.556724 0.095168 -0.221082 0.068454 -0.983728 -0.738037 0.327478 0.078201 1.258793 0.302708 0.569476 0.997867 -1.272896 -1.169108 0.008298 0.178240 0.295327 -0.631515 0.277029 -0.620421 0.191076 0.421666 0.126744 0.159491 -1.051984 -1.010733 -0.140678 1.096450 0.128041 0.095934 1.266006 0.413132 -0.673581 0.140980 0.045811 0.450054 -0.188715 -0.782013 -0.273230 -0.388176 0.027842 -0.599230 1.050073 -0.337883 -0.115731 0.585077 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 1.478452 1.684419 -0.143449 1.248586 0.715014 -1.266134 -0.094742 2.243848 -1.826445 -1.660037 -2.333751 1.318109 -0.494759 0.024890 2.406947 0.188899 0.140449 -0.192684 -3.563742 1.255345 -0.091283 0.097754 -0.162743 -1.232413 0.738733 1.274273 -1.405300 1.290819 0.358621 1.026535 -1.344183 -0.183437 0.431365 0.944291 1.911885 -0.746196 1.366104 0.555396 -0.669813 0.051814 2.897402 1.147285 -0.337382 1.977479 1.859500 1.474682 -0.869714 1.991035 -0.093463 0.127610 1.699810 -2.365644 -0.983378 0.829532 -0.983882 1.033422 2.276806 0.626004 -1.299565 1.536334 0.440052 -0.439040 -0.150677 -2.622476 1.879880 1.280101 1.045717 -0.036698 1.855340 -0.523576 -1.246412 0.180645 2.685214 0.216216 -2.687659 -2.798054 0.061198 -4.419099 0.766339 -4.151983 -1.211120 -1.158951 2.795794 -1.686076 1.094657 1.857490 -2.042733 -0.029149 -1.808822 -0.083398 -0.976245 -1.036137 -0.270865 1.893404 0.133676 -0.512955 1.586222 0.358028 2.176944 2.265612 -0.518021 0.183537 -2.337657 -2.207045 -0.856334 3.059284 0.364236 -0.671678 0.308504 -1.369910 0.937733 0.651713 -1.195073 -1.867321 2.002442 0.418192 -1.440256 1.498716 -2.320014 0.270050 0.419883 0.699363 1.968957 -1.322302 -0.234040 -0.920139 -0.827252 -0.215127 1.888391 0.053205 -0.526643 -1.391273 -0.470878 -0.404984 -0.837886 -3.005623 -2.113550 -0.803256 1.690727 0.201566 1.273707 -2.007108 -0.472375 -0.110482 -0.687270 0.710528 2.351622 1.094436 1.274794 1.919088 -0.487776 -0.503215 -0.566579 -1.488921 2.356860 0.752660 1.692600 -0.459030 0.069345 0.530171 -0.017300 -1.755470 0.818561 -1.109694 -1.016169 -1.638755 1.522045 -0.496020 -0.451609 -2.380214 1.154467 2.021393 -0.560544 -0.739739 -0.598864 -2.458029 0.435756 -1.204518 1.065619 0.140560 0.677445 0.673961 1.995702 -2.371463 -0.055220 -2.227029 1.207145 0.588188 -2.413599 -0.591181 0.173220 -0.279589 0.902318 -0.181382 0.003584 -0.327429 0.754239 3.074210 -0.337639 0.898473 0.950446 -2.165372 -3.243217 -1.498860 0.254056 1.508777 -1.008746 0.874029 -2.319408 0.556529 -1.375527 2.182063 -1.004030 -0.919748 -1.946713 0.109645 2.146071 0.104370 -1.396562 -1.308883 0.662180 1.492873 -3.130067 0.395189 1.039660 -0.383172 -1.551218 -1.368100 -0.022150 1.843753 3.583010 -0.518312 -0.807082 0.198760 0.312338 -0.196572 -1.472372 2.232302 -0.254253 0.683639 -1.538723 -1.323631 0.406542 1.337062 0.988665 2.173013 0.622400 2.258642 -0.807688 2.243712 -0.223098 -1.236914 0.363600 -2.750907 -0.017914 5.010754 0.061378 0.809853 -1.308324 -1.893635 -1.204900 -0.438301 1.277593 1.485077 0.321221 1.024924 0.357210 -1.078374 -0.263865 1.645546 -0.259739 -1.682703 0.284608 -0.488131 0.350730 1.607761 -0.761279 1.813301 -0.115949 -3.171036 -2.539362 0.099288 0.154014 0.597986 1.660681 0.437904 -1.891520 0.478544 -0.271958 1.406737 1.279422 -1.643144 -1.136128 -2.002732 -0.514298 0.033227 0.043767 0.513653 -0.500941 0.816827 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 5.812151 0.136136 -1.277941 10.032881 0.423963 -3.368427 0.552872 4.873464 -1.673221 -17.100901 -11.374701 9.347333 0.670900 1.893020 3.360724 2.284477 0.190449 0.865857 -21.104132 4.914584 6.034876 2.797033 1.086732 -2.744959 2.632555 -4.072117 3.586825 3.363547 2.503567 9.544880 -6.084243 3.790259 8.151305 0.210818 5.647837 6.915029 -2.009368 0.105965 -3.262931 -2.791452 13.906316 7.372623 -0.593232 6.256102 2.442079 10.264269 0.877282 6.491944 3.502807 -7.588569 3.035855 0.703631 -6.972877 -1.296992 -6.696895 5.390907 6.836837 4.376102 -5.432520 3.995158 -1.873099 -0.902369 2.376958 -2.813505 10.674133 3.253727 7.449247 6.026994 10.192949 -6.446577 -1.854376 5.336664 4.954920 1.510159 5.157073 -6.933278 -8.462961 -6.640020 -0.303049 -16.533411 -6.324107 -0.964831 14.295482 -9.798173 1.772605 2.545039 -1.173365 8.921333 -4.772523 0.111928 -8.068837 -0.685089 -2.325746 12.160023 1.083711 -0.324033 1.924365 4.037749 4.285736 8.204578 0.001486 -6.460156 -4.740559 -15.639080 -2.043934 -3.077494 5.131952 4.643848 -10.275213 -1.728442 -0.201704 11.684084 -13.129671 -1.451913 7.448558 4.843897 2.851261 -1.893485 -5.035859 0.184429 1.333326 1.613719 7.458693 -6.329980 0.619283 -0.539024 1.532896 0.245472 4.726698 1.035401 -9.551873 -7.866736 0.063026 -0.161804 -0.565438 0.700510 4.216973 -4.076622 7.005774 -4.739234 8.183392 -11.496309 0.610461 -4.396894 -4.883774 -2.439717 9.283619 8.208440 5.700202 -1.748370 -2.938886 -2.432918 -10.928626 -12.495373 3.977441 2.524923 4.248604 2.727322 -1.062514 5.212133 -4.436028 0.193664 2.176922 -4.851285 -2.231922 -1.640328 5.668901 -0.175100 -1.778890 -6.944654 -0.540889 0.160716 -2.173135 6.622431 -2.574154 -13.394316 -13.057948 -8.076831 8.417470 -3.116846 0.694780 -4.345248 -0.450218 -5.743776 1.257780 -9.709651 2.282352 -0.231820 -7.883836 -10.166839 0.160740 -2.157009 -1.224711 0.961426 -6.890740 -1.668210 6.602964 4.610063 3.057143 1.552202 1.735748 -10.204063 -7.534226 0.770146 -5.175005 8.499167 4.332208 -1.618633 -9.525634 -3.415405 -8.332283 8.088351 -5.080492 2.153712 -4.633236 -3.500496 9.752064 -5.192612 -0.109053 -7.808008 3.334987 4.933608 -16.509549 11.163166 8.019596 -3.904424 -1.734502 -0.846099 1.144869 6.804473 9.110318 -6.282117 -6.151751 0.863066 -3.494112 -0.038338 -2.794864 7.085710 -5.509729 1.831837 -7.071940 -4.896801 4.692470 4.729291 1.553651 4.717742 4.266908 1.233034 3.501784 8.647362 6.266107 -1.635698 -8.852352 -19.238853 7.057420 4.982434 -1.013316 0.323062 -4.983019 -8.118870 1.610447 -1.230045 9.143028 3.823153 -2.479763 8.002819 -10.206787 -9.287515 -5.408078 -0.512262 -0.188632 -1.416511 1.446192 -3.536514 3.152567 2.910971 -1.519119 -0.049355 -4.414547 -4.252513 0.242251 7.668323 4.505685 2.216323 10.196856 3.530220 -6.669501 -1.265992 0.892066 -1.212850 -1.984527 -8.463254 -4.538034 -2.354449 1.870352 -3.857448 2.489634 -0.291306 -0.475791 1.804145 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.658189 0.068677 0.362806 0.383752 0.202807 -0.613471 0.461386 0.805843 -0.154851 -1.492443 -0.980215 -0.021906 -0.043785 -0.263526 0.299942 0.006080 -0.024264 0.691609 -1.601428 0.398256 0.693843 0.718420 0.248817 -0.536044 0.225315 -0.113527 -1.137209 0.305046 0.214440 1.002241 -0.590533 -0.244728 0.767110 0.061061 -0.151854 0.915782 0.683511 0.061407 0.629104 0.111420 1.254640 0.310587 0.005002 0.627901 0.478816 0.881493 -0.400908 1.316217 -0.363061 -0.620088 0.650900 -1.581565 -0.747583 -0.011211 -0.411564 0.698151 1.431413 1.184683 -0.445119 0.779151 -0.072080 0.047207 0.263234 -0.818164 0.478239 1.183048 -0.169713 0.253050 1.535902 -0.539306 -0.215875 0.338591 0.564665 -0.085648 -0.017444 -0.858071 0.026376 -1.886242 0.000403 -1.693431 -0.301949 -0.181544 1.731887 -1.046547 0.594568 1.192062 0.060585 0.558354 -0.317265 -0.201093 -0.611686 0.250781 -0.180043 1.437371 -0.146938 0.094529 -0.230970 0.206578 0.583318 0.665378 -0.163975 -0.189797 -1.683524 -1.878401 -0.567952 -0.136027 -0.198839 0.070268 -1.268443 -0.516183 0.959603 0.578783 -1.529046 -0.143481 0.844922 0.723244 -0.395502 0.680271 -1.086473 -0.008077 -0.209056 -0.096914 0.178533 -0.720659 -0.288861 -0.783160 -0.289439 0.036710 0.085684 -0.404382 -0.978268 -0.490766 -0.289763 -0.306264 -0.038697 -0.117260 -0.018525 -0.588978 0.494861 -0.841376 0.495256 -1.300148 -0.156442 -0.102279 -1.073486 -0.127915 1.591231 0.298750 0.311467 0.118114 -0.657135 -0.784550 -0.672572 -1.138984 0.422024 -0.264137 1.174610 -0.000853 -0.076172 -0.244151 -0.192481 -0.532577 -0.236736 -0.353262 0.128178 -0.350517 1.485872 -0.552557 -0.166705 -1.215950 0.117279 1.065935 -0.400516 -0.155648 -0.531908 -0.025391 -0.751144 -0.917120 0.772361 -0.111615 0.189200 -0.373682 0.316375 -0.974672 0.381016 -0.549860 0.145872 0.066191 -0.967850 -1.036503 0.195573 -0.232986 -0.335574 0.195464 -0.541521 -0.125232 0.323485 0.777257 0.235320 -0.017690 0.135880 -1.385423 -1.301401 -0.623781 -0.072880 0.646464 0.609561 0.385102 -0.663356 -0.151115 -0.823197 0.997067 -0.776573 -0.095899 -0.383844 0.067663 1.310031 -0.332370 -0.130320 -1.290015 0.342423 0.336030 -1.379950 1.304319 0.438022 -0.543894 -0.443787 -0.779646 -0.025283 0.889324 1.202629 -0.502098 -0.516608 0.548483 -0.558599 -0.146978 -0.813820 0.700147 -0.488160 0.937811 -0.668096 -0.377871 0.192023 0.974209 -0.227282 0.727133 0.457136 0.583667 0.143050 0.901498 0.200775 -0.590200 -0.452735 -1.615315 0.626933 0.993109 0.285891 0.105837 -0.800264 -0.589568 0.408569 0.553906 0.954781 1.236045 0.482061 0.713574 -0.738041 -0.892255 0.275920 0.410090 0.461706 -0.664660 0.066723 -0.316532 0.212764 0.508295 0.065493 0.696778 -0.821137 -1.457843 -0.276074 0.999143 0.227631 -0.235697 1.102388 -0.097617 -0.515313 0.321902 -0.220523 0.877237 -0.156911 0.241844 -0.111964 -0.425152 0.103597 -0.437643 1.272586 -0.217455 -0.367459 0.640722 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 1.165775 0.314334 -1.102346 2.246887 0.066268 -0.613184 0.129768 0.405489 -0.523438 -3.707022 -2.124002 0.829927 0.638785 0.136749 0.712187 1.188738 -0.407809 0.644465 -2.257900 0.880765 1.489126 0.756766 -0.055346 -0.327324 0.344696 -0.746211 -0.235588 -0.104250 0.569816 2.200577 -1.011857 1.124056 1.927079 -0.413369 0.091166 1.357479 0.237273 0.375280 -0.204051 0.053509 2.537823 0.759099 0.293214 0.892011 0.106001 1.973825 -0.447450 2.735534 -1.482233 -1.630269 1.467937 -0.580909 -0.862128 0.049041 -0.977185 1.419448 1.973871 1.435334 -0.898046 0.683021 -0.795509 0.198049 0.648040 -0.220385 1.919911 1.835941 1.322784 1.432285 2.493248 -1.130986 -0.041917 0.973244 0.185405 -0.477193 1.782865 -1.240503 -1.291680 -0.364749 -0.402668 -2.248078 -0.855563 0.057512 4.277524 -2.376403 -0.061938 1.034718 0.855126 2.158784 -1.004458 0.465384 -1.386105 0.118860 -1.006168 2.890851 0.154121 0.266498 -1.143512 0.678303 0.559854 0.910012 -0.075876 -1.088431 -1.985207 -2.423169 -1.666719 -0.810225 0.726454 1.234924 -3.344313 -0.646659 0.245368 1.874368 -3.481648 0.308374 1.521415 1.627398 2.582674 1.589540 -2.179193 0.322453 0.382938 -0.006438 0.835928 -0.602032 0.150299 -1.296395 0.212418 0.026792 0.145174 -0.212892 -3.046482 -1.014301 -0.440326 -0.988170 0.235189 0.707147 1.450834 -1.592878 1.388366 -0.996926 1.233031 -3.227421 -0.851553 -0.585972 -3.029274 -0.598221 2.560551 1.720599 1.785399 -0.761795 -1.638438 -1.292607 -2.810923 -2.492332 -0.266317 -0.150119 0.882345 0.866591 -0.130735 0.763704 -0.993263 0.554283 1.072832 -0.762487 -0.301022 -0.168705 2.971588 -0.685457 -0.432768 -1.843033 -0.952162 -0.302209 -0.254559 1.760097 -0.189128 -1.919039 -3.477138 -1.315735 1.769432 -0.720391 0.637891 -1.463987 -0.080231 -2.233003 0.055191 -1.769091 0.252747 0.303852 -1.475737 -2.233824 0.496065 -0.135439 -1.302752 0.085359 -1.475740 -0.260219 1.862037 0.471633 0.891511 0.080073 -0.163951 -2.463366 -2.006535 0.214305 -1.407879 1.829399 1.631632 -0.171679 -1.197669 -0.753605 -2.420564 1.466586 -1.326098 0.280405 -0.502874 0.361379 1.890831 -1.680238 -0.302791 -2.293310 0.290580 0.252576 -3.149821 2.388336 1.231474 -0.759119 0.110857 -0.238605 0.639591 1.175535 1.396516 -1.136319 -1.154239 0.123844 -0.607503 -0.048675 -0.637042 1.190029 -2.045132 0.591929 -1.099315 -0.493971 0.935582 1.528423 -0.300112 0.514429 0.742868 -0.498929 0.896549 1.273306 1.525383 -0.954312 -1.282516 -3.639626 1.044738 -1.004195 -0.747427 -0.532034 -0.846592 -0.806293 0.628960 -0.216709 1.919658 0.608652 -0.090880 1.650042 -2.786660 -2.064395 -0.535212 0.380787 0.124953 -0.531366 -0.081414 -0.604811 0.695276 1.054301 -0.091320 0.035354 -2.102411 -0.727250 -0.057373 2.488815 -0.081678 0.171342 2.169913 0.776294 -0.679552 0.024701 0.248987 0.320104 -0.546934 -1.770600 -0.659341 -0.060456 0.276263 -1.118250 1.135757 -0.769941 -0.723592 0.861415 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.540463 -0.061976 0.402211 0.438206 0.423742 -0.413932 0.394577 0.587675 0.052901 -1.215548 -0.677428 0.230281 -0.110985 -0.287201 0.184515 -0.083990 0.184528 0.599267 -0.869716 0.271045 0.343815 0.515590 0.083147 -0.519798 0.124752 -0.152773 -0.509560 0.365371 0.217427 0.769867 -0.452180 -0.313946 0.576273 0.127544 0.014748 0.791443 0.830740 0.027640 0.203640 -0.109029 1.206594 0.262041 -0.007852 0.775671 0.548196 0.755818 -0.178841 0.998928 -0.068358 -0.393376 0.357265 -0.998058 -0.539572 -0.191638 -0.600505 0.680288 1.093061 0.775293 -0.514907 0.643229 0.029430 0.042790 0.199268 -0.570346 0.305763 0.849824 -0.162159 0.314030 1.341516 -0.613796 -0.355824 0.472019 0.749389 0.254279 0.193517 -0.566470 -0.143673 -1.395989 -0.108272 -0.990209 -0.098008 -0.293546 1.404815 -0.785874 0.431081 1.042631 -0.025340 0.345760 -0.230453 -0.265277 -0.620759 0.240237 -0.093443 1.171827 -0.012340 0.115798 -0.160571 0.157078 0.418285 0.689884 0.057822 -0.279232 -1.103401 -1.645580 -0.506761 -0.235626 -0.136976 -0.146616 -0.827794 -0.368972 0.807515 0.617367 -1.112947 -0.184266 0.661447 0.476236 -0.164046 0.096490 -0.647550 0.018535 -0.057016 -0.194151 0.020500 -0.617833 -0.329768 -0.369093 -0.196539 -0.060427 0.162956 -0.317658 -0.611857 -0.405796 -0.279272 0.039653 -0.070018 -0.289025 -0.140647 -0.768867 0.388240 -0.575267 0.476192 -0.919370 -0.148515 -0.131577 -0.769485 -0.146918 1.462658 -0.080207 0.636206 0.164681 -0.482833 -0.712959 -0.436394 -1.099497 0.500724 -0.174269 0.791220 0.079154 -0.049538 -0.175269 -0.246465 -0.539026 -0.055477 -0.348660 0.096115 -0.149056 0.968115 -0.599292 -0.110524 -1.061503 0.212884 1.003055 -0.076757 -0.150549 -0.514901 -0.300673 -0.450501 -0.768995 0.594967 -0.168368 0.149913 -0.105228 0.098647 -0.635581 0.324097 -0.473923 0.336178 -0.080553 -0.865156 -0.872213 0.215118 -0.295428 -0.147909 0.316592 -0.510447 0.048675 -0.043783 0.512500 0.060238 0.056417 0.125508 -1.272541 -1.092904 -0.539202 0.079825 0.655788 0.386684 0.361963 -0.494843 -0.219397 -0.639952 0.743254 -0.866567 -0.070351 -0.133419 -0.082572 0.977005 -0.278914 -0.166158 -1.139114 0.369768 0.378630 -0.832845 1.048467 0.464737 -0.548590 -0.514970 -0.565051 -0.076291 0.650916 1.181527 -0.553321 -0.454134 0.599802 -0.383748 -0.143485 -0.676581 0.539345 -0.171408 0.840466 -0.766045 -0.490806 0.101882 0.856900 -0.222049 0.510240 0.452682 0.445989 -0.074584 0.975307 0.290859 -0.154952 -0.576271 -1.221363 0.518585 0.600477 0.245886 0.210013 -0.684392 -0.528158 0.362448 0.454481 0.786255 0.807833 0.423733 0.679829 -0.626481 -0.738709 0.376137 0.087438 0.492171 -0.668206 0.308911 -0.407246 0.078795 0.098416 0.032710 0.318906 -0.379238 -0.886635 -0.185555 0.702194 0.300179 -0.141122 0.900943 -0.024379 -0.564459 0.369365 -0.168639 0.668087 -0.024524 -0.063619 -0.086799 -0.404956 0.082296 -0.313843 1.057375 -0.136678 -0.197215 0.452694 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 3.562888 0.977784 -3.985512 6.906152 -0.617715 -2.064972 0.031944 1.261036 -2.052571 -10.860202 -6.725528 4.331561 1.909872 1.029488 1.642467 3.899485 -1.097127 0.962230 -9.231608 2.862632 4.248058 1.086428 -0.485033 -0.695754 1.076141 -2.782184 1.028097 0.000619 1.263823 6.422256 -2.981854 3.954563 5.516766 -1.436365 1.653480 4.120499 -1.767457 1.052548 -1.098592 -0.005219 7.231148 3.304525 0.450466 2.131433 -0.184051 6.025969 -0.807964 6.659873 -2.871443 -4.798433 3.885310 1.583709 -3.392793 0.165807 -3.234254 3.155227 4.978328 3.057756 -2.239117 1.818346 -2.703630 0.122158 1.915509 -0.066325 6.967758 3.917044 5.070266 4.694822 6.584875 -3.233812 0.165391 2.943863 0.606233 -1.325918 5.268648 -3.843607 -5.368060 0.575976 -0.933763 -8.208986 -2.966112 0.451348 12.190204 -6.719774 -0.934382 0.837956 2.246807 6.834499 -3.283342 1.407452 -4.040416 -0.193481 -3.596864 8.797109 1.012987 1.270047 -2.199332 2.365277 1.721319 3.159526 -1.176073 -3.952743 -3.930082 -7.583484 -3.584621 -2.561203 2.762492 4.451197 -9.223233 -1.593058 -0.804163 6.574743 -9.960028 0.917508 4.211833 4.092897 7.220217 3.456784 -6.127732 0.887629 1.077293 0.622502 3.739644 -1.823222 0.672684 -2.612913 1.341777 -0.204681 1.390677 0.268268 -9.547114 -3.304678 -0.588293 -2.885077 1.042318 2.537638 4.668996 -3.561020 4.163552 -2.832927 3.992073 -9.573527 -1.530834 -2.624596 -7.762373 -1.736083 4.898281 6.598875 4.769832 -2.965482 -3.198295 -2.536306 -9.240669 -7.613388 -0.188672 0.172159 1.759288 2.320215 -0.623557 2.971403 -3.178674 2.126478 3.393991 -2.627366 -1.202851 -0.931211 8.640181 -0.124240 -1.367992 -4.491570 -3.186269 -2.509255 -0.232101 5.939328 -0.512027 -7.889833 -10.912526 -4.211128 5.343762 -2.115813 1.204800 -4.411866 -0.687273 -5.845987 -0.173951 -5.570679 0.521905 0.759618 -3.343905 -6.393398 0.714707 -0.110708 -3.692705 -0.398269 -4.523105 -1.175758 6.702837 1.049286 2.733264 0.464105 -0.224865 -5.901204 -4.750643 2.223921 -4.509195 5.075896 5.202056 -1.131154 -4.350501 -2.058655 -7.234941 4.155947 -2.977909 1.538949 -1.936916 0.207272 5.772574 -4.896878 -0.345682 -5.384832 1.236388 0.797192 -11.105061 7.344332 4.414905 -1.952463 0.664168 0.261366 1.856748 3.279194 3.600040 -3.356113 -3.495345 0.122553 -1.779558 0.025484 -0.766097 3.843903 -5.697997 0.772975 -3.074459 -1.298737 3.386109 3.527923 -0.037642 1.576830 1.392291 -1.977796 3.358077 3.486749 4.739960 -2.557017 -4.501292 -12.117530 3.226342 -3.596889 -2.763559 -1.177372 -1.851852 -3.320160 1.902912 -2.010057 5.931184 0.218873 -2.110827 4.742372 -8.042742 -6.190004 -3.349770 0.535803 -0.085179 -0.856572 -0.211066 -2.111733 2.093319 2.925347 -0.222963 -0.281074 -5.655011 -1.119130 0.467002 6.835454 0.658381 0.957934 6.267138 2.490907 -1.999913 -1.514038 1.092260 -0.585530 -1.352633 -6.278664 -2.428035 -0.348759 1.414923 -3.131547 2.115367 -1.432104 -1.009257 2.542509 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 3.621797 -0.393557 1.695380 2.532291 1.808704 -2.511491 -0.636704 4.144235 -1.502243 -4.361796 -5.093306 0.403555 -1.211486 0.494400 4.417145 -0.574724 0.222435 -0.756025 -8.027387 2.953292 0.061135 0.491276 -0.602061 -2.368147 1.857424 1.322769 -0.868811 2.109680 0.575787 1.462519 -3.886754 -0.066358 0.794043 1.339535 3.153329 -0.743039 0.244869 -1.268109 -0.656758 -2.205144 6.317172 1.762190 0.180497 4.074490 2.935990 1.641256 -1.578664 3.745641 1.065945 -1.254548 3.160558 -5.483788 -1.907628 1.589769 -3.401125 3.439549 4.449785 0.872997 -2.467240 1.670047 0.198823 0.417292 0.544830 -4.299605 4.623403 1.620458 3.160268 0.629540 3.882009 -1.654932 -0.902898 2.169952 5.136419 1.383068 -3.039054 -4.284370 1.317957 -8.177710 1.748128 -6.309306 -0.401064 -2.558937 3.847020 -2.131311 2.125626 2.906679 -2.551001 1.943709 -3.468006 1.188227 -1.771313 0.126177 -0.596289 2.590141 -1.563173 -0.746702 2.916742 0.947232 1.839499 4.749173 -1.142360 0.854882 -2.832368 -7.002501 -1.910065 4.361759 0.751535 -1.588147 -2.036880 0.395620 1.834573 0.950989 -1.141378 -3.345970 1.904116 1.389579 -4.007227 1.010948 -2.670680 -2.910930 -0.376539 2.805117 1.859721 -2.203559 1.695047 -3.788050 -0.316237 1.341963 4.383379 0.373916 0.014919 -3.010129 -0.696757 0.445580 -2.275525 -2.558214 -0.561462 -0.921256 2.923436 -0.071541 2.003368 -4.073467 -0.237389 -2.963254 0.042740 1.459508 5.647147 1.352484 1.333549 4.493179 -1.143832 -0.914775 -1.756624 -2.933076 2.305919 2.027346 2.586851 -0.294114 0.561821 1.363909 0.499081 -4.188390 0.407223 -3.147842 -2.470594 -4.020113 1.161108 -0.877303 -0.641991 -4.398288 3.726912 4.312783 -4.198739 -0.445789 -0.253803 -1.797501 -0.922990 -2.997560 1.888357 0.402635 0.561445 0.917045 2.812112 -3.220821 1.520928 -3.573388 1.163182 0.153745 -5.391926 -2.079683 -1.268621 -0.090640 1.004951 -0.520720 -1.625750 0.532456 1.128600 5.775558 -0.434481 2.506833 1.831384 -5.219190 -6.851182 -3.402219 1.318148 3.228530 0.018855 -0.113292 -2.708542 -1.023247 -0.993106 4.190444 -3.158137 -0.570097 -2.397663 -0.887328 2.755309 -1.371920 -2.052966 -3.118330 0.769833 2.069300 -5.674541 3.277299 1.413559 -2.505947 -2.698480 -5.768460 1.605709 2.186959 7.325082 -0.958731 0.724195 0.256700 1.473921 -1.063736 -3.729241 4.088352 0.165687 -0.059631 -2.677396 -4.253667 0.370645 2.119316 1.599044 2.868302 1.859496 4.660499 -0.392796 5.318968 0.237966 -2.240641 -1.710534 -6.549886 1.146464 9.149644 0.264024 1.236880 -4.185705 -4.833201 -2.207626 1.493805 2.692496 5.108652 3.890651 1.933579 -0.525147 -1.970087 -0.513976 2.782133 -1.416430 -2.454993 0.073950 -2.101117 -0.249460 1.302360 -0.523720 0.594932 0.130284 -8.080471 -3.916605 0.873573 1.261228 0.831094 3.230525 3.060617 -3.360307 0.358284 -0.109775 1.064869 0.755457 -0.087559 -2.449804 -2.693272 -1.729297 -1.178669 1.379397 1.968376 0.247483 0.059816 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.949725 1.531396 -3.007263 7.921248 -0.633692 -1.999297 0.093323 2.698236 -2.516532 -13.154580 -9.348473 5.262323 1.533325 2.624676 2.857660 3.103045 -1.138319 0.837887 -13.252695 3.225070 5.279906 2.143082 1.010130 -0.808551 1.936018 -2.472396 0.055242 0.397349 2.123000 7.434140 -4.040262 4.189767 6.563386 -1.113732 2.143907 4.269225 -1.697287 1.043820 -1.748610 -1.523786 9.044104 3.868166 1.190475 3.728795 -0.375835 7.185552 -1.377376 8.111124 -0.670460 -6.461134 4.891207 -1.856299 -4.520768 0.558218 -3.393216 4.606111 5.315746 4.126318 -2.741009 2.409757 -2.319705 -0.303905 1.770765 -2.871939 7.665565 4.713830 5.349875 4.850779 7.090318 -4.225469 -0.599007 3.781640 1.040229 -0.555114 3.599467 -6.146792 -5.028179 -2.073250 -0.413236 -11.302762 -4.579026 -0.311981 14.398040 -8.174223 0.144127 1.623790 0.327271 7.229735 -3.501467 1.987548 -5.130998 -0.574389 -3.002968 8.181703 0.780954 -0.277464 -0.620334 2.147415 2.797551 4.856627 -1.755955 -3.231323 -5.687405 -9.490238 -2.966215 -1.333903 4.477680 5.355684 -9.477170 -1.991524 -1.148991 7.540682 -11.007276 -0.366552 5.692296 5.258463 4.352604 5.164029 -6.532457 -0.234522 1.903633 0.980958 5.828123 -3.401462 1.385332 -2.973791 0.305586 -0.358348 2.626926 0.326200 -9.361483 -5.857496 -1.401520 -2.651636 0.668466 1.425016 4.706669 -2.449008 5.848349 -2.789093 4.847015 -10.334451 -1.368051 -2.897513 -7.377766 -1.812628 8.567929 7.857305 5.327793 -2.180819 -3.677983 -3.228434 -9.462847 -7.354873 0.822715 1.406325 3.877610 3.006941 -0.670616 4.281165 -3.231484 1.609726 2.082970 -2.909194 -1.806354 -1.106803 7.326295 -0.446593 -1.455898 -6.817546 -1.682405 -2.185867 -3.255364 5.718051 -0.577479 -8.867178 -11.245972 -5.475843 6.335954 -2.032676 1.814002 -4.472225 0.300294 -5.441426 -0.451087 -7.504020 0.307464 1.516898 -5.936539 -7.595489 0.786122 -0.504542 -3.633976 0.531093 -4.688999 -1.705250 7.944954 4.236211 3.282862 1.023330 0.385052 -7.488862 -5.824865 0.604257 -5.677012 5.404183 5.411622 -1.512484 -6.345698 -2.708040 -7.370551 5.474480 -3.119009 1.225590 -3.971281 0.278496 6.755021 -5.309920 0.674191 -6.784114 1.273485 2.838086 -16.392610 6.974216 4.654454 -1.704251 -0.016251 -0.834264 1.385491 4.762740 5.378757 -3.482332 -4.018439 -0.039193 -2.593959 0.173922 -2.274792 5.068905 -6.036771 0.068288 -3.620427 -2.215044 3.743541 3.457309 0.748301 2.884788 3.617143 0.537936 4.879706 4.680835 5.168624 -4.177530 -5.091431 -15.671435 4.943786 3.030161 -2.414433 -0.643607 -3.545018 -4.679722 2.081687 -2.010513 6.558165 1.977068 -0.707840 5.750940 -7.838681 -6.634936 -3.491521 1.059173 -0.471341 -0.992643 -0.875350 -2.218690 2.896105 4.132810 -1.713244 0.578736 -5.513018 -4.285547 -0.364557 7.611684 1.451201 3.148584 7.601793 3.004674 -3.545311 -1.001907 1.158372 -0.163968 -2.541479 -6.828625 -2.891878 -0.642547 0.639983 -3.287699 1.420078 -1.218558 -2.388678 2.646231 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 1.546184 -0.626445 -0.432943 3.218911 0.437110 -0.594972 0.124687 0.643024 -0.145343 -5.051606 -3.156604 2.288343 0.212120 0.517926 0.854912 0.841585 0.414785 0.196774 -5.137123 1.255732 1.586531 0.592003 0.368099 -0.344020 0.666072 -1.483807 1.837055 0.807895 0.754710 2.763930 -1.593726 1.342833 2.424978 -0.105566 1.527592 2.211923 -0.489053 0.149190 -1.191706 -0.589676 4.073734 1.617764 0.267143 1.833905 0.620038 2.966791 0.684694 2.561011 1.927257 -2.072301 1.455561 0.404095 -1.626594 -0.506370 -2.334417 1.458194 1.986801 1.030550 -1.654648 0.909578 -0.448019 -0.096350 0.656270 -0.442793 3.021039 0.862104 2.246708 1.839805 2.976975 -1.967622 -0.537594 1.798045 1.513679 0.854922 2.061538 -2.426516 -2.709319 -1.034565 -0.588693 -3.588764 -1.311098 -0.395859 4.014014 -2.625250 -0.041947 0.451915 -0.601313 2.587794 -1.001251 0.052920 -2.455661 0.024577 -0.523703 3.045560 0.342509 0.007631 0.273224 0.905006 0.737652 2.209972 0.259763 -2.260529 -1.056759 -4.558769 -1.031868 -1.358289 1.700490 1.279527 -3.257435 -0.228413 -1.100785 2.770059 -3.807301 -0.275910 1.937098 1.505818 1.559630 -0.781424 -1.285259 -0.312120 0.871457 0.770238 2.005162 -1.592684 0.154062 -0.792720 0.698153 0.091605 1.194274 0.007744 -1.891312 -2.236331 -0.339489 0.556468 -0.054852 0.281241 1.505416 -1.411276 1.978114 -1.055360 2.334450 -3.440014 -0.360988 -1.520434 -1.579542 -0.948368 3.402312 1.898576 2.601427 -0.720482 -1.203183 -0.762651 -3.273944 -3.578338 0.677017 0.189962 0.881975 1.329516 -0.273407 1.693590 -1.369993 0.186349 0.745741 -1.210681 -0.617202 -0.320392 0.492294 -0.198138 -0.436483 -2.090414 -0.381702 -0.146742 -0.370909 2.294566 -0.643359 -4.579622 -3.847472 -2.301379 2.394366 -1.196465 0.420167 -1.253749 -0.331229 -1.832059 0.275839 -2.794401 0.151214 -0.140830 -2.375958 -2.944271 0.145619 -0.761947 0.008527 0.507447 -2.156893 -0.354681 1.886901 1.719810 1.130865 0.641527 -0.001125 -3.295455 -2.216053 0.254975 -1.593977 2.797870 0.925751 -0.610628 -2.469675 -1.265321 -2.418583 1.909695 -1.656835 0.628424 -0.746513 -0.859213 2.464314 -1.580523 0.484004 -2.255175 0.827294 1.334687 -5.381795 3.016350 2.418270 -1.251931 -0.444257 -0.059706 0.467034 1.501323 2.288610 -1.671572 -1.641991 0.333572 -0.721007 0.067103 -1.033780 1.816850 -1.532236 0.358902 -2.215556 -1.562997 1.418068 1.417152 0.208261 0.598537 1.310870 0.179751 0.954393 2.615316 1.848611 -0.042509 -2.609535 -6.123409 1.768597 1.540213 -0.429648 0.589621 -1.534962 -1.944739 0.694278 -0.663691 2.748802 0.955807 -0.311419 2.490172 -2.861994 -2.683712 -1.507304 -0.651610 0.119085 -0.375392 0.436515 -1.395604 0.713086 0.352342 -0.332597 -0.463291 -1.159447 -0.397228 0.391805 2.420843 1.135636 1.006675 2.791437 1.105112 -1.766963 -0.401117 0.578832 -0.562936 -0.292347 -2.742463 -1.269889 -0.446613 0.564827 -1.124580 0.631186 -0.616495 0.240653 0.294007 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.487003 0.486787 -3.466012 7.475800 -0.797088 -2.220445 -0.041464 1.855346 -1.884047 -11.006515 -7.204225 6.120148 1.577175 1.355500 2.050045 3.021427 -0.801632 0.452592 -11.311143 3.157132 4.006995 0.916819 -0.592611 -0.969820 1.170394 -2.780422 2.832591 1.110029 1.411490 6.513344 -3.261711 3.764118 5.308792 -1.172073 2.631415 4.360604 -2.270860 0.795785 -2.210277 -0.985338 7.975502 3.988067 0.117937 2.951782 0.251818 6.371179 0.225501 5.395323 -0.286611 -5.092781 3.009667 3.262415 -3.885162 -0.604587 -3.751775 2.903861 4.466936 2.827847 -2.771721 2.092683 -2.642293 -0.400993 1.886476 0.011156 7.467556 2.669910 5.774081 4.793179 6.387920 -3.938334 -0.156892 3.385496 1.579928 -0.347682 5.149286 -3.931774 -6.275009 -0.718635 -0.723267 -9.457616 -3.853999 0.551255 11.685849 -6.635819 -0.584290 0.439910 1.213113 6.912817 -3.669995 1.277992 -4.396722 -0.700034 -3.125358 8.416347 1.283399 0.637180 -0.545503 2.676777 1.973191 4.304232 -0.915474 -4.453513 -2.563989 -8.939803 -2.692843 -2.490032 3.199449 4.204627 -8.265988 -1.356267 -0.920529 7.093677 -9.367748 0.062700 4.635769 3.732638 5.378580 1.291753 -4.896961 0.675612 1.290265 1.069785 5.131975 -2.481907 0.991256 -1.000062 1.650702 0.037196 2.177207 1.037955 -8.305637 -4.396999 0.007236 -1.689481 0.564753 1.861937 4.524743 -2.808873 4.502867 -2.869178 4.985462 -9.143569 -0.558131 -2.886849 -5.641499 -1.823145 4.429226 6.670722 4.638838 -3.004538 -2.718715 -1.602052 -8.820702 -7.890055 1.009230 1.229480 1.376508 2.253906 -0.646535 3.695412 -3.215175 1.684146 3.279556 -2.876458 -1.472159 -0.766829 6.177894 0.638043 -1.302599 -4.500500 -2.179817 -2.751584 -0.249083 6.098539 -0.688433 -9.717296 -10.587510 -4.415781 5.729691 -1.989155 0.562366 -3.762498 -1.446340 -4.569526 0.066344 -6.055281 0.701439 0.407932 -3.922141 -6.607410 0.264162 -0.312414 -3.115974 -0.141516 -4.846889 -1.397355 6.395006 1.298233 2.457364 0.935635 0.490698 -6.029496 -4.542660 2.230039 -4.425317 5.401069 4.686167 -1.448392 -5.449911 -2.106094 -6.518216 4.443426 -3.217570 1.956999 -2.383967 -1.104401 6.116745 -4.663583 -0.183232 -4.805776 1.598554 1.946479 -12.349093 7.647568 5.394005 -2.002997 0.389087 0.848944 1.399332 3.580629 4.208343 -4.238490 -3.874298 0.039863 -1.797942 0.206472 -0.698984 4.049605 -5.060271 0.084857 -3.459810 -1.963159 3.577240 3.061758 0.853107 1.841827 1.760577 -1.556164 3.138403 4.445719 4.881033 -1.930331 -5.245446 -12.820739 4.334566 -1.416079 -2.658296 -0.324610 -2.278142 -4.257631 1.622318 -2.313499 5.637818 0.188392 -2.678944 5.076900 -7.750645 -6.386047 -4.376120 -0.042478 -0.368040 -0.495682 0.612902 -2.381455 2.307628 2.342487 -0.580413 -1.123919 -4.016026 -0.969295 0.510672 6.070558 1.724278 1.431120 6.655184 2.578880 -3.087762 -1.845670 0.923089 -1.614832 -1.368813 -6.725423 -2.786293 -0.588917 1.915813 -3.161614 1.276484 -0.752403 -0.410859 2.019179 -PE-benchmarks/ugly-numbers.cpp__main = 0.241350 -0.072454 0.157805 0.349221 0.082050 -0.003559 0.181059 0.308402 0.028352 -0.960168 -0.645256 -0.202993 -0.008755 0.048872 0.334783 0.080866 0.125283 0.340074 -0.836716 0.035071 0.414623 0.250434 0.289974 -0.077647 0.115518 -0.196226 -0.557490 0.079966 0.168715 0.611107 -0.320473 0.125710 0.493197 0.037010 -0.089848 0.400234 0.220511 -0.019951 0.153819 -0.003154 0.727156 0.076108 -0.052896 0.298163 0.052307 0.547144 -0.296576 0.680200 0.025489 -0.368120 0.477599 -0.956481 -0.283515 0.106046 -0.330905 0.369929 0.715976 0.587973 -0.195819 0.347384 -0.183931 0.153092 0.109622 -0.583585 0.357380 0.582925 0.131436 0.291989 0.639141 -0.412632 -0.018216 0.126365 0.117205 0.006083 -0.048884 -0.382713 0.162066 -1.220456 -0.063321 -0.750734 -0.101393 -0.172251 0.889461 -0.567690 0.153275 0.622716 -0.076115 0.431507 -0.153304 0.121081 -0.463920 0.125911 0.094486 0.466847 0.047732 -0.083161 -0.173781 0.116322 0.160289 0.260865 0.070129 -0.127630 -0.963893 -1.037161 -0.481320 -0.110692 0.160415 0.144839 -0.742295 -0.026923 0.640500 0.230466 -0.834449 -0.037531 0.334752 0.517602 -0.244787 0.333573 -0.595558 -0.153745 0.020465 0.126134 0.176542 -0.423987 0.067811 -0.648401 -0.131186 0.044900 0.193717 -0.201019 -0.227653 -0.362765 -0.154833 -0.049338 0.005462 0.079457 0.215895 -0.177228 0.373061 -0.349488 0.360467 -0.701817 -0.074837 -0.155806 -0.428084 -0.163872 1.215833 0.338392 0.267557 0.210060 -0.508591 -0.357738 -0.441505 -0.564658 0.072858 -0.003560 0.624680 0.182870 -0.092679 0.094917 -0.165166 -0.036748 -0.201293 -0.258711 -0.025739 -0.054404 0.425380 -0.260943 -0.158026 -0.764345 0.113324 0.557780 -0.488316 0.076446 -0.167656 0.142570 -0.489831 -0.500312 0.476679 -0.203711 0.237147 -0.211856 0.224518 -0.550333 0.192353 -0.350672 -0.066905 0.159873 -0.696962 -0.661739 0.170345 -0.133079 -0.222214 0.292254 -0.403627 0.021160 0.184523 0.500769 0.202615 0.064239 0.015175 -0.732646 -0.720512 -0.422350 -0.304116 0.409465 0.324148 0.003436 -0.395770 -0.245992 -0.374290 0.606964 -0.410894 0.053725 -0.266370 -0.048502 0.414255 -0.283584 -0.144950 -0.730939 0.158993 0.217557 -0.894647 0.570826 0.248901 -0.304498 -0.186750 -0.573805 0.176389 0.305927 0.639915 -0.228468 -0.139572 0.184673 -0.174031 -0.022016 -0.461987 0.383758 -0.235741 0.158620 -0.409344 -0.208770 0.257022 0.457900 -0.098283 0.399241 0.542441 0.457533 0.195374 0.460614 0.219462 -0.400604 -0.227805 -0.921785 0.318850 0.823792 0.103889 0.152288 -0.597772 -0.236797 0.177870 0.245317 0.494998 0.701118 0.413539 0.498727 -0.295300 -0.440803 0.057959 0.103709 0.172268 -0.356606 0.078215 -0.171940 0.083927 0.251371 0.021771 0.285902 -0.453745 -0.785723 -0.065776 0.633716 0.118261 0.064246 0.583833 0.125767 -0.408774 0.122346 -0.092053 0.191403 -0.029248 0.053966 -0.049732 -0.018192 0.007731 -0.335045 0.424458 -0.161364 -0.247552 0.188836 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.326629 -0.343825 -0.197045 0.905178 -0.263823 0.065680 0.135120 0.408375 -0.163519 -1.767852 -1.103836 0.399557 0.141838 0.420160 0.732989 0.372315 -0.074360 -0.160834 -1.811660 0.125642 0.819696 0.147594 0.406753 0.190133 0.218999 -0.595164 -0.242527 0.317429 0.270435 1.134951 -0.373377 0.583805 0.845588 -0.208307 -0.088679 0.701536 -0.065310 0.162438 -0.245123 0.195512 1.184782 0.135669 -0.263113 0.241455 -0.137099 1.075525 -0.560829 1.383336 0.093540 -0.896234 1.212350 -0.453515 -0.691689 -0.078655 -0.430684 0.386534 1.048124 0.815552 -0.312654 0.398616 -0.716488 -0.013990 0.119678 -0.162501 1.046244 0.795230 0.970006 0.690200 0.756048 -0.814836 -0.138213 0.495415 -0.179512 -0.082145 0.155064 -0.701573 -0.177182 -1.593580 0.105986 -1.051773 -0.990015 -0.123534 1.538593 -1.011006 -0.287984 0.548326 -0.132961 1.032994 -0.409173 0.677341 -0.794109 -0.109887 0.326092 0.961721 0.111473 -0.157705 -0.088455 0.244906 0.312571 0.715687 0.237404 -0.430145 -1.526987 -1.302882 -0.834385 -0.307296 0.762438 0.816668 -1.490687 -0.077610 0.793863 0.059433 -1.395157 0.096658 0.801740 1.123954 0.702465 1.154893 -1.098082 -0.094670 0.495713 0.240940 0.916667 -0.325286 0.389213 -0.920882 0.319344 0.118383 0.198451 -0.091315 -1.113452 -0.779625 0.106146 -0.281584 0.269370 0.283489 0.736418 -0.171353 0.749281 -0.487490 0.842620 -1.543042 -0.115690 -0.381839 -0.565453 -0.292863 1.451897 1.166461 0.543171 -0.027443 -1.106483 -0.258347 -1.115860 -1.150339 -0.296125 0.309730 0.694454 0.385828 -0.251921 0.761647 -0.323391 0.526545 -0.116294 -0.370053 -0.125549 -0.070485 0.002790 0.012254 -0.254827 -1.005652 -0.118823 -0.178179 -0.719133 0.976400 0.064298 -0.819402 -1.479285 -0.810575 0.916644 -0.379588 0.307928 -0.475143 -0.050235 -1.260506 0.068885 -0.787132 -0.056005 0.342395 -1.227085 -1.148541 0.322500 -0.029051 -0.552457 0.345696 -0.805280 -0.411091 0.478669 0.349043 0.749309 0.202415 -0.110474 -1.026705 -1.107371 -0.160991 -1.008970 0.939897 0.640344 -0.325771 -0.520967 -0.439486 -0.948789 1.004848 -0.875932 0.279828 -0.463925 -0.208317 0.798379 -0.600085 -0.448217 -1.098017 0.294657 0.531989 -1.702838 1.270394 0.682780 -0.253742 -0.107271 -0.173650 0.099746 0.685947 0.689018 -0.561112 -0.450668 -0.082599 0.009451 0.095013 -0.147366 0.678671 -0.731697 -0.119636 -0.548502 -0.357218 0.514020 0.689930 0.134654 0.701556 0.738965 0.286051 0.457876 0.546323 0.555673 -0.836387 -0.251379 -1.724322 0.822501 0.876407 -0.577690 0.227130 -1.161860 -0.525660 0.261443 0.138219 0.839289 0.524820 0.253340 0.862325 -0.769272 -0.870611 -0.625581 -0.033343 -0.173840 -0.154635 0.079429 0.014372 0.451497 0.800898 -0.299313 0.156376 -0.841596 -0.761267 -0.104951 1.183419 0.130250 0.426672 1.016135 0.347530 -0.559876 -0.300845 0.118365 -0.194411 0.033489 -0.486920 -0.173375 0.071323 0.176863 -0.494828 -0.017181 -0.086806 -0.576318 0.241681 -PE-benchmarks/min-cost-path.cpp__main = 0.180780 0.143882 0.443286 0.116370 0.120192 -0.256199 0.332758 0.515465 -0.132117 -0.735996 -0.572407 -0.368371 -0.106516 -0.190741 0.269822 -0.177387 0.009174 0.453178 -0.857132 0.105317 0.439725 0.427118 0.310906 -0.349251 0.104023 -0.057304 -0.872136 0.278399 0.084245 0.530606 -0.249294 -0.218419 0.370934 0.192971 -0.142993 0.500517 0.376748 0.026048 0.452601 0.076313 0.622193 0.145805 -0.113752 0.289800 0.287574 0.455705 -0.257358 0.253149 -0.366480 -0.287565 0.227472 -1.051929 -0.348592 -0.051348 -0.152863 0.302678 0.839715 0.772034 -0.172944 0.494477 -0.178691 0.014010 0.093573 -0.654443 0.138679 0.617248 -0.203555 0.095185 0.738666 -0.351575 -0.158867 0.138773 0.222845 -0.105412 -0.368506 -0.266758 0.193246 -1.520602 -0.049940 -1.069942 -0.203946 -0.053254 0.838186 -0.437850 0.379200 0.779492 -0.081079 0.161308 -0.140356 -0.178897 -0.306368 0.137764 -0.042476 0.562681 -0.008126 -0.075183 -0.010503 0.101220 0.407663 0.384542 -0.106506 0.038643 -1.047249 -1.122625 -0.229990 0.008564 -0.049377 -0.064041 -0.488347 -0.287894 0.893503 0.229499 -0.708839 -0.130688 0.469926 0.477619 -0.773619 0.075519 -0.619395 -0.009814 -0.146759 -0.058504 0.179073 -0.482275 -0.133979 -0.403444 -0.246606 -0.034720 0.079087 -0.241038 -0.249507 -0.351236 -0.173962 -0.200883 -0.042191 -0.128238 -0.132205 -0.105256 0.232361 -0.515037 0.358612 -0.588874 0.200155 -0.012705 -0.417484 -0.034445 0.838239 0.190415 -0.091307 0.168503 -0.342353 -0.345750 -0.132584 -0.467050 0.323050 0.004738 0.813564 -0.118363 -0.069054 -0.164697 -0.072270 -0.280968 -0.258536 -0.133242 0.157491 -0.097306 0.769651 -0.274488 -0.148816 -0.721820 0.229702 0.764530 -0.368640 -0.262850 -0.341692 0.513446 -0.194427 -0.519383 0.388202 -0.044106 0.007906 -0.144080 0.244778 -0.426539 0.351595 -0.234257 0.115684 0.104493 -0.598786 -0.538465 0.101702 -0.147166 -0.206567 0.219910 -0.186079 -0.112052 0.119748 0.361392 0.106408 -0.008073 0.156850 -0.568957 -0.652765 -0.509914 0.021212 0.176034 0.343266 0.244070 -0.462365 -0.044831 -0.275542 0.629461 -0.071316 -0.095089 -0.352309 -0.036217 0.668200 -0.068450 -0.090432 -0.674411 0.150848 0.258426 -0.704525 0.524303 0.198683 -0.252109 -0.356908 -0.557688 -0.097839 0.464713 0.685672 -0.224703 -0.195885 0.308182 -0.357797 -0.064058 -0.491688 0.340072 -0.149007 0.462551 -0.357668 -0.214577 0.118695 0.502175 -0.116189 0.572869 0.363420 0.569600 0.074289 0.464677 0.075845 -0.424264 -0.175235 -0.572947 0.372610 0.802541 0.296499 0.045117 -0.364275 -0.381261 0.179007 0.469950 0.439614 0.997368 0.195403 0.385345 -0.090085 -0.386947 0.182440 0.295271 0.310115 -0.518758 0.021432 -0.110069 0.128856 0.306788 -0.025185 0.585329 -0.405869 -1.026656 -0.240418 0.529906 0.184845 -0.154246 0.566352 -0.107620 -0.391036 0.201585 -0.136015 0.475186 -0.006098 0.331065 -0.058816 -0.246344 0.052872 -0.180984 0.669824 -0.070543 -0.273760 0.418846 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 1.151056 0.034599 -0.741249 2.337105 0.074458 -0.268547 0.039048 0.760840 -0.266433 -4.028018 -2.958911 3.734722 0.085014 0.886698 0.464437 0.393693 0.200696 0.127014 -3.981551 0.870922 1.039391 0.328932 0.044461 0.027814 0.516510 -1.025557 1.284504 0.649095 0.873312 2.212461 -1.276412 0.798404 1.880193 -0.158832 1.057418 1.562810 -0.202018 0.042087 -1.329868 -1.297554 3.025266 1.485649 0.024137 1.940998 0.366127 2.292317 0.103017 2.251005 2.163222 -1.845894 0.564674 0.555417 -1.626097 -0.245667 -1.486209 1.359494 0.823778 0.322093 -1.284505 0.551021 -0.179123 -0.436706 0.289502 -0.962345 1.912018 0.664605 1.674065 1.357999 1.952366 -1.768357 -0.702891 1.748310 1.299848 1.191605 1.348455 -1.107979 -2.202374 -0.295332 -0.140619 -3.238080 -1.889847 -0.506998 3.949157 -2.342897 -0.145439 0.246994 -0.612709 1.893217 -0.892307 0.374012 -2.024327 -0.275575 -0.242961 1.935190 0.799001 -0.300808 0.167313 0.657337 0.790106 2.002910 -0.203752 -1.540422 -1.065627 -3.599877 -0.333533 -0.906319 1.370100 1.337637 -2.196735 -0.349776 -0.205329 3.718166 -2.763778 -0.361633 1.847440 0.837467 0.866663 0.615019 -1.295791 0.111490 0.926855 -0.088210 2.055511 -1.003172 0.079402 0.549344 0.505845 -0.380790 0.925613 0.497099 -2.180886 -2.225592 0.121823 0.533334 -0.120193 -0.257084 1.114875 -0.879772 1.827014 -0.273366 1.544792 -2.411808 -0.061963 -0.715377 -0.993976 -0.732594 2.804142 2.485956 2.469891 -0.576874 -0.374887 -0.980102 -2.370764 -2.777133 1.073869 0.463803 0.755014 0.825380 -0.147301 1.766575 -1.068655 0.224061 0.378803 -0.926322 -0.360802 0.113446 1.019028 -0.315070 -0.057085 -1.894537 -0.448692 -0.677398 -0.538453 1.476922 -0.552031 -4.351197 -2.658021 -1.717472 1.877527 -0.773982 0.399549 -0.685943 -0.351338 -0.625190 -0.293376 -2.092198 0.033624 -0.101234 -2.182428 -2.243128 0.057504 -0.441230 -0.958435 0.499146 -1.658458 -0.419594 1.799727 1.283487 1.014680 0.359740 0.117893 -2.338995 -1.360963 0.158248 -1.732046 2.157304 1.548660 -0.749956 -2.644407 -1.037623 -2.225744 1.728981 -2.246807 0.547113 -1.146523 -0.768291 2.059652 -1.290571 -0.017928 -1.481899 0.933606 1.555276 -5.233845 2.181554 2.193000 -0.469658 -0.145570 0.428908 -0.103009 1.799031 1.957337 -1.764590 -1.369703 0.120038 -0.897387 0.234461 -0.249731 1.837934 -1.198161 0.220118 -1.445409 -1.094966 1.021228 0.818896 0.567818 0.774961 1.245624 0.554326 1.451977 1.909191 1.508673 -0.435258 -2.059113 -5.076660 1.872034 1.513368 -0.817771 1.010374 -1.444492 -1.663013 0.494462 -1.683716 1.936879 -1.300809 -0.502968 1.885616 -2.196039 -1.891696 -0.961411 -0.776101 -0.141443 0.011824 1.461790 -0.729721 0.671815 0.406870 -0.852552 -0.638153 -0.448799 -0.462599 0.204328 1.367059 1.392084 1.438280 2.096483 0.705603 -1.982164 -0.156063 0.034645 -0.332037 -0.914550 -3.016318 -0.797848 -0.320701 0.336310 -0.794085 0.042295 -0.034656 -0.219570 0.143048 -PE-benchmarks/magic-square.cpp__main = 0.225660 -0.163012 0.231728 0.298627 0.274077 -0.079776 0.165265 0.158359 0.061775 -0.686395 -0.327003 0.098134 -0.085497 -0.057161 0.127670 -0.020171 0.243535 0.276701 -0.337627 0.070129 0.111021 0.170139 0.038975 -0.125630 0.049934 -0.160203 -0.098148 0.207736 0.142300 0.404233 -0.274036 -0.070462 0.323088 0.063536 0.097723 0.400245 0.494891 -0.019221 -0.049300 -0.080927 0.731995 0.002250 0.065796 0.415295 0.268575 0.441816 -0.029299 0.585095 0.275294 -0.203780 0.269377 -0.564652 -0.189000 -0.080259 -0.473156 0.344179 0.436823 0.340564 -0.356871 0.308944 0.038060 0.087582 0.082830 -0.276724 0.228762 0.328740 -0.008266 0.208055 0.621228 -0.379331 -0.189845 0.271702 0.409708 0.257749 0.109598 -0.289038 -0.003513 -0.781020 -0.085649 -0.310508 0.027749 -0.183753 0.628729 -0.383192 0.128354 0.539915 -0.167229 0.200528 -0.082908 -0.088529 -0.453627 0.116401 0.115742 0.413020 0.049675 -0.015470 -0.044474 0.067166 0.123049 0.367618 0.100706 -0.239267 -0.527190 -0.903154 -0.387599 -0.172256 0.002848 -0.115370 -0.424964 -0.110239 0.384707 0.322260 -0.539474 -0.087789 0.270010 0.234120 -0.105413 -0.032477 -0.244177 -0.088979 0.050737 0.007464 0.049667 -0.289936 -0.086727 -0.292059 -0.042378 -0.021075 0.180028 -0.171948 -0.104894 -0.248018 -0.129703 0.167379 -0.088242 -0.172832 -0.035693 -0.366059 0.255829 -0.214733 0.289669 -0.420120 -0.111319 -0.152812 -0.319296 -0.123097 1.014431 -0.054348 0.489165 0.171114 -0.350376 -0.311457 -0.255824 -0.640336 0.228225 -0.084374 0.351860 0.169634 -0.050536 0.010991 -0.152601 -0.269383 -0.011906 -0.227691 -0.035020 -0.054525 0.064259 -0.305222 -0.081012 -0.599717 0.185952 0.556545 -0.094489 -0.008951 -0.281528 -0.261424 -0.210550 -0.411311 0.317066 -0.159291 0.157226 0.035961 0.012664 -0.353711 0.174358 -0.300701 0.095590 -0.097454 -0.522102 -0.491627 0.141294 -0.212226 -0.025146 0.248264 -0.334399 0.109374 -0.122283 0.287325 0.058427 0.065172 0.020303 -0.684350 -0.589779 -0.307115 -0.020373 0.374293 0.133944 0.136517 -0.255172 -0.213428 -0.289864 0.363554 -0.561802 0.008313 0.055993 -0.144583 0.374646 -0.181082 -0.056849 -0.501029 0.227646 0.263973 -0.555645 0.489028 0.307525 -0.366847 -0.293189 -0.326994 0.033076 0.258855 0.656525 -0.272796 -0.133661 0.305731 -0.085127 -0.047595 -0.375781 0.274574 0.011630 0.322811 -0.506902 -0.342306 0.098937 0.438971 -0.092608 0.167691 0.337009 0.296766 -0.066962 0.597911 0.139952 0.041116 -0.287872 -0.719065 0.266749 0.503976 0.126380 0.276473 -0.459453 -0.192574 0.153139 0.114046 0.415556 0.325600 0.307816 0.429898 -0.289122 -0.385026 0.157373 -0.099361 0.222063 -0.350109 0.262900 -0.271460 -0.007358 -0.084547 0.043192 0.040451 -0.061802 -0.389741 -0.033935 0.314833 0.189055 0.046980 0.464542 0.013297 -0.346869 0.184217 -0.044777 0.279991 0.087947 -0.162020 -0.095353 -0.169972 0.040719 -0.198500 0.426140 -0.144619 -0.036660 0.158984 -PE-benchmarks/box-stacking.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 8.528099 3.768360 -11.490797 24.738128 -3.300782 -8.777461 1.224069 5.102587 -7.502256 -35.127832 -20.658624 9.558656 6.465647 1.444924 5.927353 10.019658 -6.348742 3.509020 -35.872479 9.573314 16.221375 5.308624 -0.145509 -6.428419 3.302546 -9.219872 4.899244 3.984437 2.663553 21.906075 -8.663745 11.575869 17.953212 -3.428789 5.553029 14.450745 -6.826456 5.900229 -3.644360 3.585275 23.121608 14.348967 -4.242048 4.780243 0.477549 20.619075 0.910342 10.103714 -16.253531 -15.545380 7.445444 14.063040 -10.098060 -4.572305 -8.960171 8.591147 22.726759 14.244045 -7.115732 7.257769 -11.328306 -1.593501 7.226047 3.163303 23.469100 11.623985 18.330583 16.356343 22.721854 -11.494338 0.415524 7.656221 1.273969 -9.046556 17.457577 -10.036174 -23.045261 -5.242430 -4.150789 -33.403626 -12.537450 5.543617 33.050541 -21.191294 -1.602319 2.957060 9.088011 22.216186 -12.858670 1.795555 -12.072844 -2.118672 -14.932349 36.322473 4.666535 3.740770 -4.129039 11.607415 9.578613 11.581765 -1.742055 -13.606606 -8.679894 -28.437823 -10.482088 -8.941992 9.395124 14.538415 -28.352006 -7.092518 1.688726 18.574292 -33.630873 3.631930 15.192994 15.663274 21.576809 -4.769303 -19.213766 7.534975 0.885309 -0.484119 14.905785 -8.585459 2.036523 -3.373209 5.423939 0.274087 3.499061 2.101864 -30.014136 -10.706137 -1.871072 -10.575788 3.812039 8.719530 13.780718 -11.547950 12.764690 -14.008167 17.063326 -32.275179 1.892989 -7.193173 -22.922740 -4.962103 3.704986 18.848902 7.750998 -13.567710 -11.476050 -4.707514 -29.786086 -28.640521 1.979815 5.872013 5.130231 4.772913 -3.780505 9.128312 -11.399794 8.046032 14.489112 -7.866512 -2.812853 -1.386787 32.578637 2.504969 -5.618460 -11.093623 -10.017930 -7.892179 3.387074 21.112364 -2.640695 -20.579497 -37.179968 -13.635339 18.255528 -6.201300 -0.918720 -15.854482 -4.090811 -22.244127 4.213074 -18.852326 5.176511 2.205446 -8.766816 -21.233544 1.366356 -0.386285 -9.538836 -1.677912 -15.226129 -5.992667 19.479830 -1.740376 8.340983 -0.144281 3.670353 -17.276715 -14.406500 9.227883 -13.087589 15.638886 13.989186 -2.185630 -13.898852 -4.631928 -22.254156 14.145058 -0.898172 5.196387 -8.449476 -2.060205 21.496917 -14.483782 -3.889990 -17.321830 3.156640 2.932522 -22.932997 28.756970 15.347982 -5.053558 1.805519 4.827723 4.184632 10.653912 10.994468 -14.365942 -14.829953 0.106161 -7.306313 0.063975 -1.590377 12.068633 -19.179432 2.916187 -9.657344 -3.929085 10.675121 12.109289 0.321214 9.411124 2.966318 -10.158375 5.715908 11.312116 16.521752 -7.023931 -15.056490 -31.100496 11.648087 -22.856656 -7.454954 -9.224946 -2.410468 -13.660066 6.641746 1.927581 19.802030 9.379627 -14.727301 15.785414 -27.361804 -21.018895 -14.265773 2.080370 0.553569 -4.521996 -2.905955 -6.671913 9.009131 10.734761 -1.585795 0.964399 -18.929490 -1.566225 0.409500 21.423018 0.998214 -1.520898 21.853390 7.288070 -7.924046 -6.592726 3.589795 -5.325984 -2.799141 -15.659345 -8.322454 -2.089243 7.253988 -9.409065 7.084779 -5.028133 -3.346938 10.368040 -PE-benchmarks/box-stacking.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/longest-palindrome-substring.cpp__main = 2.163641 0.186645 0.334553 1.806502 0.854349 -1.906211 -0.513093 2.567284 -1.172044 -2.502399 -2.939345 0.575034 -0.552062 0.233971 2.914990 0.035179 -0.218194 -0.320727 -4.662649 2.102944 -0.041729 0.381365 -0.556118 -1.661891 1.124799 1.195755 -0.889113 1.139210 0.360961 0.914784 -2.397990 0.046832 0.502763 0.657158 1.911998 -0.857146 0.593610 -0.398264 -0.604795 -0.838208 3.779876 1.152999 0.069585 2.418609 1.766711 1.121614 -1.083844 2.664929 0.297246 -0.654713 2.154594 -3.194366 -1.113643 1.078017 -1.835245 2.258700 2.770088 0.632606 -1.496621 1.168664 0.125959 0.105261 0.384779 -2.737447 3.060032 1.315989 1.990552 0.454139 2.556564 -0.690504 -0.614135 0.948573 3.322572 0.427121 -1.691430 -2.952781 0.551006 -5.315567 1.029249 -4.020032 -0.338943 -1.444327 2.729268 -1.827026 1.422254 2.010141 -1.424417 1.200275 -2.428916 0.796099 -1.004860 -0.246139 -0.509706 2.102965 -0.763380 -0.512339 1.538674 0.688268 1.445100 2.775376 -0.672558 0.606818 -1.999602 -3.909849 -1.520770 3.185872 0.283141 -0.914573 -1.322912 -0.189376 1.287023 0.598742 -1.136927 -2.039846 1.527072 0.760284 -1.730547 0.994007 -1.942300 -1.180123 -0.120495 1.618214 1.320702 -1.421974 0.840135 -2.223021 -0.335692 0.724480 2.668564 0.178777 -0.308860 -1.714096 -0.640176 0.105322 -1.246723 -1.960763 -0.715207 -0.993490 1.962677 0.033662 1.227801 -2.732239 -0.487108 -1.502017 -0.303135 1.032917 3.628736 0.832795 1.116418 2.582564 -1.021116 -0.725980 -1.371341 -1.988970 1.670455 1.170106 1.539477 -0.188637 0.337478 0.679596 0.472646 -2.439735 0.716737 -2.090158 -1.635555 -2.411189 1.098095 -0.590225 -0.462560 -3.062827 1.957304 2.652018 -2.102840 -0.382787 -0.048050 -1.628252 -0.507436 -1.682616 1.199335 0.387299 0.680998 0.458271 1.888381 -2.471030 0.747711 -2.496692 0.977157 0.370394 -3.199285 -1.190466 -0.682033 0.039392 0.654841 -0.635227 -0.871844 0.294392 0.577765 3.582746 -0.403414 1.463942 1.270691 -3.434812 -4.454553 -2.033099 0.643107 2.078973 -0.252183 0.366107 -1.836868 -0.269360 -1.026808 2.593842 -2.269494 -0.589776 -1.623404 -0.323540 2.010238 -0.902325 -1.645398 -2.078349 0.507587 1.146584 -3.342222 1.943389 0.968725 -1.325518 -1.494949 -3.159237 0.997617 1.637124 4.716139 -0.647778 0.221349 0.082383 0.982953 -0.687169 -2.264368 2.688699 -0.339708 0.087993 -1.498620 -2.271180 0.129421 1.495446 1.086780 1.842591 0.856147 2.573053 -0.681757 2.985558 0.172196 -1.551857 -0.735887 -3.864002 0.502706 5.414741 0.011218 0.773952 -2.567415 -2.681761 -1.368166 0.778459 1.702558 2.857210 2.193521 1.112454 -0.622769 -1.335205 -0.227479 2.019119 -0.975379 -1.616806 0.182695 -1.204208 -0.085053 1.268059 -0.401579 0.500804 -0.002017 -4.844189 -2.643944 0.456157 0.545021 0.407795 2.093550 1.767107 -2.076856 0.270321 -0.212474 0.766025 0.456295 -0.322454 -1.445889 -1.822033 -1.052590 -0.670193 0.846074 0.928704 -0.213178 0.245283 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.991885 -0.223644 -0.202852 1.532954 0.325322 -0.379117 0.068343 0.580511 -0.003626 -2.832235 -1.835496 1.331437 0.049839 0.232392 0.550181 0.494305 0.331963 0.355462 -2.592952 0.744913 0.858631 0.455316 0.161355 -0.211180 0.426128 -0.694070 0.441693 0.190304 0.558555 1.547957 -1.049792 0.586862 1.330347 -0.083382 0.758599 1.188941 0.016768 -0.043031 -0.408472 -0.460303 2.332194 0.840644 0.233392 1.209875 0.460774 1.589839 -0.022784 1.780372 0.978623 -1.166467 0.824163 -0.488904 -0.979301 0.004485 -1.268054 1.075688 1.072456 0.623943 -0.970699 0.556678 -0.119458 0.040904 0.320173 -0.691716 1.485460 0.707055 0.927323 0.963489 1.765588 -0.995357 -0.311902 0.969790 0.989316 0.606322 1.036351 -1.228037 -1.049258 -0.887889 -0.303148 -1.923013 -0.548490 -0.424498 2.659756 -1.649096 0.238595 0.636181 -0.307384 1.381986 -0.487517 0.026070 -1.375234 0.115345 -0.197331 1.495688 0.161541 0.010944 -0.104574 0.434148 0.351428 1.167895 0.081368 -1.083485 -1.123034 -2.605335 -0.688824 -0.646524 0.757807 0.625281 -1.897546 -0.132424 -0.165275 1.829943 -2.166032 -0.129313 1.063116 0.745591 0.588474 0.183146 -0.935424 -0.233875 0.349488 0.342622 0.787832 -0.900988 -0.076720 -0.648288 0.164261 -0.026694 0.714168 -0.109742 -1.085193 -1.201931 -0.248286 0.310504 -0.133711 0.084306 0.775564 -0.993225 1.142741 -0.500001 1.071795 -1.828339 -0.405221 -0.768648 -1.030799 -0.505521 2.532335 1.048241 1.592787 -0.118743 -0.678675 -0.793516 -1.742951 -1.844730 0.491267 -0.124894 0.759405 0.752194 -0.061406 0.772549 -0.643819 -0.108836 0.135080 -0.788366 -0.252651 -0.251269 0.597255 -0.463033 -0.182747 -1.564683 -0.199915 0.351670 -0.453843 0.841974 -0.457784 -2.130252 -1.913078 -1.318497 1.308525 -0.643831 0.537658 -0.583376 0.060565 -0.900243 0.075280 -1.475291 0.069411 -0.110169 -1.439055 -1.656348 0.085664 -0.426457 -0.231463 0.297080 -1.160016 -0.036896 0.977860 1.117930 0.536797 0.322282 -0.044000 -2.053510 -1.453446 -0.145268 -0.882758 1.529680 0.735372 -0.306801 -1.459522 -0.707790 -1.416817 1.241050 -1.441178 0.270643 -0.447395 -0.344610 1.411100 -0.870697 0.071648 -1.523290 0.560399 0.718967 -3.194291 1.570728 1.208809 -0.781639 -0.241266 -0.417817 0.337403 0.997499 1.516991 -0.836736 -0.752315 0.302526 -0.533704 0.005823 -0.777140 1.145423 -0.851096 0.482457 -1.239005 -0.807704 0.727656 0.892195 0.066757 0.440602 0.849931 0.407109 0.676049 1.481556 1.008064 -0.196642 -1.454392 -3.376533 0.977850 1.331116 -0.103311 0.461854 -1.052501 -0.999802 0.322099 -0.412439 1.505476 0.425308 0.333537 1.353461 -1.583935 -1.468133 -0.382036 -0.197315 0.149714 -0.352468 0.465996 -0.733701 0.281485 0.248026 -0.071528 -0.118461 -0.702513 -0.697137 0.144516 1.378102 0.757992 0.572866 1.538886 0.589256 -1.115152 0.071641 0.145722 0.086777 -0.369476 -1.418653 -0.620761 -0.297829 0.127571 -0.714435 0.663340 -0.320307 -0.012183 0.173189 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.992439 -0.167903 1.100190 0.135716 0.742922 -0.333783 0.507818 1.159686 -0.423158 -1.635922 -1.634373 -1.013648 -0.394627 -0.540330 0.951136 -0.200218 0.610905 -0.004321 -2.378554 0.309064 0.646469 0.218866 0.167264 -0.167026 0.324831 -0.616142 -1.785535 0.904346 -0.161654 0.794422 -0.601330 -0.147955 0.580276 0.485518 0.408498 0.912320 -0.101281 -0.367627 1.339208 0.247292 1.893902 0.229885 -0.083251 0.597027 1.203830 0.952788 -1.238841 1.602793 -0.378058 -0.327047 1.601573 -2.463063 -0.741036 0.461256 -0.996589 0.474352 1.998957 0.724177 -0.683282 0.913010 -0.771314 0.250486 0.026613 -1.132016 1.011700 1.262750 0.282176 0.025937 1.459537 -0.509379 -0.440751 0.722214 0.789550 0.240678 -1.552539 -0.929465 0.879486 -3.047860 0.361281 -1.948580 -0.079832 -0.779087 1.837289 -0.366585 0.176403 1.338349 -0.402816 0.430639 -0.458009 -0.225346 -0.811601 0.493560 0.023163 0.940763 -0.571692 0.187760 0.316870 0.085104 0.500268 1.112354 -0.580777 0.000114 -2.599531 -2.677649 -0.920125 0.184495 0.221345 -0.611025 -1.239249 -0.010685 1.597948 -0.248166 -0.859504 -0.403010 0.639528 0.846383 -1.510489 1.447499 -1.817923 -1.123340 -0.135773 0.656134 0.239463 -0.287172 0.032116 -2.350156 -0.004374 0.192309 0.515636 -0.692754 -0.640660 -0.405149 -0.122214 -0.529002 -0.357440 -0.350847 -0.237069 -0.136701 0.580598 -0.664534 0.755914 -1.734413 0.094545 -1.114997 -0.763485 0.165334 2.057133 1.246186 0.129631 1.334019 -0.450675 -0.475861 -0.659736 -0.842845 -0.100789 -0.415826 1.745999 -0.658366 -0.043168 -0.181635 0.003044 -0.809391 -0.783964 -0.473176 0.166756 -1.117364 1.486394 -0.393505 -0.393801 -1.235458 0.603616 1.743975 -1.521468 -0.402791 -0.554037 0.505963 -0.459167 -1.264315 0.583542 -0.143485 0.198083 -0.125781 0.905501 -1.270350 0.729645 -0.430544 -0.099491 -0.162001 -1.523883 -0.875078 0.145578 -0.262420 -0.141538 0.103668 -0.414912 -0.130938 0.804101 1.581682 0.556827 0.421286 -0.283564 -1.339371 -1.807771 -1.218571 0.311693 0.916992 0.981015 -0.016720 -0.416273 -0.249932 -0.864209 1.393119 -0.274011 -0.297640 -0.294886 -0.652040 1.020177 -0.194651 -0.285696 -1.267980 0.214627 0.171971 -2.109310 1.230416 0.427653 -1.104086 -1.245133 -2.193724 0.162164 0.584341 1.677570 0.104893 0.389745 0.312205 -0.130414 -0.236218 -0.876625 0.966205 0.080426 0.886067 -1.291046 -1.093274 0.705453 1.191614 -0.261813 0.971747 0.463228 1.733166 0.623188 1.306033 -0.140999 -0.987452 -0.223397 -2.337915 0.274594 2.407170 0.168254 0.300397 -0.951899 -1.356923 -0.503526 0.740246 1.196358 2.034713 0.988418 0.808507 0.364115 -0.780344 -0.054560 0.679930 0.145887 -1.201165 -0.152857 -0.392478 -0.098312 0.383447 0.254929 1.326169 -1.126919 -2.892992 -0.711966 0.957786 0.511409 -0.330421 0.963098 0.197245 -0.579864 -0.017231 0.103249 1.037103 0.886199 0.462583 -0.554304 -0.978918 -0.295782 -0.247501 1.090492 0.484613 0.334635 0.717130 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 1.981278 -0.360377 -0.191093 1.364071 0.564601 -1.689540 0.322756 1.245793 -0.366317 -2.806437 -1.945684 1.655301 -0.089042 -1.258629 0.687338 0.645515 0.179753 0.215250 -3.634618 1.802704 0.765152 0.391445 -0.822312 -0.780006 0.462100 -0.931252 -0.474407 0.916591 -0.220433 1.468856 -1.279018 0.322226 1.171974 0.175349 1.124359 1.531862 -0.575255 -0.454516 1.068265 0.317867 2.967792 1.242635 0.158146 1.157047 1.712756 1.711697 -0.805971 2.804969 0.662864 -0.742798 1.614808 -0.212798 -1.475516 0.384830 -1.804637 1.047926 1.737382 0.096851 -1.182220 0.980632 -1.032220 0.035376 0.587444 -0.420403 2.601750 1.497158 1.062989 0.800774 3.103067 -0.400038 -0.300504 1.212819 2.152630 0.285831 0.874228 -1.151812 -1.182271 -1.962685 -0.037186 -2.796919 -0.221407 -0.689697 3.524435 -1.584661 0.224124 0.964643 0.679271 1.797152 -1.252261 -0.322918 -1.382213 0.612843 -0.728429 2.875896 -0.492275 0.980628 -0.506139 0.512842 0.427142 1.494782 -0.734261 -1.170687 -1.988237 -3.980066 -1.289861 -0.457638 -0.251733 -0.535375 -3.104353 0.077869 0.960595 2.038620 -2.530845 -0.380330 1.237543 0.232466 0.617432 1.219620 -1.931524 -0.595842 -0.076591 0.940398 0.244529 -0.406466 -0.481867 -2.012315 0.538423 0.343028 0.758265 -0.547671 -2.196674 -0.514057 0.101153 -0.160784 -0.254105 0.014097 0.281859 -1.563086 0.889812 -0.962514 1.184957 -2.832056 -0.580899 -1.759826 -1.398202 0.046018 2.545645 1.978490 1.551844 0.485830 -0.271001 -0.929307 -2.497733 -2.602233 0.277222 -1.440687 1.014439 -0.557153 0.188360 -0.289359 -0.177230 -0.752700 0.254897 -1.383551 -0.014044 -1.449172 2.291973 -0.415882 -0.313473 -1.640048 -0.591902 1.326996 -0.242474 0.289990 -0.590703 -2.813783 -2.128561 -1.777823 1.237810 -0.276433 0.346660 -0.990577 0.445482 -1.427200 0.571135 -1.093216 0.179818 -0.500944 -1.332035 -1.604485 -0.319030 -0.260546 -0.333549 -0.999253 -1.170251 -0.013357 1.347273 1.326759 0.606764 0.638888 -0.458358 -2.537610 -2.381002 -0.289460 0.260359 2.055453 1.643313 0.246377 -1.495706 -0.374234 -2.409632 1.773549 -2.450155 -0.043227 0.146210 -1.290285 2.464715 -0.972281 -0.655708 -1.633944 0.732822 -0.353933 -3.527830 2.819880 1.620162 -1.771316 -0.907031 -1.646112 0.612546 1.434215 2.605003 -0.758000 -0.073997 0.389592 -0.144712 -0.475396 -0.521107 1.709802 -1.085309 1.715810 -1.691648 -1.308112 1.054356 1.797761 -0.232285 0.266976 -0.565289 0.578995 0.712054 1.716103 0.650254 -0.390257 -1.653102 -4.483461 0.403861 0.923193 -0.218477 0.833830 -1.212903 -1.872069 -0.323191 -0.366237 2.407728 0.290046 0.358269 1.162929 -1.714028 -2.004237 -0.495916 0.526196 -0.151173 -0.912525 1.071418 -0.998614 -0.278915 0.372079 0.748381 0.289264 -1.368217 -1.922690 -0.194348 1.306433 1.292799 -0.894779 1.754480 0.704478 -0.841187 -0.411517 0.013185 0.627470 0.160218 -1.067947 -0.882076 -1.397698 0.167238 -0.670483 2.170017 0.341956 1.056568 0.536614 -PE-benchmarks/floyd-warshall.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 2.964451 0.937997 -2.834596 9.760932 -0.663128 -1.824690 0.273648 1.510935 -2.265604 -14.186162 -9.087015 5.509743 1.679890 2.120639 2.117011 2.899176 -0.814828 0.855581 -14.996424 3.098223 5.910309 1.872277 1.419638 -1.501472 1.549263 -3.885053 4.746941 1.837515 1.924029 8.396778 -3.584879 4.662401 7.177016 -0.614272 3.523873 6.040489 -3.003601 1.691556 -3.419548 -1.042739 9.733636 5.386637 -0.187366 3.328284 0.002120 8.361268 2.375734 3.123937 -0.215418 -6.507607 2.299811 4.484483 -4.295986 -2.103510 -4.462815 3.084247 6.037266 4.482747 -3.379919 2.485532 -2.621548 -0.851113 2.178261 -0.196959 8.502792 2.236563 6.918349 5.901457 7.345818 -5.570176 -0.665575 4.031530 1.223900 -0.662395 5.940543 -5.384677 -9.049706 -0.781354 -1.960623 -12.832186 -5.265538 1.392391 12.213784 -7.638478 -0.440488 -0.028862 -0.038910 7.754508 -3.511092 0.278804 -5.802324 -1.012813 -3.928839 10.064597 2.062984 -0.185358 0.683801 3.504260 3.222398 5.464521 -0.249402 -5.984474 -1.746947 -11.152104 -1.908405 -3.814726 5.488436 5.769162 -8.813202 -2.128632 -2.914495 8.396283 -11.747038 0.144412 5.961589 5.413496 5.122187 -3.549561 -4.776859 1.386991 1.742533 0.954491 7.357257 -4.383528 1.039409 0.262131 1.706709 -0.338376 2.566759 1.252364 -8.109228 -6.489601 -0.819058 -1.487544 0.736605 2.245886 5.200884 -2.589659 5.518580 -4.081577 7.116718 -10.450560 1.003177 -3.042892 -6.178240 -2.717049 3.967584 7.015908 4.501820 -4.780257 -3.179889 -1.128984 -10.016949 -9.547698 1.924866 2.752247 2.043567 3.378776 -1.287239 5.303618 -4.740348 2.677129 4.005164 -2.562725 -1.584779 0.175558 6.104606 1.054998 -1.825767 -4.566355 -2.255624 -3.581276 -0.005463 8.063608 -1.441427 -10.739837 -13.048306 -5.699042 7.204011 -3.149356 -0.176756 -4.921546 -1.759750 -5.501997 0.800838 -8.247891 1.114036 0.653891 -4.798806 -8.353465 0.421999 -1.253496 -2.056781 1.043906 -5.643343 -2.281293 7.695317 1.605112 3.321405 0.756295 1.217441 -6.614719 -4.283908 2.909520 -5.710266 6.007869 4.025402 -1.809991 -7.524277 -2.757376 -6.971594 5.044978 -0.047020 2.271421 -3.806470 -1.197730 7.334566 -4.933838 1.580995 -5.573615 1.514663 3.519570 -14.353667 8.419862 6.632001 -1.730929 0.197303 2.322159 0.931278 4.049598 4.129405 -5.189705 -5.924974 0.109147 -3.268263 0.619378 -1.442810 4.416173 -5.912690 -0.304349 -4.564447 -2.582053 4.404293 3.077542 0.955349 2.846930 3.159732 -1.826035 3.330691 5.610272 6.232934 -1.391981 -6.901664 -14.728328 5.527626 -1.601489 -1.919882 -1.329052 -1.313972 -5.441941 2.633787 -1.583208 7.129483 2.958467 -5.040137 6.741192 -8.909611 -7.627777 -5.909375 -0.853574 0.352036 -0.692045 -0.727648 -3.017954 3.508242 2.660727 -1.700517 -0.473811 -4.771152 0.240162 1.009733 7.884115 1.994413 2.373787 8.169552 2.783541 -4.249831 -2.058256 1.931646 -2.680948 -1.448270 -8.087035 -3.757164 -0.365663 2.638390 -3.233890 0.620265 -1.995791 -0.740861 2.416348 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.838601 0.451643 -0.544438 3.145549 -0.048417 -1.169796 0.194123 1.456322 -0.860879 -5.632946 -4.237983 2.274979 0.254663 0.193762 1.263506 0.962680 0.147491 0.458044 -7.121169 1.716806 2.360643 0.907234 0.362613 -0.646948 0.866911 -1.510666 0.403268 0.788084 0.591754 3.228904 -1.902505 1.560701 2.685863 0.071251 1.785465 2.463366 -1.658881 0.012549 -0.029765 -0.468177 4.398302 2.339220 0.110581 1.703789 0.929917 3.290201 -0.038432 1.872767 0.687574 -2.415707 1.296139 0.274187 -2.165472 0.040910 -2.074695 1.391624 2.481026 1.403638 -1.578483 1.306410 -1.068020 -0.165224 0.779068 -1.199409 3.684552 1.249936 2.352144 1.897863 3.339256 -1.682801 -0.185656 1.493047 1.377463 0.076805 1.305283 -2.151904 -2.562242 -1.852487 -0.518139 -6.022537 -1.622752 -0.094277 5.440423 -3.032651 0.440653 0.536229 -0.235271 3.036945 -1.438445 -0.236161 -2.421467 -0.000979 -1.315097 3.464497 0.287214 0.100181 0.270707 1.249599 1.144910 2.255499 -0.681984 -2.123981 -1.926224 -5.579616 -0.804875 -1.085634 1.696995 1.463331 -3.819418 -0.417558 -0.301798 3.766847 -4.568350 -0.322868 2.259909 1.571907 0.013845 -0.244873 -2.474321 -0.305814 0.208163 1.112773 2.407300 -1.713270 0.157472 -1.167925 0.315494 0.099914 1.474308 0.173574 -2.800878 -2.521121 -0.161409 -0.431720 -0.257913 0.712229 1.658749 -0.844619 2.231129 -1.644544 2.646359 -4.158046 0.270145 -1.825524 -2.022201 -0.776533 2.673633 3.494187 1.591844 -0.734647 -0.692992 -0.726401 -3.959042 -3.420435 1.024253 0.139737 1.684240 0.646124 -0.224798 1.469186 -1.410498 0.249511 0.609931 -1.451362 -0.400353 -0.870291 2.761196 0.089063 -0.753912 -2.346026 -0.633353 0.016644 -1.050726 1.954013 -0.865813 -3.672768 -4.570914 -2.586377 2.765480 -1.082557 0.354223 -1.790876 0.254553 -1.788074 0.483782 -3.000880 0.034964 -0.042168 -2.259395 -3.226523 -0.271713 -0.559537 -0.767454 -0.093167 -2.051759 -0.663749 3.430407 1.791078 1.288231 0.596106 0.230474 -2.959576 -2.302823 0.300485 -1.740802 2.486169 2.171444 -0.713579 -3.584021 -0.956055 -2.930295 2.691389 -0.891123 0.637136 -1.539236 -1.053829 3.248248 -1.696546 0.330381 -2.335051 0.774137 1.076400 -7.211058 3.277317 2.570627 -1.388187 -0.396040 -0.781694 0.730258 1.963873 2.543791 -1.590539 -1.487832 0.082363 -1.470532 0.070355 -1.083433 2.310167 -2.080740 0.623694 -2.160138 -1.313931 2.136490 1.424226 0.345896 1.352381 1.065229 0.593201 1.959195 2.493689 1.978874 -0.945577 -2.855565 -6.706931 1.902960 1.912710 -0.205228 0.201997 -0.959054 -2.688462 0.251736 -0.836662 3.120329 1.421926 -0.930978 2.529094 -2.874104 -3.060879 -1.941233 0.240615 0.004424 -0.629181 0.241723 -1.208354 0.893154 1.121701 -0.036231 0.540542 -2.126383 -1.832434 0.174081 2.985084 1.552463 0.517721 3.183112 1.101091 -2.000340 -0.598827 0.425854 -0.288654 -0.573911 -2.693581 -1.669553 -0.817597 0.658122 -1.379566 1.140374 -0.298516 0.397492 0.812051 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 6.332308 -0.543697 1.960812 4.731082 2.133106 -4.558413 -1.286266 7.323848 -3.233707 -7.313753 -8.154023 1.063139 -2.066123 0.901815 8.265112 -0.729856 -0.365327 -1.720693 -14.315913 5.435074 0.269937 0.491006 -0.757740 -4.129251 3.524852 3.135368 -0.934907 3.196052 1.172466 3.012748 -6.797052 0.292754 1.274101 2.386766 5.512869 -2.037216 -0.009433 -1.347781 -1.527608 -3.412711 10.199464 3.358956 -0.254369 6.670677 4.546163 2.515900 -2.603239 6.628539 2.037607 -2.012875 5.996978 -8.840907 -2.838021 3.335774 -5.038253 5.089613 7.769225 1.782048 -3.680210 2.606894 -0.232166 0.797316 0.829403 -7.050569 8.121511 2.995275 5.826379 1.201594 6.328847 -2.774297 -0.847083 2.892378 8.321333 1.340841 -5.249396 -7.464898 1.567681 -14.310849 2.897974 -10.794768 -1.857130 -3.943040 5.873145 -3.896360 3.855032 4.429757 -4.212437 3.575831 -6.584928 2.947566 -2.556897 -0.425715 -1.085952 4.843673 -2.483060 -0.936582 5.054929 1.538805 3.444367 7.823363 -1.587136 1.430765 -4.035572 -10.568632 -3.030561 8.446095 1.356031 -1.963150 -3.439427 0.923895 2.960248 1.016366 -2.179731 -5.827044 3.052245 2.663505 -5.621185 2.423236 -4.612836 -4.159622 -0.534658 4.984628 3.959262 -4.261492 3.162201 -6.639860 -0.786822 2.708250 7.672396 1.084769 0.228370 -5.159793 -0.748322 0.390005 -3.941664 -4.082674 -0.859699 -1.212799 5.024839 -0.043024 3.463637 -6.822031 -0.948554 -4.317427 0.216651 2.505463 9.443481 2.450192 2.005029 7.309823 -2.464678 -1.176251 -2.848528 -4.889691 4.134947 3.731723 3.889119 -0.117842 1.081021 2.879904 0.487627 -6.666184 0.901413 -5.186750 -4.516511 -6.957276 1.190519 -1.090113 -0.933630 -7.131806 5.931714 6.370173 -6.641628 0.041444 0.179270 -4.093736 -2.103890 -4.702841 3.635890 0.716422 0.478511 1.343101 5.388405 -6.033660 2.029868 -6.190677 2.070451 0.979158 -8.854730 -3.256897 -2.055011 0.209104 2.347306 -1.251763 -2.443849 0.248022 1.826595 9.977511 -0.746241 4.715852 3.524531 -8.545162 -12.057207 -5.194101 1.928301 5.139074 -1.379176 -0.428146 -4.677339 -1.646440 -1.615335 7.213695 -5.476229 -0.725234 -4.909257 -0.926873 5.112042 -1.828525 -4.502300 -4.983961 1.159119 3.767500 -8.606521 5.094368 1.939309 -3.505960 -3.839127 -9.042386 3.092317 4.111788 12.045345 -1.655623 0.636571 -0.020213 3.024608 -1.469248 -5.771238 7.193631 -0.633200 -0.749616 -3.581791 -6.709994 0.791831 3.303710 3.245294 4.949672 3.095021 7.221227 -0.862811 8.706511 0.440436 -4.163603 -2.363428 -10.801281 1.499544 15.739226 0.321512 1.693386 -7.608512 -8.222900 -3.687397 2.456050 4.300572 8.623282 6.086942 3.019352 -1.083258 -3.343498 -1.637959 5.348722 -2.895598 -3.976432 -0.495990 -3.079609 0.125278 3.457114 -0.930257 1.408129 0.393048 -13.030318 -7.432500 1.129337 1.288039 1.516759 5.467138 5.876406 -6.066752 0.343084 -0.137401 0.982972 1.038961 -0.401475 -3.980963 -4.190578 -2.562740 -2.307016 1.782365 3.417136 -0.032964 -0.384239 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 7.616781 1.882172 -4.344766 18.354032 -0.865825 -7.494535 1.814858 6.985852 -4.906989 -28.447616 -17.182946 8.762579 3.049026 2.037824 4.857160 5.018312 -3.610367 3.093969 -33.920926 8.126802 12.623171 6.432398 2.084776 -6.588304 3.779896 -6.323262 3.901360 5.432886 3.106193 17.118539 -8.735378 6.132648 14.334014 -1.146211 5.978705 12.224764 -2.034094 3.412864 -3.689442 0.570384 20.910190 12.432953 -3.704992 6.649317 2.484682 17.168783 2.910907 7.508306 -7.046889 -13.011497 3.542731 4.837767 -10.085812 -4.685875 -8.064018 8.196364 17.798702 13.111814 -7.668598 7.111765 -5.506341 -2.254181 5.382969 -0.799143 17.474328 7.682427 12.944492 11.209557 19.045451 -10.381640 -1.702320 7.037412 4.708071 -3.763512 11.086623 -10.869200 -16.995104 -11.928295 -1.626601 -30.194916 -11.385927 2.854624 23.480224 -17.177771 2.547090 4.868436 2.493651 15.884810 -9.623529 -0.342372 -11.368698 -1.635822 -8.648276 27.764081 2.435458 0.377812 0.856437 9.275153 9.444156 12.006696 -0.125009 -10.434294 -7.663252 -25.821048 -5.278680 -5.896144 7.040464 9.845103 -19.641962 -6.344328 1.537036 16.255864 -25.608618 0.456491 13.461289 11.723530 10.051707 -7.177575 -11.781615 4.699548 0.236680 -0.494285 12.893389 -10.283720 0.901149 -0.431831 3.528827 0.815781 4.267979 1.629523 -20.146248 -11.013890 -1.293264 -5.336284 1.154544 3.576215 7.982669 -8.782540 10.995985 -11.849628 14.280040 -23.094568 3.107512 -4.730219 -14.200155 -3.735133 7.232492 12.379962 4.755965 -8.033846 -8.420014 -3.861784 -20.238383 -23.270426 5.157799 5.879900 6.460053 3.766991 -2.986538 7.148891 -8.253440 2.342182 8.164980 -6.375180 -2.616612 -1.829450 19.617849 0.984482 -3.743064 -10.011574 -3.773862 -1.476518 0.737108 13.794418 -4.227689 -17.205304 -25.693990 -12.641120 14.735606 -4.360396 -0.907222 -10.552762 -2.293255 -15.908845 4.840629 -16.016127 5.104327 0.649081 -10.059977 -17.359878 0.721269 -2.296234 -4.308321 0.408544 -11.598646 -4.555971 11.868331 2.556737 5.566937 -0.087174 4.555154 -16.250264 -12.607116 4.051724 -8.641226 13.755007 7.427745 -0.956767 -13.416869 -3.806164 -15.257533 13.281856 -1.942815 3.300177 -8.213107 -2.976489 18.601941 -9.401921 -1.472339 -14.178223 4.125520 5.863955 -19.312315 23.180571 13.361761 -4.779167 -1.118315 2.255153 1.501009 10.827069 12.141153 -12.219310 -12.806889 1.521402 -6.841278 -0.213639 -4.358272 10.649794 -12.631768 3.856627 -9.624983 -5.647418 6.991836 9.499652 1.045160 9.155866 4.831897 -3.681044 2.532611 12.446974 11.244071 -4.071702 -12.997981 -26.215054 11.292671 -6.347582 -2.675517 -4.996199 -4.550646 -12.403601 4.955160 2.836626 16.094609 12.038179 -9.386530 13.240187 -20.310963 -16.550434 -9.996560 0.953399 0.862373 -3.726224 -0.954573 -5.750190 7.033839 7.373982 -2.573813 1.446475 -11.795525 -4.770966 -0.593681 15.021005 3.328741 -0.243251 18.188067 4.532362 -8.556760 -3.245782 2.215193 -2.063457 -2.560768 -10.007644 -6.958566 -3.299961 4.976616 -6.805545 6.166999 -3.334314 -2.776930 7.085890 -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.765731 0.072084 0.262005 0.385461 0.515479 -0.635688 0.377557 0.607033 -0.190401 -1.124505 -0.873204 0.313459 -0.121215 -0.640092 0.286038 0.020591 0.186111 0.396855 -0.773417 0.480225 0.239413 0.281208 -0.331503 -0.428370 0.083876 -0.265015 -0.820768 0.481833 -0.056029 0.632083 -0.380973 -0.196694 0.452301 0.196460 0.145995 0.770322 0.391852 -0.100386 0.652207 0.048263 1.278885 0.216010 0.187807 0.733977 0.838251 0.684749 -0.631051 1.365009 -0.325228 -0.216067 0.805635 -0.837452 -0.556309 0.071378 -0.734727 0.593866 1.067068 0.269232 -0.491969 0.645468 -0.307832 0.066408 0.191148 -0.507926 0.642508 1.067356 -0.074467 0.256233 1.472684 -0.350318 -0.355612 0.635290 0.905445 0.201529 -0.090835 -0.404926 -0.046052 -0.950564 -0.060415 -0.948316 0.054096 -0.447392 1.881744 -0.587998 0.120657 0.869336 0.222033 0.409795 -0.371492 -0.264708 -0.526231 0.359759 -0.343649 1.109248 -0.166594 0.441678 -0.336699 0.011561 0.305706 0.736535 -0.470390 -0.210900 -1.359225 -1.781701 -0.707467 -0.091891 -0.258060 -0.441644 -1.118727 -0.280483 0.793114 0.658813 -0.995353 -0.287245 0.607971 0.293320 -0.153392 0.903099 -1.150610 -0.272236 0.012501 0.067673 -0.107255 -0.134132 -0.336794 -0.987706 -0.092847 -0.096613 0.191055 -0.409779 -0.980739 -0.212352 -0.206862 -0.232872 -0.069871 -0.291697 -0.184834 -0.709504 0.308110 -0.434202 0.395663 -1.238716 -0.302301 -0.572252 -1.032988 0.049249 1.361339 0.495154 0.851185 0.379871 -0.227395 -0.729468 -0.708846 -1.044326 0.244744 -0.621562 0.825949 -0.311376 0.066561 -0.363473 -0.125440 -0.590004 0.081605 -0.441730 0.150716 -0.555759 1.549531 -0.516235 -0.174899 -1.044187 0.017362 0.926699 -0.199843 -0.243861 -0.419447 -0.482512 -0.521197 -0.801511 0.462457 -0.072463 0.155146 -0.196536 0.243660 -0.713985 0.251995 -0.326328 0.202633 -0.150277 -0.776443 -0.716908 0.066183 -0.139791 -0.370333 -0.105343 -0.414629 0.031338 0.517917 0.580519 0.183444 0.260670 -0.197534 -1.090704 -1.196261 -0.504178 0.313626 0.659927 0.954044 0.384077 -0.454391 -0.145880 -0.998133 0.780330 -0.984080 -0.175275 0.108643 -0.224562 1.057250 -0.388632 -0.304095 -0.992171 0.289038 -0.015356 -1.503696 0.968238 0.450033 -0.768296 -0.684866 -0.972098 0.038237 0.612708 1.316036 -0.310940 -0.025849 0.498631 -0.172844 -0.241657 -0.508194 0.638803 -0.204898 1.000433 -0.824946 -0.604282 0.318329 0.982443 -0.292384 0.324771 -0.016877 0.571842 0.312517 0.881274 0.220884 -0.382349 -0.511131 -1.632594 0.237178 0.417269 -0.016850 0.327290 -0.556371 -0.757529 0.056583 0.051445 0.944499 0.312845 0.434189 0.567789 -0.413530 -0.771286 0.276766 0.342237 0.316027 -0.790999 0.385847 -0.422792 -0.097099 0.158851 0.228848 0.451094 -0.680160 -1.264725 -0.308008 0.720086 0.347963 -0.318853 0.811015 0.079500 -0.354483 0.133270 -0.089917 0.803917 0.185424 -0.374052 -0.264868 -0.705278 -0.012574 -0.241725 1.247755 0.107631 0.171476 0.614092 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/program-wish-womens-day.cpp__main = 5.923025 2.072617 -3.278079 8.414092 -1.125359 -0.486213 -0.086202 5.274312 -3.176884 -17.438416 -12.491581 11.308291 0.704285 4.210469 3.094199 3.537818 1.334198 -0.101434 -20.511615 3.907239 6.682803 0.969265 0.851551 2.016883 3.169180 -4.527776 2.381533 1.115671 2.361257 9.540779 -4.512752 5.310675 8.563034 -1.815483 4.987350 7.191728 -3.072621 0.154242 -3.235491 -3.761050 12.411123 5.977240 0.712418 5.454065 -0.364729 9.575401 -0.561999 8.006875 4.784671 -7.714228 2.207149 0.276696 -7.121174 0.857343 -5.915286 2.858143 1.970094 2.459224 -4.757215 3.184384 -2.001517 -1.257670 1.304424 -2.494220 9.663620 1.852063 7.459993 6.224547 7.673386 -5.670219 -0.634993 5.827096 1.087220 2.383702 3.721766 -4.651091 -6.956520 -1.497801 0.371309 -15.148614 -8.722502 -2.048657 17.292894 -9.505327 0.137278 -0.398876 -2.724442 9.727293 -3.606806 2.806777 -8.038937 -2.092752 -1.123032 6.505335 2.399229 0.239698 1.553327 1.533651 2.330665 6.255751 -1.918838 -7.064677 -5.125569 -11.341082 0.008481 -3.617590 5.244892 8.072107 -10.496804 -2.475077 -3.740260 14.575129 -12.142566 -0.575236 5.708523 4.373027 3.673747 6.460589 -7.472564 -1.023450 3.908849 1.793595 9.910394 -4.180858 1.319043 -1.068352 2.560246 -0.166215 3.520730 1.848630 -10.796703 -9.210963 2.346041 -1.988750 -0.103457 2.390431 6.361993 -1.381379 6.979284 -1.979596 6.517653 -10.070623 -1.085032 -2.397018 -6.282401 -3.313073 10.452620 12.625439 6.119002 -2.194397 -1.780824 -1.759519 -11.301534 -9.530788 2.432924 1.937485 2.931578 3.600844 -1.245683 7.942309 -4.817142 2.447189 0.353647 -2.406292 -1.921959 -0.174234 3.876560 1.449602 -0.613319 -5.992864 -3.244345 -4.859978 -3.193864 8.251955 -1.759194 -14.960563 -13.505452 -7.063966 8.886440 -3.416528 1.320201 -4.532901 -0.583598 -3.297367 -1.881377 -8.988359 -1.520144 0.394952 -7.542975 -9.229838 -0.609564 -1.491151 -4.686025 1.367771 -6.531377 -2.173149 10.818676 4.520287 4.183490 -0.027648 -1.420807 -6.799695 -4.291028 1.911153 -8.061105 8.421400 6.168109 -3.940370 -10.415430 -3.199437 -7.660025 8.438745 -4.757674 3.567188 -5.644700 -2.062580 8.856998 -4.699982 0.517526 -5.475383 3.757191 5.207475 -24.091974 7.235803 8.517097 -1.532776 -0.443943 1.488093 0.465864 6.731916 5.476146 -4.702415 -5.257972 0.437393 -2.450355 1.087533 -1.051315 6.376091 -6.414004 -0.217311 -6.304344 -2.967448 6.755790 2.499835 1.762604 2.327421 5.610612 1.857223 8.166003 7.097771 6.409221 -3.777413 -7.109288 -20.353939 7.430356 7.426174 -3.226475 1.120585 -4.317942 -5.568526 1.752608 -8.744739 8.427149 -1.947489 -2.310578 7.163155 -8.275743 -9.056893 -6.863525 -0.903063 -1.053709 2.107940 2.625779 -2.676066 3.552238 2.217583 -2.521782 -0.670534 -5.426506 -2.564209 1.415059 6.999582 5.070200 4.929832 8.374074 3.687242 -5.704620 -1.349945 0.794281 -0.816086 -3.426136 -11.401786 -4.881603 -0.736095 2.585189 -4.026781 -0.000948 0.162889 -0.963920 1.580791 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/bfs.cpp__main = 0.670678 0.253021 1.401702 -0.210928 0.592687 -0.282795 0.688821 1.336443 -0.574958 -1.320791 -1.669315 -1.289355 -0.460845 -0.497807 0.885612 -0.626539 0.461944 0.202993 -2.210891 0.057502 0.742901 0.393653 0.428519 -0.263353 0.233745 -0.352723 -2.342350 1.004911 -0.117964 0.735302 -0.343526 -0.474118 0.484797 0.612248 0.054927 0.959617 0.058739 -0.233955 1.562595 0.126211 1.477063 0.141179 -0.107999 0.560901 1.076455 0.794926 -1.283352 1.007540 -0.739229 -0.333291 1.345659 -2.851983 -0.740781 0.276991 -0.533975 0.301247 1.989790 1.043681 -0.467338 1.035673 -0.683722 0.087471 -0.059857 -1.500623 0.436672 1.355404 -0.244677 -0.201123 1.178495 -0.579397 -0.560535 0.619968 0.452647 0.109905 -2.235835 -0.780524 1.174176 -3.217541 0.368162 -2.249674 -0.365706 -0.623348 1.796158 -0.203247 0.390987 1.419183 -0.586095 0.000000 -0.267258 -0.378566 -0.568312 0.365866 0.023812 0.527695 -0.486582 -0.058841 0.563420 -0.090522 0.733195 1.124208 -0.818516 0.346209 -2.812704 -2.424971 -0.504019 0.374658 0.184668 -0.545232 -0.702691 -0.371522 1.823435 -0.454535 -0.618763 -0.557023 0.773994 0.948265 -2.429283 1.512970 -1.900133 -0.963514 -0.183985 0.340218 0.472760 -0.390534 -0.046966 -1.921332 -0.370796 -0.024526 0.298431 -0.632691 -0.509124 -0.587601 -0.185960 -0.730009 -0.314589 -0.565362 -0.535321 0.383688 0.443858 -0.710133 0.696570 -1.444705 0.429396 -0.706594 -0.642256 0.194834 1.665954 1.172373 -0.321370 1.220579 -0.293147 -0.429813 -0.074780 -0.329221 0.164956 -0.157214 2.095169 -0.859441 -0.078511 -0.265414 0.074559 -0.847009 -1.075151 -0.137697 0.360608 -0.870130 1.737795 -0.367233 -0.367327 -1.229814 0.844164 1.681526 -1.683721 -0.761904 -0.670749 1.305415 0.009030 -1.144077 0.504464 -0.002664 -0.062761 0.025245 0.916889 -0.899272 0.693592 -0.276427 -0.102875 -0.003701 -1.496171 -0.746395 0.229807 -0.244997 -0.289524 0.346130 -0.120360 -0.350752 0.892575 1.568523 0.494661 0.308560 -0.096543 -0.902525 -1.470375 -1.418478 0.374090 0.413669 1.104461 0.162598 -0.546015 -0.071121 -0.529480 1.336469 0.374568 -0.387196 -0.637284 -0.391197 1.064825 0.051699 -0.058302 -1.178881 0.123304 0.478986 -2.276213 0.722711 0.169004 -0.742022 -1.279589 -2.056982 -0.268619 0.700431 1.420176 0.183627 0.228053 0.427591 -0.438573 -0.163259 -0.933635 0.755471 0.242590 0.869246 -1.025884 -0.884114 0.565398 0.987896 -0.199532 1.265144 0.597816 2.033691 0.751477 1.123113 -0.290652 -1.287508 0.055614 -1.829354 0.517653 2.816794 0.369833 0.162270 -0.709766 -1.322033 -0.343524 0.878073 0.857885 2.269488 0.791105 0.679277 0.851576 -0.536923 0.081168 0.902761 0.397959 -1.238517 -0.374818 -0.154001 0.118488 0.563558 -0.040734 1.758989 -1.032169 -3.228331 -0.846640 0.924211 0.432233 -0.220109 0.872146 -0.154361 -0.630469 0.144529 -0.016103 1.250559 0.732131 0.738397 -0.409761 -0.926898 -0.229662 -0.085469 1.012236 0.537865 -0.048853 0.967062 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = 4.284982 1.229536 -0.815118 5.818992 0.939104 -3.761840 0.471397 4.251023 -1.758872 -9.810500 -7.939273 2.378173 0.272912 -0.742939 3.790130 1.435611 -0.206372 0.906767 -13.687866 4.042690 3.932251 2.066411 -0.427337 -2.651730 1.834380 -1.491960 -2.037505 2.173348 0.682012 5.613791 -4.127811 1.966317 4.402380 0.525330 3.812668 3.472038 -1.475052 0.216026 1.060712 0.478304 9.133528 4.794859 -0.593618 3.671923 3.220578 5.985704 -1.624687 5.178186 -1.776126 -3.666297 3.360540 -1.889351 -3.831046 0.717960 -3.923454 3.917263 7.797696 3.271774 -3.553690 3.321040 -1.924008 -0.336556 1.673337 -3.139533 7.502190 4.115778 4.094940 3.181223 7.850954 -2.249632 -0.792201 1.938558 4.357583 -1.032097 0.861847 -5.019818 -3.684446 -7.259904 0.167182 -12.057280 -2.265325 -0.874853 9.702814 -6.211995 2.093497 3.068568 0.085305 5.245071 -4.078250 -0.888071 -4.103209 -0.037252 -3.222612 9.137971 -0.360609 0.645833 0.652181 2.891291 3.282992 4.792588 -1.545894 -2.730395 -5.461292 -11.799064 -3.066138 0.325937 1.831088 1.176856 -7.042744 -1.712497 1.509656 5.012644 -8.533313 -1.295037 4.761095 3.031218 -0.576910 0.157140 -6.025427 -0.336890 -0.504801 1.681378 3.537841 -3.192288 -0.110349 -4.189024 0.088562 0.677448 3.212366 -0.314251 -5.321973 -3.453449 -1.074595 -1.534727 -0.984376 -0.250691 1.245780 -3.301114 4.415694 -3.512009 4.757944 -8.780474 0.215980 -3.667780 -4.654280 -0.193814 4.975372 5.118828 2.431213 0.334591 -2.116102 -2.079466 -7.460218 -7.681207 2.561489 0.353589 4.146462 -0.180802 -0.424718 1.293618 -1.877430 -1.272305 2.148235 -3.625048 -1.205031 -3.337848 8.367201 -0.626350 -1.778066 -5.239514 -0.380254 2.861773 -2.283870 2.209150 -1.790150 -4.998616 -7.389965 -5.025512 4.841235 -1.081445 1.168831 -3.051827 2.017382 -6.092854 1.671641 -5.867825 1.395817 -0.132981 -4.628024 -5.633230 -0.787419 -0.739385 -0.484522 -1.063278 -3.690428 -0.821151 5.662849 4.610644 1.517694 1.356213 1.283227 -6.845540 -6.765500 -0.796374 -1.585360 5.202017 3.190984 -0.019776 -5.247071 -0.850983 -6.057821 5.928843 -2.261406 0.130171 -2.915195 -1.804388 7.028729 -3.086030 -1.958918 -5.826953 1.311616 1.329782 -9.503735 7.215113 3.898370 -3.108092 -1.789089 -3.516994 1.698525 4.128719 7.277996 -3.010788 -2.448392 0.415004 -2.169782 -0.617283 -3.175985 5.237265 -3.872384 2.606769 -4.519800 -2.997670 3.281211 4.246859 0.531082 4.056811 1.232785 1.771053 1.917044 5.334035 3.003559 -2.641394 -4.305813 -11.316458 2.617648 3.373409 -0.088431 -0.670995 -2.557285 -5.818211 -0.768504 1.056524 6.352748 5.789241 -0.224407 4.562189 -5.288284 -5.919939 -2.552483 2.335513 -0.039061 -3.065649 -0.203698 -2.405198 1.542141 3.002399 0.339064 2.545798 -4.852591 -6.603286 -1.722780 4.835429 1.523548 -0.549861 6.368673 2.171101 -3.805062 -0.547333 0.170798 1.088255 -0.016546 -3.178422 -3.333468 -3.227069 0.304442 -2.406995 3.702825 -0.323095 0.509577 2.644985 -PE-benchmarks/boruvkas-algorithm.cpp__main = 5.492986 -0.701056 -1.019221 4.821633 0.098966 -8.532148 3.330183 5.720970 -1.869520 -7.121602 -2.446510 1.496211 0.956195 -6.244317 0.480194 1.174628 -2.868430 2.428684 -12.480816 5.985390 3.254152 2.644444 -4.014632 -6.588632 0.063339 -2.312018 -2.882861 5.905869 -2.279391 5.720390 -2.371390 -1.824228 3.868399 0.668650 2.326735 6.815067 1.949292 1.055211 4.191477 4.971149 7.719479 7.523978 -5.154051 0.309061 5.323727 6.234357 0.912989 3.091683 -10.752245 -2.008523 0.223538 1.409129 -5.154257 -3.004778 -3.615560 1.644545 10.687276 6.029087 -3.378099 5.867705 -6.251304 -1.123800 3.686920 3.599649 7.940023 4.693936 2.970067 3.056403 12.121832 -2.372257 -0.551797 2.192137 5.628600 -4.761850 4.309332 -0.853682 -7.787504 -11.831031 1.345867 -12.814242 -3.394668 2.434939 7.532844 -5.717294 2.669545 5.518483 5.898714 5.302854 -7.586505 -3.288367 -3.338269 0.585590 -5.043181 19.021591 -0.546428 4.238912 -0.885633 5.419994 5.474174 4.537982 -1.192386 -4.412336 -4.887266 -13.591242 -2.713851 -2.385061 -4.731283 -1.736964 -8.500381 -4.514333 8.781867 5.920072 -10.139771 1.078630 5.652469 1.795079 6.082802 -4.217400 -5.159211 5.118106 -3.497107 -1.427706 2.508607 -3.957310 -2.313159 -0.621529 3.730994 2.106585 -0.536150 -0.317551 -12.371780 1.560318 2.427563 -4.478573 0.166105 1.036576 -1.578993 -7.572697 1.360109 -9.153040 5.978462 -10.195990 2.890401 -1.969977 -8.027715 0.925151 0.272209 3.856407 -1.366776 -2.278037 -2.368163 -0.917193 -7.678144 -15.051005 3.071800 -0.521183 2.544280 -5.326272 -0.722597 -3.994494 -1.867332 -1.669378 4.486418 -3.600025 0.926806 -2.283389 15.391231 0.928449 -2.243901 -1.627605 -2.113411 5.212367 6.200442 2.456895 -3.725774 -6.391486 -7.932562 -4.801902 4.789661 0.758060 -3.300427 -4.170624 -1.842616 -9.258448 5.427737 -2.725496 6.175016 -1.882500 -0.769350 -5.907500 -0.603523 -0.423038 -0.551596 -3.785768 -3.233322 -1.724427 1.118558 -3.125420 0.048575 -0.236638 3.200485 -5.863567 -6.903192 1.983458 3.058211 7.525792 3.562195 3.899484 -1.260805 1.716876 -7.969826 6.622092 -2.776349 0.033403 -0.591052 -4.641553 11.614847 -2.276828 -5.524959 -5.784338 3.280272 -1.568988 4.512075 14.579667 7.281183 -4.826828 -2.884548 -0.817216 -0.206538 6.007682 8.295541 -5.821820 -4.504945 2.730422 -2.011622 -2.068105 0.253484 3.835203 -4.547589 7.457525 -4.426139 -2.345455 1.776142 7.198023 -1.283554 3.660391 -4.811688 -3.320338 -3.987238 5.388346 1.710219 -0.362593 -5.593578 -6.851649 2.829536 -10.730308 -0.475000 -3.126270 -0.963761 -5.942743 0.855809 4.424099 7.638948 8.809978 -6.972151 3.717936 -9.153712 -7.937256 -3.491922 3.087900 1.061064 -4.640650 2.357571 -2.596784 2.049774 2.110271 2.600235 2.504819 -5.729629 -3.961134 -1.477541 3.260613 1.399631 -9.211636 7.649455 -0.921963 -0.896392 -2.480355 -0.572743 1.542582 2.335229 1.015068 -2.531618 -5.536129 4.373246 -2.098645 9.604048 1.063349 1.804735 6.298663 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 0.995289 0.565100 -1.417088 2.597527 -0.273447 -1.391206 0.168481 0.495235 -0.958344 -3.578547 -2.074768 1.195300 0.686737 -0.364248 0.580000 1.120664 -0.747133 0.622784 -3.429936 1.266876 1.563606 0.517282 -0.535102 -0.909256 0.247977 -0.936465 0.138836 0.544391 0.094119 2.272387 -0.999441 1.066478 1.792387 -0.341869 0.584070 1.568366 -0.584345 0.634314 0.012711 0.644625 2.549714 1.457885 -0.396008 0.495340 0.445634 2.149106 -0.182425 1.260868 -2.073517 -1.453566 0.821776 1.900834 -1.010086 -0.384592 -1.088090 1.017206 2.589664 1.367076 -0.868554 0.905224 -1.370777 -0.114801 0.866793 0.413794 2.673371 1.520400 1.760166 1.722037 2.825274 -0.988907 0.054174 0.755727 0.543439 -1.182081 1.996809 -0.677010 -2.470792 -0.642535 -0.510273 -3.603946 -0.980674 0.688036 3.913466 -2.311112 -0.198165 0.556088 1.453652 2.415311 -1.581669 0.010302 -1.219073 -0.075571 -1.957438 4.380844 0.588542 0.703481 -0.823200 1.303533 1.029518 1.230800 -0.535393 -1.434696 -1.107654 -3.551632 -1.553104 -0.918458 0.505356 1.101034 -3.341574 -0.874827 0.853157 2.279563 -3.728234 0.402692 1.644206 1.402949 2.200268 -0.435251 -2.458760 0.961846 -0.175363 -0.105157 1.264576 -0.583885 -0.043015 -0.540216 0.566178 -0.031844 0.349368 0.098344 -3.492697 -0.794005 -0.222996 -1.280977 0.351342 0.807434 1.241996 -1.541549 1.255311 -1.555697 1.711535 -3.648424 0.197543 -0.926077 -2.784537 -0.343478 0.107313 2.071236 0.940180 -1.435051 -1.127313 -0.701129 -3.439358 -3.424500 0.330453 0.220015 0.528051 0.120793 -0.343539 0.518575 -1.089599 0.603081 1.936818 -1.091498 -0.208672 -0.390831 4.475832 0.117719 -0.674034 -1.358939 -1.283711 -0.491484 0.636690 1.905476 -0.413327 -2.103254 -3.901595 -1.466434 1.866273 -0.536643 -0.051696 -1.701148 -0.414669 -2.541218 0.603330 -1.834763 0.614393 0.051334 -0.693517 -2.213735 -0.040478 0.046742 -1.311609 -0.597398 -1.713527 -0.475576 2.123551 -0.552605 0.796895 -0.033157 0.383089 -1.902549 -1.758728 0.985918 -1.029379 1.507867 2.020641 0.130028 -1.492506 -0.349442 -2.730670 1.503709 -0.579788 0.442505 -0.565629 -0.427397 2.579852 -1.648291 -0.831323 -1.748158 0.386180 -0.072091 -2.298328 3.429402 1.732350 -0.813528 0.098244 0.279508 0.542475 1.211724 1.555333 -1.679566 -1.296387 0.128727 -0.771676 -0.139166 -0.017392 1.439867 -2.091891 0.799060 -1.101316 -0.417944 1.116240 1.636364 -0.062553 0.957040 -0.202796 -1.207129 0.559703 1.212319 1.664809 -0.724865 -1.586327 -3.252748 1.041273 -3.341464 -0.829569 -0.823315 -0.106444 -1.507561 0.561048 0.178237 2.298944 0.527976 -1.643092 1.597851 -3.041729 -2.373338 -1.290484 0.393381 0.103613 -0.825181 0.122224 -0.834762 0.715340 1.064379 0.157253 0.126253 -2.103332 -0.409321 -0.048857 2.180142 0.201661 -0.679793 2.366196 0.672569 -0.831769 -0.697769 0.159995 -0.238188 -0.190771 -1.676482 -0.914789 -0.556481 0.820153 -1.028871 1.358693 -0.529541 -0.103273 1.387339 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 10.012303 3.345118 -11.961620 21.938931 -2.648886 -8.878545 0.515385 5.344313 -6.125353 -30.615829 -20.148261 15.077947 5.610169 0.384404 5.712468 9.236791 -4.480506 2.706763 -30.985199 9.860439 12.118246 3.018978 -3.898410 -5.005034 2.567361 -7.732668 4.503249 3.494853 2.211142 18.768843 -8.232369 10.464067 14.936587 -3.478699 6.000280 12.550747 -7.487722 3.696040 -2.908983 0.507041 21.770245 12.568363 -1.391211 6.939152 1.725716 17.920961 -1.530920 14.346079 -9.661614 -13.328663 8.588858 13.486245 -10.260265 -2.037409 -9.700294 8.408347 17.671499 8.408200 -6.998839 6.707580 -9.808156 -1.075292 6.464983 1.705824 22.217616 10.989440 16.255832 14.443558 20.847453 -9.667224 0.501808 8.085856 4.294947 -5.387392 15.770145 -8.902866 -19.739829 -0.875398 -2.817085 -28.589039 -9.584206 2.860256 34.629132 -19.193797 -2.192304 1.825827 8.605282 20.473653 -12.242273 2.565004 -10.746921 -1.412835 -13.528687 30.314152 3.909687 4.651263 -4.633967 8.994011 6.546652 11.050378 -4.218113 -12.146404 -8.057742 -27.312768 -10.094830 -7.106484 7.019951 11.155516 -26.054875 -5.159684 0.632351 19.078724 -28.880559 1.254942 13.373520 11.028404 17.804467 2.508205 -18.043471 4.356680 1.640843 1.431982 12.588102 -5.542843 1.691049 -4.228677 4.451116 0.112732 4.539623 2.436065 -27.557493 -9.516875 -0.859528 -8.061118 2.717696 6.684206 12.459469 -10.203541 11.713670 -10.271689 14.144242 -29.309798 -0.930187 -8.560214 -20.070243 -4.046733 5.992873 19.152552 11.485902 -10.336043 -7.717625 -5.400246 -27.681976 -24.949146 2.297843 2.563761 4.005889 3.358806 -2.081208 7.587878 -9.445413 5.566798 12.921364 -8.687231 -3.049461 -3.005851 29.448108 1.773234 -4.728934 -11.823357 -8.874003 -7.391769 1.820947 17.277940 -1.766332 -23.748544 -32.215063 -12.008103 16.138083 -4.938489 0.628355 -12.903845 -3.733860 -16.774735 1.503803 -16.178050 3.311536 1.376187 -8.485173 -18.673943 0.050875 0.468617 -10.255601 -2.959653 -14.198819 -4.110127 20.174386 0.711397 6.827759 2.060501 1.944877 -16.401711 -13.717266 7.609845 -11.013863 14.749903 16.326283 -2.172076 -13.612169 -4.387766 -21.268136 12.640643 -7.331947 4.940142 -6.212631 -2.843272 19.249219 -14.199842 -4.117757 -14.950238 3.465424 1.940499 -28.906273 24.786957 14.486955 -6.025448 1.346105 1.980374 4.665184 9.735657 12.255049 -12.987688 -11.129541 0.260167 -5.776217 -0.317103 -1.049691 11.741725 -16.279114 2.720901 -9.112958 -4.086071 10.584071 10.690619 0.970450 6.558007 1.518244 -7.561416 8.312609 11.020706 14.556581 -6.959863 -14.563403 -33.312132 10.445360 -16.107506 -8.359018 -4.409740 -3.737739 -12.970830 4.587833 -3.299433 17.412209 1.608936 -10.288043 13.827007 -23.777618 -19.090131 -12.212901 2.141887 -0.268214 -3.603621 0.760025 -6.760977 6.546636 8.314852 -0.109296 -1.201851 -15.586483 -3.422091 0.601819 18.491748 2.655841 -0.497339 19.420330 7.210006 -7.481874 -6.034362 1.802841 -4.105983 -3.233500 -17.623311 -7.635095 -2.933491 6.073333 -9.127861 7.257780 -2.399131 -0.699655 8.593249 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 2.598520 0.712934 -2.859986 5.742634 -0.370613 -2.811830 0.390967 1.356233 -1.605485 -8.104602 -4.769262 3.015601 1.406032 -0.563032 1.269781 2.402087 -1.319857 1.109023 -8.069431 2.798417 3.332851 1.135358 -0.997614 -1.865946 0.661368 -2.172454 0.818639 1.212306 0.371595 5.029439 -2.265522 2.310755 4.047849 -0.725693 1.556942 3.603790 -1.249807 1.183205 -0.303940 0.986877 5.904809 3.520273 -0.867284 1.484783 0.976065 4.867509 -0.136307 3.408607 -3.607568 -3.294548 1.928081 3.439925 -2.554750 -0.860447 -2.678406 2.344607 5.559782 2.792556 -2.063368 1.978364 -2.714837 -0.259957 1.859770 0.787404 5.863402 3.113685 4.021263 3.743322 6.220466 -2.426844 -0.021615 1.983148 1.507521 -1.927250 4.473684 -2.111240 -5.549307 -1.339666 -0.904186 -7.716403 -2.290331 1.025283 8.432288 -5.131071 -0.298202 1.150119 2.662133 5.293252 -3.373157 0.065305 -2.945734 -0.127037 -3.812128 9.360274 1.035075 1.485810 -1.468636 2.761086 2.142344 2.898365 -0.800376 -3.373157 -2.367545 -7.808458 -2.997461 -2.142183 1.335963 2.498384 -7.158384 -1.698504 1.083246 5.011921 -8.050925 0.724484 3.633205 2.982781 5.117872 -0.775137 -4.832239 1.769399 -0.082319 -0.056835 2.861993 -1.687591 -0.059949 -1.176160 1.395395 0.097316 0.901139 0.254455 -7.396817 -1.947232 -0.364194 -2.262841 0.693682 1.702780 2.765925 -3.552634 2.876485 -3.311753 3.835464 -7.869573 0.125455 -2.116134 -5.771805 -0.910939 1.281954 4.385158 2.534886 -2.841171 -2.348464 -1.566963 -7.384097 -7.590957 0.745764 0.479800 1.190737 0.511471 -0.675786 1.391697 -2.476718 1.216046 3.729729 -2.376347 -0.557501 -0.814708 8.712232 0.177469 -1.339175 -2.939374 -2.560931 -0.964948 1.224827 4.331129 -0.904037 -5.579714 -8.459531 -3.366092 4.192798 -1.308987 -0.014130 -3.593839 -0.890049 -5.356346 1.122946 -4.173392 1.393995 0.064721 -1.954360 -4.988757 -0.004629 -0.095776 -2.262147 -0.987317 -3.780660 -1.011967 4.500050 -0.393265 1.733164 0.178206 0.741014 -4.603891 -3.958487 1.996884 -2.346449 4.034524 3.892367 -0.020062 -3.207878 -0.960617 -5.874684 3.447939 -1.693441 1.023605 -1.360623 -0.980378 5.578732 -3.516862 -1.543497 -4.166804 1.027941 0.179532 -5.345104 7.419675 3.965861 -1.874690 0.079098 0.520705 1.146187 2.749748 3.582471 -3.630301 -3.091389 0.358783 -1.659937 -0.286628 -0.311691 3.182585 -4.400229 1.650715 -2.671685 -1.186943 2.466419 3.438911 -0.105066 1.962532 -0.068551 -2.328586 1.245446 3.037442 3.655279 -1.389027 -3.891424 -7.966055 2.448265 -5.873642 -1.779470 -1.584944 -0.731731 -3.429878 1.264164 0.200876 5.087745 1.528042 -3.131996 3.676784 -6.700394 -5.248538 -2.887207 0.604944 0.210665 -1.538095 0.266560 -1.933272 1.630758 2.112374 0.220967 0.081956 -4.419247 -0.814351 0.042075 4.768234 0.596374 -1.108558 5.241563 1.612852 -1.908577 -1.455893 0.467222 -0.668414 -0.462265 -3.848787 -2.019960 -1.178707 1.705421 -2.255542 2.781944 -0.977796 -0.107091 2.643933 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.658189 0.068677 0.362806 0.383752 0.202807 -0.613471 0.461386 0.805843 -0.154851 -1.492443 -0.980215 -0.021906 -0.043785 -0.263526 0.299942 0.006080 -0.024264 0.691609 -1.601428 0.398256 0.693843 0.718420 0.248817 -0.536044 0.225315 -0.113527 -1.137209 0.305046 0.214440 1.002241 -0.590533 -0.244728 0.767110 0.061061 -0.151854 0.915782 0.683511 0.061407 0.629104 0.111420 1.254640 0.310587 0.005002 0.627901 0.478816 0.881493 -0.400908 1.316217 -0.363061 -0.620088 0.650900 -1.581565 -0.747583 -0.011211 -0.411564 0.698151 1.431413 1.184683 -0.445119 0.779151 -0.072080 0.047207 0.263234 -0.818164 0.478239 1.183048 -0.169713 0.253050 1.535902 -0.539306 -0.215875 0.338591 0.564665 -0.085648 -0.017444 -0.858071 0.026376 -1.886242 0.000403 -1.693431 -0.301949 -0.181544 1.731887 -1.046547 0.594568 1.192062 0.060585 0.558354 -0.317265 -0.201093 -0.611686 0.250781 -0.180043 1.437371 -0.146938 0.094529 -0.230970 0.206578 0.583318 0.665378 -0.163975 -0.189797 -1.683524 -1.878401 -0.567952 -0.136027 -0.198839 0.070268 -1.268443 -0.516183 0.959603 0.578783 -1.529046 -0.143481 0.844922 0.723244 -0.395502 0.680271 -1.086473 -0.008077 -0.209056 -0.096914 0.178533 -0.720659 -0.288861 -0.783160 -0.289439 0.036710 0.085684 -0.404382 -0.978268 -0.490766 -0.289763 -0.306264 -0.038697 -0.117260 -0.018525 -0.588978 0.494861 -0.841376 0.495256 -1.300148 -0.156442 -0.102279 -1.073486 -0.127915 1.591231 0.298750 0.311467 0.118114 -0.657135 -0.784550 -0.672572 -1.138984 0.422024 -0.264137 1.174610 -0.000853 -0.076172 -0.244151 -0.192481 -0.532577 -0.236736 -0.353262 0.128178 -0.350517 1.485872 -0.552557 -0.166705 -1.215950 0.117279 1.065935 -0.400516 -0.155648 -0.531908 -0.025391 -0.751144 -0.917120 0.772361 -0.111615 0.189200 -0.373682 0.316375 -0.974672 0.381016 -0.549860 0.145872 0.066191 -0.967850 -1.036503 0.195573 -0.232986 -0.335574 0.195464 -0.541521 -0.125232 0.323485 0.777257 0.235320 -0.017690 0.135880 -1.385423 -1.301401 -0.623781 -0.072880 0.646464 0.609561 0.385102 -0.663356 -0.151115 -0.823197 0.997067 -0.776573 -0.095899 -0.383844 0.067663 1.310031 -0.332370 -0.130320 -1.290015 0.342423 0.336030 -1.379950 1.304319 0.438022 -0.543894 -0.443787 -0.779646 -0.025283 0.889324 1.202629 -0.502098 -0.516608 0.548483 -0.558599 -0.146978 -0.813820 0.700147 -0.488160 0.937811 -0.668096 -0.377871 0.192023 0.974209 -0.227282 0.727133 0.457136 0.583667 0.143050 0.901498 0.200775 -0.590200 -0.452735 -1.615315 0.626933 0.993109 0.285891 0.105837 -0.800264 -0.589568 0.408569 0.553906 0.954781 1.236045 0.482061 0.713574 -0.738041 -0.892255 0.275920 0.410090 0.461706 -0.664660 0.066723 -0.316532 0.212764 0.508295 0.065493 0.696778 -0.821137 -1.457843 -0.276074 0.999143 0.227631 -0.235697 1.102388 -0.097617 -0.515313 0.321902 -0.220523 0.877237 -0.156911 0.241844 -0.111964 -0.425152 0.103597 -0.437643 1.272586 -0.217455 -0.367459 0.640722 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -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.919315 -0.531794 -0.393942 1.050414 0.482480 -0.550930 0.156020 0.189396 0.127730 -1.557479 -0.723430 1.010827 0.093460 -0.395366 0.207581 0.483622 0.149505 0.199491 -0.680233 0.635598 0.113598 0.031162 -0.565861 -0.224773 0.071047 -0.535112 0.281831 0.355092 0.048136 0.822552 -0.524639 0.248577 0.697512 -0.101827 0.306324 0.761978 0.453172 -0.046072 -0.138023 0.080789 1.534250 0.327774 0.124752 0.764011 0.560881 0.934876 -0.258382 2.099717 0.326417 -0.374512 0.991798 -0.049797 -0.528532 -0.036233 -1.117995 0.773660 0.886735 -0.019574 -0.639258 0.413353 -0.364256 0.131785 0.326178 0.093974 1.149466 0.885009 0.613677 0.666674 1.639567 -0.532160 -0.272652 0.824426 1.053742 0.384104 1.091696 -0.542959 -0.801615 -0.321499 -0.134581 -0.300347 -0.000516 -0.477989 1.790717 -0.951671 -0.284509 0.596952 0.427976 0.964608 -0.585552 0.140777 -0.841059 0.306783 -0.211527 1.630886 0.029861 0.567906 -0.649820 0.191913 0.076775 0.725410 0.007477 -0.741834 -0.850238 -1.765775 -1.080566 -0.478905 -0.100487 -0.125386 -1.692013 -0.031400 0.289357 0.989524 -1.375492 -0.049014 0.604179 0.287558 1.570825 0.684091 -0.820557 -0.088514 0.363778 0.126669 -0.024697 -0.142539 -0.191499 -0.901905 0.448291 0.033779 0.240868 -0.303139 -1.231320 -0.155068 -0.088102 0.172865 0.106957 -0.037939 0.312534 -1.317773 0.495187 -0.296321 0.517702 -1.510865 -0.722121 -0.700520 -1.152628 -0.149449 1.881445 0.488941 1.662304 0.086203 -0.604986 -0.762829 -1.359115 -1.887543 -0.023387 -0.616709 0.189099 0.171830 0.023359 0.030898 -0.312690 -0.206033 0.560209 -0.705083 -0.138994 -0.336860 0.879097 -0.460829 -0.113835 -1.007803 -0.381555 0.452040 0.285347 0.559569 -0.180488 -1.938199 -1.180837 -0.834096 0.664949 -0.296984 0.337760 -0.400397 -0.149863 -1.128236 0.093382 -0.592029 0.231028 -0.166954 -0.843252 -0.987065 0.122024 -0.150703 -0.233419 -0.131250 -0.886612 0.170914 0.270249 0.406332 0.301931 0.334343 -0.323440 -1.549133 -1.352917 -0.064174 -0.104199 1.354309 0.676759 0.172333 -0.269853 -0.423734 -1.389066 0.714567 -1.874098 0.065239 0.394461 -0.369318 0.998932 -0.760701 -0.553584 -1.093112 0.454075 -0.084473 -1.112542 1.520383 0.876433 -0.862793 -0.389691 -0.446298 0.308916 0.580767 1.381927 -0.669090 -0.245847 0.386109 0.200508 -0.233030 -0.245419 0.743730 -0.536157 0.728546 -0.940090 -0.680013 0.305624 1.094960 -0.254695 -0.113743 -0.036474 -0.075568 0.062700 0.967353 0.560331 -0.001243 -0.844913 -2.207627 0.265818 -0.431462 -0.479986 0.485230 -0.975925 -0.552391 0.238308 -0.306594 1.201929 -0.321127 0.386590 0.796404 -1.256238 -1.059370 -0.008175 -0.157300 0.068970 -0.481056 0.767396 -0.633897 -0.106580 -0.027028 0.237097 -0.389005 -0.594696 -0.270785 0.018858 0.734175 0.275052 -0.154054 0.975049 0.425458 -0.373522 -0.101558 0.011528 0.202036 0.120739 -0.997460 -0.271484 -0.455527 0.105681 -0.424546 1.002789 -0.116853 0.234528 0.287070 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.575654 -0.001578 0.251332 0.246478 0.148457 -0.400486 0.247259 0.651660 -0.159472 -1.105481 -0.954459 -0.364353 -0.090708 -0.364502 0.561027 0.120546 0.160002 0.306928 -1.336775 0.373043 0.516632 0.330566 0.023833 -0.191522 0.214129 -0.252029 -1.201653 0.187293 -0.006047 0.651971 -0.470634 0.036033 0.480992 0.082871 0.085268 0.537145 -0.032760 -0.097635 0.827080 0.262590 1.059471 0.232353 0.004921 0.363683 0.555754 0.617844 -0.758271 1.062537 -0.338152 -0.350348 0.881174 -1.299086 -0.454773 0.361837 -0.457037 0.436588 1.164658 0.566447 -0.344436 0.564690 -0.452908 0.188772 0.137266 -0.721751 0.700652 0.936446 0.130504 0.203621 1.040415 -0.163769 -0.023334 0.198472 0.454159 -0.111541 -0.378246 -0.490928 0.317585 -1.682727 0.005299 -1.236968 0.034770 -0.296984 1.429902 -0.625828 0.281393 0.843918 0.053060 0.500621 -0.334533 -0.088430 -0.435790 0.276674 -0.156149 0.776218 -0.231704 0.170297 -0.222055 0.171669 0.260992 0.407252 -0.312435 -0.066509 -1.549214 -1.624292 -0.690074 0.050534 -0.014165 -0.154731 -1.121107 -0.060409 0.983427 0.214322 -0.996656 -0.071450 0.435155 0.467341 -0.579008 0.858248 -1.153825 -0.383423 -0.192933 0.363755 0.050396 -0.290780 -0.051621 -1.353778 -0.133976 0.148099 0.272179 -0.379926 -0.536808 -0.238348 -0.178087 -0.294857 -0.165149 0.064911 0.068890 -0.297210 0.421137 -0.519909 0.406626 -1.164728 -0.133359 -0.537711 -0.701541 0.037847 1.385091 0.725979 0.212201 0.464645 -0.442630 -0.492500 -0.732228 -0.649039 0.055042 -0.385666 0.990994 -0.220238 0.010618 -0.220817 -0.024299 -0.321084 -0.305388 -0.409424 0.133965 -0.555434 1.193565 -0.327737 -0.266059 -0.971689 0.056859 0.982253 -0.724392 -0.227521 -0.276620 0.272085 -0.583527 -0.672392 0.491339 -0.085895 0.316680 -0.281418 0.528318 -0.812922 0.356634 -0.358148 -0.075372 0.006930 -0.751866 -0.670418 0.001344 -0.078058 -0.255539 -0.107935 -0.340984 -0.036714 0.557196 0.807750 0.293795 0.197084 -0.066738 -0.950874 -1.119592 -0.593464 -0.052297 0.544071 0.728592 0.070758 -0.444602 -0.093348 -0.733803 0.868301 -0.523580 -0.125350 -0.219282 -0.231586 0.799744 -0.269982 -0.317264 -0.946319 0.142343 -0.043534 -1.407789 0.832865 0.287750 -0.621949 -0.413293 -1.145516 0.293668 0.481337 0.992071 -0.063859 0.128419 0.185402 -0.267855 -0.121662 -0.600587 0.651505 -0.331296 0.592138 -0.574400 -0.334518 0.474769 0.720222 -0.169517 0.520801 0.222270 0.715581 0.391405 0.588072 0.116175 -0.656906 -0.292070 -1.382487 0.196147 1.088962 0.132011 0.157588 -0.592921 -0.607397 -0.125941 0.364786 0.762982 1.019121 0.593992 0.482793 -0.246627 -0.626608 0.070046 0.487107 0.108851 -0.659448 0.042207 -0.212190 -0.013899 0.434314 0.302666 0.702519 -0.826428 -1.580458 -0.298461 0.754317 0.266984 -0.287050 0.696136 0.125935 -0.400267 0.069849 -0.078293 0.557765 0.137062 0.206920 -0.252914 -0.466583 -0.082285 -0.367645 0.921314 0.013508 0.063895 0.435773 -PE-benchmarks/find-parity.cpp__main = 0.553133 0.180484 0.112570 0.370534 -0.210923 -0.504934 0.261264 0.885528 -0.279185 -1.419230 -1.126958 -0.117070 0.039536 -0.290502 0.809538 0.346127 -0.113356 0.297595 -2.055410 0.498101 1.000339 0.599685 0.398038 -0.326129 0.344165 -0.293597 -1.430314 0.089334 0.078768 1.009317 -0.527829 0.311888 0.663158 -0.024593 -0.085368 0.704564 -0.349536 -0.060065 0.903251 0.392700 1.142720 0.205139 -0.057536 0.229212 0.319855 0.858571 -1.035481 1.045024 -0.559465 -0.665379 1.085841 -1.004680 -0.775467 0.348065 -0.263494 0.488317 1.285132 0.950976 -0.243825 0.594787 -0.643263 0.075853 0.215077 -0.675966 1.000101 1.204806 0.291345 0.498008 1.182915 -0.245333 0.134117 0.054475 0.091094 -0.504089 -0.216356 -0.694011 0.404889 -2.192176 0.012522 -1.749525 -0.364465 -0.139116 1.942695 -0.994756 0.404905 0.920351 0.247189 0.940360 -0.355014 0.188291 -0.514041 0.174986 -0.081808 0.929828 -0.335023 0.099572 -0.352492 0.219018 0.240988 0.422260 -0.189672 -0.099460 -1.971495 -1.606295 -0.815098 -0.010934 0.209233 0.306299 -1.651068 -0.059033 1.228384 0.048350 -1.584960 -0.029260 0.662496 0.856882 -0.603958 1.337751 -1.460602 -0.316424 -0.165836 0.496020 0.190277 -0.333714 0.037257 -1.496757 -0.290813 0.267712 0.267959 -0.367525 -0.986555 -0.531938 -0.106856 -0.613355 0.054239 0.394721 0.434675 -0.175600 0.530135 -0.815474 0.629146 -1.487141 -0.116881 -0.569517 -0.696148 -0.074607 1.131274 0.994648 -0.115958 0.268204 -0.736091 -0.452561 -1.036097 -0.506220 -0.082508 -0.390581 1.153154 -0.041775 -0.073920 -0.049953 -0.056352 0.044942 -0.408029 -0.517779 0.092044 -0.650442 1.084731 -0.220246 -0.334067 -1.183020 -0.118174 0.713168 -0.958857 0.083670 -0.124668 0.504620 -1.225045 -0.845354 0.797892 -0.156293 0.452871 -0.645620 0.570044 -0.980874 0.293337 -0.563194 -0.065838 0.247283 -0.856127 -0.985388 0.037583 0.021580 -0.624979 -0.132460 -0.471838 -0.219489 0.721916 0.571921 0.446481 0.173431 -0.110134 -1.048735 -1.293648 -0.485730 -0.376357 0.456436 0.973309 0.047884 -0.811908 -0.165054 -0.851738 1.163406 -0.690688 0.066463 -0.419858 -0.150544 1.102928 -0.472944 -0.436850 -1.265645 0.178946 -0.002200 -2.047437 1.126377 0.250045 -0.557960 -0.218221 -1.104229 0.367810 0.717302 0.927900 -0.167079 -0.042057 0.058120 -0.305720 -0.090334 -0.635423 0.746269 -0.776095 0.589804 -0.497970 -0.213665 0.677413 0.820668 -0.100070 0.885324 0.381227 0.572560 0.597912 0.457414 0.369875 -1.025654 -0.287692 -1.352344 0.401729 1.370010 0.101458 0.122299 -0.781542 -0.679524 -0.008663 0.584381 0.967009 1.121296 0.629099 0.592687 -0.516945 -0.887074 -0.161705 0.672366 0.015033 -0.498339 -0.152632 -0.004959 0.159090 0.990116 0.263798 0.854318 -1.239192 -1.742173 -0.249504 1.376604 0.314969 -0.256870 0.957721 0.268337 -0.409112 -0.030026 -0.079341 0.451233 -0.138300 0.264424 -0.172436 -0.253171 0.024571 -0.584398 0.947312 -0.040593 -0.265495 0.376428 -PE-benchmarks/birthday-paradox.cpp__main = -0.048272 0.071422 0.115914 0.054210 -0.042873 -0.019588 0.065987 0.092961 -0.170118 -0.291935 -0.290938 -0.361077 -0.044401 -0.017055 0.237546 -0.018947 0.048860 0.114848 -0.336914 0.009038 0.206087 0.043283 0.100441 0.057286 0.029361 -0.097347 -0.478493 0.092562 -0.005190 0.202640 -0.112651 0.082549 0.146377 0.071971 0.009841 0.133356 -0.025984 -0.012052 0.246530 0.144910 0.236204 -0.056323 -0.009965 -0.052094 0.072874 0.184693 -0.205128 0.008552 -0.141661 -0.126406 0.228506 -0.491893 -0.019927 0.116846 -0.081813 0.013125 0.219598 0.261125 -0.072985 0.166975 -0.245194 0.064139 0.005176 -0.295291 0.204420 0.158686 0.026580 0.049795 0.111897 -0.067059 0.020210 -0.016095 -0.052398 -0.132210 -0.351786 0.043360 0.249525 -0.745584 -0.030601 -0.413013 -0.062059 0.053750 0.291166 -0.122151 0.035209 0.256145 -0.113203 0.112350 -0.076787 0.001577 -0.156621 0.009241 0.054002 -0.060063 0.058363 -0.115702 0.017103 0.051105 0.099043 0.086023 -0.162588 0.016301 -0.526099 -0.470041 -0.213344 0.056087 0.064069 -0.021312 -0.246492 -0.058687 0.472506 0.070659 -0.235528 0.010063 0.105384 0.194857 -0.519802 0.121637 -0.367142 -0.094855 -0.049878 0.155089 0.200813 -0.062276 0.087120 -0.415654 -0.036383 -0.003449 0.108532 -0.083233 0.041861 -0.145783 -0.006280 -0.139225 -0.072332 0.024547 0.022122 0.179508 0.140859 -0.143410 0.176559 -0.245452 0.162144 -0.127978 -0.131941 0.009408 0.401815 0.367851 -0.106375 0.139629 -0.210282 0.003995 -0.151613 -0.131797 0.029360 0.010928 0.348200 -0.065205 -0.047675 0.013442 0.013551 0.003936 -0.107232 -0.083995 0.022793 -0.074569 0.124423 0.015941 -0.136570 -0.303929 0.082023 0.260577 -0.342476 -0.070738 -0.107894 0.385364 -0.102528 -0.172735 0.141157 -0.033802 0.064806 -0.044602 0.147846 -0.235997 0.168193 -0.111039 -0.114118 0.032659 -0.212239 -0.189534 -0.009001 -0.026185 -0.168180 0.027613 -0.055618 -0.044026 0.189252 0.102549 0.132632 0.024648 0.019906 -0.035257 -0.215156 -0.193804 -0.105230 -0.025348 0.259068 0.005572 -0.225689 -0.028060 -0.108123 0.280242 0.091188 -0.012087 -0.108072 -0.126373 0.157921 -0.053440 -0.076762 -0.076004 0.026091 0.067895 -0.560551 0.060924 0.100215 -0.128518 -0.099904 -0.325991 0.068783 0.117441 0.216994 0.041203 0.153126 -0.005666 -0.060029 0.019170 -0.141958 0.144229 -0.059824 0.012213 -0.124450 -0.061491 0.178066 0.140366 0.019353 0.196250 0.127780 0.339236 0.156184 0.099246 -0.016297 -0.256310 0.051036 -0.230113 0.110332 0.477200 0.078405 0.096203 -0.116490 -0.090462 -0.082753 0.021020 0.146121 0.350049 0.045350 0.154276 0.103756 -0.122577 -0.076549 0.155322 -0.003056 -0.221700 0.032196 0.000000 0.038619 0.150746 0.047506 0.280255 -0.180770 -0.554006 -0.090597 0.176139 0.084828 -0.010537 0.175154 -0.034378 -0.168651 -0.027497 -0.000884 0.103944 0.098497 0.069702 -0.131884 -0.077884 0.018385 -0.104373 0.103612 -0.066720 -0.050115 0.186137 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.297346 0.179357 -0.200210 -0.604251 -0.308303 0.156717 -0.355720 0.339386 -0.400785 -0.665766 -0.683481 -0.209722 0.091344 -0.116503 0.472778 0.298356 0.341453 0.412177 -1.106661 0.223812 0.353459 -0.140927 -0.175399 0.563281 0.401979 -0.155024 -1.210259 -0.261065 -0.132671 0.624902 0.419631 -0.162585 0.509173 -0.938366 0.300103 0.779727 0.463961 0.413993 0.601718 0.286126 0.707629 -0.034281 0.263228 -0.470625 -0.052383 0.570437 -0.504735 0.726946 -0.234195 0.225119 0.405260 -0.880606 -0.261215 0.663019 -0.857489 -0.235826 0.248542 0.019388 -0.664470 0.449506 0.112483 0.082223 -0.019728 -0.127038 0.579611 -0.255283 -0.122612 0.170490 0.664925 0.205906 0.144428 0.407924 -0.402423 -0.580869 -0.240063 -0.186409 0.943162 -0.871702 0.224680 -0.919193 0.002032 -0.357349 1.099691 -0.524264 0.015086 0.712858 -0.736454 0.669441 -0.208483 0.218246 0.072279 -0.284751 -0.001198 0.058962 0.277755 0.466148 0.367656 -0.402543 0.017211 -0.001612 -0.812308 -0.327494 -1.089908 -0.735817 -0.289230 -0.150322 -0.111126 0.303316 -0.458026 -0.862482 0.956201 0.284497 -0.292721 0.727866 0.220851 0.891704 -0.667271 0.714496 -1.367676 0.026674 0.196646 0.415452 0.687407 0.127167 -0.381970 -0.277571 0.404806 0.274733 -0.163767 -0.657566 -0.060790 -0.765859 0.351841 -0.065705 -0.456352 0.112393 0.020417 -0.180982 0.214355 -0.085626 0.319618 -0.590334 -0.454280 0.021688 -0.246504 0.011513 1.068718 0.235553 -0.367801 -0.218855 -0.358507 0.287530 -0.344551 -0.476747 0.409771 0.224878 0.358388 -0.063828 -0.208205 0.633533 -0.093559 0.277898 -0.395158 -0.307869 -0.079910 0.518243 0.397493 0.166895 -0.280959 -0.545626 -0.707704 -0.053293 -0.484917 -0.265843 -0.242551 0.480953 0.124836 -0.168904 0.637982 -0.055706 0.363175 0.263454 0.153188 -0.767838 -0.046596 -0.440866 -0.244970 0.069614 -0.593173 -0.175367 -0.682089 0.107447 -0.103365 -0.045502 -0.596343 -0.040011 0.066844 0.109068 -0.119451 -0.474881 -0.522707 -0.474237 -0.501102 -0.221852 -0.269671 0.438990 0.219011 -0.044918 -0.279723 0.391584 0.333506 0.176536 -0.202091 0.236568 -0.362039 -0.511627 0.630072 -0.144744 -0.429958 0.053810 0.279688 0.058792 -1.058329 0.518744 0.652861 0.187857 -0.468738 0.314730 -0.661054 0.283618 0.369375 -0.087245 -0.038229 0.131512 -0.270033 0.133295 0.166189 0.622351 -0.544985 0.453523 -0.807061 0.316132 0.674623 0.304739 0.033288 0.478264 0.535020 0.578092 0.480091 0.731108 0.026202 -0.986126 0.012056 -0.910485 0.241053 0.812147 -0.429985 0.093217 0.527929 0.041557 -0.403004 0.037114 0.584831 0.754949 0.654665 0.125642 0.377285 -0.616215 -0.337655 0.663412 0.121459 0.279491 -0.157082 -0.372218 -0.219512 -0.595935 -0.017217 0.549094 -0.344533 -0.715508 -0.224190 0.319856 0.582468 0.025714 0.386371 0.176422 -0.119275 0.193097 -0.154125 0.788825 0.365134 0.176275 -0.478142 -0.236335 0.700190 -0.164689 0.548116 0.007498 0.322276 0.387318 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 3.886006 0.896220 -2.281315 6.980493 -0.404266 -2.537466 0.755079 2.713591 -2.162981 -11.954100 -7.869681 3.090504 1.363048 0.768483 2.385354 2.786187 -1.008496 1.070808 -12.929788 3.191708 5.372336 1.986153 0.705639 -1.354953 1.601418 -2.958305 -0.300734 0.973350 1.240074 7.260568 -3.455641 3.491932 6.006940 -0.494926 2.235218 5.087124 -1.929063 1.075355 -0.016841 0.149238 8.283080 4.493395 -0.216769 2.422341 0.562426 6.804679 -0.730400 6.001012 -3.000779 -5.401642 3.710416 -0.959266 -4.174660 0.078258 -3.274652 3.196736 6.460488 4.446194 -2.510374 2.755435 -3.221035 -0.078320 1.898376 -1.232044 7.315876 4.138535 4.713230 4.356579 7.442077 -3.723103 -0.110111 3.001359 1.037058 -1.627361 3.674027 -4.400228 -5.485871 -2.990955 -0.626201 -10.943083 -4.086650 0.451318 11.837814 -6.996069 0.336611 1.797289 1.340279 6.803043 -3.533106 0.649026 -4.567671 -0.075421 -3.384299 9.510051 0.667986 1.008581 -0.916730 2.654161 2.886162 4.089154 -1.289240 -3.869521 -5.054889 -9.873928 -2.544080 -2.341634 3.126754 4.296079 -9.171282 -1.932769 -0.112033 6.798155 -10.576606 0.440922 4.901354 4.792704 4.306881 2.156699 -6.030804 0.613007 0.686447 0.782871 4.751918 -3.438955 0.568346 -3.180827 1.004906 0.133821 1.789663 0.015411 -8.749724 -4.078318 -0.491986 -3.027545 0.616266 2.378957 4.095427 -2.907350 4.517907 -4.219050 4.981839 -9.739871 -0.307737 -2.714622 -7.484619 -1.651990 5.967351 6.902492 3.349697 -2.497078 -3.239998 -2.346238 -8.879230 -8.450967 0.735861 0.688729 3.520272 1.710939 -0.747434 2.791699 -3.505561 1.523522 2.268294 -2.536093 -0.854876 -1.252086 8.293787 0.014158 -1.646944 -4.862456 -2.228345 -1.066544 -1.433009 5.480204 -1.201242 -7.057820 -10.953484 -5.204230 5.979787 -2.036555 0.630369 -4.717415 0.099720 -6.203028 0.696385 -6.000592 0.885831 0.806179 -4.246321 -7.072393 0.357475 -0.586350 -2.586310 -0.013705 -4.324560 -1.871312 7.098022 2.243570 2.959102 0.752783 0.471996 -6.065497 -5.287338 1.383854 -4.241450 5.235702 4.590971 -1.153769 -5.020343 -1.972625 -7.051309 5.494309 -1.666891 1.294359 -3.166448 -0.436573 7.070275 -4.169912 -0.376860 -6.033802 1.344950 1.621007 -11.456343 7.673278 4.599074 -2.260783 -0.259311 -0.767863 1.421578 4.252608 4.721995 -3.482658 -3.977623 0.298473 -2.761361 0.047360 -1.668632 4.320951 -5.723963 1.345865 -3.620181 -1.863996 3.758462 3.805969 0.034809 2.907456 2.115224 -0.485505 3.735931 4.340594 4.513435 -3.123167 -5.130343 -13.026402 4.019006 -0.359865 -1.647976 -1.691458 -2.340369 -4.629720 1.815997 -0.690708 6.525452 4.020138 -2.227559 5.312747 -7.517101 -6.635259 -3.780704 1.123143 0.133586 -1.588499 -1.004927 -2.055932 2.798985 3.615271 -0.320375 1.482255 -6.214232 -3.292418 -0.092932 7.101268 1.014614 0.713567 7.113839 2.293958 -2.716842 -1.425756 1.144816 -0.172763 -1.313660 -5.132869 -2.904159 -1.113364 1.511986 -3.130589 2.798331 -1.146274 -1.051014 3.090661 -PE-benchmarks/dfs.cpp__main = 0.592928 0.219820 1.355986 -0.170414 0.600933 -0.186531 0.664405 1.204508 -0.521780 -1.246767 -1.533439 -1.131631 -0.445076 -0.400440 0.779870 -0.636307 0.488246 0.192731 -1.959981 -0.030385 0.640123 0.338247 0.402783 -0.222754 0.185879 -0.341773 -2.058944 0.998075 -0.076873 0.694015 -0.292315 -0.475906 0.461429 0.585705 0.055328 0.925907 0.183136 -0.200975 1.320162 0.034040 1.407980 0.092136 -0.094349 0.583949 0.988504 0.769423 -1.116735 0.926618 -0.607278 -0.312733 1.209434 -2.642064 -0.680616 0.174995 -0.545609 0.277870 1.814924 0.980640 -0.471331 0.982571 -0.576912 0.072762 -0.069327 -1.376309 0.340464 1.218642 -0.245134 -0.177347 1.070330 -0.645597 -0.589016 0.639058 0.426621 0.199124 -2.091768 -0.721302 1.076393 -2.943552 0.346312 -2.020430 -0.372426 -0.594171 1.652080 -0.165665 0.326167 1.331239 -0.630017 -0.055041 -0.221810 -0.358733 -0.580700 0.317038 0.076496 0.462670 -0.397377 -0.094316 0.587272 -0.104002 0.699906 1.106460 -0.720834 0.288832 -2.557921 -2.250974 -0.450018 0.308448 0.200339 -0.508501 -0.548596 -0.386785 1.672425 -0.398271 -0.531610 -0.547402 0.734708 0.894754 -2.250127 1.338258 -1.700002 -0.877441 -0.114201 0.250640 0.492252 -0.383112 -0.034376 -1.657002 -0.341869 -0.069277 0.281247 -0.561232 -0.457859 -0.590997 -0.167155 -0.629680 -0.292200 -0.601517 -0.535791 0.362472 0.423254 -0.636546 0.675375 -1.296646 0.417732 -0.612655 -0.587137 0.146812 1.582606 1.021799 -0.214817 1.130727 -0.280375 -0.395026 -0.001450 -0.361145 0.203013 -0.063276 1.928889 -0.752153 -0.097037 -0.192854 0.015877 -0.807740 -0.972120 -0.099160 0.315133 -0.736745 1.507292 -0.356279 -0.335699 -1.146596 0.862398 1.539792 -1.520278 -0.675660 -0.664100 1.125105 0.057650 -1.069758 0.477650 -0.029391 -0.091045 0.103216 0.772152 -0.806279 0.629495 -0.274812 -0.061128 -0.021549 -1.444679 -0.722336 0.273638 -0.268260 -0.262952 0.435184 -0.138500 -0.318326 0.761776 1.426307 0.449041 0.280622 -0.069078 -0.835442 -1.342062 -1.326514 0.340654 0.391839 0.995240 0.161339 -0.497357 -0.103663 -0.456755 1.215844 0.342823 -0.341195 -0.574308 -0.364075 0.954474 0.049891 -0.009453 -1.079855 0.146937 0.555729 -2.100565 0.654271 0.194649 -0.680100 -1.236708 -1.836237 -0.315144 0.642430 1.335214 0.111245 0.152087 0.451378 -0.402245 -0.135935 -0.861633 0.670847 0.315281 0.776414 -1.010855 -0.869862 0.498614 0.914498 -0.177545 1.175935 0.637600 1.903678 0.662432 1.124283 -0.264477 -1.128929 0.047687 -1.702769 0.546501 2.615370 0.330976 0.185618 -0.682450 -1.216719 -0.265601 0.778402 0.772066 2.048992 0.702283 0.680903 0.808898 -0.492189 0.084260 0.743336 0.421121 -1.158736 -0.308684 -0.165254 0.133852 0.444777 -0.100885 1.578989 -0.862151 -2.914528 -0.774582 0.832503 0.399166 -0.124843 0.831581 -0.179584 -0.619549 0.163819 -0.010470 1.166180 0.720086 0.593117 -0.374543 -0.847024 -0.187291 -0.063954 0.877631 0.497569 -0.077292 0.912687 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = 1.333801 -0.200887 -0.329364 2.069159 0.384946 -0.888925 0.279782 0.805136 -0.231410 -3.476812 -2.140833 1.427976 0.166444 -0.154190 0.599723 0.626770 0.144803 0.463208 -3.437062 1.090658 1.124064 0.570902 -0.102475 -0.618993 0.411531 -0.939229 0.433895 0.644480 0.372730 1.999410 -1.161985 0.629812 1.659084 -0.035537 0.925248 1.682542 -0.013045 0.096299 -0.221134 -0.133183 2.954670 1.258537 0.005058 1.267808 0.781732 2.089034 0.043766 2.019987 0.223900 -1.324766 1.009860 -0.041497 -1.263896 -0.255082 -1.608855 1.183692 1.907555 0.962832 -1.195373 0.928212 -0.567349 -0.023114 0.585421 -0.357379 2.150414 1.112083 1.272980 1.281316 2.636504 -1.238367 -0.363047 1.195808 1.292343 0.253762 1.380643 -1.395695 -1.713694 -1.296596 -0.314009 -2.813475 -0.744901 -0.252616 3.355820 -2.000445 0.196322 0.855008 0.132433 1.834495 -0.985973 -0.152533 -1.628690 0.162942 -0.710436 2.865410 0.159189 0.347635 -0.188710 0.766758 0.696694 1.538918 -0.076237 -1.438107 -1.337439 -3.594745 -1.014711 -0.862094 0.619860 0.571748 -2.595368 -0.422558 0.173300 2.129079 -2.949197 -0.110676 1.464822 1.011851 1.116093 -0.132653 -1.444035 0.021574 0.235015 0.301148 1.022577 -1.050230 -0.152937 -0.800071 0.403752 0.063683 0.704604 -0.141329 -2.012911 -1.183160 -0.206808 -0.069086 -0.045038 0.182609 0.791148 -1.438439 1.278632 -1.086173 1.561885 -2.739745 -0.245989 -1.044151 -1.722495 -0.481251 2.320531 1.374382 1.652121 -0.380092 -0.867693 -0.840146 -2.438203 -2.880463 0.585986 -0.138995 0.883430 0.473111 -0.149147 0.618038 -0.887182 -0.133547 0.666672 -1.017046 -0.248642 -0.450470 1.805459 -0.351751 -0.390472 -1.673639 -0.387805 0.469641 -0.046604 1.226769 -0.642551 -2.676197 -2.691917 -1.693112 1.683421 -0.663984 0.282017 -0.960673 -0.109422 -1.645464 0.410046 -1.761454 0.416125 -0.185334 -1.527657 -2.123589 0.081249 -0.436883 -0.341761 0.069598 -1.485405 -0.178949 1.311180 0.903902 0.639971 0.353791 0.085604 -2.450809 -1.934912 0.070524 -0.734655 1.988762 1.113704 -0.063994 -1.576284 -0.675951 -2.048623 1.606561 -1.445536 0.305112 -0.431256 -0.608341 2.159378 -1.167132 -0.182348 -1.909469 0.682010 0.590443 -3.212437 2.588317 1.688872 -1.120910 -0.470651 -0.439895 0.361656 1.272930 2.029265 -1.265597 -1.074838 0.459110 -0.617895 -0.126935 -0.752687 1.405365 -1.192945 0.882074 -1.614102 -1.037879 0.956279 1.421284 -0.056545 0.657399 0.556127 0.083821 0.532762 1.886414 1.241994 -0.248474 -1.828882 -4.040368 1.137611 0.293857 -0.256639 0.204848 -1.022777 -1.485663 0.437631 -0.146700 2.122418 0.890052 -0.231047 1.697747 -2.213912 -2.065916 -0.739277 -0.044835 0.241000 -0.693840 0.470432 -0.990251 0.427468 0.400040 0.058892 0.015604 -1.212626 -0.850313 0.051932 1.786311 0.758352 0.053114 2.125560 0.629894 -1.140652 -0.182710 0.198631 0.111143 -0.128524 -1.588808 -0.851177 -0.645619 0.430940 -0.866475 1.232930 -0.309428 0.157447 0.654807 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.241350 -0.072454 0.157805 0.349221 0.082050 -0.003559 0.181059 0.308402 0.028352 -0.960168 -0.645256 -0.202993 -0.008755 0.048872 0.334783 0.080866 0.125283 0.340074 -0.836716 0.035071 0.414623 0.250434 0.289974 -0.077647 0.115518 -0.196226 -0.557490 0.079966 0.168715 0.611107 -0.320473 0.125710 0.493197 0.037010 -0.089848 0.400234 0.220511 -0.019951 0.153819 -0.003154 0.727156 0.076108 -0.052896 0.298163 0.052307 0.547144 -0.296576 0.680200 0.025489 -0.368120 0.477599 -0.956481 -0.283515 0.106046 -0.330905 0.369929 0.715976 0.587973 -0.195819 0.347384 -0.183931 0.153092 0.109622 -0.583585 0.357380 0.582925 0.131436 0.291989 0.639141 -0.412632 -0.018216 0.126365 0.117205 0.006083 -0.048884 -0.382713 0.162066 -1.220456 -0.063321 -0.750734 -0.101393 -0.172251 0.889461 -0.567690 0.153275 0.622716 -0.076115 0.431507 -0.153304 0.121081 -0.463920 0.125911 0.094486 0.466847 0.047732 -0.083161 -0.173781 0.116322 0.160289 0.260865 0.070129 -0.127630 -0.963893 -1.037161 -0.481320 -0.110692 0.160415 0.144839 -0.742295 -0.026923 0.640500 0.230466 -0.834449 -0.037531 0.334752 0.517602 -0.244787 0.333573 -0.595558 -0.153745 0.020465 0.126134 0.176542 -0.423987 0.067811 -0.648401 -0.131186 0.044900 0.193717 -0.201019 -0.227653 -0.362765 -0.154833 -0.049338 0.005462 0.079457 0.215895 -0.177228 0.373061 -0.349488 0.360467 -0.701817 -0.074837 -0.155806 -0.428084 -0.163872 1.215833 0.338392 0.267557 0.210060 -0.508591 -0.357738 -0.441505 -0.564658 0.072858 -0.003560 0.624680 0.182870 -0.092679 0.094917 -0.165166 -0.036748 -0.201293 -0.258711 -0.025739 -0.054404 0.425380 -0.260943 -0.158026 -0.764345 0.113324 0.557780 -0.488316 0.076446 -0.167656 0.142570 -0.489831 -0.500312 0.476679 -0.203711 0.237147 -0.211856 0.224518 -0.550333 0.192353 -0.350672 -0.066905 0.159873 -0.696962 -0.661739 0.170345 -0.133079 -0.222214 0.292254 -0.403627 0.021160 0.184523 0.500769 0.202615 0.064239 0.015175 -0.732646 -0.720512 -0.422350 -0.304116 0.409465 0.324148 0.003436 -0.395770 -0.245992 -0.374290 0.606964 -0.410894 0.053725 -0.266370 -0.048502 0.414255 -0.283584 -0.144950 -0.730939 0.158993 0.217557 -0.894647 0.570826 0.248901 -0.304498 -0.186750 -0.573805 0.176389 0.305927 0.639915 -0.228468 -0.139572 0.184673 -0.174031 -0.022016 -0.461987 0.383758 -0.235741 0.158620 -0.409344 -0.208770 0.257022 0.457900 -0.098283 0.399241 0.542441 0.457533 0.195374 0.460614 0.219462 -0.400604 -0.227805 -0.921785 0.318850 0.823792 0.103889 0.152288 -0.597772 -0.236797 0.177870 0.245317 0.494998 0.701118 0.413539 0.498727 -0.295300 -0.440803 0.057959 0.103709 0.172268 -0.356606 0.078215 -0.171940 0.083927 0.251371 0.021771 0.285902 -0.453745 -0.785723 -0.065776 0.633716 0.118261 0.064246 0.583833 0.125767 -0.408774 0.122346 -0.092053 0.191403 -0.029248 0.053966 -0.049732 -0.018192 0.007731 -0.335045 0.424458 -0.161364 -0.247552 0.188836 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 1.789583 -0.888070 -0.339753 2.607967 0.670250 -0.315853 0.182184 0.861367 0.268716 -4.545411 -2.647459 2.992309 0.063555 0.640377 0.559374 0.761381 0.618297 0.201005 -3.966601 1.033156 0.990910 0.384215 0.162420 -0.185317 0.551299 -1.332017 1.757646 0.665520 0.906415 2.425088 -1.503647 0.869835 2.146486 -0.078120 1.272469 1.979156 0.423532 -0.187700 -1.494191 -1.104800 3.744749 1.506907 0.108532 2.076546 0.543503 2.647882 0.481333 3.251321 2.296324 -1.812216 1.143306 -0.567993 -1.820347 -0.345964 -2.279460 1.599495 1.190082 0.646998 -1.535958 0.817708 -0.232067 -0.047053 0.483815 -0.655128 2.326905 0.733139 1.839499 1.558739 2.720620 -2.073463 -0.783888 2.057594 1.734385 1.571139 2.039525 -1.924377 -2.157425 -1.062641 -0.195917 -2.448853 -1.350928 -0.905361 3.903768 -2.498683 -0.028890 0.799427 -0.663987 2.185297 -0.915487 0.344778 -2.464095 0.127297 0.193201 2.515004 0.399363 0.038583 0.019561 0.601090 0.582428 2.123989 0.556837 -2.001102 -1.334242 -3.796951 -0.752933 -1.296880 1.240315 1.043816 -2.745784 -0.075383 -0.538287 3.283214 -3.133143 -0.296534 1.778172 1.052787 2.150238 0.359168 -0.808106 -0.234148 1.078934 0.353840 1.545547 -1.597139 -0.012181 -0.316214 0.810491 -0.084028 1.077962 0.032335 -2.070786 -1.948604 0.055777 0.844985 -0.011336 -0.050171 1.205355 -1.807619 1.780884 -0.628548 1.798775 -2.687861 -0.734046 -1.035359 -1.384809 -0.930291 4.607061 1.725394 3.106689 -0.125318 -0.973755 -1.163235 -2.550797 -3.519705 0.699977 0.081919 0.748768 1.303833 -0.119314 1.556942 -1.186953 -0.026575 0.234579 -1.199028 -0.541123 -0.003535 -0.062740 -0.613228 -0.115670 -2.194862 -0.215744 0.179399 -0.231574 1.815971 -0.640203 -4.979672 -2.957918 -2.159117 2.086979 -1.115662 0.584855 -0.767687 -0.422513 -1.260765 -0.071013 -2.242871 0.396080 -0.132692 -2.610858 -2.705430 0.393827 -0.785514 -0.202597 0.790551 -1.954937 -0.116044 1.036882 1.616255 0.863269 0.605599 -0.163422 -3.304078 -2.185930 -0.043397 -1.464538 3.096088 0.757015 -0.622929 -2.102140 -1.317612 -2.290059 1.979138 -2.893363 0.576310 -0.660240 -0.747744 2.102095 -1.379797 0.118421 -2.316179 1.210183 1.438570 -4.541601 2.710598 2.420864 -1.197069 -0.556728 -0.126217 0.252218 1.702260 2.517799 -1.668527 -1.550545 0.563249 -0.461554 0.004641 -0.764589 1.722855 -1.144580 0.491701 -2.134461 -1.569272 0.918584 1.383088 0.158354 0.377589 1.470923 0.515681 0.805622 2.560694 1.621971 0.055112 -2.525002 -5.802563 1.776230 2.063577 -0.603930 1.022156 -2.141016 -1.573936 0.747776 -1.214338 2.361949 0.056562 0.270951 2.263933 -2.694784 -2.321608 -0.809713 -0.896885 0.113943 -0.229982 1.268507 -1.202288 0.509144 0.033691 -0.457988 -0.871913 -0.654282 -0.245033 0.393451 1.863864 1.324287 1.164000 2.454814 0.994153 -1.726178 -0.078385 0.305849 -0.254232 -0.438227 -2.785642 -0.863800 -0.357565 0.352538 -0.974409 0.642382 -0.182546 -0.081068 0.013464 -PE-benchmarks/partition-problem.cpp__main = 0.538145 0.216696 0.494029 0.562768 0.035535 -0.178312 0.329806 0.894679 -0.097929 -1.958313 -1.518109 0.380605 -0.102043 0.126057 0.561248 0.000795 0.189998 0.540632 -2.520295 0.234996 0.952948 0.645839 0.686645 -0.371947 0.359700 -0.349156 -0.749486 0.317481 0.361960 1.222440 -0.708718 0.181138 0.970190 0.250151 0.218367 0.904444 -0.060363 -0.147494 0.257000 -0.359078 1.519601 0.548727 -0.128985 0.803831 0.306019 1.140143 -0.356670 0.460628 0.330839 -0.832970 0.422052 -1.199818 -0.871676 0.035990 -0.558100 0.596929 1.084720 0.924100 -0.470373 0.687650 0.014613 0.055373 0.169962 -1.162155 0.758290 0.789553 0.272852 0.511832 1.143827 -0.799295 -0.123622 0.287980 0.336143 0.116336 -0.227256 -0.728690 0.017509 -1.913720 -0.066561 -2.283229 -0.623922 -0.294892 1.585110 -1.073480 0.578454 0.861305 -0.381918 0.807152 -0.183865 -0.089003 -0.888104 0.076462 0.110360 0.821167 0.007358 -0.224081 0.124643 0.308353 0.518318 0.768627 0.049655 -0.391893 -1.452777 -1.960209 -0.246937 -0.230015 0.473568 0.412982 -1.116650 -0.143653 0.792249 1.018315 -1.554711 -0.290884 0.807348 0.812543 -1.125382 0.016451 -0.908908 -0.209490 -0.093835 0.236253 0.529930 -0.955193 0.021814 -0.520538 -0.368080 0.030692 0.537527 -0.121024 -0.649383 -1.088926 -0.077983 -0.036836 -0.152348 0.120071 0.338104 -0.008264 0.711005 -0.757271 0.866396 -1.174485 0.215234 -0.325827 -0.321024 -0.329613 1.410409 0.786423 0.128461 0.253016 -0.426560 -0.434885 -0.741360 -0.942131 0.608505 0.169289 1.222135 0.242128 -0.165481 0.325630 -0.415159 -0.178515 -0.478083 -0.475522 -0.026311 -0.272186 0.790488 -0.299031 -0.278340 -1.075071 0.290389 0.806893 -0.908648 0.116282 -0.467044 0.139538 -1.049300 -1.067427 0.997296 -0.380037 0.175954 -0.400070 0.429222 -0.604915 0.305883 -0.853138 0.066464 0.160870 -1.212203 -1.256682 0.144211 -0.316727 -0.285150 0.468069 -0.690929 -0.153082 0.545886 0.837595 0.330947 0.100921 0.186197 -1.119599 -1.053076 -0.575580 -0.532303 0.576991 0.619612 -0.060152 -1.353576 -0.395203 -0.602537 1.253269 -0.440994 0.213713 -0.782770 -0.233847 1.070935 -0.378288 -0.025330 -1.137905 0.384512 0.683713 -2.131478 0.980549 0.504322 -0.494061 -0.380416 -0.836940 0.134813 0.819156 1.145025 -0.515103 -0.544372 0.297274 -0.645868 0.020788 -0.829682 0.852325 -0.397894 0.462816 -0.826641 -0.470961 0.611344 0.621546 0.025711 1.085054 0.989849 0.904230 0.513076 0.976741 0.504604 -0.594057 -0.713051 -1.740015 0.823910 1.803948 0.434804 0.197085 -0.835194 -0.882118 0.238723 0.325646 0.965018 1.051140 0.288770 0.928220 -0.574889 -0.920918 -0.178006 0.173866 0.301980 -0.402657 0.060403 -0.154644 0.292464 0.584868 -0.085094 0.700783 -0.738711 -1.441736 -0.082757 1.187524 0.558127 0.198406 1.172976 0.194792 -0.972482 0.212872 -0.175504 0.323458 -0.280058 -0.236115 -0.326700 -0.176980 0.105533 -0.579811 0.662992 -0.088598 -0.318191 0.190333 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.492213 0.138093 0.404957 0.213082 0.136241 -0.527448 0.403412 0.710984 -0.235980 -1.187888 -0.835082 -0.249083 -0.065207 -0.231873 0.291445 -0.037065 -0.032526 0.583223 -1.459999 0.317578 0.644017 0.627033 0.281760 -0.445735 0.205193 -0.077583 -1.153399 0.279728 0.142592 0.816651 -0.502094 -0.220764 0.614113 0.102137 -0.125168 0.751601 0.510723 0.031741 0.679812 0.166509 1.002708 0.222105 -0.006116 0.416213 0.420683 0.706929 -0.370694 0.917642 -0.430327 -0.508813 0.523758 -1.486986 -0.609366 0.042199 -0.275302 0.511348 1.210853 1.087247 -0.346396 0.677564 -0.100854 0.041793 0.201255 -0.760591 0.390349 0.961373 -0.197852 0.135092 1.220577 -0.393398 -0.149742 0.205115 0.392244 -0.176816 -0.240183 -0.681616 0.178903 -1.816255 0.032344 -1.590757 -0.264055 -0.081764 1.366161 -0.810480 0.553282 1.033989 0.002298 0.421215 -0.252942 -0.213479 -0.478484 0.206130 -0.144294 1.104345 -0.153582 0.023807 -0.118646 0.180155 0.532496 0.532311 -0.220289 -0.083911 -1.506113 -1.584798 -0.434085 -0.042035 -0.183448 0.024249 -1.010870 -0.458338 0.920710 0.421506 -1.234908 -0.119555 0.689779 0.630395 -0.659166 0.551455 -0.962503 -0.042452 -0.264133 -0.028180 0.185516 -0.596760 -0.216771 -0.736405 -0.281142 0.046350 0.080096 -0.357476 -0.745678 -0.412947 -0.222774 -0.363723 -0.074077 -0.091744 -0.063134 -0.329058 0.395740 -0.759811 0.414977 -1.045962 -0.001739 -0.083232 -0.865055 -0.066492 1.219952 0.323431 0.012030 0.151358 -0.535073 -0.575619 -0.495896 -0.840355 0.356686 -0.203832 1.084004 -0.079439 -0.075940 -0.248872 -0.115590 -0.477055 -0.271418 -0.264941 0.126666 -0.357218 1.267143 -0.405634 -0.171717 -0.987433 0.154453 0.971940 -0.453349 -0.221073 -0.480918 0.278997 -0.563613 -0.771430 0.621380 -0.057018 0.126989 -0.314575 0.346375 -0.820386 0.396062 -0.427289 0.077030 0.058139 -0.775768 -0.823029 0.129330 -0.190301 -0.305865 0.133717 -0.376694 -0.139624 0.315191 0.636215 0.207621 -0.050756 0.139925 -1.031446 -1.056990 -0.567443 -0.019913 0.403950 0.524928 0.334148 -0.598003 -0.078983 -0.607961 0.870536 -0.428426 -0.105896 -0.371040 0.040456 1.099015 -0.215373 -0.070940 -0.979064 0.256311 0.269306 -1.205177 1.031128 0.320493 -0.450557 -0.398188 -0.752073 -0.025094 0.741383 0.970645 -0.335474 -0.348395 0.425412 -0.497660 -0.116982 -0.703375 0.576545 -0.384729 0.783028 -0.528250 -0.301325 0.179993 0.791981 -0.176912 0.684017 0.368737 0.596949 0.144188 0.713249 0.075543 -0.563431 -0.280212 -1.235538 0.504897 0.993398 0.326054 0.058442 -0.592395 -0.502664 0.271790 0.519494 0.772325 1.218529 0.363883 0.557939 -0.475155 -0.703881 0.201752 0.437689 0.369923 -0.592773 -0.027584 -0.218673 0.183012 0.479575 0.078119 0.737948 -0.722502 -1.406590 -0.281269 0.821138 0.200315 -0.248194 0.895561 -0.139432 -0.406132 0.256056 -0.176938 0.802283 -0.083118 0.363019 -0.131113 -0.384329 0.079409 -0.348857 1.062506 -0.176158 -0.303088 0.588154 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 2.243126 0.584412 -2.688955 5.453492 -1.047185 -0.838350 0.003378 0.849380 -1.431249 -8.767471 -4.626246 5.314232 1.009286 1.748486 1.240109 2.419238 -0.750860 0.229449 -7.421878 1.758837 3.406418 0.747474 0.476419 0.100523 1.045337 -2.162824 2.013215 0.176970 1.531826 5.100664 -2.329031 3.220901 4.551525 -0.846373 1.394639 3.080630 -1.324328 1.016379 -2.182593 -1.085665 5.454391 2.282145 0.349704 2.077835 -0.800578 4.846470 -0.497658 4.726306 0.514170 -4.339520 2.796327 1.481792 -2.537664 -0.136554 -2.105464 2.009660 1.820925 2.011013 -1.744172 1.090212 -1.726529 -0.015294 1.099389 0.099163 4.994931 2.585952 3.751978 3.916552 3.954715 -3.076704 -0.115719 2.359295 -0.408861 -0.298908 3.877823 -2.339137 -4.256117 0.833756 -0.621306 -5.210017 -4.098182 0.245195 8.105267 -5.208100 -0.669332 -0.094161 0.933624 5.238092 -1.870991 1.852017 -3.617464 -0.713150 -1.164717 5.424931 1.072746 0.303963 -1.005538 1.251067 1.370849 2.803998 -0.297246 -3.233555 -2.321919 -4.271739 -1.679186 -2.181331 3.113581 4.387037 -6.521977 -0.938953 -0.898455 5.832762 -7.296470 0.278790 3.136552 3.223625 5.425261 2.978994 -3.345574 0.728131 1.686752 0.063072 3.681490 -1.764510 0.879424 -0.926370 0.810676 -0.408362 1.380778 0.709804 -7.231093 -3.556778 0.314627 -1.639596 0.850009 2.088155 3.824331 -1.520671 3.331208 -1.751812 3.270855 -6.023480 -1.133651 -1.480899 -4.311054 -1.809535 4.669953 5.368711 3.854183 -2.345140 -2.633764 -1.709310 -6.364177 -5.663942 0.060165 0.811427 1.234799 2.660389 -0.683903 3.384171 -2.865256 2.320238 1.697156 -1.697121 -1.167399 -0.159225 3.032046 0.215395 -0.815228 -3.059361 -1.990273 -3.249043 -0.871905 5.208592 -0.125731 -7.026497 -8.488264 -3.381741 4.336922 -1.886448 0.548895 -3.147369 -0.888615 -3.387594 -0.866750 -4.502755 0.568796 0.736212 -2.763888 -5.117603 1.096273 -0.405913 -2.433605 0.393825 -3.459936 -1.361120 4.082750 0.213297 2.378073 0.608588 -0.256264 -3.826546 -2.699752 1.993007 -4.355891 3.049739 3.364838 -1.251633 -3.812331 -2.225461 -5.024821 3.172861 -2.921411 1.752631 -1.672890 -0.143016 4.266011 -3.262138 -0.208059 -3.487400 1.279734 1.943189 -8.586496 4.374079 3.045409 -0.951793 0.676374 1.270731 0.909415 3.131243 2.259165 -2.758784 -3.224594 -0.043975 -1.223863 0.492119 0.192045 2.795035 -4.138596 -0.040014 -2.178049 -0.947896 2.678622 1.906090 0.459506 1.144715 2.121379 -1.432451 3.213683 2.491234 3.980311 -1.596062 -3.337908 -9.226924 3.397886 -1.243067 -1.984994 -0.599620 -2.439615 -2.496232 1.950150 -2.215780 4.117151 -1.645497 -1.793148 3.759982 -6.195445 -4.569778 -3.083076 -0.515714 -0.506095 0.264390 0.011434 -0.566445 2.013070 2.627128 -0.969972 -0.494484 -3.249489 -0.088898 0.665572 4.715701 0.748994 1.947571 4.666526 2.083064 -2.291571 -1.142796 0.942236 -1.199266 -1.872292 -6.164942 -1.752411 0.346760 1.216795 -2.447678 0.244801 -0.896576 -1.651641 1.003277 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.475744 0.095624 0.412050 0.218968 0.204058 -0.518460 0.362522 0.743776 -0.103298 -1.071044 -0.803821 -0.297662 -0.109962 -0.393194 0.393696 -0.066567 0.038432 0.565092 -1.246096 0.368591 0.560424 0.573433 0.201063 -0.494069 0.198260 -0.097588 -1.135654 0.251740 0.102930 0.712777 -0.459930 -0.235978 0.510273 0.149339 -0.043639 0.672226 0.377538 -0.013563 0.719554 0.157454 0.997923 0.302196 -0.073304 0.467251 0.538511 0.631532 -0.476833 0.742354 -0.433744 -0.387858 0.480983 -1.301949 -0.514359 0.073504 -0.335490 0.538420 1.209861 0.874909 -0.350540 0.630463 -0.227495 0.062168 0.177289 -0.779884 0.396471 0.925401 -0.179782 0.189302 1.192554 -0.315481 -0.155647 0.210013 0.519969 -0.111866 -0.225478 -0.498469 0.160225 -1.849892 -0.063242 -1.374669 -0.099097 -0.180245 1.333767 -0.722353 0.556932 1.031547 0.053125 0.371538 -0.263862 -0.260112 -0.427568 0.246072 -0.172880 0.971987 -0.151242 0.077120 -0.158622 0.187797 0.431406 0.502376 -0.167216 -0.055210 -1.435244 -1.623263 -0.470093 -0.014917 -0.141484 -0.131288 -0.929706 -0.303177 1.065156 0.359672 -1.087798 -0.120797 0.599098 0.517545 -0.705449 0.334252 -0.927647 -0.092819 -0.263013 0.027649 0.041904 -0.558129 -0.260701 -0.796027 -0.274384 0.050740 0.151114 -0.373600 -0.498724 -0.339466 -0.257041 -0.225635 -0.114627 -0.097672 -0.101661 -0.440650 0.351104 -0.662221 0.429916 -0.969575 0.015136 -0.216422 -0.682358 -0.019363 1.255209 0.273018 0.090054 0.261939 -0.448395 -0.579812 -0.456306 -0.720198 0.362972 -0.257405 1.023414 -0.160724 -0.021634 -0.296448 -0.053403 -0.448583 -0.304065 -0.327127 0.188929 -0.333062 1.234930 -0.450488 -0.179604 -1.014983 0.140326 1.095085 -0.451192 -0.341146 -0.433807 0.404725 -0.433995 -0.717068 0.537865 -0.059944 0.170221 -0.258961 0.402812 -0.671500 0.425944 -0.378319 0.150675 0.013787 -0.733256 -0.734652 0.060103 -0.172725 -0.207568 0.074497 -0.320604 -0.057512 0.239725 0.637375 0.132567 0.051544 0.122484 -1.035638 -1.054499 -0.621486 0.071698 0.442241 0.526801 0.294942 -0.553143 -0.062566 -0.577178 0.853644 -0.456529 -0.140584 -0.324566 -0.099068 0.997422 -0.180887 -0.229066 -1.057395 0.221646 0.164602 -1.007552 0.891643 0.280687 -0.492954 -0.420840 -0.875453 0.037476 0.646125 1.028951 -0.261621 -0.198088 0.394203 -0.452254 -0.138350 -0.701522 0.572039 -0.321382 0.799078 -0.545692 -0.313338 0.228464 0.764749 -0.186929 0.656172 0.307739 0.638670 0.124906 0.680426 0.157263 -0.511827 -0.382269 -1.050213 0.385161 0.958646 0.353270 0.069127 -0.537244 -0.569748 0.129595 0.617946 0.732771 1.228681 0.452289 0.508783 -0.368589 -0.645338 0.270442 0.460020 0.345985 -0.688058 0.061738 -0.236232 0.079834 0.396943 0.148373 0.711289 -0.655948 -1.412686 -0.292349 0.745760 0.290059 -0.323862 0.785238 -0.025386 -0.493255 0.263944 -0.171221 0.680138 -0.049276 0.370650 -0.132027 -0.430844 0.010618 -0.315733 1.081977 -0.082848 -0.176322 0.497964 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.691325 0.425271 1.011043 0.300188 -0.178368 -0.845985 0.940081 1.992239 -0.454500 -2.301145 -2.031130 -1.646599 -0.097844 -0.462718 1.078596 -0.343802 -0.509059 1.006500 -3.927223 0.449628 1.838947 1.338110 1.225642 -1.064428 0.468111 -0.192178 -3.158214 0.689635 0.117651 1.703975 -0.677612 -0.417060 1.205162 0.424044 -0.669115 1.346873 0.206237 0.155362 1.804523 0.623884 1.475396 1.019810 -0.961177 0.304786 0.496886 1.329781 -1.096886 0.696712 -2.009515 -1.063175 0.871451 -3.255400 -1.308843 0.051612 0.126562 0.695124 3.196694 2.645692 -0.096709 1.398486 -1.118026 -0.037963 0.334447 -1.921592 0.681746 2.051425 -0.061737 0.240304 2.048444 -0.852186 -0.131810 0.106077 0.057195 -1.017176 -1.294960 -1.031854 0.426423 -5.074085 0.196256 -4.098372 -1.149124 0.010741 2.312114 -1.440400 1.188736 2.104054 0.163062 0.835078 -0.753105 -0.192399 -0.589536 0.312162 -0.376076 2.313465 -0.260626 -0.177476 0.006047 0.585189 1.440543 0.930012 -0.300365 0.348885 -3.505488 -3.154556 -0.443507 0.204598 0.085646 0.393933 -1.812172 -0.733185 2.872487 0.082282 -2.316517 -0.143776 1.514229 1.813880 -1.879953 0.702885 -2.264223 0.082747 -0.642414 -0.083013 0.864140 -1.620388 -0.145853 -1.519317 -0.515673 0.225000 0.012196 -0.616551 -1.323824 -0.916423 -0.314465 -1.181456 0.097628 0.183712 0.001554 -0.063141 0.731750 -1.870411 1.143002 -2.258484 0.835813 0.033118 -1.220799 -0.001312 1.871944 1.312127 -1.232643 0.363082 -1.068026 -0.807732 -0.679350 -1.227616 0.495410 0.352415 2.623353 -0.701554 -0.256341 -0.367887 -0.108896 -0.300170 -1.112266 -0.296805 0.566065 -0.366790 3.217925 -0.402752 -0.483692 -1.747570 0.346074 1.900407 -1.484450 -0.423107 -0.648973 1.928937 -1.130456 -1.504736 1.281289 -0.014182 -0.159170 -0.988452 1.011711 -1.720881 1.127004 -0.640720 0.270664 0.707741 -1.719030 -1.578689 0.223924 -0.143306 -0.615749 0.380740 -0.483418 -0.758841 0.864637 1.327020 0.567684 -0.085273 0.588457 -1.579356 -1.936609 -1.352948 -0.303228 0.798118 1.012085 0.344783 -1.157735 0.094365 -0.943884 2.162131 0.497605 -0.256106 -1.779745 -0.008418 2.139951 -0.154725 -0.559644 -2.286505 0.229807 0.486260 -1.499851 1.993909 0.473846 -0.399094 -0.723816 -1.679345 -0.198963 1.479629 1.620467 -0.553489 -0.809530 0.452174 -1.204325 -0.170821 -1.208359 1.126218 -1.029211 1.061789 -0.589281 -0.262976 0.473636 1.353839 -0.254927 2.143056 0.952746 1.536647 0.434723 0.857641 0.232098 -2.024285 -0.372520 -1.758479 1.109247 2.207275 0.623473 -0.602183 -1.044478 -1.387224 0.404976 1.983845 1.311560 3.982636 0.316757 0.968174 -0.398469 -1.144524 0.004736 1.375067 0.581831 -1.280160 -0.601394 0.025257 0.690153 1.647276 -0.180617 2.193599 -1.980802 -3.461077 -0.860256 1.832463 0.278477 -0.778956 1.691090 -0.125535 -0.983467 0.193813 -0.385603 0.985671 -0.149729 1.770745 -0.083878 -0.559807 0.148801 -0.562886 1.764804 0.078434 -1.065870 1.255288 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 6.911989 0.899662 -5.518660 20.005607 -1.496567 -4.038172 0.518653 4.153243 -4.762767 -30.736436 -18.046955 12.831811 3.210085 5.072371 4.294072 5.415691 -1.128547 1.582718 -33.270189 6.654971 12.594082 5.159192 2.789748 -2.119605 3.774453 -7.435482 9.321647 3.661010 4.822668 18.055673 -8.511266 9.386980 15.482866 -3.012169 6.138114 12.508083 -4.124546 3.248975 -6.966105 -1.818584 21.439128 9.508994 0.398294 8.446640 0.428703 17.840800 3.291279 11.156005 3.778830 -14.498024 6.884349 8.465825 -9.101838 -4.426779 -9.356887 7.262489 13.302991 11.037083 -7.725220 5.243992 -4.219405 -2.214053 4.644724 -0.606920 17.289651 7.288054 14.134830 12.434167 16.869588 -11.337635 -1.634392 8.360047 2.696235 0.290910 12.375343 -13.145587 -17.328942 -5.190208 -4.124524 -26.416653 -11.655084 1.246392 25.745841 -16.975956 -0.002554 0.795796 0.024204 16.514732 -7.055619 1.563377 -12.844322 -2.442911 -6.441004 21.336231 2.677107 -0.476762 1.212175 6.528751 6.272614 11.759370 0.234276 -12.711126 -5.369253 -22.598922 -6.206234 -7.714468 10.324804 12.499648 -20.467046 -3.684454 -5.597101 15.496993 -25.717513 -0.286537 11.982950 11.961143 12.490911 -1.781526 -11.636111 1.372116 3.906853 1.504098 14.510317 -9.038336 2.406994 -1.883643 2.369300 0.022665 4.702525 1.910993 -17.754213 -13.907259 -2.260130 -2.696302 1.415550 4.030142 10.957494 -6.420959 12.032609 -8.401427 14.257780 -22.466862 -1.396514 -5.716473 -12.291506 -6.049529 11.474887 13.960919 10.313574 -9.161881 -9.372166 -3.696320 -21.174054 -18.985569 3.162508 4.228063 4.841999 8.424233 -2.979772 11.028405 -9.142808 4.052959 6.770000 -5.188708 -3.431555 -0.723544 10.931569 1.068723 -2.321793 -11.291931 -4.336033 -6.667760 -0.532873 16.643989 -3.210359 -23.420050 -27.605925 -11.906382 15.349849 -6.330168 0.329375 -9.910441 -3.516213 -12.094918 1.222925 -17.374202 0.051711 0.467989 -11.555673 -17.946857 2.836957 -3.064348 -4.926081 2.295294 -12.730150 -4.573013 14.163901 6.723905 7.779389 0.341124 1.354234 -17.152542 -11.230827 4.757131 -12.094027 13.620291 7.398667 -3.565113 -15.263102 -6.243365 -15.031692 11.011951 -3.862702 4.719459 -6.466774 -2.505043 15.899271 -10.496386 2.855243 -13.400711 3.559118 7.936596 -30.677713 20.066038 12.623762 -4.259191 0.399556 4.229087 2.108151 9.515578 8.429975 -10.891832 -12.987105 1.044299 -5.394286 1.256659 -4.614117 9.769975 -12.344055 0.369275 -10.007664 -6.108360 9.057896 7.626291 1.574021 5.049492 7.310998 -3.890421 6.300541 12.541666 12.947887 -2.860628 -12.459279 -31.405589 11.981873 -0.775201 -3.741019 -2.079503 -6.422831 -10.989052 6.324853 -2.334222 15.388563 4.454689 -7.103950 14.123295 -20.042884 -16.288496 -11.326156 -1.917424 0.847221 -0.671001 -0.960059 -6.676433 7.177681 6.243590 -3.434134 -1.595875 -9.910754 -0.549708 2.007150 15.568974 3.949568 5.375962 17.614056 5.994267 -9.415519 -3.279978 3.827522 -4.440839 -4.324342 -15.322890 -6.287774 -0.554570 5.030755 -7.243982 2.293852 -4.732097 -2.313775 4.304693 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.505116 0.128459 0.413839 0.235996 0.156011 -0.457498 0.375876 0.811481 -0.117219 -1.195212 -0.944806 -0.435109 -0.088750 -0.347466 0.481483 -0.027297 0.047902 0.581870 -1.471084 0.327651 0.667660 0.583301 0.285261 -0.458691 0.219103 -0.133640 -1.320621 0.223803 0.108292 0.799420 -0.483880 -0.151628 0.582050 0.149708 -0.080523 0.683368 0.265077 -0.034540 0.801836 0.166949 1.044680 0.323909 -0.117979 0.434572 0.473476 0.694459 -0.595457 0.795545 -0.528357 -0.442322 0.580202 -1.494129 -0.552133 0.162681 -0.329550 0.540893 1.337196 0.969022 -0.316240 0.666327 -0.313919 0.111237 0.188626 -0.903203 0.467142 1.021495 -0.112027 0.231144 1.201167 -0.350704 -0.084911 0.154251 0.411248 -0.188654 -0.332057 -0.548032 0.269286 -2.057591 -0.032608 -1.564531 -0.115777 -0.198484 1.452185 -0.778966 0.561342 1.079146 0.065296 0.461661 -0.298467 -0.186596 -0.465242 0.254247 -0.169135 0.987350 -0.163615 0.053125 -0.182720 0.213878 0.431275 0.468797 -0.181584 -0.029846 -1.618480 -1.715117 -0.530199 0.001308 -0.073425 -0.054721 -1.037259 -0.256200 1.184354 0.308421 -1.196974 -0.110505 0.601146 0.625518 -0.806394 0.496775 -1.076537 -0.159566 -0.288554 0.101435 0.086953 -0.606777 -0.177789 -0.974353 -0.315158 0.089732 0.187416 -0.381683 -0.548677 -0.376667 -0.253014 -0.319900 -0.101673 0.000000 -0.010413 -0.355859 0.408725 -0.724614 0.477006 -1.090302 0.032138 -0.253040 -0.731122 -0.041982 1.348430 0.441675 0.003749 0.328524 -0.501920 -0.581500 -0.538236 -0.699607 0.298920 -0.218479 1.144180 -0.160056 -0.046246 -0.262712 -0.080591 -0.375958 -0.384282 -0.353351 0.173400 -0.359073 1.385928 -0.430116 -0.228974 -1.074545 0.153219 1.137233 -0.633727 -0.304677 -0.410614 0.577924 -0.544690 -0.761566 0.608233 -0.091385 0.208513 -0.330594 0.494568 -0.757601 0.443891 -0.405231 0.086480 0.090593 -0.816426 -0.818407 0.089219 -0.156297 -0.279782 0.113508 -0.361261 -0.066770 0.370009 0.743390 0.182468 0.059570 0.119145 -1.060816 -1.124851 -0.682135 -0.026410 0.470371 0.615743 0.230782 -0.596923 -0.092094 -0.601980 0.961443 -0.386424 -0.110185 -0.431707 -0.092109 0.986902 -0.231325 -0.257477 -1.148709 0.204195 0.154737 -1.165172 0.936555 0.265994 -0.510198 -0.412158 -1.031567 0.119191 0.635946 1.049598 -0.237300 -0.180503 0.358106 -0.478344 -0.129572 -0.751900 0.615298 -0.370968 0.726799 -0.559185 -0.290929 0.328489 0.778394 -0.195897 0.757284 0.415181 0.730504 0.236181 0.676958 0.178644 -0.669658 -0.362872 -1.163147 0.398157 1.124939 0.355602 0.026074 -0.595060 -0.603195 0.114514 0.670276 0.775083 1.403022 0.508869 0.560161 -0.351400 -0.676954 0.216578 0.529712 0.335230 -0.713268 -0.017922 -0.216639 0.105435 0.494405 0.165686 0.818253 -0.811409 -1.605260 -0.300997 0.876813 0.267428 -0.323185 0.845415 0.021107 -0.518991 0.240960 -0.184158 0.657396 -0.043770 0.444434 -0.131281 -0.381502 -0.001238 -0.384911 1.077774 -0.070388 -0.221953 0.514899 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.716145 0.083252 0.363763 0.539588 0.334038 -0.600664 0.487031 0.892996 -0.127031 -1.606732 -1.083077 -0.016455 -0.056591 -0.406922 0.406674 0.005996 0.013341 0.657287 -1.579028 0.419270 0.676093 0.622285 0.161364 -0.644427 0.197664 -0.249710 -1.075656 0.439633 0.145614 1.038114 -0.547013 -0.222073 0.766001 0.173292 -0.055280 0.946569 0.585312 0.024375 0.590943 0.081992 1.412184 0.491673 -0.195921 0.696628 0.602078 0.959728 -0.503640 1.154154 -0.672146 -0.548236 0.587143 -1.309700 -0.756910 -0.060344 -0.563810 0.749566 1.611672 1.057456 -0.461509 0.811419 -0.353152 0.050044 0.273341 -0.786741 0.611896 1.212438 0.006326 0.399622 1.666681 -0.651830 -0.290439 0.482174 0.676729 -0.058539 0.011769 -0.617069 -0.129393 -1.997622 -0.039325 -1.717643 -0.296036 -0.266150 1.924893 -1.007971 0.472521 1.247280 0.202488 0.624893 -0.470999 -0.200459 -0.668713 0.294599 -0.306765 1.643657 -0.058706 0.203821 -0.280892 0.286944 0.615707 0.783206 -0.130073 -0.218625 -1.692407 -2.118145 -0.646941 -0.177730 -0.106435 -0.036626 -1.299504 -0.423571 1.274886 0.707749 -1.523680 -0.151975 0.874821 0.758006 -0.243845 0.451938 -1.208956 0.019501 -0.162484 -0.128600 0.161643 -0.720170 -0.289774 -0.774418 -0.176812 -0.011722 0.167917 -0.387258 -1.088619 -0.461165 -0.254658 -0.346525 0.000464 -0.119179 -0.013404 -0.769935 0.504884 -0.859567 0.645761 -1.447121 -0.020809 -0.248864 -1.109896 -0.097171 1.567724 0.455325 0.405384 0.211150 -0.592506 -0.805607 -0.761509 -1.327420 0.417229 -0.172749 1.145162 -0.137711 -0.075314 -0.222546 -0.262589 -0.448194 -0.107213 -0.450227 0.169587 -0.306142 1.835119 -0.557147 -0.223800 -1.259372 0.089070 1.134967 -0.333102 -0.096970 -0.515197 -0.045556 -0.839221 -0.998340 0.794570 -0.158611 0.123395 -0.409668 0.295701 -1.019702 0.474140 -0.549224 0.345493 0.071013 -1.046589 -1.096718 0.187486 -0.213288 -0.404061 0.196883 -0.594434 -0.101215 0.363775 0.619368 0.216864 0.067404 0.137149 -1.406719 -1.394597 -0.617264 -0.014251 0.811925 0.754756 0.340306 -0.660960 -0.181761 -0.956399 1.129848 -0.743315 -0.090611 -0.420765 -0.108600 1.321947 -0.400979 -0.382364 -1.445956 0.362642 0.258122 -1.144006 1.429275 0.557311 -0.626890 -0.570687 -0.886468 0.001464 0.853587 1.400126 -0.595220 -0.479471 0.543826 -0.502121 -0.190747 -0.714960 0.764958 -0.477882 0.956884 -0.805176 -0.490752 0.274704 1.084094 -0.264660 0.825662 0.437012 0.594341 0.148683 0.983555 0.376064 -0.612756 -0.623252 -1.583861 0.590241 0.598553 0.175861 0.019674 -0.757945 -0.808831 0.321586 0.636341 1.058305 1.280159 0.348807 0.793879 -0.744325 -0.952053 0.237478 0.405966 0.452134 -0.847614 0.192338 -0.372958 0.171848 0.462488 0.063867 0.672881 -0.907305 -1.459357 -0.336047 1.048456 0.309081 -0.351419 1.152817 0.061720 -0.619775 0.242535 -0.192829 0.738519 -0.019867 0.109953 -0.160591 -0.508298 0.091847 -0.417531 1.314752 -0.045143 -0.295484 0.692395 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 1.321958 0.207110 0.513549 0.675794 0.474224 -1.888249 0.806252 1.668821 -0.332534 -1.936856 -0.962947 -0.184059 -0.057131 -1.451949 0.360904 0.113313 -0.295319 1.152797 -2.894019 1.338662 1.023194 1.226513 -0.231427 -1.782852 0.335238 -0.254791 -1.602685 0.870953 -0.150013 1.410572 -0.995671 -0.700983 0.939651 0.352748 0.410742 1.560952 0.822362 -0.002466 1.468999 0.738089 2.144519 1.378195 -0.707078 0.638045 1.515170 1.373914 -0.285273 0.792419 -2.120612 -0.549286 0.045667 -1.129708 -1.229730 -0.262149 -0.850286 1.006651 2.687158 1.821470 -0.902763 1.408235 -0.722871 -0.062830 0.704520 -0.428170 1.305200 1.508712 -0.113531 0.550647 3.103969 -0.477912 -0.221867 0.381043 1.570526 -0.764684 0.575385 -0.625047 -0.774572 -3.619688 0.030242 -3.292746 -0.187922 0.134287 2.352321 -1.529585 1.355392 2.039349 0.986069 1.022176 -1.176130 -1.016869 -0.835029 0.489537 -1.044444 3.708310 -0.373349 0.733424 -0.372796 0.998055 1.161774 1.070753 -0.213625 -0.584996 -1.946808 -3.529839 -0.754552 -0.325876 -0.993567 -0.592893 -1.995638 -0.889721 2.337332 1.409966 -2.521713 0.013680 1.284967 0.633395 -0.268221 -0.774010 -1.450373 0.615977 -1.100541 -0.250005 -0.154388 -1.224122 -0.863002 -0.713176 -0.029780 0.350223 0.182415 -0.541694 -2.018041 -0.041762 -0.102448 -0.829210 -0.224181 -0.013111 -0.452978 -1.811820 0.448787 -2.017727 1.099423 -2.093311 0.438242 -0.440506 -1.785236 0.136242 1.032859 0.243907 -0.365414 0.042389 -0.591210 -0.888352 -1.347287 -2.558645 1.020302 -0.527245 1.378949 -0.823024 -0.052521 -1.124531 -0.275763 -1.045976 0.310317 -0.923528 0.345683 -0.840745 3.641643 -0.606766 -0.418477 -1.297638 -0.105569 2.305808 0.521720 -0.385480 -1.114541 0.064255 -1.374824 -1.448019 1.121561 0.063185 -0.166695 -0.839467 0.358660 -1.717688 1.317342 -0.728191 1.201419 -0.395735 -0.652357 -1.472462 -0.133753 -0.322269 -0.232566 -0.518447 -0.686447 -0.069103 0.119833 0.079102 -0.143213 -0.134746 0.634691 -2.038504 -2.083761 -0.425821 0.835446 1.243041 0.823495 0.986960 -0.873013 0.194465 -1.485068 1.751778 -0.827702 -0.211808 -0.335115 -0.634413 2.647260 -0.410272 -0.920808 -1.955068 0.690883 -0.200122 0.024039 2.956754 1.087257 -1.286908 -0.863180 -1.217463 0.110469 1.442349 2.317403 -1.035060 -0.778150 0.910858 -0.899382 -0.519987 -0.935209 1.132347 -0.898031 2.248847 -1.233233 -0.686546 0.326718 1.846682 -0.489061 1.263072 -0.365540 0.140197 -0.632695 1.549865 0.409956 -0.286558 -1.314841 -1.515105 0.573585 -0.624162 0.721852 -0.478336 -0.438663 -1.416557 0.198444 1.593702 1.851401 2.690252 -0.307970 0.937942 -1.711227 -1.728010 0.213358 0.969827 0.652764 -1.467907 0.325861 -0.716328 0.154790 0.557479 0.707824 1.128804 -1.400583 -1.982416 -0.523656 1.210785 0.641392 -1.820361 1.802223 -0.110212 -0.611194 0.230238 -0.315714 1.250317 0.132631 0.841519 -0.454986 -1.284177 0.458255 -0.612981 2.811053 0.004060 0.167267 1.268817 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 3.849980 0.803079 -1.159058 4.990891 0.822781 -2.694485 -0.249887 3.422793 -1.880741 -7.546403 -5.646301 3.234957 0.159055 0.518272 3.354417 1.849311 -0.179100 -0.028018 -9.074072 3.367265 1.947802 1.137504 -0.274787 -2.262129 1.726381 -0.016350 0.140320 1.167270 1.163534 4.077686 -3.587286 1.540646 3.033888 0.259174 3.514533 1.338476 0.203591 0.405593 -1.513135 -0.765315 7.322110 3.280528 -0.197642 3.680153 2.231144 4.393787 -0.774747 5.184974 -0.648978 -2.451444 3.433234 -2.142088 -2.861579 0.746023 -3.264048 3.374046 5.120874 2.269250 -2.841558 2.198882 -0.575966 -0.143313 0.959378 -2.311573 5.818633 2.830617 3.806680 2.674796 5.583820 -2.354832 -1.057526 2.071154 4.071679 0.306657 0.715154 -5.394409 -2.714685 -5.051079 0.289691 -7.958013 -2.030557 -1.382129 8.068871 -5.102966 1.627113 2.426590 -1.207202 3.620831 -3.473042 0.579542 -3.210545 -0.707778 -1.803072 6.284514 -0.487865 0.049563 1.027251 1.906539 2.670381 4.315079 -0.295263 -1.948525 -3.533907 -6.708766 -2.355433 1.665528 1.733327 1.136279 -4.542968 -1.396784 0.217359 3.600359 -5.866229 -1.612368 3.679036 2.452706 2.022000 1.516259 -4.005687 -0.019784 0.468140 1.524550 3.193255 -2.846613 0.265401 -2.509468 -0.012236 0.478872 3.305714 0.282743 -4.606521 -3.235879 -0.907659 -0.824873 -0.933541 -1.441267 0.460840 -3.163659 3.804860 -1.496499 3.590829 -6.628232 -1.287668 -2.406193 -3.517427 0.068949 5.796432 3.094260 3.513421 1.053929 -2.169016 -1.716720 -5.063697 -5.244667 2.377443 1.060369 2.336829 1.021294 0.016520 2.043308 -1.403821 -1.551490 1.963666 -3.000318 -1.937965 -2.665397 4.083397 -0.848123 -1.066112 -4.637320 0.436556 1.861279 -1.249053 2.237382 -0.955121 -6.210109 -5.311661 -3.720526 3.805988 -0.895441 1.287059 -1.255604 1.744946 -4.915822 0.522045 -5.383593 2.196142 0.420211 -4.491039 -4.124704 0.129571 -0.554193 0.176139 -0.313343 -2.422038 -0.442583 2.837602 4.315381 0.541566 1.651330 1.250350 -6.472927 -6.309825 -0.823657 -1.313304 4.896491 0.694643 -0.050126 -4.117968 -1.011042 -4.418112 4.516315 -3.078688 0.050765 -2.649202 -0.174761 4.998328 -2.448986 -1.244411 -4.881957 1.445937 2.168359 -7.732158 4.842156 3.182607 -2.084150 -1.424533 -2.238349 1.407491 3.278790 6.186377 -2.237740 -2.431323 0.446507 -0.386572 -0.501175 -2.872724 4.337838 -2.763936 1.224641 -3.499149 -2.766700 1.812371 2.942998 1.039179 2.780077 1.674478 1.288315 -0.052176 4.982605 2.621229 -1.704316 -3.147631 -8.966462 1.929089 4.425106 -0.548800 0.113660 -3.010621 -4.264823 -0.522377 0.111685 4.459526 3.358311 0.413496 3.552082 -4.351057 -4.276656 -1.773925 1.794042 -0.513881 -2.111866 -0.117093 -2.067855 1.025998 2.601907 -0.559844 0.986629 -2.160776 -4.222409 -2.221503 3.568140 1.097610 0.887490 4.931283 2.476763 -3.272984 -0.052874 0.680072 0.695239 0.109139 -3.838220 -2.543736 -2.269381 -0.074933 -1.888397 1.552870 0.257950 -0.569899 1.137275 -PE-benchmarks/bellman-ford-algorithm.cpp__main = 8.365941 -0.948910 -1.726640 7.363963 -0.112502 -13.413539 5.176830 8.880617 -3.106520 -10.600856 -3.505593 2.158806 1.565559 -9.813239 0.621283 1.779258 -4.773495 3.585239 -19.457964 9.339988 5.046336 3.998086 -6.367055 -10.323622 0.006131 -3.545318 -4.431565 9.329865 -3.776765 8.692094 -3.450653 -2.875041 5.819442 1.071831 3.614478 10.471802 2.731579 1.726946 6.619793 7.998021 11.529813 11.900135 -8.319629 0.015682 8.185408 9.497705 1.619258 4.066713 -17.381610 -2.982571 -0.024520 2.782671 -7.955940 -4.815014 -5.284736 2.172794 16.501365 9.343351 -5.034208 9.068223 -10.015632 -1.900340 5.754516 6.027658 12.343755 7.001868 4.712671 4.623530 18.554500 -3.496332 -0.750864 3.233060 8.480574 -7.825533 6.585222 -0.950615 -12.354961 -18.237948 2.232833 -20.088912 -5.523633 4.153472 11.168556 -8.617930 4.079034 8.268279 9.404029 8.136388 -11.974635 -5.180329 -4.903284 0.760351 -8.042563 29.743145 -0.818577 6.644192 -1.212756 8.565811 8.667025 6.911102 -1.982513 -6.787200 -7.194896 -20.734820 -3.871584 -3.630578 -7.503258 -2.684061 -12.916199 -7.149080 13.706356 9.099665 -15.490759 1.793156 8.738158 2.657897 9.581852 -6.947350 -7.867932 8.291328 -5.589854 -2.322856 4.102313 -6.039256 -3.543978 -0.540276 6.019525 3.326384 -1.028377 -0.295199 -19.450485 2.672989 4.047049 -7.287435 0.332415 1.738027 -2.566694 -11.536110 1.899105 -14.376036 9.301243 -15.689052 4.905542 -2.910541 -12.369830 1.590208 -0.641222 6.176265 -2.772101 -3.803614 -3.452382 -1.021606 -11.821580 -23.365023 4.734231 -0.576830 3.702890 -8.659224 -1.152011 -6.315888 -2.846738 -2.383781 7.175254 -5.439071 1.503766 -3.475613 24.189578 1.859846 -3.520534 -1.945558 -3.419214 7.740415 9.989440 3.928580 -5.717259 -9.821252 -12.295141 -7.226715 7.292838 1.362872 -5.515222 -6.575891 -3.037018 -14.366045 8.542848 -4.030577 9.763056 -2.911958 -0.726073 -8.904964 -1.070177 -0.506328 -0.845304 -6.161555 -4.781342 -2.892907 1.791760 -5.412401 0.021495 -0.476719 5.147313 -8.482330 -10.302137 3.454145 4.896522 11.509112 5.465443 6.097716 -1.771011 2.947364 -12.277318 10.167872 -3.656824 0.055462 -1.008150 -7.311577 18.066091 -3.377959 -8.688725 -8.546704 5.016836 -2.625759 7.824940 22.643558 11.347665 -7.280573 -4.367422 -0.874335 -0.464899 9.291656 12.525254 -9.028992 -7.041304 4.059252 -3.100771 -3.209832 0.825016 5.765679 -7.127570 11.458108 -6.565307 -3.432218 2.695802 10.983250 -1.908595 5.696696 -7.930285 -5.513764 -6.366613 8.015278 2.522336 -0.554927 -8.541330 -10.018886 4.317008 -17.544888 -0.851031 -5.218378 -1.035139 -9.235944 1.224221 6.910188 11.674993 13.765732 -11.573687 5.518183 -14.146718 -12.199696 -5.778343 4.933092 1.489267 -7.072958 3.529050 -3.842411 3.317829 3.376334 4.016663 3.954886 -8.912617 -5.868384 -2.333354 4.779777 2.048819 -14.661273 11.706003 -1.581235 -1.117064 -4.150099 -0.842139 2.148883 3.741148 1.775611 -3.966754 -8.637599 6.985626 -3.093384 14.731737 1.819568 2.868844 9.925662 -PE-benchmarks/subset-sum.cpp__main = 0.616967 0.008378 0.288791 0.559281 0.370316 -0.379601 0.403251 0.656860 -0.025569 -1.485081 -0.951232 0.200871 -0.049772 -0.232075 0.308419 0.017164 0.116950 0.583039 -1.128425 0.267345 0.496639 0.486684 0.130704 -0.466500 0.145114 -0.242352 -0.711239 0.351341 0.213900 0.926871 -0.473280 -0.156094 0.705689 0.117484 -0.063271 0.828589 0.663326 0.026376 0.273317 -0.090675 1.299991 0.318197 -0.061698 0.761117 0.460420 0.872768 -0.394516 1.211201 -0.288207 -0.499771 0.563204 -1.110813 -0.630656 -0.089977 -0.599824 0.728707 1.282249 0.825775 -0.447301 0.670703 -0.171160 0.072357 0.216505 -0.697603 0.470654 1.051518 0.012487 0.408769 1.429327 -0.690440 -0.318223 0.521481 0.622387 0.156092 0.136939 -0.585041 -0.132065 -1.465963 -0.083255 -1.228605 -0.221632 -0.333984 1.763956 -0.907449 0.306815 1.062908 0.082589 0.538424 -0.331094 -0.099117 -0.670814 0.256314 -0.172134 1.312759 0.025107 0.148970 -0.285752 0.172730 0.458379 0.721223 -0.032664 -0.251983 -1.398566 -1.796691 -0.630627 -0.227574 -0.012899 0.008617 -1.109134 -0.337374 0.944626 0.688907 -1.316403 -0.170573 0.750824 0.664412 -0.040587 0.474251 -0.979659 -0.026860 0.011624 -0.151749 0.129112 -0.610130 -0.233467 -0.607573 -0.170869 -0.081605 0.178270 -0.327833 -0.899994 -0.480782 -0.273110 -0.147723 0.023652 -0.170509 0.039067 -0.728600 0.486982 -0.613579 0.540789 -1.225000 -0.166205 -0.201948 -0.979249 -0.164690 1.609272 0.298745 0.682370 0.187378 -0.560602 -0.791377 -0.657256 -1.197583 0.365201 -0.140135 0.927791 0.061924 -0.071447 -0.076757 -0.300167 -0.384856 -0.049073 -0.395794 0.091257 -0.175961 1.364554 -0.578090 -0.161410 -1.192359 0.112426 0.904936 -0.273013 -0.008327 -0.435041 -0.288836 -0.722683 -0.875662 0.710657 -0.215593 0.184273 -0.274153 0.174965 -0.830923 0.296150 -0.525958 0.266657 0.066121 -1.026546 -1.012951 0.247763 -0.228770 -0.371379 0.322927 -0.608820 -0.020714 0.259839 0.590315 0.199494 0.089845 0.057611 -1.323479 -1.225934 -0.557778 -0.104869 0.759854 0.645201 0.266534 -0.577496 -0.273210 -0.844434 0.918747 -0.872843 -0.039821 -0.289661 -0.038042 1.044119 -0.418713 -0.271474 -1.295850 0.349608 0.335364 -1.163956 1.177307 0.505197 -0.548160 -0.502777 -0.698584 -0.004860 0.703981 1.245787 -0.580936 -0.459207 0.530496 -0.386911 -0.142598 -0.647589 0.654597 -0.345346 0.761129 -0.774142 -0.482206 0.218359 0.941672 -0.235679 0.626443 0.533443 0.519151 0.160250 0.942251 0.396367 -0.448987 -0.576402 -1.522877 0.562183 0.575078 0.085665 0.150470 -0.782318 -0.631785 0.375590 0.395768 0.909062 0.826824 0.428587 0.770089 -0.686613 -0.827449 0.281856 0.180205 0.440728 -0.702253 0.268429 -0.379698 0.131065 0.292120 -0.010987 0.409477 -0.674755 -1.093488 -0.228825 0.932067 0.261798 -0.097817 1.019326 0.089838 -0.596045 0.277791 -0.167467 0.624478 -0.045022 -0.150400 -0.104240 -0.365570 0.058292 -0.383904 1.056310 -0.094323 -0.302752 0.532715 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 5.125737 2.048234 -6.578526 10.110352 -1.154923 -2.194210 -0.262090 1.537389 -3.627741 -15.533356 -9.745218 8.704123 2.813922 2.343591 1.909012 5.974411 -1.562067 0.385300 -11.693571 3.901824 5.462168 0.385979 -1.318894 -0.074156 1.216192 -4.451889 3.208876 -0.010469 1.938363 8.939184 -3.638003 6.184821 7.808911 -2.002299 2.878754 5.742036 -3.030027 1.251653 -3.133638 -1.350974 9.902704 5.004635 0.906475 3.100786 -0.937008 8.575565 -0.910494 9.183610 -3.978548 -7.023143 5.071460 3.546653 -5.226732 0.185391 -4.586012 3.928650 4.256004 2.860726 -2.856923 2.076327 -4.787952 -0.244158 2.363801 0.479480 9.947676 4.370043 7.981557 6.976983 8.090691 -5.196972 -0.346598 5.661562 0.190570 -0.820781 7.547994 -4.183323 -8.350390 4.020139 -1.117982 -10.569469 -5.634707 0.571039 19.083276 -9.176200 -2.655045 -0.217933 2.878949 9.592266 -4.876104 2.766514 -5.972503 -0.822983 -4.816182 10.812152 2.183079 1.670890 -2.859241 2.809028 2.345495 4.955877 -2.290229 -5.850761 -4.810062 -8.713873 -3.814716 -3.828450 4.782387 7.074399 -12.210076 -2.287073 -2.051219 11.761288 -13.164234 1.298706 6.208675 5.273493 12.402725 7.011948 -8.313162 1.559929 2.949318 0.615891 6.636547 -1.972428 1.365679 -1.849256 2.793516 -1.300654 2.112336 1.328855 -15.439244 -5.329625 0.234434 -4.576428 1.838337 3.462641 7.027363 -4.567585 6.044974 -2.787201 5.696033 -13.085661 -2.138041 -3.623393 -11.202777 -2.633425 7.761729 11.769971 8.281514 -4.489572 -3.488802 -3.330731 -13.016239 -10.315791 -0.523154 0.858717 1.522065 3.471872 -0.630907 5.528862 -4.833151 4.163764 5.019807 -3.374189 -1.800840 -0.361821 11.279897 0.472602 -1.694917 -6.120862 -4.949376 -6.135530 0.165238 9.407414 -0.354717 -14.345089 -15.787721 -5.771265 7.448941 -3.178531 1.312468 -5.955014 -2.050210 -6.528160 -1.505160 -7.990366 1.176962 1.300727 -4.824357 -8.857962 1.398875 0.055574 -6.619781 -0.428024 -5.841284 -2.197400 10.560402 0.254180 4.143761 0.956332 -0.859953 -6.976172 -5.400084 4.290781 -7.280989 7.492291 8.454108 -2.460978 -6.858113 -3.189312 -10.787272 5.763726 -4.347939 2.516600 -3.086167 0.316495 7.714920 -7.233483 0.158344 -6.758359 2.150776 1.740373 -18.343742 8.908222 7.228032 -2.092194 1.119186 1.881560 1.977775 5.007864 4.416493 -4.583121 -5.028729 -0.249112 -2.113899 0.362422 0.686982 5.157732 -8.140514 -0.112744 -4.120949 -1.888230 4.996014 4.100515 0.502285 1.288053 1.891901 -2.939404 6.078954 4.541543 7.423270 -3.679820 -6.865189 -18.281642 5.170029 -5.449683 -5.451334 -1.274572 -2.160383 -4.785088 2.682397 -6.147888 7.847016 -3.260386 -4.571061 6.674684 -11.331173 -8.542590 -5.570668 0.186318 -0.805398 -0.340542 0.692104 -2.565414 3.312557 3.902615 -1.348471 -1.573186 -7.223700 0.096965 0.920304 9.351510 1.705818 2.815433 8.511790 3.816743 -2.704767 -2.824289 2.251668 -1.674891 -2.138453 -12.089386 -3.813255 -0.190495 2.181210 -3.966723 1.176557 -0.954181 -1.799796 3.529635 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.208513 0.076855 0.486513 0.096866 0.290609 -0.241886 0.278630 0.397956 -0.109357 -0.606438 -0.387162 -0.224073 -0.153830 -0.223896 0.167522 -0.170281 0.168003 0.382497 -0.586857 0.109690 0.244162 0.332815 0.149035 -0.339181 0.084508 -0.080884 -0.541939 0.314735 0.073730 0.398686 -0.275301 -0.266017 0.270279 0.209696 0.068119 0.463082 0.485164 -0.031692 0.305057 0.001150 0.702731 0.085076 -0.030087 0.352295 0.431929 0.406690 -0.118411 0.201777 -0.202890 -0.170826 0.102979 -0.808899 -0.263137 -0.084818 -0.327980 0.306682 0.651941 0.580421 -0.317461 0.440055 -0.028117 0.031962 0.075311 -0.455201 0.129982 0.406476 -0.218437 0.078115 0.710866 -0.321979 -0.223558 0.205068 0.404548 0.071944 -0.251961 -0.213562 0.161382 -1.256015 -0.044391 -0.784862 -0.022222 -0.093987 0.673363 -0.313740 0.348508 0.726485 -0.141914 0.071481 -0.101806 -0.290050 -0.354355 0.150935 -0.021946 0.505774 -0.025628 -0.025645 0.064077 0.104232 0.316641 0.423751 -0.054806 -0.067460 -0.748578 -1.058374 -0.239026 -0.047642 -0.106192 -0.238654 -0.312647 -0.253282 0.729729 0.302813 -0.524671 -0.136415 0.351161 0.290539 -0.691375 -0.161142 -0.399611 -0.050214 -0.167170 -0.056684 0.034467 -0.370034 -0.185586 -0.275583 -0.179944 -0.041147 0.151779 -0.223846 -0.146677 -0.250160 -0.145293 -0.075266 -0.140779 -0.237992 -0.229865 -0.249027 0.189998 -0.412136 0.315635 -0.410998 0.160891 -0.093483 -0.352623 -0.024071 0.720099 -0.030845 0.037332 0.231170 -0.238709 -0.295096 -0.083042 -0.502239 0.370048 -0.053658 0.610007 -0.078017 -0.049073 -0.184711 -0.092683 -0.427983 -0.124841 -0.172018 0.093091 -0.162459 0.530658 -0.305445 -0.120550 -0.604469 0.287233 0.815065 -0.182424 -0.281399 -0.412920 0.308103 -0.075440 -0.477616 0.293005 -0.059174 0.025491 0.012987 0.158646 -0.327009 0.354188 -0.228782 0.198493 -0.096656 -0.480993 -0.445266 0.082631 -0.210057 -0.088491 0.193098 -0.180793 0.019891 -0.060372 0.230418 0.004840 -0.009716 0.133599 -0.564587 -0.604083 -0.426526 0.185761 0.170759 0.217418 0.260056 -0.364137 -0.075133 -0.209480 0.490191 -0.170273 -0.090346 -0.107810 -0.136987 0.554971 -0.044921 -0.047399 -0.517214 0.197544 0.245183 -0.483300 0.502085 0.229679 -0.361917 -0.423774 -0.509906 -0.075913 0.355032 0.717559 -0.220072 -0.117709 0.353660 -0.261869 -0.083494 -0.455691 0.292141 0.035453 0.530899 -0.486354 -0.337714 0.077822 0.492444 -0.121309 0.424009 0.275884 0.472553 -0.072308 0.598809 0.040396 -0.101414 -0.231226 -0.461809 0.274512 0.601054 0.326212 0.115224 -0.268653 -0.354348 0.088889 0.385659 0.421341 0.772801 0.187375 0.368558 -0.100708 -0.361960 0.227801 0.142636 0.308607 -0.524432 0.120296 -0.211529 0.019290 0.040977 0.057962 0.401246 -0.181969 -0.784129 -0.195945 0.346184 0.245547 -0.166116 0.487288 -0.108008 -0.346096 0.237673 -0.081470 0.518179 0.123062 0.178732 -0.125095 -0.323310 0.033920 -0.136271 0.637216 -0.054082 -0.068473 0.347558 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 5.321011 -2.399403 -2.301005 7.887284 1.189310 -1.886380 0.386910 2.112614 -0.230247 -12.393583 -7.505640 8.197647 0.687286 0.727674 1.762241 2.692663 0.837622 -0.489072 -12.069074 3.593873 2.853111 0.184642 -1.046663 -0.420392 1.243651 -4.232016 4.750532 2.669231 1.304553 6.591763 -3.672768 3.178890 5.797788 -0.496247 3.732343 5.438450 -0.957248 -0.172465 -3.088943 -1.488835 10.201678 4.614837 -0.107741 4.589034 1.892424 7.385028 0.603975 9.444070 4.532253 -4.697600 4.523412 1.374056 -4.918430 -0.881391 -6.322901 3.543552 4.421263 0.929976 -3.996550 2.286999 -2.522711 -0.269521 1.703335 -0.023028 8.270223 2.676989 6.583013 4.543110 7.939666 -4.975601 -1.699340 5.638583 4.529740 2.815303 5.670430 -4.982917 -7.203793 -1.799371 -0.263804 -7.570989 -3.971275 -1.900808 11.176217 -6.512127 -1.449924 1.025620 -0.154320 6.907623 -3.763002 1.199741 -6.278331 0.247337 -0.975289 9.049374 0.835868 1.256781 -0.264901 2.094871 1.723568 5.854341 0.281152 -5.816433 -3.507683 -11.022945 -3.020543 -3.481509 3.180004 2.711934 -9.013533 -0.187992 -1.320557 8.080162 -8.986257 -0.575583 4.961240 2.882307 7.785847 1.956476 -3.911467 -0.535909 2.863546 1.585748 4.805526 -2.985852 0.381010 -2.216453 3.318927 0.199169 2.580906 0.229177 -7.853287 -4.360611 0.661935 0.908392 0.357225 0.567477 3.639688 -4.798083 4.693828 -2.130068 5.386308 -9.396520 -1.860949 -4.078080 -4.697379 -1.957480 9.903504 6.800741 8.116067 -0.964360 -2.513955 -2.395529 -8.850808 -10.687928 0.735549 -0.194650 1.464582 2.073442 -0.394291 3.963107 -3.159564 0.707113 2.091024 -3.537148 -1.480583 -0.985120 2.715905 -0.408858 -0.790414 -4.906760 -1.794201 -0.877979 -0.030966 6.155371 -1.146900 -14.902997 -9.733614 -5.764604 5.708861 -2.698132 0.843456 -3.084623 -1.440464 -5.041284 0.078311 -5.991717 0.890639 -0.443704 -6.244244 -7.189557 0.665190 -1.395424 -0.956156 0.418018 -5.610344 -0.924182 4.613595 3.749619 3.058594 1.977747 -0.803108 -8.402868 -6.144401 1.070981 -3.720434 8.870622 3.516285 -1.667007 -5.008031 -3.080236 -7.750096 5.293284 -7.227488 1.590008 -1.290293 -2.918317 6.447438 -4.358188 -0.590365 -5.740141 2.841657 2.483744 -12.243233 8.919898 7.084554 -3.599588 -1.471531 -0.230320 1.071066 4.421845 6.612385 -4.605985 -3.821370 0.775434 -0.564484 -0.220070 -0.692782 4.966584 -3.992064 1.269649 -5.664755 -4.223692 3.329830 4.246203 0.421321 0.717451 1.938673 0.114040 2.600189 6.363080 4.426380 -0.516163 -6.570622 -16.879014 4.218825 1.859088 -3.089999 2.057336 -5.060417 -5.175167 1.365098 -3.442242 7.175375 -0.556875 -0.942698 5.931515 -7.864841 -6.913332 -3.962725 -1.752000 -0.548072 -0.697878 3.068963 -3.281572 1.446306 0.742316 -0.735662 -2.219248 -3.179703 -0.740249 0.829967 5.210410 3.083837 1.762024 6.849622 3.039363 -3.861115 -1.867086 1.170103 -1.528262 -0.216852 -8.043215 -2.895169 -1.678234 1.469505 -2.583134 1.888315 0.070197 0.891908 0.851470 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.377953 -0.174704 0.113865 0.502863 0.196663 -0.150544 0.225679 0.335555 0.123402 -1.140555 -0.649404 0.161631 -0.008545 -0.028508 0.255493 0.084742 0.124076 0.431681 -0.753157 0.156689 0.357214 0.331953 0.172833 -0.203333 0.114797 -0.196118 -0.356334 0.133222 0.235200 0.710055 -0.384963 0.017396 0.574416 -0.004435 -0.079649 0.553272 0.505760 0.030692 0.020828 -0.067738 0.932331 0.142877 0.002897 0.542529 0.175477 0.658780 -0.208168 1.025584 0.187368 -0.424931 0.505523 -0.858881 -0.383958 -0.036541 -0.473107 0.554259 0.809201 0.591296 -0.328842 0.413108 -0.068734 0.109437 0.160263 -0.517838 0.374599 0.708506 0.091820 0.368104 0.945854 -0.523317 -0.155085 0.315602 0.398347 0.174040 0.280434 -0.509605 -0.099524 -1.082743 -0.125896 -0.663545 -0.122607 -0.253792 1.136769 -0.747144 0.190153 0.733189 -0.029999 0.478523 -0.183022 0.059950 -0.559449 0.162387 0.054992 0.784511 0.066750 0.011557 -0.262007 0.116663 0.211242 0.427511 0.140810 -0.258880 -0.958067 -1.238910 -0.555081 -0.220908 0.076964 0.114291 -0.892315 -0.131745 0.560195 0.438994 -1.019411 -0.071748 0.487847 0.502478 0.119823 0.299865 -0.570637 -0.052623 0.101083 -0.016385 0.124510 -0.499238 -0.087191 -0.516831 -0.098709 -0.003732 0.163004 -0.239842 -0.410289 -0.403383 -0.225849 0.102386 0.027889 -0.043657 0.169256 -0.521939 0.414561 -0.368660 0.393656 -0.835276 -0.246542 -0.138235 -0.587752 -0.202676 1.493891 0.145054 0.653299 0.110230 -0.577128 -0.564981 -0.536251 -0.883878 0.202249 -0.102792 0.594520 0.260787 -0.068300 0.065901 -0.214870 -0.164895 -0.086394 -0.320808 -0.008698 -0.021691 0.493111 -0.428238 -0.103644 -0.933300 0.063257 0.609628 -0.252948 0.105402 -0.241839 -0.335018 -0.566666 -0.601503 0.557293 -0.226866 0.261065 -0.199330 0.102763 -0.618517 0.159359 -0.446331 0.066132 0.091118 -0.805873 -0.791458 0.207473 -0.192193 -0.179709 0.314991 -0.527797 0.044811 0.062534 0.535796 0.180413 0.089280 0.014468 -1.061445 -0.894569 -0.418039 -0.258976 0.623849 0.319838 0.118550 -0.417343 -0.288596 -0.564724 0.625695 -0.829145 0.033324 -0.172033 -0.028253 0.635792 -0.350143 -0.175918 -0.950576 0.262556 0.294145 -0.911800 0.799104 0.381123 -0.380591 -0.241030 -0.445264 0.094485 0.464048 0.851252 -0.419413 -0.325369 0.343841 -0.208880 -0.060789 -0.522054 0.464100 -0.289586 0.385683 -0.535696 -0.307724 0.169027 0.626482 -0.139685 0.341245 0.523399 0.352417 0.082961 0.652331 0.323313 -0.269541 -0.419725 -1.188628 0.427890 0.657210 0.061394 0.242736 -0.747826 -0.290254 0.329729 0.227399 0.635143 0.544293 0.475138 0.602985 -0.575376 -0.597561 0.185991 0.006418 0.274806 -0.403281 0.252182 -0.289392 0.088079 0.182628 -0.008167 0.137768 -0.396918 -0.644402 -0.051933 0.680669 0.168208 0.076067 0.730484 0.121089 -0.492220 0.211175 -0.122701 0.289099 -0.108547 -0.140994 -0.031329 -0.108356 0.043775 -0.354653 0.638741 -0.215122 -0.266292 0.224469 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.248985 -0.069488 -0.101902 0.515285 0.082111 -0.097706 0.056285 0.182208 -0.053838 -1.028088 -0.515475 0.096008 0.050662 0.142566 0.243011 0.274237 0.058928 0.259917 -0.435931 0.216676 0.352120 0.220088 0.117169 -0.050139 0.133050 -0.216062 -0.104858 -0.088594 0.274899 0.607631 -0.360474 0.181464 0.520873 -0.093118 0.120005 0.429456 0.356348 0.064591 -0.138694 -0.042768 0.766317 0.158509 0.077965 0.301312 0.038625 0.560020 -0.066292 0.685911 -0.156486 -0.475375 0.358586 -0.678176 -0.256354 0.023487 -0.355905 0.444327 0.369091 0.513480 -0.323046 0.231483 -0.182890 0.072291 0.107223 -0.265491 0.412273 0.326473 0.204154 0.404063 0.606953 -0.390072 -0.115830 0.356068 0.152984 0.095357 0.376801 -0.334319 -0.165601 -0.580924 -0.146781 -0.405850 -0.207633 -0.048963 1.101660 -0.693543 0.129278 0.487487 -0.090812 0.455414 -0.167324 0.080728 -0.492302 0.018924 0.018428 0.437751 0.111834 -0.071001 -0.182246 0.159781 0.161355 0.336778 0.086044 -0.296406 -0.702193 -0.706092 -0.368067 -0.211386 0.234377 0.303392 -0.722655 -0.203492 0.252019 0.628082 -0.858156 0.144631 0.410960 0.430696 0.458593 0.272942 -0.397741 0.062596 0.139578 -0.006078 0.264145 -0.370486 -0.018689 -0.319217 0.075953 -0.069042 0.173409 -0.111584 -0.495622 -0.384226 -0.130452 -0.050296 -0.011007 0.073989 0.291484 -0.487941 0.430109 -0.220296 0.348085 -0.654547 -0.180653 -0.126991 -0.674144 -0.195306 1.373165 0.313165 0.596006 -0.059961 -0.553921 -0.390295 -0.570275 -0.659771 0.110643 0.006104 0.356784 0.390726 -0.030551 0.252535 -0.203237 0.045502 0.006414 -0.236938 -0.049485 0.069357 0.187396 -0.259952 -0.093860 -0.770476 -0.080621 0.207793 -0.140936 0.287335 -0.188590 -0.430457 -0.666664 -0.455487 0.478774 -0.222898 0.288742 -0.183120 -0.009622 -0.482241 0.058631 -0.547507 0.150424 0.025755 -0.527384 -0.639821 0.162366 -0.142771 -0.250183 0.200574 -0.323158 -0.019333 0.160177 0.185880 0.173397 0.042311 0.015050 -0.750545 -0.596928 -0.093764 -0.412607 0.521728 0.258712 -0.057670 -0.379242 -0.250642 -0.511667 0.488805 -0.500390 0.061711 -0.159619 0.059879 0.503264 -0.336489 -0.020394 -0.712933 0.231954 0.289942 -0.962706 0.454299 0.405992 -0.226802 -0.028033 -0.114514 0.100234 0.415649 0.514685 -0.206749 -0.249701 0.167093 -0.183967 0.021692 -0.327243 0.340220 -0.402486 0.183219 -0.373510 -0.188667 0.170831 0.391891 -0.023344 0.164428 0.399485 0.140057 0.115892 0.471555 0.406201 -0.168331 -0.438075 -0.951654 0.411976 0.399811 -0.043243 0.073887 -0.423353 -0.138650 0.217606 -0.075908 0.471933 0.370592 0.184667 0.509525 -0.644040 -0.526233 0.015518 0.021683 0.099484 -0.246977 0.123172 -0.199919 0.171275 0.175752 -0.053377 0.021281 -0.289014 -0.302046 -0.010047 0.587115 0.175712 0.236363 0.578625 0.143495 -0.348360 0.112092 0.116289 0.154398 -0.134517 -0.418445 -0.200173 -0.031004 0.042893 -0.301292 0.277111 -0.244880 -0.290355 0.219305 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.194830 0.134578 0.410801 0.130432 0.146629 -0.226632 0.281070 0.480294 -0.128859 -0.756043 -0.564430 -0.387754 -0.098300 -0.163591 0.286848 -0.108513 0.040282 0.429092 -0.860958 0.115572 0.440528 0.403241 0.315836 -0.326575 0.129249 -0.080855 -0.816314 0.214902 0.094781 0.518917 -0.297789 -0.154194 0.368611 0.182800 -0.082568 0.451929 0.323246 -0.011445 0.425894 0.069428 0.651135 0.137220 -0.104104 0.267842 0.280698 0.449091 -0.267066 0.243692 -0.358082 -0.280703 0.211983 -1.008549 -0.319878 0.012310 -0.191669 0.329959 0.803759 0.733717 -0.190708 0.442632 -0.163684 0.048402 0.090765 -0.638743 0.187929 0.564567 -0.146490 0.120207 0.720166 -0.320057 -0.122666 0.115493 0.220766 -0.102933 -0.303863 -0.257674 0.217899 -1.487751 -0.052697 -1.035226 -0.134684 -0.064247 0.815678 -0.441625 0.369020 0.761685 -0.062971 0.212337 -0.137596 -0.153956 -0.326975 0.152270 -0.046947 0.544239 -0.015199 -0.069340 -0.041131 0.127306 0.354011 0.350577 -0.071016 0.018812 -1.002043 -1.100526 -0.272640 -0.002304 -0.016684 -0.055013 -0.522425 -0.216943 0.866324 0.262270 -0.710470 -0.096448 0.413854 0.466049 -0.729803 0.042385 -0.602101 -0.048233 -0.171902 -0.011800 0.116293 -0.455436 -0.113960 -0.453600 -0.227978 -0.014164 0.129167 -0.244833 -0.219484 -0.327706 -0.174449 -0.197717 -0.060029 -0.083301 -0.069526 -0.144988 0.249609 -0.484497 0.339343 -0.571968 0.180371 -0.059859 -0.412647 -0.042227 0.828280 0.193237 -0.097971 0.203531 -0.343399 -0.339690 -0.186793 -0.447151 0.278734 -0.011770 0.762061 -0.065450 -0.066604 -0.134520 -0.078061 -0.267975 -0.234011 -0.176814 0.117901 -0.136327 0.740781 -0.281539 -0.148194 -0.709535 0.201712 0.774152 -0.393716 -0.232471 -0.322241 0.538898 -0.244026 -0.522119 0.382250 -0.072153 0.067119 -0.163197 0.278744 -0.437529 0.354236 -0.251841 0.100193 0.083865 -0.572683 -0.531623 0.082566 -0.147339 -0.213345 0.198078 -0.209363 -0.059065 0.116150 0.337846 0.099128 -0.018675 0.131809 -0.587705 -0.664463 -0.481111 0.000125 0.177801 0.318678 0.191135 -0.460955 -0.078169 -0.269104 0.625801 -0.089470 -0.075332 -0.323032 -0.047865 0.605101 -0.096985 -0.107088 -0.655810 0.146342 0.208631 -0.664683 0.538971 0.185749 -0.282324 -0.326016 -0.600603 -0.014315 0.412282 0.680301 -0.200064 -0.141205 0.268699 -0.324682 -0.066692 -0.491519 0.358066 -0.162332 0.438988 -0.375303 -0.226586 0.135882 0.497727 -0.118016 0.554447 0.373874 0.541486 0.078753 0.464980 0.098526 -0.385303 -0.190557 -0.551596 0.313618 0.754578 0.301389 0.034092 -0.349157 -0.365124 0.128700 0.464600 0.458471 0.973978 0.236519 0.386010 -0.124076 -0.386121 0.182252 0.276015 0.269568 -0.505718 0.015271 -0.131603 0.084975 0.279433 0.019229 0.539734 -0.418451 -0.987536 -0.219138 0.534015 0.197384 -0.149526 0.546402 -0.042031 -0.382265 0.198785 -0.115809 0.452333 0.000361 0.320933 -0.080219 -0.220871 0.012788 -0.203639 0.639736 -0.083287 -0.233735 0.360474 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.336192 0.035059 -0.234932 0.899489 0.058365 -0.142595 0.050422 0.248850 -0.136668 -1.553241 -1.086733 1.313681 0.005043 0.313962 0.192195 0.112512 0.069304 0.179124 -1.286632 0.337917 0.403485 0.207160 0.036676 -0.024319 0.196524 -0.356566 0.363891 0.242174 0.371439 0.879550 -0.519399 0.229153 0.733840 -0.058290 0.358734 0.631550 0.164816 0.071122 -0.488643 -0.437782 1.194739 0.459922 0.049627 0.763758 0.181146 0.889298 0.044537 0.829909 0.747160 -0.723926 0.200038 0.046526 -0.544965 -0.127320 -0.566604 0.596850 0.339764 0.255464 -0.553309 0.248160 -0.047128 -0.170469 0.106687 -0.432823 0.661209 0.305689 0.501324 0.537877 0.810137 -0.692128 -0.311968 0.675517 0.536898 0.429518 0.508204 -0.354726 -0.776560 -0.315699 -0.129319 -1.175528 -0.695581 -0.134929 1.558927 -0.957565 0.008081 0.269590 -0.277152 0.673371 -0.312561 0.088167 -0.806578 -0.108514 -0.066609 0.691497 0.362066 -0.180312 0.015346 0.263159 0.344712 0.786749 -0.087045 -0.558852 -0.523063 -1.471706 -0.224227 -0.331862 0.469144 0.456121 -0.856595 -0.247283 0.111970 1.477153 -1.125566 -0.100132 0.754735 0.367377 0.199199 0.131804 -0.527205 0.115807 0.338595 -0.119427 0.769122 -0.393933 -0.020480 0.203705 0.151273 -0.190860 0.339399 0.134099 -0.742495 -0.886230 -0.033898 0.229036 -0.084625 -0.181538 0.353660 -0.402933 0.724176 -0.127277 0.593214 -0.903644 0.011648 -0.222167 -0.472869 -0.273336 1.250888 0.820869 0.989986 -0.245427 -0.286788 -0.450196 -0.865853 -1.119001 0.507465 0.157117 0.359991 0.356966 -0.064605 0.627452 -0.386213 0.019955 0.173609 -0.355806 -0.105450 0.090613 0.352881 -0.214293 -0.034936 -0.887531 -0.141154 -0.117327 -0.183954 0.461537 -0.290792 -1.478322 -0.934156 -0.678716 0.724215 -0.273295 0.204916 -0.211332 -0.138471 -0.302231 -0.041215 -0.837016 0.052622 -0.073275 -0.857559 -0.886834 0.028598 -0.196522 -0.422555 0.226863 -0.615021 -0.135919 0.554988 0.410280 0.370670 0.097860 0.092901 -0.947848 -0.583437 -0.016684 -0.638880 0.749716 0.602564 -0.185381 -1.042012 -0.399225 -0.850099 0.675931 -0.911139 0.165282 -0.388744 -0.273112 0.857769 -0.495906 -0.034103 -0.601917 0.378650 0.649472 -2.003660 0.806692 0.844290 -0.186869 -0.073438 0.171083 -0.082835 0.747842 0.833631 -0.693088 -0.486250 0.114132 -0.377561 0.095777 -0.190864 0.719284 -0.460530 0.188662 -0.567531 -0.425938 0.340850 0.389180 0.201865 0.326623 0.513765 0.261407 0.455971 0.775203 0.576841 -0.146390 -0.764057 -1.801362 0.755844 0.590831 -0.237465 0.451244 -0.572927 -0.563674 0.232895 -0.585508 0.756578 -0.447323 -0.152224 0.757938 -0.849674 -0.740481 -0.234825 -0.291056 0.003771 -0.116299 0.634374 -0.294541 0.256305 0.151526 -0.333275 -0.206527 -0.105013 -0.254137 0.030326 0.516530 0.542929 0.564817 0.839964 0.192876 -0.823082 0.033727 0.004041 -0.002323 -0.364223 -1.118446 -0.312608 -0.155196 0.129113 -0.321736 0.114747 -0.140028 -0.162707 0.141509 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 4.735935 2.538525 -7.095126 18.022225 -2.780103 -2.739139 -0.358328 2.307738 -4.717165 -26.920073 -15.229134 11.406221 3.866469 5.843695 4.019789 6.042963 -2.312996 1.317467 -26.681900 5.222986 11.978762 4.456021 2.836139 -0.936941 3.514990 -6.156339 7.752517 0.784539 4.646202 16.244037 -7.148724 10.613632 13.876475 -3.178299 5.155979 9.636994 -4.913753 3.532636 -6.747416 -1.532456 17.150318 7.657856 0.740103 6.290752 -2.053795 15.152109 1.515417 8.005587 -0.440115 -13.343925 5.765572 8.894051 -6.504584 -2.860124 -6.498952 6.346844 9.682438 8.792466 -5.669365 3.297952 -3.342678 -1.556084 3.954434 0.465407 15.260999 6.544030 12.300789 12.318039 12.923069 -9.016249 0.145237 5.646492 -1.186430 -2.172418 11.961861 -8.983777 -14.908767 0.867818 -4.083731 -20.850030 -11.067423 1.955352 21.404783 -15.464131 -0.513058 -0.839015 1.656045 15.626821 -5.476401 2.780965 -10.536010 -3.224972 -6.046163 17.073254 2.929497 0.021491 -0.760220 5.741870 4.802897 8.376456 0.111544 -10.852247 -3.432027 -15.432322 -5.427672 -6.692026 10.053917 13.560249 -18.656518 -3.339894 -6.738024 14.696946 -23.330088 0.936122 9.234611 11.191524 13.086252 -0.479926 -10.241998 2.379637 3.656685 0.372088 11.807821 -6.809631 3.132540 -1.702608 1.199576 -0.367656 4.025352 2.464287 -17.291993 -12.028330 -1.680246 -4.072030 1.895705 6.080230 11.763079 -4.727322 10.448544 -7.146924 11.684209 -18.877003 -1.886579 -4.489922 -12.359464 -5.734218 7.238850 12.290141 8.480420 -9.525578 -9.070512 -2.983645 -19.735768 -16.185216 1.956650 4.265841 3.291662 9.042421 -2.938278 10.539354 -9.278029 6.092776 7.566057 -4.394307 -3.672846 -0.301759 10.016099 1.571748 -2.355052 -8.465226 -5.400409 -9.220716 -0.714009 16.589817 -1.458797 -17.214420 -26.683755 -9.360667 13.567488 -5.719921 0.791893 -9.959368 -2.921337 -11.571258 -0.584497 -15.560773 0.349851 1.156403 -7.801414 -15.603775 2.491611 -1.688570 -5.715427 1.758431 -10.943117 -4.059169 13.497615 2.548032 6.907051 -0.110397 0.970708 -11.852320 -8.086619 6.466358 -12.636213 9.291787 6.978331 -3.875010 -12.462523 -5.922612 -13.298072 9.112599 -2.286534 5.254935 -5.391111 -0.360850 12.777271 -10.217041 0.891214 -10.899961 2.365298 6.157111 -24.439054 14.956230 8.406889 -2.480994 2.559337 5.115595 3.017697 7.669473 5.206705 -8.742272 -11.264616 -0.239093 -4.447325 1.695587 -3.374900 7.933286 -12.460721 -0.735056 -6.981761 -3.419511 8.656592 5.583730 1.435488 4.837162 6.684091 -5.802501 6.829254 8.571411 13.051949 -3.231520 -10.191202 -23.449347 9.976298 -5.967312 -3.789352 -4.468798 -4.750661 -8.148003 6.045575 -2.772750 12.728820 1.098418 -7.226944 12.029753 -18.993240 -14.052927 -10.497839 -1.356638 -0.029623 0.627888 -2.884583 -4.054408 7.369040 7.551585 -2.790645 -1.098587 -10.463771 1.222051 2.254022 14.437788 1.061417 5.836139 15.086273 6.214085 -7.210219 -3.098455 3.737907 -4.980707 -5.649372 -15.780032 -5.795382 1.237920 4.243606 -7.326798 0.520257 -5.341622 -3.613449 3.579324 -PE-benchmarks/cut-vertices.cpp__main = 1.697398 0.810984 3.360257 -0.702020 1.439613 -0.420918 1.585728 3.335883 -1.478366 -3.033354 -4.172146 -3.163731 -1.072966 -1.012763 2.135510 -1.522695 1.155036 0.181129 -5.467819 -0.078540 1.772538 0.751531 1.032663 -0.478860 0.560305 -0.854168 -5.706467 2.377059 -0.310801 1.616186 -0.670713 -1.086984 1.049682 1.467191 0.158186 2.135373 -0.264221 -0.623179 3.805983 0.097966 3.368560 0.418947 -0.356330 1.268918 2.479306 1.770412 -3.350954 2.365148 -2.182132 -0.738397 3.258250 -6.805382 -1.813492 0.801273 -1.123746 0.591718 4.849545 2.333340 -0.994667 2.367447 -1.662174 0.202326 -0.242572 -3.593931 0.910929 3.219140 -0.457454 -0.584128 2.483782 -1.376775 -1.345996 1.502701 0.764018 0.274436 -5.785570 -1.902401 3.025785 -7.245487 1.145031 -5.492259 -0.962786 -1.629144 4.334082 -0.242064 0.790128 3.151210 -1.393506 -0.111049 -0.624257 -0.792435 -1.203217 0.818055 -0.070215 1.143512 -1.279598 -0.109319 1.537357 -0.269003 1.727349 2.681058 -2.098590 1.006322 -6.745448 -5.429469 -1.007559 1.009021 0.668954 -1.143392 -1.379352 -0.819176 4.207639 -1.408678 -1.127926 -1.365526 1.731714 2.320823 -5.840813 4.197544 -4.749268 -2.493643 -0.454083 0.765803 1.160350 -0.735923 0.029650 -4.601279 -0.913276 -0.088986 0.688434 -1.393922 -1.517960 -1.328171 -0.351707 -2.076785 -0.724036 -1.316210 -1.213831 1.167249 1.035499 -1.547788 1.554895 -3.466927 1.080328 -1.721732 -1.522562 0.502170 3.408834 3.106582 -1.031840 3.084593 -0.399075 -0.922118 -0.063889 -0.348055 0.159122 -0.157996 5.042854 -2.211974 -0.198394 -0.473279 0.135782 -1.923945 -2.716235 -0.182382 0.842932 -2.187037 4.695183 -0.756665 -0.855406 -2.624446 2.068127 3.713574 -4.319912 -1.737046 -1.487230 3.361264 0.029498 -2.632724 1.101325 0.004959 -0.233309 0.100252 2.306361 -2.038251 1.495428 -0.557311 -0.290160 0.037145 -3.531310 -1.611945 0.631907 -0.479102 -0.805289 0.887896 -0.181201 -0.916730 2.517852 3.884014 1.224584 0.729851 -0.297268 -1.896164 -3.335746 -3.337933 0.842526 0.924538 2.795030 0.113795 -1.080800 -0.151957 -1.170664 3.128538 1.379945 -0.903915 -1.727968 -0.806619 2.265396 0.157010 -0.085024 -2.778199 0.160981 1.131275 -5.374923 1.569984 0.172695 -1.609726 -3.061601 -5.021971 -0.678983 1.481675 3.105152 0.616936 0.555522 0.864536 -1.062526 -0.360062 -2.059572 1.737958 0.709259 1.858076 -2.374153 -2.079387 1.429194 2.166082 -0.438090 3.195480 1.484644 4.934812 2.115046 2.580651 -0.736252 -3.326621 0.304483 -4.333607 1.163803 6.637513 0.693618 0.051390 -1.474673 -3.322876 -1.000716 2.129133 1.878516 5.419484 1.848005 1.518279 2.310403 -1.093364 0.052050 2.268583 0.881090 -2.850225 -1.280034 -0.233611 0.343626 1.413810 -0.220064 4.373834 -2.658446 -7.868553 -2.113946 2.219612 0.894503 -0.422598 1.920545 -0.281282 -1.358279 0.259825 0.028198 2.969833 1.864960 1.779694 -0.969310 -2.153678 -0.688701 -0.101183 2.054215 1.628348 -0.127932 2.314038 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = 4.352123 0.394027 -3.307895 8.687738 -1.307844 -4.210126 0.427399 4.077781 -1.948775 -12.656877 -9.071438 5.936692 1.773658 0.612708 4.075565 2.556729 -1.759431 0.922786 -15.218459 4.597901 5.399094 2.149110 -0.679550 -2.567000 1.832157 -2.242625 0.858993 1.704130 1.465149 8.025289 -4.228962 3.849882 5.780816 -1.173376 2.851790 5.254857 -2.917373 1.073601 -0.804497 -0.637067 9.791399 5.076639 -0.302180 3.993631 0.997055 7.319514 -1.084868 6.247394 -1.980130 -6.240360 4.236341 2.366531 -4.813586 -0.609534 -3.777574 3.930836 7.560753 4.485869 -3.246377 3.439027 -3.446571 -0.549154 2.482589 -0.635560 9.186658 4.518006 6.006993 5.690369 8.674760 -4.250939 0.342023 3.141901 2.343863 -1.707120 5.052473 -4.925050 -6.573187 -4.286481 -0.443419 -12.529162 -4.768423 0.716762 13.523600 -8.331858 1.007227 1.949323 2.091839 8.536125 -4.874851 1.419423 -4.292588 -0.912205 -4.087018 10.714377 0.586609 1.127678 -0.343555 3.499507 2.814891 5.537897 -1.413813 -4.243496 -4.194105 -12.341881 -3.454858 -1.701381 3.046737 4.394254 -10.355262 -1.947650 0.482423 6.378731 -11.443091 -0.643309 5.847360 5.191383 3.220895 1.226129 -6.278925 0.424531 0.640498 1.474740 5.645085 -3.607168 1.226303 -2.735205 1.006606 1.001946 2.812814 0.942766 -8.970691 -5.255691 -0.224635 -2.272796 0.365692 2.341932 5.166218 -2.995881 5.249582 -4.840057 6.333028 -11.521949 -0.374661 -3.756795 -6.295699 -1.625199 4.615184 6.479636 3.892870 -3.166315 -4.123262 -1.897845 -10.143847 -9.429781 2.019099 1.555109 2.961489 1.869592 -0.666912 3.191299 -3.413333 0.933077 3.452071 -3.825784 -1.505553 -2.036445 7.971897 0.889112 -1.888029 -6.130316 -1.609363 -1.760047 -1.484960 6.255955 -0.596108 -8.449745 -12.386840 -5.492224 7.228917 -1.346403 0.440194 -4.639712 -1.041893 -6.314417 0.796189 -7.099071 1.406266 0.705007 -4.750115 -8.034590 -0.485511 0.200384 -3.216180 -0.616726 -5.720698 -1.930492 7.426912 2.087856 2.260433 1.810704 1.490852 -7.583558 -6.774602 1.660071 -4.310658 5.749298 5.474328 -1.089258 -5.846043 -1.902792 -7.133585 6.247462 -3.983589 2.266283 -3.243321 -1.389087 8.585054 -5.373964 -1.963936 -6.965333 1.539759 2.104231 -13.459378 9.498952 5.127937 -2.708354 0.227091 -0.609746 1.786586 4.688829 6.291835 -5.188092 -4.441430 0.240811 -2.388242 -0.003393 -2.369183 5.115197 -6.307819 0.957092 -3.677744 -2.178884 4.373841 4.270477 1.132099 3.840251 2.067811 -1.266900 3.357789 5.573506 5.828215 -3.647876 -6.138253 -13.892322 5.729506 0.013526 -2.366135 -1.236401 -3.715624 -6.008687 1.746284 0.074649 6.473664 3.710401 -1.751113 5.964121 -8.876729 -7.992805 -5.066046 1.714230 -0.327026 -1.454871 -0.516389 -2.483825 3.211014 4.161248 0.072975 0.146520 -5.457248 -4.369992 -0.519674 7.607980 1.342422 0.662671 8.723493 3.207381 -3.966242 -2.029494 0.350109 -1.461823 -2.072966 -5.609576 -3.363699 -1.382031 2.291152 -4.501074 3.112237 -0.567592 -0.675534 3.042310 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 1.062293 -0.257494 -0.288990 1.149939 0.497576 -0.693665 0.114272 0.389311 -0.015412 -1.901627 -1.138208 1.691690 -0.005081 -0.376423 0.204346 0.415588 0.266671 0.240121 -1.562728 0.851198 0.255833 0.136807 -0.507152 -0.335979 0.191960 -0.594694 0.515239 0.457256 0.129792 0.983615 -0.771604 0.298639 0.820916 0.046738 0.705758 0.941154 0.111331 -0.208581 -0.165389 -0.264907 1.896476 0.635099 0.247309 1.052992 0.787196 1.145927 -0.108771 1.764766 0.922297 -0.543772 0.659538 0.287370 -0.815208 -0.001667 -1.294664 0.831336 0.630180 -0.134836 -0.819444 0.469276 -0.199561 0.013168 0.331449 -0.190388 1.378097 0.656189 0.671873 0.689343 1.777884 -0.597123 -0.335197 0.940887 1.364596 0.607875 1.076810 -0.587732 -1.037731 -0.285130 -0.190093 -1.143824 -0.162486 -0.492285 2.186049 -1.094396 -0.066749 0.450603 0.211377 1.094626 -0.594345 -0.083224 -1.057405 0.281910 -0.307337 1.558562 0.080127 0.477834 -0.392221 0.246249 0.162335 0.987813 -0.175200 -0.947438 -0.680381 -2.255767 -0.750105 -0.538276 0.035333 -0.108883 -1.682438 -0.000322 0.057234 1.807961 -1.549516 -0.263478 0.760039 0.098675 0.862831 0.350113 -0.773088 -0.179026 0.284191 0.287120 0.208267 -0.308129 -0.287054 -0.553727 0.327984 -0.041799 0.528310 -0.158244 -1.218782 -0.546320 -0.005892 0.298398 -0.072533 -0.123353 0.324206 -1.149253 0.649308 -0.314584 0.700310 -1.467951 -0.509954 -0.847403 -0.904320 -0.207588 1.771615 0.853890 1.646019 0.062403 -0.195257 -0.717628 -1.492433 -1.884320 0.377419 -0.640094 0.278873 0.171235 0.065835 0.176555 -0.400824 -0.364674 0.505877 -0.838569 -0.173640 -0.476283 0.860094 -0.414479 -0.096617 -1.096303 -0.342697 0.443115 0.165080 0.471117 -0.375820 -2.370108 -1.339709 -1.045729 0.831294 -0.373957 0.307753 -0.435858 -0.084442 -0.674154 0.071396 -0.829258 0.177252 -0.304196 -0.933685 -1.134576 -0.073532 -0.271967 -0.278981 -0.200515 -0.951678 0.148161 0.652814 0.563517 0.305039 0.362088 -0.265470 -1.588286 -1.263200 -0.008563 -0.132392 1.318132 0.869327 0.083924 -1.025638 -0.479270 -1.450092 0.911541 -1.892674 0.138564 0.191530 -0.605298 1.268178 -0.758786 -0.300486 -0.938717 0.575287 0.121306 -2.213662 1.543225 1.127059 -0.964399 -0.446669 -0.481114 0.298700 0.808447 1.586095 -0.795881 -0.319080 0.371645 -0.074113 -0.200528 -0.296913 0.963038 -0.542668 0.822928 -1.134962 -0.845165 0.504013 0.993601 -0.094588 -0.011894 0.018835 0.137961 0.403632 1.215092 0.663060 0.122128 -1.211676 -2.757359 0.446584 0.202619 -0.275786 0.699541 -0.843740 -0.902830 0.115512 -0.704956 1.384648 -0.606036 0.165294 0.915399 -1.307155 -1.224154 -0.167176 -0.207881 0.051022 -0.392024 0.984610 -0.732783 -0.118026 -0.086812 0.225966 -0.385452 -0.470361 -0.374965 0.110755 0.765676 0.748092 -0.019614 1.127898 0.471495 -0.679577 -0.080149 -0.015975 0.218339 -0.091735 -1.405083 -0.481516 -0.595734 0.143838 -0.452066 1.016163 -0.013052 0.464794 0.174285 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.360805 0.065163 0.368650 0.301102 0.213195 -0.312655 0.339044 0.575153 -0.047730 -1.060598 -0.709563 -0.160577 -0.076877 -0.195243 0.295345 -0.065368 0.048544 0.537477 -1.002388 0.196249 0.490355 0.494628 0.282892 -0.416883 0.149371 -0.116799 -0.800124 0.240220 0.166630 0.704508 -0.386229 -0.178158 0.521608 0.141724 -0.109253 0.616109 0.496033 0.018221 0.375186 0.014339 0.903067 0.225703 -0.092986 0.479530 0.338831 0.623655 -0.297280 0.642267 -0.290816 -0.391978 0.339126 -1.103128 -0.458095 -0.041100 -0.327932 0.516762 1.024319 0.831153 -0.289432 0.544219 -0.134911 0.053817 0.152744 -0.696315 0.275820 0.786241 -0.118351 0.238165 1.035491 -0.465965 -0.188799 0.248968 0.393187 -0.011765 -0.081125 -0.434128 0.065371 -1.557738 -0.084638 -1.137900 -0.172578 -0.164026 1.181404 -0.677692 0.410307 0.919758 -0.004684 0.349477 -0.201920 -0.141570 -0.460177 0.196921 -0.082696 0.877265 -0.008554 0.001382 -0.153455 0.153729 0.404833 0.483644 -0.014702 -0.087074 -1.179455 -1.394129 -0.406507 -0.096295 -0.032076 -0.008994 -0.779998 -0.274787 0.905217 0.419547 -1.004608 -0.120373 0.568998 0.558897 -0.466139 0.171201 -0.726071 -0.013858 -0.116825 -0.080533 0.109310 -0.579336 -0.186051 -0.500355 -0.236275 -0.023804 0.134755 -0.291739 -0.452073 -0.405525 -0.241439 -0.140258 -0.024648 -0.108817 -0.024917 -0.404907 0.348730 -0.566063 0.419621 -0.826154 0.025668 -0.078906 -0.621079 -0.103650 1.199559 0.168557 0.201466 0.170286 -0.465461 -0.548621 -0.363469 -0.745780 0.344072 -0.072075 0.852668 0.013136 -0.066837 -0.129800 -0.154952 -0.323496 -0.199329 -0.265135 0.119413 -0.129626 0.959510 -0.428462 -0.143182 -0.938051 0.164538 0.868148 -0.340883 -0.167046 -0.373231 0.234509 -0.431556 -0.667808 0.533231 -0.126750 0.129330 -0.222304 0.248745 -0.591815 0.339190 -0.374411 0.169035 0.091917 -0.764765 -0.745096 0.148810 -0.190025 -0.243054 0.259825 -0.374190 -0.044673 0.124444 0.478888 0.126826 0.014392 0.127763 -0.941682 -0.908874 -0.537449 -0.052843 0.420315 0.403312 0.242089 -0.526308 -0.150301 -0.484340 0.752332 -0.437617 -0.065335 -0.335836 -0.020658 0.816117 -0.213982 -0.166467 -0.966760 0.232454 0.275355 -0.839456 0.812161 0.303278 -0.375661 -0.371615 -0.628175 -0.014504 0.560224 0.912286 -0.366689 -0.309418 0.391771 -0.385622 -0.096688 -0.601964 0.481668 -0.265763 0.593771 -0.515148 -0.303132 0.147912 0.679955 -0.168386 0.597563 0.462273 0.528204 0.077615 0.653229 0.223757 -0.412072 -0.363080 -0.931373 0.435654 0.754289 0.261226 0.081487 -0.557026 -0.452029 0.265479 0.499012 0.640928 0.991494 0.354698 0.541645 -0.386962 -0.574495 0.256419 0.248416 0.361350 -0.577605 0.109578 -0.229461 0.114727 0.308152 0.006603 0.498564 -0.517086 -1.038789 -0.213943 0.712020 0.224701 -0.137029 0.753230 -0.000217 -0.491447 0.264631 -0.159394 0.527287 -0.073432 0.199758 -0.061071 -0.261694 0.036976 -0.292425 0.849816 -0.124585 -0.298106 0.413043 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.473014 -0.189341 -0.018756 0.569228 0.316530 -0.305463 0.151841 0.252115 0.076177 -1.125128 -0.586386 0.380549 0.000792 -0.159849 0.213976 0.200591 0.089683 0.363308 -0.559931 0.333789 0.263550 0.270455 -0.015383 -0.253506 0.131320 -0.233524 -0.154446 0.113529 0.182109 0.636506 -0.439121 0.049506 0.517250 -0.005623 0.047951 0.518312 0.474846 -0.012944 0.003163 -0.028361 0.999294 0.156241 0.086388 0.571508 0.318721 0.617869 -0.213525 1.137649 0.163785 -0.354863 0.503211 -0.510845 -0.367040 -0.005153 -0.577885 0.636560 0.700472 0.348112 -0.382993 0.320551 -0.077505 0.089910 0.170557 -0.347560 0.506624 0.666902 0.155020 0.387392 1.079360 -0.409544 -0.202778 0.438677 0.600167 0.222490 0.534361 -0.420762 -0.270396 -0.713761 -0.171501 -0.477053 -0.028084 -0.288326 1.233074 -0.733057 0.089322 0.655032 0.128795 0.548847 -0.227118 0.034407 -0.544940 0.224486 -0.077169 0.909865 0.049482 0.171960 -0.400769 0.111381 0.157496 0.476799 0.079571 -0.317468 -0.818915 -1.237054 -0.632959 -0.244879 0.007655 0.005622 -1.036173 -0.088728 0.426705 0.657995 -1.002313 -0.054470 0.477067 0.376702 0.451739 0.291633 -0.579411 -0.048442 0.132393 -0.010541 -0.039531 -0.325709 -0.188394 -0.541400 0.026805 -0.042295 0.180754 -0.278555 -0.549079 -0.304953 -0.229932 0.114457 0.037593 -0.075864 0.183320 -0.763514 0.378650 -0.268001 0.322435 -0.876957 -0.352211 -0.267629 -0.698861 -0.144675 1.415572 0.144288 0.857214 0.086444 -0.496424 -0.636425 -0.678148 -0.999629 0.152200 -0.299514 0.415411 0.239477 -0.006775 0.022491 -0.180948 -0.225863 0.124574 -0.409264 -0.018889 -0.143579 0.595135 -0.472939 -0.057984 -0.915670 -0.110667 0.548694 -0.067624 0.130752 -0.209554 -0.642053 -0.645141 -0.630607 0.492425 -0.215040 0.298365 -0.253621 0.073708 -0.644102 0.135227 -0.436582 0.125371 -0.003982 -0.705955 -0.720043 0.108945 -0.161912 -0.219034 0.114945 -0.544436 0.098700 0.084453 0.382214 0.170718 0.114490 -0.103057 -1.112240 -0.940540 -0.286069 -0.143517 0.674523 0.377060 0.145613 -0.401478 -0.294257 -0.730046 0.576266 -1.055046 -0.002899 0.012551 -0.065201 0.694132 -0.411685 -0.258091 -0.888076 0.276803 0.117496 -0.862350 0.882807 0.428586 -0.467171 -0.249488 -0.411906 0.140925 0.470524 0.930192 -0.426747 -0.228550 0.320813 -0.097347 -0.119093 -0.419710 0.524982 -0.366360 0.537972 -0.571994 -0.390830 0.118407 0.719885 -0.170398 0.184919 0.286730 0.201248 0.064331 0.650113 0.378672 -0.142243 -0.509050 -1.239133 0.294005 0.229831 -0.044197 0.284483 -0.678190 -0.336407 0.255219 0.075252 0.741130 0.194694 0.449502 0.557697 -0.710472 -0.643115 0.232398 -0.016914 0.192941 -0.409822 0.387337 -0.364593 -0.029320 0.110994 0.062956 -0.023102 -0.402030 -0.466487 -0.058476 0.624556 0.229780 0.011003 0.689438 0.222489 -0.420476 0.163579 -0.071710 0.324293 -0.102141 -0.347503 -0.101390 -0.218900 -0.013905 -0.308567 0.738689 -0.196714 -0.115351 0.199505 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.374488 0.007439 0.444362 0.267536 0.357175 -0.327909 0.336603 0.492816 -0.028228 -0.910993 -0.532295 0.003104 -0.132407 -0.255549 0.176018 -0.127136 0.176265 0.490882 -0.728287 0.190367 0.293988 0.424202 0.116091 -0.429489 0.104630 -0.116829 -0.525749 0.340053 0.145578 0.584277 -0.363741 -0.289982 0.423276 0.168620 0.041433 0.627262 0.657952 -0.002026 0.254349 -0.053939 0.954662 0.173558 -0.018970 0.563983 0.490063 0.581254 -0.148626 0.600353 -0.135624 -0.282101 0.230122 -0.903479 -0.401354 -0.138228 -0.464242 0.493485 0.872501 0.677857 -0.416184 0.541642 0.000657 0.037376 0.137289 -0.512774 0.217873 0.628150 -0.190298 0.196073 1.026191 -0.467887 -0.289691 0.338544 0.576969 0.163111 -0.029222 -0.390016 0.008855 -1.326002 -0.076332 -0.887536 -0.060115 -0.193767 1.039089 -0.549807 0.389795 0.884558 -0.083627 0.208620 -0.166129 -0.277663 -0.487557 0.195586 -0.057695 0.838801 -0.018984 0.045077 -0.048247 0.130655 0.367463 0.556817 0.001508 -0.173346 -0.925989 -1.351977 -0.372894 -0.141634 -0.121584 -0.192635 -0.570220 -0.311127 0.768622 0.460090 -0.818809 -0.160341 0.506304 0.383388 -0.427710 -0.032326 -0.523581 -0.015839 -0.112093 -0.125418 0.027484 -0.493933 -0.257677 -0.322338 -0.188242 -0.050787 0.157368 -0.270752 -0.379267 -0.327978 -0.212283 -0.017807 -0.105399 -0.263508 -0.185256 -0.508947 0.289119 -0.493702 0.395913 -0.665184 0.006188 -0.112530 -0.561054 -0.085495 1.091378 -0.055526 0.336769 0.197925 -0.360771 -0.504028 -0.259718 -0.800868 0.435386 -0.113963 0.700614 0.000569 -0.049306 -0.179990 -0.169574 -0.483505 -0.090159 -0.260339 0.094603 -0.155758 0.749387 -0.452368 -0.115537 -0.832986 0.250058 0.909060 -0.129591 -0.215974 -0.463910 0.003715 -0.262971 -0.623306 0.443986 -0.113771 0.087702 -0.046121 0.128646 -0.481295 0.339143 -0.351353 0.267336 -0.088605 -0.673075 -0.658740 0.148875 -0.252742 -0.118200 0.254845 -0.345620 0.034283 -0.052078 0.371459 0.032539 0.023351 0.129554 -0.918564 -0.848493 -0.482864 0.132793 0.413274 0.302051 0.311010 -0.429490 -0.147265 -0.424716 0.616722 -0.518420 -0.080348 -0.120615 -0.109779 0.765988 -0.161917 -0.106778 -0.828164 0.283656 0.311906 -0.658073 0.775276 0.347208 -0.455254 -0.469372 -0.537478 -0.076102 0.502974 0.949543 -0.386696 -0.285922 0.476731 -0.322809 -0.113490 -0.566136 0.415743 -0.067977 0.685683 -0.626200 -0.414260 0.089852 0.674672 -0.171679 0.467125 0.364283 0.459271 -0.073446 0.787058 0.165628 -0.128183 -0.403749 -0.841586 0.396549 0.600766 0.286049 0.162618 -0.476523 -0.441253 0.225669 0.420070 0.603798 0.790317 0.305554 0.524193 -0.363595 -0.550334 0.301969 0.115037 0.400389 -0.596319 0.214604 -0.309388 0.049043 0.069697 0.045336 0.360076 -0.280603 -0.835382 -0.190750 0.524189 0.272863 -0.153619 0.694115 -0.066194 -0.455277 0.303519 -0.125054 0.593133 0.049269 0.057556 -0.105947 -0.364133 0.058108 -0.225057 0.847295 -0.095380 -0.132844 0.400126 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.309769 0.165040 0.454202 0.048298 0.137491 -0.432437 0.304549 0.648917 -0.184426 -0.766489 -0.658688 -0.524839 -0.131384 -0.361541 0.385199 -0.109712 0.030170 0.456707 -1.104667 0.287914 0.510598 0.482045 0.234007 -0.403760 0.178138 -0.061644 -1.151844 0.226422 0.031081 0.527186 -0.371491 -0.212013 0.357276 0.190415 -0.016954 0.508046 0.204751 -0.043229 0.770262 0.212544 0.745991 0.213714 -0.084422 0.255563 0.480378 0.456968 -0.446619 0.343779 -0.501010 -0.276584 0.353841 -1.207370 -0.376142 0.126914 -0.199228 0.351617 0.989301 0.777473 -0.251817 0.528876 -0.256269 0.056753 0.115310 -0.722311 0.308581 0.703727 -0.207921 0.071344 0.877229 -0.169573 -0.089515 0.076537 0.347548 -0.203033 -0.448217 -0.322015 0.312752 -1.779905 -0.031301 -1.271995 -0.061204 -0.080466 0.968042 -0.486286 0.515646 0.873473 -0.005162 0.234399 -0.199538 -0.272498 -0.294366 0.201421 -0.137131 0.638961 -0.157886 0.006399 -0.046297 0.161374 0.380584 0.369309 -0.223531 0.050676 -1.257832 -1.329660 -0.336226 0.079074 -0.126092 -0.177307 -0.672133 -0.245332 1.026264 0.202395 -0.793660 -0.096871 0.443955 0.424696 -0.969113 0.205436 -0.803678 -0.127194 -0.318090 0.096382 0.048887 -0.434229 -0.188610 -0.749272 -0.266086 0.060380 0.145525 -0.326694 -0.266134 -0.261648 -0.190051 -0.283094 -0.150007 -0.072155 -0.146270 -0.180731 0.251983 -0.580655 0.349638 -0.715390 0.169839 -0.197375 -0.473927 0.042060 0.883930 0.297698 -0.209383 0.295184 -0.326333 -0.370881 -0.279630 -0.421569 0.297634 -0.197100 0.932808 -0.239310 -0.021401 -0.301169 0.023488 -0.393062 -0.338747 -0.238806 0.187417 -0.339763 1.016201 -0.303564 -0.184617 -0.786466 0.177501 1.001090 -0.504025 -0.406571 -0.382816 0.709113 -0.246464 -0.571378 0.386884 -0.005347 0.108010 -0.199853 0.432811 -0.517214 0.440990 -0.255748 0.081833 0.005736 -0.541175 -0.521179 -0.006141 -0.130040 -0.177859 0.012750 -0.155777 -0.071904 0.231431 0.496334 0.104869 0.018478 0.126529 -0.681661 -0.810088 -0.565148 0.124666 0.199727 0.442167 0.243989 -0.487790 0.009566 -0.361942 0.727113 -0.108382 -0.150581 -0.311761 -0.126276 0.786406 -0.063890 -0.169687 -0.746445 0.135533 0.097878 -0.832779 0.618452 0.163158 -0.399618 -0.375241 -0.847881 0.037664 0.498183 0.796967 -0.094997 -0.029875 0.271132 -0.391314 -0.108354 -0.591077 0.448437 -0.217952 0.644295 -0.405847 -0.236792 0.216434 0.582521 -0.136558 0.613057 0.219340 0.651952 0.126044 0.492177 0.032032 -0.485058 -0.209747 -0.670436 0.263125 0.958935 0.393434 0.021732 -0.329374 -0.482843 -0.007185 0.583535 0.550314 1.211165 0.334110 0.353148 -0.105703 -0.456963 0.196274 0.487620 0.254202 -0.616171 -0.032569 -0.138373 0.050081 0.368224 0.161000 0.752459 -0.557314 -1.361433 -0.297544 0.567755 0.262743 -0.336359 0.578410 -0.067200 -0.384074 0.198098 -0.127636 0.605184 0.024517 0.491825 -0.151175 -0.390021 -0.013570 -0.226947 0.871897 -0.041550 -0.111951 0.445396 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.796262 0.259582 0.544117 0.405632 0.374147 -0.701055 0.522008 1.131565 -0.452473 -1.675588 -1.346579 -0.483471 -0.122665 -0.538863 0.623942 -0.031010 0.025805 0.499174 -2.115927 0.483754 0.837809 0.561634 0.139934 -0.651692 0.256690 -0.363452 -1.575802 0.634499 -0.013045 1.042350 -0.594419 -0.219543 0.731890 0.317261 0.119524 0.981121 0.258479 -0.058833 1.037577 0.275207 1.559866 0.599600 -0.341402 0.506481 0.853666 0.999448 -0.809418 0.948099 -1.285604 -0.527669 0.717484 -1.570025 -0.821645 0.108908 -0.569470 0.636430 1.934445 1.157606 -0.501885 0.920143 -0.699918 0.053505 0.233585 -0.881801 0.837466 1.254899 0.126760 0.294118 1.692907 -0.560789 -0.307502 0.505804 0.622265 -0.269891 -0.577810 -0.510756 0.122618 -2.562336 0.132311 -2.286343 -0.379596 -0.228639 2.067250 -0.869588 0.466243 1.352390 0.205901 0.632387 -0.632922 -0.295715 -0.653705 0.318071 -0.461154 1.749959 -0.173285 0.238507 -0.094506 0.387002 0.781391 0.921826 -0.431783 -0.099200 -2.106707 -2.433016 -0.673527 -0.017557 -0.058245 -0.164776 -1.349262 -0.460369 1.715071 0.617803 -1.452281 -0.140545 0.910146 0.864228 -0.750451 0.643433 -1.640904 -0.137441 -0.351741 0.013153 0.283901 -0.599190 -0.222703 -1.170600 -0.091280 0.022629 0.247040 -0.432871 -1.298522 -0.404269 -0.139429 -0.758251 -0.108108 -0.115026 -0.096162 -0.571408 0.534960 -1.001500 0.755494 -1.689142 0.294571 -0.479175 -1.219811 0.061939 1.298950 0.961790 -0.057647 0.457559 -0.502265 -0.658728 -0.841944 -1.290378 0.327224 -0.126092 1.430738 -0.508651 -0.089809 -0.280611 -0.197576 -0.521643 -0.196036 -0.474132 0.236888 -0.612013 2.422380 -0.408634 -0.343807 -1.206895 0.148398 1.324086 -0.654830 -0.200156 -0.598428 0.434285 -0.893904 -1.126967 0.780117 -0.091320 0.026567 -0.458658 0.517655 -1.242568 0.695831 -0.527738 0.351864 0.003623 -1.067172 -1.051915 0.094554 -0.160852 -0.533707 0.018585 -0.490867 -0.223000 0.703066 0.622866 0.324915 0.071647 0.138973 -1.230662 -1.515548 -0.685833 0.111648 0.754690 1.027169 0.260906 -0.683093 -0.079039 -1.043609 1.367610 -0.265659 -0.171720 -0.556071 -0.294148 1.446650 -0.338669 -0.500120 -1.380119 0.312008 0.147352 -1.280039 1.554632 0.574886 -0.742529 -0.762834 -1.278480 0.022952 0.886416 1.503118 -0.429677 -0.247755 0.420514 -0.532268 -0.220895 -0.659928 0.894051 -0.466696 1.043184 -0.899153 -0.607159 0.438595 1.180099 -0.242900 1.100854 0.293849 0.875123 0.324273 1.021977 0.250245 -0.887629 -0.508362 -1.626409 0.529959 0.687615 0.169447 -0.165934 -0.575758 -1.124425 -0.006820 0.786748 1.166243 1.743253 0.193070 0.781720 -0.487993 -0.975595 0.043080 0.699856 0.334288 -1.067178 0.008127 -0.315635 0.178339 0.617252 0.139772 1.089292 -1.200524 -2.083500 -0.564486 1.084556 0.381364 -0.569733 1.179066 0.060926 -0.592820 0.084633 -0.103295 0.899256 0.271621 0.324780 -0.375670 -0.756534 0.029257 -0.364277 1.350742 0.186510 -0.152339 0.929558 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 4.553966 0.502092 -4.560628 12.361120 -0.377526 -1.514518 -0.061497 1.144102 -1.803142 -18.104747 -10.533818 7.932688 2.083859 2.717205 2.818114 4.406867 -1.031956 0.533516 -15.833871 3.641446 6.915115 2.263563 0.938088 -0.526213 1.881739 -4.407017 5.365822 1.467808 2.771395 9.887467 -4.620812 6.119984 9.203143 -1.339592 3.028518 6.469442 -2.361846 1.900111 -4.689777 -1.708470 12.281174 5.266603 0.001461 4.812470 -0.143522 10.171793 1.465874 8.570105 -0.293107 -8.143197 4.330915 3.434857 -4.504831 -1.775275 -5.162412 4.518519 7.042689 4.866728 -4.736808 2.250843 -2.424807 -0.187305 2.665266 0.769184 10.228184 4.638830 8.841126 7.459223 9.129170 -6.605463 -0.554417 4.902598 1.103733 0.054432 8.299994 -6.444065 -9.786634 0.913052 -1.743754 -12.185428 -6.782202 0.561186 15.346064 -9.977675 -1.093700 0.109787 0.848312 10.303981 -4.111710 2.240270 -7.584364 -0.823112 -3.519111 12.295662 1.390521 -0.311681 -1.475441 3.654809 2.906272 5.838061 0.492858 -7.323402 -3.726135 -11.549255 -3.994043 -4.851350 6.208014 7.449747 -13.095847 -2.217206 -3.882153 10.053782 -14.702699 -0.052003 6.761426 6.726793 10.366948 0.946162 -6.556936 1.090546 3.008411 0.715959 7.539313 -3.576332 1.660152 -2.170950 2.411581 0.232552 2.192193 1.512301 -12.029224 -7.066041 -0.422394 -2.124917 1.029248 3.464712 7.296578 -4.319370 6.884614 -4.085607 7.685677 -13.500390 -1.426047 -3.304512 -8.876901 -3.419063 7.602332 9.335430 7.348054 -4.691526 -5.374088 -3.016887 -12.837866 -12.173551 -0.055061 1.990952 2.073621 4.760794 -1.342587 6.709782 -5.820200 3.697026 5.080072 -3.049904 -2.497619 -0.649002 7.186971 -0.067542 -1.918604 -5.193761 -3.512424 -4.828095 -1.168524 10.991990 -0.822578 -14.115031 -17.169737 -6.645011 8.797103 -4.203601 0.978282 -6.602795 -1.831825 -8.554608 0.195125 -9.487811 1.073343 0.835885 -6.471299 -10.506849 1.538128 -1.434012 -3.101984 1.155306 -7.483269 -2.239345 8.853370 2.213254 4.605794 1.334351 -0.206416 -9.711453 -6.148696 3.138105 -7.680802 9.196698 5.346718 -2.574861 -7.910296 -4.192555 -9.902731 6.790602 -3.598758 2.892081 -3.292043 -0.222263 8.392823 -6.605567 0.521289 -7.530738 1.970346 3.709660 -16.467512 10.462491 7.659416 -2.668414 0.631485 2.049263 2.200798 5.000146 4.923401 -6.756780 -7.088740 -0.205602 -2.810573 0.589675 -1.753293 5.365822 -7.922328 0.028708 -5.744100 -2.997100 5.236122 4.052310 0.298005 1.993615 4.233529 -3.078741 4.463127 6.707645 7.624743 -1.993133 -7.341564 -18.760683 6.250958 -2.667860 -3.444394 -1.510853 -3.398327 -5.462228 2.706119 -3.073739 8.952302 1.069493 -3.990988 8.323402 -12.503445 -9.396991 -6.495809 -1.320387 -0.518882 0.042617 0.025943 -2.481966 3.526563 3.824705 -2.016211 -1.619352 -7.167389 0.199665 1.210823 10.085606 0.932287 2.658022 9.577605 3.991115 -4.706179 -1.848827 2.280829 -2.517157 -2.347021 -11.247487 -4.145857 0.245707 2.371133 -4.734167 0.884865 -2.766200 -1.684195 1.689621 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.249166 -0.108028 0.153700 0.290573 0.129205 -0.174062 0.166769 0.277384 0.039883 -0.772421 -0.462652 -0.044908 -0.047282 -0.097439 0.239607 0.030629 0.132004 0.340648 -0.604527 0.160466 0.274679 0.263964 0.098212 -0.149610 0.095699 -0.130013 -0.424648 0.112587 0.140742 0.491446 -0.319013 -0.018247 0.386717 0.017713 0.013051 0.411499 0.338874 0.002221 0.173472 0.038296 0.706173 0.081846 0.025112 0.341610 0.229072 0.466591 -0.190889 0.646174 0.109125 -0.288979 0.384013 -0.753204 -0.241840 0.029476 -0.356037 0.365737 0.599316 0.474575 -0.295221 0.344664 -0.083282 0.097664 0.113359 -0.419520 0.311153 0.489229 0.001794 0.225059 0.679426 -0.293125 -0.084282 0.162261 0.326682 0.071990 0.057410 -0.338269 0.050075 -1.030920 -0.094410 -0.568397 -0.017953 -0.141055 0.779328 -0.518155 0.230671 0.598960 -0.074400 0.308478 -0.135193 -0.051144 -0.406026 0.118059 0.053241 0.481181 0.006622 -0.018901 -0.130997 0.110829 0.153704 0.295428 0.029663 -0.178508 -0.781661 -1.000444 -0.430799 -0.111749 -0.001382 -0.017292 -0.630355 -0.117552 0.530231 0.278106 -0.721309 -0.038624 0.323518 0.314767 -0.203996 0.159389 -0.448113 -0.079886 -0.030397 0.070952 0.083580 -0.346709 -0.077161 -0.501419 -0.099593 0.035701 0.156590 -0.203338 -0.173085 -0.262902 -0.155656 0.059879 -0.075082 -0.043151 0.047432 -0.318979 0.297210 -0.309665 0.302477 -0.576452 -0.114034 -0.162767 -0.385482 -0.104988 1.094914 0.123621 0.349003 0.145275 -0.425227 -0.352454 -0.379083 -0.591591 0.193868 -0.133879 0.508381 0.115630 -0.041389 -0.032908 -0.095111 -0.195192 -0.122781 -0.255942 0.013832 -0.098444 0.319299 -0.292387 -0.113450 -0.698497 0.094454 0.600836 -0.252647 -0.047880 -0.244775 -0.040723 -0.332955 -0.430754 0.384133 -0.132191 0.211460 -0.098909 0.142093 -0.450923 0.197062 -0.326054 0.020677 -0.012911 -0.530792 -0.543481 0.096353 -0.155472 -0.087941 0.156970 -0.327523 0.050006 0.038721 0.411025 0.112834 0.065428 0.040698 -0.734341 -0.667471 -0.353773 -0.114904 0.381430 0.249472 0.119191 -0.330167 -0.161271 -0.369601 0.479851 -0.531654 -0.005921 -0.084982 -0.106749 0.495729 -0.201860 -0.130288 -0.631234 0.189268 0.193412 -0.729475 0.536955 0.266649 -0.342626 -0.201775 -0.444224 0.100129 0.344006 0.650971 -0.220103 -0.121793 0.246990 -0.178245 -0.045131 -0.439166 0.346245 -0.169084 0.343374 -0.411365 -0.227132 0.170765 0.455650 -0.085870 0.267528 0.320249 0.346151 0.042345 0.492449 0.157762 -0.183949 -0.274319 -0.801108 0.284209 0.660432 0.154745 0.206329 -0.492858 -0.215754 0.134989 0.212251 0.458710 0.543468 0.365728 0.416113 -0.336794 -0.435295 0.128938 0.086197 0.190821 -0.362066 0.176169 -0.209556 0.038797 0.123919 0.086079 0.211665 -0.267129 -0.653242 -0.063476 0.444696 0.173183 -0.027997 0.515100 0.028882 -0.373926 0.163931 -0.085311 0.282617 -0.022643 0.005793 -0.086215 -0.156808 0.035601 -0.267661 0.526217 -0.172384 -0.108576 0.202448 -PE-benchmarks/cutting-a-rod.cpp__main = 0.390178 0.097997 0.370439 0.318130 0.165148 -0.251693 0.352398 0.642858 -0.061652 -1.184767 -0.850549 -0.298023 -0.055666 -0.149515 0.383131 -0.026098 0.058014 0.554255 -1.227376 0.155309 0.597590 0.504497 0.367090 -0.381506 0.170214 -0.152851 -0.985091 0.212283 0.171993 0.791150 -0.410179 -0.093809 0.593385 0.142094 -0.146137 0.627251 0.383572 -0.002756 0.457468 0.023834 0.949824 0.247416 -0.137661 0.446851 0.273796 0.686582 -0.415904 0.695458 -0.385429 -0.446441 0.438344 -1.295308 -0.495869 0.048077 -0.321991 0.519235 1.151654 0.925265 -0.255131 0.580082 -0.221334 0.102886 0.164081 -0.819635 0.346490 0.882335 -0.050596 0.280007 1.044104 -0.501189 -0.118062 0.193207 0.284466 -0.088554 -0.187704 -0.483691 0.174433 -1.765438 -0.054004 -1.327762 -0.189257 -0.182265 1.299822 -0.734305 0.414716 0.967358 0.007487 0.439599 -0.236526 -0.068054 -0.497850 0.205096 -0.078951 0.892628 -0.020927 -0.022614 -0.177553 0.179810 0.404702 0.450064 -0.029069 -0.061710 -1.362692 -1.485983 -0.466614 -0.080070 0.035983 0.067574 -0.887552 -0.227811 1.024415 0.368296 -1.113784 -0.110082 0.571046 0.666870 -0.567084 0.333725 -0.874961 -0.080605 -0.142366 -0.006747 0.154358 -0.627984 -0.103139 -0.678680 -0.277050 0.015187 0.171057 -0.299822 -0.502027 -0.442725 -0.237412 -0.234523 -0.011694 -0.011219 0.066331 -0.320116 0.406351 -0.628457 0.466711 -0.946881 0.042669 -0.115523 -0.669842 -0.126269 1.292780 0.337214 0.115161 0.236871 -0.518986 -0.550309 -0.445398 -0.725190 0.280019 -0.033149 0.973434 0.013804 -0.091450 -0.096064 -0.182139 -0.250870 -0.279546 -0.291359 0.103884 -0.155637 1.110508 -0.408090 -0.192551 -0.997613 0.177430 0.910295 -0.523417 -0.130577 -0.350038 0.407708 -0.542252 -0.712307 0.603599 -0.158191 0.167623 -0.293938 0.340500 -0.677916 0.357138 -0.401323 0.104840 0.168723 -0.847934 -0.828851 0.177926 -0.173596 -0.315268 0.298835 -0.414847 -0.053931 0.254728 0.584902 0.176727 0.022418 0.124425 -0.966860 -0.979226 -0.598098 -0.150951 0.448445 0.492255 0.177928 -0.570088 -0.179829 -0.509142 0.860132 -0.367512 -0.034936 -0.442977 -0.013699 0.805597 -0.264420 -0.194879 -1.058074 0.215004 0.265490 -0.997075 0.857074 0.288585 -0.392905 -0.362933 -0.784290 0.067211 0.550046 0.932933 -0.342368 -0.291833 0.355673 -0.411713 -0.087911 -0.652342 0.524927 -0.315348 0.521492 -0.528641 -0.280723 0.247938 0.693601 -0.177354 0.698675 0.569715 0.620038 0.188890 0.649761 0.245138 -0.569903 -0.343682 -1.044306 0.448650 0.920582 0.263557 0.038434 -0.614842 -0.485476 0.250399 0.551341 0.683240 1.165835 0.411277 0.593023 -0.369773 -0.606112 0.202555 0.318107 0.350595 -0.602815 0.029918 -0.209868 0.140328 0.405614 0.023915 0.605527 -0.672546 -1.231363 -0.222592 0.843073 0.202069 -0.136352 0.813407 0.046276 -0.517183 0.241648 -0.172330 0.504545 -0.067926 0.273542 -0.060325 -0.212352 0.025120 -0.361602 0.845613 -0.112124 -0.343736 0.429978 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 2.613081 -0.255460 -1.404300 4.590958 0.241041 -1.040781 0.243939 1.250647 -0.617881 -7.896195 -4.608321 3.246080 0.806746 1.078328 1.108659 2.094871 -0.027149 0.692621 -7.126291 1.812966 2.791567 1.148927 0.507289 -0.657994 1.015098 -2.018528 1.611755 0.432480 1.312338 4.554823 -2.453303 2.174229 3.965714 -0.559072 1.664325 3.265844 -0.188220 0.358938 -1.516996 -0.704876 5.785462 2.418863 0.181258 2.305761 0.248739 4.496707 0.380234 4.422267 0.107758 -3.437690 2.195894 -0.363791 -2.715819 -0.388944 -2.860852 2.476971 3.215829 2.345508 -2.141380 1.441308 -0.762851 0.034444 1.154258 -0.521099 4.406878 2.000399 3.225018 3.047240 4.678780 -2.925204 -0.436158 2.434823 1.261282 0.350448 3.543042 -3.374254 -3.553748 -1.059735 -0.503015 -5.525503 -2.289701 -0.293001 7.091062 -4.649668 0.076056 1.183293 0.092757 4.342920 -1.738344 0.562726 -3.487818 -0.067169 -1.146181 5.478815 0.484939 0.320442 -0.566806 1.597563 1.332363 2.826247 0.317390 -3.109846 -2.554410 -5.719206 -1.786757 -2.032353 2.139185 2.778688 -5.607634 -0.937636 -0.963056 4.715979 -6.565774 0.246040 3.051019 2.804991 4.008713 0.675451 -2.738027 0.291896 0.947896 0.454326 2.566422 -2.334737 0.284007 -1.188224 0.954798 0.031661 1.373215 0.073498 -5.156281 -2.965922 -0.294357 -0.574010 0.299408 1.146045 2.769876 -2.660730 3.005215 -2.050395 3.099874 -5.739902 -0.904058 -1.644111 -4.092365 -1.494681 4.989745 3.203232 3.520587 -1.384951 -2.320597 -1.684087 -5.397247 -5.681641 0.648527 0.422879 1.502904 2.195630 -0.485571 2.347546 -2.299253 0.707816 1.402343 -1.836364 -0.954394 -0.466724 3.041169 -0.484515 -0.736261 -3.196140 -1.152108 -0.577460 -0.331449 3.815436 -0.862811 -5.864141 -6.704200 -3.427543 3.844899 -1.721795 0.848982 -2.393554 -0.471759 -3.687041 0.145439 -4.150303 0.751969 0.185464 -3.221130 -4.727099 0.640257 -0.782533 -1.227900 0.694134 -3.237195 -0.614814 3.033942 1.502938 1.631416 0.434794 0.063476 -4.833700 -3.569069 0.842497 -2.887396 4.116292 2.031978 -0.830668 -3.283542 -1.809913 -4.186340 3.220895 -2.655039 1.116698 -1.401440 -0.218850 3.978305 -2.846559 0.212677 -4.006362 1.381165 1.635488 -7.136435 4.997337 3.301472 -1.639378 -0.142305 0.061197 0.911541 2.571495 3.179444 -2.527844 -2.870081 0.566077 -1.276588 0.061126 -1.369577 2.749036 -3.120353 0.829592 -2.883046 -1.684236 1.973599 2.436635 0.063009 1.374223 2.000080 -0.453903 1.461232 3.473964 3.080340 -0.816014 -3.657428 -8.524410 2.736456 0.305955 -1.024519 -0.132438 -2.253575 -2.443259 1.488975 -0.933824 4.166945 1.290375 -0.673853 3.709222 -5.346484 -4.298529 -1.974354 -0.409317 0.242491 -0.497985 0.175171 -1.630157 1.434292 1.381064 -0.431682 -0.367490 -2.876448 -0.719949 0.455946 4.409867 1.020988 1.224824 4.526560 1.594997 -2.035817 -0.472833 0.767208 -0.252284 -0.855007 -4.057965 -1.741048 -0.305367 0.878988 -2.110199 1.360440 -1.049588 -0.674799 1.015501 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.391494 -0.061148 0.289531 0.234754 0.171102 -0.209205 0.204786 0.491079 -0.059407 -0.961727 -0.741007 -0.336630 -0.091362 -0.171015 0.434937 0.037744 0.211128 0.313815 -1.064932 0.205881 0.424325 0.291258 0.141850 -0.141305 0.167525 -0.203389 -0.851950 0.164448 0.097515 0.580166 -0.414682 0.011237 0.446441 0.073197 0.084840 0.478154 0.147707 -0.076874 0.502498 0.113514 0.919024 0.135990 -0.006361 0.336175 0.379907 0.560209 -0.481726 0.798934 -0.088642 -0.331924 0.633259 -1.176933 -0.332586 0.212924 -0.427771 0.393781 0.913878 0.589440 -0.353176 0.454689 -0.244220 0.162254 0.108242 -0.635273 0.481695 0.672846 0.060048 0.206558 0.804397 -0.270564 -0.059355 0.160884 0.339296 0.002300 -0.285783 -0.456825 0.299521 -1.529143 -0.006551 -0.959472 0.010375 -0.233304 1.035827 -0.550144 0.296686 0.763771 -0.101371 0.386319 -0.208096 -0.071305 -0.466432 0.181942 0.015894 0.545318 -0.125740 0.001270 -0.081756 0.148697 0.196404 0.368779 -0.111136 -0.119300 -1.221034 -1.334250 -0.555042 -0.025171 0.052136 -0.073517 -0.809813 -0.075334 0.806292 0.159066 -0.823642 -0.060348 0.353400 0.434901 -0.565668 0.479055 -0.794390 -0.294472 -0.140079 0.238051 0.096203 -0.353072 -0.029345 -0.962880 -0.140540 0.107448 0.249952 -0.294339 -0.257169 -0.279484 -0.158622 -0.118759 -0.156354 -0.005001 0.056455 -0.243133 0.381712 -0.415245 0.380983 -0.829466 -0.068884 -0.359357 -0.478331 -0.055614 1.270203 0.415980 0.189759 0.385060 -0.452599 -0.373632 -0.500340 -0.555907 0.121173 -0.196474 0.806547 -0.028735 -0.041952 -0.074766 -0.061494 -0.271736 -0.307232 -0.326032 0.041448 -0.328882 0.670294 -0.303247 -0.195307 -0.830362 0.162096 0.860319 -0.604900 -0.143324 -0.295194 0.272953 -0.419017 -0.572058 0.449776 -0.135436 0.273988 -0.150342 0.376036 -0.626533 0.307407 -0.367472 -0.052316 -0.023708 -0.681070 -0.623378 0.082110 -0.151975 -0.138329 0.108505 -0.338677 0.029570 0.269818 0.678092 0.197917 0.114553 0.002964 -0.848473 -0.897971 -0.529809 -0.096072 0.445962 0.442124 0.052894 -0.383289 -0.161781 -0.460127 0.697124 -0.426678 -0.046949 -0.185481 -0.193069 0.590949 -0.216800 -0.188013 -0.790710 0.169487 0.145034 -1.062567 0.659177 0.247576 -0.487130 -0.326989 -0.870167 0.200141 0.380878 0.814769 -0.102991 0.016178 0.214973 -0.227021 -0.070118 -0.570062 0.487669 -0.184246 0.426260 -0.537233 -0.315480 0.339124 0.568212 -0.109825 0.459293 0.368359 0.627572 0.218258 0.597023 0.110072 -0.422278 -0.252321 -1.070538 0.263407 1.073498 0.207658 0.165991 -0.554055 -0.415428 -0.033398 0.365731 0.596013 0.942446 0.529814 0.480578 -0.221282 -0.510932 0.081196 0.289195 0.163890 -0.523080 0.043709 -0.216123 0.020629 0.249868 0.179602 0.509261 -0.524500 -1.210956 -0.180558 0.601378 0.228968 -0.120347 0.606442 0.078059 -0.424037 0.139045 -0.068811 0.426883 0.101427 0.184898 -0.181757 -0.280200 -0.042603 -0.324275 0.650965 -0.070216 -0.037246 0.298772 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 0.671506 0.461971 -1.089876 2.634331 -0.516085 -0.299175 -0.032144 0.189268 -1.128627 -4.248098 -2.719716 1.396795 0.612705 1.130901 0.628992 1.047239 -0.411588 0.172871 -4.452740 0.598168 1.893268 0.391991 0.540626 0.041973 0.455923 -1.102637 0.837214 0.361500 0.642579 2.536568 -1.156562 1.594037 2.190366 -0.405502 0.617626 1.528322 -0.797555 0.555317 -0.930874 -0.123626 2.580614 1.030460 0.031600 0.554802 -0.414841 2.390523 0.292255 1.407030 -0.206192 -2.105718 1.061590 0.869823 -1.186658 -0.280698 -0.974866 0.800548 1.699255 1.652529 -0.812530 0.621206 -0.766248 -0.134327 0.547472 -0.201440 2.441333 0.860344 2.125080 1.548415 1.782851 -1.573344 -0.046964 0.953147 -0.305642 -0.508256 1.357054 -1.527191 -2.017907 -0.414059 -0.311837 -3.919610 -1.793901 0.613905 3.632001 -2.326503 -0.438052 0.026375 0.047373 2.412929 -0.998136 0.578602 -1.656183 -0.391507 -1.002607 2.869354 0.748349 -0.262317 0.010664 0.965587 1.006622 1.426281 -0.315032 -1.499118 -1.104623 -2.920459 -0.931122 -0.965988 1.621088 2.102213 -2.897726 -0.710777 -0.417778 2.326135 -3.513403 0.225300 1.721288 1.915742 1.505229 0.188490 -1.986110 0.386193 0.459973 0.224195 2.359854 -0.924673 0.602515 -0.286637 0.498137 -0.174132 0.612758 0.343377 -2.873050 -1.886189 -0.141054 -0.967784 0.323144 0.764948 1.804099 -0.263981 1.743066 -1.078817 1.791790 -3.232751 0.238269 -0.636861 -2.124423 -0.798346 1.045283 2.650280 0.981576 -1.387021 -1.292435 -0.362778 -3.084654 -2.693558 0.160713 0.951150 0.767121 1.100093 -0.522593 1.772504 -1.308511 0.943986 1.148275 -0.678858 -0.589781 -0.055633 2.156484 0.389689 -0.529444 -1.408265 -0.778986 -1.398479 -0.495965 2.504095 -0.301591 -2.675069 -4.004114 -1.628956 2.122017 -0.904965 0.097762 -1.515727 -0.415577 -2.056964 0.118945 -2.304176 -0.190942 0.405755 -1.495884 -2.439983 0.291047 -0.207015 -1.300584 0.326081 -1.804460 -0.786430 2.485664 0.324726 1.316105 -0.091032 0.237856 -1.713775 -1.292170 0.844731 -2.144964 1.354042 1.542676 -0.653701 -2.147090 -0.857419 -2.144508 1.481562 -0.056393 0.725951 -1.228674 -0.059463 1.973012 -1.571477 0.400723 -1.273595 0.381414 1.034464 -4.512273 2.655438 1.781631 -0.304430 0.290071 0.682656 0.342122 1.218343 0.894386 -1.486866 -1.580073 -0.191303 -0.855189 0.277711 -0.141938 1.399044 -1.916373 -0.394976 -1.061427 -0.544812 1.194514 0.945655 0.374154 0.976028 1.074206 -0.466591 1.289397 1.307295 1.555330 -0.929918 -1.279464 -4.348293 1.686265 -0.625878 -0.876188 -0.367138 -0.588887 -1.258789 0.805791 -0.700840 1.980691 0.360837 -1.389193 1.900660 -2.559810 -2.102929 -1.791101 -0.193144 -0.100619 -0.037203 -0.297918 -0.626791 1.091712 1.144650 -0.620415 -0.030770 -1.664743 -0.255087 0.197859 2.356173 0.312540 0.917738 2.365117 0.685544 -1.104121 -0.686920 0.448810 -0.541090 -0.444024 -2.190327 -0.992492 0.149778 0.693621 -1.032044 -0.145470 -0.727937 -0.665590 0.855616 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.357340 0.247306 0.699147 0.065775 0.373708 -0.490020 0.449968 0.732413 -0.199360 -0.831036 -0.592455 -0.319104 -0.200740 -0.422284 0.215870 -0.277245 0.100734 0.596679 -0.977517 0.229928 0.427129 0.586878 0.226151 -0.643040 0.139204 -0.037509 -0.969540 0.447051 0.077008 0.578729 -0.365007 -0.485536 0.370467 0.314779 0.011829 0.690099 0.648225 -0.014498 0.608706 0.028138 0.925398 0.256384 -0.114853 0.500984 0.653417 0.546128 -0.237739 0.217035 -0.613808 -0.249148 0.063725 -1.147726 -0.475491 -0.142787 -0.319067 0.455988 1.087620 0.917713 -0.376774 0.672753 -0.065520 -0.018244 0.129770 -0.691251 0.119093 0.705885 -0.400469 0.066133 1.115829 -0.410536 -0.323404 0.271910 0.571808 -0.022694 -0.390781 -0.314539 0.173749 -1.800997 -0.035074 -1.361890 -0.110086 -0.104000 1.083724 -0.480355 0.609949 1.071127 -0.058312 0.079574 -0.185027 -0.479184 -0.388285 0.230120 -0.195383 0.931555 -0.094288 0.034902 0.060305 0.167721 0.561054 0.612950 -0.154004 -0.001540 -1.147377 -1.507196 -0.224320 -0.017021 -0.230624 -0.315920 -0.457904 -0.454170 1.113644 0.440643 -0.804006 -0.208966 0.587454 0.439807 -1.013672 -0.160991 -0.679014 0.022925 -0.330001 -0.189566 0.012283 -0.574031 -0.356537 -0.305861 -0.325808 -0.070859 0.129119 -0.322649 -0.421051 -0.330120 -0.227873 -0.260451 -0.157936 -0.328668 -0.379429 -0.391915 0.223288 -0.691104 0.421879 -0.656061 0.278398 -0.053200 -0.594381 0.013531 0.797046 -0.032023 -0.115063 0.257981 -0.249104 -0.487667 -0.086936 -0.662771 0.577209 -0.083247 0.958761 -0.247082 -0.047843 -0.375691 -0.109656 -0.642105 -0.203094 -0.204666 0.222713 -0.263692 1.215786 -0.452592 -0.155075 -0.837737 0.351339 1.167580 -0.217526 -0.488422 -0.595303 0.573242 -0.127861 -0.689611 0.419924 -0.013654 -0.044033 -0.069095 0.274628 -0.454592 0.518973 -0.279433 0.370239 -0.087806 -0.631966 -0.612378 0.090211 -0.250573 -0.181546 0.199679 -0.192013 -0.055201 0.009833 0.314551 -0.021047 -0.051537 0.242849 -0.798801 -0.862798 -0.602274 0.338926 0.209740 0.385525 0.434549 -0.538455 -0.008970 -0.344331 0.743359 -0.126892 -0.179007 -0.284418 -0.102183 0.946313 -0.025756 -0.097328 -0.844349 0.253555 0.293116 -0.585728 0.788333 0.269363 -0.450324 -0.599956 -0.720390 -0.185091 0.599150 1.010577 -0.333972 -0.269970 0.524660 -0.499550 -0.149389 -0.646046 0.433310 -0.044154 0.893771 -0.605652 -0.409667 0.068738 0.728145 -0.200380 0.723443 0.303158 0.635058 -0.078792 0.787956 0.066073 -0.270713 -0.347103 -0.584330 0.404313 0.697844 0.485880 0.001369 -0.285723 -0.603027 0.161419 0.691682 0.609583 1.237518 0.185114 0.462853 -0.175181 -0.527268 0.372397 0.357035 0.486933 -0.770642 0.071999 -0.249457 0.075691 0.195220 0.060106 0.720871 -0.400771 -1.229769 -0.352760 0.555541 0.329356 -0.366714 0.716861 -0.187499 -0.454504 0.356975 -0.161747 0.831321 0.084384 0.398308 -0.135689 -0.517470 0.051309 -0.162829 1.058371 -0.004843 -0.164658 0.588700 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 2.807412 0.110464 -1.188138 3.991231 0.173776 -1.450840 0.400457 1.754965 -0.652706 -7.338737 -4.424299 2.741293 0.593199 0.227317 1.477388 1.773305 -0.011034 0.902264 -6.956847 2.017912 2.852303 1.311874 0.264919 -0.814540 1.116015 -1.687312 -0.212510 0.158161 1.053538 4.336452 -2.459601 1.944674 3.599336 -0.377848 1.432138 2.967643 -0.608973 0.328873 -0.057556 -0.433926 5.508872 2.290206 0.367258 2.276622 0.700580 4.069182 -1.127646 4.987073 -0.247089 -3.134375 2.806681 -1.182849 -2.465040 0.491707 -2.501155 2.546710 3.504728 2.158407 -1.861772 1.602821 -1.346797 0.330240 1.077109 -1.112696 4.232171 3.049176 2.332938 2.818726 4.881108 -2.173944 -0.125813 1.855951 1.272960 -0.189524 2.709812 -2.836717 -2.661648 -1.883952 -0.521789 -5.310135 -1.732663 -0.582589 7.508149 -4.501129 0.538157 1.622186 0.876159 4.136926 -1.752320 0.530804 -3.050562 0.272815 -1.421293 5.339210 0.082155 0.867020 -1.090139 1.239711 1.124537 2.416231 -0.307013 -2.384204 -3.420389 -5.871740 -2.155131 -1.497775 1.690005 2.177840 -5.875582 -0.566435 0.296505 4.128287 -6.450955 0.094551 2.610002 2.556965 2.786957 2.311134 -3.438701 -0.167735 0.469989 0.584533 1.713607 -2.038030 0.049680 -2.589191 0.106245 0.157298 1.425523 -0.382888 -4.972471 -2.353320 -0.514639 -1.063665 0.136091 1.281875 2.421528 -2.471813 2.750870 -2.127741 2.650805 -5.553564 -1.285069 -1.952418 -4.172075 -1.147449 5.330329 3.354884 3.152433 -0.754989 -2.137234 -2.163378 -5.288673 -4.867206 0.469360 -0.438201 2.195932 1.529382 -0.267240 1.438497 -2.005713 0.431399 0.797886 -1.978949 -0.588057 -1.034446 4.170884 -0.873421 -0.804495 -3.623460 -1.175190 0.218426 -1.181762 2.738041 -0.731386 -4.357347 -6.268027 -3.276991 3.557923 -1.393113 1.102906 -2.468399 0.413548 -3.307888 0.070053 -3.575311 0.537257 0.214878 -2.877469 -4.392191 0.491935 -0.559927 -1.342654 0.134679 -2.853233 -0.478754 3.322231 1.945849 1.538055 0.687296 -0.112581 -4.688728 -3.848133 0.255557 -2.366431 3.219525 2.687872 -0.584376 -2.866786 -1.618962 -4.290910 3.238336 -2.990463 0.803839 -1.239261 -0.387369 4.042298 -2.623157 -0.540224 -4.324757 1.041896 0.942451 -6.903755 4.505829 2.295669 -1.902381 -0.296444 -1.277415 1.254307 2.581842 3.492002 -1.944237 -2.065919 0.545367 -1.417460 -0.080237 -1.429677 2.835542 -3.156024 1.427162 -2.601049 -1.374744 2.279505 2.626713 -0.202497 1.492477 1.668953 0.001100 2.251218 3.008823 2.884919 -1.491964 -3.310255 -8.151272 2.197928 0.792135 -0.634155 -0.371006 -2.376737 -2.643131 1.108063 -0.222196 4.062820 1.495405 0.279470 3.264873 -4.760880 -4.073466 -1.339430 0.439112 0.228300 -1.097640 -0.128231 -1.365301 1.152358 1.874693 0.232693 0.612413 -3.363377 -2.248978 0.091655 4.270994 0.930704 0.575077 4.248944 1.743763 -1.994296 -0.225092 0.421145 0.339869 -1.116150 -3.261950 -1.445235 -0.671652 0.511689 -2.173422 2.293078 -0.670818 -0.544407 1.218463 +PE-benchmarks/channel-assignment.cpp__main = -1.214435 0.611062 -0.461590 -0.655459 1.611640 -0.859251 0.240151 0.871079 0.821460 0.273548 -2.000002 -1.137853 -0.634954 -1.846068 0.460247 0.433746 0.760454 1.534940 -0.534767 0.027831 1.327874 -0.205831 -0.241768 -1.510138 0.350921 0.230373 -0.643829 -0.248031 -0.569382 0.150226 -0.809284 1.016815 1.998921 1.166027 1.621271 1.468504 0.414218 2.677969 0.488134 1.399361 0.324610 1.476440 -0.391541 -2.823698 1.451689 -1.281529 -0.066900 -1.544197 0.259462 -1.204372 3.304601 1.010380 0.317681 -0.014843 -1.363971 -0.905523 1.696120 1.358915 1.382716 1.382370 -1.030882 1.279198 -0.551608 -0.264777 -1.117127 1.482714 1.553203 -1.660360 -0.526503 0.585148 2.806991 -2.197222 -2.217490 -0.380528 -0.502681 -0.302184 1.182926 0.202388 0.510634 -0.885843 -2.026321 0.104501 -0.891730 1.567583 -0.632397 -0.612213 -2.082630 -0.594023 1.102345 -0.705082 -1.133914 0.798041 -0.417629 1.593753 -0.674020 0.384948 0.034592 0.140856 -1.075261 -0.883359 0.709716 0.413023 0.268536 2.191155 -1.420029 -0.414112 1.949859 0.877619 -1.004960 0.397913 1.688935 0.667538 0.488444 0.088114 -0.219841 0.643802 -1.917688 0.653045 0.138818 0.080061 0.480000 0.031013 0.346304 -1.255190 0.178020 -1.066258 1.446365 1.147250 -0.758926 -0.514148 1.032401 -0.790078 -1.601075 -0.697430 1.373679 0.902316 -0.239890 0.106208 -0.394155 -0.865101 -0.904172 -1.245188 -1.231332 1.328707 -0.720267 -0.407122 -0.752484 -1.325459 -0.555751 0.157954 -0.331706 0.312695 1.289744 1.041466 -1.115914 -1.381931 -1.249910 0.546683 2.508658 1.063325 -1.581505 0.085706 0.500206 0.883039 1.196122 0.195671 0.397188 -0.111378 -0.042189 0.147260 -0.921672 -1.108580 1.334729 1.151917 1.388371 -1.605604 0.847557 0.855890 -0.595964 3.096471 0.383209 -1.366677 -0.484195 1.435396 -0.225545 -0.554281 -0.047016 0.113936 -0.400115 -0.929222 0.866257 0.108966 -1.985907 -1.504611 0.095032 -1.675375 1.191234 0.355274 0.458612 -0.313904 -2.259974 0.386997 3.105589 0.170959 -0.434638 0.075025 -0.620172 0.483996 -1.849684 0.652438 0.569106 -0.208403 -0.833533 -0.763705 0.419440 2.187612 -1.337382 -0.476073 0.737323 -0.565636 0.470070 -1.191137 0.534644 -2.793059 -1.326754 0.199866 0.577727 1.253644 0.285389 -0.031624 2.093852 -1.088393 -0.299126 3.446691 1.629331 0.078875 1.793703 -0.384439 1.092673 -1.243969 1.319133 -0.130127 1.393811 -0.954166 -0.811565 -0.010301 1.531201 -0.796489 1.485045 -1.125658 0.370102 0.838676 -0.868387 -0.406735 1.386878 0.518490 0.958244 -0.342474 -0.340802 -0.532159 0.369654 -0.023409 0.183045 1.610394 0.211117 -1.838084 -0.737681 0.450633 -1.075016 0.141338 0.779875 -0.236886 2.165684 -1.116128 0.830869 0.293553 -0.518768 -1.141403 -1.134744 0.347308 -0.875534 -0.500425 1.419778 -1.650378 -0.753637 -0.739658 1.148416 -1.270983 0.685919 -0.941262 0.993225 1.159270 0.182091 0.892279 0.476928 1.189573 0.154501 -0.568326 -0.057846 2.033667 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -3.527424 2.858544 1.687900 -1.969339 5.831671 0.242151 2.053716 1.842063 -1.965856 3.771466 -5.635050 -1.480757 -1.591261 -5.118575 0.069982 -2.953725 1.000898 0.153878 -0.997435 1.170933 2.098204 -2.785680 -0.047584 -2.804466 -0.478777 -5.581014 -1.667602 0.249847 3.949548 -0.900342 0.782774 0.322909 6.615623 0.619535 4.998668 3.881297 1.742174 4.507057 0.522250 -0.751606 -0.516668 3.866690 -2.638372 -3.978598 -0.408917 -3.113401 -3.311732 -1.922124 1.357452 -2.563279 -1.043566 3.679137 -0.478677 0.618600 -3.243295 2.408063 4.758234 -0.369775 5.992376 1.424853 -2.117808 -0.837379 -3.278562 3.540670 -2.144367 0.995854 -0.549796 -3.420783 0.602812 0.382395 -1.216440 -1.755111 -1.991403 2.803185 2.305443 -3.676718 1.690138 -1.236907 -5.709338 -4.563743 -3.155890 1.210520 0.586361 4.527908 0.122848 -0.132199 1.693210 0.753850 0.393667 -5.737512 -0.801415 4.967097 -2.879174 -1.339689 -2.136093 4.084639 0.437607 1.757410 -2.879339 -2.752387 1.152088 -0.087237 0.628565 -3.705133 -0.465171 -4.728153 1.100017 0.216930 -0.422993 3.091759 2.318382 2.083206 3.128378 3.869990 -5.228887 0.891176 -4.333225 1.678555 -0.953210 -0.137805 -0.206715 1.071387 0.555511 1.343797 4.274180 -5.777599 2.557077 2.337673 -1.764629 -4.586923 -0.282279 -4.050022 -4.020046 -0.772644 1.996076 1.369669 1.023104 -2.444848 0.404907 -0.879977 -1.285674 -1.814972 0.424777 4.916338 -5.239856 -0.575538 -0.443552 -0.420165 -2.521307 3.518688 2.258286 1.933368 5.459505 2.663578 -1.904389 3.166035 -4.251173 0.595020 7.194534 2.158958 -4.634672 3.401173 -3.551972 0.090140 2.112239 2.039314 2.867150 0.117866 -4.833653 -2.338214 2.058775 -1.252725 5.537985 1.463337 1.429530 -3.302831 6.322675 -0.355907 -3.063999 6.176119 3.398268 -5.272211 2.575028 2.865673 -4.512578 -0.732175 2.739637 -3.610338 -0.877164 -3.419593 0.273776 1.471760 -2.789243 -1.081840 0.174573 -5.092218 5.818971 0.623592 1.593304 1.202935 -3.410468 -5.462073 6.234306 -0.254467 -0.452734 -2.131936 -1.828087 -3.829094 -5.455285 0.746276 0.050617 -3.173045 -1.711364 -4.573379 0.815714 3.917829 -1.578136 3.187269 -5.287049 -1.184748 1.903601 1.831631 2.388786 -2.144302 -2.998095 -0.352022 -0.771992 2.222559 -2.980268 4.233768 5.781686 -2.016867 4.318805 -1.714314 -3.285151 1.150979 2.624651 -4.363658 4.999107 -1.074272 3.894104 0.262370 3.591478 -3.438389 -1.300352 0.074242 -1.731638 -1.779583 2.349248 -3.419706 0.100978 1.280829 -3.594912 -2.722965 1.521186 -0.219975 1.145173 -0.111584 0.450841 -3.782302 -0.042996 -2.270275 0.993491 3.506759 0.226914 -3.410815 0.903753 1.036250 -0.038202 -0.678451 0.495460 0.130258 3.534535 -4.476461 -0.458557 0.224564 0.267318 -3.582271 -6.573631 0.777559 -4.241771 -3.704344 3.475133 -5.573793 0.217680 -3.449714 -0.581434 -5.620218 -1.925930 1.492051 6.438964 1.414826 -2.984505 1.458743 -0.420497 3.527831 -0.123455 1.410062 0.742220 2.331788 +PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.950011 0.799052 1.021562 -0.994679 2.859157 -0.014126 0.463784 1.671268 0.251459 0.709871 -2.117668 0.010298 0.134554 -0.961294 0.401792 -0.752615 -0.146896 0.562038 -1.064381 -0.524264 0.664069 0.824520 -0.218860 -1.187509 -0.154815 -1.195095 -0.839965 0.035815 -0.100123 0.813761 -0.381805 0.422645 1.493752 -0.268225 1.080359 1.080614 1.735814 1.232746 -0.723993 1.631665 1.267336 0.600942 -0.464966 -1.508384 0.189567 -1.111612 -1.523599 -0.520512 0.275912 -1.909712 1.037360 0.838706 0.448960 -0.249123 -0.021928 1.162886 0.670933 -0.267678 1.011695 1.124112 -2.050841 0.130246 -1.216922 1.758700 -0.624234 2.278403 -0.138516 -2.060773 -1.432300 1.276360 0.951921 -0.996494 -1.149845 -0.190314 0.158714 -0.444670 0.872794 -0.234646 0.886866 -0.194894 -0.449529 0.804809 -0.056840 0.939073 -0.048533 -0.371146 -0.561677 -0.406079 0.467524 -0.817915 -1.279527 1.930667 -0.996359 0.515512 -2.387318 -0.954635 0.329659 0.143890 -0.089355 -1.469978 0.696277 0.837921 -0.047433 -0.421458 -0.647241 -1.097390 0.767243 1.590084 -0.347647 0.800663 -1.393211 0.600150 0.133563 0.315959 -0.163191 1.218963 -1.532221 0.801842 -0.811472 0.208210 -0.444479 -0.356050 0.978276 0.713675 0.406087 -0.732032 1.569983 0.532404 -1.353939 -0.381022 0.556357 -0.558432 -1.521154 0.007270 0.480435 0.882228 -0.088115 0.114770 0.430906 -0.796353 -0.278488 -1.531022 -0.700191 -0.198040 -1.297343 -0.363232 -0.113200 0.097867 -0.883508 1.148404 0.629857 0.088318 1.568880 0.591456 -0.080641 -0.247269 -1.346187 0.634321 2.083772 0.502427 -1.176671 0.566402 -0.968619 0.536523 0.622745 0.118634 -0.627038 1.656487 -0.752830 -0.095968 -0.971943 -0.937668 1.582082 1.899795 0.444161 -1.979193 0.370929 -2.004395 -0.334152 1.938065 2.087775 -2.004863 -0.219661 1.497500 -0.332306 -0.999550 0.466372 -1.085049 -0.990455 -0.529936 0.279461 0.420892 -1.163692 -1.160153 0.710436 -1.252639 1.325050 0.290575 0.028483 -0.501756 -1.080397 -1.142767 2.262644 0.157741 -0.260045 0.155100 -0.104542 -0.338293 -1.670431 0.119542 1.263794 -0.552772 -0.918822 -0.796649 0.283350 1.445538 -1.611607 0.380287 -0.582477 -0.430730 0.539872 -0.751101 0.935808 -1.991071 -0.811675 -1.375400 -0.361511 0.705494 -1.202053 0.010475 1.687779 -0.494359 1.654617 1.121277 -1.527071 -0.958261 1.450306 -0.226370 1.332980 -0.032398 0.493641 0.320464 1.239592 -1.180823 -0.515009 -0.614066 -0.455200 -0.729281 1.603621 -1.428419 0.232046 0.299437 -1.185410 -0.407657 1.437547 0.750832 0.295079 -0.533802 0.140921 -0.935393 -0.183675 -0.948485 0.049408 1.007489 -0.999994 -1.770110 -0.236353 0.721813 -2.085995 -1.039256 0.483300 0.302850 1.746782 -0.992545 0.852038 0.797958 -0.222574 -2.762640 -1.081981 -0.251084 -1.355322 -1.198758 -0.320041 -1.190807 -1.395279 -0.712921 0.772207 -1.334976 -1.728166 0.734393 1.434458 0.559011 -0.115140 0.762820 0.235991 1.054139 0.337517 0.095472 0.309147 0.576708 +PE-benchmarks/aho-corasick-algorithm.cpp__main = -7.941823 1.822466 -3.874092 -6.047823 19.134284 -2.945687 1.323582 10.352176 2.747649 4.697835 -14.678649 -5.967198 -2.362960 -13.659969 2.483952 0.731622 6.665740 4.011082 -6.998896 -0.981097 5.148154 0.472007 1.532429 -8.290060 -0.517411 -4.979257 -4.646029 1.154060 0.763520 -0.499261 -4.600818 4.517703 17.095093 2.865766 11.315683 6.890072 8.741094 12.094247 2.897081 0.004218 6.375320 6.182427 -3.158807 -13.234060 2.108200 -8.452437 -10.770131 -5.245543 3.020850 -9.846744 6.691067 8.280997 3.086136 0.170952 -7.661953 2.004149 10.795358 -0.843528 11.498411 7.080072 -11.554996 -1.118971 -3.692959 6.069220 -6.446668 7.709001 0.421834 -11.254413 -7.517141 9.677170 5.793950 -11.242049 -11.739499 -1.143045 4.035151 -5.091123 8.268595 1.699372 9.025127 -9.848910 -8.375673 5.024591 -4.689558 9.723851 -0.136202 -0.650394 -2.116387 -3.666778 4.125939 -9.126836 -4.288005 8.374582 -7.827530 2.613633 -7.503813 2.984480 -1.441510 0.138436 -7.891863 -13.099804 3.549394 0.283277 0.110906 1.144009 0.071921 -6.896293 6.600069 6.385236 -0.662135 8.461181 5.235947 3.849490 4.269752 3.961173 -5.757359 1.774323 -13.506899 4.437495 -4.905655 -1.257068 -3.107574 -0.870787 8.871724 2.437632 4.292441 -12.007625 11.851437 9.210381 -6.449404 -4.846235 3.224162 -4.856467 -10.725766 0.308395 7.385684 1.778396 2.620952 -0.453904 2.849359 -4.806974 -6.018615 -3.317430 -6.095349 7.091868 -12.256280 -1.173656 -0.614777 -3.290259 -4.601192 6.173630 3.204478 0.851677 13.192646 3.300667 -9.705151 2.664600 -10.878428 6.395574 20.309853 3.100908 -10.717437 6.199184 -7.022357 4.131198 4.506344 4.072163 2.100365 -1.213118 -4.667680 1.139021 -0.387165 -3.475629 12.528281 2.361971 7.105162 -15.456596 5.760108 -2.496930 1.498259 20.180800 6.963813 -14.862382 1.865257 13.429682 -4.394992 -1.585550 3.118552 -8.061141 -6.466835 -9.454135 5.967587 3.841370 -11.532561 -6.409328 2.700258 -10.899470 8.996745 2.808338 -3.848013 -1.191582 -10.723817 0.012899 22.366646 0.803582 1.069391 1.054754 -6.206922 0.237273 -15.991759 0.447325 4.343585 -4.612265 0.329591 -6.559805 -0.364644 14.370724 -7.421368 3.344216 -12.263252 2.939221 5.351981 -1.591969 3.287637 -11.126877 -7.334901 0.408246 -2.989368 3.278891 -9.828470 1.687838 8.235327 -6.866663 8.498152 4.775017 -3.356805 0.823855 6.857671 -4.063433 12.148404 -1.953685 13.973578 2.392618 11.418611 -7.816768 -2.122902 -5.031775 -1.707398 -9.141616 10.102916 -13.772609 -0.210213 8.499482 -0.963373 -12.010614 7.166924 5.049617 3.637918 -3.072860 -4.462062 -4.678640 1.191164 -3.018388 6.953996 7.431244 -3.507244 -11.585918 -1.645162 10.258324 -7.684590 -1.453342 4.404030 0.794882 14.982187 -9.930222 4.409752 4.319424 4.348996 -12.015807 -12.521609 3.785998 -6.840402 -1.601126 5.568840 -15.346749 -9.337386 -5.393145 5.991646 -8.448230 0.288133 2.714079 13.378596 4.419725 -5.757759 5.144271 2.251386 2.846502 -0.419573 2.066141 2.408039 5.694236 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -12.019587 7.369631 5.987308 -5.352412 15.422466 0.360576 7.575455 5.279642 -3.228240 12.175950 -18.349735 -8.620541 -7.557403 -15.876367 -0.713289 -12.032647 4.066228 -0.339771 -4.004007 3.149918 7.908583 -7.483472 -1.240964 -8.977718 -1.342486 -15.162102 -6.906698 -0.057866 12.513847 -4.696272 2.271002 1.486162 24.456008 4.586383 20.801455 14.047653 5.791429 16.844109 0.960104 2.333846 -4.355892 15.226134 -9.876535 -13.437151 -2.054595 -11.015814 -8.790287 -6.176674 4.254375 -5.189131 2.802102 12.204832 -1.826183 5.068289 -10.314601 5.135763 12.453889 1.502613 20.897480 4.853781 -7.927764 1.504014 -11.803337 11.115997 -6.514884 5.462833 -0.805734 -9.455295 3.288817 -3.053083 -0.966001 -9.281337 -7.875852 10.946892 6.775002 -11.967416 6.450905 -3.999105 -19.266986 -14.498979 -13.000869 3.824676 2.891245 14.786589 -0.785062 -1.018332 3.085528 3.705304 0.293505 -20.490526 -1.170215 16.784156 -11.229026 -3.621790 -8.102037 12.822276 -2.522611 9.298373 -10.776606 -7.805344 4.373848 -0.264168 1.996886 -10.264432 -3.250514 -15.277238 5.757129 0.137437 -3.763381 7.324025 11.646823 7.031351 14.051638 14.628145 -15.797385 4.549567 -14.037217 6.263039 -3.016168 -0.820115 1.120345 5.624646 -0.648410 2.818593 15.209454 -19.304960 5.773990 7.660444 -7.691811 -15.882313 -1.978875 -16.679137 -15.311895 -3.952223 7.643018 6.790495 3.080693 -11.172614 0.158736 -3.534695 -2.833198 -7.661691 3.133950 12.517365 -13.341986 -3.875311 -1.961026 -2.228639 -10.055747 13.780631 7.124701 7.183125 18.284820 8.869854 -6.913926 4.504037 -14.224890 -0.721042 21.840006 4.535102 -16.892113 11.691286 -12.110100 0.651581 7.845896 8.557151 11.049743 -2.113340 -14.920355 -6.110178 6.470665 -3.086432 19.250498 4.431989 5.083171 -6.435772 20.173514 -1.176440 -13.160344 21.085526 11.046445 -16.872340 4.195946 6.463455 -10.911134 -3.338874 10.485291 -11.581636 -1.418136 -12.245915 0.505198 3.893705 -8.622092 -0.545836 3.568755 -18.216468 20.389121 1.564237 6.483103 3.787112 -15.239588 -18.912478 22.434975 -2.611029 -1.839243 -7.112548 -6.132361 -9.852760 -18.018270 3.541891 -0.555535 -7.934621 -6.135509 -15.565404 6.622822 12.796031 -4.250381 12.434212 -10.977655 -7.467409 5.916523 1.908720 9.594447 -8.260496 -11.017894 -2.178240 -0.964286 10.737476 -9.336568 13.968047 21.971632 -5.920223 13.362638 -2.603643 -9.387394 1.231519 8.516393 -16.623465 16.623344 -5.554576 8.712016 -0.989504 11.455020 -11.419976 -6.407304 1.242900 -0.770933 -5.189912 6.831772 -8.489926 1.602249 0.181635 -14.327991 -5.250202 3.725537 -3.039929 0.342794 0.722000 2.329408 -14.406769 -0.356284 -9.627511 3.269273 13.185039 3.104728 -11.124356 4.314555 -0.046268 0.422180 2.244412 0.398395 -1.332443 12.289710 -15.003309 -6.220833 1.048535 -0.179678 -9.490429 -22.496053 -0.028528 -14.715180 -11.401668 11.540992 -14.770825 1.762089 -12.252190 -3.768499 -18.382515 -6.108633 5.207460 21.802157 8.699497 -11.151858 2.805662 -1.167965 14.189875 1.119863 2.868174 3.868456 8.810213 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = -0.538388 0.229032 0.164616 -0.440387 1.587131 0.055478 0.052863 1.087473 0.248312 0.523252 -1.027748 -0.121681 0.085528 -0.395711 0.154638 -0.003299 -0.055687 0.297424 -0.662548 -0.429681 0.343182 0.539398 -0.063244 -0.492350 -0.114147 -0.408373 -0.526684 0.076321 0.050092 0.174155 -0.566542 0.139526 0.922906 -0.217813 0.741432 0.529156 1.022575 0.586023 -0.311900 0.808578 0.618161 0.391780 -0.362413 -0.699754 0.078803 -0.692258 -0.796351 -0.185848 0.237638 -0.838201 0.974551 0.433580 0.175141 -0.016116 0.112735 0.619739 0.153840 -0.164459 0.710839 0.508672 -1.220312 0.130361 -0.653420 1.295079 -0.333259 1.308425 -0.220662 -1.211255 -0.866130 0.522161 0.725598 -0.812809 -0.657445 0.108637 0.008712 -0.265259 0.537075 -0.148679 1.135895 -0.364813 -0.436402 0.434387 -0.241877 0.447252 -0.091253 -0.171589 -0.536948 -0.126466 0.106639 -0.605444 -0.527241 0.964573 -0.727289 0.484209 -1.219005 -0.705679 -0.062873 0.237040 -0.104001 -0.763321 0.305364 0.464099 -0.005348 -0.118943 0.207593 -0.401680 0.403937 0.747206 -0.002722 0.333292 -0.453966 0.272496 0.287147 0.365620 0.151624 0.390079 -0.744193 0.453150 -0.448158 0.150571 -0.241354 -0.006062 0.664249 0.310311 0.424981 -0.486983 0.676403 0.144557 -0.764232 -0.237402 0.216788 -0.429685 -0.875342 -0.004537 0.270354 0.402295 -0.113038 -0.156274 0.301097 -0.379669 -0.494094 -0.688267 -0.311517 -0.358925 -0.700124 -0.233460 -0.048099 0.013903 -0.429858 0.787080 0.459677 0.190215 0.909124 0.370326 -0.052149 -0.341371 -0.837051 0.358834 1.036576 0.096154 -0.729957 0.388988 -0.716487 0.280958 0.484214 0.239000 -0.245330 0.793496 -0.135248 0.152418 -0.435756 -0.231384 0.969287 0.804995 0.327740 -0.819936 -0.030014 -1.008631 -0.245034 1.209017 0.958845 -1.171133 -0.129121 0.610580 0.199912 -0.335218 0.306515 -0.668072 -0.577952 -0.381418 0.155901 0.361721 -0.598655 -0.484665 0.615450 -0.710467 0.878957 0.068206 -0.162340 -0.081117 -0.820712 -0.211931 1.281618 0.164773 -0.109411 0.059539 -0.111120 -0.072511 -0.880612 0.063074 0.618176 -0.208898 -0.431613 -0.515373 0.181280 0.843410 -0.629987 0.333071 -0.462169 -0.182153 0.308507 -0.628502 0.527627 -1.087393 -0.399283 -0.788466 -0.245947 0.451298 -0.819333 -0.027066 0.932042 -0.314567 0.832837 0.839117 -0.614604 -0.616974 0.630674 -0.249374 0.778932 0.005157 0.014854 0.102217 0.632107 -0.624099 -0.228056 -0.408807 0.125671 -0.380006 0.796061 -0.662273 0.083087 0.049680 -0.751217 -0.221200 0.587847 0.315076 0.099763 -0.161406 -0.200226 -0.595844 -0.164362 -0.559447 0.028520 0.558035 -0.547863 -0.941807 0.043474 0.147664 -1.081789 -0.328292 0.184742 0.128818 0.961104 -0.594738 0.211073 0.499221 0.036961 -1.430097 -0.522827 -0.428509 -0.547341 -0.498890 -0.074512 -0.608738 -0.846409 -0.431963 0.247093 -0.673271 -0.780881 0.417288 0.930579 0.461546 -0.240193 0.416829 0.129131 0.652681 0.258411 -0.016856 0.194938 0.238572 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -2.327704 0.791848 0.202504 -0.683218 4.595899 0.177208 0.940546 2.470849 -2.380711 2.536518 -2.939989 -0.579394 -1.362886 -2.889927 0.255318 0.110949 1.419346 0.028024 -0.791697 0.613166 1.474666 -1.654942 0.285515 -1.302758 -0.178272 -2.381351 -0.878963 0.318373 3.363772 -0.636669 -1.348280 0.313847 4.288447 0.109417 3.184423 2.107619 1.494293 2.578395 0.719550 -3.214431 -0.591370 2.726075 -1.945686 -2.570429 0.204753 -2.507057 -2.152111 -0.987898 1.419288 -1.128762 -0.987644 2.433242 -0.475675 0.662773 -1.874842 1.593539 2.893503 -0.471460 4.186514 0.822474 -1.458821 -1.540974 -1.729335 2.086308 -1.013395 0.539397 -1.425980 -2.636527 -0.095999 0.124008 -0.613291 -2.237735 -0.985715 2.040941 1.135241 -2.183519 1.721763 -0.237194 -0.430780 -4.332670 -3.032444 0.378059 -1.127476 3.077830 -0.322974 -0.094989 0.222876 0.275645 0.240928 -4.012563 0.017530 2.512431 -2.287096 -0.356863 -0.780305 2.099660 -0.203323 1.324142 -2.309789 -2.109393 0.544000 -0.173141 0.557357 -2.660036 2.424973 -2.119921 0.306890 -0.546265 1.287163 2.440738 2.188672 1.025577 2.208193 2.727872 -2.599202 -0.361841 -2.524842 1.116041 -1.212087 0.093480 -0.508941 1.433403 1.652698 0.394055 3.104624 -4.295896 1.307528 1.416711 -0.720320 -2.776329 0.154092 -2.717391 -2.607105 -0.502200 1.884791 0.064978 0.311675 -1.909452 1.039461 -0.429674 -2.196364 0.231959 -0.302940 3.084127 -4.570373 -0.335847 -0.528622 -0.811428 -0.877677 2.204018 1.543021 1.909209 3.426337 2.106627 -2.071299 2.370323 -3.368992 1.125692 4.619467 0.742634 -3.092127 2.138309 -2.680458 0.278886 1.957224 1.520499 2.403412 -0.133983 -1.969013 -0.705122 2.049727 0.342084 3.836293 0.331967 1.954358 -2.178791 2.808346 -0.917841 -1.546969 3.851576 1.210732 -3.986360 2.287830 1.638051 -1.672528 0.635606 1.214419 -2.841945 -0.737223 -2.891422 0.392059 1.949031 -2.500136 -0.614693 0.591434 -3.167530 3.792232 0.242724 0.339007 1.326582 -2.444640 -0.808444 4.253011 0.466038 -0.016116 -1.666211 -1.833602 -2.719370 -3.547504 0.546159 -0.597732 -1.672200 -0.981723 -3.248345 -0.484707 2.844072 0.064898 1.917344 -5.144279 0.727688 1.354055 1.011443 1.650743 -1.359128 -1.953133 0.060589 -1.525452 1.440631 -2.789494 2.361178 3.025140 -1.995494 2.414511 -0.879962 -0.867493 0.977791 1.006776 -2.858210 3.217137 -0.091776 4.039968 0.043354 2.509669 -2.349046 -0.316699 -0.456574 -0.397247 -1.379543 1.854483 -2.283606 -0.229428 1.444760 -1.948501 -2.825302 0.288963 -0.091615 0.816920 0.181592 -0.906073 -2.499600 -0.161416 -1.518632 1.093142 2.377885 -0.899205 -2.391749 0.677481 0.371670 -0.112327 -0.396900 0.564412 0.019226 2.454869 -3.076513 -0.806032 0.247825 1.169136 -1.929932 -4.105786 0.071289 -1.547708 -1.680132 3.437228 -3.919213 -0.096619 -2.208923 -0.406197 -3.899032 -0.458594 0.526557 4.328503 0.535710 -1.966836 1.340001 0.124414 1.847860 -0.429453 1.088053 0.085275 1.012959 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = -0.351096 -0.203914 -0.439071 -0.111294 0.876452 -0.194204 -0.179804 0.613153 0.298274 0.340213 -0.334226 -0.273323 -0.184670 -0.415949 0.153381 0.436094 0.209156 0.357868 -0.367405 -0.327443 0.315752 0.219110 0.069137 -0.152575 -0.022766 -0.052317 -0.178196 0.105633 0.055823 -0.090511 -0.661895 0.232181 0.618095 -0.057922 0.397750 0.257297 0.563773 0.488808 0.019319 0.179057 0.235565 0.317937 -0.192154 -0.574798 0.299813 -0.378563 -0.330578 -0.128899 0.312957 -0.287432 0.809143 0.310421 0.058030 0.020568 -0.126957 0.147776 0.088451 0.115732 0.504694 0.298000 -0.526802 -0.032722 -0.305291 0.669608 -0.372482 0.554153 -0.069903 -0.734313 -0.548206 0.277594 0.462899 -0.576183 -0.493529 0.039502 -0.007630 -0.157964 0.347856 0.089589 1.078839 -0.329104 -0.664632 0.118408 -0.450168 0.364650 -0.141795 -0.059051 -0.386462 -0.105891 0.124041 -0.382012 -0.146874 0.296728 -0.414526 0.535638 -0.372549 -0.341853 -0.155850 0.031516 -0.207345 -0.375080 0.099362 0.106100 0.143227 0.244887 0.290644 -0.016712 0.393361 0.161316 0.181202 0.078230 0.325681 -0.093651 0.042850 0.208099 0.225780 -0.094719 -0.504190 0.261452 -0.077664 0.121492 -0.162670 0.152635 0.510415 -0.172479 0.293142 -0.480927 0.357983 0.040539 -0.254235 -0.106173 0.212808 -0.115370 -0.407760 -0.094702 0.467359 -0.017746 -0.195692 -0.060162 0.290807 -0.059643 -0.658026 0.007220 -0.348153 -0.115253 -0.386666 -0.039107 -0.194393 -0.361761 -0.060846 0.234846 0.157047 0.320667 0.480685 0.384227 -0.262910 -0.200887 -0.636690 0.343738 0.639593 -0.036593 -0.482929 0.190713 -0.380835 0.257998 0.363266 0.243630 0.093236 0.256973 0.351739 0.386871 -0.162215 0.140069 0.569823 0.186415 0.411487 -0.410371 -0.359757 -0.181911 0.059765 0.847657 0.253422 -0.732958 0.127346 0.361114 0.160741 -0.026362 0.051071 -0.278514 -0.191344 -0.474803 0.319029 0.442277 -0.596813 -0.229123 0.335638 -0.393350 0.416984 -0.043775 -0.178358 0.237977 -0.738259 0.401933 0.790276 0.139666 0.016997 -0.122204 -0.371966 -0.100702 -0.549726 0.132502 0.165427 -0.056078 -0.160977 -0.345327 -0.117867 0.771991 -0.045062 0.117066 -0.419062 0.223864 0.238433 -0.277420 0.256461 -0.473604 -0.208190 -0.072329 -0.166210 0.258340 -0.376122 -0.230355 0.351039 -0.447403 0.232154 0.626039 0.093178 -0.146935 0.263535 -0.176870 0.454301 0.013584 0.092438 -0.010673 0.354347 -0.290761 0.033000 -0.200596 0.358771 -0.249917 0.370666 -0.362903 -0.074490 0.243570 -0.360375 -0.324913 0.155741 0.290579 0.291235 0.012953 -0.383400 -0.198361 -0.038839 -0.161541 0.173663 0.394109 -0.195960 -0.430772 0.076379 0.052813 -0.538821 -0.108112 0.218544 0.030089 0.662609 -0.422852 0.072800 0.237231 0.164435 -0.540589 -0.283578 -0.290552 -0.056249 -0.026935 0.323418 -0.546437 -0.440501 -0.204572 0.317932 -0.322215 0.071397 -0.115234 0.480993 0.280942 -0.008172 0.429666 0.184251 0.199607 0.036472 -0.178661 0.139508 0.286033 +PE-benchmarks/rat-in-a-maze.cpp__main = -0.360803 -0.057523 -0.153286 -0.161301 0.741469 -0.104958 -0.136112 0.464334 0.476960 0.244826 -0.509494 -0.467308 -0.218262 -0.408802 0.148342 0.159815 0.134743 0.320495 -0.384245 -0.320293 0.360460 0.194361 0.010834 -0.304895 0.052532 -0.048580 -0.286404 0.004579 -0.062115 0.116381 -0.507216 0.217555 0.559378 0.090462 0.389660 0.292687 0.473099 0.609974 -0.133134 0.585481 0.222355 0.394700 -0.190217 -0.687551 0.363685 -0.468423 -0.235623 -0.241407 0.222006 -0.404616 0.864584 0.302341 0.094498 -0.009207 -0.109804 0.019720 0.157073 0.347401 0.448910 0.387942 -0.497759 0.150024 -0.370360 0.338982 -0.355435 0.744464 0.088811 -0.733452 -0.557409 0.233662 0.538990 -0.489828 -0.525795 -0.033956 -0.037957 -0.074831 0.384223 0.054709 0.734518 -0.127670 -0.613340 0.110266 -0.312034 0.392569 -0.171457 -0.153448 -0.378673 -0.154622 0.212936 -0.303788 -0.287295 0.340289 -0.315765 0.521628 -0.343504 -0.359491 -0.122830 0.097371 -0.183772 -0.283147 0.159600 0.230689 0.086029 0.395533 -0.110976 -0.134798 0.591429 0.340168 -0.029189 -0.026282 0.285477 -0.048491 0.010215 0.147522 0.068230 0.148411 -0.461728 0.225618 -0.085073 0.125216 -0.068022 0.086645 0.335211 -0.219858 0.170017 -0.350037 0.414966 0.156460 -0.364581 -0.058050 0.262270 -0.226455 -0.512911 -0.085666 0.408799 0.154942 -0.180060 -0.028220 0.133293 -0.215118 -0.420088 -0.107081 -0.384208 -0.117599 -0.231865 -0.127379 -0.198393 -0.355712 -0.154612 0.233149 0.064453 0.195072 0.457803 0.334693 -0.269161 -0.454910 -0.495934 0.312443 0.711112 -0.050149 -0.492118 0.074816 -0.178608 0.350533 0.367207 0.094160 0.029322 0.373369 0.287052 0.337207 -0.434591 -0.081538 0.525452 0.450008 0.443721 -0.487474 -0.186404 -0.249247 -0.035577 0.831312 0.385274 -0.632986 -0.091616 0.382977 -0.045778 -0.129867 0.017123 -0.116392 -0.096269 -0.430574 0.262933 0.290183 -0.603403 -0.369181 0.283341 -0.468239 0.442097 0.039306 0.087944 0.101222 -0.731350 0.148801 0.849034 0.103417 -0.074894 -0.052808 -0.222076 -0.055086 -0.537623 0.171129 0.235803 -0.091847 -0.259866 -0.285903 0.048227 0.726758 -0.249160 0.040127 -0.014547 0.041616 0.165398 -0.431718 0.344669 -0.536199 -0.317983 -0.179763 -0.149344 0.385409 -0.225834 -0.230232 0.481810 -0.362409 0.248281 0.760108 0.069040 -0.235554 0.406751 -0.060151 0.396970 -0.145165 0.033536 -0.063502 0.443812 -0.291787 -0.077532 -0.127476 0.253338 -0.205991 0.500072 -0.355603 0.030512 0.221163 -0.452028 -0.138295 0.330744 0.209407 0.322959 -0.063455 -0.186826 -0.305457 0.040622 -0.054837 0.084918 0.457173 -0.087903 -0.542127 -0.118898 0.034582 -0.565113 -0.259873 0.257392 -0.073692 0.707513 -0.365802 0.124596 0.258223 -0.059805 -0.566489 -0.180923 -0.292358 -0.186856 -0.106619 0.308246 -0.440507 -0.335320 -0.225000 0.314431 -0.236021 -0.045266 -0.153822 0.401739 0.387165 0.007263 0.375601 0.228495 0.326064 0.109194 -0.255008 0.138680 0.369063 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -1.795653 0.614367 -0.195202 -0.559524 2.490251 -0.026829 1.178391 0.754134 -0.861557 1.648684 -2.482071 -1.921912 -1.331441 -2.345303 0.012177 -1.206959 0.973354 0.080514 -0.827759 0.477112 1.159877 -1.337508 0.058529 -1.237351 0.020934 -1.628486 -0.873465 0.071543 2.239066 -0.492165 -0.658744 0.179811 3.645854 0.375934 2.752866 1.716088 0.506997 2.257307 0.287528 -1.550039 -0.525834 2.410905 -1.406168 -1.994624 -0.443419 -1.756305 -1.385435 -0.782251 0.996903 -0.615817 -0.221057 1.620695 -0.321976 0.604051 -1.567172 0.693311 2.084460 0.679858 3.155324 0.568624 -0.743824 -0.232905 -1.430405 1.868777 -1.000278 0.483691 -0.625541 -1.703288 0.142202 -0.247278 -0.740114 -1.065602 -1.251876 1.433864 1.300833 -1.547631 1.140830 -0.279195 -1.985104 -2.225183 -2.210583 0.163219 -0.745937 2.241775 -0.431253 -0.207936 0.477584 0.289519 0.278436 -2.794254 -0.163671 2.249676 -1.445857 -0.517617 -0.456778 1.780921 0.012816 1.119167 -1.929738 -1.199399 0.304729 -0.289197 0.334533 -1.639813 0.649827 -1.709164 0.456182 0.104283 0.299281 2.028683 2.075238 1.064920 1.812235 1.889427 -2.071562 -0.249179 -1.795321 0.767463 -1.156535 -0.160083 0.156734 1.138207 0.483780 0.217157 2.240823 -2.967529 0.902967 1.254557 -0.602700 -1.914405 -0.054958 -2.163417 -2.132305 -0.501635 1.243804 0.593532 0.330164 -1.578196 0.313823 -0.245898 -0.840483 0.416113 0.173628 1.555517 -2.174823 -0.482627 -0.346027 -0.492868 -0.879725 1.839533 0.846776 1.050204 2.443073 1.404185 -1.574090 0.761952 -2.151595 0.590330 3.445209 -0.330815 -2.410197 1.421331 -1.775705 0.148898 1.247167 1.193855 1.785111 0.050100 -1.437764 -0.532488 0.317347 -0.212281 2.725585 0.487817 0.897477 -1.141744 2.681307 -0.492493 -1.427512 2.840883 1.153894 -2.413595 0.879329 0.993567 -2.334216 -0.086730 1.048080 -1.655212 -0.006712 -2.505844 0.380151 1.046569 -1.501778 -0.147158 0.386993 -2.510373 2.799508 0.146607 0.041420 0.565245 -2.163634 -1.559581 3.469563 0.119721 -0.067786 -1.123069 -1.120911 -1.867400 -2.772273 0.467123 -0.694060 -1.171831 -0.782613 -2.191940 0.295640 2.014095 -0.279884 1.698002 -2.303949 -0.043156 0.852889 1.099075 1.293146 -0.438861 -1.622452 0.103634 -0.721260 1.282623 -1.690509 1.710315 2.463248 -1.160419 1.600133 -0.562731 -1.336698 0.554321 1.005043 -2.255528 2.305367 -0.599070 1.488248 -0.211100 1.706422 -1.397012 -0.671846 0.013681 -0.451647 -1.073925 1.111919 -1.472076 0.104330 0.620150 -1.554065 -1.388534 0.445088 -0.350812 0.653921 0.201363 -0.263607 -2.329040 0.154873 -0.835372 0.501097 1.835468 0.398222 -1.593867 0.501257 -0.024766 0.142982 -0.052774 0.114956 -0.346114 1.716643 -2.124187 -0.820401 0.173681 0.501094 -0.975141 -2.937152 -0.170506 -1.480075 -1.289291 2.454561 -2.123797 0.279976 -1.668868 -0.401394 -2.341702 -0.935676 0.669005 3.086632 0.938430 -1.613279 0.622203 -0.001034 1.825008 -0.014506 0.388086 0.405413 0.956916 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.990870 0.008658 0.169521 -0.361060 1.840381 -0.327670 0.088206 0.928545 0.422858 0.629538 -1.409384 -1.012169 -0.657275 -1.145541 0.278888 -0.152902 0.597303 0.590491 -0.784328 -0.286390 0.807116 0.173491 -0.103362 -0.766166 0.065314 -0.511476 -0.759661 0.062283 0.302117 -0.163042 -0.797179 0.597158 1.977328 0.226122 1.549855 1.038200 0.989979 1.505758 -0.154583 0.240036 0.344167 1.157858 -0.612225 -1.508797 0.418773 -1.067222 -0.818781 -0.671413 0.536705 -0.621185 0.927522 0.856755 0.110371 0.279382 -0.522595 0.269685 0.806532 0.526464 1.400094 0.816950 -1.030458 0.592832 -0.884370 0.868665 -0.845719 1.231384 -0.284495 -1.532629 -0.788441 0.346908 1.011237 -1.178723 -1.166785 0.241614 0.262187 -0.474141 0.908343 0.142342 0.848510 -1.113683 -1.572614 0.262399 -0.630936 1.096632 -0.396026 -0.319064 -0.393420 -0.216119 0.392549 -1.098108 -0.496808 1.063157 -0.936257 0.533939 -0.816175 -0.202780 -0.140082 0.426054 -0.744504 -1.104153 0.422508 0.007107 0.169144 0.526958 0.345720 -0.298054 0.742973 0.493534 0.054874 0.583995 0.602047 0.358307 0.734641 0.581573 -0.354234 0.188064 -1.181158 0.659864 -0.665993 -0.005507 0.026436 0.386650 0.713928 -0.112839 0.787866 -1.232609 0.810648 0.596906 -0.752041 -0.415182 0.419574 -0.863595 -1.381406 -0.401084 0.996413 0.507585 -0.123411 -0.426376 0.287743 -0.427754 -0.541783 -0.234131 -0.640783 0.120744 -0.931232 -0.344758 -0.376290 -0.666956 -0.478857 0.810794 0.323955 0.586824 1.305570 0.838812 -0.950988 -0.647406 -1.431476 0.461720 1.854693 -0.430273 -1.289160 0.562550 -0.556325 0.470727 0.910098 0.630155 0.389146 0.208946 0.031576 0.221714 -0.790439 -0.202080 1.482810 0.796448 0.692641 -1.080317 0.326234 -0.411233 -0.542469 2.030317 0.715577 -1.506514 -0.020823 0.901178 -0.440915 -0.549951 0.290808 -0.773001 -0.430668 -1.201271 0.584706 0.593415 -1.283439 -0.422881 0.752910 -1.322775 1.178006 0.101120 -0.168364 0.180064 -1.548825 -0.647239 2.252121 0.044318 -0.018112 -0.294246 -0.675754 0.047510 -1.582907 0.330020 0.103567 -0.294155 -0.497734 -0.950262 0.297265 1.591630 -0.553716 0.526228 -0.715752 -0.054432 0.494799 -0.440288 0.737939 -1.204377 -0.909490 -0.212313 -0.458238 0.691781 -0.837554 0.055619 1.411500 -0.824928 0.584221 0.952748 -0.729458 -0.250733 0.854335 -0.768239 1.201733 -0.346652 0.479525 -0.004131 1.039947 -0.883415 -0.476916 -0.216104 0.385346 -0.818561 1.047464 -0.910651 0.155296 0.318981 -0.957918 -0.618894 0.615365 0.248655 0.427289 -0.086674 -0.339034 -1.132018 0.252279 -0.282842 0.313943 1.131132 -0.124136 -1.232518 0.092200 0.214161 -0.919105 -0.303162 0.349162 -0.190628 1.513011 -1.089339 0.044078 0.480182 0.221071 -1.076706 -1.154531 -0.342974 -0.968467 -0.396705 0.991564 -1.159467 -0.687975 -0.732580 0.422115 -0.641498 -0.342965 0.202793 1.407485 0.911849 -0.541242 0.640252 0.271444 0.906991 0.167676 -0.276399 0.129400 0.817121 +PE-benchmarks/word-wrap.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -1.886541 1.993345 2.016929 -1.461882 3.982360 0.524616 1.145915 1.979524 -0.720747 2.012254 -3.592232 -0.356920 -0.188181 -1.951012 0.074489 -2.017784 -0.247642 0.131563 -1.117356 0.075097 1.014326 -0.230647 -0.293851 -1.706889 -0.522492 -2.588121 -1.442128 0.121298 1.516046 0.103445 0.164477 0.056712 3.328219 -0.191268 2.949206 2.194472 1.807380 2.214058 -0.499952 1.227895 0.631875 1.710561 -1.497449 -2.133194 -0.432237 -2.009599 -2.218977 -0.915690 0.525480 -2.160506 0.511223 1.778313 0.085686 0.211519 -0.748124 1.971288 1.579679 -0.429225 2.968796 1.089242 -2.606811 0.064750 -2.295621 2.828392 -0.868398 2.384016 -0.677795 -2.637534 -0.605973 0.684481 0.241690 -1.559817 -1.207311 1.327723 0.773687 -1.697181 1.106359 -0.975672 -1.750346 -1.664073 -1.070999 1.223575 0.578440 1.972189 0.080194 -0.250510 -0.040509 0.351131 0.033508 -2.900384 -1.095308 3.568062 -1.958907 -0.236445 -2.642150 0.540617 0.148486 1.154516 -0.932374 -1.753697 0.996186 0.872734 0.053267 -2.296376 -0.251863 -2.732262 0.806841 1.353124 -0.575148 1.414265 -0.498654 1.462579 1.817586 2.003972 -1.895222 1.443705 -2.493186 1.113861 -1.142836 0.092436 -0.363072 0.268861 0.474588 1.328094 2.082773 -2.468372 1.729978 0.918971 -1.874447 -2.228538 0.016342 -2.198655 -2.618649 -0.215262 0.615251 1.426910 0.336790 -1.206214 0.196492 -0.991740 -0.457691 -2.338356 0.251668 1.252164 -2.601734 -0.623953 0.009750 0.392481 -1.793638 2.638963 1.676101 0.737661 3.232255 1.266530 -0.217598 0.530969 -2.388061 0.282243 3.572316 0.898694 -2.554518 1.869280 -2.275075 0.129535 1.167002 0.916671 0.459911 1.560365 -2.672964 -1.315124 0.197568 -1.021718 3.191629 1.977824 0.612254 -1.942941 2.819334 -2.090195 -1.846810 3.357310 2.804233 -3.281819 0.382766 1.655768 -1.309016 -1.032029 1.761201 -2.401005 -1.053424 -1.160933 -0.260719 0.668433 -1.379582 -1.017224 0.894307 -2.770564 3.447281 0.345787 0.631947 -0.130885 -1.956363 -3.157861 3.659613 0.041490 -0.480258 -0.531823 -0.359148 -1.527327 -2.917376 0.233847 1.278399 -1.448558 -1.508597 -2.251593 0.962482 1.848545 -1.750346 1.783443 -1.790280 -1.370101 1.016099 -0.243080 1.753343 -2.206440 -1.510985 -1.739655 -0.531341 1.551120 -2.097825 2.013736 3.658604 -0.649566 3.174410 0.309773 -2.652011 -0.692912 1.889914 -1.933855 2.816602 -0.402460 1.172839 0.262950 1.983749 -2.086323 -0.999000 -0.385277 -0.815023 -0.877958 1.878604 -1.866276 0.284124 -0.144265 -2.563020 -0.684244 1.422249 0.197171 0.008849 -0.321350 0.557356 -2.273172 -0.482279 -2.014933 0.084465 1.868235 -0.844125 -2.523482 0.472092 0.378881 -1.449258 -0.576288 0.199794 0.332298 2.203682 -2.271431 -0.008851 0.704394 -0.242920 -3.568155 -2.927422 -0.374278 -2.675741 -2.284660 0.421910 -2.302278 -0.900928 -1.835047 -0.196300 -3.046543 -2.475131 1.572565 3.604118 1.213441 -1.526742 0.722804 -0.229878 2.472218 0.586978 0.641889 0.496449 1.005158 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -14.700609 13.520868 13.650594 -6.174838 16.927905 6.655934 5.921713 5.408110 -9.247096 17.370091 -22.066984 -7.679337 -9.071218 -13.820992 -3.268709 -15.868274 1.682394 -4.472354 -3.432485 6.738572 8.238943 -13.452346 -0.655929 -9.707819 -2.897266 -18.211967 -9.245126 -0.206292 20.130193 -6.244943 1.250069 -2.132604 27.388891 3.581624 23.795464 16.345651 4.370384 19.636798 1.799183 -2.979449 -8.164480 18.750445 -14.524282 -12.125435 -2.326988 -16.650085 -8.250852 -6.795022 5.329108 -3.989905 -1.843716 14.799185 -4.271567 5.550976 -11.854950 9.277344 13.994123 2.952876 28.214154 2.593485 -6.773134 -1.568300 -15.653844 9.621997 -6.644460 5.912961 -5.263322 -9.704277 7.746186 -7.658712 -2.088473 -11.549271 -5.166589 17.869251 6.253728 -16.017340 6.347831 -7.708213 -29.847707 -20.688915 -14.810586 4.004663 5.631826 16.520916 -0.651143 0.034667 1.663000 8.552398 -2.039715 -27.817153 0.668883 21.624605 -12.322987 -4.800866 -6.311115 18.141476 -3.113306 12.807078 -13.966503 -3.916770 4.980033 1.227027 2.464877 -22.116346 3.647965 -21.410384 6.910037 -1.807502 -3.129435 5.456107 12.760328 10.343976 21.424253 21.396628 -21.718033 4.198183 -15.731521 3.500275 -2.042972 -1.679788 2.058549 9.451997 -6.929913 3.625806 21.814340 -24.932887 4.847308 6.663352 -10.668555 -23.521393 -3.724804 -22.359575 -17.261946 -4.355239 6.458800 7.942806 3.991045 -16.706402 -1.648766 -5.623844 -3.721738 -10.290638 8.383374 20.646641 -16.736383 -4.248674 -1.234519 -1.305465 -11.267889 18.270393 11.102713 9.455113 23.177135 11.561235 -5.449261 6.482028 -15.897753 -2.725904 22.500441 8.059997 -21.526005 15.619592 -13.792291 -1.601308 9.741027 10.339536 15.435145 0.279750 -21.250645 -13.931744 8.896361 -2.473127 23.293395 4.421531 7.038639 -1.386294 29.861937 -3.628520 -19.026934 20.347154 11.577536 -16.684138 4.666695 5.092424 -11.982765 -2.075356 14.910585 -15.167584 0.736049 -11.120986 -4.581765 5.186175 -8.227263 -0.935647 2.988691 -22.814234 29.344433 1.516947 11.106756 6.155924 -17.668075 -25.921053 21.498654 -3.815233 -3.563792 -9.593184 -5.949127 -15.455403 -20.146977 3.932787 -0.094506 -11.733772 -10.267548 -20.573945 8.649213 9.409996 -2.782203 16.072731 -15.641559 -12.223407 6.921136 2.807597 14.418346 -4.709885 -12.404424 -3.600691 -3.016241 15.423255 -11.194673 23.958446 28.210235 -5.456045 17.974074 -6.939439 -9.985255 3.014865 8.989403 -21.949303 20.402196 -6.240079 11.328528 -2.176608 13.134082 -13.269689 -6.811098 3.738858 -1.295177 -2.869373 7.509400 -7.864267 0.941937 -3.911547 -19.483469 -3.744019 1.989565 -6.568996 -2.672749 2.305447 5.845209 -17.732091 -2.848327 -12.332287 1.385705 15.071748 2.904971 -11.559294 6.422735 -4.509614 4.798953 7.267321 -0.814823 -1.668803 11.074883 -18.716422 -10.562227 -0.873878 -2.469389 -10.901381 -25.466236 -3.705310 -16.603386 -14.841409 16.435208 -18.145438 5.142443 -15.765905 -9.056500 -21.203009 -7.544782 7.570926 28.294899 12.132153 -16.991805 2.273526 -3.515950 19.924956 2.160114 3.905709 2.484021 8.590498 +PE-benchmarks/strongly-connected-components.cpp__main = -0.515875 -0.640678 0.220336 -0.020856 1.540409 -0.827854 0.110253 1.328635 1.049775 0.082763 -0.681192 -0.654156 -0.445177 -0.215075 0.439747 -0.129119 0.582061 0.805736 -0.971071 -1.020178 0.548251 1.473253 -0.284444 -0.368570 0.138935 0.084417 -0.630143 0.022556 -0.742472 0.202282 -0.982030 1.021688 1.340140 -0.025852 0.977574 0.688659 1.462510 0.888281 -0.524666 1.486079 0.942875 0.422682 -0.126781 -0.948910 0.365635 -0.464239 -0.657332 -0.034842 0.359459 -0.624517 1.654077 0.359105 0.331632 0.414525 0.348330 0.327202 -0.439617 0.344516 0.356502 0.897976 -1.662754 0.670934 -0.553479 1.389085 -0.542983 1.708008 -0.369937 -1.589524 -1.435559 0.679799 1.368197 -1.269396 -1.067547 -0.369449 -0.221693 0.129828 0.772656 0.584344 2.412077 0.138098 -1.246447 0.350106 -0.442604 0.308045 -0.316430 -0.423782 -0.986411 -0.560130 0.402766 -0.219721 -0.532080 0.845862 -1.045740 1.123829 -1.678599 -1.802736 -0.262328 0.176007 0.058373 -1.356159 0.356765 0.007024 0.036017 0.915422 -0.153941 0.403574 0.621166 0.787735 0.067049 0.257348 -0.489690 0.121583 0.072928 -0.138292 0.921964 0.414443 -0.910220 1.023978 -0.681715 -0.101223 -0.090905 -0.043194 0.831447 0.027525 0.111174 -0.316283 0.518825 0.095427 -0.850179 0.361936 0.442932 -0.212464 -1.010708 -0.398784 0.983174 0.501613 -0.334758 0.099882 0.491887 -0.368350 -0.124348 -0.542342 -1.050204 -1.337268 -0.212229 -0.371649 -0.358556 -0.485781 -0.428029 0.551959 0.051692 0.448400 0.559211 0.464147 -0.528790 -1.251576 -1.224209 0.334923 0.677077 -0.450039 -0.657438 0.203806 -0.493857 0.590165 0.625554 0.405673 -0.484590 0.656077 0.932008 0.948243 -1.246239 0.003823 0.871609 1.005140 0.378307 -0.873026 -1.355170 -1.390221 -0.136909 1.371917 0.951635 -1.320474 -0.555115 0.794006 0.740011 -0.909457 0.062505 -0.762488 -0.717186 -0.789563 0.632915 0.611031 -1.143101 -0.036646 1.497280 -0.582210 0.226285 0.039073 -0.538643 -0.039659 -1.456252 -0.259065 1.792783 0.113827 0.325206 0.147513 -0.592417 0.721042 -0.996652 0.147292 0.522577 0.457561 -0.319395 -0.257385 0.156648 1.357974 -0.546737 0.419984 0.359095 0.109071 0.336411 -1.212458 0.487245 -1.342027 -0.559840 -0.640828 -0.385312 0.423241 -0.793736 -1.065048 0.574887 -0.510355 0.545519 1.664783 -0.927034 -1.045551 0.484364 -0.106360 0.552213 -0.010439 -0.455757 0.222121 0.594681 -0.864635 -0.480596 -0.470699 0.788198 -0.969266 0.914846 -0.637358 0.246667 -0.052597 -0.760024 -0.160845 0.521045 0.551625 0.050177 -0.241906 -0.356624 -0.559827 0.056395 -0.488271 0.393691 0.686162 -0.495583 -0.846543 0.156309 0.096371 -1.925886 -0.398456 0.362090 -0.094312 1.306847 -0.520642 0.095068 0.825437 0.161599 -1.311618 -0.497259 -0.655992 -0.715778 -0.212247 -0.391671 -0.352119 -1.255885 -0.185153 0.767793 -0.244343 -0.719886 0.254481 0.662277 0.637771 0.133853 0.624415 0.507127 0.301636 0.215681 -0.397519 0.183848 0.459797 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/z-algorithm-linear-time.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.369751 -0.248438 -0.051888 -2.370522 7.229710 -0.639092 -0.109554 4.949616 1.297561 2.879587 -5.786037 -2.975872 -1.708805 -4.746860 0.200853 -1.325069 2.378102 0.482947 -3.371340 -0.533520 1.983008 1.211753 0.465859 -2.483316 -0.711905 -1.889539 -2.907612 0.735684 1.065187 -1.776168 -1.201570 1.115908 8.458580 0.843738 6.461735 3.180663 3.907493 4.840172 0.553058 0.973516 1.691765 3.419687 -2.243043 -4.021006 -0.576393 -3.770656 -4.241909 -1.123927 1.643797 -2.676196 2.063424 3.318430 0.825587 1.328126 -2.346765 1.488383 2.060065 -0.567358 5.727357 2.244037 -5.843417 0.269063 -2.839046 4.221339 -2.684566 3.950914 -1.465386 -3.819229 -2.432660 1.969502 1.988026 -5.111045 -4.171530 1.192410 1.583909 -2.618769 3.426807 0.033892 3.639303 -4.436420 -3.488000 2.320895 -0.998708 3.272252 -0.484602 -0.180140 -0.313804 -0.326663 0.164968 -5.181141 -0.644732 3.951635 -4.806736 0.087055 -3.829328 0.942252 -2.335259 1.697916 -2.990750 -4.722463 1.379725 -0.075201 0.055488 -1.050593 1.857538 -2.719718 2.120259 1.882585 0.051050 2.674994 2.188960 2.216670 3.876697 3.281716 -2.067419 0.826908 -5.385961 2.209069 -3.055267 -0.644750 -1.261094 0.992769 2.883227 2.041708 3.415954 -5.284135 3.393997 2.883716 -3.419084 -2.705780 0.423907 -3.400912 -5.257698 -0.025478 2.792062 1.396450 1.016521 -2.294172 1.436839 -1.644046 -1.835638 -1.577488 -0.911346 0.545155 -3.967638 -1.240112 0.066338 -0.588143 -2.299691 4.406323 2.362337 1.056273 6.312672 1.102692 -3.475849 -0.447607 -5.270656 1.276243 7.158455 -0.840894 -4.811201 3.616378 -4.039635 1.058750 2.208518 3.167204 1.713753 -0.623403 -1.834641 0.189831 0.294361 -0.219402 6.081342 0.515633 2.323244 -4.067906 2.082924 -2.356495 -0.464514 7.826558 3.090121 -6.272262 0.088588 3.600725 -0.082434 -1.035527 2.407334 -3.911400 -2.410308 -3.998679 1.605615 2.012875 -3.590536 -0.972442 2.631162 -4.879144 4.872433 0.313990 -1.772853 0.366892 -5.480944 -2.452626 8.692133 0.016882 0.496686 -0.084976 -2.544483 0.649101 -6.737071 0.295335 1.371738 -1.387006 0.480544 -3.388727 1.386160 4.787683 -1.983987 3.245916 -4.912704 -0.281892 2.478216 -1.753571 2.173005 -3.493921 -2.932572 -1.064947 -1.801858 2.495867 -5.390124 1.390972 4.643668 -2.092942 5.004463 1.400395 -2.933769 -1.128065 2.154003 -3.641396 5.937534 -0.797172 3.217871 0.404880 3.935561 -3.272370 -1.538873 -1.909739 -0.097876 -3.202181 3.027453 -4.462621 0.162375 0.950760 -2.243922 -3.176976 1.850555 0.788897 -0.504330 -0.257259 -1.122659 -3.728540 -0.193300 -2.289483 2.684674 3.343179 -1.193677 -4.723090 1.079133 2.580247 -2.831100 0.660648 0.470156 0.184929 5.525979 -4.456583 -0.639363 2.142970 2.028356 -4.603679 -5.519779 -0.136148 -3.189211 -0.815810 1.505117 -4.646428 -3.750275 -2.811669 0.820207 -3.003330 -1.074950 2.627908 6.673209 3.313761 -4.175927 0.952215 0.452937 2.468826 0.646743 0.514229 1.529453 1.614903 +PE-benchmarks/n-queen-problem.cpp__main = -0.206038 -0.070067 -0.282667 -0.072474 0.451592 -0.095689 -0.187787 0.373774 0.223679 0.260590 -0.163591 -0.161100 -0.076314 -0.245074 0.072278 0.291757 0.071298 0.213770 -0.168520 -0.168488 0.177795 0.070909 0.042634 -0.063265 -0.040013 -0.097128 -0.073444 0.077018 0.084095 -0.083019 -0.384185 0.091529 0.345203 -0.047966 0.258058 0.159705 0.291489 0.246736 0.077721 0.102125 0.079470 0.189533 -0.139608 -0.304568 0.152691 -0.206027 -0.145187 -0.076015 0.188919 -0.132907 0.482029 0.177524 0.006937 0.012527 -0.087346 0.091749 -0.003541 0.107320 0.326742 0.136259 -0.241134 -0.035372 -0.201369 0.430703 -0.244832 0.252620 -0.062486 -0.392909 -0.251734 0.117703 0.199189 -0.253607 -0.186563 0.091210 -0.009992 -0.132041 0.188566 0.003098 0.595397 -0.192747 -0.360553 0.083785 -0.247848 0.212576 -0.076432 -0.001680 -0.235224 0.006383 0.027236 -0.261443 -0.044439 0.137069 -0.243081 0.267986 -0.074190 -0.112720 -0.039187 0.032808 -0.054172 -0.139230 0.057136 0.057241 0.101456 0.137184 0.257615 -0.014717 0.232298 0.049481 0.118175 0.034186 0.219983 -0.040332 0.060957 0.183264 0.133588 -0.107932 -0.287426 0.128707 -0.031960 0.092470 -0.083433 0.120023 0.290412 -0.087370 0.208059 -0.296809 0.180416 0.006148 -0.076819 -0.083204 0.110108 -0.083898 -0.204156 -0.071489 0.245132 -0.020023 -0.127119 -0.074668 0.166346 -0.001401 -0.414564 0.027766 -0.147923 -0.039032 -0.218041 -0.003470 -0.106220 -0.195721 -0.018777 0.135871 0.118449 0.206487 0.298573 0.237072 -0.115170 -0.143903 -0.357597 0.167663 0.347516 -0.084250 -0.271497 0.147938 -0.235222 0.087060 0.207425 0.174909 0.089660 0.181765 0.182505 0.164298 -0.079275 0.107244 0.341085 0.047397 0.218753 -0.158879 -0.146847 -0.044680 -0.012011 0.497680 0.106433 -0.402726 0.075636 0.157599 0.024330 0.018517 0.054858 -0.139403 -0.033739 -0.266026 0.152910 0.273654 -0.313537 -0.132814 0.165274 -0.236092 0.280191 -0.046102 -0.057093 0.175998 -0.412249 0.298210 0.422029 0.117209 -0.018446 -0.113426 -0.208869 -0.126174 -0.289671 0.074463 0.074016 -0.054519 -0.075551 -0.218466 -0.076423 0.407985 0.014580 0.065561 -0.296743 0.105074 0.145299 -0.145663 0.120938 -0.190279 -0.091944 -0.033383 -0.098362 0.154913 -0.196566 -0.051385 0.242895 -0.242450 0.136033 0.353034 0.091373 -0.044012 0.149532 -0.162958 0.286479 -0.009226 -0.060680 0.002362 0.171574 -0.156272 0.034920 -0.100753 0.167311 -0.091012 0.160777 -0.163044 -0.061725 0.121625 -0.244666 -0.146363 0.046487 0.154021 0.189802 0.042652 -0.212915 -0.151589 -0.035829 -0.113015 0.072152 0.224939 -0.052476 -0.229198 0.096093 0.001781 -0.235877 -0.107379 0.099803 0.017845 0.347892 -0.260023 0.024359 0.132186 0.109308 -0.283180 -0.127748 -0.195167 0.007754 -0.008166 0.174196 -0.331740 -0.218313 -0.128102 0.139568 -0.203895 0.081010 -0.062421 0.302832 0.173059 -0.058693 0.237956 0.060070 0.141731 0.071057 -0.119137 0.063689 0.176085 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.846947 -0.082988 0.239988 -0.239211 1.388231 -0.373093 0.024238 0.739180 0.576852 0.539044 -1.094050 -1.048576 -0.651741 -0.841303 0.192899 -0.249328 0.533595 0.577990 -0.687566 -0.243383 0.689929 0.256285 -0.115648 -0.558943 0.029642 -0.339769 -0.716492 0.078816 0.155976 -0.270770 -0.631986 0.551028 1.811891 0.220403 1.507771 0.930383 0.766759 1.323849 -0.129611 0.327877 0.246718 1.028824 -0.551139 -1.231356 0.325689 -0.859783 -0.608015 -0.594507 0.476548 -0.399884 0.909763 0.682120 0.072040 0.366667 -0.382607 0.159080 0.505986 0.618155 1.210610 0.653102 -0.874015 0.807998 -0.797280 0.732255 -0.761464 1.041316 -0.368992 -1.306144 -0.634908 0.153855 1.005167 -1.066190 -0.989121 0.281406 0.188522 -0.385273 0.779185 0.151239 0.787873 -0.961173 -1.444941 0.204067 -0.523765 0.840641 -0.414353 -0.265192 -0.432002 -0.117340 0.254270 -0.950514 -0.330822 0.868013 -0.859720 0.475728 -0.567678 -0.263475 -0.169913 0.435074 -0.607177 -0.907560 0.348708 -0.122867 0.160329 0.693990 0.396600 -0.058142 0.599233 0.380724 0.053542 0.428014 0.567691 0.391523 0.804965 0.531917 -0.223050 0.143132 -0.974487 0.631475 -0.673682 -0.056647 0.129346 0.439247 0.502192 -0.078652 0.726015 -1.030270 0.554518 0.427736 -0.625079 -0.296282 0.331221 -0.760490 -1.169676 -0.460930 0.892238 0.481746 -0.141389 -0.477761 0.194440 -0.336435 -0.296363 -0.162356 -0.493604 -0.122938 -0.572591 -0.318943 -0.335933 -0.617692 -0.386155 0.723047 0.275774 0.560256 1.086810 0.730202 -0.832427 -0.902840 -1.264427 0.249089 1.393364 -0.645307 -1.082214 0.529856 -0.391468 0.326134 0.831738 0.671914 0.368253 0.087610 0.169194 0.167328 -0.868785 -0.066881 1.267417 0.640276 0.495204 -0.744835 0.180200 -0.320100 -0.565499 1.755178 0.512092 -1.190968 -0.228194 0.617823 -0.334912 -0.606041 0.279262 -0.638237 -0.333535 -1.020854 0.494114 0.508899 -1.019584 -0.221694 0.825344 -1.132931 0.961178 0.005852 -0.253002 0.189114 -1.443779 -0.669459 1.931978 0.036568 0.014786 -0.258287 -0.620591 0.303259 -1.333847 0.289542 0.007771 -0.108784 -0.388358 -0.785707 0.394802 1.273628 -0.372569 0.526285 -0.395756 -0.175059 0.426217 -0.533462 0.596828 -1.002729 -0.743089 -0.177029 -0.394692 0.599302 -0.642051 0.021634 1.257767 -0.661316 0.369880 0.958161 -0.721529 -0.270918 0.673227 -0.783959 1.024587 -0.381805 0.114894 -0.023399 0.766383 -0.708220 -0.478357 -0.127449 0.493240 -0.730359 0.799265 -0.627987 0.154558 0.073624 -0.904186 -0.362806 0.408587 0.158932 0.232145 0.014187 -0.245927 -1.117399 0.247457 -0.223515 0.229607 0.966492 0.045561 -1.006860 0.242810 0.041626 -0.752641 -0.225442 0.196109 -0.210073 1.217792 -0.924461 -0.102242 0.435175 0.199602 -0.776884 -0.918632 -0.383746 -0.904424 -0.279139 0.774872 -0.807589 -0.585823 -0.613500 0.307922 -0.339156 -0.284270 0.259140 1.210896 0.942381 -0.579971 0.485850 0.181333 0.847212 0.234831 -0.356244 0.080034 0.753893 +PE-benchmarks/shortest-common-supersequence.cpp__main = -0.876439 0.294851 0.374071 -0.584661 1.587752 -0.040008 -0.161561 1.121707 0.956084 0.527979 -1.720186 -1.160020 -0.368060 -0.650502 0.136109 -0.325065 -0.020758 0.595999 -1.064701 -0.510738 0.774630 0.689122 -0.209155 -0.989048 0.092244 0.216603 -1.148002 -0.152453 -0.644338 0.219636 -0.356118 0.361722 1.467810 0.328338 1.075317 0.925171 0.689244 1.598376 -0.709532 2.585282 0.634023 1.010099 -0.537171 -1.198684 0.545382 -1.176173 -0.508437 -0.475688 0.183460 -1.153677 2.188199 0.678151 0.281937 0.104364 0.028412 0.269983 0.323438 0.624573 1.048157 0.985637 -1.673455 1.288402 -1.092995 0.885431 -0.636488 2.352710 0.411151 -1.703396 -1.137262 0.297212 2.042949 -1.525982 -1.521556 0.030039 -0.437418 -0.187512 0.946162 -0.126912 0.803730 -0.345504 -1.149819 0.455494 0.039677 0.635103 -0.440465 -0.532497 -1.011511 -0.242963 0.369704 -0.764375 -0.896345 1.010669 -0.875447 1.068653 -1.668687 -1.069243 -0.472705 0.570309 -0.471519 -0.659228 0.550837 0.724273 -0.016360 0.801843 -0.647466 -0.429928 1.313371 1.293919 -0.518636 -0.161860 0.248039 0.591397 0.505977 0.407498 0.018335 0.861206 -0.962064 0.569202 -0.371804 0.119745 0.126259 -0.052631 0.372451 -0.256476 0.438094 -0.460231 0.868222 0.340403 -1.480439 -0.335935 0.462806 -0.948113 -1.565058 -0.280574 0.590200 0.950675 -0.164577 -0.208520 -0.037444 -0.863546 -0.257790 -0.922965 -0.685882 -0.434509 -0.226292 -0.591141 -0.272971 -0.332502 -0.701713 1.006542 0.273716 0.172166 1.237971 0.366884 -0.292430 -2.008194 -0.942415 0.288763 1.573011 0.387169 -1.192909 0.286109 -0.041568 0.785979 0.826119 0.145465 -0.195154 0.850460 0.180475 0.210087 -1.388669 -0.700301 1.318124 1.396881 0.697058 -0.898443 0.140022 -0.908253 -0.645142 2.073635 1.479860 -1.102776 -0.913626 0.776141 0.289397 -0.813122 0.421251 -0.200157 -0.626825 -0.347989 0.184046 0.141047 -0.994701 -0.913687 0.939555 -1.316269 1.330654 0.195756 0.415933 -0.100032 -1.867593 -0.981059 1.798585 0.181875 -0.350167 0.189679 -0.052068 0.348804 -1.305210 0.405747 0.902630 0.006485 -0.743984 -0.582642 0.752147 1.191787 -1.127690 0.245701 0.728825 -0.851706 0.271904 -1.909269 1.051823 -1.656816 -0.908715 -0.993946 -0.128330 1.178708 -0.469864 -0.303143 1.752591 -0.371066 0.856961 2.559250 -0.039480 -1.126199 1.210161 -0.232018 0.957746 -0.607568 -0.354313 -0.161181 1.071974 -0.833283 -0.660525 -0.134047 0.805253 -0.496740 1.201282 -0.676549 0.377590 -0.241725 -1.474205 0.310562 1.086064 -0.044861 0.209275 -0.254648 0.063722 -1.095151 0.025341 -0.101628 -0.067500 1.122239 -0.040044 -1.386414 -0.293415 -0.136396 -1.366149 -0.111040 0.369030 -0.239017 1.589789 -0.824659 0.239630 0.672042 -0.511333 -1.631456 -0.307835 -0.808017 -0.935948 -0.861818 0.313344 -0.512247 -0.808831 -0.638536 0.412207 -0.209561 -0.825060 0.124753 1.117768 1.163748 -0.546698 0.529750 0.358840 1.327834 0.539351 -0.605240 0.083969 0.871369 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/topological-sorting.cpp__main = -0.552492 -0.729807 0.302499 0.007536 1.656206 -0.957448 0.159880 1.477334 1.156034 0.046072 -0.716749 -0.713837 -0.502730 -0.195625 0.494363 -0.197765 0.657222 0.903628 -1.068715 -1.128381 0.603341 1.681422 -0.353303 -0.391468 0.161045 0.125356 -0.694999 0.014483 -0.863170 0.227870 -1.049658 1.171399 1.485781 -0.018451 1.101964 0.773340 1.620672 0.970004 -0.600174 1.676838 1.039051 0.457631 -0.124877 -1.023181 0.389131 -0.478567 -0.704322 -0.014904 0.377604 -0.660929 1.818353 0.373865 0.375379 0.503683 0.423639 0.349641 -0.532091 0.382029 0.345036 1.004850 -1.853861 0.786880 -0.599528 1.530609 -0.574869 1.885637 -0.420281 -1.737308 -1.572207 0.727788 1.538704 -1.418190 -1.167463 -0.422353 -0.263913 0.172133 0.857190 0.676421 2.659254 0.185888 -1.380008 0.378679 -0.464342 0.311598 -0.364846 -0.486318 -1.110300 -0.634174 0.439921 -0.209304 -0.584187 0.935312 -1.170763 1.240230 -1.909550 -2.041319 -0.293346 0.217210 0.082301 -1.528064 0.404208 -0.017857 0.029024 1.037284 -0.204054 0.500735 0.649673 0.856763 0.060371 0.305662 -0.595693 0.159918 0.089999 -0.181518 1.055199 0.484203 -0.989398 1.166942 -0.784698 -0.124181 -0.072834 -0.060672 0.903234 0.042198 0.094647 -0.309555 0.531092 0.094776 -0.931345 0.426134 0.487575 -0.237210 -1.117228 -0.476397 1.098124 0.585151 -0.373794 0.110240 0.536311 -0.398405 -0.061974 -0.640602 -1.171750 -1.540123 -0.204485 -0.430946 -0.402249 -0.526983 -0.487070 0.603506 0.038102 0.494803 0.576352 0.496795 -0.581102 -1.420170 -1.347403 0.327839 0.685851 -0.512989 -0.699323 0.214925 -0.525044 0.642362 0.685631 0.451878 -0.559003 0.709783 1.044233 1.049439 -1.402791 0.007318 0.940936 1.124983 0.379064 -0.944071 -1.537862 -1.573970 -0.188001 1.485621 1.049504 -1.432244 -0.657686 0.844779 0.863766 -1.051157 0.064201 -0.855595 -0.809769 -0.852341 0.698470 0.657237 -1.246730 0.009512 1.711530 -0.620678 0.195404 0.036840 -0.610566 -0.072176 -1.607220 -0.346544 1.972411 0.114670 0.374101 0.173655 -0.648963 0.861265 -1.075069 0.161426 0.564748 0.562726 -0.356758 -0.255987 0.193408 1.479573 -0.609388 0.469702 0.463242 0.092069 0.358592 -1.376657 0.528695 -1.511010 -0.619137 -0.726988 -0.409431 0.460804 -0.861948 -1.206222 0.632736 -0.539529 0.578890 1.862023 -1.075168 -1.190622 0.521716 -0.120056 0.576403 -0.014409 -0.539878 0.250892 0.626153 -0.970081 -0.573026 -0.513021 0.909850 -1.093740 0.994107 -0.661683 0.301609 -0.112908 -0.842408 -0.133173 0.565234 0.594907 0.007391 -0.268314 -0.368799 -0.621892 0.069048 -0.555771 0.428609 0.752766 -0.545152 -0.912031 0.192894 0.075496 -2.150388 -0.417178 0.382103 -0.109988 1.421259 -0.547399 0.077792 0.919919 0.170248 -1.425612 -0.556916 -0.726406 -0.820743 -0.240871 -0.488794 -0.324054 -1.387102 -0.185703 0.848863 -0.255699 -0.834470 0.304646 0.700930 0.702408 0.158605 0.669747 0.562746 0.335927 0.245472 -0.434979 0.189741 0.507440 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.758728 2.108201 1.644776 -2.174427 5.900427 -0.050562 1.006029 2.006436 0.583445 2.505061 -5.217219 -1.378139 -0.731187 -3.659209 0.436435 -2.054012 0.478313 1.073619 -1.785423 -0.269539 1.715562 -0.275321 0.001963 -2.693200 -0.385261 -3.730183 -2.204795 0.280501 0.877399 0.021046 0.156947 0.791955 4.968485 0.320920 3.444253 2.985929 2.522226 4.107568 -0.488868 2.647185 1.627727 2.354688 -1.597402 -3.913126 0.612017 -2.734536 -3.216959 -1.934255 0.913704 -3.518427 1.742544 2.706145 0.402866 -0.193466 -1.905477 1.860714 3.294191 -0.012251 4.004319 2.025488 -3.417320 0.710714 -2.838707 2.934204 -2.173969 3.307667 -0.004822 -4.305556 -1.743657 1.974386 1.690324 -2.529326 -3.227278 0.732924 1.048371 -2.122881 1.705055 -0.713487 -1.258389 -2.498369 -2.334039 1.580041 0.216516 3.112217 0.049274 -0.482839 -0.086090 -0.285636 0.896414 -3.412269 -1.974071 4.126930 -2.268282 0.690090 -3.156663 0.650897 0.247197 0.591901 -1.639380 -2.938622 1.235716 0.752899 0.266767 -0.532131 -1.594721 -3.322803 2.026920 2.128710 -0.978112 1.437848 0.373093 1.458704 1.562112 1.889755 -2.884940 1.661100 -3.941081 1.683700 -0.863807 -0.055989 -0.617247 0.035039 0.926399 1.067086 2.342710 -3.496836 3.284662 1.645372 -2.777031 -2.359042 0.550669 -2.140850 -3.614574 -0.230203 1.614569 1.535903 0.434688 -0.702544 0.284381 -1.578009 -0.868510 -2.486903 -0.857177 2.296833 -3.233399 -0.556236 -0.350568 -0.623972 -2.136159 2.678065 1.644540 0.973040 4.433540 1.892603 -1.201392 0.499428 -3.636582 1.090369 5.922684 1.896920 -3.596292 2.148300 -2.146041 0.996186 1.894664 1.135779 0.542652 1.188446 -2.551553 -0.885285 -0.620129 -1.689632 4.280555 2.756171 1.401598 -4.057900 3.025782 -1.306009 -1.266866 5.841878 3.626719 -4.626606 0.723222 3.474802 -2.361548 -1.642142 1.776972 -2.438556 -1.747519 -2.122846 0.707545 1.029586 -2.801804 -2.134938 0.796422 -3.859839 4.109870 0.640211 0.587721 0.255832 -3.297309 -4.121985 5.764946 -0.120212 -0.320060 -0.489002 -1.155794 -0.986752 -4.678923 0.479634 1.775231 -2.232970 -1.494371 -2.907589 1.063749 3.863156 -2.691779 1.773540 -2.369139 -1.129340 1.582188 -0.582680 1.951517 -3.678369 -2.267354 -1.237205 -0.559808 1.674561 -2.315407 1.517199 4.447858 -1.684332 3.400173 1.330788 -2.627328 -0.459846 2.921238 -1.969156 3.923500 -0.953068 2.522733 0.468840 3.179094 -2.639092 -1.079496 -0.558950 -0.756633 -1.868868 3.026183 -3.524550 0.196870 1.341620 -2.861608 -1.868511 2.520256 1.044049 1.075895 -0.747082 0.205318 -2.563974 0.029054 -1.259711 0.742923 2.715045 -0.610907 -3.763121 -0.024499 1.692530 -2.477943 -1.483342 0.935130 0.363275 3.922783 -3.268653 1.097423 1.052482 -0.272996 -4.770525 -4.078286 0.304270 -3.725852 -2.694500 1.378139 -4.284523 -1.833934 -2.337022 0.975558 -3.183917 -1.928804 1.193004 4.544546 1.782853 -1.548961 1.646962 0.199317 2.590182 0.167014 0.247073 0.810857 2.202784 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -3.506535 0.624341 2.230894 -2.169252 6.044552 -0.474162 0.852061 3.297312 -0.497645 3.195565 -6.022077 -2.452743 -2.374827 -5.199611 0.139230 -3.082851 2.164520 -0.081625 -1.919163 1.116249 2.261328 -0.537987 0.011844 -2.957207 -0.433503 -4.081205 -2.507836 0.308855 2.470994 -1.058832 0.664518 0.792027 8.224656 1.592790 6.450219 3.983916 2.130240 5.114575 0.489488 -0.362940 0.019258 4.463827 -2.624707 -4.123554 -0.835834 -3.582426 -3.343662 -2.025748 1.442375 -2.083188 -0.855334 3.327904 0.245496 1.380456 -3.518623 0.999727 3.328450 0.125185 5.850482 1.950505 -3.576551 0.490267 -3.288218 2.655906 -2.651310 2.052112 -0.998868 -2.489479 -0.020055 0.542311 0.739711 -3.177675 -3.026956 1.806494 1.890947 -3.124468 2.890775 -0.432899 -1.450175 -4.765094 -3.136010 1.491319 -0.414883 4.068279 -0.729576 -0.442035 0.644039 0.175069 0.580761 -5.277698 -0.982370 3.849019 -3.817742 -1.974246 -2.533046 3.769580 -0.614945 2.073215 -2.383218 -3.450511 1.350597 -0.482286 0.303065 -1.509156 0.557316 -3.400352 1.476728 0.680250 -0.259720 3.269820 1.786113 2.868776 4.103827 3.399420 -3.831469 1.269519 -4.743780 2.058204 -3.088580 -0.578048 -0.754803 1.569712 1.551573 1.932760 3.809391 -5.326143 2.833166 3.289295 -2.094860 -3.092257 0.384487 -3.992861 -5.128650 -0.413329 2.510610 1.956913 1.081001 -2.797895 0.954238 -1.262074 -0.342256 -1.224491 -0.085361 2.571036 -3.917555 -1.298622 -0.324026 -0.456809 -2.281475 3.821390 1.860325 1.469650 5.710395 1.600225 -3.422470 0.208538 -4.979761 0.525956 7.601485 -1.099969 -4.442362 3.339511 -2.860095 0.403863 2.349078 2.858452 2.837969 -1.145768 -3.464034 -1.583801 0.470053 -1.080948 5.905688 1.659250 1.912004 -3.676101 4.537368 -1.877826 -1.598568 6.171965 2.847939 -5.383298 0.692074 2.900139 -2.918570 -1.302734 2.130588 -2.798392 -1.068839 -4.357529 1.112247 1.546827 -2.950175 -0.927795 0.940297 -5.092121 5.025866 0.397801 0.238657 0.503365 -3.820246 -4.886955 7.629245 -0.189632 0.013956 -1.315050 -2.196242 -1.066785 -6.567363 0.723109 -0.349214 -2.147748 0.085328 -4.112617 1.652295 3.838228 -1.992217 3.057472 -4.748147 -1.023602 2.148581 0.011349 1.922018 -2.900313 -3.246997 -0.735971 -1.571010 2.634680 -4.277872 2.962346 5.793237 -1.824253 4.333595 -0.165808 -2.745672 -0.091242 2.707894 -4.631517 5.470304 -1.568053 3.836923 0.171481 3.604994 -2.856768 -2.042701 -0.833509 -1.587470 -2.364943 2.568940 -3.896082 0.461295 1.356421 -2.827353 -2.417871 1.806622 -0.125146 0.058830 -0.120101 0.319226 -5.048931 0.458445 -2.225906 2.080223 3.755862 -0.098135 -4.644024 1.060251 2.318980 -1.434929 -0.846585 -0.008008 -0.194727 4.315416 -4.380712 -0.830473 1.225267 1.516652 -3.031209 -6.305844 0.993736 -3.862032 -2.538582 3.004540 -4.492122 -1.683925 -3.234266 0.033548 -3.958941 -2.019635 2.171209 6.154504 2.582057 -3.785499 0.258155 -0.091211 2.994660 0.203411 0.773401 1.026810 2.112168 +PE-benchmarks/binomial-coefficient.cpp__main = -0.684953 0.531302 0.668557 -0.614471 2.117417 0.187431 0.245597 1.523857 0.110768 0.685323 -1.452125 0.013710 0.211873 -0.433164 0.179528 -0.381760 -0.189058 0.275018 -0.830590 -0.478989 0.389188 0.747264 -0.183258 -0.681463 -0.181247 -0.747275 -0.738003 0.060636 0.105029 0.384604 -0.451415 0.144395 1.209637 -0.305177 1.052156 0.770101 1.370230 0.656833 -0.506047 1.199431 0.799589 0.461356 -0.507818 -0.808860 -0.063691 -0.892243 -1.140615 -0.203627 0.195845 -1.219620 0.953598 0.563227 0.225132 0.041330 0.287662 0.958465 0.164780 -0.378960 0.876630 0.670151 -1.727174 0.127353 -0.919148 1.754293 -0.284894 1.751877 -0.372097 -1.568146 -1.022678 0.652768 0.806845 -0.937749 -0.686627 0.234488 0.055646 -0.369253 0.677873 -0.273834 1.024762 -0.389873 -0.354702 0.648541 -0.082009 0.555727 -0.046058 -0.243717 -0.580680 -0.134803 0.065759 -0.847796 -0.714378 1.493473 -0.994288 0.418669 -1.884018 -0.926120 0.016596 0.436157 -0.029496 -1.079237 0.474119 0.654385 -0.082048 -0.466500 0.107454 -0.699695 0.380681 1.050990 -0.070328 0.602175 -0.997434 0.524444 0.489113 0.540329 0.023648 0.752512 -0.926379 0.676263 -0.744877 0.167630 -0.305288 -0.094288 0.786895 0.669519 0.566584 -0.576612 0.838354 0.234653 -1.068777 -0.398699 0.205462 -0.714621 -1.195595 -0.005237 0.218997 0.664585 -0.065702 -0.269553 0.324659 -0.559391 -0.377375 -1.206328 -0.313065 -0.471593 -1.014715 -0.360591 0.018577 0.247968 -0.704984 1.181916 0.697184 0.205709 1.216399 0.408249 0.058183 -0.347368 -1.051071 0.340356 1.337618 0.227704 -0.924229 0.587587 -0.994834 0.263993 0.562759 0.271712 -0.406549 1.166695 -0.509611 -0.046104 -0.572550 -0.409042 1.295165 1.283194 0.266961 -1.106154 0.207559 -1.624294 -0.541879 1.461997 1.455716 -1.509004 -0.250168 0.763897 0.151069 -0.556527 0.505469 -1.041289 -0.837960 -0.368921 0.037735 0.376118 -0.658421 -0.590491 0.881354 -0.960335 1.206908 0.141146 -0.082946 -0.266008 -0.908096 -0.743867 1.659046 0.190629 -0.172303 0.110195 -0.007666 -0.142867 -1.108705 0.028897 0.892366 -0.295722 -0.638061 -0.685088 0.321359 0.924668 -0.950695 0.555239 -0.593614 -0.430654 0.382687 -0.848674 0.727292 -1.535283 -0.554677 -1.272008 -0.343047 0.597604 -1.131332 0.157163 1.346407 -0.244844 1.309260 0.901113 -1.183512 -0.913217 0.835443 -0.386032 1.031752 0.015379 0.020271 0.212495 0.834944 -0.911903 -0.416464 -0.538539 -0.061517 -0.500436 1.098119 -0.846805 0.188874 -0.073426 -1.077422 -0.191785 0.807351 0.312092 -0.039193 -0.264470 -0.071587 -0.920646 -0.258452 -0.887004 -0.018237 0.710971 -0.810978 -1.255959 0.090209 0.171108 -1.435960 -0.520163 0.177368 0.203549 1.157912 -0.766008 0.244207 0.673277 -0.021731 -2.031361 -0.782212 -0.513667 -0.934715 -0.884334 -0.344781 -0.719912 -1.062829 -0.613961 0.167694 -1.013228 -1.397153 0.792310 1.314185 0.529324 -0.414501 0.431962 0.094645 0.954433 0.392101 0.149871 0.227021 0.244270 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -5.020316 3.899041 4.129464 -2.074632 6.219923 2.244713 1.516211 2.177872 -2.651886 5.861740 -7.380124 -2.790060 -3.257221 -4.424272 -1.018414 -4.755919 0.764579 -1.375911 -1.676171 1.824645 2.867650 -4.032838 0.060202 -3.221644 -0.917744 -5.753315 -3.303391 0.040796 6.623827 -1.965483 -0.381839 -0.731907 9.294257 0.904473 7.657317 5.180903 1.975316 6.717710 0.329173 -1.174942 -2.275892 6.400213 -4.875062 -4.147991 -0.459604 -5.947072 -2.947704 -2.098674 2.167211 -1.493920 -0.382186 4.901257 -1.289878 1.677713 -3.774297 3.267797 4.606961 1.117865 9.546024 0.942004 -2.531309 -0.664863 -5.333995 3.415935 -2.496896 2.599321 -2.197773 -3.750530 1.677326 -2.257356 -0.349256 -4.276105 -2.119361 5.671868 1.985293 -5.159586 2.450128 -2.362823 -7.993537 -7.088898 -5.276184 1.222038 1.194998 5.442166 -0.521617 -0.059839 0.269143 2.621319 -0.503469 -9.154513 0.039444 7.017979 -4.292413 -1.054105 -2.091695 5.244190 -1.281321 4.085986 -4.778362 -1.480317 1.493334 0.554231 0.868199 -7.099766 1.992761 -6.706213 2.463574 -0.388653 -0.564373 1.732330 4.133491 3.266358 6.841568 6.988498 -6.771625 1.117269 -5.334956 1.113663 -0.970205 -0.417225 0.447679 3.360056 -1.752902 1.117053 7.297281 -8.363227 1.926868 2.027218 -3.797614 -7.412559 -0.929314 -7.155700 -5.920756 -1.290478 2.388504 2.420679 1.070976 -5.510103 -0.091852 -1.962487 -1.693867 -2.815407 2.404267 6.177599 -5.658840 -1.445266 -0.511517 -0.747300 -3.417090 6.070453 3.647390 3.150540 7.808356 3.982678 -2.096151 1.979196 -5.616658 -0.394917 7.629951 2.229021 -7.292971 5.011849 -4.689427 -0.157062 3.623874 3.448059 5.030085 0.550717 -6.175511 -4.014498 2.451598 -0.586051 7.940245 1.571970 2.728631 -0.950630 9.007909 -1.804995 -5.673382 7.024141 3.916419 -5.961521 1.563640 1.857614 -3.614418 -0.589765 4.587688 -4.953840 0.111025 -4.057048 -1.237329 2.192148 -3.052024 -0.610531 1.245319 -7.584380 9.794057 0.365439 3.146204 2.317920 -6.301048 -7.897469 7.359223 -1.094046 -1.098946 -3.158873 -2.194743 -4.923150 -7.051773 1.356530 -0.037570 -3.906373 -3.395357 -6.880306 2.707601 3.494519 -0.834931 5.195250 -5.781269 -3.580474 2.384873 0.638837 5.006473 -1.582617 -4.123976 -1.310876 -1.468061 5.217508 -4.193368 7.312138 9.165078 -2.192837 5.976733 -2.077261 -3.278787 0.748224 3.038992 -7.060781 6.890921 -1.892417 3.917501 -0.892051 4.513850 -4.373037 -2.007399 0.953595 -0.243083 -1.122038 2.785471 -2.927344 0.178408 -1.005336 -6.489005 -1.469149 0.793017 -1.900471 -0.674076 0.817679 1.575303 -6.010375 -0.931143 -3.757449 0.475864 5.104557 0.670344 -4.242318 2.000406 -1.464871 0.970075 2.015706 -0.147757 -0.577588 4.027226 -6.282442 -3.429215 -0.023462 -0.695348 -3.892963 -8.218044 -1.659171 -5.149223 -4.661584 5.833882 -6.091604 1.205333 -5.186533 -2.621818 -6.626770 -2.467904 2.423512 9.369027 4.251780 -5.572434 1.125344 -0.879396 6.615217 0.656786 1.014521 0.885705 2.676979 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.784587 -0.127678 -0.528997 -0.321090 1.792723 -0.094174 -0.060588 1.031657 0.112505 0.589835 -1.056233 -0.508076 -0.522419 -1.131139 0.290422 0.506804 0.450333 0.457716 -0.701844 -0.455303 0.745852 0.005244 0.161884 -0.642154 0.126262 -0.321470 -0.367831 0.011292 0.350093 0.248588 -1.015661 0.332634 1.182645 0.133668 0.601640 0.502939 0.986052 1.230016 -0.132231 0.257744 0.292591 0.882605 -0.405222 -1.428333 0.734160 -1.039862 -0.657450 -0.414991 0.548559 -0.885196 1.035004 0.742165 0.118603 -0.101506 -0.441859 0.200943 0.851481 0.199390 1.075176 0.689664 -0.888598 -0.413257 -0.614927 0.694593 -0.634156 1.116369 0.232879 -1.338691 -0.949855 0.487357 0.617828 -0.922750 -1.001556 0.006886 0.150417 -0.307759 0.731530 0.120302 1.077205 -0.658366 -1.240642 0.071339 -0.773184 1.003063 -0.295232 -0.249673 -0.329123 -0.356499 0.490744 -0.802338 -0.492553 0.771324 -0.590564 0.866146 -0.891099 -0.283703 -0.313311 0.142390 -0.719378 -0.670806 0.222176 0.450987 0.220686 0.051653 -0.110854 -0.513526 0.977893 0.364601 0.159212 0.293677 0.699113 -0.202683 -0.105438 0.399750 -0.218280 0.208778 -1.005607 0.373192 -0.042672 0.297201 -0.277709 0.183613 0.856561 -0.458072 0.500984 -1.025641 0.912306 0.419165 -0.625237 -0.424661 0.481093 -0.488537 -0.987606 -0.055882 0.886332 0.052008 -0.255244 -0.107500 0.431488 -0.326304 -1.234120 -0.127027 -0.750784 0.337692 -1.070221 -0.175750 -0.414315 -0.706327 -0.234124 0.427755 0.151062 0.437995 0.978648 0.746988 -0.666214 0.128888 -1.062018 0.819035 1.750849 0.408200 -1.093384 0.177803 -0.589772 0.738801 0.734229 0.119818 0.344121 0.573325 0.270194 0.628513 -0.166746 -0.107949 1.139696 0.761371 1.038218 -1.249235 -0.088557 -0.369274 0.092487 1.612558 0.749194 -1.464460 0.479121 0.862935 -0.203089 0.080239 -0.044199 -0.403258 -0.307863 -1.013752 0.571495 0.700589 -1.300203 -0.747705 0.269026 -0.972049 1.019510 0.111417 0.185662 0.335125 -1.330688 0.361626 1.610350 0.156331 -0.122107 -0.276862 -0.583183 -0.679590 -1.222779 0.361063 0.282716 -0.430101 -0.539517 -0.780582 -0.213535 1.566375 -0.331263 0.122006 -0.922602 0.392946 0.379330 -0.282901 0.738428 -1.053691 -0.705490 -0.150418 -0.343091 0.757119 -0.657240 -0.253493 0.854290 -0.914412 0.670077 0.830260 0.206705 -0.146738 0.732490 -0.199139 0.862746 -0.114775 0.915137 -0.174766 1.030048 -0.645724 0.018245 -0.307415 0.350091 -0.427958 1.006248 -0.934433 -0.047260 0.746178 -0.753329 -0.735921 0.609950 0.375471 0.804284 -0.114448 -0.522590 -0.447498 0.032273 -0.166997 0.283105 0.948945 -0.420527 -1.079141 -0.331649 0.179058 -0.909192 -0.351601 0.580958 -0.039308 1.381999 -0.849152 0.243759 0.326790 -0.021112 -1.069534 -0.781682 -0.323367 -0.260930 -0.364327 1.112536 -1.269054 -0.490066 -0.536865 0.591965 -0.945265 0.006329 -0.447870 0.933393 0.427956 0.112894 0.875102 0.502895 0.554026 -0.085394 -0.145754 0.302427 0.629486 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.941400 3.868537 3.955141 -1.863527 6.647350 1.289534 3.032566 3.767436 -4.512514 4.743544 -6.183092 -0.702206 -1.659000 -4.636511 -0.195665 -4.231478 0.661031 -0.820948 -0.927324 1.850968 2.090921 -3.190435 -0.274134 -2.756713 -0.754371 -6.097251 -1.800409 0.098501 5.764756 0.008625 1.035207 -0.285039 7.429498 0.503926 6.318611 4.415969 1.784232 4.250619 0.625141 -2.303534 -1.547266 4.525522 -3.598826 -3.726943 -1.287112 -3.963831 -3.816140 -1.736656 1.244348 -3.165246 -2.926276 4.063668 -0.951818 1.287100 -2.584898 3.479621 4.439196 -1.105274 7.010170 1.135392 -2.948705 -2.332698 -4.019756 4.294771 -1.039266 1.209804 -1.849560 -3.792409 1.566475 -0.629374 -2.727816 -1.702598 -0.453751 4.499487 2.630946 -4.206492 1.908877 -1.768936 -7.959190 -4.885435 -3.017682 1.309254 0.916240 4.945284 0.113550 -0.098458 2.027208 1.402945 -0.320370 -7.358462 -0.222234 6.821632 -3.751499 -2.611362 -3.258000 4.530327 0.363796 3.236643 -3.050142 -2.694051 1.462692 0.382905 0.508116 -7.230974 0.411203 -6.028913 0.495399 0.133158 0.257757 4.586589 1.491280 3.136739 4.708113 5.450575 -6.319763 1.881790 -4.233775 2.153336 -2.238340 -0.106112 -0.271304 1.778164 0.455087 2.547153 5.550837 -6.768465 1.938847 2.582268 -2.009882 -5.911654 -0.819561 -5.833582 -4.623630 -0.973353 1.797763 1.736828 1.159447 -3.938456 0.393062 -1.053629 -1.265566 -2.990806 1.245122 5.239550 -6.979908 -1.022899 -0.231612 0.555580 -3.004322 5.130135 3.264464 2.545774 6.066866 2.919659 -1.653027 3.811271 -4.742581 0.304424 7.565753 1.966605 -5.316813 4.349338 -4.816398 -0.608980 2.305260 2.225296 3.655721 1.269920 -6.588784 -3.820318 3.033416 -0.843042 6.589360 2.878747 1.476478 -2.961228 8.085393 -2.938158 -4.762044 5.658784 4.215122 -5.857195 2.475397 2.126551 -5.227529 -0.416611 3.406261 -5.262724 -0.802313 -3.538181 -1.058154 1.934627 -2.590604 -0.708185 0.919411 -5.947756 7.451746 0.668535 2.396981 0.680164 -3.293058 -6.458743 6.785018 0.288671 -0.764165 -2.702526 -1.678005 -5.934758 -5.674358 0.717039 0.037727 -3.263274 -2.675434 -5.565492 0.814058 3.001189 -1.152822 4.399643 -6.525230 -1.721758 2.062938 1.955629 3.299541 -2.432751 -3.468390 -1.684252 -1.774678 3.231341 -4.054323 6.241353 6.961556 -1.564120 6.278136 -2.801909 -4.605150 0.800229 2.362988 -5.674509 5.688720 -1.069775 4.635612 0.265532 3.969539 -4.157416 -1.650836 -0.054166 -2.620020 -1.637146 2.815248 -3.190847 0.268117 0.299447 -4.878901 -2.545661 0.965967 -1.198930 0.250403 0.149480 0.957650 -5.416429 -0.771517 -3.948905 0.761156 3.983346 -0.807859 -3.882290 1.567181 -0.138842 0.316198 -1.047925 0.099577 0.209917 3.078080 -5.163052 -1.721698 0.226669 0.210630 -4.286110 -7.269854 0.178324 -4.778402 -5.058820 3.444986 -5.469220 1.034660 -4.266082 -2.106689 -7.592379 -3.907501 2.578942 7.944434 1.115551 -4.141208 1.078981 -0.778842 4.743456 0.438551 2.575541 0.486622 1.822006 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -0.933096 0.535026 1.086779 -0.921005 2.324773 -0.116216 0.316337 1.478742 1.716880 0.373073 -2.164118 -1.087985 0.122363 -0.180931 0.307164 -0.843507 -0.409705 0.952568 -1.535888 -0.937559 0.730093 1.743017 -0.506818 -1.149592 -0.181037 0.197433 -1.573801 -0.001209 -1.146209 0.521501 -0.590835 0.551350 1.675466 -0.055813 1.665711 1.131925 1.606240 1.659180 -1.222234 3.504712 1.596461 0.756999 -0.515948 -1.549915 0.361845 -1.319072 -1.097978 -0.728095 0.091811 -1.712351 3.271933 0.461237 0.729605 0.117046 0.551858 0.538922 -0.080062 0.645826 0.846436 1.363735 -2.613548 2.100817 -1.441575 1.642019 -0.602424 3.480326 -0.018296 -2.499548 -1.982933 0.925842 2.915891 -2.172043 -1.967405 -0.376654 -0.501756 0.066915 1.209584 -0.195155 2.244790 -0.003455 -0.755968 0.862287 -0.157508 0.485748 -0.599700 -0.724947 -1.949512 -0.508850 0.304169 -0.427140 -1.641231 1.825872 -1.218191 1.458253 -2.500995 -2.214851 -0.289213 0.613334 -0.160009 -1.326341 0.805992 1.174922 -0.252881 1.413860 -0.801964 -0.210734 1.206877 2.209980 -0.917235 0.013954 -1.127140 0.915214 0.620410 0.114469 0.691308 1.520884 -1.320840 0.984918 -1.070241 0.271937 -0.013474 -0.214895 0.586039 0.369066 0.173722 -0.054934 1.332582 0.144910 -1.951275 0.151231 0.667256 -0.671467 -2.021266 -0.264371 0.394298 1.606284 -0.385867 -0.080919 -0.040137 -1.106028 0.249902 -1.959830 -0.684864 -1.661644 -0.071474 -0.857980 -0.113764 -0.063271 -1.119404 1.481579 0.573401 -0.116203 1.470669 0.439407 0.112230 -2.627549 -1.333105 0.306715 1.537040 -0.233716 -1.242540 0.300972 -0.455187 0.816160 1.082149 0.240096 -1.121120 1.647002 0.216653 0.385344 -2.283152 -0.958425 1.615165 2.259551 0.396741 -1.564543 -0.422351 -2.162810 -0.642260 2.446058 2.048401 -1.708794 -1.769310 0.943803 0.795841 -1.515670 0.522503 -0.654429 -1.215847 -0.155994 0.281707 0.093097 -0.873815 -1.154043 1.601071 -1.303880 1.245307 0.036194 -0.389841 -0.848301 -1.918606 -1.087082 2.637844 0.156396 -0.375540 0.730870 0.310853 1.445475 -1.556603 0.198405 1.632604 0.166581 -1.141757 -0.423761 1.329842 1.427670 -2.031402 0.214511 1.538738 -1.316131 0.350952 -2.497073 1.103243 -2.860278 -0.779102 -1.988519 0.008119 1.111142 -0.875419 -0.646218 2.226385 -0.216217 0.973286 3.267638 -1.137921 -1.944970 1.714258 0.013318 1.159551 -0.617197 -0.873840 -0.082458 0.960123 -0.938521 -1.085106 -0.577743 1.032309 -0.808800 1.689636 -0.817400 0.641611 -0.620801 -1.719658 0.742672 1.702764 0.642704 -0.252656 -0.430728 0.248050 -1.344960 -0.082815 -0.740246 -0.460308 1.116635 -0.644310 -2.116225 -0.143340 -0.060213 -2.611133 -0.532605 0.166521 0.084584 1.934115 -0.668126 0.479975 1.190219 -0.653083 -2.815040 -0.392862 -1.056809 -1.613255 -0.891829 -0.801872 -0.011863 -1.877550 -0.608824 0.850873 -0.357148 -1.874689 0.926400 1.165697 1.680965 -0.320868 0.499155 0.354428 1.820878 0.919092 -0.703557 0.396755 0.862275 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -1.190435 -0.029970 -0.505656 -0.192068 1.693632 -0.290583 0.697339 0.612274 -0.541699 0.967603 -1.439569 -1.477291 -1.043587 -1.514944 0.095498 -0.440534 1.004828 0.191033 -0.630639 0.264695 0.785762 -0.750215 0.082286 -0.706299 0.104628 -0.767450 -0.565261 0.117029 1.519394 -0.494983 -0.815860 0.281478 2.620031 0.176831 1.889252 1.066872 0.350377 1.430317 0.320902 -1.796317 -0.282455 1.685510 -0.898916 -1.297660 -0.313042 -1.126362 -0.887337 -0.399487 0.837054 -0.124260 -0.350047 0.990310 -0.205726 0.524428 -1.060595 0.373818 1.353195 0.584113 2.094492 0.360992 -0.405121 -0.093515 -0.776434 1.296882 -0.751997 0.160007 -0.796214 -1.206437 -0.073169 -0.120082 -0.505644 -0.879848 -0.896756 0.844701 0.853847 -0.920787 0.938708 0.094405 -0.346433 -1.746421 -1.760988 -0.028567 -0.980594 1.458236 -0.472971 -0.175613 0.210265 0.056216 0.266663 -1.749221 -0.019209 1.155219 -1.082949 -0.306165 0.119751 1.030760 0.036512 0.682580 -1.332290 -1.037919 0.083458 -0.501137 0.243584 -0.741565 1.185323 -0.592738 0.039306 -0.095730 0.593047 1.688555 1.575473 0.769809 1.230025 1.118574 -1.091332 -0.664793 -1.133660 0.580703 -1.164386 -0.176003 0.121648 0.941066 0.695856 0.094881 1.492501 -2.029966 0.516543 0.856270 -0.127895 -0.958319 0.083020 -1.310301 -1.416317 -0.410228 1.027434 0.234787 0.159947 -1.066524 0.427764 -0.025212 -0.640770 0.924622 -0.113328 0.738006 -1.539094 -0.323516 -0.290933 -0.495786 -0.321219 1.089881 0.443435 0.784525 1.498709 0.965360 -1.441747 0.444925 -1.605587 0.565367 2.241885 -0.829407 -1.520275 0.879618 -1.173311 0.106470 0.992710 0.942715 1.270963 -0.161236 -0.466855 -0.080002 0.079569 0.096703 1.787212 0.003454 0.649872 -0.835629 1.365742 -0.333001 -0.747611 1.969829 0.353359 -1.695677 0.688963 0.646083 -1.453621 0.043642 0.458773 -1.134632 -0.026834 -2.006341 0.466334 0.922436 -1.145148 0.047212 0.424760 -1.565537 1.620095 0.019805 -0.523015 0.487268 -1.495390 -0.485279 2.497633 0.272479 0.156417 -0.799895 -0.974037 -0.971034 -1.939420 0.284984 -0.827518 -0.616677 -0.274715 -1.410697 -0.007675 1.477471 0.033492 1.097027 -1.946418 0.422858 0.592782 0.843925 0.690787 -0.116763 -1.080772 0.318703 -0.750530 0.648503 -1.354640 0.847089 1.333731 -0.950987 0.767979 -0.341329 -0.886694 0.473742 0.480117 -1.538093 1.487941 -0.309721 1.141531 -0.113543 1.077596 -0.928883 -0.414417 -0.114673 -0.193037 -0.980482 0.691340 -1.029779 0.043863 0.610694 -0.755052 -1.207192 0.151714 -0.171042 0.533426 0.200192 -0.512796 -1.649255 0.244267 -0.308587 0.470555 1.193791 0.248842 -1.091221 0.418108 0.043802 0.044966 -0.188000 0.050832 -0.316945 1.153940 -1.391970 -0.616112 0.206296 0.715866 -0.357213 -1.918846 -0.125101 -0.728049 -0.516602 1.858312 -1.358452 0.040644 -1.009909 -0.157736 -1.306743 -0.419302 0.442429 1.985122 0.556993 -1.153350 0.472761 0.081333 1.017321 -0.090471 0.207876 0.113743 0.515731 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = -1.173834 1.222793 1.977878 -1.205818 3.924515 0.656231 0.669014 2.807460 0.184472 1.202152 -2.804794 0.060615 0.588077 -0.388711 0.242846 -1.353858 -0.680695 0.285961 -1.635928 -0.881648 0.563556 1.699499 -0.454780 -1.240047 -0.417621 -1.374603 -1.636199 0.073336 0.041365 0.924093 -0.432024 0.108529 2.080826 -0.665609 2.006337 1.416122 2.602139 0.978345 -1.376883 2.831491 1.593333 0.677425 -0.988238 -1.208569 -0.371180 -1.650279 -2.314031 -0.300667 0.157139 -2.443006 1.561234 0.953750 0.445729 0.134355 0.995526 1.987188 0.009480 -0.858727 1.433440 1.220543 -3.524389 0.502620 -1.881856 3.285169 -0.206016 3.676976 -0.892307 -2.988978 -1.991360 1.141958 1.560886 -1.703029 -1.181919 0.548516 0.118957 -0.585109 1.197072 -0.681653 1.535877 -0.455992 -0.261429 1.358358 0.228265 0.787586 0.012408 -0.490230 -0.978168 -0.190841 -0.082206 -1.560501 -1.387245 3.114119 -1.897097 0.605162 -4.021052 -2.149562 -0.022276 1.030290 0.092196 -2.030631 0.974081 1.405803 -0.310733 -1.103166 -0.049132 -1.489413 0.524378 2.304810 -0.258972 1.041752 -2.524989 1.147589 1.099891 1.059030 -0.078295 1.854629 -1.452285 1.326331 -1.681952 0.295105 -0.579052 -0.270382 1.239114 1.660294 1.012201 -0.778827 1.438286 0.341211 -2.335623 -0.735007 0.236864 -1.507179 -2.291117 0.076645 0.077873 1.472940 -0.056418 -0.592413 0.440302 -1.215967 -0.169264 -2.649468 -0.376923 -1.327465 -1.680018 -0.784746 0.209386 0.826665 -1.523223 2.528887 1.501103 0.258628 2.259719 0.560231 0.417759 -0.932152 -1.790393 0.426126 2.240884 0.387483 -1.627666 1.146104 -1.883310 0.415492 0.922377 0.410625 -1.056239 2.456540 -1.221385 -0.301927 -1.351949 -0.861516 2.377273 2.846087 0.217346 -1.997603 0.452431 -3.680198 -1.265308 2.431817 3.082000 -2.659889 -0.900924 1.255049 0.370601 -1.316556 1.124404 -2.105013 -1.740259 -0.354785 -0.222643 0.473992 -0.882500 -1.050428 1.914686 -1.758125 2.283682 0.301220 -0.090038 -0.774302 -1.481426 -2.143194 2.944340 0.285613 -0.404380 0.397748 0.322589 0.037436 -1.862361 -0.032498 1.936248 -0.455660 -1.340149 -1.173454 0.916702 1.332528 -1.964304 1.231905 -0.606196 -1.202076 0.620171 -1.944818 1.510485 -3.038396 -0.981008 -2.931558 -0.680220 1.115625 -2.147712 0.348167 2.627773 -0.123664 2.685621 1.584549 -2.838389 -2.131495 1.534688 -0.636699 1.867135 0.074089 -0.245100 0.421183 1.498882 -1.685805 -0.914974 -0.995599 -0.313469 -0.848627 2.162896 -1.425694 0.472528 -0.524915 -2.183701 -0.030166 1.562590 0.423293 -0.513345 -0.558442 0.160204 -1.944089 -0.574168 -1.766758 -0.200080 1.216212 -1.671504 -2.349509 0.203691 0.164897 -2.814822 -1.048280 0.205929 0.405545 1.987717 -1.302386 0.362115 1.339818 -0.224565 -4.080027 -1.300295 -1.102777 -2.083858 -1.865933 -1.183859 -0.893188 -1.998550 -1.173143 0.048653 -1.662645 -3.295243 1.935465 2.487721 1.079393 -0.941036 0.573482 0.085356 1.967756 0.885795 0.346543 0.473445 0.262427 +PE-benchmarks/graph-coloring.cpp__main = -1.492401 -4.001591 0.882963 -0.608707 3.781479 -2.458235 -1.082067 5.014346 2.641416 0.083573 -3.365697 -1.881103 -2.334239 -3.135647 0.828677 -1.573812 3.161228 -0.169488 -2.164956 -1.010975 1.475577 4.307221 -0.639930 -1.896910 0.623967 -0.244423 -2.093093 -0.252098 -2.259675 0.380218 0.388794 2.519825 6.207870 3.026229 4.335718 2.028145 3.043864 3.505687 -0.052324 3.768095 1.475824 2.581266 -0.390544 -2.551194 -0.326483 -1.959606 -1.464838 -0.032987 0.288176 -0.970790 2.156436 1.101323 1.479386 2.081590 -1.936324 -2.448657 -1.173615 0.032766 1.341939 2.463661 -5.666291 0.299525 -0.782861 1.604668 -1.693213 2.733337 0.957256 0.348247 -1.141743 1.379917 3.744763 -4.187938 -3.302611 -1.576698 -0.314403 0.121577 3.312787 1.995713 6.757887 -0.038597 -1.319708 0.880563 -1.206639 0.998894 -1.618053 -1.415152 -2.458094 -2.227650 1.350548 -0.718496 -1.410166 0.856749 -3.814955 -0.135452 -4.883969 0.212151 -1.688525 1.273899 0.776741 -3.301520 0.765546 -0.390689 -0.596807 3.056266 -2.038953 -0.135846 2.339807 0.253765 -0.597326 2.491791 -1.113913 1.973526 1.473586 -0.356013 1.290250 2.001848 -3.266740 2.525978 -3.067539 -0.763701 -1.478354 -0.092900 2.497162 1.291462 -0.195974 -1.167991 1.766455 2.829967 -1.170831 0.958983 0.983746 -1.593654 -4.261620 0.578689 2.613780 2.243154 0.240507 -0.675748 1.297607 -0.790237 0.614786 -2.309137 -1.725738 -2.291141 0.293133 -2.023350 -0.310923 -0.181171 -1.661541 1.452253 -0.484635 -0.235046 2.252903 -1.293616 -3.322099 -2.825098 -3.394568 0.467737 4.441619 -2.756980 -1.907795 0.793830 -1.168622 1.579023 0.888177 1.742645 0.679183 -1.924883 0.995705 2.222872 -0.947340 -0.760596 2.841926 1.888267 2.064598 -3.471693 -2.382986 -3.828562 2.145687 3.384899 1.033245 -3.950406 -1.939617 2.172525 2.287113 -0.944204 -0.236124 0.264232 -1.481202 -3.886262 2.848785 0.947054 -2.562415 0.326578 2.158718 -2.102188 0.231886 0.185764 -0.497641 -0.940244 -2.935493 -1.441396 6.625354 -0.105749 1.460270 1.292709 -1.638133 3.677052 -4.591331 0.120532 0.191244 0.968267 2.781805 -0.603115 1.479265 3.359467 -2.291658 1.570881 -0.763681 0.168416 1.017730 -3.638948 -0.436501 -4.453051 -2.500423 -1.564422 -0.481391 2.237584 -3.936203 -2.170027 2.258299 -0.640756 3.144623 3.482050 0.945771 -2.870392 1.323721 -1.515796 2.411828 -1.351699 2.081416 0.050645 2.120409 -1.149652 -2.564130 -2.226617 0.315099 -2.647188 1.550379 -2.857326 1.374808 1.937178 -0.169789 -0.443205 2.020093 0.473959 -0.823571 -0.646116 -0.446555 -2.569310 0.509865 -1.759812 3.603081 2.125678 -1.012634 -3.759785 0.018045 3.145228 -5.016630 -0.250711 -0.100783 -0.467422 3.767479 -1.533993 -0.786140 2.653721 1.828304 -1.111114 -3.284035 1.002034 -0.778377 -0.406749 -0.791586 -1.322702 -4.203084 -0.823393 1.723444 -1.572937 -1.662367 0.468668 2.032066 2.545999 -1.065958 -1.048954 1.397389 -0.646420 0.010550 0.094990 2.176294 0.836339 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -10.014539 6.658184 6.396917 -5.761937 15.918068 -0.268922 5.040443 3.962666 0.075122 8.962084 -16.448554 -7.851221 -4.895100 -11.793640 0.258407 -8.407457 2.770818 2.480652 -4.694819 2.031650 6.309742 -4.060564 -0.404707 -8.189554 -1.251095 -10.734620 -7.426187 0.775302 6.504390 -3.017157 0.833431 2.001896 19.057368 2.539338 15.914113 11.230507 4.832936 14.721360 -0.490814 2.758029 0.912785 10.936344 -7.154558 -12.791456 0.576103 -9.457619 -8.764678 -7.770067 3.597541 -7.459086 3.832001 9.512374 -0.273227 1.910158 -7.750856 4.644540 11.635866 2.617591 16.062908 5.214013 -7.938348 5.341003 -9.840132 7.099118 -6.572264 7.679579 -1.863907 -12.065336 -1.505761 1.564840 4.374020 -9.256552 -9.282908 6.081981 4.500080 -8.310182 5.919249 -2.765116 -9.202749 -12.534438 -10.540517 3.655604 0.524879 11.270273 -1.158004 -1.321490 0.055548 1.256059 1.566002 -14.235852 -3.790324 13.309220 -8.147628 -0.480549 -5.460989 6.543180 -0.249184 4.856158 -8.296090 -8.169060 3.828131 0.095408 1.385819 -2.178521 -1.281609 -10.033997 5.052546 4.091313 -2.551914 5.425562 6.663782 6.508195 10.215844 9.143768 -11.737209 4.168820 -12.087675 5.228787 -4.288316 -0.849636 0.484952 3.611138 0.743703 2.655573 10.598854 -14.086078 7.735315 5.966252 -7.492781 -9.953629 0.625803 -10.535822 -12.529046 -2.837320 6.031285 5.623598 1.834666 -6.318555 -0.229353 -4.406582 -1.330695 -5.491649 -0.083446 9.077658 -10.208244 -2.475088 -1.554294 -2.852404 -6.964994 10.130145 5.732907 4.820182 15.181543 7.486613 -6.002469 -0.189125 -12.349811 1.338792 18.706497 2.014134 -13.084782 8.539465 -6.956509 1.528594 7.431421 6.182813 5.982120 -0.098531 -9.705822 -4.910213 -0.364591 -3.971282 15.260221 6.166831 4.474810 -9.361563 13.979069 -1.854508 -8.176424 18.996990 8.947228 -14.084269 1.626412 8.162536 -9.391266 -5.068713 7.126462 -8.571053 -3.631897 -8.719131 1.635404 3.085371 -8.154133 -4.220807 3.163446 -14.479326 15.256108 1.368240 1.971198 1.882249 -11.958572 -14.646501 19.750497 -0.750789 -1.433722 -3.642629 -4.668480 -3.147954 -15.702873 2.389545 1.730518 -6.467743 -5.299909 -11.325335 5.458464 11.216300 -6.086749 7.881613 -7.151774 -5.276539 5.148392 -0.431184 7.027557 -9.528442 -8.409566 -2.260515 -2.030663 6.645910 -6.923697 8.627828 17.114951 -5.571926 8.962376 2.735726 -8.566005 0.469559 8.628776 -10.760166 13.714274 -4.648433 8.216473 0.097089 9.769144 -8.588693 -4.884718 0.166597 -0.784346 -5.859499 8.215560 -9.017712 1.058950 1.773038 -10.571237 -5.375310 5.569498 0.399964 1.578969 -0.475859 1.308865 -11.803936 0.793409 -4.984827 2.005886 10.179635 0.941351 -11.485102 2.155797 2.524466 -3.106644 -1.833969 1.353810 -0.412621 11.473333 -11.865649 -0.651802 1.976189 -0.050583 -10.748789 -15.344731 0.714876 -13.361993 -8.303767 8.494419 -12.478158 -2.280315 -9.175021 0.019205 -10.754864 -5.231950 4.565526 16.875238 7.992429 -8.366645 3.811072 -0.641329 11.009006 1.143287 0.533712 1.884275 8.007223 +PE-benchmarks/trie-suffixes.cpp__main = -7.256764 -1.343805 -4.351173 -6.858659 20.357718 -3.441319 -0.719483 14.111663 4.424913 4.610208 -14.178598 -4.606682 -1.834980 -13.509470 2.282594 1.048600 6.724774 2.563964 -8.176289 -1.855472 4.279476 3.756843 1.637732 -7.058639 -1.086600 -4.306209 -4.897356 2.090964 -1.141462 -1.072143 -3.280123 4.755477 17.963449 2.736751 11.792268 5.849685 11.200755 11.053288 2.770431 1.786330 8.127039 4.913696 -2.339885 -11.384267 0.790594 -7.793337 -12.493988 -3.698777 2.939418 -10.469487 6.432590 8.269044 3.851872 0.473075 -6.862519 2.298941 7.367011 -4.180994 10.485892 7.152322 -15.446910 -3.100882 -3.309563 8.134618 -6.080712 8.164935 -0.166306 -9.065329 -8.086875 11.213024 5.814595 -12.074099 -10.823683 -2.089528 4.133245 -4.429688 9.229414 2.024517 15.739881 -8.904802 -5.564057 5.938192 -3.883597 7.777292 -0.474423 -0.457399 -1.962589 -4.590409 2.477725 -8.412563 -3.426689 8.164847 -9.987018 1.320883 -10.916023 2.387129 -3.198207 -0.241828 -6.601644 -14.187913 3.360820 0.075350 -0.557640 0.861041 1.176698 -6.120037 5.840931 6.355796 0.306252 9.382717 2.022486 4.142529 4.320702 3.436680 -3.565537 3.542922 -14.314627 5.014881 -5.663380 -1.248435 -4.716125 -1.944020 11.323089 5.196950 3.124111 -11.094702 11.962962 9.055338 -6.781905 -3.717308 2.737654 -4.002051 -11.092430 1.719572 7.110441 1.889969 2.771027 -0.200229 4.345528 -4.181434 -5.764278 -5.077322 -5.574105 3.829982 -11.275897 -1.577318 0.537558 -1.467796 -4.700482 6.950478 4.033942 -0.757393 14.445764 0.542833 -9.131144 2.666692 -11.326533 6.263894 19.546271 1.401038 -10.098806 7.122996 -8.941998 4.032133 2.764042 5.477562 1.489906 -1.723033 -3.938314 2.706911 1.347889 -2.625127 12.713045 0.570227 6.589976 -16.352473 2.251558 -5.313918 4.755086 19.772781 7.300041 -15.861165 0.493022 13.277426 -0.469111 -1.286790 3.456602 -7.907138 -8.415716 -8.761497 7.376945 4.306056 -10.592695 -5.244693 3.981003 -9.955655 7.438474 1.819564 -5.506338 -1.801397 -10.629328 1.020827 22.652623 0.563108 2.109076 3.239579 -6.216548 3.680703 -16.455097 -0.582375 5.842300 -3.099111 3.070882 -4.991996 -0.120844 13.940816 -7.639886 4.365497 -14.268529 3.392183 6.064642 -3.935150 2.007272 -11.506996 -6.896673 -1.082026 -2.944725 3.070327 -12.564903 0.123146 6.990407 -5.965455 11.258222 4.143733 -3.206931 -1.180660 5.744194 -4.174749 13.485569 -0.540804 13.435841 2.530564 10.711560 -7.319349 -2.532032 -7.096260 -2.419091 -9.845989 8.917781 -14.177365 0.172735 7.994123 0.365551 -11.660200 7.354398 5.728506 0.892795 -2.532922 -4.704598 -3.909765 -0.298705 -4.872967 9.036131 6.350846 -5.362611 -11.647194 -0.741860 12.310271 -9.901645 0.127514 3.629951 2.057560 15.443616 -9.572028 4.022822 5.910844 6.059430 -12.541013 -12.383751 4.259143 -5.397306 -0.473111 1.622927 -14.456815 -12.776461 -5.064569 6.616612 -8.205332 -0.325922 4.148956 13.978354 5.610797 -7.009935 3.956827 2.343975 0.834104 -0.048975 2.801747 4.763236 3.663863 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -2.082102 1.203269 0.321742 -1.916195 4.133935 -0.592263 0.907519 2.135725 0.754950 1.412605 -4.085337 -1.595984 -0.683161 -3.407812 0.452540 -1.367837 1.235649 1.089515 -1.658896 0.073885 1.560423 0.070379 0.025043 -2.301679 -0.241638 -2.104262 -1.382211 0.158716 0.550207 -0.135185 -0.578224 0.828008 4.623445 0.667900 3.496860 2.458572 2.096735 3.315451 0.464117 1.022544 1.051674 2.156288 -1.185288 -3.373292 -0.010940 -2.135723 -2.319020 -1.420302 0.792992 -2.275972 1.575017 1.988889 0.659416 0.266459 -1.920498 0.754914 2.403765 0.452165 3.168808 1.878289 -2.491059 0.542479 -1.792378 1.951767 -1.938653 2.396555 0.088541 -2.750489 -1.413012 1.551640 1.247870 -2.303300 -2.940136 0.081319 0.944371 -1.657095 1.909625 -0.236462 0.123737 -2.093474 -2.021686 1.451581 -0.660924 2.792286 -0.070289 -0.300362 -0.460742 -0.313630 0.848209 -2.677997 -1.285788 2.531366 -1.950880 0.018579 -1.976799 1.115041 -0.179330 0.608995 -1.687947 -2.917079 1.221284 0.267003 0.165308 -0.122336 -0.681883 -2.084070 1.557164 1.985577 -0.895027 1.836623 1.141157 1.481094 1.661953 1.505713 -1.699451 0.779814 -3.635469 1.396070 -1.640253 -0.249656 -0.395656 0.292836 1.331433 0.886302 1.623831 -2.874064 2.786141 2.342537 -1.975759 -1.451701 0.850788 -1.782150 -3.166493 -0.352577 1.636605 1.216754 0.616265 -0.771327 0.559171 -1.336094 -0.552928 -1.185208 -1.071666 1.181147 -2.682233 -0.654003 -0.259123 -0.623223 -1.491945 2.167830 0.899743 0.490949 3.569545 1.213535 -2.009353 0.020299 -2.927732 0.865138 4.921006 0.550914 -2.718162 1.673391 -1.611539 0.688844 1.543460 1.287112 0.532719 0.245613 -1.863730 -0.490822 -0.736235 -1.292113 3.489514 1.353780 1.253533 -3.124722 2.459520 -0.977045 -0.857370 4.793745 2.487569 -3.392904 0.044502 2.734849 -1.621793 -1.237240 1.090307 -2.067026 -0.973560 -2.294964 0.801939 0.797432 -2.456747 -1.651279 0.601943 -3.009300 2.844045 0.569511 -0.489535 -0.364473 -2.888043 -1.732535 5.461373 -0.050874 -0.264534 -0.309958 -1.215939 -0.438184 -4.070542 0.458477 0.839394 -1.405001 -0.404180 -2.122744 0.680537 3.137171 -2.148311 0.901766 -2.032270 -0.497747 1.468594 -0.290440 1.347834 -2.581777 -1.941587 -0.401025 -0.629534 1.416407 -2.303782 1.125224 3.314479 -1.360861 2.188677 1.212297 -1.817549 -0.151950 2.382793 -1.844787 3.380599 -0.983025 2.151582 0.513061 2.552304 -2.223603 -1.129051 -0.813553 -0.613745 -1.748120 2.430335 -3.026304 0.226172 1.100216 -1.357303 -1.869539 1.937426 0.929966 0.451317 -0.629332 -0.113471 -2.153755 0.304999 -1.058411 0.925081 2.368596 -0.324830 -3.240363 -0.077714 1.923112 -1.613151 -0.765248 0.620438 0.123679 3.583846 -2.550478 0.718439 0.978971 0.531751 -3.307375 -3.681455 0.685165 -2.501004 -1.073939 1.143389 -3.125276 -1.857873 -1.733557 1.074758 -2.451000 -0.763640 1.372975 3.355394 1.323861 -1.578209 0.776633 0.253327 2.002037 0.245018 0.230399 0.460448 1.796407 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -2.569594 0.887234 0.774919 -2.510592 6.536873 -0.466517 0.395203 3.258278 1.715568 1.818908 -5.179274 -2.010011 -0.544789 -3.324549 0.647458 -1.302434 1.152919 1.495036 -2.976231 -0.853561 1.669810 1.620967 0.233131 -2.561774 -0.555478 -1.854013 -2.717866 0.581825 -0.114721 -0.376650 -1.152591 0.981917 5.627131 -0.141220 3.957382 2.632992 3.574389 3.860195 -0.550883 2.285147 2.740204 2.159077 -1.469980 -3.809269 0.195614 -2.950390 -3.694188 -1.309720 1.221430 -3.324057 2.323841 2.245371 1.140698 0.077595 -1.286793 1.812702 2.204616 0.112320 3.746637 2.459558 -4.577129 1.441952 -2.731738 3.385413 -2.481935 4.832831 -1.148584 -4.829321 -3.594925 2.759937 2.709604 -3.937596 -4.390053 -0.234799 0.748172 -1.623174 2.626263 -0.183916 3.505746 -2.696184 -2.446313 2.161782 -1.118450 2.702262 -0.274984 -0.511406 -0.875187 -0.725506 0.859814 -3.007971 -2.118138 3.267272 -3.045368 1.034608 -3.281947 -1.085172 -0.741824 0.546200 -1.765486 -4.209030 1.415075 0.746418 0.020689 0.542238 0.466509 -1.916350 1.736997 3.258406 -0.506044 1.703260 0.192772 1.744520 1.821360 1.560768 -1.238076 0.859687 -4.288961 1.906566 -2.817516 -0.149511 -1.142004 0.307534 2.397632 1.620590 2.015930 -3.109391 3.795784 1.968451 -3.394650 -1.066408 1.235902 -1.614251 -4.221666 -0.001027 1.849824 1.455488 0.395605 -0.662993 1.126368 -1.884358 -0.859634 -1.347420 -1.708980 -0.347992 -3.137891 -0.893073 -0.125463 -0.679680 -1.718363 3.135246 1.690388 0.618477 4.674468 1.367793 -2.159054 -0.890599 -4.200538 1.607883 5.839481 -0.073458 -3.351455 2.056130 -2.357396 1.317796 2.305392 1.601706 -0.310453 1.277836 -1.056701 0.158668 -1.878775 -1.191938 4.538783 2.252365 1.571593 -4.583318 1.099522 -2.615712 -0.219117 6.453136 3.460767 -5.015895 -0.194867 3.672832 -0.541716 -1.928524 1.313487 -2.897644 -2.300483 -2.531533 1.062111 1.424250 -3.066939 -2.385619 1.833281 -3.506801 3.503802 0.448301 -1.862618 -0.256922 -3.898816 -2.367356 6.804451 0.300400 -0.057578 0.124112 -1.383963 0.935949 -5.213374 0.332384 1.958026 -1.532178 -0.549342 -2.442735 1.073872 4.133002 -2.941502 1.330810 -2.685949 -0.375525 1.881248 -1.666144 1.983878 -3.857258 -2.029609 -1.547743 -1.518218 1.417873 -3.755046 0.104264 3.799213 -1.826205 3.224800 2.401842 -3.285064 -1.425410 2.872219 -1.590654 4.326769 -0.617885 2.341665 0.645592 3.167077 -2.712299 -1.122893 -1.554618 -0.381552 -2.511228 3.484481 -4.041828 0.164365 1.204413 -1.996825 -2.328761 2.715577 1.704477 0.362452 -0.879819 -0.612128 -2.829544 0.171482 -0.789765 1.060178 2.664077 -1.424327 -4.646211 0.045279 2.414408 -3.595896 -1.636343 0.800786 0.424146 4.768430 -3.088162 1.185230 1.933232 0.834892 -5.452477 -3.646252 -0.141555 -3.180062 -1.030316 0.603834 -3.435711 -3.655069 -1.927579 1.745297 -1.662700 -1.759537 2.268013 4.276762 2.129118 -2.117550 1.385044 0.565419 2.444658 0.481848 -0.188110 0.642855 1.636471 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -2.679385 1.351749 0.594432 -2.236132 4.933583 -0.834480 1.134100 3.236449 0.997793 1.926168 -4.930910 -2.122315 -1.091453 -3.988683 0.342457 -1.843565 1.577344 1.241134 -2.156684 0.153030 1.957397 0.189065 0.023612 -2.660616 -0.399228 -2.180858 -1.686940 0.190426 0.488705 -0.212730 -0.437918 1.099317 6.092483 1.131191 4.914127 3.065242 2.428203 4.352097 0.723635 1.708834 1.069443 2.750634 -1.541109 -4.132215 -0.020134 -2.703913 -2.803008 -1.859034 0.919628 -3.006398 2.472466 2.626263 0.748533 0.685938 -2.202107 0.844829 2.615814 0.419385 4.135511 2.220324 -3.636226 0.703452 -2.183846 2.264087 -2.105987 2.860399 0.163238 -3.219028 -1.416465 1.623411 1.720398 -3.231223 -3.240921 0.470231 1.121496 -2.067936 2.507201 -0.229283 0.056410 -2.678942 -2.613335 1.755671 -0.379090 3.227951 -0.224202 -0.288681 -0.857547 -0.288680 0.701416 -3.652927 -1.115675 3.434719 -2.769359 0.054632 -2.790783 1.416859 -0.719885 1.065592 -2.341206 -3.522531 1.524519 0.242622 0.170464 -0.414907 -0.966904 -2.565939 2.115234 2.297052 -1.089024 2.252065 1.576374 2.050119 2.547338 2.185056 -2.127457 1.691750 -4.660747 1.894071 -1.875064 -0.401644 -0.265498 0.336512 1.514487 1.179437 2.094589 -3.777289 3.157591 2.854293 -2.531294 -2.208591 0.813786 -2.587186 -3.933028 -0.642750 2.201296 1.577016 0.817893 -1.300352 0.506799 -1.709848 -0.599377 -2.077530 -1.084232 1.484762 -3.192786 -0.884840 -0.265164 -0.680285 -2.002731 2.937552 1.228943 0.550211 4.631770 1.321521 -2.435701 -0.497658 -3.607004 0.708555 5.802840 0.764061 -3.578008 2.411355 -2.102141 0.743243 1.771081 1.827668 0.985911 0.065144 -2.423260 -0.713939 -0.519704 -1.342034 4.494785 1.448235 1.625625 -3.614491 3.079611 -1.428584 -1.271283 6.104834 3.182819 -4.219578 -0.504658 3.104765 -1.633454 -1.530447 1.664943 -2.692998 -1.392080 -2.579200 0.970857 0.953262 -2.972151 -1.693335 1.282114 -3.967386 3.682552 0.581862 -0.343552 -0.509764 -4.085262 -2.019080 6.918738 -0.062036 -0.278709 -0.144857 -1.635006 -0.344671 -5.098365 0.530378 1.238109 -1.249745 -0.533953 -2.537871 1.078428 3.618746 -2.397627 1.513253 -2.190935 -0.991415 1.867430 -1.078154 1.717404 -3.415955 -2.525444 -0.643522 -0.645573 2.162410 -2.745934 1.660947 4.318610 -1.503848 3.076424 1.908232 -1.956537 -0.317378 2.711701 -2.629155 4.357731 -1.375608 2.534245 0.509395 3.140154 -2.818548 -1.561438 -1.005195 -0.292457 -2.293190 2.872324 -3.477782 0.361714 0.768172 -1.983465 -2.012332 2.115432 0.851570 -0.000917 -0.537295 0.044878 -2.810573 0.097967 -1.971334 1.319728 2.974360 -0.345510 -3.881039 0.194035 2.023842 -1.905448 -0.220508 0.656469 0.160747 4.396986 -3.319924 0.403546 1.258825 0.534658 -3.895124 -4.534955 0.755580 -3.232924 -1.485769 1.148071 -3.719712 -2.234469 -2.251899 1.104484 -3.338625 -0.893132 1.719510 4.617998 2.071793 -2.367731 0.905912 0.247692 2.610604 0.590797 0.409402 0.732189 2.338615 +PE-benchmarks/biconnectivity.cpp__main = -2.809969 -2.446006 2.840326 -0.013896 6.762265 -3.352787 0.959786 3.790515 6.297814 -0.280598 -4.990695 -4.945648 -1.870082 -0.466675 1.659465 -2.710679 3.180625 2.608710 -4.927929 -4.063540 2.062627 6.947104 -1.300205 -3.247582 0.592973 -0.453636 -4.387725 -0.431845 -3.323589 -0.017616 -2.858289 3.984017 7.477842 0.369383 5.758202 3.248669 6.454169 4.078689 -3.661977 6.706368 4.798506 2.532768 -1.110371 -3.659472 0.351405 -2.803789 -3.473544 -0.056252 0.891151 -2.034640 5.211697 1.248749 2.202276 2.682828 1.616246 1.404267 0.245706 1.944346 2.026669 3.807558 -6.923934 6.151064 -2.517450 4.800986 -2.592545 8.063714 -3.181366 -6.973889 -7.301437 2.896325 6.494013 -6.762461 -6.057438 -1.562775 -0.132032 0.274779 4.037794 2.893405 11.178636 -1.643372 -5.277469 2.006446 -1.229456 1.075928 -1.274661 -1.886861 -3.042978 -2.470978 2.594671 -1.243706 -3.373583 3.179730 -5.682721 3.706067 -5.535455 -8.194825 -1.350651 1.835049 -0.001345 -7.867765 1.441313 -0.505662 -0.878162 5.672181 0.397472 1.908099 1.945828 3.723043 -0.712525 1.418624 -2.966596 2.076782 1.630151 -0.402269 2.151519 0.854746 -3.298004 3.958468 -5.287326 -1.032985 -0.039993 -0.374413 3.221695 1.825656 0.742350 -1.553854 2.861512 1.365907 -4.299473 2.065520 1.449552 -2.076768 -5.635208 -1.330895 3.489159 3.147151 -0.149898 -0.324901 1.781027 -2.667812 2.151611 -1.812247 -4.246019 -6.318942 -1.241623 -2.254913 -0.828498 -1.411860 -3.027794 3.080987 0.164150 0.806992 2.313404 1.283827 -4.079984 -5.440788 -4.761194 0.981727 4.117028 -4.060894 -3.129588 1.103032 -2.314065 2.662818 3.731353 1.532922 -2.725191 0.925737 2.859810 3.497601 -6.283690 -1.091719 4.360026 3.927423 1.154931 -5.741277 -4.096559 -6.292117 -1.314777 7.830270 4.277002 -6.879444 -2.852027 4.158936 1.885807 -4.776535 0.485740 -3.741209 -3.673355 -4.612952 2.735312 0.960100 -4.065976 0.067823 7.368742 -3.524603 1.248203 1.161731 -3.531055 -0.523330 -5.304471 -4.541355 9.748851 0.212946 1.685600 0.827389 -1.869906 5.851686 -5.687327 0.144868 1.171410 1.277841 -0.387341 -1.522975 2.938323 6.034449 -4.032820 2.577093 0.693244 -0.471689 0.577853 -5.479185 2.039204 -6.099896 -3.002785 -3.572172 -2.300971 0.883979 -4.719707 -4.485633 3.773917 -1.925086 2.210356 5.286709 -8.188407 -5.111181 2.522153 -0.459155 2.111652 -0.952092 -0.635249 1.052124 3.644186 -4.533899 -2.892863 -2.147439 2.115922 -5.396478 4.574770 -3.736607 1.420159 0.040065 -2.585541 -1.388513 3.007432 1.482397 0.037734 -2.011253 -1.174155 -4.291771 2.073777 -0.854512 1.662807 3.007619 -0.893405 -5.100437 0.350630 1.599146 -8.423335 -3.197190 0.929167 -1.637666 6.037353 -2.383153 0.025444 4.177479 0.930684 -5.520518 -3.473991 -2.266767 -5.704247 -0.582675 -1.335708 -1.333704 -5.543263 -0.795498 2.594856 1.011735 -4.613227 3.014241 3.392047 3.858446 -1.568533 2.091105 1.855503 2.056834 1.291087 -1.398823 0.031787 1.548006 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -8.074307 8.323197 5.642494 -5.511931 14.411193 1.180139 5.398727 4.951968 -3.999175 8.613975 -14.297147 -2.415357 -2.418214 -11.314707 0.190344 -7.989799 0.945093 0.697419 -2.631684 2.307932 4.702990 -5.258555 -0.513593 -7.211721 -1.469131 -13.097518 -4.353551 0.348698 7.547945 -0.590061 2.416822 0.722067 14.617570 1.511421 11.622833 9.399873 4.726042 10.686618 0.548327 2.184754 0.081259 8.017395 -5.873368 -9.867298 -0.755692 -7.451279 -8.299094 -5.245600 2.245563 -7.998175 0.295799 8.440186 -0.559682 0.812139 -6.765092 5.786371 10.468796 -1.246680 13.206747 3.969294 -6.841929 -1.211498 -8.008165 8.571357 -4.467103 4.500860 0.061530 -8.820109 0.760500 1.972733 -0.738133 -4.578550 -5.299283 5.865079 4.742547 -8.196720 3.677038 -3.553556 -14.106729 -8.728219 -5.921754 3.767761 2.395075 10.178161 0.844361 -0.504111 2.273745 1.537279 0.970938 -12.761904 -3.117222 13.327532 -6.288823 -2.197695 -7.902508 8.108885 1.325378 3.897553 -5.895187 -6.451923 3.445067 1.378032 1.062589 -8.512223 -4.106749 -12.334687 3.708239 2.733815 -2.683221 6.385503 2.942761 5.148829 7.109176 8.505548 -11.645059 4.640927 -10.634556 4.235379 -1.741325 -0.266592 -0.710510 1.322574 0.511303 3.651125 9.067161 -12.279870 6.908451 5.428553 -5.720671 -10.737425 -0.499551 -9.186198 -9.644311 -1.423280 3.801885 4.336133 2.371466 -4.892038 0.011515 -3.161182 -2.369577 -7.706828 1.057201 11.028687 -11.397890 -1.515659 -0.672284 -0.158360 -6.884280 8.815059 5.613207 3.739214 12.998249 5.871601 -2.774935 5.892377 -9.517793 1.084895 16.717013 6.869040 -10.848243 7.820249 -7.946425 0.376552 4.410152 3.999058 4.915100 1.874823 -12.388928 -6.080028 3.451120 -4.258415 12.796454 5.957978 3.042198 -8.184280 14.913912 -2.424435 -7.398222 14.319889 9.731855 -12.117663 4.119669 7.410390 -9.667000 -2.876659 6.920383 -8.529353 -2.934620 -6.269513 0.046054 2.493270 -6.270301 -3.673766 0.613263 -11.920273 13.845874 1.829900 4.491016 1.053193 -7.848348 -13.659509 14.886068 -0.935319 -1.617846 -3.590129 -3.111592 -8.223084 -12.483063 1.508440 2.630294 -7.308592 -5.027607 -10.105727 2.773521 8.725036 -5.587224 7.055648 -9.226662 -4.485224 4.401140 2.510419 5.868250 -7.650267 -6.867112 -2.693089 -0.773351 5.727756 -6.319091 9.916202 14.337493 -3.800955 10.872459 -1.711785 -7.734197 1.264589 7.232880 -9.124623 11.618935 -2.862629 8.163832 0.988167 8.561329 -7.959513 -3.520883 -0.133395 -3.811104 -3.805143 6.612074 -8.255755 0.594455 2.258729 -8.988272 -5.109931 4.870254 0.196866 1.922426 -0.998689 1.999049 -8.330193 -0.734449 -6.559023 1.723712 8.045712 -0.522898 -8.654999 1.529424 2.705468 -1.889692 -1.454954 1.369518 0.934284 8.678886 -10.118185 0.099944 0.909907 -0.708397 -10.833163 -14.660466 1.781168 -10.940731 -9.705892 5.748534 -12.598415 -0.765327 -8.033708 -0.906007 -13.676462 -6.121958 4.050754 14.874256 3.697995 -6.039432 3.153782 -1.072466 8.766577 0.345922 3.290463 2.194465 5.922960 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/weighted-job-scheduling.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +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.599684 0.199492 0.178401 -0.419149 1.830855 -0.186088 0.170791 1.086076 0.009733 0.440232 -1.112990 -0.036782 -0.161062 -0.936642 0.379181 -0.063910 0.272493 0.359598 -0.568254 -0.438745 0.489778 0.275496 -0.056662 -0.660397 0.033452 -0.847638 -0.298903 0.029492 0.157846 0.482718 -0.558395 0.473444 0.991002 -0.076503 0.505976 0.601538 1.116744 0.806916 -0.195802 0.425709 0.640823 0.443790 -0.232017 -1.086136 0.302354 -0.672237 -0.876547 -0.247196 0.316102 -1.003138 0.367290 0.613250 0.226868 -0.113210 -0.277162 0.575774 0.573089 -0.123996 0.685041 0.734556 -1.036161 -0.461935 -0.575390 0.988562 -0.513852 1.008752 -0.048262 -1.227808 -0.852078 0.853545 0.199587 -0.447040 -0.631093 -0.190600 0.201621 -0.297119 0.566772 0.122115 0.667681 -0.211395 -0.632701 0.369757 -0.293954 0.810658 -0.019033 -0.226148 -0.098199 -0.386178 0.449836 -0.542564 -0.641387 0.977476 -0.588653 0.378187 -1.205382 -0.353198 0.202198 -0.023109 -0.152891 -0.976168 0.349075 0.319520 0.065714 -0.332904 -0.311677 -0.632251 0.579439 0.594245 0.032352 0.603107 -0.368965 0.042291 -0.183920 0.151930 -0.171390 0.401159 -1.006829 0.513402 -0.297911 0.099823 -0.374663 -0.178501 0.821585 0.143610 0.266157 -0.722220 0.951483 0.456173 -0.557756 -0.240428 0.386609 -0.274311 -0.867894 -0.004125 0.614150 0.251614 -0.071169 0.166269 0.445342 -0.328029 -0.558810 -0.479233 -0.692449 0.244611 -1.087299 -0.138369 -0.207424 -0.222522 -0.417778 0.452857 0.235699 0.253426 0.879399 0.487326 -0.392248 0.317258 -0.975193 0.629720 1.510805 0.350737 -0.758309 0.289932 -0.663058 0.460839 0.385664 0.074436 -0.123913 0.801545 -0.205644 0.246861 -0.321179 -0.362674 0.966805 0.914226 0.533804 -1.290681 0.054141 -0.901118 0.018718 1.203672 1.053514 -1.364765 0.368640 1.084877 -0.402795 -0.303652 0.126944 -0.696357 -0.445158 -0.720380 0.390274 0.538952 -1.074756 -0.586733 0.305000 -0.736975 0.708203 0.216106 0.118323 -0.035534 -0.719345 -0.286920 1.452472 0.107866 0.033946 -0.112061 -0.392557 -0.652599 -1.092948 0.115261 0.510169 -0.441973 -0.410277 -0.577592 -0.242164 1.242863 -0.707932 0.207987 -0.881656 0.300979 0.381370 -0.061900 0.509011 -0.910688 -0.575980 -0.374680 -0.390413 0.374866 -0.810302 -0.114419 0.682946 -0.564105 1.004250 0.370460 -0.649833 -0.259662 0.699035 -0.115154 0.788516 0.074646 0.681387 0.226545 0.886896 -0.777280 -0.147563 -0.406251 -0.341842 -0.576958 0.963879 -1.030800 0.045644 0.630551 -0.544598 -0.678411 0.732611 0.535757 0.574486 -0.335765 -0.179487 -0.380290 -0.006999 -0.448888 0.333318 0.665236 -0.602913 -0.941269 -0.207098 0.568109 -1.171803 -0.701957 0.486194 0.117757 1.175399 -0.689533 0.491385 0.442046 0.087529 -1.424040 -0.838236 -0.072248 -0.559055 -0.568107 0.242637 -1.155123 -0.721197 -0.395597 0.612622 -1.002037 -0.584493 0.079529 0.863782 0.076460 0.100768 0.652935 0.329110 0.294754 -0.035778 0.115550 0.199968 0.371605 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -4.279620 4.580369 3.478369 -2.808623 7.095668 0.849239 2.491993 3.468062 -2.619963 4.460589 -7.252966 -1.429101 -1.461347 -5.518255 0.006686 -4.421492 0.376367 0.340466 -1.414741 1.447790 2.553435 -2.588715 -0.287666 -3.540333 -0.946754 -5.702435 -2.257852 0.138454 4.292462 -0.111371 1.285681 0.137506 7.791770 0.492929 6.619333 4.906852 2.651008 5.559624 0.529472 0.668659 -0.453267 4.480590 -3.370321 -5.042121 -0.460219 -4.210941 -3.996183 -2.470330 1.229305 -4.146453 -0.161035 4.353626 -0.214095 0.718172 -3.155509 3.242919 4.960876 -0.559388 7.160001 1.941853 -3.842062 -0.972570 -4.143766 4.209653 -2.062903 2.787985 -0.699644 -4.318037 0.563525 0.487788 -1.059565 -2.662558 -2.153574 3.542008 2.249000 -4.317098 2.241208 -1.945314 -6.822131 -4.574952 -3.145775 1.925252 1.171707 5.129242 0.083452 -0.249210 1.057511 1.088561 0.124395 -6.973897 -1.234342 7.068891 -3.587569 -1.471347 -4.009460 3.979957 0.352709 2.570501 -3.208358 -3.040655 1.923400 0.993382 0.624330 -5.556383 -1.346896 -6.398563 1.783782 1.374373 -1.252803 3.917475 1.704255 3.100088 4.345304 4.940249 -5.940693 2.614808 -5.712211 1.981180 -1.574719 -0.076607 -0.236960 0.998344 0.438728 1.985228 4.762837 -6.608427 3.380238 2.777187 -2.906311 -5.772167 -0.089933 -5.123826 -5.148743 -0.872539 2.048688 2.306030 1.027799 -3.076678 0.066750 -1.580516 -1.251644 -4.341030 0.792559 5.244241 -6.132908 -1.007459 -0.395393 0.010346 -3.410112 4.860346 3.092974 1.904175 6.885504 3.015379 -1.437887 2.956451 -4.927806 0.326814 8.102439 2.723939 -5.811822 4.178119 -4.363417 -0.066016 2.389025 2.147230 2.700510 1.976282 -6.486672 -3.628166 2.073681 -1.837172 6.677669 2.886868 1.693188 -4.194674 7.870177 -1.923304 -4.199745 7.543382 4.945723 -6.337869 1.655882 3.272394 -4.630217 -1.367567 3.776716 -4.886815 -1.523660 -3.073153 -0.501423 1.538815 -3.359404 -1.984331 0.709923 -6.301952 7.406489 0.750542 1.964289 0.194895 -4.492521 -6.463734 7.630409 0.071109 -1.044179 -1.933794 -1.654402 -4.484650 -6.505317 0.981931 1.661345 -3.348160 -3.121083 -5.227183 1.545289 3.930504 -2.490432 3.713559 -5.181193 -2.520221 2.420680 1.111716 3.503741 -3.954537 -3.592418 -1.855414 -0.741532 3.608118 -3.446743 5.608048 7.761600 -1.862322 6.365706 -0.704528 -4.581207 0.429744 3.647490 -5.147381 6.197612 -1.286594 4.228137 0.284082 4.301924 -4.313057 -1.844330 -0.121023 -1.930861 -1.721417 3.355568 -3.887018 0.278711 0.323649 -4.995268 -2.150798 2.157306 -0.174929 0.394874 -0.264069 1.227420 -4.626224 -0.880480 -3.764078 0.537362 4.399012 -0.643692 -4.718050 1.046123 0.696533 -0.845651 -0.322733 0.455809 0.461727 4.365998 -5.402895 -0.471330 0.498891 -0.586336 -5.789362 -7.080357 0.356355 -5.277533 -4.665678 2.833909 -5.830479 -0.297949 -4.141724 -0.759707 -7.133840 -3.520488 2.313896 7.928425 2.132318 -3.548049 1.391973 -0.580644 5.186411 0.729137 1.663824 0.900538 2.973671 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -1.480751 0.944529 -0.198830 -0.911935 2.003437 -1.083894 0.477291 1.140628 0.900256 0.296352 -2.531044 -1.259305 -0.672705 -2.169582 0.556602 0.215323 0.905677 1.860748 -0.656008 0.040549 1.590782 -0.150707 -0.474375 -1.864609 0.397983 0.101796 -0.813173 -0.341949 -0.810439 0.318537 -0.734618 1.224597 2.444604 1.367771 2.032880 1.893621 0.527218 3.157555 0.487386 1.870947 0.406128 1.762158 -0.463053 -3.366439 1.631496 -1.475039 -0.125829 -1.875230 0.235679 -1.609181 3.827679 1.202719 0.439120 0.025540 -1.536936 -0.951351 2.054764 1.534017 1.609417 1.695892 -1.322287 1.579955 -0.666126 -0.268616 -1.319422 1.790953 1.871777 -1.990538 -0.551819 0.715264 3.340086 -2.560685 -2.645168 -0.507377 -0.645981 -0.422058 1.425064 0.249838 0.347680 -0.962725 -2.217278 0.191805 -0.876384 1.862983 -0.754705 -0.855648 -2.487124 -0.727426 1.281921 -0.799936 -1.435080 1.144781 -0.501001 1.803717 -1.042968 0.418163 0.189624 0.185520 -1.205944 -1.190050 0.914327 0.466437 0.370054 2.501538 -1.900077 -0.565247 2.220260 1.158341 -1.324282 0.660358 1.688446 1.025430 0.608104 0.040668 -0.392357 1.047990 -2.420915 0.901805 0.033702 0.023507 0.644559 -0.080775 0.359143 -1.322300 0.156697 -1.197939 1.821836 1.404053 -0.972020 -0.671466 1.248774 -0.961864 -1.996595 -0.859506 1.532279 1.216768 -0.311525 0.089148 -0.512131 -1.137834 -0.832482 -1.807917 -1.432328 1.577407 -0.929706 -0.529020 -0.948593 -1.402150 -0.766205 0.277863 -0.414285 0.250244 1.589239 1.217121 -1.220382 -1.635264 -1.500219 0.465756 2.932587 1.363030 -1.877073 0.150790 0.625338 0.996147 1.426616 0.194248 0.321712 0.032620 -0.237670 -0.007844 -1.184355 -1.478246 1.609286 1.583294 1.562430 -2.075766 1.167683 0.783542 -0.836127 3.673998 0.691517 -1.659800 -0.692226 1.693647 -0.331203 -0.795728 0.009146 0.036164 -0.616573 -1.001750 0.951270 0.021564 -2.285427 -1.836431 0.105652 -2.041349 1.399011 0.457633 0.568060 -0.478968 -2.692602 0.120709 3.731061 0.183903 -0.567054 0.211892 -0.619318 0.613941 -2.219567 0.749822 0.797878 -0.312219 -1.115345 -0.922771 0.672029 2.485738 -1.751593 -0.545841 0.964581 -0.801271 0.636696 -1.414304 0.595370 -3.512463 -1.623146 0.035193 0.754645 1.520239 0.354417 0.058526 2.637161 -1.164985 -0.272775 4.105981 1.662107 0.003039 2.236350 -0.490515 1.309776 -1.507811 1.573813 -0.079192 1.668887 -1.176074 -1.103710 -0.024757 1.647643 -0.994634 1.880199 -1.411684 0.530747 0.916911 -1.098529 -0.368788 1.839226 0.554727 1.049047 -0.454310 -0.230379 -0.780306 0.424955 -0.153720 0.203859 1.961309 0.272182 -2.331606 -0.903809 0.525396 -1.389406 0.075579 0.806561 -0.300200 2.503237 -1.237844 1.000895 0.385373 -0.675908 -1.509076 -1.443892 0.516450 -1.247690 -0.810939 1.448087 -1.876734 -0.918289 -0.869939 1.303422 -1.653335 0.498761 -0.956978 1.192273 1.334134 0.266483 0.992270 0.534222 1.477352 0.250718 -0.690761 -0.075666 2.450755 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.764219 0.234799 0.041952 -0.316448 1.275522 -0.518648 0.167097 0.680872 -0.036272 0.487156 -0.837711 -0.509071 -0.464909 -0.883846 0.152715 -0.023766 1.034155 0.174618 -0.418525 -0.510210 0.420687 -0.088533 -0.200838 -0.392011 -0.072086 -1.200834 -0.330510 -0.017449 0.119607 -0.076631 -0.134806 0.106222 1.573457 0.015150 0.927478 0.628901 0.490236 0.509215 0.224887 -0.354553 -0.154223 0.847413 -0.395349 -0.682556 -0.141081 -0.595332 -0.403371 -0.293757 0.264013 -0.492701 -0.506461 0.437894 0.199925 0.385539 -0.413334 0.455092 0.964151 0.038770 1.090687 0.115180 -0.096482 -0.268741 0.043229 0.465147 -0.841113 -0.460043 -0.323523 -0.606665 -0.322226 0.116873 -0.466527 -0.103595 -0.615757 -0.010635 0.032942 -0.823826 0.455366 0.526483 0.263177 -0.983145 -0.534163 0.098123 -0.399265 0.731334 -0.243029 -0.456138 0.291132 -0.092967 0.244143 -0.714117 -0.094458 0.433528 -0.437326 -0.020854 0.049511 0.165284 0.250775 0.129588 -0.295019 -0.938601 -0.124655 -0.512819 0.534382 -0.171976 0.370822 -0.158815 -0.010577 -0.327323 0.100003 0.949045 0.413395 0.630190 0.170304 0.285201 -1.091134 0.017385 -1.131412 0.495267 -0.481071 -0.274799 0.038067 0.095661 0.365950 0.165453 0.621239 -1.085753 0.715017 0.334491 -0.026578 -0.424445 0.147439 -0.316824 -0.782569 -0.065271 0.362933 -0.092697 -0.097239 -0.615019 0.426123 -0.375157 -0.535507 -0.072369 -0.247079 0.626616 -1.321680 -0.073562 -0.550948 0.000476 -0.195824 0.378371 -0.214631 0.030909 0.718538 0.527607 -0.689742 0.721645 -0.901455 -0.158017 0.918458 0.023737 -0.777618 0.515541 -0.532690 0.178550 0.844440 0.260845 0.191640 0.128310 -0.111432 0.163346 0.225489 0.048819 0.865464 0.273889 0.651713 -1.532834 0.402179 -0.022950 -0.009523 1.196158 0.525693 -1.223840 0.696790 0.362954 -0.857256 0.384512 -0.037940 -0.685451 -0.423356 -1.013713 0.138989 0.376451 -0.502787 -0.153760 0.039041 -0.793643 0.556780 0.138555 -0.142450 0.710707 -1.009952 -0.369332 0.954854 0.029339 0.210911 0.032366 -0.465161 -0.588905 -1.110306 0.053624 -0.206129 -0.999077 -0.174745 -0.941405 0.410815 0.662524 0.048103 0.336933 -1.618985 0.559875 0.632305 0.520527 -0.070401 -0.383799 -0.495959 -0.008215 -0.286198 0.333215 -0.641417 0.405304 0.594251 -0.314047 0.653902 -0.582533 -0.885009 0.220823 0.266237 -0.611500 0.452237 -0.227923 0.923707 0.128356 0.789716 -0.234908 -0.089856 -0.353252 -0.657537 -0.721899 0.659871 -1.073884 -0.045182 0.703735 -0.393675 -0.751622 0.467219 -0.247393 0.685278 -0.041108 -0.308301 -0.970997 0.347614 -0.108039 0.582811 0.662304 0.526201 -1.014447 -0.043086 0.079459 -0.254197 -0.890833 -0.349346 -0.466450 0.192703 -0.302040 -0.329752 0.252863 0.470988 -0.248379 -1.095023 0.219378 -0.679461 -0.636514 0.594949 -0.889464 -0.122249 -0.110079 -0.177588 -0.778473 -0.366231 -0.016713 0.817472 0.028143 -0.085476 0.391937 0.212078 0.077143 -0.124889 -0.227953 0.101210 0.339563 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -7.411282 5.808603 5.383320 -3.569882 10.376359 1.600083 2.877968 3.444866 -4.090678 8.139499 -10.684635 -3.471044 -4.384565 -7.083003 -0.681000 -6.119941 2.656567 -1.319861 -2.307780 1.811819 4.219857 -5.631593 -0.723814 -4.449920 -1.245633 -9.723552 -4.350423 0.203296 8.140722 -2.221364 -0.067723 -0.356288 14.067315 1.063561 10.891971 7.985013 2.998642 8.930214 1.064311 -2.120432 -3.056998 8.958860 -6.481189 -6.276826 -0.749078 -7.600852 -4.896015 -3.706086 2.998356 -3.286253 -1.642921 7.253949 -1.405040 2.517284 -5.751698 5.148161 7.967927 0.699931 13.523624 1.522456 -3.129683 -1.899957 -6.257989 5.236198 -4.314386 1.507085 -2.782806 -5.767913 2.328687 -2.039883 -1.118218 -5.334847 -3.869226 6.888724 2.454674 -8.136387 3.692480 -2.212135 -10.482208 -10.583276 -6.840416 1.998212 1.379331 8.362241 -0.711204 -0.865805 0.741942 2.947242 -0.534010 -12.484407 -0.024932 9.749844 -5.851748 -2.076043 -3.397337 7.699012 -0.501562 4.847504 -6.323396 -3.891790 1.914237 -0.614729 2.269658 -9.181541 2.049271 -9.073605 2.506641 -0.737420 -0.465476 4.491033 5.544900 5.386713 8.787561 8.928757 -11.164234 2.181939 -8.856908 2.798803 -1.511462 -1.155719 0.586873 3.976041 -1.050420 2.030771 9.658847 -12.210738 3.796352 3.300787 -4.984209 -10.358042 -1.021337 -9.223941 -8.584306 -1.890326 3.404891 2.721510 1.058556 -7.425993 0.658249 -3.138441 -2.311773 -4.006522 2.572232 9.613840 -9.782794 -1.633619 -1.617892 -0.610886 -4.669675 8.158604 4.191624 4.099188 11.351590 5.940043 -3.403132 4.510158 -8.905457 -0.898023 11.186478 4.435983 -10.270123 7.456302 -6.751634 -0.177070 5.534891 5.012354 6.245826 0.647365 -8.462859 -4.999769 3.785829 -0.867833 11.343647 2.638396 4.175758 -4.209371 12.297907 -2.172606 -7.266607 10.614110 6.479424 -8.943185 2.864921 3.248310 -6.305061 -0.372337 6.102592 -7.608259 -1.392946 -6.302567 -1.177725 3.333936 -4.409465 -1.170947 1.015137 -10.618455 12.672729 0.721062 3.917693 3.738338 -9.254148 -10.867114 10.527185 -1.255090 -0.967247 -3.525126 -3.502743 -7.058755 -10.433313 1.711411 0.043875 -6.318665 -4.598036 -10.237717 3.530793 5.424306 -1.078515 7.154628 -9.970349 -3.225679 4.540383 2.303476 5.357323 -3.419692 -5.971054 -1.433316 -1.910130 6.486405 -5.906130 10.263920 12.261910 -3.158461 7.927839 -3.927352 -5.039434 1.853468 4.240585 -10.011234 9.509662 -2.405433 7.537047 -0.360806 6.835356 -5.661156 -2.820681 0.629709 -2.109624 -2.803050 4.962367 -5.713794 0.261448 0.594009 -8.398071 -3.623413 2.019993 -2.449417 -0.051784 0.887489 1.708504 -8.984612 -0.703127 -4.939431 1.957528 7.412518 1.700958 -6.584161 2.487287 -0.944412 0.908085 0.850236 -0.735333 -1.171096 5.414960 -8.316289 -4.428577 0.151718 0.109284 -5.496218 -12.838216 -0.673585 -8.077965 -7.185681 7.972125 -9.543388 1.047055 -6.701098 -3.529618 -10.391217 -3.963496 3.261658 13.159814 4.419191 -6.737434 1.845149 -0.939960 7.895900 -0.071201 1.113768 1.810289 4.102609 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.973044 0.015247 -0.238624 -0.433763 2.199713 -0.016080 0.042516 1.246666 0.199707 0.671735 -1.475132 -0.724566 -0.644518 -1.338108 0.349411 0.250338 0.481330 0.507710 -0.897289 -0.561443 0.919456 0.072284 0.123758 -0.891391 0.186250 -0.462207 -0.595977 -0.057870 0.322327 0.512912 -1.036634 0.419179 1.472576 0.260522 0.809592 0.687288 1.195104 1.574645 -0.322801 0.721621 0.390311 1.102902 -0.516752 -1.809445 0.887703 -1.349317 -0.835886 -0.580029 0.568786 -1.255037 1.231327 0.916998 0.175505 -0.092206 -0.446953 0.220748 1.045834 0.334583 1.277018 0.928385 -1.223359 -0.371318 -0.840563 0.686518 -0.699874 1.580160 0.325079 -1.723693 -1.184539 0.587866 0.822053 -1.090861 -1.237835 -0.000374 0.182259 -0.322446 0.926457 0.119624 0.952841 -0.635294 -1.447055 0.139653 -0.771081 1.237573 -0.346084 -0.386075 -0.378569 -0.479806 0.625414 -0.980717 -0.706138 1.129418 -0.710893 1.021180 -1.276851 -0.449528 -0.358084 0.282476 -0.838204 -0.849530 0.351500 0.648046 0.196977 0.070842 -0.503789 -0.787628 1.293559 0.635018 0.040212 0.350255 0.664149 -0.151113 -0.073343 0.482078 -0.451330 0.550492 -1.202382 0.525909 -0.154953 0.328128 -0.295879 0.151488 0.899782 -0.468929 0.557394 -1.169128 1.142752 0.606904 -0.931302 -0.527393 0.583770 -0.746746 -1.334093 -0.061842 1.024018 0.237474 -0.268295 -0.143565 0.386024 -0.555090 -1.236585 -0.382642 -0.935453 0.369709 -1.243636 -0.304700 -0.476384 -0.785223 -0.430393 0.630469 0.190167 0.471540 1.222886 0.861763 -0.788822 -0.033263 -1.252955 0.942686 2.211832 0.539013 -1.363660 0.198763 -0.627929 0.947524 0.891548 0.051328 0.329628 0.828688 0.187732 0.669122 -0.443075 -0.290397 1.415169 1.272041 1.243671 -1.623279 0.048014 -0.684100 -0.035264 1.961190 1.122489 -1.757183 0.370578 1.091623 -0.403494 -0.050796 -0.011579 -0.512046 -0.401230 -1.180805 0.601660 0.748922 -1.583252 -0.978030 0.405794 -1.275499 1.307289 0.214395 0.426771 0.252070 -1.620583 0.030819 2.078750 0.155038 -0.187265 -0.254366 -0.590544 -0.762831 -1.506916 0.438275 0.471486 -0.543204 -0.759516 -0.933507 -0.105310 1.854651 -0.591412 0.198592 -0.811213 0.291039 0.427934 -0.531001 0.996195 -1.455651 -0.961838 -0.378929 -0.448855 1.022195 -0.760354 -0.266537 1.176759 -1.004263 0.956872 1.088298 0.043494 -0.326766 0.977911 -0.190257 1.051978 -0.246729 1.094181 -0.201107 1.350074 -0.840560 -0.106012 -0.350349 0.304622 -0.547523 1.394592 -1.165722 0.044516 0.849811 -1.050199 -0.764075 0.875635 0.385472 0.914409 -0.223110 -0.452981 -0.708635 0.070755 -0.203528 0.303437 1.206259 -0.518872 -1.429990 -0.501218 0.198292 -1.208811 -0.576569 0.723673 -0.097549 1.717314 -1.023747 0.305825 0.454235 -0.189414 -1.452486 -0.944779 -0.401108 -0.544254 -0.606052 1.223945 -1.471724 -0.565320 -0.702277 0.667416 -1.136001 -0.252373 -0.443321 1.182590 0.587530 0.093789 0.999478 0.636456 0.796502 -0.040305 -0.165791 0.379131 0.813430 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -5.104598 4.768973 4.482809 -2.774127 8.840154 1.787394 3.182324 4.154286 -4.195521 5.745927 -8.315984 -1.389516 -1.945033 -5.625708 -0.346971 -4.722827 0.322775 -0.676855 -1.915692 1.547912 2.856889 -3.156735 -0.062351 -3.960718 -1.135923 -6.371017 -2.835848 0.054485 6.224853 -0.349959 0.522239 -0.572932 8.788119 0.370350 7.801479 5.286085 2.667984 5.949695 -0.231110 -0.696360 -1.011077 5.560229 -4.470525 -5.467841 -0.980544 -5.523014 -4.624578 -2.488510 1.762775 -4.185824 -1.157885 4.994300 -0.696758 1.112975 -3.070331 4.233509 5.394368 -0.737778 8.830272 1.705076 -4.561438 -1.373512 -5.436845 5.009772 -1.756483 3.482914 -1.738146 -5.271558 0.503460 -0.263047 -1.669471 -3.479670 -1.902861 4.977870 2.686103 -5.084497 2.551542 -2.399061 -7.779439 -6.039060 -3.935255 1.948433 1.210846 5.778635 0.092088 -0.137354 1.384996 1.703947 -0.049394 -8.910130 -1.123983 8.323954 -4.658450 -1.676601 -4.176624 4.235053 -0.441898 3.712176 -3.972824 -3.140775 1.949715 1.490944 0.595449 -7.871614 0.335776 -7.609467 1.929987 1.070048 -0.568149 3.685543 2.051776 3.316608 5.405966 6.524090 -6.889304 2.783768 -5.777050 2.078931 -2.330725 0.193190 -0.589353 1.963066 0.424651 2.292335 6.561196 -8.046123 3.303137 2.765242 -3.511847 -7.356395 -0.516209 -6.814127 -6.092659 -0.765353 2.129477 2.410373 1.198043 -4.471170 0.311252 -1.983233 -2.136264 -3.980985 1.463186 5.860554 -7.634360 -1.280533 -0.324054 0.285129 -3.988228 6.375804 4.041655 2.737325 7.995178 3.775006 -1.773064 3.204589 -5.773442 0.545505 9.410291 2.438487 -6.991346 5.031840 -5.780576 0.035798 3.174003 2.417246 3.819382 2.155864 -7.465459 -3.945955 3.150332 -1.467218 8.251275 3.494161 2.575128 -3.843722 9.063230 -3.523951 -5.224111 7.884580 5.652989 -8.028146 2.698865 3.192430 -4.769785 -0.873510 4.423949 -5.974963 -1.289603 -4.026176 -1.028711 2.027551 -3.597690 -1.822521 1.263347 -7.595607 9.637087 0.901224 2.859212 0.985099 -4.976073 -7.314544 8.570993 0.169779 -1.305886 -2.804127 -1.794812 -6.365561 -7.373994 1.050761 1.211063 -4.115217 -3.730246 -6.743630 1.818286 4.180527 -2.247877 5.085958 -6.279695 -2.732275 2.432750 1.201145 4.752411 -3.688395 -4.167559 -2.714909 -1.829393 4.551002 -4.847891 6.755162 9.155222 -2.182122 7.802310 -1.491076 -5.151770 0.172896 3.776001 -6.143871 7.048329 -1.320290 5.265658 -0.086674 5.291240 -5.033816 -1.811601 -0.114851 -2.168013 -1.602683 4.049278 -4.220602 0.167674 0.075211 -6.481446 -2.671964 1.960146 -0.937497 0.487369 -0.092952 1.224535 -6.209640 -1.013673 -4.954375 0.628356 5.131107 -1.244651 -5.647200 1.372693 -0.005729 -0.777801 -0.562721 0.459695 0.201728 4.702789 -6.376952 -1.654338 0.555719 -0.388666 -6.415870 -8.225020 -0.527958 -6.138872 -5.733701 4.175416 -6.565649 0.415732 -5.101441 -1.836530 -8.649912 -4.614408 2.730031 9.697750 2.566511 -4.485984 1.798440 -0.690734 6.258399 0.851313 2.227047 0.902490 2.703920 +PE-benchmarks/binary-insertion-sort.cpp__main = -1.346864 0.362085 0.533023 -0.459211 2.486144 -0.149849 0.518557 1.249885 -0.084308 1.237557 -1.828726 -1.080762 -0.827402 -1.485899 0.211031 -0.604590 0.609161 0.390563 -0.788245 -0.095423 0.963608 -0.200243 -0.057636 -0.846922 -0.070940 -1.168740 -0.917197 0.129119 1.068952 -0.248608 -0.556012 0.457676 2.571395 0.198136 2.127451 1.384593 1.117395 1.752451 -0.157854 0.068479 0.025444 1.535090 -1.035558 -1.724510 0.235978 -1.362037 -1.228038 -0.704477 0.692616 -0.894704 0.522875 1.304906 -0.081927 0.486353 -0.670804 0.708016 1.124921 0.320419 2.125650 0.795780 -1.322576 0.175874 -1.333401 1.330863 -0.754458 1.222271 -0.623038 -1.950776 -0.611480 0.160268 0.388955 -1.404836 -1.025500 0.923513 0.539952 -0.970915 1.054528 -0.093296 0.035002 -1.673904 -1.846115 0.396774 -0.373138 1.557721 -0.282805 -0.245649 -0.126528 0.018968 0.176121 -2.025035 -0.298983 1.693519 -1.441250 0.244234 -0.924103 0.239625 -0.244399 0.856435 -1.040080 -1.310133 0.487815 0.039873 0.256874 -0.408375 0.409969 -1.036887 0.637486 0.312297 0.233702 0.910246 0.956088 0.571055 1.188271 1.336067 -1.163003 0.332201 -1.478460 0.942367 -0.843582 0.073308 -0.119162 0.657125 0.712813 0.235064 1.491140 -2.017051 0.827967 0.698827 -0.870382 -1.199110 0.190054 -1.542905 -1.736964 -0.452499 1.152928 0.494559 -0.013293 -0.945476 0.373610 -0.442357 -0.672588 -0.335632 -0.382238 0.692725 -1.748831 -0.382958 -0.378182 -0.578917 -0.800490 1.396229 0.802957 1.005242 1.938849 1.167624 -1.031483 0.045126 -1.930062 0.449634 2.477113 -0.040701 -1.786972 1.106224 -1.305123 0.375951 1.157497 0.861057 0.883817 0.311959 -0.671595 -0.070994 0.046180 -0.021893 2.187184 0.862427 0.910162 -1.327716 1.041707 -0.825083 -1.059984 2.551052 1.158777 -2.280483 0.447544 0.951290 -0.896299 -0.380152 0.760299 -1.433039 -0.487753 -1.569434 0.363902 0.905113 -1.454456 -0.403183 0.919410 -1.890490 1.988500 0.122304 0.211599 0.527259 -1.848569 -1.201054 2.810569 0.175493 -0.078635 -0.694271 -0.888313 -0.688087 -2.009051 0.389941 0.075767 -0.628072 -0.741965 -1.601989 0.298538 1.831420 -0.386351 1.148831 -1.456902 -0.120176 0.708128 -0.288338 1.093571 -1.250135 -1.170544 -0.440207 -0.693462 0.970551 -1.283999 0.716860 2.031211 -0.996181 1.339124 0.461003 -1.095788 -0.147526 0.882744 -1.413604 1.794998 -0.323986 1.164984 -0.010696 1.403339 -1.356699 -0.492528 -0.187767 0.071409 -0.878389 1.250291 -1.136445 0.092256 0.404051 -1.552377 -0.965622 0.477861 0.075454 0.347696 0.009777 -0.260906 -1.674812 0.038078 -0.761013 0.460295 1.489805 -0.233070 -1.536085 0.369496 0.057156 -0.723472 -0.518432 0.350930 -0.125459 1.704914 -1.649171 -0.359084 0.462424 0.275288 -1.473767 -1.982594 -0.323674 -1.426939 -0.948825 1.253947 -1.717117 -0.352822 -1.204274 0.021635 -1.625206 -0.709759 0.438461 2.324703 0.905094 -1.001328 0.782124 0.182078 1.329556 0.117379 0.086997 0.268305 0.910317 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -3.023400 2.364737 1.978207 -1.494158 5.278156 0.634570 1.798910 2.383017 -2.781812 3.445702 -4.508116 -0.665396 -1.412978 -3.749070 -0.018597 -1.838773 0.697228 -0.230465 -0.820646 1.072903 1.826394 -2.377898 0.098967 -2.117781 -0.534351 -3.847326 -1.273690 0.203498 4.042700 -0.517365 -0.059714 -0.057731 5.157392 0.279766 4.419101 3.101571 1.430706 3.589527 0.360541 -1.814170 -0.843827 3.393347 -2.544873 -3.451443 -0.211877 -3.048673 -2.646451 -1.700960 1.333691 -2.159253 -1.101655 3.165610 -0.574531 0.585026 -2.362569 2.357464 3.610664 -0.479465 5.334324 1.029589 -2.067878 -1.217115 -2.937820 2.536964 -1.219562 1.194086 -1.082239 -3.013447 0.528522 -0.074838 -1.296102 -1.987097 -0.922745 2.849460 1.630423 -3.098313 1.587599 -1.156956 -4.008747 -4.309368 -2.833973 0.887253 0.288099 3.793034 -0.024878 -0.039359 0.959468 0.872327 0.072575 -5.284707 -0.364264 4.277031 -2.653006 -1.124166 -1.541467 3.183066 -0.114918 1.859829 -2.570485 -1.955851 1.028547 0.380980 0.600247 -4.257691 0.873465 -4.063986 0.915760 0.029905 0.225767 2.340680 2.084465 1.621334 2.961000 3.757035 -4.118594 1.110681 -3.526597 1.264929 -1.057843 0.140920 -0.394143 1.376368 0.734812 0.949389 3.925501 -5.138842 1.898701 1.754137 -1.468337 -4.256001 -0.141003 -3.778384 -3.387829 -0.601659 1.718633 0.927155 0.628338 -2.480787 0.528138 -0.858239 -1.715246 -1.379790 0.522986 4.197574 -5.019731 -0.522904 -0.431194 -0.337358 -1.932438 3.272741 2.209374 1.953866 4.717668 2.506722 -1.537613 2.507938 -3.713890 0.612229 5.752012 1.400403 -4.033504 2.957582 -3.325855 0.065955 1.994116 1.646051 2.760385 0.579054 -4.066625 -2.020379 2.564370 -0.530769 4.863559 1.290939 1.862209 -2.412213 5.118405 -1.283828 -2.748525 4.696139 2.728936 -4.863561 2.330712 2.020488 -2.969834 -0.095743 2.340902 -3.430197 -0.648586 -2.748496 -0.207008 1.599976 -2.526887 -1.039180 0.359706 -4.373572 5.405663 0.433623 1.626640 1.100981 -2.858853 -3.287720 5.026008 0.204985 -0.590510 -1.991093 -1.577843 -4.030970 -4.415160 0.726609 0.142518 -2.466549 -1.923239 -4.117792 0.451866 2.861448 -0.813762 2.748298 -4.604292 -0.771662 1.626541 1.286801 2.508636 -1.745036 -2.492682 -0.709139 -1.255261 2.367188 -2.815410 3.918894 4.981156 -1.775700 4.084306 -1.167374 -2.180802 0.854030 2.008935 -3.790960 4.269945 -0.593749 3.965717 -0.011326 3.114706 -3.001079 -0.821678 -0.057970 -1.234909 -1.101145 2.227372 -2.627474 -0.065629 0.701655 -3.446819 -2.296706 0.895409 -0.345074 0.665416 0.101964 0.314643 -3.398372 -0.475036 -2.719911 0.750395 3.088018 -0.704206 -3.161302 0.829718 0.311519 -0.023544 -0.470491 0.481422 0.154781 2.875827 -3.903224 -0.866824 0.132951 0.293894 -3.186837 -5.143266 0.168320 -3.187173 -3.066025 3.247976 -4.452017 0.412199 -3.031466 -0.825809 -5.406035 -1.688067 1.050128 5.667067 1.138475 -2.483899 1.321765 -0.297036 3.194650 0.070044 1.333906 0.408692 1.686286 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = -0.553014 0.038837 -0.319685 -0.278314 1.355730 0.053197 -0.072913 0.922106 -0.065672 0.586989 -0.739330 -0.142950 -0.190665 -0.680834 0.131485 0.367404 0.160864 0.252139 -0.476159 -0.272227 0.437051 0.029784 0.110953 -0.373195 -0.034720 -0.383897 -0.256940 0.071417 0.403757 0.077254 -0.671984 0.076784 0.862253 -0.076215 0.539430 0.375201 0.760621 0.671886 -0.038553 0.095002 0.194337 0.561822 -0.374124 -0.800960 0.309300 -0.715188 -0.565679 -0.200430 0.382837 -0.623934 0.641734 0.505947 0.035748 -0.040789 -0.189832 0.373419 0.459619 -0.097022 0.843081 0.365714 -0.728405 -0.360905 -0.499160 0.882635 -0.385281 0.747243 -0.035935 -0.938561 -0.586598 0.288804 0.327313 -0.622337 -0.517772 0.217668 0.124114 -0.334663 0.477432 -0.071441 0.796549 -0.592961 -0.692076 0.147519 -0.478712 0.629010 -0.153818 -0.091862 -0.245059 -0.092926 0.157695 -0.716555 -0.264982 0.657796 -0.542489 0.468521 -0.711052 -0.175811 -0.178688 0.188474 -0.395389 -0.474055 0.154207 0.345389 0.142710 -0.260857 0.277247 -0.404629 0.475773 0.231267 0.201478 0.316676 0.258762 -0.009139 0.121093 0.469190 -0.112401 0.104150 -0.687650 0.280152 -0.136489 0.237136 -0.235672 0.171861 0.663527 -0.072550 0.520053 -0.758711 0.568341 0.188666 -0.427277 -0.413400 0.227189 -0.419476 -0.673695 -0.022099 0.467418 0.045847 -0.154291 -0.232217 0.352007 -0.178274 -0.920787 -0.228825 -0.323618 0.160701 -0.878247 -0.110133 -0.190958 -0.284130 -0.191395 0.492026 0.307465 0.337754 0.796568 0.508475 -0.281020 0.189498 -0.784395 0.481143 1.142579 0.260750 -0.766604 0.299771 -0.638423 0.331934 0.509541 0.201060 0.225819 0.498841 -0.006294 0.254201 0.040529 0.003035 0.898179 0.460880 0.582691 -0.752517 0.062144 -0.405356 -0.075205 1.125856 0.573880 -1.083467 0.357496 0.478829 -0.055611 0.089951 0.113898 -0.460651 -0.292863 -0.605353 0.263280 0.518688 -0.727745 -0.454046 0.268091 -0.692108 0.870266 0.020614 0.036638 0.248923 -0.852363 0.222305 1.054954 0.169072 -0.118952 -0.218547 -0.340543 -0.546090 -0.830054 0.183641 0.237826 -0.328101 -0.367797 -0.625758 -0.121361 0.939166 -0.183443 0.222655 -0.931649 0.158516 0.301818 -0.196640 0.495768 -0.737484 -0.405598 -0.292027 -0.257269 0.502846 -0.629147 0.048562 0.721733 -0.546310 0.625568 0.451965 -0.045717 -0.154762 0.465204 -0.320098 0.709889 -0.003665 0.467628 -0.066566 0.637629 -0.486133 0.018585 -0.277684 0.181027 -0.239876 0.619308 -0.597575 -0.064342 0.353889 -0.627078 -0.467373 0.334061 0.214594 0.410429 -0.013474 -0.371257 -0.428841 -0.103019 -0.330351 0.119316 0.610913 -0.379696 -0.752817 -0.029868 0.049343 -0.586749 -0.215584 0.271798 0.068713 0.853756 -0.643677 0.085044 0.252715 0.073521 -0.886306 -0.592562 -0.303776 -0.198047 -0.355609 0.597409 -0.865692 -0.408840 -0.433775 0.226308 -0.793144 -0.186381 -0.063205 0.835715 0.287297 -0.113728 0.547026 0.205538 0.501006 0.038436 0.015608 0.195169 0.321041 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -3.516611 2.264653 1.905883 -1.129995 4.592916 0.411619 1.912893 1.959219 -2.607175 3.524875 -4.850008 -2.231212 -2.273598 -4.242903 -0.278257 -2.928821 1.260279 -0.180944 -0.953473 1.303681 2.178907 -2.747908 -0.269965 -2.231401 -0.355351 -3.490342 -1.868517 0.053401 4.686761 -1.741248 -0.130242 0.169408 6.969949 0.754842 6.173437 3.873052 1.198675 4.382583 0.643716 -2.230932 -1.715747 4.578504 -3.124828 -3.684716 -0.713708 -3.460375 -2.175569 -1.479231 1.550620 -0.886886 -0.928460 3.366287 -0.899788 1.590731 -2.759051 1.849377 3.562718 0.596978 6.385552 0.935163 -1.986277 -0.286122 -3.267674 3.123809 -1.676641 1.126479 -1.426451 -2.812202 1.316181 -1.332124 -1.200692 -2.643157 -1.484691 3.811262 1.912299 -3.451174 1.837669 -1.104489 -5.442673 -4.804637 -4.120954 0.675955 0.078326 4.104113 -0.471819 -0.208782 1.033410 1.314275 -0.104111 -6.257325 0.123423 4.785863 -3.306765 -1.147947 -1.255995 3.777986 -0.610019 2.895455 -3.369087 -2.006728 1.070939 -0.295981 0.656346 -4.199272 1.476481 -3.991187 0.978461 -0.653789 -0.061449 2.895181 3.665011 2.355401 4.565723 4.573661 -4.535564 0.236501 -3.766741 1.467436 -1.731954 -0.287733 0.460117 2.205016 -0.050297 0.661872 4.873597 -5.963036 1.192338 2.009303 -1.514670 -4.919786 -0.485848 -5.066603 -4.176504 -1.275423 2.176872 1.558028 0.745695 -3.687854 0.060835 -0.688795 -1.528442 -1.401358 1.024964 3.932952 -4.605463 -1.023245 -0.576413 -0.625834 -2.322807 3.971944 2.283362 2.458354 5.148154 2.865556 -2.268391 1.832385 -4.175337 -0.007170 5.935041 0.300699 -4.915965 3.435490 -3.634980 -0.234800 2.462256 2.536255 3.725144 -0.136365 -4.147341 -2.311940 2.203650 -0.311078 5.420777 0.808403 1.635779 -1.281816 6.136572 -0.401823 -4.165552 5.678973 1.950059 -4.872342 2.095611 1.421664 -3.139904 -0.357726 2.848932 -3.897192 -0.209094 -3.717057 -0.221317 1.590711 -2.683763 -0.009091 1.111856 -5.220774 6.196022 0.324075 1.245757 1.312043 -4.208881 -4.894410 6.191593 -0.074468 -0.479236 -2.467344 -1.929711 -3.491272 -4.977644 0.953797 -0.683633 -2.344120 -2.004690 -4.667659 1.329560 3.209060 -0.455834 3.820872 -4.413557 -1.584367 1.668083 1.477621 2.886414 -1.514690 -3.124426 -0.404759 -1.124476 3.037290 -3.054358 4.571733 6.033353 -1.836932 3.993972 -1.163456 -3.114384 0.871526 1.941686 -5.110160 4.716234 -1.227598 3.045918 -0.320029 3.186411 -3.395984 -1.631661 0.444983 -0.310184 -1.455690 1.819098 -2.137219 0.286938 -0.224927 -4.068980 -1.860720 0.458080 -1.238284 0.339517 0.504768 0.239679 -4.374331 -0.215189 -2.541285 0.710819 3.710959 0.344358 -3.107534 1.495060 -0.691755 0.723800 0.897541 0.010083 -0.477338 2.950281 -4.409971 -2.175730 0.087351 0.340277 -2.328695 -6.035261 -0.527463 -3.721793 -2.803366 4.008248 -4.222832 0.964745 -3.487985 -1.629554 -5.160993 -1.707288 1.488422 6.571926 2.268149 -3.611463 0.968340 -0.481431 4.199724 0.440279 1.081633 0.382402 2.126112 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -1.313007 -3.126204 1.193029 -0.476723 3.090955 -1.702530 -0.617943 4.328799 1.384710 -0.061584 -3.154250 -1.124553 -2.034325 -2.753873 0.784419 -1.433339 2.518770 -0.398478 -1.690424 -0.799829 1.581825 3.376215 -0.773493 -2.101629 0.919768 -0.446816 -1.599782 -0.695249 -1.350114 1.037451 0.080444 1.895396 4.783482 2.707102 3.308543 1.869610 2.764639 2.935407 -0.503502 3.249743 0.675473 2.713124 -0.490343 -2.380815 -0.107956 -2.015074 -0.809869 0.086683 0.193156 -0.819609 1.495174 0.950368 1.104163 1.640865 -1.502666 -2.018727 -0.641404 0.098103 1.029795 2.270611 -4.405963 -0.242605 -0.828867 1.197824 -1.261321 2.744724 1.397661 0.526842 -0.809592 0.596806 2.928117 -3.150035 -2.580764 -1.256976 -0.427674 0.157075 2.829600 1.461826 4.840718 0.282085 -1.170807 0.429220 -1.029626 1.191389 -1.434681 -1.503939 -1.975820 -1.878432 1.566216 -0.590669 -1.545391 0.804640 -2.998837 -0.200030 -4.702866 0.204660 -1.295891 1.461414 0.798761 -2.457917 0.786313 0.275233 -0.468938 1.872987 -2.264237 -0.536913 2.236788 0.207057 -0.723938 2.106700 -1.242798 1.517573 0.881837 -0.254659 1.064488 1.984970 -2.507673 1.953217 -2.456025 -0.309885 -1.063834 -0.061469 2.071882 0.649875 -0.216421 -0.738652 1.438622 2.636474 -1.075843 0.684163 1.061030 -1.931498 -3.867031 0.475346 2.119634 2.189422 0.058285 -0.674426 1.179818 -0.872968 0.279504 -2.222370 -1.646083 -1.838018 -0.090048 -1.974189 -0.537580 -0.107064 -1.508565 1.189476 -0.757957 -0.165106 1.602958 -0.853766 -2.712486 -2.028033 -2.489818 0.445181 3.971282 -1.843261 -1.674147 0.165297 -0.840948 1.600916 0.937090 0.901313 0.624431 -0.974498 0.518364 1.857965 -0.729092 -1.205144 2.308029 2.406124 2.047210 -2.898012 -1.552753 -3.645761 1.191448 2.355567 1.278473 -3.313076 -1.280889 1.625446 1.837341 -0.641115 -0.561947 0.518671 -0.820036 -3.449622 2.165582 0.589002 -2.339290 -0.069784 1.449151 -1.924248 0.529392 0.467050 0.646710 -0.853088 -2.269039 -1.449965 5.319475 -0.122044 0.725592 0.671950 -0.996219 1.961042 -3.655344 0.469969 -0.116500 0.587185 1.738962 -0.761592 1.201671 2.826730 -2.152822 1.009981 -0.520494 -0.092736 0.569653 -2.880706 0.166954 -3.924597 -2.524840 -1.782444 -0.375647 2.491063 -3.196973 -1.753413 2.453772 -0.564619 2.738289 2.886240 0.962469 -2.657852 1.586782 -1.153521 1.664948 -1.188454 1.848548 -0.192822 2.104183 -1.304632 -2.301399 -1.684904 0.101868 -1.682207 1.614172 -2.272150 1.377051 1.616280 -0.617355 -0.010669 2.028167 -0.091796 -0.313834 -0.718135 -0.152489 -2.320975 0.498572 -1.582121 2.613724 2.235450 -0.989901 -3.406513 -0.630798 2.222584 -4.262173 -0.465059 0.122888 -0.714009 3.246824 -1.184591 -0.660659 2.068368 0.981986 -0.987342 -2.844552 0.623669 -0.537201 -0.909865 -0.065663 -0.989785 -2.905637 -0.875370 1.196619 -2.013973 -1.959976 -0.083410 1.337390 1.856825 -0.303130 -0.829923 1.379029 -0.055072 -0.028558 0.177208 1.641038 0.736850 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.799580 1.758378 1.460024 -2.113536 6.049776 -0.087328 0.901334 2.060076 1.080721 2.430792 -5.266375 -1.809398 -0.847558 -3.496976 0.469177 -1.894873 0.558015 1.155618 -2.101981 -0.627723 1.785307 0.132644 0.015512 -2.694940 -0.314955 -3.286828 -2.469813 0.274935 0.607653 -0.030030 -0.249185 0.891581 5.082770 0.323043 3.523440 2.936594 2.761383 4.252048 -0.766834 3.127741 1.845423 2.434365 -1.613474 -4.011503 0.753193 -2.899434 -3.262614 -1.916184 0.990403 -3.508201 2.427061 2.682795 0.481990 -0.131623 -1.693161 1.771676 3.077978 0.211066 4.016211 2.156940 -3.733336 1.087711 -2.918572 3.060589 -2.227536 3.884368 -0.059200 -4.641133 -2.242646 2.009618 2.228868 -2.958211 -3.621479 0.616968 0.928363 -1.948166 1.869472 -0.590105 -0.326649 -2.455157 -2.642121 1.592223 0.017183 3.037084 -0.083035 -0.604049 -0.385667 -0.420683 0.950080 -3.348502 -2.072112 4.126321 -2.433437 1.133621 -3.365467 -0.011732 -0.078902 0.672070 -1.731167 -3.057542 1.226531 0.858853 0.236539 -0.044758 -1.512136 -3.087930 2.268952 2.380218 -0.958444 1.147546 0.529065 1.319523 1.556776 1.815627 -2.544720 1.660699 -3.905946 1.767786 -0.937660 -0.043342 -0.623560 0.105146 1.035979 0.897570 2.316508 -3.411179 3.303076 1.549775 -3.100926 -2.141806 0.618998 -2.164886 -3.830257 -0.214893 1.737402 1.609841 0.311826 -0.701622 0.335201 -1.708068 -0.962544 -2.367969 -1.052611 1.704037 -2.973684 -0.684492 -0.403108 -0.795928 -2.167327 2.811835 1.620244 1.005905 4.452653 1.917691 -1.311994 -0.116858 -3.762368 1.219842 5.906065 1.617562 -3.712367 2.043916 -2.164189 1.266935 2.070298 1.168105 0.392790 1.256847 -2.009640 -0.402725 -1.034900 -1.595290 4.361655 2.900320 1.576236 -4.081579 2.454749 -1.536461 -1.166720 6.057731 3.722975 -4.777004 0.432496 3.495862 -1.928949 -1.727858 1.730435 -2.412718 -1.871890 -2.268073 0.853524 1.105734 -2.947631 -2.135094 1.171894 -3.906609 4.123647 0.618093 0.388404 0.301612 -3.689801 -3.940062 6.024363 -0.121345 -0.263577 -0.351213 -1.186656 -0.565628 -4.758934 0.528588 1.892885 -2.050731 -1.538768 -2.861558 1.228732 4.114547 -2.727090 1.815556 -1.938497 -1.088004 1.564125 -1.078063 2.124959 -3.872553 -2.332226 -1.401014 -0.648086 1.800869 -2.436218 1.055264 4.430196 -1.775120 3.331520 1.889047 -2.590659 -0.833067 2.936610 -1.800179 3.916334 -0.970901 2.232413 0.354267 3.271216 -2.644781 -1.115004 -0.647915 -0.337489 -1.985175 3.206898 -3.542466 0.247975 1.261607 -2.995477 -1.792383 2.603262 1.089484 1.046692 -0.762701 0.021102 -2.641406 0.067421 -1.151998 0.770785 2.799535 -0.659929 -3.903461 -0.083088 1.553638 -2.859742 -1.407710 1.001288 0.246542 4.189592 -3.258157 1.007247 1.249694 -0.284472 -4.908024 -3.892278 -0.059711 -3.718523 -2.511704 1.385207 -4.104756 -2.102315 -2.325840 1.089593 -2.858309 -1.949654 1.156840 4.536617 2.104486 -1.521187 1.733008 0.390320 2.659527 0.236092 -0.030590 0.926911 2.204410 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -1.157732 0.072981 -0.022274 -0.591686 2.664585 -0.018852 0.130824 1.427350 0.547458 0.654002 -1.972399 -1.047860 -0.711703 -1.473509 0.451178 0.066680 0.502915 0.640144 -1.209543 -0.792242 1.104039 0.351641 0.049221 -1.209132 0.266432 -0.411987 -0.914201 -0.129427 0.086715 0.744289 -1.206415 0.577230 1.748336 0.357729 1.015833 0.882326 1.513835 1.962253 -0.628264 1.413591 0.692474 1.291556 -0.578819 -2.228852 1.063940 -1.661228 -1.039681 -0.758417 0.580512 -1.627313 1.784000 1.056343 0.315965 -0.123212 -0.402226 0.233052 1.168912 0.549604 1.407525 1.261955 -1.676146 -0.056662 -1.073120 0.758251 -0.819595 2.312812 0.440136 -2.215155 -1.639267 0.814975 1.332165 -1.452321 -1.693470 -0.171879 0.123772 -0.254027 1.178643 0.153924 1.293067 -0.548541 -1.680228 0.262141 -0.814868 1.413508 -0.429369 -0.577918 -0.633403 -0.678303 0.827636 -1.019600 -1.064215 1.454376 -0.865401 1.332103 -1.751576 -0.879964 -0.430520 0.361778 -0.926141 -1.125495 0.510018 0.889840 0.140522 0.380875 -0.877572 -0.934236 1.679223 1.114108 -0.161746 0.302844 0.560256 -0.095858 -0.085552 0.423589 -0.433946 0.884146 -1.435801 0.680422 -0.295714 0.348058 -0.304702 0.065163 1.001689 -0.517676 0.507275 -1.184226 1.464261 0.770228 -1.365241 -0.462551 0.756214 -0.912264 -1.759595 -0.056136 1.161284 0.521294 -0.315047 -0.065286 0.362258 -0.853304 -1.193907 -0.651006 -1.210737 0.154361 -1.263104 -0.476149 -0.539193 -0.885891 -0.652193 0.840655 0.190907 0.427423 1.465199 0.946275 -0.910488 -0.490312 -1.453109 1.109321 2.641201 0.553343 -1.628646 0.152717 -0.632228 1.245361 1.076570 -0.019101 0.129976 1.123561 0.270508 0.862841 -0.939829 -0.563809 1.672423 1.801233 1.453515 -2.037369 -0.031582 -1.081047 -0.091628 2.401725 1.549271 -2.091033 0.088814 1.415984 -0.374963 -0.307877 0.006627 -0.573906 -0.579107 -1.329060 0.713772 0.744196 -1.901798 -1.267109 0.632697 -1.556072 1.521511 0.329668 0.505162 0.087642 -1.986331 -0.201785 2.659661 0.143502 -0.244043 -0.109468 -0.554019 -0.570340 -1.828932 0.512084 0.771071 -0.571003 -0.984399 -1.002083 0.096894 2.235146 -1.020304 0.205247 -0.435264 0.160833 0.464968 -0.958682 1.267110 -1.962796 -1.222417 -0.680534 -0.510320 1.263865 -0.895569 -0.493065 1.506905 -1.103140 1.157632 1.659701 -0.120515 -0.669494 1.321141 -0.053446 1.221890 -0.373443 1.116469 -0.223965 1.683341 -1.049503 -0.288034 -0.441815 0.398643 -0.728947 1.846280 -1.438057 0.179242 0.909761 -1.308024 -0.739826 1.279657 0.494688 0.997188 -0.391226 -0.423378 -0.912099 0.131219 -0.214832 0.310874 1.462859 -0.642104 -1.854547 -0.728166 0.286624 -1.738331 -0.756179 0.892224 -0.174004 2.191985 -1.151572 0.467406 0.672997 -0.357909 -1.962448 -1.013311 -0.552220 -0.842968 -0.747881 1.218273 -1.571845 -0.856069 -0.823306 0.880898 -1.172377 -0.548117 -0.414450 1.351652 0.872580 0.131072 1.139214 0.813484 1.040998 0.050904 -0.317042 0.472360 0.997091 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.737702 0.096571 -0.103335 -0.436238 1.820602 0.050425 0.015395 1.102791 0.282079 0.569256 -1.236598 -0.466243 -0.257849 -0.816235 0.233253 0.183745 0.182449 0.384574 -0.788412 -0.503026 0.621634 0.309141 0.036417 -0.690936 0.045462 -0.333678 -0.575164 -0.000139 0.168145 0.308631 -0.841766 0.234835 1.138013 0.020992 0.745671 0.570238 1.079353 1.059494 -0.344017 0.786972 0.496500 0.750477 -0.436191 -1.220367 0.485537 -1.027098 -0.769474 -0.378818 0.394563 -0.996210 1.194407 0.645292 0.176208 -0.071794 -0.145106 0.385723 0.582697 0.117998 0.973588 0.699284 -1.181191 -0.046249 -0.731717 0.954368 -0.505002 1.479894 0.079122 -1.430024 -1.041326 0.515912 0.837425 -0.983798 -0.973407 0.046164 0.065627 -0.266244 0.729617 -0.037141 1.136775 -0.506208 -0.925249 0.270007 -0.522498 0.804946 -0.237103 -0.283704 -0.499893 -0.291424 0.359917 -0.755438 -0.623058 0.982754 -0.696998 0.779444 -1.185777 -0.606247 -0.251125 0.267775 -0.483326 -0.750020 0.312726 0.587183 0.086256 0.049176 -0.096536 -0.551236 0.861437 0.710357 -0.000479 0.269265 0.154869 0.046116 0.108883 0.410701 -0.095017 0.437804 -0.921069 0.434665 -0.277250 0.257067 -0.244495 0.085536 0.765435 -0.121296 0.469934 -0.773809 0.889849 0.351989 -0.861215 -0.348558 0.399632 -0.584994 -1.099196 -0.016394 0.604684 0.329666 -0.201043 -0.153938 0.328242 -0.476489 -0.878109 -0.497189 -0.598902 -0.054647 -0.897714 -0.281582 -0.253768 -0.384798 -0.413195 0.702211 0.308205 0.293637 1.038881 0.592987 -0.402686 -0.267551 -0.984549 0.647777 1.571948 0.275079 -1.031590 0.253725 -0.642722 0.629770 0.694562 0.130631 0.026166 0.793714 0.076482 0.447920 -0.456226 -0.270377 1.155433 0.990072 0.792535 -1.166607 -0.017452 -0.802303 -0.131568 1.566392 1.000662 -1.417316 0.075732 0.803189 -0.027079 -0.167130 0.132104 -0.522511 -0.470740 -0.753608 0.375392 0.513961 -1.046291 -0.743125 0.494994 -0.972682 1.084488 0.135887 0.115029 0.084495 -1.218111 -0.010299 1.635865 0.157535 -0.175730 -0.073649 -0.304019 -0.353599 -1.152069 0.257450 0.537411 -0.355900 -0.592681 -0.694334 0.080842 1.319662 -0.612335 0.229310 -0.555701 0.028309 0.338852 -0.624321 0.766683 -1.244628 -0.666178 -0.593632 -0.318734 0.744516 -0.764362 -0.177967 1.051879 -0.645187 0.826328 1.023368 -0.209726 -0.497490 0.808435 -0.183287 0.879800 -0.130379 0.489916 -0.089425 0.970896 -0.695076 -0.163437 -0.369150 0.275049 -0.421301 1.070996 -0.869909 0.070384 0.413839 -0.884903 -0.443124 0.738084 0.323810 0.493207 -0.181591 -0.341654 -0.632304 -0.042555 -0.341655 0.126754 0.867513 -0.502928 -1.177373 -0.256816 0.137675 -1.116269 -0.395194 0.440349 -0.007742 1.328428 -0.771501 0.246626 0.471476 -0.094973 -1.396267 -0.661094 -0.454888 -0.496761 -0.497438 0.591737 -0.965814 -0.699589 -0.554804 0.439790 -0.829520 -0.482125 -0.034334 1.004776 0.572348 -0.076446 0.686763 0.382565 0.745502 0.129644 -0.135643 0.288399 0.504701 +PE-benchmarks/naive-algorithm.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -3.205664 1.836815 1.748899 -1.478665 5.451574 0.305434 1.642028 2.121856 -2.016006 3.558038 -4.708392 -1.859545 -1.640898 -3.648088 -0.071969 -2.403982 0.870056 -0.180338 -1.359214 0.946973 1.763928 -1.822888 -0.035544 -2.013805 -0.633068 -3.622269 -2.005753 0.446433 3.859149 -1.521778 0.087855 0.103362 6.154477 -0.076119 5.016222 3.366747 1.490528 3.641480 -0.084410 -1.601184 -0.462189 3.654338 -2.769718 -2.818936 -0.913537 -2.947121 -3.075117 -1.163361 1.548215 -1.534733 -1.342094 3.194547 -0.534501 1.026223 -2.174038 2.823914 3.201676 -0.253515 5.708221 1.042412 -2.392175 0.024553 -3.379845 3.768727 -1.609714 1.630285 -2.100772 -3.449592 0.084103 -0.150490 -1.050920 -2.471461 -1.612517 3.075608 1.788235 -3.267153 1.861038 -1.062447 -3.221551 -4.838142 -3.269197 1.149237 0.342135 3.575188 -0.235191 -0.105010 1.301247 1.014473 -0.212335 -5.586169 -0.302345 4.228765 -3.403872 -1.345671 -1.582701 2.613684 -0.286145 2.134266 -2.733207 -2.548774 0.967992 -0.251096 0.526003 -3.789427 2.071313 -3.464135 0.270590 0.223664 0.543303 2.659168 2.246841 2.206926 3.646059 3.953476 -3.943681 0.205164 -3.418782 1.519994 -2.012934 -0.145870 -0.280442 1.668203 0.941607 1.484076 4.441033 -5.309082 1.676674 1.510374 -1.787354 -4.016841 -0.361163 -3.976010 -3.883202 -0.809809 1.794876 1.201062 0.747027 -2.823592 0.805522 -0.674317 -1.049104 -0.461194 0.653138 3.048020 -4.640868 -0.740625 -0.294528 -0.184733 -2.043113 3.892806 2.563660 2.132792 5.123183 2.336434 -1.863969 1.571399 -4.233480 0.466736 5.769713 0.219825 -4.202530 3.410219 -3.685956 -0.055790 2.194750 2.348621 2.686428 0.312574 -3.606699 -1.905857 1.772101 -0.286969 5.339100 0.730144 1.288050 -2.130783 4.819087 -1.575507 -3.014829 5.370670 2.878456 -5.035995 1.963105 1.947819 -2.853776 -0.714481 2.806292 -3.811480 -0.957726 -3.159884 -0.074925 1.748704 -2.285265 -0.437643 1.221007 -4.590264 5.502947 0.229443 0.482454 1.415338 -3.408693 -4.545754 5.444462 0.260195 -0.269958 -2.069134 -1.749193 -2.980911 -4.874232 0.657470 -0.187792 -2.192687 -1.528589 -4.251561 0.923341 3.060284 -0.836893 3.452955 -4.885095 -0.892146 1.743929 0.947354 2.629308 -1.119988 -2.527475 -0.819275 -1.592811 2.037345 -3.552059 3.582835 5.199766 -1.773052 4.145434 -1.145598 -3.513648 0.353547 1.878675 -4.332501 4.695311 -0.477844 2.967665 0.052867 3.014807 -3.203030 -1.168567 -0.026425 -1.155897 -1.676419 1.940599 -2.594277 0.053052 0.212359 -3.613183 -2.296939 0.791227 -0.565335 0.270990 0.246326 0.148343 -4.175050 -0.280662 -2.198426 0.878637 3.137679 -0.163865 -3.089355 1.511266 0.240852 -0.147790 -0.318783 0.104271 -0.045568 3.057909 -4.142940 -1.287868 0.497634 0.887739 -3.186590 -5.371027 -0.372359 -3.598278 -2.896877 3.072101 -4.026266 0.023920 -3.128279 -0.991586 -4.268017 -2.281493 2.015179 6.213258 1.680203 -3.607588 1.166577 -0.459898 3.488015 0.258825 0.952873 0.356545 1.413327 +PE-benchmarks/sudoku.cpp__main = -0.756029 -0.116973 0.230791 -0.297356 1.241076 -0.316722 -0.042723 0.437942 0.860592 0.424333 -1.115752 -1.162672 -0.591692 -0.712789 0.170156 -0.278274 0.455280 0.511913 -0.732484 -0.329491 0.594877 0.314136 -0.051310 -0.588116 0.046164 -0.250716 -0.763032 0.075802 -0.036641 -0.215488 -0.618344 0.479851 1.589906 0.188313 1.262911 0.781310 0.668433 1.270777 -0.240164 0.509264 0.436309 0.898518 -0.439259 -1.154117 0.310272 -0.811917 -0.570523 -0.619113 0.437628 -0.422298 0.957285 0.569272 0.141528 0.205942 -0.376703 0.112323 0.481621 0.726755 1.056399 0.623473 -0.783149 0.969818 -0.743167 0.536084 -0.794167 1.132966 -0.333771 -1.244782 -0.774276 0.288490 1.020399 -0.938422 -1.064153 0.062085 0.168740 -0.277790 0.699484 0.146097 0.896311 -0.754688 -1.252444 0.222578 -0.468196 0.705766 -0.382535 -0.268658 -0.382476 -0.166422 0.322054 -0.704197 -0.451875 0.731459 -0.693857 0.476973 -0.358426 -0.368416 -0.143407 0.260298 -0.519575 -0.796343 0.288558 -0.075864 0.103730 0.870859 0.279409 -0.028444 0.677641 0.580843 -0.048972 0.196014 0.492404 0.313160 0.629678 0.328742 -0.158916 0.149717 -0.891157 0.485157 -0.601021 -0.103595 0.101142 0.356502 0.393343 -0.087957 0.554666 -0.819292 0.648462 0.393009 -0.691019 -0.086559 0.345814 -0.540852 -1.094640 -0.316593 0.745596 0.489374 -0.112466 -0.304591 0.144929 -0.405151 -0.141327 -0.001271 -0.483994 -0.251616 -0.285354 -0.296734 -0.265195 -0.580963 -0.338018 0.625451 0.186498 0.364584 0.984360 0.599766 -0.777649 -1.085913 -1.095953 0.305314 1.280069 -0.792843 -0.949981 0.385087 -0.232054 0.397514 0.751377 0.554468 0.190812 0.124397 0.293988 0.253123 -1.092550 -0.185190 1.088614 0.629118 0.459381 -0.748367 0.075305 -0.310994 -0.310781 1.587781 0.532567 -1.047492 -0.355225 0.697884 -0.371827 -0.653103 0.216765 -0.425463 -0.281019 -0.925580 0.494766 0.401641 -0.915738 -0.308173 0.683518 -0.998137 0.818064 0.027425 -0.316632 0.118712 -1.293376 -0.620078 1.772017 -0.004967 0.042327 -0.109924 -0.504238 0.441533 -1.276764 0.234708 0.094929 -0.150072 -0.303982 -0.619605 0.471170 1.164289 -0.501027 0.405624 -0.086776 -0.153480 0.371242 -0.520858 0.544257 -0.801731 -0.660726 -0.146724 -0.400496 0.502597 -0.572864 -0.131750 1.056879 -0.579732 0.306632 0.960617 -0.705782 -0.310977 0.685091 -0.535948 0.910171 -0.391609 -0.032227 -0.036611 0.720804 -0.544132 -0.423790 -0.131686 0.358399 -0.695127 0.785782 -0.681505 0.144921 0.112445 -0.751421 -0.287779 0.524838 0.240896 0.271629 -0.052019 -0.166714 -1.004401 0.296832 -0.051369 0.193617 0.823059 0.105906 -0.995134 0.103577 0.182437 -0.818110 -0.331523 0.197190 -0.231636 1.173656 -0.776569 0.039140 0.457308 0.134571 -0.768565 -0.663238 -0.372161 -0.845577 -0.153445 0.662752 -0.655389 -0.661942 -0.505339 0.406946 -0.030395 -0.254958 0.244254 0.996684 0.971984 -0.497738 0.425626 0.204611 0.723128 0.235462 -0.478738 0.112614 0.654530 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.614029 1.628973 2.224908 -0.771221 3.280677 1.107927 0.991440 2.456080 -1.837592 2.185410 -2.989215 -0.376621 -0.975785 -2.160866 -0.172274 -2.175968 0.387790 -0.515471 -0.922937 0.500950 1.231080 -1.018486 -0.225253 -1.704300 -0.342749 -2.747840 -1.175541 -0.290234 2.371451 0.280811 0.427636 -0.327607 3.845190 0.212446 2.947135 2.023150 1.757086 2.291050 0.000000 0.110688 -0.679367 2.544617 -1.855790 -2.135254 -0.394200 -2.541586 -1.217108 -0.311977 0.240758 -1.509602 -1.306002 1.675092 -0.242122 0.858326 -0.759048 1.488035 1.826523 -0.522716 3.270715 0.691453 -1.838488 -1.101485 -2.117638 2.117908 -0.772880 1.524029 -0.848839 -1.944286 0.163583 -0.634166 -0.886653 -0.989281 -0.443557 2.114506 0.862247 -1.779571 1.036704 -0.922860 -3.064324 -1.687676 -1.609114 0.527234 0.130422 1.747874 0.099747 -0.386787 0.785977 0.661303 0.221808 -3.555577 -0.454467 2.939535 -2.241582 -0.539648 -2.021005 0.995625 -0.235118 2.044969 -1.390713 -1.276590 0.697777 0.733948 0.059605 -3.371512 0.073455 -2.955150 0.630460 0.077337 -0.081334 1.777950 0.358059 1.290266 2.104709 2.286783 -2.890375 1.013553 -1.656085 0.811588 -1.286083 0.155897 -0.317552 0.817956 0.335189 0.970907 2.635177 -2.863329 0.718133 1.110904 -1.456821 -2.411275 -0.108223 -3.212923 -2.528439 -0.378574 0.866486 1.172836 0.753190 -2.153953 0.025150 -0.777252 -0.640212 -2.295024 0.443689 1.790403 -3.498536 -0.854665 -0.220372 0.250273 -1.637619 2.548543 1.347729 0.962140 2.673155 1.364857 -0.864583 1.781842 -2.016530 -0.013280 3.766943 0.922634 -2.849929 1.740446 -2.531710 0.174742 1.281917 0.650406 1.550182 1.181041 -2.960063 -1.699767 0.733358 -0.600614 3.211674 1.578554 1.018758 -1.881775 3.230760 -1.636558 -2.437253 3.145573 2.054274 -3.109225 1.069995 0.865574 -1.902510 -0.210347 1.193931 -2.403547 -0.295221 -1.929010 -0.648402 0.748829 -1.370756 -0.208630 0.932038 -3.085431 3.687521 0.602658 1.513386 0.267424 -1.918822 -3.558265 3.434068 -0.033858 -0.528140 -1.395006 -0.566966 -2.421086 -3.032922 0.453108 -0.052865 -1.628295 -1.481617 -2.727201 0.890142 1.743530 -0.876751 1.822841 -3.135978 -1.352621 0.658657 0.167629 2.099951 -2.099766 -1.910560 -1.464858 -1.153685 2.162357 -2.275553 2.268896 3.876789 -0.495377 3.144388 -0.816069 -2.904618 -0.401131 1.494074 -2.443183 2.465748 -0.967571 1.678051 -0.201976 2.117991 -2.342327 -0.742311 -0.297286 -0.656948 -0.555619 1.349127 -1.486781 0.305115 -0.114396 -2.944807 -0.603469 0.767227 -0.945272 0.193754 -0.077276 0.248327 -2.907733 -0.307995 -1.749042 0.028497 2.169829 -0.559052 -2.276523 0.318295 -0.581812 -0.425222 -0.636279 0.047774 -0.240495 1.416101 -2.401620 -1.123811 0.416282 -0.475637 -2.421605 -3.224175 -0.628445 -2.302095 -2.200722 1.528064 -2.119733 0.490069 -1.924255 -1.049409 -3.475787 -2.271033 0.888816 3.773424 0.739060 -2.003988 0.526199 -0.113199 2.815672 0.603892 1.311349 0.016244 0.697926 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -2.611193 1.439779 1.410850 -1.205219 4.517405 -0.228600 1.283754 1.460178 -0.701186 2.535060 -3.935774 -1.342763 -1.347821 -3.531454 0.216229 -1.897720 1.242501 0.386731 -0.915891 0.483534 1.581307 -1.435612 -0.046808 -1.890507 -0.230763 -4.052979 -1.528241 0.313583 2.699958 -1.038314 0.285629 0.595499 5.243696 0.384342 3.997437 2.834884 1.905813 3.301485 0.238423 -0.780463 -0.073676 2.901937 -1.908735 -3.032472 -0.050394 -2.269528 -2.515243 -1.369564 1.191891 -1.610154 -0.885206 2.612858 -0.268456 0.745474 -2.139725 1.668210 3.447296 -0.147952 4.311261 1.165662 -1.716061 -0.104327 -2.328583 2.466325 -1.789387 0.897370 -1.155102 -2.924884 -0.195383 0.401695 -0.483526 -1.843870 -1.643676 1.894257 1.625754 -2.461974 1.571668 -0.479331 -2.114502 -3.906450 -2.818499 0.814285 -0.014735 3.221829 -0.135783 -0.223896 1.115250 0.244032 0.378547 -4.059895 -0.561449 3.209862 -2.572610 -0.676892 -0.989682 2.237557 0.141393 1.332176 -1.972018 -2.746791 0.746247 -0.484603 0.431352 -1.426837 0.535210 -2.573091 0.505954 -0.105810 0.074986 2.320766 1.647353 1.496888 2.371436 2.654925 -3.600554 0.227747 -3.149089 1.584242 -1.267229 -0.128344 -0.139151 0.997086 0.893450 1.158231 3.105871 -4.236578 1.798362 1.644265 -1.182044 -2.756938 -0.047965 -2.900499 -3.130171 -0.698883 1.799996 0.911831 0.608366 -1.860126 0.574665 -0.641572 -0.766256 -0.908903 -0.185643 2.839331 -3.993643 -0.510766 -0.421883 -0.683967 -1.707218 2.449574 1.569767 1.599440 3.902664 2.103245 -1.977262 2.297496 -3.531858 0.541731 5.148532 0.686114 -3.309333 2.437309 -2.682203 0.219740 2.080945 1.768316 2.006972 -0.343081 -2.750622 -1.093016 1.314120 -0.557248 4.119771 0.820562 1.140931 -2.999506 3.682726 -0.249238 -2.084838 5.088730 1.956117 -4.407445 2.021873 2.125433 -2.892464 -0.624824 1.648166 -2.836962 -0.963633 -2.981023 0.596938 1.332342 -2.293889 -0.610250 0.774349 -3.670976 3.870672 0.368667 0.467770 1.217720 -2.655956 -3.871381 5.177189 -0.076439 -0.010410 -1.587438 -1.636183 -1.587206 -4.173554 0.489379 -0.324610 -2.153775 -0.903274 -3.339655 0.708119 3.341236 -0.988882 2.403033 -4.394466 -0.470994 1.427558 1.010442 1.514078 -1.907640 -2.256241 -0.202292 -0.985845 1.254016 -2.565967 2.433371 4.065812 -1.797692 2.748361 -1.264065 -3.040794 0.709368 1.703801 -3.211723 3.671496 -0.734252 3.163844 0.259820 2.627962 -2.781486 -1.024790 -0.188824 -0.953728 -1.809549 1.841417 -2.625453 0.124682 1.191838 -2.498966 -2.330828 1.017910 0.045114 0.826861 -0.056101 -0.083668 -3.017720 0.290202 -1.239204 0.914329 2.603655 0.060691 -2.860040 0.783952 0.897487 -0.449594 -1.160882 0.356821 -0.039867 2.796322 -3.273884 -0.452965 0.496138 0.570920 -2.503306 -5.000673 0.579056 -3.299749 -2.146240 2.527817 -4.100862 -0.277323 -2.443342 -0.250523 -3.618267 -1.107185 1.208667 4.696755 1.296281 -2.312716 1.255384 -0.116565 2.407532 -0.169255 0.895344 0.423456 1.654228 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -1.233893 -1.050014 0.930377 -0.027275 2.923567 -1.439683 0.283035 1.695854 2.642336 -0.008051 -2.089622 -2.070726 -0.822349 -0.368870 0.724745 -0.882552 1.373846 1.165938 -2.049563 -1.733517 0.935648 2.784181 -0.498746 -1.362734 0.254778 -0.246240 -1.759153 -0.149659 -1.285940 -0.035624 -1.386431 1.684633 3.183213 0.154727 2.404992 1.380869 2.730073 1.793819 -1.386013 2.676119 1.966262 1.136056 -0.489262 -1.665001 0.248514 -1.228875 -1.426163 -0.064787 0.466573 -0.865271 2.323652 0.591657 0.895311 1.073002 0.539361 0.570228 0.155250 0.862626 0.973597 1.617092 -2.849269 2.401627 -1.067247 2.102683 -1.203266 3.306908 -1.262282 -2.966751 -3.046383 1.244807 2.671591 -2.811043 -2.527979 -0.638601 -0.060974 0.052732 1.725868 1.208147 4.801629 -0.752669 -2.338190 0.820461 -0.651456 0.574051 -0.562334 -0.775234 -1.327682 -1.027459 1.115373 -0.593525 -1.394474 1.293783 -2.379313 1.630369 -2.196148 -3.291566 -0.538832 0.716249 -0.032035 -3.238230 0.594721 -0.198262 -0.297039 2.370275 0.265925 0.781881 0.933582 1.483125 -0.231038 0.608433 -1.017946 0.786202 0.623217 -0.117486 0.938646 0.246706 -1.499397 1.643090 -2.093064 -0.381501 -0.047456 -0.107003 1.461584 0.626973 0.370979 -0.783878 1.262491 0.591489 -1.716879 0.813811 0.661844 -0.849018 -2.366858 -0.572292 1.563720 1.241211 -0.118346 -0.129169 0.814890 -1.063680 0.621676 -0.658845 -1.831847 -2.490109 -0.633015 -0.906740 -0.406891 -0.703810 -1.207613 1.241524 0.062715 0.414292 1.051419 0.639833 -1.752623 -2.205294 -2.089727 0.513789 1.866115 -1.665403 -1.387661 0.477015 -1.018211 1.143471 1.608655 0.684034 -1.028836 0.426028 1.274367 1.530613 -2.544452 -0.409392 1.900061 1.558602 0.611937 -2.413357 -1.718206 -2.475053 -0.488531 3.401007 1.736127 -2.971783 -1.046196 1.793177 0.733039 -1.874148 0.176544 -1.533685 -1.459455 -2.037087 1.216996 0.535866 -1.845723 -0.042439 2.988882 -1.525350 0.609530 0.458852 -1.425644 -0.108150 -2.337204 -1.596047 4.143107 0.140881 0.693597 0.264405 -0.885381 2.228276 -2.454497 0.101567 0.465091 0.464329 -0.165902 -0.713509 1.097083 2.679750 -1.619956 1.026201 0.087403 -0.070065 0.303321 -2.205031 0.854270 -2.502833 -1.279296 -1.367845 -0.975370 0.432009 -1.989409 -1.849637 1.594826 -0.925019 0.934573 2.288726 -3.173290 -2.018948 1.092559 -0.242040 0.970579 -0.400167 -0.236240 0.425786 1.569960 -1.910429 -1.143818 -0.917412 0.924656 -2.240832 1.913292 -1.620441 0.543987 0.146001 -1.117615 -0.671136 1.252590 0.687045 0.188939 -0.802094 -0.594967 -1.756964 0.846259 -0.371906 0.732355 1.328310 -0.361844 -2.164269 0.143813 0.684548 -3.498067 -1.348920 0.448888 -0.668535 2.620903 -1.079924 0.047014 1.738713 0.437754 -2.310852 -1.481141 -0.971601 -2.243449 -0.216129 -0.381614 -0.755263 -2.325494 -0.367064 1.158639 0.268720 -1.729894 1.106072 1.477434 1.600342 -0.612494 0.979700 0.807563 0.851378 0.522846 -0.618938 0.032709 0.721455 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.912513 1.435955 1.335963 -1.280050 4.627373 -0.609956 1.385225 1.401153 -0.937147 2.663613 -4.197941 -1.766310 -1.717973 -3.908638 0.257051 -1.825744 1.550256 0.637194 -0.900244 0.949704 1.863365 -1.797548 -0.051714 -2.102527 -0.211195 -3.741033 -1.596406 0.351074 2.835495 -1.385140 0.328759 0.782406 5.779019 0.562292 4.432846 3.205925 1.393094 3.868966 0.444902 -1.486057 -0.257809 3.378245 -2.080314 -3.371329 0.024769 -2.374331 -2.423573 -1.661035 1.379112 -1.457532 -1.003304 2.889912 -0.317812 0.832827 -2.674162 1.629414 3.895471 0.253005 4.795387 1.294223 -1.510272 0.447567 -2.494544 2.149875 -2.038513 0.746562 -1.259747 -3.049116 0.052857 0.303316 -0.264598 -2.296732 -1.937091 1.992601 1.547004 -2.706004 1.848289 -0.405225 -2.296834 -4.619704 -3.407335 0.725343 -0.134623 3.551322 -0.375769 -0.254078 0.940268 0.326160 0.507638 -4.380860 -0.550502 2.999962 -2.709979 -0.872135 -0.406501 2.827501 0.234583 1.343094 -2.401625 -2.836018 0.834336 -0.829081 0.580419 -1.184432 1.040432 -2.411321 0.466468 -0.167856 0.203412 2.603823 2.416302 1.934513 2.756211 2.796982 -3.788081 -0.027131 -3.466074 1.593196 -1.545740 -0.227393 0.054804 1.269383 0.989176 0.925476 3.372062 -4.689465 1.915735 1.868325 -1.020779 -2.953143 0.159138 -3.071424 -3.363834 -1.016396 2.178340 0.966048 0.646030 -1.976158 0.618857 -0.630592 -0.673410 -0.328254 -0.284285 3.392729 -4.215462 -0.511517 -0.604127 -0.976431 -1.580678 2.430688 1.530432 1.792066 4.230424 2.305788 -2.470621 1.865745 -3.861597 0.552279 5.571993 0.418667 -3.558413 2.637497 -2.440198 0.182565 2.316954 2.029476 2.456135 -0.721131 -2.830243 -1.403657 1.357207 -0.633918 4.450209 0.462554 1.343016 -3.041830 4.130696 0.044477 -2.275409 5.593170 1.770683 -4.545594 2.040384 2.303199 -3.156128 -0.788862 1.744273 -2.795801 -0.892091 -3.229673 0.708934 1.419689 -2.608130 -0.764766 0.677369 -4.045256 4.086831 0.342547 0.322362 1.356084 -3.016042 -3.805622 5.577561 0.134370 -0.064294 -1.831030 -1.959988 -1.603970 -4.647246 0.676285 -0.658487 -2.063527 -0.919253 -3.592606 0.694783 3.508143 -0.988024 2.371213 -4.574355 -0.443027 1.580999 1.059629 1.595436 -1.758695 -2.495440 0.211477 -1.099848 1.344151 -2.533095 2.660473 4.478559 -2.080710 2.524160 -0.770989 -2.651900 1.051138 1.956052 -3.651967 4.001202 -0.911213 3.691345 0.221456 2.792173 -2.958683 -1.169670 0.009657 -0.829642 -2.016319 1.858179 -2.736432 0.121550 1.253346 -2.549973 -2.573803 1.038704 -0.032802 0.907506 0.038529 -0.075696 -3.371963 0.423744 -1.099706 1.037310 2.939658 0.351115 -3.070366 0.886370 1.026991 -0.180597 -1.070571 0.391031 -0.159274 3.061123 -3.625227 -0.431488 0.388848 0.791693 -2.258470 -5.249704 0.797093 -3.412599 -2.185435 3.198533 -4.305071 -0.122845 -2.612140 -0.108855 -3.646578 -0.842140 1.100570 4.991572 1.430236 -2.691878 1.359590 -0.198505 2.625093 -0.183975 0.730584 0.098583 1.996711 +PE-benchmarks/coin-change.cpp__main = -0.707779 0.051381 -0.190303 -0.367141 1.645607 0.043929 -0.021238 1.012666 0.187609 0.571225 -1.085234 -0.449158 -0.332612 -0.844563 0.207550 0.235461 0.224309 0.358864 -0.691883 -0.424033 0.619716 0.153235 0.079152 -0.614825 0.057825 -0.335349 -0.469900 -0.001022 0.257547 0.276654 -0.795016 0.202810 1.076428 0.062213 0.671032 0.508183 0.942232 1.035124 -0.249408 0.578358 0.337222 0.766989 -0.424733 -1.183943 0.520295 -0.977584 -0.656115 -0.365822 0.415924 -0.895643 1.024289 0.630763 0.123310 -0.062522 -0.212290 0.301389 0.620233 0.143059 0.965248 0.617397 -0.985030 -0.175509 -0.668150 0.790914 -0.495884 1.239087 0.115362 -1.279105 -0.892274 0.404762 0.667113 -0.858558 -0.857005 0.092502 0.096149 -0.277453 0.673089 -0.019830 0.935670 -0.527883 -0.944864 0.173999 -0.542897 0.809003 -0.248843 -0.243630 -0.388507 -0.253932 0.343395 -0.758901 -0.507838 0.861016 -0.615173 0.722164 -0.980366 -0.422583 -0.262331 0.253036 -0.524989 -0.617971 0.256670 0.518837 0.127283 -0.002509 -0.091344 -0.524710 0.834905 0.521954 0.054114 0.256209 0.324256 -0.017298 0.070350 0.433449 -0.177759 0.360493 -0.861951 0.377063 -0.189602 0.269882 -0.220262 0.138483 0.708327 -0.205038 0.482011 -0.811939 0.802891 0.338977 -0.715039 -0.388246 0.379351 -0.562033 -0.982450 -0.036276 0.631085 0.220812 -0.207232 -0.185769 0.318954 -0.391992 -0.926311 -0.363672 -0.559903 0.082135 -0.892071 -0.234042 -0.283132 -0.444120 -0.327231 0.589304 0.253469 0.326338 0.955798 0.606097 -0.435010 -0.121509 -0.922732 0.625923 1.506175 0.294850 -0.987224 0.226649 -0.581810 0.595407 0.669323 0.120310 0.165481 0.690444 0.098253 0.427110 -0.314787 -0.185747 1.082546 0.863491 0.807660 -1.081112 0.022587 -0.609923 -0.098771 1.459488 0.852721 -1.313726 0.190244 0.704207 -0.125719 -0.058433 0.076164 -0.437639 -0.355393 -0.769901 0.373303 0.535217 -1.017611 -0.690414 0.386158 -0.924255 1.032172 0.106022 0.181675 0.174147 -1.171464 0.072896 1.481959 0.155280 -0.175400 -0.157930 -0.353751 -0.475002 -1.078006 0.280307 0.399614 -0.365429 -0.552113 -0.693194 0.003288 1.257939 -0.447182 0.197220 -0.649452 0.095058 0.321917 -0.482696 0.719500 -1.083404 -0.631637 -0.438407 -0.308251 0.733342 -0.658415 -0.130286 0.960648 -0.666269 0.737816 0.859040 -0.068050 -0.346304 0.722424 -0.217290 0.820380 -0.139605 0.561844 -0.132431 0.909866 -0.621648 -0.093867 -0.304407 0.267055 -0.354855 0.958604 -0.790134 0.027894 0.453428 -0.834440 -0.459305 0.618318 0.269980 0.543586 -0.119582 -0.345167 -0.582708 -0.026568 -0.272174 0.132083 0.843147 -0.415123 -1.065745 -0.244859 0.082144 -0.915985 -0.368078 0.429387 -0.022823 1.213377 -0.749456 0.185281 0.378752 -0.095591 -1.169615 -0.645737 -0.400967 -0.392657 -0.454062 0.731459 -0.974460 -0.525847 -0.530673 0.401171 -0.825270 -0.312657 -0.154606 0.934622 0.501403 -0.047772 0.684671 0.373963 0.685339 0.076572 -0.120262 0.270160 0.514019 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = -6.483874 4.638765 4.700388 -2.351660 8.320627 2.113091 2.096182 2.924937 -3.432769 6.955854 -9.408332 -3.703487 -4.147454 -6.255503 -0.904518 -5.526811 1.688093 -1.282774 -2.114793 2.359191 3.771601 -4.958131 0.128636 -4.523820 -1.037336 -7.180849 -3.919236 -0.092682 8.190765 -2.414877 -0.460027 -0.507560 12.035036 1.401611 9.845050 6.501950 2.540981 8.501324 0.558490 -2.334868 -2.680917 8.114159 -5.992954 -5.839653 -0.451958 -7.423565 -3.835449 -2.655034 2.653186 -1.961945 -1.115341 6.112592 -1.265215 2.310078 -5.013962 3.732961 6.761245 1.373604 11.845888 1.439564 -3.110307 -0.704694 -6.300403 3.903274 -3.281408 2.897890 -2.740696 -4.928868 1.645010 -2.294434 -0.645402 -5.612105 -3.063528 6.698628 2.782483 -6.446857 3.397375 -2.308146 -9.115620 -9.357245 -6.988931 1.481748 0.926379 7.094611 -0.659160 -0.056061 0.736432 2.817783 0.068988 -11.334461 -0.295597 8.291179 -5.630892 -1.342632 -2.068828 6.573552 -1.422330 5.034426 -6.054377 -2.813279 1.868522 0.412391 1.000252 -8.112185 2.552327 -8.066595 2.982502 -0.812164 -0.646405 2.981096 5.368917 4.147106 8.109986 8.464234 -8.695475 0.853558 -6.790620 1.490798 -1.931664 -0.462152 0.377222 3.911902 -1.340139 1.362111 8.847139 -10.765809 2.904660 3.121534 -4.111153 -9.025711 -0.848190 -8.831191 -7.469656 -1.644216 3.429276 2.749492 1.504512 -6.599093 0.121671 -2.371233 -2.280826 -3.048935 2.291857 8.080360 -7.955581 -1.721135 -0.800175 -1.221650 -4.299034 7.077106 4.196009 3.868985 9.410987 5.014462 -3.650544 3.206834 -7.080487 -0.089629 10.475375 2.356929 -9.107955 6.116895 -5.922095 0.014841 4.775583 3.981957 6.275663 0.128108 -7.684957 -4.768188 3.322938 -0.851380 10.003704 1.812643 3.704882 -2.541116 11.234953 -1.860261 -6.777456 9.724849 4.541225 -8.311463 2.730338 2.976519 -5.178118 -0.604134 5.259253 -6.338320 -0.056892 -5.887851 -1.005506 2.622357 -4.369562 -0.971763 1.585667 -9.623738 11.831765 0.821166 3.435107 2.799747 -7.537000 -9.387309 10.144380 -0.937169 -1.185281 -4.155631 -3.093167 -6.098846 -9.289830 1.669100 -0.539965 -4.958900 -3.845703 -8.671397 3.029366 5.147879 -1.310354 6.245807 -8.222033 -3.704813 2.786682 1.288802 5.891189 -2.499817 -5.321263 -1.291459 -2.075174 6.015950 -5.445349 8.647881 11.321859 -3.209313 7.274033 -2.735802 -4.654022 1.274449 3.937473 -8.543857 8.344873 -2.463924 6.290243 -0.904838 6.139721 -5.798240 -2.389139 0.934108 -0.670545 -1.978503 3.812052 -4.243742 0.103095 -0.242563 -7.455991 -2.879582 1.157987 -2.152770 0.066935 0.607172 1.410938 -7.567061 -0.471655 -4.308393 0.981522 6.533154 0.821879 -5.800697 2.191310 -1.047020 0.942153 1.579794 0.103164 -0.944192 5.447034 -7.975569 -3.856202 0.094395 -0.422209 -4.745061 -10.676721 -1.408642 -6.741380 -5.505203 7.774303 -8.220264 1.470531 -6.214485 -2.784574 -8.335102 -2.916142 2.734364 11.582048 4.822369 -6.789488 1.819877 -0.895520 7.847899 0.654210 1.579274 0.696099 3.605933 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.677809 0.066389 -0.089549 -0.358699 1.405235 0.025383 -0.234806 1.010028 0.570237 0.612305 -1.022311 -0.769494 -0.271527 -0.531140 0.098218 0.124977 0.017863 0.464436 -0.767328 -0.409746 0.566470 0.445018 -0.014153 -0.488413 -0.042902 0.120766 -0.749512 0.032650 -0.162342 -0.018955 -0.578810 0.192027 1.125977 0.084455 0.871815 0.604327 0.684361 1.044029 -0.367629 1.400167 0.345748 0.709717 -0.498669 -0.891345 0.443968 -0.887817 -0.536848 -0.313875 0.298896 -0.759378 1.617785 0.575740 0.105814 0.100109 0.035286 0.273627 0.136559 0.316650 0.948388 0.596395 -1.229564 0.588554 -0.828604 0.937005 -0.457033 1.570037 0.078052 -1.379944 -0.889182 0.194725 1.327934 -1.200695 -1.036349 0.269837 -0.189912 -0.252827 0.676577 -0.120753 1.017263 -0.502423 -1.000055 0.321447 -0.273041 0.536179 -0.287256 -0.244346 -0.737939 -0.071242 0.100636 -0.815637 -0.412314 0.782137 -0.752770 0.882152 -1.126602 -0.767394 -0.455312 0.434723 -0.446496 -0.475427 0.337748 0.493148 0.105414 0.431400 0.007768 -0.323289 0.862777 0.713170 -0.052388 -0.088943 0.415210 0.222169 0.446520 0.546795 0.053347 0.381568 -0.704171 0.447806 -0.270553 0.199131 -0.083466 0.182749 0.485711 -0.184936 0.563388 -0.621584 0.564693 0.115475 -0.969842 -0.388576 0.286642 -0.681309 -1.029214 -0.183330 0.536949 0.401769 -0.229917 -0.304516 0.135886 -0.455233 -0.658728 -0.484900 -0.427841 -0.311717 -0.394205 -0.304187 -0.233220 -0.368211 -0.393600 0.803458 0.403801 0.397784 1.015714 0.464854 -0.231250 -1.139825 -0.902258 0.329954 1.178668 0.209481 -0.973546 0.374051 -0.373996 0.501735 0.659822 0.286861 0.053222 0.613121 0.258596 0.286659 -0.699141 -0.106630 1.110839 0.845942 0.620601 -0.600729 -0.117555 -0.608886 -0.393259 1.587844 0.894579 -1.017300 -0.392380 0.469399 0.300537 -0.341889 0.341971 -0.369128 -0.458581 -0.432092 0.199233 0.391429 -0.792338 -0.587183 0.758214 -0.964590 1.093371 0.025796 0.116985 0.173342 -1.454003 -0.270772 1.354957 0.206730 -0.232474 -0.028322 -0.246305 0.098967 -0.936618 0.299517 0.587303 -0.032383 -0.533436 -0.600358 0.329692 1.014458 -0.439115 0.314528 0.032964 -0.350683 0.302113 -1.234604 0.770641 -1.178037 -0.538915 -0.654828 -0.195763 0.802655 -0.491248 -0.184234 1.179255 -0.459754 0.623430 1.643734 0.055557 -0.694830 0.700919 -0.330172 0.843697 -0.263790 -0.130241 -0.136058 0.749919 -0.555967 -0.241855 -0.174096 0.694004 -0.300285 0.836736 -0.471015 0.089642 -0.047225 -1.085967 -0.041900 0.510175 0.077772 0.179766 -0.036771 -0.266372 -0.773993 -0.095004 -0.187729 0.043593 0.825234 -0.190300 -0.939124 0.007222 -0.195022 -0.899083 -0.044753 0.287937 -0.070092 1.163596 -0.747896 0.035379 0.456517 -0.137843 -1.183070 -0.308682 -0.701849 -0.504430 -0.473865 0.394011 -0.584823 -0.611985 -0.528380 0.233864 -0.296603 -0.414050 0.060530 1.011042 0.823259 -0.413856 0.520538 0.241881 0.893510 0.327160 -0.401635 0.175601 0.600575 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -8.452418 7.807923 7.537294 -3.892234 9.810340 3.635362 3.410291 2.837881 -4.513706 10.155033 -12.809590 -4.430999 -4.980169 -8.044595 -1.868848 -9.551287 0.452102 -2.456473 -2.193847 3.559346 4.767423 -7.400570 -0.406779 -5.691680 -1.829847 -10.933370 -5.309508 -0.051679 11.179211 -3.706589 1.170401 -1.303527 15.484116 1.725645 13.213104 9.396628 2.916734 11.308751 0.488079 0.002709 -4.291912 10.550936 -8.221735 -6.735224 -1.477358 -9.248377 -4.969898 -3.491076 3.068393 -2.612336 -0.402083 8.578327 -2.304057 2.888364 -6.677149 5.876174 7.771927 1.486771 16.039718 1.599586 -4.122428 -0.817367 -9.422954 6.565102 -4.089234 3.909106 -2.634914 -5.693058 4.006689 -4.083820 -1.387245 -6.468577 -3.308848 10.070504 3.611268 -9.365752 3.435900 -4.726927 -17.268069 -11.134165 -8.110089 2.579978 3.943545 9.325484 -0.168048 0.099331 1.222430 5.011921 -1.234000 -15.864098 0.082514 12.608980 -7.260905 -2.588855 -4.328180 10.018807 -1.827010 7.099174 -7.739518 -2.181475 2.868740 0.993883 1.485177 -12.896717 1.101496 -12.687700 4.135761 -0.655771 -2.250213 2.619801 6.913568 5.757472 11.643242 12.222694 -12.233791 2.572432 -9.294401 1.989721 -0.639291 -0.700897 0.997451 5.034755 -4.089965 2.303784 12.438390 -14.095661 3.112248 3.392389 -6.480062 -13.578015 -2.230744 -12.493864 -9.865522 -2.401736 3.585333 4.682712 2.196811 -9.242294 -0.701855 -3.089369 -1.997816 -6.265205 4.959254 11.383457 -9.237955 -2.363065 -0.702914 -0.551718 -6.757392 10.558830 6.494292 5.250681 13.489057 6.548350 -2.463231 3.913222 -9.034517 -1.642975 12.832221 5.319521 -12.354773 9.026809 -8.357323 -0.785108 5.359380 5.840082 8.411513 0.817049 -12.294018 -7.782820 5.273273 -1.704612 13.448953 2.470117 3.734465 -0.946555 16.843190 -2.315815 -10.740762 11.940117 7.606424 -9.894583 2.746015 3.092582 -6.756057 -1.601690 8.886770 -8.540247 0.376182 -6.106107 -2.567450 2.873710 -4.499795 -0.705863 1.684275 -13.046309 16.853030 0.797714 6.531597 3.757410 -10.329602 -15.575417 12.028502 -2.320856 -2.230757 -5.546762 -3.250751 -9.062506 -11.584891 2.322610 0.463035 -6.816103 -6.046595 -11.763745 5.141766 5.633358 -1.981044 9.270426 -8.615140 -7.398539 3.994158 1.461954 8.483757 -2.429343 -6.933466 -2.455490 -1.239313 8.848105 -6.375420 13.346191 16.457087 -3.103655 10.792151 -3.954438 -6.149420 1.270067 5.556801 -12.444003 11.834623 -3.372476 5.677140 -1.289489 7.456608 -7.776031 -3.831467 2.250908 -0.917707 -1.406488 4.055295 -4.527158 0.486081 -2.493574 -11.551250 -1.760978 1.481876 -3.500225 -1.514114 1.263423 3.680179 -9.780936 -1.896248 -7.211854 0.632732 8.652228 1.928114 -6.498575 3.724650 -2.494159 2.308047 4.123843 -0.425782 -0.748033 6.597724 -10.749408 -5.773919 -0.417892 -1.831571 -6.911345 -14.692924 -2.304426 -9.748979 -8.860571 8.695890 -10.344496 2.820192 -9.011432 -4.863017 -12.269318 -4.797654 4.383452 16.138350 7.067458 -9.482892 1.560798 -2.061261 11.577804 1.314954 2.017875 1.851114 4.955277 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/karatsuba.cpp__main = -16.740030 -0.694415 -9.171248 -14.618101 47.474630 -5.524054 -0.221162 29.544987 7.003302 11.940896 -30.706659 -9.719353 -4.071195 -29.036416 5.158412 3.061706 13.406008 6.465410 -18.085714 -4.859784 9.911023 5.959356 4.459714 -14.915076 -2.466221 -11.027027 -10.903352 4.893734 0.561762 -1.696825 -9.520043 9.531713 37.571632 3.405803 23.989507 12.747312 25.494010 23.879383 4.167158 1.997317 17.380742 10.708194 -6.232824 -25.995974 3.744089 -17.999299 -29.035644 -8.655263 7.788172 -24.496674 12.990983 19.427555 6.926214 -0.428691 -13.374289 8.511306 18.316929 -9.257594 24.500797 15.229281 -32.668565 -8.260054 -8.986807 19.247974 -12.915459 19.450173 -2.211882 -24.834631 -19.849213 24.426748 10.948917 -25.486665 -23.527824 -2.276586 10.122410 -10.554211 19.007842 3.346135 31.378643 -20.803460 -14.871698 12.431859 -9.124052 18.441391 -0.034821 -0.579013 -2.178700 -9.122413 5.306130 -20.600057 -7.157934 20.505870 -20.991929 5.249311 -24.200194 2.369356 -6.462905 -0.722172 -16.287795 -30.773023 7.211248 1.124372 -0.024778 -1.176114 3.784509 -15.221250 12.550453 14.453256 2.727702 19.244577 5.446387 6.647540 8.405528 9.237788 -10.052675 7.152359 -30.343653 10.954423 -11.101566 -1.657644 -10.448217 -3.177265 24.684074 10.160874 9.141527 -26.243325 26.254107 17.869513 -16.255393 -10.170236 5.892667 -9.318831 -23.338965 3.243950 15.989759 2.161027 4.969942 -0.583414 9.823631 -9.317571 -15.515124 -9.605711 -12.805793 9.917172 -27.596789 -2.140153 0.193263 -4.819853 -9.760398 15.896105 10.366945 1.115987 32.186579 4.693697 -18.894980 8.729811 -25.683778 15.314038 43.250272 5.975267 -23.491166 15.928591 -20.930346 9.400636 7.257581 11.116439 3.602898 -0.211971 -8.547188 5.931764 2.893043 -4.478696 28.700046 3.606586 15.107585 -36.234294 5.263559 -11.827289 8.326063 43.812393 17.681451 -36.058933 4.273959 29.504073 -3.396779 -2.657714 7.995105 -19.846875 -18.679763 -19.290679 15.052098 11.126014 -24.603437 -12.732256 9.192973 -22.675460 18.885477 4.226219 -11.060792 -1.583306 -24.128951 1.111345 48.389177 1.657015 3.662483 4.778766 -14.275522 3.701125 -35.202530 -0.465015 13.326482 -8.482107 2.678684 -13.072587 -2.041931 31.780032 -14.761739 10.440297 -32.941866 8.559624 13.461817 -6.678360 7.192141 -24.820722 -14.953089 -2.660054 -8.015556 6.454456 -26.617593 0.715012 15.378674 -15.006361 24.747635 7.166204 -9.814870 -1.675160 12.495838 -8.820619 29.730481 0.487914 30.352449 5.420052 24.537112 -17.056790 -3.166219 -14.352171 -5.221929 -20.730849 21.423562 -31.115126 -1.037369 17.897049 -1.871976 -27.488479 15.190326 12.859431 4.068036 -5.341771 -11.422532 -8.627421 -1.168741 -9.749628 18.221647 14.642007 -12.966811 -24.912722 -1.753101 24.370466 -21.064452 -1.706953 9.711140 4.681352 33.930653 -22.323294 9.408340 11.812380 12.009504 -29.926375 -26.757806 7.098961 -12.997168 -2.597942 6.492476 -33.727796 -25.659117 -12.154440 13.745499 -18.634539 -1.527110 8.236001 32.125930 11.120556 -14.092710 11.958715 5.367444 3.240771 -0.885585 5.859239 9.707559 8.506972 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -9.182308 -2.302256 -3.013810 -5.823658 18.428406 -5.569883 -0.097005 15.763939 7.806353 6.270851 -14.399796 -9.700487 -4.656495 -13.036290 0.876206 -3.140855 9.346510 2.610634 -9.671532 -1.273995 5.023679 4.273516 0.706910 -5.928502 -1.843196 -4.081899 -6.818314 2.634873 0.203347 -6.425804 -2.487596 6.220680 26.144279 3.844189 20.426595 8.783950 12.657267 13.400928 4.652290 2.210166 5.747401 7.777321 -4.669270 -10.119002 -1.546386 -8.156195 -12.874500 -2.172954 3.799989 -7.176808 7.459195 10.390896 2.802545 5.457448 -6.463489 3.408457 5.144600 -2.651482 14.982559 6.600814 -17.441544 0.500853 -4.797247 10.433645 -6.979028 7.630968 -4.801940 -9.181587 -6.416429 7.410204 5.704693 -16.641103 -10.215823 2.753876 5.403287 -6.701508 11.221994 2.587762 15.365465 -13.281082 -10.451246 6.964765 -1.369890 7.998894 -1.095125 0.426120 -1.571249 -2.067719 -0.516962 -14.073770 1.321915 10.164356 -15.810209 -0.059633 -9.665073 2.806074 -6.789500 3.948629 -9.690997 -17.369150 4.180480 -4.244775 -0.437830 0.380255 6.001877 -4.982913 4.400469 4.362001 0.670821 10.884439 6.435038 7.530926 12.242113 8.403631 -5.330762 1.959396 -16.467824 7.345662 -7.955397 -3.450272 -1.621841 0.759069 10.279816 7.826829 7.432979 -15.770826 8.902706 9.429164 -8.099967 -6.961458 0.379788 -9.350604 -13.498312 -1.870335 9.772495 3.209170 4.086103 -5.527062 4.294119 -4.250555 -2.892232 -5.995574 -3.651808 1.535891 -11.980220 -2.856367 0.818408 -1.929845 -6.668224 11.248324 6.033903 1.238807 17.981913 1.147125 -11.948503 0.535437 -14.049976 2.453692 18.286389 -2.070410 -13.344489 12.105586 -12.626047 1.868687 4.123114 10.936117 4.841044 -5.598343 -5.139338 1.197570 3.158942 0.408921 16.486959 -4.627554 5.079334 -12.988906 4.595700 -4.710692 -1.187747 25.458209 6.538546 -17.256351 -2.356961 11.270285 1.094888 -3.411670 7.298330 -13.040672 -8.843449 -10.760623 6.850522 4.982205 -10.598845 0.151917 10.621168 -13.618652 10.189399 1.017009 -8.009607 -0.015952 -16.929596 -3.828872 27.883949 -0.402047 3.284697 2.123731 -9.030937 8.218288 -19.098434 -0.592005 4.145549 -0.554892 3.922149 -7.021421 3.339871 14.639169 -4.945162 10.155708 -16.482713 0.098179 7.436115 -6.905591 3.358699 -10.107073 -8.821084 -0.432709 -3.707204 4.578120 -15.088653 3.316570 10.827376 -6.003922 12.640399 2.330540 -9.439953 -1.517772 3.787199 -10.887908 17.358071 -1.755491 10.243041 2.695383 10.936834 -11.098696 -5.319206 -6.244852 0.836395 -12.985451 7.115981 -12.531677 0.906334 2.369409 -2.227162 -11.304111 3.915571 2.905261 -4.411030 -0.410139 -4.415080 -7.812076 -0.724328 -7.306376 10.599438 8.160120 -1.778308 -10.748543 4.170087 9.462327 -7.116574 5.269438 1.764361 0.565452 16.599532 -12.880228 -2.073200 6.863681 7.502147 -10.759428 -17.172915 2.289162 -9.154723 0.807097 0.760166 -14.264613 -12.124764 -7.149619 3.361429 -8.067423 0.614922 8.613058 20.059149 10.561252 -14.813852 3.242056 0.889714 4.108983 2.317609 2.918524 4.575496 4.544981 +PE-benchmarks/kmp-algorithm.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -5.190063 3.904901 3.262620 -2.461839 8.505169 1.212218 2.778687 3.614842 -4.101960 6.008323 -7.748246 -2.243912 -2.549919 -6.311344 -0.368670 -4.651536 0.882015 -0.603359 -1.869933 1.594556 2.901749 -3.529262 -0.159814 -3.358352 -1.095426 -6.533692 -2.899900 0.412589 6.666857 -1.971627 0.462798 -0.141040 9.785311 0.199415 8.195612 5.600498 2.581836 6.001804 0.129839 -1.692994 -1.452330 5.894243 -4.597882 -4.854613 -1.408150 -5.017972 -4.748202 -1.902725 2.213197 -2.810668 -1.826729 5.317156 -1.102312 1.606692 -3.555655 4.410109 5.071613 -0.713865 9.362854 1.533595 -4.050756 -1.224465 -5.555566 6.286624 -2.391194 2.568459 -2.259298 -5.001647 1.027484 -0.751415 -2.157195 -3.303342 -2.203020 5.524163 3.131628 -5.527496 2.415811 -2.218731 -8.237391 -6.745003 -4.924815 1.875756 1.110705 5.959023 0.032124 -0.020751 2.422913 2.028674 -0.495014 -9.489410 -0.282328 8.036282 -5.078442 -2.008058 -4.033072 4.866795 -0.652127 3.770522 -4.484990 -3.328676 1.775172 0.263420 0.918903 -7.815793 1.522965 -7.074395 1.273248 0.130587 0.051394 3.992644 3.459244 3.191546 5.987808 6.910153 -6.920315 1.260282 -5.771015 2.286434 -2.222683 -0.167791 -0.366382 2.474795 0.500200 2.126978 7.334679 -8.755798 2.586564 2.526668 -3.242167 -7.587765 -0.936327 -6.961448 -6.107062 -1.229622 2.681085 2.126218 1.256899 -4.843384 0.677994 -1.170569 -2.334743 -2.723198 1.654639 5.760178 -7.385125 -1.180191 -0.472298 -0.067846 -3.810008 6.524243 4.267190 3.507237 8.343452 3.937619 -2.208052 3.371196 -6.425337 0.334115 9.334185 1.877602 -7.226226 5.617701 -6.192540 -0.266660 3.035522 3.515279 4.594073 1.075203 -6.949814 -3.712028 3.339969 -0.702369 8.532329 2.069435 2.032983 -2.709340 8.885912 -2.175276 -5.543606 8.217748 5.031959 -7.740475 3.319610 2.914953 -4.804345 -0.993982 4.905081 -6.333577 -1.164370 -4.695319 -0.599948 2.529198 -3.641328 -0.596181 1.586183 -7.656767 9.586016 0.544389 2.101874 1.946552 -5.692384 -8.376680 8.436755 -0.181255 -0.823178 -3.427579 -2.566052 -6.139332 -7.531269 1.172382 0.315828 -3.953128 -3.171775 -7.072901 1.625413 4.693775 -1.313725 5.899800 -7.321563 -2.356053 2.756248 1.952733 4.668354 -2.323703 -4.187146 -1.636626 -1.837726 4.153111 -5.172863 6.730452 8.900273 -2.518046 7.494793 -2.377939 -5.651864 0.600266 3.167935 -7.162093 7.536306 -0.989237 4.294916 -0.027923 4.959472 -5.108325 -1.899755 0.260482 -1.767137 -1.982187 3.100014 -3.889965 0.085669 -0.199375 -6.429132 -3.071438 1.190785 -1.247566 0.387775 0.400380 0.693552 -6.269616 -0.900265 -4.383345 1.158869 5.207678 -0.372390 -4.593831 2.332353 -0.231131 0.106047 0.608049 0.239251 0.064850 4.675699 -6.783981 -2.320688 0.391946 0.507940 -5.430137 -8.919197 -0.835126 -5.972803 -5.297520 4.783683 -6.823706 0.638510 -5.282312 -2.106891 -7.928220 -3.937697 2.977157 10.249516 2.759841 -5.316473 1.751509 -0.861222 6.016527 0.567073 1.917136 1.035983 2.649339 +PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.712993 -0.122055 0.581222 -0.399202 2.626147 -0.792474 0.304839 1.870104 0.784552 0.483082 -1.235016 -0.242053 -0.133117 -0.528566 0.534062 -0.372831 0.455641 0.947077 -1.097833 -1.017074 0.481422 1.617020 -0.271051 -0.515630 -0.154988 -0.627550 -0.803770 0.238906 -0.712914 0.295029 -0.821230 1.121576 1.790726 -0.299236 1.288964 1.009943 1.837690 1.004025 -0.388755 1.586643 1.494164 0.206590 -0.222837 -1.181867 0.175981 -0.567083 -1.411029 -0.205221 0.366861 -1.287034 1.574158 0.599226 0.453296 0.294372 0.214313 0.875625 -0.281612 -0.144939 0.677910 1.068159 -2.379578 0.475897 -0.821678 2.190865 -0.662620 1.949016 -0.656061 -2.232436 -1.632674 1.366231 1.412057 -1.434260 -1.266010 -0.341238 -0.065638 -0.190448 0.814611 0.451154 2.294391 -0.053370 -1.044063 0.827531 -0.351361 0.538327 -0.063205 -0.332262 -1.040041 -0.575745 0.330431 -0.564566 -0.791991 1.577905 -1.297771 1.035103 -2.371157 -1.766398 0.082237 0.012727 0.161981 -1.905709 0.551421 0.075230 0.008165 0.433318 -0.179561 -0.120773 0.513624 1.194427 0.073874 0.700684 -1.122255 0.411140 0.263800 0.017995 0.677821 0.647065 -1.447634 1.347272 -0.942193 -0.207463 -0.473866 -0.224012 1.077669 0.614272 0.366477 -0.679990 1.013408 0.181196 -1.128808 0.081367 0.421748 -0.123299 -1.233177 -0.281868 0.961651 0.587041 -0.191545 0.202783 0.570481 -0.478210 -0.180859 -1.101955 -1.032768 -0.968918 -0.800545 -0.272874 -0.195097 -0.225000 -0.692583 0.960246 0.536593 0.560798 1.146960 0.567388 -0.359288 -0.904039 -1.795479 0.484891 1.297371 -0.057097 -0.897699 0.682156 -0.958027 0.441763 0.606923 0.595984 -0.719249 0.965533 0.324747 0.541104 -1.238100 -0.107636 1.365912 1.423136 0.267547 -1.414025 -1.029075 -1.896064 -0.091565 1.848840 1.486492 -1.886042 -0.426232 1.401975 0.501938 -1.170574 0.456300 -1.428712 -1.215003 -0.740108 0.565430 0.827319 -1.317693 -0.268267 1.582939 -0.819959 0.607381 0.075820 -0.802819 -0.241719 -1.444885 -0.724652 2.342146 0.179186 0.445736 0.267608 -0.702949 0.563235 -1.489777 -0.047088 1.077722 0.138788 -0.377419 -0.528846 0.051069 1.603614 -0.963344 0.699515 -0.211507 0.101413 0.652866 -1.107595 0.475024 -1.903573 -0.538311 -0.911497 -0.508637 0.268686 -1.280154 -0.699453 0.829575 -0.539385 1.219400 1.628353 -1.512539 -1.077142 0.691579 -0.288270 1.104157 0.119701 -0.076461 0.604256 0.814497 -1.091106 -0.504662 -0.754121 0.360141 -1.286686 1.278868 -1.217321 0.156551 0.177480 -0.875883 -0.581418 0.776290 0.996678 0.011877 -0.418205 -0.344133 -0.706727 -0.135088 -0.938453 0.576880 0.707518 -0.988699 -1.213338 0.407189 0.610170 -2.421320 -0.712540 0.394686 0.298352 1.589616 -0.882166 0.460502 1.010384 0.397283 -2.322941 -0.972458 -0.438461 -1.186179 -0.640313 -0.826865 -0.979281 -1.859501 -0.362918 0.939142 -0.767323 -1.222676 0.801864 1.311544 0.486721 -0.054943 0.727718 0.362448 0.325872 0.202655 -0.097858 0.266504 0.517241 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.589145 1.976070 0.620243 -1.486000 3.896779 -0.372934 1.050079 1.848553 -1.345327 1.263938 -3.194046 0.597013 0.057327 -2.953415 0.635934 -0.555454 0.495745 0.925758 -0.391532 0.593173 1.067715 -0.930247 -0.168062 -1.965698 -0.160940 -2.658385 -0.363365 0.093484 1.016572 0.644369 -0.029969 0.737481 2.627529 0.211265 1.733451 1.996043 1.285514 2.169968 0.734992 -0.579161 0.884353 1.179575 -0.683043 -2.762267 0.321955 -1.364787 -1.909932 -1.332519 0.402217 -2.347788 0.027368 1.684587 0.295126 -0.467250 -1.893249 1.113235 2.760979 -0.533227 2.143026 1.384156 -1.539812 -0.897291 -1.066472 1.596070 -1.171300 0.828959 0.463489 -2.094193 -0.223265 1.824484 0.243192 -0.965398 -1.382753 0.030595 0.660207 -1.416471 1.035033 -0.323043 -1.467400 -1.531451 -0.910999 0.890133 -0.361887 2.375293 0.209885 -0.222195 -0.282217 -0.396280 0.974272 -1.745056 -1.423749 2.372919 -0.846494 -0.211918 -1.782191 1.780544 1.380975 -0.201946 -0.793656 -2.031772 0.951214 0.351788 0.217529 -1.197004 -0.847389 -2.243965 0.770775 1.039582 -0.465468 2.382044 -0.295424 1.226712 0.522753 0.719305 -1.681505 0.767810 -2.794938 0.886457 -0.605536 -0.025403 -0.481563 -0.393002 1.210044 0.612609 0.955309 -2.214268 2.421408 1.682433 -0.634311 -1.511278 0.744865 -0.889451 -1.805156 -0.184100 1.008512 0.747296 0.409998 0.162454 0.326639 -0.707419 -0.964523 -1.714417 -0.809097 2.968077 -3.144025 -0.039146 -0.271902 -0.167233 -1.012148 0.934236 0.716195 0.402134 2.481604 1.182746 -0.862609 1.826805 -2.057748 0.981901 4.110321 1.863937 -1.885812 1.186607 -1.169603 0.202289 0.737380 0.376271 0.369882 0.815891 -2.522691 -1.295958 0.383976 -1.544897 2.307541 1.493282 0.858482 -2.953964 2.757883 -0.531629 -0.627656 3.163665 1.716147 -2.708066 1.221223 2.679561 -2.055156 -0.589735 0.710172 -1.609821 -0.964851 -1.224861 0.509543 0.608963 -2.089936 -1.743252 -0.590132 -2.100224 2.102484 0.639825 0.373127 -0.519956 -1.009360 -1.183893 3.550770 0.254561 -0.271943 -0.382789 -0.758736 -1.746362 -2.817121 0.180670 0.909964 -1.603164 -0.869827 -1.671718 -0.445694 2.316940 -1.975615 0.338234 -2.692376 -0.022176 1.047229 1.002099 0.583897 -2.437289 -1.406926 -0.178108 -0.141148 0.613396 -1.326576 1.575578 2.407250 -1.136356 1.874158 0.418863 -0.832611 0.731139 2.033768 -1.110106 2.250179 -0.345834 2.994306 0.778977 1.995594 -1.760521 -0.604424 -0.537101 -1.258621 -1.197603 1.907425 -2.548583 0.065290 1.702212 -0.747768 -1.920886 1.764712 1.043790 1.191060 -0.730259 -0.038946 -0.888369 -0.022707 -1.163661 0.608695 1.553766 -0.924495 -2.265648 -0.353469 1.884801 -1.264599 -1.072380 0.813224 0.566206 2.276669 -1.928985 1.533372 0.310383 0.249606 -2.892432 -2.851115 1.298443 -1.684437 -1.783112 1.030220 -3.370558 -1.095570 -1.263276 1.006359 -3.238264 -0.938559 0.425217 2.464169 -0.140994 -0.356485 1.060897 -0.036705 1.012460 -0.222415 0.935025 -0.010531 1.398588 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.453285 0.329197 -0.019325 -0.439260 1.486276 -0.044955 0.031336 0.796537 -0.039115 0.507804 -0.877853 0.113105 0.065929 -0.737739 0.223725 0.115158 0.086688 0.272315 -0.354754 -0.232287 0.264724 0.075900 0.061800 -0.450884 -0.110313 -0.766294 -0.203810 0.129702 0.194179 0.213559 -0.398898 0.208313 0.724310 -0.167488 0.380924 0.441212 0.736356 0.522041 0.060653 0.146159 0.550337 0.204295 -0.200908 -0.749101 0.137910 -0.470740 -0.764845 -0.259023 0.240174 -0.807590 0.320755 0.475946 0.141065 -0.206732 -0.326656 0.526279 0.466415 -0.227611 0.632886 0.428922 -0.768248 -0.384782 -0.422083 0.908383 -0.427473 0.612700 -0.089700 -0.938632 -0.551343 0.762141 0.130086 -0.323221 -0.462212 -0.052682 0.174916 -0.365671 0.330303 -0.055311 0.473416 -0.315299 -0.308240 0.393767 -0.231778 0.595827 0.099510 -0.036844 -0.124125 -0.159569 0.233011 -0.504580 -0.441722 0.746052 -0.399663 0.211956 -0.714333 -0.034385 0.257135 -0.138810 -0.075806 -0.663537 0.235790 0.231558 0.070617 -0.334722 0.007094 -0.598325 0.365393 0.477247 0.057066 0.447258 -0.239798 0.091484 -0.021615 0.213252 -0.177985 0.163227 -0.821949 0.311593 -0.165498 0.047133 -0.381871 -0.111420 0.608390 0.229183 0.319638 -0.635438 0.795598 0.295486 -0.381613 -0.286808 0.222686 -0.098385 -0.547902 0.090800 0.321967 0.094708 0.006428 0.120823 0.306050 -0.216238 -0.566036 -0.356075 -0.347752 0.415244 -0.873405 0.016947 -0.053997 -0.075130 -0.267194 0.391526 0.340071 0.195604 0.801238 0.364573 -0.168998 0.342307 -0.772368 0.486905 1.179685 0.342691 -0.573189 0.370876 -0.583513 0.195610 0.242971 0.148848 -0.081956 0.545565 -0.332772 -0.010662 -0.089512 -0.236003 0.767945 0.524849 0.347179 -0.905730 0.227375 -0.499362 0.098829 0.968185 0.706845 -1.025517 0.353797 0.882411 -0.350820 -0.140429 0.223279 -0.575409 -0.374645 -0.434285 0.218444 0.424085 -0.702139 -0.518786 0.065116 -0.547468 0.656123 0.130048 -0.046481 -0.002743 -0.436118 -0.054259 1.043797 0.132079 0.022939 -0.053964 -0.293294 -0.532591 -0.851964 0.001990 0.485393 -0.467240 -0.212679 -0.487040 -0.223492 0.843868 -0.510567 0.179487 -0.874234 0.224854 0.366750 0.081396 0.258997 -0.644460 -0.299046 -0.220162 -0.259591 0.161787 -0.650482 0.143554 0.502257 -0.399711 0.784449 0.236370 -0.359771 -0.044736 0.504529 -0.165525 0.725160 0.082090 0.542800 0.256415 0.615495 -0.483990 0.002867 -0.345527 -0.351191 -0.379988 0.659388 -0.859592 -0.083839 0.544575 -0.323037 -0.626531 0.502772 0.503320 0.423418 -0.223634 -0.199815 -0.236049 -0.092891 -0.389792 0.259975 0.395241 -0.481248 -0.702826 -0.036086 0.568886 -0.757316 -0.499641 0.308178 0.220609 0.816823 -0.588918 0.470527 0.291177 0.188835 -1.173933 -0.616055 0.039750 -0.362740 -0.410974 0.120858 -1.030463 -0.650179 -0.323208 0.410745 -0.789023 -0.332707 0.165498 0.784526 0.019239 -0.049189 0.453564 0.101537 0.171640 -0.020820 0.136541 0.146444 0.254488 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = -0.744004 -0.819754 0.505147 -0.072746 1.891166 -1.104878 0.181245 1.256044 1.569477 0.096334 -1.038028 -1.132656 -0.646024 -0.334328 0.505256 -0.458108 0.876935 0.972583 -1.218482 -1.128065 0.675190 1.741783 -0.357158 -0.530434 0.180312 -0.147624 -1.037058 0.096518 -0.793477 -0.153922 -0.930759 1.255167 2.037211 -0.032601 1.511596 0.978832 1.810054 1.217373 -0.719811 1.572122 1.204315 0.712499 -0.247491 -1.152237 0.321549 -0.584145 -0.910256 -0.100784 0.508025 -0.566960 1.575194 0.490972 0.398840 0.619309 0.287123 0.445465 -0.213728 0.528698 0.637574 1.075110 -1.883314 1.307988 -0.773897 1.595017 -0.855610 2.000302 -0.842759 -2.003482 -1.784204 0.778607 1.640270 -1.708904 -1.474475 -0.372307 -0.120037 0.054735 1.055433 0.722557 3.075247 -0.348738 -1.654833 0.432130 -0.511067 0.435467 -0.461712 -0.541554 -0.936981 -0.669964 0.490227 -0.393649 -0.669725 0.914340 -1.483547 1.128233 -1.511344 -2.041912 -0.294528 0.291981 -0.036027 -1.953557 0.384599 -0.299544 0.007488 1.553449 0.216298 0.667939 0.470567 0.853657 0.106669 0.457458 -0.458311 0.404409 0.382154 -0.096764 0.775478 0.221578 -1.145595 1.299573 -1.172710 -0.215619 0.003677 0.100656 0.995722 0.289861 0.313283 -0.542723 0.651425 0.191028 -1.007506 0.518260 0.494943 -0.394237 -1.429822 -0.544578 1.213095 0.707106 -0.294201 -0.052845 0.609995 -0.459624 0.232209 -0.372877 -1.234939 -1.673369 -0.337884 -0.513770 -0.391543 -0.634006 -0.562647 0.756127 0.113828 0.542885 0.847519 0.603235 -0.946953 -1.401202 -1.654152 0.335752 0.975769 -0.992176 -0.863837 0.375593 -0.656107 0.662781 1.008573 0.717244 -0.484999 0.412701 1.064023 1.083825 -1.523247 -0.033804 1.214603 0.936951 0.336794 -1.318138 -1.431882 -1.461699 -0.281124 2.076296 0.967630 -1.823706 -0.571905 1.003616 0.660578 -1.252569 0.111316 -1.011672 -0.961248 -1.206834 0.860179 0.695487 -1.326009 0.037945 1.913276 -0.866875 0.308572 0.030744 -0.979325 0.116582 -1.775252 -0.882360 2.523650 0.105705 0.480498 0.090176 -0.777767 1.429721 -1.478849 0.147367 0.340737 0.424711 -0.200196 -0.445831 0.476040 1.776105 -0.733736 0.688580 0.077506 0.066256 0.442841 -1.356774 0.513568 -1.546473 -0.787094 -0.679663 -0.598155 0.308259 -1.169676 -1.238325 0.906859 -0.709222 0.530186 1.659292 -1.714423 -1.175488 0.612365 -0.380590 0.858982 -0.105673 -0.336909 0.276748 0.763256 -1.201594 -0.736973 -0.533819 0.825692 -1.418306 1.067169 -0.890357 0.358086 -0.008045 -0.889385 -0.350204 0.671061 0.613480 -0.003291 -0.263206 -0.419317 -1.009842 0.286355 -0.288599 0.498644 0.894838 -0.356203 -1.239528 0.297401 0.273664 -2.206986 -0.739600 0.305894 -0.215824 1.639626 -0.743247 0.027639 1.059667 0.344155 -1.462774 -0.954771 -0.628027 -1.223129 -0.132091 -0.335660 -0.477449 -1.540164 -0.327681 0.850655 -0.032242 -0.860380 0.587035 1.001507 1.007940 -0.241690 0.712432 0.532421 0.501486 0.235762 -0.506390 0.150557 0.556328 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -3.099405 1.788194 1.189902 -1.553418 5.312445 -0.467551 1.666620 1.736603 -1.025264 2.825924 -4.695112 -1.572924 -1.505018 -4.220505 0.362048 -1.688068 1.387831 0.755521 -1.049660 0.780402 2.026277 -1.769833 -0.081499 -2.421472 -0.263174 -3.879553 -1.590802 0.310033 2.914536 -1.058980 -0.143511 0.817426 5.854980 0.581359 4.623910 3.412324 1.857460 4.152285 0.442246 -1.135846 -0.033909 3.410249 -2.150030 -3.966437 0.183900 -2.692605 -2.761533 -1.973588 1.366590 -1.973868 -0.031626 3.113562 -0.220105 0.623830 -2.796639 1.699996 4.089557 0.160932 5.013674 1.562996 -1.968473 0.175375 -2.639002 2.560783 -2.040380 1.288039 -0.814148 -3.454517 -0.185555 0.656433 0.100032 -2.615003 -2.292636 1.925267 1.590478 -2.807687 1.924436 -0.574753 -2.261564 -4.460803 -3.441634 0.923727 -0.293539 3.896150 -0.255237 -0.294088 0.448360 0.245961 0.649195 -4.556026 -0.887739 3.672074 -2.719865 -0.499301 -1.190207 2.760133 0.265231 1.315244 -2.543637 -2.972062 1.041482 -0.339252 0.595814 -1.455059 0.497340 -3.003575 0.953002 0.297738 -0.104376 2.601407 2.308646 1.788564 2.695104 2.874010 -3.673167 0.415367 -3.904596 1.659543 -1.280680 -0.096115 -0.109317 1.132993 1.089254 0.803425 3.379155 -4.875175 2.368205 2.037499 -1.392305 -3.227094 0.267892 -3.160701 -3.628068 -0.903697 2.227538 1.145693 0.579171 -1.853611 0.580460 -0.851623 -1.181637 -1.061456 -0.333335 3.642445 -4.485191 -0.537335 -0.642212 -0.995661 -1.874843 2.682313 1.679216 1.791580 4.577394 2.548856 -2.283202 1.971146 -4.053470 0.788377 6.104751 0.972209 -3.940667 2.691735 -2.792541 0.358359 2.328568 1.942875 2.284142 -0.293105 -3.162139 -1.315721 1.391734 -0.904586 4.748690 0.998232 1.636046 -3.335380 4.304989 -0.251297 -2.322366 5.908101 2.241935 -4.982907 1.984653 2.705113 -3.035511 -0.790095 1.902737 -3.045301 -1.043280 -3.282265 0.786538 1.443890 -2.944610 -1.140965 0.595941 -4.312696 4.499074 0.469440 0.519878 1.054701 -3.263852 -3.454423 6.149547 0.042753 -0.239600 -1.687091 -1.907966 -1.980786 -4.898273 0.721090 -0.116858 -2.257092 -1.346343 -3.776790 0.685162 3.945197 -1.403483 2.338328 -4.305928 -0.551506 1.695751 1.028079 1.848713 -2.480971 -2.646813 -0.089359 -0.851954 1.653467 -2.631520 2.784090 4.848560 -2.210204 2.828854 -0.318177 -2.417886 0.907067 2.371109 -3.536504 4.251940 -0.918630 3.867565 0.235617 3.127880 -3.106481 -1.194528 -0.156990 -0.684067 -1.970993 2.320178 -3.063790 0.126010 1.398478 -2.738916 -2.686600 1.418891 0.289762 1.021478 -0.129987 -0.157126 -3.188464 0.225001 -1.676908 1.029625 3.166771 -0.055044 -3.400690 0.683749 1.152928 -0.648179 -0.855266 0.621916 0.002191 3.548728 -3.822520 -0.166369 0.449035 0.615180 -3.009337 -5.504500 0.745532 -3.550769 -2.410374 3.165797 -4.713593 -0.458378 -2.802829 0.105564 -4.411349 -1.057044 1.015023 5.257184 1.550717 -2.326682 1.543639 -0.110511 2.828721 -0.146062 0.800097 0.396725 2.228161 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.550636 -0.025402 0.063739 -0.276944 1.157102 -0.088832 -0.087548 0.678821 0.783989 0.303775 -0.875268 -0.800399 -0.331847 -0.507455 0.213291 -0.039452 0.125212 0.469529 -0.670384 -0.496485 0.554956 0.449212 -0.036845 -0.511254 0.083119 0.024463 -0.587656 -0.031999 -0.236956 0.288920 -0.631784 0.333303 0.847175 0.171768 0.651266 0.477932 0.751576 0.976618 -0.422734 1.245261 0.398669 0.596134 -0.304610 -1.064504 0.555281 -0.762689 -0.425667 -0.405692 0.266538 -0.735677 1.385638 0.456005 0.179578 0.011522 -0.015942 0.032717 0.188375 0.565826 0.622449 0.654728 -0.926394 0.436693 -0.655624 0.421324 -0.444418 1.412434 0.143733 -1.220841 -0.950686 0.339525 1.011506 -0.852489 -0.909889 -0.063061 -0.076385 -0.040261 0.612041 0.055469 1.001138 -0.080542 -0.892530 0.200253 -0.365191 0.546855 -0.271604 -0.293592 -0.614491 -0.268813 0.309082 -0.444034 -0.516891 0.673911 -0.496164 0.835488 -0.794049 -0.775783 -0.258380 0.238093 -0.307073 -0.471722 0.304687 0.446413 0.079349 0.662683 -0.416884 -0.268277 0.933610 0.713500 -0.150558 -0.104764 0.254466 -0.010018 0.074192 0.208266 0.050808 0.478729 -0.649524 0.399387 -0.240918 0.189957 -0.077590 0.096193 0.406175 -0.262675 0.211128 -0.427270 0.637544 0.237492 -0.761067 -0.074039 0.402717 -0.430641 -0.873371 -0.130646 0.575820 0.367146 -0.275820 -0.054306 0.110596 -0.445997 -0.421105 -0.357004 -0.586532 -0.365262 -0.233873 -0.266566 -0.285531 -0.493380 -0.334747 0.468266 0.129285 0.253119 0.711223 0.469766 -0.354709 -0.917719 -0.724184 0.420694 1.059642 -0.052874 -0.771821 0.093667 -0.213304 0.587893 0.560917 0.085612 -0.068226 0.671751 0.394107 0.488859 -0.869739 -0.207403 0.813928 0.960576 0.637754 -0.803886 -0.301069 -0.629400 -0.150485 1.252361 0.760960 -0.936553 -0.375114 0.566874 -0.014830 -0.367745 0.064399 -0.201816 -0.239877 -0.562232 0.342932 0.342725 -0.875794 -0.607029 0.569123 -0.756785 0.690153 0.087601 0.173952 0.022968 -1.153996 -0.099051 1.351999 0.114277 -0.165752 0.014016 -0.233971 0.123901 -0.802108 0.274269 0.491452 -0.070628 -0.513911 -0.397475 0.239117 1.050766 -0.507823 0.104554 0.322113 -0.120120 0.217889 -0.895908 0.638841 -1.023935 -0.525428 -0.489952 -0.215091 0.652643 -0.305195 -0.415216 0.840804 -0.476236 0.423634 1.295892 -0.081419 -0.562005 0.686457 -0.027569 0.592139 -0.259437 0.009265 -0.125642 0.710971 -0.457272 -0.208085 -0.171665 0.416749 -0.316405 0.887591 -0.509651 0.119465 0.205598 -0.792519 -0.074482 0.593523 0.276431 0.341914 -0.139725 -0.168867 -0.564508 0.057549 -0.082006 0.069422 0.727778 -0.184860 -0.899259 -0.231536 -0.012610 -0.990506 -0.409247 0.392753 -0.130160 1.109895 -0.529418 0.182040 0.435071 -0.225861 -0.999902 -0.229157 -0.500031 -0.472451 -0.251013 0.329668 -0.502025 -0.534063 -0.368741 0.454724 -0.249204 -0.321055 -0.124882 0.615338 0.700935 -0.002088 0.527548 0.366594 0.615819 0.217632 -0.423488 0.246001 0.583586 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -1.285562 1.010968 1.079091 -0.966275 2.807837 -0.075153 0.729723 1.165237 0.065307 1.196249 -2.396522 -0.624486 -0.177743 -1.331331 0.219753 -1.029132 0.145687 0.399085 -0.832794 -0.013766 0.707316 0.061550 -0.186584 -1.160177 -0.299132 -1.578064 -1.059005 0.206935 0.704405 -0.108652 -0.136263 0.350866 2.413445 -0.111428 2.071367 1.527787 1.200769 1.592278 -0.259892 0.545880 0.765136 1.118455 -0.892532 -1.577299 -0.192647 -1.213533 -1.595810 -0.829977 0.442634 -1.346635 0.563179 1.174579 0.179470 0.146576 -0.672430 1.163884 1.168141 -0.001699 1.931125 0.889709 -1.648518 0.624833 -1.423044 1.754820 -0.801638 1.550088 -0.697194 -2.045091 -0.727620 0.806788 0.579051 -1.310472 -1.141589 0.555459 0.478014 -1.035637 0.945622 -0.378666 -0.066220 -1.439000 -0.991180 0.850703 0.044197 1.372116 -0.060841 -0.224933 -0.312818 0.017446 0.191551 -1.705034 -0.863868 2.011902 -1.365483 -0.087226 -1.220003 0.216327 0.307958 0.522686 -0.599992 -1.566165 0.648495 0.231693 0.043824 -0.512714 0.252241 -1.276217 0.409985 1.055829 -0.209241 1.067235 -0.169320 1.051533 1.191492 1.031726 -1.023318 0.631597 -1.737223 0.885974 -1.042955 -0.054445 -0.238662 0.224890 0.653273 0.874889 1.249983 -1.634950 1.315876 0.716181 -1.104184 -1.012295 0.204100 -1.168704 -1.807531 -0.234882 0.622586 0.914821 0.200816 -0.578191 0.273154 -0.657419 -0.093442 -0.951541 -0.169184 0.662214 -1.669996 -0.372148 -0.048947 0.010142 -1.039971 1.572568 0.996676 0.509619 2.146736 0.881707 -0.548938 -0.078934 -1.841017 0.368738 2.512231 0.026535 -1.597779 1.213061 -1.324572 0.157846 0.944289 0.789589 0.182680 0.673922 -1.332195 -0.605249 -0.290171 -0.656487 2.157488 1.081231 0.438989 -1.619033 1.470139 -1.266695 -0.953013 2.547657 1.635222 -2.302894 0.095392 1.391604 -0.947486 -0.866763 1.021362 -1.534487 -0.832323 -1.032276 0.171060 0.545643 -1.107949 -0.733730 0.701178 -1.793455 1.955862 0.206104 -0.121715 -0.062806 -1.317064 -1.663571 2.848974 0.147478 -0.117001 -0.259597 -0.450415 -0.364018 -2.160081 0.112331 0.667526 -0.826920 -0.719998 -1.406143 0.583589 1.536924 -1.269117 1.018021 -1.194840 -0.546307 0.759789 -0.244800 0.894498 -1.495278 -1.004441 -0.857194 -0.504962 0.657169 -1.471877 0.961797 2.235148 -0.633233 1.628521 0.569993 -1.701559 -0.354561 1.286057 -1.215975 1.932090 -0.293658 0.926130 0.311382 1.326989 -1.377379 -0.708066 -0.374091 -0.487358 -0.971631 1.351694 -1.464964 0.188941 0.259270 -1.369363 -0.792772 1.040399 0.439296 0.121534 -0.272130 0.133558 -1.599743 -0.061974 -1.047880 0.256432 1.226284 -0.451920 -1.821649 0.347037 0.658894 -1.177736 -0.764043 0.187191 0.172774 1.708925 -1.523851 0.236985 0.626321 0.228603 -2.279302 -1.949969 -0.027436 -1.814425 -1.201479 0.359739 -1.613184 -0.973976 -1.133961 0.226506 -1.648045 -1.368417 1.087137 2.321162 0.862197 -1.077088 0.556238 -0.095494 1.394805 0.305239 0.211203 0.215350 0.745859 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -2.705386 1.408797 0.479605 -1.170539 4.201844 0.133992 0.956829 1.362795 -1.545226 2.796697 -3.830255 -1.587999 -1.616556 -3.785196 -0.005986 -1.281405 1.119843 0.136550 -0.904248 0.791561 1.677322 -2.155112 0.164815 -1.835291 -0.281960 -3.071378 -1.312210 0.263901 3.194587 -1.341891 -0.328155 0.229392 5.145001 0.416420 3.892236 2.708446 1.116717 3.503660 0.561987 -1.751729 -0.645219 3.224380 -2.108134 -2.993653 -0.091334 -2.572786 -2.132393 -1.340194 1.372342 -1.143608 -0.617309 2.717101 -0.481941 0.599564 -2.535420 1.542016 3.376584 0.106570 4.812343 0.902453 -1.361886 -0.416128 -2.359986 2.428351 -1.799478 0.765656 -0.779008 -2.482216 0.342633 -0.097737 -0.602808 -1.850438 -1.709718 2.247148 1.577417 -2.677000 1.413613 -0.701558 -3.046965 -4.027667 -3.135966 0.611641 -0.288090 3.320816 -0.248823 -0.070332 1.115826 0.664177 0.269327 -4.431122 -0.254276 3.156127 -2.249155 -0.641874 -0.878878 2.923648 -0.245653 1.390779 -2.629553 -1.807720 0.693123 -0.281124 0.613864 -2.480154 1.123410 -2.888434 0.924372 -0.255009 0.183550 2.023093 2.848335 1.316531 2.641146 3.027470 -3.417895 -0.149418 -3.100845 0.960395 -0.824850 -0.131771 -0.079770 1.352818 0.642309 0.352154 3.468361 -4.596598 1.632846 1.577003 -1.203411 -3.345160 -0.093210 -3.041823 -3.018738 -0.662266 1.813813 0.713977 0.572637 -2.096612 0.468966 -0.493716 -1.690410 -0.389719 0.249249 3.412808 -3.745460 -0.442283 -0.493499 -0.802931 -1.445759 2.546542 1.614369 1.730957 4.047877 2.162609 -1.918523 1.802516 -3.354579 0.640713 5.193937 0.685085 -3.644950 2.470295 -2.559459 0.194537 1.838320 1.817230 2.608919 -0.315105 -2.714618 -1.317554 1.513014 -0.369539 4.145284 0.413159 1.464436 -1.862339 4.163448 0.278507 -2.084109 4.708055 1.681662 -3.881410 2.090835 1.866310 -2.684813 -0.188046 1.866152 -2.570503 -0.460049 -2.925050 0.396235 1.406701 -2.342649 -0.576768 0.289869 -3.811968 4.423620 0.279296 0.634688 1.306374 -3.057895 -3.127279 4.601137 -0.074597 -0.236420 -1.781721 -1.726897 -2.658443 -4.128750 0.708940 -0.401369 -2.130536 -1.147459 -3.497209 0.509694 3.063102 -0.549468 2.385195 -4.223485 -0.462047 1.435106 1.372818 1.936411 -1.117769 -2.222585 0.226596 -0.905357 1.803784 -2.376215 2.890475 4.071250 -1.848087 2.795227 -0.930999 -1.860408 0.994414 1.669857 -3.390728 3.722875 -0.719445 2.844764 -0.098637 2.629790 -2.361905 -0.767813 0.104489 -0.536070 -1.309640 1.549370 -2.329787 -0.079310 0.819358 -2.575248 -2.198585 0.724827 -0.322605 0.967815 0.200133 -0.233286 -2.834958 0.052197 -1.318929 0.848416 2.708564 0.215982 -2.442381 0.813334 0.420022 0.250788 0.166891 0.367295 -0.146684 2.700661 -3.429639 -0.745844 0.109261 0.578189 -2.032832 -4.517770 0.039964 -2.552059 -1.997994 3.472893 -4.010577 0.179629 -2.516591 -0.463445 -3.527682 -0.663425 0.755900 4.789907 1.416394 -2.434272 1.187644 -0.185750 2.586010 -0.073648 0.641923 0.382753 1.667753 +PE-benchmarks/tug-of-war.cpp__main = -0.513626 -0.090252 -0.243781 -0.207881 1.150029 -0.150847 -0.085230 0.697097 0.332893 0.376614 -0.704744 -0.452901 -0.355355 -0.683993 0.207718 0.236577 0.299361 0.388335 -0.496310 -0.384229 0.486450 0.145660 0.072505 -0.415799 0.075291 -0.222519 -0.304090 0.018568 0.060282 0.184816 -0.656088 0.307336 0.840519 0.108598 0.474207 0.381218 0.658610 0.850711 -0.089281 0.453309 0.288193 0.548044 -0.245691 -0.965593 0.484996 -0.649584 -0.409248 -0.305378 0.347138 -0.613049 0.860927 0.458044 0.111278 -0.027039 -0.255698 0.095956 0.412493 0.273477 0.673191 0.497605 -0.674296 -0.090135 -0.437373 0.488783 -0.478471 0.822908 0.109697 -0.970220 -0.690227 0.375808 0.525369 -0.613768 -0.684053 -0.048794 0.044623 -0.165851 0.496900 0.123848 0.813050 -0.296901 -0.843860 0.105972 -0.466892 0.613342 -0.202804 -0.184206 -0.336581 -0.251794 0.330330 -0.475070 -0.356750 0.524160 -0.420326 0.632893 -0.556930 -0.322776 -0.157909 0.076207 -0.349729 -0.474590 0.172218 0.254615 0.133932 0.246210 -0.159285 -0.267472 0.716929 0.333951 0.050680 0.137834 0.390717 -0.086999 -0.043182 0.210451 -0.058061 0.183675 -0.704992 0.329393 -0.082541 0.138438 -0.158823 0.103309 0.516408 -0.268950 0.291200 -0.617871 0.607472 0.261894 -0.439888 -0.182885 0.334106 -0.279887 -0.671968 -0.080614 0.612437 0.104089 -0.185432 -0.037931 0.245766 -0.248860 -0.676102 -0.123932 -0.542103 0.077340 -0.554150 -0.131465 -0.272060 -0.481750 -0.182659 0.288279 0.084732 0.293968 0.639947 0.481954 -0.435340 -0.202532 -0.748176 0.494134 1.093867 0.127149 -0.696065 0.131558 -0.323178 0.477225 0.494134 0.118451 0.141050 0.422837 0.276748 0.428335 -0.348245 -0.079787 0.748389 0.581133 0.638977 -0.798962 -0.161120 -0.311026 0.050017 1.111079 0.527407 -0.951199 0.139371 0.605891 -0.154388 -0.082279 -0.006324 -0.258032 -0.195555 -0.660400 0.382954 0.471840 -0.879029 -0.472098 0.292945 -0.638447 0.622082 0.064045 0.096375 0.184333 -0.944408 0.173020 1.147370 0.119538 -0.030638 -0.126252 -0.400755 -0.296929 -0.826534 0.214661 0.252678 -0.223244 -0.322678 -0.462573 -0.075426 1.035624 -0.274866 0.099062 -0.380073 0.204446 0.266969 -0.334692 0.445785 -0.725255 -0.456372 -0.129008 -0.246701 0.492138 -0.402407 -0.234856 0.566300 -0.559129 0.442268 0.745793 0.060880 -0.175358 0.494644 -0.124366 0.573963 -0.140153 0.383340 -0.060357 0.649644 -0.427543 -0.046657 -0.211616 0.249506 -0.350317 0.683981 -0.615815 -0.004018 0.442811 -0.543585 -0.391374 0.421643 0.303827 0.507977 -0.093654 -0.292681 -0.359951 0.044412 -0.113570 0.199704 0.615462 -0.219110 -0.735899 -0.166994 0.134303 -0.728314 -0.342678 0.369490 -0.042039 0.935270 -0.550125 0.178397 0.295063 -0.022064 -0.761161 -0.441468 -0.255176 -0.246515 -0.228965 0.561333 -0.784409 -0.423041 -0.323187 0.443500 -0.519536 -0.029375 -0.239037 0.612343 0.355608 0.055969 0.558838 0.331717 0.354888 0.013395 -0.183071 0.191259 0.467761 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -5.501804 4.100219 3.757587 -3.080813 9.927718 0.642323 3.217933 4.112893 -3.641579 5.963969 -8.830474 -1.785273 -2.197373 -6.819476 0.122979 -4.319139 1.102575 -0.064680 -2.193449 1.491521 3.205028 -3.057144 -0.402988 -4.214149 -1.029316 -7.645892 -2.963249 0.443829 6.030354 -1.355486 0.383047 0.493122 10.176897 0.270369 8.374883 6.192159 3.428193 6.570924 -0.146398 -1.231864 -0.353556 5.924943 -4.407232 -5.655556 -1.076530 -5.122494 -5.675497 -2.866467 2.149485 -3.930589 -1.352581 5.686050 -0.621878 1.233612 -3.877047 4.862344 6.189672 -1.207117 9.304294 2.426532 -4.449520 -0.442344 -5.672469 6.434778 -2.820364 3.073496 -1.983841 -5.833382 0.244498 0.490485 -0.924835 -3.519543 -2.775367 4.597980 3.191325 -5.582128 2.955832 -2.037887 -6.854871 -7.582365 -4.929375 2.261157 1.082036 6.568068 0.008346 -0.318142 2.035473 1.380481 0.159977 -9.107848 -1.347938 8.262038 -5.199797 -2.180762 -4.944529 4.696539 0.192337 3.251190 -4.288545 -4.693165 2.192615 0.274126 0.816549 -6.548418 1.150995 -6.765593 1.268148 1.130774 -0.156821 4.508194 2.106350 3.438739 5.575093 6.240491 -6.758915 2.125681 -6.495285 2.764268 -2.327076 -0.139402 -0.448932 1.800246 1.591474 2.530214 6.849539 -8.661563 3.710741 3.156777 -3.596020 -6.941742 -0.372973 -6.615386 -6.713717 -1.344541 2.943173 2.620867 1.376294 -4.076952 1.136023 -1.676539 -1.849123 -3.184698 0.748692 6.058687 -8.191894 -1.230705 -0.572058 -0.107762 -4.100634 6.440994 4.100436 3.146771 8.783445 4.052950 -2.533536 3.126571 -6.942784 0.719489 10.526393 2.150240 -7.240917 5.606359 -5.913112 0.087027 3.313376 3.495038 3.827746 0.912779 -7.297166 -3.640576 2.539352 -1.711642 9.055775 2.800651 2.069715 -4.474384 8.906601 -2.675121 -5.308373 9.021093 6.158748 -8.420315 3.008815 4.152585 -5.262522 -1.848654 4.707564 -6.398093 -2.051057 -4.751358 0.121425 2.340633 -4.138214 -1.384925 1.535706 -7.948366 9.334688 0.837842 1.990436 1.445007 -5.368607 -8.408936 9.440439 -0.319738 -0.840124 -3.060013 -2.561241 -5.627125 -8.394136 1.157370 0.589118 -4.081086 -3.221795 -7.134784 1.642296 5.565525 -2.669053 5.269349 -7.724014 -2.239524 2.979668 1.643029 4.463921 -3.661139 -4.576143 -1.843786 -1.802272 3.730485 -5.458354 6.392110 9.465442 -2.833761 7.259260 -1.764505 -6.078939 0.488110 4.148339 -6.897065 7.930434 -1.052239 4.959409 0.438332 5.513826 -5.633979 -2.314219 -0.225021 -2.202655 -2.753570 4.006066 -4.930413 0.338361 0.515191 -6.270784 -3.688771 2.353644 -0.496346 0.701118 -0.149959 0.802911 -6.499117 -0.443603 -4.776071 1.316380 5.528198 -0.729258 -5.458221 1.905913 1.125378 -1.056317 -0.463299 0.593713 0.265698 5.732558 -6.987315 -1.033702 0.799856 0.776398 -6.503904 -9.621573 0.073039 -6.884961 -5.941099 4.746906 -7.633492 -0.509795 -5.442981 -1.093473 -8.439659 -4.369860 3.251843 10.358552 2.647431 -5.028997 2.115333 -0.742251 6.001203 0.441742 1.983303 0.903979 3.024178 +PE-benchmarks/Iterative_QuickSort.cpp__main = -0.708413 0.138093 0.247113 -0.274244 1.332380 -0.189469 -0.021430 0.924607 0.258989 0.405444 -1.025084 -0.561441 -0.510941 -0.838809 0.217941 -0.197313 0.327832 0.508740 -0.578855 -0.337080 0.664720 0.203083 -0.054030 -0.605782 0.087335 -0.168468 -0.526281 -0.051975 0.087142 0.172259 -0.538016 0.424185 1.239262 0.203424 0.906019 0.678475 0.776156 1.209640 -0.150637 0.716609 0.244877 0.813291 -0.396641 -1.298088 0.551293 -0.882717 -0.360565 -0.329465 0.371305 -0.708525 0.914808 0.586205 0.119456 0.113282 -0.291397 0.119828 0.430630 0.498246 0.913766 0.654282 -1.009048 0.067421 -0.688283 0.489464 -0.578644 1.214712 0.054795 -1.175607 -0.670291 0.281475 0.670440 -0.947215 -0.840994 0.082396 -0.046431 -0.229213 0.647428 0.104034 0.488616 -0.243010 -1.095306 0.152549 -0.383905 0.734848 -0.298929 -0.282616 -0.477901 -0.228193 0.382302 -0.721775 -0.456535 0.855786 -0.638544 0.759797 -0.769737 -0.382964 -0.236479 0.294734 -0.434420 -0.580995 0.333866 0.330515 0.140128 0.129715 -0.306822 -0.471603 0.922818 0.388236 -0.140670 0.252343 0.420656 0.191357 0.234993 0.376567 -0.202396 0.355354 -0.997324 0.454782 -0.340541 0.111183 -0.054981 0.176433 0.363351 -0.273177 0.432167 -0.795333 0.689213 0.358952 -0.617339 -0.413615 0.428785 -0.596222 -0.978249 -0.229872 0.775178 0.364852 -0.215957 -0.205501 0.115295 -0.386008 -0.603763 -0.556813 -0.584295 0.104933 -0.654654 -0.275896 -0.348173 -0.544174 -0.364437 0.477289 0.148471 0.392451 0.877884 0.627511 -0.527902 -0.363603 -0.951124 0.396608 1.286725 0.113224 -0.980793 0.243134 -0.372102 0.496929 0.663835 0.172134 0.229205 0.663060 0.090006 0.217888 -0.446475 -0.209096 0.967771 0.866941 0.731013 -0.879164 0.093408 -0.482224 -0.296768 1.507760 0.582970 -1.221022 0.075769 0.680269 -0.103461 -0.294350 0.106463 -0.454792 -0.212887 -0.741251 0.287520 0.483866 -1.131804 -0.566471 0.504681 -0.950506 0.924640 0.104050 0.200882 0.095419 -1.325309 -0.360568 1.595761 0.160662 -0.111447 -0.192299 -0.444533 -0.233129 -1.076494 0.301211 0.403000 -0.242510 -0.564292 -0.620053 0.133904 1.165943 -0.455236 0.269283 -0.243303 -0.116830 0.322077 -0.522607 0.687360 -1.066298 -0.684843 -0.328023 -0.285899 0.810283 -0.470314 -0.090387 1.041548 -0.602753 0.737367 1.060592 -0.240051 -0.320087 0.721274 -0.331806 0.771969 -0.292959 0.499656 -0.081829 0.825346 -0.711805 -0.273488 -0.138754 0.371555 -0.422253 0.860622 -0.649283 0.105186 0.238151 -0.882941 -0.237816 0.550093 0.235057 0.447870 -0.115776 -0.145397 -0.592329 0.004121 -0.194668 0.149992 0.884351 -0.277055 -1.050619 -0.159200 -0.004975 -0.913479 -0.297657 0.394207 -0.099881 1.126378 -0.743740 0.084866 0.359881 -0.225091 -1.034721 -0.626990 -0.385384 -0.543652 -0.344420 0.539085 -0.836883 -0.416719 -0.456139 0.425809 -0.688863 -0.250602 -0.173305 0.880003 0.617576 -0.072656 0.615882 0.342266 0.706829 0.165691 -0.205782 0.120174 0.700592 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/tower-of-hanoi.cpp__main = -0.374152 -0.161574 -0.349968 -0.085259 0.790743 -0.211213 -0.094529 0.628099 0.086376 0.304575 -0.365094 -0.176551 -0.277389 -0.537708 0.166759 0.345108 0.279436 0.306886 -0.298084 -0.243851 0.380833 0.049159 0.033043 -0.238612 0.052686 -0.209124 -0.067702 0.028061 0.196380 0.034171 -0.564158 0.243483 0.635245 0.023688 0.357965 0.281635 0.530817 0.545385 0.048488 0.008628 0.092602 0.442269 -0.187366 -0.637129 0.318523 -0.407290 -0.231364 -0.113229 0.315921 -0.294680 0.504345 0.331602 0.041186 0.037244 -0.213503 0.127469 0.279116 0.100146 0.508629 0.317388 -0.377953 -0.240335 -0.272257 0.526056 -0.374647 0.386344 0.030719 -0.582256 -0.392781 0.187245 0.216790 -0.399695 -0.349586 0.027908 0.040206 -0.173228 0.365628 0.117173 0.715260 -0.325351 -0.667662 0.013065 -0.411269 0.461971 -0.184809 -0.100810 -0.217019 -0.140245 0.213738 -0.379670 -0.162206 0.284845 -0.369953 0.401271 -0.349801 -0.121584 -0.091502 0.068383 -0.239795 -0.355814 0.094904 0.100129 0.147492 0.042551 0.139173 -0.067683 0.387284 0.017243 0.153611 0.233804 0.314314 -0.072919 -0.048492 0.197523 0.074467 -0.033049 -0.532918 0.238805 -0.041069 0.148160 -0.092250 0.120840 0.505584 -0.219853 0.263325 -0.516506 0.356676 0.148903 -0.133035 -0.162706 0.242212 -0.196991 -0.426016 -0.135652 0.512760 0.004079 -0.170461 -0.080894 0.307364 -0.039644 -0.632631 -0.017400 -0.383015 0.078282 -0.543132 -0.072479 -0.242435 -0.363755 -0.065555 0.145388 0.040367 0.278018 0.423530 0.398481 -0.334899 0.077983 -0.571923 0.334138 0.725014 0.065392 -0.481873 0.121316 -0.337020 0.272883 0.372624 0.157258 0.202324 0.264028 0.222029 0.322718 -0.026463 0.039129 0.550056 0.203892 0.440110 -0.503316 -0.153909 -0.137226 -0.000727 0.787897 0.270384 -0.731345 0.285982 0.341699 -0.042067 0.029750 -0.041537 -0.222107 -0.096598 -0.539990 0.323384 0.419395 -0.640685 -0.233267 0.208743 -0.424840 0.412331 -0.005853 0.020263 0.236668 -0.674359 0.313127 0.753624 0.119128 -0.016080 -0.218856 -0.368928 -0.367139 -0.576170 0.176529 0.019320 -0.124142 -0.202135 -0.377139 -0.174032 0.774177 -0.060631 0.062509 -0.601362 0.234427 0.203332 -0.086924 0.274899 -0.412118 -0.309015 -0.007908 -0.161331 0.335646 -0.341864 -0.137645 0.405270 -0.464544 0.275842 0.400198 0.073331 -0.034209 0.309680 -0.212486 0.405555 -0.028340 0.268493 -0.047234 0.399916 -0.367608 -0.012439 -0.158303 0.232828 -0.238484 0.353656 -0.369870 -0.026780 0.294342 -0.376412 -0.321354 0.194950 0.196300 0.397997 0.003709 -0.286378 -0.214232 0.010827 -0.169248 0.143925 0.460681 -0.146685 -0.447831 -0.025114 0.037383 -0.439288 -0.169505 0.233567 -0.015306 0.628469 -0.412896 0.057234 0.175919 0.077439 -0.419276 -0.416753 -0.186260 -0.057625 -0.139363 0.488150 -0.604555 -0.251161 -0.221280 0.308602 -0.527303 0.065543 -0.221754 0.432244 0.171793 0.057848 0.448776 0.214980 0.240924 -0.007484 -0.072994 0.093471 0.309394 +PE-benchmarks/tarjan-algorithm.cpp__main = -2.408138 -4.092627 3.733203 0.475838 8.019859 -5.469250 1.984743 7.725575 6.056780 -0.843374 -3.328881 -3.569452 -2.612926 0.437513 2.629786 -3.042970 3.385467 4.713325 -5.829949 -6.039329 2.848661 10.522598 -2.620294 -1.769279 0.916435 1.481731 -4.118089 -0.164871 -5.853031 1.594270 -4.326346 6.797164 7.653344 -0.062280 6.117116 4.199072 8.748328 4.612206 -4.306304 10.398219 5.876671 1.829637 -0.303957 -4.541958 1.468762 -1.825162 -3.762212 0.413411 1.341426 -3.338125 9.196129 1.407455 2.232940 3.440573 3.610642 1.923262 -3.995796 1.731853 0.520504 5.501486 -10.712774 5.524497 -3.071706 7.900204 -2.095503 10.720874 -2.690048 -9.032338 -8.434344 3.559640 8.962194 -7.921436 -6.169749 -2.568490 -1.701427 1.679007 4.421131 3.995001 13.649264 2.058749 -6.765492 2.069428 -1.481841 0.636831 -1.974733 -2.941191 -6.095083 -3.675526 2.066843 -0.298589 -3.159093 5.454948 -6.437549 6.417691 -12.054463 -12.581047 -1.796777 1.630289 0.868740 -8.809187 2.389974 -0.373063 -0.288642 5.769638 -2.251018 3.383388 2.507936 5.037727 -0.126971 1.754330 -5.198442 1.492455 0.818690 -1.643738 6.132507 3.776480 -4.563862 6.913991 -5.133428 -1.069427 0.032283 -0.769054 4.105264 1.051211 -0.191137 -0.395998 1.996315 0.166309 -5.514840 2.876695 2.352370 -1.319692 -5.935023 -2.917765 5.558058 3.906643 -1.883097 0.652948 2.457411 -2.325566 1.927786 -4.658715 -6.225131 -10.046562 -0.033300 -2.735642 -1.959453 -2.133558 -3.068810 3.489316 0.069713 2.343549 2.218503 1.979321 -2.641869 -8.649788 -6.775031 0.758669 2.057895 -2.941802 -3.023933 0.950831 -2.330246 3.228880 3.274858 2.264404 -3.972210 3.732318 5.511206 5.415742 -8.425147 -0.109262 4.380721 6.945741 0.903368 -4.675516 -9.046580 -10.047202 -1.717163 6.810387 6.089985 -6.849475 -4.979104 3.884527 5.739527 -6.963132 0.456878 -4.992068 -5.071463 -3.631045 3.350606 2.751474 -5.842261 0.988326 10.495668 -2.730829 -0.077069 0.200061 -3.707882 -1.371432 -8.159993 -4.106641 10.094430 0.210702 2.246710 1.582084 -2.913006 6.504618 -4.988545 0.662386 3.282652 4.212383 -2.096768 -0.570038 1.868533 6.881252 -3.648816 2.893180 4.658359 -0.506084 1.540962 -8.490973 2.814542 -8.882041 -3.187206 -4.932082 -1.929833 2.169382 -4.337757 -7.120680 3.193067 -1.965889 2.903083 10.187985 -7.587039 -7.622344 2.436559 -0.352613 2.292520 0.015796 -3.687702 1.518841 2.707408 -5.294211 -3.909075 -2.612857 5.284412 -6.206662 5.233667 -2.721119 2.236291 -2.054264 -4.507349 0.391607 2.952018 2.794550 -1.564129 -1.630505 -1.134441 -3.482423 0.364327 -3.275685 2.055645 3.616986 -3.208096 -4.409561 1.318769 -0.137480 -12.213572 -1.812389 1.602512 -0.622123 6.915469 -2.169073 -0.035135 5.124430 0.504081 -7.621693 -2.790739 -3.927014 -5.443354 -1.613069 -4.465362 0.148270 -7.570159 -0.608423 4.277387 -0.489355 -6.125700 2.705771 3.099964 3.800198 0.949338 2.862112 2.952723 1.843017 1.492454 -2.165922 0.876304 2.347827 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -4.555799 3.692216 1.994168 -3.410047 7.006208 -0.262114 2.230624 4.305569 -0.916119 4.111314 -7.691334 -2.551420 -1.785461 -6.346264 0.216891 -3.924492 1.513321 1.167454 -2.254274 1.372692 3.131697 -1.657422 -0.123026 -3.993237 -0.978720 -5.132126 -2.142096 0.223230 3.451249 -0.581954 0.800741 0.602925 9.349617 0.793554 7.717418 5.302939 3.866342 6.463133 1.211031 1.178809 -0.144844 5.125526 -3.317538 -5.546582 -0.496167 -4.288692 -4.342227 -2.671994 1.504880 -4.327452 1.368124 4.613631 0.520498 1.075584 -3.662366 2.972042 5.431833 -0.558092 7.558476 2.640913 -4.054934 -0.169793 -3.756431 4.448920 -2.996212 3.269266 -0.475998 -4.116377 -0.405409 0.876745 -0.188546 -3.654217 -3.442417 2.762029 2.413624 -4.596140 3.272912 -1.555780 -3.647006 -5.669493 -3.854309 2.353049 0.530283 5.652135 -0.265246 -0.238472 0.712117 0.804323 0.365161 -7.035991 -1.184570 6.233002 -4.311345 -1.787469 -4.296292 3.968246 -0.401543 2.556005 -3.925163 -4.447649 2.208129 0.565036 0.762863 -4.120254 -1.104460 -5.379284 1.882085 2.159443 -1.611675 4.571670 2.678339 3.407457 4.700429 4.947728 -5.230722 2.448941 -7.019782 2.280493 -2.095738 -0.216996 -0.040679 0.977550 1.795418 2.185344 4.446655 -7.001923 4.224632 3.803505 -3.358436 -5.016198 0.535296 -4.977170 -5.936057 -1.208390 2.906271 2.386579 1.236052 -3.153946 0.981669 -1.796509 -0.990754 -3.896187 -0.078086 4.024713 -6.351210 -1.298112 -0.591751 -0.529323 -3.317505 4.989456 2.621181 1.412591 7.478358 2.789531 -2.713845 2.464500 -5.448385 0.326711 8.674541 2.062267 -6.015827 4.317732 -4.420533 0.228899 2.888737 2.916509 2.442918 1.121475 -5.909732 -2.895439 1.705191 -1.954147 7.279432 1.650815 1.857382 -5.476858 7.331666 -1.525580 -3.722458 9.263803 5.590882 -6.688649 0.670155 3.691962 -4.106177 -1.918883 3.617150 -5.027341 -2.048996 -3.780535 0.377366 1.583763 -3.852096 -2.301149 1.150863 -6.586001 6.895693 0.685596 0.360067 -0.074472 -5.699388 -5.029866 9.015558 0.020451 -1.052638 -1.703349 -2.338151 -3.168982 -7.752291 1.365348 1.427745 -2.716909 -2.375402 -5.157531 1.850571 4.814840 -2.779157 3.032653 -6.014159 -2.297745 2.997121 0.535654 3.448283 -4.466935 -3.940072 -1.372961 -0.586272 3.760768 -4.056322 4.927235 8.144882 -2.355676 5.908205 0.012390 -4.976469 0.264145 4.212761 -5.678707 7.028711 -1.481275 4.146984 0.345065 4.530184 -4.866362 -2.185896 -0.733638 -1.434892 -2.445809 3.501986 -4.632286 0.301223 0.255669 -4.383509 -2.637872 2.499390 0.265113 -0.199970 -0.297200 0.871199 -4.790997 -0.566165 -3.783146 0.878318 5.049647 -0.138531 -5.387481 1.080967 1.681479 -1.131985 0.193384 0.356508 0.375361 5.791689 -5.798826 -0.218658 0.943355 0.052003 -5.934480 -7.973123 0.950914 -5.300870 -3.652782 2.945856 -5.857325 -1.598955 -4.153446 0.209941 -6.781912 -2.602860 2.829749 7.963304 2.635199 -4.086686 1.199921 -0.305338 5.543125 0.916462 1.234445 0.993106 3.459934 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.612997 0.093666 0.031110 -0.438888 1.616476 -0.015273 0.006163 0.963333 0.573499 0.432097 -1.136794 -0.502234 -0.114396 -0.541617 0.227655 0.059041 0.048625 0.420633 -0.799148 -0.566242 0.492312 0.559776 -0.049406 -0.608237 -0.021185 -0.179215 -0.639879 0.037644 -0.125449 0.257196 -0.729690 0.272049 0.996225 -0.058310 0.716426 0.524773 1.018383 0.922701 -0.426625 1.102549 0.690331 0.548894 -0.340415 -1.018761 0.357206 -0.857431 -0.720430 -0.335866 0.289507 -0.913566 1.372613 0.469795 0.268483 -0.048054 0.006315 0.371931 0.291399 0.182427 0.745957 0.690298 -1.229095 0.326683 -0.708827 0.990236 -0.467348 1.563516 -0.015062 -1.389065 -1.096976 0.583923 1.026698 -0.992276 -0.980090 -0.096851 -0.046926 -0.146513 0.671166 -0.026256 1.332318 -0.298775 -0.711114 0.362495 -0.398230 0.576328 -0.241106 -0.297311 -0.661865 -0.296814 0.282706 -0.509827 -0.704228 0.909362 -0.670583 0.782257 -1.152723 -0.844532 -0.195909 0.215137 -0.286000 -0.740502 0.324337 0.565945 0.006369 0.316062 -0.111400 -0.339375 0.757403 0.861172 -0.123590 0.141686 -0.114878 0.133650 0.117028 0.236200 0.151352 0.461231 -0.826822 0.447211 -0.355603 0.201980 -0.217621 0.001279 0.652520 -0.003448 0.311648 -0.490218 0.829046 0.211555 -0.880860 -0.125123 0.374005 -0.393199 -1.038130 -0.022032 0.455588 0.459308 -0.206230 -0.053310 0.254416 -0.470139 -0.553762 -0.568454 -0.525369 -0.390102 -0.565855 -0.310533 -0.165478 -0.259103 -0.442571 0.692670 0.310866 0.166418 0.916987 0.441469 -0.232448 -0.648821 -0.898919 0.519150 1.259790 0.051345 -0.846698 0.213567 -0.532406 0.558361 0.616335 0.144139 -0.237852 0.813535 0.182360 0.434093 -0.727971 -0.298850 1.013593 0.969737 0.569928 -1.016841 -0.211342 -0.905763 -0.092858 1.420623 0.994408 -1.235134 -0.239300 0.727109 0.157107 -0.362582 0.178406 -0.462561 -0.522499 -0.528529 0.323379 0.395457 -0.832613 -0.657015 0.607172 -0.797114 0.863326 0.076181 -0.083107 -0.072560 -1.094427 -0.092992 1.494277 0.137001 -0.121975 0.102376 -0.162623 0.039837 -1.012595 0.166845 0.656711 -0.204768 -0.524053 -0.492669 0.241649 1.135033 -0.750183 0.175670 -0.120381 -0.117555 0.293993 -0.810421 0.649911 -1.214128 -0.513080 -0.697373 -0.239826 0.604260 -0.702288 -0.299162 0.963254 -0.461921 0.711824 1.218100 -0.347597 -0.669100 0.784767 -0.063533 0.767010 -0.141453 0.090854 -0.042839 0.768536 -0.583789 -0.257771 -0.382167 0.332650 -0.443484 0.964682 -0.734755 0.133122 0.197730 -0.817138 -0.195795 0.770495 0.399741 0.306988 -0.204275 -0.222042 -0.589689 -0.041403 -0.337902 0.036994 0.701814 -0.458930 -1.101767 -0.163389 0.136052 -1.236719 -0.382152 0.315754 0.031409 1.206054 -0.593306 0.271661 0.549857 -0.104724 -1.423166 -0.450173 -0.510449 -0.549428 -0.405504 0.185327 -0.635524 -0.866978 -0.420908 0.490049 -0.537458 -0.602569 0.154724 0.825973 0.640450 -0.087391 0.541107 0.322267 0.714801 0.235753 -0.240160 0.275508 0.422737 +PE-benchmarks/edit-distance.cpp__main = -3.576890 -0.313432 -2.078122 -3.247806 9.522371 -1.610254 -0.430563 7.118796 1.932723 2.658409 -6.432401 -2.318713 -1.028854 -6.172084 0.881486 0.461934 3.183431 1.709552 -4.148316 -0.907702 2.230261 1.805542 0.898553 -3.051361 -0.737421 -2.031765 -2.383436 1.074558 -0.371947 -0.988678 -1.756190 2.068172 8.930889 0.856308 5.919227 3.042673 5.308240 5.285881 1.408529 1.241294 3.439256 2.572142 -1.502586 -5.112613 0.316303 -3.713328 -5.804626 -1.430125 1.706945 -4.907571 3.162514 4.011361 1.600621 0.568148 -2.710502 1.842533 3.214288 -1.898770 5.488511 3.288382 -7.286200 -1.045901 -2.065228 4.640752 -3.133153 4.230621 -0.637575 -5.053725 -4.115002 4.677509 2.804373 -5.787868 -5.157068 -0.311913 1.803308 -2.524498 4.325458 0.726346 6.919039 -4.761648 -3.446936 3.010528 -1.690381 3.796261 -0.125580 -0.000752 -0.689625 -1.555185 0.786080 -4.801426 -1.070971 3.871548 -5.041378 0.878839 -5.319497 0.486326 -2.023753 0.311205 -3.478407 -6.840889 1.741292 -0.106163 0.030194 -0.149110 1.326632 -2.589370 2.555432 3.137532 0.419832 4.065762 1.593758 2.084164 2.572837 2.457235 -1.725062 1.277433 -6.881367 2.710766 -2.917488 -0.586096 -1.942700 -0.451828 5.317039 2.455929 2.335532 -5.654881 5.313840 3.963776 -3.719136 -2.230564 1.270752 -2.327473 -5.276343 0.189785 3.627032 0.645574 1.286253 -0.729219 2.281357 -2.055777 -2.913419 -1.986895 -2.798272 1.283755 -5.745564 -0.706979 0.087165 -0.917595 -2.082029 3.840786 2.222818 0.341557 7.115537 0.733438 -4.280529 0.742180 -5.747151 2.598970 8.898656 1.105584 -4.942393 3.813554 -4.240683 1.701126 1.830124 2.977732 0.858275 -0.532550 -1.691353 0.920842 0.299018 -0.696756 6.494709 0.184616 2.893605 -7.050196 1.201214 -2.391660 1.241781 9.863388 4.004518 -7.298480 0.281673 5.808742 -0.080203 -1.009069 1.944231 -4.427148 -3.957319 -3.939658 2.899941 2.382197 -5.009697 -2.385140 2.618306 -4.972428 4.158714 0.712584 -2.797281 -0.229276 -5.956748 -0.053484 10.352549 0.423501 0.749745 0.890968 -3.269580 1.166129 -7.784294 0.022524 2.591377 -1.321521 1.134148 -2.856661 -0.099970 6.410112 -2.943757 2.255293 -7.082537 1.222124 3.109444 -2.308450 1.573438 -5.107662 -3.159941 -0.515677 -1.817865 1.733387 -5.935116 0.327402 3.752884 -2.923244 5.307196 2.297499 -2.294245 -0.674142 2.646274 -2.672425 6.729934 -0.292989 5.390290 1.305619 4.956234 -3.961081 -1.061342 -3.102160 -0.559797 -4.560208 4.201454 -6.388019 -0.146950 2.827586 -0.769416 -5.377856 2.900380 2.337567 0.177181 -0.925498 -2.228460 -2.454707 -0.219576 -2.159893 3.825906 3.355400 -2.228139 -5.371313 0.246137 4.950902 -4.168751 0.117140 1.612502 0.937349 7.301171 -4.924369 1.502329 2.721078 2.815725 -6.263618 -5.961044 1.322141 -2.914955 -0.468417 0.970413 -6.753789 -5.707527 -2.597665 2.756520 -3.567966 -0.021638 2.467945 7.068420 2.536460 -3.927387 2.133919 0.957994 1.264896 0.249787 1.096100 1.618849 2.024033 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = -5.786898 -0.415152 0.517728 -3.379922 11.069405 -2.748846 0.204218 9.549543 2.417237 3.651513 -9.242587 -5.465180 -3.162402 -8.171405 0.344125 -3.669890 5.372068 1.277285 -5.353531 -0.185066 3.298470 2.233999 0.023330 -3.927975 -0.964462 -2.121520 -4.699590 1.189676 1.599425 -4.314368 -0.753139 3.186350 16.121372 2.040501 13.261356 5.914638 7.057328 8.068716 2.248726 -0.040375 2.412179 5.765092 -3.519459 -6.721939 -1.665631 -5.562810 -6.713262 -0.855985 2.475609 -3.500218 1.961510 5.855559 1.324765 3.836411 -3.847586 2.122775 3.024791 -0.937817 9.566181 3.727962 -10.664707 0.232988 -3.712629 6.545743 -4.139314 5.213948 -3.757627 -5.365323 -2.915328 3.098493 1.901731 -9.818104 -5.882475 2.581363 2.945760 -4.247104 6.593752 1.056913 6.649205 -7.566925 -6.309575 3.845177 -0.986789 4.895306 -1.004281 -0.139476 -0.466237 -0.783534 -0.223191 -9.166781 0.443426 6.669660 -9.693675 -0.493046 -5.308657 2.200078 -4.126948 3.502813 -5.446214 -9.799942 2.534518 -2.064940 -0.255091 -1.734857 4.413282 -3.694800 2.369000 1.752249 0.162564 7.212754 3.986006 5.581453 8.198580 5.763902 -3.851717 0.838773 -9.957502 4.369216 -6.865591 -1.918321 -0.853123 1.330256 5.067745 4.642309 5.333123 -9.591896 4.873538 5.748913 -4.432963 -4.989662 0.390829 -6.839769 -8.842075 -1.166319 5.537975 2.645368 2.306312 -4.464061 1.991372 -2.400101 -1.704529 -3.954704 -1.666388 0.910584 -7.486172 -2.281870 0.358807 -0.735355 -4.211400 7.241660 3.845002 1.324279 10.853910 1.223810 -7.268056 0.699657 -8.710897 1.035676 11.004407 -2.514727 -8.298594 7.086068 -7.700569 0.707134 3.278625 6.343226 3.572143 -2.256723 -3.986670 -0.395695 2.204075 -0.030620 9.977153 -1.864527 3.142362 -7.143992 4.219509 -3.351976 -2.091954 15.024196 3.057773 -11.237780 -0.014374 5.930593 0.470256 -1.923799 4.415335 -8.212025 -4.553371 -7.033116 3.075565 3.031603 -6.549364 -0.077341 6.175774 -8.637213 7.252662 0.639699 -4.387029 -0.028760 -10.007189 -4.623846 16.974741 0.404583 1.546868 0.234119 -5.000996 3.709772 -11.568280 -0.053321 1.868800 -1.107225 1.682947 -4.963928 2.521282 8.036750 -3.001473 6.708941 -9.770358 -0.749519 4.264186 -2.968349 2.704234 -5.911612 -5.701672 -1.166024 -2.910038 3.722981 -9.553354 2.935503 7.831184 -3.354299 8.808436 1.345690 -7.198032 -1.188604 2.661460 -7.389260 10.385540 -1.324475 6.775371 1.319567 6.591025 -7.220256 -3.728086 -3.269170 0.003155 -7.056984 4.277732 -7.097087 0.853564 0.684322 -2.549515 -5.894233 2.319615 0.815829 -2.327041 -0.163412 -2.065319 -5.964202 -0.450499 -4.178977 5.497012 5.534971 -1.651656 -7.638325 2.545724 4.543653 -4.074104 2.582420 0.544276 0.027130 9.214082 -7.814761 -2.080717 3.889129 4.018553 -6.625439 -10.567598 0.759947 -5.957378 0.201167 0.822291 -7.843995 -6.208787 -4.566749 0.939950 -5.444163 -1.103900 5.375122 12.348229 6.280840 -8.891677 1.468931 0.359244 3.778095 1.699383 2.037366 2.023201 2.777697 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.486067 0.002608 -0.497210 -0.320265 1.365181 0.087732 -0.115960 0.747731 0.131653 0.506301 -0.872720 -0.201811 -0.080599 -0.604674 0.109926 0.540997 0.219003 0.181810 -0.533470 -0.427030 0.295003 0.092647 0.188344 -0.433130 0.001015 -0.306171 -0.338267 0.079224 0.232229 0.036679 -0.810220 0.054773 0.816444 -0.086619 0.392492 0.263166 0.690038 0.633069 0.039434 0.120430 0.480891 0.428244 -0.261573 -0.741660 0.239773 -0.716581 -0.579508 -0.232802 0.337010 -0.639761 0.837903 0.398914 0.109571 -0.152359 -0.268992 0.309244 0.527071 -0.110089 0.789630 0.335334 -0.783729 -0.230318 -0.315236 0.873230 -0.434719 0.781389 -0.012899 -0.947567 -0.714858 0.511381 0.477424 -0.669823 -0.687521 -0.008519 0.066424 -0.264505 0.433262 -0.015552 1.105289 -0.582759 -0.568593 0.221681 -0.520482 0.535517 -0.088652 -0.113598 -0.338958 -0.194786 0.262533 -0.520393 -0.390705 0.549099 -0.451613 0.537401 -0.537266 -0.239974 -0.166492 0.013107 -0.334257 -0.531908 0.068789 0.334686 0.042461 -0.074784 0.335013 -0.353033 0.539612 0.412078 0.125161 0.209591 0.294488 -0.019625 0.067754 0.266084 -0.014929 -0.027290 -0.690561 0.206784 -0.052017 0.070395 -0.280181 0.070427 0.627479 -0.076156 0.421508 -0.638165 0.677712 0.227931 -0.514567 -0.235315 0.186107 -0.238539 -0.686898 0.161109 0.326303 0.058403 -0.030241 -0.083029 0.289563 -0.289994 -0.909022 -0.105887 -0.352839 0.168531 -0.742483 -0.112683 -0.064706 -0.210413 -0.181391 0.468681 0.241687 0.158543 0.750524 0.360625 -0.312497 0.069447 -0.732582 0.591078 1.149956 0.212885 -0.693220 0.213016 -0.559904 0.402813 0.495585 0.154692 0.054135 0.324191 0.096524 0.380058 -0.074058 -0.106436 0.781108 0.350356 0.599891 -0.767582 0.014799 -0.290570 0.194028 1.115893 0.508084 -1.040314 0.317785 0.680635 0.043756 0.157646 0.092310 -0.384717 -0.382499 -0.588447 0.279152 0.449214 -0.692113 -0.470950 0.167705 -0.593159 0.808810 0.084804 -0.155672 0.170759 -0.756305 0.424264 1.091402 0.141029 0.044318 0.010631 -0.278305 -0.373114 -0.895585 0.052115 0.335023 -0.418714 -0.160684 -0.507206 -0.074321 0.927244 -0.341142 0.180438 -0.799893 0.271933 0.290883 -0.170550 0.346346 -0.674703 -0.376940 -0.183007 -0.281541 0.377377 -0.739401 -0.029024 0.473035 -0.471485 0.604787 0.561223 0.088997 -0.148049 0.402809 -0.111499 0.650025 -0.045592 0.450852 0.005853 0.661515 -0.386415 0.030091 -0.396767 0.160064 -0.372630 0.649543 -0.811590 -0.062945 0.494134 -0.394906 -0.566019 0.457863 0.305386 0.476873 -0.125405 -0.446984 -0.301167 -0.050879 -0.220851 0.197088 0.441605 -0.395873 -0.807098 -0.142928 0.280197 -0.694038 -0.187761 0.254615 0.059419 0.858779 -0.547476 0.204315 0.327481 0.155376 -0.934581 -0.484589 -0.239338 -0.116277 -0.227144 0.518621 -0.892817 -0.650008 -0.349458 0.283799 -0.629633 -0.049308 -0.028011 0.768451 0.269306 -0.115358 0.452781 0.243552 0.309302 -0.008632 0.004894 0.195947 0.186712 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/finite-automata-algorithm.cpp__main = -0.484186 0.073205 -0.467447 -0.316755 1.430821 -0.076325 -0.075254 0.741387 -0.039651 0.476459 -0.773097 -0.071245 -0.108213 -0.871919 0.247414 0.504128 0.275057 0.283438 -0.369816 -0.298117 0.361624 -0.062931 0.134859 -0.428671 -0.001743 -0.511659 -0.153623 0.101904 0.301391 0.104021 -0.713950 0.239213 0.742344 -0.060818 0.314641 0.355059 0.710120 0.632334 0.131687 -0.123990 0.395728 0.359839 -0.212172 -0.870713 0.334633 -0.569996 -0.630541 -0.257007 0.338838 -0.629908 0.502652 0.516512 0.100400 -0.186525 -0.441975 0.317795 0.598448 -0.104997 0.717424 0.436427 -0.610818 -0.496039 -0.322880 0.744894 -0.476460 0.541642 0.047139 -0.907795 -0.591814 0.646309 0.198451 -0.467412 -0.589696 -0.057697 0.158706 -0.327116 0.399684 0.052403 0.767314 -0.489681 -0.620156 0.236838 -0.491338 0.704129 0.004356 -0.069552 -0.150776 -0.221873 0.320423 -0.531632 -0.360393 0.534272 -0.376900 0.413671 -0.517851 0.015761 0.055152 -0.115076 -0.302233 -0.591587 0.162180 0.218482 0.128999 -0.165804 0.142256 -0.480317 0.516869 0.281040 0.161882 0.350151 0.297238 -0.121240 -0.106011 0.224267 -0.135895 -0.064455 -0.781001 0.235243 0.003361 0.101189 -0.358477 0.001280 0.703143 -0.115498 0.344771 -0.752399 0.745649 0.327694 -0.316950 -0.291229 0.269720 -0.141616 -0.568119 0.082924 0.490502 -0.048377 -0.056260 0.092107 0.359740 -0.168522 -0.909236 -0.051828 -0.470180 0.509551 -0.917907 0.008758 -0.162827 -0.320549 -0.163789 0.274447 0.220950 0.282269 0.744506 0.451027 -0.383027 0.399532 -0.785994 0.632874 1.279250 0.352673 -0.661565 0.255482 -0.557337 0.360104 0.346742 0.136833 0.118092 0.344918 -0.039472 0.285399 0.055874 -0.103912 0.762913 0.329804 0.601619 -0.871504 0.067722 -0.183960 0.200039 1.062518 0.482871 -1.057232 0.535896 0.842922 -0.234928 0.112591 0.086894 -0.451349 -0.280006 -0.649333 0.366138 0.518011 -0.875346 -0.504967 0.010043 -0.571176 0.664076 0.126362 -0.018015 0.184712 -0.624161 0.369467 1.086289 0.133652 0.038030 -0.143098 -0.421996 -0.611606 -0.862094 0.096452 0.301687 -0.456525 -0.188339 -0.534496 -0.335245 1.064509 -0.314015 0.103225 -0.986198 0.456451 0.342628 0.118364 0.305705 -0.568537 -0.370966 0.015426 -0.270151 0.247484 -0.620655 -0.007198 0.397154 -0.586889 0.593643 0.319191 0.071470 0.070082 0.438447 -0.121177 0.672614 0.067493 0.723828 0.116646 0.695432 -0.453283 0.094284 -0.323925 -0.083086 -0.368533 0.649444 -0.845502 -0.119243 0.712876 -0.267270 -0.773292 0.427700 0.449519 0.613020 -0.171764 -0.433383 -0.132482 -0.025918 -0.218001 0.338801 0.481592 -0.415575 -0.667131 -0.144866 0.473725 -0.629567 -0.318712 0.405267 0.113578 0.919661 -0.611146 0.371156 0.237877 0.235513 -0.912540 -0.616049 -0.033222 -0.124610 -0.220428 0.555807 -1.137514 -0.534284 -0.326692 0.445851 -0.773328 0.048779 -0.154475 0.725072 0.051337 0.036316 0.560111 0.240900 0.114558 -0.124639 0.053108 0.173759 0.301818 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -3.108393 1.943401 1.569900 -1.649248 6.132573 0.846766 1.051751 3.121032 -2.374813 3.640663 -4.730901 -0.923324 -1.339172 -3.603648 -0.006377 -1.312056 0.512620 -0.087370 -1.559138 0.489096 1.834349 -1.520460 0.203079 -2.078808 -0.643258 -3.204632 -1.827296 0.332162 3.370655 -0.641415 -0.570997 -0.038512 5.373707 -0.057675 4.261596 3.006418 1.909475 3.689937 -0.153520 -0.694379 -0.168745 3.289308 -2.620390 -3.231434 -0.063599 -3.388896 -3.126034 -1.435290 1.454425 -2.489918 -0.219433 3.207455 -0.401242 0.484067 -1.819123 2.778380 3.060318 -0.767609 5.435186 1.266150 -3.098343 -0.771944 -3.288744 3.512498 -1.435131 2.476498 -1.217276 -3.782345 -0.469417 0.281742 -0.085003 -2.570560 -1.678176 2.721307 1.356624 -2.972140 1.800114 -1.141914 -2.474003 -4.351613 -3.091032 1.202138 0.094099 3.513845 -0.127618 -0.129303 0.758620 0.772684 -0.026800 -5.323630 -0.588001 4.436986 -2.973339 -0.398475 -2.929130 1.850571 -0.643745 1.853563 -2.635146 -2.172022 1.126647 0.725399 0.560467 -4.006906 1.400744 -3.796718 1.251098 0.713382 0.476097 1.909621 1.737399 1.485601 2.954535 3.748008 -3.409910 1.120199 -3.487914 1.341082 -1.196666 0.173140 -0.687057 1.255900 1.281549 0.901069 4.033926 -4.974028 2.110013 1.410495 -2.383692 -4.038551 -0.030280 -3.666017 -3.733246 -0.451664 1.759640 0.966185 0.473641 -2.352462 0.794763 -1.074197 -2.236878 -1.416491 0.191758 3.201217 -4.747503 -0.631452 -0.392200 -0.328481 -1.917931 3.726599 2.513426 2.028261 5.047006 2.336798 -1.363468 1.261185 -4.043089 0.909296 5.932878 1.381742 -4.261703 3.036441 -3.329081 0.445900 2.048536 1.750056 2.292597 1.057768 -3.272505 -1.585523 1.533466 -0.380713 5.183999 1.773227 1.928462 -2.386542 4.137525 -1.847082 -2.431531 5.108342 3.347059 -4.920139 1.848500 2.235326 -2.019080 -0.411222 2.480808 -3.501649 -1.260315 -2.532827 -0.101846 1.806062 -2.675543 -1.212921 1.029303 -4.453740 5.665409 0.358810 1.167029 1.164583 -3.543654 -3.461405 4.974946 0.252090 -0.555839 -1.672414 -1.575348 -3.553074 -4.618912 0.761684 0.769632 -2.200526 -1.961914 -4.070391 0.527888 3.132232 -0.986965 2.842079 -4.536817 -0.802229 1.719073 0.170212 2.930876 -2.186480 -2.423295 -1.235629 -1.515404 2.542956 -3.248110 3.202452 4.983719 -1.830883 4.439631 -0.050350 -2.269964 -0.013930 2.099497 -3.501259 4.478976 -0.367468 3.094715 -0.017952 3.286871 -2.920694 -0.724511 -0.324921 -0.678120 -1.236151 2.546016 -2.783155 -0.117558 0.397270 -3.808003 -2.202292 1.109692 -0.280067 0.611625 0.042858 -0.076174 -3.532949 -0.590447 -2.464443 0.799310 3.142087 -1.069545 -3.278831 0.903185 0.236130 -0.854171 -0.125131 0.600736 0.212578 3.364820 -4.029520 -0.669161 0.536340 0.430712 -3.976049 -4.517425 -0.691397 -3.070062 -3.097356 3.089781 -4.345303 -0.445557 -3.010701 -0.590743 -4.448546 -2.058915 1.298359 5.896985 1.516978 -2.746543 1.529113 -0.110381 3.312628 0.286117 0.877575 0.475266 1.555910 +PE-benchmarks/snake-ladder.cpp__main = -2.580375 1.377836 -0.473962 -1.352649 5.130292 -0.824783 0.815548 2.635034 -0.617646 2.002884 -4.038926 -0.955097 -0.798529 -3.666368 0.610820 0.742528 1.458120 1.755247 -1.075860 0.224030 1.871225 -0.753515 -0.103323 -2.212551 -0.110401 -1.509386 -1.338021 0.229555 1.071242 -0.780481 -1.611276 1.336227 4.897935 0.905217 3.945157 2.971701 1.662559 3.992861 1.245458 -0.326570 0.699826 2.520883 -1.475435 -4.232949 1.176237 -2.528767 -2.066265 -2.303245 0.945724 -2.095680 3.319201 2.490752 0.140552 0.323289 -2.492070 0.445488 3.251821 0.270380 3.965267 1.877282 -2.705233 0.776450 -1.508078 2.189602 -1.835646 1.923686 0.555292 -3.616015 -0.700729 1.335584 3.152854 -3.872509 -3.221752 0.829485 0.250540 -1.854597 1.963558 -0.072790 0.648043 -3.774357 -3.528640 0.941725 -1.468953 3.258082 -0.401698 -0.473702 -2.146511 -0.353511 1.007826 -3.212578 -1.219028 2.831283 -1.984008 1.443870 -2.032167 1.444208 0.049419 0.652296 -2.239439 -2.763512 1.178027 0.150461 0.509061 0.727616 0.380675 -1.773617 1.856900 0.952898 -0.370974 1.955306 2.444017 1.441025 2.270318 1.708324 -1.436791 0.357998 -3.771155 1.603993 -0.572492 -0.202169 -0.093672 0.600217 1.505916 -0.491063 2.213573 -3.695286 2.450471 1.891732 -1.556981 -2.265257 0.860125 -2.107876 -3.169821 -0.859197 2.250237 1.036310 0.197977 -0.857588 0.153068 -1.147399 -2.392604 -1.885078 -1.232157 3.174040 -3.497594 -0.444714 -0.746668 -1.427430 -1.348069 1.893126 1.104345 1.511831 3.730674 2.193207 -1.985988 -0.098123 -3.673276 1.123017 5.378414 1.726827 -3.484192 1.893002 -1.490699 0.728344 2.145930 1.553703 1.344051 -0.593659 -1.633340 -0.539732 0.257638 -0.906599 3.818132 1.311824 2.082761 -2.806781 2.530504 0.555626 -1.479161 5.806518 1.221619 -3.921210 0.813229 2.907668 -0.675428 -0.532789 1.222990 -2.253595 -1.630247 -2.310788 1.124315 1.179952 -3.322698 -1.661259 0.706745 -3.523721 3.562725 0.507930 -0.149910 0.183589 -3.615845 -0.453432 5.961782 0.279950 -0.149778 -0.499429 -1.747719 -0.513966 -4.174712 0.631725 0.845824 -1.255446 -1.144936 -2.726404 0.261752 3.994013 -1.639089 1.039508 -2.445582 -0.305429 1.544462 -0.598275 1.161971 -4.315478 -2.226725 0.123189 -0.096227 1.625214 -1.771464 1.594673 3.881567 -2.102802 1.371320 3.217551 0.564887 0.518371 2.333732 -2.227177 3.382373 -1.127155 3.315820 0.417320 2.799717 -2.344428 -1.073152 -0.616702 1.478815 -1.976608 2.608152 -2.861133 0.133380 1.542704 -1.824921 -2.426422 1.621540 0.893574 1.131303 -0.393202 -1.188891 -1.803769 0.109257 -1.437357 1.076205 2.726085 -0.741293 -3.222474 0.173611 1.229975 -1.549399 0.443716 0.971932 0.201880 3.748709 -3.127898 0.712961 0.619203 0.693472 -3.087673 -3.830905 0.558458 -2.222419 -1.524356 2.653612 -4.358021 -1.809246 -2.076877 0.943190 -3.582569 0.244557 0.092820 4.087550 1.495161 -1.232591 1.526933 0.245188 2.042074 -0.034947 0.263247 0.080147 2.591288 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -5.960773 2.486778 3.964241 -3.022843 9.507491 -0.845975 2.859832 4.628605 -1.340097 5.262189 -9.502207 -4.094862 -3.940615 -7.820154 0.182004 -5.076383 3.216396 0.588578 -2.734931 1.851329 4.019210 -2.071849 -0.064817 -4.911229 -0.584481 -6.364174 -3.750977 0.188561 4.546589 -1.262033 0.979918 1.342456 12.617975 2.279990 10.046784 6.486629 2.861149 8.698747 0.523525 -0.451519 -0.533505 7.336245 -4.453258 -7.213117 -0.367474 -5.842551 -4.672794 -3.483154 2.382230 -3.795185 -0.542960 5.653934 0.042079 2.251274 -5.223007 2.137420 6.413440 0.997983 9.742295 2.979732 -5.031614 1.078834 -5.447047 3.627187 -3.745743 3.328202 -1.566802 -5.423033 -0.177130 0.356782 0.789858 -5.801623 -4.533572 3.640911 2.843910 -5.176868 4.525938 -0.767655 -4.115901 -7.822593 -6.285882 1.967086 -0.133433 7.024149 -1.044277 -0.697908 0.706498 0.566767 1.120191 -9.043990 -1.478599 6.856049 -6.022516 -1.917842 -2.965520 5.337778 -0.952974 3.648190 -4.755447 -5.541612 2.274885 -0.456448 0.740028 -2.845252 0.145932 -5.947976 2.601595 0.981015 -0.698831 4.894123 4.288678 4.587011 6.304569 5.975182 -6.939118 2.029328 -7.597954 3.359078 -4.126291 -0.610572 -0.399959 2.636796 1.685448 2.344733 6.528713 -9.069238 4.249292 4.668512 -3.312915 -5.882643 0.472206 -6.964262 -7.873583 -1.553226 4.396260 2.901980 1.563806 -4.561496 0.874862 -2.234750 -0.883660 -2.255318 -0.422710 5.446926 -7.566351 -1.879205 -0.944667 -1.337748 -3.883057 5.949341 2.958993 2.907026 8.914252 3.790093 -5.246797 1.283401 -7.738908 0.790656 11.743378 0.126941 -7.658376 5.293382 -4.858222 0.805909 4.427716 3.840227 4.777786 -0.823222 -6.043514 -2.864761 1.692163 -1.674183 9.532052 2.681138 3.443658 -6.085062 8.200954 -2.421835 -4.163199 10.940774 4.837386 -9.226842 1.782714 4.568421 -5.413947 -1.941951 3.610054 -5.334343 -1.649920 -6.657766 1.157075 2.484834 -5.273973 -1.937875 1.903698 -8.682049 8.786406 0.913692 1.293883 1.180524 -6.827491 -7.510501 12.479556 -0.074505 -0.416852 -2.863355 -3.619637 -3.041280 -10.076283 1.456867 -0.261253 -3.513805 -1.652429 -7.122963 2.480003 6.393474 -2.883066 4.907527 -6.825064 -1.961307 3.143496 0.262791 3.913294 -5.079518 -5.381454 -1.009121 -2.335769 4.525021 -5.714513 5.222666 9.895375 -3.455915 6.635108 0.314809 -4.645140 0.392274 4.526148 -7.286963 8.374588 -2.703525 7.083747 0.063695 6.136824 -5.648911 -3.002642 -0.628019 -1.533475 -3.793956 4.597127 -5.785678 0.602830 1.842526 -5.512814 -3.969950 2.655423 -0.379017 0.597944 -0.219909 0.537878 -7.776207 0.529072 -3.414080 2.446503 6.442046 0.143129 -7.360534 1.410749 2.166477 -1.619989 -1.613640 0.533166 -0.502883 6.815221 -7.311211 -1.527779 1.405051 1.111129 -5.302188 -10.308696 1.166728 -6.896510 -4.691899 5.569065 -7.678890 -1.118178 -5.358585 -0.183739 -7.442134 -3.111378 2.640856 10.164580 3.772970 -5.656703 1.680142 -0.070074 5.875936 0.338534 1.380876 0.860789 4.162359 +PE-benchmarks/m-coloring-problem.cpp__main = -0.513129 -0.011045 -0.215398 -0.229829 1.121373 -0.032940 -0.098076 0.693838 0.283726 0.400268 -0.721737 -0.450037 -0.291869 -0.653996 0.181157 0.232667 0.194005 0.326820 -0.476872 -0.332997 0.485631 0.095947 0.052360 -0.421876 0.061739 -0.192698 -0.325867 0.002579 0.142012 0.180729 -0.635974 0.210463 0.768319 0.097210 0.491552 0.379231 0.650541 0.790322 -0.144467 0.477959 0.201972 0.569546 -0.300443 -0.917985 0.459541 -0.687092 -0.403724 -0.296037 0.316287 -0.589756 0.858506 0.469409 0.082831 -0.030924 -0.194202 0.118131 0.393436 0.257913 0.689739 0.477491 -0.643978 -0.083266 -0.487459 0.483710 -0.410835 0.877168 0.120853 -0.939917 -0.651727 0.281711 0.517431 -0.610264 -0.633070 0.052837 0.044843 -0.181734 0.501173 0.026792 0.734853 -0.329405 -0.788544 0.113866 -0.432036 0.614688 -0.195584 -0.178499 -0.327943 -0.188125 0.267628 -0.535439 -0.340561 0.541308 -0.424706 0.588950 -0.568808 -0.299481 -0.181095 0.168224 -0.363210 -0.398658 0.198009 0.340680 0.125265 0.178675 -0.098932 -0.334835 0.700178 0.345358 0.039258 0.110162 0.389446 -0.076468 0.020506 0.301207 -0.095726 0.203648 -0.623273 0.275421 -0.094722 0.203688 -0.144256 0.127423 0.504499 -0.253604 0.322135 -0.599052 0.565331 0.253809 -0.466407 -0.242881 0.311021 -0.388605 -0.689596 -0.069191 0.532756 0.134152 -0.195021 -0.104260 0.219949 -0.261374 -0.697567 -0.169012 -0.462740 0.067869 -0.569696 -0.152041 -0.254468 -0.427453 -0.210562 0.355606 0.144169 0.289565 0.669658 0.475787 -0.368906 -0.214772 -0.679155 0.464329 1.088296 0.138733 -0.715605 0.144979 -0.359290 0.453946 0.486023 0.100973 0.153780 0.480493 0.190271 0.371146 -0.304348 -0.092452 0.766658 0.594157 0.633584 -0.735336 -0.062059 -0.333500 -0.066435 1.089552 0.543394 -0.920848 0.107614 0.513154 -0.135277 -0.039934 0.033363 -0.254904 -0.167841 -0.608503 0.317275 0.420460 -0.810581 -0.503963 0.280732 -0.670691 0.703747 0.071777 0.180624 0.172478 -0.909887 0.152405 1.101222 0.128063 -0.124983 -0.147174 -0.310367 -0.323581 -0.753838 0.234603 0.264314 -0.233163 -0.386127 -0.487652 -0.029040 0.976885 -0.275563 0.102609 -0.371215 0.116642 0.235830 -0.386845 0.508008 -0.728437 -0.457696 -0.231533 -0.224930 0.535189 -0.390174 -0.156649 0.667582 -0.524997 0.449459 0.727824 0.071514 -0.215487 0.519775 -0.144500 0.580732 -0.130484 0.341848 -0.100945 0.657908 -0.430538 -0.050984 -0.183481 0.237882 -0.247104 0.685730 -0.534277 0.008660 0.374894 -0.601654 -0.328680 0.415612 0.222536 0.459596 -0.075129 -0.280021 -0.402865 0.015568 -0.128905 0.130401 0.636455 -0.220071 -0.732708 -0.178515 0.050176 -0.640744 -0.300571 0.355689 -0.055679 0.918725 -0.549723 0.138191 0.274791 -0.058924 -0.770497 -0.405991 -0.316729 -0.238421 -0.245936 0.572527 -0.729781 -0.347956 -0.366096 0.338957 -0.528191 -0.093627 -0.210264 0.637409 0.396073 -0.006805 0.527098 0.296652 0.454705 0.063276 -0.178433 0.195120 0.445409 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -1.020677 0.466624 0.470319 -0.399656 1.906226 -0.074862 0.413682 0.872047 -0.158791 1.115120 -1.386495 -0.749920 -0.437633 -1.094395 0.105362 -0.510227 0.356531 0.205324 -0.452924 0.097633 0.595605 -0.277340 -0.069239 -0.541668 -0.206406 -1.112233 -0.705874 0.215000 1.041521 -0.505567 -0.299811 0.253642 2.026641 0.004865 1.841254 1.162086 0.760174 1.111429 0.044232 -0.288808 -0.030308 1.064508 -0.885480 -1.074145 -0.128780 -0.893849 -1.064940 -0.515229 0.499027 -0.481830 0.150498 1.033036 -0.147916 0.431984 -0.571199 0.743015 0.754911 0.107558 1.756118 0.461090 -0.926116 0.225295 -1.064805 1.300763 -0.545155 0.672494 -0.790980 -1.425098 -0.226716 0.095569 0.069588 -1.022006 -0.595222 0.969241 0.497790 -0.952292 0.715478 -0.224983 -0.149903 -1.544943 -1.264218 0.473603 -0.135555 1.171745 -0.062625 -0.046365 -0.021397 0.244840 -0.089459 -1.762721 -0.067184 1.324616 -1.216726 -0.144465 -0.423100 0.480753 -0.026089 0.695337 -0.689301 -1.039093 0.391359 -0.150160 0.195223 -0.504034 0.810700 -0.877145 0.168187 0.152794 0.263702 0.802466 0.723014 0.608538 1.249163 1.237299 -0.983362 0.003876 -1.104535 0.716052 -0.767901 -0.028303 -0.125105 0.591029 0.506616 0.471796 1.361676 -1.681406 0.517507 0.490021 -0.545175 -1.063720 -0.034522 -1.248097 -1.262328 -0.353859 0.723180 0.367106 0.103273 -0.857110 0.281809 -0.236959 -0.404288 -0.174901 -0.005240 0.686316 -1.431661 -0.212833 -0.154925 -0.242413 -0.660873 1.239520 0.870714 0.868079 1.642504 0.880826 -0.694429 0.139378 -1.548589 0.194051 1.818411 -0.207511 -1.341578 1.140711 -1.229856 -0.012455 0.804818 0.896906 0.728238 0.063237 -0.839893 -0.359446 0.285608 0.087431 1.763378 0.323801 0.480111 -0.753289 1.099232 -0.545105 -1.018585 1.947586 0.768622 -1.752757 0.405711 0.682052 -0.762227 -0.288963 0.865419 -1.349952 -0.375783 -1.148123 0.136474 0.685111 -0.911292 -0.131948 0.699338 -1.463167 1.633683 0.064614 0.004140 0.453578 -1.210218 -1.051047 2.131011 0.165736 -0.021324 -0.601715 -0.675712 -0.505171 -1.506641 0.187723 0.012105 -0.544585 -0.435438 -1.332687 0.259909 1.233438 -0.218647 1.094115 -1.377505 -0.151629 0.613633 -0.025483 0.711265 -0.702714 -0.780348 -0.311243 -0.556009 0.526689 -1.130172 0.915157 1.623843 -0.663610 1.082171 0.054129 -1.069110 0.017533 0.557545 -1.361919 1.539509 -0.156504 0.791036 0.143895 0.969731 -1.071487 -0.383903 -0.127281 -0.149457 -0.664075 0.783647 -0.823256 0.010822 0.207111 -1.130772 -0.838373 0.186240 0.037002 0.072576 0.062726 -0.202647 -1.378229 -0.040863 -0.747384 0.400270 1.033005 -0.128631 -1.047887 0.590330 0.124321 -0.295062 -0.333940 0.121555 -0.020941 1.166330 -1.360991 -0.366446 0.323391 0.473655 -1.130651 -1.660733 -0.179673 -1.181335 -0.700375 0.778643 -1.374443 -0.274192 -0.990511 -0.219274 -1.293142 -0.588802 0.664584 2.030240 0.662912 -1.108416 0.445758 -0.102073 1.000624 0.142299 0.171395 0.148859 0.582448 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -2.208593 0.859723 -0.041791 -0.934395 3.618657 -0.062689 0.781805 1.080771 -0.905116 2.278894 -3.108711 -1.462123 -1.361764 -3.136591 0.078383 -0.705636 1.123418 0.222371 -0.835541 0.465449 1.384148 -1.665424 0.275889 -1.499810 -0.143599 -2.587664 -1.085836 0.271915 2.453253 -1.044080 -0.376853 0.262367 4.199889 0.357126 2.922488 2.068338 0.988284 2.898287 0.445040 -1.310839 -0.311657 2.602191 -1.620401 -2.496778 0.092457 -2.062731 -1.853460 -1.104177 1.203492 -1.109772 -0.311320 2.224505 -0.328363 0.409922 -2.116764 1.187046 2.985052 0.060779 3.873190 0.795858 -1.103193 -0.363381 -1.798792 1.976790 -1.543670 0.577216 -0.603552 -2.271726 -0.078221 0.174598 -0.399740 -1.629851 -1.610178 1.604669 1.277265 -2.110896 1.277175 -0.406634 -1.701604 -3.448524 -2.664174 0.453064 -0.425277 2.764143 -0.234964 -0.101623 0.846312 0.308561 0.364985 -3.473893 -0.286073 2.291171 -1.879179 -0.339574 -0.477365 2.213733 -0.206431 0.961110 -2.154702 -1.698884 0.422205 -0.301333 0.506361 -1.510050 0.854142 -2.146052 0.743186 -0.176329 0.322071 1.663500 2.505114 0.945095 1.826544 2.294156 -2.794238 -0.278654 -2.523345 0.900273 -0.609063 -0.063726 -0.180162 1.049381 0.816109 0.264889 2.740931 -3.749412 1.478216 1.303205 -0.928650 -2.484204 -0.011389 -2.288408 -2.468173 -0.450192 1.595979 0.388867 0.456052 -1.543303 0.559901 -0.405043 -1.452733 0.112184 -0.086163 2.736789 -3.192475 -0.316152 -0.438908 -0.812936 -1.070784 1.922543 1.201581 1.390476 3.249316 1.757113 -1.766352 1.639665 -2.838542 0.784714 4.431990 0.698613 -2.898686 1.897004 -2.092730 0.375646 1.665730 1.416987 2.076482 -0.427872 -1.858374 -0.651885 1.300064 -0.245120 3.403449 0.214379 1.372321 -2.002626 3.014865 0.265778 -1.318265 4.089343 1.415580 -3.399471 1.868515 1.705403 -2.265421 0.008272 1.321104 -1.963093 -0.512771 -2.597396 0.555339 1.293155 -2.026944 -0.610324 0.224884 -3.044823 3.440211 0.232584 0.384872 1.285222 -2.526186 -2.109111 3.915082 0.061861 -0.057451 -1.412624 -1.531931 -2.020088 -3.489968 0.557667 -0.428675 -1.778223 -0.716897 -2.827290 0.246414 2.799444 -0.421390 1.817176 -3.697231 0.018628 1.193549 1.015931 1.420294 -0.962285 -1.823294 0.330840 -0.824796 1.283324 -2.029403 1.981989 3.062172 -1.696999 2.117756 -0.661598 -1.228169 0.866772 1.309059 -2.576710 3.020112 -0.575920 2.673564 -0.071028 2.238104 -1.939078 -0.491533 -0.060962 -0.443108 -1.270532 1.367341 -2.159947 -0.117380 1.154976 -1.942775 -2.120938 0.672435 -0.094329 1.028925 0.114459 -0.417290 -2.265602 0.151613 -0.802327 0.846040 2.185508 0.210262 -2.125987 0.522845 0.571870 0.045676 -0.302479 0.406321 -0.117826 2.360366 -2.786153 -0.461313 0.191464 0.599467 -1.649790 -3.757807 0.221152 -1.975156 -1.591091 2.962669 -3.480602 0.011167 -2.010994 -0.166011 -2.873120 -0.303807 0.443353 3.831907 1.011622 -1.882672 1.146931 0.015643 1.887248 -0.266154 0.513152 0.372643 1.340288 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = -0.849433 0.176386 0.105359 -0.497032 1.697257 0.017289 -0.098003 1.060217 0.648997 0.571972 -1.497895 -0.939198 -0.437364 -0.837747 0.185308 -0.077111 0.139922 0.509513 -0.932056 -0.499982 0.761864 0.395968 -0.035780 -0.863215 0.104175 -0.056583 -0.870609 -0.092417 -0.218429 0.315604 -0.603340 0.308543 1.345447 0.267260 0.896537 0.741008 0.820043 1.466880 -0.513231 1.706300 0.494994 0.966253 -0.503099 -1.346421 0.640874 -1.176619 -0.599963 -0.505873 0.326292 -1.125784 1.703805 0.710142 0.214132 0.000507 -0.143339 0.221010 0.561832 0.494137 1.077748 0.862593 -1.372713 0.572782 -0.931993 0.728734 -0.614669 1.902990 0.332918 -1.601870 -1.090336 0.377593 1.429368 -1.240378 -1.299107 0.038011 -0.158563 -0.226093 0.857728 -0.053889 0.824931 -0.427202 -1.158012 0.302125 -0.291048 0.804538 -0.372360 -0.421119 -0.708079 -0.293719 0.418103 -0.802227 -0.749805 0.988615 -0.733303 0.986249 -1.335750 -0.762273 -0.409198 0.417671 -0.577331 -0.636154 0.418575 0.667785 0.068884 0.484770 -0.527727 -0.550665 1.230608 0.967751 -0.263835 -0.001422 0.407224 0.249289 0.262210 0.430199 -0.176152 0.687159 -0.968858 0.490680 -0.259555 0.203438 -0.054507 0.057993 0.522909 -0.311075 0.469043 -0.697809 0.914767 0.395900 -1.174895 -0.384469 0.466931 -0.794984 -1.348823 -0.152383 0.684346 0.593814 -0.202813 -0.190998 0.110070 -0.690879 -0.631563 -0.634545 -0.695804 -0.121205 -0.562337 -0.429134 -0.317970 -0.483968 -0.533164 0.805312 0.242014 0.269017 1.154020 0.537140 -0.439028 -1.137170 -0.983472 0.523878 1.690256 0.377164 -1.176051 0.234068 -0.267183 0.785538 0.802235 0.101334 0.024340 0.803688 0.185914 0.372218 -0.947488 -0.471812 1.260730 1.259744 0.863705 -1.100345 0.092327 -0.754926 -0.342571 1.876443 1.224468 -1.268117 -0.381180 0.816309 -0.016605 -0.443503 0.226186 -0.284602 -0.476842 -0.634653 0.315824 0.368996 -1.119575 -0.894700 0.656184 -1.205941 1.252156 0.173490 0.381671 0.051976 -1.639405 -0.484088 1.765735 0.165288 -0.276880 0.014705 -0.240586 -0.088549 -1.279356 0.383277 0.686974 -0.223492 -0.698665 -0.677065 0.392584 1.334280 -0.820228 0.213361 0.113606 -0.365520 0.313005 -1.255435 0.956320 -1.451530 -0.839698 -0.703328 -0.250002 1.041018 -0.536225 -0.255086 1.404500 -0.580730 0.827316 1.810025 0.009200 -0.739632 1.027812 -0.195148 0.933904 -0.438127 0.193715 -0.183660 1.089021 -0.733315 -0.372559 -0.209081 0.552054 -0.449016 1.190404 -0.807528 0.204458 0.191726 -1.219376 -0.104457 0.915248 0.130718 0.460473 -0.206249 -0.140232 -0.888349 0.031317 -0.123905 0.055677 1.060810 -0.213727 -1.318443 -0.346283 -0.017118 -1.192139 -0.309141 0.465300 -0.162628 1.506262 -0.839408 0.238877 0.539756 -0.365124 -1.448389 -0.486208 -0.616702 -0.707649 -0.682528 0.638999 -0.825756 -0.657262 -0.622658 0.461489 -0.518056 -0.536810 -0.096057 1.067635 0.894059 -0.272532 0.665793 0.429084 1.045215 0.294741 -0.414398 0.213039 0.782305 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -21.169324 25.459445 24.448716 -10.437580 20.814446 16.487948 7.441189 6.344976 -12.021494 28.985264 -34.054509 -9.119259 -12.019825 -15.558579 -7.169026 -28.064929 -3.557215 -11.405382 -4.306053 10.584957 11.620843 -22.198785 -1.412612 -15.066042 -5.432157 -32.015820 -13.481466 -2.010035 30.520750 -4.336005 3.642344 -7.026614 36.254777 6.352959 31.060939 23.957015 6.542111 29.583006 0.894805 9.021376 -14.885524 27.224675 -23.005437 -13.012790 -2.989797 -26.963030 -10.467159 -9.440484 5.416027 -7.539408 4.297698 22.489485 -7.024187 7.040149 -16.245110 15.049625 17.976924 4.386874 41.993531 2.753425 -8.195824 -5.919998 -25.179390 13.704949 -7.760309 10.758916 -2.738312 -10.923867 14.775214 -15.100185 -0.783270 -15.199715 -5.164439 29.063205 6.929643 -25.091361 7.598025 -15.914502 -55.609577 -27.030644 -17.597495 7.089721 15.608395 23.855702 0.848500 0.617400 -1.954500 16.267305 -5.141049 -42.596298 0.970611 35.461455 -15.903579 -6.626398 -16.138898 28.975829 -4.803790 21.149986 -19.566268 1.428523 8.255995 7.388853 3.233900 -41.171560 -3.879246 -39.283140 14.941983 -0.885246 -9.454574 0.933418 14.537508 14.734165 32.169289 34.584880 -33.897557 12.264866 -22.133197 2.466204 5.934920 -1.473790 3.562225 12.771929 -18.146403 5.394501 32.786704 -35.319056 6.154474 7.670686 -21.061165 -38.819362 -8.064429 -35.674172 -25.012401 -5.389983 5.749034 14.231623 6.271013 -26.096370 -4.697911 -11.163918 -3.339466 -23.426868 17.639038 34.330000 -21.144191 -6.883233 -0.783381 0.957757 -19.823728 29.390225 17.649015 12.491189 34.870146 16.025515 -0.543687 8.739484 -19.563783 -7.537023 30.054528 24.294051 -32.855219 23.457009 -19.736098 -2.605698 12.369455 13.142290 21.683460 4.866566 -36.670506 -24.569542 12.884715 -5.915329 34.809347 10.194503 10.522474 3.604045 49.280558 -9.869405 -31.654136 24.076241 25.039248 -19.061486 0.354311 4.800942 -16.903533 -2.712576 25.919105 -20.228936 3.989967 -10.416786 -11.723604 5.422091 -7.852068 -2.360311 2.354081 -34.557298 47.676929 2.744342 27.434074 8.691031 -26.369487 -43.244756 24.717054 -9.721922 -8.568285 -13.395743 -4.603442 -28.610943 -26.866268 6.415148 4.060116 -18.749306 -19.382542 -31.086940 15.660106 9.065031 -5.484536 23.074295 -17.212982 -25.675649 9.256140 -1.035390 25.087910 -5.986031 -17.818727 -9.880260 0.146225 28.106815 -13.254169 40.950667 45.885764 -4.216901 29.097386 -11.356390 -8.840483 2.031343 14.958541 -32.182120 29.513915 -10.620612 10.996975 -4.983983 19.155378 -18.597060 -10.354245 7.822192 -1.596396 1.419556 11.011200 -8.731679 1.851259 -10.136161 -33.341165 1.834710 3.449049 -12.494493 -8.444909 3.523299 14.880373 -24.789008 -7.699574 -22.567248 -1.013447 22.211385 6.511491 -13.742284 8.745439 -11.217947 8.965808 16.172194 -1.859997 -2.121843 14.773935 -27.014590 -18.092108 -2.815996 -10.512948 -18.024477 -37.554329 -8.794222 -24.269454 -28.570801 22.718556 -26.267590 10.688257 -24.864884 -16.731480 -34.657078 -14.309333 11.617762 41.702064 19.499415 -25.053216 1.007098 -6.380071 33.415416 4.080190 5.688417 6.329430 12.427295 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = -0.624828 -0.075319 -0.446286 -0.286000 1.407429 0.005835 -0.125909 0.790856 0.253544 0.504850 -0.885216 -0.511915 -0.364345 -0.822022 0.191287 0.437683 0.283372 0.350250 -0.600092 -0.408053 0.566568 0.044864 0.150105 -0.509429 0.080006 -0.184060 -0.379030 0.018823 0.231652 0.163106 -0.854833 0.190485 0.927037 0.096784 0.511296 0.380661 0.759139 0.970075 -0.129585 0.376641 0.269907 0.696031 -0.351706 -1.109391 0.570581 -0.874173 -0.513211 -0.360685 0.423498 -0.712923 1.029128 0.565662 0.095558 -0.098206 -0.302669 0.138831 0.605496 0.227611 0.887471 0.524842 -0.752467 -0.186699 -0.522634 0.578800 -0.508482 1.008389 0.171460 -1.117591 -0.813787 0.369856 0.620602 -0.790747 -0.841273 0.038218 0.078502 -0.234147 0.588089 0.035725 0.984422 -0.523154 -0.960575 0.097687 -0.616078 0.750987 -0.238124 -0.196211 -0.362158 -0.245388 0.349766 -0.649120 -0.406650 0.608727 -0.477644 0.746374 -0.637202 -0.304860 -0.291724 0.144182 -0.547057 -0.468910 0.170832 0.420507 0.154674 0.157573 -0.020741 -0.407244 0.841228 0.386304 0.095491 0.117428 0.597878 -0.146101 -0.010245 0.354063 -0.134734 0.160743 -0.761356 0.267358 -0.039698 0.238189 -0.214142 0.175016 0.641210 -0.358873 0.422783 -0.774439 0.723796 0.299321 -0.574974 -0.315148 0.361473 -0.415709 -0.816676 -0.007477 0.630061 0.077878 -0.208489 -0.123172 0.292269 -0.311834 -0.991768 -0.099896 -0.545737 0.168604 -0.742714 -0.159492 -0.290339 -0.537768 -0.198503 0.412812 0.163800 0.323104 0.816616 0.572218 -0.481637 -0.112698 -0.823129 0.645127 1.368293 0.240242 -0.886974 0.149208 -0.459146 0.591985 0.613554 0.110179 0.233230 0.484273 0.263836 0.514143 -0.240445 -0.086385 0.920661 0.619932 0.833799 -0.925839 -0.078896 -0.296899 0.061091 1.328411 0.598245 -1.141909 0.255487 0.653182 -0.108534 0.071527 0.003505 -0.281093 -0.241569 -0.768610 0.413701 0.531368 -0.979708 -0.631257 0.247791 -0.794117 0.882411 0.080518 0.131706 0.261107 -1.101522 0.340239 1.299832 0.144177 -0.121548 -0.162427 -0.401626 -0.437573 -0.960161 0.272174 0.290205 -0.344850 -0.421915 -0.610107 -0.075661 1.207906 -0.288037 0.109163 -0.595063 0.238362 0.293177 -0.366194 0.601053 -0.852778 -0.541093 -0.192221 -0.276417 0.632791 -0.526209 -0.196391 0.721068 -0.684801 0.524452 0.812336 0.218304 -0.189733 0.591867 -0.140555 0.705722 -0.136616 0.569327 -0.160180 0.815848 -0.466595 0.013165 -0.255628 0.330739 -0.305456 0.817988 -0.724108 -0.035863 0.541039 -0.648206 -0.508761 0.500008 0.281410 0.609131 -0.081080 -0.426773 -0.414772 0.013567 -0.108806 0.181076 0.739657 -0.302731 -0.901142 -0.258129 0.100664 -0.732480 -0.275796 0.432850 -0.049178 1.107313 -0.669047 0.175321 0.298828 -0.035473 -0.894646 -0.511632 -0.350280 -0.198100 -0.255266 0.839366 -0.948542 -0.441416 -0.441321 0.419775 -0.648174 0.001722 -0.313407 0.771461 0.450038 0.012801 0.658360 0.382188 0.501893 0.002907 -0.186536 0.258028 0.489970 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -0.371494 -0.175915 -0.166205 -0.116824 0.723852 -0.269287 -0.095015 0.481967 0.530637 0.162636 -0.496670 -0.490078 -0.324402 -0.450429 0.198307 0.148117 0.269112 0.398860 -0.415349 -0.379143 0.412645 0.262041 -0.016530 -0.341780 0.112710 -0.037106 -0.249009 -0.021397 -0.150587 0.152971 -0.548065 0.355876 0.637512 0.137528 0.382556 0.316940 0.517046 0.708971 -0.126673 0.586615 0.273438 0.439459 -0.130321 -0.771505 0.418820 -0.444317 -0.182848 -0.232910 0.254103 -0.396803 0.884320 0.289891 0.134592 0.023044 -0.158142 -0.029466 0.194288 0.407465 0.404099 0.455700 -0.501598 0.166619 -0.322856 0.307756 -0.427590 0.727057 0.125867 -0.732143 -0.601395 0.279356 0.567742 -0.508097 -0.579955 -0.167896 -0.059766 -0.025726 0.422874 0.181723 0.840270 -0.070747 -0.719716 0.058087 -0.352599 0.410304 -0.230031 -0.204737 -0.403235 -0.251263 0.321711 -0.208049 -0.335692 0.299078 -0.326259 0.580252 -0.373083 -0.413173 -0.111135 0.043179 -0.183402 -0.375840 0.150574 0.157264 0.093451 0.499528 -0.218084 -0.014296 0.627838 0.311413 -0.047390 0.025059 0.279475 -0.055075 -0.090841 0.024320 0.150675 0.154850 -0.544932 0.283806 -0.080653 0.088278 -0.027934 0.051966 0.369770 -0.290798 0.095138 -0.336765 0.446276 0.189426 -0.325334 0.032168 0.325535 -0.157510 -0.537152 -0.143231 0.531140 0.174849 -0.195784 0.040433 0.178140 -0.205605 -0.373325 -0.080877 -0.515036 -0.159877 -0.218190 -0.150084 -0.257684 -0.438005 -0.139197 0.135414 -0.060557 0.181231 0.389967 0.350293 -0.371294 -0.462997 -0.539677 0.332105 0.713178 -0.080170 -0.476864 0.005818 -0.113982 0.413233 0.400832 0.083676 0.017216 0.337576 0.406748 0.439258 -0.500844 -0.115451 0.497872 0.453898 0.466516 -0.573067 -0.307030 -0.247285 0.031334 0.859807 0.383832 -0.670273 -0.073619 0.449838 -0.036746 -0.196449 -0.071195 -0.080228 -0.099697 -0.511897 0.362247 0.317619 -0.706198 -0.335673 0.318130 -0.448354 0.328535 0.041914 0.049646 0.098116 -0.798572 0.163215 0.917354 0.085424 -0.008476 -0.053210 -0.300052 -0.027848 -0.608711 0.190210 0.176453 -0.040746 -0.238932 -0.248826 0.019202 0.823715 -0.281465 -0.004745 0.017200 0.107102 0.167511 -0.405090 0.317676 -0.554872 -0.369113 -0.094092 -0.148189 0.391694 -0.217217 -0.362864 0.432451 -0.413458 0.204972 0.819064 0.051818 -0.229021 0.429791 -0.030225 0.351590 -0.170919 0.061274 -0.058075 0.450554 -0.339178 -0.125361 -0.137884 0.311196 -0.311301 0.504304 -0.401550 0.064149 0.256460 -0.420751 -0.148931 0.375151 0.255937 0.386792 -0.087810 -0.177891 -0.267975 0.098043 -0.037836 0.125546 0.487816 -0.062277 -0.561892 -0.156117 0.075964 -0.679490 -0.288194 0.285637 -0.103254 0.759272 -0.345237 0.150851 0.283091 -0.069352 -0.518103 -0.235372 -0.249655 -0.198764 -0.095549 0.337629 -0.447744 -0.373823 -0.178752 0.445617 -0.253962 -0.001919 -0.232007 0.322545 0.366893 0.115261 0.425729 0.298019 0.273160 0.070818 -0.276842 0.119620 0.414490 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.430333 0.272124 -0.149100 -0.337625 1.166423 -0.083415 -0.028550 0.594659 0.084817 0.409891 -0.782640 -0.108692 -0.058313 -0.759399 0.202482 0.202212 0.179757 0.309510 -0.265478 -0.185402 0.307104 -0.067741 0.066330 -0.439208 -0.020296 -0.547566 -0.188308 0.069749 0.128475 0.169651 -0.407782 0.239652 0.687965 0.040383 0.375812 0.413040 0.492072 0.630636 0.164790 0.175681 0.368540 0.292046 -0.178862 -0.825512 0.282668 -0.473468 -0.505864 -0.351808 0.208647 -0.657667 0.510211 0.444797 0.104689 -0.157031 -0.429855 0.204712 0.520362 0.039197 0.610437 0.413742 -0.559777 -0.245188 -0.313823 0.512176 -0.432568 0.479180 0.108457 -0.808829 -0.410432 0.588762 0.269163 -0.356872 -0.504641 -0.062514 0.097581 -0.292226 0.331338 0.007359 0.318644 -0.307633 -0.461984 0.271022 -0.286435 0.614785 0.030337 -0.073017 -0.224458 -0.174433 0.287941 -0.444923 -0.372725 0.540280 -0.273232 0.311013 -0.394467 0.105252 0.181894 -0.101929 -0.166313 -0.488500 0.204754 0.180649 0.087582 -0.005107 -0.140585 -0.501014 0.523677 0.356085 -0.021649 0.306788 0.173371 0.044546 -0.000599 0.175636 -0.231697 0.101879 -0.738760 0.254509 -0.030991 0.022142 -0.246553 -0.051318 0.442342 -0.034250 0.257163 -0.604399 0.687641 0.354640 -0.292696 -0.262745 0.241376 -0.147737 -0.512710 0.029538 0.382373 0.081349 -0.006626 0.099322 0.157027 -0.227044 -0.565314 -0.236636 -0.383715 0.543313 -0.691670 -0.001772 -0.115739 -0.238031 -0.212361 0.245684 0.186999 0.201490 0.676728 0.366934 -0.289638 0.142105 -0.661236 0.447501 1.129429 0.334691 -0.562242 0.256372 -0.337210 0.247969 0.280219 0.109085 0.054312 0.315660 -0.186322 0.049969 -0.130120 -0.222957 0.653287 0.437668 0.451727 -0.766670 0.262957 -0.141925 0.067015 0.968782 0.460477 -0.830401 0.275753 0.783040 -0.386999 -0.045384 0.133073 -0.357192 -0.220417 -0.466218 0.244180 0.356032 -0.736619 -0.505721 -0.014054 -0.547988 0.591603 0.142320 0.091884 0.035234 -0.522767 0.094801 1.026812 0.117731 0.010885 -0.058316 -0.310603 -0.433317 -0.769208 0.061415 0.356583 -0.411515 -0.175274 -0.431337 -0.182070 0.838834 -0.413133 0.079223 -0.591489 0.211025 0.306865 0.006774 0.211036 -0.609530 -0.344341 -0.020633 -0.180988 0.232832 -0.408870 0.117630 0.462050 -0.412050 0.524275 0.438075 0.031015 0.068962 0.464393 -0.131789 0.608814 -0.084680 0.557668 0.167257 0.600363 -0.391356 -0.017599 -0.235533 -0.149787 -0.339133 0.608262 -0.743904 -0.055630 0.583374 -0.278146 -0.554092 0.442743 0.397358 0.494101 -0.189613 -0.217617 -0.202707 0.000383 -0.197700 0.261404 0.422169 -0.271636 -0.639156 -0.125398 0.463258 -0.550742 -0.387567 0.328272 0.100524 0.777177 -0.534755 0.394514 0.217582 0.112315 -0.853325 -0.515261 0.067864 -0.265754 -0.287570 0.328270 -0.980304 -0.465273 -0.296572 0.383115 -0.662307 -0.020592 -0.063706 0.654704 0.089550 -0.021741 0.413176 0.148106 0.157283 -0.036846 0.031735 0.107371 0.381048 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -4.346743 1.430667 1.494451 -2.487936 7.048789 0.044337 1.086005 3.917072 -0.883507 4.415885 -7.097771 -2.902902 -2.843329 -6.411439 -0.154091 -2.845716 2.023264 -0.022001 -2.367763 0.847766 2.971966 -1.581593 0.048816 -3.493954 -0.536149 -4.765252 -2.670767 0.143485 3.222450 -1.277277 0.043539 0.687080 9.502491 1.827877 7.227768 4.673000 2.479789 6.584126 0.597306 0.843677 -0.593369 5.496605 -3.366299 -4.936550 -0.318032 -4.642603 -3.559798 -2.472207 1.776480 -2.614433 1.137166 4.361445 -0.052862 1.515872 -4.003838 1.475334 4.087383 0.052490 7.551537 2.183291 -4.096901 0.209700 -4.137703 4.036017 -3.155925 2.748594 0.129545 -3.351261 0.111622 -0.052001 1.459253 -3.889380 -3.716708 2.880482 2.247865 -4.079363 3.048015 -0.995626 -3.519183 -5.571357 -4.632401 1.711798 -0.052597 5.282890 -0.628034 -0.417215 0.863224 0.750074 0.459564 -7.002482 -0.852075 5.477281 -4.271057 -1.107261 -4.302983 4.237415 -1.575895 2.808716 -3.833773 -3.387702 1.793992 0.197595 0.641059 -2.761793 -0.259329 -4.891646 2.903113 0.835879 -0.850060 2.683795 3.673806 2.538423 4.780271 4.808950 -4.446827 1.692408 -5.714606 2.140982 -1.573296 -0.433343 -0.457135 1.817966 1.242254 1.127396 5.128794 -6.721965 3.008107 3.338679 -3.346726 -4.755999 -0.049399 -5.307303 -6.012124 -0.869024 3.103315 2.227333 1.199346 -3.523477 0.688694 -1.578086 -2.094029 -2.423282 0.087928 3.886406 -4.900074 -1.498784 -0.597371 -0.834872 -3.086692 4.920853 2.395717 2.154647 7.031334 2.533269 -3.229856 0.187663 -5.659952 0.531212 8.941557 0.885641 -6.116448 4.069846 -3.754331 0.811824 2.695084 3.198542 3.656742 -0.823470 -4.288854 -1.743446 0.926436 -1.140701 7.285061 2.026713 2.529665 -3.124068 5.977123 -0.873291 -2.909509 7.777240 4.210632 -5.994586 0.982459 3.156268 -3.124026 -1.193443 3.118704 -3.597297 -1.214246 -4.633224 1.042803 1.800516 -3.691054 -1.028279 1.187268 -6.483401 7.106770 0.554294 1.520629 0.947683 -5.761964 -5.619589 8.470573 -0.993550 -0.446603 -1.912260 -2.579801 -2.999269 -7.363835 1.238321 0.311238 -2.650762 -1.140610 -5.375954 1.983068 4.893993 -1.995222 3.771775 -4.833035 -1.891091 2.457422 -0.084853 3.301652 -3.727408 -3.905890 -0.682709 -1.084640 4.111052 -4.295972 3.988439 7.428462 -2.347587 5.337263 0.551034 -2.393627 -0.170095 3.351654 -5.502095 6.488573 -1.982894 3.195227 -0.215288 4.512625 -3.604898 -2.158160 -0.551243 -0.274154 -2.257821 3.040381 -4.075132 0.404118 0.707061 -4.465956 -2.387753 1.946323 -0.612240 0.355214 0.028674 0.090266 -5.287145 0.071871 -2.978713 1.917777 4.825810 0.275585 -4.672992 1.193516 1.276904 -0.992190 0.965914 0.340404 -0.268713 5.340937 -5.504629 -1.340280 0.977285 0.816586 -3.966248 -7.413227 -0.036864 -4.431742 -3.613627 4.464488 -5.910707 -1.280713 -4.171639 -0.329494 -5.254723 -1.915304 1.766629 7.737594 3.277124 -4.232204 0.934659 -0.003386 4.456266 0.406390 0.664081 1.402128 3.044140 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -0.920530 0.372197 1.199142 -0.400430 1.589361 -0.075699 0.284207 1.580795 1.369414 0.267815 -1.702938 -1.385302 -0.276846 -0.163505 0.245277 -0.888757 -0.134074 0.823112 -1.185600 -0.706702 0.952640 1.405782 -0.670948 -0.979170 0.151535 0.483958 -1.430760 -0.296063 -0.748718 0.517370 -0.594388 0.604015 1.669163 0.474594 1.993381 1.263102 1.380610 1.533607 -1.119662 3.330078 0.482953 1.170562 -0.734482 -1.507780 0.569767 -1.326029 -0.519143 -0.607517 0.017047 -1.131442 3.041790 0.613731 0.305640 0.620933 0.742507 0.038831 -0.283205 0.999300 0.865939 1.259928 -2.188576 1.854899 -1.317353 1.014242 -0.250579 3.113822 0.191504 -2.089661 -1.365688 -0.082686 2.707619 -2.083917 -1.459933 0.311036 -0.536742 0.108682 1.269930 -0.120026 1.472226 -0.046499 -1.374497 0.488255 -0.113988 0.612249 -0.634048 -0.772485 -1.854386 -0.306310 0.204128 -0.843938 -0.939990 1.590595 -1.283983 1.398998 -2.309986 -1.975462 -0.571197 1.271236 -0.288200 -1.021875 0.858331 0.955415 -0.122296 1.435909 -0.842363 -0.212298 1.297166 1.526195 -0.714766 0.026639 -0.344991 0.797935 1.040120 0.576985 0.391159 1.463368 -0.822726 1.073516 -1.041121 0.310180 0.421295 0.123847 0.366251 -0.051253 0.350885 -0.214192 0.541091 0.378128 -1.683320 -0.180465 0.537115 -1.580909 -1.946926 -0.640756 0.672948 1.496144 -0.456956 -0.601811 -0.228535 -1.056447 0.158612 -1.868496 -0.754297 -1.516438 -0.085856 -0.949275 -0.379820 -0.334524 -1.088078 1.426567 0.387236 0.349878 1.178176 0.604287 -0.236728 -2.713367 -1.048436 -0.040226 1.257336 -0.187441 -1.334949 0.288718 -0.288638 0.733710 1.110706 0.265215 -0.461677 1.255990 0.242207 0.385160 -1.946554 -0.639239 1.485914 2.186967 0.611517 -0.906983 -0.212105 -1.800617 -1.560807 2.243984 1.545527 -1.345279 -1.756056 0.313166 0.752788 -1.195483 0.430479 -0.634518 -0.745364 -0.450578 0.155552 0.027828 -1.031113 -0.737560 1.884468 -1.510240 1.334905 0.191779 0.443230 -0.547387 -2.156931 -1.174747 2.616878 0.182994 -0.561893 0.291961 0.178329 1.225000 -1.067552 0.481619 1.019860 0.493693 -1.245788 -0.570423 1.254344 1.302494 -1.281148 0.454487 1.688564 -1.410535 0.157506 -2.754449 1.270211 -2.757020 -1.117105 -1.872817 -0.027521 1.474464 -0.451343 -0.458536 2.390714 -0.241678 0.648077 3.195887 -0.746265 -1.820214 1.356687 -0.387122 0.901710 -0.760012 -0.861463 -0.221788 1.059558 -1.171287 -1.165637 -0.204811 1.371269 -0.537068 1.595093 -0.207914 0.738636 -0.802441 -1.959040 0.857613 1.091263 -0.140215 -0.369763 -0.232266 0.105146 -1.605994 0.005760 -0.637626 -0.347357 1.421294 -0.286307 -1.696974 -0.157220 -0.771772 -1.862439 -0.218942 0.292389 -0.385157 1.761004 -0.757986 -0.179378 0.954551 -0.735713 -1.916917 -0.427428 -1.218506 -1.462633 -0.842036 -0.287405 0.081519 -0.940788 -0.795850 0.159028 -0.464990 -1.560510 0.506969 1.224488 1.712518 -0.494901 0.420127 0.401423 1.916299 0.939938 -0.654350 0.205535 1.074100 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -17.361931 20.463787 26.999688 -8.466680 17.783384 -0.075624 16.360341 10.092283 -13.849643 13.686818 -29.105958 -8.167643 -9.984930 -15.042638 -0.525683 -14.968619 3.168410 2.453230 -0.432884 13.711977 13.521885 -14.719242 -4.208165 -17.265931 -0.650650 -8.222425 -8.529141 -3.489115 13.641846 3.080920 5.702233 2.815688 25.971155 12.304631 32.001629 23.085598 -6.878143 28.708032 2.785323 -0.674584 -9.296917 23.246930 -14.123409 -26.582278 3.791965 -17.940169 -3.034540 -22.044772 1.948310 -13.783836 7.184225 16.793323 -2.340134 5.562072 -15.395051 2.708376 21.617580 10.905831 27.461471 9.707922 -9.041963 13.822726 -15.781381 -10.654860 -2.393757 9.853332 2.057287 -14.446760 11.255105 -6.514180 9.505310 -18.828966 -4.236895 13.567044 -0.897551 -13.487040 12.223964 -6.209750 -33.260783 -23.832406 -18.211874 2.919717 7.589774 21.446558 -4.530018 -4.291299 -11.906051 4.621628 3.584728 -25.560883 -5.538597 20.166855 -10.271648 -6.618611 0.810257 21.902190 1.376894 13.938186 -14.395650 -5.478504 10.484596 3.604378 2.112615 -8.572888 -5.588320 -18.923085 11.723375 6.308853 -8.143349 7.874550 16.202762 18.334735 23.585632 17.573598 -22.662842 20.009935 -19.950964 7.517558 -6.717941 -1.264866 7.136689 7.646092 -5.394970 -1.687418 15.923666 -22.628479 9.007836 14.968610 -8.100144 -22.559252 3.781726 -26.043267 -21.708823 -9.901120 10.058018 14.552025 3.634458 -13.674258 -7.105649 -12.421964 4.204209 -14.197539 1.473415 29.781845 -20.156484 -6.561616 -4.573925 -3.964367 -12.365762 15.665937 6.317411 7.634387 23.598192 13.253662 -10.204099 -12.092405 -15.736320 -3.679945 28.288622 6.044814 -20.952587 12.914005 -1.406041 0.388959 13.688322 5.826039 15.702684 -1.537399 -26.237366 -19.525102 6.751419 -11.678305 24.294191 13.425687 13.852056 -9.629424 37.538418 -6.842746 -24.957379 24.847026 13.288525 -18.835798 -4.310933 9.063479 -15.696424 -7.118790 12.427421 -10.794171 -0.523115 -7.404607 -5.285068 0.076807 -14.670806 -11.613216 1.306102 -27.752385 29.035065 4.634613 19.607773 -2.876061 -16.971994 -15.141715 31.125402 3.340928 -8.126376 -6.764447 -4.339709 -14.406745 -23.026611 6.895663 1.950670 -6.092853 -15.886492 -19.229568 10.841843 7.952707 -11.622459 7.769661 3.645062 -16.069933 6.640166 -7.299095 14.069651 -18.838776 -18.353231 -4.916919 -3.074448 19.986966 -2.295002 26.417935 37.507293 -5.326934 13.326919 19.322872 4.197737 4.244099 18.014564 -20.718885 20.195899 -14.301489 24.228120 -1.702435 17.527150 -16.955451 -13.052816 4.801034 0.867399 -4.950104 16.420770 -9.220922 5.233349 -3.207402 -22.718206 -1.680988 9.163024 -6.301689 -1.515099 -0.710206 11.779225 -24.362663 -0.296582 -18.043700 0.004721 20.995890 0.808104 -22.904078 -0.169150 -1.396139 2.012553 -1.705093 2.570814 -3.316210 16.056072 -19.472285 -3.932594 -0.759435 -6.089763 -12.799031 -22.253052 5.737037 -23.257335 -20.437723 18.301232 -15.760058 7.172782 -17.247584 -4.356633 -30.937586 -7.508296 1.399115 27.005625 11.554404 -13.741170 2.585129 -2.575117 24.642985 5.553762 3.090337 -5.239310 18.449758 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = -0.281080 -0.030138 -0.115396 -0.201172 0.748564 -0.107730 -0.106055 0.560331 0.421237 0.265120 -0.429369 -0.206165 0.005069 -0.166838 0.104776 0.162044 -0.017715 0.290299 -0.400100 -0.326548 0.208241 0.387816 -0.040151 -0.194996 -0.087261 -0.064669 -0.274382 0.090217 -0.097335 -0.022277 -0.441519 0.141815 0.514490 -0.144426 0.413414 0.254325 0.540148 0.374049 -0.134191 0.530993 0.390982 0.218524 -0.165550 -0.387093 0.099953 -0.333553 -0.319385 -0.093929 0.184124 -0.340597 0.834675 0.162839 0.145513 0.018852 0.052566 0.247711 -0.058963 0.079144 0.360489 0.291001 -0.616850 0.257048 -0.360461 0.755626 -0.294487 0.716587 -0.138056 -0.675332 -0.550673 0.284563 0.548551 -0.517762 -0.418769 -0.028294 -0.082034 -0.091418 0.323493 -0.017660 1.005534 -0.171583 -0.328267 0.214265 -0.237296 0.187814 -0.159370 -0.103209 -0.465723 -0.081299 0.048829 -0.221608 -0.308990 0.371354 -0.414570 0.411353 -0.473423 -0.489300 -0.070952 0.083895 -0.025182 -0.357406 0.135792 0.220480 0.022964 0.241117 0.226962 0.033840 0.272818 0.368218 -0.004892 0.064487 -0.118591 0.108346 0.100262 0.124781 0.320313 0.085546 -0.432601 0.245003 -0.209073 0.117733 -0.105237 0.041543 0.392649 0.051247 0.187677 -0.210060 0.351757 -0.036678 -0.338732 0.009977 0.172901 -0.085417 -0.456877 -0.067283 0.215694 0.221263 -0.157174 -0.054386 0.201042 -0.127170 -0.306312 -0.247596 -0.197285 -0.386096 -0.209492 -0.136062 -0.067443 -0.100692 -0.171066 0.344824 0.197623 0.106919 0.443757 0.220580 -0.028886 -0.442074 -0.502905 0.195558 0.451484 -0.161085 -0.360367 0.161662 -0.333168 0.176822 0.325254 0.193773 -0.162346 0.422470 0.212975 0.228866 -0.372638 -0.037813 0.510477 0.304853 0.178922 -0.365873 -0.266873 -0.434818 -0.030407 0.725332 0.416778 -0.616890 -0.163645 0.259633 0.232146 -0.207553 0.119644 -0.242542 -0.260907 -0.217058 0.173743 0.257934 -0.324063 -0.232333 0.394166 -0.320267 0.371505 -0.066393 -0.231202 0.013132 -0.566492 0.132907 0.672265 0.119158 -0.029071 0.041182 -0.104650 0.116134 -0.473560 0.049073 0.304758 -0.015061 -0.194166 -0.216345 0.125393 0.523519 -0.311389 0.085870 -0.119359 -0.073533 0.172013 -0.440376 0.233272 -0.525673 -0.139014 -0.352424 -0.091312 0.237477 -0.392308 -0.173430 0.473297 -0.208915 0.291827 0.699475 -0.189355 -0.363237 0.352598 -0.111099 0.394031 -0.037463 -0.246624 -0.000118 0.228676 -0.261288 -0.128376 -0.225833 0.277201 -0.221995 0.330326 -0.265951 0.043405 -0.032260 -0.423083 -0.003630 0.300793 0.260015 0.095299 -0.027399 -0.147653 -0.291533 -0.062524 -0.251697 -0.030264 0.291750 -0.191198 -0.494917 0.098806 0.010754 -0.644972 -0.154951 0.056128 0.068250 0.537778 -0.271076 0.089508 0.316826 0.039686 -0.689671 -0.166059 -0.344391 -0.201056 -0.127308 -0.052993 -0.222434 -0.545302 -0.157114 0.265363 -0.222211 -0.268917 0.157588 0.394177 0.356589 -0.087994 0.259068 0.094312 0.365121 0.196215 -0.174081 0.118238 0.174268 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -3.426388 3.108608 2.573272 -1.756266 4.955288 1.357371 0.939578 2.166679 -2.526186 3.833902 -5.219984 -1.099432 -1.703807 -4.072002 -0.506068 -2.338103 0.209330 -0.295180 -0.968449 0.986511 2.075720 -2.729158 0.105239 -2.391046 -0.719992 -3.165987 -1.968201 0.030205 4.084120 -1.398644 -0.090622 -0.426304 5.812616 0.624694 5.374632 3.535627 1.303325 4.681535 0.473073 -0.417053 -1.276928 3.987032 -3.037604 -4.097727 0.177818 -3.935008 -1.967684 -1.959024 1.329905 -1.881647 0.394377 3.387037 -0.739114 0.648409 -2.662823 2.018751 3.349733 0.244520 6.311217 0.939334 -2.677619 -0.519021 -3.593278 2.314963 -1.749507 2.337199 -0.484393 -2.911647 0.982301 -0.892554 -0.207096 -2.859925 -1.581110 3.564331 1.230885 -3.419878 1.338269 -1.747366 -5.676720 -4.127907 -3.423614 1.049839 0.742839 3.778221 -0.092504 0.000554 0.628312 1.546809 -0.129934 -6.109900 -0.325468 5.058094 -2.719206 -0.213806 -1.861110 3.377104 -1.199638 2.408502 -3.102606 -0.940142 1.303484 1.025755 0.687881 -4.625753 0.520034 -5.010684 2.430059 -0.002510 -0.887191 0.903660 3.308080 1.669341 4.049602 4.572015 -4.370513 1.384597 -4.159621 0.761168 -0.329347 0.010465 -0.032160 1.749695 -0.707909 0.134966 4.592022 -5.576341 1.898104 1.527487 -2.491855 -5.376591 -0.300539 -4.560735 -3.906960 -0.661827 1.678851 1.519407 0.567544 -3.165574 -0.415620 -1.302643 -2.497316 -3.003263 1.224837 4.612171 -4.160656 -0.786828 -0.455494 -0.626677 -2.414595 3.870562 2.534271 2.124947 5.443210 2.819538 -1.133674 1.356649 -3.759805 0.068047 5.777236 1.682251 -5.063285 3.253981 -3.184712 0.131543 2.212103 1.891129 3.227980 0.757949 -4.414747 -2.632603 2.406418 -0.690270 5.161405 1.579942 2.228454 -1.123627 6.073867 -0.076097 -3.539931 5.537178 2.384110 -4.765529 2.008053 1.805278 -2.026367 -0.265603 3.027537 -3.356155 -0.315725 -2.346623 -0.749446 1.264169 -2.744104 -1.153360 0.433141 -5.174475 6.796789 0.413060 2.282135 1.151687 -4.270235 -4.652266 5.256314 -0.289219 -1.014438 -1.978217 -1.442330 -3.892497 -4.704704 1.003388 0.996338 -2.792717 -2.598801 -4.518278 1.605400 2.823293 -0.948911 3.239077 -3.304779 -2.354034 1.678004 0.659803 3.361719 -2.251426 -2.744541 -0.924354 -0.767015 3.705092 -2.423548 4.724066 6.291039 -1.647701 4.743057 -0.027587 -1.916764 0.516634 2.466331 -4.246026 4.719806 -1.281582 2.971846 -0.491971 3.331120 -2.977667 -1.095243 0.471264 0.058640 -0.473950 2.154350 -2.242584 -0.028303 -0.587061 -4.591217 -1.186394 0.955964 -0.819920 0.454863 0.299565 0.669742 -3.385771 -0.795978 -2.839962 0.329654 3.561678 -0.421757 -3.461645 0.911760 -0.601108 0.217997 1.374450 0.380712 -0.041101 3.105761 -4.339015 -1.416644 -0.044992 -0.711941 -3.537890 -4.869343 -0.904638 -3.541726 -2.865958 3.544447 -4.482959 0.559436 -3.371706 -1.288123 -5.060600 -1.221926 0.784261 6.295307 2.649036 -2.894806 1.195423 -0.449315 4.303430 0.745661 0.713392 0.552754 2.396886 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = -2.883323 -7.415974 0.938802 -0.880458 6.809343 -5.252498 -1.885871 8.780094 5.666992 0.097407 -5.583783 -4.298206 -4.403673 -5.544162 1.429995 -2.732696 6.170635 0.289862 -4.093380 -1.755309 2.535045 7.571408 -1.016852 -2.933714 0.955981 0.022626 -3.777942 -0.007702 -4.474735 -0.365137 0.913486 5.157642 11.907251 5.286530 8.475026 3.620354 5.440037 6.533149 0.299159 6.009085 3.073236 4.273079 -0.503750 -4.557436 -0.449254 -3.008683 -3.179411 -0.240973 0.714781 -1.729345 4.011411 2.394394 2.569841 4.003306 -3.446220 -4.092356 -1.826121 0.025067 2.707217 4.258394 -10.326335 1.206263 -1.046018 2.804825 -3.128965 4.142953 0.839015 0.085441 -2.233395 2.976402 6.638053 -8.106552 -5.883281 -2.584070 -0.056497 0.151131 6.105566 4.052332 12.969292 -0.941726 -3.083990 1.573759 -1.924433 1.494277 -2.920123 -2.181779 -4.115565 -4.069781 2.000685 -1.573940 -1.701625 1.633199 -7.331549 0.004259 -7.886334 0.182791 -3.145050 1.897991 0.525698 -6.825515 1.214539 -1.928133 -1.005854 6.334583 -2.654366 0.541152 3.647803 0.230091 -0.530303 4.996955 -1.269334 3.788760 3.168830 -0.595211 1.992554 3.277241 -6.203763 4.773453 -5.540510 -1.781368 -2.133388 -0.309569 4.760988 2.665689 -0.313445 -2.792145 3.062932 4.893616 -1.849805 1.588052 1.472493 -2.645849 -7.224703 0.470173 5.254115 3.565891 0.606985 -1.115995 2.244401 -1.173839 1.444261 -3.789668 -3.204229 -3.902341 0.379675 -3.208351 -0.468859 -0.718777 -2.836420 2.465979 -0.628123 -0.440965 4.459840 -2.290737 -6.495417 -4.950186 -6.320057 0.719852 7.557250 -5.325970 -3.655339 2.153667 -2.407397 2.526512 1.392635 3.872070 1.474875 -4.323241 2.057804 4.049731 -1.456025 -0.770335 5.199673 1.791277 3.289794 -6.597425 -4.520659 -5.946138 3.853621 7.366607 1.256787 -7.345239 -3.698017 4.242204 3.873670 -2.052820 0.012295 -0.272882 -3.375065 -6.895633 5.729506 1.821796 -4.800918 1.209002 4.812702 -3.975267 -0.027279 0.125281 -2.137451 -1.418910 -5.980108 -2.430630 12.654666 -0.146349 3.139823 2.628742 -3.673481 8.105861 -8.509201 -0.085795 0.361215 2.331091 5.233408 -0.765890 2.589708 6.393530 -3.610120 3.449236 -2.021243 0.610982 2.086960 -6.604829 -1.206227 -7.679191 -4.468020 -1.944758 -0.844948 3.190412 -6.890587 -3.985840 3.563207 -1.500051 5.240426 5.908936 0.726490 -4.468459 1.764794 -3.088328 4.767918 -2.193811 4.027995 0.351710 3.734407 -2.385762 -4.523316 -3.922637 1.013064 -5.845545 2.462140 -5.145275 2.302745 3.245531 0.251625 -1.632686 3.111626 1.133373 -1.900197 -0.839375 -1.237177 -4.289946 0.929779 -2.957177 6.978204 3.532063 -1.335970 -6.150014 0.673367 5.866347 -8.596503 0.244689 -0.075577 -0.752518 6.923314 -3.151970 -1.429007 4.796766 3.773242 -1.587543 -6.085601 2.136749 -1.928467 0.026555 -1.688709 -2.814886 -7.759989 -1.426742 3.342226 -2.145257 -2.100680 1.193687 4.480773 5.153483 -2.880931 -1.296558 2.276935 -1.579530 0.118159 0.180504 3.863383 1.693190 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -4.932774 2.375538 1.948398 -1.925096 7.477826 -0.992045 2.637709 2.613481 -1.842840 4.260546 -7.065371 -3.711034 -3.043616 -6.220457 0.353650 -2.939190 2.680591 1.286753 -1.737135 1.691533 3.208577 -2.748798 -0.330057 -3.511112 -0.320720 -4.708607 -2.837454 0.443106 4.421774 -2.183207 -0.442995 1.547751 10.091519 1.334410 8.352979 5.664696 1.743700 6.781356 1.024570 -2.779703 -0.618204 5.891046 -3.629083 -5.960181 -0.129222 -4.283351 -3.854011 -3.319512 2.173930 -2.121851 -0.018163 4.718725 -0.559219 1.774789 -4.389251 2.028360 5.880275 1.200174 8.212013 2.275087 -2.917700 1.692718 -4.032783 3.628194 -3.092594 1.729318 -1.822769 -5.220329 0.407396 0.105018 0.964426 -4.502543 -3.726643 3.487903 2.390322 -4.283452 3.242085 -0.568495 -4.076586 -7.540531 -6.271761 1.179579 -0.907086 5.929501 -0.928539 -0.582480 0.219109 0.647876 0.773086 -7.393737 -0.829579 5.609717 -4.311589 -1.048370 -1.455178 4.474064 0.228709 2.643911 -4.523680 -4.473676 1.658177 -1.326165 0.918408 -1.715854 1.938236 -3.762129 1.196502 0.355025 0.182350 4.521466 4.543654 3.556108 5.654837 4.711123 -5.499594 0.282141 -5.699233 2.767726 -2.968355 -0.752004 0.536593 2.479262 1.338679 0.937791 5.686804 -7.780531 2.846205 3.362928 -2.064283 -4.969241 0.320245 -5.507447 -5.899828 -2.044442 3.754528 2.101427 0.996121 -3.624701 0.484118 -1.294455 -1.234715 -0.847673 -0.310194 5.209729 -6.198670 -1.119019 -1.055991 -1.719295 -2.697469 4.554083 2.538057 3.138945 7.048379 3.913314 -4.240191 0.857653 -6.532374 0.743991 9.134447 -0.088567 -6.282059 4.437871 -3.598626 0.176996 3.760601 3.704621 4.155891 -1.341671 -4.436156 -2.487628 0.877222 -0.994695 7.511389 1.420754 2.273774 -3.871539 6.993180 -0.230896 -4.400226 9.016152 2.729293 -6.780425 1.895379 3.569455 -4.769432 -1.658636 3.153274 -4.801389 -1.433735 -5.369494 1.117730 2.221602 -4.463311 -0.938856 1.653898 -6.970604 7.059745 0.542115 0.138626 1.375532 -5.715920 -5.652055 9.843330 0.141370 -0.141024 -2.604481 -3.251626 -2.303621 -7.733882 1.210939 -0.954360 -2.692683 -1.937381 -5.852808 1.477584 5.588610 -1.662453 4.082174 -5.771916 -1.165822 2.640790 1.152137 2.889138 -3.580690 -4.325620 0.269671 -1.633381 2.805386 -3.934687 4.662342 7.681133 -3.199122 3.651261 0.455109 -3.671288 1.422079 3.294667 -6.281187 6.623601 -1.925235 5.096443 0.270261 4.590477 -4.499865 -2.409773 0.069326 -0.232202 -3.475575 3.392273 -4.156618 0.433465 1.302556 -4.327202 -3.801720 1.588587 -0.298444 0.994946 0.162204 -0.312459 -6.041352 0.669583 -2.416217 1.655411 5.073284 0.563545 -4.946593 1.716467 1.072504 -0.363042 -0.347627 0.514467 -0.491214 5.198195 -6.053643 -1.108295 0.658978 1.467943 -3.537738 -8.231118 0.707395 -5.594714 -3.516200 5.551579 -6.467258 -0.487270 -4.446697 -0.373002 -5.788912 -1.657960 2.055441 8.507556 2.974528 -4.631539 1.803403 -0.378118 4.767374 0.121615 0.837647 0.112414 3.648090 +PE-benchmarks/vertex-cover-problem.cpp__main = -0.522569 -0.774997 0.215531 0.076632 1.481211 -0.963945 0.123247 1.387210 1.061564 0.048040 -0.565386 -0.696753 -0.577493 -0.223954 0.468660 -0.146049 0.699083 0.877918 -0.972186 -1.049387 0.601423 1.525516 -0.310567 -0.315357 0.173408 0.123685 -0.589736 0.013599 -0.773768 0.195893 -1.002908 1.139374 1.424195 0.022769 1.027326 0.711286 1.483550 0.945634 -0.505565 1.468224 0.879772 0.474143 -0.113419 -0.986758 0.423889 -0.429052 -0.590963 -0.001908 0.398964 -0.560362 1.648235 0.359335 0.322480 0.512955 0.356455 0.265307 -0.494554 0.407089 0.336696 0.922963 -1.657699 0.657620 -0.535961 1.367155 -0.565751 1.644830 -0.384041 -1.586389 -1.423154 0.616638 1.368393 -1.292951 -1.051061 -0.376015 -0.233392 0.160924 0.800662 0.693731 2.458149 0.164213 -1.399623 0.282671 -0.484741 0.315655 -0.376586 -0.446243 -0.998915 -0.596682 0.423400 -0.212766 -0.468966 0.813574 -1.088938 1.182951 -1.704139 -1.857655 -0.304553 0.202471 0.040638 -1.396016 0.348152 -0.086202 0.070051 0.985600 -0.198862 0.527261 0.623140 0.668359 0.114964 0.292605 -0.426306 0.096504 0.051466 -0.158771 0.972457 0.406891 -0.930281 1.109340 -0.697050 -0.111366 -0.048601 -0.007725 0.846126 -0.041544 0.106725 -0.347684 0.444134 0.081764 -0.785169 0.386446 0.467295 -0.214249 -1.000482 -0.496280 1.124525 0.476297 -0.379983 0.078409 0.527024 -0.313909 -0.110177 -0.507084 -1.132752 -1.403341 -0.198842 -0.383406 -0.431613 -0.586305 -0.401105 0.490598 -0.016633 0.527504 0.493269 0.509904 -0.613426 -1.274127 -1.285586 0.305985 0.620077 -0.493219 -0.654958 0.187849 -0.464131 0.607999 0.660391 0.441557 -0.419688 0.606513 1.066005 1.028630 -1.261351 0.091947 0.868049 0.998402 0.394188 -0.858576 -1.497823 -1.381589 -0.155203 1.378717 0.901563 -1.328653 -0.543174 0.745796 0.765127 -0.942460 0.008260 -0.770723 -0.694422 -0.868634 0.696381 0.678492 -1.218050 0.062224 1.602695 -0.572250 0.143088 0.006975 -0.543920 0.017476 -1.560573 -0.263349 1.818506 0.112415 0.374431 0.089374 -0.698695 0.739862 -1.001005 0.184283 0.426950 0.553197 -0.316190 -0.254848 0.115854 1.417850 -0.444236 0.437612 0.369490 0.158817 0.341657 -1.235032 0.481512 -1.349786 -0.584596 -0.571763 -0.398947 0.449629 -0.756001 -1.158541 0.541505 -0.560612 0.490379 1.697695 -0.933492 -1.039436 0.435705 -0.154059 0.516982 -0.023635 -0.467950 0.207886 0.565124 -0.896652 -0.503456 -0.448278 0.901857 -1.027294 0.881714 -0.581907 0.259120 -0.073319 -0.791944 -0.149355 0.445468 0.541077 0.057770 -0.206305 -0.372313 -0.572295 0.085035 -0.486290 0.433938 0.728400 -0.457347 -0.800403 0.204851 0.019966 -1.950104 -0.390062 0.371141 -0.125069 1.306208 -0.525354 0.016447 0.827195 0.169630 -1.198959 -0.541559 -0.672485 -0.716639 -0.197495 -0.349072 -0.332701 -1.213360 -0.161572 0.810244 -0.251450 -0.665003 0.184374 0.630775 0.631463 0.187279 0.667655 0.554144 0.275764 0.192400 -0.419598 0.171502 0.516758 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -6.168792 3.505864 3.375541 -3.267364 9.735964 -0.099657 2.308399 2.775456 -0.789101 5.843242 -9.621273 -4.613782 -3.405977 -7.493230 0.059169 -4.392467 1.994093 1.213930 -2.837116 1.410231 3.874440 -2.941228 -0.023197 -4.683466 -0.758643 -6.605989 -4.327272 0.580416 4.530115 -2.399753 0.440633 1.087289 11.841851 1.354357 9.414156 6.681920 2.679428 8.836318 -0.096304 0.428168 0.075227 6.949861 -4.536973 -7.220301 0.315214 -5.799693 -5.260963 -4.270789 2.532191 -4.000601 0.922627 5.969842 -0.425738 1.291229 -4.866924 3.253396 7.195650 1.094497 10.183161 2.912918 -4.437663 2.659752 -6.026648 4.558382 -4.245459 4.009753 -1.567401 -6.996726 -0.613148 0.540704 2.031463 -5.236002 -5.211805 4.119595 2.853692 -5.374025 3.603288 -1.572730 -5.651437 -8.564176 -6.866024 2.012325 0.261270 6.906318 -0.817238 -0.644908 1.086739 1.014941 0.784725 -9.119822 -1.750409 7.511435 -5.141293 -0.720273 -3.127374 4.454633 -0.445830 3.023880 -5.328221 -4.810270 2.140301 -0.372054 1.035685 -2.139244 0.641044 -5.763446 2.722854 1.643685 -0.723070 3.405595 4.616094 3.781765 6.280929 5.957339 -7.323305 1.775269 -7.136013 2.949538 -2.515142 -0.528840 0.213098 2.454942 0.954660 1.427978 6.973889 -9.068790 4.353409 3.486193 -4.283893 -6.331389 0.267425 -6.550905 -7.494028 -1.814709 3.926890 2.887819 1.186281 -4.136647 0.369097 -2.303536 -1.439559 -2.283272 -0.077179 5.926742 -6.737393 -1.378754 -1.041108 -1.844198 -3.819124 6.090477 3.566583 3.305176 9.330191 4.527864 -3.992037 0.288314 -7.688112 0.893815 11.498878 1.078647 -7.996148 5.428355 -4.241647 0.865123 4.517966 4.033251 4.315319 -0.499593 -5.629545 -3.079508 0.285996 -1.881455 9.467597 2.957967 2.791373 -5.263764 8.510301 -0.576027 -4.875733 11.441912 5.199318 -8.409394 1.835107 4.736876 -5.746468 -2.690674 4.319603 -5.211692 -2.116758 -5.505229 1.025290 2.276023 -5.011352 -2.175889 1.854589 -8.838967 9.469924 0.697762 1.236016 1.943697 -7.360677 -9.021581 11.219537 -0.378980 -0.736896 -2.779418 -3.266621 -2.732630 -9.639991 1.586098 0.372014 -3.983726 -2.873729 -7.200156 2.820559 6.754053 -2.923079 4.973909 -6.074173 -2.693230 3.208104 0.126979 4.405284 -4.758363 -5.101546 -0.812434 -1.763074 4.013317 -4.552708 5.404435 10.168850 -3.637432 5.657872 0.857936 -5.116189 0.659866 4.815455 -6.998517 8.471071 -2.504018 5.073302 -0.007921 5.938184 -5.238476 -2.643806 0.209640 -0.598599 -3.531704 4.535531 -5.384802 0.403040 1.057704 -6.501960 -3.676887 2.845811 -0.250383 1.242919 -0.005150 0.493109 -7.357483 0.561491 -2.649617 1.468549 6.239456 0.745222 -6.528671 1.625967 1.399435 -1.212931 -0.801884 0.791154 -0.363685 6.798993 -7.483695 -0.709015 1.025709 0.487294 -5.889477 -9.333206 0.186492 -7.636155 -5.057792 6.145803 -7.942391 -0.997652 -5.621457 -0.243772 -6.146868 -2.695185 2.599890 10.520839 4.544943 -5.654728 2.474506 -0.417543 6.514380 0.527464 0.366037 0.799763 4.590221 +PE-benchmarks/largest-independent-set-problem.cpp__main = -2.625397 3.658287 2.644578 -3.002072 5.523192 -0.934361 1.750306 2.797271 0.108210 1.347361 -5.743400 0.300899 0.262226 -3.629945 0.911051 -2.224531 -0.229249 2.609860 -1.304083 0.799740 2.188135 0.145654 -0.778098 -3.814795 -0.313539 -2.801002 -1.428713 -0.196995 -0.810944 1.754814 0.780848 1.346335 3.884515 0.813003 3.231887 3.639935 2.071576 4.649022 -0.138366 3.668882 2.188176 1.991584 -0.911450 -5.182829 1.329039 -2.369939 -2.402609 -3.000250 0.154278 -4.871305 3.525961 2.318331 1.059049 -0.965905 -2.124454 1.186983 3.654777 0.483098 2.668430 2.940873 -3.527155 1.691930 -2.470608 1.614366 -1.996361 3.933567 1.955747 -3.959295 -1.267351 2.839172 3.755362 -2.860673 -3.488158 -0.768268 -0.119440 -1.462733 1.958662 -0.887509 -1.680687 -0.933612 -1.186808 1.524956 0.129999 3.024973 -0.340514 -0.857986 -2.682218 -0.795265 1.778100 -1.749937 -3.486876 4.164165 -1.151903 1.036578 -4.182956 0.852567 1.904558 -0.218703 -0.898202 -2.805222 2.099744 1.616756 0.210130 0.783078 -3.790483 -2.985464 2.473453 3.580557 -2.485746 2.361539 -1.843074 2.751598 0.855959 0.393041 -1.485873 3.466018 -4.798899 1.600327 -1.087623 0.319544 0.050126 -1.060386 0.943995 0.695620 0.477633 -1.936772 4.405318 2.263510 -2.344067 -1.637837 1.964390 -1.205055 -3.356426 -0.836836 1.428353 2.668756 0.035431 0.647223 -0.351366 -2.091078 -0.010017 -5.034570 -1.540850 2.724200 -2.824759 -0.580744 -0.687053 -0.450716 -2.013464 1.523986 0.686673 -0.197001 3.838372 1.754103 -0.428555 -0.775751 -2.734993 0.769310 5.674230 3.009823 -2.979524 1.245269 -0.289429 0.762716 1.538733 0.142586 -0.721444 2.535417 -3.494086 -2.241532 -1.952215 -3.736584 3.429706 4.320715 1.098694 -5.019132 3.641208 -1.781623 -1.482989 5.671117 3.789843 -3.733237 -0.952722 3.981433 -2.060030 -2.896777 0.960904 -1.281748 -1.903429 -0.480261 0.742301 -0.167796 -3.007503 -4.005660 -0.155908 -3.562432 3.067792 0.877647 0.839211 -2.021844 -2.662846 -2.887145 5.972896 0.295116 -1.413317 0.398599 -0.245083 -0.237965 -4.389233 0.704913 2.851663 -1.467901 -2.497811 -1.832833 1.089042 3.261151 -4.728805 -0.399273 -0.004439 -2.464233 1.374521 -1.354345 1.425863 -6.238954 -2.306510 -1.899903 0.937468 1.943873 -0.590659 1.440910 5.481425 -1.297464 2.160248 4.499795 -1.126885 -0.564863 4.839793 -1.091506 3.273083 -1.603783 2.863593 0.757828 2.875640 -2.628921 -1.884533 -0.493911 -0.386974 -1.500749 3.614338 -3.333170 0.744760 1.064314 -2.324772 -0.616860 4.072833 1.878468 0.997022 -1.292642 1.173473 -1.742387 -0.077283 -1.875501 -0.313074 2.928900 -1.096193 -4.601925 -1.092080 2.361117 -3.592530 -1.709487 1.202780 0.838978 4.149388 -2.569954 3.165569 0.877950 -1.453120 -5.628844 -3.192983 1.562638 -3.774563 -3.261007 0.143390 -3.522791 -2.510697 -1.853510 2.449671 -3.984023 -2.572861 0.693410 2.978381 1.504442 0.064407 1.657453 -0.054800 3.099199 0.735039 0.161314 -0.008196 3.399976 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -5.110466 6.507178 6.425856 -4.168664 8.897849 -0.444344 4.561728 3.694383 -3.141686 3.810773 -9.873433 -1.104251 -1.355585 -6.638856 0.844968 -6.022012 0.618156 1.894688 -1.369572 3.110635 3.551848 -2.838271 -1.013051 -5.897690 -0.556891 -6.530231 -2.528595 -0.246452 3.108981 2.150784 2.301710 1.325038 8.411961 1.576162 7.478715 6.642878 1.468696 7.533629 0.229790 0.338924 0.838293 5.179196 -3.125316 -7.914235 0.182237 -4.619715 -4.438589 -4.996986 0.925041 -6.507955 -0.556098 4.892498 0.416450 -0.134085 -4.580781 2.881954 7.327368 1.092412 7.043756 3.658661 -4.028401 1.310087 -4.875932 1.739704 -2.470761 3.639900 0.183722 -5.845062 0.547844 2.363263 0.905088 -3.141981 -3.195222 1.770231 1.848049 -4.081353 3.371058 -1.755940 -8.511021 -4.526625 -3.034063 2.046139 0.939193 6.478530 -0.431314 -1.027063 -0.915866 0.020747 1.947257 -6.154484 -3.691645 7.764091 -2.839841 -2.154582 -3.625046 5.210729 3.183751 1.606535 -3.009878 -4.399299 3.072031 1.022726 0.456184 -3.317696 -3.309069 -6.643137 2.196759 3.771362 -2.207678 5.850266 -0.434321 5.422190 4.133206 3.438843 -6.625588 4.804267 -7.213007 2.705425 -3.601255 -0.201348 0.297519 0.332212 0.818274 2.333147 3.649134 -6.247488 5.656884 4.765533 -2.678074 -5.068725 1.791489 -4.923842 -6.197464 -1.639154 2.556612 3.910035 1.181318 -1.709923 -0.504841 -2.948600 1.077046 -4.970990 -0.729072 7.152699 -7.050295 -1.138350 -0.826564 -0.188465 -3.603943 4.234947 2.271177 1.131342 7.548529 3.516670 -2.503307 0.990913 -5.429971 0.834759 10.651950 2.606752 -5.856772 3.816154 -2.150035 0.100654 2.886750 1.398683 2.067263 2.670841 -8.243113 -5.525693 -0.597828 -4.809180 7.276821 5.745998 2.010221 -7.091147 10.067388 -3.649501 -4.582109 8.462541 5.909588 -6.887900 0.307792 5.583505 -7.367286 -3.541286 2.952699 -4.161522 -1.687599 -3.044162 -0.007430 0.710729 -4.686632 -4.661752 -0.400695 -7.390090 7.256894 1.523843 2.541824 -1.949934 -3.717985 -7.131797 10.352567 0.732900 -1.823243 -1.436777 -1.322959 -3.951551 -8.141852 1.143236 1.904398 -3.610636 -3.925820 -5.164547 1.611051 4.384988 -5.682435 2.089755 -3.366920 -3.189606 2.596086 0.834195 3.207074 -6.426829 -4.778202 -2.111029 -0.874445 3.484962 -2.629994 5.966234 9.634483 -2.153759 5.417608 2.083138 -4.170142 0.992427 6.414772 -4.790325 6.741619 -2.583679 7.072859 1.054059 5.456519 -5.058787 -3.197350 -0.052257 -3.576729 -2.803170 5.576403 -5.508587 1.074972 1.816820 -4.686614 -2.594999 4.767977 0.946712 1.230651 -1.329958 2.628387 -6.030228 0.130953 -3.827912 0.327889 5.419240 -0.959900 -7.252959 -0.436742 3.032311 -2.446270 -3.551188 1.245321 0.520203 5.718716 -5.712933 2.278222 0.710468 -0.979062 -7.228048 -7.710273 2.838393 -7.243996 -6.333826 3.057212 -6.592077 -0.928316 -4.520244 1.152753 -8.329192 -5.007791 2.439346 7.778823 1.871482 -2.938857 1.870388 -0.744178 5.818568 0.794738 1.742142 -0.393020 4.676572 +PE-benchmarks/permutations-of-a-given-string.cpp__main = -2.237554 0.100416 -1.321219 -2.053109 5.629001 -0.904487 -0.273303 4.573820 0.631417 1.696593 -3.849455 -1.103424 -0.723595 -4.071985 0.506458 0.329342 2.024098 1.165413 -2.412991 -0.347840 1.555241 0.746107 0.613079 -1.896760 -0.497499 -1.270924 -1.180534 0.588771 0.236615 -0.636311 -1.271450 1.103321 5.527799 0.494919 3.734287 1.956251 3.248756 3.332749 1.230056 0.205899 1.632245 1.822871 -1.068316 -3.376579 0.244668 -2.417473 -3.214851 -0.764098 1.190014 -2.864984 1.638317 2.461331 0.917082 0.393088 -1.827475 1.131343 2.076209 -1.030570 3.589280 1.978780 -4.150425 -1.139803 -1.346872 2.717448 -2.062822 2.461064 -0.314029 -2.929493 -2.282467 2.529555 1.249661 -3.415053 -3.014326 -0.020161 1.072866 -1.750628 2.613297 0.314486 3.581717 -2.943691 -2.299351 1.792817 -1.235753 2.609441 -0.060829 0.102651 -0.305818 -0.708423 0.499168 -3.241279 -0.499150 2.298312 -3.003413 0.491708 -2.994806 0.705525 -1.392130 0.337272 -2.313514 -3.991786 1.167484 0.074918 0.179056 -0.772924 0.940650 -1.770334 1.672433 1.677444 0.172825 2.511105 1.444980 1.244078 1.633228 1.842725 -1.169367 0.552892 -4.484603 1.558565 -1.822882 -0.231590 -1.151980 -0.016268 3.162738 1.272911 1.671259 -3.727936 3.264698 2.565079 -2.153123 -1.707584 0.944457 -1.589437 -3.212579 -0.034352 2.358933 0.261896 0.749553 -0.711813 1.458351 -1.216758 -2.190544 -1.207330 -1.719778 1.052785 -3.925782 -0.425150 -0.084554 -0.727308 -1.159703 2.332236 1.312381 0.405622 4.399987 0.730320 -2.714389 0.956274 -3.561943 1.530820 5.499734 0.914895 -3.124637 2.332202 -2.626839 0.941641 1.306041 1.806245 0.817575 -0.116703 -1.256375 0.290931 0.535469 -0.330984 4.056983 0.029988 1.936402 -4.086757 1.163492 -1.169828 0.478874 6.056338 2.305246 -4.448633 0.608397 3.355926 -0.092406 -0.429738 1.088012 -2.855979 -2.025243 -2.492695 1.509389 1.597525 -3.239825 -1.621362 1.346312 -3.124520 2.830717 0.420409 -1.572282 -0.043596 -3.831190 0.200478 6.237184 0.307212 0.212119 0.130353 -2.124517 -0.052337 -4.778877 0.207320 1.403555 -1.017157 0.518916 -2.008465 -0.252677 3.872650 -1.562686 1.180400 -4.729757 0.697116 1.988931 -0.983161 1.202019 -2.946761 -1.943281 -0.121271 -1.191403 1.392135 -3.595477 0.572352 2.522545 -1.912143 3.300916 1.192191 -1.341157 -0.131547 1.746514 -1.900148 4.217743 -0.255414 3.490526 0.737330 3.033222 -2.594442 -0.553457 -1.793701 -0.296112 -2.485295 2.531837 -3.825922 -0.205035 1.585380 -0.648151 -3.275032 1.611670 1.358144 0.232787 -0.479400 -1.312834 -1.484312 -0.191963 -1.371615 2.120786 2.293411 -1.394974 -3.402153 0.141368 2.779596 -2.146136 0.160207 0.990114 0.590573 4.436406 -3.123444 0.781637 1.458492 1.591000 -3.813532 -3.868735 0.754888 -1.623149 -0.184589 0.951554 -4.255319 -3.140245 -1.642963 1.622162 -2.578566 0.328555 1.385203 4.283167 1.336212 -2.299409 1.352637 0.573009 1.115152 0.182872 0.751583 0.756655 1.428830 +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.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/reservoir-sampling.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -3.307573 1.831997 1.811200 -1.628446 6.618633 0.586374 1.632231 3.134120 -2.080765 4.163629 -5.009413 -1.515650 -1.730579 -3.925473 -0.063558 -1.867451 1.109109 0.038042 -1.689730 0.631687 1.950627 -1.617730 0.201010 -2.119052 -0.805173 -4.107342 -2.124640 0.532864 3.643439 -1.092360 -0.452791 0.209644 6.795961 0.067260 5.370783 3.583657 2.191123 4.246251 0.320896 -1.117256 -0.148543 3.745872 -2.919711 -3.673328 -0.379209 -3.522999 -3.520072 -1.857362 1.500142 -2.465814 -0.279617 3.489909 -0.513586 0.966070 -2.259168 2.778628 3.400443 -0.707121 6.193637 1.260163 -3.212242 -0.291057 -3.484356 4.100089 -1.794623 2.060378 -1.861954 -4.347011 -0.311648 0.217900 -0.012475 -2.872334 -1.986712 3.164365 1.764768 -3.406392 1.911702 -1.111921 -2.678025 -5.098605 -3.744206 1.305574 -0.203175 3.769883 -0.025082 -0.155463 0.672776 0.912885 -0.074819 -6.065852 -0.385197 4.849433 -3.576357 -0.657794 -2.599908 2.201200 -0.455239 2.115886 -2.992529 -2.864135 1.065278 0.023526 0.616955 -3.602449 1.701319 -3.849728 0.849220 0.611361 0.705398 2.460192 2.225482 1.846293 3.872613 4.004271 -4.069217 0.970124 -3.789316 1.933292 -1.631533 -0.207643 -0.675411 1.750771 1.253421 1.373957 4.797938 -5.747831 1.941653 1.621870 -2.453232 -4.106647 -0.250804 -4.093165 -4.112277 -0.751527 2.145875 1.120693 0.847003 -2.940678 0.722856 -1.038767 -1.757684 -1.415713 0.380323 3.412340 -5.217539 -0.693293 -0.403216 -0.487490 -2.157920 4.258883 2.789527 2.449687 5.549113 2.748880 -1.905993 1.414220 -4.885652 0.700015 6.546485 0.922777 -4.751608 3.674758 -3.924901 0.226519 2.418399 2.496168 2.756990 0.245721 -3.648849 -1.823034 1.391409 -0.133015 5.918216 1.561604 1.824070 -2.758697 4.479913 -1.724823 -2.855775 5.925794 3.302815 -5.489014 1.764972 2.426089 -2.757597 -0.716104 2.772266 -4.218522 -1.442723 -3.350900 0.063354 2.109809 -2.781107 -0.590078 1.520650 -5.008147 6.012972 0.332662 0.696345 1.353555 -3.941995 -4.176082 6.182733 0.062935 -0.176563 -1.924757 -2.119431 -3.058760 -5.520742 0.669269 0.212968 -2.357858 -1.757469 -4.666427 0.885825 3.658671 -0.853097 3.470536 -5.045339 -0.879536 2.053064 0.406792 2.802230 -2.679967 -2.708380 -0.962360 -1.793140 2.422779 -3.772801 3.565623 5.489688 -1.926503 4.314974 -0.347771 -3.155099 0.219729 2.053457 -4.439463 5.158340 -0.823352 3.221594 0.138597 3.391823 -3.245265 -0.950579 -0.487622 -0.524118 -1.889125 2.524565 -3.191459 -0.083186 0.552501 -4.101482 -2.642813 0.916240 -0.239332 0.322220 0.194469 -0.295900 -4.433430 -0.441877 -2.845632 1.116005 3.405361 -0.784438 -3.525111 1.519462 0.330808 -0.766817 -0.413402 0.331014 0.179509 3.442499 -4.605103 -1.135298 0.674480 0.900925 -3.978461 -5.648840 -0.382267 -3.869241 -3.247291 3.279177 -4.741414 -0.598097 -3.426367 -0.805839 -4.984882 -2.162768 1.802474 6.895858 1.732899 -3.460417 1.390506 -0.293428 3.582046 0.237212 1.144486 0.547015 1.733233 +PE-benchmarks/mergeSort_LinkedList.cpp__main = -0.690127 -0.495040 -0.020121 -0.200600 2.442920 -0.819505 0.115918 1.730548 0.904015 0.419128 -1.007026 -0.535410 -0.312078 -0.556831 0.529783 0.153446 0.670536 0.946336 -1.109623 -1.140581 0.526150 1.519193 -0.166150 -0.395174 -0.039175 -0.187394 -0.778230 0.228411 -0.666610 0.076396 -1.231658 1.140620 1.758343 -0.180731 1.198881 0.845215 1.737052 1.051400 -0.282092 1.316910 1.325349 0.314398 -0.215881 -1.214689 0.378762 -0.630237 -1.204673 -0.178453 0.460464 -0.975910 1.913217 0.580016 0.393915 0.349637 0.138716 0.563321 -0.266411 0.038474 0.726329 1.014709 -2.190780 0.462666 -0.647814 1.985719 -0.685816 1.849614 -0.542843 -2.173233 -1.689557 1.194029 1.585635 -1.647868 -1.424669 -0.335315 -0.130829 -0.099574 0.857035 0.594007 2.791770 -0.241755 -1.400390 0.652811 -0.668735 0.562207 -0.163075 -0.351675 -1.146535 -0.625939 0.375084 -0.549853 -0.628944 1.241710 -1.258523 1.324980 -2.033868 -1.798260 -0.216835 0.041456 -0.069704 -1.770219 0.426482 0.018454 0.060171 0.773242 0.078249 0.118106 0.672015 0.958492 0.218116 0.473303 -0.414866 0.136552 0.221365 0.014396 0.815761 0.296595 -1.302561 1.248150 -0.733089 -0.188598 -0.438948 -0.060074 1.131029 0.195882 0.389770 -0.750535 0.858487 0.150600 -1.056809 0.138924 0.424677 -0.134274 -1.199896 -0.273679 1.111797 0.389640 -0.262732 0.155310 0.589347 -0.412179 -0.562269 -0.666993 -1.136061 -0.974616 -0.698270 -0.274215 -0.286926 -0.508453 -0.539819 0.825736 0.406666 0.670234 1.018010 0.618935 -0.587426 -1.008046 -1.777029 0.620956 1.262457 -0.143752 -0.944788 0.542008 -0.890429 0.611628 0.713145 0.617218 -0.512298 0.630491 0.792716 0.944964 -1.118380 0.137965 1.290493 1.107086 0.534326 -1.220036 -1.338896 -1.463264 0.056160 1.899893 1.113083 -1.823021 -0.305866 1.282658 0.763825 -0.848073 0.312896 -1.257560 -1.104402 -0.949430 0.715625 0.924657 -1.443309 -0.167466 1.579905 -0.776519 0.559243 0.045970 -0.857522 -0.002583 -1.663325 -0.138846 2.323810 0.182991 0.514045 0.220188 -0.842806 0.635393 -1.414077 0.027959 0.862778 0.219182 -0.268903 -0.523092 -0.042265 1.787477 -0.653477 0.634555 -0.194066 0.379754 0.606466 -1.156746 0.470701 -1.757331 -0.554300 -0.609456 -0.520394 0.316846 -1.219641 -0.926798 0.595294 -0.707246 0.904154 1.811502 -0.929004 -0.973752 0.504692 -0.206648 0.987880 0.096964 -0.009570 0.442652 0.831785 -0.970414 -0.377174 -0.730281 0.778774 -1.268916 1.204968 -1.129879 0.101877 0.321672 -0.760770 -0.713188 0.602024 0.916658 0.165722 -0.332547 -0.668861 -0.561971 -0.059089 -0.686672 0.683070 0.726977 -0.874574 -1.091108 0.335625 0.449853 -2.233488 -0.422943 0.465440 0.157435 1.637326 -0.854559 0.279051 0.960247 0.499250 -1.929692 -0.853024 -0.582444 -0.847191 -0.309850 -0.390021 -1.001112 -1.754378 -0.323152 0.926258 -0.580965 -0.694362 0.451277 1.201320 0.563084 0.001727 0.788043 0.513104 0.196142 0.097344 -0.249233 0.299622 0.524995 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -1.010104 0.901114 0.049403 -0.838397 2.669343 -0.302117 0.435495 1.566527 -0.647348 0.816270 -1.877408 0.420373 -0.010553 -1.770978 0.458600 0.136505 0.380942 0.712507 -0.448244 0.004213 0.755361 -0.241917 -0.071987 -1.154033 -0.066214 -1.397294 -0.236546 0.063603 0.474326 0.420383 -0.489041 0.563888 1.649456 0.077872 1.025440 1.160611 1.167353 1.409266 0.385650 -0.032031 0.678162 0.748236 -0.413643 -1.816690 0.444651 -0.971797 -1.183110 -0.729131 0.356163 -1.529629 0.659470 1.041554 0.234733 -0.260076 -0.979475 0.694492 1.495439 -0.403108 1.320418 0.967201 -1.286378 -0.656963 -0.665919 1.301608 -0.783331 0.871756 0.360878 -1.545529 -0.521050 1.191442 0.552471 -0.915711 -1.011542 -0.063944 0.234366 -0.768655 0.760188 -0.077368 0.068879 -0.924434 -0.827324 0.536158 -0.456349 1.435664 0.032998 -0.198098 -0.490614 -0.366365 0.645591 -1.047962 -0.910797 1.449170 -0.689887 0.364731 -1.498431 0.560221 0.569286 -0.104254 -0.484837 -1.347187 0.579190 0.385312 0.172751 -0.554089 -0.415285 -1.173192 0.717097 0.656556 -0.179149 1.269702 -0.147717 0.515762 0.149896 0.413162 -0.598002 0.488153 -1.802782 0.653190 -0.228116 0.100653 -0.385074 -0.248597 1.032668 0.158233 0.571182 -1.349915 1.522973 0.892266 -0.553198 -0.838610 0.555792 -0.499899 -1.200787 -0.121824 0.811364 0.394314 0.077096 0.136037 0.379094 -0.456284 -1.047526 -1.162021 -0.746336 1.476224 -1.979119 -0.073200 -0.272546 -0.275362 -0.596220 0.591093 0.416305 0.352792 1.520432 0.817729 -0.525383 0.935722 -1.428700 0.756938 2.522970 1.247362 -1.255673 0.649272 -0.836519 0.348413 0.603303 0.231963 0.138587 0.655814 -1.085927 -0.353038 0.188658 -0.780414 1.507176 1.015577 0.762382 -1.885338 1.091060 -0.464271 -0.239341 2.142158 1.144590 -1.899990 0.764664 1.661047 -0.719015 -0.274482 0.328393 -1.009536 -0.742226 -0.823805 0.468225 0.567908 -1.507998 -1.102276 -0.082335 -1.282860 1.317402 0.343875 0.182195 -0.187440 -0.973733 -0.249896 2.280844 0.199505 -0.135552 -0.197275 -0.575518 -1.039551 -1.767163 0.172425 0.701210 -0.844808 -0.601498 -1.035661 -0.363789 1.719836 -1.138187 0.154319 -1.678177 0.127302 0.666394 0.236202 0.470970 -1.806784 -0.878079 -0.233522 -0.111186 0.544679 -0.936400 0.593203 1.444790 -0.854089 1.190575 0.745277 -0.247152 0.196068 1.250557 -0.553240 1.368918 -0.142164 1.686858 0.411472 1.290820 -1.152650 -0.300203 -0.485931 -0.313703 -0.773756 1.288300 -1.587581 0.018934 1.039381 -0.627123 -1.175040 1.099524 0.746677 0.826729 -0.436299 -0.280311 -0.430924 -0.085135 -0.813041 0.411606 1.046079 -0.780233 -1.483830 -0.243972 1.013109 -1.163541 -0.550796 0.612217 0.361441 1.631511 -1.207228 0.917578 0.335893 0.148747 -1.975940 -1.649524 0.495769 -0.858112 -1.028621 0.659118 -2.131681 -0.941278 -0.744110 0.786007 -2.051621 -0.458231 0.056444 1.498803 0.007129 -0.012165 0.865374 0.169718 0.619212 -0.114621 0.458682 0.078374 0.889810 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.613929 2.879873 1.486366 -2.236146 5.955139 -0.770197 1.906401 1.965357 -1.474995 1.835734 -5.242162 -0.241566 -0.278384 -4.670974 1.002829 -1.817335 1.152056 1.288699 -0.711710 1.069617 1.627491 -1.491272 -0.342185 -3.111688 -0.159805 -4.382839 -1.127699 0.246169 1.774768 0.442854 0.328315 1.327257 4.788821 0.384357 3.301739 3.359641 1.872323 3.503630 0.832486 -1.391343 1.419581 2.134705 -1.224105 -4.220031 0.086548 -2.064487 -3.253881 -2.112037 0.724979 -3.115616 -0.985986 2.733993 0.412473 -0.396816 -3.131108 1.717735 4.536650 -0.242279 3.607627 2.162118 -2.076835 -0.483394 -1.880764 2.203163 -2.028101 1.195185 -0.184717 -3.443800 -0.436699 2.743846 -0.023165 -1.548187 -2.449869 0.199623 1.477444 -2.298995 1.789081 -0.338661 -2.465785 -2.887097 -1.791105 1.441072 -0.489301 3.828527 0.279255 -0.419226 0.238899 -0.612602 1.498651 -2.952936 -2.129965 3.620520 -1.634766 -0.924855 -1.788159 2.922642 2.269062 -0.114231 -1.442479 -3.675149 1.432238 -0.165624 0.249249 -1.224411 -0.773465 -3.323235 0.710367 1.607885 -0.578752 4.005373 -0.056051 2.259506 1.388476 1.219314 -3.311311 0.642533 -4.191345 1.531468 -1.801564 -0.380390 -0.579061 -0.259535 1.704909 1.405493 1.774676 -3.742991 3.637831 2.864668 -0.967448 -2.132031 1.003674 -1.703003 -3.158081 -0.392015 1.667895 1.334419 0.872254 -0.016992 0.467616 -1.102890 -0.482495 -1.677511 -1.191789 4.337310 -4.735877 -0.179455 -0.339239 -0.346316 -1.702354 1.702623 1.216847 0.750749 4.079986 1.859039 -2.050513 2.655544 -3.489437 1.443479 6.623574 1.630380 -3.022729 2.094705 -1.925293 0.223550 1.346925 0.997614 0.767860 0.673288 -3.925336 -2.042434 0.144359 -2.350938 3.810028 1.967410 1.061482 -4.751248 4.589152 -0.802329 -1.251740 5.272475 2.421962 -4.403403 1.816344 4.285138 -4.005128 -1.312650 1.298722 -2.800027 -1.419950 -2.582482 0.922530 0.934027 -3.216914 -2.309011 -0.607332 -3.523671 3.214999 1.040987 0.027721 -0.626237 -1.540870 -3.068275 6.213992 0.314210 -0.128896 -0.767333 -1.358507 -1.855615 -4.746693 0.208013 0.834873 -2.604681 -1.013037 -2.768204 -0.270255 3.780401 -3.088128 1.076084 -4.293729 0.071673 1.670847 1.888427 0.882665 -3.133805 -2.413676 -0.023350 -0.689185 0.513493 -2.428822 2.453618 3.798695 -1.842871 2.755811 -0.181695 -2.616730 1.246754 3.003472 -2.113132 3.775805 -0.615164 4.800467 1.291517 3.223390 -2.919778 -1.223209 -0.669925 -2.515488 -2.373715 2.967533 -4.120276 0.224568 2.774215 -0.994310 -3.337789 2.668449 1.478326 1.677850 -1.137794 0.005572 -2.105061 0.415985 -1.198714 1.201835 2.481697 -0.904423 -3.618048 -0.311095 3.192568 -1.692467 -2.187497 1.106865 0.537777 3.622036 -3.182375 2.068947 0.611899 0.809079 -4.125327 -4.913455 2.163073 -3.274912 -2.437909 1.782970 -5.139652 -1.557477 -2.124644 1.342697 -4.278014 -1.672653 1.281144 4.204156 0.144203 -1.344748 1.435845 -0.145706 1.600354 -0.416159 1.301409 -0.060176 2.066690 +PE-benchmarks/subset-sum-problem.cpp__main = -0.991406 -0.075754 0.047819 -0.337794 1.932253 -0.004106 -0.040912 0.976307 0.285757 0.815129 -1.305457 -1.035198 -0.658041 -1.050997 0.183213 -0.037171 0.454691 0.367737 -0.859742 -0.328371 0.765674 0.098991 0.033515 -0.618146 0.002109 -0.490595 -0.801760 0.110265 0.597750 -0.198914 -0.911126 0.315332 1.862702 0.072453 1.454181 0.857627 1.060387 1.332181 -0.306860 0.088253 0.197542 1.184492 -0.745004 -1.334166 0.378305 -1.200601 -0.932183 -0.544808 0.625798 -0.598175 0.729418 0.882116 0.017220 0.248059 -0.337898 0.425116 0.718600 0.375130 1.525444 0.659859 -1.019333 0.319180 -1.006042 1.001400 -0.731551 1.308568 -0.462149 -1.562541 -0.884096 0.175684 0.756059 -1.103069 -1.031902 0.500607 0.382804 -0.525373 0.877678 -0.003747 0.943953 -1.243790 -1.530933 0.226467 -0.693526 1.062966 -0.382831 -0.240343 -0.143364 -0.085907 0.207354 -1.307744 -0.335838 1.107414 -0.991195 0.504899 -0.831390 -0.294894 -0.366650 0.566202 -0.855746 -0.920981 0.337458 0.161835 0.194047 0.152791 0.672491 -0.425985 0.684931 0.411506 0.286064 0.449110 0.687897 0.171162 0.760677 0.842609 -0.464378 0.129975 -0.972554 0.544702 -0.667421 0.144151 -0.103812 0.545394 0.790065 -0.064103 0.990208 -1.332419 0.704590 0.446124 -0.836159 -0.553466 0.311437 -0.991979 -1.347628 -0.267024 0.891031 0.334199 -0.176261 -0.626815 0.386360 -0.375540 -0.813726 -0.035188 -0.469732 -0.022592 -1.024846 -0.325535 -0.334428 -0.618062 -0.422225 0.985808 0.509387 0.673360 1.380607 0.866096 -0.855471 -0.466197 -1.405145 0.543038 1.839824 -0.490842 -1.354761 0.614904 -0.798645 0.490166 0.927355 0.630178 0.514632 0.368424 0.084871 0.311338 -0.602288 0.038650 1.572841 0.775857 0.767314 -0.982843 0.257578 -0.563345 -0.514458 1.911536 0.774892 -1.565190 0.125044 0.683444 -0.404358 -0.311924 0.330941 -0.831203 -0.389111 -1.234979 0.489681 0.714345 -1.158530 -0.402660 0.782119 -1.337251 1.390091 0.034537 -0.120510 0.379556 -1.546679 -0.562519 2.036333 0.073204 -0.100864 -0.405852 -0.635989 -0.194651 -1.482620 0.351617 0.070886 -0.377556 -0.560170 -1.069620 0.258922 1.513775 -0.290614 0.660177 -1.021455 0.024978 0.477936 -0.427797 0.919785 -1.001284 -0.832323 -0.363696 -0.613045 0.764764 -0.981484 0.100156 1.378569 -0.852127 0.747084 0.616399 -0.782333 -0.318823 0.713801 -0.801369 1.253391 -0.198541 0.445651 -0.145391 1.049721 -0.791752 -0.276523 -0.231331 0.322324 -0.619729 1.026057 -0.817572 0.050490 0.275835 -1.100944 -0.648767 0.450076 0.122431 0.399532 0.030083 -0.444119 -1.231719 0.149882 -0.270801 0.254378 1.119431 -0.221471 -1.182515 0.144154 -0.006984 -0.765219 -0.297018 0.324613 -0.182107 1.434102 -1.130572 -0.153875 0.452197 0.240179 -1.076495 -1.053392 -0.598917 -0.825570 -0.382180 1.156340 -1.114492 -0.545723 -0.810646 0.201517 -0.590017 -0.419090 0.229845 1.525772 0.942577 -0.656155 0.672161 0.273126 0.994035 0.173678 -0.260563 0.247730 0.631794 +PE-benchmarks/optimized-naive-algorithm.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -3.568287 1.458202 1.964202 -1.186532 5.986689 0.097015 2.089536 2.667113 -2.503976 3.922309 -4.922205 -2.286606 -2.003485 -3.521236 -0.087026 -2.312732 1.360322 -0.399417 -1.562483 0.944392 1.916475 -1.694437 -0.231627 -1.939344 -0.644830 -3.400454 -2.330142 0.518661 4.655616 -2.233529 -0.499305 0.303505 7.202491 -0.170864 6.266633 3.858580 1.736103 3.762585 -0.094922 -2.731041 -0.761877 4.285738 -3.287151 -2.759462 -1.399202 -3.235671 -3.334498 -1.065678 1.829805 -0.912305 -1.499591 3.510517 -0.741031 1.777049 -2.102613 3.261277 3.079608 -0.320743 6.525211 1.059255 -2.791521 0.467710 -3.656741 4.554733 -1.472413 1.735373 -3.170726 -3.855132 0.164102 -0.672443 -1.072110 -3.414149 -1.515338 3.829446 1.844630 -3.621756 2.329234 -0.922323 -2.373295 -6.163596 -4.192762 1.219534 0.211050 3.867878 -0.435412 -0.194873 1.066921 1.227134 -0.485894 -6.507835 0.093467 4.517731 -4.405247 -1.643489 -1.496789 2.538546 -0.686443 2.905962 -3.132014 -3.232738 1.033055 -0.695088 0.525775 -4.229427 3.792154 -3.156708 -0.278318 -0.123334 1.125751 3.146929 2.854994 2.642505 4.778757 4.667636 -3.882489 -0.213694 -3.531760 1.969094 -2.761945 -0.338454 -0.126186 2.286209 1.340287 1.714239 5.306791 -6.092644 1.193721 1.569770 -1.847985 -4.419033 -0.614196 -4.908307 -4.555111 -1.179347 2.174228 1.399707 0.848781 -3.654894 1.131969 -0.646369 -1.061453 0.035133 0.790800 2.818237 -5.367745 -1.051265 -0.322854 -0.152373 -2.300710 4.721675 2.990697 2.742481 5.644997 2.655314 -2.436474 1.265518 -5.022809 0.310189 5.955747 -0.683201 -4.689804 4.026412 -4.508964 -0.212394 2.728645 3.084371 3.211942 -0.249824 -3.675242 -1.814240 2.355158 0.232034 6.142851 0.174868 1.465283 -1.747117 4.956382 -2.168926 -3.889363 5.899752 2.825519 -5.849560 2.088750 1.732007 -2.330197 -0.668564 3.307690 -4.805511 -1.205179 -3.856359 -0.119519 2.139516 -2.503450 0.290310 2.164802 -5.136264 6.144608 0.165817 0.081170 1.786845 -3.957820 -4.576981 6.327149 0.429670 -0.012614 -2.433815 -2.145168 -2.961398 -5.376312 0.689354 -0.735039 -1.920084 -1.548878 -4.886462 1.132020 3.335532 -0.461643 4.314830 -5.563943 -0.780967 1.928360 0.778451 2.959140 -0.989049 -2.919732 -0.958593 -2.143065 2.223682 -4.508346 3.999339 5.779022 -1.964015 4.453101 -1.146048 -4.088356 0.182468 1.599224 -5.288938 5.224029 -0.358148 3.155600 0.059838 3.251700 -3.889424 -1.551131 -0.137356 -0.717931 -2.178934 2.004150 -2.567933 0.193075 -0.252640 -4.109276 -2.657649 0.367433 -0.988520 -0.226673 0.454089 -0.151830 -5.072141 -0.315852 -2.904448 1.174212 3.533404 -0.302211 -3.315781 2.177195 -0.182367 -0.067001 0.104261 -0.121694 -0.284225 3.335099 -4.675594 -2.241979 0.710338 1.586538 -3.131490 -6.218611 -0.785054 -3.991005 -2.957883 3.507073 -4.075472 0.007761 -3.559869 -1.570835 -4.862093 -2.577347 2.577573 7.237324 2.000006 -4.506125 1.093641 -0.520944 3.937597 0.374997 1.136317 0.178190 1.225237 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -13.165779 15.447281 18.933992 -6.850394 22.548343 5.674631 11.790161 14.201826 -16.683079 15.192598 -22.624016 0.498106 -4.148566 -12.593863 -0.956594 -14.505381 -0.560255 -4.142458 -3.338374 5.599334 7.548505 -8.681086 -2.601088 -11.082960 -2.878484 -17.533869 -6.405332 -1.285054 18.295933 1.800971 3.290391 -1.474842 21.510612 1.659539 22.387612 15.660651 6.399859 14.259654 -1.445097 -1.695941 -5.110333 15.072953 -12.630843 -13.255896 -4.206506 -14.511242 -11.136835 -6.910401 2.843075 -11.416494 -5.546676 13.565005 -2.394953 4.690770 -6.223522 13.140745 12.998902 -4.125253 22.654297 5.104564 -12.884663 -4.229510 -14.869831 11.990828 -0.983840 9.115270 -4.770865 -12.216604 4.921451 -3.248419 -5.916292 -8.443835 0.383248 15.060799 5.644778 -13.738900 7.066504 -7.231397 -26.081180 -16.373476 -8.793854 5.591080 7.564867 15.580007 0.700264 -1.174394 2.754709 5.353544 -1.094028 -24.685380 -2.632190 23.860828 -13.294279 -7.936729 -14.102395 12.234314 -0.527027 12.901503 -8.903429 -8.257675 6.901424 5.242447 0.759648 -26.587029 0.356136 -21.544429 3.714091 2.639417 -2.219410 10.591972 1.601942 10.613018 16.263822 18.599728 -18.570031 12.261125 -14.456055 6.477455 -6.377314 0.612319 -0.384933 4.291256 0.491461 7.299543 17.312307 -20.418071 6.495186 8.158812 -9.222951 -21.513751 -2.142052 -21.774315 -17.109315 -3.297886 4.545367 8.906845 3.916639 -13.168095 0.305184 -6.394237 -2.748998 -14.728264 4.933815 17.376894 -22.869775 -4.796693 -0.568318 3.728502 -12.732131 18.712274 11.244531 7.293946 20.925074 9.392574 -2.874073 7.679074 -14.170337 -1.195008 23.304964 8.169985 -17.846896 14.037086 -15.545314 -1.126861 7.719604 5.550507 10.021798 6.532477 -24.618751 -13.596162 11.553069 -5.290446 22.243599 10.990951 6.493808 -8.010469 27.673699 -14.116992 -19.076984 17.321129 17.816031 -20.843815 5.807257 6.705181 -11.244577 -2.772865 13.382773 -17.842040 -3.502057 -8.024711 -5.680892 3.832821 -8.518378 -3.657834 4.467900 -20.712777 26.684287 3.359820 12.924605 0.610516 -10.740966 -21.048126 21.176381 0.560873 -4.554876 -7.692916 -2.731298 -20.701877 -17.782787 2.889455 3.569464 -9.494757 -12.149779 -18.315918 5.474177 7.753905 -7.069118 14.031522 -14.526389 -9.939128 5.766192 1.391761 13.931832 -10.517444 -12.310682 -10.352780 -5.071425 13.994577 -12.907107 21.757006 27.142729 -3.308603 23.302256 -3.713095 -14.005433 -0.884263 10.218729 -17.620428 18.038492 -3.389256 14.301906 0.303594 14.261107 -15.942263 -7.169229 0.053391 -6.800715 -3.283212 11.291684 -9.214476 2.236619 -3.525810 -19.822790 -4.585403 5.101373 -5.234245 -1.661388 -0.744034 6.601553 -18.104311 -3.888576 -18.827679 0.837080 14.248315 -5.197501 -14.822569 3.799765 -2.009390 -1.417895 -0.663618 0.725713 0.309113 11.283414 -16.587305 -6.222874 1.262374 -2.094220 -17.790205 -22.832677 -1.252072 -18.162272 -19.084002 9.022010 -15.589980 3.380601 -14.448578 -7.653470 -28.498796 -15.970682 8.430645 26.558158 5.191548 -12.432448 3.038806 -2.521202 18.507809 3.535794 8.417165 0.744775 6.358733 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -1.729582 0.619266 0.727246 -0.582387 2.764424 -0.294850 0.883425 0.906617 -0.351254 1.719006 -2.265639 -1.473440 -1.025224 -1.926157 0.121823 -0.980647 0.835136 0.273535 -0.646507 0.397623 1.059390 -0.800384 -0.079984 -0.964071 -0.234701 -1.759464 -1.091916 0.304175 1.881127 -1.063084 -0.339926 0.439441 3.468026 0.179043 3.073689 1.930735 0.917709 2.065630 0.123390 -1.026823 -0.275344 2.007783 -1.440090 -1.837996 -0.214457 -1.428614 -1.537348 -0.946837 0.897505 -0.494326 -0.112828 1.725989 -0.292933 0.755312 -1.274905 1.041663 1.650158 0.387129 2.996670 0.683137 -1.056826 0.567785 -1.659146 1.648200 -0.989192 0.719465 -1.254827 -2.034358 -0.101883 -0.069460 -0.089590 -1.680861 -1.049473 1.559817 0.925121 -1.616570 1.161338 -0.282655 -0.697607 -2.831878 -2.279318 0.541378 -0.209179 2.025916 -0.225612 -0.093255 0.207265 0.411494 -0.021406 -2.887662 -0.044437 1.934936 -1.905866 -0.458803 -0.133925 1.266259 -0.099146 1.114814 -1.441760 -1.638216 0.531916 -0.515531 0.364180 -0.734263 1.338029 -1.318403 0.181648 -0.015214 0.381764 1.335007 1.692940 1.055321 2.097370 1.983046 -1.876890 -0.158188 -1.840365 1.045752 -1.191920 -0.131912 -0.001574 1.113219 0.620397 0.589120 2.277980 -2.903026 0.789709 0.906893 -0.704600 -1.787243 -0.062451 -2.072545 -2.066365 -0.679011 1.309084 0.584324 0.254912 -1.484201 0.425805 -0.319683 -0.450764 0.113299 0.058563 1.427562 -2.294362 -0.359421 -0.331602 -0.569953 -1.002680 1.853238 1.212680 1.378066 2.620496 1.493376 -1.435129 0.420501 -2.479012 0.250372 2.995221 -0.493709 -2.216750 1.794768 -1.844893 -0.002932 1.407447 1.515596 1.503617 -0.365086 -1.415886 -0.614898 0.713833 0.081129 2.830803 0.148614 0.825703 -1.209256 2.084718 -0.456969 -1.659437 3.183657 1.005190 -2.804681 0.844482 1.065947 -1.487061 -0.459177 1.335619 -2.022467 -0.440139 -2.074522 0.327839 1.029209 -1.481516 -0.101241 0.918192 -2.449718 2.598942 0.092243 -0.028507 0.879365 -1.988948 -1.855440 3.477717 0.163756 -0.002893 -1.135917 -1.224028 -0.813932 -2.602934 0.392295 -0.397957 -0.926582 -0.645505 -2.235767 0.526472 2.021836 -0.260120 1.771324 -2.277821 -0.223218 0.972159 0.339379 1.136478 -0.803967 -1.391343 -0.106091 -0.854121 0.848718 -1.720838 1.579561 2.681267 -1.196169 1.494633 -0.229651 -1.678905 0.342343 0.916533 -2.380959 2.483228 -0.383831 1.633617 0.085404 1.570887 -1.740696 -0.690885 -0.016044 -0.215267 -1.143600 1.098809 -1.327465 0.042249 0.367691 -1.719832 -1.442820 0.260849 -0.076725 0.163871 0.178287 -0.226489 -2.276740 0.103990 -1.037240 0.671489 1.759448 0.121304 -1.672500 0.912738 0.220193 -0.115801 -0.390839 0.141984 -0.177125 1.841674 -2.238243 -0.733545 0.346410 0.756197 -1.338737 -2.962111 -0.051410 -1.996311 -1.051354 1.749262 -2.213646 -0.120342 -1.642642 -0.355401 -2.081463 -0.678020 0.918186 3.233389 1.141547 -1.851714 0.695981 -0.171405 1.661160 0.090294 0.249646 0.180173 1.027101 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -5.640035 2.780279 2.649957 -1.487299 6.247566 -0.790670 3.682191 1.132445 -1.500675 5.085849 -7.648437 -5.409721 -4.037539 -6.568522 -0.176002 -4.918973 2.697185 0.223930 -1.531361 2.117558 3.640131 -4.040953 -0.576003 -4.018121 -0.435887 -5.933777 -2.886278 -0.031943 6.185708 -3.044489 0.229597 1.071167 11.308527 2.075223 10.099696 6.390484 1.268664 7.571865 0.620342 -2.279482 -2.431602 7.359161 -4.622691 -5.979101 -1.035581 -4.741362 -3.346427 -3.297076 2.174818 -0.947398 -0.146747 5.285403 -0.950333 2.891095 -4.952946 2.026249 6.470230 2.136590 9.674757 1.857718 -1.829780 2.246262 -4.907709 3.669376 -3.088120 1.027526 -1.803329 -4.358730 1.686350 -1.872365 -0.701995 -4.358144 -3.238905 5.187837 3.307020 -5.408314 3.114443 -1.027604 -7.848502 -8.301134 -7.141802 1.059184 0.576869 6.656106 -0.822734 -0.353528 1.320851 1.779945 0.514065 -9.186680 -0.219835 6.409581 -5.175712 -2.103933 -0.463460 6.142193 -0.562445 4.274229 -5.341099 -3.895616 1.632563 -1.483376 0.975286 -3.357386 1.124124 -5.165651 1.630965 -0.777981 -0.785116 3.813943 6.381062 3.660572 6.886934 6.459718 -7.188936 0.372829 -5.767390 2.526808 -2.413960 -0.715911 1.243855 3.205391 -0.297711 0.888017 7.073281 -9.202489 2.105000 3.549250 -2.062153 -6.736396 -0.735488 -7.493704 -6.547670 -2.548439 3.923588 2.708719 1.443295 -5.281417 0.127655 -1.196745 -0.475723 -0.919858 1.199065 6.113067 -6.219829 -1.538337 -1.154029 -1.643649 -3.972397 5.538092 2.768158 3.561164 7.496238 4.433382 -4.548054 1.317827 -6.368770 -0.394159 9.503503 -0.391421 -7.337512 5.229540 -4.820386 -0.094693 4.090339 4.133451 5.554953 -2.220768 -6.000314 -3.010071 2.448821 -0.921592 8.528114 0.581542 2.353079 -2.708292 9.352632 0.171132 -6.424387 9.469972 3.513016 -7.483682 2.137185 2.716929 -6.201523 -1.611503 4.415691 -5.273989 -0.123796 -6.467859 0.660405 1.739234 -3.967084 0.303789 1.936466 -8.272699 8.575139 0.729405 1.839692 2.206694 -6.346742 -7.838437 10.383211 -0.558291 -0.477647 -3.824192 -3.325243 -3.965538 -8.226008 1.599913 -2.071527 -3.133689 -2.493556 -7.102874 2.839205 5.674247 -1.262446 5.532821 -5.272798 -2.496347 2.330379 1.888957 3.879049 -2.077091 -4.959429 0.203507 -1.199979 3.884315 -3.909796 6.314775 9.586294 -3.080562 4.437377 -1.427279 -4.945378 1.597116 3.422164 -7.867915 6.958708 -2.678872 4.426541 -0.451903 5.017109 -5.223891 -2.934343 1.033596 -0.365665 -3.029940 2.769095 -3.471361 0.585607 0.149249 -5.791446 -3.122230 0.951045 -1.680293 0.685470 0.480761 0.748088 -7.219488 0.912060 -3.670630 1.469217 5.902127 2.368877 -4.619023 2.375600 -0.189631 1.178789 0.581319 0.015628 -1.369111 5.167766 -6.794661 -3.148108 0.218231 0.797944 -2.504125 -10.046485 0.176831 -7.070117 -4.278145 6.641580 -6.493655 1.595418 -5.222232 -1.781637 -7.168621 -2.167808 2.222179 9.671696 3.981557 -5.655282 1.495324 -0.754022 6.221669 0.522527 0.969919 0.585245 4.045823 +PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.668391 -0.077708 -0.114399 -0.296708 1.439906 -0.160115 -0.033555 0.787657 0.586174 0.360849 -1.050647 -0.759110 -0.497303 -0.847722 0.283782 0.104634 0.362806 0.495059 -0.712034 -0.536035 0.669115 0.269112 0.040704 -0.657429 0.167836 -0.173971 -0.517051 -0.053872 -0.085928 0.384216 -0.779119 0.433362 1.054694 0.247026 0.605810 0.514201 0.840220 1.213949 -0.300136 0.936665 0.431077 0.753210 -0.296300 -1.348576 0.695990 -0.911980 -0.499684 -0.470770 0.380224 -0.884758 1.243482 0.582860 0.198840 -0.048773 -0.278156 0.023926 0.573108 0.513559 0.795359 0.749288 -0.930921 0.095261 -0.606363 0.397061 -0.589074 1.314752 0.260994 -1.310764 -0.995902 0.491767 0.865170 -0.849988 -1.023285 -0.173960 0.016657 -0.108641 0.692557 0.175459 0.952172 -0.231823 -1.096647 0.132452 -0.531078 0.793335 -0.297829 -0.335974 -0.480029 -0.412800 0.516031 -0.517415 -0.599607 0.727380 -0.493010 0.886536 -0.826244 -0.569548 -0.241553 0.140769 -0.479329 -0.618507 0.274681 0.428063 0.118504 0.504559 -0.527877 -0.387553 1.076060 0.624637 -0.096684 0.077367 0.456210 -0.095158 -0.093924 0.174709 -0.123419 0.440017 -0.879293 0.426304 -0.135655 0.171184 -0.143413 0.069931 0.561207 -0.401438 0.253159 -0.671099 0.842022 0.412206 -0.727650 -0.157731 0.486269 -0.422445 -0.980723 -0.094791 0.776104 0.279054 -0.238372 0.008517 0.212713 -0.462578 -0.681627 -0.258779 -0.778389 -0.001226 -0.567975 -0.255374 -0.364234 -0.641740 -0.318494 0.385557 0.030736 0.282552 0.799176 0.579576 -0.589331 -0.513538 -0.886512 0.638915 1.457463 0.161250 -0.916686 0.058436 -0.266565 0.740699 0.653916 0.037702 0.080712 0.614440 0.381295 0.601245 -0.703561 -0.268570 0.932756 0.983744 0.863946 -1.127557 -0.200677 -0.515594 0.026451 1.444711 0.806248 -1.181458 -0.027881 0.831269 -0.224496 -0.230663 -0.044059 -0.235020 -0.258085 -0.824948 0.492977 0.488369 -1.168895 -0.708466 0.411012 -0.870593 0.783988 0.149452 0.241412 0.109557 -1.263509 0.023611 1.574375 0.105747 -0.087086 -0.065634 -0.413963 -0.225840 -1.074486 0.311327 0.414465 -0.260572 -0.506994 -0.530009 0.049223 1.354397 -0.538605 0.073628 -0.097876 0.140988 0.287068 -0.620747 0.669516 -1.071175 -0.682411 -0.275389 -0.297683 0.722634 -0.431674 -0.413704 0.805214 -0.679088 0.554516 1.152867 0.038547 -0.366900 0.751864 -0.021558 0.684455 -0.276092 0.477557 -0.126221 0.921881 -0.563058 -0.159109 -0.238339 0.335534 -0.465296 1.023276 -0.808374 0.088219 0.542350 -0.750947 -0.383306 0.705899 0.359213 0.641135 -0.199762 -0.266591 -0.513819 0.120863 -0.055393 0.212471 0.847697 -0.254537 -1.048828 -0.381984 0.167105 -1.057550 -0.495173 0.527079 -0.133575 1.294891 -0.655905 0.278634 0.421100 -0.191177 -1.044471 -0.494642 -0.352367 -0.441125 -0.327418 0.695383 -0.893176 -0.540048 -0.420085 0.618363 -0.551662 -0.155651 -0.330438 0.711250 0.569713 0.121925 0.696483 0.500143 0.539221 0.051531 -0.318941 0.266249 0.660740 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -7.301055 5.845800 6.956074 -3.065514 11.930102 2.347878 4.847931 5.879965 -7.875785 9.611039 -10.969724 -2.871757 -4.603575 -8.252052 -0.753312 -7.396691 2.121405 -2.162735 -2.095094 4.144609 4.604555 -6.401997 -0.837560 -4.979919 -1.850323 -9.893354 -4.319980 0.427047 11.706387 -3.489209 0.568919 -0.324774 15.611402 0.348418 13.077510 9.275438 3.919968 9.243036 1.216761 -5.829216 -3.829184 10.079145 -7.871020 -6.531440 -2.602716 -8.091200 -5.742445 -2.357327 2.731268 -2.100027 -5.075588 8.274777 -2.236484 3.643592 -5.881951 6.969129 7.197778 -0.844154 14.953550 1.967036 -4.399605 -2.045763 -8.579185 8.113479 -3.154385 2.627340 -5.566601 -6.682417 3.357507 -3.069962 -3.602359 -6.149525 -1.933897 9.752926 3.685642 -8.935235 4.082010 -3.681892 -12.553233 -11.956603 -8.373118 2.385718 1.587420 8.649916 0.187459 -0.334087 2.018823 4.182607 -1.015577 -15.656412 0.536800 10.755497 -8.827853 -4.319728 -3.795389 8.617700 -0.489179 7.046773 -7.316901 -4.822550 2.782674 -0.549303 1.400819 -13.316800 5.586315 -10.559664 0.219134 -1.150759 1.212258 6.424672 5.915630 5.983047 11.245392 10.821944 -11.125173 0.846458 -7.769490 3.106213 -4.035583 -0.624020 -0.375250 5.317280 0.185079 3.511309 12.368312 -13.978144 1.960051 3.760462 -4.486182 -11.450838 -1.459319 -12.132101 -9.458696 -2.763630 4.360623 3.679853 2.752567 -8.849624 1.076851 -1.775339 -1.745814 -3.666318 3.482870 10.245524 -12.895322 -2.221246 -0.919648 -0.008446 -5.640101 10.328971 6.691532 6.006763 12.629432 6.404648 -4.075763 5.903346 -10.041441 -0.694269 13.351979 2.605934 -11.284333 9.240417 -10.074330 -1.134060 4.979562 6.089516 8.345272 0.442501 -11.910263 -7.423494 6.248482 -0.500282 13.577875 0.902929 3.542079 -2.992201 14.262941 -4.368922 -10.357968 11.517925 6.351177 -11.373423 4.510976 3.359219 -6.530295 -1.095860 7.626645 -10.547136 -0.723988 -7.576000 -2.088982 4.094071 -5.151936 0.616689 2.803488 -12.172927 14.844364 1.042672 3.974054 3.366558 -8.146299 -12.658515 12.812242 -0.541444 -1.273073 -6.431661 -4.214841 -9.010408 -11.858732 1.937405 -1.609607 -5.607291 -5.014601 -11.772035 2.780361 6.274921 -1.185479 8.796944 -12.621634 -4.115251 4.158305 2.715338 7.620820 -2.826694 -6.875669 -2.163717 -3.870272 6.683106 -8.801209 11.619996 14.755288 -3.318800 10.236671 -4.530625 -8.056789 1.406438 4.546311 -12.655133 11.746788 -1.986655 8.005061 -0.280050 7.245806 -8.961347 -3.227639 0.621570 -2.031312 -2.782709 3.717520 -5.067270 0.458241 -1.044273 -10.087500 -4.400196 0.768047 -3.134279 -1.490355 1.107113 1.255428 -10.668594 -1.798238 -7.607930 1.818733 8.342284 -0.470805 -6.466623 4.251517 -1.462882 1.735535 1.508608 -0.270952 -0.469811 5.988649 -10.788087 -5.555835 0.196424 1.308478 -6.873543 -14.921420 -1.287434 -8.753897 -7.806634 8.161108 -9.612771 2.345730 -8.534771 -4.533860 -13.419494 -5.835206 4.730163 16.374137 3.821469 -9.943240 1.631508 -1.885455 9.961859 0.867214 3.842564 0.178658 3.031826 +PE-benchmarks/sort-array-wave-form-2.cpp__main = -1.363999 0.384253 0.509356 -0.575962 2.561649 -0.215671 0.563122 1.160863 0.000631 1.171838 -2.006180 -1.031079 -0.795274 -1.547394 0.237366 -0.604501 0.630089 0.425715 -0.852100 -0.129738 0.970558 -0.178500 -0.034500 -1.005834 -0.043416 -1.229299 -0.909261 0.113040 0.958197 -0.178505 -0.570709 0.477280 2.565669 0.177573 2.012247 1.379680 1.145860 1.856418 -0.179908 0.093255 0.242155 1.527765 -0.948279 -1.820377 0.241985 -1.377633 -1.255069 -0.763685 0.703199 -1.022516 0.567991 1.281186 0.010429 0.339551 -0.791056 0.746835 1.309601 0.316297 2.093665 0.857309 -1.325107 0.237614 -1.296151 1.313583 -0.871883 1.294904 -0.529692 -1.952177 -0.719200 0.365588 0.437029 -1.390180 -1.165898 0.683788 0.529681 -0.950734 1.062095 -0.073958 0.140437 -1.621105 -1.751731 0.410042 -0.377793 1.566448 -0.294920 -0.280434 -0.143689 -0.076991 0.334468 -1.860046 -0.505036 1.675412 -1.369027 0.245676 -0.912039 0.257482 -0.145753 0.675888 -1.021128 -1.381249 0.473146 0.073209 0.226812 -0.349806 0.291282 -1.033314 0.697305 0.478400 0.115947 0.927424 0.820812 0.609758 1.025675 1.147129 -1.101955 0.370837 -1.622266 0.880098 -0.799399 0.037733 -0.126555 0.542555 0.741510 0.235378 1.371079 -1.945167 1.047040 0.756422 -0.910221 -1.082816 0.274761 -1.369385 -1.775324 -0.383394 1.125653 0.558613 0.026200 -0.779463 0.403810 -0.509805 -0.618508 -0.344356 -0.454117 0.731792 -1.730507 -0.383543 -0.361212 -0.561227 -0.793347 1.312035 0.696992 0.828570 1.944276 1.127712 -1.047858 0.082758 -1.905258 0.537049 2.573472 -0.018280 -1.763368 1.012002 -1.230819 0.450072 1.162549 0.783835 0.754897 0.356781 -0.690218 -0.048070 -0.045635 -0.240458 2.146348 0.875688 0.915089 -1.530163 1.072720 -0.828296 -0.862910 2.596646 1.253574 -2.337525 0.463976 1.156041 -0.942136 -0.461684 0.687146 -1.323408 -0.532062 -1.559590 0.439334 0.842307 -1.491843 -0.548039 0.766414 -1.868686 1.931240 0.159443 0.120148 0.432709 -1.794171 -1.160207 2.860418 0.148150 -0.061135 -0.599136 -0.851823 -0.676339 -2.151723 0.365542 0.140663 -0.712657 -0.717938 -1.541366 0.322534 1.886171 -0.620544 1.019101 -1.432137 -0.104486 0.714188 -0.177238 1.053048 -1.263471 -1.196533 -0.398972 -0.653377 0.935805 -1.315498 0.640989 2.012127 -1.013507 1.349212 0.503515 -1.114530 -0.129993 1.034316 -1.284960 1.789808 -0.349216 1.238216 0.009010 1.446134 -1.359364 -0.515967 -0.238975 -0.026608 -0.949224 1.298211 -1.322351 0.110038 0.496595 -1.445454 -0.992436 0.696567 0.204495 0.452590 -0.078243 -0.198681 -1.580549 0.080886 -0.731817 0.438504 1.469023 -0.244623 -1.666377 0.226519 0.274992 -0.889821 -0.598340 0.375323 -0.101891 1.789816 -1.609131 -0.148594 0.489840 0.224991 -1.590036 -1.992745 -0.202646 -1.446959 -0.962438 1.241394 -1.758480 -0.503902 -1.158986 0.214653 -1.634515 -0.724412 0.414294 2.226162 0.891924 -0.884248 0.815000 0.210670 1.293719 0.089327 0.070505 0.262255 0.906575 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.403127 -0.041574 -0.066077 -0.230087 0.885800 -0.100107 -0.097309 0.553657 0.574077 0.260339 -0.660749 -0.483701 -0.185397 -0.354177 0.141922 0.089757 0.105785 0.346213 -0.506629 -0.398624 0.369375 0.350063 -0.003901 -0.380863 0.039411 -0.047114 -0.390975 0.002977 -0.150708 0.147958 -0.537501 0.216993 0.658546 0.048717 0.467250 0.335095 0.587348 0.674428 -0.226743 0.793402 0.377988 0.417297 -0.204281 -0.723075 0.328582 -0.540247 -0.319912 -0.256563 0.227362 -0.525364 1.036444 0.296625 0.146644 -0.019089 -0.043493 0.104568 0.147506 0.322034 0.483589 0.438300 -0.692591 0.291070 -0.433951 0.501458 -0.385084 0.973679 0.051277 -0.866176 -0.703637 0.308663 0.710230 -0.617685 -0.642455 -0.081084 -0.069453 -0.063647 0.439189 0.036005 0.935001 -0.124412 -0.594456 0.166798 -0.302894 0.364765 -0.200589 -0.193529 -0.489968 -0.186927 0.234012 -0.295599 -0.401306 0.458978 -0.397290 0.587520 -0.529759 -0.542602 -0.145800 0.111328 -0.166114 -0.386949 0.179852 0.298854 0.048811 0.431208 -0.115432 -0.124635 0.617406 0.511573 -0.082781 -0.016679 0.116318 0.038656 0.049769 0.126079 0.150152 0.250018 -0.538862 0.277458 -0.170304 0.112938 -0.067795 0.056926 0.369752 -0.137546 0.177776 -0.313910 0.502160 0.144279 -0.511386 -0.018584 0.281850 -0.237732 -0.629079 -0.069225 0.383171 0.262391 -0.177309 -0.033688 0.145643 -0.299480 -0.371353 -0.239809 -0.402839 -0.288800 -0.216410 -0.184716 -0.170981 -0.300637 -0.215332 0.344391 0.094038 0.137351 0.532088 0.323910 -0.235518 -0.601784 -0.556290 0.322152 0.751806 -0.082914 -0.540250 0.086321 -0.220446 0.388582 0.431690 0.106684 -0.083435 0.476197 0.291816 0.359233 -0.575273 -0.163920 0.600133 0.575194 0.427935 -0.585390 -0.226104 -0.441417 -0.037056 0.943010 0.536480 -0.738001 -0.208215 0.443853 0.053280 -0.238300 0.043684 -0.160614 -0.212248 -0.414044 0.264620 0.274663 -0.603254 -0.420850 0.391376 -0.519349 0.508871 0.041079 -0.003684 0.031634 -0.814390 0.065688 0.977583 0.105988 -0.075222 0.030802 -0.177170 0.061989 -0.645575 0.153359 0.342592 -0.082798 -0.299591 -0.289696 0.157820 0.757686 -0.394375 0.072255 0.063884 -0.054994 0.181051 -0.572441 0.392821 -0.698928 -0.352210 -0.334867 -0.157079 0.433782 -0.329736 -0.277453 0.589103 -0.341094 0.335461 0.923608 -0.072998 -0.386439 0.496377 -0.048592 0.452857 -0.168968 -0.054781 -0.057545 0.481674 -0.344145 -0.146963 -0.192397 0.297968 -0.272629 0.587288 -0.432786 0.071597 0.145968 -0.535188 -0.078536 0.448582 0.243722 0.270312 -0.096234 -0.158777 -0.387891 0.023541 -0.124038 0.041117 0.484585 -0.150788 -0.684583 -0.125624 0.050957 -0.764724 -0.286682 0.232793 -0.058849 0.790954 -0.381614 0.158091 0.345617 -0.097354 -0.761599 -0.195600 -0.352225 -0.289529 -0.175428 0.202897 -0.395912 -0.500574 -0.248481 0.352119 -0.240931 -0.215935 -0.041723 0.463282 0.483586 -0.019637 0.381676 0.237649 0.428058 0.168408 -0.273412 0.157279 0.361329 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -2.156317 1.422097 1.520969 -0.814638 4.161902 0.694722 0.540043 3.088663 -2.605813 2.567343 -3.008155 0.048246 -0.872615 -2.198764 0.067331 -0.748203 0.576866 -0.279457 -0.750326 0.681537 1.223813 -1.214244 -0.030395 -1.245967 -0.377234 -2.105444 -1.153937 0.162662 3.050430 -0.490848 -0.548437 -0.031473 3.962805 -0.036882 3.056771 2.174364 1.602386 2.249030 0.455193 -1.871738 -0.672471 2.451158 -2.052690 -1.766511 -0.057741 -2.500573 -1.893125 -0.301895 0.902479 -1.299369 -1.124476 2.228633 -0.493314 0.686307 -1.106188 2.096428 1.917450 -0.843396 3.868659 0.719948 -2.035824 -1.650548 -2.139059 2.561148 -0.688891 1.396139 -1.489670 -2.432553 0.166768 -0.278933 -0.480040 -2.247139 -0.622949 2.425706 0.647743 -2.087419 1.409445 -0.698014 -1.470292 -3.201505 -2.304977 0.675951 -0.216435 2.473778 -0.188759 -0.087801 0.328220 0.677855 -0.169128 -4.013540 0.002538 3.009393 -2.525988 -0.464075 -1.903884 1.498226 -0.454891 1.765586 -1.733056 -1.587626 0.803570 0.383525 0.379006 -3.713546 2.005072 -2.594633 0.414534 -0.225987 0.808379 2.177295 1.143900 1.558026 2.541363 2.999852 -2.441615 0.044908 -2.273753 0.985354 -1.257730 0.141371 -0.444135 1.219834 0.974229 0.963869 3.125213 -3.754362 0.995237 0.974085 -1.326544 -2.972817 -0.122694 -3.039020 -2.594996 -0.526222 1.341960 0.563600 0.246902 -2.072101 0.744572 -0.549598 -1.845898 -1.396452 0.124764 2.446562 -4.262694 -0.586302 -0.316083 -0.114854 -1.185692 2.668244 1.890274 1.741600 3.275394 1.665348 -1.108020 1.955871 -2.919593 0.600683 3.880858 1.178285 -3.043042 2.294453 -2.763701 -0.023582 1.636870 1.295341 1.961949 0.844654 -2.524512 -1.553232 1.967185 0.134810 3.653576 1.111267 1.426443 -1.506526 3.110384 -1.719852 -2.247390 3.520954 1.608578 -3.498350 1.652012 1.150899 -1.026444 0.265383 1.542062 -2.982783 -0.720390 -1.887303 -0.520800 1.551453 -1.914667 -0.595233 0.961439 -3.125112 4.092924 0.261231 0.751787 0.810907 -2.357328 -2.302890 3.649802 0.537992 -0.384032 -1.557768 -1.211832 -2.750473 -3.037403 0.513852 0.184083 -1.439688 -1.401307 -3.081050 0.004977 2.018454 -0.224162 2.089871 -4.629250 -0.410040 1.173821 0.228532 2.024793 -1.569000 -1.796468 -0.936654 -1.358342 1.863138 -2.733673 2.738547 3.580588 -1.325604 3.305196 -0.621475 -1.574578 0.099635 1.099978 -2.869097 3.093909 -0.163965 3.062345 0.056542 2.260609 -2.511719 -0.579759 -0.278146 -0.419640 -0.883174 1.572295 -1.664196 -0.044712 0.201327 -2.536775 -1.689280 0.316428 -0.547269 0.135434 0.162058 -0.341171 -2.443226 -0.667609 -1.662393 0.597474 2.255401 -1.117964 -2.218003 0.840501 -0.294376 -0.277158 -0.125527 0.310581 0.125647 2.054536 -2.917859 -0.983841 0.310831 0.441873 -2.521783 -3.468194 -0.620712 -1.651954 -2.023903 2.206978 -3.174199 0.001953 -2.154384 -0.920947 -3.590781 -1.406366 0.993186 4.191301 0.728422 -2.371402 1.006760 -0.153000 2.409347 0.230300 1.136060 -0.106883 0.725830 +PE-benchmarks/the-knights-tour.cpp__main = -0.206038 -0.070067 -0.282667 -0.072474 0.451592 -0.095689 -0.187787 0.373774 0.223679 0.260590 -0.163591 -0.161100 -0.076314 -0.245074 0.072278 0.291757 0.071298 0.213770 -0.168520 -0.168488 0.177795 0.070909 0.042634 -0.063265 -0.040013 -0.097128 -0.073444 0.077018 0.084095 -0.083019 -0.384185 0.091529 0.345203 -0.047966 0.258058 0.159705 0.291489 0.246736 0.077721 0.102125 0.079470 0.189533 -0.139608 -0.304568 0.152691 -0.206027 -0.145187 -0.076015 0.188919 -0.132907 0.482029 0.177524 0.006937 0.012527 -0.087346 0.091749 -0.003541 0.107320 0.326742 0.136259 -0.241134 -0.035372 -0.201369 0.430703 -0.244832 0.252620 -0.062486 -0.392909 -0.251734 0.117703 0.199189 -0.253607 -0.186563 0.091210 -0.009992 -0.132041 0.188566 0.003098 0.595397 -0.192747 -0.360553 0.083785 -0.247848 0.212576 -0.076432 -0.001680 -0.235224 0.006383 0.027236 -0.261443 -0.044439 0.137069 -0.243081 0.267986 -0.074190 -0.112720 -0.039187 0.032808 -0.054172 -0.139230 0.057136 0.057241 0.101456 0.137184 0.257615 -0.014717 0.232298 0.049481 0.118175 0.034186 0.219983 -0.040332 0.060957 0.183264 0.133588 -0.107932 -0.287426 0.128707 -0.031960 0.092470 -0.083433 0.120023 0.290412 -0.087370 0.208059 -0.296809 0.180416 0.006148 -0.076819 -0.083204 0.110108 -0.083898 -0.204156 -0.071489 0.245132 -0.020023 -0.127119 -0.074668 0.166346 -0.001401 -0.414564 0.027766 -0.147923 -0.039032 -0.218041 -0.003470 -0.106220 -0.195721 -0.018777 0.135871 0.118449 0.206487 0.298573 0.237072 -0.115170 -0.143903 -0.357597 0.167663 0.347516 -0.084250 -0.271497 0.147938 -0.235222 0.087060 0.207425 0.174909 0.089660 0.181765 0.182505 0.164298 -0.079275 0.107244 0.341085 0.047397 0.218753 -0.158879 -0.146847 -0.044680 -0.012011 0.497680 0.106433 -0.402726 0.075636 0.157599 0.024330 0.018517 0.054858 -0.139403 -0.033739 -0.266026 0.152910 0.273654 -0.313537 -0.132814 0.165274 -0.236092 0.280191 -0.046102 -0.057093 0.175998 -0.412249 0.298210 0.422029 0.117209 -0.018446 -0.113426 -0.208869 -0.126174 -0.289671 0.074463 0.074016 -0.054519 -0.075551 -0.218466 -0.076423 0.407985 0.014580 0.065561 -0.296743 0.105074 0.145299 -0.145663 0.120938 -0.190279 -0.091944 -0.033383 -0.098362 0.154913 -0.196566 -0.051385 0.242895 -0.242450 0.136033 0.353034 0.091373 -0.044012 0.149532 -0.162958 0.286479 -0.009226 -0.060680 0.002362 0.171574 -0.156272 0.034920 -0.100753 0.167311 -0.091012 0.160777 -0.163044 -0.061725 0.121625 -0.244666 -0.146363 0.046487 0.154021 0.189802 0.042652 -0.212915 -0.151589 -0.035829 -0.113015 0.072152 0.224939 -0.052476 -0.229198 0.096093 0.001781 -0.235877 -0.107379 0.099803 0.017845 0.347892 -0.260023 0.024359 0.132186 0.109308 -0.283180 -0.127748 -0.195167 0.007754 -0.008166 0.174196 -0.331740 -0.218313 -0.128102 0.139568 -0.203895 0.081010 -0.062421 0.302832 0.173059 -0.058693 0.237956 0.060070 0.141731 0.071057 -0.119137 0.063689 0.176085 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -1.703655 0.590004 0.632164 -0.566302 2.631010 -0.329587 0.874895 0.775551 -0.403837 1.673508 -2.217258 -1.436529 -1.073811 -1.987233 0.117172 -0.923699 0.894344 0.254009 -0.579967 0.446976 1.056484 -0.940874 -0.038489 -0.978058 -0.196632 -1.788929 -0.989665 0.286272 1.913354 -1.052081 -0.313147 0.428052 3.400520 0.218710 2.942195 1.870307 0.803494 2.082903 0.205360 -1.216449 -0.320436 2.017593 -1.382097 -1.847679 -0.182817 -1.390179 -1.437582 -0.958279 0.911458 -0.450102 -0.257368 1.698781 -0.296586 0.698405 -1.398552 0.970038 1.779846 0.409681 2.963325 0.644022 -0.869558 0.468434 -1.565593 1.475450 -1.029462 0.524429 -1.167427 -1.885264 -0.009220 -0.071754 -0.231345 -1.550336 -1.003717 1.478781 0.945532 -1.609769 1.115454 -0.247719 -0.839032 -2.822746 -2.252132 0.460627 -0.228006 2.040099 -0.235770 -0.082008 0.306591 0.388897 0.050214 -2.802340 -0.040728 1.804275 -1.791337 -0.516581 0.067446 1.451161 -0.056433 1.019419 -1.465318 -1.559004 0.475448 -0.564075 0.378595 -0.752130 1.281034 -1.295061 0.189550 -0.112997 0.370243 1.338033 1.792941 1.010402 1.979243 1.903069 -1.927681 -0.221508 -1.844391 0.960976 -1.084517 -0.145892 0.020444 1.096018 0.583169 0.503507 2.219628 -2.896482 0.808751 0.940510 -0.584188 -1.761223 -0.043830 -1.978854 -1.984086 -0.658963 1.316475 0.520693 0.278224 -1.425905 0.426228 -0.280115 -0.466375 0.237762 0.049282 1.588138 -2.288431 -0.322830 -0.347200 -0.611045 -0.928223 1.703955 1.101259 1.317821 2.535519 1.476328 -1.484951 0.581008 -2.399561 0.277117 2.988513 -0.460779 -2.159611 1.714652 -1.749080 0.007571 1.380995 1.458907 1.565923 -0.454585 -1.408416 -0.614043 0.804132 0.043721 2.733896 0.032661 0.847740 -1.223803 2.146784 -0.271258 -1.541433 3.098446 0.905880 -2.730199 0.965050 1.082035 -1.601785 -0.384059 1.245604 -1.893197 -0.350984 -2.093067 0.361598 1.010440 -1.480683 -0.113892 0.738731 -2.391365 2.516261 0.097083 0.005117 0.908776 -1.905202 -1.753546 3.366410 0.144921 0.014629 -1.162461 -1.245456 -0.926917 -2.595605 0.397242 -0.499477 -0.980645 -0.587208 -2.200088 0.460687 1.997194 -0.229774 1.676734 -2.350221 -0.140729 0.952092 0.530208 1.068034 -0.653658 -1.383177 0.065740 -0.828848 0.817440 -1.644009 1.588103 2.574058 -1.218043 1.417953 -0.367936 -1.547993 0.493948 0.902221 -2.337337 2.413658 -0.405614 1.745476 0.062061 1.546157 -1.682642 -0.646284 0.015871 -0.279063 -1.124437 1.023780 -1.349087 0.020945 0.463300 -1.606172 -1.481127 0.261067 -0.073478 0.270489 0.180341 -0.205379 -2.177194 0.148759 -0.952739 0.677199 1.723487 0.196500 -1.626778 0.838934 0.282449 -0.005676 -0.400438 0.150216 -0.191012 1.779021 -2.190921 -0.690014 0.276796 0.738001 -1.176357 -2.956903 0.061707 -1.903254 -1.011660 1.875768 -2.248948 -0.027628 -1.595844 -0.305284 -2.088048 -0.520089 0.789835 3.115541 1.056639 -1.768468 0.700777 -0.157500 1.573965 0.022128 0.265273 0.155221 1.024884 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -1.573231 0.639425 -0.001222 -0.306031 1.776280 0.135408 1.142117 0.761009 -0.759723 1.320105 -2.217502 -1.904611 -1.201275 -1.771703 -0.058171 -1.360708 0.689105 -0.124231 -0.822856 0.403357 1.068117 -1.049877 -0.085073 -1.311052 0.050424 -1.139689 -0.686506 -0.245102 1.911915 0.009257 -0.617640 0.014678 3.054104 0.530732 2.483975 1.443824 0.285907 1.921628 -0.012656 -0.819954 -0.726643 2.262219 -1.322646 -1.630886 -0.556760 -1.721065 -0.904583 -0.524763 0.659557 -0.489856 0.088386 1.242286 -0.176573 0.742351 -1.067359 0.449377 1.638270 0.847785 2.632129 0.491366 -0.620283 -0.095966 -1.275659 1.521896 -0.620078 0.661278 -0.279219 -1.231014 0.176561 -0.590364 -0.642787 -0.824456 -0.933760 1.334264 1.086965 -1.254249 1.045109 -0.234875 -2.205231 -1.524085 -1.825809 0.085774 -0.475015 1.832141 -0.451973 -0.229977 0.259431 0.348189 0.350967 -2.399744 -0.258486 2.074479 -1.259081 -0.458758 -0.736901 1.335827 -0.110825 1.378785 -1.623714 -0.787747 0.333447 0.101753 0.154518 -1.825034 0.130521 -1.620936 0.683749 0.192076 -0.056642 1.684226 1.552327 1.009251 1.574297 1.733673 -1.657433 0.103456 -1.306606 0.500487 -1.093621 -0.042445 0.301315 0.886579 0.209925 0.073726 1.823307 -2.380562 0.659314 1.163844 -0.590707 -1.745714 -0.090481 -2.207479 -1.931156 -0.485226 0.951078 0.777467 0.301366 -1.545193 0.140546 -0.350791 -0.554158 0.058830 0.292404 1.075084 -1.674957 -0.619730 -0.303976 -0.224763 -0.998283 1.707517 0.567933 0.700936 1.815253 1.069424 -1.288322 0.165233 -1.440199 0.318143 2.882886 -0.379688 -2.122697 1.065554 -1.466429 0.174961 1.010625 0.713942 1.451345 0.369911 -1.374542 -0.553584 -0.039275 -0.366435 2.329540 0.792964 0.794249 -0.743702 2.560082 -0.938387 -1.594245 2.192356 1.373554 -1.902601 0.292103 0.588970 -2.112962 -0.115873 0.917902 -1.292426 0.282615 -2.145363 0.131240 0.601057 -1.122708 -0.049963 0.512047 -2.275101 2.537134 0.273655 0.480071 0.179229 -1.860698 -1.396824 2.897112 0.101376 -0.265814 -0.966900 -0.681727 -2.037067 -2.260926 0.476822 -0.634302 -0.827027 -0.929949 -1.837352 0.491697 1.484070 -0.413334 1.429310 -1.385859 -0.411773 0.436773 0.656997 1.387571 -0.379339 -1.485044 -0.332515 -0.514673 1.510755 -1.315611 1.546073 2.420043 -0.746066 1.520673 -0.290580 -1.255161 0.126769 1.007942 -1.828729 1.639178 -0.733167 0.796715 -0.362866 1.559717 -1.204081 -0.723777 0.094593 -0.354902 -0.718524 1.024894 -0.989197 0.215568 0.146012 -1.576714 -0.709159 0.421279 -0.683146 0.543611 0.077086 0.042687 -2.239690 0.213700 -1.023695 0.182661 1.686232 0.540109 -1.340266 0.295887 -0.434823 0.082297 0.108276 0.029572 -0.565312 1.411937 -1.696106 -0.985247 0.170297 0.080319 -0.743244 -2.318196 -0.514935 -1.351822 -1.357359 2.116451 -1.399915 0.566041 -1.370500 -0.541461 -2.080927 -1.340371 0.569332 2.497463 0.898016 -1.356325 0.411002 0.025556 1.917520 0.288937 0.337872 0.293563 0.826534 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -4.234858 2.875594 2.042367 -2.075922 7.586352 0.468076 2.610145 3.017935 -3.078405 4.494493 -6.520258 -1.399389 -1.996665 -5.584052 0.186174 -2.390024 1.463434 -0.024066 -1.376471 1.153371 2.588239 -3.038344 0.091654 -3.184700 -0.488093 -5.716439 -1.926824 0.287126 5.164480 -0.790030 -0.249134 0.336656 7.615762 0.581599 6.069265 4.362190 2.399620 5.197677 0.485519 -2.199094 -0.662941 4.747576 -3.299001 -4.991921 -0.187958 -4.155799 -3.998968 -2.446678 1.851850 -3.071142 -1.095750 4.397172 -0.597580 0.823709 -3.486242 2.976471 5.569417 -0.659055 7.260327 1.732701 -2.871343 -1.342562 -3.778408 3.822168 -2.046984 1.618154 -1.224039 -4.466660 0.234538 0.381420 -1.229833 -2.882940 -2.058111 3.409300 2.474478 -4.146294 2.406757 -1.242190 -4.714360 -6.176427 -4.195564 1.234652 0.008905 5.460055 -0.087680 -0.262230 1.357793 0.704488 0.495885 -6.964421 -0.844194 5.777169 -3.709563 -1.295475 -2.385181 4.195693 0.017835 2.337617 -3.671113 -3.471279 1.337421 0.208734 0.737740 -4.682410 0.798945 -5.220630 1.244942 0.217693 0.221955 3.612499 2.923135 2.175828 3.802447 4.719933 -5.683927 1.216607 -4.993509 2.038843 -1.457929 0.043330 -0.478978 1.647375 1.400602 1.318660 5.180485 -7.043689 2.930193 2.743088 -2.118599 -5.357898 -0.116173 -5.023618 -4.957737 -0.818644 2.591947 1.359746 0.988187 -3.113901 0.860745 -1.236052 -2.236394 -1.685378 0.194743 5.593971 -6.956414 -0.799051 -0.635763 -0.692028 -2.758367 4.353683 2.757298 2.541128 6.459033 3.416280 -2.606917 3.642140 -5.331395 1.141546 8.504228 2.034109 -5.593245 3.899936 -4.524084 0.407216 2.939532 2.343895 3.550511 0.219737 -5.223097 -2.174462 3.000300 -0.995453 6.772512 1.779737 2.501108 -4.103882 6.749888 -1.343768 -3.474706 7.111914 3.836193 -6.891267 3.240010 3.282703 -4.382177 -0.286933 2.961904 -4.647690 -1.266942 -4.312175 0.338551 2.168228 -3.713054 -1.399512 0.588679 -6.050853 7.088053 0.725083 1.759919 1.513924 -4.085106 -4.699043 7.643917 0.067143 -0.508158 -2.537403 -2.321908 -4.808189 -6.479370 0.940819 -0.034231 -3.497353 -2.275730 -5.601144 0.643656 4.736083 -1.495092 3.693419 -6.619053 -0.716108 2.265145 1.824467 3.136534 -2.866814 -3.665873 -0.673361 -1.575654 2.877872 -4.071024 4.810133 6.667195 -2.696101 5.159052 -1.601762 -3.249624 1.198522 2.877719 -5.017049 5.893645 -0.955678 5.596926 0.123004 4.512719 -4.243906 -1.322505 -0.302069 -1.598065 -2.149107 3.284351 -4.135023 0.054992 1.635200 -4.336019 -3.662285 1.622740 -0.227245 1.270098 -0.081297 0.048037 -4.639492 -0.208960 -3.240401 1.299022 4.301044 -0.697630 -4.503569 0.919736 0.972464 -0.400384 -0.898234 0.776866 0.109761 4.412292 -5.360485 -0.856624 0.406049 0.657958 -4.377618 -7.609767 0.602957 -4.617661 -4.133630 4.661550 -6.541075 0.080068 -4.160383 -0.739005 -7.217525 -2.152930 1.488489 7.749526 1.589018 -3.334412 1.945165 -0.177114 4.149079 -0.203436 1.808774 0.735126 2.441034 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -0.247762 -0.072419 0.049167 -0.083408 0.484198 -0.230731 -0.095747 0.369724 0.555536 0.134124 -0.355339 -0.407679 -0.209618 -0.242662 0.136715 -0.041454 0.162895 0.327379 -0.296609 -0.316964 0.252731 0.295061 -0.040629 -0.210924 0.047634 -0.102921 -0.232541 0.004861 -0.232900 0.137296 -0.306881 0.302762 0.501360 0.101368 0.351894 0.270631 0.349107 0.490710 -0.070694 0.661767 0.266225 0.246613 -0.083588 -0.521027 0.250672 -0.266007 -0.131897 -0.186846 0.146340 -0.325348 0.695507 0.173381 0.109777 0.061611 -0.062958 -0.022537 -0.017415 0.369815 0.257075 0.329368 -0.446756 0.244718 -0.261110 0.264823 -0.325046 0.547873 0.010622 -0.585943 -0.433342 0.240058 0.443317 -0.312168 -0.368139 -0.120628 -0.071965 -0.007332 0.283732 0.142373 0.562673 0.076773 -0.472608 0.118463 -0.163454 0.233161 -0.136053 -0.141530 -0.352000 -0.163575 0.192953 -0.130117 -0.237052 0.264965 -0.257525 0.406980 -0.243490 -0.377043 -0.008254 0.028936 0.013364 -0.286755 0.130643 0.064563 0.046555 0.458997 -0.231095 0.005150 0.465794 0.294627 -0.072662 -0.006174 0.078684 0.030659 0.000391 0.004929 0.124548 0.171778 -0.405119 0.287702 -0.126291 -0.006169 -0.012610 0.017723 0.187579 -0.107625 0.059444 -0.194056 0.297223 0.117064 -0.248175 0.074002 0.207209 -0.091124 -0.377265 -0.128418 0.359872 0.181156 -0.128276 0.032799 0.069559 -0.172916 -0.105435 -0.130276 -0.359155 -0.208887 -0.039015 -0.108821 -0.150655 -0.271171 -0.137437 0.133598 -0.014384 0.140819 0.282184 0.221638 -0.222317 -0.544115 -0.421695 0.164162 0.435133 -0.163121 -0.300890 0.057526 -0.042327 0.235359 0.266796 0.103104 -0.061709 0.283280 0.299912 0.250589 -0.540921 -0.074914 0.352427 0.409352 0.248437 -0.359671 -0.244465 -0.263034 -0.017224 0.613084 0.312893 -0.441405 -0.207260 0.335909 -0.091616 -0.256915 0.007236 -0.093160 -0.071104 -0.321761 0.211230 0.231118 -0.475028 -0.195670 0.328152 -0.311025 0.208706 0.021843 0.030063 0.026060 -0.574479 -0.018686 0.695476 0.078012 0.046868 0.013696 -0.212121 0.086024 -0.429484 0.087770 0.198783 0.004204 -0.127097 -0.138564 0.071363 0.523981 -0.234971 0.055456 0.182758 0.004786 0.140096 -0.399244 0.170757 -0.407746 -0.233481 -0.116025 -0.138849 0.251826 -0.137148 -0.243431 0.304271 -0.212304 0.196400 0.681818 -0.088239 -0.220776 0.280883 -0.044698 0.265875 -0.173573 -0.155333 0.036471 0.276744 -0.234556 -0.137636 -0.106953 0.172038 -0.273725 0.364704 -0.279402 0.062383 0.123135 -0.347237 -0.020798 0.252523 0.214803 0.219396 -0.075775 -0.051974 -0.275121 0.070840 -0.059310 0.101966 0.307798 -0.005360 -0.400945 -0.026709 0.068176 -0.560839 -0.326862 0.165245 -0.066371 0.506148 -0.240616 0.106060 0.265634 -0.046220 -0.433264 -0.110740 -0.196410 -0.234006 -0.096554 0.030418 -0.276068 -0.337725 -0.107840 0.308356 -0.107104 -0.075531 -0.054910 0.264229 0.293357 0.021656 0.251768 0.177769 0.179206 0.117936 -0.228985 0.072491 0.317574 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/union-find.cpp__main = -2.950791 3.691991 2.125484 -2.753065 4.959042 -0.872172 1.668237 1.869247 -0.003965 1.561995 -5.830862 -0.900609 -0.656278 -4.607599 0.791582 -2.202543 0.470817 2.570049 -0.899327 1.381605 2.523621 -1.343488 -0.438516 -3.906882 -0.022089 -2.908289 -1.444601 -0.272713 -0.081075 1.446038 0.951821 1.314665 4.521258 1.678444 3.554407 3.745235 0.968716 5.505940 0.570512 2.526523 1.150886 2.819313 -1.178993 -5.942856 1.863696 -2.760881 -1.895765 -3.627402 0.378311 -4.500133 2.954146 2.707953 0.701420 -0.814877 -3.237328 0.131249 4.835500 1.518270 3.483845 2.780411 -2.424145 1.516632 -2.336360 -0.021325 -2.302988 2.828061 2.353171 -3.742724 -0.454145 2.203455 3.242353 -2.700067 -3.661201 -0.319080 0.262383 -1.739021 2.053548 -0.736672 -3.508592 -1.739494 -2.194831 0.999174 -0.299788 3.817295 -0.530327 -0.838688 -2.120390 -0.721836 2.016413 -2.390258 -3.007837 3.734433 -0.765275 0.883674 -2.306685 2.525965 1.773371 -0.031221 -1.842625 -2.273232 1.889493 1.126220 0.452234 1.303797 -4.099845 -3.351818 3.010843 2.728377 -2.386269 2.413406 0.563092 2.613059 1.217831 0.853222 -3.027582 2.914272 -4.818083 1.399959 -0.782194 0.173621 0.354918 -0.439150 0.389108 -0.140993 0.944752 -2.894425 4.275790 2.892121 -1.823361 -2.197610 1.941745 -1.776029 -3.427516 -0.987889 1.953062 2.261690 0.192797 0.187534 -0.822785 -2.034901 -0.327789 -3.891265 -1.554384 4.378691 -3.033469 -0.487223 -0.965350 -1.307093 -1.777059 1.171421 0.390490 0.204683 3.998461 2.162205 -1.479523 -0.373944 -2.844464 0.954378 6.604777 3.014501 -3.451209 1.248312 0.231627 0.908067 1.891740 0.228025 0.624913 1.416057 -3.515051 -2.365234 -1.553190 -3.508774 3.604453 3.886586 1.803935 -5.049076 4.788645 -0.070044 -1.589349 6.207796 2.822584 -3.556233 -0.353309 3.960856 -3.597783 -2.190028 0.776655 -0.839438 -1.135330 -1.375419 0.901678 0.018510 -3.514864 -4.082874 -0.884866 -4.124240 3.503165 0.964770 1.503219 -1.406106 -3.109289 -2.833190 6.480464 0.296656 -1.386019 -0.150159 -0.794037 -0.761450 -4.755987 0.989284 1.927881 -1.992192 -2.304499 -2.309284 0.949903 3.668021 -4.040289 -0.335054 -0.403941 -2.055867 1.433873 -0.639753 1.396774 -5.697617 -2.756778 -0.626445 0.760705 2.222041 -0.041595 2.048864 5.529161 -1.788305 1.636000 4.024591 0.010926 0.638402 4.657499 -1.557064 3.483216 -2.277629 4.144885 0.416396 3.282395 -2.412676 -1.722201 0.004096 -0.427326 -1.535891 3.616015 -3.468266 0.605677 1.981112 -2.239391 -1.243455 3.706886 1.441978 1.738958 -1.058327 0.990688 -2.138015 0.408318 -0.919737 0.024412 3.338737 -0.165572 -4.631098 -1.336486 2.271427 -2.210443 -1.806416 1.389718 0.382110 4.169873 -2.992751 2.768312 0.404847 -1.444746 -4.341453 -3.650798 2.056247 -3.662585 -3.024882 1.982804 -4.351903 -1.348483 -2.181516 2.165480 -4.004616 -1.196675 -0.162361 3.315376 1.620552 -0.317638 1.727626 0.072360 3.117339 0.340547 0.068384 -0.066589 4.042589 +PE-benchmarks/union-find.cpp__find(int*, int) = -1.255987 1.035614 0.458264 -0.722222 2.410520 0.239229 0.574454 1.061453 -0.709043 1.484914 -1.982394 -0.373142 -0.454565 -1.820744 0.050976 -0.833185 0.297640 0.098947 -0.444125 0.227958 0.714680 -0.864985 0.080802 -0.920460 -0.222229 -2.113853 -0.578248 0.146287 1.449720 -0.089908 0.016627 0.048875 2.335297 0.100142 1.717385 1.282377 0.868687 1.481393 0.262660 -0.222649 -0.063328 1.268517 -0.961691 -1.486960 -0.080770 -1.230694 -1.345061 -0.653524 0.539298 -1.176371 -0.234796 1.291450 -0.160014 0.150583 -1.006662 0.920614 1.552068 -0.257497 2.156364 0.496708 -1.008238 -0.702212 -1.173396 1.561400 -0.746203 0.485207 -0.266291 -1.462157 -0.003928 0.310931 -0.478182 -0.548948 -0.631766 1.024132 0.851734 -1.281001 0.628112 -0.454559 -1.626471 -1.486351 -1.052889 0.494363 -0.039991 1.619095 0.080546 -0.011012 0.496219 0.221617 0.102481 -2.087280 -0.289514 1.940190 -1.045671 -0.288522 -0.972876 1.220812 0.188462 0.596962 -0.901034 -1.003064 0.392805 0.144596 0.230002 -1.461572 -0.088045 -1.773806 0.485684 0.158844 0.019392 1.202201 0.610097 0.618255 1.015246 1.437122 -1.768369 0.356673 -1.567122 0.674285 -0.402128 0.032890 -0.264864 0.379957 0.424267 0.559498 1.552299 -2.093286 1.004659 0.798283 -0.658025 -1.610620 -0.068810 -1.383635 -1.404478 -0.153178 0.693806 0.357902 0.279258 -0.871174 0.222357 -0.321552 -0.815003 -0.755902 0.074812 1.616582 -2.033215 -0.160822 -0.129615 -0.127765 -0.846383 1.326927 0.916171 0.748184 1.993377 1.002180 -0.593505 1.247667 -1.623317 0.399639 2.673486 0.806161 -1.685998 1.227764 -1.442212 0.053230 0.773282 0.689356 0.943058 0.381522 -1.600453 -0.720893 0.627254 -0.303124 2.043579 0.790536 0.602650 -1.334235 2.038234 -0.386242 -0.928909 2.227417 1.280544 -2.024976 0.970440 1.067838 -1.622951 -0.096753 0.904850 -1.408385 -0.376174 -1.271841 0.093652 0.735843 -1.086149 -0.500802 0.132574 -1.787938 2.170210 0.198213 0.525733 0.413844 -1.243281 -1.584176 2.307163 0.026762 -0.141406 -0.712614 -0.676229 -1.553135 -1.942352 0.205298 0.192350 -1.217535 -0.626824 -1.655223 0.096934 1.477375 -0.492575 1.146032 -2.158254 -0.237553 0.734246 0.599683 0.843036 -0.974401 -0.999866 -0.287900 -0.416242 0.824783 -1.215883 1.461285 1.934070 -0.753966 1.733328 -0.577957 -1.151557 0.342378 0.875482 -1.464828 1.834892 -0.305236 1.360317 0.149738 1.326187 -1.169791 -0.307504 -0.167833 -0.687580 -0.622249 1.001204 -1.338829 -0.050810 0.638323 -1.326143 -1.078372 0.524100 0.069193 0.535522 -0.044486 -0.023968 -1.366284 -0.113536 -0.894418 0.368687 1.215959 -0.189052 -1.323678 0.327357 0.364506 -0.234300 -0.489003 0.232282 0.153562 1.292927 -1.624587 -0.096091 0.187565 0.150554 -1.556897 -2.224300 0.141693 -1.351635 -1.339547 1.138856 -2.147765 -0.121149 -1.229759 -0.183473 -2.133288 -0.762194 0.549446 2.387389 0.413147 -0.971907 0.620769 -0.091384 1.197353 -0.021660 0.575114 0.355515 0.774025 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = -1.338168 0.869716 0.070079 -0.755767 3.070125 0.417445 0.484306 1.654283 -1.002014 1.594368 -2.120750 -0.208152 -0.403654 -1.862613 0.111517 -0.258451 0.369939 0.111386 -0.716189 -0.008048 0.768329 -0.675897 0.220690 -0.959765 -0.200669 -1.847123 -0.644943 0.170069 1.531791 0.110047 -0.556972 -0.008683 2.389273 -0.039759 1.617362 1.154586 1.201907 1.489914 0.221041 -0.445600 0.150845 1.303578 -1.018771 -1.653169 0.077953 -1.557888 -1.607242 -0.605408 0.669800 -1.482368 0.058595 1.346571 -0.109300 0.047190 -0.858551 1.053021 1.619994 -0.533820 2.294119 0.585912 -1.457488 -1.091388 -1.155422 1.906661 -0.680957 0.905248 -0.300669 -1.864307 -0.449776 0.536728 -0.213768 -0.903845 -0.845260 0.972075 0.790678 -1.218275 0.825036 -0.402566 -0.674120 -1.680126 -1.195361 0.502391 -0.497307 1.700802 0.013274 -0.067553 0.250096 0.050096 0.176103 -2.173295 -0.398928 2.082781 -1.167723 0.077674 -1.467982 0.798067 -0.015172 0.603391 -1.065666 -1.186842 0.373407 0.438795 0.219277 -1.673615 0.282094 -1.783087 0.606422 0.341646 0.310612 1.344259 0.568526 0.480725 0.902394 1.470101 -1.531272 0.354943 -1.625926 0.716412 -0.500122 0.151140 -0.500571 0.396693 0.915553 0.466457 1.619298 -2.201398 1.198597 0.806110 -0.879400 -1.609036 0.055411 -1.399145 -1.575910 0.020532 0.768506 0.216549 0.190060 -0.860465 0.431371 -0.427750 -1.451961 -0.732449 -0.162251 1.474099 -2.430355 -0.198502 -0.144191 -0.168321 -0.765916 1.488334 1.014191 0.800078 2.126953 1.069695 -0.664578 1.334884 -1.828856 0.792133 2.997429 0.971901 -1.861101 1.173880 -1.669179 0.290465 0.931823 0.605639 0.882866 0.659345 -1.342180 -0.394158 0.641559 -0.187526 2.236821 1.039971 0.943610 -1.650063 1.682623 -0.780795 -0.667676 2.412848 1.418696 -2.366508 1.120315 1.226263 -1.238706 0.180495 0.772344 -1.573870 -0.655823 -1.408035 0.177411 0.989885 -1.349536 -0.731671 0.261056 -1.848934 2.390306 0.215243 0.344433 0.413448 -1.451085 -0.918326 2.529388 0.192017 -0.130875 -0.618786 -0.733503 -1.749396 -2.106294 0.209705 0.378127 -1.251195 -0.720257 -1.751218 -0.148116 1.743378 -0.483437 1.105995 -2.593554 0.097983 0.792632 0.404709 1.010526 -1.379652 -1.061166 -0.488719 -0.632442 0.969521 -1.585256 1.250814 1.841983 -0.941165 1.941756 -0.254590 -0.870335 0.166509 0.884771 -1.285869 1.928448 -0.146068 1.706590 0.108276 1.560378 -1.211661 -0.145106 -0.458601 -0.495643 -0.700604 1.339004 -1.606762 -0.119615 0.881934 -1.359570 -1.379809 0.630624 0.179379 0.696386 -0.091143 -0.412972 -1.357600 -0.226013 -0.966245 0.436616 1.296703 -0.686979 -1.603964 0.175732 0.366957 -0.610496 -0.489435 0.383167 0.230806 1.553857 -1.716677 -0.013758 0.326966 0.276976 -1.950306 -2.152938 -0.075570 -1.085524 -1.355504 1.364438 -2.358869 -0.451613 -1.279977 -0.081744 -2.329448 -0.824929 0.462204 2.542614 0.337672 -0.865197 0.829142 0.104535 1.196413 -0.080130 0.656563 0.408726 0.656993 +PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.617453 0.254172 0.033313 -0.239736 1.509759 0.219081 0.041734 1.233460 -0.436373 0.742033 -0.815019 -0.013275 -0.199572 -0.750196 0.115452 0.107894 0.121402 0.126560 -0.413400 -0.183839 0.462357 -0.071398 0.026417 -0.362555 -0.055023 -0.688406 -0.282640 0.035067 0.687482 0.212482 -0.493874 0.040302 1.019504 -0.044674 0.760717 0.506742 0.845822 0.610953 -0.037292 0.076041 -0.033654 0.658969 -0.531565 -0.783805 0.214955 -0.818193 -0.669944 -0.147113 0.340375 -0.717621 0.267048 0.615935 -0.057034 0.130268 -0.078156 0.503965 0.452727 -0.260686 0.981145 0.368675 -0.864563 -0.656188 -0.622298 1.021612 -0.231994 0.701129 -0.148103 -0.996287 -0.398772 0.113035 0.057458 -0.510252 -0.245292 0.533521 0.222302 -0.447407 0.521973 -0.147773 0.251377 -0.674546 -0.697973 0.188891 -0.345616 0.758522 -0.103126 -0.100754 -0.067875 -0.014628 0.031501 -1.029458 -0.144106 0.952663 -0.692171 0.284043 -1.001488 -0.060925 -0.157165 0.477238 -0.387799 -0.542148 0.238951 0.391717 0.128351 -0.727469 0.238305 -0.666292 0.383115 0.097899 0.280224 0.573340 0.116463 0.094060 0.332402 0.759099 -0.432102 0.276660 -0.653419 0.431073 -0.287012 0.270590 -0.243002 0.208225 0.674204 0.112931 0.714642 -0.934349 0.436232 0.277433 -0.437082 -0.689537 0.122590 -0.793342 -0.787136 -0.080984 0.466382 0.097989 -0.109817 -0.470806 0.325727 -0.188891 -0.910859 -0.489569 -0.248251 0.314845 -1.217335 -0.173860 -0.175652 -0.149399 -0.343400 0.720309 0.477373 0.493158 0.921142 0.561969 -0.255079 0.443714 -0.871490 0.389925 1.296556 0.426474 -0.881031 0.473542 -0.838853 0.232599 0.523866 0.228472 0.370044 0.617170 -0.342770 0.033202 0.216823 0.065654 1.087896 0.691280 0.563047 -0.762976 0.383851 -0.649839 -0.444984 1.138923 0.731168 -1.187397 0.450777 0.369894 -0.258312 0.148364 0.245055 -0.750191 -0.312135 -0.651883 0.097617 0.581133 -0.738918 -0.360825 0.410440 -0.858953 1.117011 0.063663 0.333159 0.251713 -0.843953 -0.168841 1.152668 0.195365 -0.164604 -0.353513 -0.324622 -0.857495 -0.824878 0.190244 0.215461 -0.398418 -0.487976 -0.810820 -0.149074 0.898716 -0.109881 0.452600 -1.236074 0.059350 0.320609 -0.208152 0.618333 -0.868999 -0.519056 -0.497770 -0.369205 0.635985 -0.753608 0.362478 0.943871 -0.486476 0.940285 0.178411 -0.326082 -0.182443 0.409904 -0.549177 0.823800 0.000894 0.590229 -0.022724 0.741719 -0.667873 -0.058712 -0.274000 0.006481 -0.227590 0.712830 -0.554936 -0.015543 0.292932 -0.876613 -0.483071 0.236570 0.017099 0.331159 0.003653 -0.300225 -0.693126 -0.164405 -0.532277 0.127943 0.721895 -0.481924 -0.780845 0.069449 -0.120587 -0.478131 -0.303551 0.251295 0.069727 0.807851 -0.775104 -0.110864 0.255820 0.061452 -0.994545 -0.831380 -0.345559 -0.370313 -0.638123 0.592043 -0.991399 -0.218700 -0.590087 -0.050156 -1.138485 -0.469021 0.095371 1.133016 0.197636 -0.301135 0.512889 0.164184 0.673010 0.076803 0.246818 0.182733 0.318254 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -7.885493 6.152806 5.998847 -3.082741 9.741841 2.437311 2.846230 3.259851 -3.945984 8.867396 -11.520943 -4.374450 -5.001820 -7.361232 -1.238910 -7.085566 2.045675 -1.435293 -2.088762 3.327300 4.534660 -6.461220 -0.194333 -5.131706 -1.274010 -9.388322 -5.022255 0.167451 9.994824 -3.543094 -0.314826 -0.260591 15.190786 1.923688 12.439001 8.675304 2.863077 10.719281 1.468457 -2.498202 -3.472901 9.917261 -7.411358 -6.722439 -0.581358 -8.729461 -4.632567 -3.626980 3.188060 -2.023213 -0.304994 7.829841 -1.979734 3.013483 -6.656094 4.520961 7.895933 1.837110 14.824845 1.768605 -3.618413 -0.471746 -7.692471 5.086576 -4.056496 2.925474 -3.297241 -5.980799 3.099157 -3.111349 0.261494 -7.421352 -3.792257 8.603118 2.921979 -8.180131 4.124900 -3.168626 -12.048932 -12.010455 -8.759779 1.987037 1.600463 8.930099 -0.737600 -0.171678 -0.464455 3.743232 -0.503422 -14.182165 0.112952 10.400416 -6.845244 -1.684137 -2.571798 9.017641 -1.238695 6.144268 -7.456252 -3.365887 2.439070 -0.156817 1.383154 -9.413861 3.101867 -9.861506 3.270920 -1.033112 -0.870236 3.681886 6.983565 5.744274 11.052222 10.551993 -10.764045 1.012703 -8.681558 2.378956 -1.671163 -1.066860 0.962965 5.112886 -2.501452 1.839468 11.243976 -13.336113 3.000121 3.717648 -5.253439 -11.348008 -1.358269 -11.075860 -9.266009 -2.511691 4.219084 3.779746 1.949372 -8.322125 -0.228823 -2.949337 -2.091077 -4.244468 3.215229 10.704446 -9.377264 -2.124896 -0.919694 -1.507288 -5.354700 8.997567 5.457842 5.188141 12.131179 6.323832 -4.020635 3.519562 -9.246243 -0.738160 12.304431 4.111232 -11.241966 8.070133 -7.014273 -0.514785 5.891295 5.812439 7.967521 -0.680015 -9.860629 -6.437192 4.174773 -1.010996 12.455466 1.708887 4.146197 -2.048303 14.329811 -1.795780 -9.125505 11.846313 5.314963 -9.374976 2.535847 3.440218 -5.870025 -1.015824 7.115892 -7.997306 -0.227160 -6.689453 -1.460404 3.383469 -5.124392 -0.776389 1.962579 -11.885536 14.671403 0.730022 4.409097 3.612052 -9.751674 -12.066868 12.554321 -1.613277 -1.275291 -4.892222 -3.923560 -6.521727 -11.308610 1.984699 -0.593318 -5.915029 -4.648342 -10.767260 3.927922 6.075130 -1.441299 7.933439 -9.538938 -5.208526 3.920906 1.049319 6.856977 -3.224354 -6.642925 -1.151176 -1.908076 7.343474 -6.402658 11.507871 14.247545 -3.705901 8.216258 -2.780933 -4.438438 1.939587 4.672022 -11.400863 10.866434 -3.237233 7.373563 -0.807578 7.078122 -7.254795 -3.539196 1.443069 -0.045131 -2.639302 4.351990 -4.936583 0.411003 -0.639851 -9.288319 -3.208520 1.187492 -2.654779 -1.064626 1.099148 2.034243 -9.222627 -1.052532 -5.570037 1.358839 8.003988 1.442608 -6.583866 3.338353 -1.487176 1.750605 3.006684 -0.170443 -0.865059 6.520577 -9.990358 -5.040148 -0.059721 -0.357484 -5.607544 -13.931939 -1.323683 -8.336900 -7.179401 9.166199 -10.355125 1.597986 -8.101388 -3.808513 -10.758757 -3.001481 3.836497 14.764731 6.223352 -8.921546 1.712723 -1.492225 9.785798 0.532217 1.912326 0.981820 4.692390 +PE-benchmarks/optimal-binary-search-tree.cpp__main = -0.740141 0.062637 0.088160 -0.456538 1.730575 -0.030861 0.029034 0.963846 0.728594 0.398049 -1.370259 -0.789723 -0.326189 -0.734770 0.276503 -0.021050 0.186632 0.484973 -0.911510 -0.642128 0.679128 0.531006 -0.036911 -0.815585 0.128800 -0.141012 -0.748662 -0.070579 -0.182193 0.443683 -0.836040 0.367952 1.143247 0.152672 0.775382 0.616676 1.083521 1.242384 -0.543539 1.377850 0.659768 0.780798 -0.376574 -1.372916 0.600675 -1.070826 -0.691809 -0.489581 0.333369 -1.082780 1.583040 0.603040 0.275437 -0.071811 -0.083165 0.215283 0.506948 0.447567 0.854926 0.861419 -1.291597 0.372436 -0.783608 0.717919 -0.560205 1.839034 0.198377 -1.564103 -1.252683 0.583821 1.198785 -1.099582 -1.205364 -0.165795 -0.045139 -0.102131 0.808324 0.042388 1.275562 -0.239394 -1.002832 0.292887 -0.466683 0.762820 -0.308001 -0.410422 -0.694072 -0.418927 0.490925 -0.566133 -0.812649 0.984955 -0.660740 0.965765 -1.229787 -0.913028 -0.276503 0.261484 -0.433488 -0.778425 0.376780 0.650639 0.031592 0.524383 -0.477171 -0.471280 1.111820 0.995853 -0.216291 0.072354 0.116394 0.065934 0.047850 0.221275 0.003580 0.638910 -0.933826 0.481774 -0.320714 0.211340 -0.152851 0.011379 0.640947 -0.220038 0.279775 -0.578023 0.974034 0.404952 -1.047151 -0.138573 0.503044 -0.565401 -1.231266 -0.047045 0.644394 0.525421 -0.239022 -0.031449 0.208533 -0.643951 -0.606154 -0.570105 -0.756655 -0.318680 -0.573708 -0.380828 -0.289866 -0.473046 -0.493081 0.677033 0.174493 0.187728 0.986255 0.549515 -0.456930 -0.818695 -0.939665 0.640672 1.558360 0.120298 -1.028724 0.110438 -0.405427 0.789831 0.735528 0.043068 -0.158629 0.878194 0.277811 0.586891 -0.941785 -0.448245 1.098593 1.248534 0.827642 -1.247341 -0.181354 -0.922618 -0.124277 1.641785 1.121383 -1.359713 -0.290750 0.898390 -0.007688 -0.405448 0.078130 -0.360987 -0.461697 -0.740228 0.431074 0.400213 -1.128979 -0.844711 0.615670 -1.002376 0.984744 0.188823 0.167387 -0.061537 -1.358675 -0.163312 1.810682 0.119098 -0.182089 0.081335 -0.228936 -0.014015 -1.183806 0.290642 0.670688 -0.251913 -0.650735 -0.560021 0.282757 1.388308 -0.849670 0.141393 0.083165 -0.110175 0.288518 -0.955249 0.827075 -1.398311 -0.752503 -0.688242 -0.294130 0.825232 -0.629290 -0.430398 1.105021 -0.602558 0.737398 1.462727 -0.234534 -0.709100 0.952631 0.003870 0.806530 -0.281000 0.275819 -0.117847 1.029037 -0.691840 -0.302437 -0.339868 0.376533 -0.495167 1.224634 -0.883795 0.184471 0.359648 -0.942639 -0.244671 0.937472 0.366067 0.489728 -0.276025 -0.222369 -0.688763 0.058951 -0.209409 0.094037 0.920466 -0.406187 -1.299721 -0.412189 0.154882 -1.369875 -0.506990 0.499641 -0.117291 1.476837 -0.693360 0.333268 0.580946 -0.264967 -1.475569 -0.489200 -0.527708 -0.639808 -0.456574 0.461506 -0.785307 -0.803959 -0.510605 0.590127 -0.569476 -0.560040 -0.069294 0.868013 0.777545 0.003578 0.672910 0.482834 0.801195 0.213699 -0.348088 0.306949 0.621335 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -1.512436 0.681929 0.153670 -0.598036 2.942166 0.140522 0.648107 1.398478 -1.270625 1.726041 -2.090501 -0.437674 -0.782796 -1.993406 0.106751 -0.007517 0.757719 0.025806 -0.512521 0.285878 0.914271 -1.129197 0.241865 -0.947455 -0.163676 -1.725329 -0.571611 0.206521 2.018693 -0.391564 -0.684125 0.114513 2.694216 0.115470 2.055271 1.363648 0.836359 1.766422 0.459464 -1.542526 -0.243444 1.690306 -1.194258 -1.816124 0.101577 -1.577600 -1.399344 -0.856977 0.857406 -0.987300 -0.315106 1.567981 -0.264385 0.269543 -1.311233 1.014045 1.959022 -0.293922 2.727957 0.530282 -1.014261 -0.801892 -1.170362 1.375546 -0.751067 0.411123 -0.648524 -1.729135 -0.066787 0.214616 -0.438381 -1.222289 -0.666475 1.230000 0.786921 -1.464946 0.958415 -0.279670 -0.672169 -2.584836 -1.774566 0.353897 -0.480557 1.985855 -0.098924 -0.032670 0.290974 0.200066 0.189500 -2.546621 -0.123349 1.738360 -1.371728 -0.256957 -0.429795 1.449607 -0.128061 0.731623 -1.389764 -1.232747 0.344132 0.010073 0.340742 -1.622948 1.082847 -1.585071 0.449535 -0.138950 0.544594 1.294152 1.488694 0.566138 1.303625 1.722481 -1.780083 0.029785 -1.756553 0.690402 -0.509070 0.036908 -0.345764 0.778526 0.902878 0.239036 1.962034 -2.714647 1.014582 0.926990 -0.558274 -1.840626 0.033734 -1.659255 -1.676222 -0.217182 1.090353 0.120290 0.269525 -1.126404 0.524919 -0.350303 -1.404620 -0.030302 -0.105611 2.093590 -2.761474 -0.185622 -0.274970 -0.452502 -0.689681 1.448588 0.992225 1.094025 2.288312 1.315747 -1.165504 1.353529 -2.094612 0.705550 3.090279 0.524801 -1.999009 1.378923 -1.692775 0.219847 1.191860 0.909537 1.457575 -0.071984 -1.412896 -0.469798 1.318561 0.025978 2.455286 0.312419 1.234815 -1.444299 2.002905 -0.359488 -0.899356 2.579218 1.001871 -2.623901 1.463791 1.199107 -1.302638 0.332377 0.891315 -1.691437 -0.459857 -1.751767 0.230133 1.119540 -1.550659 -0.512663 0.205150 -2.079471 2.545517 0.190572 0.396757 0.803696 -1.539994 -0.621660 2.730016 0.258002 -0.034153 -0.970562 -1.086530 -1.911276 -2.349860 0.318462 -0.161077 -1.226957 -0.627718 -2.064317 -0.148670 1.829736 -0.156580 1.239775 -2.908547 0.312141 0.884806 0.697589 1.026860 -0.878335 -1.234669 0.035511 -0.860231 0.969630 -1.661145 1.590059 2.017923 -1.190492 1.742865 -0.412983 -0.557270 0.624611 0.775230 -1.753981 2.121357 -0.203613 2.330571 0.038389 1.644873 -1.429941 -0.193490 -0.286389 -0.379336 -0.830662 1.193119 -1.589169 -0.158885 0.902849 -1.381465 -1.702298 0.353112 0.022183 0.678327 0.055923 -0.428573 -1.579410 -0.101794 -1.095389 0.658174 1.492214 -0.470712 -1.633572 0.366316 0.375207 -0.115215 -0.358736 0.364742 0.054357 1.616519 -1.980792 -0.355841 0.172284 0.593127 -1.418605 -2.551219 0.125895 -1.171125 -1.191255 2.046620 -2.569187 -0.094176 -1.433849 -0.205429 -2.604438 -0.273915 0.275499 2.810467 0.407391 -1.174408 0.847285 0.052411 1.211402 -0.187070 0.639736 0.171213 0.756913 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = -0.664323 -0.258640 0.435732 -0.311841 2.475239 -0.811346 0.236634 1.792885 0.906806 0.421205 -1.113866 -0.361012 -0.159264 -0.428465 0.517796 -0.243328 0.496673 0.943638 -1.100394 -1.078561 0.454934 1.667008 -0.262963 -0.438869 -0.124433 -0.421381 -0.820608 0.235227 -0.777193 0.202186 -0.926973 1.130444 1.743276 -0.269562 1.270285 0.942502 1.781227 0.960411 -0.377488 1.599951 1.462390 0.191985 -0.202045 -1.111250 0.196881 -0.537681 -1.309827 -0.171550 0.362423 -1.138039 1.739978 0.538908 0.440403 0.343613 0.260614 0.758299 -0.389365 -0.061890 0.627659 1.031026 -2.334971 0.585655 -0.748309 2.131060 -0.639089 1.939099 -0.655576 -2.188263 -1.651828 1.285659 1.527677 -1.511060 -1.298774 -0.346454 -0.125413 -0.121518 0.809117 0.501272 2.511648 -0.055164 -1.114004 0.787598 -0.412030 0.463446 -0.093597 -0.341757 -1.127847 -0.580120 0.310708 -0.505117 -0.726377 1.441458 -1.288723 1.130606 -2.251079 -1.863599 -0.020597 0.036635 0.150169 -1.850549 0.508474 0.037851 0.001166 0.622553 -0.080291 0.026667 0.530368 1.146026 0.098488 0.582245 -0.955538 0.351250 0.287077 -0.012842 0.796061 0.537483 -1.344252 1.326608 -0.905828 -0.228498 -0.435014 -0.178058 1.047601 0.512766 0.342665 -0.617528 0.903020 0.130832 -1.115109 0.158456 0.397731 -0.110930 -1.200614 -0.288874 0.964593 0.557710 -0.212701 0.185187 0.545171 -0.461395 -0.206420 -0.980677 -1.039366 -1.094798 -0.654703 -0.287667 -0.198945 -0.277032 -0.649468 0.927611 0.493000 0.574447 1.055680 0.537197 -0.391246 -1.075435 -1.750764 0.469915 1.161139 -0.162952 -0.858554 0.629614 -0.902348 0.466845 0.622131 0.615251 -0.712033 0.842070 0.516026 0.671333 -1.274944 -0.017416 1.290869 1.310587 0.288586 -1.265245 -1.190025 -1.788922 -0.069820 1.809044 1.344329 -1.794774 -0.494845 1.309209 0.662004 -1.113211 0.424965 -1.361975 -1.186899 -0.749094 0.584749 0.818759 -1.287276 -0.180465 1.646266 -0.758991 0.535341 0.054826 -0.863013 -0.197519 -1.491632 -0.565672 2.292404 0.176684 0.484991 0.298660 -0.707898 0.714701 -1.403143 -0.046991 1.022627 0.229058 -0.314500 -0.469637 0.078169 1.585945 -0.866530 0.690154 -0.061798 0.136998 0.616076 -1.206476 0.441608 -1.844182 -0.508607 -0.853471 -0.498371 0.255817 -1.239043 -0.803258 0.726357 -0.528526 1.076900 1.749175 -1.363539 -1.105367 0.594860 -0.246100 1.021120 0.103519 -0.197474 0.564840 0.759351 -1.026314 -0.494669 -0.743019 0.533786 -1.281420 1.217902 -1.126173 0.160440 0.137060 -0.829933 -0.540397 0.696284 0.953078 -0.016155 -0.387333 -0.424495 -0.668255 -0.111773 -0.857629 0.589906 0.666443 -0.927915 -1.135091 0.420036 0.523642 -2.374640 -0.596980 0.375573 0.242865 1.552094 -0.821848 0.371447 1.015845 0.429368 -2.171560 -0.862516 -0.518898 -1.087228 -0.503346 -0.804681 -0.870366 -1.851982 -0.317998 0.904474 -0.609959 -1.086302 0.746544 1.233710 0.541082 -0.061166 0.690690 0.390971 0.276681 0.206915 -0.174397 0.264708 0.489202 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.968389 1.009836 -0.040492 -0.878054 2.576683 -0.149311 0.371743 1.410641 -0.755862 0.882229 -1.839766 0.490007 0.068328 -1.784613 0.392282 0.212956 0.291274 0.606191 -0.344767 0.116225 0.674588 -0.459070 0.020627 -1.109654 -0.111637 -1.458881 -0.179500 0.092658 0.598394 0.378544 -0.411046 0.393453 1.500849 0.052633 0.895929 1.064796 0.991252 1.308239 0.485520 -0.235681 0.599555 0.680156 -0.418119 -1.724246 0.406315 -0.950768 -1.165269 -0.757988 0.337396 -1.508770 0.486536 1.027336 0.185163 -0.363416 -1.061363 0.685559 1.578834 -0.462871 1.346016 0.836506 -1.108511 -0.784641 -0.618578 1.178233 -0.749186 0.675700 0.387116 -1.413552 -0.381658 1.167655 0.371556 -0.759534 -0.910038 0.005114 0.287381 -0.827570 0.654193 -0.184424 -0.192074 -0.984434 -0.668233 0.529728 -0.431757 1.422571 0.107091 -0.112772 -0.358762 -0.275837 0.585400 -1.076064 -0.842587 1.371751 -0.557427 0.240989 -1.246752 0.813998 0.606049 -0.164370 -0.502210 -1.166902 0.523364 0.403871 0.180366 -0.694181 -0.341795 -1.296922 0.678761 0.596201 -0.157659 1.209554 -0.038078 0.475454 0.151509 0.472611 -0.753628 0.405186 -1.722862 0.508118 -0.121252 0.109455 -0.430473 -0.225836 0.949556 0.171356 0.609681 -1.372689 1.516121 0.880478 -0.478395 -0.917919 0.491059 -0.455266 -1.073332 -0.021139 0.675084 0.285792 0.128788 0.124518 0.325155 -0.424728 -1.122549 -1.054324 -0.599057 1.704952 -1.985928 0.007739 -0.208004 -0.220162 -0.530935 0.554751 0.462682 0.315510 1.522353 0.780365 -0.455222 1.114479 -1.318144 0.769094 2.515948 1.319531 -1.211644 0.665942 -0.819589 0.276506 0.530469 0.199739 0.212687 0.591177 -1.214762 -0.476665 0.356387 -0.760620 1.442504 0.887277 0.752925 -1.803309 1.284534 -0.270267 -0.163479 2.024971 1.039450 -1.784751 0.874116 1.623212 -0.856841 -0.120663 0.351012 -0.936075 -0.661784 -0.746314 0.385852 0.533674 -1.387195 -1.149256 -0.307874 -1.238212 1.364231 0.340938 0.231142 -0.147443 -0.806414 -0.159316 2.090130 0.203396 -0.170484 -0.212756 -0.525179 -1.180066 -1.689550 0.138779 0.682896 -0.970564 -0.542878 -1.043057 -0.409230 1.579129 -1.059034 0.125263 -1.802627 0.155463 0.658726 0.413165 0.411904 -1.626873 -0.792555 -0.138936 -0.098530 0.482448 -0.878613 0.761589 1.360979 -0.816455 1.175263 0.527543 -0.095724 0.357937 1.189121 -0.544440 1.364033 -0.130152 1.777856 0.400282 1.251845 -1.022011 -0.181696 -0.452472 -0.458472 -0.648234 1.206049 -1.581052 -0.059166 1.116003 -0.531343 -1.228741 1.036147 0.720774 0.861788 -0.406976 -0.278932 -0.366143 -0.112076 -0.746374 0.391026 0.953658 -0.742996 -1.410056 -0.256187 1.055356 -0.925636 -0.538967 0.584982 0.398717 1.499493 -1.190954 0.941830 0.239114 0.163301 -1.881472 -1.580380 0.575609 -0.751240 -0.997047 0.735952 -2.183441 -0.828352 -0.745230 0.691616 -2.026966 -0.333194 0.030984 1.487214 -0.067605 -0.059529 0.810848 0.096869 0.561464 -0.150164 0.504739 0.080080 0.830630 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.491615 0.720529 0.347387 -0.626544 1.632987 -0.050961 0.225906 0.930381 -0.341776 0.548815 -1.107082 0.500319 0.268946 -0.850943 0.250025 -0.173396 -0.061489 0.281371 -0.246796 -0.014742 0.259106 -0.011377 -0.059112 -0.623044 -0.182607 -1.169981 -0.119741 0.113029 0.281975 0.345236 -0.081756 0.192519 0.745244 -0.233829 0.459763 0.628757 0.789972 0.485588 0.103902 0.095413 0.604399 0.163934 -0.208400 -0.763571 -0.030858 -0.411708 -0.887453 -0.295582 0.147400 -1.002972 -0.012250 0.528911 0.173250 -0.273197 -0.398773 0.770375 0.626090 -0.455653 0.627437 0.484874 -0.802819 -0.477873 -0.494657 1.073921 -0.415311 0.535557 -0.068563 -0.871030 -0.350884 0.888415 -0.056059 -0.155497 -0.303098 -0.046686 0.222242 -0.500585 0.308144 -0.199269 -0.042486 -0.299559 -0.011204 0.512071 -0.005154 0.670402 0.188666 -0.018494 -0.056287 -0.108257 0.240525 -0.538632 -0.589360 0.965814 -0.406217 -0.099896 -0.937665 0.245911 0.584963 -0.170911 0.068940 -0.790920 0.360008 0.268670 0.040708 -0.691333 -0.126942 -0.823169 0.187036 0.570062 -0.086937 0.772352 -0.738319 0.363153 0.020011 0.225949 -0.310795 0.355318 -0.994324 0.339007 -0.270030 0.055182 -0.372330 -0.272261 0.624614 0.514646 0.298540 -0.630205 0.947341 0.406324 -0.325655 -0.409568 0.242002 -0.127983 -0.577007 0.058357 0.199738 0.262056 0.096847 0.171647 0.303614 -0.235766 -0.361401 -0.751534 -0.257098 0.674206 -1.128529 0.028153 0.005010 0.168702 -0.390285 0.441718 0.415670 0.088312 0.919381 0.343101 -0.010826 0.654885 -0.755401 0.381212 1.302572 0.560175 -0.552075 0.485694 -0.654172 0.017397 0.150808 0.124714 -0.185002 0.722847 -0.875030 -0.427146 0.030491 -0.520672 0.830511 0.642779 0.150793 -1.077371 0.683724 -0.664057 -0.089790 0.975312 0.918552 -1.088062 0.406059 1.008049 -0.571667 -0.310719 0.328061 -0.710866 -0.448608 -0.271550 0.114014 0.298727 -0.629713 -0.636541 -0.081855 -0.607959 0.718550 0.189963 0.040087 -0.216856 -0.189421 -0.405322 1.079016 0.134070 -0.079018 -0.064854 -0.170672 -0.715411 -0.927675 -0.042233 0.587961 -0.584755 -0.303365 -0.531809 -0.215549 0.734730 -0.803143 0.155597 -1.094704 0.011914 0.401983 0.280697 0.217149 -0.786086 -0.328950 -0.375634 -0.158847 0.112624 -0.693978 0.458109 0.767175 -0.299417 0.980431 0.038180 -0.683593 0.009214 0.717523 -0.283308 0.827663 0.102174 0.668881 0.402219 0.630633 -0.647460 -0.126421 -0.353873 -0.694527 -0.374940 0.682632 -0.948747 -0.028237 0.493294 -0.336356 -0.600800 0.676414 0.545670 0.359731 -0.305972 0.026002 -0.268880 -0.149411 -0.635646 0.170226 0.413526 -0.569504 -0.800797 -0.021604 0.758357 -0.788924 -0.622197 0.264393 0.345481 0.795435 -0.633052 0.670180 0.265204 0.140001 -1.438412 -0.841602 0.279674 -0.580018 -0.692670 -0.111198 -1.133598 -0.681724 -0.379358 0.416137 -1.137367 -0.663277 0.384786 0.875481 -0.125554 -0.081149 0.409189 -0.054225 0.287762 0.029888 0.349265 0.059048 0.276627 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = -0.656330 -0.290495 0.451960 -0.205820 2.392075 -0.754866 0.180428 1.874768 0.823032 0.516139 -0.907902 -0.400666 -0.211616 -0.362970 0.475693 -0.253793 0.461977 0.931270 -1.040415 -1.019280 0.456909 1.636175 -0.260482 -0.258673 -0.175845 -0.365793 -0.814584 0.269265 -0.662842 0.116226 -0.887032 1.089173 1.755118 -0.266454 1.383998 0.939250 1.735414 0.877123 -0.352210 1.561973 1.234016 0.205388 -0.295115 -1.019036 0.203116 -0.515521 -1.282639 -0.122676 0.377239 -1.025354 1.688821 0.564266 0.341912 0.475970 0.373539 0.732881 -0.573668 -0.056872 0.677671 0.945484 -2.317182 0.525837 -0.808280 2.149653 -0.540314 1.847556 -0.757897 -2.184613 -1.539048 1.067949 1.470563 -1.521631 -1.157481 -0.091705 -0.105193 -0.157537 0.787827 0.466019 2.392288 -0.116780 -1.207605 0.757085 -0.415173 0.443195 -0.096762 -0.284101 -1.103729 -0.459943 0.134426 -0.682684 -0.503354 1.459305 -1.354131 1.131602 -2.243001 -1.866074 -0.128437 0.197947 0.113958 -1.744878 0.509299 -0.001753 0.054391 0.554918 0.044084 0.033037 0.461500 0.964785 0.230718 0.550079 -0.816766 0.314259 0.446265 0.192605 0.732159 0.509502 -1.217966 1.380958 -0.945339 -0.174907 -0.430582 -0.037762 1.007840 0.516509 0.483525 -0.706874 0.691018 0.037574 -1.063582 0.027039 0.319929 -0.252389 -1.131680 -0.368735 1.002612 0.467263 -0.271702 0.004935 0.525751 -0.371539 -0.271604 -0.962568 -0.942806 -1.142387 -0.655280 -0.265770 -0.226477 -0.313493 -0.626453 1.000360 0.606370 0.760338 1.059467 0.597511 -0.356251 -1.104363 -1.786031 0.372716 1.043008 -0.189269 -0.884102 0.735694 -0.972149 0.377113 0.624556 0.707986 -0.558018 0.814528 0.544628 0.628005 -1.172663 0.226659 1.338909 1.289332 0.274760 -1.065162 -1.234080 -1.775583 -0.240232 1.765657 1.247067 -1.736558 -0.506955 1.079066 0.694173 -1.046055 0.493113 -1.450772 -1.134514 -0.744591 0.513053 0.898809 -1.231581 -0.049740 1.787516 -0.778842 0.596071 -0.014585 -0.796968 -0.077035 -1.565829 -0.603068 2.207208 0.209844 0.450605 0.183187 -0.764504 0.697865 -1.269675 -0.011171 0.950073 0.318127 -0.349959 -0.538717 0.054630 1.511785 -0.596916 0.815155 -0.104501 0.105518 0.622340 -1.304883 0.484128 -1.822353 -0.455859 -0.886684 -0.527949 0.296024 -1.180808 -0.724981 0.758312 -0.526943 1.053237 1.697088 -1.342011 -1.106205 0.451462 -0.401349 1.041418 0.128633 -0.277334 0.525516 0.686749 -0.995566 -0.444731 -0.677363 0.645389 -1.186856 1.143175 -0.923378 0.118070 0.025021 -0.956326 -0.496146 0.456318 0.838922 -0.128633 -0.267422 -0.473742 -0.768156 -0.169336 -0.887670 0.589145 0.689634 -0.902696 -1.003280 0.591560 0.288069 -2.194321 -0.523550 0.337184 0.240477 1.447299 -0.872402 0.161695 0.969625 0.464525 -2.043014 -0.842217 -0.637290 -1.065135 -0.495981 -0.778249 -0.817055 -1.689925 -0.363332 0.727003 -0.588291 -1.063230 0.762702 1.329095 0.569009 -0.170310 0.676913 0.345957 0.330745 0.237103 -0.174888 0.278135 0.512271 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.220647 1.016438 0.028362 -1.018565 3.318962 -0.258197 0.581348 1.281831 -0.765461 1.062601 -2.319707 0.083279 -0.096608 -2.318625 0.551812 -0.102831 0.607837 0.551208 -0.496848 0.118468 0.740048 -0.618240 0.068480 -1.312415 -0.108884 -2.058741 -0.407949 0.232583 0.990700 0.216899 -0.487953 0.591189 2.113124 -0.067973 1.195094 1.323694 1.265626 1.502328 0.439324 -0.926613 0.858479 0.858251 -0.550830 -1.994335 0.203427 -1.083209 -1.769970 -0.818274 0.544996 -1.561670 -0.294586 1.349679 0.204026 -0.363233 -1.436643 1.008129 2.035951 -0.430155 1.775820 1.004474 -1.166490 -0.898320 -0.837963 1.495427 -1.031490 0.666382 -0.154352 -1.858451 -0.627123 1.589938 -0.166711 -0.737513 -1.189900 0.021180 0.741053 -1.102719 0.833669 -0.075555 -0.215028 -1.416352 -0.966178 0.724054 -0.570374 1.856304 0.223280 -0.112300 0.201792 -0.375844 0.722395 -1.446381 -0.949357 1.663099 -0.833747 -0.112213 -1.048300 1.083171 0.867794 -0.249854 -0.701389 -1.769213 0.565380 0.079439 0.193034 -0.891379 0.027399 -1.611066 0.495487 0.696348 0.089706 1.714864 0.109455 0.554972 0.278456 0.598022 -1.279683 0.038218 -2.019959 0.663949 -0.571316 -0.062546 -0.653288 -0.124509 1.254760 0.502269 0.915343 -1.940712 1.856582 1.198093 -0.519259 -0.992815 0.490181 -0.561489 -1.404736 0.056115 0.902640 0.243264 0.303068 0.136767 0.564846 -0.421541 -1.016569 -0.474906 -0.738161 2.006937 -2.519473 0.046972 -0.183266 -0.287800 -0.658846 0.783312 0.677231 0.505292 1.985436 0.961981 -0.961024 1.629370 -1.837300 1.092748 3.289008 0.914647 -1.494065 0.973578 -1.270255 0.315567 0.619745 0.446460 0.346298 0.503213 -1.446584 -0.468433 0.328914 -0.782995 1.881278 0.809044 0.806284 -2.337809 1.582731 -0.458076 -0.091501 2.483106 1.214210 -2.391461 1.312260 2.213795 -1.586557 -0.233425 0.538562 -1.444227 -0.750964 -1.403340 0.595586 0.821872 -1.761845 -1.133482 -0.305362 -1.548615 1.589433 0.456798 -0.095895 -0.003801 -0.817658 -0.675679 2.823665 0.207628 0.069854 -0.407700 -0.846427 -1.341257 -2.271673 0.072901 0.530783 -1.358305 -0.404703 -1.391017 -0.555781 2.113487 -1.208971 0.499569 -2.630227 0.617163 0.878974 1.022514 0.490502 -1.320978 -1.016675 0.078908 -0.540561 0.206278 -1.471563 0.870226 1.377234 -1.112790 1.547497 -0.214214 -0.933666 0.586174 1.237387 -0.779017 1.837161 0.037789 2.380185 0.613138 1.637174 -1.320928 -0.187682 -0.557376 -1.152027 -1.100327 1.479842 -2.178020 -0.120765 1.654770 -0.396909 -1.980714 1.171473 0.946324 1.099324 -0.542223 -0.427883 -0.681163 0.064462 -0.621478 0.782131 1.105923 -0.793389 -1.650290 -0.175871 1.610999 -1.040792 -1.030439 0.718644 0.372173 1.893968 -1.576025 1.050115 0.365846 0.621426 -2.183319 -2.212878 0.778398 -1.113831 -0.982856 1.026739 -2.797656 -0.989625 -0.951808 0.807174 -2.137069 -0.522931 0.363708 2.036887 -0.126966 -0.401521 0.953334 0.122920 0.427862 -0.356450 0.620134 0.151222 0.772465 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.968389 1.009836 -0.040492 -0.878054 2.576683 -0.149311 0.371743 1.410641 -0.755862 0.882229 -1.839766 0.490007 0.068328 -1.784613 0.392282 0.212956 0.291274 0.606191 -0.344767 0.116225 0.674588 -0.459070 0.020627 -1.109654 -0.111637 -1.458881 -0.179500 0.092658 0.598394 0.378544 -0.411046 0.393453 1.500849 0.052633 0.895929 1.064796 0.991252 1.308239 0.485520 -0.235681 0.599555 0.680156 -0.418119 -1.724246 0.406315 -0.950768 -1.165269 -0.757988 0.337396 -1.508770 0.486536 1.027336 0.185163 -0.363416 -1.061363 0.685559 1.578834 -0.462871 1.346016 0.836506 -1.108511 -0.784641 -0.618578 1.178233 -0.749186 0.675700 0.387116 -1.413552 -0.381658 1.167655 0.371556 -0.759534 -0.910038 0.005114 0.287381 -0.827570 0.654193 -0.184424 -0.192074 -0.984434 -0.668233 0.529728 -0.431757 1.422571 0.107091 -0.112772 -0.358762 -0.275837 0.585400 -1.076064 -0.842587 1.371751 -0.557427 0.240989 -1.246752 0.813998 0.606049 -0.164370 -0.502210 -1.166902 0.523364 0.403871 0.180366 -0.694181 -0.341795 -1.296922 0.678761 0.596201 -0.157659 1.209554 -0.038078 0.475454 0.151509 0.472611 -0.753628 0.405186 -1.722862 0.508118 -0.121252 0.109455 -0.430473 -0.225836 0.949556 0.171356 0.609681 -1.372689 1.516121 0.880478 -0.478395 -0.917919 0.491059 -0.455266 -1.073332 -0.021139 0.675084 0.285792 0.128788 0.124518 0.325155 -0.424728 -1.122549 -1.054324 -0.599057 1.704952 -1.985928 0.007739 -0.208004 -0.220162 -0.530935 0.554751 0.462682 0.315510 1.522353 0.780365 -0.455222 1.114479 -1.318144 0.769094 2.515948 1.319531 -1.211644 0.665942 -0.819589 0.276506 0.530469 0.199739 0.212687 0.591177 -1.214762 -0.476665 0.356387 -0.760620 1.442504 0.887277 0.752925 -1.803309 1.284534 -0.270267 -0.163479 2.024971 1.039450 -1.784751 0.874116 1.623212 -0.856841 -0.120663 0.351012 -0.936075 -0.661784 -0.746314 0.385852 0.533674 -1.387195 -1.149256 -0.307874 -1.238212 1.364231 0.340938 0.231142 -0.147443 -0.806414 -0.159316 2.090130 0.203396 -0.170484 -0.212756 -0.525179 -1.180066 -1.689550 0.138779 0.682896 -0.970564 -0.542878 -1.043057 -0.409230 1.579129 -1.059034 0.125263 -1.802627 0.155463 0.658726 0.413165 0.411904 -1.626873 -0.792555 -0.138936 -0.098530 0.482448 -0.878613 0.761589 1.360979 -0.816455 1.175263 0.527543 -0.095724 0.357937 1.189121 -0.544440 1.364033 -0.130152 1.777856 0.400282 1.251845 -1.022011 -0.181696 -0.452472 -0.458472 -0.648234 1.206049 -1.581052 -0.059166 1.116003 -0.531343 -1.228741 1.036147 0.720774 0.861788 -0.406976 -0.278932 -0.366143 -0.112076 -0.746374 0.391026 0.953658 -0.742996 -1.410056 -0.256187 1.055356 -0.925636 -0.538967 0.584982 0.398717 1.499493 -1.190954 0.941830 0.239114 0.163301 -1.881472 -1.580380 0.575609 -0.751240 -0.997047 0.735952 -2.183441 -0.828352 -0.745230 0.691616 -2.026966 -0.333194 0.030984 1.487214 -0.067605 -0.059529 0.810848 0.096869 0.561464 -0.150164 0.504739 0.080080 0.830630 +PE-benchmarks/dfa-based-division.cpp__main = -0.970937 0.062671 -0.159582 -0.322962 2.063831 0.022580 0.142851 1.141987 -0.169976 0.980471 -1.187274 -0.716234 -0.525149 -1.129979 0.163118 -0.015590 0.449978 0.300774 -0.689127 -0.157511 0.674848 -0.109314 0.105484 -0.491495 -0.074326 -0.770917 -0.633587 0.184724 0.946278 -0.226732 -0.730224 0.183517 1.841844 -0.066610 1.366038 0.806765 1.023433 1.073635 -0.082961 -0.359172 0.063236 1.083261 -0.781013 -1.158678 0.189059 -1.072963 -1.055531 -0.313486 0.644623 -0.645322 0.288390 0.916675 -0.080787 0.263475 -0.375374 0.601549 0.800901 0.033211 1.584932 0.487648 -0.993752 -0.253958 -0.924383 1.338602 -0.572046 0.903400 -0.590968 -1.526070 -0.685074 0.192730 0.182209 -1.023051 -0.805437 0.719582 0.486657 -0.689249 0.815273 -0.081788 0.699244 -1.338539 -1.336724 0.234315 -0.696620 1.106795 -0.248979 -0.118028 -0.017149 -0.010073 0.071623 -1.502940 -0.152332 1.148990 -1.083967 0.313020 -0.738999 0.008471 -0.239028 0.575875 -0.828318 -0.975747 0.242810 0.099388 0.226034 -0.394205 0.798194 -0.645195 0.329104 0.150973 0.501742 0.854441 0.697655 0.275085 0.743940 1.031291 -0.697701 -0.100593 -0.966689 0.615593 -0.739772 0.199928 -0.254012 0.569960 0.895311 0.190576 1.162537 -1.524407 0.634452 0.413604 -0.570826 -0.801785 0.174882 -1.023675 -1.194820 -0.200198 0.820623 0.109049 -0.108027 -0.723696 0.485490 -0.186017 -0.968870 0.026695 -0.324587 0.277028 -1.463659 -0.213663 -0.266331 -0.446430 -0.383536 1.021792 0.672449 0.779340 1.420076 0.878198 -0.773589 0.360215 -1.456852 0.579652 1.889513 -0.101751 -1.317373 0.776472 -1.168208 0.303134 0.886425 0.643486 0.666022 0.396792 -0.228294 0.161617 0.072250 0.206420 1.625764 0.539373 0.716069 -1.091330 0.463725 -0.627972 -0.521599 1.917467 0.703739 -1.760251 0.569797 0.625353 -0.548445 -0.002179 0.400312 -1.075990 -0.424744 -1.285543 0.367429 0.866700 -1.069144 -0.356293 0.665820 -1.292871 1.467932 0.008676 -0.171754 0.516396 -1.362608 -0.415083 1.996515 0.253450 -0.064480 -0.556390 -0.696798 -0.565036 -1.439338 0.268751 -0.016263 -0.517574 -0.465537 -1.196971 -0.028326 1.456583 -0.073643 0.805473 -1.695728 0.226653 0.534630 -0.092928 0.782989 -0.897480 -0.747335 -0.342761 -0.624915 0.617087 -1.158227 0.349568 1.275428 -0.873729 0.943855 0.155998 -0.758109 -0.098507 0.534244 -0.970265 1.331502 -0.038655 0.910945 -0.054321 1.011818 -0.884314 -0.129048 -0.290137 0.063178 -0.598311 0.904929 -0.875886 -0.061609 0.507183 -1.003467 -0.934454 0.259599 0.120770 0.403156 0.085507 -0.560199 -1.169676 -0.019001 -0.369852 0.329150 1.038000 -0.343747 -1.120325 0.280696 0.014703 -0.546554 -0.433153 0.273528 -0.021755 1.246762 -1.208533 -0.234146 0.367881 0.390050 -1.103055 -1.342410 -0.387447 -0.694153 -0.522613 1.082911 -1.336923 -0.382990 -0.856479 0.023190 -1.070401 -0.468617 0.308147 1.701548 0.570111 -0.726511 0.699067 0.177239 0.895057 0.022271 0.096023 0.256884 0.494957 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.945024 0.473026 0.128270 -0.532241 2.338965 0.292367 0.087734 1.450311 -0.412444 1.150927 -1.480988 0.033124 -0.319474 -1.099625 0.145513 -0.150439 0.216518 0.093515 -0.698582 -0.308579 0.597289 -0.116668 0.114212 -0.682134 -0.149023 -1.389458 -0.493353 0.101734 0.896003 0.247186 -0.716563 0.127367 1.655133 -0.149045 0.912896 0.803701 1.346151 1.127908 -0.020899 0.236460 0.328712 0.858871 -0.699100 -1.068995 0.236237 -1.215785 -1.152906 -0.189664 0.534068 -1.093877 0.436281 0.957328 0.018548 0.008064 -0.438855 0.939695 0.816704 -0.387494 1.539807 0.546849 -1.258710 -0.996316 -0.926646 1.619188 -0.601675 1.044864 -0.243083 -1.436051 -0.652074 0.508989 0.163585 -0.832057 -0.693331 0.522703 0.349709 -0.793100 0.657568 -0.207919 0.156700 -0.941031 -0.917471 0.427183 -0.305840 1.121302 -0.013289 -0.093070 -0.166901 -0.017915 0.181354 -1.432946 -0.402914 1.555819 -0.936328 0.440539 -1.584742 0.074402 -0.087463 0.366086 -0.598369 -0.885846 0.316883 0.480241 0.165838 -1.323073 0.120584 -1.238402 0.670310 0.336960 0.188232 0.672495 -0.051267 0.207614 0.427074 0.943804 -0.687639 0.328257 -1.295458 0.523110 -0.146105 0.152194 -0.453739 0.191727 0.662829 0.297749 1.063592 -1.465795 0.941667 0.373533 -0.906694 -1.029803 0.130966 -0.850695 -1.171535 0.015588 0.656504 0.209749 -0.003507 -0.480123 0.502757 -0.390092 -1.103384 -0.799097 -0.262062 0.756296 -1.634552 -0.181496 -0.165291 -0.183168 -0.587209 1.045327 0.695248 0.577843 1.502362 0.789726 -0.308876 0.872408 -1.395633 0.592840 1.945277 0.994491 -1.363830 0.775544 -1.254645 0.358632 0.682879 0.400138 0.384604 0.855629 -0.678635 -0.072407 0.207178 -0.112670 1.628141 0.900418 0.751430 -1.150463 0.694379 -1.027811 -0.348968 1.631288 1.314658 -1.733983 0.621895 0.963063 -0.400504 -0.002041 0.530276 -1.141637 -0.495536 -0.916721 0.163207 0.849977 -1.081475 -0.541402 0.401414 -1.254223 1.662717 0.128536 0.338565 0.360274 -1.269187 -0.671800 1.697745 -0.009059 -0.067181 -0.386335 -0.553622 -1.212652 -1.515932 0.174247 0.512865 -0.819064 -0.637666 -1.211380 -0.139114 1.364550 -0.434349 0.709249 -1.826392 0.020267 0.584299 -0.059922 0.897779 -1.042261 -0.727597 -0.555286 -0.430347 0.845864 -1.245205 0.617681 1.306840 -0.710184 1.516470 -0.042097 -0.601272 -0.184678 0.710366 -0.762473 1.338642 0.026999 0.954141 0.077041 1.118781 -0.972318 -0.091869 -0.396458 -0.150210 -0.484346 1.031716 -1.156862 -0.081758 0.516348 -1.099348 -0.795492 0.539092 0.285106 0.391446 -0.115102 -0.227019 -0.747392 -0.290367 -0.810319 0.306461 0.950039 -0.636631 -1.098270 0.108422 0.191022 -0.907344 -0.236050 0.358148 0.203353 1.275111 -1.192956 0.004579 0.362824 0.044502 -1.690456 -1.502938 -0.371140 -0.668536 -1.015901 0.774580 -1.713926 -0.609096 -0.838971 0.161314 -1.622573 -0.689697 0.308011 1.701241 0.348198 -0.418293 0.730029 0.198021 0.840787 -0.055004 0.340037 0.384542 0.410803 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = -1.083729 -2.030461 0.564740 -0.649600 2.525832 -1.306004 -0.588241 2.834332 1.555034 0.294756 -2.386444 -1.200727 -1.385096 -2.217477 0.464512 -0.991366 2.014537 0.019460 -1.374247 -0.492063 1.028370 2.248059 -0.202815 -1.350505 0.318887 -0.738511 -1.355258 -0.099660 -0.869004 0.000602 0.074411 1.258100 4.061668 1.633363 2.805569 1.418481 2.013281 2.255440 0.096925 1.818787 0.796859 1.846117 -0.478416 -1.783584 -0.241745 -1.406945 -1.031043 -0.143001 0.399785 -0.643682 0.861877 0.801953 0.841676 1.157610 -1.369441 -1.159483 -0.114856 0.119317 1.281622 1.492033 -3.057892 0.239485 -0.727071 1.044688 -1.388211 1.726406 0.269158 -0.155030 -0.903997 0.785465 1.947325 -2.428321 -2.205859 -0.779281 0.016332 -0.287730 2.042640 0.965055 3.824233 -0.655140 -1.053782 0.670454 -0.919313 1.038102 -0.842326 -0.750946 -1.077145 -1.121714 0.888367 -0.875905 -0.882763 0.466495 -2.337795 -0.278222 -2.353339 0.397530 -0.997588 0.821619 0.235861 -2.239975 0.517245 -0.257711 -0.245557 1.706521 -0.742532 -0.254610 1.305992 0.286796 -0.339275 1.501307 -0.253705 1.240583 1.081160 0.172518 0.278088 0.777361 -2.224147 1.511143 -2.104832 -0.423790 -0.894216 0.248633 1.585293 0.917419 0.341153 -1.103522 1.341354 1.929952 -0.867428 0.413531 0.702526 -1.163347 -2.775317 0.308054 1.593957 1.236142 0.269317 -0.673781 0.944432 -0.634358 0.241808 -0.923629 -1.132512 -1.187405 -0.410648 -1.179251 -0.211590 -0.264737 -0.950810 1.091146 -0.166732 0.050089 1.702656 -0.414897 -2.293986 -1.211751 -2.305757 0.385577 3.136186 -1.643607 -1.321270 0.629440 -0.838244 0.916611 0.983345 1.183221 0.540621 -1.170609 0.321419 1.118682 -0.553687 -0.510549 2.060083 1.053290 1.312101 -2.357223 -0.841114 -1.981053 1.016108 2.527959 0.752730 -2.646141 -0.688455 1.450004 0.860011 -0.582495 -0.148873 -0.139585 -0.760001 -2.648121 1.547456 0.697069 -1.665912 -0.131304 1.100846 -1.535740 0.606132 0.187723 -0.471815 -0.274363 -1.868074 -1.095343 4.263914 -0.043774 0.704558 0.373675 -1.102234 1.849492 -3.108548 0.186643 -0.147660 0.061771 1.655200 -0.820856 0.902379 2.221131 -1.364451 0.891076 -1.218943 0.128509 0.785997 -1.736866 -0.045369 -2.492325 -1.590421 -0.772506 -0.622150 1.320436 -2.631038 -0.963271 1.700897 -0.630206 1.854380 1.594051 -0.017867 -1.436213 1.027296 -1.229063 1.830005 -0.899458 1.539752 0.111593 1.490370 -0.992273 -1.434521 -1.323218 -0.123476 -1.570910 1.151180 -2.061044 0.677141 1.330375 -0.272794 -0.653065 1.261754 0.317522 -0.279860 -0.409626 -0.318136 -1.918172 0.489860 -0.770609 1.981275 1.535405 -0.491705 -2.664827 -0.004541 2.031201 -2.680747 -0.688164 -0.050841 -0.313907 2.477617 -1.209527 -0.382676 1.538118 1.188538 -0.948845 -2.458163 0.701897 -0.759043 -0.207198 0.010459 -1.205510 -2.425502 -0.728730 0.946286 -1.015109 -0.792443 0.555926 1.494155 1.437621 -0.916987 -0.515529 0.769899 0.027054 -0.046376 0.068982 1.055048 0.632539 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -7.660312 3.395139 3.053174 -3.617044 11.712210 -1.283741 3.721726 4.537836 -2.048665 6.747867 -11.261031 -6.112298 -4.900806 -9.954805 0.330832 -5.061934 4.291100 1.801679 -3.426594 2.490892 5.090907 -3.706612 -0.023056 -5.524246 -0.800614 -7.305345 -4.579387 0.787505 6.476381 -3.346481 -0.478980 1.984239 16.122228 2.122852 13.162065 8.570866 3.216408 10.836875 1.451067 -3.243794 -0.808184 9.231110 -5.725640 -9.300978 -0.411062 -6.967227 -6.356241 -5.000897 3.548748 -3.840785 -0.099460 7.393051 -0.491088 2.732637 -6.719968 3.264821 8.855937 1.717641 12.985318 3.674105 -5.028468 2.453224 -6.660596 5.359508 -5.149795 3.463149 -2.834781 -7.998947 -0.164328 0.309355 1.303193 -7.016697 -6.245687 5.131791 3.982529 -6.838752 5.278013 -1.058875 -5.815131 -11.608713 -9.456528 2.320623 -1.224986 9.266688 -1.288074 -0.636550 1.011708 1.137351 1.001903 -11.851099 -1.124617 8.542389 -6.973709 -1.950719 -2.648729 6.784543 -0.756748 4.190928 -7.378405 -7.155282 2.732195 -1.719236 1.412165 -3.079660 2.622594 -6.172114 2.327283 1.273296 0.021393 6.346815 7.236226 5.329066 8.772642 7.750214 -8.767500 0.956527 -9.400897 4.267767 -4.965048 -1.086832 0.376645 3.942081 2.268519 1.970681 8.949000 -12.232690 4.987425 5.614673 -4.093768 -7.726343 0.657721 -8.550776 -9.489966 -2.851799 5.898354 3.080760 1.789288 -5.896395 1.151402 -2.417789 -1.751973 -1.078191 -0.590982 7.181618 -9.561880 -1.841224 -1.462920 -2.646968 -4.228241 7.581562 4.066465 4.559348 11.523474 5.729379 -6.891315 1.092895 -10.263414 1.159193 14.531204 -0.218407 -9.828385 7.084808 -5.726023 0.556398 5.896475 5.891921 6.352189 -2.009693 -6.856458 -3.658028 1.159051 -1.408380 12.112513 2.188592 3.744261 -6.424331 10.658542 -0.922507 -6.204534 14.253963 5.203377 -10.635882 2.540526 5.609083 -7.223704 -2.799786 4.932934 -7.504945 -2.154042 -8.365257 1.631459 3.523115 -6.842026 -1.871833 2.647641 -10.958679 11.190016 0.784346 -0.020988 2.155630 -9.384614 -8.922766 15.403920 -0.016968 -0.436780 -3.960290 -5.172450 -3.547108 -12.523659 2.004667 -1.176855 -4.315731 -2.533790 -9.156808 2.576903 8.581140 -2.631575 6.201216 -9.117086 -1.953295 4.409555 1.268052 4.969571 -5.238070 -6.627712 0.226850 -2.966993 4.784394 -6.638730 7.018212 11.995575 -4.918051 6.366828 0.317676 -6.240851 1.783445 5.307040 -9.809215 10.921514 -3.081445 7.820115 0.311508 7.333222 -6.975982 -3.536018 -0.205458 -0.812793 -5.222405 5.506975 -6.908200 0.463420 1.762983 -6.815379 -5.917911 2.590722 -0.327860 1.033455 0.246826 -0.163685 -9.674297 1.004965 -3.721765 2.707768 8.075297 0.826894 -8.189034 2.578592 2.143370 -0.634496 -0.722086 0.748683 -0.640595 8.603843 -9.569312 -1.784222 1.262778 2.272688 -6.028112 -12.963047 1.101107 -8.858140 -5.091755 8.318998 -9.904948 -1.184173 -6.968107 -0.313557 -8.489513 -2.369553 3.751246 13.307827 4.878813 -7.623948 2.585262 -0.432478 7.676435 0.348918 1.139661 0.505031 5.622643 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.802496 0.149057 0.056894 -0.430329 1.748515 0.053257 -0.041046 1.106012 0.172937 0.516635 -1.301679 -0.504879 -0.353501 -0.863641 0.212679 0.039762 0.186304 0.383115 -0.790859 -0.451493 0.699846 0.270600 -0.018012 -0.751983 0.068055 -0.119893 -0.650541 -0.049437 0.281119 0.156760 -0.843845 0.229350 1.239520 0.018309 0.895149 0.649421 1.097282 1.177354 -0.375996 0.680256 0.387011 0.906854 -0.509557 -1.311530 0.499286 -1.130463 -0.601227 -0.264493 0.437119 -0.826824 1.091188 0.662798 0.153840 -0.014225 -0.177256 0.388324 0.544108 0.272798 1.077655 0.706046 -1.216418 -0.010469 -0.829828 0.883366 -0.564041 1.642254 0.005309 -1.364321 -0.974549 0.358886 0.773243 -1.165937 -1.009801 0.132127 -0.015676 -0.283287 0.768469 -0.061091 1.027277 -0.468210 -1.051632 0.228086 -0.505529 0.799666 -0.312342 -0.313854 -0.502334 -0.224201 0.375560 -0.849934 -0.621243 1.005871 -0.792357 0.832623 -1.086442 -0.592546 -0.372898 0.380010 -0.554983 -0.680475 0.354332 0.622126 0.101003 -0.114790 0.053460 -0.605224 0.933091 0.606705 -0.084878 0.254213 0.307073 0.150302 0.235600 0.498768 -0.090440 0.331359 -1.015662 0.350129 -0.392146 0.267500 -0.167086 0.182676 0.643431 -0.215495 0.540945 -0.840939 0.861550 0.337843 -0.873565 -0.472029 0.449350 -0.728198 -1.198615 -0.074198 0.657978 0.422939 -0.239862 -0.261877 0.278919 -0.480305 -0.921937 -0.594510 -0.553212 -0.069303 -0.895303 -0.353164 -0.298051 -0.430795 -0.437655 0.730778 0.306982 0.322880 1.096538 0.653612 -0.454429 -0.252903 -0.993202 0.585750 1.526915 0.143986 -1.152412 0.255339 -0.685648 0.625710 0.764650 0.145063 0.128368 0.913298 0.037755 0.360197 -0.353331 -0.296510 1.169252 0.912480 0.852545 -1.043720 0.089406 -0.757791 -0.288148 1.688349 0.829903 -1.517807 0.168735 0.743562 0.155734 -0.181579 0.156460 -0.562164 -0.371361 -0.791580 0.298838 0.499511 -1.144159 -0.747299 0.530474 -1.073188 1.212802 0.134866 0.111854 0.098840 -1.387252 -0.188447 1.723004 0.184357 -0.242163 -0.166917 -0.308146 -0.339523 -1.199479 0.320941 0.538299 -0.363434 -0.704992 -0.748622 0.186184 1.323039 -0.621034 0.290670 -0.540816 -0.116724 0.322596 -0.594082 0.915753 -1.194386 -0.748491 -0.627084 -0.335927 0.914638 -0.801076 -0.117947 1.244572 -0.680346 0.938187 1.074820 -0.327836 -0.532893 0.882828 -0.277174 0.914348 -0.149764 0.541322 -0.170415 1.003602 -0.822260 -0.238582 -0.277489 0.380719 -0.358097 1.026891 -0.784182 0.106041 0.228952 -0.994770 -0.320023 0.741621 0.233408 0.465893 -0.150697 -0.293968 -0.637700 -0.082456 -0.300652 0.059699 0.975757 -0.510743 -1.272287 -0.269828 -0.007229 -1.093531 -0.215005 0.430973 -0.076469 1.354003 -0.820345 0.126443 0.447838 -0.207536 -1.391515 -0.672166 -0.600821 -0.498132 -0.380760 0.650157 -0.890593 -0.600133 -0.574559 0.392561 -0.819640 -0.481488 -0.077802 1.041418 0.732655 -0.135087 0.703106 0.379362 0.915243 0.216027 -0.184694 0.213770 0.545851 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -1.356590 1.366452 1.271644 -0.923238 3.201884 0.993587 0.674094 2.068041 -1.537724 2.101967 -2.415941 0.080936 -0.490101 -1.653774 -0.114780 -0.727615 -0.053546 -0.333316 -0.733421 0.179796 0.912581 -0.858720 0.116087 -1.127312 -0.451366 -1.818330 -0.814854 0.037885 1.835075 0.224654 -0.302860 -0.348234 2.435048 -0.054884 2.012470 1.466080 1.244810 1.839845 0.061057 0.154418 -0.208878 1.619172 -1.409812 -1.865597 0.035083 -2.000651 -1.344931 -0.763326 0.432955 -1.680187 0.145575 1.577133 -0.240313 0.137195 -0.745999 1.450043 1.287411 -0.637185 2.752725 0.583627 -1.806103 -1.027954 -1.762100 1.761157 -0.492739 1.526005 -0.399193 -1.949927 -0.117062 0.011404 -0.239893 -1.120490 -0.438775 1.562404 0.474859 -1.509849 0.713693 -0.935533 -1.736945 -1.573387 -1.224102 0.658928 0.151365 1.594468 0.218373 -0.117505 0.069920 0.554877 -0.036145 -2.867763 -0.352279 2.533822 -1.508358 -0.056495 -1.758708 0.790872 -0.369271 1.129609 -1.167828 -0.694690 0.616363 0.948381 0.229028 -2.802458 0.187718 -2.602573 0.941120 0.533389 0.071256 0.646687 0.638156 0.544706 1.450029 1.932052 -1.854574 1.175860 -1.669998 0.586251 -0.253500 0.227892 -0.597248 0.618894 0.414584 0.447470 2.112018 -2.408035 0.954563 0.630626 -1.456951 -2.195588 -0.048024 -2.086879 -1.844010 -0.041582 0.662755 0.606383 0.352327 -1.328798 0.156202 -0.734012 -1.322122 -1.640347 0.352302 1.846793 -2.690630 -0.386452 -0.149732 0.061875 -1.152218 2.100162 1.389322 0.951733 2.550186 1.243656 -0.227747 0.936108 -1.868309 0.369280 2.993784 1.260735 -2.297312 1.508389 -2.021292 0.278788 0.913179 0.580902 1.125954 1.102581 -2.145480 -1.049268 1.039605 -0.287251 2.649244 1.289351 1.240511 -1.218048 2.213579 -1.364485 -1.388499 2.312996 1.957369 -2.602399 0.868218 1.026057 -0.888402 0.051594 1.261906 -1.882287 -0.464752 -1.058964 -0.493336 0.889638 -1.298526 -0.691828 0.414565 -2.337471 3.212830 0.323815 1.314667 0.368547 -1.665987 -1.516338 2.424314 0.080116 -0.480459 -0.839988 -0.551326 -2.404342 -2.285012 0.366013 0.735379 -1.309275 -1.365343 -2.179642 0.348652 1.402385 -0.593088 1.323370 -1.995658 -0.734582 0.823216 -0.096647 1.749666 -1.601297 -1.250191 -1.073955 -0.818417 1.756270 -1.672977 1.875881 2.785824 -0.608414 2.687974 0.151376 -0.926117 -0.224834 1.193269 -1.674538 2.259903 -0.393469 1.510331 -0.111261 1.726705 -1.561124 -0.211848 -0.326075 -0.301033 -0.208936 1.353938 -1.391471 -0.047928 0.051535 -2.379475 -0.745368 0.644607 -0.207354 0.176443 -0.020818 0.085239 -1.764644 -0.683532 -1.878356 0.202363 1.616098 -0.976394 -1.809409 0.258546 -0.205588 -0.554233 -0.157488 0.328037 0.211602 1.476434 -2.037266 -0.477821 0.265375 -0.235340 -2.487013 -2.152712 -0.536230 -1.466001 -1.803938 1.219252 -2.091404 -0.059587 -1.614941 -0.524332 -3.097152 -1.293054 0.413901 3.110106 0.594967 -1.179250 0.663968 -0.042002 1.926894 0.339839 0.767280 0.314824 0.648795 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.665953 -0.043774 -0.305894 -0.276408 1.529932 -0.078829 -0.047194 0.926602 0.139659 0.532056 -0.916986 -0.435630 -0.428963 -0.929187 0.240532 0.309429 0.358623 0.394660 -0.588937 -0.396933 0.611621 0.047247 0.114032 -0.532780 0.084499 -0.366637 -0.343553 0.016568 0.264410 0.249164 -0.784845 0.300245 1.049460 0.115346 0.576098 0.467762 0.836052 1.031059 -0.100613 0.345787 0.267810 0.722889 -0.355917 -1.196028 0.580852 -0.868253 -0.577350 -0.360008 0.441419 -0.798188 0.854849 0.625113 0.099611 -0.048756 -0.340096 0.194366 0.648856 0.183990 0.914021 0.587154 -0.820516 -0.323425 -0.554473 0.633511 -0.533871 0.955612 0.141739 -1.176685 -0.784545 0.423858 0.503810 -0.734204 -0.791328 0.037999 0.127424 -0.272754 0.613850 0.095930 0.813385 -0.498636 -1.019064 0.109572 -0.586894 0.835461 -0.226931 -0.209257 -0.285850 -0.285297 0.385022 -0.706721 -0.410016 0.725179 -0.529267 0.700215 -0.782233 -0.262767 -0.216175 0.147060 -0.529167 -0.590102 0.210627 0.364606 0.173168 0.029352 -0.147241 -0.467510 0.825678 0.339141 0.119128 0.274278 0.494686 -0.114976 -0.032891 0.364135 -0.222016 0.238912 -0.866536 0.379195 -0.092190 0.216910 -0.235057 0.144088 0.685695 -0.302696 0.443318 -0.866886 0.757838 0.359244 -0.541714 -0.367716 0.382857 -0.442038 -0.848653 -0.064140 0.736394 0.083299 -0.200393 -0.113972 0.332422 -0.295116 -0.953581 -0.185864 -0.620636 0.262808 -0.891981 -0.156128 -0.328135 -0.553491 -0.238608 0.410735 0.164448 0.388462 0.851802 0.623048 -0.535086 0.037606 -0.931397 0.646020 1.471052 0.316031 -0.919552 0.201722 -0.503860 0.580638 0.612950 0.125264 0.265508 0.529960 0.179966 0.462274 -0.218002 -0.090701 0.989595 0.725282 0.828840 -1.046823 -0.036775 -0.395279 0.019159 1.369318 0.685528 -1.239061 0.338601 0.736068 -0.243887 0.007655 0.009916 -0.396545 -0.267128 -0.838329 0.437295 0.602117 -1.086207 -0.606880 0.290336 -0.840899 0.883732 0.096516 0.189054 0.255589 -1.122945 0.176624 1.399558 0.144184 -0.080727 -0.220618 -0.489046 -0.565424 -1.042749 0.278135 0.281189 -0.364560 -0.448939 -0.664322 -0.152693 1.285751 -0.301269 0.161544 -0.736742 0.279472 0.337402 -0.289819 0.609124 -0.917493 -0.596085 -0.180778 -0.322287 0.641919 -0.566746 -0.161273 0.752072 -0.721716 0.643446 0.713508 0.063354 -0.155291 0.607668 -0.208715 0.757725 -0.125471 0.691653 -0.097800 0.863740 -0.566295 -0.020109 -0.267621 0.234050 -0.391430 0.869639 -0.794489 -0.025869 0.596542 -0.693211 -0.581759 0.506511 0.316956 0.644614 -0.105328 -0.385876 -0.457360 0.019358 -0.187638 0.245187 0.794744 -0.351277 -0.926480 -0.226611 0.149897 -0.803944 -0.383376 0.467787 -0.024026 1.146482 -0.734046 0.191992 0.311630 -0.021183 -0.965169 -0.666536 -0.279547 -0.298079 -0.368282 0.825614 -1.073682 -0.435677 -0.464284 0.468026 -0.811705 -0.077736 -0.295478 0.848013 0.364516 0.041901 0.710335 0.399874 0.483528 -0.032523 -0.106496 0.247699 0.544106 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -4.594156 4.867595 4.766144 -2.755485 7.974043 1.800230 3.013534 3.808083 -4.252227 5.492011 -7.539186 -0.694775 -1.620528 -5.169311 -0.415272 -4.743947 -0.083901 -0.702585 -1.413491 1.689711 2.534613 -3.199866 -0.134522 -3.419903 -1.185771 -6.324630 -2.484499 0.164679 5.890022 -0.324871 1.082117 -0.642727 7.805987 0.220167 7.122398 5.001578 2.300075 5.343874 -0.074393 -0.505327 -1.120502 4.916765 -4.107856 -4.900182 -0.966886 -4.825573 -4.237599 -2.396386 1.562250 -4.008945 -1.499941 4.699159 -0.838911 0.882403 -2.863322 4.169210 4.738177 -0.937434 8.094459 1.458226 -4.149776 -1.554797 -5.181027 4.584384 -1.510137 2.932819 -1.582974 -4.653969 1.018902 -0.343848 -1.974546 -2.752702 -1.202746 4.827116 2.441899 -4.838187 2.057642 -2.561031 -8.342879 -5.326810 -3.218609 1.882201 1.655531 5.303450 0.267855 -0.031927 1.501883 1.812077 -0.390759 -8.334784 -0.829338 7.921248 -4.129517 -1.912981 -3.895429 4.370379 -0.185473 3.335336 -3.433307 -2.555361 1.893560 1.365989 0.646660 -7.792700 0.009927 -7.380061 1.597520 0.905213 -0.591953 3.299067 1.635434 3.120640 5.090387 6.170997 -6.643201 2.964217 -5.421496 1.976551 -1.862469 0.186320 -0.535053 1.789905 0.034037 2.340805 6.135002 -7.376185 2.891267 2.393442 -3.173357 -7.089681 -0.602077 -6.272482 -5.391572 -0.759332 1.774529 2.254104 1.100738 -4.136696 0.128977 -1.729050 -1.767683 -4.132845 1.670831 5.800090 -7.022353 -1.056072 -0.235582 0.471551 -3.690277 5.924066 3.957501 2.627566 7.561978 3.509681 -1.111594 3.251441 -5.308767 0.209949 8.365021 2.666706 -6.319277 4.853255 -5.317820 -0.282529 2.677158 2.330113 3.613928 2.191636 -7.428349 -4.169623 3.322991 -1.376323 7.520229 3.263431 2.107117 -3.206401 8.758800 -3.156337 -5.059143 6.895732 5.275184 -7.160256 2.586733 2.772120 -4.511662 -0.912208 4.335161 -5.584849 -1.127214 -3.199744 -1.270406 1.872578 -3.106594 -1.685630 0.900860 -6.920231 8.972261 0.709420 3.053862 0.923774 -4.361479 -7.270889 7.426135 0.082015 -1.330453 -2.655843 -1.553384 -6.151586 -6.530617 0.949211 1.364750 -3.901216 -3.593226 -6.231150 1.650411 3.431604 -1.974468 4.782303 -5.684094 -2.852046 2.396672 1.283717 4.343204 -3.246402 -3.717009 -2.540939 -1.552455 4.205825 -4.215630 6.740855 8.559999 -1.799335 7.459786 -1.666402 -4.750419 0.332644 3.453150 -5.919960 6.691026 -1.124592 4.730728 0.029268 4.623213 -4.631231 -1.688035 0.073902 -2.283292 -1.186420 3.509577 -3.678213 0.152162 -0.227647 -6.218026 -2.181298 1.698370 -0.856656 0.151119 0.057614 1.535654 -5.614620 -1.263327 -4.848463 0.467304 4.637150 -1.243986 -5.005078 1.463063 -0.081220 -0.406424 -0.486074 0.342621 0.462799 4.014446 -5.897629 -1.478434 0.327011 -0.536162 -6.044280 -7.601712 -0.291379 -5.752242 -5.573713 3.414043 -6.047561 0.600074 -4.822935 -1.886299 -8.339113 -4.295757 2.618548 9.048637 2.230727 -4.138683 1.522609 -0.874104 5.818543 0.803010 2.183812 0.873976 2.524264 +PE-benchmarks/boyer-moore-algorithm.cpp__main = -3.384274 -0.282361 -2.251542 -3.109977 9.215679 -1.854023 -0.131546 6.547600 2.051159 2.331340 -5.942239 -2.155835 -1.014223 -6.182854 1.044912 0.593318 3.404891 1.970988 -3.865570 -0.945293 2.164632 1.525876 1.026051 -2.874089 -0.688392 -2.254073 -1.904276 1.141493 -0.273721 -0.758048 -2.079394 2.265655 8.476990 0.790907 5.590152 2.813604 5.361265 5.100930 1.731954 0.303418 3.483274 2.220907 -1.199621 -5.460893 0.572501 -3.385448 -5.722744 -1.694979 1.781679 -4.861269 2.869433 3.870458 1.619653 0.354444 -2.904038 1.584659 3.472808 -1.621021 5.132252 3.215962 -6.597046 -1.471104 -1.664769 3.962081 -3.157979 3.576665 -0.690886 -5.002488 -4.150974 5.006322 2.166682 -5.263756 -4.913537 -0.683874 2.088297 -2.357931 4.070225 0.969751 6.867223 -4.430796 -3.435891 2.827503 -2.073463 3.905609 0.032503 0.140503 -0.539998 -1.722290 0.994859 -4.388974 -0.993211 3.712408 -4.531099 0.941259 -4.419971 0.649505 -1.637006 -0.195903 -3.468900 -6.885608 1.632653 -0.358531 0.133278 0.117533 1.060480 -2.442484 2.478631 2.987460 0.462040 4.101522 1.699438 1.609474 2.062290 2.067974 -1.783410 1.107220 -6.927542 2.646939 -2.719835 -0.615846 -1.950828 -0.456402 5.234741 2.286502 1.979024 -5.640445 5.435941 4.038737 -3.213293 -1.921970 1.420475 -1.725744 -4.733485 0.170408 3.767630 0.243423 1.204481 -0.352278 2.260811 -1.899266 -2.910745 -1.627604 -3.006755 1.557720 -5.790429 -0.392155 -0.011308 -1.286300 -1.803190 3.232814 1.927163 0.329398 6.695285 1.004011 -4.457370 1.539750 -5.613832 2.796420 8.626980 0.938978 -4.645881 3.550070 -4.119085 1.644328 1.723369 2.823645 0.793082 -0.587532 -1.521611 1.120909 0.339696 -0.560387 6.049335 0.023919 2.888943 -7.298421 0.987566 -1.945818 1.629176 9.492727 3.516418 -7.185823 0.625731 5.991111 -0.659027 -0.910203 1.559858 -4.451553 -3.661511 -4.097448 3.110960 2.489718 -5.188042 -2.411538 2.240727 -4.588428 3.566101 0.718672 -3.053524 -0.304578 -5.525621 0.716551 10.309949 0.333892 0.891578 0.830072 -3.487935 1.048016 -7.537432 -0.058409 2.405848 -1.465667 1.133009 -2.649208 -0.521306 6.516332 -2.719423 1.906595 -7.041221 1.799496 3.121248 -1.388122 1.235714 -4.823311 -2.940324 0.105932 -1.824717 1.263599 -5.538996 0.181694 3.033754 -3.125486 4.735107 1.572293 -2.434852 -0.033618 2.470290 -2.336806 6.442788 -0.185093 5.827849 1.435605 4.777599 -3.773301 -0.748545 -3.091593 -0.824580 -4.615299 4.203569 -6.476507 -0.335656 3.317269 -0.165401 -5.792421 2.753106 2.873554 0.495959 -0.974076 -2.328069 -1.903588 -0.058986 -2.031869 3.851549 3.112571 -2.270825 -5.149636 0.093871 5.225790 -4.007340 -0.342079 1.801136 1.028008 7.118836 -4.703324 1.804648 2.518696 2.853117 -5.969916 -5.950198 1.770055 -2.801952 0.051423 1.014933 -6.934740 -5.567663 -2.344571 3.132027 -3.641523 0.577551 2.172864 6.578966 2.156521 -3.251835 2.328547 1.033947 0.746561 -0.023316 1.146890 1.628521 2.101936 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -5.504746 3.184159 4.164812 -2.502597 9.035868 1.088160 2.821019 5.484411 -3.259982 5.734773 -8.500421 -3.067284 -2.797748 -5.467941 -0.403332 -4.746963 1.468287 -0.822998 -3.191627 1.054972 3.266475 -1.610495 -0.209714 -3.951391 -1.261805 -4.809612 -3.616859 0.062591 6.178390 -1.839846 -0.495160 -0.202478 10.885864 0.382038 9.817948 5.724245 3.573332 6.358551 -0.598586 -0.648196 -1.181620 6.623554 -5.155552 -5.019446 -1.905098 -6.058673 -4.710915 -1.424364 2.228308 -2.862120 -0.790957 5.116919 -0.339448 2.679275 -2.517941 4.568387 4.236195 -0.383068 9.756153 2.089952 -5.660928 0.057769 -6.032635 6.105834 -2.149798 4.824117 -3.312735 -5.524726 -0.580849 -1.090111 -1.044576 -5.462379 -2.741331 5.402935 2.513022 -5.374622 3.752496 -1.804974 -4.514580 -7.510061 -5.501288 2.484852 0.994838 5.774188 -0.394610 -0.205046 1.259374 1.974915 -0.395877 -10.056797 -0.515246 7.710187 -6.721533 -1.840932 -4.473309 2.977605 -2.437016 5.123494 -4.685372 -4.549969 2.244160 0.951883 0.455272 -7.828034 2.959964 -6.376293 1.697062 1.084085 -0.142511 3.593095 3.272455 3.907801 6.922349 7.552579 -5.882274 1.782012 -6.177645 2.613393 -4.163673 -0.068308 -0.515793 2.803281 1.402252 2.671403 7.514385 -8.799489 2.838337 3.065354 -4.355314 -7.293118 -0.520221 -8.047160 -7.504324 -1.321549 3.010809 2.762963 1.431409 -5.768982 1.304118 -2.187108 -1.799235 -2.680590 1.108659 3.477695 -7.921311 -2.103366 -0.350183 0.161045 -4.368337 7.745207 4.336077 3.201996 8.706529 3.556994 -3.272484 1.317334 -6.794682 0.142356 9.477942 0.270114 -7.571098 5.766973 -6.729766 0.270777 4.056337 3.602139 4.104633 1.236519 -6.444512 -3.083734 2.943666 -0.509892 9.541926 2.151589 2.876174 -3.208901 8.060281 -4.718286 -5.973145 9.201568 6.058113 -9.003492 2.004118 2.721442 -2.835247 -1.324945 4.952239 -7.133108 -1.481731 -5.184418 -0.929500 2.441738 -3.904262 -0.745373 3.420577 -8.288058 10.136568 0.771405 1.466192 1.503180 -6.702038 -7.412270 9.948453 0.295615 -0.994131 -3.189495 -2.493501 -5.298173 -8.407128 1.307595 0.443465 -3.116783 -2.976693 -7.286303 2.584773 4.697560 -1.867909 5.949730 -6.882512 -2.758602 2.660913 -0.327063 5.652653 -2.988735 -4.618006 -3.066781 -2.931443 5.182934 -6.720079 6.142559 9.924937 -2.377791 8.365902 -0.830478 -6.607158 -1.078051 3.521826 -7.280678 7.854021 -1.305824 4.399135 -0.244721 5.655373 -6.135561 -2.465090 -0.513872 -1.124156 -2.389232 4.026611 -4.132591 0.373470 -1.315200 -7.057009 -2.755174 1.419549 -1.649609 -0.678888 0.099992 0.806428 -7.624962 -0.725096 -5.304866 1.183605 5.900306 -0.998657 -6.177649 2.297935 -0.439514 -1.091770 0.414781 0.020204 -0.475307 5.775159 -6.983193 -3.304182 1.382117 0.737148 -6.358092 -9.089334 -1.781780 -6.560524 -4.770592 4.306927 -5.789292 -0.251165 -5.289648 -2.137851 -7.783330 -4.702939 3.992267 10.640854 3.585290 -6.322975 1.460871 -0.442687 7.112516 1.482016 1.799937 0.576879 2.374250 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -2.136153 0.834971 0.066294 -0.794031 3.592332 -0.404316 1.158207 1.174292 -1.011174 2.212326 -2.912673 -1.155278 -1.124020 -2.893110 0.174699 -0.589356 1.185512 0.251581 -0.638497 0.438079 1.283500 -1.430042 0.000000 -1.350733 -0.245140 -2.563111 -0.909898 0.334051 2.588776 -1.403432 -0.677109 0.542708 4.241129 0.231892 3.416428 2.322395 1.242805 2.599938 0.641045 -1.768553 -0.304669 2.410267 -1.615835 -2.357468 -0.246697 -1.735349 -1.901046 -1.081497 1.123152 -0.646461 0.008686 2.212809 -0.353915 0.700209 -2.073492 1.340732 2.572463 -0.107569 3.798027 0.805333 -1.176038 -0.144850 -1.680639 2.468435 -1.369818 0.361202 -0.922899 -2.166734 0.154000 0.163492 -0.365031 -1.935192 -1.374455 1.732738 1.214897 -2.207217 1.228290 -0.342297 -1.243663 -3.620536 -2.712459 0.644698 -0.314130 2.729615 -0.079041 -0.040210 0.393039 0.431510 0.196778 -3.533790 -0.128383 2.413911 -2.172823 -0.492813 -0.509972 2.202498 -0.082567 1.057219 -1.932711 -2.047574 0.551064 -0.570197 0.488777 -1.573211 1.382650 -1.951354 0.362030 -0.316053 0.310096 1.775273 2.340792 1.033967 2.206574 2.335172 -2.283672 -0.434313 -2.627430 1.117762 -0.668922 -0.208246 -0.123632 1.088709 0.857340 0.445659 2.803755 -3.798537 1.209722 1.234120 -0.740806 -2.510748 -0.171268 -2.331649 -2.436919 -0.655334 1.628636 0.539517 0.489464 -1.595721 0.641910 -0.267260 -1.292228 -0.136609 0.081745 2.633029 -3.276328 -0.317368 -0.394601 -0.659348 -1.273353 2.071437 1.357774 1.585717 3.233181 1.847108 -1.677004 1.622337 -3.022327 0.501977 4.020641 0.407239 -2.826137 2.164814 -2.515151 0.063804 1.581502 1.768708 1.953876 -0.761339 -2.080090 -0.675381 1.736807 -0.082180 3.435087 -0.228339 1.159460 -1.533484 2.902820 0.128040 -1.728344 3.960913 1.236673 -3.579478 1.803635 1.659950 -1.693337 -0.128029 1.640141 -2.497395 -0.612901 -2.593179 0.552121 1.271939 -1.968485 -0.106316 0.560306 -2.947889 3.293322 0.218193 0.095917 1.163248 -2.364773 -1.827810 4.139503 -0.013560 0.108787 -1.414890 -1.614253 -1.799192 -3.362862 0.435422 -0.457208 -1.497275 -0.687511 -2.857522 0.288958 2.792228 -0.392367 2.052929 -3.503544 -0.010966 1.256801 1.142187 1.239478 -0.969998 -1.742267 0.315692 -0.672089 1.049918 -2.229152 2.173392 3.112534 -1.604753 2.004919 -0.649923 -1.465593 0.837754 1.155151 -2.859944 3.046964 -0.380338 2.438288 0.168517 2.047071 -2.200518 -0.707784 -0.132499 -0.189414 -1.415799 1.187504 -1.984391 -0.052128 0.808157 -1.825589 -2.165171 0.442279 0.039038 0.590650 0.112134 -0.486501 -2.109412 0.024151 -1.553073 0.992874 2.098568 0.040010 -1.895775 0.949605 0.580864 -0.026402 0.148426 0.280005 -0.041754 2.339024 -2.800216 -0.691185 0.232961 0.972587 -1.676992 -4.118624 0.258479 -2.141293 -1.427112 2.473657 -3.388725 -0.210712 -2.002620 -0.278910 -3.344572 -0.357128 0.755061 3.970254 0.994551 -1.891909 0.977562 -0.158390 1.760041 -0.198410 0.658256 0.342057 1.239210 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -4.908367 4.274198 3.519468 -2.536607 6.934082 0.437107 3.349894 2.947345 -3.285540 5.131678 -7.465986 -2.541239 -2.452562 -5.988478 -0.205437 -5.027719 1.141018 0.025004 -1.286375 2.286293 2.933164 -3.648487 -0.305042 -3.563531 -0.929269 -6.255535 -2.278942 0.236925 5.894921 -1.142711 1.338532 0.119787 9.344525 0.700858 8.172037 5.614154 2.033433 6.120909 0.826534 -1.698302 -1.572648 5.770702 -4.087152 -5.123132 -1.180988 -4.374696 -4.097315 -2.747489 1.782425 -3.161090 -1.478802 4.947050 -0.722361 1.499305 -3.945892 3.503531 5.763441 -0.109754 8.562560 1.631397 -2.934168 -0.488280 -4.549682 4.412308 -2.239242 1.607986 -1.746602 -4.134291 1.556126 -0.617915 -2.221433 -2.841408 -1.830142 4.723259 3.005087 -5.172240 2.587295 -1.968749 -8.038403 -6.500386 -4.333036 1.567192 1.110935 5.902645 -0.257671 -0.133955 1.734805 1.677051 -0.136758 -8.358978 -0.461628 7.194588 -4.332273 -2.754070 -2.571861 5.596365 0.323755 3.332649 -4.188847 -3.324939 1.765600 -0.114372 0.892587 -6.228982 0.263524 -6.302582 0.906383 0.446408 -0.584227 4.846932 3.306776 3.767064 5.752203 6.034995 -6.976649 1.901674 -5.907108 2.211427 -2.295926 -0.316143 0.308147 2.101685 0.400997 2.196835 6.086319 -8.068889 2.805873 3.138678 -2.314205 -6.586983 -0.476131 -6.276038 -5.643495 -1.531009 2.628743 2.320187 1.301629 -4.336718 0.362617 -1.198833 -0.816870 -2.837108 1.409288 5.939388 -6.891138 -1.132632 -0.578438 -0.214756 -3.456083 5.485317 3.338775 2.615001 7.558067 3.625518 -2.483577 3.303698 -5.666682 -0.040028 8.646789 1.440969 -6.439591 5.006102 -5.044678 -0.558676 2.963027 3.182055 4.194979 0.764370 -7.116736 -4.097181 3.037838 -1.360759 7.654247 1.701575 1.696465 -3.745296 9.258698 -1.645757 -5.301946 8.055675 4.660640 -6.914301 2.151053 2.819659 -5.834311 -1.325751 4.311518 -5.536662 -1.064941 -4.335812 -0.403211 1.910381 -3.368837 -1.086879 0.942408 -7.176464 8.207385 0.564621 1.750321 0.985130 -4.951267 -7.048603 8.459186 0.110445 -0.933012 -2.949839 -2.377010 -5.131858 -7.347486 1.225984 0.053451 -3.405577 -3.048787 -6.247554 1.793641 4.086477 -1.669262 4.728075 -6.432224 -2.439265 2.681308 2.160462 3.741292 -2.755625 -4.142176 -1.158345 -1.197647 3.736836 -4.002059 6.754459 8.656566 -2.278449 6.237713 -2.008081 -5.297581 1.241846 3.446633 -6.911880 6.986149 -1.478143 4.769620 0.054994 4.456488 -4.835231 -2.195214 0.298607 -2.130371 -2.130434 2.945375 -3.784136 0.296078 0.067946 -5.438989 -2.711788 1.436882 -0.922556 0.111089 0.299821 1.285508 -6.038135 -0.608428 -4.212127 0.784953 5.028210 0.280482 -4.700924 1.915458 0.293956 0.458197 -0.098440 0.026107 0.021915 4.360452 -6.233312 -1.680720 0.201172 0.153593 -4.634701 -8.601503 0.563247 -5.905623 -4.928460 4.361624 -6.092666 0.715747 -4.860753 -1.559143 -7.906353 -3.509616 2.762768 9.149552 2.470703 -4.821560 1.268937 -0.947660 5.872839 0.633965 1.860238 0.726156 3.099527 +PE-benchmarks/ugly-numbers.cpp__main = -0.422618 0.005695 -0.154376 -0.172862 1.067658 0.044156 -0.130521 0.864609 0.138258 0.524511 -0.472487 -0.216960 -0.094646 -0.341818 0.082271 0.232371 0.025047 0.259156 -0.420081 -0.279235 0.315774 0.253271 0.029172 -0.152129 -0.107702 -0.182520 -0.316716 0.108339 0.224579 -0.041078 -0.550036 0.074630 0.726739 -0.121075 0.625890 0.347459 0.674488 0.432620 -0.096551 0.373161 0.145626 0.383868 -0.368426 -0.514736 0.184922 -0.523874 -0.483750 -0.109922 0.282011 -0.426676 0.766773 0.378766 0.001824 0.104013 0.074676 0.333924 0.001415 -0.027578 0.660602 0.272510 -0.760559 -0.058174 -0.505599 0.919954 -0.240223 0.763803 -0.206538 -0.879365 -0.528553 0.134193 0.462069 -0.637712 -0.385607 0.339286 0.031012 -0.252571 0.395720 -0.096087 0.877958 -0.431166 -0.590859 0.209413 -0.341454 0.382583 -0.121115 -0.049230 -0.383057 0.023262 -0.056757 -0.659009 -0.103914 0.596362 -0.580781 0.459476 -0.683081 -0.421961 -0.217056 0.293671 -0.210499 -0.384921 0.172678 0.264140 0.115672 -0.059950 0.384386 -0.224749 0.324688 0.233239 0.210666 0.161123 0.124178 0.045262 0.308523 0.498206 0.070394 0.098242 -0.458936 0.342301 -0.253998 0.199440 -0.179241 0.218431 0.511588 0.048681 0.496718 -0.560913 0.292932 0.011071 -0.420099 -0.320298 0.120916 -0.421745 -0.544822 -0.098552 0.355080 0.085044 -0.192142 -0.304598 0.255219 -0.126659 -0.660288 -0.282302 -0.187525 -0.209137 -0.546635 -0.111113 -0.133051 -0.189526 -0.198395 0.555226 0.395855 0.396450 0.671584 0.414587 -0.113955 -0.225610 -0.698259 0.253912 0.713037 0.025780 -0.613031 0.362763 -0.588454 0.173152 0.418388 0.297303 0.116062 0.467444 0.097318 0.197744 -0.128872 0.173394 0.777899 0.422056 0.363878 -0.390068 -0.146294 -0.500144 -0.247557 0.931133 0.466439 -0.840978 0.031644 0.217492 0.164697 -0.041523 0.221748 -0.495806 -0.284253 -0.406629 0.139331 0.447206 -0.493552 -0.241251 0.520786 -0.557934 0.721661 -0.051403 -0.056643 0.208498 -0.794670 0.098109 0.871476 0.179841 -0.103578 -0.155374 -0.259127 -0.173028 -0.554433 0.133130 0.274559 -0.088187 -0.317563 -0.494228 0.009920 0.676602 -0.052578 0.317263 -0.523932 -0.014739 0.254585 -0.481545 0.422132 -0.684641 -0.247677 -0.428695 -0.221745 0.404447 -0.512520 0.005575 0.659147 -0.361056 0.489239 0.596491 -0.168339 -0.326852 0.294794 -0.356995 0.605846 0.015993 0.007527 -0.025443 0.411961 -0.390063 -0.027595 -0.220765 0.316081 -0.170645 0.471317 -0.295881 -0.042372 0.048530 -0.654309 -0.216556 0.128993 0.141139 0.110934 0.056102 -0.323795 -0.480929 -0.151515 -0.355806 0.067743 0.479188 -0.310114 -0.542052 0.189315 -0.146293 -0.531085 -0.128572 0.146075 0.063394 0.652800 -0.532355 -0.076959 0.282651 0.108415 -0.780405 -0.362552 -0.451719 -0.228494 -0.252304 0.219838 -0.514461 -0.407889 -0.362144 0.062929 -0.483556 -0.284415 0.129666 0.765585 0.377261 -0.237477 0.383844 0.100969 0.486593 0.167614 -0.076838 0.170395 0.258447 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = -0.719657 0.333586 0.250632 -0.102194 1.426687 0.106813 0.053446 1.645389 -0.959686 0.841754 -0.895045 -0.027423 -0.217056 -0.620527 0.056529 0.049617 0.223053 0.177603 -0.384574 -0.007323 0.491105 0.011625 -0.252966 -0.356340 -0.122039 -0.499745 -0.257792 -0.006820 0.904227 -0.047310 -0.605050 0.185972 1.597207 -0.056315 1.583810 0.902021 0.899338 0.726663 0.275777 -0.135339 -0.263559 0.908418 -0.722571 -0.547262 -0.145169 -0.878241 -0.586052 -0.187384 0.249834 -0.318646 0.692689 0.612974 -0.151192 0.571001 -0.072995 0.530961 0.214577 -0.382129 1.255204 0.356484 -1.070449 -0.184169 -0.504863 1.808988 -0.237349 0.706300 -0.347034 -0.830847 0.093021 -0.295660 0.374753 -0.784569 -0.183115 0.910765 0.050054 -0.609121 0.636110 -0.153173 0.271740 -1.163283 -0.982971 0.283196 -0.354327 0.703427 -0.226900 -0.139534 -0.475674 0.231008 -0.161408 -1.336723 0.042058 1.243688 -1.042204 -0.052605 -1.632294 0.106189 -0.098862 0.891414 -0.416446 -0.669748 0.401056 0.167184 0.096281 -1.088587 0.770625 -0.486612 0.114825 -0.047417 0.224954 1.166242 0.117082 0.590046 1.182067 1.027646 -0.018375 0.136287 -0.768694 0.643813 -0.476635 0.019219 0.063757 0.381493 0.742072 0.135944 1.008169 -1.118276 0.097079 0.315341 -0.438598 -0.803838 -0.020603 -1.237652 -1.016469 -0.411688 0.517883 0.459780 -0.013747 -0.901913 0.232287 -0.145598 -0.835432 -0.983125 0.006760 0.193592 -1.219253 -0.364189 -0.143636 0.079505 -0.538970 1.110001 0.621172 0.681885 1.018187 0.560654 -0.259400 -0.004604 -1.074050 -0.008244 1.079397 0.013800 -1.083389 0.781516 -0.957246 -0.113307 0.597269 0.642300 0.433152 0.393370 -0.591945 -0.385883 0.111945 0.124666 1.298803 0.587791 0.363476 -0.210731 0.776326 -0.574604 -1.158853 1.239695 0.684548 -1.095900 -0.012112 0.118585 0.113357 -0.028709 0.672525 -1.224856 -0.561708 -0.607233 -0.107249 0.518325 -0.700233 0.129333 0.844261 -1.062439 1.370484 0.015729 0.052994 -0.078328 -1.046591 -0.388786 1.240802 0.293169 -0.110836 -0.407735 -0.371852 -0.884084 -0.944775 0.202060 0.103104 -0.025537 -0.613604 -0.928867 0.105410 0.716162 -0.071949 0.714273 -1.304134 -0.290081 0.388300 -0.273255 0.647861 -1.278421 -0.660134 -0.593230 -0.204429 0.824204 -0.961360 0.844876 1.406068 -0.276317 1.005991 0.629858 -0.688237 -0.275387 0.366395 -1.133255 0.960412 -0.106198 -0.110452 0.052155 0.643481 -0.871956 -0.480783 -0.302631 0.473421 -0.412095 0.601125 -0.330277 0.161012 -0.424025 -1.057593 -0.209362 0.024688 -0.300074 -0.081589 0.122305 -0.419037 -1.106683 -0.233055 -1.070138 0.087140 0.846262 -0.513428 -0.705267 0.545642 -0.488403 -0.361267 0.583699 -0.026069 0.009090 0.752555 -0.923556 -0.586803 0.317680 0.284536 -0.906735 -1.062917 -0.618146 -0.486063 -0.811308 0.620253 -0.772916 -0.329742 -0.730122 -0.399938 -1.370492 -0.831666 0.533095 1.532588 0.259950 -0.718138 0.113208 -0.046785 1.044033 0.359266 0.333537 -0.079729 0.364318 +PE-benchmarks/min-cost-path.cpp__main = -0.400182 -0.087001 -0.035061 -0.143817 0.805603 -0.108947 -0.085520 0.616111 0.535534 0.220056 -0.590446 -0.533463 -0.234003 -0.337057 0.160041 0.079292 0.131218 0.334095 -0.484430 -0.401568 0.412802 0.361703 -0.075786 -0.355010 0.084219 0.026947 -0.386304 -0.039927 -0.103870 0.153338 -0.563509 0.259473 0.664285 0.103404 0.535838 0.363901 0.617667 0.650713 -0.266052 0.813398 0.240326 0.484183 -0.239880 -0.709660 0.349138 -0.549132 -0.248176 -0.203954 0.210617 -0.422788 1.034222 0.306581 0.115180 0.089900 0.033455 0.051447 0.073137 0.368147 0.462305 0.467186 -0.672475 0.282703 -0.443798 0.473142 -0.321566 0.983671 0.057304 -0.834986 -0.657793 0.163795 0.711528 -0.641820 -0.575880 -0.001043 -0.090880 -0.032596 0.485190 0.064250 0.916800 -0.121984 -0.693099 0.124503 -0.302376 0.385245 -0.238245 -0.233153 -0.500791 -0.184027 0.209878 -0.336434 -0.338972 0.444099 -0.451683 0.600261 -0.587318 -0.589608 -0.202018 0.249045 -0.180072 -0.385428 0.210874 0.297961 0.051015 0.442916 -0.105687 -0.078254 0.611679 0.418743 -0.060764 0.005895 0.174936 0.022396 0.095402 0.179847 0.165835 0.251786 -0.459684 0.316767 -0.202493 0.150030 -0.007962 0.090783 0.383585 -0.195326 0.183462 -0.309030 0.378257 0.158193 -0.484584 -0.038948 0.276223 -0.380297 -0.667055 -0.144543 0.434095 0.293530 -0.212615 -0.107251 0.144184 -0.279962 -0.367544 -0.259017 -0.430704 -0.355822 -0.236316 -0.238362 -0.215884 -0.328094 -0.246470 0.361801 0.077743 0.202834 0.486642 0.343097 -0.272341 -0.645280 -0.538183 0.273192 0.711009 -0.110614 -0.555366 0.071927 -0.231336 0.398748 0.450940 0.109576 -0.030899 0.467009 0.329357 0.402834 -0.556954 -0.113969 0.607639 0.589475 0.447322 -0.504951 -0.256653 -0.465385 -0.198463 0.926077 0.504859 -0.717004 -0.232352 0.328298 0.111175 -0.214584 0.034132 -0.186556 -0.169846 -0.455564 0.258672 0.273500 -0.628063 -0.339714 0.496323 -0.543588 0.503871 0.048986 0.100695 0.050983 -0.864390 0.037337 0.992505 0.107284 -0.103455 -0.027920 -0.172943 0.059244 -0.568030 0.198871 0.266260 -0.001565 -0.348402 -0.303782 0.162956 0.778232 -0.327992 0.098159 0.101076 -0.077263 0.142833 -0.659864 0.447315 -0.718363 -0.405050 -0.376350 -0.159449 0.497760 -0.306505 -0.295145 0.644133 -0.341477 0.301086 0.948127 -0.071608 -0.437149 0.464673 -0.089820 0.409286 -0.172379 -0.101837 -0.092750 0.490187 -0.407241 -0.200649 -0.156290 0.386416 -0.251173 0.582712 -0.312686 0.121315 0.076823 -0.605707 -0.021790 0.388235 0.136997 0.237109 -0.073999 -0.174784 -0.437637 0.038092 -0.136547 0.034614 0.545406 -0.127179 -0.636770 -0.117150 -0.091839 -0.715341 -0.229702 0.242037 -0.124426 0.793663 -0.375410 0.038527 0.345906 -0.111042 -0.670552 -0.214571 -0.432907 -0.284370 -0.171398 0.242812 -0.333814 -0.393940 -0.267762 0.274481 -0.269052 -0.233725 -0.075047 0.460002 0.502987 -0.036922 0.374078 0.266023 0.483776 0.192872 -0.273870 0.141417 0.376610 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -1.718150 0.457895 0.407714 -0.081601 2.718470 -0.008773 0.730027 1.392121 -0.955098 1.587955 -2.175438 -1.445464 -1.230218 -1.975967 0.051631 -1.086144 1.347270 -0.056016 -0.778156 0.384865 0.903165 -0.889819 0.189906 -1.147860 -0.101196 -2.198774 -0.856954 0.000107 2.209824 -0.335632 -0.279893 0.163580 3.802475 0.367058 2.782636 1.409238 0.838884 1.695170 0.342961 -1.844589 -0.493723 2.133580 -1.460543 -1.554580 -0.477848 -1.794834 -1.460958 -0.341342 0.802389 -0.607242 -1.564467 1.317739 -0.134098 1.083716 -1.059388 0.743652 2.240654 0.106756 2.896342 0.350235 -0.880193 -0.539142 -1.109146 1.543605 -0.829246 0.024146 -1.402705 -1.707615 -0.179073 -0.186443 -1.002002 -1.041889 -0.739602 1.560113 1.374158 -1.500551 1.265949 0.200331 -0.966908 -2.807967 -2.058261 0.223390 -0.793177 1.910709 -0.303572 -0.023423 0.942584 0.173037 0.386894 -2.814139 -0.029378 1.766603 -1.862953 -0.646467 -0.139122 1.284656 -0.039947 1.401770 -1.422145 -1.871523 0.164615 -0.503836 0.099651 -1.515730 1.328054 -1.280865 0.010559 -0.623397 0.691523 2.356425 1.161552 1.178349 1.762918 1.988530 -2.422518 -0.581569 -1.371005 0.902439 -1.859421 -0.169383 -0.137603 0.954906 0.947777 0.863341 2.224582 -3.011213 0.773217 1.282772 -0.206022 -1.694108 -0.167646 -2.215100 -1.921036 -0.395578 1.211450 0.198115 0.544929 -1.774218 0.525994 -0.266355 -0.661892 0.381852 -0.109573 1.465841 -2.951158 -0.422526 -0.197130 -0.324434 -0.877619 1.619843 0.840556 1.061284 1.909128 1.169685 -2.037400 1.588664 -2.075534 0.511745 3.426898 -0.552078 -2.090900 1.491779 -1.872266 0.024606 1.508738 0.954397 1.643926 -0.362007 -1.404705 -0.647607 0.550747 0.217441 2.694393 0.490713 0.858829 -1.939650 2.380107 -0.761087 -1.305057 3.038759 0.852611 -2.798397 1.346994 0.962801 -2.488365 0.188829 0.698106 -2.023712 -0.309285 -2.710166 0.299419 1.040703 -1.350483 0.101912 0.932761 -2.367542 2.473564 0.341355 -0.133592 0.759333 -1.510939 -1.813216 3.462890 0.383765 0.255784 -1.254066 -1.224982 -1.550181 -2.738972 0.180325 -1.094534 -1.235545 -0.194521 -2.231909 0.140402 1.888976 -0.039325 1.784372 -3.827807 0.327056 0.580128 0.903814 0.887908 -0.811006 -1.426236 -0.122928 -1.308864 0.789887 -2.111409 1.579147 2.148155 -1.117947 1.757924 -1.500323 -2.386049 0.534202 0.494844 -2.123213 1.867517 -0.581048 2.309730 0.077870 1.803287 -1.586732 -0.434374 -0.337769 -0.886054 -1.405239 1.208495 -1.625771 -0.071809 1.060685 -1.250251 -1.894553 0.048096 -0.520137 0.841566 -0.019902 -0.508860 -2.656866 0.593291 -0.573741 0.697335 1.574099 0.190959 -1.774018 0.649808 0.205817 -0.001858 -1.135736 0.003446 -0.463217 1.375762 -2.046563 -0.990696 0.406177 0.827219 -0.833111 -3.062850 0.031863 -1.758675 -1.219659 2.306006 -2.422029 0.238947 -1.343285 -0.627420 -1.961417 -1.059085 0.970097 3.049201 0.454833 -1.940973 0.693475 0.008201 1.436193 -0.042897 0.935586 -0.087876 0.665330 +PE-benchmarks/magic-square.cpp__main = -0.358861 -0.102796 -0.373163 -0.119054 0.860152 -0.141578 -0.136905 0.606537 0.079612 0.392378 -0.358841 -0.146693 -0.213408 -0.520265 0.131653 0.368519 0.235916 0.281611 -0.280585 -0.232424 0.303785 0.022209 0.104306 -0.174169 -0.017253 -0.271068 -0.091130 0.091007 0.206493 -0.014584 -0.533056 0.181310 0.626344 -0.029829 0.342605 0.248236 0.477000 0.487473 0.121574 -0.030047 0.145308 0.342877 -0.195082 -0.582611 0.274002 -0.387188 -0.318813 -0.139986 0.314051 -0.341339 0.478372 0.333228 0.023717 -0.005305 -0.233240 0.167985 0.251878 0.033396 0.551023 0.245922 -0.417672 -0.275531 -0.268383 0.580504 -0.367868 0.331064 -0.041600 -0.629677 -0.384552 0.259850 0.185568 -0.377548 -0.344821 0.076372 0.072588 -0.223061 0.301243 0.072237 0.673929 -0.361978 -0.591073 0.079491 -0.402706 0.433349 -0.107779 -0.032438 -0.193132 -0.090789 0.144630 -0.432724 -0.113894 0.320940 -0.347642 0.379250 -0.287616 -0.076005 -0.074266 0.011644 -0.220129 -0.330674 0.069755 0.081167 0.149360 -0.012139 0.209306 -0.147392 0.357797 0.043264 0.198045 0.198302 0.325223 -0.078840 0.007561 0.246193 0.007297 -0.072668 -0.530690 0.232482 -0.029428 0.105693 -0.174234 0.136688 0.471608 -0.136462 0.329242 -0.564643 0.372923 0.111583 -0.152126 -0.208039 0.181944 -0.137330 -0.363213 -0.066437 0.448770 -0.070876 -0.132491 -0.084380 0.278819 -0.035142 -0.670578 0.010914 -0.305818 0.155906 -0.540326 -0.007556 -0.179887 -0.321760 -0.046823 0.191000 0.138728 0.305384 0.480717 0.384333 -0.281350 0.108475 -0.609839 0.349354 0.730272 0.093049 -0.475445 0.204681 -0.379791 0.213751 0.334352 0.199201 0.201388 0.231233 0.172201 0.255426 0.007071 0.108995 0.564022 0.178522 0.414009 -0.470367 -0.121563 -0.106459 0.073583 0.777447 0.248566 -0.720939 0.306623 0.380513 -0.084280 0.066105 0.031411 -0.281043 -0.133026 -0.495852 0.272931 0.455311 -0.589163 -0.235731 0.174878 -0.406300 0.460176 -0.021363 -0.048663 0.259108 -0.625307 0.322429 0.720365 0.133330 0.025810 -0.186870 -0.387548 -0.368018 -0.578582 0.117994 0.090891 -0.185916 -0.138363 -0.395136 -0.200076 0.716851 -0.011126 0.124497 -0.662270 0.267904 0.246870 -0.048636 0.222053 -0.379334 -0.230333 0.017372 -0.195720 0.261642 -0.373139 -0.056008 0.327385 -0.439169 0.330020 0.338718 0.083213 0.016184 0.237425 -0.227174 0.463472 -0.004214 0.289124 0.005507 0.377406 -0.292029 0.065795 -0.184893 0.163478 -0.235338 0.344686 -0.423256 -0.096254 0.343272 -0.336223 -0.399442 0.137386 0.248441 0.374820 0.012453 -0.318771 -0.206084 -0.032039 -0.171748 0.186938 0.383228 -0.183683 -0.422970 0.047996 0.101502 -0.399078 -0.190184 0.211902 0.049497 0.575649 -0.444346 0.078159 0.169025 0.147049 -0.477852 -0.388293 -0.157985 -0.051904 -0.130513 0.427283 -0.675641 -0.306035 -0.226290 0.268636 -0.487409 0.096902 -0.147635 0.513436 0.141502 -0.009987 0.421193 0.163292 0.170555 -0.024741 -0.047201 0.116268 0.274782 +PE-benchmarks/box-stacking.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -15.733122 18.944404 15.720800 -9.482202 20.869554 4.373655 10.854030 7.503107 -7.857825 17.320100 -26.554942 -7.009877 -6.680339 -19.493513 -1.727074 -18.969421 0.006545 0.472169 -2.933005 7.378782 9.916015 -13.244658 -1.722694 -13.349365 -2.909699 -22.761432 -8.629978 -0.795539 14.914162 -0.319653 7.729067 -0.220347 27.570997 6.773312 25.449697 19.158942 3.479084 22.926785 1.799811 8.619960 -5.815011 17.820321 -13.014079 -19.532408 -0.152839 -15.547296 -11.012979 -13.055287 2.873537 -14.278951 4.227901 16.206547 -2.668899 3.571754 -12.911428 7.149136 18.804251 2.192906 26.618904 6.388392 -10.754595 1.097988 -16.446468 9.174863 -6.544028 7.601284 3.109820 -14.144757 7.179340 -2.918487 1.037201 -8.943641 -7.497861 15.142070 7.439322 -15.851723 6.405289 -8.657252 -38.634906 -16.194952 -12.421214 5.665277 7.620523 19.494149 0.480002 -1.042562 1.382538 5.728967 0.110259 -26.607665 -3.687641 26.245822 -10.366027 -4.391119 -12.487848 19.106083 0.668890 11.332422 -12.672033 -6.350013 7.334925 3.819630 2.386156 -15.954661 -12.467289 -25.218297 10.218924 3.799110 -8.076713 8.300211 9.985628 11.227838 18.020758 19.380673 -25.337808 13.517290 -18.902790 7.470528 -1.141135 -0.359324 2.061949 4.714553 -5.723981 4.304222 18.526969 -23.505755 9.708501 10.371888 -11.231768 -23.952098 -1.954095 -21.930195 -18.311203 -4.967804 6.814928 10.255505 4.215025 -13.160624 -4.529610 -7.328426 -2.100437 -18.348821 5.287816 23.846431 -18.012019 -3.929999 -1.910955 -1.040658 -14.094090 17.696129 10.374679 7.916629 24.422890 11.886988 -3.895122 4.808578 -15.915458 -2.135888 29.334627 14.321497 -21.738430 15.173342 -11.280217 -0.462859 8.941833 7.496539 12.800125 2.305286 -25.907514 -15.504871 6.168375 -8.023208 24.266815 13.479798 6.568557 -9.997157 33.726785 -2.490333 -19.671878 25.461552 17.628244 -18.609956 2.817427 9.259342 -19.684222 -5.634458 14.591555 -13.825706 -2.158275 -9.379250 -3.084497 2.589307 -10.095211 -6.563657 1.139305 -24.745994 29.096640 3.104805 15.276317 1.513479 -17.080891 -28.544178 26.600462 -2.601898 -5.631587 -7.462250 -4.544087 -16.382889 -21.673379 4.394940 4.476644 -12.508240 -12.398594 -19.833805 8.972599 12.437850 -8.855682 13.711009 -8.920165 -14.736510 7.450082 0.723506 12.864692 -15.518342 -13.906484 -5.794320 0.627145 15.654470 -6.441044 23.640375 31.815107 -5.097145 19.034538 0.678209 -9.575926 2.732935 14.115028 -19.969135 21.454209 -9.691840 12.935411 -0.485024 15.380067 -13.785940 -8.410177 3.126910 -3.661161 -3.944392 11.852766 -10.955583 2.155022 -0.462652 -21.478073 -3.793558 7.289294 -3.820913 0.927184 -0.111207 7.767173 -18.762474 -1.845164 -14.086788 0.799160 16.890073 2.612054 -15.661837 3.453193 -0.672848 1.379354 0.587437 1.326078 0.207045 14.110418 -19.335170 -3.818662 -0.274840 -5.687801 -16.663936 -26.413958 2.164080 -22.323239 -20.597864 12.740210 -20.932362 4.104501 -16.706529 -5.534165 -26.804088 -10.631897 6.138176 28.689459 10.283447 -12.999183 3.788544 -3.185331 21.122954 2.839313 5.028446 3.687071 14.472984 +PE-benchmarks/box-stacking.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/longest-palindrome-substring.cpp__main = -2.001208 -0.251901 -1.176664 -2.069382 5.370014 -0.900619 -0.280179 4.317956 1.146620 1.420130 -3.876180 -1.088229 -0.555601 -3.864805 0.531495 0.207354 1.977386 0.859867 -2.311122 -0.392182 1.349499 1.117978 0.562787 -1.962267 -0.405308 -1.392389 -1.192925 0.526222 -0.153959 -0.264789 -1.042301 1.068557 5.223005 0.792980 3.554895 1.759620 3.198071 3.089493 1.107081 0.593187 1.849667 1.615879 -0.833640 -3.220114 0.068614 -2.263446 -3.199500 -0.939429 0.932280 -2.863137 1.783977 2.188141 1.077397 0.300895 -1.894060 0.594578 1.852120 -1.034085 3.085568 1.967487 -4.130711 -1.000406 -1.074529 2.350186 -1.900848 2.325196 -0.001147 -2.374708 -2.199443 2.713111 1.495331 -3.191909 -2.977228 -0.452211 1.074389 -1.447163 2.596415 0.382648 4.141601 -2.497320 -1.611519 1.770855 -1.265843 2.361132 -0.089777 -0.004742 -0.588051 -0.968240 0.624982 -2.636518 -0.768659 2.060261 -2.802050 0.179884 -2.962794 0.849705 -1.149766 0.189265 -1.778285 -3.866243 1.062586 0.138832 -0.024567 -0.060124 0.389807 -1.689689 1.692134 1.817350 -0.032528 2.485760 0.788620 1.231642 1.427202 1.356357 -0.919742 0.900629 -4.210252 1.506028 -1.860084 -0.273599 -1.309435 -0.204950 3.124196 1.502818 1.162602 -3.167152 3.305837 2.730012 -1.975678 -1.127961 0.918596 -1.311342 -3.167599 0.331676 2.035358 0.471054 0.792449 -0.475714 1.374444 -1.252747 -1.701297 -1.324684 -1.594454 0.721191 -3.291100 -0.513143 0.078755 -0.459802 -1.199545 2.127666 1.074094 -0.027054 4.067415 0.299089 -2.645393 0.651930 -3.258934 1.521212 5.410129 0.414066 -2.755547 2.032023 -2.402004 0.976431 1.062534 1.655466 0.536660 -0.407671 -1.181617 0.534191 0.283054 -0.603594 3.718520 0.270183 1.859841 -4.268005 0.852360 -1.494843 1.032714 5.459969 2.196968 -4.233514 0.116018 3.353651 -0.108857 -0.390277 0.843457 -2.271711 -1.973590 -2.525381 1.735380 1.305028 -2.886638 -1.596468 1.062673 -2.809757 2.311525 0.458092 -1.506119 -0.425901 -3.173352 0.439417 6.221992 0.183960 0.328147 0.558454 -1.809913 0.554393 -4.638653 0.029714 1.371715 -0.944386 0.962327 -1.638188 -0.026469 3.656082 -1.896488 0.995024 -4.122076 0.725396 1.825334 -1.110933 0.722436 -3.138805 -1.859789 -0.320102 -0.981716 1.200824 -3.571780 0.285227 2.243168 -1.614281 3.092603 1.180312 -0.937211 -0.344485 1.733866 -1.550260 3.919845 -0.378857 3.397867 0.726009 2.879708 -2.134364 -0.691141 -2.001131 -0.645112 -2.430200 2.483838 -3.885493 -0.046604 1.944159 -0.171309 -3.045794 1.853730 1.473135 0.107575 -0.611236 -1.181487 -1.453035 -0.061220 -1.458284 2.277254 2.014580 -1.392740 -3.470900 -0.075294 3.243719 -2.470066 -0.169895 0.842172 0.569846 4.284810 -2.734441 0.920394 1.603387 1.677794 -3.530368 -3.662460 1.135467 -1.458366 -0.116708 0.521164 -3.896517 -3.455191 -1.484113 1.702147 -2.435201 0.089823 1.377847 3.807741 1.391514 -2.018655 0.900806 0.598616 0.663170 0.113619 0.760548 1.101729 1.194932 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -1.208553 0.291274 -0.020933 -0.495641 2.451426 0.024652 0.412004 1.066584 -0.488344 1.325984 -1.694238 -0.626587 -0.604814 -1.457596 0.099566 -0.084141 0.610371 0.101417 -0.665655 -0.044592 0.697492 -0.505399 0.185101 -0.729892 -0.139308 -1.330320 -0.660680 0.229805 1.398965 -0.471107 -0.697916 0.138760 2.308150 -0.071656 1.690099 1.055841 0.976618 1.373373 0.138764 -0.880988 0.110685 1.316036 -0.928437 -1.341046 -0.022478 -1.241647 -1.272100 -0.523506 0.757526 -0.728275 0.009233 1.169544 -0.125738 0.242196 -0.855529 0.910849 1.347119 -0.175540 2.130945 0.458954 -1.011247 -0.331971 -1.018179 1.545050 -0.751622 0.666158 -0.739947 -1.580592 -0.459562 0.296667 -0.146237 -1.111047 -0.810237 0.868485 0.661579 -1.087505 0.823907 -0.172584 0.202012 -1.963033 -1.450775 0.360017 -0.487332 1.430703 -0.136335 -0.062918 0.200526 0.097794 0.137899 -1.920691 -0.197922 1.407510 -1.272521 -0.033824 -0.495087 0.653886 -0.181371 0.556379 -1.027945 -1.190544 0.225443 -0.038046 0.230648 -0.950224 1.047369 -1.025855 0.299406 0.081076 0.456535 0.985496 0.986064 0.450204 1.022251 1.276479 -1.134276 -0.144592 -1.392273 0.626867 -0.606490 0.011554 -0.296140 0.631137 0.839804 0.340303 1.556447 -2.046424 0.853738 0.599098 -0.620961 -1.201062 0.023914 -1.209116 -1.443221 -0.143621 0.860486 0.171796 0.158161 -0.878849 0.540396 -0.269963 -1.022852 0.075292 -0.138859 1.013799 -1.958902 -0.208417 -0.182105 -0.352740 -0.571150 1.268587 0.824370 0.824031 1.847632 1.010832 -0.934622 0.822503 -1.772091 0.605003 2.371342 0.041908 -1.595459 1.089766 -1.494506 0.241608 1.026998 0.845939 0.930317 0.055212 -0.786833 -0.090395 0.655877 0.061708 1.998226 0.241195 0.838529 -1.220158 1.171883 -0.481205 -0.598265 2.235563 0.891367 -2.218293 0.997445 0.978549 -0.844085 0.066385 0.706209 -1.387609 -0.498456 -1.513806 0.323251 0.937206 -1.182818 -0.315062 0.457965 -1.613946 1.939043 0.085433 -0.105538 0.674251 -1.389831 -0.649539 2.335333 0.174405 0.066117 -0.679020 -0.861384 -1.060213 -1.960819 0.207154 -0.085661 -0.901690 -0.409570 -1.576421 0.044616 1.610783 -0.211921 1.095071 -2.250927 0.242522 0.711672 0.386618 0.825636 -0.703281 -0.938793 -0.128919 -0.727851 0.666410 -1.537197 0.911521 1.566095 -0.966146 1.365201 -0.254095 -0.902809 0.208649 0.624250 -1.343223 1.724451 -0.098716 1.402020 0.032995 1.258068 -1.146862 -0.200190 -0.328613 -0.204427 -0.807596 0.941932 -1.305933 -0.099273 0.623074 -1.111627 -1.290621 0.355439 0.126440 0.476177 0.043655 -0.450619 -1.335008 -0.035307 -0.742202 0.501943 1.151019 -0.331720 -1.357289 0.383386 0.312550 -0.415259 -0.358897 0.223915 0.019159 1.401908 -1.540425 -0.291902 0.328473 0.547349 -1.284269 -1.981326 -0.127650 -1.003876 -0.791492 1.398246 -1.870020 -0.395518 -1.095229 -0.067011 -1.700557 -0.410483 0.446561 2.232406 0.551360 -1.004999 0.702043 0.078100 0.990980 -0.077774 0.335904 0.249143 0.497296 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.679788 -0.240293 0.201101 -0.300523 2.438723 -0.844383 0.242283 1.787173 0.723608 0.398262 -1.115105 -0.267155 -0.135208 -0.569936 0.539817 -0.005604 0.563390 0.951954 -1.004226 -0.984523 0.494044 1.481904 -0.278973 -0.490573 -0.080913 -0.384913 -0.711000 0.208059 -0.643093 0.115230 -1.020259 1.133693 1.731827 -0.217397 1.259041 0.965318 1.734205 0.971334 -0.227575 1.279472 1.347636 0.259431 -0.202581 -1.158542 0.230893 -0.541803 -1.226080 -0.181340 0.363252 -1.022297 1.746031 0.572662 0.413207 0.332412 0.112900 0.690091 -0.214489 -0.106519 0.670630 1.033528 -2.180744 0.479333 -0.647019 2.091452 -0.650123 1.762553 -0.521221 -2.061458 -1.508253 1.239731 1.515110 -1.556944 -1.298319 -0.334536 -0.143278 -0.165559 0.829381 0.500166 2.493125 -0.227809 -1.173295 0.731182 -0.502780 0.561901 -0.104311 -0.342820 -1.166502 -0.579002 0.362875 -0.524455 -0.710968 1.325025 -1.256029 1.108631 -2.137122 -1.615164 0.008158 0.033264 0.063230 -1.842443 0.507753 0.018187 0.023264 0.605866 0.043482 0.040703 0.510402 1.002906 0.098728 0.679958 -0.746671 0.348330 0.286268 -0.003745 0.801191 0.379104 -1.371554 1.254900 -0.801256 -0.201584 -0.390555 -0.174961 1.117184 0.379839 0.344860 -0.682841 0.899841 0.211075 -0.987153 0.093253 0.419977 -0.151503 -1.196438 -0.313129 0.992510 0.527657 -0.193470 0.188538 0.561600 -0.414892 -0.383196 -0.941175 -1.052005 -0.841533 -0.807552 -0.277801 -0.231768 -0.316653 -0.619796 0.843294 0.438673 0.576591 1.044872 0.567272 -0.461212 -0.866863 -1.715347 0.500287 1.249112 -0.032123 -0.884528 0.604284 -0.905410 0.458496 0.636189 0.612351 -0.608128 0.684309 0.441736 0.658709 -1.035220 -0.056484 1.278017 1.112467 0.358979 -1.242897 -1.043497 -1.520816 -0.110715 1.867224 1.182626 -1.794299 -0.322217 1.315529 0.703044 -0.961001 0.386343 -1.326280 -1.150262 -0.795682 0.630513 0.790739 -1.340466 -0.197419 1.496262 -0.776042 0.549630 0.084892 -0.831148 -0.172496 -1.463375 -0.330929 2.309287 0.182481 0.451343 0.240350 -0.725133 0.604039 -1.403154 -0.016167 0.910251 0.191936 -0.296669 -0.508652 -0.007222 1.660671 -0.849239 0.601303 -0.264828 0.202399 0.604908 -1.056326 0.395437 -1.839566 -0.554499 -0.706901 -0.409383 0.254815 -1.222027 -0.716049 0.756994 -0.596094 0.957637 1.734133 -1.103826 -0.948029 0.620968 -0.282260 1.007347 0.100866 -0.004502 0.549040 0.791776 -1.069092 -0.496469 -0.727525 0.609083 -1.258602 1.167245 -1.127886 0.161367 0.229972 -0.728139 -0.646436 0.695659 0.915409 0.074003 -0.384012 -0.523407 -0.556329 -0.092294 -0.851701 0.606347 0.704188 -0.902047 -1.110832 0.362954 0.552795 -2.218415 -0.429940 0.402541 0.226821 1.578416 -0.838375 0.389649 0.939736 0.482501 -2.042790 -0.968628 -0.422957 -0.965517 -0.454579 -0.599892 -0.995332 -1.778404 -0.334382 0.896983 -0.771945 -0.888559 0.615245 1.214441 0.472652 -0.036457 0.706640 0.385865 0.263073 0.152311 -0.113048 0.210430 0.519094 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -1.410385 1.367124 0.405388 -1.329425 3.884725 -0.311204 0.957745 1.502309 -0.662686 1.107027 -3.004509 -0.045992 0.161314 -2.330382 0.614138 -0.562887 0.476632 0.633808 -0.764007 0.116663 0.764994 -0.272829 -0.159766 -1.681515 -0.186675 -2.178404 -0.747462 0.238909 0.892687 0.234012 -0.514654 0.686860 2.563239 -0.214119 1.726732 1.733256 1.557891 1.632623 0.230499 -0.620114 1.317269 0.938723 -0.669632 -2.118319 -0.193309 -1.220872 -2.204077 -0.908345 0.475389 -1.811572 0.038169 1.451864 0.349275 -0.332450 -1.388027 1.383716 2.046403 -0.453497 1.972944 1.254443 -1.715037 -0.332932 -1.106498 2.216123 -1.081782 1.296673 -0.388775 -2.284006 -0.859401 1.904599 0.206917 -1.119701 -1.558980 -0.014660 0.757337 -1.222269 1.051383 -0.217440 -0.031611 -1.483904 -0.864604 1.075206 -0.466244 1.947535 0.246972 -0.228660 -0.160169 -0.388770 0.754468 -1.577422 -1.345135 2.221970 -1.157769 -0.252326 -1.627432 0.849025 1.138137 -0.141074 -0.635208 -2.281803 0.797402 0.162125 0.052426 -0.956312 0.170122 -1.789426 0.362228 1.359926 -0.131200 2.141689 -0.467098 1.098441 0.685513 0.620581 -1.124518 0.213554 -2.326733 0.868234 -1.112066 -0.192144 -0.617497 -0.228613 1.389715 0.950696 1.009634 -1.953318 2.156734 1.372985 -0.892356 -0.988682 0.522165 -0.767902 -1.880086 0.021891 0.776510 0.756175 0.424291 0.120562 0.565165 -0.659173 -0.636104 -0.886200 -0.689017 1.708471 -2.629498 -0.136141 -0.045316 0.049139 -1.005200 1.291016 0.919922 0.378386 2.399999 0.943033 -0.906221 1.177106 -2.098523 1.062303 3.620131 0.672149 -1.709774 1.219342 -1.559226 0.227615 0.684574 0.622917 -0.019269 0.806239 -1.877831 -0.725148 -0.126619 -1.202479 2.244783 1.125899 0.585429 -2.547237 1.927490 -1.152755 -0.444684 2.891308 1.715953 -2.741268 0.881313 2.556677 -1.550263 -0.723012 0.874715 -1.861756 -1.082488 -1.429230 0.547215 0.691272 -1.784221 -1.243150 -0.009470 -1.839847 1.881812 0.560141 -0.456242 -0.436927 -0.919355 -1.166287 3.521360 0.242081 0.039695 -0.194420 -0.673149 -1.029261 -2.673876 -0.020775 0.850850 -1.358919 -0.561468 -1.491387 -0.227273 2.232675 -1.868430 0.723941 -2.416572 0.260132 0.981958 0.826267 0.622964 -1.739080 -1.204633 -0.410078 -0.536175 0.217224 -1.908907 1.037732 1.910569 -0.992042 1.861310 0.188836 -1.646665 0.209037 1.628567 -0.946285 2.179577 0.018853 2.147742 0.814123 1.830467 -1.650001 -0.580967 -0.714456 -1.313343 -1.396434 1.792308 -2.465625 0.073411 1.425154 -0.540812 -1.942792 1.594449 1.061032 0.831508 -0.725545 -0.303371 -1.053199 0.018299 -1.000991 0.726411 1.244365 -0.959458 -2.051370 -0.082717 1.847810 -1.548164 -1.048875 0.633306 0.418074 2.243025 -1.748028 1.215664 0.626192 0.722857 -2.905477 -2.508692 0.727735 -1.610913 -1.247747 0.587993 -2.751250 -1.500822 -1.129886 0.839488 -2.333968 -1.313080 1.011489 2.454533 0.114540 -0.718558 0.845233 -0.012137 0.790845 -0.125892 0.664726 0.135118 0.761890 +PE-benchmarks/floyd-warshall.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -6.024307 4.164256 4.032262 -2.290814 6.855740 -0.215399 4.357038 1.095723 -2.049974 6.146587 -8.621673 -4.834634 -3.941977 -7.202570 -0.438885 -6.010377 1.952269 -0.080882 -1.161394 2.482217 3.834417 -5.020877 -0.648233 -4.174115 -0.689157 -7.468896 -3.140800 0.130577 6.942952 -3.098232 1.366502 0.740329 11.561552 2.132717 10.628703 7.172472 1.244968 8.298427 0.664101 -1.013955 -2.787463 7.650787 -5.040596 -6.538947 -0.978849 -4.958230 -3.768445 -4.031363 2.196966 -1.944050 0.031663 6.149505 -1.386711 2.568519 -5.486925 2.780614 6.879995 1.715221 10.636442 1.960347 -2.295867 1.831856 -5.847021 3.952976 -3.081130 1.227746 -1.362338 -4.752641 2.559304 -2.051242 -1.246604 -4.201175 -2.830843 6.040603 3.394282 -6.216367 2.840067 -2.063884 -10.855247 -8.498106 -6.918815 1.463486 1.997253 7.395073 -0.399532 -0.325326 1.635938 2.289705 -0.042623 -10.365825 -0.123679 7.775135 -5.320250 -2.580912 -0.968143 7.410615 -0.526923 4.494021 -5.525562 -3.471725 1.968994 -1.060323 1.202684 -4.701902 -0.243059 -6.959662 2.019708 -0.528124 -1.346952 3.323677 6.778412 3.833428 7.456551 7.419605 -8.659264 1.728169 -6.655147 2.886140 -1.396470 -0.628897 1.219722 3.275678 -1.202164 1.239869 7.902412 -9.950191 2.315565 3.556986 -2.741560 -8.190148 -1.125684 -8.315929 -7.002034 -2.573221 3.773082 3.134754 1.598991 -5.677421 -0.301437 -1.484636 -0.401926 -2.300358 1.912334 7.692710 -6.800005 -1.530343 -1.085032 -1.376616 -4.663161 6.397595 3.569682 3.963279 8.874523 4.917610 -3.648503 2.023747 -6.923446 -0.779174 10.155173 1.344773 -8.018830 6.035287 -5.413449 -0.275670 4.115577 4.447319 6.101936 -1.843603 -7.733166 -3.948497 3.837476 -1.334924 9.326468 1.046410 2.486786 -2.628100 11.060767 0.256891 -7.346356 9.924578 4.605242 -8.075377 2.535112 2.902404 -6.749436 -1.753847 5.486973 -5.779367 -0.205953 -5.918882 0.015494 1.843978 -4.029932 -0.128654 1.438969 -9.082118 9.998544 0.686821 3.431745 2.546866 -6.776361 -9.481242 10.591692 -0.849166 -0.900213 -4.081418 -3.214100 -5.113444 -8.589983 1.757163 -1.205125 -3.927228 -3.268869 -7.901790 3.255831 5.660589 -1.520035 6.213794 -4.991233 -3.538906 2.877862 1.921920 4.457876 -2.362810 -5.344306 -0.153879 -0.860117 4.620619 -3.786997 7.839632 10.926328 -2.973986 5.764445 -1.607708 -4.735649 1.816143 3.927158 -8.772568 8.150202 -2.859771 4.833166 -0.444086 5.338647 -5.790940 -3.184507 1.403265 -0.790602 -2.606083 2.958050 -3.699330 0.676478 -0.224318 -7.185433 -2.816735 1.246452 -1.748203 0.262652 0.661584 1.692810 -7.493761 0.142104 -4.704357 1.370418 6.387872 2.239125 -5.006349 2.560584 -0.336604 1.615582 0.707049 0.073138 -0.888390 5.395590 -7.535321 -3.221059 -0.045926 0.089648 -3.596453 -11.088733 0.524168 -8.008892 -5.578027 6.386949 -7.356605 2.079043 -6.154502 -2.296588 -9.068327 -2.408277 2.338661 10.953297 4.247227 -5.961939 1.503444 -1.070250 7.078988 0.522428 1.286017 1.102824 4.555225 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -2.447814 1.353862 1.531272 -1.280037 3.976933 -0.337751 1.549188 0.877103 0.019121 2.248844 -3.904234 -2.096153 -1.163623 -2.731437 0.151900 -2.246249 0.816249 0.374944 -1.155672 0.439019 1.414950 -0.878009 -0.245185 -1.852605 -0.367075 -2.913345 -1.781703 0.336432 2.131060 -1.146823 0.016393 0.573216 4.884130 0.204001 4.176216 2.833033 1.432530 3.153909 -0.218647 -0.252869 0.283381 2.694557 -1.844088 -2.685869 -0.543450 -2.042364 -2.387240 -1.454143 1.046537 -1.249781 0.146060 2.314096 -0.102492 0.739515 -1.834615 1.655843 2.557338 0.557525 4.026348 1.176204 -1.774085 1.276927 -2.502813 2.545362 -1.586815 1.586655 -1.401341 -2.924211 -0.398459 0.385775 0.104836 -2.151919 -1.913981 1.664399 1.356981 -2.213823 1.540164 -0.593630 -1.645615 -3.339052 -2.569419 1.022502 0.176869 2.754333 -0.240504 -0.273702 0.338858 0.421386 0.204134 -3.647662 -0.774032 3.200144 -2.499152 -0.725216 -0.806306 1.622132 0.166048 1.315224 -1.829773 -2.433081 0.853253 -0.403863 0.294726 -1.017701 0.781061 -2.228170 0.471703 0.783594 -0.222113 1.828215 1.485003 1.771718 2.685379 2.375811 -2.697280 0.352413 -2.892978 1.406047 -1.625151 -0.287183 0.041313 1.082009 0.515074 1.171629 2.859147 -3.653835 1.665914 1.368562 -1.470114 -2.316211 -0.047364 -2.648630 -3.155452 -0.752012 1.465361 1.389154 0.530284 -1.724849 0.384353 -0.757491 0.036985 -0.572535 0.182444 1.792431 -2.813896 -0.649431 -0.266747 -0.418909 -1.777542 2.730733 1.618216 1.319883 3.798363 1.839297 -1.638825 0.384382 -3.283571 0.299098 4.403017 -0.450301 -3.094660 2.370264 -2.453463 0.105354 1.830043 1.876534 1.472533 -0.047605 -2.437913 -1.084494 0.318797 -0.712459 3.926138 0.779445 0.795793 -2.130252 3.334341 -1.003903 -2.179799 4.547627 2.173807 -3.910658 0.725792 1.925860 -2.396677 -1.248327 1.992757 -2.646461 -0.802402 -2.589331 0.418329 1.003869 -1.849677 -0.476479 1.071673 -3.469989 3.643116 0.251848 -0.061497 0.670218 -2.640413 -3.586938 5.018871 -0.045931 -0.081300 -1.165531 -1.266777 -0.897931 -3.932988 0.427812 -0.014650 -1.555904 -1.056433 -2.921229 1.246545 2.788300 -1.356327 2.362380 -2.443607 -0.909128 1.319786 0.468769 1.644259 -1.412372 -2.010172 -0.554550 -0.856383 1.219295 -2.403157 2.185848 4.068059 -1.372075 2.423483 -0.221123 -3.058927 0.120998 1.850048 -3.003585 3.515721 -0.745361 1.838962 0.183421 2.267850 -2.438099 -1.292545 -0.068222 -0.710202 -1.702183 1.721806 -2.202275 0.280629 0.345463 -2.458984 -1.592260 1.132352 0.124513 0.194987 -0.055769 0.254411 -3.147921 0.187759 -1.515745 0.654208 2.394531 0.260460 -2.674880 0.978301 0.702371 -0.723394 -0.712582 0.112442 -0.143905 2.735949 -2.967868 -0.535540 0.642249 0.575101 -2.558865 -4.205283 0.077250 -3.334125 -1.853244 1.826151 -2.910438 -0.571631 -2.264120 -0.179918 -2.850916 -1.673505 1.669760 4.387356 1.801384 -2.437862 0.836309 -0.287800 2.591133 0.275509 0.300928 0.445060 1.463141 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -4.408394 -1.714879 -2.744700 -3.803932 11.154771 -3.556674 -0.935939 10.070404 4.609001 2.607591 -7.841324 -4.217461 -1.591558 -7.552882 0.979736 -0.096296 5.154913 2.300284 -5.596660 -1.129978 2.519210 3.764034 0.748737 -3.490865 -0.950339 -1.380694 -3.311259 1.536797 -2.239428 -2.243074 -1.263369 3.754598 13.107127 2.154936 9.530741 4.056803 6.828258 6.873407 2.649194 2.449299 4.806067 2.979217 -1.464519 -5.984688 -0.381623 -3.990678 -7.391447 -1.623331 1.714888 -5.664157 4.960193 5.027563 2.411391 2.055943 -3.399587 1.203672 2.690220 -2.367125 6.611668 4.265312 -10.669305 -0.054350 -1.702902 5.611996 -3.856284 4.638591 -1.226758 -5.299293 -4.765091 6.171239 4.510092 -8.600119 -6.426996 -0.649649 2.304517 -2.778049 6.293410 1.915410 11.245540 -6.015541 -4.268799 4.177788 -1.582471 3.818987 -0.487838 0.071870 -1.773126 -2.411619 0.446500 -5.836281 -0.378941 4.478925 -7.690160 0.618202 -6.684237 0.683293 -3.204254 0.675252 -4.247102 -9.978981 2.263622 -1.685850 -0.459735 1.856355 2.058263 -1.906489 2.918532 3.732026 0.397088 6.230820 1.917388 3.912302 4.733965 2.794645 -1.447678 2.023135 -9.245524 4.205064 -4.752737 -1.714008 -1.874710 -1.005273 7.064992 4.238149 2.249945 -7.048214 6.187853 5.713064 -4.329945 -2.185869 1.192200 -3.211754 -6.927702 -0.200219 5.093025 1.348184 2.195118 -1.175806 2.611536 -2.560911 -2.025569 -3.307835 -3.541176 0.371120 -6.134834 -1.227264 0.593337 -0.786881 -2.992832 5.011216 2.632578 -0.347155 9.235953 -0.427502 -6.452904 -0.791295 -7.337530 2.321398 10.486994 -0.410418 -6.101882 5.622307 -5.430532 1.618941 1.694035 5.013090 1.132434 -2.745416 -1.782647 1.431329 0.234838 -0.527946 8.164540 -1.562667 3.031798 -8.880572 0.718272 -3.048969 1.806831 13.522726 4.075086 -9.141046 -1.707999 7.324886 1.032914 -1.873509 2.888327 -5.857312 -5.780548 -5.096446 4.567082 2.561123 -6.124776 -1.529810 5.007750 -6.359404 4.003279 0.735995 -4.929302 -1.074682 -8.271690 0.097261 14.908370 0.446232 1.931346 2.448353 -4.635890 5.044315 -10.337061 -0.604230 3.253207 -0.035778 3.213473 -2.529846 0.719744 7.942320 -3.805300 3.741991 -8.400361 1.197245 4.111310 -4.633849 0.688200 -6.904072 -4.287441 -0.376252 -1.957310 1.803870 -7.984397 0.012256 4.398229 -3.081880 6.689644 3.721315 -3.284060 -1.223239 2.500049 -4.086101 8.913630 -0.814602 6.279148 2.100287 5.961184 -5.220522 -2.437325 -4.472880 -0.097620 -7.310757 4.629058 -7.951931 0.370462 2.866350 0.207741 -6.683745 3.268195 2.802415 -1.531853 -0.964620 -2.912752 -3.305779 -0.176932 -3.335412 6.203135 3.839145 -2.158547 -6.514196 1.186027 7.126826 -5.588533 1.556675 1.476039 0.999054 9.478733 -6.217257 1.147459 4.243714 4.606770 -6.825357 -7.887130 2.447913 -4.039191 0.613398 -0.744525 -7.941022 -8.513862 -2.999694 3.548784 -3.652186 0.521194 4.171698 9.589999 4.506352 -6.653754 1.809004 0.991092 0.708555 0.939143 1.582362 2.412547 2.515519 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -13.286165 11.155126 8.919655 -6.832667 16.855680 0.593398 6.878082 5.894916 -2.437985 11.939638 -21.378543 -9.827462 -7.378120 -16.534900 -0.463765 -11.983078 3.956707 2.412458 -4.138467 4.917363 9.048509 -8.674109 -0.802840 -11.383654 -1.383545 -13.418436 -8.115092 -0.531772 10.069486 -2.894655 2.327854 1.888649 25.252456 6.591003 22.007597 15.336996 3.560902 20.771675 2.435577 3.960819 -3.428643 15.962218 -10.185990 -17.600225 1.442794 -13.447602 -7.863399 -10.360080 3.449239 -9.022665 6.071427 12.723505 -0.968590 3.883490 -11.822080 3.035446 15.925568 4.999080 22.018918 6.346850 -8.495442 4.246628 -12.090017 5.200181 -7.575867 7.579890 1.266935 -12.487722 2.596321 -1.514078 4.818910 -12.123953 -10.552637 9.849500 5.005684 -11.657934 7.491907 -4.114495 -20.775185 -15.463530 -14.329101 4.035850 1.889668 16.062716 -1.371499 -1.420246 -1.168818 3.007581 2.101255 -20.428665 -3.366884 17.332973 -9.751340 -0.997854 -6.092695 13.438800 -1.632431 8.661168 -12.101624 -7.680586 5.621541 1.196530 1.982144 -6.105719 -5.825143 -15.945345 9.357365 2.996304 -5.787480 6.667925 12.857607 9.247764 14.949752 14.159466 -17.855051 6.523572 -16.327009 5.995471 -3.335526 -1.081755 1.987552 5.222050 -2.497323 1.382102 14.382169 -19.697462 8.820697 9.588473 -8.972185 -16.346346 0.313512 -16.719030 -16.239009 -4.650782 8.275863 7.704131 3.039616 -10.236924 -2.490130 -6.248254 -2.574227 -10.361207 1.107590 16.662363 -14.035658 -3.782258 -2.496363 -4.072623 -9.945201 12.942359 6.520795 6.508929 19.176391 9.829797 -8.100068 0.858294 -14.406396 -0.054375 24.717240 6.937054 -18.117338 11.190072 -7.895878 1.398605 9.565920 7.112572 10.627365 -1.445212 -15.742311 -9.061007 2.744470 -5.467624 19.821463 8.091997 7.451864 -9.653915 23.303290 0.126995 -13.586370 24.349445 10.593203 -16.321031 1.763759 8.841196 -13.233401 -4.484123 9.607651 -10.443603 -1.781861 -10.918394 0.054491 2.904023 -10.784181 -5.500505 2.445496 -20.212604 21.776478 2.528050 7.484597 1.808912 -16.676617 -18.657732 25.614815 -1.338923 -3.271331 -5.830645 -5.923519 -8.090203 -19.787107 4.034327 1.604013 -8.710914 -7.745150 -15.615668 7.358286 13.236561 -6.923193 9.660486 -7.892323 -9.198479 6.192733 -0.719194 9.846325 -12.755485 -11.988871 -1.874835 -0.924826 12.058551 -6.596463 15.193320 24.456670 -6.444992 12.036948 4.053972 -6.285538 2.305920 11.415944 -15.483947 17.344772 -8.697282 12.596475 -0.792146 13.279491 -11.538370 -6.999012 1.700306 0.285593 -5.713665 10.136972 -10.174070 1.646725 1.355302 -14.732067 -5.346057 6.076992 -2.000861 1.776088 -0.327516 3.247051 -15.050652 0.628817 -7.751263 2.243097 14.525443 2.954188 -14.389889 2.119543 0.973121 -0.194597 0.635654 1.660860 -1.377218 14.085398 -15.862526 -3.116905 0.889219 -2.414558 -11.508086 -21.251474 1.528472 -16.710275 -11.754907 13.014853 -17.010756 0.994022 -12.517591 -1.953616 -17.554439 -4.404029 3.834109 21.984937 10.113236 -11.207026 3.799680 -1.044686 16.064796 1.997009 1.904175 1.836444 12.360043 +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.599684 0.199492 0.178401 -0.419149 1.830855 -0.186088 0.170791 1.086076 0.009733 0.440232 -1.112990 -0.036782 -0.161062 -0.936642 0.379181 -0.063910 0.272493 0.359598 -0.568254 -0.438745 0.489778 0.275496 -0.056662 -0.660397 0.033452 -0.847638 -0.298903 0.029492 0.157846 0.482718 -0.558395 0.473444 0.991002 -0.076503 0.505976 0.601538 1.116744 0.806916 -0.195802 0.425709 0.640823 0.443790 -0.232017 -1.086136 0.302354 -0.672237 -0.876547 -0.247196 0.316102 -1.003138 0.367290 0.613250 0.226868 -0.113210 -0.277162 0.575774 0.573089 -0.123996 0.685041 0.734556 -1.036161 -0.461935 -0.575390 0.988562 -0.513852 1.008752 -0.048262 -1.227808 -0.852078 0.853545 0.199587 -0.447040 -0.631093 -0.190600 0.201621 -0.297119 0.566772 0.122115 0.667681 -0.211395 -0.632701 0.369757 -0.293954 0.810658 -0.019033 -0.226148 -0.098199 -0.386178 0.449836 -0.542564 -0.641387 0.977476 -0.588653 0.378187 -1.205382 -0.353198 0.202198 -0.023109 -0.152891 -0.976168 0.349075 0.319520 0.065714 -0.332904 -0.311677 -0.632251 0.579439 0.594245 0.032352 0.603107 -0.368965 0.042291 -0.183920 0.151930 -0.171390 0.401159 -1.006829 0.513402 -0.297911 0.099823 -0.374663 -0.178501 0.821585 0.143610 0.266157 -0.722220 0.951483 0.456173 -0.557756 -0.240428 0.386609 -0.274311 -0.867894 -0.004125 0.614150 0.251614 -0.071169 0.166269 0.445342 -0.328029 -0.558810 -0.479233 -0.692449 0.244611 -1.087299 -0.138369 -0.207424 -0.222522 -0.417778 0.452857 0.235699 0.253426 0.879399 0.487326 -0.392248 0.317258 -0.975193 0.629720 1.510805 0.350737 -0.758309 0.289932 -0.663058 0.460839 0.385664 0.074436 -0.123913 0.801545 -0.205644 0.246861 -0.321179 -0.362674 0.966805 0.914226 0.533804 -1.290681 0.054141 -0.901118 0.018718 1.203672 1.053514 -1.364765 0.368640 1.084877 -0.402795 -0.303652 0.126944 -0.696357 -0.445158 -0.720380 0.390274 0.538952 -1.074756 -0.586733 0.305000 -0.736975 0.708203 0.216106 0.118323 -0.035534 -0.719345 -0.286920 1.452472 0.107866 0.033946 -0.112061 -0.392557 -0.652599 -1.092948 0.115261 0.510169 -0.441973 -0.410277 -0.577592 -0.242164 1.242863 -0.707932 0.207987 -0.881656 0.300979 0.381370 -0.061900 0.509011 -0.910688 -0.575980 -0.374680 -0.390413 0.374866 -0.810302 -0.114419 0.682946 -0.564105 1.004250 0.370460 -0.649833 -0.259662 0.699035 -0.115154 0.788516 0.074646 0.681387 0.226545 0.886896 -0.777280 -0.147563 -0.406251 -0.341842 -0.576958 0.963879 -1.030800 0.045644 0.630551 -0.544598 -0.678411 0.732611 0.535757 0.574486 -0.335765 -0.179487 -0.380290 -0.006999 -0.448888 0.333318 0.665236 -0.602913 -0.941269 -0.207098 0.568109 -1.171803 -0.701957 0.486194 0.117757 1.175399 -0.689533 0.491385 0.442046 0.087529 -1.424040 -0.838236 -0.072248 -0.559055 -0.568107 0.242637 -1.155123 -0.721197 -0.395597 0.612622 -1.002037 -0.584493 0.079529 0.863782 0.076460 0.100768 0.652935 0.329110 0.294754 -0.035778 0.115550 0.199968 0.371605 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/program-wish-womens-day.cpp__main = -7.269789 3.859356 8.094930 -2.305550 9.663244 -0.762525 3.662974 3.892868 -3.776489 6.623656 -9.504145 -5.009918 -4.838328 -5.309079 0.278059 -6.934908 4.168823 -1.037581 -2.523253 2.091704 3.722745 -2.811334 -1.527314 -3.626202 -1.210485 -6.949268 -5.411018 0.641630 8.722158 -3.493392 0.318686 0.741641 15.539218 -0.572860 12.688218 8.396051 3.139825 7.195070 0.533268 -7.747277 -2.598179 9.515859 -6.783474 -4.517497 -2.821123 -6.495010 -5.286497 -2.011037 2.923380 -1.049062 -6.933134 6.342493 -1.081991 3.814658 -4.409530 6.788018 6.206633 1.401061 12.896924 1.798762 -2.786927 0.443127 -5.800851 5.381689 -3.626949 1.657158 -8.217215 -6.106159 1.275193 -2.166565 -2.977683 -6.145771 -3.757733 6.813298 1.326218 -7.401821 4.845847 -0.879268 -4.673084 -10.774897 -7.479934 1.789411 -0.535568 7.012098 -1.923722 -1.401141 1.745049 2.557590 -0.761979 -11.664842 0.482249 7.942324 -7.402236 -4.369082 -0.060491 5.030087 0.112691 5.541960 -5.891587 -5.955455 1.682402 -2.962962 1.998069 -7.653497 8.091373 -5.005948 -1.538429 -0.742192 2.098294 7.300709 4.782180 7.766702 10.456286 8.406715 -9.822121 -1.151062 -7.566736 3.708138 -6.846614 -1.519120 1.045696 5.229194 0.230711 4.243626 9.243538 -11.910342 2.231196 2.719320 -3.539741 -7.058783 -0.439760 -9.289945 -9.190489 -3.118028 3.860005 2.967582 0.966091 -7.683154 2.401270 -2.411762 0.400894 -1.129361 1.700332 5.060392 -10.860160 -2.255479 -1.791189 0.135075 -3.405543 8.327209 3.881331 4.329710 9.924184 5.595855 -5.267491 3.487215 -9.951068 -0.927798 9.130156 -2.253861 -9.000326 7.814781 -7.529147 -0.827218 6.366186 6.372261 5.358687 1.107976 -6.889225 -4.907245 3.212833 0.155902 10.687648 1.436441 3.163872 -5.101113 9.737839 -5.743561 -8.076810 10.317661 3.872515 -9.487071 2.358610 2.527237 -5.449174 -1.279762 4.800829 -8.864007 -1.899692 -7.608097 -1.732340 3.866306 -4.106218 0.590175 3.708061 -9.731803 10.024602 0.359054 -0.960530 3.549790 -8.288162 -11.357580 11.290144 0.531884 0.050733 -3.622987 -3.964760 -3.426781 -10.619886 1.692965 -1.999020 -4.685006 -4.050772 -9.976916 4.098092 4.584511 -0.395916 7.770214 -11.581039 -2.032266 4.463730 2.513578 5.275417 -1.502389 -5.918640 -1.997880 -4.486544 4.660088 -8.011903 9.179235 11.814347 -2.888197 7.583508 -4.855690 -10.140429 0.995398 3.385608 -11.086739 9.232643 -1.452221 8.146158 0.112561 6.239634 -6.214385 -3.483893 0.054228 -3.213707 -4.780265 4.050762 -5.052184 0.633419 -0.427671 -7.201669 -4.112733 0.968169 -2.998157 -1.753967 1.209803 1.151435 -10.815791 -0.125884 -3.338656 2.026943 7.359235 1.564370 -7.067372 3.789189 -0.957395 0.029194 -2.461318 -1.742517 -2.470870 4.672416 -8.101512 -5.261779 1.199861 2.594750 -4.230897 -11.948622 -1.462454 -7.953368 -5.387150 6.331513 -5.874192 0.269187 -5.404676 -3.670147 -7.388079 -6.501527 5.198768 12.154072 4.692539 -9.027566 1.209048 -1.097666 7.286700 0.620783 0.791166 -0.120991 2.028922 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/bfs.cpp__main = -0.587512 -0.704210 0.397199 -0.050296 1.808065 -0.974163 0.210638 1.574646 1.252759 0.014836 -0.870198 -0.740875 -0.449295 -0.173111 0.531768 -0.257285 0.629869 0.937764 -1.171077 -1.211184 0.630942 1.846311 -0.419793 -0.489060 0.171996 0.147676 -0.792454 -0.005616 -0.955943 0.276098 -1.106775 1.224148 1.550333 -0.041833 1.181723 0.846528 1.775732 1.013678 -0.719144 1.898344 1.180761 0.474250 -0.133764 -1.077778 0.369214 -0.534782 -0.788532 -0.018981 0.356867 -0.745943 1.997129 0.387852 0.434100 0.508594 0.497403 0.420469 -0.560548 0.379218 0.339244 1.110559 -2.036784 0.927872 -0.664387 1.675913 -0.586246 2.144871 -0.432414 -1.872420 -1.724003 0.814736 1.719424 -1.550813 -1.285453 -0.484846 -0.305228 0.199953 0.935180 0.674089 2.874135 0.219773 -1.385923 0.452544 -0.446797 0.317081 -0.378782 -0.549183 -1.229648 -0.688151 0.479479 -0.188157 -0.715511 1.045019 -1.260024 1.304851 -2.135688 -2.240176 -0.287885 0.250863 0.117409 -1.668493 0.468646 0.056810 -0.012625 1.107198 -0.232624 0.500777 0.686035 1.036493 -0.009034 0.330552 -0.768715 0.225305 0.109848 -0.220489 1.160331 0.574720 -1.049258 1.226651 -0.876227 -0.122840 -0.069740 -0.118901 0.971668 0.098143 0.060597 -0.255379 0.612635 0.120228 -1.071158 0.480933 0.527945 -0.280058 -1.254909 -0.479586 1.093053 0.718991 -0.380262 0.143233 0.555113 -0.484403 -0.001122 -0.783557 -1.236481 -1.702779 -0.211063 -0.500128 -0.393734 -0.481659 -0.579278 0.701209 0.060051 0.452980 0.640373 0.488402 -0.566628 -1.576376 -1.396582 0.344621 0.749872 -0.541979 -0.745832 0.214213 -0.571699 0.696435 0.723628 0.448217 -0.698005 0.823984 1.039071 1.092680 -1.555407 -0.100600 1.009168 1.260021 0.372639 -1.040549 -1.588683 -1.776606 -0.245569 1.596008 1.204717 -1.539303 -0.779079 0.930824 0.976476 -1.171973 0.095826 -0.920821 -0.912975 -0.850761 0.717376 0.624009 -1.292584 -0.042378 1.831654 -0.675285 0.231772 0.071875 -0.654237 -0.169308 -1.670218 -0.432840 2.137403 0.112191 0.359808 0.247274 -0.593025 0.982961 -1.148328 0.158081 0.678688 0.592846 -0.418583 -0.251128 0.279643 1.560404 -0.791042 0.481129 0.577297 0.014161 0.361014 -1.531045 0.593494 -1.683162 -0.679905 -0.890640 -0.408451 0.496646 -0.957470 -1.281115 0.749929 -0.526905 0.649343 2.046845 -1.220138 -1.358606 0.631811 -0.081157 0.616517 -0.013225 -0.618683 0.276317 0.694687 -1.068702 -0.668673 -0.568900 0.940961 -1.161234 1.109490 -0.723663 0.367257 -0.168808 -0.906267 -0.090963 0.704188 0.631358 -0.035262 -0.333239 -0.354488 -0.674204 0.067349 -0.624419 0.408941 0.802949 -0.620624 -1.031945 0.156566 0.109654 -2.364076 -0.437401 0.400287 -0.116507 1.553916 -0.558961 0.132161 1.014941 0.147663 -1.632739 -0.581760 -0.789752 -0.926754 -0.287197 -0.608227 -0.291713 -1.542553 -0.208164 0.900804 -0.273247 -1.014390 0.400212 0.744020 0.783450 0.152544 0.681033 0.588578 0.419547 0.304296 -0.458958 0.200381 0.509659 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = -4.732119 2.357575 2.988719 -3.662069 9.329274 -0.861330 1.747039 4.238672 1.521850 4.206209 -8.731479 -2.947057 -1.941294 -6.373165 0.393443 -4.089707 1.860288 1.523119 -3.204981 0.175048 3.056791 0.297912 -0.054160 -4.364371 -0.827758 -5.812178 -3.897897 0.546868 1.325239 -0.869139 0.812565 1.474697 10.259614 1.286234 7.692225 5.407752 4.148359 7.364117 -0.171478 3.876269 2.051417 4.768027 -3.034849 -6.197005 0.121874 -4.578161 -5.077533 -3.098040 1.682061 -4.828120 2.720877 4.530484 0.811996 0.919279 -3.705614 2.265481 4.628208 0.147794 7.271514 3.234302 -6.137273 2.057475 -4.782994 4.834310 -3.879398 5.027718 -0.505439 -5.972801 -2.261630 2.403195 3.323568 -5.534114 -5.618999 1.581132 1.907356 -3.899470 3.644756 -0.918875 -0.639043 -5.150468 -4.260568 2.820840 0.144004 5.271575 -0.358624 -0.676585 -0.505474 -0.144905 1.039540 -6.427420 -2.514062 6.378937 -5.006398 0.009140 -4.937978 2.109192 -0.681359 1.874099 -3.017318 -5.630300 2.257792 0.388492 0.396515 -0.131205 -1.592516 -4.935271 2.953783 3.040578 -1.649021 3.017301 1.517076 3.558011 4.344854 3.893350 -4.390880 2.503625 -7.168266 3.308054 -2.838212 -0.519819 -0.935275 0.986091 1.780168 2.671944 4.530885 -6.318593 4.925905 3.410481 -4.471481 -3.768487 0.701498 -4.355377 -6.772091 -0.751159 3.199446 2.926894 1.156290 -2.390846 0.721861 -2.510417 -0.686576 -3.873057 -1.077130 2.812636 -5.239748 -1.452346 -0.431379 -0.869983 -3.668199 5.166776 2.772922 1.717564 7.936146 2.772311 -3.168757 -0.099084 -6.760946 0.990793 9.835715 1.353423 -6.214259 4.309157 -4.014277 1.190065 3.473664 3.152072 1.756534 0.311625 -4.413608 -1.620224 -0.534721 -2.236150 7.869510 3.433988 2.264012 -6.260956 5.084513 -2.360354 -2.321305 10.276753 5.439211 -7.944351 0.279756 5.122124 -3.105414 -2.930147 3.159449 -4.362376 -2.876042 -4.426751 1.464734 1.766181 -4.373238 -2.665154 2.059845 -6.821028 6.836541 0.773317 0.000870 0.263975 -6.136464 -6.830540 10.960374 -0.539575 -0.278959 -0.963558 -2.521483 -0.197757 -8.621618 0.836763 2.076063 -2.970456 -1.234980 -5.192747 2.630825 6.130107 -4.097424 3.574945 -4.215418 -2.304023 2.960071 -1.448715 2.950261 -6.372997 -3.978120 -1.863984 -1.122750 3.216562 -4.858746 2.806404 8.141353 -2.689689 5.678879 2.322000 -4.512158 -1.091275 4.639206 -4.811697 7.351492 -2.120297 4.227961 0.689635 5.060075 -4.599059 -2.567403 -1.293869 -0.740539 -3.553587 4.531259 -5.745149 0.541346 1.607639 -4.486438 -2.951553 3.623417 1.269549 0.263959 -0.815101 0.258523 -5.453497 0.151413 -2.609783 1.920066 4.944799 -0.543933 -6.717813 0.891141 3.039011 -3.705720 -1.668192 0.725202 0.406013 6.723688 -5.814705 0.526614 2.037653 0.542875 -6.993642 -8.019926 0.897278 -6.319546 -3.848895 2.194221 -6.605878 -3.564578 -4.163687 1.219433 -5.124445 -3.069461 2.921897 8.156978 3.745847 -4.006631 1.692251 0.075691 4.634584 0.503761 0.489615 1.447183 3.705225 +PE-benchmarks/boruvkas-algorithm.cpp__main = -5.625335 9.173905 5.574316 -5.893215 8.560269 -1.851461 3.702953 3.356749 -0.717141 2.607397 -11.766848 -0.496019 -0.955276 -9.623709 1.567029 -5.228994 0.357866 5.691156 -0.636819 3.935657 5.179192 -3.694707 -1.186769 -8.361670 0.007316 -6.152213 -2.087207 -1.028169 -1.166410 4.202358 3.803037 2.761335 7.920736 4.467638 6.482372 7.803994 0.453761 11.602211 1.962653 6.542006 1.732787 5.228979 -1.830750 -12.659868 4.566101 -5.078887 -2.630339 -8.313676 -0.150310 -10.038457 6.277315 5.295122 1.505819 -2.159270 -7.216742 -0.850157 10.407213 3.388973 6.093411 5.784156 -4.153299 2.966933 -4.207506 -2.538126 -4.337353 4.746249 7.018047 -6.412889 0.756668 4.416499 7.056906 -4.514437 -6.813046 -1.224979 -0.108980 -3.302522 3.546037 -1.772015 -11.131776 -2.088478 -3.346180 1.819557 0.476502 7.743661 -0.830848 -1.701090 -4.901983 -1.485743 4.485906 -3.965338 -6.461607 7.427323 -0.008893 1.627937 -4.676948 6.739461 4.537785 -0.588523 -3.262084 -3.424789 4.249430 2.724037 0.942438 2.934439 -11.711580 -7.573527 6.948413 5.581751 -6.366681 4.594627 0.635094 5.677548 1.863256 1.033483 -6.855426 7.605782 -10.014922 2.541025 -0.315849 0.353708 1.248990 -1.816275 -0.657829 -0.898258 0.735454 -4.987483 8.918312 6.361395 -3.172609 -4.805919 4.297978 -3.165433 -6.115756 -2.279048 3.626915 4.952715 0.522717 1.190277 -2.940103 -4.438030 0.153746 -9.991768 -3.118108 11.043087 -5.555894 -0.722000 -2.100365 -2.592704 -3.651840 1.149678 0.003239 -0.255543 7.381163 4.084463 -2.182637 -0.792066 -4.546165 1.191964 13.058755 8.425718 -6.400663 1.963348 2.422512 1.534785 3.104707 -0.573471 1.136679 2.872518 -8.545382 -6.399921 -3.101031 -8.372883 6.241818 8.880627 3.481118 -10.223578 11.320091 1.130686 -3.492779 11.761682 5.583244 -5.609053 -1.349915 8.091072 -8.193041 -4.773631 1.252677 -0.429529 -1.793415 -1.157218 1.294862 -1.094142 -6.914187 -9.257529 -3.313523 -8.078915 6.492496 2.269793 4.952130 -3.958204 -5.466958 -6.180750 12.114995 0.402197 -3.481530 0.086979 -0.988751 -2.009481 -8.870247 2.150974 4.573912 -4.052635 -5.128212 -3.985549 1.916783 6.376546 -8.948709 -2.005437 1.208714 -5.400817 2.641396 -1.394320 2.257585 -12.635602 -5.505046 -0.912335 2.889595 4.850368 2.191827 5.032484 11.533576 -2.967105 2.701069 9.215487 1.927191 2.076602 10.164079 -2.599757 6.304390 -5.555797 9.036002 0.990825 6.339938 -4.419103 -3.745257 0.678333 -1.022847 -2.339022 7.252029 -6.599717 1.432066 4.021658 -4.294867 -1.471627 8.009041 2.912504 3.670970 -2.450336 3.329596 -3.376626 0.792186 -1.920573 -0.471065 6.631221 0.068672 -9.143270 -3.539600 4.854089 -3.810556 -3.576367 3.020056 1.051741 7.770599 -5.519387 6.687906 0.060656 -4.369457 -8.433447 -6.838854 5.616277 -7.576870 -6.957829 3.484820 -8.812480 -1.846123 -4.099883 4.762120 -8.785030 -1.864585 -1.350100 5.555796 2.642527 0.472469 3.176969 -0.133013 6.257611 0.726431 0.381432 -0.591963 9.324619 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.745019 2.402378 1.654079 -1.329347 2.611411 0.509463 1.090550 0.985607 -0.661847 1.920165 -3.206532 -0.598263 -0.521023 -2.493609 -0.084721 -2.219095 -0.160017 0.251825 -0.378757 0.710600 1.107485 -1.451970 -0.128377 -1.710079 -0.319172 -3.018213 -0.873984 -0.090046 1.424207 0.450857 1.009197 -0.040655 2.929539 0.689418 2.467123 2.082355 0.557249 2.563627 0.238113 1.442101 -0.284675 1.801476 -1.281321 -2.423228 0.075063 -1.729028 -1.393097 -1.488766 0.283674 -2.177606 0.451667 1.770078 -0.147051 0.038435 -1.519455 0.838975 2.272902 0.208494 2.788679 0.851375 -1.314808 -0.264931 -1.837492 1.207256 -0.936083 0.969700 0.666482 -1.740901 0.558327 0.201572 -0.097154 -0.507609 -0.910428 1.322946 0.924486 -1.715856 0.671223 -1.021046 -4.467454 -1.206675 -0.988656 0.744508 0.782985 2.235251 0.152363 -0.124331 0.294262 0.448524 0.236701 -2.691864 -0.773201 3.073366 -0.918865 -0.431698 -1.603273 2.121806 0.500247 0.908342 -1.115361 -0.736261 0.846305 0.656974 0.247091 -1.760928 -2.069465 -3.096351 1.371765 0.775935 -1.075518 1.165298 0.592214 1.219354 1.477571 1.889294 -2.889623 1.680389 -2.316690 0.816747 -0.100979 0.048544 0.053838 0.189598 -0.469604 0.613520 1.773014 -2.444321 1.561897 1.302628 -1.222730 -2.489268 -0.027590 -2.103727 -1.973013 -0.361121 0.658624 1.139389 0.449719 -1.082758 -0.491226 -0.863389 -0.326881 -2.295038 0.376551 2.725284 -2.065529 -0.339083 -0.182409 -0.032222 -1.550287 1.775622 1.059467 0.624362 2.732554 1.259950 -0.283629 0.838671 -1.684059 0.023937 3.628270 1.868160 -2.342527 1.534914 -1.180014 0.025167 0.852112 0.552519 1.117255 0.840993 -2.989285 -1.777237 0.307430 -1.256918 2.613027 1.956909 0.671897 -1.690755 3.826746 -0.368008 -1.812834 2.950138 2.261455 -2.141900 0.404936 1.421190 -2.758455 -0.697592 1.431656 -1.347685 -0.233261 -1.003888 -0.256024 0.291290 -1.248917 -1.193790 -0.218748 -2.691521 3.150140 0.432322 1.777551 -0.063420 -1.721083 -3.170575 3.044097 -0.194850 -0.693680 -0.700634 -0.393394 -2.103434 -2.514759 0.424397 0.818614 -1.689220 -1.373665 -2.068729 0.788402 1.535037 -1.383308 1.255276 -1.144143 -1.544110 0.860143 0.288636 1.301353 -1.925177 -1.515955 -0.735454 0.119768 1.665070 -0.654136 2.499570 3.437124 -0.566869 2.357153 0.063084 -1.201561 0.338547 1.857450 -1.892500 2.397319 -1.104513 1.428676 0.095952 1.816516 -1.469330 -0.829722 0.204646 -0.951657 -0.436521 1.517152 -1.572596 0.201112 0.383490 -2.269001 -0.485162 1.207328 -0.091064 0.542304 -0.201521 0.926095 -1.934848 -0.185274 -1.396217 0.026510 1.826803 0.203497 -1.960623 0.088677 0.337603 -0.199783 -0.568124 0.300163 0.175193 1.688082 -2.092181 0.158337 0.062278 -0.806630 -2.310483 -2.792466 0.447996 -2.433961 -2.451968 1.142620 -2.604541 0.229578 -1.769955 -0.259857 -3.071972 -1.371587 0.618123 3.036423 0.912579 -1.131185 0.580189 -0.302739 2.224528 0.314510 0.610015 0.495929 1.697328 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -14.165578 16.435993 13.583628 -9.342753 21.121506 3.145354 10.338469 8.317979 -8.584550 15.298841 -23.899285 -5.372537 -5.458105 -18.556943 -0.674414 -18.137707 0.465065 0.498971 -3.430717 6.820379 8.636336 -10.926479 -1.196912 -11.975760 -3.015360 -22.331528 -6.923848 0.047375 14.751282 0.559093 7.777788 -0.249930 25.325070 3.306981 21.956679 16.763933 6.066513 18.783519 1.051513 3.673150 -3.624065 15.421864 -11.329155 -16.536783 -1.966198 -13.060971 -12.855337 -9.783944 3.449895 -14.049345 -2.458681 14.725667 -1.605041 2.477953 -11.101118 9.756640 17.892389 -0.884335 23.495832 5.838894 -9.870416 -2.170453 -14.538689 11.587369 -6.271092 6.450200 -0.457177 -12.942999 4.550016 -0.214736 -4.647806 -5.743267 -5.888099 12.774342 8.937709 -14.804354 6.341252 -7.448052 -31.355209 -14.706923 -9.454600 5.531055 5.960047 17.618527 0.597552 -0.562302 5.359794 4.442748 0.125447 -23.532880 -3.623970 23.958742 -10.368172 -7.071480 -12.332494 16.507614 2.449408 8.987245 -10.885594 -8.500466 6.276371 2.585392 2.243755 -17.874624 -8.814907 -22.480878 5.546514 3.979007 -5.144998 12.444083 5.387453 10.579140 14.523841 16.913016 -22.999554 10.871908 -17.676741 6.791263 -4.224806 0.012541 0.431187 3.490473 -1.192589 7.106737 16.131827 -21.701574 10.309213 9.713213 -8.897300 -20.154090 -1.180329 -18.044261 -16.203864 -3.681522 6.165971 8.083477 3.914490 -10.931125 -1.121367 -5.144246 -1.225898 -14.444526 4.073439 19.348357 -19.113905 -3.023755 -1.418854 0.299536 -11.817436 15.818994 9.823059 6.285691 22.342662 10.193636 -4.174395 9.854211 -14.974823 -0.479728 27.113774 10.462808 -18.770135 14.004324 -12.883486 -1.015410 7.316879 6.839006 10.308902 4.970539 -23.940682 -13.911907 6.430197 -7.109151 22.018369 11.007188 4.316074 -13.220501 29.448556 -5.322993 -15.686771 23.173268 17.453238 -18.885470 4.724527 9.555824 -20.059191 -5.524286 12.650598 -14.511789 -3.372489 -9.789449 -1.954203 3.634599 -9.217209 -6.201573 0.893208 -21.374678 24.591182 2.566467 9.804985 0.883241 -13.406118 -25.635361 24.020975 -1.046533 -4.496952 -7.316046 -4.737307 -15.934113 -20.691525 3.578388 3.652382 -11.676913 -10.640980 -17.686514 6.094510 11.646754 -8.112655 12.521891 -14.834580 -10.389003 7.437695 4.536444 11.271192 -12.241381 -12.082931 -5.752910 -1.162536 11.853129 -8.705483 20.331493 27.022157 -5.353396 19.452813 -4.842995 -15.185615 2.674046 12.557049 -18.101476 20.144464 -5.844264 13.387899 0.515685 13.775908 -13.385418 -6.629796 1.365454 -8.024305 -4.702078 10.512107 -11.684809 1.296071 0.982692 -17.419367 -5.927467 6.906986 -1.959463 1.140525 -0.403579 6.378362 -16.914132 -1.962344 -12.404228 1.032436 14.753589 0.687681 -14.476840 3.491806 1.764237 -0.049941 -2.534856 1.065781 1.155047 12.963317 -17.681738 -1.905413 0.348936 -3.289442 -16.807702 -24.706191 3.053335 -19.671468 -18.020589 10.231681 -18.984702 2.293172 -14.542344 -3.742608 -24.223856 -12.503447 7.677016 25.986925 6.951603 -11.870692 4.003295 -2.896005 17.996857 2.040952 5.855640 3.414487 10.997498 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.866105 4.842861 3.428612 -2.756681 6.020409 0.898157 2.546434 2.203514 -1.921426 4.147237 -6.850900 -1.172142 -1.273513 -5.433933 -0.118303 -4.372762 0.030779 0.544832 -0.832647 1.679251 2.442685 -3.156229 -0.215452 -3.603044 -0.690342 -6.231883 -1.913259 -0.082651 3.368103 0.523976 1.943333 0.045989 6.585976 1.395263 5.550184 4.547887 1.304189 5.582230 0.560917 2.003616 -0.640763 4.014162 -2.848502 -5.272284 0.196706 -3.751937 -3.213927 -3.226887 0.787330 -4.425766 0.593228 3.974333 -0.369064 0.223204 -3.408765 1.956847 5.214825 0.158150 6.239483 1.831440 -2.857114 -0.498549 -3.887265 2.552600 -1.964028 1.937934 1.014998 -3.889251 1.135121 0.435851 -0.100810 -1.715870 -2.140731 2.957013 2.025388 -3.805393 1.614039 -2.026694 -8.858098 -3.500759 -2.551962 1.519084 1.410447 4.952301 0.258167 -0.246893 0.644420 0.913233 0.500837 -6.038823 -1.506300 6.453351 -2.266654 -0.978965 -3.286619 4.625991 0.850333 1.990804 -2.793386 -2.021774 1.781825 1.115734 0.593727 -3.767377 -3.562497 -6.382658 2.541727 1.374739 -1.911562 2.722877 1.649084 2.665672 3.430651 4.173169 -6.243013 3.267778 -5.057655 1.848972 -0.449517 0.065584 0.042175 0.640327 -0.651711 1.315624 4.066857 -5.634378 3.308962 2.813523 -2.561314 -5.454452 -0.037859 -4.601732 -4.351419 -0.856110 1.678048 2.247884 1.004919 -2.457237 -0.803832 -1.777803 -0.887111 -4.511612 0.699478 6.061013 -4.965657 -0.698699 -0.461636 -0.251661 -3.225444 3.871809 2.391864 1.598486 6.026708 2.880007 -1.010463 2.201551 -3.983638 0.171067 7.948762 3.902765 -5.161290 3.469578 -2.777771 0.079140 2.073124 1.436839 2.663510 1.247282 -6.375501 -3.688874 1.266674 -2.421176 5.838121 3.740406 1.641340 -3.827826 8.068946 -0.708562 -3.872942 6.609852 4.549932 -5.015721 1.299984 3.141473 -5.512343 -1.369314 3.085471 -3.255925 -0.812258 -2.420930 -0.381222 0.809338 -2.878447 -2.429613 -0.309566 -5.875596 6.799015 0.892693 3.354682 0.116623 -3.772630 -6.565460 6.816069 -0.357736 -1.347772 -1.664982 -1.158639 -4.279080 -5.642004 0.942260 1.460105 -3.550549 -2.866157 -4.683057 1.562956 3.547600 -2.729433 2.841525 -3.154249 -2.957658 1.959631 0.780188 2.811054 -4.227673 -3.334732 -1.346444 0.052816 3.387430 -1.759479 5.340239 7.368899 -1.538065 4.901780 -0.037860 -2.582358 0.911324 3.844506 -4.305287 5.333513 -2.157071 3.949169 0.205205 4.008494 -3.372250 -1.736569 0.365722 -1.781644 -1.195974 3.293573 -3.524604 0.355216 0.973417 -4.707335 -1.609917 2.418393 -0.168338 1.041409 -0.367441 1.647099 -4.183218 -0.365569 -3.028172 0.304308 4.024696 0.175286 -4.316814 0.341932 0.847267 -0.350344 -1.007405 0.676546 0.400998 3.779687 -4.706486 0.196565 0.084760 -1.306847 -4.844424 -6.435558 1.141725 -5.280545 -5.081437 2.906530 -5.821461 0.412146 -3.900359 -0.552957 -6.735178 -2.700079 1.351061 6.776769 1.911333 -2.600926 1.373817 -0.624228 4.685732 0.436971 1.446941 0.933489 3.575171 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -0.802496 0.149057 0.056894 -0.430329 1.748515 0.053257 -0.041046 1.106012 0.172937 0.516635 -1.301679 -0.504879 -0.353501 -0.863641 0.212679 0.039762 0.186304 0.383115 -0.790859 -0.451493 0.699846 0.270600 -0.018012 -0.751983 0.068055 -0.119893 -0.650541 -0.049437 0.281119 0.156760 -0.843845 0.229350 1.239520 0.018309 0.895149 0.649421 1.097282 1.177354 -0.375996 0.680256 0.387011 0.906854 -0.509557 -1.311530 0.499286 -1.130463 -0.601227 -0.264493 0.437119 -0.826824 1.091188 0.662798 0.153840 -0.014225 -0.177256 0.388324 0.544108 0.272798 1.077655 0.706046 -1.216418 -0.010469 -0.829828 0.883366 -0.564041 1.642254 0.005309 -1.364321 -0.974549 0.358886 0.773243 -1.165937 -1.009801 0.132127 -0.015676 -0.283287 0.768469 -0.061091 1.027277 -0.468210 -1.051632 0.228086 -0.505529 0.799666 -0.312342 -0.313854 -0.502334 -0.224201 0.375560 -0.849934 -0.621243 1.005871 -0.792357 0.832623 -1.086442 -0.592546 -0.372898 0.380010 -0.554983 -0.680475 0.354332 0.622126 0.101003 -0.114790 0.053460 -0.605224 0.933091 0.606705 -0.084878 0.254213 0.307073 0.150302 0.235600 0.498768 -0.090440 0.331359 -1.015662 0.350129 -0.392146 0.267500 -0.167086 0.182676 0.643431 -0.215495 0.540945 -0.840939 0.861550 0.337843 -0.873565 -0.472029 0.449350 -0.728198 -1.198615 -0.074198 0.657978 0.422939 -0.239862 -0.261877 0.278919 -0.480305 -0.921937 -0.594510 -0.553212 -0.069303 -0.895303 -0.353164 -0.298051 -0.430795 -0.437655 0.730778 0.306982 0.322880 1.096538 0.653612 -0.454429 -0.252903 -0.993202 0.585750 1.526915 0.143986 -1.152412 0.255339 -0.685648 0.625710 0.764650 0.145063 0.128368 0.913298 0.037755 0.360197 -0.353331 -0.296510 1.169252 0.912480 0.852545 -1.043720 0.089406 -0.757791 -0.288148 1.688349 0.829903 -1.517807 0.168735 0.743562 0.155734 -0.181579 0.156460 -0.562164 -0.371361 -0.791580 0.298838 0.499511 -1.144159 -0.747299 0.530474 -1.073188 1.212802 0.134866 0.111854 0.098840 -1.387252 -0.188447 1.723004 0.184357 -0.242163 -0.166917 -0.308146 -0.339523 -1.199479 0.320941 0.538299 -0.363434 -0.704992 -0.748622 0.186184 1.323039 -0.621034 0.290670 -0.540816 -0.116724 0.322596 -0.594082 0.915753 -1.194386 -0.748491 -0.627084 -0.335927 0.914638 -0.801076 -0.117947 1.244572 -0.680346 0.938187 1.074820 -0.327836 -0.532893 0.882828 -0.277174 0.914348 -0.149764 0.541322 -0.170415 1.003602 -0.822260 -0.238582 -0.277489 0.380719 -0.358097 1.026891 -0.784182 0.106041 0.228952 -0.994770 -0.320023 0.741621 0.233408 0.465893 -0.150697 -0.293968 -0.637700 -0.082456 -0.300652 0.059699 0.975757 -0.510743 -1.272287 -0.269828 -0.007229 -1.093531 -0.215005 0.430973 -0.076469 1.354003 -0.820345 0.126443 0.447838 -0.207536 -1.391515 -0.672166 -0.600821 -0.498132 -0.380760 0.650157 -0.890593 -0.600133 -0.574559 0.392561 -0.819640 -0.481488 -0.077802 1.041418 0.732655 -0.135087 0.703106 0.379362 0.915243 0.216027 -0.184694 0.213770 0.545851 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +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.743996 0.734174 -0.111229 -0.556512 2.188494 0.088130 0.222352 1.377748 -1.048132 0.927645 -1.237654 0.603748 0.037944 -1.443890 0.276503 0.291389 0.246960 0.232156 -0.195541 0.078120 0.452607 -0.530217 0.095706 -0.645592 -0.145202 -1.444887 -0.020607 0.137589 0.946489 0.271541 -0.394144 0.175403 1.184471 -0.114128 0.666096 0.732793 0.898322 0.730072 0.470635 -0.711115 0.231496 0.510969 -0.449195 -1.124323 0.179724 -0.765886 -1.063733 -0.360018 0.352467 -1.089007 -0.243315 0.872729 0.000000 -0.182143 -0.729666 0.767888 1.145586 -0.703358 1.191844 0.488204 -0.841559 -1.275899 -0.501872 1.233510 -0.454691 0.227667 0.005950 -1.068860 -0.176741 0.777449 -0.334406 -0.323812 -0.308656 0.340875 0.422061 -0.792118 0.455436 -0.175684 -0.302784 -0.955055 -0.515926 0.407127 -0.373608 1.177759 0.189570 0.022119 0.136489 -0.098156 0.261225 -1.152524 -0.359818 1.164205 -0.568442 -0.020292 -1.028033 0.772247 0.411967 0.022166 -0.393832 -0.902326 0.335662 0.274634 0.180387 -1.237022 0.143938 -1.181797 0.303021 0.110706 0.250454 1.131413 -0.011436 0.206018 0.164048 0.680300 -0.801983 0.134858 -1.204261 0.429295 -0.124396 0.144220 -0.514881 -0.056579 0.924459 0.288672 0.750328 -1.337597 0.983344 0.627555 -0.231912 -0.955731 0.205066 -0.527477 -0.751234 0.053924 0.524218 -0.036123 0.123611 -0.120905 0.432644 -0.157495 -1.189162 -0.638243 -0.347084 1.465838 -1.965764 0.069894 -0.122167 -0.070421 -0.382125 0.573107 0.570964 0.477127 1.244023 0.661923 -0.345041 1.476635 -1.133964 0.658531 2.012079 1.076987 -0.978172 0.698494 -1.028582 0.106445 0.366335 0.232942 0.398751 0.505789 -1.059260 -0.383705 0.733417 -0.244614 1.251107 0.569316 0.607538 -1.301174 1.047677 -0.335663 -0.187920 1.408931 0.800743 -1.526397 1.116895 1.115218 -0.795997 0.234612 0.353022 -1.040037 -0.476385 -0.736347 0.198293 0.673865 -1.055904 -0.666788 -0.191877 -0.959097 1.234784 0.231178 0.288063 0.137377 -0.508251 -0.097925 1.454748 0.208609 -0.060003 -0.398398 -0.524309 -1.464595 -1.233971 0.066562 0.374157 -0.890756 -0.370586 -1.012463 -0.598326 1.202670 -0.440016 0.357288 -2.178798 0.401423 0.557431 0.617074 0.372902 -0.973912 -0.566939 -0.106735 -0.325058 0.343977 -0.963131 0.815114 0.908362 -0.672958 1.237730 -0.273460 -0.265201 0.397771 0.621976 -0.614604 1.144582 0.126549 1.536166 0.344340 0.993099 -0.848172 0.047585 -0.418237 -0.608384 -0.444785 0.860695 -1.208235 -0.165664 0.960944 -0.485774 -1.209056 0.496112 0.435533 0.706752 -0.220301 -0.371514 -0.366940 -0.192467 -0.722764 0.423703 0.706032 -0.747063 -0.927977 -0.010219 0.689895 -0.491951 -0.479051 0.437166 0.362658 1.016128 -1.040006 0.475544 0.147745 0.343158 -1.416987 -1.398977 0.338378 -0.442401 -0.852665 0.708984 -1.918056 -0.452020 -0.660449 0.258615 -1.846963 -0.300566 0.097690 1.409765 -0.308735 -0.192146 0.663108 0.056561 0.342298 -0.206840 0.647734 0.110001 0.422939 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = -0.524182 0.177450 0.121357 -0.420831 1.647234 -0.060960 0.055711 1.091455 0.298549 0.502368 -0.971940 -0.126872 0.059024 -0.450911 0.214837 0.018818 0.004065 0.375605 -0.662965 -0.478502 0.330935 0.585630 -0.072660 -0.444588 -0.144913 -0.429316 -0.504514 0.129694 -0.032512 0.159579 -0.573053 0.267084 0.963091 -0.237234 0.719144 0.529813 1.032867 0.625514 -0.257046 0.784062 0.722197 0.320943 -0.308047 -0.740667 0.106885 -0.631929 -0.836643 -0.191711 0.252358 -0.843241 0.977240 0.419502 0.232050 -0.000325 0.051951 0.597335 0.127529 -0.148587 0.672810 0.558991 -1.249920 0.122088 -0.633951 1.318272 -0.388992 1.241275 -0.256426 -1.274341 -0.908370 0.657317 0.730009 -0.817370 -0.705727 -0.002089 0.010234 -0.247731 0.536336 -0.049951 1.209487 -0.329869 -0.471671 0.466049 -0.281607 0.467211 -0.097471 -0.175874 -0.545532 -0.196724 0.125747 -0.539305 -0.563855 0.956363 -0.723910 0.532395 -1.213122 -0.724138 -0.019766 0.149280 -0.090291 -0.841445 0.309342 0.398622 -0.000113 -0.037054 0.148875 -0.332656 0.399425 0.720400 0.007629 0.360226 -0.449315 0.234375 0.202341 0.275491 0.189780 0.347162 -0.816075 0.517631 -0.438749 0.120984 -0.305507 -0.043936 0.697989 0.296755 0.380119 -0.507353 0.720912 0.121738 -0.712378 -0.178267 0.243418 -0.280045 -0.857164 -0.021564 0.350523 0.373635 -0.126347 -0.059889 0.327395 -0.322699 -0.474496 -0.643654 -0.377248 -0.328240 -0.706006 -0.209160 -0.060887 -0.041515 -0.426561 0.721426 0.453033 0.219612 0.895089 0.376852 -0.081733 -0.323389 -0.943306 0.402190 1.066479 0.082482 -0.700879 0.394068 -0.708904 0.298192 0.468430 0.264276 -0.284863 0.759956 -0.044438 0.207694 -0.480474 -0.175725 0.975704 0.790599 0.316175 -0.883742 -0.158920 -0.981700 -0.119252 1.231318 0.943518 -1.202149 -0.096567 0.696537 0.176430 -0.374649 0.302808 -0.705540 -0.613018 -0.402695 0.222221 0.440393 -0.660753 -0.449804 0.629197 -0.653997 0.771006 0.031466 -0.260417 -0.085473 -0.827046 -0.187292 1.309817 0.157789 -0.011072 0.078510 -0.193310 -0.037992 -0.922097 0.033771 0.647561 -0.198211 -0.386073 -0.486585 0.108841 0.936718 -0.648326 0.306239 -0.470807 -0.068577 0.349566 -0.576853 0.463819 -1.083219 -0.350346 -0.686348 -0.256661 0.369398 -0.829930 -0.105665 0.820613 -0.349336 0.825141 0.856033 -0.618597 -0.577504 0.605273 -0.205394 0.787249 0.022898 0.053912 0.145991 0.597717 -0.596210 -0.222085 -0.441042 0.134810 -0.479877 0.786440 -0.710148 0.070211 0.130415 -0.691849 -0.286709 0.593319 0.451113 0.151210 -0.181510 -0.214518 -0.525289 -0.142338 -0.545226 0.097347 0.523214 -0.572187 -0.917518 0.095532 0.229387 -1.165828 -0.371247 0.196845 0.184780 0.983046 -0.585054 0.256414 0.527048 0.102500 -1.456558 -0.557774 -0.387021 -0.556993 -0.460494 -0.122486 -0.666945 -0.936266 -0.372774 0.388733 -0.659815 -0.714764 0.409032 0.900837 0.401671 -0.175532 0.448335 0.162901 0.548810 0.209506 -0.031032 0.216026 0.263040 +PE-benchmarks/find-parity.cpp__main = -0.705541 0.397822 0.407546 -0.531258 1.855832 0.276566 -0.063758 1.264428 -0.057008 0.712185 -1.359124 -0.395972 0.069857 -0.461079 0.146169 -0.137048 -0.186254 0.218590 -0.808886 -0.349969 0.440474 0.512290 -0.174958 -0.636388 -0.196420 -0.310957 -0.645239 0.056557 0.327695 0.191048 -0.758662 0.103307 1.226133 -0.317061 1.226497 0.788870 1.211478 0.800913 -0.396139 0.870393 0.540384 0.628936 -0.594678 -0.689183 -0.077365 -0.982254 -0.996051 -0.356984 0.218079 -0.779769 1.296715 0.586956 0.138730 0.063795 0.097603 0.767226 0.090696 -0.145142 1.043830 0.613536 -1.397717 0.425459 -0.820417 1.822203 -0.405375 1.778797 -0.345561 -1.316022 -0.799335 0.378536 0.854540 -0.889873 -0.792417 0.372799 0.023264 -0.423058 0.661197 -0.311046 1.101288 -0.653948 -0.637612 0.603100 -0.258311 0.553087 -0.127157 -0.197504 -0.580970 0.072978 0.001340 -0.949147 -0.559849 1.383722 -0.914356 0.192995 -1.859993 -0.656355 -0.033599 0.507265 -0.253388 -0.725718 0.512892 0.585499 -0.008875 -0.589273 0.438754 -0.681341 0.481380 0.983868 -0.073399 0.589156 -0.434429 0.419993 0.781106 0.651459 0.279668 0.435584 -0.829734 0.436497 -0.544276 0.093607 -0.201196 0.130936 0.794127 0.274052 0.659971 -0.713264 0.709387 0.225030 -1.059271 -0.350657 0.198370 -0.794528 -1.165490 -0.062465 0.267093 0.665438 -0.094137 -0.385830 0.269529 -0.477157 -0.566586 -0.928456 -0.122243 -0.432186 -0.693307 -0.351753 -0.031282 0.140058 -0.635659 1.207151 0.700632 0.312231 1.207123 0.428528 -0.027439 -0.741219 -0.985640 0.303940 1.219369 -0.311455 -1.059073 0.601706 -0.883828 0.213191 0.478093 0.416427 -0.270362 1.045135 -0.361802 -0.113790 -0.776053 -0.298824 1.268357 1.050558 0.368938 -0.623079 0.331886 -1.172866 -0.648772 1.299274 1.293252 -1.232660 -0.529936 0.632081 0.183649 -0.496138 0.717710 -1.002716 -0.708176 -0.407218 -0.006060 0.347692 -0.711058 -0.444150 0.779898 -1.011804 1.305239 0.102054 -0.195717 -0.374093 -0.973237 -0.494248 1.354826 0.235987 -0.239702 -0.013237 -0.072967 -0.394297 -1.062450 0.157085 0.776716 -0.126997 -0.761908 -0.692396 0.378764 0.850414 -0.761104 0.483027 -0.459394 -0.375070 0.383283 -0.630383 0.877248 -1.316224 -0.549380 -1.013994 -0.257232 0.695471 -1.023347 0.285362 1.369705 -0.250870 1.140828 1.079226 -1.044503 -0.780897 0.808185 -0.504347 1.036205 0.026598 -0.494067 0.062169 0.803968 -0.714712 -0.394068 -0.418755 0.137554 -0.359572 0.994988 -0.663086 0.144097 -0.352095 -0.989733 -0.095595 0.635337 0.178596 -0.047131 -0.148379 -0.276552 -0.974455 -0.228018 -0.854920 -0.016160 0.759661 -0.696055 -1.022083 0.195465 -0.015488 -1.103087 0.160703 0.169104 0.069699 1.184012 -0.811783 0.025001 0.571100 0.101975 -1.695409 -0.528018 -0.817400 -0.661355 -0.644593 0.148869 -0.554015 -0.924148 -0.639661 0.085748 -0.701393 -1.264991 0.711409 1.318100 0.601393 -0.517733 0.209666 0.045457 1.020352 0.495053 -0.119355 0.155914 0.270398 +PE-benchmarks/birthday-paradox.cpp__main = -0.139921 -0.009400 0.043107 -0.074049 0.286859 -0.121916 -0.107340 0.372416 0.352460 0.159789 -0.179768 -0.124952 0.007353 -0.000124 0.039370 0.008717 -0.020357 0.193284 -0.189664 -0.196067 0.103844 0.286581 -0.067462 -0.072820 -0.048271 -0.099533 -0.138118 0.038728 -0.096923 -0.018363 -0.204388 0.100026 0.317119 -0.072354 0.320346 0.189203 0.291615 0.150841 -0.032995 0.423873 0.175184 0.118677 -0.099223 -0.144133 -0.006039 -0.119643 -0.091077 -0.018349 0.088382 -0.135541 0.491050 0.053673 0.051737 0.083761 0.093885 0.143010 -0.197574 0.111053 0.172003 0.131750 -0.341406 0.218970 -0.207089 0.495798 -0.178716 0.357931 -0.142947 -0.332012 -0.238138 0.080802 0.277227 -0.207684 -0.096172 0.042887 -0.086068 -0.052630 0.168775 -0.010020 0.559613 -0.005342 -0.171150 0.134267 -0.058127 0.036251 -0.088616 -0.046926 -0.319171 0.012310 -0.011338 -0.122266 -0.108121 0.185550 -0.278184 0.182627 -0.193037 -0.305281 0.023488 0.089262 0.140586 -0.179088 0.082606 0.051666 0.015475 0.187018 0.170017 0.094600 0.125718 0.178079 -0.005123 0.048058 -0.160876 0.138470 0.135690 0.093760 0.256553 0.050222 -0.226975 0.190766 -0.174469 0.028213 0.014102 0.040214 0.176736 0.094724 0.114207 -0.069835 0.102311 -0.041074 -0.127375 0.043429 0.071630 -0.088449 -0.223241 -0.109449 0.112226 0.168688 -0.094831 -0.084284 0.098660 -0.057576 -0.059992 -0.182675 -0.087870 -0.336868 -0.026216 -0.084467 -0.034327 -0.015808 -0.096468 0.199685 0.095846 0.080990 0.207888 0.111781 0.013900 -0.402387 -0.262055 -0.005788 0.104908 -0.227621 -0.150084 0.127786 -0.162633 0.006366 0.176144 0.164918 -0.101086 0.263092 0.130261 0.064946 -0.293569 -0.004466 0.256354 0.153407 0.010989 -0.076349 -0.156328 -0.283366 -0.136358 0.373105 0.208519 -0.289279 -0.195244 0.065732 0.110732 -0.186738 0.086902 -0.137621 -0.084697 -0.103498 0.054033 0.135718 -0.133740 -0.042015 0.317195 -0.168413 0.179291 -0.048889 -0.099379 0.011913 -0.320248 0.023894 0.361959 0.098165 -0.005320 0.005105 -0.057412 0.105651 -0.215985 0.012787 0.131564 0.061254 -0.067212 -0.094001 0.111375 0.196506 -0.133646 0.095903 0.008153 -0.127329 0.089999 -0.318829 0.075016 -0.238665 -0.069221 -0.235701 -0.062368 0.137421 -0.189124 -0.060809 0.299894 -0.045355 0.160462 0.440769 -0.200603 -0.237045 0.162505 -0.151184 0.198733 -0.059809 -0.386235 0.050124 0.058135 -0.179588 -0.125021 -0.108153 0.142132 -0.123219 0.117364 -0.064692 0.047067 -0.135828 -0.294500 0.119617 0.099262 0.095061 -0.007064 0.013164 -0.026558 -0.249318 -0.037248 -0.201190 -0.038243 0.149784 -0.021446 -0.235568 0.145664 -0.053751 -0.357047 -0.152177 -0.023523 0.004767 0.231029 -0.139762 -0.007864 0.209016 0.025281 -0.334875 -0.046252 -0.230064 -0.135881 -0.086831 -0.177498 -0.044383 -0.292596 -0.075662 0.079960 -0.101841 -0.194629 0.152658 0.224867 0.226235 -0.111362 0.097654 0.000662 0.220140 0.194648 -0.115479 0.012363 0.106045 +PE-benchmarks/birthday-paradox.cpp__find(double) = -0.621230 0.243007 -0.019567 -0.460418 0.969461 -0.722062 0.350560 0.783136 0.421555 0.509164 -0.675120 -0.699066 -0.199639 -0.417392 0.224118 0.184317 0.618283 0.177829 -0.603767 -1.127309 0.236496 0.556914 -0.582750 0.087493 -0.086388 -0.127270 -0.583528 0.004661 -0.137568 -0.032480 0.012934 -0.146163 1.252980 -0.558804 1.003077 0.705363 0.119290 0.110867 0.041455 0.769783 -0.202738 0.718622 -0.436341 -0.113346 -0.294479 -0.112713 -0.102021 -0.213866 0.117532 -0.662292 0.574698 0.353895 0.181696 0.184072 0.144646 0.745885 0.277843 -0.000591 0.920089 0.083617 -0.412130 -0.347820 0.378359 0.532949 -0.544501 -0.108719 -0.057161 -0.440827 0.069281 -0.030875 0.186787 0.037194 -0.673709 0.014693 -0.600115 -0.776780 0.338735 0.305792 0.908791 0.157201 -0.001724 0.153213 0.027344 0.185348 -0.374698 -0.656956 -0.421377 0.012395 -0.211656 -0.144343 -0.014037 0.592672 -0.141725 0.296687 -0.658158 -0.630170 -0.126511 0.078399 -0.000564 -0.445736 -0.057683 -0.276509 0.665973 0.001721 0.330748 0.232988 0.195622 0.124762 0.007043 0.609249 0.349449 0.845080 0.332749 0.167132 -0.625318 0.571667 -1.207582 0.501124 -0.281371 -0.211933 0.284135 0.150361 0.141753 0.126664 0.335043 -0.582168 0.603999 -0.332702 -0.386462 -0.442684 0.306623 -0.067398 -0.763153 -0.239298 -0.012889 0.109194 -0.706200 -0.677219 0.448462 -0.669652 -0.164628 -0.655818 0.172029 -0.459922 -0.656172 -0.101073 -0.717767 0.196448 -0.065226 0.379159 -0.614159 -0.325578 0.782891 0.524509 0.115032 -0.148873 -0.909089 -0.689931 -0.313404 -0.030332 -0.620386 0.529431 -0.554264 0.240941 0.654954 0.502680 -0.434720 0.761710 0.423628 0.230781 -0.103129 0.086304 0.210692 0.377164 0.332860 -0.744668 -0.216999 -0.939692 -0.184304 0.634649 0.990371 -0.479238 -0.230167 -0.136103 0.472429 0.339992 0.173013 -0.186802 -0.723177 -0.277129 -0.309464 0.234386 0.038841 -0.104777 0.137203 -0.378015 0.550756 -0.133324 -0.519450 0.786666 -1.403075 0.175515 -0.015704 0.314789 0.056644 0.444390 -0.124010 0.072277 -0.670824 0.275241 0.482315 -0.762424 -0.843704 -0.777423 0.947765 0.006995 0.231501 0.421207 -0.394775 -0.002967 0.858556 0.212098 -0.452174 -0.452431 -0.209322 -0.715795 0.126751 0.690744 -0.090572 0.413884 0.730740 0.145389 0.252425 0.345116 -0.550209 -0.272003 0.273150 -0.619518 -0.049203 -0.158073 -0.162117 0.057589 0.334669 0.489288 -0.214206 -0.337244 0.029817 -0.362600 0.737219 -0.535088 0.082431 0.114911 -0.539462 0.226472 0.461954 -0.445014 -0.102114 0.211565 -0.103502 -0.800792 -0.157465 -0.492755 0.214163 0.710461 0.749561 -0.772999 0.011245 -0.620714 -0.472663 -0.372831 -0.724854 -0.675674 0.071437 -0.001683 -0.353771 0.290594 -0.021754 -0.186312 -0.250395 -0.410735 -0.051049 -0.502513 -0.168314 0.408674 -0.397172 0.381248 -0.330242 -0.800424 -1.026538 0.085627 0.335282 0.104633 0.362666 0.047633 0.193784 0.256910 0.564756 -0.872654 0.394824 0.321022 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -5.158798 4.332547 5.018103 -2.833290 8.395886 0.702564 2.841614 3.820791 -2.461907 5.148459 -8.513058 -2.279511 -2.188709 -5.448575 -0.092507 -4.718186 0.572302 0.203404 -2.094252 1.263497 3.189465 -2.243982 -0.674624 -4.108245 -0.888269 -5.328591 -3.610316 0.081382 4.655173 -1.273180 0.895331 0.434787 9.238236 0.777928 8.358374 5.947516 2.636741 6.857232 -0.612307 1.378752 -0.461780 5.793254 -4.266311 -5.738940 -0.365169 -5.208221 -4.052930 -2.807199 1.635162 -3.750306 0.593804 5.029596 -0.442821 1.471209 -3.083539 3.792167 4.978165 0.174410 8.541267 2.481374 -4.990596 1.237504 -5.692764 4.481485 -2.326836 4.489038 -1.554962 -5.745998 0.103569 -0.244153 0.690204 -4.895531 -2.935809 4.349908 1.625081 -4.680269 3.047573 -2.030279 -6.189888 -6.314196 -4.847184 2.112981 1.716830 5.592242 -0.412672 -0.699014 0.247667 1.337747 0.103279 -8.349114 -1.561511 7.539875 -5.102020 -0.898516 -3.981787 3.306676 -0.725814 3.729434 -3.816528 -3.675495 2.324535 1.025839 0.568530 -4.934451 0.182349 -6.244349 2.246070 1.453931 -1.183624 2.840390 2.598494 3.820233 5.722669 5.874615 -6.070761 2.819390 -6.109796 2.600873 -2.312925 -0.031754 0.068517 1.812018 0.266156 1.776684 6.116687 -7.421792 3.202596 2.604958 -3.977254 -6.584255 -0.094327 -6.763893 -6.756865 -1.501156 2.656623 3.267971 0.986257 -4.079650 0.071302 -2.277796 -1.052358 -4.176009 0.705095 5.073004 -6.634593 -1.696557 -0.624062 -0.305309 -4.190372 6.169987 3.700132 2.782688 8.123460 3.695678 -2.047354 0.801104 -6.178889 0.070445 9.011026 2.047613 -6.920911 4.884650 -4.738846 0.423502 3.686498 2.843150 3.359010 1.363307 -6.444516 -3.516337 2.108668 -1.870075 8.246262 3.172480 2.494581 -3.742558 8.121351 -2.771103 -5.673563 9.035171 5.410361 -7.904205 1.629057 3.335765 -3.406430 -2.001334 4.495017 -5.466455 -1.778892 -3.613624 -0.632462 1.685316 -3.955336 -1.858332 2.095668 -7.723985 9.069725 0.786134 2.613791 1.069477 -5.970442 -8.136213 9.161386 0.092907 -1.198092 -2.434216 -1.838057 -3.905996 -7.547042 1.296245 1.436095 -3.266468 -3.614349 -6.354136 2.710674 4.714861 -2.950535 4.731273 -4.451910 -3.483217 2.495999 -0.654030 4.667220 -4.429330 -4.487938 -2.593066 -1.458369 4.544427 -4.367923 5.763497 9.819686 -2.250699 6.861789 1.066791 -4.698337 -0.490240 4.279062 -6.122353 7.142401 -1.815578 4.450716 -0.064573 5.151187 -5.514673 -2.728221 0.167067 -0.687134 -2.185360 4.007190 -3.889455 0.748426 -0.603877 -6.874097 -1.902233 2.491099 -0.854409 0.059257 -0.155905 1.450844 -6.286411 -0.670503 -4.249739 0.640777 5.479066 -0.625683 -5.955580 1.410399 0.007822 -1.412126 -0.231548 0.490767 -0.070386 5.397632 -6.290522 -1.448477 0.966602 -0.549184 -6.393457 -8.031692 -0.619563 -6.754227 -5.359779 3.663735 -6.003498 -0.242875 -5.009492 -1.203493 -7.516868 -3.998408 2.611843 9.401617 3.566017 -4.771242 1.792827 -0.521123 6.584586 1.135971 1.212513 0.519681 3.397325 +PE-benchmarks/dfs.cpp__main = -0.557589 -0.749400 0.310231 0.018801 1.633070 -0.980659 0.174005 1.484522 1.158289 0.016804 -0.718834 -0.723790 -0.524057 -0.201440 0.506065 -0.205569 0.671729 0.912053 -1.074548 -1.132190 0.629024 1.690406 -0.377057 -0.412949 0.184358 0.146004 -0.687190 -0.006499 -0.866541 0.244121 -1.060025 1.192123 1.488747 -0.000612 1.107084 0.784474 1.638611 0.989308 -0.624535 1.689730 1.021482 0.490762 -0.122305 -1.041354 0.403971 -0.485268 -0.675173 -0.005985 0.378227 -0.645376 1.827011 0.373323 0.381202 0.517866 0.430218 0.336135 -0.523011 0.404278 0.330904 1.028672 -1.840622 0.798612 -0.600820 1.512460 -0.577128 1.904064 -0.396175 -1.721501 -1.574950 0.703586 1.549112 -1.425573 -1.169051 -0.438507 -0.274707 0.188744 0.878652 0.691399 2.673031 0.198098 -1.405538 0.356537 -0.467196 0.321139 -0.390522 -0.509109 -1.118262 -0.650659 0.462957 -0.191619 -0.600290 0.923281 -1.178200 1.247571 -1.930278 -2.056512 -0.299092 0.236123 0.075746 -1.536445 0.412590 -0.011536 0.028402 1.055514 -0.227432 0.527304 0.659502 0.848089 0.045559 0.317496 -0.599329 0.161891 0.071315 -0.197741 1.077589 0.497409 -0.990141 1.169050 -0.788579 -0.110025 -0.045506 -0.065955 0.914559 0.014401 0.072675 -0.293509 0.525676 0.107216 -0.924982 0.441245 0.507665 -0.257097 -1.138163 -0.499469 1.119454 0.610136 -0.386450 0.111402 0.545826 -0.399906 -0.049325 -0.650040 -1.197483 -1.565997 -0.205420 -0.452587 -0.423098 -0.540981 -0.493314 0.588301 0.005315 0.485681 0.557290 0.501511 -0.598952 -1.430334 -1.334765 0.322767 0.684098 -0.522208 -0.701466 0.187137 -0.510786 0.662072 0.698388 0.437897 -0.558690 0.720715 1.060843 1.071870 -1.413968 -0.015971 0.936281 1.133440 0.387764 -0.955054 -1.548644 -1.584225 -0.212771 1.489104 1.056776 -1.435712 -0.664567 0.831841 0.877837 -1.063276 0.039885 -0.835950 -0.797627 -0.867054 0.715287 0.645265 -1.263904 0.010334 1.722819 -0.626858 0.179456 0.042010 -0.587591 -0.079656 -1.623570 -0.349645 1.983498 0.109936 0.360138 0.162993 -0.642757 0.861558 -1.074265 0.180938 0.540891 0.583318 -0.378015 -0.249988 0.202089 1.498682 -0.625890 0.449040 0.483545 0.080910 0.344079 -1.389420 0.546310 -1.521938 -0.645364 -0.735415 -0.397968 0.485471 -0.851523 -1.233434 0.658698 -0.547988 0.560831 1.882517 -1.078462 -1.207420 0.545801 -0.115160 0.557097 -0.022451 -0.546755 0.233311 0.633657 -0.995274 -0.599103 -0.504157 0.932967 -1.094788 0.997097 -0.643888 0.324767 -0.129219 -0.855804 -0.107144 0.584422 0.577527 0.015117 -0.271229 -0.358002 -0.624608 0.083336 -0.554938 0.414271 0.778583 -0.532819 -0.920318 0.168524 0.054123 -2.163791 -0.410285 0.389325 -0.131589 1.438865 -0.536916 0.070816 0.922217 0.147045 -1.406086 -0.566403 -0.735831 -0.822650 -0.243821 -0.468505 -0.300359 -1.368811 -0.184033 0.862185 -0.268997 -0.844923 0.279940 0.673865 0.712505 0.181217 0.678942 0.579976 0.359384 0.251224 -0.443577 0.182142 0.518977 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.616257 0.968280 0.422535 -0.877384 3.052928 -0.128674 0.757506 1.234864 -0.574996 1.597913 -2.501484 -0.665846 -0.699745 -2.227269 0.214466 -0.628375 0.624534 0.415727 -0.655980 0.205770 1.051362 -0.829860 0.045915 -1.273872 -0.175793 -2.006365 -0.767874 0.170835 1.445858 -0.278318 -0.357279 0.391983 2.935392 0.231024 2.228606 1.692836 1.084955 2.162937 0.272540 -0.351964 0.146498 1.666671 -1.092478 -2.168204 0.187795 -1.519198 -1.533832 -1.037303 0.738576 -1.333224 0.355890 1.630290 -0.067192 0.174702 -1.404807 0.957845 2.002172 -0.009696 2.621269 0.861397 -1.290266 -0.243621 -1.386918 1.580907 -1.060903 0.889653 -0.266959 -1.983850 -0.286145 0.560222 0.111578 -1.311568 -1.208451 0.910167 0.769681 -1.441982 0.986385 -0.319416 -0.985910 -2.068009 -1.724925 0.564087 -0.252507 2.044954 -0.076329 -0.138380 0.061555 0.078014 0.376605 -2.354362 -0.553326 2.087659 -1.354985 -0.028322 -0.974078 1.246310 0.127618 0.574116 -1.249517 -1.461214 0.557443 0.078004 0.321347 -1.018686 0.090685 -1.747707 0.770108 0.363924 -0.032612 1.266940 1.077679 0.764044 1.199195 1.472419 -1.724856 0.380909 -2.138180 0.862212 -0.495372 -0.003178 -0.236657 0.490991 0.690451 0.332736 1.721884 -2.532217 1.400796 1.027066 -0.861867 -1.710528 0.190036 -1.520291 -1.873129 -0.338031 1.154841 0.527432 0.241737 -0.838900 0.353107 -0.506549 -0.976880 -0.700595 -0.253293 1.901285 -2.382446 -0.240133 -0.326144 -0.495366 -0.968387 1.440813 0.916898 0.924737 2.436350 1.336424 -1.030910 0.945593 -2.157929 0.597275 3.297585 0.741594 -2.105462 1.370143 -1.525740 0.291279 1.144323 0.898249 1.070726 0.199720 -1.555188 -0.571809 0.622846 -0.463879 2.514068 0.788977 1.006349 -1.777123 2.071792 -0.376482 -0.991865 3.022499 1.413215 -2.665311 1.015006 1.561152 -1.499615 -0.311055 0.987544 -1.596819 -0.575745 -1.649623 0.391434 0.888338 -1.663821 -0.762373 0.271576 -2.225006 2.462021 0.258512 0.380122 0.482905 -1.786029 -1.404279 3.170916 0.081117 -0.128434 -0.777484 -0.995950 -1.405870 -2.576266 0.355320 0.237174 -1.229337 -0.789177 -1.954402 0.177087 2.118898 -0.781382 1.151745 -2.194264 -0.166581 0.932129 0.441113 1.039141 -1.414625 -1.332833 -0.158706 -0.480351 0.999553 -1.426539 1.388701 2.413494 -1.157007 1.727876 0.104391 -0.979392 0.372794 1.275615 -1.660344 2.238274 -0.422501 1.911747 0.151158 1.711528 -1.546144 -0.482899 -0.219314 -0.358979 -0.969694 1.367704 -1.740142 -0.008730 0.828361 -1.500902 -1.419973 0.824426 0.305200 0.681459 -0.125121 -0.154585 -1.536117 -0.021922 -1.054207 0.562764 1.631471 -0.265733 -1.824879 0.273446 0.630182 -0.606641 -0.467849 0.435594 0.103061 1.952844 -2.009103 0.055930 0.301727 0.274049 -1.893894 -2.677660 0.238275 -1.665542 -1.361953 1.572689 -2.596142 -0.429265 -1.437134 0.183758 -2.481369 -0.597764 0.417792 2.762474 0.711616 -1.009631 0.908621 0.031318 1.402315 -0.053968 0.416711 0.306445 1.147761 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = -0.422618 0.005695 -0.154376 -0.172862 1.067658 0.044156 -0.130521 0.864609 0.138258 0.524511 -0.472487 -0.216960 -0.094646 -0.341818 0.082271 0.232371 0.025047 0.259156 -0.420081 -0.279235 0.315774 0.253271 0.029172 -0.152129 -0.107702 -0.182520 -0.316716 0.108339 0.224579 -0.041078 -0.550036 0.074630 0.726739 -0.121075 0.625890 0.347459 0.674488 0.432620 -0.096551 0.373161 0.145626 0.383868 -0.368426 -0.514736 0.184922 -0.523874 -0.483750 -0.109922 0.282011 -0.426676 0.766773 0.378766 0.001824 0.104013 0.074676 0.333924 0.001415 -0.027578 0.660602 0.272510 -0.760559 -0.058174 -0.505599 0.919954 -0.240223 0.763803 -0.206538 -0.879365 -0.528553 0.134193 0.462069 -0.637712 -0.385607 0.339286 0.031012 -0.252571 0.395720 -0.096087 0.877958 -0.431166 -0.590859 0.209413 -0.341454 0.382583 -0.121115 -0.049230 -0.383057 0.023262 -0.056757 -0.659009 -0.103914 0.596362 -0.580781 0.459476 -0.683081 -0.421961 -0.217056 0.293671 -0.210499 -0.384921 0.172678 0.264140 0.115672 -0.059950 0.384386 -0.224749 0.324688 0.233239 0.210666 0.161123 0.124178 0.045262 0.308523 0.498206 0.070394 0.098242 -0.458936 0.342301 -0.253998 0.199440 -0.179241 0.218431 0.511588 0.048681 0.496718 -0.560913 0.292932 0.011071 -0.420099 -0.320298 0.120916 -0.421745 -0.544822 -0.098552 0.355080 0.085044 -0.192142 -0.304598 0.255219 -0.126659 -0.660288 -0.282302 -0.187525 -0.209137 -0.546635 -0.111113 -0.133051 -0.189526 -0.198395 0.555226 0.395855 0.396450 0.671584 0.414587 -0.113955 -0.225610 -0.698259 0.253912 0.713037 0.025780 -0.613031 0.362763 -0.588454 0.173152 0.418388 0.297303 0.116062 0.467444 0.097318 0.197744 -0.128872 0.173394 0.777899 0.422056 0.363878 -0.390068 -0.146294 -0.500144 -0.247557 0.931133 0.466439 -0.840978 0.031644 0.217492 0.164697 -0.041523 0.221748 -0.495806 -0.284253 -0.406629 0.139331 0.447206 -0.493552 -0.241251 0.520786 -0.557934 0.721661 -0.051403 -0.056643 0.208498 -0.794670 0.098109 0.871476 0.179841 -0.103578 -0.155374 -0.259127 -0.173028 -0.554433 0.133130 0.274559 -0.088187 -0.317563 -0.494228 0.009920 0.676602 -0.052578 0.317263 -0.523932 -0.014739 0.254585 -0.481545 0.422132 -0.684641 -0.247677 -0.428695 -0.221745 0.404447 -0.512520 0.005575 0.659147 -0.361056 0.489239 0.596491 -0.168339 -0.326852 0.294794 -0.356995 0.605846 0.015993 0.007527 -0.025443 0.411961 -0.390063 -0.027595 -0.220765 0.316081 -0.170645 0.471317 -0.295881 -0.042372 0.048530 -0.654309 -0.216556 0.128993 0.141139 0.110934 0.056102 -0.323795 -0.480929 -0.151515 -0.355806 0.067743 0.479188 -0.310114 -0.542052 0.189315 -0.146293 -0.531085 -0.128572 0.146075 0.063394 0.652800 -0.532355 -0.076959 0.282651 0.108415 -0.780405 -0.362552 -0.451719 -0.228494 -0.252304 0.219838 -0.514461 -0.407889 -0.362144 0.062929 -0.483556 -0.284415 0.129666 0.765585 0.377261 -0.237477 0.383844 0.100969 0.486593 0.167614 -0.076838 0.170395 0.258447 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -1.887159 0.459003 -0.114392 -0.500593 3.736125 -0.219615 0.858849 1.905349 -1.750451 1.943914 -2.323946 -0.668790 -1.121228 -2.573660 0.286586 0.176349 1.389812 0.260996 -0.616934 0.447032 1.183180 -1.269128 0.209010 -1.026238 -0.105049 -1.938592 -0.686914 0.331752 2.596619 -0.772557 -1.035806 0.459766 3.707304 0.115049 2.791740 1.773264 1.161672 2.081320 0.744267 -2.828580 -0.357148 2.186203 -1.471413 -2.218648 0.069931 -1.808709 -1.798626 -0.865154 1.184650 -0.822577 -0.838879 1.932194 -0.357389 0.623789 -1.643598 1.157340 2.448021 -0.351159 3.352516 0.699598 -1.180819 -0.968232 -1.263893 1.870890 -0.967372 0.197771 -1.215205 -2.211538 -0.106848 0.254890 -0.560219 -1.770863 -0.932741 1.537333 1.049416 -1.755640 1.396776 -0.021105 -0.108235 -3.581780 -2.587160 0.311074 -1.081250 2.515327 -0.274648 -0.085119 0.342198 0.100587 0.264784 -3.158508 0.026373 1.906426 -1.927043 -0.353290 -0.359155 1.735513 -0.061578 0.959474 -1.834701 -2.006111 0.390025 -0.462212 0.460882 -1.633308 2.051730 -1.421592 0.067228 -0.517599 1.093018 2.254841 1.994146 0.871051 1.784395 2.064534 -2.054767 -0.552786 -2.113803 1.084375 -1.180654 -0.031858 -0.365444 1.141637 1.539204 0.352556 2.478804 -3.514375 1.067011 1.245628 -0.338669 -2.065773 0.130862 -2.071156 -2.100781 -0.488217 1.651253 0.010738 0.295955 -1.470557 0.862778 -0.197601 -1.728942 0.434057 -0.394349 2.378640 -3.695423 -0.235537 -0.443240 -0.738561 -0.670368 1.679688 1.171949 1.584839 2.725394 1.711684 -1.919048 1.912919 -2.862292 0.947320 3.843500 0.199463 -2.431420 1.758192 -2.186014 0.176411 1.617553 1.380238 1.952332 -0.447246 -1.441150 -0.421308 1.626555 0.316472 3.072857 0.053356 1.447356 -1.924530 2.160391 -0.353179 -1.170960 3.410353 0.723855 -3.366482 2.018052 1.443125 -1.536820 0.433031 0.919078 -2.352255 -0.701342 -2.576763 0.546485 1.596402 -2.106029 -0.347124 0.548947 -2.520300 2.844456 0.178395 -0.131367 1.086391 -1.964357 -0.599553 3.739547 0.468119 0.170289 -1.351905 -1.646533 -1.913917 -2.981935 0.386041 -0.669628 -1.298610 -0.538768 -2.575352 -0.430019 2.523187 0.066359 1.617165 -4.246167 0.804131 1.140952 1.048646 1.057477 -1.132092 -1.585914 0.310079 -1.246201 0.885346 -2.295676 1.733697 2.295174 -1.698720 1.778754 -0.660031 -0.951674 0.928067 0.739798 -2.381082 2.625825 -0.114750 3.232598 0.159451 1.981570 -1.921574 -0.313990 -0.432264 -0.322627 -1.393356 1.408616 -1.954850 -0.175860 1.334846 -1.381981 -2.520715 0.209595 0.043825 0.835884 0.136688 -0.942318 -2.066769 0.048201 -1.087821 1.028021 1.887184 -0.602643 -1.960588 0.655744 0.519363 -0.102300 -0.493001 0.427723 0.001421 2.024493 -2.502215 -0.561083 0.264048 1.216219 -1.419024 -3.433951 0.277266 -1.356059 -1.164114 2.725607 -3.225768 -0.202093 -1.727090 -0.211926 -3.058025 -0.211942 0.457593 3.516622 0.371423 -1.613017 1.103036 0.097086 1.311091 -0.382273 0.876117 0.028072 0.898709 +PE-benchmarks/partition-problem.cpp__main = -0.874148 -0.102655 0.197574 -0.296083 1.678105 -0.050730 -0.082059 0.870729 0.532739 0.734399 -1.113085 -1.079352 -0.556072 -0.740728 0.139283 -0.177347 0.322453 0.403722 -0.837530 -0.340054 0.652335 0.328805 -0.023890 -0.465894 -0.069056 -0.321983 -0.850588 0.148126 0.364992 -0.290122 -0.783905 0.312146 1.727383 0.008583 1.482292 0.823345 0.979813 1.155239 -0.374273 0.372200 0.251354 1.005914 -0.698562 -1.097702 0.263051 -1.013803 -0.863691 -0.489072 0.542963 -0.472387 0.873994 0.743896 0.026406 0.312238 -0.137180 0.411732 0.352924 0.442961 1.335986 0.585413 -1.045124 0.653744 -1.005217 1.030735 -0.654531 1.351990 -0.590566 -1.502921 -0.877380 0.117539 0.910332 -1.109074 -0.969489 0.509876 0.289541 -0.441110 0.792889 -0.026680 1.071117 -1.060004 -1.382131 0.286373 -0.562496 0.815141 -0.363826 -0.203668 -0.286464 -0.005588 0.063108 -1.173993 -0.269312 1.036797 -0.989968 0.497793 -0.787317 -0.524424 -0.360291 0.571508 -0.670009 -0.850128 0.341672 0.094120 0.163559 0.378450 0.723130 -0.239346 0.559232 0.488961 0.243612 0.294651 0.487423 0.245771 0.865105 0.785410 -0.252487 0.148713 -0.824503 0.571757 -0.760503 0.097674 -0.052558 0.547542 0.646942 0.059313 0.917242 -1.107410 0.542253 0.279496 -0.843056 -0.409778 0.250970 -0.891458 -1.222648 -0.314301 0.770428 0.392228 -0.204119 -0.623308 0.310061 -0.346445 -0.531739 -0.088334 -0.357238 -0.377157 -0.675199 -0.316150 -0.273317 -0.523999 -0.410574 1.001189 0.548499 0.648330 1.262943 0.762453 -0.687283 -0.858137 -1.311837 0.354623 1.447574 -0.716550 -1.190357 0.636715 -0.709272 0.360639 0.842467 0.695567 0.352964 0.368078 0.184160 0.256141 -0.812364 0.112481 1.435744 0.739666 0.546515 -0.722799 0.058124 -0.654677 -0.574942 1.740714 0.713618 -1.350636 -0.190432 0.511786 -0.213802 -0.491351 0.399711 -0.801126 -0.398617 -1.024160 0.405316 0.620081 -0.933877 -0.269358 0.952443 -1.191198 1.214590 -0.035047 -0.272219 0.304821 -1.471687 -0.664566 1.860105 0.073209 -0.085184 -0.305280 -0.546386 0.181742 -1.282937 0.294617 0.136237 -0.177693 -0.503638 -0.912007 0.402429 1.268882 -0.259135 0.687557 -0.610324 -0.148325 0.439895 -0.650804 0.826885 -0.950861 -0.674016 -0.475735 -0.552225 0.651722 -0.867237 0.020436 1.312876 -0.683407 0.609011 0.777393 -0.912932 -0.473799 0.623264 -0.787246 1.154308 -0.191556 0.018852 -0.104224 0.830547 -0.682971 -0.321172 -0.192792 0.415163 -0.574052 0.888622 -0.600387 0.069058 0.007000 -1.084448 -0.402637 0.343731 0.120940 0.148692 0.071594 -0.359055 -1.239495 0.115412 -0.282080 0.180632 0.978520 -0.150833 -1.036137 0.306123 -0.102570 -0.785745 -0.253199 0.204089 -0.165052 1.265651 -1.004488 -0.210263 0.486439 0.242354 -1.022591 -0.823383 -0.685028 -0.864990 -0.288804 0.779431 -0.777968 -0.614824 -0.716393 0.142420 -0.278905 -0.520241 0.406628 1.404793 1.033334 -0.717395 0.534966 0.174643 0.970816 0.289898 -0.369747 0.223620 0.576993 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.650169 0.102579 0.119006 -0.361802 1.368611 -0.018761 -0.079082 0.876507 0.366171 0.361192 -1.089437 -0.522150 -0.279894 -0.618448 0.179865 -0.033090 0.127042 0.376790 -0.698232 -0.438789 0.574675 0.369014 -0.059539 -0.635002 0.058848 0.024225 -0.611078 -0.047438 0.076992 0.092412 -0.715088 0.236442 1.030579 0.011561 0.793258 0.562877 0.919840 0.997006 -0.364664 0.787778 0.407394 0.732008 -0.399331 -1.081096 0.403430 -0.911795 -0.433126 -0.209863 0.342838 -0.641684 1.097265 0.495729 0.165507 0.007492 -0.092857 0.289913 0.307745 0.362286 0.836825 0.616497 -1.070199 0.222821 -0.712728 0.738637 -0.508641 1.509550 -0.026733 -1.157857 -0.880231 0.310837 0.794802 -1.045501 -0.902526 0.045334 -0.098477 -0.176384 0.651519 -0.033174 1.026942 -0.266475 -0.876428 0.224486 -0.385527 0.577547 -0.288215 -0.288804 -0.553065 -0.190699 0.320868 -0.618283 -0.567977 0.804852 -0.683415 0.765301 -0.861138 -0.652556 -0.314633 0.309157 -0.375545 -0.564964 0.315922 0.512134 0.061767 0.102068 0.041416 -0.405186 0.824342 0.601514 -0.153326 0.117769 0.203104 0.178279 0.225309 0.345083 0.073516 0.276122 -0.854117 0.300327 -0.382496 0.189028 -0.090853 0.141897 0.474143 -0.181750 0.388827 -0.591925 0.711185 0.240494 -0.771738 -0.287197 0.400599 -0.566048 -1.021930 -0.090673 0.534021 0.443729 -0.224900 -0.185836 0.192264 -0.434049 -0.644458 -0.532578 -0.474680 -0.254770 -0.557472 -0.328502 -0.241976 -0.359053 -0.381705 0.608322 0.227266 0.228386 0.884683 0.512519 -0.354684 -0.493040 -0.809981 0.433864 1.149731 -0.044896 -0.928925 0.185176 -0.504966 0.522297 0.645834 0.138250 0.003910 0.806174 0.134536 0.326259 -0.483574 -0.285596 0.928045 0.768332 0.662683 -0.795859 -0.034940 -0.673538 -0.257291 1.430110 0.671782 -1.229944 -0.030495 0.613385 0.245233 -0.271512 0.140221 -0.423651 -0.299789 -0.613651 0.244497 0.369234 -0.936981 -0.612517 0.533083 -0.870736 0.951152 0.102395 0.019175 0.027584 -1.208715 -0.192051 1.470816 0.159711 -0.192074 -0.072551 -0.219856 -0.071027 -0.983263 0.257467 0.509789 -0.222118 -0.578731 -0.546873 0.263450 1.072912 -0.594631 0.228188 -0.184148 -0.191750 0.252164 -0.638955 0.752413 -1.002148 -0.608778 -0.575314 -0.260341 0.764858 -0.636737 -0.191531 1.058800 -0.517758 0.737010 1.107104 -0.330310 -0.552960 0.769804 -0.192825 0.730586 -0.164446 0.233009 -0.132973 0.789505 -0.683509 -0.265130 -0.221484 0.396175 -0.316984 0.841233 -0.605508 0.127892 0.075222 -0.845144 -0.129639 0.656753 0.220279 0.329256 -0.139023 -0.200773 -0.540292 -0.057402 -0.226585 0.014216 0.796476 -0.378575 -1.081706 -0.210211 -0.022823 -1.017900 -0.174306 0.332676 -0.094482 1.142792 -0.636424 0.112848 0.431271 -0.208417 -1.187508 -0.447097 -0.576451 -0.446568 -0.241443 0.385876 -0.601320 -0.587497 -0.433463 0.368035 -0.527470 -0.433127 -0.021361 0.805747 0.723746 -0.121019 0.551609 0.311205 0.786602 0.261945 -0.261269 0.157329 0.469506 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -3.550161 2.695374 3.350634 -1.439401 5.187422 1.200035 1.567419 3.390257 -4.384176 4.222479 -5.177125 -0.939772 -1.951561 -3.716875 -0.414411 -2.738437 0.545851 -1.008268 -1.050533 1.806139 2.002556 -2.863093 -0.310461 -2.303013 -0.671053 -3.688817 -1.733262 0.017492 5.058341 -1.047802 0.310591 -0.384286 6.570826 0.364045 5.722247 3.902092 0.877481 4.014416 0.333612 -2.778606 -1.834632 4.553775 -3.438274 -2.663799 -1.096505 -3.754278 -2.593922 -1.352319 1.315597 -1.585068 -2.560341 3.573215 -0.977244 1.324447 -2.228593 3.301603 3.356917 -0.737583 6.565625 0.890624 -2.265836 -0.875973 -3.828520 3.462396 -1.193473 1.474629 -1.929312 -2.712773 1.684789 -1.507667 -1.474136 -1.984519 -0.345101 4.258458 1.708671 -3.757952 1.782062 -1.579777 -6.389794 -5.276366 -3.435770 0.942674 0.956069 3.987588 -0.419770 -0.115686 1.885740 1.763142 -0.484367 -6.656825 0.125851 5.136663 -3.463047 -2.399673 -2.660792 3.890685 -0.554767 3.166076 -3.148399 -1.632498 1.374525 0.197781 0.568461 -6.531177 2.506130 -4.329174 0.603983 -0.170159 0.523875 3.037620 2.199688 2.801414 4.830663 5.048207 -4.615362 1.143876 -3.411179 1.185559 -1.792930 -0.186471 0.199799 2.013711 0.440264 1.357318 5.243426 -5.928347 1.142548 1.856921 -2.068204 -5.246684 -0.629760 -5.395755 -4.245915 -1.236290 1.729540 1.690657 0.900070 -3.825301 0.550880 -0.888527 -1.487247 -1.793116 1.286576 4.259802 -5.518907 -1.117028 -0.367464 0.298185 -2.270497 4.631185 2.808008 2.373134 5.389997 2.406855 -1.598882 1.289579 -4.036601 -0.080276 6.019551 0.560606 -4.806555 3.860122 -3.534201 -0.490532 2.077592 2.351988 3.649319 0.620856 -5.055061 -3.541719 2.296899 -0.502732 5.829442 1.623592 1.420548 -0.940709 6.900270 -1.999278 -4.538648 4.647768 3.314901 -4.364603 1.761676 1.267648 -3.222067 -0.577895 3.193816 -4.128977 -0.462437 -2.678438 -1.082613 1.547168 -2.158193 -0.216992 1.062990 -5.345246 6.844560 0.371087 2.036557 0.970483 -3.468316 -5.589186 4.861429 0.166022 -0.878167 -2.617890 -1.527377 -5.203168 -4.919776 1.001171 -0.365003 -2.196033 -2.430284 -4.917496 1.097257 2.091324 -0.621739 3.743364 -5.488140 -1.933364 1.695815 1.065316 3.522898 -1.046676 -3.066597 -1.184337 -1.836156 3.381001 -3.521311 5.495237 6.503808 -1.345362 5.235116 -1.492042 -3.390400 0.401297 2.069044 -5.352062 4.943719 -0.887575 2.822998 -0.212927 3.280618 -3.495098 -1.581934 0.371390 -1.237377 -1.078936 1.869125 -2.012751 0.273097 -1.172894 -4.720160 -1.515030 0.508505 -1.868701 -0.099208 0.498657 0.876950 -4.985934 -0.620224 -3.311687 0.457996 3.701395 -0.340638 -2.952452 1.680891 -0.828444 0.814285 0.733293 -0.112560 -0.257610 2.699080 -4.600049 -2.025079 0.048648 0.372678 -2.940091 -5.417607 -0.939493 -3.686059 -4.008849 4.019892 -3.994998 1.084137 -3.691961 -2.067922 -5.306755 -2.903012 2.034559 6.865658 1.700571 -4.389439 0.780164 -0.796537 4.619187 0.889471 1.431615 -0.234293 1.443312 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.585376 0.050093 -0.041222 -0.367711 1.440698 -0.021592 -0.022641 0.873286 0.475313 0.413814 -1.024355 -0.483514 -0.184242 -0.571041 0.200439 0.110893 0.123187 0.378249 -0.695785 -0.490322 0.496464 0.407555 -0.005110 -0.573955 0.036255 -0.189560 -0.535701 0.001861 -0.035982 0.244283 -0.713008 0.241926 0.929072 0.014244 0.643780 0.483694 0.901911 0.879146 -0.332684 0.894494 0.516883 0.575631 -0.325965 -0.989933 0.389681 -0.808430 -0.601373 -0.324188 0.300282 -0.811070 1.200484 0.478224 0.187876 -0.050078 -0.060707 0.287313 0.346333 0.207486 0.732758 0.609736 -1.034972 0.187040 -0.614618 0.809640 -0.449602 1.347190 0.047080 -1.223559 -0.947008 0.467862 0.858984 -0.863362 -0.866132 -0.040629 -0.017173 -0.159341 0.612667 -0.009223 1.136440 -0.304472 -0.750045 0.266406 -0.402497 0.582827 -0.212976 -0.258654 -0.550623 -0.257921 0.305225 -0.523787 -0.569793 0.781735 -0.588056 0.712122 -0.960473 -0.666257 -0.192860 0.196921 -0.303888 -0.634509 0.274317 0.477191 0.047020 0.266034 -0.108580 -0.351199 0.752688 0.705167 -0.068927 0.132821 0.050900 0.074093 0.098592 0.257017 0.068938 0.382567 -0.759524 0.384862 -0.267601 0.178595 -0.168262 0.044758 0.596148 -0.087550 0.317816 -0.524795 0.739484 0.254640 -0.759389 -0.163727 0.350881 -0.422844 -0.922511 -0.032868 0.480727 0.350456 -0.186082 -0.077898 0.241586 -0.430233 -0.600629 -0.435258 -0.520370 -0.240114 -0.559884 -0.256919 -0.197693 -0.313056 -0.357246 0.579755 0.228489 0.199144 0.827026 0.451894 -0.302940 -0.507689 -0.801328 0.495892 1.194764 0.086198 -0.808103 0.183561 -0.462040 0.526357 0.575746 0.123818 -0.098292 0.686590 0.173263 0.413981 -0.586469 -0.259463 0.914226 0.845923 0.602673 -0.918746 -0.141797 -0.718050 -0.100711 1.308152 0.842542 -1.129454 -0.123498 0.673012 0.062420 -0.257063 0.115865 -0.383998 -0.399168 -0.575680 0.321051 0.383684 -0.839113 -0.608343 0.497603 -0.770229 0.822838 0.103415 0.022349 0.013238 -1.039574 -0.013903 1.383677 0.132889 -0.125641 0.020717 -0.215728 -0.085103 -0.935854 0.193976 0.508900 -0.214585 -0.466420 -0.492585 0.158108 1.069535 -0.585931 0.166827 -0.199032 -0.046717 0.268419 -0.669194 0.603344 -1.052390 -0.526464 -0.541862 -0.243148 0.594736 -0.600022 -0.251550 0.866107 -0.482599 0.625150 1.055652 -0.212200 -0.517557 0.695411 -0.098938 0.696039 -0.145061 0.181603 -0.051982 0.756800 -0.556325 -0.189985 -0.313145 0.290505 -0.380188 0.885339 -0.691235 0.092235 0.260109 -0.735277 -0.252739 0.653216 0.310681 0.356570 -0.169917 -0.248459 -0.534896 -0.017501 -0.267587 0.081271 0.688232 -0.370760 -0.986792 -0.197199 0.122081 -1.040639 -0.354496 0.342052 -0.025755 1.117216 -0.587580 0.233030 0.454908 -0.095854 -1.192259 -0.436026 -0.430517 -0.445197 -0.358121 0.327456 -0.676540 -0.686952 -0.413708 0.415264 -0.537350 -0.433764 0.022108 0.769106 0.563439 -0.062378 0.535265 0.314408 0.616862 0.175562 -0.212218 0.231959 0.428356 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -1.131528 0.272892 0.737127 -0.513084 2.192138 0.003497 0.226371 1.775633 1.306402 0.459495 -2.030006 -1.509751 -0.379899 -0.525855 0.297661 -0.460382 0.031758 0.869964 -1.406185 -0.857476 1.107518 1.303819 -0.503458 -1.154419 0.188828 0.501438 -1.537779 -0.261091 -0.570248 0.482525 -1.048572 0.596644 1.949017 0.474266 2.029919 1.285608 1.620679 1.853030 -1.090898 3.128134 0.622471 1.384424 -0.834403 -1.891491 0.792191 -1.677882 -0.767186 -0.734654 0.204752 -1.357596 3.381292 0.826481 0.331848 0.486979 0.526448 0.079718 0.112945 0.939002 1.235062 1.386160 -2.406883 1.636248 -1.387678 1.205399 -0.425341 3.387858 0.294013 -2.463204 -1.692632 0.129752 2.913032 -2.442266 -1.876080 0.282588 -0.468451 0.003881 1.445325 -0.100765 1.971988 -0.415577 -1.717829 0.495371 -0.470814 0.908593 -0.678256 -0.807903 -1.922907 -0.426022 0.363851 -1.076027 -1.073378 1.728483 -1.390157 1.705234 -2.465931 -1.986772 -0.758277 1.223933 -0.631889 -1.190626 0.839781 1.115249 -0.067286 1.409715 -0.686717 -0.393804 1.579822 1.625085 -0.603301 0.044624 0.071645 0.634935 0.977598 0.681392 0.313962 1.353260 -1.080875 1.063154 -0.933490 0.378645 0.257062 0.195805 0.662242 -0.260362 0.532343 -0.562964 0.857785 0.494344 -1.899825 -0.324776 0.638719 -1.646800 -2.201664 -0.513885 0.866784 1.385000 -0.480454 -0.602335 -0.086958 -1.157502 -0.430322 -1.731053 -0.940658 -1.280547 -0.452990 -0.954379 -0.449609 -0.550907 -1.089206 1.542647 0.451649 0.441975 1.480890 0.794822 -0.463507 -2.508387 -1.337846 0.333515 1.842409 0.028570 -1.673920 0.312746 -0.507424 1.006102 1.326525 0.281424 -0.329334 1.263992 0.362803 0.669938 -1.819506 -0.629352 1.792126 2.239914 1.012608 -1.275569 -0.246119 -1.727624 -1.337076 2.716910 1.651963 -1.785976 -1.458223 0.631329 0.805855 -0.972825 0.400143 -0.727545 -0.892189 -0.771030 0.348807 0.243909 -1.398196 -0.993191 1.819386 -1.754409 1.677773 0.237352 0.370375 -0.390196 -2.503807 -0.799161 3.039456 0.214907 -0.555024 0.262125 0.000635 1.001345 -1.446309 0.551674 1.102651 0.270797 -1.318207 -0.812681 1.129062 1.795330 -1.326033 0.467557 1.256188 -1.137232 0.273483 -2.714048 1.455333 -3.004197 -1.284211 -1.794315 -0.133244 1.632469 -0.725458 -0.538481 2.481625 -0.561520 0.799395 3.365739 -0.452322 -1.769008 1.497257 -0.356788 1.155224 -0.739248 -0.390118 -0.303209 1.398606 -1.264471 -1.037478 -0.348927 1.520346 -0.653580 1.884786 -0.590168 0.650992 -0.434543 -2.019448 0.453873 1.261984 -0.002952 -0.068425 -0.273399 -0.212894 -1.596970 0.002851 -0.597708 -0.207537 1.624653 -0.476548 -2.003013 -0.321680 -0.631641 -2.046586 -0.169699 0.482273 -0.371916 2.169789 -1.002868 -0.077270 1.007956 -0.650644 -2.196757 -0.639390 -1.279663 -1.383423 -0.835263 0.211899 -0.391952 -1.136196 -0.946949 0.321595 -0.704295 -1.368609 0.308856 1.501203 1.794973 -0.457464 0.678668 0.571942 1.968845 0.813057 -0.667534 0.330991 1.161639 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -13.079259 8.198513 5.658643 -4.851182 16.655739 0.960434 7.939296 4.585371 -6.628421 13.290036 -18.760586 -9.085379 -8.312239 -14.923720 -0.844355 -10.732014 4.497802 -0.893545 -3.788421 4.725151 8.215824 -10.252522 -1.023155 -9.067176 -1.356354 -14.171563 -6.847565 0.204655 16.162002 -6.315339 -1.311243 1.189461 25.210952 3.266185 21.259397 14.685703 4.773825 17.475153 1.811401 -5.369386 -5.256792 16.607110 -11.185845 -12.980945 -2.102326 -12.492549 -8.621888 -6.247383 5.503567 -3.234876 0.853418 13.127452 -2.836235 5.055540 -11.574095 6.965064 13.990153 2.863726 23.530452 4.103893 -5.929054 0.251762 -12.082390 11.320863 -6.704238 4.300612 -3.581295 -10.326555 4.269955 -3.903039 -1.571919 -11.210873 -7.633031 12.736057 6.579782 -13.202777 6.839942 -4.235623 -19.337122 -18.406651 -15.355694 3.000215 1.535542 15.785651 -1.251004 -0.767582 1.163094 4.804697 0.219467 -22.422257 -0.524275 17.334786 -11.632416 -3.465509 -5.342780 14.615738 -1.669731 9.494942 -13.033463 -7.487084 4.033262 -1.092405 2.523079 -14.007245 3.002716 -15.326367 4.576708 -0.947279 -1.601252 8.368984 13.611991 8.234559 16.052286 15.985535 -16.153538 1.235352 -14.635124 5.010413 -3.219971 -1.330733 1.739851 7.512638 -1.501326 1.988875 17.459654 -21.891439 5.445585 7.182193 -7.127975 -17.832847 -1.944364 -17.578510 -15.531669 -4.661242 8.158283 6.263734 3.043720 -12.267683 0.632003 -3.300554 -4.103613 -4.902052 3.994746 15.967728 -15.653912 -3.518753 -2.238968 -2.814683 -9.275184 14.350720 8.004860 8.504420 19.382889 10.625870 -7.753691 6.059500 -15.383442 -0.094195 21.934311 4.626994 -18.313561 12.641103 -13.030563 -0.102882 8.863125 9.524210 12.795542 -1.824043 -15.493543 -7.775724 7.723034 -2.308127 20.405894 2.012091 6.336095 -4.664364 22.410058 -1.876194 -14.638562 20.587638 9.572320 -17.246299 5.739564 6.635900 -11.046862 -2.246307 11.424547 -13.379774 -0.710999 -13.243661 -0.025742 5.314330 -9.508352 -0.457829 3.208416 -19.294375 22.480453 1.428616 5.506348 5.217327 -15.925887 -17.714567 22.655128 -2.067744 -1.779132 -8.431924 -7.099850 -12.048030 -18.957836 3.689249 -2.001222 -8.672017 -7.575874 -17.267457 5.469755 12.718368 -3.036833 13.130416 -14.020736 -6.409993 6.353813 4.412339 10.797634 -4.978124 -11.485792 -0.822272 -2.167066 10.906108 -10.543901 16.483819 22.596478 -7.050293 12.948414 -3.684199 -8.538877 3.233796 8.283094 -18.265389 17.586298 -4.644620 11.182991 -1.253978 11.966015 -12.460142 -6.203554 2.083248 -0.290003 -5.502441 6.883678 -8.601983 1.067456 -0.149806 -14.340738 -6.869584 2.764502 -3.485717 0.244453 1.374757 1.842995 -14.527674 -0.889412 -10.046894 3.056847 13.700797 2.776927 -10.451610 5.121085 -1.339519 2.139931 4.881913 0.441757 -1.637958 12.235217 -16.310739 -7.294207 0.055467 0.785709 -8.867483 -23.845964 -1.133270 -14.128258 -11.272469 15.101869 -16.499970 2.742361 -13.084993 -4.658347 -19.486183 -5.593128 5.286458 23.685708 9.027658 -12.621878 3.629490 -1.739358 15.150473 0.543056 3.089088 2.558210 8.218179 +PE-benchmarks/matrix-chain-multiplication.cpp__main = -0.620444 0.069670 0.046421 -0.394526 1.566454 0.003802 -0.025752 0.997213 0.529061 0.488527 -1.044226 -0.510397 -0.155880 -0.505966 0.189323 0.043569 0.050211 0.420559 -0.766201 -0.514709 0.508294 0.538955 -0.020988 -0.538684 -0.025702 -0.165065 -0.623992 0.037722 -0.064613 0.217422 -0.714544 0.231649 1.002694 -0.042877 0.773783 0.535957 0.998778 0.882552 -0.411430 1.070918 0.550313 0.571899 -0.389749 -0.983903 0.370283 -0.840300 -0.700982 -0.323081 0.311728 -0.870422 1.338984 0.507072 0.185394 -0.007615 0.055612 0.372339 0.217021 0.185830 0.784130 0.624838 -1.206983 0.288314 -0.730892 0.983703 -0.427981 1.523316 -0.049295 -1.370404 -1.034610 0.457767 0.991699 -0.989802 -0.910993 0.055432 -0.027636 -0.181981 0.644828 -0.060074 1.263939 -0.322422 -0.776448 0.329912 -0.391468 0.557120 -0.218098 -0.247030 -0.642993 -0.211105 0.215671 -0.621687 -0.556532 0.912136 -0.695771 0.772339 -1.141703 -0.835777 -0.244766 0.273081 -0.297589 -0.679167 0.316941 0.519468 0.055768 0.274835 -0.045897 -0.364598 0.735738 0.787812 -0.042931 0.114806 -0.045605 0.120725 0.213312 0.353503 0.116874 0.456542 -0.773018 0.461720 -0.370332 0.210590 -0.193240 0.087684 0.622312 0.002120 0.396968 -0.548800 0.727512 0.185361 -0.868113 -0.204870 0.339165 -0.484473 -0.974216 -0.063671 0.484082 0.387695 -0.228902 -0.150432 0.251942 -0.447393 -0.596121 -0.550335 -0.486408 -0.409212 -0.548067 -0.272198 -0.192657 -0.290735 -0.401545 0.717593 0.347316 0.268607 0.921217 0.489345 -0.234498 -0.659491 -0.891242 0.459362 1.179698 0.049372 -0.867187 0.275535 -0.553349 0.500243 0.609674 0.196019 -0.135502 0.793369 0.175771 0.392723 -0.666302 -0.196545 1.018336 0.953881 0.571736 -0.906563 -0.216905 -0.893635 -0.192053 1.395569 0.939387 -1.202762 -0.239744 0.631532 0.163476 -0.346557 0.200875 -0.492434 -0.480247 -0.542789 0.291027 0.419698 -0.821638 -0.609823 0.665318 -0.826629 0.908988 0.066303 -0.036681 0.009761 -1.143119 -0.112345 1.459637 0.157541 -0.160050 0.026923 -0.214416 0.022794 -0.952386 0.200450 0.602762 -0.156037 -0.536149 -0.536720 0.224349 1.074769 -0.580855 0.256689 -0.144570 -0.144994 0.300811 -0.847328 0.673784 -1.194206 -0.507871 -0.705671 -0.257914 0.631475 -0.650115 -0.257686 0.986187 -0.476467 0.688255 1.184362 -0.340326 -0.652466 0.717897 -0.169164 0.780717 -0.123393 0.063117 -0.048258 0.751722 -0.586296 -0.208086 -0.330611 0.367887 -0.375623 0.933562 -0.652724 0.088951 0.145005 -0.868408 -0.196995 0.631739 0.322319 0.242368 -0.140080 -0.256590 -0.640080 -0.077025 -0.352933 0.053008 0.726602 -0.432290 -1.030995 -0.094848 0.042088 -1.136795 -0.351375 0.319825 0.009313 1.159977 -0.645417 0.190237 0.505719 -0.092798 -1.342363 -0.431085 -0.540999 -0.536181 -0.404063 0.214829 -0.629290 -0.768689 -0.460551 0.380693 -0.518407 -0.583275 0.142449 0.883798 0.663105 -0.137686 0.549568 0.284082 0.722284 0.245865 -0.244827 0.264289 0.449900 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.825372 0.256482 0.140123 -0.439724 1.930710 0.004120 0.096833 1.237756 0.220201 0.635194 -1.340601 -0.519754 -0.350648 -0.978270 0.270470 -0.036103 0.236024 0.480719 -0.746128 -0.429079 0.712778 0.249402 -0.020955 -0.743903 0.048034 -0.494877 -0.617407 -0.019782 0.170622 0.416368 -0.691331 0.357730 1.336081 0.160247 0.950414 0.745903 1.064720 1.236109 -0.279784 0.949067 0.407041 0.836751 -0.499712 -1.426175 0.573188 -1.085042 -0.804748 -0.502074 0.370819 -1.140325 1.179647 0.761663 0.154608 0.020840 -0.214965 0.322147 0.648989 0.213333 1.075416 0.798841 -1.285884 -0.065520 -0.820926 0.863576 -0.516486 1.480124 0.135566 -1.568389 -0.941939 0.503603 0.875438 -1.007248 -0.977294 0.138518 0.087373 -0.323747 0.786328 -0.014300 0.721356 -0.493572 -1.069197 0.301972 -0.465621 0.959535 -0.228857 -0.311884 -0.527476 -0.302740 0.375170 -0.915837 -0.610647 1.172573 -0.738331 0.787278 -1.311663 -0.497024 -0.184951 0.360109 -0.514017 -0.822167 0.412516 0.559975 0.114923 0.060971 -0.389613 -0.711543 0.969696 0.696890 -0.053839 0.389223 0.201764 0.133140 0.220788 0.510194 -0.325851 0.614321 -1.041674 0.592750 -0.335124 0.231656 -0.218289 0.091239 0.699843 -0.113635 0.532130 -0.920268 0.912695 0.475373 -0.879512 -0.495284 0.425013 -0.746848 -1.189889 -0.124288 0.739760 0.389707 -0.195500 -0.208101 0.234743 -0.525459 -0.810676 -0.700021 -0.668152 0.158804 -1.016085 -0.297094 -0.313009 -0.456299 -0.509794 0.751414 0.343582 0.420598 1.144876 0.688702 -0.477146 -0.296396 -1.118490 0.602570 1.769144 0.425012 -1.147364 0.352179 -0.606883 0.615486 0.729692 0.157357 0.124877 0.811525 -0.076297 0.303169 -0.516669 -0.291171 1.286315 1.228285 0.840348 -1.271781 0.169919 -0.825844 -0.320294 1.729418 1.075777 -1.481634 0.035727 0.876319 -0.258024 -0.256321 0.193974 -0.635397 -0.471472 -0.813017 0.354826 0.555958 -1.201347 -0.781656 0.563214 -1.133124 1.191958 0.175140 0.314338 0.050824 -1.346832 -0.282627 1.868567 0.169266 -0.189778 -0.130039 -0.388576 -0.420949 -1.246667 0.298280 0.580056 -0.376682 -0.682258 -0.793732 0.075236 1.415676 -0.638790 0.306042 -0.512246 -0.051324 0.394562 -0.701752 0.811037 -1.473186 -0.778108 -0.604091 -0.333004 0.844166 -0.691653 -0.046296 1.227141 -0.674966 0.922388 1.123215 -0.250510 -0.455932 0.871046 -0.308398 0.987371 -0.239997 0.643142 -0.035864 1.076030 -0.799796 -0.245692 -0.323028 0.246799 -0.489802 1.204527 -0.911923 0.102845 0.469261 -1.031233 -0.472425 0.745158 0.311128 0.513061 -0.201829 -0.270104 -0.776851 -0.025862 -0.394554 0.187897 1.000746 -0.490174 -1.254723 -0.229283 0.126925 -1.124562 -0.503553 0.499041 -0.011700 1.410518 -0.900460 0.239783 0.472538 -0.147889 -1.479468 -0.820868 -0.379295 -0.689855 -0.660761 0.616419 -1.138103 -0.627467 -0.644519 0.431640 -1.003816 -0.533319 -0.037233 1.174253 0.577588 -0.119531 0.721388 0.387164 0.825710 0.136342 -0.090899 0.273345 0.704117 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -1.346803 1.278372 0.516623 -1.300362 2.755201 -0.077318 0.309484 0.929720 0.799736 0.781591 -2.803784 -0.945661 -0.338954 -1.968288 0.406040 -0.488219 0.138490 1.107640 -0.915239 -0.115073 1.148143 -0.160324 0.072676 -1.774630 0.045434 -0.890979 -1.013346 -0.084850 -0.396181 0.894496 -0.334900 0.527726 1.847733 0.666304 1.233201 1.359347 0.827589 2.616161 -0.162743 2.052777 1.022409 1.171657 -0.509773 -2.904424 1.220222 -1.640628 -1.092903 -1.683057 0.305522 -2.399565 2.329970 1.230332 0.460427 -0.640369 -1.198730 0.004552 1.919791 0.918820 1.599917 1.420496 -1.600534 0.697192 -1.200947 0.069532 -1.152482 2.254287 1.129714 -2.334409 -1.188565 1.383696 1.983275 -1.486721 -2.172213 -0.435782 0.020033 -0.536662 1.039913 -0.256972 -0.252588 -0.463238 -1.205282 0.584223 -0.440066 1.672412 -0.232166 -0.470448 -1.148609 -0.563522 1.040860 -0.962615 -1.597939 1.737007 -0.344591 1.158112 -1.300865 0.161555 0.334979 -0.146892 -0.873054 -0.949110 0.788909 0.985402 0.162636 1.002289 -1.978092 -1.610810 2.092932 1.811233 -1.004607 0.318332 0.484188 0.565932 0.139961 0.263048 -1.050165 1.420356 -2.110248 0.554951 -0.114145 0.172451 -0.193916 -0.224468 0.384600 -0.380922 0.330906 -1.202067 2.244146 1.162452 -1.449357 -0.702835 0.984325 -0.618297 -1.743069 -0.057441 0.920842 0.884409 -0.089454 0.318478 -0.276895 -1.212606 -0.691084 -1.453211 -1.028127 1.391314 -1.053603 -0.260176 -0.433858 -0.837666 -0.794295 0.677411 0.222993 0.072916 1.916370 0.977782 -0.678026 -0.862818 -1.395350 0.958472 3.225234 1.221840 -1.733680 0.335059 0.038646 0.988632 0.962094 -0.100221 -0.029635 1.083787 -0.756832 -0.233615 -1.323015 -1.448459 1.711698 2.195702 1.318939 -2.490572 1.274023 -0.413627 -0.101874 2.960614 1.648387 -1.870599 -0.374386 2.099793 -1.264091 -0.834720 0.254933 -0.223203 -0.602983 -0.782282 0.564415 0.252158 -1.902940 -2.173300 -0.199508 -1.869958 1.752756 0.481102 0.693021 -0.497016 -1.816943 -0.684887 3.088716 0.149323 -0.551751 0.211131 -0.356546 -0.272784 -2.235509 0.459732 1.381233 -0.983656 -1.096684 -0.975053 0.424172 2.073274 -1.901025 -0.204384 0.320412 -0.570692 0.654663 -0.889700 0.958684 -2.658162 -1.230232 -0.508407 0.036808 1.202552 -0.221309 0.227914 2.154083 -0.969082 0.990166 2.446952 0.353959 -0.189315 2.104996 -0.088354 1.592530 -0.949138 1.575604 0.040033 1.790174 -0.887947 -0.470679 -0.240675 0.007951 -0.683343 2.095305 -1.878153 0.160823 1.183016 -1.163629 -0.652537 1.907937 0.921924 1.092468 -0.612161 0.125300 -0.864505 0.158866 -0.159046 0.139900 1.509861 -0.354932 -2.334025 -0.938727 1.061160 -1.648549 -1.032178 0.932080 0.100329 2.345646 -1.341169 1.392420 0.485057 -0.734274 -2.477201 -1.068405 0.338844 -1.402632 -1.106466 0.960810 -2.039545 -1.064613 -0.941570 1.255265 -1.327862 -0.431125 -0.338212 1.469646 1.027794 0.091182 1.029521 0.424292 1.258149 0.170330 -0.389525 0.314901 1.719988 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -3.257341 0.712561 1.571267 -2.216868 6.448902 -0.136692 1.074739 3.651624 -0.972004 3.263122 -5.800828 -1.379312 -1.851557 -4.742445 0.100458 -1.859550 1.954604 -0.144717 -1.872799 0.756248 2.066392 -0.604520 0.330867 -2.806611 -0.552073 -3.295654 -2.020954 0.314269 2.384318 -0.643414 -0.254781 0.534744 7.050950 1.354005 5.704328 3.506217 2.233416 4.860434 0.618058 -0.160790 0.309892 3.784789 -2.277636 -4.276968 -0.414259 -3.611339 -3.403459 -2.147500 1.315209 -2.747321 0.568893 3.236984 0.306647 0.911302 -3.297965 1.269566 3.384783 -0.418091 5.624337 1.840198 -4.063835 -0.321279 -2.925213 2.413896 -2.056762 2.300463 -0.332226 -2.823284 -0.295241 0.934970 0.993120 -3.660538 -2.951092 1.588677 1.534710 -3.024824 2.629474 -0.561018 -0.805394 -4.560941 -2.761499 1.535436 -0.454148 3.972837 -0.339984 -0.217376 -0.053938 0.050670 0.540147 -5.119500 -1.018933 3.895239 -3.543192 -1.030432 -3.086181 3.303454 -1.051986 1.697535 -2.622661 -3.192513 1.275533 0.289276 0.319807 -2.312995 -0.002967 -3.766490 2.101810 0.998117 -0.320620 2.254275 1.984828 2.120527 3.538857 3.308008 -3.433952 1.910734 -4.731351 1.746500 -1.991930 -0.414074 -1.229351 1.265010 1.551162 1.536518 3.655743 -5.129263 3.080943 2.933608 -2.443115 -3.385665 0.379616 -3.557864 -4.705593 -0.036818 2.309667 1.475970 1.082232 -2.406435 0.954190 -1.503672 -1.466345 -1.607811 -0.132338 2.932615 -4.077086 -1.063582 -0.258485 -0.460870 -2.225100 3.698242 1.959530 1.404269 5.388444 1.615480 -2.680806 0.648928 -4.792230 0.885498 7.256872 0.320950 -4.368324 3.117517 -2.981208 0.846733 2.284646 2.293640 2.521752 -0.980335 -3.363278 -1.125122 1.577448 -0.842906 5.482830 1.753325 2.398258 -3.616257 3.973630 -2.061308 -1.107673 5.801403 3.261393 -5.584553 0.984704 3.097639 -1.833949 -0.573370 2.076065 -2.853394 -1.231776 -3.689698 0.869178 1.577671 -3.023925 -1.363367 0.668571 -4.688816 5.120099 0.476738 0.617949 0.292825 -3.719816 -2.964407 7.139454 -0.239031 -0.052038 -0.859150 -2.077884 -2.011262 -6.184713 0.487252 0.390304 -2.246727 -0.299722 -4.018043 1.205372 3.770250 -1.895065 2.613747 -4.149412 -0.737824 2.162475 -0.212361 2.032214 -3.229614 -2.945299 -0.951169 -1.383491 2.825599 -4.119666 2.801181 5.276029 -1.702803 4.617524 0.422290 -1.445709 -0.037166 2.576519 -3.928359 5.230947 -1.280202 4.452888 0.166632 3.662161 -2.748566 -1.485639 -1.155774 -0.851881 -2.021023 2.959985 -4.074971 0.181286 1.460379 -2.803590 -2.649167 1.810993 0.285816 0.160094 -0.266519 0.178762 -4.042382 -0.225374 -3.102507 2.022568 3.344335 -1.022681 -4.486340 0.706044 2.196997 -1.618810 -0.290077 0.307875 0.159167 4.366086 -4.215317 -0.593369 1.148368 1.086865 -3.591528 -5.863130 0.803681 -3.448092 -2.536532 2.794676 -4.767102 -1.977745 -2.958225 0.204808 -4.723426 -1.409709 1.571085 5.972935 2.166484 -2.854238 0.552489 0.095802 2.682902 -0.060627 1.086150 1.061615 1.996584 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -8.586700 14.610212 9.191467 -9.171128 12.548281 -2.977681 5.960255 4.721546 -1.041328 3.708142 -18.241837 -0.755530 -1.407624 -14.787216 2.379194 -8.658075 0.422101 8.896300 -0.683690 6.481274 7.988253 -5.884394 -2.036807 -13.093892 0.068515 -9.453407 -3.176374 -1.744208 -2.156380 6.655122 6.562233 4.325870 12.033202 7.232859 10.045047 12.211212 0.166667 18.045150 3.103000 10.513755 2.529352 8.033935 -2.691424 -19.604335 7.057904 -7.627131 -3.675468 -13.104501 -0.538254 -15.509486 9.668703 8.055685 2.364022 -3.340659 -11.293203 -1.674742 16.214865 5.560587 9.111410 8.972857 -6.092506 5.120394 -6.385127 -4.706673 -6.611016 7.109386 11.254995 -9.509903 1.669081 6.675283 11.114314 -6.798358 -10.456791 -2.050064 -0.322697 -4.993876 5.362138 -2.803028 -18.333691 -2.894721 -4.871075 2.754099 1.132881 11.874511 -1.291000 -2.694793 -7.735137 -2.276290 7.023356 -5.816047 -10.115681 11.361474 0.334661 2.276279 -6.960356 10.823749 7.317192 -0.941224 -4.911976 -5.069640 6.686302 4.142405 1.385280 4.941756 -18.881924 -11.718744 10.761954 8.725288 -10.355696 7.086055 0.829641 9.131151 2.963769 1.351733 -10.806372 12.114708 -15.429226 3.857550 -0.445753 0.433471 2.272228 -2.988516 -1.566975 -1.414164 0.797932 -7.346624 13.732324 10.006263 -4.763765 -7.363897 6.697025 -4.879657 -9.334369 -3.688344 5.433997 7.970173 0.913477 1.969712 -4.982714 -6.975810 0.966719 -15.859407 -4.717444 17.368802 -8.166760 -1.152057 -3.233095 -3.918134 -5.720259 1.520425 -0.248980 -0.670772 11.171655 6.145648 -3.262723 -1.568815 -6.627931 1.469332 19.936597 13.184757 -9.672011 2.881897 4.365172 2.208254 4.644909 -1.063286 1.664616 4.255006 -13.607628 -10.398236 -5.036625 -13.391437 9.314711 13.868874 5.122678 -15.688938 18.045278 2.065072 -5.679847 17.970979 8.492916 -8.124680 -2.535285 12.419668 -12.961265 -7.702009 1.902302 -0.297300 -2.609480 -1.389561 1.842232 -2.179784 -10.458821 -14.419129 -5.394683 -12.430281 9.763732 3.596922 7.953450 -6.515212 -8.176213 -10.057337 18.576186 0.528172 -5.538022 0.286262 -1.259171 -2.746081 -13.509312 3.339619 7.077482 -6.154807 -7.976691 -5.899585 3.258590 9.448316 -14.156545 -3.367492 2.735061 -8.878299 3.946531 -2.235236 3.293713 -19.683973 -8.539556 -1.347901 4.836286 7.484459 3.994877 8.003220 18.024941 -4.295439 3.808676 14.509849 3.113243 3.332502 15.920713 -3.962771 9.507724 -8.934911 13.920471 1.562530 9.636017 -6.736931 -6.080463 1.318754 -1.644746 -3.513927 11.105637 -9.972719 2.402791 6.010288 -6.515830 -1.836041 12.541399 4.371261 5.501281 -3.866217 5.629991 -5.179557 1.349022 -2.845796 -0.936436 10.197462 0.457219 -14.073812 -5.632095 7.546533 -5.630225 -5.501953 4.575909 1.561586 11.766723 -8.312515 10.508952 -0.070705 -7.112099 -12.752005 -10.450753 9.085105 -11.965563 -10.871286 5.130400 -13.291505 -2.580964 -6.250729 7.354467 -13.440453 -2.902391 -2.105988 8.240247 4.111996 0.791004 4.637432 -0.363645 9.776354 1.219776 0.560612 -1.112342 14.671635 +PE-benchmarks/subset-sum.cpp__main = -0.730668 0.096276 -0.042089 -0.305075 1.757323 0.020058 0.026890 1.189304 0.028418 0.645951 -1.040448 -0.392776 -0.381854 -0.917165 0.239809 0.120154 0.281474 0.365881 -0.641030 -0.404430 0.631149 0.140309 0.042457 -0.547880 0.037187 -0.505808 -0.453181 0.016766 0.347256 0.319336 -0.719933 0.292877 1.195689 0.081946 0.789063 0.590691 0.995646 1.014481 -0.186660 0.528825 0.250168 0.761340 -0.472259 -1.202647 0.506602 -0.960447 -0.735966 -0.339293 0.415230 -0.924991 0.821815 0.701796 0.078428 0.053368 -0.192506 0.344320 0.561986 0.078800 1.012909 0.637129 -1.072681 -0.355799 -0.705962 0.871758 -0.450976 1.141022 0.019348 -1.354430 -0.808960 0.386501 0.520397 -0.804002 -0.735720 0.220787 0.156026 -0.334841 0.680465 0.023684 0.705101 -0.537566 -1.025406 0.210015 -0.504632 0.885335 -0.198276 -0.227928 -0.299136 -0.241486 0.285409 -0.910391 -0.400558 0.998682 -0.698878 0.666724 -1.120772 -0.381916 -0.225764 0.336892 -0.501390 -0.712501 0.302339 0.443081 0.149849 -0.173712 -0.137968 -0.618304 0.784140 0.407982 0.144202 0.400131 0.290590 -0.008354 0.149390 0.545959 -0.316528 0.400810 -0.885726 0.521886 -0.262642 0.243227 -0.263327 0.157259 0.732670 -0.123249 0.574150 -0.947643 0.729276 0.375494 -0.674067 -0.506511 0.334840 -0.671266 -0.989600 -0.099042 0.724353 0.182417 -0.196471 -0.253618 0.329103 -0.351253 -0.922262 -0.440533 -0.585470 0.186940 -1.058439 -0.219401 -0.303282 -0.445304 -0.379742 0.650249 0.336183 0.484545 1.002726 0.661965 -0.471733 0.015791 -1.050809 0.593073 1.573394 0.370595 -1.028491 0.348132 -0.680186 0.535094 0.649696 0.180232 0.249358 0.694149 0.002096 0.351551 -0.240491 -0.070247 1.172953 0.957751 0.795987 -1.088708 0.066505 -0.701504 -0.227801 1.473012 0.886565 -1.379476 0.269861 0.710351 -0.245390 -0.062234 0.145970 -0.637968 -0.374977 -0.837002 0.340496 0.640718 -1.097396 -0.587365 0.499786 -0.976735 1.076338 0.114417 0.274477 0.210419 -1.193836 -0.109767 1.563347 0.170785 -0.120923 -0.242857 -0.455563 -0.606477 -1.085459 0.273245 0.385835 -0.365680 -0.564177 -0.779491 -0.094651 1.299004 -0.344527 0.337493 -0.814847 0.147376 0.371462 -0.455455 0.729219 -1.134770 -0.660787 -0.443167 -0.390880 0.732444 -0.706997 -0.031223 0.968797 -0.678192 0.876613 0.723250 -0.211730 -0.312179 0.634266 -0.341366 0.886730 -0.107745 0.657746 -0.052514 0.943762 -0.708864 -0.102593 -0.306883 0.189465 -0.416228 0.996708 -0.793802 0.018133 0.488717 -0.909775 -0.553645 0.506909 0.250943 0.522689 -0.112850 -0.352669 -0.666892 -0.049091 -0.366015 0.232705 0.881602 -0.477059 -1.018410 -0.131756 0.052701 -0.897855 -0.439358 0.451904 0.001555 1.202434 -0.839701 0.103314 0.384950 -0.025380 -1.207667 -0.791153 -0.382639 -0.481756 -0.554198 0.696756 -1.108588 -0.468347 -0.577927 0.331818 -0.977029 -0.378545 -0.095883 1.089087 0.404990 -0.103793 0.701464 0.368335 0.652323 0.048348 -0.014886 0.266766 0.548826 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -6.222306 6.743422 8.654364 -3.041867 10.070961 2.246655 5.550122 5.376435 -8.022921 7.456452 -9.909040 -0.772742 -3.006885 -6.562779 -0.602514 -7.850834 0.554694 -1.924071 -1.228281 3.397755 3.371255 -5.240888 -0.573522 -4.466659 -1.402366 -9.238168 -2.835725 -0.023706 9.494013 0.281447 2.347850 -0.719686 10.933873 0.564650 10.440474 7.142264 1.874146 6.756256 0.086181 -3.707537 -2.797430 7.289447 -5.896336 -6.079195 -2.411559 -6.286526 -5.445761 -3.266291 2.096853 -4.828422 -5.859736 6.435239 -1.564686 2.158432 -3.956168 6.064095 6.630791 -1.230787 11.167473 1.663722 -4.635782 -2.677466 -6.926564 5.022436 -1.104067 2.168173 -3.649462 -5.458950 3.036092 -1.536863 -5.301747 -2.448967 0.628948 7.316855 3.811390 -6.812057 2.993353 -3.086805 -13.967980 -8.011459 -4.394573 2.091253 2.906777 7.545928 0.187649 -0.143660 3.197075 2.690860 -0.712294 -11.885374 -0.339365 10.780271 -5.824700 -5.030762 -4.003056 7.435578 0.511971 5.357883 -4.605458 -3.650845 2.565460 0.816498 0.752196 -12.758269 1.043145 -9.887232 0.652157 0.281237 0.152660 6.149214 1.863773 5.168936 7.780379 8.836031 -10.237369 4.450777 -6.793020 3.073545 -3.915923 -0.227385 -0.263308 2.946690 -0.027542 3.946330 8.772767 -10.555173 2.849001 3.935580 -3.066989 -9.976934 -1.142821 -9.569130 -7.332078 -1.607993 2.556903 3.172008 2.000248 -6.484010 0.336641 -2.125982 -0.645313 -4.280448 2.623506 8.764102 -10.684955 -1.669423 -0.283158 1.259687 -4.973134 8.266010 5.243482 3.884504 9.918428 4.685995 -2.342623 4.950797 -7.229600 -0.302580 11.079825 2.156753 -8.128438 6.956439 -7.167987 -1.153125 3.547627 3.307381 5.946281 2.455994 -11.277174 -6.841456 5.327537 -1.621106 10.347889 4.205758 2.559964 -3.898988 13.458538 -5.780946 -8.053582 7.739305 7.164488 -9.465101 3.743887 3.098526 -7.937209 -1.192405 5.993009 -8.347814 -0.870081 -4.874281 -2.402625 2.731344 -3.948292 -1.177330 1.356667 -9.521455 12.083773 1.071261 4.920828 1.114982 -4.720258 -10.571907 9.774833 0.476389 -1.463384 -4.369285 -2.325997 -10.060106 -8.820198 1.204426 0.230183 -5.030061 -4.800780 -8.808282 1.847890 3.381788 -2.002378 7.154947 -8.607135 -3.418836 3.171607 2.958905 5.865851 -2.722781 -5.516242 -3.154055 -3.352114 5.635600 -6.128133 10.608767 11.539158 -1.980124 10.634743 -4.370521 -7.620244 1.222831 3.935907 -9.157059 8.948254 -1.488905 7.529958 0.260709 6.195199 -6.799153 -2.810481 0.368758 -4.800515 -2.018570 4.560893 -4.644210 0.539370 -0.642763 -8.521263 -3.195694 1.484900 -2.233592 -0.330197 0.255296 3.068167 -9.164143 -1.453395 -7.501694 0.888017 6.362321 -1.569647 -6.494440 2.487436 -0.438928 0.660108 -1.651731 0.019325 0.195437 4.424814 -8.077985 -3.158150 0.172173 -0.099780 -6.872538 -11.115905 0.270385 -8.304338 -8.439583 5.198349 -7.689345 2.384887 -6.784945 -3.611290 -12.497612 -6.822241 4.218829 12.733088 1.934192 -6.488268 1.394237 -1.458207 7.911073 0.985837 3.985977 0.331978 2.831525 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.361300 -0.136729 -0.181668 -0.139354 0.770125 -0.222864 -0.123265 0.467592 0.526127 0.221171 -0.492502 -0.470173 -0.281748 -0.438800 0.174904 0.163724 0.240099 0.382010 -0.403683 -0.371525 0.361280 0.244074 0.030978 -0.298818 0.066084 -0.078402 -0.264627 0.020567 -0.143845 0.120468 -0.527330 0.314428 0.631578 0.101850 0.372316 0.294674 0.481168 0.670363 -0.077949 0.560831 0.308576 0.373198 -0.135465 -0.735159 0.389139 -0.430915 -0.241147 -0.250749 0.252857 -0.427909 0.867004 0.290975 0.122946 -0.005322 -0.171300 -0.002455 0.176130 0.362965 0.432362 0.408057 -0.528077 0.143154 -0.320273 0.344054 -0.423071 0.690204 0.077655 -0.763756 -0.595909 0.327759 0.546927 -0.493332 -0.576778 -0.135587 -0.038178 -0.058948 0.379950 0.151766 0.812716 -0.095165 -0.668656 0.102371 -0.346890 0.391223 -0.178677 -0.159156 -0.387311 -0.218292 0.275638 -0.243419 -0.303485 0.323142 -0.311385 0.565571 -0.331626 -0.382786 -0.099644 0.005353 -0.170292 -0.359079 0.133809 0.144623 0.094696 0.463069 -0.171329 -0.067435 0.608180 0.328760 -0.017767 0.001390 0.286748 -0.059022 -0.053473 0.056766 0.105895 0.128437 -0.543447 0.279590 -0.072892 0.059966 -0.082590 0.062531 0.347120 -0.235205 0.139083 -0.368857 0.457107 0.164545 -0.338061 0.001947 0.285356 -0.117737 -0.495283 -0.097089 0.488480 0.124879 -0.170470 0.038109 0.159110 -0.202604 -0.398623 -0.062001 -0.463571 -0.108128 -0.216319 -0.106802 -0.215985 -0.410008 -0.126709 0.165822 0.005017 0.199474 0.428092 0.340861 -0.335595 -0.442669 -0.564954 0.342249 0.716683 -0.061733 -0.472578 0.061394 -0.142496 0.373812 0.375317 0.111638 0.016592 0.315713 0.373529 0.394397 -0.478488 -0.068873 0.507183 0.436984 0.449115 -0.551100 -0.285466 -0.226773 0.080874 0.852840 0.369287 -0.663336 -0.059859 0.475714 -0.064888 -0.172212 -0.022563 -0.119519 -0.123983 -0.482472 0.328612 0.341563 -0.671850 -0.337316 0.295554 -0.435994 0.360432 0.031573 0.003695 0.113076 -0.765871 0.169416 0.895182 0.094893 0.019451 -0.031886 -0.312465 -0.028434 -0.610318 0.151186 0.224167 -0.081928 -0.196417 -0.260824 0.001840 0.785497 -0.248462 0.036580 -0.023405 0.129420 0.196537 -0.379564 0.282445 -0.533016 -0.316658 -0.077238 -0.171115 0.342358 -0.238067 -0.308440 0.380527 -0.396541 0.241091 0.778077 0.058406 -0.195425 0.381621 -0.040017 0.390202 -0.154835 0.075028 -0.022915 0.435548 -0.288792 -0.073205 -0.155611 0.264962 -0.309204 0.498323 -0.437141 0.017833 0.289081 -0.393959 -0.200990 0.336775 0.290698 0.371340 -0.081980 -0.199486 -0.262543 0.069466 -0.039503 0.154221 0.436181 -0.086942 -0.545318 -0.107377 0.118710 -0.652683 -0.301980 0.271193 -0.060052 0.724059 -0.366204 0.164802 0.278495 -0.022945 -0.557154 -0.216399 -0.230805 -0.194950 -0.089649 0.297051 -0.495135 -0.410405 -0.182091 0.418973 -0.227366 0.018986 -0.182595 0.376673 0.346700 0.070037 0.407340 0.263560 0.226247 0.059313 -0.259646 0.134818 0.391416 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -5.213299 3.465887 1.590496 -2.178123 10.305208 -0.908165 3.763798 5.141966 -5.815289 5.213044 -7.500771 -0.396403 -2.129881 -7.743323 0.883235 -1.898383 3.120025 0.935310 -0.973831 2.276277 3.105431 -3.832472 -0.296355 -3.657191 -0.599343 -7.285472 -1.581720 0.702537 6.809890 -1.575848 -0.653619 1.635194 10.455840 0.517872 8.243043 6.065575 3.078989 5.806000 2.410440 -6.599360 -0.715635 5.508760 -3.834811 -6.192269 -0.732111 -4.266168 -5.400308 -2.677103 2.361317 -3.098206 -3.003829 5.521902 -0.789669 1.637204 -5.059088 3.747793 7.261714 -1.736325 8.863556 2.305881 -3.548822 -2.555261 -3.618365 5.862928 -2.542470 0.013420 -2.410592 -5.533746 1.159656 1.295767 -1.869076 -4.052277 -2.351665 4.110034 3.131820 -5.401846 3.336599 -0.644844 -4.708846 -8.861483 -5.658293 1.610674 -1.286473 7.193776 -0.015616 -0.194218 1.086979 0.488005 0.774599 -8.649855 -0.614506 6.769060 -5.018928 -2.222951 -2.852225 6.267012 1.437702 2.457542 -4.375288 -6.090928 1.823007 -1.332979 1.040991 -5.765204 3.087075 -5.398705 -0.305194 -0.790692 1.428702 7.493634 3.311350 3.752191 5.292104 5.481619 -6.496793 -0.237635 -6.720793 3.387976 -3.208602 -0.510964 -0.686081 2.007926 3.249351 2.190947 6.463172 -9.411615 3.458496 4.074665 -0.970484 -6.456495 0.131344 -5.815116 -5.824795 -1.669426 3.951686 1.201300 1.483493 -3.574994 1.643355 -0.703109 -3.066326 -1.640189 -0.486084 8.028945 -10.441261 -0.615126 -0.886087 -0.840354 -2.919171 4.842463 3.445508 3.823309 7.854604 4.408937 -4.267466 6.259762 -7.609815 1.595749 10.924398 2.434465 -6.593660 5.440820 -5.981052 -0.460333 3.539955 3.709935 4.664061 -0.927636 -6.901417 -3.354349 4.590376 -0.762906 8.451403 1.045391 2.588319 -5.540177 8.449585 -1.154789 -4.485022 9.316735 3.121906 -8.864909 5.140261 4.710591 -5.392457 -0.177192 3.446224 -7.124927 -2.297812 -6.014675 0.953440 3.309096 -5.309506 -1.058088 0.897568 -7.174746 7.839981 0.925044 0.304426 1.522478 -4.447402 -4.637889 10.582639 0.742924 0.183303 -3.415053 -3.890510 -5.569249 -8.361740 0.780757 -0.967256 -3.934533 -1.905468 -7.022232 -0.746082 6.394528 -1.494130 4.597225 -11.021214 0.553344 3.264378 3.676018 2.515635 -4.178595 -4.523446 0.334934 -2.152042 2.182181 -5.830863 6.333389 7.518588 -3.802495 5.628564 -2.347786 -4.165134 2.729892 3.001725 -7.049680 7.511300 -0.613144 8.838678 1.326055 5.371766 -5.902873 -1.874715 -0.896500 -2.113513 -3.962855 3.839781 -5.627336 -0.018530 3.131563 -3.754338 -6.413344 1.420666 0.298407 1.654901 -0.199757 -1.166775 -5.429691 -0.095853 -4.202787 2.579392 5.140622 -1.559980 -5.275539 1.978788 2.311013 -0.357796 -1.045651 0.932568 0.584179 5.353717 -6.960904 -0.630474 0.464555 2.757939 -5.035872 -10.757604 2.156601 -5.311897 -4.726255 5.718389 -9.239291 -0.632928 -4.935373 -0.576023 -9.899916 -2.180321 2.403170 9.999980 0.464873 -4.401821 2.443768 -0.551316 3.987798 -0.872094 3.356575 -0.057065 3.016270 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = -0.539875 0.032596 -0.304131 -0.214574 1.321806 0.090780 -0.089374 0.970186 -0.108724 0.605241 -0.664859 -0.172806 -0.196616 -0.652087 0.126201 0.372547 0.157285 0.223171 -0.442293 -0.267553 0.429113 0.023458 0.086577 -0.304380 -0.036537 -0.351132 -0.267888 0.070478 0.457337 0.050130 -0.677257 0.077816 0.862058 -0.057205 0.597778 0.381741 0.755062 0.609563 -0.029138 0.089214 0.091813 0.562446 -0.414867 -0.751200 0.300176 -0.710672 -0.552242 -0.165659 0.364846 -0.552464 0.622197 0.516987 -0.007362 0.039835 -0.126042 0.347308 0.367091 -0.095410 0.850060 0.346956 -0.734768 -0.392737 -0.506425 0.890618 -0.317244 0.720382 -0.078121 -0.938985 -0.535269 0.192338 0.307795 -0.631707 -0.448021 0.330018 0.124275 -0.336834 0.480509 -0.073153 0.750794 -0.614952 -0.739660 0.149507 -0.472485 0.630408 -0.140121 -0.085905 -0.239957 -0.057056 0.087489 -0.792760 -0.170440 0.666979 -0.582007 0.466581 -0.727154 -0.192431 -0.223415 0.288365 -0.396236 -0.455773 0.168464 0.331855 0.146160 -0.285609 0.333747 -0.411387 0.450388 0.155784 0.253118 0.315582 0.324653 -0.029347 0.204095 0.555405 -0.141498 0.079505 -0.606987 0.315245 -0.160916 0.245916 -0.230495 0.216284 0.654711 -0.074735 0.569683 -0.785922 0.455269 0.177699 -0.413202 -0.463986 0.181382 -0.522267 -0.669802 -0.051274 0.475683 0.027015 -0.164284 -0.308104 0.331518 -0.155754 -0.942276 -0.229156 -0.300019 0.145428 -0.896282 -0.120497 -0.194162 -0.283589 -0.210045 0.539844 0.356744 0.421481 0.789248 0.518230 -0.282143 0.166330 -0.791566 0.442327 1.105287 0.251487 -0.777434 0.340953 -0.677827 0.302679 0.503276 0.231914 0.277730 0.467790 -0.001972 0.252941 0.081204 0.099563 0.914996 0.458248 0.584678 -0.650112 0.053159 -0.408812 -0.187073 1.101956 0.527714 -1.055533 0.347120 0.389150 -0.025858 0.137904 0.152978 -0.525883 -0.274747 -0.617448 0.223697 0.541469 -0.718205 -0.374554 0.350462 -0.703987 0.897162 0.018181 0.095066 0.283232 -0.869662 0.200156 1.047704 0.179835 -0.119258 -0.255946 -0.348730 -0.549421 -0.754116 0.190130 0.209208 -0.288051 -0.374095 -0.651841 -0.133588 0.921495 -0.084057 0.289884 -0.935063 0.158565 0.292625 -0.258537 0.515031 -0.735063 -0.405983 -0.316656 -0.282565 0.517489 -0.626766 0.085294 0.724840 -0.529776 0.627312 0.435497 -0.037740 -0.171876 0.385331 -0.371118 0.704929 0.009007 0.434326 -0.066610 0.631135 -0.498843 0.017055 -0.259304 0.223242 -0.216323 0.608752 -0.513066 -0.060940 0.317365 -0.670805 -0.462686 0.235338 0.142631 0.361774 0.014590 -0.408859 -0.473154 -0.117045 -0.344527 0.141489 0.620099 -0.380753 -0.688430 0.027347 -0.050707 -0.510559 -0.172390 0.266599 0.046339 0.821251 -0.658439 -0.020570 0.248408 0.106240 -0.834309 -0.592561 -0.365607 -0.189074 -0.345679 0.596747 -0.850985 -0.338788 -0.456396 0.122026 -0.794669 -0.183264 -0.047117 0.886563 0.286504 -0.176238 0.521039 0.199452 0.509811 0.051394 0.032346 0.194505 0.313248 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = -0.447585 0.093334 0.008962 -0.154401 0.909995 0.134138 0.025318 0.733680 -0.254244 0.598684 -0.590283 -0.087409 -0.223314 -0.355224 -0.012492 0.261855 0.133661 -0.006677 -0.292150 -0.132077 0.287121 -0.131914 0.114682 -0.247072 -0.055838 -0.302995 -0.185982 0.036132 0.523291 0.027361 -0.491024 -0.059508 0.709523 -0.023296 0.579674 0.306151 0.328465 0.512490 0.071270 -0.160988 -0.018874 0.532499 -0.387234 -0.521377 0.100522 -0.611670 -0.304781 -0.231561 0.302339 -0.407390 0.342942 0.386851 -0.057291 0.071032 -0.175889 0.346188 0.329365 -0.065677 0.823109 0.145919 -0.509493 -0.239028 -0.392386 0.539326 -0.189394 0.409316 -0.202115 -0.615339 -0.204033 0.000709 0.063667 -0.453531 -0.090168 0.365891 0.047495 -0.350686 0.349924 -0.102121 0.350270 -0.680266 -0.538360 0.094035 -0.201610 0.473373 -0.128850 -0.044858 -0.206428 0.067873 0.030301 -0.723354 -0.064780 0.504797 -0.475158 0.142632 -0.222027 0.080763 -0.204215 0.288759 -0.301598 -0.223909 0.075729 0.225357 0.087687 -0.515381 0.481162 -0.344195 0.321541 0.069568 0.215645 0.168582 0.353409 0.104453 0.343964 0.538814 -0.207230 0.165758 -0.502007 0.199221 -0.099287 0.092023 -0.116146 0.263037 0.363534 -0.022016 0.582747 -0.697380 0.276631 0.140646 -0.274793 -0.477049 0.050952 -0.506319 -0.543842 -0.034080 0.296028 0.062060 -0.028289 -0.397725 0.213882 -0.187163 -0.623822 -0.074190 -0.062175 0.309896 -0.746206 -0.126592 -0.086443 -0.113698 -0.165819 0.514401 0.286216 0.295785 0.655943 0.383731 -0.221562 0.008120 -0.612635 0.244143 0.776323 0.048439 -0.598051 0.334012 -0.504111 0.155028 0.457609 0.217460 0.356691 0.241785 -0.157679 0.028705 0.273526 0.075711 0.756140 0.222738 0.508207 -0.326802 0.317570 -0.393240 -0.212283 0.716584 0.427298 -0.830238 0.262688 0.231537 -0.073265 0.178170 0.209291 -0.416218 -0.134181 -0.436485 0.005240 0.414285 -0.459576 -0.215937 0.217827 -0.602567 0.864607 0.002590 0.204652 0.259594 -0.611824 0.248573 0.719493 0.180879 -0.051841 -0.215384 -0.258714 -0.683670 -0.664684 0.109679 0.075945 -0.262120 -0.264680 -0.580222 -0.009497 0.465790 -0.014215 0.310614 -0.694236 0.053061 0.238626 -0.146377 0.406954 -0.332624 -0.343731 -0.209028 -0.342543 0.510643 -0.550719 0.366681 0.631569 -0.308109 0.632251 0.294360 0.074331 -0.044533 0.236511 -0.438689 0.583924 -0.086850 0.373658 -0.076531 0.472970 -0.396142 -0.024086 -0.187076 0.101413 -0.160370 0.411998 -0.406025 -0.040713 0.092812 -0.636704 -0.279944 0.114679 -0.023716 0.198997 0.058889 -0.139150 -0.547235 -0.127985 -0.499525 0.082994 0.458844 -0.259189 -0.603442 0.088057 -0.101851 -0.247180 -0.129048 0.089259 0.001073 0.499201 -0.541498 -0.187210 0.163376 0.080781 -0.548140 -0.474852 -0.261442 -0.185002 -0.393572 0.548365 -0.602652 -0.144561 -0.403663 -0.069436 -0.817265 -0.126219 0.003870 0.805099 0.219444 -0.288850 0.291674 0.089133 0.477017 0.095605 0.096256 0.051391 0.166915 +PE-benchmarks/palindrome-partitioning.cpp__main = -0.389988 -0.047815 -0.050524 -0.166347 0.851875 -0.062524 -0.113771 0.601737 0.531025 0.278591 -0.586278 -0.513557 -0.191349 -0.325429 0.136637 0.094900 0.102205 0.317245 -0.472764 -0.393950 0.361437 0.343737 -0.028277 -0.312048 0.037593 -0.014348 -0.401923 0.002037 -0.097128 0.120834 -0.542774 0.218024 0.658351 0.067726 0.525598 0.341635 0.581789 0.612105 -0.217329 0.787615 0.275463 0.417921 -0.245024 -0.673314 0.319458 -0.535731 -0.306475 -0.221792 0.209371 -0.453894 1.016906 0.307665 0.103533 0.061534 0.020297 0.078458 0.054979 0.323647 0.490568 0.419542 -0.698954 0.259238 -0.441215 0.509441 -0.317047 0.946817 0.009091 -0.866600 -0.652308 0.212198 0.690713 -0.627055 -0.572703 0.031266 -0.069292 -0.065818 0.442266 0.034293 0.889246 -0.146403 -0.642039 0.168787 -0.296667 0.366163 -0.186892 -0.187572 -0.484866 -0.151056 0.163806 -0.371804 -0.306765 0.468162 -0.436809 0.585580 -0.545862 -0.559222 -0.190527 0.211220 -0.166961 -0.368668 0.194108 0.285320 0.052260 0.406457 -0.058932 -0.131393 0.592021 0.436090 -0.031141 -0.017773 0.182208 0.018449 0.132771 0.212294 0.121055 0.225373 -0.458199 0.312552 -0.194731 0.121718 -0.062618 0.101349 0.360935 -0.139732 0.227407 -0.341121 0.389088 0.133313 -0.497311 -0.069170 0.236044 -0.340523 -0.625187 -0.098400 0.391435 0.243560 -0.187302 -0.109575 0.125154 -0.276960 -0.392842 -0.240140 -0.379240 -0.304073 -0.234445 -0.195080 -0.174185 -0.300097 -0.233982 0.392210 0.143317 0.221078 0.524767 0.333665 -0.236642 -0.624952 -0.563461 0.283336 0.714514 -0.092177 -0.551081 0.127503 -0.259850 0.359327 0.425426 0.137539 -0.031523 0.445146 0.296139 0.357973 -0.534598 -0.067392 0.616950 0.572561 0.429921 -0.482985 -0.235089 -0.444873 -0.148924 0.919110 0.490314 -0.710067 -0.218591 0.354174 0.083033 -0.190347 0.082763 -0.225846 -0.194131 -0.426139 0.225037 0.297444 -0.593714 -0.341357 0.473747 -0.531228 0.535767 0.038646 0.054745 0.065943 -0.831689 0.043539 0.970333 0.116752 -0.075528 -0.006596 -0.185356 0.058658 -0.569637 0.159848 0.313974 -0.042748 -0.305888 -0.315779 0.145594 0.740014 -0.294989 0.139484 0.060471 -0.054945 0.171859 -0.634338 0.412084 -0.696507 -0.352596 -0.359496 -0.182374 0.448424 -0.327355 -0.240721 0.592210 -0.324560 0.337204 0.907140 -0.065020 -0.403553 0.416503 -0.099612 0.447897 -0.156295 -0.088082 -0.057589 0.475180 -0.356855 -0.148493 -0.174017 0.340183 -0.249076 0.576731 -0.348277 0.074999 0.109443 -0.578914 -0.073848 0.349859 0.171758 0.221657 -0.068169 -0.196379 -0.432204 0.009515 -0.138214 0.063289 0.493771 -0.151844 -0.620196 -0.068410 -0.049093 -0.688534 -0.243488 0.227593 -0.081223 0.758449 -0.396377 0.052477 0.341311 -0.064635 -0.709603 -0.195599 -0.414057 -0.280556 -0.165498 0.202234 -0.381205 -0.430523 -0.271102 0.247837 -0.242456 -0.212819 -0.025635 0.514130 0.482793 -0.082146 0.355689 0.231564 0.436863 0.181366 -0.256675 0.156615 0.353536 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.703283 0.134346 -0.002587 -0.014258 1.096578 0.016417 0.121444 0.673661 -0.212289 0.682535 -0.882910 -0.608174 -0.493564 -0.782702 0.019272 -0.228099 0.535694 -0.003230 -0.371292 0.010877 0.382457 -0.312917 0.128921 -0.502854 -0.033081 -0.866928 -0.306842 -0.032271 0.831689 -0.048889 -0.298322 0.033700 1.493131 0.166365 1.046996 0.496436 0.376592 0.710913 0.175002 -0.553139 -0.159912 0.872429 -0.581451 -0.670972 -0.112043 -0.807600 -0.496853 -0.126303 0.340980 -0.301431 -0.355123 0.486490 -0.011144 0.403037 -0.411001 0.247652 0.861729 0.108806 1.176594 0.144854 -0.381635 -0.279894 -0.423513 0.659504 -0.403366 0.082686 -0.468249 -0.709249 -0.184479 -0.045655 -0.335088 -0.397877 -0.287937 0.568922 0.485198 -0.579139 0.531514 0.109397 -0.122061 -1.049420 -0.851548 0.090625 -0.384604 0.749608 -0.146089 -0.006643 0.265653 0.053964 0.227582 -1.086439 -0.066666 0.639605 -0.742433 -0.104831 -0.004946 0.417417 -0.060832 0.545157 -0.494020 -0.670708 0.037045 -0.087260 0.035635 -0.557806 0.518945 -0.487788 0.213218 -0.235070 0.248195 0.813518 0.497864 0.380361 0.587041 0.782015 -0.838060 -0.244981 -0.576748 0.307959 -0.632877 -0.027200 -0.084379 0.350438 0.434340 0.234971 0.857967 -1.185863 0.375071 0.497285 -0.085673 -0.632744 -0.031431 -0.844473 -0.770801 -0.114747 0.497684 0.054218 0.182195 -0.686074 0.240473 -0.142528 -0.451566 0.152936 -0.102542 0.545481 -1.156229 -0.176211 -0.093224 -0.169146 -0.337208 0.603560 0.272682 0.381913 0.719620 0.466575 -0.812001 0.516820 -0.796221 0.271137 1.406385 -0.231051 -0.853483 0.528626 -0.731882 0.088365 0.649195 0.309683 0.623317 -0.046509 -0.411808 -0.141902 0.143457 0.087503 1.079931 0.225128 0.460197 -0.790921 0.849185 -0.295501 -0.416572 1.268954 0.383933 -1.164944 0.526789 0.411767 -0.967060 0.168233 0.214258 -0.702586 -0.055442 -1.119697 0.143040 0.449206 -0.594020 -0.027142 0.366855 -0.950349 1.032638 0.150489 0.034463 0.339329 -0.674941 -0.437777 1.377313 0.196085 0.097917 -0.483707 -0.488117 -0.764916 -1.121742 0.076209 -0.395686 -0.520834 -0.060482 -0.880941 0.031790 0.811588 -0.030398 0.630144 -1.526669 0.172325 0.201730 0.265694 0.363082 -0.323940 -0.560382 -0.066418 -0.540882 0.412503 -0.846238 0.560042 0.842351 -0.463276 0.748259 -0.431069 -0.777119 0.171576 0.227576 -0.753790 0.692604 -0.290406 0.784371 0.000000 0.763220 -0.605139 -0.113127 -0.192430 -0.295776 -0.528359 0.513434 -0.687308 -0.058673 0.471436 -0.549654 -0.709913 0.052556 -0.185575 0.493136 -0.029996 -0.246746 -1.039401 0.253980 -0.251173 0.257599 0.637877 0.099009 -0.767162 0.195697 0.061210 -0.101874 -0.519020 0.031931 -0.221527 0.603750 -0.803322 -0.375909 0.216842 0.279517 -0.368081 -1.097081 -0.103541 -0.589248 -0.471825 0.967958 -1.020639 0.042774 -0.491722 -0.190942 -0.798151 -0.335974 0.260368 1.169004 0.204334 -0.702641 0.340185 0.062729 0.571344 0.041384 0.317697 -0.030944 0.282835 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -11.128370 8.767401 8.664477 -4.524464 13.401139 3.742237 4.495359 4.357981 -7.239979 13.127356 -16.180768 -6.219177 -6.896519 -11.486897 -2.112998 -10.501457 1.699455 -2.869008 -2.963043 4.896209 6.314561 -9.746719 -0.484216 -7.247204 -2.288406 -13.520138 -6.354300 0.122152 14.660413 -5.536094 1.127426 -1.126750 20.844005 2.364669 18.094818 12.279979 2.884536 14.398689 0.935198 -3.112706 -5.792294 14.073376 -10.636077 -8.975068 -2.348026 -11.575558 -7.031224 -5.338545 4.239658 -2.930292 -2.246746 11.257338 -2.992845 4.273841 -8.877227 7.626005 10.978011 1.083473 21.043419 2.235829 -5.001640 0.134580 -11.791525 8.679271 -5.402559 3.785590 -3.939279 -7.457363 5.311193 -5.247656 -1.958629 -7.591790 -3.932866 13.071534 5.552471 -12.295177 4.737420 -5.309742 -21.426400 -16.642496 -11.570379 3.114885 4.174901 12.492448 -0.556808 0.169589 3.450674 6.211330 -1.423311 -20.767643 0.502628 15.473940 -9.655030 -4.709842 -5.331823 13.416559 -2.393050 9.249363 -10.627828 -3.919158 3.710873 0.053038 2.022072 -15.752774 3.802984 -14.650049 4.284734 -1.352896 -1.531961 4.614158 9.875964 7.183684 15.390844 15.754661 -15.609949 2.851198 -11.494769 2.926213 -1.867384 -1.125746 1.385809 6.616112 -3.111917 2.655705 16.357978 -18.816701 3.737078 5.098812 -7.406304 -17.100608 -2.778686 -16.231735 -12.839931 -3.611537 5.333492 5.521966 3.134812 -12.038778 -0.188173 -3.400414 -3.134005 -5.873076 5.659654 14.729914 -12.923538 -2.934023 -1.120142 -0.947254 -8.243283 13.558523 8.235570 7.239823 17.287955 8.398198 -4.702551 3.861149 -12.181928 -1.763894 17.706002 4.285889 -15.738335 11.959385 -10.378713 -1.092865 6.906748 8.147204 11.535573 -0.941699 -15.296161 -9.765178 6.505848 -1.669609 17.797623 2.550479 4.654275 -1.465715 21.635117 -1.786872 -13.818555 15.714616 9.449860 -12.855246 4.262466 4.150573 -9.741097 -2.218108 11.203678 -11.286681 -0.146635 -8.791290 -2.341301 3.808796 -6.134258 -0.091319 2.547598 -16.966177 21.277663 1.044045 7.351358 4.963048 -12.768152 -19.218849 15.645080 -2.543191 -2.418944 -7.610292 -4.986236 -12.207514 -15.444422 3.109555 -0.949499 -8.123837 -7.000244 -15.395004 5.994877 7.718914 -1.971164 12.063639 -12.648644 -8.123423 5.202245 2.749229 10.499594 -2.795498 -9.121113 -2.054395 -2.606430 10.546046 -8.623981 16.935940 20.759121 -4.452094 13.302039 -5.129560 -8.679446 2.251090 6.716372 -16.605662 15.329595 -4.171178 7.270514 -1.392730 9.811346 -9.843871 -4.908174 2.598524 -1.374592 -2.759349 5.135671 -6.042296 0.527282 -2.994230 -14.455697 -3.710716 1.415193 -4.954792 -1.028941 1.715345 3.684977 -13.806259 -1.321579 -9.348701 1.508283 11.330486 2.590674 -8.152653 5.350857 -2.541258 3.619094 5.096418 -0.547835 -1.319497 8.751636 -14.225286 -7.259779 -0.499782 -0.452258 -7.720950 -18.847011 -2.503804 -12.881770 -11.219879 12.880606 -13.505294 3.611179 -11.598275 -6.163732 -15.109900 -5.822571 5.679862 21.231484 8.424567 -12.920845 2.114045 -2.665908 14.353208 1.725598 2.655340 1.555796 6.414754 +PE-benchmarks/cut-vertices.cpp__main = -1.242302 -1.831876 1.483792 0.057142 4.085353 -2.370991 0.749738 3.634912 2.915721 -0.160155 -1.791693 -1.753714 -1.183730 -0.005476 1.207068 -1.174166 1.532798 2.172181 -2.814648 -2.880535 1.367914 4.748908 -1.039216 -0.931538 0.395027 0.537435 -1.984980 -0.022718 -2.573566 0.744752 -2.248420 3.011162 3.622900 -0.088467 2.801002 1.935774 4.156447 2.259904 -1.962436 4.797595 2.832721 0.916464 -0.226791 -2.299808 0.776225 -1.058731 -1.927828 0.069657 0.741576 -1.762853 4.439449 0.794722 1.019805 1.392604 1.527630 0.990598 -1.662867 0.813110 0.507299 2.558489 -5.041122 2.402039 -1.536295 3.795499 -1.127932 5.148665 -1.227932 -4.424228 -4.115061 1.831789 4.142152 -3.702649 -3.019154 -1.151549 -0.708240 0.650591 2.089691 1.737209 6.547613 0.811679 -3.204602 1.038333 -0.831796 0.451124 -0.855085 -1.307274 -2.797413 -1.673570 1.011873 -0.321660 -1.532948 2.613701 -2.991510 3.072350 -5.480828 -5.760392 -0.843443 0.655928 0.319990 -4.051239 1.088712 -0.033738 -0.084358 2.611361 -0.901801 1.310521 1.393508 2.498560 0.010112 0.715957 -2.208050 0.577010 0.343379 -0.631659 2.727822 1.676902 -2.261973 3.111200 -2.289671 -0.447577 -0.137735 -0.301254 2.037633 0.451329 0.059181 -0.396512 1.183966 0.134776 -2.695514 1.234128 1.129792 -0.617602 -2.833743 -1.192593 2.580917 1.702901 -0.874712 0.314271 1.208104 -1.166625 0.527473 -2.010972 -2.908390 -4.474789 -0.169228 -1.197861 -0.896850 -1.062458 -1.394172 1.711357 0.142243 1.117555 1.286011 1.025847 -1.271458 -3.939120 -3.260454 0.589301 1.314841 -1.318218 -1.589371 0.510609 -1.224932 1.596345 1.589746 1.057809 -1.781924 1.871964 2.548255 2.574814 -3.896384 -0.073690 2.210203 3.256384 0.636299 -2.347997 -4.104724 -4.616222 -0.620481 3.408927 2.933601 -3.414356 -2.151682 2.034632 2.497239 -3.086092 0.249515 -2.318638 -2.338820 -1.833633 1.598430 1.404017 -2.870909 0.198888 4.710973 -1.425712 0.259893 0.132964 -1.691726 -0.510444 -3.902315 -1.657978 4.865840 0.157211 0.992585 0.707944 -1.413434 2.771492 -2.522096 0.320034 1.649594 1.703982 -0.983905 -0.422096 0.792032 3.390018 -1.721870 1.358271 1.883843 -0.096493 0.805601 -3.866516 1.402189 -4.098138 -1.517744 -2.269497 -1.012863 1.070937 -2.156473 -3.245819 1.536879 -1.063074 1.524073 4.742941 -3.368234 -3.463519 1.236353 -0.147312 1.277228 0.026501 -1.567006 0.697859 1.462213 -2.446748 -1.640261 -1.287844 2.306389 -2.841119 2.598692 -1.533289 0.911827 -0.691559 -2.139384 -0.050647 1.471393 1.413391 -0.500264 -0.777757 -0.672479 -1.648734 0.134447 -1.476977 1.015162 1.751952 -1.554425 -2.235128 0.518030 0.104691 -5.722718 -0.993091 0.862223 -0.264166 3.424689 -1.184311 0.133623 2.408043 0.280943 -3.782696 -1.286057 -1.869018 -2.449775 -0.740917 -1.845782 -0.270313 -3.625720 -0.393492 2.036173 -0.298711 -2.735287 1.179131 1.649203 1.831162 0.393083 1.471271 1.396208 0.866581 0.675323 -1.056961 0.494719 1.117952 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = -6.244829 5.250509 3.778239 -3.883602 8.602165 0.432641 2.816444 4.495834 -2.057884 5.915344 -10.136445 -3.909947 -2.723274 -7.525927 -0.056387 -5.684960 1.047426 0.774579 -2.584471 2.054883 4.040595 -3.107531 -0.616945 -5.121962 -1.154215 -6.664874 -3.334445 0.093438 5.385574 -1.187328 1.676660 0.419438 11.884433 0.778964 10.073602 7.197036 4.130148 8.485473 0.514698 1.599020 -0.957634 7.303675 -4.880936 -6.416665 -0.680039 -5.847290 -5.323785 -3.612852 1.866830 -4.926455 1.142171 6.275654 0.015111 1.521721 -4.395524 4.621287 7.273860 -0.602277 10.400806 2.985833 -4.672955 0.851918 -5.508455 6.024286 -3.522431 4.293656 -1.068568 -5.282373 0.498448 -0.208257 -0.292958 -4.335562 -3.682264 4.941217 3.102794 -6.209578 3.867142 -2.543954 -7.116428 -8.113068 -5.466811 2.510318 1.787457 7.094773 -0.728132 -0.598950 1.669781 1.682597 0.069197 -9.647620 -1.453501 8.798581 -5.578490 -2.663993 -5.740616 5.198147 -0.223753 4.069747 -5.295596 -4.614088 2.706211 0.742007 1.034466 -6.186240 -0.742432 -7.201982 2.143831 2.169087 -1.907357 5.549592 3.512454 4.613482 6.879998 6.956157 -7.465976 3.396683 -8.036420 2.444348 -2.024507 -0.264961 0.741595 1.516045 1.403770 2.362900 6.461617 -9.213541 4.449925 3.980808 -4.480255 -7.248471 0.008675 -7.429529 -7.832041 -1.920916 3.344909 3.696647 1.407996 -4.679296 0.737287 -2.103034 -0.953559 -5.252981 0.952242 5.844085 -7.715235 -1.893602 -0.873327 -0.409928 -4.611434 6.891717 3.797547 2.195825 9.709685 3.879276 -2.701398 2.310183 -6.720830 -0.149011 10.718933 2.271280 -8.270174 5.785287 -5.598282 0.090240 3.702836 3.801808 3.714226 1.800702 -8.058397 -4.542364 2.116590 -2.662772 9.498442 2.367266 1.973145 -5.835910 10.557830 -1.713525 -6.313818 11.564883 7.434355 -8.200012 0.726603 3.970961 -5.814838 -2.731224 5.508273 -6.323446 -2.637564 -4.434204 -0.013784 1.709833 -4.419009 -2.267703 1.761347 -9.054347 9.825376 0.786474 1.631085 0.411097 -7.377871 -8.747823 10.457812 -0.117425 -1.587565 -2.643441 -2.526141 -4.699557 -9.626911 2.012788 1.608656 -3.420930 -4.310252 -7.087912 3.205455 5.628323 -3.332423 4.853335 -7.307439 -4.027948 3.449106 0.637021 5.214312 -5.136023 -5.397798 -2.305348 -0.576764 5.291942 -4.669191 7.268184 11.586720 -2.781901 7.918741 -0.191695 -7.073820 0.093749 5.376255 -7.919442 8.809812 -1.848560 4.067379 -0.129800 5.758213 -6.241981 -3.153554 0.013285 -1.514580 -2.737827 4.018928 -4.897947 0.685030 -0.944310 -7.077339 -2.307119 2.959648 -0.956124 -0.295374 -0.001948 1.704271 -6.966074 -0.852882 -4.959938 0.420161 6.692996 0.525137 -6.201296 1.812588 0.580866 -0.751754 1.197179 0.160820 -0.026906 6.799403 -7.703553 -1.063008 0.824560 -0.640892 -7.085484 -9.713114 0.026255 -7.368703 -5.869632 4.793979 -6.981871 -0.795388 -5.811726 -0.915177 -8.373685 -4.572714 3.479722 10.919555 4.170158 -5.966848 1.553393 -0.774543 8.133684 1.573675 1.205600 1.096450 4.335267 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.903680 0.644581 0.006377 -0.616212 2.254438 -0.075230 0.367130 0.902915 -0.683130 0.911206 -1.525425 -0.054733 -0.206276 -1.647077 0.308740 -0.138864 0.477394 0.234673 -0.313936 0.155832 0.519582 -0.629042 0.103409 -0.801991 -0.090223 -1.619466 -0.276207 0.193439 1.063360 0.029520 -0.315132 0.279665 1.634176 -0.086502 0.963400 0.903684 0.835460 0.976522 0.349838 -1.033741 0.336310 0.763595 -0.527493 -1.271056 0.018998 -0.814300 -1.232434 -0.469264 0.487525 -0.923629 -0.652489 0.984453 0.016436 -0.125441 -0.998310 0.777810 1.438545 -0.309292 1.443728 0.549775 -0.651041 -0.829683 -0.657624 1.132523 -0.711054 0.223041 -0.366811 -1.225606 -0.287244 0.849876 -0.545070 -0.348572 -0.590994 0.311769 0.681658 -0.890100 0.592152 -0.095255 -0.359478 -1.218453 -0.768433 0.421286 -0.435448 1.354162 0.116017 -0.022749 0.441404 -0.127507 0.371589 -1.268772 -0.439205 1.156968 -0.696242 -0.291639 -0.464563 0.962160 0.546525 0.007258 -0.571537 -1.161365 0.307551 -0.056543 0.173786 -0.917288 0.374663 -1.146078 0.179513 0.202691 0.285971 1.331976 0.274812 0.395359 0.361800 0.685599 -1.135288 -0.155096 -1.306582 0.458723 -0.523716 -0.013393 -0.438154 0.122580 0.894914 0.438647 0.897582 -1.575452 1.114082 0.815073 -0.219881 -0.842510 0.223910 -0.604864 -0.984699 0.010209 0.647837 0.062072 0.225189 -0.189368 0.466839 -0.173785 -0.774085 -0.054579 -0.364624 1.426540 -1.925112 0.026707 -0.122867 -0.189633 -0.414805 0.656977 0.565834 0.491352 1.446242 0.740420 -0.768802 1.388319 -1.344288 0.728941 2.320691 0.414817 -1.105770 0.798959 -1.073615 0.121106 0.510126 0.433400 0.521518 0.297261 -1.049853 -0.378673 0.437641 -0.331385 1.433854 0.397490 0.553345 -1.522155 1.269165 -0.296476 -0.199726 1.715768 0.751091 -1.730806 1.122205 1.329625 -1.352999 0.008151 0.412352 -1.110945 -0.388223 -1.179446 0.356132 0.713112 -1.158164 -0.612275 -0.171820 -1.162059 1.271754 0.254049 -0.030510 0.223268 -0.584819 -0.571778 1.927631 0.187423 0.061999 -0.503310 -0.671925 -1.181511 -1.603069 0.065758 0.089108 -1.032652 -0.236452 -1.139412 -0.419892 1.422663 -0.554252 0.553780 -2.290289 0.506096 0.626218 0.914816 0.390767 -0.613134 -0.730815 0.104092 -0.552175 0.177949 -1.165430 0.806078 1.000942 -0.811763 1.178381 -0.614688 -0.847611 0.528722 0.699973 -0.805532 1.368329 0.049562 1.671843 0.359404 1.127552 -0.944205 -0.078193 -0.347483 -0.942030 -0.733169 0.913859 -1.434524 -0.127703 1.134448 -0.396481 -1.445240 0.592277 0.470510 0.775319 -0.236923 -0.332276 -0.726103 0.054447 -0.415988 0.545398 0.813847 -0.442604 -1.097590 0.035739 0.939189 -0.435139 -0.801316 0.405115 0.198138 1.190460 -1.196231 0.447186 0.213096 0.534620 -1.303519 -1.682808 0.452707 -0.749256 -0.705362 0.951457 -1.986381 -0.438897 -0.761788 0.311969 -1.554285 -0.370019 0.324919 1.611504 -0.094623 -0.519423 0.648617 0.037281 0.392706 -0.252218 0.513796 0.108009 0.448213 +PE-benchmarks/longest-increasing-subsequence.cpp__main = -0.542314 -0.001338 -0.112637 -0.234874 1.231779 0.009493 -0.075735 0.831242 0.337791 0.434034 -0.798520 -0.496286 -0.264956 -0.570622 0.169452 0.167752 0.161467 0.323570 -0.565391 -0.406654 0.486608 0.245323 0.013249 -0.429030 0.046800 -0.158466 -0.441385 0.000000 0.106999 0.185182 -0.671531 0.210933 0.867292 0.074474 0.627489 0.428179 0.759231 0.792453 -0.228661 0.680093 0.255080 0.592767 -0.355250 -0.903749 0.415314 -0.754400 -0.474576 -0.276422 0.303652 -0.639034 1.010829 0.474734 0.091866 0.039818 -0.064102 0.176869 0.291342 0.234159 0.731398 0.509091 -0.845173 0.025949 -0.558315 0.654169 -0.372447 1.079521 0.041133 -1.073064 -0.746626 0.260248 0.669155 -0.747492 -0.679978 0.118059 0.013509 -0.172721 0.559216 0.006375 0.889581 -0.348138 -0.817243 0.172387 -0.416669 0.588282 -0.211019 -0.212622 -0.434136 -0.184559 0.218498 -0.603455 -0.360030 0.669181 -0.545750 0.652902 -0.771165 -0.499212 -0.248792 0.282073 -0.346398 -0.484179 0.232517 0.395311 0.091496 0.189598 -0.046888 -0.331431 0.700770 0.441280 0.037307 0.118671 0.286177 -0.009529 0.143061 0.365978 -0.042900 0.280610 -0.619744 0.362354 -0.204381 0.200190 -0.138852 0.142127 0.530222 -0.173478 0.379524 -0.590136 0.539453 0.230662 -0.599137 -0.254001 0.284794 -0.502674 -0.801872 -0.081926 0.515392 0.222770 -0.202263 -0.185615 0.211810 -0.323216 -0.670321 -0.302072 -0.457772 -0.118605 -0.572276 -0.219743 -0.230260 -0.371838 -0.289931 0.514666 0.223033 0.315571 0.736622 0.474758 -0.336387 -0.384814 -0.746682 0.435222 1.091698 0.096705 -0.774568 0.197667 -0.440532 0.462740 0.544242 0.144352 0.092934 0.552270 0.199357 0.391911 -0.404355 -0.078306 0.858156 0.716710 0.619784 -0.730846 -0.110744 -0.529126 -0.179781 1.177349 0.648434 -0.997929 -0.019362 0.484351 -0.006467 -0.100413 0.099003 -0.364359 -0.265704 -0.604067 0.279378 0.427721 -0.800893 -0.476139 0.471138 -0.733681 0.797418 0.071117 0.147424 0.137200 -1.010226 0.047143 1.222521 0.141398 -0.125618 -0.100962 -0.273647 -0.209837 -0.785852 0.223322 0.342484 -0.184064 -0.432149 -0.517528 0.068328 0.990141 -0.321393 0.201967 -0.296197 0.020081 0.242292 -0.589465 0.575424 -0.888745 -0.492309 -0.411266 -0.257960 0.598204 -0.491695 -0.167137 0.777982 -0.487148 0.538382 0.874855 -0.062547 -0.383486 0.529527 -0.183961 0.631659 -0.141614 0.220230 -0.095032 0.689276 -0.495606 -0.121945 -0.230022 0.324726 -0.290189 0.762389 -0.526951 0.053148 0.263174 -0.728541 -0.264233 0.434727 0.184887 0.358294 -0.079843 -0.289574 -0.529613 -0.015539 -0.212282 0.108772 0.673052 -0.284012 -0.810778 -0.128027 -0.033499 -0.764164 -0.284186 0.325890 -0.063210 0.969661 -0.580298 0.066072 0.357878 -0.063754 -0.913610 -0.420667 -0.438427 -0.332120 -0.304815 0.466515 -0.670479 -0.443159 -0.412198 0.272363 -0.534625 -0.261180 -0.082076 0.749800 0.491701 -0.096214 0.507186 0.299721 0.565504 0.135448 -0.180099 0.213055 0.429881 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.519901 0.227754 -0.254601 -0.287456 1.431682 0.172578 -0.037152 0.916194 -0.293821 0.621778 -0.816906 -0.017164 -0.094401 -0.807819 0.150012 0.354530 0.173245 0.113457 -0.344068 -0.220186 0.348873 -0.166699 0.114396 -0.394537 -0.027297 -0.633796 -0.214106 0.065323 0.553167 0.152791 -0.589364 0.060385 0.814754 -0.048364 0.474076 0.379852 0.695536 0.550502 0.104977 -0.112791 0.166189 0.469237 -0.368008 -0.766020 0.229670 -0.701231 -0.641597 -0.206527 0.305171 -0.658511 0.303987 0.546804 0.002812 -0.065529 -0.293745 0.393321 0.576166 -0.225345 0.855279 0.345548 -0.677597 -0.642809 -0.414204 0.828181 -0.318316 0.536713 -0.036602 -0.888231 -0.430405 0.380391 0.046317 -0.414488 -0.367418 0.257587 0.206998 -0.401279 0.416902 -0.085528 0.392558 -0.614201 -0.568294 0.226850 -0.398686 0.725421 0.002983 -0.065404 -0.049809 -0.098478 0.163528 -0.782207 -0.234943 0.709640 -0.474659 0.283964 -0.644100 0.089107 -0.033050 0.170029 -0.336539 -0.510243 0.171325 0.320530 0.099954 -0.520203 0.230551 -0.645024 0.439205 0.177836 0.217993 0.446510 0.258358 -0.025433 0.128966 0.505407 -0.369134 0.054182 -0.659607 0.268566 -0.092253 0.156459 -0.320431 0.091801 0.646766 0.012376 0.538661 -0.837593 0.579734 0.331347 -0.360644 -0.515020 0.143036 -0.477470 -0.649005 0.077261 0.383906 -0.003062 -0.023321 -0.192981 0.296369 -0.195723 -0.936963 -0.225816 -0.299547 0.535072 -1.086629 -0.068130 -0.111677 -0.174342 -0.250444 0.503142 0.365059 0.347296 0.825095 0.456017 -0.302320 0.502612 -0.763359 0.528617 1.305389 0.429614 -0.747181 0.361169 -0.693977 0.275802 0.400915 0.151363 0.256596 0.417119 -0.265543 0.117485 0.210482 -0.034728 0.885490 0.453460 0.586272 -0.773399 0.347647 -0.329853 -0.096490 1.039472 0.556142 -1.065435 0.543977 0.612995 -0.301857 0.235141 0.182260 -0.584788 -0.274351 -0.625907 0.176478 0.515443 -0.751191 -0.435080 0.109046 -0.693922 0.923958 0.125322 0.196176 0.213084 -0.630719 0.142018 1.058922 0.160255 -0.048440 -0.220543 -0.323481 -0.799488 -0.808220 0.102181 0.257330 -0.507612 -0.280649 -0.667998 -0.253886 0.915419 -0.207284 0.280828 -1.164266 0.286314 0.315913 0.031379 0.421168 -0.636842 -0.429118 -0.201639 -0.333467 0.408693 -0.702533 0.272060 0.604351 -0.489908 0.788035 0.143636 -0.054306 0.008260 0.370960 -0.304540 0.730988 0.027880 0.707714 0.061060 0.728463 -0.514252 0.050399 -0.308426 -0.124308 -0.270465 0.666138 -0.729889 -0.081843 0.560810 -0.504497 -0.672414 0.321779 0.196962 0.495999 -0.101158 -0.378714 -0.387018 -0.094191 -0.340816 0.244844 0.540533 -0.444336 -0.700650 -0.071836 0.215406 -0.448811 -0.298792 0.314265 0.089202 0.802978 -0.671342 0.130727 0.222850 0.170988 -0.918714 -0.699282 -0.151684 -0.195467 -0.415358 0.598566 -1.102132 -0.341396 -0.459391 0.120206 -0.955798 -0.155606 -0.022001 0.937209 0.072674 -0.178417 0.477982 0.182411 0.346757 -0.044698 0.201254 0.172012 0.246478 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.513626 -0.090252 -0.243781 -0.207881 1.150029 -0.150847 -0.085230 0.697097 0.332893 0.376614 -0.704744 -0.452901 -0.355355 -0.683993 0.207718 0.236577 0.299361 0.388335 -0.496310 -0.384229 0.486450 0.145660 0.072505 -0.415799 0.075291 -0.222519 -0.304090 0.018568 0.060282 0.184816 -0.656088 0.307336 0.840519 0.108598 0.474207 0.381218 0.658610 0.850711 -0.089281 0.453309 0.288193 0.548044 -0.245691 -0.965593 0.484996 -0.649584 -0.409248 -0.305378 0.347138 -0.613049 0.860927 0.458044 0.111278 -0.027039 -0.255698 0.095956 0.412493 0.273477 0.673191 0.497605 -0.674296 -0.090135 -0.437373 0.488783 -0.478471 0.822908 0.109697 -0.970220 -0.690227 0.375808 0.525369 -0.613768 -0.684053 -0.048794 0.044623 -0.165851 0.496900 0.123848 0.813050 -0.296901 -0.843860 0.105972 -0.466892 0.613342 -0.202804 -0.184206 -0.336581 -0.251794 0.330330 -0.475070 -0.356750 0.524160 -0.420326 0.632893 -0.556930 -0.322776 -0.157909 0.076207 -0.349729 -0.474590 0.172218 0.254615 0.133932 0.246210 -0.159285 -0.267472 0.716929 0.333951 0.050680 0.137834 0.390717 -0.086999 -0.043182 0.210451 -0.058061 0.183675 -0.704992 0.329393 -0.082541 0.138438 -0.158823 0.103309 0.516408 -0.268950 0.291200 -0.617871 0.607472 0.261894 -0.439888 -0.182885 0.334106 -0.279887 -0.671968 -0.080614 0.612437 0.104089 -0.185432 -0.037931 0.245766 -0.248860 -0.676102 -0.123932 -0.542103 0.077340 -0.554150 -0.131465 -0.272060 -0.481750 -0.182659 0.288279 0.084732 0.293968 0.639947 0.481954 -0.435340 -0.202532 -0.748176 0.494134 1.093867 0.127149 -0.696065 0.131558 -0.323178 0.477225 0.494134 0.118451 0.141050 0.422837 0.276748 0.428335 -0.348245 -0.079787 0.748389 0.581133 0.638977 -0.798962 -0.161120 -0.311026 0.050017 1.111079 0.527407 -0.951199 0.139371 0.605891 -0.154388 -0.082279 -0.006324 -0.258032 -0.195555 -0.660400 0.382954 0.471840 -0.879029 -0.472098 0.292945 -0.638447 0.622082 0.064045 0.096375 0.184333 -0.944408 0.173020 1.147370 0.119538 -0.030638 -0.126252 -0.400755 -0.296929 -0.826534 0.214661 0.252678 -0.223244 -0.322678 -0.462573 -0.075426 1.035624 -0.274866 0.099062 -0.380073 0.204446 0.266969 -0.334692 0.445785 -0.725255 -0.456372 -0.129008 -0.246701 0.492138 -0.402407 -0.234856 0.566300 -0.559129 0.442268 0.745793 0.060880 -0.175358 0.494644 -0.124366 0.573963 -0.140153 0.383340 -0.060357 0.649644 -0.427543 -0.046657 -0.211616 0.249506 -0.350317 0.683981 -0.615815 -0.004018 0.442811 -0.543585 -0.391374 0.421643 0.303827 0.507977 -0.093654 -0.292681 -0.359951 0.044412 -0.113570 0.199704 0.615462 -0.219110 -0.735899 -0.166994 0.134303 -0.728314 -0.342678 0.369490 -0.042039 0.935270 -0.550125 0.178397 0.295063 -0.022064 -0.761161 -0.441468 -0.255176 -0.246515 -0.228965 0.561333 -0.784409 -0.423041 -0.323187 0.443500 -0.519536 -0.029375 -0.239037 0.612343 0.355608 0.055969 0.558838 0.331717 0.354888 0.013395 -0.183071 0.191259 0.467761 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.433050 0.003616 0.020891 -0.299184 1.060795 -0.093610 -0.060676 0.643781 0.668547 0.258371 -0.812113 -0.500786 -0.110634 -0.325848 0.167624 0.038041 0.063924 0.371924 -0.603158 -0.477618 0.371293 0.505969 -0.046637 -0.456974 0.027048 -0.045442 -0.496238 0.003860 -0.240110 0.179935 -0.584251 0.249018 0.720131 0.007496 0.541888 0.397150 0.724470 0.698798 -0.321352 1.002016 0.537267 0.400785 -0.215739 -0.759498 0.293824 -0.589761 -0.433272 -0.269559 0.206001 -0.625931 1.206562 0.311155 0.199543 -0.028361 0.023691 0.188902 0.109970 0.296973 0.491928 0.520187 -0.888753 0.420330 -0.497518 0.664912 -0.394202 1.214486 0.015038 -1.017095 -0.852690 0.419813 0.880542 -0.742925 -0.758857 -0.127422 -0.099974 -0.052438 0.495717 0.018694 1.136106 -0.102736 -0.574841 0.262806 -0.282495 0.360708 -0.188849 -0.233603 -0.601353 -0.224418 0.250533 -0.292136 -0.516527 0.580716 -0.479115 0.644800 -0.735170 -0.726266 -0.134594 0.126068 -0.124451 -0.518997 0.235907 0.367200 0.007784 0.482892 -0.120624 -0.151162 0.643939 0.699976 -0.137374 -0.003623 -0.053069 0.102070 0.088302 0.103332 0.232894 0.327329 -0.597979 0.335060 -0.257951 0.100123 -0.092029 0.003979 0.426860 -0.053805 0.165699 -0.275780 0.589119 0.157291 -0.657562 0.021104 0.302130 -0.260693 -0.745826 -0.049343 0.356770 0.371246 -0.171120 -0.001857 0.154930 -0.383977 -0.323150 -0.373327 -0.441837 -0.425582 -0.222053 -0.232256 -0.141618 -0.241315 -0.301296 0.457299 0.148774 0.104650 0.615171 0.310801 -0.203194 -0.747826 -0.618107 0.344006 0.817580 -0.102684 -0.584616 0.113397 -0.281359 0.422945 0.456930 0.117005 -0.222750 0.579467 0.270045 0.380042 -0.716712 -0.248549 0.673020 0.701774 0.412810 -0.670885 -0.266143 -0.633797 -0.069853 1.049913 0.684421 -0.841591 -0.322727 0.542836 0.151919 -0.346997 0.099625 -0.245485 -0.327595 -0.397752 0.266709 0.253408 -0.631934 -0.473561 0.500212 -0.567777 0.561187 0.070944 -0.070330 -0.058018 -0.861037 -0.017507 1.131489 0.108243 -0.075551 0.115083 -0.127438 0.183392 -0.719638 0.130502 0.480390 -0.073269 -0.340159 -0.290836 0.235374 0.819408 -0.559527 0.104345 0.157636 -0.121743 0.197987 -0.714066 0.440004 -0.860152 -0.386751 -0.490092 -0.167562 0.444956 -0.435683 -0.325134 0.680335 -0.320011 0.423973 1.087937 -0.214674 -0.537625 0.582387 -0.014589 0.512277 -0.159742 -0.126709 -0.014540 0.542703 -0.417574 -0.216533 -0.257139 0.305961 -0.339075 0.699681 -0.512562 0.114086 0.106378 -0.585651 -0.062355 0.568348 0.297552 0.219933 -0.158243 -0.155264 -0.437488 0.007554 -0.193519 0.035788 0.508950 -0.238592 -0.796211 -0.137582 0.106487 -0.965008 -0.313797 0.243755 -0.043768 0.906005 -0.403659 0.219435 0.438341 -0.096735 -0.988252 -0.210957 -0.406146 -0.393633 -0.218804 0.063175 -0.387266 -0.674316 -0.272611 0.390737 -0.245180 -0.385403 0.078549 0.533436 0.554531 -0.048310 0.383768 0.246252 0.488221 0.221481 -0.288793 0.175518 0.352011 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.833460 0.351847 0.591486 -0.490618 2.008897 -0.220761 0.228518 1.325923 0.592310 0.535579 -1.517988 -0.626879 -0.325697 -0.842156 0.320717 -0.446668 0.264874 0.683483 -0.849567 -0.550985 0.690404 0.649398 -0.157178 -0.825891 0.029468 -0.538643 -0.808244 -0.022156 -0.290751 0.527398 -0.509287 0.616052 1.558161 0.221176 1.188150 0.941476 1.132086 1.381589 -0.337251 1.610570 0.739098 0.732761 -0.423775 -1.521105 0.520576 -1.008148 -0.875095 -0.608193 0.267639 -1.343909 1.515364 0.708414 0.278166 0.119922 -0.128427 0.307167 0.450871 0.363293 0.962884 0.961209 -1.665671 0.411935 -0.870108 0.959058 -0.578973 1.763412 0.075039 -1.814237 -1.082015 0.723493 1.284499 -1.166864 -1.157951 -0.051017 -0.035919 -0.236071 0.833309 0.097500 0.785388 -0.221763 -1.054757 0.474983 -0.294059 0.858799 -0.221095 -0.400876 -0.837108 -0.414019 0.436031 -0.772563 -0.790391 1.384654 -0.829693 0.894904 -1.592034 -0.837882 -0.049090 0.318269 -0.292470 -1.090586 0.524414 0.473221 0.034776 0.444519 -0.764735 -0.620813 1.038466 1.026633 -0.272409 0.423069 -0.192586 0.388170 0.336801 0.321056 -0.190401 0.894546 -1.218704 0.864446 -0.544045 0.037431 -0.154424 -0.050616 0.568521 0.078478 0.406956 -0.762275 1.001469 0.510325 -1.062444 -0.318028 0.464588 -0.672072 -1.319185 -0.223756 0.778530 0.656778 -0.156468 -0.093530 0.102043 -0.684517 -0.347360 -1.062088 -0.795863 -0.111725 -0.771266 -0.372245 -0.276992 -0.395959 -0.669225 0.834983 0.324127 0.367046 1.166674 0.625598 -0.452329 -0.846055 -1.260403 0.466844 1.701195 0.321944 -1.112610 0.405631 -0.457000 0.593479 0.743839 0.217594 -0.165673 0.870654 -0.062825 0.224505 -1.033373 -0.455398 1.305290 1.561093 0.672780 -1.376130 0.054143 -1.127208 -0.395987 1.874332 1.275932 -1.497046 -0.402863 1.071867 -0.220882 -0.694919 0.282419 -0.741991 -0.659672 -0.713573 0.349372 0.482282 -1.246203 -0.757920 0.863127 -1.158407 1.075202 0.205827 0.178444 -0.201489 -1.461224 -0.704251 2.177684 0.152652 -0.060049 0.096750 -0.380593 0.045325 -1.379761 0.215066 0.827141 -0.227651 -0.662418 -0.671236 0.287656 1.412952 -0.948512 0.380964 0.051201 -0.281537 0.443567 -1.054251 0.725163 -1.830275 -0.817768 -0.770584 -0.311678 0.810533 -0.676686 -0.161318 1.313874 -0.533893 0.985771 1.601144 -0.588114 -0.696382 0.971139 -0.283465 1.019719 -0.388543 0.369303 0.144690 1.057696 -0.888557 -0.489169 -0.378698 0.298251 -0.753487 1.350259 -1.013758 0.228053 0.324086 -1.103491 -0.298096 0.911001 0.454752 0.341633 -0.323705 -0.086458 -0.913107 0.011659 -0.496733 0.223730 0.985483 -0.494981 -1.398767 -0.149297 0.256614 -1.544689 -0.667246 0.459602 0.009893 1.496435 -0.883758 0.354389 0.657422 -0.201757 -1.771088 -0.821085 -0.331566 -1.046255 -0.779982 0.120554 -1.022504 -0.956790 -0.597841 0.579812 -0.886447 -0.812037 0.219908 1.214690 0.700821 -0.141348 0.644423 0.376427 0.839616 0.251365 -0.161153 0.234826 0.832488 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -6.686573 5.267550 6.052265 -3.124472 10.825689 1.702171 4.196753 5.177900 -6.286428 8.775217 -10.226164 -2.098263 -3.642099 -8.307672 -0.542897 -5.347070 2.004978 -1.237704 -1.454062 3.542254 4.054260 -6.215489 -0.289982 -4.672145 -1.670726 -8.787704 -3.448222 0.492654 9.486754 -3.089169 0.857392 -0.135984 13.743817 1.443131 11.790017 8.309830 3.097918 9.231421 2.108008 -4.473790 -3.123285 8.560876 -6.416864 -7.188880 -1.048407 -7.002102 -5.483759 -3.927518 1.841268 -3.621127 -2.467909 7.628983 -1.883171 2.373221 -6.033560 5.387190 7.905728 -1.275481 13.309134 1.966115 -4.123638 -1.594631 -7.292569 6.086915 -3.040882 2.116786 -2.975040 -6.533035 3.185746 -1.991478 -1.913454 -5.504483 -2.495256 8.241316 3.632297 -7.900996 2.873904 -3.298473 -12.165782 -10.261019 -7.470492 2.150055 1.343274 8.320423 0.469123 0.002822 2.663374 3.299231 -0.525068 -13.605807 0.195527 10.017080 -7.311679 -3.399437 -3.625289 8.400995 -0.988643 5.504650 -6.851691 -4.099643 2.533176 -0.210262 1.430480 -10.021532 2.220055 -9.781831 1.920492 -0.473188 0.122390 4.714360 6.691858 4.537960 9.606378 9.432810 -10.689916 2.002638 -7.449148 2.848836 -1.706782 -0.607813 -0.473316 4.286017 -0.183351 2.795100 10.770057 -12.631305 2.703916 3.723247 -4.414085 -10.100608 -1.477175 -10.123720 -8.059643 -2.365338 4.163657 2.924455 2.381371 -7.149428 0.354604 -1.733104 -2.894839 -5.051397 2.559754 10.139802 -11.378325 -1.656689 -0.996632 -0.744721 -5.074827 8.700029 5.744344 5.286943 10.772326 5.768400 -3.414338 5.110832 -8.942537 -0.079758 12.918142 3.066383 -10.275115 8.158788 -8.262698 -0.506745 4.493302 5.076436 7.496998 -1.064245 -10.686602 -6.454754 6.389279 -0.698912 11.705691 2.386767 3.430531 -3.777298 13.080534 -1.559616 -8.505772 11.387673 5.615643 -10.186027 4.126077 3.809027 -6.864291 -0.865580 6.295843 -8.691907 -0.912943 -6.321807 -1.476614 3.079197 -4.816260 -0.330209 1.632498 -10.921252 13.179226 1.086647 3.882992 2.210227 -7.067105 -10.791955 12.222458 -0.614432 -1.275268 -5.254866 -4.007971 -8.365539 -10.747748 1.685135 -0.651720 -5.292989 -4.517382 -10.479063 2.695238 6.414745 -1.331739 7.195224 -10.254702 -3.739925 3.891298 2.639927 6.094110 -4.314398 -6.075728 -1.160250 -2.693831 5.840040 -6.595725 10.369699 13.160931 -3.188360 9.083888 -3.084506 -6.158586 1.824385 4.380003 -10.785651 10.596099 -2.839577 7.859761 -0.181926 6.720716 -7.357012 -2.581500 0.437526 -1.154359 -2.605923 3.639995 -5.112318 0.144164 -0.412976 -8.842073 -4.395391 1.114781 -2.071968 -0.220292 0.781123 0.796414 -8.642276 -1.458537 -6.812370 1.828005 7.292721 -0.489068 -6.012856 3.336858 -0.527078 1.664923 0.705550 0.212138 -0.065696 5.923226 -9.827846 -3.691809 -0.049309 0.467600 -6.187369 -12.834146 -0.153396 -8.461338 -6.802499 7.395380 -9.688329 1.709571 -7.533422 -3.401033 -12.096311 -3.516717 2.947694 14.148501 3.590329 -7.990248 1.838153 -1.592389 8.436521 0.854529 3.308293 0.395953 3.791674 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.400688 -0.007640 -0.257572 -0.209787 0.975826 -0.018820 -0.110948 0.692602 0.127562 0.431546 -0.527088 -0.160221 -0.117057 -0.435641 0.098671 0.294552 0.101602 0.245814 -0.383532 -0.259523 0.311880 0.128198 0.069426 -0.256213 -0.043927 -0.239780 -0.217477 0.073417 0.199630 0.012906 -0.543227 0.083876 0.653312 -0.082963 0.437539 0.288657 0.583180 0.491538 -0.027221 0.202524 0.214720 0.386977 -0.263898 -0.570526 0.213444 -0.496519 -0.397578 -0.145800 0.288556 -0.438794 0.647811 0.338878 0.047416 -0.019072 -0.105434 0.275008 0.223255 -0.007535 0.602251 0.276166 -0.582186 -0.127616 -0.382060 0.737907 -0.329881 0.614539 -0.067978 -0.732097 -0.492280 0.240754 0.348871 -0.501901 -0.410497 0.130875 0.041314 -0.227760 0.360482 -0.043524 0.796214 -0.391225 -0.516872 0.143918 -0.358710 0.406891 -0.129691 -0.066811 -0.295789 -0.059424 0.103003 -0.484904 -0.211716 0.456777 -0.433548 0.401199 -0.485749 -0.235821 -0.120423 0.117620 -0.215952 -0.358543 0.115798 0.235398 0.103474 -0.043999 0.265203 -0.204592 0.367024 0.226076 0.133030 0.180232 0.154793 0.018838 0.110802 0.315506 0.051554 0.048913 -0.526105 0.230349 -0.126839 0.158664 -0.159439 0.131083 0.494240 -0.038804 0.367935 -0.509696 0.417976 0.091317 -0.325451 -0.228569 0.178438 -0.257325 -0.497009 -0.038574 0.343461 0.066637 -0.139330 -0.156177 0.265352 -0.132018 -0.643308 -0.166894 -0.245086 -0.024767 -0.540416 -0.085470 -0.134883 -0.212388 -0.135446 0.369569 0.227749 0.243260 0.584713 0.367382 -0.181274 -0.050640 -0.601174 0.329257 0.765395 0.071868 -0.543117 0.229607 -0.457741 0.228521 0.390724 0.194247 0.101361 0.391717 0.090487 0.220262 -0.089714 0.013949 0.656972 0.316731 0.392829 -0.504656 -0.062201 -0.321103 -0.044347 0.867617 0.415760 -0.795604 0.158267 0.348652 0.033889 0.000000 0.097659 -0.322138 -0.221291 -0.427425 0.208939 0.388411 -0.520566 -0.319264 0.270700 -0.489655 0.608615 -0.011857 -0.056042 0.177667 -0.673826 0.218701 0.802766 0.144426 -0.068863 -0.124182 -0.252253 -0.277595 -0.613838 0.120167 0.209316 -0.186785 -0.241536 -0.424009 -0.044095 0.689040 -0.157039 0.160172 -0.574981 0.083490 0.231385 -0.241513 0.332429 -0.545246 -0.265885 -0.240257 -0.181683 0.353066 -0.464808 -0.025022 0.535961 -0.383722 0.424390 0.484250 -0.048191 -0.174829 0.352181 -0.235749 0.526127 -0.018347 0.159316 -0.029124 0.423532 -0.347382 -0.007963 -0.221679 0.196484 -0.198763 0.433650 -0.418901 -0.042491 0.200159 -0.477452 -0.276989 0.249194 0.201465 0.273792 -0.001800 -0.278062 -0.331432 -0.077965 -0.256284 0.073833 0.431632 -0.247528 -0.562235 0.029749 0.033749 -0.511119 -0.174886 0.173501 0.050700 0.642545 -0.459755 0.071449 0.236147 0.072640 -0.682298 -0.367494 -0.279405 -0.146483 -0.216292 0.333128 -0.576418 -0.396204 -0.292679 0.201782 -0.500974 -0.138020 -0.006763 0.600045 0.278389 -0.099661 0.395529 0.137381 0.372366 0.084354 -0.060967 0.138729 0.244695 +PE-benchmarks/cutting-a-rod.cpp__main = -0.577383 0.018239 -0.024994 -0.261690 1.357535 0.034887 -0.078846 0.955169 0.391539 0.508747 -0.818390 -0.523168 -0.236594 -0.505546 0.158336 0.100428 0.088492 0.365881 -0.635806 -0.431041 0.498439 0.376722 -0.002629 -0.393759 -0.015157 -0.133972 -0.529677 0.035899 0.078369 0.158322 -0.673068 0.200656 0.940914 0.017352 0.757492 0.480442 0.856098 0.795858 -0.307406 0.856517 0.288510 0.589035 -0.419035 -0.897719 0.395916 -0.786270 -0.574185 -0.275314 0.315098 -0.698385 1.149328 0.503582 0.089385 0.082280 0.052218 0.261895 0.162030 0.212503 0.782770 0.524193 -1.017184 0.127222 -0.674589 0.828233 -0.350826 1.255648 -0.055241 -1.219909 -0.834228 0.250152 0.801870 -0.873932 -0.724840 0.214120 0.003047 -0.195361 0.591377 -0.044476 1.017080 -0.366088 -0.843646 0.235893 -0.405640 0.562576 -0.216140 -0.200998 -0.526505 -0.137744 0.128943 -0.701355 -0.346770 0.799582 -0.653465 0.713119 -0.952395 -0.668732 -0.300699 0.358233 -0.340099 -0.528837 0.275141 0.437588 0.100245 0.198399 0.015795 -0.344829 0.683820 0.523926 0.063302 0.100656 0.189672 0.037103 0.257781 0.462464 0.005036 0.354585 -0.633238 0.439212 -0.307112 0.232185 -0.163830 0.185053 0.556387 -0.083807 0.458676 -0.614141 0.527482 0.161382 -0.707861 -0.295144 0.273078 -0.564303 -0.853577 -0.112729 0.518747 0.260009 -0.245083 -0.258150 0.222166 -0.340377 -0.665813 -0.417149 -0.423810 -0.287703 -0.560460 -0.235022 -0.225224 -0.349517 -0.334231 0.652504 0.341860 0.385035 0.830813 0.512208 -0.267945 -0.536617 -0.836595 0.398693 1.076633 0.059880 -0.833651 0.289641 -0.531841 0.436626 0.578170 0.216553 0.055724 0.659048 0.201865 0.370653 -0.484188 -0.015388 0.962266 0.824667 0.588847 -0.718663 -0.185852 -0.704711 -0.271123 1.264766 0.745280 -1.071238 -0.135608 0.442870 0.094589 -0.189907 0.184013 -0.472795 -0.346783 -0.571177 0.249354 0.463734 -0.783418 -0.477619 0.638853 -0.790080 0.883567 0.034004 0.088394 0.133722 -1.113771 -0.051300 1.298481 0.166049 -0.160027 -0.094756 -0.272334 -0.101939 -0.802385 0.229796 0.436346 -0.125516 -0.501878 -0.561664 0.134569 0.995375 -0.316317 0.291829 -0.241735 -0.078197 0.274684 -0.767600 0.645864 -1.030561 -0.473715 -0.575075 -0.272727 0.634943 -0.541787 -0.173273 0.898062 -0.481016 0.601487 1.003565 -0.190672 -0.518395 0.552013 -0.254187 0.716337 -0.119946 0.101743 -0.091307 0.684198 -0.525577 -0.140047 -0.247488 0.402109 -0.285624 0.810612 -0.488440 0.049865 0.148069 -0.861671 -0.208488 0.413249 0.196525 0.244092 -0.050006 -0.297706 -0.634797 -0.075064 -0.297628 0.080509 0.711422 -0.345541 -0.854981 -0.025675 -0.113492 -0.860321 -0.281066 0.303663 -0.028143 1.012421 -0.638135 0.023279 0.408689 -0.060698 -1.063714 -0.415727 -0.548909 -0.423104 -0.350756 0.353888 -0.623228 -0.524896 -0.459042 0.237793 -0.515683 -0.410692 0.038265 0.864492 0.591366 -0.171521 0.521489 0.269395 0.670926 0.205750 -0.212709 0.245386 0.451425 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -3.357164 2.159124 1.875851 -1.495197 5.792060 0.588778 1.458150 2.642367 -2.547940 3.686790 -4.836675 -1.130233 -1.714801 -3.948684 -0.071857 -1.539939 0.996217 -0.010073 -1.141663 0.879633 2.015150 -2.205877 0.173713 -2.158735 -0.586581 -3.427178 -1.751694 0.310881 4.065679 -1.173863 -0.602911 0.099084 6.020461 0.336930 5.206402 3.396276 1.677411 4.178492 0.487727 -1.921052 -0.740476 3.787831 -2.827271 -3.890603 0.008941 -3.513219 -2.749129 -1.918775 1.585936 -1.979685 -0.379252 3.381345 -0.605861 0.809825 -2.526983 2.287332 3.642523 -0.229042 6.005087 1.127477 -2.597826 -0.628637 -3.171603 2.783309 -1.593818 1.733834 -1.387010 -3.532228 0.264389 -0.162412 -0.403274 -2.946863 -1.562041 3.109721 1.519820 -3.249422 1.834346 -1.075477 -3.181331 -5.030945 -3.671593 0.973487 -0.103642 3.947009 -0.218937 -0.077090 0.566840 0.943875 0.050135 -5.787628 -0.304292 4.492829 -3.075231 -0.579735 -1.579181 2.921514 -0.630710 2.075838 -3.001823 -2.214041 1.097245 0.271090 0.675678 -3.783638 1.677655 -3.898632 1.264288 0.004381 0.296195 2.121647 2.818389 1.718957 3.659307 4.091511 -4.008748 0.827240 -3.917897 1.400009 -1.243065 -0.020877 -0.339807 1.766660 0.777761 0.694634 4.422218 -5.657029 1.962004 1.732700 -1.884761 -4.471966 -0.095360 -4.087964 -3.853715 -0.741286 2.082532 1.020882 0.570772 -2.845575 0.472051 -1.019980 -2.210450 -1.451825 0.441156 4.096693 -5.049789 -0.645492 -0.517620 -0.726761 -1.993567 3.648435 2.432959 2.311960 5.213907 2.822736 -1.923984 1.846111 -4.331399 0.662804 6.085721 0.977520 -4.597652 3.253216 -3.462854 0.190136 2.453017 2.121508 3.033273 0.230908 -3.713032 -1.875526 2.338087 -0.262135 5.342982 1.218918 2.187482 -2.276521 4.976265 -0.932898 -2.914124 5.574975 2.407537 -5.301717 2.276671 2.165055 -2.382268 -0.187349 2.539764 -3.757947 -0.903057 -3.089330 -0.063515 1.838313 -2.949954 -0.965322 0.852410 -4.827188 5.942630 0.354665 1.172166 1.334477 -3.737692 -3.384535 5.784551 0.171426 -0.468161 -2.008451 -1.937511 -3.453867 -4.952675 0.809622 0.220805 -2.446012 -1.960891 -4.462624 0.774373 3.337846 -0.708712 3.107008 -4.704992 -0.896782 1.832331 0.882278 2.753386 -2.231800 -2.699655 -0.624470 -1.437542 2.666441 -3.149292 3.927887 5.408555 -2.079483 4.121131 -0.451370 -2.200299 0.728192 2.058580 -4.172812 4.718177 -0.770669 3.956999 -0.091753 3.348927 -3.158367 -0.941438 -0.111472 -0.421697 -1.386624 2.424573 -2.789951 -0.096517 0.502232 -3.784405 -2.448703 0.830912 -0.339972 0.608857 0.217111 -0.061933 -3.715156 -0.438800 -2.687504 0.901727 3.400882 -0.772945 -3.539030 1.089758 0.157122 -0.228480 0.071334 0.479424 0.053321 3.315706 -4.322699 -1.134040 0.287594 0.488248 -3.375229 -5.334325 -0.245520 -3.397688 -2.772474 3.694331 -4.743238 -0.004643 -3.248379 -0.841196 -5.147142 -1.340874 1.115280 6.264255 1.823873 -2.904167 1.453257 -0.244336 3.510321 0.206845 1.041767 0.383592 1.967060 +PE-benchmarks/overlapping-subproblems-property.cpp__main = -0.466176 -0.022080 -0.111344 -0.283752 1.305233 -0.104837 -0.064580 0.909912 0.324947 0.480636 -0.681330 -0.207053 -0.077418 -0.372235 0.139820 0.179422 0.092122 0.375350 -0.569914 -0.414136 0.326449 0.465217 0.030957 -0.290977 -0.104695 -0.243435 -0.389255 0.126150 -0.000132 0.022110 -0.611627 0.202496 0.860719 -0.169916 0.624836 0.404962 0.825237 0.579703 -0.145390 0.562913 0.493650 0.345230 -0.284388 -0.648529 0.184743 -0.540396 -0.616071 -0.167030 0.309493 -0.622006 0.958849 0.370890 0.126280 0.018003 0.016575 0.422193 0.075463 -0.038687 0.645414 0.393269 -0.980677 0.096048 -0.511815 1.080497 -0.385014 0.977212 -0.211748 -1.060164 -0.767435 0.435905 0.659836 -0.757086 -0.622744 0.078967 0.000109 -0.223308 0.444897 -0.014629 1.203016 -0.354995 -0.578976 0.295537 -0.362138 0.375781 -0.130293 -0.100969 -0.508182 -0.113769 0.092673 -0.518972 -0.329866 0.691768 -0.618707 0.562639 -0.860512 -0.612300 -0.137937 0.116502 -0.154508 -0.611182 0.188687 0.259954 0.079863 0.084021 0.262340 -0.177154 0.393357 0.485718 0.115855 0.202946 -0.109828 0.118353 0.200367 0.298488 0.219897 0.180225 -0.680435 0.418781 -0.305037 0.112595 -0.223219 0.096948 0.589422 0.119261 0.404074 -0.514391 0.535104 0.043135 -0.553832 -0.170027 0.210088 -0.233197 -0.647833 -0.060918 0.400096 0.182667 -0.166372 -0.130551 0.310813 -0.221161 -0.569131 -0.370408 -0.329486 -0.321175 -0.518697 -0.127712 -0.118075 -0.185041 -0.237806 0.552988 0.341876 0.284425 0.732277 0.397891 -0.146942 -0.336244 -0.821926 0.344388 0.821674 0.003688 -0.627027 0.335236 -0.573850 0.260048 0.458003 0.294248 -0.087895 0.544109 0.157701 0.277003 -0.354883 0.004902 0.815700 0.538246 0.352161 -0.641594 -0.276410 -0.666594 -0.052036 1.083464 0.644560 -1.002853 -0.040735 0.498891 0.214473 -0.240518 0.198923 -0.518573 -0.445431 -0.430139 0.246683 0.454549 -0.600219 -0.341590 0.559463 -0.562238 0.665416 -0.026838 -0.265967 0.096391 -0.858539 0.057679 1.078779 0.162808 -0.009256 -0.012773 -0.291597 -0.021642 -0.777130 0.083842 0.429339 -0.108790 -0.288385 -0.444205 0.053313 0.814735 -0.316418 0.278577 -0.435625 0.006268 0.311851 -0.509119 0.387829 -0.845103 -0.280508 -0.456766 -0.228704 0.357928 -0.633080 -0.157046 0.645990 -0.390639 0.568817 0.795257 -0.328626 -0.420795 0.435547 -0.251839 0.663457 0.002877 0.010393 0.058194 0.471220 -0.447787 -0.091307 -0.332023 0.293483 -0.363858 0.592517 -0.541703 -0.015964 0.113383 -0.602977 -0.267757 0.353513 0.348224 0.157591 -0.052497 -0.295340 -0.443299 -0.124632 -0.395777 0.109544 0.473375 -0.395901 -0.721258 0.131663 0.093414 -0.895129 -0.240988 0.176039 0.114489 0.816901 -0.540040 0.130205 0.399953 0.113174 -1.049718 -0.413387 -0.382255 -0.349665 -0.288640 0.069585 -0.575149 -0.726768 -0.320745 0.310372 -0.477626 -0.392746 0.205077 0.759825 0.408534 -0.140868 0.443663 0.150722 0.438134 0.157848 -0.113595 0.185437 0.279274 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -1.719931 1.390096 1.498134 -0.585329 1.883599 0.221333 0.949409 0.885117 -0.848799 1.790488 -2.426046 -1.229415 -1.061156 -1.809582 -0.269847 -2.087634 0.331801 -0.081107 -0.432791 0.609383 1.036356 -1.165687 -0.285602 -1.072183 -0.263572 -1.823221 -1.095901 -0.020064 2.124795 -0.930510 0.383977 0.011284 3.477556 0.400316 3.311772 2.055717 0.543284 2.174813 0.185273 -0.089596 -0.921279 2.248106 -1.613649 -1.667664 -0.513011 -1.621927 -0.850334 -0.624356 0.631944 -0.423023 -0.137495 1.574461 -0.466186 0.949000 -1.135394 0.941534 1.323913 0.523386 3.115617 0.400151 -1.157936 0.257203 -1.840375 1.678528 -0.805622 0.787054 -0.733986 -1.338135 0.796523 -0.923951 -0.555424 -1.311642 -0.585008 2.089233 0.784441 -1.724910 0.815279 -0.728972 -3.192773 -1.947888 -1.855518 0.457463 0.544297 1.802181 -0.207686 -0.104550 0.343835 0.858191 -0.245773 -3.153990 0.090021 2.547967 -1.784725 -0.554317 -0.620736 1.693972 -0.351475 1.662651 -1.365065 -0.793250 0.593889 -0.068856 0.277489 -2.041411 0.323945 -2.097087 0.574500 -0.255111 -0.388463 1.156987 1.603735 1.415211 2.494510 2.416454 -2.256170 0.370135 -1.875527 0.822294 -0.885298 -0.160672 0.400160 1.082927 -0.512116 0.533543 2.461514 -2.767184 0.404610 0.804693 -0.871977 -2.542574 -0.385935 -2.698647 -2.102544 -0.748091 0.912372 1.071787 0.353281 -2.011482 -0.216501 -0.399718 -0.303971 -1.221080 0.777890 1.613968 -1.868367 -0.614419 -0.217587 -0.123778 -1.380689 2.152415 1.221314 1.183784 2.567528 1.355024 -0.784232 0.484265 -1.957419 -0.415248 2.545277 0.117762 -2.416858 1.810017 -1.814916 -0.281252 1.220539 1.302997 1.729616 0.175717 -2.229223 -1.389533 0.978160 -0.227471 2.662487 0.522068 0.562389 -0.312364 3.184013 -0.357364 -2.470063 2.862504 1.114693 -2.343294 0.658548 0.434743 -1.463419 -0.453484 1.654071 -1.922577 0.010454 -1.574477 -0.393432 0.613525 -1.068922 0.109291 0.808475 -2.646439 3.181560 0.109729 0.854911 0.605393 -2.226083 -3.081546 3.021434 -0.051353 -0.332235 -1.189311 -0.756291 -1.482159 -2.328257 0.453707 -0.128637 -1.065386 -1.095780 -2.260578 1.085794 1.302082 -0.326412 2.094401 -1.516601 -1.402518 0.774193 0.325433 1.483269 -0.776589 -1.508404 -0.559852 -0.382059 1.692157 -1.343093 2.418629 3.353989 -0.621421 2.181695 -0.324360 -1.880308 0.132196 1.022114 -2.694550 2.334318 -0.804988 0.842072 -0.171368 1.407533 -1.774045 -1.024889 0.373817 -0.073353 -0.575733 0.741753 -0.758332 0.259945 -0.640222 -2.419862 -0.312614 0.196773 -0.767480 -0.145234 0.305461 0.507700 -2.345272 -0.230295 -1.420388 0.128913 1.837236 0.413357 -1.546204 0.928681 -0.667147 0.327202 0.435338 -0.188001 -0.265307 1.290891 -2.137953 -1.306462 0.111726 -0.178969 -1.274106 -2.902955 -0.467202 -2.143110 -1.543674 1.387444 -1.730393 0.588526 -1.746001 -1.033517 -2.523161 -1.151748 0.959541 3.306529 1.416644 -1.955956 0.315173 -0.386473 2.403351 0.511361 0.438957 0.216592 1.144151 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.516065 -0.124185 -0.052286 -0.228181 1.060002 -0.232133 -0.071591 0.558152 0.779408 0.205407 -0.838405 -0.776381 -0.423695 -0.602529 0.250968 0.031782 0.303543 0.488734 -0.619407 -0.523331 0.543945 0.367526 -0.000823 -0.540448 0.158629 -0.029854 -0.477588 -0.051872 -0.290055 0.319868 -0.650362 0.440454 0.845753 0.240278 0.503919 0.427657 0.662779 1.033601 -0.288804 1.044187 0.451460 0.578364 -0.186074 -1.118142 0.600133 -0.693312 -0.331582 -0.416141 0.285943 -0.699618 1.249559 0.415791 0.210507 -0.027056 -0.193758 -0.074484 0.336744 0.603046 0.554529 0.659740 -0.784702 0.328550 -0.489263 0.252333 -0.533674 1.182048 0.228952 -1.104300 -0.901584 0.443717 0.886728 -0.729552 -0.916010 -0.260753 -0.066143 -0.001738 0.575607 0.203376 0.951837 -0.030087 -0.921443 0.128852 -0.411076 0.571216 -0.273702 -0.310924 -0.530759 -0.379297 0.461339 -0.285764 -0.546341 0.526362 -0.384069 0.819214 -0.600941 -0.629558 -0.183287 0.069915 -0.299892 -0.502996 0.236272 0.318071 0.079268 0.721418 -0.539920 -0.187516 0.967311 0.619447 -0.165131 -0.059077 0.352241 -0.067181 -0.104215 0.021024 0.040537 0.384780 -0.717749 0.376502 -0.126005 0.092712 -0.067180 0.029153 0.391919 -0.367692 0.101041 -0.422085 0.691657 0.314857 -0.625823 0.027101 0.437518 -0.260294 -0.804038 -0.111265 0.652147 0.299844 -0.223411 0.084558 0.126057 -0.416322 -0.404147 -0.196848 -0.699857 -0.186694 -0.230144 -0.230711 -0.308158 -0.569998 -0.262545 0.263101 -0.048979 0.188058 0.587321 0.438483 -0.489585 -0.753676 -0.703291 0.487029 1.080279 -0.027632 -0.693199 -0.011728 -0.085883 0.637286 0.535099 0.030889 -0.043746 0.507317 0.478077 0.567306 -0.833804 -0.257656 0.691550 0.839595 0.674083 -0.879696 -0.325023 -0.431341 0.057308 1.186472 0.648128 -0.893595 -0.227111 0.701092 -0.134996 -0.320596 -0.060298 -0.096508 -0.186512 -0.647020 0.438635 0.358092 -0.961716 -0.573684 0.413621 -0.668141 0.522338 0.116981 0.148733 0.038300 -1.084972 0.020007 1.322187 0.081101 -0.036997 0.028731 -0.325672 0.042655 -0.858271 0.247853 0.385954 -0.119257 -0.380733 -0.328260 0.126489 1.104270 -0.512201 0.011145 0.258792 0.065962 0.216636 -0.665620 0.506177 -0.878937 -0.542697 -0.223619 -0.222097 0.572854 -0.267335 -0.487287 0.619442 -0.516501 0.353339 1.185151 0.036073 -0.386967 0.638840 0.062791 0.500693 -0.290774 0.169244 -0.088779 0.707785 -0.424307 -0.185657 -0.182334 0.350990 -0.424183 0.837619 -0.629700 0.110070 0.388620 -0.601321 -0.192922 0.621032 0.346084 0.504498 -0.188088 -0.173396 -0.416410 0.145917 0.018675 0.166988 0.668416 -0.122369 -0.858247 -0.322367 0.151511 -0.981919 -0.454474 0.428782 -0.151588 1.083680 -0.471984 0.265039 0.404533 -0.192058 -0.840463 -0.269573 -0.327996 -0.389561 -0.188101 0.431101 -0.603902 -0.527412 -0.278989 0.593837 -0.259492 -0.107290 -0.273996 0.475580 0.560805 0.135993 0.544985 0.431986 0.410580 0.097450 -0.395517 0.209809 0.584395 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -3.179076 2.038405 1.713647 -1.853261 6.517270 0.822000 1.133650 3.253123 -2.139105 3.638726 -5.069175 -0.929272 -1.188612 -3.574643 0.051827 -1.420766 0.399777 0.009693 -1.792896 0.329508 1.840053 -1.206008 0.140424 -2.258015 -0.711243 -3.225381 -2.025790 0.369768 3.138206 -0.569401 -0.629156 0.022604 5.502640 -0.190459 4.350533 3.103011 2.168627 3.820186 -0.351484 -0.271922 0.266506 3.245435 -2.605556 -3.346447 -0.121707 -3.491927 -3.371888 -1.494734 1.440281 -2.764451 0.142352 3.202516 -0.224625 0.396196 -1.748707 2.973443 3.060375 -0.819341 5.449746 1.447357 -3.482265 -0.471211 -3.439255 3.848565 -1.530033 2.960493 -1.273472 -4.098345 -0.819767 0.605417 0.272540 -2.815345 -1.978288 2.506396 1.296189 -2.945932 1.912064 -1.174545 -2.031266 -4.302249 -2.984902 1.392246 0.112538 3.501891 -0.157706 -0.213992 0.530891 0.660429 0.037409 -5.230002 -0.932199 4.677168 -3.098172 -0.269119 -3.310688 1.505250 -0.590862 1.786627 -2.574748 -2.428345 1.218467 0.896033 0.475339 -3.880442 1.336232 -3.804662 1.307731 1.133274 0.315200 1.932637 1.336344 1.628779 2.928501 3.618230 -3.215658 1.300819 -3.694993 1.425939 -1.347889 0.174930 -0.765826 1.115052 1.403846 1.071099 3.966049 -4.874111 2.399606 1.391388 -2.665415 -3.909672 0.058931 -3.556543 -3.969504 -0.391770 1.699836 1.202723 0.469674 -2.220157 0.837370 -1.221120 -2.120319 -1.682873 0.124161 2.929721 -4.741083 -0.722242 -0.327417 -0.215746 -2.070571 3.904604 2.601259 1.879108 5.227370 2.303509 -1.259528 0.997178 -4.195326 0.993225 6.100970 1.336382 -4.333834 3.052342 -3.420955 0.541521 2.120629 1.749843 1.961811 1.319033 -3.289503 -1.543341 1.209850 -0.601258 5.339436 2.026254 1.878606 -2.672538 4.036927 -2.223718 -2.344608 5.351617 3.693032 -5.157344 1.628562 2.478084 -1.855506 -0.673390 2.560210 -3.599851 -1.517111 -2.457289 -0.057845 1.773797 -2.707263 -1.393797 1.165337 -4.517173 5.731317 0.363874 0.936498 0.954824 -3.627855 -3.601539 5.246702 0.247693 -0.552196 -1.469075 -1.464324 -3.303400 -4.845654 0.705207 1.083858 -2.221230 -2.053819 -4.045531 0.701209 3.277124 -1.415755 2.815782 -4.361001 -0.939865 1.770774 -0.050744 3.005363 -2.511862 -2.444066 -1.521735 -1.497269 2.549012 -3.458704 3.070426 5.168991 -1.805656 4.613073 0.292895 -2.555014 -0.299544 2.354737 -3.380831 4.614328 -0.367308 2.965338 0.034241 3.366131 -3.008877 -0.860338 -0.477066 -0.670196 -1.389446 2.748308 -2.990958 -0.037585 0.331827 -3.896600 -2.133854 1.445460 -0.065213 0.560320 -0.081573 -0.008642 -3.593025 -0.616310 -2.590063 0.727532 3.170849 -1.244463 -3.569821 0.867823 0.405682 -1.326726 -0.223097 0.590600 0.307197 3.601214 -4.042528 -0.463572 0.728318 0.389742 -4.485604 -4.546931 -0.763418 -3.287370 -3.198045 2.808592 -4.310348 -0.869376 -3.019411 -0.373057 -4.451379 -2.400304 1.535159 5.973158 1.665728 -2.737720 1.563034 -0.087836 3.461925 0.386422 0.817514 0.537719 1.548766 diff --git a/src/test-suite/oracle/SYM_llvm17_p/ir2vec.txt b/src/test-suite/oracle/SYM_llvm17_p/ir2vec.txt index 430084ed9..e446e3f5e 100644 --- a/src/test-suite/oracle/SYM_llvm17_p/ir2vec.txt +++ b/src/test-suite/oracle/SYM_llvm17_p/ir2vec.txt @@ -1,118 +1,118 @@ -6.083689 0.211480 -0.463314 9.644128 0.749054 -4.858685 2.095407 5.615684 -2.429765 -17.515722 -11.500734 5.005258 0.614997 -0.720535 3.608053 2.196226 -0.275414 2.368168 -20.667151 5.476715 7.235422 3.634774 1.010829 -3.668942 2.330661 -4.569266 -0.287475 3.986858 1.568468 10.577058 -5.603339 2.753251 8.538209 0.645405 4.373808 8.916873 -1.077179 0.720252 0.462244 -0.038638 14.105197 7.475691 -1.270572 5.067815 3.656288 10.690592 0.189416 7.079293 -1.460175 -7.278035 4.085773 -2.225107 -7.065492 -1.381431 -6.477227 4.864559 10.250011 6.956903 -5.193019 5.435049 -4.487648 -0.673640 2.829975 -2.835095 10.643114 5.387542 6.049163 5.818961 12.669763 -6.344787 -1.667159 5.440265 4.985002 -0.450998 4.237550 -6.390998 -8.173319 -10.380698 -1.021011 -17.919033 -5.890595 0.002873 16.493032 -9.876939 2.100607 4.711142 0.255918 8.858770 -5.437713 -1.174444 -7.797092 0.352644 -3.676810 14.377807 0.794833 0.914801 0.492290 4.274441 5.122785 7.955535 -1.164588 -6.319575 -8.073884 -18.381843 -3.174785 -3.605042 3.429814 3.488521 -12.243101 -2.979852 2.883313 10.771824 -14.940881 -0.532213 8.154672 6.025434 2.335976 -1.286838 -7.703229 0.776954 0.403449 1.381142 7.115545 -6.578552 -0.442363 -3.423752 1.760340 0.379361 3.319504 -0.396138 -10.463619 -6.672804 -0.317897 -2.148641 -0.263201 1.289289 3.480475 -5.067266 6.407096 -6.997074 8.702494 -13.614414 1.243004 -4.417969 -8.264708 -2.080728 10.576277 8.815531 4.686642 -2.135007 -4.096967 -3.163222 -11.305503 -13.767595 3.537920 0.771820 6.147011 1.043871 -0.986243 3.003936 -4.344581 -0.156688 1.990813 -4.348111 -0.571882 -1.946174 10.040686 -0.582716 -2.366408 -8.024449 -1.362135 2.476637 -1.383721 5.686386 -3.615796 -10.783009 -13.460857 -8.820639 8.812250 -2.814455 0.084640 -5.418845 0.000592 -8.000714 2.980263 -8.755004 2.472952 -0.180073 -7.689492 -10.734691 0.189845 -2.078660 -2.036559 0.363485 -6.319260 -2.401749 7.534687 4.147421 3.515627 1.412722 1.517921 -10.541230 -8.950531 0.131979 -3.860408 8.955262 5.736794 -0.396461 -8.947574 -2.581615 -9.626057 9.284548 -3.655677 1.345225 -4.438229 -3.272597 11.951621 -4.864944 -0.640135 -9.247616 3.246328 3.615990 -16.416298 12.589327 8.568667 -4.765967 -2.571348 -2.294962 0.895953 7.439657 9.715674 -6.005483 -5.848339 1.849297 -4.320902 -0.380486 -3.493972 6.987957 -6.506360 4.085134 -7.292398 -4.650341 5.089167 6.606611 0.173518 5.023004 3.003932 1.590677 3.273935 8.788499 5.776765 -2.878055 -8.785275 -19.349710 6.676645 3.543443 -0.506863 -0.304442 -4.310173 -8.347480 2.043874 0.270358 10.311105 8.030255 -3.128986 8.319479 -9.953618 -10.206272 -4.842915 1.199919 1.058153 -3.752155 1.095669 -3.907916 3.332481 3.624491 -0.342617 2.438731 -6.853937 -6.414731 -0.502195 9.154218 4.080818 -0.324119 10.983045 2.415751 -5.914972 -1.417236 1.111158 0.554741 -0.770277 -6.108573 -4.569328 -3.464241 2.676052 -4.040406 5.917603 -0.872483 -0.205559 4.363365 -4.600269 -0.154733 -2.195714 6.931641 0.767838 -2.601376 1.041324 2.467346 -0.739276 -12.054060 -7.822400 4.771199 0.789874 -0.373847 2.479510 2.720087 -0.128867 0.522360 -10.453327 3.310018 4.080929 0.835882 -1.679997 -0.487443 0.963725 -3.616656 0.197627 2.247425 0.792289 7.042189 -3.467057 3.437858 5.880476 -0.231573 2.810109 5.269434 -1.401149 -0.466735 -0.239352 0.383142 9.603138 3.823324 -0.019158 3.614945 1.715061 7.098908 -0.921690 8.638209 -0.179324 -4.659203 4.525107 -0.144513 -4.321054 0.171811 -4.793260 3.684371 6.111251 2.687349 -3.307778 2.859279 -3.620754 -0.203753 1.954927 -1.021070 8.280392 5.164276 5.121856 5.012619 8.417107 -3.720385 -0.748815 3.664932 2.944397 -0.276715 3.887458 -3.431909 -4.439892 -3.329308 0.029981 -9.036360 -3.388491 -0.881084 12.448872 -6.889746 -0.627097 1.667452 1.786259 6.998596 -4.121395 0.359916 -5.518348 0.532262 -2.122062 9.354196 0.001137 1.439103 -1.686699 2.230654 2.178708 4.559031 -1.073482 -4.248335 -6.185948 -11.115207 -4.294037 -2.341019 1.801297 2.512093 -9.621358 -1.064933 1.338467 6.399688 -10.054559 -0.384514 5.292481 3.752506 5.043810 4.148785 -6.621294 -0.222927 1.705933 1.260175 3.632382 -1.438421 0.557299 -5.010558 2.106064 0.025675 2.400134 -0.287260 -8.997876 -3.586902 -0.234063 -1.658864 0.099974 1.509811 3.543304 -3.959968 4.592400 -3.186900 5.044490 -10.300671 -0.931661 -4.446692 -5.764862 -1.328822 8.313056 8.124348 6.065723 -0.939727 -3.298818 -2.908910 -9.392287 -9.691211 0.281644 -0.826604 2.724789 1.089327 -0.715448 2.432768 -2.756760 0.968928 3.094849 -3.594469 -1.097932 -2.301309 7.565448 -0.544096 -1.783950 -5.671661 -2.132823 -0.058647 -1.451942 4.821896 -1.444174 -9.201387 -10.351165 -5.791536 5.510956 -2.008694 1.073178 -4.200020 -0.299266 -6.114915 0.423405 -5.364606 0.575284 0.094284 -5.447995 -7.170579 0.629107 -0.514031 -3.718708 -0.579091 -5.099138 -1.367829 6.277687 2.940235 3.076823 1.315594 -0.847330 -6.877078 -6.452478 0.741642 -3.236931 6.746028 5.838190 -0.805416 -5.135795 -2.202841 -8.396193 5.844167 -5.382991 1.475242 -1.058586 -1.894601 7.037749 -4.903854 -1.869607 -5.886611 2.033542 1.030331 -12.436909 8.497761 5.400734 -3.249785 -1.209555 -1.923422 1.882146 4.433681 6.372580 -3.956218 -2.767216 0.543155 -1.265113 -0.277859 -0.758634 4.980258 -5.159100 1.870292 -5.016449 -3.301415 3.950731 5.256880 -0.161764 1.827430 1.403880 0.237704 3.581227 4.927122 4.459660 -2.319976 -4.431448 -14.204236 3.492812 -0.700012 -2.389817 0.657305 -4.055279 -4.901093 0.580619 -2.666749 7.285535 0.385993 -0.815111 5.627502 -7.377815 -7.057114 -3.182548 0.202023 -0.063206 -2.262559 1.657767 -2.068337 1.628130 2.350121 0.095655 0.104944 -5.569802 -3.576252 -0.110952 5.903434 1.227712 0.532694 6.745769 2.444858 -3.130937 -1.619643 0.702749 0.055400 -0.263749 -6.484705 -2.938012 -1.980938 1.276796 -3.088304 3.771730 -1.060217 0.233462 2.539075 -80.052592 2.418637 3.148705 103.172783 30.432447 -89.466103 23.934192 73.891223 -35.939958 -181.070183 -109.574076 44.763118 -1.985355 -34.498739 45.196409 23.153549 -8.951349 33.080318 -206.295780 82.168300 63.276026 46.168052 -12.134123 -68.467374 31.715414 -28.872995 -32.601565 55.314907 7.701614 103.950548 -81.469135 10.282601 78.895228 16.409164 52.169660 80.751880 23.083546 0.884040 23.975875 11.156850 168.301612 72.167837 -20.671377 63.834171 72.533419 110.116004 -14.762462 99.366907 -46.588814 -59.742681 46.118600 -43.112053 -73.351484 -6.662200 -82.062642 78.631924 139.182715 83.500003 -66.724059 65.112399 -45.406007 -2.326534 36.584077 -35.619488 128.831684 84.997549 55.359524 60.539711 177.767406 -56.333644 -23.733233 56.805563 101.839373 -9.413987 38.394640 -65.793096 -68.954493 -170.486681 -6.021114 -198.921357 -38.115673 -8.874414 184.107098 -111.770997 38.740278 83.767359 21.284797 95.354498 -80.956777 -14.078313 -84.996971 16.090325 -50.713037 194.916994 -5.866692 22.559387 -9.567034 55.067303 63.883442 97.664405 -19.898350 -52.566138 -107.291279 -227.739845 -66.831503 -11.303952 -3.861549 -3.026429 -152.181164 -35.850363 82.504745 117.300726 -165.145334 -19.909919 86.744413 57.404715 18.777499 -7.882733 -101.205399 10.354034 -16.605408 10.385062 42.461474 -60.357685 -16.317403 -64.222699 11.288947 9.819852 46.596256 -13.499637 -128.653127 -49.902855 -12.331446 -31.097793 -11.339441 -9.044864 8.611917 -88.532183 64.951077 -82.269632 86.566364 -161.350413 3.138649 -56.599088 -106.959857 0.647788 121.271849 73.495443 49.093256 5.422536 -51.244714 -55.036321 -126.445349 -171.700958 48.729204 -8.973048 70.656399 -7.935684 -6.191833 1.262825 -32.361708 -45.348375 45.963299 -72.249491 -14.341974 -56.982306 153.968951 -26.851553 -23.581522 -108.982833 -6.939918 85.796856 -10.564047 30.893125 -48.746288 -95.012636 -133.605845 -105.378010 86.594569 -16.523501 6.949423 -52.753660 19.367040 -119.536096 55.318938 -88.613811 45.848693 -11.183778 -87.923921 -113.360845 -3.789913 -20.208927 -27.190016 -17.896968 -69.676763 -7.654224 50.113908 43.783629 21.915132 16.253916 21.576721 -142.832377 -143.057169 -17.351746 1.454730 100.761172 61.792712 23.801962 -89.404127 -24.217263 -118.710360 119.638284 -80.293988 1.725495 -27.868791 -36.170621 149.469716 -58.458996 -40.890133 -111.647485 43.586013 21.124812 -132.911437 170.732270 90.530752 -77.949744 -48.716638 -67.229314 22.246563 89.038953 155.909214 -75.607789 -45.810403 32.902629 -26.014307 -22.714814 -53.427238 93.316971 -66.492718 83.136545 -92.293500 -69.378796 36.008864 102.419318 -5.778864 61.081246 8.383619 19.776810 -0.838881 114.542017 54.391453 -27.570849 -88.325207 -187.898604 51.402978 15.316737 5.046905 4.300309 -65.144179 -100.572155 6.142336 29.031652 130.036728 93.531180 -13.678694 86.114366 -118.648092 -113.088090 -20.462199 33.501563 8.980537 -71.483328 35.636760 -55.149102 11.594690 42.602704 13.983516 27.275021 -75.755306 -108.888484 -31.701427 88.491768 41.923050 -39.307365 124.944974 29.771873 -64.712171 -5.683499 4.385719 39.108156 0.287041 -43.930285 -49.564117 -64.884850 17.706334 -46.228403 111.752712 -1.577508 3.131413 55.551519 -2.597493 -0.781716 -0.101424 3.695572 1.014729 -0.655354 0.537755 1.771505 -0.249913 -7.312694 -4.541095 2.417299 0.026688 0.575634 1.633095 1.157016 0.937175 0.783655 -6.331656 1.527620 2.181653 0.953877 0.473675 -0.232414 0.943075 -2.031913 0.163025 0.923553 1.166693 4.043336 -2.465457 1.473312 3.427224 -0.013208 1.459732 3.053182 0.706597 -0.353752 -0.763889 -0.809822 6.013709 1.751978 0.162066 2.810088 1.082822 4.170935 -0.652704 5.101963 1.607243 -2.832570 2.601091 -2.765214 -2.536292 0.128897 -3.315161 2.562351 2.961335 1.995985 -2.203550 1.703819 -1.211967 0.218407 0.765758 -1.934336 3.804329 2.297284 2.470006 2.435712 4.660243 -2.853365 -0.905847 2.719431 2.127655 1.546236 1.714235 -2.580956 -1.792698 -4.047255 -0.445662 -4.601802 -1.740949 -1.385001 6.903685 -3.927871 0.171134 2.261539 -0.680126 3.492966 -1.582789 0.575817 -3.745650 0.409199 0.101799 3.681253 0.362253 0.088490 -0.491004 0.921371 1.051073 3.015519 0.180722 -2.430569 -4.037758 -6.580504 -2.217266 -1.452822 1.632210 1.313342 -5.115550 -0.192120 0.989754 4.405871 -5.404929 -0.335410 2.625118 2.363475 1.863300 1.942105 -2.991122 -0.848245 1.208964 0.830588 2.076994 -2.270333 0.222061 -2.617319 0.694570 -0.060414 1.672173 -0.504316 -3.276770 -2.859288 -0.259351 0.179618 -0.088435 0.198646 1.840298 -2.452928 2.852761 -1.513938 2.814014 -4.912141 -1.063557 -1.857928 -3.085700 -1.169488 7.823298 3.406881 3.938150 0.490052 -2.349398 -2.082989 -4.208006 -5.051680 0.679702 -0.257998 2.358434 1.607244 -0.277333 1.799136 -1.591733 -0.190984 0.063755 -1.928542 -0.558641 -0.601072 1.508441 -1.135140 -0.518958 -4.324359 -0.203803 1.422171 -1.447262 2.158670 -1.128784 -4.898840 -4.696900 -3.557826 3.295901 -1.558984 1.201721 -1.489010 0.201736 -2.944182 0.464774 -3.301611 0.152272 -0.002629 -4.313837 -4.365278 0.728452 -1.035063 -1.229558 1.025833 -2.848693 -0.188003 2.181531 2.762907 1.609908 0.763594 -0.436635 -5.046874 -4.237497 -0.861804 -2.149431 4.301347 2.049255 -0.735655 -3.262581 -1.882681 -3.790152 3.839400 -3.812941 0.613881 -1.069744 -1.027560 3.468358 -2.277391 -0.430478 -4.123559 1.610015 1.694633 -7.674834 4.259351 3.181724 -2.253611 -1.173965 -1.805559 0.849826 2.649988 4.247714 -1.994188 -1.550361 0.900141 -0.656595 -0.094233 -1.916380 2.882260 -1.999797 1.107336 -3.354977 -2.350672 1.885210 2.759018 -0.134472 1.174554 2.392408 1.643013 1.631483 3.796537 2.386492 -1.089736 -3.118932 -8.387111 2.441069 3.733042 -0.602160 1.243060 -3.483137 -2.500989 0.853885 -1.135688 3.938149 1.497504 1.079912 3.562338 -3.604540 -3.663413 -0.909428 -0.330123 0.277207 -1.303763 1.528600 -1.742742 0.718344 0.857369 -0.226229 -0.046976 -2.236609 -2.529684 0.018134 3.463730 1.738989 1.261699 4.036399 1.508772 -2.613602 -0.015948 0.465921 0.409276 -0.386295 -3.202929 -1.401767 -0.803264 0.272754 -1.794606 1.868889 -0.496397 -0.403495 0.841078 -1.003333 -0.201338 0.124531 1.906617 0.453613 -0.308394 0.294690 0.670559 -0.096639 -3.566543 -2.271976 0.886451 0.034420 0.261879 0.756203 0.458083 0.445549 0.654756 -3.286111 0.626798 1.231206 0.667002 0.552260 -0.368422 0.468552 -0.898622 0.199255 0.458739 0.608947 2.046654 -1.209432 0.712255 1.728036 0.082899 0.695793 1.564573 0.180223 0.001237 -0.381758 -0.419013 2.914002 0.791637 0.188694 1.362338 0.470421 2.070267 0.008525 1.826034 0.911493 -1.395435 1.064725 -0.952741 -1.094125 -0.116606 -1.582203 1.232063 1.713216 1.221059 -1.098099 0.878471 -0.259407 0.149325 0.433281 -1.032735 1.768544 1.072607 1.034635 1.228353 2.264783 -1.453094 -0.335421 1.024768 0.972708 0.492364 0.915261 -1.543298 -1.003322 -1.906459 -0.445490 -2.669856 -0.598776 -0.400531 3.128313 -1.919845 0.277119 1.067699 -0.422124 1.672810 -0.569378 0.017510 -1.769534 0.209906 -0.202520 1.916566 0.252180 -0.110196 -0.086898 0.545229 0.544891 1.409402 0.167598 -1.219328 -1.599206 -3.493308 -1.047204 -0.789801 0.959722 0.667722 -2.335261 -0.191082 0.264242 1.838067 -2.823024 -0.239205 1.311265 1.287947 0.117135 -0.180795 -1.293913 -0.347245 0.359964 0.465856 1.023069 -1.279506 0.051715 -1.024407 0.011748 -0.000226 0.887469 -0.265329 -1.089213 -1.564175 -0.438079 0.210128 -0.090241 0.126640 0.888739 -0.931545 1.382225 -0.916993 1.519324 -2.351011 -0.215953 -0.900313 -1.321849 -0.663514 3.023529 1.136756 1.576042 -0.055709 -1.086675 -0.876078 -2.001215 -2.299928 0.584429 0.035574 1.205552 0.914936 -0.226779 0.852226 -0.896119 -0.125555 0.178106 -0.914725 -0.323862 -0.257031 0.837938 -0.536958 -0.396688 -2.020571 0.037500 0.763048 -0.730334 1.016409 -0.636669 -1.810228 -2.331266 -1.748494 1.699856 -0.838204 0.523424 -0.782929 0.145319 -1.370811 0.390382 -1.779265 0.057715 0.048925 -1.943534 -2.208795 0.258290 -0.590096 -0.346533 0.645714 -1.491869 -0.042989 1.091406 1.313286 0.678167 0.333681 0.037366 -2.454140 -1.915323 -0.434036 -1.003330 1.641540 0.879156 -0.194938 -1.824398 -0.930015 -1.533374 1.628757 -1.253330 0.346576 -0.617453 -0.424990 1.679196 -1.092662 0.158288 -1.927231 0.611393 0.935159 -3.792590 2.030863 1.410811 -1.030666 -0.515751 -0.798395 0.431474 1.069458 1.959648 -1.084920 -0.913109 0.489244 -0.640668 -0.010472 -1.167695 1.327369 -0.913170 0.507895 -1.648722 -1.062189 0.965767 1.258726 -0.058294 0.800489 1.340976 0.697722 0.691860 1.922008 1.176600 -0.374371 -1.583775 -3.886884 1.205619 1.729797 0.091947 0.505805 -1.320178 -1.225800 0.552526 -0.042754 1.925379 1.216921 0.371017 1.815163 -1.678809 -1.811895 -0.466153 -0.205253 0.385843 -0.716261 0.349476 -0.946082 0.366137 0.360044 -0.091390 0.144995 -1.015191 -1.148116 0.101073 1.942332 0.782389 0.577343 2.050957 0.651109 -1.384194 0.108943 0.147245 0.157519 -0.203383 -1.321815 -0.699835 -0.285704 0.240391 -0.941040 0.941182 -0.535896 -0.153713 0.397691 -5.668467 0.121758 -1.587546 10.637499 -0.144084 -3.314034 1.230734 4.295403 -2.180248 -19.339241 -12.255561 9.789435 0.866040 1.376050 3.251643 2.930764 0.156243 1.990053 -20.639613 4.685684 7.130016 3.196020 1.589674 -2.417447 2.472800 -4.908439 3.048886 3.385050 2.815595 11.276897 -6.019725 4.062602 9.462977 -0.274123 4.122648 8.656521 -1.744002 0.735546 -2.636574 -2.127887 14.727067 6.219136 -0.035251 6.635915 2.420064 11.389699 0.340761 8.052003 4.247864 -8.361307 5.057163 1.462675 -7.261528 -1.852421 -6.993872 5.207884 8.089881 5.587360 -5.493191 4.520425 -2.448676 -0.690165 2.530945 -2.894966 10.819717 5.361010 7.400666 6.931914 11.608326 -7.490107 -1.913584 5.980430 4.310896 1.429201 6.047175 -7.389172 -8.713936 -6.768962 -1.745095 -17.054148 -6.835609 -0.692395 17.437507 -10.795369 0.824850 3.103666 -0.693238 9.838415 -4.218825 0.321510 -8.629695 -0.340894 -2.390750 12.954604 1.550289 -0.025962 0.370594 3.701928 4.262586 8.454580 -0.040880 -7.341472 -6.932729 -16.841345 -3.826164 -4.489239 5.384039 5.447107 -12.921018 -2.009629 1.134582 11.640858 -15.579710 -1.038780 8.440572 6.428881 3.996149 -0.356868 -7.547039 0.419008 1.914358 1.601374 7.723743 -6.047014 0.247560 -1.806876 1.351732 -0.247690 3.979422 0.288549 -11.199755 -8.888685 -0.459104 -0.388335 0.020683 1.308185 5.171021 -4.143629 7.264424 -5.215812 8.883846 -13.916955 -0.164529 -4.511705 -6.260176 -3.259133 10.701990 9.248159 7.268768 -2.930155 -4.477321 -3.424211 -12.076640 -13.020043 3.489818 1.318857 5.102418 3.476052 -1.294175 5.489578 -4.820414 0.863020 1.977726 -4.655741 -1.400636 -1.354267 7.202879 -0.810990 -1.966558 -8.454698 -1.633370 -0.323661 -1.885978 7.285882 -2.880555 -13.569059 -14.872387 -8.990656 9.526409 -3.886996 0.744108 -5.033532 -0.884187 -6.818951 1.287817 -9.968678 1.341903 0.185690 -8.912227 -11.585219 1.220048 -2.260381 -2.936569 1.454674 -7.955310 -2.300291 7.084714 4.434339 4.337058 1.376131 0.786135 -11.646656 -8.646694 0.606520 -6.196923 8.632048 6.279118 -1.240650 -10.868346 -3.963400 -9.814562 8.399926 -6.230919 2.496437 -4.327985 -3.062092 11.052268 -5.890958 0.562293 -9.012518 3.511432 5.219860 -20.347129 12.511875 8.637324 -4.142862 -1.592686 -0.434460 0.966670 7.400901 8.778170 -6.893681 -6.809657 1.544562 -3.927498 0.268850 -2.887486 7.605108 -6.549918 2.696417 -7.538053 -4.796495 5.455425 6.003079 0.983437 4.761806 4.776618 1.020906 4.104646 8.934074 7.027531 -2.325533 -8.722322 -21.298911 7.752247 4.040118 -1.385834 1.463447 -5.728947 -8.070442 3.030896 -1.481430 10.246680 2.161796 -2.534054 8.961140 -11.030551 -10.462870 -5.317122 -0.900457 0.801763 -1.864103 2.004478 -3.562488 3.207876 3.623820 -1.571027 0.323163 -5.462654 -4.053557 0.609770 9.948333 4.830728 2.399406 11.240364 3.223559 -7.391135 -1.241989 0.873030 -0.759042 -2.059834 -9.271859 -4.196624 -1.913666 2.711040 -4.613695 3.708882 -1.369686 -1.048058 2.320426 -8.015922 4.824735 -10.609800 26.845740 -3.249239 -5.354495 -0.271027 5.012913 -9.002019 -42.178520 -24.461933 12.805422 6.118281 8.313518 6.925070 9.809146 -3.667073 3.014685 -42.017479 8.428131 19.212920 7.703205 3.483792 -1.491617 5.355359 -9.310867 7.147351 1.325229 6.649349 25.288572 -11.759982 15.667326 21.442022 -5.643715 6.470383 14.997132 -5.292838 4.682775 -7.424088 0.195854 27.370516 11.028512 0.402223 8.997356 -1.908304 23.524558 0.491129 14.154701 -6.664201 -20.439022 9.300363 9.802332 -10.453071 -3.784284 -10.005301 10.607079 18.770089 16.772584 -8.863222 6.097786 -6.268526 -2.539409 6.524209 -0.714892 23.768822 12.071933 19.172081 18.260043 22.364599 -13.125987 0.112747 8.831661 -1.414343 -3.981368 16.372037 -13.859279 -20.143657 -4.681030 -5.916729 -35.202039 -16.008363 2.742956 35.790336 -24.217947 -0.511412 1.475485 3.496540 24.273196 -9.833720 3.981488 -16.139914 -4.295391 -10.529839 28.239420 3.817226 0.260734 -2.506399 9.537525 8.300783 12.914782 -1.260078 -15.741027 -9.896385 -26.250716 -11.110087 -9.285230 13.070178 19.907622 -31.036968 -6.133545 -6.955233 22.201747 -37.124528 2.022506 14.555002 18.441890 20.080530 2.916794 -20.621515 3.051456 4.256760 0.328334 17.396585 -9.853340 4.766090 -6.306290 2.203045 -0.504496 5.204885 2.758827 -28.474064 -17.392349 -3.231217 -9.088395 3.035636 8.896830 17.768233 -9.136832 16.390005 -12.213146 17.448388 -31.877809 -3.281758 -6.418151 -22.777244 -7.944415 12.362496 20.694971 11.429110 -13.252266 -15.897160 -5.877094 -31.349732 -25.510103 1.961454 5.665588 6.848816 12.651764 -4.681176 14.608918 -13.109942 7.540505 12.157365 -6.846058 -4.993121 -2.066223 21.837580 1.658396 -3.385563 -15.308107 -8.606500 -10.964539 -1.250868 24.204000 -3.318549 -22.931631 -41.164205 -14.910247 20.820248 -8.210622 1.836546 -15.867750 -3.589596 -21.376293 1.027471 -23.270348 -0.843125 1.465583 -13.255687 -24.270798 4.167704 -2.262964 -11.957824 1.872062 -17.021591 -6.054767 22.092431 5.040855 11.162992 -1.935790 0.895795 -19.916917 -15.463613 8.428846 -18.569596 16.332103 12.279966 -5.382390 -19.086654 -8.045149 -22.005528 16.522044 -3.096557 6.977960 -8.218424 0.421692 20.813436 -16.255569 0.008283 -18.386141 3.872352 7.857049 -38.257504 26.514035 13.621913 -5.015917 3.074510 5.090535 5.255917 12.318605 9.032949 -13.290015 -16.363229 0.308998 -6.242402 1.854491 -7.206679 12.993668 -19.737557 0.364983 -11.357714 -5.779234 12.863336 10.912463 1.085726 8.028098 9.399946 -7.770721 9.619848 13.773728 19.199409 -7.057062 -13.755575 -35.445298 14.680300 -10.090160 -6.215637 -7.463755 -7.679981 -12.508346 8.595568 -3.730361 20.744875 4.894267 -9.960975 18.594305 -29.362354 -22.043928 -14.858922 0.074595 0.447710 -0.831856 -3.590666 -7.342354 10.832410 12.311545 -3.491417 -0.496538 -19.205972 -1.864731 1.970193 22.765185 1.119677 7.005201 23.973714 8.869577 -10.257539 -4.489791 5.714089 -4.805726 -7.467480 -20.953094 -8.814676 0.765473 5.853549 -11.370751 3.531232 -8.697648 -5.829725 8.034019 -84.955296 -1.013257 10.486377 94.933304 37.197122 -100.303870 31.774686 79.761470 -34.756600 -176.947035 -99.977118 36.395361 -4.616344 -53.225810 42.453261 21.840842 -6.203819 41.607600 -198.813458 87.307127 62.256431 49.660257 -18.638443 -76.457235 29.386183 -32.244743 -49.460302 60.755967 2.128641 104.525232 -82.403449 0.256108 76.752006 20.972339 52.385956 90.140096 35.054922 -2.547461 41.940831 22.598203 172.609657 72.881147 -25.275019 60.968911 86.243108 111.452979 -19.906666 101.658710 -62.273328 -53.040434 43.899591 -53.771318 -74.868080 -6.445021 -86.409483 78.145439 145.572222 87.542790 -70.100288 73.223744 -53.065617 -0.284888 38.534499 -31.528055 128.403513 90.643578 42.737385 58.073582 192.249305 -52.667244 -25.074925 56.356369 111.414296 -13.031899 39.163076 -53.314217 -64.780290 -193.621080 -6.241484 -196.532574 -31.201771 -8.091835 185.704339 -110.891878 44.505674 99.985986 31.712778 93.674072 -82.861681 -24.292352 -86.900501 22.775353 -50.380084 207.048065 -8.249726 32.515697 -18.595358 56.846344 65.355058 96.524496 -21.219835 -55.287777 -120.621938 -240.971666 -72.626989 -17.129212 -21.214433 -18.563714 -159.658711 -38.909554 107.915786 124.193658 -169.394655 -15.766107 86.058781 52.695736 15.070871 -10.997018 -104.385451 14.111387 -25.382709 7.196025 28.963083 -60.435803 -27.245731 -73.324642 13.928127 11.290083 42.315691 -22.165448 -133.365892 -37.471866 -7.556525 -35.197428 -12.703141 -9.527499 -1.145998 -101.664960 57.955906 -93.383907 86.570110 -161.119336 5.231211 -58.515393 -116.001581 3.478192 128.841239 68.399450 45.106330 11.231962 -52.502745 -58.859050 -124.801399 -185.122636 51.062093 -24.110426 76.103511 -19.499768 -5.079987 -16.728864 -29.925698 -53.818994 43.638389 -75.996132 -6.634867 -61.518434 166.702778 -32.071332 -25.143556 -110.652435 -9.162909 108.108983 -0.476299 19.328916 -57.719622 -83.939005 -127.851353 -110.170896 85.281248 -14.030819 5.803203 -53.263496 19.903653 -125.275852 65.413973 -79.040865 53.589417 -18.897603 -82.205657 -114.193053 -4.787582 -22.682168 -27.915924 -23.637454 -67.733105 -4.115187 38.877204 31.786617 17.764748 14.413808 19.375117 -145.382725 -149.962491 -20.789262 15.983224 102.540836 65.387781 34.306059 -84.135504 -20.258757 -123.986306 125.987030 -90.428380 -1.425746 -17.070323 -45.187611 159.774072 -54.639031 -52.083727 -114.991224 49.438137 11.307190 -111.422405 181.474148 93.106774 -89.726991 -56.655796 -77.944569 21.792097 93.451488 167.084000 -76.015223 -40.215169 41.391386 -26.525418 -27.036560 -54.520991 93.447290 -64.853213 104.841132 -98.968620 -71.337764 34.986829 115.055724 -13.660709 60.830632 -2.131904 20.834224 -9.283193 118.054744 49.946218 -22.531296 -90.749198 -178.862827 47.558987 3.301658 12.131206 6.235414 -65.422200 -100.689403 4.391229 36.562837 136.120574 102.450713 -13.245917 85.959648 -120.095270 -118.314074 -12.012917 37.121421 14.464312 -83.403366 45.714701 -56.955035 6.124159 38.494230 26.487022 35.108406 -80.308196 -117.110165 -31.942302 86.291652 47.038227 -58.983985 126.858725 23.191710 -61.595195 -3.457903 0.931650 52.156284 6.949882 -32.343845 -49.435537 -74.822966 20.973992 -46.755468 134.675087 -0.602296 10.103875 63.472954 -22.933704 0.245839 -1.999402 29.459634 8.852984 -16.210636 0.109474 17.318903 -8.511063 -49.640673 -36.990014 19.556993 -0.714048 1.754482 17.548693 7.736148 1.334342 3.185295 -53.929199 19.521826 12.322181 7.907319 -2.314642 -11.252229 10.040811 -4.668428 -1.977570 9.183812 6.376227 25.173604 -24.099837 8.983208 19.939696 2.260077 17.002098 12.775040 2.017567 -2.126190 -4.145720 -7.317272 47.324537 14.126498 3.883548 24.492194 14.660938 26.810156 -7.830181 37.989052 6.558302 -17.431635 21.979476 -16.949787 -17.982470 5.101511 -24.557107 24.957877 29.333873 12.083921 -18.092487 12.808838 -3.788967 1.156404 6.901472 -18.144187 35.484025 20.310743 19.998649 15.690712 38.543621 -15.464973 -6.614898 16.980931 27.364839 6.000678 6.266937 -27.553567 -11.913344 -32.218993 0.374201 -45.800033 -7.565084 -10.405294 51.900950 -29.739483 6.742146 16.843214 -4.389158 25.256761 -18.672462 4.210379 -22.670964 2.234300 -9.257586 35.555495 -2.504353 1.077775 1.294580 9.108225 11.946110 27.500896 -6.087640 -10.689176 -25.876685 -53.968512 -19.201694 4.637660 8.332377 2.844039 -36.511763 -3.901388 6.438257 27.702286 -36.966384 -10.859800 21.022518 14.792295 2.354844 12.055670 -25.893055 -7.616376 2.732270 10.052809 14.040683 -13.657698 2.235033 -22.044064 -0.065162 2.056488 19.848233 -1.799254 -25.096009 -20.629064 -7.024531 -1.587448 -5.322871 -6.623268 6.913416 -17.528952 22.643451 -9.095820 19.322280 -40.857333 -7.567892 -19.093568 -21.753785 -0.406608 43.317398 20.629242 24.823971 8.408428 -13.078658 -15.381708 -33.151757 -35.582930 11.186307 0.797936 17.260555 6.138240 0.075732 10.133123 -7.258052 -12.709701 10.058452 -20.640078 -10.564044 -17.524827 24.892622 -8.618533 -5.384757 -33.719706 3.430715 15.912775 -15.062187 10.105936 -6.771955 -33.507128 -32.458591 -26.404005 22.286455 -5.879007 9.075052 -9.048372 9.223085 -26.721155 5.725476 -28.925491 5.572797 0.357928 -31.452062 -28.211321 -1.478089 -4.212709 -5.621435 -1.363500 -19.927217 0.616474 19.008070 26.778518 6.710859 9.696490 3.276718 -41.342440 -39.888295 -9.404536 -6.386183 26.994706 14.606228 -0.092238 -26.074875 -10.936593 -28.023510 28.253737 -27.976764 0.817455 -10.001127 -5.180977 29.791021 -18.638759 -6.508311 -28.771501 8.915073 10.697860 -57.345937 34.306133 19.571811 -18.113161 -11.314016 -21.900039 9.639316 19.844633 42.183853 -15.434750 -7.895814 4.709590 -2.100573 -4.620100 -18.445111 27.500448 -14.705277 10.115006 -23.790777 -21.099074 10.396034 21.684817 3.312275 13.750696 11.303632 13.259237 7.188143 31.776188 14.937626 -11.082880 -21.112143 -62.278881 13.487878 28.703369 -2.884530 7.633675 -23.705893 -26.346568 -1.273818 -1.193190 30.686300 14.629490 10.740865 23.036553 -25.877153 -26.437593 -5.501203 7.467845 -2.255184 -14.110948 6.393084 -15.631725 2.163687 10.915069 -1.065802 1.899424 -14.247014 -32.319976 -10.160186 22.941579 10.541233 5.681331 30.808484 15.174933 -20.564154 0.368653 1.633053 7.454422 -2.528904 -20.880691 -14.409997 -13.672358 -2.420050 -12.761881 17.087704 0.341573 -0.742965 7.106290 -4.542280 0.269283 -2.304213 11.404526 -0.719538 -2.227673 1.104962 2.650132 -3.263174 -19.070063 -11.583355 6.108521 1.821243 3.318667 2.678427 3.791121 -0.790038 1.336630 -20.175600 3.651642 7.917952 2.890428 2.800212 -1.434386 2.237094 -5.054132 4.096269 2.739638 2.735267 11.406792 -5.226455 5.399446 9.872081 -0.732573 3.665751 8.450579 -1.664676 1.682494 -3.704463 -1.046910 13.171850 5.682557 0.078881 4.126535 -0.148277 11.274126 2.608778 7.031391 0.663985 -8.898369 4.704110 0.257253 -6.463086 -2.209643 -5.880224 4.085794 7.820895 7.553365 -4.533833 3.974879 -3.027706 -0.694334 2.714505 -1.242882 10.700967 3.883729 8.154186 6.853745 10.084720 -7.811466 -1.142333 5.538038 1.284990 -0.446499 6.233507 -8.380145 -9.244318 -4.808080 -1.390109 -16.765488 -7.554192 1.306318 15.926671 -10.332963 -0.142820 1.852932 -1.045037 9.986587 -4.293425 1.021205 -8.333124 -0.958242 -2.917144 12.742204 1.843257 -0.740149 0.938557 3.958791 4.585056 7.393658 -0.094454 -7.347124 -5.448034 -14.341365 -2.943335 -4.696305 6.215805 7.361990 -12.327738 -3.131211 -2.170729 10.343757 -15.728556 0.117754 8.174259 7.909956 6.253911 -0.899192 -6.536233 1.084411 2.381258 1.465048 9.550568 -6.297902 1.594375 -1.466243 2.267548 -0.085187 3.058411 0.724442 -11.479805 -8.633262 -0.517806 -2.368115 0.904000 2.523404 6.305858 -2.976500 7.334560 -5.905769 8.907831 -13.796782 0.537812 -3.367399 -8.639824 -3.631897 9.313605 9.303802 5.624638 -4.715403 -5.598232 -2.000281 -12.228304 -12.910925 1.961595 2.974219 4.254922 4.685967 -1.822436 6.507780 -5.689840 2.495126 3.287925 -3.225575 -2.187998 -0.335375 6.045379 0.807740 -2.258548 -6.917611 -1.890374 -2.908120 -1.290305 9.890690 -2.372663 -13.515879 -16.285578 -8.349670 9.648089 -3.965297 0.128284 -6.077059 -1.791099 -8.377041 1.295158 -10.387709 1.039967 1.144930 -7.860730 -11.480650 1.596037 -2.052948 -3.025083 2.145095 -7.312863 -3.119743 8.469200 3.230231 4.773432 0.652374 1.091262 -9.643672 -7.062594 2.300414 -7.386015 8.267638 4.768557 -1.855275 -9.455556 -3.932221 -8.960977 7.579334 -1.796078 2.768116 -4.859573 -1.132182 10.054815 -6.173364 2.550913 -7.722128 2.753931 5.285305 -19.606603 11.704921 8.705953 -2.851333 -0.599603 1.619929 0.908826 6.340348 6.260613 -6.320841 -7.594154 0.830535 -3.715501 0.678482 -2.594030 6.046483 -7.421749 0.283426 -6.416908 -3.955234 5.147056 4.997581 0.906939 3.946908 5.126065 -0.606390 3.857011 7.984984 6.777607 -2.561364 -7.812462 -20.595418 7.778151 2.185994 -2.112824 -0.556500 -4.111293 -6.415315 3.998642 -2.044051 9.631497 5.068568 -4.697043 9.071992 -11.273601 -10.099420 -6.967077 -0.907487 0.548003 -1.000440 -0.787604 -3.578269 4.576100 3.955653 -2.299799 0.205785 -6.377183 -1.873498 0.900335 10.580119 2.628842 3.293988 11.203735 2.815849 -5.146303 -2.220552 2.343457 -1.624694 -1.455344 -8.979388 -4.555528 -0.514630 3.289707 -4.475122 1.608536 -2.710579 -2.079706 3.371063 -4.189746 2.720533 -3.818083 13.522402 -0.824648 -3.685235 0.425785 3.306707 -4.812832 -21.959911 -12.619095 5.519416 2.468354 3.322546 3.804040 3.808134 -1.406872 2.550351 -23.220573 4.715937 10.316863 5.033896 2.215643 -1.650919 3.088258 -4.401598 2.052719 1.328517 3.422466 13.351015 -6.866588 7.148182 11.035357 -2.196559 3.600528 8.273597 -1.647282 2.328918 -2.371962 0.415480 15.112951 5.544561 0.462497 5.257388 0.372419 12.368170 -0.059702 7.243874 -2.686208 -10.500474 4.400022 3.391104 -5.313550 -1.781951 -5.528202 6.054927 10.868657 9.887205 -5.180883 3.907655 -2.820977 -1.262751 3.453178 -1.605052 12.005124 6.999330 8.304015 8.924177 13.000398 -6.573645 -0.166052 4.070799 0.519178 -2.161352 7.431828 -7.233389 -9.704049 -5.901747 -3.317634 -19.706979 -7.648461 1.333026 18.197963 -12.643939 1.260578 2.295959 1.653471 12.151043 -4.976770 0.930615 -8.734086 -1.696876 -5.560453 15.244906 1.676423 0.181889 -0.959309 4.865436 4.764205 7.154664 -1.037448 -7.874232 -5.889250 -16.093152 -6.079080 -4.497488 5.852840 8.983474 -16.180526 -3.369259 -2.189910 11.594643 -19.716835 0.387175 7.513401 9.486997 6.711208 0.384864 -10.849956 1.078445 1.193863 0.052716 8.366623 -5.815080 1.710057 -4.239470 -0.088839 -0.101969 3.031882 0.632901 -13.030183 -8.988818 -2.329608 -4.519450 0.905644 3.779170 8.055384 -4.839111 8.456202 -7.236355 9.107468 -15.957691 -1.328620 -3.345702 -11.709464 -3.889428 7.056314 9.465173 4.997436 -6.162641 -8.389784 -3.578390 -15.697212 -13.552455 2.130110 2.145345 4.881192 6.109060 -2.464120 6.354378 -6.687978 2.154002 5.846948 -3.803848 -2.324919 -1.862634 11.578353 0.045597 -1.709803 -8.972413 -3.555058 -3.108462 -1.295136 10.855198 -2.760317 -10.067522 -20.402414 -8.347196 10.867786 -4.005993 0.980857 -8.065103 -0.936558 -11.006816 1.493298 -11.936603 -0.693184 0.127544 -7.107985 -12.801291 1.788618 -1.759384 -5.609198 0.967568 -8.859858 -2.763273 10.954598 3.554232 5.477098 -1.202016 0.843209 -11.044920 -8.904294 3.102169 -8.310951 7.514421 6.008073 -1.844668 -10.372041 -4.117469 -11.035622 9.105730 -1.755051 3.122234 -3.964377 -0.408895 11.750157 -7.844467 -0.317650 -9.753194 2.055047 4.199788 -19.569725 14.284932 6.537432 -3.475684 0.639389 1.001215 2.690124 6.883710 6.135018 -7.081732 -8.119657 0.920656 -3.841336 0.691732 -5.036646 7.087670 -9.715372 1.745271 -6.578421 -3.618825 6.562603 6.510432 0.204185 4.738882 5.042890 -2.882257 4.879128 8.106414 9.348661 -3.372246 -7.080441 -18.054298 7.562332 -3.267909 -1.490453 -3.645228 -4.362662 -7.014719 4.332650 -0.394634 11.324373 4.657002 -4.135502 9.821676 -14.677717 -11.613131 -6.630394 0.527127 0.946828 -1.696832 -1.775442 -4.396955 5.308843 6.207562 -1.088708 0.970191 -9.866734 -3.037838 0.560458 11.358349 0.948090 2.801195 12.877826 4.196421 -5.958892 -1.422408 2.436951 -0.965706 -3.982243 -9.204932 -4.494829 -0.540315 2.831460 -5.929574 3.722154 -4.867133 -2.609472 4.690572 -78.942738 -2.169955 11.379833 87.218806 36.472435 -94.920544 30.205213 74.157505 -32.279560 -162.441270 -89.909426 32.361571 -5.281296 -51.259244 38.737672 19.846387 -5.849628 39.428806 -180.188390 81.995838 55.845537 46.546655 -18.654014 -72.394276 26.946204 -29.360445 -47.725185 58.178381 0.959891 95.352652 -76.836294 -2.194114 70.201495 20.123016 48.005605 83.168114 37.708101 -3.092747 39.472439 22.404941 160.705885 65.844431 -23.625013 56.553163 82.124186 103.025592 -18.559305 96.174386 -58.724212 -47.710851 40.661449 -53.250284 -69.296055 -6.619086 -81.342574 74.089014 134.844532 82.019824 -65.904089 68.755998 -49.555558 -0.341114 35.938333 -29.273996 118.995287 85.125138 38.140967 53.075336 180.822821 -48.415549 -24.825282 53.367114 106.575592 -11.253065 35.966630 -48.748758 -58.162305 -185.508281 -5.231425 -179.929408 -27.292609 -8.104024 171.791516 -102.605230 41.680500 96.113983 29.843313 85.753425 -77.808564 -23.000563 -81.269757 22.265236 -45.332765 193.449362 -8.282560 30.184023 -18.059155 52.655164 61.243285 90.473292 -19.508770 -50.042212 -114.233850 -224.562912 -69.504023 -14.724049 -23.046794 -21.033257 -148.615569 -36.813604 104.927906 115.251481 -156.383425 -15.065131 80.262017 47.976773 14.672788 -9.743624 -96.364559 13.389009 -23.691038 5.874539 24.692115 -55.565716 -26.359932 -68.940358 13.586182 10.276972 39.064508 -22.040467 -124.141676 -33.032672 -7.406629 -32.361176 -11.819391 -11.400085 -4.231261 -97.144589 53.154854 -86.942825 79.675326 -149.068691 4.446963 -54.090420 -108.326362 4.679294 123.568837 61.389396 42.676138 12.674028 -49.955335 -56.121699 -114.616123 -173.726513 47.562857 -23.851314 70.870294 -19.432735 -4.531516 -18.307098 -25.936237 -52.722991 41.153129 -71.579791 -6.166575 -57.775945 153.884060 -31.501570 -22.995191 -104.805271 -7.351343 105.131210 0.809775 15.043277 -54.561527 -77.533424 -115.484247 -102.905454 77.706878 -11.870747 5.859956 -48.315715 18.436165 -117.641880 62.679242 -72.365233 51.421476 -18.348654 -77.332478 -105.509976 -4.001726 -21.497140 -26.125009 -22.633501 -62.274474 -2.476580 31.334210 28.485044 15.536237 12.945693 17.782667 -136.740204 -141.654895 -21.461856 18.063459 95.986562 60.051426 34.698574 -76.739980 -18.437983 -115.667677 117.704420 -87.557655 -2.860073 -13.429359 -42.756890 149.119808 -50.586680 -49.659929 -107.248864 47.081583 9.620086 -99.566755 170.118287 87.380040 -85.198138 -55.044753 -74.319976 19.713567 87.757032 158.590565 -70.849488 -35.695359 39.976756 -22.501766 -26.471370 -51.104520 87.021080 -58.950309 100.137060 -93.147192 -67.950899 30.141713 109.262691 -13.793889 55.666458 -3.557597 20.465769 -12.372314 110.570740 44.860014 -19.785435 -83.325039 -164.116565 43.106339 3.033875 11.758008 7.841287 -62.658265 -92.698184 3.707674 34.979503 127.259023 95.394471 -10.711165 79.216677 -111.300447 -109.524832 -8.066170 34.728135 13.425826 -79.499563 45.683853 -53.677990 3.777871 34.596569 24.940400 31.733852 -73.108821 -110.456236 -30.920718 78.358853 44.352760 -57.063512 117.678349 20.460336 -56.498304 -2.430694 0.510965 51.140334 7.920610 -27.936962 -45.318974 -71.508965 18.815834 -42.591056 128.149704 -0.310770 9.152311 59.867564 -3.150047 1.749594 -2.895558 9.106605 -0.726852 -1.836921 0.142353 2.673710 -3.179885 -15.803247 -9.817875 4.533847 1.589107 2.872926 3.195395 2.991624 -0.542805 1.548289 -15.655896 3.091685 6.985330 3.027397 1.421613 -0.254305 2.168630 -3.396859 0.642275 0.628995 2.678811 9.385468 -4.832851 5.168918 7.851218 -1.676264 2.451101 5.657785 -1.227826 1.126112 -1.794412 -0.328888 10.824273 3.754866 0.298485 4.067001 0.122972 8.764880 -1.038038 6.114777 -1.306929 -7.534720 3.867237 0.600684 -4.100945 -0.591178 -4.064014 4.414316 6.901312 6.221155 -3.706418 2.668472 -2.307724 -0.748764 2.070350 -2.196994 8.426398 4.932577 6.247151 6.312711 8.447189 -4.874123 -0.326571 3.499810 0.335245 -0.550733 4.331962 -4.728220 -5.687300 -4.485802 -1.988024 -13.331313 -5.697135 0.133227 14.054437 -9.071137 0.424263 1.893048 0.325809 8.507951 -3.450208 1.328960 -6.456389 -1.276685 -2.883287 8.928553 1.348212 -0.361233 -0.855894 3.188661 3.048635 5.144701 -0.888038 -5.286800 -5.790183 -11.136600 -4.393828 -2.902224 4.562899 6.485097 -11.395825 -2.062241 -0.614013 8.850939 -13.405851 0.358842 5.450037 6.564963 4.647548 2.594954 -8.302912 0.268643 1.481553 0.390923 6.212194 -3.779833 1.565301 -3.536035 0.328172 -0.332267 2.424779 0.587131 -9.418541 -6.821282 -1.174174 -2.813470 0.450227 2.496452 5.909678 -3.145123 6.372362 -4.195171 6.269474 -11.442240 -1.187239 -2.606558 -7.931203 -2.750668 7.457163 8.246447 4.594638 -3.308322 -5.872683 -2.834371 -10.942086 -9.085771 1.291102 1.515628 3.919358 4.278475 -1.527114 5.095918 -4.323786 1.863429 3.024594 -2.845666 -1.515422 -1.100477 7.539661 -0.203621 -1.206612 -7.098338 -2.404375 -2.086624 -2.054338 7.279378 -1.778482 -7.285151 -13.817366 -5.958026 7.619643 -2.939306 1.397365 -5.110814 -0.381536 -7.403620 0.574788 -8.379860 -0.753347 0.281807 -6.049850 -9.066321 1.435366 -1.095310 -4.731425 1.005740 -6.078397 -1.900764 7.911489 3.202560 4.172630 -0.465379 0.163865 -7.897688 -6.531989 1.511218 -6.655930 6.127146 5.157390 -2.003659 -7.753006 -3.111218 -8.093530 7.059532 -2.487174 2.207954 -3.231626 -0.390714 7.820504 -5.676591 -0.479388 -7.194680 1.821824 3.353657 -16.020727 9.224335 5.054464 -2.388982 0.435480 0.047466 1.917039 5.160096 4.655447 -4.521736 -5.025160 0.408793 -2.500885 0.666870 -3.480190 5.432211 -6.638165 0.770971 -4.709948 -2.614371 4.905210 4.347882 0.455808 3.460104 4.166143 -0.612155 4.165142 5.665555 6.579677 -3.216953 -4.965064 -13.730148 5.613493 0.177496 -1.685721 -1.442604 -3.938424 -4.857421 2.543410 -1.711153 7.737147 2.048277 -2.015746 7.030866 -9.705248 -7.955713 -4.474697 0.329468 0.239015 -1.067061 -0.168493 -2.658455 3.577625 4.459670 -1.134747 0.580055 -6.769059 -3.174697 0.285421 8.076100 1.339920 2.909731 8.843931 3.040727 -4.742484 -0.967784 1.668005 -0.667783 -2.774397 -7.303220 -3.279152 -0.258993 1.586224 -4.278573 1.936703 -2.888653 -2.147694 2.958017 -8.095957 1.558896 -7.668200 16.335818 -1.459619 -3.470563 0.526779 3.987497 -4.472521 -26.538297 -16.870294 14.554857 3.143625 3.955334 3.688994 7.118288 -1.729177 1.192121 -23.715389 6.161249 9.487980 2.207018 -0.000624 -0.766429 2.670225 -7.037653 4.808990 2.054056 3.827479 15.238893 -6.864505 8.037972 13.313470 -2.554302 4.295894 10.397424 -3.376497 2.127765 -5.142718 -2.783181 17.791403 8.504242 0.321064 6.988961 -0.253285 14.951994 -0.683049 15.347291 -0.430077 -12.152163 8.031690 3.186240 -9.345601 -0.950336 -7.866592 6.987673 9.233661 6.559708 -5.858926 4.355990 -6.255295 -0.959427 3.645446 -1.560759 15.304291 7.747439 12.345923 10.669301 14.247243 -9.853590 -1.626371 9.284901 2.396917 0.465244 10.643933 -8.876138 -13.519847 -0.666101 -1.555351 -20.074795 -10.572457 0.044727 28.722122 -15.534806 -2.394494 1.453982 1.991183 14.979380 -7.414574 3.819256 -10.962044 -1.190154 -5.627309 18.154823 3.272123 0.878157 -2.480201 4.809375 5.000626 9.852858 -2.242479 -9.554314 -9.185073 -18.466247 -5.683029 -6.163998 8.141771 10.836625 -19.380571 -3.589672 -1.244354 17.903694 -21.816173 0.634125 11.315884 9.284510 14.994938 8.308387 -12.624839 1.771932 4.651053 0.785428 12.042669 -5.520728 1.808008 -2.680334 3.911324 -1.337591 3.807892 1.728164 -21.476455 -10.666640 -0.049330 -4.503052 2.100641 3.797893 10.023469 -6.700503 10.600229 -5.361196 10.435464 -20.985399 -2.187445 -5.296992 -14.518294 -4.537389 15.132853 17.572602 12.597427 -6.225840 -6.458410 -5.731337 -19.432237 -17.687852 1.109155 2.154146 4.633629 5.492018 -1.472204 9.277624 -7.399429 4.957531 5.417214 -5.416127 -2.529689 -0.536256 14.831781 -0.028346 -2.396355 -11.180685 -5.808151 -6.787212 -1.638399 13.727787 -1.685885 -23.198733 -23.735431 -10.752420 12.880947 -5.143682 1.815700 -8.823172 -2.597457 -10.500673 -0.899721 -13.492969 1.341677 1.782123 -10.626334 -15.371339 2.324484 -1.173668 -8.345685 0.890361 -10.330872 -3.895088 14.508328 3.984952 7.098024 1.710993 -0.327720 -14.168510 -10.157579 4.131108 -11.497855 13.204352 11.729849 -3.591333 -12.749485 -5.562774 -16.358076 10.693808 -8.329829 3.745779 -6.300751 -1.156838 13.956881 -10.326833 0.401542 -12.053361 4.131405 5.356079 -30.140172 16.199676 12.516536 -3.595618 0.470299 2.208265 1.936347 9.610906 9.132959 -8.988259 -9.269061 0.426075 -4.463375 0.733681 -0.802615 9.580533 -11.940847 0.737675 -7.856557 -4.398368 7.695540 7.117683 1.228617 3.856244 5.285525 -1.945305 8.715839 9.458252 10.998542 -5.685524 -11.330887 -31.338534 10.062076 -1.609726 -6.871978 0.022071 -6.297695 -9.095018 4.727560 -7.216120 13.476444 -1.894588 -5.564461 11.783781 -17.395561 -14.048299 -8.503504 -0.729684 -0.685114 -1.031569 2.306147 -4.312736 5.348965 6.143265 -3.234994 -1.688297 -10.006144 -2.470582 1.019864 14.414711 4.185017 4.884117 14.676225 5.412341 -7.244956 -3.508675 2.603200 -2.325080 -3.703272 -16.791320 -5.538803 -0.877677 3.495454 -6.413571 2.486200 -1.730088 -3.133754 4.709060 -8.075521 1.043748 -3.827960 16.326992 -0.175716 -4.909999 1.427689 5.632330 -3.991404 -28.337385 -18.625806 9.609059 2.065919 1.986074 5.658874 5.536718 -0.276016 3.287523 -28.521677 6.960369 11.205503 4.655459 1.828256 -2.970738 3.585013 -7.064131 1.823808 3.087226 3.882396 16.582717 -8.634143 6.957601 13.860077 -1.229716 5.421847 12.092543 -2.938705 2.012660 -2.182673 -1.272957 20.927691 8.990726 0.400935 8.159752 2.815046 16.225358 -0.635030 13.113100 0.303846 -12.389291 8.427177 -0.136198 -9.466221 -1.194997 -9.488305 8.101695 14.044357 9.646352 -7.434252 6.508830 -5.545902 -0.337802 3.926249 -4.415603 16.155927 8.784949 10.988728 10.294458 17.156471 -9.823160 -1.787756 8.132661 5.019414 -0.080006 8.790606 -10.980783 -12.282382 -9.255147 -3.045222 -24.676982 -8.256740 -0.062255 28.058936 -16.192194 0.806092 4.955068 0.254181 14.721068 -6.911353 0.712834 -11.720830 -0.072245 -6.017200 19.579019 2.390950 0.488703 -1.033123 5.831548 6.094209 10.966158 -1.525238 -9.765206 -11.460515 -25.062121 -7.082223 -5.947630 8.066984 8.529570 -20.099275 -3.616513 1.194656 15.849941 -23.699963 -0.036504 11.929981 10.436346 7.138063 1.580956 -13.328025 0.500648 2.298502 2.530621 11.201729 -8.192889 0.747839 -5.756016 1.945380 -0.355988 5.305354 -0.157024 -16.495078 -11.609467 -2.224354 -2.988152 0.350588 3.086126 8.573689 -6.930628 11.121100 -7.951359 12.335181 -21.981855 -0.706962 -6.800978 -13.425934 -4.350419 16.379388 14.489780 10.441756 -4.961194 -7.705313 -5.860950 -19.348806 -18.469837 3.493365 1.651864 8.013417 5.130148 -1.682781 7.485212 -7.184270 2.058749 4.186406 -6.450696 -1.772635 -2.112278 14.875477 -1.361692 -3.457508 -13.617032 -3.610188 -0.618439 -3.425574 10.968730 -3.741236 -17.660000 -22.996494 -12.493652 13.815521 -5.500920 2.309958 -8.497117 -0.433007 -11.977917 2.114039 -14.745713 1.270347 0.908506 -12.175528 -16.734119 1.278900 -2.517104 -5.503702 1.356888 -11.049851 -3.371386 13.583441 6.824766 6.722736 1.938757 1.110635 -16.869404 -13.102034 1.154066 -9.806448 12.674508 10.367825 -2.375113 -14.352369 -5.259262 -15.385020 12.213492 -6.560687 2.876246 -6.686691 -2.624679 15.767853 -9.353208 0.637156 -14.250732 3.856105 5.883729 -30.584863 17.839884 12.156581 -5.827110 -1.461613 -1.618971 2.657481 9.799514 12.092455 -8.972359 -8.902852 1.615756 -6.371516 0.372526 -4.975214 10.771336 -11.157228 3.186360 -10.090729 -5.795502 8.431392 8.949608 0.755851 6.450012 6.522814 0.824901 7.271183 12.028142 10.565133 -5.282342 -12.369905 -31.275762 10.261222 3.691596 -2.869896 0.103280 -6.666955 -10.934150 4.093467 -1.843498 14.972997 6.593811 -3.328970 13.031858 -16.319813 -15.227401 -7.430084 0.437705 1.142931 -4.068734 0.906911 -5.815683 5.035797 6.109176 -1.508124 1.529823 -10.618655 -7.101796 0.223321 15.832425 5.238909 3.194970 16.370863 4.996769 -9.365359 -1.979301 2.090690 -0.491200 -2.680864 -12.632926 -6.469443 -2.733473 3.347987 -7.058935 5.973550 -3.102460 -1.798462 5.448142 -8.195522 1.473794 -8.727729 18.327794 -1.970363 -4.462432 -0.173218 3.682997 -5.203675 -26.903904 -17.713624 13.612530 4.177442 4.253399 4.748574 7.996455 -2.199911 0.379613 -26.842659 7.087944 10.054889 1.672923 -0.799209 -1.393724 2.740584 -7.290982 7.256094 2.360178 3.257340 15.820578 -7.329757 10.190234 13.204976 -2.685369 6.415728 10.520500 -6.061568 1.977527 -5.812205 -2.211079 18.706486 9.449018 0.547831 6.095724 -0.603305 15.483121 1.085789 12.811569 -2.406315 -12.513283 7.594384 6.825427 -9.277573 -1.266275 -8.795006 6.391097 9.842061 6.652566 -6.085472 4.594221 -6.871801 -0.928894 4.420140 0.500233 18.292204 5.747268 14.578571 11.614742 14.471984 -9.735474 -0.246881 8.587281 2.212085 -1.273081 12.033750 -9.524516 -15.214320 0.587752 -1.541713 -22.293210 -10.041818 1.649360 28.077944 -15.569981 -2.552741 0.023715 2.511490 16.870458 -8.685647 3.638497 -10.742912 -1.878588 -7.440122 19.249800 3.212521 1.415639 -1.292923 6.161116 4.768574 10.025217 -2.579428 -10.823024 -6.045376 -19.844133 -5.774329 -6.183780 8.602493 11.180916 -19.913880 -3.521724 -4.344110 17.503998 -22.489919 0.586036 11.064352 9.613566 14.539437 4.108861 -11.703589 1.559113 4.024825 2.778683 13.226864 -5.729012 3.136106 -2.737834 4.686346 -0.222160 4.990542 2.700910 -20.920772 -10.782890 0.366454 -5.140340 1.928755 5.235792 11.664339 -5.960361 10.894653 -6.755456 12.006594 -22.139422 -1.230357 -6.900650 -14.941742 -4.594590 10.869969 17.357394 11.196000 -7.589100 -6.580535 -3.277780 -21.528907 -18.979410 1.327281 3.375526 3.091485 5.935418 -1.683354 9.774974 -8.313587 5.282171 8.286822 -6.273135 -3.881806 -1.511675 14.184614 2.325951 -3.318099 -9.968205 -5.677416 -8.359558 -0.760892 16.185521 -1.231791 -23.920257 -26.465554 -10.655972 13.808263 -5.103527 1.132197 -9.738523 -3.653653 -11.671303 -0.333811 -14.777518 1.548445 1.604198 -9.315541 -15.911131 0.877060 -0.627334 -7.855465 -0.012062 -11.192289 -3.895746 16.797558 2.591522 6.529428 2.260485 0.589415 -13.007002 -10.036445 6.273239 -11.520571 13.127255 11.224279 -4.166963 -12.841183 -5.346375 -15.856152 10.695241 -5.852220 4.882094 -6.029688 -1.727280 14.109716 -11.524839 0.535844 -10.860430 3.622772 4.645588 -30.814432 17.208455 13.085367 -4.321903 1.129868 2.656316 3.366645 8.284688 9.032973 -9.449106 -9.360960 -0.436176 -3.933907 0.711802 -1.233553 9.214701 -12.655187 -0.961263 -8.051045 -4.613511 8.852408 6.819402 1.943420 3.935158 4.433755 -3.914958 8.345795 10.087575 11.885179 -5.095093 -12.419386 -31.380833 10.266518 -3.813171 -7.177068 -1.465514 -4.841463 -9.775030 4.139331 -7.168351 13.591900 0.557949 -7.564367 12.382881 -18.469703 -15.215958 -11.514005 -0.184122 -1.301659 -0.588901 0.392350 -5.420068 6.143442 6.015286 -1.963292 -2.591833 -10.623629 -1.403563 1.432085 15.266893 3.359089 4.428660 15.877127 6.359227 -6.286642 -5.179716 3.263946 -4.353073 -2.942712 -17.489238 -7.256043 -0.829066 4.615178 -7.396530 1.746166 -2.065706 -1.405404 5.171930 -2.033672 1.154383 -0.954726 3.259570 0.145752 -1.395097 0.520097 1.577029 -1.469154 -7.117558 -5.278233 -0.167004 0.502912 -0.071694 2.592067 1.653269 -0.220147 1.243744 -5.955280 1.680354 3.408164 1.010218 0.460338 0.098262 1.087713 -1.416934 -4.087149 -0.253242 0.710425 4.245343 -2.362363 1.961629 3.055854 -0.280415 0.152062 2.318038 -0.396140 -0.152615 1.905091 0.871754 4.933209 1.355028 -0.367113 0.981620 0.712721 3.613612 -3.520056 5.276134 -1.594179 -2.951307 3.600806 -4.545384 -2.072751 1.407966 -1.719425 2.678879 4.599738 3.156522 -1.458686 1.470526 -2.024413 0.827864 0.931971 -2.743517 4.004136 4.575339 1.886487 2.462090 5.017060 -1.493025 -0.061555 0.971273 0.296956 -0.920756 0.162300 -1.722803 -0.051221 -5.344083 -0.437397 -5.508164 -1.879957 -1.252188 7.481466 -4.041933 0.511504 2.782839 1.123019 3.840062 -1.876796 0.935015 -2.641571 0.803774 -0.720473 4.226865 -0.236770 0.195652 -2.302230 0.934086 1.335394 2.048734 -1.065667 -0.910424 -7.145100 -6.316662 -3.575656 -0.492023 0.731795 1.453029 -6.498333 -0.750170 3.066869 2.496502 -6.406183 0.141187 2.952933 3.264542 0.919485 5.237299 -6.316095 -0.722793 0.299433 0.704278 1.430417 -0.702081 0.361719 -4.868370 0.015053 -0.128350 0.939339 -1.126295 -5.066590 -1.523386 -0.476245 -1.523801 0.118714 0.928802 2.267565 -1.446971 2.747438 -2.164345 1.899176 -6.519805 -1.207016 -1.646547 -4.943930 -0.628826 6.424527 5.005615 2.032969 0.305490 -2.983343 -2.772956 -5.481358 -3.691553 -0.216410 -0.963321 3.616566 0.456735 -0.075107 0.432151 -1.057437 0.269649 0.567402 -1.571676 -0.059483 -1.692651 6.459438 -1.325388 -0.679096 -5.002591 -1.374306 1.390622 -3.019519 1.170944 -0.657648 -0.334662 -5.647249 -3.349605 3.250096 -1.029949 1.582812 -2.810493 1.561211 -4.979533 0.350234 -2.670939 -0.602938 0.845565 -3.718672 -4.160583 0.406231 0.003656 -3.290038 -0.318288 -2.898297 -0.659385 4.059900 2.471834 2.441919 -0.070027 -0.807030 -4.101521 -4.819181 -0.988470 -2.356782 2.730120 4.487012 -0.435158 -2.452424 -1.169864 -4.725644 4.053060 -3.207907 0.044753 -1.364328 0.264076 3.715994 -2.940447 -1.708965 -4.331851 0.631280 0.131609 -7.175621 4.135708 1.994149 -2.076057 -0.587627 -3.194935 1.514614 2.734656 4.175606 -1.376154 -0.684461 0.203031 -1.040235 -0.422958 -1.324319 3.140080 -3.130830 1.570614 -2.242745 -1.158829 2.112269 3.564349 -0.593786 2.576252 1.286314 1.459206 2.586343 2.106036 2.031738 -3.558533 -1.497666 -6.682285 1.743663 1.574060 -0.865931 -0.257829 -3.270596 -2.394009 0.526108 -0.063240 4.057954 1.808124 1.328156 2.941092 -3.418439 -3.316196 -0.596907 1.676583 -0.037054 -1.876525 0.506666 -0.574132 0.932205 2.888227 0.521742 1.755312 -5.007669 -5.333916 -0.814503 4.666988 0.165266 -0.026183 4.048973 0.920811 -1.764932 0.016593 0.035337 1.426053 -0.334259 -1.839995 -1.160187 -0.881968 -0.219292 -2.129783 2.973635 -0.945094 -1.288222 2.260199 -31.266247 0.335889 4.812777 34.754309 14.570287 -30.739644 9.474148 27.823073 -13.728299 -66.371447 -41.187583 15.184642 -2.740603 -15.677344 20.130860 8.652485 2.774688 13.198619 -73.805447 29.251045 21.316336 15.318547 -3.637586 -24.266706 11.264388 -11.871645 -13.922806 20.443105 3.172849 39.111414 -30.779586 2.851606 27.790936 8.048520 22.680703 30.526157 10.548322 -1.511989 10.074157 5.068076 67.046182 23.453690 -4.879727 26.345529 31.865910 41.006189 -8.248335 39.033697 -9.254915 -18.634850 22.317337 -20.696457 -25.797251 0.948945 -34.557214 27.051070 51.192558 27.676967 -27.213995 25.991247 -15.162873 0.959838 11.299966 -16.226170 46.746591 30.534581 17.773178 20.744995 65.272210 -20.907607 -10.090634 20.422841 40.599081 -0.049273 10.108931 -25.653545 -20.349888 -69.187137 -3.322411 -70.140843 -10.249588 -6.963199 68.848069 -39.389383 14.555736 35.806643 3.046590 32.347575 -26.881167 -7.917930 -32.721217 6.653635 -15.100556 65.711504 -2.512004 9.042321 -3.074344 17.409802 22.032858 36.553757 -5.774510 -21.342360 -43.633811 -86.430741 -27.936581 -3.648879 -1.055258 -6.095521 -53.453698 -11.298871 33.368685 40.933091 -58.667653 -8.133104 31.003390 20.260150 -0.467614 -2.256536 -39.268023 -0.071712 -5.546237 8.562995 13.842394 -22.090897 -8.187109 -29.925278 3.264732 3.727896 20.041032 -8.966880 -38.867554 -19.162158 -4.443692 -7.871208 -7.458609 -7.623080 0.317659 -33.091301 24.078654 -27.952913 32.369521 -57.314895 -0.445314 -24.019898 -36.433735 -0.358491 52.206317 24.461477 21.971439 8.408456 -19.841106 -19.359497 -43.265587 -60.916023 19.736310 -8.264016 28.022638 -2.503693 -1.424290 -0.371517 -11.263814 -19.976004 13.061826 -27.193115 -4.225033 -23.210525 48.949812 -12.526105 -10.178262 -42.590090 0.031499 37.726844 -4.258691 7.541662 -19.880871 -33.581025 -43.564122 -40.438165 32.267467 -7.863477 5.584399 -15.418951 10.402340 -43.241608 20.113368 -32.243599 16.162354 -5.916462 -34.878134 -40.769983 -1.272649 -9.258339 -7.150298 -5.042201 -25.282734 -1.116834 15.961397 19.691276 7.385267 7.867069 5.455465 -55.293133 -56.251329 -11.172219 2.298284 36.858230 20.390119 9.413199 -34.777619 -9.149505 -42.095487 43.631454 -33.341246 -0.459312 -8.263973 -16.538047 53.516785 -18.908862 -15.863976 -40.622556 16.904181 8.409928 -53.867927 59.770927 32.892887 -31.650862 -21.268250 -29.821742 9.221324 31.283686 60.699731 -24.614304 -12.864795 13.534478 -8.328898 -7.839180 -22.751649 36.104382 -20.748515 33.015203 -38.187706 -28.167324 15.849030 40.301708 -2.388766 22.710920 5.871794 13.778140 -0.993065 45.865432 17.691708 -8.219584 -31.001058 -70.643202 16.706139 17.932179 4.504742 7.579941 -25.291883 -37.401880 -0.532351 10.146446 48.187000 34.419365 1.169421 32.862130 -37.016648 -42.362425 -6.154797 11.420128 4.975517 -30.182264 14.337115 -21.717179 1.882500 12.758242 7.867783 13.663563 -24.744706 -42.943631 -12.862977 31.958999 19.174172 -13.042971 45.353292 11.562483 -26.763001 0.391357 0.937063 18.003720 5.714117 -16.331864 -19.479100 -26.197448 5.387041 -16.955078 41.486345 -1.267944 4.966720 18.964753 -42.632809 -1.657573 8.219178 40.950636 21.988673 -40.335582 6.294395 38.357340 -14.321116 -75.147610 -53.762953 19.308165 -6.263696 -15.665598 30.977937 7.756745 3.243372 12.489452 -87.770385 39.987843 17.609259 18.163248 -9.003063 -31.584900 16.265898 -5.700321 -19.601321 23.576265 4.439525 38.914910 -42.535381 1.707797 28.069656 10.476448 29.804831 24.964655 14.797400 -7.051432 9.202734 -2.204397 83.686081 25.755312 0.631013 40.446597 40.985389 43.077766 -15.997589 58.440892 -2.148735 -20.707147 32.987183 -40.189087 -30.968090 7.723997 -44.936720 42.741899 59.812687 25.496103 -33.843534 29.504626 -11.595473 2.640413 13.380212 -31.773915 59.298558 38.428650 23.276368 21.395676 78.308015 -21.209930 -13.591096 26.986153 60.675241 6.782944 4.376804 -39.264208 -13.659866 -88.251370 1.216238 -80.728863 -4.277495 -17.984189 82.918058 -46.548248 21.239159 45.107326 -2.070597 36.833199 -35.942919 -3.996723 -36.791101 9.783176 -16.546890 70.684394 -9.108985 7.616768 0.515306 17.723703 24.366297 48.307417 -10.942504 -15.190054 -53.473306 -105.486336 -36.386844 11.198079 -2.604532 -14.688657 -61.501227 -8.844608 36.842197 44.889412 -60.582732 -19.328230 35.562169 19.681426 -9.819816 8.174916 -45.469145 -10.910714 -5.823305 16.792477 12.322916 -25.709502 -5.203121 -44.050254 -0.006376 6.648034 32.834083 -10.221781 -37.721675 -25.031881 -10.660896 -3.610751 -13.308170 -17.328740 -3.157702 -39.907171 31.887230 -24.412112 33.177334 -67.253465 -7.338693 -33.968292 -36.906069 5.919041 76.366066 25.160851 32.445376 23.953497 -21.817542 -27.674898 -49.138262 -67.183401 25.185064 -7.863729 35.069187 -3.437124 2.042127 -0.799584 -5.753929 -35.093420 14.737748 -38.853026 -11.958295 -36.239856 52.254758 -19.540295 -10.625213 -60.079684 10.234823 54.163953 -18.210833 0.294934 -19.218241 -40.532687 -41.771383 -47.830740 34.021277 -4.895759 12.347819 -12.200308 20.006914 -49.373980 22.556352 -41.246041 18.352083 -5.470587 -50.874448 -44.901159 -5.997308 -9.039155 -4.831478 -9.164841 -29.254392 4.487440 17.443385 40.553497 4.456850 15.917003 8.410298 -74.046429 -77.381886 -24.551318 8.533084 46.576680 22.462941 11.965110 -40.770508 -12.046388 -46.814857 53.788297 -51.803998 -4.876858 -10.816653 -17.459545 59.512384 -24.969451 -21.464320 -51.814330 18.702913 10.582213 -72.974804 66.964738 34.706579 -40.694507 -29.590545 -50.967980 15.388249 37.389922 85.533572 -25.590597 -6.683012 15.271394 -2.443431 -13.309359 -35.854855 48.018891 -19.831451 35.365099 -45.414551 -40.290011 13.616721 47.266158 0.524203 26.354875 8.779899 28.329843 -1.868389 58.954120 17.900039 -14.700773 -36.042440 -91.498160 17.227199 47.375065 5.152563 14.841392 -40.020484 -48.547708 -7.336069 12.473824 55.879142 43.149905 20.995601 35.969429 -39.326760 -46.161935 -0.051307 20.291417 0.247941 -37.365804 18.435066 -29.296402 -2.806222 15.030472 7.551747 11.812932 -23.414842 -68.954632 -23.454189 32.799366 23.262762 -10.572467 52.409661 20.687673 -34.530232 4.026576 -1.058221 24.499942 4.045407 -16.510109 -24.375144 -35.424660 -3.624421 -19.394104 49.991139 3.875177 5.529752 18.020328 -30.294625 -1.808328 1.945139 37.055553 12.125885 -30.178010 9.563436 26.743182 -10.752897 -68.924878 -46.649501 16.423940 -0.211547 -14.203453 19.759329 7.726646 0.397178 12.424668 -76.021885 29.036641 24.363221 15.857530 -4.757206 -21.213202 10.480177 -15.094534 -14.978090 19.572457 2.841786 40.048445 -28.336662 5.561496 29.526492 4.330885 18.597217 34.161678 3.662797 -1.393554 12.754915 4.143053 65.664602 23.744504 -2.371058 26.205527 28.077416 41.326288 -11.370144 43.414154 -9.570181 -23.352057 25.661677 -17.239083 -27.014834 -0.609539 -32.890921 28.321673 52.412792 26.009294 -25.876593 24.935011 -17.797151 -0.269387 12.250698 -14.881108 47.462907 33.089375 19.128895 22.511363 64.980055 -20.971114 -8.821190 23.316377 35.810263 -0.599139 13.784931 -25.443849 -23.129929 -58.695887 -3.380733 -69.249177 -11.999893 -6.480850 73.827644 -40.506063 11.091970 31.900985 7.152547 36.366864 -25.598665 -6.006136 -31.130298 7.249887 -17.689827 64.561184 -2.813314 9.715588 -5.173337 16.790568 19.336805 36.493886 -9.730722 -20.919850 -45.094518 -90.059132 -28.042831 -7.940268 2.232128 -1.441297 -59.324190 -11.116742 28.035765 38.993151 -60.565061 -6.690733 32.440206 22.891572 0.425645 3.554536 -41.825946 -3.466075 -2.851454 7.827694 15.387805 -19.165535 -6.126198 -32.257312 4.978396 3.678062 16.522910 -8.907684 -41.984408 -20.823315 -5.565626 -8.159842 -4.524967 -2.580549 7.601814 -30.437505 24.834403 -28.431895 32.286410 -62.206458 -0.795376 -26.807801 -38.443816 -1.939855 50.423460 28.638606 24.151943 3.057119 -20.419668 -20.383369 -47.942734 -60.283563 15.017747 -8.803601 29.104541 -2.475306 -1.641852 1.133112 -11.279617 -15.412017 11.864345 -25.690286 -2.391424 -21.208377 53.055799 -10.415577 -10.015391 -43.081317 -2.953785 29.505435 -8.927332 11.274677 -16.770328 -33.827502 -48.968554 -40.280617 33.280208 -7.024372 5.598562 -19.385658 6.476673 -41.700605 18.123030 -32.194672 11.479058 -5.384546 -34.814863 -42.665639 -2.851251 -6.879104 -11.436322 -5.202269 -27.931647 -2.985891 24.878285 21.032382 10.984087 8.635799 3.100057 -54.695659 -52.919836 -9.505527 -2.310310 37.416628 29.188807 6.249493 -32.185476 -10.118118 -44.171776 42.119123 -32.856684 1.028835 -7.949187 -16.503797 53.772435 -22.869989 -14.103759 -43.093751 14.245789 6.881346 -63.628567 60.606377 31.856540 -30.174658 -18.221162 -28.223012 8.009688 30.531649 56.643429 -24.829588 -12.701663 11.803801 -10.854971 -7.190725 -22.213800 34.833578 -23.818270 30.522162 -35.587262 -26.190919 18.027181 39.158457 -2.907429 21.602545 5.759524 12.418365 7.357804 42.620582 20.689170 -13.315341 -33.227356 -77.447915 21.234829 14.422983 -0.297951 5.622671 -25.378130 -38.062264 2.088058 9.501677 47.888066 32.954924 2.771318 33.464853 -38.874214 -43.507276 -8.793656 11.216968 4.454099 -26.736911 11.563744 -21.168383 4.342649 13.664077 6.715957 11.722333 -29.423959 -44.825899 -9.511595 36.040614 17.957031 -10.350984 46.462428 12.025861 -24.844909 -2.464810 0.854686 14.744590 1.218075 -16.995982 -19.150904 -23.919214 5.618215 -18.194298 40.739391 -1.677312 4.809406 20.884264 -55.089146 4.391945 -2.805199 56.196448 21.629412 -51.904559 18.487195 44.049173 -15.151331 -112.287842 -69.760655 46.867191 -1.647044 -26.973730 17.736424 17.117113 -0.190907 24.274948 -112.888078 47.378073 38.467201 27.897128 -12.759049 -34.023804 16.781982 -24.355590 -24.147233 29.854696 4.978682 63.945258 -42.786332 4.346232 51.422236 6.450623 21.899380 60.563091 12.233732 0.483946 26.176501 1.745956 99.865185 41.360564 -4.357727 46.416497 45.557152 67.399774 -18.814347 81.794609 -23.638893 -38.355930 31.175631 -23.317288 -51.102028 -3.034436 -49.881044 47.808576 76.667818 39.016709 -40.591524 40.250503 -22.938310 -1.408747 22.251808 -22.716469 69.909280 61.560605 24.445624 35.905986 113.412894 -32.307617 -15.986570 42.356002 60.093043 4.201283 30.152670 -35.525046 -42.533440 -66.686608 -5.364858 -109.116717 -22.896696 -13.833501 132.465043 -67.911975 15.240955 44.414620 20.757568 60.132140 -40.777807 -10.965405 -51.149879 15.846001 -31.203480 116.309301 -2.646995 24.342941 -19.858400 24.714745 30.958206 56.169448 -20.864521 -34.233885 -73.858796 -135.504144 -37.460213 -20.476187 -3.647180 1.614880 -102.352272 -21.809142 37.531688 82.829900 -104.947001 -11.361280 53.833549 28.814143 21.247642 27.925084 -69.824760 1.294767 -4.561977 -0.263323 13.612547 -27.906579 -18.314342 -42.339062 5.135732 -1.045839 18.225201 -11.387461 -94.461670 -26.795967 -5.823379 -20.862334 -0.016404 1.572788 11.810600 -57.482108 35.840694 -46.935398 43.473238 -101.432640 -11.406227 -31.725819 -76.086302 -6.577083 78.740521 53.837994 46.859465 -2.121306 -21.600233 -47.704697 -81.299052 -103.219225 23.457213 -23.862425 45.730612 -4.471666 -1.676858 -4.305667 -22.880007 -24.673190 21.671598 -38.604167 0.492943 -34.932933 111.982492 -21.524034 -8.968082 -66.393319 -16.956223 42.815722 -5.386148 15.796105 -29.165014 -70.248253 -83.745857 -64.079702 51.383867 -12.648469 7.283744 -36.970383 7.443865 -63.719476 22.211970 -45.147545 18.461311 -9.287358 -50.085848 -69.385589 1.757284 -11.880140 -26.361848 -11.459966 -44.212527 -5.185011 44.867326 26.964872 18.889396 9.960105 -2.201419 -84.909840 -79.723628 -6.442598 -2.270509 62.118514 56.742214 12.448022 -53.360336 -16.220623 -82.004919 70.987078 -63.840173 2.124491 -8.511156 -15.956208 93.725752 -36.044606 -21.627950 -71.254700 27.839581 6.231984 -104.191197 97.611713 52.989908 -49.018517 -28.536268 -38.878165 9.907118 57.003339 86.419864 -44.461866 -29.551710 25.649594 -22.537035 -13.059839 -27.431490 53.801135 -40.926921 62.511944 -56.930894 -36.828700 26.647208 63.581654 -12.222180 29.874472 1.730049 10.536640 20.985106 64.896542 34.099831 -19.666842 -57.273142 -132.081057 29.901984 1.398213 -3.585204 7.114167 -38.274142 -58.313996 11.590059 -1.891564 81.169047 27.928638 -2.860930 51.483348 -74.059681 -72.069346 -4.290813 16.262202 11.816679 -37.415409 28.501436 -30.125874 5.228964 22.545041 11.863062 15.814752 -58.393078 -61.035106 -10.641573 61.681604 25.188906 -22.140371 73.513126 12.744996 -33.457979 -1.888735 -0.842893 32.462955 -5.532292 -41.693600 -26.194344 -39.168853 10.444630 -29.534439 78.569930 -0.010870 6.699406 36.152447 -9.032539 3.187177 -3.972932 14.387421 0.053649 -5.876686 1.439860 9.824716 -5.156452 -28.831842 -18.016909 8.245088 2.438643 1.696814 5.443861 4.941845 0.184822 4.273568 -30.877397 8.208278 12.104607 5.441144 -0.088337 -2.524012 4.663544 -5.965143 -2.599543 3.196449 3.973215 17.250797 -8.064912 5.235244 14.507324 -3.659476 5.489008 14.237212 2.205548 3.191028 -0.052319 0.526372 22.262860 8.866750 -0.437139 7.544155 2.922068 17.219737 -2.412947 13.670903 -7.112827 -12.066938 4.969489 -1.417660 -9.693515 -1.959755 -10.286910 8.618751 17.168029 11.752882 -8.639115 8.713934 -4.036099 -1.284108 4.187415 -2.817166 15.999699 9.584611 9.022306 10.971003 21.797083 -8.745602 -1.833884 8.955432 3.281830 -2.477537 8.590384 -9.348010 -11.833036 -12.708671 -1.848622 -26.912151 -10.180063 -0.927834 29.079515 -17.664975 3.184046 7.872014 0.656516 15.888316 -8.425405 0.493086 -10.844730 -2.097567 -7.139080 23.747296 3.209899 3.555892 0.250230 5.445196 7.737813 10.949916 -2.564922 -10.408136 -12.968813 -25.786579 -7.578488 -5.889470 3.773534 8.933276 -21.337758 -8.133698 3.185423 17.908361 -24.538176 1.631608 11.973246 12.320006 8.354583 2.491891 -17.354732 2.893417 2.164123 -1.163155 11.211789 -7.960098 -1.474551 -4.851895 3.181003 0.277119 3.398829 -1.535937 -20.636417 -12.117462 -1.031141 -5.947624 -0.399307 2.947885 6.191401 -10.835608 9.888036 -9.466775 12.298563 -23.105650 -1.534167 -3.238786 -17.500242 -3.957943 14.151331 11.784164 8.433134 -6.556914 -10.073745 -5.585321 -20.201694 -21.861968 5.413561 3.079788 8.264868 4.343879 -3.014967 7.214403 -8.020460 0.987700 5.528855 -5.414405 -1.678968 -0.838080 20.241957 -1.276590 -2.454831 -13.296517 -5.515691 -0.332318 -0.156529 10.655326 -5.013823 -13.340718 -23.140275 -12.660771 15.161663 -4.192109 1.317582 -8.327942 -0.980711 -15.205373 2.127201 -14.316303 2.567100 -0.296582 -12.240089 -17.382728 -0.381382 -2.809408 -7.017675 1.221998 -12.528941 -3.145669 13.013036 4.324510 5.199883 -2.359826 0.352813 -16.897375 -16.019153 1.802129 -8.190223 13.017872 9.053464 -1.119647 -12.301973 -2.822873 -14.292009 13.886582 -6.342006 3.806593 -6.813628 -2.959754 19.176597 -9.031056 -4.537160 -15.776798 5.108022 5.701846 -23.504427 21.148462 11.615914 -5.247876 -2.694823 1.552255 -0.527421 11.498802 13.557040 -9.389174 -11.192671 4.244132 -5.245133 0.075219 -5.666292 11.963455 -12.395893 7.502062 -12.003903 -5.192317 8.262107 11.364838 0.422101 8.000851 6.877663 -0.011540 4.958382 14.014760 11.716773 -6.463830 -11.141885 -25.205260 11.392064 -2.489420 -2.690492 -3.536812 -6.237509 -10.299526 5.113536 0.542586 16.517048 8.550021 -2.945601 13.259673 -17.714826 -17.538754 -6.886100 2.741872 2.874055 -3.529645 0.049422 -6.799232 6.942642 5.246915 -1.854910 2.761205 -12.845248 -7.693783 -0.942793 13.953348 3.746900 0.866024 18.219183 4.378162 -9.025613 -0.281604 0.246869 3.029368 -3.401857 -10.478965 -6.301539 -4.170465 5.760276 -7.181673 9.985391 -3.201853 -2.913932 9.653455 -4.725279 1.038770 -2.829940 7.959790 0.202319 -2.915145 0.911799 2.825523 -2.358980 -14.152200 -8.973776 4.719781 1.513054 0.597966 2.440582 3.657527 -0.656913 2.127801 -12.414591 3.569150 5.451999 2.332311 0.112081 -1.696204 1.610978 -3.345788 -0.535243 0.980757 1.766533 8.413263 -4.261168 3.446188 7.015605 -0.987330 1.910117 5.965892 -0.446512 1.007888 -0.391666 -0.266209 10.324967 3.994321 0.381959 3.856346 1.172375 7.978457 -1.467517 8.673550 -2.730034 -5.982280 4.880907 -1.083130 -4.792219 0.010293 -4.592342 4.677968 7.554972 4.999941 -3.479885 3.302444 -2.972920 0.138241 2.241835 -1.903789 8.021956 5.823743 5.032908 5.389202 9.552988 -4.696027 -0.657035 4.129130 2.216134 -0.798617 5.033656 -5.197599 -5.498318 -3.566611 -1.115556 -11.564415 -3.625921 -0.176834 15.779001 -8.590072 0.046372 3.242874 1.783416 7.809229 -3.889779 0.889959 -5.678531 0.306639 -3.725627 11.123381 0.982761 1.186390 -2.237770 2.834847 2.896174 4.999909 -1.333188 -4.472579 -6.982928 -11.949258 -4.656109 -2.903242 2.931691 4.263122 -11.320624 -2.302255 1.457072 8.296094 -12.663930 0.433209 5.940568 5.476291 5.784453 3.868440 -8.045807 0.608126 0.959258 0.517250 4.349905 -3.283822 0.173777 -3.830897 0.929877 -0.316376 2.059299 -0.448146 -10.843708 -4.773108 -1.170357 -2.965522 0.687043 1.862227 4.496323 -4.737058 5.396573 -4.176508 5.354001 -11.952562 -1.395635 -3.203354 -9.267964 -2.017875 8.520920 7.376635 5.821699 -2.369803 -4.298563 -4.022481 -10.405020 -9.891350 0.979384 -0.056339 4.036015 2.395215 -0.765758 2.928822 -3.684302 0.972976 2.894521 -3.459445 -0.947810 -1.499811 10.760069 -1.312992 -1.725390 -7.185961 -2.601573 -0.180054 -1.224287 5.544266 -1.721872 -8.341275 -12.148090 -6.282748 6.873736 -2.504662 1.600601 -4.792170 -0.091778 -7.279711 0.767101 -6.914162 1.002288 0.653004 -5.747654 -8.511229 1.051057 -0.789705 -4.301818 0.269593 -5.630748 -1.318586 7.116260 2.600712 3.237999 0.628886 0.066348 -8.781848 -7.356351 0.763136 -4.628071 6.495263 6.393664 -0.637820 -6.177282 -2.648993 -8.776497 6.275473 -4.529369 1.341535 -2.731283 -0.293400 8.184694 -5.524820 -0.568785 -7.861718 2.031152 1.864739 -14.419895 9.753160 5.685751 -3.182548 -0.622571 -1.391745 1.704948 4.994277 6.446658 -4.499258 -4.254526 1.162616 -2.816888 -0.186258 -2.356978 5.477511 -6.240756 2.501547 -4.900796 -2.616800 3.967724 5.434190 -0.334968 3.122382 2.710514 -0.300111 3.688585 5.784107 5.383567 -3.355671 -5.794813 -15.496189 4.566533 -0.975280 -2.160736 -0.476607 -3.481326 -4.952374 2.415307 -1.112966 7.953033 2.333305 -1.227004 6.438163 -9.130002 -7.923846 -2.817314 0.859612 0.721333 -2.458436 0.480761 -2.931429 2.320198 3.484453 -0.323661 0.837776 -6.652032 -3.941927 -0.174630 8.575958 1.764363 0.916185 8.451721 2.552550 -3.651872 -0.832390 0.841990 0.923083 -1.397307 -6.392529 -2.897361 -1.388410 1.465452 -3.871468 4.247975 -1.622891 -1.432799 3.563067 -6.103462 0.700499 -4.731639 11.516491 0.033745 -2.555263 0.577253 2.953366 -2.210163 -18.706876 -11.695485 9.681526 1.955530 2.161206 2.679321 4.882860 -0.553844 1.539319 -15.740606 4.404192 6.341639 1.863804 -0.062721 -1.053340 1.861654 -4.884475 3.255029 1.342035 2.778764 10.658471 -5.051891 5.287055 9.323288 -1.411079 3.256215 7.582435 -1.346855 1.182829 -3.482452 -2.153822 13.188797 6.011699 0.368003 5.686390 0.402351 10.593710 -0.341362 11.134204 -0.414387 -8.162246 5.322034 0.993310 -6.490264 -0.691232 -6.312440 5.557491 6.893308 4.472068 -4.518646 3.349685 -3.693443 -0.301551 2.699879 -1.512332 10.568125 5.572621 7.989644 7.619122 10.891256 -7.009690 -1.262668 6.559280 2.751882 0.938289 7.933763 -6.280389 -9.196752 -0.785735 -1.393019 -13.166573 -6.288444 -0.645182 19.980439 -10.980549 -1.120762 1.845677 1.276750 10.398988 -4.940679 2.125192 -8.009801 -0.294643 -3.778325 12.781303 2.130959 0.982975 -2.194559 3.280308 3.197325 6.902795 -1.076333 -6.916830 -6.514329 -13.802663 -4.253314 -4.550424 5.211272 6.775641 -13.637146 -2.405650 -1.161258 12.873011 -15.439627 0.195486 7.660901 6.207124 10.160074 4.676290 -8.321472 0.934271 3.144340 0.579921 7.232647 -4.355944 0.752926 -2.446327 2.431029 -0.890871 2.956430 0.804056 -14.002724 -7.174968 -0.401724 -2.389811 1.327642 2.545582 6.708948 -5.809118 7.265488 -3.970111 7.250024 -14.396426 -2.000617 -3.891894 -10.524783 -3.278472 11.932959 10.819472 9.617303 -3.701293 -4.572651 -4.627440 -13.412494 -13.128960 1.198542 0.877716 3.433866 4.132228 -0.904100 5.831224 -5.386901 2.713068 3.899515 -4.164391 -1.794336 -0.563486 10.052677 -0.816403 -1.720280 -8.320160 -3.686109 -3.154163 -0.898665 9.069162 -1.551334 -15.747081 -16.170543 -7.848453 9.031881 -3.847746 1.698753 -6.009775 -1.561641 -7.611884 -0.388165 -9.384723 1.401709 0.967912 -7.640095 -11.056807 1.497722 -1.203624 -5.090015 0.985410 -7.441474 -1.975269 9.497092 3.075727 4.380121 1.508587 -0.343672 -10.629212 -7.757288 2.340879 -7.354680 9.786814 7.697745 -2.106395 -8.705634 -4.096249 -11.350230 7.857925 -6.723140 2.525600 -3.811250 -0.672438 9.773722 -7.199875 -0.098424 -9.216280 3.172747 3.559683 -20.226451 11.208847 8.647506 -3.325967 -0.196979 0.546051 1.743991 6.544883 7.442806 -6.381560 -6.382048 1.037195 -3.101184 0.223913 -1.685375 6.643922 -7.879758 1.350212 -6.253320 -3.477869 5.248321 5.449298 0.314727 2.584178 3.995859 -1.022022 5.607875 7.397436 7.831740 -3.330369 -8.633033 -21.739647 6.718209 -0.613809 -4.080019 0.213710 -4.787785 -6.282484 3.395133 -4.681124 9.790093 -0.275929 -2.786193 8.589900 -12.308630 -10.062641 -4.997424 -0.625599 0.154969 -1.344869 1.954025 -3.538560 3.316225 3.643814 -1.665096 -1.222973 -7.132597 -1.930490 0.842493 10.334282 2.860900 3.090592 10.459211 3.915290 -5.158277 -1.805626 1.662517 -1.076287 -2.447541 -11.703053 -3.930255 -0.883945 2.208980 -4.711635 2.906517 -1.543256 -1.807180 3.207878 -3.728388 -0.096879 -1.692313 7.731672 -0.025594 -0.972858 0.509287 1.823432 -2.211338 -14.358360 -8.751532 6.135744 0.992544 3.099151 1.990170 2.862086 0.292818 0.980375 -13.944567 2.223286 5.103484 1.623632 1.648778 -0.115377 1.723223 -3.735640 2.588043 1.702433 2.546090 8.257535 -4.522885 3.792195 7.163389 -0.731745 2.521119 5.744391 -0.102265 0.625270 -3.140768 -1.671785 10.218869 3.186065 0.517404 3.926193 0.174560 8.196816 0.659536 7.514096 2.762371 -6.546714 4.053198 -1.075019 -4.899283 -0.713042 -4.868744 3.724579 4.956084 4.797449 -3.750511 2.719352 -1.318194 -0.089982 1.571091 -1.984197 7.436752 3.200739 5.803141 4.668125 7.215510 -5.870372 -1.239069 4.420354 1.586473 1.151219 4.250595 -5.758359 -5.250548 -3.833993 -0.575486 -11.228090 -5.222059 -0.168452 12.380713 -7.846434 -0.488570 2.067253 -1.223285 7.271565 -2.795487 1.502133 -6.646353 -0.423014 -1.033162 8.509997 1.663648 -0.695192 0.085332 2.422450 2.939066 5.676070 -0.017706 -5.162072 -5.281078 -10.781925 -3.121951 -3.326395 4.353933 5.149470 -9.340073 -1.718612 -0.379161 8.629100 -11.059142 -0.111727 5.758990 5.413759 4.353455 2.025404 -5.387087 0.086537 1.988309 0.940986 6.285380 -3.949653 1.131695 -1.677240 1.520756 -0.459174 2.666586 0.301321 -8.519575 -6.399298 -0.196106 -1.079157 0.351451 1.119704 4.673233 -2.455337 5.752367 -3.189735 5.650904 -9.781745 -0.595693 -2.413939 -6.081174 -2.739350 8.989917 7.276622 5.554602 -2.138824 -4.200022 -2.525215 -8.856703 -9.634512 1.368876 1.692187 3.399420 3.853236 -1.253252 5.096551 -3.920688 1.076004 1.818292 -2.889928 -1.786547 -0.603569 4.032406 -0.466973 -1.261835 -6.148093 -1.160190 -1.421131 -2.006403 6.471541 -1.846777 -10.375453 -11.153234 -6.354664 6.895459 -3.137177 1.155191 -3.596447 -0.927565 -5.937562 0.355443 -7.259493 -0.016766 0.585006 -6.848808 -8.461764 1.444577 -1.618533 -3.184808 1.964964 -6.018758 -1.628776 5.614603 2.986377 3.752016 0.369812 0.176530 -7.900871 -5.975592 0.782701 -5.866740 6.153955 4.184717 -1.690393 -7.113683 -3.451606 -6.973098 5.824951 -4.307053 2.038446 -3.158548 -0.920536 6.773581 -4.685366 1.134574 -5.592128 2.542915 4.196868 -15.340121 8.817592 6.328748 -2.499973 -0.653127 0.270355 0.914208 4.924481 5.466907 -4.863104 -4.840777 0.753702 -2.338312 0.514382 -1.780825 5.182118 -4.842894 0.452004 -5.150063 -3.329378 3.425129 4.081694 0.778954 2.877285 4.509194 0.681494 3.476403 6.238382 4.588653 -2.042814 -5.154402 -16.013277 5.762899 3.051309 -1.965015 1.074225 -4.574059 -4.386601 2.633629 -2.646169 7.010805 1.052337 -1.538433 6.731834 -8.062357 -7.131017 -3.949214 -1.348877 0.215011 -0.720593 1.069101 -2.576728 2.654139 2.501760 -1.676297 -0.476641 -4.137929 -2.164952 0.584463 7.219529 2.464758 3.287192 8.023288 2.165943 -4.463971 -0.963458 1.032977 -0.196760 -1.246491 -7.207333 -2.992604 -0.371836 1.667168 -3.443615 1.133445 -1.740834 -1.771542 1.908601 -91.069074 2.235694 10.385953 101.539879 40.061048 -106.365719 33.144518 85.866461 -40.341788 -188.763099 -107.228541 41.613115 -5.926683 -55.922893 47.603375 24.633120 -5.768487 44.084637 -211.706244 93.368403 65.026451 52.291487 -18.570612 -82.062008 32.006716 -31.970392 -52.202326 64.977345 3.413512 112.013632 -88.603190 -0.052584 81.668731 23.443905 57.849230 93.468810 40.470635 -1.264233 41.382171 24.148800 185.951399 76.826496 -26.368642 67.118433 93.485628 119.618048 -21.078291 109.828686 -62.956948 -54.899826 49.112933 -58.468947 -79.678134 -5.415749 -92.616853 83.034974 154.929521 93.296999 -75.846800 78.733332 -54.433437 -0.982685 39.755944 -37.002799 136.949794 97.019144 46.243837 61.308109 204.694895 -56.729380 -28.592180 59.497746 121.147686 -12.828603 38.321013 -61.151900 -68.193141 -210.190342 -6.869591 -211.763236 -34.517425 -10.023565 200.766834 -119.399308 47.942589 108.172489 29.175603 97.811866 -88.919429 -25.703620 -93.505472 22.208484 -52.496356 219.532440 -7.802924 32.898160 -17.917865 59.583427 71.734328 104.458420 -21.597094 -58.804422 -130.103869 -254.425753 -78.434465 -13.737052 -21.351070 -20.279380 -166.989170 -42.762361 115.228227 131.979139 -180.678068 -18.869568 93.723896 56.171189 15.814173 -9.088217 -113.471841 16.290869 -25.281077 8.895251 33.489744 -65.473966 -29.893920 -77.478576 13.057960 10.882399 47.395703 -23.770487 -140.462039 -42.338138 -9.118907 -37.047295 -14.718068 -15.553397 -4.975755 -108.897298 63.674975 -96.706657 92.861902 -171.700773 3.901017 -60.740982 -122.733794 4.045842 140.430031 73.064776 50.952389 14.338492 -56.600137 -62.949463 -131.339451 -195.346042 57.486185 -25.388293 81.548203 -19.468101 -5.153318 -15.960754 -31.623356 -58.737775 47.028510 -81.106335 -8.412988 -66.406313 175.166328 -35.619096 -26.859993 -120.653758 -8.750144 116.421530 0.706429 19.270133 -61.977640 -93.942706 -133.347622 -117.672442 91.473152 -15.592834 7.884452 -54.525949 24.292279 -134.602366 68.097426 -86.961202 58.149641 -18.720953 -90.430660 -120.771144 -3.522292 -24.896451 -28.350804 -24.549923 -70.783976 -4.779660 40.094323 37.512828 18.426880 15.911757 21.086189 -157.220020 -162.853933 -24.129606 16.715270 109.762603 65.869349 37.881715 -94.024198 -20.927735 -132.536689 134.805628 -97.632797 -3.026516 -20.675737 -46.670175 170.976206 -56.805438 -55.414863 -122.420611 53.444097 14.863266 -123.887090 190.801323 100.203611 -94.340924 -61.626154 -82.300127 22.828925 101.189367 180.214839 -80.474950 -43.879486 44.126801 -26.987793 -28.235425 -59.041275 101.942109 -68.877940 111.559577 -106.666672 -77.054122 37.410888 123.271782 -12.993642 66.367152 -0.567359 24.937465 -12.239054 127.683584 52.148680 -24.071027 -94.138905 -191.995435 48.838346 11.714816 13.288795 9.922471 -70.398985 -107.515806 3.391976 36.427092 145.523373 106.784732 -13.850545 91.948113 -125.524504 -126.037966 -12.274009 40.315992 15.286158 -90.311205 49.612077 -60.787653 6.275874 42.596450 26.120410 39.254243 -82.959613 -124.726982 -37.350031 91.252700 50.818368 -60.187414 135.389883 25.076328 -68.344569 -2.049890 1.047529 57.409269 9.804524 -37.847126 -52.984418 -81.023315 21.546734 -48.885491 141.040290 -1.080270 9.432939 66.772712 -5.121906 0.875466 -2.583933 9.092056 0.402757 -3.209371 1.009369 3.325862 -2.335715 -15.548077 -9.858833 6.501828 1.269414 0.412592 2.618622 3.415496 -0.355421 1.977797 -14.295882 4.189096 5.684162 2.402318 0.110587 -2.174110 1.761619 -3.952763 1.097788 1.858036 1.924322 9.092109 -4.586122 3.494825 7.561128 -0.634725 2.934262 6.829694 -0.941532 0.939761 -1.224310 -0.960426 11.747376 5.115827 0.167168 4.816745 1.875812 8.958083 -0.716681 8.132918 -1.116092 -6.468497 4.514849 0.524257 -5.485093 -0.712663 -5.550576 4.873347 7.547469 4.796414 -4.142637 3.631406 -3.459463 -0.272549 2.355130 -1.886033 8.942078 5.417945 5.862606 6.027649 10.372213 -5.576074 -1.278208 5.180975 3.302007 0.090034 5.665903 -5.441927 -7.167945 -4.082543 -1.517974 -12.945449 -4.434705 -0.322755 16.984286 -9.053768 0.124552 3.045677 1.290886 8.265721 -4.315507 0.479212 -6.548405 0.187852 -3.825259 11.830002 1.299130 1.059154 -1.434784 3.137343 3.298618 6.246705 -1.117035 -5.415509 -6.439316 -13.610305 -4.198416 -3.448726 3.712025 4.246973 -11.493775 -2.185874 1.396887 9.809343 -13.295699 -0.006249 6.749255 5.440939 5.801293 2.179845 -7.747579 0.687086 1.416056 0.730210 5.450240 -4.053826 -0.010797 -2.760391 1.325965 -0.486023 2.698478 -0.127628 -11.027216 -5.862153 -0.996661 -2.221361 0.499151 1.478463 4.489072 -5.100343 5.907077 -4.334402 6.578638 -12.505318 -0.848680 -3.816020 -8.567219 -2.267677 9.277469 8.150255 6.722601 -2.647140 -3.918166 -3.899715 -10.930937 -10.807522 1.831441 0.320756 3.986031 2.437473 -0.739818 3.632241 -4.060917 1.000678 2.962905 -3.826164 -0.917384 -1.208451 10.084280 -1.156458 -1.767675 -7.679046 -2.468562 -0.343263 -0.843666 6.034933 -2.102545 -10.806165 -12.882037 -7.040275 7.531558 -2.870970 1.179633 -4.824428 -0.589920 -6.564070 0.975790 -7.835126 1.562127 0.355106 -6.531916 -9.282621 0.985152 -1.221377 -3.945950 0.412444 -6.059554 -1.593335 7.330717 2.863784 3.381376 1.055550 0.296962 -9.638250 -7.576107 0.940071 -4.754489 7.457084 6.555934 -0.838120 -7.612338 -2.963505 -9.302231 6.819385 -4.838466 1.530322 -3.148594 -1.414207 9.119113 -5.658861 -0.215847 -8.326534 2.476880 2.697755 -16.277617 10.450731 6.997880 -3.516164 -1.089585 -0.910219 1.347678 5.670388 7.326610 -5.254376 -4.928833 1.306163 -3.145530 -0.129096 -2.203730 6.016315 -6.318680 2.604045 -5.811520 -3.438052 4.472106 5.584040 0.018205 3.229358 2.945507 -0.106945 3.850783 6.854733 6.192143 -2.770840 -7.238458 -17.365184 5.397962 -0.148611 -2.156795 0.039669 -3.626052 -6.201363 2.435976 -1.522663 8.681057 2.127889 -2.119023 7.172918 -9.706794 -8.703792 -3.561061 0.331284 0.727910 -2.579283 1.275908 -3.427231 2.479093 3.126754 -0.729601 0.365808 -6.030125 -3.498904 -0.000353 8.784752 3.047893 1.199476 9.186763 2.943644 -4.787430 -1.081265 1.111958 0.187507 -1.447582 -7.760525 -3.398846 -1.832107 1.866616 -3.841812 4.152383 -1.190431 -0.970609 3.371652 -4.278726 0.246264 -1.565531 7.780948 0.504578 -1.925155 0.593400 2.705259 -1.574967 -13.930799 -8.661977 5.513978 0.884066 1.392147 2.398454 2.977812 0.423277 1.558299 -13.353490 3.223113 5.063938 2.127206 1.063535 -1.406039 1.831067 -3.609116 1.946847 1.321241 2.201298 8.011044 -4.501823 3.433891 6.798912 -0.384273 3.239153 5.867744 -0.766380 0.378940 -1.973647 -1.480126 10.607246 4.318007 0.276864 4.341272 1.279409 8.007391 0.213684 6.348601 0.867993 -5.931704 3.419547 -0.563163 -4.801249 -0.516948 -5.222731 4.212315 5.651805 4.272364 -3.939594 2.935344 -1.923402 -0.001235 1.843701 -2.055848 7.737595 3.472341 5.315736 5.172564 8.245753 -5.174938 -1.019020 4.278241 2.715648 0.836545 4.852413 -5.213513 -5.672022 -4.042298 -1.220038 -11.180947 -3.881507 -0.482334 13.248061 -7.867866 0.527454 2.543506 -0.286169 7.229209 -3.102078 0.429923 -6.297986 0.015866 -2.106188 8.917344 1.127370 0.154507 -0.441851 2.783404 2.603536 5.410185 -0.022068 -5.157135 -5.049600 -11.503603 -3.071181 -3.247983 3.909486 4.083695 -9.364804 -1.428397 0.125455 8.837375 -11.269737 -0.041623 5.494989 4.723388 4.018185 0.463082 -5.366877 0.117332 1.269684 1.185330 4.891660 -4.240040 0.348878 -2.099252 1.123951 -0.215679 3.000189 0.056766 -8.050841 -5.746893 -0.619104 -0.966194 0.022999 1.444806 4.257551 -3.882285 5.404456 -3.614554 5.878677 -9.835380 -0.581441 -3.247084 -6.261028 -2.418715 8.868697 6.483137 5.561906 -1.836458 -3.511952 -2.861968 -9.058171 -9.228456 1.877501 0.804671 3.415100 3.181325 -0.794752 3.933903 -3.770194 0.780873 1.894803 -3.398755 -1.295316 -0.950441 5.688591 -0.926270 -1.484838 -6.403790 -1.435294 -0.000289 -1.389871 5.511796 -2.015072 -9.192443 -11.025648 -6.302662 6.724249 -2.987065 1.363645 -3.811940 -0.371364 -5.354045 0.808826 -7.248028 1.108116 0.149980 -6.058148 -8.288788 0.865439 -1.570102 -2.549282 1.172127 -5.465373 -1.089120 5.632679 2.883637 2.850985 0.859367 0.353818 -8.329887 -6.311891 0.692050 -4.686356 6.499846 4.368941 -1.346836 -7.080614 -3.059396 -7.106500 6.076831 -4.077627 1.732121 -2.891384 -1.322425 7.198000 -4.636619 0.468976 -6.794558 2.425219 3.156386 -14.311621 8.474920 6.067425 -3.158683 -0.853000 -0.832824 1.467366 4.706690 6.211984 -4.387282 -4.376298 1.033054 -2.718377 0.140953 -2.498062 5.167191 -4.963746 1.627121 -5.434309 -3.278897 3.904453 4.290347 0.320842 2.926197 3.703467 0.473929 3.142918 6.415118 5.280491 -1.656739 -6.489917 -15.022984 4.957715 2.295220 -1.132990 0.399197 -3.619946 -5.049328 2.014061 -1.536435 7.332334 2.493396 -1.302524 6.551436 -8.260172 -7.427618 -3.317731 -0.443547 0.552510 -1.647282 0.949663 -2.960440 2.191465 2.274459 -0.683659 0.025032 -4.565944 -2.643963 0.482776 7.523094 2.927852 1.952880 7.941111 2.674679 -4.532431 -0.654306 1.123932 -0.162460 -1.312809 -6.828096 -3.235987 -1.068246 1.483562 -3.547091 2.662468 -1.391430 -0.818356 1.970457 -2.772359 0.619567 -0.429981 4.852474 0.500277 -1.207156 0.557155 1.969773 -1.492780 -9.199532 -6.082010 3.156890 0.234500 0.726220 1.959310 1.425242 0.607465 1.053342 -9.474138 1.969901 3.534013 1.330132 0.873781 -0.678510 1.320653 -2.389248 0.029249 1.068851 1.293519 5.317751 -3.142803 2.330822 4.361069 0.253009 2.260936 3.773540 -0.871688 0.112784 -0.420134 -1.039775 7.148804 2.570919 0.484674 2.864774 1.163607 5.230896 -0.791254 4.367238 0.967465 -3.863750 2.588184 -1.410682 -3.008815 0.426326 -3.444593 2.694302 3.674625 2.784503 -2.484044 2.134311 -1.752074 0.229388 1.014987 -2.247188 5.133071 2.696946 2.953646 3.073556 5.393460 -3.210590 -0.603090 2.569251 1.727193 0.377409 1.845279 -2.910177 -2.899303 -3.719705 -0.737530 -7.896694 -2.454066 -0.467091 9.047619 -4.889589 0.434577 1.934415 -0.234169 4.613420 -2.017451 0.301960 -4.252932 0.258819 -1.397861 5.299445 0.780368 0.169292 -0.209957 1.452826 1.760681 3.612814 -0.812518 -2.907742 -4.002532 -8.392267 -2.127779 -1.731819 2.626614 2.238302 -6.183561 -0.640275 0.907112 6.016749 -7.242559 -0.420165 3.341869 3.095654 0.478859 1.353174 -4.072026 -0.624022 0.677436 1.084242 3.263194 -2.647063 0.336110 -2.488049 0.095475 -0.254861 2.359160 -0.243262 -4.691381 -3.809781 -0.467515 -1.069421 -0.221145 0.806399 2.560613 -1.660321 3.623484 -2.403620 3.754948 -6.162407 -0.168262 -2.447091 -4.136904 -1.412176 6.351522 5.031358 3.271707 -0.521356 -2.043446 -2.020937 -5.831029 -5.694277 1.247876 0.209468 3.060503 1.685905 -0.494692 2.326514 -2.532686 0.204454 0.840884 -2.296232 -0.763397 -1.084482 3.965939 -0.704644 -1.111926 -4.695027 -0.581061 0.541742 -2.150287 2.938184 -1.435073 -5.125630 -6.935164 -4.354590 4.350790 -1.885733 0.980706 -2.511745 0.486976 -3.136627 0.564977 -4.481429 0.161227 0.153078 -4.171353 -5.395737 0.366928 -1.061292 -1.967483 0.699071 -3.437065 -0.713683 4.497037 2.376933 2.100227 0.770519 0.072666 -4.963072 -4.224536 -0.127893 -2.907217 3.309786 3.499352 -0.922793 -4.926828 -2.130657 -4.658426 4.268590 -2.459963 0.966714 -2.005527 -1.239221 4.688128 -2.862342 0.069641 -4.093647 1.378486 1.987473 -10.541936 5.029184 3.524262 -2.361533 -1.013161 -1.763085 1.152514 3.135863 4.559975 -2.573934 -2.096743 0.569224 -1.936947 0.104159 -1.668904 3.587960 -3.037030 1.108500 -3.671742 -2.309680 2.975054 2.901429 0.166671 2.128001 2.655395 1.317908 3.257350 4.185925 3.158530 -1.676573 -3.915316 -10.276490 3.095364 2.942772 -0.413101 0.425159 -2.528275 -3.677347 0.945597 -1.127285 4.872622 1.823870 -0.391987 4.282606 -4.479837 -4.682592 -2.018091 0.069947 0.275848 -1.632322 0.536253 -1.883885 1.311624 1.726067 -0.158432 0.860468 -3.257103 -3.205003 0.006956 4.767417 2.059382 1.331853 5.177219 1.836446 -3.183052 -0.355111 0.572014 0.401581 -0.846211 -4.328591 -2.190091 -1.022668 0.683650 -2.315174 2.025387 -0.649208 -0.367916 1.590142 -11.913966 -0.536697 -3.443046 21.192203 2.506748 -5.768577 1.649754 7.193445 -2.482099 -36.300421 -24.312469 19.805707 1.365408 2.642039 5.920510 5.176404 2.209696 3.473784 -37.295622 9.461442 11.708690 5.287069 0.906062 -3.401789 4.467481 -9.501888 7.874526 6.026174 5.610032 20.507640 -11.899022 8.008840 17.436937 0.036059 10.281858 16.306503 -2.032076 0.320813 -6.084197 -5.633033 29.300132 12.977446 1.246856 14.307064 5.868813 21.423346 2.377862 17.710856 9.373793 -15.260107 7.611061 0.413834 -13.300276 -2.537740 -15.329023 11.180829 13.608647 7.773895 -12.042683 7.984303 -3.215018 -1.155705 4.726499 -5.929344 20.528403 7.669917 13.864279 12.234129 22.267423 -13.839176 -4.059759 12.597788 11.444484 5.454245 12.526675 -13.293933 -17.647719 -8.564419 -3.057011 -30.059933 -11.055504 -2.641491 33.184310 -20.130225 1.570385 5.465914 -2.958646 18.120309 -8.285410 -0.563141 -17.513824 -0.016934 -4.711416 22.343464 3.334477 0.166982 0.644852 6.818477 6.874947 15.965924 -0.713008 -15.075496 -11.025292 -34.164631 -6.313224 -8.863163 9.590536 8.556630 -23.256205 -3.685483 -2.959754 26.146309 -28.067670 -2.483566 15.171620 9.346572 7.365048 -1.416234 -11.955809 -0.283205 4.503912 3.424542 14.230476 -11.061460 0.003112 -3.438240 3.464053 -0.497816 8.113440 1.065322 -17.803655 -16.097186 -0.752603 1.570842 -1.307928 1.315452 9.420595 -9.913068 14.270041 -8.387155 15.975365 -24.454582 -1.342313 -9.044983 -13.523267 -6.162060 23.752703 17.020834 17.444139 -4.502394 -6.575746 -7.152221 -23.086766 -26.614580 7.418520 1.159915 8.498859 6.828154 -1.489493 10.461353 -9.915656 0.210453 5.345972 -9.067468 -3.332171 -2.473704 11.345990 -2.653331 -3.200385 -15.962091 -3.042228 0.298078 -3.115177 13.529634 -6.144579 -30.409640 -26.797000 -16.346940 17.461478 -7.687261 2.882047 -8.711616 -1.694455 -11.821115 1.591879 -18.941960 1.979120 -1.312955 -17.012764 -21.458892 0.465958 -4.985547 -3.987238 2.802417 -14.841774 -2.734573 15.791328 10.428001 7.522055 3.659298 0.944455 -22.023279 -15.732521 1.169768 -11.118349 19.110604 11.046670 -3.469400 -20.352572 -7.913506 -19.069971 16.108906 -13.789787 4.196200 -6.978663 -6.018018 19.865199 -11.315000 0.939436 -15.927207 6.977928 9.690323 -40.456255 21.623245 17.811366 -9.035596 -3.404409 -1.561005 2.623700 13.509327 18.313847 -13.223404 -11.777478 2.841311 -7.557757 0.372470 -6.762626 14.112849 -11.480450 5.066816 -15.491607 -10.260479 10.347289 10.600198 1.704649 6.471879 8.745490 2.889658 9.062691 18.557271 12.824557 -2.387881 -18.735893 -42.807047 13.837678 10.384936 -2.828138 4.010311 -10.226655 -14.641657 4.047460 -7.395389 19.409789 3.727973 -3.694809 17.501070 -20.818685 -19.571810 -9.270158 -2.746400 1.251811 -3.416460 6.138300 -8.493099 5.636386 3.859301 -2.183240 -1.443414 -9.639247 -6.584882 1.830770 16.962411 9.157716 5.796793 20.726220 6.255483 -13.649049 -1.445579 1.916895 -0.864533 -3.950851 -20.947319 -9.216864 -4.514082 4.230331 -8.457697 7.014112 -3.054725 0.635058 3.959480 -23.134950 -3.231733 5.634144 25.510270 12.863353 -23.079823 8.088144 20.014725 -6.538898 -50.076613 -31.573278 10.481236 -2.333359 -12.794746 13.450654 4.296115 3.049117 11.132975 -53.279342 21.898121 15.972202 12.449833 -3.479397 -17.119736 7.780034 -11.211667 -11.936357 15.762298 2.006530 28.610449 -22.664079 1.048199 21.070995 5.509584 15.404365 25.781996 8.761369 -2.901517 10.005888 3.209728 50.646762 16.894420 -2.077422 20.515082 24.355855 30.619515 -6.998537 32.201291 -4.101789 -15.131100 16.452578 -18.773578 -19.712326 -0.267637 -27.188329 22.402821 37.646174 19.552656 -21.033090 19.354388 -11.552145 0.693434 8.779029 -12.595586 33.818039 23.292980 10.804119 15.140261 50.422818 -15.543081 -8.331233 17.725888 31.521339 2.459630 9.638336 -17.151095 -14.936039 -50.697712 -2.783989 -48.787146 -5.821766 -6.433877 51.394911 -29.192448 10.537175 27.913053 3.498873 24.600303 -18.341251 -7.066618 -25.263534 7.387696 -10.235490 47.462688 -2.328367 7.210450 -4.003559 12.165698 14.560774 27.626959 -5.391797 -15.928648 -34.554050 -69.546139 -21.175313 -6.226973 -1.773827 -6.121045 -42.456997 -7.799749 24.862854 32.055411 -43.533041 -5.417923 23.018430 14.479946 -2.724765 -1.801814 -27.903019 -2.691143 -3.461005 5.427121 8.016226 -15.723998 -7.048824 -24.238835 3.582954 2.505520 13.365446 -8.537123 -27.067741 -13.748095 -4.034255 -3.134513 -5.089356 -4.843729 1.513880 -25.843221 17.421902 -21.357183 23.258280 -42.234119 -0.311566 -19.707135 -27.511369 -0.717178 43.995332 17.150317 18.718516 6.204117 -14.797295 -16.492990 -32.660124 -47.330974 13.393856 -8.893873 22.317647 -2.453893 -0.835525 -2.071791 -7.529353 -15.711168 7.667490 -20.393780 -1.503620 -16.175326 34.990498 -10.786277 -6.961727 -33.389721 -0.025311 30.009770 -5.269879 3.987915 -15.446138 -23.985075 -31.499188 -31.246867 23.379776 -5.513490 5.011600 -12.070482 6.027276 -30.387276 15.811136 -22.488316 10.252375 -6.241609 -26.810126 -31.417174 -2.286072 -7.423366 -5.913450 -3.104352 -20.128994 0.356502 12.173227 15.564029 6.365856 5.943245 2.301452 -42.418615 -41.108023 -10.009289 2.254805 28.536884 18.457494 6.914915 -23.787590 -7.929513 -31.905442 32.417629 -28.235363 -0.615464 -3.366926 -14.305624 39.953104 -15.072399 -11.349542 -31.676079 12.732158 5.243648 -41.513952 45.427944 24.689894 -25.467030 -16.694614 -24.317863 5.966946 23.408684 46.537849 -18.492682 -7.662468 11.253795 -7.299720 -6.501817 -18.231814 26.217173 -14.627069 26.668672 -29.374274 -21.982346 11.189371 31.059406 -3.446002 15.082620 4.269602 12.079426 1.681725 34.351358 13.332996 -5.872056 -25.526005 -55.215268 14.326850 14.404784 3.459496 7.108079 -20.608027 -27.522493 0.627910 7.881329 36.651059 26.391424 4.517522 25.010468 -27.816438 -31.786226 -2.319533 6.943796 4.571473 -22.593615 12.871366 -17.346875 0.643114 6.724945 6.644038 8.616830 -18.930755 -34.222255 -7.158122 23.816815 15.739510 -9.733242 33.882752 7.765571 -19.401078 0.685031 0.077897 14.395109 2.447000 -10.552650 -14.077788 -19.938366 3.290132 -12.603265 34.002425 -1.515301 4.938634 14.852829 -3.721397 1.378955 -2.665985 10.098381 -0.310464 -2.209960 0.587545 2.954620 -2.788464 -16.998618 -10.097818 6.114291 1.642486 3.019320 2.588703 2.833541 -0.538419 1.913875 -16.858627 3.386286 7.117705 3.654829 1.587094 -1.003407 2.247854 -3.545716 2.212058 1.262215 3.011859 10.213128 -5.094723 4.809765 8.577196 -1.624668 2.824074 6.718467 -0.140056 1.367130 -2.864854 -0.943908 11.958821 4.552924 0.218547 5.097849 0.279842 9.709517 0.412137 6.676806 -0.539585 -8.066227 3.239972 0.940543 -4.885402 -1.659133 -4.744424 4.964025 7.406593 6.835618 -4.344254 3.139491 -1.529893 -1.134275 2.439144 -1.797284 8.617736 4.931823 6.336238 6.791224 9.770837 -5.965381 -0.804004 4.258176 1.282501 0.048863 5.736832 -5.838921 -7.388015 -4.171144 -2.017679 -14.292196 -6.374349 0.113171 14.598820 -9.911149 0.866955 2.134659 0.010856 8.859689 -3.668306 0.857457 -7.279309 -1.355089 -2.977631 10.609345 1.418259 -0.313797 -0.460100 3.536622 3.609127 6.021410 -0.281445 -6.241563 -5.017643 -12.299253 -3.868197 -3.654555 4.518721 6.762167 -11.594805 -2.731449 -1.768938 10.066561 -14.596484 0.069768 6.303850 6.791428 5.682262 1.094623 -7.440440 0.873072 1.776012 -0.231147 6.744079 -4.885833 1.214797 -2.041039 0.488972 -0.289096 2.416380 0.814042 -10.194213 -7.530442 -1.236076 -2.193853 0.516228 2.138320 5.782495 -4.159302 6.738411 -4.939000 6.997763 -11.916395 -1.220031 -2.297451 -8.461037 -3.201706 8.020222 7.308808 5.521870 -4.074816 -5.988478 -3.139154 -11.247891 -10.830560 2.264581 1.838882 3.797548 4.831718 -1.658508 5.322754 -5.102229 1.458965 3.560955 -2.905403 -1.724833 -0.730396 7.279186 -0.422372 -1.107692 -7.231578 -2.185636 -2.070975 -0.887578 8.026807 -2.342100 -9.737286 -14.582428 -6.605480 8.386576 -3.144203 1.016709 -5.277800 -1.133097 -7.665190 0.668296 -9.204249 0.080209 0.060466 -6.608792 -10.037255 1.669189 -1.606562 -4.140632 1.610504 -6.646541 -1.999478 7.520159 3.411532 4.004350 -0.492324 0.637186 -9.090991 -6.889962 1.809072 -6.585772 7.263936 4.501874 -1.635556 -8.287659 -3.434087 -8.475146 7.361309 -3.150436 2.425314 -3.348863 -0.389834 8.932285 -5.961692 0.092202 -7.949940 2.385231 4.249021 -16.232865 10.461959 6.030485 -2.587710 0.114411 1.035864 1.404229 5.858334 5.468056 -5.704297 -6.546226 1.133723 -2.979622 0.618453 -3.981440 5.638311 -6.767914 1.354946 -5.477842 -3.209866 4.771457 4.756555 0.366920 3.561208 4.637554 -1.158843 3.460048 6.962797 7.067556 -2.325285 -6.218764 -15.136758 6.473431 0.040006 -1.502164 -1.351404 -4.358074 -5.305567 3.518676 -1.696371 8.526028 2.493862 -2.651136 7.874139 -11.080040 -8.850800 -4.619179 -0.402633 0.807810 -0.974787 0.100192 -3.279020 4.050361 4.077771 -1.537010 0.011769 -6.455905 -2.154034 0.567840 8.485051 1.538171 3.121052 9.908948 2.880300 -5.078390 -0.722352 1.722203 -0.636052 -3.068413 -8.130006 -3.371406 -0.422957 2.146105 -4.479172 2.468206 -3.205975 -2.197669 3.073666 -3.887075 2.966115 -5.775731 15.334603 -1.943694 -2.910807 -0.000188 2.626434 -4.828124 -23.362935 -13.467093 7.111266 3.333046 4.711688 3.757293 4.672872 -2.065695 2.160809 -23.560011 4.475199 10.908481 4.684816 2.301171 -0.969368 2.971006 -4.789857 3.913146 0.681725 3.956674 14.289210 -6.479549 8.578533 11.997367 -3.103362 3.421046 8.389021 -2.734126 3.153545 -4.207193 -0.146259 15.000052 6.160254 0.402638 5.232599 -1.344291 13.092577 0.460250 7.592039 -2.896989 -11.589993 4.725209 5.668202 -5.344252 -2.240087 -5.226197 6.041479 10.607363 9.871232 -4.895578 3.428087 -3.384154 -1.521046 3.672319 -0.779189 12.646087 6.982861 9.867249 10.268010 12.424525 -7.428098 0.176177 4.422665 -0.946203 -2.500611 9.118162 -7.673502 -11.676865 -2.830151 -3.693989 -19.787995 -8.938336 1.875785 19.718715 -13.684416 0.270215 0.821662 1.972093 13.267275 -5.328404 2.043492 -9.003380 -2.547925 -6.151557 15.679129 2.488836 -0.120443 -1.181576 5.194469 4.665296 7.060405 -0.809035 -8.643713 -4.845187 -15.142602 -5.984196 -5.169603 7.440517 11.245155 -16.838054 -3.589581 -3.994477 12.180055 -20.953080 0.908166 8.011596 10.327785 9.867789 0.920159 -11.081174 1.883637 2.275578 -0.305034 10.043499 -5.939383 2.539263 -3.038372 0.334663 -0.343777 2.856963 1.590595 -14.669748 -9.902158 -2.358020 -4.802969 1.624547 4.761678 9.712915 -4.718811 9.241054 -6.951391 9.771731 -17.103602 -1.651154 -3.148276 -12.516932 -4.614050 6.761817 10.794158 6.247547 -7.959915 -8.924014 -3.419191 -17.182153 -13.905489 1.663628 3.374099 4.020085 7.290996 -2.713762 8.113558 -7.612912 4.223193 6.758411 -3.565752 -2.765101 -0.593565 11.913473 0.766866 -1.808104 -8.861841 -4.561428 -6.187543 -0.901597 13.263098 -1.983166 -12.462301 -22.706272 -8.056640 11.740009 -4.507303 0.954582 -8.846530 -1.955981 -11.176554 0.467624 -13.117132 -0.753140 0.846805 -7.129274 -13.620030 2.285652 -1.422892 -6.327200 1.423767 -9.466168 -3.344372 12.479061 3.250928 6.086757 -1.111372 0.989677 -11.035868 -8.147658 4.528779 -10.429921 8.234740 6.601788 -2.808405 -10.720478 -4.596117 -11.830986 8.788010 -1.266456 3.879896 -4.787741 0.221214 11.647482 -8.923242 0.130968 -10.256613 1.847517 4.834652 -21.304675 14.270583 7.112955 -2.407767 1.950409 3.149588 2.728998 6.848439 4.920239 -7.687204 -9.432192 0.307753 -4.091982 1.209250 -4.284810 6.983274 -10.976013 0.024986 -6.043323 -2.902155 7.242582 5.778935 0.670177 4.495546 5.697657 -4.426047 5.775337 7.661470 10.833801 -3.844314 -7.730250 -19.491795 8.460308 -5.199783 -2.889125 -4.390583 -4.132879 -6.828090 5.218045 -1.501948 11.325526 3.235285 -5.538371 10.452905 -16.253628 -12.139014 -8.060661 -0.021289 0.632740 -0.659219 -2.344137 -4.257399 6.359121 6.831973 -2.067187 -0.050693 -10.269872 -1.022243 1.213789 12.393354 0.374000 4.186055 13.436643 4.816246 -6.155120 -2.099011 2.940835 -2.824868 -4.853621 -11.435431 -4.526347 0.668754 3.400305 -6.386835 1.982392 -5.265215 -3.511987 4.620166 -7.738349 2.278747 -5.861027 17.096190 -0.868131 -5.886643 1.779368 3.008300 -6.205503 -28.435741 -16.743534 9.304402 3.982390 3.628387 2.655937 7.248486 -2.877683 3.984291 -28.207653 6.288245 12.027502 5.379624 2.111478 -3.359028 3.140673 -6.319959 3.253892 2.819559 3.644088 17.487697 -8.495815 7.877343 14.929535 -2.394987 3.641265 12.538563 -0.639804 3.458602 -3.258251 0.287376 19.425627 7.160114 1.498705 5.860750 0.014261 16.491553 2.324067 14.512407 -4.045946 -13.112141 7.793071 1.451349 -9.408550 -2.397145 -8.104893 7.713013 14.453407 12.449454 -6.663786 6.246874 -2.999700 -0.592399 5.100109 -0.966790 16.154526 9.291788 10.630496 10.181915 18.221606 -10.072540 -0.661849 6.915948 2.261467 -3.515570 11.895021 -13.021211 -13.836788 -3.710435 -2.112528 -25.896466 -9.136319 2.894404 26.718755 -17.078748 -0.191142 3.857207 2.556356 16.138767 -7.029262 1.323155 -11.374134 -0.568568 -8.000383 24.296700 2.461026 1.211103 -2.418104 6.285866 7.029617 9.818757 -2.155852 -10.469576 -9.136755 -22.424132 -7.473483 -6.934689 6.096652 10.912148 -22.000267 -6.538097 -3.259718 16.030005 -26.575273 0.854797 12.356885 12.074875 11.887234 2.150752 -13.228552 2.876375 1.669556 0.572217 11.303265 -7.394309 1.155736 -3.932715 2.152642 -0.212055 3.081008 0.120948 -21.627728 -10.616049 -2.318000 -6.409923 2.102572 4.319385 9.749787 -6.940131 10.638427 -10.026656 11.261165 -23.235181 -1.335339 -4.395159 -18.699747 -4.932540 10.148471 12.457410 8.639844 -8.789139 -9.183349 -5.483187 -21.013453 -21.394690 2.415330 1.948479 6.313386 6.681952 -2.768385 7.087658 -8.812580 2.312540 8.568698 -5.458105 -3.413386 -2.589493 18.509005 -0.249183 -3.426250 -10.942993 -5.138624 -4.074204 -0.109581 14.459924 -3.726371 -18.769504 -26.469503 -12.320252 14.529815 -5.168668 1.133527 -10.827050 -2.267933 -16.129535 1.817893 -14.951320 1.050751 1.598625 -9.781900 -17.393085 2.004203 -2.079536 -7.291793 1.162874 -12.137830 -3.868201 14.538401 3.322575 6.975489 -0.469078 1.336954 -15.608744 -12.252256 4.374114 -10.052318 11.038097 9.719893 -0.573175 -12.901610 -5.251479 -15.974942 10.687572 -4.797850 3.690012 -5.495252 0.885152 16.815306 -10.973963 2.420846 -12.051731 3.606108 5.076455 -27.847301 20.924938 11.743994 -4.934425 -0.055083 1.994048 2.473634 9.540503 9.900986 -10.626466 -11.517834 2.086941 -6.097804 0.167684 -4.380674 9.654461 -13.059730 3.347248 -8.941319 -4.777721 6.924364 9.790582 -0.120518 5.843286 5.400015 -3.938212 5.714993 11.378563 9.823691 -4.698649 -10.473757 -30.424544 10.180538 -5.309935 -3.797170 -2.222809 -5.180061 -8.536420 7.106487 -2.373014 15.873658 5.524884 -6.617747 13.167937 -19.842080 -16.198310 -8.398406 0.036003 1.754336 -2.402295 -1.761266 -6.114019 6.330090 7.009541 -1.723090 0.705070 -12.789554 -3.301717 0.890646 17.212265 1.466393 2.616609 17.727162 3.572293 -5.552689 -2.616645 2.240517 0.903722 -3.018343 -12.697678 -6.163851 -1.386150 4.831573 -7.633603 6.472894 -5.919854 -3.309460 7.353668 -47.515756 0.727118 8.769872 45.053023 18.254085 -30.763639 -3.031546 46.638211 -20.073461 -80.949446 -71.162058 21.482615 -9.357012 5.428214 48.331079 4.336023 2.546155 -1.198244 -110.332254 37.550367 16.599797 11.431065 -1.678530 -25.267499 24.052362 6.160683 -8.614147 20.185411 12.204915 39.395549 -49.734137 9.789427 26.806599 11.923868 36.054729 8.373791 1.647902 -8.946631 -7.010707 -21.611397 87.138815 26.548117 2.509218 51.332752 31.913758 37.825167 -17.807389 61.830370 14.953035 -26.106802 42.645400 -54.859267 -30.603768 17.854984 -43.134582 43.326186 60.858268 22.427331 -31.961522 23.060805 -2.108279 4.239389 9.496312 -48.236312 63.018305 33.777022 39.707935 20.624464 63.828778 -27.702562 -9.584661 27.511211 56.499953 13.229608 -16.088962 -56.160603 -2.226537 -87.301833 10.296571 -90.752610 -15.538741 -27.311008 77.179921 -44.749560 22.977541 34.288196 -21.633486 38.543641 -40.764319 13.397608 -33.627487 1.757771 -12.172468 51.077017 -13.117798 -2.832123 19.429319 13.827565 24.583644 56.533048 -10.928832 -6.100450 -45.370968 -94.757931 -29.135772 34.060610 13.739366 -2.685025 -49.245582 -0.188064 16.355811 31.167048 -47.541646 -33.337870 32.723837 27.102645 -24.014486 24.487868 -47.051090 -25.234116 0.521395 28.323010 27.662232 -30.418032 13.276416 -48.718951 -5.698106 11.388141 47.877409 1.703482 -24.500034 -42.284215 -10.262112 -0.448656 -20.460170 -20.577356 5.129373 -20.604162 41.691609 -10.640560 32.644660 -67.251145 -11.386896 -34.046661 -21.284880 6.758728 80.370006 31.550049 31.098361 36.545986 -22.019707 -21.475974 -42.633801 -50.299593 26.993436 12.910552 35.163392 7.524507 3.567000 21.407250 -7.232169 -38.427507 10.120224 -38.051040 -25.701337 -44.093589 32.499571 -14.352254 -8.273348 -61.821363 25.731748 41.611291 -42.174594 9.016176 -8.352685 -43.411940 -41.861025 -45.832006 37.668995 -5.183852 10.993320 -4.955031 31.278286 -48.435941 12.571542 -51.354958 10.395853 4.174197 -66.987974 -42.462769 -7.293334 -4.523773 0.020396 -2.753353 -29.720762 0.769500 28.594099 67.803204 5.140058 25.407712 14.204634 -73.907282 -85.487621 -30.263639 -0.186878 46.757420 11.134314 -3.292042 -47.240388 -17.822108 -33.739250 58.087490 -46.634111 -0.819882 -29.917392 -6.021227 49.634203 -24.845903 -21.264804 -49.497450 13.911887 26.281768 -96.677882 52.948665 26.334308 -31.389322 -26.150235 -58.075322 21.333968 35.625202 85.371843 -21.498101 -7.459147 6.116874 6.388125 -9.246827 -42.869921 54.539844 -16.690814 8.879285 -38.926988 -46.480061 15.537145 34.618021 13.742719 34.522243 26.510692 43.066872 7.290269 66.056743 17.275560 -27.678629 -29.368885 -102.852869 19.704540 92.627986 1.012599 13.876948 -52.605513 -57.661438 -13.898826 6.805632 47.901428 48.051448 34.901767 36.065340 -28.500641 -39.344471 -10.348856 27.129783 -9.704887 -28.981563 3.660794 -26.676224 2.898682 24.293719 -4.246584 10.199380 -16.486471 -82.768331 -37.103878 30.855354 15.398556 12.521928 52.109410 36.309485 -44.090147 3.637167 1.147872 13.885567 0.932353 -21.960095 -28.431751 -27.927716 -11.993265 -22.511420 25.736162 11.889296 -1.146519 5.424120 -6.214667 0.539221 -3.898686 13.289415 0.276985 -3.128869 0.653074 2.582811 -3.354422 -21.694308 -13.264864 8.642143 2.032534 2.186879 3.539874 4.944852 -0.131325 1.688412 -20.677237 4.777903 8.020630 2.537673 0.938851 -1.554362 2.550031 -5.801490 3.767727 2.317333 2.824194 12.525978 -6.522902 6.546841 10.640606 -1.141135 4.473352 8.728265 -2.506196 1.588914 -3.125975 -1.265216 15.953175 5.778740 1.067682 5.906410 1.330393 12.372259 -0.183525 11.234196 1.228128 -9.229585 7.015395 2.487142 -6.495360 -0.803394 -7.886400 6.053421 9.611562 6.114828 -5.642468 4.099412 -3.649668 0.107250 3.091394 -1.546479 12.950731 6.499614 9.101431 8.360109 12.831163 -7.654117 -1.084225 6.200695 3.109825 -0.141558 8.202877 -8.346311 -10.011191 -3.339856 -2.156693 -16.840217 -6.008340 -0.040957 20.483411 -11.951471 -0.959946 2.427549 1.141572 12.038812 -5.138642 1.541978 -9.294610 -0.094287 -4.734438 15.572554 1.998881 1.091421 -1.378068 4.088405 3.815959 8.111601 -0.998769 -8.117277 -6.744347 -17.696915 -6.280124 -5.163412 6.447476 6.943945 -15.960885 -2.151998 -1.076559 12.019626 -18.077571 -0.046984 8.234972 7.990210 8.101016 1.921343 -9.642696 0.088226 2.392759 1.870778 7.972584 -5.000292 1.150338 -4.510016 1.808758 -0.299732 4.124123 -0.008032 -13.654622 -8.290244 -1.491657 -2.607183 0.820330 2.795048 7.456967 -5.330384 8.324117 -5.467936 8.995001 -16.647171 -1.558684 -5.620155 -10.911371 -3.680108 10.797877 10.650598 8.962422 -4.193665 -5.998885 -4.177404 -15.701117 -14.868791 1.455892 1.009784 4.482716 4.907607 -1.596925 6.371576 -6.321785 2.110881 4.937766 -5.111784 -2.461624 -1.983540 10.657706 -0.684978 -2.521252 -9.173616 -3.308263 -2.384603 -1.953130 10.242820 -2.182469 -15.300955 -18.904160 -9.403570 10.456062 -4.602602 1.705864 -6.929648 -0.975805 -9.786053 0.818633 -11.233736 0.595276 0.584453 -8.531796 -12.750167 1.393587 -1.821255 -4.466427 1.025511 -9.306759 -2.067380 10.459817 3.999476 5.360800 1.373111 0.001226 -12.341461 -9.583845 2.221455 -7.673273 9.002078 7.745378 -1.963811 -9.874843 -4.917150 -11.997211 8.172705 -5.698221 2.874496 -3.604343 -1.852305 11.006786 -8.053568 0.470215 -9.628830 2.744915 3.940957 -22.106183 14.028410 8.727255 -4.649778 -0.836172 -0.485031 2.659858 6.448566 8.637554 -7.164650 -6.740415 0.953170 -3.527889 0.238023 -2.707396 7.868335 -8.509253 1.768221 -7.913782 -4.768773 6.463636 6.973578 0.342779 3.864484 4.766935 -1.102384 5.795981 9.085009 8.345719 -3.066270 -8.942836 -24.087271 7.113739 -0.787050 -3.135137 -0.171542 -5.131064 -7.791607 3.512092 -2.265631 11.743770 2.119910 -2.887018 10.065511 -13.331090 -11.692594 -6.278244 -0.779179 0.442138 -2.353667 0.260349 -4.741010 3.576884 4.130894 -0.972600 -0.240650 -8.155583 -3.115916 0.789577 11.968380 2.963303 2.915709 12.393472 4.602841 -6.140065 -2.084120 1.914898 -0.972591 -1.757793 -11.362881 -4.895603 -1.402672 2.570973 -5.529099 3.659269 -2.686836 -1.019192 3.656948 -12.351834 -0.173516 -1.516241 10.431467 3.760627 -11.075023 3.302211 8.463684 -4.138132 -19.980865 -13.894259 11.859488 -0.228081 -7.820655 3.955810 3.581883 0.697084 2.383726 -23.452843 10.793587 5.338336 2.436572 -6.369897 -5.810303 2.172596 -6.658776 -3.542964 8.036674 -1.516193 11.251409 -7.692039 1.552276 8.620836 1.717092 7.412351 11.596534 -1.573812 -1.850491 5.871801 1.623834 20.595920 9.136613 -0.467803 7.986715 11.233969 12.857425 -4.637912 16.253283 -1.392537 -5.530858 8.479407 -0.330944 -10.149145 0.744484 -12.063095 6.845743 12.909337 2.340369 -8.338776 8.005490 -7.989027 -0.474704 4.192582 -2.159739 17.083211 10.120708 7.139719 6.358134 21.296202 -5.004694 -2.925535 9.107743 13.540092 0.880378 4.995818 -5.041515 -9.404784 -12.776028 0.141632 -21.239921 -3.693631 -3.072392 25.901887 -11.107352 0.704125 7.372796 4.808312 11.708687 -9.764593 -2.759368 -10.055577 3.024977 -6.399775 21.731686 -1.064748 6.330217 -2.920621 4.631385 5.093170 11.322440 -6.039756 -8.214023 -13.327855 -28.366847 -8.198454 -3.627234 -1.795134 -2.968139 -19.544558 -2.437703 8.958091 16.955222 -18.011927 -2.242745 9.769515 2.636701 4.183922 6.450898 -14.259520 -1.198019 -0.471648 3.462472 4.066061 -2.955943 -2.892763 -9.794541 4.002413 0.877728 4.656988 -2.222463 -18.461504 -4.090554 1.480143 -3.393167 -1.414976 -0.601539 1.129458 -10.453407 6.538366 -7.970233 9.389831 -20.118683 -1.138665 -10.369840 -12.611079 0.181330 14.404238 14.649479 10.102139 1.675389 -1.885088 -6.064891 -17.028345 -20.938151 3.789641 -6.631684 7.202166 -4.680949 0.437911 -1.504032 -3.206375 -4.448861 4.541866 -8.774335 0.076001 -8.075030 20.587140 -2.152790 -2.998807 -10.913845 -3.523921 7.755409 0.290782 3.111998 -5.333123 -18.659361 -15.269264 -12.154334 9.242726 -1.731889 0.643173 -6.304818 1.069014 -10.996479 4.439759 -7.933360 3.437891 -3.395809 -8.961700 -12.038213 -1.515702 -1.663522 -4.846944 -5.438132 -8.123664 -0.924590 10.266635 5.069812 3.979000 3.467040 -1.258986 -15.016914 -15.243743 -0.764046 1.308509 13.557475 13.255508 2.353454 -10.514907 -2.258831 -17.313334 12.892979 -14.081952 0.133793 -0.047992 -8.564317 17.841798 -7.285095 -5.452946 -10.676672 5.598837 -0.842297 -22.625016 19.986097 12.626549 -11.262863 -6.801788 -8.862300 2.541463 10.459787 18.307778 -7.408365 -2.180690 3.448704 -2.212385 -2.867785 -2.444831 11.379135 -7.032157 11.490176 -11.947270 -8.780732 7.349520 12.570663 -1.400320 3.756112 -3.280935 3.102908 4.572262 12.589999 5.220670 -3.042131 -11.491388 -28.636363 4.570493 0.319041 -2.596301 4.083825 -6.550753 -13.232880 -1.125999 -3.385968 16.346721 1.497847 -2.164762 9.153474 -12.334436 -14.270480 -4.168199 3.090978 -0.006686 -7.525246 8.011137 -6.557403 -0.135795 2.604317 3.759877 2.424795 -9.585390 -12.383179 -1.986715 9.064460 7.960675 -6.032087 13.428749 3.301220 -6.082617 -2.978053 0.007553 4.635646 1.932850 -9.670550 -6.608916 -9.882404 2.629361 -4.617036 14.320144 2.427293 5.782722 6.703938 -23.256653 -3.822493 4.146333 27.228059 12.466980 -23.375581 7.828413 18.887297 -6.453997 -51.185014 -30.895045 10.928166 -1.589413 -12.849424 13.344558 5.486477 2.632558 11.199383 -52.833548 22.143824 16.209959 12.222390 -4.067725 -17.214885 7.605518 -11.662878 -10.175572 15.452714 1.999880 29.375047 -22.787305 2.236530 21.781405 4.795974 15.351265 26.011290 8.661296 -2.163578 8.952082 4.001893 51.182196 16.716639 -1.875005 20.222144 23.771508 31.305051 -6.589257 33.243007 -4.505325 -15.523098 17.453524 -16.006429 -19.254664 -0.736259 -27.806832 22.565380 38.244997 19.741028 -21.156211 19.310529 -12.014051 1.131587 9.352901 -10.673956 35.179351 23.918454 11.956594 16.422747 51.312149 -15.776589 -7.816693 17.521993 31.057434 1.566047 12.338310 -17.550045 -16.574933 -48.990898 -3.497544 -47.682460 -5.495483 -5.851478 51.765057 -30.050500 9.698698 27.435540 4.972439 26.000658 -18.773858 -6.474137 -25.549042 7.320059 -10.980829 49.848470 -2.021819 8.050776 -5.092391 12.580373 14.255283 27.361134 -4.648170 -17.044098 -33.467384 -69.333113 -22.791056 -7.169567 -1.537132 -5.331010 -44.320016 -7.683767 24.112234 31.652674 -45.216980 -4.791883 22.961517 15.132468 1.192749 -2.552765 -28.057759 -1.997724 -3.210004 5.511273 7.821997 -15.585354 -6.779879 -24.689659 4.013253 2.749929 13.289238 -8.600942 -28.544202 -13.287395 -4.334218 -3.395794 -4.437659 -3.710183 2.681450 -26.999399 17.583729 -21.848863 23.801394 -43.632921 -1.359747 -20.137698 -28.805442 -1.164011 43.450793 16.647466 19.879156 4.853240 -16.180417 -16.572946 -34.649112 -49.116438 12.581700 -8.952517 21.176799 -1.407729 -1.142482 -1.815327 -8.296584 -14.717505 9.529745 -20.921041 -2.038952 -16.022256 35.462113 -10.583058 -7.311721 -33.312205 -1.043850 28.754065 -3.862949 6.012742 -14.929271 -25.592462 -33.941285 -31.284060 24.042563 -6.049181 5.069462 -12.964475 5.105665 -32.062421 15.674511 -23.202981 10.549293 -6.083210 -26.251885 -32.292192 -1.827764 -7.309580 -5.885131 -3.417073 -21.356132 0.492826 12.031590 14.256181 6.611019 5.961983 2.168615 -43.211341 -41.663982 -8.687170 1.559197 28.874262 18.448724 7.140759 -23.015072 -8.343200 -32.975908 31.867250 -29.008558 -0.033106 -2.366021 -14.182936 40.184553 -16.134784 -11.826583 -32.257071 12.619450 4.634620 -40.075800 46.981285 24.877714 -25.872672 -16.058144 -23.219281 6.814419 22.989311 46.306478 -19.246205 -8.422678 11.271625 -6.728800 -6.556498 -17.710790 26.139050 -15.705557 26.415823 -29.603020 -21.746716 11.509287 31.770074 -3.755053 14.410686 3.916267 9.670822 1.113217 34.326979 14.429301 -5.263349 -25.877230 -55.730296 14.253583 10.041271 2.698389 6.301690 -20.798890 -27.154712 1.501021 8.411867 37.357433 25.652276 3.904909 25.554831 -30.066515 -32.829424 -3.087273 6.448852 4.578160 -22.490275 12.345085 -17.774034 0.840359 6.921930 7.147359 7.575986 -19.661939 -32.144176 -6.556738 24.816872 14.791645 -10.173808 34.670158 8.460593 -19.022693 0.132643 0.352864 13.367595 2.524686 -11.643214 -14.115744 -19.447719 3.937914 -13.285066 34.249830 -2.429696 4.858757 14.979847 -7.941904 -0.346418 -1.679022 12.808150 1.024681 -4.814054 1.593792 5.384414 -2.449866 -23.175315 -15.053292 10.295315 0.855511 0.435957 4.474587 3.711190 0.815510 2.226545 -25.418904 6.409877 8.365995 3.559125 0.838222 -2.869340 3.153166 -6.271805 2.183687 4.198309 2.611155 13.414794 -7.786914 5.253391 11.125797 0.250684 6.241032 10.522493 -2.388993 0.295745 -1.379084 -1.605762 18.750867 7.869161 0.190630 7.833234 4.150488 13.748330 -0.507279 11.340561 3.655665 -9.436500 6.801637 -0.428542 -8.546532 -0.860663 -9.530773 6.630851 10.616172 5.833467 -7.141968 5.771465 -3.428098 -0.184132 3.246634 -3.469293 14.352187 6.708949 8.680053 8.054891 15.162712 -8.023397 -1.809556 6.931482 6.481175 1.243891 6.773111 -8.469670 -9.958135 -8.536963 -1.609139 -20.232893 -6.788376 -1.445303 20.598249 -12.749407 1.151314 4.314929 -0.295376 12.284225 -5.683359 -0.176741 -10.712641 0.358574 -3.365558 16.185339 1.171157 1.294223 -0.163077 4.606544 4.744450 9.916934 -0.997714 -9.010549 -8.966147 -22.256224 -5.343138 -5.134115 5.455036 5.073999 -16.579899 -2.090167 0.912895 14.516147 -18.872828 -1.242029 9.327986 6.978504 3.977967 0.149596 -9.435502 -0.523670 1.707904 2.827170 8.016560 -6.806884 0.154139 -5.212962 1.907530 0.355081 5.320832 -0.284341 -12.930922 -9.263276 -0.339583 -0.824666 -0.524820 1.959355 5.931190 -5.833681 8.625826 -6.878418 10.396862 -17.020054 -0.652672 -6.824813 -9.122228 -3.362675 13.840068 11.217729 8.920810 -2.184500 -5.107778 -4.278883 -15.579614 -17.374902 3.873583 -0.010873 6.583553 3.295012 -1.289707 5.299225 -6.013785 0.080524 3.020245 -6.378246 -1.902382 -3.310199 9.557448 -1.129339 -2.770653 -10.022632 -2.076068 1.484204 -2.768345 8.313957 -3.733892 -15.947371 -18.034165 -11.166884 11.256546 -4.486482 1.484560 -6.459264 0.038341 -9.768345 2.003120 -11.614259 1.545209 -0.545832 -10.202274 -13.840917 0.394885 -2.699084 -2.697782 0.685541 -9.527961 -2.029533 9.632071 5.910318 5.058860 2.325790 0.460807 -13.756832 -11.350269 0.572120 -6.261126 10.934864 7.710093 -1.418251 -11.938393 -4.724559 -12.599132 10.894172 -8.175102 2.685836 -4.038056 -4.322717 13.565551 -7.218394 -0.764589 -10.664557 4.221987 4.761637 -23.633739 15.232818 10.143409 -6.596977 -2.685515 -2.973828 2.409960 8.602817 12.172089 -7.673934 -6.678588 1.865065 -4.265128 -0.168154 -4.244196 9.491733 -7.773839 4.361695 -9.869492 -6.383327 7.192080 7.994762 0.545317 5.381396 4.703530 1.772140 5.455662 11.284403 7.876300 -2.715744 -10.944235 -26.326929 8.027110 4.988114 -1.359093 1.540433 -7.029433 -10.065071 2.472461 -2.034565 13.287526 4.276252 -2.072749 10.890523 -13.139097 -12.988089 -6.261691 -0.359780 0.632535 -3.253089 2.339195 -4.896784 3.362248 4.058954 -0.151773 1.193049 -7.997391 -6.629338 0.474150 11.674934 5.260389 1.715067 13.640578 4.221710 -8.022070 -1.717151 1.165350 0.004191 -1.602170 -11.053699 -5.924779 -3.518752 2.782487 -5.848523 6.096048 -1.623142 0.485375 3.380115 -9.710793 1.117728 -6.969933 17.814399 0.132401 -5.023188 0.933994 4.435948 -3.946776 -28.885365 -17.951747 14.244936 2.362461 1.636504 5.206923 7.141272 -0.785244 1.758055 -25.581116 7.345426 10.124352 2.566355 -0.973266 -1.361731 3.074003 -7.675726 3.235906 3.063085 3.262903 15.982480 -8.058617 8.414668 14.186079 -1.759274 5.180318 11.499507 -3.791862 2.136416 -3.098304 -1.842025 21.065354 8.418961 0.780901 8.662113 2.121501 16.304222 -2.850968 18.351803 -0.431003 -12.239321 10.401530 2.525360 -9.159583 -0.316349 -9.930133 7.963413 12.022280 5.951984 -7.449160 5.433108 -6.220532 0.128676 4.236811 -1.610617 17.824574 10.457048 12.341960 11.759541 17.499865 -9.453321 -1.488139 9.198458 4.399137 0.451767 10.728891 -9.166848 -13.384476 -1.702743 -2.050008 -20.002118 -9.436360 -1.323061 29.624079 -16.286287 -2.144748 2.305087 3.074889 16.671300 -7.618999 3.344969 -12.086760 0.013787 -6.249266 20.849215 2.308405 2.588290 -3.859387 4.672837 4.721914 10.792757 -3.051587 -10.499517 -10.972068 -22.557105 -8.141196 -6.519453 7.734331 9.506104 -22.978997 -3.267304 -1.040404 18.035188 -23.957764 -0.498460 11.040532 9.513919 13.978480 8.557955 -14.768134 0.003739 4.336475 1.755285 10.165774 -4.943567 1.207522 -7.723031 3.434535 -0.791267 4.777864 0.617929 -21.869050 -10.117824 -0.474492 -4.577465 1.886920 4.632976 10.187514 -7.957681 10.816686 -6.491586 11.141178 -23.392158 -3.452325 -7.612863 -16.005495 -4.377448 16.435582 17.657831 13.951440 -4.784682 -7.370709 -7.118683 -21.873750 -20.930010 0.694362 -0.256188 6.049811 5.083890 -1.574494 7.958958 -8.086002 3.745358 6.388851 -6.828317 -2.740264 -3.542170 16.780382 -0.812600 -3.232146 -12.104176 -5.917390 -4.388881 -2.994236 13.839272 -2.001075 -22.560367 -25.785153 -12.556965 13.725130 -5.705706 2.384005 -10.004389 -1.284778 -13.793405 -0.027906 -13.929951 1.383408 0.927815 -10.900552 -16.784932 1.793303 -1.588755 -7.174036 -0.216034 -11.963240 -3.166998 15.430886 4.681522 7.480430 3.191600 -1.534859 -15.975513 -12.718014 3.488396 -10.353258 13.885583 13.173484 -2.650484 -12.674407 -6.194288 -18.430063 12.478609 -10.688942 3.777736 -4.327347 -1.988457 15.831738 -10.737196 -1.938896 -13.476709 4.341778 4.103497 -30.650448 17.703148 12.092268 -6.402968 -1.051713 -1.210341 3.598714 9.869070 11.898129 -9.476298 -8.431519 1.354999 -4.031694 0.041316 -2.400587 10.719858 -12.001788 3.286502 -10.080738 -5.572883 9.140735 9.085066 -0.016519 4.006035 4.760143 -1.612958 9.760431 11.123673 11.455417 -5.714345 -12.040542 -33.849829 9.293539 -2.274077 -6.171021 0.070565 -7.705451 -10.752922 4.137045 -6.167532 16.092549 -0.868602 -3.547266 12.950407 -18.470180 -15.898796 -8.402565 -0.173123 -0.429141 -2.775648 2.325916 -4.691569 4.271875 6.607941 -1.271220 -0.355234 -12.671887 -5.424736 0.677903 15.905608 3.536985 3.033494 15.909750 6.383566 -7.780000 -3.546350 2.458634 -1.111946 -2.850039 -17.826323 -6.673617 -2.558682 3.068200 -7.553292 5.668861 -2.253262 -1.436417 5.227092 -8.288413 -1.533940 -4.051969 15.114387 1.231630 -3.924789 1.145545 3.752227 -3.414144 -25.701312 -14.452306 6.829771 2.438015 2.547825 4.406728 7.089350 -0.316331 1.681522 -21.930453 6.307659 9.254806 3.313053 1.389426 -1.922115 3.202422 -7.222037 3.807920 2.209900 3.442888 14.653900 -7.741823 6.963225 12.755282 -1.694134 5.131138 10.859036 -0.040598 1.557066 -3.613682 -0.118240 19.167804 6.804467 0.678091 6.025912 1.552035 14.630634 0.572877 15.473123 -2.029315 -10.899470 9.399514 -2.964760 -8.112780 -1.104014 -9.611289 7.655654 11.720879 8.836748 -7.022707 5.054689 -5.251863 0.339327 3.698014 -0.909937 15.176254 7.284562 10.856187 9.716205 15.884887 -9.290573 -1.891643 8.807603 3.837070 0.223105 10.275990 -11.089493 -10.797381 -6.670634 -1.749994 -17.107090 -7.214733 -0.366037 24.066196 -14.458737 -0.760971 4.963994 0.634131 13.950888 -6.409239 2.019918 -11.312635 0.251319 -3.943712 18.382870 1.168802 1.229416 -1.933881 5.056727 4.752876 9.677636 0.243060 -9.526775 -10.447319 -19.222470 -7.520093 -6.125995 6.876957 7.968818 -19.361120 -3.354765 -0.778946 13.214894 -21.257311 1.437451 10.243792 10.282280 14.092110 3.729807 -10.505923 0.418045 3.401619 2.087445 8.879009 -6.816538 1.181468 -6.815160 4.283052 0.182331 4.074608 -0.970667 -17.167692 -8.875089 -1.344710 -3.388644 1.138556 3.355725 8.502800 -9.002717 9.753162 -6.975674 10.507067 -20.154144 -2.709460 -6.274139 -14.924325 -4.153707 18.432514 11.536213 11.296573 -3.935886 -9.248412 -5.383703 -17.876046 -18.607641 0.470148 0.812201 5.525823 6.319259 -1.553766 7.127023 -6.666017 2.273230 4.618749 -5.752739 -2.671413 -1.980619 10.070226 -1.373477 -2.818562 -11.474586 -3.770134 -1.054252 -1.355295 12.410619 -2.777948 -18.502643 -21.797753 -11.643363 12.167456 -5.245477 2.599903 -7.977161 -1.440008 -13.794056 1.735482 -13.347844 2.495894 0.647718 -10.941140 -15.155765 2.481544 -2.406643 -4.473214 1.567569 -9.901353 -2.555266 9.701308 4.609843 6.086542 1.609571 -0.385687 -16.151664 -12.931533 2.171307 -8.647285 13.635411 7.046290 -2.260786 -9.405580 -5.657303 -14.312595 10.626447 -7.474405 2.722736 -3.836472 -1.176386 13.402735 -9.247538 0.730655 -13.372227 4.114921 4.540242 -23.394676 16.916166 11.267410 -5.924220 -1.457494 -0.799265 2.806694 8.339962 10.721044 -7.219624 -7.983095 1.709790 -3.071078 -0.075773 -4.082540 8.900852 -10.539953 2.913319 -9.680981 -6.184006 6.349885 9.234673 -0.265334 3.839520 5.573276 -0.946098 4.200630 11.325948 9.487509 -3.459960 -10.895147 -28.288184 8.421636 0.705286 -4.036068 -0.464428 -7.337430 -8.083467 4.382218 -2.086933 14.109608 6.541993 -2.151520 12.077865 -16.605365 -14.122410 -6.615123 -0.366202 0.341176 -3.235786 0.027551 -5.662196 4.415973 4.757282 -1.261425 -0.386725 -9.921109 -3.814058 0.346462 14.561955 3.218336 3.117939 14.769999 5.147191 -5.870677 -2.337667 3.635700 -0.158046 -0.866041 -11.901781 -6.122110 -1.904230 2.723889 -6.363841 4.963320 -3.393682 -2.184217 4.802124 -2.302402 0.524154 -0.205595 2.016191 0.245929 -1.062016 0.547815 2.038242 -1.510393 -5.867984 -4.930014 0.230392 0.068106 -0.105469 2.186796 1.129037 0.359020 0.618731 -6.257547 1.271515 2.434105 0.623015 -0.014091 0.108645 0.849910 -1.580719 -3.598002 0.731969 0.331600 3.303596 -2.089911 1.274980 2.612114 0.030473 0.626930 2.230747 -0.733613 -0.252267 1.999058 0.449747 4.650867 1.078210 0.115068 1.401828 1.392236 3.136503 -2.949981 4.812514 -1.371115 -2.253928 3.644845 -3.852191 -2.171852 1.495218 -1.959385 1.779704 4.018438 1.986163 -1.410265 1.878138 -2.052209 0.559673 0.485938 -2.601187 3.604655 3.350892 1.877612 1.306994 3.755329 -1.360294 -0.251279 1.512313 1.008508 -0.318992 -1.025833 -1.728629 0.383456 -4.615139 0.249793 -5.721743 -1.206696 -0.905244 7.061036 -3.072448 -0.079507 2.405231 0.173671 2.942650 -1.686285 0.577438 -2.307841 0.603602 -0.915251 3.432732 -0.043232 0.447885 -0.904837 0.820264 1.297102 2.172470 -1.724203 -0.812299 -6.012583 -6.368810 -2.761011 -0.183372 0.996763 0.841416 -5.163998 -0.490336 3.016600 2.689123 -4.561104 -0.102367 2.239632 2.394229 -0.708829 4.625749 -5.363322 -1.226231 0.001265 1.194920 1.624911 -0.704974 0.408042 -4.658915 0.159941 -0.009705 1.246820 -0.844000 -4.023935 -1.743322 -0.226291 -1.871146 -0.261245 0.510482 1.432193 -0.769791 2.389814 -1.591854 1.875332 -5.495106 -0.413996 -2.113610 -3.723721 -0.210851 5.143105 4.992439 1.643443 1.116975 -1.788107 -1.887689 -4.140186 -3.538722 -0.126454 -0.663827 3.532592 -0.274064 -0.204182 0.675284 -0.773981 -0.315000 -0.265478 -1.687573 0.019267 -1.917535 5.460431 -0.763605 -1.035758 -3.843712 -0.470170 1.715575 -3.064463 0.760925 -0.844473 -0.992047 -4.010096 -2.991194 2.534815 -0.787264 1.218260 -1.591058 1.497077 -3.703347 0.717739 -2.134992 -0.680728 0.317184 -3.406916 -3.259950 0.149491 -0.119137 -2.396729 -0.224476 -2.085860 -0.600903 3.861737 2.547319 1.977446 0.603232 -0.511492 -3.366306 -4.111377 -1.311041 -1.734322 2.448665 3.972624 -0.576008 -2.559600 -0.879442 -3.919797 3.722793 -2.153507 0.037986 -1.428060 -0.670234 3.252888 -1.886315 -1.168480 -3.199595 0.735582 0.369009 -7.728813 3.768935 1.931650 -2.019643 -1.142620 -3.393004 1.107764 2.245318 3.598804 -0.893841 -0.007746 0.174789 -1.018291 -0.172272 -1.358701 3.020732 -2.054060 1.329160 -2.301183 -1.405586 2.163127 2.711295 -0.165447 2.132544 1.237421 2.396474 2.801227 2.305217 1.116584 -3.125086 -1.239002 -7.185361 1.515638 2.935195 -0.849094 0.530318 -2.337310 -2.610721 -0.306310 -0.483813 3.355529 1.876151 1.137595 2.471674 -1.856108 -2.889778 -0.827628 1.382596 -0.115631 -1.923875 0.450251 -0.753513 0.494634 2.091396 0.399677 2.049459 -3.732255 -5.392884 -0.972431 3.455689 1.019142 0.109556 3.251240 0.888864 -1.776702 -0.380550 -0.022199 1.616232 0.265882 -1.430023 -1.465977 -1.391006 -0.172162 -1.600109 2.261547 0.072699 -0.281046 1.930442 -84.148725 -2.442865 9.872078 93.566555 36.158584 -95.858823 31.236576 78.251889 -34.850371 -175.084512 -104.232867 31.695703 -3.660977 -50.767636 44.243912 20.907875 -5.797425 36.850101 -195.653272 83.475254 61.467632 45.798629 -20.478382 -70.214287 27.701439 -34.205023 -53.807079 61.453506 0.270173 101.606910 -77.938700 2.423562 75.434732 18.379073 47.955275 88.899138 28.893465 -2.938023 44.529381 22.343737 169.744314 68.211023 -22.270964 59.507201 83.391720 109.272243 -27.088872 109.202709 -63.191152 -53.511567 53.854889 -56.343476 -73.877808 -5.181074 -85.188244 76.496479 147.222213 83.839960 -67.733473 72.115070 -56.690883 0.156570 37.304869 -31.765291 127.951864 94.294813 45.360851 56.864740 187.170788 -52.197111 -25.221329 59.041427 105.410647 -11.971934 31.973438 -55.582519 -59.046936 -186.734300 -3.762338 -191.343096 -30.557445 -10.840663 189.327810 -106.729065 37.362238 96.268377 31.628283 92.899898 -81.645560 -19.932736 -84.023735 23.144633 -50.333117 200.492471 -10.382195 32.152349 -17.929376 53.305538 62.294271 96.441595 -26.243689 -51.140640 -126.017459 -238.438896 -75.718839 -15.749256 -17.228146 -17.228754 -160.417063 -37.274455 105.558094 112.175920 -164.035478 -16.450124 85.068262 55.456490 14.932165 5.297488 -110.796943 6.734055 -21.185021 9.574863 30.786148 -53.719082 -22.556961 -81.906565 15.040428 10.946524 40.095836 -22.884687 -135.220489 -37.176440 -8.808485 -37.918378 -10.593853 -8.622698 1.964119 -95.206256 58.145732 -89.455298 84.862185 -165.780343 2.951070 -62.391376 -116.354614 4.256281 128.591800 74.887623 47.224056 13.302354 -52.956327 -58.272153 -125.374785 -178.085298 42.681956 -23.625954 78.146900 -21.644030 -5.190071 -14.732462 -27.754841 -50.799926 40.688873 -73.339749 -6.118753 -62.356992 169.211778 -29.968939 -25.704650 -110.722682 -8.147282 101.821811 -8.976285 20.882779 -53.400915 -81.203021 -127.171420 -108.314279 83.065171 -12.981747 6.314233 -52.655834 19.379150 -125.485749 62.725752 -77.089461 47.615828 -16.996270 -84.926744 -112.321178 -3.365946 -19.779855 -31.576951 -22.948257 -67.649121 -5.700969 46.619353 37.542743 21.861230 16.621004 15.188792 -143.145804 -148.961539 -23.210494 13.397184 102.407703 73.044499 30.979236 -78.025660 -20.652710 -124.270183 123.212202 -87.192392 -2.004298 -16.389668 -43.980942 154.445473 -56.784402 -49.737229 -115.563112 45.599923 10.043635 -121.794299 178.135930 89.939915 -88.351186 -57.257868 -81.438681 21.079254 89.421754 162.630675 -71.757428 -35.944797 38.844995 -23.978298 -26.680339 -53.179022 91.668621 -62.976855 98.919029 -97.203592 -71.156923 36.983714 113.448336 -13.920877 59.476851 -1.628387 24.494404 -1.971805 114.755065 48.623899 -30.038774 -85.757811 -184.711145 47.939028 6.848869 5.452584 6.172384 -66.381302 -101.065951 3.165786 35.488653 133.392406 100.434274 -8.245170 84.637094 -113.568934 -115.454840 -14.248657 38.589971 12.655694 -81.986188 41.051370 -55.517672 6.466334 39.439100 24.176518 35.656719 -83.612533 -123.428160 -32.646399 88.326142 43.942339 -55.182031 124.542538 23.825429 -58.202175 -6.637953 2.149043 50.886023 9.459340 -31.769053 -48.700994 -73.639275 18.683507 -45.620655 129.596514 2.362246 9.841977 65.247963 -4.790340 0.754572 -3.356586 10.373839 0.044262 -2.218063 0.199884 2.402071 -2.533867 -16.903693 -11.032777 6.683754 1.598963 1.693481 3.266897 4.181668 -0.038062 1.073449 -16.272057 3.921092 6.284091 1.638072 0.547445 -1.148467 1.999393 -4.846783 2.934743 1.614352 2.095412 9.609008 -4.989722 5.426924 8.147626 -0.717649 4.069287 6.574031 -3.016262 0.829241 -2.483583 -1.147844 12.412950 5.406410 0.140815 4.464202 1.140069 9.617326 -0.236278 7.090790 -0.207943 -7.081305 4.648327 2.435997 -5.236336 -0.442623 -6.182407 4.561881 7.153497 4.075809 -4.312501 3.039380 -3.524138 -0.029452 2.297280 -1.496579 10.514101 4.166523 7.921575 6.751998 9.418096 -5.835725 -0.744853 4.998609 2.475787 0.000269 6.136529 -5.477774 -7.929221 -2.580465 -1.727215 -13.648784 -4.786594 -0.088321 16.263326 -9.169144 -0.871353 1.573509 0.657778 9.484518 -4.326182 1.093594 -7.161749 -0.242787 -3.835440 11.307621 1.859002 0.669032 -0.955329 3.658997 2.950223 6.243908 -0.805443 -6.369607 -5.213104 -13.845287 -4.343043 -3.914066 5.488065 5.464382 -12.014749 -1.384190 -0.472627 10.415109 -13.637880 0.231602 6.404204 5.868300 6.093810 0.511729 -7.616924 0.229444 1.833754 1.822054 6.514371 -3.906221 1.084678 -3.061009 1.981629 -0.343205 3.608812 0.502200 -10.500551 -6.635245 -0.680313 -1.983819 0.462809 2.525021 6.078714 -4.132108 6.599206 -4.025202 7.331809 -12.971601 -0.395868 -4.715037 -8.028569 -2.715681 8.110961 9.510306 6.697677 -3.004860 -4.005765 -2.823784 -12.380958 -11.364353 1.327119 1.302503 3.303631 3.404219 -1.083399 5.327458 -4.819301 2.234557 3.805881 -4.190188 -1.724941 -1.313172 8.699651 -0.125302 -2.158669 -6.938675 -2.820243 -1.953888 -1.591795 7.952312 -1.597009 -11.528582 -14.734224 -7.196962 8.070090 -3.676386 1.378462 -5.371689 -0.672798 -7.218375 0.777324 -8.826242 0.849004 0.471160 -6.592168 -9.760298 0.587083 -1.206286 -3.755518 0.546537 -6.922487 -1.648301 8.736349 2.627598 4.061323 1.271217 0.148712 -8.925020 -7.066418 1.989457 -6.306439 7.631841 6.449295 -2.219716 -8.342526 -3.582646 -9.416922 6.966731 -3.743642 2.324277 -3.461855 -1.845104 8.294907 -6.247030 -0.082843 -7.422825 2.246465 2.872239 -17.571452 10.366952 7.388219 -3.514421 -0.474354 -0.470318 2.299947 4.931337 6.694213 -5.349325 -4.844158 0.245754 -2.864376 0.270757 -1.881734 6.299195 -6.689432 0.903020 -6.102973 -3.582539 5.446816 4.914186 0.581534 3.336180 3.562188 -0.511467 4.723015 6.800236 6.910524 -2.611602 -7.578617 -18.248845 5.451035 -0.587128 -2.688066 -0.239970 -3.333624 -6.449596 1.930236 -2.480826 8.968989 1.693604 -2.965983 7.776636 -10.087976 -8.993195 -5.349568 -0.426252 -0.073776 -1.787511 0.754242 -3.466192 2.751776 3.205628 -0.787102 -0.251276 -6.488527 -2.451280 0.615987 9.302122 2.916898 2.250668 9.379082 3.882340 -5.112145 -1.978000 1.679524 -1.513259 -1.225560 -9.387075 -4.317827 -1.155415 1.912926 -4.253847 2.260353 -1.568146 -0.451546 2.653050 -21.666103 -0.278123 1.846923 22.362131 9.104678 -16.159726 -0.616612 18.829064 -8.661641 -39.186311 -31.590989 14.122944 -3.229014 0.717544 18.678827 3.932124 1.270240 1.643684 -47.870151 18.432701 7.735939 6.172519 -2.819294 -11.918362 9.989401 0.534871 -4.500696 9.280961 5.252216 19.192290 -23.283788 4.721932 13.729027 4.451623 16.299039 6.780405 3.554067 -3.695109 -2.374378 -8.026016 41.218603 11.567977 2.575007 23.069305 15.742539 19.798033 -8.302470 32.621453 6.842572 -12.453680 19.501661 -22.120751 -15.012660 7.228672 -21.425788 22.067515 26.698214 10.069070 -15.800253 11.389178 -1.722769 1.829485 5.205085 -19.955281 30.311338 17.045247 16.440519 10.463614 32.885729 -12.336415 -5.661668 13.802175 28.295470 6.164990 -1.773603 -24.379107 -4.404475 -37.327762 2.937064 -40.673363 -5.303540 -11.217055 40.408015 -23.329101 9.174690 17.117094 -6.897223 19.241616 -18.264097 4.657803 -17.738501 2.168211 -6.585298 27.967420 -4.415025 0.260840 4.535722 7.123754 11.211566 25.647000 -6.120915 -5.301538 -22.917408 -47.318964 -16.133332 11.248111 4.173477 -2.134996 -27.844114 -1.900484 9.478812 20.947034 -26.329212 -13.257235 16.576485 11.172185 -6.326430 11.372123 -21.958179 -9.050774 0.097098 11.033268 11.007559 -12.558770 2.946072 -21.778128 -1.643787 3.541117 20.473011 -0.980540 -16.177545 -17.597029 -5.362480 -0.376150 -7.874209 -9.494400 2.094861 -13.524324 19.060696 -6.217417 15.031401 -32.676516 -6.327454 -16.545178 -14.593884 2.741363 39.148811 15.232511 18.428222 13.981222 -10.317137 -12.657303 -23.705004 -28.540737 12.321412 1.992369 15.985749 3.051180 1.431086 7.518932 -3.568141 -17.268395 7.109522 -19.289805 -10.817374 -19.493743 18.668747 -8.331970 -4.006004 -30.204159 8.169462 20.029114 -16.344853 3.916212 -5.787810 -24.616291 -21.696836 -22.537442 17.608871 -2.960516 7.055293 -3.932203 12.145282 -23.148338 6.388115 -23.638068 5.491089 0.349990 -29.493516 -21.603902 -3.214891 -3.001200 -2.292344 -2.347272 -15.336685 1.579621 12.980764 27.318153 3.164055 10.508089 5.058274 -36.172356 -38.961900 -12.569657 -0.508505 22.349506 8.873673 0.733178 -22.321372 -8.693859 -20.481599 26.457289 -26.337770 -0.659762 -10.111836 -4.225189 25.318661 -13.578066 -9.007776 -23.481800 7.937386 10.235558 -46.214087 28.196816 14.789036 -16.630182 -12.146322 -25.247723 9.394217 17.700216 41.200522 -12.072520 -3.630342 4.301936 1.370325 -5.080947 -18.495484 25.549911 -9.495234 8.607651 -19.908940 -20.862182 6.565183 18.633097 4.686306 13.689721 9.708997 16.882466 3.293778 29.989136 9.230229 -10.733515 -15.855007 -50.898318 9.761401 35.278181 -0.244865 8.448261 -23.753005 -24.942867 -4.830748 1.094953 24.816900 16.850129 14.270666 17.852554 -17.641597 -20.426625 -2.714162 10.220047 -3.462592 -14.265497 6.120567 -13.679225 0.151645 9.891400 -0.414921 3.025377 -8.693766 -35.526320 -13.997120 15.630826 9.103923 4.007524 25.308937 14.567362 -19.580746 1.753048 0.081424 8.615207 -0.828517 -13.205069 -12.897874 -14.124415 -4.343534 -10.653137 15.785244 3.605562 -0.057137 4.520492 -7.890895 0.129463 -4.510020 14.547846 0.632830 -3.186461 0.501931 3.471554 -2.473763 -24.419266 -14.772239 12.967342 2.071587 3.269771 3.169284 5.664031 0.466778 2.039776 -22.619508 5.710710 8.242747 3.044042 1.038588 -1.548899 3.037823 -6.187091 5.909001 1.689098 4.154862 13.944291 -7.711704 6.916502 12.047500 -1.448365 5.645814 9.969234 -1.715161 1.024328 -4.994425 -3.489204 18.038016 7.285505 1.744881 8.041929 1.176154 13.865416 0.812960 13.832140 4.240516 -10.699545 6.594459 1.353538 -8.331305 -0.785227 -9.148041 7.475683 8.138758 5.876014 -6.669979 4.239757 -2.502100 -0.134393 3.317736 -2.406600 13.643196 6.068484 9.588889 9.264731 14.120108 -8.982979 -1.640221 7.828864 4.572425 2.095602 10.567484 -9.784962 -11.600947 -1.832266 -2.134801 -17.638317 -7.127152 -1.069962 23.531659 -14.099795 -0.144001 2.490761 0.148885 13.227510 -5.220812 1.746601 -11.034943 -0.205936 -3.933038 15.735776 2.212980 0.891912 -1.391491 4.076763 3.737210 9.233231 -0.333027 -9.689171 -6.799771 -18.592564 -5.200895 -6.214493 7.052003 8.214515 -16.918792 -2.243506 -3.339412 16.243029 -19.857051 -0.324779 9.326297 7.592559 10.179455 3.156717 -8.594121 0.165716 3.392670 1.763248 8.730307 -6.613667 0.694655 -2.937123 2.019221 -0.626615 4.912374 0.538280 -15.105500 -9.966559 -1.080842 -1.214200 0.661269 2.708406 8.363029 -6.935525 9.508298 -5.201798 9.480128 -16.931012 -2.892690 -5.527489 -11.487783 -4.696281 15.348990 11.378263 12.047630 -4.432227 -5.696268 -5.405259 -16.752594 -16.416151 2.639388 0.732979 4.467719 6.639679 -1.257496 7.680643 -7.155863 1.968366 4.320752 -5.792943 -2.958670 -1.405669 8.885010 -1.513614 -1.964909 -10.627510 -3.558799 -2.829158 -1.690121 11.140692 -2.708784 -20.413115 -20.345358 -10.512825 11.788994 -5.407866 2.576106 -7.061984 -1.490721 -8.633195 -0.419817 -12.809238 1.068984 0.361938 -10.030598 -14.405216 1.646682 -2.551833 -4.489181 1.849313 -10.138922 -1.860216 10.932792 5.425318 5.334155 1.749062 -0.167691 -14.557450 -10.150816 2.538076 -9.018691 11.380022 7.721431 -2.703079 -11.923962 -5.931979 -13.148441 9.314931 -9.043241 3.480527 -4.272242 -1.632132 12.218798 -8.799926 1.380830 -11.138179 4.100875 5.502221 -26.382864 14.477076 10.377526 -5.022934 -0.544565 0.253955 2.618317 8.119216 9.969473 -8.090626 -8.331776 1.564026 -4.298051 0.400118 -3.349340 8.742455 -9.252111 2.101991 -8.958996 -5.422899 6.693160 6.945284 0.716180 3.373198 6.105568 -0.805531 6.740339 10.735509 9.636338 -2.367834 -11.507119 -28.387009 8.688446 2.543862 -3.241584 1.015925 -6.705219 -8.172772 4.354406 -4.904445 12.722846 0.471692 -2.251373 11.332079 -15.684517 -13.025876 -6.192807 -1.749163 0.592027 -1.359057 1.762022 -5.389339 4.016894 3.720042 -1.508900 -1.696914 -7.630961 -2.130433 1.737159 12.816350 4.432172 4.718880 13.693282 5.161360 -7.279403 -1.451260 1.997707 -1.004907 -3.477759 -14.420743 -5.243525 -1.151265 2.694734 -6.210272 3.754137 -2.699900 -1.383159 2.789548 -62.212807 -0.756448 6.889115 72.225165 25.687046 -74.600928 24.064694 59.944011 -26.142180 -132.070607 -72.664339 28.118036 -3.058544 -36.809187 29.198279 16.268439 -7.406008 29.337433 -151.046888 64.674358 47.283566 37.573684 -12.892464 -57.209284 22.084371 -23.601768 -34.304610 46.922602 1.621263 77.873087 -60.562283 -0.095378 58.353044 15.533558 38.379992 66.894765 27.425436 -0.496854 28.206032 16.808546 125.995765 57.146386 -22.879466 43.131540 61.258638 84.081723 -10.580891 73.100596 -50.691245 -40.947965 28.261156 -39.544154 -57.423588 -7.713185 -61.868574 57.642850 107.822049 68.756030 -51.147392 54.235792 -40.794426 -2.003129 29.361214 -21.221875 95.664363 66.085576 34.236723 43.663598 142.317663 -40.818369 -19.051857 42.370570 81.239609 -10.993245 29.580830 -39.778908 -51.575278 -145.326861 -2.684268 -149.637943 -28.297504 -3.497559 135.545635 -83.548547 33.326056 72.217578 23.223128 70.001239 -64.015222 -16.876250 -65.603214 15.276944 -36.796685 158.120028 -5.476173 22.334561 -11.585534 44.676572 51.532091 72.219638 -14.460514 -41.186719 -87.800258 -176.179928 -50.213533 -12.776401 -15.784610 -10.641020 -117.605137 -31.087619 79.889849 94.607063 -126.994859 -11.125208 65.584755 39.850079 17.168754 -9.885954 -74.575435 14.801235 -18.492310 2.093103 25.312661 -47.184148 -19.026546 -48.435994 12.222041 8.358392 30.077276 -13.418730 -104.571967 -27.964973 -3.756907 -28.428004 -7.871338 -6.117090 -1.563051 -75.482685 43.518025 -71.612705 65.672136 -119.879331 6.331992 -39.722938 -86.911951 2.711706 93.404301 53.327231 30.270657 5.581096 -38.775961 -42.840957 -92.845514 -140.749781 38.133270 -13.105615 55.484349 -14.803388 -4.866098 -10.847876 -23.368337 -37.707959 33.742071 -55.474989 -5.882898 -43.486496 124.433522 -21.680191 -17.941191 -79.630770 -7.165193 77.835113 1.616792 17.390106 -43.184008 -66.632541 -97.170666 -81.524707 63.665231 -9.934102 1.679346 -40.915627 12.817986 -94.542445 49.431070 -59.630507 42.397107 -12.860579 -60.940752 -85.755895 -1.935563 -17.047516 -20.613149 -16.941068 -49.410914 -5.118723 27.468786 21.192722 13.563972 9.225230 16.802826 -106.222197 -109.408994 -12.654162 10.580018 78.676863 46.116905 25.118079 -62.523730 -14.619752 -92.917901 95.510634 -63.756302 -0.437418 -15.407508 -32.368293 120.233807 -40.363640 -37.784885 -85.230425 37.962796 10.437529 -77.612272 136.939001 71.853046 -64.435491 -41.420693 -53.072204 14.352213 71.802205 122.690963 -58.970700 -34.264375 30.252961 -20.092400 -19.874331 -37.909379 68.578387 -49.649971 76.283470 -72.403718 -52.253151 24.261935 83.847296 -9.458327 45.947415 -2.021685 12.496355 -9.380983 86.846216 37.452326 -16.435074 -67.822512 -131.957822 36.957146 -1.085294 7.965559 1.894989 -48.564635 -74.518911 4.572806 26.443317 101.251300 78.215012 -16.275145 63.954041 -92.670714 -87.656441 -10.972240 26.940916 9.667716 -59.830500 34.376702 -40.728713 6.841623 30.398015 16.675833 24.808547 -60.009023 -83.619759 -23.633859 63.232738 33.349754 -44.494525 94.936826 15.593401 -44.735014 -4.124863 1.906056 36.589884 4.072117 -24.521679 -36.225175 -54.681543 17.310770 -34.082677 98.012020 0.478124 4.483056 47.768555 -6.555788 -1.107559 -0.884391 10.655759 1.659619 -3.154153 1.256134 4.478427 -0.551773 -19.112602 -12.208621 9.899391 0.405415 1.113328 3.197390 2.487413 1.295623 2.145880 -19.800800 4.914538 6.199048 3.146922 1.289579 -2.447519 2.600039 -4.915484 3.626210 3.176173 3.054621 10.881605 -6.453899 3.601318 9.137336 0.246438 5.061483 8.725373 -0.358588 0.028334 -2.936227 -2.895288 15.511329 6.778122 0.150295 7.788803 3.130479 11.246980 0.807498 9.731078 5.554659 -7.831132 4.356922 -1.024615 -7.316600 -1.398068 -8.174586 6.252623 7.846760 4.548292 -6.106352 4.412028 -1.454153 -0.406283 2.451067 -3.587595 10.410412 4.655644 6.661928 6.547655 12.310834 -7.514834 -2.294233 6.512703 6.333777 3.082926 6.637055 -7.462675 -8.755321 -6.543698 -1.544184 -15.208535 -5.619884 -2.057311 16.549854 -10.709113 1.412241 3.786509 -1.437670 9.454702 -4.028169 -0.162003 -9.240799 0.364289 -1.728130 12.320541 1.402286 0.413313 0.202380 3.414152 3.672143 8.575484 0.538779 -7.627156 -6.481053 -18.060976 -3.398563 -4.656550 4.827894 4.291937 -12.347853 -1.501918 -0.396964 12.804776 -14.854129 -1.390853 7.866765 5.336522 3.780652 -1.104623 -5.880817 -0.328390 2.222970 1.574851 6.494344 -6.695469 -0.393848 -2.296091 1.507199 -0.118821 4.440579 -0.073877 -8.945804 -8.317722 -0.598590 1.328296 -0.393280 0.659784 4.667201 -5.790617 7.219306 -4.801711 8.306972 -12.587330 -0.978266 -4.690791 -6.408841 -3.294594 13.679189 7.524984 8.975099 -1.674215 -3.907596 -4.232323 -11.495568 -14.169789 4.030501 0.422461 4.994406 3.813981 -0.883990 5.031939 -5.030505 -0.335715 1.740047 -5.047813 -1.590087 -1.407727 5.215974 -1.877938 -1.529808 -8.864681 -1.136036 1.543460 -1.820730 6.535361 -3.255514 -14.910368 -13.543097 -9.210635 9.210241 -4.064722 1.560953 -4.508567 -0.450631 -6.475736 1.116037 -9.676344 1.578765 -0.445500 -9.380783 -11.493002 0.591630 -2.814147 -1.370122 1.970590 -7.959441 -1.231111 6.482606 5.833295 3.641169 1.997013 0.508358 -12.432343 -9.099912 -0.121567 -5.378549 10.032199 4.872133 -1.435412 -10.115305 -4.379458 -9.600472 8.784782 -8.158635 2.202658 -3.677942 -3.169822 10.621687 -5.592424 -0.036967 -9.487548 3.984049 5.154883 -19.148935 11.866135 8.729824 -4.983713 -2.221322 -1.603449 1.301588 7.285456 10.329406 -6.893628 -6.397667 2.136498 -3.735981 -0.041466 -4.067500 7.598162 -5.725189 3.385979 -8.354703 -5.602504 4.945382 6.153962 0.573549 4.019458 5.148557 1.962362 3.955621 9.988135 6.787700 -1.240935 -9.934689 -21.943609 7.246345 6.325857 -0.826573 2.168116 -6.650822 -7.872278 2.724959 -2.114812 10.455016 3.227111 -0.642830 9.233798 -10.866120 -10.287335 -4.029188 -1.485842 1.088524 -2.220955 3.003114 -4.462484 2.694933 2.207443 -1.011179 -0.331269 -4.979913 -4.024640 0.841261 9.086178 4.921505 2.750778 11.019108 3.539297 -7.429526 -0.441830 0.743434 -0.224328 -2.113698 -9.546163 -4.243841 -2.351248 1.992112 -4.512305 4.510865 -1.402965 -0.150097 1.759102 -3.851855 11.850793 -18.980558 39.976352 -7.802576 -7.049043 -1.472486 4.629288 -14.983805 -54.067914 -27.943005 8.035660 11.281361 12.094362 9.965631 12.287624 -9.460020 5.070061 -50.487342 9.957498 29.411074 13.468200 4.659728 -1.564947 6.183613 -9.599935 8.354291 -1.993118 8.831809 34.354210 -12.062473 24.708147 28.233030 -11.917115 3.682054 17.126540 -6.918855 10.742281 -10.178384 6.066391 30.965975 12.428670 -0.552424 8.502991 -7.696501 29.788330 -0.698214 10.265004 -24.405505 -28.408853 9.090867 25.015702 -7.327057 -8.543975 -6.977499 13.194446 28.366443 28.734286 -8.031716 6.008763 -12.256980 -6.281743 10.120263 4.184593 29.452191 19.688451 25.483484 29.054308 29.074711 -14.685220 3.187025 7.180421 -11.426775 -12.548207 24.113613 -13.318649 -29.425852 -3.572357 -13.530318 -44.371106 -22.745365 7.898702 46.315344 -32.302614 -0.689825 -1.408922 11.400432 32.896004 -13.961928 6.668975 -17.725073 -9.690221 -19.831666 37.566340 5.785801 0.664397 -6.407719 13.421501 10.588397 12.459226 -1.972242 -19.707968 -7.698578 -26.206174 -18.247977 -11.427843 17.574085 31.962801 -42.666050 -9.964603 -12.352219 22.675921 -52.794061 5.205905 16.155560 29.136506 34.558199 3.273070 -32.294712 7.578003 6.006170 -4.684949 23.427635 -11.305223 8.864289 -8.936726 -0.918833 -1.119308 2.337136 5.304892 -38.344869 -21.916084 -8.480388 -18.837606 7.625227 16.050985 27.057575 -13.131776 20.938555 -18.462146 23.496226 -43.043937 -6.385510 -4.262612 -35.729933 -11.027928 4.928215 24.817187 10.389000 -25.574579 -28.477435 -6.771090 -43.866129 -28.390613 -0.515429 10.104623 5.772546 20.033307 -8.105249 19.610858 -18.951462 15.540761 23.061888 -5.059590 -5.938900 0.709298 34.982488 4.725595 -3.219397 -20.146738 -15.276271 -22.463375 3.593661 37.419054 -2.018816 -20.124931 -60.789002 -14.222116 27.525093 -9.643874 0.559399 -25.150400 -7.529627 -31.257460 1.141048 -31.697026 -3.431161 2.958964 -11.614124 -31.303673 8.175729 -0.639453 -21.047931 1.556869 -21.168286 -9.639761 32.555316 1.872898 15.277158 -7.181498 1.596409 -22.054067 -17.533682 16.033241 -26.949338 17.938362 15.043286 -6.759533 -21.745771 -8.862528 -28.737340 20.198950 6.975570 9.925771 -9.305589 5.343374 26.349047 -23.794682 -3.287779 -26.693520 0.877503 7.631165 -42.147428 33.911034 11.804042 -2.257501 9.320169 13.277366 7.898957 13.468105 2.627194 -16.962996 -24.226800 -0.571084 -6.246028 3.454122 -11.803133 12.404750 -30.822260 -3.085802 -9.830837 -2.744740 18.417387 13.218767 -0.264983 8.885241 10.986542 -20.435064 11.310461 12.484207 31.436422 -11.115509 -13.284772 -30.089534 18.240844 -32.676447 -9.194188 -20.663433 -5.646113 -13.060587 14.802004 -0.156839 25.253227 8.451124 -17.958189 23.382768 -42.870146 -28.411792 -21.236758 3.370334 1.693113 -0.552955 -11.140382 -9.525941 18.423172 21.258683 -5.156830 -0.754950 -30.838560 3.842706 2.498248 30.502941 -6.645280 8.633941 31.525296 13.238819 -10.619906 -6.516292 10.570840 -10.885783 -14.194476 -25.840358 -8.886987 5.115737 9.046225 -15.633913 3.254965 -16.775216 -12.182479 14.557253 -3.809133 -1.140216 0.582687 4.058509 1.143303 -1.448616 0.993301 3.044010 -0.336232 -9.006085 -6.059125 1.972302 -0.161671 -0.065619 2.300367 1.278150 1.100987 0.750018 -9.502801 2.242207 3.043235 1.509489 0.736473 -0.883385 1.428511 -2.329618 -1.384219 1.379558 1.027463 4.961303 -3.226476 1.268166 3.975351 0.213328 1.891094 3.860391 0.030457 -0.442349 0.578512 -0.474096 7.564969 2.655277 -0.279372 3.248291 2.187260 5.125197 -1.520633 6.754451 1.281650 -3.196818 3.983470 -4.461855 -3.580649 0.602943 -3.827338 3.049595 5.457759 3.053377 -2.625649 2.557609 -1.919342 0.488331 0.887135 -2.569544 4.954386 3.698099 2.816223 2.540762 6.209066 -3.166680 -0.985657 2.919798 3.174170 1.342571 1.076515 -4.161483 -1.841899 -6.765812 -0.203056 -7.212192 -1.736967 -1.773582 8.771022 -4.798779 0.864093 3.286481 -0.696519 4.065172 -2.144439 0.310550 -4.238500 0.948805 -0.400604 5.724104 -0.532016 0.442070 -0.386038 1.431800 1.762726 3.802734 -0.019792 -2.566820 -6.135776 -9.231142 -2.739514 -1.397529 1.691504 1.046884 -6.599233 -0.228208 2.320340 4.017624 -6.736555 -0.538847 3.384230 3.154229 1.059137 2.748924 -4.371180 -1.340150 0.573852 1.508581 2.349800 -2.903449 -0.049912 -4.488622 0.567793 0.490125 2.145176 -1.016623 -4.433085 -3.051263 -0.528776 -0.273478 -0.448355 0.210465 1.657736 -2.775986 3.407091 -2.606360 3.662149 -6.908642 -0.998537 -2.941974 -3.718566 -0.857466 9.127992 4.388888 3.687015 1.173909 -2.547782 -2.614041 -5.195329 -5.830549 0.763534 -0.632883 3.873817 0.848713 -0.198802 1.416017 -1.634439 -0.898778 -0.667805 -2.531550 -0.296774 -1.810784 3.574217 -1.521400 -1.019531 -5.209151 0.007151 3.041561 -2.666817 1.853204 -1.626872 -4.974841 -5.786398 -4.748351 4.070039 -1.647711 1.429934 -1.937878 1.233535 -4.165584 1.249299 -3.820474 0.511406 0.040973 -5.448649 -5.338670 0.620197 -1.173421 -0.890221 0.811796 -3.242741 -0.512479 2.883736 4.464298 2.024299 1.288690 -0.252692 -6.932280 -5.952546 -1.784188 -1.971439 5.452826 2.683529 -0.789636 -3.733167 -1.929051 -4.933436 5.075238 -4.077370 0.374023 -1.810407 -1.411292 4.871194 -2.391949 -0.420600 -5.724683 1.768215 1.753300 -9.240823 6.143897 3.746555 -3.159054 -1.944231 -3.587334 1.207318 3.257936 5.748808 -2.290623 -1.785078 1.058504 -1.435167 -0.365345 -2.719601 4.010580 -2.494067 2.129268 -4.272311 -2.882412 2.481542 3.663584 -0.290927 2.192665 2.620675 2.467092 1.864085 4.842437 2.482803 -1.965990 -3.832931 -10.972161 2.787964 5.564908 -0.261149 1.214673 -4.226863 -3.979435 0.466381 0.332851 5.145798 3.987097 1.657516 4.231135 -3.991153 -4.540451 -1.094202 0.364686 0.370738 -2.298985 1.030980 -2.058122 0.639280 1.680898 0.203419 1.297732 -3.364419 -4.957605 -0.515586 4.742700 2.304937 0.470828 5.034358 1.710165 -3.215814 -0.068017 0.503578 1.156958 -0.054798 -2.306427 -1.717455 -1.729792 0.245511 -2.249121 3.191582 0.063270 -0.100582 1.252277 -66.209701 1.304042 1.585016 86.018048 24.841083 -77.577909 23.899350 60.892284 -29.343920 -151.805549 -85.285069 38.505248 -0.703696 -34.595089 32.395324 20.130171 -8.553931 30.958045 -169.753443 68.939907 54.968942 39.729517 -12.361496 -58.812651 24.191434 -28.480384 -28.737586 48.732729 4.404660 89.430101 -65.964749 6.917468 67.939928 14.301904 42.447660 74.288670 22.897271 2.317268 24.093351 15.167539 139.491617 62.989235 -21.661219 48.980197 61.842115 95.116561 -10.510903 80.322168 -48.823983 -49.731875 33.304809 -30.296855 -62.271576 -9.402565 -68.080350 63.001042 116.295654 72.840625 -55.736074 57.163922 -43.647377 -2.552753 32.154787 -21.972000 107.445572 71.785075 42.885621 52.083972 153.071811 -47.445106 -19.813950 47.212336 83.388481 -12.051520 38.555423 -45.771576 -63.703030 -143.181560 -6.298081 -165.269938 -34.409668 -2.506704 153.650181 -94.549504 31.754140 71.918675 25.287086 81.277162 -68.290196 -15.632455 -73.069361 14.351039 -43.247714 172.705355 -2.015289 23.520153 -13.016170 48.492453 55.111102 79.520515 -15.915822 -48.896283 -90.537366 -192.158427 -55.490464 -17.789246 -8.473945 -2.965330 -131.748995 -33.187418 76.718094 106.353071 -143.653198 -11.526696 73.112061 46.918842 24.144538 -11.727779 -83.398567 16.180277 -15.986744 2.862665 33.385286 -51.032982 -18.159902 -50.025304 12.893341 7.119929 33.815943 -12.377679 -116.230423 -36.303685 -5.989648 -30.286686 -6.624758 -3.178875 6.109671 -79.263573 51.051817 -75.882621 74.113078 -134.763115 5.587113 -44.639919 -95.909402 -0.867395 97.697293 62.773799 38.748563 -1.050855 -43.271198 -46.311270 -108.064672 -154.115152 40.440087 -11.116212 58.309493 -9.995748 -6.548627 -4.028236 -30.001926 -34.371029 40.595449 -59.916466 -8.034872 -44.355708 135.712730 -21.660660 -20.252015 -87.123131 -11.476679 72.214130 0.655746 27.791299 -44.399174 -80.838327 -115.725408 -89.152974 73.303295 -14.363558 2.518080 -47.852243 11.166648 -102.352890 49.179926 -70.427273 42.512329 -12.023088 -67.159722 -97.094384 -1.631972 -18.167442 -24.772383 -16.438111 -58.604339 -7.537872 39.008437 23.269818 18.689696 10.575462 17.415577 -115.709050 -116.083266 -8.870325 2.449043 84.613414 54.089130 23.137450 -72.548855 -18.955286 -104.116774 101.478836 -67.451607 2.682063 -19.118094 -33.886402 130.173881 -47.980419 -37.925172 -92.837152 39.360357 14.168270 -97.639328 148.621520 78.872633 -67.207238 -40.759229 -50.777474 16.503070 77.157380 129.027876 -66.684548 -41.367714 30.328071 -24.322451 -19.139979 -39.239889 75.583504 -58.201919 76.920457 -78.407215 -55.414558 30.517300 89.057838 -8.403045 49.743857 1.796289 9.330294 -2.666859 93.697734 46.615642 -19.068246 -76.280288 -152.374652 43.771061 -6.874799 4.588866 0.533386 -51.327582 -82.096781 8.249641 24.217844 111.340613 76.926378 -21.161426 72.885849 -105.364189 -98.130897 -17.630695 25.649953 10.155570 -61.265066 34.116934 -44.676819 10.790485 34.781548 15.139230 24.015164 -67.305665 -83.934193 -22.381871 74.018446 35.330097 -41.005453 105.966238 20.312263 -51.306856 -6.383353 3.225732 33.718081 0.806206 -37.291282 -40.683966 -55.390071 20.099515 -38.961489 100.043504 -2.635740 3.471523 50.959330 -13.432039 2.968350 -6.809510 22.818613 -4.416941 -11.806062 6.467957 15.579158 -9.805601 -38.655521 -19.528621 4.119965 5.992940 1.267455 5.245304 11.565725 -9.809226 3.946433 -42.338392 13.282894 20.100730 8.402923 4.358522 -11.003874 3.944078 -11.298857 0.410080 6.651846 2.575524 25.976163 -8.050469 7.572886 21.469276 0.233752 7.328529 21.436867 0.089360 3.906134 -2.440986 3.846138 24.320384 23.817863 -11.205976 0.187803 -1.281278 24.715598 7.440748 6.345425 -33.936472 -18.894591 1.898449 -9.354172 -19.013119 -6.651789 -7.115720 6.485284 18.825912 25.009410 -5.878577 12.364507 -21.997863 -3.811171 8.333380 3.329220 24.225491 7.133438 17.609275 16.379908 25.852329 -17.182389 -1.913169 14.238490 -1.039761 -10.733913 14.962214 -9.385771 -24.141792 -23.205429 1.371149 -40.821863 -24.210286 8.849728 39.587093 -24.175724 4.345410 10.118489 6.736998 22.096045 -18.462484 0.879117 -15.792517 -2.965272 -9.679863 38.692853 2.922615 1.986498 0.137712 13.780858 16.651921 14.779441 -0.001929 -14.040934 -17.566290 -24.635803 1.667518 -9.653146 7.005996 16.559096 -26.162422 -13.213559 9.618185 29.923076 -36.644173 6.998783 21.719156 18.336103 29.724847 -1.030063 -13.172752 13.920848 1.765456 -2.658982 22.991158 -20.081122 1.618917 3.552950 12.191704 0.668643 1.928895 3.300353 -42.538384 -12.332062 6.510225 -18.138554 4.987380 10.451772 10.896888 -14.808619 12.953611 -22.509765 22.153403 -31.556359 8.411631 -2.123837 -29.796705 -5.072955 23.779197 26.837323 2.005295 -12.211775 -12.495479 -2.966874 -25.212477 -34.276962 3.962145 10.352588 9.659170 2.025591 -2.790234 8.254951 -11.937240 10.459696 6.617867 -5.779116 -0.684252 4.224585 27.498351 5.562649 -6.261964 -12.041853 -7.695700 -4.271635 7.457457 22.657670 -6.356992 -26.849869 -38.062238 -18.370729 21.573355 -4.822610 -5.917554 -17.956282 -6.854354 -21.406131 7.459804 -19.870133 17.143744 4.783395 -11.989333 -25.248265 4.470574 -2.141521 -10.493404 0.687076 -7.835007 -11.418586 15.491629 -7.196135 6.443136 -0.424228 7.052380 -15.656071 -14.583081 10.288579 -12.398779 24.982069 10.164830 -1.905232 -15.556120 -2.845132 -22.678067 23.906485 4.389705 4.719529 -16.544323 -1.787209 29.746850 -11.805486 -0.722206 -22.806805 9.448320 7.217797 -21.611990 28.956414 24.648842 -4.542922 -1.343960 6.769133 -1.303555 20.342414 14.598678 -12.614942 -20.380382 2.571902 -9.384538 -0.405074 0.152218 10.387744 -23.003123 4.622818 -10.177179 -4.828594 9.006442 12.761448 0.181415 11.093206 4.092126 -6.260300 1.690375 13.903942 16.795854 -9.316696 -21.981096 -34.679804 18.376106 -9.778942 -6.412321 -12.964106 -3.802119 -14.975713 9.293320 -1.363367 20.968187 27.735556 -23.624116 17.816627 -30.589770 -24.429089 -17.349190 6.714974 0.049406 -5.416937 -2.621395 -4.281802 14.868125 13.580545 -4.889973 5.074520 -19.933017 -4.159260 -1.334792 23.832369 5.768206 -4.275752 26.272738 4.243120 -5.013418 -8.475484 8.159198 -3.908282 -1.865340 -13.424182 -10.814947 -3.561724 11.235136 -8.522745 9.192934 0.231239 -9.865140 15.488516 -2.077961 0.313881 -1.207864 4.866088 -0.093335 -1.210889 0.412738 0.891653 -1.768511 -8.978655 -5.027778 1.062232 1.042252 1.363615 1.590388 2.542765 -0.414638 1.238519 -8.112234 1.553368 3.911169 1.687526 1.235786 -0.724595 1.228055 -2.166518 0.113208 0.437016 1.281830 5.407434 -2.963247 2.685318 4.611452 -0.634972 1.238062 3.517808 0.081331 0.828204 -0.793821 0.489354 6.327370 1.558071 0.246292 1.522331 0.067812 5.063757 0.019883 4.020596 -1.931920 -3.997489 2.930998 -1.215398 -2.399525 -0.242310 -2.699346 2.549355 4.755973 4.193752 -2.256748 1.896597 -0.907950 0.396319 1.329268 -0.661756 5.060081 2.837715 3.384583 3.292194 5.203507 -3.000380 -0.013994 1.731360 0.229394 -1.225899 3.039287 -3.700241 -2.722111 -2.932340 -0.670836 -7.167086 -2.317810 0.643993 7.321943 -5.190486 0.090473 2.072790 0.309878 5.004264 -1.789984 0.604863 -3.681697 -0.078056 -1.607473 6.613615 0.563970 0.068171 -0.877992 2.143984 1.964047 2.748588 0.068503 -2.975953 -3.848824 -6.616483 -3.098443 -1.962258 2.270970 3.257453 -6.921124 -1.582903 0.250197 4.100089 -8.026937 0.734340 3.336853 4.291867 3.087097 0.259194 -4.209528 0.472617 0.244734 0.581594 2.772872 -2.299397 0.727397 -2.579638 0.661590 0.174434 1.394062 -0.371270 -5.854381 -3.188928 -0.761261 -1.915612 0.305145 1.706184 3.229550 -2.140001 3.408294 -3.131810 3.509002 -7.042036 -0.342471 -1.681799 -5.480809 -1.516453 4.120875 3.385419 2.145903 -1.735857 -3.813048 -1.613839 -6.315132 -6.404406 0.375617 0.796088 2.416651 2.507930 -0.992878 2.270728 -2.592673 0.742095 2.094988 -1.951906 -1.114431 -1.095477 4.649962 -0.369091 -1.372932 -3.653880 -1.139237 -0.128554 -0.982480 4.238161 -1.130803 -3.251769 -7.991960 -3.960286 4.408323 -1.826006 0.970318 -3.036180 -0.072730 -5.897214 1.027368 -4.686053 0.477504 0.448859 -3.326175 -5.425653 0.799951 -0.729090 -2.069209 0.701974 -3.759110 -0.850172 3.380139 0.722940 2.166298 -0.182589 0.352241 -4.886929 -4.415994 0.773666 -3.339746 3.168842 2.506782 -0.469342 -3.491674 -1.859006 -4.479986 3.681037 -1.359305 1.178078 -1.493879 0.214900 4.510399 -3.281692 0.138278 -4.068982 1.105686 1.499952 -7.231219 6.140352 3.047144 -1.892941 -0.146530 -0.426605 1.374396 2.551175 3.235315 -2.662394 -2.794315 0.499768 -1.515926 0.117586 -1.928909 3.130164 -3.762098 1.012100 -3.048450 -1.596161 2.260555 3.259457 -0.150817 2.430447 2.405421 -0.589898 1.221411 3.559519 3.018694 -1.543969 -2.785878 -8.010182 2.834153 -0.959615 -0.711263 -0.836285 -2.118816 -2.333948 1.741954 0.339123 4.817256 2.924595 -0.985580 4.199902 -5.754791 -4.857202 -2.246237 0.070628 0.390576 -1.205457 -0.936264 -1.544226 1.723991 2.365215 -0.156202 0.739440 -4.171542 -1.892973 0.026563 5.577509 0.292020 0.839385 5.359414 1.354532 -1.911071 -0.531667 0.858262 0.484700 -0.380871 -3.124376 -2.141294 -0.276807 1.031224 -2.684969 1.857509 -2.110967 -1.267495 1.985428 -35.571934 0.357805 6.836141 38.002045 16.566461 -32.325688 9.628562 32.479466 -16.647409 -72.702908 -46.460883 20.849111 -5.030355 -14.707819 24.874387 7.970342 4.753233 11.748615 -83.207880 31.723074 20.859925 14.576109 -3.557992 -25.724480 13.202196 -10.783064 -12.562352 24.475758 4.696422 42.661176 -35.043804 2.669663 29.413937 10.744774 27.604971 30.858869 13.048958 -2.134892 6.781196 1.973945 75.491504 25.316149 -5.372819 32.041662 35.935512 44.868704 -8.604261 44.741994 -2.603077 -19.566415 26.303750 -26.121523 -28.889374 2.336949 -39.304834 28.938465 54.083218 28.721429 -30.748662 28.754130 -14.944800 0.921681 10.927047 -20.905626 51.712118 31.933303 21.112437 21.607422 69.465792 -25.079951 -12.658965 23.504935 47.296757 3.652917 5.283292 -30.434324 -19.969739 -79.940441 -1.583086 -77.714766 -14.018608 -10.326587 74.784361 -42.343165 16.193065 39.166046 -2.675452 33.618273 -30.746561 -6.347602 -37.111242 5.489026 -12.906916 67.891810 -2.556449 7.810280 1.299889 17.498551 25.231574 43.290028 -5.704185 -22.695396 -47.423879 -93.554299 -29.255189 0.757653 0.241784 -7.598057 -54.134922 -11.491869 36.287382 44.406506 -60.651710 -12.893974 34.238746 21.461961 -4.066664 1.194486 -42.170986 -1.678302 -3.860337 11.459572 18.857598 -25.414639 -7.212414 -32.184452 2.871395 4.105084 25.577798 -7.997608 -39.497164 -24.010051 -3.397061 -6.571554 -10.207527 -12.937061 -2.346707 -33.588639 27.869454 -27.401384 36.159324 -60.924982 -1.308293 -25.884895 -35.336768 0.278540 62.032257 28.115578 26.343841 13.842936 -21.054506 -19.941454 -44.097311 -65.649261 24.350939 -6.395124 30.871405 -2.046612 -1.086010 2.934696 -12.259339 -24.411717 12.998961 -30.297230 -7.049420 -26.765985 45.236579 -13.551866 -10.607568 -48.112439 4.271188 41.972266 -7.022506 7.796550 -21.631607 -42.468765 -44.173074 -44.658956 35.656228 -8.761709 5.816614 -12.930121 13.271613 -46.213949 20.342370 -36.655465 17.888456 -5.630771 -42.560126 -43.928716 -0.705187 -10.682705 -5.734070 -3.875702 -26.922838 -1.639799 15.827647 26.404486 7.549229 11.090523 6.907943 -61.033803 -64.140394 -14.648073 2.850733 41.380059 18.758678 9.455379 -40.826342 -10.841970 -44.317268 49.384358 -39.550365 -0.531905 -11.433037 -18.400111 57.894856 -19.080272 -18.279452 -42.685337 19.826403 13.821002 -64.049902 62.587039 36.916022 -34.226023 -25.328767 -33.894441 9.654541 35.690566 69.613902 -27.041927 -14.068528 14.599768 -6.296138 -8.051709 -25.246486 41.323136 -19.956564 33.275108 -42.887316 -33.686427 17.125995 42.991691 0.282201 25.857414 9.220771 19.885105 -1.539930 53.535582 17.717391 -9.224898 -32.280134 -80.261390 18.684239 32.465118 4.700717 12.314188 -31.618569 -42.735217 -2.529402 7.429578 51.672764 35.418046 3.126018 36.428398 -36.854417 -45.226002 -7.782040 12.413380 3.877493 -33.011544 17.435650 -23.616730 2.042501 14.274486 6.333172 14.652900 -22.383244 -49.157135 -17.257054 32.148721 21.914791 -10.260217 49.569363 14.016865 -32.501699 0.939084 0.974457 19.394204 7.904498 -21.159211 -21.990107 -29.439914 5.112011 -18.012940 41.402005 1.249689 4.881816 18.332710 -21.545408 -2.910948 4.670888 25.088152 11.486417 -21.782341 7.565135 18.262313 -6.788537 -48.467831 -28.402654 9.688096 -1.593851 -11.606242 12.515386 5.349492 2.313958 10.951702 -49.612712 20.463426 15.734693 12.032323 -2.827708 -16.765716 7.382420 -10.773691 -10.093229 14.385097 2.242511 27.973958 -21.787994 1.810422 20.674989 4.743052 14.267945 24.381451 9.058924 -2.179210 8.115113 3.452008 48.221662 15.312927 -2.199405 18.686087 22.053398 29.613848 -6.188307 29.640291 -5.576065 -14.857693 15.640183 -15.916888 -18.232582 -0.803611 -25.746512 21.280299 35.579926 20.086565 -19.832032 18.360963 -11.287206 1.183823 8.709500 -10.193201 32.656167 22.433574 10.868027 15.735445 48.093492 -15.372417 -7.398311 16.235671 28.288696 1.030348 11.257843 -16.107045 -14.463640 -48.281761 -3.131915 -45.539845 -5.708533 -5.000919 48.809893 -28.506982 9.860589 26.832274 4.673200 24.390355 -17.538682 -5.915832 -24.267011 6.680255 -9.782486 46.909888 -1.950664 6.974156 -4.591514 12.126952 13.922649 25.820659 -3.672438 -15.665425 -32.068493 -64.093582 -21.287161 -6.638568 -1.408870 -4.673058 -41.331701 -7.475554 24.835788 30.113444 -42.835796 -4.233338 21.727898 15.046981 0.693803 -2.735173 -26.216626 -1.310647 -3.609785 4.699418 7.226345 -15.252520 -6.218099 -22.314575 3.344034 2.469875 12.763470 -8.063855 -27.912013 -12.913995 -3.808058 -4.133320 -4.261089 -3.396998 2.433422 -25.202599 16.584753 -21.143145 22.650402 -40.618408 -0.570111 -18.308616 -26.999612 -1.217292 40.887712 15.375583 17.247450 4.835016 -15.851303 -15.509800 -31.889320 -45.606097 12.125889 -7.513999 20.265941 -0.860407 -1.326775 -1.604013 -7.892435 -13.884858 8.504305 -19.718705 -2.018246 -14.888167 33.305693 -10.100210 -7.010646 -31.592528 -0.354608 27.605464 -3.762132 5.486243 -14.407071 -21.941298 -32.082817 -29.800453 22.857181 -5.731497 4.588912 -12.040305 4.834834 -30.026286 15.240495 -22.013034 10.930073 -5.510308 -24.832038 -30.736234 -0.954737 -7.049682 -6.440728 -2.626498 -19.862183 0.426352 9.787543 11.916159 5.858985 4.894887 2.549496 -40.637100 -39.389925 -8.321336 1.410747 26.236106 17.070273 6.961024 -22.100264 -8.032124 -30.362076 30.390725 -26.618371 0.215800 -2.687989 -13.089688 37.845989 -15.120691 -10.914242 -30.616861 12.222383 4.927409 -36.497044 44.488743 23.177298 -24.216949 -15.209982 -21.861394 6.284194 21.918824 43.562265 -18.140821 -8.233026 10.830775 -6.431221 -6.118903 -16.624206 24.582937 -14.751571 25.011674 -27.924350 -20.455430 10.544160 30.097381 -3.504732 14.521004 4.581004 9.107099 0.191295 32.486460 13.840989 -4.918203 -24.014086 -50.631066 13.864741 9.238998 3.239938 5.373344 -19.618181 -25.430801 1.723371 9.028712 34.982988 24.712675 3.294846 24.155930 -28.547930 -30.914898 -2.571052 6.209004 4.457776 -21.420415 11.241951 -16.251573 0.891569 6.964753 6.480831 7.543864 -18.175927 -30.486640 -6.467543 23.768504 14.279940 -9.724905 32.941103 7.883304 -18.115448 0.559596 0.416174 13.083277 2.305946 -10.164137 -13.160701 -17.923850 3.790313 -12.742509 32.167727 -2.157959 3.372507 14.130310 -9.785611 0.063500 -2.685890 9.368044 0.048830 -10.328882 3.599241 8.683696 -4.094057 -17.156673 -10.853247 6.049478 1.162057 -6.323887 3.606145 3.685319 -2.104270 2.564188 -22.743538 9.269011 6.767199 2.996557 -4.693788 -5.946296 1.463144 -5.432443 -5.246288 6.792870 -1.569414 11.066139 -5.608705 1.393739 8.418982 0.539520 4.891922 10.746452 -1.363212 0.156830 5.821971 4.128882 15.660154 10.221246 -3.740727 3.382057 7.277978 11.710232 -2.731497 11.006528 -9.124100 -6.034611 6.148523 -1.717542 -9.193511 -0.655479 -7.629058 4.238778 13.676912 6.752288 -5.882984 8.080245 -10.073315 -0.802857 4.561211 0.108453 15.022378 8.752479 7.043244 6.184645 17.806481 -4.704322 -1.055891 6.029504 7.921046 -3.728113 4.519608 -3.938014 -9.454871 -15.235376 1.034138 -21.272628 -6.032184 0.640896 20.961862 -10.938071 1.953268 7.017231 5.786117 10.811754 -10.379915 -2.078502 -7.770434 1.111602 -6.271133 22.478060 -0.579863 4.937778 -1.968152 6.151978 6.440898 8.443689 -4.343460 -7.109048 -12.410503 -22.771257 -5.808213 -3.327037 -2.026781 0.150639 -16.963863 -4.433182 10.430833 12.805081 -17.586494 0.419951 9.444778 4.255335 6.873132 3.928096 -12.382029 2.694195 -1.891726 1.644617 6.297337 -4.944079 -1.593512 -6.694332 4.588988 1.830133 2.182403 -0.814221 -19.195613 -2.510309 2.670822 -6.187819 -0.240156 2.067572 1.533018 -8.709089 5.527954 -10.356180 9.616324 -18.668649 1.357335 -6.554519 -12.802588 0.077057 10.284049 13.747405 3.977209 -1.238824 -3.816100 -3.445479 -15.231884 -19.764018 2.980789 -2.501883 6.650462 -4.980785 -0.447891 -1.575458 -3.190472 -1.026052 3.909366 -6.572024 0.536065 -4.789342 20.769410 0.445600 -3.520611 -7.757118 -3.740147 5.424140 1.987007 4.858799 -4.559354 -13.499480 -15.402867 -9.596866 9.160590 -0.891710 -1.306761 -6.984185 -0.345797 -12.230174 5.116688 -7.175376 4.972425 -1.624782 -6.050625 -11.274429 -0.546051 -0.747924 -4.215532 -4.745038 -6.258379 -2.773258 8.576559 1.560978 3.303809 1.787155 1.507177 -11.322717 -12.238994 1.199055 -0.360055 12.471099 10.465418 2.183884 -7.318780 -0.315391 -14.807966 12.117503 -7.545957 0.663025 -2.601469 -6.626893 16.976615 -5.939488 -5.709079 -10.387911 4.835981 -0.556892 -13.379248 18.995071 11.665648 -7.984726 -4.093482 -4.887440 1.581999 10.005612 13.645342 -6.828101 -4.583381 2.535470 -3.219303 -2.096409 -1.018103 8.607566 -8.382984 8.659782 -8.260141 -4.936178 6.305543 10.333683 -0.871995 4.970088 -3.355167 0.051811 1.925054 9.163391 4.778681 -4.317070 -9.578781 -21.664353 5.605421 -3.927857 -2.479849 -0.754744 -4.441920 -10.542530 0.246503 0.081062 13.285857 7.923427 -6.074246 7.836889 -12.877323 -13.070320 -6.163068 4.597659 0.028578 -6.203211 4.248605 -4.177242 2.736424 4.749318 2.835080 3.875885 -10.276048 -10.304869 -1.818570 8.750126 4.825774 -7.574722 12.700173 1.503641 -4.129370 -3.879180 0.306534 2.213949 1.648505 -5.095605 -5.473913 -7.448617 4.497383 -4.582310 11.910753 1.764016 2.399569 7.987470 -14.784709 0.033043 -0.041947 17.285526 7.590810 -11.723447 0.705832 11.386858 -4.293012 -29.604419 -22.112817 11.131374 -1.170031 -1.796886 10.771418 4.286280 1.864276 3.357387 -29.621368 12.980387 6.315584 5.348482 -3.449644 -8.169517 5.812304 -2.634401 -5.108336 6.068689 3.117639 14.496796 -15.271772 3.972199 11.240257 2.118183 10.545144 7.919993 3.567368 -2.439771 0.120287 -3.798822 30.144607 8.027076 2.715957 16.001379 11.802033 16.313516 -7.266270 25.368650 2.499929 -9.129751 13.778820 -13.037442 -10.959527 3.910893 -16.442977 17.355828 18.918811 6.770182 -11.816735 8.820553 -3.013142 1.263181 4.385623 -12.429167 21.874544 14.602809 9.865402 9.463917 26.229634 -8.325098 -5.023425 10.701546 20.297132 4.526660 3.116250 -15.282102 -5.268564 -23.099494 -0.245000 -26.580645 -1.304006 -7.866400 34.161058 -18.352580 5.025404 13.231058 -1.362927 14.625287 -11.813408 1.264518 -14.307928 3.035888 -5.904755 22.377242 -2.288692 1.802297 -1.284706 5.390770 6.983970 17.021376 -4.760334 -5.576714 -19.061435 -36.186398 -14.062288 3.287326 2.378365 -2.070487 -23.546458 -2.404775 8.305702 17.918241 -22.592307 -7.188784 12.674024 7.563551 -0.408644 8.753345 -17.129071 -5.262954 0.681154 5.931689 5.302422 -7.293691 -0.428293 -16.270706 -0.941243 0.776202 12.607195 -2.708938 -15.414232 -10.629731 -5.351120 -0.668605 -3.723373 -5.638555 1.922237 -13.343221 13.259708 -5.728823 11.219021 -25.264837 -5.504982 -13.285973 -14.562208 1.087267 30.028332 11.778739 16.893077 7.631699 -7.651853 -11.713176 -20.472850 -22.657494 7.409689 -2.295074 11.910632 1.771099 0.636703 2.983198 -3.124221 -10.284917 6.382891 -14.383575 -5.735311 -12.146010 18.268238 -7.560348 -3.515411 -23.322504 2.427087 14.916930 -9.645416 2.411410 -5.404596 -18.252670 -17.840574 -16.874042 12.578918 -3.007775 7.075742 -4.785277 6.770859 -16.468578 4.713902 -16.567254 4.442799 -0.880275 -19.683621 -17.281755 -1.312787 -2.827068 -4.149524 -1.789464 -11.945132 2.214683 10.253994 16.751840 3.074303 6.383386 1.346531 -27.092105 -26.573822 -8.092466 -1.133396 16.992626 10.924702 1.870208 -15.314560 -6.415021 -18.725633 18.399136 -20.548447 -0.774383 -3.870280 -4.221210 18.946596 -11.819736 -5.793276 -19.370795 6.119040 4.821959 -34.348043 21.686043 11.906832 -13.592399 -8.939951 -17.544267 6.494859 12.389081 29.607521 -9.284844 -2.524769 4.325668 -1.004020 -4.171990 -12.644241 17.464853 -8.016713 9.653710 -16.267914 -13.831686 5.768642 15.439891 0.758892 8.117921 5.461387 9.652384 3.625134 20.251202 9.014562 -6.610285 -13.459892 -37.555225 7.130944 17.630204 -0.732880 6.078539 -15.396403 -16.459327 -2.015013 0.250523 19.802760 8.977815 9.154242 14.035535 -15.479488 -16.281080 0.048831 5.543397 -0.639292 -11.529036 6.636713 -10.601528 -0.761278 5.764371 1.210998 1.720807 -9.045582 -23.313883 -6.716652 13.715875 7.565120 1.176487 18.780166 8.847786 -12.786404 1.420164 0.255979 7.382807 -1.127809 -11.898706 -8.615867 -10.646330 -2.483616 -7.709755 14.649729 0.833315 0.486008 5.458740 -4.264712 0.034334 -0.690283 6.897840 1.145050 -1.675369 0.690156 2.872849 -1.182477 -13.055184 -8.537998 4.100156 0.433650 0.605903 3.066671 2.238685 0.984084 1.515181 -12.446720 2.951595 4.692925 2.081171 0.828769 -1.118607 1.824250 -3.390477 0.130771 1.456671 1.914643 7.366765 -4.446732 3.039974 6.170271 0.109287 3.010709 5.298173 -0.555483 -0.008073 -0.708637 -1.234843 10.544459 3.681734 0.365296 4.486921 2.167037 7.391240 -1.159237 6.984277 0.936371 -5.251542 4.051111 -2.460542 -4.091557 0.283327 -5.238192 4.339516 6.124566 3.720808 -4.046303 2.986450 -2.026597 0.472842 1.538378 -2.840809 7.211829 4.141734 4.555474 4.414814 8.074259 -4.521564 -1.001161 3.809484 3.090276 0.953334 3.294445 -4.450527 -3.948733 -5.524304 -1.014963 -10.128314 -2.973304 -1.229639 12.383316 -7.102296 0.730910 3.427512 -0.319427 6.563632 -2.880742 0.308852 -6.036967 0.522254 -1.609632 7.872742 0.629481 0.259835 -0.718665 2.357653 2.206279 5.031309 -0.161490 -4.331791 -6.192584 -11.911760 -3.822165 -2.608509 3.465371 2.742469 -9.156255 -0.803808 1.488093 7.570153 -10.223388 -0.393727 4.825904 4.379153 2.103240 1.503049 -5.772373 -0.841050 0.988077 1.510542 3.766702 -3.602506 0.337410 -4.016935 0.596134 0.104878 2.992280 -0.554592 -6.470851 -5.005799 -0.758432 -0.736842 -0.536717 1.055395 3.594257 -3.654774 5.096093 -3.288448 5.351184 -9.256177 -0.862091 -3.590333 -5.792833 -1.971260 9.680073 6.126027 5.311743 -0.301994 -3.535172 -3.159701 -8.272217 -8.562299 1.461319 0.045561 4.152518 2.374994 -0.579594 3.121175 -3.289933 0.099983 1.217536 -3.433732 -1.016663 -1.553453 5.601231 -1.662820 -1.538560 -6.547358 -0.873469 1.607640 -2.700747 4.184269 -1.942469 -7.012922 -9.634812 -5.971606 6.076469 -2.763596 1.799095 -3.317093 0.660326 -5.395821 1.062364 -6.359544 0.627375 -0.095577 -6.337091 -7.679298 0.673332 -1.561138 -2.133361 1.046206 -5.137988 -0.620838 5.324503 3.748682 2.803389 1.194555 -0.020861 -8.216594 -6.816842 -0.630515 -3.898720 6.098042 4.425348 -1.279789 -6.201430 -2.977375 -6.757259 6.166087 -4.535417 1.202771 -2.367878 -1.753529 6.485119 -4.179844 -0.586246 -6.770855 2.016587 2.590569 -13.090035 7.697994 5.065827 -3.700933 -1.478487 -2.746599 1.839653 4.294144 6.789276 -3.759070 -3.055754 0.876033 -2.400441 -0.025439 -2.947782 5.156167 -4.270520 2.107126 -5.573886 -3.517515 3.966775 4.565266 -0.028788 3.028619 3.703837 1.725903 3.438013 6.306977 4.496854 -2.029754 -5.672062 -14.042891 4.149702 3.748474 -0.679162 0.582656 -4.046124 -5.011259 0.983695 -0.748597 6.973589 3.221828 0.361196 6.165177 -6.873476 -6.791813 -2.411502 0.059166 0.439251 -2.357839 1.075318 -2.684126 1.636024 2.165054 -0.085878 0.830809 -4.783649 -4.491479 -0.068705 6.890759 2.625070 1.409277 7.324531 2.700235 -4.595150 -0.103186 0.701625 0.638368 -0.868265 -5.730393 -3.075382 -1.517531 0.738618 -3.413081 3.256417 -1.111531 -0.376791 1.783537 -11.080061 -1.837896 0.328443 8.605003 4.463202 -9.098634 2.885955 7.479263 -2.450264 -17.346207 -11.588195 8.575086 -0.714948 -6.737766 3.751585 2.696062 1.574506 1.813599 -20.870990 9.084060 4.403591 2.256312 -4.523240 -5.126612 2.187424 -5.922709 -2.435471 7.166574 -1.098415 9.420960 -7.110978 0.932856 7.305039 1.901715 6.680529 10.072289 -0.546223 -2.136508 4.882884 1.415660 18.476268 7.577844 -0.478585 7.258136 10.241075 11.061832 -3.496189 14.745706 0.770246 -4.463686 7.779245 -2.311781 -8.763405 0.520807 -11.270255 6.241076 11.884597 2.330389 -7.585418 6.921777 -5.990938 0.042378 3.443404 -2.208289 14.468044 8.331664 6.074477 4.939907 18.685357 -4.561488 -2.939684 7.980287 12.555460 1.914612 4.155935 -5.743210 -7.281654 -13.240821 0.250167 -17.253266 -2.331644 -3.633277 20.216236 -9.108623 1.092237 7.186033 3.064735 9.776563 -7.771074 -2.590262 -9.045689 3.261667 -4.241799 18.595327 -1.635512 5.324685 -1.864664 3.732331 4.118157 10.118951 -3.707067 -7.199018 -11.721973 -24.945940 -7.272304 -3.283111 -1.364451 -3.307007 -16.587164 -1.226164 7.277500 12.847657 -14.822407 -2.250913 8.030257 2.523890 3.149092 4.056796 -11.069992 -2.175510 -0.385495 3.628819 2.574377 -3.426960 -2.691481 -9.628710 3.588848 1.272196 4.368029 -2.765335 -13.612437 -3.360742 0.929054 -1.552075 -1.431123 -0.927782 0.679984 -9.598930 5.457001 -6.867798 8.095365 -16.711590 -1.447167 -9.214093 -9.619714 0.017510 14.264198 10.629124 8.706918 2.774956 -2.157952 -5.266135 -13.735990 -18.155246 2.944163 -5.928829 6.520925 -3.439633 0.345949 -1.365635 -2.485882 -4.861392 2.791184 -7.706681 -0.112482 -7.342464 14.794210 -2.494108 -2.336506 -9.520633 -1.989727 8.598512 -0.347073 2.330782 -4.751176 -15.652216 -12.201518 -11.047287 7.788765 -1.916260 0.847620 -4.969036 1.430315 -9.907987 4.391613 -6.705306 2.864718 -3.133083 -8.724905 -10.409383 -1.123800 -2.127074 -2.211809 -3.853628 -7.355281 -0.292833 6.998080 5.842281 3.253028 3.221601 -1.394204 -14.293720 -14.143913 -1.796395 1.759242 12.459821 9.268603 1.915437 -8.225428 -2.361145 -13.926714 11.234910 -12.633822 -0.087799 0.350550 -7.580621 14.772102 -5.607932 -4.438867 -9.874108 4.963316 -0.452666 -17.514101 17.595096 10.534373 -10.441187 -6.685283 -8.830795 2.381375 8.587595 16.414442 -6.098088 -1.836468 3.384581 -1.347366 -2.714441 -3.200404 9.751046 -5.157355 10.184123 -11.190663 -8.540597 5.671671 11.298237 -1.535129 3.219076 -1.978752 3.640145 2.844952 11.781336 3.955420 -1.790121 -9.920652 -24.827876 3.667957 2.982189 -1.327785 3.869201 -6.899078 -11.438413 -1.075739 -1.258854 14.224504 3.933594 0.179397 8.101578 -10.048565 -12.101182 -2.955833 2.176022 0.311154 -6.706163 6.469534 -6.164309 -0.637773 1.456293 3.471987 2.048031 -7.840820 -10.976142 -1.697009 7.694313 6.922681 -5.180076 11.444873 3.178594 -5.398265 -2.070987 0.104276 4.260231 2.411724 -6.691061 -5.541483 -8.568784 1.690609 -3.790293 12.584948 2.002026 5.291807 4.863449 -4.136677 2.236447 -4.616433 14.053645 -1.625116 -2.765955 0.210825 3.060621 -3.943231 -22.372652 -12.420798 9.110213 2.712356 4.945973 3.100926 3.651450 -1.614988 1.847517 -23.732969 4.216468 10.118051 4.772245 2.532889 -0.951155 3.134083 -4.381340 4.570522 1.123849 4.174293 13.736416 -6.662663 7.667165 11.489318 -2.524849 3.856148 8.231155 -1.687711 2.554647 -4.720844 -1.171587 14.695342 6.168685 0.246338 5.952290 -1.010185 12.667928 0.859706 7.541025 -0.110836 -11.258510 3.706657 4.650248 -5.752893 -2.376557 -5.167226 5.902224 8.912424 8.874144 -5.090266 3.341568 -1.600026 -1.662862 3.302871 -0.857818 11.625740 6.128327 8.751661 9.398624 11.817167 -7.429026 -0.203032 4.260016 -0.234653 -1.300166 8.688708 -7.156006 -11.145788 -2.747305 -2.829699 -18.647652 -9.633488 1.083544 16.747302 -13.180218 1.068602 0.859406 1.049340 12.451766 -4.577450 1.813332 -9.167208 -2.645095 -4.316013 14.654378 2.154140 -0.149802 -0.397640 4.710922 4.676433 7.267403 -0.006118 -8.671015 -4.016363 -14.101061 -4.483450 -5.139311 6.718835 10.729594 -15.394605 -3.321830 -4.498832 12.939722 -19.598422 0.253503 7.557583 9.207528 8.708028 0.508581 -8.835860 1.865756 2.273508 -0.830324 9.304620 -6.372029 2.156068 -1.670376 0.101694 -0.204056 2.998661 1.788074 -13.806315 -9.865048 -1.322495 -3.424775 1.177662 4.125658 8.772096 -4.340334 8.685527 -6.738631 9.148214 -14.821484 -1.783990 -2.450221 -10.531303 -4.644039 6.933483 9.241425 6.020521 -7.078603 -8.080549 -3.217840 -15.478137 -14.288151 2.630710 3.263403 3.883137 7.279369 -2.663779 7.854091 -7.613894 3.223968 5.689951 -3.510108 -2.901543 -0.733354 8.667602 0.517107 -1.257441 -7.712152 -3.636616 -5.551787 -0.842061 12.452411 -2.289492 -12.949490 -21.043345 -7.999611 11.299129 -4.301979 0.626063 -7.894273 -1.934077 -10.096664 -0.009744 -12.390809 -0.332218 0.300004 -7.077888 -13.129741 2.201416 -1.857824 -4.962022 1.880134 -9.231439 -3.122433 10.378995 3.203931 5.549058 -1.096869 1.085348 -10.358651 -7.548619 4.250809 -9.739596 7.790194 4.991537 -2.621612 -10.347726 -4.728006 -10.799966 8.727598 -2.988369 4.070956 -4.384458 -0.236476 11.403290 -7.902129 -0.321100 -9.261606 2.524328 5.610232 -18.778160 13.520406 6.475883 -2.465355 1.527560 3.328006 2.131222 7.386172 5.309410 -7.844834 -9.688352 0.683834 -3.872052 1.223961 -4.154277 6.867252 -9.781621 0.729042 -6.113467 -3.256025 6.477177 5.351637 0.897352 4.640747 5.975721 -3.833498 5.204579 7.897876 10.000635 -2.693939 -7.639990 -18.341883 8.671300 -3.277129 -2.065733 -3.722287 -5.316519 -6.663043 5.244299 -1.765665 10.739857 2.041564 -4.863387 10.042932 -15.785914 -11.584756 -7.501144 -0.889950 0.578781 0.175402 -1.580384 -3.588593 6.291371 6.355787 -2.105730 -0.244791 -8.863322 -0.692397 1.436837 10.794896 0.626668 4.472164 12.942912 4.359462 -6.314494 -1.513482 2.323524 -2.389858 -5.328617 -11.400814 -4.226100 0.517536 3.276808 -6.115994 1.856889 -4.728818 -3.423328 3.489840 -15.780418 -0.152056 0.710052 18.456913 7.221265 -11.145393 0.493833 12.631708 -4.979097 -32.385637 -24.256511 12.476496 -1.697804 -0.343210 11.866892 4.142293 2.335457 2.545368 -34.821668 13.391785 7.474337 5.231579 -1.907212 -8.011470 6.815600 -2.955908 -2.825311 6.339135 4.037362 16.194673 -16.602845 4.944114 12.321922 2.873128 12.329101 8.562712 1.750682 -2.867770 -1.211686 -5.798160 32.026207 9.512316 2.364127 17.045139 11.551314 17.413450 -6.078654 24.598411 5.125283 -10.485678 13.628672 -13.767244 -12.038443 4.374145 -17.271338 16.987451 18.718387 7.479231 -12.265433 8.790407 -3.249772 1.325581 4.267655 -13.480952 23.209426 13.345832 11.626942 10.093114 26.154460 -10.086592 -4.685362 11.541751 20.343309 5.394568 2.505338 -16.433836 -6.072114 -24.541345 -0.066621 -29.835743 -3.469801 -7.991837 34.903082 -18.940493 5.711079 12.411548 -3.349504 15.829664 -12.388473 2.001330 -15.570227 2.562117 -5.305032 21.678507 -2.250638 1.058833 0.749915 5.667523 7.390683 18.463928 -4.329307 -6.642599 -18.197378 -37.412834 -12.380297 3.393394 4.276992 -0.590982 -23.594133 -1.448600 6.975222 19.868293 -23.281799 -7.978692 13.000551 8.458512 -1.896123 7.914835 -16.543916 -6.053304 0.976344 7.265953 7.731685 -9.214733 0.687955 -15.808629 -0.828236 1.279548 14.342771 -1.557274 -14.889189 -13.118746 -4.318773 -0.286397 -4.596639 -5.033626 3.200856 -11.869328 14.444868 -5.956108 12.697970 -25.519888 -4.747237 -13.677690 -13.356208 0.371479 31.696754 13.691696 16.565549 7.997473 -7.356393 -10.804719 -20.667292 -22.828514 8.334984 -0.757940 12.222697 3.038113 0.693848 5.415881 -4.299470 -10.181909 5.299743 -14.564841 -6.545459 -12.445991 15.506246 -6.796906 -3.444094 -23.471177 3.380207 14.052945 -11.095654 4.093440 -5.566495 -20.551450 -19.678315 -18.035803 14.165317 -3.865941 6.310732 -4.916596 7.272886 -15.684069 4.557030 -18.084729 4.244167 -0.593042 -21.328709 -18.536438 -1.443182 -3.280182 -3.594366 -0.893571 -12.395129 1.429218 11.503903 18.287822 3.550011 7.222459 1.951377 -27.535102 -27.123238 -7.822442 -2.278312 17.800069 10.000931 0.042369 -17.866350 -7.576494 -18.187619 19.946490 -19.924614 0.276917 -5.973215 -4.574483 19.631600 -11.682378 -4.866825 -19.319215 6.618301 6.929407 -38.393422 21.762697 12.922946 -13.553930 -8.850186 -17.705005 6.929898 13.248968 30.064526 -9.688804 -3.496059 3.877613 -1.280195 -3.558069 -12.970181 18.440500 -8.370592 8.098698 -16.803440 -14.948281 6.908654 14.588407 1.890357 8.860037 7.447313 10.853775 4.934090 22.051839 9.746543 -6.702110 -14.988662 -40.755562 8.367924 22.482682 -0.249300 6.377243 -16.402319 -18.211397 -2.164944 -0.896375 20.377141 10.249322 8.588162 15.166494 -15.734904 -17.035610 -1.949415 5.345159 -1.206260 -10.862295 6.130881 -10.804068 0.106288 6.230108 0.556242 1.716740 -8.443553 -23.606678 -6.957521 14.428932 8.675386 2.886981 19.856158 10.243219 -14.526188 1.049256 0.969361 5.984162 -1.654354 -13.330749 -9.610650 -10.080878 -2.096336 -8.492695 13.195854 1.600068 0.606612 4.227934 -12.900003 3.712343 -12.502944 23.825923 -2.746135 -8.034598 2.042641 7.161319 -8.749158 -39.294980 -25.270073 14.536476 5.992322 2.571635 6.861080 12.562062 -5.280521 3.038273 -32.270096 10.800539 15.838236 4.247066 -0.861683 -2.775412 3.672023 -10.365583 -0.254820 2.011677 3.878243 23.475256 -9.101923 12.347327 19.980048 -3.941749 4.085320 16.247343 -5.171216 3.942164 -2.069776 0.373736 25.463814 12.300350 0.734757 7.552355 -0.229512 21.898408 -4.580018 24.836987 -12.683032 -17.620227 16.104483 -0.062657 -13.805539 -0.047645 -10.237716 10.576740 17.649644 12.115427 -6.802630 7.887297 -14.107139 -0.781335 6.253479 -2.072093 24.144259 16.042993 17.201216 16.245216 24.111470 -12.914014 -1.415947 13.632162 1.636204 -4.396882 14.773779 -12.864204 -18.402925 -2.894422 -2.845521 -29.990950 -14.583448 1.160727 47.768328 -23.680411 -3.859393 4.813701 7.204955 23.092606 -12.631541 5.688152 -14.335523 -0.683835 -11.393830 29.701132 3.340112 3.971254 -7.283988 7.031624 8.202590 13.275447 -5.925664 -12.140473 -19.493744 -26.919893 -11.183153 -7.861952 10.073909 15.418852 -32.978396 -7.056746 1.717509 23.800146 -35.079505 2.695710 17.715181 16.192565 25.652462 18.132256 -23.949567 3.390558 6.197772 1.515087 16.217990 -7.314763 2.311646 -10.079941 5.759699 -1.862266 3.802638 0.266108 -36.842141 -13.407999 -1.251654 -12.001333 4.591538 7.583265 14.967091 -11.612104 14.817124 -10.416991 15.318011 -35.599094 -4.346718 -8.906277 -28.488897 -5.366863 24.234309 27.746796 17.753769 -9.554729 -12.006421 -9.833230 -30.890790 -26.347655 -0.969893 0.695349 9.272347 5.922063 -1.657549 10.416108 -10.074098 8.311424 8.894403 -8.009578 -2.230188 -1.946668 30.604161 -0.304571 -4.886054 -18.508637 -10.752838 -8.818407 -2.101869 19.856717 -1.790244 -29.045515 -37.350043 -16.326123 19.130213 -6.452313 2.769882 -15.710465 -2.504498 -20.007286 -0.365679 -19.234541 3.260877 4.386090 -14.863071 -23.030574 3.717971 -0.046312 -15.020165 -1.027674 -13.683059 -6.852610 24.170842 4.548372 10.974046 2.763117 -1.367727 -20.686861 -17.748394 5.879617 -15.817010 19.388732 20.658398 -3.432454 -16.371655 -6.730381 -27.040774 17.014780 -10.151051 4.113559 -9.121721 0.530118 23.033064 -16.650231 -0.911192 -21.200723 4.932288 4.166929 -44.369815 24.565579 17.188026 -6.017749 0.372805 0.381093 3.607215 14.740603 14.073466 -10.875831 -12.336706 0.847684 -6.247690 0.076243 -1.834852 13.996282 -21.041067 3.321737 -10.456316 -5.244836 11.916766 13.388004 -0.144796 6.194094 5.029718 -3.429584 13.093155 12.003800 16.808743 -12.640801 -15.878273 -45.589344 13.397332 -7.087692 -11.174247 -3.070204 -8.259509 -13.403300 7.411151 -8.292541 21.200327 2.202004 -8.237483 16.938057 -26.309193 -21.995155 -11.835176 3.810280 -0.609673 -4.428622 0.244649 -6.063105 8.567521 12.602551 -3.199672 1.337332 -20.400654 -7.799056 -0.415793 25.011848 3.921182 3.972614 22.803018 8.072128 -7.604449 -6.126400 4.781181 -1.219640 -4.540327 -22.333998 -8.536024 -2.510905 5.224741 -9.881314 8.081316 -2.877155 -6.008932 11.116380 -4.174805 0.677840 -1.481957 10.849659 -0.278731 -2.073203 0.988309 3.226185 -2.244842 -17.706447 -11.815918 8.158730 1.041347 2.519190 2.690044 2.297297 0.024213 1.355467 -20.045247 3.728519 6.992318 2.832184 2.432823 -1.935210 2.224500 -4.705122 4.795829 3.229497 2.665859 10.433180 -4.954086 4.458360 8.852174 0.020534 4.568777 7.977447 -2.652980 1.155523 -3.786286 -2.495446 12.982391 6.603156 -0.271787 5.523604 1.049809 10.616107 2.578547 4.540857 3.288673 -8.018157 2.735172 2.475739 -6.291661 -2.415554 -6.061892 4.105290 6.898334 5.477981 -4.786443 3.704338 -2.311904 -1.204924 2.319990 -2.269108 9.782526 2.911279 7.466552 6.556215 9.392190 -7.492945 -1.550487 5.474633 2.978034 0.976344 5.482428 -6.977799 -9.701194 -4.428971 -1.788109 -16.906239 -7.014109 0.467861 14.949581 -9.400369 0.555496 1.266702 -1.783122 8.812982 -3.899787 -0.054156 -8.045743 -0.990406 -2.896118 10.927536 2.116582 -0.978003 1.842163 3.855261 4.210405 7.664273 -0.123826 -7.128781 -3.728439 -15.296186 -1.590308 -4.374012 6.347681 6.018341 -10.098839 -2.276949 -1.928438 11.228617 -13.965019 -0.906576 7.726647 6.145596 2.717037 -3.580096 -5.354646 0.749427 2.180779 1.389633 9.100268 -6.281432 0.960783 0.410655 1.515402 -0.310099 3.768885 1.301875 -8.748649 -9.043746 -0.515110 -0.393566 0.068130 1.440030 5.182237 -2.562429 7.012789 -4.960533 8.892759 -11.926603 1.508754 -3.706327 -5.637918 -3.353929 7.832752 8.646366 5.700917 -4.051543 -3.350757 -1.764663 -10.809025 -11.523927 3.661397 2.977780 3.959089 3.729109 -1.439945 6.296090 -5.384225 1.814879 2.638934 -3.364202 -1.699735 -0.098659 5.251133 0.545206 -1.953710 -6.551545 -1.231256 -2.118127 -1.415869 8.066536 -2.633757 -13.284604 -14.093811 -7.823203 8.947136 -3.731295 -0.068945 -4.966665 -1.436520 -5.402248 1.221274 -9.918327 1.212539 0.409139 -7.615241 -10.548826 0.650227 -2.232957 -2.050747 2.083700 -6.764475 -2.607558 8.105037 3.911766 3.961103 1.199143 1.538742 -9.056973 -5.958288 1.657323 -6.380652 7.773825 4.699713 -2.016009 -10.572849 -3.700781 -7.956454 7.266551 -1.974254 2.593274 -5.085508 -2.561965 9.496258 -5.321838 2.148644 -7.078228 2.719441 5.625390 -19.627487 10.171253 8.527816 -2.709340 -0.978157 1.310347 0.500680 6.073220 6.753677 -6.472406 -6.992712 0.796640 -4.289834 0.738597 -2.675961 6.160271 -5.973784 0.554911 -6.524244 -4.211446 5.399664 3.961194 1.375089 4.216075 5.034540 0.451533 4.166203 8.161333 6.801665 -1.626944 -8.714832 -19.333803 7.483571 3.903180 -1.196383 0.429412 -3.415798 -7.377828 2.965061 -2.183633 8.954048 3.658133 -4.621069 8.566313 -9.667317 -9.245634 -6.371438 -1.404546 0.655057 -1.082378 0.675701 -3.597048 3.906280 2.851806 -2.336900 -0.014058 -4.564746 -1.936361 0.988905 8.977701 4.067353 3.372027 10.233771 2.902109 -6.546973 -1.673888 1.690949 -2.214150 -1.934744 -9.327272 -4.404583 -1.069667 2.943444 -3.915573 1.366408 -1.691556 -0.758642 2.250792 -5.550118 1.754099 -4.580449 14.105776 -0.458421 -1.517125 0.370359 2.590253 -3.772470 -22.386812 -13.893635 9.636276 2.452886 3.693529 3.816519 4.050455 -0.572377 0.995393 -20.996511 4.102336 8.757696 3.052151 1.135415 0.307734 2.282608 -5.486933 4.196845 2.138164 3.474876 12.963541 -5.801900 7.890967 11.300444 -1.380751 3.472945 8.177676 -2.227102 1.273346 -4.493996 -2.437767 15.400553 5.741841 1.353796 6.361822 0.048277 12.589933 0.085387 11.233467 1.309438 -10.409751 5.953249 1.738381 -5.981246 -1.109057 -6.569898 5.645267 7.307346 6.398480 -5.226580 3.494117 -4.266659 -0.710885 2.964370 -1.787105 12.094616 6.455242 9.845031 8.261744 11.558558 -8.126980 -0.991412 6.494654 0.909433 0.576989 7.413315 -6.717100 -9.896960 -2.242141 -2.260889 -16.830326 -8.822759 -0.143737 21.167859 -11.952671 -1.193867 1.411790 0.694902 12.124775 -5.435989 2.755600 -9.815706 -1.195726 -3.559235 12.460590 2.052535 -0.398583 -1.294744 3.319780 3.630145 7.434393 -0.878342 -8.146034 -6.527137 -14.885602 -5.400921 -5.009209 7.079340 8.369471 -15.846912 -1.952940 -2.942960 13.586438 -17.945707 -0.700264 8.215464 8.230703 9.619646 5.720552 -9.648959 0.013969 4.170416 1.316737 9.958305 -4.839949 2.729369 -3.737724 1.397613 -0.300352 2.926297 1.275966 -13.974456 -9.613453 -0.561706 -3.263763 0.834930 3.108546 8.473026 -4.001709 8.826419 -4.815848 9.244980 -15.720616 -2.527132 -3.805231 -11.132905 -4.293930 12.716780 13.342268 9.360268 -4.558317 -6.789429 -3.895586 -15.120192 -13.389853 0.444367 1.827452 4.163639 5.606256 -1.500861 7.984115 -6.882411 3.733060 4.912190 -3.566189 -2.642283 -0.249707 8.337879 -0.506989 -1.688617 -8.794774 -3.424365 -5.207113 -2.601633 11.872883 -1.495052 -16.824274 -19.809220 -7.916489 10.730456 -4.737851 1.259388 -7.440873 -1.745029 -8.247502 -0.511897 -11.253225 -0.966249 1.078096 -9.645644 -12.926889 2.509458 -1.861822 -6.074638 1.830132 -8.690518 -2.871458 12.486126 4.914248 6.298859 0.814364 -0.752555 -11.081481 -8.179011 2.328417 -9.487278 10.107143 7.677619 -3.310268 -10.884374 -5.206081 -12.019644 8.930682 -4.986742 3.106128 -4.344499 -1.292788 10.072096 -8.437233 0.601651 -9.141118 2.277656 4.949951 -24.570534 12.028226 8.677641 -3.559257 -0.036979 0.873847 2.379636 7.077535 6.763515 -7.242471 -7.543204 -0.202533 -3.014332 0.914356 -2.597774 6.809146 -9.451569 -0.368583 -7.116247 -4.491489 7.173272 5.681070 0.510545 2.452303 5.909852 -1.088341 7.601981 8.277286 9.015486 -3.853496 -7.964086 -23.575145 8.053951 1.262749 -4.004915 -1.051297 -5.535190 -6.885597 3.321894 -5.482996 10.522055 0.264589 -3.694240 10.147427 -13.598064 -11.186098 -7.317933 -0.668212 -0.419910 -0.389687 0.877885 -3.718186 5.061540 4.956508 -2.418012 -1.207371 -8.707818 -2.085547 1.046878 11.312332 2.053076 4.565538 12.290951 4.843256 -6.159007 -1.711100 2.342929 -2.064527 -3.648317 -13.617383 -4.562364 0.033117 2.621376 -5.460949 1.588829 -2.879380 -2.413486 3.002304 -4.172892 1.163447 -2.871074 8.110757 0.222050 -2.455967 0.462770 1.766388 -2.968556 -13.553947 -8.595226 5.546333 1.359909 0.860740 2.163636 3.570957 -0.167424 1.288184 -12.407580 3.285204 4.864105 1.250503 -0.332283 -1.031372 1.349696 -3.814246 1.415079 1.644687 1.380663 7.819098 -4.107780 4.087852 6.580105 -0.623273 2.919020 5.579806 -1.553990 0.676577 -1.286699 -0.521976 10.180524 3.612992 0.679247 3.401954 1.277186 7.817735 -0.624909 6.947638 -1.051131 -5.548715 4.242043 1.622753 -4.317947 -0.139709 -5.151399 3.695948 5.815008 3.654735 -3.579924 2.856390 -3.040612 0.081217 2.048566 -1.017868 8.617115 4.171488 5.804623 5.227517 8.410613 -4.589741 -0.683172 4.174777 2.165724 -0.390864 4.747486 -4.253276 -5.870639 -2.133700 -1.185793 -11.285637 -3.552514 0.206753 14.489714 -7.463545 -0.985616 1.801464 1.288392 7.690079 -3.820466 0.819195 -5.855607 0.057126 -3.578693 10.007283 1.486485 1.007759 -1.399376 2.723796 2.539233 5.124942 -1.667361 -5.018188 -5.039692 -11.570881 -4.326662 -3.084666 3.330094 3.844228 -10.417345 -1.731111 0.540160 8.909907 -11.475300 0.120998 5.332574 4.651220 5.057038 2.327708 -7.223097 0.266699 1.197936 1.255027 4.975982 -2.440442 0.635736 -3.015564 1.471088 -0.520242 2.614606 0.083238 -10.020866 -4.847118 -0.512883 -2.667863 0.474038 1.697460 4.487356 -3.521729 5.184053 -3.500629 5.568715 -11.045900 -0.653202 -3.776581 -7.990204 -1.975289 6.528112 8.155864 5.605563 -2.387067 -3.345383 -2.723727 -10.373704 -9.708695 0.915063 0.252809 2.875974 2.280980 -0.878594 3.526481 -3.806648 1.183993 3.730493 -3.507458 -1.413946 -1.627216 8.918706 -0.312189 -1.811327 -6.040362 -2.453695 -1.276894 -0.887800 6.064309 -1.665920 -9.500220 -11.986149 -5.997563 6.474542 -2.706992 1.062968 -4.406710 -0.674745 -6.350221 0.720703 -6.782676 0.519351 0.206768 -5.134964 -7.967041 0.692468 -0.880257 -4.228821 -0.028978 -5.680919 -1.220228 7.434175 1.549587 3.338766 0.705635 -0.171453 -7.253507 -6.191665 1.601054 -4.480134 5.708394 6.379747 -0.964531 -6.694285 -2.774291 -8.308840 5.616559 -3.719683 1.691295 -2.083529 -1.329994 7.291006 -5.408218 -0.064090 -5.648327 1.989229 1.858849 -15.067391 9.158049 6.150328 -3.329131 -0.761621 -0.788504 1.814653 4.262490 5.884615 -4.471329 -3.578332 0.642936 -2.120069 -0.038612 -1.241432 5.170423 -5.460128 1.512426 -5.132765 -3.032018 4.272464 4.765773 0.127401 2.373640 2.167617 -0.543882 3.954145 5.674134 5.111460 -2.319970 -5.549307 -15.299160 4.240589 -1.699051 -2.425002 0.143149 -2.608019 -5.026480 1.732765 -2.619664 7.650580 0.287127 -2.569669 6.241883 -8.353298 -7.557271 -3.935207 0.014852 0.151873 -1.943255 1.055250 -3.061082 1.960085 2.555390 -0.262094 -0.053800 -5.600956 -2.564535 0.262799 7.591227 2.262561 1.189996 7.874439 2.642344 -3.555634 -1.592211 1.152972 0.009607 -0.649500 -7.705941 -3.453016 -1.406934 1.729989 -3.478671 2.887256 -1.334176 -0.323340 3.091283 -3.482291 0.148359 -1.563458 7.490474 0.541320 -1.094602 0.658997 2.075267 -1.644017 -13.223318 -7.877980 4.923564 0.640334 2.103750 2.329136 2.303860 0.462954 1.410711 -11.447973 2.341004 4.706443 1.871827 1.118835 -0.090835 1.580632 -3.206869 1.092909 1.221447 2.304532 7.528602 -4.051245 3.388680 6.557017 -0.652775 2.006863 5.190283 0.588879 0.603344 -2.168807 -1.343827 9.666406 2.832407 0.514101 4.213563 0.450948 7.470748 -0.488724 7.754909 1.446223 -5.885596 3.808938 -2.184217 -3.910803 -0.293534 -4.498844 3.989277 4.817182 4.418881 -3.496422 2.551026 -1.919057 -0.046481 1.556861 -2.335983 6.632845 4.042990 4.614482 4.871217 7.431655 -5.053451 -1.060823 4.117155 1.731399 1.248339 3.739969 -4.342800 -4.451788 -4.231741 -1.069115 -9.069496 -4.418479 -0.798935 12.336632 -7.388089 -0.089037 2.412184 -0.516989 6.684135 -2.751009 1.488887 -6.240440 -0.168970 -1.064082 7.208348 1.347553 -0.299793 -0.910405 1.863995 2.297708 4.931228 -0.431249 -4.417360 -5.562263 -10.227397 -3.445176 -2.770187 3.559982 4.290471 -9.200555 -1.455888 0.139545 8.267771 -10.512807 -0.292597 4.829599 4.884670 4.088815 3.286759 -5.665193 -0.363863 2.152983 0.467091 5.016817 -3.501430 0.873286 -3.081268 0.874338 -0.499820 2.350395 0.018159 -7.348176 -5.565057 -0.605165 -1.173649 0.425948 1.166752 4.197210 -3.163087 5.292437 -2.911576 4.988513 -8.949706 -1.343267 -2.272667 -6.517724 -2.407063 10.369213 6.729538 5.951863 -1.432496 -4.438524 -3.285612 -8.245810 -8.713993 1.049493 0.619196 3.498586 3.537717 -0.961624 4.064830 -3.597318 0.938745 1.629888 -2.633830 -1.350706 -0.617407 4.125879 -1.015950 -0.994289 -6.729385 -1.229369 -0.500867 -2.094505 5.454361 -1.649226 -8.755116 -10.121257 -5.767983 6.248615 -2.713459 1.507298 -3.589387 -0.429841 -5.518476 0.327371 -6.450782 -0.067076 0.408067 -6.274719 -7.843147 1.431953 -1.456217 -3.287275 1.636046 -5.168195 -1.117082 5.402198 3.226046 3.284268 0.648409 -0.339971 -7.583908 -5.939439 0.199273 -5.027962 6.082097 4.254622 -1.346405 -6.247217 -3.263122 -6.862065 6.057325 -4.647608 1.600171 -2.345862 -0.685802 6.418987 -4.429852 -0.074108 -6.172328 2.299358 3.319726 -14.237934 7.331465 5.334136 -2.673185 -0.779107 -0.811141 1.225041 4.652392 5.570010 -4.144966 -3.836679 1.090099 -1.813221 0.313307 -2.534354 4.614758 -4.583501 0.955666 -4.813292 -3.006544 3.527266 4.010136 0.082430 2.039710 4.145777 0.887012 3.683705 5.736112 4.777808 -2.233654 -4.866816 -14.172211 4.867997 3.115459 -1.614038 0.831262 -4.680510 -3.921244 2.385613 -2.610466 6.725008 1.224661 -0.359678 6.268036 -7.450518 -6.588069 -2.768842 -0.680589 0.337562 -1.398570 1.483387 -2.491171 2.191522 2.467060 -1.146069 -0.203343 -4.469337 -2.882695 0.289703 6.530153 1.928845 2.771659 7.303266 2.386482 -4.199823 -0.488911 1.110139 0.103239 -1.625629 -6.804230 -2.524381 -0.536764 1.106802 -3.375435 2.074543 -1.807460 -1.671496 2.109573 -7.299285 0.178928 -1.805939 13.364497 0.699223 -4.242735 1.724769 5.567227 -2.169313 -23.227305 -14.894095 11.725989 1.003554 1.582232 3.363999 3.175207 0.429185 2.851565 -24.984107 6.004420 8.336575 4.153935 1.704267 -3.457475 2.892447 -5.766662 4.354014 4.068265 3.565068 13.621926 -7.269443 4.283976 11.401510 -0.126853 5.539636 10.926767 -1.074752 0.907463 -3.535169 -3.137245 17.992933 8.791490 -0.206162 8.393416 3.036715 13.860394 1.867725 9.862669 4.341290 -10.067536 4.341173 0.665426 -9.123923 -2.461902 -8.733629 6.781551 9.850870 7.287225 -6.871571 5.646743 -3.076790 -1.173888 3.292930 -3.741877 12.548921 5.595570 8.428962 8.190782 14.710047 -9.424035 -2.595623 7.813786 6.317308 2.275108 8.020796 -9.181073 -11.806394 -8.068189 -2.039975 -21.118995 -7.937518 -0.685750 21.932763 -13.258572 1.740058 4.014874 -1.094451 11.467012 -5.646581 -0.377498 -10.746991 -0.202114 -3.645646 16.183688 2.180723 -0.036757 0.786774 4.718970 5.406066 10.380594 -0.214075 -9.113206 -7.399158 -21.532458 -3.396542 -5.655794 6.060405 6.240352 -14.632449 -3.017051 0.159764 15.696889 -18.858099 -1.258941 10.436451 7.133614 4.907415 -1.540449 -7.963585 0.910873 2.270431 1.338044 9.807582 -8.364796 -0.254803 -0.818794 1.818963 -0.419981 4.722002 0.614964 -12.783209 -10.538502 -0.785243 -0.250784 -0.083891 1.034708 5.740763 -6.217633 8.950085 -6.610786 10.737108 -16.128050 0.166278 -4.846596 -8.709308 -4.001530 14.212874 10.669354 9.285621 -3.897978 -4.605086 -4.535758 -14.260428 -16.338655 5.065802 1.746823 5.953374 4.147130 -1.282079 6.359721 -6.231161 0.525634 2.717941 -5.380594 -1.629705 -0.850749 9.086322 -1.256660 -2.083159 -10.598158 -1.834099 0.178212 -1.296376 8.556904 -4.112194 -18.347499 -17.439809 -10.827087 11.576082 -4.590140 0.863714 -6.078483 -1.396576 -7.300747 1.686041 -12.179600 2.160731 -0.041035 -10.687680 -14.081333 1.048918 -3.094314 -3.106791 2.087505 -9.147157 -2.548609 9.246501 5.983029 4.594220 1.673450 1.530151 -14.445010 -10.056240 0.835718 -6.993194 11.588582 6.931372 -1.535078 -13.239337 -4.645142 -11.789410 10.352359 -7.059376 2.682074 -5.723813 -3.470032 13.721005 -6.964563 1.298273 -11.258433 4.505762 6.552216 -24.833814 15.034415 11.473630 -4.950557 -2.074803 -0.159880 0.817212 9.170866 11.196308 -8.771201 -8.800313 2.340594 -5.548191 0.204095 -3.996337 8.831820 -7.859267 3.341723 -9.290436 -5.947015 6.229388 6.990304 1.033593 5.107105 5.801700 1.241683 4.956478 11.566693 8.522808 -2.183370 -11.921121 -26.638436 9.561434 5.683115 -1.409068 1.576463 -6.196063 -9.724848 3.877979 -2.557968 12.446669 4.415238 -3.561087 11.094548 -13.637933 -12.693207 -5.988879 -1.157836 1.456433 -2.598475 2.876291 -5.330672 4.124232 3.324363 -2.000589 -0.089094 -6.188722 -4.246763 0.879663 11.552615 6.105019 2.939037 13.761367 3.636208 -8.762386 -1.115017 1.243000 -0.695915 -2.761500 -11.314872 -5.077573 -2.586435 3.382360 -5.294604 4.949666 -1.653628 -0.923242 3.364525 -7.472865 0.507885 -4.075911 17.072618 -0.069838 -4.374173 1.138057 3.982111 -4.860407 -27.390734 -17.798959 10.409919 2.428278 3.119571 4.338946 5.332129 -0.871090 1.129981 -30.653728 6.420727 10.739287 3.061271 1.893589 -2.401980 3.169952 -7.961090 6.262600 5.083091 2.866538 15.899554 -7.909668 8.029346 13.518077 -0.471178 6.814450 11.887433 -4.447484 1.782586 -4.370242 -1.120041 20.023987 9.543325 -0.551918 6.388372 1.856297 16.213765 2.696054 10.187400 0.922387 -11.876217 6.386470 4.086701 -9.413695 -2.597010 -9.740243 6.131105 12.353941 8.279729 -7.065661 5.575461 -5.338566 -1.151463 4.010165 -1.422067 17.245627 5.428209 13.076773 9.745728 15.638909 -10.337518 -1.795396 8.368618 4.242775 -0.458273 9.102565 -10.389652 -14.806352 -6.045968 -1.864302 -25.386568 -10.014888 1.228905 23.300873 -14.298402 -1.178287 1.928308 -0.195112 15.049061 -7.458878 0.892547 -11.957658 -0.818708 -5.984984 20.286471 2.971914 0.401218 0.958395 6.302495 6.515580 11.361391 -1.445320 -11.009630 -7.068283 -23.939278 -5.013929 -6.633085 8.466738 8.931531 -18.596736 -3.591097 -2.512761 16.546797 -22.104733 -0.340098 11.528017 9.918409 8.406847 -2.481234 -10.755921 1.075904 2.945271 2.673882 13.174447 -7.612216 1.821875 -2.943046 4.224202 -0.103027 5.102064 1.193399 -16.638631 -11.402996 -0.311775 -3.220279 0.938645 3.240841 8.824123 -5.197174 10.469071 -8.110659 12.921446 -20.835321 1.394556 -6.667911 -12.255853 -4.347185 10.734331 15.122872 8.553708 -6.100883 -6.195322 -2.832349 -19.220989 -20.425096 2.989756 3.363230 5.465267 4.682653 -2.333517 8.813211 -8.080026 2.937557 6.482985 -5.839978 -3.032757 -1.987690 12.196233 1.418199 -3.362127 -9.411535 -3.700792 -3.688561 -1.531742 13.867936 -3.382652 -21.052755 -23.753562 -12.268235 13.484082 -5.548383 0.016561 -9.101595 -2.131407 -12.494280 2.368586 -14.439617 1.284794 0.674774 -10.867782 -16.007330 0.602195 -2.534449 -4.441744 1.193635 -11.248075 -4.037967 14.085382 4.501981 7.013805 1.564271 1.192811 -13.657422 -10.644744 3.761811 -9.466788 12.688469 8.492042 -2.937863 -13.912493 -5.322012 -14.515711 11.442518 -3.620644 3.728837 -6.369402 -3.621889 14.965210 -9.164415 1.395577 -10.208282 3.893324 5.922175 -27.725334 18.461267 13.365059 -5.260563 -1.540910 1.079397 2.031238 8.878330 10.637094 -9.854001 -9.608640 0.578303 -4.948845 0.448169 -2.730671 9.862716 -10.575464 1.295468 -10.003067 -6.574999 8.015293 7.876398 1.379453 5.693569 5.264617 -0.902053 6.461626 11.766478 9.746516 -3.512157 -12.032058 -30.654933 10.009911 0.087023 -3.958904 -0.489646 -5.157148 -11.092638 3.869238 -3.733874 14.945331 5.548472 -7.507149 12.862557 -16.091081 -14.838779 -10.576925 -1.209548 -0.014282 -2.189881 0.631265 -5.911753 5.564408 5.026554 -2.298643 -0.098454 -9.911536 -3.307508 0.968434 14.168802 4.535595 3.256842 15.908287 4.905295 -7.812289 -4.159745 2.927575 -2.703671 -1.263699 -13.966612 -7.339739 -2.381783 4.358215 -6.075309 3.185943 -2.711067 -0.474271 4.987428 -8.841878 -0.009387 -3.865290 12.719190 0.379287 -9.120613 2.643385 7.804827 -3.327454 -20.437976 -12.867700 7.571157 1.984303 -3.311766 4.918603 3.603440 -1.928108 3.415636 -23.408829 8.322929 7.671859 3.912272 -3.787614 -5.621623 1.938406 -4.735755 -2.528582 5.562532 0.627722 13.003156 -6.878490 3.091474 9.592420 -1.019857 4.098207 10.497957 0.129862 1.113464 2.163285 2.299466 17.670976 8.969402 -2.696718 6.238602 5.615680 12.867404 -2.561628 12.634246 -7.117869 -8.134783 6.352519 0.918802 -8.481828 -1.719162 -8.216983 6.791505 15.799638 8.499863 -6.605413 7.709392 -7.453073 -0.863157 4.814236 -0.729587 15.003730 9.826359 8.275445 8.316409 18.770232 -6.607689 -1.004732 6.069175 7.533235 -2.566519 7.419347 -5.739636 -10.418149 -13.798779 -0.440475 -21.248226 -6.161185 0.195680 22.694592 -13.324905 1.881067 7.202753 5.369677 12.705112 -9.836232 -0.377179 -8.457887 0.269487 -6.931008 23.072050 0.732346 3.938245 -2.498496 6.466395 6.063972 9.468208 -2.798845 -7.713175 -10.970051 -24.506807 -8.207524 -3.714294 0.082546 2.839127 -18.556211 -4.414646 7.684043 12.395120 -19.876021 -0.287375 9.904158 6.922268 7.557519 2.441358 -13.147542 2.216044 -0.691986 0.636361 6.817246 -5.701232 -0.502039 -6.305403 3.046495 1.447123 2.978221 -0.274028 -17.623017 -5.085583 0.311571 -4.720053 0.330476 2.029085 4.451923 -9.599861 7.426787 -9.913301 10.234534 -20.249836 -0.440018 -5.882452 -13.560765 -1.413062 10.379559 11.013321 6.636201 -2.996355 -6.934833 -4.918095 -16.866062 -20.637150 3.686272 -0.409447 6.197609 -0.843195 -1.190007 1.035942 -4.775486 -1.074986 6.230413 -7.009030 -0.787030 -4.052867 19.979217 -0.564618 -3.050512 -10.660456 -3.260898 3.594487 1.192231 7.310871 -3.888763 -13.702852 -18.180007 -9.939891 10.988876 -1.850810 0.044544 -7.207305 -1.387546 -13.661762 4.208729 -9.527638 3.622137 -0.979730 -8.095259 -13.388638 0.006512 -0.734645 -5.543635 -2.364641 -9.338876 -2.163214 9.350277 2.747537 3.563992 1.474154 1.978103 -14.280629 -13.909605 1.101254 -3.153558 12.652336 9.983269 1.245968 -8.184014 -1.919050 -14.733998 12.254418 -9.254484 1.891497 -2.922596 -4.612838 16.562818 -8.044984 -6.251915 -12.675579 4.369138 1.352993 -15.604307 20.471389 10.779403 -7.404390 -2.735853 -3.533993 2.368929 9.358856 13.889906 -9.363002 -6.597000 2.896078 -3.305088 -1.530185 -3.707374 9.196557 -9.207043 6.863460 -8.643068 -5.170069 6.235527 10.836083 -0.448352 5.909700 0.196443 -1.292450 2.262556 10.747124 7.534809 -4.641865 -9.788663 -22.064315 7.608300 -4.894499 -3.173074 -1.246602 -6.583805 -10.263853 2.273367 1.117998 13.348193 7.340769 -3.693788 9.829719 -15.320624 -14.038638 -5.766304 3.219400 0.958164 -5.799834 3.529590 -5.469580 3.679848 5.166161 1.831544 1.581729 -10.427055 -9.012838 -1.581342 10.643190 3.143273 -4.224533 14.715507 3.122188 -6.076314 -2.701027 -0.165404 1.199362 -0.480773 -6.736113 -4.966743 -5.534636 4.165693 -6.304414 10.813836 -0.556701 0.482080 7.607610 -4.425368 1.246576 -4.518436 14.076644 -0.799733 -2.301578 0.019813 3.361610 -3.390856 -22.141177 -12.797284 8.439552 2.451297 4.721907 3.497292 3.766050 -0.874666 1.381010 -22.517042 4.377556 9.240743 4.063137 1.834358 -0.505143 2.845339 -4.913979 5.073370 1.483878 4.012511 13.097006 -6.371153 7.281955 11.090674 -2.645807 4.010443 8.140949 -1.230108 1.851230 -5.130945 -1.138464 15.077097 6.459989 -0.322773 6.228926 -0.389429 12.555818 1.084562 7.998195 0.059869 -10.697131 3.716185 3.997477 -5.909180 -2.605851 -6.037797 6.009368 8.992866 8.261893 -5.349135 3.232341 -2.626652 -1.884142 3.147085 -1.177245 11.663469 5.363531 9.790435 9.292687 11.800411 -7.683244 -0.925644 5.610447 0.981583 0.392809 8.373054 -7.014776 -10.982295 -4.248686 -2.876040 -17.724329 -9.080064 0.192043 17.623215 -12.632911 0.346352 1.187801 0.198063 11.978297 -5.100778 1.853131 -9.413396 -2.392677 -3.790951 13.561362 2.239453 -0.508727 -0.216671 4.754348 4.338510 7.703163 0.273507 -8.729256 -4.735731 -14.788752 -4.806575 -5.037966 6.719013 9.776178 -14.940824 -2.786726 -3.791791 12.886090 -18.436162 0.332888 7.683220 8.742671 9.808395 0.693511 -9.116936 1.264077 3.035443 -0.324690 9.610987 -6.218478 2.200494 -2.003874 1.478995 -0.322545 3.028615 1.758730 -12.825472 -9.767904 -1.213554 -2.500286 1.101334 3.286913 8.449850 -5.469209 8.819542 -5.802994 9.337748 -15.161477 -1.801173 -2.877380 -10.058505 -4.377180 9.517351 10.165847 7.334375 -5.976495 -8.004086 -3.286106 -15.096634 -14.044807 2.208881 3.214230 3.528154 6.814345 -2.322770 8.137261 -6.764982 3.065406 5.192157 -3.561527 -2.554375 -0.223755 7.834781 0.352563 -0.966343 -8.556292 -3.480624 -4.626879 -0.512854 12.029989 -2.335189 -14.405551 -19.797030 -7.954243 10.835199 -4.361745 0.943710 -7.147745 -2.260898 -9.739540 0.437356 -12.141059 -0.428792 0.053754 -8.264317 -12.785096 2.242430 -1.935698 -5.092560 2.006821 -8.932375 -2.848588 10.034053 4.264953 5.556512 -0.774030 0.598314 -11.296885 -8.142744 3.475224 -9.470000 10.223345 4.936314 -3.178709 -10.366940 -4.565958 -10.987583 9.305958 -3.591656 3.589922 -4.371125 -0.876914 10.834100 -7.828720 -0.365397 -9.882965 2.915725 5.520489 -19.786807 13.631260 7.992189 -2.773928 0.958257 2.830526 1.970651 7.201786 5.832462 -7.565242 -8.944139 0.717577 -3.033731 1.045477 -4.337712 6.937956 -9.155725 0.269022 -6.680713 -4.014039 6.254343 5.450513 0.903934 3.808962 5.787960 -2.709751 4.534373 8.407335 9.913331 -2.608180 -8.021359 -19.132649 8.468878 -1.542484 -2.869210 -2.479313 -5.665494 -6.785365 4.436181 -2.817677 10.664809 2.373241 -4.284915 10.093314 -14.981086 -11.255692 -7.244375 -1.104346 0.345038 -0.187807 0.197325 -4.298328 5.642625 5.198427 -2.439296 -1.306581 -8.191490 -0.705135 1.251848 10.208236 1.671070 4.608363 12.451566 4.534468 -6.642984 -1.738619 2.765003 -2.836490 -4.294078 -11.350904 -4.284778 0.163305 2.907749 -5.559313 1.481784 -4.056585 -2.802263 3.298871 -6.129920 1.999820 -4.625080 15.292430 -0.275025 -3.203190 0.599221 4.487615 -3.996875 -25.459408 -15.352998 9.770850 2.556753 4.334526 4.006460 4.861757 -0.797467 2.455138 -24.527675 5.400414 10.354169 4.792823 1.982227 -1.408263 3.302553 -5.658307 3.813493 1.513047 4.419736 15.043620 -7.489695 7.547523 12.699116 -2.304365 4.538870 9.858953 -1.004656 1.707902 -4.500623 -1.838901 17.786678 7.401996 0.291696 7.540251 0.326487 14.371708 0.320890 10.480591 -1.135504 -11.879338 4.975358 1.701775 -7.587738 -1.981111 -7.334671 7.505068 10.328260 9.165993 -6.201841 4.353809 -3.216204 -1.540679 3.568296 -2.642041 13.264997 7.018049 10.044431 10.298060 14.443246 -8.883373 -1.290572 7.025308 2.110470 0.440864 9.129962 -8.327404 -11.444168 -4.969711 -2.969326 -20.571031 -9.376415 -0.174947 23.065087 -14.728880 0.709187 2.776493 0.465541 13.516924 -5.795318 1.715731 -10.812179 -1.739799 -4.702082 15.654384 2.291854 -0.059547 -1.156606 5.090421 5.034078 8.999379 -0.551408 -9.306619 -7.508557 -17.959188 -5.515256 -5.545861 7.138509 10.117565 -17.477612 -3.533367 -2.765432 15.923513 -21.420627 0.249026 9.426251 9.764927 9.996980 2.602621 -11.088835 1.173828 3.126437 -0.009264 10.002003 -7.099726 1.729076 -3.063309 1.333784 -0.707179 3.831320 1.270355 -15.832882 -11.001904 -1.564925 -3.392421 1.056213 3.432549 9.050220 -6.720965 10.036101 -6.737310 10.312767 -17.900818 -2.061419 -3.884082 -12.897067 -4.724235 13.015169 12.053594 9.191619 -5.810673 -8.230720 -4.940587 -17.120440 -15.992791 2.831525 2.509112 5.236528 7.065547 -2.113971 8.226187 -7.532585 2.760303 5.257570 -4.600452 -2.525949 -0.864638 11.215199 -0.649530 -1.605809 -10.960197 -3.844274 -3.643129 -1.312964 12.213587 -3.034669 -15.953552 -22.009025 -9.944839 12.387262 -4.897706 1.734925 -8.108114 -1.698921 -10.759171 0.532195 -13.589722 0.442261 0.399170 -9.936859 -14.853046 2.331298 -2.184133 -6.511997 2.120224 -9.762403 -2.932536 11.909462 4.905566 5.966421 -0.219666 0.483023 -13.538888 -10.164054 3.004658 -10.046138 11.486777 7.317990 -2.976335 -12.406306 -5.251317 -13.174623 11.060037 -5.219104 3.597684 -5.245999 -0.615838 13.048092 -9.114823 0.032306 -12.109084 3.628962 5.869623 -24.959295 15.181742 9.459346 -3.873273 0.258048 1.386326 2.306684 8.689466 8.302846 -8.238065 -9.433654 1.370975 -4.242192 0.817328 -5.142161 8.476039 -10.459941 1.667300 -8.114933 -4.790753 7.180675 6.963886 0.578521 4.781980 6.618474 -1.691271 5.943281 10.087994 10.976926 -3.736433 -9.988780 -23.691630 9.416329 -0.115486 -3.005131 -1.916849 -6.308859 -8.144078 4.912589 -3.581908 12.728957 2.924908 -3.976769 11.636189 -16.577209 -13.170968 -6.958280 -0.506530 0.802735 -1.378122 0.571740 -4.948486 5.773657 5.906431 -2.338600 -0.500568 -9.783738 -2.773199 0.954197 12.891471 2.788513 4.803689 14.495787 4.971382 -7.444346 -1.450125 2.797456 -1.436629 -4.580125 -13.106389 -5.153880 -0.591810 2.946281 -6.498215 3.404338 -4.043150 -3.136682 4.349018 -14.900365 -2.691910 -1.461654 12.087134 5.127790 -12.620635 3.433840 9.213902 -3.041518 -22.562258 -14.810449 13.736235 -0.395162 -9.164831 4.375639 4.345757 1.192688 1.968559 -26.743222 12.800878 5.403466 2.571623 -7.023219 -6.604060 2.699812 -7.805568 -1.740307 9.055868 -1.719060 12.253678 -9.049601 1.852895 9.618575 1.826458 8.634865 13.018349 -1.605564 -2.598256 5.856109 2.026922 23.679777 10.308685 -0.310088 9.430331 12.969224 14.384088 -4.368413 20.634928 1.958149 -5.865885 10.625877 -0.268602 -11.618020 0.631812 -14.649555 8.114154 14.518828 1.639568 -9.603603 8.498974 -8.286253 -0.267757 4.834784 -1.620568 19.770216 11.109496 8.716655 6.976743 24.757884 -5.493937 -3.497816 10.723333 16.696272 2.332713 7.538536 -7.440459 -11.390271 -14.319269 0.095463 -21.660195 -3.370911 -4.621328 27.214669 -12.374543 0.604945 8.040877 5.284396 13.639779 -10.683009 -2.763319 -11.589797 4.122685 -6.107332 25.074902 -2.081951 7.714803 -3.453766 4.797833 4.889171 12.901570 -5.146279 -9.968516 -14.164950 -31.847282 -9.633277 -4.603687 -2.107667 -3.896261 -22.886290 -1.340904 8.127098 17.681003 -19.964751 -2.803944 10.645523 2.595873 7.295851 6.491520 -14.383226 -2.315617 0.175936 4.826758 3.435997 -3.773655 -3.595280 -12.151778 5.371663 1.760669 5.308211 -3.269008 -19.278742 -4.107179 1.496684 -1.795990 -1.315010 -0.707109 1.536737 -13.223129 7.029119 -8.516446 10.368578 -22.463001 -2.925168 -12.328568 -12.880717 0.031672 18.323078 14.687023 12.868675 2.504437 -2.531225 -7.024628 -19.206679 -24.283647 3.343376 -8.649426 7.180170 -4.493850 0.729090 -1.700144 -3.157519 -5.495819 4.606578 -10.318955 -0.275162 -9.466867 19.544061 -2.867810 -2.792437 -12.042044 -4.073326 9.396607 0.833211 4.024878 -5.421025 -23.752236 -17.057052 -14.068710 10.213651 -2.334159 1.082302 -7.256493 1.170272 -12.736853 4.917174 -8.777648 3.613251 -3.955338 -10.722265 -13.489513 -1.720319 -2.289236 -3.206414 -6.174232 -9.813290 -0.527960 9.762025 7.282323 4.465896 4.517074 -2.334687 -18.824157 -18.128482 -1.148440 1.995685 16.990270 12.695261 2.541666 -10.787944 -3.043151 -19.360536 14.149683 -18.202194 0.091789 1.008237 -10.005789 19.753190 -8.010809 -6.050298 -12.657984 6.497739 -1.403718 -23.672938 23.405859 14.283995 -13.431741 -7.909272 -10.261953 3.297625 11.481948 21.076799 -8.297057 -2.608409 4.033477 -1.223618 -3.629596 -3.116024 12.838860 -7.827781 13.194302 -14.008443 -10.746074 7.545498 14.648987 -1.925106 2.901761 -3.898146 3.185500 4.001044 14.627604 5.708594 -2.164682 -13.481356 -33.711674 4.530696 1.726449 -2.910073 5.461195 -9.072961 -14.764421 -1.105412 -3.173377 18.913147 2.205517 -0.463631 10.271504 -14.477313 -16.193902 -4.442158 2.633129 -0.256020 -7.821331 9.260662 -8.086636 -0.916114 2.095610 4.583696 1.351935 -10.294884 -12.600875 -1.688183 9.933278 9.056518 -6.885481 14.867022 4.605269 -6.590619 -3.455263 0.171564 4.542598 2.369594 -10.276413 -7.068067 -11.037587 2.565727 -5.011063 16.456726 2.633364 7.299034 5.943268 -8.390210 -0.873966 -1.354475 7.309200 2.553874 -7.135397 2.282271 5.456886 -2.033264 -13.250680 -8.648551 7.960326 0.141774 -5.010802 2.298256 2.492131 0.362611 1.528458 -15.141417 6.874638 3.288421 1.439843 -4.387177 -3.938517 1.185313 -4.465642 -1.436119 5.426173 -0.931287 7.563677 -4.812107 1.001779 5.859167 0.868429 4.596981 7.820487 -0.393022 -0.993029 3.101843 1.116654 13.509279 6.301491 -0.808793 5.267479 6.962712 8.658192 -2.516905 11.469005 -1.168997 -3.633078 5.613051 0.079622 -6.767225 -0.091567 -8.125929 4.554117 9.038084 1.728742 -5.457447 5.343480 -5.188392 -0.244203 2.998778 -0.596880 11.199674 6.744505 5.053063 4.467903 14.288928 -3.786468 -1.947467 6.076952 8.849085 0.646929 4.305179 -3.676918 -6.913990 -7.986983 0.288740 -13.145362 -2.540993 -2.108750 16.446259 -7.519852 0.243596 4.863091 3.539830 7.916403 -6.665492 -1.534947 -6.722391 1.931413 -4.082611 15.522513 -0.611740 4.459146 -2.080376 3.211333 3.336455 7.409595 -3.164548 -5.838084 -8.303153 -18.374973 -5.550948 -2.864535 -1.342646 -1.644018 -12.957133 -1.697241 5.503696 10.599426 -12.067913 -1.291579 6.453368 1.916308 4.892544 3.868267 -8.860563 -0.298673 -0.074074 1.836994 2.628213 -2.330281 -1.865360 -5.985099 3.066600 0.767312 2.698654 -1.346961 -12.672694 -2.256453 1.133091 -2.004148 -0.507919 -0.187643 0.913403 -7.679978 4.186507 -5.511610 6.311888 -13.472326 -1.160923 -6.464797 -8.618590 -0.126413 9.575930 8.862362 7.135564 0.774148 -1.674184 -4.016915 -11.346154 -14.880379 2.250157 -3.973082 4.226919 -2.819563 0.120344 -0.913567 -2.449280 -2.630073 3.379531 -5.765080 -0.150816 -4.793953 13.483934 -1.396608 -1.907663 -6.774013 -2.397784 4.846759 1.083794 2.892506 -3.363385 -13.311530 -10.416853 -7.896101 6.273182 -1.313894 0.190761 -4.222930 0.070143 -7.938409 2.821054 -5.193860 2.711524 -2.115349 -5.927964 -8.239714 -0.579178 -1.146184 -2.675665 -3.157740 -5.817530 -0.533987 6.082290 3.137095 2.466567 2.269926 -0.693036 -10.324284 -10.193418 -0.164088 0.740785 9.827678 8.055254 1.619163 -5.934238 -1.587383 -11.509899 8.351929 -9.769724 0.330730 0.141037 -5.452627 11.665980 -4.970147 -3.964384 -7.581456 3.876250 -0.482075 -12.756622 13.942056 8.509817 -7.384180 -4.362295 -5.168252 1.610128 6.756291 12.010797 -5.428248 -2.286759 2.555490 -1.175900 -1.971410 -1.437892 7.186926 -4.664797 7.397683 -7.964482 -5.720491 4.507035 8.476522 -1.094852 2.309382 -2.078981 1.184290 2.255015 8.471113 3.631292 -1.648133 -7.766456 -18.860556 3.201500 -1.249229 -2.109771 2.228405 -4.774316 -8.430936 -0.160126 -1.763724 10.768014 1.409868 -1.545449 6.247864 -8.951253 -9.613684 -2.906001 1.630144 0.239832 -4.736618 5.186755 -4.480280 0.182997 1.478301 2.374114 0.993898 -6.394656 -7.067858 -1.016655 6.040592 4.601723 -4.183658 9.088566 2.220403 -3.746586 -2.065435 -0.064706 2.543525 1.432460 -6.341422 -4.015345 -6.170803 2.064233 -3.136664 9.395648 1.533257 3.531236 4.385442 -4.203779 0.547920 -2.569122 8.358304 0.553266 -2.274628 0.825331 2.214147 -1.313520 -14.099473 -8.877301 7.442715 1.103357 1.177553 2.060228 2.499668 0.000642 1.609558 -12.158172 3.242781 4.713809 2.068087 -0.011371 -0.903102 1.633808 -3.319274 1.536851 1.607927 2.203723 8.260234 -4.021946 3.331462 6.791312 -0.773120 2.205566 5.884237 0.140553 0.718382 -2.082229 -1.381511 10.571508 4.224731 0.013825 4.788138 1.246464 8.078086 -0.583441 8.764953 1.783312 -6.052406 3.826549 0.167334 -4.837875 -0.998901 -5.032994 4.711372 6.374716 4.015833 -4.009260 2.598477 -1.708841 -0.304643 2.069059 -1.940040 7.497766 5.330558 5.058553 5.534630 9.292482 -5.286430 -1.346985 4.377456 3.008535 1.212079 5.210370 -4.583925 -6.250410 -3.165046 -1.179564 -10.656803 -4.741927 -1.317995 14.082371 -8.257473 -0.016511 2.412222 0.758897 7.369460 -3.637473 0.973900 -6.324640 0.013251 -2.050221 9.845725 1.186643 0.451315 -1.689723 2.416052 2.656973 5.685839 -0.332970 -4.966839 -5.814599 -12.294799 -3.960945 -3.234507 3.008564 4.111687 -9.983020 -1.867421 0.339034 8.732362 -11.872783 -0.482583 6.018862 4.659532 5.819347 3.322692 -6.872414 0.487532 2.086958 -0.028802 4.857917 -3.215170 0.218091 -2.055869 1.219531 -0.556705 2.136572 0.124487 -9.323114 -5.318191 -0.720895 -0.625026 0.416581 0.756082 4.134076 -4.451546 5.510234 -3.361337 5.365317 -10.745353 -1.704554 -2.549232 -6.986489 -2.376367 9.181105 7.445897 7.077348 -2.290974 -3.892617 -3.994054 -9.896276 -10.331097 1.873078 0.195545 3.320247 2.735513 -0.742715 3.604307 -3.856635 0.871551 2.853848 -3.079635 -1.159906 -0.814766 7.572498 -1.410180 -0.930650 -7.185859 -2.111872 -0.652627 -1.043364 5.418853 -1.916775 -10.920017 -11.293647 -6.050465 6.837140 -2.654092 1.313626 -4.119064 -0.686215 -6.134749 -0.090904 -6.790947 0.440712 0.233491 -6.544223 -8.498875 1.259594 -1.220881 -3.992516 0.962781 -6.183062 -1.244028 5.861072 3.564984 3.383627 0.483590 -0.146596 -8.675113 -6.769911 0.666713 -4.729970 7.498981 5.656022 -0.898401 -6.682385 -3.029136 -8.463213 6.173449 -6.386190 1.571620 -2.215301 -1.122473 7.720954 -5.394339 -0.976491 -6.859554 2.500581 2.998770 -14.423772 9.447221 6.387278 -2.987465 -0.800339 -0.375921 1.083702 5.357967 6.818509 -5.435319 -4.803471 1.288021 -2.414382 -0.047628 -1.866306 5.396943 -5.212534 2.043339 -5.250547 -3.250408 3.680160 5.069852 0.020433 2.806215 3.000242 -0.029241 3.377989 6.271819 5.409868 -2.232201 -5.687764 -15.489258 5.163279 0.467955 -2.261201 0.763430 -4.822388 -5.004449 2.729376 -2.713087 7.734142 -0.125299 -1.123979 6.640345 -9.066008 -7.279867 -2.902570 -0.678080 0.576060 -1.470085 2.389099 -2.868628 2.401583 2.593766 -0.930721 -0.681459 -5.105827 -2.708851 0.338625 6.915053 2.043890 1.865601 8.236394 2.264098 -4.556846 -0.569701 0.592416 0.050715 -1.738900 -7.898233 -2.274109 -1.187061 1.484820 -3.494810 3.310692 -1.680963 -1.221657 2.496122 -37.352767 -1.164664 3.724884 46.156220 16.449549 -35.988662 10.085517 32.340537 -14.375622 -84.049588 -52.856227 24.480104 -1.880467 -14.672645 23.190419 10.403949 2.636640 14.745153 -93.675777 35.624036 26.767885 18.484167 -4.465939 -27.845447 13.442608 -16.604474 -10.662398 24.643034 5.178058 48.255358 -37.678040 6.421340 35.827002 8.103712 28.407318 38.354209 9.901712 -2.616255 7.163202 2.140731 82.365462 30.667348 -4.673847 32.977810 35.048631 51.578455 -7.480042 47.307331 -6.401488 -26.717938 24.966183 -20.690687 -33.079163 -0.988807 -42.947460 34.813652 57.940975 31.735738 -33.393648 30.154438 -18.169115 0.034539 14.575400 -18.591554 58.984684 33.912404 24.911120 27.406875 77.708118 -27.383525 -12.560994 27.520826 47.943390 2.159416 17.324173 -31.198302 -29.266699 -76.869847 -3.659127 -85.496026 -14.929525 -7.957426 84.759597 -49.814204 16.227811 39.648993 3.463198 42.390040 -32.640283 -7.790363 -41.649624 7.227956 -18.027872 78.888944 -1.540261 8.974067 -2.383974 21.773059 25.749341 45.832729 -7.035115 -27.738572 -49.020586 -106.321059 -31.469042 -7.550342 2.525187 -3.273323 -66.198646 -13.240105 34.536384 55.026002 -72.250374 -9.725622 38.794577 24.530224 2.272880 -5.063240 -43.849738 -0.654139 -4.241386 10.027003 20.452013 -27.700932 -7.748292 -31.405569 6.012296 3.930981 24.958156 -8.461992 -48.805672 -26.443348 -4.829963 -7.356394 -7.764452 -7.209174 4.892089 -39.104151 31.100157 -33.150150 40.640737 -69.585110 0.491195 -30.306080 -42.760652 -2.028817 64.378233 32.455754 29.332882 6.964141 -23.260618 -22.856497 -55.778886 -76.367855 23.444583 -6.571801 32.148658 -0.569167 -2.221162 3.649524 -14.777077 -20.981243 16.720449 -33.728861 -6.790473 -25.017753 54.884677 -13.219576 -12.057970 -51.598806 -0.252268 39.618884 -6.808062 13.715591 -22.838001 -47.723848 -57.047640 -49.551745 40.492743 -10.357602 6.838543 -20.151277 8.545816 -49.205956 22.717040 -41.902385 18.868878 -7.128120 -43.336213 -52.001825 -2.538574 -11.386940 -9.721385 -4.845382 -33.282327 -1.475264 22.508129 23.398046 10.081200 9.839537 7.053580 -66.982157 -64.805347 -11.015570 -1.606165 46.699240 27.132374 8.740740 -43.641151 -13.161080 -51.631312 52.495084 -41.446481 1.450983 -10.895566 -21.480598 64.137132 -25.962956 -16.789521 -49.205336 20.808182 12.347584 -71.152107 73.249371 42.329351 -37.490891 -23.818146 -32.476597 10.564779 38.435514 72.868873 -31.982444 -17.392606 15.105528 -11.181048 -9.072151 -26.316736 43.356465 -26.320423 35.834665 -46.224170 -34.427899 19.467345 46.440643 -1.248734 26.062922 8.944243 15.202604 2.409718 55.469798 24.625424 -9.614578 -41.756858 -91.426062 24.935219 21.446877 2.955512 8.917885 -31.356558 -45.823963 1.025560 8.836531 58.510715 38.637017 0.022143 41.491924 -48.876578 -52.417962 -10.525772 10.859942 4.468553 -32.602258 18.196991 -26.993569 4.104119 14.156573 7.009440 11.385778 -29.016518 -48.983590 -12.020628 39.546758 24.806298 -11.691453 56.419900 15.377092 -33.148206 -1.157546 1.705619 17.197702 2.901853 -24.626418 -24.502537 -29.530169 6.932368 -20.965347 46.351069 -1.574389 5.006080 21.878294 -7.811357 0.809166 -5.786065 13.000065 0.521863 -3.629506 0.808190 2.761064 -4.116352 -22.929767 -13.773920 9.365045 2.858674 2.499322 3.183619 6.780419 -1.035313 2.265669 -18.360747 5.055561 7.898543 2.408328 -0.459961 -0.884639 2.266808 -5.784719 1.197710 1.440885 3.067709 13.232229 -6.943623 6.610367 11.410625 -2.084196 2.707082 8.918695 0.242534 1.263213 -2.568773 -0.820863 16.273656 4.942297 1.440387 5.772059 0.827555 12.686905 -1.919740 16.910978 -2.492365 -9.771056 8.732993 -1.556590 -7.502944 0.340074 -7.721841 7.343311 9.976416 6.857625 -5.545096 4.368214 -4.063070 0.536475 3.385931 -1.795034 13.090499 8.669161 9.194620 8.163346 14.403947 -7.831127 -1.235255 7.301426 2.849118 -0.334397 9.133190 -8.205028 -8.576632 -2.601406 -0.971831 -15.999214 -6.477388 -0.526308 24.611044 -13.571703 -1.951899 4.246320 2.811966 13.114453 -6.123115 3.129289 -9.623071 0.427296 -4.754025 17.375966 1.997542 1.859899 -4.304826 3.835632 4.037748 7.868003 -1.861857 -7.661678 -10.753968 -17.092451 -8.216159 -5.113228 4.672331 7.533934 -18.945141 -3.314757 0.549268 14.179590 -19.665775 0.821795 9.211928 8.630319 13.015985 9.339949 -12.462477 0.746644 2.873587 0.819974 7.198798 -3.862013 1.062004 -6.221677 2.776063 -0.754510 2.853662 -0.530969 -18.796603 -7.314539 -0.931486 -4.763852 1.622739 2.940830 8.206940 -7.511202 8.729844 -5.353204 7.626322 -18.920690 -3.726531 -4.658148 -15.620497 -3.563738 14.666681 12.791505 11.097194 -3.703165 -7.442356 -6.492677 -17.156418 -17.023797 -0.095912 -0.256351 5.045548 4.887995 -1.331674 5.895449 -6.117624 2.034666 5.675508 -5.454970 -2.514418 -2.300838 15.061697 -2.046270 -2.239766 -10.761289 -4.780519 -2.399016 -1.726239 10.655217 -2.029794 -16.744205 -20.119336 -9.816348 10.790677 -4.448603 2.896112 -7.661103 -1.094191 -12.498201 0.040322 -10.673838 0.517564 1.213736 -9.697563 -13.530332 2.266863 -1.181098 -7.837842 0.661751 -9.874441 -1.969689 11.391425 3.453440 6.021433 0.717594 -1.176859 -13.725038 -11.582984 2.045074 -8.498476 10.974417 10.106944 -1.637543 -9.069428 -5.017140 -14.720730 9.481877 -9.557653 2.562845 -3.301210 0.105055 11.939561 -9.521906 -0.878527 -10.958328 3.544458 2.983536 -23.191818 15.960542 9.537957 -5.047925 -0.612737 -1.096591 2.926540 7.832446 9.686172 -7.608084 -6.730796 1.304868 -2.912726 -0.202741 -2.280323 8.607878 -10.181599 2.874051 -7.790590 -4.553846 5.586655 8.802034 -0.431669 3.417239 4.345674 -1.226919 6.334344 8.922028 8.096021 -5.015346 -8.103068 -26.232168 7.259286 -2.890712 -5.323426 0.105073 -6.742211 -6.595250 4.056739 -4.669317 12.532518 -0.166343 -1.736340 10.306210 -15.369898 -12.456240 -4.925606 0.045460 0.200240 -2.441067 1.803142 -4.512689 3.583651 5.111277 -1.022015 -0.728064 -10.464882 -4.225974 0.223366 13.156629 2.037697 2.732515 13.215711 4.296159 -4.870603 -1.784653 1.445044 1.386950 -2.060653 -12.309054 -4.552439 -1.392274 2.163069 -6.089704 5.264477 -2.869056 -2.722056 5.013669 -4.042696 0.963337 -3.167918 7.472132 0.049674 -2.261490 0.490473 1.840648 -2.358117 -12.669758 -7.899226 3.887187 1.630166 0.833955 2.250348 3.837175 -0.577296 1.582486 -10.535152 2.997891 4.819237 1.507046 -0.159555 -1.011878 1.290592 -3.282859 0.049115 0.615055 1.453794 7.461457 -3.699237 3.871062 6.291340 -1.034308 1.882907 5.046651 -0.924740 0.911432 -0.724670 -0.005978 9.060595 3.298398 0.474649 2.892733 0.591998 7.111919 -1.282545 7.608391 -3.008090 -5.299681 4.592853 -0.187145 -3.897564 0.227143 -4.254792 3.896509 6.318108 4.086744 -2.956980 2.660272 -3.031712 0.368761 2.029624 -1.102636 7.682872 4.823864 5.136852 5.082499 8.064693 -4.082724 -0.273055 3.567771 1.364599 -1.032032 4.812493 -4.265904 -4.959120 -2.041230 -1.076424 -9.686393 -3.017993 0.093669 13.985818 -7.493200 -0.695218 2.315822 1.860229 7.352174 -3.578728 1.196823 -5.078317 0.177158 -3.498003 9.728390 1.132537 1.193314 -2.274417 2.576938 2.253914 4.119080 -1.276469 -4.221247 -5.772150 -10.069135 -4.552717 -2.740605 2.915236 4.106121 -10.367703 -1.835926 0.767573 7.426145 -11.252908 0.697903 4.926882 4.942563 6.164877 3.557260 -7.291290 0.503863 1.044727 0.799673 3.978685 -2.436749 0.592728 -3.781461 1.204137 -0.327218 1.943558 -0.247723 -9.935220 -3.994738 -0.878572 -3.027666 0.807268 2.188724 4.596496 -4.051038 4.828274 -3.507242 4.774003 -10.821432 -1.355627 -3.139764 -8.703812 -1.871447 7.114255 7.124560 5.344592 -2.290815 -3.991785 -3.224095 -9.883948 -8.978279 0.244431 0.079503 3.032979 2.416490 -0.772724 2.961938 -3.502691 1.491158 3.283329 -3.174130 -1.166263 -1.324062 9.505937 -0.751339 -1.724318 -6.055997 -2.687684 -0.970049 -0.974717 5.738470 -1.207038 -7.611832 -11.502495 -5.402955 6.102944 -2.456979 1.514981 -4.497583 -0.309008 -6.905819 0.506614 -6.221150 0.683031 0.685027 -4.746668 -7.561037 0.940181 -0.526649 -4.159256 0.088801 -5.197143 -1.084200 6.869682 1.617961 3.055620 0.582981 -0.205312 -7.224477 -6.288048 1.309089 -4.548815 5.685711 5.921809 -0.891480 -5.223721 -2.499864 -8.000379 5.378542 -3.664084 1.451558 -2.117630 -0.184512 6.742349 -5.292516 -0.588388 -6.501730 1.663547 1.277543 -12.842085 8.516648 5.106894 -2.877213 -0.250720 -1.035569 1.995521 3.927725 5.286492 -3.841346 -3.490093 0.679744 -2.057133 -0.103254 -1.648235 4.680904 -5.752203 1.540301 -4.300081 -2.187996 3.786087 4.698549 -0.280770 2.381438 2.236057 -0.825883 3.534653 4.814830 5.004435 -2.960583 -4.983282 -13.737950 3.779276 -2.216981 -2.442710 -0.682620 -2.763880 -4.085827 2.010205 -1.620980 7.039504 1.473909 -1.520373 5.766243 -8.318673 -7.069844 -3.057672 0.632305 0.331026 -1.996469 0.234080 -2.630826 2.058820 3.052495 -0.111339 0.351079 -6.247394 -2.805744 0.080388 7.799175 1.194039 0.947092 7.415513 2.575661 -2.842509 -1.201022 1.045796 0.293819 -0.930339 -6.398946 -2.838117 -0.922503 1.371242 -3.564135 3.192810 -1.613485 -1.139571 3.197624 -19.581370 0.390442 -1.580251 25.469066 7.707266 -13.980659 0.835002 14.829657 -6.625554 -43.267755 -31.745922 17.275492 -0.537594 0.573769 14.008444 6.613725 1.506349 3.722896 -45.087398 16.827059 11.115236 7.258601 -2.163333 -9.703718 8.220514 -5.007507 -2.272442 7.627993 5.409216 22.201877 -20.170064 7.598701 17.635508 2.014726 14.353066 12.616373 1.673832 -2.062952 -2.597590 -6.507428 40.617964 12.712560 3.410413 20.965000 12.632414 23.639095 -6.694696 32.185613 4.725094 -15.280836 17.833128 -14.457154 -15.885053 3.986113 -21.250140 21.532754 24.356149 10.580637 -15.416145 11.282208 -4.579337 0.924100 6.145012 -15.303948 30.090349 17.729526 15.987803 14.207349 33.838352 -13.613989 -5.768701 15.257206 23.357231 5.418052 6.520911 -22.035515 -11.036260 -26.753753 -0.630941 -38.977253 -6.263966 -8.618051 46.899494 -25.888431 5.885540 14.604979 -2.778428 21.822810 -15.693220 2.774141 -20.077558 2.512123 -8.224810 30.253382 -1.839735 1.416333 -0.080350 7.772217 9.855420 23.214762 -5.641120 -9.839325 -22.820010 -47.208461 -15.921976 2.114500 6.825442 2.368191 -32.091800 -3.538691 6.291367 26.080534 -32.810484 -8.629590 18.189939 12.361221 2.332252 10.442353 -22.065103 -6.065501 2.398701 7.958410 11.686494 -11.852549 1.073112 -18.401170 -0.116023 1.148335 16.453777 -1.737311 -22.647614 -17.524258 -5.917883 -1.568762 -4.195339 -4.797970 6.199735 -15.671148 19.123627 -8.573788 16.966554 -34.973281 -6.188546 -16.648409 -19.854113 -0.799986 38.780551 18.665719 22.133531 6.320038 -10.621567 -13.930899 -28.918204 -30.758605 9.639280 -0.423762 15.149384 5.012448 0.213816 7.985321 -6.688487 -10.136187 8.171838 -17.608923 -8.036702 -13.946715 22.408914 -7.759096 -4.692600 -29.510847 2.064149 13.781723 -12.359592 8.362271 -6.570283 -28.959138 -28.605019 -22.987925 19.352408 -5.354446 7.801540 -8.363286 7.131953 -21.334584 4.969374 -24.420949 5.163383 -0.081282 -26.484104 -25.022769 -1.086980 -3.924067 -5.957763 -0.927594 -16.850172 0.584279 17.012853 21.850486 5.843395 8.219843 2.324536 -35.230174 -33.207659 -7.671835 -5.574531 23.410880 14.359013 -0.035010 -22.884938 -9.631366 -24.951690 24.553668 -24.105788 0.907562 -8.068114 -4.912713 26.169115 -16.365515 -4.860937 -25.488171 8.062464 8.866217 -50.895135 29.189351 17.538612 -15.988161 -9.700120 -18.697822 7.972496 17.360428 36.098214 -13.360355 -6.852767 4.674365 -2.996537 -3.973335 -15.550550 23.042530 -12.999862 9.685193 -20.802371 -17.691840 9.538468 18.682840 2.103292 11.039391 9.480383 11.016961 7.314660 27.071221 13.868332 -9.166241 -19.754434 -54.050034 12.181088 23.552950 -2.150730 6.615427 -19.644697 -22.473923 -0.434892 -1.911713 26.742363 11.976091 8.301339 20.217243 -22.920029 -23.191567 -4.203139 6.018050 -1.137980 -12.484767 6.518240 -13.590832 1.876023 8.802726 -0.419773 1.605353 -12.732347 -27.139378 -7.455583 20.560902 10.087872 4.416325 26.653621 12.493807 -17.551914 0.412015 1.668379 6.510089 -3.027372 -18.874160 -12.193464 -11.681625 -1.437534 -11.146458 16.017309 0.285323 -0.443308 6.756198 -4.238283 0.664999 -2.873511 8.722030 -0.291019 -2.664085 0.435432 2.839910 -2.482459 -14.224808 -9.591049 6.461511 1.303536 1.367936 3.059302 3.089052 -0.358593 1.217795 -14.277698 3.727856 5.198268 1.602440 -0.112541 -1.284533 1.654878 -3.582479 1.591405 1.853007 1.858402 8.375005 -4.506243 3.987738 6.751206 -0.806511 3.161190 5.799088 -1.716528 0.684589 -1.809084 -1.157397 10.791017 4.482017 0.126295 4.168419 1.199328 8.222141 -0.502536 6.917175 -0.041484 -6.312437 4.040967 1.234195 -4.909685 -0.405429 -5.073901 4.100125 6.263281 4.211915 -3.878525 3.170003 -3.274428 -0.305480 2.085299 -1.667514 8.934587 3.957997 6.324368 5.594004 8.528914 -5.181059 -0.707130 4.422913 2.645772 0.009576 4.782340 -4.640796 -6.338731 -4.105442 -0.950216 -12.495011 -4.602549 0.171947 14.969342 -8.303289 -0.211193 2.176281 0.627847 8.129642 -4.311350 1.160696 -6.048010 -0.432074 -3.172543 9.839285 1.626112 0.341456 -0.603293 3.182317 2.863620 5.863025 -1.327954 -5.056846 -5.260963 -12.874843 -3.848497 -2.780587 3.816828 4.331000 -10.368965 -1.780622 1.020819 9.164537 -11.761045 -0.193567 6.043204 4.990990 3.981035 1.761796 -6.867821 0.296298 1.390297 1.349329 6.161541 -3.429663 0.959888 -2.391839 1.586491 -0.165034 3.057645 0.600121 -9.323107 -5.906959 -0.294710 -1.868321 0.200470 1.522837 4.844890 -3.373609 5.854629 -3.757723 6.314331 -11.345323 -0.207624 -3.709029 -6.968679 -2.104290 7.688639 8.370499 5.657431 -2.478040 -3.764555 -2.606891 -10.349747 -9.994648 1.812046 1.210805 3.242384 2.467268 -0.832402 4.192220 -3.732344 1.159224 3.093914 -3.757495 -1.448207 -1.253074 7.663347 -0.054546 -1.762941 -6.905938 -1.894945 -1.237675 -1.550087 6.168622 -1.593141 -10.212218 -12.095128 -6.234396 7.155986 -2.495192 1.097770 -4.213279 -0.902381 -5.967509 0.807540 -7.447164 0.729684 0.354406 -6.050563 -8.524321 0.363218 -0.802175 -4.064738 0.330323 -5.946105 -1.547902 7.400348 2.402062 3.222719 1.147499 0.600127 -8.063712 -6.625097 1.216240 -5.111945 6.547053 6.148600 -1.461120 -7.423443 -2.789697 -8.070978 6.452343 -4.404845 1.964656 -3.144571 -1.785794 7.964706 -5.457101 -0.522950 -6.442871 2.256239 2.862273 -16.264483 9.469752 6.746233 -3.058981 -0.505108 -0.587310 1.569037 4.972211 6.575849 -5.125111 -4.099250 0.505588 -2.521583 0.178646 -1.796929 5.638583 -5.724981 0.999458 -5.032610 -3.100888 4.444648 4.529412 0.846965 3.118989 2.973164 0.049837 3.970440 6.254121 5.588754 -2.837164 -6.297491 -16.071372 5.509920 0.912829 -2.467527 0.480500 -3.615949 -5.628562 1.729653 -2.346466 7.449232 1.416952 -2.212158 6.687663 -8.618358 -7.912996 -4.424542 0.135550 -0.094250 -1.771730 1.445250 -3.024074 2.530472 2.919689 -0.686400 -0.305909 -4.990134 -3.436097 0.047590 7.594374 2.792745 1.802354 8.527818 2.855504 -4.682237 -1.604349 0.878084 -0.725755 -1.335493 -7.529882 -3.554211 -1.343746 1.929568 -3.917828 2.493275 -1.019982 -0.682987 2.861072 -1.911123 -0.625545 -0.535005 4.255541 0.089215 -0.044194 0.375354 1.378296 -0.318111 -7.798928 -4.691596 3.257954 0.129796 1.327517 1.937071 1.118062 0.490805 0.491360 -6.962455 1.104883 2.735643 0.993465 1.064803 0.226393 0.896591 -2.072059 0.787800 1.138748 1.549486 4.365443 -2.285230 1.827531 3.854276 -0.230345 0.854289 3.034549 0.377041 0.204617 -1.721676 -1.043905 5.804440 1.532801 -0.174228 2.589167 0.346786 4.519140 -0.383616 4.767502 2.299256 -3.582698 2.571291 -1.731135 -2.476228 -0.388378 -2.656562 2.185399 2.696102 2.551127 -2.280067 1.532043 -1.333401 0.071046 0.723033 -1.497512 3.794510 2.217781 3.172829 2.697584 3.805352 -3.408343 -0.844130 2.498620 1.034260 1.262696 1.864746 -2.576337 -2.076640 -4.156310 -0.319154 -4.879256 -3.152831 -0.691982 6.794179 -4.299098 -0.098702 1.812972 -0.982810 3.885614 -1.500588 1.336167 -3.935090 -0.097956 0.622568 3.630313 0.778643 -0.912039 -0.208261 1.025821 1.206612 3.081128 0.663548 -2.585760 -4.039623 -6.090440 -2.132942 -1.728453 2.604688 2.455511 -5.270701 -0.423012 1.261879 4.045397 -5.735832 -0.356680 3.136764 2.967201 2.040354 2.026721 -2.934365 -0.373613 1.633199 0.666430 3.367303 -2.133378 0.745808 -1.784471 0.842194 0.028659 1.371157 0.067457 -3.580386 -3.617870 0.138767 0.075303 0.120048 0.533603 2.470527 -1.485729 3.216786 -1.458437 3.303210 -5.085208 -0.527298 -1.258712 -2.366654 -1.526536 7.097110 4.272531 3.488440 -0.226741 -2.916073 -1.729658 -4.281569 -4.969500 0.333765 0.741951 2.246867 1.978330 -0.568481 2.882456 -1.785337 0.936925 0.035297 -1.583162 -0.737791 0.007756 0.442691 -0.745747 -0.661336 -4.008153 -0.281358 -0.031184 -2.030151 3.210360 -0.722578 -5.307385 -5.490046 -3.386752 3.751079 -1.839671 1.062183 -1.727637 -0.310110 -3.011018 0.295025 -3.664888 -0.016718 0.442315 -4.600968 -4.756802 1.022114 -1.012068 -1.530031 1.416905 -3.221450 -0.775342 2.262965 2.085610 2.147404 0.766733 -0.229038 -4.889241 -3.674722 -0.568756 -3.363475 4.160972 2.289096 -1.091779 -3.852778 -2.074454 -3.704737 3.853636 -3.619144 1.005578 -1.694339 -0.994393 3.459386 -2.278894 -0.359184 -3.808485 1.521147 2.536998 -8.304896 4.277730 3.578381 -1.547551 -0.596931 -0.573278 0.546174 2.926134 3.423884 -2.712008 -2.233505 0.325352 -0.937376 0.311497 -1.187230 2.753837 -2.452730 0.161113 -2.998883 -1.917599 2.042949 2.235892 0.338668 1.480423 3.066208 1.226471 2.048562 3.449902 2.515208 -1.452314 -2.694010 -8.517688 3.302577 3.926098 -1.062702 1.274702 -3.553805 -2.281695 0.978271 -1.257825 3.642399 0.948815 0.398279 3.780727 -3.915204 -3.738775 -1.807855 -0.740126 -0.137288 -0.560972 1.535841 -0.886157 1.206474 1.445116 -1.061453 -0.333060 -2.124571 -2.007984 0.174345 3.894442 1.565461 1.735704 4.137385 1.378693 -3.111510 -0.195136 0.369303 -0.355894 -0.713123 -3.731163 -1.295896 -0.057089 0.634990 -1.979318 0.593429 -0.717860 -1.273920 0.436323 -3.328585 1.006098 -2.720459 6.600909 -0.619142 -1.537206 0.392461 1.999978 -2.258230 -11.911758 -8.132500 7.047249 1.094809 2.098149 1.582956 2.324895 -0.595576 0.943340 -11.766811 2.374708 4.291303 1.272838 0.349357 -0.275787 1.295628 -2.834188 1.118939 1.380367 1.935662 6.970755 -3.521808 3.016557 5.884084 -0.912654 1.612109 4.660295 -0.890816 0.783867 -1.933368 -1.553386 8.078785 3.379460 0.183701 3.561752 0.264902 6.688896 -0.673876 6.918769 1.348972 -5.548576 3.286635 0.685528 -4.449334 -0.297326 -3.364017 3.361842 4.467007 3.295010 -2.779421 2.207341 -1.808436 -0.572180 1.393276 -2.013695 6.245760 3.701403 4.844061 4.008115 6.366835 -4.527200 -1.011907 3.840102 1.521416 0.491581 3.593398 -3.864854 -5.204279 -1.848758 -0.402072 -10.472209 -4.972400 -0.109819 12.414850 -7.037274 -0.682384 1.325927 0.248444 6.314015 -3.025398 1.488693 -5.025828 -0.519222 -2.141971 7.977603 1.800196 -0.099035 -0.732698 2.083982 2.709495 4.794677 -1.327581 -3.880419 -4.895709 -9.589236 -2.608479 -2.436039 3.280428 4.559693 -8.372238 -1.799270 0.565826 8.423380 -9.614933 -0.192740 5.337555 4.122346 3.909462 3.728020 -6.109629 0.686964 1.628615 0.042575 5.543100 -2.522939 0.620337 -0.871799 1.102198 -0.808259 1.805216 0.661392 -8.882473 -5.255186 -0.098776 -1.616890 0.551749 0.807530 3.942314 -2.185682 4.904333 -2.364190 4.384123 -9.015364 -0.473826 -1.910564 -5.775999 -1.941912 6.326373 7.762095 5.044913 -2.392490 -2.664991 -2.787439 -8.118584 -8.050478 1.386183 1.125373 2.935984 2.132626 -0.826583 4.062516 -3.109725 1.255866 1.982138 -2.504998 -1.037752 -0.483270 7.036200 -0.425320 -0.900604 -5.441496 -2.029932 -2.161776 -1.586800 5.057432 -1.283061 -9.378659 -9.658084 -5.032928 5.765827 -2.149746 0.873049 -3.440200 -0.713870 -4.541437 -0.235578 -5.795423 -0.170393 0.670487 -5.425625 -6.893366 0.800889 -0.678689 -4.105832 0.747381 -4.990472 -1.713255 6.365763 2.443205 3.357137 0.322968 0.180281 -6.384892 -4.784769 0.948770 -5.100809 5.106938 5.519632 -1.366775 -6.485449 -2.461754 -7.062529 5.028142 -4.326653 1.540187 -3.225685 -0.763197 6.464057 -4.320226 -0.033617 -4.826777 1.981844 3.021850 -14.073631 7.708012 5.421668 -1.546819 -0.087004 0.535792 0.463222 4.764447 4.683367 -4.549025 -4.063881 0.336699 -2.501787 0.393439 -0.647108 4.868948 -4.834454 0.745423 -3.587988 -2.183465 3.085304 3.418574 0.847939 2.670163 2.846850 0.297048 4.144133 4.502829 4.168214 -2.876466 -4.397494 -13.983745 4.913864 0.775860 -2.594966 0.809062 -3.383545 -4.240143 2.044121 -3.075171 5.961733 -1.299500 -1.993561 5.278382 -7.060840 -6.023242 -3.234443 -0.494000 -0.058888 -0.607863 1.718594 -1.866833 2.334302 2.811926 -1.655992 -0.266054 -4.077973 -2.399487 0.186037 5.918863 2.218947 2.473494 6.695427 1.818723 -4.006470 -1.038327 0.290005 -0.119865 -1.930918 -6.787702 -2.225111 -0.635491 1.398809 -2.798644 1.345351 -0.839418 -1.607916 2.157203 -4.554390 0.643398 -2.340096 10.608799 -0.403226 -1.269502 0.318780 3.810662 -3.319527 -18.880533 -11.441294 6.663863 0.951552 3.943477 3.848121 2.740713 0.377140 0.127507 -20.346736 3.362701 7.661496 2.682432 1.685382 1.102737 2.558037 -4.627743 2.145915 2.192472 2.970730 10.475145 -5.511835 5.900505 9.270212 -1.650520 3.211131 6.766577 -1.525676 0.537127 -2.960558 -1.159882 13.343342 4.481109 -0.166406 5.402095 0.354920 10.637590 -1.003554 8.996266 2.085796 -8.931854 5.084411 -0.553319 -5.525831 -0.932822 -5.411465 4.186448 6.764049 6.495069 -4.624086 3.107521 -3.151488 -1.148899 2.137861 -2.296316 10.204922 5.170136 8.434981 7.024875 9.377878 -6.386702 -1.066179 5.321363 0.713851 1.755221 3.590124 -5.952023 -6.377769 -6.687177 -1.250012 -14.820463 -8.404246 -1.233547 15.314382 -9.685194 -0.244445 1.174592 -1.126817 9.831970 -4.192902 2.518570 -8.549087 -1.548587 -1.144587 9.191394 0.915848 -0.882864 0.369850 2.872147 3.410903 6.997316 -0.832102 -6.656912 -6.922814 -12.626309 -4.096243 -3.435277 5.700799 7.476471 -12.982942 -1.446461 -1.641919 10.382335 -14.331559 -0.736426 6.088911 7.229392 6.109449 5.607505 -8.962281 -1.351507 3.204002 1.089153 8.538416 -4.511317 2.594637 -4.886730 1.554514 -0.070225 3.001545 1.133980 -10.918572 -8.479446 0.140614 -2.626951 0.648048 2.552965 6.726907 -2.776577 7.544659 -4.309241 7.655151 -12.912049 -1.857191 -3.154157 -7.439643 -3.332268 11.539015 11.714593 5.967475 -2.238527 -6.630383 -2.829295 -12.021209 -10.809791 0.525720 1.779472 4.505997 4.822406 -1.828588 6.886990 -4.894275 2.079070 1.915782 -2.831831 -2.037456 -1.679177 4.657719 0.578065 -0.826171 -7.712108 -1.853087 -2.826089 -3.337353 9.247040 -1.876092 -12.125440 -15.640499 -7.455100 8.832811 -3.601844 0.942505 -5.591951 -0.828657 -8.075658 0.440107 -9.334758 -1.628104 0.115757 -8.483076 -10.585260 2.394382 -1.795295 -4.736527 1.586460 -7.046083 -2.702571 8.842392 5.440187 5.587236 0.143286 -0.956868 -9.375375 -7.539582 1.334040 -7.806071 9.194216 5.204345 -3.203747 -9.140203 -4.091956 -9.369110 9.325238 -4.016352 2.777704 -3.609588 -1.519783 8.880453 -5.830611 -0.308495 -7.832676 2.894121 4.804885 -20.310561 10.681771 6.985008 -3.239943 -0.567445 -0.315862 1.798539 6.550053 5.491260 -5.235418 -5.887019 0.494317 -1.512364 0.835369 -3.565124 6.222793 -6.610140 -0.011016 -6.310275 -4.202656 5.991616 4.528745 0.644419 2.786153 5.335262 0.571154 5.507022 7.339057 7.012202 -3.530969 -5.455843 -18.593594 7.033212 4.494131 -2.663908 -0.349447 -6.575644 -6.303174 2.595258 -4.051128 9.167101 1.557556 -1.818777 8.379685 -10.459893 -9.057694 -6.383279 -0.549733 -0.609042 -0.223131 1.070918 -2.777786 3.923325 4.682652 -2.022872 -0.126562 -7.249356 -3.878433 0.440064 8.221110 2.225266 4.038007 9.953789 3.765137 -5.702937 -1.914583 2.530016 -1.511664 -2.534814 -9.344046 -3.822815 -0.453748 1.737564 -4.535223 0.984767 -2.064353 -1.985527 2.475007 -10.216988 4.350421 -12.363781 28.155073 -3.007318 -10.320279 1.935366 6.717940 -8.492372 -41.202731 -24.325501 12.962539 6.774741 1.674078 6.671037 10.553609 -6.614574 4.888609 -41.176292 11.146576 18.288179 6.697725 -0.410062 -7.281754 3.874232 -10.385640 4.572819 5.145764 3.605452 25.692739 -10.607241 12.309084 20.939441 -3.721096 6.209032 17.256705 -5.434242 6.243725 -4.180171 3.172900 27.814672 16.124402 -4.495375 7.255283 1.420679 24.246334 0.454453 13.574327 -16.509383 -18.196145 8.351712 13.705305 -12.282061 -5.220288 -10.947387 10.914472 25.621218 16.596020 -8.934258 8.929801 -12.257699 -2.188576 8.170576 1.882740 26.327954 14.188995 19.867218 18.625692 27.341093 -13.875024 -0.434472 9.744466 3.035664 -8.640936 19.375732 -11.073089 -25.683544 -8.171596 -4.689722 -38.738869 -14.990663 5.265438 39.531985 -25.117326 -1.169674 4.914829 9.579705 25.196678 -14.740957 1.921518 -14.967826 -2.311886 -15.974160 40.970345 5.618303 3.942696 -4.949134 12.828750 11.306666 14.288535 -2.380641 -15.633587 -11.693298 -34.431455 -12.268613 -10.143312 9.828663 15.975037 -32.865000 -8.526698 3.351638 23.751035 -39.084354 3.385147 18.037161 17.612517 23.231885 -3.458260 -22.571650 8.362193 1.481239 -1.334235 17.102100 -10.255296 1.798806 -3.803740 5.679300 -0.215040 4.195116 2.204169 -34.417754 -13.187999 -2.062721 -11.242315 3.948513 8.565301 14.960126 -13.913340 15.140443 -15.873143 19.423052 -36.740381 1.572491 -7.756566 -26.503662 -5.796148 7.951806 21.847407 10.574910 -14.576062 -13.445847 -6.756804 -33.667567 -33.850377 3.572133 5.966729 6.973120 5.562410 -4.217796 10.244709 -12.971050 7.811481 15.861713 -9.313461 -3.009769 -1.549834 36.756607 1.647123 -5.885043 -14.701119 -10.834891 -7.421688 3.501429 22.884952 -4.009259 -24.679458 -41.569213 -16.363786 21.247154 -6.978419 -0.569168 -17.442990 -4.576542 -24.977824 4.694559 -21.645958 5.618792 2.007971 -11.675843 -25.028500 1.854120 -0.965322 -11.875901 -1.292300 -17.723008 -6.533607 21.727838 -0.773325 9.616226 -0.311215 3.986367 -21.051718 -17.593773 9.204281 -14.770240 18.670254 16.658109 -1.988706 -17.214436 -5.712774 -26.151861 17.472539 -4.076307 5.723544 -9.499516 -2.748970 25.679526 -16.670987 -5.039432 -20.492803 4.629588 4.427226 -28.732211 33.313658 18.217628 -6.384024 1.223272 4.722628 4.196257 13.729084 14.526269 -17.178425 -16.965586 1.136355 -8.461428 -0.001977 -2.804301 14.649497 -21.479705 4.623451 -11.935247 -5.401059 11.998850 14.705095 0.304370 10.883075 4.194095 -9.888378 6.854439 14.243578 18.815426 -8.099522 -17.492188 -36.917517 14.231004 -23.033705 -8.179525 -8.738960 -4.687120 -15.842926 7.948823 0.803030 23.272773 9.179951 -15.543374 18.698615 -31.418505 -24.424669 -14.962598 2.029255 1.083893 -5.685720 -0.929222 -8.003397 10.156938 12.007659 -2.108130 0.948059 -20.995947 -3.316513 0.212428 23.934747 2.181458 -1.006448 25.723019 7.871644 -10.290473 -6.524051 3.472795 -4.612703 -3.990171 -18.714460 -9.260163 -3.019901 8.086816 -10.929148 9.338691 -5.778929 -4.225127 12.095819 -17.752029 1.341857 -3.539522 27.302419 6.192389 -12.788798 0.467534 13.497256 -6.952974 -45.267452 -31.142001 17.464360 0.738688 2.597930 13.266657 7.387325 1.102453 4.029198 -46.043267 15.843466 13.214950 8.322084 -1.001329 -8.173963 8.101345 -5.554907 -0.610116 6.257831 6.524598 23.981041 -19.662659 9.731480 19.378039 0.099072 13.582105 13.398588 2.039725 -0.553785 -4.354552 -5.118738 40.193525 12.455502 3.330185 20.235501 10.402723 25.179108 -5.657629 30.975229 3.917979 -17.109808 17.004889 -10.743635 -15.146214 2.323085 -19.998479 20.997923 24.126633 12.900679 -15.257584 10.857626 -4.018510 -0.028206 6.413026 -13.395746 29.829712 17.924197 16.660070 15.963487 33.410104 -13.831467 -5.353871 14.127139 19.853686 4.583432 8.928140 -22.092158 -13.152200 -24.382248 -2.366508 -39.110050 -8.358026 -7.362453 46.453083 -27.540184 5.646449 13.074356 -2.342976 22.916439 -14.720835 2.887238 -20.778226 0.724635 -8.157486 30.677533 -0.902241 0.834618 -0.631602 8.249203 9.989116 22.089301 -4.230670 -11.861447 -21.612620 -44.374889 -16.332119 0.067269 8.204265 6.153369 -33.270374 -4.599373 3.005617 26.187184 -35.760860 -7.122433 18.197863 14.034201 6.661443 9.881484 -22.578723 -4.328632 3.316483 6.260684 13.052102 -12.365466 1.392684 -17.129549 -0.623383 0.590976 14.931354 -1.190172 -24.029475 -18.364709 -6.415600 -2.397322 -2.908395 -3.096944 8.189092 -15.976003 19.718836 -9.468762 17.841629 -35.386564 -7.381758 -14.787960 -21.243991 -2.505511 36.951597 18.639084 22.097896 2.737058 -13.287403 -13.516347 -30.717647 -30.954903 9.046597 0.330449 14.322161 7.834413 -0.970665 9.642696 -8.230588 -7.469674 9.396860 -16.285481 -8.011821 -12.016898 21.401068 -6.904135 -4.202816 -28.969084 0.111363 10.121391 -10.352683 11.619020 -6.660948 -29.401361 -32.138970 -22.201351 20.560660 -6.370881 7.870637 -9.869522 5.421355 -22.598351 3.946528 -25.931268 3.947162 -0.118947 -25.294470 -26.231195 0.709141 -4.328511 -6.778050 0.138262 -17.717834 -0.318504 17.760480 20.654651 7.006413 6.105187 1.878645 -34.733783 -31.534594 -5.181857 -8.779748 23.451443 13.163220 -0.702856 -23.163302 -9.749772 -25.686210 24.212468 -21.948106 2.001257 -7.764750 -3.661742 26.281299 -17.019026 -4.237921 -26.047258 7.874066 9.668756 -50.378749 29.470537 16.985461 -14.607096 -7.531022 -14.444478 7.793662 17.418776 32.402325 -13.909793 -9.739178 4.512856 -3.533033 -2.938913 -15.838150 21.919105 -14.854555 8.764045 -20.380401 -16.014413 10.418588 18.187815 1.878943 10.595862 10.377541 7.509181 7.264785 25.836910 16.036053 -8.461997 -18.926841 -51.918528 13.321442 19.135918 -2.392631 4.162198 -19.102594 -20.676463 1.635399 -2.296969 26.711607 10.826858 5.994039 21.117113 -25.876253 -24.076988 -5.740427 4.825085 -0.406500 -10.664150 5.046304 -13.169292 3.885058 10.076317 -1.054486 1.171292 -14.375444 -22.853185 -5.599728 21.522243 8.301265 5.799636 27.470155 12.056763 -17.283403 0.304917 2.653086 4.963506 -4.660020 -20.686797 -11.690038 -9.700398 -0.238460 -11.722112 14.253827 -2.478732 -2.176433 7.153184 -15.309131 -2.719990 -1.834486 12.381795 4.502593 -14.081661 4.131096 10.248965 -3.811818 -22.812912 -15.007638 11.859555 -0.046621 -10.434121 4.866690 4.405705 0.055098 1.947879 -28.510592 13.538110 6.144758 2.660714 -7.866661 -7.383436 2.462779 -8.133422 -3.863043 10.248965 -2.697054 12.856081 -8.741481 1.563959 9.891133 1.887513 8.409757 13.817111 -1.826709 -2.067633 7.629113 4.093308 23.854985 11.497416 -1.900969 8.146566 13.533244 14.947934 -4.910486 20.574042 -2.396786 -5.928389 11.221378 -0.776259 -12.062192 0.269021 -14.315040 7.567796 17.097206 3.002623 -9.525580 9.571648 -10.597331 -0.473980 5.380483 -0.631661 21.052484 12.151810 9.338445 7.107266 26.020129 -5.370966 -3.261666 10.572632 16.472648 0.209661 6.839380 -6.873662 -12.090190 -17.109889 0.768504 -23.741817 -4.342718 -3.652615 27.545457 -12.718861 0.635813 8.906491 6.686471 14.206088 -12.343049 -3.074356 -11.357783 3.983513 -7.166558 28.227525 -2.267663 8.487196 -3.538403 5.839565 6.133594 13.157323 -5.930343 -9.994953 -15.823797 -33.466097 -10.159830 -4.431136 -3.093943 -4.132544 -24.125575 -2.479180 10.622757 17.039569 -21.056838 -2.160816 11.440246 3.278433 8.268546 6.563954 -16.068361 -1.172619 -0.618229 4.532581 4.305055 -3.919364 -3.537485 -13.165794 6.420191 2.308646 4.576517 -3.316174 -21.676628 -3.072096 2.246281 -3.701110 -1.055250 -0.124762 1.099699 -13.681068 6.898420 -10.381177 11.283547 -24.507546 -1.788884 -12.514268 -14.607932 0.680190 17.213664 16.149931 11.216452 2.117308 -3.264024 -6.520155 -20.302116 -26.574538 3.096360 -8.303877 7.940180 -6.450358 0.483640 -2.720589 -3.102384 -5.134438 5.286633 -10.449774 0.209051 -9.838991 23.243971 -1.948549 -3.486611 -11.588990 -4.588250 9.953919 1.555246 4.483707 -5.688453 -22.995571 -18.132512 -14.345450 10.641709 -1.730223 0.041706 -8.125661 1.004561 -15.312658 6.160507 -8.615591 4.588146 -3.918078 -10.302830 -13.906418 -1.903297 -1.812199 -3.461711 -7.240904 -9.739750 -1.406028 10.403915 6.252027 4.750810 4.440335 -1.647689 -18.471229 -18.964327 -0.719998 2.537659 17.926994 13.584768 3.168096 -9.805534 -2.095254 -20.635029 15.290127 -17.018727 -0.136079 0.615700 -10.687424 21.528712 -8.085580 -7.702643 -13.252578 6.587845 -2.225888 -21.295918 25.513474 15.093092 -13.777141 -8.266413 -10.495858 3.094684 12.258509 21.718901 -8.671153 -2.910446 3.997202 -1.335397 -3.942694 -2.540447 13.099724 -8.774489 14.002776 -13.947513 -10.514113 7.874236 15.695068 -2.122913 3.878780 -5.416668 2.630974 3.284567 14.495822 5.448279 -3.320260 -13.354541 -33.539173 4.744962 -1.128000 -3.489792 4.001790 -8.748232 -15.578559 -1.358394 -1.806996 19.674860 5.020188 -2.311382 10.384840 -15.203572 -17.078263 -5.625570 4.034125 -0.435095 -8.811782 8.830036 -7.835234 -0.159015 3.227680 5.012367 2.759608 -12.077434 -14.160322 -2.453424 10.251202 8.378231 -9.113769 15.734939 4.059021 -6.035636 -4.535454 0.209776 4.591031 3.423767 -8.961344 -7.522627 -12.043444 3.420609 -5.115136 17.714990 3.066431 7.323989 7.795658 -4.950909 1.514025 -2.477138 13.131120 -0.177289 -3.018958 0.810353 3.357151 -3.594286 -21.019553 -14.208431 6.885993 1.612003 2.182173 3.971404 3.713256 -0.164031 1.717110 -23.138278 4.788933 8.742478 3.017354 2.173615 -2.283927 2.590382 -5.824506 4.138847 3.189398 2.562056 12.293702 -6.027889 6.187530 10.331459 -0.058811 5.592137 9.101645 -4.165342 1.503658 -2.973974 -1.401496 15.457523 7.542765 -0.074837 5.369997 1.591819 12.388292 1.923150 5.148071 0.200977 -9.202013 4.049207 3.176975 -6.689794 -1.894445 -7.285524 4.843546 9.416953 6.720501 -5.478818 4.430694 -4.075196 -0.780562 2.947485 -2.317532 12.726678 3.949971 9.280800 7.951082 11.534242 -7.810072 -1.157413 5.881533 3.014887 -0.474039 6.344194 -7.605969 -10.897953 -5.111073 -2.557541 -20.126783 -6.864384 1.139994 18.718369 -10.972421 0.156756 1.669087 -0.777333 11.034850 -5.116276 -0.192759 -8.995287 -0.732456 -5.073578 13.794323 2.456459 -0.303354 1.104072 4.912675 4.798259 8.413438 -1.144410 -8.165188 -5.160416 -18.630165 -3.413641 -4.891779 7.368958 6.795378 -13.261944 -2.673368 -1.722343 12.699978 -17.019992 -0.350210 8.626261 7.649371 3.553363 -3.951589 -8.166800 0.628661 1.807975 2.381903 10.017564 -6.462526 1.261107 -1.980832 1.901159 -0.341719 4.582771 1.003758 -10.833034 -9.545147 -1.136768 -2.176771 0.172881 2.660232 6.697914 -3.404457 8.216190 -6.237305 10.384450 -15.348139 1.757937 -5.345490 -8.725017 -3.506099 8.114632 11.085141 6.069551 -4.773748 -4.422247 -2.125312 -14.265919 -13.735766 3.251546 2.919939 4.820285 3.964003 -1.660738 6.753897 -6.321082 2.402363 4.435069 -4.384209 -1.951568 -1.100988 9.294100 0.810808 -2.946031 -8.019774 -2.316043 -2.213417 -1.904471 9.685914 -2.900269 -13.525828 -17.834128 -9.185866 10.426711 -4.463885 0.363226 -6.679925 -1.066932 -8.041332 1.995276 -11.654100 1.172441 0.521029 -8.076801 -12.320680 0.243273 -2.143603 -3.231369 1.314315 -8.039486 -2.882268 11.275979 3.682781 4.876594 1.405145 1.475559 -10.189613 -7.635314 2.407850 -7.384752 8.618824 6.747333 -2.385803 -11.850813 -4.010377 -10.236854 8.705900 -0.928024 2.801170 -5.500810 -2.697758 11.130556 -6.792029 1.787428 -8.403664 2.543735 4.942874 -22.952203 12.323114 9.659559 -3.857193 -1.022429 0.298676 1.800687 6.366117 7.895679 -6.932228 -7.071130 0.502559 -4.894491 0.620987 -3.187492 7.316136 -7.840775 0.777105 -7.670516 -4.632151 6.916701 5.307938 1.158857 4.917687 4.891929 -0.054356 5.468738 9.055544 8.225820 -2.687587 -9.894175 -22.296126 7.739446 1.691706 -1.723935 -0.727092 -2.769316 -8.722261 2.719257 -2.099617 10.993217 5.600396 -5.617020 9.982885 -11.533873 -11.191746 -7.706846 -0.461258 0.589100 -2.317349 -0.229394 -4.549684 4.307391 3.852137 -1.599872 0.781225 -7.292650 -3.176380 0.786810 11.476909 4.027901 2.855671 12.087384 3.885757 -6.874405 -2.475759 2.398206 -2.240160 -1.452299 -10.658548 -5.875095 -1.675358 3.204455 -4.868472 2.417923 -2.393092 -0.344941 3.778377 -132.295152 0.530561 4.897911 142.724145 56.987276 -130.002110 38.865049 112.106077 -37.389635 -272.372074 -167.442091 91.207999 -7.466919 -60.150073 60.849910 37.819693 -0.925989 58.310609 -282.163973 121.979631 88.428360 72.726185 -22.442815 -95.646973 46.577327 -46.852466 -56.367096 72.345357 16.112973 153.600632 -118.259280 9.011859 119.669525 19.945422 64.908691 130.363284 43.141833 -2.600142 48.365855 4.990247 255.460512 97.120623 -11.294276 117.025051 115.072694 161.477746 -40.630986 192.042698 -44.489219 -89.488523 83.261044 -79.473505 -116.351819 -3.185403 -129.132366 128.318235 197.485090 105.200789 -103.289968 97.846465 -51.897632 0.005050 53.354658 -67.140887 178.438633 144.295154 65.137693 87.941135 276.340613 -80.541791 -40.248197 96.834528 161.815621 8.811880 66.939755 -103.743087 -92.410222 -218.434887 -13.132558 -267.820337 -44.489730 -36.151381 303.255135 -168.859580 52.995061 127.410819 34.542714 142.106861 -105.709484 -22.473480 -126.869959 36.252286 -68.406744 278.087245 -13.056368 45.638929 -34.563126 64.797373 79.822445 143.549763 -35.362507 -76.271093 -177.754430 -338.413374 -103.516160 -27.482858 -7.450898 -7.955879 -240.494784 -47.086946 107.665779 182.459481 -249.008206 -33.821619 129.710959 76.575893 34.897783 36.381634 -158.777381 -1.038387 -15.723173 12.943842 36.421203 -82.163681 -37.260746 -111.953047 8.561398 7.548575 63.017032 -31.548788 -195.471902 -72.975473 -24.851809 -36.210779 -12.219899 -12.605796 18.630110 -144.977604 94.380040 -110.905860 112.349862 -241.005435 -24.393100 -84.960258 -166.582227 -7.195720 215.814151 105.089068 108.696957 14.240929 -69.803115 -109.283757 -188.544906 -248.158721 67.037198 -43.744090 112.211748 -4.369879 -2.903596 -6.634065 -45.850073 -74.560501 52.528623 -105.887527 -11.661301 -89.581894 235.116998 -58.803881 -26.340722 -176.781796 -18.755960 131.639982 -22.224182 31.668329 -70.417182 -155.037413 -190.422967 -159.325813 125.653654 -28.275046 24.948796 -78.083535 30.905322 -163.683901 66.371686 -123.360901 55.628623 -19.770199 -137.880085 -168.866129 -0.487206 -31.764661 -45.734322 -24.460355 -107.059285 -4.315709 80.477149 82.584820 35.720135 29.513652 10.354869 -227.920246 -217.422193 -35.804581 2.458818 154.487747 108.790348 35.585239 -131.351016 -42.039162 -184.772862 175.306501 -159.019308 -0.338700 -27.060264 -44.147923 222.549907 -87.772519 -57.802176 -181.502760 66.943370 24.676977 -233.616296 242.377513 126.170262 -122.905448 -75.361946 -111.704074 32.333110 136.132084 233.886235 -105.785907 -63.761039 60.621908 -42.222375 -35.624150 -86.880607 139.861561 -95.053710 142.951061 -142.460606 -102.724841 55.337694 158.935434 -20.828639 79.982866 16.733513 39.669253 21.426445 171.487474 81.219107 -43.953104 -137.249974 -308.261199 71.736684 43.522409 4.470395 23.026429 -108.636197 -145.475238 18.613913 25.251843 197.169960 106.470052 14.887081 127.282644 -175.336350 -172.035999 -5.880176 45.887163 22.717245 -103.341148 64.071136 -82.883054 8.626751 55.701490 26.155333 37.284435 -120.698105 -166.500986 -40.337824 142.050051 66.018172 -49.961157 182.210470 43.789206 -95.201208 3.385990 -0.731166 75.989562 -9.115901 -78.459702 -66.278086 -98.030350 16.797548 -71.970957 186.263352 -2.997693 9.722737 78.132361 -5.989059 2.086034 -2.904399 8.644802 -0.845097 -0.238563 -0.143689 5.449553 -3.630546 -18.557573 -13.340628 10.641364 0.508935 4.315759 3.817182 3.836294 1.930862 0.037678 -21.225760 3.938465 7.083181 0.907341 1.035846 2.410911 3.512925 -5.034625 1.627899 1.302080 2.419210 10.150660 -4.845599 5.667732 8.997423 -1.594847 5.461098 7.584027 -2.891607 0.119059 -3.006114 -3.463559 13.566513 5.650800 0.870431 5.360586 -0.069654 10.250284 -1.111164 8.195375 4.884829 -7.908829 2.777292 -0.632370 -7.093229 1.184125 -6.760426 3.019554 2.333951 2.837112 -5.304731 3.603293 -2.421783 -0.872351 1.207239 -3.063153 10.386595 2.026563 7.806502 6.485481 8.219791 -5.941421 -0.731751 6.218653 1.167723 2.313592 3.138771 -4.597261 -6.400569 -3.224277 0.243261 -15.877836 -8.697775 -2.258916 18.387361 -9.772978 -0.000259 0.503278 -3.326053 10.233010 -3.725207 2.993152 -8.757273 -1.993705 -0.986244 6.599490 2.759088 0.207792 1.699320 1.537432 2.485287 6.663169 -2.057052 -7.276720 -6.372448 -12.765255 -0.666850 -3.692872 5.540275 7.968691 -11.182647 -2.581936 -2.627318 15.106154 -12.661120 -0.435942 5.867552 5.009177 2.724253 6.547712 -8.392728 -1.396052 4.031894 2.264925 10.339614 -4.269502 1.505916 -2.120407 2.841922 -0.170741 3.973424 1.417466 -10.606542 -9.794492 2.378512 -2.099668 -0.426592 2.285880 6.511644 -1.314229 7.433197 -1.980538 6.971454 -10.767066 -0.795579 -2.725926 -6.816165 -3.350704 11.823981 13.228124 6.318584 -1.591801 -2.311791 -1.767897 -11.911738 -10.365980 2.538779 2.050394 3.618829 3.752115 -1.426711 8.354824 -5.009215 2.381503 0.303391 -2.721878 -1.950388 -0.304578 3.835280 1.330363 -0.941170 -6.850687 -3.167234 -4.246819 -3.981962 8.297204 -2.094489 -14.579469 -13.900074 -7.751405 9.344173 -3.714992 1.679407 -4.357702 -0.235797 -3.924627 -1.440248 -9.438258 -1.780749 0.351901 -8.432929 -9.854823 -0.882852 -1.803783 -5.075014 1.565367 -7.038995 -2.001617 11.049031 4.411609 4.455654 -0.054056 -1.706375 -7.086204 -5.058979 1.285148 -8.364685 8.454566 6.632223 -4.084268 -10.892100 -3.395353 -7.867935 9.166257 -4.783244 3.627183 -5.839860 -2.604672 9.158446 -4.918311 0.347136 -5.857237 3.977511 5.439811 -25.487420 7.468569 9.152544 -2.002074 -1.023243 0.779130 0.621407 6.900169 6.461106 -4.717093 -4.753503 0.543674 -2.276629 1.136131 -1.181577 6.903126 -6.510258 -0.066457 -7.227819 -3.444095 7.274683 3.118392 1.749489 2.658376 6.264827 2.802183 8.616993 7.815582 6.540497 -4.148387 -7.183633 -21.175909 7.660703 8.482644 -3.099622 1.488907 -4.635533 -5.760105 1.490515 -8.993765 9.080056 -1.213567 -1.844758 7.746272 -7.980051 -9.588867 -6.994138 -0.804097 -1.061596 1.597191 2.908634 -2.972860 3.436205 2.088095 -2.437073 -0.392749 -5.854418 -3.645003 1.156945 7.484086 5.666184 4.938370 8.900914 3.884144 -6.221457 -1.135431 0.794356 -0.291639 -2.862601 -11.540770 -5.470524 -1.059779 2.615997 -4.320923 0.273650 -0.039511 -0.911023 1.929750 -7.287844 0.936197 -5.752777 13.456977 0.097016 -4.744327 0.480622 3.068429 -3.826440 -21.242886 -13.635474 9.495569 2.751804 1.282860 3.689880 6.042303 -1.092724 1.827835 -20.051111 5.921269 7.549545 2.124652 -1.286122 -2.051533 2.238679 -5.487632 2.674907 2.177453 2.165312 12.395315 -6.642561 6.689369 10.230640 -1.755813 4.283753 8.568333 -2.615888 1.249448 -2.156540 -0.549500 15.950023 6.183372 0.922564 5.662600 1.666133 12.127574 -1.046861 12.870394 -2.056738 -8.914624 7.232768 3.279576 -7.075297 -0.263440 -7.922170 6.440086 10.305797 5.563218 -5.531150 4.380452 -4.388274 0.039951 3.666990 -0.802569 14.147074 7.139620 9.708414 8.509922 14.060888 -6.893647 -0.510070 6.320373 3.928445 -1.039025 9.198676 -7.668006 -10.209698 -2.246077 -1.475620 -17.356573 -5.480564 0.182381 22.641681 -12.522255 -1.405170 2.629214 3.106324 13.060924 -6.598404 1.919000 -8.629632 0.032524 -6.259113 17.355401 1.881714 2.323034 -2.882284 4.633671 3.723738 7.914215 -2.351181 -7.987935 -7.380828 -18.518999 -7.267819 -4.692197 4.661215 6.476255 -17.543522 -2.730576 -0.537405 13.137420 -18.641676 0.168455 8.531547 7.412051 9.915122 4.147174 -11.258579 0.551814 1.905154 1.933723 7.352611 -3.828824 1.071856 -5.194397 2.657673 -0.068960 3.785657 0.273520 -16.264725 -7.117463 -0.924435 -3.885145 1.137659 3.180619 7.865934 -6.616364 8.194641 -5.819940 8.498550 -18.359573 -2.115822 -5.991906 -13.128202 -3.045918 9.656514 11.797833 9.380170 -4.382079 -5.808809 -4.600153 -17.246889 -16.306920 1.172712 0.160937 3.875674 3.788448 -1.246995 5.310842 -5.954460 1.766849 6.698248 -5.900853 -2.560540 -3.001147 14.696445 -0.379691 -2.657592 -9.384978 -4.431477 -2.548374 -0.868506 10.333913 -1.864908 -16.188598 -19.771907 -9.217611 10.495042 -3.864030 1.911388 -7.545037 -1.364630 -11.176238 0.801780 -10.732031 0.864486 0.538827 -7.851811 -12.674043 0.578873 -0.797711 -6.282786 -0.609676 -9.608704 -1.835912 11.963014 2.936668 4.992503 1.464738 -0.148265 -12.404728 -10.491512 2.980480 -7.117502 10.055283 9.645168 -1.537553 -9.463789 -4.185198 -13.518806 8.852607 -7.423122 2.891598 -3.090345 -1.508173 11.975645 -9.114506 -1.163433 -9.717186 2.992879 2.255818 -22.429991 15.635677 9.446297 -5.219768 -0.470595 -0.941581 3.307379 6.683993 9.513076 -7.694215 -6.198378 0.904072 -3.005283 -0.291348 -2.394474 8.291730 -9.462627 2.430485 -7.542831 -4.425593 6.418390 7.793121 0.202433 3.609466 2.869540 -2.108515 5.770885 8.849596 8.361868 -3.988623 -9.063166 -24.527735 6.726243 -3.940427 -4.568038 -0.257063 -4.914918 -7.837895 3.053529 -3.558218 12.133689 0.870549 -3.223535 9.767610 -14.502799 -12.357773 -6.371665 0.361714 -0.008439 -2.515424 1.303058 -5.047405 3.311437 4.466258 -0.036027 -0.882878 -9.484985 -3.770482 0.406659 12.213497 2.526952 1.539163 12.816047 4.647751 -5.086583 -2.778730 1.411988 -0.463821 -1.657415 -11.713099 -5.188449 -2.069470 2.782743 -6.025554 5.097226 -2.271160 -0.422492 4.724981 -28.515404 -2.871483 7.838990 28.264667 16.493176 -29.979019 10.261021 24.554588 -10.154159 -56.627093 -33.736420 6.942824 -3.412153 -18.825270 16.716927 6.044796 3.335731 13.897778 -58.936626 26.773115 17.442800 14.485017 -6.027871 -22.803430 8.924590 -11.170991 -18.827243 19.232795 0.752760 32.786488 -27.564319 -0.504648 23.035293 7.814744 18.026544 28.567041 13.452977 -3.722790 14.994885 7.133936 59.893024 17.875179 -3.488202 22.491928 31.443491 34.907990 -10.326644 38.797736 -11.890007 -14.485569 21.181995 -25.193143 -21.949726 1.421096 -32.474570 26.200535 47.825117 25.248775 -24.524076 24.020829 -15.622243 2.417310 10.858570 -14.057819 40.754080 30.376524 11.236831 17.323057 61.917357 -16.834252 -9.395680 18.926609 39.213665 -0.068037 8.532468 -19.585593 -13.425625 -67.505979 -2.913742 -57.028562 -3.362043 -7.222651 60.930144 -33.290634 13.564627 36.560249 6.390830 27.693391 -23.809214 -8.592847 -28.973274 9.970905 -13.239296 59.408871 -4.737621 10.327466 -6.573097 14.613149 17.924810 31.764295 -6.861954 -17.077490 -43.754532 -81.736178 -28.945768 -4.230080 -6.713397 -11.596288 -50.846106 -9.538636 36.748510 34.494426 -51.127573 -6.712367 25.839684 16.959627 -2.764530 0.088817 -35.980792 -2.391108 -7.154014 7.230611 6.051489 -17.053036 -9.057626 -33.370498 3.276059 3.958963 16.403273 -11.560855 -33.852762 -12.409667 -4.979347 -7.227670 -6.866989 -7.011814 -1.820626 -32.666882 18.948558 -26.421033 26.736147 -50.916529 -0.988259 -24.013887 -35.151557 1.713925 51.499479 18.757111 19.587986 10.935123 -18.825539 -19.892785 -37.776093 -56.062378 15.238503 -12.369266 26.703314 -5.572659 -0.641062 -6.337998 -7.364648 -21.600414 10.967314 -25.673419 -2.226150 -22.803540 46.574388 -14.041722 -9.266646 -40.139596 0.939164 41.429607 -4.767650 1.970026 -19.251514 -22.961626 -35.716849 -37.021622 26.403757 -5.555651 5.806971 -13.338300 9.633476 -39.871777 21.293451 -24.675314 14.476580 -7.425669 -30.758191 -36.026260 -2.005557 -8.364183 -7.749229 -5.953930 -22.406394 1.661831 10.878936 16.488038 5.717321 7.000969 3.125777 -51.006349 -52.891985 -13.479773 7.579298 32.813381 21.282605 11.486685 -26.189807 -8.208270 -38.212617 39.320476 -33.877152 -2.099657 -1.861954 -16.357818 47.886007 -17.398157 -16.207418 -37.832516 15.370901 3.462679 -42.489485 56.106928 28.159572 -32.402689 -21.838593 -33.522997 8.950132 27.068359 57.986545 -20.943634 -6.568294 14.551348 -5.910399 -9.354491 -22.016657 31.354978 -16.650645 34.373782 -35.483862 -26.783890 11.995171 39.679747 -5.272282 18.005721 2.293520 13.977399 -2.492131 41.354783 13.852375 -6.972400 -27.267979 -60.661274 13.322215 13.329611 5.546653 8.092961 -24.326190 -32.488852 -1.235117 12.860701 44.207443 33.997026 6.292796 28.503960 -32.132712 -37.324862 -0.392363 11.435949 5.678426 -30.906961 15.334535 -21.002152 -1.544296 8.795769 10.558930 12.502037 -23.164749 -43.874888 -11.556242 27.703734 17.443393 -16.594465 39.573544 9.127295 -21.558446 1.428758 0.127919 20.519283 6.272403 -8.438206 -16.383213 -25.702211 3.570741 -14.872735 44.547803 -1.039972 6.102766 19.106903 -20.196003 3.389722 -17.779696 36.617191 -3.228748 -22.967895 4.642709 14.042571 -10.763602 -51.531993 -30.879509 21.280453 8.956776 -7.181630 9.115126 14.368274 -9.843717 7.133067 -57.475161 21.114710 21.034048 7.779343 -10.069181 -15.158627 3.847513 -13.418287 2.085338 11.740343 0.491412 33.195839 -14.785545 12.286936 25.492205 -4.222431 10.804151 25.578133 -7.185797 6.724190 1.312993 7.536041 40.013574 25.882964 -8.084711 9.979791 9.119378 32.449116 -1.435678 24.190469 -27.053404 -21.065605 12.843826 19.860490 -19.910376 -6.420209 -17.962363 14.398074 38.748953 19.802291 -14.118514 16.427045 -21.114250 -2.608462 13.472769 6.547803 40.568988 21.587977 26.042484 23.919251 44.285081 -16.135138 -0.008247 13.696038 13.023950 -13.667562 27.503555 -13.595656 -36.430700 -17.032843 -2.711969 -54.740606 -16.829547 7.051681 57.089728 -34.021858 0.350998 10.253048 19.306156 35.109439 -26.107604 -0.356325 -18.926631 -1.023227 -25.047121 65.746723 4.817364 11.527117 -8.081104 19.288106 15.790094 20.929467 -6.975913 -21.969073 -17.942523 -55.282370 -18.680509 -12.608806 3.983681 13.213950 -47.411459 -12.762313 12.482709 32.770597 -52.935769 3.384077 25.534741 18.251782 32.022344 -2.341788 -31.949803 12.236753 -2.193238 0.141009 19.936242 -12.398333 -0.610841 -7.844744 10.644743 2.794832 5.643944 2.333156 -52.498765 -11.199425 0.934205 -16.490818 3.931854 10.414387 15.560624 -24.116786 18.120522 -25.492217 26.826901 -53.643224 2.007801 -14.398858 -38.137021 -4.398149 9.254675 30.209566 14.393581 -17.101606 -14.929452 -9.157953 -48.084774 -53.368956 6.754332 2.747504 8.983455 -1.366118 -3.870054 5.518514 -15.120669 5.328133 23.746917 -16.719589 -3.075031 -7.199246 59.777140 2.973627 -9.363152 -19.365530 -14.957526 -3.018919 9.759801 26.773382 -6.976563 -39.207860 -54.477775 -22.765821 28.295825 -5.946213 -2.549225 -23.074192 -7.108833 -35.880615 9.253923 -26.014735 11.989390 -0.407751 -13.005667 -33.286154 -0.766754 0.155684 -14.939765 -8.703903 -24.079936 -7.554028 28.672436 -2.862169 9.645343 2.425539 6.630018 -30.880555 -28.493965 12.458662 -11.591088 29.432183 26.754477 2.005132 -20.000491 -4.115986 -39.333473 25.671309 -13.990445 6.649138 -8.979961 -9.322257 41.022565 -22.671577 -13.091906 -28.448632 8.587623 0.567778 -33.641163 52.782366 28.577141 -14.452492 -1.588555 1.304797 6.519337 20.733404 27.573952 -25.214372 -20.590303 3.770500 -10.319720 -3.049828 -1.877570 21.296075 -28.481911 13.315036 -18.119233 -8.639699 16.465598 24.398970 -0.405293 13.898549 -3.537727 -14.538067 6.032156 22.008952 22.399175 -10.278273 -26.641677 -53.879618 17.820615 -36.008128 -12.000992 -9.993801 -6.827009 -24.979114 7.472042 2.187396 33.753764 14.072624 -21.703499 23.918348 -44.440757 -36.321007 -20.503141 6.913545 1.047658 -11.374304 3.715179 -12.791890 11.374351 14.344566 3.224974 1.528384 -28.896610 -10.208668 -1.371656 29.980936 4.988616 -12.011051 36.501943 9.061851 -11.754536 -11.032841 1.740586 -3.335307 -1.549851 -22.277595 -13.667588 -10.877840 13.388688 -15.465672 22.362175 -2.871223 0.861384 19.835148 -48.571384 1.568607 -17.982141 64.840584 16.049445 -36.015176 8.787863 26.059287 -11.371854 -114.665606 -66.441657 61.668790 2.701205 -9.166637 14.355396 26.442076 3.116958 18.115174 -97.290534 39.761229 34.953333 19.665941 -11.828995 -17.150189 15.816846 -26.259819 0.830231 17.075708 11.596275 62.447054 -41.790503 19.831998 54.346301 -2.531041 21.835196 51.821070 6.554831 2.266368 3.817806 -6.788650 94.157382 31.957630 4.737175 45.839090 28.516869 66.230699 -12.759049 88.720872 0.506589 -42.686428 33.553078 -6.150733 -42.788469 -0.243485 -50.098850 46.163888 54.497267 27.890207 -39.138308 28.039491 -14.648589 1.411625 20.543222 -15.548292 69.995610 52.006882 34.664183 42.606565 96.389246 -33.295029 -10.763648 40.638118 47.313719 11.577816 45.295977 -37.023649 -46.125626 -28.678833 -9.519126 -85.449520 -22.428678 -13.924796 127.787157 -69.240292 3.197895 26.206490 15.958927 65.521921 -33.905281 2.177835 -54.107600 10.634842 -24.355414 97.086606 3.370466 18.297879 -23.935254 20.894809 18.805036 47.669728 -14.710736 -40.520706 -55.587493 -112.377155 -39.698791 -25.805747 8.950017 16.871467 -102.244963 -14.095744 9.896729 85.835033 -103.080584 -7.991407 45.595929 27.319104 44.299345 36.316873 -60.450649 -1.587870 6.751561 2.847888 17.438074 -20.869457 -9.045697 -37.733017 7.014625 -2.773353 20.088115 -4.729625 -89.366484 -31.376987 -6.115669 -13.072192 2.975946 9.083950 27.241887 -52.050481 40.092736 -32.337170 38.953980 -94.596000 -23.177793 -30.094897 -72.013262 -14.039561 82.341651 56.715157 62.640426 -9.394617 -25.343079 -45.422673 -87.637882 -95.248662 13.884427 -20.624230 30.264958 15.099652 -2.901723 12.345148 -27.687638 -10.546516 27.135656 -36.602530 -8.165368 -27.292658 83.187768 -18.356471 -6.342456 -62.097043 -22.873780 17.636207 -6.508565 32.698614 -20.104031 -89.464470 -92.845430 -56.435178 51.482600 -19.372556 15.090690 -36.930258 0.900695 -57.480862 8.690250 -50.149300 7.378583 -6.745266 -47.172590 -68.901554 5.884249 -11.335976 -28.850525 -6.383271 -49.014612 -1.689517 48.236924 25.798975 22.923985 10.003039 -8.700631 -80.955216 -68.069499 3.937383 -20.360890 61.154205 52.973203 1.399241 -53.559335 -24.506481 -79.807696 60.235351 -69.993458 9.512016 -3.654838 -9.360701 76.561289 -42.490182 -13.477023 -62.007714 25.740254 9.581693 -118.920606 84.596520 51.436311 -42.289155 -15.317888 -23.780820 16.722063 47.838731 69.974310 -43.139098 -29.825187 18.658522 -15.944221 -7.696288 -21.971310 48.995432 -42.721780 42.508692 -52.137013 -31.464644 29.441286 51.456120 -8.663003 15.635707 10.094724 -0.622927 28.631662 58.085988 40.380485 -13.516505 -54.682240 -137.111854 29.059987 -2.523663 -12.366455 11.821908 -39.840475 -44.684367 15.158945 -22.451370 75.135640 -3.235224 -0.749291 52.318767 -80.290036 -68.265578 -10.158361 2.746964 5.734120 -21.943390 29.208339 -28.713967 5.221128 18.510764 7.605905 -2.608370 -51.658968 -35.039619 0.021074 61.061394 20.097775 -3.106130 67.721244 19.103268 -32.069112 -3.737316 3.463198 17.952200 -12.436388 -63.328408 -24.706360 -23.737295 9.254341 -32.795152 56.176237 -8.290491 3.895531 23.413167 -3.250209 0.361157 -0.727873 5.932689 0.443170 -0.952090 0.353894 2.583862 -1.350930 -11.215262 -7.576207 4.313154 0.273661 1.434596 2.728692 1.575689 0.962987 0.614830 -11.733070 2.286712 4.206264 1.407087 0.918125 -0.071552 1.674148 -3.014931 0.525774 1.162606 1.725868 6.352140 -3.685290 3.321916 5.264337 0.049120 3.090935 4.301719 -1.444118 -0.162422 -1.028807 -1.436592 8.674226 3.313630 0.286029 3.788302 1.214106 6.349917 -1.205203 5.061897 1.717408 -4.823332 3.143183 -1.526196 -3.542330 0.406664 -4.180193 3.123672 3.902618 2.592143 -3.088150 2.235259 -1.851313 0.011926 1.060406 -2.576230 6.353283 2.837893 4.185777 3.990360 5.865626 -3.782642 -0.709798 3.193491 1.807187 1.124931 1.939058 -3.051039 -3.431036 -3.931413 -0.823054 -8.806606 -3.639951 -1.220012 9.816683 -5.805125 0.382717 1.693024 -0.877245 5.656393 -2.292927 0.670278 -5.276931 -0.232470 -0.836771 5.075612 0.781664 0.035416 0.083771 1.733608 1.814116 4.343208 -0.600587 -3.847824 -4.576892 -9.252809 -2.295873 -2.040162 3.561761 3.192242 -7.272737 -0.401634 0.064578 7.288418 -8.270578 -0.540382 3.638196 3.564146 1.187069 1.918482 -4.706117 -1.036399 1.382133 1.353988 4.105948 -3.078298 0.876670 -3.159564 0.412867 -0.182798 2.916175 0.172271 -5.311910 -4.901453 -0.059540 -0.680136 -0.364870 1.229797 3.466903 -1.865658 4.468769 -2.482889 4.635183 -7.135874 -0.619829 -3.043044 -4.148108 -1.823256 7.929671 6.361065 4.286877 -0.341477 -2.687780 -2.007315 -7.033305 -6.828251 1.402036 0.508064 3.400774 2.350672 -0.655269 3.473041 -3.091693 0.649818 0.721399 -2.669132 -1.048223 -1.229304 3.081481 -0.488789 -1.084050 -5.165889 -0.694136 0.049059 -2.764046 4.104951 -1.479754 -6.369348 -8.461596 -4.928933 5.210628 -2.359597 1.222714 -2.798934 0.462622 -3.885915 0.243503 -5.563066 -0.073444 -0.089568 -5.183187 -6.403546 0.516190 -1.236422 -2.014078 0.993368 -4.128338 -0.919150 5.327532 3.292637 2.710689 1.022619 -0.203846 -5.537102 -4.839948 0.074655 -4.045351 4.750508 3.676864 -1.820337 -5.746550 -2.662649 -5.527939 5.533724 -3.258465 1.483438 -2.286045 -1.699117 5.211406 -3.414014 -0.570964 -4.915222 1.806262 2.698753 -12.370872 5.409669 3.984150 -2.712263 -0.952670 -1.849974 1.484653 3.790771 5.053736 -2.806549 -2.556700 0.397777 -1.737103 0.336185 -2.277385 4.273867 -3.480893 0.852370 -4.404810 -2.852654 3.904932 2.985495 0.462548 2.488491 3.390222 1.676090 3.926308 4.906198 4.174610 -1.921046 -4.643774 -11.714039 3.864511 4.177752 -0.755837 0.396642 -3.687123 -4.409142 0.825803 -2.017941 5.604328 1.506953 -0.259977 5.185500 -5.444880 -5.502638 -2.969596 -0.170885 -0.077641 -1.226134 0.856104 -1.895411 1.894967 2.249549 -0.371656 0.704397 -3.935137 -3.559758 0.219676 5.235539 2.265854 2.282032 6.018771 2.518740 -4.046331 -0.612269 0.960119 -0.333087 -1.290642 -5.986457 -2.817762 -0.988120 0.697834 -2.851336 1.513320 -0.687773 -0.370914 1.304036 -1.023073 0.016665 0.290423 1.716307 -0.083623 -0.301329 0.453272 1.078217 -0.623990 -4.542003 -2.878673 0.803860 -0.032380 0.490314 1.494199 0.825918 0.213599 0.285625 -4.492045 0.625808 2.068050 0.722771 0.888948 0.101657 0.699278 -1.323028 -1.025537 0.758493 0.589396 2.766141 -1.558567 1.283929 2.194035 0.126439 0.560014 1.811809 -0.302306 -0.340273 0.124184 0.146711 3.511956 0.346513 0.043877 0.986462 0.384315 2.653502 -0.863303 2.373898 0.800724 -2.000640 2.031617 -1.633015 -1.637818 0.309801 -1.438982 1.172572 1.921074 1.955386 -1.099556 1.147815 -1.010100 0.135717 0.348862 -1.290571 2.698661 1.885955 1.532664 1.589110 2.393208 -1.574546 -0.204961 0.878936 0.223594 -0.167219 0.068344 -1.362857 0.251264 -3.920380 0.110110 -3.824577 -1.588079 -0.311209 4.052387 -2.442641 0.120974 1.454074 -0.302859 2.437972 -0.824275 0.584929 -2.242034 0.136981 0.533019 1.974570 -0.086024 -0.394375 -0.207241 0.599792 0.821882 1.667405 0.133407 -1.012288 -3.557802 -3.777948 -1.751192 -0.570124 1.217546 1.150059 -3.420502 -0.089149 2.005642 1.414616 -3.610237 -0.192937 1.849644 2.162383 -0.517466 1.926956 -2.575730 -0.633896 0.488012 0.951339 1.414529 -0.813301 0.612308 -2.438954 0.175308 0.137905 1.191259 -0.432954 -2.388744 -2.062733 -0.062561 -0.699349 -0.092195 0.540333 1.361788 -0.195042 1.819357 -1.332640 1.962317 -3.269404 0.086880 -1.392317 -0.993667 -0.629096 3.696391 2.967335 0.969545 0.410879 -1.959901 -0.791402 -2.672156 -2.440671 0.036174 0.024272 1.958488 0.867730 -0.502835 1.209686 -0.745834 0.313925 -0.161193 -1.258402 -0.400378 -0.953346 0.694922 -0.276336 -0.771975 -2.689514 0.029716 0.735338 -2.047519 1.269074 -0.571524 -1.034446 -3.344123 -2.437602 2.140224 -0.886188 0.773141 -1.231229 0.486588 -2.202268 0.475114 -1.965792 -0.252361 0.383514 -2.739978 -2.791330 0.528968 -0.377590 -1.674153 0.459507 -1.785426 -0.585638 1.311854 1.127552 1.410161 0.227209 -0.321402 -2.393176 -2.667889 -0.644142 -1.630223 1.451373 1.881173 -0.373077 -2.524475 -1.079161 -2.145229 2.558628 -1.808000 0.625686 -0.793463 -0.739675 2.210739 -1.435848 -0.533447 -1.984366 0.805610 1.019245 -5.437783 2.769197 1.530422 -1.187833 -0.641993 -1.450092 0.692167 1.725298 2.236358 -1.072507 -0.568176 0.073197 -0.406535 0.096527 -0.771865 1.952045 -1.540482 0.436733 -1.852504 -1.274603 1.504937 1.895786 0.124615 1.617558 1.705674 1.315556 1.341247 1.762956 1.225601 -1.375126 -0.721030 -4.214943 1.572901 2.579726 -0.165660 0.850176 -2.203505 -1.519481 0.212941 -0.207496 2.445432 0.877280 0.597712 2.112616 -1.704362 -2.271134 -0.979880 0.083042 -0.127369 -0.828966 0.322924 -0.220994 0.489163 1.448712 -0.127889 0.778111 -1.853615 -2.536560 -0.239053 2.613531 0.849179 0.695006 2.487034 0.753166 -1.537672 -0.272419 0.128308 0.417310 -0.028299 -1.220736 -0.863998 -0.306667 0.242827 -1.315642 0.947094 -0.541793 -0.678209 0.506924 -0.188418 0.298309 0.331087 -0.422267 -0.107529 0.354544 -0.225781 0.424284 -0.929350 -1.551708 -1.470689 -1.245454 -0.121778 -0.041890 1.133691 0.301089 0.725616 0.548014 -1.877403 0.097065 0.786910 -0.192616 0.167372 0.824241 0.521039 -0.600274 -2.158174 0.080561 -0.165317 1.096876 0.041777 0.150409 0.853851 -0.591882 0.524623 1.047792 0.449954 0.233186 1.018531 0.539306 1.566687 -0.358771 0.285299 -0.537090 0.248343 1.085261 -1.005603 0.685087 -0.444145 -0.009159 0.984045 -2.145294 -0.246341 1.032838 -1.359335 -0.161707 0.714859 0.534208 -0.940410 0.815178 -0.490223 0.350175 -0.099705 -0.888293 1.193383 -0.039601 0.132713 0.293932 0.915126 -0.096268 0.082015 0.543716 -0.445844 -0.673472 -1.241521 0.001124 1.745300 -2.838504 0.159690 -1.819405 -0.013899 -0.367732 1.781655 -0.633967 -0.141622 1.404239 -1.210895 0.953706 -0.350203 0.274471 -0.501483 -0.145107 0.245109 -0.241648 0.468007 0.157915 0.470245 -0.296854 0.230564 0.354080 -1.133115 -0.300466 -2.354674 -2.045930 -0.963909 -0.038012 0.242662 0.083544 -1.021194 -0.795064 2.192928 0.589191 -0.708182 0.702591 0.379837 1.459990 -2.078367 0.840120 -2.250826 -0.470483 0.171218 0.941863 1.106760 0.069197 -0.045037 -1.492681 0.427323 0.209175 0.334690 -0.939133 0.204821 -1.195906 0.334554 -0.387171 -0.693716 0.077051 0.110686 0.277374 0.631696 -0.328082 0.801916 -1.164321 0.031587 -0.489881 -0.550399 0.032476 2.223849 1.209295 -0.535622 0.430761 -0.879446 0.316694 -0.703050 -0.873938 0.371510 0.317420 1.189059 -0.111913 -0.355508 0.812779 -0.157560 0.185540 -0.557575 -0.589969 -0.116643 0.199879 0.419556 0.155029 -0.663330 -1.352479 -0.339980 0.743434 -1.493252 -0.386888 -0.530555 1.444992 -0.117159 -0.764470 0.943355 -0.262307 0.588249 0.238363 0.580653 -1.428086 0.478065 -0.728453 -0.534140 0.108235 -1.343019 -0.660326 -0.680734 -0.039252 -0.590187 0.152589 -0.815552 -0.041154 0.466724 0.267792 0.275299 -0.387775 -0.608756 -0.560225 -1.160758 -0.791285 -0.494347 0.367669 0.811148 -0.161635 -0.883789 0.141712 0.099896 0.936120 0.069490 0.207440 -0.517406 -0.947211 0.780763 -0.314908 -0.583269 0.000000 0.363169 0.228408 -2.523058 0.703518 0.980328 -0.316822 -0.968560 -0.743146 -0.377207 0.398673 1.091293 0.022045 0.574282 0.083235 -0.223888 0.167212 -0.181326 1.064235 -0.487607 0.392596 -1.391087 -0.143812 1.150784 0.758831 0.031561 0.968882 1.053884 1.623253 0.887436 1.183127 -0.016479 -1.491052 0.157373 -1.539656 0.385734 2.068779 -0.276617 0.474159 0.183803 -0.286414 -0.740913 -0.007270 1.053017 1.552201 0.866735 0.623960 0.831591 -0.879923 -0.498243 0.827798 0.042437 -0.413901 0.011350 -0.484023 -0.294189 -0.416457 0.109203 1.142597 -0.738448 -2.069493 -0.515847 0.757522 0.902775 0.145457 0.808957 0.251177 -0.566063 0.109251 -0.032834 1.104031 0.910450 0.189314 -0.933309 -0.483008 0.592599 -0.387807 0.671796 -0.103925 0.339062 0.775875 -5.287868 1.051363 -1.632425 9.872482 0.506367 -3.370007 1.351442 3.822483 -2.906019 -17.474493 -11.495829 4.338816 1.215352 0.835135 3.551656 3.178250 -0.274036 2.148971 -18.342038 4.264559 7.326019 3.095578 1.427628 -2.244940 2.324672 -4.401095 -0.127571 2.236680 1.983856 10.412972 -5.405475 4.302667 8.563379 -0.024669 3.635265 7.712178 -1.611879 1.119209 -0.308547 -0.359029 13.103630 5.728489 0.077772 4.564641 1.925651 10.093596 -0.612487 7.890257 -2.060464 -7.462272 4.964337 -1.871918 -5.864305 -0.331786 -5.854723 4.982111 9.334873 6.489048 -4.445323 4.377774 -3.707731 -0.003543 2.533322 -2.800353 10.160772 5.663691 6.156608 6.090259 11.188203 -5.969231 -0.904848 4.720437 2.869696 -0.996141 4.569002 -6.422358 -7.120943 -6.388526 -1.399595 -15.925124 -5.066293 0.118141 16.800725 -9.707734 0.828275 3.602353 0.590825 9.151887 -4.501632 0.117415 -7.319404 0.268728 -4.108993 12.795238 1.165518 0.855658 -0.674835 3.633601 4.159313 6.706824 -1.468975 -5.738345 -7.452299 -15.994877 -4.095875 -3.479886 4.496398 4.865633 -12.533512 -2.566348 0.797589 10.028350 -14.849969 -0.101895 7.127029 6.748787 3.377109 0.964545 -8.300308 0.174156 0.942413 1.417497 6.510151 -5.275358 0.460315 -4.483559 0.973913 -0.065642 3.297724 -0.410343 -10.500771 -6.610367 -1.188921 -3.009346 0.246994 2.188650 5.006550 -4.147497 6.616575 -5.881482 7.573372 -13.439349 0.036028 -4.252012 -9.585624 -2.469440 9.655385 8.778438 5.301384 -2.623947 -4.640897 -3.531257 -11.888140 -12.207111 2.089921 0.854349 5.583693 2.674460 -1.145532 3.893600 -4.929002 0.878565 2.926392 -3.950078 -1.203883 -1.952746 10.284403 -0.723566 -2.406927 -7.965632 -1.962605 0.399051 -2.403714 6.715922 -2.589135 -9.470778 -14.425383 -8.110837 8.559025 -3.220648 1.083110 -5.794284 0.298354 -8.325801 1.732418 -8.791760 1.187161 0.584686 -7.144518 -10.423864 0.543610 -1.584747 -3.290610 0.776072 -6.544847 -2.078256 8.958944 3.760401 3.999145 1.153566 0.737388 -9.553088 -8.239363 0.727084 -5.314266 7.288720 6.267663 -1.160266 -8.253499 -3.224515 -9.466982 8.095459 -2.933996 1.672574 -4.071070 -1.431976 10.063579 -5.689790 -0.061534 -8.597797 2.288566 3.131035 -17.515089 11.036991 6.977101 -4.043090 -1.496542 -2.055076 1.836297 6.027142 8.038402 -5.326766 -5.263954 1.157321 -3.971764 -0.012010 -3.398375 6.509532 -6.904119 2.546433 -6.446379 -3.808166 5.288624 5.962488 -0.016661 4.460816 3.889428 0.748936 4.737236 7.601514 6.194892 -3.537161 -7.556043 -18.748410 5.929730 1.793003 -1.290337 -0.946104 -3.824037 -7.004141 2.448534 -0.622549 9.669204 6.005159 -2.318617 8.151328 -9.822140 -9.524532 -4.575310 0.890470 0.842836 -3.144522 -0.379410 -3.618444 3.320239 4.077293 -0.424276 2.061117 -7.682965 -5.397774 -0.228016 9.957289 2.514318 1.291980 10.408409 3.044474 -4.997977 -1.285511 1.413290 0.483390 -1.261634 -7.215903 -4.324282 -2.098958 1.985456 -4.397445 4.525103 -1.876235 -0.980359 4.164581 -20.763143 -3.304579 5.363251 21.840023 12.265689 -21.764074 7.634885 17.504801 -6.331477 -43.273998 -25.527378 6.033809 -2.038490 -13.356394 11.979871 4.654536 2.519329 10.952948 -43.046569 19.746550 13.416418 11.222739 -4.210104 -16.347749 6.513885 -9.484895 -12.980480 13.906590 1.007430 24.788431 -20.255903 -0.057865 17.969921 4.726998 12.457277 22.444890 10.453940 -2.626818 10.480294 4.938383 44.956743 12.952244 -1.739519 17.254442 22.656729 26.534579 -7.530504 30.032713 -7.210741 -12.098220 16.029544 -18.117805 -16.480316 0.083595 -24.527793 20.412754 34.925714 18.735400 -18.649828 17.793067 -11.301212 1.602745 8.176340 -10.163587 29.986992 22.642319 8.431084 13.494286 46.535170 -13.027993 -7.289047 15.256992 28.512010 0.956882 8.960045 -14.702887 -11.060663 -48.406651 -2.745697 -40.847628 -2.639922 -5.515271 46.272833 -25.660766 9.390869 27.410237 5.290197 21.578715 -16.800796 -6.240248 -21.900298 7.615178 -9.463791 44.091563 -2.874210 7.536025 -5.647817 10.788183 12.694264 23.873082 -4.558087 -13.227358 -32.699094 -61.439636 -21.992287 -5.026079 -4.034956 -7.642376 -39.185063 -7.087288 26.355313 26.129394 -38.954699 -4.167791 19.877163 13.307145 -0.559928 -0.270920 -26.201256 -2.200055 -4.197140 4.715539 4.333764 -12.940720 -6.837653 -24.227550 3.081257 2.537692 11.390241 -9.192522 -25.254921 -9.904857 -4.318480 -4.196693 -4.302609 -4.551048 0.303453 -25.119996 14.570011 -19.692395 19.979153 -38.419680 -1.368745 -17.818284 -26.511256 0.196442 40.224786 13.275498 16.425916 6.657092 -15.123348 -15.686970 -28.986452 -42.362207 10.727556 -9.485470 19.850600 -2.785215 -0.660817 -4.317762 -5.672206 -15.250006 7.733908 -18.844227 -1.113623 -15.397498 33.489288 -10.794398 -6.553673 -30.947302 0.025389 29.641891 -3.516679 2.185141 -13.927856 -18.109061 -27.324644 -27.839498 20.069146 -4.371513 4.952214 -10.517614 5.591674 -29.163537 15.466132 -18.841403 10.109306 -5.707559 -23.348449 -27.652789 -1.239538 -6.339479 -6.310326 -3.620899 -17.802162 1.354729 8.056952 12.031789 4.891373 4.813768 1.643584 -39.099879 -38.867118 -9.864658 4.118672 24.858124 16.717986 8.143960 -18.951430 -6.674102 -28.772431 28.612771 -26.560939 -1.276224 -0.799733 -12.379462 35.608284 -13.786863 -11.425955 -29.268222 11.365693 2.680042 -32.760053 42.170774 21.281381 -24.105132 -15.712919 -23.621552 6.118975 20.196660 42.586556 -16.029826 -5.385775 11.041088 -4.989813 -6.716925 -16.555080 23.080063 -12.895086 25.592083 -26.507596 -19.725250 8.962452 29.879326 -4.395981 12.906505 2.523490 9.958939 -1.058214 30.608740 11.323996 -5.091948 -21.295989 -46.463103 11.277592 9.099262 3.337745 6.175977 -18.784274 -23.492043 0.586947 9.593978 32.964577 24.504480 5.548354 21.757857 -25.092143 -28.393080 -0.011280 7.273208 4.585982 -22.203823 11.668254 -15.954801 -0.827506 5.832581 7.460752 7.905211 -17.342644 -31.537649 -7.299373 21.486737 13.324703 -11.310815 30.114069 6.732020 -16.031230 1.094834 -0.092490 14.779279 3.700515 -6.731942 -11.885596 -18.443830 2.702554 -11.431711 33.111225 -1.688821 4.132566 14.361179 -2.030933 -0.960524 -0.181948 2.957188 0.752300 -0.319412 0.363244 1.169768 0.297067 -5.505579 -3.292716 2.789316 0.054800 0.689250 0.894158 0.842247 0.743580 0.541079 -4.803317 1.068227 1.405533 0.634649 0.452394 -0.262964 0.666817 -1.528243 1.200157 0.745486 1.075130 3.036195 -1.824121 0.995545 2.639684 -0.041110 1.182621 2.379390 0.644043 -0.207651 -1.340371 -1.107954 4.471906 1.583016 0.055636 2.374709 0.595811 3.195026 0.184757 3.931521 2.321813 -2.180336 1.620905 -1.524474 -2.103862 -0.239918 -2.610365 1.969424 1.906058 1.234971 -1.731777 1.165092 -0.415999 0.106039 0.593436 -1.238713 2.684284 1.316064 1.970935 1.850728 3.359762 -2.486095 -0.802105 2.183959 1.851590 1.577222 1.990642 -2.307090 -1.995360 -2.283097 -0.259238 -3.199587 -1.452321 -1.077612 4.793229 -3.066374 0.124385 1.422143 -0.740102 2.616804 -1.068791 0.465858 -2.928015 0.253208 0.287687 2.981850 0.447096 -0.044578 -0.154220 0.717412 0.742717 2.384853 0.626966 -2.128732 -2.298134 -4.834113 -1.234252 -1.407572 1.400730 1.188655 -3.488079 -0.102307 0.102213 3.513679 -3.967592 -0.334065 2.112924 1.570389 1.905451 0.692742 -1.403663 -0.387893 1.099399 0.479974 1.722089 -2.021126 0.055630 -0.964616 0.679305 -0.039128 1.271680 -0.168684 -2.298439 -2.311369 -0.099056 0.795648 -0.005874 0.029286 1.421250 -1.984847 2.153945 -0.978036 2.159242 -3.389678 -0.808883 -1.191164 -1.812893 -1.094163 5.822893 2.063786 3.374245 0.084742 -1.482346 -1.520973 -2.992302 -4.084363 0.772835 0.078359 1.373448 1.486702 -0.211994 1.651859 -1.352120 -0.063323 0.033286 -1.457739 -0.566862 -0.057940 0.362640 -0.874172 -0.273695 -2.959207 -0.102419 0.737179 -0.719890 1.892417 -0.807859 -4.837103 -3.447749 -2.659430 2.563658 -1.319373 0.822002 -0.979543 -0.197995 -1.811097 0.121340 -2.593542 0.329175 0.027181 -3.307820 -3.367169 0.564173 -0.918594 -0.424811 1.082805 -2.358564 -0.094884 1.221405 2.117024 1.065884 0.669838 -0.148247 -4.036724 -2.906441 -0.465747 -1.768654 3.505553 1.081162 -0.619494 -2.497911 -1.563605 -2.664349 2.586102 -3.304257 0.630035 -0.926610 -0.796246 2.516350 -1.663381 -0.026530 -3.047118 1.369176 1.656128 -5.436248 3.281425 2.669765 -1.501567 -0.743478 -0.700022 0.428607 2.008187 3.157714 -1.896995 -1.690117 0.747922 -0.635585 -0.017374 -1.226575 2.106613 -1.380321 0.650321 -2.543805 -1.778042 1.175606 1.840988 0.060072 0.776830 2.013365 0.973214 1.000996 3.021308 1.841432 -0.345492 -2.752807 -6.724349 2.095080 2.887369 -0.500041 1.174444 -2.738788 -1.810733 0.925646 -0.969021 2.856947 0.757681 0.684489 2.762661 -2.990084 -2.762411 -0.751754 -0.793176 0.286211 -0.586587 1.346722 -1.374228 0.593071 0.285062 -0.436217 -0.586010 -1.108026 -1.030756 0.327674 2.497581 1.442548 1.228246 3.038648 1.119920 -2.134952 0.043961 0.213796 -0.062830 -0.467474 -2.731676 -0.913532 -0.375757 0.360269 -1.309454 1.066840 -0.343909 -0.328620 0.202300 -4.350769 2.032553 -4.542684 16.160675 -1.646612 -2.281921 0.300143 3.269388 -3.659342 -24.822364 -13.605853 9.898819 2.114345 5.181488 4.115473 3.509929 -1.403679 1.426358 -26.014696 4.439192 11.122391 4.896168 3.086563 -0.388316 3.328989 -5.117239 5.708068 2.189629 4.458833 14.411287 -6.854948 8.154060 12.868379 -2.271266 3.942323 8.994072 -2.350861 3.049757 -5.719471 -1.702241 16.448737 6.836025 -0.466596 6.894255 -0.987132 14.130234 1.290442 8.175513 1.012198 -12.494610 3.966948 4.701177 -5.850988 -3.115569 -5.610024 5.677614 9.343183 9.442623 -6.083201 3.553497 -2.481382 -1.718313 3.565016 -0.603199 12.863728 6.533748 10.409155 10.629537 12.285039 -8.598916 -0.441300 5.102472 -0.434419 -0.411153 8.747708 -7.571715 -12.372464 -3.777528 -2.950894 -19.367984 -11.693553 0.983960 17.728803 -13.865960 0.782438 0.070132 0.261990 13.661485 -4.987842 2.588275 -10.550148 -2.823836 -3.709875 15.140840 2.208773 -1.228145 0.042486 4.835428 4.955627 8.281968 0.174351 -9.634249 -4.401299 -15.450830 -4.258006 -5.759444 8.342155 11.791913 -16.763002 -3.394315 -5.022928 13.856466 -20.830305 -0.538411 8.289658 10.029058 9.315196 0.461962 -9.253628 1.251764 3.467306 -0.580925 11.287246 -6.769774 2.836085 -2.417473 0.926002 0.042624 3.225312 2.508463 -14.286481 -11.305984 -0.750106 -3.386516 1.385318 4.860571 9.698862 -3.913165 9.654220 -6.990593 10.669041 -16.226451 -1.306573 -2.655272 -10.228083 -5.189313 8.957296 11.765262 6.615575 -7.095411 -8.916621 -3.367454 -16.454848 -15.522412 1.956539 3.899511 4.248697 7.714051 -2.949138 9.323078 -8.278108 4.390224 5.481727 -3.224841 -3.168892 -0.771352 7.237111 1.119727 -1.570901 -7.889762 -3.533414 -6.511716 -2.087075 14.323673 -2.060540 -15.253558 -22.987946 -8.975493 12.435846 -5.012975 0.243701 -8.906263 -2.306774 -10.936485 0.447091 -13.465569 -0.298781 0.478679 -8.199799 -14.459200 2.652534 -2.378033 -4.587256 2.212250 -9.897383 -3.815732 11.287479 3.663383 6.463885 -0.137042 0.633764 -11.401690 -7.615975 4.340149 -10.905777 9.737053 5.513905 -3.275039 -11.854834 -5.426335 -11.653529 10.357926 -2.790028 4.503544 -4.962923 -0.736077 12.402682 -7.881422 -0.277411 -9.872432 2.868777 6.652447 -21.655083 13.742272 8.122634 -2.718973 1.230389 3.571835 2.187687 8.131457 5.469282 -8.834716 -10.508297 0.519864 -3.930154 1.505152 -4.210976 7.099596 -10.214415 -0.027004 -7.043262 -3.706343 7.635315 4.945208 0.868115 4.197352 7.032931 -3.650664 6.330827 8.840016 10.784417 -2.946339 -8.363921 -21.317845 9.754971 -1.402256 -2.494309 -3.451060 -5.996244 -7.609497 5.185016 -2.817879 11.847079 2.607299 -5.507294 11.241899 -16.633530 -12.569328 -9.145339 -1.431460 -0.041490 0.480000 -0.991829 -3.022973 6.422670 6.744145 -3.016926 -0.531058 -9.549768 -1.004345 1.517519 11.735713 0.847934 4.714876 13.618954 4.897219 -7.507151 -2.108170 3.045420 -3.578586 -5.229507 -13.269153 -4.943731 0.693197 3.524115 -6.607595 1.017934 -4.836640 -3.556239 3.103175 -2.674684 0.770034 -1.868616 5.794348 -0.667297 -1.148384 0.470742 1.552301 -2.025675 -10.549367 -5.957599 4.390494 0.775358 1.608281 1.954920 2.403854 -0.448083 0.833661 -9.315705 1.940630 4.277799 1.279535 1.000509 -0.141538 1.340229 -2.588310 0.390394 0.705762 1.646963 6.186648 -3.096328 3.230582 5.363939 -0.469722 1.484151 3.966940 -0.801629 0.879365 -1.332499 -0.810886 7.079953 2.236082 0.375624 2.479676 -0.152043 5.883531 -1.164092 5.593538 0.015553 -4.956205 3.670363 -0.777990 -3.112229 0.158618 -2.800799 2.582001 3.278497 3.351956 -2.293523 1.966473 -2.184894 0.230312 1.215491 -1.127392 5.794631 3.604321 3.782871 4.125291 5.313595 -3.705218 -0.348084 2.716298 -0.007639 -0.436117 2.987968 -2.876580 -3.524600 -2.203717 -0.623351 -7.287973 -4.316109 0.099298 9.862226 -6.006133 -0.307967 1.375063 0.574684 5.831222 -2.188866 1.693187 -4.513089 -0.376618 -1.116707 6.288730 1.051053 0.135239 -1.038697 1.485806 2.017655 3.605978 -0.675754 -3.306739 -4.566698 -6.696609 -2.574606 -2.167142 3.219852 4.212826 -7.849523 -1.271187 0.786476 6.488302 -8.711311 0.123896 3.879932 4.227450 3.874800 3.534435 -4.824086 0.283376 1.447068 0.406214 4.085546 -2.356964 0.912465 -2.462231 0.588434 -0.424123 1.850799 0.153995 -7.753022 -4.253989 0.080846 -2.185560 0.610900 1.936521 3.829344 -1.570881 4.003430 -2.610670 3.991571 -7.397977 -0.811667 -1.947722 -5.348062 -1.864473 6.643221 6.298033 3.804767 -1.683795 -3.479494 -2.259759 -7.066959 -6.769692 0.349231 0.689209 2.801274 2.598070 -0.859471 3.301103 -3.058398 1.746889 1.370552 -2.160166 -1.100260 -0.760239 4.196829 -0.218047 -1.232747 -4.549719 -1.550119 -1.740952 -1.991112 4.937212 -0.786758 -6.168826 -9.191345 -4.576003 5.122517 -2.116264 0.836152 -3.442432 -0.262621 -4.632232 -0.114219 -5.106591 0.470774 0.800313 -4.077263 -6.236058 1.235959 -0.716728 -3.058112 0.698021 -4.000222 -1.457861 4.608569 0.905686 2.847813 0.620291 -0.222293 -4.908724 -4.201243 1.049934 -4.495250 3.407716 4.222835 -1.039775 -4.788712 -2.526257 -5.758269 4.522738 -3.169445 1.629693 -2.091225 -0.411772 5.357795 -3.594235 -0.355548 -4.444248 1.593435 2.314217 -10.695852 5.529058 3.593154 -1.778510 -0.121732 -0.213226 1.099384 3.870240 3.734734 -3.026171 -3.113603 0.338826 -1.615349 0.389884 -0.716888 3.669236 -4.406123 0.669874 -3.165876 -1.647675 3.156710 3.011797 0.261515 2.123099 2.881199 -0.129578 3.609031 3.557257 4.029471 -2.408108 -3.523839 -10.861520 3.937131 0.529762 -1.583977 -0.256439 -3.259647 -3.236405 1.966785 -1.761691 5.211541 0.020235 -1.262545 4.661963 -6.320050 -5.414789 -2.965363 -0.068961 -0.212138 -0.800075 0.120085 -0.896965 2.082787 3.135435 -0.812940 0.556711 -4.185137 -2.295467 0.183244 5.798366 1.184788 1.829656 5.809520 2.052766 -2.975841 -0.943088 0.887472 -0.185720 -1.508591 -5.858586 -2.206807 -0.206358 1.170227 -2.915281 1.327376 -1.117437 -1.887828 1.793852 -4.542235 0.576785 -3.163116 9.882994 -0.250447 -2.623456 0.321256 2.937047 -2.573444 -15.417682 -10.331917 6.676579 1.509114 1.597721 3.351139 3.364467 -0.305185 0.812638 -15.933382 4.019418 5.712739 1.506045 -0.043169 -1.217088 1.747925 -4.157363 2.772238 2.095264 1.847972 8.985654 -4.601667 4.871019 7.316837 -0.785655 3.860335 6.252494 -2.614914 0.654635 -2.378937 -1.199759 11.619318 5.259908 -0.020548 4.321712 1.074245 8.968912 0.004402 6.642554 -0.169032 -6.777647 4.085209 2.290312 -5.187432 -0.731729 -5.645800 4.037943 6.512748 4.193305 -4.025477 3.211416 -3.841130 -0.466869 2.309393 -1.219028 10.039093 3.660617 7.467518 6.287521 8.958164 -5.618760 -0.667981 4.866403 2.557866 0.094585 5.347987 -4.963732 -7.521142 -3.618651 -1.221134 -13.324104 -5.145901 0.153961 15.473789 -8.579315 -0.521105 1.502796 0.587874 8.928755 -4.721885 1.228773 -6.577487 -0.631801 -3.499039 10.355164 1.678290 0.488147 -0.271748 3.449064 2.930169 6.270599 -1.212294 -5.872020 -4.651664 -13.392245 -3.710666 -3.209961 4.571154 4.912251 -10.975800 -1.584511 -0.275348 9.758099 -12.482996 -0.259242 6.215110 5.357322 5.051150 1.001302 -6.920620 0.149059 1.853121 1.762878 6.962299 -3.853388 1.343635 -2.497846 2.018751 -0.079944 3.369449 0.915182 -9.740551 -6.413980 -0.149609 -1.972235 0.400059 2.049205 5.547145 -3.511832 6.212614 -4.084335 7.175503 -12.104711 -0.187229 -4.231960 -7.264026 -2.388698 7.747294 9.205253 6.020172 -2.879978 -3.894914 -2.200514 -11.326124 -10.740010 1.647631 1.567975 2.974051 2.839968 -0.952492 4.892748 -4.314898 1.743596 3.641163 -3.873120 -1.720835 -1.196802 7.362750 0.521306 -1.878993 -6.778166 -2.132366 -2.044092 -1.306150 7.471039 -1.496592 -11.646987 -13.552149 -6.585181 7.724598 -2.895047 0.802866 -4.820287 -1.244193 -6.338493 0.796313 -8.183926 0.767477 0.382150 -6.294247 -9.149738 0.381640 -0.916988 -3.867293 0.373208 -6.338033 -1.800774 8.404711 2.576209 3.530876 1.372580 0.473435 -8.167299 -6.674374 1.879192 -5.606165 7.461899 6.055364 -1.976063 -7.891244 -3.054276 -8.551268 6.937318 -3.744756 2.319035 -3.339672 -2.066069 8.257494 -5.881696 -0.356694 -6.756077 2.295688 2.990303 -17.265130 9.883555 7.330527 -3.276298 -0.501105 -0.269927 1.837796 4.983184 6.564050 -5.337671 -4.623636 0.323138 -2.358834 0.237644 -1.878512 5.703961 -6.179888 0.463110 -5.502074 -3.459302 5.096386 4.499427 0.904894 2.952288 3.089095 -0.380392 4.318326 6.652629 6.396267 -2.706237 -7.068557 -17.192683 5.789632 0.587531 -2.779507 -0.016222 -3.558944 -6.229963 1.799580 -2.817659 8.018027 1.907351 -3.008346 7.266774 -9.330613 -8.531759 -5.545248 -0.007307 -0.255549 -1.535232 1.122236 -3.392758 2.941148 3.015730 -0.776255 -0.613992 -5.570899 -2.774994 0.346193 8.149209 2.807255 2.063179 9.097939 3.465213 -4.774245 -2.183892 1.464916 -1.694166 -1.288523 -8.619167 -4.063818 -1.264205 2.218159 -4.086047 2.088562 -1.032520 -0.372270 2.868729 -7.603314 1.324934 -4.507617 20.305795 -1.674935 -4.884157 1.458733 6.145482 -5.217267 -33.037581 -20.078085 11.185212 3.112241 4.609653 5.372668 5.071889 -1.637606 2.589218 -37.197411 7.104598 14.433030 6.497302 4.015390 -3.184033 4.242564 -7.627659 6.163433 4.350645 4.940319 19.759649 -9.188878 8.969920 16.688028 -2.588126 5.468999 13.854957 -3.918310 3.404337 -5.161582 -1.194699 22.914524 10.528804 -0.562883 8.751426 0.925589 19.170580 2.194394 11.852718 1.769315 -15.561200 7.755800 5.210426 -10.410681 -4.375167 -9.230326 7.957613 16.499684 13.682775 -7.821930 6.642478 -5.337431 -2.252016 4.979172 -2.528513 17.971397 9.339479 14.073093 12.674471 18.918032 -12.189821 -1.766202 8.466125 2.753431 -0.726266 11.080383 -14.177440 -16.902519 -10.264293 -3.928269 -30.515025 -12.804208 1.257133 28.057955 -18.416356 1.186181 2.899849 0.187266 17.349810 -7.808724 1.370979 -13.433858 -2.130749 -6.817080 23.649696 2.416481 -0.654238 1.218222 7.113939 7.713157 12.689382 -0.066089 -12.362240 -8.874740 -25.753477 -6.649741 -7.509870 10.410450 12.893581 -22.279219 -4.417639 -2.724615 15.579275 -28.034030 -0.430313 13.497179 13.775022 10.610957 -1.078641 -13.900334 1.454863 3.264439 1.421085 15.374456 -10.658723 2.261141 -3.402960 1.853627 0.247665 4.714721 1.294442 -19.078036 -14.823682 -2.574596 -3.877759 1.513178 4.213853 10.959047 -6.484100 12.764359 -10.271838 15.400782 -24.725346 -0.560701 -5.683355 -13.512305 -6.050841 13.346832 15.273046 9.080930 -8.798799 -10.440192 -4.504052 -21.853404 -20.213185 3.657917 4.580478 7.465352 7.722679 -3.236113 10.660519 -9.251705 3.752789 5.657733 -5.485513 -2.865490 -1.090334 14.149494 0.665971 -2.805485 -13.039502 -3.989959 -4.767353 -2.017323 16.220882 -3.859332 -21.491113 -28.736381 -13.411117 16.631138 -6.344350 0.170205 -10.898893 -2.504502 -13.815800 2.349930 -18.014922 0.322375 1.175730 -13.274702 -19.525546 3.060881 -3.207654 -5.541830 2.676034 -13.213567 -5.331854 15.028537 8.050925 8.347073 0.255851 1.942691 -18.731898 -13.167436 3.404183 -12.397255 14.418410 8.410752 -3.220329 -16.420836 -6.148999 -15.975575 13.174083 -3.365097 4.463354 -8.246519 -2.513461 18.039222 -10.651111 2.295598 -15.687216 3.788925 8.422856 -32.177563 22.059948 13.097608 -4.658285 -0.324260 2.549742 1.909189 10.995207 10.050442 -11.445321 -13.796634 1.496472 -6.598611 1.085838 -5.822476 10.896192 -13.373266 1.431065 -10.596946 -6.371335 9.531532 8.980130 1.319094 7.192549 8.263744 -2.353774 6.735264 13.399307 13.179985 -4.884913 -12.831800 -33.164068 13.091120 1.432075 -3.117546 -2.681686 -7.467309 -12.376276 6.729829 -0.350377 16.700123 8.437325 -6.787193 15.091469 -20.441353 -17.433020 -11.321421 -0.542357 1.429052 -1.951161 -1.561454 -6.651176 7.867833 7.890866 -3.614750 0.597723 -11.891556 -4.010785 1.146894 17.401437 4.228045 4.597006 19.305146 5.868732 -10.398986 -3.086165 3.441918 -3.455167 -4.474070 -13.552145 -6.371652 -1.114377 5.179555 -7.806868 4.058657 -4.653663 -3.379646 5.559981 -4.170569 2.394076 -4.702689 13.172719 -0.953288 -2.450075 0.130341 2.946576 -4.332039 -21.037674 -12.068905 5.912490 2.792835 4.146625 3.468905 4.447879 -1.258291 1.827235 -20.484267 4.006401 9.368166 4.009413 1.635801 -0.515381 2.585127 -4.566563 2.858231 0.740741 3.410161 12.640639 -5.921316 7.573886 10.660302 -2.654261 3.162160 7.583866 -1.394043 1.871602 -3.551841 -0.109793 13.997080 5.274447 0.227272 4.947329 -0.780752 11.810887 -0.009989 7.638069 -3.471207 -10.068275 4.290062 3.024253 -5.210920 -1.737732 -5.320968 5.565804 9.113071 8.680532 -4.515904 3.285017 -3.168341 -1.292394 3.242368 -1.025622 11.433475 6.195486 8.974534 9.062805 11.570889 -6.726901 -0.135067 4.644174 -0.401753 -1.256293 7.516658 -6.389963 -9.197896 -3.684262 -2.913426 -17.132387 -7.834691 0.735539 18.121719 -11.993322 0.058554 1.445427 1.459112 11.804291 -4.983031 1.956489 -8.509583 -2.033455 -4.646724 13.232388 1.832973 0.104421 -1.384452 4.435389 4.007653 6.448139 -0.694553 -7.758170 -5.552333 -13.318303 -5.637040 -4.491597 5.887459 9.427131 -15.305169 -2.992916 -3.115328 11.726370 -18.383450 0.743746 6.921093 9.028908 9.590562 2.554208 -10.348021 1.083176 2.335132 -0.072294 8.372733 -5.197963 2.403173 -3.697226 0.818540 -0.361371 2.617964 1.252690 -13.718640 -8.608252 -1.526487 -4.501756 1.430171 4.080484 8.498750 -4.965206 8.178146 -6.144495 8.540512 -15.355784 -2.083564 -2.890838 -11.811688 -4.001648 8.173116 10.257660 6.115678 -5.767523 -8.211063 -3.328632 -15.148411 -12.820331 1.126299 2.481478 3.773812 6.416672 -2.297844 6.954061 -6.583460 3.206812 5.737828 -3.350043 -2.467276 -0.926533 10.284865 0.420406 -1.402065 -8.353089 -3.792823 -4.442258 -0.694670 11.567008 -2.052557 -11.190230 -19.875123 -7.483453 10.311766 -4.047716 1.096935 -7.611290 -1.689186 -10.461456 0.542959 -11.309350 -0.640512 0.506406 -7.125280 -12.236057 2.397602 -1.385341 -6.327856 1.384789 -8.286747 -2.642521 10.792937 3.096345 5.372952 -1.114903 0.163518 -10.029564 -8.082009 3.573205 -8.908505 8.674659 5.923058 -2.594524 -9.461032 -4.152254 -10.886024 8.938996 -2.156411 3.370087 -3.771586 0.212485 10.247090 -8.079700 -0.372311 -9.516674 2.288080 4.035910 -19.287371 12.928072 6.770946 -2.929856 1.043607 1.704001 2.671043 6.327390 5.096927 -6.482862 -7.874105 0.676700 -2.706579 0.814793 -4.367096 6.307667 -9.361256 0.401665 -6.072279 -3.269071 6.394423 5.686711 0.196326 3.660291 5.094131 -3.104117 4.809634 7.344624 9.517141 -3.473936 -6.761799 -17.366845 7.297303 -3.601212 -2.800700 -3.434968 -4.568265 -5.987527 4.331007 -2.489020 10.369142 2.738039 -4.195167 9.458077 -14.352847 -10.886300 -6.751773 0.098262 0.505866 -0.755666 -1.052695 -3.994640 5.327827 5.789232 -1.575424 -0.284612 -9.593781 -1.517981 0.918481 10.905702 0.578289 3.635479 12.036018 4.349123 -5.113653 -1.800964 2.863232 -1.854233 -3.783935 -10.390845 -4.190750 0.280664 2.721281 -5.695832 2.285671 -4.329318 -2.983146 4.235008 -112.923790 -2.036523 13.673120 99.311736 50.628725 -124.863499 43.492155 101.154553 -25.561384 -210.559615 -116.456154 48.434983 -7.795324 -77.792353 43.306151 31.715204 -3.570548 67.352790 -217.869915 107.612361 75.212011 74.074206 -19.711950 -95.814674 36.996130 -34.672389 -81.148053 57.724097 6.264424 125.255226 -97.439644 -11.150767 94.764304 18.553877 41.789923 115.774074 55.595337 -2.729420 72.499268 27.230807 204.566868 78.927756 -17.162627 86.378269 108.564751 129.029539 -39.100889 158.950551 -65.513599 -62.901768 63.579697 -88.284956 -96.042776 -1.556788 -101.187177 106.118910 179.931596 104.822426 -83.894551 90.475066 -46.994256 3.826420 48.478985 -53.267514 137.048159 134.590725 28.327335 66.052635 248.716826 -54.348296 -29.025670 66.915895 141.388696 -7.855452 59.984331 -78.469870 -65.191929 -220.534798 -13.651403 -219.521175 -20.183201 -25.165963 244.807433 -140.876577 61.490470 131.469264 48.251513 111.596564 -86.586004 -34.407706 -98.947765 41.014827 -58.562526 251.459203 -19.675861 49.924186 -46.662122 56.930611 67.848459 105.823624 -24.709429 -59.382554 -167.518438 -286.389214 -93.858448 -27.078511 -36.021491 -25.382497 -208.121686 -44.315751 125.328841 141.447940 -215.987731 -18.540664 105.002425 59.272798 24.873367 24.449535 -135.128079 9.384857 -33.007949 4.081358 2.301117 -72.536778 -49.270566 -105.488772 1.881039 12.320814 39.397033 -41.857007 -163.519611 -37.811569 -22.351078 -36.894708 -10.104727 -7.304343 0.094206 -139.856733 64.894254 -111.139691 86.467344 -196.787944 -21.281390 -63.312405 -149.550388 -1.609716 182.013089 65.211853 71.825691 14.937503 -63.532357 -99.518793 -148.719492 -209.777121 57.056725 -59.835630 102.251766 -17.471041 -0.790221 -38.593567 -29.658375 -73.581461 35.178994 -88.900897 3.668929 -78.803872 221.252313 -60.318316 -22.416792 -148.191281 -21.226245 146.385939 -2.477639 2.289601 -68.667217 -92.439175 -145.173165 -132.605183 99.601927 -17.393125 21.726301 -68.854333 32.736662 -144.734613 70.140235 -85.683813 54.875983 -21.559043 -100.664451 -136.979592 0.413682 -28.249915 -35.014022 -29.292610 -81.695105 1.789169 42.328701 57.385430 20.515376 15.609260 9.015903 -196.631526 -189.724314 -37.951864 23.907368 124.743102 85.965258 49.205751 -96.791828 -24.247647 -153.720218 148.356196 -138.916858 -7.977447 -11.077187 -37.599759 197.238630 -63.852511 -58.857273 -161.038315 58.896771 1.841401 -146.289037 215.301168 98.886375 -112.042694 -66.762204 -106.606100 27.811086 116.652475 199.960038 -84.343850 -49.205001 62.516812 -40.595531 -36.267862 -79.032350 112.515744 -80.949333 151.085571 -117.771803 -77.819319 38.964185 147.740163 -31.871103 68.136976 -1.356568 28.580182 -3.000547 138.125953 57.151551 -31.884079 -110.204709 -226.910662 47.783393 17.946725 21.790430 15.039268 -87.358001 -111.903774 18.101418 48.714268 167.974130 115.850536 18.916220 98.467881 -148.300364 -145.053509 15.919756 49.459056 30.789777 -100.552227 56.531399 -68.575250 -1.001331 46.420874 40.522261 47.500844 -109.947335 -148.922693 -34.274415 117.858064 54.551505 -75.952076 149.778102 23.386681 -69.472030 11.755892 -8.642411 84.714263 -3.700056 -26.664458 -45.575584 -89.684112 17.203220 -60.704499 192.859172 -7.973933 10.839730 73.649017 -17.473985 -0.039894 -7.968985 24.558259 -0.168017 -20.258499 6.569240 14.532735 -6.783929 -37.493108 -19.899954 13.425832 4.808145 -9.360788 5.291417 8.556299 -6.521176 6.962583 -46.012704 17.363434 15.124379 8.000032 -7.422803 -15.134578 2.872647 -10.329050 -0.996747 12.787865 -0.909118 24.915857 -11.709583 4.036739 18.977183 -0.619904 9.374608 22.279088 0.461104 3.736623 3.874335 7.567163 32.002145 22.157782 -9.539602 7.378768 11.024818 25.405198 1.654211 16.882381 -22.232859 -14.288486 6.523550 7.214116 -17.414870 -6.820429 -15.057444 10.462202 31.193083 18.180461 -12.399229 15.581034 -16.263671 -2.360172 10.814162 5.334799 29.698974 15.604520 16.537002 16.016410 37.357185 -12.943836 -1.702511 10.945800 14.223541 -9.718884 19.067053 -9.899929 -26.937412 -24.995711 0.067173 -43.594289 -13.188352 5.024095 38.580543 -25.099867 4.497927 13.089017 13.578965 24.194632 -21.002500 -4.297112 -15.947453 0.511624 -16.073569 54.017631 1.716105 9.408863 -3.979795 15.853306 14.615429 17.292255 -3.138702 -17.374636 -16.021324 -45.219186 -11.687209 -10.127488 -2.014895 5.212966 -33.870516 -11.340483 15.629167 26.061991 -39.758910 2.514056 20.274077 12.081051 22.066783 -7.032590 -20.564049 11.119873 -4.337735 -1.160554 13.561697 -13.389783 -3.131890 -4.348713 9.469472 3.644924 3.592195 0.417927 -39.721337 -6.242949 3.196281 -11.646853 1.489195 5.834543 6.231043 -21.562547 12.005868 -23.635991 21.485934 -38.391066 4.108378 -9.540018 -27.957624 -2.317275 11.146538 19.273422 7.350021 -9.951457 -10.893012 -6.533090 -32.683948 -45.313863 8.154178 1.095088 8.903430 -4.621579 -2.883268 -0.372028 -10.633508 -0.101787 15.081552 -12.975154 -0.915759 -5.844965 43.463948 1.267300 -7.102422 -13.494457 -8.490055 6.458803 10.763238 16.457205 -9.067337 -28.965399 -36.894626 -19.026211 21.069325 -3.420739 -4.181953 -15.979508 -5.255799 -28.226434 11.025800 -17.957587 13.562594 -2.587752 -10.304419 -25.532690 -0.246778 -2.062726 -7.139583 -6.458980 -16.537097 -5.452183 14.397522 -2.932633 5.143732 1.073157 6.928772 -24.819915 -23.575817 7.199115 -3.297683 25.263338 16.021269 4.823346 -13.775811 -1.652381 -28.746009 22.234391 -11.804346 3.686438 -6.065149 -10.217150 34.585413 -13.970352 -11.163150 -22.640055 9.452127 0.954862 -15.257355 43.534527 24.077657 -13.749243 -5.196349 -1.130821 2.902484 18.647267 25.307343 -19.739086 -16.645560 6.005748 -8.223590 -3.680093 -2.575500 16.065646 -19.086372 15.729873 -16.396223 -8.786383 10.500966 20.999572 -1.674408 11.789528 -4.171235 -8.794130 -1.525194 19.914459 13.830206 -4.561946 -21.758503 -38.370878 13.716350 -23.747657 -5.088641 -7.091946 -6.732540 -19.943164 5.480068 5.575920 27.056564 19.003586 -17.300541 18.173361 -33.577640 -28.403666 -13.724286 5.622810 2.398872 -11.121130 5.287757 -10.123680 8.245069 8.943693 3.888501 3.548219 -20.318245 -10.179771 -1.884668 20.014676 5.921264 -14.564014 28.578017 3.819064 -8.678226 -7.133926 0.709310 0.864510 1.506463 -11.196483 -10.338879 -11.661778 11.424638 -10.698369 22.310889 -0.704918 1.883994 16.160319 -9.800140 2.080287 -8.330276 16.939647 -0.135498 -4.622638 0.677428 4.311365 -4.640781 -27.793555 -17.323363 14.899670 3.552349 2.307966 3.919570 8.467377 -1.099694 2.199570 -21.848715 7.077181 9.193834 2.184099 -1.842568 -1.526620 2.476028 -7.494352 3.777381 1.502407 3.550312 15.975901 -7.393110 8.647806 13.656411 -2.541674 4.894453 11.135408 -2.663115 1.459554 -4.077431 -2.529543 19.704757 8.372554 1.490150 8.032079 1.050043 15.619528 -2.349697 17.743447 -3.126532 -11.757303 9.439087 3.004732 -9.658928 -0.148878 -9.716783 8.314242 10.008057 5.766927 -6.374349 5.107316 -6.744467 -0.163082 4.182447 -1.495503 16.740218 9.524974 12.073900 11.693475 16.937709 -9.631859 -1.617163 10.015704 3.770582 0.515508 12.090620 -8.429129 -13.120647 0.787041 -2.314220 -19.170052 -8.438030 -1.046452 32.653519 -16.346587 -2.663901 2.770914 3.899758 16.002612 -7.974287 3.370616 -11.468348 -0.270476 -6.928861 19.681473 2.919109 3.015813 -4.735526 4.627505 4.337657 9.946092 -2.906974 -10.190794 -10.622987 -19.655911 -8.002921 -6.584908 6.935804 9.638082 -21.748343 -3.458745 -0.756213 19.534196 -23.473981 0.743405 11.150432 9.060785 17.353283 10.502760 -14.607793 1.355844 4.487668 1.219096 9.675568 -4.893437 1.109689 -5.083377 3.474244 -1.715077 4.326731 0.812302 -23.923321 -9.688056 -0.582542 -5.381063 2.208556 4.186941 10.276683 -9.330470 10.534860 -5.726488 10.383329 -22.812664 -4.294744 -6.828467 -17.800289 -4.488047 17.092729 17.498981 15.252193 -5.473672 -6.779754 -7.283247 -21.450689 -19.264067 0.876216 0.001260 4.812664 5.576111 -1.067893 7.885424 -7.893069 4.146872 7.009436 -6.785929 -2.550754 -1.697052 18.522869 -1.353273 -2.777212 -12.875143 -6.604501 -5.340968 -0.599426 13.517941 -2.054391 -23.368191 -25.233999 -11.438557 13.220417 -5.543947 2.792547 -9.221352 -2.353254 -11.731336 -1.180281 -13.676283 2.045388 1.321981 -10.707314 -16.305894 2.536232 -1.078629 -9.682419 0.151361 -11.074789 -2.762189 15.498005 3.447811 6.684641 2.070625 -1.375395 -15.462383 -12.296392 4.175940 -10.596387 13.981051 13.725734 -2.787283 -12.472765 -5.867113 -18.444111 11.375346 -10.856667 3.694803 -4.545681 -0.890630 14.671003 -11.844136 -0.788250 -13.923184 4.513048 3.734426 -31.196749 17.228014 12.381028 -5.654604 -0.281100 0.083524 3.309034 9.547084 11.156280 -8.792216 -8.546895 1.448525 -3.862292 0.012841 -1.653255 10.093583 -12.454326 2.669276 -9.321027 -5.086578 8.399676 9.115287 0.094013 3.370516 4.423389 -2.412872 9.063539 10.439932 12.190811 -5.633564 -12.424255 -32.425212 9.166689 -4.547721 -7.151902 -0.176302 -6.587359 -9.475037 4.726476 -7.815958 14.866721 -3.104475 -4.368241 12.420999 -18.935347 -15.423452 -7.314497 0.091012 0.075125 -2.498874 2.848644 -5.484122 4.668777 5.934373 -1.496253 -1.737412 -11.854123 -3.109372 1.037447 16.016015 4.123622 3.859736 15.745708 6.275003 -6.660193 -3.118169 2.621395 -0.890637 -3.355115 -18.590475 -6.037367 -1.824725 3.292045 -7.180068 5.370819 -1.798412 -2.346352 5.747978 -10.183832 -1.937497 -2.223075 13.197508 2.044397 -4.577368 1.660988 6.598663 -1.567914 -24.388085 -16.372796 11.033058 0.804855 0.206388 4.986593 4.575615 1.502293 1.403957 -25.588424 7.031051 7.697740 2.710839 -0.204145 -2.241604 3.154454 -7.144929 1.875456 4.211443 2.573000 13.522437 -7.904379 5.098713 11.391095 -0.138390 6.122552 10.849912 -2.020445 -0.535049 -1.319557 -2.023990 19.992688 8.854759 -0.210330 8.719731 4.663996 14.197252 -1.710204 16.403296 4.022608 -9.421731 8.773079 -3.309625 -9.925018 0.039165 -10.769953 7.543487 11.544151 5.085182 -7.281725 5.961268 -5.214393 0.049259 3.236675 -4.168236 15.088155 7.664157 10.125197 8.072877 16.450283 -8.645056 -2.522402 9.083165 8.054800 3.226346 7.105833 -9.661544 -9.975768 -9.681643 -0.782216 -19.368712 -6.606318 -3.418016 24.211844 -13.270718 0.147406 5.126434 -0.179478 12.804828 -6.874292 0.954338 -11.391528 1.250662 -2.977102 17.000573 0.687766 1.998169 -1.009938 4.286393 4.386394 10.662617 -0.988343 -8.993882 -11.540328 -23.601178 -6.127460 -5.151171 5.465253 4.640424 -17.974365 -1.166135 1.710615 14.961869 -18.854375 -1.189965 9.937956 6.918521 7.682206 5.068535 -10.757062 -1.732512 2.970926 3.414581 8.100852 -6.904740 0.167321 -7.268778 3.466569 0.466264 5.328003 -0.769976 -14.555418 -8.826519 -0.078965 -0.605466 -0.147949 1.529251 6.264112 -8.021506 9.269768 -6.065545 10.254898 -18.908973 -2.330079 -7.658295 -10.442476 -3.205432 19.651968 13.587334 11.914263 -0.442541 -5.142510 -5.825618 -16.408599 -18.161629 2.451561 -0.942335 6.980506 2.801684 -0.647828 5.542804 -5.498873 -0.003671 1.820432 -6.863863 -1.598205 -3.349782 10.611633 -2.001351 -2.371983 -11.836669 -2.482497 2.359975 -3.342979 8.375375 -3.310455 -20.080421 -18.067596 -11.894449 11.376142 -4.670646 2.438358 -6.466796 0.270239 -10.107045 1.602640 -11.365777 1.454552 -0.195875 -12.503215 -14.295427 0.870887 -2.582319 -3.272429 0.685373 -9.756973 -1.907719 10.434999 8.595893 5.619973 3.275620 -0.721901 -16.381854 -13.344657 -0.532825 -6.543159 14.856699 8.645194 -2.419331 -11.313224 -5.055466 -14.453457 12.185083 -11.250894 2.129350 -4.453363 -4.532537 13.725203 -7.782317 -1.282944 -13.033661 4.856661 4.298421 -26.047903 16.600823 11.871395 -7.375852 -3.470118 -4.607204 2.647580 9.208771 13.809416 -7.558044 -6.287861 1.971976 -3.506547 -0.594006 -4.111402 10.347369 -8.115165 4.322606 -10.711730 -7.316049 7.226511 8.928192 0.150642 4.396843 4.825511 3.162949 6.298567 12.132605 8.012271 -3.915990 -11.957097 -30.935616 7.979192 7.736374 -3.249318 2.763075 -9.020024 -10.773426 2.044609 -3.540447 14.094131 4.454381 -0.020321 11.328330 -13.411597 -13.360297 -5.734024 -0.208580 0.134907 -3.682388 3.988472 -5.708828 2.796618 3.626102 -0.353589 0.287966 -8.736409 -7.782545 0.093316 12.112846 6.167625 1.965885 13.871477 5.128820 -8.054084 -2.034649 1.435212 0.169392 -0.974648 -11.510016 -5.632051 -4.046197 2.016566 -5.700265 6.648410 -0.129754 0.724537 3.360459 -3.038410 -0.547457 -1.156532 5.634593 0.391952 -1.305962 0.580188 1.861947 -0.660511 -10.102399 -5.902352 3.965902 0.700018 1.342483 1.544676 2.055025 0.103291 1.223782 -9.131486 2.190824 3.549932 1.771336 0.965639 -0.940833 1.332506 -2.445540 1.460799 0.921915 1.841233 5.907704 -3.247970 2.149899 5.064939 -0.563177 1.842389 4.328738 0.617941 0.524984 -1.832948 -0.926334 7.552185 2.900309 0.019435 3.239539 0.604070 5.814012 0.430289 5.664185 0.926432 -4.454249 2.719924 -1.465658 -3.469183 -0.692918 -3.616788 3.352161 4.406352 3.541929 -2.940774 2.103147 -0.916824 -0.070239 1.350782 -1.344423 5.142247 2.769309 3.630188 3.683046 6.109429 -4.012929 -0.896674 3.187299 1.990408 0.756309 3.938009 -4.229701 -4.162968 -3.283940 -0.657563 -7.296483 -3.153196 -0.448357 8.881555 -6.047984 0.486633 2.299545 -0.409121 5.148730 -2.139504 0.574720 -4.654169 -0.073933 -0.928168 6.773895 0.783344 -0.065301 -0.454714 2.025713 2.010278 3.932510 0.559526 -3.725693 -3.963803 -8.102228 -2.359911 -2.442160 2.592906 3.209660 -6.894943 -1.370434 0.038739 5.932220 -8.320901 0.164464 4.189136 3.717920 3.881730 0.559937 -3.494492 0.430876 1.177521 0.291238 3.508621 -3.341413 0.198700 -1.388739 1.039533 -0.014377 1.738443 -0.090183 -5.807954 -4.109990 -0.508373 -0.253960 0.155605 0.840197 3.007426 -3.325919 3.966286 -2.680747 4.067648 -7.088807 -0.797922 -1.791135 -4.705926 -1.864530 7.399251 3.783865 4.426585 -1.469015 -3.300565 -2.379179 -6.286141 -7.343280 1.346315 0.691487 2.495888 2.662961 -0.673364 2.902657 -2.686689 0.480217 1.190034 -2.299047 -0.977991 -0.328090 3.310345 -0.977763 -0.865795 -4.727842 -0.971425 0.157132 -0.767489 4.163161 -1.447600 -6.985293 -7.732216 -4.553868 4.932240 -2.072307 1.113936 -2.633410 -0.486672 -4.568766 0.546314 -5.254356 0.935071 0.166594 -4.714158 -6.134419 0.901332 -1.212466 -1.487140 1.268781 -4.099558 -0.812663 3.084513 2.335259 2.096871 0.479566 0.371585 -6.607509 -4.873426 0.289754 -3.562923 5.223013 2.425655 -0.808084 -4.447693 -2.312609 -5.108707 4.370251 -3.792456 1.209740 -2.006398 -0.600484 5.339876 -3.323283 0.113928 -5.332882 1.941209 2.645054 -9.099099 6.485212 4.367378 -2.055523 -0.494523 -0.121821 0.740717 3.698458 4.583034 -3.455406 -3.635341 0.983777 -1.839714 0.121033 -2.066724 3.719460 -3.668772 1.351863 -3.803667 -2.344007 2.269569 3.322958 0.168143 2.136647 2.991475 0.220531 1.539438 4.754258 3.650465 -1.122023 -4.512761 -10.732715 3.881321 1.813624 -0.926834 0.410155 -3.448428 -3.156017 1.979342 -0.705663 5.278566 2.159564 -0.435531 4.856115 -6.410606 -5.380377 -2.037240 -0.620436 0.507895 -1.035247 0.788768 -2.062239 1.815376 1.702219 -0.810544 -0.214616 -3.102734 -1.684555 0.319389 5.288031 1.670674 1.654483 5.875414 1.673172 -3.249790 -0.217975 0.694463 0.041134 -1.124485 -4.514954 -2.003207 -0.564698 1.086451 -2.619532 1.967921 -1.403754 -1.173941 1.365835 -5.266957 2.708162 -6.919256 19.052145 -2.575109 -3.108367 -0.026836 3.036882 -4.982692 -29.229357 -16.880296 12.332148 3.773213 5.994066 4.498832 6.046962 -2.203410 1.925683 -28.829490 5.676475 12.822775 5.066421 3.188651 -1.287834 3.840763 -6.593760 7.300094 1.241614 5.112422 17.642504 -7.965912 10.688591 14.978926 -3.053788 5.432146 10.720473 -4.425691 3.592313 -6.810165 -1.900810 18.996192 8.254998 0.685627 7.322352 -1.591952 16.490498 1.292889 9.079187 -0.051037 -14.348553 6.177593 7.932028 -7.369426 -2.975134 -7.257225 7.273654 10.825962 9.781647 -6.413382 3.988743 -3.553491 -1.678150 4.151886 -0.606158 16.110138 7.414286 12.655624 12.976123 14.453373 -10.028434 -0.289397 6.437502 -0.428766 -1.845833 12.166201 -9.596176 -15.467428 -0.935632 -4.265747 -23.060785 -11.897688 1.756176 23.779387 -16.863321 -0.135957 0.192260 1.315922 16.512529 -5.926557 2.715176 -11.669564 -3.181216 -6.159719 18.308990 3.276365 -0.228161 -0.786005 6.132336 5.501620 9.513781 -0.046517 -11.392287 -4.957134 -18.004554 -5.924538 -7.026191 10.506378 13.961358 -20.035538 -3.804120 -5.759729 16.436370 -25.166124 0.739542 10.403200 12.024949 12.555648 -0.305736 -11.371304 2.447211 3.823378 0.240862 12.693236 -7.659001 2.998100 -1.952502 1.122872 -0.572680 4.493918 2.353553 -18.253972 -13.242266 -1.888594 -4.040711 1.751051 5.815391 12.047214 -5.275243 11.422329 -7.758698 12.616766 -20.352615 -1.694560 -4.771947 -13.244980 -6.049780 9.318017 13.304248 9.372435 -9.567475 -9.700700 -3.773530 -20.788414 -17.751368 2.742849 4.411188 4.413714 9.333938 -3.069487 11.032286 -9.742304 5.844757 7.505655 -4.926926 -3.660396 -0.347474 11.109762 1.075916 -2.538182 -10.062292 -5.339851 -8.563891 -1.291679 16.818884 -2.071829 -18.153844 -27.861937 -10.561503 14.673953 -6.065369 1.063928 -10.333897 -2.781064 -12.311019 -0.271476 -16.649630 0.502666 1.166993 -9.231656 -17.022232 2.602776 -2.032431 -6.351327 2.183372 -11.767501 -4.254153 14.168753 3.296158 7.376850 -0.031212 1.195418 -13.387873 -9.334519 5.968564 -13.274968 10.219303 7.899574 -3.869256 -13.965490 -6.400006 -14.417274 10.414331 -3.287143 5.344885 -6.102887 -0.681827 14.240140 -10.809932 0.750023 -12.157688 2.890289 7.015214 -27.107397 16.301892 9.436927 -2.950187 2.159882 4.686075 2.920547 8.829598 6.720637 -9.635425 -11.892071 0.143739 -5.149569 1.724671 -4.057283 9.010636 -13.083584 -0.107406 -7.924594 -4.072035 9.133324 6.470638 1.519338 5.718232 7.571730 -4.999608 7.363978 9.811593 13.727315 -3.763213 -11.145816 -25.802305 11.045760 -4.621903 -3.725427 -3.983462 -5.672745 -9.076801 6.407169 -2.893657 13.943869 1.625073 -7.142649 13.173701 -19.966990 -15.179528 -10.550412 -1.371679 0.243716 0.005870 -2.234938 -4.480552 7.710320 7.982544 -3.104691 -0.765380 -10.987236 -0.019622 2.065209 15.488333 1.801730 6.251430 16.472639 6.364930 -8.415567 -2.865942 3.626140 -4.530697 -6.013234 -16.577545 -6.188208 0.861853 4.385507 -7.852173 1.274741 -5.564937 -4.009891 4.081307 -30.158859 -1.551142 -1.507512 39.084214 11.281259 -29.956298 8.847144 24.144518 -11.745660 -69.361117 -44.035280 16.149918 1.492701 -14.097312 18.984582 10.690733 -0.449363 12.442230 -71.631528 28.470921 24.052479 14.391006 -6.648375 -20.894542 9.517098 -15.709203 -12.597088 18.275763 2.543426 40.474053 -27.764186 7.682256 29.994177 2.735955 17.596906 33.476120 3.883808 -0.165443 10.893049 5.579065 65.031034 22.327708 -2.041296 24.322680 26.234249 41.512345 -11.564269 44.733977 -13.787872 -23.252655 27.006189 -11.757658 -25.524484 -0.808636 -33.225702 27.967283 52.377192 26.396615 -25.160187 24.470408 -19.752032 0.946643 13.082087 -10.723761 48.910868 34.101192 20.995752 24.592219 65.281375 -21.045971 -7.687730 22.759349 33.273057 -2.836981 18.082206 -24.472923 -24.455239 -54.378414 -4.286511 -65.636922 -10.599908 -4.907201 75.769810 -41.034029 8.493987 30.967724 11.170081 38.219034 -26.620324 -4.179066 -30.774754 7.182277 -19.715716 68.379399 -1.838199 11.517948 -8.066145 17.210274 18.410877 35.002550 -9.023312 -21.884252 -43.295156 -86.865134 -31.466538 -9.295620 2.120833 -0.082832 -61.741659 -10.930508 28.553775 37.957567 -62.305526 -4.840893 31.503405 23.938965 9.214384 5.054087 -43.057396 -1.842408 -2.730150 7.382099 14.345239 -17.498472 -5.306629 -32.655358 5.795036 3.414325 15.895791 -8.859667 -46.612110 -18.610215 -5.790846 -10.882442 -2.830900 -0.328052 9.728245 -32.425494 24.535031 -28.615200 32.181963 -64.228870 -2.724165 -26.893810 -42.192324 -2.459160 48.103367 28.783759 25.559961 0.906888 -22.557649 -20.619851 -50.989983 -61.762304 12.240466 -8.536150 26.263829 -0.976564 -2.152535 1.261671 -12.443407 -13.019673 15.817916 -26.242764 -3.287558 -20.542489 56.686105 -9.971804 -10.654075 -42.676514 -5.137369 26.366423 -5.868866 14.716861 -15.479184 -35.159133 -52.883810 -39.396432 33.582672 -7.810611 5.668888 -20.641801 4.433321 -44.066216 17.519213 -32.288407 12.206500 -4.706931 -32.786452 -43.305604 -1.198156 -6.054448 -13.791060 -5.931789 -29.436395 -2.480833 24.836489 16.419140 11.089835 7.923357 2.503365 -54.663949 -53.183142 -6.587021 -3.449219 36.834904 30.515057 6.621603 -29.670313 -10.541984 -45.942856 40.326035 -33.196478 2.002019 -5.858271 -15.379813 52.671710 -25.011484 -15.009271 -43.432242 13.784354 4.779693 -59.715934 62.839935 31.755682 -30.446128 -16.804063 -26.170255 9.700722 28.784505 54.948088 -25.543316 -13.225900 11.659131 -9.234828 -7.364233 -19.672022 33.807132 -25.483890 29.270315 -35.245132 -24.982880 18.196513 40.250044 -3.772166 19.837711 4.606963 7.291757 6.620875 41.408420 22.460725 -12.782107 -32.468466 -76.309226 20.294157 2.996579 -2.725138 3.311967 -24.330778 -36.391367 3.449978 9.733451 48.033898 29.803437 0.978653 33.582407 -42.310869 -44.450611 -9.607619 10.778834 4.393557 -26.810577 10.540611 -21.598538 4.269011 13.766863 7.695930 9.520610 -30.914611 -40.371805 -8.697815 37.620399 15.789538 -11.626041 46.913246 13.156042 -22.874442 -3.594783 1.467522 13.400233 2.081128 -18.827163 -18.663774 -22.503037 6.591833 -19.066898 40.597228 -2.570087 3.958036 21.892327 -3.813395 -0.223083 -1.450882 5.522030 0.657350 -1.740911 0.619885 2.098401 -0.864487 -10.123501 -6.164634 5.717793 0.595071 0.729921 1.277109 2.125771 0.306123 1.248680 -9.101090 2.553881 3.070197 1.347756 0.061946 -0.962678 1.136863 -2.538394 1.392648 1.207384 1.595283 5.780159 -3.311068 2.044641 4.919995 -0.408116 1.873318 4.429365 0.380068 0.054304 -1.509007 -1.410224 7.821492 2.973565 0.446058 3.764162 1.142975 5.817324 -0.207482 6.928762 1.902993 -4.179389 2.973133 -0.782385 -4.008445 -0.291907 -4.079942 3.430828 3.778290 2.551783 -2.867760 2.240637 -1.250090 -0.055530 1.400850 -1.641430 5.451062 3.216682 3.559238 3.517264 6.710700 -3.915471 -1.114626 3.709718 2.839406 1.400858 4.004520 -3.857037 -4.223665 -2.563578 -0.584637 -7.436178 -2.898238 -0.996476 10.575049 -5.980547 0.058570 2.127478 0.215101 5.293308 -2.464069 0.694245 -4.753396 0.325544 -1.232523 7.033088 0.852181 0.571116 -0.997458 1.531409 1.783806 4.205554 -0.244689 -3.751846 -4.262993 -8.659932 -2.552121 -2.436366 2.002249 2.576456 -7.379837 -1.003762 0.404580 7.174626 -8.243775 -0.386202 4.262005 2.952977 4.079570 2.492282 -4.154240 0.039040 1.372394 0.527708 3.222471 -2.826106 -0.140724 -1.552940 0.972833 -0.358367 1.882992 -0.150797 -6.770899 -3.920472 -0.250680 -0.372772 0.288660 0.485430 2.815186 -3.519786 3.830974 -2.248596 3.769438 -7.329971 -1.378164 -2.161916 -4.929520 -1.714727 7.965777 4.948521 5.463456 -1.025589 -2.379459 -2.931622 -6.612735 -7.437679 1.300337 -0.247049 2.420057 2.080549 -0.378839 2.515781 -2.523409 0.087822 1.300427 -2.678432 -0.884018 -0.719999 4.494498 -1.230322 -0.679507 -5.213016 -1.278789 0.165158 -0.652412 3.674247 -1.450687 -8.670277 -7.632479 -4.755808 4.823638 -2.047750 1.134089 -2.645761 -0.492029 -3.723252 0.112373 -4.784110 0.608580 0.128778 -4.949326 -6.111335 0.828316 -1.118984 -2.320351 0.750464 -4.281322 -0.628165 3.878468 2.594472 2.137870 0.745835 -0.236765 -6.814798 -5.117292 0.173626 -3.146447 5.413440 3.706108 -0.599381 -5.049709 -2.337793 -5.911913 4.520988 -5.345014 1.120362 -1.701162 -0.960391 5.620180 -3.562403 -0.043594 -5.180510 2.199508 2.192642 -10.969556 6.795990 4.787739 -2.551959 -0.888815 -0.734401 0.807997 3.999114 5.271083 -3.651976 -3.252901 1.181994 -1.623307 -0.136165 -1.478370 4.027312 -3.590602 1.761207 -4.081675 -2.628695 2.389582 3.662211 0.055712 1.542389 2.375618 0.529598 2.490092 4.850019 3.584915 -1.305423 -4.719678 -12.316471 3.695779 1.893123 -1.411646 1.277181 -3.684649 -3.584542 1.804156 -2.113695 5.577023 0.010879 -0.236169 4.713318 -6.324951 -5.509510 -1.754788 -0.551368 0.459401 -1.106512 1.986995 -2.348046 1.269145 1.414319 -0.560034 -0.615427 -3.133740 -1.947066 0.380215 5.151863 2.365373 1.407302 5.856849 1.842576 -3.268902 -0.337154 0.323644 0.427945 -1.229973 -5.445184 -1.853954 -1.006162 1.023174 -2.485487 2.660611 -0.674343 -0.670306 1.413821 -3.625605 0.162620 -1.903305 6.142486 0.514990 -1.464855 0.463456 1.547360 -1.832619 -10.946484 -6.750156 4.758466 0.925465 1.294767 1.560402 2.716143 0.182843 0.895049 -9.905116 2.270150 3.590322 0.927568 0.060460 -0.459616 1.138067 -3.069297 1.313519 1.350605 1.410289 6.243118 -3.458528 2.986650 5.326487 -0.476245 2.146371 4.452617 -0.191485 0.242016 -1.585245 -0.850290 8.227802 2.736476 0.369651 3.013753 0.788295 6.280451 -0.305301 6.743851 0.267855 -4.509718 3.407741 -0.449491 -3.796209 -0.059226 -4.276115 3.184764 4.348750 2.994072 -2.931743 2.255976 -1.836177 0.152534 1.478185 -1.162661 6.421417 3.128894 4.552605 3.829995 6.595586 -4.096531 -0.817842 3.625064 1.944070 0.528393 3.726165 -3.725684 -4.206260 -2.344253 -0.401019 -8.350642 -3.152237 -0.399125 10.888445 -6.044374 -0.760210 1.873802 0.381108 5.989391 -2.867064 1.052134 -5.043970 0.144063 -1.775957 7.698397 1.163024 0.562143 -1.009710 1.974694 2.036627 4.241226 -0.711788 -3.989155 -4.459826 -9.053501 -3.225787 -2.537107 2.527017 3.145425 -8.094706 -1.241743 0.367370 7.311961 -8.825187 0.021828 4.267035 3.724448 4.449762 2.589505 -5.118930 0.036580 1.302184 0.784802 3.912962 -2.351655 0.571462 -2.302440 1.447685 -0.360052 2.048853 -0.005847 -7.767927 -3.935939 -0.088637 -1.544039 0.399524 1.040533 3.513081 -3.032500 4.225272 -2.600959 4.146067 -8.334029 -0.880478 -2.537079 -6.128304 -1.741070 6.892339 6.151625 4.917863 -1.289567 -2.895927 -2.455460 -7.714634 -8.258251 0.694050 0.342071 2.424224 2.187813 -0.728132 3.054870 -3.037368 0.634731 2.329085 -2.760960 -1.284829 -1.086330 5.671520 -0.595606 -1.146047 -4.931049 -1.541254 -0.570660 -0.967232 4.806515 -1.388920 -8.284612 -8.991007 -4.979001 5.162899 -2.262260 1.066263 -3.159376 -0.554613 -5.196051 0.388295 -5.202446 0.354356 0.238348 -4.863424 -6.480005 0.826030 -0.934859 -3.095981 0.642990 -4.700226 -0.842492 5.060303 1.798746 2.693065 0.518345 -0.260590 -6.210886 -5.221861 0.811598 -3.774708 5.240205 4.335415 -0.975048 -5.002225 -2.501912 -6.425062 4.779690 -4.126317 1.382247 -1.753637 -0.904390 5.548945 -4.126741 -0.151174 -4.648630 2.008368 1.979080 -11.411173 7.449088 5.065659 -2.674999 -0.809443 -0.727537 1.260578 3.668667 5.056664 -3.751153 -3.071506 0.720447 -1.439565 -0.026732 -1.147329 4.202809 -4.002299 1.138171 -4.274027 -2.709026 2.890499 3.878029 0.098353 1.873584 2.408445 0.152761 2.891065 4.858352 3.703413 -1.747046 -4.324209 -12.637793 3.656242 0.185617 -2.012769 0.641140 -3.216692 -3.676659 1.614380 -2.402199 6.002072 0.290999 -1.198310 5.121773 -6.623086 -5.852829 -2.735868 -0.508293 0.107710 -1.258597 1.352524 -2.389913 1.565395 1.783748 -0.495618 -0.400890 -4.113998 -2.044677 0.259700 5.722131 1.798537 1.471024 6.278701 1.998830 -2.902193 -0.983928 0.734399 0.267082 -0.546578 -5.957508 -2.472056 -0.921285 1.168890 -2.749237 2.099519 -0.979934 -0.648928 2.069087 -3.881069 2.493993 -4.555047 12.244019 -1.206027 -1.950857 0.102269 2.213682 -4.258817 -19.949374 -11.189286 6.147822 2.567830 4.197297 3.131930 4.424188 -1.418008 1.797549 -18.639970 3.447918 8.914509 3.748088 1.928924 -0.189165 2.445115 -4.125567 2.531183 0.504127 3.477603 11.837705 -5.654412 7.057658 10.282837 -2.422308 2.301094 6.950988 -1.122963 2.060945 -3.553707 -0.585815 12.903096 4.259578 0.705418 4.518152 -1.137434 11.021372 -0.127081 8.233151 -2.516059 -9.791062 4.530826 2.074772 -4.781004 -1.276579 -4.524018 5.176384 7.906294 8.344924 -4.272376 2.939665 -2.684000 -0.782127 2.932595 -1.019820 10.368501 6.213518 8.176081 8.210413 10.393351 -6.500109 -0.069002 4.231287 -1.014092 -1.354886 7.162491 -6.316407 -8.131412 -2.776107 -2.415666 -15.634488 -7.731104 1.058265 17.524572 -11.467327 -0.118805 1.404014 1.420954 11.192328 -4.329004 2.456514 -8.026929 -1.703767 -4.036715 12.435036 1.778671 -0.378811 -1.679189 3.788093 3.734882 5.878042 -0.669671 -6.953617 -5.731944 -11.803975 -5.357867 -4.288360 5.853965 9.245740 -14.701460 -2.960989 -2.571191 11.030653 -17.391075 0.601618 6.783610 8.716373 9.061102 3.869967 -9.641721 1.036328 2.311322 -0.119692 8.015057 -4.511663 2.333337 -3.444136 0.584382 -0.388157 2.245157 1.098384 -13.540820 -8.241077 -1.336116 -4.588181 1.382235 3.949744 8.234508 -3.993134 7.802992 -5.451683 7.665889 -14.371562 -2.082801 -2.283918 -11.262896 -3.930906 8.170896 10.113475 5.809691 -5.473482 -7.817847 -3.566651 -14.058738 -11.695308 0.494598 2.288411 3.744095 6.286775 -2.121206 6.805659 -6.208489 3.328471 5.089055 -2.944691 -2.479102 -0.847818 9.526119 0.040608 -1.446695 -7.808893 -3.601529 -4.765637 -1.540913 10.992634 -1.623892 -10.749495 -18.853626 -7.094507 9.777543 -3.959872 1.259351 -7.319460 -1.474627 -9.659145 0.183642 -10.516498 -0.724325 0.937697 -6.849872 -11.597838 2.557389 -1.331473 -6.299375 1.449678 -7.894470 -2.632839 10.133793 2.543131 5.334464 -0.919707 -0.030959 -9.599291 -7.367041 3.187229 -8.887010 7.440791 6.104557 -2.374995 -9.088652 -4.209922 -10.251466 8.024690 -2.536608 3.168402 -3.741554 0.715237 9.508991 -7.549022 0.216433 -8.554208 2.009361 4.056141 -18.967770 11.804004 6.312307 -2.481042 1.183359 1.759742 2.446370 6.115881 4.496227 -6.280993 -7.457009 0.385127 -2.902531 0.902797 -3.403931 5.901594 -9.080367 0.189330 -5.432196 -2.747017 5.817323 5.195227 0.194468 3.285514 5.266879 -2.890225 5.247887 6.630798 8.528717 -3.611540 -5.878014 -17.311012 7.080426 -2.878300 -2.808086 -2.902200 -4.345414 -5.182800 4.208797 -2.651492 9.560597 1.673849 -3.672048 8.833601 -13.537970 -10.139521 -6.172058 -0.058131 0.238908 -0.406924 -1.130394 -3.073052 4.862468 5.707097 -1.838059 -0.244489 -8.934425 -1.560308 0.823016 10.716828 0.413109 3.632187 11.187927 3.912230 -4.790700 -1.426493 2.418657 -1.244544 -3.776834 -10.065577 -3.785948 0.677466 2.440923 -5.485314 1.831223 -4.191691 -3.491649 3.685311 -6.752751 0.741611 -4.189088 15.066523 0.629618 -2.778270 0.738666 3.093242 -2.917260 -24.289017 -14.983938 8.386614 1.997300 2.219035 4.714038 5.273918 -0.501223 1.623332 -21.696037 5.106731 9.216975 3.199188 1.208249 -1.345343 2.677318 -6.177671 3.255493 2.751632 3.195415 13.407149 -6.791136 7.061988 11.972569 -0.803441 4.145616 9.234175 -2.181387 1.618953 -3.590126 -1.569727 17.609048 6.719609 -0.142984 6.697928 1.600660 13.714505 -0.178637 12.161160 -1.417478 -10.251681 6.833826 0.505804 -6.649919 -1.247780 -7.858219 6.652249 11.013760 7.073349 -6.558506 4.262545 -4.283527 0.189578 3.359748 -1.447936 13.835335 7.416846 10.576383 9.256283 13.709677 -8.676329 -1.265817 6.899648 2.967895 0.165137 8.390787 -8.006759 -10.490221 -4.177688 -2.015181 -17.732473 -7.870658 -0.232901 22.037784 -13.109312 -0.853401 2.913205 0.936583 13.254847 -5.841019 2.221406 -10.445522 -0.101596 -4.420211 16.376150 1.659667 0.110432 -2.160428 4.716407 4.366327 8.548631 -0.403035 -8.745407 -8.638510 -18.620430 -6.507325 -5.612939 7.178441 7.799411 -17.933415 -2.803738 -0.887423 13.572867 -19.564783 -0.332272 9.253230 9.107408 9.925596 2.560119 -10.750646 0.363379 3.140113 1.541158 9.019376 -5.070998 1.626322 -5.540756 2.742685 0.088134 3.668142 0.636381 -15.401766 -9.095012 -0.796481 -3.255535 0.810107 3.588758 8.385441 -6.066000 9.168722 -6.051202 10.208793 -18.575158 -1.335197 -5.366268 -12.363812 -3.865532 12.950388 12.981551 9.392993 -3.846121 -7.190701 -4.863591 -16.671479 -16.667931 0.587098 1.563092 5.122971 4.858425 -1.621613 7.356660 -6.963830 3.119588 5.405093 -4.942309 -2.580959 -2.003340 11.653161 -1.058913 -2.917660 -9.145236 -3.681860 -2.498133 -3.026510 11.949211 -2.109270 -15.761077 -21.139752 -10.075106 11.545779 -5.247331 1.807867 -8.167745 -0.909976 -11.981136 1.449076 -11.976561 1.400327 0.882109 -9.976168 -14.185385 1.737887 -2.050937 -4.888526 1.419943 -9.775617 -2.526273 11.531568 3.973969 6.046051 1.933551 -0.393895 -13.579956 -10.338516 1.951632 -8.791384 12.005567 8.438106 -2.661933 -10.852029 -5.360801 -13.530963 10.584081 -5.755304 3.031262 -4.427075 -1.320813 11.988278 -8.520652 -0.505079 -11.025450 3.078352 4.440027 -22.948867 14.624502 10.184063 -5.002729 -0.955443 -0.849216 3.032080 7.303293 9.244370 -8.313926 -7.657455 0.552848 -3.767026 0.254534 -3.396303 8.231578 -9.725195 1.820656 -8.745860 -5.037824 7.090391 7.134481 -0.053467 4.055316 5.674664 -1.035509 6.154235 9.878252 9.275097 -3.880465 -9.581940 -25.418808 7.958085 -0.485604 -3.713483 -0.893424 -5.600347 -8.290613 2.840338 -3.052421 12.740666 3.582841 -3.440207 11.276210 -14.878887 -12.665332 -7.109821 -0.540887 -0.140649 -2.272480 0.977881 -3.859167 3.920536 5.107890 -1.731878 -0.189456 -10.159207 -3.999923 0.468055 13.539260 2.409716 2.550340 13.228949 5.028925 -6.870844 -1.996168 2.421172 -1.192232 -1.951949 -12.985662 -5.708348 -1.240035 2.507011 -6.247366 3.576670 -2.931881 -1.814847 3.491032 -3.461201 0.408889 -1.076423 8.682313 0.395714 -1.189336 0.479188 3.145598 -1.835258 -14.875427 -8.841516 5.112440 0.786739 2.868799 2.630412 1.771666 0.855251 1.132982 -15.626757 2.842048 5.866957 2.890216 1.668457 -0.285330 2.023709 -3.497575 2.868279 1.538829 2.763639 8.667563 -4.554618 4.259159 7.339591 -0.901869 3.546974 6.017446 -0.143061 0.296796 -3.014055 -1.546280 11.125538 4.323076 0.150963 4.993159 0.670815 8.677922 0.924513 5.246456 1.835580 -6.916465 2.356835 -0.481213 -4.416013 -1.458695 -5.060918 3.972426 5.215426 5.523938 -4.142933 2.819551 -1.564079 -1.032664 1.879061 -2.127108 7.585354 2.999233 5.729841 5.783437 8.058262 -5.545845 -1.070652 4.261101 1.732380 1.775307 3.992561 -4.959991 -5.940583 -5.390536 -1.780281 -11.981364 -5.598431 -0.809396 11.857034 -7.960259 1.105777 1.733164 -1.570130 7.259657 -3.039783 0.498630 -7.145660 -1.208365 -1.113730 7.060243 1.003288 -0.767105 0.875248 2.690274 2.724526 5.655113 0.288723 -5.931877 -4.003475 -10.864954 -2.508673 -3.239406 4.323738 5.265144 -8.994503 -1.447571 -2.204147 9.177726 -11.629420 -0.507700 4.923834 5.268946 3.772110 0.403961 -5.175246 -0.405271 2.114944 0.686534 6.346691 -5.080929 1.358992 -2.004234 0.613834 -0.117769 2.856428 0.861098 -6.760771 -7.051044 -0.525580 -0.741251 -0.047475 1.494389 4.698177 -3.278981 5.937319 -3.950490 6.607067 -9.073140 -1.077247 -2.377698 -5.734166 -2.990403 9.563483 6.662196 5.178151 -2.243362 -4.877440 -2.099321 -8.892880 -8.890743 2.212997 1.667223 3.346518 4.487242 -1.313948 5.083155 -4.380758 0.913628 1.839653 -2.490141 -1.621700 -0.392147 2.438548 -0.150162 -0.685312 -6.489474 -0.802014 -0.942563 -1.271543 6.742189 -2.395351 -9.493250 -11.713346 -5.881756 7.196037 -3.071686 0.825921 -3.827088 -0.989199 -5.230475 0.624718 -8.058933 -0.236367 -0.433242 -6.563189 -8.732005 1.595766 -2.068634 -2.536423 2.066657 -5.425043 -1.484294 6.048767 4.283058 3.322244 0.008535 0.235943 -7.832556 -5.824513 0.978876 -5.518062 7.300125 2.712423 -2.107937 -7.669362 -3.301438 -6.518531 7.032359 -2.743093 2.206976 -2.812223 -1.379794 7.097638 -4.581410 0.542565 -6.777920 2.535236 4.447434 -15.230485 8.007365 5.722485 -2.836941 -0.612559 0.136406 1.272522 5.040242 5.099811 -4.374742 -5.311063 1.140046 -2.016556 0.630167 -4.054148 4.585796 -4.777644 0.531286 -5.605546 -3.672943 4.531373 3.582940 0.498320 2.395292 4.742194 0.380789 3.126754 6.871175 6.090480 -1.202417 -5.952668 -13.708627 5.829090 4.157222 -0.666349 -0.389428 -4.552576 -4.876533 2.485840 -2.438294 7.153310 3.040080 -1.646739 7.102922 -8.638849 -7.436723 -4.344145 -0.810848 0.593469 -0.671815 0.792261 -3.242807 3.392126 2.558312 -1.286001 -0.376480 -4.577633 -1.955313 0.844150 6.501248 2.306167 3.372788 8.364849 2.787476 -4.943564 -0.580969 1.997238 -1.169256 -2.325456 -7.416743 -3.204881 -0.457057 1.739062 -3.648008 1.459748 -2.222576 -1.197685 1.896822 -3.339450 -0.122404 -1.268793 5.808577 0.464553 -1.435069 0.646759 2.142355 -0.816201 -10.634203 -6.545602 4.261737 0.756124 1.242774 1.683985 2.181286 0.100168 1.426000 -9.640298 2.306192 3.792643 1.860583 0.911055 -1.063819 1.381836 -2.527945 0.990555 0.886937 1.855769 6.225524 -3.382880 2.309573 5.292939 -0.475269 1.876922 4.524645 0.360168 0.427304 -1.548171 -1.118824 7.930025 3.126201 0.093223 3.516370 0.703681 6.072587 0.008868 5.947633 0.469490 -4.608057 2.834277 -1.612574 -3.756652 -0.468187 -3.749447 3.593057 4.707247 3.526238 -2.949820 2.269551 -1.031314 -0.033139 1.425026 -1.773557 5.414577 3.188423 3.675746 3.865124 6.533021 -4.118521 -0.866189 3.303546 2.082645 0.691413 3.863542 -4.212671 -4.155875 -3.140872 -0.686338 -8.028793 -3.174540 -0.610195 9.949810 -6.341538 0.498853 2.420241 -0.176908 5.455891 -2.287430 0.582840 -4.792246 0.029413 -1.291741 7.062940 0.826078 0.117516 -0.729014 2.040533 2.081778 4.063060 0.201277 -3.730407 -4.440166 -8.676895 -2.477597 -2.444285 2.644313 3.302383 -7.351780 -1.412730 0.173330 6.561428 -8.805124 0.035825 4.376799 3.839238 3.640828 1.140981 -4.140193 0.327098 1.144125 0.328152 3.489902 -3.356655 0.160389 -1.663199 0.829021 -0.144012 1.883671 -0.092225 -6.400803 -4.294877 -0.565668 -0.579497 0.203088 0.953287 3.189868 -3.383779 4.135741 -2.806129 4.159798 -7.590426 -0.849741 -1.981801 -5.235076 -1.894285 7.533413 4.361315 4.625733 -1.393507 -3.126372 -2.684591 -6.708499 -7.525832 1.436011 0.546848 2.836328 2.566400 -0.641625 2.878934 -2.867605 0.476901 1.296406 -2.483529 -0.955960 -0.531749 4.504559 -1.106898 -0.963748 -5.081285 -1.115832 0.215507 -1.038820 4.146396 -1.503641 -6.934754 -8.180608 -4.818567 5.172713 -2.153281 1.221521 -2.898824 -0.269730 -4.667188 0.461361 -5.388642 0.909431 0.280912 -4.926623 -6.442783 0.846781 -1.152651 -1.965723 1.219832 -4.267063 -0.804665 3.843659 2.498121 2.178814 0.555072 0.280801 -6.748408 -5.131733 0.227715 -3.677227 5.314453 3.126797 -0.838120 -4.895642 -2.388968 -5.545580 4.756958 -3.933690 1.247044 -2.233161 -0.505661 5.641671 -3.606885 -0.016305 -5.666352 1.974818 2.550450 -10.137170 6.661102 4.434347 -2.219151 -0.578676 -0.552010 0.895917 3.869383 4.946008 -3.563300 -3.648164 1.035882 -2.065861 0.068992 -2.212784 3.993246 -3.896232 1.539746 -3.979218 -2.390897 2.562386 3.519416 0.087520 2.399521 3.083560 0.427542 2.106093 4.898928 3.902318 -1.532307 -4.765167 -11.370078 3.940950 1.817368 -0.998427 0.357240 -3.441344 -3.492408 1.972268 -0.967991 5.606763 2.008887 -0.414800 5.060183 -6.565931 -5.645121 -2.006623 -0.382266 0.596857 -1.217100 0.839463 -2.134566 1.830926 1.938204 -0.741042 0.031511 -3.654008 -2.205450 0.263680 5.769470 1.765986 1.653289 6.179930 1.834148 -3.376082 -0.197458 0.598919 0.249938 -1.287156 -4.902868 -2.113981 -0.672916 1.033221 -2.793538 2.320800 -1.301740 -1.181242 1.586988 -1.430967 0.213507 -0.306085 4.156559 0.082306 -0.383723 0.324218 0.897969 -1.657400 -7.673258 -5.102942 1.272347 0.324584 1.384283 1.770095 1.263055 0.405291 0.572374 -7.981487 1.038130 3.108987 0.770958 1.212308 0.027757 0.943702 -2.265772 0.397473 1.256391 1.027322 4.420338 -2.442707 2.290461 3.741872 0.066465 1.641136 3.030118 -0.694388 0.286333 -0.905936 -0.261072 5.677127 1.509783 0.098660 1.541978 0.414658 4.449363 0.070488 2.642103 0.657337 -3.337881 2.272638 -1.065021 -2.118690 -0.115963 -2.758336 1.666371 3.255911 2.934004 -2.039577 1.654059 -1.516752 0.140392 0.760362 -1.548229 4.404910 1.537001 3.225105 2.453076 3.650208 -2.975830 -0.482081 2.000553 0.614007 0.011499 0.979698 -2.565994 -2.142309 -3.882522 -0.543025 -6.832022 -2.413933 0.256098 6.286366 -3.733871 -0.306814 1.399365 -0.984553 3.816250 -1.606679 0.502526 -3.614020 -0.146336 -0.726088 3.964719 1.023085 -0.677585 0.412729 1.510987 1.680735 2.999872 -0.432507 -2.522085 -3.314290 -6.835869 -2.056245 -1.472762 2.656538 2.252839 -4.913240 -0.776718 0.804504 4.072381 -5.768887 -0.038292 2.871252 3.218002 0.178359 -0.080858 -3.450037 -0.390395 0.718434 1.143808 3.692620 -2.030649 0.936639 -1.990674 0.743298 -0.156345 1.809823 -0.042183 -3.318310 -3.474387 -0.263503 -0.928091 -0.107517 0.679882 2.369573 -0.509275 3.154599 -1.997380 3.480121 -5.351383 0.672528 -1.852675 -3.079165 -1.236435 4.468594 4.445819 1.940174 -0.697282 -2.417101 -0.784695 -4.765128 -4.899895 0.681088 1.121871 2.384640 1.611378 -0.804919 2.622123 -1.998729 0.618654 0.970484 -1.609917 -0.874805 -0.590500 2.243689 0.105313 -1.140502 -3.466915 -0.248607 -0.003315 -1.906480 3.134632 -1.159574 -3.601672 -5.789045 -3.530760 3.638093 -1.692898 0.562701 -1.961625 0.011118 -3.546658 0.968642 -3.915049 -0.314092 0.287691 -3.682831 -4.474207 0.426516 -0.887032 -1.696822 0.968594 -3.036555 -0.875451 3.503220 1.552892 2.164338 0.299997 0.236733 -3.600508 -3.267585 0.016147 -2.958148 2.728640 2.493139 -0.976576 -4.071378 -1.748592 -3.413777 3.451650 -0.739409 0.945854 -1.821546 -1.061811 3.427874 -2.365183 0.468186 -2.594807 1.039511 2.044321 -8.624680 4.374612 3.354474 -1.619232 -0.707928 -0.829414 0.798465 2.222481 3.107821 -2.185078 -1.718025 0.124987 -1.253611 0.305838 -1.260256 2.806723 -2.358944 -0.045027 -2.969008 -1.952652 2.339829 2.227206 0.431836 1.972858 2.473331 1.151520 2.051802 3.345773 2.248317 -1.440815 -2.453942 -8.007650 2.800912 2.297967 -0.616778 0.483430 -1.931975 -2.626103 0.753071 -0.882345 3.843928 2.145901 -1.044761 3.714711 -3.304140 -3.698468 -2.466221 -0.303012 0.021030 -1.137025 0.240411 -1.459470 1.311438 1.396382 -0.595835 0.570348 -2.517573 -2.328164 0.008857 3.935368 1.401973 1.444509 4.254025 1.168227 -2.590367 -0.760680 0.754467 -0.183120 0.065663 -3.189920 -2.062667 -0.457439 0.823662 -1.831497 0.545563 -1.045528 -0.544939 1.421691 -6.432586 0.443450 -2.984395 12.331816 0.692576 -4.243124 1.251749 3.805117 -2.736611 -20.256379 -12.370779 6.647669 1.713633 0.379992 3.764814 4.354711 -0.311618 2.343207 -19.903342 5.403119 7.795652 3.167974 0.506631 -2.922303 2.465028 -5.366851 1.865100 2.602699 2.193541 11.960241 -6.216138 5.219950 9.900838 -0.544083 4.545738 8.867122 -1.827557 1.436903 -1.382231 -0.303178 15.572977 6.737357 -0.007199 5.610398 2.483500 11.827041 -0.396242 9.752430 -1.691739 -8.314934 5.968436 0.980261 -6.450263 -0.935732 -7.594982 6.047958 10.739497 6.498948 -5.591716 4.759517 -4.337720 0.074015 3.269848 -1.587690 12.466645 6.642480 7.923456 7.965630 13.585476 -6.922859 -1.023801 5.711701 4.061977 -0.892462 7.597209 -7.300605 -9.652928 -5.812205 -2.047303 -16.781952 -5.227034 -0.005395 19.455669 -11.516462 0.391445 3.758263 1.769344 11.201649 -5.574362 0.285078 -8.634329 0.288719 -5.070142 16.221975 1.423930 1.715229 -1.490902 4.544570 4.197720 7.757285 -0.887468 -7.560324 -7.272582 -18.290407 -5.798037 -4.718448 4.995472 5.400160 -15.218226 -2.526973 0.810921 11.501761 -17.572119 0.166018 8.055771 7.342055 7.006900 0.139547 -9.231528 0.691953 1.286949 1.529226 6.762146 -5.600973 0.317009 -4.710893 1.749949 0.133463 3.825772 -0.369243 -12.934491 -7.043499 -1.358122 -2.753075 0.467614 2.724311 6.084427 -6.410705 7.531027 -6.527598 8.979304 -16.073290 -0.796576 -5.500328 -10.964804 -2.992845 10.607132 9.324685 7.595083 -3.551581 -5.654110 -4.183986 -14.732571 -15.141902 2.172353 0.574980 4.993377 3.404628 -1.307445 4.503272 -5.817016 1.337805 4.552911 -5.192812 -1.663898 -2.142935 11.955267 -0.962334 -2.732052 -8.910696 -2.991134 -0.008615 -1.137088 8.624205 -2.695301 -12.891080 -17.479756 -9.177943 9.936840 -3.935341 1.339560 -6.726088 -0.499055 -9.947981 1.891037 -10.401779 2.013404 0.181099 -7.730877 -12.199233 0.841274 -1.781082 -3.489232 0.411332 -8.292829 -1.860682 9.274593 3.440910 4.338428 1.489441 0.679518 -12.038699 -9.877886 1.668574 -5.923450 9.249659 7.146666 -1.098658 -8.905940 -3.959394 -11.600950 8.715298 -5.092458 2.260541 -3.498225 -2.277911 11.620922 -7.211391 -0.785846 -10.345242 2.853191 3.068137 -18.399980 13.925128 8.462025 -5.116087 -1.433775 -1.538945 2.536241 6.612437 9.477560 -6.774549 -6.339070 1.476698 -3.844948 -0.206258 -3.318917 7.568064 -8.160818 3.264682 -7.843666 -4.572988 6.146995 7.346338 -0.155138 4.390645 3.733489 -0.837250 4.419050 9.040119 7.917132 -2.885333 -9.380907 -21.609883 6.496689 -1.243190 -2.077877 -0.982610 -4.554849 -8.040476 2.966988 -0.458808 11.589716 5.103613 -2.899572 9.532880 -12.854817 -11.551933 -5.420363 0.331716 0.874042 -3.502908 0.299945 -4.642585 3.402266 4.050214 -0.094181 0.915049 -8.412079 -4.310934 0.227512 11.389261 2.957280 0.890773 12.128175 4.100440 -5.826160 -1.735684 1.664539 -0.324451 -1.291388 -9.305570 -4.874811 -2.390599 2.606306 -5.302824 5.468361 -2.238249 -0.527180 4.284018 +-8.043411 4.878717 4.230856 -4.164111 12.855186 -1.148360 4.579808 4.769148 -1.331347 6.509146 -13.005417 -5.348280 -4.066747 -9.772572 0.900658 -4.983150 2.963493 2.279185 -3.457214 1.553830 5.716066 -3.378914 -0.822044 -7.147887 -0.236064 -7.567649 -4.854636 0.030553 5.648154 -1.319012 -0.748073 2.328882 14.615039 2.368446 12.210786 9.094933 4.098710 11.758604 -0.022619 0.765971 0.252030 9.330160 -5.483582 -10.925276 1.010080 -7.660436 -6.009161 -5.773458 2.962687 -5.840159 3.382935 7.672645 -0.099844 1.654198 -6.386503 3.504844 9.616540 2.199240 12.386609 4.894251 -6.102340 2.890648 -7.209087 5.355982 -4.848435 6.006542 -0.733028 -9.356550 -1.114338 1.254600 3.027250 -7.836343 -6.707746 4.178652 2.697786 -6.241836 5.582653 -1.502069 -5.542684 -9.855006 -9.084183 2.356858 -0.243827 9.620083 -1.403376 -1.628912 -1.226992 0.277210 2.208540 -10.849309 -3.404635 9.733354 -6.729782 -0.115850 -4.264848 5.300280 0.187276 3.998810 -6.416938 -6.888231 3.267904 0.451405 1.164158 -2.308864 -0.706591 -7.419961 4.242010 2.820045 -1.679872 5.457376 5.638716 5.205538 7.035432 6.710353 -8.109358 3.154981 -9.948432 4.266430 -3.368254 -0.211273 0.603038 2.545758 2.004820 0.988026 7.686560 -11.093795 6.242664 5.437386 -4.921082 -7.674844 1.358855 -8.702737 -10.297306 -2.680422 5.607391 4.550720 1.127047 -4.515970 0.587039 -3.458678 -1.980257 -3.961545 -1.349023 7.857704 -9.683885 -2.305016 -1.875104 -2.557791 -5.336378 7.261451 3.585472 3.803200 11.478479 6.160339 -5.479319 0.517071 -9.684861 1.686601 15.259265 2.176366 -10.278421 5.981223 -5.551232 1.773652 6.216517 4.161639 4.918245 0.511885 -7.377750 -3.127694 0.977598 -3.639138 12.002238 4.539748 4.732032 -8.032521 10.730866 -2.271874 -6.718134 15.049322 7.014821 -11.998684 2.129055 6.751542 -6.675825 -3.138683 4.780255 -6.626435 -2.511677 -7.519855 1.633934 2.764764 -7.760712 -3.833285 2.271982 -11.486667 11.761153 1.486983 2.501920 1.316776 -9.518568 -8.580603 16.206640 0.262632 -1.332561 -3.281913 -3.871334 -4.270214 -12.453855 2.297270 0.830150 -4.639145 -4.603738 -8.939515 3.083217 9.627379 -5.094451 5.202227 -6.351938 -3.073607 3.869141 -0.298335 5.711160 -7.703590 -7.449580 -1.633359 -1.755909 5.883055 -5.729419 6.379794 13.622784 -4.961037 7.060824 3.493935 -4.765837 0.561385 7.299991 -8.142368 10.332361 -3.462731 8.086682 0.033770 8.351254 -7.954694 -4.135420 -0.160732 -0.341532 -4.794862 6.937402 -7.292327 1.216159 2.122037 -8.195367 -4.686591 4.868584 0.236717 2.146082 -0.706231 0.650443 -8.829237 0.583797 -4.659755 1.788426 8.731535 0.077310 -9.588374 0.717088 1.975389 -3.003074 -1.716790 1.765280 -0.665667 9.800633 -9.290813 -0.308280 1.650184 0.036910 -8.367209 -12.427460 0.791132 -9.427288 -6.757050 7.534597 -10.238256 -1.428066 -7.129186 0.632887 -10.763038 -3.782702 2.190077 12.760908 5.245121 -5.544730 3.637640 0.184326 8.572062 0.720636 0.899240 0.793833 6.406463 +-5.029827 4.469057 3.913433 -3.251292 10.455186 0.276880 3.003295 5.662357 -4.014744 5.461783 -8.458685 -0.017546 -1.675214 -6.596922 0.320128 -3.759655 1.026240 0.313225 -1.681886 1.706085 3.167789 -2.855097 -0.409156 -4.284027 -0.926951 -7.636209 -2.236184 0.321297 5.029774 0.601354 1.209555 0.814822 9.097817 0.109845 6.860890 5.266076 3.279468 6.318988 0.071357 -1.002662 0.151202 5.124170 -3.852912 -5.509092 -0.215502 -4.805133 -5.093105 -2.994982 2.004572 -4.792489 -1.949998 5.430864 -0.339109 0.696477 -3.835433 4.329597 5.574405 -1.505300 8.193835 2.319044 -4.678992 -1.365008 -5.138576 5.979925 -2.669914 2.849671 -1.431797 -5.595041 -0.022295 1.438411 -0.558808 -3.873143 -2.145330 3.722433 2.788244 -4.981844 3.476091 -1.681722 -4.709338 -6.361665 -4.271266 2.165467 0.253237 6.653387 -0.028619 -0.339277 1.302649 0.913259 0.554169 -8.074700 -1.757905 8.040409 -4.846007 -1.941780 -5.077834 4.359396 1.030893 2.480938 -3.472391 -5.173651 2.700845 0.762314 0.791787 -5.533819 0.810853 -7.055505 1.556408 1.537609 -0.074290 5.305241 1.221320 3.925702 4.555855 5.457744 -5.543164 2.345212 -6.580013 2.624016 -2.384609 0.155851 -0.897468 1.535768 2.587975 3.082962 5.877785 -7.684239 3.897423 3.094271 -2.914592 -5.540500 0.004040 -5.663343 -6.048005 -1.318745 2.980318 2.312764 1.275021 -2.975120 0.904582 -1.560929 -2.695215 -4.100027 -0.280135 6.374567 -9.386217 -0.998241 -0.517670 0.189567 -3.481811 5.373427 3.486665 2.697460 8.246547 4.079664 -2.449830 4.538139 -6.602940 1.271361 10.114822 3.030103 -6.905433 5.070016 -5.978935 0.099764 2.820306 2.551803 3.273065 2.544214 -7.425905 -3.889133 2.493419 -1.937897 8.372120 3.677378 2.216295 -5.483128 8.112691 -2.593589 -4.442580 9.281278 5.398231 -8.301600 3.020880 4.699945 -5.627992 -1.416715 3.668639 -6.291320 -2.580432 -4.271781 0.467464 2.528700 -4.661356 -2.579209 0.969761 -7.305467 8.420256 1.091283 1.969384 0.134206 -4.503792 -5.723143 9.818729 -0.424068 -0.923554 -3.009556 -2.520634 -5.658935 -7.727242 0.884462 1.710527 -3.674959 -3.437835 -6.710675 0.634876 5.049596 -3.145629 4.177369 -7.661060 -1.549429 2.764338 2.311400 3.928422 -5.978794 -4.091072 -1.764878 -2.033908 3.478853 -5.150951 5.482796 8.763915 -3.085180 7.175059 -0.938752 -5.605069 0.457962 4.347039 -5.864036 7.441139 -0.779208 6.366828 0.835046 5.432367 -5.761403 -1.958097 -1.037070 -2.341890 -2.816657 4.578362 -5.119498 0.214878 1.745255 -5.085185 -3.852497 2.745424 0.369038 0.813195 -0.532914 -0.337076 -5.616896 -0.917004 -3.985145 1.359189 5.224167 -1.817044 -5.805639 1.154844 1.579006 -1.710133 -1.717085 1.081062 0.725026 5.568514 -6.525918 0.124200 0.845444 0.518644 -7.176837 -8.691086 0.622597 -5.377422 -5.728256 4.318551 -8.068552 -1.251450 -4.920775 -0.255401 -8.435613 -4.751449 2.378167 9.458748 1.597927 -4.230870 2.570803 -0.594910 5.299477 0.245129 2.321724 0.226532 2.955406 +-95.177105 74.018855 27.287847 -75.625266 195.344224 -8.111710 26.569150 95.070688 1.482727 77.436828 -178.606836 -43.787512 -29.184485 -147.891099 21.629663 -37.702831 36.177211 43.623458 -52.288267 10.415822 68.540312 -31.814500 2.674471 -101.875135 -7.441183 -98.836593 -52.964864 4.381370 39.789580 16.598600 -20.605925 32.507412 171.741575 32.284688 126.681459 101.072478 73.454355 150.548401 19.988195 37.973541 38.046192 89.825732 -51.068014 -158.459960 32.253423 -103.086498 -91.689668 -74.271832 31.287866 -117.593296 70.807698 95.513620 16.237876 -7.899615 -91.361179 34.680701 122.554899 18.177164 141.747586 75.309543 -106.002775 -7.252783 -80.630405 64.745068 -73.304347 93.354520 20.073643 -128.180800 -40.142696 69.531832 52.892165 -88.730608 -104.829884 17.374445 32.688459 -71.132606 75.896277 -15.485115 -31.105871 -87.727043 -87.925685 48.742050 -23.357336 124.785087 -4.142926 -12.960451 -28.022787 -15.135121 41.733080 -117.577711 -61.837960 119.216145 -70.535612 21.194554 -81.885365 63.320328 12.959730 17.561813 -70.135520 -96.004860 50.276132 27.003248 11.876140 -22.428332 -44.449202 -116.036580 91.115489 68.853062 -29.685662 73.937789 48.888774 56.505276 57.384663 64.938940 -93.021456 49.366324 -145.261496 44.835097 -33.633551 -1.834999 -22.402802 6.940282 46.576303 16.467135 70.859670 -131.214707 123.145156 87.995012 -72.195919 -78.709347 36.785456 -76.911765 -122.330807 -12.089641 69.546241 45.111081 15.950780 -21.541207 8.706913 -54.836691 -57.608130 -71.978452 -42.127608 109.601238 -126.877018 -17.971059 -18.141109 -34.130894 -60.823960 76.165117 42.862449 29.286430 144.966089 63.127976 -66.090022 16.686780 -120.053592 49.928365 223.244846 56.815950 -127.864899 68.352202 -61.123283 35.694306 61.982332 33.536672 37.825607 30.484465 -89.834806 -37.580141 -10.293204 -58.966497 142.648117 82.187326 68.928368 -143.294245 120.757242 -32.494582 -36.475414 203.982819 95.716192 -151.094294 19.453807 126.401634 -92.951595 -31.985875 44.167112 -73.741903 -37.984479 -87.126905 31.334342 39.636887 -118.169115 -88.794300 4.735274 -136.390447 138.697203 28.213539 26.771625 -11.941399 -113.255934 -65.246823 220.510240 6.393896 -17.679834 -16.909807 -49.772635 -56.254994 -166.763064 17.824061 49.321623 -72.803154 -44.180357 -97.059689 11.757685 136.059968 -90.036919 34.269508 -97.000353 -19.756757 57.038839 -11.466138 57.177777 -125.615916 -86.798312 -19.346897 -22.643376 69.243413 -75.330750 63.237355 146.370112 -64.081860 107.524138 63.736688 -36.243178 10.422096 105.682503 -67.035428 136.857094 -44.431960 121.992218 16.482335 119.341998 -90.099841 -34.758206 -25.322206 -27.074134 -63.850039 112.143777 -127.362357 5.212365 66.434529 -73.154305 -82.124109 86.225010 37.922152 51.659037 -26.675844 -3.520953 -78.665798 0.074005 -49.099121 37.393567 99.238931 -26.649061 -133.811357 -15.163366 71.232992 -67.433321 -43.414203 41.893757 8.216008 146.470563 -115.628663 44.072013 32.057162 -0.236728 -144.312601 -136.715621 25.383575 -97.944117 -71.421280 74.559558 -164.875645 -58.960783 -76.247475 44.191792 -126.030843 -28.288252 20.539393 150.315389 50.712178 -51.358815 55.882060 10.058930 80.098795 5.990129 15.864381 14.711671 86.133913 +-2.866092 1.020879 0.367119 -1.123605 6.183030 0.232686 0.993409 3.558322 -2.132399 3.059770 -3.967737 -0.701075 -1.277357 -3.285638 0.409956 0.107650 1.363658 0.325448 -1.454245 0.183485 1.817848 -1.115544 0.222272 -1.795108 -0.292418 -2.789724 -1.405647 0.394693 3.413864 -0.462513 -1.914821 0.453373 5.211353 -0.108396 3.925854 2.636775 2.516868 3.164418 0.407650 -2.405852 0.026790 3.117855 -2.308099 -3.270182 0.283556 -3.199315 -2.948462 -1.173746 1.656927 -1.966963 -0.013093 2.866822 -0.300534 0.646657 -1.762107 2.213278 3.047343 -0.635919 4.897352 1.331146 -2.679133 -1.410613 -2.382755 3.381386 -1.346654 1.847822 -1.646642 -3.847782 -0.962129 0.646169 0.112308 -3.050544 -1.643160 2.149578 1.143953 -2.448778 2.258839 -0.385873 0.705115 -4.697482 -3.468845 0.812447 -1.369353 3.525081 -0.414227 -0.266578 -0.314071 0.149179 0.347567 -4.618007 -0.509711 3.477004 -3.014386 0.127346 -1.999311 1.393981 -0.266196 1.561182 -2.413790 -2.872714 0.849364 0.290957 0.552008 -2.778979 2.632566 -2.521601 0.710827 0.200942 1.284441 2.774030 1.734706 1.298074 2.495340 3.093493 -2.447578 0.028237 -3.269035 1.569191 -1.660245 0.244051 -0.750294 1.427341 2.316947 0.704366 3.529605 -4.782879 1.983931 1.561268 -1.484552 -3.013731 0.370880 -3.147076 -3.482446 -0.506737 2.155145 0.467273 0.198637 -2.065726 1.340558 -0.809342 -2.690458 -0.456308 -0.614457 2.725202 -5.270497 -0.569307 -0.576721 -0.797525 -1.307535 2.991098 2.002698 2.099424 4.335461 2.476952 -2.123449 2.028952 -4.206042 1.484526 5.656044 0.838788 -3.822084 2.527297 -3.396946 0.559844 2.441438 1.759499 2.158082 0.659513 -2.104261 -0.552704 1.613971 0.110700 4.805580 1.136962 2.282099 -2.998727 2.778333 -1.926473 -1.792004 5.060593 2.169577 -5.157494 2.158709 2.248630 -1.472616 0.300388 1.520934 -3.510017 -1.315175 -3.272840 0.547960 2.310752 -3.098792 -1.099358 1.206884 -3.877998 4.671190 0.310930 0.176667 1.245465 -3.265353 -1.020375 5.534629 0.630810 -0.125527 -1.606673 -1.944722 -2.791880 -4.428116 0.609234 0.020444 -1.881098 -1.413336 -3.763718 -0.303427 3.687482 -0.565089 2.250415 -5.606448 0.545535 1.662562 0.382941 2.178369 -2.446521 -2.352416 -0.727877 -1.771399 1.891929 -3.608827 2.334112 3.957181 -2.310060 3.247349 -0.040845 -1.482097 0.360817 1.637450 -3.107584 3.996068 -0.086619 4.054822 0.145570 3.141776 -2.973146 -0.544756 -0.865380 -0.271576 -1.759549 2.650545 -2.945879 -0.146342 1.494439 -2.699718 -3.046502 0.876811 0.223461 0.916683 0.020187 -1.106299 -3.095445 -0.325778 -2.078079 1.121661 2.935921 -1.447067 -3.333556 0.720955 0.519334 -1.194115 -0.725191 0.749154 0.148044 3.415973 -3.671251 -0.594959 0.747046 1.206096 -3.360029 -4.628613 -0.357220 -2.095049 -2.179023 3.362717 -4.527951 -0.943028 -2.640886 -0.159105 -4.572303 -1.239475 0.943845 5.259082 0.997256 -2.207029 1.756830 0.253545 2.500541 -0.171042 1.071196 0.280212 1.251531 +-1.546841 0.289972 -0.223730 -0.589175 3.031948 -0.148628 0.282786 1.463677 -0.040957 1.719459 -1.967056 -1.055568 -0.769163 -1.851635 0.203439 0.001325 0.642609 0.433507 -0.885338 -0.257021 1.012559 -0.379982 0.125755 -0.821941 -0.228024 -1.478595 -0.862448 0.319296 1.458849 -0.685915 -1.082710 0.375040 2.900461 -0.029224 2.290095 1.464678 1.406157 1.852886 0.132718 -0.287970 0.109172 1.621907 -1.195772 -1.836368 0.195540 -1.498206 -1.513250 -0.694273 0.953932 -0.861028 0.954968 1.536235 -0.146617 0.388866 -0.965379 1.000290 1.223305 0.103244 2.643952 0.735136 -1.431739 -0.143045 -1.464763 2.177308 -1.064975 1.157362 -0.724545 -2.196742 -0.730754 0.339101 0.294604 -1.594153 -1.193565 1.145833 0.673995 -1.337277 1.060849 -0.221043 0.571609 -2.145434 -2.102647 0.561185 -0.604025 1.799041 -0.182404 -0.073848 -0.157985 0.191628 0.088972 -2.455185 -0.209882 1.823127 -1.694282 0.388601 -0.863234 0.479562 -0.326927 0.757220 -1.180708 -1.387802 0.428889 0.032029 0.400110 -0.696304 1.039480 -1.231740 0.739924 0.191096 0.432965 0.865497 1.426047 0.384972 1.283545 1.670133 -1.055319 -0.126389 -1.831287 0.914280 -0.566155 0.125841 -0.347696 0.813698 1.012128 0.191328 1.924948 -2.536828 1.021239 0.598806 -0.896798 -1.500136 0.097670 -1.517319 -1.815611 -0.368818 1.280963 0.281253 -0.028126 -1.052265 0.646098 -0.295423 -1.437026 -0.142528 -0.264110 0.970213 -2.109126 -0.248978 -0.376185 -0.673922 -0.804637 1.602278 1.087396 1.253331 2.372567 1.414897 -1.029855 0.396894 -2.333161 0.666982 2.860933 0.058925 -2.108480 1.428976 -1.876957 0.351109 1.266915 1.183630 1.085451 0.255166 -0.671149 0.079829 0.504510 0.215212 2.583499 0.424284 1.093723 -1.267501 1.059735 -0.526865 -0.922340 3.028664 1.194655 -2.770388 0.916631 1.168873 -0.794086 -0.112789 1.013318 -1.703157 -0.530734 -1.860476 0.507885 1.244774 -1.640490 -0.391193 0.855322 -2.083236 2.427446 0.039267 0.001936 0.911351 -2.155466 -0.704540 3.054894 0.202945 -0.014464 -0.878770 -1.169548 -1.127145 -2.341950 0.380188 0.125047 -0.894151 -0.668449 -1.957364 0.115311 2.260709 -0.218226 1.357879 -2.227640 0.131909 0.931660 0.004808 1.137213 -1.083511 -1.124786 -0.256635 -0.710659 0.981878 -1.674861 0.901611 2.144756 -1.278103 1.586400 0.368353 -0.896543 0.031267 0.893377 -1.699667 2.208880 -0.168286 1.128291 0.025845 1.529583 -1.448541 -0.272765 -0.324517 0.180434 -0.904703 1.184679 -1.403026 -0.132939 0.591626 -1.658625 -1.361260 0.386305 0.286619 0.569677 0.108014 -0.632101 -1.590273 -0.114399 -1.028198 0.631897 1.580284 -0.284989 -1.573741 0.627906 0.182645 -0.717828 -0.278800 0.386949 0.012918 1.986274 -2.000110 -0.380157 0.488724 0.597354 -1.738678 -2.304634 -0.477862 -1.267660 -0.891544 1.535033 -2.309881 -0.602712 -1.369480 0.058531 -2.015982 -0.401880 0.415471 2.794287 0.977578 -1.141025 1.004742 0.127607 1.324989 0.074142 0.084372 0.445403 0.918409 +-8.552321 3.779131 2.489493 -3.308106 13.704169 -0.439346 4.279349 5.752096 -3.284490 7.936426 -12.325730 -6.187418 -5.036902 -10.668733 0.645566 -4.577910 3.772590 1.224808 -3.797196 1.439442 5.703460 -4.407036 -0.568797 -6.152138 -0.467007 -8.703840 -4.524789 0.468129 8.820672 -2.463229 -2.786572 1.970255 16.695536 1.609940 13.789286 9.222388 4.820136 11.007018 0.746566 -3.880635 -1.198143 10.397017 -6.588363 -10.176556 -0.515619 -8.298272 -7.087276 -4.860892 4.073278 -4.072711 0.832142 8.195800 -0.979581 2.780378 -6.500576 4.426360 9.088080 1.597000 14.323114 4.035053 -5.608660 0.528989 -7.580300 8.518966 -5.061382 4.408509 -2.858299 -9.180701 -0.295525 -0.034043 0.147997 -6.517241 -5.573712 6.344516 4.663076 -7.333991 5.597168 -1.462649 -6.371037 -11.510975 -10.483703 2.124596 -1.826316 10.462524 -1.495730 -1.114633 0.956246 1.226651 1.210233 -13.100376 -1.651061 10.991879 -7.701089 -1.407408 -4.714857 6.458871 -0.152368 5.180835 -7.518460 -7.067312 2.866678 -0.601812 1.532417 -5.770556 3.125526 -7.648108 3.063444 1.083340 0.499263 7.356866 6.873303 4.630466 8.714401 8.720497 -8.546441 1.127152 -9.568960 4.407048 -4.398355 -0.432832 0.356093 4.166436 3.058992 1.373590 9.980523 -13.381923 4.994059 5.492777 -4.278039 -8.861027 0.353084 -10.081553 -10.578573 -2.881550 6.172572 3.705406 1.207947 -6.524577 1.648045 -2.206277 -3.929476 -1.948781 -0.289769 7.528464 -11.039997 -2.291265 -1.827275 -2.453552 -5.143882 8.752768 4.675760 5.346362 12.292523 6.948497 -6.379697 2.054384 -10.985192 1.985262 16.029058 -0.249404 -11.356613 7.320408 -7.923465 0.926319 6.164162 5.851685 6.804893 0.221480 -7.324952 -2.993154 1.408764 -1.563480 13.386718 3.565592 4.414381 -6.203206 11.368998 -2.484379 -7.614549 14.559438 6.543711 -12.393340 3.561470 5.768356 -8.007496 -2.067837 5.517304 -8.627211 -1.827808 -9.800807 1.832570 4.414499 -7.841400 -1.504282 3.113629 -12.097549 13.172425 0.995056 1.476142 2.413018 -10.124619 -8.673319 16.520070 -0.020410 -0.688239 -4.749911 -5.074140 -6.868462 -12.990219 2.256486 -1.062060 -5.069521 -4.374741 -10.410410 2.164475 10.111086 -2.837456 7.359470 -10.291229 -1.689037 4.338580 2.263116 6.322021 -5.425371 -7.589165 -0.966440 -3.124121 6.049897 -7.771212 7.787618 13.317387 -5.453037 8.076015 -0.225457 -6.958372 1.272471 5.827901 -10.303021 11.349911 -2.571034 6.759101 -0.070679 8.388345 -7.900600 -3.738557 -0.376883 -0.902928 -5.093223 6.263574 -7.040588 0.749702 1.800414 -8.608276 -5.952928 2.986483 -0.671563 2.277975 0.255160 -0.690128 -10.338796 0.532164 -5.622859 2.420188 9.030199 0.150691 -8.388142 2.553993 0.795292 -1.537748 -0.405461 1.191033 -0.949918 9.440521 -10.357023 -2.470133 1.527815 2.010072 -7.248574 -13.806727 -0.789620 -8.817305 -6.533952 9.574014 -11.021083 -0.787372 -7.905293 -0.950401 -11.322519 -4.257684 3.333670 14.828542 5.176688 -7.131596 3.502736 -0.095351 8.766990 0.658150 1.503350 1.321982 5.428100 +-17.253102 15.470439 15.361630 -7.913129 22.440198 7.101721 7.020434 8.314235 -9.828183 19.914402 -26.576202 -8.471887 -9.688362 -16.701191 -2.953688 -17.576629 1.793375 -3.946131 -5.138778 6.416736 9.864889 -13.635746 -0.835748 -11.947489 -3.335259 -21.166725 -11.030807 -0.068426 21.910649 -5.892333 0.629701 -1.775647 31.766571 3.505703 27.320769 19.007885 7.013815 22.881914 1.198618 -1.405766 -7.264796 21.183895 -16.377648 -15.454656 -2.178372 -19.527936 -11.047179 -8.070719 6.296007 -6.948599 -0.477644 17.202611 -4.086270 5.713739 -12.943170 11.442999 16.222658 2.707641 32.096971 4.269880 -10.200460 -1.826975 -18.503938 13.083899 -8.046730 9.252589 -5.799378 -13.518496 6.355668 -6.550373 -1.342973 -13.843292 -7.165229 19.234972 7.154839 -17.987275 8.068040 -8.587955 -30.784668 -22.851624 -16.900649 5.337810 5.623372 19.328567 -0.797880 -0.425099 1.336641 8.618231 -1.621184 -31.424258 -0.836441 25.917846 -14.811161 -4.337095 -9.735498 18.419327 -3.180995 14.108654 -15.428043 -6.260569 6.186846 2.464368 2.691312 -24.383371 3.248860 -24.610156 8.542556 -0.115237 -3.585455 7.144650 12.756360 11.691578 23.208948 23.764735 -23.835272 5.880801 -19.091243 4.993331 -3.277999 -1.370442 1.460420 9.864946 -5.769630 4.651205 24.340431 -28.268144 7.335123 7.941566 -13.084717 -26.117647 -3.325605 -25.000269 -20.729249 -4.634640 7.810446 9.453016 4.127442 -18.026588 -1.119852 -6.910700 -5.133010 -12.814857 8.014407 22.161613 -20.230098 -5.028755 -1.552904 -1.466476 -13.300134 21.320091 12.943262 10.581235 27.261192 13.450813 -6.201946 7.050603 -19.217211 -1.797640 27.543809 9.274722 -25.000075 17.690594 -16.571226 -0.891135 11.520979 11.381472 16.160563 2.370075 -23.743643 -14.784594 8.875927 -3.585547 27.474619 7.124637 8.479733 -4.376058 32.644496 -6.113994 -20.854584 25.073783 15.067296 -21.205019 5.388062 7.484260 -13.535669 -3.099731 16.681701 -17.965134 -0.584503 -13.120247 -4.405188 6.456725 -10.693052 -2.559750 4.173334 -26.425697 33.675447 1.959250 11.927757 6.280629 -20.747383 -28.902290 26.557825 -3.629559 -4.124777 -10.345625 -6.797320 -17.548154 -24.107102 4.444768 1.465082 -13.546890 -12.225085 -23.489860 9.459002 12.544292 -4.833818 18.017719 -18.168580 -13.314036 8.274637 2.274698 16.780813 -7.833818 -14.511494 -5.521124 -3.869869 17.616293 -13.859244 25.810909 32.620911 -6.827327 21.791929 -5.916157 -12.573912 2.166663 11.486984 -24.091873 23.976523 -6.768010 13.193020 -2.011458 15.981571 -15.922306 -7.830208 3.085960 -1.876150 -4.138762 10.257644 -10.525032 1.200192 -3.459270 -22.739700 -5.010022 3.918324 -6.054869 -2.019286 1.878769 6.016689 -20.462622 -3.311248 -14.534858 1.715357 17.734726 1.709569 -15.009257 6.668216 -3.980837 2.545751 6.307656 -0.147242 -1.360531 14.425047 -21.721900 -10.379086 0.142146 -2.733492 -15.434705 -29.060194 -4.359135 -19.577205 -17.494351 17.682732 -21.521399 3.805838 -18.065236 -8.784775 -25.061257 -10.097649 8.848013 32.747030 13.710111 -18.476645 3.706666 -3.345954 22.880702 2.714570 4.441102 3.228169 10.139762 +-97.001704 81.210767 29.114292 -80.564381 205.906034 -9.932579 21.782950 99.365923 7.367891 77.516816 -185.831986 -40.276455 -25.142860 -151.026375 26.495044 -30.461735 32.666400 53.906965 -52.728341 6.550449 71.232993 -29.399426 2.481652 -108.173628 -5.998915 -101.736368 -54.295867 4.190817 30.352970 27.698377 -25.362536 36.452695 166.803360 31.124617 118.471483 103.964143 75.280493 156.331507 20.198867 49.444055 48.701364 87.673660 -48.242764 -169.452133 43.273424 -105.925656 -92.343105 -82.763193 31.049363 -131.754408 83.377341 95.758322 19.741714 -17.123636 -93.905748 34.892983 128.167920 23.458929 139.140621 82.183554 -109.267525 -4.916635 -81.580658 62.791858 -78.946587 102.739415 27.031770 -140.646283 -48.346744 82.352026 65.755090 -88.148152 -110.686883 7.517949 26.261841 -68.304296 77.035790 -15.186149 -22.189108 -80.695603 -87.686188 49.959029 -28.136250 127.815217 -5.410627 -16.673408 -39.295558 -21.141855 50.043223 -109.193078 -74.599945 120.855791 -63.685964 31.587340 -83.875207 56.770145 25.153149 8.385314 -62.829266 -95.789433 52.426683 33.670447 13.042671 -9.011553 -54.558860 -116.002896 100.442332 79.536076 -32.799369 73.445884 39.946491 56.236121 46.917957 55.659482 -88.566254 54.526631 -151.136683 45.572441 -30.869492 -0.128164 -24.182976 0.840271 50.417014 11.394361 63.540900 -126.190635 134.817356 88.717501 -73.645615 -72.078786 45.629869 -67.655327 -123.270456 -10.911982 70.596160 47.309886 11.509289 -9.965510 7.821703 -59.009987 -61.596427 -77.553186 -52.286104 114.841281 -127.123406 -16.273950 -21.170719 -38.286044 -58.555903 69.291089 39.644246 27.410554 145.232903 66.730048 -63.020645 8.365084 -122.486317 57.349985 230.731549 62.938403 -127.204194 62.408057 -51.261400 40.311750 64.421098 26.930737 29.016065 44.239310 -85.108589 -37.660076 -25.822877 -68.189598 141.085190 97.093800 73.135911 -155.913326 117.007205 -34.149090 -29.970601 209.150038 100.584566 -153.221322 17.495619 137.785772 -98.595840 -36.199636 38.781987 -67.047274 -40.509020 -83.904724 34.008174 41.136670 -126.753523 -104.414325 -1.206475 -136.213021 137.318778 30.140509 29.763176 -16.162129 -113.161961 -57.857054 224.080248 11.290543 -19.488396 -12.819960 -48.432656 -57.885342 -169.933706 18.871634 59.135717 -76.623680 -49.708308 -94.841039 7.642246 142.231166 -100.796375 23.456020 -91.004033 -17.611800 58.377428 -15.366105 55.736559 -137.920980 -87.379013 -21.398310 -22.139587 69.313199 -69.457759 57.715596 147.575289 -67.181498 105.910443 83.838407 -26.912385 9.793734 115.651401 -57.811860 135.887496 -46.299036 124.057134 19.766554 122.497089 -89.173234 -33.569488 -27.290957 -28.703853 -64.716019 121.316865 -134.982160 5.023809 76.627583 -74.389433 -81.849717 97.383785 47.858983 63.377336 -31.796163 -3.221727 -75.696750 1.126918 -44.380724 34.078920 100.901023 -30.946441 -142.192513 -23.096352 78.195622 -81.182763 -58.210834 47.772792 10.644726 152.622077 -115.238276 61.039912 34.550447 -5.273198 -157.228983 -127.730770 27.146576 -96.814053 -75.912699 73.348292 -171.870892 -67.967835 -74.335716 55.921221 -126.291947 -29.351089 13.046439 145.423382 48.714988 -40.397250 62.387164 12.973821 79.144325 6.187247 10.799909 11.844569 92.950414 +-24.428567 8.492924 0.317115 -18.519979 58.549247 -2.402340 4.716569 35.550113 -3.219654 22.631284 -42.899965 -9.445020 -8.013402 -38.553507 4.546686 -6.006761 14.508122 6.084065 -19.092931 -1.446479 15.342279 -0.735707 3.630567 -21.015598 -4.652413 -24.695591 -13.906960 4.384734 14.844009 -3.043144 -10.772233 7.413996 51.853491 2.886322 37.559514 23.401834 28.278590 32.706083 5.757926 -1.095119 11.627108 21.957746 -14.811443 -34.300167 0.090690 -26.690433 -32.051155 -10.593421 11.731441 -26.676105 8.524816 25.320971 4.761771 3.106126 -19.533267 15.832706 25.009078 -6.745794 39.986768 17.228468 -36.003749 -10.826562 -20.251566 30.219149 -18.194640 23.610287 -6.065782 -32.463195 -15.869989 19.206896 5.082192 -27.157569 -25.628160 7.484009 13.001741 -21.006639 21.687778 -1.765340 11.408073 -29.916675 -22.711082 15.829477 -8.843763 29.996110 0.376859 -0.412468 0.330241 -3.209882 5.419718 -36.811406 -8.997828 31.457325 -28.115811 1.331635 -28.156520 11.859891 -6.026785 7.400687 -20.162088 -33.441132 11.080792 3.567925 2.320947 -18.130490 5.867935 -27.341457 15.840604 13.810752 1.173929 23.216341 11.187170 12.497897 18.554373 22.338446 -20.449971 7.054382 -39.319325 14.509215 -16.428511 -1.448128 -11.717906 4.053352 22.297816 12.540697 23.914262 -39.483345 29.646087 21.997198 -20.218705 -22.435975 5.852661 -21.431381 -33.552167 0.052749 19.494527 6.440997 6.632192 -10.984297 11.101466 -11.376791 -19.905017 -12.241052 -9.788978 18.200398 -39.778637 -4.932879 -1.590014 -4.963677 -15.502928 26.733020 16.546057 9.725815 42.558096 13.568541 -21.098799 13.178549 -37.086665 14.183818 57.362114 7.883118 -33.815679 23.727565 -29.021841 7.990324 15.669533 15.536531 11.252627 4.004342 -20.579834 -3.257508 6.802529 -5.417501 42.098999 11.210964 18.012327 -36.369959 22.440256 -16.548267 -4.635617 53.349318 26.441661 -47.169295 11.515181 31.376114 -13.031651 -4.148371 14.360344 -29.699152 -14.864003 -27.878116 9.574291 16.186568 -29.754472 -14.795218 9.468716 -34.192981 36.686845 5.160991 -4.448868 1.569311 -31.542094 -13.293294 59.015009 1.729140 0.545997 -4.915048 -17.742395 -14.643955 -46.526961 2.205396 10.604620 -17.600033 -3.569405 -27.521958 0.214522 36.736180 -16.388815 17.295933 -43.195832 2.807228 17.820324 -0.852542 15.732570 -26.321172 -20.747934 -6.448720 -13.065578 15.803833 -34.917776 14.301351 32.479150 -17.471414 36.943141 3.850097 -19.855527 -0.555349 19.396106 -22.321278 40.695744 -3.512609 33.359768 5.835799 30.994059 -25.910856 -6.593142 -13.147715 -8.649033 -20.320589 26.866212 -36.100333 -1.149508 15.760437 -16.353343 -29.168614 16.141571 9.886369 7.044759 -4.978499 -7.410978 -22.161194 -2.331944 -18.237798 16.348846 24.076447 -13.487928 -33.877396 2.847313 20.794195 -19.196999 -5.744797 8.325011 4.074198 39.193710 -32.506868 4.017061 11.924368 11.012231 -39.071451 -41.905960 3.405877 -22.990584 -13.287683 15.672505 -43.462561 -21.971954 -20.086731 8.659652 -33.510824 -8.624771 13.649951 46.287244 11.841731 -20.110984 13.001530 3.296181 16.700498 0.317491 8.857117 7.296865 13.857407 +-8.184069 4.765815 4.773216 -2.821531 10.436471 -0.608526 4.448855 4.247816 -3.686529 7.636376 -11.322216 -5.563102 -5.077306 -9.143945 -0.120298 -5.724984 2.853579 0.651387 -2.287959 2.474148 5.518642 -5.105868 -1.148911 -5.580270 -0.789387 -6.721373 -4.403819 0.106551 9.118016 -4.462763 -1.017535 1.482298 15.484169 1.995502 14.630241 9.573679 3.017060 10.948426 0.979154 -2.917532 -3.086430 10.429136 -6.875785 -9.311078 -0.741483 -7.481746 -4.370245 -4.314509 3.466065 -1.910596 1.362944 7.893169 -1.566795 3.572948 -6.490862 4.067809 7.530647 2.542987 14.213757 3.140089 -4.853678 2.144091 -7.834037 6.383695 -4.270859 3.990718 -2.849400 -7.121987 2.106250 -2.452681 -0.218691 -7.942841 -4.175846 7.712611 2.981252 -7.631615 4.734651 -2.218121 -9.118663 -11.121451 -10.307970 1.976723 0.851605 9.360452 -1.309166 -0.794254 -0.067245 2.767633 0.243083 -13.593336 -0.521258 10.017963 -8.068220 -1.613580 -2.029229 7.497188 -1.471413 6.195224 -7.105464 -5.024076 3.036528 -0.632924 1.637768 -6.618750 3.221936 -7.992710 3.172525 -0.527500 -1.014460 4.787212 8.781264 5.371238 10.168097 9.668609 -8.484257 1.138445 -9.448616 3.638194 -3.288665 -0.539404 1.376706 4.763254 0.035016 0.680226 10.363935 -13.046155 3.232301 4.328127 -3.797120 -10.408763 -0.356973 -11.024855 -9.946648 -3.604496 5.670601 4.334847 1.225821 -7.478910 0.321830 -2.079074 -2.722054 -3.368078 1.507971 8.466201 -9.650114 -2.460676 -1.812833 -2.208909 -5.626078 8.617517 4.800974 5.624470 11.890659 6.871169 -5.205411 1.291136 -9.891327 -0.311778 12.984261 0.157481 -11.106485 7.679341 -7.662252 -0.006596 6.092863 5.984718 7.647437 -0.651896 -8.552376 -4.484191 4.717221 -1.288352 12.476830 1.271001 4.352085 -2.956484 12.554358 -1.013392 -9.669382 13.924301 4.830980 -11.865941 3.519285 3.950958 -5.295586 -1.992081 6.739256 -8.361352 -0.628337 -8.006292 0.043911 3.272845 -6.844090 -0.638633 3.139673 -12.037379 13.560293 0.788501 3.042665 2.987432 -10.301954 -9.654544 14.942159 -0.005209 -1.289417 -5.293238 -4.537271 -6.346706 -11.567748 2.519535 -0.835920 -4.294811 -4.901581 -10.332595 3.730166 8.062733 -2.083456 7.824136 -7.215592 -4.113533 3.894063 1.401047 6.637722 -4.085390 -7.246435 -1.006155 -2.018457 6.994567 -6.306889 9.303029 14.657040 -4.525961 8.142656 0.831493 -5.644135 1.288631 5.493869 -11.270155 10.806119 -3.050056 6.372308 -0.642740 7.326867 -8.463868 -4.282955 1.147229 0.760301 -3.525243 4.439760 -4.749727 0.941986 -1.080624 -9.679623 -3.605090 1.794115 -1.927294 0.444299 0.849644 0.925162 -9.481931 -0.424932 -6.586178 1.713729 8.930086 0.990666 -7.667768 3.281153 -1.078279 0.289088 2.009865 0.478436 -1.243144 8.047002 -10.081623 -4.287314 0.639512 0.599782 -5.945313 -13.377593 -1.180605 -9.061473 -5.921930 8.331328 -9.264116 1.246537 -7.762974 -2.403814 -11.843324 -3.109438 2.693648 14.437975 6.147876 -7.589815 2.636736 -0.917609 9.672541 1.468884 1.208003 0.568298 5.738695 +-9.263862 7.430801 6.376737 -4.599602 12.355584 3.231458 2.512339 3.949086 -2.859136 10.093119 -14.617738 -5.706772 -5.225100 -9.415747 -1.206674 -8.459246 1.147937 -1.257856 -3.569047 2.407411 5.559539 -6.430965 -0.195192 -6.904224 -1.413702 -10.403784 -6.445174 -0.017381 10.126214 -3.356986 -0.477843 -0.515054 16.837727 1.822763 13.377354 9.818930 4.378430 12.939264 0.124807 1.380631 -2.538534 11.222582 -8.240564 -8.725657 -0.205653 -10.580448 -5.794393 -3.912620 3.609985 -3.960593 1.812261 9.097947 -1.630955 2.285026 -7.152011 5.688041 8.745201 2.361933 16.741492 2.935438 -5.775967 -0.225131 -9.882844 7.224508 -5.444117 6.491865 -2.260880 -7.990874 1.549296 -2.316310 0.850471 -8.206303 -5.863195 8.819736 3.234491 -9.064749 4.673547 -4.184747 -13.495922 -11.293117 -9.514372 2.960247 2.352797 10.145928 -0.671029 -0.542961 0.097171 3.855770 0.008653 -15.720950 -1.446397 12.860060 -7.779688 -0.611597 -5.173283 8.406221 -1.917279 6.554030 -8.172179 -3.549716 3.186357 1.636491 1.474013 -10.682629 1.056577 -12.580865 5.791869 0.886450 -2.348895 2.905074 7.375006 5.740214 10.967810 11.577125 -11.656782 2.186106 -10.597677 2.325779 -1.278096 -0.585917 0.545853 4.759437 -2.594554 1.611608 12.165571 -14.466439 5.007868 4.093794 -7.648658 -12.791832 -1.025098 -12.252021 -11.341796 -2.117070 4.544253 5.001639 1.838603 -8.403006 -0.285058 -3.932089 -3.313801 -6.098417 3.094345 10.840707 -9.802873 -2.673116 -1.092237 -1.602435 -6.800618 10.633634 6.274747 5.153703 14.502824 7.001217 -3.647764 2.808018 -10.244149 -0.019823 15.207977 5.189495 -13.422123 8.629766 -8.270068 0.637413 6.369413 5.659254 7.746429 1.818266 -10.825426 -6.415347 3.240139 -2.481213 14.371646 3.672874 5.037922 -3.298512 15.692597 -2.615513 -9.649120 14.677473 8.120968 -11.585330 2.711546 5.068384 -6.492601 -1.911611 8.263451 -8.432371 -0.436919 -7.299384 -1.446061 3.510805 -6.510628 -2.414204 2.058736 -13.937654 17.418428 1.155262 5.649981 3.640089 -12.077766 -14.743101 14.662917 -1.845477 -2.134839 -5.046175 -3.724911 -8.055864 -13.314691 2.554636 1.432576 -7.297986 -6.172675 -11.977610 4.992015 8.037715 -3.411872 8.713057 -9.090899 -6.604222 4.376652 0.319724 8.991277 -4.304699 -7.790014 -2.639825 -1.817957 9.271973 -7.311196 11.714080 16.919217 -4.278642 11.108662 -1.347663 -5.814807 0.601641 6.835091 -11.559158 12.654230 -3.645271 6.583260 -1.208635 8.911576 -8.403499 -3.917066 1.489141 -0.403414 -2.487276 5.786816 -6.327226 0.572484 -0.898148 -11.641363 -2.807520 3.143575 -2.393534 -0.023899 0.595202 2.555453 -9.961152 -1.435916 -5.964208 1.074686 9.555347 1.307497 -8.445363 2.602473 -1.323775 0.032211 3.031977 0.569406 -0.919125 8.875688 -11.402453 -4.359505 0.564017 -1.741242 -8.833963 -14.650761 -2.727900 -9.749033 -8.428385 9.476954 -11.768049 0.925591 -9.175440 -3.222325 -11.722095 -4.558973 3.858955 16.614915 7.876309 -9.226691 2.722638 -1.118897 11.767683 1.300430 1.199897 1.951093 5.706703 +-89.964612 76.169400 24.339499 -75.942421 193.405731 -9.638379 18.978009 95.533442 6.237475 71.373144 -173.522159 -35.469652 -22.382082 -142.520451 25.860761 -24.526194 31.213166 51.723780 -49.108039 5.842261 66.876286 -27.335867 2.826334 -101.868280 -5.280595 -93.755769 -48.891421 3.682113 27.310473 28.231741 -26.632366 34.585942 154.248366 29.453640 108.705521 96.270428 71.070445 145.874006 21.159969 44.608752 46.508074 80.884569 -44.016100 -160.023314 41.873995 -99.334878 -85.433067 -77.398712 28.933298 -124.268406 79.937174 88.923764 19.383101 -17.517200 -88.844558 31.170487 119.775212 22.131450 128.699673 77.839667 -102.080049 -7.843774 -74.662324 57.726723 -74.328002 96.309747 27.338797 -131.280097 -46.260968 79.304575 62.182582 -81.952927 -103.958558 4.428418 23.368582 -62.974017 72.804338 -13.394720 -16.756111 -73.631213 -81.435566 47.126044 -29.141371 120.248500 -4.580427 -15.472546 -39.205848 -20.966744 48.438483 -100.308418 -70.781587 111.071065 -58.075874 30.825592 -78.200589 53.418394 24.358290 5.945068 -57.954272 -89.683974 49.624403 32.740631 12.281985 -7.993691 -51.257497 -108.352539 95.841513 75.530230 -30.644517 69.490440 37.433871 51.762261 41.466038 50.339898 -80.318782 50.006415 -142.268762 41.901129 -28.447705 0.272866 -24.061481 -0.089260 49.238506 9.135903 57.402492 -117.186719 127.981749 84.498106 -68.020823 -65.644770 44.739897 -61.279048 -114.520838 -9.556228 66.511849 43.224942 10.385270 -7.078385 7.971240 -55.564147 -60.527566 -72.178295 -51.234086 108.333824 -120.166557 -14.721505 -20.147259 -36.566882 -53.508017 62.938810 35.710784 24.959488 134.656774 62.082925 -59.610226 8.336489 -114.067931 55.764879 216.927194 60.139181 -118.131695 56.927698 -46.774575 38.532650 59.796430 23.705653 26.088886 42.516097 -78.549589 -34.564640 -24.820004 -64.426441 130.917596 91.285980 69.997444 -147.123880 108.129565 -31.727642 -25.561568 195.157343 92.957559 -142.696507 16.594859 130.662861 -91.629494 -32.319649 34.158658 -61.779675 -37.147176 -78.491451 32.327449 39.129196 -120.452632 -100.072618 -3.140539 -126.245910 127.258618 28.846402 27.654957 -16.768448 -105.009321 -47.418880 209.963958 11.563396 -18.511474 -11.462000 -45.421095 -55.827178 -158.639112 17.504010 56.178321 -71.825601 -45.701971 -87.613287 4.317697 133.726207 -95.140415 18.537202 -86.099711 -14.162646 54.674719 -14.099518 51.176749 -130.005743 -81.333430 -18.778718 -20.902584 64.644002 -64.845226 52.825710 135.994459 -63.456713 98.324366 80.910541 -20.910569 10.193109 108.996670 -51.619225 126.412347 -43.468986 117.809966 19.238687 115.247233 -83.039029 -30.314162 -26.887412 -27.249006 -60.257398 114.675631 -127.646100 4.180094 74.258679 -67.034693 -78.096018 92.158849 46.659877 61.366689 -30.761618 -4.482360 -68.326708 1.013329 -41.043577 32.517111 94.117770 -30.862254 -133.705827 -23.521926 75.254219 -77.068907 -55.552216 46.204842 10.538869 143.914228 -107.187997 59.603369 32.506809 -4.256170 -148.009383 -118.007694 26.428918 -87.403882 -69.325504 68.915116 -162.280615 -65.224575 -68.388505 54.633642 -118.843892 -24.909443 10.461478 133.794717 43.280206 -35.570007 59.012179 13.000929 72.163078 5.455664 10.342300 10.229471 87.184638 +-6.408552 4.564690 4.795434 -2.703361 9.433918 2.448561 1.883251 4.375390 -2.753407 7.229597 -9.715159 -3.384524 -3.538912 -5.640137 -0.819614 -5.365778 1.111214 -1.104124 -2.878052 1.356534 3.639295 -3.598490 0.005864 -4.405961 -1.132071 -7.367518 -4.348236 0.069161 7.560545 -1.629768 -1.131576 -0.553812 11.997025 0.765660 9.756469 6.447439 3.722138 8.085456 -0.001872 -0.528650 -1.636215 7.733998 -5.964332 -5.627822 -0.635338 -7.646915 -4.585173 -2.428604 2.704036 -3.014971 0.216289 5.950974 -1.075890 2.122080 -3.897636 4.473913 5.633470 0.847710 11.599248 1.757010 -4.640119 -0.817404 -6.676657 5.829732 -3.185156 4.433883 -3.038119 -6.027924 0.470168 -1.650243 0.122501 -5.611731 -3.093925 6.475278 2.526137 -6.107979 3.659515 -2.527260 -7.090836 -8.528192 -6.482435 1.961204 0.728386 6.747501 -0.713764 -0.310199 -0.045883 2.540480 -0.210128 -11.088748 -0.741600 9.151057 -6.029134 -0.740268 -3.980659 4.735487 -1.325557 5.067299 -5.301878 -3.230262 2.004497 1.121355 0.821786 -8.124072 2.619160 -7.893696 3.057473 0.427268 -0.386506 3.148022 3.633921 4.171163 7.917722 8.310841 -7.586036 1.624800 -6.838083 2.097885 -2.347959 -0.276795 0.058012 3.616205 -0.531667 2.021542 8.721832 -10.125703 3.140293 2.759155 -4.952064 -8.444002 -0.755284 -8.714793 -7.887152 -1.410462 3.105185 3.139482 1.187469 -6.465731 0.473279 -2.664405 -2.522808 -3.868800 1.988660 6.251488 -7.829785 -1.982068 -0.586164 -0.668478 -4.459283 7.855928 4.617256 3.738162 9.744375 4.857502 -2.849969 2.148647 -7.463950 0.216577 10.373955 2.225674 -9.070683 6.128062 -6.416143 0.195295 4.835828 4.029454 5.246853 1.670903 -7.096930 -4.202504 2.022505 -0.907590 10.315341 3.080291 3.455789 -2.847705 10.064653 -3.724790 -6.631834 9.755093 5.756068 -8.635470 1.840261 3.033278 -4.430409 -0.978059 5.307415 -6.697715 -0.782376 -5.545666 -1.056554 3.017472 -4.304465 -1.228164 2.493527 -9.495064 12.033603 0.657073 3.097721 2.391241 -7.884086 -9.079113 10.395582 -0.707332 -1.173332 -3.532385 -2.690526 -5.830932 -9.282220 1.461636 0.459109 -4.722929 -4.093901 -8.446335 3.060750 5.230774 -1.816024 6.380633 -7.901552 -3.838803 2.969290 0.055857 6.096847 -3.441841 -5.239035 -2.649302 -2.351990 6.227615 -6.170939 8.029343 11.353836 -2.900957 8.034251 -1.607217 -5.239418 0.006583 4.102011 -8.200603 8.615277 -2.167444 4.722143 -0.679527 6.112014 -5.890079 -2.536990 0.222625 -0.600376 -2.150833 4.397024 -4.461458 0.308610 -0.607327 -8.116082 -2.370847 1.652924 -1.773955 -0.220133 0.523213 1.256970 -7.970422 -0.935615 -4.895627 0.715225 6.453405 -0.041626 -6.265440 2.286312 -1.232553 -0.567759 0.976524 0.061542 -0.595566 5.788888 -7.851772 -3.560917 0.866657 -0.437561 -6.292405 -10.097336 -2.276379 -6.673186 -6.017744 6.457059 -7.832155 0.185278 -6.292216 -2.645066 -8.438149 -4.201031 3.476191 11.852217 4.985438 -6.689576 1.897490 -0.722021 8.140994 1.090270 1.482089 1.081782 3.204084 +-11.038746 8.460072 9.392590 -4.004718 17.473632 2.090475 7.861475 9.631224 -10.307558 11.718141 -16.450181 -4.330177 -5.703563 -11.832600 -0.322208 -9.975624 3.124813 -1.473831 -3.483022 4.196682 6.399397 -7.192881 -0.846468 -7.948748 -1.631260 -13.141780 -5.386044 -0.171084 14.665905 -1.107573 0.536116 0.076345 20.722336 1.781284 18.396395 11.877667 4.710696 12.374213 0.754970 -6.275135 -4.034138 13.285125 -9.893054 -11.007799 -2.962362 -11.308107 -9.019229 -4.737295 3.935902 -6.650175 -5.302914 10.550696 -1.977025 4.610967 -6.797282 8.130845 11.688706 -0.719708 19.100869 3.514500 -8.081929 -2.956155 -10.608191 10.251366 -3.231300 4.602670 -5.540299 -10.508441 2.639379 -2.288382 -5.013952 -7.379882 -2.690026 11.485066 6.171612 -10.748175 6.436014 -3.426259 -16.236340 -14.675534 -10.496959 3.059657 1.279136 12.958068 -0.785862 -0.668443 3.235828 3.396795 0.084328 -19.491250 -0.968291 16.558179 -11.011865 -5.302259 -6.868730 10.212904 -0.408377 9.341508 -8.913720 -7.989067 3.879376 0.713677 1.273688 -16.408685 3.418539 -13.854498 2.103422 0.063530 0.641237 11.060277 5.887532 8.316607 13.019180 14.231074 -14.881698 3.996543 -11.371570 5.529598 -7.192838 -0.297773 -0.100755 5.406686 1.912782 5.012433 14.614960 -18.184758 5.066057 6.946145 -5.227107 -15.070067 -1.334520 -15.962183 -13.276448 -3.217949 5.974453 4.976891 2.777044 -10.891377 1.340916 -3.265375 -3.381650 -5.843876 2.436532 12.351895 -17.710476 -3.283529 -1.223417 0.157934 -8.004383 13.365612 7.793685 6.902923 15.835159 8.219955 -6.398362 6.926212 -12.949370 0.783793 19.924461 2.363110 -14.620469 10.988641 -12.318454 -0.661365 7.491111 6.140623 9.858979 2.246628 -15.195608 -8.349480 7.030283 -1.864072 17.887860 6.142631 5.279696 -7.651277 19.621982 -7.774227 -12.767821 16.515408 10.238873 -16.827562 5.871709 5.636106 -11.681963 -1.387763 8.711698 -13.632945 -2.001481 -10.870168 -1.765391 5.028155 -8.001671 -1.549462 4.077699 -16.371974 19.577656 1.892378 5.265849 2.384731 -10.444881 -14.839365 19.568511 1.118714 -1.783687 -7.233083 -5.085864 -13.791569 -15.911692 2.353241 -0.925532 -7.441664 -6.973640 -14.794014 3.059430 9.033294 -3.098107 11.516351 -15.594949 -4.260506 4.983889 3.537147 9.330018 -6.561034 -9.746735 -4.311438 -5.168714 9.165781 -11.066412 14.800482 19.056443 -4.977378 15.215950 -4.528291 -11.640871 1.405652 6.607691 -14.877356 14.528949 -3.215051 12.202743 0.018104 11.093407 -11.566868 -4.802797 -0.144915 -4.553828 -5.032065 7.958729 -8.246856 0.894412 0.386994 -13.077224 -6.745647 2.515749 -3.426423 0.913745 0.291274 1.830821 -15.139974 -1.010039 -10.400878 2.214192 11.390959 -1.528523 -11.277632 4.006118 -0.851872 -0.135145 -1.832420 0.412964 -0.753903 9.385440 -13.787927 -5.542843 1.180103 1.049789 -10.449090 -19.009002 -0.668047 -12.877135 -11.904883 10.674369 -13.605061 2.347590 -10.927146 -4.917653 -18.893649 -9.573405 6.143392 20.917489 4.533273 -11.019728 3.336683 -1.399072 13.044520 1.569550 5.531839 0.618645 5.443355 +-12.112577 6.965780 5.555496 -5.460346 19.803095 0.772902 7.064277 8.296629 -4.650214 12.214510 -18.465911 -7.464170 -6.197978 -13.910841 0.236099 -7.972338 3.507559 0.618501 -5.474010 1.636793 7.689330 -6.015601 -0.642801 -8.929461 -1.296964 -13.227541 -6.984792 0.538364 12.656040 -2.891798 -2.077236 1.350826 22.534773 1.800419 19.000350 12.753556 7.086547 15.521096 -0.179085 -1.334706 -1.391408 14.280811 -9.667766 -13.867731 -1.058368 -12.157331 -10.189340 -6.470919 5.234007 -7.566514 2.369932 11.624206 -1.272186 3.540950 -8.203422 7.595911 12.630284 0.983150 20.465197 5.360778 -9.532553 0.329412 -11.747535 12.636556 -6.121245 7.847076 -3.610701 -13.447910 -0.699102 -0.265699 -0.363424 -9.982751 -7.318256 9.649923 5.899252 -10.778351 7.485258 -3.452858 -10.634161 -15.534173 -12.995322 3.675848 0.026100 14.276512 -1.513651 -1.516314 1.023020 2.237478 0.954399 -19.192611 -2.873115 16.851254 -11.568894 -1.720509 -7.705278 8.412786 -1.338819 8.040819 -10.118237 -9.211683 4.001039 1.177797 1.778578 -10.555941 2.020603 -13.036344 4.823470 2.239199 -0.622837 8.562656 8.683643 6.768033 11.982067 13.286829 -13.168899 3.801355 -13.816101 6.259634 -4.984475 0.093143 -0.087891 5.300645 2.892705 3.022643 14.563845 -18.575259 7.337224 6.681917 -7.470081 -14.036869 -0.345929 -14.921926 -15.342701 -3.215440 7.397923 5.843816 1.919242 -9.684994 1.835455 -3.876183 -5.083885 -5.358360 0.925331 10.884595 -16.040538 -3.587895 -1.939548 -2.091498 -8.582057 13.670262 7.622577 6.980578 18.114385 9.491066 -6.789418 4.068681 -15.109054 2.214666 22.251510 2.670914 -16.297369 10.666426 -12.584035 1.586223 9.004322 7.349444 8.990684 1.880759 -12.200184 -4.667370 4.685036 -2.728119 19.437815 5.801267 6.540269 -9.292049 16.982781 -5.415953 -11.176369 20.801305 11.589156 -18.967685 5.246050 7.727259 -10.119540 -2.522585 8.970817 -12.521192 -3.157509 -12.192420 0.958474 5.759096 -9.942897 -2.969324 4.442536 -17.444106 20.234711 1.409008 4.083400 3.672373 -14.271049 -13.672423 22.616155 0.077459 -1.632099 -6.355582 -5.856551 -10.816839 -18.178018 2.990603 0.491635 -7.941094 -7.201350 -15.137608 4.302743 13.387511 -4.866952 11.019217 -13.287305 -4.239357 5.990972 1.650907 9.889952 -8.433785 -10.516985 -3.683009 -3.811542 9.688757 -11.279598 11.962176 20.273678 -6.827922 13.978227 -0.085166 -9.782311 0.466269 8.700230 -14.279237 16.385555 -3.765011 10.048976 -0.602570 12.044678 -11.824642 -5.249157 -0.580629 -1.488830 -6.138997 9.046005 -9.939812 1.162147 1.467356 -14.201741 -6.982983 4.868434 -1.223033 2.252170 0.218433 0.618128 -14.513026 -0.625256 -9.550057 2.505167 12.681366 -0.555634 -12.918550 3.363567 0.232528 -2.751064 -0.966731 1.335840 -0.647992 13.031564 -14.626510 -4.064443 2.301184 0.864526 -12.511355 -19.906235 -1.465660 -13.512252 -11.092357 11.596700 -15.193736 -0.659494 -11.629669 -2.210073 -18.345462 -7.560026 5.031249 21.634729 7.499667 -10.000669 4.897050 -0.264238 13.787877 1.303894 2.882406 2.670020 7.266141 +-11.541932 10.716323 10.924848 -5.654225 15.763534 1.022133 8.325325 6.910410 -8.892427 12.242949 -17.436154 -5.115061 -5.804213 -13.369451 -0.692677 -12.796328 2.445004 -0.621265 -2.258657 5.972624 6.748253 -8.853756 -1.282902 -8.146142 -2.420112 -14.777344 -5.482327 0.467405 14.689132 -3.566934 4.011229 0.344954 21.921112 1.654262 20.356557 13.860201 4.246812 14.106214 1.862331 -4.725576 -4.543901 13.668494 -10.057169 -11.594988 -3.352224 -10.030736 -8.975449 -6.320970 3.955477 -6.358010 -5.009351 11.779790 -2.122022 4.308799 -9.131233 8.843670 12.770450 -0.282939 20.411298 3.582210 -6.911459 -0.502615 -11.247726 9.644154 -4.713407 3.454383 -5.281772 -9.167519 4.975297 -2.500833 -5.947905 -7.116710 -2.855860 12.171150 6.558497 -12.580304 5.862100 -4.868829 -20.563039 -15.911333 -10.265497 3.922636 4.174403 13.683274 -0.332169 -0.201662 4.176068 4.734498 -0.909565 -20.508818 -0.476791 17.025759 -10.918889 -7.437326 -5.037361 13.779117 0.526716 8.687302 -9.371535 -7.673120 4.533009 -0.673638 2.021813 -15.920597 1.865709 -15.108617 1.555955 0.117540 -1.491794 10.753833 7.706306 9.523546 14.853292 15.011609 -16.816958 4.694773 -13.841766 5.326786 -5.754429 -1.029335 1.019102 5.363597 -0.061958 5.600305 15.021521 -19.293424 5.602538 7.113340 -5.188313 -16.455866 -1.595071 -15.813178 -13.372637 -4.115351 6.052668 5.959301 3.319145 -10.968828 0.500754 -2.889393 -0.896057 -7.252440 4.102153 14.738265 -16.596776 -2.837936 -1.232582 -0.020997 -8.673432 13.408066 8.397979 6.762497 18.007846 8.669098 -5.623328 7.551238 -13.469418 -1.264618 19.356300 2.840203 -15.113325 12.545953 -12.183930 -2.052979 7.015833 7.918607 10.411359 1.215445 -18.024164 -10.874108 8.751324 -2.949010 18.176820 3.309425 3.828435 -7.305379 22.812678 -4.220274 -14.129539 18.399217 10.450797 -16.575486 5.415161 6.058429 -12.855212 -3.393338 11.053562 -13.935667 -2.158731 -9.657048 -1.982359 4.224081 -7.651470 -1.682871 2.753932 -17.179177 19.858093 1.396618 5.087918 2.604276 -11.203525 -18.127542 19.598410 0.242262 -2.204441 -7.504489 -5.508840 -12.279463 -16.904033 2.801821 -0.057538 -7.827360 -7.382757 -15.156650 4.824445 8.616510 -3.672046 12.001211 -14.672007 -6.682252 6.250223 4.945833 9.089043 -5.707342 -9.843154 -3.015005 -3.222107 8.989537 -9.590534 17.240365 21.281605 -4.856799 15.401640 -5.189598 -13.213340 2.926754 7.770406 -17.274634 16.589789 -3.436309 11.510855 0.341305 10.296793 -12.239831 -5.726271 1.241054 -5.089705 -4.748645 6.458512 -8.096648 0.922949 -1.255140 -13.605610 -5.806851 2.695568 -2.901872 -0.809792 0.845300 3.964429 -14.681575 -1.722061 -11.069075 1.897762 11.894894 0.469045 -10.928838 5.288090 0.111583 1.766922 0.190440 -0.286108 -0.098636 9.647275 -14.896819 -5.041694 0.282861 0.390422 -10.677075 -20.741150 1.208348 -14.809943 -11.805792 9.626187 -13.957935 2.565752 -11.680479 -4.736748 -19.368406 -8.488783 7.003245 22.166864 5.982735 -12.188466 2.509568 -2.782644 14.197463 1.884630 4.758393 0.984867 7.120970 +-2.752776 2.652207 1.908962 -1.970319 6.277470 1.757606 0.486394 4.649079 -1.706864 3.416928 -5.136168 0.602876 -0.227688 -2.631531 0.092169 -1.667901 -0.364737 -0.239997 -2.211906 -0.850104 1.550099 0.411453 -0.273973 -2.321649 -0.717485 -3.301134 -2.318105 0.001679 2.668833 1.259440 -1.171392 -0.355054 4.782551 -0.649890 3.798591 2.734093 4.256495 2.816350 -1.046849 2.381065 0.974399 2.627939 -2.573308 -3.012662 -0.184600 -3.721132 -3.574445 -0.200401 1.144429 -3.308783 1.310124 2.622679 0.145452 0.176899 -0.087603 3.501428 1.403238 -1.896948 4.409191 1.613148 -5.128081 -0.925034 -3.529074 4.583193 -0.849927 5.199865 -1.538669 -4.203285 -1.763182 0.775457 0.961468 -3.098652 -1.110416 2.205153 0.572572 -2.122427 2.401300 -1.366460 -0.043630 -2.105995 -1.875971 2.038271 0.000765 2.609560 -0.083998 -0.484311 -0.302938 0.545615 0.000220 -4.401189 -1.456479 5.259863 -3.142783 0.225801 -5.443385 -0.953715 -0.390296 2.145635 -1.011567 -2.430766 1.631157 2.247061 0.044326 -4.377492 0.877039 -4.091501 1.285790 2.158570 -0.042579 2.057428 -1.248689 1.340292 2.697065 3.350451 -1.785599 1.788125 -2.629842 1.473369 -1.837500 0.579682 -1.256005 0.819068 2.438149 1.909372 3.243212 -3.560535 2.418437 0.857595 -3.353903 -2.864170 0.073159 -3.618827 -4.148390 -0.047514 0.952481 1.708116 0.063742 -2.180677 1.052223 -1.950819 -2.273744 -3.725083 -0.060369 -0.013781 -4.551141 -1.304779 -0.086219 0.570287 -2.166621 4.459807 2.582995 1.339726 4.607502 1.709931 -0.102338 0.840772 -3.636520 1.374244 5.477944 1.447866 -4.161470 2.546197 -3.896834 0.934102 2.084383 1.020571 0.623624 3.934951 -3.119281 -1.316860 -0.195357 -0.902439 4.524567 3.487817 1.372548 -2.653386 2.806815 -3.968499 -2.537667 5.384219 4.086469 -4.847541 0.188394 2.130410 -0.046297 -0.834548 1.883052 -3.701321 -1.964797 -1.822570 -0.763538 1.584443 -2.362531 -1.560080 1.991992 -4.047201 5.369659 0.527514 0.699908 -0.482359 -3.678582 -2.283468 4.993228 0.026455 -0.868055 -0.925710 -0.377564 -2.689322 -4.063452 0.433251 2.443871 -1.794204 -2.599919 -3.513824 1.048609 2.842398 -2.101642 2.463968 -4.389077 -1.750382 1.364422 -1.620069 3.467968 -4.977600 -2.224324 -3.447753 -1.540946 3.074419 -4.104971 2.435849 5.145308 -1.366092 5.186125 0.390131 -3.269897 -2.136617 2.524365 -2.422437 3.971368 -0.103302 1.312625 0.168354 3.242008 -3.062509 -0.855349 -1.325102 -0.307747 -0.794081 3.231410 -2.646423 0.207081 -0.129358 -4.020848 -0.877380 1.914742 0.063548 0.081453 -0.440622 -0.313653 -3.538331 -1.274321 -2.711904 -0.011664 2.960611 -2.216446 -4.465840 0.379439 -0.152372 -3.012012 -1.601904 0.559208 0.369751 3.401548 -3.376702 -0.499605 1.514077 -0.477769 -6.050767 -3.094872 -2.162312 -1.989933 -3.383170 1.205498 -2.852327 -1.684174 -2.469101 -0.549280 -4.348161 -4.152998 2.155597 4.981336 1.418450 -2.505927 1.362977 0.097260 3.879470 1.179175 0.927325 0.462966 0.834953 +-34.231164 18.952815 3.637411 -24.310861 73.692861 -5.761974 6.816649 35.286771 4.293974 28.861675 -61.722801 -17.411311 -11.152583 -52.105675 9.015788 -7.583917 14.516397 15.952306 -19.918508 -2.348983 23.693253 -6.063926 1.215306 -34.192674 -2.079928 -35.966556 -19.938543 2.803569 12.817916 4.483655 -13.351127 13.950482 62.403607 9.118719 43.668728 35.914977 28.974684 51.742903 6.283827 13.536312 17.216916 31.526387 -17.865068 -55.470634 10.863170 -35.901580 -35.129469 -25.921553 12.997719 -40.229281 28.310614 33.208654 6.241404 -1.998835 -31.910692 12.938578 40.569617 5.333808 50.191813 27.040308 -39.800557 -1.785460 -27.286407 30.714856 -27.772631 33.382171 4.713943 -48.417275 -18.205902 27.382604 20.583602 -33.203307 -38.402299 4.508995 10.927694 -24.539003 26.666999 -2.781265 2.833536 -31.431535 -33.229872 16.819512 -12.175039 43.111888 -2.757957 -6.099822 -11.865203 -7.486218 15.866474 -39.648390 -23.295625 42.616406 -26.302905 10.186119 -30.520931 17.157490 6.433754 4.640586 -20.624574 -35.257114 15.186410 8.269837 4.543702 -3.189666 -11.761526 -36.591438 31.036885 22.378845 -7.042991 26.113068 14.971183 16.400740 17.657895 20.354955 -27.032387 14.435294 -51.511883 18.422788 -12.304501 -0.958533 -9.869842 2.230879 21.668318 4.911464 24.963563 -46.119801 42.883473 28.060068 -24.097683 -25.113686 12.535519 -23.891378 -44.142101 -2.397995 25.985492 14.978899 3.881559 -6.244934 6.829910 -17.250360 -23.266083 -21.517201 -16.413650 34.203682 -43.077908 -6.281043 -6.935335 -12.702963 -20.658979 26.250766 14.949705 12.256303 51.838455 23.271815 -23.794964 3.964647 -46.545490 20.273007 78.994609 15.067824 -44.544016 23.388298 -24.033764 13.801811 22.897489 13.936776 11.669502 11.259041 -24.290230 -5.765987 -6.087600 -18.236609 51.085793 28.794090 25.921530 -50.560320 33.215795 -13.288552 -7.931960 71.746951 34.395472 -57.631839 9.621920 46.114614 -28.870480 -10.225261 15.301640 -25.840288 -15.530992 -34.695877 14.673296 17.609402 -43.479335 -28.540243 4.282529 -46.346994 46.903094 8.603398 5.587196 -0.608121 -41.165396 -17.990232 78.484681 3.493452 -1.967753 -5.149152 -19.724420 -19.413211 -60.202521 5.920514 17.011285 -25.407618 -13.285033 -34.438274 2.937344 52.494770 -30.373921 14.586040 -35.855330 -1.150029 20.769720 -3.245013 18.733062 -44.543510 -29.795437 -7.114437 -9.249313 22.660148 -30.298229 17.093910 48.514468 -24.443159 37.866853 24.775192 -10.818285 1.358504 35.122928 -23.149716 47.472350 -12.326826 39.789743 6.549517 41.394480 -29.928022 -11.393269 -11.658178 -7.617514 -24.717560 39.138529 -46.863550 1.240782 27.818928 -25.659263 -30.405520 29.914321 16.318668 20.685924 -9.469091 -5.651467 -28.522743 0.898815 -18.099931 15.610428 34.396816 -10.314036 -47.498192 -3.397140 26.333784 -30.499825 -17.020447 14.532413 2.850073 52.518877 -40.689552 15.324309 13.857684 4.456697 -51.386803 -47.213041 6.180686 -31.485113 -25.015526 25.711214 -58.536611 -26.288538 -26.082907 17.386864 -44.909553 -11.836518 5.580062 53.392761 18.137718 -14.917316 20.362973 5.566210 24.115272 0.570375 3.643962 8.153049 28.567895 +-38.763953 16.443705 -6.529526 -34.309165 96.784033 -9.388492 4.126746 55.302950 9.080936 31.283969 -73.403495 -17.123195 -8.818158 -66.299303 12.233988 -1.210672 22.543580 20.267856 -30.817950 -5.613890 26.819661 1.185098 5.285692 -39.757520 -4.693402 -38.062048 -21.647459 6.589838 9.519400 4.052464 -21.533188 17.897491 77.363508 8.256006 52.222136 38.210062 45.029091 58.339466 11.541876 11.931413 29.154042 31.477563 -17.724773 -65.688401 10.441622 -42.025728 -50.208579 -26.042639 16.871061 -52.820450 33.310458 39.871622 12.348832 -3.550035 -36.453833 17.714881 44.992954 -2.526613 57.573328 35.112953 -57.320355 -11.146101 -28.995859 40.830868 -34.619834 43.137408 3.052190 -58.398133 -32.628635 44.160182 23.614383 -43.855456 -50.000017 -2.178363 15.538358 -28.220877 36.831578 -0.336618 30.461493 -38.754136 -35.273458 26.251443 -19.674729 50.330319 -0.481398 -3.993958 -12.506685 -13.026562 17.430908 -46.575172 -25.539077 46.537334 -36.554911 11.872796 -42.699705 16.049615 0.524324 1.015349 -27.488987 -54.127843 19.781148 9.300434 3.790702 -5.361765 -5.700368 -40.725805 35.724674 33.205896 -4.476778 35.561726 15.126507 18.323837 18.239366 22.942636 -26.138857 15.025547 -67.846290 23.162195 -20.772652 -1.472316 -18.655655 -0.978677 39.236380 13.141251 26.171377 -55.672136 58.490604 39.100391 -32.106508 -25.659292 17.924459 -23.445645 -53.247174 0.969821 32.815609 12.600192 7.699204 -3.798982 15.408004 -22.088593 -32.586167 -22.295414 -26.121925 32.571166 -58.223375 -6.227573 -4.893985 -13.485093 -22.684379 33.053012 19.587661 9.894812 66.300403 21.770920 -33.906722 10.647613 -57.845179 29.474997 98.066856 17.568854 -51.616343 30.453004 -34.639017 18.302839 24.534289 19.085682 9.182460 11.244138 -26.075939 -0.785765 -4.623868 -18.767102 62.945071 25.950348 32.368213 -69.502592 30.292398 -21.046162 2.041456 90.869076 42.997254 -73.144436 11.561970 61.462255 -25.228753 -10.281949 16.265475 -36.738817 -24.677950 -42.055550 22.075679 23.802684 -54.740518 -36.888738 7.889635 -52.644563 51.367538 10.485940 -6.330081 -4.096955 -50.378479 -7.328795 100.336439 4.743648 -0.198422 -0.619493 -26.783540 -16.315938 -75.861720 3.855156 24.673916 -28.714793 -6.136755 -37.353665 -2.532834 66.342672 -37.855807 14.342202 -56.330760 7.370138 28.734538 -6.534888 19.885720 -53.081260 -33.744430 -7.073009 -15.694004 22.733102 -47.049733 13.650269 49.284308 -30.536848 49.838837 26.681371 -16.213089 0.486347 40.077927 -24.006333 62.617511 -9.672527 54.254959 11.890073 51.868756 -38.223583 -10.755513 -22.990574 -12.948547 -34.913108 49.794723 -64.251720 -0.746180 37.024817 -19.989666 -47.196570 37.372329 26.477892 20.975757 -13.106517 -13.173117 -28.256120 -0.409807 -22.228825 25.900360 38.532181 -20.836994 -59.485776 -5.208031 43.782112 -41.076790 -18.672700 19.601863 7.711857 70.230507 -48.967193 23.091826 21.395278 14.300286 -68.387107 -58.934480 11.651597 -33.576984 -19.542227 22.809272 -74.247694 -44.323170 -28.749937 27.818932 -50.706311 -7.584869 13.239881 65.223380 18.817488 -21.392787 25.051558 8.701386 21.822090 -0.074692 8.029079 11.546682 29.569428 +-34.438292 23.099145 6.889526 -23.489326 71.506306 -4.378399 10.333029 35.058631 1.575473 29.206539 -61.338925 -16.346383 -9.751914 -48.860355 8.256345 -11.861187 12.692097 15.255223 -20.281974 -2.766028 23.328861 -6.053102 -0.245276 -34.115931 -3.024797 -38.791461 -19.303139 1.842067 16.145488 3.663095 -11.804707 12.478191 62.678586 5.348315 45.046221 36.954655 32.748016 48.971102 4.282888 14.612028 15.398632 31.751556 -19.571912 -51.444456 7.714090 -35.196832 -35.930722 -22.628982 12.389416 -39.416528 25.016518 33.230386 5.971817 0.142076 -27.214854 19.582484 41.434562 1.608138 50.884202 26.007198 -38.438654 -1.555553 -27.834106 36.462294 -26.229072 34.374242 0.743115 -48.975788 -18.679442 24.015561 15.377876 -31.335583 -35.346660 8.402134 12.493143 -26.713178 25.577799 -4.398502 -2.487443 -33.559652 -33.491599 17.866984 -7.654470 42.709493 -1.193198 -5.515703 -7.165991 -4.673063 14.030838 -42.337580 -21.768363 45.880170 -28.401182 7.801207 -34.366328 13.311262 5.707590 8.166715 -21.424327 -37.746149 15.770851 8.501493 4.369153 -11.670221 -9.822877 -37.177499 26.431633 22.378973 -8.049005 27.760055 11.932362 17.256177 19.619807 23.746917 -28.539586 14.171013 -50.683001 18.661509 -12.561841 -0.835018 -7.295154 1.475331 20.944238 7.847926 27.031730 -46.980175 40.543177 26.290491 -26.103766 -27.687977 10.174812 -27.061450 -44.221085 -4.554190 24.532199 15.885446 4.856167 -8.988083 7.891265 -17.146938 -20.537401 -24.864265 -14.588799 31.577766 -46.984598 -6.990633 -6.529114 -10.126033 -23.009182 29.469466 16.470234 12.528470 51.471319 24.263290 -21.449403 9.222326 -45.020224 16.964765 74.965344 17.799913 -44.851924 25.056794 -28.166539 11.744196 23.511490 14.051979 9.671022 14.562834 -28.607604 -8.460946 -3.721820 -18.060227 51.944448 27.095444 21.940059 -49.473710 37.027380 -15.126952 -15.357316 72.493061 39.487211 -57.793220 10.350875 43.413377 -29.055757 -12.468425 18.422651 -32.017986 -17.302005 -32.802905 11.123859 16.292477 -40.866942 -25.553705 8.343041 -46.946371 48.681047 9.180753 4.780237 -0.190441 -41.290810 -24.590896 75.620007 2.748626 -3.003028 -7.526994 -18.378950 -22.679248 -58.807190 6.500929 16.964104 -24.883003 -17.277819 -35.958630 4.755007 50.410583 -29.516143 17.084103 -39.373791 -4.649284 20.097749 -1.455726 22.090669 -42.918056 -29.708408 -10.190645 -8.914745 22.640130 -31.231510 20.380500 51.379479 -23.258282 40.273681 18.237151 -23.609377 -0.330598 34.546690 -25.567489 46.832606 -10.339232 35.194951 6.995695 40.800401 -34.386912 -12.057508 -10.556815 -7.987114 -24.400063 37.925735 -44.513625 1.420412 20.957918 -29.100310 -28.701321 28.051730 13.341784 17.537983 -9.527210 -3.718298 -29.382845 0.099419 -20.850797 11.768451 34.957135 -9.382732 -45.254933 -1.071241 21.514992 -28.383155 -14.648803 12.987201 2.396450 51.004787 -41.225919 12.540870 13.125592 2.384494 -54.016315 -49.959740 3.337037 -35.571491 -27.297957 23.706638 -56.156717 -23.504960 -26.705845 13.655225 -46.608398 -16.957445 10.275845 55.084017 16.925831 -17.191996 20.540052 4.261908 29.074615 2.484153 5.454945 6.330834 27.056585 +-57.973369 44.592343 34.814291 -41.064875 126.509680 0.898152 20.608782 58.129797 -13.728202 46.653076 -108.023640 -21.268100 -19.208549 -83.041336 17.004521 -30.002208 18.670851 18.616736 -32.251942 0.101469 40.236400 -16.577571 -0.735290 -60.429443 -1.770353 -69.384031 -35.571660 1.719609 35.951068 16.319135 -13.340458 19.813933 100.194648 8.894965 67.235998 58.909110 56.116554 83.869039 -0.381084 9.164763 25.138872 55.750796 -34.242916 -90.124986 18.929425 -64.817414 -59.868797 -35.845206 21.322003 -69.381377 16.477886 57.850639 7.388470 -7.130466 -46.115441 35.597201 74.178091 2.431813 83.891932 45.513512 -62.521252 -17.638719 -53.810798 51.201294 -42.473547 64.648993 -5.397416 -84.802738 -32.441895 41.636095 16.749251 -45.689470 -58.103257 13.251500 21.594583 -41.044452 44.158268 -8.055997 -16.915205 -50.076297 -55.909174 27.554743 -14.280056 75.632414 -3.345242 -12.349212 -2.718674 -10.789725 27.329483 -70.608251 -41.168428 79.953260 -45.966973 9.130299 -56.572652 22.963984 10.193390 13.078045 -36.934019 -61.616690 28.963835 17.902735 6.728525 -32.329010 -14.918251 -72.753521 45.748274 40.148039 -8.207469 52.438315 15.313333 31.763969 27.749834 37.969054 -58.504857 23.445464 -81.669784 28.272234 -24.390164 0.786217 -16.692283 6.025274 30.219943 14.316942 45.381644 -80.196086 71.229582 46.571399 -45.500131 -43.640193 20.153643 -47.935201 -76.181438 -5.642999 41.334031 27.317266 5.008455 -11.658635 11.649182 -30.454016 -33.900732 -42.253368 -28.407242 60.791670 -89.717400 -12.920691 -12.489504 -18.201509 -36.571754 49.402064 28.331209 22.664642 83.746463 43.047832 -38.318602 26.841297 -75.172408 36.560309 132.612651 29.418972 -77.670422 39.112808 -48.956826 22.550680 40.304132 16.121754 19.426942 35.209158 -53.066830 -20.626043 -5.110706 -34.506810 87.811107 60.057969 41.580979 -93.716708 67.746816 -38.010323 -24.988015 115.335452 61.685006 -98.156105 22.440585 76.586368 -60.108796 -20.069799 24.320880 -54.497216 -26.009227 -57.667051 14.709263 31.304023 -73.149361 -51.124975 7.664083 -81.234146 85.830382 17.859204 16.151576 -2.485603 -61.347445 -58.610536 127.843702 6.217069 -8.232942 -18.426872 -28.636663 -43.270658 -98.307179 12.514200 29.043753 -46.992551 -35.926884 -62.994141 2.784476 83.070631 -52.641484 26.951417 -75.383876 -4.839673 32.330476 3.072901 41.674905 -69.569476 -53.953934 -18.610316 -24.727911 38.801262 -55.049592 36.099817 85.402697 -42.711806 76.021620 20.730820 -46.262288 -0.556002 60.837814 -36.648136 79.047771 -17.931920 77.676616 9.068024 74.573706 -61.141852 -19.444142 -14.993503 -28.401463 -39.633297 69.112480 -77.094875 3.905120 39.514024 -50.380512 -52.420685 52.436802 21.300380 35.218226 -17.905354 -3.341106 -48.473758 -0.255475 -24.804493 20.077259 61.385537 -26.008431 -80.894575 -10.192391 36.688571 -49.475723 -40.217881 27.338548 3.873853 85.550346 -69.534407 25.021585 19.869048 -0.453952 -95.483549 -83.851318 7.480401 -60.295052 -48.889914 47.244908 -98.178081 -30.893224 -47.823653 23.253177 -77.978737 -34.698395 14.237819 90.329907 22.526822 -28.357291 39.270521 9.778533 49.127575 1.705562 11.400938 8.973255 40.829224 +-13.959334 10.126542 9.250909 -7.517070 21.236814 1.036385 4.286752 9.605364 -3.521037 12.645404 -21.056876 -7.399851 -7.959023 -13.758083 0.294347 -9.311920 5.417755 1.305061 -6.543574 -0.004398 9.357982 -6.274982 -2.040269 -10.088959 -1.035812 -14.065742 -8.884260 -0.708198 9.193132 -0.053392 -1.827091 1.071642 25.062333 2.873912 18.910781 14.462848 7.490152 18.467372 0.250419 3.815527 -2.754432 16.574708 -10.443759 -16.115939 2.487884 -15.130157 -7.940837 -7.950810 5.240263 -10.628762 3.925531 12.397485 -0.430543 3.404094 -8.913876 7.262225 14.474130 3.547564 22.651655 5.697311 -9.449274 -1.958930 -11.004561 8.199261 -8.996704 8.447238 -1.181312 -13.911746 -0.545667 -0.874214 3.093082 -11.610509 -10.914481 8.246447 1.712570 -12.326998 8.535572 -2.201794 -12.108610 -14.469850 -13.167274 3.493503 0.288542 15.047203 -2.932429 -3.873241 -2.299095 2.117167 1.780611 -19.309106 -3.621676 17.638132 -9.901685 1.750881 -9.422931 7.753231 -1.466588 7.590039 -10.520642 -8.117612 4.291418 1.728976 4.460988 -10.560543 -1.985411 -15.020091 9.154456 2.458831 -2.903424 7.515624 8.944257 9.186460 11.912224 12.834502 -17.453599 7.363659 -18.063268 6.276159 -3.181093 -1.053042 1.066410 5.054787 0.269237 0.903233 13.882800 -19.495912 10.337873 6.649938 -10.764541 -15.950714 1.525682 -15.003149 -17.194019 -3.275610 7.427831 6.007222 -0.310328 -10.753622 0.889498 -7.894288 -6.001862 -10.497884 0.151231 13.855193 -16.718171 -3.815970 -4.807212 -2.765219 -8.339295 13.200555 4.964081 5.673671 19.566803 11.007365 -6.549270 3.520104 -16.155582 0.126872 21.734521 8.580591 -18.983631 10.507559 -9.543557 3.154670 11.347457 6.220545 8.002579 5.882543 -10.962866 -5.666083 1.723595 -3.844731 19.771395 10.443796 10.261334 -12.929415 17.557064 -5.755119 -10.718434 22.379407 13.659619 -17.900491 3.028823 7.864100 -9.502250 -1.640312 8.099381 -11.342256 -4.094555 -11.468476 -0.448485 5.747546 -11.222869 -6.357709 2.567252 -19.426809 21.430316 2.043841 7.234645 4.906477 -19.942312 -16.198650 21.820401 -0.701866 -2.675987 -3.774428 -5.681365 -10.818423 -19.662107 3.994481 3.619942 -10.668399 -10.214122 -16.866067 6.860102 12.543002 -5.052229 9.745234 -12.861722 -5.370490 8.192076 -0.284208 10.155676 -12.688439 -11.890585 -4.869547 -3.015376 13.874328 -8.978701 13.356663 22.530461 -6.452915 14.071237 2.053348 -7.003207 0.388248 10.704842 -13.957410 15.887587 -5.810599 13.371448 -1.090161 14.117580 -9.996573 -5.374621 -0.243042 -1.856638 -5.799837 12.755325 -12.131932 1.328137 2.835830 -16.167293 -5.164691 7.818633 -2.726706 3.047367 0.087977 2.367565 -15.741436 -0.649864 -7.321405 3.074276 14.995839 1.844075 -16.015686 0.645111 -1.371796 -4.411594 -1.961408 0.383389 -2.894872 12.655076 -13.702215 -4.747838 2.198840 -2.363265 -13.438950 -19.652395 -2.159495 -14.339040 -12.818613 12.989250 -16.452580 -1.009974 -10.588964 -2.544643 -18.014099 -7.906410 2.655266 21.029366 8.967582 -7.793221 5.540226 0.952566 14.429656 0.980715 -0.652897 3.599491 9.913538 +-6.077642 4.784220 4.244185 -3.207890 11.039867 1.771314 3.224840 5.400952 -3.995815 6.417662 -9.791116 -2.114082 -2.589550 -6.963817 0.002439 -4.472488 0.804105 -0.169145 -2.812980 0.986469 3.776345 -3.084451 0.061406 -4.852109 -0.949673 -6.833223 -3.431825 -0.003386 6.547180 0.162953 -0.514394 -0.153753 10.260695 0.630872 8.611072 5.973373 3.863088 7.524340 -0.553911 0.025261 -0.620766 6.663131 -4.987277 -7.277286 -0.092841 -6.872331 -5.460464 -3.068539 2.331561 -5.440861 0.073442 5.911298 -0.521253 1.020769 -3.517283 4.454256 6.440202 -0.403195 10.107289 2.633460 -5.784797 -1.744831 -6.277408 5.696290 -2.456358 5.063074 -1.413068 -6.995251 -0.681078 0.324819 -0.847419 -4.570531 -3.140696 4.977496 2.868362 -5.406944 3.477999 -2.279437 -6.826598 -6.674354 -5.382310 2.088086 0.439765 7.016208 -0.253995 -0.523429 1.006427 1.224141 0.576020 -9.890847 -1.830122 9.453372 -5.369342 -0.655421 -5.453475 3.785525 -0.799981 3.994652 -4.811028 -3.990305 2.301214 2.138990 0.792426 -7.800771 -0.168012 -8.397095 3.223545 1.705066 -0.527937 4.035798 2.715925 3.165495 5.332624 7.006168 -7.340634 3.334260 -6.979432 2.604840 -2.485678 0.521318 -0.885232 2.114554 1.324433 1.823405 7.118591 -9.215251 4.445890 3.372146 -4.443150 -7.883787 0.067561 -7.560873 -7.426752 -0.827195 3.153495 2.647847 0.929748 -4.614734 0.697276 -2.538322 -3.372849 -4.363627 0.527733 6.230263 -8.877996 -1.585233 -0.800437 -0.500094 -4.418621 7.006274 4.231823 3.208865 9.218064 4.636768 -2.561887 3.171326 -7.026397 1.488192 11.622123 2.977501 -8.355005 5.230603 -6.408505 0.983322 4.065551 2.468574 4.149009 2.984552 -7.277727 -3.276833 2.707257 -1.757616 9.666443 4.766202 3.818800 -5.467001 9.111244 -4.208051 -5.259375 9.845770 6.775478 -9.785329 3.069443 4.284053 -5.173279 -0.924306 4.412370 -6.487009 -1.690832 -5.206981 -0.427052 2.776473 -5.180942 -2.800551 1.669141 -8.871105 10.944376 1.115619 3.285983 1.237169 -6.596656 -7.283725 10.649743 0.324817 -1.493151 -3.058493 -2.385355 -7.128393 -8.880910 1.489036 1.682550 -4.658420 -4.489761 -7.677137 1.712977 6.035178 -2.839289 5.284550 -7.090908 -2.441236 2.860684 0.670143 5.748606 -5.144047 -5.129397 -3.093838 -2.278247 5.573197 -5.608244 6.488626 10.331981 -3.186385 8.759182 -0.402778 -5.108276 -0.153870 4.753912 -6.334128 8.100307 -1.567019 6.359840 -0.287780 6.641314 -5.874377 -1.917613 -0.465200 -1.863391 -2.150206 5.443871 -5.386324 0.212191 0.925022 -7.531645 -3.436039 2.835781 -0.552026 1.401778 -0.316062 0.771554 -6.918276 -0.942919 -5.157904 0.931793 6.337367 -1.763523 -7.077191 0.871475 0.192562 -1.986612 -1.139290 1.183368 0.104178 6.420103 -7.400699 -1.348513 1.009954 -0.578081 -7.868356 -9.169799 -0.929066 -6.683126 -6.339753 5.399361 -8.037373 -0.149588 -5.803718 -1.169114 -9.785913 -4.866781 2.286710 10.880340 3.154041 -4.392194 2.797918 -0.054278 7.054901 0.811008 2.061256 1.281620 3.517350 +-7.857869 5.570980 5.999508 -3.232703 13.471699 1.446768 4.787079 7.063454 -6.651069 8.660640 -11.575318 -2.640964 -3.919633 -8.871633 0.062290 -5.663010 2.219651 -0.646218 -2.583067 2.475446 4.668413 -5.065922 -0.140629 -5.415811 -1.194948 -9.699306 -3.810946 0.306487 10.144955 -0.859784 -0.167908 0.193137 14.263384 0.985849 12.199566 8.169345 4.094155 9.034726 0.578203 -4.264905 -2.231147 9.083106 -6.811280 -8.342888 -1.007980 -8.059313 -6.946380 -3.801830 3.166016 -5.442440 -3.198514 7.869612 -1.371463 2.469610 -5.087456 5.996170 8.603673 -0.910204 13.578675 2.791754 -5.862108 -2.674288 -7.673271 7.136607 -2.804454 3.616091 -3.776352 -8.282062 0.931681 -0.673409 -3.050356 -5.400607 -2.315964 7.661530 4.271064 -7.589781 4.587764 -2.439041 -9.525226 -10.754873 -7.718901 2.272464 0.459538 9.515263 -0.442855 -0.403656 2.396888 2.053028 0.158600 -13.674126 -0.839867 11.365827 -7.677567 -3.054834 -4.690157 6.905313 -0.406789 5.775687 -6.317386 -5.789450 2.703435 0.685844 1.221244 -10.614327 2.544780 -9.754115 1.970999 0.237834 0.941863 7.065790 4.539533 4.932882 8.318294 9.834760 -10.465317 2.773384 -8.451583 3.963206 -4.223886 0.151994 -0.719670 3.773865 2.139730 3.253171 10.248053 -13.082760 4.290555 4.675662 -3.971605 -10.322181 -0.560509 -10.507192 -9.248836 -1.969310 4.623501 2.843700 1.582056 -7.013630 1.472860 -2.302955 -3.482130 -3.745108 1.003944 9.085544 -12.995749 -1.922509 -1.092732 -0.612506 -5.235608 9.044604 5.669146 5.183658 11.633447 6.194708 -4.514572 5.451804 -9.741336 1.391154 14.675047 2.292147 -10.408883 7.710705 -8.770631 0.085613 5.503224 4.371413 6.882203 1.695547 -9.958921 -5.094998 5.286613 -1.041816 12.819840 4.372704 4.393716 -6.415298 12.736181 -4.951195 -7.893837 12.264518 7.294615 -12.511108 4.884724 4.702384 -8.019707 -0.691379 5.818874 -9.409508 -1.782223 -7.697154 -0.693945 4.200626 -6.324592 -1.942412 2.469028 -11.462332 13.764186 1.193680 3.706848 2.371069 -7.578808 -9.469098 13.869629 0.857789 -1.246906 -5.143300 -4.041114 -9.663479 -11.446484 1.782050 -0.147967 -5.652698 -4.860076 -10.587650 1.537776 7.329450 -2.041142 7.629441 -11.924310 -2.119119 3.932417 2.361937 6.549998 -4.971076 -6.724009 -2.632161 -3.893651 6.163477 -7.861643 9.737240 13.025815 -4.276077 10.677523 -2.953245 -7.284954 1.244306 4.812722 -10.045202 10.746456 -1.885646 9.471027 0.062917 8.085084 -8.094732 -2.705543 -0.387798 -3.173925 -3.546568 5.987301 -6.469636 0.236790 1.322708 -9.168199 -5.591512 2.048469 -1.489652 1.278556 0.212042 0.690652 -10.028816 -0.846568 -6.840329 1.929095 8.107251 -1.647602 -8.270862 2.528250 0.127401 -0.596490 -2.112277 0.908130 -0.104502 7.340740 -10.005430 -3.024405 0.927879 0.939620 -8.045111 -13.262192 -0.241091 -8.693535 -8.068975 7.886337 -10.690702 0.992137 -7.791703 -2.636744 -13.297554 -5.656806 3.599383 14.739222 3.126810 -7.242174 3.125527 -0.644302 8.638819 0.673154 3.551622 0.771914 4.022411 +-5.789083 2.839936 2.573764 -1.761050 8.608254 0.349012 2.483536 4.472350 -4.160116 5.586435 -7.698982 -3.278162 -3.736685 -6.718784 -0.098036 -3.421067 2.429260 0.180996 -2.091475 1.464828 3.735955 -3.537704 -0.219675 -3.541810 -0.476989 -4.775833 -3.134698 0.240118 7.394971 -2.656610 -1.447479 0.541439 11.285454 0.706962 9.703806 5.973368 2.889537 7.063007 0.859661 -4.245411 -2.079132 7.409709 -4.997041 -6.355864 -0.567608 -5.963941 -3.692643 -2.006952 2.993987 -1.717727 -1.268654 5.378457 -1.219060 2.416274 -4.051774 3.305294 5.480188 0.845624 10.265014 1.817304 -4.027744 -0.898462 -5.288063 5.439243 -2.921011 2.798105 -3.028485 -5.450666 0.790482 -1.493250 -1.507203 -5.218859 -2.704587 5.670655 2.613442 -5.209474 3.574091 -1.308634 -5.173265 -7.984531 -7.192760 1.018320 -0.963107 6.525579 -1.145371 -0.495037 0.988412 1.613195 0.144822 -9.862846 -0.079599 7.288941 -5.864164 -0.932457 -2.046490 4.677391 -1.270675 4.415625 -5.294399 -3.863418 1.668586 -0.234594 1.133764 -6.354237 3.868168 -5.627353 1.638327 -0.933620 0.742540 4.909524 5.632417 3.609728 6.803806 7.074713 -6.253396 -0.111797 -6.353293 2.527242 -3.508852 -0.149002 0.265438 3.691409 1.261914 0.892278 7.715491 -9.637477 2.359119 3.024585 -2.437054 -7.311944 -0.120310 -7.743721 -6.953725 -1.936405 4.025120 2.122043 0.723140 -5.665940 0.874827 -1.141049 -3.466538 -1.669498 0.702004 5.407721 -8.143868 -1.674670 -1.165293 -1.443987 -3.241492 6.213834 3.635595 4.142276 8.340969 4.858811 -4.126181 2.972953 -7.332088 0.809375 9.739470 -0.149801 -7.974625 5.265133 -6.173599 0.120112 4.541521 3.996763 5.728657 0.577467 -5.410631 -2.783513 3.453241 -0.084494 8.917460 1.346562 3.357668 -3.009300 8.222417 -1.562867 -5.883570 9.774328 2.867963 -8.925254 3.870819 2.662967 -3.908850 -0.274587 3.936962 -6.482551 -0.777154 -6.423964 0.044133 3.332207 -5.170259 -0.560870 2.333326 -8.295536 9.833288 0.406462 1.127128 2.384548 -7.242723 -6.171144 10.528864 0.579090 -0.620871 -3.973438 -3.505015 -5.337768 -8.365999 1.582565 -0.926560 -3.568172 -3.202850 -7.501629 1.515052 5.863696 -0.634198 5.806635 -8.226038 -1.544025 2.826615 1.862647 4.790752 -2.944481 -5.045182 -0.910781 -2.605139 4.889696 -5.729363 6.254340 9.342906 -3.608088 6.608323 -0.969380 -4.822637 1.014248 3.167751 -7.786365 7.677035 -1.485805 5.704429 -0.513289 5.399249 -5.814486 -2.272260 0.107075 -0.117952 -2.681219 3.443666 -3.898980 0.291348 0.182076 -6.472095 -3.586127 0.909137 -1.410240 0.994601 0.758665 -0.446342 -6.943200 -0.444532 -3.829014 1.321940 6.144232 -0.474015 -5.798139 2.178745 -0.924569 -0.037648 0.656821 0.384535 -0.674343 5.357767 -7.187912 -3.181799 0.631300 0.954441 -4.442199 -9.291897 -1.306849 -5.313537 -3.928610 6.594798 -7.009961 0.664435 -5.405936 -1.919791 -8.210610 -2.574132 2.054352 10.486164 3.566128 -5.458513 2.273867 -0.285000 6.517019 0.668396 1.578266 0.375187 3.202714 +-103.809881 81.053574 29.050292 -84.429860 221.357517 -11.033231 22.217347 107.963458 7.825591 82.849774 -198.990320 -44.720168 -28.886170 -162.481105 28.494291 -31.353811 37.291671 54.560537 -57.084073 5.621900 76.143399 -29.002674 2.831077 -115.881702 -5.340622 -108.141279 -58.683527 3.885462 33.323131 29.785086 -29.284881 39.245588 180.583367 35.415818 127.888195 110.507323 80.975538 166.827557 21.176798 51.138609 51.491091 95.579288 -52.073725 -180.783043 44.393248 -114.600631 -98.622284 -87.231742 33.565933 -138.110543 88.547588 101.815959 21.285540 -16.537938 -101.661757 33.973045 134.773003 25.060263 148.928803 87.755659 -118.449331 -7.117591 -86.380125 68.536186 -84.251816 109.575454 29.204058 -147.483564 -51.523371 87.173201 70.288239 -95.731786 -119.041246 7.551211 28.188244 -72.258103 83.711299 -14.417735 -17.668927 -85.923035 -93.942942 52.639973 -32.746572 136.379911 -6.811368 -18.770896 -43.117235 -23.854707 54.619723 -116.606170 -79.910516 128.233426 -69.928110 32.481439 -90.653664 61.711366 25.334550 10.401252 -65.530282 -102.203648 54.865311 35.818210 13.174100 -9.085147 -57.104129 -123.872598 108.078180 82.546300 -33.738639 79.597323 42.850480 59.410763 50.311530 59.054497 -92.408329 56.899636 -160.694175 49.241272 -34.946947 -0.374746 -27.899691 2.058108 55.778912 11.893872 68.083525 -135.148504 143.057185 96.021975 -77.481131 -75.923728 48.241146 -73.574807 -133.675414 -9.462078 76.082338 50.922528 12.359999 -11.895895 9.816682 -62.422456 -67.044978 -80.661030 -55.466114 120.578914 -134.641452 -18.804356 -22.462087 -40.279627 -62.995980 74.673985 41.437373 29.510880 154.870002 69.871164 -69.988824 8.066500 -131.939945 62.521323 248.715785 62.534781 -136.240986 66.043871 -56.668014 44.198083 68.843204 29.425230 32.654953 44.666152 -88.720720 -36.475761 -26.568470 -71.916936 151.654573 103.908572 80.799675 -165.951057 121.955820 -39.503331 -28.980989 221.436991 105.919833 -166.007954 19.342649 146.987940 -103.038658 -35.989493 40.490480 -70.159476 -42.334646 -94.312823 38.255658 44.979875 -135.987135 -109.181396 -0.937843 -145.605086 146.569739 32.327733 32.017985 -16.615124 -120.457083 -59.453507 241.639395 12.323946 -18.954793 -13.601417 -52.297587 -61.884315 -182.929742 19.922474 60.771345 -81.549671 -49.627797 -101.732343 8.359941 153.369292 -107.128898 26.998309 -98.093139 -16.130762 61.680223 -16.515244 58.768087 -147.232100 -94.367464 -23.414847 -24.680417 75.120813 -78.047361 59.690513 156.737061 -71.979662 114.590921 89.327426 -25.062684 8.741391 122.264842 -61.966418 144.670400 -49.597913 133.666295 20.128361 131.942430 -93.891303 -36.471853 -30.933289 -31.155766 -69.539966 129.354258 -145.243480 5.910324 84.840729 -78.116304 -88.149072 103.792402 50.206815 68.190078 -34.080074 -5.511994 -82.743888 2.163628 -48.589614 39.720883 108.191370 -33.819947 -153.207600 -24.807181 84.837825 -89.167315 -61.980869 50.562080 10.048725 163.634232 -122.972065 62.296282 38.303230 -2.570721 -165.338098 -137.685688 28.625717 -100.743566 -80.543783 79.876554 -183.194145 -73.875767 -79.610107 58.994426 -136.362725 -32.752018 12.819134 155.389470 52.599171 -42.891207 64.726223 15.240372 81.950203 5.670732 11.985843 15.170051 97.347327 +-6.709926 4.615305 3.738868 -3.174207 11.551348 0.945137 4.320957 4.927071 -3.958733 6.767173 -10.573438 -3.421268 -3.378827 -8.138205 0.264068 -4.744842 1.876772 0.045556 -2.807643 1.436531 4.281802 -3.949147 -0.069528 -5.406394 -0.681302 -7.869957 -3.407365 0.018308 7.220609 -0.029202 -0.690975 0.543177 11.832512 1.295531 9.739514 6.848821 3.498827 8.534494 -0.096582 -1.280257 -0.917729 7.658889 -5.262967 -8.138883 -0.299483 -7.003245 -5.997533 -3.953815 2.628057 -5.348184 -0.112481 6.633785 -0.620274 1.459832 -4.751710 4.205242 7.892672 0.183323 11.110197 3.062255 -5.137309 -1.219234 -6.333144 5.744516 -2.895551 4.067890 -1.414343 -7.422413 -0.243033 0.388573 -1.076706 -4.631101 -3.647824 5.111042 3.637577 -5.995015 4.025122 -1.886456 -7.787930 -8.123691 -6.620314 1.989995 0.098085 8.298450 -0.430835 -0.705313 1.221993 1.018099 1.016299 -10.625846 -1.841880 9.719287 -5.674473 -1.436957 -4.798025 5.288173 -0.181673 4.149569 -5.673744 -4.945186 2.370412 1.148066 0.946003 -7.204565 -0.260098 -8.432043 3.029497 1.582058 -0.314785 5.222008 4.072593 3.559228 5.909955 7.244380 -8.344073 3.065358 -7.563343 3.202823 -2.746178 0.136039 -0.521741 2.453909 1.689194 1.744094 7.680313 -10.426055 4.690423 4.385048 -4.066356 -8.138903 0.049675 -8.187073 -8.147094 -1.363901 4.005339 2.830832 1.305218 -4.887341 0.901020 -2.494105 -2.893560 -3.159832 0.221397 7.463829 -9.706714 -1.674269 -1.081408 -0.997112 -4.698935 7.218262 4.062660 3.637956 9.830325 5.160571 -3.877556 3.273652 -7.912076 1.699775 13.208152 2.601137 -8.943622 5.698761 -6.569176 1.028983 4.484245 3.118524 5.003429 1.646326 -7.736467 -3.249492 2.671915 -1.980737 10.616554 4.424703 4.050630 -6.137776 10.288885 -3.753430 -5.766744 10.784231 7.098337 -10.355910 3.233865 4.970637 -7.054134 -1.140060 4.660800 -6.878023 -1.592244 -6.640420 0.286850 3.053896 -5.835433 -2.481878 1.577126 -9.723059 11.264419 1.296848 3.295366 1.470342 -6.998751 -7.500213 12.267063 0.195315 -1.154510 -3.528119 -3.155680 -7.608761 -10.060662 1.662384 0.561786 -4.879801 -4.291806 -8.410151 1.597888 7.118443 -2.955242 5.677137 -7.757182 -1.871035 3.202376 1.533070 5.629686 -4.929719 -5.926140 -2.089694 -2.430860 5.419054 -5.901673 7.033313 10.861461 -3.770059 8.326062 -0.822805 -5.153593 0.732335 5.014509 -7.291115 8.816294 -2.015456 7.298863 -0.130344 7.276494 -6.371746 -2.408695 -0.364477 -2.246398 -3.158425 5.790665 -6.134694 0.388283 1.835426 -7.453749 -4.562596 2.967790 -0.591092 1.841598 -0.350066 0.648433 -7.896362 -0.282739 -5.363616 1.598330 7.009759 -0.896880 -7.291943 1.067782 0.811952 -1.499020 -1.491381 1.295788 -0.250124 7.176648 -8.150417 -1.489776 0.965340 0.195589 -7.296665 -10.869666 -0.044862 -7.490940 -6.859950 6.848120 -9.112308 0.150085 -6.401843 -1.030134 -10.768625 -4.656044 2.388194 11.822488 3.107891 -4.958804 2.900963 -0.017462 7.168630 0.373865 2.223122 1.317755 4.106470 +-5.809815 3.132822 2.605954 -2.535438 9.675060 0.575275 3.025485 3.749412 -3.090899 6.021334 -8.474372 -3.414838 -3.300285 -6.810655 0.034607 -3.168796 2.009472 0.175826 -2.384709 1.294317 3.620452 -3.529414 0.248991 -3.961007 -0.702562 -5.948053 -3.183445 0.470978 6.527828 -1.591577 -1.174885 0.431579 10.597517 0.820323 8.847694 5.805225 2.756603 7.423334 0.322164 -2.695040 -0.962494 6.784714 -4.689783 -6.800574 -0.146806 -5.913483 -4.944419 -3.488893 2.805554 -3.496076 -0.159800 5.732923 -0.852251 1.403081 -4.375975 3.542998 6.493022 0.451476 10.099027 2.209241 -4.040305 -0.281477 -5.448429 4.810334 -2.916084 3.106461 -2.226156 -6.361915 -0.128607 -0.080260 -0.597859 -4.713799 -3.307967 4.797529 3.016650 -5.290096 3.446508 -1.555112 -5.084945 -8.253320 -6.515285 1.498185 -0.512539 6.939771 -0.661778 -0.401931 0.997046 1.213420 0.440618 -9.458413 -0.879016 7.581108 -5.147466 -1.099087 -2.493290 4.695006 -0.727184 3.448062 -5.311542 -4.094658 1.733849 0.190705 1.090846 -5.278401 2.086317 -6.246022 2.159971 0.672971 0.477177 3.983997 4.951087 2.959152 5.877961 6.518815 -6.837910 1.426477 -6.484749 2.617761 -2.507350 -0.078356 -0.336586 3.017640 1.511980 1.202013 7.239226 -9.434020 3.549607 3.275652 -3.245464 -6.883117 -0.027826 -6.853945 -6.859409 -1.358160 3.739187 1.970497 0.949140 -4.655088 0.948199 -1.774617 -2.940152 -1.405170 0.416446 6.135657 -8.012627 -1.268507 -0.993888 -1.447000 -3.415247 6.184361 3.727781 3.674852 8.732333 4.754395 -3.784602 2.340359 -7.366615 1.412817 10.777277 0.865168 -7.772240 5.217393 -5.673327 0.667105 4.283948 3.595263 4.968390 0.372946 -5.704533 -2.503665 2.669132 -0.764223 9.190675 2.377380 3.580140 -4.448920 8.176547 -2.050128 -4.727323 9.611900 4.685548 -8.928756 3.127176 3.856919 -5.197408 -0.764170 4.061692 -5.951760 -1.354303 -5.983487 0.461992 3.100223 -5.021632 -1.647131 1.579976 -8.286859 9.700104 0.625295 1.675916 2.134088 -6.533361 -5.793211 10.466378 0.240719 -0.694356 -3.301801 -3.311779 -5.465347 -8.750281 1.464180 -0.118218 -3.995212 -3.214256 -7.415315 1.490575 6.144323 -1.539781 5.186723 -7.237636 -1.239183 3.039926 1.467789 4.645121 -3.480711 -4.847360 -0.958686 -2.465033 4.343023 -5.292363 5.959594 9.057790 -3.656528 6.415694 -0.661173 -4.086713 1.068419 3.748765 -6.903007 7.963371 -1.568472 6.174608 -0.289989 5.822122 -5.219296 -1.839383 -0.185357 -1.046279 -2.817941 4.367581 -4.976518 0.058220 1.300105 -6.260803 -4.215839 1.807630 -0.478474 1.290944 0.286819 -0.065131 -6.881324 -0.241544 -4.083122 1.565555 5.938349 -0.558591 -6.094493 1.612409 0.475955 -0.658296 -0.648199 0.846120 -0.255694 6.012174 -7.233570 -1.806310 0.721980 0.907341 -5.431163 -9.184546 -0.316223 -6.027624 -4.799176 6.546333 -7.717858 -0.032106 -5.554422 -1.054901 -8.280374 -2.731697 2.027645 10.426795 3.301049 -4.902569 2.488373 -0.179640 6.016429 0.253560 1.373520 0.975238 3.433953 +-3.721729 1.712630 1.696613 -1.706846 6.511576 0.073301 1.570437 2.680008 -1.236598 3.763445 -5.546797 -2.635926 -2.064593 -4.250617 0.178999 -2.372200 1.173600 0.308396 -1.978622 0.423642 2.307873 -1.455363 -0.036366 -2.554253 -0.474439 -3.652122 -2.483341 0.394560 3.569094 -1.201910 -0.562506 0.543815 7.000230 0.164158 5.520141 3.794404 2.153306 4.675081 -0.373214 -0.556996 -0.010729 4.232702 -2.955791 -3.937078 -0.313403 -3.640432 -3.406700 -1.579502 1.834157 -2.234351 -0.092535 3.610338 -0.323994 0.999166 -2.367796 2.749429 3.538420 0.349531 6.262750 1.702152 -3.176877 0.353104 -3.869108 4.021060 -2.143388 2.812333 -1.871820 -4.553892 -0.817481 0.293227 -0.164192 -3.201013 -2.528527 2.814855 1.722092 -3.268890 2.436644 -0.859071 -2.269713 -4.868230 -4.190640 1.278089 -0.068942 4.146404 -0.508893 -0.415934 0.770487 0.635175 0.249003 -5.871934 -0.848686 4.755126 -3.787941 -0.526457 -2.183642 1.984127 -0.469433 2.204181 -3.033099 -3.051770 1.204264 0.066975 0.605271 -3.068009 1.531392 -3.651651 1.237901 0.843111 0.378172 2.600091 2.599083 2.139745 3.541844 3.974500 -3.903145 0.589944 -4.136531 1.896496 -2.138939 -0.053158 -0.347621 1.697356 1.333526 1.116384 4.542075 -5.731167 2.368330 1.825231 -2.413177 -3.989741 0.076355 -4.236304 -4.687240 -0.921074 2.447023 1.500906 0.523616 -2.739034 0.931580 -1.090639 -1.453251 -0.658041 -0.046719 2.861326 -4.871012 -0.971336 -0.602686 -0.754731 -2.305657 4.155907 2.514681 2.320851 5.710504 2.774916 -2.353554 0.817723 -4.936771 0.953765 6.849992 0.192193 -4.895728 3.398491 -3.771839 0.581495 2.729849 2.379510 2.642682 0.819891 -3.128622 -1.338551 0.938298 -0.544625 6.030650 1.569740 1.962134 -3.010479 4.494064 -2.006848 -2.957521 6.557142 3.526584 -5.929590 1.735994 2.648911 -2.988773 -1.035077 2.745994 -3.907987 -1.144238 -3.806904 0.363710 2.106795 -3.246982 -1.011327 1.634628 -5.258405 6.025285 0.346424 0.631187 1.453638 -4.493665 -4.525747 6.766648 0.341296 -0.306955 -2.040403 -2.074865 -2.938256 -5.732503 0.905322 0.198163 -2.311944 -1.909322 -4.579821 1.049830 4.164555 -1.349095 3.464100 -4.626304 -0.826184 1.960565 0.281734 3.135485 -1.998924 -3.070172 -1.042894 -1.814908 2.610199 -3.819393 3.095548 5.819208 -2.289553 4.498773 0.039553 -3.477575 -0.033420 2.517515 -4.269711 5.196004 -0.768618 3.136909 -0.035912 3.722592 -3.627337 -1.354224 -0.208759 -0.804906 -2.100603 2.778218 -3.223977 0.163123 0.600979 -4.214504 -2.489860 1.412259 -0.219251 0.775488 0.058239 -0.025053 -4.591460 -0.134745 -2.179751 1.045625 3.806095 -0.286234 -3.947601 1.188899 0.392363 -1.129709 -0.773257 0.533053 -0.197156 4.141589 -4.614924 -1.022829 0.902167 0.695682 -4.027053 -5.640600 -0.700355 -3.987839 -3.084978 3.503203 -4.630168 -0.503491 -3.407268 -0.397750 -4.527509 -2.388783 1.741182 6.688838 2.241008 -3.471595 1.711563 -0.027912 3.898595 0.356274 0.557356 0.566354 1.997722 +-15.387443 6.557202 5.402736 -6.389888 26.396225 -1.327069 7.584870 9.415489 -6.094051 15.046145 -22.283775 -9.669779 -9.325087 -20.236975 1.256232 -8.053490 8.186915 2.020289 -6.209088 3.385795 9.976686 -9.091688 0.339633 -11.131574 -1.306562 -18.636359 -8.274224 1.687014 16.986445 -5.992314 -2.623545 3.119254 30.755840 2.003151 23.659990 16.096454 9.379947 20.087939 2.167227 -10.017510 -1.278324 18.499657 -11.746718 -18.697272 -0.382806 -14.616660 -13.350648 -8.256765 7.798441 -7.847457 -3.843864 15.158804 -1.672747 4.332810 -13.324258 9.124888 19.353983 1.197461 26.502235 6.580210 -9.141781 -0.480114 -13.514460 13.703183 -10.266230 5.838894 -7.615963 -17.160152 -1.283374 1.463451 -2.698181 -12.305162 -9.998173 11.144840 8.763897 -14.207370 9.970133 -2.392701 -9.321220 -23.411267 -18.614516 3.735266 -3.208570 18.815443 -1.873523 -1.436073 4.141460 1.929064 2.803950 -24.206306 -2.946584 17.503303 -14.990470 -3.505240 -3.490486 13.066160 0.085636 7.955835 -13.516760 -14.410186 4.078487 -2.523749 2.950168 -9.983555 7.526494 -14.070391 3.563935 -0.070962 2.231157 13.634521 13.163418 8.495840 14.575656 15.424069 -18.597267 -0.180665 -17.970083 7.800216 -8.444399 -0.730657 -1.008680 7.809443 6.355253 4.204886 18.845611 -25.670194 10.071311 9.650507 -6.391742 -15.751825 0.783246 -16.952423 -18.425062 -4.289195 11.513457 4.790901 3.172506 -11.453283 3.983667 -3.517131 -6.564550 -1.477589 -0.940446 16.333846 -23.347517 -3.145390 -3.125579 -4.989001 -8.472934 14.485399 8.706777 9.754209 22.656942 12.937344 -13.034492 10.135597 -20.900506 4.386110 30.238601 0.449873 -20.174650 13.766413 -15.695703 1.781799 12.327718 10.472229 13.185898 -1.376244 -14.146113 -5.761656 6.874266 -2.244607 24.499160 3.365747 8.767670 -15.505163 20.447629 -2.847974 -11.414371 28.571561 10.142064 -25.586677 10.933424 12.006697 -15.764357 -2.484384 9.088118 -16.149207 -3.973053 -18.873008 3.508596 8.892082 -14.527397 -3.485701 4.269842 -21.793730 23.323056 1.929051 1.449970 6.777965 -16.687235 -16.308971 30.453462 0.758398 -0.292957 -9.844783 -10.466165 -11.579040 -25.219336 3.522202 -3.193492 -11.347133 -6.048018 -19.852897 3.127582 19.329170 -4.583511 13.146100 -24.679294 -1.013741 8.337899 6.379068 10.191278 -9.140254 -13.367975 -0.108561 -7.323323 8.756909 -15.670547 13.810184 23.279065 -11.141365 15.068462 -4.432704 -14.173960 4.437534 10.060532 -18.885939 21.392296 -4.282040 18.530127 0.319797 15.564509 -15.434823 -5.146698 -1.266133 -3.918327 -10.078735 10.694822 -14.988503 0.251612 6.532176 -14.320826 -13.925657 5.270192 -0.014339 5.172676 0.302185 -1.891148 -18.273759 1.305617 -8.136768 5.423117 15.849839 -0.227123 -16.742528 4.433527 4.030206 -2.262612 -4.908187 2.289158 -1.048958 16.606522 -19.504431 -3.714861 2.606077 4.493276 -13.283429 -27.195949 1.480734 -16.480304 -10.896716 17.887512 -22.414531 -1.154796 -14.134154 -1.041561 -21.208860 -5.695490 5.492315 27.376029 7.700055 -13.577310 7.402235 -0.258071 14.398248 -0.457340 4.239476 1.596779 9.068958 +-25.361282 15.339367 0.278745 -18.020639 55.974851 -4.606738 4.738253 26.918663 3.459051 21.289699 -45.084759 -11.473372 -6.869742 -38.227256 7.452919 -2.456292 10.986540 13.923828 -15.275549 -3.385010 17.683537 -4.518195 1.407452 -25.382797 -1.586443 -27.578752 -13.882910 2.308534 9.968060 3.217423 -12.645027 10.441071 45.093707 4.106833 30.243687 26.109750 24.044597 37.105034 5.024478 8.746556 14.158075 22.389825 -13.005444 -41.130800 9.179988 -26.348071 -26.519954 -17.969425 10.436012 -30.645381 21.100980 24.444546 4.981355 -2.371087 -22.196162 12.543432 31.845804 2.916705 37.027776 20.332490 -28.434756 -2.418788 -19.662748 24.970642 -21.496200 25.460369 1.798737 -39.028489 -16.779560 21.857238 14.167757 -24.284998 -28.551418 2.768833 7.869213 -18.500620 19.799413 -1.749475 6.130783 -24.674422 -25.973601 12.927434 -10.203257 32.501101 -1.228532 -4.146722 -8.042285 -5.710499 12.526789 -29.144697 -17.662469 30.579125 -19.464970 9.673065 -21.425932 9.380105 5.462207 2.335512 -15.378867 -28.372157 11.175150 6.344183 3.811791 -2.712669 -5.762374 -25.542067 22.009139 17.184743 -4.175116 19.551712 10.982679 10.962868 10.946436 14.902293 -19.234779 7.907450 -38.553931 13.605630 -8.791830 -0.077601 -7.296463 0.971522 18.442954 3.388047 18.557715 -34.469460 32.830336 19.955028 -18.007657 -17.862243 10.155239 -16.375137 -31.919271 -2.387244 19.655837 9.421887 2.550877 -3.496742 6.769021 -12.877272 -19.395471 -14.396623 -14.542244 24.852392 -35.458808 -3.829594 -5.584027 -10.380561 -14.408795 18.647611 10.962840 9.569067 37.859152 18.754821 -17.724255 6.307584 -34.744780 16.424850 58.133102 13.397210 -32.592873 16.891848 -18.683837 10.674288 18.450809 9.550453 6.849364 10.484066 -16.744761 -3.314319 -4.490093 -13.075777 37.732701 20.048194 19.040643 -39.521576 23.380135 -8.737858 -6.284657 55.534169 26.289063 -43.932093 9.881915 35.321665 -21.345103 -7.287220 10.423098 -21.176523 -12.436243 -25.528258 10.631352 14.098678 -33.416562 -22.436594 3.879301 -33.705115 34.567532 6.780785 2.182507 0.845346 -30.863976 -10.523368 57.689342 3.519529 -1.523789 -4.882555 -15.142233 -16.010514 -44.339707 4.452936 12.822755 -19.703711 -10.829040 -25.894221 0.127384 40.468222 -22.163512 9.279840 -30.839568 1.033290 15.547374 -1.256821 14.379801 -32.626802 -21.460534 -4.658845 -7.982941 15.215081 -22.950515 11.584145 34.853545 -19.606964 27.214441 17.477839 -10.865771 1.798397 26.141095 -15.956320 34.726904 -7.743045 29.837178 5.905311 31.070411 -24.229498 -6.836862 -9.244082 -5.355151 -19.001773 29.829475 -35.705953 -0.079720 21.355004 -18.886880 -24.719679 22.172844 13.418506 17.353411 -7.673617 -5.859288 -19.612891 0.937277 -11.883315 10.260010 25.408146 -8.311439 -35.322235 -2.957310 19.383493 -23.015016 -14.904651 11.831645 2.411960 39.694463 -30.327784 13.147018 10.419794 3.370353 -40.467537 -34.910986 3.800999 -23.065944 -17.659945 19.490452 -45.089072 -20.085748 -18.638499 13.990060 -33.133008 -7.347124 4.207863 39.075601 11.327962 -10.239660 17.696555 4.598636 18.223862 0.199809 2.849406 4.037443 20.995874 +-7.191653 4.690146 4.510085 -2.718801 9.966234 2.157019 2.074944 3.937603 -3.245160 7.527079 -10.493566 -4.152645 -4.480066 -7.100066 -0.696968 -5.291350 1.912402 -0.923911 -2.806677 1.935158 4.391317 -4.804896 0.207788 -5.138644 -0.979511 -7.516198 -4.389136 -0.093704 8.448311 -2.138223 -1.255043 -0.304750 13.111463 1.463824 10.516082 7.010133 3.483212 9.536447 0.309082 -1.756509 -2.343695 8.881147 -6.417687 -7.023596 0.068337 -8.401148 -4.491564 -3.020856 3.069110 -2.857588 -0.091052 6.743354 -1.141905 2.247555 -5.226252 4.034351 7.381478 1.516662 12.811136 2.056962 -4.095337 -0.880203 -6.968553 4.694188 -3.777293 4.136977 -2.625334 -6.207973 0.752736 -1.889672 0.021711 -6.470662 -3.920533 6.791130 2.878631 -6.724310 4.070464 -2.327976 -8.179950 -9.885129 -7.933795 1.655747 0.383482 7.903614 -0.908003 -0.299691 0.347925 2.563851 0.412383 -12.093362 -0.803435 9.152195 -6.246065 -0.620467 -3.049194 6.150969 -1.684662 5.287462 -6.579366 -3.431250 2.125193 0.931228 1.127535 -8.114694 2.460983 -8.591305 3.817407 -0.290211 -0.592291 3.237305 5.693173 4.129808 8.180336 8.897683 -8.873235 1.214051 -7.652572 1.867861 -2.121266 -0.192271 0.156960 4.050385 -0.631813 1.157073 9.329150 -11.577747 3.707551 3.460511 -4.826192 -9.413958 -0.468839 -9.393224 -8.452106 -1.680493 4.060361 2.970303 1.297280 -6.784862 0.440625 -2.763225 -3.207137 -3.412607 1.731954 8.162495 -8.847653 -1.955177 -1.083307 -1.665770 -4.626265 7.666410 4.449478 4.195323 10.366785 5.620558 -4.085554 3.085326 -8.003219 0.536295 11.981550 2.651779 -10.095179 6.343543 -6.503904 0.610248 5.444905 4.102267 6.441144 0.818553 -7.586703 -4.341077 3.008151 -1.037127 11.086249 2.676134 4.512542 -3.622229 11.257540 -2.470184 -6.876227 11.184337 5.393947 -9.625189 2.920582 3.680726 -5.303836 -0.662567 5.335417 -6.775960 -0.412285 -6.657752 -0.632203 3.157573 -5.387173 -1.662177 1.971825 -10.547992 12.863937 0.927188 3.616782 2.973894 -8.708464 -9.314413 11.626339 -0.781889 -1.360681 -4.313560 -3.446918 -6.573848 -10.367836 1.949407 -0.140351 -5.324329 -4.397816 -9.364591 3.032653 6.405818 -1.757536 6.443027 -8.871486 -3.609755 3.108598 0.806106 6.610689 -3.583222 -5.952901 -1.729866 -2.383425 6.749292 -6.103764 8.517595 12.282507 -3.875582 8.011849 -1.876762 -4.722073 0.928145 4.659897 -8.761147 9.165253 -2.603529 6.852087 -1.037269 7.049587 -6.419888 -2.483006 0.629700 -0.403489 -2.333358 4.770656 -5.033876 0.130989 0.210865 -8.290431 -3.338887 1.776305 -1.882790 0.610521 0.487591 1.065771 -8.149769 -0.498223 -4.580566 1.113605 7.376302 0.406756 -6.866442 1.946452 -0.964876 0.026168 1.211716 0.532550 -0.967016 6.660411 -8.725025 -3.670921 0.473147 -0.517801 -5.914676 -11.322458 -1.809609 -7.134038 -5.959265 8.505762 -9.194724 0.944684 -6.745158 -2.383402 -9.160373 -3.228800 2.579758 12.516670 5.323771 -6.837260 2.504548 -0.521557 8.533238 0.730782 1.459012 0.966259 4.119952 +-9.833509 8.008658 7.445158 -4.265192 12.312153 3.677162 3.296929 4.521569 -4.155758 11.449874 -14.714810 -5.808667 -5.745260 -9.358437 -1.751357 -9.654409 1.005659 -1.995267 -3.332467 3.160477 5.716350 -7.268469 -0.292012 -6.682946 -1.905829 -11.679532 -6.365862 -0.051300 11.848559 -3.774433 0.293269 -1.077800 18.103223 1.976465 15.131916 10.497391 3.977687 13.063693 0.295451 0.849737 -4.106076 12.133082 -9.301856 -8.297541 -1.145433 -10.943793 -6.003600 -3.931254 3.708269 -3.673145 0.860579 9.640557 -2.209387 3.391510 -7.052864 6.397453 8.770215 1.912227 18.164700 2.340836 -5.733628 -0.508707 -10.675071 8.161612 -4.949634 5.561829 -3.025111 -7.782251 2.933028 -3.934750 -0.394399 -8.067150 -4.633134 10.909263 3.906554 -10.197717 4.643991 -4.738283 -16.372868 -12.686008 -9.961692 2.992050 3.285900 10.611271 -0.601394 -0.151658 0.750145 4.994643 -0.905782 -17.766174 -0.396465 14.030723 -8.756108 -1.811535 -5.459727 9.668830 -2.343154 8.079055 -8.680035 -3.327610 3.243533 1.399771 1.626226 -13.023124 1.628209 -13.498776 5.211756 -0.177671 -2.054406 3.344377 7.826641 6.360002 12.676802 13.551504 -13.018504 2.709019 -10.575320 2.745486 -1.542721 -0.528965 0.829606 5.567941 -3.169913 2.353819 13.859744 -15.903108 4.052012 4.005148 -7.535577 -14.599336 -1.975534 -14.019646 -11.665537 -2.699813 4.619966 5.138699 2.149088 -10.232885 -0.325496 -3.687130 -3.108110 -6.597169 4.428871 11.617221 -10.788390 -2.843463 -1.029358 -1.089075 -7.488200 11.965848 7.170775 6.030377 15.224391 7.479778 -3.506483 3.290216 -10.732996 -1.041883 15.417274 5.297951 -14.181802 9.929486 -9.463202 -0.195007 6.668397 6.436626 9.088052 1.383662 -12.447230 -7.638063 4.717590 -1.723738 15.639724 3.541187 4.815263 -2.338205 17.574821 -3.220202 -11.550593 14.796915 8.884937 -12.076827 2.880424 3.973748 -7.422579 -1.775346 9.442999 -9.611960 -0.137841 -7.657895 -2.225176 3.714346 -5.886153 -1.320189 2.809343 -14.961248 18.979038 0.973998 6.683045 4.270082 -12.458547 -16.283966 14.760773 -1.918041 -2.365314 -6.058791 -3.985173 -9.728455 -13.643251 2.698336 0.654651 -7.369319 -6.640514 -13.245045 5.503249 7.459404 -2.450558 10.215098 -10.108845 -7.576897 4.498002 0.493044 9.617480 -3.931320 -8.032763 -3.176737 -1.975958 10.063263 -7.712906 13.722000 18.478693 -4.026685 12.163839 -2.741772 -6.870982 0.746813 6.485296 -13.527965 13.370923 -3.926673 6.331270 -1.425518 8.969747 -8.937136 -4.186450 1.884381 -0.519478 -2.235132 5.405464 -5.685481 0.517051 -2.069364 -13.186871 -2.512792 2.044606 -3.608028 -0.841212 1.196656 3.167061 -11.594330 -1.737272 -7.650757 0.933923 10.115339 1.836823 -8.204861 3.927570 -2.627971 1.307089 3.560070 -0.105913 -1.039652 8.365070 -12.300626 -6.114448 0.255467 -1.689897 -8.462495 -16.098687 -3.109816 -10.842657 -9.806260 10.057859 -11.949958 2.250982 -10.031534 -4.820094 -13.364072 -5.547678 4.704350 18.318396 8.095052 -10.599389 2.421521 -1.756650 13.042657 1.683498 1.933936 1.995772 5.838688 +-12.663348 10.867455 9.373102 -6.338961 17.352817 2.512356 5.488675 6.195238 -7.061813 11.869003 -19.723754 -6.277960 -6.524869 -15.619428 -0.661675 -11.488989 1.621778 -0.150248 -3.750214 3.775795 8.350671 -9.038601 -0.926494 -10.204392 -1.603492 -11.740234 -7.367807 -0.479725 14.406521 -4.755988 0.770960 -0.073816 21.635172 2.393468 19.536883 13.677621 5.773548 17.170788 0.015264 -0.758172 -4.063698 15.267739 -10.540343 -15.375410 -0.165985 -13.273202 -7.004417 -5.468290 4.726795 -5.965739 -0.033040 12.243911 -1.929694 2.847484 -9.874928 7.225976 12.912475 2.925205 21.648675 4.742017 -8.742789 -0.724830 -13.321052 8.786616 -6.816762 9.175138 -2.113915 -10.699602 2.371126 -2.528512 -2.712390 -10.685304 -7.106593 11.425548 4.864741 -11.865354 6.053486 -5.412827 -19.666878 -13.066960 -12.658348 3.608075 2.883599 14.197214 -0.799034 -0.904740 2.665461 4.441470 1.003712 -20.898798 -2.692424 17.585245 -10.907242 -1.491007 -5.591265 11.593361 -2.720333 8.806423 -10.736198 -5.557014 4.991564 2.877913 2.211086 -15.010449 0.049583 -17.675426 7.649046 0.470317 -4.123823 5.846350 11.250708 7.424721 13.107461 15.153930 -15.793135 3.495817 -15.359024 3.277606 -3.686147 0.403200 0.545074 5.689658 -1.915444 1.292171 15.231211 -19.504327 7.615459 6.546480 -7.874124 -17.965588 -0.173155 -16.651661 -15.132518 -3.107440 6.835217 6.716225 1.942624 -10.436029 -0.703729 -4.277622 -5.954706 -9.430605 3.131854 14.887181 -15.256256 -3.507663 -2.212373 -2.367203 -9.452872 13.142406 7.941136 6.912888 19.038995 10.108180 -5.637222 6.510246 -13.277364 0.495776 21.587025 4.696667 -17.990290 10.892161 -12.309325 0.954375 8.270198 6.202189 10.719664 3.929688 -16.017041 -8.567119 8.180351 -4.239756 18.473737 5.048186 7.363660 -6.645000 21.792343 -1.940149 -13.491534 21.555909 9.095869 -18.955793 7.575850 7.422853 -9.050908 -2.335623 10.256379 -12.073888 -0.432211 -10.537801 -1.618820 4.004909 -10.690429 -4.439709 1.937012 -18.892479 22.849063 2.115060 7.294129 3.646720 -15.189447 -18.645970 21.606355 -0.418628 -3.778078 -7.839788 -5.021875 -12.645166 -17.633236 3.938512 2.358741 -9.813178 -9.397968 -15.885691 5.984171 12.004710 -5.375324 11.383679 -11.673278 -8.091920 5.505005 3.399114 12.119224 -7.186887 -10.986170 -3.695060 -2.449491 12.413183 -9.278856 15.053618 23.423856 -6.578489 16.607799 -1.000845 -10.163415 1.349573 10.326833 -14.943886 16.610485 -4.429891 11.845629 -1.627870 12.622808 -12.804709 -5.260495 2.086891 -1.677379 -2.866362 7.917885 -8.488072 0.878968 -0.971245 -15.606206 -4.609061 4.990295 -2.541700 2.269949 0.224469 2.919076 -12.393490 -1.841877 -8.726370 1.228952 13.682363 -0.171656 -13.298157 2.271460 -1.117806 -0.423721 2.396345 1.780085 -1.075291 12.454443 -15.342143 -4.551425 0.431227 -2.799537 -12.791441 -19.374112 -2.305191 -13.830892 -9.875097 11.804855 -15.423443 2.632605 -11.852477 -3.371035 -18.501188 -6.402878 3.192634 21.659827 9.345697 -10.041984 4.857101 -1.169211 15.788632 2.447404 2.494916 1.857181 8.776363 +-44.746082 3.134262 -11.253160 -34.689817 112.016677 -11.221638 1.884567 72.691226 10.127399 36.331950 -78.390514 -25.011487 -15.804201 -71.505562 9.771331 -4.210404 33.296758 12.848803 -42.148146 -7.485141 27.418895 9.077824 8.224191 -37.290006 -7.285269 -34.451568 -28.950778 10.567292 13.817753 -8.609374 -20.524282 20.527423 101.765774 8.608352 70.300798 38.776291 59.748173 62.664490 11.126644 3.479754 31.464549 36.573935 -22.869531 -62.657036 3.489424 -48.008523 -65.807848 -18.501367 21.615432 -51.887032 24.961348 49.167233 12.837830 6.188845 -34.975414 24.563547 42.617450 -16.742753 70.408097 35.043412 -76.983768 -17.106467 -31.015924 53.398507 -34.262326 47.310035 -11.927242 -59.707463 -39.031587 45.682562 20.339757 -62.449613 -53.925101 6.160735 24.373067 -33.115523 47.239909 4.027583 55.867646 -56.677249 -43.359124 30.580056 -19.279151 50.515566 -1.726914 -1.276792 -3.235316 -13.574900 9.814650 -62.763662 -14.151790 54.044552 -57.392783 6.815105 -56.194185 13.638643 -17.266971 8.919502 -40.806399 -71.957563 19.883617 1.420053 1.901643 -15.935246 15.223552 -42.267902 30.168000 29.294310 5.392796 46.763202 20.525342 23.078476 33.459344 34.745188 -30.736158 14.282572 -75.567055 28.536794 -31.848599 -4.936188 -22.270385 2.350838 52.607696 26.277881 35.777442 -71.732999 57.898948 43.105775 -40.447085 -33.212206 11.707033 -35.051168 -63.138076 2.022250 40.713262 10.111530 12.954150 -14.493797 23.371291 -22.243690 -35.945937 -23.208483 -24.632556 25.080032 -70.691009 -9.125641 -1.080285 -11.209888 -27.123008 47.216044 28.652385 11.082480 82.292153 17.586169 -46.613667 20.297335 -68.921923 30.205208 106.232948 10.468543 -63.179898 44.778231 -55.386146 18.726861 24.742965 32.584078 17.665899 0.129253 -28.188787 5.213997 10.247679 -8.229887 77.494573 11.121161 35.173271 -77.040525 25.885625 -30.302550 4.183734 109.320304 44.617742 -89.750685 12.428583 64.502480 -12.794459 -8.256665 24.809540 -54.164234 -37.844154 -52.133841 28.622793 29.922298 -58.875815 -25.769715 25.435732 -62.353279 58.443459 9.104605 -20.575783 0.246664 -64.957026 -12.159751 119.840637 2.634128 6.512367 1.206023 -36.628907 -2.487010 -89.709454 1.502014 25.125069 -23.704068 2.152497 -42.581697 0.431821 74.436164 -32.030522 32.663788 -83.244286 11.593030 34.284952 -13.421333 24.281873 -56.138901 -39.766191 -8.974404 -23.438225 24.522571 -68.920010 13.701372 51.600254 -35.376742 65.903004 12.512200 -33.211482 -4.358184 32.115429 -36.106733 77.774200 -3.444817 67.571191 11.638447 59.618700 -47.624660 -12.529366 -30.615695 -11.196787 -47.563823 50.288938 -71.310443 -1.219699 34.033221 -18.174202 -60.511028 32.082251 23.123760 6.811447 -9.558916 -22.368091 -34.493060 -4.127033 -29.018128 40.348543 42.072264 -26.467197 -62.973053 3.361455 48.503738 -43.733705 -3.980568 18.419421 8.057711 80.459341 -60.008624 10.658450 27.585585 26.950007 -71.258158 -74.642826 10.207236 -37.426671 -13.281894 22.623548 -81.100061 -53.872042 -34.966883 23.821258 -52.091209 -8.863568 25.537448 86.559276 29.666111 -42.694969 25.849500 9.551493 20.959152 0.706917 14.654637 19.009731 23.153390 +-9.033953 6.309864 4.498656 -4.266367 14.815190 1.000092 4.820652 6.041768 -5.749624 9.801433 -13.511135 -4.209795 -4.517927 -11.488678 -0.077197 -6.670302 2.270745 0.000938 -3.161395 2.306104 5.456850 -5.942530 -0.285169 -6.293115 -1.466710 -10.903184 -4.666391 0.616733 10.554539 -3.066466 -0.233191 0.693488 16.789733 1.011492 13.925036 9.803736 4.664161 11.214856 0.779639 -2.539738 -1.925020 10.202149 -7.408760 -9.786571 -1.256507 -8.590050 -7.787398 -4.188746 3.870586 -5.174666 -0.919495 9.232688 -1.519004 2.433146 -6.972538 6.489521 9.479394 -0.317561 15.807881 3.375550 -6.726460 -1.608259 -8.970354 9.832715 -4.696597 4.443411 -2.748780 -9.065326 1.164305 -0.365758 -2.307171 -6.418688 -4.742329 8.262339 4.921272 -9.114195 4.563810 -3.140193 -12.139648 -11.516769 -9.284464 3.073305 1.055584 10.812130 -0.156169 -0.340110 2.691080 2.659890 0.150582 -15.472374 -1.171796 13.099237 -8.370071 -2.324382 -6.093158 8.346879 -0.747010 5.694222 -7.701828 -6.204804 3.144293 0.380331 1.715428 -10.934450 1.601208 -11.522442 3.231480 0.526042 -0.370808 6.604199 6.869871 5.040101 9.383767 10.860980 -11.176904 2.120854 -10.680113 4.143362 -3.082408 -0.271759 -0.521765 3.929432 1.315779 2.555900 11.733352 -14.935426 5.264356 4.888427 -5.240739 -12.237120 -0.837807 -11.215646 -10.602005 -2.294668 5.407079 3.640879 1.897448 -7.340108 1.179021 -2.257804 -4.452634 -4.509055 1.637015 10.486729 -12.629094 -1.932712 -1.293641 -1.188836 -6.387923 10.176357 6.450609 5.890790 14.073868 7.150597 -4.541430 5.325580 -11.284603 1.193621 16.688848 3.537890 -12.418250 9.002628 -9.919543 0.233620 5.618398 5.794937 7.631254 1.264226 -10.994672 -5.325767 5.357136 -1.692801 14.459612 3.502835 4.370457 -5.727375 14.439381 -2.723254 -8.734930 15.040178 8.193402 -13.733494 5.622891 6.023755 -8.171949 -1.668762 7.691194 -10.168179 -1.972906 -8.589009 -0.033021 4.398967 -7.377427 -1.793095 2.302731 -13.125559 15.758787 1.150916 3.605374 3.210905 -10.193793 -12.266560 15.684968 -0.231976 -1.256008 -5.568674 -4.852918 -9.908249 -13.361987 2.181218 0.615579 -6.696115 -5.304883 -11.863610 2.444675 9.369696 -2.840328 9.045856 -11.708030 -3.320067 4.822937 3.116064 7.477319 -4.988304 -7.493307 -1.918452 -2.704801 7.009607 -8.280624 10.583592 15.028789 -5.022292 11.693769 -2.286453 -7.855372 1.495698 6.039691 -11.568473 12.752740 -2.164742 8.254768 0.052786 8.892989 -8.877394 -3.314117 0.228406 -2.242574 -3.925628 5.885098 -7.355393 0.212226 0.935224 -10.401927 -5.847274 2.746692 -1.163563 1.623758 0.312827 0.694645 -9.976376 -1.080005 -7.257176 2.380519 9.230512 -0.503910 -8.447543 3.218797 0.498241 -0.598761 0.553244 1.074591 0.008411 9.028432 -11.583927 -3.016276 0.826055 0.875285 -9.290221 -15.418022 -0.662528 -10.004294 -8.531059 8.694041 -12.536629 0.442917 -8.833110 -2.282405 -14.051991 -5.299269 3.866529 16.928133 4.773506 -7.964438 3.579455 -0.928152 9.737799 0.637616 2.831019 1.790651 5.430049 +-10.349646 10.208777 6.321611 -8.271720 24.258418 -2.728937 6.417723 10.268669 -3.502186 7.681248 -20.292056 -1.707513 -1.450640 -16.533383 3.924294 -7.378252 3.786441 5.283162 -4.740071 1.770258 6.568999 -2.760644 -1.121748 -12.129993 -1.035433 -16.341835 -4.812383 0.627540 5.205744 3.946239 -0.327922 5.184980 18.658621 1.060147 12.768180 12.423363 8.930912 13.815319 1.529255 -0.444109 6.726609 8.091459 -4.955200 -16.514920 0.665724 -9.110703 -12.879194 -7.446377 2.973488 -13.845659 -0.572408 10.001793 2.466460 -1.147149 -9.822347 7.232686 15.043190 -0.353512 13.660618 8.840231 -10.752642 -1.891725 -8.357341 10.529945 -7.856475 7.946175 -0.940844 -15.141066 -4.531772 11.070459 1.162696 -6.255710 -9.628628 0.347001 5.203081 -8.206361 7.402623 -0.783659 -6.312112 -8.574737 -7.134959 6.088235 -1.968489 13.855109 0.679375 -1.751950 -0.460474 -2.619845 6.019328 -11.195125 -9.063197 15.397697 -7.265807 -1.403743 -10.161608 6.892994 7.617784 0.176912 -4.441254 -14.084590 5.677550 1.218102 0.730525 -5.404237 -4.493430 -12.768725 4.892905 7.846608 -2.421134 14.012206 -2.752981 7.957582 4.244644 4.767721 -10.626462 4.520665 -16.313804 6.487891 -7.414649 -0.897463 -3.012321 -1.443422 7.151682 5.501676 6.574639 -13.806981 14.610207 10.062069 -5.351407 -7.617675 4.206927 -6.328187 -12.680239 -1.309035 6.815353 5.510270 2.496419 -0.102028 2.416964 -4.958467 -2.445057 -7.883859 -5.273147 13.099239 -17.237143 -1.186759 -1.474843 -1.220803 -7.155896 7.478231 4.750300 2.784571 15.372886 7.116567 -7.094497 6.977314 -13.753538 5.891565 25.219524 5.442840 -12.039140 7.755004 -7.978999 1.880530 5.492436 3.063696 1.454129 5.967615 -13.090615 -6.411913 -2.447330 -8.545081 15.416466 10.657329 4.680915 -18.753549 14.752021 -7.342055 -4.151163 20.315117 12.319850 -18.001172 4.904970 16.493192 -14.527587 -5.965979 4.900066 -10.926507 -5.577364 -10.001207 3.448288 4.319469 -12.781267 -9.165445 0.073449 -13.750069 12.897291 3.889463 0.632953 -2.824388 -7.517537 -11.179915 24.149904 1.628029 -0.534863 -2.425160 -5.125658 -8.185257 -18.638729 0.863683 4.909157 -9.151452 -4.873254 -10.436956 -0.668179 14.821418 -12.359885 4.363788 -14.477572 -0.157090 6.142133 4.328366 4.757489 -13.253210 -9.003967 -2.688692 -3.447132 3.600902 -9.922735 7.590264 14.909356 -6.779843 12.656247 1.798479 -11.335091 1.958914 11.990357 -7.012620 14.069872 -2.521354 15.263369 4.645278 12.783347 -11.137339 -4.400587 -3.444457 -9.017946 -9.069171 12.646321 -15.875656 0.749965 9.533824 -5.884352 -11.192089 10.641499 6.125714 6.730960 -4.705239 0.396109 -9.077780 1.270523 -6.142112 4.143697 9.868373 -4.297109 -14.742161 -1.088839 11.052444 -9.906047 -9.728056 4.459730 1.921228 14.746618 -12.155043 7.605388 3.741042 2.003558 -18.163246 -17.140647 5.553399 -12.899985 -10.347688 5.314627 -18.752985 -7.333009 -7.677176 5.986621 -16.084190 -8.888094 5.103165 16.108324 1.347456 -4.260026 6.339385 0.279665 6.908378 -0.295835 4.152609 0.412068 7.956699 +-25.853906 16.982189 0.142230 -18.982775 56.706735 -3.838249 5.043771 27.248112 1.300532 22.694637 -45.889932 -10.105040 -6.649104 -39.890665 7.184551 -2.496559 10.119959 13.651917 -14.606766 -2.373684 18.034352 -6.595039 1.405981 -25.578119 -1.988937 -29.179349 -13.334173 2.517097 11.517818 2.910570 -11.963020 9.888419 45.326353 4.050450 30.473691 26.937269 23.692406 37.828860 5.881026 8.207448 13.200600 22.854193 -13.503140 -41.686350 9.188179 -26.626545 -26.945562 -18.642115 10.608342 -31.328737 20.912482 25.547545 4.374747 -3.007660 -23.457282 13.414645 32.785092 1.868335 38.388001 20.296505 -28.228453 -4.038980 -20.430678 25.959410 -21.721393 24.692504 3.039953 -38.690028 -14.988414 21.542744 13.247799 -23.528151 -28.045385 3.877532 8.273538 -19.791903 19.288132 -3.076789 1.743190 -25.325094 -25.753907 13.155668 -9.335359 33.703501 -0.798070 -3.840733 -7.296086 -4.852657 11.921854 -30.650153 -17.372416 32.005443 -19.114641 8.890382 -22.628416 12.123297 5.780626 2.321940 -16.180202 -27.401302 11.582194 6.851050 4.334159 -5.452717 -6.575098 -27.679074 22.348369 16.877288 -4.543666 19.719734 11.876692 10.931551 11.446104 16.145360 -20.575159 8.675510 -39.655306 13.383813 -7.100202 0.229686 -7.366637 1.029308 17.941697 3.134145 19.643509 -35.727346 33.155924 20.107956 -18.229723 -20.012809 9.828444 -17.058437 -32.049032 -2.490669 19.568736 9.499361 2.699020 -3.868624 6.560869 -12.614699 -20.747963 -15.798829 -13.502886 27.706057 -36.609022 -3.530842 -5.649511 -10.117597 -14.785994 19.282031 11.826418 10.081600 39.418756 19.388102 -16.626095 7.961687 -35.191803 16.232111 59.352325 15.956427 -33.540615 17.843208 -19.339696 10.191886 17.985388 9.982946 7.974666 10.803018 -19.042404 -4.848702 -2.544692 -13.505217 38.631297 20.026262 19.111211 -38.809887 25.994547 -7.499754 -7.183608 55.733209 27.123441 -43.938981 11.026744 35.455109 -22.143628 -6.933760 11.555574 -21.558547 -12.256699 -24.876949 10.138247 14.287875 -33.535384 -22.908515 2.400581 -34.543652 36.311194 6.638698 3.821244 1.139343 -31.224238 -11.475600 57.176722 3.049854 -2.285352 -5.537993 -15.191250 -18.697077 -44.697459 4.813614 13.423273 -20.745359 -11.795080 -26.953440 -0.217977 40.535005 -22.146397 9.599637 -31.959994 0.186293 16.212260 0.002558 15.008562 -32.573980 -21.720039 -4.332506 -7.117499 16.104561 -22.649849 13.850478 36.283296 -19.740040 28.383502 16.787092 -9.679935 2.807523 26.849970 -17.211129 36.068050 -7.666209 30.238249 5.822571 31.317734 -24.453371 -6.789354 -8.723423 -5.678835 -18.115441 29.560131 -35.798840 -0.256166 21.052072 -19.965321 -24.739249 22.309708 13.247794 17.427365 -7.279015 -5.302954 -19.295351 -0.002897 -13.147242 10.077273 26.002618 -8.414593 -35.047406 -2.662944 19.227634 -21.706803 -13.357249 11.941199 3.159682 39.852983 -31.287666 13.353853 9.579489 2.949701 -41.173588 -36.123691 4.196180 -23.174418 -19.100667 20.342977 -46.593666 -19.316276 -19.649646 13.547254 -35.543146 -7.101674 3.918955 40.409485 11.123819 -10.401489 17.822683 4.032088 19.103310 0.057516 3.384264 4.499951 21.643841 +-10.207662 5.717602 4.225679 -5.188676 17.964622 -0.658044 4.338825 7.045430 -3.800749 9.586815 -15.652412 -5.391120 -4.871826 -13.268333 0.994494 -5.522293 3.838286 2.029816 -4.404239 1.930336 6.499661 -4.870392 -0.442206 -7.827078 -1.142805 -11.589653 -5.746300 1.013464 9.434215 -3.305805 -1.653261 2.379851 19.450410 1.153492 15.468484 11.158050 6.410647 13.304409 0.828202 -3.404327 0.317057 11.250166 -7.420797 -12.312275 -0.109331 -9.546312 -9.302674 -5.852812 4.637553 -6.274412 0.061246 9.978866 -0.624130 2.137081 -8.187253 6.491950 11.660838 0.515228 16.751558 5.163644 -7.655417 0.778963 -9.387005 10.116624 -6.793891 5.950090 -3.490645 -11.598355 -1.125173 1.964001 0.786567 -8.253185 -7.351332 6.602119 5.039081 -9.094642 6.387860 -2.129604 -6.934979 -13.921628 -11.227787 3.480412 -1.131328 12.198321 -1.097401 -1.041258 1.550781 1.245792 1.687818 -15.173465 -3.033218 12.941944 -9.186354 -1.552922 -5.917815 7.612009 0.453146 4.770677 -8.139768 -9.242941 3.739329 -0.447841 1.778345 -6.528271 3.354253 -9.765364 3.529619 1.946616 -0.001195 8.324740 6.387466 5.967867 9.529189 9.762557 -10.636936 1.522789 -12.555251 5.084211 -4.991909 -0.480451 -0.499245 3.854268 3.912159 2.667724 11.451406 -15.690487 7.577839 6.249885 -5.614570 -10.522605 0.880095 -10.625247 -12.395320 -2.848695 6.943549 4.314497 1.700986 -6.432492 2.107670 -2.973667 -4.454288 -3.695687 -0.748248 10.171943 -13.949390 -2.156719 -1.849599 -2.588807 -6.193544 9.917033 6.072074 5.854596 15.402661 8.006527 -6.888991 3.928116 -13.421859 2.599651 19.679727 1.494750 -13.254124 9.058081 -9.280545 1.092316 7.203319 6.641252 6.977390 0.715656 -9.789280 -4.597665 2.380367 -2.797992 15.913806 4.239643 4.989294 -9.304872 13.658262 -2.504870 -7.901655 18.573131 8.199485 -15.694094 5.305998 8.559037 -9.011095 -3.195160 6.765105 -10.388080 -3.421549 -10.336942 2.063478 4.977634 -9.515992 -3.348344 2.877907 -14.241002 15.527568 1.359352 1.269883 2.835333 -11.297637 -11.829391 19.486437 0.115294 -0.871942 -5.227199 -5.890270 -7.170115 -16.067376 2.328310 0.375737 -6.960869 -4.896904 -12.279842 2.500272 12.250361 -4.806404 8.145888 -13.635662 -2.319162 5.572863 2.627340 7.080450 -7.523201 -8.548767 -1.370607 -3.563695 6.238575 -9.477964 9.163764 16.088282 -6.659561 10.517784 -0.198302 -9.050925 1.626828 7.809700 -11.614491 14.129657 -2.624294 9.821822 0.715898 10.181555 -9.844925 -4.094394 -0.742938 -2.110281 -6.212570 7.729550 -9.636399 0.516294 2.890793 -9.811718 -7.743401 4.675664 0.521396 2.952257 -0.341422 -0.437214 -11.186767 0.368546 -6.077622 2.992415 10.365812 -0.782360 -10.927016 2.728751 2.967810 -2.939705 -1.640248 1.766284 -0.111098 11.687443 -12.550741 -0.900431 1.970374 2.189235 -10.752939 -16.563735 0.299786 -11.225259 -7.965204 9.986771 -14.409195 -2.326406 -9.139750 0.050479 -13.164934 -4.953742 4.287148 17.655329 5.746103 -8.337067 4.724194 -0.437037 9.910647 0.539740 2.017255 1.177187 6.634079 +-11.971550 9.416663 10.257680 -6.181115 21.463302 2.075417 6.831965 11.392688 -10.551290 13.173046 -19.009147 -2.203173 -4.821024 -14.335338 0.467896 -9.453305 2.596199 -0.915782 -4.082855 3.873641 6.868100 -7.314094 -0.918489 -9.034146 -1.987923 -16.159873 -5.994533 0.577746 14.478529 -1.548992 0.890073 0.801099 22.103843 1.065746 17.770358 13.330381 7.520360 14.095473 0.907732 -5.365677 -1.946219 13.212698 -9.901618 -11.967581 -1.858658 -11.836143 -11.695351 -5.273671 4.119013 -9.175643 -5.453318 12.392447 -1.724920 2.746433 -8.117747 10.816511 13.340594 -3.267533 20.287054 5.056980 -9.664861 -4.450043 -12.201034 13.152960 -5.173437 6.546747 -5.024424 -12.583851 1.540510 0.357229 -3.737725 -7.769354 -4.522974 10.800561 6.433844 -11.868318 6.360595 -4.264136 -16.275673 -15.193159 -10.658752 4.427147 1.962669 14.546228 -0.125313 -0.764888 4.979961 3.037595 0.441297 -20.227490 -2.401913 18.567747 -11.759733 -5.388079 -10.793994 10.674168 0.183278 7.863983 -9.086980 -9.557701 4.845546 1.162563 1.718889 -17.367307 2.646218 -15.697552 2.962252 1.731681 0.360604 11.409588 4.507109 8.253440 12.373331 14.231121 -15.597091 4.420418 -13.877060 5.969178 -5.499740 -0.197157 -1.230899 4.436658 3.200767 6.114162 15.281833 -19.417396 7.613415 7.140571 -7.526167 -15.436672 -0.955616 -15.246972 -14.474352 -3.005034 6.660124 5.382764 2.702205 -9.390433 2.568382 -3.540136 -4.955877 -8.614448 1.322516 14.065145 -20.087924 -3.034074 -1.416655 0.009884 -8.562609 14.112858 8.982224 7.261720 18.221776 8.758610 -5.642411 9.033838 -14.974438 2.109597 22.948713 5.296518 -16.008380 12.188848 -13.491596 -0.076478 7.367407 6.809365 9.139228 3.280061 -16.664840 -9.119148 7.411606 -3.248614 19.575782 7.804994 5.226491 -10.102446 20.319823 -7.535888 -12.134533 18.987117 12.613436 -18.420358 7.224820 8.561333 -11.994080 -2.715599 9.388492 -14.709765 -3.683235 -10.371444 -1.212850 5.713701 -9.403179 -3.276748 3.213543 -17.426011 20.916333 2.085353 5.216556 2.357064 -11.101167 -18.094775 20.875189 0.447227 -2.059060 -7.417993 -5.676456 -14.700565 -17.938829 2.606117 1.268477 -8.949900 -7.708377 -15.959243 2.576388 11.507885 -5.069046 11.362927 -19.111189 -4.389938 6.373341 4.124552 10.099210 -8.221929 -10.341347 -4.313289 -5.036517 8.968122 -12.447742 15.150483 20.575103 -6.132015 17.499763 -4.985863 -12.995334 1.181212 8.477276 -15.213344 17.048146 -2.578074 13.360191 0.889771 12.346193 -12.931003 -4.859424 -0.622165 -5.613067 -5.752859 8.781457 -10.523081 0.733550 1.112343 -13.740569 -8.152185 4.580681 -1.725529 1.613377 -0.293674 1.614754 -14.030488 -1.693648 -10.342558 2.865461 12.226342 -2.938490 -12.164208 3.810361 1.487273 -1.948837 -2.380588 1.474304 0.599757 11.845520 -15.406514 -2.852128 1.503019 1.058849 -14.120002 -20.659464 -0.089701 -13.885133 -13.106648 10.432172 -16.901055 0.068428 -11.927326 -3.205018 -19.901344 -9.787880 6.451307 22.269926 4.611469 -11.271931 4.652411 -1.415904 13.230019 1.292109 5.535449 1.129229 5.858449 +-10.689454 7.707040 5.630732 -4.878037 18.824113 1.225230 5.862114 9.906127 -9.071638 11.665183 -16.246897 -2.282261 -4.693203 -12.573240 0.112710 -4.027614 3.133211 0.039599 -3.361256 2.387436 6.505653 -6.791329 -0.176266 -7.701694 -1.659902 -10.659130 -4.809279 0.473611 12.671450 -2.800360 -2.899971 0.979455 18.882108 1.398174 16.752891 11.494949 5.379431 13.395893 2.349344 -5.170024 -1.961781 11.890300 -8.722179 -12.788386 -0.387624 -11.082443 -8.268462 -6.129555 4.494883 -6.848737 1.430706 10.817563 -1.651228 2.674041 -8.372962 7.496111 11.283228 -1.180823 18.933322 4.250385 -9.307355 -2.533669 -9.533277 10.206764 -4.549778 5.815160 -3.020164 -11.170087 1.434130 0.048236 -0.740329 -10.051681 -4.631662 9.329016 3.754424 -10.441365 6.024811 -3.315411 -10.246347 -15.180645 -11.413689 3.643156 0.387742 12.924516 -0.353846 -0.635728 -0.471084 2.720387 0.714252 -18.147896 -1.685259 14.958140 -10.039045 -1.524953 -6.549011 9.515057 -1.440533 6.639459 -8.831375 -7.418533 3.991143 1.580430 1.876959 -13.424364 4.160558 -13.045464 4.740804 0.747503 -0.041457 7.186118 8.554606 5.975109 11.411170 12.593633 -11.280163 3.483070 -13.470225 4.890133 -2.926868 -0.374394 -0.931036 4.630293 2.611558 1.734409 13.579212 -17.722486 6.520589 6.032746 -6.034070 -14.689754 -0.288634 -13.274645 -12.773113 -2.512631 6.600946 4.199548 2.119833 -8.443257 1.427716 -3.701436 -7.424824 -6.368288 1.135471 14.127622 -16.793078 -2.432999 -1.593931 -1.520477 -7.232356 11.876549 7.428053 7.020288 16.582250 8.777784 -5.468552 5.372099 -13.756542 2.000970 19.530177 4.975615 -14.710846 10.306541 -11.441412 0.669008 7.505166 6.335165 8.961390 1.146152 -12.867499 -6.031337 8.532302 -1.923024 17.106562 3.984047 7.411790 -6.697996 16.524336 -3.996519 -9.984124 17.618738 8.799567 -17.383916 6.920211 7.704886 -6.265274 -0.405033 8.671649 -12.452234 -3.076981 -9.339536 -0.573371 5.557187 -9.962221 -3.114936 2.640285 -15.473741 19.280032 1.687339 4.886181 3.210893 -11.968691 -8.831240 19.066169 0.789062 -1.376154 -5.803526 -5.819292 -12.794373 -15.918883 2.412684 1.714329 -7.437342 -6.672433 -14.096436 2.109123 10.774514 -3.528576 9.585828 -13.543333 -3.114623 5.854789 2.344326 8.689214 -7.895188 -9.102154 -2.408149 -3.763752 9.253840 -10.305089 13.163641 17.704436 -6.094662 14.064852 0.941067 -5.019311 1.947026 7.131385 -13.045904 14.840677 -2.625671 12.415159 0.262326 11.079504 -11.068294 -3.784862 -0.805932 -0.776592 -4.692200 8.086912 -9.315620 0.214305 1.280173 -12.268311 -7.464905 3.427716 -0.917637 1.928780 0.012626 0.135475 -10.996472 -2.059631 -10.959323 3.096051 10.980915 -3.158420 -11.477413 3.098636 0.712692 -1.770556 1.380476 1.763992 0.336415 11.131370 -13.707697 -3.344226 1.179024 1.372952 -11.930755 -17.514577 -0.590637 -10.571639 -9.947820 10.695480 -15.488224 -0.595492 -10.330634 -2.421221 -19.446457 -4.677161 3.190718 20.085610 4.986961 -8.401542 4.448766 -0.629579 11.163312 0.902606 4.037374 0.997455 6.359602 +-2.226150 1.466095 2.292640 -1.394396 5.699424 0.371900 0.918917 3.982742 -0.755399 2.103537 -3.991113 -0.257625 -0.355266 -1.906209 0.381034 -1.877139 0.170268 0.584893 -2.046187 -0.774875 1.281604 1.129144 -0.401916 -1.781416 -0.456037 -2.429960 -2.043884 0.203924 1.348588 0.533948 -0.708606 0.504207 4.407677 -0.641474 3.536807 2.367788 3.321693 2.397022 -0.921988 1.514448 1.436049 2.005884 -1.715208 -2.567178 -0.274354 -2.711315 -2.909119 -0.379765 0.916405 -2.839279 0.651452 1.803963 0.355145 0.599953 0.081425 2.536882 1.144153 -0.762195 3.218362 1.598701 -4.344044 -0.310458 -2.663078 4.320648 -1.044721 3.853301 -1.654819 -4.048653 -1.996504 1.198520 0.844839 -2.517766 -1.650874 1.216442 0.601332 -1.420376 1.919149 -0.505534 0.989894 -1.738535 -1.704814 1.378862 -0.355669 1.993640 -0.377146 -0.626274 -0.564015 -0.219240 0.175550 -3.116148 -1.477825 4.278432 -2.989502 0.640245 -4.233013 -1.344103 -0.143418 1.543964 -0.797891 -2.990781 1.126668 1.151737 -0.061197 -2.339386 0.684421 -2.198443 0.751702 1.702565 0.113443 2.427265 -1.614466 1.779339 1.872063 2.043602 -1.195681 1.492031 -2.916342 1.934663 -2.517276 0.237185 -0.701615 0.341486 1.755923 1.784636 2.293083 -2.652623 2.045791 0.869418 -2.384219 -1.855782 0.434489 -2.471088 -3.468449 -0.286469 1.152506 1.603733 -0.012611 -1.437124 0.820277 -1.182528 -1.036597 -2.787199 -0.635836 -0.288768 -3.516433 -1.036615 -0.109943 0.335153 -1.861142 3.249501 1.938819 1.037659 3.600369 1.499859 -0.628205 0.381312 -3.420477 0.843782 4.142985 0.323388 -2.987777 1.943372 -2.992832 0.528151 1.889130 1.071550 0.051984 2.713589 -1.796924 -0.618396 -0.664484 -0.690402 3.917043 3.045768 0.903247 -3.084584 1.528039 -3.857336 -1.763847 4.386034 3.260502 -4.565321 0.415410 1.938231 -0.488506 -1.226223 1.425717 -3.315187 -1.926461 -1.806736 0.007061 1.491266 -2.174541 -1.146836 2.292505 -3.073867 3.743734 0.249635 -0.268636 -0.207968 -2.878644 -3.121033 4.941854 0.545566 -0.196778 -0.427245 -0.664187 -1.070170 -3.630417 0.187519 1.612043 -1.239453 -1.701672 -2.472633 0.760363 2.699416 -1.963996 2.151093 -2.989266 -0.946126 1.228286 -1.153655 2.147819 -3.571300 -1.855577 -2.734543 -1.399301 1.878841 -3.395572 1.169850 3.889107 -1.025829 4.039324 1.085334 -3.913579 -1.687659 1.980678 -1.942616 3.204104 -0.139164 1.328036 0.397548 2.418638 -2.777991 -1.212246 -1.158793 -0.440816 -1.668137 2.720961 -2.401467 0.452989 -0.047061 -3.143336 -0.972657 1.727590 0.481257 0.117968 -0.426631 -0.076524 -3.013865 -0.563281 -2.122812 0.176660 2.278480 -1.947427 -3.565156 0.584905 0.184197 -3.113895 -1.378238 0.312688 0.413389 2.897856 -2.563568 -0.093582 1.535461 0.041692 -4.846990 -3.133605 -1.181564 -2.811394 -2.423076 0.110039 -2.467652 -2.041085 -1.917023 0.135298 -3.214129 -3.492064 2.093641 4.213720 1.375927 -1.644939 1.254742 0.244255 2.841568 0.788098 0.785513 0.447855 0.843260 +-94.382010 79.699891 32.095440 -77.565556 203.687499 -11.537474 26.489582 103.646484 2.648416 75.306982 -180.040329 -34.605811 -23.494935 -144.617350 26.874161 -33.827823 31.795469 53.322924 -53.201515 3.869772 69.579511 -22.746295 -0.294477 -104.367502 -6.857697 -101.234290 -51.766121 3.828454 30.430092 28.217879 -25.715926 37.940219 165.049262 26.497063 118.479388 103.537953 81.544224 149.759191 17.863723 49.992180 48.534621 84.391687 -47.707541 -162.736958 38.538165 -101.773375 -93.225027 -76.271205 30.267584 -128.993714 80.787048 93.521090 19.880807 -13.395081 -86.168050 40.632066 120.553467 16.833969 134.598375 81.431598 -111.760360 -7.815220 -80.224108 72.622411 -74.995459 103.676258 22.256509 -139.250626 -49.396454 80.060830 61.573659 -86.889291 -106.153236 8.812420 26.131120 -67.414504 75.428452 -14.115529 -19.822778 -76.969981 -86.162990 50.885922 -25.261221 124.162369 -3.840944 -16.567894 -38.166498 -20.206688 47.170952 -108.174670 -71.809521 124.090533 -66.494889 30.127139 -94.828083 47.983744 23.548681 10.833112 -60.054400 -99.484410 52.897068 32.809237 12.613019 -18.109299 -52.856195 -112.935147 93.215829 78.684846 -31.530379 76.298396 30.914611 55.709937 46.877453 55.652706 -82.079963 55.231063 -149.275567 48.859317 -32.665431 -0.419634 -23.702627 -0.455642 51.646848 15.237575 62.985809 -123.484577 129.524529 84.872172 -74.485719 -71.343366 43.375022 -67.596028 -121.411255 -13.064987 70.071442 47.746592 10.906426 -10.956356 10.886681 -56.767208 -58.342615 -82.392330 -51.504689 105.205096 -128.315160 -17.151214 -20.851911 -34.520304 -59.974178 71.816577 40.492398 28.662614 141.761683 66.033048 -59.028733 12.200655 -121.937570 53.711464 221.259872 64.092042 -124.272332 63.183020 -56.529962 37.749714 62.426295 27.934166 24.800118 47.957899 -85.399985 -36.671988 -23.617460 -65.091790 139.691547 96.537662 67.807788 -151.608470 111.243509 -42.318668 -34.388508 203.228082 104.451841 -152.172411 16.600088 133.408040 -90.794369 -39.207150 40.569555 -74.265620 -43.675226 -81.135275 31.637657 41.676208 -123.646449 -97.326059 6.146166 -132.375216 133.807226 29.206560 25.932549 -17.352894 -112.014294 -61.017126 219.068116 10.353387 -18.084578 -13.613213 -47.784520 -58.383431 -165.367450 18.461140 59.720813 -71.403390 -51.735402 -93.325310 7.009547 138.814580 -98.132900 26.439293 -91.019834 -18.646467 57.731307 -15.291516 57.119016 -137.587346 -85.224953 -25.681820 -21.467531 67.856068 -71.877247 56.173880 145.299571 -64.810367 107.942546 79.253481 -38.026060 4.892641 112.047004 -58.671641 132.990303 -41.583750 116.638261 21.238296 118.722816 -92.213314 -34.633578 -28.192786 -26.681099 -65.001743 118.456291 -130.579927 5.777360 68.373113 -75.512307 -78.885718 93.645973 46.836330 56.691073 -31.479075 -2.623855 -73.677491 -1.464784 -50.641954 32.576609 99.327977 -34.460985 -137.209022 -18.678507 73.094015 -83.868219 -53.685091 45.828770 11.996985 149.328959 -113.146648 56.907833 34.983012 -4.551650 -159.348686 -129.255258 23.818899 -97.690900 -76.979152 65.137334 -165.300796 -68.677027 -72.851579 53.672092 -128.756704 -36.569213 18.341017 143.777213 45.123159 -38.688447 61.231336 12.668330 79.414878 7.137066 13.366398 11.824652 88.802585 +-6.835282 5.172045 4.635546 -3.264638 11.182554 0.872894 4.377871 4.237433 -3.974753 7.656058 -10.376154 -3.429001 -3.354888 -8.253507 -0.168833 -5.818840 1.754013 -0.096411 -2.184543 2.117448 3.911967 -4.607043 -0.184875 -4.661478 -1.264971 -9.377266 -3.701156 0.611907 7.988749 -1.800604 0.620017 0.444129 12.972759 1.058844 11.163924 7.575977 3.100991 8.420248 0.668173 -1.941457 -1.447299 7.635865 -5.708126 -7.440673 -1.189431 -6.391892 -6.360558 -4.178782 2.716328 -4.507396 -1.224717 6.957415 -1.180282 2.062968 -5.212924 4.733034 7.624089 -0.193893 12.005809 2.429808 -4.831151 -0.476497 -6.773866 6.628624 -3.204744 2.655592 -2.595519 -7.161965 1.165705 -0.265419 -1.715642 -4.366804 -3.030708 6.460120 4.164052 -6.948000 3.510988 -2.429570 -9.844214 -9.420579 -6.647946 2.400214 1.003696 8.341645 -0.077453 -0.226097 2.040536 1.985079 -0.115013 -11.811396 -0.817832 10.190660 -6.205048 -2.603013 -3.854704 6.770423 0.032529 4.480133 -5.643331 -5.043564 2.349954 -0.101575 1.139473 -7.410928 0.891295 -8.578740 1.872737 0.640284 -0.147485 5.370499 4.588611 4.235754 7.691915 8.326966 -9.456280 2.497169 -7.806549 3.677398 -2.859135 -0.400992 -0.260746 3.118030 0.816486 2.811775 8.975142 -11.337130 3.884632 4.022542 -3.775691 -9.019722 -0.864242 -8.670568 -8.022982 -1.831961 3.834695 2.890111 1.706050 -5.886741 0.574203 -1.964883 -2.091300 -3.334205 1.458988 8.154235 -9.685996 -1.444012 -0.743667 -0.683458 -4.963183 7.952682 5.048701 4.414481 10.702355 5.420855 -3.593487 3.694853 -8.702146 0.614920 12.795714 2.127720 -9.114005 7.093891 -7.186957 -0.184847 4.488411 4.589749 5.800439 0.277856 -8.872134 -4.531725 3.558125 -1.273385 11.178589 3.261132 2.967915 -4.974785 11.578882 -2.480747 -6.875714 11.183368 6.471166 -10.226806 3.511275 4.427606 -7.631741 -1.569662 5.865738 -7.847609 -1.706813 -6.499505 -0.124154 3.202879 -5.045519 -1.289320 1.876532 -10.039166 11.812906 0.834285 2.841534 2.171407 -7.001035 -9.734152 12.259644 -0.198399 -0.805468 -4.012442 -3.559498 -6.914931 -10.219666 1.389709 0.106356 -5.154659 -3.794892 -9.061946 2.229713 6.630465 -2.206592 7.006061 -8.629074 -2.673530 3.729198 2.210605 5.148202 -4.259696 -5.647852 -1.582535 -2.327673 4.851631 -6.092982 8.629498 11.501036 -3.485992 8.436923 -2.279021 -6.529431 1.425475 4.400180 -9.094650 9.816163 -2.111895 6.583891 0.268029 6.612828 -6.471794 -2.737892 0.049478 -2.395588 -3.357132 4.797634 -5.720596 0.279286 0.996518 -7.906832 -4.552378 1.988771 -0.870619 0.828550 0.269962 0.987278 -8.642417 -0.459135 -5.773455 1.764155 6.831178 -0.145716 -6.700545 2.729331 0.646336 -0.147498 -0.938839 0.472713 0.070913 6.458654 -8.764638 -2.345781 0.709085 0.869867 -6.836876 -12.061577 0.318335 -8.528632 -7.019220 6.393256 -9.449012 0.400952 -6.930116 -2.077933 -10.799858 -4.414170 3.660455 13.152332 3.550942 -6.498500 2.297711 -0.972459 7.466689 0.461422 2.457295 1.355330 4.209877 +-16.935607 2.396946 -2.619259 -13.781570 41.644364 -5.427716 0.187167 28.793586 4.564781 13.293694 -30.378593 -9.575701 -5.630884 -28.139455 3.764580 -3.472773 13.231196 6.352975 -15.658835 -2.028749 10.580065 3.826306 2.495686 -14.713592 -2.930479 -13.270379 -10.836601 3.939309 4.604685 -3.746130 -7.174085 8.225189 40.073548 3.651840 29.073243 16.111939 22.059541 24.050530 5.866790 1.914052 11.820509 14.151684 -8.391053 -24.691615 0.146125 -17.795495 -23.556090 -6.603330 7.960585 -19.444615 9.344896 17.763784 5.167236 3.251471 -13.877608 8.718905 15.262004 -4.278049 26.786251 13.623871 -29.998968 -5.765302 -12.130910 20.627005 -14.186581 17.536752 -4.626363 -22.366541 -13.550640 17.198103 7.049074 -22.652563 -20.352837 2.138441 8.782461 -12.928263 18.235007 1.456914 19.469583 -20.007574 -15.779450 12.376958 -7.323636 19.086951 -0.738148 -0.279951 -2.064388 -4.877512 3.738572 -23.944778 -5.619635 19.820417 -22.445766 2.195434 -20.046128 6.481104 -5.583178 3.716843 -14.150693 -27.801834 8.158427 -0.145356 0.629750 -5.812640 5.373438 -15.492740 11.981910 11.288208 1.024847 19.052139 7.524853 11.070155 13.990251 13.393623 -11.559356 4.814226 -30.018854 11.364554 -14.604660 -2.653876 -8.090661 1.027895 19.001478 10.894674 13.810222 -26.857489 22.446598 17.664209 -14.144631 -12.384283 5.255317 -13.667981 -24.447831 -0.113432 15.467266 4.857506 5.407661 -6.114773 8.165755 -8.465705 -12.471796 -9.127044 -9.610655 8.679610 -25.844097 -3.819950 -0.266050 -3.836506 -10.440375 17.933603 10.767788 4.179999 30.882183 6.284887 -18.010026 5.663573 -26.662062 10.319093 40.385554 1.638607 -23.517081 17.398581 -19.856863 6.091917 9.978630 12.865382 6.586829 0.126902 -11.257749 -0.006402 2.335530 -3.711319 29.056011 4.232075 12.202688 -28.850622 11.444250 -11.416302 0.274258 42.258357 16.199521 -33.935756 4.016159 24.362220 -6.066522 -4.088941 9.233469 -20.525066 -12.895353 -20.157581 10.177153 11.170426 -22.479010 -10.109739 9.708921 -23.816802 22.146567 3.440840 -8.241853 -1.145237 -24.781963 -6.257309 46.994097 1.772829 2.365489 0.493481 -13.959600 -0.857805 -34.802192 0.023426 8.827241 -9.394230 2.024365 -16.027629 0.506075 27.567439 -13.079862 11.967101 -31.015320 3.097716 13.484588 -5.085756 7.999223 -20.428592 -15.304989 -3.611674 -9.315491 9.687074 -26.351830 6.191404 20.701820 -12.154332 25.924316 6.480167 -14.341378 -1.312777 12.969527 -15.035434 30.175951 -2.858045 23.694975 5.495370 22.109579 -18.866297 -6.125272 -11.685412 -5.100467 -18.443521 19.003137 -27.214647 0.026358 11.895089 -7.352029 -22.004745 12.413401 8.748314 3.082209 -3.742900 -7.012225 -14.510491 -1.366821 -11.347160 14.900651 15.994403 -9.432440 -24.776621 1.995329 18.889730 -16.318655 -2.741418 6.085962 2.906075 30.327093 -22.774637 4.221018 11.183059 10.198081 -27.162555 -28.734372 4.153042 -15.463876 -4.644713 6.595212 -30.735990 -20.961325 -12.716767 9.054614 -19.338698 -3.199032 11.148781 33.190229 11.114051 -16.990588 8.815515 2.863193 8.790928 1.242355 5.813165 5.682144 9.892480 +-10.334277 5.754347 4.634920 -4.360800 17.483352 1.113441 5.061936 7.141940 -7.353037 11.130358 -14.762128 -5.063386 -5.760874 -12.640205 0.010301 -5.964667 3.599802 -0.374870 -3.817518 2.709644 6.149051 -6.908823 0.347366 -6.662730 -1.487368 -11.364065 -5.367690 1.043668 13.151407 -3.966551 -1.551252 0.538987 19.170466 0.562044 15.657604 10.422323 5.165268 12.279093 0.926560 -6.960165 -2.238441 12.013055 -8.633810 -10.951650 -1.334814 -10.145324 -8.966825 -4.552490 5.250874 -5.122290 -3.440759 10.403511 -1.892569 2.811359 -7.928396 7.659771 11.234209 -0.342815 18.406542 3.417302 -7.037653 -2.252787 -9.896659 10.186164 -5.260582 4.548140 -5.285449 -10.617530 0.591798 -0.439220 -3.703111 -7.808775 -4.885515 9.453554 5.720794 -10.184442 5.835248 -2.943586 -10.205767 -15.082433 -11.335262 2.882536 -0.347493 12.294389 -0.744808 -0.329906 3.570155 2.776815 0.261858 -17.738427 -0.826249 13.465288 -9.945669 -3.115831 -4.274538 9.281380 -1.186475 6.369263 -9.241848 -7.504390 2.980009 -0.252198 2.035082 -12.338195 5.695660 -11.712053 2.550731 -0.188959 1.616172 8.140381 8.731519 5.600224 10.751338 12.414104 -12.647914 0.866434 -11.594500 4.418222 -4.983588 -0.242770 -1.004180 5.524430 2.989616 2.928529 13.783645 -17.604816 5.799838 5.533169 -5.080897 -13.202506 -0.578817 -12.565188 -12.008529 -2.346027 6.545224 3.055363 2.016460 -8.732511 2.350568 -2.306940 -5.679567 -1.968039 1.357136 11.571143 -15.577191 -2.075728 -1.539897 -1.867605 -6.078581 11.296880 7.312451 7.051740 15.895144 8.358308 -6.660266 6.731812 -13.384878 2.334157 19.041037 1.595303 -13.881780 10.078036 -11.540706 0.449615 7.218369 6.829915 9.447750 0.891091 -11.152029 -5.259232 6.820951 -0.783161 16.560261 2.658683 5.830741 -7.191315 15.323943 -3.591088 -8.875263 16.971259 7.868267 -16.488839 7.617776 6.706961 -9.126948 -0.805394 7.866851 -11.776422 -2.228860 -10.921109 0.274508 6.018843 -8.816732 -2.028045 2.720304 -14.698147 17.688535 1.063691 2.653059 4.580675 -11.163519 -11.598552 17.951089 0.666008 -0.945754 -6.845405 -6.222127 -11.177135 -15.547074 2.410687 -0.694463 -7.627876 -5.323811 -13.755711 1.928559 10.697007 -2.042624 10.223120 -15.896655 -1.735304 5.571199 4.284325 8.379518 -4.339191 -8.477830 -1.461535 -4.950376 7.323170 -10.664232 11.510496 15.964647 -6.531346 12.878959 -3.699515 -8.877915 2.368092 5.999009 -13.220413 14.569037 -1.780206 11.490783 -0.150508 10.245662 -10.063536 -3.038298 -0.216031 -3.030447 -4.930203 6.796307 -8.770044 -0.174889 2.068257 -11.036107 -8.167594 2.450222 -1.301954 2.246061 0.690435 -0.281467 -12.011233 -0.880340 -7.346556 3.154004 10.382315 -1.269986 -10.188041 3.670799 0.840083 -0.352344 -0.682046 1.248824 -0.267232 10.141762 -13.285430 -3.851399 1.070718 2.372419 -9.629805 -17.218751 -0.770428 -10.353879 -8.471211 11.495332 -14.283527 0.536187 -9.933915 -2.634933 -15.281118 -5.184554 4.229570 19.307522 5.024282 -9.639529 4.416827 -0.742483 10.438568 0.268488 3.290488 1.368982 5.212947 +-72.978131 63.261874 26.845746 -60.592828 151.298122 -7.562526 18.204974 73.863175 2.577053 56.710297 -140.200518 -30.355097 -20.532210 -113.560821 19.270764 -25.823275 25.542015 40.707394 -38.018226 9.999961 54.743354 -25.005660 1.194691 -82.629372 -4.101621 -73.358298 -40.465722 1.967823 23.219487 21.100900 -15.704179 27.213047 126.155817 27.076646 91.975282 78.888262 52.439070 120.307001 16.337025 34.315962 32.888961 67.993738 -36.779970 -128.921009 33.689000 -80.499793 -65.501558 -63.770217 22.314142 -97.705678 61.131497 72.011589 14.298244 -11.713285 -72.426692 22.528160 97.842334 20.939549 104.882369 61.657931 -80.260903 -1.617470 -61.702765 39.334643 -58.266414 75.938482 21.864030 -102.908248 -32.201527 58.422023 51.462173 -68.168139 -83.139606 6.711393 18.804800 -51.051529 59.319472 -11.542164 -22.940320 -62.013847 -66.989152 36.335095 -20.684706 96.974106 -4.973172 -12.393098 -31.574833 -15.095596 37.900953 -83.090200 -55.199561 88.954507 -47.668273 22.257551 -59.605364 47.373483 17.450214 8.206620 -49.976262 -70.982757 40.948271 24.736055 9.723358 -5.634435 -42.180855 -87.782736 76.555128 58.972309 -26.258419 55.875920 33.694562 46.082332 38.691431 42.958105 -69.075968 42.023193 -113.313960 33.346407 -24.733129 -0.381785 -16.440596 2.619515 34.208403 7.652397 48.090457 -95.298352 100.471248 69.148941 -54.468674 -54.952448 35.333251 -53.756223 -92.907398 -10.469071 53.824776 36.849893 9.267596 -9.289924 2.895199 -45.426850 -43.890710 -59.460341 -38.873581 89.650825 -95.800361 -13.032288 -16.528479 -29.793639 -43.982776 51.631789 28.708882 20.552608 107.825139 50.048362 -49.522053 4.149358 -90.641726 41.132159 173.631125 47.185813 -96.209389 46.931159 -35.182269 29.716358 49.225063 19.635235 24.864132 29.932880 -67.070745 -32.864704 -18.198336 -52.336602 105.822078 73.278604 55.568859 -116.529469 93.025461 -24.168755 -25.848224 157.351615 71.855276 -112.792462 10.540892 101.903979 -75.659833 -27.640230 28.158127 -49.148192 -28.441618 -62.553149 24.324003 28.918070 -95.166085 -79.595032 -2.030686 -104.075292 103.971210 23.255247 24.681998 -14.425383 -84.828249 -45.342003 170.190014 8.364244 -16.767485 -10.717161 -36.066682 -41.563894 -127.651327 14.837407 42.306173 -56.292884 -37.920641 -71.553394 7.180980 104.350722 -76.054027 15.943507 -65.461524 -16.656903 43.070618 -13.116815 41.909088 -105.272524 -67.010276 -14.833981 -16.094484 53.857594 -49.513052 46.089546 113.900776 -50.022431 77.421092 65.326321 -17.754746 9.146949 88.336067 -44.870473 102.147016 -38.709595 97.471803 13.667632 92.516514 -67.769296 -27.054331 -18.501682 -20.321924 -48.027383 91.426855 -99.558686 4.787333 55.568820 -55.690757 -60.341438 72.986446 33.423640 46.076534 -23.410894 -0.283411 -58.245120 1.408712 -32.487751 25.089035 77.207030 -22.237963 -107.821225 -18.188061 57.534621 -56.961519 -42.640675 35.726157 6.982153 114.136593 -86.887169 44.515180 24.343806 -5.790996 -114.814398 -97.090528 22.807891 -74.383251 -56.662643 57.942919 -128.396075 -47.350406 -56.444929 40.924694 -94.458566 -20.086065 9.253921 108.600764 37.473143 -32.476380 45.862972 8.738821 61.888443 5.307731 8.725261 6.134931 72.186873 +-8.429178 3.038069 1.468321 -3.379722 15.081550 -0.732692 3.206054 6.104896 -3.021557 8.057710 -11.908141 -5.260640 -4.749226 -11.017877 0.969425 -2.518660 4.394957 1.618556 -3.722392 1.063093 5.482569 -4.243150 0.239058 -5.748518 -0.520300 -9.020455 -4.562577 1.022814 8.579499 -3.085822 -2.888622 2.057384 16.277618 1.099646 12.514386 8.500468 5.460616 10.694793 1.119920 -4.821108 -0.297970 9.675092 -6.239448 -10.209258 0.522824 -8.099341 -7.636114 -4.612275 4.461590 -4.525661 -0.080581 8.309102 -0.843208 2.164593 -6.750761 4.694749 9.946710 0.524629 14.147933 3.981565 -5.779979 -0.347573 -7.091535 8.030339 -5.475835 4.024635 -3.507917 -10.001947 -1.545341 1.284948 0.241693 -7.295207 -6.006772 5.736666 4.369162 -7.287519 5.761244 -0.985011 -2.758029 -12.862292 -10.618309 2.187193 -2.530826 10.412286 -1.238343 -0.866527 1.331240 0.603828 1.461444 -12.832795 -1.624736 9.492566 -7.935325 -0.682345 -3.310026 6.001611 -0.361133 4.136194 -7.333008 -7.955933 2.414097 -0.937544 1.687173 -4.391399 4.498738 -7.002676 2.651348 0.414115 1.608463 7.084071 7.299886 3.966091 7.584308 8.304164 -8.811955 -0.155476 -9.702629 4.453447 -4.194840 -0.194727 -0.689308 3.995577 4.415068 1.520761 9.863819 -13.676756 5.669349 5.183787 -3.892802 -8.304895 0.700858 -8.943786 -10.102916 -2.253312 6.504764 2.298424 1.152700 -5.739549 2.443438 -2.043711 -5.060693 -0.666648 -1.357324 8.241574 -12.392924 -1.660561 -1.844137 -3.111194 -4.344199 7.832645 4.785273 5.607855 12.340901 7.006801 -6.998498 4.120696 -11.587124 3.047521 16.555855 0.607938 -10.973026 7.233364 -8.106091 1.428077 6.708469 5.696738 6.723425 -0.546385 -6.312208 -2.051617 2.904609 -0.842271 13.284124 2.453000 5.205079 -8.119497 9.779373 -1.489786 -5.776501 15.677959 5.573610 -13.603308 5.515693 6.702497 -7.308540 -1.059194 4.774309 -8.612238 -2.731237 -10.014484 2.405776 5.185128 -8.474957 -2.330154 2.745515 -11.610160 12.587370 0.963675 0.579386 3.668139 -9.726346 -7.178203 16.520317 0.608876 -0.150920 -4.824986 -5.773114 -6.012547 -13.235925 2.016359 -1.022491 -5.651674 -3.303150 -10.465404 1.061770 11.049793 -2.322472 6.821807 -13.084461 0.104292 4.622706 2.293663 5.552731 -5.721667 -7.158360 -0.169366 -3.863354 4.831947 -8.392081 6.683238 12.043641 -6.426132 7.851245 -0.648534 -6.107901 1.958324 5.298371 -9.582779 11.506157 -1.895345 9.488100 0.284971 8.650646 -8.034398 -2.617568 -1.006240 -1.117949 -5.555636 6.455156 -8.128295 0.057083 3.840461 -7.618124 -7.865025 2.899599 0.305498 3.180792 0.092003 -1.945316 -9.402868 0.656788 -4.174986 3.220224 8.625761 -0.696027 -8.937375 2.231401 2.157819 -1.910279 -1.989114 1.750438 -0.467829 9.778621 -10.509433 -1.524409 1.703650 2.855973 -7.602294 -13.867487 0.137422 -8.120304 -5.669618 9.929837 -12.551207 -1.577859 -7.570971 -0.157027 -10.865879 -2.519717 2.620879 14.675130 4.328438 -6.913070 4.416987 0.290605 7.380554 -0.289814 1.740579 1.066720 5.142198 +-22.018757 25.635831 24.554075 -10.934611 22.511702 16.505237 7.343185 7.405192 -11.372496 29.557236 -35.552404 -10.058458 -12.457188 -16.396325 -6.983717 -28.142041 -3.417293 -10.895869 -5.238110 10.084975 12.382707 -21.802817 -1.448392 -15.929257 -5.327982 -32.072402 -14.352075 -2.102452 30.302322 -4.020401 3.039003 -6.718071 37.600224 6.620219 31.957475 24.698023 7.362154 31.049886 0.381574 10.727676 -14.390530 28.190928 -23.508537 -14.359210 -2.348923 -28.139648 -11.067122 -9.946357 5.742319 -8.665193 6.001503 23.199627 -6.810056 7.040656 -16.388449 15.270636 18.538756 4.881011 43.071279 3.616018 -9.568537 -5.347216 -26.111383 14.433684 -8.374979 12.661906 -2.405393 -12.525736 13.684878 -14.722592 0.646098 -16.440093 -6.463546 29.101216 6.771080 -25.317454 8.455753 -15.968392 -54.784646 -27.457846 -18.755507 7.391846 15.317347 24.660240 0.476140 0.196281 -2.662579 15.973586 -4.722946 -43.398525 0.220806 36.450069 -16.636882 -5.640148 -17.474648 28.213555 -5.212988 21.567657 -20.143598 0.792369 8.674569 8.056639 3.302784 -40.686790 -4.406973 -39.833805 16.172591 0.082506 -9.718409 0.931997 14.944732 14.983454 32.431499 35.015079 -34.073710 12.952025 -23.102055 2.956884 5.675365 -1.270352 3.507718 12.829921 -17.623493 5.083426 33.255747 -36.016865 7.069241 8.066585 -22.236060 -39.203831 -7.597499 -36.469156 -26.361224 -5.542366 6.433381 14.825437 6.068200 -26.287368 -4.587841 -11.854797 -3.971029 -24.061413 16.943235 34.208795 -21.706528 -7.312367 -1.101351 0.473789 -20.356891 30.195537 17.891029 12.760206 36.024166 16.562654 -0.982714 7.602315 -20.547255 -7.013145 31.744784 24.671215 -34.031270 23.691077 -20.003281 -1.820159 13.171690 13.243624 21.707800 5.670254 -36.484591 -24.197324 11.937226 -6.387141 36.070077 11.454247 11.386180 2.503700 49.372886 -10.624331 -31.996707 25.952684 26.263716 -20.329603 -0.026870 5.617251 -16.920138 -3.156078 26.145290 -20.513538 3.513124 -11.051439 -11.407781 5.791086 -8.971643 -3.255011 3.010264 -35.763239 48.929085 2.917833 27.815745 8.743007 -28.008892 -43.728843 26.482789 -9.556634 -8.845164 -13.381038 -4.844027 -28.699491 -28.145624 6.798425 4.747089 -18.972798 -20.081207 -31.764005 16.052690 10.399310 -6.304764 23.287656 -17.099376 -26.041169 9.569145 -2.290825 26.044230 -7.437562 -18.658425 -10.583588 -0.103777 29.147833 -13.790394 40.695581 47.290263 -4.797631 29.924702 -9.546366 -8.831283 1.291711 15.986353 -32.377268 30.447820 -11.058739 11.190690 -5.167643 20.244398 -19.330376 -10.726804 7.613111 -1.044341 0.970540 12.201604 -9.539207 2.055716 -9.944435 -34.560540 1.730252 4.364297 -12.363775 -7.984435 3.317050 14.740141 -25.677357 -7.668257 -22.691153 -0.957770 23.272195 6.297764 -15.060727 8.399156 -11.235065 7.773668 15.863053 -1.394697 -2.284470 16.280196 -27.853998 -17.853231 -2.276240 -10.878072 -19.472866 -38.040537 -9.410924 -24.977103 -29.253329 23.357555 -27.093346 10.030995 -25.487542 -16.269990 -35.175134 -14.846144 11.521705 42.769700 20.393474 -25.325748 1.672890 -5.950987 34.460631 4.374931 5.274019 6.542470 13.209600 +-3.654771 1.171597 0.337558 -1.781005 8.617513 -0.234455 1.767075 4.636556 -1.807726 3.409596 -5.642250 -1.206041 -1.220144 -4.277687 0.793031 -0.117967 1.663864 1.085843 -2.412534 -0.236789 2.350447 -0.370122 -0.059360 -2.653521 -0.436862 -2.667420 -2.209102 0.562082 3.056747 -0.532675 -2.536177 1.140514 6.750944 -0.175817 5.383608 3.651465 3.643953 4.431630 -0.085440 -1.295050 1.208156 3.595872 -2.504626 -4.744418 0.335004 -3.930702 -4.359294 -1.766485 1.814666 -3.208456 1.829118 3.513036 0.172684 0.764793 -1.989213 2.835942 3.800736 -0.693125 5.831300 2.355984 -4.717681 -0.436582 -3.200634 4.900648 -1.737927 3.631912 -1.522068 -5.816943 -2.080580 1.701775 1.612887 -4.778304 -3.377721 1.929614 1.330449 -2.775555 3.093395 -0.338224 1.828217 -5.345615 -4.243880 1.444532 -1.797208 4.378997 -0.575049 -0.596248 -1.040357 -0.404554 0.623988 -5.318550 -1.549021 4.952464 -4.077092 0.999962 -4.155717 0.568957 -0.402942 1.763826 -3.194039 -4.483566 1.399218 0.711458 0.483471 -2.364897 2.039110 -2.939232 1.347156 1.456451 0.920201 3.355773 1.648196 1.789394 3.003620 3.276638 -2.440747 0.835988 -4.465714 2.348539 -2.391068 0.242911 -1.107381 1.221412 3.177869 1.029356 3.997246 -5.469583 3.159787 1.971497 -2.623977 -3.341536 0.748385 -3.584878 -4.934764 -0.676136 2.774305 1.227389 0.249258 -2.019922 1.540734 -1.292642 -3.128136 -1.384297 -1.194447 2.310501 -5.976401 -0.976031 -0.692012 -0.949982 -2.155060 4.036280 2.597765 2.333603 5.502715 2.911000 -2.364403 1.312738 -5.661959 2.035184 7.503100 0.994734 -4.945011 3.069833 -4.172922 1.242353 3.123704 2.114256 1.745336 0.977950 -2.324186 -0.191294 1.061780 -0.342358 6.055585 2.326136 2.534556 -4.467208 2.746067 -2.923755 -2.105441 7.211392 3.594412 -6.949037 1.888323 3.465224 -1.210147 -0.466811 2.031363 -4.517150 -2.408617 -3.882233 1.102035 2.556853 -4.081444 -1.697441 2.103545 -4.866857 5.574124 0.428718 -0.513638 0.593562 -4.537763 -1.573252 7.948644 0.617043 -0.081325 -1.186124 -2.223850 -2.421491 -5.960141 0.545542 0.872642 -2.047437 -2.039968 -4.416473 0.129712 5.334424 -1.876773 2.670310 -5.403959 0.274911 2.165556 -0.361050 2.776434 -4.413311 -3.032081 -1.620968 -1.807047 2.312809 -4.630123 1.974857 5.303035 -2.707303 4.210989 1.586012 -2.505776 -0.380018 2.703968 -3.392774 5.172699 -0.233571 4.561002 0.348338 4.078692 -3.849671 -1.192138 -1.449934 0.426877 -2.777656 3.968520 -4.065960 0.146734 1.653183 -3.519864 -3.638532 1.983363 0.916216 1.100882 -0.368981 -1.336427 -3.810530 -0.481168 -2.981029 1.347955 3.651538 -2.224798 -4.616876 0.788173 1.012436 -2.743394 -0.698557 1.024361 0.370138 5.069646 -4.520879 -0.134696 1.485372 1.257088 -5.292586 -5.733320 -0.643012 -3.468982 -2.771306 3.255914 -5.378058 -2.409834 -3.083474 0.568951 -5.397551 -2.214562 1.558250 6.618531 1.730570 -2.346508 2.291493 0.480600 3.351997 -0.059943 1.105727 0.534658 1.937700 +-81.250425 69.543343 31.244602 -64.482596 162.938625 -5.940229 22.664769 77.260452 -1.769008 66.362354 -152.736748 -35.513897 -25.248839 -125.135331 18.609144 -34.386526 27.283600 39.607108 -40.369147 12.494320 59.628098 -32.250917 0.664823 -88.316223 -5.213776 -86.829097 -44.814646 2.378510 33.787459 17.805933 -13.329967 27.285758 142.267459 28.713856 104.655302 88.148889 56.055350 130.645151 16.810766 33.924755 29.662613 78.073615 -43.828437 -136.698484 31.666977 -87.924026 -72.584864 -67.416094 25.586296 -101.894842 58.201421 80.810076 12.283833 -9.033901 -79.289738 28.398612 107.424871 20.541564 119.794023 64.281106 -84.540933 -3.329762 -70.388635 48.766389 -63.071138 77.965565 20.228923 -109.786275 -29.353327 56.531925 47.222048 -70.954259 -86.576687 15.387184 24.841231 -60.167529 62.755113 -15.156618 -40.092422 -72.570267 -75.012177 38.935141 -17.806325 107.421377 -4.821842 -12.700975 -25.693479 -12.024187 37.417587 -98.005503 -55.571804 101.307017 -54.970855 18.222424 -65.170938 57.383878 17.079128 14.215766 -57.203428 -75.885128 43.499744 24.312234 11.282478 -16.181844 -43.131875 -99.336922 79.168715 58.301688 -27.302185 61.891069 40.605675 50.469083 47.502682 53.786630 -82.142161 44.121610 -122.318597 37.183678 -26.195404 -0.753692 -16.058852 6.080767 33.919595 10.598978 59.572143 -109.266494 104.325671 73.908818 -59.164291 -66.940415 33.231777 -65.260212 -102.717823 -12.801668 58.230763 40.590287 11.714056 -16.947018 3.466407 -46.967684 -46.487972 -63.497777 -36.204330 100.124748 -106.736188 -15.010411 -17.489846 -30.373880 -50.614924 61.318603 34.596541 25.858599 120.894612 56.240793 -53.312727 10.399349 -100.300752 41.140332 189.415416 51.345421 -107.629472 55.569940 -44.209960 29.535303 53.898283 25.324477 32.856066 29.891432 -78.490392 -38.427639 -13.304755 -54.293004 119.261148 76.196688 58.142503 -121.038637 108.771856 -24.551091 -35.178240 170.798233 80.394729 -123.965762 16.059742 106.392151 -86.496755 -29.335175 35.874391 -57.794180 -29.332859 -70.721899 24.160568 32.329931 -100.515770 -79.907885 -0.621017 -116.527058 118.827322 24.271217 30.046397 -10.487067 -93.845541 -61.213891 183.377757 6.754747 -17.996002 -16.636058 -40.079473 -51.676262 -139.635890 16.969366 41.496881 -63.488089 -42.332965 -82.895646 10.325532 112.705183 -78.301103 25.234545 -76.902729 -20.899867 47.290483 -9.068629 48.714696 -107.944985 -74.271940 -15.997382 -17.841138 60.299935 -56.410235 57.124163 128.354581 -53.954874 88.366028 59.632778 -26.712006 11.150989 93.556219 -56.664289 114.049226 -41.444977 102.888353 13.413161 100.415341 -75.722887 -30.645417 -17.276080 -23.834060 -51.316577 95.592968 -105.655138 5.415944 56.073433 -66.152716 -64.844259 75.210211 30.782869 47.737879 -22.698776 1.593998 -68.408920 1.090770 -38.269923 26.968719 85.744955 -20.024667 -114.165667 -14.844264 57.362370 -55.124010 -42.153781 36.028614 6.494767 121.538301 -97.555471 40.776108 24.587522 -5.658475 -121.677143 -112.687759 22.535034 -84.703123 -65.886620 66.562611 -140.164094 -44.908005 -65.228354 37.386202 -107.101276 -25.205309 13.334852 124.620584 42.005952 -41.006525 48.402764 7.446098 71.519207 5.691547 11.557220 8.595003 77.250581 +-18.282461 20.835984 28.198830 -8.867110 19.372745 -0.151323 16.644548 11.673079 -12.480229 13.954632 -30.808896 -9.552946 -10.261776 -15.206143 -0.280406 -15.857376 3.034336 3.276342 -1.618484 13.005276 14.474525 -13.313460 -4.879112 -18.245100 -0.499115 -7.738468 -9.959900 -3.785179 12.893128 3.598290 5.107846 3.419704 27.640318 12.779225 33.995010 24.348700 -5.497533 30.241639 1.665661 2.655494 -8.813964 24.417491 -14.857891 -28.090058 4.361731 -19.266198 -3.553683 -22.652289 1.965357 -14.915278 10.226015 17.407055 -2.034493 6.183006 -14.652544 2.747207 21.334375 11.905130 28.327410 10.967849 -11.230539 15.677626 -17.098734 -9.640617 -2.644336 12.967154 2.248791 -16.536422 9.889417 -6.596865 12.212928 -20.912882 -5.696827 13.878080 -1.434294 -13.378357 13.493894 -6.329776 -31.788557 -23.878905 -19.586371 3.407971 7.475786 22.058807 -5.164066 -5.063784 -13.760438 4.315318 3.788856 -26.404821 -6.478587 21.757450 -11.555631 -5.219613 -1.499730 19.926728 0.805697 15.209421 -14.683850 -6.500379 11.342927 4.559794 1.990318 -7.136979 -6.430683 -19.135383 13.020541 7.835048 -8.858115 7.901189 15.857771 19.132670 24.625752 18.150583 -22.271683 21.473303 -20.773690 8.591075 -7.759062 -0.954686 7.557984 7.769939 -5.028720 -1.738671 16.274551 -22.842672 9.548927 15.346738 -9.783464 -22.739717 4.318841 -27.624176 -23.655749 -10.541876 10.730966 16.048169 3.177501 -14.276068 -7.334185 -13.478411 4.362821 -16.066035 0.719117 28.265407 -20.242340 -7.510891 -4.953745 -4.298891 -13.453840 17.092505 6.704647 7.984265 24.776368 13.857948 -10.440827 -14.805772 -16.784756 -3.720172 29.545958 5.857372 -22.287536 13.202724 -1.694680 1.122669 14.799028 6.091255 15.241008 -0.281408 -25.995159 -19.139942 4.804865 -12.317543 25.780105 15.612653 14.463573 -10.536407 37.326313 -8.643363 -26.518186 27.091010 14.834051 -20.181077 -6.066989 9.376645 -14.943635 -8.314273 12.857900 -11.428689 -1.268479 -7.855186 -5.129516 0.104635 -15.701919 -12.350776 3.190570 -29.262625 30.369969 4.826392 20.051003 -3.423448 -19.128925 -16.316462 33.742281 3.523922 -8.688269 -6.472486 -4.161380 -13.181745 -24.094162 7.377282 2.970530 -5.599160 -17.132279 -19.799992 12.096188 9.255202 -12.903606 8.224148 5.333626 -17.480468 6.797672 -10.053544 15.339862 -21.595796 -19.470336 -6.789736 -3.101969 21.461429 -2.746344 25.959398 39.898007 -5.568612 13.974995 22.518758 3.451472 2.423885 19.371251 -21.106007 21.097609 -15.061501 23.366657 -1.924223 18.586709 -18.126738 -14.218454 4.596223 2.238668 -5.487171 18.015863 -9.428836 5.971985 -4.009843 -24.677245 -0.823375 10.254287 -6.441904 -1.884862 -0.942472 11.884372 -25.968657 -0.290823 -18.681326 -0.342636 22.417184 0.521797 -24.601053 -0.326370 -2.167911 0.150114 -1.924035 2.863203 -3.701367 17.817077 -20.230271 -4.111973 0.195116 -6.825477 -14.715948 -22.680480 4.518531 -24.719968 -21.279759 18.013827 -15.678539 6.231994 -18.043433 -4.197605 -31.402576 -9.068806 1.906084 28.230113 13.266922 -14.236071 3.005256 -2.173694 26.559284 6.493699 2.435987 -5.033776 19.523858 +-3.707468 3.078471 2.457877 -1.957438 5.703852 1.249641 0.833523 2.727010 -2.104949 4.099022 -5.649353 -1.305597 -1.698738 -4.238840 -0.401292 -2.176059 0.191614 -0.004881 -1.368549 0.659963 2.283961 -2.341342 0.065089 -2.586042 -0.807253 -3.230656 -2.242583 0.120422 3.986785 -1.420921 -0.532141 -0.284490 6.327106 0.480268 5.788046 3.789952 1.843473 5.055584 0.338882 0.113940 -0.885946 4.205556 -3.203154 -4.484820 0.277771 -4.268561 -2.287068 -2.052953 1.514029 -2.222244 1.229052 3.549876 -0.593600 0.667261 -2.610256 2.266462 3.290770 0.323664 6.671706 1.230335 -3.294468 -0.261973 -3.953739 3.070589 -2.043994 3.053786 -0.622449 -3.586979 0.431628 -0.607991 0.341454 -3.377687 -1.999879 3.536037 1.148851 -3.511295 1.661762 -1.765027 -4.671186 -4.299490 -3.751881 1.264104 0.505543 3.966036 -0.251874 -0.102655 0.162589 1.465509 -0.081105 -6.331508 -0.634458 5.429448 -3.133776 0.197547 -2.334533 2.887804 -1.270590 2.492396 -3.127788 -1.297548 1.439276 1.246236 0.710845 -4.384635 0.746995 -4.976845 2.702877 0.365709 -0.892083 0.968147 3.189489 1.777687 4.149864 4.696796 -4.050199 1.470143 -4.592222 1.006171 -0.538420 0.128198 -0.137396 1.791238 -0.315259 0.186213 4.779699 -5.786400 2.249861 1.490810 -2.830587 -5.366614 -0.127638 -4.646152 -4.363838 -0.729111 1.894545 1.740671 0.410370 -3.219960 -0.214578 -1.429813 -2.803628 -3.250859 1.027551 4.226075 -4.370149 -0.922890 -0.522936 -0.727369 -2.585661 4.215386 2.731894 2.231866 5.886966 3.040118 -1.162559 0.914575 -4.262709 0.263605 6.228720 1.521166 -5.423652 3.415643 -3.517880 0.308365 2.537358 2.084902 3.065634 1.180419 -4.201772 -2.403737 2.033780 -0.728083 5.671882 1.884795 2.407375 -1.489501 5.806994 -0.510914 -3.570338 6.262510 2.800888 -5.382420 1.844408 2.064912 -1.794221 -0.473156 3.147180 -3.598697 -0.576632 -2.563681 -0.575703 1.522103 -3.068167 -1.385693 0.827307 -5.494742 7.168293 0.346666 2.050933 1.164819 -4.836727 -4.519359 5.928579 -0.170061 -1.043509 -1.937035 -1.546980 -3.776363 -5.178265 1.052461 1.301096 -2.807778 -2.792967 -4.734622 1.730793 3.346813 -1.260300 3.324947 -3.424138 -2.427567 1.850017 0.219428 3.594991 -2.777099 -2.883555 -1.276778 -0.858326 3.942569 -2.815857 4.550636 6.764336 -1.856616 5.034884 0.671888 -2.106119 0.153397 2.818928 -4.357125 5.113837 -1.319045 2.725222 -0.492089 3.559796 -3.238955 -1.223619 0.245432 0.335842 -0.695945 2.484676 -2.508535 0.015102 -0.619321 -5.014300 -1.190025 1.256758 -0.559905 0.550162 0.272167 0.522090 -3.677304 -0.858502 -3.091660 0.299390 3.853428 -0.612956 -3.956562 1.010566 -0.590354 -0.426974 1.219499 0.436840 0.027149 3.643540 -4.610091 -1.327136 0.271834 -0.672255 -4.227561 -5.035402 -1.249029 -3.742782 -2.993266 3.491453 -4.705393 0.014134 -3.528820 -1.022760 -5.282812 -1.490843 0.941849 6.689484 3.005625 -2.982800 1.454490 -0.355004 4.668551 0.941877 0.539310 0.670992 2.571154 +-37.532283 14.454044 1.379060 -24.760727 80.988153 -10.382311 5.370796 42.777745 5.998058 30.322266 -65.809263 -21.032183 -14.502884 -57.668984 10.613819 -6.959388 20.326010 17.638995 -22.845946 -2.868229 26.158484 -3.402381 0.822715 -36.260094 -1.499794 -36.662449 -21.607790 3.603414 12.879138 2.841230 -15.598096 18.287432 72.651418 11.292677 51.082704 39.346312 32.955729 56.627010 8.444890 11.072583 19.093568 35.471603 -18.941389 -59.721053 10.457600 -38.401229 -38.707672 -26.377646 15.065615 -41.065217 29.189641 36.251966 7.225153 0.938766 -35.456226 12.174857 41.595111 5.641492 54.701067 30.058513 -45.890773 -2.088319 -28.095410 35.370057 -31.099668 34.481095 2.592701 -50.992743 -19.802567 30.237217 22.591915 -38.691934 -41.943209 4.132155 12.037863 -25.915370 31.887571 0.457096 13.017060 -35.987059 -38.342428 17.832260 -15.930054 46.123997 -4.931998 -6.977088 -13.911981 -9.864004 17.258492 -43.075694 -23.447482 43.977691 -32.456402 9.784957 -33.561022 18.780772 6.102920 5.633822 -22.177770 -41.954393 16.122665 5.074142 4.636735 -0.700600 -7.806946 -35.513243 32.186768 21.709445 -4.579023 33.021563 16.772079 19.662417 21.009503 21.413437 -26.382535 13.377894 -56.915034 22.015419 -17.470494 -2.363666 -10.915486 3.190247 27.855278 6.569240 26.861101 -51.329341 45.559792 32.111733 -23.771390 -25.014777 14.033685 -26.402996 -49.241554 -3.498875 31.281858 16.013884 4.445934 -7.640229 9.727215 -17.218877 -24.923516 -20.619357 -19.653229 33.809259 -46.919870 -7.628003 -7.743632 -14.261684 -21.644519 28.198503 15.361383 13.698760 56.429772 23.668545 -30.339497 3.154869 -52.995143 22.224496 86.327201 10.223300 -48.485666 26.479705 -27.337036 14.821125 24.944236 18.032416 14.297210 8.428170 -22.941780 -3.678107 -6.458573 -17.536441 56.370660 27.879366 28.543513 -55.846281 31.820747 -15.796245 -6.667242 79.877725 34.310726 -64.591910 9.776215 50.347590 -29.109216 -10.778961 15.764743 -28.819053 -17.927255 -41.510639 19.215565 20.925992 -49.016705 -27.703804 7.993263 -50.428225 48.362369 8.674336 2.017748 -0.557582 -46.396506 -16.695441 89.305560 4.971550 0.558145 -5.162216 -24.394560 -16.917113 -67.708507 5.775131 15.513822 -24.529557 -10.225569 -36.650375 2.117412 58.900116 -31.569129 17.450643 -43.255989 2.016271 23.292403 -4.617232 18.092610 -48.290083 -33.567018 -6.274006 -11.854612 23.831285 -36.634125 15.758101 51.046641 -27.331941 41.308377 27.346884 -12.290887 1.162482 36.089048 -27.261966 52.603454 -12.853050 44.296271 7.784198 45.020207 -33.460833 -13.849415 -14.666135 -7.543475 -30.587731 41.563180 -51.674821 2.045214 31.334630 -25.230331 -35.170459 31.130438 17.619693 21.389086 -9.563989 -8.890891 -32.613973 1.756667 -20.051364 20.966393 37.548256 -11.409144 -51.776205 -1.808995 30.618971 -34.839161 -17.504207 15.215613 2.258688 58.443729 -44.837218 14.602659 17.130822 9.332042 -52.622415 -52.945498 7.387310 -32.567077 -24.510756 27.746102 -63.668651 -31.358668 -27.772834 19.870609 -47.821680 -11.885480 6.882703 59.319303 20.526798 -18.697875 21.381291 6.721337 23.364568 0.450872 4.480866 8.862739 30.090356 +-24.473444 15.788368 0.084762 -17.703216 52.975549 -3.231412 4.255930 25.948925 1.484918 21.546243 -43.115239 -10.743729 -6.936682 -37.218578 6.566810 -2.008264 9.508326 12.949347 -14.112209 -2.254320 17.234163 -6.229962 1.558143 -23.959090 -1.882270 -25.753894 -12.766946 2.254075 10.439162 3.313063 -12.229916 9.233261 42.730041 4.334867 29.140960 25.306122 21.287486 36.306674 5.645984 8.051263 12.011139 21.931114 -12.958685 -39.808245 9.126053 -25.749135 -24.872175 -18.372144 10.095508 -29.641685 21.211280 24.050086 4.068255 -2.744987 -22.041215 11.847580 30.181776 3.110109 36.566522 19.151614 -26.749475 -3.075316 -19.447874 23.256824 -20.322245 23.970892 3.149146 -36.716215 -14.081721 19.752386 13.556800 -22.377012 -26.547060 3.826317 7.477456 -18.375301 18.367143 -2.826735 1.392796 -23.524591 -25.017322 12.210745 -9.340825 31.769631 -1.188654 -3.665299 -7.808566 -4.366587 11.158697 -29.066992 -16.119674 30.263474 -17.521325 8.928590 -21.169689 11.132568 4.906151 2.468895 -15.791632 -24.716241 11.064067 6.833796 4.214689 -4.855160 -6.224717 -25.961334 22.313221 16.575473 -4.205066 17.713593 12.335669 10.096670 11.404937 15.450681 -18.999742 8.954138 -37.151205 12.356004 -6.718937 0.058737 -6.730187 1.539982 16.478819 1.927777 18.588063 -33.716765 31.048054 19.050245 -17.648631 -18.875768 9.536675 -16.309668 -30.296977 -2.522875 18.725604 8.997291 2.260712 -3.963554 5.681695 -12.304327 -19.907983 -14.371729 -12.719448 25.804313 -33.367211 -3.452774 -5.527635 -10.073016 -13.611346 18.400606 11.021251 9.706104 37.148382 18.374749 -15.861748 4.559784 -33.139930 15.356275 55.807197 13.976204 -31.929848 16.665623 -17.176629 9.860796 16.953899 9.403522 7.909078 10.485047 -17.030469 -4.562597 -4.058301 -12.357916 36.450842 19.760854 18.641262 -35.461800 24.273795 -7.414529 -6.788683 52.005882 25.586654 -40.453346 8.793658 33.051812 -20.926096 -6.618109 10.890641 -19.765293 -10.934858 -23.335721 9.333537 13.629218 -31.909135 -21.800750 2.494010 -32.819095 34.642829 6.128527 4.029758 0.664187 -30.332112 -9.583091 53.787726 3.001912 -2.366229 -4.940204 -14.453690 -17.974271 -42.079320 4.819906 12.883676 -18.953357 -11.582170 -25.279012 -0.034666 37.696401 -20.446420 8.837340 -28.056114 -0.014298 15.305475 -1.066346 14.723680 -30.618409 -20.531747 -4.025480 -7.103226 16.178967 -20.641560 13.096372 34.190684 -18.450059 26.495746 17.724286 -7.629761 2.419802 25.296485 -16.137886 33.950250 -7.778495 27.480065 5.072913 29.570416 -22.222752 -6.305672 -8.017911 -4.516192 -16.740877 28.306340 -33.308468 -0.302956 19.249365 -19.328591 -22.626447 20.742195 12.195831 16.334062 -6.614280 -4.872183 -18.839280 -0.052317 -12.528581 9.383650 24.748601 -7.766894 -32.977292 -2.546058 17.328116 -20.322100 -11.983382 11.351510 2.604404 37.661519 -29.562291 12.222658 9.008787 2.534186 -38.387989 -32.593409 2.994137 -21.389013 -17.802829 19.938771 -43.224623 -18.065835 -18.530044 12.734484 -32.609285 -6.365996 3.246552 38.088998 11.189524 -9.903641 16.589036 3.981482 18.362256 0.565228 2.319379 4.148651 20.860680 +-9.463591 11.307491 9.232882 -7.982744 17.849330 -1.875432 6.936058 8.609209 -3.626016 6.460071 -18.451130 -1.223277 -1.650776 -12.821315 2.254290 -8.446013 1.389562 5.431794 -3.401457 4.016872 6.970705 -3.226019 -1.900200 -11.497661 -0.868883 -11.338525 -4.566430 -0.520621 3.293030 4.253565 2.410057 3.464056 15.550233 2.943363 13.025390 12.131055 4.852798 14.547423 0.772335 3.817523 3.464773 8.903362 -4.992385 -15.777575 1.971670 -8.736651 -8.213949 -9.053437 1.637755 -13.124520 3.805631 8.700692 1.730316 -0.823592 -8.199338 4.628397 13.360417 1.660927 12.137632 7.840974 -9.181843 2.596412 -8.349701 4.952940 -5.685707 8.554907 2.330371 -12.000015 -1.239808 6.218115 5.406835 -7.555186 -8.155202 1.419992 2.229058 -6.789911 6.701714 -2.536049 -10.432499 -7.356373 -6.067769 4.160235 0.278597 11.704815 -0.990781 -2.210230 -4.264031 -1.140543 4.708886 -9.910492 -8.234267 13.911762 -5.361305 -0.707559 -9.170391 7.111632 5.648013 1.912101 -4.880131 -9.205586 5.888480 2.866325 0.847489 -3.008409 -7.352258 -11.118355 5.791645 7.826463 -4.933182 10.255287 -1.700974 9.289302 5.903918 4.900445 -9.478785 8.617789 -14.449123 5.350022 -5.531104 0.096767 0.160769 -0.660432 2.989843 3.209330 5.400222 -10.578916 11.897398 8.561636 -5.635537 -8.101807 4.364660 -7.584961 -11.623393 -2.919949 5.373500 7.279639 1.479495 -1.595723 -0.507458 -5.753457 -0.164720 -11.262902 -3.216801 11.965543 -12.735432 -2.073412 -1.951754 -1.204341 -6.629750 6.847675 3.454040 1.619217 13.533295 6.543360 -4.367831 1.112712 -10.314052 2.442726 20.196206 6.651116 -10.949349 6.150429 -3.632092 1.302973 5.755558 2.084543 2.095484 5.572894 -13.209191 -8.347985 -2.492332 -9.439367 13.205915 11.368409 4.333276 -14.679199 15.790414 -5.889321 -6.983973 17.732625 11.040833 -13.477837 0.268201 11.609181 -11.051874 -6.719804 4.426235 -6.964466 -4.338098 -5.395471 1.367055 1.344189 -9.859097 -9.822157 -0.214016 -13.265055 12.576925 2.949509 3.713848 -4.002603 -8.203919 -10.764702 20.222226 1.408048 -3.315364 -1.606955 -2.581758 -5.570542 -15.406044 2.154694 5.047602 -6.261386 -7.106672 -8.802334 2.592071 10.185494 -11.756599 2.338908 -5.921820 -5.647606 4.783356 -0.347448 5.368818 -15.119667 -8.654813 -4.234196 -0.356388 6.495604 -4.680302 8.560055 17.620327 -4.697489 9.176192 7.554682 -5.998276 0.785562 12.876154 -7.208195 11.981025 -4.936489 12.286684 2.221197 10.371120 -9.484506 -5.764862 -1.103266 -4.219949 -5.680153 11.014356 -10.988285 1.945586 4.274762 -8.204673 -4.849920 10.089974 3.302490 3.488710 -3.125927 3.378171 -9.285195 0.343480 -6.687131 0.631529 10.130725 -2.481607 -14.165568 -1.650849 6.397723 -7.273407 -6.172548 3.079297 1.370498 12.157125 -10.238727 5.995814 2.139555 -2.156375 -15.020689 -13.619256 4.896700 -12.595362 -11.068497 4.789376 -13.136126 -4.304004 -7.593941 4.234868 -15.090482 -8.210002 3.342263 13.311204 3.777820 -3.591140 4.628552 -0.570062 10.235764 1.558702 2.545180 -0.482014 9.542528 +-11.657596 4.135707 -0.736078 -10.487531 30.626454 -2.090886 1.428516 19.711684 0.328868 10.797485 -21.568461 -3.541573 -2.895603 -20.010008 3.072824 -2.050944 7.519938 4.661731 -10.109574 -1.299380 7.712344 1.072208 2.054934 -10.779231 -2.488124 -12.941902 -6.194825 2.618236 5.138080 0.357376 -5.979423 4.491817 25.164170 1.232085 17.710182 11.434779 15.380828 16.218314 3.486941 1.679582 7.858132 9.524387 -6.096095 -18.065996 0.716290 -12.725246 -16.844110 -5.569947 5.782725 -15.579096 6.008029 12.254117 3.364433 0.477815 -9.779638 7.839091 11.968125 -3.352837 18.611636 9.728034 -19.254721 -6.263833 -9.923937 15.466150 -9.940385 12.507746 -1.954992 -17.293349 -9.601548 12.306766 3.517886 -12.481682 -13.564093 1.396181 6.260347 -9.925180 11.431480 -0.500186 8.895635 -13.097900 -10.035769 8.883173 -5.488438 15.162472 0.494951 0.007311 -0.864245 -2.765557 3.221754 -16.884063 -5.562286 14.835737 -13.615986 1.519657 -15.486035 5.021152 -1.827910 1.925033 -8.920672 -17.965590 6.148168 2.180005 1.180516 -7.277640 1.082546 -13.085471 9.029414 9.048848 0.538584 11.946305 3.582987 6.074734 7.426245 9.695766 -8.880265 4.474774 -20.610763 7.742820 -8.549111 -0.582313 -7.029426 0.888732 12.874806 7.006998 10.452852 -18.506465 16.846269 11.849131 -10.179484 -9.180786 4.373791 -8.647513 -16.424856 0.258094 10.018092 2.846514 3.210150 -3.609417 6.272123 -6.063405 -10.271673 -6.052910 -6.856479 7.794174 -19.613601 -2.010720 -0.775676 -2.674194 -7.127953 12.421158 7.861692 4.169652 20.866539 6.212040 -10.322329 5.750794 -18.960275 8.120340 29.470852 4.322717 -15.957170 11.384500 -13.450719 4.581719 7.549280 7.235946 3.868384 3.117236 -9.191183 -1.089340 1.080609 -3.240024 20.498197 7.023408 8.683338 -20.461987 9.314537 -9.313262 -0.292891 27.032865 14.476565 -23.373475 4.614614 17.283550 -7.197967 -2.731944 5.928915 -14.138752 -7.629145 -13.515682 5.635866 8.564962 -15.597690 -9.310379 4.198276 -16.140184 16.817105 2.626313 -2.865643 -0.681578 -15.309303 -4.333799 30.139066 1.072976 0.243673 -1.325142 -9.059529 -6.981213 -23.599275 0.533566 6.379767 -8.864376 -0.853408 -12.770804 -1.324482 19.010247 -9.550777 6.487804 -21.611582 2.401407 9.583320 -1.327652 6.680305 -14.213283 -9.873293 -3.394039 -6.872953 7.180557 -17.481099 5.389810 15.031567 -8.546806 18.461367 3.631217 -9.584393 -0.383885 10.616432 -9.764199 20.722541 -1.793939 16.189788 4.090386 15.471295 -12.761190 -2.979304 -7.902559 -5.351795 -10.738701 14.740620 -19.517907 -0.736721 9.415675 -7.126926 -15.284374 9.358728 7.063887 4.491703 -3.185111 -3.749478 -10.378962 -1.297876 -8.984155 8.542063 11.477168 -7.782348 -17.538388 0.709008 12.687946 -11.388677 -5.409534 4.819845 2.903348 20.758172 -15.794598 4.589632 6.988229 5.748982 -21.291082 -20.161953 2.609552 -11.130391 -6.320067 5.983219 -22.680756 -13.452136 -9.123754 6.666858 -16.024572 -3.666177 7.122258 22.194630 4.734585 -8.778378 6.927804 1.980794 7.191335 -0.039302 4.334130 3.409030 7.425590 +-5.158424 2.357433 1.859311 -2.556369 10.575830 0.464582 2.087154 5.024196 -2.165616 5.920117 -7.790881 -2.605484 -2.596414 -6.253469 0.324291 -1.982569 1.886756 0.662736 -2.935210 0.242114 3.229621 -1.921845 0.357557 -3.495840 -0.933217 -5.846540 -3.236406 0.785754 4.989456 -1.207441 -1.658847 0.742409 10.100457 0.122021 7.710177 5.242039 3.954110 6.714679 0.265656 -1.137867 0.456796 5.650632 -4.142471 -6.267416 0.131623 -5.545404 -5.406172 -2.879219 2.548701 -4.153215 0.782825 5.234970 -0.410513 1.111365 -3.438443 3.880357 5.309443 -0.557391 9.089051 2.445772 -5.154886 -0.534045 -5.158859 6.203665 -3.101854 3.885575 -2.401079 -7.188739 -1.579002 1.129107 0.602552 -4.724653 -3.687111 3.897909 2.463836 -4.715939 3.347399 -1.247086 -1.868571 -7.310311 -5.992644 1.943009 -1.062593 5.984315 -0.363406 -0.475625 0.396241 0.695416 0.459300 -8.520739 -1.235996 7.100380 -5.318708 -0.029430 -3.968889 2.519237 -0.630951 2.752037 -4.370789 -4.696287 1.645832 0.414956 0.950175 -4.246662 2.240123 -5.382074 2.013104 1.348299 0.988886 3.690316 3.350101 2.383291 4.878685 5.486900 -5.388626 1.309357 -6.136074 2.991587 -2.432183 -0.012525 -1.173774 2.359483 2.628706 1.558220 6.613450 -8.448765 3.699038 2.602201 -3.707890 -5.557316 0.224951 -5.629198 -6.459769 -0.999605 3.631751 1.634602 0.818961 -3.764288 1.440448 -1.704156 -3.321358 -1.845587 -0.363092 4.622438 -7.855507 -1.092352 -0.858455 -1.282065 -3.109502 5.951222 3.802413 3.515085 8.285798 4.298953 -3.212561 1.899140 -7.555548 1.837175 10.368009 1.250018 -7.191613 4.971172 -5.753490 0.994618 3.980425 3.426215 3.669856 0.988726 -4.424275 -1.665618 1.458885 -0.419244 8.877920 2.765643 3.307940 -5.109850 5.725195 -2.744079 -3.508931 9.569412 5.053624 -8.852597 2.737063 4.262483 -3.933139 -0.980533 3.587470 -5.962668 -2.268685 -5.461515 0.765211 3.469945 -4.970971 -1.656335 2.273196 -7.453671 8.735469 0.534849 0.773410 1.992133 -6.354296 -4.980417 10.002449 0.359402 -0.245200 -2.650214 -3.301435 -4.373974 -8.524724 1.106660 0.670322 -3.583296 -2.688626 -6.775161 0.971748 6.473989 -1.749996 4.619294 -7.523227 -0.641081 3.101517 0.310798 4.187300 -4.505317 -4.202957 -1.439644 -2.709025 3.667069 -5.736535 4.330628 7.973499 -3.460048 6.310212 0.422017 -4.178167 0.136835 3.505579 -5.892407 7.655517 -1.150880 5.110931 0.170487 5.460824 -4.950499 -1.348873 -1.059198 -0.597833 -3.122536 4.411391 -5.288812 -0.105851 1.652168 -5.922803 -4.287424 2.011019 0.349465 1.327842 0.023039 -0.877904 -6.249179 -0.439679 -3.811881 1.759343 5.318232 -1.434452 -5.905378 1.666016 0.936010 -2.180247 -1.295581 0.988972 0.241183 6.030680 -6.806644 -1.018144 1.387697 1.300295 -6.482870 -8.210762 -0.701377 -5.428240 -4.489852 5.099455 -7.537853 -1.598066 -4.940015 -0.257762 -7.384324 -2.891909 2.144485 9.898932 2.738694 -4.417074 2.708106 0.105400 5.146436 0.257544 1.288308 1.020742 2.883737 +-8.694947 7.633227 3.329201 -7.082750 21.603029 -2.913899 5.135332 8.990212 -2.993409 6.381438 -16.878222 -1.096840 -1.115195 -14.622793 3.709148 -3.919718 3.921063 5.132465 -4.052017 0.889359 5.670990 -2.150561 -0.828554 -9.768055 -0.579147 -12.837050 -4.157692 1.028020 4.207043 2.120279 -1.856632 5.140995 15.910278 0.652901 10.560487 10.583379 8.354501 11.894808 1.959517 -1.494359 6.317404 6.610479 -3.864666 -14.494044 1.388213 -7.482767 -11.307066 -6.487486 3.006869 -11.332984 1.175904 8.891263 1.881333 -1.319226 -8.850163 5.973692 12.754165 -0.831683 11.708602 7.873406 -9.639243 -1.809530 -6.562397 9.706877 -7.022960 6.925058 -0.578253 -13.571146 -4.399205 10.144666 2.415206 -6.776016 -9.314473 -0.162102 3.928898 -6.790567 6.449879 -0.349555 -2.283701 -8.220774 -7.151542 5.160835 -2.823763 12.102106 0.581757 -1.680364 -1.343677 -2.779432 5.093993 -9.355349 -7.436846 12.559855 -6.298313 0.062321 -8.870532 5.463556 5.992787 -0.601260 -4.335909 -12.650185 4.747456 0.573776 0.950410 -3.109922 -2.523252 -10.036394 4.099581 6.552373 -1.323892 11.690872 -0.711029 5.985204 3.486044 3.586432 -7.921308 2.724210 -14.353217 5.908396 -5.449204 -0.908112 -2.817567 -1.016789 7.046497 3.750462 5.624571 -11.992013 12.445291 8.367157 -4.757969 -6.142548 3.821563 -4.800911 -10.883207 -1.079810 6.467641 4.125688 1.816596 0.508066 2.485156 -3.974442 -3.718064 -6.055700 -5.332198 11.289535 -14.953213 -0.797083 -1.513624 -1.913485 -5.568246 6.118059 4.140255 3.044312 13.529938 6.462870 -6.355689 6.220789 -12.677507 5.799624 21.564003 5.307023 -10.433735 6.573238 -7.062718 2.076213 4.912900 3.313851 1.334935 4.003698 -9.819864 -4.008437 -1.230171 -6.668360 13.084875 7.926331 4.617685 -15.824741 10.884426 -4.812287 -2.766147 18.053930 9.334690 -15.745644 5.039265 14.617736 -10.227498 -4.490328 4.016756 -9.576490 -5.620079 -8.757490 3.789530 4.426888 -11.858781 -7.774024 0.089798 -11.389691 10.663230 3.084873 -0.600505 -1.741472 -7.270074 -7.555105 21.125880 1.329233 0.056316 -1.797057 -5.110398 -5.797846 -15.919567 0.796384 4.422558 -7.558842 -3.769810 -8.863832 -1.336177 13.926938 -9.998522 3.565170 -12.827209 1.103751 5.800243 3.574965 3.700475 -11.878873 -7.722800 -1.233306 -2.762249 2.585612 -8.842825 5.488922 11.786395 -6.638755 9.893921 2.849382 -7.686188 1.994870 9.812622 -5.810952 12.464889 -1.493060 13.781506 4.130332 10.904772 -9.618969 -3.505406 -3.302710 -6.028823 -8.230711 10.794988 -13.952325 0.509749 8.889375 -4.345341 -10.721007 8.989682 6.008940 5.817884 -3.846346 -1.223275 -6.446524 0.738460 -4.795450 4.343827 8.391363 -4.465079 -12.380027 -0.939639 9.872534 -8.753820 -6.981798 4.321894 2.011775 13.354780 -10.551133 6.878416 3.237950 2.690890 -15.583972 -14.845033 4.874931 -9.961972 -7.721931 4.968646 -16.838721 -7.384435 -6.638614 5.707907 -13.798735 -5.675640 3.604783 13.853401 1.158026 -3.147974 5.845028 0.672863 4.958376 -1.012834 3.221876 0.636887 6.805843 +-9.531056 6.958568 6.878623 -3.884090 11.797210 3.315421 1.747474 4.364925 -4.594371 10.436485 -13.912380 -5.675380 -6.164206 -9.544236 -1.551972 -8.326176 1.831465 -1.604052 -3.279252 3.444589 5.688993 -7.233842 -0.106182 -6.434541 -1.535496 -10.154888 -6.358940 -0.000758 11.266849 -4.476723 0.003048 -0.716485 17.904144 1.960338 14.307433 9.948547 3.557965 12.957421 0.607272 -1.428613 -3.994789 12.096901 -8.875040 -8.074054 -0.414182 -10.841505 -5.306454 -3.577175 3.931110 -2.603546 -1.001207 9.201515 -2.098239 3.241030 -7.266665 5.762240 9.092298 2.091786 17.569707 2.316483 -4.955170 -0.187712 -9.943325 6.524440 -5.519021 5.100016 -3.458886 -7.135800 2.749830 -3.842687 0.272755 -8.145685 -4.997218 10.095916 3.523896 -9.551920 4.815011 -3.937337 -14.513878 -13.382768 -10.491535 2.373592 2.093576 10.137783 -1.169955 -0.260465 1.414910 4.532118 -0.424050 -16.786122 -0.305996 12.172499 -8.216877 -1.596361 -4.314737 9.490119 -2.465193 7.434474 -8.931255 -3.400044 3.044336 0.627725 1.676376 -11.538067 3.664242 -11.711388 4.821880 -0.972825 -1.280279 3.577364 8.196330 6.273481 12.328553 12.604988 -12.462904 1.205687 -10.073184 2.085474 -2.191173 -0.732422 0.979814 5.674201 -2.432742 1.566647 13.227583 -15.438204 3.956140 4.078512 -6.898728 -13.478133 -1.244451 -13.157966 -11.241246 -2.774987 4.986253 4.534877 2.007474 -9.704139 -0.095975 -3.416529 -3.486607 -5.119392 3.480437 11.440704 -10.564991 -2.688612 -1.263837 -1.835240 -6.281092 10.675901 6.422828 5.861291 14.444187 7.149071 -4.606556 3.087122 -10.467225 -0.630715 15.062743 4.028036 -13.616252 9.200094 -7.957122 0.006268 6.739415 6.340043 9.229185 0.504752 -10.932861 -7.452203 3.805676 -1.479354 14.724115 2.687724 4.872582 -2.431167 16.509050 -1.616791 -10.510605 14.651508 6.846403 -11.104600 3.436678 4.005953 -6.743418 -1.638801 8.220460 -8.745509 -0.210740 -7.672983 -1.664923 3.717813 -6.282764 -1.420254 2.466802 -14.305641 17.762588 0.889360 5.385788 4.429071 -12.180743 -15.797121 13.975606 -1.759324 -2.082003 -6.059166 -4.346217 -8.280160 -13.442137 2.787776 -0.201600 -7.045269 -5.830658 -12.601514 4.944630 7.399229 -2.018066 9.256137 -11.441098 -6.630926 4.304308 0.807780 9.118033 -3.514205 -7.868831 -1.950977 -2.582692 9.366208 -7.509859 12.642430 17.307626 -4.474441 10.811810 -2.748782 -6.557576 1.313073 6.114465 -12.937112 12.719228 -3.708758 7.101811 -1.457561 8.692105 -8.420171 -3.899511 1.934234 -0.120907 -2.507754 5.037874 -5.565029 0.391259 -1.603836 -11.851684 -3.040445 1.867412 -3.661827 -0.243014 1.239398 2.363038 -11.063194 -0.990165 -5.489771 1.105408 9.818449 1.810324 -7.980814 3.507795 -2.135544 1.638854 3.739135 0.051497 -1.341166 8.113117 -11.846115 -5.537250 0.106978 -1.066881 -7.121111 -14.973784 -2.960166 -9.764257 -8.273187 11.184895 -11.727498 1.998816 -9.321779 -4.192932 -10.846553 -4.086155 4.085749 17.175392 7.923183 -10.647300 2.548334 -1.512465 12.165131 1.383912 1.434634 0.982584 5.656643 +-13.134634 3.654182 -0.855371 -10.513874 32.635337 -2.838126 2.120333 19.689314 0.313482 11.819915 -23.169903 -5.977705 -4.170461 -21.248305 3.078190 -2.386364 8.744514 4.521226 -10.737634 -0.665683 8.317855 0.154599 2.076476 -11.312568 -2.472611 -12.845983 -7.373519 3.062566 6.463512 -1.500860 -6.118103 5.205390 28.250148 1.548195 20.393553 12.659963 15.265842 17.949858 3.457295 -0.801179 7.873271 11.129256 -7.066714 -19.064702 0.409980 -13.609595 -18.283501 -6.375811 6.564980 -15.247010 5.405300 13.894471 2.994465 1.256205 -11.058868 8.512478 13.609725 -2.963846 21.155664 9.997635 -20.001859 -4.895782 -10.701703 15.951571 -10.398733 12.399791 -3.713063 -18.631940 -9.505080 12.394722 3.505187 -14.706101 -14.463655 2.711312 7.218238 -10.981743 12.689842 -0.168109 9.649457 -16.472182 -12.314565 8.925323 -5.552949 16.279192 -0.038561 -0.057746 -0.484051 -2.711656 3.050526 -19.084215 -5.061922 15.803280 -15.499205 0.861650 -14.332906 6.260565 -2.135959 2.592518 -10.921192 -19.586076 6.171985 0.693985 1.297454 -7.048495 3.776482 -13.308652 8.538666 8.647784 1.619110 13.480508 5.930221 7.280783 9.630327 10.956412 -10.498259 3.773932 -21.642145 8.235098 -9.727628 -1.160761 -6.653517 1.786267 13.669330 7.434687 12.108293 -21.130185 17.097088 12.517022 -10.319362 -10.427235 3.989997 -10.291387 -17.946412 -0.317156 11.269978 3.089220 3.673409 -4.656268 6.529404 -6.091682 -10.142938 -4.617451 -6.644486 9.266158 -21.102940 -2.188546 -0.858612 -3.222183 -7.654650 13.679988 8.810307 4.936148 23.056252 6.885919 -12.273986 5.569239 -20.763785 8.471036 31.594571 2.675824 -17.812788 13.063467 -14.910140 4.591672 8.316184 8.864348 5.585782 1.457365 -9.823251 -1.226265 2.163709 -2.874476 22.561372 5.362926 9.367712 -21.412234 10.683512 -9.200363 -1.130058 29.931592 14.219993 -25.663759 5.023350 18.335744 -8.136556 -2.900638 7.236789 -15.647295 -8.480633 -15.370721 6.557805 9.223533 -16.761164 -8.685260 5.324486 -18.176634 18.365335 2.634193 -3.843714 0.201038 -16.960343 -5.292895 33.284872 1.379854 0.841522 -1.742670 -10.371896 -6.092464 -25.864708 0.567294 5.613742 -8.899870 -0.811463 -14.096092 -0.810311 20.622535 -9.420304 8.490074 -23.677407 2.865609 10.243466 -1.162895 7.179292 -13.933841 -11.195677 -2.703718 -7.721653 7.162662 -19.005871 6.332478 16.456554 -9.683042 19.213724 3.316688 -10.613695 0.318146 10.628524 -11.682462 22.708940 -1.787792 18.390067 4.000372 16.802552 -14.017066 -3.587419 -7.798781 -5.304369 -12.514763 15.168268 -20.527868 -0.632189 9.819228 -7.516388 -17.171468 9.263805 6.704057 4.249162 -2.811648 -4.419084 -12.040039 -1.075152 -9.307769 9.861007 12.494554 -7.287204 -18.327713 1.581723 13.219213 -11.020964 -4.689719 4.948896 2.427823 22.216535 -17.670717 3.710575 7.261309 7.113461 -21.136805 -22.207141 2.842585 -12.518966 -6.351417 7.854436 -24.269221 -13.516007 -10.345546 6.323567 -16.646266 -3.653964 7.759243 25.209915 6.278594 -11.294702 7.533455 1.778126 7.730086 -0.094283 4.444216 3.542849 7.782999 +-16.374270 16.254851 18.687165 -8.029112 28.166934 5.241745 13.202706 17.064216 -17.032204 17.495596 -27.542228 -2.639666 -6.084559 -16.550652 -0.277844 -15.662680 1.161260 -3.213430 -5.578990 5.362607 9.934379 -9.422262 -2.702414 -14.009784 -2.596918 -19.792897 -8.122606 -1.430969 20.816259 2.313139 0.973099 -0.518378 27.518933 2.256523 26.717658 18.594750 8.618967 18.431349 -1.618367 -2.598233 -4.676661 19.060948 -14.758051 -17.614032 -4.089936 -18.097982 -13.699201 -8.295477 4.484848 -13.636847 -4.294969 16.181378 -2.170418 5.391986 -8.272817 14.343057 16.356370 -2.654345 27.418636 7.138818 -15.406910 -4.372554 -17.411130 15.346350 -3.020446 11.963255 -5.508591 -16.345528 3.241105 -2.374227 -5.590725 -10.966584 -2.471356 16.207641 7.147564 -15.675382 9.849553 -7.137900 -25.934941 -19.329675 -12.749166 6.192334 5.591346 19.408024 -0.334469 -2.018477 2.247607 4.907208 0.344376 -28.538869 -4.238915 27.618526 -16.023949 -7.517359 -16.098355 13.149591 -0.258048 14.501561 -11.433094 -11.208061 7.856004 5.699008 1.108646 -28.033821 1.060851 -23.915546 5.576099 4.084099 -1.925082 14.045337 3.577690 12.280915 18.190897 20.878424 -20.661460 12.460453 -17.959567 8.022348 -8.883407 0.726305 -0.481661 5.459014 2.677913 7.403713 20.079310 -24.735600 9.187379 10.594768 -10.786929 -23.619147 -1.183055 -24.976333 -21.350820 -4.028750 7.051001 10.329254 4.017815 -14.864254 1.332411 -7.502387 -4.595057 -14.672748 3.686791 18.833350 -26.866648 -5.900852 -1.428357 2.617399 -14.334378 21.524177 12.213753 8.621214 24.898742 11.748484 -5.824594 7.717872 -17.986656 0.645960 29.875385 7.369302 -21.947132 15.740720 -18.226430 0.046805 10.217915 6.813171 11.740806 8.130335 -25.970557 -13.546448 10.359164 -6.371234 26.988260 13.284477 8.727729 -11.601071 30.664558 -16.510229 -20.829998 22.962671 20.672885 -25.833272 6.630134 9.456741 -14.500426 -3.380626 14.374903 -20.407677 -4.007334 -12.415257 -4.477264 5.707630 -12.145499 -5.121142 5.732940 -25.018781 31.068767 3.989004 12.950365 0.863492 -14.738109 -22.361142 28.116121 1.265871 -4.803601 -9.025764 -4.453277 -23.439598 -22.915389 3.754850 3.334095 -11.207655 -13.795574 -21.620454 5.725533 12.176262 -8.866129 15.902092 -18.039246 -9.616889 7.069723 1.796004 16.374285 -12.856549 -15.351164 -11.151306 -6.675781 16.437564 -16.130028 23.123605 31.455200 -5.602519 26.254249 -2.511019 -16.240191 -1.047366 12.876447 -20.161398 21.665036 -4.401996 16.811325 0.162804 17.875363 -18.800441 -8.416787 -0.677788 -7.434113 -5.535601 14.471748 -12.468007 2.625819 -1.841463 -22.514983 -6.951458 7.081382 -5.004113 0.269251 -1.142256 5.831581 -21.956898 -3.346455 -20.202412 1.648856 17.717276 -5.436911 -18.728146 3.685517 -1.385547 -3.468752 -2.137035 1.632453 -0.377374 15.464210 -20.016330 -6.423966 2.444937 -1.488852 -21.008284 -27.011338 -1.998313 -20.580816 -21.209139 12.653070 -19.385054 2.438607 -16.895638 -7.003576 -32.302164 -18.152863 9.186396 31.224643 6.852244 -14.262151 4.832134 -1.816989 21.551220 3.886309 8.664152 1.194497 8.222757 +-7.730916 3.262816 3.195534 -2.209040 9.782115 -1.308384 4.442351 2.506654 -1.325802 7.026026 -10.406578 -7.353334 -5.344511 -8.933479 0.120724 -5.735896 3.772420 0.879475 -2.581550 2.143656 5.060800 -4.597263 -0.625009 -5.281010 -0.604504 -7.771643 -4.242822 0.292799 7.922991 -3.987105 -0.637660 1.825036 15.408131 2.356117 13.545701 8.615894 2.667541 10.307857 0.665784 -2.745474 -2.398370 9.740142 -6.198246 -8.552256 -0.860898 -6.600891 -5.124921 -4.494662 3.325180 -1.869633 0.607430 7.302367 -1.120320 3.641084 -6.399151 3.065458 8.296518 2.886685 13.103789 2.948913 -3.414683 2.957202 -6.887128 5.661630 -4.500383 2.437195 -2.980501 -7.156844 0.988558 -1.614066 -0.244659 -6.532337 -4.865156 6.612067 4.193964 -7.083833 4.655730 -1.158494 -7.733393 -11.228178 -10.089776 1.702933 0.020800 9.073245 -1.227024 -0.605939 1.140805 1.973147 0.768297 -12.317760 -0.567756 8.667659 -7.392963 -1.997164 -0.929011 7.025666 -0.761235 5.394396 -6.953151 -5.892911 2.298287 -1.854285 1.434162 -3.628580 2.290823 -6.551488 2.420793 -0.464435 -0.421119 5.150340 8.360750 4.656871 8.930831 8.499530 -8.959931 0.343079 -8.151203 3.852151 -3.678772 -0.787857 1.159691 4.381141 0.669806 1.241932 9.490344 -12.474371 3.351816 4.620689 -3.104814 -8.521693 -0.512583 -9.683985 -9.109318 -3.324538 5.721152 3.417922 1.527737 -6.727509 0.712571 -1.719032 -1.325110 -0.868560 0.794057 7.432502 -8.730511 -2.004561 -1.701616 -2.623611 -5.101786 7.557152 3.985855 5.138703 10.544825 6.267619 -6.318778 1.295659 -9.412736 0.198462 13.215407 -0.946863 -10.026840 7.085702 -6.807775 0.276186 5.873103 5.760686 7.075161 -2.270142 -7.042671 -3.230573 2.684166 -0.909336 11.866100 1.167140 3.627897 -4.468649 11.151885 -0.512610 -8.002949 13.506468 4.887492 -10.951699 2.921808 4.258590 -7.753473 -2.242893 5.728746 -7.415975 -0.687917 -9.024854 1.316856 3.110006 -6.120449 -0.134768 3.150211 -11.158411 11.534512 0.853221 1.814880 3.199135 -9.101560 -9.524460 14.756110 -0.299642 -0.461089 -4.991995 -4.861736 -4.807904 -11.439260 2.143395 -2.245317 -4.142199 -3.335479 -9.599464 3.367516 8.481580 -1.771027 7.340725 -7.574024 -2.590144 3.499075 1.848772 5.297972 -3.414074 -6.667430 0.020177 -2.225215 5.075390 -5.868702 7.585896 12.648088 -4.673273 6.173100 -0.878853 -6.565877 1.744034 4.720318 -10.288890 9.832137 -3.217538 6.135186 -0.389414 7.023543 -7.253379 -3.698432 0.861941 -0.315970 -4.482744 4.366228 -5.235966 0.645690 0.806021 -7.905236 -4.766039 1.548670 -1.466321 1.220681 0.577069 0.322113 -9.758771 1.085516 -4.747373 2.294927 8.097756 2.403239 -6.836841 3.180961 0.149271 0.410305 -0.111500 0.428806 -1.606288 7.733498 -9.399108 -3.716852 0.843136 1.531197 -4.400015 -13.224995 -0.105384 -9.261379 -5.419148 8.687894 -9.202435 1.064671 -7.046964 -1.718065 -9.477450 -2.826842 2.957770 13.281758 5.469804 -7.436959 2.598645 -0.661866 8.109076 0.672134 0.959919 0.900237 5.464340 +-7.969446 5.768092 6.841675 -3.362222 13.370008 2.187762 4.814376 6.667622 -7.289610 9.971889 -12.020371 -3.630866 -5.100878 -9.099773 -0.469530 -7.292057 2.484210 -1.667676 -2.807129 3.608574 5.273670 -6.132885 -0.796856 -5.637348 -1.682487 -10.067325 -4.837031 0.373175 11.620459 -3.104993 -0.210199 0.108588 16.666097 0.595443 13.683320 9.789639 4.760189 10.456985 0.916625 -4.892551 -3.398107 10.832355 -8.167320 -7.880017 -1.906726 -9.003180 -6.242128 -2.828097 3.111492 -2.984784 -3.832106 8.857637 -2.037645 3.594820 -6.160107 6.993055 7.770885 -0.330595 15.748909 2.716324 -5.330526 -1.950502 -9.185548 8.510540 -3.743460 3.942091 -5.305607 -7.993181 2.361605 -2.578195 -2.737189 -6.999514 -2.957182 9.578965 3.702300 -9.043875 4.774567 -3.506433 -11.601062 -12.188426 -9.469765 2.518170 1.056342 9.443251 -0.110370 -0.670061 1.538794 3.769807 -0.499547 -16.173827 -0.062807 11.482878 -9.320863 -3.433192 -4.621633 8.048152 -0.730731 7.187542 -7.796231 -5.441057 3.057355 -0.121241 1.519323 -12.812241 5.058439 -10.947218 1.295194 -0.526122 1.115574 6.502039 6.371840 5.887889 11.151468 10.996653 -11.248592 1.286476 -8.648784 3.532517 -4.171238 -0.452836 -0.518663 5.387211 0.746285 3.109871 12.621471 -14.649243 2.802073 4.172668 -5.213832 -11.608568 -0.973050 -12.554545 -10.439419 -2.858421 5.136727 3.958907 2.514194 -8.841107 1.289564 -2.237917 -2.427441 -3.925097 2.704481 10.244298 -13.463297 -2.476620 -1.283882 -0.650186 -5.958595 10.714528 6.722269 6.289315 13.428608 6.984224 -4.665094 5.389808 -10.927953 -0.055354 14.809442 2.767184 -12.201018 9.298853 -10.340895 -0.393361 5.633477 6.127217 8.425984 1.056941 -11.528968 -6.822250 5.544922 -0.768852 14.510631 1.886673 4.406025 -4.119758 14.062263 -4.884515 -10.331518 12.962636 7.157425 -12.554880 4.483095 4.190488 -6.754791 -1.326523 7.582587 -10.782157 -0.982072 -8.400948 -1.596005 4.582440 -6.320831 -0.091777 3.214500 -13.043521 15.628352 1.192125 4.215467 3.476114 -9.409808 -12.634904 14.386617 -0.435698 -1.360160 -6.497296 -4.628804 -9.236248 -12.933218 2.248732 -1.195141 -5.867863 -5.521594 -12.302044 2.829584 7.629319 -1.724084 8.870572 -12.719510 -3.974263 4.445373 2.094591 8.290336 -3.897869 -7.558080 -2.439106 -4.167955 7.405740 -9.232883 11.206292 15.560502 -3.997889 10.791188 -3.377758 -8.018242 1.039538 5.298174 -12.676691 12.431243 -2.262747 8.482617 -0.406271 8.167687 -9.524405 -3.386747 0.383231 -1.695778 -3.248005 4.740796 -5.875644 0.546460 -0.501922 -10.838446 -4.783502 1.473947 -2.775066 -0.849220 0.907352 0.988837 -11.182412 -1.677375 -7.663323 2.031204 9.189980 -0.725342 -7.515451 3.869533 -1.295777 0.677985 1.013435 0.256127 -0.603386 7.283540 -11.443991 -5.277201 0.617524 1.117302 -7.918013 -15.416062 -1.639800 -9.195023 -8.134052 8.856491 -10.505948 1.805682 -8.954856 -3.915497 -13.971156 -5.990857 4.399726 17.085387 4.391183 -9.821315 2.327990 -1.385312 10.501080 0.918745 3.523622 0.444908 3.692566 +-5.688148 4.824864 4.264992 -3.049648 9.513994 0.683933 3.428993 3.955817 -3.542654 6.031248 -8.952096 -2.366830 -2.662526 -7.218396 0.090399 -5.406028 1.131634 0.160510 -1.881643 1.658948 3.436019 -3.682171 -0.259385 -4.325465 -0.958655 -7.642318 -2.908420 0.306561 6.470844 -0.736263 0.525265 0.448075 10.344017 0.632303 8.697967 6.309759 2.926994 7.096104 0.382716 -1.203700 -0.855397 6.230644 -4.535527 -6.681619 -0.820263 -5.432427 -5.014281 -2.971332 2.283067 -4.226402 -1.414658 5.707383 -0.757488 1.208108 -4.373696 4.170532 6.069872 0.208026 9.635273 2.318716 -4.354625 -1.315219 -5.851637 5.554508 -2.913210 2.998758 -1.875684 -5.945160 0.682030 0.339878 -2.212468 -3.256914 -2.505583 4.808250 3.214243 -5.587862 2.900891 -2.063844 -8.603161 -6.181972 -5.083378 2.069431 0.880277 6.876415 -0.022863 -0.281551 1.708532 1.478475 0.366262 -9.396565 -1.264472 8.762952 -4.942011 -1.900321 -3.560584 5.348766 0.471635 3.306807 -4.202936 -3.931240 2.176405 0.506239 0.968225 -7.153330 -0.086512 -7.819237 2.146249 0.974630 -0.549699 4.737964 3.008285 3.620242 5.540887 6.511292 -7.525251 2.218561 -7.026463 2.739226 -2.617674 -0.153374 -0.433608 2.192473 0.639113 2.226281 6.924288 -9.113099 3.894193 3.442131 -3.097916 -7.449220 -0.171792 -6.820028 -6.624354 -1.335057 3.202895 2.581132 1.182817 -4.284186 0.516694 -1.701935 -1.935313 -3.373187 0.893424 6.711574 -8.057286 -1.177377 -0.738300 -0.476795 -4.087152 6.232378 3.951138 3.322461 8.840612 4.492909 -2.716041 3.544578 -6.973512 0.825153 10.722186 1.952824 -7.582368 5.515003 -5.975246 -0.007853 3.405779 3.179762 4.393981 1.974407 -7.556160 -4.012487 2.657990 -1.694710 8.958657 3.332263 2.596706 -4.519310 9.630520 -2.796667 -5.380408 9.193168 5.595340 -8.782493 3.217537 4.210541 -6.448732 -1.501922 4.599894 -6.364256 -0.997212 -5.269338 -0.279721 2.704866 -4.756935 -1.832068 1.100982 -8.263788 9.768000 0.876702 2.610552 1.305204 -5.809780 -8.151780 10.222419 0.140271 -0.950258 -3.344777 -2.779746 -6.561386 -8.531826 1.227600 0.805614 -4.549273 -3.604338 -7.261940 1.482751 5.550205 -2.480153 5.419991 -6.999161 -2.249075 3.062444 2.256140 4.593502 -3.403074 -4.763950 -1.661641 -1.982509 4.390425 -5.028857 6.912331 9.570177 -2.918641 7.868316 -1.687340 -5.778267 0.996357 4.262488 -6.999248 8.038058 -1.550432 5.606857 0.312839 5.692555 -5.639281 -2.196311 0.055253 -2.738403 -2.483223 4.216360 -5.003655 0.230713 0.946989 -6.538429 -3.478130 2.262225 -0.296366 1.205099 -0.090417 1.173488 -6.606845 -0.668290 -4.683637 1.260294 5.778511 -0.599297 -5.946173 1.662514 0.806596 -0.909492 -1.271285 0.767235 0.165268 5.574863 -7.167377 -1.263766 0.659599 0.101242 -6.532205 -9.515620 0.085124 -6.719742 -5.770086 4.710793 -7.857435 0.252236 -5.487913 -1.106991 -9.225068 -4.194391 2.694916 10.477095 2.708960 -4.672001 2.245541 -0.645012 6.180357 0.575801 1.998436 1.024800 3.557714 +-5.355096 2.639092 2.438611 -1.836971 9.062440 0.895252 1.561411 5.358100 -3.475891 5.828992 -7.387248 -2.216411 -2.864942 -5.519121 0.083714 -2.173848 1.828080 -0.232850 -2.297935 0.920481 3.268666 -2.748806 0.097700 -3.424550 -0.688660 -5.164168 -2.877390 0.265844 6.609136 -1.440345 -1.892952 0.204244 9.876544 0.361834 7.804962 5.150414 3.494086 6.219036 0.562639 -2.943464 -1.270278 6.363705 -4.711339 -5.136095 -0.136488 -5.936695 -4.102430 -1.536873 2.557659 -2.639319 -0.669346 5.111528 -0.843619 1.757169 -3.235300 3.946535 4.947640 -0.126676 9.380032 1.844408 -4.111457 -1.907785 -5.085190 5.578828 -2.523108 3.297158 -2.955586 -5.748900 -0.290936 -0.619975 -0.772847 -5.053358 -2.389977 5.047079 2.029853 -4.880346 3.508786 -1.286571 -2.883941 -7.503880 -6.173131 1.409761 -0.708433 6.011982 -0.761346 -0.312766 0.422602 1.416093 0.221072 -9.086365 -0.459610 6.687524 -5.700966 -0.584288 -2.906628 3.474349 -1.097729 3.902574 -4.341387 -3.717487 1.593298 0.568404 0.928805 -6.514617 3.719594 -5.576187 1.899740 -0.209903 1.103478 4.071813 3.860338 3.096392 5.593478 6.614275 -5.506951 0.144231 -5.699701 2.221633 -2.661731 0.200830 -0.563159 2.986157 1.867329 1.426574 7.085871 -8.841566 2.761969 2.516581 -2.981562 -6.468489 -0.115086 -6.834815 -6.393014 -1.324746 3.517503 1.635736 0.599502 -4.804101 1.555539 -1.457020 -3.670845 -1.873122 0.272306 5.085940 -8.421030 -1.437480 -0.939831 -1.026000 -3.028190 5.933014 3.687293 3.713116 7.702160 4.233298 -3.338907 2.988742 -6.817268 1.344740 9.392912 1.207491 -7.313274 4.962649 -6.069320 0.467975 4.232438 3.216601 4.600037 1.334959 -4.913990 -2.443468 3.174061 -0.032585 8.662722 2.005600 3.554900 -3.639285 6.953362 -3.129659 -4.803340 8.887432 4.046913 -8.520450 3.243237 2.991464 -3.409733 0.073121 3.577796 -6.062271 -1.042006 -5.532626 -0.212207 3.399244 -4.681731 -1.227506 2.256366 -7.605552 9.350213 0.581555 1.634409 2.307032 -6.287339 -4.917341 9.347904 0.754388 -0.682673 -3.529368 -3.074294 -5.766524 -7.802025 1.338159 -0.167134 -3.473525 -3.001653 -7.107034 0.877086 5.519601 -0.891750 4.878585 -8.843214 -1.021415 2.609812 0.662890 4.660761 -2.982349 -4.405892 -1.598565 -2.810826 4.475733 -5.888902 5.592010 8.516260 -3.376770 6.777183 -0.898863 -3.804364 0.354406 3.048003 -6.562664 7.117729 -1.068818 5.725717 -0.269312 5.409909 -5.505738 -1.542720 -0.445900 -0.642464 -2.383468 3.747045 -4.156601 -0.032559 0.757389 -6.054798 -3.666231 1.123535 -0.965835 1.002565 0.348851 -0.526971 -6.209476 -0.695885 -3.794159 1.363299 5.536244 -1.069698 -5.477137 1.783830 -0.444059 -0.902504 -0.471442 0.683132 -0.352853 5.385216 -6.756349 -2.428890 0.939774 0.872040 -5.226126 -8.304073 -1.511750 -4.522821 -4.319814 5.842062 -7.205934 -0.036399 -4.955060 -1.500758 -7.813731 -2.806406 1.965864 9.640967 2.788676 -5.107458 2.488196 -0.098794 5.782095 0.587917 1.647842 0.352424 2.416391 +-10.474023 4.434413 3.030522 -3.902324 16.207891 -1.062007 5.727574 5.745417 -3.113486 9.365450 -14.966637 -8.294435 -6.526151 -12.880079 0.823926 -5.737217 5.030218 1.655117 -4.341272 2.099848 7.089748 -5.734929 -0.237929 -7.720995 -0.391443 -10.211906 -5.630895 0.490029 10.507159 -3.074405 -2.455848 2.302888 19.885045 2.431668 16.217450 10.853240 5.063332 13.872324 0.678940 -4.338499 -1.574051 12.772154 -7.880201 -12.817333 0.040443 -9.935771 -8.107470 -6.032864 4.953778 -5.168557 0.883051 9.995276 -1.060266 3.242613 -8.379176 4.732670 12.160223 2.719655 17.288603 4.815701 -6.159397 1.159203 -9.036316 8.254698 -6.024471 5.058287 -3.364355 -11.361575 -0.771221 0.060860 -0.158586 -8.897839 -7.291033 7.371221 5.361026 -8.813585 7.032190 -1.481390 -7.147028 -14.364512 -12.962463 2.218378 -1.944053 12.779727 -1.862454 -1.333929 0.950426 1.174702 1.968417 -15.736038 -2.141950 12.122546 -9.419064 -1.424354 -3.197954 8.103714 -0.485352 6.071354 -9.402326 -8.603972 3.090663 -0.861161 1.898865 -5.623027 2.851291 -9.336097 3.841489 0.960986 0.417928 8.340571 9.787279 5.712833 9.853824 10.386372 -11.460738 1.064197 -11.595585 5.237216 -5.299045 -0.284455 0.315595 5.159492 3.306338 1.470987 11.862868 -16.404007 6.409650 6.718422 -4.714554 -10.692424 0.632764 -12.031138 -12.655785 -3.331153 7.762035 3.987134 1.530942 -7.677134 1.878683 -2.845734 -4.079070 -1.195309 -0.702925 9.965778 -13.657491 -2.606461 -2.407694 -3.616331 -6.078957 9.840750 5.223236 6.345666 14.607114 8.513425 -8.478415 3.420473 -13.099522 2.657423 19.664738 0.321293 -13.599682 8.500111 -9.353339 1.635388 8.137826 6.468605 8.604539 -0.427163 -8.689861 -3.174549 3.158693 -1.927536 16.055993 3.534326 6.223222 -8.987249 13.684428 -2.590775 -8.574752 18.546632 7.469516 -15.959014 5.012909 7.277011 -10.167080 -1.983991 6.251108 -9.805177 -1.985618 -12.281980 2.303445 5.234039 -9.725585 -2.636277 3.306900 -14.759783 15.647257 1.377901 2.071663 3.668903 -12.187399 -9.882220 20.526401 0.581160 -0.858098 -6.006554 -6.368132 -7.743240 -15.973002 2.864681 -1.670708 -6.381712 -4.987580 -12.670582 2.684378 12.584320 -3.343196 8.515041 -12.258120 -1.571380 5.058234 2.500273 7.422060 -6.412707 -9.278580 -0.696729 -3.848215 7.036358 -8.954705 8.877365 16.021623 -7.138361 9.293557 -0.119746 -7.387235 2.082648 7.134554 -12.047326 13.513628 -3.489625 10.782369 -0.407791 10.510255 -9.832023 -4.131888 -0.189798 -1.297841 -6.244757 7.730493 -8.916452 0.690862 3.429302 -10.082610 -7.853990 3.712193 -0.630546 3.199895 0.168429 -0.723539 -12.348406 0.943776 -5.748499 3.153793 11.052000 0.698080 -10.896927 2.426639 1.402110 -1.573909 -2.013934 1.746238 -1.377838 11.572309 -12.566987 -2.913352 1.680910 2.014787 -8.298188 -17.052704 0.093440 -10.877010 -7.624562 12.081741 -13.630732 -0.121524 -9.448198 -0.807278 -13.885221 -4.225325 3.099168 17.552514 6.090208 -8.424458 4.702309 0.171348 10.367093 0.244419 1.809843 1.447298 6.927240 +-11.547177 8.682136 7.880655 -4.965652 15.768152 -1.018707 7.374059 4.890272 -5.007115 10.611071 -17.399339 -7.278994 -6.329019 -14.664105 0.161591 -10.685563 4.194299 1.355550 -2.598530 4.378847 7.344613 -7.982357 -1.651664 -8.711951 -1.156035 -13.465484 -6.434404 0.348123 12.264193 -5.372957 1.765673 2.490957 22.605627 3.221474 20.136605 14.081644 4.367595 15.537048 1.931949 -3.141749 -3.228256 13.809727 -9.118305 -13.576901 -1.398912 -9.815623 -7.858415 -6.669101 4.143421 -4.640954 -0.791675 11.460405 -1.878481 4.413666 -10.274961 5.730918 13.062719 2.600341 19.571241 4.796996 -6.696950 2.300479 -10.685721 8.838837 -6.489216 4.113152 -3.342254 -10.479254 3.350850 -1.452683 -1.371168 -9.479704 -6.624712 10.068919 5.576481 -11.201408 6.274551 -3.214856 -16.876478 -15.250329 -12.883579 3.477310 1.972230 13.975291 -0.784719 -1.036978 1.819515 3.126898 0.915096 -18.821127 -1.643562 15.107722 -10.624905 -3.591190 -3.432816 12.422366 0.224141 7.649104 -9.520626 -8.770208 4.417423 -1.685261 1.987958 -8.592516 0.977382 -12.923012 3.600676 -0.195122 -2.314985 8.999372 10.432529 8.523887 13.679239 12.883062 -15.078321 2.033635 -13.960364 5.928232 -5.066774 -1.339537 1.532665 5.324971 -0.284950 3.003708 14.051253 -18.504581 5.991480 7.447281 -5.114750 -14.616931 -0.688250 -14.927516 -13.892033 -4.598938 7.488154 6.203166 2.807757 -9.479389 -0.190490 -3.111097 -1.896089 -6.007976 1.756638 14.161896 -14.670292 -2.949827 -2.024986 -2.468073 -8.554967 11.675316 6.847450 7.256917 17.139212 9.268995 -7.525784 5.196370 -14.058243 -0.243442 20.415787 2.632114 -15.318324 11.205421 -10.530756 -0.450532 8.019912 8.044089 10.099960 -1.516630 -14.528759 -7.837310 6.201831 -3.349645 17.556315 3.050530 4.833562 -7.298350 20.038896 -0.523253 -13.169384 20.682306 7.548887 -16.782163 5.776344 7.476633 -11.327575 -3.609154 9.481881 -12.184042 -1.804025 -11.382273 0.353262 4.004357 -9.479532 -1.727983 3.087265 -17.082072 18.476750 1.776988 4.222523 3.396138 -12.885641 -17.446120 22.301967 -0.458802 -1.387370 -7.040801 -6.236006 -8.185211 -17.107956 2.869435 -0.841992 -7.749305 -6.021195 -14.528515 4.983903 11.972019 -4.538827 11.080597 -11.950742 -5.780864 5.807454 3.700836 7.935330 -7.168087 -10.393025 -0.950732 -2.316782 8.116722 -8.711012 13.861796 20.434184 -6.194455 11.772928 -1.496623 -10.319043 3.042795 8.230514 -15.688541 15.749970 -4.722506 11.349055 0.398954 10.828621 -12.117827 -6.292676 1.437896 -1.917725 -6.119074 6.914902 -8.577277 1.400504 0.975014 -12.299874 -6.684537 3.694584 -1.813698 1.342186 0.259448 1.868825 -13.325165 0.142239 -7.927523 2.975898 12.150680 1.807379 -11.245910 4.122436 1.088814 0.455928 0.251885 0.845153 -1.051938 11.296269 -14.390562 -4.077629 0.836281 0.857797 -9.405911 -20.883738 1.322512 -14.619782 -9.608130 10.677356 -15.143114 1.416277 -11.104890 -2.885532 -17.071842 -5.206805 4.968672 20.761904 7.308366 -10.849560 3.576300 -1.700486 12.769354 1.037672 3.076934 1.049457 8.612991 +-10.641873 10.803273 6.572146 -7.775901 18.527975 0.231700 4.904052 9.667054 -3.462254 9.207686 -18.609741 -3.043661 -3.356297 -14.468390 1.398473 -8.208431 1.794381 4.157923 -4.167924 3.172029 7.637480 -4.972380 -0.753695 -10.566728 -1.193238 -13.353851 -5.140996 -0.141052 6.603079 2.727803 1.553808 2.114251 18.403346 2.581492 13.954451 12.091593 7.419062 15.767531 1.575948 4.446761 1.176503 10.953193 -6.801564 -15.287318 2.529836 -10.833087 -9.177519 -7.800672 2.955664 -12.838218 4.229760 10.389534 0.816151 -0.024803 -8.585555 5.619215 14.107328 0.461926 15.660917 6.986651 -9.336927 -1.406619 -9.157861 7.817396 -6.658857 8.448620 1.834679 -12.122684 -1.143640 4.046118 3.178483 -7.805161 -8.316823 4.670447 3.751166 -8.745296 7.038747 -3.476104 -11.242556 -9.878728 -8.314165 3.994334 0.008124 13.190060 -1.073807 -1.691739 -1.801635 0.138143 3.188375 -13.710643 -5.953481 15.493087 -6.951796 -0.158137 -10.791169 8.206429 2.917218 3.853928 -7.334177 -8.420890 5.211318 3.324625 1.709971 -6.837093 -6.599354 -13.440734 6.787580 5.567023 -3.962863 10.104418 2.271346 7.715765 7.390675 8.598651 -12.207523 7.389537 -15.259018 5.105613 -3.333684 0.615960 -0.220449 0.888660 2.987825 2.878983 8.419663 -14.133289 11.221371 8.035450 -7.098066 -10.971947 2.933156 -9.998930 -12.700027 -2.568938 6.357400 5.978250 1.335191 -4.427006 0.403746 -5.074762 -3.629702 -11.511790 -1.938145 12.811737 -14.488121 -2.295977 -2.234749 -2.160757 -7.050231 8.806258 4.961073 3.235723 15.765850 7.682878 -4.550338 5.190019 -11.801754 2.652960 21.594261 8.972192 -13.662357 7.686479 -6.867477 1.718058 6.758984 3.563027 4.692604 5.902648 -13.161235 -7.419994 0.424024 -7.003767 15.458412 9.838002 5.521437 -14.502743 16.697862 -4.245408 -7.727025 20.208676 12.072792 -14.837093 2.132360 10.350679 -11.416159 -4.383198 5.894967 -8.618648 -4.292298 -7.316090 1.210629 3.444912 -10.410436 -8.762889 0.490686 -15.020602 15.795630 2.291262 4.651980 -0.990120 -11.741342 -11.978232 20.422894 0.589013 -3.327607 -3.276615 -4.038847 -8.177153 -16.695914 3.010404 4.774611 -7.708205 -7.785489 -11.220142 2.641075 11.916852 -8.764377 4.675588 -11.357382 -5.472382 5.766885 0.227753 7.401986 -14.243809 -9.351393 -4.026413 -0.526845 8.713836 -6.285198 10.243518 18.833609 -5.970062 11.817522 3.847265 -6.731920 1.109794 11.730946 -9.720511 14.136497 -4.433850 12.080393 0.889323 11.267564 -10.134712 -4.680137 -0.999825 -3.209994 -5.034732 10.442822 -11.088935 1.085111 4.087791 -10.543904 -5.522129 8.315041 1.917023 3.337585 -1.741406 2.233723 -9.865347 -0.849939 -6.682112 0.932356 11.492941 -1.648533 -13.523241 -0.436741 3.985842 -5.286582 -3.448090 2.844177 1.233213 12.943159 -12.361071 3.088369 1.808203 -2.540642 -15.017796 -15.995821 2.648158 -11.777146 -11.321681 7.778554 -15.519863 -3.195652 -9.220593 2.285306 -16.399648 -6.992728 3.121412 16.435895 5.133529 -5.538531 5.182592 -0.130418 12.001415 1.201538 2.714141 1.548080 9.544044 +-9.206228 6.541324 6.029573 -3.336734 12.348178 2.672809 3.009408 5.166972 -4.594647 10.291964 -13.218871 -4.995899 -5.694956 -8.894130 -1.104186 -7.205772 2.702771 -1.311962 -2.873454 3.154338 5.379475 -6.845535 -0.038996 -5.997115 -1.362114 -10.943655 -5.611737 0.170247 11.513995 -3.379501 -1.107023 -0.186589 17.703420 2.045380 14.246713 9.678482 4.085491 12.041148 1.606167 -2.975300 -3.666467 11.448658 -8.524375 -8.177216 -0.478446 -10.355253 -5.799364 -3.900395 3.869415 -3.042265 -0.393069 8.932266 -2.047912 3.546788 -7.145251 5.272578 9.210389 1.685230 16.982584 2.282134 -4.864611 -1.407827 -8.738282 6.767692 -4.691857 3.709288 -3.913593 -7.686334 2.515905 -3.043969 -0.016135 -8.329482 -4.325486 9.705562 3.629479 -9.206677 5.178387 -3.207002 -11.919616 -13.734421 -10.309300 2.266554 0.870244 10.438230 -0.986815 -0.279075 -0.266677 3.782568 -0.244339 -16.298062 -0.097820 11.992685 -8.279848 -1.504925 -3.578231 9.374133 -1.456692 7.166663 -8.338071 -4.578743 2.715066 0.147639 1.547139 -10.699136 3.859117 -11.015586 3.867253 -1.170283 -0.341816 5.068744 7.597892 6.218696 11.971665 12.093106 -12.034207 1.044383 -9.911725 3.117989 -2.591052 -0.823469 0.635584 5.671549 -1.392908 2.187370 12.816586 -15.456326 3.811424 4.492365 -5.776195 -12.670290 -1.267110 -12.713675 -10.823946 -2.707422 5.183150 3.931952 2.021750 -9.479005 0.337376 -3.280756 -3.453502 -4.581101 2.864437 11.564773 -11.750828 -2.474967 -1.188570 -1.825833 -6.035308 10.321435 6.207898 6.063212 13.771940 7.352375 -5.087715 4.480096 -10.913954 -0.077098 15.007372 4.306655 -12.976480 9.072301 -8.585008 -0.193821 7.064356 6.350594 8.960882 -0.109354 -10.615208 -6.545892 4.535053 -0.857839 14.623294 2.625295 5.169441 -3.602200 15.562847 -2.741121 -9.987061 14.254191 6.430063 -11.727317 3.513413 4.221879 -7.095398 -0.699227 7.575205 -9.450083 -0.594737 -8.461032 -1.219747 4.413809 -6.457330 -1.164357 2.739874 -13.694838 16.821052 0.944173 4.776720 4.203094 -11.270568 -12.673485 15.084302 -1.221827 -1.341978 -5.729442 -4.736299 -8.144138 -13.255230 2.251152 -0.773543 -6.834280 -5.196800 -12.459021 3.810638 7.785434 -1.581578 9.016183 -12.301681 -4.976852 4.443245 1.106861 7.838393 -4.417294 -7.722363 -1.715365 -2.818162 8.391962 -8.002505 12.430392 16.033768 -4.655653 9.904802 -3.033591 -5.541639 1.928720 5.309503 -12.703830 12.382839 -3.526746 8.748163 -0.830273 8.583062 -8.527807 -3.711036 0.976639 -0.334426 -3.395251 5.578253 -6.178828 0.336787 0.124517 -10.714587 -4.401505 1.476617 -2.823255 -0.240330 1.072806 1.487272 -10.955154 -0.962957 -6.353488 1.744381 9.363760 1.059693 -8.131874 3.603500 -1.546553 1.170600 2.184113 0.112783 -1.016859 7.932178 -11.568784 -5.526921 0.412941 -0.016515 -6.970170 -15.860400 -1.772783 -9.296462 -8.289348 10.726200 -12.367163 1.422059 -9.183198 -4.049611 -12.695392 -3.806477 4.192237 17.066752 6.625322 -9.925323 2.565797 -1.265313 11.030152 0.650404 2.476842 1.133609 5.293479 +-10.570331 7.198344 7.362178 -4.078524 15.485895 3.185361 4.030128 6.397320 -5.667146 11.433299 -15.632070 -5.774104 -6.344636 -10.443400 -0.890477 -7.983483 2.875611 -1.608439 -3.921162 3.030923 6.279620 -7.178079 0.189975 -7.370398 -1.477798 -11.818419 -6.443946 0.065231 12.933829 -2.700823 -1.477206 -0.344636 19.376059 1.996418 15.842512 10.579302 5.001509 13.550481 0.525463 -3.317031 -3.391303 12.894256 -9.545427 -10.256831 -0.424545 -12.108196 -7.394085 -4.794372 4.462777 -4.810459 -1.171254 10.207899 -1.880035 3.457683 -7.536041 6.516733 10.944168 1.556412 18.968010 3.113163 -6.414816 -1.630069 -10.317784 7.312136 -4.942451 5.674416 -4.549247 -9.719649 1.336563 -2.481985 -0.840801 -9.109278 -4.967633 10.330731 4.539595 -10.085727 6.135231 -3.492941 -12.424271 -15.067955 -11.409323 2.708741 0.839301 12.000536 -1.066774 -0.509492 0.831578 3.648425 0.273457 -18.224803 -0.969128 13.969597 -9.490185 -1.893289 -4.574381 9.340726 -1.927606 7.953735 -9.454519 -5.710766 3.233927 1.086066 1.579728 -12.548565 3.926722 -12.901336 4.734589 -0.161049 -0.183135 5.721612 7.971886 6.375597 12.368590 13.346949 -13.676680 2.327339 -11.143571 3.492599 -3.734755 -0.425722 -0.009545 5.961726 -0.324008 2.539192 14.019359 -17.314286 5.282654 5.431266 -6.894859 -13.994988 -0.931985 -14.227899 -12.620459 -2.466173 5.880261 4.337750 2.166804 -10.111588 0.830539 -4.081946 -4.224350 -4.635479 2.497944 12.378225 -14.040211 -2.866544 -1.393174 -1.937147 -6.973146 11.847624 7.035955 6.505327 15.656778 8.273624 -6.059027 4.881348 -12.285522 0.910576 18.070801 3.799160 -14.684430 9.821587 -10.076044 0.622107 7.960824 6.252307 9.557876 1.109515 -11.875814 -6.629564 4.994934 -1.387288 16.738242 4.231663 6.518131 -5.774056 17.001763 -4.670842 -10.496425 16.216727 8.506979 -14.627698 4.493271 5.593582 -8.574344 -0.895776 8.197434 -10.821560 -1.062832 -9.917957 -1.155705 4.993200 -7.925066 -2.292556 3.110188 -15.620543 19.097347 1.434706 5.501411 4.280107 -12.191114 -13.669165 17.515152 -0.749609 -1.748656 -6.368563 -5.130078 -10.268218 -15.322170 2.636542 -0.272210 -7.878465 -6.371753 -14.043256 4.039729 9.277079 -2.520568 9.979054 -13.596242 -4.769203 4.863070 1.365253 9.537460 -5.304300 -8.928758 -2.778293 -4.152326 9.527032 -9.554804 13.100382 17.937284 -5.544755 12.379245 -3.200792 -7.354522 1.517147 6.513170 -13.288438 13.949122 -3.545168 10.822215 -1.052288 10.546203 -9.817928 -3.783848 0.608259 -1.586607 -3.881067 7.417464 -7.785923 0.300939 0.700099 -12.331371 -5.609705 2.505682 -2.765855 0.641356 0.660625 1.605029 -12.734435 -0.893155 -7.446617 2.034830 10.808321 0.020162 -10.288970 3.154950 -1.073292 0.105239 0.748073 0.776933 -1.178272 9.733181 -13.086774 -5.431892 0.867829 -0.075888 -9.148879 -17.205943 -2.077934 -10.929536 -9.488930 12.137036 -13.821130 1.407520 -10.302990 -3.920324 -14.598514 -5.436125 4.427992 19.195072 7.071595 -10.480687 3.508583 -0.868707 12.354800 0.887544 2.830985 1.374338 5.739377 +-11.440872 11.449468 4.785378 -9.644697 28.519584 -3.081296 7.467390 11.660082 -6.074333 8.576537 -22.813157 -0.260695 -0.661599 -19.766101 4.792712 -5.644724 4.682364 5.826985 -4.621951 2.340952 7.155515 -4.184199 -1.249745 -13.414691 -0.959230 -18.124763 -4.865010 1.137757 7.009021 3.084849 -1.630776 6.027458 20.522935 0.671049 13.751559 14.059860 10.534200 14.812804 2.924803 -4.044687 7.712061 8.613293 -5.314423 -18.517198 0.752024 -9.806955 -15.223832 -8.302101 3.510593 -14.820068 -0.925292 11.840445 2.361174 -1.945953 -12.109132 8.560616 17.874398 -2.155418 15.576226 10.017844 -11.803687 -3.646006 -8.470157 12.896868 -8.684053 7.903770 -0.751813 -16.818856 -4.525120 13.273814 1.238871 -7.803363 -11.250453 0.330974 5.842888 -9.624254 8.202748 -1.092344 -5.794102 -11.374192 -8.135579 7.004969 -3.132071 16.336574 1.361390 -1.892931 -0.582413 -3.176747 6.653590 -12.794517 -9.863566 16.871537 -8.026923 -1.729869 -11.560271 9.188616 8.861533 -0.576887 -5.689550 -16.612643 6.405877 0.942957 1.024251 -6.626387 -2.910282 -14.537932 4.441043 8.297632 -1.887736 16.688278 -1.756022 8.464666 4.832733 5.224448 -11.593891 3.345419 -18.652812 7.103495 -7.418696 -1.123682 -3.849141 -1.696606 9.302191 5.761309 7.612504 -16.118589 16.529279 11.667925 -5.630156 -8.977751 4.650742 -6.858336 -14.150349 -1.074115 7.629733 5.501966 3.080744 0.502868 3.250589 -5.097954 -4.723772 -8.251889 -6.139676 16.670211 -21.075281 -0.904836 -1.548284 -1.373586 -7.675895 8.257330 5.800543 3.572809 17.934084 8.196708 -8.108774 10.439331 -15.979656 7.493303 29.066407 7.700271 -13.646843 9.010481 -9.919601 1.999409 5.834250 3.987576 1.957367 5.293408 -15.322894 -6.839185 -0.162357 -9.493666 17.273290 10.023342 5.607608 -20.892345 16.837981 -6.407217 -4.329881 23.085393 12.518098 -20.617377 7.595813 19.368159 -14.787558 -5.372135 5.717163 -13.119407 -7.123871 -11.339783 4.342717 5.208192 -14.976510 -10.311126 -1.075372 -15.138348 14.530025 4.534471 -0.211996 -2.849318 -7.896030 -10.554256 27.347246 1.740708 -0.319212 -2.730434 -6.107643 -9.425512 -20.834300 0.809024 5.483479 -10.796599 -5.016739 -12.041226 -2.098439 17.610717 -13.634762 4.749885 -18.679869 1.319798 7.425474 6.483455 4.787807 -14.909459 -10.197264 -1.751283 -3.506679 3.047561 -12.036604 8.966942 15.923680 -8.320255 13.703791 1.435538 -10.875766 3.413802 13.093160 -7.984006 16.424196 -1.652492 19.334725 5.742591 14.610859 -12.929634 -4.607848 -4.271629 -9.787503 -10.411050 14.031904 -18.568706 0.626808 11.974282 -5.128077 -14.679938 11.938679 7.412954 7.726478 -5.362399 -1.207654 -8.470864 0.924833 -6.927623 5.560219 10.857718 -6.024418 -16.077666 -1.386423 13.562379 -10.361164 -9.124665 5.502318 2.783182 17.054864 -13.972153 9.245021 3.756654 3.771267 -20.541401 -20.369437 7.246052 -13.240774 -10.836500 6.770834 -22.691415 -8.888395 -8.951642 6.739925 -19.404312 -8.333229 5.371216 18.571467 0.490242 -4.635973 7.237927 0.260838 6.635421 -1.425699 5.450225 0.483877 8.399260 +-7.009009 6.988020 4.059862 -5.560010 16.406843 -1.910892 4.216081 7.501675 -3.115034 5.452710 -13.195012 -0.396758 -1.079153 -11.464723 2.623970 -4.433652 2.537812 3.964209 -2.811048 1.518627 4.668546 -2.241226 -0.724698 -7.779629 -0.735904 -10.946763 -2.930243 0.546021 3.682273 2.505490 -0.075802 3.577773 12.516307 0.864568 8.665523 8.536272 5.990081 9.530597 1.543389 -0.463614 3.936741 5.515158 -3.401589 -11.461384 1.088736 -6.050708 -8.495223 -5.257270 2.127037 -9.503907 -0.014413 7.034073 1.331069 -0.780025 -6.749224 4.704288 10.132330 -0.583980 9.354683 5.934821 -7.310375 -1.887408 -5.631048 6.963557 -5.202394 4.965361 -0.122143 -10.207851 -2.491269 7.115942 1.140224 -4.480661 -6.285827 0.658787 3.269635 -5.653112 4.902064 -0.698821 -4.728848 -6.045942 -5.168754 3.860035 -1.470064 9.563463 0.397302 -1.102665 -0.656795 -1.640159 3.753242 -7.908297 -5.615486 10.450240 -4.792709 -0.553275 -7.260870 5.081780 4.933541 0.141173 -3.269077 -9.175086 3.914677 0.821875 0.849002 -3.648198 -3.266828 -8.655877 3.356742 4.718882 -1.406210 9.426679 -1.287909 5.191735 2.983311 3.542612 -7.268811 3.330501 -11.226702 4.631261 -4.416341 -0.348985 -1.962181 -0.764349 4.828157 3.287475 4.648503 -9.596862 9.579678 6.610371 -3.436782 -5.682383 2.927862 -4.395224 -8.285916 -1.211275 4.960802 3.386774 1.388071 -0.233917 1.548957 -3.111957 -2.423614 -5.939241 -3.620232 9.499303 -11.966129 -0.608348 -1.293837 -1.231697 -4.572751 4.862471 3.328522 2.421508 10.544496 5.201544 -4.526105 5.186196 -9.535126 3.837008 16.899316 4.809351 -8.270399 5.390577 -5.265270 1.148656 3.776390 2.264697 1.538300 3.871369 -8.887879 -4.494330 -0.812183 -5.365744 10.451340 7.207592 3.390303 -12.451190 9.880314 -4.217310 -3.057838 13.863438 7.886767 -12.021978 3.686903 10.762127 -9.309264 -3.741492 3.251620 -7.374915 -3.885308 -6.406771 2.328014 3.205241 -8.873815 -6.322234 -0.066783 -9.326447 8.847823 2.383223 0.853344 -1.562361 -5.528566 -7.173205 16.052197 1.142957 -0.609422 -1.895421 -3.768941 -5.691582 -12.309171 0.843561 3.383780 -6.013865 -3.586826 -7.232275 -0.830424 10.081658 -7.691086 2.834385 -10.062108 -0.211288 4.381618 2.709248 3.193327 -9.677897 -6.055538 -1.574190 -1.956487 2.719752 -6.155300 5.367878 10.274403 -4.849888 8.264522 1.712257 -6.485723 1.686203 8.019182 -5.134865 9.708529 -1.678746 10.806975 3.039427 8.449616 -7.526711 -2.812354 -2.140466 -5.278250 -5.794773 8.397363 -10.353809 0.386357 6.394748 -4.309946 -7.549344 6.797576 4.119261 4.423780 -2.807248 0.051651 -5.796898 0.470817 -4.300868 2.787994 6.893875 -3.143135 -9.764169 -0.554578 7.014934 -6.264777 -6.025587 3.154948 1.615359 9.865342 -8.423198 5.089712 2.179392 1.199949 -12.094081 -11.726766 3.948662 -8.415499 -7.162419 3.877602 -13.037955 -4.665407 -5.392506 3.976121 -11.515925 -5.277614 2.865685 11.014549 0.801469 -2.583882 4.532046 0.153670 4.756351 -0.382927 2.898087 0.306691 5.874605 +-6.215016 3.826552 2.196886 -2.506311 10.877686 0.876756 2.347311 5.830989 -4.130625 6.598697 -9.067760 -2.210887 -3.137531 -7.593238 0.318044 -3.598902 2.142557 0.220138 -2.669914 1.084246 3.865633 -3.247015 0.099326 -4.521511 -0.848762 -7.675601 -2.993707 0.173677 7.234931 -0.292109 -1.310434 0.450655 11.495914 0.676035 9.082590 5.976372 4.443243 7.325070 0.679832 -1.710889 -0.950521 6.987739 -5.143695 -6.958532 -0.115358 -6.637376 -5.618631 -2.185197 2.848307 -4.251726 -1.290238 5.993583 -0.574244 1.645233 -4.060994 4.168175 6.566904 -0.486629 10.405917 2.503094 -5.282693 -2.342414 -5.749228 6.124213 -3.242678 3.677176 -2.326459 -6.625635 -0.551525 0.267465 -1.069521 -4.855872 -2.840804 5.163918 3.153132 -5.638351 4.112613 -1.349775 -5.049590 -7.894824 -6.533972 1.969139 -1.012514 7.362350 -0.467431 -0.321940 1.215843 1.190673 0.830093 -10.128074 -1.176288 8.448570 -6.001265 -1.040152 -4.499970 4.148373 -0.152056 3.993222 -4.641854 -4.958837 2.230997 0.822321 0.987523 -7.001497 1.735792 -7.392630 2.194963 0.331415 0.598384 5.441434 3.207834 3.093626 5.682003 7.166825 -7.211438 0.815316 -6.669130 2.859331 -2.882263 0.276675 -1.058481 2.725575 2.838839 1.992812 7.556595 -10.128724 4.132047 3.539024 -3.176436 -7.515207 0.169907 -7.468160 -7.288707 -1.297411 4.041461 1.877703 0.956713 -4.985150 1.607538 -1.902441 -3.937791 -2.962254 0.005664 5.978372 -9.979855 -1.461845 -1.072447 -1.136542 -3.777261 6.583694 3.844727 3.907134 8.865716 4.844085 -3.831812 5.008032 -7.747333 1.894365 12.328677 2.391616 -8.474915 5.567975 -6.905393 0.795432 4.428874 3.128883 4.875103 2.203533 -6.492684 -3.138652 2.785434 -0.784533 9.768477 3.662632 3.713028 -5.601750 8.527092 -2.925317 -5.121370 10.940541 5.108078 -9.598514 3.980478 4.371295 -5.545138 -0.503094 3.725619 -6.931860 -1.676661 -6.678203 0.232481 3.601538 -5.657229 -1.849797 2.060179 -8.816570 10.285295 1.029799 1.800346 1.901761 -6.961557 -5.926433 11.115927 0.449866 -0.778511 -3.837403 -3.436519 -6.536572 -9.307387 1.361048 0.349260 -4.453122 -3.461049 -8.084354 0.797582 7.016961 -1.863233 5.465908 -10.326534 -1.200420 2.975317 1.524751 5.107996 -5.344829 -5.112279 -1.871774 -2.883713 4.820839 -6.441608 6.147153 9.674170 -4.008158 7.788625 -2.002358 -5.604523 0.632307 4.042580 -7.020586 8.151022 -1.378402 6.608871 0.094464 6.591072 -6.065264 -1.734047 -0.825458 -1.685527 -2.912769 4.984380 -5.567419 -0.116935 2.069902 -6.592305 -4.666617 1.970781 -0.468708 2.020836 -0.144873 -0.669326 -7.200280 -0.397893 -4.325243 1.692283 6.402367 -1.147183 -6.842661 1.541566 0.518884 -1.595681 -1.693714 1.118150 -0.213448 6.433428 -7.770256 -1.829254 1.212742 0.629751 -6.784030 -9.910985 -0.816483 -5.660232 -5.715813 6.577887 -8.801031 -0.257568 -5.502319 -1.079119 -9.493266 -3.963795 2.298222 10.874230 2.622501 -5.171632 3.089031 -0.042595 6.364333 0.447151 2.280607 0.682315 3.435988 +-42.598689 24.842789 5.269245 -29.656031 87.310068 -7.501062 10.283598 41.744212 2.613596 36.385243 -74.375046 -22.619770 -14.933264 -64.141066 9.873320 -11.362815 19.232482 19.795936 -23.622527 0.330430 29.519426 -10.988256 1.829165 -40.828484 -3.311493 -45.153480 -23.465117 3.927845 19.815749 1.784177 -14.894515 15.972732 79.197466 10.363213 57.061992 45.302773 33.740676 63.349649 9.761917 9.927439 17.177181 40.645484 -23.557261 -66.707562 11.216384 -43.223415 -42.462705 -31.525850 17.069180 -46.625080 28.908591 41.545063 6.227491 -0.307848 -39.551952 17.858561 51.751851 6.887774 64.415675 31.602817 -44.783735 -0.986433 -34.017935 36.882619 -34.379805 37.034441 2.032135 -58.537981 -19.619620 29.770776 20.407109 -39.695833 -44.892551 9.177670 15.283516 -32.677789 32.606021 -4.347635 -2.380498 -44.020251 -43.073840 20.337193 -13.961582 54.216355 -3.190867 -6.014963 -10.577519 -6.250063 17.394073 -52.596383 -24.750744 51.254229 -33.413387 8.461640 -32.193884 24.822580 6.893137 7.774408 -28.569247 -44.185959 18.722741 6.912172 6.501565 -7.313210 -9.037799 -43.742088 34.076505 25.202195 -7.266294 33.790540 23.054858 22.011204 25.802540 28.901738 -36.811166 14.923223 -63.539665 22.835430 -17.260158 -1.780573 -9.708974 5.565190 25.820317 7.424883 34.210245 -59.865900 50.454711 35.138104 -28.302861 -33.430899 14.419042 -32.062125 -53.766767 -5.682356 32.600841 17.194968 6.110013 -11.506947 8.859708 -20.348302 -26.638216 -22.551803 -18.672344 43.244943 -55.950949 -7.356450 -8.572680 -15.956313 -24.631098 33.673815 19.307075 16.756923 64.872613 30.043051 -31.291192 7.697114 -57.657104 22.418728 95.643404 17.047200 -54.982277 31.194562 -30.297315 14.314848 29.587812 19.724695 17.497735 10.913243 -32.474582 -10.432481 -4.479904 -20.336767 64.157802 30.381093 30.121119 -59.801102 45.824385 -13.089415 -14.407071 89.295713 41.160046 -69.794600 13.535722 53.860059 -38.307253 -12.951012 20.210328 -34.899240 -17.808260 -43.162329 16.117495 21.869463 -52.126628 -33.016186 6.001955 -58.144848 59.097413 9.938967 5.048876 1.309902 -51.377636 -24.393638 95.698233 4.413626 -3.147477 -9.623399 -25.781868 -25.543717 -74.249602 8.004332 16.779623 -31.261992 -16.248541 -44.406269 3.884362 62.564782 -33.819516 19.262901 -48.574033 -2.230345 26.406289 -0.701439 23.890536 -50.149733 -36.721015 -6.072846 -12.876884 27.304602 -37.369512 25.206495 61.194430 -30.334806 45.114872 24.990402 -18.283785 4.879909 41.855889 -33.326464 60.176422 -15.310594 49.263472 8.158850 49.906471 -38.833007 -14.175348 -12.618817 -9.902872 -30.522884 46.183120 -55.992484 0.913663 30.914049 -32.345537 -38.518006 33.387247 17.627223 23.247230 -9.802127 -6.192321 -37.805123 1.665310 -21.906219 18.013490 43.188096 -9.915297 -57.127921 -1.416057 30.239494 -30.847091 -19.794023 16.287178 2.931083 63.005532 -51.527893 15.816617 15.332674 6.707635 -60.174075 -61.362856 8.362463 -40.752862 -29.921867 34.164703 -71.548738 -28.347199 -33.286204 18.499931 -55.228788 -12.518811 9.722674 67.885225 21.652908 -22.710685 24.415589 5.039220 32.571865 1.073151 5.419563 7.381596 35.463474 +-9.262319 8.243208 7.491534 -4.809987 17.809974 3.187082 4.449481 10.462649 -9.561649 10.446467 -14.701617 -1.029181 -3.837778 -11.522349 -0.002592 -6.796638 1.528162 -0.615008 -3.457904 2.251948 5.665179 -5.722247 -0.147234 -6.889985 -1.668360 -10.988856 -4.969676 0.247506 12.147396 -0.586888 -0.689946 -0.325144 16.590570 0.121377 13.914488 9.717897 6.489470 10.861080 0.820878 -3.682625 -1.844944 10.423188 -8.167064 -11.072298 -0.741141 -10.743945 -8.024385 -3.382969 3.805021 -7.519400 -3.488976 9.353332 -1.514576 2.019596 -5.747646 7.871961 9.259222 -1.793040 16.386152 3.587346 -9.428483 -5.583021 -9.708782 10.023699 -3.779545 6.780346 -3.903861 -10.393595 0.553634 0.033609 -3.895942 -6.831381 -3.131116 9.031804 4.158773 -8.999532 5.202467 -3.816558 -11.758155 -10.520412 -8.346893 3.291729 0.265684 10.864498 -0.027596 -0.649025 2.291573 2.515720 0.275926 -16.596987 -1.779986 14.934401 -9.123310 -1.806450 -7.934711 7.102077 -0.802822 6.622094 -7.086499 -6.250037 3.693886 2.810032 1.420818 -15.501164 2.666930 -13.759941 3.723054 0.858255 0.393124 8.211877 4.298252 5.676222 9.405845 11.737967 -11.879445 3.577187 -11.253602 4.117452 -4.951725 0.541177 -1.802824 3.943273 2.451266 3.398913 12.187094 -15.340763 6.015564 5.206942 -5.816075 -13.340177 0.000254 -12.525711 -11.384258 -1.416611 5.003179 3.715916 1.679391 -8.014327 1.223957 -3.177126 -6.501111 -7.444957 1.243416 11.050717 -16.044716 -2.366268 -1.122258 -0.232325 -6.481471 11.189873 7.411673 5.956397 14.888222 7.553077 -3.991557 7.928520 -11.709449 2.143142 17.897595 4.618959 -13.282574 9.019718 -11.363687 0.417251 6.145800 4.448081 7.561861 5.347089 -12.609750 -6.674878 6.504478 -1.887467 15.157552 6.243330 5.862338 -7.621490 15.158243 -6.287758 -9.103252 15.272501 8.544049 -15.879791 7.134042 6.348047 -7.332954 -0.326654 7.090076 -11.865290 -2.418120 -8.283703 -1.725872 5.371486 -8.677199 -3.592149 2.486199 -13.864011 17.790228 1.653827 4.823754 2.243054 -10.007745 -11.660393 16.568991 1.201283 -2.006590 -5.742606 -4.255206 -12.518940 -13.809674 2.044855 2.327960 -7.865275 -6.857208 -12.635360 1.494150 8.971230 -3.369614 9.056647 -14.655958 -3.291154 4.946755 2.776991 8.879101 -7.478472 -8.086301 -4.484411 -4.650920 8.774417 -10.143216 11.714617 16.053373 -4.899150 15.228405 -2.254436 -8.840502 0.656617 6.568694 -11.226037 13.324416 -1.715895 11.309406 0.150774 10.143128 -10.181232 -2.845953 -0.937025 -3.526572 -3.227345 7.699998 -8.277168 0.166242 1.254432 -11.786896 -6.006034 3.414658 -1.236176 1.989240 -0.108905 0.575897 -10.638325 -2.437108 -8.410921 1.788309 9.828909 -4.199858 -10.943197 2.161978 -0.105005 -2.238294 -1.316368 1.616496 0.616373 9.021574 -12.105393 -2.851721 1.347211 -0.081642 -12.490103 -14.954882 -1.598021 -9.396053 -9.389311 8.099786 -13.309010 0.193298 -9.241055 -2.875427 -16.815711 -7.326955 3.864044 18.124300 3.782643 -7.747880 4.176875 -0.530617 10.839283 1.273339 4.605472 1.049925 4.719960 +-5.260108 4.823821 4.460250 -3.031893 9.503976 1.721401 2.966340 4.734684 -4.112568 6.024068 -8.456173 -1.130404 -2.049491 -6.098497 -0.174740 -4.434518 0.274722 -0.307925 -2.002428 1.292777 3.146233 -3.152619 -0.020490 -3.952683 -1.101273 -6.691267 -2.828052 0.181247 6.154432 -0.075707 0.297272 -0.342482 8.855447 0.335514 7.698497 5.469340 3.136127 6.374933 -0.175006 -0.159539 -0.852692 5.639654 -4.463773 -6.096210 -0.386033 -5.693825 -4.814949 -2.756394 2.003669 -4.807134 -0.645092 5.324271 -0.739300 0.833648 -3.203418 4.363577 5.387034 -0.753444 9.008480 2.045379 -4.970292 -1.878222 -5.735500 5.217895 -2.044008 3.888431 -1.441234 -5.830654 0.234357 0.080010 -1.470736 -3.486906 -1.994074 4.865115 2.569323 -5.110941 2.671492 -2.465100 -7.529494 -5.825446 -4.237673 1.991773 1.068637 6.138911 0.040924 -0.241184 1.216032 1.526780 -0.005737 -9.041505 -1.239355 8.646427 -4.658784 -1.212766 -4.677662 4.107612 -0.401648 3.482397 -3.962473 -3.145462 2.104188 1.730595 0.819829 -7.763348 -0.137314 -7.847571 2.423198 1.244354 -0.472825 3.573345 2.130120 3.005664 5.057496 6.535132 -6.865218 3.203129 -6.288032 2.355746 -1.954659 0.403230 -0.770110 1.933992 0.719732 2.038109 6.578320 -8.243071 3.649104 2.752686 -3.715071 -7.457397 -0.219220 -6.714520 -6.240225 -0.823472 2.510923 2.337404 0.900345 -4.250668 0.461398 -2.024166 -2.721264 -4.318709 1.050196 6.062898 -7.914334 -1.212199 -0.563717 -0.081941 -3.928885 6.334801 4.121949 3.016028 8.413780 4.132729 -1.646680 3.289047 -6.240164 0.855969 9.836073 2.982737 -7.238829 5.054977 -5.821680 0.298109 3.290108 2.455378 3.879436 2.721596 -7.248383 -3.707349 3.104989 -1.467024 8.509825 3.988713 2.935957 -4.253224 8.722026 -3.551617 -5.039984 8.265050 5.960712 -8.399317 2.925334 3.508188 -4.755549 -0.904554 4.345077 -5.981394 -1.394341 -4.038073 -0.833110 2.474694 -4.192801 -2.292510 1.191196 -7.761131 9.855993 0.805936 3.242916 1.179364 -5.484424 -7.094265 8.825693 0.226199 -1.411180 -2.876461 -2.042429 -6.717010 -7.573366 1.227346 1.645939 -4.265776 -4.042166 -6.895471 1.497719 4.717355 -2.275737 4.943848 -6.420835 -2.572575 2.734074 0.993899 4.952328 -4.163895 -4.313094 -2.721717 -1.874743 4.847743 -4.782377 6.579582 9.312071 -2.521051 8.103232 -0.952894 -4.687065 0.177353 4.060818 -6.128675 7.448751 -1.250064 5.422381 -0.068532 5.486954 -5.197526 -1.708144 -0.193720 -2.049242 -1.577851 4.379216 -4.472702 0.126293 0.368895 -6.911238 -2.763057 2.204880 -0.539700 0.795734 -0.047714 1.149778 -6.071980 -1.243969 -5.036101 0.712491 5.431894 -1.595263 -5.931558 1.236452 0.068677 -1.210369 -0.869451 0.810409 0.438772 5.160927 -6.631676 -1.286442 0.638641 -0.557345 -7.009449 -8.268249 -0.570926 -6.050321 -5.941995 4.239657 -7.121243 0.164397 -5.287218 -1.418273 -9.150818 -4.373493 2.323070 9.896651 2.595243 -4.096782 2.232944 -0.474230 6.302072 0.770486 2.077316 1.121675 3.068371 +-18.110926 6.859691 1.417910 -13.240181 41.531285 -2.326527 4.377153 24.583819 -2.136829 16.755910 -31.186218 -7.968395 -6.295019 -27.735197 3.245322 -5.548815 10.515384 4.583899 -13.319211 0.038808 11.470938 -1.820544 2.201882 -15.477339 -3.424949 -18.437718 -9.846342 3.133986 11.638422 -2.481090 -7.106199 5.521780 37.808827 2.246487 28.324695 17.751706 19.181336 24.122284 3.944514 -1.520628 7.485170 16.640934 -11.078442 -24.953210 -0.323614 -18.982245 -22.793398 -8.285258 8.574160 -18.766915 5.470133 18.698136 3.058568 2.733198 -14.545999 11.938131 18.777319 -3.443033 29.628362 12.383440 -24.698345 -6.280256 -15.415859 21.103629 -13.156990 16.072778 -5.144783 -23.693874 -10.383274 12.990422 2.622621 -19.038095 -17.655096 6.329308 9.783185 -15.831926 15.933546 -1.488311 5.905030 -22.657636 -17.103983 11.256625 -5.518740 22.269279 0.039216 -0.130878 0.542845 -1.659872 3.708909 -27.435740 -6.238224 22.566614 -20.684556 -0.120245 -18.283961 9.864282 -3.422574 5.874528 -14.978798 -24.112246 8.241704 1.714215 1.889513 -13.137601 4.701606 -19.625669 11.055589 9.741840 0.946915 17.033923 8.963286 9.975405 14.342292 16.862126 -15.917004 5.180229 -28.222042 10.455881 -12.321994 -1.112254 -7.604910 3.514627 15.483549 9.276156 18.017224 -29.211019 21.065508 16.061799 -13.787378 -16.654578 4.136615 -16.366753 -24.317242 -1.104483 14.383031 5.054066 4.970690 -8.555445 7.810302 -8.073467 -12.947033 -7.524361 -6.609506 13.985185 -28.857946 -3.531308 -1.403409 -3.757745 -11.410436 19.431935 12.079295 7.472732 30.797208 10.375127 -15.555801 8.631712 -26.902272 9.534121 41.458099 4.451195 -24.625989 17.767801 -20.719708 5.259753 11.735504 11.584224 8.953866 2.479631 -15.722465 -3.549813 4.926665 -4.029967 30.829389 7.508797 12.491408 -25.929658 17.959396 -11.918160 -5.141910 38.910088 19.440350 -34.127976 7.864559 22.314753 -11.687941 -3.676896 10.933831 -21.583231 -9.758309 -20.471405 6.656077 11.510807 -21.288625 -10.439534 6.968746 -25.438376 26.922373 3.712022 -2.393286 1.303889 -22.654153 -10.527772 42.973311 1.419663 0.030791 -4.416550 -13.006408 -11.409942 -33.861455 1.686716 6.424146 -12.626496 -3.163242 -20.492867 0.511508 26.199455 -11.773190 12.731683 -30.789809 1.383104 12.859036 -0.211405 11.503049 -17.516657 -15.367034 -4.392122 -9.734296 11.349780 -24.612187 11.455169 24.715944 -12.513334 26.309826 2.367646 -15.445702 0.424103 14.406250 -17.339678 29.754224 -3.066243 23.743734 4.223733 22.380848 -19.407925 -5.287355 -8.655279 -6.842038 -14.874029 19.292091 -25.511441 -0.631625 10.699272 -12.686191 -20.879404 11.350477 6.552516 5.162917 -3.290535 -4.279604 -17.428376 -1.405798 -13.677248 11.408672 17.773873 -8.386244 -24.182946 2.687808 14.482119 -12.507274 -5.032090 5.775914 2.393123 28.186079 -23.974764 2.404373 8.379144 7.771278 -27.343917 -30.879297 2.557046 -17.979035 -10.296600 12.079403 -31.358148 -14.424543 -14.839733 5.789611 -24.466360 -6.506702 10.253917 34.195202 8.763807 -15.522884 9.526864 1.735274 13.057752 0.562108 6.279888 4.391604 10.619435 +-6.197026 4.458638 3.475659 -2.918576 9.471358 0.431932 3.448697 4.494292 -3.022516 6.228027 -9.373251 -3.632928 -3.130367 -7.342221 0.014273 -5.144925 1.799899 0.400023 -2.353452 1.806848 3.812084 -3.553849 -0.181231 -4.640339 -0.926094 -7.312023 -3.121485 0.206514 6.690628 -0.947318 0.327201 0.395414 11.766727 0.881468 9.862813 6.594284 3.311936 7.710968 0.668852 -1.356946 -1.215677 7.218762 -4.994568 -6.784037 -0.903350 -5.990725 -5.195542 -3.197981 2.423688 -4.273592 -0.633441 5.911764 -0.545629 1.852265 -4.417601 4.038495 6.971503 0.206538 10.471912 2.385987 -4.350776 -0.581134 -5.587812 5.881453 -3.092211 3.037862 -2.167771 -6.067100 0.424638 -0.195708 -1.697537 -4.102647 -2.984212 5.251552 3.473112 -5.910720 3.731476 -1.868575 -7.024024 -7.854279 -5.934630 1.924223 0.323835 7.235080 -0.616737 -0.399253 1.449836 1.473093 0.396049 -9.969204 -1.098086 8.615928 -5.662762 -2.146779 -3.537280 5.347525 0.070064 4.074728 -4.986755 -4.630156 2.076962 0.275559 0.975241 -6.520754 0.673889 -7.141568 1.872289 0.916505 -0.404959 5.793272 3.855540 4.221518 6.437837 7.074027 -7.745770 2.039260 -7.243379 2.904248 -3.196404 -0.164748 0.055506 2.496880 1.431485 2.344255 7.262102 -9.779547 3.920428 3.890603 -3.159267 -7.383454 -0.156681 -7.543354 -7.336807 -1.678624 3.607154 2.724860 1.297742 -5.100689 0.844675 -1.771593 -1.869065 -3.119431 0.786377 6.244755 -8.607250 -1.565763 -0.869355 -0.696958 -4.150538 6.668631 3.839947 3.196057 9.104713 4.543987 -3.598518 3.312829 -7.264231 0.727001 11.247938 1.296116 -8.101177 5.718289 -6.238601 0.056046 4.187969 3.615555 4.720004 1.404452 -7.355281 -3.825102 2.594826 -1.532719 9.648404 2.772626 2.759334 -5.454962 9.966085 -2.659308 -5.819229 10.632782 5.887114 -9.208699 2.554344 3.904438 -6.738952 -1.414582 4.641641 -6.623246 -1.519551 -6.031189 0.060880 2.743271 -4.801970 -1.722364 1.806865 -8.897042 10.062860 0.818525 1.807134 1.337698 -6.665783 -7.500284 11.220176 0.439419 -0.960736 -3.412829 -3.080856 -5.981877 -9.405082 1.496169 0.166665 -4.140995 -3.575689 -7.621079 1.983539 5.967600 -2.285591 5.525047 -8.157925 -2.313657 3.151457 1.756962 4.707717 -4.131956 -5.229022 -1.766625 -1.981678 4.744075 -5.448320 7.062952 10.365025 -3.224323 7.611122 -1.383497 -6.286901 0.895865 4.369620 -7.764609 8.374792 -1.913610 5.735595 0.003041 5.976508 -5.996695 -2.498326 -0.206968 -2.135642 -3.038982 4.344147 -5.162680 0.329640 0.799491 -6.723921 -3.674441 2.142654 -0.797451 0.960796 0.099908 0.790304 -7.612432 -0.371948 -4.730887 1.123822 6.354319 0.008731 -6.454878 1.913956 0.477247 -0.684316 -0.971956 0.400091 -0.225367 6.081418 -7.624215 -1.823598 0.872922 0.337256 -6.195041 -10.134609 0.029189 -6.940069 -5.758406 5.657038 -7.789845 0.071569 -5.766183 -1.334822 -9.241854 -4.279354 3.045244 11.087662 3.238477 -5.586579 2.144387 -0.570522 7.061044 0.850911 1.965717 0.927170 3.810718 +-2.993536 0.647846 0.480815 -0.731246 5.853216 0.054630 0.802187 4.603819 -2.243111 3.657276 -3.748030 -1.415891 -1.650005 -3.198033 0.287110 0.039466 1.633075 0.449169 -1.568671 0.275566 2.027485 -1.006915 -0.118571 -1.584847 -0.415890 -2.574246 -1.457053 0.386717 3.795460 -0.931609 -2.158797 0.571275 6.586721 0.042862 5.359066 3.256400 2.709014 3.534632 1.104079 -2.507164 -0.697256 3.908743 -2.813339 -3.073002 -0.161393 -3.403757 -2.590989 -1.080699 1.483741 -1.414755 0.713560 2.917229 -0.605313 1.507382 -1.605286 2.129382 2.275471 -0.494079 5.593096 1.243513 -2.838769 -0.910481 -2.614068 4.929405 -1.567242 1.873168 -2.165882 -3.999344 -0.324655 -0.420923 0.297793 -3.215975 -1.421433 3.164896 1.022914 -2.712703 2.374032 -0.476441 0.717479 -4.849690 -4.384484 0.782275 -1.739216 3.401644 -0.681694 -0.374838 -0.578204 0.709026 -0.042903 -5.453745 0.080028 3.823962 -3.971208 -0.271622 -2.435463 1.356141 -0.456264 2.548960 -2.494558 -2.765635 0.940018 -0.127354 0.654746 -3.000122 3.447403 -2.170681 0.519215 -0.105427 1.565861 3.564082 2.519586 1.861772 3.871058 3.742085 -2.059089 -0.396169 -3.126039 2.066432 -2.036845 0.041002 -0.343370 2.175515 2.455237 0.783661 4.432051 -5.296406 1.061372 1.455109 -1.491373 -2.963598 0.042549 -4.131981 -3.867457 -1.239175 2.550803 0.909709 0.210444 -3.135454 1.282072 -0.464249 -2.786314 -1.058227 -0.251495 1.942611 -5.397095 -0.974375 -0.739340 -0.739690 -1.483370 3.806355 2.272656 2.725718 4.394426 2.683494 -2.281061 1.016117 -4.704327 0.942826 5.551075 -0.414857 -4.385819 3.133114 -4.002318 0.110114 2.709758 2.568931 2.717413 0.486951 -2.039300 -0.986439 1.220582 0.655621 5.430791 1.172949 2.056406 -2.162423 2.984541 -1.860737 -3.069642 5.611164 2.014644 -5.136412 1.355666 1.456232 -1.580992 0.129815 1.908237 -4.141035 -1.152826 -3.773549 0.214150 2.576836 -3.018628 -0.042345 2.237705 -4.436852 5.245986 0.120502 -0.086461 1.074922 -4.015260 -1.373913 6.109095 0.955225 -0.103571 -2.155470 -2.280533 -3.062510 -4.776533 0.796673 -0.592133 -1.230247 -1.612238 -4.235538 0.153455 3.760832 -0.006184 2.802946 -5.860272 0.029553 1.786034 0.048230 2.395914 -2.903333 -2.645472 -0.854743 -1.938521 2.455130 -3.994510 2.819587 4.889479 -2.056117 3.385500 0.724675 -2.201258 -0.004699 1.484410 -4.369182 4.400078 -0.705167 2.317335 0.009977 2.935967 -3.309773 -1.009664 -0.903884 0.612024 -1.960071 2.131232 -2.347652 0.079373 0.321400 -3.588565 -2.407773 0.258221 -0.483852 0.477253 0.502031 -1.567387 -4.285595 -0.445058 -2.702919 1.015060 3.379539 -1.070401 -3.152074 1.683595 -0.628613 -0.849460 -0.193612 0.252632 -0.146592 3.252537 -4.141883 -1.739647 0.951019 1.470472 -2.961999 -4.794314 -1.244604 -2.165124 -2.279625 3.476617 -3.987153 -0.708622 -3.003003 -0.897644 -4.911418 -1.693551 1.293134 6.037344 1.301098 -3.243554 1.303203 -0.004761 3.379269 0.603778 1.044138 -0.018099 1.308718 +-5.066901 3.149811 3.394196 -1.521588 7.929270 0.785146 2.503925 4.554582 -3.235109 4.799389 -7.340807 -3.094566 -2.941244 -5.612692 -0.045720 -4.718265 1.853008 -0.071843 -2.241432 1.084416 3.065228 -2.385924 -0.323005 -3.631075 -0.447644 -5.558958 -3.038977 -0.146364 6.077596 -0.678821 -0.238984 0.246225 10.115359 0.725726 8.408095 5.098868 2.974147 5.697903 0.052939 -1.921872 -1.421700 6.273977 -4.429426 -5.252520 -1.075664 -5.495607 -3.843633 -1.300152 2.092280 -2.684185 -2.162753 4.354040 -0.652771 2.386388 -2.613804 3.060449 4.908263 0.547794 8.486023 1.708245 -4.142325 -1.203831 -4.765096 5.206268 -2.183901 2.894781 -2.798167 -5.191417 0.054993 -0.946327 -1.961413 -3.548614 -2.108675 4.867686 2.838726 -4.353957 3.326784 -1.042500 -5.492997 -5.888588 -5.279266 1.198136 -0.511999 5.511838 -0.810189 -0.534484 1.499136 1.098699 0.390388 -8.457109 -0.670309 7.183853 -5.277038 -1.226157 -3.055839 3.228688 -0.460657 4.363185 -3.868846 -4.007574 1.529906 0.290179 0.482770 -6.067728 1.762609 -5.546666 1.333993 -0.162402 0.347425 5.379439 2.631147 3.714141 5.561571 6.147687 -6.301124 0.750613 -5.066102 2.589700 -4.274641 -0.042681 0.016478 2.535177 1.244141 2.079113 6.387885 -7.963240 2.409222 3.097205 -2.344071 -6.089673 -0.231716 -7.144591 -6.306111 -1.391983 2.996272 2.227938 0.935803 -5.026166 0.646758 -1.390414 -1.911557 -2.334749 0.453279 3.898599 -7.437015 -1.721608 -0.680182 -0.401350 -3.419786 5.797117 3.169993 3.030481 6.885007 3.715057 -3.537656 2.952093 -5.949188 0.699969 9.136721 0.000661 -6.771182 4.485230 -5.543318 0.092097 3.856338 2.712128 4.193710 1.683678 -5.391932 -2.850100 1.609232 -0.623054 7.933230 3.005661 2.373058 -4.036986 7.684531 -3.265705 -5.355978 8.519044 3.891132 -7.924078 2.723669 2.480775 -5.163644 -0.634462 3.228512 -5.917719 -0.848331 -5.805987 -0.267904 2.562365 -4.074630 -0.700122 2.580168 -7.383369 8.545741 0.787754 1.390235 1.287247 -5.625828 -7.042073 9.646249 0.695716 -0.577692 -3.215360 -2.437426 -4.928376 -7.408810 1.058305 -0.619484 -3.415602 -2.770928 -6.407912 1.513855 4.868375 -1.374514 5.277642 -7.520495 -1.683910 2.056052 1.224704 4.172032 -3.355291 -4.510677 -2.135141 -2.627156 4.197806 -5.343830 5.397529 8.333419 -2.556932 6.685470 -1.773930 -6.378413 0.121444 2.938232 -6.343839 6.304024 -1.612256 4.738902 -0.140589 5.105011 -5.213420 -2.179588 -0.293108 -1.663880 -2.645460 3.737332 -3.805978 0.469703 0.568317 -5.810566 -2.938491 1.260695 -1.486118 1.104709 0.106218 0.119258 -7.091430 0.028634 -3.229850 0.888243 5.262049 -0.384912 -5.545952 1.597876 -0.636561 -0.817604 -1.367181 0.205869 -0.742048 4.491055 -6.053702 -2.598089 1.067190 0.387781 -4.685485 -8.194520 -1.107264 -5.518270 -4.481762 4.805760 -5.975719 0.577216 -4.598837 -1.920940 -7.068591 -4.336606 2.776948 9.200119 2.642544 -4.988978 1.842884 -0.207551 5.967121 0.879687 2.032017 0.356864 2.560594 +-7.302081 4.349273 5.846096 -2.436595 11.009666 1.201547 2.733628 6.260667 -4.768950 7.586957 -10.489837 -3.063424 -4.129160 -5.991365 -0.154368 -5.437909 2.713801 -0.854368 -2.764577 2.444310 4.156798 -3.703119 -0.891200 -4.630961 -1.002635 -7.315294 -4.772681 0.335387 9.175706 -2.904393 -2.212761 0.907016 14.898082 0.750369 11.938541 8.304423 4.748749 8.953307 1.229354 -5.068276 -1.948341 9.009607 -6.798626 -5.592347 -1.103383 -8.067349 -5.323767 -1.891083 3.062763 -1.729416 -1.357263 6.998957 -1.384783 3.347254 -4.845102 5.566497 6.032276 0.607429 13.130077 2.426255 -4.959903 -1.182583 -7.014669 7.326751 -3.413283 4.144496 -5.425342 -6.903192 1.293404 -1.839123 0.621151 -8.336233 -3.586765 7.399960 2.224068 -6.885408 4.905979 -1.850397 -5.655776 -11.052804 -8.638535 2.125559 -0.215678 8.014942 -1.248160 -0.646728 -1.245552 2.611226 -0.228677 -12.601577 -0.313079 9.856967 -8.036113 -1.603090 -4.355278 5.724964 -0.759599 5.927947 -6.195399 -5.432136 2.622749 -0.504930 1.000137 -9.264648 6.268192 -7.298447 1.454495 -0.333678 0.916096 6.185557 4.135976 6.343254 10.387996 9.139239 -7.513139 -0.336696 -8.017428 3.180532 -4.254672 -1.037639 0.410563 4.801822 0.388127 2.975068 10.211660 -12.121143 2.779022 3.434661 -4.798676 -8.883460 -0.651056 -10.047319 -9.295859 -2.752904 4.597571 3.731244 1.288413 -7.382035 1.474044 -2.380780 -2.246727 -3.856947 1.492044 7.184698 -10.547566 -2.514989 -0.972676 -0.945436 -4.602732 8.878894 5.310862 5.161577 10.803481 5.682415 -4.484117 3.206029 -9.735954 0.280716 11.306055 1.646471 -10.215156 7.588143 -7.821699 -0.541394 5.819619 5.774543 6.281640 0.663158 -7.934631 -5.287880 3.147946 -0.404730 11.969236 2.279431 3.558775 -2.915299 10.976841 -5.111813 -8.475885 11.231446 4.846451 -9.911318 2.145661 3.603628 -3.692468 -1.364491 5.875971 -9.207886 -1.352399 -6.963055 -1.058497 4.147835 -5.528272 -0.267713 3.816223 -10.619401 12.768539 0.645989 1.425174 2.310838 -8.840127 -9.861457 13.185766 -0.281051 -0.580575 -4.494029 -4.047895 -5.361972 -10.854242 1.577629 -0.671597 -4.196758 -4.259948 -9.813997 2.567785 6.374644 -1.669283 7.374082 -11.294506 -3.305187 3.803558 0.574460 6.345051 -3.851056 -6.329340 -2.096810 -3.249128 6.077222 -8.317129 9.325967 12.681170 -3.816982 8.184842 -2.000537 -6.203567 0.432354 4.091524 -10.488667 10.127114 -1.857685 7.277888 -0.008835 6.659459 -7.953035 -3.763893 0.059216 -0.056422 -3.899663 4.563229 -4.937782 0.724193 -0.769353 -7.900911 -3.907836 1.242212 -1.870644 -1.414331 0.699015 0.483777 -8.881268 -1.154208 -5.553654 1.710951 7.480382 -0.736976 -6.649600 3.590627 -1.115918 -0.645599 1.706414 -0.085407 -0.647311 6.767805 -9.266837 -4.486938 1.065901 1.266543 -6.426202 -12.854576 -2.072119 -7.070273 -6.012308 7.364174 -9.051524 -0.407914 -7.148050 -2.910422 -9.977970 -4.533181 4.764535 13.602647 5.004546 -8.639115 1.937337 -1.018575 8.699708 0.866352 2.262774 0.030450 3.040426 +-18.699190 20.844963 16.981486 -10.558762 25.889435 4.965255 11.089213 10.655507 -8.595725 20.099625 -31.012383 -8.612082 -8.262833 -22.892941 -1.461810 -20.492196 1.116305 0.912057 -4.415154 7.593267 11.916325 -14.512636 -1.556075 -15.905127 -3.042269 -26.290803 -10.217947 -1.011005 17.615122 0.432195 6.762519 0.043947 32.919340 7.509444 29.148729 21.755306 5.583676 26.690063 2.119818 8.659534 -6.070899 21.251568 -15.333989 -23.137321 0.492407 -19.279834 -13.012204 -14.125608 4.068921 -16.715001 4.308545 18.677073 -2.634733 4.286230 -14.698972 8.364419 22.053896 3.016846 31.244405 7.788589 -12.988501 -0.258518 -18.948976 11.262376 -8.346212 9.678895 2.398397 -17.549611 6.328336 -2.575819 1.130903 -11.029003 -9.186391 17.020690 8.540007 -18.052487 8.664783 -8.976904 -40.132541 -19.222111 -15.505099 6.365857 6.650051 22.883598 -0.072908 -1.403546 1.129593 5.878630 1.105239 -30.817952 -4.778829 29.750471 -12.806993 -3.932632 -14.118692 20.640423 0.832054 13.158665 -14.531823 -8.431297 8.261263 4.660555 2.705225 -18.286596 -12.247507 -28.402637 12.327578 4.119358 -8.048033 10.830508 11.096400 12.895588 20.077136 22.313552 -28.625820 14.045810 -22.109170 8.612086 -2.843607 -0.083390 1.710038 5.710863 -4.607784 4.860035 21.471841 -27.820586 12.082021 12.379814 -12.717737 -26.832367 -1.357226 -25.286518 -21.798149 -5.467132 8.772963 11.233163 4.472260 -15.221029 -4.015047 -8.614875 -3.969258 -19.821751 4.612815 26.696849 -22.361737 -4.710934 -2.531920 -1.902053 -15.716885 20.155913 11.653690 9.305867 28.142246 14.074095 -6.081473 6.284174 -19.169216 -0.991559 35.261501 15.410049 -25.600078 17.126927 -13.590557 0.239024 11.363634 8.337976 14.737738 3.915410 -28.208762 -16.743086 5.975795 -8.767599 28.698332 15.942956 8.791329 -13.416296 37.487753 -4.308899 -21.647290 30.694801 20.084597 -23.015353 4.055274 11.493660 -22.926123 -5.662836 15.644537 -16.267017 -2.433931 -12.665370 -2.847965 4.252329 -13.109069 -8.247078 2.024846 -28.916264 33.788540 3.794761 16.732487 2.226526 -20.447073 -31.029681 32.205338 -2.098391 -6.134060 -8.996952 -5.980923 -19.368771 -26.124749 5.082409 4.617893 -14.836878 -13.938461 -23.280533 9.266745 15.826369 -10.146664 15.468152 -13.556091 -15.231056 8.570705 0.655902 15.110690 -18.178047 -16.451710 -6.868411 -0.853310 18.253543 -9.067534 26.088766 36.311660 -6.957597 22.427662 0.678283 -11.509683 2.941130 16.362630 -22.561754 24.779801 -10.932330 16.221389 -0.523525 18.762794 -16.486385 -9.170812 2.649677 -4.607434 -5.366339 14.738252 -13.790754 2.188332 1.181016 -24.449802 -5.703003 8.658127 -3.986729 2.577677 -0.445437 7.613569 -22.257867 -1.574799 -15.241168 1.339183 19.982389 2.337501 -19.299566 3.459535 -0.378135 0.114984 -1.190738 2.070895 -0.210011 17.313570 -22.697858 -4.240694 0.534159 -5.870315 -19.802027 -30.463069 1.623017 -24.761003 -23.135027 15.993442 -25.348368 3.829470 -19.032118 -5.609837 -30.556159 -12.281106 6.788898 33.289690 11.664406 -15.097808 5.445059 -2.856597 24.146947 3.187395 5.827913 3.816745 16.386946 +-18.050704 7.360540 3.695382 -12.457696 38.037327 -0.276183 3.817202 22.238535 -3.680920 17.797824 -30.443862 -7.567319 -7.567313 -25.620972 1.867546 -7.183684 9.400592 2.501678 -12.103786 1.266885 11.489360 -3.805820 1.794120 -14.689314 -3.311991 -18.759659 -10.292472 2.620375 14.119951 -3.738543 -6.803057 3.919591 37.415626 2.533702 28.276445 18.158842 17.571292 24.476536 3.692230 -1.951877 4.322537 18.361377 -12.380777 -22.813336 -0.566148 -19.796163 -20.164338 -7.719512 8.757452 -15.596356 4.905597 18.500838 1.533458 3.441197 -14.797424 11.824520 17.661209 -2.192608 30.830434 10.825266 -22.137738 -6.071639 -16.385619 20.067079 -12.853246 15.210797 -5.356813 -21.100682 -6.997220 8.533135 2.903855 -19.039080 -16.257231 8.869792 8.655002 -16.504839 14.946779 -3.001322 0.776537 -23.582145 -17.578464 9.984951 -4.152677 21.936433 -0.643285 -0.270657 -0.342253 0.547183 2.529120 -28.642244 -4.990187 22.521694 -20.083813 -0.625266 -17.273009 11.999829 -4.236687 7.691236 -15.342415 -20.377316 7.808566 1.918846 2.289300 -15.769202 5.849695 -20.259119 11.015539 7.421870 0.497340 14.529979 10.199182 10.437329 16.735956 18.611151 -16.577599 4.710554 -26.948959 9.200283 -10.411539 -1.203843 -6.156683 5.713035 11.448397 8.107588 20.010585 -29.322928 18.336248 14.428780 -14.209913 -18.391115 2.985904 -18.292745 -24.316903 -1.716713 13.491378 5.980336 4.643550 -11.097973 6.819277 -7.920921 -12.307354 -8.023481 -3.711831 14.986699 -26.904074 -4.201074 -1.611211 -3.658101 -11.361957 20.163858 12.262844 8.482508 30.533248 11.074520 -13.955996 7.990801 -26.282632 7.358495 38.755304 5.328978 -25.097978 17.817021 -19.955670 4.363732 12.396676 12.294111 10.998623 1.966459 -16.480255 -5.335812 5.906933 -3.498141 30.631052 6.980595 12.281846 -20.920596 20.076233 -11.213723 -7.809286 35.986551 18.357237 -31.582502 7.276389 19.026348 -10.239843 -3.143293 11.797842 -20.467263 -7.588163 -19.557402 4.621452 11.254340 -19.400122 -8.855956 6.300708 -25.723293 28.796921 2.964971 0.284730 2.871164 -23.257489 -13.593022 39.715305 -0.076007 -0.799164 -5.800240 -12.222403 -12.508257 -32.625631 2.441583 4.869872 -12.907198 -4.457523 -21.648346 2.314136 23.671264 -9.991270 13.588052 -29.380037 -1.557997 12.426020 -0.293301 12.848628 -15.296928 -15.426012 -4.582683 -8.859588 13.517342 -23.581069 14.154177 26.704320 -11.618236 25.488481 1.046410 -13.439078 0.466876 13.969560 -19.461542 29.327370 -3.801480 21.567580 2.640244 21.038682 -18.771823 -5.967413 -6.628328 -4.860966 -12.497873 17.394022 -22.715333 -0.243615 7.702970 -14.979934 -17.513469 9.799079 3.920266 3.190878 -1.838283 -2.390436 -18.250035 -2.228889 -14.039308 9.740754 18.152275 -6.696841 -22.671947 3.705597 10.696360 -9.687137 -1.729911 4.300847 1.635301 25.937048 -23.794148 -0.814301 6.948150 6.025872 -24.717078 -31.187212 0.563412 -17.343559 -11.480682 14.101948 -29.622843 -11.612780 -15.729453 2.926996 -24.516039 -6.450246 9.996887 34.085005 10.304752 -16.371358 8.025432 0.894239 15.307112 0.631834 5.608460 4.286422 10.290230 +-11.976155 13.512302 7.069686 -10.590745 28.956524 -3.568185 8.221301 12.740148 -5.928954 8.453307 -24.503211 0.610403 -0.252627 -20.317427 4.961286 -7.172984 4.122636 7.070725 -4.493061 3.002376 7.863101 -3.877819 -2.057165 -14.806819 -0.989554 -18.813356 -5.121853 0.649082 5.618210 4.352263 -0.092001 6.627599 21.194054 1.623795 14.877427 15.506899 10.564632 16.432639 3.054594 -0.783334 8.086959 9.014876 -5.317170 -20.188606 1.482859 -10.200380 -14.927481 -9.615361 2.801171 -16.762774 1.145033 12.158565 2.806629 -2.050483 -12.423268 8.233434 18.656304 -1.751651 15.562328 11.100315 -13.018749 -2.265678 -9.006303 12.283376 -8.925798 9.133260 1.034984 -17.405219 -4.018909 13.672629 3.589563 -8.603642 -11.859779 -0.130301 4.963190 -9.672571 8.629149 -1.506377 -7.990516 -10.618429 -7.836333 7.405389 -2.139684 16.818907 1.147604 -2.390009 -2.499436 -3.424312 7.251728 -12.649476 -11.204316 18.165634 -7.902402 -1.230939 -13.451525 9.471565 9.765765 -0.419928 -5.270393 -16.980690 7.423742 1.779125 0.921242 -5.580517 -6.085177 -15.290782 5.590495 9.567125 -3.834988 17.146597 -3.336908 10.018110 5.202493 4.920424 -11.867446 5.850552 -20.124845 7.810857 -7.380700 -1.044438 -3.097001 -2.616298 8.594926 5.857551 6.965493 -15.655764 17.599395 12.427057 -6.303649 -9.420997 5.410498 -7.355319 -14.979194 -1.835723 7.756804 7.132354 3.065974 0.852631 2.222376 -6.116291 -3.640933 -11.929957 -6.596788 17.648930 -21.155144 -1.316202 -1.809146 -1.226503 -8.592739 8.317296 5.508060 3.023835 18.493916 8.396626 -7.492209 9.098255 -16.034616 6.723653 29.922845 9.688332 -14.100659 9.029211 -8.720719 1.957084 6.149669 3.544278 1.276875 6.181057 -17.012375 -8.461032 -1.268657 -11.456296 17.681237 12.275771 5.502594 -22.132391 18.528479 -6.740163 -5.639559 24.493906 13.738441 -20.716817 6.069145 20.085633 -15.077883 -6.927657 5.863700 -12.815779 -7.698109 -10.170918 4.071203 4.212394 -15.456608 -11.803492 -1.108613 -16.076713 15.025179 4.905716 1.128014 -4.369872 -8.539647 -12.214837 28.719501 1.730434 -1.198930 -2.123011 -5.491911 -8.779973 -21.531271 1.093362 6.861015 -10.680401 -6.160881 -11.987804 -1.105064 17.689738 -15.748658 3.981856 -16.629806 -0.982868 7.528897 4.846400 4.899981 -18.212598 -10.939276 -2.876245 -2.246395 4.122170 -10.860966 9.731319 18.333161 -7.938244 13.900873 4.403438 -10.571998 2.908298 15.051837 -8.147107 16.787294 -2.978100 19.543861 6.037573 15.053570 -13.728537 -5.905776 -4.077771 -9.250993 -10.521606 15.049067 -18.834974 1.364248 11.375534 -6.235358 -13.348026 13.507352 7.637797 7.494031 -5.884588 0.181397 -8.882568 0.855088 -7.846553 4.790611 11.740938 -6.051378 -17.522475 -1.976588 13.815517 -11.513180 -9.444995 5.658247 3.066711 17.809821 -14.221625 10.454787 3.898190 2.178756 -22.168482 -20.866044 8.147525 -14.878649 -12.510585 5.703063 -22.965159 -9.395488 -9.299853 7.434353 -20.846224 -9.359467 5.407020 18.743979 1.051262 -4.181647 7.305644 0.027661 8.096236 -0.704322 5.536791 0.050313 10.142614 +-8.833421 5.381389 5.381866 -3.710206 11.602798 -0.776015 5.782961 2.440418 -1.504726 8.616602 -13.018408 -7.400960 -5.387348 -10.372807 -0.112081 -8.092902 3.008616 0.676072 -2.720748 2.549710 5.610647 -5.654812 -0.862440 -6.325539 -0.990148 -10.460643 -5.187130 0.487576 8.930167 -4.124588 0.855565 1.627972 17.077259 2.438568 15.177235 10.300179 3.158666 12.122699 0.367505 -0.705992 -2.195507 10.718542 -7.020149 -9.959975 -1.133160 -7.431509 -6.396833 -5.736255 3.496360 -3.621740 1.044727 8.754577 -1.366258 3.302712 -7.492840 4.434002 9.613462 2.635711 15.095151 3.544608 -4.598029 3.251937 -8.670106 6.842392 -5.091016 3.504604 -2.686024 -8.440608 1.564936 -1.337708 -0.594841 -6.846426 -5.321601 7.569415 4.713085 -8.489138 4.760180 -2.505748 -11.688146 -11.932323 -10.156890 2.588359 1.827232 10.540629 -0.818713 -0.758183 1.587485 2.492799 0.437150 -14.256906 -1.201195 11.298420 -8.130787 -2.740557 -2.106076 8.649960 -0.460518 5.814597 -7.525626 -6.263886 2.956055 -1.319563 1.592106 -5.256534 0.366672 -9.255268 3.099591 0.584230 -1.586832 5.153282 8.550163 5.546125 10.088457 9.852182 -11.250649 2.209019 -10.091572 4.571777 -3.094513 -0.856114 1.178445 4.420218 -0.339970 2.176294 10.900642 -13.972883 4.438586 5.090094 -4.549736 -10.504412 -0.887692 -11.082296 -10.652769 -3.422321 5.726923 4.648787 1.958805 -7.364161 0.242025 -2.444730 -0.763564 -2.934893 1.631206 9.377012 -9.830221 -2.286576 -1.567763 -2.205534 -6.567412 9.294151 5.192915 5.482636 13.100978 7.097768 -5.622922 1.965460 -10.771971 -0.137827 15.274873 0.832739 -11.586067 8.466946 -8.009409 0.203496 6.320938 6.435492 7.591060 -1.575495 -9.797549 -4.638595 3.677785 -2.116256 13.759788 2.262839 3.731693 -5.309453 14.109641 -0.973786 -9.445281 15.325044 7.148336 -12.649371 3.201045 5.303979 -9.211001 -3.174386 7.457166 -8.545348 -1.132338 -8.990684 0.762435 3.189410 -6.551459 -0.942449 2.806195 -12.988101 14.002092 0.970242 3.373944 3.330159 -10.182645 -12.898765 16.505744 -0.800205 -0.962062 -5.278836 -4.793342 -6.039808 -13.133290 2.336161 -0.995608 -5.565060 -4.521720 -11.083843 4.504216 9.234386 -3.124824 8.612754 -7.458245 -4.318614 4.394184 2.011125 6.384580 -4.308198 -7.671136 -0.785668 -1.887616 6.182272 -6.428221 9.717040 15.374915 -4.742602 8.429019 -1.050754 -7.736170 1.741716 6.158826 -11.816171 12.056124 -3.759967 6.747156 -0.283579 8.042045 -8.517832 -4.550256 1.179432 -1.235841 -4.617471 5.178179 -6.338746 0.974941 0.410226 -10.038376 -4.609984 2.715579 -1.332992 0.828980 0.523835 1.747735 -10.904225 0.399329 -6.259604 2.178848 9.218584 2.412643 -8.226547 3.431508 0.484476 0.239505 -0.307513 0.456773 -1.092347 8.855598 -10.869394 -3.591797 0.874818 0.641804 -6.712471 -15.510415 0.370613 -11.537967 -7.520920 8.510151 -10.762178 1.097007 -8.600713 -2.057533 -12.146610 -4.062796 3.825827 15.717327 6.395311 -8.329764 2.747094 -1.094489 9.896368 0.857250 1.327298 1.682702 6.409782 +-140.838019 95.569510 39.638721 -105.880029 314.872906 -2.820811 37.427856 155.088124 -16.338535 116.838903 -261.429760 -56.129428 -41.382337 -213.034330 38.451703 -40.867905 53.413897 52.067313 -86.114292 -2.968517 98.152296 -36.441113 7.323347 -145.764383 -8.502539 -152.198388 -80.408608 8.500199 74.505748 31.152943 -52.131697 47.030003 248.400170 28.402765 169.858255 138.981857 134.286192 207.311139 15.312657 29.458687 66.551701 130.459840 -78.755287 -225.411657 46.857138 -158.953496 -150.987153 -94.309088 53.467910 -173.801013 80.262825 141.875040 23.185410 -17.081467 -120.218457 73.290204 178.396216 4.374475 208.615434 111.830670 -163.263773 -40.942556 -120.839026 125.060524 -106.448574 152.304484 6.034043 -204.136746 -84.191258 111.702933 60.938359 -126.944134 -152.906593 25.174615 52.071826 -101.883450 113.034956 -18.044032 -4.619872 -132.441994 -134.634226 72.384750 -47.105062 184.121550 -6.033941 -22.892070 -24.703844 -28.433682 63.724714 -174.132307 -94.517806 183.615861 -112.607236 33.726933 -139.310946 64.281426 13.566213 25.645955 -99.450882 -152.568044 69.483928 45.575049 16.566700 -61.023006 -33.918757 -170.779058 124.168082 101.695661 -20.869836 118.080745 56.179831 69.399740 69.146114 94.261897 -128.599563 57.795421 -208.221790 67.364962 -52.822160 2.255917 -46.417239 11.070511 89.642916 28.640834 108.188822 -197.862362 182.101038 120.938436 -111.971201 -109.159922 51.825822 -110.696389 -184.222732 -8.105145 103.406248 57.432491 17.389066 -27.452508 31.536238 -77.016376 -103.674842 -94.685725 -71.549507 148.125135 -211.743452 -27.244343 -26.748897 -47.400965 -86.094415 119.313895 69.338269 49.635732 213.262441 97.718494 -98.666863 50.936136 -184.937223 93.216458 332.351238 77.867419 -190.502581 98.462034 -116.244259 59.387614 95.046190 45.842589 48.617683 65.852449 -119.053213 -36.216560 -9.176597 -77.513069 216.527151 127.423003 110.854195 -225.002609 154.348407 -75.944265 -42.781357 292.702351 149.690972 -240.244332 49.009036 191.745560 -127.646339 -36.905285 60.264364 -125.701017 -66.359434 -140.116475 47.318109 75.505121 -181.112072 -128.832908 16.059094 -196.898901 207.659275 41.990212 29.913028 -7.253213 -161.178816 -93.613923 320.098073 14.367623 -18.919569 -31.518403 -75.589394 -99.850791 -245.354074 26.652691 74.768207 -111.759622 -70.200350 -149.015841 2.363511 210.724870 -126.361086 58.089285 -181.250142 -3.387602 83.939624 -5.146928 93.768510 -176.052225 -127.500435 -36.960269 -53.121794 96.234778 -136.633293 81.305392 201.023545 -104.527093 176.956212 72.459078 -74.729721 3.918288 146.848150 -88.030476 200.020731 -44.983994 188.425151 23.823012 183.471936 -139.680162 -41.546499 -47.684597 -52.226032 -98.189942 171.240220 -196.305493 4.038519 106.354700 -109.423225 -138.077256 126.714969 59.990036 85.248618 -42.268334 -21.868228 -111.526736 -1.985949 -69.157439 59.506848 146.075539 -62.662792 -198.158700 -25.017185 103.233913 -118.121261 -76.401023 68.199649 13.386945 219.954661 -171.152338 64.515618 52.715805 11.112271 -229.281167 -202.052965 22.330155 -134.210804 -105.747604 115.519964 -248.904247 -93.799914 -113.575349 65.167185 -189.930727 -58.096127 30.913938 224.824331 60.654075 -70.162844 93.440894 24.924143 110.191243 3.017854 27.152822 27.805367 105.264738 +-7.569795 4.031464 8.127582 -2.534335 10.233211 -0.920774 3.644746 4.412656 -3.490411 7.070002 -9.844681 -5.028380 -4.944610 -5.510051 0.320730 -6.705702 4.412625 -0.850101 -2.738567 1.835803 3.791828 -2.751102 -1.636512 -3.692329 -1.247159 -7.388286 -5.606881 0.685173 8.825318 -3.485052 0.173634 0.747886 16.164704 -0.758705 13.102885 8.686749 3.517079 7.383326 0.725701 -7.701992 -2.600885 9.833227 -6.974192 -4.808489 -2.703105 -6.697979 -5.470600 -2.096957 3.118808 -1.454794 -6.729420 6.439018 -1.030212 3.903837 -4.490891 7.117113 6.336749 1.277926 13.443382 1.882948 -3.044805 0.179179 -5.814423 5.985130 -3.829839 1.663762 -8.328670 -6.452073 1.218066 -2.072661 -3.068920 -6.205337 -4.015540 6.932697 1.134508 -7.783216 5.048407 -0.801509 -4.260721 -11.054713 -7.693724 1.900451 -0.617630 7.261318 -2.025282 -1.589319 1.688872 2.546398 -0.835680 -11.963428 0.492624 8.133340 -7.567079 -4.131096 -0.120564 4.909358 0.033834 5.575276 -6.005897 -6.160613 1.680282 -3.025203 2.280868 -7.732562 8.292889 -5.059791 -1.419329 -0.681629 2.197594 7.452675 5.075504 7.841674 10.634652 8.642113 -10.045883 -1.185235 -8.078779 3.994681 -6.743340 -1.606264 1.023883 5.341420 0.404035 4.250694 9.617755 -12.341524 2.503393 2.681437 -3.684926 -7.189445 -0.401816 -9.404129 -9.538080 -3.148323 3.949065 2.974505 0.841484 -7.893131 2.577782 -2.597645 -0.003873 -1.397695 1.687608 5.186177 -11.336509 -2.266680 -2.039865 0.189515 -3.447366 8.604395 3.939732 4.429192 10.176405 5.880392 -5.284771 3.587642 -10.469624 -0.986622 9.375370 -2.133192 -9.346655 8.094326 -7.788723 -0.688327 6.601512 6.603841 5.346274 1.478825 -6.837022 -4.952459 3.315624 0.252889 11.057366 1.671125 3.448960 -5.543981 9.741038 -6.002123 -8.101849 10.748091 4.289833 -9.888589 2.523864 2.622935 -5.383897 -1.086359 4.980767 -9.133192 -2.184058 -7.981067 -1.714505 4.143023 -4.313918 0.607126 3.746691 -10.040080 10.294510 0.370576 -1.092250 3.940469 -8.819974 -11.290083 11.539988 0.551909 0.089850 -3.502857 -4.144807 -3.791299 -11.038070 1.745582 -1.808177 -4.986726 -4.271654 -10.390506 4.270541 4.798005 -0.297618 8.010884 -11.967480 -1.906387 4.823891 2.480122 5.404733 -1.854989 -6.072740 -2.125291 -4.606993 4.946505 -8.267920 9.409940 12.125881 -2.923908 7.844713 -4.567046 -10.251376 1.002577 3.507236 -11.400740 9.611866 -1.543061 8.070346 0.141833 6.468336 -6.173563 -3.400371 -0.129609 -3.313040 -5.001028 4.311684 -5.461920 0.598868 -0.226029 -7.591850 -4.225304 1.177416 -3.126061 -1.625492 1.281907 1.105763 -11.136989 -0.300671 -3.645047 2.205749 7.654122 1.699310 -7.435647 3.883147 -1.083142 -0.253020 -2.766167 -1.902344 -2.637272 4.786834 -8.281198 -5.379590 1.347233 2.720061 -4.612323 -12.184126 -1.650018 -8.062484 -5.750896 6.423029 -6.156495 -0.017876 -5.407537 -3.739177 -7.809199 -6.695689 5.208277 12.460136 4.943081 -9.130353 1.345331 -1.040097 7.356865 0.695762 0.581311 0.082432 2.155600 +-9.234027 8.807010 6.801524 -5.510908 15.711060 1.801361 5.106999 6.887333 -6.517230 9.838917 -14.951854 -2.787511 -3.566180 -12.168228 0.039877 -8.574786 1.369130 0.153762 -2.835259 3.065082 5.449193 -6.279706 -0.308735 -7.204812 -1.831862 -12.598674 -4.667577 0.507211 10.741041 -1.393928 1.680950 0.166384 16.631348 0.684818 13.898280 10.202734 5.592087 11.350752 1.009606 -1.687577 -1.436282 9.858597 -7.432831 -10.630840 -1.176813 -9.001848 -8.513824 -4.597366 3.371886 -7.423192 -2.542895 9.479019 -1.063936 1.579228 -7.122105 7.267282 10.663945 -1.122135 15.769387 3.682269 -7.380042 -3.050131 -9.159941 9.235364 -4.647006 5.061203 -2.621984 -9.183803 1.267267 0.730669 -3.736163 -5.555061 -4.195104 8.075368 5.244084 -9.467896 4.615782 -3.949580 -14.091428 -10.626722 -7.478757 3.683303 1.800636 11.188131 0.299544 -0.265287 3.334461 2.563083 0.323893 -15.516370 -2.065180 14.446082 -8.028927 -3.299080 -6.809045 9.088524 0.533915 5.402561 -7.070101 -6.515821 3.688773 1.425081 1.552322 -12.591384 -0.355752 -13.520055 3.257916 1.527398 -1.383884 8.131160 4.601504 5.988382 9.130673 10.955884 -12.841916 3.718431 -11.785235 3.964044 -3.716112 -0.026269 -0.905228 3.023371 1.286704 4.008547 11.120433 -14.930956 6.771650 5.676380 -5.420361 -12.665223 -0.364563 -11.148266 -10.750313 -1.744368 4.710259 4.080757 2.136373 -6.930788 0.799868 -2.814321 -3.758350 -7.101573 1.748766 11.657629 -13.932695 -1.834202 -0.970197 -0.368853 -6.809719 10.213163 6.804528 4.945453 14.757831 7.023578 -3.854498 7.761124 -10.973309 1.242393 17.587420 4.801324 -12.529719 9.128470 -10.174279 -0.162961 5.353019 4.954453 6.849091 3.490978 -13.420443 -7.189241 5.709337 -3.067520 14.467860 4.985216 4.082384 -8.217519 16.480006 -3.683163 -8.764220 15.724337 9.220618 -14.396205 5.746930 6.952083 -9.860227 -2.024313 7.772683 -10.730807 -2.463482 -7.786368 -0.786704 4.004352 -7.531996 -3.589825 1.272033 -13.468287 16.155274 1.558996 4.050756 1.834434 -9.249653 -13.561031 16.261944 0.178321 -1.933194 -5.222976 -4.160167 -10.505624 -13.864748 2.030369 2.180194 -7.804334 -6.106561 -11.854268 2.511735 8.921209 -4.277728 8.571073 -12.988866 -4.117315 5.109391 3.880780 7.540607 -6.571480 -7.655674 -3.086173 -2.580589 7.181163 -8.275056 11.874832 15.980243 -4.706560 13.457216 -3.424226 -9.831764 1.696923 7.139490 -11.369069 13.338093 -2.139181 10.070993 0.539679 9.374244 -9.428950 -3.351576 -0.097067 -4.555833 -3.626598 6.772397 -8.362054 0.206370 1.462608 -10.381765 -5.827032 3.891968 -0.505451 1.617798 -0.276155 1.782711 -9.896050 -1.599882 -7.556038 1.752683 9.360485 -1.518740 -9.814972 2.463700 1.571478 -1.150128 -1.125677 1.206644 0.727289 9.143807 -11.812491 -1.598111 0.837864 -0.234847 -11.434576 -15.727864 0.526165 -10.773118 -9.288955 7.367470 -13.244301 0.107230 -8.993291 -1.995025 -15.310129 -6.719901 4.544275 17.232259 4.254345 -7.759249 3.531309 -1.231088 10.369119 0.947689 3.761826 1.743584 5.724487 +-30.644482 20.004191 -0.711721 -24.606087 72.353978 -5.023485 4.470030 36.169811 4.404349 26.228989 -56.587545 -10.788666 -6.252637 -48.471677 9.893140 -0.819759 11.464335 18.205624 -19.183580 -4.758558 21.772141 -4.761137 2.267608 -32.023506 -2.308050 -33.082313 -16.033412 3.174057 9.224163 8.061543 -16.588188 13.056817 52.194126 5.144450 34.094886 31.228399 30.020701 46.223430 6.411803 14.686531 20.366815 24.951082 -14.219725 -52.952302 13.542937 -32.687115 -33.781542 -23.692216 12.264822 -42.510428 30.558408 30.315415 7.048611 -6.344483 -27.928408 14.721013 37.816756 3.089527 43.732066 26.424024 -38.258554 -6.077312 -24.351629 30.403559 -26.358942 33.852560 6.647804 -49.084952 -21.939814 31.381363 19.882996 -29.443949 -35.995671 0.287073 8.617777 -21.540133 24.137406 -2.898803 9.164952 -25.202443 -28.774327 16.902374 -13.268597 39.903420 -0.863627 -4.958752 -12.824174 -8.536062 16.108411 -33.641151 -24.013340 39.140644 -21.913460 14.343967 -30.753721 11.181753 8.182902 -0.324960 -17.586927 -33.472230 14.839428 11.104545 4.715096 -3.315233 -12.330028 -34.248896 31.016878 24.866228 -6.250271 22.989597 10.415695 12.219812 9.931750 16.103516 -21.239938 13.582776 -49.183483 16.129995 -8.523036 0.881578 -11.305493 -1.119846 23.886579 3.489442 20.112095 -40.421868 43.887235 24.942371 -23.164764 -21.233113 14.266121 -17.091806 -38.348222 -1.088077 23.656369 11.430179 2.332959 -0.578872 7.787060 -16.766679 -26.982186 -21.178068 -19.208070 31.849016 -42.529303 -3.702132 -6.649365 -12.370427 -17.340206 21.657244 13.613005 10.223539 47.279401 22.289035 -19.173062 6.402090 -42.290289 22.475666 73.273806 19.829509 -39.962517 19.735975 -21.824680 14.417820 20.303176 9.636442 6.261245 17.093380 -20.613872 -3.791749 -7.209558 -17.980277 45.423327 28.685462 24.873015 -50.475929 26.930770 -12.710974 -3.681220 67.194888 34.227683 -53.994159 10.775754 46.426191 -25.455619 -8.716130 11.990936 -23.960726 -15.704170 -28.908338 13.867825 17.433525 -42.712322 -31.870513 1.964335 -40.593569 42.055191 8.623020 4.533165 -2.024168 -37.250967 -8.396137 70.969060 4.531801 -2.958516 -3.349234 -17.800713 -21.511835 -54.208768 4.943973 20.739157 -24.757404 -14.172450 -30.166331 -1.969394 50.300580 -30.120115 8.603473 -34.650575 1.957382 19.767772 -2.799244 17.276645 -43.423676 -25.674532 -6.931515 -8.641792 19.553673 -27.014209 12.662408 41.624654 -23.789114 35.294569 26.335628 -7.904615 1.578165 34.290483 -16.148552 43.190176 -9.003472 37.354805 7.898439 38.864230 -28.101860 -7.294140 -12.813144 -7.507978 -22.196897 39.020178 -45.803750 -0.493300 28.645550 -22.120351 -30.280528 30.196557 19.905546 22.862226 -10.505604 -7.313454 -20.935216 -0.772371 -15.888890 13.208350 30.485430 -13.693704 -44.442881 -6.171631 26.729907 -31.829798 -18.919981 16.593229 5.080039 50.498102 -36.645776 20.694356 13.391463 2.809191 -53.757655 -39.748634 5.312004 -26.150806 -22.360159 21.331913 -57.245449 -27.798078 -22.217257 20.669477 -42.053368 -9.128548 2.998307 46.887614 13.121032 -8.853874 22.723037 6.264312 20.401119 0.138894 3.298253 6.377189 26.663415 +-26.681811 34.154325 24.381502 -20.358923 40.548291 2.671464 18.007535 16.689167 -12.279687 25.080528 -48.004849 -7.860500 -8.373611 -37.883728 0.885824 -30.330545 0.914411 7.620591 -5.893885 13.307560 18.283635 -19.562699 -2.808572 -26.934998 -4.235719 -38.930812 -12.231760 -1.176677 19.052321 6.033298 14.466150 2.736749 45.075646 9.961519 38.236323 32.631161 9.798599 40.372664 4.369207 14.458263 -2.564361 27.752955 -18.075142 -38.619428 3.150202 -24.955665 -21.238216 -23.623215 4.671211 -32.433383 6.183699 27.014789 -0.320584 0.576428 -24.180973 12.586219 37.467262 2.374774 40.568734 15.202365 -19.669176 -0.370223 -25.201886 14.388198 -14.336299 15.341520 8.614372 -26.286353 6.713945 5.436557 2.674339 -13.649771 -16.761900 16.350383 12.082346 -24.777806 13.162487 -12.716051 -56.042398 -22.887850 -17.273089 10.262869 8.577363 34.079347 0.014659 -2.837634 0.975306 4.313978 5.651763 -37.842552 -13.042649 42.755354 -14.602534 -6.834104 -23.769427 30.740197 8.486224 11.797416 -18.940134 -15.867676 13.809654 7.698094 4.241501 -21.572243 -26.756299 -41.016852 17.229129 12.536865 -15.093644 22.463327 8.629190 21.061338 22.233782 25.092577 -39.964866 24.337115 -37.214811 12.537059 -5.217967 0.554116 1.762291 2.355004 -2.092903 8.451386 23.549622 -36.478983 25.576266 21.176831 -16.820072 -34.167444 3.421996 -29.032849 -30.271301 -7.420442 12.882593 17.148378 6.053958 -13.779556 -5.083198 -12.787871 -3.170604 -33.129095 1.742307 40.473518 -33.657110 -5.143437 -4.398850 -2.700178 -21.112304 23.768368 13.876530 8.405905 40.454462 19.166797 -8.044863 12.904158 -26.575066 1.226715 54.195679 25.913425 -34.383065 21.910514 -15.546783 0.834905 14.134399 8.741115 15.514953 10.861958 -43.385798 -26.515708 5.353262 -19.994179 38.556253 26.325902 10.786400 -30.932904 54.505256 -5.623666 -25.702487 47.357179 31.543419 -33.562501 5.177760 23.464827 -37.270143 -12.715435 19.274775 -20.794629 -7.171304 -15.071509 -1.133219 4.071565 -21.572413 -20.181925 -2.759345 -39.763262 42.906427 6.410655 20.041522 -3.353999 -26.041982 -42.086483 48.426214 -0.953793 -10.404044 -9.756429 -7.770239 -25.361041 -39.844660 7.502291 11.476760 -21.654330 -21.000892 -29.657680 10.661946 24.601291 -22.248570 15.024246 -19.752925 -20.911137 13.721554 4.090372 18.523445 -33.112700 -23.553684 -9.374151 2.077795 22.977272 -9.886598 34.446642 51.653536 -11.121143 31.169264 5.278518 -17.837963 5.945799 29.840430 -28.092198 35.957667 -15.000441 28.949257 1.935726 27.266299 -24.026607 -13.487485 2.186647 -11.836015 -9.312310 23.729507 -24.804586 3.386588 6.572106 -29.903520 -10.102221 19.571479 0.976982 6.634205 -3.650768 12.315324 -27.263150 -2.117665 -19.944043 0.931122 28.639253 0.726887 -31.549363 0.376206 8.260538 -5.227856 -7.435745 5.320249 3.049966 27.977068 -31.536774 5.574918 0.891371 -10.051972 -34.556935 -42.571665 10.442924 -36.013067 -33.693384 18.457239 -38.034408 0.217011 -25.339089 0.561984 -45.055540 -19.185389 8.687400 43.392890 13.005836 -15.798048 9.675644 -3.907025 32.724982 3.872039 8.660127 4.482332 26.668823 +-54.543584 42.519960 31.187420 -35.978198 117.773360 9.411066 17.677989 55.658380 -32.754505 55.303870 -94.224508 -10.991116 -17.832437 -76.046937 10.576314 -26.496672 15.076179 5.683355 -25.157659 7.592986 33.118250 -27.780668 3.581508 -48.072830 -7.360418 -73.095473 -28.989347 5.508036 56.199270 3.676923 -11.214442 7.837974 95.854897 0.515751 64.969768 52.420842 49.493861 69.051835 6.080786 -22.495802 11.834968 53.288467 -38.753405 -71.013790 7.151859 -60.340839 -58.485728 -24.935095 23.540057 -54.388683 -10.219944 56.111459 -0.296020 -4.219209 -44.365048 44.731837 67.501108 -9.849212 88.701727 30.519976 -50.889968 -34.078995 -53.039360 59.558695 -36.398594 44.893941 -20.034495 -71.307058 -17.919624 28.512444 -8.343824 -36.757342 -40.356624 29.595739 27.172098 -48.337542 35.629689 -13.977413 -30.156742 -59.784321 -49.560696 25.010255 -11.673024 70.399054 0.408375 -3.993419 12.388694 1.789219 14.954696 -80.692769 -25.240842 76.479340 -48.291125 -5.146473 -43.900348 36.565131 5.937506 17.414274 -38.285202 -51.158057 22.787723 12.380337 8.591271 -61.708418 12.158463 -74.979675 29.760250 22.472530 4.077769 53.234038 20.461411 30.295390 36.222900 50.768817 -63.467789 9.089841 -72.178683 21.541481 -23.186928 1.294029 -19.654185 15.389730 26.562394 21.473521 58.411832 -87.477702 57.504808 37.439292 -36.532967 -53.629781 9.157311 -50.599308 -65.829339 -3.626589 34.677808 17.125929 7.286833 -23.470286 15.625831 -20.020076 -40.413027 -31.735177 -11.580255 65.591711 -95.765368 -8.712245 -8.267391 -10.906141 -31.501842 53.464293 36.825433 28.453465 82.218360 42.236925 -32.543935 47.527563 -72.558809 31.405511 120.236521 25.133102 -74.989507 47.196490 -61.555468 11.112928 36.113814 22.403305 30.972988 29.162398 -60.530282 -29.202931 19.478659 -19.602222 86.979148 41.370381 35.674578 -74.669570 74.655486 -34.392251 -28.067765 100.658545 51.378478 -93.686028 36.230172 61.887733 -58.726579 -7.867160 29.916768 -61.297538 -19.707850 -55.983578 5.707989 35.484952 -59.773261 -37.305224 4.495445 -76.678976 90.503068 12.840329 12.978775 7.718049 -51.586405 -57.822791 108.917235 6.551145 -7.215061 -27.994945 -30.035795 -58.326879 -90.283052 9.902832 18.350370 -49.475099 -31.521433 -68.422669 -1.720549 69.117097 -33.557666 36.506587 -99.391697 -1.784886 32.203903 19.514229 40.533198 -46.098153 -45.704179 -14.494820 -28.874077 34.625794 -61.284554 50.730818 79.647669 -39.619055 80.313622 -9.921826 -50.415442 7.372988 46.648959 -48.182297 79.428873 -10.165011 76.694569 7.235523 65.687652 -56.910393 -11.567984 -12.373732 -33.780351 -31.226655 53.410465 -67.400104 -2.299108 31.597808 -49.076442 -54.435615 34.778000 12.899397 27.955680 -9.422149 -5.448309 -48.216216 -6.525279 -29.803929 19.411207 54.516706 -25.661657 -67.402513 2.725820 27.298369 -29.116156 -30.792489 19.207110 6.386466 69.233297 -70.365137 10.338533 12.859657 7.177480 -82.460460 -85.810888 3.520261 -51.599079 -46.285448 50.843381 -95.217422 -18.576372 -48.694281 7.424707 -80.368569 -32.210570 19.672083 94.797026 16.298160 -38.706414 34.263334 2.032384 47.196980 0.516134 18.986887 8.058452 28.288479 +-4.389443 1.882040 2.702548 -1.821743 7.848758 0.258939 1.410843 3.683184 -1.898486 4.730874 -6.289906 -2.320234 -2.487701 -4.424173 0.081777 -2.567068 1.684952 0.136453 -2.252485 0.744571 2.524895 -1.617467 -0.027302 -2.675630 -0.738388 -5.034924 -2.955116 0.640968 4.542428 -1.675929 -0.830586 0.667124 8.776960 0.014788 6.813882 4.578608 2.901053 5.304603 -0.038156 -1.869740 -0.073902 4.981018 -3.689923 -3.984116 -0.456391 -4.425779 -4.215635 -1.868451 2.270488 -2.238800 -1.053235 4.233893 -0.509041 1.528229 -2.691475 3.624867 4.136148 -0.188752 7.629488 1.738768 -3.591581 0.269684 -4.412986 4.769246 -2.581056 2.660234 -3.188206 -5.167257 -0.635431 0.109679 0.280878 -3.930698 -2.452801 3.673938 1.996700 -4.047597 2.981753 -0.887193 -1.928219 -7.063745 -5.043033 1.492309 -0.252878 4.768853 -0.693198 -0.343988 0.693153 0.963575 0.004505 -7.179660 -0.601668 5.500036 -4.683312 -0.965347 -2.648893 2.535831 -0.389511 2.729527 -3.493483 -3.993093 1.372365 -0.470312 0.694386 -3.809630 3.440140 -3.663464 0.735036 0.399015 1.080533 3.375496 2.163953 2.890050 4.986833 4.927317 -4.600417 0.458034 -4.808045 2.369926 -2.789947 -0.344990 -0.341160 2.314909 1.733067 1.881304 5.774511 -7.028289 2.434791 2.017955 -2.797361 -4.628373 -0.055428 -5.068683 -5.460454 -1.291800 2.899455 1.654674 0.755096 -3.700088 1.373242 -1.309574 -1.495820 -0.876199 0.096008 3.547320 -6.219100 -1.105609 -0.585160 -0.795459 -2.489277 5.030878 3.185427 2.973012 6.795243 3.331343 -2.934066 1.251569 -6.224668 0.795286 7.690382 0.080200 -5.681456 4.414802 -4.358848 0.228841 3.489980 3.384073 3.293079 0.274670 -3.782387 -2.115177 0.985669 -0.186663 7.338829 1.576762 2.036135 -3.325439 5.311539 -2.556737 -3.686718 7.411000 3.795011 -6.667862 1.904330 2.870532 -3.177146 -1.279831 3.228789 -5.063158 -1.696123 -4.370261 0.350823 2.731528 -3.528059 -0.671973 2.319908 -6.144210 7.091263 0.230917 0.336336 1.940445 -5.068377 -5.673481 7.700338 0.105690 -0.070908 -2.468745 -2.690508 -2.902640 -6.893959 0.871686 -0.269082 -2.677147 -1.925634 -5.634858 1.230452 4.498439 -1.170749 4.255476 -6.956843 -1.018279 2.471160 0.246150 3.426254 -2.499237 -3.497262 -1.131951 -2.499566 2.805582 -4.966653 4.208011 6.875347 -2.651019 4.961940 -0.845898 -4.532013 0.191990 2.545180 -5.652274 6.278651 -0.797037 3.898548 0.200462 4.121842 -4.304426 -1.683407 -0.431255 -0.782067 -2.783503 3.144740 -3.756730 0.137419 0.488150 -4.832446 -3.124416 1.177780 -0.411493 0.271177 0.280682 -0.065604 -5.810121 -0.088778 -2.797145 1.304754 4.322911 -0.513651 -4.475783 2.024651 0.452490 -1.132431 -0.720568 0.252920 -0.124295 4.509148 -5.558879 -1.559854 1.075598 1.356050 -4.425053 -7.129424 -0.748442 -4.802834 -3.748992 4.383046 -5.726390 -0.983161 -4.098230 -0.811515 -5.087607 -2.704815 2.744262 8.218940 2.660971 -4.745155 1.790617 -0.314389 4.555206 0.306197 0.960692 0.299595 2.056449 +-1.722527 0.760353 0.505331 -0.759349 3.385098 0.303415 0.065705 2.404252 -1.166155 1.792536 -2.592140 -0.839197 -0.676820 -1.658287 0.083406 -0.411915 0.350194 0.127645 -1.088963 0.067529 1.121495 -0.317234 -0.240335 -1.193236 -0.288190 -1.034448 -1.007301 0.107275 1.787767 -0.284197 -1.082361 0.249583 3.297688 -0.243393 2.955742 1.698306 1.476490 2.017867 -0.077567 -0.444289 -0.008392 2.039205 -1.557484 -1.572799 -0.266028 -2.054035 -1.542888 -0.796310 0.853042 -0.761933 0.702984 1.592379 -0.158027 0.579162 -0.757197 1.301088 0.842991 -0.080780 2.991385 0.798250 -1.944038 0.268236 -1.707023 3.097753 -1.028985 1.983207 -0.987043 -2.011750 -0.417264 -0.034507 0.645481 -1.806424 -1.055425 1.514811 0.535547 -1.417060 1.448670 -0.475680 0.497104 -2.401098 -2.131324 0.731367 -0.805725 1.861470 -0.431482 -0.234536 -0.371613 0.513135 -0.039854 -2.804437 -0.393269 2.586120 -1.978274 -0.242516 -2.262418 0.444476 -0.164570 1.325801 -1.267802 -1.440211 0.936570 0.400700 0.244285 -1.782816 1.978100 -1.593324 0.736098 0.701294 0.329149 1.656280 0.830477 1.185981 2.251457 2.028802 -0.463664 0.152866 -1.866703 0.734986 -1.175063 0.022736 -0.115542 1.022807 1.343606 0.419302 2.183726 -2.506614 0.885282 0.766891 -1.331717 -1.477615 0.107398 -2.222723 -2.357082 -0.558002 1.072809 0.982422 0.085132 -1.467706 0.467170 -0.502051 -1.613719 -1.025494 -0.018549 0.644431 -2.424942 -0.640740 -0.228051 -0.048725 -1.023785 2.300906 1.268291 1.149007 2.727293 1.361696 -0.935233 -0.132228 -2.349457 0.472398 2.905349 -0.555682 -2.595556 1.648351 -2.099541 0.092333 1.155468 1.278244 0.968844 1.125598 -1.318230 -0.761089 -0.278471 -0.142862 2.918396 1.212251 0.921822 -0.720805 1.845681 -1.051057 -1.784649 3.093882 1.461039 -2.523970 0.166393 1.039923 -0.684645 -0.418109 1.409616 -2.263513 -0.871509 -1.629349 0.133758 1.063877 -1.693808 -0.399480 1.164159 -2.490486 3.088736 0.164255 -0.134281 -0.108279 -2.240169 -0.913522 3.187078 0.182279 -0.312140 -0.931709 -0.840023 -1.587723 -2.487727 0.429988 0.496522 -0.552742 -1.336824 -2.141407 0.430685 1.703045 -0.700997 1.502697 -2.167274 -0.469317 0.879979 0.121531 1.740272 -1.998749 -1.388741 -0.903045 -0.930615 1.589120 -2.154600 1.430762 2.982081 -0.968936 2.184721 0.859564 -1.937944 -0.493845 1.265665 -2.070604 2.440919 -0.137761 0.372990 0.008054 1.717480 -1.727678 -0.784262 -0.519283 0.266291 -0.874630 1.536341 -1.225230 0.155519 -0.344607 -1.957043 -0.793325 0.605179 -0.183517 0.063853 0.072917 -0.845855 -2.308832 -0.346698 -1.489864 0.306989 1.864120 -0.805640 -1.850050 0.740218 -0.295702 -0.846567 0.606681 0.208142 -0.105476 2.090521 -2.154633 -0.622068 0.624930 0.563075 -2.235273 -2.025615 -1.210941 -1.134905 -1.229211 1.793891 -1.864640 -0.897253 -1.614931 -0.333725 -1.994891 -1.704789 1.014125 3.270453 1.182212 -1.755575 0.575547 -0.093590 2.142752 0.666172 0.126944 -0.044528 0.727181 +-0.761151 0.233607 0.023540 -0.534466 1.256320 -0.843979 0.243220 1.155552 0.774015 0.668954 -0.854888 -0.824018 -0.192286 -0.417516 0.263488 0.193034 0.597926 0.371112 -0.793430 -1.323376 0.340340 0.843495 -0.650211 0.014673 -0.134659 -0.226804 -0.721646 0.043389 -0.234491 -0.050843 -0.191454 -0.046136 1.570099 -0.631158 1.323423 0.894566 0.410905 0.261708 0.008460 1.193656 -0.027554 0.837298 -0.535563 -0.257479 -0.300518 -0.232356 -0.193098 -0.232215 0.205914 -0.797833 1.065748 0.407567 0.233433 0.267833 0.238531 0.888895 0.080269 0.110462 1.092093 0.215367 -0.753536 -0.128850 0.171270 1.028747 -0.723217 0.249212 -0.200108 -0.772839 -0.168858 0.049927 0.464014 -0.170490 -0.769881 0.057580 -0.686184 -0.829410 0.507510 0.295772 1.468404 0.151859 -0.172875 0.287481 -0.030783 0.221599 -0.463314 -0.703882 -0.740548 0.024706 -0.222994 -0.266609 -0.122158 0.778222 -0.419909 0.479314 -0.851194 -0.935451 -0.103024 0.167662 0.140022 -0.624825 0.024923 -0.224843 0.681447 0.188739 0.500765 0.327588 0.321340 0.302841 0.001920 0.657306 0.188573 0.983549 0.468439 0.260892 -0.368765 0.621889 -1.434557 0.691890 -0.455840 -0.183720 0.298238 0.190575 0.318490 0.221388 0.449250 -0.652003 0.706309 -0.373776 -0.513837 -0.399256 0.378253 -0.155847 -0.986394 -0.348747 0.099338 0.277882 -0.801030 -0.761503 0.547121 -0.727227 -0.224620 -0.838493 0.084159 -0.796790 -0.682388 -0.185540 -0.752094 0.180639 -0.161694 0.578844 -0.518313 -0.244588 0.990778 0.636290 0.128932 -0.551261 -1.171144 -0.695719 -0.208496 -0.257953 -0.770470 0.657218 -0.716897 0.247306 0.831098 0.667598 -0.535806 1.024801 0.553888 0.295727 -0.396697 0.081837 0.467046 0.530572 0.343849 -0.821017 -0.373327 -1.223058 -0.320662 1.007754 1.198889 -0.768517 -0.425411 -0.070371 0.583161 0.153254 0.259915 -0.324422 -0.807874 -0.380627 -0.255430 0.370103 -0.094899 -0.146792 0.454398 -0.546428 0.730047 -0.182213 -0.618828 0.798579 -1.723323 0.199408 0.346255 0.412954 0.051324 0.449495 -0.181421 0.177929 -0.886809 0.288029 0.613879 -0.701170 -0.910916 -0.871425 1.059140 0.203501 0.097855 0.517111 -0.386623 -0.130296 0.948555 -0.106731 -0.377157 -0.691097 -0.278544 -0.951495 0.064383 0.828165 -0.279696 0.353075 1.030633 0.100033 0.412887 0.785885 -0.750813 -0.509048 0.435655 -0.770703 0.149530 -0.217883 -0.548352 0.107713 0.392804 0.309700 -0.339227 -0.445397 0.171949 -0.485819 0.854583 -0.599780 0.129498 -0.020918 -0.833962 0.346089 0.561216 -0.349953 -0.109178 0.224730 -0.130060 -1.050109 -0.194713 -0.693946 0.175920 0.860246 0.728115 -1.008566 0.156909 -0.674465 -0.829710 -0.525007 -0.748378 -0.670907 0.302465 -0.141445 -0.361635 0.499610 0.003527 -0.521187 -0.296647 -0.640799 -0.186930 -0.589344 -0.345812 0.364291 -0.689768 0.305585 -0.250282 -0.902265 -1.221168 0.238285 0.560148 0.330868 0.251304 0.145286 0.194446 0.477051 0.759404 -0.988133 0.407186 0.427067 +-7.472938 4.894207 4.925292 -3.775379 12.240851 0.306759 3.619176 4.941993 -2.215212 7.250382 -11.778636 -4.392577 -3.707511 -8.606215 0.238947 -5.485646 1.742038 0.806574 -3.300152 1.086772 4.848055 -3.277802 -0.559920 -5.791213 -0.914642 -7.682008 -4.877156 0.294242 6.595908 -2.040678 -0.175623 1.157101 13.535103 1.245253 11.501626 8.186490 4.257010 10.154788 -0.554855 1.233674 -0.380949 8.472329 -5.816593 -8.857256 0.086827 -7.408859 -5.947583 -4.117591 2.922774 -5.023999 1.697222 7.312741 -0.555628 1.887831 -5.068150 4.751795 7.541036 0.949412 12.300026 3.749536 -6.475919 1.331609 -7.737229 6.618665 -4.132756 5.982980 -1.951485 -8.574924 -0.719674 0.242993 0.925238 -6.842169 -5.049490 5.549172 2.799011 -6.532945 4.544515 -2.219185 -6.839240 -9.065282 -7.981795 2.689644 1.094452 8.482353 -0.758389 -1.007390 0.479793 1.376796 0.740488 -11.589444 -2.217130 10.103727 -7.115165 -0.528887 -4.828914 4.635159 -1.017948 4.641384 -5.829218 -5.568796 2.939627 0.956733 1.106300 -5.574223 0.364626 -8.299620 3.730033 1.831016 -1.184032 4.039899 5.090252 4.394896 7.240638 7.892256 -8.238682 2.866306 -8.928828 3.728458 -2.842154 -0.011491 -0.111589 2.800296 1.153186 1.697742 8.559715 -11.027353 4.970457 3.922913 -5.268523 -8.674742 0.178239 -8.938383 -9.529138 -2.063122 4.629873 3.948250 1.123266 -5.332823 0.685099 -2.872889 -2.508786 -4.267159 0.182317 7.036597 -9.326266 -2.152877 -1.291238 -1.525316 -5.487914 8.099122 4.731442 4.229234 11.406004 5.696558 -3.903308 1.491097 -9.244835 1.037105 13.534546 2.293376 -10.019675 6.579303 -6.876262 1.211390 5.465635 4.242761 5.045058 1.444316 -7.633612 -3.442487 2.517444 -2.226986 11.759891 3.929828 4.131340 -5.920612 10.310639 -2.957418 -6.919038 13.438012 7.217566 -11.657063 2.930234 5.355409 -5.460829 -2.422020 5.755746 -7.378138 -2.184712 -6.531618 0.298337 3.095134 -6.490798 -2.609904 2.756492 -10.879749 12.387239 1.057989 3.050324 2.203360 -9.067808 -9.951911 13.762560 0.049178 -1.254620 -3.694017 -3.469096 -5.578615 -11.182311 1.988176 1.387850 -4.823489 -4.633857 -9.071966 3.140966 8.170221 -3.728125 6.449111 -6.992924 -3.461628 3.714072 -0.165229 6.347991 -5.750569 -6.464804 -2.493910 -2.220509 6.077248 -6.310334 7.026110 13.006761 -4.138827 8.923687 1.318252 -6.018774 -0.129214 5.941428 -8.364987 10.173481 -2.478868 6.433522 -0.187399 7.580658 -7.582012 -3.369213 0.029585 -0.752158 -3.593412 5.779290 -6.131843 0.755632 0.537329 -9.080154 -3.780935 3.510588 -0.512576 1.244172 -0.195701 1.004273 -8.488708 -0.440523 -5.232107 1.539160 7.925074 -0.426232 -8.308898 1.758848 0.570788 -2.244422 -0.730480 1.188409 -0.332707 8.404021 -9.078790 -1.763495 1.484013 -0.158355 -8.497540 -11.618770 -0.833212 -8.912502 -6.718723 6.346300 -9.395774 -0.670505 -6.977961 -0.830424 -10.309199 -4.407153 2.836948 13.087088 5.078469 -6.154083 3.202939 -0.184596 8.528348 1.053826 1.195757 1.221829 5.056378 +-22.337947 14.901751 -1.408355 -17.251834 51.548003 -3.313369 3.498948 26.275293 2.510363 19.422905 -40.613334 -8.112818 -4.767533 -34.848002 7.087998 0.024050 8.480666 13.121090 -13.731702 -3.845949 15.892639 -3.947778 1.577844 -22.914110 -1.649499 -24.141593 -11.354369 2.116802 7.967881 5.307362 -13.049097 9.173241 38.220915 3.302759 25.071923 22.902393 22.141312 33.129110 5.300432 9.785168 13.737663 18.736330 -10.947965 -38.005258 9.421585 -23.910484 -24.030409 -16.693197 9.139835 -29.979053 22.403005 21.971665 4.853517 -3.988170 -19.938642 11.352194 27.659005 1.970156 32.460529 18.897491 -26.814779 -4.910443 -17.390926 23.165912 -19.050860 24.187231 4.156793 -35.627676 -15.638494 21.491340 13.472736 -20.977781 -25.522584 1.218826 6.191276 -16.195282 17.390312 -2.223194 5.922898 -19.337078 -21.896258 12.190188 -9.749312 29.423043 -0.542682 -3.650497 -9.120088 -5.570051 11.476863 -25.190138 -16.766368 28.373412 -15.950915 10.325561 -21.889048 7.953516 5.570139 0.632042 -13.069679 -24.111590 10.552848 8.000291 3.661397 -3.898228 -7.654061 -24.496900 21.960278 17.372061 -4.298401 16.802641 8.824170 8.504518 7.800652 12.574387 -15.541881 8.929103 -35.506875 11.762312 -5.778419 0.593525 -7.675749 -0.345636 17.236976 1.929464 15.379235 -30.035950 30.952160 17.874037 -16.830034 -16.061650 9.986974 -13.164331 -27.996670 -1.251731 17.268283 8.130330 1.623301 -1.349082 6.047777 -11.946280 -20.090583 -14.913405 -13.667052 23.098502 -31.713868 -2.925932 -5.069900 -9.170818 -12.619950 16.264588 9.868399 8.079369 34.156348 16.768232 -13.915887 5.247451 -30.816708 15.999262 52.603020 14.870228 -29.153412 14.456896 -16.424319 10.194422 15.397302 7.345907 4.903301 12.361105 -14.924177 -2.658311 -4.541304 -12.425122 33.293718 19.966399 17.980135 -35.560867 20.127211 -8.701067 -4.041347 48.837628 25.033173 -38.876478 8.354528 32.797477 -18.297818 -5.832588 9.085753 -18.298389 -11.117038 -21.299734 9.349640 13.102830 -30.878523 -22.252273 1.936348 -29.558853 31.203889 6.181845 3.299655 -0.599441 -27.730426 -5.538028 50.861996 3.433485 -2.068130 -3.257103 -13.061439 -16.993022 -39.134034 3.989313 14.324293 -17.976561 -10.794221 -22.508178 -1.519457 36.418380 -20.783430 6.581766 -26.198043 1.400661 14.370700 -1.635255 13.126555 -30.608755 -18.722880 -4.780846 -6.385499 14.596631 -19.777946 10.137648 30.453049 -17.410701 25.466434 18.420043 -6.109469 1.361877 24.376017 -12.494904 31.155144 -6.462239 26.176838 5.591742 28.062764 -20.907445 -5.192828 -9.047289 -4.743892 -15.875399 27.801782 -32.677670 -0.463194 19.932970 -16.908643 -21.832877 21.019667 13.644071 16.516529 -7.364430 -5.416143 -15.438847 -0.607027 -11.993935 8.979264 22.512123 -9.381473 -31.736297 -3.863189 17.946225 -22.166301 -12.978434 11.699766 3.350142 36.323620 -26.878257 13.904346 9.392383 2.137210 -38.722962 -29.353886 3.052236 -18.710993 -16.347515 16.369459 -41.280614 -19.393946 -16.369519 14.010217 -31.409451 -6.227593 2.363553 34.283517 9.164405 -6.773145 16.445926 4.598426 15.703384 0.291750 2.446234 4.323456 19.182898 +-2.309777 0.464698 -0.268768 -0.673455 4.803783 -0.175460 0.728328 2.769958 -1.612194 2.468425 -2.796433 -0.885750 -1.215874 -2.915478 0.368857 0.408720 1.414859 0.520152 -1.037016 0.167797 1.498954 -1.015857 0.238182 -1.178366 -0.212751 -2.121112 -1.003630 0.440091 2.821198 -0.813635 -1.585842 0.534396 4.434043 -0.006026 3.417630 2.120723 1.836159 2.513940 0.647716 -2.455419 -0.211523 2.570071 -1.839839 -2.733384 0.254853 -2.332583 -2.282376 -0.975076 1.466661 -1.249253 -0.072106 2.310960 -0.355566 0.727803 -1.568922 1.491264 2.449436 -0.378737 4.013118 0.972108 -1.941378 -1.026406 -1.769492 2.790844 -1.207595 0.961574 -1.421743 -3.090904 -0.635401 0.389084 -0.098150 -2.408574 -1.318348 1.876619 1.080428 -2.008210 1.792496 -0.117191 0.769723 -4.012946 -3.178019 0.520487 -1.422704 2.897910 -0.395764 -0.134349 -0.040859 0.123849 0.208027 -3.817517 -0.077540 2.502788 -2.507824 0.106186 -1.042236 1.313552 -0.278634 1.253145 -2.045200 -2.391031 0.562703 -0.198072 0.576554 -1.693258 2.436116 -1.646341 0.391916 -0.284360 1.303685 2.415964 2.118324 0.916313 2.092918 2.562741 -1.984373 -0.454543 -2.572739 1.426675 -1.434653 0.167582 -0.544685 1.360068 2.050792 0.401237 2.975521 -4.075288 1.359943 1.256699 -0.758769 -2.386071 0.251778 -2.492902 -2.645603 -0.586770 2.006333 0.095782 0.103813 -1.775156 1.117997 -0.324260 -2.389230 0.151755 -0.581874 2.169503 -4.242058 -0.346649 -0.576291 -0.928087 -0.868763 2.234914 1.567805 1.981289 3.396978 2.126271 -2.033003 1.687309 -3.560551 1.201232 4.556537 0.225243 -3.044450 2.120955 -2.774468 0.349562 2.035941 1.677541 2.068393 0.020198 -1.343832 -0.223564 1.497683 0.489867 3.850755 0.475413 1.811234 -2.314598 2.014097 -0.853323 -1.418517 4.341486 1.190294 -4.207460 2.049696 1.660616 -1.372124 0.391508 1.140825 -2.848062 -0.985595 -2.983392 0.685816 2.043607 -2.599581 -0.588375 1.069732 -3.078234 3.566117 0.126992 -0.188011 1.294888 -2.759027 -0.501444 4.611023 0.647960 0.066711 -1.507279 -1.905659 -2.086945 -3.536368 0.519171 -0.395069 -1.386798 -0.856331 -3.069580 -0.420099 3.199789 0.013781 1.934428 -4.770099 0.789393 1.395537 0.567102 1.479609 -1.816732 -1.833590 -0.118616 -1.467946 1.289793 -2.808195 1.739271 2.954322 -2.059776 2.267993 -0.063540 -1.120013 0.601215 1.034592 -2.738076 3.231671 -0.098757 3.240125 0.134008 2.393531 -2.311637 -0.341585 -0.653029 -0.006546 -1.564001 1.879933 -2.250731 -0.218232 1.383376 -2.036290 -2.737271 0.338588 0.184964 0.946818 0.192790 -1.266113 -2.547699 -0.103314 -1.443627 1.095764 2.366372 -0.912758 -2.502640 0.845059 0.373070 -0.633384 -0.621572 0.573798 0.064815 2.677293 -3.034570 -0.638041 0.546699 1.324634 -2.199429 -3.796503 -0.174452 -1.584553 -1.416418 2.945446 -3.740229 -0.609982 -2.089234 -0.148997 -3.541581 -0.496357 0.587259 4.282207 0.748683 -1.850495 1.486880 0.198055 1.797684 -0.214659 0.799279 0.198468 1.157156 +-10.129431 6.661914 7.910990 -3.793800 12.388596 2.582192 2.537958 5.608129 -5.083059 11.516578 -14.580117 -5.895493 -6.416290 -9.626212 -1.245021 -8.157280 2.619710 -1.786567 -3.125385 4.281534 6.009038 -7.637406 -0.604101 -6.745762 -1.686524 -10.676706 -6.500682 0.132832 12.151493 -5.313909 -0.177638 -0.102886 20.061973 2.597387 15.924779 11.373253 3.989421 14.016500 1.769090 -3.435049 -4.593296 13.192948 -9.616796 -7.874328 -0.654020 -11.056066 -5.856042 -3.915023 3.449985 -2.406186 -0.921467 10.167856 -2.402335 3.928548 -8.007946 6.534488 9.646701 1.499680 18.899138 2.693572 -4.630614 0.057384 -10.537282 7.709983 -5.640884 4.808672 -4.449386 -7.938533 3.599538 -4.413323 1.037877 -9.706439 -5.301085 11.217385 3.502193 -10.391331 5.125361 -3.948801 -14.593623 -14.849358 -12.004699 2.607816 2.098313 11.070434 -1.206022 -0.352916 1.236799 5.039491 -0.526332 -18.189961 0.097957 12.791415 -9.916115 -2.817856 -4.547266 10.493076 -2.501546 8.345131 -9.609093 -4.354288 3.429336 -0.322297 1.849803 -11.903938 4.904147 -11.757389 4.281709 -0.969127 -0.771996 4.786979 9.412935 7.511629 14.233459 13.503897 -13.006537 0.524318 -10.455911 2.849161 -2.224667 -1.155127 1.220970 6.602734 -2.243993 2.529623 14.716512 -16.998967 3.512257 4.428838 -7.403353 -13.617590 -1.819196 -14.386671 -12.125864 -3.868765 5.949832 5.081425 2.274179 -10.546452 0.473492 -3.224763 -3.142109 -6.028743 3.515450 12.238419 -12.539808 -3.132206 -1.581604 -1.968013 -6.740687 11.846341 7.029485 6.864921 14.910909 7.621984 -5.346685 3.115203 -11.771961 -0.784051 16.105339 3.829270 -14.660243 10.572220 -9.246761 -0.440756 7.331248 7.552176 10.148434 -0.960986 -12.022267 -8.475728 5.005586 -1.201913 16.260485 2.758474 4.906416 -2.570982 17.656286 -2.224320 -12.189358 15.949289 7.164115 -11.773130 2.843969 4.198332 -7.364780 -2.057208 8.802044 -10.150967 -0.284947 -8.508342 -1.984557 4.045632 -6.408966 -0.554189 3.327731 -15.487175 18.668783 1.019329 5.100561 4.229289 -12.581959 -16.754765 15.989969 -1.571128 -2.010408 -7.022601 -5.194339 -8.710076 -14.683399 3.064904 -1.074377 -6.530391 -6.133056 -13.952187 5.281202 8.279844 -1.901745 9.843404 -13.136083 -6.897622 4.792170 0.724279 9.399147 -4.066358 -8.622644 -1.581691 -2.941888 9.452632 -8.556861 13.907519 18.981624 -4.825286 10.980392 -2.804741 -7.001260 1.302826 6.328326 -14.832591 13.934892 -4.454808 7.985768 -1.265132 9.109733 -9.715022 -4.627452 1.934574 0.383558 -3.449545 4.695613 -5.706597 0.625616 -2.235116 -12.403016 -3.676988 1.540341 -4.077915 -1.136657 1.459457 1.933738 -12.072662 -1.133225 -6.466920 1.687211 10.676420 2.078746 -7.938502 4.602582 -2.339315 2.086815 3.572656 -0.177822 -1.487035 8.813060 -13.134277 -6.306544 0.125296 -0.328535 -7.029808 -16.764091 -2.775718 -10.592870 -8.788548 11.771598 -12.441146 2.142986 -10.243331 -4.727595 -12.318333 -4.267987 4.593664 18.410680 8.085048 -12.497251 2.406410 -1.938754 12.999320 1.791855 1.882749 0.445542 5.610494 +-4.200330 2.797954 3.469640 -1.801203 6.556033 1.181274 1.488337 4.266764 -4.018005 4.583671 -6.266562 -1.461922 -2.231455 -4.335323 -0.234546 -2.771527 0.672893 -0.631478 -1.748764 1.367350 2.577231 -2.494079 -0.370000 -2.938015 -0.612205 -3.664592 -2.344341 -0.029945 5.135333 -0.955390 -0.404496 -0.147845 7.601405 0.375606 6.515505 4.464969 1.797321 5.011422 -0.031053 -1.990828 -1.427238 5.285783 -3.837605 -3.744895 -0.693075 -4.666073 -3.027048 -1.562183 1.658436 -2.226752 -1.463076 4.068944 -0.811737 1.331938 -2.321451 3.591516 3.664662 -0.375297 7.402450 1.507121 -3.336034 -0.653152 -4.541248 4.201034 -1.702114 2.984179 -1.956045 -3.870630 0.804558 -1.196830 -0.679334 -3.030020 -1.247627 4.303793 1.610194 -3.934336 2.433581 -1.612951 -5.362852 -5.542841 -4.312198 1.167160 0.570542 4.565135 -0.707985 -0.404490 1.332675 1.572443 -0.163499 -7.275108 -0.442126 5.941516 -4.146462 -1.634373 -3.521930 3.238129 -0.869400 3.475233 -3.523944 -2.197462 1.690447 0.709915 0.630228 -6.429108 2.547546 -4.734360 1.428325 0.431355 0.370549 3.155389 2.402792 2.979693 5.055972 5.393290 -4.541846 1.419998 -4.265296 1.485886 -2.175426 0.002558 0.108945 2.155609 0.914407 1.175568 5.632253 -6.520272 1.853732 2.097415 -2.839943 -5.533882 -0.229161 -5.961802 -5.267845 -1.326963 2.263560 2.134386 0.675170 -4.011137 0.743143 -1.322577 -2.131705 -2.325694 0.811896 4.005032 -6.076379 -1.445530 -0.609441 -0.060868 -2.652203 5.239506 3.035275 2.601520 6.274680 2.919374 -1.953566 0.796539 -4.846582 0.353588 7.169282 0.515710 -5.735480 4.045298 -4.039167 0.031765 2.723426 2.490238 3.653229 1.427030 -4.920524 -3.215461 1.813325 -0.788328 6.757487 2.391923 2.083231 -1.736568 6.865330 -2.672816 -4.795939 6.077878 3.986684 -5.594547 1.731181 1.881033 -2.976834 -0.849407 3.334036 -4.552628 -0.762225 -3.292089 -0.838116 1.916403 -3.095174 -0.829510 1.596073 -6.215982 7.795712 0.473481 2.055732 0.998067 -4.677031 -5.781237 6.332245 0.325733 -1.070241 -2.690441 -1.747233 -5.274195 -5.903039 1.258637 0.144785 -2.418152 -3.009016 -5.464369 1.360708 3.164236 -1.216370 3.971551 -5.672287 -2.125114 1.947979 0.426361 4.275311 -2.048824 -3.675375 -1.759651 -2.096496 4.145859 -4.158047 5.303706 7.562608 -1.863120 5.972126 -0.384938 -3.720710 -0.151663 2.838849 -5.544887 5.674305 -1.052020 3.056007 -0.345900 4.070123 -4.178606 -1.847064 0.149906 -0.841202 -1.395920 2.710358 -2.618259 0.400989 -1.097673 -5.565304 -1.644668 1.165258 -1.648422 0.230048 0.359634 0.676177 -5.526226 -0.677626 -3.538272 0.472212 4.497871 -0.719213 -4.034158 1.470679 -0.851267 -0.203616 0.558986 0.220116 -0.352092 3.841871 -5.236473 -1.912231 0.479918 0.164261 -4.127598 -5.864704 -1.515944 -4.132627 -4.250292 4.405767 -4.596318 0.496640 -4.125424 -1.699887 -5.834225 -3.336139 2.013198 7.671405 2.424318 -4.510458 1.331773 -0.485332 5.405789 1.151416 1.170347 -0.076963 1.912818 +-6.541024 5.006001 4.367354 -3.168849 9.640194 0.202893 4.159593 4.007799 -3.410617 6.699234 -9.870046 -3.662913 -3.370539 -7.742588 -0.006040 -5.896444 1.942731 0.290986 -1.950104 2.513801 4.009431 -4.307770 -0.463897 -4.744826 -1.028339 -8.272757 -3.273356 0.369702 7.364964 -1.605937 0.921469 0.683354 12.531451 1.080031 10.756955 7.488931 3.137930 8.295712 0.926134 -1.935735 -1.631463 7.653951 -5.342672 -6.949159 -1.088631 -5.893603 -5.504849 -3.762864 2.494138 -3.998382 -1.069257 6.600277 -0.858377 2.102312 -5.188427 4.417165 7.514577 0.216139 11.240061 2.522419 -4.004586 -0.129711 -6.014443 5.776136 -3.211804 2.462240 -2.465523 -6.088740 1.345374 -0.477032 -1.758182 -4.459275 -2.914808 5.852530 3.647719 -6.592695 3.803962 -2.160154 -8.624115 -9.036709 -6.408118 2.108217 1.040607 7.928128 -0.474387 -0.380383 1.468899 1.842916 0.110740 -10.834378 -0.824816 9.075874 -5.977881 -2.926440 -3.242492 6.704096 0.400425 4.289982 -5.416638 -4.955584 2.360169 -0.356834 1.157691 -6.783838 0.829869 -7.635987 1.450804 0.663412 -0.494648 5.987853 4.424977 4.748659 7.439779 7.643146 -8.676340 2.180658 -7.795741 3.247594 -2.997559 -0.447121 0.343864 2.837448 0.943127 2.650672 7.949731 -10.608529 3.789529 4.144114 -3.231214 -8.138731 -0.404240 -8.178396 -7.725227 -2.150377 3.885029 3.068073 1.569211 -5.485895 0.754081 -1.796731 -1.142280 -3.235242 1.191191 7.547387 -9.115797 -1.561489 -0.931331 -0.763323 -4.536164 7.102337 4.254235 3.704137 9.957446 4.972037 -3.746558 3.658057 -7.929244 0.247095 11.630757 1.770533 -8.522823 6.495894 -6.491683 -0.332400 4.330991 4.365240 5.348358 0.531194 -8.496458 -4.621395 3.403014 -1.659324 10.316681 2.261649 2.633761 -5.196216 11.230961 -2.321206 -6.792981 11.002416 6.055704 -9.427429 2.649941 4.087092 -7.185897 -1.824760 5.429664 -7.235222 -1.566902 -6.125295 -0.041130 2.784672 -4.889635 -1.438193 1.711174 -9.504116 10.608809 0.800741 2.219080 1.646380 -6.853681 -8.771536 11.759453 0.065533 -0.962165 -3.803809 -3.403554 -5.967962 -9.883240 1.608990 -0.106613 -4.343081 -3.759242 -8.278536 2.278731 6.114470 -2.316442 6.064312 -8.417164 -2.780993 3.561838 2.092249 4.827532 -3.955007 -5.609219 -1.377205 -1.814623 4.724051 -5.514229 8.180259 11.279315 -3.358772 7.608686 -1.918197 -6.419641 1.451437 4.561760 -8.878334 9.211700 -2.002703 6.418888 0.185248 6.109532 -6.576872 -2.981750 0.191916 -2.256756 -3.280508 4.269392 -5.246642 0.472109 0.609639 -7.087960 -3.945496 2.047448 -0.914984 0.326294 0.261603 1.274282 -8.016119 -0.475401 -5.292835 1.396871 6.750945 0.361092 -6.388182 2.440329 0.652175 -0.007522 -0.532405 0.303153 -0.143272 6.304041 -8.255695 -2.116105 0.606643 0.573970 -6.140704 -11.512032 0.636024 -7.811343 -6.293211 5.998772 -8.429256 0.396886 -6.399632 -1.656729 -10.143206 -4.167870 3.475455 12.023546 3.479813 -6.289643 1.974397 -0.952952 7.444890 0.631260 2.144483 0.918515 4.178789 +-14.210787 8.471405 6.395771 -5.364266 18.847876 0.963931 8.165667 6.361004 -5.322019 13.749531 -20.790592 -10.595131 -8.692139 -15.449575 -0.546693 -11.192396 4.529560 -0.023582 -5.194606 3.867675 9.323342 -8.948703 -1.526613 -10.221596 -1.167525 -13.670125 -8.385344 -0.056437 15.591754 -5.832815 -2.359815 1.786106 27.159970 3.740451 23.289316 15.971311 6.394504 19.328182 0.720504 -2.241252 -4.634321 17.991533 -12.020248 -14.872437 -1.310135 -14.170431 -9.389074 -6.982037 5.708319 -4.592472 4.234710 13.953934 -2.504387 5.542519 -11.047647 7.044782 14.103097 3.802728 24.765514 5.490053 -8.335937 1.888010 -13.470068 12.526262 -7.129579 7.688470 -3.287282 -12.789759 2.577323 -3.773287 1.341113 -13.653139 -9.509111 13.018645 6.111330 -13.198896 8.285267 -4.336388 -17.365134 -18.822228 -17.073523 3.495586 1.064728 16.694243 -1.929260 -1.575485 -0.759813 4.378674 0.583318 -23.498284 -1.597653 19.063269 -13.022573 -1.760275 -7.808710 12.628966 -2.428008 10.718875 -13.665352 -8.677709 4.873044 0.022845 2.455793 -12.597530 2.315999 -15.720171 6.156530 0.677805 -2.204553 8.413608 13.683636 8.869494 17.029884 16.666928 -15.839576 2.588613 -15.715999 6.073567 -4.153460 -0.952088 1.996913 7.708443 -0.839085 1.728512 17.991997 -22.454404 6.303370 7.676538 -9.027800 -18.157623 -1.305644 -19.225310 -17.733333 -5.175127 9.025067 7.648733 2.563266 -12.870018 0.545045 -4.458056 -4.533936 -6.633106 3.054088 14.687180 -16.106902 -4.473132 -2.688577 -3.365590 -10.364389 15.893366 8.456509 8.946395 20.863779 11.420692 -8.217198 3.551114 -16.721288 0.239319 23.776721 4.655565 -19.987480 12.953849 -13.537987 0.903220 10.189650 9.805634 12.466208 -0.560051 -15.130740 -7.105786 5.903528 -2.937479 22.198020 4.252005 7.348703 -5.939933 22.163939 -3.603819 -15.975637 23.304547 11.224283 -19.032275 4.281341 7.267229 -10.241006 -3.219131 11.824690 -14.107320 -1.603188 -14.014692 0.323065 5.558239 -10.906548 -1.451020 5.027802 -21.048784 24.158226 1.665969 5.876724 4.827131 -18.429695 -18.513729 25.694583 -1.852837 -2.334157 -8.169798 -7.099215 -11.046685 -20.404145 4.240922 -0.898571 -8.401220 -8.894081 -18.080138 6.598816 14.513698 -4.362866 13.597972 -12.764548 -7.547225 6.627295 1.698290 12.252967 -7.982321 -12.770003 -2.616587 -2.300310 12.538577 -11.269359 15.945338 25.078103 -7.611813 13.747809 -0.318460 -8.991199 1.464789 9.780351 -18.622177 18.741522 -5.383868 10.792873 -1.557187 13.364620 -13.724612 -7.241032 1.734322 1.230344 -6.156021 8.768464 -9.192152 1.718448 -0.584349 -16.360186 -6.415711 4.026486 -3.488668 0.176028 1.101358 1.630101 -16.124643 -0.886561 -10.644602 2.849310 15.325451 2.300379 -12.454623 4.799405 -1.971159 0.093346 4.712214 0.924030 -2.009874 14.405006 -17.313607 -7.371477 1.063423 0.135065 -11.064240 -24.485353 -2.412933 -15.511681 -12.107732 15.313768 -16.891923 1.606165 -14.031942 -4.336752 -20.190477 -6.961737 5.595314 25.186911 10.822631 -13.079342 4.308157 -1.167416 17.119318 1.356113 2.421554 2.889201 9.379818 +-8.542048 7.394227 7.632770 -3.886798 11.557744 3.625010 2.863031 4.653834 -4.781573 9.876867 -12.926402 -3.820978 -4.890098 -7.847731 -1.295357 -8.093171 0.993780 -1.872181 -2.670659 3.124416 5.001447 -6.500773 -0.189371 -5.813486 -1.615764 -10.229485 -5.505241 0.035804 10.852779 -2.536773 -0.283829 -0.865163 15.381877 1.500060 12.832838 9.142058 3.944991 11.315311 0.491497 -1.039418 -3.422503 10.419919 -8.146404 -7.571560 -0.422053 -9.979725 -5.430214 -3.681619 3.366191 -3.552521 -0.398276 8.564525 -1.963715 2.601206 -6.250970 5.841258 7.884413 1.465364 15.797455 2.197768 -5.038290 -1.593456 -9.197501 5.943288 -4.010550 4.972513 -3.345006 -7.030898 2.515439 -2.974429 -0.346415 -7.463682 -3.574280 9.311177 3.061881 -8.720380 4.370996 -4.070279 -13.351608 -11.518135 -8.562517 2.520273 2.306183 9.522814 -0.559118 -0.211179 -0.072441 4.107264 -0.659035 -15.428598 -0.458470 12.305758 -7.399595 -1.581703 -4.504935 8.575932 -1.557888 6.758476 -7.542405 -3.109314 3.026030 1.423207 1.439919 -12.005930 2.384940 -11.956771 4.317682 -0.127585 -1.197144 3.381419 5.964991 5.706099 11.093904 11.654860 -11.498121 2.586375 -9.458661 2.316735 -1.772255 -0.419174 0.379681 5.057316 -2.442819 2.230410 11.920041 -14.006392 3.861567 3.717154 -6.511592 -12.632080 -1.196460 -12.074917 -10.152882 -2.184565 4.115935 4.271231 1.721013 -8.717880 -0.097452 -3.563330 -2.865376 -5.889814 3.491996 10.954228 -10.434333 -2.367663 -0.941763 -1.097319 -6.124227 10.206014 6.370700 5.370562 13.458311 6.819166 -3.244757 3.855331 -9.689726 -0.458501 13.508476 4.959053 -12.319959 8.562272 -8.109807 -0.182547 6.009346 5.430705 7.929425 1.765395 -11.127576 -7.070040 4.383516 -1.484528 13.611764 3.516112 4.781515 -2.683914 15.279459 -3.821902 -9.777834 12.363186 7.276621 -10.727551 2.764338 3.853192 -6.110785 -1.212939 7.811544 -8.787073 -0.262494 -6.509286 -2.154505 3.699098 -5.690984 -1.852444 2.092774 -12.947845 16.540981 0.922150 5.869853 3.461691 -10.384850 -13.335555 13.036928 -1.497994 -2.108424 -5.212150 -3.564234 -8.516736 -11.928321 2.279262 0.803769 -6.698417 -6.108204 -11.640355 4.153109 6.326608 -2.172482 8.442584 -9.870808 -6.051528 4.154539 0.608689 8.458668 -3.907027 -7.094287 -2.836519 -2.366939 8.732366 -7.078636 12.316771 15.873256 -3.782418 10.624468 -2.795038 -5.487174 1.052734 5.690103 -11.589655 11.836770 -3.010564 7.580731 -1.037824 8.043750 -8.001793 -3.470530 1.366449 -0.896075 -1.959048 5.414195 -5.375836 0.377005 -1.135753 -11.059032 -2.795508 1.919738 -2.668775 -0.977955 0.928431 2.743892 -9.872816 -1.807812 -6.748022 0.933514 8.829877 0.348196 -7.684497 3.038488 -1.876814 0.825454 2.524407 0.238082 -0.601497 7.347297 -10.774049 -4.944139 0.165581 -1.331862 -7.870679 -14.126598 -2.308776 -9.040281 -8.410027 9.021406 -10.952156 1.639658 -8.823055 -3.972639 -12.203495 -4.689146 4.067232 15.958762 6.657993 -8.967918 2.257260 -1.417377 11.100619 1.094936 2.089328 1.399321 4.857144 +-77.991878 53.830312 8.421584 -62.287922 183.595016 3.881097 13.245765 88.520669 -5.446069 66.242727 -147.352966 -27.611219 -17.165148 -118.313961 23.083817 -4.130318 23.662724 33.314142 -50.112898 -7.549925 55.480533 -19.606275 8.028667 -83.351535 -4.090161 -75.813487 -44.695984 4.855736 36.786312 24.356119 -43.558904 22.408481 125.621996 13.371057 81.880214 72.568240 75.312643 116.025617 7.074167 23.741281 43.746559 69.078106 -41.707358 -132.218909 36.367669 -93.571873 -83.975818 -57.077147 30.480694 -105.701298 65.445249 77.617056 14.605668 -20.187711 -66.319369 38.554838 100.686601 5.407061 113.932076 64.366675 -93.351152 -25.420982 -66.962597 68.214689 -59.940994 96.010916 13.816907 -122.485681 -56.787761 69.958179 46.950580 -74.945530 -92.214414 7.513757 22.732850 -52.685975 62.222756 -12.757237 14.628142 -67.723646 -73.111852 39.433151 -36.166636 102.803845 -3.773886 -13.777751 -25.929455 -19.146252 39.952345 -90.488361 -60.920329 100.457349 -54.975163 33.987981 -79.229215 27.353342 9.158535 7.259543 -53.956693 -76.980318 37.885156 37.973061 10.354294 -25.952519 -22.507248 -96.608280 80.813407 65.087340 -12.167779 55.250404 32.163698 29.983570 27.431909 47.258811 -62.739010 33.426494 -114.931219 32.112062 -21.272572 7.028134 -30.894252 3.929167 54.549850 5.914964 55.534029 -104.502946 109.385227 63.734797 -66.178534 -57.393655 34.912791 -53.565644 -100.741989 1.622096 55.032084 28.850390 4.257839 -7.252483 17.622358 -46.006072 -74.342671 -52.506353 -44.570063 82.780986 -114.898599 -12.965629 -16.465090 -30.412711 -43.638606 61.871457 37.455747 25.930301 117.672653 56.758743 -48.717515 22.048694 -101.020317 62.043566 189.269987 51.265967 -106.379654 47.146235 -59.713977 40.517097 54.256471 17.594723 21.192424 48.067649 -56.608090 -12.380129 -11.521116 -45.760796 117.261778 80.575152 70.357678 -128.451941 76.293746 -41.416109 -13.328209 163.222291 84.553960 -134.532795 28.222912 111.460850 -64.492397 -14.238628 27.759494 -60.625678 -36.522889 -74.052565 27.853789 43.372890 -105.341500 -85.843925 1.367168 -106.906978 117.445314 23.902839 19.118645 -5.291353 -90.792295 -28.549479 175.328251 11.718055 -14.801124 -12.956004 -38.479532 -60.938307 -134.001719 15.753719 50.949453 -65.840864 -44.249059 -80.895955 -3.487843 122.201891 -74.252960 21.692474 -92.894811 2.747303 45.840452 -8.027448 54.190422 -106.288708 -68.174702 -23.734068 -27.759189 56.318562 -71.749997 37.045164 108.900255 -61.287300 94.641612 58.630802 -19.713655 0.141078 87.401836 -36.587576 108.291166 -23.882569 105.816654 11.015516 104.464319 -71.132315 -16.082620 -29.443571 -22.676507 -48.264341 102.444789 -112.639899 -0.720888 68.268143 -60.663613 -76.797181 77.268497 40.763964 57.764634 -25.807905 -18.472400 -54.547519 -3.591280 -34.818370 29.232817 80.453004 -41.750028 -115.111256 -23.087134 58.383040 -74.001004 -46.148425 43.852592 9.630942 127.055335 -92.850279 46.665013 30.101091 1.465512 -136.012036 -98.317179 6.964977 -63.983367 -57.171651 67.998013 -141.476953 -58.724725 -60.962939 43.491604 -104.673884 -27.569297 5.738298 118.496105 33.938437 -26.686762 57.900656 17.779081 59.742908 0.980198 9.604948 16.784238 60.468241 +-20.878261 25.684486 17.107975 -16.417958 32.255053 -1.119239 12.939367 12.666132 -7.628931 16.406059 -37.909308 -6.082689 -6.889021 -30.805780 2.411119 -18.620195 2.652318 10.316891 -4.489386 10.878687 15.886485 -14.578052 -2.042035 -23.017422 -1.850159 -25.013385 -9.264192 -1.347607 9.965731 6.066181 8.626351 4.889282 33.553448 10.119600 28.046439 25.521413 5.558306 34.841181 4.578929 10.469999 0.398150 21.588181 -12.100375 -35.258728 7.591329 -19.791665 -14.090846 -21.951195 3.674481 -26.581149 10.283048 20.554745 1.132568 -1.692637 -21.369984 5.316342 31.742095 5.913075 29.572164 14.383042 -14.764790 3.676583 -17.978927 3.989523 -12.806638 13.549041 10.549132 -22.155621 3.188214 7.470814 10.157601 -14.652539 -17.366605 7.527994 6.040130 -16.656659 11.854036 -7.632282 -36.801152 -17.485936 -15.758059 6.693169 2.607481 27.151129 -1.765191 -3.471556 -5.562858 0.347458 8.294422 -25.230896 -13.388692 29.298556 -8.630274 -0.685904 -15.046436 23.143020 7.954200 5.694750 -15.222627 -12.743982 11.478129 6.222449 3.656176 -6.721382 -22.276434 -28.262065 16.839550 11.730244 -12.815390 16.285045 8.683073 16.553239 14.437184 14.780962 -27.866420 18.954294 -30.597175 9.310966 -3.889281 0.660023 1.965525 1.023947 -0.316171 1.910146 14.441858 -26.311444 23.079403 18.096650 -12.114137 -23.097629 7.032225 -19.098449 -23.362243 -6.538372 12.268754 13.378224 3.347009 -6.599777 -4.920449 -11.535273 -3.645377 -24.666281 -3.456302 33.501761 -24.909540 -3.507825 -5.205289 -6.040984 -14.115455 13.832774 7.357079 5.498629 29.962611 15.667643 -8.986129 5.015326 -20.606611 3.341003 43.850331 20.422543 -26.014903 13.774711 -5.925205 3.042552 12.381103 4.892551 10.990498 7.081102 -29.760948 -19.055084 0.118481 -18.059324 28.133653 21.962539 11.580123 -27.359518 39.325125 -1.123350 -16.521238 38.971820 20.738023 -25.472472 2.673617 21.529381 -27.093588 -10.687044 10.919637 -11.769191 -5.703480 -11.313791 1.857584 2.418114 -20.565429 -20.552684 -4.413710 -30.392280 30.369105 5.609474 14.531965 -4.381410 -21.101368 -25.738322 40.263255 0.544022 -8.655943 -5.809403 -6.741160 -15.150307 -31.788715 6.646481 9.517652 -15.672767 -16.187433 -20.965838 7.026230 21.555206 -20.035627 6.019155 -10.751269 -14.640904 10.433444 0.628743 12.717798 -30.474129 -18.908466 -4.461918 2.459163 17.438366 -4.186975 22.643068 39.272622 -10.858780 18.326867 13.803465 -5.397577 6.048628 26.187473 -18.031078 26.447639 -13.653864 27.408640 1.520258 22.107625 -17.682877 -10.570061 1.595562 -5.661346 -8.289661 20.962103 -20.865472 2.879676 8.978723 -20.219071 -9.013580 18.329587 3.822765 8.343769 -4.128350 8.079136 -18.690386 0.306275 -11.819243 1.067603 23.013012 -0.114756 -27.429587 -3.550499 9.600196 -6.854904 -7.598204 6.652902 2.103720 24.357263 -23.495728 9.355242 0.706502 -8.294092 -26.333668 -30.116322 10.872387 -26.301926 -23.643338 16.760948 -30.585195 -2.161463 -18.155147 5.799065 -32.761158 -9.920245 2.000976 29.737782 10.434223 -8.366220 9.538447 -1.469958 23.632534 2.211412 4.253014 1.263801 24.112733 +-11.646908 9.842244 10.618293 -5.709669 21.392731 2.989060 7.868011 11.338975 -11.515557 13.304140 -18.069607 -2.410906 -5.406141 -13.559951 0.156185 -10.038290 2.276928 -1.401844 -3.939416 3.729068 6.864968 -7.675720 -0.440398 -8.366237 -2.078294 -16.171276 -5.409483 0.496913 15.497580 0.544249 0.242358 0.153729 20.613544 0.647816 17.652930 12.462763 6.505696 13.141534 0.299253 -5.737691 -2.648047 12.987060 -10.069209 -12.703182 -2.148295 -12.151198 -11.296381 -5.837362 4.813095 -9.600645 -6.266020 11.975490 -1.947677 2.992160 -7.452963 10.317002 12.402127 -2.048190 20.117238 4.502564 -9.670510 -5.584867 -12.099667 11.482370 -3.928108 5.886868 -5.622057 -12.511887 1.611457 0.001848 -6.175942 -6.152420 -2.295923 11.100759 6.754199 -11.581065 6.620153 -4.271459 -16.975902 -14.684207 -9.999020 3.988089 1.628633 14.458411 -0.152100 -0.661702 4.049592 3.057322 0.072113 -20.441301 -1.891043 18.771460 -10.788488 -5.413200 -9.171910 10.610121 0.731880 8.108286 -8.748322 -8.495849 4.547323 1.857078 1.740670 -18.961093 2.510071 -16.272000 2.896885 1.500542 1.236577 11.179370 4.002175 7.389568 11.796160 14.523565 -15.927303 6.119844 -13.305437 6.038158 -6.456499 0.216650 -1.650766 4.854487 3.213906 5.596681 15.015532 -19.276776 7.158991 7.201954 -6.323354 -16.027280 -0.592796 -15.415918 -13.874845 -2.476030 6.308464 4.723293 2.528092 -9.917740 2.235715 -3.770389 -4.691726 -6.575523 1.842757 14.205551 -19.742722 -2.725752 -1.301459 0.178944 -8.220811 14.000599 8.961041 7.382090 18.237878 9.198912 -5.503461 8.699011 -14.677020 2.146479 22.285593 4.346171 -15.414322 11.702943 -13.298352 -0.129485 7.224915 6.113066 9.576945 4.965708 -16.452946 -8.675745 7.092232 -2.461836 19.322614 8.066693 6.101904 -9.694899 19.976711 -9.657946 -11.692026 16.743717 12.922742 -18.606670 7.258244 7.759887 -12.952655 -1.720504 9.310314 -14.660074 -2.771164 -10.651336 -1.583222 6.540275 -9.574078 -3.478545 3.006940 -17.035642 21.011744 1.875968 6.661221 2.677319 -10.585736 -15.250284 19.891775 0.961743 -2.043959 -7.321343 -5.500979 -16.562590 -17.160365 2.407475 1.102533 -9.166217 -8.102336 -15.736589 1.706485 10.174600 -4.072614 11.534680 -17.547526 -3.436870 6.260363 4.345273 10.347814 -7.129767 -10.029358 -4.933958 -6.108217 9.583195 -12.058543 15.459567 19.473567 -5.740319 17.846044 -5.316270 -11.979761 1.696397 7.775066 -14.765375 16.538898 -2.055962 13.675908 0.639411 12.212077 -12.135770 -4.121041 -0.801665 -6.804514 -4.949234 9.694331 -10.271195 0.468752 1.849248 -14.255918 -7.978800 3.871658 -1.675612 1.758046 -0.047010 2.390378 -15.066491 -2.004054 -11.733269 2.656733 11.972271 -3.680425 -12.494138 3.564527 0.763506 -1.783370 -3.555155 1.543426 0.590168 10.832831 -14.921324 -3.679073 1.464959 1.022011 -13.935523 -19.835006 -0.276424 -13.349096 -13.626071 10.631022 -16.200483 1.099476 -11.833191 -3.644821 -21.288435 -10.459839 6.220003 22.536287 3.833046 -10.105922 4.547278 -1.107092 12.953659 0.970471 5.907081 1.536975 5.725668 +-10.305464 5.856793 4.223923 -5.000221 21.124408 -0.708042 6.382548 10.023177 -6.693593 9.816119 -15.924432 -3.439852 -4.065176 -13.124438 1.673357 -4.479545 4.539467 2.009570 -4.521670 1.878048 6.347564 -4.122866 -0.509770 -7.711866 -1.180905 -11.927279 -5.481764 1.229972 10.531371 -1.840085 -2.574080 2.785092 19.729822 0.524376 15.746273 11.194589 7.781468 12.252160 1.116359 -5.954297 0.979842 10.757613 -7.571668 -12.628987 -0.487866 -9.814491 -11.143818 -5.511671 4.645208 -7.797715 -0.976437 10.287881 -0.495997 2.532005 -7.416414 7.512328 12.202184 -1.672435 16.733855 5.580529 -9.580422 -1.653732 -8.839069 11.724754 -5.179106 5.993311 -4.726217 -13.392597 -1.985405 3.254409 0.104248 -9.653358 -6.904326 6.750496 5.147870 -9.053926 7.349186 -1.599429 -4.144224 -15.129702 -11.021914 3.786958 -2.393770 12.902147 -0.827230 -1.264622 0.386738 0.254102 1.660792 -15.767357 -3.155610 14.075633 -10.301498 -1.612856 -7.801355 6.695332 0.974276 5.176120 -8.182237 -11.606440 3.863913 -0.110529 1.489092 -8.340948 4.500498 -10.077988 1.825479 2.141320 1.689409 11.284799 4.824609 6.512702 9.459343 9.966134 -10.691212 1.858415 -12.695726 6.584560 -6.747271 -0.199639 -1.662905 3.656956 6.295639 4.048726 11.686803 -16.393581 7.858312 6.809385 -5.273978 -10.783621 0.987155 -11.093961 -12.907227 -2.508906 7.199570 3.764801 1.823419 -6.479951 3.092685 -3.050544 -5.280795 -3.981066 -1.657958 10.533346 -17.487528 -2.235031 -1.660032 -1.854275 -6.387858 10.762473 6.900962 6.454163 15.728095 8.259473 -7.320458 6.726485 -14.718244 3.778918 20.955575 2.907342 -13.309833 9.504182 -11.255262 1.132448 7.714641 6.405171 6.652728 1.301446 -10.593492 -4.120887 4.427178 -2.152948 16.883555 5.158949 5.713293 -11.705652 13.062181 -5.760951 -7.831997 18.920061 8.871425 -17.944208 6.509670 9.270427 -8.385570 -2.025942 6.576945 -12.777978 -5.186618 -11.058299 2.008624 6.140273 -10.315982 -3.638330 3.817877 -14.258003 15.729248 1.635879 0.419740 2.302915 -10.551312 -9.500397 21.312410 1.343073 -0.335037 -5.051241 -6.215056 -8.078214 -16.484611 1.818663 0.632321 -6.914494 -5.045369 -12.864141 0.799861 13.019169 -4.799109 8.573737 -16.499734 -0.364144 5.956501 2.653191 6.841729 -9.778450 -8.840657 -2.500994 -4.627660 5.641401 -11.565177 9.255854 15.529435 -7.105923 11.620330 -0.467199 -9.126976 1.479296 7.244737 -11.546585 14.567233 -1.541604 13.716184 1.495467 10.993535 -11.037631 -3.931544 -2.254835 -2.743932 -7.392422 9.283482 -10.932234 0.509167 4.646187 -9.326429 -10.079980 4.683249 1.185869 2.725775 -0.808290 -1.717661 -11.541747 -0.266806 -7.619608 3.831857 10.421730 -3.582638 -12.080441 2.742984 3.557688 -4.277701 -3.167582 2.147199 0.708363 12.129676 -12.954043 -0.839026 2.543356 3.556476 -12.580624 -18.200497 1.212019 -11.148233 -8.956820 9.508861 -15.581447 -3.261967 -9.494832 -0.055583 -16.398996 -6.433180 5.077829 18.841502 3.735261 -8.071516 5.188999 -0.008441 9.370238 -0.297877 4.125358 1.089479 5.789624 +-4.432849 2.125210 1.228337 -1.588585 7.610923 0.473178 1.405070 4.048122 -2.490601 4.649828 -6.127324 -2.063641 -2.374268 -5.087925 0.052860 -1.089587 1.721060 0.385225 -1.900121 0.551407 2.788796 -2.311239 0.313976 -2.911197 -0.560480 -3.955832 -2.254921 0.264928 4.873933 -1.277090 -1.760262 0.320975 8.121780 0.621940 6.743906 4.171714 2.508268 5.503468 0.749983 -2.068237 -0.789685 5.124018 -3.633102 -5.235233 0.302459 -4.851863 -3.336842 -2.249568 2.167295 -2.548487 0.730560 4.137116 -0.563583 1.284640 -3.034067 2.444942 4.603651 0.106217 7.717586 1.607759 -3.579085 -0.777549 -3.812655 4.040650 -2.283873 2.538279 -1.581292 -4.923654 -0.387553 -0.135728 0.191887 -4.209600 -2.468391 3.744557 1.783966 -3.904646 2.796594 -0.913784 -2.145389 -6.430543 -5.294263 1.103165 -1.035426 5.062605 -0.625008 -0.239648 0.000000 0.881651 0.445696 -7.234148 -0.564942 5.404684 -4.197638 0.106331 -2.097146 2.954545 -1.013994 2.817557 -3.819085 -3.112535 1.261990 0.485310 0.823491 -3.928064 2.391583 -4.337474 2.095329 -0.015068 0.559628 2.925980 3.890178 2.069441 4.407747 5.097224 -4.428096 0.586100 -4.974805 1.929919 -1.810187 0.113883 -0.414853 2.278590 1.651819 0.474078 5.531760 -7.223499 2.622581 2.315469 -2.316031 -5.266344 0.118749 -5.236151 -5.151369 -1.005263 3.023319 1.205929 0.522500 -3.683535 0.850510 -1.337029 -3.512608 -1.543636 -0.015480 4.520457 -6.493538 -0.989226 -0.840920 -1.285040 -2.433087 4.531264 2.762256 2.948853 6.364558 3.660608 -2.961385 1.796760 -5.643506 1.232603 8.112963 0.904951 -6.025809 3.850430 -4.429844 0.621493 3.566203 2.603860 3.775603 0.386445 -3.708754 -1.569337 2.289386 -0.137543 6.974165 1.698515 3.208364 -3.301499 5.539646 -1.278090 -3.447408 7.785356 2.976358 -7.080610 2.704514 2.792225 -2.853155 0.073271 2.763381 -4.579989 -1.149267 -4.595551 0.359721 2.598074 -4.153617 -1.291004 1.584679 -6.248519 7.520197 0.489910 1.177337 1.795183 -5.371556 -3.079744 8.025372 0.523262 -0.472563 -2.505483 -2.670791 -4.262537 -6.572889 1.090443 0.035574 -2.899119 -2.302968 -5.655920 0.819903 4.910452 -0.849227 3.733959 -6.270971 -0.710275 2.193992 0.536349 3.437187 -3.353987 -3.575096 -0.850893 -1.945804 3.614256 -4.236833 4.283137 6.797865 -2.941028 4.940932 0.353416 -2.339746 0.641936 2.647008 -5.066163 5.772328 -1.237184 4.713115 -0.234535 4.505035 -4.046733 -1.145282 -0.491045 0.105268 -2.082726 3.358738 -3.711875 -0.124539 1.061005 -4.806604 -3.259422 1.109772 -0.405327 1.366720 0.213839 -0.747385 -4.942124 -0.252122 -3.172201 1.204041 4.532146 -0.832645 -4.816586 1.229542 0.019765 -0.843007 -0.176590 0.718649 -0.224274 4.635460 -5.498905 -1.528141 0.730191 0.765893 -4.213900 -6.606493 -0.771493 -3.917090 -3.302164 5.120202 -6.181052 -0.376890 -3.978607 -0.796243 -6.389230 -1.501081 1.087631 7.863849 2.460277 -3.572354 2.169745 0.052513 4.498201 0.387820 1.129821 0.458467 2.649763 +-12.221641 8.853931 8.611366 -4.705069 15.349593 3.696130 4.503032 5.633379 -6.921244 14.088482 -17.649956 -7.340909 -7.581431 -12.595027 -1.957089 -10.634656 2.337354 -2.554993 -3.807098 4.513136 7.058455 -9.715899 -0.383573 -8.062106 -2.283894 -14.401414 -7.063065 0.091918 15.394974 -5.464149 0.286329 -0.875026 22.995486 2.598761 19.667412 13.118049 3.842917 15.721707 0.892871 -2.878230 -5.676743 15.363725 -11.462552 -10.319354 -2.140611 -12.918889 -7.834552 -5.686640 4.790009 -3.685617 -1.584963 12.051494 -2.900455 4.738412 -9.267932 7.952115 11.894719 1.515925 22.710581 2.800226 -6.082229 0.113925 -12.656253 9.848216 -6.122972 4.815093 -4.398436 -9.033212 4.474406 -5.081113 -1.603004 -8.616722 -4.793507 13.671723 5.968377 -12.940133 5.711200 -5.166052 -20.659215 -17.838319 -13.063967 3.374298 3.493629 13.608219 -0.889789 -0.024626 3.231461 6.114237 -1.031923 -22.225886 0.129198 16.581707 -10.834272 -4.229093 -5.882631 13.274755 -2.644409 10.005740 -11.288810 -4.958534 3.942026 0.251098 2.109967 -15.904123 4.262996 -15.269230 5.089972 -1.151876 -1.314907 5.409903 10.556035 7.582494 16.110656 16.748969 -16.326954 2.831590 -12.529715 3.546724 -2.694992 -1.031227 1.238812 7.067898 -2.316642 2.750944 17.443352 -20.343686 4.501238 5.729409 -7.989288 -17.802522 -2.574074 -17.416731 -14.235919 -3.824684 6.222611 5.819744 3.129705 -12.834427 0.177453 -3.819901 -3.978412 -5.960280 5.177873 14.971322 -14.314212 -3.305315 -1.387552 -1.416496 -8.814473 14.554292 8.651570 7.842813 18.532342 9.198438 -5.751194 3.753016 -13.541610 -1.209421 19.826901 3.962661 -17.142899 12.615514 -11.370445 -0.645173 7.981369 8.594426 12.127366 -0.543062 -15.411831 -9.549108 6.114707 -1.649497 19.494504 3.348168 5.544393 -2.739620 22.249213 -2.527246 -14.384050 17.902680 10.324107 -14.730257 4.570664 4.916513 -10.625124 -2.240222 11.500699 -12.215112 -0.396208 -10.337125 -1.973225 4.555446 -7.321992 -0.459818 3.388199 -18.447754 22.846067 1.233180 7.440566 5.368321 -14.274783 -19.613087 17.992726 -2.230354 -2.396555 -8.100596 -5.659709 -12.913771 -17.135802 3.345612 -1.031212 -8.687418 -7.366614 -16.591724 6.172261 9.270516 -2.296552 12.833267 -14.114842 -8.006043 5.575834 2.380585 11.274760 -3.815945 -10.034091 -2.480310 -3.329686 11.406973 -9.797574 17.255261 22.193682 -5.239930 14.387502 -4.653488 -9.521586 2.019113 7.360452 -17.459065 16.470096 -4.617880 7.966803 -1.450289 11.049746 -10.805865 -5.169795 2.232077 -1.330186 -3.536785 6.225836 -7.077881 0.543609 -2.413352 -15.584266 -4.494478 1.817607 -4.968609 -0.314148 1.617180 3.241852 -15.277865 -1.058084 -9.738088 1.829171 12.462134 2.537838 -9.540011 5.478145 -2.529141 2.828686 4.333910 -0.288310 -1.622247 10.113835 -15.424984 -7.583211 0.058371 -0.237376 -8.798634 -20.139690 -3.021401 -13.751574 -11.857201 14.050798 -14.907138 3.223430 -12.361099 -6.106837 -16.150507 -6.371364 5.914596 22.914618 9.111694 -13.705631 2.809918 -2.371615 15.361414 1.948348 2.716362 1.681467 7.051125 +-34.425522 26.459390 8.048743 -24.942302 71.559514 -2.462402 11.501693 35.989132 -3.062292 31.423318 -61.375936 -13.166887 -9.230166 -50.362203 7.589272 -13.227710 10.171799 14.502603 -18.619906 -0.840045 23.450327 -9.435312 -0.218228 -33.404443 -3.834750 -40.947258 -17.757776 2.166594 18.312389 5.165430 -9.664171 11.155813 61.134104 5.116536 44.183715 37.638273 30.989528 49.192839 5.584695 14.774425 13.317672 31.474911 -19.983834 -51.758765 7.628690 -34.962803 -36.148656 -23.640990 12.304687 -41.570587 24.105753 34.531722 4.660982 -1.254742 -28.290213 20.907408 41.156787 0.002815 51.898670 25.501388 -38.252949 -5.738138 -29.064563 37.207447 -25.230296 32.852013 3.129987 -48.016938 -14.891644 23.201886 12.390582 -28.332378 -32.724171 10.287484 12.866080 -28.177147 23.956071 -6.954291 -12.581114 -31.779833 -31.597754 18.004693 -5.479072 43.950882 -0.256230 -4.927209 -6.123993 -3.117314 12.298801 -44.172161 -20.720628 48.918347 -26.665625 6.174443 -37.028021 17.521135 6.680469 7.945129 -21.912980 -34.434759 16.416870 9.991514 5.292914 -18.052816 -13.439534 -41.474684 26.957985 22.414935 -8.487640 27.859322 12.157775 16.974592 19.735074 25.545931 -30.769403 17.369363 -51.726595 18.504050 -9.574404 -0.191582 -7.620032 1.425952 19.051521 7.647574 28.151723 -47.962891 40.325831 25.990744 -26.208596 -31.304810 9.518756 -27.675248 -43.246837 -4.562374 23.773573 15.745116 4.717125 -9.330461 6.926006 -16.563704 -21.992073 -27.780973 -12.368677 35.880306 -47.828569 -6.248904 -6.509784 -9.052498 -23.220607 30.349952 17.933672 13.322027 53.272148 24.915652 -18.084875 11.419972 -44.941229 16.315607 75.316423 22.751869 -45.452404 26.241363 -28.575515 10.519424 21.637952 13.964078 11.295357 17.047050 -32.576658 -11.623838 -0.860809 -18.418525 52.393175 28.701552 21.652197 -47.259468 40.978983 -15.015730 -16.640004 70.090620 41.469425 -56.259044 11.191439 42.622598 -30.927809 -11.863910 20.198871 -32.266671 -16.345098 -30.270717 9.177427 16.824059 -40.369756 -26.458637 5.560249 -47.359342 50.991860 8.606326 8.764982 -0.488387 -41.107683 -25.795770 72.844780 2.350768 -4.523162 -8.241236 -17.906183 -28.541596 -57.819701 6.990761 18.854847 -26.043243 -19.559872 -36.851409 3.496454 48.551208 -28.805189 17.418429 -38.848606 -6.240170 21.142655 0.331932 23.165464 -42.307189 -29.467929 -10.339035 -7.550675 24.517676 -29.490009 24.389966 52.600838 -22.443007 42.842530 17.298212 -20.713888 1.099179 35.090696 -27.045953 48.383431 -9.995834 35.057845 6.843571 40.285771 -33.766183 -11.589991 -9.431162 -9.365616 -21.913233 37.361986 -43.679938 1.097849 19.832661 -31.252829 -27.404433 27.733982 13.047136 16.936184 -8.591665 -1.662000 -28.606922 -2.470244 -23.593285 11.010216 35.266301 -10.230530 -43.957528 -0.611288 20.262305 -26.062083 -12.749673 13.108108 4.186791 49.796016 -42.016468 12.777260 11.398397 0.749850 -55.228418 -50.282546 3.868982 -35.006521 -30.506446 23.475486 -57.177898 -21.311340 -28.059304 12.584182 -51.073268 -17.551252 9.623257 56.449470 15.561397 -16.432723 20.262013 3.279885 30.167621 2.357810 6.569889 7.395795 27.818163 +-4.419777 2.347814 1.500274 -1.885477 8.447472 0.363645 2.025763 4.286602 -3.177944 4.392019 -6.440339 -1.881507 -2.218246 -5.660717 0.483486 -1.808523 1.789911 0.397811 -1.917622 0.734619 2.840289 -2.375621 0.098207 -3.098459 -0.355551 -4.627964 -2.216198 0.360080 5.303811 -0.602151 -1.556407 0.595891 8.077095 0.209791 6.358495 4.329553 3.016570 5.131962 0.443715 -3.078534 -0.422295 5.028489 -3.496800 -5.373168 -0.033972 -4.665317 -4.098703 -1.899289 2.291274 -2.958976 -1.082820 4.351510 -0.529621 0.994475 -3.074335 3.023824 4.860386 -0.102837 7.449661 1.991716 -3.608339 -1.794361 -3.964741 4.541359 -2.205656 2.594790 -2.086343 -5.305350 -0.656472 0.612593 -1.197481 -3.480701 -2.335041 3.396535 2.278706 -3.834901 3.042054 -0.861003 -2.437113 -5.885038 -4.911879 1.189179 -1.299629 5.484622 -0.522555 -0.445895 0.787886 0.446102 0.623915 -7.078860 -0.890548 5.815158 -4.199197 -0.616686 -2.496869 3.061738 -0.047390 2.523602 -3.659487 -3.816253 1.418638 0.346223 0.798263 -4.705232 2.311321 -4.745068 1.350356 0.400135 1.045693 4.439394 2.966624 2.299881 3.866620 4.769339 -4.820341 0.426638 -5.059718 2.201724 -2.785461 0.196468 -0.727923 2.071486 2.417951 1.140957 5.277940 -7.232161 3.030563 2.780789 -2.033299 -4.966840 0.424923 -5.131404 -5.329028 -0.871721 3.072882 1.214715 0.521244 -3.226970 1.304299 -1.150714 -3.105256 -0.993956 -0.454868 4.454644 -7.320862 -0.962675 -0.841978 -1.008230 -2.368025 4.528008 2.860033 2.912511 6.589674 3.667195 -3.189630 3.084686 -5.893436 1.819729 8.786609 0.711814 -5.887112 3.805638 -4.894988 0.605130 3.274878 2.444356 3.531992 1.379708 -4.123461 -1.630972 2.095747 -0.504359 7.041316 2.134657 2.947337 -4.308109 5.691764 -2.398473 -3.301611 7.588117 3.362485 -7.492426 3.258318 3.361965 -3.917531 -0.084488 2.564001 -5.072516 -1.227381 -5.066158 0.522073 2.958348 -4.552378 -1.612173 1.303439 -6.167590 7.220008 0.632558 0.863085 1.446443 -4.789601 -3.541577 8.511501 0.806492 -0.424694 -2.659219 -2.667264 -4.751145 -6.723192 1.015973 -0.015325 -3.222528 -2.392650 -5.635705 0.078625 5.264139 -1.263762 3.748776 -7.344459 0.073229 2.375464 1.527340 3.464830 -3.012683 -3.817178 -0.989804 -2.453423 3.111022 -4.846315 4.113557 6.451551 -3.126722 5.437895 -0.777202 -3.498708 0.781268 2.829369 -4.929626 6.057866 -0.618854 5.598470 0.132923 4.775008 -4.462489 -1.204866 -0.692288 -1.430009 -2.428825 3.765831 -4.263112 0.004555 1.894002 -4.351623 -3.996909 1.563812 -0.012028 1.637774 -0.034976 -0.781655 -5.036887 -0.277794 -2.853994 1.427641 4.590492 -1.382140 -5.011724 0.925605 0.716777 -1.207948 -1.355495 1.016753 -0.039224 4.872324 -5.541924 -0.934526 0.872160 1.146917 -4.814674 -7.045783 -0.313775 -3.887800 -3.477551 4.843820 -6.463579 -0.454052 -4.077803 -0.479519 -6.818991 -2.449584 1.514773 7.948020 1.701937 -3.444862 2.339211 0.166002 4.193223 0.039964 1.555826 0.513494 2.281215 +-4.466824 3.386004 2.971292 -2.075578 7.818169 0.600486 2.220576 3.901252 -3.671816 4.570941 -6.623964 -1.410684 -2.213969 -5.678261 0.141837 -3.272398 1.319542 0.252504 -1.450608 1.356071 2.763052 -2.847251 -0.053391 -3.124910 -0.631486 -5.120303 -2.298266 0.279499 5.436312 -0.859950 -0.130461 0.350339 8.205567 0.377455 6.816101 4.707333 2.506501 5.391395 0.608262 -2.405479 -0.912483 5.024000 -3.657683 -5.330524 -0.243233 -4.550886 -3.726281 -1.946123 2.012817 -2.987409 -1.722967 4.412920 -0.704960 1.119722 -3.258893 3.114450 4.815378 -0.098258 7.642186 1.714611 -3.632281 -1.662661 -4.300209 4.084561 -2.151199 2.340734 -1.935833 -4.774355 0.384623 0.084088 -1.618006 -3.301566 -1.947175 3.957936 2.229878 -4.195334 2.571266 -1.333916 -5.265616 -5.498995 -4.467877 1.308270 -0.196727 5.334214 -0.286161 -0.254233 1.143516 0.997886 0.293401 -7.510148 -0.687188 6.392622 -4.115712 -1.027451 -2.499691 3.888320 -0.061255 2.770123 -3.571621 -3.275510 1.595258 0.361098 0.820252 -5.623940 1.344992 -5.614598 1.413212 0.080082 0.280705 4.165693 2.804540 2.845378 4.483098 5.234973 -5.708142 1.008184 -5.367622 2.116877 -2.589725 0.029951 -0.472569 2.062710 1.125684 1.461424 5.572960 -7.367686 2.834363 2.651643 -2.118595 -5.850878 0.114316 -5.491602 -5.183285 -1.045095 2.791269 1.561507 0.732285 -3.601472 0.610291 -1.200916 -2.446626 -2.334530 0.314894 5.246417 -7.059291 -0.935407 -0.715062 -0.692045 -2.738518 4.698117 3.112331 2.922421 6.806359 3.669749 -2.620273 3.438962 -5.688224 0.979385 8.396153 1.402036 -6.022749 4.204197 -4.774843 0.080426 3.067632 2.488216 3.814996 1.435227 -5.375768 -2.905531 2.689660 -0.755034 6.976843 2.287956 2.520278 -3.752497 6.993839 -1.978340 -4.061137 7.531719 3.309727 -7.218846 3.259920 3.074970 -4.153511 -0.479050 3.119783 -5.223865 -1.013564 -4.381086 -0.182655 2.522672 -4.155783 -1.513213 1.085749 -6.414057 7.661013 0.615365 1.516275 1.304503 -4.768017 -5.450735 8.169025 0.553242 -0.674309 -2.807363 -2.462817 -4.869916 -6.625422 1.014111 0.339079 -3.461082 -2.708555 -5.788460 0.682135 4.527739 -1.349098 4.157409 -6.785161 -1.154519 2.396149 1.697778 3.583334 -3.094418 -3.773853 -1.164311 -2.012213 3.464842 -4.321374 5.174345 7.216349 -2.684638 6.006536 -1.185895 -4.090881 0.940161 2.970897 -5.490135 6.221125 -0.970330 5.572708 0.146167 4.547053 -4.566667 -1.469697 -0.167527 -1.587055 -2.016296 3.385471 -3.878656 0.050601 1.062371 -4.879238 -3.255115 1.412609 -0.350823 1.103770 0.075224 0.136199 -5.069842 -0.570043 -3.170434 1.110686 4.606636 -1.115989 -4.932035 1.233104 0.381018 -0.641112 -0.883084 0.712795 0.114216 4.323220 -5.676723 -1.205581 0.510418 0.420653 -4.881514 -7.332642 -0.092220 -4.602656 -3.933175 4.280736 -6.341568 0.163872 -4.222401 -0.972685 -7.119474 -2.711907 1.776805 8.229056 1.941495 -3.731019 2.012596 -0.301976 4.709414 0.288035 1.774958 0.414870 2.638398 +-7.796201 6.484031 7.105837 -3.468810 10.734066 3.648879 2.688879 5.049225 -5.458765 9.309573 -11.847718 -3.616612 -4.628107 -7.326074 -1.288776 -7.325040 0.830883 -2.139423 -2.688385 2.914332 4.652672 -6.030112 -0.228952 -5.327967 -1.535040 -8.363029 -5.141621 -0.058103 10.467706 -2.634126 -0.396455 -1.138815 14.407375 1.162646 12.063986 8.408204 3.593141 10.350853 0.419402 -1.781552 -3.533578 10.015614 -7.766947 -6.875274 -0.811501 -9.442128 -4.789431 -2.840598 2.948871 -3.064989 -1.038276 7.897124 -1.977029 2.527519 -5.443725 5.792086 6.797401 0.967527 14.864492 1.908216 -4.991136 -1.781310 -8.825630 6.243486 -3.502967 5.169623 -3.470037 -6.542920 2.425063 -3.308224 -1.055256 -6.919665 -3.116165 9.121246 2.785897 -8.076790 3.877090 -3.992172 -12.651826 -10.129974 -8.120125 2.232338 1.969833 8.495172 -0.528451 -0.299732 0.740979 4.095562 -0.760662 -14.704077 -0.199966 11.504666 -7.403419 -1.807497 -4.493957 7.518700 -2.101519 6.783523 -7.266390 -2.525502 2.782780 1.563055 1.320000 -12.422383 3.006757 -11.265103 3.855074 -0.053618 -0.754095 3.340634 6.192768 5.290963 10.570181 11.050338 -10.458458 2.109125 -8.332557 1.934037 -2.036669 -0.305377 0.198900 5.033298 -2.001656 2.000021 11.518104 -13.079499 3.077228 3.250674 -6.247199 -11.784502 -1.268327 -11.702402 -9.578877 -2.027669 3.797345 4.026605 1.647183 -8.487196 0.005555 -3.031052 -3.198518 -5.520922 3.465326 9.504134 -10.074585 -2.472180 -0.903024 -0.722520 -5.640190 10.018304 6.135683 5.126056 12.387810 6.192929 -2.960115 3.378823 -8.898499 -0.338105 12.546833 3.716954 -11.713326 8.038891 -8.217196 -0.130779 5.391724 4.989177 7.668939 2.096405 -10.360400 -6.670736 4.527384 -1.133308 12.738307 3.255871 4.499375 -1.989107 14.105961 -3.910253 -9.426522 11.405253 6.655240 -10.154845 2.839684 3.151664 -5.300569 -0.907925 7.276006 -8.481580 -0.050279 -6.189911 -2.469437 3.493251 -5.223794 -1.291034 2.237952 -12.170908 15.770419 0.886060 5.264090 3.020526 -9.740982 -12.445482 12.010139 -0.990461 -2.108538 -5.218859 -3.253103 -8.759979 -11.095408 2.268383 0.622561 -5.939597 -5.965355 -10.994263 3.906064 5.736645 -1.727628 8.120497 -9.330754 -5.625893 3.746601 0.747240 8.443534 -3.293743 -6.706678 -2.915461 -2.737764 8.540675 -7.110195 11.376399 14.927087 -3.316699 10.646272 -2.397745 -5.662267 0.453707 5.165180 -10.973612 11.048901 -2.774979 6.531320 -1.268879 7.493038 -7.621765 -3.121261 1.216447 -0.681624 -1.553624 4.597470 -4.650779 0.387785 -1.874956 -10.747637 -2.330813 1.576417 -3.053875 -0.948985 1.025650 2.171198 -9.452036 -2.004576 -6.445247 0.747129 8.344822 -0.071919 -7.063040 2.917171 -2.447136 0.924754 2.654190 0.116023 -0.723942 6.610205 -10.139867 -5.106068 0.166273 -1.213512 -7.344756 -12.550378 -2.952988 -8.021961 -7.542537 8.380262 -9.388016 1.954459 -8.251349 -4.151039 -11.416649 -4.860698 3.612455 14.996051 6.053943 -8.762741 1.971872 -1.297073 10.695487 1.528312 2.054945 1.050635 3.956689 +-9.211296 6.684457 7.311244 -4.542430 16.579333 1.682043 5.033725 8.535547 -6.511302 11.227394 -14.394124 -3.153408 -4.465082 -11.279635 0.021222 -6.354041 2.742037 -0.301877 -3.153044 2.984073 5.737137 -6.142418 -0.395361 -6.706464 -1.920550 -11.697230 -5.173540 0.721507 10.978539 -2.605901 -0.239807 0.714007 18.377159 1.564739 15.357742 10.949994 5.820592 12.444691 1.903852 -3.280108 -2.111365 10.937162 -8.149516 -10.730166 -0.542241 -9.773457 -8.311405 -5.342879 2.929749 -6.583075 -0.980828 10.033081 -1.701107 2.739195 -7.153051 7.157515 10.084635 -1.304976 17.073238 3.798992 -7.581867 -1.911624 -9.792410 9.365607 -4.557304 5.122683 -3.730104 -10.761089 1.500110 -0.597384 -0.840411 -7.890167 -4.519420 9.401485 4.458517 -9.666597 4.871094 -3.633257 -11.763378 -12.677555 -10.126949 3.400742 0.689452 11.254823 0.228463 -0.527177 2.005838 3.004092 0.088631 -17.067414 -1.125012 13.848997 -9.872010 -2.640359 -6.626988 8.395281 -0.857574 6.653009 -8.148250 -6.915590 3.674853 0.557405 1.723993 -11.208014 2.207286 -12.313465 3.531767 1.032369 0.232226 6.764491 6.974325 5.752994 11.283447 11.559693 -12.603821 3.311705 -10.742890 4.764255 -3.222960 -0.445712 -1.134894 4.778158 1.582916 3.673604 13.167869 -16.069631 5.118702 5.225001 -6.466759 -12.199055 -0.874931 -12.599711 -11.456906 -2.799661 5.989199 4.083246 2.429189 -8.310603 1.078090 -2.966069 -4.484508 -6.894389 1.491691 11.575284 -15.094419 -2.337207 -1.482001 -1.343772 -6.793206 11.420119 7.370137 6.734822 14.645465 7.762470 -4.801601 5.402510 -12.625898 1.152670 18.143670 3.909919 -13.597245 10.169426 -10.781113 0.313015 6.479795 6.258552 8.298583 0.593057 -12.395637 -6.820467 5.944578 -1.418764 15.873404 5.074111 5.122591 -7.145645 15.115333 -3.902700 -10.043328 16.372730 8.652748 -14.779393 4.866399 6.429033 -8.601265 -1.730372 7.671136 -11.529047 -2.345324 -8.810066 -0.901477 4.765157 -7.767460 -1.873863 3.135576 -14.427381 17.077103 1.552763 4.420632 2.532675 -10.262453 -12.889181 17.758187 -0.140050 -1.458216 -6.003867 -5.333243 -10.077287 -14.777131 2.151299 0.563948 -6.879129 -6.026558 -13.317202 2.993686 9.976293 -3.026573 9.014182 -13.206850 -4.024589 5.348476 1.865603 8.031252 -7.681467 -8.245187 -2.633073 -3.960520 7.695103 -9.312947 11.728389 16.996266 -4.851964 12.422154 -1.642314 -8.323267 1.206088 6.532042 -12.854502 14.098804 -3.398892 10.068450 0.251259 9.654460 -10.021531 -3.487155 -0.462926 -1.604776 -4.380463 6.624836 -8.013347 0.335925 0.768266 -11.744970 -6.274945 2.812630 -1.338277 0.782233 0.321303 0.393554 -11.514934 -1.625185 -8.637235 2.624352 9.951059 -1.717936 -9.483656 3.621934 0.285965 -0.790164 -0.927642 1.092981 0.136263 9.448777 -12.885128 -3.384762 1.176093 0.768352 -10.423692 -16.363990 -0.591327 -11.181266 -9.163721 8.867786 -13.465847 0.088878 -9.715507 -2.879038 -15.729551 -5.500695 4.000357 18.574839 4.885716 -9.440860 3.462859 -1.187501 10.818444 1.196983 3.799882 0.943584 5.472438 +-6.068090 2.731333 3.082691 -2.064384 8.541049 0.626209 1.946736 3.102797 -2.325966 6.291237 -8.189698 -3.801211 -4.211087 -5.568722 -0.252983 -3.356243 2.580037 -0.317889 -2.271400 1.838095 3.813353 -3.863673 0.105604 -3.754247 -0.676246 -5.939654 -3.645422 0.451010 7.246534 -2.801716 -2.062543 0.578717 11.536332 0.938277 9.074079 6.214091 3.009467 8.119616 0.719226 -3.710007 -1.723873 7.638280 -5.319770 -5.609735 0.157711 -6.511778 -3.945474 -2.713123 3.208430 -1.358389 -0.053302 5.926726 -1.149962 2.132734 -4.936399 3.595413 6.059323 1.603409 10.967789 1.866046 -2.784023 -0.000608 -5.615947 4.017520 -3.481089 2.690231 -3.505467 -5.546626 0.543342 -1.375876 0.635935 -6.516314 -3.493058 5.465882 2.085759 -5.686131 3.984792 -1.394195 -3.870949 -9.987168 -7.760080 1.181070 -0.456285 6.886178 -1.188118 -0.350060 -0.838684 1.967247 0.229777 -10.056020 -0.220520 6.626163 -5.703092 -0.686980 -1.082612 5.364072 -0.988604 3.962379 -5.780603 -3.731171 1.626604 -0.619160 1.260880 -5.349386 4.515582 -5.553428 2.017452 -0.609618 0.752051 3.215580 5.556345 3.791054 7.356805 7.125146 -6.586925 -0.234289 -6.658846 2.077200 -2.194303 -0.492810 0.305661 4.155372 0.286481 0.972676 8.083197 -10.132585 2.768836 2.741421 -3.462232 -7.117315 -0.110502 -7.396874 -7.130460 -2.010793 4.212064 2.175028 0.891621 -5.601869 1.224022 -1.934103 -2.232272 -0.794931 0.967222 6.715061 -7.700260 -1.492570 -1.191187 -2.086225 -3.165723 6.152550 3.681689 4.169273 8.947408 5.138364 -4.297893 2.245009 -7.804884 0.634880 9.591835 1.222925 -8.229339 5.620598 -5.451548 0.338014 5.100681 4.568248 5.774294 -0.558999 -5.282290 -3.039564 2.741224 -0.166172 9.572519 0.591685 3.879075 -2.893171 8.262759 -2.105109 -5.507546 9.499994 3.629813 -8.266244 2.401663 3.204158 -3.697501 -0.700962 4.364992 -5.966588 -0.593642 -6.190552 0.169047 3.495403 -4.897442 -0.902875 2.036114 -8.616987 10.069930 0.333133 1.655239 3.256319 -7.595440 -6.307736 10.243797 -0.475116 -0.541138 -3.847633 -3.817369 -4.199703 -9.064715 1.659014 -1.149402 -3.822768 -3.096511 -7.974817 2.018933 5.838883 -0.811517 5.316660 -8.338699 -1.917875 3.134434 0.713789 5.009181 -2.226513 -5.012868 -0.365183 -2.444626 4.803123 -5.653057 6.694363 9.786053 -3.939377 5.296619 -1.307061 -3.077227 1.390297 3.508641 -8.055310 8.182192 -1.703056 6.491212 -0.621926 5.532030 -5.692518 -2.226795 0.429248 0.284557 -2.822891 3.711726 -4.326523 0.093778 0.612980 -6.270011 -3.715698 1.033742 -1.045474 -0.081192 0.812368 0.297572 -6.923044 -0.354822 -3.669589 1.576597 6.222587 0.450930 -5.528007 2.327028 -0.367689 0.104145 1.002894 0.386882 -0.757419 5.890547 -7.554612 -3.243935 0.485076 0.939474 -4.172371 -10.203907 -1.036759 -5.541306 -4.326132 7.702916 -7.885157 0.188403 -5.757306 -1.533716 -7.548765 -1.663292 2.346839 10.639468 4.463552 -6.160857 2.222327 -0.453600 6.571127 0.014338 0.885311 0.502970 3.273665 +-4.637829 2.311708 1.848270 -1.771145 8.246173 0.640083 1.500748 4.271197 -2.368691 4.878072 -6.537975 -2.261576 -2.444959 -5.236932 0.105751 -1.667610 1.620402 0.352578 -2.148760 0.459469 2.896045 -2.142071 0.300005 -3.055348 -0.634819 -4.428078 -2.588213 0.314510 4.975738 -1.064431 -1.574301 0.333440 8.454506 0.520647 7.010891 4.373153 2.910100 5.685263 0.355323 -1.617674 -0.611879 5.249294 -3.827756 -5.459293 0.292815 -5.107089 -3.820167 -2.320393 2.242014 -2.979502 0.414952 4.371417 -0.527620 1.295142 -2.885766 2.796878 4.666282 0.092266 7.964450 1.796525 -3.996644 -0.781309 -4.269705 4.271046 -2.348010 3.072167 -1.910500 -5.461386 -0.754319 0.042084 0.063509 -4.218672 -2.574818 3.892764 2.008065 -4.023922 2.957237 -1.010556 -2.286313 -6.446454 -5.366788 1.300006 -0.893885 5.259193 -0.581167 -0.284732 0.305988 0.860095 0.406660 -7.575422 -0.717727 5.932016 -4.471129 0.028553 -2.536522 2.670199 -0.992241 2.979229 -3.835942 -3.413587 1.409432 0.621418 0.811558 -4.143045 2.212395 -4.731249 2.161325 0.293236 0.607692 3.035821 3.505925 2.136421 4.504128 5.335989 -4.841773 0.936845 -5.127883 2.147180 -2.183054 0.184109 -0.588015 2.302151 1.768488 0.845798 5.738862 -7.457033 2.864557 2.391367 -2.678296 -5.399854 0.146287 -5.496740 -5.478093 -0.968762 3.098963 1.335109 0.507884 -3.789799 0.934689 -1.502885 -3.327829 -1.716038 -0.085195 4.354472 -6.766478 -1.056725 -0.836069 -1.245423 -2.665006 4.904499 3.047501 3.078907 6.764340 3.801519 -3.003930 1.826314 -5.964215 1.332634 8.568738 0.806349 -6.284786 4.071483 -4.726577 0.715126 3.680382 2.647745 3.712314 0.843448 -3.922975 -1.646775 1.997356 -0.190020 7.385178 2.268713 3.236526 -3.786105 5.639599 -1.933111 -3.601819 8.108695 3.536750 -7.537899 2.667852 3.019692 -3.254740 -0.209023 2.938035 -4.933328 -1.305282 -4.780203 0.328880 2.751254 -4.327392 -1.470082 1.858118 -6.567617 7.858835 0.539158 1.295023 1.807529 -5.526405 -3.873612 8.460345 0.533559 -0.530271 -2.586914 -2.697962 -4.320722 -6.876802 1.115628 0.261464 -3.092361 -2.523252 -5.905229 0.940732 5.144809 -1.055428 4.028980 -6.473396 -0.802654 2.308745 0.380372 3.762332 -3.586301 -3.733753 -1.265963 -2.251151 3.713887 -4.537317 4.314657 7.148968 -3.023774 5.470877 0.121127 -3.168091 0.381374 2.838170 -5.180790 6.127119 -1.181021 4.843114 -0.183030 4.796346 -4.289083 -1.194612 -0.551391 -0.315365 -2.200608 3.748619 -3.965700 -0.105325 1.121737 -5.195730 -3.367104 1.296717 -0.329022 1.346085 0.137110 -0.606384 -5.389354 -0.259883 -3.236306 1.239836 4.750182 -1.019478 -5.161173 1.259780 0.104839 -1.190674 -0.728752 0.815019 -0.196348 4.931877 -5.764156 -1.486670 0.913125 0.707067 -4.807025 -6.847132 -0.897970 -4.410041 -3.595055 5.016178 -6.387106 -0.486765 -4.199143 -0.794345 -6.460975 -2.087540 1.413913 8.297751 2.619574 -3.778330 2.314931 0.087788 4.752590 0.453979 1.146756 0.598034 2.701321 +-2.989234 1.483321 1.328578 -1.035612 4.235630 -0.325437 1.210315 2.103001 -0.600678 3.002009 -4.023620 -2.167678 -1.728228 -3.232169 -0.026830 -2.032242 1.067957 0.560217 -1.171295 0.402959 1.901158 -1.236902 -0.292091 -1.806365 -0.397378 -2.844563 -1.802938 0.248416 3.011455 -1.615373 -0.559779 0.580507 6.046314 0.419299 5.374462 3.386826 1.645938 3.807129 0.430253 -0.406457 -0.634845 3.606296 -2.482944 -3.243553 -0.367336 -2.704685 -1.925832 -1.252824 1.427974 -0.995847 0.874417 2.719526 -0.489591 1.362736 -2.009991 1.643764 2.282014 0.826229 5.175565 1.095846 -2.333724 0.635087 -2.913349 3.440234 -1.839239 1.691204 -1.431034 -3.144208 0.167511 -0.538311 0.034814 -2.846116 -1.689761 2.776363 1.150862 -2.721851 1.806635 -0.710682 -2.132284 -3.754159 -3.703960 0.895728 -0.070832 3.185740 -0.511751 -0.243314 -0.181888 0.901893 -0.030728 -4.910119 -0.196750 3.807658 -3.244096 -0.184431 -1.051704 1.985151 -0.443386 2.159955 -2.192194 -2.164462 0.956052 -0.302875 0.587851 -2.012822 1.392573 -2.612744 1.067234 -0.052770 -0.079267 2.047635 2.686030 2.012559 3.615499 3.510170 -2.754301 0.121490 -3.531648 1.695669 -1.583751 -0.195857 0.292544 1.735821 0.403189 0.685803 3.882745 -4.707920 1.269754 1.334917 -1.435742 -3.452467 -0.153479 -3.757608 -3.628388 -1.238828 2.090419 1.449219 0.314610 -2.766344 0.337055 -0.637206 -1.197811 -1.259163 0.377750 2.191378 -3.444617 -0.863437 -0.572231 -0.754391 -1.956146 3.297771 1.915822 2.132477 4.399792 2.494437 -1.810937 0.406067 -3.959886 0.050070 4.726797 -0.218026 -4.021215 2.920558 -3.124566 -0.052244 2.382007 2.395357 2.494225 0.197205 -2.553029 -1.304954 1.106332 -0.156291 4.698273 0.693285 1.354202 -1.405307 3.858533 -0.726053 -3.199395 5.513979 1.863363 -4.606448 1.191763 1.472709 -1.954651 -0.794044 2.358862 -3.234620 -0.491491 -3.134451 0.171034 1.593469 -2.478850 -0.164541 1.647330 -4.286929 4.885804 0.104123 0.475618 1.234977 -4.054323 -3.463144 5.756535 0.205994 -0.222542 -1.810519 -1.798442 -1.903494 -4.374824 0.733114 -0.153225 -1.576837 -1.486494 -3.715547 1.257855 3.185449 -0.657162 3.067618 -3.157376 -1.307245 1.555588 0.218207 2.177553 -1.777721 -2.453772 -0.634138 -0.929727 2.362313 -2.694865 2.973419 5.114563 -1.680331 3.159497 0.435900 -2.624414 0.164418 1.834162 -4.127386 4.087302 -1.061567 1.651974 -0.047931 2.539144 -3.035752 -1.450583 0.064984 0.278924 -1.577725 1.648001 -1.927485 0.247912 -0.213946 -3.617114 -1.363190 0.594609 -0.408740 0.279907 0.373202 -0.012234 -3.688058 -0.195739 -2.217569 0.652206 3.122134 0.297327 -2.949064 1.509775 -0.374223 -0.464611 0.129710 0.049865 -0.297460 2.958271 -3.706578 -1.513094 0.614691 0.431117 -2.584897 -4.782060 -0.717683 -3.225603 -2.123428 2.494637 -3.472656 -0.160800 -2.747826 -0.762139 -4.025133 -1.383190 1.356129 5.445776 2.289781 -2.890262 1.110839 -0.301652 3.441602 0.634510 0.397427 0.376787 1.991700 +-8.839453 6.566532 4.691329 -4.842303 15.034878 0.738989 4.605598 5.915967 -4.145436 9.293953 -13.931325 -4.006965 -4.009651 -11.266635 0.236167 -5.848517 1.948314 0.881787 -3.316827 2.020662 5.588789 -5.295845 -0.168866 -6.857065 -1.353246 -10.661606 -4.713682 0.526518 8.497479 -1.747187 -0.019796 1.014699 15.718001 1.570600 12.912310 9.582305 4.484931 11.860713 0.500755 0.012788 -0.754607 9.593505 -6.739171 -10.700028 0.095049 -8.565545 -7.738587 -5.579882 3.416395 -6.845442 1.391806 9.027801 -0.874238 1.513649 -6.990323 5.687476 10.094492 0.037494 14.821417 4.121842 -6.945370 -0.323218 -8.681994 8.069823 -4.835790 5.320546 -1.209659 -9.741109 0.142977 0.887818 0.179589 -6.665861 -5.574975 6.676609 4.155851 -8.373302 4.759357 -2.993250 -10.628788 -10.988003 -8.760054 3.193697 1.035816 10.737037 -0.271897 -0.653934 1.250901 1.804700 0.895317 -14.027137 -2.389031 12.493456 -7.399293 -1.320196 -6.288402 7.537398 -0.281256 4.703147 -7.237485 -6.208728 3.383341 1.120342 1.590541 -8.025934 -0.566356 -11.005194 4.361091 2.002575 -1.196619 5.533985 6.006053 4.751939 8.117708 9.505155 -10.689552 3.707073 -10.859652 4.199648 -2.232358 -0.014110 -0.589179 2.985165 1.524734 2.043992 10.282951 -13.714557 6.405984 5.114815 -5.738119 -11.043700 0.008255 -10.043757 -10.471471 -2.103430 5.312907 3.876234 1.667757 -5.954708 0.814611 -3.088008 -3.994190 -5.236547 0.561550 10.607013 -11.898747 -1.808437 -1.434662 -1.643950 -6.234839 9.248974 5.743973 5.043833 13.691492 6.891724 -4.259192 3.630133 -10.846978 1.611923 17.021853 4.574235 -11.863603 8.100307 -8.164161 1.022218 5.718419 4.896169 6.443893 1.364967 -10.325445 -4.891391 3.777327 -2.752177 13.963809 4.858712 4.818499 -7.297912 13.565574 -2.573303 -7.584877 15.277313 8.896976 -13.243211 4.283622 6.897748 -8.188067 -2.256417 6.890611 -8.716645 -2.520671 -7.573519 0.467944 3.795056 -7.586673 -3.447027 1.727252 -12.790678 14.871451 1.353222 4.140078 2.452043 -9.885609 -11.037417 15.675565 -0.205803 -1.581063 -4.495994 -4.365963 -8.636612 -13.300366 2.236258 1.652183 -6.493125 -5.398908 -11.028768 2.597393 9.590606 -4.136032 7.341840 -9.666537 -3.502506 4.709158 1.483393 6.999400 -6.839403 -7.361622 -2.084641 -2.130142 6.839471 -7.006332 9.459175 14.880007 -5.012681 10.572439 0.219565 -5.991603 1.215715 7.005192 -10.032467 12.287092 -2.805091 8.577912 0.127426 9.040267 -8.300648 -3.273168 -0.039401 -1.875806 -3.965659 6.831484 -7.890149 0.344380 1.798545 -10.069418 -5.529331 4.013306 -0.212596 2.120084 -0.246471 1.015603 -9.430669 -0.700057 -6.742929 2.121545 9.120098 -0.628603 -9.210317 2.051080 1.512536 -1.763633 -0.707200 1.626588 0.247490 9.655609 -11.030692 -1.258823 1.071777 0.128572 -10.005716 -14.300994 0.213131 -10.169849 -8.779463 8.259646 -12.577197 -0.529013 -8.447003 -0.873064 -13.471886 -4.758520 3.039192 15.739590 4.810845 -6.767284 3.883794 -0.541427 9.415678 0.606656 2.200137 1.756449 6.216307 diff --git a/src/test-suite/oracle/SYM_llvm17_p/sqlite3.txt b/src/test-suite/oracle/SYM_llvm17_p/sqlite3.txt index 80aeff055..313ccc456 100644 --- a/src/test-suite/oracle/SYM_llvm17_p/sqlite3.txt +++ b/src/test-suite/oracle/SYM_llvm17_p/sqlite3.txt @@ -1 +1 @@ -16914.239737 1840.981802 -8056.817911 21579.296520 -906.316497 -14727.797115 4137.876401 12411.280953 -6586.562078 -37492.964788 -23503.569943 24019.669262 3178.205893 -4723.530913 5407.877824 7912.934175 -3458.056365 3013.332508 -43144.954157 15115.587790 13531.105645 4908.255795 -5820.292873 -7871.662108 3889.509265 -10608.904523 1448.248686 10127.800801 1014.830101 22875.078128 -11217.396718 7132.679162 18359.717864 -541.438802 9754.257737 19447.217860 -5458.309037 1001.817028 1260.314788 429.579484 30198.570108 18262.427973 -3520.038288 10885.075944 9038.812628 23509.483794 -2190.944232 20668.774651 -4464.250265 -15003.294026 10138.764168 7383.131005 -17749.769020 -2971.040689 -14480.221331 9624.128167 19172.139926 8872.318439 -11147.725663 11520.408401 -11789.705205 -2464.030694 7416.382130 381.455867 27538.019036 14634.785688 15946.268038 14708.151110 30142.996306 -11951.106543 -2847.509524 13036.231473 11946.824998 -2281.054380 14178.859285 -9445.563182 -21959.103018 -11427.606841 14.912112 -38164.977695 -15326.420244 -603.970317 40969.728375 -22921.064083 1021.286277 6482.304357 8335.991977 22709.055046 -15671.783603 -634.899949 -16388.840622 -88.332475 -10411.444594 38141.554630 1444.259569 7092.443766 -3015.865027 9673.946988 10480.841084 17367.560567 -5099.253692 -15713.142826 -16277.614827 -37081.121866 -8470.087895 -8772.695145 3261.617294 7589.888150 -31083.167349 -6787.786026 7673.836229 27727.297982 -34264.481233 -1024.028217 18412.394089 9384.169209 16855.899739 7579.575724 -20625.235935 4570.505635 1587.160090 1714.117516 13996.453395 -8729.095252 -1445.557029 -5345.863490 6737.833569 747.055197 5712.422391 1316.527676 -37393.900410 -11137.265844 3457.965800 -7597.648260 934.481986 4310.048412 8189.398913 -13761.396469 12699.444894 -14782.420681 18183.541891 -33691.705523 -517.295608 -11239.351844 -19974.972755 -3504.103564 16885.970313 25761.163018 14053.129381 -6681.360009 -6153.439637 -7325.041675 -30356.665962 -34656.875345 6283.795943 -1758.203649 8988.503016 -1522.547334 -1674.032901 5009.783444 -9656.320812 1426.717636 9335.323929 -11649.579409 -1566.264106 -6295.697504 31544.229203 661.708670 -4830.708982 -14478.667480 -8427.860576 -546.023168 2502.741735 15002.197463 -6300.629787 -33845.061481 -34194.710072 -18256.110279 19120.491248 -4796.227638 -1357.236390 -13606.687977 -3021.077596 -18445.043532 3332.226701 -17445.271984 6821.364180 -1561.079711 -13353.216394 -23115.517049 472.908057 -1899.034310 -9484.498702 -5017.093886 -15333.627221 -5750.003736 18458.345214 4047.839714 8084.505585 3028.808299 1129.165422 -21428.166980 -19353.033854 5786.461144 -7532.987514 21430.789465 19577.137261 459.527968 -18446.000678 -4433.673779 -27620.511413 19828.856589 -17033.992846 4474.089827 -6138.113014 -9289.834124 29276.613087 -13631.383000 -7187.036561 -18083.712847 8781.180054 3854.047879 -34757.666827 32445.019073 20843.795104 -11541.262047 -4382.903431 -1828.347616 2398.051750 18359.092437 21539.233307 -15484.982620 -13341.666013 3250.718549 -6791.955915 -1860.230467 -395.803710 16642.242498 -16803.428262 11532.492267 -15286.435404 -9243.626667 12537.684768 16148.850751 493.906823 8958.963143 -833.235873 -2730.757479 8574.134740 17163.255209 13874.967743 -6250.944147 -19190.288741 -44012.376401 13558.481189 -8566.152492 -6785.430969 -403.129459 -9429.027801 -19264.395602 3993.598922 -5802.239763 24354.552599 802.349434 -11928.311191 16617.765536 -27415.878160 -24581.004090 -13247.229632 2753.975665 -291.792378 -5530.310934 7072.628982 -7053.494335 6451.878346 9084.561345 856.200951 1720.079651 -17071.271865 -10241.539163 -236.615965 18695.779908 8736.988008 -4602.147639 24403.284676 5754.462882 -10343.425092 -6480.598526 858.419776 31.810921 -2285.101590 -20497.857665 -9698.512085 -9221.734122 8000.390882 -9367.662544 14972.344512 1337.949051 1709.686658 9941.308840 +-18474.833460 18187.294057 16279.838861 -11994.352551 31492.748105 -745.166825 11846.538846 13523.151418 -11993.640767 14931.241189 -32571.363334 -5630.837504 -7389.955654 -25171.003846 2658.104268 -18112.416801 5069.451586 4491.227054 -5849.817726 8419.663406 12551.844138 -10777.129985 -2950.585008 -18703.471891 -1588.815851 -23833.788584 -9038.328940 -466.527509 14938.286791 2753.452266 4620.097547 4885.518636 33183.802591 4790.036196 27236.892499 22212.603013 8393.418065 25814.000881 1447.577437 -2725.705875 601.172967 20113.732974 -12392.015268 -25577.810143 -159.611945 -17421.565629 -16349.832683 -14036.661909 5184.991900 -17403.982672 -4605.585306 18004.693219 240.824265 2001.269937 -16245.905972 10601.925435 25019.121136 1525.648123 27568.499730 11561.779548 -13369.761788 1180.546781 -16823.241173 12106.161634 -10647.122888 10964.625338 -1757.732451 -19243.138473 1758.342757 5438.953687 862.950237 -10752.764031 -11977.113735 9096.279205 8538.538535 -15675.076141 11922.493012 -4719.148817 -27225.663202 -20031.839144 -15283.479732 6524.513272 376.713891 23620.535010 -1692.552985 -3089.138972 1679.282062 1083.717284 5863.764687 -24795.465089 -9619.750216 26545.039481 -12314.365460 -6875.362157 -14849.376700 18060.713190 7519.440611 7689.276690 -13021.712189 -16355.947539 9577.169469 1409.358382 2263.697174 -14613.081347 -4793.433220 -22386.679239 7415.885485 7951.286835 -4719.834129 20260.317784 3526.858983 15769.032846 16103.223768 14854.704203 -23261.839886 11033.600474 -23997.053737 9044.980138 -11061.764482 -1049.237430 534.426341 3471.384621 4821.376421 6540.673733 16429.285462 -25615.039411 17058.338214 15688.852437 -9843.387880 -18962.061160 4160.232253 -19380.903434 -22508.338163 -5869.252717 10957.028751 11507.544118 4224.917098 -8972.050487 522.013262 -8102.900305 -1833.748110 -14385.288631 -2196.141355 23750.982804 -26424.583413 -4286.640841 -3393.924174 -2184.994770 -12436.664509 16135.183409 8448.521609 6881.415423 26777.339113 13310.010996 -11280.644219 8337.223846 -21060.779085 3503.241796 38107.153900 8139.819723 -22966.961603 14787.231376 -11590.319364 961.891655 10846.081546 7614.863077 10430.631936 5847.627364 -25770.117722 -15928.099752 -48.699729 -12398.059766 27174.454708 16691.648022 7355.917113 -21536.267916 33043.942133 -8089.912752 -16495.525715 31626.463494 18172.858615 -24728.636914 5539.771486 18089.242885 -24191.569870 -9560.471280 10935.336185 -17041.151106 -5838.269002 -14968.796218 1543.132251 5045.623815 -17349.287765 -11068.518306 921.649966 -26549.236011 27043.220002 4822.995411 7121.371482 -2524.326571 -16257.806601 -25993.700739 35723.597631 474.827001 -4356.281975 -7930.120964 -7430.863715 -15458.229730 -29241.841675 4371.704613 3183.331995 -13197.488773 -12256.195864 -20555.653906 4601.407343 18416.028167 -15241.053943 10791.127811 -19970.052648 -8439.233545 9284.587283 5835.332699 12528.154740 -19971.327320 -17164.276160 -4831.767272 -4633.102186 12553.455231 -12839.633689 20005.752985 32297.755629 -9496.609759 19533.834260 620.336897 -18029.347133 3909.768083 19046.871997 -19208.775328 24191.318574 -7443.271504 22533.109228 2782.795050 19685.525713 -18140.254209 -9988.848944 -515.419216 -9832.385864 -10648.409125 17492.280402 -18709.769556 2859.760562 6264.598572 -16787.193170 -11554.181927 13197.777491 1024.793601 5388.578862 -3289.682633 4537.795439 -21251.425878 1122.245317 -12041.107591 3288.926746 19543.756767 -2221.137600 -22522.756704 882.681313 8159.328292 -6336.548898 -7602.657737 3991.800812 307.251706 20442.037331 -21539.304220 3481.032477 2481.752522 -534.863133 -22064.626628 -29583.310789 6063.038317 -23143.047391 -19931.244016 16053.410340 -25239.830921 -2656.481494 -16371.132527 1771.248195 -27451.727717 -14777.035698 8318.122269 29563.687567 7438.525185 -12720.965912 7175.832288 -1758.486761 19626.863605 1793.575589 5979.009001 -416.693947 14610.032256 From be3462b2d7190808a74bc812162947e6cc24ae14 Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Tue, 19 Nov 2024 23:48:48 +0530 Subject: [PATCH 6/8] STA commit - compile dataset training --- docs/comPile.md | 42 ++++++++++++++++++++ docs/version_upgrade_process.md | 4 ++ seed_embeddings/OpenKE/generate_embedding.py | 2 +- seed_embeddings/gen_triplets.sh | 20 ---------- 4 files changed, 47 insertions(+), 21 deletions(-) create mode 100644 docs/comPile.md delete mode 100644 seed_embeddings/gen_triplets.sh diff --git a/docs/comPile.md b/docs/comPile.md new file mode 100644 index 000000000..304313458 --- /dev/null +++ b/docs/comPile.md @@ -0,0 +1,42 @@ +The following guide details the steps followed in training IR2Vec with the ComPile dataset. + +# # Generating .ll files for re-training. + - The git repo `IR2Vec-Version-Upgrade-Checks` has the required scripts to be run for this process. + - The repo is available [here](https://github.com/IITH-Compilers/IR2Vec-Version-Upgrade-Checks/) + - Our relevant scripts and files will be present in the folder `ComPile`. + - `ComPile/collect_dataset_info.py` - This script will generate the list of all the unique C/C++ files in the dataset. + - `ComPile/save_ir.py` - This script will download the ByteCode files for all the C/C++ files in the dataset, generate the IR files and save them in the `ir_paths.txt` file. + - `ComPile/prep_ir_list.py` - This script will take the `ir_paths.txt` file and generate the list of all the IR paths. + +- Once we have generated the list of all the `.ll` file paths, we go to the seed_embedding folder in the main IR2Vec repository. Here, our process will have to involve the following tasks. + - Generating Training Triplets + - Preprocessing the data + - Training on the data and generating a final embedding file. + - Using the embedding file to generate the test oracle. + - Running the testing to verify the validity of the entire upgrade process. + +# Generating Training Triplets + - Run the `triplets.sh` bash file with relevant changes to update the llvm version. + - Instructions to run the same are available at `seed_embeddings/README.md`. + - Here, a slight change is required. Since the dataset is large, instead of creating our temp files at `/tmp`, we will specify a custom path to store the temp files. + - For assisting this change, and running the script, we have a `gen_triplets.sh` helper script available in the `ComPile` folder. You need to copy the `gen_triplets.sh` script to the `seed_embeddings` folder, make relevant changes to the script and run it. + +# Breaking triplets.txt + - The generated `triplets.txt` file will be extremely large in size. So much so that attempting to open it, or directly read from it, is likely to cause an overshoot of the available RAM space, and cause a system crash. + - To mitigate this, we have developed the following system. Go to the location where your `triplets.txt` is stored. Create a new folder, say `split_files` + - We use the command `split -C 500M triplets.txt split_files/triplets_part -d -a 2 --numeric-suffixes=11 --additional-suffix=.txt` + - This command will split the `triplets.txt` file into multiple files, each 500MB in size, and store them in the folder, labelled by number. + +# Preprocesing the data + - In our previous version, we were using the `openKE` folder, where the script `IR2Vec/seed_embeddings/OpenKE/preprocess.py` was being used to preprocess the data from `triplets.txt`. + - A new script has been provided at `IR2Vec/seed_embeddings/test_preprocess.py`. This script takes as input, the folder of broken up triplets file, as created in the previous step. The script takes in the folder, and iterates over all the files in the folder, to generate the Entities, Relation and the Training sets, in a safe manner, so as to not cause any RAM overshoots + - This script can be used as it-is with the previous approach as well. Previously, a single `triplets.txt` file was sufficient to generate the requisite preprocessed information. To run with a single triplets file, just place it in a folder, and pass the folder path to this script. + +# Train IDs + - Similar to `triplets.txt`, the file `train2id.txt` is also going to be an extremely large file, and attempting to open it will likely overshoot the RAM and cause a system crash. + - To avoid this, the following workaround is deployed. + - Studying the training code will show us that the `train2id.txt` file is read, and an attempt is made to extract all the unique train sets from it. This, when run with a large `train2id.txt` , is going to be a likely site of RAM overshoot and a subsequent system crash. + - To solve this, a script, `ComPile/get_uniq_train.sh` is supplied. The user needs to copy this to the site of the `train2id.txt`, and run with the appropriate path changes. This will give an output of much reduced size, with unique train sets. + - This will can then straight away be used with the regular training path. + +Once this step is reached, the user can then resume training, from the original path [here](https://github.com/IITH-Compilers/IR2Vec/wiki/version_upgrade_process#training). A helper script, `run_training_ray.sh` has been provided with the main codebase to help the user provide log paths, and specify properly formatted parameters and run the training accordingly. diff --git a/docs/version_upgrade_process.md b/docs/version_upgrade_process.md index 34aa04ece..95238da48 100644 --- a/docs/version_upgrade_process.md +++ b/docs/version_upgrade_process.md @@ -35,6 +35,10 @@ The following guide details the steps followed in upgrading the LLVM version sup - Once the file has been run, we should have a `preprocessed` folder. Inside this folder, we should have the relevant preprocessed data generated. - Go ahead and create an empty `embeddings` folder here. This will be relevant for the next step. +We have recently retrained the IR2Vec embeddings with a larger dataset. This is the [ComPile](https://huggingface.co/datasets/llvm-ml/ComPile) dataset. This dataset is a collection of LLVM IR files from open-source projects, and is considerably larger than the current dataset used in the original IR2Vec paper. Further details about the retraining process can be found [here](https://github.com/IITH-Compilers/IR2Vec/wiki/comPile.md). + +Once the trainIDs, relations and entities files are generated, we can use them, as it is, in the training process as described before. + # Training - The next file to run is the `generate_embeddings_ray.py` file in the `openKE` folder. - Use the `openKE.yaml` file to create the conda environment. diff --git a/seed_embeddings/OpenKE/generate_embedding.py b/seed_embeddings/OpenKE/generate_embedding.py index b7318b7e4..0f0a76670 100644 --- a/seed_embeddings/OpenKE/generate_embedding.py +++ b/seed_embeddings/OpenKE/generate_embedding.py @@ -180,7 +180,7 @@ def findRep(src, dest, index_dir): arg_conf = parser.parse_args() outfile = train(arg_conf) - print("Train function exits") + seedfile = os.path.join( arg_conf.index_dir, "embeddings/seedEmbedding_{}E_{}D_{}batches{}margin.txt".format( diff --git a/seed_embeddings/gen_triplets.sh b/seed_embeddings/gen_triplets.sh deleted file mode 100644 index ede7f4c23..000000000 --- a/seed_embeddings/gen_triplets.sh +++ /dev/null @@ -1,20 +0,0 @@ -# /usr/bin/bash - -PATH_VAR="/Pramana/ML_LLVM_Tools/IR2Vec_data/" - -echo "Data stored at $PATH_VAR" - -bash triplets.sh \ - ../build \ - 2 \ - "${PATH_VAR}ir_paths.txt" \ - "${PATH_VAR}triplets17.txt" \ - /usr \ - >"${PATH_VAR}log.txt" \ - 2>"${PATH_VAR}err.txt" - -echo "Triplets Generation Done" - -echo "Number of Triplets is " - -cat ${PATH_VAR}triplets17.txt | wc -l From 5aacb27a1d037ee672bd9681c80fc11a28b93b5d Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Tue, 19 Nov 2024 23:56:24 +0530 Subject: [PATCH 7/8] STA commit - shuffling scripts to match old pattern --- docs/comPile.md | 4 +-- .../preprocess_hybrid.py} | 0 seed_embeddings/OpenKE/run_training_ray.sh | 25 ------------------- 3 files changed, 2 insertions(+), 27 deletions(-) rename seed_embeddings/{test_preprocess.py => OpenKE/preprocess_hybrid.py} (100%) delete mode 100644 seed_embeddings/OpenKE/run_training_ray.sh diff --git a/docs/comPile.md b/docs/comPile.md index 304313458..cfa351f20 100644 --- a/docs/comPile.md +++ b/docs/comPile.md @@ -29,7 +29,7 @@ The following guide details the steps followed in training IR2Vec with the ComPi # Preprocesing the data - In our previous version, we were using the `openKE` folder, where the script `IR2Vec/seed_embeddings/OpenKE/preprocess.py` was being used to preprocess the data from `triplets.txt`. - - A new script has been provided at `IR2Vec/seed_embeddings/test_preprocess.py`. This script takes as input, the folder of broken up triplets file, as created in the previous step. The script takes in the folder, and iterates over all the files in the folder, to generate the Entities, Relation and the Training sets, in a safe manner, so as to not cause any RAM overshoots + - A new script has been provided at `IR2Vec/seed_embeddings/OpenKE/preprocess_hybrid.py`. This script takes as input, the folder of broken up triplets file, as created in the previous step. The script takes in the folder, and iterates over all the files in the folder, to generate the Entities, Relation and the Training sets, in a safe manner, so as to not cause any RAM overshoots - This script can be used as it-is with the previous approach as well. Previously, a single `triplets.txt` file was sufficient to generate the requisite preprocessed information. To run with a single triplets file, just place it in a folder, and pass the folder path to this script. # Train IDs @@ -39,4 +39,4 @@ The following guide details the steps followed in training IR2Vec with the ComPi - To solve this, a script, `ComPile/get_uniq_train.sh` is supplied. The user needs to copy this to the site of the `train2id.txt`, and run with the appropriate path changes. This will give an output of much reduced size, with unique train sets. - This will can then straight away be used with the regular training path. -Once this step is reached, the user can then resume training, from the original path [here](https://github.com/IITH-Compilers/IR2Vec/wiki/version_upgrade_process#training). A helper script, `run_training_ray.sh` has been provided with the main codebase to help the user provide log paths, and specify properly formatted parameters and run the training accordingly. +Once this step is reached, the user can then resume training, from the original path [here](https://github.com/IITH-Compilers/IR2Vec/wiki/version_upgrade_process#training). A helper script, `ComPile/run_training_ray.sh` has been provided to help the user provide log paths, and specify properly formatted parameters and run the training accordingly. diff --git a/seed_embeddings/test_preprocess.py b/seed_embeddings/OpenKE/preprocess_hybrid.py similarity index 100% rename from seed_embeddings/test_preprocess.py rename to seed_embeddings/OpenKE/preprocess_hybrid.py diff --git a/seed_embeddings/OpenKE/run_training_ray.sh b/seed_embeddings/OpenKE/run_training_ray.sh deleted file mode 100644 index d89bb8fe7..000000000 --- a/seed_embeddings/OpenKE/run_training_ray.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# Define the directory path variable -INDEX_DIR="/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed" - -# Ensure the directory exists -if [ ! -d "$INDEX_DIR" ]; then - echo "Directory $INDEX_DIR does not exist. Exiting." - exit 1 -fi - -echo "$INDEX_DIR exists. Starting Training" - -LOG_PATH="$INDEX_DIR/log.txt" -ERR_PATH="$INDEX_DIR/err.txt" - -echo "LOGS stored at $LOG_PATH" -echo "ERR stored at $ERR_PATH" - -# Execute the Python script with the directory variable -python3 generate_embedding_ray.py \ - --index_dir=/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed \ - --is_analogy=True \ - --dim=75 \ - >/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/log.txt 2>/Pramana/ML_LLVM_Tools/IR2Vec_data/preprocessed/err.txt From 8da78c6ead87761d2f249ef07636452937c945d6 Mon Sep 17 00:00:00 2001 From: nishant_sachdeva Date: Wed, 20 Nov 2024 15:24:55 +0530 Subject: [PATCH 8/8] nit - removing hardcoded paths from generate_embedding_ray.py, small changes to ComPile.md --- docs/comPile.md | 4 ++-- seed_embeddings/OpenKE/generate_embedding_ray.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/comPile.md b/docs/comPile.md index cfa351f20..6bc0be32d 100644 --- a/docs/comPile.md +++ b/docs/comPile.md @@ -5,8 +5,8 @@ The following guide details the steps followed in training IR2Vec with the ComPi - The repo is available [here](https://github.com/IITH-Compilers/IR2Vec-Version-Upgrade-Checks/) - Our relevant scripts and files will be present in the folder `ComPile`. - `ComPile/collect_dataset_info.py` - This script will generate the list of all the unique C/C++ files in the dataset. - - `ComPile/save_ir.py` - This script will download the ByteCode files for all the C/C++ files in the dataset, generate the IR files and save them in the `ir_paths.txt` file. - - `ComPile/prep_ir_list.py` - This script will take the `ir_paths.txt` file and generate the list of all the IR paths. + - `ComPile/save_ir.py` - This script will download the ByteCode files for all the C/C++ files in the dataset, generate the IR files and save them in the specified location, following which it will save the file_names to `ir_paths.txt` file. + - `ComPile/prep_ir_list.py` - This script will take the `ir_paths.txt` file and generate the list of paths of all the IR files in the downloaded dataset. - Once we have generated the list of all the `.ll` file paths, we go to the seed_embedding folder in the main IR2Vec repository. Here, our process will have to involve the following tasks. - Generating Training Triplets diff --git a/seed_embeddings/OpenKE/generate_embedding_ray.py b/seed_embeddings/OpenKE/generate_embedding_ray.py index 24efc3b44..d97405c05 100644 --- a/seed_embeddings/OpenKE/generate_embedding_ray.py +++ b/seed_embeddings/OpenKE/generate_embedding_ray.py @@ -220,7 +220,7 @@ def reformat_embeddings(input_str): help="Path to the analogy file", required=False, type=str, - default="/home/intern23002/iitH/ir2vec/IR2Vec/seed_embeddings/OpenKE/analogies.txt", + default="./analogies.txt", ) arg_conf = parser.parse_args()